Repository: chanchanchan97/ICAFusion Branch: main Commit: 1eccff4edac6 Files: 134 Total size: 15.3 MB Directory structure: gitextract_37ncapyb/ ├── .idea/ │ ├── .gitignore │ ├── ICAFusion.iml │ ├── deployment.xml │ ├── inspectionProfiles/ │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── modules.xml │ └── vcs.xml ├── LICENSE ├── README.md ├── confluence.py ├── data/ │ ├── GlobalWheat2020.yaml │ ├── VisDrone.yaml │ ├── argoverse_hd.yaml │ ├── coco.yaml │ ├── coco128.yaml │ ├── hyp.finetune.yaml │ ├── hyp.scratch.yaml │ ├── hyp.scratch_VEDAI.yaml │ ├── multispectral/ │ │ ├── CVC14.yaml │ │ ├── FLIR-align-3class.yaml │ │ ├── FLIR-align.yaml │ │ ├── LLVIP.yaml │ │ ├── VEDAI.yaml │ │ └── kaist.yaml │ ├── scripts/ │ │ ├── get_argoverse_hd.sh │ │ ├── get_coco.sh │ │ └── get_voc.sh │ └── voc.yaml ├── descriptor/ │ ├── CFOG.py │ ├── CFOG_matlab.p │ ├── LSS.py │ ├── denseLSS.m │ └── mexCalcSsdescs1.mexw64 ├── detect_twostream.py ├── evaluation_script/ │ ├── KAIST_annotation.json │ ├── README.md │ ├── __init__.py │ ├── coco.py │ ├── cocoeval.py │ ├── evaluation_script.py │ ├── null │ └── state_of_arts/ │ ├── ARCNN_result.txt │ ├── CIAN_result.txt │ ├── MBNet_result.txt │ ├── MLPD_result.json │ ├── MLPD_result.txt │ └── MSDS-RCNN_result.txt ├── global_var.py ├── gradcam_visual.py ├── hubconf.py ├── models/ │ ├── __init__.py │ ├── common.py │ ├── experimental.py │ ├── export.py │ ├── gradcam.py │ ├── hub/ │ │ ├── anchors.yaml │ │ ├── yolov3-spp.yaml │ │ ├── yolov3-tiny.yaml │ │ ├── yolov3.yaml │ │ ├── yolov5-fpn.yaml │ │ ├── yolov5-p2.yaml │ │ ├── yolov5-p6.yaml │ │ ├── yolov5-p7.yaml │ │ ├── yolov5-panet.yaml │ │ ├── yolov5l6.yaml │ │ ├── yolov5m6.yaml │ │ ├── yolov5s-transformer.yaml │ │ ├── yolov5s6.yaml │ │ └── yolov5x6.yaml │ ├── transformer/ │ │ ├── yolov5_ResNet50_NiNfusion_FLIR.yaml │ │ ├── yolov5_ResNet50_NiNfusion_kaist.yaml │ │ ├── yolov5_ResNet50_Transfusion_FLIR.yaml │ │ ├── yolov5_ResNet50_Transfusion_kaist.yaml │ │ ├── yolov5_VGG16_NiNfusion_FLIR.yaml │ │ ├── yolov5_VGG16_NiNfusion_kaist.yaml │ │ ├── yolov5_VGG16_Transfusion_FLIR.yaml │ │ ├── yolov5_VGG16_Transfusion_kaist.yaml │ │ ├── yolov5l_Add_FLIR.yaml │ │ ├── yolov5l_MobileViT_NiNfusion_FLIR.yaml │ │ ├── yolov5l_NiNfusion_FLIR.yaml │ │ ├── yolov5l_NiNfusion_LLVIP.yaml │ │ ├── yolov5l_NiNfusion_VEDAI.yaml │ │ ├── yolov5l_Transfusion_FLIR.yaml │ │ ├── yolov5l_Transfusion_LLVIP.yaml │ │ ├── yolov5l_Transfusion_VEDAI.yaml │ │ ├── yolov5l_Transfusion_kaist.yaml │ │ ├── yolov5m_Add_kaist.yaml │ │ ├── yolov5m_NiNfusion_FLIR.yaml │ │ ├── yolov5m_NiNfusion_kaist.yaml │ │ ├── yolov5m_Transfusion_FLIR.yaml │ │ ├── yolov5m_Transfusion_SeaDrone.yaml │ │ ├── yolov5m_Transfusion_VEDAI.yaml │ │ ├── yolov5m_Transfusion_kaist.yaml │ │ ├── yolov5m_weightedAdd_kaist.yaml │ │ ├── yolov5n_Add_kaist.yaml │ │ ├── yolov5n_NiNfusion_FLIR.yaml │ │ ├── yolov5n_Transfusion_FLIR.yaml │ │ ├── yolov5n_Transfusion_kaist.yaml │ │ ├── yolov5s_Add_kaist.yaml │ │ ├── yolov5s_Transfusion_FLIR.yaml │ │ └── yolov5s_Transfusion_kaist.yaml │ ├── yolo.py │ ├── yolo_test.py │ ├── yolov5l.yaml │ ├── yolov5m.yaml │ ├── yolov5s.yaml │ └── yolov5x.yaml ├── requirements.txt ├── test.py ├── train.py └── utils/ ├── __init__.py ├── activations.py ├── autoanchor.py ├── aws/ │ ├── __init__.py │ ├── mime.sh │ ├── resume.py │ └── userdata.sh ├── confluence.py ├── datasets.py ├── flask_rest_api/ │ ├── example_request.py │ └── restapi.py ├── general.py ├── google_app_engine/ │ ├── Dockerfile │ ├── additional_requirements.txt │ └── app.yaml ├── google_utils.py ├── gradcam.py ├── loss.py ├── metrics.py ├── plots.py ├── torch_utils.py └── wandb_logging/ ├── __init__.py ├── log_dataset.py └── wandb_utils.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .idea/.gitignore ================================================ # 默认忽略的文件 /shelf/ /workspace.xml # 基于编辑器的 HTTP 客户端请求 /httpRequests/ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml ================================================ FILE: .idea/ICAFusion.iml ================================================ ================================================ FILE: .idea/deployment.xml ================================================ ================================================ FILE: .idea/inspectionProfiles/Project_Default.xml ================================================ ================================================ FILE: .idea/inspectionProfiles/profiles_settings.xml ================================================ ================================================ FILE: .idea/modules.xml ================================================ ================================================ FILE: .idea/vcs.xml ================================================ ================================================ FILE: LICENSE ================================================ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 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 Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are 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. 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. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. 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 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 work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. 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 AGPL, see . ================================================ FILE: README.md ================================================ ##
ICAFusion: Iterative Cross-Attention Guided Feature Fusion for Multispectral Object Detection
### Introduction In this paper, we propose a novel feature fusion framework of dual cross-attention transformers to model global feature interaction and capture complementary information across modalities simultaneously. In addition, we introdece an iterative interaction mechanism into dual cross-attention transformers, which shares parameters among block-wise multimodal transformers to reduce model complexity and computation cost. The proposed method is general and effective to be integrated into different detection frameworks and used with different backbones. Experimental results on KAIST, FLIR, and VEDAI datasets show that the proposed method achieves superior performance and faster inference, making it suitable for various practical scenarios. Paper download in: https://arxiv.org/pdf/2308.07504.pdf ### Overview
Fig 1. Overview of our multispectral object detection framework
Fig 2. Illustration of the proposed DMFF module
### Installation Clone repo and install requirements.txt in a Python>=3.8.0 conda environment, including PyTorch>=1.12. ``` git clone https://github.com/chanchanchan97/ICAFusion.git cd ICAFusion pip install -r requirements.txt ``` ### Datasets - **KAIST** Link:https://pan.baidu.com/s/1UdwQJH-cHVL91pkMW-ij6g Code:ig3y - **FLIR-aligned** Link:https://pan.baidu.com/s/1ljr8qJYdz-60Lj-iVEHBvg Code:uqzs - **VEDAI** Link:https://pan.baidu.com/s/1UKSI0Go0Ddt62tXNIySz9w Code:5ett ### Weights - **KAIST** Link:https://pan.baidu.com/s/18UXctOSgjp6EUcJXIGbWTQ Code:9eku - **FLIR-aligned** We fixed some bugs and now update the results on the FLIR dataset with the model weights as follows: ~~Link:https://pan.baidu.com/s/1VZbsTE4o6bw2XBypPW3zoA Code:xli9~~ Link: https://pan.baidu.com/s/1fEFOEyzVIxNCMjJjuujJUQ?pwd=a81f code: a81f ### Results update - **FLIR** | Methods | person | car | bicycle | mAP@50 | |----------------------|----------|----------|----------|----------| | ~~yolov5_ICAFusion~~ | ~~81.6~~ | ~~89.0~~ | ~~66.9~~ | ~~79.2~~ | | yolov5_ICAFusion | 84.9 | 89.8 | 73.8 | 82.8 | - **M3FD** | People | Car | Bus | Motorcycle | Lamp | Truck | mAP@50 | |--------|------|------|------------|------|-------|--------| | 82.3 | 93.4 | 93.9 | 89.6 | 82.2 | 87.8 | 88.2 | - **DroneVehicle** | Car | Truck | Bus | Van | freight_car | mAP@50 | |------|-------|------|------|-------------|--------| | 98.0 | 84.2 | 97.1 | 71.0 | 73.8 | 84.8 | - **DVTOP** | Car | bicycle | person | mAP@50 | |------|------|-------------|--------| | 92.6 |83.6|84.6 |86.9| - **SeaDroneSee** | Swimmer | Floater | Boat | mAP@50 | |------|------|-------------|--------| |14.7 |69.5|99.5 |61.2| ### Files **Note**: This is the txt files for evaluation. We continuously optimize our codes, which results in the difference in detection performance. However, the codes of module for multimodal feature fusion still remain consistent with the methods proposed in this paper. - **KAIST** Link:https://pan.baidu.com/s/1N7SNEPXKX7KFaO2Th7vq2g Code:zijw ### Our new works - Multispectral State-Space Feature Fusion: Bridging Shared and Cross-Parametric Interactions for Object Detection **[[paper]](https://arxiv.org/abs/2507.14643)** **[[code]](https://github.com/61s61min/MS2Fusion)** - IRDFusion: Iterative Relation-Map Difference guided Feature Fusion for Multispectral Object Detection **[[paper]](https://arxiv.org/html/2509.09085v1)** **[[code]](https://github.com/61s61min/IRDFusion.git)** ### Citation If you find our work useful in your research, please consider citing: ``` @article{SHEN2023109913, title={ICAFusion: Iterative Cross-Attention Guided Feature Fusion for Multispectral Object Detection}, author={Shen, Jifeng and Chen, Yifei and Liu, Yue and Zuo, Xin and Fan, Heng and Yang, Wankou}, journal={Pattern Recognition}, pages={109913}, year={2023}, issn={0031-3203}, doi={https://doi.org/10.1016/j.patcog.2023.109913}, author={Jifeng Shen and Yifei Chen and Yue Liu and Xin Zuo and Heng Fan and Wankou Yang}, } ``` ================================================ FILE: confluence.py ================================================ """ Author: Andrew Shepley Contact: asheple2@une.edu.au Source: Confluence Methods a) assign_boxes_to_classes b) normalise_coordinates c) confluence_nms - returns maxima scoring box, removes false positives using confluence - efficient d) confluence - returns most confluent box, removes false positives using confluence - less efficient but better box """ from collections import defaultdict import numpy as np def assign_boxes_to_classes(bounding_boxes, classes, scores): """ Parameters: bounding_boxes: list of bounding boxes (x1,y1,x2,y2) classes: list of class identifiers (int value, e.g. 1 = person) scores: list of class confidence scores (0.0-1.0) Returns: boxes_to_classes: defaultdict(list) containing mapping to bounding boxes and confidence scores to class """ boxes_to_classes = defaultdict(list) for each_box, each_class, each_score in zip(bounding_boxes, classes, scores): if each_score >= 0.05: boxes_to_classes[each_class].append(np.array([each_box[0],each_box[1],each_box[2],each_box[3], each_score])) return boxes_to_classes def normalise_coordinates(x1, y1, x2, y2,min_x,max_x,min_y,max_y): """ Parameters: x1, y1, x2, y2: bounding box coordinates to normalise min_x,max_x,min_y,max_y: minimum and maximum bounding box values (min = 0, max = 1) Returns: Normalised bounding box coordinates (scaled between 0 and 1) """ x1, y1, x2, y2 = (x1-min_x)/(max_x-min_x), (y1-min_y)/(max_y-min_y), (x2-min_x)/(max_x-min_x), (y2-min_y)/(max_y-min_y) return x1, y1, x2, y2 def confluence_nms(bounding_boxes,scores,classes,confluence_thr,gaussian,score_thr=0.05,sigma=0.5): """ Parameters: bounding_boxes: list of bounding boxes (x1,y1,x2,y2) classes: list of class identifiers (int value, e.g. 1 = person) scores: list of class confidence scores (0.0-1.0) confluence_thr: value between 0 and 2, with optimum from 0.5-0.8 gaussian: boolean switch to turn gaussian decaying of suboptimal bounding box confidence scores (setting to False results in suppression of suboptimal boxes) score_thr: class confidence score sigma: used in gaussian decaying. A smaller value causes harsher decaying. Returns: output: A dictionary mapping class identity to final retained boxes (and corresponding confidence scores) """ class_mapping = assign_boxes_to_classes(bounding_boxes, classes, scores) output = {} for each_class in class_mapping: dets = np.array(class_mapping[each_class]) retain = [] while dets.size > 0: max_idx = np.argmax(dets[:, 4], axis=0) dets[[0, max_idx], :] = dets[[max_idx, 0], :] retain.append(dets[0, :]) x1, y1, x2, y2 = dets[0, 0], dets[0, 1], dets[0, 2], dets[0, 3] min_x = np.minimum(x1, dets[1:, 0]) min_y = np.minimum(y1, dets[1:, 1]) max_x = np.maximum(x2, dets[1:, 2]) max_y = np.maximum(y2, dets[1:, 3]) x1, y1, x2, y2 = normalise_coordinates(x1, y1, x2, y2,min_x,max_x,min_y,max_y) xx1, yy1, xx2, yy2 = normalise_coordinates(dets[1:, 0], dets[1:, 1], dets[1:, 2], dets[1:, 3],min_x,max_x,min_y,max_y) md_x1,md_x2,md_y1,md_y2 = abs(x1-xx1),abs(x2-xx2),abs(y1-yy1),abs(y2-yy2) manhattan_distance = (md_x1+md_x2+md_y1+md_y2) weights = np.ones_like(manhattan_distance) if (gaussian == True): gaussian_weights = np.exp(-((1-manhattan_distance) * (1-manhattan_distance)) / sigma) weights[manhattan_distance<=confluence_thr]=gaussian_weights[manhattan_distance<=confluence_thr] else: weights[manhattan_distance<=confluence_thr]=manhattan_distance[manhattan_distance<=confluence_thr] dets[1:, 4] *= weights to_reprocess = np.where(dets[1:, 4] >= score_thr)[0] dets = dets[to_reprocess + 1, :] output[each_class]=retain return output def confluence(bounding_boxes,scores,classes,confluence_thr,gaussian,score_thr=0.05,sigma=0.5): """ Parameters: bounding_boxes: list of bounding boxes (x1,y1,x2,y2) classes: list of class identifiers (int value, e.g. 1 = person) scores: list of class confidence scores (0.0-1.0) confluence_thr: value between 0 and 2, with optimum from 0.5-0.8 gaussian: boolean switch to turn gaussian decaying of suboptimal bounding box confidence scores (setting to False results in suppression of suboptimal boxes) score_thr: class confidence score sigma: used in gaussian decaying. A smaller value causes harsher decaying. Returns: output: A dictionary mapping class identity to final retained boxes (and corresponding confidence scores) """ class_mapping = assign_boxes_to_classes(bounding_boxes, classes, scores) output = {} for each_class in class_mapping: dets = np.array(class_mapping[each_class]) retain = [] while dets.size > 0: confluence_scores,proximities = [],[] while len(confluence_scores)0): confluence_score = np.amax(cconf_scores) else: confluence_score = confidence_score if(all_proximities.size>0): proximity = (sum(all_proximities)/all_proximities.size)*(1-confidence_score) else: proximity = sum(all_proximities)*(1-confidence_score) confluence_scores.append(confluence_score) proximities.append(proximity) conf = np.array(confluence_scores) prox = np.array(proximities) dets_temp = np.concatenate((dets, prox[:, None]), axis=1) dets_temp = np.concatenate((dets_temp, conf[:, None]), axis=1) min_idx = np.argmin(dets_temp[:, 5], axis=0) dets[[0, min_idx], :] = dets[[min_idx, 0], :] dets_temp[[0, min_idx], :] = dets_temp[[min_idx, 0], :] dets[0,4]=dets_temp[0,6] retain.append(dets[0, :]) x1, y1, x2, y2 = dets[0, 0], dets[0, 1], dets[0, 2], dets[0, 3] min_x = np.minimum(x1, dets[1:, 0]) min_y = np.minimum(y1, dets[1:, 1]) max_x = np.maximum(x2, dets[1:, 2]) max_y = np.maximum(y2, dets[1:, 3]) x1, y1, x2, y2 = normalise_coordinates(x1, y1, x2, y2,min_x,max_x,min_y,max_y) xx1, yy1, xx2, yy2 = normalise_coordinates(dets[1:, 0], dets[1:, 1], dets[1:, 2], dets[1:, 3],min_x,max_x,min_y,max_y) md_x1,md_x2,md_y1,md_y2 = abs(x1-xx1),abs(x2-xx2),abs(y1-yy1),abs(y2-yy2) manhattan_distance = (md_x1+md_x2+md_y1+md_y2) weights = np.ones_like(manhattan_distance) if (gaussian == True): gaussian_weights = np.exp(-((1-manhattan_distance) * (1-manhattan_distance)) / sigma) weights[manhattan_distance<=confluence_thr]=gaussian_weights[manhattan_distance<=confluence_thr] else: weights[manhattan_distance<=confluence_thr]=manhattan_distance[manhattan_distance<=confluence_thr] dets[1:, 4] *= weights to_reprocess = np.where(dets[1:, 4] >= score_thr)[0] dets = dets[to_reprocess + 1, :] output[each_class]=retain return output ================================================ FILE: data/GlobalWheat2020.yaml ================================================ # Global Wheat 2020 dataset http://www.global-wheat.com/ # Train command: python train.py --data GlobalWheat2020.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /datasets/GlobalWheat2020 # /yolov5 # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] train: # 3422 images - ../datasets/GlobalWheat2020/images/arvalis_1 - ../datasets/GlobalWheat2020/images/arvalis_2 - ../datasets/GlobalWheat2020/images/arvalis_3 - ../datasets/GlobalWheat2020/images/ethz_1 - ../datasets/GlobalWheat2020/images/rres_1 - ../datasets/GlobalWheat2020/images/inrae_1 - ../datasets/GlobalWheat2020/images/usask_1 val: # 748 images (WARNING: train set contains ethz_1) - ../datasets/GlobalWheat2020/images/ethz_1 test: # 1276 - ../datasets/GlobalWheat2020/images/utokyo_1 - ../datasets/GlobalWheat2020/images/utokyo_2 - ../datasets/GlobalWheat2020/images/nau_1 - ../datasets/GlobalWheat2020/images/uq_1 # number of classes nc: 1 # class names names: [ 'wheat_head' ] # download command/URL (optional) -------------------------------------------------------------------------------------- download: | from utils.general import download, Path # Download dir = Path('../datasets/GlobalWheat2020') # dataset directory urls = ['https://zenodo.org/record/4298502/files/global-wheat-codalab-official.zip', 'https://github.com/ultralytics/yolov5/releases/download/v1.0/GlobalWheat2020_labels.zip'] download(urls, dir=dir) # Make Directories for p in 'annotations', 'images', 'labels': (dir / p).mkdir(parents=True, exist_ok=True) # Move for p in 'arvalis_1', 'arvalis_2', 'arvalis_3', 'ethz_1', 'rres_1', 'inrae_1', 'usask_1', \ 'utokyo_1', 'utokyo_2', 'nau_1', 'uq_1': (dir / p).rename(dir / 'images' / p) # move to /images f = (dir / p).with_suffix('.json') # json file if f.exists(): f.rename((dir / 'annotations' / p).with_suffix('.json')) # move to /annotations ================================================ FILE: data/VisDrone.yaml ================================================ # VisDrone2019-DET dataset https://github.com/VisDrone/VisDrone-Dataset # Train command: python train.py --data VisDrone.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /VisDrone # /yolov5 # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] train: ../VisDrone/VisDrone2019-DET-train/images # 6471 images val: ../VisDrone/VisDrone2019-DET-val/images # 548 images test: ../VisDrone/VisDrone2019-DET-test-dev/images # 1610 images # number of classes nc: 10 # class names names: [ 'pedestrian', 'people', 'bicycle', 'car', 'van', 'truck', 'tricycle', 'awning-tricycle', 'bus', 'motor' ] # download command/URL (optional) -------------------------------------------------------------------------------------- download: | from utils.general import download, os, Path def visdrone2yolo(dir): from PIL import Image from tqdm import tqdm def convert_box(size, box): # Convert VisDrone box to YOLO xywh box dw = 1. / size[0] dh = 1. / size[1] return (box[0] + box[2] / 2) * dw, (box[1] + box[3] / 2) * dh, box[2] * dw, box[3] * dh (dir / 'labels').mkdir(parents=True, exist_ok=True) # make labels directory pbar = tqdm((dir / 'annotations').glob('*.txt'), desc=f'Converting {dir}') for f in pbar: img_size = Image.open((dir / 'images' / f.name).with_suffix('.jpg')).size lines = [] with open(f, 'r') as file: # read annotation.txt for row in [x.split(',') for x in file.read().strip().splitlines()]: if row[4] == '0': # VisDrone 'ignored regions' class 0 continue cls = int(row[5]) - 1 box = convert_box(img_size, tuple(map(int, row[:4]))) lines.append(f"{cls} {' '.join(f'{x:.6f}' for x in box)}\n") with open(str(f).replace(os.sep + 'annotations' + os.sep, os.sep + 'labels' + os.sep), 'w') as fl: fl.writelines(lines) # write label.txt # Download dir = Path('../VisDrone') # dataset directory urls = ['https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-train.zip', 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-val.zip', 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-test-dev.zip', 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-test-challenge.zip'] download(urls, dir=dir) # Convert for d in 'VisDrone2019-DET-train', 'VisDrone2019-DET-val', 'VisDrone2019-DET-test-dev': visdrone2yolo(dir / d) # convert VisDrone annotations to YOLO labels ================================================ FILE: data/argoverse_hd.yaml ================================================ # Argoverse-HD dataset (ring-front-center camera) http://www.cs.cmu.edu/~mengtial/proj/streaming/ # Train command: python train.py --data argoverse_hd.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /argoverse # /yolov5 # download command/URL (optional) download: bash data/scripts/get_argoverse_hd.sh # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] train: ../argoverse/Argoverse-1.1/images/train/ # 39384 images val: ../argoverse/Argoverse-1.1/images/val/ # 15062 iamges test: ../argoverse/Argoverse-1.1/images/test/ # Submit to: https://eval.ai/web/challenges/challenge-page/800/overview # number of classes nc: 8 # class names names: [ 'person', 'bicycle', 'car', 'motorcycle', 'bus', 'truck', 'traffic_light', 'stop_sign' ] ================================================ FILE: data/coco.yaml ================================================ # COCO 2017 dataset http://cocodataset.org # Train command: python train.py --data coco.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco # /yolov5 # download command/URL (optional) download: bash data/scripts/get_coco.sh # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] train: ../coco/train2017.txt # 118287 images val: ../coco/val2017.txt # 5000 images test: ../coco/test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794 # number of classes nc: 80 # class names names: [ 'person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light', 'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow', 'elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee', 'skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard', 'tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple', 'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch', 'potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell phone', 'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy bear', 'hair drier', 'toothbrush' ] # Print classes # with open('data/coco.yaml') as f: # d = yaml.safe_load(f) # dict # for i, x in enumerate(d['names']): # print(i, x) ================================================ FILE: data/coco128.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] train: ../coco128/images/train2017/ # 128 images val: ../coco128/images/train2017/ # 128 images # number of classes nc: 80 # class names names: [ 'person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light', 'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow', 'elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee', 'skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard', 'tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple', 'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch', 'potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell phone', 'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy bear', 'hair drier', 'toothbrush' ] ================================================ FILE: data/hyp.finetune.yaml ================================================ # Hyperparameters for VOC finetuning # python train.py --batch 64 --weights yolov5m.pt --data voc.yaml --img 512 --epochs 50 # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials # Hyperparameter Evolution Results # Generations: 306 # P R mAP.5 mAP.5:.95 box obj cls # Metrics: 0.6 0.936 0.896 0.684 0.0115 0.00805 0.00146 lr0: 0.02 #(0.0032) lrf: 0.12 momentum: 0.843 weight_decay: 0.00036 warmup_epochs: 2.0 warmup_momentum: 0.5 warmup_bias_lr: 0.05 box: 0.0296 cls: 0.243 cls_pw: 0.631 obj: 0.301 obj_pw: 0.911 iou_t: 0.2 anchor_t: 2.91 # anchors: 3.63 fl_gamma: 0.0 hsv_h: 0.0138 hsv_s: 0.664 hsv_v: 0.464 degrees: 0.373 translate: 0.245 scale: 0.898 shear: 0.602 perspective: 0.0 flipud: 0.00856 fliplr: 0.5 mosaic: 1.0 mixup: 0.243 ================================================ FILE: data/hyp.scratch.yaml ================================================ # Hyperparameters for COCO training from scratch # python train.py --batch 40 --cfg yolov5m.yaml --weights '' --data coco.yaml --img 640 --epochs 300 # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials lr0: 0.01 # initial learning rate ( original SGD=1E-2, Adam=1E-3) lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf) momentum: 0.937 # SGD momentum/Adam beta1 weight_decay: 0.0005 # optimizer weight decay 5e-4 warmup_epochs: 3.0 # warmup epochs (fractions ok) warmup_momentum: 0.8 # warmup initial momentum warmup_bias_lr: 0.1 # warmup initial bias lr box: 0.05 # box loss gain cls: 0.5 # cls loss gain cls_pw: 1.0 # cls BCELoss positive_weight obj: 1.0 # obj loss gain (scale with pixels) obj_pw: 1.0 # obj BCELoss positive_weight iou_t: 0.20 # IoU training threshold anchor_t: 4.0 # anchor-multiple threshold # anchors: 3 # anchors per output layer (0 to ignore) fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5) hsv_h: 0.015 # image HSV-Hue augmentation (fraction) hsv_s: 0.7 # image HSV-Saturation augmentation (fraction) hsv_v: 0.4 # image HSV-Value augmentation (fraction) degrees: 0.0 # image rotation (+/- deg) translate: 0.1 # image translation (+/- fraction) scale: 0.5 # image scale (+/- gain) shear: 0.0 # image shear (+/- deg) perspective: 0.0 # image perspective (+/- fraction), range 0-0.001 flipud: 0.0 # image flip up-down (probability) fliplr: 0.5 # image flip left-right (probability) mosaic: 1.0 # image mosaic (probability) mixup: 0.0 # image mixup (probability) ================================================ FILE: data/hyp.scratch_VEDAI.yaml ================================================ # Hyperparameters for COCO training from scratch # python train.py --batch 40 --cfg yolov5m.yaml --weights '' --data coco.yaml --img 640 --epochs 300 # See tutorials for hyperparameter evolution https://github.com/ultralytics/yolov5#tutorials lr0: 0.01 # initial learning rate ( original SGD=1E-2, Adam=1E-3) lrf: 0.1 # final OneCycleLR learning rate (lr0 * lrf) momentum: 0.937 # SGD momentum/Adam beta1 weight_decay: 0.0005 # optimizer weight decay 5e-4 warmup_epochs: 3.0 # warmup epochs (fractions ok) warmup_momentum: 0.8 # warmup initial momentum warmup_bias_lr: 0.1 # warmup initial bias lr box: 0.05 # box loss gain cls: 0.5 # cls loss gain cls_pw: 1.0 # cls BCELoss positive_weight obj: 1.0 # obj loss gain (scale with pixels) obj_pw: 1.0 # obj BCELoss positive_weight iou_t: 0.20 # IoU training threshold anchor_t: 4.0 # anchor-multiple threshold # anchors: 3 # anchors per output layer (0 to ignore) fl_gamma: 0.0 # focal loss gamma (efficientDet default gamma=1.5) hsv_h: 0.015 # image HSV-Hue augmentation (fraction) hsv_s: 0.7 # image HSV-Saturation augmentation (fraction) hsv_v: 0.4 # image HSV-Value augmentation (fraction) degrees: 0.0 # image rotation (+/- deg) translate: 0.1 # image translation (+/- fraction) scale: 0.5 # image scale (+/- gain) shear: 0.0 # image shear (+/- deg) perspective: 0.0 # image perspective (+/- fraction), range 0-0.001 flipud: 0.0 # image flip up-down (probability) fliplr: 0.5 # image flip left-right (probability) mosaic: 0.0 # image mosaic (probability) mixup: 0.0 # image mixup (probability) ================================================ FILE: data/multispectral/CVC14.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/CVC14 train_rgb: /home/shen/Chenyf/CVC14/visible/train # 128 images val_rgb: /home/shen/Chenyf/CVC14/visible/test # 128 images train_ir: /home/shen/Chenyf/CVC14/infrared/train # 128 images val_ir: /home/shen/Chenyf/CVC14/infrared/test # 128 images # number of classes nc: 1 # class names names: ['person'] ================================================ FILE: data/multispectral/FLIR-align-3class.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/FLIR-align-3class train_rgb: /home/shen/Chenyf/FLIR-align-3class/visible/train # 128 images val_rgb: /home/shen/Chenyf/FLIR-align-3class/visible/test # 128 images train_ir: /home/shen/Chenyf/FLIR-align-3class/infrared/train # 128 images val_ir: /home/shen/Chenyf/FLIR-align-3class/infrared/test # 128 images # number of classes nc: 3 # class names names: ['person', 'car', 'bicycle'] ================================================ FILE: data/multispectral/FLIR-align.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/FLIR-align train_rgb: /home/shen/Chenyf/FLIR-align/visible/train # 128 images val_rgb: /home/shen/Chenyf/FLIR-align/visible/test # 128 images train_ir: /home/shen/Chenyf/FLIR-align/infrared/train # 128 images val_ir: /home/shen/Chenyf/FLIR-align/infrared/test # 128 images # number of classes nc: 1 # class names names: ['person'] ================================================ FILE: data/multispectral/LLVIP.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/LLVIP train_rgb: /home/shen/Chenyf/LLVIP/visible/train/ # 128 images val_rgb: /home/shen/Chenyf/LLVIP/visible/test/ # 128 images train_ir: /home/shen/Chenyf/LLVIP/infrared/train/ # 128 images val_ir: /home/shen/Chenyf/LLVIP/infrared/test/ # 128 images # number of classes nc: 1 # class names names: ['person'] ================================================ FILE: data/multispectral/VEDAI.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/VEDAI/fold01 train_rgb: /home/shen/Chenyf/VEDAI/fold01/visible/train # 128 images val_rgb: /home/shen/Chenyf/VEDAI/fold01/visible/test # 128 images train_ir: /home/shen/Chenyf/VEDAI/fold01/infrared/train # 128 images val_ir: /home/shen/Chenyf/VEDAI/fold01/infrared/test # 128 images # number of classes nc: 9 # class names names: ['car', 'truck', 'pickup', 'tractor', 'camper', 'ship', 'van', 'plane', 'other'] ================================================ FILE: data/multispectral/kaist.yaml ================================================ # COCO 2017 dataset http://cocodataset.org - first 128 training images # Train command: python train.py --data coco128.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /coco128 # /yolov5 # download command/URL (optional) download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/] path: /home/shen/Chenyf/kaist train_rgb: /home/shen/Chenyf/kaist/visible/train/ # 128 images val_rgb: /home/shen/Chenyf/kaist/visible/test/ # 128 images train_ir: /home/shen/Chenyf/kaist/infrared/train/ # 128 images val_ir: /home/shen/Chenyf/kaist/infrared/test/ # 128 images # number of classes nc: 1 # class names names: ['person'] ================================================ FILE: data/scripts/get_argoverse_hd.sh ================================================ #!/bin/bash # Argoverse-HD dataset (ring-front-center camera) http://www.cs.cmu.edu/~mengtial/proj/streaming/ # Download command: bash data/scripts/get_argoverse_hd.sh # Train command: python train.py --data argoverse_hd.yaml # Default dataset location is next to YOLOv5: # /parent_folder # /argoverse # /yolov5 # Download/unzip images d='../argoverse/' # unzip directory mkdir $d url=https://argoverse-hd.s3.us-east-2.amazonaws.com/ f=Argoverse-HD-Full.zip curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background wait # finish background tasks cd ../argoverse/Argoverse-1.1/ ln -s tracking images cd ../Argoverse-HD/annotations/ python3 - "$@" <train.txt cat 2007_train.txt 2007_val.txt 2007_test.txt 2012_train.txt 2012_val.txt >train.all.txt mkdir ../VOC ../VOC/images ../VOC/images/train ../VOC/images/val mkdir ../VOC/labels ../VOC/labels/train ../VOC/labels/val python3 - "$@" <= 1 p, s, im0, frame = path[i], '%g: ' % i, im0s[i].copy(), dataset.count else: p, s, im0, frame = path, '', im0s.copy(), getattr(dataset, 'frame', 0) p, s, im0_, frame = path, '', im0s_.copy(), getattr(dataset2, 'frame', 0) p = Path(p) # to Path save_path = str(save_dir / p.name) # img.jpg txt_path = str(save_dir / 'labels' / p.stem) + ('' if dataset.mode == 'image' else f'_{frame}') # img.txt s += '%gx%g ' % img.shape[2:] # print string gn = torch.tensor(im0.shape)[[1, 0, 1, 0]] # normalization gain whwh # print(gn) mem = '%.4gM' % (torch.cuda.memory_reserved() / 1E6 if torch.cuda.is_available() else 0) print('GPU Memory:', mem) # # ---------------------------------------------------------------------------- # # 画GT,替换det # # # # --------------------------------------------------------------------------- # annoPath = "/home/fqy/proj/paper/test_result/gt/" # annoName = (path_.split("/")[-1]).split(".")[0] + ".txt" # annoPath += annoName # # print(annoPath) # gt = np.loadtxt(annoPath) # gt = gt.reshape((-1, 5)) # ones = np.ones((gt.shape[0], 1)) # gt = np.hstack((gt, ones)) # gt[:, [0,1,2,3,4,5]] = gt[:, [1,2,3,4,5,0]] # gt = torch.from_numpy(gt).to(device) # # print(gt[:, :4]) # gt[:, :4] = xywh2xyxy(gt[:, :4]) * 640 # # det = gt # print(det) if len(det): # Rescale boxes from img_size to im0 size det[:, :4] = scale_coords(img.shape[2:], det[:, :4], im0.shape).round() # Print results for c in det[:, -1].unique(): n = (det[:, -1] == c).sum() # detections per class s += f"{n} {names[int(c)]}{'s' * (n > 1)}, " # add to string # Write results for *xyxy, conf, cls in reversed(det): if save_txt: # Write to file xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh line = (cls, *xywh, conf) if opt.save_conf else (cls, *xywh) # label format with open(txt_path + '.txt', 'a') as f: f.write(('%g ' * len(line)).rstrip() % line + '\n') if save_img or opt.save_crop or view_img: # Add bbox to image c = int(cls) # integer class label = None if opt.hide_labels else (names[c] if opt.hide_conf else f'{names[c]} {conf:.2f}') plot_one_box(xyxy, im0, label=label, color=colors(c, True), line_thickness=opt.line_thickness) plot_one_box(xyxy, im0_, label=label, color=colors(c, True), line_thickness=opt.line_thickness) if opt.save_crop: save_one_box(xyxy, im0s, file=save_dir / 'crops' / names[c] / f'{p.stem}.jpg', BGR=True) # Print time (inference + NMS) print(f'{s}Done. ({t2 - t1:.6f}s, {1/(t2 - t1):.6f}Hz)') # add all the fps img_num += 1 fps_sum += 1/(t2 - t1) # Stream results if view_img: cv2.imshow(str(p), img0) cv2.waitKey(1) # 1 millisecond # Save results (image with detections) if save_img: if dataset.mode == 'image': save_path_rgb = save_path.split('.')[0] + '_rgb.' + save_path.split('.')[1] save_path_ir = save_path.split('.')[0] + '_ir.' + save_path.split('.')[1] print(save_path_rgb) cv2.imwrite(save_path_rgb, im0) cv2.imwrite(save_path_ir, im0_) else: # 'video' or 'stream' if vid_path != save_path: # new video vid_path = save_path if isinstance(vid_writer, cv2.VideoWriter): vid_writer.release() # release previous video writer if vid_cap: # video fps = vid_cap.get(cv2.CAP_PROP_FPS) w = int(vid_cap.get(cv2.CAP_PROP_FRAME_WIDTH)) h = int(vid_cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) else: # stream fps, w, h = 30, im0.shape[1], im0.shape[0] save_path += '.mp4' vid_writer = cv2.VideoWriter(save_path, cv2.VideoWriter_fourcc(*'mp4v'), fps, (w, h)) vid_writer.write(im0) if save_txt or save_img: s = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}" if save_txt else '' print(f"Results saved to {save_dir}{s}") print(f'Done. ({time.time() - t0:.3f}s)') print(f'Average Speed: {fps_sum/img_num:.6f}Hz') if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--weights', nargs='+', type=str, default='/home/ubuntu/Chenyf/multispectral-object-detection/runs/train/exp6/weights/best.pt', help='model.pt path(s)') parser.add_argument('--source1', type=str, default='/home/shen/Chenyf/FLIR-align-3class/visible/test/', help='source') # file/folder, 0 for webcam parser.add_argument('--source2', type=str, default='/home/shen/Chenyf/FLIR-align-3class/infrared/test/', help='source') # file/folder, 0 for webcam parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)') parser.add_argument('--conf-thres', type=float, default=0.1, help='object confidence threshold') parser.add_argument('--iou-thres', type=float, default=0.5, help='IOU threshold for NMS') parser.add_argument('--device', default='0', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') parser.add_argument('--view-img', default=False, action='store_true', help='display results') parser.add_argument('--save-txt', action='store_true', help='save results to *.txt') parser.add_argument('--save-conf', action='store_true', help='save confidences in --save-txt labels') parser.add_argument('--save-crop', action='store_true', help='save cropped prediction boxes') parser.add_argument('--nosave', action='store_true', help='do not save images/videos') parser.add_argument('--classes', nargs='+', type=int, help='filter by class: --class 0, or --class 0 2 3') parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS') parser.add_argument('--augment', action='store_true', help='augmented inference') parser.add_argument('--update', action='store_true', help='update all models') parser.add_argument('--project', default='runs/detect', help='save results to project/name') parser.add_argument('--name', default='exp', help='save results to project/name') parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment') parser.add_argument('--line-thickness', default=2, type=int, help='bounding box thickness (pixels)') parser.add_argument('--hide-labels', default=False, action='store_true', help='hide labels') parser.add_argument('--hide-conf', default=True, action='store_true', help='hide confidences') opt = parser.parse_args() print(opt) check_requirements(exclude=('pycocotools', 'thop')) with torch.no_grad(): if opt.update: # update all models (to fix SourceChangeWarning) for opt.weights in ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt']: detect(opt=opt) strip_optimizer(opt.weights) else: print("helloxxxxxxxxxxxxxxxxxxxx") detect(opt=opt) ================================================ FILE: evaluation_script/KAIST_annotation.json ================================================ { "info": { "dataset": "KAIST Multispectral Pedestrian Benchmark", "url": "https://soonminhwang.github.io/rgbt-ped-detection/", "related_project_url": "http://multispectral.kaist.ac.kr", "publish": "CVPR 2015" }, "info_improved": { "sanitized_annotation": { "publish": "BMVC 2018", "url": "https://li-chengyang.github.io/home/MSDS-RCNN/", "target": "files in train-all-02.txt (set00-set05)" }, "improved_annotation": { "url": "https://github.com/denny1108/multispectral-pedestrian-py-faster-rcnn", "publish": "BMVC 2016", "target": "files in test-all-20.txt (set06-set11)" } }, "images": [ { "id": 0, "im_name": "set06/V000/I00019", "height": 512, "width": 640 }, { "id": 1, "im_name": "set06/V000/I00039", "height": 512, "width": 640 }, { "id": 2, "im_name": "set06/V000/I00059", "height": 512, "width": 640 }, { "id": 3, "im_name": "set06/V000/I00079", "height": 512, "width": 640 }, { "id": 4, "im_name": "set06/V000/I00099", "height": 512, "width": 640 }, { "id": 5, "im_name": "set06/V000/I00119", "height": 512, "width": 640 }, { "id": 6, "im_name": "set06/V000/I00139", "height": 512, "width": 640 }, { "id": 7, "im_name": "set06/V000/I00159", "height": 512, "width": 640 }, { "id": 8, "im_name": "set06/V000/I00179", "height": 512, "width": 640 }, { "id": 9, "im_name": "set06/V000/I00199", "height": 512, "width": 640 }, { "id": 10, "im_name": "set06/V000/I00219", "height": 512, "width": 640 }, { "id": 11, "im_name": "set06/V000/I00239", "height": 512, "width": 640 }, { "id": 12, "im_name": "set06/V000/I00259", "height": 512, "width": 640 }, { "id": 13, "im_name": "set06/V000/I00279", "height": 512, "width": 640 }, { "id": 14, "im_name": "set06/V000/I00299", "height": 512, "width": 640 }, { "id": 15, "im_name": "set06/V000/I00319", "height": 512, "width": 640 }, { "id": 16, "im_name": "set06/V000/I00339", "height": 512, "width": 640 }, { "id": 17, "im_name": "set06/V000/I00359", "height": 512, "width": 640 }, { "id": 18, "im_name": "set06/V000/I00379", "height": 512, "width": 640 }, { "id": 19, "im_name": "set06/V000/I00399", "height": 512, "width": 640 }, { "id": 20, "im_name": "set06/V000/I00419", "height": 512, "width": 640 }, { "id": 21, "im_name": "set06/V000/I00439", "height": 512, "width": 640 }, { "id": 22, "im_name": "set06/V000/I00459", "height": 512, "width": 640 }, { "id": 23, "im_name": "set06/V000/I00479", "height": 512, "width": 640 }, { "id": 24, "im_name": "set06/V000/I00499", "height": 512, "width": 640 }, { "id": 25, "im_name": "set06/V000/I00519", "height": 512, "width": 640 }, { "id": 26, "im_name": "set06/V000/I00539", "height": 512, "width": 640 }, { "id": 27, "im_name": "set06/V000/I00559", "height": 512, "width": 640 }, { "id": 28, "im_name": "set06/V000/I00579", "height": 512, "width": 640 }, { "id": 29, "im_name": "set06/V000/I00599", "height": 512, "width": 640 }, { "id": 30, "im_name": "set06/V000/I00619", "height": 512, "width": 640 }, { "id": 31, "im_name": "set06/V000/I00639", "height": 512, "width": 640 }, { "id": 32, "im_name": "set06/V000/I00659", "height": 512, "width": 640 }, { "id": 33, "im_name": "set06/V000/I00679", "height": 512, "width": 640 }, { "id": 34, "im_name": "set06/V000/I00699", "height": 512, "width": 640 }, { "id": 35, "im_name": "set06/V000/I00719", "height": 512, "width": 640 }, { "id": 36, "im_name": "set06/V000/I00739", "height": 512, "width": 640 }, { "id": 37, "im_name": "set06/V000/I00759", "height": 512, "width": 640 }, { "id": 38, "im_name": "set06/V000/I00779", "height": 512, "width": 640 }, { "id": 39, "im_name": "set06/V000/I00799", "height": 512, "width": 640 }, { "id": 40, "im_name": "set06/V000/I00819", "height": 512, "width": 640 }, { "id": 41, "im_name": "set06/V000/I00839", "height": 512, "width": 640 }, { "id": 42, "im_name": "set06/V000/I00859", "height": 512, "width": 640 }, { "id": 43, "im_name": "set06/V000/I00879", "height": 512, "width": 640 }, { "id": 44, "im_name": "set06/V000/I00899", "height": 512, "width": 640 }, { "id": 45, "im_name": "set06/V000/I00919", "height": 512, "width": 640 }, { "id": 46, "im_name": "set06/V000/I00939", "height": 512, "width": 640 }, { "id": 47, "im_name": "set06/V000/I00959", "height": 512, "width": 640 }, { "id": 48, "im_name": "set06/V000/I00979", "height": 512, "width": 640 }, { "id": 49, "im_name": "set06/V000/I00999", "height": 512, "width": 640 }, { "id": 50, "im_name": "set06/V000/I01019", "height": 512, "width": 640 }, { "id": 51, "im_name": "set06/V000/I01039", "height": 512, "width": 640 }, { "id": 52, "im_name": "set06/V000/I01059", "height": 512, "width": 640 }, { "id": 53, "im_name": "set06/V000/I01079", "height": 512, "width": 640 }, { "id": 54, "im_name": "set06/V000/I01099", "height": 512, "width": 640 }, { "id": 55, "im_name": "set06/V000/I01119", "height": 512, "width": 640 }, { "id": 56, "im_name": "set06/V000/I01139", "height": 512, "width": 640 }, { "id": 57, "im_name": "set06/V000/I01159", "height": 512, "width": 640 }, { "id": 58, "im_name": "set06/V000/I01179", "height": 512, "width": 640 }, { "id": 59, "im_name": "set06/V000/I01199", "height": 512, "width": 640 }, { "id": 60, "im_name": "set06/V000/I01219", "height": 512, "width": 640 }, { "id": 61, "im_name": "set06/V000/I01239", "height": 512, "width": 640 }, { "id": 62, "im_name": "set06/V000/I01259", "height": 512, "width": 640 }, { "id": 63, "im_name": "set06/V000/I01279", "height": 512, "width": 640 }, { "id": 64, "im_name": "set06/V000/I01299", "height": 512, "width": 640 }, { "id": 65, "im_name": "set06/V000/I01319", "height": 512, "width": 640 }, { "id": 66, "im_name": "set06/V000/I01339", "height": 512, "width": 640 }, { "id": 67, "im_name": "set06/V000/I01359", "height": 512, "width": 640 }, { "id": 68, "im_name": "set06/V000/I01379", "height": 512, "width": 640 }, { "id": 69, "im_name": "set06/V000/I01399", "height": 512, "width": 640 }, { "id": 70, "im_name": "set06/V000/I01419", "height": 512, "width": 640 }, { "id": 71, "im_name": "set06/V000/I01439", "height": 512, "width": 640 }, { "id": 72, "im_name": "set06/V000/I01459", "height": 512, "width": 640 }, { "id": 73, "im_name": "set06/V000/I01479", "height": 512, "width": 640 }, { "id": 74, "im_name": "set06/V000/I01499", "height": 512, "width": 640 }, { "id": 75, "im_name": "set06/V000/I01519", "height": 512, "width": 640 }, { "id": 76, "im_name": "set06/V001/I00019", "height": 512, "width": 640 }, { "id": 77, "im_name": "set06/V001/I00039", "height": 512, "width": 640 }, { "id": 78, "im_name": "set06/V001/I00059", "height": 512, "width": 640 }, { "id": 79, "im_name": "set06/V001/I00079", "height": 512, "width": 640 }, { "id": 80, "im_name": "set06/V001/I00099", "height": 512, "width": 640 }, { "id": 81, "im_name": "set06/V001/I00119", "height": 512, "width": 640 }, { "id": 82, "im_name": "set06/V001/I00139", "height": 512, "width": 640 }, { "id": 83, "im_name": "set06/V001/I00159", "height": 512, "width": 640 }, { "id": 84, "im_name": "set06/V001/I00179", "height": 512, "width": 640 }, { "id": 85, "im_name": "set06/V001/I00199", "height": 512, "width": 640 }, { "id": 86, "im_name": "set06/V001/I00219", "height": 512, "width": 640 }, { "id": 87, "im_name": "set06/V001/I00239", "height": 512, "width": 640 }, { "id": 88, "im_name": "set06/V001/I00259", "height": 512, "width": 640 }, { "id": 89, "im_name": "set06/V001/I00279", "height": 512, "width": 640 }, { "id": 90, "im_name": "set06/V001/I00299", "height": 512, "width": 640 }, { "id": 91, "im_name": "set06/V001/I00319", "height": 512, "width": 640 }, { "id": 92, "im_name": "set06/V001/I00339", "height": 512, "width": 640 }, { "id": 93, "im_name": "set06/V001/I00359", "height": 512, "width": 640 }, { "id": 94, "im_name": "set06/V001/I00379", "height": 512, "width": 640 }, { "id": 95, "im_name": "set06/V001/I00399", "height": 512, "width": 640 }, { "id": 96, "im_name": "set06/V001/I00419", "height": 512, "width": 640 }, { "id": 97, "im_name": "set06/V001/I00439", "height": 512, "width": 640 }, { "id": 98, "im_name": "set06/V001/I00459", "height": 512, "width": 640 }, { "id": 99, "im_name": "set06/V001/I00479", "height": 512, "width": 640 }, { "id": 100, "im_name": "set06/V001/I00499", "height": 512, "width": 640 }, { "id": 101, "im_name": "set06/V001/I00519", "height": 512, "width": 640 }, { "id": 102, "im_name": "set06/V001/I00539", "height": 512, "width": 640 }, { "id": 103, "im_name": "set06/V001/I00559", "height": 512, "width": 640 }, { "id": 104, "im_name": "set06/V001/I00579", "height": 512, "width": 640 }, { "id": 105, "im_name": "set06/V001/I00599", "height": 512, "width": 640 }, { "id": 106, "im_name": "set06/V001/I00619", "height": 512, "width": 640 }, { "id": 107, "im_name": "set06/V001/I00639", "height": 512, "width": 640 }, { "id": 108, "im_name": "set06/V001/I00659", "height": 512, "width": 640 }, { "id": 109, "im_name": "set06/V001/I00679", "height": 512, "width": 640 }, { "id": 110, "im_name": "set06/V001/I00699", "height": 512, "width": 640 }, { "id": 111, "im_name": "set06/V001/I00719", "height": 512, "width": 640 }, { "id": 112, "im_name": "set06/V001/I00739", "height": 512, "width": 640 }, { "id": 113, "im_name": "set06/V001/I00759", "height": 512, "width": 640 }, { "id": 114, "im_name": "set06/V001/I00779", "height": 512, "width": 640 }, { "id": 115, "im_name": "set06/V001/I00799", "height": 512, "width": 640 }, { "id": 116, "im_name": "set06/V001/I00819", "height": 512, "width": 640 }, { "id": 117, "im_name": "set06/V001/I00839", "height": 512, "width": 640 }, { "id": 118, "im_name": "set06/V001/I00859", "height": 512, "width": 640 }, { "id": 119, "im_name": "set06/V001/I00879", "height": 512, "width": 640 }, { "id": 120, "im_name": "set06/V001/I00899", "height": 512, "width": 640 }, { "id": 121, "im_name": "set06/V001/I00919", "height": 512, "width": 640 }, { "id": 122, "im_name": "set06/V001/I00939", "height": 512, "width": 640 }, { "id": 123, "im_name": "set06/V001/I00959", "height": 512, "width": 640 }, { "id": 124, "im_name": "set06/V001/I00979", "height": 512, "width": 640 }, { "id": 125, "im_name": "set06/V001/I00999", "height": 512, "width": 640 }, { "id": 126, "im_name": "set06/V001/I01019", "height": 512, "width": 640 }, { "id": 127, "im_name": "set06/V001/I01039", "height": 512, "width": 640 }, { "id": 128, "im_name": "set06/V001/I01059", "height": 512, "width": 640 }, { "id": 129, "im_name": "set06/V001/I01079", "height": 512, "width": 640 }, { "id": 130, "im_name": "set06/V001/I01099", "height": 512, "width": 640 }, { "id": 131, "im_name": "set06/V001/I01119", "height": 512, "width": 640 }, { "id": 132, "im_name": "set06/V001/I01139", "height": 512, "width": 640 }, { "id": 133, "im_name": "set06/V001/I01159", "height": 512, "width": 640 }, { "id": 134, "im_name": "set06/V001/I01179", "height": 512, "width": 640 }, { "id": 135, "im_name": "set06/V001/I01199", "height": 512, "width": 640 }, { "id": 136, "im_name": "set06/V001/I01219", "height": 512, "width": 640 }, { "id": 137, "im_name": "set06/V001/I01239", "height": 512, "width": 640 }, { "id": 138, "im_name": "set06/V001/I01259", "height": 512, "width": 640 }, { "id": 139, "im_name": "set06/V001/I01279", "height": 512, "width": 640 }, { "id": 140, "im_name": "set06/V001/I01299", "height": 512, "width": 640 }, { "id": 141, "im_name": "set06/V001/I01319", "height": 512, "width": 640 }, { "id": 142, "im_name": "set06/V001/I01339", "height": 512, "width": 640 }, { "id": 143, "im_name": "set06/V001/I01359", "height": 512, "width": 640 }, { "id": 144, "im_name": "set06/V001/I01379", "height": 512, "width": 640 }, { "id": 145, "im_name": "set06/V001/I01399", "height": 512, "width": 640 }, { "id": 146, "im_name": "set06/V001/I01419", "height": 512, "width": 640 }, { "id": 147, "im_name": "set06/V001/I01439", "height": 512, "width": 640 }, { "id": 148, "im_name": "set06/V001/I01459", "height": 512, "width": 640 }, { "id": 149, "im_name": "set06/V001/I01479", "height": 512, "width": 640 }, { "id": 150, "im_name": "set06/V001/I01499", "height": 512, "width": 640 }, { "id": 151, "im_name": "set06/V001/I01519", "height": 512, "width": 640 }, { "id": 152, "im_name": "set06/V001/I01539", "height": 512, "width": 640 }, { "id": 153, "im_name": "set06/V001/I01559", "height": 512, "width": 640 }, { "id": 154, "im_name": "set06/V001/I01579", "height": 512, "width": 640 }, { "id": 155, "im_name": "set06/V001/I01599", "height": 512, "width": 640 }, { "id": 156, "im_name": "set06/V001/I01619", "height": 512, "width": 640 }, { "id": 157, "im_name": "set06/V001/I01639", "height": 512, "width": 640 }, { "id": 158, "im_name": "set06/V001/I01659", "height": 512, "width": 640 }, { "id": 159, "im_name": "set06/V001/I01679", "height": 512, "width": 640 }, { "id": 160, "im_name": "set06/V001/I01699", "height": 512, "width": 640 }, { "id": 161, "im_name": "set06/V001/I01719", "height": 512, "width": 640 }, { "id": 162, "im_name": "set06/V001/I01739", "height": 512, "width": 640 }, { "id": 163, "im_name": "set06/V001/I01759", "height": 512, "width": 640 }, { "id": 164, "im_name": "set06/V001/I01779", "height": 512, "width": 640 }, { "id": 165, "im_name": "set06/V001/I01799", "height": 512, "width": 640 }, { "id": 166, "im_name": "set06/V001/I01819", "height": 512, "width": 640 }, { "id": 167, "im_name": "set06/V001/I01839", "height": 512, "width": 640 }, { "id": 168, "im_name": "set06/V001/I01859", "height": 512, "width": 640 }, { "id": 169, "im_name": "set06/V001/I01879", "height": 512, "width": 640 }, { "id": 170, "im_name": "set06/V001/I01899", "height": 512, "width": 640 }, { "id": 171, "im_name": "set06/V001/I01919", "height": 512, "width": 640 }, { "id": 172, "im_name": "set06/V001/I01939", "height": 512, "width": 640 }, { "id": 173, "im_name": "set06/V001/I01959", "height": 512, "width": 640 }, { "id": 174, "im_name": "set06/V001/I01979", "height": 512, "width": 640 }, { "id": 175, "im_name": "set06/V001/I01999", "height": 512, "width": 640 }, { "id": 176, "im_name": "set06/V001/I02019", "height": 512, "width": 640 }, { "id": 177, "im_name": "set06/V001/I02039", "height": 512, "width": 640 }, { "id": 178, "im_name": "set06/V001/I02059", "height": 512, "width": 640 }, { "id": 179, "im_name": "set06/V001/I02079", "height": 512, "width": 640 }, { "id": 180, "im_name": "set06/V001/I02099", "height": 512, "width": 640 }, { "id": 181, "im_name": "set06/V001/I02119", "height": 512, "width": 640 }, { "id": 182, "im_name": "set06/V001/I02139", "height": 512, "width": 640 }, { "id": 183, "im_name": "set06/V001/I02159", "height": 512, "width": 640 }, { "id": 184, "im_name": "set06/V001/I02179", "height": 512, "width": 640 }, { "id": 185, "im_name": "set06/V001/I02199", "height": 512, "width": 640 }, { "id": 186, "im_name": "set06/V001/I02219", "height": 512, "width": 640 }, { "id": 187, "im_name": "set06/V001/I02239", "height": 512, "width": 640 }, { "id": 188, "im_name": "set06/V001/I02259", "height": 512, "width": 640 }, { "id": 189, "im_name": "set06/V001/I02279", "height": 512, "width": 640 }, { "id": 190, "im_name": "set06/V001/I02299", "height": 512, "width": 640 }, { "id": 191, "im_name": "set06/V001/I02319", "height": 512, "width": 640 }, { "id": 192, "im_name": "set06/V001/I02339", "height": 512, "width": 640 }, { "id": 193, "im_name": "set06/V001/I02359", "height": 512, "width": 640 }, { "id": 194, "im_name": "set06/V001/I02379", "height": 512, "width": 640 }, { "id": 195, "im_name": "set06/V001/I02399", "height": 512, "width": 640 }, { "id": 196, "im_name": "set06/V001/I02419", "height": 512, "width": 640 }, { "id": 197, "im_name": "set06/V001/I02439", "height": 512, "width": 640 }, { "id": 198, "im_name": "set06/V001/I02459", "height": 512, "width": 640 }, { "id": 199, "im_name": "set06/V001/I02479", "height": 512, "width": 640 }, { "id": 200, "im_name": "set06/V001/I02499", "height": 512, "width": 640 }, { "id": 201, "im_name": "set06/V001/I02519", "height": 512, "width": 640 }, { "id": 202, "im_name": "set06/V001/I02539", "height": 512, "width": 640 }, { "id": 203, "im_name": "set06/V001/I02559", "height": 512, "width": 640 }, { "id": 204, "im_name": "set06/V001/I02579", "height": 512, "width": 640 }, { "id": 205, "im_name": "set06/V001/I02599", "height": 512, "width": 640 }, { "id": 206, "im_name": "set06/V001/I02619", "height": 512, "width": 640 }, { "id": 207, "im_name": "set06/V001/I02639", "height": 512, "width": 640 }, { "id": 208, "im_name": "set06/V001/I02659", "height": 512, "width": 640 }, { "id": 209, "im_name": "set06/V001/I02679", "height": 512, "width": 640 }, { "id": 210, "im_name": "set06/V002/I00019", "height": 512, "width": 640 }, { "id": 211, "im_name": "set06/V002/I00039", "height": 512, "width": 640 }, { "id": 212, "im_name": "set06/V002/I00059", "height": 512, "width": 640 }, { "id": 213, "im_name": "set06/V002/I00079", "height": 512, "width": 640 }, { "id": 214, "im_name": "set06/V002/I00099", "height": 512, "width": 640 }, { "id": 215, "im_name": "set06/V002/I00119", "height": 512, "width": 640 }, { "id": 216, "im_name": "set06/V002/I00139", "height": 512, "width": 640 }, { "id": 217, "im_name": "set06/V002/I00159", "height": 512, "width": 640 }, { "id": 218, "im_name": "set06/V002/I00179", "height": 512, "width": 640 }, { "id": 219, "im_name": "set06/V002/I00199", "height": 512, "width": 640 }, { "id": 220, "im_name": "set06/V002/I00219", "height": 512, "width": 640 }, { "id": 221, "im_name": "set06/V002/I00239", "height": 512, "width": 640 }, { "id": 222, "im_name": "set06/V002/I00259", "height": 512, "width": 640 }, { "id": 223, "im_name": "set06/V002/I00279", "height": 512, "width": 640 }, { "id": 224, "im_name": "set06/V002/I00299", "height": 512, "width": 640 }, { "id": 225, "im_name": "set06/V002/I00319", "height": 512, "width": 640 }, { "id": 226, "im_name": "set06/V002/I00339", "height": 512, "width": 640 }, { "id": 227, "im_name": "set06/V002/I00359", "height": 512, "width": 640 }, { "id": 228, "im_name": "set06/V002/I00379", "height": 512, "width": 640 }, { "id": 229, "im_name": "set06/V002/I00399", "height": 512, "width": 640 }, { "id": 230, "im_name": "set06/V002/I00419", "height": 512, "width": 640 }, { "id": 231, "im_name": "set06/V002/I00439", "height": 512, "width": 640 }, { "id": 232, "im_name": "set06/V002/I00459", "height": 512, "width": 640 }, { "id": 233, "im_name": "set06/V002/I00479", "height": 512, "width": 640 }, { "id": 234, "im_name": "set06/V002/I00499", "height": 512, "width": 640 }, { "id": 235, "im_name": "set06/V002/I00519", "height": 512, "width": 640 }, { "id": 236, "im_name": "set06/V002/I00539", "height": 512, "width": 640 }, { "id": 237, "im_name": "set06/V002/I00559", "height": 512, "width": 640 }, { "id": 238, "im_name": "set06/V002/I00579", "height": 512, "width": 640 }, { "id": 239, "im_name": "set06/V002/I00599", "height": 512, "width": 640 }, { "id": 240, "im_name": "set06/V002/I00619", "height": 512, "width": 640 }, { "id": 241, "im_name": "set06/V002/I00639", "height": 512, "width": 640 }, { "id": 242, "im_name": "set06/V002/I00659", "height": 512, "width": 640 }, { "id": 243, "im_name": "set06/V002/I00679", "height": 512, "width": 640 }, { "id": 244, "im_name": "set06/V002/I00699", "height": 512, "width": 640 }, { "id": 245, "im_name": "set06/V002/I00719", "height": 512, "width": 640 }, { "id": 246, "im_name": "set06/V002/I00739", "height": 512, "width": 640 }, { "id": 247, "im_name": "set06/V002/I00759", "height": 512, "width": 640 }, { "id": 248, "im_name": "set06/V002/I00779", "height": 512, "width": 640 }, { "id": 249, "im_name": "set06/V002/I00799", "height": 512, "width": 640 }, { "id": 250, "im_name": "set06/V002/I00819", "height": 512, "width": 640 }, { "id": 251, "im_name": "set06/V002/I00839", "height": 512, "width": 640 }, { "id": 252, "im_name": "set06/V002/I00859", "height": 512, "width": 640 }, { "id": 253, "im_name": "set06/V002/I00879", "height": 512, "width": 640 }, { "id": 254, "im_name": "set06/V002/I00899", "height": 512, "width": 640 }, { "id": 255, "im_name": "set06/V002/I00919", "height": 512, "width": 640 }, { "id": 256, "im_name": "set06/V002/I00939", "height": 512, "width": 640 }, { "id": 257, "im_name": "set06/V002/I00959", "height": 512, "width": 640 }, { "id": 258, "im_name": "set06/V002/I00979", "height": 512, "width": 640 }, { "id": 259, "im_name": "set06/V002/I00999", "height": 512, "width": 640 }, { "id": 260, "im_name": "set06/V002/I01019", "height": 512, "width": 640 }, { "id": 261, "im_name": "set06/V002/I01039", "height": 512, "width": 640 }, { "id": 262, "im_name": "set06/V002/I01059", "height": 512, "width": 640 }, { "id": 263, "im_name": "set06/V002/I01079", "height": 512, "width": 640 }, { "id": 264, "im_name": "set06/V002/I01099", "height": 512, "width": 640 }, { "id": 265, "im_name": "set06/V002/I01119", "height": 512, "width": 640 }, { "id": 266, "im_name": "set06/V002/I01139", "height": 512, "width": 640 }, { "id": 267, "im_name": "set06/V002/I01159", "height": 512, "width": 640 }, { "id": 268, "im_name": "set06/V002/I01179", "height": 512, "width": 640 }, { "id": 269, "im_name": "set06/V002/I01199", "height": 512, "width": 640 }, { "id": 270, "im_name": "set06/V002/I01219", "height": 512, "width": 640 }, { "id": 271, "im_name": "set06/V002/I01239", "height": 512, "width": 640 }, { "id": 272, "im_name": "set06/V002/I01259", "height": 512, "width": 640 }, { "id": 273, "im_name": "set06/V002/I01279", "height": 512, "width": 640 }, { "id": 274, "im_name": "set06/V002/I01299", "height": 512, "width": 640 }, { "id": 275, "im_name": "set06/V002/I01319", "height": 512, "width": 640 }, { "id": 276, "im_name": "set06/V002/I01339", "height": 512, "width": 640 }, { "id": 277, "im_name": "set06/V002/I01359", "height": 512, "width": 640 }, { "id": 278, "im_name": "set06/V002/I01379", "height": 512, "width": 640 }, { "id": 279, "im_name": "set06/V002/I01399", "height": 512, "width": 640 }, { "id": 280, "im_name": "set06/V002/I01419", "height": 512, "width": 640 }, { "id": 281, "im_name": "set06/V002/I01439", "height": 512, "width": 640 }, { "id": 282, "im_name": "set06/V002/I01459", "height": 512, "width": 640 }, { "id": 283, "im_name": "set06/V002/I01479", "height": 512, "width": 640 }, { "id": 284, "im_name": "set06/V002/I01499", "height": 512, "width": 640 }, { "id": 285, "im_name": "set06/V002/I01519", "height": 512, "width": 640 }, { "id": 286, "im_name": "set06/V002/I01539", "height": 512, "width": 640 }, { "id": 287, "im_name": "set06/V002/I01559", "height": 512, "width": 640 }, { "id": 288, "im_name": "set06/V002/I01579", "height": 512, "width": 640 }, { "id": 289, "im_name": "set06/V002/I01599", "height": 512, "width": 640 }, { "id": 290, "im_name": "set06/V002/I01619", "height": 512, "width": 640 }, { "id": 291, "im_name": "set06/V002/I01639", "height": 512, "width": 640 }, { "id": 292, "im_name": "set06/V002/I01659", "height": 512, "width": 640 }, { "id": 293, "im_name": "set06/V002/I01679", "height": 512, "width": 640 }, { "id": 294, "im_name": "set06/V003/I00019", "height": 512, "width": 640 }, { "id": 295, "im_name": "set06/V003/I00039", "height": 512, "width": 640 }, { "id": 296, "im_name": "set06/V003/I00059", "height": 512, "width": 640 }, { "id": 297, "im_name": "set06/V003/I00079", "height": 512, "width": 640 }, { "id": 298, "im_name": "set06/V003/I00099", "height": 512, "width": 640 }, { "id": 299, "im_name": "set06/V003/I00119", "height": 512, "width": 640 }, { "id": 300, "im_name": "set06/V003/I00139", "height": 512, "width": 640 }, { "id": 301, "im_name": "set06/V003/I00159", "height": 512, "width": 640 }, { "id": 302, "im_name": "set06/V003/I00179", "height": 512, "width": 640 }, { "id": 303, "im_name": "set06/V003/I00199", "height": 512, "width": 640 }, { "id": 304, "im_name": "set06/V003/I00219", "height": 512, "width": 640 }, { "id": 305, "im_name": "set06/V003/I00239", "height": 512, "width": 640 }, { "id": 306, "im_name": "set06/V003/I00259", "height": 512, "width": 640 }, { "id": 307, "im_name": "set06/V003/I00279", "height": 512, "width": 640 }, { "id": 308, "im_name": "set06/V003/I00299", "height": 512, "width": 640 }, { "id": 309, "im_name": "set06/V003/I00319", "height": 512, "width": 640 }, { "id": 310, "im_name": "set06/V003/I00339", "height": 512, "width": 640 }, { "id": 311, "im_name": "set06/V003/I00359", "height": 512, "width": 640 }, { "id": 312, "im_name": "set06/V003/I00379", "height": 512, "width": 640 }, { "id": 313, "im_name": "set06/V003/I00399", "height": 512, "width": 640 }, { "id": 314, "im_name": "set06/V003/I00419", "height": 512, "width": 640 }, { "id": 315, "im_name": "set06/V003/I00439", "height": 512, "width": 640 }, { "id": 316, "im_name": "set06/V003/I00459", "height": 512, "width": 640 }, { "id": 317, "im_name": "set06/V003/I00479", "height": 512, "width": 640 }, { "id": 318, "im_name": "set06/V003/I00499", "height": 512, "width": 640 }, { "id": 319, "im_name": "set06/V003/I00519", "height": 512, "width": 640 }, { "id": 320, "im_name": "set06/V003/I00539", "height": 512, "width": 640 }, { "id": 321, "im_name": "set06/V003/I00559", "height": 512, "width": 640 }, { "id": 322, "im_name": "set06/V003/I00579", "height": 512, "width": 640 }, { "id": 323, "im_name": "set06/V003/I00599", "height": 512, "width": 640 }, { "id": 324, "im_name": "set06/V003/I00619", "height": 512, "width": 640 }, { "id": 325, "im_name": "set06/V003/I00639", "height": 512, "width": 640 }, { "id": 326, "im_name": "set06/V003/I00659", "height": 512, "width": 640 }, { "id": 327, "im_name": "set06/V003/I00679", "height": 512, "width": 640 }, { "id": 328, "im_name": "set06/V003/I00699", "height": 512, "width": 640 }, { "id": 329, "im_name": "set06/V003/I00719", "height": 512, "width": 640 }, { "id": 330, "im_name": "set06/V003/I00739", "height": 512, "width": 640 }, { "id": 331, "im_name": "set06/V003/I00759", "height": 512, "width": 640 }, { "id": 332, "im_name": "set06/V003/I00779", "height": 512, "width": 640 }, { "id": 333, "im_name": "set06/V003/I00799", "height": 512, "width": 640 }, { "id": 334, "im_name": "set06/V003/I00819", "height": 512, "width": 640 }, { "id": 335, "im_name": "set06/V003/I00839", "height": 512, "width": 640 }, { "id": 336, "im_name": "set06/V003/I00859", "height": 512, "width": 640 }, { "id": 337, "im_name": "set06/V003/I00879", "height": 512, "width": 640 }, { "id": 338, "im_name": "set06/V003/I00899", "height": 512, "width": 640 }, { "id": 339, "im_name": "set06/V003/I00919", "height": 512, "width": 640 }, { "id": 340, "im_name": "set06/V003/I00939", "height": 512, "width": 640 }, { "id": 341, "im_name": "set06/V003/I00959", "height": 512, "width": 640 }, { "id": 342, "im_name": "set06/V003/I00979", "height": 512, "width": 640 }, { "id": 343, "im_name": "set06/V003/I00999", "height": 512, "width": 640 }, { "id": 344, "im_name": "set06/V003/I01019", "height": 512, "width": 640 }, { "id": 345, "im_name": "set06/V003/I01039", "height": 512, "width": 640 }, { "id": 346, "im_name": "set06/V003/I01059", "height": 512, "width": 640 }, { "id": 347, "im_name": "set06/V003/I01079", "height": 512, "width": 640 }, { "id": 348, "im_name": "set06/V003/I01099", "height": 512, "width": 640 }, { "id": 349, "im_name": "set06/V003/I01119", "height": 512, "width": 640 }, { "id": 350, "im_name": "set06/V003/I01139", "height": 512, "width": 640 }, { "id": 351, "im_name": "set06/V003/I01159", "height": 512, "width": 640 }, { "id": 352, "im_name": "set06/V003/I01179", "height": 512, "width": 640 }, { "id": 353, "im_name": "set06/V003/I01199", "height": 512, "width": 640 }, { "id": 354, "im_name": "set06/V003/I01219", "height": 512, "width": 640 }, { "id": 355, "im_name": "set06/V003/I01239", "height": 512, "width": 640 }, { "id": 356, "im_name": "set06/V003/I01259", "height": 512, "width": 640 }, { "id": 357, "im_name": "set06/V003/I01279", "height": 512, "width": 640 }, { "id": 358, "im_name": "set06/V003/I01299", "height": 512, "width": 640 }, { "id": 359, "im_name": "set06/V003/I01319", "height": 512, "width": 640 }, { "id": 360, "im_name": "set06/V003/I01339", "height": 512, "width": 640 }, { "id": 361, "im_name": "set06/V003/I01359", "height": 512, "width": 640 }, { "id": 362, "im_name": "set06/V003/I01379", "height": 512, "width": 640 }, { "id": 363, "im_name": "set06/V003/I01399", "height": 512, "width": 640 }, { "id": 364, "im_name": "set06/V003/I01419", "height": 512, "width": 640 }, { "id": 365, "im_name": "set06/V003/I01439", "height": 512, "width": 640 }, { "id": 366, "im_name": "set06/V003/I01459", "height": 512, "width": 640 }, { "id": 367, "im_name": "set06/V003/I01479", "height": 512, "width": 640 }, { "id": 368, "im_name": "set06/V003/I01499", "height": 512, "width": 640 }, { "id": 369, "im_name": "set06/V003/I01519", "height": 512, "width": 640 }, { "id": 370, "im_name": "set06/V003/I01539", "height": 512, "width": 640 }, { "id": 371, "im_name": "set06/V003/I01559", "height": 512, "width": 640 }, { "id": 372, "im_name": "set06/V003/I01579", "height": 512, "width": 640 }, { "id": 373, "im_name": "set06/V003/I01599", "height": 512, "width": 640 }, { "id": 374, "im_name": "set06/V003/I01619", "height": 512, "width": 640 }, { "id": 375, "im_name": "set06/V003/I01639", "height": 512, "width": 640 }, { "id": 376, "im_name": "set06/V003/I01659", "height": 512, "width": 640 }, { "id": 377, "im_name": "set06/V003/I01679", "height": 512, "width": 640 }, { "id": 378, "im_name": "set06/V003/I01699", "height": 512, "width": 640 }, { "id": 379, "im_name": "set06/V003/I01719", "height": 512, "width": 640 }, { "id": 380, "im_name": "set06/V003/I01739", "height": 512, "width": 640 }, { "id": 381, "im_name": "set06/V003/I01759", "height": 512, "width": 640 }, { "id": 382, "im_name": "set06/V003/I01779", "height": 512, "width": 640 }, { "id": 383, "im_name": "set06/V003/I01799", "height": 512, "width": 640 }, { "id": 384, "im_name": "set06/V003/I01819", "height": 512, "width": 640 }, { "id": 385, "im_name": "set06/V003/I01839", "height": 512, "width": 640 }, { "id": 386, "im_name": "set06/V003/I01859", "height": 512, "width": 640 }, { "id": 387, "im_name": "set06/V003/I01879", "height": 512, "width": 640 }, { "id": 388, "im_name": "set06/V003/I01899", "height": 512, "width": 640 }, { "id": 389, "im_name": "set06/V003/I01919", "height": 512, "width": 640 }, { "id": 390, "im_name": "set06/V003/I01939", "height": 512, "width": 640 }, { "id": 391, "im_name": "set06/V003/I01959", "height": 512, "width": 640 }, { "id": 392, "im_name": "set06/V003/I01979", "height": 512, "width": 640 }, { "id": 393, "im_name": "set06/V003/I01999", "height": 512, "width": 640 }, { "id": 394, "im_name": "set06/V003/I02019", "height": 512, "width": 640 }, { "id": 395, "im_name": "set06/V003/I02039", "height": 512, "width": 640 }, { "id": 396, "im_name": "set06/V003/I02059", "height": 512, "width": 640 }, { "id": 397, "im_name": "set06/V003/I02079", "height": 512, "width": 640 }, { "id": 398, "im_name": "set06/V003/I02099", "height": 512, "width": 640 }, { "id": 399, "im_name": "set06/V003/I02119", "height": 512, "width": 640 }, { "id": 400, "im_name": "set06/V003/I02139", "height": 512, "width": 640 }, { "id": 401, "im_name": "set06/V003/I02159", "height": 512, "width": 640 }, { "id": 402, "im_name": "set06/V003/I02179", "height": 512, "width": 640 }, { "id": 403, "im_name": "set06/V003/I02199", "height": 512, "width": 640 }, { "id": 404, "im_name": "set06/V003/I02219", "height": 512, "width": 640 }, { "id": 405, "im_name": "set06/V003/I02239", "height": 512, "width": 640 }, { "id": 406, "im_name": "set06/V003/I02259", "height": 512, "width": 640 }, { "id": 407, "im_name": "set06/V003/I02279", "height": 512, "width": 640 }, { "id": 408, "im_name": "set06/V003/I02299", "height": 512, "width": 640 }, { "id": 409, "im_name": "set06/V003/I02319", "height": 512, "width": 640 }, { "id": 410, "im_name": "set06/V003/I02339", "height": 512, "width": 640 }, { "id": 411, "im_name": "set06/V003/I02359", "height": 512, "width": 640 }, { "id": 412, "im_name": "set06/V003/I02379", "height": 512, "width": 640 }, { "id": 413, "im_name": "set06/V003/I02399", "height": 512, "width": 640 }, { "id": 414, "im_name": "set06/V003/I02419", "height": 512, "width": 640 }, { "id": 415, "im_name": "set06/V003/I02439", "height": 512, "width": 640 }, { "id": 416, "im_name": "set06/V003/I02459", "height": 512, "width": 640 }, { "id": 417, "im_name": "set06/V003/I02479", "height": 512, "width": 640 }, { "id": 418, "im_name": "set06/V003/I02499", "height": 512, "width": 640 }, { "id": 419, "im_name": "set06/V003/I02519", "height": 512, "width": 640 }, { "id": 420, "im_name": "set06/V003/I02539", "height": 512, "width": 640 }, { "id": 421, "im_name": "set06/V003/I02559", "height": 512, "width": 640 }, { "id": 422, "im_name": "set06/V003/I02579", "height": 512, "width": 640 }, { "id": 423, "im_name": "set06/V003/I02599", "height": 512, "width": 640 }, { "id": 424, "im_name": "set06/V003/I02619", "height": 512, "width": 640 }, { "id": 425, "im_name": "set06/V003/I02639", "height": 512, "width": 640 }, { "id": 426, "im_name": "set06/V003/I02659", "height": 512, "width": 640 }, { "id": 427, "im_name": "set06/V003/I02679", "height": 512, "width": 640 }, { "id": 428, "im_name": "set06/V003/I02699", "height": 512, "width": 640 }, { "id": 429, "im_name": "set06/V003/I02719", "height": 512, "width": 640 }, { "id": 430, "im_name": "set06/V003/I02739", "height": 512, "width": 640 }, { "id": 431, "im_name": "set06/V003/I02759", "height": 512, "width": 640 }, { "id": 432, "im_name": "set06/V003/I02779", "height": 512, "width": 640 }, { "id": 433, "im_name": "set06/V003/I02799", "height": 512, "width": 640 }, { "id": 434, "im_name": "set06/V003/I02819", "height": 512, "width": 640 }, { "id": 435, "im_name": "set06/V003/I02839", "height": 512, "width": 640 }, { "id": 436, "im_name": "set06/V003/I02859", "height": 512, "width": 640 }, { "id": 437, "im_name": "set06/V003/I02879", "height": 512, "width": 640 }, { "id": 438, "im_name": "set06/V003/I02899", "height": 512, "width": 640 }, { "id": 439, "im_name": "set06/V003/I02919", "height": 512, "width": 640 }, { "id": 440, "im_name": "set06/V003/I02939", "height": 512, "width": 640 }, { "id": 441, "im_name": "set06/V003/I02959", "height": 512, "width": 640 }, { "id": 442, "im_name": "set06/V003/I02979", "height": 512, "width": 640 }, { "id": 443, "im_name": "set06/V003/I02999", "height": 512, "width": 640 }, { "id": 444, "im_name": "set06/V003/I03019", "height": 512, "width": 640 }, { "id": 445, "im_name": "set06/V003/I03039", "height": 512, "width": 640 }, { "id": 446, "im_name": "set06/V003/I03059", "height": 512, "width": 640 }, { "id": 447, "im_name": "set06/V003/I03079", "height": 512, "width": 640 }, { "id": 448, "im_name": "set06/V003/I03099", "height": 512, "width": 640 }, { "id": 449, "im_name": "set06/V003/I03119", "height": 512, "width": 640 }, { "id": 450, "im_name": "set06/V003/I03139", "height": 512, "width": 640 }, { "id": 451, "im_name": "set06/V003/I03159", "height": 512, "width": 640 }, { "id": 452, "im_name": "set06/V003/I03179", "height": 512, "width": 640 }, { "id": 453, "im_name": "set06/V003/I03199", "height": 512, "width": 640 }, { "id": 454, "im_name": "set06/V003/I03219", "height": 512, "width": 640 }, { "id": 455, "im_name": "set06/V003/I03239", "height": 512, "width": 640 }, { "id": 456, "im_name": "set06/V003/I03259", "height": 512, "width": 640 }, { "id": 457, "im_name": "set06/V003/I03279", "height": 512, "width": 640 }, { "id": 458, "im_name": "set06/V003/I03299", "height": 512, "width": 640 }, { "id": 459, "im_name": "set06/V003/I03319", "height": 512, "width": 640 }, { "id": 460, "im_name": "set06/V003/I03339", "height": 512, "width": 640 }, { "id": 461, "im_name": "set06/V003/I03359", "height": 512, "width": 640 }, { "id": 462, "im_name": "set06/V003/I03379", "height": 512, "width": 640 }, { "id": 463, "im_name": "set06/V003/I03399", "height": 512, "width": 640 }, { "id": 464, "im_name": "set06/V003/I03419", "height": 512, "width": 640 }, { "id": 465, "im_name": "set06/V003/I03439", "height": 512, "width": 640 }, { "id": 466, "im_name": "set06/V003/I03459", "height": 512, "width": 640 }, { "id": 467, "im_name": "set06/V003/I03479", "height": 512, "width": 640 }, { "id": 468, "im_name": "set06/V003/I03499", "height": 512, "width": 640 }, { "id": 469, "im_name": "set06/V003/I03519", "height": 512, "width": 640 }, { "id": 470, "im_name": "set06/V003/I03539", "height": 512, "width": 640 }, { "id": 471, "im_name": "set06/V003/I03559", "height": 512, "width": 640 }, { "id": 472, "im_name": "set06/V003/I03579", "height": 512, "width": 640 }, { "id": 473, "im_name": "set06/V003/I03599", "height": 512, "width": 640 }, { "id": 474, "im_name": "set06/V003/I03619", "height": 512, "width": 640 }, { "id": 475, "im_name": "set06/V003/I03639", "height": 512, "width": 640 }, { "id": 476, "im_name": "set06/V003/I03659", "height": 512, "width": 640 }, { "id": 477, "im_name": "set06/V003/I03679", "height": 512, "width": 640 }, { "id": 478, "im_name": "set06/V003/I03699", "height": 512, "width": 640 }, { "id": 479, "im_name": "set06/V003/I03719", "height": 512, "width": 640 }, { "id": 480, "im_name": "set06/V003/I03739", "height": 512, "width": 640 }, { "id": 481, "im_name": "set06/V003/I03759", "height": 512, "width": 640 }, { "id": 482, "im_name": "set06/V003/I03779", "height": 512, "width": 640 }, { "id": 483, "im_name": "set06/V003/I03799", "height": 512, "width": 640 }, { "id": 484, "im_name": "set06/V003/I03819", "height": 512, "width": 640 }, { "id": 485, "im_name": "set06/V003/I03839", "height": 512, "width": 640 }, { "id": 486, "im_name": "set06/V003/I03859", "height": 512, "width": 640 }, { "id": 487, "im_name": "set06/V003/I03879", "height": 512, "width": 640 }, { "id": 488, "im_name": "set06/V003/I03899", "height": 512, "width": 640 }, { "id": 489, "im_name": "set06/V003/I03919", "height": 512, "width": 640 }, { "id": 490, "im_name": "set06/V003/I03939", "height": 512, "width": 640 }, { "id": 491, "im_name": "set06/V003/I03959", "height": 512, "width": 640 }, { "id": 492, "im_name": "set06/V003/I03979", "height": 512, "width": 640 }, { "id": 493, "im_name": "set06/V003/I03999", "height": 512, "width": 640 }, { "id": 494, "im_name": "set06/V003/I04019", "height": 512, "width": 640 }, { "id": 495, "im_name": "set06/V003/I04039", "height": 512, "width": 640 }, { "id": 496, "im_name": "set06/V003/I04059", "height": 512, "width": 640 }, { "id": 497, "im_name": "set06/V003/I04079", "height": 512, "width": 640 }, { "id": 498, "im_name": "set06/V003/I04099", "height": 512, "width": 640 }, { "id": 499, "im_name": "set06/V003/I04119", "height": 512, "width": 640 }, { "id": 500, "im_name": "set06/V003/I04139", "height": 512, "width": 640 }, { "id": 501, "im_name": "set06/V003/I04159", "height": 512, "width": 640 }, { "id": 502, "im_name": "set06/V003/I04179", "height": 512, "width": 640 }, { "id": 503, "im_name": "set06/V003/I04199", "height": 512, "width": 640 }, { "id": 504, "im_name": "set06/V003/I04219", "height": 512, "width": 640 }, { "id": 505, "im_name": "set06/V003/I04239", "height": 512, "width": 640 }, { "id": 506, "im_name": "set06/V003/I04259", "height": 512, "width": 640 }, { "id": 507, "im_name": "set06/V003/I04279", "height": 512, "width": 640 }, { "id": 508, "im_name": "set06/V004/I00019", "height": 512, "width": 640 }, { "id": 509, "im_name": "set06/V004/I00039", "height": 512, "width": 640 }, { "id": 510, "im_name": "set06/V004/I00059", "height": 512, "width": 640 }, { "id": 511, "im_name": "set06/V004/I00079", "height": 512, "width": 640 }, { "id": 512, "im_name": "set06/V004/I00099", "height": 512, "width": 640 }, { "id": 513, "im_name": "set06/V004/I00119", "height": 512, "width": 640 }, { "id": 514, "im_name": "set06/V004/I00139", "height": 512, "width": 640 }, { "id": 515, "im_name": "set06/V004/I00159", "height": 512, "width": 640 }, { "id": 516, "im_name": "set06/V004/I00179", "height": 512, "width": 640 }, { "id": 517, "im_name": "set06/V004/I00199", "height": 512, "width": 640 }, { "id": 518, "im_name": "set06/V004/I00219", "height": 512, "width": 640 }, { "id": 519, "im_name": "set06/V004/I00239", "height": 512, "width": 640 }, { "id": 520, "im_name": "set06/V004/I00259", "height": 512, "width": 640 }, { "id": 521, "im_name": "set06/V004/I00279", "height": 512, "width": 640 }, { "id": 522, "im_name": "set06/V004/I00299", "height": 512, "width": 640 }, { "id": 523, "im_name": "set06/V004/I00319", "height": 512, "width": 640 }, { "id": 524, "im_name": "set06/V004/I00339", "height": 512, "width": 640 }, { "id": 525, "im_name": "set06/V004/I00359", "height": 512, "width": 640 }, { "id": 526, "im_name": "set06/V004/I00379", "height": 512, "width": 640 }, { "id": 527, "im_name": "set06/V004/I00399", "height": 512, "width": 640 }, { "id": 528, "im_name": "set06/V004/I00419", "height": 512, "width": 640 }, { "id": 529, "im_name": "set06/V004/I00439", "height": 512, "width": 640 }, { "id": 530, "im_name": "set06/V004/I00459", "height": 512, "width": 640 }, { "id": 531, "im_name": "set06/V004/I00479", "height": 512, "width": 640 }, { "id": 532, "im_name": "set06/V004/I00499", "height": 512, "width": 640 }, { "id": 533, "im_name": "set06/V004/I00519", "height": 512, "width": 640 }, { "id": 534, "im_name": "set06/V004/I00539", "height": 512, "width": 640 }, { "id": 535, "im_name": "set06/V004/I00559", "height": 512, "width": 640 }, { "id": 536, "im_name": "set06/V004/I00579", "height": 512, "width": 640 }, { "id": 537, "im_name": "set06/V004/I00599", "height": 512, "width": 640 }, { "id": 538, "im_name": "set06/V004/I00619", "height": 512, "width": 640 }, { "id": 539, "im_name": "set06/V004/I00639", "height": 512, "width": 640 }, { "id": 540, "im_name": "set06/V004/I00659", "height": 512, "width": 640 }, { "id": 541, "im_name": "set06/V004/I00679", "height": 512, "width": 640 }, { "id": 542, "im_name": "set06/V004/I00699", "height": 512, "width": 640 }, { "id": 543, "im_name": "set06/V004/I00719", "height": 512, "width": 640 }, { "id": 544, "im_name": "set06/V004/I00739", "height": 512, "width": 640 }, { "id": 545, "im_name": "set06/V004/I00759", "height": 512, "width": 640 }, { "id": 546, "im_name": "set06/V004/I00779", "height": 512, "width": 640 }, { "id": 547, "im_name": "set06/V004/I00799", "height": 512, "width": 640 }, { "id": 548, "im_name": "set06/V004/I00819", "height": 512, "width": 640 }, { "id": 549, "im_name": "set06/V004/I00839", "height": 512, "width": 640 }, { "id": 550, "im_name": "set06/V004/I00859", "height": 512, "width": 640 }, { "id": 551, "im_name": "set06/V004/I00879", "height": 512, "width": 640 }, { "id": 552, "im_name": "set06/V004/I00899", "height": 512, "width": 640 }, { "id": 553, "im_name": "set06/V004/I00919", "height": 512, "width": 640 }, { "id": 554, "im_name": "set06/V004/I00939", "height": 512, "width": 640 }, { "id": 555, "im_name": "set06/V004/I00959", "height": 512, "width": 640 }, { "id": 556, "im_name": "set06/V004/I00979", "height": 512, "width": 640 }, { "id": 557, "im_name": "set06/V004/I00999", "height": 512, "width": 640 }, { "id": 558, "im_name": "set06/V004/I01019", "height": 512, "width": 640 }, { "id": 559, "im_name": "set06/V004/I01039", "height": 512, "width": 640 }, { "id": 560, "im_name": "set06/V004/I01059", "height": 512, "width": 640 }, { "id": 561, "im_name": "set06/V004/I01079", "height": 512, "width": 640 }, { "id": 562, "im_name": "set06/V004/I01099", "height": 512, "width": 640 }, { "id": 563, "im_name": "set06/V004/I01119", "height": 512, "width": 640 }, { "id": 564, "im_name": "set06/V004/I01139", "height": 512, "width": 640 }, { "id": 565, "im_name": "set06/V004/I01159", "height": 512, "width": 640 }, { "id": 566, "im_name": "set06/V004/I01179", "height": 512, "width": 640 }, { "id": 567, "im_name": "set06/V004/I01199", "height": 512, "width": 640 }, { "id": 568, "im_name": "set06/V004/I01219", "height": 512, "width": 640 }, { "id": 569, "im_name": "set06/V004/I01239", "height": 512, "width": 640 }, { "id": 570, "im_name": "set06/V004/I01259", "height": 512, "width": 640 }, { "id": 571, "im_name": "set06/V004/I01279", "height": 512, "width": 640 }, { "id": 572, "im_name": "set06/V004/I01299", "height": 512, "width": 640 }, { "id": 573, "im_name": "set06/V004/I01319", "height": 512, "width": 640 }, { "id": 574, "im_name": "set06/V004/I01339", "height": 512, "width": 640 }, { "id": 575, "im_name": "set06/V004/I01359", "height": 512, "width": 640 }, { "id": 576, "im_name": "set06/V004/I01379", "height": 512, "width": 640 }, { "id": 577, "im_name": "set06/V004/I01399", "height": 512, "width": 640 }, { "id": 578, "im_name": "set06/V004/I01419", "height": 512, "width": 640 }, { "id": 579, "im_name": "set06/V004/I01439", "height": 512, "width": 640 }, { "id": 580, "im_name": "set06/V004/I01459", "height": 512, "width": 640 }, { "id": 581, "im_name": "set06/V004/I01479", "height": 512, "width": 640 }, { "id": 582, "im_name": "set06/V004/I01499", "height": 512, "width": 640 }, { "id": 583, "im_name": "set06/V004/I01519", "height": 512, "width": 640 }, { "id": 584, "im_name": "set06/V004/I01539", "height": 512, "width": 640 }, { "id": 585, "im_name": "set06/V004/I01559", "height": 512, "width": 640 }, { "id": 586, "im_name": "set06/V004/I01579", "height": 512, "width": 640 }, { "id": 587, "im_name": "set06/V004/I01599", "height": 512, "width": 640 }, { "id": 588, "im_name": "set06/V004/I01619", "height": 512, "width": 640 }, { "id": 589, "im_name": "set06/V004/I01639", "height": 512, "width": 640 }, { "id": 590, "im_name": "set06/V004/I01659", "height": 512, "width": 640 }, { "id": 591, "im_name": "set06/V004/I01679", "height": 512, "width": 640 }, { "id": 592, "im_name": "set06/V004/I01699", "height": 512, "width": 640 }, { "id": 593, "im_name": "set06/V004/I01719", "height": 512, "width": 640 }, { "id": 594, "im_name": "set06/V004/I01739", "height": 512, "width": 640 }, { "id": 595, "im_name": "set06/V004/I01759", "height": 512, "width": 640 }, { "id": 596, "im_name": "set06/V004/I01779", "height": 512, "width": 640 }, { "id": 597, "im_name": "set06/V004/I01799", "height": 512, "width": 640 }, { "id": 598, "im_name": "set06/V004/I01819", "height": 512, "width": 640 }, { "id": 599, "im_name": "set06/V004/I01839", "height": 512, "width": 640 }, { "id": 600, "im_name": "set06/V004/I01859", "height": 512, "width": 640 }, { "id": 601, "im_name": "set06/V004/I01879", "height": 512, "width": 640 }, { "id": 602, "im_name": "set06/V004/I01899", "height": 512, "width": 640 }, { "id": 603, "im_name": "set06/V004/I01919", "height": 512, "width": 640 }, { "id": 604, "im_name": "set06/V004/I01939", "height": 512, "width": 640 }, { "id": 605, "im_name": "set06/V004/I01959", "height": 512, "width": 640 }, { "id": 606, "im_name": "set06/V004/I01979", "height": 512, "width": 640 }, { "id": 607, "im_name": "set06/V004/I01999", "height": 512, "width": 640 }, { "id": 608, "im_name": "set06/V004/I02019", "height": 512, "width": 640 }, { "id": 609, "im_name": "set06/V004/I02039", "height": 512, "width": 640 }, { "id": 610, "im_name": "set06/V004/I02059", "height": 512, "width": 640 }, { "id": 611, "im_name": "set06/V004/I02079", "height": 512, "width": 640 }, { "id": 612, "im_name": "set06/V004/I02099", "height": 512, "width": 640 }, { "id": 613, "im_name": "set06/V004/I02119", "height": 512, "width": 640 }, { "id": 614, "im_name": "set06/V004/I02139", "height": 512, "width": 640 }, { "id": 615, "im_name": "set06/V004/I02159", "height": 512, "width": 640 }, { "id": 616, "im_name": "set06/V004/I02179", "height": 512, "width": 640 }, { "id": 617, "im_name": "set06/V004/I02199", "height": 512, "width": 640 }, { "id": 618, "im_name": "set06/V004/I02219", "height": 512, "width": 640 }, { "id": 619, "im_name": "set06/V004/I02239", "height": 512, "width": 640 }, { "id": 620, "im_name": "set06/V004/I02259", "height": 512, "width": 640 }, { "id": 621, "im_name": "set06/V004/I02279", "height": 512, "width": 640 }, { "id": 622, "im_name": "set06/V004/I02299", "height": 512, "width": 640 }, { "id": 623, "im_name": "set06/V004/I02319", "height": 512, "width": 640 }, { "id": 624, "im_name": "set06/V004/I02339", "height": 512, "width": 640 }, { "id": 625, "im_name": "set06/V004/I02359", "height": 512, "width": 640 }, { "id": 626, "im_name": "set06/V004/I02379", "height": 512, "width": 640 }, { "id": 627, "im_name": "set06/V004/I02399", "height": 512, "width": 640 }, { "id": 628, "im_name": "set06/V004/I02419", "height": 512, "width": 640 }, { "id": 629, "im_name": "set06/V004/I02439", "height": 512, "width": 640 }, { "id": 630, "im_name": "set06/V004/I02459", "height": 512, "width": 640 }, { "id": 631, "im_name": "set06/V004/I02479", "height": 512, "width": 640 }, { "id": 632, "im_name": "set06/V004/I02499", "height": 512, "width": 640 }, { "id": 633, "im_name": "set06/V004/I02519", "height": 512, "width": 640 }, { "id": 634, "im_name": "set06/V004/I02539", "height": 512, "width": 640 }, { "id": 635, "im_name": "set06/V004/I02559", "height": 512, "width": 640 }, { "id": 636, "im_name": "set06/V004/I02579", "height": 512, "width": 640 }, { "id": 637, "im_name": "set06/V004/I02599", "height": 512, "width": 640 }, { "id": 638, "im_name": "set06/V004/I02619", "height": 512, "width": 640 }, { "id": 639, "im_name": "set06/V004/I02639", "height": 512, "width": 640 }, { "id": 640, "im_name": "set06/V004/I02659", "height": 512, "width": 640 }, { "id": 641, "im_name": "set06/V004/I02679", "height": 512, "width": 640 }, { "id": 642, "im_name": "set06/V004/I02699", "height": 512, "width": 640 }, { "id": 643, "im_name": "set06/V004/I02719", "height": 512, "width": 640 }, { "id": 644, "im_name": "set06/V004/I02739", "height": 512, "width": 640 }, { "id": 645, "im_name": "set06/V004/I02759", "height": 512, "width": 640 }, { "id": 646, "im_name": "set06/V004/I02779", "height": 512, "width": 640 }, { "id": 647, "im_name": "set06/V004/I02799", "height": 512, "width": 640 }, { "id": 648, "im_name": "set07/V000/I00019", "height": 512, "width": 640 }, { "id": 649, "im_name": "set07/V000/I00039", "height": 512, "width": 640 }, { "id": 650, "im_name": "set07/V000/I00059", "height": 512, "width": 640 }, { "id": 651, "im_name": "set07/V000/I00079", "height": 512, "width": 640 }, { "id": 652, "im_name": "set07/V000/I00099", "height": 512, "width": 640 }, { "id": 653, "im_name": "set07/V000/I00119", "height": 512, "width": 640 }, { "id": 654, "im_name": "set07/V000/I00139", "height": 512, "width": 640 }, { "id": 655, "im_name": "set07/V000/I00159", "height": 512, "width": 640 }, { "id": 656, "im_name": "set07/V000/I00179", "height": 512, "width": 640 }, { "id": 657, "im_name": "set07/V000/I00199", "height": 512, "width": 640 }, { "id": 658, "im_name": "set07/V000/I00219", "height": 512, "width": 640 }, { "id": 659, "im_name": "set07/V000/I00239", "height": 512, "width": 640 }, { "id": 660, "im_name": "set07/V000/I00259", "height": 512, "width": 640 }, { "id": 661, "im_name": "set07/V000/I00279", "height": 512, "width": 640 }, { "id": 662, "im_name": "set07/V000/I00299", "height": 512, "width": 640 }, { "id": 663, "im_name": "set07/V000/I00319", "height": 512, "width": 640 }, { "id": 664, "im_name": "set07/V000/I00339", "height": 512, "width": 640 }, { "id": 665, "im_name": "set07/V000/I00359", "height": 512, "width": 640 }, { "id": 666, "im_name": "set07/V000/I00379", "height": 512, "width": 640 }, { "id": 667, "im_name": "set07/V000/I00399", "height": 512, "width": 640 }, { "id": 668, "im_name": "set07/V000/I00419", "height": 512, "width": 640 }, { "id": 669, "im_name": "set07/V000/I00439", "height": 512, "width": 640 }, { "id": 670, "im_name": "set07/V000/I00459", "height": 512, "width": 640 }, { "id": 671, "im_name": "set07/V000/I00479", "height": 512, "width": 640 }, { "id": 672, "im_name": "set07/V000/I00499", "height": 512, "width": 640 }, { "id": 673, "im_name": "set07/V000/I00519", "height": 512, "width": 640 }, { "id": 674, "im_name": "set07/V000/I00539", "height": 512, "width": 640 }, { "id": 675, "im_name": "set07/V000/I00559", "height": 512, "width": 640 }, { "id": 676, "im_name": "set07/V000/I00579", "height": 512, "width": 640 }, { "id": 677, "im_name": "set07/V000/I00599", "height": 512, "width": 640 }, { "id": 678, "im_name": "set07/V000/I00619", "height": 512, "width": 640 }, { "id": 679, "im_name": "set07/V000/I00639", "height": 512, "width": 640 }, { "id": 680, "im_name": "set07/V000/I00659", "height": 512, "width": 640 }, { "id": 681, "im_name": "set07/V000/I00679", "height": 512, "width": 640 }, { "id": 682, "im_name": "set07/V000/I00699", "height": 512, "width": 640 }, { "id": 683, "im_name": "set07/V000/I00719", "height": 512, "width": 640 }, { "id": 684, "im_name": "set07/V000/I00739", "height": 512, "width": 640 }, { "id": 685, "im_name": "set07/V000/I00759", "height": 512, "width": 640 }, { "id": 686, "im_name": "set07/V000/I00779", "height": 512, "width": 640 }, { "id": 687, "im_name": "set07/V000/I00799", "height": 512, "width": 640 }, { "id": 688, "im_name": "set07/V000/I00819", "height": 512, "width": 640 }, { "id": 689, "im_name": "set07/V000/I00839", "height": 512, "width": 640 }, { "id": 690, "im_name": "set07/V000/I00859", "height": 512, "width": 640 }, { "id": 691, "im_name": "set07/V000/I00879", "height": 512, "width": 640 }, { "id": 692, "im_name": "set07/V000/I00899", "height": 512, "width": 640 }, { "id": 693, "im_name": "set07/V000/I00919", "height": 512, "width": 640 }, { "id": 694, "im_name": "set07/V000/I00939", "height": 512, "width": 640 }, { "id": 695, "im_name": "set07/V000/I00959", "height": 512, "width": 640 }, { "id": 696, "im_name": "set07/V000/I00979", "height": 512, "width": 640 }, { "id": 697, "im_name": "set07/V000/I00999", "height": 512, "width": 640 }, { "id": 698, "im_name": "set07/V000/I01019", "height": 512, "width": 640 }, { "id": 699, "im_name": "set07/V000/I01039", "height": 512, "width": 640 }, { "id": 700, "im_name": "set07/V000/I01059", "height": 512, "width": 640 }, { "id": 701, "im_name": "set07/V000/I01079", "height": 512, "width": 640 }, { "id": 702, "im_name": "set07/V000/I01099", "height": 512, "width": 640 }, { "id": 703, "im_name": "set07/V000/I01119", "height": 512, "width": 640 }, { "id": 704, "im_name": "set07/V000/I01139", "height": 512, "width": 640 }, { "id": 705, "im_name": "set07/V000/I01159", "height": 512, "width": 640 }, { "id": 706, "im_name": "set07/V000/I01179", "height": 512, "width": 640 }, { "id": 707, "im_name": "set07/V000/I01199", "height": 512, "width": 640 }, { "id": 708, "im_name": "set07/V000/I01219", "height": 512, "width": 640 }, { "id": 709, "im_name": "set07/V000/I01239", "height": 512, "width": 640 }, { "id": 710, "im_name": "set07/V000/I01259", "height": 512, "width": 640 }, { "id": 711, "im_name": "set07/V000/I01279", "height": 512, "width": 640 }, { "id": 712, "im_name": "set07/V000/I01299", "height": 512, "width": 640 }, { "id": 713, "im_name": "set07/V000/I01319", "height": 512, "width": 640 }, { "id": 714, "im_name": "set07/V000/I01339", "height": 512, "width": 640 }, { "id": 715, "im_name": "set07/V000/I01359", "height": 512, "width": 640 }, { "id": 716, "im_name": "set07/V000/I01379", "height": 512, "width": 640 }, { "id": 717, "im_name": "set07/V000/I01399", "height": 512, "width": 640 }, { "id": 718, "im_name": "set07/V000/I01419", "height": 512, "width": 640 }, { "id": 719, "im_name": "set07/V000/I01439", "height": 512, "width": 640 }, { "id": 720, "im_name": "set07/V000/I01459", "height": 512, "width": 640 }, { "id": 721, "im_name": "set07/V000/I01479", "height": 512, "width": 640 }, { "id": 722, "im_name": "set07/V000/I01499", "height": 512, "width": 640 }, { "id": 723, "im_name": "set07/V000/I01519", "height": 512, "width": 640 }, { "id": 724, "im_name": "set07/V000/I01539", "height": 512, "width": 640 }, { "id": 725, "im_name": "set07/V000/I01559", "height": 512, "width": 640 }, { "id": 726, "im_name": "set07/V000/I01579", "height": 512, "width": 640 }, { "id": 727, "im_name": "set07/V000/I01599", "height": 512, "width": 640 }, { "id": 728, "im_name": "set07/V000/I01619", "height": 512, "width": 640 }, { "id": 729, "im_name": "set07/V000/I01639", "height": 512, "width": 640 }, { "id": 730, "im_name": "set07/V000/I01659", "height": 512, "width": 640 }, { "id": 731, "im_name": "set07/V000/I01679", "height": 512, "width": 640 }, { "id": 732, "im_name": "set07/V000/I01699", "height": 512, "width": 640 }, { "id": 733, "im_name": "set07/V000/I01719", "height": 512, "width": 640 }, { "id": 734, "im_name": "set07/V000/I01739", "height": 512, "width": 640 }, { "id": 735, "im_name": "set07/V000/I01759", "height": 512, "width": 640 }, { "id": 736, "im_name": "set07/V000/I01779", "height": 512, "width": 640 }, { "id": 737, "im_name": "set07/V000/I01799", "height": 512, "width": 640 }, { "id": 738, "im_name": "set07/V000/I01819", "height": 512, "width": 640 }, { "id": 739, "im_name": "set07/V000/I01839", "height": 512, "width": 640 }, { "id": 740, "im_name": "set07/V000/I01859", "height": 512, "width": 640 }, { "id": 741, "im_name": "set07/V000/I01879", "height": 512, "width": 640 }, { "id": 742, "im_name": "set07/V000/I01899", "height": 512, "width": 640 }, { "id": 743, "im_name": "set07/V000/I01919", "height": 512, "width": 640 }, { "id": 744, "im_name": "set07/V000/I01939", "height": 512, "width": 640 }, { "id": 745, "im_name": "set07/V000/I01959", "height": 512, "width": 640 }, { "id": 746, "im_name": "set07/V000/I01979", "height": 512, "width": 640 }, { "id": 747, "im_name": "set07/V000/I01999", "height": 512, "width": 640 }, { "id": 748, "im_name": "set07/V000/I02019", "height": 512, "width": 640 }, { "id": 749, "im_name": "set07/V000/I02039", "height": 512, "width": 640 }, { "id": 750, "im_name": "set07/V000/I02059", "height": 512, "width": 640 }, { "id": 751, "im_name": "set07/V000/I02079", "height": 512, "width": 640 }, { "id": 752, "im_name": "set07/V000/I02099", "height": 512, "width": 640 }, { "id": 753, "im_name": "set07/V000/I02119", "height": 512, "width": 640 }, { "id": 754, "im_name": "set07/V000/I02139", "height": 512, "width": 640 }, { "id": 755, "im_name": "set07/V000/I02159", "height": 512, "width": 640 }, { "id": 756, "im_name": "set07/V000/I02179", "height": 512, "width": 640 }, { "id": 757, "im_name": "set07/V000/I02199", "height": 512, "width": 640 }, { "id": 758, "im_name": "set07/V000/I02219", "height": 512, "width": 640 }, { "id": 759, "im_name": "set07/V000/I02239", "height": 512, "width": 640 }, { "id": 760, "im_name": "set07/V000/I02259", "height": 512, "width": 640 }, { "id": 761, "im_name": "set07/V000/I02279", "height": 512, "width": 640 }, { "id": 762, "im_name": "set07/V000/I02299", "height": 512, "width": 640 }, { "id": 763, "im_name": "set07/V000/I02319", "height": 512, "width": 640 }, { "id": 764, "im_name": "set07/V000/I02339", "height": 512, "width": 640 }, { "id": 765, "im_name": "set07/V000/I02359", "height": 512, "width": 640 }, { "id": 766, "im_name": "set07/V000/I02379", "height": 512, "width": 640 }, { "id": 767, "im_name": "set07/V000/I02399", "height": 512, "width": 640 }, { "id": 768, "im_name": "set07/V000/I02419", "height": 512, "width": 640 }, { "id": 769, "im_name": "set07/V000/I02439", "height": 512, "width": 640 }, { "id": 770, "im_name": "set07/V000/I02459", "height": 512, "width": 640 }, { "id": 771, "im_name": "set07/V000/I02479", "height": 512, "width": 640 }, { "id": 772, "im_name": "set07/V000/I02499", "height": 512, "width": 640 }, { "id": 773, "im_name": "set07/V000/I02519", "height": 512, "width": 640 }, { "id": 774, "im_name": "set07/V000/I02539", "height": 512, "width": 640 }, { "id": 775, "im_name": "set07/V001/I00019", "height": 512, "width": 640 }, { "id": 776, "im_name": "set07/V001/I00039", "height": 512, "width": 640 }, { "id": 777, "im_name": "set07/V001/I00059", "height": 512, "width": 640 }, { "id": 778, "im_name": "set07/V001/I00079", "height": 512, "width": 640 }, { "id": 779, "im_name": "set07/V001/I00099", "height": 512, "width": 640 }, { "id": 780, "im_name": "set07/V001/I00119", "height": 512, "width": 640 }, { "id": 781, "im_name": "set07/V001/I00139", "height": 512, "width": 640 }, { "id": 782, "im_name": "set07/V001/I00159", "height": 512, "width": 640 }, { "id": 783, "im_name": "set07/V001/I00179", "height": 512, "width": 640 }, { "id": 784, "im_name": "set07/V001/I00199", "height": 512, "width": 640 }, { "id": 785, "im_name": "set07/V001/I00219", "height": 512, "width": 640 }, { "id": 786, "im_name": "set07/V001/I00239", "height": 512, "width": 640 }, { "id": 787, "im_name": "set07/V001/I00259", "height": 512, "width": 640 }, { "id": 788, "im_name": "set07/V001/I00279", "height": 512, "width": 640 }, { "id": 789, "im_name": "set07/V001/I00299", "height": 512, "width": 640 }, { "id": 790, "im_name": "set07/V001/I00319", "height": 512, "width": 640 }, { "id": 791, "im_name": "set07/V001/I00339", "height": 512, "width": 640 }, { "id": 792, "im_name": "set07/V001/I00359", "height": 512, "width": 640 }, { "id": 793, "im_name": "set07/V001/I00379", "height": 512, "width": 640 }, { "id": 794, "im_name": "set07/V001/I00399", "height": 512, "width": 640 }, { "id": 795, "im_name": "set07/V001/I00419", "height": 512, "width": 640 }, { "id": 796, "im_name": "set07/V001/I00439", "height": 512, "width": 640 }, { "id": 797, "im_name": "set07/V001/I00459", "height": 512, "width": 640 }, { "id": 798, "im_name": "set07/V001/I00479", "height": 512, "width": 640 }, { "id": 799, "im_name": "set07/V001/I00499", "height": 512, "width": 640 }, { "id": 800, "im_name": "set07/V001/I00519", "height": 512, "width": 640 }, { "id": 801, "im_name": "set07/V001/I00539", "height": 512, "width": 640 }, { "id": 802, "im_name": "set07/V001/I00559", "height": 512, "width": 640 }, { "id": 803, "im_name": "set07/V001/I00579", "height": 512, "width": 640 }, { "id": 804, "im_name": "set07/V001/I00599", "height": 512, "width": 640 }, { "id": 805, "im_name": "set07/V001/I00619", "height": 512, "width": 640 }, { "id": 806, "im_name": "set07/V001/I00639", "height": 512, "width": 640 }, { "id": 807, "im_name": "set07/V001/I00659", "height": 512, "width": 640 }, { "id": 808, "im_name": "set07/V001/I00679", "height": 512, "width": 640 }, { "id": 809, "im_name": "set07/V001/I00699", "height": 512, "width": 640 }, { "id": 810, "im_name": "set07/V001/I00719", "height": 512, "width": 640 }, { "id": 811, "im_name": "set07/V001/I00739", "height": 512, "width": 640 }, { "id": 812, "im_name": "set07/V001/I00759", "height": 512, "width": 640 }, { "id": 813, "im_name": "set07/V001/I00779", "height": 512, "width": 640 }, { "id": 814, "im_name": "set07/V001/I00799", "height": 512, "width": 640 }, { "id": 815, "im_name": "set07/V001/I00819", "height": 512, "width": 640 }, { "id": 816, "im_name": "set07/V001/I00839", "height": 512, "width": 640 }, { "id": 817, "im_name": "set07/V001/I00859", "height": 512, "width": 640 }, { "id": 818, "im_name": "set07/V001/I00879", "height": 512, "width": 640 }, { "id": 819, "im_name": "set07/V001/I00899", "height": 512, "width": 640 }, { "id": 820, "im_name": "set07/V001/I00919", "height": 512, "width": 640 }, { "id": 821, "im_name": "set07/V001/I00939", "height": 512, "width": 640 }, { "id": 822, "im_name": "set07/V001/I00959", "height": 512, "width": 640 }, { "id": 823, "im_name": "set07/V001/I00979", "height": 512, "width": 640 }, { "id": 824, "im_name": "set07/V001/I00999", "height": 512, "width": 640 }, { "id": 825, "im_name": "set07/V001/I01019", "height": 512, "width": 640 }, { "id": 826, "im_name": "set07/V001/I01039", "height": 512, "width": 640 }, { "id": 827, "im_name": "set07/V001/I01059", "height": 512, "width": 640 }, { "id": 828, "im_name": "set07/V001/I01079", "height": 512, "width": 640 }, { "id": 829, "im_name": "set07/V001/I01099", "height": 512, "width": 640 }, { "id": 830, "im_name": "set07/V001/I01119", "height": 512, "width": 640 }, { "id": 831, "im_name": "set07/V001/I01139", "height": 512, "width": 640 }, { "id": 832, "im_name": "set07/V001/I01159", "height": 512, "width": 640 }, { "id": 833, "im_name": "set07/V001/I01179", "height": 512, "width": 640 }, { "id": 834, "im_name": "set07/V001/I01199", "height": 512, "width": 640 }, { "id": 835, "im_name": "set07/V001/I01219", "height": 512, "width": 640 }, { "id": 836, "im_name": "set07/V001/I01239", "height": 512, "width": 640 }, { "id": 837, "im_name": "set07/V001/I01259", "height": 512, "width": 640 }, { "id": 838, "im_name": "set07/V001/I01279", "height": 512, "width": 640 }, { "id": 839, "im_name": "set07/V001/I01299", "height": 512, "width": 640 }, { "id": 840, "im_name": "set07/V001/I01319", "height": 512, "width": 640 }, { "id": 841, "im_name": "set07/V001/I01339", "height": 512, "width": 640 }, { "id": 842, "im_name": "set07/V001/I01359", "height": 512, "width": 640 }, { "id": 843, "im_name": "set07/V001/I01379", "height": 512, "width": 640 }, { "id": 844, "im_name": "set07/V001/I01399", "height": 512, "width": 640 }, { "id": 845, "im_name": "set07/V001/I01419", "height": 512, "width": 640 }, { "id": 846, "im_name": "set07/V001/I01439", "height": 512, "width": 640 }, { "id": 847, "im_name": "set07/V001/I01459", "height": 512, "width": 640 }, { "id": 848, "im_name": "set07/V001/I01479", "height": 512, "width": 640 }, { "id": 849, "im_name": "set07/V001/I01499", "height": 512, "width": 640 }, { "id": 850, "im_name": "set07/V001/I01519", "height": 512, "width": 640 }, { "id": 851, "im_name": "set07/V001/I01539", "height": 512, "width": 640 }, { "id": 852, "im_name": "set07/V001/I01559", "height": 512, "width": 640 }, { "id": 853, "im_name": "set07/V001/I01579", "height": 512, "width": 640 }, { "id": 854, "im_name": "set07/V001/I01599", "height": 512, "width": 640 }, { "id": 855, "im_name": "set07/V001/I01619", "height": 512, "width": 640 }, { "id": 856, "im_name": "set07/V001/I01639", "height": 512, "width": 640 }, { "id": 857, "im_name": "set07/V001/I01659", "height": 512, "width": 640 }, { "id": 858, "im_name": "set07/V001/I01679", "height": 512, "width": 640 }, { "id": 859, "im_name": "set07/V001/I01699", "height": 512, "width": 640 }, { "id": 860, "im_name": "set07/V001/I01719", "height": 512, "width": 640 }, { "id": 861, "im_name": "set07/V001/I01739", "height": 512, "width": 640 }, { "id": 862, "im_name": "set07/V001/I01759", "height": 512, "width": 640 }, { "id": 863, "im_name": "set07/V001/I01779", "height": 512, "width": 640 }, { "id": 864, "im_name": "set07/V001/I01799", "height": 512, "width": 640 }, { "id": 865, "im_name": "set07/V001/I01819", "height": 512, "width": 640 }, { "id": 866, "im_name": "set07/V001/I01839", "height": 512, "width": 640 }, { "id": 867, "im_name": "set07/V001/I01859", "height": 512, "width": 640 }, { "id": 868, "im_name": "set07/V001/I01879", "height": 512, "width": 640 }, { "id": 869, "im_name": "set07/V001/I01899", "height": 512, "width": 640 }, { "id": 870, "im_name": "set07/V001/I01919", "height": 512, "width": 640 }, { "id": 871, "im_name": "set07/V001/I01939", "height": 512, "width": 640 }, { "id": 872, "im_name": "set07/V001/I01959", "height": 512, "width": 640 }, { "id": 873, "im_name": "set07/V001/I01979", "height": 512, "width": 640 }, { "id": 874, "im_name": "set07/V001/I01999", "height": 512, "width": 640 }, { "id": 875, "im_name": "set07/V001/I02019", "height": 512, "width": 640 }, { "id": 876, "im_name": "set07/V001/I02039", "height": 512, "width": 640 }, { "id": 877, "im_name": "set07/V001/I02059", "height": 512, "width": 640 }, { "id": 878, "im_name": "set07/V001/I02079", "height": 512, "width": 640 }, { "id": 879, "im_name": "set07/V001/I02099", "height": 512, "width": 640 }, { "id": 880, "im_name": "set07/V001/I02119", "height": 512, "width": 640 }, { "id": 881, "im_name": "set07/V001/I02139", "height": 512, "width": 640 }, { "id": 882, "im_name": "set07/V001/I02159", "height": 512, "width": 640 }, { "id": 883, "im_name": "set07/V001/I02179", "height": 512, "width": 640 }, { "id": 884, "im_name": "set07/V001/I02199", "height": 512, "width": 640 }, { "id": 885, "im_name": "set07/V001/I02219", "height": 512, "width": 640 }, { "id": 886, "im_name": "set07/V001/I02239", "height": 512, "width": 640 }, { "id": 887, "im_name": "set07/V001/I02259", "height": 512, "width": 640 }, { "id": 888, "im_name": "set07/V001/I02279", "height": 512, "width": 640 }, { "id": 889, "im_name": "set07/V001/I02299", "height": 512, "width": 640 }, { "id": 890, "im_name": "set07/V001/I02319", "height": 512, "width": 640 }, { "id": 891, "im_name": "set07/V001/I02339", "height": 512, "width": 640 }, { "id": 892, "im_name": "set07/V001/I02359", "height": 512, "width": 640 }, { "id": 893, "im_name": "set07/V001/I02379", "height": 512, "width": 640 }, { "id": 894, "im_name": "set07/V001/I02399", "height": 512, "width": 640 }, { "id": 895, "im_name": "set07/V001/I02419", "height": 512, "width": 640 }, { "id": 896, "im_name": "set07/V001/I02439", "height": 512, "width": 640 }, { "id": 897, "im_name": "set07/V001/I02459", "height": 512, "width": 640 }, { "id": 898, "im_name": "set07/V001/I02479", "height": 512, "width": 640 }, { "id": 899, "im_name": "set07/V001/I02499", "height": 512, "width": 640 }, { "id": 900, "im_name": "set07/V001/I02519", "height": 512, "width": 640 }, { "id": 901, "im_name": "set07/V001/I02539", "height": 512, "width": 640 }, { "id": 902, "im_name": "set07/V001/I02559", "height": 512, "width": 640 }, { "id": 903, "im_name": "set07/V001/I02579", "height": 512, "width": 640 }, { "id": 904, "im_name": "set07/V001/I02599", "height": 512, "width": 640 }, { "id": 905, "im_name": "set07/V001/I02619", "height": 512, "width": 640 }, { "id": 906, "im_name": "set07/V001/I02639", "height": 512, "width": 640 }, { "id": 907, "im_name": "set07/V001/I02659", "height": 512, "width": 640 }, { "id": 908, "im_name": "set07/V001/I02679", "height": 512, "width": 640 }, { "id": 909, "im_name": "set07/V001/I02699", "height": 512, "width": 640 }, { "id": 910, "im_name": "set07/V001/I02719", "height": 512, "width": 640 }, { "id": 911, "im_name": "set07/V001/I02739", "height": 512, "width": 640 }, { "id": 912, "im_name": "set07/V001/I02759", "height": 512, "width": 640 }, { "id": 913, "im_name": "set07/V001/I02779", "height": 512, "width": 640 }, { "id": 914, "im_name": "set07/V001/I02799", "height": 512, "width": 640 }, { "id": 915, "im_name": "set07/V001/I02819", "height": 512, "width": 640 }, { "id": 916, "im_name": "set07/V001/I02839", "height": 512, "width": 640 }, { "id": 917, "im_name": "set07/V001/I02859", "height": 512, "width": 640 }, { "id": 918, "im_name": "set07/V001/I02879", "height": 512, "width": 640 }, { "id": 919, "im_name": "set07/V001/I02899", "height": 512, "width": 640 }, { "id": 920, "im_name": "set07/V001/I02919", "height": 512, "width": 640 }, { "id": 921, "im_name": "set07/V001/I02939", "height": 512, "width": 640 }, { "id": 922, "im_name": "set07/V001/I02959", "height": 512, "width": 640 }, { "id": 923, "im_name": "set07/V001/I02979", "height": 512, "width": 640 }, { "id": 924, "im_name": "set07/V001/I02999", "height": 512, "width": 640 }, { "id": 925, "im_name": "set07/V001/I03019", "height": 512, "width": 640 }, { "id": 926, "im_name": "set07/V001/I03039", "height": 512, "width": 640 }, { "id": 927, "im_name": "set07/V001/I03059", "height": 512, "width": 640 }, { "id": 928, "im_name": "set07/V001/I03079", "height": 512, "width": 640 }, { "id": 929, "im_name": "set07/V001/I03099", "height": 512, "width": 640 }, { "id": 930, "im_name": "set07/V001/I03119", "height": 512, "width": 640 }, { "id": 931, "im_name": "set07/V001/I03139", "height": 512, "width": 640 }, { "id": 932, "im_name": "set07/V001/I03159", "height": 512, "width": 640 }, { "id": 933, "im_name": "set07/V001/I03179", "height": 512, "width": 640 }, { "id": 934, "im_name": "set07/V001/I03199", "height": 512, "width": 640 }, { "id": 935, "im_name": "set07/V001/I03219", "height": 512, "width": 640 }, { "id": 936, "im_name": "set07/V001/I03239", "height": 512, "width": 640 }, { "id": 937, "im_name": "set07/V001/I03259", "height": 512, "width": 640 }, { "id": 938, "im_name": "set07/V001/I03279", "height": 512, "width": 640 }, { "id": 939, "im_name": "set07/V001/I03299", "height": 512, "width": 640 }, { "id": 940, "im_name": "set07/V001/I03319", "height": 512, "width": 640 }, { "id": 941, "im_name": "set07/V001/I03339", "height": 512, "width": 640 }, { "id": 942, "im_name": "set07/V001/I03359", "height": 512, "width": 640 }, { "id": 943, "im_name": "set07/V001/I03379", "height": 512, "width": 640 }, { "id": 944, "im_name": "set07/V001/I03399", "height": 512, "width": 640 }, { "id": 945, "im_name": "set07/V001/I03419", "height": 512, "width": 640 }, { "id": 946, "im_name": "set07/V001/I03439", "height": 512, "width": 640 }, { "id": 947, "im_name": "set07/V001/I03459", "height": 512, "width": 640 }, { "id": 948, "im_name": "set07/V001/I03479", "height": 512, "width": 640 }, { "id": 949, "im_name": "set07/V001/I03499", "height": 512, "width": 640 }, { "id": 950, "im_name": "set07/V001/I03519", "height": 512, "width": 640 }, { "id": 951, "im_name": "set07/V001/I03539", "height": 512, "width": 640 }, { "id": 952, "im_name": "set07/V001/I03559", "height": 512, "width": 640 }, { "id": 953, "im_name": "set07/V001/I03579", "height": 512, "width": 640 }, { "id": 954, "im_name": "set07/V001/I03599", "height": 512, "width": 640 }, { "id": 955, "im_name": "set07/V001/I03619", "height": 512, "width": 640 }, { "id": 956, "im_name": "set07/V001/I03639", "height": 512, "width": 640 }, { "id": 957, "im_name": "set07/V001/I03659", "height": 512, "width": 640 }, { "id": 958, "im_name": "set07/V001/I03679", "height": 512, "width": 640 }, { "id": 959, "im_name": "set07/V001/I03699", "height": 512, "width": 640 }, { "id": 960, "im_name": "set07/V001/I03719", "height": 512, "width": 640 }, { "id": 961, "im_name": "set07/V001/I03739", "height": 512, "width": 640 }, { "id": 962, "im_name": "set07/V001/I03759", "height": 512, "width": 640 }, { "id": 963, "im_name": "set07/V001/I03779", "height": 512, "width": 640 }, { "id": 964, "im_name": "set07/V001/I03799", "height": 512, "width": 640 }, { "id": 965, "im_name": "set07/V001/I03819", "height": 512, "width": 640 }, { "id": 966, "im_name": "set07/V001/I03839", "height": 512, "width": 640 }, { "id": 967, "im_name": "set07/V001/I03859", "height": 512, "width": 640 }, { "id": 968, "im_name": "set07/V001/I03879", "height": 512, "width": 640 }, { "id": 969, "im_name": "set07/V001/I03899", "height": 512, "width": 640 }, { "id": 970, "im_name": "set07/V001/I03919", "height": 512, "width": 640 }, { "id": 971, "im_name": "set07/V001/I03939", "height": 512, "width": 640 }, { "id": 972, "im_name": "set07/V001/I03959", "height": 512, "width": 640 }, { "id": 973, "im_name": "set07/V001/I03979", "height": 512, "width": 640 }, { "id": 974, "im_name": "set07/V001/I03999", "height": 512, "width": 640 }, { "id": 975, "im_name": "set07/V002/I00019", "height": 512, "width": 640 }, { "id": 976, "im_name": "set07/V002/I00039", "height": 512, "width": 640 }, { "id": 977, "im_name": "set07/V002/I00059", "height": 512, "width": 640 }, { "id": 978, "im_name": "set07/V002/I00079", "height": 512, "width": 640 }, { "id": 979, "im_name": "set07/V002/I00099", "height": 512, "width": 640 }, { "id": 980, "im_name": "set07/V002/I00119", "height": 512, "width": 640 }, { "id": 981, "im_name": "set07/V002/I00139", "height": 512, "width": 640 }, { "id": 982, "im_name": "set07/V002/I00159", "height": 512, "width": 640 }, { "id": 983, "im_name": "set07/V002/I00179", "height": 512, "width": 640 }, { "id": 984, "im_name": "set07/V002/I00199", "height": 512, "width": 640 }, { "id": 985, "im_name": "set07/V002/I00219", "height": 512, "width": 640 }, { "id": 986, "im_name": "set07/V002/I00239", "height": 512, "width": 640 }, { "id": 987, "im_name": "set07/V002/I00259", "height": 512, "width": 640 }, { "id": 988, "im_name": "set07/V002/I00279", "height": 512, "width": 640 }, { "id": 989, "im_name": "set07/V002/I00299", "height": 512, "width": 640 }, { "id": 990, "im_name": "set07/V002/I00319", "height": 512, "width": 640 }, { "id": 991, "im_name": "set07/V002/I00339", "height": 512, "width": 640 }, { "id": 992, "im_name": "set07/V002/I00359", "height": 512, "width": 640 }, { "id": 993, "im_name": "set07/V002/I00379", "height": 512, "width": 640 }, { "id": 994, "im_name": "set07/V002/I00399", "height": 512, "width": 640 }, { "id": 995, "im_name": "set07/V002/I00419", "height": 512, "width": 640 }, { "id": 996, "im_name": "set07/V002/I00439", "height": 512, "width": 640 }, { "id": 997, "im_name": "set07/V002/I00459", "height": 512, "width": 640 }, { "id": 998, "im_name": "set07/V002/I00479", "height": 512, "width": 640 }, { "id": 999, "im_name": "set07/V002/I00499", "height": 512, "width": 640 }, { "id": 1000, "im_name": "set07/V002/I00519", "height": 512, "width": 640 }, { "id": 1001, "im_name": "set07/V002/I00539", "height": 512, "width": 640 }, { "id": 1002, "im_name": "set07/V002/I00559", "height": 512, "width": 640 }, { "id": 1003, "im_name": "set07/V002/I00579", "height": 512, "width": 640 }, { "id": 1004, "im_name": "set07/V002/I00599", "height": 512, "width": 640 }, { "id": 1005, "im_name": "set07/V002/I00619", "height": 512, "width": 640 }, { "id": 1006, "im_name": "set07/V002/I00639", "height": 512, "width": 640 }, { "id": 1007, "im_name": "set07/V002/I00659", "height": 512, "width": 640 }, { "id": 1008, "im_name": "set07/V002/I00679", "height": 512, "width": 640 }, { "id": 1009, "im_name": "set07/V002/I00699", "height": 512, "width": 640 }, { "id": 1010, "im_name": "set07/V002/I00719", "height": 512, "width": 640 }, { "id": 1011, "im_name": "set07/V002/I00739", "height": 512, "width": 640 }, { "id": 1012, "im_name": "set07/V002/I00759", "height": 512, "width": 640 }, { "id": 1013, "im_name": "set07/V002/I00779", "height": 512, "width": 640 }, { "id": 1014, "im_name": "set07/V002/I00799", "height": 512, "width": 640 }, { "id": 1015, "im_name": "set07/V002/I00819", "height": 512, "width": 640 }, { "id": 1016, "im_name": "set07/V002/I00839", "height": 512, "width": 640 }, { "id": 1017, "im_name": "set07/V002/I00859", "height": 512, "width": 640 }, { "id": 1018, "im_name": "set07/V002/I00879", "height": 512, "width": 640 }, { "id": 1019, "im_name": "set07/V002/I00899", "height": 512, "width": 640 }, { "id": 1020, "im_name": "set07/V002/I00919", "height": 512, "width": 640 }, { "id": 1021, "im_name": "set07/V002/I00939", "height": 512, "width": 640 }, { "id": 1022, "im_name": "set07/V002/I00959", "height": 512, "width": 640 }, { "id": 1023, "im_name": "set07/V002/I00979", "height": 512, "width": 640 }, { "id": 1024, "im_name": "set07/V002/I00999", "height": 512, "width": 640 }, { "id": 1025, "im_name": "set07/V002/I01019", "height": 512, "width": 640 }, { "id": 1026, "im_name": "set07/V002/I01039", "height": 512, "width": 640 }, { "id": 1027, "im_name": "set07/V002/I01059", "height": 512, "width": 640 }, { "id": 1028, "im_name": "set07/V002/I01079", "height": 512, "width": 640 }, { "id": 1029, "im_name": "set07/V002/I01099", "height": 512, "width": 640 }, { "id": 1030, "im_name": "set07/V002/I01119", "height": 512, "width": 640 }, { "id": 1031, "im_name": "set07/V002/I01139", "height": 512, "width": 640 }, { "id": 1032, "im_name": "set07/V002/I01159", "height": 512, "width": 640 }, { "id": 1033, "im_name": "set07/V002/I01179", "height": 512, "width": 640 }, { "id": 1034, "im_name": "set07/V002/I01199", "height": 512, "width": 640 }, { "id": 1035, "im_name": "set07/V002/I01219", "height": 512, "width": 640 }, { "id": 1036, "im_name": "set07/V002/I01239", "height": 512, "width": 640 }, { "id": 1037, "im_name": "set07/V002/I01259", "height": 512, "width": 640 }, { "id": 1038, "im_name": "set07/V002/I01279", "height": 512, "width": 640 }, { "id": 1039, "im_name": "set07/V002/I01299", "height": 512, "width": 640 }, { "id": 1040, "im_name": "set07/V002/I01319", "height": 512, "width": 640 }, { "id": 1041, "im_name": "set07/V002/I01339", "height": 512, "width": 640 }, { "id": 1042, "im_name": "set07/V002/I01359", "height": 512, "width": 640 }, { "id": 1043, "im_name": "set07/V002/I01379", "height": 512, "width": 640 }, { "id": 1044, "im_name": "set07/V002/I01399", "height": 512, "width": 640 }, { "id": 1045, "im_name": "set07/V002/I01419", "height": 512, "width": 640 }, { "id": 1046, "im_name": "set07/V002/I01439", "height": 512, "width": 640 }, { "id": 1047, "im_name": "set07/V002/I01459", "height": 512, "width": 640 }, { "id": 1048, "im_name": "set07/V002/I01479", "height": 512, "width": 640 }, { "id": 1049, "im_name": "set07/V002/I01499", "height": 512, "width": 640 }, { "id": 1050, "im_name": "set07/V002/I01519", "height": 512, "width": 640 }, { "id": 1051, "im_name": "set07/V002/I01539", "height": 512, "width": 640 }, { "id": 1052, "im_name": "set07/V002/I01559", "height": 512, "width": 640 }, { "id": 1053, "im_name": "set07/V002/I01579", "height": 512, "width": 640 }, { "id": 1054, "im_name": "set08/V000/I00019", "height": 512, "width": 640 }, { "id": 1055, "im_name": "set08/V000/I00039", "height": 512, "width": 640 }, { "id": 1056, "im_name": "set08/V000/I00059", "height": 512, "width": 640 }, { "id": 1057, "im_name": "set08/V000/I00079", "height": 512, "width": 640 }, { "id": 1058, "im_name": "set08/V000/I00099", "height": 512, "width": 640 }, { "id": 1059, "im_name": "set08/V000/I00119", "height": 512, "width": 640 }, { "id": 1060, "im_name": "set08/V000/I00139", "height": 512, "width": 640 }, { "id": 1061, "im_name": "set08/V000/I00159", "height": 512, "width": 640 }, { "id": 1062, "im_name": "set08/V000/I00179", "height": 512, "width": 640 }, { "id": 1063, "im_name": "set08/V000/I00199", "height": 512, "width": 640 }, { "id": 1064, "im_name": "set08/V000/I00219", "height": 512, "width": 640 }, { "id": 1065, "im_name": "set08/V000/I00239", "height": 512, "width": 640 }, { "id": 1066, "im_name": "set08/V000/I00259", "height": 512, "width": 640 }, { "id": 1067, "im_name": "set08/V000/I00279", "height": 512, "width": 640 }, { "id": 1068, "im_name": "set08/V000/I00299", "height": 512, "width": 640 }, { "id": 1069, "im_name": "set08/V000/I00319", "height": 512, "width": 640 }, { "id": 1070, "im_name": "set08/V000/I00339", "height": 512, "width": 640 }, { "id": 1071, "im_name": "set08/V000/I00359", "height": 512, "width": 640 }, { "id": 1072, "im_name": "set08/V000/I00379", "height": 512, "width": 640 }, { "id": 1073, "im_name": "set08/V000/I00399", "height": 512, "width": 640 }, { "id": 1074, "im_name": "set08/V000/I00419", "height": 512, "width": 640 }, { "id": 1075, "im_name": "set08/V000/I00439", "height": 512, "width": 640 }, { "id": 1076, "im_name": "set08/V000/I00459", "height": 512, "width": 640 }, { "id": 1077, "im_name": "set08/V000/I00479", "height": 512, "width": 640 }, { "id": 1078, "im_name": "set08/V000/I00499", "height": 512, "width": 640 }, { "id": 1079, "im_name": "set08/V000/I00519", "height": 512, "width": 640 }, { "id": 1080, "im_name": "set08/V000/I00539", "height": 512, "width": 640 }, { "id": 1081, "im_name": "set08/V000/I00559", "height": 512, "width": 640 }, { "id": 1082, "im_name": "set08/V000/I00579", "height": 512, "width": 640 }, { "id": 1083, "im_name": "set08/V000/I00599", "height": 512, "width": 640 }, { "id": 1084, "im_name": "set08/V000/I00619", "height": 512, "width": 640 }, { "id": 1085, "im_name": "set08/V000/I00639", "height": 512, "width": 640 }, { "id": 1086, "im_name": "set08/V000/I00659", "height": 512, "width": 640 }, { "id": 1087, "im_name": "set08/V000/I00679", "height": 512, "width": 640 }, { "id": 1088, "im_name": "set08/V000/I00699", "height": 512, "width": 640 }, { "id": 1089, "im_name": "set08/V000/I00719", "height": 512, "width": 640 }, { "id": 1090, "im_name": "set08/V000/I00739", "height": 512, "width": 640 }, { "id": 1091, "im_name": "set08/V000/I00759", "height": 512, "width": 640 }, { "id": 1092, "im_name": "set08/V000/I00779", "height": 512, "width": 640 }, { "id": 1093, "im_name": "set08/V000/I00799", "height": 512, "width": 640 }, { "id": 1094, "im_name": "set08/V000/I00819", "height": 512, "width": 640 }, { "id": 1095, "im_name": "set08/V000/I00839", "height": 512, "width": 640 }, { "id": 1096, "im_name": "set08/V000/I00859", "height": 512, "width": 640 }, { "id": 1097, "im_name": "set08/V000/I00879", "height": 512, "width": 640 }, { "id": 1098, "im_name": "set08/V000/I00899", "height": 512, "width": 640 }, { "id": 1099, "im_name": "set08/V000/I00919", "height": 512, "width": 640 }, { "id": 1100, "im_name": "set08/V000/I00939", "height": 512, "width": 640 }, { "id": 1101, "im_name": "set08/V000/I00959", "height": 512, "width": 640 }, { "id": 1102, "im_name": "set08/V000/I00979", "height": 512, "width": 640 }, { "id": 1103, "im_name": "set08/V000/I00999", "height": 512, "width": 640 }, { "id": 1104, "im_name": "set08/V000/I01019", "height": 512, "width": 640 }, { "id": 1105, "im_name": "set08/V000/I01039", "height": 512, "width": 640 }, { "id": 1106, "im_name": "set08/V000/I01059", "height": 512, "width": 640 }, { "id": 1107, "im_name": "set08/V000/I01079", "height": 512, "width": 640 }, { "id": 1108, "im_name": "set08/V000/I01099", "height": 512, "width": 640 }, { "id": 1109, "im_name": "set08/V000/I01119", "height": 512, "width": 640 }, { "id": 1110, "im_name": "set08/V000/I01139", "height": 512, "width": 640 }, { "id": 1111, "im_name": "set08/V000/I01159", "height": 512, "width": 640 }, { "id": 1112, "im_name": "set08/V000/I01179", "height": 512, "width": 640 }, { "id": 1113, "im_name": "set08/V000/I01199", "height": 512, "width": 640 }, { "id": 1114, "im_name": "set08/V000/I01219", "height": 512, "width": 640 }, { "id": 1115, "im_name": "set08/V000/I01239", "height": 512, "width": 640 }, { "id": 1116, "im_name": "set08/V000/I01259", "height": 512, "width": 640 }, { "id": 1117, "im_name": "set08/V000/I01279", "height": 512, "width": 640 }, { "id": 1118, "im_name": "set08/V000/I01299", "height": 512, "width": 640 }, { "id": 1119, "im_name": "set08/V000/I01319", "height": 512, "width": 640 }, { "id": 1120, "im_name": "set08/V000/I01339", "height": 512, "width": 640 }, { "id": 1121, "im_name": "set08/V000/I01359", "height": 512, "width": 640 }, { "id": 1122, "im_name": "set08/V000/I01379", "height": 512, "width": 640 }, { "id": 1123, "im_name": "set08/V000/I01399", "height": 512, "width": 640 }, { "id": 1124, "im_name": "set08/V000/I01419", "height": 512, "width": 640 }, { "id": 1125, "im_name": "set08/V000/I01439", "height": 512, "width": 640 }, { "id": 1126, "im_name": "set08/V000/I01459", "height": 512, "width": 640 }, { "id": 1127, "im_name": "set08/V000/I01479", "height": 512, "width": 640 }, { "id": 1128, "im_name": "set08/V000/I01499", "height": 512, "width": 640 }, { "id": 1129, "im_name": "set08/V000/I01519", "height": 512, "width": 640 }, { "id": 1130, "im_name": "set08/V000/I01539", "height": 512, "width": 640 }, { "id": 1131, "im_name": "set08/V000/I01559", "height": 512, "width": 640 }, { "id": 1132, "im_name": "set08/V000/I01579", "height": 512, "width": 640 }, { "id": 1133, "im_name": "set08/V000/I01599", "height": 512, "width": 640 }, { "id": 1134, "im_name": "set08/V000/I01619", "height": 512, "width": 640 }, { "id": 1135, "im_name": "set08/V000/I01639", "height": 512, "width": 640 }, { "id": 1136, "im_name": "set08/V000/I01659", "height": 512, "width": 640 }, { "id": 1137, "im_name": "set08/V000/I01679", "height": 512, "width": 640 }, { "id": 1138, "im_name": "set08/V000/I01699", "height": 512, "width": 640 }, { "id": 1139, "im_name": "set08/V000/I01719", "height": 512, "width": 640 }, { "id": 1140, "im_name": "set08/V000/I01739", "height": 512, "width": 640 }, { "id": 1141, "im_name": "set08/V000/I01759", "height": 512, "width": 640 }, { "id": 1142, "im_name": "set08/V000/I01779", "height": 512, "width": 640 }, { "id": 1143, "im_name": "set08/V000/I01799", "height": 512, "width": 640 }, { "id": 1144, "im_name": "set08/V000/I01819", "height": 512, "width": 640 }, { "id": 1145, "im_name": "set08/V000/I01839", "height": 512, "width": 640 }, { "id": 1146, "im_name": "set08/V000/I01859", "height": 512, "width": 640 }, { "id": 1147, "im_name": "set08/V000/I01879", "height": 512, "width": 640 }, { "id": 1148, "im_name": "set08/V000/I01899", "height": 512, "width": 640 }, { "id": 1149, "im_name": "set08/V000/I01919", "height": 512, "width": 640 }, { "id": 1150, "im_name": "set08/V000/I01939", "height": 512, "width": 640 }, { "id": 1151, "im_name": "set08/V000/I01959", "height": 512, "width": 640 }, { "id": 1152, "im_name": "set08/V000/I01979", "height": 512, "width": 640 }, { "id": 1153, "im_name": "set08/V000/I01999", "height": 512, "width": 640 }, { "id": 1154, "im_name": "set08/V000/I02019", "height": 512, "width": 640 }, { "id": 1155, "im_name": "set08/V000/I02039", "height": 512, "width": 640 }, { "id": 1156, "im_name": "set08/V000/I02059", "height": 512, "width": 640 }, { "id": 1157, "im_name": "set08/V000/I02079", "height": 512, "width": 640 }, { "id": 1158, "im_name": "set08/V000/I02099", "height": 512, "width": 640 }, { "id": 1159, "im_name": "set08/V000/I02119", "height": 512, "width": 640 }, { "id": 1160, "im_name": "set08/V000/I02139", "height": 512, "width": 640 }, { "id": 1161, "im_name": "set08/V000/I02159", "height": 512, "width": 640 }, { "id": 1162, "im_name": "set08/V000/I02179", "height": 512, "width": 640 }, { "id": 1163, "im_name": "set08/V000/I02199", "height": 512, "width": 640 }, { "id": 1164, "im_name": "set08/V000/I02219", "height": 512, "width": 640 }, { "id": 1165, "im_name": "set08/V000/I02239", "height": 512, "width": 640 }, { "id": 1166, "im_name": "set08/V000/I02259", "height": 512, "width": 640 }, { "id": 1167, "im_name": "set08/V000/I02279", "height": 512, "width": 640 }, { "id": 1168, "im_name": "set08/V000/I02299", "height": 512, "width": 640 }, { "id": 1169, "im_name": "set08/V000/I02319", "height": 512, "width": 640 }, { "id": 1170, "im_name": "set08/V000/I02339", "height": 512, "width": 640 }, { "id": 1171, "im_name": "set08/V000/I02359", "height": 512, "width": 640 }, { "id": 1172, "im_name": "set08/V000/I02379", "height": 512, "width": 640 }, { "id": 1173, "im_name": "set08/V000/I02399", "height": 512, "width": 640 }, { "id": 1174, "im_name": "set08/V000/I02419", "height": 512, "width": 640 }, { "id": 1175, "im_name": "set08/V000/I02439", "height": 512, "width": 640 }, { "id": 1176, "im_name": "set08/V000/I02459", "height": 512, "width": 640 }, { "id": 1177, "im_name": "set08/V000/I02479", "height": 512, "width": 640 }, { "id": 1178, "im_name": "set08/V000/I02499", "height": 512, "width": 640 }, { "id": 1179, "im_name": "set08/V000/I02519", "height": 512, "width": 640 }, { "id": 1180, "im_name": "set08/V000/I02539", "height": 512, "width": 640 }, { "id": 1181, "im_name": "set08/V000/I02559", "height": 512, "width": 640 }, { "id": 1182, "im_name": "set08/V001/I00019", "height": 512, "width": 640 }, { "id": 1183, "im_name": "set08/V001/I00039", "height": 512, "width": 640 }, { "id": 1184, "im_name": "set08/V001/I00059", "height": 512, "width": 640 }, { "id": 1185, "im_name": "set08/V001/I00079", "height": 512, "width": 640 }, { "id": 1186, "im_name": "set08/V001/I00099", "height": 512, "width": 640 }, { "id": 1187, "im_name": "set08/V001/I00119", "height": 512, "width": 640 }, { "id": 1188, "im_name": "set08/V001/I00139", "height": 512, "width": 640 }, { "id": 1189, "im_name": "set08/V001/I00159", "height": 512, "width": 640 }, { "id": 1190, "im_name": "set08/V001/I00179", "height": 512, "width": 640 }, { "id": 1191, "im_name": "set08/V001/I00199", "height": 512, "width": 640 }, { "id": 1192, "im_name": "set08/V001/I00219", "height": 512, "width": 640 }, { "id": 1193, "im_name": "set08/V001/I00239", "height": 512, "width": 640 }, { "id": 1194, "im_name": "set08/V001/I00259", "height": 512, "width": 640 }, { "id": 1195, "im_name": "set08/V001/I00279", "height": 512, "width": 640 }, { "id": 1196, "im_name": "set08/V001/I00299", "height": 512, "width": 640 }, { "id": 1197, "im_name": "set08/V001/I00319", "height": 512, "width": 640 }, { "id": 1198, "im_name": "set08/V001/I00339", "height": 512, "width": 640 }, { "id": 1199, "im_name": "set08/V001/I00359", "height": 512, "width": 640 }, { "id": 1200, "im_name": "set08/V001/I00379", "height": 512, "width": 640 }, { "id": 1201, "im_name": "set08/V001/I00399", "height": 512, "width": 640 }, { "id": 1202, "im_name": "set08/V001/I00419", "height": 512, "width": 640 }, { "id": 1203, "im_name": "set08/V001/I00439", "height": 512, "width": 640 }, { "id": 1204, "im_name": "set08/V001/I00459", "height": 512, "width": 640 }, { "id": 1205, "im_name": "set08/V001/I00479", "height": 512, "width": 640 }, { "id": 1206, "im_name": "set08/V001/I00499", "height": 512, "width": 640 }, { "id": 1207, "im_name": "set08/V001/I00519", "height": 512, "width": 640 }, { "id": 1208, "im_name": "set08/V001/I00539", "height": 512, "width": 640 }, { "id": 1209, "im_name": "set08/V001/I00559", "height": 512, "width": 640 }, { "id": 1210, "im_name": "set08/V001/I00579", "height": 512, "width": 640 }, { "id": 1211, "im_name": "set08/V001/I00599", "height": 512, "width": 640 }, { "id": 1212, "im_name": "set08/V001/I00619", "height": 512, "width": 640 }, { "id": 1213, "im_name": "set08/V001/I00639", "height": 512, "width": 640 }, { "id": 1214, "im_name": "set08/V001/I00659", "height": 512, "width": 640 }, { "id": 1215, "im_name": "set08/V001/I00679", "height": 512, "width": 640 }, { "id": 1216, "im_name": "set08/V001/I00699", "height": 512, "width": 640 }, { "id": 1217, "im_name": "set08/V001/I00719", "height": 512, "width": 640 }, { "id": 1218, "im_name": "set08/V001/I00739", "height": 512, "width": 640 }, { "id": 1219, "im_name": "set08/V001/I00759", "height": 512, "width": 640 }, { "id": 1220, "im_name": "set08/V001/I00779", "height": 512, "width": 640 }, { "id": 1221, "im_name": "set08/V001/I00799", "height": 512, "width": 640 }, { "id": 1222, "im_name": "set08/V001/I00819", "height": 512, "width": 640 }, { "id": 1223, "im_name": "set08/V001/I00839", "height": 512, "width": 640 }, { "id": 1224, "im_name": "set08/V001/I00859", "height": 512, "width": 640 }, { "id": 1225, "im_name": "set08/V001/I00879", "height": 512, "width": 640 }, { "id": 1226, "im_name": "set08/V001/I00899", "height": 512, "width": 640 }, { "id": 1227, "im_name": "set08/V001/I00919", "height": 512, "width": 640 }, { "id": 1228, "im_name": "set08/V001/I00939", "height": 512, "width": 640 }, { "id": 1229, "im_name": "set08/V001/I00959", "height": 512, "width": 640 }, { "id": 1230, "im_name": "set08/V001/I00979", "height": 512, "width": 640 }, { "id": 1231, "im_name": "set08/V001/I00999", "height": 512, "width": 640 }, { "id": 1232, "im_name": "set08/V001/I01019", "height": 512, "width": 640 }, { "id": 1233, "im_name": "set08/V001/I01039", "height": 512, "width": 640 }, { "id": 1234, "im_name": "set08/V001/I01059", "height": 512, "width": 640 }, { "id": 1235, "im_name": "set08/V001/I01079", "height": 512, "width": 640 }, { "id": 1236, "im_name": "set08/V001/I01099", "height": 512, "width": 640 }, { "id": 1237, "im_name": "set08/V001/I01119", "height": 512, "width": 640 }, { "id": 1238, "im_name": "set08/V001/I01139", "height": 512, "width": 640 }, { "id": 1239, "im_name": "set08/V001/I01159", "height": 512, "width": 640 }, { "id": 1240, "im_name": "set08/V001/I01179", "height": 512, "width": 640 }, { "id": 1241, "im_name": "set08/V001/I01199", "height": 512, "width": 640 }, { "id": 1242, "im_name": "set08/V001/I01219", "height": 512, "width": 640 }, { "id": 1243, "im_name": "set08/V001/I01239", "height": 512, "width": 640 }, { "id": 1244, "im_name": "set08/V001/I01259", "height": 512, "width": 640 }, { "id": 1245, "im_name": "set08/V001/I01279", "height": 512, "width": 640 }, { "id": 1246, "im_name": "set08/V001/I01299", "height": 512, "width": 640 }, { "id": 1247, "im_name": "set08/V001/I01319", "height": 512, "width": 640 }, { "id": 1248, "im_name": "set08/V001/I01339", "height": 512, "width": 640 }, { "id": 1249, "im_name": "set08/V001/I01359", "height": 512, "width": 640 }, { "id": 1250, "im_name": "set08/V001/I01379", "height": 512, "width": 640 }, { "id": 1251, "im_name": "set08/V001/I01399", "height": 512, "width": 640 }, { "id": 1252, "im_name": "set08/V001/I01419", "height": 512, "width": 640 }, { "id": 1253, "im_name": "set08/V001/I01439", "height": 512, "width": 640 }, { "id": 1254, "im_name": "set08/V001/I01459", "height": 512, "width": 640 }, { "id": 1255, "im_name": "set08/V001/I01479", "height": 512, "width": 640 }, { "id": 1256, "im_name": "set08/V001/I01499", "height": 512, "width": 640 }, { "id": 1257, "im_name": "set08/V001/I01519", "height": 512, "width": 640 }, { "id": 1258, "im_name": "set08/V001/I01539", "height": 512, "width": 640 }, { "id": 1259, "im_name": "set08/V001/I01559", "height": 512, "width": 640 }, { "id": 1260, "im_name": "set08/V001/I01579", "height": 512, "width": 640 }, { "id": 1261, "im_name": "set08/V001/I01599", "height": 512, "width": 640 }, { "id": 1262, "im_name": "set08/V001/I01619", "height": 512, "width": 640 }, { "id": 1263, "im_name": "set08/V001/I01639", "height": 512, "width": 640 }, { "id": 1264, "im_name": "set08/V001/I01659", "height": 512, "width": 640 }, { "id": 1265, "im_name": "set08/V001/I01679", "height": 512, "width": 640 }, { "id": 1266, "im_name": "set08/V001/I01699", "height": 512, "width": 640 }, { "id": 1267, "im_name": "set08/V001/I01719", "height": 512, "width": 640 }, { "id": 1268, "im_name": "set08/V001/I01739", "height": 512, "width": 640 }, { "id": 1269, "im_name": "set08/V001/I01759", "height": 512, "width": 640 }, { "id": 1270, "im_name": "set08/V001/I01779", "height": 512, "width": 640 }, { "id": 1271, "im_name": "set08/V001/I01799", "height": 512, "width": 640 }, { "id": 1272, "im_name": "set08/V001/I01819", "height": 512, "width": 640 }, { "id": 1273, "im_name": "set08/V001/I01839", "height": 512, "width": 640 }, { "id": 1274, "im_name": "set08/V001/I01859", "height": 512, "width": 640 }, { "id": 1275, "im_name": "set08/V001/I01879", "height": 512, "width": 640 }, { "id": 1276, "im_name": "set08/V001/I01899", "height": 512, "width": 640 }, { "id": 1277, "im_name": "set08/V001/I01919", "height": 512, "width": 640 }, { "id": 1278, "im_name": "set08/V001/I01939", "height": 512, "width": 640 }, { "id": 1279, "im_name": "set08/V001/I01959", "height": 512, "width": 640 }, { "id": 1280, "im_name": "set08/V001/I01979", "height": 512, "width": 640 }, { "id": 1281, "im_name": "set08/V001/I01999", "height": 512, "width": 640 }, { "id": 1282, "im_name": "set08/V001/I02019", "height": 512, "width": 640 }, { "id": 1283, "im_name": "set08/V001/I02039", "height": 512, "width": 640 }, { "id": 1284, "im_name": "set08/V001/I02059", "height": 512, "width": 640 }, { "id": 1285, "im_name": "set08/V001/I02079", "height": 512, "width": 640 }, { "id": 1286, "im_name": "set08/V001/I02099", "height": 512, "width": 640 }, { "id": 1287, "im_name": "set08/V001/I02119", "height": 512, "width": 640 }, { "id": 1288, "im_name": "set08/V001/I02139", "height": 512, "width": 640 }, { "id": 1289, "im_name": "set08/V001/I02159", "height": 512, "width": 640 }, { "id": 1290, "im_name": "set08/V001/I02179", "height": 512, "width": 640 }, { "id": 1291, "im_name": "set08/V001/I02199", "height": 512, "width": 640 }, { "id": 1292, "im_name": "set08/V001/I02219", "height": 512, "width": 640 }, { "id": 1293, "im_name": "set08/V001/I02239", "height": 512, "width": 640 }, { "id": 1294, "im_name": "set08/V001/I02259", "height": 512, "width": 640 }, { "id": 1295, "im_name": "set08/V001/I02279", "height": 512, "width": 640 }, { "id": 1296, "im_name": "set08/V001/I02299", "height": 512, "width": 640 }, { "id": 1297, "im_name": "set08/V001/I02319", "height": 512, "width": 640 }, { "id": 1298, "im_name": "set08/V001/I02339", "height": 512, "width": 640 }, { "id": 1299, "im_name": "set08/V001/I02359", "height": 512, "width": 640 }, { "id": 1300, "im_name": "set08/V001/I02379", "height": 512, "width": 640 }, { "id": 1301, "im_name": "set08/V001/I02399", "height": 512, "width": 640 }, { "id": 1302, "im_name": "set08/V001/I02419", "height": 512, "width": 640 }, { "id": 1303, "im_name": "set08/V001/I02439", "height": 512, "width": 640 }, { "id": 1304, "im_name": "set08/V001/I02459", "height": 512, "width": 640 }, { "id": 1305, "im_name": "set08/V001/I02479", "height": 512, "width": 640 }, { "id": 1306, "im_name": "set08/V001/I02499", "height": 512, "width": 640 }, { "id": 1307, "im_name": "set08/V001/I02519", "height": 512, "width": 640 }, { "id": 1308, "im_name": "set08/V001/I02539", "height": 512, "width": 640 }, { "id": 1309, "im_name": "set08/V001/I02559", "height": 512, "width": 640 }, { "id": 1310, "im_name": "set08/V001/I02579", "height": 512, "width": 640 }, { "id": 1311, "im_name": "set08/V001/I02599", "height": 512, "width": 640 }, { "id": 1312, "im_name": "set08/V001/I02619", "height": 512, "width": 640 }, { "id": 1313, "im_name": "set08/V001/I02639", "height": 512, "width": 640 }, { "id": 1314, "im_name": "set08/V001/I02659", "height": 512, "width": 640 }, { "id": 1315, "im_name": "set08/V001/I02679", "height": 512, "width": 640 }, { "id": 1316, "im_name": "set08/V001/I02699", "height": 512, "width": 640 }, { "id": 1317, "im_name": "set08/V001/I02719", "height": 512, "width": 640 }, { "id": 1318, "im_name": "set08/V001/I02739", "height": 512, "width": 640 }, { "id": 1319, "im_name": "set08/V001/I02759", "height": 512, "width": 640 }, { "id": 1320, "im_name": "set08/V001/I02779", "height": 512, "width": 640 }, { "id": 1321, "im_name": "set08/V001/I02799", "height": 512, "width": 640 }, { "id": 1322, "im_name": "set08/V001/I02819", "height": 512, "width": 640 }, { "id": 1323, "im_name": "set08/V001/I02839", "height": 512, "width": 640 }, { "id": 1324, "im_name": "set08/V001/I02859", "height": 512, "width": 640 }, { "id": 1325, "im_name": "set08/V001/I02879", "height": 512, "width": 640 }, { "id": 1326, "im_name": "set08/V001/I02899", "height": 512, "width": 640 }, { "id": 1327, "im_name": "set08/V001/I02919", "height": 512, "width": 640 }, { "id": 1328, "im_name": "set08/V001/I02939", "height": 512, "width": 640 }, { "id": 1329, "im_name": "set08/V001/I02959", "height": 512, "width": 640 }, { "id": 1330, "im_name": "set08/V002/I00019", "height": 512, "width": 640 }, { "id": 1331, "im_name": "set08/V002/I00039", "height": 512, "width": 640 }, { "id": 1332, "im_name": "set08/V002/I00059", "height": 512, "width": 640 }, { "id": 1333, "im_name": "set08/V002/I00079", "height": 512, "width": 640 }, { "id": 1334, "im_name": "set08/V002/I00099", "height": 512, "width": 640 }, { "id": 1335, "im_name": "set08/V002/I00119", "height": 512, "width": 640 }, { "id": 1336, "im_name": "set08/V002/I00139", "height": 512, "width": 640 }, { "id": 1337, "im_name": "set08/V002/I00159", "height": 512, "width": 640 }, { "id": 1338, "im_name": "set08/V002/I00179", "height": 512, "width": 640 }, { "id": 1339, "im_name": "set08/V002/I00199", "height": 512, "width": 640 }, { "id": 1340, "im_name": "set08/V002/I00219", "height": 512, "width": 640 }, { "id": 1341, "im_name": "set08/V002/I00239", "height": 512, "width": 640 }, { "id": 1342, "im_name": "set08/V002/I00259", "height": 512, "width": 640 }, { "id": 1343, "im_name": "set08/V002/I00279", "height": 512, "width": 640 }, { "id": 1344, "im_name": "set08/V002/I00299", "height": 512, "width": 640 }, { "id": 1345, "im_name": "set08/V002/I00319", "height": 512, "width": 640 }, { "id": 1346, "im_name": "set08/V002/I00339", "height": 512, "width": 640 }, { "id": 1347, "im_name": "set08/V002/I00359", "height": 512, "width": 640 }, { "id": 1348, "im_name": "set08/V002/I00379", "height": 512, "width": 640 }, { "id": 1349, "im_name": "set08/V002/I00399", "height": 512, "width": 640 }, { "id": 1350, "im_name": "set08/V002/I00419", "height": 512, "width": 640 }, { "id": 1351, "im_name": "set08/V002/I00439", "height": 512, "width": 640 }, { "id": 1352, "im_name": "set08/V002/I00459", "height": 512, "width": 640 }, { "id": 1353, "im_name": "set08/V002/I00479", "height": 512, "width": 640 }, { "id": 1354, "im_name": "set08/V002/I00499", "height": 512, "width": 640 }, { "id": 1355, "im_name": "set08/V002/I00519", "height": 512, "width": 640 }, { "id": 1356, "im_name": "set08/V002/I00539", "height": 512, "width": 640 }, { "id": 1357, "im_name": "set08/V002/I00559", "height": 512, "width": 640 }, { "id": 1358, "im_name": "set08/V002/I00579", "height": 512, "width": 640 }, { "id": 1359, "im_name": "set08/V002/I00599", "height": 512, "width": 640 }, { "id": 1360, "im_name": "set08/V002/I00619", "height": 512, "width": 640 }, { "id": 1361, "im_name": "set08/V002/I00639", "height": 512, "width": 640 }, { "id": 1362, "im_name": "set08/V002/I00659", "height": 512, "width": 640 }, { "id": 1363, "im_name": "set08/V002/I00679", "height": 512, "width": 640 }, { "id": 1364, "im_name": "set08/V002/I00699", "height": 512, "width": 640 }, { "id": 1365, "im_name": "set08/V002/I00719", "height": 512, "width": 640 }, { "id": 1366, "im_name": "set08/V002/I00739", "height": 512, "width": 640 }, { "id": 1367, "im_name": "set08/V002/I00759", "height": 512, "width": 640 }, { "id": 1368, "im_name": "set08/V002/I00779", "height": 512, "width": 640 }, { "id": 1369, "im_name": "set08/V002/I00799", "height": 512, "width": 640 }, { "id": 1370, "im_name": "set08/V002/I00819", "height": 512, "width": 640 }, { "id": 1371, "im_name": "set08/V002/I00839", "height": 512, "width": 640 }, { "id": 1372, "im_name": "set08/V002/I00859", "height": 512, "width": 640 }, { "id": 1373, "im_name": "set08/V002/I00879", "height": 512, "width": 640 }, { "id": 1374, "im_name": "set08/V002/I00899", "height": 512, "width": 640 }, { "id": 1375, "im_name": "set08/V002/I00919", "height": 512, "width": 640 }, { "id": 1376, "im_name": "set08/V002/I00939", "height": 512, "width": 640 }, { "id": 1377, "im_name": "set08/V002/I00959", "height": 512, "width": 640 }, { "id": 1378, "im_name": "set08/V002/I00979", "height": 512, "width": 640 }, { "id": 1379, "im_name": "set08/V002/I00999", "height": 512, "width": 640 }, { "id": 1380, "im_name": "set08/V002/I01019", "height": 512, "width": 640 }, { "id": 1381, "im_name": "set08/V002/I01039", "height": 512, "width": 640 }, { "id": 1382, "im_name": "set08/V002/I01059", "height": 512, "width": 640 }, { "id": 1383, "im_name": "set08/V002/I01079", "height": 512, "width": 640 }, { "id": 1384, "im_name": "set08/V002/I01099", "height": 512, "width": 640 }, { "id": 1385, "im_name": "set08/V002/I01119", "height": 512, "width": 640 }, { "id": 1386, "im_name": "set08/V002/I01139", "height": 512, "width": 640 }, { "id": 1387, "im_name": "set08/V002/I01159", "height": 512, "width": 640 }, { "id": 1388, "im_name": "set08/V002/I01179", "height": 512, "width": 640 }, { "id": 1389, "im_name": "set08/V002/I01199", "height": 512, "width": 640 }, { "id": 1390, "im_name": "set08/V002/I01219", "height": 512, "width": 640 }, { "id": 1391, "im_name": "set08/V002/I01239", "height": 512, "width": 640 }, { "id": 1392, "im_name": "set08/V002/I01259", "height": 512, "width": 640 }, { "id": 1393, "im_name": "set08/V002/I01279", "height": 512, "width": 640 }, { "id": 1394, "im_name": "set08/V002/I01299", "height": 512, "width": 640 }, { "id": 1395, "im_name": "set08/V002/I01319", "height": 512, "width": 640 }, { "id": 1396, "im_name": "set08/V002/I01339", "height": 512, "width": 640 }, { "id": 1397, "im_name": "set08/V002/I01359", "height": 512, "width": 640 }, { "id": 1398, "im_name": "set08/V002/I01379", "height": 512, "width": 640 }, { "id": 1399, "im_name": "set08/V002/I01399", "height": 512, "width": 640 }, { "id": 1400, "im_name": "set08/V002/I01419", "height": 512, "width": 640 }, { "id": 1401, "im_name": "set08/V002/I01439", "height": 512, "width": 640 }, { "id": 1402, "im_name": "set08/V002/I01459", "height": 512, "width": 640 }, { "id": 1403, "im_name": "set08/V002/I01479", "height": 512, "width": 640 }, { "id": 1404, "im_name": "set08/V002/I01499", "height": 512, "width": 640 }, { "id": 1405, "im_name": "set08/V002/I01519", "height": 512, "width": 640 }, { "id": 1406, "im_name": "set08/V002/I01539", "height": 512, "width": 640 }, { "id": 1407, "im_name": "set08/V002/I01559", "height": 512, "width": 640 }, { "id": 1408, "im_name": "set08/V002/I01579", "height": 512, "width": 640 }, { "id": 1409, "im_name": "set08/V002/I01599", "height": 512, "width": 640 }, { "id": 1410, "im_name": "set08/V002/I01619", "height": 512, "width": 640 }, { "id": 1411, "im_name": "set08/V002/I01639", "height": 512, "width": 640 }, { "id": 1412, "im_name": "set08/V002/I01659", "height": 512, "width": 640 }, { "id": 1413, "im_name": "set08/V002/I01679", "height": 512, "width": 640 }, { "id": 1414, "im_name": "set08/V002/I01699", "height": 512, "width": 640 }, { "id": 1415, "im_name": "set08/V002/I01719", "height": 512, "width": 640 }, { "id": 1416, "im_name": "set08/V002/I01739", "height": 512, "width": 640 }, { "id": 1417, "im_name": "set08/V002/I01759", "height": 512, "width": 640 }, { "id": 1418, "im_name": "set08/V002/I01779", "height": 512, "width": 640 }, { "id": 1419, "im_name": "set08/V002/I01799", "height": 512, "width": 640 }, { "id": 1420, "im_name": "set08/V002/I01819", "height": 512, "width": 640 }, { "id": 1421, "im_name": "set08/V002/I01839", "height": 512, "width": 640 }, { "id": 1422, "im_name": "set08/V002/I01859", "height": 512, "width": 640 }, { "id": 1423, "im_name": "set08/V002/I01879", "height": 512, "width": 640 }, { "id": 1424, "im_name": "set08/V002/I01899", "height": 512, "width": 640 }, { "id": 1425, "im_name": "set08/V002/I01919", "height": 512, "width": 640 }, { "id": 1426, "im_name": "set08/V002/I01939", "height": 512, "width": 640 }, { "id": 1427, "im_name": "set08/V002/I01959", "height": 512, "width": 640 }, { "id": 1428, "im_name": "set08/V002/I01979", "height": 512, "width": 640 }, { "id": 1429, "im_name": "set08/V002/I01999", "height": 512, "width": 640 }, { "id": 1430, "im_name": "set08/V002/I02019", "height": 512, "width": 640 }, { "id": 1431, "im_name": "set08/V002/I02039", "height": 512, "width": 640 }, { "id": 1432, "im_name": "set08/V002/I02059", "height": 512, "width": 640 }, { "id": 1433, "im_name": "set08/V002/I02079", "height": 512, "width": 640 }, { "id": 1434, "im_name": "set08/V002/I02099", "height": 512, "width": 640 }, { "id": 1435, "im_name": "set08/V002/I02119", "height": 512, "width": 640 }, { "id": 1436, "im_name": "set08/V002/I02139", "height": 512, "width": 640 }, { "id": 1437, "im_name": "set08/V002/I02159", "height": 512, "width": 640 }, { "id": 1438, "im_name": "set08/V002/I02179", "height": 512, "width": 640 }, { "id": 1439, "im_name": "set08/V002/I02199", "height": 512, "width": 640 }, { "id": 1440, "im_name": "set08/V002/I02219", "height": 512, "width": 640 }, { "id": 1441, "im_name": "set08/V002/I02239", "height": 512, "width": 640 }, { "id": 1442, "im_name": "set08/V002/I02259", "height": 512, "width": 640 }, { "id": 1443, "im_name": "set08/V002/I02279", "height": 512, "width": 640 }, { "id": 1444, "im_name": "set08/V002/I02299", "height": 512, "width": 640 }, { "id": 1445, "im_name": "set08/V002/I02319", "height": 512, "width": 640 }, { "id": 1446, "im_name": "set08/V002/I02339", "height": 512, "width": 640 }, { "id": 1447, "im_name": "set08/V002/I02359", "height": 512, "width": 640 }, { "id": 1448, "im_name": "set08/V002/I02379", "height": 512, "width": 640 }, { "id": 1449, "im_name": "set08/V002/I02399", "height": 512, "width": 640 }, { "id": 1450, "im_name": "set08/V002/I02419", "height": 512, "width": 640 }, { "id": 1451, "im_name": "set08/V002/I02439", "height": 512, "width": 640 }, { "id": 1452, "im_name": "set08/V002/I02459", "height": 512, "width": 640 }, { "id": 1453, "im_name": "set08/V002/I02479", "height": 512, "width": 640 }, { "id": 1454, "im_name": "set08/V002/I02499", "height": 512, "width": 640 }, { "id": 1455, "im_name": "set09/V000/I00019", "height": 512, "width": 640 }, { "id": 1456, "im_name": "set09/V000/I00039", "height": 512, "width": 640 }, { "id": 1457, "im_name": "set09/V000/I00059", "height": 512, "width": 640 }, { "id": 1458, "im_name": "set09/V000/I00079", "height": 512, "width": 640 }, { "id": 1459, "im_name": "set09/V000/I00099", "height": 512, "width": 640 }, { "id": 1460, "im_name": "set09/V000/I00119", "height": 512, "width": 640 }, { "id": 1461, "im_name": "set09/V000/I00139", "height": 512, "width": 640 }, { "id": 1462, "im_name": "set09/V000/I00159", "height": 512, "width": 640 }, { "id": 1463, "im_name": "set09/V000/I00179", "height": 512, "width": 640 }, { "id": 1464, "im_name": "set09/V000/I00199", "height": 512, "width": 640 }, { "id": 1465, "im_name": "set09/V000/I00219", "height": 512, "width": 640 }, { "id": 1466, "im_name": "set09/V000/I00239", "height": 512, "width": 640 }, { "id": 1467, "im_name": "set09/V000/I00259", "height": 512, "width": 640 }, { "id": 1468, "im_name": "set09/V000/I00279", "height": 512, "width": 640 }, { "id": 1469, "im_name": "set09/V000/I00299", "height": 512, "width": 640 }, { "id": 1470, "im_name": "set09/V000/I00319", "height": 512, "width": 640 }, { "id": 1471, "im_name": "set09/V000/I00339", "height": 512, "width": 640 }, { "id": 1472, "im_name": "set09/V000/I00359", "height": 512, "width": 640 }, { "id": 1473, "im_name": "set09/V000/I00379", "height": 512, "width": 640 }, { "id": 1474, "im_name": "set09/V000/I00399", "height": 512, "width": 640 }, { "id": 1475, "im_name": "set09/V000/I00419", "height": 512, "width": 640 }, { "id": 1476, "im_name": "set09/V000/I00439", "height": 512, "width": 640 }, { "id": 1477, "im_name": "set09/V000/I00459", "height": 512, "width": 640 }, { "id": 1478, "im_name": "set09/V000/I00479", "height": 512, "width": 640 }, { "id": 1479, "im_name": "set09/V000/I00499", "height": 512, "width": 640 }, { "id": 1480, "im_name": "set09/V000/I00519", "height": 512, "width": 640 }, { "id": 1481, "im_name": "set09/V000/I00539", "height": 512, "width": 640 }, { "id": 1482, "im_name": "set09/V000/I00559", "height": 512, "width": 640 }, { "id": 1483, "im_name": "set09/V000/I00579", "height": 512, "width": 640 }, { "id": 1484, "im_name": "set09/V000/I00599", "height": 512, "width": 640 }, { "id": 1485, "im_name": "set09/V000/I00619", "height": 512, "width": 640 }, { "id": 1486, "im_name": "set09/V000/I00639", "height": 512, "width": 640 }, { "id": 1487, "im_name": "set09/V000/I00659", "height": 512, "width": 640 }, { "id": 1488, "im_name": "set09/V000/I00679", "height": 512, "width": 640 }, { "id": 1489, "im_name": "set09/V000/I00699", "height": 512, "width": 640 }, { "id": 1490, "im_name": "set09/V000/I00719", "height": 512, "width": 640 }, { "id": 1491, "im_name": "set09/V000/I00739", "height": 512, "width": 640 }, { "id": 1492, "im_name": "set09/V000/I00759", "height": 512, "width": 640 }, { "id": 1493, "im_name": "set09/V000/I00779", "height": 512, "width": 640 }, { "id": 1494, "im_name": "set09/V000/I00799", "height": 512, "width": 640 }, { "id": 1495, "im_name": "set09/V000/I00819", "height": 512, "width": 640 }, { "id": 1496, "im_name": "set09/V000/I00839", "height": 512, "width": 640 }, { "id": 1497, "im_name": "set09/V000/I00859", "height": 512, "width": 640 }, { "id": 1498, "im_name": "set09/V000/I00879", "height": 512, "width": 640 }, { "id": 1499, "im_name": "set09/V000/I00899", "height": 512, "width": 640 }, { "id": 1500, "im_name": "set09/V000/I00919", "height": 512, "width": 640 }, { "id": 1501, "im_name": "set09/V000/I00939", "height": 512, "width": 640 }, { "id": 1502, "im_name": "set09/V000/I00959", "height": 512, "width": 640 }, { "id": 1503, "im_name": "set09/V000/I00979", "height": 512, "width": 640 }, { "id": 1504, "im_name": "set09/V000/I00999", "height": 512, "width": 640 }, { "id": 1505, "im_name": "set09/V000/I01019", "height": 512, "width": 640 }, { "id": 1506, "im_name": "set09/V000/I01039", "height": 512, "width": 640 }, { "id": 1507, "im_name": "set09/V000/I01059", "height": 512, "width": 640 }, { "id": 1508, "im_name": "set09/V000/I01079", "height": 512, "width": 640 }, { "id": 1509, "im_name": "set09/V000/I01099", "height": 512, "width": 640 }, { "id": 1510, "im_name": "set09/V000/I01119", "height": 512, "width": 640 }, { "id": 1511, "im_name": "set09/V000/I01139", "height": 512, "width": 640 }, { "id": 1512, "im_name": "set09/V000/I01159", "height": 512, "width": 640 }, { "id": 1513, "im_name": "set09/V000/I01179", "height": 512, "width": 640 }, { "id": 1514, "im_name": "set09/V000/I01199", "height": 512, "width": 640 }, { "id": 1515, "im_name": "set09/V000/I01219", "height": 512, "width": 640 }, { "id": 1516, "im_name": "set09/V000/I01239", "height": 512, "width": 640 }, { "id": 1517, "im_name": "set09/V000/I01259", "height": 512, "width": 640 }, { "id": 1518, "im_name": "set09/V000/I01279", "height": 512, "width": 640 }, { "id": 1519, "im_name": "set09/V000/I01299", "height": 512, "width": 640 }, { "id": 1520, "im_name": "set09/V000/I01319", "height": 512, "width": 640 }, { "id": 1521, "im_name": "set09/V000/I01339", "height": 512, "width": 640 }, { "id": 1522, "im_name": "set09/V000/I01359", "height": 512, "width": 640 }, { "id": 1523, "im_name": "set09/V000/I01379", "height": 512, "width": 640 }, { "id": 1524, "im_name": "set09/V000/I01399", "height": 512, "width": 640 }, { "id": 1525, "im_name": "set09/V000/I01419", "height": 512, "width": 640 }, { "id": 1526, "im_name": "set09/V000/I01439", "height": 512, "width": 640 }, { "id": 1527, "im_name": "set09/V000/I01459", "height": 512, "width": 640 }, { "id": 1528, "im_name": "set09/V000/I01479", "height": 512, "width": 640 }, { "id": 1529, "im_name": "set09/V000/I01499", "height": 512, "width": 640 }, { "id": 1530, "im_name": "set09/V000/I01519", "height": 512, "width": 640 }, { "id": 1531, "im_name": "set09/V000/I01539", "height": 512, "width": 640 }, { "id": 1532, "im_name": "set09/V000/I01559", "height": 512, "width": 640 }, { "id": 1533, "im_name": "set09/V000/I01579", "height": 512, "width": 640 }, { "id": 1534, "im_name": "set09/V000/I01599", "height": 512, "width": 640 }, { "id": 1535, "im_name": "set09/V000/I01619", "height": 512, "width": 640 }, { "id": 1536, "im_name": "set09/V000/I01639", "height": 512, "width": 640 }, { "id": 1537, "im_name": "set09/V000/I01659", "height": 512, "width": 640 }, { "id": 1538, "im_name": "set09/V000/I01679", "height": 512, "width": 640 }, { "id": 1539, "im_name": "set09/V000/I01699", "height": 512, "width": 640 }, { "id": 1540, "im_name": "set09/V000/I01719", "height": 512, "width": 640 }, { "id": 1541, "im_name": "set09/V000/I01739", "height": 512, "width": 640 }, { "id": 1542, "im_name": "set09/V000/I01759", "height": 512, "width": 640 }, { "id": 1543, "im_name": "set09/V000/I01779", "height": 512, "width": 640 }, { "id": 1544, "im_name": "set09/V000/I01799", "height": 512, "width": 640 }, { "id": 1545, "im_name": "set09/V000/I01819", "height": 512, "width": 640 }, { "id": 1546, "im_name": "set09/V000/I01839", "height": 512, "width": 640 }, { "id": 1547, "im_name": "set09/V000/I01859", "height": 512, "width": 640 }, { "id": 1548, "im_name": "set09/V000/I01879", "height": 512, "width": 640 }, { "id": 1549, "im_name": "set09/V000/I01899", "height": 512, "width": 640 }, { "id": 1550, "im_name": "set09/V000/I01919", "height": 512, "width": 640 }, { "id": 1551, "im_name": "set09/V000/I01939", "height": 512, "width": 640 }, { "id": 1552, "im_name": "set09/V000/I01959", "height": 512, "width": 640 }, { "id": 1553, "im_name": "set09/V000/I01979", "height": 512, "width": 640 }, { "id": 1554, "im_name": "set09/V000/I01999", "height": 512, "width": 640 }, { "id": 1555, "im_name": "set09/V000/I02019", "height": 512, "width": 640 }, { "id": 1556, "im_name": "set09/V000/I02039", "height": 512, "width": 640 }, { "id": 1557, "im_name": "set09/V000/I02059", "height": 512, "width": 640 }, { "id": 1558, "im_name": "set09/V000/I02079", "height": 512, "width": 640 }, { "id": 1559, "im_name": "set09/V000/I02099", "height": 512, "width": 640 }, { "id": 1560, "im_name": "set09/V000/I02119", "height": 512, "width": 640 }, { "id": 1561, "im_name": "set09/V000/I02139", "height": 512, "width": 640 }, { "id": 1562, "im_name": "set09/V000/I02159", "height": 512, "width": 640 }, { "id": 1563, "im_name": "set09/V000/I02179", "height": 512, "width": 640 }, { "id": 1564, "im_name": "set09/V000/I02199", "height": 512, "width": 640 }, { "id": 1565, "im_name": "set09/V000/I02219", "height": 512, "width": 640 }, { "id": 1566, "im_name": "set09/V000/I02239", "height": 512, "width": 640 }, { "id": 1567, "im_name": "set09/V000/I02259", "height": 512, "width": 640 }, { "id": 1568, "im_name": "set09/V000/I02279", "height": 512, "width": 640 }, { "id": 1569, "im_name": "set09/V000/I02299", "height": 512, "width": 640 }, { "id": 1570, "im_name": "set09/V000/I02319", "height": 512, "width": 640 }, { "id": 1571, "im_name": "set09/V000/I02339", "height": 512, "width": 640 }, { "id": 1572, "im_name": "set09/V000/I02359", "height": 512, "width": 640 }, { "id": 1573, "im_name": "set09/V000/I02379", "height": 512, "width": 640 }, { "id": 1574, "im_name": "set09/V000/I02399", "height": 512, "width": 640 }, { "id": 1575, "im_name": "set09/V000/I02419", "height": 512, "width": 640 }, { "id": 1576, "im_name": "set09/V000/I02439", "height": 512, "width": 640 }, { "id": 1577, "im_name": "set09/V000/I02459", "height": 512, "width": 640 }, { "id": 1578, "im_name": "set09/V000/I02479", "height": 512, "width": 640 }, { "id": 1579, "im_name": "set09/V000/I02499", "height": 512, "width": 640 }, { "id": 1580, "im_name": "set09/V000/I02519", "height": 512, "width": 640 }, { "id": 1581, "im_name": "set09/V000/I02539", "height": 512, "width": 640 }, { "id": 1582, "im_name": "set09/V000/I02559", "height": 512, "width": 640 }, { "id": 1583, "im_name": "set09/V000/I02579", "height": 512, "width": 640 }, { "id": 1584, "im_name": "set09/V000/I02599", "height": 512, "width": 640 }, { "id": 1585, "im_name": "set09/V000/I02619", "height": 512, "width": 640 }, { "id": 1586, "im_name": "set09/V000/I02639", "height": 512, "width": 640 }, { "id": 1587, "im_name": "set09/V000/I02659", "height": 512, "width": 640 }, { "id": 1588, "im_name": "set09/V000/I02679", "height": 512, "width": 640 }, { "id": 1589, "im_name": "set09/V000/I02699", "height": 512, "width": 640 }, { "id": 1590, "im_name": "set09/V000/I02719", "height": 512, "width": 640 }, { "id": 1591, "im_name": "set09/V000/I02739", "height": 512, "width": 640 }, { "id": 1592, "im_name": "set09/V000/I02759", "height": 512, "width": 640 }, { "id": 1593, "im_name": "set09/V000/I02779", "height": 512, "width": 640 }, { "id": 1594, "im_name": "set09/V000/I02799", "height": 512, "width": 640 }, { "id": 1595, "im_name": "set09/V000/I02819", "height": 512, "width": 640 }, { "id": 1596, "im_name": "set09/V000/I02839", "height": 512, "width": 640 }, { "id": 1597, "im_name": "set09/V000/I02859", "height": 512, "width": 640 }, { "id": 1598, "im_name": "set09/V000/I02879", "height": 512, "width": 640 }, { "id": 1599, "im_name": "set09/V000/I02899", "height": 512, "width": 640 }, { "id": 1600, "im_name": "set09/V000/I02919", "height": 512, "width": 640 }, { "id": 1601, "im_name": "set09/V000/I02939", "height": 512, "width": 640 }, { "id": 1602, "im_name": "set09/V000/I02959", "height": 512, "width": 640 }, { "id": 1603, "im_name": "set09/V000/I02979", "height": 512, "width": 640 }, { "id": 1604, "im_name": "set09/V000/I02999", "height": 512, "width": 640 }, { "id": 1605, "im_name": "set09/V000/I03019", "height": 512, "width": 640 }, { "id": 1606, "im_name": "set09/V000/I03039", "height": 512, "width": 640 }, { "id": 1607, "im_name": "set09/V000/I03059", "height": 512, "width": 640 }, { "id": 1608, "im_name": "set09/V000/I03079", "height": 512, "width": 640 }, { "id": 1609, "im_name": "set09/V000/I03099", "height": 512, "width": 640 }, { "id": 1610, "im_name": "set09/V000/I03119", "height": 512, "width": 640 }, { "id": 1611, "im_name": "set09/V000/I03139", "height": 512, "width": 640 }, { "id": 1612, "im_name": "set09/V000/I03159", "height": 512, "width": 640 }, { "id": 1613, "im_name": "set09/V000/I03179", "height": 512, "width": 640 }, { "id": 1614, "im_name": "set09/V000/I03199", "height": 512, "width": 640 }, { "id": 1615, "im_name": "set09/V000/I03219", "height": 512, "width": 640 }, { "id": 1616, "im_name": "set09/V000/I03239", "height": 512, "width": 640 }, { "id": 1617, "im_name": "set09/V000/I03259", "height": 512, "width": 640 }, { "id": 1618, "im_name": "set09/V000/I03279", "height": 512, "width": 640 }, { "id": 1619, "im_name": "set09/V000/I03299", "height": 512, "width": 640 }, { "id": 1620, "im_name": "set09/V000/I03319", "height": 512, "width": 640 }, { "id": 1621, "im_name": "set09/V000/I03339", "height": 512, "width": 640 }, { "id": 1622, "im_name": "set09/V000/I03359", "height": 512, "width": 640 }, { "id": 1623, "im_name": "set09/V000/I03379", "height": 512, "width": 640 }, { "id": 1624, "im_name": "set09/V000/I03399", "height": 512, "width": 640 }, { "id": 1625, "im_name": "set09/V000/I03419", "height": 512, "width": 640 }, { "id": 1626, "im_name": "set09/V000/I03439", "height": 512, "width": 640 }, { "id": 1627, "im_name": "set09/V000/I03459", "height": 512, "width": 640 }, { "id": 1628, "im_name": "set09/V000/I03479", "height": 512, "width": 640 }, { "id": 1629, "im_name": "set09/V000/I03499", "height": 512, "width": 640 }, { "id": 1630, "im_name": "set10/V000/I00019", "height": 512, "width": 640 }, { "id": 1631, "im_name": "set10/V000/I00039", "height": 512, "width": 640 }, { "id": 1632, "im_name": "set10/V000/I00059", "height": 512, "width": 640 }, { "id": 1633, "im_name": "set10/V000/I00079", "height": 512, "width": 640 }, { "id": 1634, "im_name": "set10/V000/I00099", "height": 512, "width": 640 }, { "id": 1635, "im_name": "set10/V000/I00119", "height": 512, "width": 640 }, { "id": 1636, "im_name": "set10/V000/I00139", "height": 512, "width": 640 }, { "id": 1637, "im_name": "set10/V000/I00159", "height": 512, "width": 640 }, { "id": 1638, "im_name": "set10/V000/I00179", "height": 512, "width": 640 }, { "id": 1639, "im_name": "set10/V000/I00199", "height": 512, "width": 640 }, { "id": 1640, "im_name": "set10/V000/I00219", "height": 512, "width": 640 }, { "id": 1641, "im_name": "set10/V000/I00239", "height": 512, "width": 640 }, { "id": 1642, "im_name": "set10/V000/I00259", "height": 512, "width": 640 }, { "id": 1643, "im_name": "set10/V000/I00279", "height": 512, "width": 640 }, { "id": 1644, "im_name": "set10/V000/I00299", "height": 512, "width": 640 }, { "id": 1645, "im_name": "set10/V000/I00319", "height": 512, "width": 640 }, { "id": 1646, "im_name": "set10/V000/I00339", "height": 512, "width": 640 }, { "id": 1647, "im_name": "set10/V000/I00359", "height": 512, "width": 640 }, { "id": 1648, "im_name": "set10/V000/I00379", "height": 512, "width": 640 }, { "id": 1649, "im_name": "set10/V000/I00399", "height": 512, "width": 640 }, { "id": 1650, "im_name": "set10/V000/I00419", "height": 512, "width": 640 }, { "id": 1651, "im_name": "set10/V000/I00439", "height": 512, "width": 640 }, { "id": 1652, "im_name": "set10/V000/I00459", "height": 512, "width": 640 }, { "id": 1653, "im_name": "set10/V000/I00479", "height": 512, "width": 640 }, { "id": 1654, "im_name": "set10/V000/I00499", "height": 512, "width": 640 }, { "id": 1655, "im_name": "set10/V000/I00519", "height": 512, "width": 640 }, { "id": 1656, "im_name": "set10/V000/I00539", "height": 512, "width": 640 }, { "id": 1657, "im_name": "set10/V000/I00559", "height": 512, "width": 640 }, { "id": 1658, "im_name": "set10/V000/I00579", "height": 512, "width": 640 }, { "id": 1659, "im_name": "set10/V000/I00599", "height": 512, "width": 640 }, { "id": 1660, "im_name": "set10/V000/I00619", "height": 512, "width": 640 }, { "id": 1661, "im_name": "set10/V000/I00639", "height": 512, "width": 640 }, { "id": 1662, "im_name": "set10/V000/I00659", "height": 512, "width": 640 }, { "id": 1663, "im_name": "set10/V000/I00679", "height": 512, "width": 640 }, { "id": 1664, "im_name": "set10/V000/I00699", "height": 512, "width": 640 }, { "id": 1665, "im_name": "set10/V000/I00719", "height": 512, "width": 640 }, { "id": 1666, "im_name": "set10/V000/I00739", "height": 512, "width": 640 }, { "id": 1667, "im_name": "set10/V000/I00759", "height": 512, "width": 640 }, { "id": 1668, "im_name": "set10/V000/I00779", "height": 512, "width": 640 }, { "id": 1669, "im_name": "set10/V000/I00799", "height": 512, "width": 640 }, { "id": 1670, "im_name": "set10/V000/I00819", "height": 512, "width": 640 }, { "id": 1671, "im_name": "set10/V000/I00839", "height": 512, "width": 640 }, { "id": 1672, "im_name": "set10/V000/I00859", "height": 512, "width": 640 }, { "id": 1673, "im_name": "set10/V000/I00879", "height": 512, "width": 640 }, { "id": 1674, "im_name": "set10/V000/I00899", "height": 512, "width": 640 }, { "id": 1675, "im_name": "set10/V000/I00919", "height": 512, "width": 640 }, { "id": 1676, "im_name": "set10/V000/I00939", "height": 512, "width": 640 }, { "id": 1677, "im_name": "set10/V000/I00959", "height": 512, "width": 640 }, { "id": 1678, "im_name": "set10/V000/I00979", "height": 512, "width": 640 }, { "id": 1679, "im_name": "set10/V000/I00999", "height": 512, "width": 640 }, { "id": 1680, "im_name": "set10/V000/I01019", "height": 512, "width": 640 }, { "id": 1681, "im_name": "set10/V000/I01039", "height": 512, "width": 640 }, { "id": 1682, "im_name": "set10/V000/I01059", "height": 512, "width": 640 }, { "id": 1683, "im_name": "set10/V000/I01079", "height": 512, "width": 640 }, { "id": 1684, "im_name": "set10/V000/I01099", "height": 512, "width": 640 }, { "id": 1685, "im_name": "set10/V000/I01119", "height": 512, "width": 640 }, { "id": 1686, "im_name": "set10/V000/I01139", "height": 512, "width": 640 }, { "id": 1687, "im_name": "set10/V000/I01159", "height": 512, "width": 640 }, { "id": 1688, "im_name": "set10/V000/I01179", "height": 512, "width": 640 }, { "id": 1689, "im_name": "set10/V000/I01199", "height": 512, "width": 640 }, { "id": 1690, "im_name": "set10/V000/I01219", "height": 512, "width": 640 }, { "id": 1691, "im_name": "set10/V000/I01239", "height": 512, "width": 640 }, { "id": 1692, "im_name": "set10/V000/I01259", "height": 512, "width": 640 }, { "id": 1693, "im_name": "set10/V000/I01279", "height": 512, "width": 640 }, { "id": 1694, "im_name": "set10/V000/I01299", "height": 512, "width": 640 }, { "id": 1695, "im_name": "set10/V000/I01319", "height": 512, "width": 640 }, { "id": 1696, "im_name": "set10/V000/I01339", "height": 512, "width": 640 }, { "id": 1697, "im_name": "set10/V000/I01359", "height": 512, "width": 640 }, { "id": 1698, "im_name": "set10/V000/I01379", "height": 512, "width": 640 }, { "id": 1699, "im_name": "set10/V000/I01399", "height": 512, "width": 640 }, { "id": 1700, "im_name": "set10/V000/I01419", "height": 512, "width": 640 }, { "id": 1701, "im_name": "set10/V000/I01439", "height": 512, "width": 640 }, { "id": 1702, "im_name": "set10/V000/I01459", "height": 512, "width": 640 }, { "id": 1703, "im_name": "set10/V000/I01479", "height": 512, "width": 640 }, { "id": 1704, "im_name": "set10/V000/I01499", "height": 512, "width": 640 }, { "id": 1705, "im_name": "set10/V000/I01519", "height": 512, "width": 640 }, { "id": 1706, "im_name": "set10/V000/I01539", "height": 512, "width": 640 }, { "id": 1707, "im_name": "set10/V000/I01559", "height": 512, "width": 640 }, { "id": 1708, "im_name": "set10/V000/I01579", "height": 512, "width": 640 }, { "id": 1709, "im_name": "set10/V000/I01599", "height": 512, "width": 640 }, { "id": 1710, "im_name": "set10/V000/I01619", "height": 512, "width": 640 }, { "id": 1711, "im_name": "set10/V000/I01639", "height": 512, "width": 640 }, { "id": 1712, "im_name": "set10/V000/I01659", "height": 512, "width": 640 }, { "id": 1713, "im_name": "set10/V000/I01679", "height": 512, "width": 640 }, { "id": 1714, "im_name": "set10/V000/I01699", "height": 512, "width": 640 }, { "id": 1715, "im_name": "set10/V000/I01719", "height": 512, "width": 640 }, { "id": 1716, "im_name": "set10/V000/I01739", "height": 512, "width": 640 }, { "id": 1717, "im_name": "set10/V000/I01759", "height": 512, "width": 640 }, { "id": 1718, "im_name": "set10/V000/I01779", "height": 512, "width": 640 }, { "id": 1719, "im_name": "set10/V000/I01799", "height": 512, "width": 640 }, { "id": 1720, "im_name": "set10/V000/I01819", "height": 512, "width": 640 }, { "id": 1721, "im_name": "set10/V000/I01839", "height": 512, "width": 640 }, { "id": 1722, "im_name": "set10/V000/I01859", "height": 512, "width": 640 }, { "id": 1723, "im_name": "set10/V000/I01879", "height": 512, "width": 640 }, { "id": 1724, "im_name": "set10/V000/I01899", "height": 512, "width": 640 }, { "id": 1725, "im_name": "set10/V000/I01919", "height": 512, "width": 640 }, { "id": 1726, "im_name": "set10/V000/I01939", "height": 512, "width": 640 }, { "id": 1727, "im_name": "set10/V000/I01959", "height": 512, "width": 640 }, { "id": 1728, "im_name": "set10/V000/I01979", "height": 512, "width": 640 }, { "id": 1729, "im_name": "set10/V000/I01999", "height": 512, "width": 640 }, { "id": 1730, "im_name": "set10/V000/I02019", "height": 512, "width": 640 }, { "id": 1731, "im_name": "set10/V000/I02039", "height": 512, "width": 640 }, { "id": 1732, "im_name": "set10/V000/I02059", "height": 512, "width": 640 }, { "id": 1733, "im_name": "set10/V000/I02079", "height": 512, "width": 640 }, { "id": 1734, "im_name": "set10/V000/I02099", "height": 512, "width": 640 }, { "id": 1735, "im_name": "set10/V000/I02119", "height": 512, "width": 640 }, { "id": 1736, "im_name": "set10/V000/I02139", "height": 512, "width": 640 }, { "id": 1737, "im_name": "set10/V000/I02159", "height": 512, "width": 640 }, { "id": 1738, "im_name": "set10/V000/I02179", "height": 512, "width": 640 }, { "id": 1739, "im_name": "set10/V000/I02199", "height": 512, "width": 640 }, { "id": 1740, "im_name": "set10/V000/I02219", "height": 512, "width": 640 }, { "id": 1741, "im_name": "set10/V000/I02239", "height": 512, "width": 640 }, { "id": 1742, "im_name": "set10/V000/I02259", "height": 512, "width": 640 }, { "id": 1743, "im_name": "set10/V000/I02279", "height": 512, "width": 640 }, { "id": 1744, "im_name": "set10/V000/I02299", "height": 512, "width": 640 }, { "id": 1745, "im_name": "set10/V000/I02319", "height": 512, "width": 640 }, { "id": 1746, "im_name": "set10/V000/I02339", "height": 512, "width": 640 }, { "id": 1747, "im_name": "set10/V000/I02359", "height": 512, "width": 640 }, { "id": 1748, "im_name": "set10/V000/I02379", "height": 512, "width": 640 }, { "id": 1749, "im_name": "set10/V000/I02399", "height": 512, "width": 640 }, { "id": 1750, "im_name": "set10/V000/I02419", "height": 512, "width": 640 }, { "id": 1751, "im_name": "set10/V000/I02439", "height": 512, "width": 640 }, { "id": 1752, "im_name": "set10/V000/I02459", "height": 512, "width": 640 }, { "id": 1753, "im_name": "set10/V000/I02479", "height": 512, "width": 640 }, { "id": 1754, "im_name": "set10/V000/I02499", "height": 512, "width": 640 }, { "id": 1755, "im_name": "set10/V000/I02519", "height": 512, "width": 640 }, { "id": 1756, "im_name": "set10/V000/I02539", "height": 512, "width": 640 }, { "id": 1757, "im_name": "set10/V000/I02559", "height": 512, "width": 640 }, { "id": 1758, "im_name": "set10/V000/I02579", "height": 512, "width": 640 }, { "id": 1759, "im_name": "set10/V000/I02599", "height": 512, "width": 640 }, { "id": 1760, "im_name": "set10/V000/I02619", "height": 512, "width": 640 }, { "id": 1761, "im_name": "set10/V000/I02639", "height": 512, "width": 640 }, { "id": 1762, "im_name": "set10/V000/I02659", "height": 512, "width": 640 }, { "id": 1763, "im_name": "set10/V000/I02679", "height": 512, "width": 640 }, { "id": 1764, "im_name": "set10/V000/I02699", "height": 512, "width": 640 }, { "id": 1765, "im_name": "set10/V000/I02719", "height": 512, "width": 640 }, { "id": 1766, "im_name": "set10/V000/I02739", "height": 512, "width": 640 }, { "id": 1767, "im_name": "set10/V000/I02759", "height": 512, "width": 640 }, { "id": 1768, "im_name": "set10/V000/I02779", "height": 512, "width": 640 }, { "id": 1769, "im_name": "set10/V000/I02799", "height": 512, "width": 640 }, { "id": 1770, "im_name": "set10/V000/I02819", "height": 512, "width": 640 }, { "id": 1771, "im_name": "set10/V000/I02839", "height": 512, "width": 640 }, { "id": 1772, "im_name": "set10/V000/I02859", "height": 512, "width": 640 }, { "id": 1773, "im_name": "set10/V000/I02879", "height": 512, "width": 640 }, { "id": 1774, "im_name": "set10/V000/I02899", "height": 512, "width": 640 }, { "id": 1775, "im_name": "set10/V000/I02919", "height": 512, "width": 640 }, { "id": 1776, "im_name": "set10/V000/I02939", "height": 512, "width": 640 }, { "id": 1777, "im_name": "set10/V000/I02959", "height": 512, "width": 640 }, { "id": 1778, "im_name": "set10/V000/I02979", "height": 512, "width": 640 }, { "id": 1779, "im_name": "set10/V000/I02999", "height": 512, "width": 640 }, { "id": 1780, "im_name": "set10/V000/I03019", "height": 512, "width": 640 }, { "id": 1781, "im_name": "set10/V000/I03039", "height": 512, "width": 640 }, { "id": 1782, "im_name": "set10/V000/I03059", "height": 512, "width": 640 }, { "id": 1783, "im_name": "set10/V000/I03079", "height": 512, "width": 640 }, { "id": 1784, "im_name": "set10/V000/I03099", "height": 512, "width": 640 }, { "id": 1785, "im_name": "set10/V000/I03119", "height": 512, "width": 640 }, { "id": 1786, "im_name": "set10/V000/I03139", "height": 512, "width": 640 }, { "id": 1787, "im_name": "set10/V000/I03159", "height": 512, "width": 640 }, { "id": 1788, "im_name": "set10/V000/I03179", "height": 512, "width": 640 }, { "id": 1789, "im_name": "set10/V000/I03199", "height": 512, "width": 640 }, { "id": 1790, "im_name": "set10/V000/I03219", "height": 512, "width": 640 }, { "id": 1791, "im_name": "set10/V000/I03239", "height": 512, "width": 640 }, { "id": 1792, "im_name": "set10/V000/I03259", "height": 512, "width": 640 }, { "id": 1793, "im_name": "set10/V000/I03279", "height": 512, "width": 640 }, { "id": 1794, "im_name": "set10/V000/I03299", "height": 512, "width": 640 }, { "id": 1795, "im_name": "set10/V000/I03319", "height": 512, "width": 640 }, { "id": 1796, "im_name": "set10/V000/I03339", "height": 512, "width": 640 }, { "id": 1797, "im_name": "set10/V000/I03359", "height": 512, "width": 640 }, { "id": 1798, "im_name": "set10/V000/I03379", "height": 512, "width": 640 }, { "id": 1799, "im_name": "set10/V000/I03399", "height": 512, "width": 640 }, { "id": 1800, "im_name": "set10/V000/I03419", "height": 512, "width": 640 }, { "id": 1801, "im_name": "set10/V000/I03439", "height": 512, "width": 640 }, { "id": 1802, "im_name": "set10/V000/I03459", "height": 512, "width": 640 }, { "id": 1803, "im_name": "set10/V000/I03479", "height": 512, "width": 640 }, { "id": 1804, "im_name": "set10/V000/I03499", "height": 512, "width": 640 }, { "id": 1805, "im_name": "set10/V000/I03519", "height": 512, "width": 640 }, { "id": 1806, "im_name": "set10/V000/I03539", "height": 512, "width": 640 }, { "id": 1807, "im_name": "set10/V000/I03559", "height": 512, "width": 640 }, { "id": 1808, "im_name": "set10/V000/I03579", "height": 512, "width": 640 }, { "id": 1809, "im_name": "set10/V000/I03599", "height": 512, "width": 640 }, { "id": 1810, "im_name": "set10/V000/I03619", "height": 512, "width": 640 }, { "id": 1811, "im_name": "set10/V000/I03639", "height": 512, "width": 640 }, { "id": 1812, "im_name": "set10/V000/I03659", "height": 512, "width": 640 }, { "id": 1813, "im_name": "set10/V000/I03679", "height": 512, "width": 640 }, { "id": 1814, "im_name": "set10/V000/I03699", "height": 512, "width": 640 }, { "id": 1815, "im_name": "set10/V000/I03719", "height": 512, "width": 640 }, { "id": 1816, "im_name": "set10/V000/I03739", "height": 512, "width": 640 }, { "id": 1817, "im_name": "set10/V000/I03759", "height": 512, "width": 640 }, { "id": 1818, "im_name": "set10/V000/I03779", "height": 512, "width": 640 }, { "id": 1819, "im_name": "set10/V000/I03799", "height": 512, "width": 640 }, { "id": 1820, "im_name": "set10/V000/I03819", "height": 512, "width": 640 }, { "id": 1821, "im_name": "set10/V000/I03839", "height": 512, "width": 640 }, { "id": 1822, "im_name": "set10/V000/I03859", "height": 512, "width": 640 }, { "id": 1823, "im_name": "set10/V000/I03879", "height": 512, "width": 640 }, { "id": 1824, "im_name": "set10/V000/I03899", "height": 512, "width": 640 }, { "id": 1825, "im_name": "set10/V000/I03919", "height": 512, "width": 640 }, { "id": 1826, "im_name": "set10/V000/I03939", "height": 512, "width": 640 }, { "id": 1827, "im_name": "set10/V000/I03959", "height": 512, "width": 640 }, { "id": 1828, "im_name": "set10/V000/I03979", "height": 512, "width": 640 }, { "id": 1829, "im_name": "set10/V000/I03999", "height": 512, "width": 640 }, { "id": 1830, "im_name": "set10/V000/I04019", "height": 512, "width": 640 }, { "id": 1831, "im_name": "set10/V000/I04039", "height": 512, "width": 640 }, { "id": 1832, "im_name": "set10/V000/I04059", "height": 512, "width": 640 }, { "id": 1833, "im_name": "set10/V000/I04079", "height": 512, "width": 640 }, { "id": 1834, "im_name": "set10/V000/I04099", "height": 512, "width": 640 }, { "id": 1835, "im_name": "set10/V000/I04119", "height": 512, "width": 640 }, { "id": 1836, "im_name": "set10/V000/I04139", "height": 512, "width": 640 }, { "id": 1837, "im_name": "set10/V000/I04159", "height": 512, "width": 640 }, { "id": 1838, "im_name": "set10/V000/I04179", "height": 512, "width": 640 }, { "id": 1839, "im_name": "set10/V000/I04199", "height": 512, "width": 640 }, { "id": 1840, "im_name": "set10/V000/I04219", "height": 512, "width": 640 }, { "id": 1841, "im_name": "set10/V000/I04239", "height": 512, "width": 640 }, { "id": 1842, "im_name": "set10/V000/I04259", "height": 512, "width": 640 }, { "id": 1843, "im_name": "set10/V000/I04279", "height": 512, "width": 640 }, { "id": 1844, "im_name": "set10/V000/I04299", "height": 512, "width": 640 }, { "id": 1845, "im_name": "set10/V000/I04319", "height": 512, "width": 640 }, { "id": 1846, "im_name": "set10/V000/I04339", "height": 512, "width": 640 }, { "id": 1847, "im_name": "set10/V000/I04359", "height": 512, "width": 640 }, { "id": 1848, "im_name": "set10/V000/I04379", "height": 512, "width": 640 }, { "id": 1849, "im_name": "set10/V000/I04399", "height": 512, "width": 640 }, { "id": 1850, "im_name": "set10/V000/I04419", "height": 512, "width": 640 }, { "id": 1851, "im_name": "set10/V000/I04439", "height": 512, "width": 640 }, { "id": 1852, "im_name": "set10/V000/I04459", "height": 512, "width": 640 }, { "id": 1853, "im_name": "set10/V000/I04479", "height": 512, "width": 640 }, { "id": 1854, "im_name": "set10/V000/I04499", "height": 512, "width": 640 }, { "id": 1855, "im_name": "set10/V000/I04519", "height": 512, "width": 640 }, { "id": 1856, "im_name": "set10/V000/I04539", "height": 512, "width": 640 }, { "id": 1857, "im_name": "set10/V000/I04559", "height": 512, "width": 640 }, { "id": 1858, "im_name": "set10/V000/I04579", "height": 512, "width": 640 }, { "id": 1859, "im_name": "set10/V000/I04599", "height": 512, "width": 640 }, { "id": 1860, "im_name": "set10/V000/I04619", "height": 512, "width": 640 }, { "id": 1861, "im_name": "set10/V000/I04639", "height": 512, "width": 640 }, { "id": 1862, "im_name": "set10/V000/I04659", "height": 512, "width": 640 }, { "id": 1863, "im_name": "set10/V000/I04679", "height": 512, "width": 640 }, { "id": 1864, "im_name": "set10/V000/I04699", "height": 512, "width": 640 }, { "id": 1865, "im_name": "set10/V001/I00019", "height": 512, "width": 640 }, { "id": 1866, "im_name": "set10/V001/I00039", "height": 512, "width": 640 }, { "id": 1867, "im_name": "set10/V001/I00059", "height": 512, "width": 640 }, { "id": 1868, "im_name": "set10/V001/I00079", "height": 512, "width": 640 }, { "id": 1869, "im_name": "set10/V001/I00099", "height": 512, "width": 640 }, { "id": 1870, "im_name": "set10/V001/I00119", "height": 512, "width": 640 }, { "id": 1871, "im_name": "set10/V001/I00139", "height": 512, "width": 640 }, { "id": 1872, "im_name": "set10/V001/I00159", "height": 512, "width": 640 }, { "id": 1873, "im_name": "set10/V001/I00179", "height": 512, "width": 640 }, { "id": 1874, "im_name": "set10/V001/I00199", "height": 512, "width": 640 }, { "id": 1875, "im_name": "set10/V001/I00219", "height": 512, "width": 640 }, { "id": 1876, "im_name": "set10/V001/I00239", "height": 512, "width": 640 }, { "id": 1877, "im_name": "set10/V001/I00259", "height": 512, "width": 640 }, { "id": 1878, "im_name": "set10/V001/I00279", "height": 512, "width": 640 }, { "id": 1879, "im_name": "set10/V001/I00299", "height": 512, "width": 640 }, { "id": 1880, "im_name": "set10/V001/I00319", "height": 512, "width": 640 }, { "id": 1881, "im_name": "set10/V001/I00339", "height": 512, "width": 640 }, { "id": 1882, "im_name": "set10/V001/I00359", "height": 512, "width": 640 }, { "id": 1883, "im_name": "set10/V001/I00379", "height": 512, "width": 640 }, { "id": 1884, "im_name": "set10/V001/I00399", "height": 512, "width": 640 }, { "id": 1885, "im_name": "set10/V001/I00419", "height": 512, "width": 640 }, { "id": 1886, "im_name": "set10/V001/I00439", "height": 512, "width": 640 }, { "id": 1887, "im_name": "set10/V001/I00459", "height": 512, "width": 640 }, { "id": 1888, "im_name": "set10/V001/I00479", "height": 512, "width": 640 }, { "id": 1889, "im_name": "set10/V001/I00499", "height": 512, "width": 640 }, { "id": 1890, "im_name": "set10/V001/I00519", "height": 512, "width": 640 }, { "id": 1891, "im_name": "set10/V001/I00539", "height": 512, "width": 640 }, { "id": 1892, "im_name": "set10/V001/I00559", "height": 512, "width": 640 }, { "id": 1893, "im_name": "set10/V001/I00579", "height": 512, "width": 640 }, { "id": 1894, "im_name": "set10/V001/I00599", "height": 512, "width": 640 }, { "id": 1895, "im_name": "set10/V001/I00619", "height": 512, "width": 640 }, { "id": 1896, "im_name": "set10/V001/I00639", "height": 512, "width": 640 }, { "id": 1897, "im_name": "set10/V001/I00659", "height": 512, "width": 640 }, { "id": 1898, "im_name": "set10/V001/I00679", "height": 512, "width": 640 }, { "id": 1899, "im_name": "set10/V001/I00699", "height": 512, "width": 640 }, { "id": 1900, "im_name": "set10/V001/I00719", "height": 512, "width": 640 }, { "id": 1901, "im_name": "set10/V001/I00739", "height": 512, "width": 640 }, { "id": 1902, "im_name": "set10/V001/I00759", "height": 512, "width": 640 }, { "id": 1903, "im_name": "set10/V001/I00779", "height": 512, "width": 640 }, { "id": 1904, "im_name": "set10/V001/I00799", "height": 512, "width": 640 }, { "id": 1905, "im_name": "set10/V001/I00819", "height": 512, "width": 640 }, { "id": 1906, "im_name": "set10/V001/I00839", "height": 512, "width": 640 }, { "id": 1907, "im_name": "set10/V001/I00859", "height": 512, "width": 640 }, { "id": 1908, "im_name": "set10/V001/I00879", "height": 512, "width": 640 }, { "id": 1909, "im_name": "set10/V001/I00899", "height": 512, "width": 640 }, { "id": 1910, "im_name": "set10/V001/I00919", "height": 512, "width": 640 }, { "id": 1911, "im_name": "set10/V001/I00939", "height": 512, "width": 640 }, { "id": 1912, "im_name": "set10/V001/I00959", "height": 512, "width": 640 }, { "id": 1913, "im_name": "set10/V001/I00979", "height": 512, "width": 640 }, { "id": 1914, "im_name": "set10/V001/I00999", "height": 512, "width": 640 }, { "id": 1915, "im_name": "set10/V001/I01019", "height": 512, "width": 640 }, { "id": 1916, "im_name": "set10/V001/I01039", "height": 512, "width": 640 }, { "id": 1917, "im_name": "set10/V001/I01059", "height": 512, "width": 640 }, { "id": 1918, "im_name": "set10/V001/I01079", "height": 512, "width": 640 }, { "id": 1919, "im_name": "set10/V001/I01099", "height": 512, "width": 640 }, { "id": 1920, "im_name": "set10/V001/I01119", "height": 512, "width": 640 }, { "id": 1921, "im_name": "set10/V001/I01139", "height": 512, "width": 640 }, { "id": 1922, "im_name": "set10/V001/I01159", "height": 512, "width": 640 }, { "id": 1923, "im_name": "set10/V001/I01179", "height": 512, "width": 640 }, { "id": 1924, "im_name": "set10/V001/I01199", "height": 512, "width": 640 }, { "id": 1925, "im_name": "set10/V001/I01219", "height": 512, "width": 640 }, { "id": 1926, "im_name": "set10/V001/I01239", "height": 512, "width": 640 }, { "id": 1927, "im_name": "set10/V001/I01259", "height": 512, "width": 640 }, { "id": 1928, "im_name": "set10/V001/I01279", "height": 512, "width": 640 }, { "id": 1929, "im_name": "set10/V001/I01299", "height": 512, "width": 640 }, { "id": 1930, "im_name": "set10/V001/I01319", "height": 512, "width": 640 }, { "id": 1931, "im_name": "set10/V001/I01339", "height": 512, "width": 640 }, { "id": 1932, "im_name": "set10/V001/I01359", "height": 512, "width": 640 }, { "id": 1933, "im_name": "set10/V001/I01379", "height": 512, "width": 640 }, { "id": 1934, "im_name": "set10/V001/I01399", "height": 512, "width": 640 }, { "id": 1935, "im_name": "set10/V001/I01419", "height": 512, "width": 640 }, { "id": 1936, "im_name": "set10/V001/I01439", "height": 512, "width": 640 }, { "id": 1937, "im_name": "set10/V001/I01459", "height": 512, "width": 640 }, { "id": 1938, "im_name": "set10/V001/I01479", "height": 512, "width": 640 }, { "id": 1939, "im_name": "set10/V001/I01499", "height": 512, "width": 640 }, { "id": 1940, "im_name": "set10/V001/I01519", "height": 512, "width": 640 }, { "id": 1941, "im_name": "set10/V001/I01539", "height": 512, "width": 640 }, { "id": 1942, "im_name": "set10/V001/I01559", "height": 512, "width": 640 }, { "id": 1943, "im_name": "set10/V001/I01579", "height": 512, "width": 640 }, { "id": 1944, "im_name": "set10/V001/I01599", "height": 512, "width": 640 }, { "id": 1945, "im_name": "set10/V001/I01619", "height": 512, "width": 640 }, { "id": 1946, "im_name": "set10/V001/I01639", "height": 512, "width": 640 }, { "id": 1947, "im_name": "set10/V001/I01659", "height": 512, "width": 640 }, { "id": 1948, "im_name": "set10/V001/I01679", "height": 512, "width": 640 }, { "id": 1949, "im_name": "set10/V001/I01699", "height": 512, "width": 640 }, { "id": 1950, "im_name": "set10/V001/I01719", "height": 512, "width": 640 }, { "id": 1951, "im_name": "set10/V001/I01739", "height": 512, "width": 640 }, { "id": 1952, "im_name": "set10/V001/I01759", "height": 512, "width": 640 }, { "id": 1953, "im_name": "set10/V001/I01779", "height": 512, "width": 640 }, { "id": 1954, "im_name": "set10/V001/I01799", "height": 512, "width": 640 }, { "id": 1955, "im_name": "set10/V001/I01819", "height": 512, "width": 640 }, { "id": 1956, "im_name": "set10/V001/I01839", "height": 512, "width": 640 }, { "id": 1957, "im_name": "set10/V001/I01859", "height": 512, "width": 640 }, { "id": 1958, "im_name": "set10/V001/I01879", "height": 512, "width": 640 }, { "id": 1959, "im_name": "set10/V001/I01899", "height": 512, "width": 640 }, { "id": 1960, "im_name": "set10/V001/I01919", "height": 512, "width": 640 }, { "id": 1961, "im_name": "set10/V001/I01939", "height": 512, "width": 640 }, { "id": 1962, "im_name": "set10/V001/I01959", "height": 512, "width": 640 }, { "id": 1963, "im_name": "set10/V001/I01979", "height": 512, "width": 640 }, { "id": 1964, "im_name": "set10/V001/I01999", "height": 512, "width": 640 }, { "id": 1965, "im_name": "set10/V001/I02019", "height": 512, "width": 640 }, { "id": 1966, "im_name": "set10/V001/I02039", "height": 512, "width": 640 }, { "id": 1967, "im_name": "set10/V001/I02059", "height": 512, "width": 640 }, { "id": 1968, "im_name": "set10/V001/I02079", "height": 512, "width": 640 }, { "id": 1969, "im_name": "set10/V001/I02099", "height": 512, "width": 640 }, { "id": 1970, "im_name": "set10/V001/I02119", "height": 512, "width": 640 }, { "id": 1971, "im_name": "set10/V001/I02139", "height": 512, "width": 640 }, { "id": 1972, "im_name": "set10/V001/I02159", "height": 512, "width": 640 }, { "id": 1973, "im_name": "set10/V001/I02179", "height": 512, "width": 640 }, { "id": 1974, "im_name": "set10/V001/I02199", "height": 512, "width": 640 }, { "id": 1975, "im_name": "set10/V001/I02219", "height": 512, "width": 640 }, { "id": 1976, "im_name": "set10/V001/I02239", "height": 512, "width": 640 }, { "id": 1977, "im_name": "set10/V001/I02259", "height": 512, "width": 640 }, { "id": 1978, "im_name": "set10/V001/I02279", "height": 512, "width": 640 }, { "id": 1979, "im_name": "set10/V001/I02299", "height": 512, "width": 640 }, { "id": 1980, "im_name": "set10/V001/I02319", "height": 512, "width": 640 }, { "id": 1981, "im_name": "set10/V001/I02339", "height": 512, "width": 640 }, { "id": 1982, "im_name": "set10/V001/I02359", "height": 512, "width": 640 }, { "id": 1983, "im_name": "set10/V001/I02379", "height": 512, "width": 640 }, { "id": 1984, "im_name": "set10/V001/I02399", "height": 512, "width": 640 }, { "id": 1985, "im_name": "set10/V001/I02419", "height": 512, "width": 640 }, { "id": 1986, "im_name": "set10/V001/I02439", "height": 512, "width": 640 }, { "id": 1987, "im_name": "set10/V001/I02459", "height": 512, "width": 640 }, { "id": 1988, "im_name": "set10/V001/I02479", "height": 512, "width": 640 }, { "id": 1989, "im_name": "set10/V001/I02499", "height": 512, "width": 640 }, { "id": 1990, "im_name": "set10/V001/I02519", "height": 512, "width": 640 }, { "id": 1991, "im_name": "set10/V001/I02539", "height": 512, "width": 640 }, { "id": 1992, "im_name": "set10/V001/I02559", "height": 512, "width": 640 }, { "id": 1993, "im_name": "set10/V001/I02579", "height": 512, "width": 640 }, { "id": 1994, "im_name": "set10/V001/I02599", "height": 512, "width": 640 }, { "id": 1995, "im_name": "set10/V001/I02619", "height": 512, "width": 640 }, { "id": 1996, "im_name": "set10/V001/I02639", "height": 512, "width": 640 }, { "id": 1997, "im_name": "set10/V001/I02659", "height": 512, "width": 640 }, { "id": 1998, "im_name": "set10/V001/I02679", "height": 512, "width": 640 }, { "id": 1999, "im_name": "set10/V001/I02699", "height": 512, "width": 640 }, { "id": 2000, "im_name": "set10/V001/I02719", "height": 512, "width": 640 }, { "id": 2001, "im_name": "set10/V001/I02739", "height": 512, "width": 640 }, { "id": 2002, "im_name": "set10/V001/I02759", "height": 512, "width": 640 }, { "id": 2003, "im_name": "set10/V001/I02779", "height": 512, "width": 640 }, { "id": 2004, "im_name": "set10/V001/I02799", "height": 512, "width": 640 }, { "id": 2005, "im_name": "set10/V001/I02819", "height": 512, "width": 640 }, { "id": 2006, "im_name": "set10/V001/I02839", "height": 512, "width": 640 }, { "id": 2007, "im_name": "set10/V001/I02859", "height": 512, "width": 640 }, { "id": 2008, "im_name": "set10/V001/I02879", "height": 512, "width": 640 }, { "id": 2009, "im_name": "set10/V001/I02899", "height": 512, "width": 640 }, { "id": 2010, "im_name": "set10/V001/I02919", "height": 512, "width": 640 }, { "id": 2011, "im_name": "set10/V001/I02939", "height": 512, "width": 640 }, { "id": 2012, "im_name": "set10/V001/I02959", "height": 512, "width": 640 }, { "id": 2013, "im_name": "set10/V001/I02979", "height": 512, "width": 640 }, { "id": 2014, "im_name": "set10/V001/I02999", "height": 512, "width": 640 }, { "id": 2015, "im_name": "set10/V001/I03019", "height": 512, "width": 640 }, { "id": 2016, "im_name": "set10/V001/I03039", "height": 512, "width": 640 }, { "id": 2017, "im_name": "set10/V001/I03059", "height": 512, "width": 640 }, { "id": 2018, "im_name": "set10/V001/I03079", "height": 512, "width": 640 }, { "id": 2019, "im_name": "set10/V001/I03099", "height": 512, "width": 640 }, { "id": 2020, "im_name": "set10/V001/I03119", "height": 512, "width": 640 }, { "id": 2021, "im_name": "set10/V001/I03139", "height": 512, "width": 640 }, { "id": 2022, "im_name": "set10/V001/I03159", "height": 512, "width": 640 }, { "id": 2023, "im_name": "set10/V001/I03179", "height": 512, "width": 640 }, { "id": 2024, "im_name": "set10/V001/I03199", "height": 512, "width": 640 }, { "id": 2025, "im_name": "set10/V001/I03219", "height": 512, "width": 640 }, { "id": 2026, "im_name": "set10/V001/I03239", "height": 512, "width": 640 }, { "id": 2027, "im_name": "set10/V001/I03259", "height": 512, "width": 640 }, { "id": 2028, "im_name": "set10/V001/I03279", "height": 512, "width": 640 }, { "id": 2029, "im_name": "set10/V001/I03299", "height": 512, "width": 640 }, { "id": 2030, "im_name": "set10/V001/I03319", "height": 512, "width": 640 }, { "id": 2031, "im_name": "set10/V001/I03339", "height": 512, "width": 640 }, { "id": 2032, "im_name": "set10/V001/I03359", "height": 512, "width": 640 }, { "id": 2033, "im_name": "set10/V001/I03379", "height": 512, "width": 640 }, { "id": 2034, "im_name": "set10/V001/I03399", "height": 512, "width": 640 }, { "id": 2035, "im_name": "set10/V001/I03419", "height": 512, "width": 640 }, { "id": 2036, "im_name": "set10/V001/I03439", "height": 512, "width": 640 }, { "id": 2037, "im_name": "set10/V001/I03459", "height": 512, "width": 640 }, { "id": 2038, "im_name": "set10/V001/I03479", "height": 512, "width": 640 }, { "id": 2039, "im_name": "set10/V001/I03499", "height": 512, "width": 640 }, { "id": 2040, "im_name": "set10/V001/I03519", "height": 512, "width": 640 }, { "id": 2041, "im_name": "set10/V001/I03539", "height": 512, "width": 640 }, { "id": 2042, "im_name": "set10/V001/I03559", "height": 512, "width": 640 }, { "id": 2043, "im_name": "set10/V001/I03579", "height": 512, "width": 640 }, { "id": 2044, "im_name": "set10/V001/I03599", "height": 512, "width": 640 }, { "id": 2045, "im_name": "set10/V001/I03619", "height": 512, "width": 640 }, { "id": 2046, "im_name": "set10/V001/I03639", "height": 512, "width": 640 }, { "id": 2047, "im_name": "set10/V001/I03659", "height": 512, "width": 640 }, { "id": 2048, "im_name": "set10/V001/I03679", "height": 512, "width": 640 }, { "id": 2049, "im_name": "set10/V001/I03699", "height": 512, "width": 640 }, { "id": 2050, "im_name": "set10/V001/I03719", "height": 512, "width": 640 }, { "id": 2051, "im_name": "set10/V001/I03739", "height": 512, "width": 640 }, { "id": 2052, "im_name": "set10/V001/I03759", "height": 512, "width": 640 }, { "id": 2053, "im_name": "set10/V001/I03779", "height": 512, "width": 640 }, { "id": 2054, "im_name": "set10/V001/I03799", "height": 512, "width": 640 }, { "id": 2055, "im_name": "set10/V001/I03819", "height": 512, "width": 640 }, { "id": 2056, "im_name": "set10/V001/I03839", "height": 512, "width": 640 }, { "id": 2057, "im_name": "set10/V001/I03859", "height": 512, "width": 640 }, { "id": 2058, "im_name": "set10/V001/I03879", "height": 512, "width": 640 }, { "id": 2059, "im_name": "set10/V001/I03899", "height": 512, "width": 640 }, { "id": 2060, "im_name": "set10/V001/I03919", "height": 512, "width": 640 }, { "id": 2061, "im_name": "set10/V001/I03939", "height": 512, "width": 640 }, { "id": 2062, "im_name": "set10/V001/I03959", "height": 512, "width": 640 }, { "id": 2063, "im_name": "set10/V001/I03979", "height": 512, "width": 640 }, { "id": 2064, "im_name": "set10/V001/I03999", "height": 512, "width": 640 }, { "id": 2065, "im_name": "set10/V001/I04019", "height": 512, "width": 640 }, { "id": 2066, "im_name": "set10/V001/I04039", "height": 512, "width": 640 }, { "id": 2067, "im_name": "set10/V001/I04059", "height": 512, "width": 640 }, { "id": 2068, "im_name": "set10/V001/I04079", "height": 512, "width": 640 }, { "id": 2069, "im_name": "set10/V001/I04099", "height": 512, "width": 640 }, { "id": 2070, "im_name": "set10/V001/I04119", "height": 512, "width": 640 }, { "id": 2071, "im_name": "set10/V001/I04139", "height": 512, "width": 640 }, { "id": 2072, "im_name": "set10/V001/I04159", "height": 512, "width": 640 }, { "id": 2073, "im_name": "set10/V001/I04179", "height": 512, "width": 640 }, { "id": 2074, "im_name": "set11/V000/I00019", "height": 512, "width": 640 }, { "id": 2075, "im_name": "set11/V000/I00039", "height": 512, "width": 640 }, { "id": 2076, "im_name": "set11/V000/I00059", "height": 512, "width": 640 }, { "id": 2077, "im_name": "set11/V000/I00079", "height": 512, "width": 640 }, { "id": 2078, "im_name": "set11/V000/I00099", "height": 512, "width": 640 }, { "id": 2079, "im_name": "set11/V000/I00119", "height": 512, "width": 640 }, { "id": 2080, "im_name": "set11/V000/I00139", "height": 512, "width": 640 }, { "id": 2081, "im_name": "set11/V000/I00159", "height": 512, "width": 640 }, { "id": 2082, "im_name": "set11/V000/I00179", "height": 512, "width": 640 }, { "id": 2083, "im_name": "set11/V000/I00199", "height": 512, "width": 640 }, { "id": 2084, "im_name": "set11/V000/I00219", "height": 512, "width": 640 }, { "id": 2085, "im_name": "set11/V000/I00239", "height": 512, "width": 640 }, { "id": 2086, "im_name": "set11/V000/I00259", "height": 512, "width": 640 }, { "id": 2087, "im_name": "set11/V000/I00279", "height": 512, "width": 640 }, { "id": 2088, "im_name": "set11/V000/I00299", "height": 512, "width": 640 }, { "id": 2089, "im_name": "set11/V000/I00319", "height": 512, "width": 640 }, { "id": 2090, "im_name": "set11/V000/I00339", "height": 512, "width": 640 }, { "id": 2091, "im_name": "set11/V000/I00359", "height": 512, "width": 640 }, { "id": 2092, "im_name": "set11/V000/I00379", "height": 512, "width": 640 }, { "id": 2093, "im_name": "set11/V000/I00399", "height": 512, "width": 640 }, { "id": 2094, "im_name": "set11/V000/I00419", "height": 512, "width": 640 }, { "id": 2095, "im_name": "set11/V000/I00439", "height": 512, "width": 640 }, { "id": 2096, "im_name": "set11/V000/I00459", "height": 512, "width": 640 }, { "id": 2097, "im_name": "set11/V000/I00479", "height": 512, "width": 640 }, { "id": 2098, "im_name": "set11/V000/I00499", "height": 512, "width": 640 }, { "id": 2099, "im_name": "set11/V000/I00519", "height": 512, "width": 640 }, { "id": 2100, "im_name": "set11/V000/I00539", "height": 512, "width": 640 }, { "id": 2101, "im_name": "set11/V000/I00559", "height": 512, "width": 640 }, { "id": 2102, "im_name": "set11/V000/I00579", "height": 512, "width": 640 }, { "id": 2103, "im_name": "set11/V000/I00599", "height": 512, "width": 640 }, { "id": 2104, "im_name": "set11/V000/I00619", "height": 512, "width": 640 }, { "id": 2105, "im_name": "set11/V000/I00639", "height": 512, "width": 640 }, { "id": 2106, "im_name": "set11/V000/I00659", "height": 512, "width": 640 }, { "id": 2107, "im_name": "set11/V000/I00679", "height": 512, "width": 640 }, { "id": 2108, "im_name": "set11/V000/I00699", "height": 512, "width": 640 }, { "id": 2109, "im_name": "set11/V000/I00719", "height": 512, "width": 640 }, { "id": 2110, "im_name": "set11/V000/I00739", "height": 512, "width": 640 }, { "id": 2111, "im_name": "set11/V000/I00759", "height": 512, "width": 640 }, { "id": 2112, "im_name": "set11/V000/I00779", "height": 512, "width": 640 }, { "id": 2113, "im_name": "set11/V000/I00799", "height": 512, "width": 640 }, { "id": 2114, "im_name": "set11/V000/I00819", "height": 512, "width": 640 }, { "id": 2115, "im_name": "set11/V000/I00839", "height": 512, "width": 640 }, { "id": 2116, "im_name": "set11/V000/I00859", "height": 512, "width": 640 }, { "id": 2117, "im_name": "set11/V000/I00879", "height": 512, "width": 640 }, { "id": 2118, "im_name": "set11/V000/I00899", "height": 512, "width": 640 }, { "id": 2119, "im_name": "set11/V000/I00919", "height": 512, "width": 640 }, { "id": 2120, "im_name": "set11/V000/I00939", "height": 512, "width": 640 }, { "id": 2121, "im_name": "set11/V000/I00959", "height": 512, "width": 640 }, { "id": 2122, "im_name": "set11/V000/I00979", "height": 512, "width": 640 }, { "id": 2123, "im_name": "set11/V000/I00999", "height": 512, "width": 640 }, { "id": 2124, "im_name": "set11/V000/I01019", "height": 512, "width": 640 }, { "id": 2125, "im_name": "set11/V000/I01039", "height": 512, "width": 640 }, { "id": 2126, "im_name": "set11/V000/I01059", "height": 512, "width": 640 }, { "id": 2127, "im_name": "set11/V000/I01079", "height": 512, "width": 640 }, { "id": 2128, "im_name": "set11/V000/I01099", "height": 512, "width": 640 }, { "id": 2129, "im_name": "set11/V000/I01119", "height": 512, "width": 640 }, { "id": 2130, "im_name": "set11/V000/I01139", "height": 512, "width": 640 }, { "id": 2131, "im_name": "set11/V000/I01159", "height": 512, "width": 640 }, { "id": 2132, "im_name": "set11/V000/I01179", "height": 512, "width": 640 }, { "id": 2133, "im_name": "set11/V000/I01199", "height": 512, "width": 640 }, { "id": 2134, "im_name": "set11/V000/I01219", "height": 512, "width": 640 }, { "id": 2135, "im_name": "set11/V000/I01239", "height": 512, "width": 640 }, { "id": 2136, "im_name": "set11/V000/I01259", "height": 512, "width": 640 }, { "id": 2137, "im_name": "set11/V000/I01279", "height": 512, "width": 640 }, { "id": 2138, "im_name": "set11/V000/I01299", "height": 512, "width": 640 }, { "id": 2139, "im_name": "set11/V000/I01319", "height": 512, "width": 640 }, { "id": 2140, "im_name": "set11/V000/I01339", "height": 512, "width": 640 }, { "id": 2141, "im_name": "set11/V000/I01359", "height": 512, "width": 640 }, { "id": 2142, "im_name": "set11/V000/I01379", "height": 512, "width": 640 }, { "id": 2143, "im_name": "set11/V000/I01399", "height": 512, "width": 640 }, { "id": 2144, "im_name": "set11/V000/I01419", "height": 512, "width": 640 }, { "id": 2145, "im_name": "set11/V000/I01439", "height": 512, "width": 640 }, { "id": 2146, "im_name": "set11/V000/I01459", "height": 512, "width": 640 }, { "id": 2147, "im_name": "set11/V000/I01479", "height": 512, "width": 640 }, { "id": 2148, "im_name": "set11/V000/I01499", "height": 512, "width": 640 }, { "id": 2149, "im_name": "set11/V000/I01519", "height": 512, "width": 640 }, { "id": 2150, "im_name": "set11/V000/I01539", "height": 512, "width": 640 }, { "id": 2151, "im_name": "set11/V000/I01559", "height": 512, "width": 640 }, { "id": 2152, "im_name": "set11/V000/I01579", "height": 512, "width": 640 }, { "id": 2153, "im_name": "set11/V000/I01599", "height": 512, "width": 640 }, { "id": 2154, "im_name": "set11/V000/I01619", "height": 512, "width": 640 }, { "id": 2155, "im_name": "set11/V000/I01639", "height": 512, "width": 640 }, { "id": 2156, "im_name": "set11/V000/I01659", "height": 512, "width": 640 }, { "id": 2157, "im_name": "set11/V000/I01679", "height": 512, "width": 640 }, { "id": 2158, "im_name": "set11/V000/I01699", "height": 512, "width": 640 }, { "id": 2159, "im_name": "set11/V000/I01719", "height": 512, "width": 640 }, { "id": 2160, "im_name": "set11/V000/I01739", "height": 512, "width": 640 }, { "id": 2161, "im_name": "set11/V000/I01759", "height": 512, "width": 640 }, { "id": 2162, "im_name": "set11/V000/I01779", "height": 512, "width": 640 }, { "id": 2163, "im_name": "set11/V000/I01799", "height": 512, "width": 640 }, { "id": 2164, "im_name": "set11/V000/I01819", "height": 512, "width": 640 }, { "id": 2165, "im_name": "set11/V000/I01839", "height": 512, "width": 640 }, { "id": 2166, "im_name": "set11/V000/I01859", "height": 512, "width": 640 }, { "id": 2167, "im_name": "set11/V000/I01879", "height": 512, "width": 640 }, { "id": 2168, "im_name": "set11/V000/I01899", "height": 512, "width": 640 }, { "id": 2169, "im_name": "set11/V000/I01919", "height": 512, "width": 640 }, { "id": 2170, "im_name": "set11/V000/I01939", "height": 512, "width": 640 }, { "id": 2171, "im_name": "set11/V000/I01959", "height": 512, "width": 640 }, { "id": 2172, "im_name": "set11/V000/I01979", "height": 512, "width": 640 }, { "id": 2173, "im_name": "set11/V000/I01999", "height": 512, "width": 640 }, { "id": 2174, "im_name": "set11/V000/I02019", "height": 512, "width": 640 }, { "id": 2175, "im_name": "set11/V001/I00019", "height": 512, "width": 640 }, { "id": 2176, "im_name": "set11/V001/I00039", "height": 512, "width": 640 }, { "id": 2177, "im_name": "set11/V001/I00059", "height": 512, "width": 640 }, { "id": 2178, "im_name": "set11/V001/I00079", "height": 512, "width": 640 }, { "id": 2179, "im_name": "set11/V001/I00099", "height": 512, "width": 640 }, { "id": 2180, "im_name": "set11/V001/I00119", "height": 512, "width": 640 }, { "id": 2181, "im_name": "set11/V001/I00139", "height": 512, "width": 640 }, { "id": 2182, "im_name": "set11/V001/I00159", "height": 512, "width": 640 }, { "id": 2183, "im_name": "set11/V001/I00179", "height": 512, "width": 640 }, { "id": 2184, "im_name": "set11/V001/I00199", "height": 512, "width": 640 }, { "id": 2185, "im_name": "set11/V001/I00219", "height": 512, "width": 640 }, { "id": 2186, "im_name": "set11/V001/I00239", "height": 512, "width": 640 }, { "id": 2187, "im_name": "set11/V001/I00259", "height": 512, "width": 640 }, { "id": 2188, "im_name": "set11/V001/I00279", "height": 512, "width": 640 }, { "id": 2189, "im_name": "set11/V001/I00299", "height": 512, "width": 640 }, { "id": 2190, "im_name": "set11/V001/I00319", "height": 512, "width": 640 }, { "id": 2191, "im_name": "set11/V001/I00339", "height": 512, "width": 640 }, { "id": 2192, "im_name": "set11/V001/I00359", "height": 512, "width": 640 }, { "id": 2193, "im_name": "set11/V001/I00379", "height": 512, "width": 640 }, { "id": 2194, "im_name": "set11/V001/I00399", "height": 512, "width": 640 }, { "id": 2195, "im_name": "set11/V001/I00419", "height": 512, "width": 640 }, { "id": 2196, "im_name": "set11/V001/I00439", "height": 512, "width": 640 }, { "id": 2197, "im_name": "set11/V001/I00459", "height": 512, "width": 640 }, { "id": 2198, "im_name": "set11/V001/I00479", "height": 512, "width": 640 }, { "id": 2199, "im_name": "set11/V001/I00499", "height": 512, "width": 640 }, { "id": 2200, "im_name": "set11/V001/I00519", "height": 512, "width": 640 }, { "id": 2201, "im_name": "set11/V001/I00539", "height": 512, "width": 640 }, { "id": 2202, "im_name": "set11/V001/I00559", "height": 512, "width": 640 }, { "id": 2203, "im_name": "set11/V001/I00579", "height": 512, "width": 640 }, { "id": 2204, "im_name": "set11/V001/I00599", "height": 512, "width": 640 }, { "id": 2205, "im_name": "set11/V001/I00619", "height": 512, "width": 640 }, { "id": 2206, "im_name": "set11/V001/I00639", "height": 512, "width": 640 }, { "id": 2207, "im_name": "set11/V001/I00659", "height": 512, "width": 640 }, { "id": 2208, "im_name": "set11/V001/I00679", "height": 512, "width": 640 }, { "id": 2209, "im_name": "set11/V001/I00699", "height": 512, "width": 640 }, { "id": 2210, "im_name": "set11/V001/I00719", "height": 512, "width": 640 }, { "id": 2211, "im_name": "set11/V001/I00739", "height": 512, "width": 640 }, { "id": 2212, "im_name": "set11/V001/I00759", "height": 512, "width": 640 }, { "id": 2213, "im_name": "set11/V001/I00779", "height": 512, "width": 640 }, { "id": 2214, "im_name": "set11/V001/I00799", "height": 512, "width": 640 }, { "id": 2215, "im_name": "set11/V001/I00819", "height": 512, "width": 640 }, { "id": 2216, "im_name": "set11/V001/I00839", "height": 512, "width": 640 }, { "id": 2217, "im_name": "set11/V001/I00859", "height": 512, "width": 640 }, { "id": 2218, "im_name": "set11/V001/I00879", "height": 512, "width": 640 }, { "id": 2219, "im_name": "set11/V001/I00899", "height": 512, "width": 640 }, { "id": 2220, "im_name": "set11/V001/I00919", "height": 512, "width": 640 }, { "id": 2221, "im_name": "set11/V001/I00939", "height": 512, "width": 640 }, { "id": 2222, "im_name": "set11/V001/I00959", "height": 512, "width": 640 }, { "id": 2223, "im_name": "set11/V001/I00979", "height": 512, "width": 640 }, { "id": 2224, "im_name": "set11/V001/I00999", "height": 512, "width": 640 }, { "id": 2225, "im_name": "set11/V001/I01019", "height": 512, "width": 640 }, { "id": 2226, "im_name": "set11/V001/I01039", "height": 512, "width": 640 }, { "id": 2227, "im_name": "set11/V001/I01059", "height": 512, "width": 640 }, { "id": 2228, "im_name": "set11/V001/I01079", "height": 512, "width": 640 }, { "id": 2229, "im_name": "set11/V001/I01099", "height": 512, "width": 640 }, { "id": 2230, "im_name": "set11/V001/I01119", "height": 512, "width": 640 }, { "id": 2231, "im_name": "set11/V001/I01139", "height": 512, "width": 640 }, { "id": 2232, "im_name": "set11/V001/I01159", "height": 512, "width": 640 }, { "id": 2233, "im_name": "set11/V001/I01179", "height": 512, "width": 640 }, { "id": 2234, "im_name": "set11/V001/I01199", "height": 512, "width": 640 }, { "id": 2235, "im_name": "set11/V001/I01219", "height": 512, "width": 640 }, { "id": 2236, "im_name": "set11/V001/I01239", "height": 512, "width": 640 }, { "id": 2237, "im_name": "set11/V001/I01259", "height": 512, "width": 640 }, { "id": 2238, "im_name": "set11/V001/I01279", "height": 512, "width": 640 }, { "id": 2239, "im_name": "set11/V001/I01299", "height": 512, "width": 640 }, { "id": 2240, "im_name": "set11/V001/I01319", "height": 512, "width": 640 }, { "id": 2241, "im_name": "set11/V001/I01339", "height": 512, "width": 640 }, { "id": 2242, "im_name": "set11/V001/I01359", "height": 512, "width": 640 }, { "id": 2243, "im_name": "set11/V001/I01379", "height": 512, "width": 640 }, { "id": 2244, "im_name": "set11/V001/I01399", "height": 512, "width": 640 }, { "id": 2245, "im_name": "set11/V001/I01419", "height": 512, "width": 640 }, { "id": 2246, "im_name": "set11/V001/I01439", "height": 512, "width": 640 }, { "id": 2247, "im_name": "set11/V001/I01459", "height": 512, "width": 640 }, { "id": 2248, "im_name": "set11/V001/I01479", "height": 512, "width": 640 }, { "id": 2249, "im_name": "set11/V001/I01499", "height": 512, "width": 640 }, { "id": 2250, "im_name": "set11/V001/I01519", "height": 512, "width": 640 }, { "id": 2251, "im_name": "set11/V001/I01539", "height": 512, "width": 640 } ], "annotations": [ { "id": 0, "image_id": 0, "category_id": 1, "bbox": [ 505, 212, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1, "image_id": 1, "category_id": 1, "bbox": [ 530, 226, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2, "image_id": 2, "category_id": 1, "bbox": [ 565, 234, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 3, "image_id": 11, "category_id": 1, "bbox": [ 433, 217, 20, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 4, "image_id": 12, "category_id": 1, "bbox": [ 460, 218, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 5, "image_id": 12, "category_id": 1, "bbox": [ 72, 202, 33, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 6, "image_id": 13, "category_id": 1, "bbox": [ 492, 215, 20, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 7, "image_id": 16, "category_id": 1, "bbox": [ 459, 207, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 8, "image_id": 16, "category_id": 1, "bbox": [ 444, 209, 19, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 9, "image_id": 17, "category_id": 1, "bbox": [ 465, 217, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 10, "image_id": 17, "category_id": 1, "bbox": [ 451, 214, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 11, "image_id": 18, "category_id": 1, "bbox": [ 467, 224, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 12, "image_id": 18, "category_id": 1, "bbox": [ 482, 221, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 13, "image_id": 18, "category_id": 1, "bbox": [ 380, 216, 16, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 14, "image_id": 19, "category_id": 1, "bbox": [ 518, 217, 21, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 15, "image_id": 19, "category_id": 1, "bbox": [ 492, 220, 21, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 16, "image_id": 19, "category_id": 1, "bbox": [ 387, 215, 27, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 17, "image_id": 20, "category_id": 1, "bbox": [ 574, 216, 27, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 18, "image_id": 20, "category_id": 1, "bbox": [ 544, 217, 23, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 19, "image_id": 21, "category_id": 1, "bbox": [ 458, 217, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 20, "image_id": 21, "category_id": 1, "bbox": [ 440, 217, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 21, "image_id": 22, "category_id": 1, "bbox": [ 500, 215, 20, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 22, "image_id": 22, "category_id": 1, "bbox": [ 481, 217, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 23, "image_id": 22, "category_id": 1, "bbox": [ 524, 210, 27, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 24, "image_id": 23, "category_id": 1, "bbox": [ 568, 212, 26, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 25, "image_id": 23, "category_id": 1, "bbox": [ 547, 215, 22, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 26, "image_id": 24, "category_id": 1, "bbox": [ 327, 219, 19, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 27, "image_id": 25, "category_id": 1, "bbox": [ 316, 216, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 28, "image_id": 26, "category_id": 1, "bbox": [ 292, 217, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 29, "image_id": 27, "category_id": 1, "bbox": [ 250, 213, 27, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 30, "image_id": 28, "category_id": 1, "bbox": [ 189, 214, 32, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 31, "image_id": 29, "category_id": 1, "bbox": [ 91, 215, 40, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 32, "image_id": 32, "category_id": 1, "bbox": [ 461, 212, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 33, "image_id": 32, "category_id": 1, "bbox": [ 441, 213, 18, 41 ], "height": 41, "occlusion": 1, "ignore": 0 }, { "id": 34, "image_id": 32, "category_id": 1, "bbox": [ 365, 210, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 35, "image_id": 33, "category_id": 1, "bbox": [ 367, 212, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 36, "image_id": 33, "category_id": 1, "bbox": [ 470, 215, 21, 48 ], "height": 48, "occlusion": 2, "ignore": 0 }, { "id": 37, "image_id": 33, "category_id": 1, "bbox": [ 492, 216, 20, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 38, "image_id": 34, "category_id": 1, "bbox": [ 374, 210, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 39, "image_id": 34, "category_id": 1, "bbox": [ 555, 220, 26, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 40, "image_id": 34, "category_id": 1, "bbox": [ 525, 218, 31, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 41, "image_id": 35, "category_id": 1, "bbox": [ 397, 210, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 42, "image_id": 36, "category_id": 1, "bbox": [ 438, 217, 20, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 43, "image_id": 37, "category_id": 1, "bbox": [ 508, 225, 30, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 44, "image_id": 37, "category_id": 1, "bbox": [ 493, 224, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 45, "image_id": 38, "category_id": 1, "bbox": [ 573, 223, 24, 59 ], "height": 59, "occlusion": 2, "ignore": 0 }, { "id": 46, "image_id": 39, "category_id": 1, "bbox": [ 158, 216, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 47, "image_id": 40, "category_id": 1, "bbox": [ 119, 214, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 48, "image_id": 41, "category_id": 1, "bbox": [ 57, 214, 32, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 49, "image_id": 42, "category_id": 1, "bbox": [ 3, 221, 35, 70 ], "height": 70, "occlusion": 0, "ignore": 1 }, { "id": 50, "image_id": 43, "category_id": 1, "bbox": [ 408, 203, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 51, "image_id": 44, "category_id": 1, "bbox": [ 450, 205, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 52, "image_id": 45, "category_id": 1, "bbox": [ 481, 215, 20, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 53, "image_id": 45, "category_id": 1, "bbox": [ 497, 215, 24, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 54, "image_id": 46, "category_id": 1, "bbox": [ 534, 220, 29, 69 ], "height": 69, "occlusion": 1, "ignore": 1 }, { "id": 55, "image_id": 46, "category_id": 1, "bbox": [ 576, 217, 28, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 56, "image_id": 53, "category_id": 1, "bbox": [ 484, 211, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 57, "image_id": 54, "category_id": 1, "bbox": [ 557, 215, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 58, "image_id": 54, "category_id": 1, "bbox": [ 572, 223, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 59, "image_id": 54, "category_id": 1, "bbox": [ 391, 216, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 60, "image_id": 54, "category_id": 1, "bbox": [ 374, 217, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 61, "image_id": 55, "category_id": 1, "bbox": [ 422, 221, 21, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 62, "image_id": 55, "category_id": 1, "bbox": [ 401, 220, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 63, "image_id": 56, "category_id": 1, "bbox": [ 456, 228, 28, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 64, "image_id": 56, "category_id": 1, "bbox": [ 488, 226, 25, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 65, "image_id": 57, "category_id": 1, "bbox": [ 473, 212, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 66, "image_id": 57, "category_id": 1, "bbox": [ 385, 203, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 67, "image_id": 58, "category_id": 1, "bbox": [ 533, 212, 24, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 68, "image_id": 59, "category_id": 1, "bbox": [ 423, 198, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 69, "image_id": 60, "category_id": 1, "bbox": [ 467, 198, 25, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 70, "image_id": 61, "category_id": 1, "bbox": [ 527, 206, 31, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 71, "image_id": 62, "category_id": 1, "bbox": [ 602, 154, 37, 112 ], "height": 112, "occlusion": 0, "ignore": 0 }, { "id": 72, "image_id": 63, "category_id": 1, "bbox": [ 377, 208, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 73, "image_id": 63, "category_id": 1, "bbox": [ 406, 208, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 74, "image_id": 63, "category_id": 1, "bbox": [ 397, 211, 12, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 75, "image_id": 64, "category_id": 1, "bbox": [ 382, 207, 17, 34 ], "height": 34, "occlusion": 1, "ignore": 0 }, { "id": 76, "image_id": 64, "category_id": 1, "bbox": [ 401, 209, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 77, "image_id": 64, "category_id": 1, "bbox": [ 415, 205, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 78, "image_id": 65, "category_id": 1, "bbox": [ 379, 211, 23, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 79, "image_id": 65, "category_id": 1, "bbox": [ 399, 210, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 80, "image_id": 65, "category_id": 1, "bbox": [ 419, 210, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 81, "image_id": 66, "category_id": 1, "bbox": [ 375, 211, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 82, "image_id": 66, "category_id": 1, "bbox": [ 398, 210, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 83, "image_id": 67, "category_id": 1, "bbox": [ 350, 217, 21, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 84, "image_id": 67, "category_id": 1, "bbox": [ 365, 212, 21, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 85, "image_id": 67, "category_id": 1, "bbox": [ 316, 216, 26, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 86, "image_id": 68, "category_id": 1, "bbox": [ 342, 212, 22, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 87, "image_id": 68, "category_id": 1, "bbox": [ 396, 214, 20, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 88, "image_id": 69, "category_id": 1, "bbox": [ 440, 208, 26, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 89, "image_id": 69, "category_id": 1, "bbox": [ 415, 213, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 90, "image_id": 69, "category_id": 1, "bbox": [ 391, 214, 23, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 91, "image_id": 70, "category_id": 1, "bbox": [ 457, 216, 25, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 92, "image_id": 70, "category_id": 1, "bbox": [ 483, 209, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 93, "image_id": 71, "category_id": 1, "bbox": [ 517, 210, 24, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 94, "image_id": 71, "category_id": 1, "bbox": [ 488, 221, 21, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 95, "image_id": 72, "category_id": 1, "bbox": [ 538, 220, 21, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 96, "image_id": 73, "category_id": 1, "bbox": [ 574, 227, 25, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 97, "image_id": 73, "category_id": 1, "bbox": [ 598, 225, 22, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 98, "image_id": 74, "category_id": 1, "bbox": [ 519, 226, 28, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 99, "image_id": 74, "category_id": 1, "bbox": [ 592, 235, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 100, "image_id": 74, "category_id": 1, "bbox": [ 541, 231, 23, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 101, "image_id": 75, "category_id": 1, "bbox": [ 553, 223, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 102, "image_id": 75, "category_id": 1, "bbox": [ 526, 221, 28, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 103, "image_id": 75, "category_id": 1, "bbox": [ 506, 224, 27, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 104, "image_id": 76, "category_id": 1, "bbox": [ 582, 226, 35, 78 ], "height": 78, "occlusion": 1, "ignore": 0 }, { "id": 105, "image_id": 76, "category_id": 1, "bbox": [ 450, 231, 16, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 106, "image_id": 77, "category_id": 1, "bbox": [ 579, 228, 46, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 107, "image_id": 77, "category_id": 1, "bbox": [ 612, 235, 29, 87 ], "height": 87, "occlusion": 2, "ignore": 0 }, { "id": 108, "image_id": 77, "category_id": 1, "bbox": [ 464, 224, 16, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 109, "image_id": 78, "category_id": 1, "bbox": [ 479, 220, 23, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 110, "image_id": 79, "category_id": 1, "bbox": [ 509, 214, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 111, "image_id": 80, "category_id": 1, "bbox": [ 576, 219, 29, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 112, "image_id": 80, "category_id": 1, "bbox": [ 51, 204, 47, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 113, "image_id": 81, "category_id": 1, "bbox": [ 7, 195, 56, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 114, "image_id": 81, "category_id": 1, "bbox": [ 387, 204, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 115, "image_id": 82, "category_id": 1, "bbox": [ 419, 202, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 116, "image_id": 82, "category_id": 1, "bbox": [ 399, 200, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 117, "image_id": 83, "category_id": 1, "bbox": [ 419, 233, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 118, "image_id": 83, "category_id": 1, "bbox": [ 439, 235, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 119, "image_id": 84, "category_id": 1, "bbox": [ 442, 205, 26, 59 ], "height": 59, "occlusion": 2, "ignore": 0 }, { "id": 120, "image_id": 84, "category_id": 1, "bbox": [ 469, 213, 22, 53 ], "height": 53, "occlusion": 2, "ignore": 0 }, { "id": 121, "image_id": 85, "category_id": 1, "bbox": [ 480, 209, 27, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 122, "image_id": 85, "category_id": 1, "bbox": [ 507, 210, 28, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 123, "image_id": 85, "category_id": 1, "bbox": [ 347, 211, 27, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 124, "image_id": 86, "category_id": 1, "bbox": [ 553, 208, 39, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 125, "image_id": 86, "category_id": 1, "bbox": [ 589, 208, 41, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 126, "image_id": 86, "category_id": 1, "bbox": [ 359, 215, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 127, "image_id": 87, "category_id": 1, "bbox": [ 382, 219, 17, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 128, "image_id": 88, "category_id": 1, "bbox": [ 404, 216, 20, 38 ], "height": 38, "occlusion": 2, "ignore": 0 }, { "id": 129, "image_id": 90, "category_id": 1, "bbox": [ 470, 221, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 130, "image_id": 90, "category_id": 1, "bbox": [ 335, 203, 42, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 131, "image_id": 90, "category_id": 1, "bbox": [ 298, 201, 18, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 132, "image_id": 90, "category_id": 1, "bbox": [ 209, 203, 14, 21 ], "height": 21, "occlusion": 0, "ignore": 1 }, { "id": 133, "image_id": 90, "category_id": 1, "bbox": [ 442, 221, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 134, "image_id": 90, "category_id": 1, "bbox": [ 453, 219, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 135, "image_id": 91, "category_id": 1, "bbox": [ 511, 215, 33, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 136, "image_id": 91, "category_id": 1, "bbox": [ 474, 217, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 137, "image_id": 91, "category_id": 1, "bbox": [ 549, 218, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 138, "image_id": 91, "category_id": 1, "bbox": [ 349, 198, 42, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 139, "image_id": 91, "category_id": 1, "bbox": [ 303, 195, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 140, "image_id": 92, "category_id": 1, "bbox": [ 575, 217, 37, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 141, "image_id": 92, "category_id": 1, "bbox": [ 607, 223, 21, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 142, "image_id": 92, "category_id": 1, "bbox": [ 552, 223, 17, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 143, "image_id": 92, "category_id": 1, "bbox": [ 353, 200, 44, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 144, "image_id": 92, "category_id": 1, "bbox": [ 305, 196, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 145, "image_id": 92, "category_id": 1, "bbox": [ 190, 180, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 1 }, { "id": 146, "image_id": 93, "category_id": 1, "bbox": [ 541, 215, 31, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 147, "image_id": 93, "category_id": 1, "bbox": [ 561, 219, 32, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 148, "image_id": 93, "category_id": 1, "bbox": [ 385, 201, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 149, "image_id": 93, "category_id": 1, "bbox": [ 360, 202, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 150, "image_id": 93, "category_id": 1, "bbox": [ 371, 199, 16, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 151, "image_id": 93, "category_id": 1, "bbox": [ 305, 191, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 152, "image_id": 93, "category_id": 1, "bbox": [ 172, 169, 20, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 153, "image_id": 94, "category_id": 1, "bbox": [ 549, 216, 36, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 154, "image_id": 94, "category_id": 1, "bbox": [ 579, 218, 33, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 155, "image_id": 94, "category_id": 1, "bbox": [ 611, 229, 29, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 156, "image_id": 94, "category_id": 1, "bbox": [ 335, 201, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 157, "image_id": 94, "category_id": 1, "bbox": [ 347, 198, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 158, "image_id": 94, "category_id": 1, "bbox": [ 362, 198, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 159, "image_id": 94, "category_id": 1, "bbox": [ 274, 188, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 160, "image_id": 94, "category_id": 1, "bbox": [ 118, 157, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 161, "image_id": 94, "category_id": 1, "bbox": [ 431, 220, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 162, "image_id": 95, "category_id": 1, "bbox": [ 516, 213, 46, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 163, "image_id": 95, "category_id": 1, "bbox": [ 550, 215, 35, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 164, "image_id": 95, "category_id": 1, "bbox": [ 198, 186, 27, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 165, "image_id": 95, "category_id": 1, "bbox": [ 259, 202, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 166, "image_id": 95, "category_id": 1, "bbox": [ 297, 203, 29, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 167, "image_id": 95, "category_id": 1, "bbox": [ 279, 202, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 168, "image_id": 95, "category_id": 1, "bbox": [ 586, 222, 32, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 169, "image_id": 95, "category_id": 1, "bbox": [ 16, 144, 39, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 170, "image_id": 95, "category_id": 1, "bbox": [ 378, 219, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 171, "image_id": 96, "category_id": 1, "bbox": [ 440, 213, 45, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 172, "image_id": 96, "category_id": 1, "bbox": [ 473, 213, 37, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 173, "image_id": 96, "category_id": 1, "bbox": [ 101, 189, 31, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 174, "image_id": 96, "category_id": 1, "bbox": [ 176, 212, 32, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 175, "image_id": 96, "category_id": 1, "bbox": [ 216, 209, 32, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 176, "image_id": 96, "category_id": 1, "bbox": [ 194, 209, 29, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 177, "image_id": 96, "category_id": 1, "bbox": [ 528, 220, 29, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 178, "image_id": 96, "category_id": 1, "bbox": [ 301, 216, 25, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 179, "image_id": 96, "category_id": 1, "bbox": [ 600, 210, 26, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 180, "image_id": 97, "category_id": 1, "bbox": [ 346, 212, 55, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 181, "image_id": 97, "category_id": 1, "bbox": [ 392, 215, 40, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 182, "image_id": 97, "category_id": 1, "bbox": [ 12, 190, 40, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 183, "image_id": 97, "category_id": 1, "bbox": [ 102, 214, 36, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 184, "image_id": 97, "category_id": 1, "bbox": [ 149, 213, 33, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 185, "image_id": 97, "category_id": 1, "bbox": [ 123, 216, 30, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 186, "image_id": 97, "category_id": 1, "bbox": [ 464, 221, 35, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 187, "image_id": 97, "category_id": 1, "bbox": [ 215, 217, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 188, "image_id": 97, "category_id": 1, "bbox": [ 550, 205, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 189, "image_id": 98, "category_id": 1, "bbox": [ 282, 209, 52, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 190, "image_id": 98, "category_id": 1, "bbox": [ 331, 213, 43, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 191, "image_id": 98, "category_id": 1, "bbox": [ 54, 211, 30, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 192, "image_id": 98, "category_id": 1, "bbox": [ 106, 212, 33, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 193, "image_id": 98, "category_id": 1, "bbox": [ 78, 213, 28, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 194, "image_id": 98, "category_id": 1, "bbox": [ 587, 232, 49, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 195, "image_id": 98, "category_id": 1, "bbox": [ 421, 222, 30, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 196, "image_id": 98, "category_id": 1, "bbox": [ 163, 215, 31, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 197, "image_id": 99, "category_id": 1, "bbox": [ 256, 211, 42, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 198, "image_id": 99, "category_id": 1, "bbox": [ 286, 211, 45, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 199, "image_id": 99, "category_id": 1, "bbox": [ 48, 206, 38, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 200, "image_id": 99, "category_id": 1, "bbox": [ 106, 212, 33, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 201, "image_id": 99, "category_id": 1, "bbox": [ 74, 207, 35, 86 ], "height": 86, "occlusion": 0, "ignore": 0 }, { "id": 202, "image_id": 99, "category_id": 1, "bbox": [ 535, 230, 46, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 203, "image_id": 99, "category_id": 1, "bbox": [ 403, 223, 29, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 204, "image_id": 99, "category_id": 1, "bbox": [ 140, 222, 31, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 205, "image_id": 100, "category_id": 1, "bbox": [ 238, 219, 40, 96 ], "height": 96, "occlusion": 0, "ignore": 0 }, { "id": 206, "image_id": 100, "category_id": 1, "bbox": [ 269, 217, 39, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 207, "image_id": 100, "category_id": 1, "bbox": [ 66, 212, 39, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 208, "image_id": 100, "category_id": 1, "bbox": [ 128, 219, 35, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 209, "image_id": 100, "category_id": 1, "bbox": [ 91, 213, 32, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 210, "image_id": 100, "category_id": 1, "bbox": [ 501, 225, 43, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 211, "image_id": 100, "category_id": 1, "bbox": [ 403, 217, 36, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 212, "image_id": 100, "category_id": 1, "bbox": [ 142, 224, 29, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 213, "image_id": 100, "category_id": 1, "bbox": [ 468, 208, 30, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 214, "image_id": 101, "category_id": 1, "bbox": [ 215, 220, 45, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 215, "image_id": 101, "category_id": 1, "bbox": [ 246, 213, 41, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 216, "image_id": 101, "category_id": 1, "bbox": [ 84, 214, 41, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 217, "image_id": 101, "category_id": 1, "bbox": [ 147, 214, 35, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 218, "image_id": 101, "category_id": 1, "bbox": [ 110, 209, 36, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 219, "image_id": 101, "category_id": 1, "bbox": [ 538, 235, 58, 186 ], "height": 186, "occlusion": 0, "ignore": 0 }, { "id": 220, "image_id": 101, "category_id": 1, "bbox": [ 475, 219, 42, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 221, "image_id": 101, "category_id": 1, "bbox": [ 420, 218, 35, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 222, "image_id": 101, "category_id": 1, "bbox": [ 140, 225, 33, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 223, "image_id": 101, "category_id": 1, "bbox": [ 454, 206, 26, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 224, "image_id": 102, "category_id": 1, "bbox": [ 211, 213, 39, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 225, "image_id": 102, "category_id": 1, "bbox": [ 194, 220, 36, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 226, "image_id": 102, "category_id": 1, "bbox": [ 103, 213, 40, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 227, "image_id": 102, "category_id": 1, "bbox": [ 164, 220, 35, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 228, "image_id": 102, "category_id": 1, "bbox": [ 125, 214, 35, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 229, "image_id": 102, "category_id": 1, "bbox": [ 464, 240, 62, 164 ], "height": 164, "occlusion": 0, "ignore": 0 }, { "id": 230, "image_id": 102, "category_id": 1, "bbox": [ 445, 229, 34, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 231, "image_id": 102, "category_id": 1, "bbox": [ 433, 220, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 232, "image_id": 103, "category_id": 1, "bbox": [ 92, 218, 50, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 233, "image_id": 103, "category_id": 1, "bbox": [ 150, 214, 39, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 234, "image_id": 103, "category_id": 1, "bbox": [ 117, 212, 40, 115 ], "height": 115, "occlusion": 0, "ignore": 0 }, { "id": 235, "image_id": 103, "category_id": 1, "bbox": [ 401, 234, 60, 161 ], "height": 161, "occlusion": 0, "ignore": 0 }, { "id": 236, "image_id": 103, "category_id": 1, "bbox": [ 398, 226, 37, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 237, "image_id": 104, "category_id": 1, "bbox": [ 19, 213, 51, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 238, "image_id": 104, "category_id": 1, "bbox": [ 108, 210, 46, 122 ], "height": 122, "occlusion": 0, "ignore": 0 }, { "id": 239, "image_id": 104, "category_id": 1, "bbox": [ 65, 211, 55, 124 ], "height": 124, "occlusion": 0, "ignore": 0 }, { "id": 240, "image_id": 104, "category_id": 1, "bbox": [ 305, 225, 72, 171 ], "height": 171, "occlusion": 0, "ignore": 0 }, { "id": 241, "image_id": 104, "category_id": 1, "bbox": [ 338, 214, 35, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 242, "image_id": 104, "category_id": 1, "bbox": [ 2, 212, 44, 83 ], "height": 83, "occlusion": 0, "ignore": 1 }, { "id": 243, "image_id": 104, "category_id": 1, "bbox": [ 383, 212, 33, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 244, "image_id": 105, "category_id": 1, "bbox": [ 127, 229, 80, 174 ], "height": 174, "occlusion": 0, "ignore": 0 }, { "id": 245, "image_id": 105, "category_id": 1, "bbox": [ 158, 227, 55, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 246, "image_id": 105, "category_id": 1, "bbox": [ 215, 220, 30, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 247, "image_id": 105, "category_id": 1, "bbox": [ 268, 215, 38, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 248, "image_id": 106, "category_id": 1, "bbox": [ 17, 215, 37, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 249, "image_id": 106, "category_id": 1, "bbox": [ 127, 216, 30, 52 ], "height": 52, "occlusion": 2, "ignore": 0 }, { "id": 250, "image_id": 107, "category_id": 1, "bbox": [ 9, 207, 56, 95 ], "height": 95, "occlusion": 0, "ignore": 1 }, { "id": 251, "image_id": 152, "category_id": 1, "bbox": [ 403, 250, 30, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 252, "image_id": 153, "category_id": 1, "bbox": [ 305, 254, 35, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 253, "image_id": 154, "category_id": 1, "bbox": [ 163, 256, 40, 63 ], "height": 63, "occlusion": 0, "ignore": 1 }, { "id": 254, "image_id": 204, "category_id": 1, "bbox": [ 254, 204, 32, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 255, "image_id": 205, "category_id": 1, "bbox": [ 470, 195, 31, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 256, "image_id": 206, "category_id": 1, "bbox": [ 550, 195, 24, 40 ], "height": 40, "occlusion": 1, "ignore": 0 }, { "id": 257, "image_id": 207, "category_id": 1, "bbox": [ 537, 198, 28, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 258, "image_id": 208, "category_id": 1, "bbox": [ 518, 208, 29, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 259, "image_id": 209, "category_id": 1, "bbox": [ 531, 225, 36, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 260, "image_id": 217, "category_id": 1, "bbox": [ 416, 216, 24, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 261, "image_id": 217, "category_id": 1, "bbox": [ 431, 214, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 262, "image_id": 218, "category_id": 1, "bbox": [ 451, 220, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 263, "image_id": 218, "category_id": 1, "bbox": [ 472, 220, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 264, "image_id": 219, "category_id": 1, "bbox": [ 535, 217, 35, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 265, "image_id": 219, "category_id": 1, "bbox": [ 510, 222, 35, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 266, "image_id": 227, "category_id": 1, "bbox": [ 179, 219, 35, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 267, "image_id": 228, "category_id": 1, "bbox": [ 58, 196, 61, 97 ], "height": 97, "occlusion": 0, "ignore": 1 }, { "id": 268, "image_id": 228, "category_id": 1, "bbox": [ 357, 207, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 269, "image_id": 229, "category_id": 1, "bbox": [ 377, 246, 26, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 270, "image_id": 230, "category_id": 1, "bbox": [ 409, 246, 31, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 271, "image_id": 231, "category_id": 1, "bbox": [ 471, 244, 37, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 272, "image_id": 240, "category_id": 1, "bbox": [ 18, 192, 46, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 273, "image_id": 241, "category_id": 1, "bbox": [ 236, 207, 34, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 274, "image_id": 250, "category_id": 1, "bbox": [ 609, 236, 22, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 275, "image_id": 252, "category_id": 1, "bbox": [ 573, 216, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 276, "image_id": 253, "category_id": 1, "bbox": [ 571, 213, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 277, "image_id": 259, "category_id": 1, "bbox": [ 400, 220, 20, 34 ], "height": 34, "occlusion": 1, "ignore": 0 }, { "id": 278, "image_id": 259, "category_id": 1, "bbox": [ 414, 223, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 279, "image_id": 260, "category_id": 1, "bbox": [ 416, 225, 26, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 280, "image_id": 260, "category_id": 1, "bbox": [ 429, 226, 27, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 281, "image_id": 261, "category_id": 1, "bbox": [ 445, 235, 29, 48 ], "height": 48, "occlusion": 2, "ignore": 0 }, { "id": 282, "image_id": 261, "category_id": 1, "bbox": [ 463, 234, 31, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 283, "image_id": 262, "category_id": 1, "bbox": [ 496, 228, 36, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 284, "image_id": 262, "category_id": 1, "bbox": [ 522, 230, 33, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 285, "image_id": 262, "category_id": 1, "bbox": [ 512, 230, 30, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 286, "image_id": 263, "category_id": 1, "bbox": [ 603, 231, 38, 115 ], "height": 115, "occlusion": 0, "ignore": 0 }, { "id": 287, "image_id": 266, "category_id": 1, "bbox": [ 389, 221, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 288, "image_id": 267, "category_id": 1, "bbox": [ 433, 215, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 289, "image_id": 267, "category_id": 1, "bbox": [ 410, 214, 21, 44 ], "height": 44, "occlusion": 2, "ignore": 0 }, { "id": 290, "image_id": 268, "category_id": 1, "bbox": [ 421, 205, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 291, "image_id": 268, "category_id": 1, "bbox": [ 455, 204, 32, 59 ], "height": 59, "occlusion": 2, "ignore": 0 }, { "id": 292, "image_id": 269, "category_id": 1, "bbox": [ 493, 214, 33, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 293, "image_id": 269, "category_id": 1, "bbox": [ 358, 205, 25, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 294, "image_id": 270, "category_id": 1, "bbox": [ 500, 206, 40, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 295, "image_id": 270, "category_id": 1, "bbox": [ 557, 205, 38, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 296, "image_id": 270, "category_id": 1, "bbox": [ 370, 199, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 297, "image_id": 270, "category_id": 1, "bbox": [ 154, 203, 20, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 298, "image_id": 271, "category_id": 1, "bbox": [ 569, 226, 67, 143 ], "height": 143, "occlusion": 0, "ignore": 0 }, { "id": 299, "image_id": 271, "category_id": 1, "bbox": [ 388, 224, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 300, "image_id": 272, "category_id": 1, "bbox": [ 133, 214, 25, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 301, "image_id": 273, "category_id": 1, "bbox": [ 120, 209, 27, 61 ], "height": 61, "occlusion": 2, "ignore": 0 }, { "id": 302, "image_id": 274, "category_id": 1, "bbox": [ 105, 198, 35, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 303, "image_id": 274, "category_id": 1, "bbox": [ 493, 196, 39, 103 ], "height": 103, "occlusion": 1, "ignore": 0 }, { "id": 304, "image_id": 275, "category_id": 1, "bbox": [ 77, 195, 44, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 305, "image_id": 275, "category_id": 1, "bbox": [ 603, 204, 38, 154 ], "height": 154, "occlusion": 1, "ignore": 0 }, { "id": 306, "image_id": 275, "category_id": 1, "bbox": [ 528, 172, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 307, "image_id": 276, "category_id": 1, "bbox": [ 562, 194, 24, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 308, "image_id": 277, "category_id": 1, "bbox": [ 595, 189, 29, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 309, "image_id": 281, "category_id": 1, "bbox": [ 14, 210, 23, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 310, "image_id": 282, "category_id": 1, "bbox": [ 216, 210, 22, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 311, "image_id": 283, "category_id": 1, "bbox": [ 327, 204, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 312, "image_id": 284, "category_id": 1, "bbox": [ 394, 208, 27, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 313, "image_id": 284, "category_id": 1, "bbox": [ 455, 214, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 314, "image_id": 285, "category_id": 1, "bbox": [ 450, 218, 34, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 315, "image_id": 285, "category_id": 1, "bbox": [ 506, 216, 27, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 316, "image_id": 285, "category_id": 1, "bbox": [ 414, 216, 26, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 317, "image_id": 286, "category_id": 1, "bbox": [ 549, 217, 42, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 318, "image_id": 286, "category_id": 1, "bbox": [ 582, 212, 34, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 319, "image_id": 286, "category_id": 1, "bbox": [ 447, 214, 25, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 320, "image_id": 287, "category_id": 1, "bbox": [ 487, 211, 22, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 321, "image_id": 288, "category_id": 1, "bbox": [ 522, 206, 29, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 322, "image_id": 289, "category_id": 1, "bbox": [ 589, 208, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 323, "image_id": 293, "category_id": 1, "bbox": [ 488, 190, 27, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 324, "image_id": 293, "category_id": 1, "bbox": [ 554, 191, 33, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 325, "image_id": 294, "category_id": 1, "bbox": [ 495, 213, 24, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 326, "image_id": 295, "category_id": 1, "bbox": [ 546, 209, 23, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 327, "image_id": 296, "category_id": 1, "bbox": [ 588, 252, 23, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 328, "image_id": 298, "category_id": 1, "bbox": [ 505, 200, 24, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 329, "image_id": 299, "category_id": 1, "bbox": [ 517, 204, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 330, "image_id": 300, "category_id": 1, "bbox": [ 528, 230, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 331, "image_id": 301, "category_id": 1, "bbox": [ 529, 185, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 332, "image_id": 302, "category_id": 1, "bbox": [ 545, 229, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 333, "image_id": 302, "category_id": 1, "bbox": [ 426, 240, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 334, "image_id": 302, "category_id": 1, "bbox": [ 435, 235, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 335, "image_id": 303, "category_id": 1, "bbox": [ 554, 183, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 336, "image_id": 303, "category_id": 1, "bbox": [ 441, 191, 21, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 337, "image_id": 303, "category_id": 1, "bbox": [ 455, 187, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 338, "image_id": 304, "category_id": 1, "bbox": [ 554, 205, 28, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 339, "image_id": 304, "category_id": 1, "bbox": [ 458, 214, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 340, "image_id": 304, "category_id": 1, "bbox": [ 474, 205, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 341, "image_id": 304, "category_id": 1, "bbox": [ 65, 216, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 342, "image_id": 305, "category_id": 1, "bbox": [ 547, 207, 22, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 343, "image_id": 305, "category_id": 1, "bbox": [ 468, 219, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 344, "image_id": 305, "category_id": 1, "bbox": [ 484, 215, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 345, "image_id": 305, "category_id": 1, "bbox": [ 49, 218, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 346, "image_id": 306, "category_id": 1, "bbox": [ 539, 205, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 347, "image_id": 306, "category_id": 1, "bbox": [ 479, 212, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 348, "image_id": 306, "category_id": 1, "bbox": [ 495, 208, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 349, "image_id": 306, "category_id": 1, "bbox": [ 5, 208, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 350, "image_id": 307, "category_id": 1, "bbox": [ 551, 217, 23, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 351, "image_id": 307, "category_id": 1, "bbox": [ 509, 229, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 352, "image_id": 307, "category_id": 1, "bbox": [ 531, 220, 28, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 353, "image_id": 308, "category_id": 1, "bbox": [ 586, 232, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 354, "image_id": 308, "category_id": 1, "bbox": [ 612, 227, 28, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 355, "image_id": 310, "category_id": 1, "bbox": [ 409, 220, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 356, "image_id": 311, "category_id": 1, "bbox": [ 429, 214, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 357, "image_id": 312, "category_id": 1, "bbox": [ 453, 208, 21, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 358, "image_id": 313, "category_id": 1, "bbox": [ 480, 219, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 359, "image_id": 314, "category_id": 1, "bbox": [ 530, 211, 28, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 360, "image_id": 315, "category_id": 1, "bbox": [ 402, 215, 19, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 361, "image_id": 316, "category_id": 1, "bbox": [ 431, 214, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 362, "image_id": 317, "category_id": 1, "bbox": [ 457, 208, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 363, "image_id": 318, "category_id": 1, "bbox": [ 498, 217, 22, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 364, "image_id": 318, "category_id": 1, "bbox": [ 479, 208, 26, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 365, "image_id": 319, "category_id": 1, "bbox": [ 542, 209, 27, 66 ], "height": 66, "occlusion": 2, "ignore": 0 }, { "id": 366, "image_id": 319, "category_id": 1, "bbox": [ 524, 214, 24, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 367, "image_id": 319, "category_id": 1, "bbox": [ 4, 212, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 368, "image_id": 320, "category_id": 1, "bbox": [ 616, 190, 23, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 369, "image_id": 320, "category_id": 1, "bbox": [ 584, 190, 26, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 370, "image_id": 321, "category_id": 1, "bbox": [ 471, 212, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 371, "image_id": 321, "category_id": 1, "bbox": [ 419, 213, 19, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 372, "image_id": 322, "category_id": 1, "bbox": [ 488, 211, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 373, "image_id": 322, "category_id": 1, "bbox": [ 437, 213, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 374, "image_id": 323, "category_id": 1, "bbox": [ 517, 212, 22, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 375, "image_id": 323, "category_id": 1, "bbox": [ 462, 218, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 376, "image_id": 324, "category_id": 1, "bbox": [ 568, 215, 32, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 377, "image_id": 324, "category_id": 1, "bbox": [ 514, 214, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 378, "image_id": 324, "category_id": 1, "bbox": [ 500, 215, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 379, "image_id": 324, "category_id": 1, "bbox": [ 450, 215, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 380, "image_id": 325, "category_id": 1, "bbox": [ 565, 213, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 381, "image_id": 325, "category_id": 1, "bbox": [ 547, 216, 21, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 382, "image_id": 325, "category_id": 1, "bbox": [ 487, 215, 22, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 383, "image_id": 326, "category_id": 1, "bbox": [ 519, 210, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 384, "image_id": 326, "category_id": 1, "bbox": [ 592, 217, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 385, "image_id": 326, "category_id": 1, "bbox": [ 608, 218, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 386, "image_id": 327, "category_id": 1, "bbox": [ 558, 211, 31, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 387, "image_id": 328, "category_id": 1, "bbox": [ 475, 211, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 388, "image_id": 329, "category_id": 1, "bbox": [ 463, 212, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 389, "image_id": 330, "category_id": 1, "bbox": [ 539, 209, 21, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 390, "image_id": 330, "category_id": 1, "bbox": [ 610, 206, 27, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 391, "image_id": 330, "category_id": 1, "bbox": [ 445, 208, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 392, "image_id": 331, "category_id": 1, "bbox": [ 506, 209, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 393, "image_id": 331, "category_id": 1, "bbox": [ 526, 211, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 394, "image_id": 331, "category_id": 1, "bbox": [ 449, 208, 25, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 395, "image_id": 331, "category_id": 1, "bbox": [ 490, 205, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 396, "image_id": 331, "category_id": 1, "bbox": [ 383, 210, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 397, "image_id": 332, "category_id": 1, "bbox": [ 595, 209, 27, 68 ], "height": 68, "occlusion": 2, "ignore": 0 }, { "id": 398, "image_id": 332, "category_id": 1, "bbox": [ 538, 205, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 399, "image_id": 332, "category_id": 1, "bbox": [ 399, 212, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 400, "image_id": 333, "category_id": 1, "bbox": [ 548, 237, 37, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 401, "image_id": 333, "category_id": 1, "bbox": [ 414, 233, 21, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 402, "image_id": 334, "category_id": 1, "bbox": [ 434, 219, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 403, "image_id": 336, "category_id": 1, "bbox": [ 380, 212, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 404, "image_id": 336, "category_id": 1, "bbox": [ 399, 210, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 405, "image_id": 336, "category_id": 1, "bbox": [ 412, 212, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 406, "image_id": 337, "category_id": 1, "bbox": [ 515, 216, 32, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 407, "image_id": 337, "category_id": 1, "bbox": [ 381, 213, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 408, "image_id": 337, "category_id": 1, "bbox": [ 433, 213, 22, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 409, "image_id": 337, "category_id": 1, "bbox": [ 412, 214, 15, 36 ], "height": 36, "occlusion": 2, "ignore": 0 }, { "id": 410, "image_id": 338, "category_id": 1, "bbox": [ 604, 223, 39, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 411, "image_id": 338, "category_id": 1, "bbox": [ 496, 212, 21, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 412, "image_id": 338, "category_id": 1, "bbox": [ 478, 211, 20, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 413, "image_id": 338, "category_id": 1, "bbox": [ 431, 211, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 414, "image_id": 338, "category_id": 1, "bbox": [ 418, 211, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 415, "image_id": 338, "category_id": 1, "bbox": [ 404, 214, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 416, "image_id": 339, "category_id": 1, "bbox": [ 584, 217, 23, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 417, "image_id": 339, "category_id": 1, "bbox": [ 534, 209, 23, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 418, "image_id": 339, "category_id": 1, "bbox": [ 435, 212, 24, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 419, "image_id": 339, "category_id": 1, "bbox": [ 449, 215, 23, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 420, "image_id": 339, "category_id": 1, "bbox": [ 472, 214, 20, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 421, "image_id": 340, "category_id": 1, "bbox": [ 484, 219, 32, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 422, "image_id": 340, "category_id": 1, "bbox": [ 501, 217, 31, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 423, "image_id": 340, "category_id": 1, "bbox": [ 536, 218, 30, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 424, "image_id": 341, "category_id": 1, "bbox": [ 595, 236, 49, 111 ], "height": 111, "occlusion": 1, "ignore": 0 }, { "id": 425, "image_id": 342, "category_id": 1, "bbox": [ 510, 217, 20, 49 ], "height": 49, "occlusion": 2, "ignore": 0 }, { "id": 426, "image_id": 343, "category_id": 1, "bbox": [ 607, 220, 36, 88 ], "height": 88, "occlusion": 1, "ignore": 0 }, { "id": 427, "image_id": 344, "category_id": 1, "bbox": [ 437, 208, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 428, "image_id": 345, "category_id": 1, "bbox": [ 469, 206, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 429, "image_id": 346, "category_id": 1, "bbox": [ 521, 208, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 430, "image_id": 346, "category_id": 1, "bbox": [ 30, 208, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 431, "image_id": 346, "category_id": 1, "bbox": [ 43, 210, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 432, "image_id": 347, "category_id": 1, "bbox": [ 595, 219, 20, 63 ], "height": 63, "occlusion": 2, "ignore": 0 }, { "id": 433, "image_id": 347, "category_id": 1, "bbox": [ 3, 216, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 434, "image_id": 352, "category_id": 1, "bbox": [ 432, 224, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 435, "image_id": 353, "category_id": 1, "bbox": [ 458, 219, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 436, "image_id": 354, "category_id": 1, "bbox": [ 518, 218, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 437, "image_id": 357, "category_id": 1, "bbox": [ 341, 214, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 438, "image_id": 358, "category_id": 1, "bbox": [ 347, 216, 17, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 439, "image_id": 359, "category_id": 1, "bbox": [ 432, 214, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 440, "image_id": 359, "category_id": 1, "bbox": [ 447, 207, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 441, "image_id": 359, "category_id": 1, "bbox": [ 353, 214, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 442, "image_id": 360, "category_id": 1, "bbox": [ 467, 220, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 443, "image_id": 360, "category_id": 1, "bbox": [ 488, 217, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 444, "image_id": 360, "category_id": 1, "bbox": [ 450, 217, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 445, "image_id": 360, "category_id": 1, "bbox": [ 357, 218, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 446, "image_id": 361, "category_id": 1, "bbox": [ 492, 221, 25, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 447, "image_id": 361, "category_id": 1, "bbox": [ 510, 216, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 448, "image_id": 361, "category_id": 1, "bbox": [ 572, 216, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 449, "image_id": 361, "category_id": 1, "bbox": [ 372, 221, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 450, "image_id": 361, "category_id": 1, "bbox": [ 438, 204, 17, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 451, "image_id": 362, "category_id": 1, "bbox": [ 564, 226, 30, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 452, "image_id": 362, "category_id": 1, "bbox": [ 590, 220, 27, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 453, "image_id": 362, "category_id": 1, "bbox": [ 371, 218, 27, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 454, "image_id": 362, "category_id": 1, "bbox": [ 465, 206, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 455, "image_id": 362, "category_id": 1, "bbox": [ 480, 200, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 456, "image_id": 363, "category_id": 1, "bbox": [ 372, 215, 29, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 457, "image_id": 363, "category_id": 1, "bbox": [ 517, 208, 25, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 458, "image_id": 363, "category_id": 1, "bbox": [ 547, 207, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 459, "image_id": 364, "category_id": 1, "bbox": [ 392, 218, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 460, "image_id": 365, "category_id": 1, "bbox": [ 421, 223, 32, 72 ], "height": 72, "occlusion": 0, "ignore": 1 }, { "id": 461, "image_id": 366, "category_id": 1, "bbox": [ 447, 226, 38, 96 ], "height": 96, "occlusion": 0, "ignore": 1 }, { "id": 462, "image_id": 367, "category_id": 1, "bbox": [ 467, 259, 48, 112 ], "height": 112, "occlusion": 0, "ignore": 1 }, { "id": 463, "image_id": 367, "category_id": 1, "bbox": [ 417, 234, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 464, "image_id": 368, "category_id": 1, "bbox": [ 494, 243, 50, 120 ], "height": 120, "occlusion": 0, "ignore": 1 }, { "id": 465, "image_id": 368, "category_id": 1, "bbox": [ 428, 199, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 466, "image_id": 369, "category_id": 1, "bbox": [ 538, 242, 61, 144 ], "height": 144, "occlusion": 0, "ignore": 1 }, { "id": 467, "image_id": 369, "category_id": 1, "bbox": [ 497, 205, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 468, "image_id": 369, "category_id": 1, "bbox": [ 446, 200, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 469, "image_id": 370, "category_id": 1, "bbox": [ 533, 204, 26, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 470, "image_id": 370, "category_id": 1, "bbox": [ 472, 207, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 471, "image_id": 371, "category_id": 1, "bbox": [ 590, 211, 28, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 472, "image_id": 371, "category_id": 1, "bbox": [ 506, 215, 27, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 473, "image_id": 372, "category_id": 1, "bbox": [ 555, 217, 29, 62 ], "height": 62, "occlusion": 2, "ignore": 0 }, { "id": 474, "image_id": 373, "category_id": 1, "bbox": [ 417, 231, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 475, "image_id": 373, "category_id": 1, "bbox": [ 396, 234, 24, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 476, "image_id": 374, "category_id": 1, "bbox": [ 411, 229, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 477, "image_id": 374, "category_id": 1, "bbox": [ 423, 226, 16, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 478, "image_id": 375, "category_id": 1, "bbox": [ 427, 227, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 479, "image_id": 375, "category_id": 1, "bbox": [ 445, 220, 21, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 480, "image_id": 376, "category_id": 1, "bbox": [ 458, 224, 23, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 481, "image_id": 376, "category_id": 1, "bbox": [ 485, 224, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 482, "image_id": 376, "category_id": 1, "bbox": [ 70, 202, 48, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 483, "image_id": 377, "category_id": 1, "bbox": [ 508, 223, 30, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 484, "image_id": 377, "category_id": 1, "bbox": [ 534, 220, 28, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 485, "image_id": 377, "category_id": 1, "bbox": [ 11, 200, 51, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 486, "image_id": 378, "category_id": 1, "bbox": [ 568, 209, 36, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 487, "image_id": 378, "category_id": 1, "bbox": [ 607, 221, 34, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 488, "image_id": 379, "category_id": 1, "bbox": [ 407, 205, 20, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 489, "image_id": 380, "category_id": 1, "bbox": [ 439, 205, 23, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 490, "image_id": 381, "category_id": 1, "bbox": [ 482, 175, 30, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 491, "image_id": 381, "category_id": 1, "bbox": [ 74, 160, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 492, "image_id": 382, "category_id": 1, "bbox": [ 543, 218, 32, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 493, "image_id": 382, "category_id": 1, "bbox": [ 41, 220, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 494, "image_id": 382, "category_id": 1, "bbox": [ 465, 205, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 495, "image_id": 382, "category_id": 1, "bbox": [ 368, 208, 25, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 496, "image_id": 383, "category_id": 1, "bbox": [ 492, 211, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 497, "image_id": 383, "category_id": 1, "bbox": [ 377, 218, 24, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 498, "image_id": 383, "category_id": 1, "bbox": [ 5, 217, 56, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 499, "image_id": 384, "category_id": 1, "bbox": [ 550, 217, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 500, "image_id": 384, "category_id": 1, "bbox": [ 388, 216, 29, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 501, "image_id": 385, "category_id": 1, "bbox": [ 413, 222, 27, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 502, "image_id": 387, "category_id": 1, "bbox": [ 495, 224, 25, 65 ], "height": 65, "occlusion": 2, "ignore": 0 }, { "id": 503, "image_id": 387, "category_id": 1, "bbox": [ 519, 223, 21, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 504, "image_id": 387, "category_id": 1, "bbox": [ 235, 218, 16, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 505, "image_id": 387, "category_id": 1, "bbox": [ 254, 219, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 506, "image_id": 387, "category_id": 1, "bbox": [ 470, 214, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 507, "image_id": 388, "category_id": 1, "bbox": [ 592, 225, 40, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 508, "image_id": 388, "category_id": 1, "bbox": [ 227, 214, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 509, "image_id": 388, "category_id": 1, "bbox": [ 249, 216, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 510, "image_id": 388, "category_id": 1, "bbox": [ 547, 211, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 511, "image_id": 388, "category_id": 1, "bbox": [ 516, 210, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 512, "image_id": 388, "category_id": 1, "bbox": [ 402, 214, 16, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 513, "image_id": 389, "category_id": 1, "bbox": [ 219, 215, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 514, "image_id": 389, "category_id": 1, "bbox": [ 246, 212, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 515, "image_id": 389, "category_id": 1, "bbox": [ 342, 184, 18, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 516, "image_id": 389, "category_id": 1, "bbox": [ 606, 217, 29, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 517, "image_id": 389, "category_id": 1, "bbox": [ 576, 213, 30, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 518, "image_id": 390, "category_id": 1, "bbox": [ 207, 213, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 519, "image_id": 390, "category_id": 1, "bbox": [ 236, 208, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 520, "image_id": 390, "category_id": 1, "bbox": [ 340, 183, 19, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 521, "image_id": 390, "category_id": 1, "bbox": [ 453, 217, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 522, "image_id": 391, "category_id": 1, "bbox": [ 177, 215, 23, 54 ], "height": 54, "occlusion": 2, "ignore": 0 }, { "id": 523, "image_id": 391, "category_id": 1, "bbox": [ 303, 172, 19, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 524, "image_id": 391, "category_id": 1, "bbox": [ 448, 213, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 525, "image_id": 391, "category_id": 1, "bbox": [ 476, 211, 22, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 526, "image_id": 391, "category_id": 1, "bbox": [ 405, 212, 28, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 527, "image_id": 392, "category_id": 1, "bbox": [ 92, 213, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 528, "image_id": 392, "category_id": 1, "bbox": [ 118, 215, 30, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 529, "image_id": 392, "category_id": 1, "bbox": [ 252, 163, 21, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 530, "image_id": 392, "category_id": 1, "bbox": [ 432, 216, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 531, "image_id": 392, "category_id": 1, "bbox": [ 370, 215, 28, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 532, "image_id": 392, "category_id": 1, "bbox": [ 407, 216, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 533, "image_id": 393, "category_id": 1, "bbox": [ 48, 224, 34, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 534, "image_id": 393, "category_id": 1, "bbox": [ 193, 164, 22, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 535, "image_id": 393, "category_id": 1, "bbox": [ 401, 218, 31, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 536, "image_id": 393, "category_id": 1, "bbox": [ 325, 223, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 537, "image_id": 393, "category_id": 1, "bbox": [ 340, 218, 27, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 538, "image_id": 393, "category_id": 1, "bbox": [ 1, 218, 40, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 539, "image_id": 394, "category_id": 1, "bbox": [ 102, 148, 26, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 540, "image_id": 394, "category_id": 1, "bbox": [ 337, 216, 33, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 541, "image_id": 394, "category_id": 1, "bbox": [ 253, 216, 26, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 542, "image_id": 394, "category_id": 1, "bbox": [ 226, 217, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 543, "image_id": 395, "category_id": 1, "bbox": [ 267, 217, 40, 90 ], "height": 90, "occlusion": 0, "ignore": 0 }, { "id": 544, "image_id": 395, "category_id": 1, "bbox": [ 52, 218, 42, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 545, "image_id": 395, "category_id": 1, "bbox": [ 153, 216, 30, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 546, "image_id": 396, "category_id": 1, "bbox": [ 154, 221, 39, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 547, "image_id": 396, "category_id": 1, "bbox": [ 14, 212, 41, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 548, "image_id": 397, "category_id": 1, "bbox": [ 3, 221, 45, 119 ], "height": 119, "occlusion": 1, "ignore": 0 }, { "id": 549, "image_id": 404, "category_id": 1, "bbox": [ 240, 216, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 550, "image_id": 405, "category_id": 1, "bbox": [ 282, 216, 21, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 551, "image_id": 405, "category_id": 1, "bbox": [ 297, 215, 22, 53 ], "height": 53, "occlusion": 2, "ignore": 0 }, { "id": 552, "image_id": 406, "category_id": 1, "bbox": [ 331, 213, 24, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 553, "image_id": 406, "category_id": 1, "bbox": [ 354, 219, 26, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 554, "image_id": 407, "category_id": 1, "bbox": [ 361, 219, 27, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 555, "image_id": 407, "category_id": 1, "bbox": [ 387, 226, 28, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 556, "image_id": 408, "category_id": 1, "bbox": [ 397, 219, 39, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 557, "image_id": 408, "category_id": 1, "bbox": [ 440, 236, 32, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 558, "image_id": 409, "category_id": 1, "bbox": [ 457, 224, 70, 176 ], "height": 176, "occlusion": 0, "ignore": 0 }, { "id": 559, "image_id": 409, "category_id": 1, "bbox": [ 542, 248, 55, 144 ], "height": 144, "occlusion": 0, "ignore": 0 }, { "id": 560, "image_id": 420, "category_id": 1, "bbox": [ 53, 223, 34, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 561, "image_id": 420, "category_id": 1, "bbox": [ 19, 229, 37, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 562, "image_id": 421, "category_id": 1, "bbox": [ 322, 227, 28, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 563, "image_id": 421, "category_id": 1, "bbox": [ 355, 229, 30, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 564, "image_id": 422, "category_id": 1, "bbox": [ 331, 229, 22, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 565, "image_id": 422, "category_id": 1, "bbox": [ 350, 221, 36, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 566, "image_id": 423, "category_id": 1, "bbox": [ 132, 230, 45, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 567, "image_id": 423, "category_id": 1, "bbox": [ 172, 218, 49, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 568, "image_id": 424, "category_id": 1, "bbox": [ 1, 211, 49, 146 ], "height": 146, "occlusion": 0, "ignore": 1 }, { "id": 569, "image_id": 428, "category_id": 1, "bbox": [ 436, 207, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 570, "image_id": 428, "category_id": 1, "bbox": [ 158, 210, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 571, "image_id": 429, "category_id": 1, "bbox": [ 446, 207, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 572, "image_id": 429, "category_id": 1, "bbox": [ 149, 203, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 573, "image_id": 429, "category_id": 1, "bbox": [ 457, 199, 37, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 574, "image_id": 430, "category_id": 1, "bbox": [ 117, 213, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 575, "image_id": 430, "category_id": 1, "bbox": [ 423, 205, 38, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 576, "image_id": 430, "category_id": 1, "bbox": [ 370, 205, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 577, "image_id": 431, "category_id": 1, "bbox": [ 98, 216, 20, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 578, "image_id": 431, "category_id": 1, "bbox": [ 382, 218, 43, 66 ], "height": 66, "occlusion": 0, "ignore": 1 }, { "id": 579, "image_id": 431, "category_id": 1, "bbox": [ 322, 208, 20, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 580, "image_id": 432, "category_id": 1, "bbox": [ 123, 215, 20, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 581, "image_id": 432, "category_id": 1, "bbox": [ 356, 225, 41, 70 ], "height": 70, "occlusion": 0, "ignore": 1 }, { "id": 582, "image_id": 432, "category_id": 1, "bbox": [ 282, 208, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 583, "image_id": 433, "category_id": 1, "bbox": [ 157, 211, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 584, "image_id": 433, "category_id": 1, "bbox": [ 322, 224, 43, 80 ], "height": 80, "occlusion": 0, "ignore": 1 }, { "id": 585, "image_id": 433, "category_id": 1, "bbox": [ 250, 208, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 586, "image_id": 434, "category_id": 1, "bbox": [ 197, 218, 20, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 587, "image_id": 434, "category_id": 1, "bbox": [ 283, 226, 47, 84 ], "height": 84, "occlusion": 0, "ignore": 1 }, { "id": 588, "image_id": 434, "category_id": 1, "bbox": [ 223, 212, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 589, "image_id": 435, "category_id": 1, "bbox": [ 236, 220, 20, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 590, "image_id": 435, "category_id": 1, "bbox": [ 241, 231, 47, 76 ], "height": 76, "occlusion": 0, "ignore": 1 }, { "id": 591, "image_id": 435, "category_id": 1, "bbox": [ 192, 212, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 592, "image_id": 436, "category_id": 1, "bbox": [ 276, 216, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 593, "image_id": 436, "category_id": 1, "bbox": [ 182, 229, 53, 81 ], "height": 81, "occlusion": 0, "ignore": 1 }, { "id": 594, "image_id": 436, "category_id": 1, "bbox": [ 160, 213, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 595, "image_id": 437, "category_id": 1, "bbox": [ 308, 220, 25, 43 ], "height": 43, "occlusion": 2, "ignore": 0 }, { "id": 596, "image_id": 437, "category_id": 1, "bbox": [ 121, 222, 53, 99 ], "height": 99, "occlusion": 0, "ignore": 1 }, { "id": 597, "image_id": 437, "category_id": 1, "bbox": [ 132, 211, 20, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 598, "image_id": 438, "category_id": 1, "bbox": [ 337, 219, 27, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 599, "image_id": 438, "category_id": 1, "bbox": [ 99, 215, 20, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 600, "image_id": 438, "category_id": 1, "bbox": [ 60, 228, 41, 90 ], "height": 90, "occlusion": 0, "ignore": 0 }, { "id": 601, "image_id": 438, "category_id": 1, "bbox": [ 89, 224, 45, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 602, "image_id": 439, "category_id": 1, "bbox": [ 370, 225, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 603, "image_id": 439, "category_id": 1, "bbox": [ 53, 214, 20, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 604, "image_id": 439, "category_id": 1, "bbox": [ 45, 236, 51, 77 ], "height": 77, "occlusion": 0, "ignore": 1 }, { "id": 605, "image_id": 439, "category_id": 1, "bbox": [ 8, 221, 51, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 606, "image_id": 440, "category_id": 1, "bbox": [ 390, 222, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 607, "image_id": 440, "category_id": 1, "bbox": [ 179, 234, 48, 97 ], "height": 97, "occlusion": 0, "ignore": 1 }, { "id": 608, "image_id": 441, "category_id": 1, "bbox": [ 344, 245, 64, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 609, "image_id": 441, "category_id": 1, "bbox": [ 401, 223, 28, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 610, "image_id": 442, "category_id": 1, "bbox": [ 389, 220, 21, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 611, "image_id": 442, "category_id": 1, "bbox": [ 447, 247, 51, 101 ], "height": 101, "occlusion": 0, "ignore": 1 }, { "id": 612, "image_id": 443, "category_id": 1, "bbox": [ 368, 220, 30, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 613, "image_id": 443, "category_id": 1, "bbox": [ 540, 245, 51, 106 ], "height": 106, "occlusion": 0, "ignore": 1 }, { "id": 614, "image_id": 444, "category_id": 1, "bbox": [ 444, 221, 24, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 615, "image_id": 445, "category_id": 1, "bbox": [ 533, 229, 30, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 616, "image_id": 446, "category_id": 1, "bbox": [ 2, 210, 77, 204 ], "height": 204, "occlusion": 1, "ignore": 0 }, { "id": 617, "image_id": 447, "category_id": 1, "bbox": [ 41, 215, 67, 201 ], "height": 201, "occlusion": 0, "ignore": 0 }, { "id": 618, "image_id": 447, "category_id": 1, "bbox": [ 15, 210, 54, 142 ], "height": 142, "occlusion": 2, "ignore": 1 }, { "id": 619, "image_id": 448, "category_id": 1, "bbox": [ 96, 210, 71, 201 ], "height": 201, "occlusion": 0, "ignore": 0 }, { "id": 620, "image_id": 449, "category_id": 1, "bbox": [ 190, 210, 70, 201 ], "height": 201, "occlusion": 0, "ignore": 0 }, { "id": 621, "image_id": 450, "category_id": 1, "bbox": [ 334, 223, 66, 204 ], "height": 204, "occlusion": 0, "ignore": 0 }, { "id": 622, "image_id": 451, "category_id": 1, "bbox": [ 534, 236, 74, 227 ], "height": 227, "occlusion": 0, "ignore": 0 }, { "id": 623, "image_id": 455, "category_id": 1, "bbox": [ 478, 206, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 624, "image_id": 456, "category_id": 1, "bbox": [ 379, 206, 32, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 625, "image_id": 457, "category_id": 1, "bbox": [ 240, 209, 47, 80 ], "height": 80, "occlusion": 0, "ignore": 1 }, { "id": 626, "image_id": 462, "category_id": 1, "bbox": [ 303, 218, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 627, "image_id": 462, "category_id": 1, "bbox": [ 366, 216, 32, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 628, "image_id": 463, "category_id": 1, "bbox": [ 283, 219, 22, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 629, "image_id": 463, "category_id": 1, "bbox": [ 140, 215, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 630, "image_id": 463, "category_id": 1, "bbox": [ 367, 216, 41, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 631, "image_id": 464, "category_id": 1, "bbox": [ 264, 220, 24, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 632, "image_id": 464, "category_id": 1, "bbox": [ 144, 215, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 633, "image_id": 464, "category_id": 1, "bbox": [ 153, 214, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 634, "image_id": 464, "category_id": 1, "bbox": [ 379, 221, 26, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 635, "image_id": 465, "category_id": 1, "bbox": [ 242, 222, 26, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 636, "image_id": 465, "category_id": 1, "bbox": [ 359, 224, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 637, "image_id": 465, "category_id": 1, "bbox": [ 143, 222, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 638, "image_id": 465, "category_id": 1, "bbox": [ 154, 219, 24, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 639, "image_id": 466, "category_id": 1, "bbox": [ 192, 223, 29, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 640, "image_id": 466, "category_id": 1, "bbox": [ 323, 218, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 641, "image_id": 466, "category_id": 1, "bbox": [ 437, 218, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 642, "image_id": 466, "category_id": 1, "bbox": [ 136, 216, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 643, "image_id": 466, "category_id": 1, "bbox": [ 122, 218, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 644, "image_id": 466, "category_id": 1, "bbox": [ 369, 215, 54, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 645, "image_id": 467, "category_id": 1, "bbox": [ 119, 221, 34, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 646, "image_id": 467, "category_id": 1, "bbox": [ 275, 212, 26, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 647, "image_id": 467, "category_id": 1, "bbox": [ 105, 219, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 648, "image_id": 467, "category_id": 1, "bbox": [ 418, 215, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 649, "image_id": 467, "category_id": 1, "bbox": [ 403, 216, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 650, "image_id": 467, "category_id": 1, "bbox": [ 389, 215, 16, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 651, "image_id": 467, "category_id": 1, "bbox": [ 376, 216, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 652, "image_id": 468, "category_id": 1, "bbox": [ 207, 214, 29, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 653, "image_id": 468, "category_id": 1, "bbox": [ 68, 216, 32, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 654, "image_id": 468, "category_id": 1, "bbox": [ 43, 213, 27, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 655, "image_id": 468, "category_id": 1, "bbox": [ 464, 218, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 656, "image_id": 468, "category_id": 1, "bbox": [ 431, 216, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 657, "image_id": 468, "category_id": 1, "bbox": [ 411, 214, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 658, "image_id": 468, "category_id": 1, "bbox": [ 398, 215, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 659, "image_id": 468, "category_id": 1, "bbox": [ 384, 213, 16, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 660, "image_id": 469, "category_id": 1, "bbox": [ 84, 220, 52, 90 ], "height": 90, "occlusion": 0, "ignore": 0 }, { "id": 661, "image_id": 469, "category_id": 1, "bbox": [ 486, 223, 24, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 662, "image_id": 469, "category_id": 1, "bbox": [ 382, 217, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 663, "image_id": 469, "category_id": 1, "bbox": [ 440, 215, 17, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 664, "image_id": 469, "category_id": 1, "bbox": [ 419, 211, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 665, "image_id": 469, "category_id": 1, "bbox": [ 397, 212, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 666, "image_id": 469, "category_id": 1, "bbox": [ 12, 207, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 667, "image_id": 470, "category_id": 1, "bbox": [ 534, 229, 27, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 668, "image_id": 470, "category_id": 1, "bbox": [ 434, 216, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 669, "image_id": 470, "category_id": 1, "bbox": [ 384, 221, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 670, "image_id": 470, "category_id": 1, "bbox": [ 464, 219, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 671, "image_id": 470, "category_id": 1, "bbox": [ 523, 222, 23, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 672, "image_id": 470, "category_id": 1, "bbox": [ 410, 221, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 673, "image_id": 471, "category_id": 1, "bbox": [ 464, 218, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 674, "image_id": 471, "category_id": 1, "bbox": [ 397, 222, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 675, "image_id": 471, "category_id": 1, "bbox": [ 515, 222, 31, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 676, "image_id": 471, "category_id": 1, "bbox": [ 433, 222, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 677, "image_id": 471, "category_id": 1, "bbox": [ 592, 214, 38, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 678, "image_id": 472, "category_id": 1, "bbox": [ 499, 218, 29, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 679, "image_id": 472, "category_id": 1, "bbox": [ 432, 218, 34, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 680, "image_id": 472, "category_id": 1, "bbox": [ 607, 224, 25, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 681, "image_id": 472, "category_id": 1, "bbox": [ 474, 220, 25, 73 ], "height": 73, "occlusion": 2, "ignore": 0 }, { "id": 682, "image_id": 473, "category_id": 1, "bbox": [ 512, 212, 44, 115 ], "height": 115, "occlusion": 0, "ignore": 0 }, { "id": 683, "image_id": 473, "category_id": 1, "bbox": [ 570, 219, 35, 98 ], "height": 98, "occlusion": 1, "ignore": 0 }, { "id": 684, "image_id": 473, "category_id": 1, "bbox": [ 588, 228, 46, 113 ], "height": 113, "occlusion": 0, "ignore": 0 }, { "id": 685, "image_id": 483, "category_id": 1, "bbox": [ 111, 231, 30, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 686, "image_id": 484, "category_id": 1, "bbox": [ 122, 236, 31, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 687, "image_id": 485, "category_id": 1, "bbox": [ 134, 232, 33, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 688, "image_id": 486, "category_id": 1, "bbox": [ 146, 229, 34, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 689, "image_id": 487, "category_id": 1, "bbox": [ 169, 223, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 690, "image_id": 488, "category_id": 1, "bbox": [ 208, 225, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 691, "image_id": 489, "category_id": 1, "bbox": [ 239, 222, 19, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 692, "image_id": 490, "category_id": 1, "bbox": [ 254, 219, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 693, "image_id": 491, "category_id": 1, "bbox": [ 254, 224, 25, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 694, "image_id": 492, "category_id": 1, "bbox": [ 291, 220, 22, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 695, "image_id": 493, "category_id": 1, "bbox": [ 341, 217, 24, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 696, "image_id": 494, "category_id": 1, "bbox": [ 403, 214, 25, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 697, "image_id": 495, "category_id": 1, "bbox": [ 474, 213, 32, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 698, "image_id": 496, "category_id": 1, "bbox": [ 566, 210, 38, 104 ], "height": 104, "occlusion": 2, "ignore": 0 }, { "id": 699, "image_id": 503, "category_id": 1, "bbox": [ 163, 172, 50, 94 ], "height": 94, "occlusion": 0, "ignore": 1 }, { "id": 700, "image_id": 511, "category_id": 1, "bbox": [ 407, 200, 47, 73 ], "height": 73, "occlusion": 0, "ignore": 1 }, { "id": 701, "image_id": 511, "category_id": 1, "bbox": [ 332, 196, 40, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 702, "image_id": 512, "category_id": 1, "bbox": [ 150, 185, 51, 96 ], "height": 96, "occlusion": 0, "ignore": 1 }, { "id": 703, "image_id": 513, "category_id": 1, "bbox": [ 426, 193, 51, 91 ], "height": 91, "occlusion": 0, "ignore": 1 }, { "id": 704, "image_id": 514, "category_id": 1, "bbox": [ 453, 198, 51, 91 ], "height": 91, "occlusion": 0, "ignore": 1 }, { "id": 705, "image_id": 515, "category_id": 1, "bbox": [ 446, 199, 49, 90 ], "height": 90, "occlusion": 0, "ignore": 1 }, { "id": 706, "image_id": 516, "category_id": 1, "bbox": [ 478, 197, 46, 87 ], "height": 87, "occlusion": 0, "ignore": 1 }, { "id": 707, "image_id": 516, "category_id": 1, "bbox": [ 39, 130, 83, 249 ], "height": 249, "occlusion": 0, "ignore": 1 }, { "id": 708, "image_id": 517, "category_id": 1, "bbox": [ 180, 144, 74, 221 ], "height": 221, "occlusion": 0, "ignore": 1 }, { "id": 709, "image_id": 517, "category_id": 1, "bbox": [ 565, 201, 43, 83 ], "height": 83, "occlusion": 0, "ignore": 1 }, { "id": 710, "image_id": 517, "category_id": 1, "bbox": [ 40, 209, 89, 280 ], "height": 280, "occlusion": 0, "ignore": 0 }, { "id": 711, "image_id": 518, "category_id": 1, "bbox": [ 320, 159, 65, 192 ], "height": 192, "occlusion": 1, "ignore": 1 }, { "id": 712, "image_id": 518, "category_id": 1, "bbox": [ 352, 219, 86, 247 ], "height": 247, "occlusion": 0, "ignore": 0 }, { "id": 713, "image_id": 519, "category_id": 1, "bbox": [ 444, 174, 55, 161 ], "height": 161, "occlusion": 0, "ignore": 1 }, { "id": 714, "image_id": 520, "category_id": 1, "bbox": [ 471, 179, 54, 158 ], "height": 158, "occlusion": 0, "ignore": 1 }, { "id": 715, "image_id": 521, "category_id": 1, "bbox": [ 492, 174, 56, 163 ], "height": 163, "occlusion": 0, "ignore": 1 }, { "id": 716, "image_id": 542, "category_id": 1, "bbox": [ 553, 240, 21, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 717, "image_id": 544, "category_id": 1, "bbox": [ 343, 233, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 718, "image_id": 545, "category_id": 1, "bbox": [ 230, 227, 19, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 719, "image_id": 546, "category_id": 1, "bbox": [ 179, 230, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 720, "image_id": 547, "category_id": 1, "bbox": [ 118, 227, 28, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 721, "image_id": 548, "category_id": 1, "bbox": [ 31, 227, 43, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 722, "image_id": 548, "category_id": 1, "bbox": [ 150, 221, 18, 36 ], "height": 36, "occlusion": 1, "ignore": 0 }, { "id": 723, "image_id": 548, "category_id": 1, "bbox": [ 182, 223, 19, 35 ], "height": 35, "occlusion": 2, "ignore": 0 }, { "id": 724, "image_id": 548, "category_id": 1, "bbox": [ 222, 225, 20, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 725, "image_id": 549, "category_id": 1, "bbox": [ 110, 217, 73, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 726, "image_id": 549, "category_id": 1, "bbox": [ 202, 220, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 727, "image_id": 550, "category_id": 1, "bbox": [ 3, 213, 111, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 728, "image_id": 558, "category_id": 1, "bbox": [ 16, 211, 54, 150 ], "height": 150, "occlusion": 0, "ignore": 0 }, { "id": 729, "image_id": 565, "category_id": 1, "bbox": [ 408, 221, 21, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 730, "image_id": 566, "category_id": 1, "bbox": [ 441, 220, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 731, "image_id": 568, "category_id": 1, "bbox": [ 516, 221, 28, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 732, "image_id": 569, "category_id": 1, "bbox": [ 575, 218, 32, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 733, "image_id": 574, "category_id": 1, "bbox": [ 257, 210, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 734, "image_id": 574, "category_id": 1, "bbox": [ 123, 211, 25, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 735, "image_id": 575, "category_id": 1, "bbox": [ 259, 207, 25, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 736, "image_id": 575, "category_id": 1, "bbox": [ 89, 208, 25, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 737, "image_id": 576, "category_id": 1, "bbox": [ 16, 207, 37, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 738, "image_id": 576, "category_id": 1, "bbox": [ 265, 202, 22, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 739, "image_id": 577, "category_id": 1, "bbox": [ 273, 208, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 740, "image_id": 578, "category_id": 1, "bbox": [ 284, 206, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 741, "image_id": 579, "category_id": 1, "bbox": [ 300, 204, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 742, "image_id": 579, "category_id": 1, "bbox": [ 328, 205, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 743, "image_id": 580, "category_id": 1, "bbox": [ 322, 202, 28, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 744, "image_id": 580, "category_id": 1, "bbox": [ 361, 206, 21, 36 ], "height": 36, "occlusion": 2, "ignore": 0 }, { "id": 745, "image_id": 581, "category_id": 1, "bbox": [ 350, 202, 30, 60 ], "height": 60, "occlusion": 1, "ignore": 1 }, { "id": 746, "image_id": 581, "category_id": 1, "bbox": [ 408, 200, 25, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 747, "image_id": 582, "category_id": 1, "bbox": [ 390, 231, 30, 63 ], "height": 63, "occlusion": 1, "ignore": 1 }, { "id": 748, "image_id": 582, "category_id": 1, "bbox": [ 462, 229, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 749, "image_id": 583, "category_id": 1, "bbox": [ 441, 201, 30, 68 ], "height": 68, "occlusion": 2, "ignore": 1 }, { "id": 750, "image_id": 583, "category_id": 1, "bbox": [ 527, 213, 25, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 751, "image_id": 584, "category_id": 1, "bbox": [ 511, 211, 36, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 752, "image_id": 584, "category_id": 1, "bbox": [ 597, 210, 28, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 753, "image_id": 585, "category_id": 1, "bbox": [ 604, 216, 37, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 754, "image_id": 585, "category_id": 1, "bbox": [ 331, 199, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 755, "image_id": 586, "category_id": 1, "bbox": [ 367, 202, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 756, "image_id": 586, "category_id": 1, "bbox": [ 569, 207, 49, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 757, "image_id": 587, "category_id": 1, "bbox": [ 545, 203, 59, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 758, "image_id": 588, "category_id": 1, "bbox": [ 229, 211, 34, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 759, "image_id": 588, "category_id": 1, "bbox": [ 446, 208, 64, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 760, "image_id": 589, "category_id": 1, "bbox": [ 1, 213, 69, 71 ], "height": 71, "occlusion": 0, "ignore": 1 }, { "id": 761, "image_id": 589, "category_id": 1, "bbox": [ 269, 211, 81, 63 ], "height": 63, "occlusion": 0, "ignore": 1 }, { "id": 762, "image_id": 590, "category_id": 1, "bbox": [ 1, 202, 52, 63 ], "height": 63, "occlusion": 0, "ignore": 1 }, { "id": 763, "image_id": 591, "category_id": 1, "bbox": [ 516, 214, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 764, "image_id": 591, "category_id": 1, "bbox": [ 473, 217, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 765, "image_id": 592, "category_id": 1, "bbox": [ 456, 214, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 766, "image_id": 592, "category_id": 1, "bbox": [ 505, 217, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 767, "image_id": 592, "category_id": 1, "bbox": [ 70, 218, 29, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 768, "image_id": 593, "category_id": 1, "bbox": [ 489, 218, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 769, "image_id": 593, "category_id": 1, "bbox": [ 555, 217, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 770, "image_id": 593, "category_id": 1, "bbox": [ 441, 218, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 771, "image_id": 593, "category_id": 1, "bbox": [ 57, 212, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 772, "image_id": 594, "category_id": 1, "bbox": [ 564, 219, 39, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 773, "image_id": 594, "category_id": 1, "bbox": [ 470, 213, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 774, "image_id": 595, "category_id": 1, "bbox": [ 510, 208, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 775, "image_id": 595, "category_id": 1, "bbox": [ 33, 213, 38, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 776, "image_id": 596, "category_id": 1, "bbox": [ 573, 209, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 777, "image_id": 598, "category_id": 1, "bbox": [ 84, 192, 27, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 778, "image_id": 599, "category_id": 1, "bbox": [ 29, 208, 38, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 779, "image_id": 603, "category_id": 1, "bbox": [ 78, 223, 38, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 780, "image_id": 604, "category_id": 1, "bbox": [ 15, 236, 45, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 781, "image_id": 605, "category_id": 1, "bbox": [ 21, 222, 39, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 782, "image_id": 606, "category_id": 1, "bbox": [ 422, 210, 46, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 783, "image_id": 607, "category_id": 1, "bbox": [ 436, 209, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 784, "image_id": 607, "category_id": 1, "bbox": [ 480, 204, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 785, "image_id": 607, "category_id": 1, "bbox": [ 453, 207, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 786, "image_id": 608, "category_id": 1, "bbox": [ 490, 206, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 787, "image_id": 608, "category_id": 1, "bbox": [ 472, 205, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 788, "image_id": 608, "category_id": 1, "bbox": [ 542, 205, 28, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 789, "image_id": 609, "category_id": 1, "bbox": [ 543, 198, 23, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 790, "image_id": 609, "category_id": 1, "bbox": [ 522, 201, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 791, "image_id": 609, "category_id": 1, "bbox": [ 449, 203, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 792, "image_id": 609, "category_id": 1, "bbox": [ 10, 203, 39, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 793, "image_id": 609, "category_id": 1, "bbox": [ 65, 198, 28, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 794, "image_id": 610, "category_id": 1, "bbox": [ 600, 207, 31, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 795, "image_id": 610, "category_id": 1, "bbox": [ 433, 198, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 796, "image_id": 611, "category_id": 1, "bbox": [ 529, 208, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 797, "image_id": 611, "category_id": 1, "bbox": [ 458, 194, 22, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 798, "image_id": 612, "category_id": 1, "bbox": [ 578, 248, 24, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 799, "image_id": 612, "category_id": 1, "bbox": [ 480, 235, 24, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 800, "image_id": 613, "category_id": 1, "bbox": [ 499, 200, 33, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 801, "image_id": 613, "category_id": 1, "bbox": [ 431, 204, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 802, "image_id": 614, "category_id": 1, "bbox": [ 556, 221, 37, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 803, "image_id": 614, "category_id": 1, "bbox": [ 460, 207, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 804, "image_id": 614, "category_id": 1, "bbox": [ 401, 209, 20, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 805, "image_id": 615, "category_id": 1, "bbox": [ 521, 214, 31, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 806, "image_id": 615, "category_id": 1, "bbox": [ 420, 213, 25, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 807, "image_id": 616, "category_id": 1, "bbox": [ 451, 217, 26, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 808, "image_id": 617, "category_id": 1, "bbox": [ 497, 217, 31, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 809, "image_id": 618, "category_id": 1, "bbox": [ 109, 206, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 810, "image_id": 618, "category_id": 1, "bbox": [ 3, 220, 30, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 811, "image_id": 618, "category_id": 1, "bbox": [ 568, 211, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 812, "image_id": 618, "category_id": 1, "bbox": [ 587, 208, 28, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 813, "image_id": 619, "category_id": 1, "bbox": [ 33, 213, 38, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 814, "image_id": 620, "category_id": 1, "bbox": [ 460, 220, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 815, "image_id": 621, "category_id": 1, "bbox": [ 506, 218, 22, 49 ], "height": 49, "occlusion": 2, "ignore": 0 }, { "id": 816, "image_id": 622, "category_id": 1, "bbox": [ 583, 212, 31, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 817, "image_id": 623, "category_id": 1, "bbox": [ 88, 218, 27, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 818, "image_id": 624, "category_id": 1, "bbox": [ 47, 212, 27, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 819, "image_id": 625, "category_id": 1, "bbox": [ 466, 217, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 820, "image_id": 626, "category_id": 1, "bbox": [ 526, 216, 21, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 821, "image_id": 626, "category_id": 1, "bbox": [ 100, 219, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 822, "image_id": 626, "category_id": 1, "bbox": [ 37, 214, 31, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 823, "image_id": 627, "category_id": 1, "bbox": [ 434, 206, 22, 53 ], "height": 53, "occlusion": 2, "ignore": 0 }, { "id": 824, "image_id": 629, "category_id": 1, "bbox": [ 140, 203, 19, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 825, "image_id": 629, "category_id": 1, "bbox": [ 473, 199, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 826, "image_id": 630, "category_id": 1, "bbox": [ 116, 181, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 827, "image_id": 630, "category_id": 1, "bbox": [ 469, 182, 27, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 828, "image_id": 631, "category_id": 1, "bbox": [ 561, 200, 37, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 829, "image_id": 631, "category_id": 1, "bbox": [ 98, 216, 22, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 830, "image_id": 638, "category_id": 1, "bbox": [ 430, 209, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 831, "image_id": 639, "category_id": 1, "bbox": [ 474, 209, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 832, "image_id": 640, "category_id": 1, "bbox": [ 544, 202, 29, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 833, "image_id": 641, "category_id": 1, "bbox": [ 9, 208, 40, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 834, "image_id": 641, "category_id": 1, "bbox": [ 78, 208, 34, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 835, "image_id": 643, "category_id": 1, "bbox": [ 162, 240, 28, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 836, "image_id": 644, "category_id": 1, "bbox": [ 159, 216, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 837, "image_id": 644, "category_id": 1, "bbox": [ 136, 220, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 838, "image_id": 645, "category_id": 1, "bbox": [ 109, 217, 38, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 839, "image_id": 646, "category_id": 1, "bbox": [ 61, 223, 33, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 840, "image_id": 646, "category_id": 1, "bbox": [ 31, 218, 40, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 841, "image_id": 648, "category_id": 1, "bbox": [ 424, 207, 23, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 842, "image_id": 649, "category_id": 1, "bbox": [ 506, 210, 28, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 843, "image_id": 666, "category_id": 1, "bbox": [ 362, 212, 20, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 844, "image_id": 666, "category_id": 1, "bbox": [ 345, 210, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 845, "image_id": 667, "category_id": 1, "bbox": [ 430, 218, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 846, "image_id": 667, "category_id": 1, "bbox": [ 405, 218, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 847, "image_id": 668, "category_id": 1, "bbox": [ 532, 222, 35, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 848, "image_id": 668, "category_id": 1, "bbox": [ 564, 220, 43, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 849, "image_id": 672, "category_id": 1, "bbox": [ 413, 220, 20, 36 ], "height": 36, "occlusion": 2, "ignore": 0 }, { "id": 850, "image_id": 672, "category_id": 1, "bbox": [ 427, 220, 22, 38 ], "height": 38, "occlusion": 2, "ignore": 0 }, { "id": 851, "image_id": 673, "category_id": 1, "bbox": [ 541, 228, 67, 73 ], "height": 73, "occlusion": 0, "ignore": 1 }, { "id": 852, "image_id": 681, "category_id": 1, "bbox": [ 354, 208, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 853, "image_id": 682, "category_id": 1, "bbox": [ 394, 214, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 854, "image_id": 683, "category_id": 1, "bbox": [ 520, 200, 53, 134 ], "height": 134, "occlusion": 0, "ignore": 1 }, { "id": 855, "image_id": 684, "category_id": 1, "bbox": [ 435, 203, 24, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 856, "image_id": 685, "category_id": 1, "bbox": [ 539, 208, 32, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 857, "image_id": 685, "category_id": 1, "bbox": [ 565, 209, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 858, "image_id": 693, "category_id": 1, "bbox": [ 430, 211, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 859, "image_id": 694, "category_id": 1, "bbox": [ 479, 219, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 860, "image_id": 694, "category_id": 1, "bbox": [ 544, 213, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 861, "image_id": 695, "category_id": 1, "bbox": [ 556, 216, 28, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 862, "image_id": 708, "category_id": 1, "bbox": [ 570, 224, 30, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 863, "image_id": 708, "category_id": 1, "bbox": [ 603, 219, 32, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 864, "image_id": 708, "category_id": 1, "bbox": [ 516, 208, 26, 42 ], "height": 42, "occlusion": 1, "ignore": 1 }, { "id": 865, "image_id": 709, "category_id": 1, "bbox": [ 600, 209, 24, 53 ], "height": 53, "occlusion": 2, "ignore": 0 }, { "id": 866, "image_id": 709, "category_id": 1, "bbox": [ 460, 210, 25, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 867, "image_id": 710, "category_id": 1, "bbox": [ 542, 210, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 868, "image_id": 710, "category_id": 1, "bbox": [ 448, 212, 17, 36 ], "height": 36, "occlusion": 2, "ignore": 1 }, { "id": 869, "image_id": 712, "category_id": 1, "bbox": [ 531, 208, 24, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 870, "image_id": 716, "category_id": 1, "bbox": [ 417, 213, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 871, "image_id": 717, "category_id": 1, "bbox": [ 403, 219, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 872, "image_id": 718, "category_id": 1, "bbox": [ 387, 208, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 873, "image_id": 719, "category_id": 1, "bbox": [ 405, 210, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 874, "image_id": 719, "category_id": 1, "bbox": [ 357, 210, 18, 36 ], "height": 36, "occlusion": 1, "ignore": 0 }, { "id": 875, "image_id": 720, "category_id": 1, "bbox": [ 451, 215, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 876, "image_id": 720, "category_id": 1, "bbox": [ 379, 220, 23, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 877, "image_id": 721, "category_id": 1, "bbox": [ 437, 215, 25, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 878, "image_id": 722, "category_id": 1, "bbox": [ 354, 216, 27, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 879, "image_id": 723, "category_id": 1, "bbox": [ 402, 214, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 880, "image_id": 723, "category_id": 1, "bbox": [ 388, 216, 21, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 881, "image_id": 724, "category_id": 1, "bbox": [ 488, 213, 30, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 882, "image_id": 724, "category_id": 1, "bbox": [ 464, 216, 32, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 883, "image_id": 726, "category_id": 1, "bbox": [ 387, 200, 23, 49 ], "height": 49, "occlusion": 1, "ignore": 1 }, { "id": 884, "image_id": 726, "category_id": 1, "bbox": [ 358, 201, 26, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 885, "image_id": 727, "category_id": 1, "bbox": [ 540, 214, 50, 99 ], "height": 99, "occlusion": 1, "ignore": 1 }, { "id": 886, "image_id": 727, "category_id": 1, "bbox": [ 340, 213, 28, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 887, "image_id": 727, "category_id": 1, "bbox": [ 385, 212, 16, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 888, "image_id": 727, "category_id": 1, "bbox": [ 369, 212, 16, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 889, "image_id": 728, "category_id": 1, "bbox": [ 404, 212, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 890, "image_id": 728, "category_id": 1, "bbox": [ 382, 211, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 891, "image_id": 728, "category_id": 1, "bbox": [ 348, 214, 32, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 892, "image_id": 729, "category_id": 1, "bbox": [ 444, 217, 28, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 893, "image_id": 729, "category_id": 1, "bbox": [ 408, 215, 25, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 894, "image_id": 729, "category_id": 1, "bbox": [ 393, 213, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 895, "image_id": 729, "category_id": 1, "bbox": [ 370, 220, 25, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 896, "image_id": 730, "category_id": 1, "bbox": [ 524, 215, 39, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 897, "image_id": 730, "category_id": 1, "bbox": [ 463, 220, 25, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 898, "image_id": 730, "category_id": 1, "bbox": [ 442, 214, 21, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 899, "image_id": 730, "category_id": 1, "bbox": [ 424, 219, 24, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 900, "image_id": 730, "category_id": 1, "bbox": [ 408, 222, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 901, "image_id": 731, "category_id": 1, "bbox": [ 511, 215, 27, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 902, "image_id": 731, "category_id": 1, "bbox": [ 565, 209, 41, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 903, "image_id": 731, "category_id": 1, "bbox": [ 528, 203, 35, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 904, "image_id": 731, "category_id": 1, "bbox": [ 485, 217, 31, 89 ], "height": 89, "occlusion": 1, "ignore": 0 }, { "id": 905, "image_id": 745, "category_id": 1, "bbox": [ 390, 207, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 906, "image_id": 745, "category_id": 1, "bbox": [ 426, 209, 15, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 907, "image_id": 746, "category_id": 1, "bbox": [ 386, 205, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 908, "image_id": 746, "category_id": 1, "bbox": [ 423, 207, 30, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 909, "image_id": 747, "category_id": 1, "bbox": [ 399, 208, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 910, "image_id": 747, "category_id": 1, "bbox": [ 459, 208, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 911, "image_id": 747, "category_id": 1, "bbox": [ 432, 206, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 912, "image_id": 747, "category_id": 1, "bbox": [ 445, 205, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 913, "image_id": 747, "category_id": 1, "bbox": [ 486, 206, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 914, "image_id": 748, "category_id": 1, "bbox": [ 509, 209, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 915, "image_id": 748, "category_id": 1, "bbox": [ 545, 208, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 916, "image_id": 748, "category_id": 1, "bbox": [ 531, 209, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 917, "image_id": 748, "category_id": 1, "bbox": [ 457, 202, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 918, "image_id": 748, "category_id": 1, "bbox": [ 444, 202, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 919, "image_id": 749, "category_id": 1, "bbox": [ 608, 220, 31, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 920, "image_id": 749, "category_id": 1, "bbox": [ 589, 222, 26, 62 ], "height": 62, "occlusion": 2, "ignore": 0 }, { "id": 921, "image_id": 749, "category_id": 1, "bbox": [ 460, 218, 23, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 922, "image_id": 750, "category_id": 1, "bbox": [ 535, 212, 36, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 923, "image_id": 750, "category_id": 1, "bbox": [ 494, 205, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 924, "image_id": 750, "category_id": 1, "bbox": [ 515, 205, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 925, "image_id": 751, "category_id": 1, "bbox": [ 566, 195, 25, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 926, "image_id": 751, "category_id": 1, "bbox": [ 539, 195, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 927, "image_id": 754, "category_id": 1, "bbox": [ 452, 212, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 928, "image_id": 754, "category_id": 1, "bbox": [ 440, 213, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 929, "image_id": 755, "category_id": 1, "bbox": [ 514, 209, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 930, "image_id": 755, "category_id": 1, "bbox": [ 477, 204, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 931, "image_id": 756, "category_id": 1, "bbox": [ 591, 203, 22, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 932, "image_id": 756, "category_id": 1, "bbox": [ 574, 205, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 933, "image_id": 756, "category_id": 1, "bbox": [ 554, 208, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 934, "image_id": 765, "category_id": 1, "bbox": [ 409, 211, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 935, "image_id": 765, "category_id": 1, "bbox": [ 424, 214, 15, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 936, "image_id": 766, "category_id": 1, "bbox": [ 427, 215, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 937, "image_id": 767, "category_id": 1, "bbox": [ 448, 207, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 938, "image_id": 768, "category_id": 1, "bbox": [ 487, 212, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 939, "image_id": 768, "category_id": 1, "bbox": [ 456, 211, 19, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 940, "image_id": 769, "category_id": 1, "bbox": [ 520, 209, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 941, "image_id": 769, "category_id": 1, "bbox": [ 460, 209, 23, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 942, "image_id": 770, "category_id": 1, "bbox": [ 563, 207, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 943, "image_id": 770, "category_id": 1, "bbox": [ 471, 209, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 944, "image_id": 771, "category_id": 1, "bbox": [ 476, 208, 19, 40 ], "height": 40, "occlusion": 1, "ignore": 0 }, { "id": 945, "image_id": 773, "category_id": 1, "bbox": [ 473, 212, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 946, "image_id": 827, "category_id": 1, "bbox": [ 546, 211, 27, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 947, "image_id": 828, "category_id": 1, "bbox": [ 487, 213, 27, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 948, "image_id": 829, "category_id": 1, "bbox": [ 473, 212, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 949, "image_id": 830, "category_id": 1, "bbox": [ 471, 213, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 950, "image_id": 832, "category_id": 1, "bbox": [ 484, 210, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 951, "image_id": 833, "category_id": 1, "bbox": [ 494, 206, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 952, "image_id": 835, "category_id": 1, "bbox": [ 498, 201, 22, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 953, "image_id": 835, "category_id": 1, "bbox": [ 542, 198, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 954, "image_id": 836, "category_id": 1, "bbox": [ 565, 200, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 955, "image_id": 836, "category_id": 1, "bbox": [ 550, 201, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 956, "image_id": 840, "category_id": 1, "bbox": [ 610, 229, 30, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 957, "image_id": 840, "category_id": 1, "bbox": [ 551, 229, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 958, "image_id": 848, "category_id": 1, "bbox": [ 481, 214, 22, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 959, "image_id": 849, "category_id": 1, "bbox": [ 571, 218, 24, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 960, "image_id": 851, "category_id": 1, "bbox": [ 435, 220, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 961, "image_id": 851, "category_id": 1, "bbox": [ 566, 213, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 962, "image_id": 851, "category_id": 1, "bbox": [ 592, 218, 23, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 963, "image_id": 852, "category_id": 1, "bbox": [ 461, 228, 30, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 964, "image_id": 853, "category_id": 1, "bbox": [ 539, 234, 44, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 965, "image_id": 860, "category_id": 1, "bbox": [ 388, 215, 24, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 966, "image_id": 861, "category_id": 1, "bbox": [ 496, 221, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 967, "image_id": 861, "category_id": 1, "bbox": [ 417, 216, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 968, "image_id": 862, "category_id": 1, "bbox": [ 589, 206, 30, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 969, "image_id": 862, "category_id": 1, "bbox": [ 461, 210, 34, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 970, "image_id": 863, "category_id": 1, "bbox": [ 577, 206, 52, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 971, "image_id": 868, "category_id": 1, "bbox": [ 396, 229, 16, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 972, "image_id": 868, "category_id": 1, "bbox": [ 417, 231, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 973, "image_id": 868, "category_id": 1, "bbox": [ 524, 227, 28, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 974, "image_id": 869, "category_id": 1, "bbox": [ 586, 221, 29, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 975, "image_id": 869, "category_id": 1, "bbox": [ 483, 239, 33, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 976, "image_id": 869, "category_id": 1, "bbox": [ 435, 234, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 977, "image_id": 869, "category_id": 1, "bbox": [ 411, 244, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 978, "image_id": 870, "category_id": 1, "bbox": [ 533, 234, 41, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 979, "image_id": 870, "category_id": 1, "bbox": [ 482, 257, 34, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 980, "image_id": 870, "category_id": 1, "bbox": [ 422, 259, 42, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 981, "image_id": 871, "category_id": 1, "bbox": [ 513, 206, 24, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 982, "image_id": 880, "category_id": 1, "bbox": [ 358, 232, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 983, "image_id": 880, "category_id": 1, "bbox": [ 368, 229, 17, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 984, "image_id": 881, "category_id": 1, "bbox": [ 399, 214, 20, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 985, "image_id": 882, "category_id": 1, "bbox": [ 429, 200, 45, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 986, "image_id": 883, "category_id": 1, "bbox": [ 542, 214, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 987, "image_id": 883, "category_id": 1, "bbox": [ 522, 211, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 988, "image_id": 883, "category_id": 1, "bbox": [ 503, 210, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 989, "image_id": 889, "category_id": 1, "bbox": [ 534, 207, 23, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 990, "image_id": 890, "category_id": 1, "bbox": [ 460, 204, 31, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 991, "image_id": 891, "category_id": 1, "bbox": [ 530, 210, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 992, "image_id": 893, "category_id": 1, "bbox": [ 445, 215, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 993, "image_id": 894, "category_id": 1, "bbox": [ 592, 216, 45, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 994, "image_id": 895, "category_id": 1, "bbox": [ 429, 221, 55, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 995, "image_id": 896, "category_id": 1, "bbox": [ 487, 212, 38, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 996, "image_id": 896, "category_id": 1, "bbox": [ 530, 222, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 997, "image_id": 897, "category_id": 1, "bbox": [ 527, 191, 28, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 998, "image_id": 898, "category_id": 1, "bbox": [ 606, 200, 26, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 999, "image_id": 908, "category_id": 1, "bbox": [ 451, 209, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1000, "image_id": 909, "category_id": 1, "bbox": [ 536, 205, 27, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 1001, "image_id": 909, "category_id": 1, "bbox": [ 496, 203, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1002, "image_id": 910, "category_id": 1, "bbox": [ 567, 196, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1003, "image_id": 917, "category_id": 1, "bbox": [ 269, 214, 25, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 1004, "image_id": 917, "category_id": 1, "bbox": [ 296, 211, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1005, "image_id": 918, "category_id": 1, "bbox": [ 274, 200, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1006, "image_id": 918, "category_id": 1, "bbox": [ 249, 197, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1007, "image_id": 918, "category_id": 1, "bbox": [ 198, 204, 32, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 1008, "image_id": 919, "category_id": 1, "bbox": [ 186, 203, 30, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1009, "image_id": 919, "category_id": 1, "bbox": [ 158, 199, 32, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 1010, "image_id": 919, "category_id": 1, "bbox": [ 107, 202, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1011, "image_id": 922, "category_id": 1, "bbox": [ 13, 213, 51, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1012, "image_id": 927, "category_id": 1, "bbox": [ 500, 215, 39, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1013, "image_id": 928, "category_id": 1, "bbox": [ 426, 215, 39, 55 ], "height": 55, "occlusion": 1, "ignore": 1 }, { "id": 1014, "image_id": 929, "category_id": 1, "bbox": [ 433, 207, 51, 64 ], "height": 64, "occlusion": 2, "ignore": 1 }, { "id": 1015, "image_id": 931, "category_id": 1, "bbox": [ 580, 194, 58, 127 ], "height": 127, "occlusion": 0, "ignore": 1 }, { "id": 1016, "image_id": 931, "category_id": 1, "bbox": [ 448, 213, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1017, "image_id": 932, "category_id": 1, "bbox": [ 497, 204, 20, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1018, "image_id": 933, "category_id": 1, "bbox": [ 583, 198, 34, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 1019, "image_id": 939, "category_id": 1, "bbox": [ 342, 210, 55, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1020, "image_id": 939, "category_id": 1, "bbox": [ 396, 210, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 1021, "image_id": 939, "category_id": 1, "bbox": [ 412, 210, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1022, "image_id": 940, "category_id": 1, "bbox": [ 443, 211, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1023, "image_id": 940, "category_id": 1, "bbox": [ 404, 205, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1024, "image_id": 940, "category_id": 1, "bbox": [ 386, 208, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1025, "image_id": 940, "category_id": 1, "bbox": [ 350, 212, 36, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 1026, "image_id": 941, "category_id": 1, "bbox": [ 527, 200, 36, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 1027, "image_id": 941, "category_id": 1, "bbox": [ 464, 195, 36, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 1028, "image_id": 941, "category_id": 1, "bbox": [ 431, 199, 34, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 1029, "image_id": 941, "category_id": 1, "bbox": [ 364, 209, 40, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1030, "image_id": 941, "category_id": 1, "bbox": [ 413, 208, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1031, "image_id": 942, "category_id": 1, "bbox": [ 484, 212, 30, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 1032, "image_id": 942, "category_id": 1, "bbox": [ 429, 214, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1033, "image_id": 943, "category_id": 1, "bbox": [ 452, 202, 109, 90 ], "height": 90, "occlusion": 2, "ignore": 1 }, { "id": 1034, "image_id": 944, "category_id": 1, "bbox": [ 560, 208, 55, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 1035, "image_id": 944, "category_id": 1, "bbox": [ 589, 209, 57, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 1036, "image_id": 952, "category_id": 1, "bbox": [ 373, 210, 19, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1037, "image_id": 953, "category_id": 1, "bbox": [ 396, 206, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1038, "image_id": 954, "category_id": 1, "bbox": [ 449, 207, 31, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1039, "image_id": 955, "category_id": 1, "bbox": [ 554, 206, 49, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 1040, "image_id": 958, "category_id": 1, "bbox": [ 403, 209, 34, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 1041, "image_id": 959, "category_id": 1, "bbox": [ 443, 213, 23, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1042, "image_id": 959, "category_id": 1, "bbox": [ 418, 217, 26, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 1043, "image_id": 960, "category_id": 1, "bbox": [ 444, 218, 27, 40 ], "height": 40, "occlusion": 2, "ignore": 1 }, { "id": 1044, "image_id": 961, "category_id": 1, "bbox": [ 495, 218, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1045, "image_id": 961, "category_id": 1, "bbox": [ 507, 211, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1046, "image_id": 961, "category_id": 1, "bbox": [ 419, 222, 27, 52 ], "height": 52, "occlusion": 2, "ignore": 0 }, { "id": 1047, "image_id": 962, "category_id": 1, "bbox": [ 528, 215, 37, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 1048, "image_id": 962, "category_id": 1, "bbox": [ 617, 210, 26, 80 ], "height": 80, "occlusion": 0, "ignore": 1 }, { "id": 1049, "image_id": 963, "category_id": 1, "bbox": [ 398, 209, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1050, "image_id": 964, "category_id": 1, "bbox": [ 437, 210, 25, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 1051, "image_id": 965, "category_id": 1, "bbox": [ 552, 197, 47, 120 ], "height": 120, "occlusion": 0, "ignore": 0 }, { "id": 1052, "image_id": 965, "category_id": 1, "bbox": [ 377, 207, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1053, "image_id": 966, "category_id": 1, "bbox": [ 431, 203, 41, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 1054, "image_id": 967, "category_id": 1, "bbox": [ 525, 201, 110, 120 ], "height": 120, "occlusion": 0, "ignore": 1 }, { "id": 1055, "image_id": 967, "category_id": 1, "bbox": [ 78, 208, 34, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1056, "image_id": 968, "category_id": 1, "bbox": [ 29, 207, 42, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 1057, "image_id": 969, "category_id": 1, "bbox": [ 72, 208, 26, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1058, "image_id": 971, "category_id": 1, "bbox": [ 519, 211, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1059, "image_id": 972, "category_id": 1, "bbox": [ 585, 211, 28, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 1060, "image_id": 975, "category_id": 1, "bbox": [ 601, 213, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1061, "image_id": 976, "category_id": 1, "bbox": [ 601, 217, 19, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1062, "image_id": 977, "category_id": 1, "bbox": [ 602, 217, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1063, "image_id": 978, "category_id": 1, "bbox": [ 611, 217, 19, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1064, "image_id": 981, "category_id": 1, "bbox": [ 477, 223, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 1065, "image_id": 982, "category_id": 1, "bbox": [ 518, 220, 24, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 1066, "image_id": 985, "category_id": 1, "bbox": [ 375, 227, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1067, "image_id": 985, "category_id": 1, "bbox": [ 336, 236, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1068, "image_id": 985, "category_id": 1, "bbox": [ 285, 232, 28, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 1069, "image_id": 985, "category_id": 1, "bbox": [ 123, 227, 23, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1070, "image_id": 986, "category_id": 1, "bbox": [ 584, 222, 38, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1071, "image_id": 986, "category_id": 1, "bbox": [ 533, 225, 36, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 1072, "image_id": 986, "category_id": 1, "bbox": [ 314, 214, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1073, "image_id": 986, "category_id": 1, "bbox": [ 459, 220, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1074, "image_id": 987, "category_id": 1, "bbox": [ 505, 203, 28, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1075, "image_id": 989, "category_id": 1, "bbox": [ 568, 212, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1076, "image_id": 989, "category_id": 1, "bbox": [ 496, 210, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1077, "image_id": 989, "category_id": 1, "bbox": [ 452, 211, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1078, "image_id": 989, "category_id": 1, "bbox": [ 403, 213, 17, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1079, "image_id": 989, "category_id": 1, "bbox": [ 371, 211, 21, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 1080, "image_id": 990, "category_id": 1, "bbox": [ 597, 204, 21, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1081, "image_id": 990, "category_id": 1, "bbox": [ 586, 204, 24, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 1082, "image_id": 990, "category_id": 1, "bbox": [ 535, 207, 28, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1083, "image_id": 990, "category_id": 1, "bbox": [ 556, 207, 30, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1084, "image_id": 990, "category_id": 1, "bbox": [ 477, 211, 24, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1085, "image_id": 990, "category_id": 1, "bbox": [ 465, 207, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1086, "image_id": 990, "category_id": 1, "bbox": [ 430, 215, 28, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 1087, "image_id": 991, "category_id": 1, "bbox": [ 620, 202, 21, 63 ], "height": 63, "occlusion": 2, "ignore": 0 }, { "id": 1088, "image_id": 991, "category_id": 1, "bbox": [ 585, 210, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1089, "image_id": 991, "category_id": 1, "bbox": [ 522, 210, 23, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1090, "image_id": 991, "category_id": 1, "bbox": [ 547, 210, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1091, "image_id": 991, "category_id": 1, "bbox": [ 466, 211, 32, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 1092, "image_id": 992, "category_id": 1, "bbox": [ 596, 214, 31, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1093, "image_id": 992, "category_id": 1, "bbox": [ 503, 211, 28, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 1094, "image_id": 992, "category_id": 1, "bbox": [ 532, 210, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1095, "image_id": 993, "category_id": 1, "bbox": [ 575, 216, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1096, "image_id": 993, "category_id": 1, "bbox": [ 599, 214, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1097, "image_id": 996, "category_id": 1, "bbox": [ 554, 205, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1098, "image_id": 996, "category_id": 1, "bbox": [ 591, 207, 22, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1099, "image_id": 999, "category_id": 1, "bbox": [ 385, 210, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 1100, "image_id": 1001, "category_id": 1, "bbox": [ 440, 202, 25, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1101, "image_id": 1002, "category_id": 1, "bbox": [ 466, 205, 26, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 1102, "image_id": 1003, "category_id": 1, "bbox": [ 502, 204, 30, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 1103, "image_id": 1004, "category_id": 1, "bbox": [ 533, 204, 36, 70 ], "height": 70, "occlusion": 2, "ignore": 0 }, { "id": 1104, "image_id": 1007, "category_id": 1, "bbox": [ 557, 203, 41, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 1105, "image_id": 1007, "category_id": 1, "bbox": [ 542, 198, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1106, "image_id": 1007, "category_id": 1, "bbox": [ 402, 214, 24, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 1107, "image_id": 1007, "category_id": 1, "bbox": [ 350, 214, 25, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 1108, "image_id": 1008, "category_id": 1, "bbox": [ 603, 201, 37, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 1109, "image_id": 1008, "category_id": 1, "bbox": [ 579, 197, 19, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1110, "image_id": 1008, "category_id": 1, "bbox": [ 378, 209, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1111, "image_id": 1008, "category_id": 1, "bbox": [ 425, 210, 22, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 1112, "image_id": 1009, "category_id": 1, "bbox": [ 611, 198, 29, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 1113, "image_id": 1009, "category_id": 1, "bbox": [ 440, 210, 26, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 1114, "image_id": 1010, "category_id": 1, "bbox": [ 412, 222, 20, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 1115, "image_id": 1010, "category_id": 1, "bbox": [ 530, 217, 28, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1116, "image_id": 1010, "category_id": 1, "bbox": [ 471, 217, 27, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 1117, "image_id": 1010, "category_id": 1, "bbox": [ 367, 219, 22, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 1118, "image_id": 1011, "category_id": 1, "bbox": [ 455, 220, 24, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 1119, "image_id": 1011, "category_id": 1, "bbox": [ 558, 219, 29, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 1120, "image_id": 1011, "category_id": 1, "bbox": [ 392, 219, 16, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1121, "image_id": 1011, "category_id": 1, "bbox": [ 403, 223, 17, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 1122, "image_id": 1011, "category_id": 1, "bbox": [ 432, 221, 18, 32 ], "height": 32, "occlusion": 1, "ignore": 0 }, { "id": 1123, "image_id": 1012, "category_id": 1, "bbox": [ 505, 218, 27, 56 ], "height": 56, "occlusion": 2, "ignore": 0 }, { "id": 1124, "image_id": 1012, "category_id": 1, "bbox": [ 594, 210, 29, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 1125, "image_id": 1012, "category_id": 1, "bbox": [ 473, 210, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1126, "image_id": 1012, "category_id": 1, "bbox": [ 461, 212, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1127, "image_id": 1012, "category_id": 1, "bbox": [ 429, 212, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1128, "image_id": 1012, "category_id": 1, "bbox": [ 409, 210, 18, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1129, "image_id": 1013, "category_id": 1, "bbox": [ 556, 219, 35, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1130, "image_id": 1013, "category_id": 1, "bbox": [ 452, 213, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1131, "image_id": 1013, "category_id": 1, "bbox": [ 482, 213, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1132, "image_id": 1013, "category_id": 1, "bbox": [ 496, 214, 27, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1133, "image_id": 1014, "category_id": 1, "bbox": [ 569, 216, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1134, "image_id": 1014, "category_id": 1, "bbox": [ 583, 214, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1135, "image_id": 1014, "category_id": 1, "bbox": [ 506, 212, 29, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 1136, "image_id": 1014, "category_id": 1, "bbox": [ 522, 212, 28, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1137, "image_id": 1014, "category_id": 1, "bbox": [ 619, 227, 27, 78 ], "height": 78, "occlusion": 0, "ignore": 1 }, { "id": 1138, "image_id": 1014, "category_id": 1, "bbox": [ 485, 217, 21, 43 ], "height": 43, "occlusion": 2, "ignore": 0 }, { "id": 1139, "image_id": 1014, "category_id": 1, "bbox": [ 466, 218, 21, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 1140, "image_id": 1016, "category_id": 1, "bbox": [ 619, 221, 21, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1141, "image_id": 1017, "category_id": 1, "bbox": [ 595, 226, 27, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 1142, "image_id": 1017, "category_id": 1, "bbox": [ 619, 222, 23, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 1143, "image_id": 1018, "category_id": 1, "bbox": [ 609, 214, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1144, "image_id": 1018, "category_id": 1, "bbox": [ 550, 214, 29, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 1145, "image_id": 1018, "category_id": 1, "bbox": [ 571, 216, 27, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 1146, "image_id": 1019, "category_id": 1, "bbox": [ 564, 222, 37, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 1147, "image_id": 1019, "category_id": 1, "bbox": [ 585, 220, 31, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1148, "image_id": 1019, "category_id": 1, "bbox": [ 617, 231, 23, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1149, "image_id": 1023, "category_id": 1, "bbox": [ 460, 196, 25, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1150, "image_id": 1024, "category_id": 1, "bbox": [ 530, 209, 27, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 1151, "image_id": 1024, "category_id": 1, "bbox": [ 482, 209, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 1152, "image_id": 1027, "category_id": 1, "bbox": [ 579, 195, 30, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 1153, "image_id": 1032, "category_id": 1, "bbox": [ 481, 205, 24, 30 ], "height": 30, "occlusion": 1, "ignore": 1 }, { "id": 1154, "image_id": 1033, "category_id": 1, "bbox": [ 485, 209, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1155, "image_id": 1033, "category_id": 1, "bbox": [ 470, 210, 18, 34 ], "height": 34, "occlusion": 2, "ignore": 0 }, { "id": 1156, "image_id": 1034, "category_id": 1, "bbox": [ 507, 202, 20, 43 ], "height": 43, "occlusion": 2, "ignore": 0 }, { "id": 1157, "image_id": 1034, "category_id": 1, "bbox": [ 550, 200, 20, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 1158, "image_id": 1034, "category_id": 1, "bbox": [ 473, 205, 18, 38 ], "height": 38, "occlusion": 2, "ignore": 0 }, { "id": 1159, "image_id": 1035, "category_id": 1, "bbox": [ 563, 201, 21, 47 ], "height": 47, "occlusion": 2, "ignore": 0 }, { "id": 1160, "image_id": 1035, "category_id": 1, "bbox": [ 585, 206, 21, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 1161, "image_id": 1036, "category_id": 1, "bbox": [ 617, 200, 25, 75 ], "height": 75, "occlusion": 0, "ignore": 1 }, { "id": 1162, "image_id": 1037, "category_id": 1, "bbox": [ 509, 204, 29, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 1163, "image_id": 1037, "category_id": 1, "bbox": [ 612, 198, 27, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1164, "image_id": 1038, "category_id": 1, "bbox": [ 532, 205, 32, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1165, "image_id": 1038, "category_id": 1, "bbox": [ 482, 204, 49, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1166, "image_id": 1038, "category_id": 1, "bbox": [ 388, 211, 90, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 1167, "image_id": 1039, "category_id": 1, "bbox": [ 512, 202, 28, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 1168, "image_id": 1039, "category_id": 1, "bbox": [ 546, 202, 23, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 1169, "image_id": 1039, "category_id": 1, "bbox": [ 435, 207, 74, 47 ], "height": 47, "occlusion": 1, "ignore": 1 }, { "id": 1170, "image_id": 1039, "category_id": 1, "bbox": [ 412, 206, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1171, "image_id": 1039, "category_id": 1, "bbox": [ 584, 202, 26, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 1172, "image_id": 1039, "category_id": 1, "bbox": [ 385, 208, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1173, "image_id": 1040, "category_id": 1, "bbox": [ 572, 209, 42, 90 ], "height": 90, "occlusion": 1, "ignore": 0 }, { "id": 1174, "image_id": 1040, "category_id": 1, "bbox": [ 456, 210, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1175, "image_id": 1040, "category_id": 1, "bbox": [ 439, 214, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1176, "image_id": 1040, "category_id": 1, "bbox": [ 404, 210, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1177, "image_id": 1040, "category_id": 1, "bbox": [ 491, 206, 87, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 1178, "image_id": 1041, "category_id": 1, "bbox": [ 609, 200, 31, 82 ], "height": 82, "occlusion": 1, "ignore": 0 }, { "id": 1179, "image_id": 1041, "category_id": 1, "bbox": [ 569, 202, 35, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 1180, "image_id": 1041, "category_id": 1, "bbox": [ 534, 208, 30, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 1181, "image_id": 1041, "category_id": 1, "bbox": [ 514, 210, 27, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 1182, "image_id": 1041, "category_id": 1, "bbox": [ 456, 211, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 1183, "image_id": 1041, "category_id": 1, "bbox": [ 477, 208, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 1184, "image_id": 1042, "category_id": 1, "bbox": [ 583, 214, 46, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 1185, "image_id": 1042, "category_id": 1, "bbox": [ 563, 208, 41, 90 ], "height": 90, "occlusion": 1, "ignore": 0 }, { "id": 1186, "image_id": 1042, "category_id": 1, "bbox": [ 520, 217, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1187, "image_id": 1043, "category_id": 1, "bbox": [ 475, 215, 36, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 1188, "image_id": 1043, "category_id": 1, "bbox": [ 507, 214, 33, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 1189, "image_id": 1045, "category_id": 1, "bbox": [ 479, 213, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 1190, "image_id": 1046, "category_id": 1, "bbox": [ 598, 225, 34, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 1191, "image_id": 1052, "category_id": 1, "bbox": [ 474, 211, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 1192, "image_id": 1052, "category_id": 1, "bbox": [ 519, 212, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1193, "image_id": 1052, "category_id": 1, "bbox": [ 504, 212, 25, 38 ], "height": 38, "occlusion": 2, "ignore": 0 }, { "id": 1194, "image_id": 1054, "category_id": 1, "bbox": [ 264, 226, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 1195, "image_id": 1054, "category_id": 1, "bbox": [ 574, 212, 29, 89 ], "height": 89, "occlusion": 2, "ignore": 0 }, { "id": 1196, "image_id": 1054, "category_id": 1, "bbox": [ 191, 222, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1197, "image_id": 1054, "category_id": 1, "bbox": [ 492, 220, 22, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1198, "image_id": 1055, "category_id": 1, "bbox": [ 291, 219, 34, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 1199, "image_id": 1055, "category_id": 1, "bbox": [ 200, 215, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1200, "image_id": 1055, "category_id": 1, "bbox": [ 105, 218, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 1201, "image_id": 1055, "category_id": 1, "bbox": [ 594, 216, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1202, "image_id": 1056, "category_id": 1, "bbox": [ 457, 214, 45, 77 ], "height": 77, "occlusion": 0, "ignore": 1 }, { "id": 1203, "image_id": 1056, "category_id": 1, "bbox": [ 339, 216, 36, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1204, "image_id": 1056, "category_id": 1, "bbox": [ 264, 215, 35, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1205, "image_id": 1057, "category_id": 1, "bbox": [ 532, 212, 57, 74 ], "height": 74, "occlusion": 0, "ignore": 1 }, { "id": 1206, "image_id": 1059, "category_id": 1, "bbox": [ 413, 210, 21, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 1207, "image_id": 1061, "category_id": 1, "bbox": [ 530, 221, 31, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 1208, "image_id": 1066, "category_id": 1, "bbox": [ 449, 206, 28, 49 ], "height": 49, "occlusion": 1, "ignore": 1 }, { "id": 1209, "image_id": 1067, "category_id": 1, "bbox": [ 488, 214, 20, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 1210, "image_id": 1068, "category_id": 1, "bbox": [ 528, 214, 23, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 1211, "image_id": 1068, "category_id": 1, "bbox": [ 501, 216, 23, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 1212, "image_id": 1068, "category_id": 1, "bbox": [ 468, 214, 30, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 1213, "image_id": 1068, "category_id": 1, "bbox": [ 439, 224, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 1214, "image_id": 1069, "category_id": 1, "bbox": [ 601, 209, 27, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 1215, "image_id": 1069, "category_id": 1, "bbox": [ 489, 210, 34, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1216, "image_id": 1069, "category_id": 1, "bbox": [ 416, 215, 42, 45 ], "height": 45, "occlusion": 1, "ignore": 1 }, { "id": 1217, "image_id": 1069, "category_id": 1, "bbox": [ 572, 218, 30, 51 ], "height": 51, "occlusion": 2, "ignore": 0 }, { "id": 1218, "image_id": 1070, "category_id": 1, "bbox": [ 466, 215, 55, 50 ], "height": 50, "occlusion": 1, "ignore": 1 }, { "id": 1219, "image_id": 1070, "category_id": 1, "bbox": [ 565, 226, 30, 70 ], "height": 70, "occlusion": 2, "ignore": 0 }, { "id": 1220, "image_id": 1071, "category_id": 1, "bbox": [ 554, 217, 66, 65 ], "height": 65, "occlusion": 1, "ignore": 1 }, { "id": 1221, "image_id": 1071, "category_id": 1, "bbox": [ 516, 203, 26, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 1222, "image_id": 1072, "category_id": 1, "bbox": [ 459, 211, 37, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 1223, "image_id": 1072, "category_id": 1, "bbox": [ 575, 204, 29, 52 ], "height": 52, "occlusion": 1, "ignore": 1 }, { "id": 1224, "image_id": 1073, "category_id": 1, "bbox": [ 579, 213, 61, 177 ], "height": 177, "occlusion": 0, "ignore": 0 }, { "id": 1225, "image_id": 1075, "category_id": 1, "bbox": [ 517, 203, 37, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 1226, "image_id": 1075, "category_id": 1, "bbox": [ 386, 216, 27, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 1227, "image_id": 1076, "category_id": 1, "bbox": [ 412, 217, 38, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 1228, "image_id": 1077, "category_id": 1, "bbox": [ 496, 218, 55, 150 ], "height": 150, "occlusion": 0, "ignore": 0 }, { "id": 1229, "image_id": 1077, "category_id": 1, "bbox": [ 565, 218, 31, 59 ], "height": 59, "occlusion": 1, "ignore": 0 }, { "id": 1230, "image_id": 1080, "category_id": 1, "bbox": [ 583, 213, 23, 65 ], "height": 65, "occlusion": 0, "ignore": 1 }, { "id": 1231, "image_id": 1083, "category_id": 1, "bbox": [ 507, 219, 17, 31 ], "height": 31, "occlusion": 1, "ignore": 0 }, { "id": 1232, "image_id": 1083, "category_id": 1, "bbox": [ 453, 217, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1233, "image_id": 1083, "category_id": 1, "bbox": [ 476, 222, 19, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 1234, "image_id": 1084, "category_id": 1, "bbox": [ 544, 217, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1235, "image_id": 1084, "category_id": 1, "bbox": [ 559, 212, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1236, "image_id": 1084, "category_id": 1, "bbox": [ 450, 213, 41, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1237, "image_id": 1085, "category_id": 1, "bbox": [ 602, 220, 22, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 1238, "image_id": 1085, "category_id": 1, "bbox": [ 564, 217, 26, 59 ], "height": 59, "occlusion": 1, "ignore": 0 }, { "id": 1239, "image_id": 1085, "category_id": 1, "bbox": [ 615, 211, 29, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 1240, "image_id": 1086, "category_id": 1, "bbox": [ 490, 210, 67, 46 ], "height": 46, "occlusion": 1, "ignore": 1 }, { "id": 1241, "image_id": 1086, "category_id": 1, "bbox": [ 2, 210, 63, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 1242, "image_id": 1086, "category_id": 1, "bbox": [ 559, 220, 24, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 1243, "image_id": 1087, "category_id": 1, "bbox": [ 534, 209, 62, 51 ], "height": 51, "occlusion": 2, "ignore": 1 }, { "id": 1244, "image_id": 1087, "category_id": 1, "bbox": [ 15, 200, 30, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 1245, "image_id": 1088, "category_id": 1, "bbox": [ 604, 210, 36, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 1246, "image_id": 1088, "category_id": 1, "bbox": [ 575, 220, 25, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 1247, "image_id": 1091, "category_id": 1, "bbox": [ 586, 226, 27, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 1248, "image_id": 1091, "category_id": 1, "bbox": [ 542, 227, 38, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 1249, "image_id": 1091, "category_id": 1, "bbox": [ 606, 220, 29, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 1250, "image_id": 1092, "category_id": 1, "bbox": [ 492, 215, 48, 96 ], "height": 96, "occlusion": 0, "ignore": 1 }, { "id": 1251, "image_id": 1092, "category_id": 1, "bbox": [ 567, 227, 53, 116 ], "height": 116, "occlusion": 0, "ignore": 1 }, { "id": 1252, "image_id": 1092, "category_id": 1, "bbox": [ 527, 225, 39, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 1253, "image_id": 1092, "category_id": 1, "bbox": [ 135, 198, 39, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 1254, "image_id": 1093, "category_id": 1, "bbox": [ 342, 205, 71, 174 ], "height": 174, "occlusion": 0, "ignore": 0 }, { "id": 1255, "image_id": 1093, "category_id": 1, "bbox": [ 281, 202, 80, 171 ], "height": 171, "occlusion": 0, "ignore": 1 }, { "id": 1256, "image_id": 1093, "category_id": 1, "bbox": [ 594, 192, 52, 88 ], "height": 88, "occlusion": 0, "ignore": 1 }, { "id": 1257, "image_id": 1094, "category_id": 1, "bbox": [ 1, 208, 101, 260 ], "height": 260, "occlusion": 0, "ignore": 1 }, { "id": 1258, "image_id": 1094, "category_id": 1, "bbox": [ 343, 218, 46, 123 ], "height": 123, "occlusion": 0, "ignore": 0 }, { "id": 1259, "image_id": 1094, "category_id": 1, "bbox": [ 576, 234, 36, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 1260, "image_id": 1094, "category_id": 1, "bbox": [ 619, 232, 24, 91 ], "height": 91, "occlusion": 1, "ignore": 0 }, { "id": 1261, "image_id": 1094, "category_id": 1, "bbox": [ 501, 223, 29, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1262, "image_id": 1094, "category_id": 1, "bbox": [ 407, 205, 33, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 1263, "image_id": 1094, "category_id": 1, "bbox": [ 380, 212, 41, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 1264, "image_id": 1095, "category_id": 1, "bbox": [ 38, 221, 84, 190 ], "height": 190, "occlusion": 0, "ignore": 0 }, { "id": 1265, "image_id": 1095, "category_id": 1, "bbox": [ 463, 231, 45, 121 ], "height": 121, "occlusion": 0, "ignore": 0 }, { "id": 1266, "image_id": 1095, "category_id": 1, "bbox": [ 511, 233, 46, 117 ], "height": 117, "occlusion": 0, "ignore": 1 }, { "id": 1267, "image_id": 1095, "category_id": 1, "bbox": [ 211, 203, 40, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 1268, "image_id": 1095, "category_id": 1, "bbox": [ 182, 201, 28, 96 ], "height": 96, "occlusion": 0, "ignore": 0 }, { "id": 1269, "image_id": 1095, "category_id": 1, "bbox": [ 257, 206, 39, 94 ], "height": 94, "occlusion": 0, "ignore": 0 }, { "id": 1270, "image_id": 1095, "category_id": 1, "bbox": [ 346, 218, 29, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 1271, "image_id": 1095, "category_id": 1, "bbox": [ 510, 218, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1272, "image_id": 1096, "category_id": 1, "bbox": [ 526, 240, 71, 184 ], "height": 184, "occlusion": 0, "ignore": 0 }, { "id": 1273, "image_id": 1096, "category_id": 1, "bbox": [ 601, 235, 39, 209 ], "height": 209, "occlusion": 0, "ignore": 0 }, { "id": 1274, "image_id": 1096, "category_id": 1, "bbox": [ 216, 216, 41, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 1275, "image_id": 1096, "category_id": 1, "bbox": [ 158, 207, 43, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 1276, "image_id": 1096, "category_id": 1, "bbox": [ 263, 208, 50, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 1277, "image_id": 1096, "category_id": 1, "bbox": [ 330, 217, 30, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 1278, "image_id": 1096, "category_id": 1, "bbox": [ 512, 222, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1279, "image_id": 1096, "category_id": 1, "bbox": [ 529, 224, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1280, "image_id": 1096, "category_id": 1, "bbox": [ 501, 216, 14, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 1281, "image_id": 1097, "category_id": 1, "bbox": [ 223, 212, 47, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 1282, "image_id": 1097, "category_id": 1, "bbox": [ 135, 211, 42, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 1283, "image_id": 1097, "category_id": 1, "bbox": [ 295, 209, 53, 125 ], "height": 125, "occlusion": 0, "ignore": 0 }, { "id": 1284, "image_id": 1097, "category_id": 1, "bbox": [ 558, 230, 22, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1285, "image_id": 1097, "category_id": 1, "bbox": [ 536, 223, 25, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1286, "image_id": 1097, "category_id": 1, "bbox": [ 341, 217, 31, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 1287, "image_id": 1097, "category_id": 1, "bbox": [ 511, 220, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1288, "image_id": 1098, "category_id": 1, "bbox": [ 151, 209, 62, 160 ], "height": 160, "occlusion": 0, "ignore": 0 }, { "id": 1289, "image_id": 1098, "category_id": 1, "bbox": [ 464, 235, 25, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 1290, "image_id": 1098, "category_id": 1, "bbox": [ 442, 232, 28, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 1291, "image_id": 1098, "category_id": 1, "bbox": [ 406, 220, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1292, "image_id": 1098, "category_id": 1, "bbox": [ 205, 229, 36, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1293, "image_id": 1098, "category_id": 1, "bbox": [ 17, 212, 75, 179 ], "height": 179, "occlusion": 0, "ignore": 0 }, { "id": 1294, "image_id": 1099, "category_id": 1, "bbox": [ 427, 234, 32, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 1295, "image_id": 1099, "category_id": 1, "bbox": [ 90, 215, 46, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 1296, "image_id": 1099, "category_id": 1, "bbox": [ 403, 231, 35, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 1297, "image_id": 1099, "category_id": 1, "bbox": [ 333, 217, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1298, "image_id": 1099, "category_id": 1, "bbox": [ 129, 212, 31, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1299, "image_id": 1099, "category_id": 1, "bbox": [ 183, 214, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1300, "image_id": 1099, "category_id": 1, "bbox": [ 1, 208, 55, 225 ], "height": 225, "occlusion": 0, "ignore": 1 }, { "id": 1301, "image_id": 1100, "category_id": 1, "bbox": [ 493, 242, 49, 151 ], "height": 151, "occlusion": 0, "ignore": 0 }, { "id": 1302, "image_id": 1100, "category_id": 1, "bbox": [ 13, 225, 63, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 1303, "image_id": 1100, "category_id": 1, "bbox": [ 84, 220, 42, 85 ], "height": 85, "occlusion": 0, "ignore": 1 }, { "id": 1304, "image_id": 1100, "category_id": 1, "bbox": [ 161, 214, 29, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1305, "image_id": 1100, "category_id": 1, "bbox": [ 316, 220, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1306, "image_id": 1100, "category_id": 1, "bbox": [ 446, 231, 67, 162 ], "height": 162, "occlusion": 0, "ignore": 0 }, { "id": 1307, "image_id": 1100, "category_id": 1, "bbox": [ 145, 212, 30, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1308, "image_id": 1100, "category_id": 1, "bbox": [ 255, 213, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 1309, "image_id": 1100, "category_id": 1, "bbox": [ 377, 215, 22, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 1310, "image_id": 1101, "category_id": 1, "bbox": [ 1, 218, 53, 119 ], "height": 119, "occlusion": 0, "ignore": 1 }, { "id": 1311, "image_id": 1101, "category_id": 1, "bbox": [ 175, 220, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1312, "image_id": 1101, "category_id": 1, "bbox": [ 343, 226, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1313, "image_id": 1101, "category_id": 1, "bbox": [ 155, 215, 30, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 1314, "image_id": 1101, "category_id": 1, "bbox": [ 422, 216, 26, 62 ], "height": 62, "occlusion": 2, "ignore": 0 }, { "id": 1315, "image_id": 1101, "category_id": 1, "bbox": [ 276, 215, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1316, "image_id": 1102, "category_id": 1, "bbox": [ 162, 217, 31, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 1317, "image_id": 1102, "category_id": 1, "bbox": [ 362, 230, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1318, "image_id": 1102, "category_id": 1, "bbox": [ 128, 211, 36, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 1319, "image_id": 1102, "category_id": 1, "bbox": [ 475, 211, 35, 83 ], "height": 83, "occlusion": 2, "ignore": 0 }, { "id": 1320, "image_id": 1102, "category_id": 1, "bbox": [ 293, 214, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1321, "image_id": 1103, "category_id": 1, "bbox": [ 115, 226, 45, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 1322, "image_id": 1103, "category_id": 1, "bbox": [ 387, 231, 46, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 1323, "image_id": 1103, "category_id": 1, "bbox": [ 72, 217, 46, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 1324, "image_id": 1103, "category_id": 1, "bbox": [ 305, 217, 23, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1325, "image_id": 1103, "category_id": 1, "bbox": [ 572, 212, 38, 97 ], "height": 97, "occlusion": 2, "ignore": 0 }, { "id": 1326, "image_id": 1103, "category_id": 1, "bbox": [ 153, 226, 31, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 1327, "image_id": 1104, "category_id": 1, "bbox": [ 1, 228, 61, 210 ], "height": 210, "occlusion": 0, "ignore": 1 }, { "id": 1328, "image_id": 1104, "category_id": 1, "bbox": [ 71, 220, 48, 124 ], "height": 124, "occlusion": 0, "ignore": 0 }, { "id": 1329, "image_id": 1104, "category_id": 1, "bbox": [ 474, 231, 57, 172 ], "height": 172, "occlusion": 0, "ignore": 0 }, { "id": 1330, "image_id": 1104, "category_id": 1, "bbox": [ 298, 214, 15, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 1331, "image_id": 1104, "category_id": 1, "bbox": [ 110, 228, 41, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 1332, "image_id": 1104, "category_id": 1, "bbox": [ 312, 212, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 1333, "image_id": 1104, "category_id": 1, "bbox": [ 326, 210, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1334, "image_id": 1105, "category_id": 1, "bbox": [ 1, 244, 55, 203 ], "height": 203, "occlusion": 0, "ignore": 0 }, { "id": 1335, "image_id": 1105, "category_id": 1, "bbox": [ 336, 218, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1336, "image_id": 1105, "category_id": 1, "bbox": [ 308, 213, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1337, "image_id": 1105, "category_id": 1, "bbox": [ 322, 214, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1338, "image_id": 1106, "category_id": 1, "bbox": [ 338, 219, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1339, "image_id": 1106, "category_id": 1, "bbox": [ 308, 220, 15, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 1340, "image_id": 1106, "category_id": 1, "bbox": [ 318, 220, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1341, "image_id": 1106, "category_id": 1, "bbox": [ 285, 218, 19, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 1342, "image_id": 1107, "category_id": 1, "bbox": [ 357, 213, 29, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1343, "image_id": 1107, "category_id": 1, "bbox": [ 299, 216, 15, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1344, "image_id": 1107, "category_id": 1, "bbox": [ 325, 218, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1345, "image_id": 1107, "category_id": 1, "bbox": [ 430, 213, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1346, "image_id": 1107, "category_id": 1, "bbox": [ 309, 215, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 1347, "image_id": 1108, "category_id": 1, "bbox": [ 429, 217, 29, 64 ], "height": 64, "occlusion": 0, "ignore": 1 }, { "id": 1348, "image_id": 1108, "category_id": 1, "bbox": [ 393, 216, 28, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1349, "image_id": 1108, "category_id": 1, "bbox": [ 310, 214, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1350, "image_id": 1108, "category_id": 1, "bbox": [ 332, 219, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1351, "image_id": 1108, "category_id": 1, "bbox": [ 295, 211, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1352, "image_id": 1109, "category_id": 1, "bbox": [ 422, 219, 42, 82 ], "height": 82, "occlusion": 0, "ignore": 1 }, { "id": 1353, "image_id": 1109, "category_id": 1, "bbox": [ 320, 216, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1354, "image_id": 1109, "category_id": 1, "bbox": [ 346, 226, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1355, "image_id": 1109, "category_id": 1, "bbox": [ 304, 216, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1356, "image_id": 1110, "category_id": 1, "bbox": [ 492, 219, 62, 130 ], "height": 130, "occlusion": 0, "ignore": 1 }, { "id": 1357, "image_id": 1110, "category_id": 1, "bbox": [ 330, 216, 30, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 1358, "image_id": 1110, "category_id": 1, "bbox": [ 365, 224, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1359, "image_id": 1110, "category_id": 1, "bbox": [ 314, 218, 26, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 1360, "image_id": 1111, "category_id": 1, "bbox": [ 326, 219, 34, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 1361, "image_id": 1111, "category_id": 1, "bbox": [ 374, 231, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1362, "image_id": 1111, "category_id": 1, "bbox": [ 303, 218, 37, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 1363, "image_id": 1111, "category_id": 1, "bbox": [ 560, 231, 55, 121 ], "height": 121, "occlusion": 0, "ignore": 0 }, { "id": 1364, "image_id": 1112, "category_id": 1, "bbox": [ 296, 219, 41, 109 ], "height": 109, "occlusion": 0, "ignore": 0 }, { "id": 1365, "image_id": 1112, "category_id": 1, "bbox": [ 374, 232, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1366, "image_id": 1112, "category_id": 1, "bbox": [ 269, 220, 47, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 1367, "image_id": 1113, "category_id": 1, "bbox": [ 233, 216, 58, 153 ], "height": 153, "occlusion": 0, "ignore": 0 }, { "id": 1368, "image_id": 1113, "category_id": 1, "bbox": [ 377, 229, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1369, "image_id": 1113, "category_id": 1, "bbox": [ 191, 217, 65, 144 ], "height": 144, "occlusion": 0, "ignore": 0 }, { "id": 1370, "image_id": 1113, "category_id": 1, "bbox": [ 295, 215, 11, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 1371, "image_id": 1114, "category_id": 1, "bbox": [ 89, 208, 92, 234 ], "height": 234, "occlusion": 0, "ignore": 0 }, { "id": 1372, "image_id": 1114, "category_id": 1, "bbox": [ 380, 225, 27, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1373, "image_id": 1114, "category_id": 1, "bbox": [ 43, 214, 86, 227 ], "height": 227, "occlusion": 0, "ignore": 0 }, { "id": 1374, "image_id": 1114, "category_id": 1, "bbox": [ 290, 210, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1375, "image_id": 1115, "category_id": 1, "bbox": [ 380, 249, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1376, "image_id": 1115, "category_id": 1, "bbox": [ 285, 233, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1377, "image_id": 1116, "category_id": 1, "bbox": [ 388, 258, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 1378, "image_id": 1116, "category_id": 1, "bbox": [ 286, 241, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1379, "image_id": 1117, "category_id": 1, "bbox": [ 386, 235, 28, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1380, "image_id": 1117, "category_id": 1, "bbox": [ 274, 215, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1381, "image_id": 1118, "category_id": 1, "bbox": [ 380, 242, 26, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 1382, "image_id": 1118, "category_id": 1, "bbox": [ 255, 221, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1383, "image_id": 1118, "category_id": 1, "bbox": [ 272, 222, 18, 23 ], "height": 23, "occlusion": 0, "ignore": 1 }, { "id": 1384, "image_id": 1119, "category_id": 1, "bbox": [ 376, 215, 29, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1385, "image_id": 1119, "category_id": 1, "bbox": [ 235, 191, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1386, "image_id": 1120, "category_id": 1, "bbox": [ 386, 232, 31, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1387, "image_id": 1120, "category_id": 1, "bbox": [ 229, 217, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1388, "image_id": 1120, "category_id": 1, "bbox": [ 249, 213, 14, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 1389, "image_id": 1120, "category_id": 1, "bbox": [ 260, 212, 14, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 1390, "image_id": 1120, "category_id": 1, "bbox": [ 303, 217, 14, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 1391, "image_id": 1121, "category_id": 1, "bbox": [ 419, 241, 31, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 1392, "image_id": 1121, "category_id": 1, "bbox": [ 218, 216, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1393, "image_id": 1121, "category_id": 1, "bbox": [ 305, 220, 16, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 1394, "image_id": 1121, "category_id": 1, "bbox": [ 254, 211, 17, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1395, "image_id": 1121, "category_id": 1, "bbox": [ 236, 212, 16, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 1396, "image_id": 1122, "category_id": 1, "bbox": [ 473, 247, 48, 123 ], "height": 123, "occlusion": 0, "ignore": 0 }, { "id": 1397, "image_id": 1122, "category_id": 1, "bbox": [ 217, 218, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1398, "image_id": 1122, "category_id": 1, "bbox": [ 254, 210, 16, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1399, "image_id": 1122, "category_id": 1, "bbox": [ 321, 214, 16, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 1400, "image_id": 1122, "category_id": 1, "bbox": [ 237, 213, 17, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 1401, "image_id": 1123, "category_id": 1, "bbox": [ 208, 217, 36, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 1402, "image_id": 1123, "category_id": 1, "bbox": [ 348, 212, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1403, "image_id": 1123, "category_id": 1, "bbox": [ 250, 211, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1404, "image_id": 1123, "category_id": 1, "bbox": [ 264, 206, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1405, "image_id": 1123, "category_id": 1, "bbox": [ 315, 210, 21, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 1406, "image_id": 1124, "category_id": 1, "bbox": [ 150, 220, 49, 106 ], "height": 106, "occlusion": 0, "ignore": 0 }, { "id": 1407, "image_id": 1124, "category_id": 1, "bbox": [ 241, 209, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1408, "image_id": 1124, "category_id": 1, "bbox": [ 365, 213, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1409, "image_id": 1124, "category_id": 1, "bbox": [ 257, 208, 25, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 1410, "image_id": 1124, "category_id": 1, "bbox": [ 321, 214, 23, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 1411, "image_id": 1124, "category_id": 1, "bbox": [ 347, 215, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 1412, "image_id": 1125, "category_id": 1, "bbox": [ 3, 219, 47, 205 ], "height": 205, "occlusion": 0, "ignore": 1 }, { "id": 1413, "image_id": 1125, "category_id": 1, "bbox": [ 220, 204, 29, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 1414, "image_id": 1125, "category_id": 1, "bbox": [ 373, 219, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1415, "image_id": 1125, "category_id": 1, "bbox": [ 236, 211, 26, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 1416, "image_id": 1125, "category_id": 1, "bbox": [ 326, 207, 15, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1417, "image_id": 1125, "category_id": 1, "bbox": [ 345, 216, 15, 22 ], "height": 22, "occlusion": 0, "ignore": 1 }, { "id": 1418, "image_id": 1126, "category_id": 1, "bbox": [ 181, 207, 36, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 1419, "image_id": 1126, "category_id": 1, "bbox": [ 390, 221, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1420, "image_id": 1126, "category_id": 1, "bbox": [ 207, 208, 32, 90 ], "height": 90, "occlusion": 0, "ignore": 0 }, { "id": 1421, "image_id": 1126, "category_id": 1, "bbox": [ 314, 205, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1422, "image_id": 1126, "category_id": 1, "bbox": [ 325, 207, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1423, "image_id": 1126, "category_id": 1, "bbox": [ 344, 213, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1424, "image_id": 1127, "category_id": 1, "bbox": [ 84, 210, 61, 142 ], "height": 142, "occlusion": 0, "ignore": 0 }, { "id": 1425, "image_id": 1127, "category_id": 1, "bbox": [ 410, 221, 37, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 1426, "image_id": 1127, "category_id": 1, "bbox": [ 131, 220, 49, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 1427, "image_id": 1127, "category_id": 1, "bbox": [ 315, 209, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1428, "image_id": 1127, "category_id": 1, "bbox": [ 300, 209, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1429, "image_id": 1127, "category_id": 1, "bbox": [ 336, 213, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1430, "image_id": 1127, "category_id": 1, "bbox": [ 346, 213, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1431, "image_id": 1128, "category_id": 1, "bbox": [ 469, 230, 55, 130 ], "height": 130, "occlusion": 0, "ignore": 0 }, { "id": 1432, "image_id": 1128, "category_id": 1, "bbox": [ 314, 210, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1433, "image_id": 1128, "category_id": 1, "bbox": [ 302, 210, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1434, "image_id": 1128, "category_id": 1, "bbox": [ 337, 215, 17, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1435, "image_id": 1128, "category_id": 1, "bbox": [ 351, 217, 17, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 1436, "image_id": 1128, "category_id": 1, "bbox": [ 141, 206, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1437, "image_id": 1129, "category_id": 1, "bbox": [ 316, 213, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1438, "image_id": 1129, "category_id": 1, "bbox": [ 288, 215, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1439, "image_id": 1129, "category_id": 1, "bbox": [ 342, 211, 26, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1440, "image_id": 1129, "category_id": 1, "bbox": [ 355, 220, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1441, "image_id": 1129, "category_id": 1, "bbox": [ 102, 206, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1442, "image_id": 1130, "category_id": 1, "bbox": [ 291, 220, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1443, "image_id": 1130, "category_id": 1, "bbox": [ 263, 212, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1444, "image_id": 1130, "category_id": 1, "bbox": [ 327, 220, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1445, "image_id": 1130, "category_id": 1, "bbox": [ 34, 196, 40, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1446, "image_id": 1130, "category_id": 1, "bbox": [ 346, 221, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1447, "image_id": 1131, "category_id": 1, "bbox": [ 259, 210, 26, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1448, "image_id": 1131, "category_id": 1, "bbox": [ 233, 211, 27, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 1449, "image_id": 1131, "category_id": 1, "bbox": [ 293, 220, 26, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1450, "image_id": 1131, "category_id": 1, "bbox": [ 314, 219, 30, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 1451, "image_id": 1132, "category_id": 1, "bbox": [ 249, 214, 29, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 1452, "image_id": 1132, "category_id": 1, "bbox": [ 279, 224, 27, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 1453, "image_id": 1132, "category_id": 1, "bbox": [ 301, 224, 35, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1454, "image_id": 1133, "category_id": 1, "bbox": [ 295, 223, 39, 94 ], "height": 94, "occlusion": 0, "ignore": 0 }, { "id": 1455, "image_id": 1133, "category_id": 1, "bbox": [ 324, 224, 34, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 1456, "image_id": 1134, "category_id": 1, "bbox": [ 314, 227, 36, 108 ], "height": 108, "occlusion": 1, "ignore": 0 }, { "id": 1457, "image_id": 1134, "category_id": 1, "bbox": [ 351, 228, 44, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 1458, "image_id": 1134, "category_id": 1, "bbox": [ 335, 228, 30, 108 ], "height": 108, "occlusion": 1, "ignore": 0 }, { "id": 1459, "image_id": 1135, "category_id": 1, "bbox": [ 320, 232, 49, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 1460, "image_id": 1135, "category_id": 1, "bbox": [ 380, 234, 48, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 1461, "image_id": 1135, "category_id": 1, "bbox": [ 360, 234, 33, 133 ], "height": 133, "occlusion": 1, "ignore": 0 }, { "id": 1462, "image_id": 1136, "category_id": 1, "bbox": [ 349, 248, 59, 157 ], "height": 157, "occlusion": 1, "ignore": 0 }, { "id": 1463, "image_id": 1136, "category_id": 1, "bbox": [ 425, 242, 55, 176 ], "height": 176, "occlusion": 0, "ignore": 0 }, { "id": 1464, "image_id": 1136, "category_id": 1, "bbox": [ 389, 246, 49, 160 ], "height": 160, "occlusion": 1, "ignore": 0 }, { "id": 1465, "image_id": 1136, "category_id": 1, "bbox": [ 361, 223, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 1466, "image_id": 1136, "category_id": 1, "bbox": [ 253, 218, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 1467, "image_id": 1136, "category_id": 1, "bbox": [ 373, 223, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1468, "image_id": 1137, "category_id": 1, "bbox": [ 415, 253, 70, 215 ], "height": 215, "occlusion": 0, "ignore": 0 }, { "id": 1469, "image_id": 1137, "category_id": 1, "bbox": [ 512, 248, 83, 249 ], "height": 249, "occlusion": 0, "ignore": 0 }, { "id": 1470, "image_id": 1137, "category_id": 1, "bbox": [ 462, 254, 60, 231 ], "height": 231, "occlusion": 0, "ignore": 0 }, { "id": 1471, "image_id": 1137, "category_id": 1, "bbox": [ 380, 223, 25, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1472, "image_id": 1137, "category_id": 1, "bbox": [ 369, 222, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1473, "image_id": 1137, "category_id": 1, "bbox": [ 258, 218, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1474, "image_id": 1137, "category_id": 1, "bbox": [ 446, 217, 45, 106 ], "height": 106, "occlusion": 2, "ignore": 0 }, { "id": 1475, "image_id": 1138, "category_id": 1, "bbox": [ 466, 214, 49, 112 ], "height": 112, "occlusion": 1, "ignore": 1 }, { "id": 1476, "image_id": 1138, "category_id": 1, "bbox": [ 402, 220, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1477, "image_id": 1138, "category_id": 1, "bbox": [ 535, 284, 94, 223 ], "height": 223, "occlusion": 1, "ignore": 0 }, { "id": 1478, "image_id": 1138, "category_id": 1, "bbox": [ 388, 219, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1479, "image_id": 1138, "category_id": 1, "bbox": [ 275, 217, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1480, "image_id": 1139, "category_id": 1, "bbox": [ 477, 219, 54, 148 ], "height": 148, "occlusion": 0, "ignore": 1 }, { "id": 1481, "image_id": 1139, "category_id": 1, "bbox": [ 413, 223, 19, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1482, "image_id": 1139, "category_id": 1, "bbox": [ 395, 221, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1483, "image_id": 1139, "category_id": 1, "bbox": [ 280, 217, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1484, "image_id": 1140, "category_id": 1, "bbox": [ 500, 217, 71, 191 ], "height": 191, "occlusion": 0, "ignore": 1 }, { "id": 1485, "image_id": 1140, "category_id": 1, "bbox": [ 407, 224, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1486, "image_id": 1140, "category_id": 1, "bbox": [ 393, 223, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1487, "image_id": 1141, "category_id": 1, "bbox": [ 581, 225, 59, 228 ], "height": 228, "occlusion": 0, "ignore": 1 }, { "id": 1488, "image_id": 1141, "category_id": 1, "bbox": [ 400, 224, 21, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 1489, "image_id": 1141, "category_id": 1, "bbox": [ 291, 215, 46, 36 ], "height": 36, "occlusion": 2, "ignore": 1 }, { "id": 1490, "image_id": 1141, "category_id": 1, "bbox": [ 383, 223, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1491, "image_id": 1142, "category_id": 1, "bbox": [ 359, 229, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1492, "image_id": 1142, "category_id": 1, "bbox": [ 240, 207, 42, 46 ], "height": 46, "occlusion": 2, "ignore": 1 }, { "id": 1493, "image_id": 1142, "category_id": 1, "bbox": [ 182, 220, 28, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1494, "image_id": 1142, "category_id": 1, "bbox": [ 344, 222, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1495, "image_id": 1143, "category_id": 1, "bbox": [ 169, 220, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1496, "image_id": 1143, "category_id": 1, "bbox": [ 52, 198, 61, 46 ], "height": 46, "occlusion": 2, "ignore": 1 }, { "id": 1497, "image_id": 1143, "category_id": 1, "bbox": [ 190, 224, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1498, "image_id": 1146, "category_id": 1, "bbox": [ 379, 228, 37, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 1499, "image_id": 1146, "category_id": 1, "bbox": [ 476, 222, 39, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 1500, "image_id": 1146, "category_id": 1, "bbox": [ 528, 219, 113, 102 ], "height": 102, "occlusion": 0, "ignore": 1 }, { "id": 1501, "image_id": 1147, "category_id": 1, "bbox": [ 129, 214, 55, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 1502, "image_id": 1147, "category_id": 1, "bbox": [ 266, 218, 44, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 1503, "image_id": 1147, "category_id": 1, "bbox": [ 346, 211, 87, 113 ], "height": 113, "occlusion": 0, "ignore": 1 }, { "id": 1504, "image_id": 1147, "category_id": 1, "bbox": [ 496, 230, 45, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 1505, "image_id": 1147, "category_id": 1, "bbox": [ 425, 222, 39, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 1506, "image_id": 1148, "category_id": 1, "bbox": [ 121, 220, 66, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 1507, "image_id": 1148, "category_id": 1, "bbox": [ 295, 210, 55, 142 ], "height": 142, "occlusion": 0, "ignore": 1 }, { "id": 1508, "image_id": 1148, "category_id": 1, "bbox": [ 485, 231, 52, 142 ], "height": 142, "occlusion": 0, "ignore": 0 }, { "id": 1509, "image_id": 1148, "category_id": 1, "bbox": [ 340, 225, 37, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 1510, "image_id": 1148, "category_id": 1, "bbox": [ 360, 220, 39, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 1511, "image_id": 1148, "category_id": 1, "bbox": [ 264, 220, 38, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 1512, "image_id": 1149, "category_id": 1, "bbox": [ 3, 220, 59, 164 ], "height": 164, "occlusion": 0, "ignore": 0 }, { "id": 1513, "image_id": 1149, "category_id": 1, "bbox": [ 212, 200, 75, 196 ], "height": 196, "occlusion": 0, "ignore": 1 }, { "id": 1514, "image_id": 1149, "category_id": 1, "bbox": [ 526, 235, 76, 200 ], "height": 200, "occlusion": 0, "ignore": 0 }, { "id": 1515, "image_id": 1149, "category_id": 1, "bbox": [ 271, 218, 56, 146 ], "height": 146, "occlusion": 0, "ignore": 0 }, { "id": 1516, "image_id": 1149, "category_id": 1, "bbox": [ 321, 217, 45, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 1517, "image_id": 1149, "category_id": 1, "bbox": [ 379, 211, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1518, "image_id": 1150, "category_id": 1, "bbox": [ 98, 204, 165, 253 ], "height": 253, "occlusion": 0, "ignore": 1 }, { "id": 1519, "image_id": 1150, "category_id": 1, "bbox": [ 351, 215, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1520, "image_id": 1150, "category_id": 1, "bbox": [ 262, 220, 59, 135 ], "height": 135, "occlusion": 0, "ignore": 0 }, { "id": 1521, "image_id": 1150, "category_id": 1, "bbox": [ 369, 212, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1522, "image_id": 1151, "category_id": 1, "bbox": [ 20, 230, 80, 210 ], "height": 210, "occlusion": 0, "ignore": 0 }, { "id": 1523, "image_id": 1151, "category_id": 1, "bbox": [ 351, 215, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1524, "image_id": 1151, "category_id": 1, "bbox": [ 200, 218, 67, 163 ], "height": 163, "occlusion": 0, "ignore": 0 }, { "id": 1525, "image_id": 1151, "category_id": 1, "bbox": [ 152, 215, 58, 181 ], "height": 181, "occlusion": 0, "ignore": 0 }, { "id": 1526, "image_id": 1151, "category_id": 1, "bbox": [ 364, 212, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1527, "image_id": 1151, "category_id": 1, "bbox": [ 71, 231, 98, 218 ], "height": 218, "occlusion": 0, "ignore": 0 }, { "id": 1528, "image_id": 1152, "category_id": 1, "bbox": [ 322, 218, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1529, "image_id": 1152, "category_id": 1, "bbox": [ 90, 221, 89, 191 ], "height": 191, "occlusion": 0, "ignore": 0 }, { "id": 1530, "image_id": 1152, "category_id": 1, "bbox": [ 6, 221, 88, 231 ], "height": 231, "occlusion": 0, "ignore": 0 }, { "id": 1531, "image_id": 1152, "category_id": 1, "bbox": [ 335, 219, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1532, "image_id": 1152, "category_id": 1, "bbox": [ 352, 216, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1533, "image_id": 1153, "category_id": 1, "bbox": [ 295, 216, 18, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1534, "image_id": 1153, "category_id": 1, "bbox": [ 307, 215, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1535, "image_id": 1153, "category_id": 1, "bbox": [ 335, 216, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1536, "image_id": 1154, "category_id": 1, "bbox": [ 287, 213, 21, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1537, "image_id": 1154, "category_id": 1, "bbox": [ 298, 210, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1538, "image_id": 1154, "category_id": 1, "bbox": [ 342, 214, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1539, "image_id": 1155, "category_id": 1, "bbox": [ 290, 216, 21, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1540, "image_id": 1155, "category_id": 1, "bbox": [ 302, 212, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1541, "image_id": 1155, "category_id": 1, "bbox": [ 358, 220, 26, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1542, "image_id": 1156, "category_id": 1, "bbox": [ 295, 222, 20, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1543, "image_id": 1156, "category_id": 1, "bbox": [ 307, 222, 25, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 1544, "image_id": 1156, "category_id": 1, "bbox": [ 378, 223, 33, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 1545, "image_id": 1156, "category_id": 1, "bbox": [ 250, 219, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1546, "image_id": 1157, "category_id": 1, "bbox": [ 291, 215, 29, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 1547, "image_id": 1157, "category_id": 1, "bbox": [ 309, 216, 31, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 1548, "image_id": 1157, "category_id": 1, "bbox": [ 429, 213, 47, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 1549, "image_id": 1158, "category_id": 1, "bbox": [ 269, 215, 37, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 1550, "image_id": 1158, "category_id": 1, "bbox": [ 296, 213, 35, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 1551, "image_id": 1158, "category_id": 1, "bbox": [ 580, 216, 61, 274 ], "height": 274, "occlusion": 0, "ignore": 0 }, { "id": 1552, "image_id": 1158, "category_id": 1, "bbox": [ 336, 213, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1553, "image_id": 1159, "category_id": 1, "bbox": [ 230, 213, 41, 121 ], "height": 121, "occlusion": 0, "ignore": 0 }, { "id": 1554, "image_id": 1159, "category_id": 1, "bbox": [ 263, 213, 40, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 1555, "image_id": 1159, "category_id": 1, "bbox": [ 378, 216, 28, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1556, "image_id": 1160, "category_id": 1, "bbox": [ 157, 211, 52, 151 ], "height": 151, "occlusion": 0, "ignore": 0 }, { "id": 1557, "image_id": 1160, "category_id": 1, "bbox": [ 195, 206, 53, 155 ], "height": 155, "occlusion": 0, "ignore": 0 }, { "id": 1558, "image_id": 1161, "category_id": 1, "bbox": [ 64, 241, 71, 189 ], "height": 189, "occlusion": 0, "ignore": 0 }, { "id": 1559, "image_id": 1161, "category_id": 1, "bbox": [ 120, 233, 67, 184 ], "height": 184, "occlusion": 0, "ignore": 0 }, { "id": 1560, "image_id": 1162, "category_id": 1, "bbox": [ 1, 213, 90, 276 ], "height": 276, "occlusion": 0, "ignore": 0 }, { "id": 1561, "image_id": 1162, "category_id": 1, "bbox": [ 533, 227, 32, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 1562, "image_id": 1163, "category_id": 1, "bbox": [ 227, 214, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1563, "image_id": 1163, "category_id": 1, "bbox": [ 582, 243, 38, 63 ], "height": 63, "occlusion": 2, "ignore": 0 }, { "id": 1564, "image_id": 1164, "category_id": 1, "bbox": [ 225, 219, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1565, "image_id": 1164, "category_id": 1, "bbox": [ 332, 223, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1566, "image_id": 1165, "category_id": 1, "bbox": [ 238, 216, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1567, "image_id": 1165, "category_id": 1, "bbox": [ 355, 220, 17, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1568, "image_id": 1166, "category_id": 1, "bbox": [ 247, 231, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1569, "image_id": 1166, "category_id": 1, "bbox": [ 378, 230, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1570, "image_id": 1167, "category_id": 1, "bbox": [ 216, 220, 27, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1571, "image_id": 1167, "category_id": 1, "bbox": [ 364, 220, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1572, "image_id": 1167, "category_id": 1, "bbox": [ 199, 220, 26, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 1573, "image_id": 1168, "category_id": 1, "bbox": [ 174, 200, 32, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 1574, "image_id": 1168, "category_id": 1, "bbox": [ 152, 200, 31, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 1575, "image_id": 1168, "category_id": 1, "bbox": [ 356, 206, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1576, "image_id": 1169, "category_id": 1, "bbox": [ 130, 220, 35, 90 ], "height": 90, "occlusion": 0, "ignore": 0 }, { "id": 1577, "image_id": 1169, "category_id": 1, "bbox": [ 91, 216, 37, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 1578, "image_id": 1169, "category_id": 1, "bbox": [ 357, 218, 26, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1579, "image_id": 1170, "category_id": 1, "bbox": [ 63, 225, 46, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 1580, "image_id": 1170, "category_id": 1, "bbox": [ 19, 224, 46, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 1581, "image_id": 1170, "category_id": 1, "bbox": [ 364, 223, 32, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 1582, "image_id": 1171, "category_id": 1, "bbox": [ 392, 221, 38, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 1583, "image_id": 1172, "category_id": 1, "bbox": [ 469, 225, 45, 130 ], "height": 130, "occlusion": 0, "ignore": 0 }, { "id": 1584, "image_id": 1173, "category_id": 1, "bbox": [ 306, 212, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1585, "image_id": 1173, "category_id": 1, "bbox": [ 294, 211, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1586, "image_id": 1173, "category_id": 1, "bbox": [ 279, 212, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1587, "image_id": 1174, "category_id": 1, "bbox": [ 310, 209, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1588, "image_id": 1174, "category_id": 1, "bbox": [ 294, 208, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1589, "image_id": 1174, "category_id": 1, "bbox": [ 277, 203, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1590, "image_id": 1175, "category_id": 1, "bbox": [ 306, 213, 17, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1591, "image_id": 1175, "category_id": 1, "bbox": [ 287, 215, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1592, "image_id": 1175, "category_id": 1, "bbox": [ 264, 214, 26, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1593, "image_id": 1176, "category_id": 1, "bbox": [ 290, 211, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1594, "image_id": 1176, "category_id": 1, "bbox": [ 268, 215, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1595, "image_id": 1176, "category_id": 1, "bbox": [ 248, 210, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1596, "image_id": 1177, "category_id": 1, "bbox": [ 273, 216, 28, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1597, "image_id": 1177, "category_id": 1, "bbox": [ 248, 217, 23, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1598, "image_id": 1177, "category_id": 1, "bbox": [ 222, 217, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1599, "image_id": 1178, "category_id": 1, "bbox": [ 251, 214, 31, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 1600, "image_id": 1178, "category_id": 1, "bbox": [ 223, 221, 30, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1601, "image_id": 1178, "category_id": 1, "bbox": [ 202, 220, 29, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 1602, "image_id": 1179, "category_id": 1, "bbox": [ 228, 210, 40, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 1603, "image_id": 1179, "category_id": 1, "bbox": [ 191, 220, 36, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 1604, "image_id": 1179, "category_id": 1, "bbox": [ 161, 211, 40, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 1605, "image_id": 1180, "category_id": 1, "bbox": [ 147, 213, 68, 162 ], "height": 162, "occlusion": 0, "ignore": 0 }, { "id": 1606, "image_id": 1180, "category_id": 1, "bbox": [ 102, 226, 58, 161 ], "height": 161, "occlusion": 0, "ignore": 0 }, { "id": 1607, "image_id": 1180, "category_id": 1, "bbox": [ 45, 215, 64, 177 ], "height": 177, "occlusion": 0, "ignore": 0 }, { "id": 1608, "image_id": 1181, "category_id": 1, "bbox": [ 1, 206, 62, 306 ], "height": 306, "occlusion": 0, "ignore": 1 }, { "id": 1609, "image_id": 1188, "category_id": 1, "bbox": [ 418, 231, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1610, "image_id": 1189, "category_id": 1, "bbox": [ 456, 232, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1611, "image_id": 1190, "category_id": 1, "bbox": [ 484, 231, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1612, "image_id": 1191, "category_id": 1, "bbox": [ 511, 247, 23, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1613, "image_id": 1192, "category_id": 1, "bbox": [ 513, 223, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1614, "image_id": 1193, "category_id": 1, "bbox": [ 511, 213, 25, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 1615, "image_id": 1194, "category_id": 1, "bbox": [ 506, 226, 31, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 1616, "image_id": 1195, "category_id": 1, "bbox": [ 467, 225, 36, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 1617, "image_id": 1196, "category_id": 1, "bbox": [ 351, 224, 38, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 1618, "image_id": 1197, "category_id": 1, "bbox": [ 162, 225, 36, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 1619, "image_id": 1198, "category_id": 1, "bbox": [ 556, 240, 47, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 1620, "image_id": 1199, "category_id": 1, "bbox": [ 224, 240, 47, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 1621, "image_id": 1207, "category_id": 1, "bbox": [ 232, 210, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 1622, "image_id": 1208, "category_id": 1, "bbox": [ 243, 210, 15, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 1623, "image_id": 1211, "category_id": 1, "bbox": [ 492, 208, 23, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 1624, "image_id": 1211, "category_id": 1, "bbox": [ 307, 209, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 1625, "image_id": 1211, "category_id": 1, "bbox": [ 122, 206, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1626, "image_id": 1212, "category_id": 1, "bbox": [ 484, 215, 28, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1627, "image_id": 1212, "category_id": 1, "bbox": [ 305, 205, 22, 38 ], "height": 38, "occlusion": 2, "ignore": 1 }, { "id": 1628, "image_id": 1212, "category_id": 1, "bbox": [ 94, 204, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1629, "image_id": 1212, "category_id": 1, "bbox": [ 372, 205, 19, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 1630, "image_id": 1213, "category_id": 1, "bbox": [ 459, 208, 28, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 1631, "image_id": 1213, "category_id": 1, "bbox": [ 291, 206, 20, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 1632, "image_id": 1213, "category_id": 1, "bbox": [ 41, 196, 37, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1633, "image_id": 1213, "category_id": 1, "bbox": [ 332, 200, 21, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 1634, "image_id": 1213, "category_id": 1, "bbox": [ 251, 200, 29, 37 ], "height": 37, "occlusion": 2, "ignore": 1 }, { "id": 1635, "image_id": 1214, "category_id": 1, "bbox": [ 439, 210, 30, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 1636, "image_id": 1214, "category_id": 1, "bbox": [ 287, 210, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1637, "image_id": 1214, "category_id": 1, "bbox": [ 6, 202, 40, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 1638, "image_id": 1214, "category_id": 1, "bbox": [ 208, 196, 34, 41 ], "height": 41, "occlusion": 1, "ignore": 1 }, { "id": 1639, "image_id": 1215, "category_id": 1, "bbox": [ 418, 208, 36, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 1640, "image_id": 1215, "category_id": 1, "bbox": [ 307, 207, 26, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 1641, "image_id": 1215, "category_id": 1, "bbox": [ 174, 196, 36, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1642, "image_id": 1215, "category_id": 1, "bbox": [ 269, 203, 28, 27 ], "height": 27, "occlusion": 0, "ignore": 1 }, { "id": 1643, "image_id": 1216, "category_id": 1, "bbox": [ 394, 205, 39, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 1644, "image_id": 1216, "category_id": 1, "bbox": [ 375, 207, 27, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 1645, "image_id": 1216, "category_id": 1, "bbox": [ 31, 209, 40, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 1646, "image_id": 1216, "category_id": 1, "bbox": [ 277, 200, 38, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1647, "image_id": 1216, "category_id": 1, "bbox": [ 184, 198, 37, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 1648, "image_id": 1217, "category_id": 1, "bbox": [ 353, 206, 55, 115 ], "height": 115, "occlusion": 0, "ignore": 0 }, { "id": 1649, "image_id": 1217, "category_id": 1, "bbox": [ 476, 206, 28, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1650, "image_id": 1217, "category_id": 1, "bbox": [ 119, 208, 36, 83 ], "height": 83, "occlusion": 2, "ignore": 0 }, { "id": 1651, "image_id": 1217, "category_id": 1, "bbox": [ 235, 195, 28, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1652, "image_id": 1218, "category_id": 1, "bbox": [ 563, 207, 32, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 1653, "image_id": 1218, "category_id": 1, "bbox": [ 206, 209, 40, 84 ], "height": 84, "occlusion": 1, "ignore": 0 }, { "id": 1654, "image_id": 1218, "category_id": 1, "bbox": [ 236, 217, 56, 120 ], "height": 120, "occlusion": 1, "ignore": 0 }, { "id": 1655, "image_id": 1218, "category_id": 1, "bbox": [ 353, 190, 43, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 1656, "image_id": 1218, "category_id": 1, "bbox": [ 263, 200, 32, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 1657, "image_id": 1219, "category_id": 1, "bbox": [ 612, 202, 28, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 1658, "image_id": 1219, "category_id": 1, "bbox": [ 284, 210, 36, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 1659, "image_id": 1219, "category_id": 1, "bbox": [ 77, 213, 55, 125 ], "height": 125, "occlusion": 2, "ignore": 0 }, { "id": 1660, "image_id": 1219, "category_id": 1, "bbox": [ 359, 205, 46, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1661, "image_id": 1220, "category_id": 1, "bbox": [ 345, 215, 40, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 1662, "image_id": 1220, "category_id": 1, "bbox": [ 270, 198, 28, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 1663, "image_id": 1221, "category_id": 1, "bbox": [ 404, 212, 38, 82 ], "height": 82, "occlusion": 1, "ignore": 0 }, { "id": 1664, "image_id": 1221, "category_id": 1, "bbox": [ 325, 199, 17, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1665, "image_id": 1221, "category_id": 1, "bbox": [ 273, 199, 25, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 1666, "image_id": 1221, "category_id": 1, "bbox": [ 367, 199, 36, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1667, "image_id": 1222, "category_id": 1, "bbox": [ 459, 211, 32, 72 ], "height": 72, "occlusion": 2, "ignore": 0 }, { "id": 1668, "image_id": 1222, "category_id": 1, "bbox": [ 274, 200, 25, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 1669, "image_id": 1222, "category_id": 1, "bbox": [ 369, 201, 31, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 1670, "image_id": 1222, "category_id": 1, "bbox": [ 325, 198, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1671, "image_id": 1222, "category_id": 1, "bbox": [ 315, 198, 15, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1672, "image_id": 1223, "category_id": 1, "bbox": [ 503, 208, 32, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 1673, "image_id": 1223, "category_id": 1, "bbox": [ 443, 200, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1674, "image_id": 1223, "category_id": 1, "bbox": [ 274, 201, 30, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 1675, "image_id": 1223, "category_id": 1, "bbox": [ 368, 203, 32, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 1676, "image_id": 1223, "category_id": 1, "bbox": [ 326, 198, 15, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1677, "image_id": 1223, "category_id": 1, "bbox": [ 313, 199, 17, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1678, "image_id": 1224, "category_id": 1, "bbox": [ 557, 206, 32, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 1679, "image_id": 1224, "category_id": 1, "bbox": [ 367, 200, 37, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 1680, "image_id": 1224, "category_id": 1, "bbox": [ 326, 199, 17, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1681, "image_id": 1224, "category_id": 1, "bbox": [ 315, 200, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1682, "image_id": 1224, "category_id": 1, "bbox": [ 449, 200, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1683, "image_id": 1225, "category_id": 1, "bbox": [ 373, 197, 37, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 1684, "image_id": 1225, "category_id": 1, "bbox": [ 269, 195, 35, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 1685, "image_id": 1226, "category_id": 1, "bbox": [ 289, 197, 35, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 1686, "image_id": 1226, "category_id": 1, "bbox": [ 335, 192, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1687, "image_id": 1226, "category_id": 1, "bbox": [ 477, 189, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1688, "image_id": 1227, "category_id": 1, "bbox": [ 305, 191, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1689, "image_id": 1227, "category_id": 1, "bbox": [ 347, 187, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1690, "image_id": 1227, "category_id": 1, "bbox": [ 412, 193, 39, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 1691, "image_id": 1227, "category_id": 1, "bbox": [ 500, 189, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1692, "image_id": 1228, "category_id": 1, "bbox": [ 305, 195, 35, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1693, "image_id": 1228, "category_id": 1, "bbox": [ 355, 194, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1694, "image_id": 1228, "category_id": 1, "bbox": [ 414, 194, 43, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1695, "image_id": 1229, "category_id": 1, "bbox": [ 309, 195, 33, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1696, "image_id": 1229, "category_id": 1, "bbox": [ 355, 195, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1697, "image_id": 1229, "category_id": 1, "bbox": [ 419, 194, 35, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 1698, "image_id": 1229, "category_id": 1, "bbox": [ 505, 191, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1699, "image_id": 1230, "category_id": 1, "bbox": [ 307, 196, 32, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1700, "image_id": 1230, "category_id": 1, "bbox": [ 357, 195, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1701, "image_id": 1230, "category_id": 1, "bbox": [ 416, 197, 36, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 1702, "image_id": 1230, "category_id": 1, "bbox": [ 504, 189, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1703, "image_id": 1231, "category_id": 1, "bbox": [ 275, 204, 54, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1704, "image_id": 1231, "category_id": 1, "bbox": [ 343, 192, 36, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1705, "image_id": 1231, "category_id": 1, "bbox": [ 426, 193, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1706, "image_id": 1231, "category_id": 1, "bbox": [ 503, 192, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1707, "image_id": 1232, "category_id": 1, "bbox": [ 281, 204, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1708, "image_id": 1232, "category_id": 1, "bbox": [ 319, 194, 27, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1709, "image_id": 1232, "category_id": 1, "bbox": [ 247, 202, 29, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1710, "image_id": 1232, "category_id": 1, "bbox": [ 508, 195, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1711, "image_id": 1232, "category_id": 1, "bbox": [ 429, 196, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1712, "image_id": 1232, "category_id": 1, "bbox": [ 357, 196, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1713, "image_id": 1233, "category_id": 1, "bbox": [ 206, 207, 60, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 1714, "image_id": 1233, "category_id": 1, "bbox": [ 295, 202, 31, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 1715, "image_id": 1233, "category_id": 1, "bbox": [ 521, 198, 23, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 1716, "image_id": 1233, "category_id": 1, "bbox": [ 439, 203, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1717, "image_id": 1233, "category_id": 1, "bbox": [ 343, 206, 24, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1718, "image_id": 1234, "category_id": 1, "bbox": [ 241, 211, 36, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1719, "image_id": 1234, "category_id": 1, "bbox": [ 122, 212, 36, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 1720, "image_id": 1234, "category_id": 1, "bbox": [ 152, 211, 36, 56 ], "height": 56, "occlusion": 1, "ignore": 1 }, { "id": 1721, "image_id": 1234, "category_id": 1, "bbox": [ 279, 213, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1722, "image_id": 1234, "category_id": 1, "bbox": [ 433, 212, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 1723, "image_id": 1235, "category_id": 1, "bbox": [ 72, 208, 59, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 1724, "image_id": 1235, "category_id": 1, "bbox": [ 363, 224, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1725, "image_id": 1235, "category_id": 1, "bbox": [ 345, 212, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1726, "image_id": 1235, "category_id": 1, "bbox": [ 458, 207, 30, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1727, "image_id": 1236, "category_id": 1, "bbox": [ 251, 221, 23, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1728, "image_id": 1236, "category_id": 1, "bbox": [ 231, 210, 23, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 1729, "image_id": 1236, "category_id": 1, "bbox": [ 213, 224, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1730, "image_id": 1237, "category_id": 1, "bbox": [ 266, 217, 32, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 1731, "image_id": 1238, "category_id": 1, "bbox": [ 1, 212, 46, 107 ], "height": 107, "occlusion": 2, "ignore": 1 }, { "id": 1732, "image_id": 1241, "category_id": 1, "bbox": [ 617, 212, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1733, "image_id": 1242, "category_id": 1, "bbox": [ 605, 209, 21, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 1734, "image_id": 1243, "category_id": 1, "bbox": [ 515, 220, 20, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 1735, "image_id": 1243, "category_id": 1, "bbox": [ 543, 216, 20, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 1736, "image_id": 1243, "category_id": 1, "bbox": [ 422, 222, 24, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 1737, "image_id": 1244, "category_id": 1, "bbox": [ 280, 213, 18, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 1738, "image_id": 1245, "category_id": 1, "bbox": [ 284, 214, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 1739, "image_id": 1246, "category_id": 1, "bbox": [ 282, 213, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 1740, "image_id": 1246, "category_id": 1, "bbox": [ 141, 212, 21, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 1741, "image_id": 1247, "category_id": 1, "bbox": [ 275, 213, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1742, "image_id": 1248, "category_id": 1, "bbox": [ 263, 215, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1743, "image_id": 1248, "category_id": 1, "bbox": [ 28, 213, 28, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 1744, "image_id": 1248, "category_id": 1, "bbox": [ 585, 219, 23, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 1745, "image_id": 1248, "category_id": 1, "bbox": [ 547, 211, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1746, "image_id": 1248, "category_id": 1, "bbox": [ 509, 214, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1747, "image_id": 1248, "category_id": 1, "bbox": [ 522, 214, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1748, "image_id": 1249, "category_id": 1, "bbox": [ 216, 211, 34, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 1749, "image_id": 1249, "category_id": 1, "bbox": [ 585, 210, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1750, "image_id": 1249, "category_id": 1, "bbox": [ 480, 211, 87, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 1751, "image_id": 1250, "category_id": 1, "bbox": [ 130, 213, 43, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 1752, "image_id": 1250, "category_id": 1, "bbox": [ 595, 214, 22, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1753, "image_id": 1250, "category_id": 1, "bbox": [ 581, 216, 20, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1754, "image_id": 1250, "category_id": 1, "bbox": [ 551, 210, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1755, "image_id": 1250, "category_id": 1, "bbox": [ 534, 209, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1756, "image_id": 1250, "category_id": 1, "bbox": [ 404, 210, 67, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1757, "image_id": 1251, "category_id": 1, "bbox": [ 439, 206, 53, 38 ], "height": 38, "occlusion": 1, "ignore": 1 }, { "id": 1758, "image_id": 1252, "category_id": 1, "bbox": [ 489, 213, 20, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 1759, "image_id": 1252, "category_id": 1, "bbox": [ 505, 208, 20, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 1760, "image_id": 1252, "category_id": 1, "bbox": [ 521, 212, 20, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 1761, "image_id": 1253, "category_id": 1, "bbox": [ 581, 201, 60, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 1762, "image_id": 1253, "category_id": 1, "bbox": [ 552, 209, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1763, "image_id": 1256, "category_id": 1, "bbox": [ 587, 212, 22, 46 ], "height": 46, "occlusion": 1, "ignore": 1 }, { "id": 1764, "image_id": 1257, "category_id": 1, "bbox": [ 491, 211, 26, 46 ], "height": 46, "occlusion": 1, "ignore": 1 }, { "id": 1765, "image_id": 1258, "category_id": 1, "bbox": [ 554, 210, 29, 60 ], "height": 60, "occlusion": 1, "ignore": 1 }, { "id": 1766, "image_id": 1259, "category_id": 1, "bbox": [ 479, 206, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1767, "image_id": 1260, "category_id": 1, "bbox": [ 599, 210, 34, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 1768, "image_id": 1260, "category_id": 1, "bbox": [ 508, 209, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1769, "image_id": 1260, "category_id": 1, "bbox": [ 409, 209, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 1770, "image_id": 1261, "category_id": 1, "bbox": [ 141, 209, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1771, "image_id": 1261, "category_id": 1, "bbox": [ 430, 213, 34, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1772, "image_id": 1261, "category_id": 1, "bbox": [ 483, 213, 23, 59 ], "height": 59, "occlusion": 2, "ignore": 0 }, { "id": 1773, "image_id": 1262, "category_id": 1, "bbox": [ 548, 212, 30, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 1774, "image_id": 1262, "category_id": 1, "bbox": [ 514, 214, 39, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1775, "image_id": 1262, "category_id": 1, "bbox": [ 465, 207, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1776, "image_id": 1262, "category_id": 1, "bbox": [ 481, 211, 23, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 1777, "image_id": 1263, "category_id": 1, "bbox": [ 112, 214, 22, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1778, "image_id": 1263, "category_id": 1, "bbox": [ 88, 209, 20, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 1779, "image_id": 1263, "category_id": 1, "bbox": [ 502, 209, 29, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 1780, "image_id": 1263, "category_id": 1, "bbox": [ 530, 214, 23, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1781, "image_id": 1263, "category_id": 1, "bbox": [ 563, 220, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1782, "image_id": 1263, "category_id": 1, "bbox": [ 580, 213, 24, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 1783, "image_id": 1263, "category_id": 1, "bbox": [ 604, 216, 36, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1784, "image_id": 1264, "category_id": 1, "bbox": [ 94, 209, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1785, "image_id": 1264, "category_id": 1, "bbox": [ 558, 206, 30, 86 ], "height": 86, "occlusion": 2, "ignore": 0 }, { "id": 1786, "image_id": 1264, "category_id": 1, "bbox": [ 582, 215, 30, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 1787, "image_id": 1264, "category_id": 1, "bbox": [ 419, 218, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1788, "image_id": 1264, "category_id": 1, "bbox": [ 393, 220, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 1789, "image_id": 1264, "category_id": 1, "bbox": [ 440, 216, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1790, "image_id": 1264, "category_id": 1, "bbox": [ 455, 218, 24, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 1791, "image_id": 1264, "category_id": 1, "bbox": [ 480, 215, 25, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 1792, "image_id": 1264, "category_id": 1, "bbox": [ 502, 216, 20, 32 ], "height": 32, "occlusion": 1, "ignore": 0 }, { "id": 1793, "image_id": 1264, "category_id": 1, "bbox": [ 39, 203, 51, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1794, "image_id": 1265, "category_id": 1, "bbox": [ 81, 216, 24, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1795, "image_id": 1265, "category_id": 1, "bbox": [ 34, 202, 47, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 1796, "image_id": 1265, "category_id": 1, "bbox": [ 426, 219, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1797, "image_id": 1265, "category_id": 1, "bbox": [ 398, 218, 15, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 1798, "image_id": 1265, "category_id": 1, "bbox": [ 451, 220, 16, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1799, "image_id": 1265, "category_id": 1, "bbox": [ 464, 220, 27, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 1800, "image_id": 1265, "category_id": 1, "bbox": [ 505, 218, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1801, "image_id": 1265, "category_id": 1, "bbox": [ 516, 217, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 1802, "image_id": 1266, "category_id": 1, "bbox": [ 397, 220, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1803, "image_id": 1266, "category_id": 1, "bbox": [ 429, 221, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1804, "image_id": 1266, "category_id": 1, "bbox": [ 450, 219, 49, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 1805, "image_id": 1266, "category_id": 1, "bbox": [ 499, 213, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1806, "image_id": 1266, "category_id": 1, "bbox": [ 515, 215, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1807, "image_id": 1266, "category_id": 1, "bbox": [ 586, 224, 36, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1808, "image_id": 1267, "category_id": 1, "bbox": [ 600, 221, 30, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 1809, "image_id": 1267, "category_id": 1, "bbox": [ 333, 215, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1810, "image_id": 1267, "category_id": 1, "bbox": [ 399, 221, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1811, "image_id": 1267, "category_id": 1, "bbox": [ 432, 220, 17, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1812, "image_id": 1267, "category_id": 1, "bbox": [ 448, 216, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 1813, "image_id": 1267, "category_id": 1, "bbox": [ 504, 216, 17, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1814, "image_id": 1267, "category_id": 1, "bbox": [ 519, 219, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1815, "image_id": 1267, "category_id": 1, "bbox": [ 475, 214, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1816, "image_id": 1268, "category_id": 1, "bbox": [ 597, 224, 32, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 1817, "image_id": 1268, "category_id": 1, "bbox": [ 398, 223, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1818, "image_id": 1268, "category_id": 1, "bbox": [ 429, 222, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1819, "image_id": 1268, "category_id": 1, "bbox": [ 449, 223, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1820, "image_id": 1268, "category_id": 1, "bbox": [ 502, 216, 36, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 1821, "image_id": 1268, "category_id": 1, "bbox": [ 59, 213, 23, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 1822, "image_id": 1268, "category_id": 1, "bbox": [ 471, 220, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 1823, "image_id": 1269, "category_id": 1, "bbox": [ 595, 228, 34, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 1824, "image_id": 1269, "category_id": 1, "bbox": [ 53, 215, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1825, "image_id": 1269, "category_id": 1, "bbox": [ 399, 221, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1826, "image_id": 1269, "category_id": 1, "bbox": [ 431, 223, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1827, "image_id": 1269, "category_id": 1, "bbox": [ 452, 222, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1828, "image_id": 1269, "category_id": 1, "bbox": [ 472, 224, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1829, "image_id": 1269, "category_id": 1, "bbox": [ 507, 220, 15, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 1830, "image_id": 1269, "category_id": 1, "bbox": [ 519, 220, 16, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1831, "image_id": 1270, "category_id": 1, "bbox": [ 595, 224, 36, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 1832, "image_id": 1270, "category_id": 1, "bbox": [ 400, 222, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1833, "image_id": 1270, "category_id": 1, "bbox": [ 429, 218, 43, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1834, "image_id": 1270, "category_id": 1, "bbox": [ 475, 219, 19, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1835, "image_id": 1270, "category_id": 1, "bbox": [ 503, 220, 19, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 1836, "image_id": 1270, "category_id": 1, "bbox": [ 514, 222, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1837, "image_id": 1271, "category_id": 1, "bbox": [ 598, 228, 35, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 1838, "image_id": 1271, "category_id": 1, "bbox": [ 398, 221, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1839, "image_id": 1271, "category_id": 1, "bbox": [ 54, 214, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1840, "image_id": 1271, "category_id": 1, "bbox": [ 32, 200, 33, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 1841, "image_id": 1271, "category_id": 1, "bbox": [ 429, 222, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1842, "image_id": 1271, "category_id": 1, "bbox": [ 452, 223, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1843, "image_id": 1271, "category_id": 1, "bbox": [ 474, 224, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1844, "image_id": 1271, "category_id": 1, "bbox": [ 506, 220, 30, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1845, "image_id": 1272, "category_id": 1, "bbox": [ 600, 227, 31, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 1846, "image_id": 1272, "category_id": 1, "bbox": [ 451, 218, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1847, "image_id": 1272, "category_id": 1, "bbox": [ 56, 213, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1848, "image_id": 1272, "category_id": 1, "bbox": [ 473, 220, 20, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 1849, "image_id": 1272, "category_id": 1, "bbox": [ 502, 222, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1850, "image_id": 1272, "category_id": 1, "bbox": [ 517, 219, 17, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 1851, "image_id": 1273, "category_id": 1, "bbox": [ 596, 224, 34, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 1852, "image_id": 1273, "category_id": 1, "bbox": [ 452, 216, 46, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 1853, "image_id": 1273, "category_id": 1, "bbox": [ 51, 214, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1854, "image_id": 1273, "category_id": 1, "bbox": [ 400, 224, 18, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1855, "image_id": 1273, "category_id": 1, "bbox": [ 430, 220, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1856, "image_id": 1274, "category_id": 1, "bbox": [ 598, 225, 31, 76 ], "height": 76, "occlusion": 1, "ignore": 0 }, { "id": 1857, "image_id": 1274, "category_id": 1, "bbox": [ 438, 219, 62, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 1858, "image_id": 1274, "category_id": 1, "bbox": [ 55, 207, 48, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1859, "image_id": 1274, "category_id": 1, "bbox": [ 398, 224, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1860, "image_id": 1274, "category_id": 1, "bbox": [ 502, 221, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1861, "image_id": 1274, "category_id": 1, "bbox": [ 517, 221, 16, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 1862, "image_id": 1275, "category_id": 1, "bbox": [ 598, 224, 29, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 1863, "image_id": 1275, "category_id": 1, "bbox": [ 429, 216, 71, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 1864, "image_id": 1275, "category_id": 1, "bbox": [ 401, 223, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1865, "image_id": 1275, "category_id": 1, "bbox": [ 502, 220, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1866, "image_id": 1275, "category_id": 1, "bbox": [ 516, 218, 18, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1867, "image_id": 1275, "category_id": 1, "bbox": [ 549, 224, 18, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1868, "image_id": 1275, "category_id": 1, "bbox": [ 565, 221, 24, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 1869, "image_id": 1275, "category_id": 1, "bbox": [ 43, 206, 58, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 1870, "image_id": 1276, "category_id": 1, "bbox": [ 598, 229, 34, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 1871, "image_id": 1276, "category_id": 1, "bbox": [ 425, 220, 45, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 1872, "image_id": 1276, "category_id": 1, "bbox": [ 400, 223, 19, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1873, "image_id": 1276, "category_id": 1, "bbox": [ 53, 214, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1874, "image_id": 1276, "category_id": 1, "bbox": [ 505, 220, 19, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1875, "image_id": 1276, "category_id": 1, "bbox": [ 516, 220, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1876, "image_id": 1276, "category_id": 1, "bbox": [ 542, 224, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1877, "image_id": 1276, "category_id": 1, "bbox": [ 469, 223, 32, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 1878, "image_id": 1277, "category_id": 1, "bbox": [ 597, 227, 33, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 1879, "image_id": 1277, "category_id": 1, "bbox": [ 426, 217, 45, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1880, "image_id": 1277, "category_id": 1, "bbox": [ 52, 213, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1881, "image_id": 1277, "category_id": 1, "bbox": [ 399, 227, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1882, "image_id": 1277, "category_id": 1, "bbox": [ 476, 225, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1883, "image_id": 1277, "category_id": 1, "bbox": [ 504, 224, 16, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1884, "image_id": 1277, "category_id": 1, "bbox": [ 514, 220, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1885, "image_id": 1277, "category_id": 1, "bbox": [ 532, 223, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1886, "image_id": 1277, "category_id": 1, "bbox": [ 542, 215, 20, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 1887, "image_id": 1278, "category_id": 1, "bbox": [ 598, 220, 33, 87 ], "height": 87, "occlusion": 1, "ignore": 0 }, { "id": 1888, "image_id": 1278, "category_id": 1, "bbox": [ 428, 219, 41, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 1889, "image_id": 1278, "category_id": 1, "bbox": [ 399, 224, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1890, "image_id": 1278, "category_id": 1, "bbox": [ 50, 211, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1891, "image_id": 1278, "category_id": 1, "bbox": [ 525, 211, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1892, "image_id": 1278, "category_id": 1, "bbox": [ 477, 220, 30, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1893, "image_id": 1278, "category_id": 1, "bbox": [ 507, 220, 17, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1894, "image_id": 1279, "category_id": 1, "bbox": [ 598, 220, 31, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 1895, "image_id": 1279, "category_id": 1, "bbox": [ 429, 218, 39, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1896, "image_id": 1279, "category_id": 1, "bbox": [ 398, 220, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1897, "image_id": 1279, "category_id": 1, "bbox": [ 52, 212, 28, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1898, "image_id": 1279, "category_id": 1, "bbox": [ 26, 201, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1899, "image_id": 1279, "category_id": 1, "bbox": [ 472, 222, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1900, "image_id": 1279, "category_id": 1, "bbox": [ 506, 218, 33, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 1901, "image_id": 1280, "category_id": 1, "bbox": [ 594, 229, 36, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 1902, "image_id": 1280, "category_id": 1, "bbox": [ 433, 220, 35, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1903, "image_id": 1280, "category_id": 1, "bbox": [ 55, 210, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1904, "image_id": 1280, "category_id": 1, "bbox": [ 14, 200, 31, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1905, "image_id": 1280, "category_id": 1, "bbox": [ 400, 222, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1906, "image_id": 1280, "category_id": 1, "bbox": [ 527, 225, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1907, "image_id": 1280, "category_id": 1, "bbox": [ 476, 217, 55, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 1908, "image_id": 1281, "category_id": 1, "bbox": [ 593, 225, 34, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 1909, "image_id": 1281, "category_id": 1, "bbox": [ 427, 216, 80, 64 ], "height": 64, "occlusion": 0, "ignore": 1 }, { "id": 1910, "image_id": 1281, "category_id": 1, "bbox": [ 398, 220, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1911, "image_id": 1281, "category_id": 1, "bbox": [ 50, 214, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1912, "image_id": 1282, "category_id": 1, "bbox": [ 597, 225, 27, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 1913, "image_id": 1282, "category_id": 1, "bbox": [ 430, 218, 40, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 1914, "image_id": 1282, "category_id": 1, "bbox": [ 50, 210, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 1915, "image_id": 1282, "category_id": 1, "bbox": [ 75, 205, 25, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 1916, "image_id": 1282, "category_id": 1, "bbox": [ 396, 221, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1917, "image_id": 1282, "category_id": 1, "bbox": [ 554, 220, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1918, "image_id": 1282, "category_id": 1, "bbox": [ 501, 222, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1919, "image_id": 1282, "category_id": 1, "bbox": [ 515, 220, 19, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1920, "image_id": 1282, "category_id": 1, "bbox": [ 475, 220, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1921, "image_id": 1283, "category_id": 1, "bbox": [ 596, 226, 34, 71 ], "height": 71, "occlusion": 1, "ignore": 0 }, { "id": 1922, "image_id": 1283, "category_id": 1, "bbox": [ 422, 211, 46, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 1923, "image_id": 1283, "category_id": 1, "bbox": [ 398, 224, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1924, "image_id": 1283, "category_id": 1, "bbox": [ 573, 229, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1925, "image_id": 1283, "category_id": 1, "bbox": [ 501, 223, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1926, "image_id": 1283, "category_id": 1, "bbox": [ 515, 218, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1927, "image_id": 1283, "category_id": 1, "bbox": [ 472, 222, 23, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1928, "image_id": 1284, "category_id": 1, "bbox": [ 595, 222, 31, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 1929, "image_id": 1284, "category_id": 1, "bbox": [ 423, 215, 76, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 1930, "image_id": 1284, "category_id": 1, "bbox": [ 399, 221, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1931, "image_id": 1284, "category_id": 1, "bbox": [ 53, 209, 27, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 1932, "image_id": 1285, "category_id": 1, "bbox": [ 600, 225, 28, 78 ], "height": 78, "occlusion": 1, "ignore": 0 }, { "id": 1933, "image_id": 1285, "category_id": 1, "bbox": [ 421, 219, 47, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 1934, "image_id": 1285, "category_id": 1, "bbox": [ 53, 212, 28, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 1935, "image_id": 1285, "category_id": 1, "bbox": [ 398, 222, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1936, "image_id": 1285, "category_id": 1, "bbox": [ 503, 219, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1937, "image_id": 1285, "category_id": 1, "bbox": [ 515, 220, 17, 43 ], "height": 43, "occlusion": 1, "ignore": 0 }, { "id": 1938, "image_id": 1285, "category_id": 1, "bbox": [ 470, 220, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1939, "image_id": 1286, "category_id": 1, "bbox": [ 593, 226, 39, 76 ], "height": 76, "occlusion": 1, "ignore": 0 }, { "id": 1940, "image_id": 1286, "category_id": 1, "bbox": [ 426, 221, 43, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 1941, "image_id": 1286, "category_id": 1, "bbox": [ 399, 223, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1942, "image_id": 1286, "category_id": 1, "bbox": [ 50, 211, 28, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1943, "image_id": 1286, "category_id": 1, "bbox": [ 473, 221, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1944, "image_id": 1286, "category_id": 1, "bbox": [ 501, 223, 19, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 1945, "image_id": 1286, "category_id": 1, "bbox": [ 515, 217, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1946, "image_id": 1287, "category_id": 1, "bbox": [ 593, 221, 32, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 1947, "image_id": 1287, "category_id": 1, "bbox": [ 424, 220, 44, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 1948, "image_id": 1287, "category_id": 1, "bbox": [ 398, 223, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1949, "image_id": 1287, "category_id": 1, "bbox": [ 53, 210, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 1950, "image_id": 1287, "category_id": 1, "bbox": [ 473, 220, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1951, "image_id": 1287, "category_id": 1, "bbox": [ 504, 220, 19, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 1952, "image_id": 1287, "category_id": 1, "bbox": [ 517, 221, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 1953, "image_id": 1288, "category_id": 1, "bbox": [ 596, 226, 34, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 1954, "image_id": 1288, "category_id": 1, "bbox": [ 424, 215, 43, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 1955, "image_id": 1288, "category_id": 1, "bbox": [ 53, 214, 27, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1956, "image_id": 1288, "category_id": 1, "bbox": [ 398, 224, 23, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1957, "image_id": 1288, "category_id": 1, "bbox": [ 500, 222, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1958, "image_id": 1288, "category_id": 1, "bbox": [ 519, 218, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1959, "image_id": 1288, "category_id": 1, "bbox": [ 474, 221, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1960, "image_id": 1289, "category_id": 1, "bbox": [ 596, 225, 28, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 1961, "image_id": 1289, "category_id": 1, "bbox": [ 424, 210, 46, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 1962, "image_id": 1289, "category_id": 1, "bbox": [ 619, 231, 22, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 1963, "image_id": 1289, "category_id": 1, "bbox": [ 397, 224, 23, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1964, "image_id": 1289, "category_id": 1, "bbox": [ 500, 218, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 1965, "image_id": 1289, "category_id": 1, "bbox": [ 520, 217, 18, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1966, "image_id": 1289, "category_id": 1, "bbox": [ 54, 213, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1967, "image_id": 1289, "category_id": 1, "bbox": [ 474, 222, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 1968, "image_id": 1290, "category_id": 1, "bbox": [ 600, 228, 26, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 1969, "image_id": 1290, "category_id": 1, "bbox": [ 426, 217, 46, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1970, "image_id": 1290, "category_id": 1, "bbox": [ 49, 213, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1971, "image_id": 1290, "category_id": 1, "bbox": [ 398, 226, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1972, "image_id": 1290, "category_id": 1, "bbox": [ 501, 222, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1973, "image_id": 1290, "category_id": 1, "bbox": [ 520, 220, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1974, "image_id": 1290, "category_id": 1, "bbox": [ 473, 222, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1975, "image_id": 1291, "category_id": 1, "bbox": [ 599, 227, 27, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 1976, "image_id": 1291, "category_id": 1, "bbox": [ 425, 213, 43, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 1977, "image_id": 1291, "category_id": 1, "bbox": [ 398, 223, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1978, "image_id": 1291, "category_id": 1, "bbox": [ 50, 211, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1979, "image_id": 1291, "category_id": 1, "bbox": [ 501, 222, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 1980, "image_id": 1291, "category_id": 1, "bbox": [ 517, 216, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1981, "image_id": 1291, "category_id": 1, "bbox": [ 476, 224, 18, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 1982, "image_id": 1292, "category_id": 1, "bbox": [ 596, 224, 30, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 1983, "image_id": 1292, "category_id": 1, "bbox": [ 425, 213, 50, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 1984, "image_id": 1292, "category_id": 1, "bbox": [ 52, 214, 27, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1985, "image_id": 1292, "category_id": 1, "bbox": [ 517, 220, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1986, "image_id": 1292, "category_id": 1, "bbox": [ 401, 224, 23, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1987, "image_id": 1292, "category_id": 1, "bbox": [ 473, 223, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 1988, "image_id": 1292, "category_id": 1, "bbox": [ 498, 223, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1989, "image_id": 1293, "category_id": 1, "bbox": [ 598, 229, 29, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 1990, "image_id": 1293, "category_id": 1, "bbox": [ 419, 213, 57, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 1991, "image_id": 1293, "category_id": 1, "bbox": [ 518, 217, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 1992, "image_id": 1293, "category_id": 1, "bbox": [ 398, 222, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 1993, "image_id": 1293, "category_id": 1, "bbox": [ 53, 210, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 1994, "image_id": 1293, "category_id": 1, "bbox": [ 472, 223, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1995, "image_id": 1293, "category_id": 1, "bbox": [ 494, 226, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 1996, "image_id": 1293, "category_id": 1, "bbox": [ 507, 222, 15, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 1997, "image_id": 1294, "category_id": 1, "bbox": [ 597, 227, 34, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 1998, "image_id": 1294, "category_id": 1, "bbox": [ 424, 212, 48, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 1999, "image_id": 1294, "category_id": 1, "bbox": [ 397, 223, 23, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2000, "image_id": 1294, "category_id": 1, "bbox": [ 49, 216, 32, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2001, "image_id": 1294, "category_id": 1, "bbox": [ 28, 208, 25, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2002, "image_id": 1294, "category_id": 1, "bbox": [ 493, 222, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2003, "image_id": 1294, "category_id": 1, "bbox": [ 505, 223, 17, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2004, "image_id": 1294, "category_id": 1, "bbox": [ 518, 220, 22, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2005, "image_id": 1294, "category_id": 1, "bbox": [ 473, 220, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2006, "image_id": 1295, "category_id": 1, "bbox": [ 596, 226, 31, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 2007, "image_id": 1295, "category_id": 1, "bbox": [ 428, 217, 68, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 2008, "image_id": 1295, "category_id": 1, "bbox": [ 50, 214, 27, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2009, "image_id": 1295, "category_id": 1, "bbox": [ 6, 209, 26, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2010, "image_id": 1295, "category_id": 1, "bbox": [ 491, 229, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2011, "image_id": 1295, "category_id": 1, "bbox": [ 504, 221, 19, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2012, "image_id": 1295, "category_id": 1, "bbox": [ 518, 220, 16, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2013, "image_id": 1296, "category_id": 1, "bbox": [ 595, 231, 35, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 2014, "image_id": 1296, "category_id": 1, "bbox": [ 429, 216, 49, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 2015, "image_id": 1296, "category_id": 1, "bbox": [ 50, 213, 29, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2016, "image_id": 1296, "category_id": 1, "bbox": [ 516, 221, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 2017, "image_id": 1296, "category_id": 1, "bbox": [ 400, 224, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2018, "image_id": 1296, "category_id": 1, "bbox": [ 412, 215, 20, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2019, "image_id": 1296, "category_id": 1, "bbox": [ 474, 222, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2020, "image_id": 1296, "category_id": 1, "bbox": [ 494, 222, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2021, "image_id": 1297, "category_id": 1, "bbox": [ 594, 227, 39, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 2022, "image_id": 1297, "category_id": 1, "bbox": [ 400, 217, 96, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 2023, "image_id": 1297, "category_id": 1, "bbox": [ 51, 211, 29, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2024, "image_id": 1297, "category_id": 1, "bbox": [ 494, 222, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2025, "image_id": 1297, "category_id": 1, "bbox": [ 507, 218, 18, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2026, "image_id": 1297, "category_id": 1, "bbox": [ 517, 215, 19, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2027, "image_id": 1298, "category_id": 1, "bbox": [ 578, 231, 26, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 2028, "image_id": 1298, "category_id": 1, "bbox": [ 386, 224, 24, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2029, "image_id": 1298, "category_id": 1, "bbox": [ 409, 216, 87, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 2030, "image_id": 1298, "category_id": 1, "bbox": [ 58, 212, 28, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2031, "image_id": 1298, "category_id": 1, "bbox": [ 20, 206, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2032, "image_id": 1298, "category_id": 1, "bbox": [ 491, 220, 17, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2033, "image_id": 1298, "category_id": 1, "bbox": [ 507, 224, 15, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2034, "image_id": 1298, "category_id": 1, "bbox": [ 520, 220, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2035, "image_id": 1299, "category_id": 1, "bbox": [ 608, 220, 26, 90 ], "height": 90, "occlusion": 1, "ignore": 0 }, { "id": 2036, "image_id": 1299, "category_id": 1, "bbox": [ 606, 214, 27, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 2037, "image_id": 1299, "category_id": 1, "bbox": [ 427, 218, 34, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 2038, "image_id": 1299, "category_id": 1, "bbox": [ 579, 227, 33, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 2039, "image_id": 1299, "category_id": 1, "bbox": [ 522, 230, 45, 84 ], "height": 84, "occlusion": 1, "ignore": 1 }, { "id": 2040, "image_id": 1299, "category_id": 1, "bbox": [ 69, 218, 31, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2041, "image_id": 1299, "category_id": 1, "bbox": [ 361, 223, 17, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2042, "image_id": 1299, "category_id": 1, "bbox": [ 378, 220, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2043, "image_id": 1299, "category_id": 1, "bbox": [ 396, 219, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2044, "image_id": 1299, "category_id": 1, "bbox": [ 473, 219, 57, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 2045, "image_id": 1300, "category_id": 1, "bbox": [ 463, 220, 52, 84 ], "height": 84, "occlusion": 0, "ignore": 1 }, { "id": 2046, "image_id": 1300, "category_id": 1, "bbox": [ 525, 219, 40, 108 ], "height": 108, "occlusion": 1, "ignore": 0 }, { "id": 2047, "image_id": 1300, "category_id": 1, "bbox": [ 349, 221, 43, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 2048, "image_id": 1300, "category_id": 1, "bbox": [ 399, 217, 49, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 2049, "image_id": 1300, "category_id": 1, "bbox": [ 101, 221, 27, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2050, "image_id": 1300, "category_id": 1, "bbox": [ 47, 203, 33, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 2051, "image_id": 1300, "category_id": 1, "bbox": [ 326, 226, 26, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2052, "image_id": 1301, "category_id": 1, "bbox": [ 413, 221, 31, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 2053, "image_id": 1301, "category_id": 1, "bbox": [ 551, 271, 90, 242 ], "height": 242, "occlusion": 0, "ignore": 0 }, { "id": 2054, "image_id": 1301, "category_id": 1, "bbox": [ 454, 219, 42, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 2055, "image_id": 1301, "category_id": 1, "bbox": [ 597, 225, 22, 59 ], "height": 59, "occlusion": 1, "ignore": 0 }, { "id": 2056, "image_id": 1301, "category_id": 1, "bbox": [ 318, 215, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2057, "image_id": 1301, "category_id": 1, "bbox": [ 496, 218, 41, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 2058, "image_id": 1301, "category_id": 1, "bbox": [ 386, 222, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 2059, "image_id": 1301, "category_id": 1, "bbox": [ 615, 226, 24, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 2060, "image_id": 1301, "category_id": 1, "bbox": [ 297, 222, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2061, "image_id": 1301, "category_id": 1, "bbox": [ 134, 220, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2062, "image_id": 1301, "category_id": 1, "bbox": [ 338, 220, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2063, "image_id": 1302, "category_id": 1, "bbox": [ 360, 221, 34, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 2064, "image_id": 1302, "category_id": 1, "bbox": [ 304, 266, 101, 246 ], "height": 246, "occlusion": 1, "ignore": 0 }, { "id": 2065, "image_id": 1302, "category_id": 1, "bbox": [ 402, 274, 103, 238 ], "height": 238, "occlusion": 1, "ignore": 0 }, { "id": 2066, "image_id": 1302, "category_id": 1, "bbox": [ 389, 220, 43, 101 ], "height": 101, "occlusion": 1, "ignore": 0 }, { "id": 2067, "image_id": 1302, "category_id": 1, "bbox": [ 562, 229, 38, 77 ], "height": 77, "occlusion": 1, "ignore": 1 }, { "id": 2068, "image_id": 1302, "category_id": 1, "bbox": [ 75, 220, 52, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 2069, "image_id": 1302, "category_id": 1, "bbox": [ 460, 218, 73, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 2070, "image_id": 1302, "category_id": 1, "bbox": [ 160, 219, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2071, "image_id": 1302, "category_id": 1, "bbox": [ 259, 220, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2072, "image_id": 1302, "category_id": 1, "bbox": [ 281, 219, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2073, "image_id": 1302, "category_id": 1, "bbox": [ 300, 220, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2074, "image_id": 1303, "category_id": 1, "bbox": [ 317, 218, 34, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 2075, "image_id": 1303, "category_id": 1, "bbox": [ 59, 269, 97, 244 ], "height": 244, "occlusion": 2, "ignore": 0 }, { "id": 2076, "image_id": 1303, "category_id": 1, "bbox": [ 343, 225, 48, 98 ], "height": 98, "occlusion": 0, "ignore": 1 }, { "id": 2077, "image_id": 1303, "category_id": 1, "bbox": [ 513, 227, 45, 86 ], "height": 86, "occlusion": 0, "ignore": 1 }, { "id": 2078, "image_id": 1303, "category_id": 1, "bbox": [ 572, 227, 39, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2079, "image_id": 1303, "category_id": 1, "bbox": [ 228, 214, 46, 63 ], "height": 63, "occlusion": 1, "ignore": 1 }, { "id": 2080, "image_id": 1303, "category_id": 1, "bbox": [ 386, 226, 34, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2081, "image_id": 1303, "category_id": 1, "bbox": [ 447, 217, 37, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 2082, "image_id": 1303, "category_id": 1, "bbox": [ 613, 218, 28, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2083, "image_id": 1303, "category_id": 1, "bbox": [ 197, 216, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2084, "image_id": 1303, "category_id": 1, "bbox": [ 47, 202, 58, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 2085, "image_id": 1303, "category_id": 1, "bbox": [ 265, 214, 27, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2086, "image_id": 1304, "category_id": 1, "bbox": [ 278, 215, 32, 76 ], "height": 76, "occlusion": 2, "ignore": 0 }, { "id": 2087, "image_id": 1304, "category_id": 1, "bbox": [ 293, 220, 43, 98 ], "height": 98, "occlusion": 0, "ignore": 1 }, { "id": 2088, "image_id": 1304, "category_id": 1, "bbox": [ 473, 227, 30, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2089, "image_id": 1304, "category_id": 1, "bbox": [ 68, 218, 55, 109 ], "height": 109, "occlusion": 0, "ignore": 0 }, { "id": 2090, "image_id": 1304, "category_id": 1, "bbox": [ 346, 224, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2091, "image_id": 1304, "category_id": 1, "bbox": [ 186, 212, 44, 53 ], "height": 53, "occlusion": 2, "ignore": 1 }, { "id": 2092, "image_id": 1304, "category_id": 1, "bbox": [ 440, 255, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2093, "image_id": 1304, "category_id": 1, "bbox": [ 233, 217, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2094, "image_id": 1304, "category_id": 1, "bbox": [ 506, 225, 49, 87 ], "height": 87, "occlusion": 0, "ignore": 1 }, { "id": 2095, "image_id": 1304, "category_id": 1, "bbox": [ 581, 217, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2096, "image_id": 1304, "category_id": 1, "bbox": [ 602, 217, 25, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2097, "image_id": 1304, "category_id": 1, "bbox": [ 5, 212, 57, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2098, "image_id": 1305, "category_id": 1, "bbox": [ 241, 220, 29, 59 ], "height": 59, "occlusion": 1, "ignore": 0 }, { "id": 2099, "image_id": 1305, "category_id": 1, "bbox": [ 257, 218, 45, 97 ], "height": 97, "occlusion": 0, "ignore": 1 }, { "id": 2100, "image_id": 1305, "category_id": 1, "bbox": [ 419, 227, 31, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2101, "image_id": 1305, "category_id": 1, "bbox": [ 470, 225, 36, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 2102, "image_id": 1305, "category_id": 1, "bbox": [ 161, 217, 47, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 2103, "image_id": 1305, "category_id": 1, "bbox": [ 303, 226, 33, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2104, "image_id": 1305, "category_id": 1, "bbox": [ 18, 220, 71, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 2105, "image_id": 1305, "category_id": 1, "bbox": [ 391, 248, 25, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2106, "image_id": 1305, "category_id": 1, "bbox": [ 199, 217, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2107, "image_id": 1305, "category_id": 1, "bbox": [ 327, 220, 25, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2108, "image_id": 1305, "category_id": 1, "bbox": [ 441, 224, 36, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2109, "image_id": 1305, "category_id": 1, "bbox": [ 520, 226, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2110, "image_id": 1305, "category_id": 1, "bbox": [ 538, 228, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2111, "image_id": 1305, "category_id": 1, "bbox": [ 576, 221, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2112, "image_id": 1305, "category_id": 1, "bbox": [ 594, 216, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2113, "image_id": 1305, "category_id": 1, "bbox": [ 64, 220, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2114, "image_id": 1306, "category_id": 1, "bbox": [ 209, 217, 24, 65 ], "height": 65, "occlusion": 2, "ignore": 0 }, { "id": 2115, "image_id": 1306, "category_id": 1, "bbox": [ 222, 220, 26, 87 ], "height": 87, "occlusion": 1, "ignore": 0 }, { "id": 2116, "image_id": 1306, "category_id": 1, "bbox": [ 378, 224, 33, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 2117, "image_id": 1306, "category_id": 1, "bbox": [ 423, 220, 31, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 2118, "image_id": 1306, "category_id": 1, "bbox": [ 239, 218, 34, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 2119, "image_id": 1306, "category_id": 1, "bbox": [ 272, 225, 29, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2120, "image_id": 1306, "category_id": 1, "bbox": [ 117, 223, 57, 122 ], "height": 122, "occlusion": 0, "ignore": 0 }, { "id": 2121, "image_id": 1306, "category_id": 1, "bbox": [ 4, 217, 70, 177 ], "height": 177, "occlusion": 0, "ignore": 0 }, { "id": 2122, "image_id": 1306, "category_id": 1, "bbox": [ 455, 214, 73, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 2123, "image_id": 1306, "category_id": 1, "bbox": [ 344, 253, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2124, "image_id": 1306, "category_id": 1, "bbox": [ 401, 223, 33, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2125, "image_id": 1306, "category_id": 1, "bbox": [ 83, 220, 31, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 2126, "image_id": 1306, "category_id": 1, "bbox": [ 167, 220, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2127, "image_id": 1306, "category_id": 1, "bbox": [ 301, 219, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2128, "image_id": 1306, "category_id": 1, "bbox": [ 319, 218, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2129, "image_id": 1306, "category_id": 1, "bbox": [ 528, 223, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2130, "image_id": 1306, "category_id": 1, "bbox": [ 550, 226, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2131, "image_id": 1306, "category_id": 1, "bbox": [ 573, 222, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2132, "image_id": 1306, "category_id": 1, "bbox": [ 587, 219, 25, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2133, "image_id": 1306, "category_id": 1, "bbox": [ 618, 224, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2134, "image_id": 1307, "category_id": 1, "bbox": [ 171, 215, 25, 66 ], "height": 66, "occlusion": 2, "ignore": 0 }, { "id": 2135, "image_id": 1307, "category_id": 1, "bbox": [ 184, 219, 30, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 2136, "image_id": 1307, "category_id": 1, "bbox": [ 341, 221, 30, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 2137, "image_id": 1307, "category_id": 1, "bbox": [ 378, 220, 33, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 2138, "image_id": 1307, "category_id": 1, "bbox": [ 300, 220, 32, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 2139, "image_id": 1307, "category_id": 1, "bbox": [ 237, 220, 28, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2140, "image_id": 1307, "category_id": 1, "bbox": [ 209, 218, 40, 126 ], "height": 126, "occlusion": 0, "ignore": 0 }, { "id": 2141, "image_id": 1307, "category_id": 1, "bbox": [ 108, 216, 65, 159 ], "height": 159, "occlusion": 0, "ignore": 0 }, { "id": 2142, "image_id": 1307, "category_id": 1, "bbox": [ 453, 215, 78, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 2143, "image_id": 1307, "category_id": 1, "bbox": [ 286, 247, 29, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2144, "image_id": 1307, "category_id": 1, "bbox": [ 362, 222, 25, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2145, "image_id": 1307, "category_id": 1, "bbox": [ 16, 206, 25, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 2146, "image_id": 1307, "category_id": 1, "bbox": [ 39, 208, 30, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2147, "image_id": 1307, "category_id": 1, "bbox": [ 96, 221, 28, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 2148, "image_id": 1307, "category_id": 1, "bbox": [ 538, 224, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2149, "image_id": 1307, "category_id": 1, "bbox": [ 562, 226, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2150, "image_id": 1307, "category_id": 1, "bbox": [ 584, 218, 25, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2151, "image_id": 1307, "category_id": 1, "bbox": [ 602, 219, 22, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2152, "image_id": 1307, "category_id": 1, "bbox": [ 620, 216, 20, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2153, "image_id": 1308, "category_id": 1, "bbox": [ 135, 218, 25, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 2154, "image_id": 1308, "category_id": 1, "bbox": [ 150, 219, 32, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2155, "image_id": 1308, "category_id": 1, "bbox": [ 339, 218, 27, 82 ], "height": 82, "occlusion": 2, "ignore": 0 }, { "id": 2156, "image_id": 1308, "category_id": 1, "bbox": [ 370, 220, 36, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2157, "image_id": 1308, "category_id": 1, "bbox": [ 197, 220, 28, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2158, "image_id": 1308, "category_id": 1, "bbox": [ 285, 221, 41, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 2159, "image_id": 1308, "category_id": 1, "bbox": [ 209, 216, 65, 156 ], "height": 156, "occlusion": 0, "ignore": 0 }, { "id": 2160, "image_id": 1308, "category_id": 1, "bbox": [ 457, 209, 50, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 2161, "image_id": 1308, "category_id": 1, "bbox": [ 320, 225, 26, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 2162, "image_id": 1308, "category_id": 1, "bbox": [ 104, 217, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2163, "image_id": 1308, "category_id": 1, "bbox": [ 58, 220, 35, 43 ], "height": 43, "occlusion": 2, "ignore": 1 }, { "id": 2164, "image_id": 1308, "category_id": 1, "bbox": [ 401, 217, 28, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2165, "image_id": 1308, "category_id": 1, "bbox": [ 505, 217, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 2166, "image_id": 1308, "category_id": 1, "bbox": [ 521, 217, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2167, "image_id": 1308, "category_id": 1, "bbox": [ 554, 223, 23, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2168, "image_id": 1308, "category_id": 1, "bbox": [ 580, 227, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2169, "image_id": 1308, "category_id": 1, "bbox": [ 601, 217, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2170, "image_id": 1308, "category_id": 1, "bbox": [ 32, 210, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 2171, "image_id": 1308, "category_id": 1, "bbox": [ 252, 217, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2172, "image_id": 1309, "category_id": 1, "bbox": [ 107, 217, 25, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2173, "image_id": 1309, "category_id": 1, "bbox": [ 128, 220, 28, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2174, "image_id": 1309, "category_id": 1, "bbox": [ 253, 219, 32, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 2175, "image_id": 1309, "category_id": 1, "bbox": [ 295, 218, 33, 88 ], "height": 88, "occlusion": 2, "ignore": 0 }, { "id": 2176, "image_id": 1309, "category_id": 1, "bbox": [ 423, 223, 36, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2177, "image_id": 1309, "category_id": 1, "bbox": [ 160, 220, 34, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2178, "image_id": 1309, "category_id": 1, "bbox": [ 300, 218, 57, 145 ], "height": 145, "occlusion": 0, "ignore": 0 }, { "id": 2179, "image_id": 1309, "category_id": 1, "bbox": [ 14, 217, 39, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 2180, "image_id": 1309, "category_id": 1, "bbox": [ 447, 217, 77, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2181, "image_id": 1309, "category_id": 1, "bbox": [ 193, 244, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2182, "image_id": 1309, "category_id": 1, "bbox": [ 336, 224, 46, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 2183, "image_id": 1309, "category_id": 1, "bbox": [ 530, 218, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 2184, "image_id": 1309, "category_id": 1, "bbox": [ 563, 219, 76, 86 ], "height": 86, "occlusion": 0, "ignore": 1 }, { "id": 2185, "image_id": 1309, "category_id": 1, "bbox": [ 223, 221, 29, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 2186, "image_id": 1309, "category_id": 1, "bbox": [ 64, 217, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2187, "image_id": 1309, "category_id": 1, "bbox": [ 80, 217, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2188, "image_id": 1310, "category_id": 1, "bbox": [ 105, 220, 26, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 2189, "image_id": 1310, "category_id": 1, "bbox": [ 215, 218, 33, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 2190, "image_id": 1310, "category_id": 1, "bbox": [ 256, 215, 32, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 2191, "image_id": 1310, "category_id": 1, "bbox": [ 454, 224, 30, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2192, "image_id": 1310, "category_id": 1, "bbox": [ 124, 212, 29, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2193, "image_id": 1310, "category_id": 1, "bbox": [ 379, 220, 62, 139 ], "height": 139, "occlusion": 0, "ignore": 1 }, { "id": 2194, "image_id": 1310, "category_id": 1, "bbox": [ 477, 221, 56, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 2195, "image_id": 1310, "category_id": 1, "bbox": [ 81, 214, 37, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 2196, "image_id": 1310, "category_id": 1, "bbox": [ 587, 226, 30, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2197, "image_id": 1310, "category_id": 1, "bbox": [ 159, 245, 26, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 2198, "image_id": 1310, "category_id": 1, "bbox": [ 57, 210, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2199, "image_id": 1310, "category_id": 1, "bbox": [ 40, 217, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2200, "image_id": 1310, "category_id": 1, "bbox": [ 18, 217, 27, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2201, "image_id": 1310, "category_id": 1, "bbox": [ 192, 218, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2202, "image_id": 1310, "category_id": 1, "bbox": [ 280, 219, 34, 65 ], "height": 65, "occlusion": 0, "ignore": 1 }, { "id": 2203, "image_id": 1310, "category_id": 1, "bbox": [ 305, 220, 29, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2204, "image_id": 1310, "category_id": 1, "bbox": [ 617, 227, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2205, "image_id": 1310, "category_id": 1, "bbox": [ 568, 220, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2206, "image_id": 1310, "category_id": 1, "bbox": [ 554, 227, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2207, "image_id": 1311, "category_id": 1, "bbox": [ 78, 222, 26, 49 ], "height": 49, "occlusion": 2, "ignore": 0 }, { "id": 2208, "image_id": 1311, "category_id": 1, "bbox": [ 187, 220, 28, 68 ], "height": 68, "occlusion": 2, "ignore": 0 }, { "id": 2209, "image_id": 1311, "category_id": 1, "bbox": [ 222, 218, 33, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2210, "image_id": 1311, "category_id": 1, "bbox": [ 109, 222, 25, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2211, "image_id": 1311, "category_id": 1, "bbox": [ 436, 222, 34, 123 ], "height": 123, "occlusion": 1, "ignore": 0 }, { "id": 2212, "image_id": 1311, "category_id": 1, "bbox": [ 57, 231, 39, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 2213, "image_id": 1311, "category_id": 1, "bbox": [ 398, 229, 35, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 2214, "image_id": 1311, "category_id": 1, "bbox": [ 140, 222, 32, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2215, "image_id": 1311, "category_id": 1, "bbox": [ 540, 231, 31, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2216, "image_id": 1311, "category_id": 1, "bbox": [ 602, 227, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2217, "image_id": 1311, "category_id": 1, "bbox": [ 563, 219, 45, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2218, "image_id": 1311, "category_id": 1, "bbox": [ 500, 222, 18, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2219, "image_id": 1311, "category_id": 1, "bbox": [ 511, 222, 15, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2220, "image_id": 1311, "category_id": 1, "bbox": [ 523, 219, 19, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2221, "image_id": 1311, "category_id": 1, "bbox": [ 356, 220, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2222, "image_id": 1311, "category_id": 1, "bbox": [ 252, 222, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2223, "image_id": 1311, "category_id": 1, "bbox": [ 269, 220, 27, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 2224, "image_id": 1311, "category_id": 1, "bbox": [ 28, 216, 36, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 2225, "image_id": 1311, "category_id": 1, "bbox": [ 168, 222, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2226, "image_id": 1311, "category_id": 1, "bbox": [ 460, 231, 41, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 2227, "image_id": 1312, "category_id": 1, "bbox": [ 29, 227, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2228, "image_id": 1312, "category_id": 1, "bbox": [ 44, 222, 26, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2229, "image_id": 1312, "category_id": 1, "bbox": [ 188, 213, 33, 84 ], "height": 84, "occlusion": 2, "ignore": 0 }, { "id": 2230, "image_id": 1312, "category_id": 1, "bbox": [ 474, 221, 36, 88 ], "height": 88, "occlusion": 2, "ignore": 0 }, { "id": 2231, "image_id": 1312, "category_id": 1, "bbox": [ 85, 221, 29, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 2232, "image_id": 1312, "category_id": 1, "bbox": [ 499, 219, 50, 119 ], "height": 119, "occlusion": 0, "ignore": 1 }, { "id": 2233, "image_id": 1312, "category_id": 1, "bbox": [ 148, 232, 42, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 2234, "image_id": 1312, "category_id": 1, "bbox": [ 319, 224, 45, 105 ], "height": 105, "occlusion": 0, "ignore": 1 }, { "id": 2235, "image_id": 1312, "category_id": 1, "bbox": [ 543, 221, 47, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2236, "image_id": 1312, "category_id": 1, "bbox": [ 63, 220, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2237, "image_id": 1312, "category_id": 1, "bbox": [ 223, 241, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2238, "image_id": 1312, "category_id": 1, "bbox": [ 234, 222, 19, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2239, "image_id": 1312, "category_id": 1, "bbox": [ 245, 221, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2240, "image_id": 1312, "category_id": 1, "bbox": [ 284, 221, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2241, "image_id": 1312, "category_id": 1, "bbox": [ 406, 225, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2242, "image_id": 1312, "category_id": 1, "bbox": [ 453, 214, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2243, "image_id": 1312, "category_id": 1, "bbox": [ 580, 238, 33, 90 ], "height": 90, "occlusion": 2, "ignore": 0 }, { "id": 2244, "image_id": 1312, "category_id": 1, "bbox": [ 615, 231, 24, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2245, "image_id": 1313, "category_id": 1, "bbox": [ 25, 218, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2246, "image_id": 1313, "category_id": 1, "bbox": [ 128, 220, 28, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 2247, "image_id": 1313, "category_id": 1, "bbox": [ 159, 217, 28, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 2248, "image_id": 1313, "category_id": 1, "bbox": [ 481, 215, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2249, "image_id": 1313, "category_id": 1, "bbox": [ 67, 223, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2250, "image_id": 1313, "category_id": 1, "bbox": [ 245, 223, 47, 122 ], "height": 122, "occlusion": 0, "ignore": 0 }, { "id": 2251, "image_id": 1313, "category_id": 1, "bbox": [ 221, 217, 30, 69 ], "height": 69, "occlusion": 2, "ignore": 0 }, { "id": 2252, "image_id": 1313, "category_id": 1, "bbox": [ 489, 233, 52, 132 ], "height": 132, "occlusion": 2, "ignore": 0 }, { "id": 2253, "image_id": 1313, "category_id": 1, "bbox": [ 2, 235, 57, 144 ], "height": 144, "occlusion": 0, "ignore": 0 }, { "id": 2254, "image_id": 1313, "category_id": 1, "bbox": [ 450, 225, 30, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2255, "image_id": 1313, "category_id": 1, "bbox": [ 273, 226, 36, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 2256, "image_id": 1313, "category_id": 1, "bbox": [ 618, 219, 21, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2257, "image_id": 1313, "category_id": 1, "bbox": [ 590, 218, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2258, "image_id": 1313, "category_id": 1, "bbox": [ 527, 221, 35, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 2259, "image_id": 1313, "category_id": 1, "bbox": [ 560, 230, 32, 85 ], "height": 85, "occlusion": 1, "ignore": 0 }, { "id": 2260, "image_id": 1313, "category_id": 1, "bbox": [ 516, 224, 25, 71 ], "height": 71, "occlusion": 2, "ignore": 0 }, { "id": 2261, "image_id": 1313, "category_id": 1, "bbox": [ 315, 221, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2262, "image_id": 1313, "category_id": 1, "bbox": [ 101, 225, 25, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 2263, "image_id": 1313, "category_id": 1, "bbox": [ 182, 221, 22, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2264, "image_id": 1313, "category_id": 1, "bbox": [ 206, 220, 22, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2265, "image_id": 1314, "category_id": 1, "bbox": [ 100, 223, 31, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2266, "image_id": 1314, "category_id": 1, "bbox": [ 135, 216, 28, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2267, "image_id": 1314, "category_id": 1, "bbox": [ 495, 220, 21, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2268, "image_id": 1314, "category_id": 1, "bbox": [ 335, 234, 54, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 2269, "image_id": 1314, "category_id": 1, "bbox": [ 200, 221, 32, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2270, "image_id": 1314, "category_id": 1, "bbox": [ 259, 220, 30, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2271, "image_id": 1314, "category_id": 1, "bbox": [ 399, 232, 53, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 2272, "image_id": 1314, "category_id": 1, "bbox": [ 150, 238, 83, 134 ], "height": 134, "occlusion": 0, "ignore": 0 }, { "id": 2273, "image_id": 1314, "category_id": 1, "bbox": [ 219, 223, 39, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 2274, "image_id": 1314, "category_id": 1, "bbox": [ 151, 217, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2275, "image_id": 1314, "category_id": 1, "bbox": [ 78, 218, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2276, "image_id": 1314, "category_id": 1, "bbox": [ 47, 219, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2277, "image_id": 1314, "category_id": 1, "bbox": [ 6, 212, 44, 68 ], "height": 68, "occlusion": 0, "ignore": 1 }, { "id": 2278, "image_id": 1314, "category_id": 1, "bbox": [ 471, 221, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2279, "image_id": 1314, "category_id": 1, "bbox": [ 512, 220, 19, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2280, "image_id": 1314, "category_id": 1, "bbox": [ 528, 222, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2281, "image_id": 1314, "category_id": 1, "bbox": [ 545, 224, 28, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2282, "image_id": 1314, "category_id": 1, "bbox": [ 564, 220, 27, 87 ], "height": 87, "occlusion": 1, "ignore": 0 }, { "id": 2283, "image_id": 1314, "category_id": 1, "bbox": [ 586, 227, 31, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2284, "image_id": 1314, "category_id": 1, "bbox": [ 614, 220, 25, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2285, "image_id": 1315, "category_id": 1, "bbox": [ 75, 222, 30, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2286, "image_id": 1315, "category_id": 1, "bbox": [ 109, 219, 32, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2287, "image_id": 1315, "category_id": 1, "bbox": [ 431, 238, 60, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 2288, "image_id": 1315, "category_id": 1, "bbox": [ 155, 222, 33, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2289, "image_id": 1315, "category_id": 1, "bbox": [ 299, 221, 47, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 2290, "image_id": 1315, "category_id": 1, "bbox": [ 325, 241, 46, 133 ], "height": 133, "occlusion": 1, "ignore": 0 }, { "id": 2291, "image_id": 1315, "category_id": 1, "bbox": [ 356, 229, 24, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2292, "image_id": 1315, "category_id": 1, "bbox": [ 175, 228, 30, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2293, "image_id": 1315, "category_id": 1, "bbox": [ 121, 247, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 2294, "image_id": 1315, "category_id": 1, "bbox": [ 140, 220, 27, 66 ], "height": 66, "occlusion": 2, "ignore": 0 }, { "id": 2295, "image_id": 1315, "category_id": 1, "bbox": [ 37, 224, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2296, "image_id": 1315, "category_id": 1, "bbox": [ 49, 212, 25, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2297, "image_id": 1315, "category_id": 1, "bbox": [ 9, 218, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2298, "image_id": 1315, "category_id": 1, "bbox": [ 370, 228, 25, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 2299, "image_id": 1315, "category_id": 1, "bbox": [ 384, 226, 21, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 2300, "image_id": 1315, "category_id": 1, "bbox": [ 583, 222, 28, 71 ], "height": 71, "occlusion": 1, "ignore": 0 }, { "id": 2301, "image_id": 1315, "category_id": 1, "bbox": [ 603, 225, 32, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 2302, "image_id": 1315, "category_id": 1, "bbox": [ 561, 217, 23, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2303, "image_id": 1315, "category_id": 1, "bbox": [ 542, 220, 23, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2304, "image_id": 1315, "category_id": 1, "bbox": [ 472, 210, 69, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 2305, "image_id": 1316, "category_id": 1, "bbox": [ 47, 219, 29, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2306, "image_id": 1316, "category_id": 1, "bbox": [ 82, 218, 32, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2307, "image_id": 1316, "category_id": 1, "bbox": [ 533, 239, 39, 107 ], "height": 107, "occlusion": 1, "ignore": 0 }, { "id": 2308, "image_id": 1316, "category_id": 1, "bbox": [ 119, 220, 31, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2309, "image_id": 1316, "category_id": 1, "bbox": [ 199, 223, 57, 134 ], "height": 134, "occlusion": 0, "ignore": 0 }, { "id": 2310, "image_id": 1316, "category_id": 1, "bbox": [ 464, 250, 67, 123 ], "height": 123, "occlusion": 0, "ignore": 0 }, { "id": 2311, "image_id": 1316, "category_id": 1, "bbox": [ 76, 229, 84, 137 ], "height": 137, "occlusion": 0, "ignore": 0 }, { "id": 2312, "image_id": 1316, "category_id": 1, "bbox": [ 307, 227, 27, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2313, "image_id": 1316, "category_id": 1, "bbox": [ 153, 221, 37, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2314, "image_id": 1316, "category_id": 1, "bbox": [ 409, 224, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2315, "image_id": 1316, "category_id": 1, "bbox": [ 25, 217, 25, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2316, "image_id": 1316, "category_id": 1, "bbox": [ 5, 218, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2317, "image_id": 1316, "category_id": 1, "bbox": [ 327, 222, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2318, "image_id": 1316, "category_id": 1, "bbox": [ 425, 220, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2319, "image_id": 1316, "category_id": 1, "bbox": [ 438, 220, 26, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2320, "image_id": 1316, "category_id": 1, "bbox": [ 468, 211, 73, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2321, "image_id": 1316, "category_id": 1, "bbox": [ 551, 224, 24, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 2322, "image_id": 1316, "category_id": 1, "bbox": [ 569, 219, 23, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2323, "image_id": 1316, "category_id": 1, "bbox": [ 600, 222, 26, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 2324, "image_id": 1316, "category_id": 1, "bbox": [ 621, 222, 21, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 2325, "image_id": 1316, "category_id": 1, "bbox": [ 586, 225, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2326, "image_id": 1317, "category_id": 1, "bbox": [ 21, 217, 31, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2327, "image_id": 1317, "category_id": 1, "bbox": [ 58, 212, 28, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 2328, "image_id": 1317, "category_id": 1, "bbox": [ 116, 220, 25, 63 ], "height": 63, "occlusion": 2, "ignore": 0 }, { "id": 2329, "image_id": 1317, "category_id": 1, "bbox": [ 120, 231, 57, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 2330, "image_id": 1317, "category_id": 1, "bbox": [ 200, 226, 78, 144 ], "height": 144, "occlusion": 0, "ignore": 0 }, { "id": 2331, "image_id": 1317, "category_id": 1, "bbox": [ 270, 229, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2332, "image_id": 1317, "category_id": 1, "bbox": [ 143, 223, 31, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2333, "image_id": 1317, "category_id": 1, "bbox": [ 379, 219, 21, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2334, "image_id": 1317, "category_id": 1, "bbox": [ 359, 220, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2335, "image_id": 1317, "category_id": 1, "bbox": [ 288, 224, 23, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2336, "image_id": 1317, "category_id": 1, "bbox": [ 70, 215, 29, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2337, "image_id": 1317, "category_id": 1, "bbox": [ 92, 222, 26, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2338, "image_id": 1317, "category_id": 1, "bbox": [ 438, 220, 23, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2339, "image_id": 1317, "category_id": 1, "bbox": [ 562, 223, 24, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2340, "image_id": 1317, "category_id": 1, "bbox": [ 583, 220, 26, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2341, "image_id": 1317, "category_id": 1, "bbox": [ 611, 225, 25, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 2342, "image_id": 1317, "category_id": 1, "bbox": [ 542, 221, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2343, "image_id": 1317, "category_id": 1, "bbox": [ 469, 215, 63, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2344, "image_id": 1318, "category_id": 1, "bbox": [ 103, 224, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2345, "image_id": 1318, "category_id": 1, "bbox": [ 13, 231, 66, 134 ], "height": 134, "occlusion": 0, "ignore": 0 }, { "id": 2346, "image_id": 1318, "category_id": 1, "bbox": [ 342, 235, 74, 143 ], "height": 143, "occlusion": 0, "ignore": 0 }, { "id": 2347, "image_id": 1318, "category_id": 1, "bbox": [ 465, 219, 46, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2348, "image_id": 1318, "category_id": 1, "bbox": [ 234, 229, 25, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2349, "image_id": 1318, "category_id": 1, "bbox": [ 125, 222, 33, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2350, "image_id": 1318, "category_id": 1, "bbox": [ 303, 220, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2351, "image_id": 1318, "category_id": 1, "bbox": [ 285, 223, 30, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2352, "image_id": 1318, "category_id": 1, "bbox": [ 253, 224, 26, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2353, "image_id": 1318, "category_id": 1, "bbox": [ 47, 226, 29, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 2354, "image_id": 1318, "category_id": 1, "bbox": [ 86, 221, 25, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 2355, "image_id": 1318, "category_id": 1, "bbox": [ 509, 217, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2356, "image_id": 1318, "category_id": 1, "bbox": [ 526, 219, 21, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2357, "image_id": 1318, "category_id": 1, "bbox": [ 378, 220, 28, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 2358, "image_id": 1318, "category_id": 1, "bbox": [ 577, 223, 28, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2359, "image_id": 1318, "category_id": 1, "bbox": [ 595, 221, 26, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2360, "image_id": 1318, "category_id": 1, "bbox": [ 619, 226, 21, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 2361, "image_id": 1319, "category_id": 1, "bbox": [ 80, 220, 34, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2362, "image_id": 1319, "category_id": 1, "bbox": [ 460, 236, 69, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 2363, "image_id": 1319, "category_id": 1, "bbox": [ 461, 212, 70, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 2364, "image_id": 1319, "category_id": 1, "bbox": [ 210, 227, 22, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2365, "image_id": 1319, "category_id": 1, "bbox": [ 104, 220, 33, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2366, "image_id": 1319, "category_id": 1, "bbox": [ 243, 220, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2367, "image_id": 1319, "category_id": 1, "bbox": [ 222, 223, 25, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2368, "image_id": 1319, "category_id": 1, "bbox": [ 393, 218, 26, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2369, "image_id": 1319, "category_id": 1, "bbox": [ 600, 221, 26, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 2370, "image_id": 1319, "category_id": 1, "bbox": [ 620, 227, 20, 60 ], "height": 60, "occlusion": 1, "ignore": 0 }, { "id": 2371, "image_id": 1319, "category_id": 1, "bbox": [ 67, 220, 25, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2372, "image_id": 1319, "category_id": 1, "bbox": [ 50, 238, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 2373, "image_id": 1319, "category_id": 1, "bbox": [ 30, 214, 29, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2374, "image_id": 1319, "category_id": 1, "bbox": [ 2, 222, 29, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2375, "image_id": 1320, "category_id": 1, "bbox": [ 59, 220, 32, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2376, "image_id": 1320, "category_id": 1, "bbox": [ 186, 226, 25, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 2377, "image_id": 1320, "category_id": 1, "bbox": [ 80, 220, 39, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2378, "image_id": 1320, "category_id": 1, "bbox": [ 166, 218, 29, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2379, "image_id": 1320, "category_id": 1, "bbox": [ 45, 219, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2380, "image_id": 1320, "category_id": 1, "bbox": [ 13, 214, 35, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2381, "image_id": 1320, "category_id": 1, "bbox": [ 404, 221, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2382, "image_id": 1320, "category_id": 1, "bbox": [ 376, 217, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2383, "image_id": 1320, "category_id": 1, "bbox": [ 603, 228, 25, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2384, "image_id": 1320, "category_id": 1, "bbox": [ 528, 221, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2385, "image_id": 1320, "category_id": 1, "bbox": [ 461, 216, 67, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 2386, "image_id": 1321, "category_id": 1, "bbox": [ 449, 215, 62, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 2387, "image_id": 1321, "category_id": 1, "bbox": [ 150, 227, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2388, "image_id": 1321, "category_id": 1, "bbox": [ 42, 221, 27, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2389, "image_id": 1321, "category_id": 1, "bbox": [ 72, 219, 27, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2390, "image_id": 1321, "category_id": 1, "bbox": [ 18, 212, 30, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2391, "image_id": 1321, "category_id": 1, "bbox": [ 130, 222, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2392, "image_id": 1321, "category_id": 1, "bbox": [ 165, 223, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2393, "image_id": 1321, "category_id": 1, "bbox": [ 417, 218, 22, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2394, "image_id": 1321, "category_id": 1, "bbox": [ 505, 224, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2395, "image_id": 1321, "category_id": 1, "bbox": [ 520, 227, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2396, "image_id": 1321, "category_id": 1, "bbox": [ 551, 220, 25, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2397, "image_id": 1321, "category_id": 1, "bbox": [ 608, 230, 29, 60 ], "height": 60, "occlusion": 1, "ignore": 0 }, { "id": 2398, "image_id": 1322, "category_id": 1, "bbox": [ 128, 224, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2399, "image_id": 1322, "category_id": 1, "bbox": [ 35, 217, 30, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2400, "image_id": 1322, "category_id": 1, "bbox": [ 55, 222, 27, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2401, "image_id": 1322, "category_id": 1, "bbox": [ 393, 221, 28, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2402, "image_id": 1322, "category_id": 1, "bbox": [ 427, 220, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2403, "image_id": 1322, "category_id": 1, "bbox": [ 96, 220, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2404, "image_id": 1322, "category_id": 1, "bbox": [ 143, 221, 22, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2405, "image_id": 1322, "category_id": 1, "bbox": [ 470, 220, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2406, "image_id": 1322, "category_id": 1, "bbox": [ 483, 218, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2407, "image_id": 1322, "category_id": 1, "bbox": [ 451, 213, 16, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2408, "image_id": 1322, "category_id": 1, "bbox": [ 515, 222, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2409, "image_id": 1322, "category_id": 1, "bbox": [ 530, 221, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2410, "image_id": 1322, "category_id": 1, "bbox": [ 580, 221, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2411, "image_id": 1322, "category_id": 1, "bbox": [ 612, 220, 20, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 2412, "image_id": 1323, "category_id": 1, "bbox": [ 99, 226, 27, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2413, "image_id": 1323, "category_id": 1, "bbox": [ 22, 218, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2414, "image_id": 1323, "category_id": 1, "bbox": [ 359, 219, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2415, "image_id": 1323, "category_id": 1, "bbox": [ 376, 222, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2416, "image_id": 1323, "category_id": 1, "bbox": [ 525, 221, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2417, "image_id": 1323, "category_id": 1, "bbox": [ 538, 220, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2418, "image_id": 1323, "category_id": 1, "bbox": [ 119, 223, 24, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 2419, "image_id": 1323, "category_id": 1, "bbox": [ 46, 215, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2420, "image_id": 1323, "category_id": 1, "bbox": [ 69, 216, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2421, "image_id": 1323, "category_id": 1, "bbox": [ 433, 221, 25, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2422, "image_id": 1323, "category_id": 1, "bbox": [ 460, 206, 48, 63 ], "height": 63, "occlusion": 0, "ignore": 1 }, { "id": 2423, "image_id": 1323, "category_id": 1, "bbox": [ 584, 219, 57, 64 ], "height": 64, "occlusion": 0, "ignore": 1 }, { "id": 2424, "image_id": 1324, "category_id": 1, "bbox": [ 445, 217, 64, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 2425, "image_id": 1324, "category_id": 1, "bbox": [ 77, 227, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2426, "image_id": 1324, "category_id": 1, "bbox": [ 323, 225, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2427, "image_id": 1324, "category_id": 1, "bbox": [ 307, 220, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2428, "image_id": 1324, "category_id": 1, "bbox": [ 537, 221, 27, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2429, "image_id": 1324, "category_id": 1, "bbox": [ 553, 223, 24, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2430, "image_id": 1324, "category_id": 1, "bbox": [ 591, 214, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2431, "image_id": 1324, "category_id": 1, "bbox": [ 568, 218, 23, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2432, "image_id": 1324, "category_id": 1, "bbox": [ 93, 221, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2433, "image_id": 1324, "category_id": 1, "bbox": [ 46, 218, 21, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2434, "image_id": 1324, "category_id": 1, "bbox": [ 21, 215, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2435, "image_id": 1324, "category_id": 1, "bbox": [ 4, 213, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2436, "image_id": 1325, "category_id": 1, "bbox": [ 442, 215, 77, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2437, "image_id": 1325, "category_id": 1, "bbox": [ 67, 220, 31, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2438, "image_id": 1325, "category_id": 1, "bbox": [ 285, 223, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2439, "image_id": 1325, "category_id": 1, "bbox": [ 254, 221, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2440, "image_id": 1325, "category_id": 1, "bbox": [ 551, 222, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2441, "image_id": 1325, "category_id": 1, "bbox": [ 569, 220, 22, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 2442, "image_id": 1325, "category_id": 1, "bbox": [ 599, 217, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2443, "image_id": 1325, "category_id": 1, "bbox": [ 35, 215, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2444, "image_id": 1325, "category_id": 1, "bbox": [ 11, 213, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2445, "image_id": 1326, "category_id": 1, "bbox": [ 452, 215, 67, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2446, "image_id": 1326, "category_id": 1, "bbox": [ 37, 225, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2447, "image_id": 1326, "category_id": 1, "bbox": [ 250, 218, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2448, "image_id": 1326, "category_id": 1, "bbox": [ 212, 220, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2449, "image_id": 1326, "category_id": 1, "bbox": [ 568, 217, 20, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2450, "image_id": 1326, "category_id": 1, "bbox": [ 584, 225, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2451, "image_id": 1326, "category_id": 1, "bbox": [ 601, 212, 20, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2452, "image_id": 1326, "category_id": 1, "bbox": [ 534, 219, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2453, "image_id": 1326, "category_id": 1, "bbox": [ 55, 221, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2454, "image_id": 1326, "category_id": 1, "bbox": [ 18, 210, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2455, "image_id": 1327, "category_id": 1, "bbox": [ 447, 210, 73, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2456, "image_id": 1327, "category_id": 1, "bbox": [ 20, 221, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2457, "image_id": 1327, "category_id": 1, "bbox": [ 213, 223, 26, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2458, "image_id": 1327, "category_id": 1, "bbox": [ 177, 219, 28, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2459, "image_id": 1327, "category_id": 1, "bbox": [ 580, 218, 27, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 2460, "image_id": 1327, "category_id": 1, "bbox": [ 598, 220, 27, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2461, "image_id": 1327, "category_id": 1, "bbox": [ 35, 209, 24, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2462, "image_id": 1327, "category_id": 1, "bbox": [ 518, 216, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2463, "image_id": 1328, "category_id": 1, "bbox": [ 449, 212, 87, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 2464, "image_id": 1328, "category_id": 1, "bbox": [ 7, 217, 34, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 2465, "image_id": 1328, "category_id": 1, "bbox": [ 179, 220, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2466, "image_id": 1328, "category_id": 1, "bbox": [ 141, 219, 28, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2467, "image_id": 1328, "category_id": 1, "bbox": [ 594, 222, 28, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 2468, "image_id": 1328, "category_id": 1, "bbox": [ 613, 229, 25, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 2469, "image_id": 1328, "category_id": 1, "bbox": [ 45, 203, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2470, "image_id": 1329, "category_id": 1, "bbox": [ 465, 215, 58, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 2471, "image_id": 1329, "category_id": 1, "bbox": [ 145, 221, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2472, "image_id": 1329, "category_id": 1, "bbox": [ 110, 220, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2473, "image_id": 1329, "category_id": 1, "bbox": [ 596, 217, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2474, "image_id": 1329, "category_id": 1, "bbox": [ 612, 227, 26, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2475, "image_id": 1329, "category_id": 1, "bbox": [ 46, 208, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2476, "image_id": 1329, "category_id": 1, "bbox": [ 26, 210, 24, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2477, "image_id": 1330, "category_id": 1, "bbox": [ 517, 223, 22, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2478, "image_id": 1330, "category_id": 1, "bbox": [ 87, 220, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2479, "image_id": 1330, "category_id": 1, "bbox": [ 63, 227, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2480, "image_id": 1330, "category_id": 1, "bbox": [ 529, 221, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2481, "image_id": 1330, "category_id": 1, "bbox": [ 468, 210, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2482, "image_id": 1330, "category_id": 1, "bbox": [ 3, 207, 68, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 2483, "image_id": 1330, "category_id": 1, "bbox": [ 501, 217, 19, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2484, "image_id": 1331, "category_id": 1, "bbox": [ 558, 230, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2485, "image_id": 1331, "category_id": 1, "bbox": [ 517, 216, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2486, "image_id": 1331, "category_id": 1, "bbox": [ 570, 225, 22, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2487, "image_id": 1331, "category_id": 1, "bbox": [ 529, 214, 24, 56 ], "height": 56, "occlusion": 2, "ignore": 0 }, { "id": 2488, "image_id": 1331, "category_id": 1, "bbox": [ 5, 206, 70, 78 ], "height": 78, "occlusion": 0, "ignore": 1 }, { "id": 2489, "image_id": 1332, "category_id": 1, "bbox": [ 585, 229, 25, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2490, "image_id": 1332, "category_id": 1, "bbox": [ 529, 215, 25, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2491, "image_id": 1332, "category_id": 1, "bbox": [ 602, 220, 31, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2492, "image_id": 1332, "category_id": 1, "bbox": [ 545, 215, 21, 58 ], "height": 58, "occlusion": 2, "ignore": 0 }, { "id": 2493, "image_id": 1332, "category_id": 1, "bbox": [ 515, 214, 23, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2494, "image_id": 1333, "category_id": 1, "bbox": [ 563, 211, 25, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2495, "image_id": 1333, "category_id": 1, "bbox": [ 439, 205, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 2496, "image_id": 1333, "category_id": 1, "bbox": [ 574, 208, 24, 64 ], "height": 64, "occlusion": 2, "ignore": 0 }, { "id": 2497, "image_id": 1333, "category_id": 1, "bbox": [ 533, 211, 25, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2498, "image_id": 1333, "category_id": 1, "bbox": [ 548, 210, 24, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2499, "image_id": 1334, "category_id": 1, "bbox": [ 451, 203, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2500, "image_id": 1334, "category_id": 1, "bbox": [ 240, 208, 21, 27 ], "height": 27, "occlusion": 1, "ignore": 1 }, { "id": 2501, "image_id": 1334, "category_id": 1, "bbox": [ 467, 201, 23, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 2502, "image_id": 1334, "category_id": 1, "bbox": [ 615, 206, 25, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2503, "image_id": 1335, "category_id": 1, "bbox": [ 547, 210, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2504, "image_id": 1335, "category_id": 1, "bbox": [ 516, 204, 23, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 2505, "image_id": 1335, "category_id": 1, "bbox": [ 458, 208, 21, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 2506, "image_id": 1335, "category_id": 1, "bbox": [ 532, 207, 22, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2507, "image_id": 1335, "category_id": 1, "bbox": [ 258, 212, 20, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 2508, "image_id": 1336, "category_id": 1, "bbox": [ 535, 202, 29, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 2509, "image_id": 1336, "category_id": 1, "bbox": [ 510, 203, 25, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 2510, "image_id": 1336, "category_id": 1, "bbox": [ 602, 203, 32, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2511, "image_id": 1336, "category_id": 1, "bbox": [ 480, 207, 18, 37 ], "height": 37, "occlusion": 1, "ignore": 0 }, { "id": 2512, "image_id": 1337, "category_id": 1, "bbox": [ 590, 203, 30, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 2513, "image_id": 1337, "category_id": 1, "bbox": [ 609, 198, 28, 87 ], "height": 87, "occlusion": 1, "ignore": 0 }, { "id": 2514, "image_id": 1337, "category_id": 1, "bbox": [ 520, 200, 27, 60 ], "height": 60, "occlusion": 1, "ignore": 0 }, { "id": 2515, "image_id": 1338, "category_id": 1, "bbox": [ 578, 203, 31, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 2516, "image_id": 1338, "category_id": 1, "bbox": [ 335, 210, 24, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 2517, "image_id": 1339, "category_id": 1, "bbox": [ 585, 206, 28, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 2518, "image_id": 1339, "category_id": 1, "bbox": [ 436, 207, 46, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2519, "image_id": 1340, "category_id": 1, "bbox": [ 462, 204, 56, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 2520, "image_id": 1341, "category_id": 1, "bbox": [ 509, 207, 25, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2521, "image_id": 1341, "category_id": 1, "bbox": [ 119, 209, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2522, "image_id": 1342, "category_id": 1, "bbox": [ 540, 209, 31, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2523, "image_id": 1342, "category_id": 1, "bbox": [ 119, 211, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2524, "image_id": 1342, "category_id": 1, "bbox": [ 99, 214, 26, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2525, "image_id": 1342, "category_id": 1, "bbox": [ 84, 217, 23, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 2526, "image_id": 1342, "category_id": 1, "bbox": [ 573, 221, 28, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2527, "image_id": 1342, "category_id": 1, "bbox": [ 609, 210, 28, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 2528, "image_id": 1343, "category_id": 1, "bbox": [ 592, 208, 35, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 2529, "image_id": 1343, "category_id": 1, "bbox": [ 123, 210, 29, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 2530, "image_id": 1343, "category_id": 1, "bbox": [ 111, 210, 25, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2531, "image_id": 1343, "category_id": 1, "bbox": [ 577, 214, 30, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2532, "image_id": 1343, "category_id": 1, "bbox": [ 140, 212, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2533, "image_id": 1343, "category_id": 1, "bbox": [ 616, 220, 24, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 2534, "image_id": 1343, "category_id": 1, "bbox": [ 503, 203, 68, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 2535, "image_id": 1344, "category_id": 1, "bbox": [ 160, 215, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2536, "image_id": 1344, "category_id": 1, "bbox": [ 137, 216, 33, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2537, "image_id": 1344, "category_id": 1, "bbox": [ 575, 202, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 1 }, { "id": 2538, "image_id": 1344, "category_id": 1, "bbox": [ 615, 212, 27, 94 ], "height": 94, "occlusion": 0, "ignore": 1 }, { "id": 2539, "image_id": 1345, "category_id": 1, "bbox": [ 187, 219, 31, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 2540, "image_id": 1345, "category_id": 1, "bbox": [ 161, 214, 32, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2541, "image_id": 1345, "category_id": 1, "bbox": [ 393, 210, 31, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 2542, "image_id": 1345, "category_id": 1, "bbox": [ 37, 216, 34, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2543, "image_id": 1345, "category_id": 1, "bbox": [ 594, 198, 45, 80 ], "height": 80, "occlusion": 0, "ignore": 1 }, { "id": 2544, "image_id": 1346, "category_id": 1, "bbox": [ 382, 212, 30, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2545, "image_id": 1346, "category_id": 1, "bbox": [ 213, 223, 31, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2546, "image_id": 1346, "category_id": 1, "bbox": [ 188, 220, 36, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2547, "image_id": 1346, "category_id": 1, "bbox": [ 57, 216, 37, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2548, "image_id": 1346, "category_id": 1, "bbox": [ 24, 218, 34, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2549, "image_id": 1346, "category_id": 1, "bbox": [ 521, 196, 92, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 2550, "image_id": 1347, "category_id": 1, "bbox": [ 359, 210, 35, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2551, "image_id": 1347, "category_id": 1, "bbox": [ 256, 223, 30, 72 ], "height": 72, "occlusion": 2, "ignore": 0 }, { "id": 2552, "image_id": 1347, "category_id": 1, "bbox": [ 225, 225, 33, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2553, "image_id": 1347, "category_id": 1, "bbox": [ 88, 217, 35, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2554, "image_id": 1347, "category_id": 1, "bbox": [ 43, 223, 35, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2555, "image_id": 1347, "category_id": 1, "bbox": [ 197, 223, 30, 65 ], "height": 65, "occlusion": 2, "ignore": 0 }, { "id": 2556, "image_id": 1347, "category_id": 1, "bbox": [ 511, 210, 80, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 2557, "image_id": 1348, "category_id": 1, "bbox": [ 349, 212, 33, 78 ], "height": 78, "occlusion": 2, "ignore": 0 }, { "id": 2558, "image_id": 1348, "category_id": 1, "bbox": [ 107, 221, 24, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 2559, "image_id": 1348, "category_id": 1, "bbox": [ 68, 224, 36, 71 ], "height": 71, "occlusion": 2, "ignore": 0 }, { "id": 2560, "image_id": 1348, "category_id": 1, "bbox": [ 228, 217, 32, 78 ], "height": 78, "occlusion": 1, "ignore": 0 }, { "id": 2561, "image_id": 1348, "category_id": 1, "bbox": [ 541, 202, 98, 68 ], "height": 68, "occlusion": 0, "ignore": 1 }, { "id": 2562, "image_id": 1348, "category_id": 1, "bbox": [ 5, 216, 41, 87 ], "height": 87, "occlusion": 1, "ignore": 1 }, { "id": 2563, "image_id": 1348, "category_id": 1, "bbox": [ 119, 222, 31, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 2564, "image_id": 1349, "category_id": 1, "bbox": [ 157, 219, 36, 86 ], "height": 86, "occlusion": 0, "ignore": 0 }, { "id": 2565, "image_id": 1349, "category_id": 1, "bbox": [ 98, 221, 41, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2566, "image_id": 1349, "category_id": 1, "bbox": [ 147, 220, 26, 79 ], "height": 79, "occlusion": 2, "ignore": 0 }, { "id": 2567, "image_id": 1349, "category_id": 1, "bbox": [ 272, 214, 36, 86 ], "height": 86, "occlusion": 2, "ignore": 0 }, { "id": 2568, "image_id": 1349, "category_id": 1, "bbox": [ 374, 225, 33, 88 ], "height": 88, "occlusion": 2, "ignore": 0 }, { "id": 2569, "image_id": 1349, "category_id": 1, "bbox": [ 392, 232, 29, 73 ], "height": 73, "occlusion": 2, "ignore": 0 }, { "id": 2570, "image_id": 1349, "category_id": 1, "bbox": [ 317, 217, 36, 79 ], "height": 79, "occlusion": 2, "ignore": 0 }, { "id": 2571, "image_id": 1349, "category_id": 1, "bbox": [ 570, 211, 69, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 2572, "image_id": 1349, "category_id": 1, "bbox": [ 1, 218, 66, 95 ], "height": 95, "occlusion": 0, "ignore": 1 }, { "id": 2573, "image_id": 1350, "category_id": 1, "bbox": [ 201, 220, 23, 84 ], "height": 84, "occlusion": 2, "ignore": 0 }, { "id": 2574, "image_id": 1350, "category_id": 1, "bbox": [ 279, 213, 36, 98 ], "height": 98, "occlusion": 2, "ignore": 0 }, { "id": 2575, "image_id": 1350, "category_id": 1, "bbox": [ 445, 221, 59, 99 ], "height": 99, "occlusion": 0, "ignore": 1 }, { "id": 2576, "image_id": 1350, "category_id": 1, "bbox": [ 35, 216, 67, 110 ], "height": 110, "occlusion": 2, "ignore": 0 }, { "id": 2577, "image_id": 1350, "category_id": 1, "bbox": [ 212, 220, 34, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2578, "image_id": 1350, "category_id": 1, "bbox": [ 145, 221, 41, 80 ], "height": 80, "occlusion": 2, "ignore": 0 }, { "id": 2579, "image_id": 1350, "category_id": 1, "bbox": [ 569, 206, 67, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2580, "image_id": 1351, "category_id": 1, "bbox": [ 547, 223, 32, 83 ], "height": 83, "occlusion": 2, "ignore": 0 }, { "id": 2581, "image_id": 1351, "category_id": 1, "bbox": [ 220, 211, 36, 104 ], "height": 104, "occlusion": 1, "ignore": 0 }, { "id": 2582, "image_id": 1351, "category_id": 1, "bbox": [ 366, 217, 35, 86 ], "height": 86, "occlusion": 2, "ignore": 0 }, { "id": 2583, "image_id": 1351, "category_id": 1, "bbox": [ 120, 219, 45, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 2584, "image_id": 1351, "category_id": 1, "bbox": [ 261, 219, 42, 86 ], "height": 86, "occlusion": 2, "ignore": 1 }, { "id": 2585, "image_id": 1351, "category_id": 1, "bbox": [ 207, 221, 27, 86 ], "height": 86, "occlusion": 2, "ignore": 0 }, { "id": 2586, "image_id": 1351, "category_id": 1, "bbox": [ 99, 215, 36, 102 ], "height": 102, "occlusion": 2, "ignore": 0 }, { "id": 2587, "image_id": 1351, "category_id": 1, "bbox": [ 573, 206, 60, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2588, "image_id": 1352, "category_id": 1, "bbox": [ 186, 218, 62, 107 ], "height": 107, "occlusion": 0, "ignore": 1 }, { "id": 2589, "image_id": 1352, "category_id": 1, "bbox": [ 315, 219, 62, 94 ], "height": 94, "occlusion": 2, "ignore": 1 }, { "id": 2590, "image_id": 1352, "category_id": 1, "bbox": [ 262, 222, 36, 82 ], "height": 82, "occlusion": 2, "ignore": 0 }, { "id": 2591, "image_id": 1352, "category_id": 1, "bbox": [ 171, 221, 41, 100 ], "height": 100, "occlusion": 1, "ignore": 0 }, { "id": 2592, "image_id": 1352, "category_id": 1, "bbox": [ 413, 220, 32, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2593, "image_id": 1352, "category_id": 1, "bbox": [ 554, 219, 33, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2594, "image_id": 1352, "category_id": 1, "bbox": [ 141, 213, 43, 110 ], "height": 110, "occlusion": 2, "ignore": 0 }, { "id": 2595, "image_id": 1352, "category_id": 1, "bbox": [ 1, 206, 38, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 2596, "image_id": 1352, "category_id": 1, "bbox": [ 573, 206, 62, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2597, "image_id": 1353, "category_id": 1, "bbox": [ 240, 218, 41, 98 ], "height": 98, "occlusion": 1, "ignore": 0 }, { "id": 2598, "image_id": 1353, "category_id": 1, "bbox": [ 446, 219, 27, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2599, "image_id": 1353, "category_id": 1, "bbox": [ 534, 223, 31, 72 ], "height": 72, "occlusion": 2, "ignore": 0 }, { "id": 2600, "image_id": 1353, "category_id": 1, "bbox": [ 64, 216, 56, 108 ], "height": 108, "occlusion": 0, "ignore": 1 }, { "id": 2601, "image_id": 1353, "category_id": 1, "bbox": [ 261, 219, 36, 95 ], "height": 95, "occlusion": 2, "ignore": 0 }, { "id": 2602, "image_id": 1353, "category_id": 1, "bbox": [ 389, 225, 30, 84 ], "height": 84, "occlusion": 1, "ignore": 0 }, { "id": 2603, "image_id": 1353, "category_id": 1, "bbox": [ 370, 231, 27, 66 ], "height": 66, "occlusion": 2, "ignore": 0 }, { "id": 2604, "image_id": 1353, "category_id": 1, "bbox": [ 317, 225, 36, 75 ], "height": 75, "occlusion": 2, "ignore": 0 }, { "id": 2605, "image_id": 1353, "category_id": 1, "bbox": [ 11, 206, 42, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 2606, "image_id": 1353, "category_id": 1, "bbox": [ 571, 206, 68, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 2607, "image_id": 1354, "category_id": 1, "bbox": [ 491, 226, 26, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2608, "image_id": 1354, "category_id": 1, "bbox": [ 480, 228, 25, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 2609, "image_id": 1354, "category_id": 1, "bbox": [ 6, 222, 47, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 2610, "image_id": 1354, "category_id": 1, "bbox": [ 432, 234, 33, 76 ], "height": 76, "occlusion": 2, "ignore": 0 }, { "id": 2611, "image_id": 1354, "category_id": 1, "bbox": [ 416, 233, 32, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2612, "image_id": 1354, "category_id": 1, "bbox": [ 374, 231, 28, 81 ], "height": 81, "occlusion": 2, "ignore": 0 }, { "id": 2613, "image_id": 1354, "category_id": 1, "bbox": [ 580, 206, 60, 49 ], "height": 49, "occlusion": 2, "ignore": 1 }, { "id": 2614, "image_id": 1355, "category_id": 1, "bbox": [ 523, 222, 27, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2615, "image_id": 1355, "category_id": 1, "bbox": [ 379, 227, 30, 84 ], "height": 84, "occlusion": 2, "ignore": 0 }, { "id": 2616, "image_id": 1355, "category_id": 1, "bbox": [ 488, 229, 32, 87 ], "height": 87, "occlusion": 2, "ignore": 0 }, { "id": 2617, "image_id": 1355, "category_id": 1, "bbox": [ 424, 236, 31, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2618, "image_id": 1355, "category_id": 1, "bbox": [ 271, 214, 20, 41 ], "height": 41, "occlusion": 2, "ignore": 0 }, { "id": 2619, "image_id": 1355, "category_id": 1, "bbox": [ 578, 206, 62, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2620, "image_id": 1355, "category_id": 1, "bbox": [ 359, 226, 30, 71 ], "height": 71, "occlusion": 2, "ignore": 0 }, { "id": 2621, "image_id": 1355, "category_id": 1, "bbox": [ 410, 228, 27, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 2622, "image_id": 1356, "category_id": 1, "bbox": [ 434, 224, 33, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 2623, "image_id": 1356, "category_id": 1, "bbox": [ 415, 227, 30, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 2624, "image_id": 1356, "category_id": 1, "bbox": [ 573, 221, 27, 73 ], "height": 73, "occlusion": 2, "ignore": 0 }, { "id": 2625, "image_id": 1356, "category_id": 1, "bbox": [ 465, 231, 39, 79 ], "height": 79, "occlusion": 2, "ignore": 0 }, { "id": 2626, "image_id": 1356, "category_id": 1, "bbox": [ 556, 230, 29, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2627, "image_id": 1356, "category_id": 1, "bbox": [ 270, 214, 20, 41 ], "height": 41, "occlusion": 2, "ignore": 0 }, { "id": 2628, "image_id": 1356, "category_id": 1, "bbox": [ 594, 206, 47, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2629, "image_id": 1356, "category_id": 1, "bbox": [ 455, 235, 25, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2630, "image_id": 1357, "category_id": 1, "bbox": [ 469, 226, 33, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 2631, "image_id": 1357, "category_id": 1, "bbox": [ 615, 220, 26, 66 ], "height": 66, "occlusion": 2, "ignore": 1 }, { "id": 2632, "image_id": 1357, "category_id": 1, "bbox": [ 240, 220, 38, 92 ], "height": 92, "occlusion": 1, "ignore": 0 }, { "id": 2633, "image_id": 1357, "category_id": 1, "bbox": [ 532, 229, 32, 85 ], "height": 85, "occlusion": 1, "ignore": 0 }, { "id": 2634, "image_id": 1357, "category_id": 1, "bbox": [ 487, 226, 37, 96 ], "height": 96, "occlusion": 0, "ignore": 0 }, { "id": 2635, "image_id": 1357, "category_id": 1, "bbox": [ 270, 213, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2636, "image_id": 1357, "category_id": 1, "bbox": [ 599, 210, 42, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 2637, "image_id": 1358, "category_id": 1, "bbox": [ 105, 221, 48, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 2638, "image_id": 1358, "category_id": 1, "bbox": [ 556, 232, 34, 99 ], "height": 99, "occlusion": 1, "ignore": 0 }, { "id": 2639, "image_id": 1358, "category_id": 1, "bbox": [ 540, 229, 31, 108 ], "height": 108, "occlusion": 2, "ignore": 0 }, { "id": 2640, "image_id": 1358, "category_id": 1, "bbox": [ 272, 214, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2641, "image_id": 1358, "category_id": 1, "bbox": [ 604, 213, 36, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 2642, "image_id": 1358, "category_id": 1, "bbox": [ 502, 209, 17, 40 ], "height": 40, "occlusion": 1, "ignore": 0 }, { "id": 2643, "image_id": 1359, "category_id": 1, "bbox": [ 269, 216, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2644, "image_id": 1359, "category_id": 1, "bbox": [ 619, 213, 21, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 2645, "image_id": 1359, "category_id": 1, "bbox": [ 512, 209, 20, 35 ], "height": 35, "occlusion": 1, "ignore": 0 }, { "id": 2646, "image_id": 1359, "category_id": 1, "bbox": [ 488, 241, 63, 108 ], "height": 108, "occlusion": 2, "ignore": 1 }, { "id": 2647, "image_id": 1360, "category_id": 1, "bbox": [ 263, 212, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2648, "image_id": 1360, "category_id": 1, "bbox": [ 525, 209, 20, 35 ], "height": 35, "occlusion": 1, "ignore": 0 }, { "id": 2649, "image_id": 1360, "category_id": 1, "bbox": [ 485, 219, 34, 60 ], "height": 60, "occlusion": 2, "ignore": 1 }, { "id": 2650, "image_id": 1361, "category_id": 1, "bbox": [ 262, 211, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2651, "image_id": 1361, "category_id": 1, "bbox": [ 536, 207, 21, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 2652, "image_id": 1362, "category_id": 1, "bbox": [ 257, 216, 24, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2653, "image_id": 1362, "category_id": 1, "bbox": [ 544, 213, 21, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 2654, "image_id": 1362, "category_id": 1, "bbox": [ 569, 214, 29, 45 ], "height": 45, "occlusion": 1, "ignore": 1 }, { "id": 2655, "image_id": 1363, "category_id": 1, "bbox": [ 252, 226, 25, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2656, "image_id": 1363, "category_id": 1, "bbox": [ 551, 217, 21, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 2657, "image_id": 1363, "category_id": 1, "bbox": [ 564, 215, 25, 41 ], "height": 41, "occlusion": 1, "ignore": 0 }, { "id": 2658, "image_id": 1363, "category_id": 1, "bbox": [ 576, 213, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 2659, "image_id": 1364, "category_id": 1, "bbox": [ 248, 218, 28, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2660, "image_id": 1364, "category_id": 1, "bbox": [ 559, 212, 25, 43 ], "height": 43, "occlusion": 1, "ignore": 0 }, { "id": 2661, "image_id": 1364, "category_id": 1, "bbox": [ 570, 212, 27, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 2662, "image_id": 1365, "category_id": 1, "bbox": [ 241, 217, 28, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 2663, "image_id": 1365, "category_id": 1, "bbox": [ 554, 212, 25, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 2664, "image_id": 1365, "category_id": 1, "bbox": [ 591, 212, 28, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2665, "image_id": 1365, "category_id": 1, "bbox": [ 573, 212, 23, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 2666, "image_id": 1366, "category_id": 1, "bbox": [ 236, 216, 29, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2667, "image_id": 1366, "category_id": 1, "bbox": [ 612, 211, 27, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2668, "image_id": 1366, "category_id": 1, "bbox": [ 553, 209, 25, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 2669, "image_id": 1366, "category_id": 1, "bbox": [ 571, 206, 23, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2670, "image_id": 1367, "category_id": 1, "bbox": [ 233, 215, 29, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2671, "image_id": 1367, "category_id": 1, "bbox": [ 565, 212, 25, 52 ], "height": 52, "occlusion": 2, "ignore": 0 }, { "id": 2672, "image_id": 1368, "category_id": 1, "bbox": [ 228, 216, 30, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 2673, "image_id": 1368, "category_id": 1, "bbox": [ 537, 211, 22, 51 ], "height": 51, "occlusion": 2, "ignore": 0 }, { "id": 2674, "image_id": 1368, "category_id": 1, "bbox": [ 562, 210, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 2675, "image_id": 1368, "category_id": 1, "bbox": [ 590, 212, 24, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2676, "image_id": 1369, "category_id": 1, "bbox": [ 228, 213, 29, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 2677, "image_id": 1369, "category_id": 1, "bbox": [ 536, 206, 25, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 2678, "image_id": 1369, "category_id": 1, "bbox": [ 551, 207, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 2679, "image_id": 1370, "category_id": 1, "bbox": [ 226, 215, 28, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2680, "image_id": 1370, "category_id": 1, "bbox": [ 534, 207, 25, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 2681, "image_id": 1370, "category_id": 1, "bbox": [ 551, 207, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 2682, "image_id": 1370, "category_id": 1, "bbox": [ 615, 210, 26, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 2683, "image_id": 1371, "category_id": 1, "bbox": [ 221, 214, 34, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 2684, "image_id": 1371, "category_id": 1, "bbox": [ 526, 210, 25, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 2685, "image_id": 1371, "category_id": 1, "bbox": [ 543, 207, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 2686, "image_id": 1371, "category_id": 1, "bbox": [ 613, 211, 24, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 2687, "image_id": 1372, "category_id": 1, "bbox": [ 522, 213, 20, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 2688, "image_id": 1372, "category_id": 1, "bbox": [ 539, 212, 23, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 2689, "image_id": 1373, "category_id": 1, "bbox": [ 214, 214, 26, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2690, "image_id": 1373, "category_id": 1, "bbox": [ 525, 212, 26, 43 ], "height": 43, "occlusion": 2, "ignore": 1 }, { "id": 2691, "image_id": 1374, "category_id": 1, "bbox": [ 214, 217, 26, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2692, "image_id": 1374, "category_id": 1, "bbox": [ 520, 211, 23, 42 ], "height": 42, "occlusion": 2, "ignore": 1 }, { "id": 2693, "image_id": 1375, "category_id": 1, "bbox": [ 215, 218, 27, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2694, "image_id": 1376, "category_id": 1, "bbox": [ 232, 220, 29, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2695, "image_id": 1377, "category_id": 1, "bbox": [ 284, 220, 30, 79 ], "height": 79, "occlusion": 2, "ignore": 0 }, { "id": 2696, "image_id": 1378, "category_id": 1, "bbox": [ 367, 227, 36, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 2697, "image_id": 1380, "category_id": 1, "bbox": [ 205, 216, 52, 101 ], "height": 101, "occlusion": 2, "ignore": 0 }, { "id": 2698, "image_id": 1380, "category_id": 1, "bbox": [ 501, 212, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2699, "image_id": 1380, "category_id": 1, "bbox": [ 521, 210, 29, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 2700, "image_id": 1380, "category_id": 1, "bbox": [ 165, 209, 51, 96 ], "height": 96, "occlusion": 2, "ignore": 0 }, { "id": 2701, "image_id": 1381, "category_id": 1, "bbox": [ 340, 220, 55, 113 ], "height": 113, "occlusion": 2, "ignore": 0 }, { "id": 2702, "image_id": 1381, "category_id": 1, "bbox": [ 162, 235, 42, 109 ], "height": 109, "occlusion": 1, "ignore": 0 }, { "id": 2703, "image_id": 1381, "category_id": 1, "bbox": [ 377, 218, 48, 105 ], "height": 105, "occlusion": 2, "ignore": 0 }, { "id": 2704, "image_id": 1381, "category_id": 1, "bbox": [ 160, 221, 36, 108 ], "height": 108, "occlusion": 2, "ignore": 0 }, { "id": 2705, "image_id": 1382, "category_id": 1, "bbox": [ 434, 244, 43, 121 ], "height": 121, "occlusion": 1, "ignore": 0 }, { "id": 2706, "image_id": 1382, "category_id": 1, "bbox": [ 419, 229, 41, 96 ], "height": 96, "occlusion": 2, "ignore": 0 }, { "id": 2707, "image_id": 1382, "category_id": 1, "bbox": [ 34, 210, 25, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 2708, "image_id": 1382, "category_id": 1, "bbox": [ 567, 226, 65, 134 ], "height": 134, "occlusion": 2, "ignore": 0 }, { "id": 2709, "image_id": 1382, "category_id": 1, "bbox": [ 206, 210, 54, 77 ], "height": 77, "occlusion": 1, "ignore": 1 }, { "id": 2710, "image_id": 1382, "category_id": 1, "bbox": [ 12, 210, 26, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 2711, "image_id": 1382, "category_id": 1, "bbox": [ 50, 219, 45, 62 ], "height": 62, "occlusion": 1, "ignore": 1 }, { "id": 2712, "image_id": 1383, "category_id": 1, "bbox": [ 510, 204, 57, 110 ], "height": 110, "occlusion": 2, "ignore": 1 }, { "id": 2713, "image_id": 1383, "category_id": 1, "bbox": [ 336, 210, 46, 87 ], "height": 87, "occlusion": 2, "ignore": 1 }, { "id": 2714, "image_id": 1383, "category_id": 1, "bbox": [ 276, 209, 33, 63 ], "height": 63, "occlusion": 1, "ignore": 1 }, { "id": 2715, "image_id": 1384, "category_id": 1, "bbox": [ 545, 216, 46, 85 ], "height": 85, "occlusion": 1, "ignore": 1 }, { "id": 2716, "image_id": 1384, "category_id": 1, "bbox": [ 433, 213, 28, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2717, "image_id": 1384, "category_id": 1, "bbox": [ 160, 216, 35, 35 ], "height": 35, "occlusion": 2, "ignore": 1 }, { "id": 2718, "image_id": 1384, "category_id": 1, "bbox": [ 390, 216, 23, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 2719, "image_id": 1385, "category_id": 1, "bbox": [ 497, 207, 31, 64 ], "height": 64, "occlusion": 2, "ignore": 0 }, { "id": 2720, "image_id": 1385, "category_id": 1, "bbox": [ 479, 208, 27, 70 ], "height": 70, "occlusion": 1, "ignore": 0 }, { "id": 2721, "image_id": 1385, "category_id": 1, "bbox": [ 453, 210, 26, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2722, "image_id": 1385, "category_id": 1, "bbox": [ 194, 211, 31, 35 ], "height": 35, "occlusion": 1, "ignore": 1 }, { "id": 2723, "image_id": 1385, "category_id": 1, "bbox": [ 11, 194, 75, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 2724, "image_id": 1386, "category_id": 1, "bbox": [ 552, 206, 26, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 2725, "image_id": 1386, "category_id": 1, "bbox": [ 584, 210, 36, 84 ], "height": 84, "occlusion": 1, "ignore": 0 }, { "id": 2726, "image_id": 1386, "category_id": 1, "bbox": [ 531, 210, 31, 71 ], "height": 71, "occlusion": 1, "ignore": 0 }, { "id": 2727, "image_id": 1386, "category_id": 1, "bbox": [ 216, 202, 37, 42 ], "height": 42, "occlusion": 1, "ignore": 1 }, { "id": 2728, "image_id": 1386, "category_id": 1, "bbox": [ 10, 188, 105, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 2729, "image_id": 1387, "category_id": 1, "bbox": [ 598, 208, 34, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 2730, "image_id": 1387, "category_id": 1, "bbox": [ 578, 208, 29, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 2731, "image_id": 1387, "category_id": 1, "bbox": [ 231, 204, 57, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 2732, "image_id": 1387, "category_id": 1, "bbox": [ 17, 199, 120, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 2733, "image_id": 1388, "category_id": 1, "bbox": [ 244, 212, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 2734, "image_id": 1388, "category_id": 1, "bbox": [ 253, 210, 19, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2735, "image_id": 1388, "category_id": 1, "bbox": [ 103, 198, 29, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2736, "image_id": 1388, "category_id": 1, "bbox": [ 87, 197, 29, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2737, "image_id": 1388, "category_id": 1, "bbox": [ 75, 198, 27, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2738, "image_id": 1388, "category_id": 1, "bbox": [ 305, 207, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 2739, "image_id": 1388, "category_id": 1, "bbox": [ 288, 206, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2740, "image_id": 1389, "category_id": 1, "bbox": [ 256, 212, 21, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2741, "image_id": 1389, "category_id": 1, "bbox": [ 267, 212, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2742, "image_id": 1389, "category_id": 1, "bbox": [ 119, 194, 27, 43 ], "height": 43, "occlusion": 2, "ignore": 0 }, { "id": 2743, "image_id": 1389, "category_id": 1, "bbox": [ 105, 194, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2744, "image_id": 1389, "category_id": 1, "bbox": [ 79, 201, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2745, "image_id": 1389, "category_id": 1, "bbox": [ 359, 213, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2746, "image_id": 1389, "category_id": 1, "bbox": [ 327, 210, 22, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 2747, "image_id": 1390, "category_id": 1, "bbox": [ 243, 211, 30, 56 ], "height": 56, "occlusion": 1, "ignore": 1 }, { "id": 2748, "image_id": 1390, "category_id": 1, "bbox": [ 80, 195, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2749, "image_id": 1390, "category_id": 1, "bbox": [ 33, 203, 34, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 2750, "image_id": 1390, "category_id": 1, "bbox": [ 395, 210, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2751, "image_id": 1390, "category_id": 1, "bbox": [ 534, 219, 26, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2752, "image_id": 1390, "category_id": 1, "bbox": [ 55, 197, 30, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 2753, "image_id": 1390, "category_id": 1, "bbox": [ 562, 207, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2754, "image_id": 1390, "category_id": 1, "bbox": [ 584, 217, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 2755, "image_id": 1391, "category_id": 1, "bbox": [ 202, 230, 35, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 2756, "image_id": 1391, "category_id": 1, "bbox": [ 216, 224, 35, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2757, "image_id": 1391, "category_id": 1, "bbox": [ 597, 235, 40, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 2758, "image_id": 1391, "category_id": 1, "bbox": [ 432, 215, 29, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 2759, "image_id": 1391, "category_id": 1, "bbox": [ 573, 231, 29, 56 ], "height": 56, "occlusion": 2, "ignore": 0 }, { "id": 2760, "image_id": 1391, "category_id": 1, "bbox": [ 3, 197, 84, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 2761, "image_id": 1391, "category_id": 1, "bbox": [ 374, 220, 24, 38 ], "height": 38, "occlusion": 2, "ignore": 1 }, { "id": 2762, "image_id": 1392, "category_id": 1, "bbox": [ 62, 220, 51, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 2763, "image_id": 1392, "category_id": 1, "bbox": [ 426, 219, 32, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2764, "image_id": 1392, "category_id": 1, "bbox": [ 573, 227, 29, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 2765, "image_id": 1392, "category_id": 1, "bbox": [ 347, 214, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 2766, "image_id": 1393, "category_id": 1, "bbox": [ 379, 202, 38, 66 ], "height": 66, "occlusion": 0, "ignore": 1 }, { "id": 2767, "image_id": 1393, "category_id": 1, "bbox": [ 536, 217, 33, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2768, "image_id": 1393, "category_id": 1, "bbox": [ 262, 203, 30, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2769, "image_id": 1393, "category_id": 1, "bbox": [ 512, 200, 27, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2770, "image_id": 1393, "category_id": 1, "bbox": [ 219, 204, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 2771, "image_id": 1394, "category_id": 1, "bbox": [ 399, 210, 30, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2772, "image_id": 1394, "category_id": 1, "bbox": [ 384, 208, 29, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 2773, "image_id": 1394, "category_id": 1, "bbox": [ 567, 223, 41, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 2774, "image_id": 1394, "category_id": 1, "bbox": [ 251, 209, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2775, "image_id": 1394, "category_id": 1, "bbox": [ 495, 208, 28, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 2776, "image_id": 1394, "category_id": 1, "bbox": [ 509, 212, 27, 64 ], "height": 64, "occlusion": 2, "ignore": 0 }, { "id": 2777, "image_id": 1394, "category_id": 1, "bbox": [ 189, 208, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 2778, "image_id": 1394, "category_id": 1, "bbox": [ 140, 207, 26, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 2779, "image_id": 1395, "category_id": 1, "bbox": [ 462, 213, 35, 78 ], "height": 78, "occlusion": 1, "ignore": 0 }, { "id": 2780, "image_id": 1395, "category_id": 1, "bbox": [ 456, 210, 25, 79 ], "height": 79, "occlusion": 2, "ignore": 0 }, { "id": 2781, "image_id": 1395, "category_id": 1, "bbox": [ 293, 212, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 2782, "image_id": 1395, "category_id": 1, "bbox": [ 542, 210, 30, 68 ], "height": 68, "occlusion": 1, "ignore": 0 }, { "id": 2783, "image_id": 1395, "category_id": 1, "bbox": [ 560, 214, 27, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 2784, "image_id": 1395, "category_id": 1, "bbox": [ 439, 210, 22, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 2785, "image_id": 1395, "category_id": 1, "bbox": [ 346, 208, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2786, "image_id": 1395, "category_id": 1, "bbox": [ 205, 211, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 2787, "image_id": 1395, "category_id": 1, "bbox": [ 179, 214, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 2788, "image_id": 1395, "category_id": 1, "bbox": [ 425, 215, 15, 31 ], "height": 31, "occlusion": 2, "ignore": 0 }, { "id": 2789, "image_id": 1396, "category_id": 1, "bbox": [ 553, 204, 38, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2790, "image_id": 1396, "category_id": 1, "bbox": [ 442, 203, 27, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2791, "image_id": 1396, "category_id": 1, "bbox": [ 276, 209, 36, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 2792, "image_id": 1396, "category_id": 1, "bbox": [ 30, 196, 34, 64 ], "height": 64, "occlusion": 2, "ignore": 0 }, { "id": 2793, "image_id": 1397, "category_id": 1, "bbox": [ 587, 206, 38, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2794, "image_id": 1397, "category_id": 1, "bbox": [ 433, 219, 27, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2795, "image_id": 1397, "category_id": 1, "bbox": [ 403, 213, 25, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2796, "image_id": 1397, "category_id": 1, "bbox": [ 157, 206, 26, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 2797, "image_id": 1398, "category_id": 1, "bbox": [ 564, 220, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2798, "image_id": 1398, "category_id": 1, "bbox": [ 496, 221, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 2799, "image_id": 1398, "category_id": 1, "bbox": [ 243, 212, 33, 65 ], "height": 65, "occlusion": 2, "ignore": 0 }, { "id": 2800, "image_id": 1398, "category_id": 1, "bbox": [ 31, 196, 74, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 2801, "image_id": 1399, "category_id": 1, "bbox": [ 550, 214, 30, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 2802, "image_id": 1399, "category_id": 1, "bbox": [ 433, 220, 27, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2803, "image_id": 1399, "category_id": 1, "bbox": [ 146, 212, 33, 72 ], "height": 72, "occlusion": 2, "ignore": 0 }, { "id": 2804, "image_id": 1400, "category_id": 1, "bbox": [ 587, 216, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2805, "image_id": 1400, "category_id": 1, "bbox": [ 415, 222, 30, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2806, "image_id": 1400, "category_id": 1, "bbox": [ 90, 213, 34, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 2807, "image_id": 1401, "category_id": 1, "bbox": [ 410, 226, 26, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 2808, "image_id": 1401, "category_id": 1, "bbox": [ 21, 214, 48, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 2809, "image_id": 1401, "category_id": 1, "bbox": [ 66, 220, 31, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2810, "image_id": 1402, "category_id": 1, "bbox": [ 445, 219, 33, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 2811, "image_id": 1402, "category_id": 1, "bbox": [ 28, 219, 44, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2812, "image_id": 1403, "category_id": 1, "bbox": [ 480, 219, 30, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 2813, "image_id": 1403, "category_id": 1, "bbox": [ 384, 200, 87, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 2814, "image_id": 1404, "category_id": 1, "bbox": [ 559, 225, 47, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 2815, "image_id": 1404, "category_id": 1, "bbox": [ 495, 214, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2816, "image_id": 1404, "category_id": 1, "bbox": [ 402, 203, 99, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 2817, "image_id": 1405, "category_id": 1, "bbox": [ 582, 218, 28, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2818, "image_id": 1405, "category_id": 1, "bbox": [ 438, 205, 50, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 2819, "image_id": 1405, "category_id": 1, "bbox": [ 491, 210, 25, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 2820, "image_id": 1405, "category_id": 1, "bbox": [ 505, 213, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2821, "image_id": 1405, "category_id": 1, "bbox": [ 522, 214, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 2822, "image_id": 1406, "category_id": 1, "bbox": [ 547, 210, 27, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 2823, "image_id": 1406, "category_id": 1, "bbox": [ 583, 212, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 2824, "image_id": 1406, "category_id": 1, "bbox": [ 602, 212, 29, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2825, "image_id": 1406, "category_id": 1, "bbox": [ 569, 212, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2826, "image_id": 1406, "category_id": 1, "bbox": [ 512, 209, 24, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2827, "image_id": 1407, "category_id": 1, "bbox": [ 595, 214, 31, 80 ], "height": 80, "occlusion": 2, "ignore": 0 }, { "id": 2828, "image_id": 1409, "category_id": 1, "bbox": [ 512, 200, 106, 72 ], "height": 72, "occlusion": 0, "ignore": 1 }, { "id": 2829, "image_id": 1410, "category_id": 1, "bbox": [ 512, 196, 121, 107 ], "height": 107, "occlusion": 0, "ignore": 1 }, { "id": 2830, "image_id": 1411, "category_id": 1, "bbox": [ 532, 206, 106, 86 ], "height": 86, "occlusion": 0, "ignore": 1 }, { "id": 2831, "image_id": 1412, "category_id": 1, "bbox": [ 573, 219, 36, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 2832, "image_id": 1412, "category_id": 1, "bbox": [ 593, 232, 36, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 2833, "image_id": 1413, "category_id": 1, "bbox": [ 498, 226, 26, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 2834, "image_id": 1413, "category_id": 1, "bbox": [ 369, 225, 21, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 2835, "image_id": 1414, "category_id": 1, "bbox": [ 554, 206, 29, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 2836, "image_id": 1414, "category_id": 1, "bbox": [ 367, 208, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 2837, "image_id": 1415, "category_id": 1, "bbox": [ 373, 224, 31, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 2838, "image_id": 1415, "category_id": 1, "bbox": [ 499, 226, 23, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 2839, "image_id": 1416, "category_id": 1, "bbox": [ 402, 220, 33, 74 ], "height": 74, "occlusion": 1, "ignore": 0 }, { "id": 2840, "image_id": 1416, "category_id": 1, "bbox": [ 387, 226, 22, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2841, "image_id": 1416, "category_id": 1, "bbox": [ 558, 222, 27, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 2842, "image_id": 1417, "category_id": 1, "bbox": [ 429, 232, 35, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 2843, "image_id": 1417, "category_id": 1, "bbox": [ 418, 233, 30, 84 ], "height": 84, "occlusion": 1, "ignore": 0 }, { "id": 2844, "image_id": 1418, "category_id": 1, "bbox": [ 489, 225, 41, 136 ], "height": 136, "occlusion": 0, "ignore": 0 }, { "id": 2845, "image_id": 1418, "category_id": 1, "bbox": [ 465, 229, 38, 125 ], "height": 125, "occlusion": 1, "ignore": 0 }, { "id": 2846, "image_id": 1419, "category_id": 1, "bbox": [ 592, 246, 48, 228 ], "height": 228, "occlusion": 1, "ignore": 0 }, { "id": 2847, "image_id": 1421, "category_id": 1, "bbox": [ 98, 209, 30, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2848, "image_id": 1421, "category_id": 1, "bbox": [ 69, 207, 38, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2849, "image_id": 1421, "category_id": 1, "bbox": [ 145, 210, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2850, "image_id": 1422, "category_id": 1, "bbox": [ 18, 205, 45, 112 ], "height": 112, "occlusion": 0, "ignore": 0 }, { "id": 2851, "image_id": 1422, "category_id": 1, "bbox": [ 4, 204, 37, 119 ], "height": 119, "occlusion": 1, "ignore": 0 }, { "id": 2852, "image_id": 1422, "category_id": 1, "bbox": [ 598, 219, 25, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 2853, "image_id": 1423, "category_id": 1, "bbox": [ 88, 206, 30, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2854, "image_id": 1423, "category_id": 1, "bbox": [ 495, 214, 23, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2855, "image_id": 1423, "category_id": 1, "bbox": [ 515, 214, 26, 58 ], "height": 58, "occlusion": 1, "ignore": 1 }, { "id": 2856, "image_id": 1423, "category_id": 1, "bbox": [ 167, 210, 23, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2857, "image_id": 1423, "category_id": 1, "bbox": [ 48, 210, 34, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2858, "image_id": 1424, "category_id": 1, "bbox": [ 33, 206, 41, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2859, "image_id": 1424, "category_id": 1, "bbox": [ 468, 214, 107, 61 ], "height": 61, "occlusion": 2, "ignore": 1 }, { "id": 2860, "image_id": 1424, "category_id": 1, "bbox": [ 1, 204, 52, 99 ], "height": 99, "occlusion": 0, "ignore": 1 }, { "id": 2861, "image_id": 1424, "category_id": 1, "bbox": [ 177, 207, 21, 53 ], "height": 53, "occlusion": 2, "ignore": 0 }, { "id": 2862, "image_id": 1425, "category_id": 1, "bbox": [ 178, 208, 23, 58 ], "height": 58, "occlusion": 2, "ignore": 0 }, { "id": 2863, "image_id": 1425, "category_id": 1, "bbox": [ 515, 220, 29, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 2864, "image_id": 1425, "category_id": 1, "bbox": [ 536, 224, 23, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 2865, "image_id": 1425, "category_id": 1, "bbox": [ 565, 224, 61, 60 ], "height": 60, "occlusion": 2, "ignore": 1 }, { "id": 2866, "image_id": 1426, "category_id": 1, "bbox": [ 151, 204, 28, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2867, "image_id": 1426, "category_id": 1, "bbox": [ 140, 211, 23, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2868, "image_id": 1426, "category_id": 1, "bbox": [ 584, 225, 34, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 2869, "image_id": 1426, "category_id": 1, "bbox": [ 610, 220, 31, 96 ], "height": 96, "occlusion": 0, "ignore": 0 }, { "id": 2870, "image_id": 1427, "category_id": 1, "bbox": [ 98, 202, 29, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 2871, "image_id": 1427, "category_id": 1, "bbox": [ 77, 207, 35, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 2872, "image_id": 1428, "category_id": 1, "bbox": [ 56, 213, 35, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2873, "image_id": 1428, "category_id": 1, "bbox": [ 41, 210, 30, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 2874, "image_id": 1429, "category_id": 1, "bbox": [ 33, 205, 36, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2875, "image_id": 1429, "category_id": 1, "bbox": [ 16, 201, 37, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2876, "image_id": 1430, "category_id": 1, "bbox": [ 2, 201, 49, 75 ], "height": 75, "occlusion": 0, "ignore": 1 }, { "id": 2877, "image_id": 1430, "category_id": 1, "bbox": [ 588, 214, 37, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 2878, "image_id": 1430, "category_id": 1, "bbox": [ 614, 226, 27, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 2879, "image_id": 1431, "category_id": 1, "bbox": [ 1, 207, 35, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2880, "image_id": 1431, "category_id": 1, "bbox": [ 571, 223, 44, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 2881, "image_id": 1431, "category_id": 1, "bbox": [ 598, 227, 43, 106 ], "height": 106, "occlusion": 1, "ignore": 0 }, { "id": 2882, "image_id": 1432, "category_id": 1, "bbox": [ 47, 219, 35, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 2883, "image_id": 1432, "category_id": 1, "bbox": [ 29, 219, 36, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 2884, "image_id": 1433, "category_id": 1, "bbox": [ 63, 218, 33, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2885, "image_id": 1433, "category_id": 1, "bbox": [ 41, 216, 35, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2886, "image_id": 1434, "category_id": 1, "bbox": [ 29, 204, 45, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 2887, "image_id": 1434, "category_id": 1, "bbox": [ 7, 206, 43, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 2888, "image_id": 1436, "category_id": 1, "bbox": [ 515, 218, 24, 61 ], "height": 61, "occlusion": 2, "ignore": 0 }, { "id": 2889, "image_id": 1437, "category_id": 1, "bbox": [ 582, 213, 30, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 2890, "image_id": 1444, "category_id": 1, "bbox": [ 440, 218, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 2891, "image_id": 1446, "category_id": 1, "bbox": [ 487, 222, 25, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2892, "image_id": 1446, "category_id": 1, "bbox": [ 504, 221, 27, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 2893, "image_id": 1447, "category_id": 1, "bbox": [ 507, 211, 28, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 2894, "image_id": 1447, "category_id": 1, "bbox": [ 541, 215, 24, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2895, "image_id": 1448, "category_id": 1, "bbox": [ 568, 209, 37, 93 ], "height": 93, "occlusion": 1, "ignore": 0 }, { "id": 2896, "image_id": 1448, "category_id": 1, "bbox": [ 608, 214, 32, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2897, "image_id": 1450, "category_id": 1, "bbox": [ 596, 217, 33, 69 ], "height": 69, "occlusion": 2, "ignore": 0 }, { "id": 2898, "image_id": 1451, "category_id": 1, "bbox": [ 443, 247, 21, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 2899, "image_id": 1451, "category_id": 1, "bbox": [ 493, 238, 20, 41 ], "height": 41, "occlusion": 2, "ignore": 0 }, { "id": 2900, "image_id": 1452, "category_id": 1, "bbox": [ 468, 171, 24, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2901, "image_id": 1452, "category_id": 1, "bbox": [ 442, 171, 25, 54 ], "height": 54, "occlusion": 2, "ignore": 0 }, { "id": 2902, "image_id": 1452, "category_id": 1, "bbox": [ 524, 160, 22, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 2903, "image_id": 1453, "category_id": 1, "bbox": [ 501, 209, 27, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 2904, "image_id": 1453, "category_id": 1, "bbox": [ 471, 206, 25, 54 ], "height": 54, "occlusion": 1, "ignore": 0 }, { "id": 2905, "image_id": 1453, "category_id": 1, "bbox": [ 568, 193, 26, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 2906, "image_id": 1453, "category_id": 1, "bbox": [ 587, 188, 25, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 2907, "image_id": 1454, "category_id": 1, "bbox": [ 520, 209, 38, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2908, "image_id": 1454, "category_id": 1, "bbox": [ 549, 213, 40, 70 ], "height": 70, "occlusion": 2, "ignore": 0 }, { "id": 2909, "image_id": 1455, "category_id": 1, "bbox": [ 483, 215, 26, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 2910, "image_id": 1455, "category_id": 1, "bbox": [ 266, 196, 20, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 2911, "image_id": 1456, "category_id": 1, "bbox": [ 569, 210, 33, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 2912, "image_id": 1456, "category_id": 1, "bbox": [ 248, 190, 16, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 2913, "image_id": 1457, "category_id": 1, "bbox": [ 232, 193, 20, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 2914, "image_id": 1458, "category_id": 1, "bbox": [ 217, 211, 20, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 2915, "image_id": 1459, "category_id": 1, "bbox": [ 179, 183, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 2916, "image_id": 1460, "category_id": 1, "bbox": [ 131, 191, 23, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 2917, "image_id": 1461, "category_id": 1, "bbox": [ 122, 208, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2918, "image_id": 1462, "category_id": 1, "bbox": [ 159, 215, 34, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2919, "image_id": 1463, "category_id": 1, "bbox": [ 164, 212, 44, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 2920, "image_id": 1464, "category_id": 1, "bbox": [ 69, 221, 77, 160 ], "height": 160, "occlusion": 0, "ignore": 0 }, { "id": 2921, "image_id": 1493, "category_id": 1, "bbox": [ 219, 192, 23, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 2922, "image_id": 1494, "category_id": 1, "bbox": [ 178, 216, 20, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2923, "image_id": 1495, "category_id": 1, "bbox": [ 135, 216, 17, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 2924, "image_id": 1496, "category_id": 1, "bbox": [ 99, 217, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 2925, "image_id": 1497, "category_id": 1, "bbox": [ 37, 210, 21, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2926, "image_id": 1498, "category_id": 1, "bbox": [ 3, 214, 20, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2927, "image_id": 1498, "category_id": 1, "bbox": [ 171, 212, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 2928, "image_id": 1499, "category_id": 1, "bbox": [ 107, 220, 39, 87 ], "height": 87, "occlusion": 0, "ignore": 1 }, { "id": 2929, "image_id": 1499, "category_id": 1, "bbox": [ 3, 214, 22, 65 ], "height": 65, "occlusion": 1, "ignore": 0 }, { "id": 2930, "image_id": 1500, "category_id": 1, "bbox": [ 19, 212, 27, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 2931, "image_id": 1501, "category_id": 1, "bbox": [ 67, 219, 39, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 2932, "image_id": 1501, "category_id": 1, "bbox": [ 105, 221, 36, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 2933, "image_id": 1502, "category_id": 1, "bbox": [ 271, 222, 36, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 2934, "image_id": 1502, "category_id": 1, "bbox": [ 310, 228, 34, 99 ], "height": 99, "occlusion": 0, "ignore": 0 }, { "id": 2935, "image_id": 1503, "category_id": 1, "bbox": [ 520, 214, 62, 140 ], "height": 140, "occlusion": 0, "ignore": 0 }, { "id": 2936, "image_id": 1503, "category_id": 1, "bbox": [ 563, 228, 46, 121 ], "height": 121, "occlusion": 0, "ignore": 0 }, { "id": 2937, "image_id": 1503, "category_id": 1, "bbox": [ 294, 221, 26, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 2938, "image_id": 1504, "category_id": 1, "bbox": [ 230, 231, 41, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2939, "image_id": 1504, "category_id": 1, "bbox": [ 16, 210, 25, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 2940, "image_id": 1505, "category_id": 1, "bbox": [ 392, 222, 37, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 2941, "image_id": 1505, "category_id": 1, "bbox": [ 177, 203, 29, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 2942, "image_id": 1506, "category_id": 1, "bbox": [ 340, 226, 44, 96 ], "height": 96, "occlusion": 0, "ignore": 0 }, { "id": 2943, "image_id": 1506, "category_id": 1, "bbox": [ 92, 204, 22, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2944, "image_id": 1507, "category_id": 1, "bbox": [ 23, 209, 53, 114 ], "height": 114, "occlusion": 0, "ignore": 0 }, { "id": 2945, "image_id": 1509, "category_id": 1, "bbox": [ 568, 237, 41, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 2946, "image_id": 1509, "category_id": 1, "bbox": [ 611, 230, 28, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 2947, "image_id": 1510, "category_id": 1, "bbox": [ 532, 256, 44, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 2948, "image_id": 1510, "category_id": 1, "bbox": [ 379, 251, 52, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 2949, "image_id": 1510, "category_id": 1, "bbox": [ 445, 241, 26, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 2950, "image_id": 1510, "category_id": 1, "bbox": [ 468, 249, 25, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 2951, "image_id": 1511, "category_id": 1, "bbox": [ 173, 251, 60, 148 ], "height": 148, "occlusion": 0, "ignore": 0 }, { "id": 2952, "image_id": 1511, "category_id": 1, "bbox": [ 421, 244, 45, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 2953, "image_id": 1511, "category_id": 1, "bbox": [ 306, 233, 21, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 2954, "image_id": 1511, "category_id": 1, "bbox": [ 334, 241, 23, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 2955, "image_id": 1511, "category_id": 1, "bbox": [ 391, 241, 30, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 2956, "image_id": 1512, "category_id": 1, "bbox": [ 353, 235, 41, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 2957, "image_id": 1512, "category_id": 1, "bbox": [ 210, 223, 27, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2958, "image_id": 1512, "category_id": 1, "bbox": [ 236, 227, 29, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 2959, "image_id": 1512, "category_id": 1, "bbox": [ 316, 228, 25, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 2960, "image_id": 1513, "category_id": 1, "bbox": [ 368, 229, 48, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 2961, "image_id": 1513, "category_id": 1, "bbox": [ 200, 215, 32, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 2962, "image_id": 1513, "category_id": 1, "bbox": [ 227, 221, 31, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 2963, "image_id": 1513, "category_id": 1, "bbox": [ 330, 217, 26, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 2964, "image_id": 1514, "category_id": 1, "bbox": [ 447, 228, 53, 124 ], "height": 124, "occlusion": 0, "ignore": 0 }, { "id": 2965, "image_id": 1514, "category_id": 1, "bbox": [ 237, 205, 33, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 2966, "image_id": 1514, "category_id": 1, "bbox": [ 263, 219, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 2967, "image_id": 1514, "category_id": 1, "bbox": [ 391, 217, 36, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 2968, "image_id": 1515, "category_id": 1, "bbox": [ 515, 239, 50, 138 ], "height": 138, "occlusion": 0, "ignore": 0 }, { "id": 2969, "image_id": 1515, "category_id": 1, "bbox": [ 230, 213, 47, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 2970, "image_id": 1515, "category_id": 1, "bbox": [ 260, 227, 41, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 2971, "image_id": 1515, "category_id": 1, "bbox": [ 436, 223, 29, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 2972, "image_id": 1515, "category_id": 1, "bbox": [ 466, 221, 16, 25 ], "height": 25, "occlusion": 0, "ignore": 1 }, { "id": 2973, "image_id": 1516, "category_id": 1, "bbox": [ 572, 249, 61, 173 ], "height": 173, "occlusion": 0, "ignore": 0 }, { "id": 2974, "image_id": 1516, "category_id": 1, "bbox": [ 161, 213, 53, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 2975, "image_id": 1516, "category_id": 1, "bbox": [ 199, 234, 51, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 2976, "image_id": 1516, "category_id": 1, "bbox": [ 443, 227, 20, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 2977, "image_id": 1516, "category_id": 1, "bbox": [ 461, 227, 21, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2978, "image_id": 1517, "category_id": 1, "bbox": [ 23, 206, 81, 214 ], "height": 214, "occlusion": 1, "ignore": 0 }, { "id": 2979, "image_id": 1517, "category_id": 1, "bbox": [ 59, 242, 91, 195 ], "height": 195, "occlusion": 0, "ignore": 0 }, { "id": 2980, "image_id": 1517, "category_id": 1, "bbox": [ 443, 227, 20, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2981, "image_id": 1517, "category_id": 1, "bbox": [ 463, 227, 18, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2982, "image_id": 1518, "category_id": 1, "bbox": [ 444, 227, 20, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2983, "image_id": 1518, "category_id": 1, "bbox": [ 461, 227, 21, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2984, "image_id": 1519, "category_id": 1, "bbox": [ 450, 234, 20, 30 ], "height": 30, "occlusion": 1, "ignore": 0 }, { "id": 2985, "image_id": 1519, "category_id": 1, "bbox": [ 466, 234, 21, 30 ], "height": 30, "occlusion": 1, "ignore": 0 }, { "id": 2986, "image_id": 1520, "category_id": 1, "bbox": [ 461, 233, 20, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 2987, "image_id": 1520, "category_id": 1, "bbox": [ 479, 233, 21, 30 ], "height": 30, "occlusion": 1, "ignore": 0 }, { "id": 2988, "image_id": 1521, "category_id": 1, "bbox": [ 486, 221, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 2989, "image_id": 1521, "category_id": 1, "bbox": [ 504, 219, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 2990, "image_id": 1522, "category_id": 1, "bbox": [ 527, 223, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2991, "image_id": 1522, "category_id": 1, "bbox": [ 538, 222, 24, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 2992, "image_id": 1523, "category_id": 1, "bbox": [ 548, 231, 22, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 2993, "image_id": 1523, "category_id": 1, "bbox": [ 562, 230, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 2994, "image_id": 1542, "category_id": 1, "bbox": [ 379, 203, 20, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 2995, "image_id": 1543, "category_id": 1, "bbox": [ 325, 217, 20, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 2996, "image_id": 1543, "category_id": 1, "bbox": [ 408, 215, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 2997, "image_id": 1544, "category_id": 1, "bbox": [ 260, 217, 20, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 2998, "image_id": 1544, "category_id": 1, "bbox": [ 416, 217, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 2999, "image_id": 1544, "category_id": 1, "bbox": [ 533, 214, 15, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3000, "image_id": 1544, "category_id": 1, "bbox": [ 545, 213, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3001, "image_id": 1545, "category_id": 1, "bbox": [ 158, 214, 26, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 3002, "image_id": 1545, "category_id": 1, "bbox": [ 423, 215, 30, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3003, "image_id": 1545, "category_id": 1, "bbox": [ 583, 212, 21, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3004, "image_id": 1545, "category_id": 1, "bbox": [ 597, 213, 23, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3005, "image_id": 1546, "category_id": 1, "bbox": [ 469, 220, 42, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3006, "image_id": 1547, "category_id": 1, "bbox": [ 584, 219, 55, 112 ], "height": 112, "occlusion": 1, "ignore": 0 }, { "id": 3007, "image_id": 1552, "category_id": 1, "bbox": [ 494, 228, 32, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 3008, "image_id": 1552, "category_id": 1, "bbox": [ 526, 220, 35, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3009, "image_id": 1553, "category_id": 1, "bbox": [ 499, 231, 41, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 3010, "image_id": 1553, "category_id": 1, "bbox": [ 538, 222, 46, 113 ], "height": 113, "occlusion": 0, "ignore": 0 }, { "id": 3011, "image_id": 1554, "category_id": 1, "bbox": [ 594, 237, 47, 140 ], "height": 140, "occlusion": 1, "ignore": 0 }, { "id": 3012, "image_id": 1557, "category_id": 1, "bbox": [ 188, 217, 16, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3013, "image_id": 1558, "category_id": 1, "bbox": [ 415, 210, 40, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3014, "image_id": 1559, "category_id": 1, "bbox": [ 446, 214, 37, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 3015, "image_id": 1560, "category_id": 1, "bbox": [ 485, 210, 39, 77 ], "height": 77, "occlusion": 0, "ignore": 1 }, { "id": 3016, "image_id": 1560, "category_id": 1, "bbox": [ 77, 213, 26, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3017, "image_id": 1560, "category_id": 1, "bbox": [ 411, 205, 19, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3018, "image_id": 1561, "category_id": 1, "bbox": [ 35, 200, 33, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 3019, "image_id": 1561, "category_id": 1, "bbox": [ 548, 191, 45, 109 ], "height": 109, "occlusion": 0, "ignore": 0 }, { "id": 3020, "image_id": 1561, "category_id": 1, "bbox": [ 589, 195, 44, 98 ], "height": 98, "occlusion": 0, "ignore": 1 }, { "id": 3021, "image_id": 1561, "category_id": 1, "bbox": [ 448, 187, 23, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3022, "image_id": 1562, "category_id": 1, "bbox": [ 506, 217, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3023, "image_id": 1570, "category_id": 1, "bbox": [ 106, 208, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 3024, "image_id": 1571, "category_id": 1, "bbox": [ 282, 205, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3025, "image_id": 1571, "category_id": 1, "bbox": [ 241, 205, 37, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3026, "image_id": 1571, "category_id": 1, "bbox": [ 392, 208, 19, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3027, "image_id": 1572, "category_id": 1, "bbox": [ 487, 214, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3028, "image_id": 1572, "category_id": 1, "bbox": [ 361, 210, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3029, "image_id": 1572, "category_id": 1, "bbox": [ 299, 206, 49, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3030, "image_id": 1573, "category_id": 1, "bbox": [ 569, 215, 32, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 3031, "image_id": 1573, "category_id": 1, "bbox": [ 405, 219, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 3032, "image_id": 1573, "category_id": 1, "bbox": [ 340, 213, 46, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3033, "image_id": 1573, "category_id": 1, "bbox": [ 385, 216, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3034, "image_id": 1574, "category_id": 1, "bbox": [ 453, 215, 24, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3035, "image_id": 1574, "category_id": 1, "bbox": [ 363, 208, 51, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 3036, "image_id": 1574, "category_id": 1, "bbox": [ 419, 207, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3037, "image_id": 1575, "category_id": 1, "bbox": [ 535, 217, 42, 96 ], "height": 96, "occlusion": 0, "ignore": 1 }, { "id": 3038, "image_id": 1575, "category_id": 1, "bbox": [ 396, 207, 32, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3039, "image_id": 1575, "category_id": 1, "bbox": [ 437, 210, 25, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3040, "image_id": 1576, "category_id": 1, "bbox": [ 424, 206, 33, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3041, "image_id": 1576, "category_id": 1, "bbox": [ 470, 207, 25, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3042, "image_id": 1576, "category_id": 1, "bbox": [ 367, 206, 22, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3043, "image_id": 1577, "category_id": 1, "bbox": [ 479, 205, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3044, "image_id": 1577, "category_id": 1, "bbox": [ 524, 207, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3045, "image_id": 1577, "category_id": 1, "bbox": [ 139, 208, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3046, "image_id": 1577, "category_id": 1, "bbox": [ 500, 200, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3047, "image_id": 1578, "category_id": 1, "bbox": [ 587, 206, 37, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 3048, "image_id": 1578, "category_id": 1, "bbox": [ 512, 203, 26, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 3049, "image_id": 1578, "category_id": 1, "bbox": [ 10, 216, 32, 75 ], "height": 75, "occlusion": 0, "ignore": 1 }, { "id": 3050, "image_id": 1578, "category_id": 1, "bbox": [ 97, 195, 41, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3051, "image_id": 1578, "category_id": 1, "bbox": [ 531, 206, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3052, "image_id": 1578, "category_id": 1, "bbox": [ 549, 206, 27, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 3053, "image_id": 1579, "category_id": 1, "bbox": [ 417, 206, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3054, "image_id": 1579, "category_id": 1, "bbox": [ 580, 206, 32, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3055, "image_id": 1579, "category_id": 1, "bbox": [ 59, 195, 23, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3056, "image_id": 1579, "category_id": 1, "bbox": [ 87, 198, 22, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3057, "image_id": 1579, "category_id": 1, "bbox": [ 379, 202, 14, 21 ], "height": 21, "occlusion": 0, "ignore": 1 }, { "id": 3058, "image_id": 1580, "category_id": 1, "bbox": [ 438, 212, 22, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3059, "image_id": 1580, "category_id": 1, "bbox": [ 454, 207, 25, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 3060, "image_id": 1580, "category_id": 1, "bbox": [ 35, 206, 21, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3061, "image_id": 1580, "category_id": 1, "bbox": [ 58, 203, 44, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 3062, "image_id": 1581, "category_id": 1, "bbox": [ 481, 180, 24, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 3063, "image_id": 1581, "category_id": 1, "bbox": [ 455, 184, 26, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 3064, "image_id": 1581, "category_id": 1, "bbox": [ 4, 180, 42, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 3065, "image_id": 1582, "category_id": 1, "bbox": [ 478, 211, 26, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 3066, "image_id": 1582, "category_id": 1, "bbox": [ 506, 207, 38, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3067, "image_id": 1582, "category_id": 1, "bbox": [ 87, 210, 15, 24 ], "height": 24, "occlusion": 0, "ignore": 1 }, { "id": 3068, "image_id": 1583, "category_id": 1, "bbox": [ 531, 216, 36, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 3069, "image_id": 1583, "category_id": 1, "bbox": [ 577, 214, 36, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 3070, "image_id": 1583, "category_id": 1, "bbox": [ 609, 209, 30, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 3071, "image_id": 1583, "category_id": 1, "bbox": [ 57, 219, 15, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3072, "image_id": 1583, "category_id": 1, "bbox": [ 68, 218, 19, 41 ], "height": 41, "occlusion": 1, "ignore": 0 }, { "id": 3073, "image_id": 1583, "category_id": 1, "bbox": [ 152, 220, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3074, "image_id": 1584, "category_id": 1, "bbox": [ 19, 212, 37, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 3075, "image_id": 1584, "category_id": 1, "bbox": [ 147, 220, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3076, "image_id": 1585, "category_id": 1, "bbox": [ 120, 230, 16, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3077, "image_id": 1585, "category_id": 1, "bbox": [ 420, 232, 13, 24 ], "height": 24, "occlusion": 0, "ignore": 1 }, { "id": 3078, "image_id": 1586, "category_id": 1, "bbox": [ 64, 223, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3079, "image_id": 1586, "category_id": 1, "bbox": [ 421, 229, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3080, "image_id": 1587, "category_id": 1, "bbox": [ 432, 221, 21, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 3081, "image_id": 1589, "category_id": 1, "bbox": [ 471, 208, 26, 47 ], "height": 47, "occlusion": 1, "ignore": 1 }, { "id": 3082, "image_id": 1590, "category_id": 1, "bbox": [ 514, 215, 31, 54 ], "height": 54, "occlusion": 0, "ignore": 1 }, { "id": 3083, "image_id": 1591, "category_id": 1, "bbox": [ 605, 196, 32, 93 ], "height": 93, "occlusion": 0, "ignore": 1 }, { "id": 3084, "image_id": 1591, "category_id": 1, "bbox": [ 88, 198, 18, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3085, "image_id": 1591, "category_id": 1, "bbox": [ 115, 200, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3086, "image_id": 1592, "category_id": 1, "bbox": [ 65, 195, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3087, "image_id": 1592, "category_id": 1, "bbox": [ 88, 196, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3088, "image_id": 1593, "category_id": 1, "bbox": [ 51, 195, 19, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3089, "image_id": 1593, "category_id": 1, "bbox": [ 32, 195, 16, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3090, "image_id": 1594, "category_id": 1, "bbox": [ 16, 246, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3091, "image_id": 1594, "category_id": 1, "bbox": [ 85, 237, 28, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3092, "image_id": 1595, "category_id": 1, "bbox": [ 394, 196, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3093, "image_id": 1596, "category_id": 1, "bbox": [ 29, 202, 36, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3094, "image_id": 1596, "category_id": 1, "bbox": [ 399, 202, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3095, "image_id": 1597, "category_id": 1, "bbox": [ 421, 209, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3096, "image_id": 1598, "category_id": 1, "bbox": [ 463, 217, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3097, "image_id": 1599, "category_id": 1, "bbox": [ 542, 216, 31, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3098, "image_id": 1599, "category_id": 1, "bbox": [ 436, 214, 14, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3099, "image_id": 1600, "category_id": 1, "bbox": [ 473, 211, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3100, "image_id": 1600, "category_id": 1, "bbox": [ 420, 212, 18, 34 ], "height": 34, "occlusion": 1, "ignore": 0 }, { "id": 3101, "image_id": 1601, "category_id": 1, "bbox": [ 543, 212, 21, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 3102, "image_id": 1601, "category_id": 1, "bbox": [ 455, 215, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3103, "image_id": 1602, "category_id": 1, "bbox": [ 510, 216, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3104, "image_id": 1602, "category_id": 1, "bbox": [ 187, 220, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3105, "image_id": 1603, "category_id": 1, "bbox": [ 126, 225, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 3106, "image_id": 1603, "category_id": 1, "bbox": [ 28, 209, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 3107, "image_id": 1603, "category_id": 1, "bbox": [ 63, 216, 19, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 3108, "image_id": 1604, "category_id": 1, "bbox": [ 416, 218, 20, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 3109, "image_id": 1605, "category_id": 1, "bbox": [ 438, 218, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3110, "image_id": 1606, "category_id": 1, "bbox": [ 473, 213, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3111, "image_id": 1606, "category_id": 1, "bbox": [ 396, 214, 36, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3112, "image_id": 1606, "category_id": 1, "bbox": [ 315, 218, 17, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 3113, "image_id": 1606, "category_id": 1, "bbox": [ 147, 213, 17, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 3114, "image_id": 1607, "category_id": 1, "bbox": [ 525, 214, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 3115, "image_id": 1607, "category_id": 1, "bbox": [ 408, 210, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3116, "image_id": 1607, "category_id": 1, "bbox": [ 121, 218, 15, 27 ], "height": 27, "occlusion": 0, "ignore": 1 }, { "id": 3117, "image_id": 1607, "category_id": 1, "bbox": [ 321, 219, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3118, "image_id": 1608, "category_id": 1, "bbox": [ 325, 219, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3119, "image_id": 1608, "category_id": 1, "bbox": [ 614, 217, 27, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 3120, "image_id": 1608, "category_id": 1, "bbox": [ 77, 219, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3121, "image_id": 1608, "category_id": 1, "bbox": [ 427, 218, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3122, "image_id": 1609, "category_id": 1, "bbox": [ 340, 211, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3123, "image_id": 1609, "category_id": 1, "bbox": [ 508, 192, 23, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3124, "image_id": 1610, "category_id": 1, "bbox": [ 351, 208, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3125, "image_id": 1610, "category_id": 1, "bbox": [ 484, 208, 20, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 3126, "image_id": 1610, "category_id": 1, "bbox": [ 40, 205, 32, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3127, "image_id": 1610, "category_id": 1, "bbox": [ 124, 205, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3128, "image_id": 1610, "category_id": 1, "bbox": [ 556, 189, 29, 41 ], "height": 41, "occlusion": 1, "ignore": 1 }, { "id": 3129, "image_id": 1611, "category_id": 1, "bbox": [ 365, 210, 22, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3130, "image_id": 1611, "category_id": 1, "bbox": [ 517, 206, 27, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 3131, "image_id": 1611, "category_id": 1, "bbox": [ 27, 208, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3132, "image_id": 1612, "category_id": 1, "bbox": [ 376, 220, 30, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 3133, "image_id": 1612, "category_id": 1, "bbox": [ 555, 210, 20, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3134, "image_id": 1612, "category_id": 1, "bbox": [ 55, 202, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3135, "image_id": 1613, "category_id": 1, "bbox": [ 421, 218, 36, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 3136, "image_id": 1613, "category_id": 1, "bbox": [ 618, 210, 22, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 3137, "image_id": 1613, "category_id": 1, "bbox": [ 24, 214, 28, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 3138, "image_id": 1614, "category_id": 1, "bbox": [ 501, 227, 49, 134 ], "height": 134, "occlusion": 0, "ignore": 0 }, { "id": 3139, "image_id": 1615, "category_id": 1, "bbox": [ 88, 207, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3140, "image_id": 1616, "category_id": 1, "bbox": [ 398, 208, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3141, "image_id": 1616, "category_id": 1, "bbox": [ 419, 212, 15, 25 ], "height": 25, "occlusion": 0, "ignore": 0 }, { "id": 3142, "image_id": 1617, "category_id": 1, "bbox": [ 171, 208, 20, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3143, "image_id": 1617, "category_id": 1, "bbox": [ 420, 210, 12, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3144, "image_id": 1617, "category_id": 1, "bbox": [ 430, 209, 13, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3145, "image_id": 1618, "category_id": 1, "bbox": [ 17, 201, 46, 86 ], "height": 86, "occlusion": 0, "ignore": 1 }, { "id": 3146, "image_id": 1618, "category_id": 1, "bbox": [ 459, 202, 18, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3147, "image_id": 1618, "category_id": 1, "bbox": [ 477, 202, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3148, "image_id": 1618, "category_id": 1, "bbox": [ 399, 201, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3149, "image_id": 1619, "category_id": 1, "bbox": [ 539, 206, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3150, "image_id": 1619, "category_id": 1, "bbox": [ 489, 213, 20, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 3151, "image_id": 1619, "category_id": 1, "bbox": [ 559, 208, 30, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3152, "image_id": 1619, "category_id": 1, "bbox": [ 359, 200, 52, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 3153, "image_id": 1619, "category_id": 1, "bbox": [ 427, 204, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3154, "image_id": 1620, "category_id": 1, "bbox": [ 540, 221, 20, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 3155, "image_id": 1620, "category_id": 1, "bbox": [ 443, 208, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3156, "image_id": 1620, "category_id": 1, "bbox": [ 413, 208, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3157, "image_id": 1620, "category_id": 1, "bbox": [ 384, 209, 22, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3158, "image_id": 1620, "category_id": 1, "bbox": [ 129, 210, 17, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 3159, "image_id": 1620, "category_id": 1, "bbox": [ 100, 207, 27, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3160, "image_id": 1621, "category_id": 1, "bbox": [ 609, 224, 32, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3161, "image_id": 1621, "category_id": 1, "bbox": [ 469, 207, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3162, "image_id": 1621, "category_id": 1, "bbox": [ 446, 207, 17, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3163, "image_id": 1621, "category_id": 1, "bbox": [ 398, 211, 25, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 3164, "image_id": 1621, "category_id": 1, "bbox": [ 362, 210, 16, 22 ], "height": 22, "occlusion": 0, "ignore": 1 }, { "id": 3165, "image_id": 1621, "category_id": 1, "bbox": [ 64, 208, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3166, "image_id": 1621, "category_id": 1, "bbox": [ 101, 209, 22, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3167, "image_id": 1621, "category_id": 1, "bbox": [ 78, 205, 22, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3168, "image_id": 1622, "category_id": 1, "bbox": [ 513, 206, 30, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3169, "image_id": 1622, "category_id": 1, "bbox": [ 443, 209, 27, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3170, "image_id": 1622, "category_id": 1, "bbox": [ 93, 212, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3171, "image_id": 1622, "category_id": 1, "bbox": [ 30, 211, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3172, "image_id": 1622, "category_id": 1, "bbox": [ 52, 210, 24, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3173, "image_id": 1623, "category_id": 1, "bbox": [ 583, 207, 33, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 3174, "image_id": 1623, "category_id": 1, "bbox": [ 501, 210, 28, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 3175, "image_id": 1623, "category_id": 1, "bbox": [ 81, 211, 23, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3176, "image_id": 1623, "category_id": 1, "bbox": [ 10, 211, 29, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3177, "image_id": 1623, "category_id": 1, "bbox": [ 416, 213, 16, 23 ], "height": 23, "occlusion": 0, "ignore": 1 }, { "id": 3178, "image_id": 1624, "category_id": 1, "bbox": [ 553, 219, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 3179, "image_id": 1624, "category_id": 1, "bbox": [ 427, 217, 26, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3180, "image_id": 1625, "category_id": 1, "bbox": [ 17, 178, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 3181, "image_id": 1625, "category_id": 1, "bbox": [ 612, 183, 28, 73 ], "height": 73, "occlusion": 1, "ignore": 0 }, { "id": 3182, "image_id": 1625, "category_id": 1, "bbox": [ 437, 178, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3183, "image_id": 1626, "category_id": 1, "bbox": [ 453, 217, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 3184, "image_id": 1627, "category_id": 1, "bbox": [ 458, 217, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3185, "image_id": 1628, "category_id": 1, "bbox": [ 484, 219, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3186, "image_id": 1629, "category_id": 1, "bbox": [ 565, 219, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3187, "image_id": 1629, "category_id": 1, "bbox": [ 582, 225, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3188, "image_id": 1630, "category_id": 1, "bbox": [ 385, 218, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 3189, "image_id": 1630, "category_id": 1, "bbox": [ 401, 222, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3190, "image_id": 1631, "category_id": 1, "bbox": [ 411, 219, 21, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 3191, "image_id": 1631, "category_id": 1, "bbox": [ 426, 219, 24, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 3192, "image_id": 1632, "category_id": 1, "bbox": [ 418, 220, 20, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 3193, "image_id": 1632, "category_id": 1, "bbox": [ 434, 220, 21, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 3194, "image_id": 1633, "category_id": 1, "bbox": [ 431, 223, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3195, "image_id": 1633, "category_id": 1, "bbox": [ 450, 227, 22, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 3196, "image_id": 1634, "category_id": 1, "bbox": [ 467, 223, 44, 71 ], "height": 71, "occlusion": 0, "ignore": 1 }, { "id": 3197, "image_id": 1635, "category_id": 1, "bbox": [ 513, 223, 41, 84 ], "height": 84, "occlusion": 0, "ignore": 1 }, { "id": 3198, "image_id": 1636, "category_id": 1, "bbox": [ 569, 224, 61, 109 ], "height": 109, "occlusion": 0, "ignore": 1 }, { "id": 3199, "image_id": 1637, "category_id": 1, "bbox": [ 377, 203, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3200, "image_id": 1638, "category_id": 1, "bbox": [ 363, 210, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3201, "image_id": 1639, "category_id": 1, "bbox": [ 359, 208, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3202, "image_id": 1640, "category_id": 1, "bbox": [ 358, 212, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3203, "image_id": 1641, "category_id": 1, "bbox": [ 364, 211, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3204, "image_id": 1642, "category_id": 1, "bbox": [ 369, 206, 22, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3205, "image_id": 1643, "category_id": 1, "bbox": [ 376, 208, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3206, "image_id": 1644, "category_id": 1, "bbox": [ 378, 208, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3207, "image_id": 1645, "category_id": 1, "bbox": [ 377, 210, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3208, "image_id": 1646, "category_id": 1, "bbox": [ 375, 212, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3209, "image_id": 1647, "category_id": 1, "bbox": [ 376, 212, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3210, "image_id": 1648, "category_id": 1, "bbox": [ 374, 211, 14, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3211, "image_id": 1649, "category_id": 1, "bbox": [ 372, 210, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3212, "image_id": 1650, "category_id": 1, "bbox": [ 368, 210, 16, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3213, "image_id": 1651, "category_id": 1, "bbox": [ 368, 211, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3214, "image_id": 1655, "category_id": 1, "bbox": [ 378, 210, 15, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3215, "image_id": 1656, "category_id": 1, "bbox": [ 377, 214, 14, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3216, "image_id": 1657, "category_id": 1, "bbox": [ 370, 211, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3217, "image_id": 1658, "category_id": 1, "bbox": [ 373, 216, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3218, "image_id": 1659, "category_id": 1, "bbox": [ 369, 210, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3219, "image_id": 1660, "category_id": 1, "bbox": [ 370, 210, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3220, "image_id": 1661, "category_id": 1, "bbox": [ 369, 212, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3221, "image_id": 1662, "category_id": 1, "bbox": [ 372, 215, 16, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3222, "image_id": 1663, "category_id": 1, "bbox": [ 377, 219, 14, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3223, "image_id": 1664, "category_id": 1, "bbox": [ 381, 216, 13, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3224, "image_id": 1665, "category_id": 1, "bbox": [ 377, 211, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3225, "image_id": 1666, "category_id": 1, "bbox": [ 372, 211, 19, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3226, "image_id": 1667, "category_id": 1, "bbox": [ 368, 212, 20, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3227, "image_id": 1668, "category_id": 1, "bbox": [ 368, 214, 18, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3228, "image_id": 1678, "category_id": 1, "bbox": [ 579, 221, 43, 140 ], "height": 140, "occlusion": 1, "ignore": 0 }, { "id": 3229, "image_id": 1679, "category_id": 1, "bbox": [ 547, 218, 47, 126 ], "height": 126, "occlusion": 1, "ignore": 0 }, { "id": 3230, "image_id": 1679, "category_id": 1, "bbox": [ 598, 225, 36, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 3231, "image_id": 1680, "category_id": 1, "bbox": [ 528, 218, 45, 115 ], "height": 115, "occlusion": 1, "ignore": 0 }, { "id": 3232, "image_id": 1680, "category_id": 1, "bbox": [ 573, 223, 39, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 3233, "image_id": 1681, "category_id": 1, "bbox": [ 515, 218, 38, 106 ], "height": 106, "occlusion": 1, "ignore": 0 }, { "id": 3234, "image_id": 1681, "category_id": 1, "bbox": [ 550, 220, 37, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 3235, "image_id": 1682, "category_id": 1, "bbox": [ 503, 218, 32, 98 ], "height": 98, "occlusion": 1, "ignore": 0 }, { "id": 3236, "image_id": 1682, "category_id": 1, "bbox": [ 527, 219, 32, 93 ], "height": 93, "occlusion": 1, "ignore": 0 }, { "id": 3237, "image_id": 1683, "category_id": 1, "bbox": [ 489, 217, 28, 88 ], "height": 88, "occlusion": 1, "ignore": 0 }, { "id": 3238, "image_id": 1683, "category_id": 1, "bbox": [ 509, 217, 27, 88 ], "height": 88, "occlusion": 2, "ignore": 0 }, { "id": 3239, "image_id": 1684, "category_id": 1, "bbox": [ 476, 217, 28, 81 ], "height": 81, "occlusion": 1, "ignore": 0 }, { "id": 3240, "image_id": 1684, "category_id": 1, "bbox": [ 495, 216, 26, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 3241, "image_id": 1685, "category_id": 1, "bbox": [ 462, 216, 31, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 3242, "image_id": 1685, "category_id": 1, "bbox": [ 485, 215, 25, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 3243, "image_id": 1686, "category_id": 1, "bbox": [ 454, 213, 28, 71 ], "height": 71, "occlusion": 1, "ignore": 0 }, { "id": 3244, "image_id": 1686, "category_id": 1, "bbox": [ 477, 216, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3245, "image_id": 1687, "category_id": 1, "bbox": [ 447, 212, 28, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 3246, "image_id": 1687, "category_id": 1, "bbox": [ 466, 216, 24, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 3247, "image_id": 1688, "category_id": 1, "bbox": [ 444, 214, 26, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 3248, "image_id": 1688, "category_id": 1, "bbox": [ 460, 214, 23, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 3249, "image_id": 1689, "category_id": 1, "bbox": [ 437, 213, 25, 60 ], "height": 60, "occlusion": 1, "ignore": 0 }, { "id": 3250, "image_id": 1689, "category_id": 1, "bbox": [ 456, 215, 23, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 3251, "image_id": 1690, "category_id": 1, "bbox": [ 429, 213, 23, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 3252, "image_id": 1690, "category_id": 1, "bbox": [ 450, 216, 22, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 3253, "image_id": 1691, "category_id": 1, "bbox": [ 421, 214, 21, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 3254, "image_id": 1691, "category_id": 1, "bbox": [ 443, 217, 21, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3255, "image_id": 1692, "category_id": 1, "bbox": [ 419, 215, 20, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 3256, "image_id": 1692, "category_id": 1, "bbox": [ 434, 218, 21, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3257, "image_id": 1693, "category_id": 1, "bbox": [ 416, 215, 30, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 3258, "image_id": 1694, "category_id": 1, "bbox": [ 414, 213, 26, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3259, "image_id": 1695, "category_id": 1, "bbox": [ 405, 216, 18, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 3260, "image_id": 1695, "category_id": 1, "bbox": [ 417, 213, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3261, "image_id": 1696, "category_id": 1, "bbox": [ 397, 213, 23, 47 ], "height": 47, "occlusion": 1, "ignore": 1 }, { "id": 3262, "image_id": 1696, "category_id": 1, "bbox": [ 414, 218, 21, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3263, "image_id": 1697, "category_id": 1, "bbox": [ 393, 212, 19, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3264, "image_id": 1697, "category_id": 1, "bbox": [ 407, 217, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3265, "image_id": 1698, "category_id": 1, "bbox": [ 390, 214, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3266, "image_id": 1698, "category_id": 1, "bbox": [ 404, 215, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3267, "image_id": 1699, "category_id": 1, "bbox": [ 390, 215, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3268, "image_id": 1699, "category_id": 1, "bbox": [ 403, 215, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3269, "image_id": 1700, "category_id": 1, "bbox": [ 387, 215, 17, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3270, "image_id": 1700, "category_id": 1, "bbox": [ 401, 212, 19, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3271, "image_id": 1701, "category_id": 1, "bbox": [ 384, 215, 17, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3272, "image_id": 1701, "category_id": 1, "bbox": [ 398, 219, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3273, "image_id": 1702, "category_id": 1, "bbox": [ 377, 212, 16, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3274, "image_id": 1702, "category_id": 1, "bbox": [ 395, 217, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3275, "image_id": 1703, "category_id": 1, "bbox": [ 377, 213, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3276, "image_id": 1703, "category_id": 1, "bbox": [ 389, 214, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3277, "image_id": 1704, "category_id": 1, "bbox": [ 378, 216, 26, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3278, "image_id": 1705, "category_id": 1, "bbox": [ 379, 214, 24, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3279, "image_id": 1706, "category_id": 1, "bbox": [ 379, 215, 20, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3280, "image_id": 1707, "category_id": 1, "bbox": [ 379, 216, 20, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3281, "image_id": 1708, "category_id": 1, "bbox": [ 381, 218, 21, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3282, "image_id": 1709, "category_id": 1, "bbox": [ 384, 217, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3283, "image_id": 1710, "category_id": 1, "bbox": [ 386, 218, 20, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3284, "image_id": 1711, "category_id": 1, "bbox": [ 391, 218, 23, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3285, "image_id": 1712, "category_id": 1, "bbox": [ 396, 219, 22, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3286, "image_id": 1713, "category_id": 1, "bbox": [ 402, 222, 26, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3287, "image_id": 1714, "category_id": 1, "bbox": [ 417, 220, 28, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3288, "image_id": 1715, "category_id": 1, "bbox": [ 435, 217, 24, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3289, "image_id": 1716, "category_id": 1, "bbox": [ 437, 217, 31, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 3290, "image_id": 1717, "category_id": 1, "bbox": [ 468, 219, 26, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 3291, "image_id": 1717, "category_id": 1, "bbox": [ 489, 227, 22, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3292, "image_id": 1718, "category_id": 1, "bbox": [ 535, 220, 36, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 3293, "image_id": 1718, "category_id": 1, "bbox": [ 561, 224, 29, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 3294, "image_id": 1776, "category_id": 1, "bbox": [ 412, 211, 17, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3295, "image_id": 1776, "category_id": 1, "bbox": [ 441, 215, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 1 }, { "id": 3296, "image_id": 1777, "category_id": 1, "bbox": [ 411, 210, 13, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3297, "image_id": 1777, "category_id": 1, "bbox": [ 439, 210, 17, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3298, "image_id": 1777, "category_id": 1, "bbox": [ 377, 212, 14, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3299, "image_id": 1778, "category_id": 1, "bbox": [ 439, 209, 15, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3300, "image_id": 1778, "category_id": 1, "bbox": [ 408, 207, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3301, "image_id": 1778, "category_id": 1, "bbox": [ 376, 209, 12, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3302, "image_id": 1779, "category_id": 1, "bbox": [ 440, 207, 14, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3303, "image_id": 1779, "category_id": 1, "bbox": [ 374, 206, 46, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3304, "image_id": 1780, "category_id": 1, "bbox": [ 439, 210, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 3305, "image_id": 1780, "category_id": 1, "bbox": [ 369, 208, 50, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3306, "image_id": 1780, "category_id": 1, "bbox": [ 592, 216, 22, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 3307, "image_id": 1781, "category_id": 1, "bbox": [ 590, 219, 20, 46 ], "height": 46, "occlusion": 2, "ignore": 0 }, { "id": 3308, "image_id": 1781, "category_id": 1, "bbox": [ 373, 207, 48, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3309, "image_id": 1781, "category_id": 1, "bbox": [ 440, 209, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3310, "image_id": 1782, "category_id": 1, "bbox": [ 374, 212, 44, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3311, "image_id": 1782, "category_id": 1, "bbox": [ 567, 214, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 1 }, { "id": 3312, "image_id": 1782, "category_id": 1, "bbox": [ 439, 210, 16, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3313, "image_id": 1782, "category_id": 1, "bbox": [ 450, 211, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3314, "image_id": 1783, "category_id": 1, "bbox": [ 368, 214, 48, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3315, "image_id": 1783, "category_id": 1, "bbox": [ 432, 210, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3316, "image_id": 1783, "category_id": 1, "bbox": [ 449, 215, 15, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 3317, "image_id": 1784, "category_id": 1, "bbox": [ 427, 212, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3318, "image_id": 1784, "category_id": 1, "bbox": [ 440, 212, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3319, "image_id": 1784, "category_id": 1, "bbox": [ 353, 204, 53, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3320, "image_id": 1785, "category_id": 1, "bbox": [ 347, 207, 49, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3321, "image_id": 1785, "category_id": 1, "bbox": [ 415, 207, 15, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3322, "image_id": 1785, "category_id": 1, "bbox": [ 431, 212, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3323, "image_id": 1786, "category_id": 1, "bbox": [ 339, 207, 43, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3324, "image_id": 1786, "category_id": 1, "bbox": [ 408, 208, 19, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3325, "image_id": 1786, "category_id": 1, "bbox": [ 424, 213, 19, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3326, "image_id": 1787, "category_id": 1, "bbox": [ 334, 211, 46, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3327, "image_id": 1787, "category_id": 1, "bbox": [ 404, 209, 15, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3328, "image_id": 1787, "category_id": 1, "bbox": [ 420, 211, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3329, "image_id": 1787, "category_id": 1, "bbox": [ 436, 208, 19, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 3330, "image_id": 1788, "category_id": 1, "bbox": [ 400, 208, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3331, "image_id": 1788, "category_id": 1, "bbox": [ 421, 206, 15, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3332, "image_id": 1788, "category_id": 1, "bbox": [ 439, 203, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 3333, "image_id": 1788, "category_id": 1, "bbox": [ 330, 206, 52, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3334, "image_id": 1789, "category_id": 1, "bbox": [ 397, 205, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3335, "image_id": 1789, "category_id": 1, "bbox": [ 419, 210, 15, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3336, "image_id": 1789, "category_id": 1, "bbox": [ 437, 200, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3337, "image_id": 1789, "category_id": 1, "bbox": [ 324, 206, 39, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3338, "image_id": 1790, "category_id": 1, "bbox": [ 318, 201, 46, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3339, "image_id": 1790, "category_id": 1, "bbox": [ 394, 200, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3340, "image_id": 1790, "category_id": 1, "bbox": [ 419, 203, 15, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3341, "image_id": 1790, "category_id": 1, "bbox": [ 436, 199, 29, 27 ], "height": 27, "occlusion": 0, "ignore": 1 }, { "id": 3342, "image_id": 1791, "category_id": 1, "bbox": [ 419, 194, 47, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3343, "image_id": 1791, "category_id": 1, "bbox": [ 322, 197, 40, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3344, "image_id": 1791, "category_id": 1, "bbox": [ 392, 199, 19, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3345, "image_id": 1792, "category_id": 1, "bbox": [ 439, 197, 44, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3346, "image_id": 1792, "category_id": 1, "bbox": [ 336, 205, 36, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3347, "image_id": 1792, "category_id": 1, "bbox": [ 491, 206, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3348, "image_id": 1792, "category_id": 1, "bbox": [ 503, 204, 16, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3349, "image_id": 1792, "category_id": 1, "bbox": [ 408, 201, 22, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3350, "image_id": 1793, "category_id": 1, "bbox": [ 455, 195, 45, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3351, "image_id": 1793, "category_id": 1, "bbox": [ 346, 199, 46, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 3352, "image_id": 1793, "category_id": 1, "bbox": [ 423, 200, 18, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3353, "image_id": 1793, "category_id": 1, "bbox": [ 511, 200, 26, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3354, "image_id": 1794, "category_id": 1, "bbox": [ 464, 198, 37, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 3355, "image_id": 1794, "category_id": 1, "bbox": [ 349, 200, 55, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3356, "image_id": 1794, "category_id": 1, "bbox": [ 421, 202, 26, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3357, "image_id": 1794, "category_id": 1, "bbox": [ 512, 209, 19, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3358, "image_id": 1794, "category_id": 1, "bbox": [ 523, 207, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3359, "image_id": 1795, "category_id": 1, "bbox": [ 470, 198, 36, 55 ], "height": 55, "occlusion": 0, "ignore": 1 }, { "id": 3360, "image_id": 1795, "category_id": 1, "bbox": [ 338, 197, 62, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 3361, "image_id": 1795, "category_id": 1, "bbox": [ 516, 210, 29, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3362, "image_id": 1795, "category_id": 1, "bbox": [ 420, 203, 24, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3363, "image_id": 1796, "category_id": 1, "bbox": [ 473, 197, 47, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 3364, "image_id": 1796, "category_id": 1, "bbox": [ 340, 209, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3365, "image_id": 1796, "category_id": 1, "bbox": [ 380, 202, 26, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3366, "image_id": 1796, "category_id": 1, "bbox": [ 524, 209, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3367, "image_id": 1796, "category_id": 1, "bbox": [ 537, 206, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3368, "image_id": 1797, "category_id": 1, "bbox": [ 436, 196, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3369, "image_id": 1797, "category_id": 1, "bbox": [ 349, 210, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3370, "image_id": 1797, "category_id": 1, "bbox": [ 389, 201, 29, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3371, "image_id": 1797, "category_id": 1, "bbox": [ 489, 199, 77, 64 ], "height": 64, "occlusion": 0, "ignore": 1 }, { "id": 3372, "image_id": 1798, "category_id": 1, "bbox": [ 444, 192, 138, 73 ], "height": 73, "occlusion": 0, "ignore": 1 }, { "id": 3373, "image_id": 1798, "category_id": 1, "bbox": [ 357, 202, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3374, "image_id": 1798, "category_id": 1, "bbox": [ 398, 196, 20, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3375, "image_id": 1799, "category_id": 1, "bbox": [ 455, 204, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3376, "image_id": 1799, "category_id": 1, "bbox": [ 362, 211, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3377, "image_id": 1799, "category_id": 1, "bbox": [ 409, 200, 25, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3378, "image_id": 1799, "category_id": 1, "bbox": [ 506, 202, 22, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3379, "image_id": 1799, "category_id": 1, "bbox": [ 538, 204, 48, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3380, "image_id": 1800, "category_id": 1, "bbox": [ 514, 206, 73, 67 ], "height": 67, "occlusion": 0, "ignore": 1 }, { "id": 3381, "image_id": 1800, "category_id": 1, "bbox": [ 366, 220, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3382, "image_id": 1800, "category_id": 1, "bbox": [ 483, 212, 18, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3383, "image_id": 1800, "category_id": 1, "bbox": [ 464, 215, 17, 36 ], "height": 36, "occlusion": 1, "ignore": 0 }, { "id": 3384, "image_id": 1800, "category_id": 1, "bbox": [ 421, 210, 24, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3385, "image_id": 1801, "category_id": 1, "bbox": [ 532, 207, 99, 69 ], "height": 69, "occlusion": 0, "ignore": 1 }, { "id": 3386, "image_id": 1801, "category_id": 1, "bbox": [ 499, 211, 16, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3387, "image_id": 1801, "category_id": 1, "bbox": [ 368, 220, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3388, "image_id": 1801, "category_id": 1, "bbox": [ 474, 214, 15, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 3389, "image_id": 1802, "category_id": 1, "bbox": [ 541, 199, 62, 69 ], "height": 69, "occlusion": 0, "ignore": 1 }, { "id": 3390, "image_id": 1802, "category_id": 1, "bbox": [ 414, 210, 25, 58 ], "height": 58, "occlusion": 2, "ignore": 0 }, { "id": 3391, "image_id": 1802, "category_id": 1, "bbox": [ 368, 205, 21, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3392, "image_id": 1802, "category_id": 1, "bbox": [ 608, 208, 26, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3393, "image_id": 1802, "category_id": 1, "bbox": [ 510, 203, 15, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3394, "image_id": 1802, "category_id": 1, "bbox": [ 479, 203, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3395, "image_id": 1803, "category_id": 1, "bbox": [ 574, 211, 30, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 3396, "image_id": 1803, "category_id": 1, "bbox": [ 408, 211, 24, 48 ], "height": 48, "occlusion": 2, "ignore": 0 }, { "id": 3397, "image_id": 1803, "category_id": 1, "bbox": [ 367, 210, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3398, "image_id": 1803, "category_id": 1, "bbox": [ 602, 209, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3399, "image_id": 1803, "category_id": 1, "bbox": [ 551, 200, 18, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3400, "image_id": 1803, "category_id": 1, "bbox": [ 564, 200, 16, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3401, "image_id": 1803, "category_id": 1, "bbox": [ 522, 201, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3402, "image_id": 1803, "category_id": 1, "bbox": [ 481, 207, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3403, "image_id": 1803, "category_id": 1, "bbox": [ 429, 203, 27, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3404, "image_id": 1804, "category_id": 1, "bbox": [ 584, 196, 57, 68 ], "height": 68, "occlusion": 0, "ignore": 1 }, { "id": 3405, "image_id": 1804, "category_id": 1, "bbox": [ 409, 210, 22, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 3406, "image_id": 1804, "category_id": 1, "bbox": [ 372, 204, 23, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 3407, "image_id": 1804, "category_id": 1, "bbox": [ 542, 202, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3408, "image_id": 1804, "category_id": 1, "bbox": [ 565, 199, 19, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3409, "image_id": 1804, "category_id": 1, "bbox": [ 494, 205, 16, 42 ], "height": 42, "occlusion": 2, "ignore": 0 }, { "id": 3410, "image_id": 1804, "category_id": 1, "bbox": [ 443, 200, 16, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3411, "image_id": 1805, "category_id": 1, "bbox": [ 603, 198, 36, 82 ], "height": 82, "occlusion": 0, "ignore": 1 }, { "id": 3412, "image_id": 1805, "category_id": 1, "bbox": [ 414, 205, 29, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 3413, "image_id": 1805, "category_id": 1, "bbox": [ 378, 205, 28, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3414, "image_id": 1805, "category_id": 1, "bbox": [ 579, 199, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3415, "image_id": 1805, "category_id": 1, "bbox": [ 519, 204, 18, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3416, "image_id": 1805, "category_id": 1, "bbox": [ 495, 216, 16, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3417, "image_id": 1806, "category_id": 1, "bbox": [ 604, 195, 36, 88 ], "height": 88, "occlusion": 0, "ignore": 1 }, { "id": 3418, "image_id": 1806, "category_id": 1, "bbox": [ 422, 205, 29, 79 ], "height": 79, "occlusion": 0, "ignore": 0 }, { "id": 3419, "image_id": 1806, "category_id": 1, "bbox": [ 390, 206, 33, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3420, "image_id": 1806, "category_id": 1, "bbox": [ 540, 200, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3421, "image_id": 1806, "category_id": 1, "bbox": [ 511, 211, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3422, "image_id": 1807, "category_id": 1, "bbox": [ 616, 198, 24, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 3423, "image_id": 1807, "category_id": 1, "bbox": [ 437, 204, 28, 86 ], "height": 86, "occlusion": 0, "ignore": 0 }, { "id": 3424, "image_id": 1807, "category_id": 1, "bbox": [ 409, 208, 30, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3425, "image_id": 1807, "category_id": 1, "bbox": [ 570, 201, 23, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 3426, "image_id": 1808, "category_id": 1, "bbox": [ 590, 200, 24, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 3427, "image_id": 1808, "category_id": 1, "bbox": [ 470, 199, 33, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 3428, "image_id": 1808, "category_id": 1, "bbox": [ 424, 207, 39, 94 ], "height": 94, "occlusion": 0, "ignore": 0 }, { "id": 3429, "image_id": 1809, "category_id": 1, "bbox": [ 502, 197, 36, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 3430, "image_id": 1809, "category_id": 1, "bbox": [ 446, 207, 42, 106 ], "height": 106, "occlusion": 0, "ignore": 0 }, { "id": 3431, "image_id": 1809, "category_id": 1, "bbox": [ 615, 201, 24, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 3432, "image_id": 1810, "category_id": 1, "bbox": [ 543, 197, 47, 148 ], "height": 148, "occlusion": 0, "ignore": 0 }, { "id": 3433, "image_id": 1810, "category_id": 1, "bbox": [ 473, 196, 49, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 3434, "image_id": 1811, "category_id": 1, "bbox": [ 589, 189, 46, 170 ], "height": 170, "occlusion": 0, "ignore": 0 }, { "id": 3435, "image_id": 1811, "category_id": 1, "bbox": [ 499, 198, 52, 145 ], "height": 145, "occlusion": 0, "ignore": 0 }, { "id": 3436, "image_id": 1812, "category_id": 1, "bbox": [ 546, 197, 65, 180 ], "height": 180, "occlusion": 0, "ignore": 0 }, { "id": 3437, "image_id": 1816, "category_id": 1, "bbox": [ 399, 206, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3438, "image_id": 1816, "category_id": 1, "bbox": [ 438, 205, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3439, "image_id": 1817, "category_id": 1, "bbox": [ 403, 207, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3440, "image_id": 1818, "category_id": 1, "bbox": [ 415, 210, 15, 38 ], "height": 38, "occlusion": 2, "ignore": 0 }, { "id": 3441, "image_id": 1818, "category_id": 1, "bbox": [ 433, 205, 14, 25 ], "height": 25, "occlusion": 0, "ignore": 1 }, { "id": 3442, "image_id": 1818, "category_id": 1, "bbox": [ 452, 206, 15, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3443, "image_id": 1819, "category_id": 1, "bbox": [ 463, 203, 19, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3444, "image_id": 1820, "category_id": 1, "bbox": [ 434, 210, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3445, "image_id": 1820, "category_id": 1, "bbox": [ 474, 205, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3446, "image_id": 1821, "category_id": 1, "bbox": [ 443, 209, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3447, "image_id": 1822, "category_id": 1, "bbox": [ 451, 210, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3448, "image_id": 1822, "category_id": 1, "bbox": [ 477, 204, 30, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3449, "image_id": 1823, "category_id": 1, "bbox": [ 457, 209, 23, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3450, "image_id": 1823, "category_id": 1, "bbox": [ 491, 205, 19, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3451, "image_id": 1823, "category_id": 1, "bbox": [ 503, 203, 24, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3452, "image_id": 1824, "category_id": 1, "bbox": [ 467, 209, 26, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 3453, "image_id": 1824, "category_id": 1, "bbox": [ 511, 202, 23, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3454, "image_id": 1824, "category_id": 1, "bbox": [ 547, 196, 27, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 3455, "image_id": 1825, "category_id": 1, "bbox": [ 510, 204, 32, 76 ], "height": 76, "occlusion": 1, "ignore": 0 }, { "id": 3456, "image_id": 1825, "category_id": 1, "bbox": [ 61, 213, 45, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 3457, "image_id": 1825, "category_id": 1, "bbox": [ 553, 196, 27, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 3458, "image_id": 1826, "category_id": 1, "bbox": [ 544, 213, 36, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3459, "image_id": 1826, "category_id": 1, "bbox": [ 27, 213, 45, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 3460, "image_id": 1826, "category_id": 1, "bbox": [ 592, 201, 28, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 3461, "image_id": 1827, "category_id": 1, "bbox": [ 589, 211, 36, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 3462, "image_id": 1834, "category_id": 1, "bbox": [ 423, 213, 21, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3463, "image_id": 1836, "category_id": 1, "bbox": [ 454, 224, 19, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 3464, "image_id": 1838, "category_id": 1, "bbox": [ 479, 222, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3465, "image_id": 1839, "category_id": 1, "bbox": [ 502, 220, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3466, "image_id": 1840, "category_id": 1, "bbox": [ 537, 204, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3467, "image_id": 1841, "category_id": 1, "bbox": [ 589, 213, 28, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3468, "image_id": 1873, "category_id": 1, "bbox": [ 487, 230, 41, 98 ], "height": 98, "occlusion": 0, "ignore": 1 }, { "id": 3469, "image_id": 1875, "category_id": 1, "bbox": [ 613, 210, 24, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3470, "image_id": 1877, "category_id": 1, "bbox": [ 584, 211, 21, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3471, "image_id": 1878, "category_id": 1, "bbox": [ 569, 210, 21, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3472, "image_id": 1879, "category_id": 1, "bbox": [ 561, 208, 21, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3473, "image_id": 1880, "category_id": 1, "bbox": [ 554, 209, 21, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3474, "image_id": 1881, "category_id": 1, "bbox": [ 543, 208, 20, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3475, "image_id": 1882, "category_id": 1, "bbox": [ 537, 211, 20, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3476, "image_id": 1883, "category_id": 1, "bbox": [ 540, 218, 20, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 3477, "image_id": 1884, "category_id": 1, "bbox": [ 539, 215, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3478, "image_id": 1885, "category_id": 1, "bbox": [ 582, 210, 24, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 3479, "image_id": 1900, "category_id": 1, "bbox": [ 600, 217, 28, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 3480, "image_id": 1932, "category_id": 1, "bbox": [ 378, 235, 38, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3481, "image_id": 1933, "category_id": 1, "bbox": [ 375, 233, 38, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3482, "image_id": 1934, "category_id": 1, "bbox": [ 379, 227, 38, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3483, "image_id": 1935, "category_id": 1, "bbox": [ 398, 219, 38, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 3484, "image_id": 1936, "category_id": 1, "bbox": [ 433, 225, 40, 96 ], "height": 96, "occlusion": 1, "ignore": 0 }, { "id": 3485, "image_id": 1937, "category_id": 1, "bbox": [ 482, 221, 48, 132 ], "height": 132, "occlusion": 0, "ignore": 0 }, { "id": 3486, "image_id": 1943, "category_id": 1, "bbox": [ 412, 210, 26, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3487, "image_id": 1944, "category_id": 1, "bbox": [ 434, 201, 27, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3488, "image_id": 1945, "category_id": 1, "bbox": [ 469, 218, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3489, "image_id": 1945, "category_id": 1, "bbox": [ 482, 218, 20, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3490, "image_id": 1945, "category_id": 1, "bbox": [ 410, 215, 19, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 3491, "image_id": 1946, "category_id": 1, "bbox": [ 524, 213, 23, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 3492, "image_id": 1946, "category_id": 1, "bbox": [ 539, 218, 21, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 3493, "image_id": 1946, "category_id": 1, "bbox": [ 417, 206, 44, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3494, "image_id": 1947, "category_id": 1, "bbox": [ 460, 216, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3495, "image_id": 1947, "category_id": 1, "bbox": [ 472, 217, 16, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3496, "image_id": 1947, "category_id": 1, "bbox": [ 483, 216, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3497, "image_id": 1947, "category_id": 1, "bbox": [ 435, 216, 15, 24 ], "height": 24, "occlusion": 0, "ignore": 1 }, { "id": 3498, "image_id": 1948, "category_id": 1, "bbox": [ 502, 213, 21, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3499, "image_id": 1948, "category_id": 1, "bbox": [ 524, 210, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3500, "image_id": 1949, "category_id": 1, "bbox": [ 583, 211, 22, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3501, "image_id": 1949, "category_id": 1, "bbox": [ 609, 209, 21, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3502, "image_id": 1949, "category_id": 1, "bbox": [ 499, 211, 16, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3503, "image_id": 1950, "category_id": 1, "bbox": [ 547, 216, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3504, "image_id": 1953, "category_id": 1, "bbox": [ 388, 218, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3505, "image_id": 1955, "category_id": 1, "bbox": [ 559, 224, 28, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 3506, "image_id": 1955, "category_id": 1, "bbox": [ 397, 224, 14, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3507, "image_id": 1956, "category_id": 1, "bbox": [ 411, 207, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3508, "image_id": 1957, "category_id": 1, "bbox": [ 455, 230, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3509, "image_id": 1957, "category_id": 1, "bbox": [ 439, 226, 22, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 3510, "image_id": 1958, "category_id": 1, "bbox": [ 550, 217, 29, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 3511, "image_id": 1958, "category_id": 1, "bbox": [ 573, 208, 31, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 3512, "image_id": 1962, "category_id": 1, "bbox": [ 370, 219, 14, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3513, "image_id": 1963, "category_id": 1, "bbox": [ 399, 221, 14, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3514, "image_id": 1964, "category_id": 1, "bbox": [ 388, 224, 16, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3515, "image_id": 1965, "category_id": 1, "bbox": [ 573, 227, 32, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 3516, "image_id": 1965, "category_id": 1, "bbox": [ 460, 225, 27, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3517, "image_id": 1971, "category_id": 1, "bbox": [ 22, 206, 34, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3518, "image_id": 1972, "category_id": 1, "bbox": [ 406, 217, 11, 26 ], "height": 26, "occlusion": 0, "ignore": 0 }, { "id": 3519, "image_id": 1972, "category_id": 1, "bbox": [ 450, 216, 15, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3520, "image_id": 1972, "category_id": 1, "bbox": [ 431, 220, 13, 28 ], "height": 28, "occlusion": 0, "ignore": 0 }, { "id": 3521, "image_id": 1973, "category_id": 1, "bbox": [ 418, 212, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 3522, "image_id": 1973, "category_id": 1, "bbox": [ 454, 214, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3523, "image_id": 1973, "category_id": 1, "bbox": [ 483, 210, 17, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3524, "image_id": 1974, "category_id": 1, "bbox": [ 439, 224, 25, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 3525, "image_id": 1974, "category_id": 1, "bbox": [ 502, 225, 27, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3526, "image_id": 1974, "category_id": 1, "bbox": [ 548, 219, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3527, "image_id": 1975, "category_id": 1, "bbox": [ 505, 228, 28, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 3528, "image_id": 1979, "category_id": 1, "bbox": [ 398, 199, 21, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3529, "image_id": 1980, "category_id": 1, "bbox": [ 436, 210, 18, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3530, "image_id": 1981, "category_id": 1, "bbox": [ 510, 220, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3531, "image_id": 1985, "category_id": 1, "bbox": [ 491, 211, 22, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3532, "image_id": 1986, "category_id": 1, "bbox": [ 569, 206, 34, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3533, "image_id": 1986, "category_id": 1, "bbox": [ 480, 207, 19, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3534, "image_id": 1988, "category_id": 1, "bbox": [ 464, 208, 25, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 3535, "image_id": 1989, "category_id": 1, "bbox": [ 460, 214, 26, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3536, "image_id": 1990, "category_id": 1, "bbox": [ 482, 221, 31, 58 ], "height": 58, "occlusion": 2, "ignore": 1 }, { "id": 3537, "image_id": 1991, "category_id": 1, "bbox": [ 523, 211, 48, 84 ], "height": 84, "occlusion": 1, "ignore": 1 }, { "id": 3538, "image_id": 2003, "category_id": 1, "bbox": [ 323, 219, 15, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3539, "image_id": 2003, "category_id": 1, "bbox": [ 344, 219, 31, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3540, "image_id": 2004, "category_id": 1, "bbox": [ 323, 213, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3541, "image_id": 2004, "category_id": 1, "bbox": [ 347, 217, 24, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3542, "image_id": 2005, "category_id": 1, "bbox": [ 323, 220, 21, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 3543, "image_id": 2005, "category_id": 1, "bbox": [ 355, 219, 23, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 3544, "image_id": 2006, "category_id": 1, "bbox": [ 308, 210, 26, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 3545, "image_id": 2006, "category_id": 1, "bbox": [ 350, 215, 22, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 3546, "image_id": 2007, "category_id": 1, "bbox": [ 285, 211, 31, 70 ], "height": 70, "occlusion": 0, "ignore": 1 }, { "id": 3547, "image_id": 2007, "category_id": 1, "bbox": [ 235, 207, 30, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 3548, "image_id": 2007, "category_id": 1, "bbox": [ 45, 195, 28, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3549, "image_id": 2008, "category_id": 1, "bbox": [ 191, 209, 39, 97 ], "height": 97, "occlusion": 0, "ignore": 1 }, { "id": 3550, "image_id": 2008, "category_id": 1, "bbox": [ 101, 202, 47, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 3551, "image_id": 2009, "category_id": 1, "bbox": [ 74, 207, 32, 70 ], "height": 70, "occlusion": 2, "ignore": 0 }, { "id": 3552, "image_id": 2014, "category_id": 1, "bbox": [ 584, 228, 29, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3553, "image_id": 2015, "category_id": 1, "bbox": [ 508, 217, 34, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 3554, "image_id": 2016, "category_id": 1, "bbox": [ 495, 203, 42, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3555, "image_id": 2023, "category_id": 1, "bbox": [ 379, 213, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3556, "image_id": 2025, "category_id": 1, "bbox": [ 406, 218, 20, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3557, "image_id": 2026, "category_id": 1, "bbox": [ 426, 213, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3558, "image_id": 2026, "category_id": 1, "bbox": [ 505, 212, 20, 54 ], "height": 54, "occlusion": 2, "ignore": 0 }, { "id": 3559, "image_id": 2026, "category_id": 1, "bbox": [ 375, 210, 14, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3560, "image_id": 2026, "category_id": 1, "bbox": [ 130, 211, 16, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3561, "image_id": 2027, "category_id": 1, "bbox": [ 549, 211, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3562, "image_id": 2027, "category_id": 1, "bbox": [ 446, 214, 24, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 3563, "image_id": 2027, "category_id": 1, "bbox": [ 384, 216, 16, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3564, "image_id": 2027, "category_id": 1, "bbox": [ 105, 215, 14, 25 ], "height": 25, "occlusion": 0, "ignore": 0 }, { "id": 3565, "image_id": 2028, "category_id": 1, "bbox": [ 490, 219, 30, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3566, "image_id": 2028, "category_id": 1, "bbox": [ 404, 215, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 3567, "image_id": 2028, "category_id": 1, "bbox": [ 81, 210, 19, 29 ], "height": 29, "occlusion": 0, "ignore": 0 }, { "id": 3568, "image_id": 2029, "category_id": 1, "bbox": [ 576, 217, 38, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 3569, "image_id": 2029, "category_id": 1, "bbox": [ 435, 212, 23, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3570, "image_id": 2029, "category_id": 1, "bbox": [ 54, 210, 19, 30 ], "height": 30, "occlusion": 0, "ignore": 0 }, { "id": 3571, "image_id": 2030, "category_id": 1, "bbox": [ 488, 207, 32, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 3572, "image_id": 2047, "category_id": 1, "bbox": [ 100, 210, 18, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3573, "image_id": 2048, "category_id": 1, "bbox": [ 20, 209, 28, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3574, "image_id": 2059, "category_id": 1, "bbox": [ 140, 214, 15, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3575, "image_id": 2059, "category_id": 1, "bbox": [ 75, 216, 27, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3576, "image_id": 2060, "category_id": 1, "bbox": [ 1, 205, 38, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 3577, "image_id": 2060, "category_id": 1, "bbox": [ 94, 206, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3578, "image_id": 2061, "category_id": 1, "bbox": [ 44, 197, 26, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3579, "image_id": 2062, "category_id": 1, "bbox": [ 15, 199, 26, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3580, "image_id": 2062, "category_id": 1, "bbox": [ 439, 211, 16, 27 ], "height": 27, "occlusion": 0, "ignore": 0 }, { "id": 3581, "image_id": 2063, "category_id": 1, "bbox": [ 82, 205, 98, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3582, "image_id": 2064, "category_id": 1, "bbox": [ 493, 213, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3583, "image_id": 2064, "category_id": 1, "bbox": [ 77, 207, 68, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3584, "image_id": 2065, "category_id": 1, "bbox": [ 530, 212, 27, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 3585, "image_id": 2065, "category_id": 1, "bbox": [ 33, 204, 75, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3586, "image_id": 2066, "category_id": 1, "bbox": [ 574, 212, 26, 64 ], "height": 64, "occlusion": 0, "ignore": 0 }, { "id": 3587, "image_id": 2066, "category_id": 1, "bbox": [ 1, 202, 82, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 3588, "image_id": 2067, "category_id": 1, "bbox": [ 399, 220, 23, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3589, "image_id": 2067, "category_id": 1, "bbox": [ 356, 219, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3590, "image_id": 2067, "category_id": 1, "bbox": [ 432, 220, 20, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3591, "image_id": 2067, "category_id": 1, "bbox": [ 226, 218, 39, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3592, "image_id": 2067, "category_id": 1, "bbox": [ 1, 214, 20, 60 ], "height": 60, "occlusion": 0, "ignore": 1 }, { "id": 3593, "image_id": 2068, "category_id": 1, "bbox": [ 208, 218, 45, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3594, "image_id": 2068, "category_id": 1, "bbox": [ 384, 220, 19, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3595, "image_id": 2068, "category_id": 1, "bbox": [ 424, 228, 23, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3596, "image_id": 2068, "category_id": 1, "bbox": [ 460, 221, 20, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3597, "image_id": 2069, "category_id": 1, "bbox": [ 408, 226, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3598, "image_id": 2069, "category_id": 1, "bbox": [ 446, 227, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3599, "image_id": 2069, "category_id": 1, "bbox": [ 483, 224, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3600, "image_id": 2069, "category_id": 1, "bbox": [ 471, 226, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3601, "image_id": 2069, "category_id": 1, "bbox": [ 199, 219, 35, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3602, "image_id": 2070, "category_id": 1, "bbox": [ 184, 222, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3603, "image_id": 2070, "category_id": 1, "bbox": [ 486, 226, 20, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 3604, "image_id": 2070, "category_id": 1, "bbox": [ 499, 224, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3605, "image_id": 2070, "category_id": 1, "bbox": [ 468, 229, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3606, "image_id": 2070, "category_id": 1, "bbox": [ 437, 228, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3607, "image_id": 2070, "category_id": 1, "bbox": [ 205, 219, 29, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3608, "image_id": 2071, "category_id": 1, "bbox": [ 165, 220, 20, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 3609, "image_id": 2071, "category_id": 1, "bbox": [ 523, 223, 25, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 3610, "image_id": 2071, "category_id": 1, "bbox": [ 504, 228, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3611, "image_id": 2071, "category_id": 1, "bbox": [ 487, 231, 21, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3612, "image_id": 2071, "category_id": 1, "bbox": [ 464, 230, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3613, "image_id": 2071, "category_id": 1, "bbox": [ 204, 218, 31, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3614, "image_id": 2071, "category_id": 1, "bbox": [ 303, 224, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3615, "image_id": 2072, "category_id": 1, "bbox": [ 554, 223, 20, 59 ], "height": 59, "occlusion": 2, "ignore": 0 }, { "id": 3616, "image_id": 2072, "category_id": 1, "bbox": [ 534, 227, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3617, "image_id": 2072, "category_id": 1, "bbox": [ 504, 227, 21, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3618, "image_id": 2072, "category_id": 1, "bbox": [ 141, 217, 22, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3619, "image_id": 2072, "category_id": 1, "bbox": [ 155, 218, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3620, "image_id": 2072, "category_id": 1, "bbox": [ 491, 227, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3621, "image_id": 2072, "category_id": 1, "bbox": [ 207, 216, 31, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3622, "image_id": 2072, "category_id": 1, "bbox": [ 287, 223, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3623, "image_id": 2073, "category_id": 1, "bbox": [ 574, 220, 26, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 3624, "image_id": 2073, "category_id": 1, "bbox": [ 120, 216, 23, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3625, "image_id": 2073, "category_id": 1, "bbox": [ 135, 216, 23, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3626, "image_id": 2073, "category_id": 1, "bbox": [ 521, 224, 19, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3627, "image_id": 2073, "category_id": 1, "bbox": [ 213, 216, 31, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3628, "image_id": 2073, "category_id": 1, "bbox": [ 264, 225, 23, 41 ], "height": 41, "occlusion": 0, "ignore": 1 }, { "id": 3629, "image_id": 2073, "category_id": 1, "bbox": [ 558, 222, 25, 61 ], "height": 61, "occlusion": 2, "ignore": 0 }, { "id": 3630, "image_id": 2074, "category_id": 1, "bbox": [ 51, 241, 58, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 3631, "image_id": 2074, "category_id": 1, "bbox": [ 430, 234, 23, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3632, "image_id": 2074, "category_id": 1, "bbox": [ 406, 227, 29, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3633, "image_id": 2074, "category_id": 1, "bbox": [ 238, 223, 21, 65 ], "height": 65, "occlusion": 0, "ignore": 1 }, { "id": 3634, "image_id": 2074, "category_id": 1, "bbox": [ 216, 229, 20, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3635, "image_id": 2074, "category_id": 1, "bbox": [ 16, 244, 57, 129 ], "height": 129, "occlusion": 1, "ignore": 0 }, { "id": 3636, "image_id": 2074, "category_id": 1, "bbox": [ 350, 215, 58, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3637, "image_id": 2075, "category_id": 1, "bbox": [ 27, 237, 70, 171 ], "height": 171, "occlusion": 0, "ignore": 0 }, { "id": 3638, "image_id": 2075, "category_id": 1, "bbox": [ 459, 235, 26, 81 ], "height": 81, "occlusion": 0, "ignore": 0 }, { "id": 3639, "image_id": 2075, "category_id": 1, "bbox": [ 431, 229, 35, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 3640, "image_id": 2075, "category_id": 1, "bbox": [ 237, 218, 24, 68 ], "height": 68, "occlusion": 0, "ignore": 1 }, { "id": 3641, "image_id": 2075, "category_id": 1, "bbox": [ 220, 225, 26, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 3642, "image_id": 2075, "category_id": 1, "bbox": [ 2, 245, 50, 166 ], "height": 166, "occlusion": 1, "ignore": 0 }, { "id": 3643, "image_id": 2075, "category_id": 1, "bbox": [ 506, 221, 18, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 3644, "image_id": 2075, "category_id": 1, "bbox": [ 526, 219, 18, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 3645, "image_id": 2075, "category_id": 1, "bbox": [ 348, 219, 87, 29 ], "height": 29, "occlusion": 0, "ignore": 1 }, { "id": 3646, "image_id": 2076, "category_id": 1, "bbox": [ 480, 237, 33, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 3647, "image_id": 2076, "category_id": 1, "bbox": [ 452, 233, 41, 111 ], "height": 111, "occlusion": 0, "ignore": 0 }, { "id": 3648, "image_id": 2076, "category_id": 1, "bbox": [ 228, 215, 22, 70 ], "height": 70, "occlusion": 0, "ignore": 1 }, { "id": 3649, "image_id": 2076, "category_id": 1, "bbox": [ 203, 227, 24, 63 ], "height": 63, "occlusion": 0, "ignore": 0 }, { "id": 3650, "image_id": 2076, "category_id": 1, "bbox": [ 426, 223, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3651, "image_id": 2076, "category_id": 1, "bbox": [ 2, 243, 42, 201 ], "height": 201, "occlusion": 1, "ignore": 1 }, { "id": 3652, "image_id": 2076, "category_id": 1, "bbox": [ 538, 218, 26, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3653, "image_id": 2076, "category_id": 1, "bbox": [ 344, 216, 78, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3654, "image_id": 2077, "category_id": 1, "bbox": [ 535, 251, 44, 135 ], "height": 135, "occlusion": 0, "ignore": 0 }, { "id": 3655, "image_id": 2077, "category_id": 1, "bbox": [ 496, 240, 57, 152 ], "height": 152, "occlusion": 0, "ignore": 0 }, { "id": 3656, "image_id": 2077, "category_id": 1, "bbox": [ 232, 219, 26, 76 ], "height": 76, "occlusion": 0, "ignore": 1 }, { "id": 3657, "image_id": 2077, "category_id": 1, "bbox": [ 190, 225, 26, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 3658, "image_id": 2077, "category_id": 1, "bbox": [ 429, 229, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3659, "image_id": 2077, "category_id": 1, "bbox": [ 457, 230, 18, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3660, "image_id": 2077, "category_id": 1, "bbox": [ 485, 220, 22, 47 ], "height": 47, "occlusion": 2, "ignore": 0 }, { "id": 3661, "image_id": 2077, "category_id": 1, "bbox": [ 259, 217, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3662, "image_id": 2077, "category_id": 1, "bbox": [ 323, 218, 60, 25 ], "height": 25, "occlusion": 0, "ignore": 1 }, { "id": 3663, "image_id": 2077, "category_id": 1, "bbox": [ 388, 225, 39, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3664, "image_id": 2077, "category_id": 1, "bbox": [ 556, 222, 30, 52 ], "height": 52, "occlusion": 0, "ignore": 1 }, { "id": 3665, "image_id": 2078, "category_id": 1, "bbox": [ 217, 223, 33, 86 ], "height": 86, "occlusion": 0, "ignore": 1 }, { "id": 3666, "image_id": 2078, "category_id": 1, "bbox": [ 181, 228, 27, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3667, "image_id": 2078, "category_id": 1, "bbox": [ 430, 224, 25, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3668, "image_id": 2078, "category_id": 1, "bbox": [ 464, 232, 23, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3669, "image_id": 2078, "category_id": 1, "bbox": [ 495, 226, 25, 47 ], "height": 47, "occlusion": 2, "ignore": 0 }, { "id": 3670, "image_id": 2078, "category_id": 1, "bbox": [ 612, 220, 23, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3671, "image_id": 2078, "category_id": 1, "bbox": [ 594, 219, 22, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3672, "image_id": 2078, "category_id": 1, "bbox": [ 258, 223, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 3673, "image_id": 2078, "category_id": 1, "bbox": [ 271, 219, 16, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3674, "image_id": 2078, "category_id": 1, "bbox": [ 324, 220, 57, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3675, "image_id": 2078, "category_id": 1, "bbox": [ 385, 225, 20, 40 ], "height": 40, "occlusion": 1, "ignore": 0 }, { "id": 3676, "image_id": 2078, "category_id": 1, "bbox": [ 404, 227, 17, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 3677, "image_id": 2078, "category_id": 1, "bbox": [ 414, 226, 17, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3678, "image_id": 2079, "category_id": 1, "bbox": [ 168, 218, 42, 103 ], "height": 103, "occlusion": 0, "ignore": 1 }, { "id": 3679, "image_id": 2079, "category_id": 1, "bbox": [ 136, 225, 34, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 3680, "image_id": 2079, "category_id": 1, "bbox": [ 425, 225, 28, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3681, "image_id": 2079, "category_id": 1, "bbox": [ 231, 218, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3682, "image_id": 2079, "category_id": 1, "bbox": [ 243, 219, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3683, "image_id": 2079, "category_id": 1, "bbox": [ 461, 234, 23, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3684, "image_id": 2079, "category_id": 1, "bbox": [ 496, 225, 27, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 3685, "image_id": 2079, "category_id": 1, "bbox": [ 291, 217, 65, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3686, "image_id": 2079, "category_id": 1, "bbox": [ 370, 226, 20, 33 ], "height": 33, "occlusion": 2, "ignore": 0 }, { "id": 3687, "image_id": 2079, "category_id": 1, "bbox": [ 387, 227, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3688, "image_id": 2079, "category_id": 1, "bbox": [ 405, 225, 18, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3689, "image_id": 2080, "category_id": 1, "bbox": [ 99, 219, 52, 129 ], "height": 129, "occlusion": 0, "ignore": 1 }, { "id": 3690, "image_id": 2080, "category_id": 1, "bbox": [ 45, 220, 51, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 3691, "image_id": 2080, "category_id": 1, "bbox": [ 421, 224, 28, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 3692, "image_id": 2080, "category_id": 1, "bbox": [ 353, 229, 23, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3693, "image_id": 2080, "category_id": 1, "bbox": [ 186, 218, 20, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3694, "image_id": 2080, "category_id": 1, "bbox": [ 461, 234, 22, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3695, "image_id": 2080, "category_id": 1, "bbox": [ 208, 221, 20, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3696, "image_id": 2080, "category_id": 1, "bbox": [ 252, 217, 64, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3697, "image_id": 2080, "category_id": 1, "bbox": [ 372, 227, 25, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3698, "image_id": 2080, "category_id": 1, "bbox": [ 400, 232, 23, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 3699, "image_id": 2080, "category_id": 1, "bbox": [ 501, 220, 29, 76 ], "height": 76, "occlusion": 2, "ignore": 0 }, { "id": 3700, "image_id": 2080, "category_id": 1, "bbox": [ 594, 228, 34, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3701, "image_id": 2081, "category_id": 1, "bbox": [ 23, 223, 66, 170 ], "height": 170, "occlusion": 0, "ignore": 0 }, { "id": 3702, "image_id": 2081, "category_id": 1, "bbox": [ 437, 225, 32, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 3703, "image_id": 2081, "category_id": 1, "bbox": [ 363, 233, 24, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 3704, "image_id": 2081, "category_id": 1, "bbox": [ 388, 231, 22, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3705, "image_id": 2081, "category_id": 1, "bbox": [ 150, 221, 21, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3706, "image_id": 2081, "category_id": 1, "bbox": [ 170, 220, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3707, "image_id": 2081, "category_id": 1, "bbox": [ 488, 239, 26, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 3708, "image_id": 2081, "category_id": 1, "bbox": [ 254, 219, 64, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 3709, "image_id": 2081, "category_id": 1, "bbox": [ 529, 227, 33, 85 ], "height": 85, "occlusion": 2, "ignore": 0 }, { "id": 3710, "image_id": 2081, "category_id": 1, "bbox": [ 327, 220, 17, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3711, "image_id": 2082, "category_id": 1, "bbox": [ 475, 225, 46, 143 ], "height": 143, "occlusion": 0, "ignore": 0 }, { "id": 3712, "image_id": 2082, "category_id": 1, "bbox": [ 400, 232, 26, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3713, "image_id": 2082, "category_id": 1, "bbox": [ 423, 234, 32, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 3714, "image_id": 2082, "category_id": 1, "bbox": [ 102, 221, 34, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3715, "image_id": 2082, "category_id": 1, "bbox": [ 132, 225, 35, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3716, "image_id": 2082, "category_id": 1, "bbox": [ 549, 246, 37, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 3717, "image_id": 2082, "category_id": 1, "bbox": [ 256, 219, 40, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3718, "image_id": 2082, "category_id": 1, "bbox": [ 594, 223, 40, 116 ], "height": 116, "occlusion": 2, "ignore": 0 }, { "id": 3719, "image_id": 2082, "category_id": 1, "bbox": [ 314, 220, 15, 33 ], "height": 33, "occlusion": 0, "ignore": 0 }, { "id": 3720, "image_id": 2082, "category_id": 1, "bbox": [ 329, 219, 20, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3721, "image_id": 2083, "category_id": 1, "bbox": [ 577, 231, 62, 201 ], "height": 201, "occlusion": 0, "ignore": 0 }, { "id": 3722, "image_id": 2083, "category_id": 1, "bbox": [ 478, 238, 36, 100 ], "height": 100, "occlusion": 0, "ignore": 0 }, { "id": 3723, "image_id": 2083, "category_id": 1, "bbox": [ 508, 239, 37, 98 ], "height": 98, "occlusion": 1, "ignore": 0 }, { "id": 3724, "image_id": 2083, "category_id": 1, "bbox": [ 37, 226, 48, 131 ], "height": 131, "occlusion": 0, "ignore": 0 }, { "id": 3725, "image_id": 2083, "category_id": 1, "bbox": [ 67, 221, 54, 136 ], "height": 136, "occlusion": 0, "ignore": 0 }, { "id": 3726, "image_id": 2083, "category_id": 1, "bbox": [ 257, 217, 57, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3727, "image_id": 2083, "category_id": 1, "bbox": [ 336, 220, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3728, "image_id": 2083, "category_id": 1, "bbox": [ 350, 214, 15, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3729, "image_id": 2083, "category_id": 1, "bbox": [ 139, 210, 25, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 3730, "image_id": 2084, "category_id": 1, "bbox": [ 258, 214, 65, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3731, "image_id": 2084, "category_id": 1, "bbox": [ 164, 218, 24, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 3732, "image_id": 2084, "category_id": 1, "bbox": [ 347, 220, 21, 39 ], "height": 39, "occlusion": 1, "ignore": 0 }, { "id": 3733, "image_id": 2084, "category_id": 1, "bbox": [ 362, 220, 25, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 3734, "image_id": 2085, "category_id": 1, "bbox": [ 126, 218, 28, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 3735, "image_id": 2085, "category_id": 1, "bbox": [ 262, 214, 57, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3736, "image_id": 2085, "category_id": 1, "bbox": [ 149, 222, 23, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3737, "image_id": 2085, "category_id": 1, "bbox": [ 357, 223, 21, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 3738, "image_id": 2085, "category_id": 1, "bbox": [ 377, 219, 26, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3739, "image_id": 2086, "category_id": 1, "bbox": [ 397, 229, 25, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3740, "image_id": 2086, "category_id": 1, "bbox": [ 368, 230, 25, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 3741, "image_id": 2086, "category_id": 1, "bbox": [ 133, 231, 28, 59 ], "height": 59, "occlusion": 0, "ignore": 0 }, { "id": 3742, "image_id": 2086, "category_id": 1, "bbox": [ 104, 223, 29, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3743, "image_id": 2086, "category_id": 1, "bbox": [ 232, 222, 20, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3744, "image_id": 2086, "category_id": 1, "bbox": [ 269, 218, 35, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 3745, "image_id": 2086, "category_id": 1, "bbox": [ 246, 220, 19, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 3746, "image_id": 2087, "category_id": 1, "bbox": [ 418, 230, 28, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3747, "image_id": 2087, "category_id": 1, "bbox": [ 391, 231, 30, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 3748, "image_id": 2087, "category_id": 1, "bbox": [ 106, 227, 28, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 3749, "image_id": 2087, "category_id": 1, "bbox": [ 80, 217, 33, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 3750, "image_id": 2087, "category_id": 1, "bbox": [ 211, 223, 20, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3751, "image_id": 2087, "category_id": 1, "bbox": [ 230, 220, 20, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3752, "image_id": 2087, "category_id": 1, "bbox": [ 272, 218, 34, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 3753, "image_id": 2087, "category_id": 1, "bbox": [ 243, 214, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3754, "image_id": 2088, "category_id": 1, "bbox": [ 451, 233, 35, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 3755, "image_id": 2088, "category_id": 1, "bbox": [ 422, 230, 34, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 3756, "image_id": 2088, "category_id": 1, "bbox": [ 70, 221, 35, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3757, "image_id": 2088, "category_id": 1, "bbox": [ 37, 214, 37, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 3758, "image_id": 2088, "category_id": 1, "bbox": [ 160, 218, 30, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 3759, "image_id": 2088, "category_id": 1, "bbox": [ 186, 216, 26, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 3760, "image_id": 2088, "category_id": 1, "bbox": [ 212, 209, 29, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3761, "image_id": 2088, "category_id": 1, "bbox": [ 256, 213, 53, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 3762, "image_id": 2089, "category_id": 1, "bbox": [ 531, 240, 51, 162 ], "height": 162, "occlusion": 0, "ignore": 0 }, { "id": 3763, "image_id": 2089, "category_id": 1, "bbox": [ 485, 247, 42, 150 ], "height": 150, "occlusion": 0, "ignore": 0 }, { "id": 3764, "image_id": 2089, "category_id": 1, "bbox": [ 53, 234, 41, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 3765, "image_id": 2089, "category_id": 1, "bbox": [ 9, 220, 49, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 3766, "image_id": 2089, "category_id": 1, "bbox": [ 128, 229, 34, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 3767, "image_id": 2089, "category_id": 1, "bbox": [ 165, 219, 32, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3768, "image_id": 2089, "category_id": 1, "bbox": [ 199, 215, 35, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 3769, "image_id": 2089, "category_id": 1, "bbox": [ 234, 219, 23, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 3770, "image_id": 2089, "category_id": 1, "bbox": [ 275, 218, 53, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 3771, "image_id": 2090, "category_id": 1, "bbox": [ 20, 227, 52, 136 ], "height": 136, "occlusion": 0, "ignore": 0 }, { "id": 3772, "image_id": 2090, "category_id": 1, "bbox": [ 85, 221, 50, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 3773, "image_id": 2090, "category_id": 1, "bbox": [ 130, 215, 46, 128 ], "height": 128, "occlusion": 0, "ignore": 0 }, { "id": 3774, "image_id": 2090, "category_id": 1, "bbox": [ 171, 213, 45, 138 ], "height": 138, "occlusion": 0, "ignore": 0 }, { "id": 3775, "image_id": 2090, "category_id": 1, "bbox": [ 226, 220, 21, 63 ], "height": 63, "occlusion": 2, "ignore": 0 }, { "id": 3776, "image_id": 2090, "category_id": 1, "bbox": [ 243, 216, 24, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 3777, "image_id": 2090, "category_id": 1, "bbox": [ 296, 219, 21, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 3778, "image_id": 2090, "category_id": 1, "bbox": [ 311, 217, 19, 48 ], "height": 48, "occlusion": 1, "ignore": 0 }, { "id": 3779, "image_id": 2090, "category_id": 1, "bbox": [ 328, 218, 22, 43 ], "height": 43, "occlusion": 1, "ignore": 0 }, { "id": 3780, "image_id": 2091, "category_id": 1, "bbox": [ 8, 230, 52, 169 ], "height": 169, "occlusion": 0, "ignore": 0 }, { "id": 3781, "image_id": 2091, "category_id": 1, "bbox": [ 55, 220, 58, 170 ], "height": 170, "occlusion": 0, "ignore": 0 }, { "id": 3782, "image_id": 2091, "category_id": 1, "bbox": [ 102, 212, 61, 189 ], "height": 189, "occlusion": 0, "ignore": 0 }, { "id": 3783, "image_id": 2091, "category_id": 1, "bbox": [ 195, 224, 28, 72 ], "height": 72, "occlusion": 1, "ignore": 0 }, { "id": 3784, "image_id": 2091, "category_id": 1, "bbox": [ 217, 220, 28, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3785, "image_id": 2091, "category_id": 1, "bbox": [ 287, 218, 20, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 3786, "image_id": 2091, "category_id": 1, "bbox": [ 304, 220, 19, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3787, "image_id": 2091, "category_id": 1, "bbox": [ 318, 223, 20, 38 ], "height": 38, "occlusion": 1, "ignore": 0 }, { "id": 3788, "image_id": 2092, "category_id": 1, "bbox": [ 5, 210, 57, 82 ], "height": 82, "occlusion": 0, "ignore": 1 }, { "id": 3789, "image_id": 2092, "category_id": 1, "bbox": [ 139, 225, 31, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 3790, "image_id": 2092, "category_id": 1, "bbox": [ 160, 222, 35, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3791, "image_id": 2092, "category_id": 1, "bbox": [ 256, 220, 19, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 3792, "image_id": 2092, "category_id": 1, "bbox": [ 270, 222, 21, 43 ], "height": 43, "occlusion": 1, "ignore": 0 }, { "id": 3793, "image_id": 2092, "category_id": 1, "bbox": [ 287, 225, 21, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3794, "image_id": 2093, "category_id": 1, "bbox": [ 126, 226, 32, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 3795, "image_id": 2093, "category_id": 1, "bbox": [ 250, 219, 58, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3796, "image_id": 2093, "category_id": 1, "bbox": [ 94, 231, 36, 90 ], "height": 90, "occlusion": 2, "ignore": 0 }, { "id": 3797, "image_id": 2094, "category_id": 1, "bbox": [ 99, 230, 36, 89 ], "height": 89, "occlusion": 2, "ignore": 0 }, { "id": 3798, "image_id": 2094, "category_id": 1, "bbox": [ 287, 220, 57, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3799, "image_id": 2095, "category_id": 1, "bbox": [ 25, 225, 53, 122 ], "height": 122, "occlusion": 2, "ignore": 0 }, { "id": 3800, "image_id": 2095, "category_id": 1, "bbox": [ 308, 220, 24, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 3801, "image_id": 2095, "category_id": 1, "bbox": [ 330, 220, 19, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3802, "image_id": 2095, "category_id": 1, "bbox": [ 346, 222, 18, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3803, "image_id": 2095, "category_id": 1, "bbox": [ 359, 224, 18, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 3804, "image_id": 2096, "category_id": 1, "bbox": [ 139, 233, 37, 80 ], "height": 80, "occlusion": 1, "ignore": 1 }, { "id": 3805, "image_id": 2096, "category_id": 1, "bbox": [ 308, 221, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3806, "image_id": 2096, "category_id": 1, "bbox": [ 332, 221, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3807, "image_id": 2096, "category_id": 1, "bbox": [ 346, 227, 20, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3808, "image_id": 2096, "category_id": 1, "bbox": [ 361, 228, 19, 40 ], "height": 40, "occlusion": 2, "ignore": 0 }, { "id": 3809, "image_id": 2097, "category_id": 1, "bbox": [ 58, 224, 49, 123 ], "height": 123, "occlusion": 0, "ignore": 1 }, { "id": 3810, "image_id": 2097, "category_id": 1, "bbox": [ 310, 217, 25, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3811, "image_id": 2097, "category_id": 1, "bbox": [ 330, 221, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 3812, "image_id": 2097, "category_id": 1, "bbox": [ 349, 220, 24, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 3813, "image_id": 2098, "category_id": 1, "bbox": [ 345, 218, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3814, "image_id": 2098, "category_id": 1, "bbox": [ 377, 221, 28, 48 ], "height": 48, "occlusion": 0, "ignore": 1 }, { "id": 3815, "image_id": 2099, "category_id": 1, "bbox": [ 379, 216, 31, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 3816, "image_id": 2099, "category_id": 1, "bbox": [ 407, 221, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 3817, "image_id": 2100, "category_id": 1, "bbox": [ 410, 219, 30, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 3818, "image_id": 2100, "category_id": 1, "bbox": [ 435, 224, 21, 60 ], "height": 60, "occlusion": 2, "ignore": 0 }, { "id": 3819, "image_id": 2100, "category_id": 1, "bbox": [ 449, 230, 18, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 3820, "image_id": 2100, "category_id": 1, "bbox": [ 377, 217, 30, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 3821, "image_id": 2101, "category_id": 1, "bbox": [ 443, 239, 27, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 3822, "image_id": 2101, "category_id": 1, "bbox": [ 465, 242, 24, 64 ], "height": 64, "occlusion": 2, "ignore": 0 }, { "id": 3823, "image_id": 2101, "category_id": 1, "bbox": [ 389, 228, 45, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 3824, "image_id": 2102, "category_id": 1, "bbox": [ 456, 255, 28, 84 ], "height": 84, "occlusion": 0, "ignore": 0 }, { "id": 3825, "image_id": 2102, "category_id": 1, "bbox": [ 390, 240, 46, 42 ], "height": 42, "occlusion": 0, "ignore": 1 }, { "id": 3826, "image_id": 2102, "category_id": 1, "bbox": [ 481, 260, 30, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 3827, "image_id": 2103, "category_id": 1, "bbox": [ 460, 238, 34, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 3828, "image_id": 2103, "category_id": 1, "bbox": [ 484, 245, 27, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 3829, "image_id": 2103, "category_id": 1, "bbox": [ 429, 233, 27, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3830, "image_id": 2103, "category_id": 1, "bbox": [ 384, 221, 46, 44 ], "height": 44, "occlusion": 0, "ignore": 1 }, { "id": 3831, "image_id": 2104, "category_id": 1, "bbox": [ 464, 239, 43, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 3832, "image_id": 2104, "category_id": 1, "bbox": [ 360, 219, 87, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 3833, "image_id": 2105, "category_id": 1, "bbox": [ 515, 234, 61, 194 ], "height": 194, "occlusion": 0, "ignore": 0 }, { "id": 3834, "image_id": 2105, "category_id": 1, "bbox": [ 490, 238, 53, 166 ], "height": 166, "occlusion": 1, "ignore": 0 }, { "id": 3835, "image_id": 2105, "category_id": 1, "bbox": [ 335, 206, 90, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3836, "image_id": 2106, "category_id": 1, "bbox": [ 513, 240, 58, 210 ], "height": 210, "occlusion": 0, "ignore": 0 }, { "id": 3837, "image_id": 2106, "category_id": 1, "bbox": [ 581, 247, 60, 266 ], "height": 266, "occlusion": 1, "ignore": 0 }, { "id": 3838, "image_id": 2106, "category_id": 1, "bbox": [ 310, 195, 85, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3839, "image_id": 2107, "category_id": 1, "bbox": [ 288, 215, 80, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3840, "image_id": 2108, "category_id": 1, "bbox": [ 60, 215, 41, 88 ], "height": 88, "occlusion": 1, "ignore": 0 }, { "id": 3841, "image_id": 2108, "category_id": 1, "bbox": [ 171, 210, 30, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3842, "image_id": 2108, "category_id": 1, "bbox": [ 243, 214, 83, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3843, "image_id": 2109, "category_id": 1, "bbox": [ 168, 210, 102, 58 ], "height": 58, "occlusion": 0, "ignore": 1 }, { "id": 3844, "image_id": 2110, "category_id": 1, "bbox": [ 144, 209, 105, 39 ], "height": 39, "occlusion": 1, "ignore": 1 }, { "id": 3845, "image_id": 2111, "category_id": 1, "bbox": [ 121, 205, 121, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 3846, "image_id": 2112, "category_id": 1, "bbox": [ 119, 209, 16, 36 ], "height": 36, "occlusion": 1, "ignore": 0 }, { "id": 3847, "image_id": 2112, "category_id": 1, "bbox": [ 205, 216, 32, 65 ], "height": 65, "occlusion": 1, "ignore": 0 }, { "id": 3848, "image_id": 2112, "category_id": 1, "bbox": [ 237, 215, 28, 76 ], "height": 76, "occlusion": 1, "ignore": 0 }, { "id": 3849, "image_id": 2112, "category_id": 1, "bbox": [ 253, 224, 32, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 3850, "image_id": 2112, "category_id": 1, "bbox": [ 150, 209, 26, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3851, "image_id": 2112, "category_id": 1, "bbox": [ 183, 209, 25, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 3852, "image_id": 2113, "category_id": 1, "bbox": [ 169, 209, 19, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 3853, "image_id": 2113, "category_id": 1, "bbox": [ 187, 211, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 3854, "image_id": 2113, "category_id": 1, "bbox": [ 233, 211, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 3855, "image_id": 2113, "category_id": 1, "bbox": [ 255, 210, 36, 71 ], "height": 71, "occlusion": 1, "ignore": 0 }, { "id": 3856, "image_id": 2113, "category_id": 1, "bbox": [ 293, 213, 27, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 3857, "image_id": 2113, "category_id": 1, "bbox": [ 308, 222, 30, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3858, "image_id": 2114, "category_id": 1, "bbox": [ 336, 227, 30, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 3859, "image_id": 2114, "category_id": 1, "bbox": [ 191, 216, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3860, "image_id": 2114, "category_id": 1, "bbox": [ 205, 221, 25, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 3861, "image_id": 2114, "category_id": 1, "bbox": [ 255, 214, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 3862, "image_id": 2114, "category_id": 1, "bbox": [ 272, 214, 35, 75 ], "height": 75, "occlusion": 0, "ignore": 0 }, { "id": 3863, "image_id": 2114, "category_id": 1, "bbox": [ 311, 221, 33, 79 ], "height": 79, "occlusion": 1, "ignore": 0 }, { "id": 3864, "image_id": 2115, "category_id": 1, "bbox": [ 340, 231, 32, 98 ], "height": 98, "occlusion": 0, "ignore": 0 }, { "id": 3865, "image_id": 2115, "category_id": 1, "bbox": [ 321, 222, 34, 102 ], "height": 102, "occlusion": 0, "ignore": 0 }, { "id": 3866, "image_id": 2115, "category_id": 1, "bbox": [ 268, 216, 34, 82 ], "height": 82, "occlusion": 1, "ignore": 0 }, { "id": 3867, "image_id": 2115, "category_id": 1, "bbox": [ 187, 214, 21, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 3868, "image_id": 2115, "category_id": 1, "bbox": [ 203, 219, 19, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 3869, "image_id": 2115, "category_id": 1, "bbox": [ 253, 220, 18, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 3870, "image_id": 2115, "category_id": 1, "bbox": [ 227, 215, 17, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3871, "image_id": 2116, "category_id": 1, "bbox": [ 363, 227, 34, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 3872, "image_id": 2116, "category_id": 1, "bbox": [ 339, 225, 33, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 3873, "image_id": 2116, "category_id": 1, "bbox": [ 277, 217, 36, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 3874, "image_id": 2116, "category_id": 1, "bbox": [ 264, 221, 19, 40 ], "height": 40, "occlusion": 1, "ignore": 0 }, { "id": 3875, "image_id": 2116, "category_id": 1, "bbox": [ 296, 220, 22, 69 ], "height": 69, "occlusion": 2, "ignore": 0 }, { "id": 3876, "image_id": 2116, "category_id": 1, "bbox": [ 202, 217, 17, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 3877, "image_id": 2116, "category_id": 1, "bbox": [ 217, 224, 17, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3878, "image_id": 2116, "category_id": 1, "bbox": [ 191, 216, 13, 41 ], "height": 41, "occlusion": 1, "ignore": 0 }, { "id": 3879, "image_id": 2117, "category_id": 1, "bbox": [ 421, 235, 42, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 3880, "image_id": 2117, "category_id": 1, "bbox": [ 386, 229, 42, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 3881, "image_id": 2117, "category_id": 1, "bbox": [ 325, 220, 36, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3882, "image_id": 2117, "category_id": 1, "bbox": [ 307, 224, 25, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 3883, "image_id": 2117, "category_id": 1, "bbox": [ 223, 220, 24, 44 ], "height": 44, "occlusion": 2, "ignore": 0 }, { "id": 3884, "image_id": 2117, "category_id": 1, "bbox": [ 243, 217, 33, 58 ], "height": 58, "occlusion": 1, "ignore": 1 }, { "id": 3885, "image_id": 2117, "category_id": 1, "bbox": [ 346, 222, 22, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 3886, "image_id": 2118, "category_id": 1, "bbox": [ 465, 236, 56, 173 ], "height": 173, "occlusion": 0, "ignore": 0 }, { "id": 3887, "image_id": 2118, "category_id": 1, "bbox": [ 407, 229, 57, 182 ], "height": 182, "occlusion": 0, "ignore": 0 }, { "id": 3888, "image_id": 2118, "category_id": 1, "bbox": [ 356, 222, 36, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3889, "image_id": 2118, "category_id": 1, "bbox": [ 320, 220, 25, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 3890, "image_id": 2118, "category_id": 1, "bbox": [ 297, 221, 22, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 3891, "image_id": 2118, "category_id": 1, "bbox": [ 223, 215, 20, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 3892, "image_id": 2118, "category_id": 1, "bbox": [ 244, 217, 23, 51 ], "height": 51, "occlusion": 1, "ignore": 0 }, { "id": 3893, "image_id": 2118, "category_id": 1, "bbox": [ 266, 221, 20, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 3894, "image_id": 2118, "category_id": 1, "bbox": [ 340, 219, 26, 67 ], "height": 67, "occlusion": 2, "ignore": 0 }, { "id": 3895, "image_id": 2119, "category_id": 1, "bbox": [ 512, 236, 78, 246 ], "height": 246, "occlusion": 0, "ignore": 0 }, { "id": 3896, "image_id": 2119, "category_id": 1, "bbox": [ 423, 227, 44, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 3897, "image_id": 2119, "category_id": 1, "bbox": [ 370, 224, 29, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 3898, "image_id": 2119, "category_id": 1, "bbox": [ 577, 248, 59, 246 ], "height": 246, "occlusion": 1, "ignore": 0 }, { "id": 3899, "image_id": 2119, "category_id": 1, "bbox": [ 391, 224, 25, 78 ], "height": 78, "occlusion": 1, "ignore": 0 }, { "id": 3900, "image_id": 2119, "category_id": 1, "bbox": [ 407, 225, 22, 76 ], "height": 76, "occlusion": 2, "ignore": 0 }, { "id": 3901, "image_id": 2119, "category_id": 1, "bbox": [ 257, 224, 26, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 3902, "image_id": 2119, "category_id": 1, "bbox": [ 285, 223, 28, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 3903, "image_id": 2119, "category_id": 1, "bbox": [ 314, 227, 20, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 3904, "image_id": 2119, "category_id": 1, "bbox": [ 329, 232, 20, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3905, "image_id": 2120, "category_id": 1, "bbox": [ 529, 225, 48, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 3906, "image_id": 2120, "category_id": 1, "bbox": [ 450, 226, 30, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 3907, "image_id": 2120, "category_id": 1, "bbox": [ 497, 225, 35, 110 ], "height": 110, "occlusion": 0, "ignore": 0 }, { "id": 3908, "image_id": 2120, "category_id": 1, "bbox": [ 470, 223, 34, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 3909, "image_id": 2120, "category_id": 1, "bbox": [ 317, 218, 30, 50 ], "height": 50, "occlusion": 1, "ignore": 0 }, { "id": 3910, "image_id": 2120, "category_id": 1, "bbox": [ 357, 218, 26, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 3911, "image_id": 2120, "category_id": 1, "bbox": [ 377, 221, 24, 53 ], "height": 53, "occlusion": 1, "ignore": 0 }, { "id": 3912, "image_id": 2121, "category_id": 1, "bbox": [ 581, 229, 55, 160 ], "height": 160, "occlusion": 0, "ignore": 0 }, { "id": 3913, "image_id": 2121, "category_id": 1, "bbox": [ 463, 228, 33, 116 ], "height": 116, "occlusion": 1, "ignore": 0 }, { "id": 3914, "image_id": 2121, "category_id": 1, "bbox": [ 531, 224, 47, 149 ], "height": 149, "occlusion": 0, "ignore": 0 }, { "id": 3915, "image_id": 2121, "category_id": 1, "bbox": [ 487, 224, 37, 132 ], "height": 132, "occlusion": 0, "ignore": 0 }, { "id": 3916, "image_id": 2121, "category_id": 1, "bbox": [ 302, 218, 29, 61 ], "height": 61, "occlusion": 1, "ignore": 0 }, { "id": 3917, "image_id": 2121, "category_id": 1, "bbox": [ 343, 214, 27, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 3918, "image_id": 2121, "category_id": 1, "bbox": [ 365, 223, 23, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 3919, "image_id": 2121, "category_id": 1, "bbox": [ 389, 216, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 3920, "image_id": 2121, "category_id": 1, "bbox": [ 450, 218, 16, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 3921, "image_id": 2122, "category_id": 1, "bbox": [ 474, 232, 63, 169 ], "height": 169, "occlusion": 0, "ignore": 0 }, { "id": 3922, "image_id": 2122, "category_id": 1, "bbox": [ 516, 230, 58, 194 ], "height": 194, "occlusion": 0, "ignore": 0 }, { "id": 3923, "image_id": 2122, "category_id": 1, "bbox": [ 266, 222, 28, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3924, "image_id": 2122, "category_id": 1, "bbox": [ 582, 231, 57, 194 ], "height": 194, "occlusion": 0, "ignore": 0 }, { "id": 3925, "image_id": 2122, "category_id": 1, "bbox": [ 334, 219, 28, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 3926, "image_id": 2122, "category_id": 1, "bbox": [ 354, 227, 25, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 3927, "image_id": 2122, "category_id": 1, "bbox": [ 377, 219, 19, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 3928, "image_id": 2122, "category_id": 1, "bbox": [ 313, 230, 22, 39 ], "height": 39, "occlusion": 2, "ignore": 0 }, { "id": 3929, "image_id": 2122, "category_id": 1, "bbox": [ 90, 199, 25, 57 ], "height": 57, "occlusion": 2, "ignore": 0 }, { "id": 3930, "image_id": 2122, "category_id": 1, "bbox": [ 420, 214, 30, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 3931, "image_id": 2123, "category_id": 1, "bbox": [ 542, 257, 56, 184 ], "height": 184, "occlusion": 0, "ignore": 0 }, { "id": 3932, "image_id": 2123, "category_id": 1, "bbox": [ 231, 220, 43, 108 ], "height": 108, "occlusion": 0, "ignore": 0 }, { "id": 3933, "image_id": 2123, "category_id": 1, "bbox": [ 580, 272, 60, 236 ], "height": 236, "occlusion": 2, "ignore": 0 }, { "id": 3934, "image_id": 2123, "category_id": 1, "bbox": [ 276, 228, 39, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 3935, "image_id": 2123, "category_id": 1, "bbox": [ 326, 218, 28, 65 ], "height": 65, "occlusion": 1, "ignore": 0 }, { "id": 3936, "image_id": 2123, "category_id": 1, "bbox": [ 348, 225, 24, 49 ], "height": 49, "occlusion": 2, "ignore": 0 }, { "id": 3937, "image_id": 2123, "category_id": 1, "bbox": [ 375, 215, 24, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 3938, "image_id": 2123, "category_id": 1, "bbox": [ 403, 216, 31, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3939, "image_id": 2123, "category_id": 1, "bbox": [ 3, 196, 37, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 3940, "image_id": 2124, "category_id": 1, "bbox": [ 171, 218, 61, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 3941, "image_id": 2124, "category_id": 1, "bbox": [ 261, 232, 30, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 3942, "image_id": 2124, "category_id": 1, "bbox": [ 295, 220, 34, 92 ], "height": 92, "occlusion": 0, "ignore": 0 }, { "id": 3943, "image_id": 2124, "category_id": 1, "bbox": [ 319, 229, 31, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 3944, "image_id": 2124, "category_id": 1, "bbox": [ 368, 214, 25, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 3945, "image_id": 2124, "category_id": 1, "bbox": [ 393, 219, 26, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 3946, "image_id": 2125, "category_id": 1, "bbox": [ 32, 212, 83, 214 ], "height": 214, "occlusion": 0, "ignore": 0 }, { "id": 3947, "image_id": 2125, "category_id": 1, "bbox": [ 183, 236, 34, 113 ], "height": 113, "occlusion": 0, "ignore": 0 }, { "id": 3948, "image_id": 2125, "category_id": 1, "bbox": [ 228, 221, 33, 103 ], "height": 103, "occlusion": 0, "ignore": 0 }, { "id": 3949, "image_id": 2125, "category_id": 1, "bbox": [ 253, 231, 32, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 3950, "image_id": 2125, "category_id": 1, "bbox": [ 342, 217, 34, 51 ], "height": 51, "occlusion": 0, "ignore": 1 }, { "id": 3951, "image_id": 2126, "category_id": 1, "bbox": [ 49, 243, 56, 149 ], "height": 149, "occlusion": 0, "ignore": 0 }, { "id": 3952, "image_id": 2126, "category_id": 1, "bbox": [ 124, 218, 41, 126 ], "height": 126, "occlusion": 0, "ignore": 0 }, { "id": 3953, "image_id": 2126, "category_id": 1, "bbox": [ 168, 234, 36, 105 ], "height": 105, "occlusion": 0, "ignore": 0 }, { "id": 3954, "image_id": 2126, "category_id": 1, "bbox": [ 287, 219, 24, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 3955, "image_id": 2126, "category_id": 1, "bbox": [ 304, 214, 24, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 3956, "image_id": 2126, "category_id": 1, "bbox": [ 233, 219, 21, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 3957, "image_id": 2127, "category_id": 1, "bbox": [ 56, 218, 52, 150 ], "height": 150, "occlusion": 0, "ignore": 0 }, { "id": 3958, "image_id": 2127, "category_id": 1, "bbox": [ 105, 231, 46, 130 ], "height": 130, "occlusion": 0, "ignore": 0 }, { "id": 3959, "image_id": 2127, "category_id": 1, "bbox": [ 244, 212, 103, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 3960, "image_id": 2128, "category_id": 1, "bbox": [ 47, 234, 57, 173 ], "height": 173, "occlusion": 0, "ignore": 0 }, { "id": 3961, "image_id": 2128, "category_id": 1, "bbox": [ 361, 221, 27, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 3962, "image_id": 2128, "category_id": 1, "bbox": [ 1, 217, 60, 208 ], "height": 208, "occlusion": 1, "ignore": 0 }, { "id": 3963, "image_id": 2128, "category_id": 1, "bbox": [ 249, 210, 88, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 3964, "image_id": 2129, "category_id": 1, "bbox": [ 394, 229, 33, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 3965, "image_id": 2129, "category_id": 1, "bbox": [ 1, 242, 46, 236 ], "height": 236, "occlusion": 1, "ignore": 0 }, { "id": 3966, "image_id": 2129, "category_id": 1, "bbox": [ 222, 219, 68, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 3967, "image_id": 2129, "category_id": 1, "bbox": [ 295, 214, 46, 62 ], "height": 62, "occlusion": 0, "ignore": 1 }, { "id": 3968, "image_id": 2130, "category_id": 1, "bbox": [ 427, 233, 50, 139 ], "height": 139, "occlusion": 0, "ignore": 0 }, { "id": 3969, "image_id": 2130, "category_id": 1, "bbox": [ 304, 228, 26, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 3970, "image_id": 2130, "category_id": 1, "bbox": [ 320, 223, 26, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 3971, "image_id": 2130, "category_id": 1, "bbox": [ 178, 221, 50, 58 ], "height": 58, "occlusion": 1, "ignore": 1 }, { "id": 3972, "image_id": 2130, "category_id": 1, "bbox": [ 251, 220, 29, 51 ], "height": 51, "occlusion": 1, "ignore": 1 }, { "id": 3973, "image_id": 2131, "category_id": 1, "bbox": [ 521, 240, 71, 200 ], "height": 200, "occlusion": 0, "ignore": 0 }, { "id": 3974, "image_id": 2131, "category_id": 1, "bbox": [ 121, 218, 36, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 3975, "image_id": 2131, "category_id": 1, "bbox": [ 324, 228, 32, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 3976, "image_id": 2131, "category_id": 1, "bbox": [ 349, 223, 22, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 3977, "image_id": 2131, "category_id": 1, "bbox": [ 155, 223, 37, 105 ], "height": 105, "occlusion": 1, "ignore": 0 }, { "id": 3978, "image_id": 2131, "category_id": 1, "bbox": [ 3, 212, 37, 88 ], "height": 88, "occlusion": 0, "ignore": 1 }, { "id": 3979, "image_id": 2131, "category_id": 1, "bbox": [ 263, 217, 28, 51 ], "height": 51, "occlusion": 1, "ignore": 1 }, { "id": 3980, "image_id": 2132, "category_id": 1, "bbox": [ 74, 219, 48, 178 ], "height": 178, "occlusion": 0, "ignore": 0 }, { "id": 3981, "image_id": 2132, "category_id": 1, "bbox": [ 123, 236, 30, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3982, "image_id": 2132, "category_id": 1, "bbox": [ 147, 233, 28, 93 ], "height": 93, "occlusion": 0, "ignore": 0 }, { "id": 3983, "image_id": 2132, "category_id": 1, "bbox": [ 345, 227, 35, 73 ], "height": 73, "occlusion": 0, "ignore": 0 }, { "id": 3984, "image_id": 2132, "category_id": 1, "bbox": [ 366, 222, 26, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 3985, "image_id": 2132, "category_id": 1, "bbox": [ 278, 217, 30, 59 ], "height": 59, "occlusion": 1, "ignore": 1 }, { "id": 3986, "image_id": 2132, "category_id": 1, "bbox": [ 553, 231, 33, 49 ], "height": 49, "occlusion": 1, "ignore": 1 }, { "id": 3987, "image_id": 2133, "category_id": 1, "bbox": [ 69, 246, 48, 132 ], "height": 132, "occlusion": 0, "ignore": 0 }, { "id": 3988, "image_id": 2133, "category_id": 1, "bbox": [ 112, 241, 53, 138 ], "height": 138, "occlusion": 0, "ignore": 0 }, { "id": 3989, "image_id": 2133, "category_id": 1, "bbox": [ 360, 230, 34, 87 ], "height": 87, "occlusion": 0, "ignore": 0 }, { "id": 3990, "image_id": 2133, "category_id": 1, "bbox": [ 382, 223, 33, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 3991, "image_id": 2133, "category_id": 1, "bbox": [ 3, 232, 43, 279 ], "height": 279, "occlusion": 2, "ignore": 0 }, { "id": 3992, "image_id": 2133, "category_id": 1, "bbox": [ 289, 220, 33, 61 ], "height": 61, "occlusion": 0, "ignore": 1 }, { "id": 3993, "image_id": 2134, "category_id": 1, "bbox": [ 16, 254, 82, 231 ], "height": 231, "occlusion": 0, "ignore": 0 }, { "id": 3994, "image_id": 2134, "category_id": 1, "bbox": [ 375, 227, 33, 91 ], "height": 91, "occlusion": 0, "ignore": 0 }, { "id": 3995, "image_id": 2134, "category_id": 1, "bbox": [ 400, 224, 34, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 3996, "image_id": 2134, "category_id": 1, "bbox": [ 520, 228, 78, 55 ], "height": 55, "occlusion": 2, "ignore": 1 }, { "id": 3997, "image_id": 2134, "category_id": 1, "bbox": [ 295, 219, 34, 57 ], "height": 57, "occlusion": 1, "ignore": 1 }, { "id": 3998, "image_id": 2134, "category_id": 1, "bbox": [ 341, 215, 22, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 3999, "image_id": 2135, "category_id": 1, "bbox": [ 399, 232, 36, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 4000, "image_id": 2135, "category_id": 1, "bbox": [ 423, 225, 30, 97 ], "height": 97, "occlusion": 0, "ignore": 0 }, { "id": 4001, "image_id": 2135, "category_id": 1, "bbox": [ 520, 231, 77, 68 ], "height": 68, "occlusion": 2, "ignore": 1 }, { "id": 4002, "image_id": 2135, "category_id": 1, "bbox": [ 303, 219, 25, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 4003, "image_id": 2135, "category_id": 1, "bbox": [ 350, 215, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 4004, "image_id": 2135, "category_id": 1, "bbox": [ 316, 220, 26, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 4005, "image_id": 2136, "category_id": 1, "bbox": [ 431, 233, 39, 101 ], "height": 101, "occlusion": 0, "ignore": 0 }, { "id": 4006, "image_id": 2136, "category_id": 1, "bbox": [ 457, 228, 29, 95 ], "height": 95, "occlusion": 1, "ignore": 0 }, { "id": 4007, "image_id": 2136, "category_id": 1, "bbox": [ 519, 240, 45, 109 ], "height": 109, "occlusion": 1, "ignore": 0 }, { "id": 4008, "image_id": 2136, "category_id": 1, "bbox": [ 553, 248, 37, 89 ], "height": 89, "occlusion": 2, "ignore": 0 }, { "id": 4009, "image_id": 2136, "category_id": 1, "bbox": [ 580, 233, 25, 73 ], "height": 73, "occlusion": 2, "ignore": 0 }, { "id": 4010, "image_id": 2136, "category_id": 1, "bbox": [ 614, 237, 24, 67 ], "height": 67, "occlusion": 1, "ignore": 0 }, { "id": 4011, "image_id": 2136, "category_id": 1, "bbox": [ 336, 224, 25, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 4012, "image_id": 2136, "category_id": 1, "bbox": [ 321, 221, 26, 71 ], "height": 71, "occlusion": 0, "ignore": 0 }, { "id": 4013, "image_id": 2136, "category_id": 1, "bbox": [ 366, 220, 23, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 4014, "image_id": 2137, "category_id": 1, "bbox": [ 491, 230, 37, 107 ], "height": 107, "occlusion": 0, "ignore": 0 }, { "id": 4015, "image_id": 2137, "category_id": 1, "bbox": [ 514, 225, 35, 108 ], "height": 108, "occlusion": 1, "ignore": 0 }, { "id": 4016, "image_id": 2137, "category_id": 1, "bbox": [ 579, 249, 44, 157 ], "height": 157, "occlusion": 0, "ignore": 0 }, { "id": 4017, "image_id": 2137, "category_id": 1, "bbox": [ 391, 228, 25, 69 ], "height": 69, "occlusion": 0, "ignore": 0 }, { "id": 4018, "image_id": 2137, "category_id": 1, "bbox": [ 369, 229, 20, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 4019, "image_id": 2137, "category_id": 1, "bbox": [ 470, 224, 22, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 4020, "image_id": 2137, "category_id": 1, "bbox": [ 409, 221, 20, 31 ], "height": 31, "occlusion": 0, "ignore": 1 }, { "id": 4021, "image_id": 2138, "category_id": 1, "bbox": [ 539, 233, 33, 120 ], "height": 120, "occlusion": 0, "ignore": 0 }, { "id": 4022, "image_id": 2138, "category_id": 1, "bbox": [ 559, 229, 31, 120 ], "height": 120, "occlusion": 2, "ignore": 0 }, { "id": 4023, "image_id": 2138, "category_id": 1, "bbox": [ 421, 229, 28, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 4024, "image_id": 2138, "category_id": 1, "bbox": [ 401, 231, 30, 83 ], "height": 83, "occlusion": 0, "ignore": 0 }, { "id": 4025, "image_id": 2138, "category_id": 1, "bbox": [ 503, 227, 26, 40 ], "height": 40, "occlusion": 0, "ignore": 1 }, { "id": 4026, "image_id": 2139, "category_id": 1, "bbox": [ 527, 232, 43, 138 ], "height": 138, "occlusion": 0, "ignore": 0 }, { "id": 4027, "image_id": 2139, "category_id": 1, "bbox": [ 409, 226, 35, 106 ], "height": 106, "occlusion": 0, "ignore": 0 }, { "id": 4028, "image_id": 2139, "category_id": 1, "bbox": [ 379, 231, 27, 95 ], "height": 95, "occlusion": 0, "ignore": 0 }, { "id": 4029, "image_id": 2139, "category_id": 1, "bbox": [ 481, 228, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4030, "image_id": 2139, "category_id": 1, "bbox": [ 498, 231, 21, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 4031, "image_id": 2140, "category_id": 1, "bbox": [ 463, 235, 55, 172 ], "height": 172, "occlusion": 0, "ignore": 0 }, { "id": 4032, "image_id": 2140, "category_id": 1, "bbox": [ 360, 237, 39, 123 ], "height": 123, "occlusion": 0, "ignore": 0 }, { "id": 4033, "image_id": 2140, "category_id": 1, "bbox": [ 310, 231, 41, 122 ], "height": 122, "occlusion": 0, "ignore": 0 }, { "id": 4034, "image_id": 2140, "category_id": 1, "bbox": [ 437, 231, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 4035, "image_id": 2141, "category_id": 1, "bbox": [ 276, 227, 53, 146 ], "height": 146, "occlusion": 1, "ignore": 0 }, { "id": 4036, "image_id": 2141, "category_id": 1, "bbox": [ 207, 218, 46, 152 ], "height": 152, "occlusion": 0, "ignore": 0 }, { "id": 4037, "image_id": 2141, "category_id": 1, "bbox": [ 303, 221, 62, 207 ], "height": 207, "occlusion": 0, "ignore": 0 }, { "id": 4038, "image_id": 2141, "category_id": 1, "bbox": [ 361, 216, 20, 45 ], "height": 45, "occlusion": 2, "ignore": 0 }, { "id": 4039, "image_id": 2141, "category_id": 1, "bbox": [ 381, 218, 18, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 4040, "image_id": 2142, "category_id": 1, "bbox": [ 57, 222, 67, 190 ], "height": 190, "occlusion": 0, "ignore": 0 }, { "id": 4041, "image_id": 2142, "category_id": 1, "bbox": [ 1, 215, 54, 195 ], "height": 195, "occlusion": 1, "ignore": 0 }, { "id": 4042, "image_id": 2142, "category_id": 1, "bbox": [ 196, 212, 23, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 4043, "image_id": 2142, "category_id": 1, "bbox": [ 216, 221, 24, 50 ], "height": 50, "occlusion": 0, "ignore": 0 }, { "id": 4044, "image_id": 2143, "category_id": 1, "bbox": [ 484, 246, 51, 141 ], "height": 141, "occlusion": 0, "ignore": 0 }, { "id": 4045, "image_id": 2144, "category_id": 1, "bbox": [ 300, 244, 66, 180 ], "height": 180, "occlusion": 0, "ignore": 0 }, { "id": 4046, "image_id": 2145, "category_id": 1, "bbox": [ 3, 241, 91, 260 ], "height": 260, "occlusion": 0, "ignore": 0 }, { "id": 4047, "image_id": 2146, "category_id": 1, "bbox": [ 580, 237, 42, 104 ], "height": 104, "occlusion": 0, "ignore": 0 }, { "id": 4048, "image_id": 2146, "category_id": 1, "bbox": [ 615, 233, 25, 106 ], "height": 106, "occlusion": 1, "ignore": 0 }, { "id": 4049, "image_id": 2147, "category_id": 1, "bbox": [ 477, 233, 36, 115 ], "height": 115, "occlusion": 0, "ignore": 0 }, { "id": 4050, "image_id": 2147, "category_id": 1, "bbox": [ 513, 232, 38, 114 ], "height": 114, "occlusion": 0, "ignore": 0 }, { "id": 4051, "image_id": 2147, "category_id": 1, "bbox": [ 434, 230, 26, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 4052, "image_id": 2148, "category_id": 1, "bbox": [ 334, 235, 43, 117 ], "height": 117, "occlusion": 0, "ignore": 0 }, { "id": 4053, "image_id": 2148, "category_id": 1, "bbox": [ 386, 234, 33, 119 ], "height": 119, "occlusion": 0, "ignore": 0 }, { "id": 4054, "image_id": 2148, "category_id": 1, "bbox": [ 319, 229, 23, 43 ], "height": 43, "occlusion": 1, "ignore": 0 }, { "id": 4055, "image_id": 2149, "category_id": 1, "bbox": [ 204, 238, 49, 129 ], "height": 129, "occlusion": 0, "ignore": 0 }, { "id": 4056, "image_id": 2149, "category_id": 1, "bbox": [ 249, 234, 41, 132 ], "height": 132, "occlusion": 0, "ignore": 0 }, { "id": 4057, "image_id": 2150, "category_id": 1, "bbox": [ 113, 244, 62, 158 ], "height": 158, "occlusion": 0, "ignore": 0 }, { "id": 4058, "image_id": 2150, "category_id": 1, "bbox": [ 172, 241, 59, 160 ], "height": 160, "occlusion": 0, "ignore": 0 }, { "id": 4059, "image_id": 2151, "category_id": 1, "bbox": [ 1, 245, 68, 201 ], "height": 201, "occlusion": 0, "ignore": 0 }, { "id": 4060, "image_id": 2151, "category_id": 1, "bbox": [ 64, 238, 78, 216 ], "height": 216, "occlusion": 0, "ignore": 0 }, { "id": 4061, "image_id": 2151, "category_id": 1, "bbox": [ 122, 231, 41, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 4062, "image_id": 2152, "category_id": 1, "bbox": [ 58, 238, 46, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 4063, "image_id": 2152, "category_id": 1, "bbox": [ 59, 216, 39, 43 ], "height": 43, "occlusion": 0, "ignore": 1 }, { "id": 4064, "image_id": 2153, "category_id": 1, "bbox": [ 3, 250, 72, 106 ], "height": 106, "occlusion": 0, "ignore": 0 }, { "id": 4065, "image_id": 2153, "category_id": 1, "bbox": [ 50, 220, 38, 65 ], "height": 65, "occlusion": 0, "ignore": 1 }, { "id": 4066, "image_id": 2153, "category_id": 1, "bbox": [ 288, 214, 28, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 4067, "image_id": 2154, "category_id": 1, "bbox": [ 42, 216, 48, 57 ], "height": 57, "occlusion": 0, "ignore": 1 }, { "id": 4068, "image_id": 2154, "category_id": 1, "bbox": [ 313, 213, 46, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 4069, "image_id": 2155, "category_id": 1, "bbox": [ 306, 215, 46, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 4070, "image_id": 2156, "category_id": 1, "bbox": [ 323, 222, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 0 }, { "id": 4071, "image_id": 2156, "category_id": 1, "bbox": [ 335, 223, 16, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 4072, "image_id": 2156, "category_id": 1, "bbox": [ 296, 220, 25, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 4073, "image_id": 2157, "category_id": 1, "bbox": [ 317, 219, 17, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 4074, "image_id": 2157, "category_id": 1, "bbox": [ 329, 220, 19, 40 ], "height": 40, "occlusion": 0, "ignore": 0 }, { "id": 4075, "image_id": 2158, "category_id": 1, "bbox": [ 318, 225, 18, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 4076, "image_id": 2158, "category_id": 1, "bbox": [ 336, 226, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4077, "image_id": 2158, "category_id": 1, "bbox": [ 273, 217, 15, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 4078, "image_id": 2158, "category_id": 1, "bbox": [ 292, 217, 14, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 4079, "image_id": 2159, "category_id": 1, "bbox": [ 341, 220, 25, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 4080, "image_id": 2159, "category_id": 1, "bbox": [ 365, 220, 24, 61 ], "height": 61, "occlusion": 0, "ignore": 0 }, { "id": 4081, "image_id": 2159, "category_id": 1, "bbox": [ 290, 214, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 1 }, { "id": 4082, "image_id": 2159, "category_id": 1, "bbox": [ 305, 214, 15, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 4083, "image_id": 2160, "category_id": 1, "bbox": [ 393, 220, 22, 76 ], "height": 76, "occlusion": 0, "ignore": 0 }, { "id": 4084, "image_id": 2160, "category_id": 1, "bbox": [ 414, 224, 30, 77 ], "height": 77, "occlusion": 0, "ignore": 0 }, { "id": 4085, "image_id": 2160, "category_id": 1, "bbox": [ 372, 222, 18, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 4086, "image_id": 2160, "category_id": 1, "bbox": [ 311, 213, 13, 31 ], "height": 31, "occlusion": 0, "ignore": 0 }, { "id": 4087, "image_id": 2160, "category_id": 1, "bbox": [ 329, 213, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 4088, "image_id": 2161, "category_id": 1, "bbox": [ 445, 241, 40, 121 ], "height": 121, "occlusion": 0, "ignore": 0 }, { "id": 4089, "image_id": 2161, "category_id": 1, "bbox": [ 478, 250, 38, 107 ], "height": 107, "occlusion": 1, "ignore": 0 }, { "id": 4090, "image_id": 2161, "category_id": 1, "bbox": [ 397, 238, 21, 47 ], "height": 47, "occlusion": 1, "ignore": 0 }, { "id": 4091, "image_id": 2161, "category_id": 1, "bbox": [ 320, 232, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4092, "image_id": 2161, "category_id": 1, "bbox": [ 343, 233, 20, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 4093, "image_id": 2162, "category_id": 1, "bbox": [ 425, 231, 20, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4094, "image_id": 2162, "category_id": 1, "bbox": [ 573, 232, 57, 209 ], "height": 209, "occlusion": 1, "ignore": 0 }, { "id": 4095, "image_id": 2162, "category_id": 1, "bbox": [ 331, 221, 24, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 4096, "image_id": 2162, "category_id": 1, "bbox": [ 361, 224, 22, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4097, "image_id": 2163, "category_id": 1, "bbox": [ 396, 235, 24, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 4098, "image_id": 2163, "category_id": 1, "bbox": [ 326, 230, 21, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 4099, "image_id": 2163, "category_id": 1, "bbox": [ 292, 225, 28, 58 ], "height": 58, "occlusion": 0, "ignore": 0 }, { "id": 4100, "image_id": 2164, "category_id": 1, "bbox": [ 336, 234, 29, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 4101, "image_id": 2164, "category_id": 1, "bbox": [ 257, 226, 25, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 4102, "image_id": 2164, "category_id": 1, "bbox": [ 209, 222, 29, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 4103, "image_id": 2165, "category_id": 1, "bbox": [ 282, 224, 34, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 4104, "image_id": 2165, "category_id": 1, "bbox": [ 190, 213, 31, 85 ], "height": 85, "occlusion": 0, "ignore": 0 }, { "id": 4105, "image_id": 2165, "category_id": 1, "bbox": [ 130, 204, 30, 103 ], "height": 103, "occlusion": 1, "ignore": 0 }, { "id": 4106, "image_id": 2165, "category_id": 1, "bbox": [ 424, 213, 26, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 4107, "image_id": 2166, "category_id": 1, "bbox": [ 248, 243, 33, 85 ], "height": 85, "occlusion": 1, "ignore": 0 }, { "id": 4108, "image_id": 2166, "category_id": 1, "bbox": [ 130, 227, 39, 116 ], "height": 116, "occlusion": 0, "ignore": 0 }, { "id": 4109, "image_id": 2166, "category_id": 1, "bbox": [ 422, 233, 27, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 4110, "image_id": 2166, "category_id": 1, "bbox": [ 312, 220, 18, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 4111, "image_id": 2166, "category_id": 1, "bbox": [ 48, 218, 36, 115 ], "height": 115, "occlusion": 2, "ignore": 0 }, { "id": 4112, "image_id": 2167, "category_id": 1, "bbox": [ 182, 244, 43, 112 ], "height": 112, "occlusion": 0, "ignore": 0 }, { "id": 4113, "image_id": 2167, "category_id": 1, "bbox": [ 5, 221, 65, 191 ], "height": 191, "occlusion": 0, "ignore": 0 }, { "id": 4114, "image_id": 2167, "category_id": 1, "bbox": [ 406, 228, 26, 74 ], "height": 74, "occlusion": 0, "ignore": 0 }, { "id": 4115, "image_id": 2167, "category_id": 1, "bbox": [ 314, 220, 18, 42 ], "height": 42, "occlusion": 0, "ignore": 0 }, { "id": 4116, "image_id": 2168, "category_id": 1, "bbox": [ 64, 237, 55, 166 ], "height": 166, "occlusion": 0, "ignore": 0 }, { "id": 4117, "image_id": 2168, "category_id": 1, "bbox": [ 373, 218, 27, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 4118, "image_id": 2169, "category_id": 1, "bbox": [ 323, 231, 32, 94 ], "height": 94, "occlusion": 0, "ignore": 0 }, { "id": 4119, "image_id": 2170, "category_id": 1, "bbox": [ 399, 228, 39, 128 ], "height": 128, "occlusion": 0, "ignore": 0 }, { "id": 4120, "image_id": 2171, "category_id": 1, "bbox": [ 585, 243, 49, 166 ], "height": 166, "occlusion": 0, "ignore": 0 }, { "id": 4121, "image_id": 2172, "category_id": 1, "bbox": [ 382, 222, 30, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 4122, "image_id": 2173, "category_id": 1, "bbox": [ 386, 222, 29, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 4123, "image_id": 2174, "category_id": 1, "bbox": [ 548, 239, 42, 118 ], "height": 118, "occlusion": 0, "ignore": 0 }, { "id": 4124, "image_id": 2174, "category_id": 1, "bbox": [ 408, 228, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 1 }, { "id": 4125, "image_id": 2175, "category_id": 1, "bbox": [ 590, 214, 25, 46 ], "height": 46, "occlusion": 1, "ignore": 0 }, { "id": 4126, "image_id": 2175, "category_id": 1, "bbox": [ 483, 216, 25, 40 ], "height": 40, "occlusion": 2, "ignore": 1 }, { "id": 4127, "image_id": 2175, "category_id": 1, "bbox": [ 403, 211, 13, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 4128, "image_id": 2176, "category_id": 1, "bbox": [ 357, 213, 27, 32 ], "height": 32, "occlusion": 0, "ignore": 1 }, { "id": 4129, "image_id": 2176, "category_id": 1, "bbox": [ 317, 214, 16, 30 ], "height": 30, "occlusion": 0, "ignore": 1 }, { "id": 4130, "image_id": 2177, "category_id": 1, "bbox": [ 398, 221, 17, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 4131, "image_id": 2177, "category_id": 1, "bbox": [ 435, 225, 25, 37 ], "height": 37, "occlusion": 0, "ignore": 1 }, { "id": 4132, "image_id": 2177, "category_id": 1, "bbox": [ 347, 227, 15, 26 ], "height": 26, "occlusion": 0, "ignore": 1 }, { "id": 4133, "image_id": 2178, "category_id": 1, "bbox": [ 375, 224, 17, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 4134, "image_id": 2178, "category_id": 1, "bbox": [ 474, 222, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 4135, "image_id": 2178, "category_id": 1, "bbox": [ 486, 226, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4136, "image_id": 2178, "category_id": 1, "bbox": [ 421, 221, 25, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 4137, "image_id": 2178, "category_id": 1, "bbox": [ 222, 218, 19, 38 ], "height": 38, "occlusion": 0, "ignore": 0 }, { "id": 4138, "image_id": 2179, "category_id": 1, "bbox": [ 520, 224, 24, 57 ], "height": 57, "occlusion": 0, "ignore": 0 }, { "id": 4139, "image_id": 2179, "category_id": 1, "bbox": [ 535, 229, 19, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 4140, "image_id": 2179, "category_id": 1, "bbox": [ 378, 223, 23, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4141, "image_id": 2179, "category_id": 1, "bbox": [ 566, 224, 24, 53 ], "height": 53, "occlusion": 0, "ignore": 0 }, { "id": 4142, "image_id": 2179, "category_id": 1, "bbox": [ 438, 220, 26, 43 ], "height": 43, "occlusion": 0, "ignore": 0 }, { "id": 4143, "image_id": 2179, "category_id": 1, "bbox": [ 209, 220, 18, 41 ], "height": 41, "occlusion": 0, "ignore": 0 }, { "id": 4144, "image_id": 2180, "category_id": 1, "bbox": [ 394, 222, 26, 54 ], "height": 54, "occlusion": 0, "ignore": 0 }, { "id": 4145, "image_id": 2180, "category_id": 1, "bbox": [ 460, 220, 29, 39 ], "height": 39, "occlusion": 0, "ignore": 0 }, { "id": 4146, "image_id": 2180, "category_id": 1, "bbox": [ 180, 217, 26, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 4147, "image_id": 2181, "category_id": 1, "bbox": [ 160, 221, 30, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4148, "image_id": 2181, "category_id": 1, "bbox": [ 422, 224, 32, 70 ], "height": 70, "occlusion": 0, "ignore": 0 }, { "id": 4149, "image_id": 2181, "category_id": 1, "bbox": [ 509, 220, 24, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 4150, "image_id": 2181, "category_id": 1, "bbox": [ 523, 218, 21, 52 ], "height": 52, "occlusion": 0, "ignore": 0 }, { "id": 4151, "image_id": 2181, "category_id": 1, "bbox": [ 234, 217, 17, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 4152, "image_id": 2181, "category_id": 1, "bbox": [ 336, 222, 15, 34 ], "height": 34, "occlusion": 0, "ignore": 0 }, { "id": 4153, "image_id": 2181, "category_id": 1, "bbox": [ 39, 207, 26, 50 ], "height": 50, "occlusion": 2, "ignore": 0 }, { "id": 4154, "image_id": 2182, "category_id": 1, "bbox": [ 129, 219, 25, 67 ], "height": 67, "occlusion": 0, "ignore": 0 }, { "id": 4155, "image_id": 2182, "category_id": 1, "bbox": [ 470, 222, 36, 88 ], "height": 88, "occlusion": 0, "ignore": 0 }, { "id": 4156, "image_id": 2182, "category_id": 1, "bbox": [ 584, 221, 29, 72 ], "height": 72, "occlusion": 0, "ignore": 0 }, { "id": 4157, "image_id": 2182, "category_id": 1, "bbox": [ 602, 217, 28, 75 ], "height": 75, "occlusion": 1, "ignore": 0 }, { "id": 4158, "image_id": 2182, "category_id": 1, "bbox": [ 539, 210, 19, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 4159, "image_id": 2182, "category_id": 1, "bbox": [ 244, 212, 18, 32 ], "height": 32, "occlusion": 0, "ignore": 0 }, { "id": 4160, "image_id": 2183, "category_id": 1, "bbox": [ 41, 217, 53, 102 ], "height": 102, "occlusion": 0, "ignore": 1 }, { "id": 4161, "image_id": 2183, "category_id": 1, "bbox": [ 554, 214, 27, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 4162, "image_id": 2183, "category_id": 1, "bbox": [ 592, 241, 48, 135 ], "height": 135, "occlusion": 0, "ignore": 0 }, { "id": 4163, "image_id": 2183, "category_id": 1, "bbox": [ 262, 214, 21, 35 ], "height": 35, "occlusion": 0, "ignore": 0 }, { "id": 4164, "image_id": 2184, "category_id": 1, "bbox": [ 226, 215, 31, 60 ], "height": 60, "occlusion": 0, "ignore": 0 }, { "id": 4165, "image_id": 2184, "category_id": 1, "bbox": [ 573, 210, 25, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 4166, "image_id": 2185, "category_id": 1, "bbox": [ 142, 216, 34, 80 ], "height": 80, "occlusion": 0, "ignore": 0 }, { "id": 4167, "image_id": 2185, "category_id": 1, "bbox": [ 604, 209, 24, 65 ], "height": 65, "occlusion": 1, "ignore": 0 }, { "id": 4168, "image_id": 2186, "category_id": 1, "bbox": [ 1, 212, 63, 123 ], "height": 123, "occlusion": 0, "ignore": 0 }, { "id": 4169, "image_id": 2187, "category_id": 1, "bbox": [ 333, 217, 24, 48 ], "height": 48, "occlusion": 0, "ignore": 0 }, { "id": 4170, "image_id": 2188, "category_id": 1, "bbox": [ 358, 226, 24, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4171, "image_id": 2189, "category_id": 1, "bbox": [ 381, 203, 26, 56 ], "height": 56, "occlusion": 0, "ignore": 0 }, { "id": 4172, "image_id": 2190, "category_id": 1, "bbox": [ 409, 223, 30, 69 ], "height": 69, "occlusion": 1, "ignore": 0 }, { "id": 4173, "image_id": 2191, "category_id": 1, "bbox": [ 440, 216, 35, 82 ], "height": 82, "occlusion": 0, "ignore": 0 }, { "id": 4174, "image_id": 2191, "category_id": 1, "bbox": [ 400, 222, 26, 62 ], "height": 62, "occlusion": 2, "ignore": 0 }, { "id": 4175, "image_id": 2191, "category_id": 1, "bbox": [ 537, 224, 24, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 4176, "image_id": 2192, "category_id": 1, "bbox": [ 517, 234, 33, 78 ], "height": 78, "occlusion": 0, "ignore": 0 }, { "id": 4177, "image_id": 2192, "category_id": 1, "bbox": [ 464, 239, 30, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 4178, "image_id": 2193, "category_id": 1, "bbox": [ 594, 226, 38, 89 ], "height": 89, "occlusion": 0, "ignore": 0 }, { "id": 4179, "image_id": 2193, "category_id": 1, "bbox": [ 514, 234, 36, 86 ], "height": 86, "occlusion": 1, "ignore": 0 }, { "id": 4180, "image_id": 2194, "category_id": 1, "bbox": [ 36, 192, 113, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4181, "image_id": 2194, "category_id": 1, "bbox": [ 537, 215, 24, 56 ], "height": 56, "occlusion": 2, "ignore": 0 }, { "id": 4182, "image_id": 2195, "category_id": 1, "bbox": [ 4, 188, 108, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4183, "image_id": 2195, "category_id": 1, "bbox": [ 592, 211, 28, 62 ], "height": 62, "occlusion": 1, "ignore": 0 }, { "id": 4184, "image_id": 2196, "category_id": 1, "bbox": [ 1, 187, 77, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4185, "image_id": 2197, "category_id": 1, "bbox": [ 1, 193, 50, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4186, "image_id": 2201, "category_id": 1, "bbox": [ 596, 221, 34, 77 ], "height": 77, "occlusion": 1, "ignore": 0 }, { "id": 4187, "image_id": 2202, "category_id": 1, "bbox": [ 488, 216, 37, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 4188, "image_id": 2203, "category_id": 1, "bbox": [ 587, 218, 37, 90 ], "height": 90, "occlusion": 1, "ignore": 0 }, { "id": 4189, "image_id": 2203, "category_id": 1, "bbox": [ 518, 217, 35, 83 ], "height": 83, "occlusion": 1, "ignore": 0 }, { "id": 4190, "image_id": 2212, "category_id": 1, "bbox": [ 479, 221, 18, 33 ], "height": 33, "occlusion": 0, "ignore": 1 }, { "id": 4191, "image_id": 2213, "category_id": 1, "bbox": [ 531, 224, 20, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 4192, "image_id": 2214, "category_id": 1, "bbox": [ 445, 215, 54, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 4193, "image_id": 2215, "category_id": 1, "bbox": [ 475, 223, 22, 51 ], "height": 51, "occlusion": 0, "ignore": 0 }, { "id": 4194, "image_id": 2215, "category_id": 1, "bbox": [ 464, 222, 25, 48 ], "height": 48, "occlusion": 2, "ignore": 0 }, { "id": 4195, "image_id": 2215, "category_id": 1, "bbox": [ 562, 221, 28, 53 ], "height": 53, "occlusion": 0, "ignore": 1 }, { "id": 4196, "image_id": 2216, "category_id": 1, "bbox": [ 525, 222, 28, 65 ], "height": 65, "occlusion": 0, "ignore": 0 }, { "id": 4197, "image_id": 2216, "category_id": 1, "bbox": [ 511, 220, 29, 65 ], "height": 65, "occlusion": 2, "ignore": 0 }, { "id": 4198, "image_id": 2217, "category_id": 1, "bbox": [ 425, 215, 21, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 4199, "image_id": 2218, "category_id": 1, "bbox": [ 467, 222, 26, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 4200, "image_id": 2219, "category_id": 1, "bbox": [ 540, 223, 31, 65 ], "height": 65, "occlusion": 1, "ignore": 0 }, { "id": 4201, "image_id": 2219, "category_id": 1, "bbox": [ 318, 220, 19, 28 ], "height": 28, "occlusion": 0, "ignore": 1 }, { "id": 4202, "image_id": 2220, "category_id": 1, "bbox": [ 501, 220, 17, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4203, "image_id": 2220, "category_id": 1, "bbox": [ 476, 217, 22, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 4204, "image_id": 2221, "category_id": 1, "bbox": [ 542, 214, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 4205, "image_id": 2221, "category_id": 1, "bbox": [ 527, 213, 21, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 4206, "image_id": 2221, "category_id": 1, "bbox": [ 506, 215, 24, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 4207, "image_id": 2222, "category_id": 1, "bbox": [ 610, 217, 28, 68 ], "height": 68, "occlusion": 0, "ignore": 0 }, { "id": 4208, "image_id": 2222, "category_id": 1, "bbox": [ 590, 221, 28, 66 ], "height": 66, "occlusion": 0, "ignore": 0 }, { "id": 4209, "image_id": 2223, "category_id": 1, "bbox": [ 423, 199, 46, 49 ], "height": 49, "occlusion": 0, "ignore": 1 }, { "id": 4210, "image_id": 2224, "category_id": 1, "bbox": [ 455, 208, 57, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 4211, "image_id": 2225, "category_id": 1, "bbox": [ 489, 221, 57, 59 ], "height": 59, "occlusion": 0, "ignore": 1 }, { "id": 4212, "image_id": 2226, "category_id": 1, "bbox": [ 520, 229, 28, 59 ], "height": 59, "occlusion": 1, "ignore": 0 }, { "id": 4213, "image_id": 2226, "category_id": 1, "bbox": [ 553, 235, 26, 66 ], "height": 66, "occlusion": 1, "ignore": 0 }, { "id": 4214, "image_id": 2226, "category_id": 1, "bbox": [ 569, 232, 26, 63 ], "height": 63, "occlusion": 1, "ignore": 0 }, { "id": 4215, "image_id": 2226, "category_id": 1, "bbox": [ 389, 231, 38, 35 ], "height": 35, "occlusion": 0, "ignore": 1 }, { "id": 4216, "image_id": 2227, "category_id": 1, "bbox": [ 566, 193, 27, 70 ], "height": 70, "occlusion": 1, "ignore": 1 }, { "id": 4217, "image_id": 2227, "category_id": 1, "bbox": [ 594, 198, 27, 64 ], "height": 64, "occlusion": 1, "ignore": 0 }, { "id": 4218, "image_id": 2227, "category_id": 1, "bbox": [ 404, 183, 46, 50 ], "height": 50, "occlusion": 0, "ignore": 1 }, { "id": 4219, "image_id": 2228, "category_id": 1, "bbox": [ 422, 207, 33, 57 ], "height": 57, "occlusion": 1, "ignore": 0 }, { "id": 4220, "image_id": 2228, "category_id": 1, "bbox": [ 452, 216, 21, 46 ], "height": 46, "occlusion": 0, "ignore": 0 }, { "id": 4221, "image_id": 2228, "category_id": 1, "bbox": [ 466, 211, 20, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 4222, "image_id": 2229, "category_id": 1, "bbox": [ 528, 211, 30, 80 ], "height": 80, "occlusion": 1, "ignore": 0 }, { "id": 4223, "image_id": 2229, "category_id": 1, "bbox": [ 451, 216, 62, 47 ], "height": 47, "occlusion": 0, "ignore": 1 }, { "id": 4224, "image_id": 2229, "category_id": 1, "bbox": [ 510, 223, 26, 58 ], "height": 58, "occlusion": 1, "ignore": 0 }, { "id": 4225, "image_id": 2230, "category_id": 1, "bbox": [ 541, 217, 27, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 4226, "image_id": 2230, "category_id": 1, "bbox": [ 522, 217, 30, 55 ], "height": 55, "occlusion": 1, "ignore": 0 }, { "id": 4227, "image_id": 2230, "category_id": 1, "bbox": [ 600, 216, 40, 101 ], "height": 101, "occlusion": 2, "ignore": 0 }, { "id": 4228, "image_id": 2236, "category_id": 1, "bbox": [ 368, 220, 54, 36 ], "height": 36, "occlusion": 0, "ignore": 1 }, { "id": 4229, "image_id": 2237, "category_id": 1, "bbox": [ 359, 219, 20, 37 ], "height": 37, "occlusion": 0, "ignore": 0 }, { "id": 4230, "image_id": 2238, "category_id": 1, "bbox": [ 349, 210, 30, 46 ], "height": 46, "occlusion": 0, "ignore": 1 }, { "id": 4231, "image_id": 2239, "category_id": 1, "bbox": [ 407, 217, 20, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 4232, "image_id": 2239, "category_id": 1, "bbox": [ 422, 213, 21, 45 ], "height": 45, "occlusion": 1, "ignore": 0 }, { "id": 4233, "image_id": 2240, "category_id": 1, "bbox": [ 467, 223, 20, 44 ], "height": 44, "occlusion": 1, "ignore": 0 }, { "id": 4234, "image_id": 2240, "category_id": 1, "bbox": [ 480, 216, 24, 49 ], "height": 49, "occlusion": 1, "ignore": 0 }, { "id": 4235, "image_id": 2241, "category_id": 1, "bbox": [ 433, 201, 84, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 4236, "image_id": 2241, "category_id": 1, "bbox": [ 542, 215, 23, 42 ], "height": 42, "occlusion": 1, "ignore": 1 }, { "id": 4237, "image_id": 2241, "category_id": 1, "bbox": [ 556, 210, 23, 52 ], "height": 52, "occlusion": 1, "ignore": 0 }, { "id": 4238, "image_id": 2242, "category_id": 1, "bbox": [ 440, 212, 84, 45 ], "height": 45, "occlusion": 0, "ignore": 1 }, { "id": 4239, "image_id": 2242, "category_id": 1, "bbox": [ 584, 225, 21, 54 ], "height": 54, "occlusion": 2, "ignore": 1 }, { "id": 4240, "image_id": 2242, "category_id": 1, "bbox": [ 600, 221, 22, 56 ], "height": 56, "occlusion": 1, "ignore": 0 }, { "id": 4241, "image_id": 2243, "category_id": 1, "bbox": [ 439, 210, 67, 38 ], "height": 38, "occlusion": 0, "ignore": 1 }, { "id": 4242, "image_id": 2244, "category_id": 1, "bbox": [ 472, 213, 31, 39 ], "height": 39, "occlusion": 0, "ignore": 1 }, { "id": 4243, "image_id": 2244, "category_id": 1, "bbox": [ 509, 214, 22, 49 ], "height": 49, "occlusion": 0, "ignore": 0 }, { "id": 4244, "image_id": 2244, "category_id": 1, "bbox": [ 524, 219, 23, 44 ], "height": 44, "occlusion": 0, "ignore": 0 }, { "id": 4245, "image_id": 2245, "category_id": 1, "bbox": [ 524, 215, 21, 41 ], "height": 41, "occlusion": 2, "ignore": 1 }, { "id": 4246, "image_id": 2245, "category_id": 1, "bbox": [ 575, 214, 22, 62 ], "height": 62, "occlusion": 0, "ignore": 0 }, { "id": 4247, "image_id": 2245, "category_id": 1, "bbox": [ 591, 220, 26, 55 ], "height": 55, "occlusion": 0, "ignore": 0 }, { "id": 4248, "image_id": 2245, "category_id": 1, "bbox": [ 538, 215, 23, 42 ], "height": 42, "occlusion": 1, "ignore": 0 }, { "id": 4249, "image_id": 2246, "category_id": 1, "bbox": [ 590, 218, 24, 52 ], "height": 52, "occlusion": 2, "ignore": 0 }, { "id": 4250, "image_id": 2246, "category_id": 1, "bbox": [ 614, 214, 25, 55 ], "height": 55, "occlusion": 2, "ignore": 0 }, { "id": 4251, "image_id": 2248, "category_id": 1, "bbox": [ 101, 207, 23, 47 ], "height": 47, "occlusion": 0, "ignore": 0 }, { "id": 4252, "image_id": 2249, "category_id": 1, "bbox": [ 71, 203, 25, 45 ], "height": 45, "occlusion": 0, "ignore": 0 }, { "id": 4253, "image_id": 2250, "category_id": 1, "bbox": [ 16, 196, 29, 57 ], "height": 57, "occlusion": 0, "ignore": 0 } ], "categories": [ { "id": 0, "name": "__ignore__" }, { "id": 1, "name": "person" }, { "id": 2, "name": "cyclist" }, { "id": 3, "name": "people" }, { "id": 4, "name": "person?" } ] } ================================================ FILE: evaluation_script/README.md ================================================ ================================================ FILE: evaluation_script/__init__.py ================================================ ================================================ FILE: evaluation_script/coco.py ================================================ __author__ = 'tylin' __version__ = '2.0' # Interface for accessing the Microsoft COCO dataset. # Microsoft COCO is a large image dataset designed for object detection, # segmentation, and caption generation. pycocotools is a Python API that # assists in loading, parsing and visualizing the annotations in COCO. # Please visit http://mscoco.org/ for more information on COCO, including # for the data, paper, and tutorials. The exact format of the annotations # is also described on the COCO website. For example usage of the pycocotools # please see pycocotools_demo.ipynb. In addition to this API, please download both # the COCO images and annotations in order to run the demo. # An alternative to using the API is to load the annotations directly # into Python dictionary # Using the API provides additional utility functions. Note that this API # supports both *instance* and *caption* annotations. In the case of # captions not all functions are defined (e.g. categories are undefined). # The following API functions are defined: # COCO - COCO api class that loads COCO annotation file and prepare data structures. # decodeMask - Decode binary mask M encoded via run-length encoding. # encodeMask - Encode binary mask M using run-length encoding. # getAnnIds - Get ann ids that satisfy given filter conditions. # getCatIds - Get cat ids that satisfy given filter conditions. # getImgIds - Get img ids that satisfy given filter conditions. # loadAnns - Load anns with the specified ids. # loadCats - Load cats with the specified ids. # loadImgs - Load imgs with the specified ids. # annToMask - Convert segmentation in an annotation to binary mask. # showAnns - Display the specified annotations. # loadRes - Load algorithm results and create API for accessing them. # download - Download COCO images from mscoco.org server. # Throughout the API "ann"=annotation, "cat"=category, and "img"=image. # Help on each functions can be accessed by: "help COCO>function". # See also COCO>decodeMask, # COCO>encodeMask, COCO>getAnnIds, COCO>getCatIds, # COCO>getImgIds, COCO>loadAnns, COCO>loadCats, # COCO>loadImgs, COCO>annToMask, COCO>showAnns # Microsoft COCO Toolbox. version 2.0 # Data, paper, and tutorials available at: http://mscoco.org/ # Code written by Piotr Dollar and Tsung-Yi Lin, 2014. # Licensed under the Simplified BSD License [see bsd.txt] import json import time import matplotlib.pyplot as plt from matplotlib.collections import PatchCollection from matplotlib.patches import Polygon import numpy as np import copy import itertools # from . import mask as maskUtils import os from collections import defaultdict import sys PYTHON_VERSION = sys.version_info[0] if PYTHON_VERSION == 2: from urllib import urlretrieve elif PYTHON_VERSION == 3: from urllib.request import urlretrieve def _isArrayLike(obj): return hasattr(obj, '__iter__') and hasattr(obj, '__len__') class COCO: def __init__(self, annotation_file=None): """ Constructor of Microsoft COCO helper class for reading and visualizing annotations. :param annotation_file (str): location of annotation file :param image_folder (str): location to the folder that hosts images. :return: """ # load dataset self.dataset,self.anns,self.cats,self.imgs = dict(),dict(),dict(),dict() self.imgToAnns, self.catToImgs = defaultdict(list), defaultdict(list) if not annotation_file == None: #print('loading annotations into memory...') tic = time.time() dataset = json.load(open(annotation_file, 'r')) assert type(dataset)==dict, 'annotation file format {} not supported'.format(type(dataset)) #print('Done (t={:0.2f}s)'.format(time.time()- tic)) self.dataset = dataset self.createIndex() def createIndex(self): # create index #print('creating index...') anns, cats, imgs = {}, {}, {} imgToAnns,catToImgs = defaultdict(list), defaultdict(list) if 'annotations' in self.dataset: for ann in self.dataset['annotations']: imgToAnns[ann['image_id']].append(ann) anns[ann['id']] = ann if 'images' in self.dataset: for img in self.dataset['images']: imgs[img['id']] = img if 'categories' in self.dataset: for cat in self.dataset['categories']: cats[cat['id']] = cat if 'annotations' in self.dataset and 'categories' in self.dataset: for ann in self.dataset['annotations']: catToImgs[ann['category_id']].append(ann['image_id']) #print('index created!') # create class members self.anns = anns self.imgToAnns = imgToAnns self.catToImgs = catToImgs self.imgs = imgs self.cats = cats def info(self): """ Print information about the annotation file. :return: """ for key, value in self.dataset['info'].items(): print('{}: {}'.format(key, value)) def getAnnIds(self, imgIds=[], catIds=[], areaRng=[], iscrowd=None): """ Get ann ids that satisfy given filter conditions. default skips that filter :param imgIds (int array) : get anns for given imgs catIds (int array) : get anns for given cats areaRng (float array) : get anns for given area range (e.g. [0 inf]) iscrowd (boolean) : get anns for given crowd label (False or True) :return: ids (int array) : integer array of ann ids """ imgIds = imgIds if _isArrayLike(imgIds) else [imgIds] catIds = catIds if _isArrayLike(catIds) else [catIds] if len(imgIds) == len(catIds) == len(areaRng) == 0: anns = self.dataset['annotations'] else: if not len(imgIds) == 0: lists = [self.imgToAnns[imgId] for imgId in imgIds if imgId in self.imgToAnns] anns = list(itertools.chain.from_iterable(lists)) else: anns = self.dataset['annotations'] anns = anns if len(catIds) == 0 else [ann for ann in anns if ann['category_id'] in catIds] anns = anns if len(areaRng) == 0 else [ann for ann in anns if ann['area'] > areaRng[0] and ann['area'] < areaRng[1]] if not iscrowd == None: ids = [ann['id'] for ann in anns if ann['iscrowd'] == iscrowd] else: ids = [ann['id'] for ann in anns] return ids def getCatIds(self, catNms=[], supNms=[], catIds=[]): """ filtering parameters. default skips that filter. :param catNms (str array) : get cats for given cat names :param supNms (str array) : get cats for given supercategory names :param catIds (int array) : get cats for given cat ids :return: ids (int array) : integer array of cat ids """ catNms = catNms if _isArrayLike(catNms) else [catNms] supNms = supNms if _isArrayLike(supNms) else [supNms] catIds = catIds if _isArrayLike(catIds) else [catIds] if len(catNms) == len(supNms) == len(catIds) == 0: cats = self.dataset['categories'] else: cats = self.dataset['categories'] cats = cats if len(catNms) == 0 else [cat for cat in cats if cat['name'] in catNms] cats = cats if len(supNms) == 0 else [cat for cat in cats if cat['supercategory'] in supNms] cats = cats if len(catIds) == 0 else [cat for cat in cats if cat['id'] in catIds] ids = [cat['id'] for cat in cats] return ids def getImgIds(self, imgIds=[], catIds=[]): ''' Get img ids that satisfy given filter conditions. :param imgIds (int array) : get imgs for given ids :param catIds (int array) : get imgs with all given cats :return: ids (int array) : integer array of img ids ''' imgIds = imgIds if _isArrayLike(imgIds) else [imgIds] catIds = catIds if _isArrayLike(catIds) else [catIds] if len(imgIds) == len(catIds) == 0: ids = self.imgs.keys() else: ids = set(imgIds) for i, catId in enumerate(catIds): if i == 0 and len(ids) == 0: ids = set(self.catToImgs[catId]) else: ids &= set(self.catToImgs[catId]) return list(ids) def loadAnns(self, ids=[]): """ Load anns with the specified ids. :param ids (int array) : integer ids specifying anns :return: anns (object array) : loaded ann objects """ if _isArrayLike(ids): return [self.anns[id] for id in ids] elif type(ids) == int: return [self.anns[ids]] def loadCats(self, ids=[]): """ Load cats with the specified ids. :param ids (int array) : integer ids specifying cats :return: cats (object array) : loaded cat objects """ if _isArrayLike(ids): return [self.cats[id] for id in ids] elif type(ids) == int: return [self.cats[ids]] def loadImgs(self, ids=[]): """ Load anns with the specified ids. :param ids (int array) : integer ids specifying img :return: imgs (object array) : loaded img objects """ if _isArrayLike(ids): return [self.imgs[id] for id in ids] elif type(ids) == int: return [self.imgs[ids]] def showAnns(self, anns, draw_bbox=False): """ Display the specified annotations. :param anns (array of object): annotations to display :return: None """ if len(anns) == 0: return 0 if 'segmentation' in anns[0] or 'keypoints' in anns[0]: datasetType = 'instances' elif 'caption' in anns[0]: datasetType = 'captions' else: raise Exception('datasetType not supported') if datasetType == 'instances': ax = plt.gca() ax.set_autoscale_on(False) polygons = [] color = [] for ann in anns: c = (np.random.random((1, 3))*0.6+0.4).tolist()[0] if 'segmentation' in ann: if type(ann['segmentation']) == list: # polygon for seg in ann['segmentation']: poly = np.array(seg).reshape((int(len(seg)/2), 2)) polygons.append(Polygon(poly)) color.append(c) else: # mask t = self.imgs[ann['image_id']] if type(ann['segmentation']['counts']) == list: rle = maskUtils.frPyObjects([ann['segmentation']], t['height'], t['width']) else: rle = [ann['segmentation']] m = maskUtils.decode(rle) img = np.ones( (m.shape[0], m.shape[1], 3) ) if ann['iscrowd'] == 1: color_mask = np.array([2.0,166.0,101.0])/255 if ann['iscrowd'] == 0: color_mask = np.random.random((1, 3)).tolist()[0] for i in range(3): img[:,:,i] = color_mask[i] ax.imshow(np.dstack( (img, m*0.5) )) if 'keypoints' in ann and type(ann['keypoints']) == list: # turn skeleton into zero-based index sks = np.array(self.loadCats(ann['category_id'])[0]['skeleton'])-1 kp = np.array(ann['keypoints']) x = kp[0::3] y = kp[1::3] v = kp[2::3] for sk in sks: if np.all(v[sk]>0): plt.plot(x[sk],y[sk], linewidth=3, color=c) plt.plot(x[v>0], y[v>0],'o',markersize=8, markerfacecolor=c, markeredgecolor='k',markeredgewidth=2) plt.plot(x[v>1], y[v>1],'o',markersize=8, markerfacecolor=c, markeredgecolor=c, markeredgewidth=2) if draw_bbox: [bbox_x, bbox_y, bbox_w, bbox_h] = ann['bbox'] poly = [[bbox_x, bbox_y], [bbox_x, bbox_y+bbox_h], [bbox_x+bbox_w, bbox_y+bbox_h], [bbox_x+bbox_w, bbox_y]] np_poly = np.array(poly).reshape((4,2)) polygons.append(Polygon(np_poly)) color.append(c) p = PatchCollection(polygons, facecolor=color, linewidths=0, alpha=0.4) ax.add_collection(p) p = PatchCollection(polygons, facecolor='none', edgecolors=color, linewidths=2) ax.add_collection(p) elif datasetType == 'captions': for ann in anns: print(ann['caption']) def loadRes(self, resFile): """ Load result file and return a result api object. :param resFile (str) : file name of result file :return: res (obj) : result api object """ res = COCO() res.dataset['images'] = [img for img in self.dataset['images']] #print('Loading and preparing results...') tic = time.time() if type(resFile) == str or (PYTHON_VERSION == 2 and type(resFile) == unicode): anns = json.load(open(resFile)) elif type(resFile) == np.ndarray: anns = self.loadNumpyAnnotations(resFile) else: anns = resFile assert type(anns) == list, 'results in not an array of objects' annsImgIds = [ann['image_id'] for ann in anns] assert set(annsImgIds) == (set(annsImgIds) & set(self.getImgIds())), \ 'Results do not correspond to current coco set' if 'caption' in anns[0]: imgIds = set([img['id'] for img in res.dataset['images']]) & set([ann['image_id'] for ann in anns]) res.dataset['images'] = [img for img in res.dataset['images'] if img['id'] in imgIds] for id, ann in enumerate(anns): ann['id'] = id+1 elif 'bbox' in anns[0] and not anns[0]['bbox'] == []: res.dataset['categories'] = copy.deepcopy(self.dataset['categories']) for id, ann in enumerate(anns): bb = ann['bbox'] x1, x2, y1, y2 = [bb[0], bb[0]+bb[2], bb[1], bb[1]+bb[3]] if not 'segmentation' in ann: ann['segmentation'] = [[x1, y1, x1, y2, x2, y2, x2, y1]] ann['area'] = bb[2]*bb[3] ann['id'] = id+1 ann['iscrowd'] = 0 elif 'segmentation' in anns[0]: res.dataset['categories'] = copy.deepcopy(self.dataset['categories']) for id, ann in enumerate(anns): # now only support compressed RLE format as segmentation results ann['area'] = maskUtils.area(ann['segmentation']) if not 'bbox' in ann: ann['bbox'] = maskUtils.toBbox(ann['segmentation']) ann['id'] = id+1 ann['iscrowd'] = 0 elif 'keypoints' in anns[0]: res.dataset['categories'] = copy.deepcopy(self.dataset['categories']) for id, ann in enumerate(anns): s = ann['keypoints'] x = s[0::3] y = s[1::3] x0, x1, y0, y1 = np.min(x), np.max(x), np.min(y), np.max(y) ann['area'] = (x1-x0)*(y1-y0) ann['id'] = id + 1 ann['bbox'] = [x0, y0, x1-x0, y1-y0] #print('DONE (t={:0.2f}s)'.format(time.time()- tic)) res.dataset['annotations'] = anns res.createIndex() return res def download(self, tarDir = None, imgIds = [] ): ''' Download COCO images from mscoco.org server. :param tarDir (str): COCO results directory name imgIds (list): images to be downloaded :return: ''' if tarDir is None: print('Please specify target directory') return -1 if len(imgIds) == 0: imgs = self.imgs.values() else: imgs = self.loadImgs(imgIds) N = len(imgs) if not os.path.exists(tarDir): os.makedirs(tarDir) for i, img in enumerate(imgs): tic = time.time() fname = os.path.join(tarDir, img['file_name']) if not os.path.exists(fname): urlretrieve(img['coco_url'], fname) print('downloaded {}/{} images (t={:0.1f}s)'.format(i, N, time.time()- tic)) def loadNumpyAnnotations(self, data): """ Convert result data from a numpy array [Nx7] where each row contains {imageID,x1,y1,w,h,score,class} :param data (numpy.ndarray) :return: annotations (python nested list) """ print('Converting ndarray to lists...') assert(type(data) == np.ndarray) print(data.shape) assert(data.shape[1] == 7) N = data.shape[0] ann = [] for i in range(N): if i % 1000000 == 0: print('{}/{}'.format(i,N)) ann += [{ 'image_id' : int(data[i, 0]), 'bbox' : [ data[i, 1], data[i, 2], data[i, 3], data[i, 4] ], 'score' : data[i, 5], 'category_id': int(data[i, 6]), }] return ann def annToRLE(self, ann): """ Convert annotation which can be polygons, uncompressed RLE to RLE. :return: binary mask (numpy 2D array) """ t = self.imgs[ann['image_id']] h, w = t['height'], t['width'] segm = ann['segmentation'] if type(segm) == list: # polygon -- a single object might consist of multiple parts # we merge all parts into one mask rle code rles = maskUtils.frPyObjects(segm, h, w) rle = maskUtils.merge(rles) elif type(segm['counts']) == list: # uncompressed RLE rle = maskUtils.frPyObjects(segm, h, w) else: # rle rle = ann['segmentation'] return rle def annToMask(self, ann): """ Convert annotation which can be polygons, uncompressed RLE, or RLE to binary mask. :return: binary mask (numpy 2D array) """ rle = self.annToRLE(ann) m = maskUtils.decode(rle) return m ================================================ FILE: evaluation_script/cocoeval.py ================================================ __author__ = 'tsungyi' import numpy as np import datetime import time from collections import defaultdict # from . import mask as maskUtils import copy class COCOeval: # Interface for evaluating detection on the Microsoft COCO dataset. # # The usage for CocoEval is as follows: # cocoGt=..., cocoDt=... # load dataset and results # E = CocoEval(cocoGt,cocoDt); # initialize CocoEval object # E.params.recThrs = ...; # set parameters as desired # E.evaluate(); # run per image evaluation # E.accumulate(); # accumulate per image results # E.summarize(); # display summary metrics of results # For example usage see evalDemo.m and http://mscoco.org/. # # The evaluation parameters are as follows (defaults in brackets): # imgIds - [all] N img ids to use for evaluation # catIds - [all] K cat ids to use for evaluation # iouThrs - [.5:.05:.95] T=10 IoU thresholds for evaluation # recThrs - [0:.01:1] R=101 recall thresholds for evaluation # areaRng - [...] A=4 object area ranges for evaluation # maxDets - [1 10 100] M=3 thresholds on max detections per image # iouType - ['segm'] set iouType to 'segm', 'bbox' or 'keypoints' # iouType replaced the now DEPRECATED useSegm parameter. # useCats - [1] if true use category labels for evaluation # Note: if useCats=0 category labels are ignored as in proposal scoring. # Note: multiple areaRngs [Ax2] and maxDets [Mx1] can be specified. # # evaluate(): evaluates detections on every image and every category and # concats the results into the "evalImgs" with fields: # dtIds - [1xD] id for each of the D detections (dt) # gtIds - [1xG] id for each of the G ground truths (gt) # dtMatches - [TxD] matching gt id at each IoU or 0 # gtMatches - [TxG] matching dt id at each IoU or 0 # dtScores - [1xD] confidence of each dt # gtIgnore - [1xG] ignore flag for each gt # dtIgnore - [TxD] ignore flag for each dt at each IoU # # accumulate(): accumulates the per-image, per-category evaluation # results in "evalImgs" into the dictionary "eval" with fields: # params - parameters used for evaluation # date - date evaluation was performed # counts - [T,R,K,A,M] parameter dimensions (see above) # precision - [TxRxKxAxM] precision for every evaluation setting # recall - [TxKxAxM] max recall for every evaluation setting # Note: precision and recall==-1 for settings with no gt objects. # # See also coco, mask, pycocoDemo, pycocoEvalDemo # # Microsoft COCO Toolbox. version 2.0 # Data, paper, and tutorials available at: http://mscoco.org/ # Code written by Piotr Dollar and Tsung-Yi Lin, 2015. # Licensed under the Simplified BSD License [see coco/license.txt] def __init__(self, cocoGt=None, cocoDt=None, iouType='segm'): ''' Initialize CocoEval using coco APIs for gt and dt :param cocoGt: coco object with ground truth annotations :param cocoDt: coco object with detection results :return: None ''' if not iouType: print('iouType not specified. use default iouType segm') self.cocoGt = cocoGt # ground truth COCO API self.cocoDt = cocoDt # detections COCO API self.evalImgs = defaultdict(list) # per-image per-category evaluation results [KxAxI] elements self.eval = {} # accumulated evaluation results self._gts = defaultdict(list) # gt for evaluation self._dts = defaultdict(list) # dt for evaluation self.params = Params(iouType=iouType) # parameters self._paramsEval = {} # parameters for evaluation self.stats = [] # result summarization self.ious = {} # ious between all gts and dts if not cocoGt is None: self.params.imgIds = sorted(cocoGt.getImgIds()) self.params.catIds = sorted(cocoGt.getCatIds()) def _prepare(self): ''' Prepare ._gts and ._dts for evaluation based on params :return: None ''' def _toMask(anns, coco): # modify ann['segmentation'] by reference for ann in anns: rle = coco.annToRLE(ann) ann['segmentation'] = rle p = self.params if p.useCats: gts=self.cocoGt.loadAnns(self.cocoGt.getAnnIds(imgIds=p.imgIds, catIds=p.catIds)) dts=self.cocoDt.loadAnns(self.cocoDt.getAnnIds(imgIds=p.imgIds, catIds=p.catIds)) else: gts=self.cocoGt.loadAnns(self.cocoGt.getAnnIds(imgIds=p.imgIds)) dts=self.cocoDt.loadAnns(self.cocoDt.getAnnIds(imgIds=p.imgIds)) # convert ground truth to mask if iouType == 'segm' if p.iouType == 'segm': _toMask(gts, self.cocoGt) _toMask(dts, self.cocoDt) # set ignore flag for gt in gts: gt['ignore'] = gt['ignore'] if 'ignore' in gt else 0 gt['ignore'] = 'iscrowd' in gt and gt['iscrowd'] if p.iouType == 'keypoints': gt['ignore'] = (gt['num_keypoints'] == 0) or gt['ignore'] self._gts = defaultdict(list) # gt for evaluation self._dts = defaultdict(list) # dt for evaluation for gt in gts: self._gts[gt['image_id'], gt['category_id']].append(gt) for dt in dts: self._dts[dt['image_id'], dt['category_id']].append(dt) self.evalImgs = defaultdict(list) # per-image per-category evaluation results self.eval = {} # accumulated evaluation results def evaluate(self): ''' Run per image evaluation on given images and store results (a list of dict) in self.evalImgs :return: None ''' tic = time.time() print('Running per image evaluation...') p = self.params # add backward compatibility if useSegm is specified in params if not p.useSegm is None: p.iouType = 'segm' if p.useSegm == 1 else 'bbox' print('useSegm (deprecated) is not None. Running {} evaluation'.format(p.iouType)) print('Evaluate annotation type *{}*'.format(p.iouType)) p.imgIds = list(np.unique(p.imgIds)) if p.useCats: p.catIds = list(np.unique(p.catIds)) p.maxDets = sorted(p.maxDets) self.params=p self._prepare() # loop through images, area range, max detection number catIds = p.catIds if p.useCats else [-1] if p.iouType == 'segm' or p.iouType == 'bbox': computeIoU = self.computeIoU elif p.iouType == 'keypoints': computeIoU = self.computeOks self.ious = {(imgId, catId): computeIoU(imgId, catId) \ for imgId in p.imgIds for catId in catIds} evaluateImg = self.evaluateImg maxDet = p.maxDets[-1] self.evalImgs = [evaluateImg(imgId, catId, areaRng, maxDet) for catId in catIds for areaRng in p.areaRng for imgId in p.imgIds ] self._paramsEval = copy.deepcopy(self.params) toc = time.time() print('DONE (t={:0.2f}s).'.format(toc-tic)) def computeIoU(self, imgId, catId): p = self.params if p.useCats: gt = self._gts[imgId,catId] dt = self._dts[imgId,catId] else: gt = [_ for cId in p.catIds for _ in self._gts[imgId,cId]] dt = [_ for cId in p.catIds for _ in self._dts[imgId,cId]] if len(gt) == 0 and len(dt) ==0: return [] inds = np.argsort([-d['score'] for d in dt], kind='mergesort') dt = [dt[i] for i in inds] if len(dt) > p.maxDets[-1]: dt=dt[0:p.maxDets[-1]] if p.iouType == 'segm': g = [g['segmentation'] for g in gt] d = [d['segmentation'] for d in dt] elif p.iouType == 'bbox': g = [g['bbox'] for g in gt] d = [d['bbox'] for d in dt] else: raise Exception('unknown iouType for iou computation') # compute iou between each dt and gt region iscrowd = [int(o['iscrowd']) for o in gt] ious = maskUtils.iou(d,g,iscrowd) return ious def computeOks(self, imgId, catId): p = self.params # dimention here should be Nxm gts = self._gts[imgId, catId] dts = self._dts[imgId, catId] inds = np.argsort([-d['score'] for d in dts], kind='mergesort') dts = [dts[i] for i in inds] if len(dts) > p.maxDets[-1]: dts = dts[0:p.maxDets[-1]] # if len(gts) == 0 and len(dts) == 0: if len(gts) == 0 or len(dts) == 0: return [] ious = np.zeros((len(dts), len(gts))) sigmas = p.kpt_oks_sigmas vars = (sigmas * 2)**2 k = len(sigmas) # compute oks between each detection and ground truth object for j, gt in enumerate(gts): # create bounds for ignore regions(double the gt bbox) g = np.array(gt['keypoints']) xg = g[0::3]; yg = g[1::3]; vg = g[2::3] k1 = np.count_nonzero(vg > 0) bb = gt['bbox'] x0 = bb[0] - bb[2]; x1 = bb[0] + bb[2] * 2 y0 = bb[1] - bb[3]; y1 = bb[1] + bb[3] * 2 for i, dt in enumerate(dts): d = np.array(dt['keypoints']) xd = d[0::3]; yd = d[1::3] if k1>0: # measure the per-keypoint distance if keypoints visible dx = xd - xg dy = yd - yg else: # measure minimum distance to keypoints in (x0,y0) & (x1,y1) z = np.zeros((k)) dx = np.max((z, x0-xd),axis=0)+np.max((z, xd-x1),axis=0) dy = np.max((z, y0-yd),axis=0)+np.max((z, yd-y1),axis=0) e = (dx**2 + dy**2) / vars / (gt['area']+np.spacing(1)) / 2 if k1 > 0: e=e[vg > 0] ious[i, j] = np.sum(np.exp(-e)) / e.shape[0] return ious def evaluateImg(self, imgId, catId, aRng, maxDet): ''' perform evaluation for single category and image :return: dict (single image results) ''' p = self.params if p.useCats: gt = self._gts[imgId,catId] dt = self._dts[imgId,catId] else: gt = [_ for cId in p.catIds for _ in self._gts[imgId,cId]] dt = [_ for cId in p.catIds for _ in self._dts[imgId,cId]] if len(gt) == 0 and len(dt) ==0: return None for g in gt: if g['ignore'] or (g['area']aRng[1]): g['_ignore'] = 1 else: g['_ignore'] = 0 # sort dt highest score first, sort gt ignore last gtind = np.argsort([g['_ignore'] for g in gt], kind='mergesort') gt = [gt[i] for i in gtind] dtind = np.argsort([-d['score'] for d in dt], kind='mergesort') dt = [dt[i] for i in dtind[0:maxDet]] iscrowd = [int(o['iscrowd']) for o in gt] # load computed ious ious = self.ious[imgId, catId][:, gtind] if len(self.ious[imgId, catId]) > 0 else self.ious[imgId, catId] T = len(p.iouThrs) G = len(gt) D = len(dt) gtm = np.zeros((T,G)) dtm = np.zeros((T,D)) gtIg = np.array([g['_ignore'] for g in gt]) dtIg = np.zeros((T,D)) if not len(ious)==0: for tind, t in enumerate(p.iouThrs): for dind, d in enumerate(dt): # information about best match so far (m=-1 -> unmatched) iou = min([t,1-1e-10]) m = -1 for gind, g in enumerate(gt): # if this gt already matched, and not a crowd, continue if gtm[tind,gind]>0 and not iscrowd[gind]: continue # if dt matched to reg gt, and on ignore gt, stop if m>-1 and gtIg[m]==0 and gtIg[gind]==1: break # continue to next gt unless better match made if ious[dind,gind] < iou: continue # if match successful and best so far, store appropriately iou=ious[dind,gind] m=gind # if match made store id of match for both dt and gt if m ==-1: continue dtIg[tind,dind] = gtIg[m] dtm[tind,dind] = gt[m]['id'] gtm[tind,m] = d['id'] # set unmatched detections outside of area range to ignore a = np.array([d['area']aRng[1] for d in dt]).reshape((1, len(dt))) dtIg = np.logical_or(dtIg, np.logical_and(dtm==0, np.repeat(a,T,0))) # store results for given image and category return { 'image_id': imgId, 'category_id': catId, 'aRng': aRng, 'maxDet': maxDet, 'dtIds': [d['id'] for d in dt], 'gtIds': [g['id'] for g in gt], 'dtMatches': dtm, 'gtMatches': gtm, 'dtScores': [d['score'] for d in dt], 'gtIgnore': gtIg, 'dtIgnore': dtIg, } def accumulate(self, p = None): ''' Accumulate per image evaluation results and store the result in self.eval :param p: input params for evaluation :return: None ''' print('Accumulating evaluation results...') tic = time.time() if not self.evalImgs: print('Please run evaluate() first') # allows input customized parameters if p is None: p = self.params p.catIds = p.catIds if p.useCats == 1 else [-1] T = len(p.iouThrs) R = len(p.recThrs) K = len(p.catIds) if p.useCats else 1 A = len(p.areaRng) M = len(p.maxDets) precision = -np.ones((T,R,K,A,M)) # -1 for the precision of absent categories recall = -np.ones((T,K,A,M)) scores = -np.ones((T,R,K,A,M)) # create dictionary for future indexing _pe = self._paramsEval catIds = _pe.catIds if _pe.useCats else [-1] setK = set(catIds) setA = set(map(tuple, _pe.areaRng)) setM = set(_pe.maxDets) setI = set(_pe.imgIds) # get inds to evaluate k_list = [n for n, k in enumerate(p.catIds) if k in setK] m_list = [m for n, m in enumerate(p.maxDets) if m in setM] a_list = [n for n, a in enumerate(map(lambda x: tuple(x), p.areaRng)) if a in setA] i_list = [n for n, i in enumerate(p.imgIds) if i in setI] I0 = len(_pe.imgIds) A0 = len(_pe.areaRng) # retrieve E at each category, area range, and max number of detections for k, k0 in enumerate(k_list): Nk = k0*A0*I0 for a, a0 in enumerate(a_list): Na = a0*I0 for m, maxDet in enumerate(m_list): E = [self.evalImgs[Nk + Na + i] for i in i_list] E = [e for e in E if not e is None] if len(E) == 0: continue dtScores = np.concatenate([e['dtScores'][0:maxDet] for e in E]) # different sorting method generates slightly different results. # mergesort is used to be consistent as Matlab implementation. inds = np.argsort(-dtScores, kind='mergesort') dtScoresSorted = dtScores[inds] dtm = np.concatenate([e['dtMatches'][:,0:maxDet] for e in E], axis=1)[:,inds] dtIg = np.concatenate([e['dtIgnore'][:,0:maxDet] for e in E], axis=1)[:,inds] gtIg = np.concatenate([e['gtIgnore'] for e in E]) npig = np.count_nonzero(gtIg==0 ) if npig == 0: continue tps = np.logical_and( dtm, np.logical_not(dtIg) ) fps = np.logical_and(np.logical_not(dtm), np.logical_not(dtIg) ) tp_sum = np.cumsum(tps, axis=1).astype(dtype=np.float) fp_sum = np.cumsum(fps, axis=1).astype(dtype=np.float) for t, (tp, fp) in enumerate(zip(tp_sum, fp_sum)): tp = np.array(tp) fp = np.array(fp) nd = len(tp) rc = tp / npig pr = tp / (fp+tp+np.spacing(1)) q = np.zeros((R,)) ss = np.zeros((R,)) if nd: recall[t,k,a,m] = rc[-1] else: recall[t,k,a,m] = 0 # numpy is slow without cython optimization for accessing elements # use python array gets significant speed improvement pr = pr.tolist(); q = q.tolist() for i in range(nd-1, 0, -1): if pr[i] > pr[i-1]: pr[i-1] = pr[i] inds = np.searchsorted(rc, p.recThrs, side='left') try: for ri, pi in enumerate(inds): q[ri] = pr[pi] ss[ri] = dtScoresSorted[pi] except: pass precision[t,:,k,a,m] = np.array(q) scores[t,:,k,a,m] = np.array(ss) self.eval = { 'params': p, 'counts': [T, R, K, A, M], 'date': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'precision': precision, 'recall': recall, 'scores': scores, } toc = time.time() print('DONE (t={:0.2f}s).'.format( toc-tic)) def summarize(self): ''' Compute and display summary metrics for evaluation results. Note this functin can *only* be applied on the default parameter setting ''' def _summarize( ap=1, iouThr=None, areaRng='all', maxDets=100 ): p = self.params iStr = ' {:<18} {} @[ IoU={:<9} | area={:>6s} | maxDets={:>3d} ] = {:0.3f}' titleStr = 'Average Precision' if ap == 1 else 'Average Recall' typeStr = '(AP)' if ap==1 else '(AR)' iouStr = '{:0.2f}:{:0.2f}'.format(p.iouThrs[0], p.iouThrs[-1]) \ if iouThr is None else '{:0.2f}'.format(iouThr) aind = [i for i, aRng in enumerate(p.areaRngLbl) if aRng == areaRng] mind = [i for i, mDet in enumerate(p.maxDets) if mDet == maxDets] if ap == 1: # dimension of precision: [TxRxKxAxM] s = self.eval['precision'] # IoU if iouThr is not None: t = np.where(iouThr == p.iouThrs)[0] s = s[t] s = s[:,:,:,aind,mind] else: # dimension of recall: [TxKxAxM] s = self.eval['recall'] if iouThr is not None: t = np.where(iouThr == p.iouThrs)[0] s = s[t] s = s[:,:,aind,mind] if len(s[s>-1])==0: mean_s = -1 else: mean_s = np.mean(s[s>-1]) print(iStr.format(titleStr, typeStr, iouStr, areaRng, maxDets, mean_s)) return mean_s def _summarizeDets(): stats = np.zeros((12,)) stats[0] = _summarize(1) stats[1] = _summarize(1, iouThr=.5, maxDets=self.params.maxDets[2]) stats[2] = _summarize(1, iouThr=.75, maxDets=self.params.maxDets[2]) stats[3] = _summarize(1, areaRng='small', maxDets=self.params.maxDets[2]) stats[4] = _summarize(1, areaRng='medium', maxDets=self.params.maxDets[2]) stats[5] = _summarize(1, areaRng='large', maxDets=self.params.maxDets[2]) stats[6] = _summarize(0, maxDets=self.params.maxDets[0]) stats[7] = _summarize(0, maxDets=self.params.maxDets[1]) stats[8] = _summarize(0, maxDets=self.params.maxDets[2]) stats[9] = _summarize(0, areaRng='small', maxDets=self.params.maxDets[2]) stats[10] = _summarize(0, areaRng='medium', maxDets=self.params.maxDets[2]) stats[11] = _summarize(0, areaRng='large', maxDets=self.params.maxDets[2]) return stats def _summarizeKps(): stats = np.zeros((10,)) stats[0] = _summarize(1, maxDets=20) stats[1] = _summarize(1, maxDets=20, iouThr=.5) stats[2] = _summarize(1, maxDets=20, iouThr=.75) stats[3] = _summarize(1, maxDets=20, areaRng='medium') stats[4] = _summarize(1, maxDets=20, areaRng='large') stats[5] = _summarize(0, maxDets=20) stats[6] = _summarize(0, maxDets=20, iouThr=.5) stats[7] = _summarize(0, maxDets=20, iouThr=.75) stats[8] = _summarize(0, maxDets=20, areaRng='medium') stats[9] = _summarize(0, maxDets=20, areaRng='large') return stats if not self.eval: raise Exception('Please run accumulate() first') iouType = self.params.iouType if iouType == 'segm' or iouType == 'bbox': summarize = _summarizeDets elif iouType == 'keypoints': summarize = _summarizeKps self.stats = summarize() def __str__(self): self.summarize() class Params: ''' Params for coco evaluation api ''' def setDetParams(self): self.imgIds = [] self.catIds = [] # np.arange causes trouble. the data point on arange is slightly larger than the true value self.iouThrs = np.linspace(.5, 0.95, int(np.round((0.95 - .5) / .05)) + 1, endpoint=True) self.recThrs = np.linspace(.0, 1.00, int(np.round((1.00 - .0) / .01)) + 1, endpoint=True) self.maxDets = [1, 10, 100] self.areaRng = [[0 ** 2, 1e5 ** 2], [0 ** 2, 32 ** 2], [32 ** 2, 96 ** 2], [96 ** 2, 1e5 ** 2]] self.areaRngLbl = ['all', 'small', 'medium', 'large'] self.useCats = 1 def setKpParams(self): self.imgIds = [] self.catIds = [] # np.arange causes trouble. the data point on arange is slightly larger than the true value self.iouThrs = np.linspace(.5, 0.95, int(np.round((0.95 - .5) / .05)) + 1, endpoint=True) self.recThrs = np.linspace(.0, 1.00, int(np.round((1.00 - .0) / .01)) + 1, endpoint=True) self.maxDets = [20] self.areaRng = [[0 ** 2, 1e5 ** 2], [32 ** 2, 96 ** 2], [96 ** 2, 1e5 ** 2]] self.areaRngLbl = ['all', 'medium', 'large'] self.useCats = 1 self.kpt_oks_sigmas = np.array([.26, .25, .25, .35, .35, .79, .79, .72, .72, .62,.62, 1.07, 1.07, .87, .87, .89, .89])/10.0 def __init__(self, iouType='segm'): if iouType == 'segm' or iouType == 'bbox': self.setDetParams() elif iouType == 'keypoints': self.setKpParams() else: raise Exception('iouType not supported') self.iouType = iouType # useSegm is deprecated self.useSegm = None ================================================ FILE: evaluation_script/evaluation_script.py ================================================ """Evaluate performance on multispectral pedestrian detection benchmark This script evalutes multispectral detection performance. We adopt [cocoapi](https://github.com/cocodataset/cocoapi) and apply minor modification for KAISTPed benchmark. """ from collections import defaultdict import argparse import copy import datetime import json import matplotlib import numpy as np import os import pdb import sys import tempfile import traceback # matplotlib.use('Agg') # from matplotlib.patches import Polygon import matplotlib.pyplot as plt from evaluation_script.coco import COCO from evaluation_script.cocoeval import COCOeval, Params font = {'size': 22} matplotlib.rc('font', **font) class KAISTPedEval(COCOeval): def __init__(self, kaistGt=None, kaistDt=None, iouType='segm', method='unknown'): ''' Initialize CocoEval using coco APIs for gt and dt :param cocoGt: coco object with ground truth annotations :param cocoDt: coco object with detection results :return: None ''' super().__init__(kaistGt, kaistDt, iouType) self.params = KAISTParams(iouType=iouType) # parameters self.method = method def _prepare(self, id_setup): ''' Prepare ._gts and ._dts for evaluation based on params :return: None ''' p = self.params if p.useCats: gts = self.cocoGt.loadAnns(self.cocoGt.getAnnIds(imgIds=p.imgIds, catIds=p.catIds)) dts = self.cocoDt.loadAnns(self.cocoDt.getAnnIds(imgIds=p.imgIds, catIds=p.catIds)) else: gts = self.cocoGt.loadAnns(self.cocoGt.getAnnIds(imgIds=p.imgIds)) dts = self.cocoDt.loadAnns(self.cocoDt.getAnnIds(imgIds=p.imgIds)) # set ignore flag for gt in gts: gt['ignore'] = gt['ignore'] if 'ignore' in gt else 0 gbox = gt['bbox'] gt['ignore'] = 1 \ if gt['height'] < self.params.HtRng[id_setup][0] \ or gt['height'] > self.params.HtRng[id_setup][1] \ or gt['occlusion'] not in self.params.OccRng[id_setup] \ or gbox[0] < self.params.bndRng[0] \ or gbox[1] < self.params.bndRng[1] \ or gbox[0] + gbox[2] > self.params.bndRng[2] \ or gbox[1] + gbox[3] > self.params.bndRng[3] \ else gt['ignore'] self._gts = defaultdict(list) # gt for evaluation self._dts = defaultdict(list) # dt for evaluation for gt in gts: self._gts[gt['image_id'], gt['category_id']].append(gt) for dt in dts: self._dts[dt['image_id'], dt['category_id']].append(dt) self.evalImgs = defaultdict(list) # per-image per-category evaluation results self.eval = {} # accumulated evaluation results def evaluate(self, id_setup): ''' Run per image evaluation on given images and store results (a list of dict) in self.evalImgs :return: None ''' p = self.params # add backward compatibility if useSegm is specified in params if p.useSegm is not None: p.iouType = 'segm' if p.useSegm == 1 else 'bbox' #print('useSegm (deprecated) is not None. Running {} evaluation'.format(p.iouType)) # print('Evaluate annotation type *{}*'.format(p.iouType)) p.imgIds = list(np.unique(p.imgIds)) if p.useCats: p.catIds = list(np.unique(p.catIds)) p.maxDets = sorted(p.maxDets) self.params = p self._prepare(id_setup) # loop through images, area range, max detection number catIds = p.catIds if p.useCats else [-1] computeIoU = self.computeIoU self.ious = {(imgId, catId): computeIoU(imgId, catId) for imgId in p.imgIds for catId in catIds} evaluateImg = self.evaluateImg maxDet = p.maxDets[-1] HtRng = self.params.HtRng[id_setup] OccRng = self.params.OccRng[id_setup] self.evalImgs = [evaluateImg(imgId, catId, HtRng, OccRng, maxDet) for catId in catIds for imgId in p.imgIds] self._paramsEval = copy.deepcopy(self.params) def computeIoU(self, imgId, catId): p = self.params if p.useCats: gt = self._gts[imgId, catId] dt = self._dts[imgId, catId] else: gt = [_ for cId in p.catIds for _ in self._gts[imgId, cId]] dt = [_ for cId in p.catIds for _ in self._dts[imgId, cId]] if len(gt) == 0 and len(dt) == 0: return [] inds = np.argsort([-d['score'] for d in dt], kind='mergesort') dt = [dt[i] for i in inds] if len(dt) > p.maxDets[-1]: dt = dt[0:p.maxDets[-1]] if p.iouType == 'segm': g = [g['segmentation'] for g in gt] d = [d['segmentation'] for d in dt] elif p.iouType == 'bbox': g = [g['bbox'] for g in gt] d = [d['bbox'] for d in dt] else: raise Exception('unknown iouType for iou computation') # compute iou between each dt and gt region iscrowd = [int(o['ignore']) for o in gt] ious = self.iou(d, g, iscrowd) return ious def iou(self, dts, gts, pyiscrowd): dts = np.asarray(dts) gts = np.asarray(gts) pyiscrowd = np.asarray(pyiscrowd) ious = np.zeros((len(dts), len(gts))) for j, gt in enumerate(gts): gx1 = gt[0] gy1 = gt[1] gx2 = gt[0] + gt[2] gy2 = gt[1] + gt[3] garea = gt[2] * gt[3] for i, dt in enumerate(dts): dx1 = dt[0] dy1 = dt[1] dx2 = dt[0] + dt[2] dy2 = dt[1] + dt[3] darea = dt[2] * dt[3] unionw = min(dx2, gx2) - max(dx1, gx1) if unionw <= 0: continue unionh = min(dy2, gy2) - max(dy1, gy1) if unionh <= 0: continue t = unionw * unionh if pyiscrowd[j]: unionarea = darea else: unionarea = darea + garea - t ious[i, j] = float(t) / unionarea return ious def evaluateImg(self, imgId, catId, hRng, oRng, maxDet): ''' perform evaluation for single category and image :return: dict (single image results) ''' try: p = self.params if p.useCats: gt = self._gts[imgId, catId] dt = self._dts[imgId, catId] else: gt = [_ for cId in p.catIds for _ in self._gts[imgId, cId]] dt = [_ for cId in p.catIds for _ in self._dts[imgId, cId]] if len(gt) == 0 and len(dt) == 0: return None for g in gt: if g['ignore']: g['_ignore'] = 1 else: g['_ignore'] = 0 # sort dt highest score first, sort gt ignore last gtind = np.argsort([g['_ignore'] for g in gt], kind='mergesort') gt = [gt[i] for i in gtind] dtind = np.argsort([-d['score'] for d in dt], kind='mergesort') dt = [dt[i] for i in dtind[0:maxDet]] if len(dt) == 0: return None # load computed ious ious = self.ious[imgId, catId][dtind, :] if len(self.ious[imgId, catId]) > 0 else self.ious[imgId, catId] ious = ious[:, gtind] T = len(p.iouThrs) G = len(gt) D = len(dt) gtm = np.zeros((T, G)) dtm = np.zeros((T, D)) gtIg = np.array([g['_ignore'] for g in gt]) dtIg = np.zeros((T, D)) if not len(ious) == 0: for tind, t in enumerate(p.iouThrs): for dind, d in enumerate(dt): # information about best match so far (m=-1 -> unmatched) iou = min([t, 1 - 1e-10]) bstOa = iou bstg = -2 bstm = -2 for gind, g in enumerate(gt): m = gtm[tind, gind] # if this gt already matched, and not a crowd, continue if m > 0: continue # if dt matched to reg gt, and on ignore gt, stop if bstm != -2 and gtIg[gind] == 1: break # continue to next gt unless better match made if ious[dind, gind] < bstOa: continue # if match successful and best so far, store appropriately bstOa = ious[dind, gind] bstg = gind if gtIg[gind] == 0: bstm = 1 else: bstm = -1 # if match made store id of match for both dt and gt if bstg == -2: continue dtIg[tind, dind] = gtIg[bstg] dtm[tind, dind] = gt[bstg]['id'] if bstm == 1: gtm[tind, bstg] = d['id'] except Exception: ex_type, ex_value, ex_traceback = sys.exc_info() # Extract unformatter stack traces as tuples trace_back = traceback.extract_tb(ex_traceback) # Format stacktrace stack_trace = list() for trace in trace_back: stack_trace.append("File : %s , Line : %d, Func.Name : %s, Message : %s" % (trace[0], trace[1], trace[2], trace[3])) sys.stderr.write("[Error] Exception type : %s \n" % ex_type.__name__) sys.stderr.write("[Error] Exception message : %s \n" % ex_value) for trace in stack_trace: sys.stderr.write("[Error] (Stack trace) %s\n" % trace) pdb.set_trace() # store results for given image and category return { 'image_id': imgId, 'category_id': catId, 'hRng': hRng, 'oRng': oRng, 'maxDet': maxDet, 'dtIds': [d['id'] for d in dt], 'gtIds': [g['id'] for g in gt], 'dtMatches': dtm, 'gtMatches': gtm, 'dtScores': [d['score'] for d in dt], 'gtIgnore': gtIg, 'dtIgnore': dtIg, } def accumulate(self, p=None): ''' Accumulate per image evaluation results and store the result in self.eval :param p: input params for evaluation :return: None ''' if not self.evalImgs: pass #print('Please run evaluate() first') # allows input customized parameters if p is None: p = self.params p.catIds = p.catIds if p.useCats == 1 else [-1] T = len(p.iouThrs) R = len(p.fppiThrs) K = len(p.catIds) if p.useCats else 1 M = len(p.maxDets) ys = -np.ones((T, R, K, M)) # -1 for the precision of absent categories xx_graph = [] yy_graph = [] # create dictionary for future indexing _pe = self._paramsEval catIds = [1] # _pe.catIds if _pe.useCats else [-1] setK = set(catIds) setM = set(_pe.maxDets) setI = set(_pe.imgIds) # get inds to evaluate k_list = [n for n, k in enumerate(p.catIds) if k in setK] m_list = [m for n, m in enumerate(p.maxDets) if m in setM] i_list = [n for n, i in enumerate(p.imgIds) if i in setI] I0 = len(_pe.imgIds) # retrieve E at each category, area range, and max number of detections for k, k0 in enumerate(k_list): Nk = k0 * I0 for m, maxDet in enumerate(m_list): E = [self.evalImgs[Nk + i] for i in i_list] E = [e for e in E if e is not None] if len(E) == 0: continue dtScores = np.concatenate([e['dtScores'][0:maxDet] for e in E]) # different sorting method generates slightly different results. # mergesort is used to be consistent as Matlab implementation. inds = np.argsort(-dtScores, kind='mergesort') dtm = np.concatenate([e['dtMatches'][:, 0:maxDet] for e in E], axis=1)[:, inds] dtIg = np.concatenate([e['dtIgnore'][:, 0:maxDet] for e in E], axis=1)[:, inds] gtIg = np.concatenate([e['gtIgnore'] for e in E]) npig = np.count_nonzero(gtIg == 0) if npig == 0: continue tps = np.logical_and(dtm, np.logical_not(dtIg)) fps = np.logical_and(np.logical_not(dtm), np.logical_not(dtIg)) inds = np.where(dtIg == 0)[1] tps = tps[:, inds] fps = fps[:, inds] tp_sum = np.cumsum(tps, axis=1).astype(dtype=np.float64) fp_sum = np.cumsum(fps, axis=1).astype(dtype=np.float64) for t, (tp, fp) in enumerate(zip(tp_sum, fp_sum)): tp = np.array(tp) fppi = np.array(fp) / I0 nd = len(tp) recall = tp / npig q = np.zeros((R,)) xx_graph.append(fppi) yy_graph.append(1 - recall) # numpy is slow without cython optimization for accessing elements # use python array gets significant speed improvement recall = recall.tolist() q = q.tolist() for i in range(nd - 1, 0, -1): if recall[i] < recall[i - 1]: recall[i - 1] = recall[i] inds = np.searchsorted(fppi, p.fppiThrs, side='right') - 1 try: for ri, pi in enumerate(inds): q[ri] = recall[pi] except Exception: pass ys[t, :, k, m] = np.array(q) self.eval = { 'params': p, 'counts': [T, R, K, M], 'date': datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), 'TP': ys, 'xx': xx_graph, 'yy': yy_graph } @staticmethod def draw_figure(ax, eval_results, methods, colors): """Draw figure""" assert len(eval_results) == len(methods) == len(colors) for eval_result, method, color in zip(eval_results, methods, colors): mrs = 1 - eval_result['TP'] mean_s = np.log(mrs[mrs < 2]) mean_s = np.mean(mean_s) mean_s = float(np.exp(mean_s) * 100) xx = eval_result['xx'] yy = eval_result['yy'] ax.plot(xx[0], yy[0], color=color, linewidth=3, label=f'{mean_s:.2f}%, {method}') ax.set_yscale('log') ax.set_xscale('log') ax.legend() yt = [1, 5] + list(range(10, 60, 10)) + [64, 80] yticklabels = ['.{:02d}'.format(num) for num in yt] yt += [100] yt = [yy / 100.0 for yy in yt] yticklabels += [1] ax.set_yticks(yt) ax.set_yticklabels(yticklabels) ax.grid(which='major', axis='both') ax.set_ylim(0.01, 1) ax.set_xlim(2e-4, 50) ax.set_ylabel('miss rate') ax.set_xlabel('false positives per image') def summarize(self, id_setup, res_file=None): ''' Compute and display summary metrics for evaluation results. Note this functin can *only* be applied on the default parameter setting ''' def _summarize(iouThr=None, maxDets=100): OCC_TO_TEXT = ['none', 'partial_occ', 'heavy_occ'] p = self.params iStr = ' {:<18} {} @ {:<18} [ IoU={:<9} | height={:>6s} | visibility={:>6s} ] = {:0.2f}%' titleStr = 'Average Miss Rate' typeStr = '(MR)' setupStr = p.SetupLbl[id_setup] iouStr = '{:0.2f}:{:0.2f}'.format(p.iouThrs[0], p.iouThrs[-1]) \ if iouThr is None else '{:0.2f}'.format(iouThr) heightStr = '[{:0.0f}:{:0.0f}]'.format(p.HtRng[id_setup][0], p.HtRng[id_setup][1]) occlStr = '[' + '+'.join(['{:s}'.format(OCC_TO_TEXT[occ]) for occ in p.OccRng[id_setup]]) + ']' mind = [i for i, mDet in enumerate(p.maxDets) if mDet == maxDets] # dimension of precision: [TxRxKxAxM] s = self.eval['TP'] # IoU if iouThr is not None: t = np.where(iouThr == p.iouThrs)[0] s = s[t] mrs = 1 - s[:, :, :, mind] if len(mrs[mrs < 2]) == 0: mean_s = -1 else: mean_s = np.log(mrs[mrs < 2] + 1e-5) mean_s = np.mean(mean_s) mean_s = np.exp(mean_s) if res_file: res_file.write(iStr.format(titleStr, typeStr, setupStr, iouStr, heightStr, occlStr, mean_s * 100)) res_file.write('\n') return mean_s if not self.eval: raise Exception('Please run accumulate() first') return _summarize(iouThr=.5, maxDets=1000) class KAISTParams(Params): """Params for KAISTPed evaluation api""" def setDetParams(self): super().setDetParams() # Override variables for KAISTPed benchmark self.iouThrs = np.array([0.5]) self.maxDets = [1000] # KAISTPed specific settings self.fppiThrs = np.array([0.0100, 0.0178, 0.0316, 0.0562, 0.1000, 0.1778, 0.3162, 0.5623, 1.0000]) #self.HtRng = [[55, 1e5 ** 2], [50, 75], [50, 1e5 ** 2], [20, 1e5 ** 2]] self.HtRng = [[55, 1e5 ** 2], [115, 1e5 ** 2], [45, 115], [1, 45], [1, 1e5 ** 2], [1, 1e5 ** 2], [1, 1e5 ** 2]] # jifengshen #self.OccRng = [[0, 1], [0, 1], [2], [0, 1, 2]] self.OccRng = [[0, 1], [0], [0], [0], [0], [1], [2]] #self.SetupLbl = ['Reasonable', 'Reasonable_small', 'Reasonable_occ=heavy', 'All'] self.SetupLbl = ['Reasonable', 'scale=near', 'scale=medium', 'scale=far', 'occ=none', 'occ=partial', 'occ=heavy', 'All'] self.bndRng = [5, 5, 635, 507] # discard bbs outside this pixel range class KAIST(COCO): def txt2json(self, txt): """ Convert txt file to coco json format Arguments: `txt`: Path to annotation file that txt """ predict_result = [] f = open(txt, 'r') #print(f) lines = f.readlines() for line in lines: json_format = {} pred_info = [float(ll) for ll in line.split(',')] json_format["image_id"] = pred_info[0] - 1 # image id json_format["category_id"] = 1 # pedestrian json_format["bbox"] = [pred_info[1], pred_info[2], pred_info[3], pred_info[4]] # bbox json_format["score"] = pred_info[5] predict_result.append(json_format) return predict_result def loadRes(self, resFile): """ Load result file and return a result api object. :param resFile (str) : file name of result file :return: res (obj) : result api object """ # If resFile is a text file, convert it to json if type(resFile) == str and resFile.endswith('.txt'): anns = self.txt2json(resFile) _resFile = next(tempfile._get_candidate_names()) with open(_resFile, 'w') as f: json.dump(anns, f, indent=4) res = super().loadRes(_resFile) os.remove(_resFile) elif type(resFile) == str and resFile.endswith('.json'): res = super().loadRes(resFile) else: raise Exception('[Error] Exception extension : %s \n' % resFile.split('.')[-1]) return res def evaluate(test_annotation_file: str, user_submission_file: str, phase_codename: str = 'Multispectral', plot=False): """Evaluates the submission for a particular challenge phase and returns score Parameters ---------- test_annotations_file: str Path to test_annotation_file on the server user_submission_file: str Path to file submitted by the user phase_codename: str Phase to which submission is made Returns ------- Dict Evaluated/Accumulated KAISTPedEval objects for All/Day/Night """ kaistGt = KAIST(test_annotation_file) kaistDt = kaistGt.loadRes(user_submission_file) imgIds = sorted(kaistGt.getImgIds()) method = os.path.basename(user_submission_file).split('_')[0] kaistEval = KAISTPedEval(kaistGt, kaistDt, 'bbox', method) kaistEval.params.catIds = [1] eval_result = { 'all': copy.deepcopy(kaistEval), 'day': copy.deepcopy(kaistEval), 'night': copy.deepcopy(kaistEval), 'near': copy.deepcopy(kaistEval), 'medium': copy.deepcopy(kaistEval), 'far': copy.deepcopy(kaistEval), 'none': copy.deepcopy(kaistEval), 'partial': copy.deepcopy(kaistEval), 'heavy': copy.deepcopy(kaistEval), } eval_result['all'].params.imgIds = imgIds eval_result['all'].evaluate(0) eval_result['all'].accumulate() MR_all = eval_result['all'].summarize(0) eval_result['day'].params.imgIds = imgIds[:1455] eval_result['day'].evaluate(0) eval_result['day'].accumulate() MR_day = eval_result['day'].summarize(0) eval_result['night'].params.imgIds = imgIds[1455:] eval_result['night'].evaluate(0) eval_result['night'].accumulate() MR_night = eval_result['night'].summarize(0) eval_result['near'].params.imgIds = imgIds eval_result['near'].evaluate(1) eval_result['near'].accumulate() MR_near = eval_result['near'].summarize(1) eval_result['medium'].params.imgIds = imgIds eval_result['medium'].evaluate(2) eval_result['medium'].accumulate() MR_medium = eval_result['medium'].summarize(2) eval_result['far'].params.imgIds = imgIds eval_result['far'].evaluate(3) eval_result['far'].accumulate() MR_far = eval_result['far'].summarize(3) eval_result['none'].params.imgIds = imgIds eval_result['none'].evaluate(4) eval_result['none'].accumulate() MR_none = eval_result['none'].summarize(4) eval_result['partial'].params.imgIds = imgIds eval_result['partial'].evaluate(5) eval_result['partial'].accumulate() MR_partial = eval_result['partial'].summarize(5) eval_result['heavy'].params.imgIds = imgIds eval_result['heavy'].evaluate(6) eval_result['heavy'].accumulate() MR_heavy = eval_result['heavy'].summarize(6) recall_all = 1 - eval_result['all'].eval['yy'][0][-1] if plot: msg = f'\n########## Method: {method} ##########\n' \ + f'MR_all: {MR_all * 100:.2f}\n' \ + f'MR_day: {MR_day * 100:.2f}\n' \ + f'MR_night: {MR_night * 100:.2f}\n' \ + f'MR_near: {MR_near * 100:.2f}\n' \ + f'MR_medium: {MR_medium * 100:.2f}\n' \ + f'MR_far: {MR_far * 100:.2f}\n' \ + f'MR_none: {MR_none * 100:.2f}\n' \ + f'MR_partial: {MR_partial * 100:.2f}\n' \ + f'MR_heavy: {MR_heavy * 100:.2f}\n' \ + f'recall_all: {recall_all * 100:.2f}\n' \ + '######################################\n\n' print(msg) return eval_result def draw_all(eval_results, filename='figure.jpg'): """Draw all results in a single figure as Miss rate versus false positive per-image (FPPI) curve Parameters ---------- eval_results: List of Dict Aggregated evaluation results from evaluate function. Dictionary contains KAISTPedEval objects for All/Day/Night filename: str Filename of figure """ fig, axes = plt.subplots(1, 3, figsize=(45, 10)) methods = [res['all'].method for res in eval_results] colors = [plt.cm.get_cmap('Paired')(ii)[:3] for ii in range(len(eval_results))] eval_results_all = [res['all'].eval for res in eval_results] KAISTPedEval.draw_figure(axes[0], eval_results_all, methods, colors) axes[0].set_title('All') eval_results_day = [res['day'].eval for res in eval_results] KAISTPedEval.draw_figure(axes[1], eval_results_day, methods, colors) axes[1].set_title('Day') eval_results_night = [res['night'].eval for res in eval_results] KAISTPedEval.draw_figure(axes[2], eval_results_night, methods, colors) axes[2].set_title('Night') filename += '' if filename.endswith('.jpg') or filename.endswith('.png') else '.jpg' plt.savefig(filename) if __name__ == "__main__": parser = argparse.ArgumentParser(description='eval models') parser.add_argument('--annFile', type=str, default='D:/Project/MLPD-Multi-Label-Pedestrian-Detection-main/evaluation_script/KAIST_annotation.json', help='Please put the path of the annotation file. Only support json format.') parser.add_argument('--rstFiles', type=str, nargs='+', default=['evaluation_script/MLPD_result.json'], help='Please put the path of the result file. Only support json, txt format.') parser.add_argument('--evalFig', type=str, default='KASIT_BENCHMARK.jpg', help='Please put the output path of the Miss rate versus false positive per-image (FPPI) curve') args = parser.parse_args() args.rstFiles = 'D:/Project/MLPD-Multi-Label-Pedestrian-Detection-main/evaluation_script/yolov5_CMAFF_result.txt' phase = "Multispectral" results = [evaluate(args.annFile, args.rstFiles, phase)] # Sort results by MR_all results = sorted(results, key=lambda x: x['all'].summarize(0), reverse=True) draw_all(results, filename=args.evalFig) ================================================ FILE: evaluation_script/null ================================================ ================================================ FILE: evaluation_script/state_of_arts/ARCNN_result.txt ================================================ 1,1.8509424,385.5025,34.075916,92.43564,0.004068177 1,617.82874,213.01526,21.317932,74.87131,0.00073474366 1,621.2999,85.17759,17.84674,53.534065,0.00040503542 1,617.1093,384.41315,22.037354,81.61331,0.0002240716 1,60.253998,208.5963,36.627075,80.82201,0.00020134078 1,611.279,127.677635,27.867676,126.48026,0.0001580608 1,4.3060613,263.98697,74.91318,217.2779,0.00012929543 1,55.3457,156.11827,35.050594,80.91371,0.00012378176 1,601.17126,179.9815,37.975403,183.31726,0.00012363264 1,2.405735,99.232414,36.497448,78.14384,7.584808e-05 1,1.8206682,131.69342,19.870426,136.00238,5.625618e-05 1,601.0312,318.29498,38.11548,165.80301,5.036889e-05 1,1.2138758,139.20737,13.966359,54.069077,4.2034644e-05 1,608.683,439.76437,30.463684,64.892365,4.003858e-05 1,1.417395,296.6046,20.748873,159.52863,2.3794037e-05 1,1.4988167,81.02112,18.539545,71.45775,1.4620369e-05 1,2.5578873,162.69936,34.624157,201.31407,1.3334804e-05 1,482.89615,161.00914,75.09836,163.00887,1.2871361e-05 1,1.5276961,219.98215,17.861868,75.33618,1.2131533e-05 1,284.2464,229.91508,75.55762,199.36015,1.1388308e-05 1,4.988939,46.031136,77.96502,273.15768,5.9978242e-06 1,613.54803,3.1076255,25.598633,54.63434,5.5822547e-06 1,325.6535,395.19946,108.44629,99.20523,5.0137796e-06 1,349.81763,439.49158,42.741302,59.37845,1.7719628e-06 1,0.77930015,12.827523,10.876419,77.18725,1.1594044e-07 1,2.3102589,17.014929,57.971046,116.36733,2.5025528e-08 1,1.2989193,5.7833495,31.179413,61.054337,3.844295e-09 2,526.5735,223.82547,23.9516,48.119476,99.05922 2,540.5893,216.29091,25.341492,52.74562,0.37893656 2,74.107895,211.6439,25.407303,47.113266,0.33763716 2,370.3564,206.74786,24.218292,50.05365,0.061153725 2,274.34525,198.59924,22.103699,45.058365,0.0018537138 2,617.7578,209.09276,21.388855,74.71657,0.001351173 2,11.562917,155.9303,44.137535,80.74164,0.000735841 2,4.561924,121.5641,54.723526,237.32881,0.00029419837 2,602.5408,141.79039,36.137085,135.99348,0.00022437675 2,601.5683,215.48418,37.57837,186.79655,0.00018334968 2,1.0043046,167.25131,14.042395,52.050537,0.00016355119 2,617.1254,367.91473,22.02124,78.5238,0.00015535243 2,616.9594,260.8516,22.187256,83.56897,9.503849e-05 2,616.05096,78.47676,23.095703,85.08821,9.2254864e-05 2,1.452867,155.23798,20.531414,162.01959,6.510626e-05 2,608.3244,439.851,30.822266,66.16672,4.910956e-05 2,291.76663,328.23346,78.96399,164.46948,3.9874725e-05 2,509.10886,183.60005,74.86374,149.09865,3.598618e-05 2,586.6324,304.21216,52.420227,176.47379,2.815122e-05 2,2.9747608,288.7718,56.8596,189.93256,1.996426e-05 2,0.8172632,406.20914,16.696352,92.17993,1.802967e-05 2,1.6256478,218.46396,33.439377,185.97296,9.538537e-06 2,1.74136,75.644516,21.94077,133.2231,7.702269e-06 2,613.35645,3.921299,25.790222,54.373795,7.3907595e-06 2,321.43494,419.52332,74.64227,77.97247,4.1152334e-06 2,3.083742,419.86853,60.51514,77.82132,3.193475e-06 2,263.70126,424.29034,84.600555,73.67786,1.8589643e-06 2,554.95416,427.1841,81.17468,72.97235,1.6513928e-06 2,186.99907,423.23508,72.53505,74.593414,1.1830618e-06 2,516.12024,428.4636,73.98169,71.664246,2.7529777e-07 2,2.8434849,21.60884,54.49798,107.502945,2.5892122e-08 2,1.4245793,12.999167,14.304408,70.786705,1.9977147e-08 2,1.2758904,1.9095606,43.285095,45.145016,2.1071497e-10 3,562.6083,231.75407,25.735046,56.184433,99.47206 3,26.61813,222.72922,31.411674,49.179382,0.068278916 3,579.0588,229.78809,23.073425,48.267334,0.061021302 3,120.04271,214.1728,18.33081,45.412735,0.025732862 3,623.58496,231.3224,15.561707,45.77751,0.017903274 3,365.2267,211.18442,22.970612,51.695374,0.017817851 3,612.50745,193.79764,26.639221,105.83862,0.0015294425 3,548.0282,213.45995,65.60419,88.21684,0.0014317583 3,340.39804,227.23172,23.988129,50.904205,0.0012800114 3,72.342094,134.20416,42.024338,108.09363,0.000452583 3,351.3302,171.85164,40.141724,111.322464,0.00042081997 3,0.61279297,398.7654,19.252712,75.5549,0.00038818148 3,600.6801,227.99704,38.466553,185.24026,0.00023342283 3,258.95908,199.9785,22.347168,45.304184,0.00017271646 3,617.10956,260.80453,22.03711,85.65256,0.00016910242 3,175.95314,211.74312,34.049667,61.519608,0.00015202197 3,128.24754,222.6241,22.738754,47.62291,0.00014577294 3,4.720114,183.92435,76.94242,281.51544,0.00013999554 3,584.35077,92.22624,52.93103,211.78609,0.000105084895 3,617.1575,321.3073,21.989197,79.66852,0.00010448251 3,1.347666,213.34286,17.89717,69.449646,7.906261e-05 3,608.5123,440.57553,30.634338,63.158447,6.47249e-05 3,1.7503288,387.57263,58.258137,103.93109,5.6736666e-05 3,3.2474837,105.64811,35.670246,179.02325,5.1704086e-05 3,0.93126225,249.25806,18.17917,78.487946,3.4593584e-05 3,1.4060905,302.5111,29.242867,153.72855,3.2825435e-05 3,616.3629,65.267876,22.783752,83.58477,3.254226e-05 3,2.039766,97.45817,17.60141,64.93314,3.159836e-05 3,515.998,136.36711,119.414856,235.70406,2.681826e-05 3,602.21124,341.99313,36.935425,148.00708,2.3375334e-05 3,0.9156397,292.44763,18.313381,77.296844,1.7944827e-05 3,1.4800138,150.58171,18.689156,91.42778,1.526436e-05 3,612.7492,2.5165527,26.39746,56.250004,5.0458793e-06 3,1.8624837,13.549122,34.673862,74.75679,5.155924e-09 4,608.43933,201.2661,29.1604,95.155685,0.028494004 4,370.9293,218.50755,25.846863,55.43364,0.02046784 4,623.30347,226.53987,15.843201,45.076035,0.01897632 4,608.9416,59.561234,28.694946,80.1369,0.0117677925 4,68.80228,206.55692,22.836296,46.9821,0.010250629 4,347.27188,224.74019,24.07022,50.285904,0.0028064046 4,65.61308,158.51294,39.54801,118.15402,0.0024648185 4,623.12024,106.413445,16.026428,47.869728,0.00082033285 4,623.567,56.729675,15.579651,47.64009,0.0008046044 4,357.0112,152.66599,40.813385,138.33096,0.00074845226 4,588.7055,201.42049,49.422424,227.4839,0.00046769905 4,595.28314,11.513773,43.863525,90.117035,0.0003629566 4,115.0646,175.94388,33.478645,70.84326,0.00034970505 4,616.2512,386.70883,22.895447,82.29578,0.00027595248 4,5.211087,153.84087,34.625107,84.92015,0.00025031337 4,613.9295,90.56558,25.217163,114.70671,0.00017942551 4,0.5169092,87.02241,13.487519,50.165154,0.00013476022 4,0.35579428,372.04025,19.633684,80.96814,0.00012985707 4,573.2482,45.267033,64.02374,240.03708,0.00012625009 4,1.2697014,162.35747,15.388565,56.429108,0.00010689152 4,608.9778,442.1959,30.168884,61.084015,6.667436e-05 4,1.4258684,82.61464,19.39301,120.558334,6.3034466e-05 4,571.095,368.6452,67.62909,119.145966,5.7553574e-05 4,2.6404557,193.29213,58.467163,259.32086,4.8728918e-05 4,1.2829175,194.69386,20.84133,109.90535,3.480643e-05 4,611.7922,291.49423,27.354492,124.861084,3.4432993e-05 4,0.92954916,320.15903,18.584452,83.510345,3.122204e-05 4,1.750498,384.63293,57.877117,108.23593,1.2035244e-05 4,0.43768474,412.9201,16.47837,87.29443,1.0128266e-05 4,48.977444,142.6119,100.0217,204.17186,7.442605e-06 4,3.2102556,65.72307,59.051258,217.18834,9.632471e-07 4,2.1745005,12.673369,34.74355,75.649055,1.4846088e-09 4,463.6122,0.73361164,44.70227,47.177353,3.2778858e-13 5,405.2648,215.99834,31.40857,69.6086,1.2793306 5,477.14203,208.0287,26.594177,45.679276,0.16870035 5,53.37591,198.17188,38.5842,82.907166,0.008599023 5,621.84924,179.54036,17.297424,52.440735,0.0016244197 5,611.64905,196.2341,27.49762,121.89923,0.0008498264 5,333.922,230.6726,22.884949,47.457184,0.0005285891 5,207.42009,263.00003,79.81462,199.02267,0.0005044878 5,1.1074789,227.01392,17.84273,75.83612,0.0003080768 5,3.817684,115.79568,45.621548,159.61008,0.00017521495 5,587.3698,205.82669,50.94763,222.92719,0.00014961413 5,617.2478,278.09564,21.898865,79.91748,0.00013727993 5,548.3028,108.54094,28.218872,61.171387,0.00012872247 5,608.587,440.67465,30.559692,62.824463,7.443015e-05 5,0.57121176,377.83133,18.984577,77.65198,7.0408125e-05 5,611.41644,317.0042,27.730225,141.01486,6.337817e-05 5,31.872005,133.74994,25.205124,65.53493,6.123743e-05 5,2.6220605,246.54756,57.09271,224.54848,5.4018026e-05 5,1.4661922,114.89806,18.175358,89.016716,4.1631865e-05 5,616.4468,125.87663,22.69989,93.02017,3.8699472e-05 5,1.3329216,174.0785,19.4694,90.18941,3.2887758e-05 5,599.7778,83.70365,39.368896,197.57706,2.7934808e-05 5,0.8503174,279.99808,18.900608,134.10657,2.717126e-05 5,579.59143,13.19403,59.555237,113.929146,2.0109139e-05 5,585.22705,396.07944,53.919617,96.76608,1.6687354e-05 5,1.2738875,73.67172,18.100357,72.30571,7.514925e-06 5,0.58667564,416.2955,16.453194,84.62674,4.7711324e-06 5,2.5183089,426.45837,53.409645,71.723145,9.628063e-07 5,268.85187,427.63608,73.77164,72.23602,4.968548e-07 5,1.2946159,9.222271,19.921944,58.812786,4.755099e-09 5,576.9278,1.0603157,47.498413,57.768986,1.5457348e-09 5,2.7112777,20.808113,57.894493,112.8453,8.2971735e-10 5,475.7649,2.9681299,45.08844,49.62824,5.8325315e-12 5,537.5457,0.22841635,44.86145,47.179058,1.7092019e-12 5,504.66336,2.6963265,42.151947,46.74714,1.6247469e-12 6,605.69604,218.00275,31.519775,75.43176,0.29369158 6,416.38083,234.43259,24.096893,46.880035,0.03426096 6,622.4946,246.44965,16.652039,51.405518,0.011209603 6,132.12636,195.14894,24.130219,48.359818,0.0045071365 6,595.6972,134.5831,39.713135,145.90399,0.0028797323 6,112.104836,177.79065,35.362694,69.31201,0.001732477 6,591.6974,177.79724,26.774475,63.80995,0.0009934875 6,624.4793,223.28514,14.667358,46.152145,0.000978533 6,587.296,219.38527,51.850647,249.75475,0.00047722337 6,566.1522,9.310404,72.121704,296.6668,0.00036790382 6,470.12637,133.97461,28.034271,57.45659,0.00034644795 6,616.46796,320.47333,22.67871,81.18823,0.00024138155 6,0.638702,400.64545,18.95776,73.86963,0.00018325598 6,596.82996,84.61094,38.798462,108.28396,0.0001658649 6,615.3915,59.40167,23.755188,94.779434,8.9532776e-05 6,611.3001,351.2791,27.846558,144.4361,8.635151e-05 6,2.2271924,101.284424,29.403187,159.55737,7.643291e-05 6,0.70921797,234.6061,13.146505,46.530106,7.635859e-05 6,1.3332047,180.10677,17.633047,73.92163,4.3527583e-05 6,4.0390253,113.526955,56.11539,238.383,3.2705037e-05 6,607.9034,4.7542806,31.243286,85.09479,2.545114e-05 6,3.430031,345.8291,57.805008,139.74481,1.9547557e-05 6,1.241753,144.5804,13.758982,59.376038,1.8950948e-05 6,0.8016252,220.24948,19.861935,136.6388,1.8227278e-05 6,474.24365,86.99482,44.598267,113.2667,1.4580294e-05 6,0.85709554,309.15482,19.562702,132.92825,1.4043278e-05 6,1.8250269,71.237915,18.681446,74.833176,4.4703843e-06 6,458.27823,54.331917,86.44266,212.51556,6.5343477e-07 6,3.0940886,27.509388,55.113815,105.061874,1.7633067e-08 6,585.13635,0.5045508,46.14801,50.859886,1.3180486e-08 6,396.3908,3.9403386,44.373047,47.0222,7.815379e-09 6,2.0674708,15.293233,32.910805,67.94677,3.888334e-09 7,573.56335,225.26224,25.167114,59.73517,0.19410054 7,0.45318034,103.39306,55.444397,137.24835,0.043649416 7,456.15695,192.71208,43.78488,77.25252,0.019251566 7,605.58264,69.97655,33.564026,91.27135,0.009948154 7,56.64006,188.04666,25.941101,51.82373,0.004622431 7,340.19473,215.02182,22.70282,46.96997,0.0041754358 7,615.92395,301.0479,23.222717,79.59213,0.00249401 7,602.4254,228.67621,35.803223,168.26279,0.0013217706 7,563.05884,206.26648,57.96454,122.77658,0.00088526175 7,618.3753,225.26086,20.771362,79.24841,0.0004020409 7,1.4422722,102.732765,20.648037,105.483604,0.0003587465 7,611.01434,323.3474,28.132324,171.59683,0.00032111685 7,478.46393,217.95876,39.94818,112.37056,0.00023217293 7,1.6546769,154.6937,30.53026,165.58627,0.00017385407 7,511.99423,209.26396,41.666534,113.5396,0.0001039841 7,593.34357,430.0692,45.497192,69.5448,7.343965e-05 7,1.2538627,62.32043,14.419993,57.0303,6.044566e-05 7,1.1725705,141.1627,11.486143,46.761063,4.4879496e-05 7,584.8781,14.0118885,54.182922,118.03267,3.8489452e-05 7,583.80994,54.313606,54.525208,267.76254,3.0846317e-05 7,4.309759,75.180466,101.84298,239.74992,2.8018534e-05 7,0.75548506,240.09209,18.450335,80.51167,2.7712607e-05 7,615.74585,116.6153,23.400818,96.280556,2.3352028e-05 7,1.1057585,340.13034,18.624912,124.29697,1.9291616e-05 7,613.70844,0.0,25.438232,45.74651,1.52611e-05 7,1.633671,251.9233,32.025856,184.1049,1.1941345e-05 7,0.821604,303.93396,18.173143,77.19937,8.3269e-06 7,3.394681,338.12302,57.267002,143.71033,4.79928e-06 7,0.70640707,419.54877,16.408535,81.7413,2.8701902e-06 7,0.73668665,13.083956,8.623395,87.443054,4.884383e-08 7,585.18744,2.4094548,44.461365,55.44652,1.9964578e-08 7,1.5315577,12.184886,32.717014,75.73325,4.814878e-09 7,470.34747,1.9265511,44.526917,46.49535,4.342131e-12 8,600.8969,146.40915,37.649475,104.17972,0.14382832 8,583.66833,89.202255,53.655945,238.91234,0.06230735 8,594.7614,162.4324,23.880371,53.889557,0.018325364 8,606.94586,220.92842,31.45166,120.083084,0.007857407 8,625.12366,242.07948,14.02301,47.67079,0.0046833837 8,4.4829884,123.910645,47.886795,140.33133,0.004561937 8,618.4284,112.71661,20.718262,72.24841,0.002081282 8,624.14404,272.01047,15.0026245,46.586884,0.0017919355 8,501.2502,161.69728,27.955536,62.141678,0.0010955431 8,623.4881,75.958496,15.658569,47.57408,0.000990297 8,621.2563,155.29355,17.89038,55.5345,0.00081719935 8,512.70337,160.61263,40.658813,72.593994,0.0006267311 8,604.19434,43.971184,34.95233,100.79861,0.0004702215 8,623.41266,40.772655,15.734009,49.50635,0.00040222923 8,624.03534,186.16815,15.111328,46.539795,0.00039201486 8,464.32657,172.40694,34.9299,72.7664,0.00032818312 8,20.241413,118.087555,31.568394,68.49429,0.00023594021 8,611.6028,328.39902,27.543884,155.51202,0.00022364035 8,1.4087183,135.01637,20.964605,104.04666,0.00016146395 8,1.7083708,53.676865,19.211546,68.0697,0.0001337054 8,605.92285,430.92456,33.223816,73.780914,0.00013181765 8,616.79767,298.4671,22.348999,87.19177,8.5189684e-05 8,0.79801106,229.48657,18.79648,82.89691,5.02568e-05 8,42.521534,101.200066,67.07289,135.09558,4.795231e-05 8,606.4533,0.0,32.69336,73.90766,2.8637329e-05 8,2.1988037,182.83948,32.315815,200.12909,2.2622038e-05 8,0.9776961,323.91064,17.045599,129.03613,1.8441924e-05 8,0.7878996,282.878,18.232645,77.73868,4.779129e-06 8,3.5121891,337.17053,57.02468,143.80365,2.021296e-06 8,0.6659839,418.96536,15.974746,82.466675,1.6297425e-06 8,1.8646795,28.550177,35.55579,162.23306,3.4547332e-07 8,1.2084652,11.095387,15.443495,78.11335,7.6946414e-08 8,523.6114,3.1994922,45.513123,60.07021,1.0006928e-09 8,2.0054395,2.903869,39.67405,46.871944,2.827352e-10 8,489.2834,1.3808398,45.133423,51.85965,1.6836534e-12 9,2.2710433,157.89128,49.530205,77.966324,0.17673907 9,347.82397,85.6875,25.668182,50.76187,0.017132193 9,474.06323,237.98267,25.517365,51.598236,0.0038654841 9,610.4937,135.7439,27.265137,57.23488,0.0022950475 9,599.0461,202.39381,37.033325,85.14787,0.0018777837 9,582.817,193.63466,29.44629,63.613846,0.0015634913 9,616.35034,230.88892,22.796326,81.73605,0.0015267158 9,614.51904,34.20234,24.443726,78.049515,0.00088110776 9,584.02875,104.52336,52.70984,236.50398,0.0008685136 9,617.48737,294.16022,21.659302,79.12601,0.00048130954 9,0.8608248,231.66362,13.547371,50.612778,0.0003728054 9,1.5031853,121.39,20.63635,90.0952,0.00032330287 9,599.4047,226.40698,39.057922,186.85968,0.0002466038 9,1.3096753,159.97066,20.35534,148.21114,0.00017681113 9,4.354818,139.94965,54.619946,248.75745,0.00011495049 9,611.15393,345.69385,27.992737,142.3388,8.470459e-05 9,470.79083,211.9133,42.009583,111.289246,7.5172546e-05 9,572.9857,421.11203,65.696594,76.60397,1.6993226e-05 9,528.04834,143.70691,29.191223,56.693542,1.6518314e-05 9,1.5250969,230.2144,28.089556,161.37447,1.3839988e-05 9,0.88990563,381.1937,19.261982,112.193726,1.3286995e-05 9,565.6383,15.625775,73.50836,144.87332,6.408368e-06 9,543.78705,137.38892,25.75586,54.11702,5.876602e-06 9,0.6017863,302.758,13.951424,49.327545,4.0571854e-06 9,3.3681235,340.82697,56.478832,140.67639,2.5664501e-06 9,500.68085,429.0506,74.50665,70.308624,1.7920128e-06 9,454.5375,428.80795,73.60092,70.42871,7.541054e-07 9,586.0144,0.70155764,42.89746,49.597725,1.15098764e-07 9,1.6691041,31.686316,35.642406,183.83167,9.1343885e-08 9,1.5460775,8.179844,35.114914,82.35573,4.7766197e-11 10,458.96927,169.64203,32.949554,77.30113,0.27586952 10,561.4409,164.49203,24.38562,45.303253,0.06410653 10,608.44183,47.664284,29.902405,69.811005,0.007046207 10,528.82837,159.54468,46.409546,81.37749,0.0026634375 10,622.1261,219.22478,17.020569,49.71602,0.0015428232 10,352.1666,87.70353,37.766937,77.19489,0.0014982452 10,602.0781,113.57414,37.068542,86.40311,0.0013522636 10,617.467,239.0699,21.679688,90.40236,0.0006452414 10,569.5294,28.476511,67.56653,255.60109,0.0003842611 10,621.2936,93.115105,17.853088,54.870277,0.0003553164 10,610.369,144.318,28.777649,156.1026,0.0003279444 10,503.57126,43.51581,26.17331,57.701775,0.00028158948 10,3.158724,165.42085,37.01272,85.709,0.0001041719 10,1.1215731,227.25969,18.384039,67.99992,9.271235e-05 10,611.69086,317.49353,27.45581,149.51529,8.8530214e-05 10,608.36633,436.323,30.780334,67.010925,8.112716e-05 10,588.3084,207.89432,50.443604,235.90497,3.8275026e-05 10,1.7638428,214.70677,27.928192,149.468,2.8516868e-05 10,4.0449514,153.72913,56.370373,230.05618,2.1342265e-05 10,33.450977,127.134315,40.713566,87.06275,1.4804422e-05 10,0.7521525,335.4613,17.832283,130.96799,1.3874625e-05 10,1.6912231,138.98798,19.892202,85.51843,1.1498981e-05 10,0.88342774,297.58673,18.025295,72.634674,9.536354e-06 10,609.4261,8.797301,29.720581,56.779305,3.2196635e-06 10,515.7397,388.89764,117.907166,101.58957,2.0498517e-06 10,3.4378564,336.53302,56.745674,144.70245,1.8953003e-06 10,0.67064863,418.01047,16.056198,83.01279,1.8656424e-06 10,1.4941244,62.260406,19.182758,76.77559,4.5212403e-07 10,444.58142,6.7524548,40.240845,75.542755,7.7098425e-09 10,1.4351938,19.689362,60.429577,218.93002,7.4270514e-09 10,530.8327,5.4001613,44.064392,47.021313,2.8659133e-09 10,578.88654,5.904077,45.349426,48.849922,1.5579413e-09 10,365.46588,3.8528256,45.65851,49.2769,6.433535e-10 10,339.0906,3.1821957,45.687805,47.78997,4.414722e-10 10,460.12445,4.8231983,46.83383,46.490654,3.2900546e-10 10,425.30502,2.8459961,43.599792,49.690445,3.0817845e-10 10,312.3094,1.9721811,43.933746,48.030754,2.9106936e-10 10,0.07877279,5.4981318,41.105785,94.62658,5.2398905e-11 10,0.38447592,0.0,22.88285,47.862934,3.5567831e-12 11,585.38,126.5437,47.356506,221.83685,0.26831362 11,604.561,244.43665,34.47638,88.66788,0.021415649 11,399.39526,222.39816,29.035217,52.40573,0.017627321 11,609.57886,145.84552,26.715088,68.847534,0.009892928 11,621.4962,284.5825,17.650452,61.566803,0.004622722 11,593.7943,69.87894,34.951355,72.7464,0.0036091097 11,625.3338,152.47469,13.812866,46.81894,0.0015354372 11,442.03735,110.59645,25.290588,60.703796,0.0013020532 11,616.5778,175.08899,22.568848,103.000275,0.00039258238 11,619.7649,81.00258,19.381775,53.801895,0.00038226545 11,609.70105,321.5334,29.445618,155.08392,0.000283614 11,478.14215,117.05498,43.29071,142.61153,0.00013811406 11,285.95187,195.22124,23.035675,46.363632,0.00013597774 11,0.9186719,251.04149,18.539412,82.146255,7.381601e-05 11,607.2064,23.821966,31.940247,177.9656,6.4414795e-05 11,39.68763,138.6328,42.271095,127.45555,6.161833e-05 11,1.5035893,116.03757,13.5550585,51.336166,5.0442344e-05 11,572.05426,415.81616,66.5863,80.52667,3.3384647e-05 11,1.4872258,265.79095,27.239183,147.21375,2.4914829e-05 11,0.8418559,310.17938,13.538483,47.50174,2.0650745e-05 11,2.3220086,175.70946,31.879927,170.90947,1.6089478e-05 11,491.62726,160.2177,22.199158,50.279465,1.5813197e-05 11,1.7891399,147.89838,18.353336,85.27252,1.4374028e-05 11,0.8803703,347.1153,18.265003,129.31622,9.592102e-06 11,3.46042,234.03813,56.007774,222.43517,3.5267058e-06 11,2.3081796,76.522896,35.653572,182.63919,3.42094e-06 11,2.7222412,385.7796,56.903946,104.46103,1.2192852e-06 11,1.3552816,73.46756,13.631131,54.202675,4.7306608e-07 11,582.4335,0.6813412,46.58374,56.628113,2.449614e-07 11,1.7616838,33.40478,20.771109,139.47131,6.5159336e-09 11,0.40460125,17.561653,57.25407,122.75672,1.3931852e-09 11,552.7129,1.9514698,42.725403,55.097347,3.1358313e-10 11,0.81685466,5.0503583,21.175955,68.22888,1.9585156e-11 12,603.8082,168.68811,31.590881,91.086945,1.5572175 12,25.110826,209.99936,29.845224,46.12393,0.584512 12,451.36313,233.29936,35.115723,54.868515,0.57072496 12,72.5466,197.66516,27.109161,51.63315,0.043464 12,621.8523,186.68738,17.294373,48.42932,0.018226733 12,590.8959,135.77281,46.998962,220.30455,0.010696515 12,581.35846,137.45383,42.32715,100.554306,0.006224507 12,421.52295,206.98134,21.199188,45.249573,0.0057524024 12,618.64044,210.29932,20.506226,60.730408,0.0052062958 12,99.117935,203.48456,26.1829,49.752945,0.0042994646 12,619.48145,141.2949,19.665222,68.89711,0.0013881226 12,593.5515,149.34029,25.383484,48.579407,0.0013046958 12,612.05676,63.934483,27.089905,97.72943,0.00032958825 12,610.52716,297.5411,28.619507,141.24844,0.0003081614 12,1.3682089,219.24605,18.040882,68.33269,0.0002891532 12,616.78143,264.17236,22.365234,83.406525,0.00015445147 12,564.3964,192.31165,26.798096,49.43161,0.00014333143 12,1.8477345,196.75186,28.048151,149.1683,0.00010166621 12,609.19147,437.58298,29.9552,65.963135,6.638308e-05 12,4.3465543,196.25102,56.12995,232.20424,5.991701e-05 12,5.2056155,121.765495,68.067726,166.40372,5.4574884e-05 12,1.312548,132.05536,20.35383,100.591156,5.15032e-05 12,596.4362,6.0015497,42.128235,83.13987,3.4184035e-05 12,572.9035,355.55795,65.876526,131.60449,2.9895165e-05 12,560.03436,47.988754,36.56781,81.3925,2.1523569e-05 12,0.9441105,346.8652,17.456932,126.95914,1.2806173e-05 12,0.60996866,302.46072,13.827007,48.21164,7.0605884e-06 12,490.325,426.75705,78.81293,72.427765,2.954428e-06 12,2.707513,386.87088,56.25184,102.66803,1.7129539e-06 12,0.8354647,441.03854,21.705038,61.942444,9.1109735e-07 12,547.83405,425.67996,77.89221,73.73828,4.5736365e-07 12,1.7170264,27.192768,18.524103,142.14847,3.086694e-08 12,1.682321,17.39875,56.103657,117.094505,1.7888854e-09 12,1.1374089,8.148216,21.831282,59.092163,3.4402994e-11 12,533.5833,5.0369534,47.978943,48.764824,3.108419e-11 13,69.864395,198.62927,28.739029,48.304794,0.09872824 13,551.7971,203.92595,24.709778,45.005356,0.02420426 13,449.17813,195.7033,43.968384,93.49895,0.004882555 13,620.0649,199.02415,19.081787,59.356644,0.002299418 13,1.5247934,204.82323,12.725892,49.96469,0.0021827524 13,597.96,177.77504,37.018677,79.5302,0.0019520392 13,572.3109,118.11784,64.04254,179.91344,0.0015266999 13,411.65765,222.12875,33.339844,54.002136,0.0010376238 13,617.22687,72.268326,21.9198,73.43088,0.00080212223 13,610.2623,212.77211,28.884338,141.92943,0.0006339029 13,2.2904623,172.91948,30.894062,118.27843,0.00029550365 13,597.5574,28.05405,40.68329,183.28792,9.7106684e-05 13,611.2012,340.0158,27.945496,148.70801,7.258793e-05 13,2.711512,141.1016,58.8376,208.50919,6.955898e-05 13,614.736,134.1318,24.410645,103.193924,6.8024936e-05 13,1.0061694,215.26819,19.570732,147.90048,3.948127e-05 13,594.0409,433.91553,43.716614,67.10031,2.2850925e-05 13,0.9076807,347.80945,17.325493,127.35843,1.0508254e-05 13,431.62787,170.69344,93.67908,186.65746,5.3722024e-06 13,1.4296777,86.26602,20.322556,160.86671,2.1393655e-06 13,3.2248259,339.86945,56.82274,141.44165,1.9822724e-06 13,527.0613,427.8463,75.25012,69.523285,1.386113e-06 13,1.4429574,413.8956,34.7525,83.69458,9.983721e-07 13,1.317614,16.91824,55.54198,108.750626,5.886832e-10 13,0.40564778,2.7088525,30.640493,46.218586,1.08244125e-11 14,24.613354,204.81279,35.874798,50.443832,82.561905 14,7.645866,189.78902,28.66127,69.86659,0.10500461 14,603.1365,194.57161,26.617065,56.293472,0.057546295 14,622.1511,200.82407,16.995544,56.92752,0.02103467 14,457.2674,221.97704,21.235107,47.317123,0.02041128 14,598.61096,85.84499,38.810974,216.30423,0.002960731 14,610.8696,218.27309,28.277039,134.26802,0.00092411047 14,586.1113,27.199295,52.082153,92.264565,0.00042421435 14,16.274475,113.97857,51.10676,149.97824,0.00019307567 14,568.1615,195.24089,39.861816,71.3683,0.00018153289 14,602.8639,303.8828,35.985107,179.611,0.00017699871 14,1.0634791,217.09187,19.294361,78.39354,0.00011339867 14,537.5423,121.64913,28.159363,56.84974,9.3974435e-05 14,287.0248,190.94583,22.078796,47.059464,8.998029e-05 14,608.11957,5.8544335,31.0271,62.705784,8.8639536e-05 14,608.3312,434.3209,30.81549,68.22266,5.9812475e-05 14,1.2384505,168.64095,14.17852,54.639084,5.1335395e-05 14,1.9920777,194.46782,31.217846,194.51631,5.0292958e-05 14,464.8183,172.01204,73.6781,165.5205,4.8964164e-05 14,1.7371485,119.976875,21.587889,148.46002,4.654e-05 14,0.8541447,343.3562,17.092964,127.85916,1.5612848e-05 14,39.462734,135.53575,40.379055,83.917175,9.408783e-06 14,526.7779,102.05844,48.995483,136.30724,5.0860754e-06 14,3.314206,333.67548,56.469482,146.15485,2.2474387e-06 14,1.3780241,412.54575,34.745327,84.48657,9.636348e-07 14,1.2289095,10.144024,34.77941,78.3132,8.515807e-09 14,560.91327,4.2143965,67.74963,46.209785,7.630753e-09 14,409.98776,1.4687614,42.680267,51.720016,8.4793667e-10 15,525.78754,215.412,30.623169,56.62755,5.548457 15,425.47684,204.46936,25.227661,46.2928,2.9453607 15,617.5312,194.08246,21.615479,81.12799,0.002741919 15,530.8529,247.8411,24.11914,62.214905,0.0025034943 15,599.7466,188.5587,38.420532,175.81325,0.0005339103 15,621.0533,112.497604,18.093384,57.23076,0.0003199052 15,442.98987,214.68245,22.018463,45.98033,0.0002733562 15,1.4221574,198.22969,19.666456,130.43193,0.000201384 15,3.0769906,133.11671,29.862516,139.3845,0.00017270543 15,612.01465,300.79102,27.132019,144.60477,0.00012392066 15,0.6339205,235.9974,13.46312,50.02304,8.5510874e-05 15,607.76794,59.901936,31.378723,148.57349,7.819399e-05 15,489.36502,143.16782,135.0032,226.06772,6.7045716e-05 15,608.6457,431.50385,30.500977,72.37631,6.358546e-05 15,572.593,350.41364,66.02997,135.08752,3.1088664e-05 15,0.9134188,350.48862,18.352373,126.3515,2.7399674e-05 15,3.9970102,195.22495,54.75669,230.83612,2.5100564e-05 15,0.61661583,289.03918,13.763641,48.281494,1.0706317e-05 15,584.03827,15.599125,54.35797,110.13501,8.497323e-06 15,0.94622153,438.53815,19.774237,61.035522,6.4183737e-06 15,0.846766,270.49557,19.593052,142.4726,6.4130263e-06 15,3.4052052,388.3573,55.504093,99.409485,5.1487577e-06 15,584.3764,3.1990902,44.451843,45.836536,1.944742e-08 15,1.6715398,12.908587,35.233974,73.95762,1.0674371e-08 15,401.72882,4.6773257,44.65146,45.132668,1.974673e-09 15,426.93524,4.2016945,46.612213,48.572643,1.6302502e-09 15,557.8012,2.0497885,42.731995,49.069813,2.8459247e-11 15,532.78326,1.8884685,42.91974,49.199013,6.714458e-12 16,573.54236,220.65732,26.075562,67.07794,93.59963 16,442.31116,206.6051,21.398712,57.39087,92.38214 16,455.03772,205.52391,21.250885,55.247818,73.66798 16,360.97073,208.05814,23.510284,46.17653,0.03484574 16,599.7172,213.0944,23.994934,53.430466,0.0070378794 16,558.0472,186.70813,58.606873,117.990295,0.0030852293 16,615.366,206.19849,23.777588,81.929596,0.0013635895 16,432.15637,185.7844,42.432922,105.1868,0.0011584153 16,603.2324,223.59198,35.20233,158.7333,0.0010551213 16,9.511734,114.15234,44.85233,86.105515,0.00061393355 16,601.1299,307.5837,37.53473,179.936,0.0003961723 16,44.826836,227.4392,25.453476,49.1165,0.00017770012 16,0.81175214,236.9152,18.261555,72.1335,0.000107329746 16,524.3682,125.49014,110.60364,255.45407,6.641429e-05 16,608.57825,434.16113,30.56842,68.94061,3.832061e-05 16,600.918,87.230064,36.953125,206.5998,3.555574e-05 16,608.7217,1.6444792,30.332275,136.01468,2.286928e-05 16,418.7002,137.09035,90.29669,223.33629,2.131887e-05 16,1.8640796,107.7753,20.277441,135.29369,2.0396186e-05 16,1.2440072,277.33337,19.431854,138.20703,1.8637473e-05 16,0.9136564,381.9812,19.345764,109.39664,1.1834944e-05 16,4.4301305,132.35248,57.36958,250.85529,1.1017892e-05 16,1.8028955,172.58856,29.230865,154.84134,6.23951e-06 16,3.3345509,344.6997,56.4793,135.26025,2.3021532e-06 16,398.625,0.0,66.46985,58.269753,1.8821917e-09 16,1.6010889,11.790752,35.029186,79.58353,1.7078422e-09 16,484.48206,7.994891,46.59082,51.880825,5.8543825e-10 16,375.05548,0.0,44.03662,55.773304,3.6687675e-10 16,446.81558,5.428387,45.958344,54.673996,3.0517192e-10 16,510.3987,5.8614664,44.989594,47.8285,2.1762977e-11 17,621.26135,205.56688,17.885315,71.91405,0.11875563 17,605.65,288.9759,32.516296,82.34943,0.02808609 17,554.07153,205.76463,21.095764,47.571594,0.009771269 17,604.14233,142.29411,34.4281,213.56221,0.005480443 17,611.22327,89.92095,27.608765,56.949608,0.0047350777 17,490.91177,197.77248,22.133942,50.294632,0.00295136 17,623.88086,324.20044,15.265808,50.142273,0.0029412399 17,620.91907,252.14485,18.2276,74.919754,0.0016072551 17,589.6785,274.6555,48.18329,197.55072,0.0007985821 17,432.3972,165.0957,58.022522,109.377106,0.00030403724 17,1.4088273,219.19855,18.403008,71.05194,0.00023323148 17,2.4972575,116.0159,30.424404,130.0139,0.00018053567 17,611.71515,357.75415,27.431519,143.1529,0.00017391313 17,620.7723,118.01046,18.37439,56.142128,0.0001421386 17,440.74927,143.94893,93.95044,208.72337,5.4990436e-05 17,1.0336125,244.46313,19.67421,145.89636,3.0626066e-05 17,599.5267,11.022214,39.619995,232.37622,3.04841e-05 17,614.7372,20.192493,24.409485,88.4366,2.115785e-05 17,4.056587,151.0772,57.845783,234.44902,1.4691874e-05 17,0.9081511,339.31195,17.64886,127.85812,1.4429557e-05 17,555.36926,420.8723,74.96051,75.56607,6.376374e-06 17,0.54159427,416.11874,16.32091,85.17294,2.0420432e-06 17,3.3370492,339.9506,56.729008,140.20328,1.9174001e-06 17,586.2539,4.3353434,42.461548,50.98902,4.2442547e-09 17,518.263,4.0498567,42.112488,48.28606,2.0140734e-09 17,1.6572397,9.284203,35.101036,78.9599,5.631845e-10 18,465.46945,216.19092,22.409943,46.008575,99.72409 18,450.95688,216.19597,22.33786,45.67479,99.53933 18,62.87689,203.76987,25.438663,46.741837,4.074615 18,501.0874,211.17206,24.599548,58.22583,0.052538875 18,581.53827,390.8743,55.588135,102.05957,0.0023424446 18,598.5922,248.89305,39.622864,218.4102,0.0013448339 18,266.90253,192.73761,22.891937,46.94586,0.00046959767 18,614.12085,290.6568,25.025818,91.65018,0.00040300252 18,440.87714,176.14427,60.43512,113.874344,0.00033044085 18,612.4569,208.67735,26.689758,132.66609,0.00025533268 18,1.3441553,223.09425,18.15731,62.40706,0.0001998946 18,1.6168946,161.38774,29.679556,140.52153,8.892631e-05 18,0.8711491,239.89214,19.958504,150.76543,3.811599e-05 18,0.7659204,337.54166,18.061853,135.7367,3.0243984e-05 18,602.95276,89.46214,35.746582,184.47758,2.8737733e-05 18,1.2840353,124.27983,15.413058,51.51837,2.7446333e-05 18,3.4846795,203.47859,56.786877,231.40755,2.2712224e-05 18,597.5612,0.0,41.58545,86.2135,1.3815381e-05 18,1.6405803,78.99542,21.830278,160.04327,8.994411e-06 18,417.79288,141.29886,145.21371,198.89056,6.179534e-06 18,37.59783,168.37221,83.29618,158.13213,3.3095348e-06 18,2.677845,392.64737,56.462574,99.12128,3.1372078e-06 18,579.3312,0.6754899,42.663513,51.34341,1.6137655e-07 18,2.3841438,10.185892,55.876625,134.36107,1.3359938e-08 19,481.4798,216.01059,25.117676,48.06714,99.90921 19,463.20596,216.23907,24.653625,47.004578,99.897255 19,364.63013,223.6679,31.871948,46.712357,5.5768194 19,4.3049765,203.67899,39.31727,61.76068,2.0089624 19,523.6935,206.34737,31.937622,62.29323,0.05481508 19,1.2318408,211.23212,14.358868,59.408356,0.00426941 19,613.86017,139.05234,25.286499,93.91873,0.00084613555 19,618.2572,239.70508,20.889465,73.58444,0.0006244336 19,463.848,186.74057,58.983917,104.94418,0.00038132022 19,612.14996,366.49734,26.996704,130.9447,9.9424484e-05 19,4.2916293,186.26271,56.070564,239.11653,6.892125e-05 19,601.2212,172.56496,37.925476,171.59059,6.48379e-05 19,617.3311,306.28033,21.815552,82.31055,6.4793705e-05 19,598.29504,51.796608,40.672363,203.06601,4.3847722e-05 19,587.4859,226.77701,51.539062,251.0408,3.722934e-05 19,1.1630908,213.44589,19.893349,146.71387,2.900813e-05 19,610.96674,1.4895345,28.179932,59.262672,1.0416916e-05 19,0.93373454,329.93027,18.164032,73.69064,8.140014e-06 19,1.0061182,355.59036,19.578997,127.86627,6.7450655e-06 19,432.43365,155.37337,143.04779,191.12715,6.6190714e-06 19,0.9551319,443.32474,21.692984,59.24945,3.0692258e-06 19,1.4406193,93.111984,31.281012,176.40822,2.9536393e-06 19,3.736115,346.9735,58.007298,140.99344,1.7889528e-06 19,386.15372,427.95758,79.23297,71.83841,1.3207375e-06 19,446.41544,427.18475,76.62802,73.94592,8.599958e-07 19,1.6166375,11.833151,55.146526,129.60704,1.3132305e-08 20,488.10272,218.02039,26.3667,53.67737,99.958916 20,513.4861,218.1036,26.26587,53.95694,99.9392 20,383.17102,219.62094,28.936035,52.040283,1.6316149 20,563.73285,214.4986,35.619995,58.90518,0.16704121 20,608.505,202.3304,30.626648,66.60426,0.03192188 20,1.1750065,202.25389,28.955248,59.465714,0.021208385 20,14.554671,195.82149,26.067463,46.258957,0.003226825 20,620.3079,252.8813,18.838745,66.003494,0.0012436851 20,603.4817,226.28658,35.664978,149.39256,0.0007677812 20,472.0103,194.44681,63.678528,96.24835,0.0004175475 20,617.31696,319.41278,21.829712,82.12714,0.00018449503 20,585.6373,111.89072,51.80121,206.39908,0.00016367009 20,617.55347,409.64508,21.5932,76.58255,0.00010697545 20,1.4576945,197.67192,32.93644,194.35237,8.909363e-05 20,461.83594,158.73091,140.8742,223.51433,4.8005437e-05 20,597.1484,168.63011,25.657654,61.365494,3.6666766e-05 20,611.0865,1.4089681,28.06018,58.948025,1.6166905e-05 20,586.8542,326.50314,52.29248,160.4212,1.6153805e-05 20,0.8195451,325.39804,20.089443,129.46582,1.2131881e-05 20,359.36713,165.98222,94.54675,186.53908,1.1546443e-05 20,0.7892237,264.65894,18.568428,78.806946,4.913654e-06 20,0.73951745,421.0859,15.77067,80.47885,2.2983318e-06 20,3.2717254,332.10092,57.688538,150.1734,1.4321084e-06 20,2.7979264,98.14571,56.826084,229.07788,9.950605e-07 20,1.26073,106.4553,18.602316,150.58374,2.89599e-07 20,2.3355045,11.678666,54.793907,123.20465,2.0142664e-08 21,540.39087,215.58946,28.665588,62.431076,99.95733 21,571.9476,214.74995,29.407898,62.736557,99.89881 21,409.1646,206.65135,33.6243,71.97148,3.1257226 21,327.40637,200.58862,22.45401,45.283615,0.029055396 21,611.3842,204.80904,26.721191,48.496338,0.011646447 21,562.6543,223.3461,21.04181,48.574524,0.00512533 21,618.07227,221.59967,21.074402,79.4418,0.0016608634 21,593.02295,222.91188,21.31549,46.53273,0.0012193653 21,621.9471,305.22098,17.199585,53.36667,0.00036278355 21,621.71796,337.91168,17.42871,53.117493,0.00024509785 21,602.486,205.86644,36.621155,172.7296,0.0002203635 21,470.92856,123.0669,48.933075,111.76737,0.0002130872 21,550.566,181.76459,81.04675,142.04398,0.00020499162 21,617.5696,403.02716,21.577087,76.84744,0.000102723854 21,435.5575,145.7519,36.622772,70.45534,6.210178e-05 21,611.25146,303.08612,27.895203,142.48978,5.314052e-05 21,0.71596354,212.35756,18.48678,74.77855,5.291356e-05 21,603.0817,78.753235,35.41748,192.23413,4.190552e-05 21,463.3581,147.7679,27.780823,58.39792,2.2826529e-05 21,0.8379175,390.84286,18.352365,72.67996,1.2483775e-05 21,611.21515,1.0587858,27.931519,59.96929,8.671497e-06 21,572.54535,360.4775,66.60132,129.496,8.652828e-06 21,0.796919,266.74908,18.245474,73.96146,7.65768e-06 21,3.44779,192.36006,57.64992,228.72993,7.0751753e-06 21,0.88599205,309.09225,18.181944,71.4173,6.9667863e-06 21,0.75984377,349.63522,18.42573,72.87558,4.686192e-06 21,1.6436931,352.7558,33.31566,137.88495,1.9373947e-06 21,1.8342245,118.236176,33.732037,174.38013,4.510878e-07 21,1.7653793,8.985088,34.282112,80.921005,8.055041e-09 22,451.8798,213.81102,26.102295,54.381943,98.13551 22,430.011,219.42754,24.562103,55.365494,0.107773975 22,498.21298,192.93216,39.672394,136.96628,0.046284862 22,344.49005,205.14128,27.975616,57.362503,0.03597073 22,17.431067,183.88052,44.323326,73.99927,0.01325218 22,514.7931,217.58191,23.530518,51.41046,0.00440756 22,434.4217,169.09003,61.871613,131.84833,0.0033166467 22,440.08716,92.855576,37.0477,72.75627,0.0027506454 22,484.53564,153.38914,37.040222,92.723465,0.0022562502 22,622.1566,254.90672,16.990051,52.35161,0.0008898273 22,619.79474,207.98538,19.351929,47.83835,0.0006399918 22,611.34064,240.72047,27.80603,137.59999,0.00057471974 22,522.2303,104.54031,33.049988,60.24774,0.0004524885 22,487.1543,105.690475,35.964478,81.05702,0.0002588159 22,611.7059,181.93819,27.440796,117.2404,0.00022462833 22,410.23035,132.55739,140.35706,219.68141,0.00020541393 22,612.33124,353.86337,26.81543,141.59372,8.306926e-05 22,611.32355,77.36658,27.82312,157.20863,3.4585006e-05 22,1.1841333,244.4122,19.662254,137.79623,1.768675e-05 22,586.69214,112.83875,51.51947,213.99667,1.4960971e-05 22,3.416766,186.4189,57.549385,240.36412,1.46207585e-05 22,1.9055103,183.19907,28.379889,140.40402,8.29624e-06 22,0.91469157,337.04004,19.992779,133.73633,7.815449e-06 22,612.0543,2.939419,27.092346,56.00928,5.5340925e-06 22,13.145632,122.25803,37.662224,86.05952,4.2736433e-06 22,0.83749026,423.05576,16.31853,78.85675,3.0307963e-06 22,5.2570767,352.39517,79.57642,136.75879,1.4614799e-06 22,1.5914755,100.7021,18.254894,141.46681,2.8493196e-07 22,1.5787126,7.8112698,34.399456,81.98342,5.8371703e-09 22,348.78323,2.5460336,45.35797,52.933807,1.9017323e-09 22,386.56848,2.8621337,43.480774,48.56163,6.903018e-10 22,474.0338,1.3998454,65.59711,46.076797,6.274489e-10 22,436.18613,3.130801,45.439087,49.69478,1.1061114e-10 22,544.818,1.1948389,43.539185,47.511868,4.979391e-11 23,519.8511,205.84526,29.77417,74.929214,99.90435 23,479.84918,212.95995,21.494781,45.977463,78.492805 23,537.92926,200.14749,27.07959,53.545303,6.0779915 23,490.97693,208.33592,26.67395,52.02156,1.7729263 23,361.54968,201.96667,21.69217,52.481644,0.23386411 23,612.72687,226.2358,26.052368,49.362747,0.01356669 23,603.9633,170.28644,34.709778,152.1748,0.002178344 23,606.52374,60.951942,32.622925,190.75757,0.0011229046 23,617.7753,146.91545,21.371338,72.8864,0.0007433194 23,493.65002,196.79948,68.0509,142.29387,0.0007430366 23,613.3859,260.91672,25.760742,143.64078,0.0004879993 23,607.95123,10.793112,31.187927,110.194,0.00020509565 23,559.94135,80.57922,34.810425,73.946686,0.00019150376 23,606.2039,429.89847,32.94275,76.02057,0.0001775121 23,2.462484,185.57591,29.068636,138.49419,7.134461e-05 23,469.94147,127.474915,142.1297,236.18567,4.697109e-05 23,588.3083,323.07468,50.250427,169.8995,3.0063162e-05 23,0.9925643,343.8537,19.419336,126.819916,2.6033635e-05 23,3.3051434,234.52225,55.50341,232.91974,2.1760297e-05 23,2.5021517,108.42148,42.020596,140.76852,1.9467301e-05 23,1.7471575,121.69739,20.09763,83.82478,1.40708535e-05 23,1.1699439,287.96036,20.268415,102.51221,6.0845764e-06 23,0.7834717,420.27768,16.277493,81.32901,2.2269103e-06 23,2.821924,389.6452,56.99144,103.94211,1.443324e-06 23,584.537,3.4392025,45.552307,60.29063,7.495879e-08 23,419.81613,1.8277962,63.72592,54.43322,1.407639e-08 23,1.6422836,7.9811006,33.723633,79.595085,3.7723344e-09 23,388.5449,2.0176678,46.21344,51.30931,8.4006646e-10 23,559.20447,4.580604,42.938477,52.554104,1.7019004e-10 23,360.938,2.3967888,44.992737,45.768867,3.95859e-11 24,545.14606,212.91202,29.29187,64.8764,99.90923 24,564.13,209.12138,36.380737,67.449234,98.95174 24,609.30566,190.27974,29.691223,66.5847,19.95985 24,496.48886,216.08966,25.783295,47.398346,2.7072964 24,433.21497,202.3493,24.869781,52.30635,0.038959272 24,602.09845,195.8534,36.418213,215.19382,0.002925619 24,422.33344,227.80397,23.616577,51.576187,0.0017399511 24,535.4165,162.79794,99.72443,177.4032,0.00071151764 24,611.4834,362.92807,27.663269,137.88382,0.00016879628 24,615.8079,58.5984,23.338745,93.1243,8.560225e-05 24,601.56335,45.34199,37.583313,231.8528,2.6132986e-05 24,584.7274,14.2064,54.159424,104.25061,2.6105286e-05 24,1.2169499,213.55086,20.090883,140.7979,2.263149e-05 24,0.9371273,333.69333,18.343792,126.19919,1.7670598e-05 24,4.1914763,208.47755,55.556717,219.45229,1.0709055e-05 24,606.71246,3.1430144,32.434204,58.342094,9.702173e-06 24,1.9255404,157.69788,28.588877,126.56015,5.284124e-06 24,0.72334635,421.00897,16.34723,80.494995,2.4409776e-06 24,5.382754,355.33517,79.16234,131.3287,2.110593e-06 24,1.4887093,9.505081,33.934593,75.02128,7.806171e-09 24,578.518,3.22722,44.84369,45.21533,4.8284705e-09 24,479.1261,7.812269,80.43085,74.09099,4.131775e-09 24,394.04984,2.7438836,42.371857,45.05724,1.7109063e-10 24,329.8313,4.6725016,46.403168,45.135906,4.879292e-11 25,524.0088,154.56334,31.266907,56.18628,0.013471913 25,613.4303,54.007008,25.71637,96.31073,0.0018686107 25,496.9888,226.7085,37.81137,95.98956,0.0012521156 25,615.6624,222.19984,23.484253,89.32323,0.0011277166 25,597.4417,62.15844,40.455566,202.48392,0.000658196 25,599.14874,242.28813,39.595276,192.07689,0.00035264815 25,432.58658,92.90917,79.40204,195.50821,0.0003060235 25,622.8052,44.54924,16.341492,47.62629,0.00024285886 25,610.44684,344.54587,28.69983,150.6868,0.00016725669 25,1.1465226,220.52077,18.334,73.95967,0.00014098 25,614.76587,114.7961,24.380798,88.9673,0.00013660567 25,532.2184,117.84352,37.87677,77.990875,6.718737e-05 25,2.3327842,211.06586,31.837393,169.36276,3.55148e-05 25,0.9001929,331.30078,18.256002,129.2793,2.0891817e-05 25,309.45798,168.3851,57.606842,109.47739,2.016187e-05 25,0.8552181,290.81708,18.096313,76.16702,8.523293e-06 25,609.4106,0.6977051,29.736084,63.608585,8.285266e-06 25,278.98312,133.94446,140.61798,221.38358,4.434631e-06 25,0.64804935,419.74283,16.478867,81.39969,3.240784e-06 25,3.445788,340.85703,57.1338,143.64319,2.852203e-06 25,1.59556,11.950254,34.31546,70.75913,1.589188e-08 25,373.22397,0.0,44.741913,52.718906,1.9883536e-10 25,571.97833,0.9059408,47.35138,47.55162,1.8598333e-10 25,396.5401,0.6814844,47.989807,48.12794,2.9186528e-11 25,496.95142,8.243652,41.914673,45.573265,4.1239976e-12 25,435.0344,2.5697153,43.245087,51.227806,2.0065013e-12 26,433.1763,206.85475,24.066406,50.323807,0.56128454 26,620.12897,128.60365,19.0177,54.11206,0.0051317653 26,499.50287,196.4686,38.968994,116.01245,0.001989624 26,538.9975,91.896034,55.388733,142.50818,0.001933953 26,607.9303,114.59992,31.21637,140.376,0.00092298235 26,620.29083,421.64056,18.855835,58.52185,0.0007248745 26,471.56064,129.79413,35.604797,86.528915,0.00063735934 26,0.98278,223.95587,18.812973,68.1662,0.0005386944 26,617.35236,234.5585,21.794312,81.532135,0.0005352894 26,298.979,188.15146,25.439575,53.570892,0.00047606332 26,619.90936,64.644966,19.237305,61.273308,0.00047369566 26,608.08636,373.44598,31.060303,127.66763,0.00033364352 26,586.4254,230.76581,51.905518,252.05988,0.0001798459 26,615.9699,327.54535,23.176758,95.483215,0.00014587223 26,608.5504,12.297018,30.596252,151.12718,0.00012465578 26,2.4366896,215.53021,32.389786,181.70078,0.00010467421 26,295.77243,179.01907,58.871002,97.73135,8.311951e-05 26,0.8111792,337.64786,17.892101,130.58398,1.5552114e-05 26,446.75964,116.187996,39.990112,88.16337,1.2189765e-05 26,3.653698,137.67195,58.651237,198.95168,8.8123215e-06 26,0.6343905,280.5462,18.410557,78.15921,8.775505e-06 26,268.02026,135.56224,138.77194,219.52834,3.3900992e-06 26,0.60062665,418.4435,16.434566,83.16217,2.130602e-06 26,3.41826,337.0638,56.731346,145.57938,1.995984e-06 26,1.5943816,11.475502,34.469196,72.26924,1.0063512e-08 27,289.05814,216.36392,27.423676,48.716675,99.511925 27,497.5023,232.18217,25.716034,53.17668,0.37906793 27,394.12213,209.42104,30.184937,54.831223,0.18435496 27,466.43375,243.45036,24.98471,49.71971,0.06037882 27,482.7244,242.55556,25.013733,50.699387,0.035005976 27,508.4781,239.78128,30.08722,57.13159,0.03414511 27,189.28914,210.11353,23.763,50.09073,0.024338203 27,486.2986,218.9072,47.162567,101.373535,0.001724844 27,619.89624,46.313446,19.250427,63.380386,0.0013786528 27,534.9658,70.70839,30.752686,74.57379,0.001060751 27,470.63538,200.61372,22.900055,49.1873,0.0007808623 27,598.0974,301.95047,40.86615,184.29016,0.0006405877 27,600.2084,171.04321,38.358337,182.95163,0.0005017892 27,0.9927922,221.57141,18.350933,77.07446,0.00046062155 27,608.0767,112.747086,31.069946,142.52066,0.00042186066 27,502.57898,61.08646,38.663513,86.21556,0.00040718177 27,616.027,358.95212,23.11969,93.38367,0.0001573982 27,276.59265,182.76964,56.09085,98.36632,9.658042e-05 27,1.5775782,227.99475,27.142052,153.17758,5.442571e-05 27,607.8251,433.74905,31.321594,71.06076,4.4769164e-05 27,570.2142,59.03002,49.941284,177.86026,3.0659146e-05 27,582.2239,6.7553062,56.511047,133.06569,2.7498467e-05 27,1.6647664,133.96712,33.22676,164.02675,2.3761657e-05 27,514.26483,110.56485,28.205078,62.440155,1.9401688e-05 27,485.15784,116.37833,39.182983,93.17572,1.6827924e-05 27,0.8682023,321.0891,18.782991,128.75882,1.4581727e-05 27,1.0797119,392.28357,27.893095,101.60602,4.344596e-06 27,3.2459815,236.16486,55.51933,229.55249,3.9498887e-06 27,243.24487,144.68379,141.59058,224.93352,2.4080707e-06 27,532.299,47.677555,47.63611,169.66531,1.3591788e-06 27,554.3493,421.77216,77.372986,75.93942,1.0723521e-06 27,584.2603,0.2956494,44.236267,54.16999,1.0116943e-07 27,1.6198698,12.173861,34.197285,71.66693,5.89849e-09 27,523.83496,3.5043132,45.55426,53.081207,2.6299196e-09 27,550.321,1.7814339,46.301758,49.749096,3.6507858e-10 28,246.24922,210.124,31.642166,59.810883,99.78062 28,440.6882,220.34961,25.372955,55.89026,0.055328913 28,609.39923,225.2459,29.133118,121.284805,0.018798249 28,421.71927,190.45836,37.259277,88.92174,0.014917648 28,621.48395,212.80388,17.66272,57.619614,0.0076484648 28,615.3831,284.15475,19.299133,45.63495,0.0038661216 28,586.53467,58.600952,21.591675,50.059113,0.0022095053 28,595.86975,59.42576,29.686829,74.56536,0.0018031744 28,583.68384,115.09255,54.639343,244.20554,0.0012877679 28,619.4188,72.837494,19.727844,67.06546,0.00071103056 28,623.2692,132.54152,15.877441,45.276245,0.0005759516 28,611.99603,283.4938,27.150635,151.30481,0.0004896906 28,603.9974,57.60425,35.149292,180.1019,0.00034645986 28,477.82907,180.8232,33.966766,67.34126,0.00020904024 28,0.64231205,225.54384,19.219597,89.150894,0.00011193174 28,229.0843,174.80284,72.970535,141.03572,9.359583e-05 28,1.7092057,172.9596,31.654377,188.52249,8.674042e-05 28,608.72455,434.93765,30.42212,67.75464,7.974367e-05 28,565.26843,22.164219,64.57526,151.82852,4.95463e-05 28,606.7538,0.64776695,32.392883,65.270454,2.9105282e-05 28,0.60410076,321.9922,18.028025,145.07617,2.5808782e-05 28,572.0368,361.0405,66.8905,126.3931,1.9765836e-05 28,575.02893,100.4537,39.698242,95.56133,8.418277e-06 28,1.7630559,111.31983,18.410994,139.3678,7.0342026e-06 28,2.803929,321.60294,56.986855,159.84344,4.8962625e-06 28,0.5365731,415.91333,16.151203,85.043304,2.8296668e-06 28,464.17276,37.142227,46.98532,152.73018,4.6873603e-07 28,1.4364437,12.57458,34.732723,71.84938,6.900441e-09 28,470.1623,4.1975946,41.590942,45.022003,2.5625221e-10 29,182.89027,206.37431,39.40445,79.43019,99.79809 29,504.3402,202.06053,38.155273,80.54527,0.011983534 29,28.610483,172.73764,29.330118,54.885773,0.006438465 29,617.82416,111.26802,21.32251,71.276794,0.0047656503 29,480.3764,160.02908,47.87079,139.5278,0.00198856 29,457.07617,165.57037,23.942596,56.669052,0.0019509094 29,1.8337492,196.28923,25.27671,70.26369,0.001680463 29,618.1061,261.0075,21.040588,74.822174,0.001084848 29,538.3175,101.47984,35.57556,93.140884,0.0010285678 29,608.9075,119.043594,30.239197,156.532,0.0009838985 29,609.1726,308.95798,29.97406,151.71793,0.0008313882 29,619.3345,386.72464,19.812195,65.355896,0.00073910935 29,382.79828,202.3461,21.72696,48.297623,0.0004046493 29,621.5667,158.73524,17.579956,61.674133,0.0003986449 29,621.2888,39.07059,17.85785,56.809933,0.00039854494 29,429.1569,429.48462,72.11459,78.223206,0.00015446192 29,600.97784,211.12578,38.150757,177.33424,0.00014996284 29,607.2059,429.17523,31.940796,74.285095,0.000116659416 29,537.25024,86.79828,24.404663,55.336105,9.662593e-05 29,153.71396,175.94803,93.36984,160.04224,5.5212615e-05 29,613.437,0.2673877,25.709656,47.20952,5.1195762e-05 29,517.93396,83.874725,39.97345,138.95221,4.522847e-05 29,1.1910743,344.9643,18.08858,127.36713,2.6475855e-05 29,608.6567,4.6229687,30.48999,156.50511,2.3801482e-05 29,2.0547836,167.96477,36.27975,168.62248,2.214061e-05 29,0.8318734,251.038,18.60525,79.49835,1.4694678e-05 29,3.4416797,246.63615,55.36983,225.045,1.0454676e-05 29,503.8171,72.95973,115.91495,214.4882,6.349723e-06 29,1.464386,107.07625,18.451523,139.12178,3.245547e-06 29,1.0692521,439.99216,21.08814,60.542908,3.188046e-06 29,131.97502,417.77487,73.21892,76.87717,2.5637203e-06 29,572.10754,2.7050488,61.009583,57.721928,2.666171e-07 29,1.5438364,13.360961,35.120934,73.82898,2.1602343e-08 29,407.54623,1.8399838,46.375916,46.65326,9.1179475e-10 29,382.91605,2.545858,43.88507,46.046455,1.8688331e-10 29,439.4349,1.9550456,46.875427,46.817204,7.0472246e-11 29,543.9598,0.819751,44.765076,49.992268,1.9644456e-11 29,519.8489,0.05164551,43.490356,46.985485,3.4083728e-12 30,88.540825,211.73596,47.63392,93.07123,99.80248 30,73.93361,210.33217,34.961838,57.96071,6.915591 30,586.5338,116.940384,49.594116,263.0263,0.0034509697 30,610.01276,207.43687,28.498962,141.38112,0.0028397175 30,402.10004,203.82164,21.384491,57.01436,0.0012236147 30,608.3056,84.517395,30.622314,154.70227,0.000951108 30,67.26279,184.2277,97.41803,161.19112,0.0006352452 30,601.15314,296.3005,37.474854,189.36264,0.00044018807 30,3.546644,166.76216,26.138464,60.18875,0.00029500638 30,504.88263,155.79668,36.43982,82.42609,0.00023896148 30,616.7143,65.20091,22.432373,86.11995,0.0001973582 30,542.0312,278.57825,80.02826,171.10901,7.316094e-05 30,612.17737,410.0663,26.9693,91.30527,5.2467145e-05 30,553.7969,114.490135,41.81836,141.71252,4.764712e-05 30,1.0506266,211.72475,18.50857,71.79793,2.764978e-05 30,489.37872,88.59955,82.64319,177.1293,2.3731762e-05 30,0.98073,335.23026,17.241718,131.70282,2.190112e-05 30,2.335087,114.05839,33.70416,162.96887,2.085571e-05 30,581.0405,4.5625324,58.10614,137.498,2.0364856e-05 30,1.088029,243.26677,19.917458,143.0616,1.6634664e-05 30,4.3403597,181.37767,56.02676,246.82436,7.0906567e-06 30,0.5359432,414.16086,16.103668,86.466125,3.1389436e-06 30,5.337194,353.47095,78.4084,129.83682,1.9552324e-06 30,2.0192432,13.977842,33.89292,71.663925,3.4200147e-09 30,518.7775,4.6624694,44.05664,51.914062,2.4021767e-09 30,461.87955,2.132243,42.865417,46.089233,3.3128372e-10 31,467.2475,171.9097,26.317139,61.19687,2.5974855 31,423.40372,205.50154,22.298523,54.494522,0.0019906606 31,593.8327,94.482704,44.123535,112.2476,0.0011652538 31,620.93066,377.69058,18.216003,63.438904,0.0005514087 31,619.6768,135.49025,19.469849,61.872528,0.00050685654 31,607.881,437.05505,31.265686,67.58533,0.00026131593 31,604.6399,1.7743555,34.506775,134.55664,0.00021035856 31,617.2481,194.34149,21.89856,84.27225,0.00019223936 31,529.4932,140.76868,38.504272,88.6994,0.00017436667 31,620.359,98.259834,18.787659,59.2716,0.00016518218 31,616.59924,318.13745,22.547424,94.76364,0.00010664246 31,585.8031,334.0124,53.08081,164.06992,8.8957015e-05 31,0.9109619,224.40001,18.433575,72.985794,4.949775e-05 31,4.2723927,177.74324,58.247726,229.3243,4.3872406e-05 31,601.0759,142.78195,38.07074,192.92386,4.120622e-05 31,1.1076685,365.11545,17.786646,69.244385,3.8401166e-05 31,0.60831505,280.74396,13.617593,49.411133,2.2640124e-05 31,0.82742107,254.19185,20.10738,145.04213,1.685044e-05 31,614.1202,0.0,25.02649,47.390068,1.2689996e-05 31,502.6636,111.32844,89.53604,153.56802,1.2577346e-05 31,1.8894515,90.040146,19.990795,132.22942,1.2118363e-05 31,1.5360628,342.96866,31.742727,143.75629,7.852445e-06 31,0.75247395,420.4385,16.721664,81.66754,4.3664945e-06 31,535.4704,426.7526,86.1983,72.72681,2.7176177e-06 31,3.1567645,426.7909,53.209988,73.36047,6.478095e-07 31,2.4815104,53.993458,60.338387,225.55708,1.5500054e-07 31,578.9072,1.8405079,47.472412,64.07674,3.4240029e-09 31,2.201356,11.743574,34.668762,76.60461,2.2753592e-09 32,31.627377,214.27126,31.487946,53.65425,6.0139914 32,13.988788,213.15666,29.924759,45.304855,0.7371989 32,472.71927,177.05609,33.4422,68.65318,0.5828928 32,400.86948,207.70392,22.908142,49.845886,0.42049167 32,415.9034,210.7502,26.358795,48.994247,0.28208643 32,503.3004,180.68971,24.043945,46.381516,0.0050122067 32,563.16534,164.83325,38.032654,80.708786,0.0014134446 32,611.573,138.20248,27.57367,136.87506,0.00069689 32,489.0226,152.43657,44.578766,90.44409,0.0003756691 32,617.317,388.36874,21.82965,78.44464,0.00023850727 32,444.08813,221.01367,34.014954,68.61536,0.00021616106 32,618.13214,275.6169,21.014526,78.29773,0.00021218418 32,544.4298,115.883026,42.072998,136.18633,0.00017752362 32,1.1509082,223.89563,19.893133,134.41995,0.00016219766 32,4.271742,197.54149,57.03647,243.58275,0.00012700993 32,2.360721,164.75201,36.626934,147.99042,6.05113e-05 32,606.25476,1.7274642,32.722168,65.22555,5.8672827e-05 32,605.18884,196.75154,33.957825,181.93901,3.8699323e-05 32,601.5333,323.5351,37.613342,164.13455,3.4925204e-05 32,582.51025,11.806322,55.64496,119.32234,3.0517607e-05 32,9.330882,152.06137,126.48586,219.66199,2.2621434e-05 32,582.7887,54.158752,55.582153,224.55444,2.2358014e-05 32,0.53783935,295.11218,14.001484,50.50537,1.4419695e-05 32,0.8118775,323.06458,18.225954,75.11932,1.421905e-05 32,0.77603596,373.47763,18.56911,78.42322,7.75815e-06 32,1.3056006,302.26846,33.605038,178.13608,6.9766534e-06 32,1.7144483,87.88121,19.103287,147.00142,3.4288835e-06 32,0.80238855,421.30298,16.04501,80.09833,2.0198854e-06 32,5.830459,356.89667,79.22328,131.37012,1.6913189e-06 32,3.0420964,20.445444,57.40095,118.284325,8.780381e-09 32,1.17448,8.165832,19.517353,55.586864,1.7946677e-09 33,319.8528,201.74171,26.907166,45.080536,0.54899466 33,424.40024,199.1573,32.76535,59.380478,0.43917918 33,625.28375,123.373856,13.862915,46.95993,0.014263844 33,589.0018,132.2229,48.861023,125.32358,0.011656745 33,579.8425,100.4897,38.163757,108.332825,0.004833016 33,615.4232,102.15779,23.72345,102.62918,0.0005301809 33,606.1018,0.0,32.71344,63.28103,0.00021479286 33,0.9446517,218.98831,17.882372,68.3064,0.00016916709 33,617.34186,394.91815,21.80481,77.96927,0.00016271169 33,617.1586,317.91104,21.988037,82.53699,0.00013364585 33,611.1796,204.12756,27.967041,146.28119,0.00011128992 33,586.8224,245.34445,52.322083,224.76935,6.562928e-05 33,598.38696,5.1918426,40.559692,193.31886,3.7678106e-05 33,1.4360783,209.10115,28.137415,145.46361,3.6681526e-05 33,609.3178,441.69153,29.828857,61.916565,2.7285878e-05 33,0.8725334,344.13516,13.43204,48.528442,2.3699646e-05 33,1.7700155,132.5758,19.32847,131.96759,2.0839405e-05 33,0.94411784,320.19116,20.082064,128.8187,1.7495635e-05 33,3.8426027,170.58083,58.30783,215.4655,1.7089013e-05 33,0.6935734,425.44272,13.707245,46.200104,9.803629e-06 33,0.7286027,290.32474,18.338806,76.61078,6.576148e-06 33,318.29703,150.66226,100.026794,197.06036,5.187537e-06 33,1.2136052,392.53506,28.131727,102.305115,3.2678593e-06 33,5.0740104,354.90512,79.31851,131.15775,1.5252363e-06 33,3.3404672,54.5915,59.881527,215.71597,6.0008654e-07 33,1.9569597,45.1119,19.12267,127.49955,1.0633126e-07 33,2.0527701,12.815717,36.470394,83.572044,3.4010523e-09 34,491.65942,213.27461,24.997192,48.583054,30.355412 34,458.66095,202.37875,33.443024,64.4671,1.3957258 34,34.53058,181.3859,19.900246,45.55977,0.05224638 34,312.8282,207.70027,29.136475,51.25154,0.01741364 34,399.96936,207.15912,29.583221,58.684174,0.0121720275 34,609.0956,203.03227,30.051086,141.62212,0.0050608693 34,525.4879,193.88698,32.42462,53.104675,0.0032158764 34,616.5672,322.16742,22.579468,91.7395,0.0018449242 34,352.53564,191.69708,40.124664,66.032715,0.0017584066 34,584.9026,101.256195,43.421143,87.02353,0.0009003934 34,603.0016,341.31573,35.995728,153.19073,0.0004171949 34,616.2627,88.189735,22.883972,94.306694,0.0003957298 34,473.5921,156.06328,72.79852,164.76485,0.00039126375 34,600.9126,73.72524,38.046265,218.32431,0.0003885893 34,409.00043,198.07005,47.544647,106.887924,0.00028645626 34,413.21536,226.78404,28.107086,52.295456,0.00024691445 34,1.3512561,198.45569,18.353317,71.21854,0.00011213122 34,490.70364,126.57657,38.068817,90.186615,0.00010034599 34,2.492238,175.54561,34.0564,176.10081,3.556564e-05 34,336.87994,157.7218,81.135864,146.47922,3.238863e-05 34,0.91578776,337.4948,17.74279,129.79453,1.766433e-05 34,1.0997567,261.9078,19.668152,139.71924,1.0430535e-05 34,582.8504,6.955938,56.296265,138.55951,8.573415e-06 34,3.159577,253.22275,56.11889,216.77457,7.5155845e-06 34,0.59003824,416.14026,16.268074,85.20096,3.083108e-06 34,1.7853036,113.707504,21.838081,114.43613,1.7530068e-06 34,3.4063787,78.53326,61.3798,203.77017,1.4037073e-06 34,1.7783626,29.452091,18.221682,138.8516,6.8642114e-09 34,2.4671226,18.078047,57.408276,121.15854,3.220058e-09 34,1.1084741,0.5387321,20.646767,45.435425,1.60626e-11 35,555.5837,218.11032,27.814453,60.163635,99.951065 35,523.70624,216.07407,28.740234,67.543396,99.66994 35,541.66455,182.1679,65.92615,110.34483,0.018033242 35,87.32125,202.70288,21.465721,47.467285,0.01306991 35,619.3984,195.33052,19.748291,55.931015,0.012124174 35,438.13068,196.84595,31.777252,59.098907,0.01005039 35,564.0071,139.59763,22.39093,58.92305,0.005836029 35,574.59436,86.30124,59.61859,161.56241,0.00575192 35,584.0481,124.11092,29.695435,76.73939,0.0029784588 35,608.78015,149.7016,30.366516,134.7619,0.0016105663 35,507.1459,136.266,121.326996,227.21431,0.0006146741 35,557.48206,117.99541,45.21576,116.22945,0.0005377084 35,585.9296,167.19014,51.82721,217.77733,0.00012241786 35,611.74274,302.38757,27.40393,136.08395,0.00011497582 35,357.37012,165.92044,56.430817,108.68356,9.024532e-05 35,1.9018482,177.36218,20.97794,93.07349,8.20884e-05 35,608.60895,434.31848,30.53772,72.8631,4.9567378e-05 35,582.1135,2.9131382,56.200317,129.46194,4.749713e-05 35,609.67865,37.26065,29.468018,176.30876,4.1689123e-05 35,0.9553068,227.46829,18.751411,77.89935,3.2479133e-05 35,2.5693524,195.37315,32.10716,179.24138,3.0619114e-05 35,606.6354,0.0,32.51129,68.84919,1.5973557e-05 35,571.7172,359.97833,67.42944,130.46777,1.1591998e-05 35,0.909467,297.3782,18.208113,76.97223,1.0899421e-05 35,0.8772453,337.88785,17.957296,130.03998,1.0332481e-05 35,328.32626,132.88554,136.93811,204.7672,3.0945846e-06 35,479.77127,427.2571,81.87485,72.39499,2.3909313e-06 35,0.59053385,417.96408,16.508606,84.4628,1.7748145e-06 35,3.280547,338.6469,56.800682,144.37665,1.672316e-06 35,1.6716814,72.96802,19.229195,139.44012,6.3966417e-07 35,528.1384,426.5457,76.00885,71.92056,3.169552e-07 35,3.1973472,52.425053,58.974464,233.0304,6.563486e-08 35,392.57846,7.360127,40.94742,47.253124,1.2771165e-08 35,481.05804,1.7949708,46.993713,53.553688,1.7231423e-09 35,363.001,2.2932324,42.962433,47.239704,2.6094676e-10 35,1.8113949,7.834727,35.658848,86.665764,5.3638236e-11 36,41.883705,211.32214,23.431938,46.723328,0.25947106 36,328.0076,210.98766,36.13394,56.150986,0.04175894 36,599.3266,105.12299,38.337402,167.57852,0.017939791 36,623.05164,223.43982,16.095032,45.04065,0.009908789 36,612.65814,177.34076,24.930237,53.95105,0.00971393 36,543.88855,180.92534,58.730347,134.34953,0.009698436 36,482.2121,203.16513,23.79895,45.500946,0.0029343087 36,512.22003,162.3448,32.083923,73.679214,0.0025414145 36,562.91504,171.38632,28.821472,67.14368,0.002256463 36,624.5136,157.39636,14.633057,45.430084,0.0016864545 36,578.369,207.87099,25.997375,54.97432,0.001456477 36,560.9631,233.43594,29.466919,75.49478,0.0014074134 36,611.7159,205.43785,27.430786,134.6959,0.00040036085 36,386.3538,197.64644,45.444305,83.77663,0.0003807686 36,551.8946,215.81323,24.871277,55.411987,0.00024233668 36,586.34827,182.76675,50.812256,234.23642,0.00023854434 36,611.24426,347.2577,27.902405,153.63345,0.0001352674 36,0.9504525,213.56071,18.064226,72.362076,9.670172e-05 36,620.60913,30.208242,18.537537,54.989082,4.3968237e-05 36,1.4391114,222.2812,28.237171,154.25743,4.234785e-05 36,571.80725,423.64725,67.06659,76.97241,4.11235e-05 36,607.5184,1.5978451,31.628296,165.41031,2.7471102e-05 36,2.9501872,239.38449,57.09079,230.04895,2.6277885e-05 36,0.870411,338.50885,18.642735,129.98386,1.3233542e-05 36,293.1465,165.69705,35.730408,66.40546,1.2324234e-05 36,0.6844792,267.7515,13.958801,48.16324,1.11872805e-05 36,0.62564254,295.59998,14.032965,50.691498,8.908209e-06 36,346.24197,136.3776,137.1355,213.62955,5.1485813e-06 36,433.45026,425.48135,77.19949,72.86658,3.3660726e-06 36,0.62612146,417.44653,16.16123,83.754456,2.5522934e-06 36,3.4853191,113.513885,59.896362,214.88559,2.494711e-06 36,1.7583488,96.79092,20.034996,148.12146,1.0680328e-06 36,492.6159,426.65683,75.74072,74.4133,6.083761e-07 36,1.3587761,20.982422,29.6463,160.07407,1.4847397e-08 36,538.29364,2.6380079,43.117188,49.56195,4.3826395e-10 37,434.1985,214.80553,26.029755,57.874527,99.954575 37,15.048031,197.4189,31.948578,61.907486,0.991418 37,622.7662,181.94832,16.380493,47.06276,0.02185044 37,535.5764,157.50504,34.94763,79.15726,0.0056049842 37,2.2787468,181.92816,18.830833,88.67438,0.00495562 37,1.0894983,197.09001,11.146376,47.78192,0.0014627101 37,616.878,201.0217,22.013123,77.52911,0.0011199923 37,540.11475,200.17331,37.237244,68.582825,0.0008873071 37,2.0172884,155.63008,36.45758,170.93669,0.00042815637 37,604.007,129.73619,34.07715,139.69954,0.00031492216 37,608.1222,439.0944,31.024475,68.71863,0.00016773335 37,602.9163,201.46495,35.934082,173.4067,0.00013063141 37,416.75058,179.77448,70.2175,143.4885,4.8714515e-05 37,614.52264,0.0,24.624023,47.095078,4.4787357e-05 37,0.9368237,234.41144,18.736816,81.28876,3.958631e-05 37,613.4437,323.66696,25.702942,145.84262,3.1766474e-05 37,0.6730355,425.6269,13.709177,47.296143,2.1659429e-05 37,0.72885334,343.45297,13.771284,48.775116,1.8632354e-05 37,0.87072676,359.8073,20.017265,134.26477,9.7034135e-06 37,3.2035465,276.61243,57.541557,201.11288,9.134223e-06 37,553.5258,426.02432,78.67737,75.63309,8.755993e-06 37,501.50427,427.00452,88.90625,71.60309,8.735708e-06 37,0.73889816,370.50754,13.742077,48.478485,8.685335e-06 37,0.5666024,279.227,18.651714,79.35962,3.4468765e-06 37,1.2551107,120.18941,19.673141,83.24361,1.747285e-06 37,586.6736,0.0,52.473083,123.87367,1.5096823e-06 37,3.153449,428.62604,53.266582,70.36917,1.3639e-06 37,448.00476,426.1834,82.45618,73.57687,1.0372205e-06 37,1.3436141,34.176426,34.56576,210.2602,1.5299617e-07 37,1.5289177,9.632757,35.19493,79.75309,4.8434865e-09 38,505.07553,221.87657,36.575653,82.890976,99.96166 38,442.46887,236.15314,22.829163,51.40274,0.013165675 38,78.20882,208.40393,23.471878,45.44345,0.0016519085 38,612.3712,220.96506,26.775452,132.85693,0.0007134024 38,616.7183,171.00468,22.428345,80.83693,0.0005672159 38,586.84155,197.78084,50.605286,235.12096,0.0003938232 38,4.573904,191.38661,36.379227,69.77916,0.00026964073 38,1.3527873,220.96944,18.388662,69.7433,0.00017014192 38,621.6299,311.38284,17.516785,55.203064,0.00016621232 38,617.2517,404.15652,21.894958,75.93463,0.00014534898 38,1.4747591,175.02087,13.34044,52.836548,0.00012537972 38,0.50680095,255.8536,13.701117,55.223633,0.00011034986 38,475.9688,182.02258,101.662415,169.97723,0.00010001295 38,617.3066,354.8354,21.840088,84.328156,8.475517e-05 38,600.1441,114.455696,38.127563,186.23053,6.707948e-05 38,0.8305062,251.25375,18.301073,146.80527,2.7896365e-05 38,611.05676,1.3722917,28.089905,58.75368,1.8180093e-05 38,5.623626,167.31133,77.1826,248.95052,1.586038e-05 38,572.39087,362.79425,66.7558,125.53003,1.479227e-05 38,0.86978275,390.7705,18.388697,73.82889,1.2961305e-05 38,1.3419791,353.3408,34.49171,137.69116,2.6743826e-06 38,3.5814242,60.200066,60.5529,235.91937,2.0884481e-06 38,1.0660669,443.125,21.59936,59.672607,1.5818468e-06 38,1.531351,75.9532,19.3064,145.22266,8.060305e-07 38,2.7059555,23.373434,55.951916,109.48849,2.1140285e-07 39,410.14337,208.79558,24.125458,45.577118,3.0525362 39,470.48798,210.63707,29.127808,60.6465,0.46464923 39,543.31433,261.96408,28.882935,67.36566,0.020147081 39,348.37228,213.04128,23.36847,46.926804,0.0050616465 39,457.81537,160.34448,56.382935,129.45908,0.004825665 39,579.34894,304.47177,28.550598,51.416473,0.0022874784 39,615.4489,111.0374,23.493347,82.61847,0.0020643887 39,579.83777,227.05513,56.36798,127.502426,0.0012453658 39,520.6262,154.14806,33.858765,72.132034,0.00094504846 39,610.7217,152.01445,28.424988,139.6343,0.00063793216 39,617.4857,259.78653,21.66095,82.93414,0.0005247052 39,618.0569,58.781055,21.089783,84.63103,0.0005137642 39,1.4754013,182.74135,19.275274,75.639114,0.0002090215 39,617.9482,328.85916,21.198486,80.10211,0.00019190925 39,600.948,305.56668,38.19867,171.64853,0.00015566462 39,2.1935353,138.58777,33.60017,181.8587,6.6226705e-05 39,609.03845,437.99246,30.108215,68.502594,3.767746e-05 39,1.228908,340.45963,18.18362,130.36142,2.828486e-05 39,3.6577816,190.0147,55.316162,243.5514,1.9451081e-05 39,1.0553386,236.89703,18.649696,75.52002,1.6339078e-05 39,585.2329,19.555742,53.07843,186.66841,1.0415665e-05 39,594.3224,7.441862,44.059143,77.8561,7.729215e-06 39,383.26773,427.97903,72.01062,70.953064,7.3781393e-06 39,3.5665593,347.0847,55.902992,136.0119,6.2197983e-06 39,143.27034,125.00891,138.2115,218.56033,1.8078737e-06 39,494.40942,420.31516,71.61304,76.59079,1.2001759e-06 39,1.6367368,441.45825,35.73946,63.275757,9.871267e-07 39,1.6199073,65.449486,19.933136,143.91437,3.7696842e-07 39,2.0093718,21.248968,56.60033,115.9327,7.408719e-08 39,418.91675,3.7875407,40.378418,49.279747,8.8892875e-09 39,457.4467,3.350941,61.855194,48.35474,7.402698e-09 39,1.1486003,9.224188,19.680887,54.341934,3.929774e-09 39,558.56665,8.005652,45.008728,50.701893,3.7066314e-09 40,457.15146,210.84879,36.57251,68.32373,9.827126 40,351.95273,225.09967,26.342865,48.45468,0.11792914 40,473.46017,218.27922,41.686005,97.5453,0.081623584 40,532.84283,225.12933,39.440125,67.058014,0.010255752 40,541.5642,157.1082,40.13513,77.73262,0.0025611757 40,587.86566,82.712906,49.622314,241.94014,0.0019841578 40,494.57974,226.11084,26.264496,62.518646,0.0012697536 40,616.10443,194.81123,23.042236,84.47005,0.0010467278 40,550.1085,90.73356,38.66815,59.998924,0.0009348797 40,1.9389031,218.04247,33.739513,70.89287,0.00037769412 40,612.1884,234.55836,26.958252,140.08278,0.00030869615 40,616.1685,94.63813,22.97815,80.372765,0.00018275507 40,613.74066,35.015957,25.406006,93.58238,0.00015287685 40,148.50208,198.8456,45.196,79.88377,8.682915e-05 40,607.8596,434.67795,31.287048,69.88867,8.098077e-05 40,1.0624447,244.97905,18.451725,79.546036,7.556016e-05 40,3.5869353,177.95464,56.980812,213.69643,5.833478e-05 40,604.5287,294.1195,34.61798,181.73102,5.1718787e-05 40,1.7780168,109.7998,18.735828,143.21414,2.0058766e-05 40,0.98765385,367.9542,17.02049,123.73367,1.348386e-05 40,1.6283497,270.86557,32.951187,187.23349,1.3028325e-05 40,569.4987,13.357878,69.64795,149.22041,6.261255e-06 40,0.7224707,316.9898,18.451435,77.56714,5.438318e-06 40,554.974,394.29538,84.17267,100.66806,4.8253382e-06 40,3.1475148,389.42346,55.22482,98.99841,2.4741923e-06 40,581.1199,440.5078,44.556213,61.616486,1.8965659e-06 40,112.9693,133.35478,140.63727,224.55135,1.8173188e-06 40,514.867,423.34308,74.26398,74.74881,8.5391065e-07 40,586.366,2.531854,43.605164,53.678787,1.056657e-07 40,2.1725814,14.104356,57.433826,122.25171,9.619279e-09 40,1.3554476,8.014388,28.327639,55.032513,2.443079e-09 40,400.93286,4.1297917,44.502716,51.602425,6.365523e-10 41,610.86926,168.69305,28.0094,51.348328,0.012381157 41,603.4565,140.93456,34.440125,167.29286,0.0048338724 41,621.7354,337.81067,17.411255,53.70938,0.000802814 41,620.7378,204.94675,18.408875,62.91028,0.0006083328 41,1.2215414,235.2385,18.635162,74.166565,0.0005326114 41,615.8433,353.54688,23.303345,91.67969,0.00022429373 41,586.2748,184.07791,51.645325,259.06216,0.00020869086 41,615.35754,229.60211,23.789124,92.22766,0.00017574176 41,570.133,350.70093,67.06055,137.52194,0.00016289443 41,607.99945,435.38644,31.147217,67.96658,6.764784e-05 41,2.1306455,221.15118,31.612335,181.8941,5.833083e-05 41,610.67316,52.13776,28.47351,145.4464,4.1935506e-05 41,1.5809985,158.70972,28.844343,139.91113,2.5515006e-05 41,5.718265,238.65808,75.79852,224.11996,2.4502095e-05 41,3.2570264,114.89383,60.88571,227.91544,2.098671e-05 41,586.55035,24.31804,51.255432,100.20097,1.6755988e-05 41,555.0382,192.33,43.206604,125.524704,1.3850763e-05 41,1.2232463,352.5639,17.46486,72.8183,1.2837525e-05 41,0.88147056,389.35318,18.138315,104.76016,9.249018e-06 41,1.0357829,112.2121,20.260693,88.229126,7.4503873e-06 41,99.59353,178.23897,78.78521,150.3827,6.893664e-06 41,0.7310075,309.21558,18.388083,77.86517,6.192466e-06 41,611.10187,7.701851,28.0448,52.574883,4.8604484e-06 41,1.6226734,70.545296,18.872019,77.52033,2.173445e-06 41,3.611901,390.42038,55.05801,99.4104,1.562136e-06 41,513.5442,427.58246,74.89038,72.142395,9.4827357e-07 41,1.4755127,47.0022,33.979065,186.15002,1.9311885e-07 41,2.6930454,25.142923,56.74637,102.357185,1.6210242e-07 41,1.4395378,7.974107,28.219816,56.51657,1.0499218e-09 41,491.6244,1.8712094,44.91864,45.721367,3.328621e-10 41,444.3875,3.1552312,41.616577,46.511314,1.2474498e-10 42,58.33542,210.61665,35.28385,53.92723,98.65038 42,429.9298,207.89386,34.72525,77.56729,0.18559402 42,386.08167,213.98833,29.246582,60.87227,0.16499557 42,349.9706,218.01077,29.821472,55.169434,0.0491348 42,622.4586,217.26425,16.68805,52.0372,0.012885443 42,452.85663,239.27122,25.261871,56.814316,0.003606388 42,596.7709,167.2066,38.733337,103.94797,0.0029114967 42,327.63055,217.46722,21.548798,45.976196,0.002112545 42,611.8922,200.2022,27.254456,125.08284,0.00076574396 42,542.4455,154.25487,26.24408,56.635956,0.00060470955 42,614.2079,135.14801,24.938416,97.65549,0.0004274701 42,0.9800171,213.5553,14.016081,55.382812,0.0004098903 42,34.25831,192.45784,76.80002,92.172104,0.00022833896 42,622.0159,283.7539,17.130737,56.75998,0.00018571732 42,617.45465,325.18658,21.692017,84.682495,0.00018543415 42,614.6336,52.24435,24.513062,87.08118,0.00015842903 42,587.32056,192.92982,51.687683,235.77492,5.6748417e-05 42,1.0077589,234.58409,18.51472,79.5038,5.297971e-05 42,576.9175,128.6798,48.877808,108.33804,5.2915173e-05 42,1.8874056,159.86858,29.075356,143.9742,4.62136e-05 42,422.31122,123.97243,27.251556,57.841263,4.3902204e-05 42,415.45102,104.778534,61.808105,173.67871,4.089639e-05 42,612.49835,369.50415,26.648315,130.33893,2.9452354e-05 42,438.9948,133.31479,40.594513,80.73303,1.7975384e-05 42,3.389979,185.3751,57.849606,239.02565,1.7091883e-05 42,0.8323576,277.67548,18.16446,78.69754,1.5943362e-05 42,0.8748942,309.55862,19.95481,137.12582,1.1547368e-05 42,0.79054445,419.71487,13.727908,47.15811,1.0282917e-05 42,565.0719,154.62871,25.87793,59.188217,9.181698e-06 42,407.9808,147.56218,41.084167,94.348816,8.668521e-06 42,610.7713,2.5416243,28.375366,59.525433,6.3111215e-06 42,0.7602088,391.30453,13.854018,49.084686,5.6213066e-06 42,16.676712,139.41681,139.45639,232.57483,5.328495e-06 42,598.28845,24.248047,40.09021,198.50354,4.7950343e-06 42,1.145905,444.15735,21.565813,58.675262,1.7077863e-06 42,5.16764,355.74188,79.91012,131.68423,1.3101371e-06 42,3.0928972,431.542,52.91063,67.1423,4.848779e-07 42,0.8729932,19.175201,15.862564,119.48164,5.118106e-08 42,1.5819857,11.401827,34.281376,73.122185,2.2987678e-08 42,544.09436,4.309243,44.859375,51.02128,5.373329e-10 43,0.0,219.74855,36.29505,71.603836,87.49851 43,477.30893,211.89488,36.332306,89.1324,0.010153529 43,403.4518,135.60074,23.667267,50.730988,0.00405163 43,362.481,225.41037,35.053314,62.95819,0.002977385 43,20.918823,227.50037,26.169563,45.643585,0.0024391063 43,600.6383,187.5923,37.455566,128.92384,0.0015471755 43,524.6572,280.7262,26.510925,50.901825,0.0015299678 43,618.85004,54.39331,20.29663,62.712784,0.0011534203 43,620.3355,214.05623,18.811157,60.477066,0.0008651441 43,572.9779,111.684525,33.384583,84.88385,0.00080810953 43,553.12573,163.31604,77.0791,186.66177,0.00053459196 43,342.45334,370.29303,57.141357,126.70166,0.00050074235 43,589.26263,83.40643,41.212708,135.29443,0.00035783625 43,526.3119,219.39615,27.088562,50.306458,0.00035370272 43,586.127,223.8489,52.19861,232.21329,0.00029594023 43,617.0358,309.50952,22.11084,84.4187,0.00025509536 43,604.9784,8.482546,33.961975,143.426,0.00018653064 43,551.4618,90.32496,39.493225,105.62031,0.0001838273 43,1.1108586,225.06647,32.682835,225.07437,0.0001410997 43,619.91046,131.51761,19.236206,57.42987,0.00013086545 43,611.5964,359.9584,27.550293,137.88641,6.8502515e-05 43,419.60812,208.26836,82.3049,174.23909,4.2454765e-05 43,2.1165822,146.03215,56.50802,194.5176,4.0674913e-05 43,0.78828126,382.20264,16.39543,112.251434,2.668254e-05 43,416.26758,129.15646,37.632904,88.26105,2.5441579e-05 43,0.38976684,279.51437,14.627343,56.96283,2.4766246e-05 43,528.5083,77.51574,41.03833,151.36044,1.6597076e-05 43,3.1166961,389.5153,55.59854,98.61029,4.152638e-06 43,1.1716101,83.88908,16.008095,157.15384,5.147263e-07 43,1.647767,13.596781,35.251865,71.23813,2.0437321e-08 43,435.8572,7.119603,41.956146,50.624424,1.3584122e-09 43,410.98187,4.5885124,41.21646,48.225163,8.379333e-10 44,602.27844,132.08759,36.100037,81.82727,0.0143511435 44,582.73157,310.68625,56.4151,196.2351,0.009352017 44,274.6399,184.44597,21.831299,49.37709,0.0052313195 44,351.88312,216.05063,23.474731,48.47397,0.0030146302 44,391.39502,214.05272,34.092163,73.44685,0.00284595 44,603.5999,432.40723,35.546753,74.71347,0.0025776613 44,309.80884,207.87155,21.527863,48.087784,0.0013738859 44,616.8853,195.15454,22.261353,79.79907,0.0013723078 44,625.0556,159.38368,14.091064,47.206955,0.0012129747 44,585.5352,133.78658,51.86206,248.21214,0.0009048766 44,530.83514,100.81985,29.964844,74.02441,0.00046277995 44,624.4585,412.21478,14.688171,47.661835,0.00046133902 44,614.96124,256.3556,24.185425,104.58774,0.00034290846 44,325.7716,214.18433,23.558533,56.62442,0.0002650703 44,0.847006,211.96696,14.00194,46.60112,0.00023176588 44,614.1586,350.1573,24.988037,117.7507,0.00021718908 44,576.3201,206.46837,35.875122,59.849197,0.0001678047 44,596.1099,0.0,43.036743,234.67647,0.00010547808 44,616.20294,49.60861,22.943726,77.79175,6.465741e-05 44,535.65497,91.77333,46.42273,143.42801,5.3541527e-05 44,1.041945,206.99327,19.960783,136.08351,4.553988e-05 44,394.9114,245.41026,39.72226,108.939316,4.4202923e-05 44,479.56793,87.9489,77.691284,188.3236,2.9371799e-05 44,605.73285,0.72260416,33.41382,68.68464,1.7736545e-05 44,0.6148511,378.95993,18.584564,75.27951,1.7349024e-05 44,0.6048653,252.7504,13.999191,48.32538,1.4306155e-05 44,0.9790666,297.63467,17.93962,75.87381,1.3194199e-05 44,0.6616561,425.154,13.696046,46.04898,1.3078905e-05 44,3.459943,178.57199,57.595463,195.47833,1.0708278e-05 44,1.4251181,270.84708,31.592522,174.71954,9.8059845e-06 44,437.71536,77.5759,45.68277,135.69759,8.629193e-06 44,564.611,136.5172,25.207031,59.88237,5.2773357e-06 44,1.4091886,133.97752,34.134453,162.73701,4.8625257e-06 44,473.28714,428.30148,79.86307,69.987335,3.832996e-06 44,6.1348147,353.19742,79.268326,133.74432,2.616979e-06 44,549.9225,128.9515,26.815857,69.07245,2.4498675e-06 44,1.5286573,415.1395,34.992424,82.272766,1.3029328e-06 44,425.1284,88.589935,34.37085,77.96239,9.356433e-07 44,404.58353,64.92099,42.261536,155.53595,8.3429524e-07 44,529.2183,426.44528,85.85004,70.54083,7.5908406e-07 44,404.5561,35.557724,35.4545,84.76338,3.3202102e-08 44,1.6490642,12.539212,34.62409,72.47385,1.1623997e-08 44,512.2215,3.4701953,42.395935,51.4595,8.859957e-12 44,387.80856,2.9980795,45.218994,48.57537,2.4772259e-12 45,444.60773,203.07506,24.243439,52.330856,99.827255 45,420.60367,208.75868,39.928375,57.59407,0.16659889 45,587.6133,199.20001,35.20764,65.364655,0.014668255 45,617.55316,219.74287,21.593506,80.75087,0.0036655755 45,621.6637,303.54523,17.482971,52.83966,0.003215846 45,506.67184,295.48117,27.975067,48.230896,0.001082373 45,425.81265,177.90117,60.060577,109.317184,0.00095980783 45,617.27405,166.28055,21.87262,82.90094,0.00083274354 45,603.15106,379.1262,35.028564,113.10779,0.0007288382 45,584.4818,106.80594,52.611145,229.31189,0.0005038003 45,610.36237,260.4052,28.784302,145.65778,0.00046082714 45,614.76843,89.4393,24.378235,98.85039,0.00039188855 45,72.549614,200.60722,24.803215,50.330276,0.0003165113 45,527.77875,391.7464,109.03784,99.62106,9.045953e-05 45,0.802085,235.55522,18.262243,76.05995,4.356949e-05 45,430.2931,214.38837,79.39136,197.18637,4.204362e-05 45,3.4989796,192.6606,56.692207,236.64403,2.6097521e-05 45,1.0381225,309.65585,18.316475,76.02133,1.884778e-05 45,2.1468637,133.79765,36.554413,164.8427,9.113375e-06 45,409.02362,427.86023,75.78931,67.32175,8.107273e-06 45,0.8818555,364.2308,13.799507,48.5412,7.4258155e-06 45,485.65527,425.422,74.359924,69.3226,6.4335472e-06 45,329.99658,449.98236,41.621277,49.438232,5.4276234e-06 45,284.04578,433.20963,77.18469,64.32034,4.2115535e-06 45,0.9585921,398.32584,18.302542,72.83194,3.9097285e-06 45,357.4397,449.4495,41.84012,50.710938,3.7602217e-06 45,1.7856104,296.55304,34.35521,175.24219,3.1057364e-06 45,391.8625,448.19403,44.33493,50.69745,2.7754388e-06 45,2.17701,446.4002,35.3006,55.70517,2.5318616e-06 45,14.150984,429.8839,76.170616,69.87448,1.3906679e-06 45,567.2123,437.13168,44.285583,64.897125,1.330307e-06 45,69.47922,430.71014,74.80983,68.37091,1.1016458e-06 45,540.2577,437.99585,45.55896,62.1698,9.92833e-07 45,587.1873,11.870384,51.664062,122.41538,2.0408348e-07 45,1.6502345,11.397852,34.44055,74.03822,1.0845529e-08 45,434.0539,0.83666015,47.078552,60.746273,3.7100834e-09 45,484.09064,1.2526302,46.228577,58.680016,8.676775e-10 45,377.39255,1.7389421,41.2594,46.94457,2.0395399e-10 45,516.7336,0.17557454,47.939392,47.03909,4.236565e-12 46,495.82404,214.61638,24.118958,57.89885,99.797424 46,476.79938,218.01016,25.855225,60.52719,96.30649 46,460.8623,202.39543,57.02362,100.50496,0.05095364 46,334.32227,220.3384,22.324524,49.898117,0.025963955 46,597.2182,201.55165,36.689575,66.38063,0.025596688 46,622.6634,320.02338,16.483276,51.32431,0.0026742849 46,589.3272,185.69237,47.637573,211.17796,0.0016711332 46,603.4577,56.56388,35.688965,89.583824,0.0009999989 46,1.597697,225.45543,17.881025,69.214005,0.00087181816 46,607.823,334.89822,31.32367,174.32303,0.0006794779 46,611.8971,273.76242,27.249573,109.59143,0.00026256294 46,620.3636,214.66502,18.783081,64.63167,0.00022746135 46,0.6160368,261.5455,14.051863,50.503387,0.00014368918 46,4.5477314,109.35753,72.215,182.5898,8.8187764e-05 46,468.80646,274.8785,27.775696,54.089874,8.616035e-05 46,1.4738038,236.45168,28.309933,161.06691,6.936211e-05 46,583.1058,17.760756,55.203125,235.18352,5.111887e-05 46,592.1657,464.9175,38.33612,46.229156,4.4568904e-05 46,447.58878,161.1676,127.59866,227.75372,3.55313e-05 46,611.4929,10.146224,27.653748,89.32597,1.8656607e-05 46,0.941119,333.37003,18.543823,80.201385,9.556128e-06 46,0.9282674,413.75085,18.098621,70.14197,7.532261e-06 46,1.9178785,109.465576,20.546272,147.71768,6.0206785e-06 46,546.4296,416.87506,78.19934,84.53952,5.288238e-06 46,1.6284783,337.33292,33.7662,152.77875,3.131433e-06 46,465.8523,141.17113,28.686523,62.59375,1.1823624e-06 46,456.95898,110.72315,46.812653,135.63663,3.5688475e-07 46,550.25714,4.802536,84.965454,78.07096,2.1585795e-07 46,345.42764,0.0,46.100555,52.354156,1.6411704e-08 46,1.5985092,10.891198,34.112896,76.17857,1.0138186e-08 46,535.11456,3.9824138,48.06848,53.124176,7.836989e-10 46,496.92685,0.0,44.71573,47.010113,1.3628036e-12 47,540.2396,238.81987,23.77948,47.602615,0.1507956 47,574.6533,116.75766,59.25049,205.36743,0.14514218 47,594.30444,119.31029,32.079285,74.242004,0.0987957 47,528.01807,203.47643,41.54828,99.787186,0.07750339 47,569.9155,209.07626,39.2713,67.93521,0.06150083 47,359.1785,219.63948,34.588318,59.28636,0.050277695 47,620.9415,295.68674,18.20514,58.142303,0.045531373 47,620.83466,207.83829,18.312012,68.54257,0.011717829 47,605.84064,74.10253,33.30603,86.04911,0.0069094547 47,621.0461,123.4293,18.100586,66.497795,0.00362178 47,608.24994,219.53717,30.854065,159.7485,0.0036213936 47,585.0932,260.64847,52.62799,198.78711,0.0020443 47,616.8959,394.50754,22.250793,83.5972,0.0007020529 47,599.26245,0.0,39.884216,113.50394,0.00030607427 47,1.5342082,229.54016,18.01226,68.07327,0.00014637028 47,622.96356,30.432625,16.183105,50.636726,0.0001215877 47,613.7359,0.0,25.410767,47.199368,4.9303173e-05 47,1.0937166,254.80078,20.882034,111.06299,4.2276908e-05 47,2.275433,143.98515,35.669327,177.39558,2.373081e-05 47,3.4874432,221.64128,57.24316,227.82774,1.1541951e-05 47,0.9738127,339.24573,20.0869,131.56021,8.99213e-06 47,0.8104354,420.56622,16.323357,79.60297,3.620552e-06 47,1.4296867,81.0116,21.26558,148.50546,2.023294e-06 47,5.608063,356.7524,79.27994,130.84058,9.175463e-07 47,469.31308,6.5961623,44.947296,52.450832,1.9162137e-08 47,393.92166,2.4958138,46.498596,53.48737,1.7704645e-08 47,511.1107,4.2146487,43.53653,49.321518,6.430937e-09 47,1.765905,11.482696,33.847775,74.47601,2.5306508e-09 48,593.7961,348.87018,41.842285,118.744354,0.177417 48,496.1096,218.12701,33.52774,66.88873,0.008433698 48,438.47885,214.49266,31.549194,66.99248,0.008031698 48,609.4676,138.36324,29.560425,146.40953,0.0018753859 48,622.77045,376.3427,16.37622,54.417725,0.0015211103 48,377.71524,215.44928,31.273865,61.29889,0.0013469864 48,618.2446,395.6166,20.902039,81.16693,0.0012583666 48,620.26355,134.30298,18.883118,60.75534,0.0010147647 48,617.26794,234.34845,21.878723,84.38193,0.00067493645 48,587.1211,141.98119,51.558777,292.83124,0.0005625969 48,0.6358012,245.33128,12.890921,48.42665,0.00022263467 48,1.0311483,215.99953,18.76709,126.79323,9.563199e-05 48,0.51068604,271.33127,14.049565,49.378998,4.1346193e-05 48,467.01648,241.22195,80.092285,197.53821,4.033714e-05 48,398.02692,386.84564,114.67932,105.170105,3.2666696e-05 48,2.1504793,144.52638,34.93731,172.66676,2.415376e-05 48,503.9052,142.1501,37.73169,84.38513,2.1303344e-05 48,587.2915,427.71796,46.66565,78.78415,1.9525982e-05 48,1.3427011,263.05252,31.046661,182.20563,1.4722311e-05 48,1.0236491,352.87006,19.19206,127.061584,9.279659e-06 48,1.4521542,138.10526,14.828506,55.71077,8.464921e-06 48,514.2622,388.10608,124.88446,108.2666,7.055769e-06 48,5.614284,181.21791,77.6761,245.18147,6.917926e-06 48,410.36664,437.52518,49.497498,62.615814,6.36022e-06 48,3.366652,343.1629,57.375145,140.80222,3.1650354e-06 48,1.094301,442.4548,21.72631,60.596497,2.0924156e-06 48,467.5014,429.00616,86.373535,71.46207,1.5351187e-06 48,588.6842,13.319623,49.23108,102.949814,1.2986801e-06 48,403.7076,4.8440905,45.366974,45.17229,9.2066495e-07 48,554.0957,438.67776,46.516907,63.94635,7.262169e-07 48,1.5227629,64.05026,19.57346,151.8081,1.0696388e-07 48,491.79434,7.487149,46.113434,158.5931,2.0835007e-08 48,1.7937696,13.206237,56.42519,125.99205,6.092709e-09 48,509.9781,0.0,44.967163,47.383186,2.9954705e-09 48,377.22147,4.671608,39.581238,46.616413,2.7158518e-09 49,425.1712,171.54282,31.679749,74.985,23.900894 49,396.0859,216.11978,22.960785,45.014465,0.07631799 49,617.69666,213.96298,21.450012,73.20471,0.0023989535 49,601.3128,200.41042,36.860535,168.38536,0.0013213344 49,415.61865,199.19116,39.81848,99.5665,0.0010502506 49,598.86475,332.76523,40.088745,173.03983,0.00091689016 49,338.8761,224.77917,24.605316,46.696106,0.00067932176 49,615.9465,320.1806,23.200195,92.655365,0.00042536322 49,609.8188,117.047714,29.32788,150.37001,0.00036852885 49,0.8854924,235.13121,18.039886,67.1913,0.00020848682 49,589.4319,444.15512,42.074707,59.692444,6.9720365e-05 49,602.2457,0.0,36.850098,111.28422,3.6671703e-05 49,0.62155396,202.4905,13.11557,51.75305,2.9111668e-05 49,480.28442,284.1641,75.22833,175.17294,1.8979488e-05 49,1.4531307,268.243,31.630114,172.74158,1.4903114e-05 49,0.92036057,351.97403,19.28467,123.76395,1.05112595e-05 49,512.75665,388.36313,121.64404,107.5296,1.0414553e-05 49,0.60547525,278.419,18.470284,79.91626,9.3386425e-06 49,3.6114812,178.67339,58.41953,193.06789,4.627958e-06 49,486.97336,417.38263,73.104034,76.557434,2.9175862e-06 49,540.6105,437.61032,42.76239,64.98059,2.5729103e-06 49,13.797328,112.922516,85.42562,178.7514,2.4458525e-06 49,1.7695923,155.9785,28.840506,143.53227,2.0133314e-06 49,3.447915,336.65823,57.015244,144.69559,1.8304266e-06 49,1.0517693,443.08313,21.495295,59.611786,9.634344e-07 49,1.5546265,69.47908,18.03492,141.70049,4.4761325e-07 49,359.80612,3.6190836,43.187805,51.7109,9.117679e-08 49,403.081,4.6500635,43.846466,49.987186,4.0268677e-08 49,576.90564,2.0981317,45.456665,50.71603,6.7616335e-09 49,1.7988493,10.035759,33.488255,76.25334,2.6952616e-09 49,526.32306,3.8737307,45.454224,53.87403,1.9646762e-09 49,442.0846,4.188428,44.63156,45.61042,7.467944e-10 50,577.5599,202.76253,32.59326,48.5979,0.16578424 50,41.336018,206.82332,25.998005,47.508743,0.0856748 50,58.09232,202.33522,27.21397,49.787476,0.0044552404 50,619.21466,74.83173,19.932007,78.51191,0.002193359 50,621.28156,219.63707,17.865112,61.25566,0.0017534703 50,343.24472,219.92737,33.62387,58.343964,0.0011650192 50,602.3636,210.89146,36.34247,181.32405,0.0010444862 50,616.48193,304.52032,22.664734,83.7435,0.00040951985 50,606.0295,433.47986,33.117188,73.77048,0.0003805958 50,620.53174,41.159466,18.61493,65.5782,0.00030904787 50,436.90524,132.46661,23.079254,53.637375,0.0002147769 50,519.0771,186.12738,33.46118,67.63916,0.00013468506 50,587.1506,301.44473,51.224792,195.40027,0.00013195777 50,533.8563,234.68811,29.625488,50.118164,0.00012656653 50,602.6484,58.026524,36.49829,165.23315,0.00011274953 50,451.02402,135.97545,24.866455,57.413925,0.00010523593 50,484.9936,82.99705,32.9328,74.48063,0.000101326885 50,1.3471786,219.84764,18.14424,72.435776,9.055741e-05 50,616.5997,354.38437,22.546997,89.58746,6.581851e-05 50,1.0838851,253.64032,19.875448,137.401,3.6127403e-05 50,2.2924902,169.23224,35.35586,161.49902,2.4203797e-05 50,0.4456893,391.8309,18.70681,76.58722,1.4465589e-05 50,553.88837,416.36826,75.79309,83.872894,1.44642645e-05 50,437.68912,219.8111,80.309906,160.49448,1.3470109e-05 50,0.5043103,286.57913,14.160325,50.872192,1.0655387e-05 50,1.8914177,167.3274,19.37257,74.971725,1.04489745e-05 50,566.1671,19.813684,71.46423,284.87366,7.6181423e-06 50,6.074678,181.5917,77.386,266.0207,5.2028167e-06 50,3.2911248,338.38705,57.05756,143.14755,1.7006676e-06 50,1.1744792,144.34984,14.206592,54.356735,1.2230399e-06 50,1.3338135,416.17215,35.026337,81.99875,7.600983e-07 50,550.0207,450.3997,42.007263,53.547394,5.233748e-07 50,501.75912,421.43372,74.6293,73.24631,3.808232e-07 50,468.8452,4.119546,44.92096,51.036167,6.081586e-09 50,1.7580649,10.52235,34.04029,75.42703,3.5309273e-09 50,495.66626,1.478532,46.036255,50.01621,1.3021159e-09 51,491.19226,149.51598,35.089844,83.94054,0.2858666 51,60.01668,215.36815,25.19312,47.64244,0.019875266 51,39.988277,199.47145,32.095364,48.893707,0.0072799195 51,602.83966,250.42824,35.755432,123.2585,0.004509501 51,607.6277,128.19911,31.0484,96.22121,0.0040962603 51,625.28046,173.05449,13.866211,46.436295,0.0016662794 51,573.5183,67.66236,62.32129,201.6763,0.0011701995 51,302.30222,181.39514,26.2789,50.03038,0.00086998515 51,621.19135,112.37594,17.955322,64.39056,0.00083228544 51,621.20306,56.58413,17.943604,57.47164,0.00050833396 51,602.8056,0.0,36.341064,133.0447,0.00041917057 51,601.8468,317.38992,36.761475,174.12946,0.0003650373 51,620.5996,252.64328,18.547058,66.52228,0.00035702222 51,606.6077,432.64218,32.53894,69.93967,0.0002468457 51,581.80457,190.83841,32.0235,76.98096,0.00022531081 51,1.4212264,223.54063,18.658016,67.3445,0.00020204711 51,539.64026,132.28781,24.76001,57.741882,0.00017125263 51,573.36053,186.06386,64.70514,274.61072,0.00015205357 51,613.28955,0.0,25.857117,48.85511,2.711038e-05 51,2.1226027,196.45595,32.905514,177.12251,2.6070753e-05 51,5.601071,145.86505,45.04557,123.92807,2.4793519e-05 51,5.0268655,182.20537,78.25905,263.33142,1.7112498e-05 51,0.9098348,346.57056,18.05441,126.99783,1.52178045e-05 51,0.61377686,279.17804,14.088062,49.19452,9.406718e-06 51,1.6515496,112.32124,19.666067,138.27061,5.880986e-06 51,0.8225757,302.81512,18.241102,78.35104,5.0013527e-06 51,542.7297,423.60864,80.53534,73.80188,3.2409325e-06 51,476.28882,429.12714,79.51288,69.53888,2.642202e-06 51,3.1858985,334.59283,56.757507,145.95941,1.8632065e-06 51,0.81411296,441.9547,21.775024,61.043335,1.5647335e-06 51,297.77698,431.08295,82.039764,66.785034,8.145539e-07 51,578.38025,2.085638,48.87207,61.854713,4.2105634e-07 51,476.83807,6.566112,41.53943,50.021843,2.4009228e-08 51,2.5165348,14.026888,57.120895,125.222916,5.7575673e-09 51,530.55084,6.4709687,43.833862,49.35555,4.4324935e-09 51,1.0102686,7.5545363,18.932228,55.16587,2.507358e-09 51,449.91257,2.7421224,40.457916,47.76959,7.9845053e-10 52,426.7468,230.20047,23.947845,46.76349,0.027070804 52,621.72455,199.23059,17.42212,60.077698,0.008568542 52,540.60236,155.0956,28.971802,63.340836,0.0017088547 52,610.57635,139.7196,28.570312,140.15756,0.0012432417 52,441.4245,114.32779,29.227173,61.96826,0.00072835875 52,617.2184,237.56651,21.928284,87.14198,0.0005825728 52,26.555262,156.94405,43.513084,80.671814,0.00033148399 52,611.5165,378.73294,27.630188,123.489624,0.00033049472 52,586.88916,202.91321,27.759766,46.099533,0.0003115995 52,1.9355094,153.29607,36.42768,88.54303,0.00022900585 52,600.2792,215.64246,38.867493,210.02225,0.00016546519 52,476.33643,122.67248,25.25473,50.975136,0.0001539544 52,1.1446648,180.1246,15.605412,63.025925,0.00014244826 52,304.76312,183.25548,24.38501,51.105362,8.194925e-05 52,617.0616,318.90222,22.085083,95.28317,5.9871716e-05 52,449.10422,107.034325,45.45578,91.83312,4.9534297e-05 52,550.2575,97.74153,41.577698,133.58748,3.5683734e-05 52,0.61333984,398.87802,18.431524,74.41458,2.9928888e-05 52,0.96653974,190.99779,20.770433,131.75932,2.5128445e-05 52,2.553511,139.23462,58.129875,186.96933,1.972324e-05 52,0.8021892,216.03902,13.507079,56.778183,1.3395257e-05 52,0.99394697,346.4604,17.750769,71.89575,9.576126e-06 52,0.50687176,279.3889,13.960279,49.05536,8.986848e-06 52,553.6785,426.18536,85.05884,73.7319,7.9387055e-06 52,1.3360718,264.7659,32.77889,187.70255,7.814197e-06 52,423.06357,102.71837,46.398468,134.3581,6.518528e-06 52,3.397383,391.53558,56.35246,99.495575,4.0609943e-06 52,610.66003,0.0,28.486633,140.83946,3.7234095e-06 52,0.71150637,303.60968,18.386124,76.31702,3.037185e-06 52,284.17267,430.66824,73.0155,70.40384,3.3884297e-07 52,1.5870427,11.640931,34.848335,75.68794,1.675555e-08 53,487.94183,203.65105,38.373413,101.99312,0.021309204 53,621.77515,218.29771,17.371521,52.510666,0.0059333397 53,573.2574,97.47987,62.666687,167.55669,0.004517326 53,617.76917,241.0794,21.377502,82.30823,0.0017225591 53,612.25775,165.66531,24.128784,58.09555,0.0016124013 53,502.7269,200.50508,23.294037,49.434174,0.0007563005 53,528.5229,146.53123,47.193054,106.64192,0.000665771 53,624.4634,186.76085,14.683289,48.35298,0.00063607324 53,485.42297,110.82875,36.509216,75.495605,0.00041740583 53,617.8011,292.88318,21.345581,80.02713,0.00019364659 53,2.3297827,157.0506,30.516161,134.6507,0.00019114665 53,543.2453,165.91911,23.241516,46.791656,0.00016546456 53,615.28656,83.865486,23.860107,104.00634,0.00014975405 53,1.3936793,222.22594,18.015648,63.699753,0.00013830623 53,622.06036,359.8986,17.086304,51.620605,0.00013027558 53,465.8046,82.14179,82.13016,191.13577,0.00011103391 53,600.2584,175.6892,38.58954,185.964,8.710567e-05 53,504.33813,112.571434,37.30304,85.97027,8.1407095e-05 53,1.1027645,378.05325,18.053297,73.03427,4.5944176e-05 53,611.3344,317.27393,27.812256,139.29886,4.237847e-05 53,1.5826522,222.26503,28.488903,152.06902,3.3157397e-05 53,613.5563,416.94614,25.590393,81.5383,2.9134666e-05 53,3.4395444,199.90495,56.679546,242.73265,2.313206e-05 53,530.75476,137.3439,25.544373,62.1407,1.7447515e-05 53,571.9352,358.595,67.21149,130.57568,9.872495e-06 53,0.6725928,418.5834,16.37283,81.78171,8.406275e-06 53,1.2897258,304.4536,33.21683,177.29514,6.180831e-06 53,0.6555347,310.07147,13.779751,46.397552,4.5161573e-06 53,5.0844173,357.37845,79.666695,128.34406,1.4323379e-06 53,587.4274,11.659389,50.95172,117.88737,8.505037e-07 53,1.481115,12.982449,34.925465,74.0522,1.37937315e-08 54,483.5349,211.1221,23.645874,45.966675,0.47295067 54,2.5918124,209.00368,27.985975,64.36253,0.44878355 54,553.15686,207.5577,23.735474,48.542465,0.12546457 54,610.05725,196.2961,27.190247,59.47911,0.09315996 54,496.51053,207.14836,23.230988,50.445053,0.032108434 54,625.8227,125.364456,13.323975,46.604324,0.0068187597 54,600.22205,147.28821,37.82129,192.57794,0.004872564 54,20.935265,217.43394,27.51202,47.951767,0.0015223991 54,546.26544,96.4264,23.48816,45.759544,0.0011908192 54,482.83408,207.58423,39.164154,115.015594,0.00068130903 54,605.446,103.7431,33.700684,101.06882,0.0006303125 54,610.65326,319.02893,28.493408,148.93951,0.00050190696 54,616.7705,290.72495,22.37616,88.64874,0.00047239818 54,2.0003166,90.4121,34.1196,200.8713,0.00018586792 54,597.71643,404.35776,40.694885,89.50232,5.8938826e-05 54,292.4964,159.60555,35.144623,65.3611,3.241458e-05 54,469.59464,102.19686,25.323181,54.79966,2.806025e-05 54,1.6799552,203.19032,33.119785,187.8814,2.331171e-05 54,0.7949447,234.97102,19.42122,90.52681,2.164803e-05 54,492.261,94.42529,37.684937,85.64438,2.1233367e-05 54,0.9631722,357.0779,18.085087,71.558136,1.3261613e-05 54,350.8027,148.063,80.83624,170.06035,1.13663145e-05 54,3.840713,121.13924,77.506714,242.45753,1.0250821e-05 54,0.6775281,323.5374,13.740831,48.338654,6.08828e-06 54,0.5687305,425.34122,13.785945,47.08136,5.3820377e-06 54,1.396683,334.82626,33.401073,151.14072,4.0047357e-06 54,597.90356,3.718991,40.76593,81.18079,2.2454508e-06 54,1.0435466,443.43713,21.610168,59.370636,1.1940886e-06 54,1.6760864,62.727997,17.85281,139.15187,1.1263125e-07 54,1.866447,12.874873,34.446354,75.36509,1.3371352e-09 54,516.7826,5.125775,41.0672,53.350143,1.1500824e-09 54,489.4496,1.3003027,44.31543,55.01965,1.859546e-10 54,465.361,1.2338607,41.166412,47.08822,2.1119325e-11 55,551.6105,214.17569,25.194153,58.889435,95.98978 55,568.8959,217.66585,24.28888,54.75789,90.31839 55,369.28085,207.00604,25.807373,46.131912,88.15338 55,603.29895,208.7266,27.020874,57.441345,8.34847 55,523.66504,188.63716,25.306458,48.240494,0.1441474 55,450.40662,213.16084,34.456787,75.36775,0.018256234 55,619.104,192.69835,20.042664,59.10968,0.014881011 55,607.1012,108.22458,31.685059,164.66159,0.0024591133 55,251.41443,167.5204,22.641083,46.434128,0.0022303325 55,529.9823,209.63298,24.553406,51.50386,0.0019438061 55,375.87823,195.59308,47.687805,90.53827,0.0016789734 55,459.91934,98.62739,38.871765,75.17594,0.0014391381 55,610.2206,215.63538,28.883118,144.263,0.0012594088 55,448.32465,193.80324,77.718445,155.09248,0.0004014306 55,454.2101,85.85295,27.904175,51.22664,0.0003488643 55,539.3601,170.01852,92.9436,188.95877,0.00023107375 55,616.9382,66.04373,22.208496,86.00893,0.0002193282 55,611.3845,365.92334,27.762146,134.06064,0.00018072723 55,433.50327,58.53731,44.621704,94.53929,0.00015838114 55,357.9125,155.18063,94.92239,198.59875,2.8870412e-05 55,1.3793718,206.85272,18.927055,71.02817,2.4316796e-05 55,3.3221354,113.10573,58.627834,201.64806,1.7653383e-05 55,0.92913085,345.8417,16.542719,125.31372,1.4783809e-05 55,0.81839603,246.53552,19.868114,143.85324,1.2381855e-05 55,607.2942,4.3511295,31.852478,57.50733,1.2033338e-05 55,586.87164,14.542003,51.232117,109.88428,5.6002777e-06 55,1.499384,101.605064,17.575499,143.77774,5.0938324e-06 55,3.1068327,275.4951,56.230576,196.47299,3.2096814e-06 55,1.335376,411.8386,34.705875,84.382935,1.0460775e-06 55,1.4686149,12.192725,34.49206,71.452415,7.761809e-09 56,418.69955,221.12053,24.584839,49.48973,99.92271 56,395.54324,215.40207,27.794403,53.918213,99.63245 56,602.0308,229.53876,35.292114,123.1073,0.03328993 56,566.7234,234.80354,25.28888,46.5338,0.015110329 56,623.946,213.08255,15.200684,47.629547,0.0067004906 56,529.6342,194.15521,31.941711,65.0831,0.003860109 56,614.8544,125.02508,24.292297,85.509605,0.0014080469 56,397.02478,194.63815,63.821106,95.38068,0.0008990825 56,602.9739,92.555824,35.02539,195.34723,0.0008772843 56,609.9086,329.88406,29.238037,152.51105,0.00069740444 56,586.3129,214.12352,23.844849,45.46025,0.00050209847 56,243.72168,164.905,22.790344,50.61139,0.00044226722 56,607.4591,435.76065,31.687561,68.894165,0.00011671796 56,560.7005,126.03206,37.156555,77.1422,9.758013e-05 56,372.17398,153.04819,133.50568,227.07895,7.117838e-05 56,523.6694,97.16037,77.533875,192.54755,6.133854e-05 56,607.6193,5.219844,31.527344,126.824104,5.0105096e-05 56,1.2249715,214.4739,18.151901,69.66678,2.4683433e-05 56,560.959,388.82693,78.18768,101.45953,1.9704026e-05 56,0.6828475,324.61017,13.562462,48.7865,1.493665e-05 56,0.8278825,338.2251,16.910944,130.1849,1.3665487e-05 56,557.87225,38.822952,25.29132,59.669914,7.776758e-06 56,0.49180827,260.4236,13.965403,48.328094,7.6138713e-06 56,1.1757236,265.97443,19.46531,134.33167,6.27953e-06 56,1.4882381,141.29897,19.084566,71.93939,6.2600852e-06 56,3.0612695,255.5873,55.95924,213.06209,6.1742085e-06 56,2.2404664,102.23107,35.16874,164.17102,3.6952656e-06 56,1.3333822,414.34576,34.87492,83.75757,5.858681e-07 56,2.7102768,14.136087,56.68686,126.016,8.871774e-09 56,520.1169,4.6036086,47.081177,53.596054,3.3799946e-10 57,487.11215,223.68178,33.008392,77.633316,99.94342 57,453.36526,221.90414,34.48288,75.779175,99.904755 57,475.46637,214.55127,26.398163,57.776917,0.1812073 57,585.8341,194.9496,37.39026,80.96947,0.029606098 57,426.96613,202.47762,45.704865,77.25481,0.028997669 57,313.3262,198.3563,22.333435,47.65506,0.011050217 57,433.0696,192.07599,78.085724,142.42273,0.004330822 57,622.3359,225.66287,16.810791,52.20343,0.003818874 57,606.26807,151.39383,32.8786,94.40732,0.002803505 57,237.77502,165.26526,25.260193,51.71364,0.002308455 57,503.22382,87.27172,39.58734,76.320076,0.0020928497 57,623.826,166.2838,15.320679,51.672638,0.0009071066 57,603.21295,187.16312,35.933716,200.41586,0.00018859084 57,606.5846,7.6437273,32.562073,55.433567,0.00010325049 57,617.1512,334.25494,21.995483,81.18582,8.7909735e-05 57,284.98328,153.4411,26.848694,63.381866,7.471049e-05 57,587.2252,16.485926,50.746338,107.21874,6.577164e-05 57,608.30133,442.15268,30.845337,65.16406,4.6689813e-05 57,1.086259,215.44868,20.04562,137.95116,2.3150247e-05 57,602.44135,348.48752,36.705322,148.12665,1.434196e-05 57,0.79260254,338.22208,18.34226,129.55685,1.3318802e-05 57,0.6126689,288.8292,14.0368595,48.990173,1.2619252e-05 57,75.93133,93.59138,86.92643,176.26761,1.1203615e-05 57,3.4742222,201.51498,56.250717,231.28223,8.328965e-06 57,2.147355,124.03029,37.145447,166.74129,3.5619537e-06 57,555.0044,427.85956,83.878235,74.30878,2.0091575e-06 57,0.5858317,417.6048,15.924254,83.77365,1.7329933e-06 57,2.77292,388.63574,56.7258,102.46277,1.0924891e-06 57,564.6984,5.6508985,61.14032,46.20013,7.0331396e-07 57,1.9179119,12.8579035,34.500957,75.55525,7.550849e-09 57,538.678,5.7428875,43.927063,49.985405,2.071746e-09 57,508.24203,4.875399,48.960297,52.451656,4.1063e-11 57,485.43887,0.9773519,44.569,54.69968,8.951538e-14 58,469.95547,208.6107,22.60611,46.990555,99.83981 58,25.485817,196.9568,39.85276,71.638626,0.058752704 58,47.62004,214.7398,22.34581,46.775543,0.014086213 58,369.03445,192.84906,24.251556,46.47975,0.005250402 58,554.092,67.452736,45.30072,119.51014,0.0039375015 58,489.62845,188.40031,34.560944,55.47339,0.0020404723 58,570.65686,70.691284,26.20514,59.218384,0.0016727437 58,314.09796,194.2459,22.60254,47.015305,0.0015478102 58,329.96313,194.67253,25.53534,50.33687,0.0015126219 58,611.80444,132.58876,26.56311,120.91495,0.0011677312 58,5.2670865,110.03335,74.92258,169.61435,0.0005862954 58,20.894266,122.3943,34.61985,74.220566,0.00056496845 58,517.2969,175.62282,39.55133,74.98448,0.0005519726 58,616.9371,218.24045,22.209595,89.76846,0.00041045828 58,616.9033,360.08478,22.243347,80.84674,0.00017191585 58,617.1723,284.6755,21.974365,90.98361,0.0001283021 58,609.49457,7.0947104,29.651672,108.9605,0.000113293834 58,452.6676,179.87657,59.886414,97.2357,8.3699706e-05 58,585.41315,188.75835,53.73352,269.92816,6.784741e-05 58,584.41394,0.25304687,54.098938,259.0152,5.0169267e-05 58,1.1542481,202.7008,18.887127,126.579315,3.964933e-05 58,1.0144336,398.76917,18.220547,71.02127,3.4466244e-05 58,617.7243,75.98721,21.422363,76.79715,3.1481235e-05 58,609.4298,442.13824,29.716858,61.163635,2.8680182e-05 58,571.6288,359.88538,67.51788,128.66379,2.2131111e-05 58,1.9622844,98.86026,19.631649,77.07565,1.4423325e-05 58,1.0506625,309.82968,19.578072,137.55826,1.1676266e-05 58,0.6917245,316.68915,13.90448,49.651,1.0498497e-05 58,3.637344,328.07568,56.973522,154.3323,1.028584e-05 58,420.93628,114.70822,145.2868,239.64584,5.159513e-06 58,453.57935,43.974724,27.357697,59.599197,3.880797e-06 58,25.31084,86.3733,137.03987,232.6514,2.8899383e-06 58,1.0885417,443.419,21.434992,58.871826,1.3844723e-06 58,586.6984,7.2614293,44.264526,50.320267,2.8805263e-07 58,1.7356218,43.52772,36.568974,182.98035,2.8383192e-07 58,531.85614,9.454189,79.2702,64.404205,1.5495317e-08 58,1.8682178,11.973216,35.56064,80.12376,4.142633e-09 58,517.9253,7.446989,45.090515,49.144287,1.2583709e-10 59,529.6337,206.38748,29.179382,61.602936,99.876526 59,390.46347,206.85612,31.534729,62.442703,0.104795195 59,546.2429,202.59337,27.578857,53.942093,0.08254215 59,338.00778,190.06418,24.959442,45.49106,0.0075785066 59,339.82556,206.66777,36.84091,64.15019,0.004661377 59,617.88055,208.16666,21.266113,77.95792,0.0006849391 59,608.67706,108.81844,30.469604,154.06598,0.0004993027 59,582.1719,8.497793,56.81067,114.54648,0.00046814306 59,617.2516,334.58945,21.89508,83.36719,0.00014144827 59,618.85236,116.539,20.294312,65.80235,0.0001406797 59,617.477,393.80234,21.669678,79.34512,0.00013712527 59,0.9031478,217.67398,17.824108,69.71869,0.00012132696 59,510.9973,168.83139,70.7912,142.67017,0.000108608365 59,617.512,288.7172,21.634644,81.49051,0.00010759045 59,605.9363,4.9655666,33.21039,59.221916,7.907121e-05 59,601.7346,189.1879,37.41205,189.97687,7.761019e-05 59,601.82416,298.73657,37.32251,183.16025,5.1458817e-05 59,1.3432951,106.38402,19.451397,79.30719,3.950824e-05 59,1.4986589,206.85399,28.60136,145.94872,3.4369707e-05 59,2.246761,134.27734,28.813885,137.9111,3.0147745e-05 59,609.30035,440.95044,29.846313,62.057068,2.7796514e-05 59,0.8386157,330.0198,13.795102,48.404877,1.11860845e-05 59,3.1639276,244.96008,57.268963,226.35367,1.1185552e-05 59,0.9351913,330.81073,20.023201,132.77011,6.83003e-06 59,3.6809409,88.36389,71.93818,187.19962,6.1372716e-06 59,0.77939373,282.0351,18.451365,76.62552,4.9215137e-06 59,0.8019776,422.0338,16.166248,79.99353,2.9386358e-06 59,3.5086834,398.56122,56.43494,96.02875,1.0129864e-06 59,70.368515,76.173,81.24724,176.63733,6.7795133e-07 59,577.3801,5.3919125,44.637207,50.73774,1.1080938e-07 59,1.2542025,36.03371,35.254704,177.6582,6.3798964e-08 59,1.5631658,11.561973,34.983036,78.72878,2.7554543e-09 59,441.73627,7.069795,44.478333,46.97345,7.969868e-10 59,550.8656,3.2346177,46.419495,51.994328,3.6060788e-10 59,471.11777,5.4316196,44.642914,48.41124,1.4603234e-10 59,413.94778,2.2510774,45.876648,48.37233,9.3562005e-11 59,525.1586,0.83738935,43.32538,48.197304,2.5522956e-12 59,495.702,0.70585126,45.497406,46.07639,7.4257056e-13 60,422.37018,192.06363,26.580658,55.494843,99.78113 60,356.67838,188.6019,24.345001,46.426865,2.1051338 60,438.96704,188.50108,32.908478,59.99298,0.117878534 60,533.2443,182.95293,26.756653,55.31711,0.11783694 60,377.31458,218.7512,36.271423,55.78456,0.06698013 60,437.06763,238.06401,25.809662,48.455948,0.00785653 60,327.90234,199.58836,23.776764,45.64467,0.0016635484 60,343.44156,163.02351,42.74228,108.88347,0.0010581989 60,405.2729,160.9282,61.185913,124.01283,0.00046160573 60,612.8302,187.85498,26.316467,119.51224,0.00036603253 60,347.267,116.35464,25.806732,47.048576,0.00033117368 60,330.27875,221.58047,31.717804,65.975006,0.00031244848 60,621.77094,332.35333,17.375732,53.45514,0.00024426298 60,617.4649,397.91556,21.681763,75.03674,0.00016832897 60,475.3736,178.13411,24.649963,52.690613,0.00013677357 60,1.3329883,192.31764,19.687803,72.97804,0.00011802826 60,602.8973,229.04128,36.24939,167.76405,0.00011716539 60,610.59827,101.486786,28.5484,120.655014,0.000116796014 60,2.4312575,98.0842,32.314835,184.83102,6.540074e-05 60,357.68256,111.57547,39.407562,73.501114,5.3087235e-05 60,376.24536,113.91955,133.31168,237.19983,5.0573504e-05 60,1.34608,209.39441,28.908257,143.82861,3.435237e-05 60,608.9765,440.58423,30.170166,62.8721,3.204611e-05 60,325.41055,146.33485,101.492065,191.92345,1.8638113e-05 60,0.753912,391.93713,18.436655,75.31714,1.7604092e-05 60,586.56494,335.54456,52.581726,150.70062,1.5741847e-05 60,2.7855258,187.99162,57.305557,233.72035,1.32176e-05 60,0.7212264,308.17078,18.373877,74.47333,8.237599e-06 60,585.30707,80.94494,53.00879,228.21445,7.3915344e-06 60,1.0782275,442.3158,21.622496,60.36194,3.034047e-06 60,1.3742807,295.68866,33.666004,178.59537,2.9541125e-06 60,3.196859,397.53293,56.778053,96.87741,2.014522e-06 60,586.6019,12.039597,51.73523,115.05249,6.929914e-07 60,1.9735662,22.502441,57.13521,105.903656,4.1346797e-07 60,1.0617644,12.950225,10.591117,76.632706,4.202097e-08 60,502.56992,5.4728208,45.370087,50.37672,2.972341e-09 60,1.5971371,7.7304688,31.925037,61.833168,1.1197184e-09 61,463.89798,195.63597,28.405731,67.82265,99.912415 61,450.1397,226.71115,30.063385,61.43045,0.02889616 61,54.753925,182.2409,33.980663,61.559464,0.0075481273 61,443.97803,236.10359,55.94229,103.524185,0.0055790353 61,598.8052,463.5471,36.789734,47.59958,0.0023654362 61,598.69714,93.33406,39.114807,170.93443,0.0011363857 61,404.83395,74.44763,27.324066,52.12037,0.00096002204 61,610.57446,179.11394,28.572205,138.42088,0.00076259865 61,472.8694,265.5487,34.045197,65.59677,0.0006098913 61,446.9882,90.866516,27.633606,52.251038,0.0004995327 61,609.95636,369.37747,29.190308,141.7692,0.0001713554 61,429.13455,95.214264,29.878204,59.21869,0.00014778439 61,609.4882,287.08322,29.658447,133.93762,0.00011476516 61,411.8682,108.34973,136.76028,253.3122,9.167348e-05 61,0.83088464,215.21999,19.085102,138.18504,4.6420584e-05 61,4.0129023,123.12542,56.23097,238.13641,2.8667879e-05 61,0.70808923,330.71765,19.272371,132.9436,2.5405017e-05 61,1.4311426,123.21878,18.66103,139.2243,1.9830028e-05 61,607.1364,0.0,31.794922,148.10248,1.3370905e-05 61,613.8586,0.0,25.288086,47.28718,9.201825e-06 61,3.2196307,336.08954,57.037727,146.5715,8.28378e-06 61,424.3293,92.758835,47.099854,128.47458,6.4081355e-06 61,0.806543,420.89944,16.268982,80.82901,2.728483e-06 61,547.35693,417.7695,78.06134,82.80255,2.3290816e-06 61,1.7180892,22.451784,18.40012,110.23987,1.2319177e-06 61,4.1339974,34.243263,81.67011,193.34268,6.825964e-07 61,584.3451,1.5437696,45.973206,56.764004,1.5968547e-07 61,1.9222901,7.280703,31.27959,55.64767,3.850872e-08 61,16.82316,0.5693929,45.07634,49.09559,3.4796697e-12 62,522.8688,196.61049,38.28064,86.7578,99.96367 62,357.49225,195.75346,24.072693,46.03003,6.0882063 62,610.38135,177.83398,25.227844,62.21225,0.3236071 62,589.3515,152.51257,48.84082,254.93277,0.047596455 62,3.40271,190.62,35.630733,77.3371,0.01757181 62,373.38922,202.80043,25.36847,59.918076,0.016973462 62,604.6045,274.19113,34.542175,103.615204,0.009719564 62,618.4346,67.15039,20.712097,62.896866,0.00894577 62,563.70685,46.546806,47.417908,116.01527,0.004626559 62,578.06036,74.14973,59.84082,177.74438,0.0040889587 62,580.07324,142.67314,36.995422,84.30165,0.0025720138 62,523.46027,90.338684,38.696533,88.13965,0.0021554064 62,598.6398,461.99814,36.926025,49.14853,0.0010709565 62,500.2362,154.90552,83.06482,181.50497,0.0010449912 62,614.33716,110.61554,24.80951,111.53546,0.00053964456 62,609.365,375.4695,29.781677,130.69238,0.00030080997 62,2.894222,90.84768,58.528175,224.54507,0.00012298164 62,581.4236,1.5361198,57.723083,145.88646,7.98822e-05 62,1.2144622,219.80432,20.092546,143.69669,2.8889968e-05 62,1.0336808,347.63278,18.325977,137.09964,2.3538907e-05 62,1.3163469,60.84023,21.07754,167.3825,7.077078e-06 62,1.2851839,442.05438,20.413677,56.401093,6.6505186e-06 62,3.191696,227.9718,54.74798,246.18576,6.3288057e-06 62,573.655,436.01782,47.65509,72.158295,4.5495904e-06 62,3.5959783,401.06656,55.972916,88.46173,2.6907044e-06 62,1.1108415,12.9375,37.158745,74.93181,4.775204e-09 62,311.66046,2.1505926,42.031586,47.15773,1.1311235e-12 63,607.3556,153.80434,30.423035,117.45604,99.90488 63,600.9878,157.14095,21.992493,49.19374,0.7726938 63,389.2893,155.31766,33.18451,68.87079,0.77074057 63,410.02933,150.9109,35.567932,89.92848,0.21381117 63,588.1511,98.95325,39.080444,117.748474,0.14884922 63,622.02014,156.17859,17.126526,47.6575,0.038765885 63,599.8205,132.36664,23.907043,47.197433,0.028910158 63,73.6008,144.62367,27.727463,54.631027,0.026378402 63,622.603,217.97461,16.54364,53.09442,0.023898313 63,492.49365,139.51476,35.527344,83.0394,0.010613849 63,589.6647,110.42792,49.481995,314.6683,0.0022369528 63,1.2655334,163.3058,13.615814,53.748337,0.001166794 63,5.3739715,145.37747,36.923584,74.95038,0.0011325007 63,620.2252,43.624496,18.921448,59.4377,0.0010236065 63,610.7718,323.51178,28.374878,168.68741,0.00041049506 63,1.6642855,94.232,20.600662,147.88138,0.00038228658 63,455.26297,133.26268,23.948242,49.54442,0.00028924254 63,584.0947,20.976543,55.05194,124.870026,0.00024359903 63,1.1950871,58.860065,14.730284,59.670353,9.426948e-05 63,3.3852475,80.86216,58.185486,207.61823,6.9644935e-05 63,608.3014,436.28778,30.845276,70.79718,4.1224062e-05 63,1.1265552,190.6932,15.758977,133.49084,3.274149e-05 63,608.39136,5.179251,30.75299,57.78218,1.566478e-05 63,467.10886,50.015385,74.71109,212.3447,1.4982689e-05 63,0.6394718,329.7718,20.468437,134.19592,1.25256465e-05 63,1.4444531,21.541563,33.199596,121.5444,4.9877403e-06 63,1.395791,226.00098,30.156578,175.95447,3.934017e-06 63,2.6206918,277.77094,57.668995,199.23648,3.8415737e-06 63,0.78640383,422.5227,16.112751,79.31772,1.7495628e-06 63,40.740253,69.20782,86.53409,170.06369,8.3114406e-07 63,1.048313,10.662747,20.55357,49.550743,1.8116483e-08 63,412.66882,3.616649,46.416656,54.3496,1.8589335e-09 63,388.41095,4.3021894,44.049805,50.941425,3.1926647e-10 64,436.84253,197.73659,37.3114,88.20851,0.17125525 64,433.64838,208.86333,20.554016,45.15512,0.0051852185 64,617.2771,190.74042,21.869568,76.31192,0.0014520583 64,587.7246,388.2774,50.363464,118.51999,0.0010039472 64,361.45428,187.97403,44.04117,88.33368,0.00035210475 64,607.87146,4.5389194,31.275208,112.62577,0.00029771114 64,0.6604696,222.7487,18.715101,72.741196,0.00021281667 64,611.4057,224.87584,27.740967,151.83818,0.0001607742 64,509.03033,158.8764,34.997864,85.94977,0.00013765407 64,3.624248,105.585556,55.803097,157.77507,0.00012581462 64,610.2488,92.25749,28.891296,141.56673,5.429724e-05 64,1.8589071,134.069,19.587301,88.40666,4.5005032e-05 64,575.88666,449.0658,42.998108,57.787964,3.414396e-05 64,0.7122526,337.51917,19.856033,131.3133,1.6656031e-05 64,495.2361,418.56335,78.13077,76.931915,1.6388798e-05 64,1.4858855,209.51666,32.58185,178.26562,1.6203765e-05 64,350.19278,152.93486,90.625885,211.16615,1.23148e-05 64,572.7969,1.3454541,66.34979,51.393238,1.0695051e-05 64,549.1475,446.72028,41.001648,57.03781,9.031164e-06 64,0.6738436,425.01685,13.771105,47.854156,5.21273e-06 64,2.8807275,332.15018,57.34181,150.86691,2.5925854e-06 64,1.0869817,443.34433,21.633886,59.793488,1.3134122e-06 64,533.33514,4.585358,44.757874,119.95097,4.194858e-08 64,2.1902962,33.558914,29.730528,157.33453,1.2773381e-08 64,443.32788,2.1074708,63.394592,55.39843,1.0038489e-09 64,548.97894,0.0,48.452026,51.491737,3.5544945e-10 64,2.2722576,12.520284,34.58491,73.36843,1.1656506e-11 64,519.15686,0.0,45.016846,50.145798,6.242206e-12 65,523.3162,188.15819,25.020752,48.36142,0.02122906 65,586.925,311.5814,21.334778,47.158844,0.004490906 65,617.20294,313.65198,21.943726,80.92786,0.0037407011 65,610.2217,209.57616,27.956482,133.64772,0.0029693323 65,517.7934,196.44678,59.94403,158.48053,0.0014020602 65,621.6833,98.90672,17.463379,56.444443,0.0010655692 65,2.9227133,109.830696,38.655888,82.394966,0.0006535661 65,585.23016,252.63608,52.131287,204.59277,0.0006008535 65,616.52374,175.74026,22.622925,76.20979,0.00038174298 65,537.75256,216.01375,26.356934,65.569565,0.00029941782 65,1.9913648,212.35118,26.333042,69.363144,0.00025981973 65,616.0083,354.39276,23.138367,93.688385,0.00020895613 65,610.31805,51.163193,28.828613,135.19585,0.0001996865 65,539.3417,77.11912,96.07294,265.4762,0.00016089554 65,1.2118335,125.44486,14.481712,60.213417,0.00011487039 65,607.1301,432.8687,32.01654,73.63806,9.13659e-05 65,1.9157,147.27853,33.794575,185.75775,6.632796e-05 65,0.79544514,245.44516,20.432398,138.78323,4.0505638e-05 65,582.082,142.19284,40.654175,120.78763,2.5023508e-05 65,0.58264893,315.3794,13.936352,48.614258,1.4465422e-05 65,3.3622153,229.9735,56.278175,226.6722,1.0721153e-05 65,569.29376,110.61779,35.886353,100.13334,9.2254795e-06 65,553.4032,389.5914,85.511536,107.199615,6.7333294e-06 65,0.55898887,357.64948,13.907076,47.868042,6.1193405e-06 65,0.9634229,305.99725,28.728682,145.63297,6.013333e-06 65,475.50183,416.72052,78.599976,87.02261,5.948539e-06 65,0.77492595,405.9696,18.149437,71.38495,5.610178e-06 65,608.615,4.8947234,30.531677,90.059326,4.6074183e-06 65,561.46045,10.102468,77.68622,173.34473,2.3306857e-06 65,517.6063,422.50586,78.62286,75.30414,1.5389592e-06 65,3.1555064,396.79047,56.41333,97.52734,5.27686e-07 65,2.766465,52.855354,81.04023,245.0174,4.926884e-07 65,1.6620932,50.13284,21.035107,108.00697,2.550842e-07 65,587.6695,1.1568083,43.615967,49.455086,2.7398489e-08 65,2.3966749,11.272513,32.16786,75.915375,6.8135314e-10 66,2.1083016,210.99812,22.54919,56.72914,0.046384014 66,381.5926,210.59383,22.529541,48.806717,0.011555669 66,331.8006,229.2561,25.193085,46.740265,0.009654948 66,44.916485,208.15858,22.739521,45.87053,0.0031000287 66,620.72675,107.6311,18.419922,59.265366,0.0015713418 66,617.24164,206.26367,21.90503,76.336,0.0011608293 66,578.2224,387.2595,60.924255,123.66275,0.00046726258 66,617.6579,269.31204,21.48877,87.07782,0.00020526118 66,601.4346,193.60428,37.712097,185.93152,0.00019015919 66,483.87012,187.06418,25.57074,57.4877,0.00016494526 66,1.2181771,223.61888,20.116987,146.14998,0.00014598858 66,610.5099,109.338776,28.535645,145.74097,0.00014041859 66,611.0661,37.604443,28.080566,118.893036,9.46537e-05 66,3.4275522,224.86047,57.03072,231.02194,2.9814077e-05 66,0.76625574,418.2688,13.741652,48.635895,2.4534595e-05 66,2.2732472,119.55633,34.7886,172.23853,1.6361437e-05 66,1.1105965,359.46164,20.837654,104.06711,1.342517e-05 66,0.73944175,302.7936,13.766517,48.955048,1.1830171e-05 66,607.8354,3.6264648,31.31128,60.607544,9.450599e-06 66,515.60583,134.06058,89.04486,156.21365,7.929263e-06 66,374.11404,162.3119,98.83649,195.16975,4.1904e-06 66,0.7578947,330.158,13.8868065,48.58957,4.0755517e-06 66,379.02728,432.23605,80.81299,68.78708,2.7948872e-06 66,1.0560694,442.24747,21.781536,60.96884,2.280359e-06 66,338.12875,430.3135,74.464966,70.68811,1.8192818e-06 66,3.360241,396.43256,56.65316,97.07266,1.7217715e-06 66,1.4761157,72.700096,18.58407,143.8631,7.070882e-07 66,578.5679,4.88868,44.305725,52.236004,4.3931374e-09 66,444.03574,6.241494,43.867706,47.94136,1.9958322e-09 66,1.8432585,9.1156645,33.211727,78.288925,1.2818502e-09 66,551.90045,2.8001385,43.431213,46.247276,5.4650895e-11 66,509.3638,0.55926436,43.114655,46.797085,8.16569e-13 67,373.55847,210.8154,26.694885,47.274475,95.461815 67,548.37366,187.48546,29.636353,48.81952,82.673965 67,393.60388,208.83987,23.600708,46.786667,2.8048017 67,350.26544,208.22227,35.072235,71.340195,0.17756237 67,613.1521,187.6414,24.11145,55.50081,0.032987367 67,300.41675,230.75589,34.099976,60.141907,0.022012077 67,471.0386,187.62886,24.907715,61.93799,0.013738161 67,592.85114,197.11359,28.677246,54.13759,0.0029678177 67,360.6935,175.605,59.708252,115.49101,0.0021001715 67,2.801508,213.04141,25.938541,53.15674,0.0012363414 67,617.8309,231.35281,21.315796,77.91348,0.0007409852 67,474.81058,149.74086,40.19107,115.39378,0.0006537631 67,600.713,170.56725,38.433655,180.67906,0.00028857138 67,535.5267,150.73094,58.46399,108.694565,0.0002756605 67,1.229314,215.16225,20.619265,142.9728,0.0001510903 67,617.0549,339.42874,22.091797,81.47653,0.0001434437 67,605.607,7.537448,33.539673,56.204376,6.1607636e-05 67,600.3121,307.0715,38.834595,176.26361,5.8349968e-05 67,332.72186,136.97281,131.47919,225.67462,5.681117e-05 67,585.1615,14.345664,53.770935,111.31733,3.539264e-05 67,3.475708,192.10945,56.59358,231.87593,1.3644262e-05 67,0.90599614,391.43204,18.381054,72.98923,1.15951725e-05 67,232.99391,6.683854,42.558853,51.502445,7.630022e-06 67,1.0182161,304.38052,28.933372,147.5072,6.8767617e-06 67,1.4402149,124.347244,18.970186,146.60725,4.872729e-06 67,259.41827,6.621623,43.002197,49.669407,3.1148666e-06 67,1.0675089,443.25647,21.589123,59.74582,1.7557975e-06 67,3.4622185,397.35437,56.154682,96.61752,1.4890976e-06 67,286.92334,6.471965,41.996002,52.001823,1.3800326e-06 67,503.49985,78.27574,135.28415,246.85616,8.8820775e-07 67,577.3182,6.488031,45.00116,52.749016,7.465118e-08 67,1.6074903,9.083129,33.34716,74.58341,6.0043623e-09 67,550.4899,5.5125213,47.002075,53.058678,1.9086464e-10 67,525.89404,2.6175635,41.61029,46.85495,5.4761265e-12 68,563.7639,181.50082,32.664673,69.22156,83.14573 68,346.37888,215.02588,23.513214,49.15445,81.2202 68,313.1517,211.76526,22.490295,45.08914,52.988476 68,364.05484,213.96394,23.601074,48.917557,42.222748 68,331.91418,206.87277,42.1174,97.63199,4.292371 68,325.97388,211.55766,24.93869,53.323685,0.07262989 68,259.85257,240.13203,36.226868,75.130844,0.008807669 68,23.399889,214.37201,26.728704,47.10913,0.007379451 68,621.91394,192.32674,17.232727,55.070282,0.0033505764 68,356.3471,233.20287,36.839996,84.909805,0.0014163592 68,598.85547,191.63206,39.635803,187.00014,0.0009359323 68,342.27512,168.12543,72.04767,165.59091,0.0007360565 68,616.2017,292.00232,22.944946,79.59433,0.00031303335 68,603.5443,99.27189,34.815613,178.38379,0.00024071214 68,545.6542,144.89964,79.310425,157.64433,0.00019051516 68,1.6271737,212.57005,16.903675,118.03819,0.00012088565 68,617.2039,402.34747,21.942749,79.54654,9.974349e-05 68,608.76294,2.954056,30.099243,125.07233,9.518352e-05 68,466.87714,121.80828,39.585632,129.8021,6.471133e-05 68,600.7761,335.70862,38.370544,159.52557,3.791406e-05 68,3.634507,197.90135,55.6442,229.25041,2.7791373e-05 68,0.26930422,294.10657,18.41064,80.203186,1.9423906e-05 68,0.70477134,424.4313,13.936072,48.237732,1.7562637e-05 68,0.65923995,300.2253,29.226376,159.19131,1.4212962e-05 68,522.24634,55.249664,41.997192,107.474335,1.3426464e-05 68,3.8015854,125.838196,82.59596,171.85654,9.523704e-06 68,2.356892,154.24664,28.489155,134.03513,1.8591454e-06 68,3.1562874,395.2864,56.357758,99.276,1.7390662e-06 68,1.0632162,442.64755,21.651348,60.109222,1.7276799e-06 68,219.73576,4.9371305,44.65172,45.013374,9.1233325e-08 68,186.38335,3.2543392,39.905853,51.15348,1.6604336e-08 68,353.60864,4.6322055,42.646088,47.080856,1.1410329e-08 68,1.5449365,9.368806,33.171898,74.64699,7.0343398e-09 68,556.06,1.8048568,46.32666,48.779938,1.2139317e-10 68,530.41614,2.1492643,46.038696,48.801003,1.2248904e-11 69,337.62338,210.48026,25.193268,54.52481,90.368614 69,390.70804,211.64896,25.056885,56.65515,84.1676 69,368.1983,209.07365,34.155853,74.831436,0.48977864 69,120.62715,194.55922,33.199417,65.068375,0.27945176 69,94.93311,200.25024,32.67051,51.21176,0.046044633 69,353.09674,210.88013,24.307343,53.20291,0.005569563 69,388.87137,240.58699,41.0578,116.380905,0.0042895866 69,5.7402744,215.40639,24.183664,49.188705,0.003133114 69,531.52075,156.2039,46.382935,109.96892,0.0011243211 69,609.0359,166.30225,29.887878,121.555725,0.0010134194 69,273.7951,210.583,70.12326,181.69008,0.00094361114 69,360.97964,175.10193,89.56183,192.26505,0.0007236575 69,320.9221,189.9068,67.0047,100.655304,0.00051728927 69,234.75854,263.43173,44.17816,100.8074,0.0003541334 69,616.7506,236.8947,22.396057,79.465836,0.000349459 69,611.38763,342.73138,27.759033,134.80707,0.0002502504 69,620.01874,32.00989,19.12793,60.155178,0.00015196674 69,589.65405,207.69913,48.937927,228.60721,0.0001340055 69,0.8646086,279.74606,18.31862,70.55881,9.8857e-05 69,3.1059473,204.49454,39.57798,106.698975,4.6470195e-05 69,609.47253,22.182077,29.289307,154.03891,4.107521e-05 69,576.0017,54.90914,33.211914,79.9192,3.6509853e-05 69,3.3751547,218.30711,57.346523,212.0844,2.8736747e-05 69,0.9715625,318.99185,28.905348,153.01154,2.4523364e-05 69,0.7987875,418.06335,13.851858,48.35666,1.8083123e-05 69,575.0418,421.14243,64.10486,74.52481,1.2018315e-05 69,0.9120142,378.4721,13.750145,49.526917,8.500013e-06 69,5.169043,355.2446,79.85686,133.77234,2.2234851e-06 69,2.029681,121.90652,29.136505,151.12256,2.0585617e-06 69,1.8835987,418.71677,34.684456,79.828674,1.6306723e-06 69,563.4513,8.0617,64.70697,154.61705,1.047673e-06 69,383.44614,37.41887,42.40576,142.011,3.2015464e-08 69,354.64343,19.899115,44.21045,123.78167,1.773476e-08 69,1.6439356,9.494737,33.073574,75.25204,4.972401e-09 69,399.817,4.1072464,44.19702,49.493473,3.5309815e-09 69,504.0159,5.845513,43.452484,45.695343,3.4282637e-09 69,329.0852,5.031875,42.947876,55.117363,5.103849e-10 69,357.20132,3.702907,47.605133,57.80201,4.5917228e-10 69,252.50511,3.4089372,43.64586,46.555996,1.8088416e-11 70,390.38882,213.4447,25.327118,54.323547,99.83766 70,415.06543,210.46039,23.732239,55.865234,94.41573 70,436.40335,206.55486,31.194794,62.506546,43.00702 70,116.80658,210.48886,24.8432,46.31952,1.610153 70,167.22363,177.87068,36.554977,84.450516,0.026919464 70,583.49243,123.80029,51.41516,127.31206,0.0046878923 70,377.48624,142.76913,128.83087,248.25769,0.0023500521 70,462.17538,247.79271,43.177063,143.29463,0.0019373824 70,611.0624,167.5056,28.08429,127.368515,0.0010578014 70,285.0733,294.49072,39.673004,113.27539,0.000835911 70,614.7174,462.40445,24.42926,48.145203,0.0008132074 70,268.62717,240.9676,112.59161,222.80177,0.00037649547 70,484.86502,73.26422,37.635956,77.86537,0.0003734755 70,615.68317,126.76874,23.463501,96.21945,0.00032184378 70,611.47784,246.76897,27.668823,141.11089,0.00027057945 70,611.3644,346.0597,27.782288,139.93741,0.00011925929 70,463.9744,66.458336,38.249847,93.07313,5.343425e-05 70,578.05035,418.31726,60.698364,87.68942,4.245942e-05 70,232.82457,153.31612,22.68776,48.998657,3.8005863e-05 70,0.96586347,244.38443,19.060217,139.29932,3.235362e-05 70,606.9053,9.635827,32.241394,146.00519,2.8592245e-05 70,0.881792,329.06573,20.399176,136.28293,1.3884262e-05 70,444.35507,55.50795,34.99051,82.0063,1.070352e-05 70,3.6193328,238.25586,57.418354,228.59592,9.5027635e-06 70,599.3094,5.5131383,39.83728,49.045334,9.185658e-06 70,2.3157666,177.61433,34.513042,153.61867,3.4374357e-06 70,425.40433,415.65854,75.367096,82.59903,3.4354034e-06 70,3.5236883,396.5946,56.378963,97.9274,1.5595668e-06 70,526.0678,419.34427,77.00256,80.98294,1.2060597e-06 70,337.4167,421.645,80.00418,75.48465,8.898457e-07 70,303.86682,7.364105,46.09674,53.01358,8.15068e-08 70,278.0948,6.161439,45.676086,50.71103,9.477735e-09 70,473.70755,2.8499594,64.86374,47.85243,7.294049e-09 70,1.6116813,9.815482,32.932297,72.66509,6.1488157e-09 70,353.9432,3.3235776,43.818542,48.668518,3.3091696e-09 70,443.07184,3.427998,43.698853,51.956738,3.7687012e-10 70,401.9098,7.264313,41.70334,46.57541,9.537168e-11 71,455.55658,215.10847,26.935608,60.382584,99.692505 71,479.82404,211.33777,28.67102,63.44992,81.14467 71,439.16772,227.19191,23.039062,46.636063,2.0257723 71,408.75058,220.65115,21.709808,48.319427,0.4961932 71,558.1133,387.93945,23.50879,49.186127,0.0090638455 71,531.59894,394.89236,24.373474,50.753937,0.007919021 71,549.5006,64.156975,28.708496,68.23443,0.00541241 71,439.75427,198.34691,60.522522,94.89006,0.0026111659 71,572.8137,391.48172,23.213257,49.020203,0.0023427887 71,496.24423,208.37881,25.77658,63.564667,0.0019527151 71,617.7918,233.25485,21.354858,79.565765,0.0014190308 71,553.8936,69.93536,42.190125,121.77063,0.0012526149 71,610.2109,124.769196,28.5849,150.92856,0.00049101264 71,588.38007,197.78947,48.509705,267.05316,0.00044426884 71,526.6737,234.52742,71.32153,220.50597,0.0003492691 71,352.2685,221.27335,90.42844,215.09079,0.00027961563 71,610.55695,323.2987,28.589722,142.88907,0.00021656258 71,607.24207,5.0092187,31.904602,136.14946,0.00021087637 71,425.6955,160.42029,94.67755,206.4466,0.00012852854 71,559.50543,380.1889,76.98047,112.749664,0.0001083204 71,402.1831,346.01587,82.419464,136.3529,9.751036e-05 71,333.2032,381.71365,118.46652,108.64969,5.5058023e-05 71,0.9703068,235.82173,18.91093,138.82426,4.8746722e-05 71,539.30066,335.65942,37.153442,93.92221,4.6234934e-05 71,509.1547,10.858373,120.13327,282.9587,1.559877e-05 71,0.69600993,333.1692,20.170303,135.63333,1.524286e-05 71,1.9442521,174.47469,29.025286,132.38164,1.2384842e-05 71,360.08875,434.41245,46.932404,70.853516,5.370635e-06 71,613.61115,0.0,25.535522,46.071186,5.3285553e-06 71,3.382212,240.4375,56.80086,225.91919,5.210354e-06 71,581.1381,443.23022,48.26111,67.91644,5.0612534e-06 71,1.7630249,104.333305,18.82686,139.5169,3.7278294e-06 71,528.2905,32.013424,37.85785,103.52925,2.8322747e-06 71,444.0098,420.6312,76.12399,74.71912,2.4094904e-06 71,1.7416683,420.22766,34.68193,78.457825,8.7264453e-07 71,306.32614,5.2610126,45.67639,47.206135,8.235659e-08 71,566.7395,1.4716862,67.98779,58.920734,3.6486732e-08 71,494.88052,2.7685678,48.27292,57.364758,1.1259985e-08 71,280.0802,5.059479,43.11548,47.603916,4.0669415e-09 71,1.8047494,9.092911,32.932667,75.37833,3.0181122e-09 71,471.7088,4.4829655,43.53473,53.480408,1.3431803e-09 71,528.56195,3.6349106,47.69281,53.35115,6.607791e-11 72,488.98547,222.68811,26.675293,56.458588,99.35972 72,509.56006,211.31316,27.6344,59.442245,98.742874 72,467.43475,231.23312,21.852234,48.562286,4.476309 72,357.4815,217.55228,24.339478,46.55591,0.14483665 72,444.70303,208.46722,32.334106,70.7095,0.0337329 72,494.42258,188.22278,57.640778,105.6087,0.014516424 72,595.31555,142.67854,43.831116,181.03429,0.013352067 72,566.99304,176.87357,37.201416,97.41989,0.012378182 72,597.04425,399.8016,39.67273,105.71768,0.0066827442 72,616.73846,149.30649,22.408203,88.10704,0.0056611784 72,609.21716,72.07925,29.551758,98.72106,0.005634674 72,619.4587,200.94489,19.687988,75.12247,0.0037307332 72,345.48846,256.565,116.05249,228.54413,0.0021860357 72,553.1831,168.28406,84.949646,325.77292,0.002123837 72,587.06555,10.886003,51.91284,125.88574,0.0008466247 72,619.1095,33.409973,20.03717,78.85377,0.00082905643 72,620.29425,429.70047,18.852417,61.187134,0.0007706215 72,610.6593,314.26288,28.487366,162.50943,0.00047745463 72,437.0611,413.69974,83.30029,82.3595,0.00042698812 72,622.4545,119.44055,16.692139,53.732147,0.00038715525 72,1.6989095,219.3891,19.810163,128.09079,0.00013418429 72,366.19147,417.31134,71.42844,81.55295,0.00012949498 72,461.79294,128.4363,143.13168,261.92004,7.320093e-05 72,517.8596,380.50513,115.09546,122.12509,7.028234e-05 72,4.724289,199.9493,55.55652,217.66096,4.4801407e-05 72,479.59167,447.68256,43.721313,58.088287,3.761266e-05 72,566.52344,432.38843,48.397278,75.19241,1.5445146e-05 72,2.4273486,92.246346,35.059715,184.06906,1.296238e-05 72,4.0189424,383.48712,56.40236,104.69025,1.2913089e-05 72,612.27045,0.0,26.87622,55.146214,1.1199534e-05 72,524.2822,433.38293,46.54358,71.635345,1.0264008e-05 72,0.8946818,376.94293,17.050917,115.0466,6.73807e-06 72,1.4585669,295.8668,19.453009,135.75217,2.3932992e-06 72,443.20428,4.5132914,41.7442,46.69131,1.1058742e-08 72,1.8862354,10.442097,32.838615,74.49007,1.8093818e-09 72,549.0102,3.9916732,45.441406,59.03332,3.3520542e-10 72,525.57477,2.401504,43.33612,61.20925,1.0202734e-10 73,528.5582,214.56654,37.203857,72.86888,99.0239 73,420.28265,220.38553,24.589233,48.807373,0.07259009 73,573.69,235.38084,28.694946,53.60051,0.04667838 73,610.2077,171.07253,28.529907,75.94524,0.014583851 73,244.09277,222.86821,41.816254,83.63335,0.0026164555 73,456.62537,218.35347,43.279083,126.11162,0.0023756362 73,26.130602,223.56717,40.25933,65.81827,0.0023136276 73,499.8253,173.88339,93.53342,187.17374,0.0011867696 73,524.58875,445.1219,47.851562,56.123444,0.0011279576 73,430.35797,288.05563,86.322754,211.89798,0.0010082361 73,607.94714,363.39444,31.199524,146.87442,0.0006457869 73,477.71262,225.31589,83.71567,241.22513,0.0004421854 73,602.37897,91.03246,36.480225,201.42676,0.00029548223 73,615.09717,47.06949,24.0495,84.766846,0.00022559764 73,452.0023,388.5176,121.39078,107.89282,0.00019827014 73,518.6615,398.01242,118.368164,111.487915,0.0001427307 73,581.03973,437.80786,46.936035,71.701416,9.568455e-05 73,553.51465,451.88773,44.51544,56.23532,9.077617e-05 73,602.77405,229.18172,36.37262,213.76225,7.9192556e-05 73,458.5986,431.97186,48.45459,73.04965,6.972383e-05 73,1.1285938,229.54172,18.892632,125.59262,4.613108e-05 73,608.1726,2.9703646,30.97406,57.966534,3.4977304e-05 73,484.2684,437.0673,47.596344,64.14673,2.6670838e-05 73,0.7979932,339.98947,18.651613,125.415436,1.756465e-05 73,1.5869474,181.37985,20.581112,102.45123,7.969443e-06 73,3.4081202,226.01038,57.08045,209.05304,7.708354e-06 73,0.64348143,417.34924,16.61931,83.20154,3.065493e-06 73,2.6858594,388.5647,56.941284,103.11688,1.4785523e-06 73,536.6034,4.753371,45.52704,53.65842,6.6768513e-07 73,469.85568,1.8344173,45.74759,47.53277,1.5873189e-08 73,1.8157455,11.515254,32.82269,73.6102,1.2130851e-09 74,572.56915,230.72487,25.959106,58.218033,99.87045 74,552.6613,229.24258,25.483826,55.480743,59.913975 74,599.14996,233.46133,24.683594,49.682434,40.49907 74,428.41263,223.08667,36.02951,54.54138,0.32641074 74,594.2854,182.0164,39.879395,116.64809,0.04083215 74,323.325,210.67516,35.372284,72.91188,0.037347004 74,107.8572,233.00099,23.478355,52.618454,0.02567084 74,556.8639,209.16559,55.18158,101.65625,0.019992804 74,616.94434,191.06085,22.202332,79.3988,0.005400877 74,611.1592,221.66779,27.987488,137.04654,0.0012296299 74,231.46642,230.704,23.690643,46.973953,0.0010224074 74,477.07803,220.00826,42.747894,118.94676,0.00093137176 74,584.37616,233.46178,53.997375,250.5595,0.00059155957 74,522.35474,155.9614,109.272095,241.09601,0.0005053555 74,609.13135,77.39493,30.01532,154.66971,0.00035193725 74,611.0564,335.85944,28.090271,168.56897,0.00017868711 74,99.937126,222.13797,43.806282,106.563385,0.00013330967 74,1.173597,240.17021,17.93971,75.03783,8.069782e-05 74,450.81012,276.9159,88.05963,215.6351,6.1676066e-05 74,568.9874,420.94345,69.3526,78.0676,5.2053383e-05 74,610.31866,2.3840854,28.828003,89.75538,3.5807512e-05 74,1.0889128,277.84528,15.8766,137.98901,3.4918077e-05 74,2.9430356,118.47438,31.904297,190.77492,2.3845012e-05 74,487.89798,392.08417,116.0076,104.94809,1.2697768e-05 74,3.5235922,216.04045,58.860256,209.63496,1.1856285e-05 74,0.75184083,386.3685,20.643297,102.31271,6.648718e-06 74,419.8819,426.79474,76.854095,72.84091,3.5263024e-06 74,4.2218003,343.86752,79.49407,141.54062,1.7350573e-06 74,463.73782,3.4854736,41.998444,47.639755,8.748084e-09 74,1.8028321,12.40028,32.450703,72.1093,7.918638e-10 74,434.13327,0.74449706,45.751434,50.718475,4.109734e-10 74,352.91913,2.3613102,45.43756,45.92532,1.9394384e-11 74,410.8519,0.6665674,41.742188,45.625618,4.755654e-12 75,516.43243,226.82857,30.445312,58.67543,99.6552 75,538.5862,232.52386,25.244446,54.696198,98.98633 75,582.06067,214.63368,33.540222,70.19502,45.85723 75,557.6251,225.62064,32.2381,73.49173,0.048354797 75,380.52597,219.95401,36.31955,55.42047,0.03496749 75,450.61377,238.50597,23.303955,51.81697,0.015970089 75,520.32214,207.98914,59.394714,105.31665,0.008815442 75,581.11395,193.81505,53.786194,256.58008,0.0054927175 75,619.512,225.44803,19.634644,75.4202,0.0035987406 75,499.29095,161.02116,125.71802,246.66881,0.0032399178 75,454.59424,218.0831,38.67404,92.23657,0.0022994117 75,582.9515,376.85016,55.84503,116.689026,0.00076968945 75,610.56946,139.63252,28.57721,135.34926,0.0003324366 75,609.627,294.6584,29.519653,167.5535,0.00033123718 75,607.5704,430.6598,31.576294,77.26407,7.272971e-05 75,1.1201693,227.98386,19.343275,134.12744,5.727854e-05 75,582.7771,21.182552,54.87207,293.25168,5.2083175e-05 75,524.17926,306.4475,81.41858,180.50568,3.4060246e-05 75,429.2596,305.02454,117.23514,187.28943,3.0999017e-05 75,609.5485,33.213886,29.598145,154.33708,2.7794022e-05 75,456.75073,408.79974,79.907104,91.98459,1.5426187e-05 75,0.7771037,330.96918,18.29516,130.94803,1.3725202e-05 75,517.0877,420.93265,75.43213,75.20621,1.0361076e-05 75,1.4663558,140.10942,18.74754,138.87178,7.740649e-06 75,3.7862778,184.32587,58.44393,218.55417,6.6983603e-06 75,593.9504,4.2493525,45.05139,82.71377,3.1803754e-06 75,0.6237899,418.93265,16.407034,82.449036,2.5833544e-06 75,3.3005307,334.963,56.77986,146.3042,2.0775976e-06 75,354.8738,6.8665104,40.42856,45.640923,9.784776e-07 75,454.83792,6.322329,44.200745,49.55475,1.1754946e-07 75,544.244,8.083151,43.31366,49.48192,2.032459e-08 75,428.40762,4.61717,44.03946,49.226685,3.8082573e-09 75,2.126167,10.41157,32.5925,74.66193,4.7658294e-10 76,527.4213,224.82324,27.56543,63.80652,99.80892 76,547.30475,218.61047,28.285217,67.5289,99.73574 76,502.4814,223.68164,27.360199,63.330353,99.73098 76,617.15405,114.74946,21.992615,70.453316,0.11849163 76,606.41797,208.25844,31.407227,80.726944,0.098320246 76,351.8229,219.71646,36.467834,52.74817,0.02930986 76,589.80536,138.8152,46.460938,224.52596,0.026737848 76,560.781,211.99309,27.808044,57.051132,0.018099373 76,509.02393,193.70512,72.65924,154.1874,0.0039265035 76,157.96118,122.349014,61.406067,148.77965,0.0017634212 76,614.92633,256.97787,24.220337,102.16159,0.0012436021 76,605.4213,434.52917,33.72534,73.76468,0.00040444406 76,614.77264,334.4586,24.374023,90.32904,0.00033592826 76,587.83624,300.23523,50.310486,185.4162,0.00033553987 76,1.2366797,221.86475,18.865292,80.05792,0.00011054083 76,545.64484,73.05052,82.04718,223.92299,0.00010715464 76,2.5716856,198.97202,34.56024,183.57962,3.6151563e-05 76,569.2308,449.07047,41.03546,56.309296,3.493393e-05 76,526.96204,384.1805,107.55731,112.82358,2.769575e-05 76,0.82359296,345.50436,19.70228,127.37097,1.6207952e-05 76,545.8809,438.22235,44.507446,63.441772,9.362577e-06 76,606.9803,0.22685547,32.16638,67.01896,5.819215e-06 76,498.24683,416.20694,76.99512,80.50589,3.6268762e-06 76,1.5831169,107.617195,29.980484,139.49509,3.0329704e-06 76,581.6119,1.6737891,57.488342,139.98761,2.6941145e-06 76,3.2504346,341.3424,57.144527,143.16989,2.3632833e-06 76,1.0966733,443.99518,21.451254,59.298676,9.3921926e-07 76,477.35944,437.9336,45.498108,64.367676,6.455055e-07 76,1.6279705,9.631042,32.906796,73.34285,5.3241282e-09 76,382.60995,1.9821615,43.40512,46.775715,5.1235877e-11 77,583.8632,226.32019,33.02362,77.747406,99.34906 77,499.72388,194.26495,41.31311,123.72455,0.15737608 77,172.99654,217.68134,26.433731,52.271027,0.09803043 77,552.2589,248.60422,38.152344,69.848694,0.031507894 77,605.15436,198.63052,33.035828,79.567444,0.0076547847 77,205.22842,186.89946,35.95085,86.3109,0.0069582523 77,583.04175,172.21506,53.028137,195.88824,0.0048829555 77,609.2165,49.025944,28.462463,59.12566,0.0030002785 77,583.6898,8.843314,55.402344,112.60032,0.00077823154 77,529.64087,216.6398,85.39392,141.98886,0.00058853277 77,397.02548,268.99078,91.722015,203.29095,0.00032942547 77,405.375,137.12378,40.219635,109.0298,0.00029596788 77,410.54507,126.35172,142.43765,248.6456,0.00024095699 77,611.2471,263.1042,27.899597,156.41745,0.00012786992 77,1.119651,231.53906,18.274715,72.55182,8.8929955e-05 77,607.8408,435.32584,31.305847,69.95523,7.9685284e-05 77,132.9284,107.548256,65.5385,175.65573,7.1977316e-05 77,614.3701,123.47234,24.77655,105.68456,6.216809e-05 77,502.82346,116.46998,26.159027,54.195213,3.9029565e-05 77,612.71545,0.0,26.431213,45.40025,3.8620423e-05 77,0.9306885,259.01453,19.433054,140.38641,1.572594e-05 77,375.12872,422.14603,81.01019,76.650696,1.01821515e-05 77,0.7783,364.9064,19.52754,128.15042,1.0128962e-05 77,4.4183154,133.50885,61.968258,195.91635,7.168344e-06 77,571.5758,355.9184,67.57086,135.45364,6.701171e-06 77,346.98904,141.6475,39.872284,84.08177,6.2858094e-06 77,496.48163,440.0882,45.62616,66.22583,4.991166e-06 77,2.7248683,392.58075,57.76066,100.33011,3.7785335e-06 77,2.277754,159.30675,29.090984,134.45543,2.3271853e-06 77,470.62787,394.22122,113.03876,104.518005,1.4728892e-06 77,435.55276,422.4537,79.497894,77.26895,8.310046e-07 77,533.30884,424.86444,81.585754,75.4928,3.4116462e-07 77,359.04807,4.5025783,42.162872,48.96404,2.4980807e-07 77,1.6261263,11.693656,34.217773,72.04564,7.480963e-09 77,307.4477,0.0,45.871277,45.201153,1.3869467e-09 77,550.4656,5.8710938,42.655823,48.40509,2.2691343e-10 77,511.71484,2.446517,46.416748,59.963932,1.3065335e-10 78,577.70325,228.08115,40.637024,101.30142,99.93032 78,600.5287,232.10706,35.65149,91.98184,9.099989 78,397.46658,163.50789,39.380157,91.28902,0.16315737 78,567.35236,163.31122,65.97821,256.4163,0.06674579 78,619.0281,222.75743,20.118591,70.8524,0.054389592 78,146.38809,208.99904,25.004242,45.764038,0.00886408 78,145.5319,176.18031,46.597824,89.03871,0.0040492467 78,619.241,46.242954,19.90564,60.93176,0.0013795155 78,584.34265,122.11355,32.835632,66.883125,0.0011505662 78,475.93735,333.4872,45.632416,155.30405,0.0007107302 78,609.7414,304.58813,29.405273,127.62213,0.00029901034 78,610.1041,383.13116,29.042542,121.31229,0.00021189521 78,608.5963,42.92169,30.550354,175.53998,0.00016415655 78,444.51575,288.01416,128.16492,208.84018,0.00012310062 78,513.29376,387.62094,116.024475,112.119446,9.9011835e-05 78,594.08655,0.70145184,45.06012,95.85079,9.521712e-05 78,103.644485,100.15399,85.11151,179.35944,8.4721316e-05 78,436.19424,144.05034,81.53116,178.3904,6.9089976e-05 78,556.4384,47.438828,27.812988,61.02446,4.9527593e-05 78,613.31885,0.0,25.82782,48.542854,3.7297963e-05 78,1.3018571,244.76945,19.049387,128.00197,2.415542e-05 78,0.7342782,323.91226,19.002829,135.53317,2.0599253e-05 78,4.113758,198.423,56.398758,219.57639,1.8091678e-05 78,543.871,430.59372,47.519897,71.81186,1.5782402e-05 78,2.4890716,146.33081,34.06477,174.46347,1.4310399e-05 78,501.5737,432.03317,50.46811,72.68585,6.4509964e-06 78,586.409,434.16107,44.58795,69.04837,6.252162e-06 78,1.7950814,73.88791,16.93108,137.91978,1.9707854e-06 78,2.7850227,392.80502,57.021725,100.38837,1.7857278e-06 78,403.8561,0.5208073,43.084778,52.85181,2.9493253e-07 78,428.68518,1.1087387,48.088074,48.30759,5.7149553e-08 78,1.9044955,11.666048,34.27013,76.47144,8.165609e-10 79,477.1768,212.29198,21.529633,48.441147,97.81566 79,394.744,218.6531,22.141846,47.947937,0.022380566 79,13.185417,202.25586,40.82263,65.91208,0.00982476 79,115.60098,213.3569,22.864822,45.528564,0.0076546967 79,115.11602,170.2818,44.824898,94.37955,0.0061698593 79,62.94482,187.73329,32.43189,67.138275,0.005657853 79,617.2897,224.26126,21.856995,75.59415,0.0021281515 79,177.85237,148.30782,36.001877,73.470184,0.0008108887 79,527.41315,138.07864,36.18622,75.07547,0.00062343513 79,600.62177,190.07414,38.278137,195.26909,0.0005663159 79,1.5881698,206.07463,17.823349,69.754074,0.0005194317 79,605.32086,179.12498,33.670532,78.61534,0.00051880395 79,608.8678,329.5502,30.27887,157.4733,0.0004350316 79,460.55142,169.46367,57.02585,112.07323,0.0002021612 79,2.6442733,137.81023,30.225134,145.45396,9.9409124e-05 79,620.2998,133.31268,18.846863,58.03653,9.1707836e-05 79,608.55536,61.256557,30.591309,146.23561,7.152474e-05 79,583.5766,18.715677,55.22406,105.90613,5.1216666e-05 79,607.9906,435.07492,31.156067,68.76666,3.5192545e-05 79,0.9352954,343.35324,17.750916,128.90567,2.545988e-05 79,435.70587,118.58534,42.868164,137.74934,2.043349e-05 79,1.1329607,231.90001,19.548449,148.23192,1.1630956e-05 79,569.82635,51.75396,68.82324,293.6913,8.36753e-06 79,464.47308,428.623,75.829834,72.03259,7.5555845e-06 79,3.8831348,194.61482,57.08969,236.50859,5.6160447e-06 79,430.45773,124.1659,135.92624,221.20432,3.8074643e-06 79,65.72226,87.738594,119.83684,203.09534,2.734735e-06 79,5.532077,354.39346,77.90677,130.61896,1.9755691e-06 79,405.42282,427.51086,79.38989,72.36987,1.9024861e-06 79,0.7605965,421.31985,16.167248,80.02637,1.3027316e-06 79,344.9611,428.81357,78.11609,71.87253,9.90701e-07 79,507.51547,426.37332,74.30698,74.04602,4.5273413e-07 79,2.9974642,17.508009,56.89664,124.190506,9.272007e-08 79,1.6333903,19.380398,18.143166,146.70265,7.929331e-08 79,584.9123,3.8352327,43.118896,51.662674,5.1751485e-08 79,1.4844027,7.399971,30.515202,62.07469,1.5360193e-08 79,497.22388,1.6411605,41.86737,45.97239,1.5630814e-13 80,505.6284,207.20267,28.228607,57.815063,99.017334 80,339.67648,195.93971,23.661743,46.976303,5.2304916 80,24.80196,203.85078,29.99773,45.293594,0.20529777 80,443.41068,189.5141,29.017242,52.059082,0.11776613 80,323.4625,194.60406,24.037842,45.289978,0.11717096 80,80.41325,189.57162,26.484001,50.434525,0.06528962 80,352.3477,200.24677,23.1698,45.11348,0.010944448 80,91.55275,172.0276,45.232407,75.440704,0.0069707385 80,494.34927,180.99475,55.861603,100.73886,0.0039377944 80,441.89975,151.30336,27.083801,63.79695,0.003503638 80,409.56833,215.92746,31.480682,68.59799,0.0025341199 80,617.5056,189.87105,21.641052,67.854904,0.0023440446 80,361.266,222.96315,35.441162,65.68663,0.0010841965 80,600.0241,86.75713,38.338684,170.95569,0.00048447782 80,617.9541,241.52174,21.192566,83.72511,0.00045094793 80,312.0247,159.2361,40.791565,93.41867,0.0003552473 80,618.53784,101.96559,20.608826,61.2529,0.00022884298 80,1.5753573,196.51857,19.311872,133.3506,0.00020470639 80,617.6327,292.64886,21.513977,83.10135,0.00016830217 80,167.91177,142.5299,29.06009,60.592148,0.00015384622 80,5.141737,130.76611,46.2334,141.05887,0.00011652388 80,617.0083,353.1644,22.138367,84.70557,8.973776e-05 80,601.234,297.3572,37.91266,190.76828,8.2517196e-05 80,47.522545,100.552284,83.3653,174.6112,8.183163e-05 80,608.6188,0.0,30.527893,138.65514,5.1651255e-05 80,609.09564,439.25034,30.051025,64.91583,4.0002247e-05 80,2.9962761,171.40619,57.337486,252.75647,3.9324193e-05 80,311.78485,144.37386,102.374054,198.31062,3.7539587e-05 80,1.1063966,423.86716,16.307953,76.60443,1.5155267e-05 80,0.8949048,322.17355,18.306719,74.52707,1.1567648e-05 80,457.73648,116.191605,138.87521,241.54485,8.8492425e-06 80,1.6559042,334.32898,33.790287,156.36578,5.879236e-06 80,424.0236,424.9264,74.84378,71.45801,5.3320123e-06 80,3.2895117,429.73904,53.407246,68.15384,4.3661616e-06 80,1.8322331,90.09486,20.209892,141.08368,4.165362e-06 80,534.9542,392.48746,103.00415,101.947296,3.7369703e-06 80,26.973122,428.45813,76.63541,70.47745,1.0179409e-06 80,561.001,441.542,44.68103,59.482147,6.0576514e-07 80,2.6170948,16.126856,57.585743,121.98983,2.3055124e-08 80,1.119087,8.886449,19.770174,53.271378,2.5151417e-09 81,572.94934,211.76341,37.38922,67.7567,83.968216 81,69.88474,194.46223,31.745003,55.29715,31.826088 81,8.386951,199.94545,21.982721,48.72534,7.804218 81,347.643,200.26671,24.766388,51.40291,1.2176352 81,327.54245,201.76448,20.610321,48.812714,0.36061206 81,402.52002,204.68849,23.260162,45.24208,0.17354617 81,48.45308,196.83517,23.008987,49.649155,0.16896084 81,449.27252,206.70944,45.544983,110.72006,0.010932226 81,1.9789609,197.6786,13.705109,49.808487,0.0076500117 81,2.8241408,190.52539,39.29225,96.63754,0.0069904965 81,386.21878,215.56137,40.220184,77.4068,0.006613043 81,32.646996,185.56425,28.154171,55.84288,0.004576831 81,552.75354,207.83621,23.091919,50.420624,0.0013649272 81,317.40585,158.32402,39.927124,97.13005,0.0006750381 81,612.246,191.2041,26.900696,135.9498,0.0006179244 81,139.89131,128.73473,25.748978,55.590225,0.0005090907 81,4.8586917,90.779884,88.43112,190.4996,0.00035511854 81,610.5053,69.1454,28.641357,151.79541,0.00026504352 81,160.80498,140.5455,25.803055,61.457367,0.00015159055 81,585.01654,110.95789,52.926575,224.85562,0.00014441524 81,0.996792,218.42165,20.675892,148.33104,0.00012837969 81,584.4586,2.6720703,53.77002,134.48056,8.275819e-05 81,2.8649821,169.34204,56.741726,238.57077,7.051604e-05 81,602.5232,239.543,36.623474,189.24826,6.2635845e-05 81,1.9772664,105.159386,21.517506,156.41986,4.3734217e-05 81,611.5628,372.24933,27.583862,124.68933,4.122611e-05 81,607.1937,0.0,31.952942,66.02931,3.4226832e-05 81,0.72287846,314.8705,18.409306,75.08383,7.073421e-06 81,0.94373864,355.88892,19.986795,125.63907,4.974164e-06 81,3.3991976,339.77182,57.751038,147.90057,1.6873523e-06 81,1.9900749,419.84192,35.058506,78.443085,1.0584528e-06 81,1.8254964,33.75831,30.257416,149.53381,1.4608241e-07 81,1.073064,7.1519957,19.205462,59.551426,8.738354e-11 82,18.300388,189.61896,32.772785,56.0437,18.090975 82,409.97388,196.9336,21.970764,46.258514,0.07662077 82,397.9033,200.38612,21.769196,45.272583,0.015472605 82,593.4964,255.4005,42.91974,116.46489,0.011770541 82,361.70438,199.84923,24.02002,46.723297,0.009644687 82,620.9887,316.47113,18.157959,56.03589,0.008427749 82,414.1176,205.90889,48.684113,107.42171,0.006514361 82,6.1111736,164.71643,62.405815,102.308014,0.00600299 82,620.8554,186.94164,18.29126,60.15988,0.0026516651 82,315.37546,170.38275,33.514557,65.920166,0.0019012612 82,609.75085,117.808014,29.395813,137.19714,0.0016523652 82,606.02295,65.00784,33.12372,94.63359,0.0013685114 82,189.40039,148.82056,38.43306,80.39392,0.0012717944 82,1.7639111,186.31267,18.694109,76.245316,0.0009813778 82,615.1721,222.97334,23.974548,102.58327,0.00052946043 82,610.019,303.61618,29.127686,144.29013,0.0003839988 82,141.19485,133.3422,23.127655,46.507782,0.00018424467 82,584.7355,50.42193,54.08557,255.47824,0.00010036399 82,572.0102,343.65588,67.03296,144.23007,6.2246814e-05 82,608.2197,436.81006,30.92694,68.86163,4.6981306e-05 82,451.91278,111.65927,46.216705,121.28912,3.18037e-05 82,2.25643,178.23558,31.641634,183.434,2.8597757e-05 82,1.020992,229.87979,18.53026,88.904816,1.9343051e-05 82,0.7074992,324.82632,19.738579,134.07608,1.1717741e-05 82,0.74747235,425.8127,13.723441,46.629395,9.287927e-06 82,609.6883,1.9096811,29.458374,65.85463,8.476958e-06 82,4.6661754,115.72456,109.4881,235.5024,3.4927925e-06 82,2.9894712,330.3125,57.426968,154.9433,3.1868303e-06 82,2.025262,81.22621,21.391657,161.14452,2.3428759e-06 82,500.76437,420.80862,78.80917,74.67566,1.6808668e-06 82,1.647793,419.95352,35.097305,79.00775,8.835544e-07 82,505.5748,4.3245316,43.47873,58.30332,4.5567596e-08 82,0.8808215,13.698028,8.977421,79.28039,8.996371e-09 82,2.2879899,14.401257,33.79327,72.53908,1.623408e-09 82,529.6957,6.0978127,44.37854,56.1453,1.0396948e-09 83,416.75732,202.08984,23.485962,45.72592,0.6402549 83,427.87302,96.992004,26.04309,58.637726,0.039401893 83,394.61954,203.96606,22.684937,45.016083,0.011399992 83,618.4028,63.210587,20.743896,60.17266,0.0078052953 83,38.801422,180.8652,27.170006,52.360138,0.0057608783 83,112.14693,148.2229,38.380707,102.35086,0.0051637236 83,182.81746,153.825,34.60707,68.543625,0.0030465657 83,611.36383,212.56625,27.782837,132.90826,0.0020829418 83,383.4358,212.7991,24.698853,48.584778,0.0019024818 83,567.69434,124.89261,67.23401,181.53171,0.0015905616 83,400.4309,221.07004,26.50467,51.24005,0.0013708703 83,327.33856,189.48021,36.461792,85.38158,0.0006697071 83,521.1987,159.75957,39.09027,81.839676,0.0006473209 83,608.46765,55.29775,30.679016,150.11548,0.00053625763 83,584.4257,206.50522,26.548218,61.44983,0.0005181736 83,0.9442196,205.73514,18.01715,72.259125,0.00025673618 83,585.2913,252.94287,52.536377,229.81699,0.00025000516 83,392.5358,78.307655,28.027802,60.26626,0.00016872837 83,609.4847,367.9034,29.661987,132.96634,0.00016212775 83,552.28906,414.45245,79.72803,83.65372,7.663187e-05 83,586.3773,12.335886,52.714233,123.15531,6.510042e-05 83,1.0134196,328.48877,16.336866,125.79187,3.485882e-05 83,1.2552392,215.41982,27.855295,152.35844,3.0091389e-05 83,101.55004,135.78877,78.311424,170.66154,2.8727154e-05 83,520.8863,218.26009,79.41193,192.57014,2.620311e-05 83,608.1388,4.324616,31.007874,60.63359,1.2254267e-05 83,3.1106853,241.48517,55.63521,227.51917,8.394546e-06 83,0.77136153,419.4998,15.080413,79.31946,7.824129e-06 83,498.65726,419.995,76.32065,79.70245,1.7559181e-06 83,446.58096,420.51767,76.380585,80.24063,1.5890288e-06 83,2.0914006,102.11924,34.475845,168.57224,9.2222746e-07 83,544.5486,7.2776613,42.52838,49.405857,3.861272e-08 83,577.83466,5.3284492,42.101562,47.11232,8.702353e-09 83,1.9341667,10.310795,33.85846,76.16788,7.102582e-10 83,312.1736,1.9007894,44.156128,48.60398,9.844486e-12 84,439.55017,233.93428,23.588745,45.120773,86.574814 84,561.6869,228.32138,28.236267,50.614838,0.16241264 84,185.64319,205.00943,26.747726,54.04718,0.06738318 84,526.23816,226.59338,28.428467,63.299316,0.026551597 84,607.6878,243.09326,31.458862,59.247528,0.017361382 84,415.6152,234.93105,34.425964,73.17427,0.013486219 84,338.43616,163.80042,37.88394,82.25224,0.012989029 84,519.32385,147.25568,32.443542,81.92769,0.003930373 84,403.52304,169.68388,28.247711,59.937027,0.0011554539 84,100.7015,196.79314,37.68412,91.31026,0.0011430179 84,133.52287,164.13603,29.626862,60.42105,0.00084218284 84,478.02628,97.98633,34.112885,73.64943,0.00069930655 84,588.3382,213.68465,50.51239,209.3554,0.0002523671 84,413.93362,168.48735,98.096466,211.89629,0.0001343769 84,600.25995,106.92631,38.32617,184.20459,0.000118836724 84,611.4154,317.43744,27.731262,149.62466,9.916653e-05 84,608.3424,432.5218,30.80426,72.23245,9.438958e-05 84,535.8359,114.257996,44.668213,135.37436,8.5634754e-05 84,0.9479688,242.7057,17.921286,69.55159,6.485132e-05 84,609.78735,24.705235,29.359314,161.21758,4.294685e-05 84,95.64116,166.0087,91.36331,209.02377,3.2719297e-05 84,599.8114,3.701592,38.33661,64.765366,2.0942607e-05 84,389.1746,426.76907,84.249115,74.27051,1.5045892e-05 84,570.02484,362.21866,69.121826,126.60843,1.4251047e-05 84,0.8336223,268.67358,19.36885,137.13278,1.3477651e-05 84,0.78610677,347.9795,18.18425,126.09454,1.05419385e-05 84,377.64505,239.07219,82.16382,187.47554,8.298835e-06 84,2.0365195,202.88948,33.013165,155.76222,6.4459286e-06 84,3.9084098,233.06667,56.303493,213.97292,3.947178e-06 84,387.39276,5.042308,45.27063,51.80932,1.6100367e-06 84,0.93269616,440.2696,21.606895,62.675934,1.4808468e-06 84,2.782531,387.61584,56.66898,102.72229,1.3364819e-06 84,465.74866,425.59976,75.161255,76.19156,9.82549e-07 84,1.4347355,163.86781,19.255512,120.15782,9.3357187e-07 84,341.3828,7.474274,43.773926,46.466564,3.1706287e-07 84,1.6832373,11.053614,33.753284,72.607605,6.329557e-09 84,436.43387,6.1648846,43.01938,46.38128,2.9106326e-10 85,423.03888,209.97824,38.60971,64.50397,0.88646954 85,467.74835,222.74573,24.61728,51.324005,0.46571785 85,598.9395,211.4752,26.750427,52.211227,0.14513832 85,547.1604,201.64809,30.203796,46.773773,0.060500514 85,326.15,205.5054,23.519165,48.032135,0.028795972 85,622.7552,213.54878,16.39148,55.679672,0.021012576 85,531.91064,209.96811,28.166077,47.67984,0.01568495 85,169.80042,177.50455,32.580276,63.2995,0.006987237 85,428.8623,114.16671,25.478638,54.83718,0.005763956 85,604.4452,14.257279,34.062622,117.97069,0.0018325758 85,609.4866,191.3586,29.660095,123.9937,0.0013322578 85,289.86713,143.83934,24.756409,55.881073,0.00109966 85,102.769615,132.51164,38.046974,74.29906,0.0008238813 85,599.45074,219.6404,39.53827,229.79466,0.0003801699 85,598.3415,51.017788,39.541687,221.52448,0.0002880888 85,353.44287,113.52723,23.842072,55.42286,0.00026173244 85,79.68964,139.20135,24.932861,52.798813,0.00020883021 85,611.538,348.6263,27.608643,152.25583,0.00017036695 85,1.1076351,214.64029,18.297419,67.32117,0.0001670928 85,421.51154,111.9028,45.940033,119.39783,0.00014352088 85,568.8819,418.4462,69.49097,84.292725,4.4005323e-05 85,0.6240283,249.42047,18.268597,78.06537,1.8466846e-05 85,0.6052116,352.4536,18.579044,75.68524,1.2685121e-05 85,2.183117,196.69135,32.73186,155.61398,1.1051019e-05 85,0.77793705,404.61856,18.293264,72.14261,8.329442e-06 85,472.75424,414.7568,78.93729,82.452515,6.232802e-06 85,614.5903,1.6085873,24.556396,48.204178,5.450415e-06 85,546.96967,442.50772,46.614807,61.876984,3.1234158e-06 85,1.1862508,297.5483,31.858381,170.20352,2.747492e-06 85,1.6088144,132.88557,20.300432,127.583664,2.5019872e-06 85,3.3606136,111.08844,57.99261,202.53885,2.376668e-06 85,402.52637,419.39716,78.272705,82.05383,1.134292e-06 85,2.81598,392.80313,56.800117,100.91199,9.171439e-07 85,332.78226,0.0,45.18683,51.881367,6.2481e-09 85,1.9881462,10.349236,33.356598,75.00286,1.6400619e-09 85,579.73035,6.6358223,44.875732,56.79171,1.0562691e-09 85,470.067,5.9068017,42.746246,45.108543,9.767998e-10 85,413.2175,3.9417448,48.003082,55.05327,2.8865885e-10 86,503.36053,205.8805,26.853027,63.243225,98.213745 86,475.20792,206.08372,32.1084,64.93822,98.01722 86,562.1854,214.61072,28.354187,55.58136,0.26211664 86,459.9398,104.141266,31.57022,69.31062,0.07251961 86,460.2385,164.14432,74.29776,123.32883,0.054063648 86,153.59648,167.38368,38.864395,65.370255,0.03032225 86,308.19598,197.2169,23.674652,50.376404,0.022611616 86,444.82776,73.59393,59.16922,156.32181,0.006382452 86,430.02734,93.4456,36.072723,84.14696,0.003286261 86,431.0872,92.33584,134.87509,265.83414,0.0025792252 86,554.4845,190.15662,43.05719,137.98492,0.002168511 86,600.6332,147.3265,37.43457,132.29181,0.0015769203 86,477.3987,45.539116,22.80014,52.375015,0.0013021873 86,72.95815,124.4662,26.918495,60.512695,0.00021800939 86,607.22504,434.50208,31.92163,71.4769,0.00015159011 86,492.4298,44.27892,21.551453,50.581844,0.00011595077 86,0.82272786,206.77156,19.129715,119.62224,0.00011522192 86,612.0195,230.66402,27.127197,146.8525,0.00011166647 86,486.34225,113.670265,50.56845,110.75901,8.7700144e-05 86,46.371445,124.99784,36.41194,93.11321,5.510015e-05 86,609.5727,7.301403,29.378601,80.99458,4.351638e-05 86,601.5851,289.59277,37.561584,199.03369,3.988804e-05 86,331.7123,123.84673,28.89264,63.600197,3.1020933e-05 86,0.9833537,406.44974,18.130672,72.32272,1.3180768e-05 86,408.6113,320.77142,85.47891,165.94608,1.2043384e-05 86,3.764751,149.50052,59.37132,207.22763,9.332589e-06 86,452.58893,419.262,74.904236,75.75827,4.968579e-06 86,0.9640194,251.50703,31.437893,180.80531,4.7883445e-06 86,3.5909717,334.29117,56.426804,149.14624,3.4340542e-06 86,1.9542253,114.86416,30.890802,151.50851,2.983387e-06 86,512.48224,426.05814,75.61951,71.693695,3.284868e-07 86,1.5456389,61.57534,19.08585,133.25473,3.8138637e-08 86,585.8654,6.0711555,43.182983,48.873806,3.2922298e-08 86,415.28406,3.8646095,44.25464,49.7777,9.2100825e-09 86,1.9492432,10.564932,33.932987,82.59586,1.1004744e-09 86,554.87067,7.279844,43.9646,50.8971,8.2748575e-10 86,440.77747,4.4426107,44.4675,49.84126,6.416305e-10 86,528.5789,6.326252,42.29834,51.89612,8.472024e-11 87,585.7379,205.33147,38.788086,90.575424,99.95546 87,545.4559,204.00531,41.916626,90.760254,99.925354 87,606.37665,205.23387,31.662842,68.428055,2.297286 87,570.2744,204.54967,31.150513,79.19704,0.2653607 87,307.05264,201.84491,24.18631,53.960175,0.051350497 87,320.8063,199.18788,24.750336,48.670868,0.037211634 87,555.41614,169.89748,78.539856,183.93684,0.008024105 87,145.54147,165.73183,46.65747,73.31641,0.0067427047 87,458.13257,98.832,46.454163,144.4544,0.0026578426 87,596.13885,315.44333,42.33795,195.70334,0.002575504 87,406.3776,413.35898,77.683044,84.26312,0.00045665057 87,5.632409,104.8321,71.6271,181.25381,0.00034839983 87,597.4395,68.24759,41.322144,227.24731,0.00023314208 87,515.924,376.20172,122.743164,128.98401,0.00023249684 87,580.8494,444.44617,44.91211,66.7005,0.00021170494 87,345.39578,109.59856,26.44278,63.634567,0.0002069062 87,448.29626,437.9636,52.59915,66.77878,5.6914967e-05 87,5.402038,190.82954,53.818836,243.54546,4.7651756e-05 87,1.3413681,187.43918,19.215712,116.79712,4.1679024e-05 87,1.5190398,89.76442,21.173807,163.78038,3.4910783e-05 87,482.79437,303.01932,79.21655,191.21844,3.432634e-05 87,608.91833,0.0,30.228333,66.78626,3.209958e-05 87,1.3389364,325.0687,18.92722,130.49469,1.8769751e-05 87,532.8336,433.21793,48.94232,69.713806,7.951496e-06 87,1.0099089,420.33807,15.676985,82.251465,7.792705e-06 87,3.8422868,390.0861,55.15831,103.26825,4.027256e-06 87,587.30414,0.0,51.84253,147.03914,2.7797937e-06 87,1.8265316,11.8372755,34.27971,83.07898,1.5289681e-09 88,322.47385,206.55647,23.922241,46.795334,0.008342377 88,1.9352125,209.67403,23.240322,58.126358,0.0067081493 88,607.3675,215.42166,31.779175,73.7536,0.0048109065 88,101.400475,149.2052,35.832466,81.382645,0.001887191 88,488.41528,112.75494,36.12671,73.940865,0.001296967 88,579.70465,204.72177,45.845764,77.42981,0.0011610287 88,3.987308,107.42918,67.01442,187.81686,0.00070145197 88,617.3599,375.07312,21.786743,76.97659,0.0005464485 88,473.62054,97.60951,80.48779,166.07365,0.00048244273 88,145.031,179.18709,35.51326,65.76013,0.0003224081 88,616.6839,252.916,22.462769,83.99898,0.00031927007 88,599.7714,214.4341,39.375244,202.03493,0.00030775377 88,39.012676,216.91237,24.140476,46.83635,0.00026617423 88,316.67157,193.02954,41.496185,109.345856,0.00018945993 88,609.7614,91.02264,29.385254,157.0733,0.0001838869 88,617.28284,298.69193,21.86383,83.59622,0.0001227768 88,1.04962,232.63243,19.229132,152.32787,6.0071663e-05 88,3.2178419,187.85712,56.41492,266.1223,4.4339547e-05 88,584.84717,393.52295,54.2995,100.42154,2.3528986e-05 88,0.7847225,401.2297,18.56333,73.90332,2.0482108e-05 88,0.36198285,264.59152,14.039577,51.346924,1.872127e-05 88,0.7196249,334.03873,18.543797,78.42734,1.740132e-05 88,611.025,1.2661947,28.121643,60.18285,1.2861998e-05 88,452.64166,100.232056,45.09845,143.8537,1.0162361e-05 88,1.3882471,346.00006,34.691708,142.44333,5.8906403e-06 88,366.5347,97.57872,27.420258,58.937317,4.6304212e-06 88,1.3092985,84.333084,21.997536,179.07146,4.1270555e-06 88,534.97906,426.45007,84.06763,71.86609,7.188893e-07 88,398.227,425.7299,73.21896,72.11987,2.524593e-07 88,1.3147836,27.895678,15.149691,122.000946,1.8139173e-07 88,2.383252,22.737747,55.82524,115.99806,3.52019e-08 89,605.858,193.93405,30.114685,52.06038,0.23186535 89,486.26855,210.80014,22.75885,46.00476,0.060518708 89,402.89963,220.84367,31.883545,63.730637,0.050976917 89,536.8466,201.65724,34.039734,57.15953,0.0147167565 89,56.884514,126.892685,24.826866,45.171448,0.010557142 89,344.75092,214.59134,37.148834,67.37286,0.006615073 89,3.697964,82.71391,62.215893,167.75229,0.005480501 89,37.401615,121.48456,33.102215,54.813995,0.0030155561 89,434.14764,111.36457,24.814667,55.688637,0.0030097386 89,600.1847,174.12805,38.175415,166.05353,0.0017481707 89,431.51874,120.44273,40.32071,134.03113,0.0011851465 89,98.81198,149.83527,36.556824,119.66669,0.00090595 89,621.67035,240.21884,17.476318,56.407623,0.0008312542 89,2.1916635,146.45264,31.13175,100.97394,0.0005345491 89,10.5001135,200.2981,36.836555,66.036835,0.00041576262 89,617.1221,383.1969,22.024597,78.80057,0.00021326692 89,616.4774,293.0177,22.66925,78.77063,0.0001706525 89,367.8503,75.946945,27.15216,65.18416,0.00011082308 89,1.7719914,81.1931,19.450241,94.20172,0.0001005253 89,476.28235,74.11612,100.428345,182.79657,8.405038e-05 89,1.2726351,220.30992,18.019611,77.37294,8.068197e-05 89,600.7559,322.18365,38.390747,169.24136,6.942127e-05 89,608.80225,441.55386,30.344421,62.444214,4.82974e-05 89,239.2919,178.31364,42.468506,84.94203,4.10747e-05 89,3.1280339,231.44885,55.67716,239.12366,2.5086447e-05 89,0.909939,245.78839,18.779478,146.83151,2.3768498e-05 89,0.6046818,422.73746,14.120898,49.11084,1.9058898e-05 89,0.806084,342.4602,19.717588,132.43503,1.4552677e-05 89,611.1805,1.1575683,27.966187,58.965706,1.42751505e-05 89,505.66663,106.01704,44.367493,98.43626,7.838469e-06 89,278.15256,66.25438,40.959076,101.7504,5.1863303e-06 89,3.067609,393.97324,57.257317,99.55374,1.9585243e-06 89,2.7856998,21.759031,57.233,132.61435,1.3159298e-06 90,376.61713,197.50665,27.97821,52.651917,0.21573727 90,612.2689,218.40895,26.854614,56.899918,0.09357722 90,463.30334,257.5715,25.164581,50.851746,0.041436236 90,600.68915,156.21982,37.959778,141.6517,0.008235898 90,89.45006,200.78609,21.625778,51.04454,0.004857703 90,66.315895,138.90088,43.265526,127.52316,0.0033148946 90,15.3775215,208.56638,25.177135,45.827957,0.0019923793 90,618.51196,175.33948,20.634705,73.928894,0.0014607807 90,475.93246,134.66115,37.520782,99.133804,0.0009608263 90,247.74686,166.43948,45.11374,118.01865,0.00075191644 90,357.52863,195.16487,41.83731,112.74773,0.0006926527 90,612.0196,238.79163,27.127075,155.62762,0.0004984762 90,45.55465,201.51805,37.738388,62.267166,0.00047582274 90,473.8749,100.85444,26.462097,67.27303,0.00022484887 90,1.6421396,198.36084,20.142494,135.49979,0.00016805677 90,610.9376,353.6163,28.209045,138.9949,9.908882e-05 90,2.3971753,116.50155,35.03329,190.33813,6.282465e-05 90,0.9216976,235.26584,13.896452,54.402435,5.1042098e-05 90,464.87485,96.33145,72.92624,202.88028,5.014956e-05 90,405.6319,144.45003,27.716064,58.6761,4.8104703e-05 90,5.1122885,127.238976,77.33404,276.05588,2.6694654e-05 90,0.9340788,316.1328,19.534048,132.81793,1.9312563e-05 90,1.4892367,100.43851,19.024752,87.965546,1.8816962e-05 90,0.75928795,425.09467,13.816416,47.118774,1.1896323e-05 90,3.202798,27.869343,54.56675,114.48534,8.753923e-06 90,611.4642,0.9994531,27.682495,60.274883,5.26507e-06 90,1.3043718,381.8724,29.343811,111.65442,4.3792975e-06 90,5.14833,353.85367,79.79751,134.02103,2.7590663e-06 90,414.31522,3.5128632,45.028076,50.454063,4.945464e-09 90,1.3806739,7.301937,28.51833,65.25787,2.8775857e-09 91,467.0823,218.60646,25.690063,55.451157,98.81728 91,489.61032,221.65938,23.852753,56.160538,14.675999 91,403.6506,216.10965,23.63678,49.27484,0.7629297 91,444.93585,200.58698,29.04071,65.80673,0.16391626 91,388.6784,223.25099,24.29425,54.156296,0.023677178 91,608.2208,224.9411,30.925842,79.637115,0.020296972 91,620.87286,279.7047,18.273804,53.289154,0.01845977 91,46.484093,158.08792,39.78537,108.3356,0.00661665 91,56.568653,211.36743,23.447948,52.300568,0.003512035 91,600.36957,239.02855,38.7771,181.51512,0.0013726966 91,384.7934,203.70473,41.374268,113.05711,0.0012647432 91,4.239144,100.64501,67.664894,196.23993,0.001135725 91,65.80359,134.53935,43.76574,117.962814,0.0009259039 91,593.8131,407.78177,44.664978,101.32095,0.00078153063 91,1.4928435,202.41751,19.295998,78.216705,0.00048763087 91,437.12793,183.19992,93.403015,184.12003,0.0004381564 91,585.48926,92.310005,52.48712,249.08984,0.00026200264 91,1.825966,219.66722,28.229208,157.18611,0.00013989305 91,608.56744,89.235954,30.579224,133.76553,0.00010051342 91,1.6457983,64.325294,30.700779,179.64774,9.752599e-05 91,609.114,11.956999,29.724182,110.2004,5.29698e-05 91,1.0448462,338.76877,19.63688,129.02368,2.2401127e-05 91,513.59033,427.17862,75.46814,71.92734,2.0526772e-05 91,16.967707,47.809357,46.554955,149.32469,1.4046786e-05 91,569.8271,449.36548,42.174194,57.96579,8.0556365e-06 91,478.7681,437.57745,43.53061,66.43088,7.355559e-06 91,3.4511817,339.81763,57.611645,144.5364,6.2030103e-06 91,0.5009123,287.60294,14.0598135,50.720886,5.771199e-06 91,0.7975,418.67548,16.15374,82.17447,3.509675e-06 91,516.57056,5.8916507,44.93091,47.335926,5.0570486e-09 91,551.00476,5.478451,45.97223,58.2089,5.0099764e-09 91,578.48285,6.399219,44.626465,52.854107,3.0758083e-09 91,2.1142838,10.87294,32.982254,84.5955,1.6009092e-09 91,386.75708,1.4285905,43.782623,45.493504,1.8348543e-11 92,513.68164,217.5402,28.371155,58.64662,99.95515 92,547.0745,221.1679,24.302673,45.767685,58.101536 92,474.14664,217.23566,22.176758,48.183624,10.12536 92,428.77673,211.4483,42.8472,81.319244,7.17133 92,416.1098,204.93636,29.855621,68.435165,1.4156114 92,453.7704,217.44202,24.311798,51.828125,0.44895905 92,531.8492,218.13608,25.764893,51.96866,0.05583163 92,404.46298,94.37269,34.6987,80.96455,0.04728308 92,485.84766,214.01767,30.289185,54.181976,0.035997435 92,2.7523715,98.50582,50.801815,148.06699,0.020307658 92,449.60422,199.08453,40.997314,118.640076,0.0100231515 92,10.748994,150.84001,32.65263,67.643616,0.002649221 92,384.1374,103.46655,39.992706,87.18161,0.0013204854 92,471.09277,127.83724,21.586456,47.677086,0.0009771975 92,410.36838,168.40689,112.49393,189.60983,0.0006308741 92,476.28464,118.962036,36.521942,81.22479,0.00060219807 92,418.5322,94.71341,41.282593,113.54433,0.0005998945 92,1.4326286,150.91982,21.096188,99.479645,0.0003899261 92,491.88974,177.41284,73.52762,151.7439,0.0003634079 92,599.5023,135.91307,39.64435,170.25233,0.00030348223 92,611.5211,280.76758,27.62555,131.53119,0.0002921083 92,608.9177,13.040248,29.701355,113.4733,0.00023251591 92,1.8971468,80.68313,20.356968,100.60415,0.00022529642 92,585.2279,319.9239,52.80182,181.62119,0.00014898411 92,605.72614,433.09497,33.420532,78.0517,6.74881e-05 92,1.9976009,164.81145,31.706879,190.97029,4.2688695e-05 92,0.93428385,329.81674,19.184008,128.87848,1.5592344e-05 92,535.14154,445.39304,42.609436,65.48834,5.254335e-06 92,3.5613494,337.04367,56.730423,145.85187,3.1730262e-06 92,544.2318,412.50748,81.69995,89.413635,1.7683064e-06 92,494.73715,145.00552,30.631622,72.67949,1.7051239e-06 92,1.1932487,443.08615,21.476416,59.659485,1.0915186e-06 92,485.93314,412.28735,77.147736,84.63229,7.9226385e-07 92,1.527583,11.31504,32.151524,81.86752,3.5516923e-08 92,515.8799,5.0207033,47.0177,56.105587,2.7944738e-08 92,558.5294,9.445726,42.191223,45.78778,1.5895063e-08 93,575.62634,219.02937,37.174988,78.16466,99.96647 93,602.5549,222.27225,28.526306,57.94931,98.64535 93,544.5704,224.13068,23.299133,45.84601,43.900692 93,512.6884,216.08882,42.737305,82.41765,6.620757 93,618.9216,216.42122,20.225098,50.278183,0.06774037 93,108.341774,160.42496,23.203697,46.5766,0.046920612 93,594.38556,175.46687,41.6593,148.58672,0.013968216 93,454.6656,197.67212,28.450256,62.304108,0.012933241 93,479.54095,164.65019,38.20105,92.726456,0.011591116 93,425.28668,202.29349,34.235107,62.984467,0.011337095 93,38.65743,210.34573,29.557064,47.89087,0.010536987 93,375.18893,165.97304,43.756744,90.70143,0.0033669858 93,488.9424,190.3575,87.9017,144.54747,0.0015392198 93,525.3079,153.02087,110.46454,222.71747,0.0013459258 93,530.55676,85.71538,27.337097,54.806427,0.00066538126 93,610.5574,261.25174,28.589294,150.4609,0.00042926308 93,605.92847,437.37152,33.2182,71.53021,0.00018609318 93,459.4643,117.20959,33.06552,62.84182,0.00017022404 93,615.51874,63.86785,23.62793,97.49801,0.00012068775 93,1.2129419,213.43013,19.424347,122.3987,5.9972637e-05 93,585.30316,317.00143,52.685974,176.39941,5.065247e-05 93,1.3991545,64.60704,19.521383,93.373825,4.6755584e-05 93,2.1759539,104.047554,34.054832,198.96283,3.9312497e-05 93,0.8872982,339.02914,19.444433,131.90503,2.406758e-05 93,3.5948277,231.28496,56.941048,231.06676,2.0955073e-05 93,2.3179493,20.622734,52.932953,119.77688,8.940176e-06 93,2.875319,392.0914,57.811348,101.930176,5.233132e-06 93,0.67490155,419.27985,16.51741,82.06052,3.870906e-06 93,599.04803,0.0,40.098633,93.72307,1.9722972e-06 93,531.1734,415.72836,83.95392,85.04773,1.9500183e-06 93,3.3530161,7.9495053,54.63599,47.113766,1.863249e-06 93,63.02107,7.0726695,36.990017,51.343464,1.499186e-06 93,1.1249797,9.864317,16.641281,86.54428,1.1838947e-06 93,177.55594,5.7861476,38.60234,53.60173,3.4039374e-07 93,89.26225,7.1400685,37.3338,51.130096,2.6280972e-07 93,151.22554,5.921665,37.989014,53.633778,1.7866195e-07 93,426.5868,6.644805,46.91165,50.12545,3.2750926e-09 94,540.9144,217.1977,26.717224,68.55606,99.78613 94,559.22144,216.41696,27.648804,69.97067,99.765274 94,593.13916,227.10759,23.865417,51.578598,5.717062 94,580.4967,210.15819,24.022522,61.289993,0.20280986 94,527.6048,216.06676,25.315857,61.880814,0.12776677 94,436.2061,203.84453,37.482117,62.68416,0.08550695 94,545.36426,171.5275,46.03961,88.31329,0.040773593 94,581.78845,192.03418,45.102966,110.309875,0.025147028 94,536.2541,163.3851,82.57971,175.60031,0.017934028 94,524.94556,123.75094,23.645508,61.41459,0.016568152 94,488.42184,158.18564,26.034393,53.69586,0.0065316046 94,608.25854,139.49373,29.625061,138.18593,0.0056965956 94,617.1843,217.95953,21.962341,68.57764,0.0054551647 94,1.2971424,84.0489,13.40504,53.124016,0.0052866153 94,459.1247,155.10614,26.55542,52.08734,0.0049990704 94,610.0917,250.55734,29.054993,136.53314,0.0019632725 94,597.9914,97.288895,37.067505,95.40463,0.0017640874 94,86.7717,158.56493,25.60942,50.83995,0.000948474 94,531.2428,113.627464,38.485657,92.59652,0.00047642484 94,586.6329,221.3235,51.087036,248.09172,0.0003278159 94,1.0680501,210.49106,18.564476,65.79242,0.00028757635 94,569.18256,61.169533,69.96411,211.66028,0.00026081796 94,605.67255,432.24335,33.47412,76.1597,0.0001938103 94,1.4636679,83.857925,20.119968,137.86063,7.7458324e-05 94,549.7879,69.02924,27.878235,54.034042,7.413263e-05 94,608.34576,15.999343,30.800903,139.48553,6.390912e-05 94,0.9832503,347.42258,19.314857,126.69473,2.8633176e-05 94,1.7979021,156.19936,34.51495,171.9958,2.118838e-05 94,1.0244808,247.27579,19.553598,141.59943,1.2858207e-05 94,3.106076,319.35474,57.737183,158.59454,6.4985165e-06 94,2.9754705,29.013294,57.87385,232.53853,5.0505782e-06 94,1.4050163,413.19342,35.481915,84.76059,2.6218052e-06 94,204.37123,5.397904,43.9469,45.015594,2.528329e-06 94,1.2457097,12.895189,29.903503,129.69492,5.3796947e-07 94,176.42625,5.7557507,46.302734,45.49385,4.2177572e-07 94,339.4948,7.169255,44.747192,46.576927,1.17669465e-07 94,313.0529,7.9135404,46.374634,47.00719,8.3176694e-08 94,367.50076,7.8595476,42.343597,46.44279,7.096549e-08 94,395.474,6.894844,41.80194,47.822346,5.6727963e-08 95,549.14984,216.96783,34.029724,81.75818,99.93685 95,576.89886,215.41432,32.54767,82.72841,99.928955 95,611.58875,223.37543,27.384827,53.236206,99.742165 95,356.98367,197.06618,26.60376,49.58847,26.523607 95,340.1072,196.58115,25.021606,50.25833,1.2863894 95,604.7168,195.93562,34.42987,163.34895,0.6389292 95,329.30182,205.22638,23.071472,48.791336,0.054426614 95,521.1091,163.93666,104.365234,196.23952,0.048133828 95,420.5635,197.03009,40.7623,71.66058,0.033897363 95,619.5224,106.26848,19.624268,59.270874,0.013611991 95,211.30244,136.02863,42.072357,123.38394,0.0038039496 95,532.2297,273.34222,100.63391,208.63788,0.0022651865 95,586.86646,435.6039,50.6593,71.39813,0.0015996706 95,1.239533,146.38737,18.309483,71.95352,0.00064139033 95,615.9844,300.01947,23.162292,86.555664,0.00047716784 95,607.8193,320.82312,31.237305,152.37946,0.00040161822 95,608.6949,80.51376,30.451782,142.46368,0.00015279668 95,528.493,64.78543,56.095642,208.5354,0.00014517264 95,4.0136313,100.95463,57.174366,220.17572,0.00013181426 95,1.2470028,65.844025,18.699276,77.12833,8.88191e-05 95,582.6658,4.7647786,55.850037,270.09134,5.2632924e-05 95,619.2043,47.04566,19.942383,63.96436,4.9567665e-05 95,1.2050301,398.88742,18.191397,71.988464,4.9054044e-05 95,0.9423478,170.7602,23.306467,121.62793,3.8623075e-05 95,2.058488,349.55902,34.224712,140.23828,8.524302e-06 95,1.9418441,23.156582,36.33035,179.07925,3.049561e-06 95,1.0936832,282.82104,20.958479,109.868744,2.7693789e-06 95,610.5878,1.9732976,28.558838,58.1219,5.802144e-07 95,0.7376624,11.450283,13.787771,89.65439,1.7129625e-07 95,450.20364,7.498926,43.051666,46.669266,4.6067022e-08 95,476.276,9.716205,48.757507,133.66951,1.47296895e-08 96,511.90787,213.24852,44.5076,98.838486,99.93382 96,543.24677,211.56917,39.241455,92.662094,99.921646 96,586.61127,220.78091,27.94751,58.034363,99.903366 96,295.11447,201.9553,28.486267,51.718323,39.17149 96,273.82843,203.5016,29.993195,53.01512,23.072763 96,572.54535,219.1887,23.855652,54.40178,3.6937687 96,261.935,205.1542,24.936401,57.350983,0.86353964 96,371.89896,197.16139,41.321564,74.30812,0.07307654 96,201.27544,184.97932,25.606964,51.846466,0.017720817 96,515.3095,188.79729,93.81354,165.47353,0.013319426 96,572.6935,200.40112,59.374084,94.476654,0.0105314 96,611.70435,213.54692,27.442322,125.56511,0.0045433124 96,618.02563,186.4347,21.121033,73.17926,0.0017102095 96,616.6523,287.27094,22.494385,82.21457,0.0009884901 96,2.5964975,75.49694,30.250599,128.34225,0.00093696633 96,609.29486,377.6721,29.851807,133.47458,0.00023441733 96,3.3751514,34.89208,73.728,139.90398,0.00018352146 96,259.58405,132.17795,97.99194,199.3281,0.00014876263 96,1.5968164,129.55428,20.598667,144.67717,7.177777e-05 96,595.4484,51.21417,43.698242,230.19785,6.279278e-05 96,3.2933416,109.779495,58.54661,247.24208,4.6934598e-05 96,477.46924,33.79902,54.74518,201.94177,3.930155e-05 96,1.1573665,348.23553,19.717987,127.45297,1.4481088e-05 96,614.0634,105.91133,25.083252,102.70291,1.3744142e-05 96,1.6103077,15.297812,38.197845,93.66965,1.1188838e-05 96,1.024712,271.57703,20.171896,133.76447,8.481907e-06 96,3.536245,309.42505,57.698975,173.81824,5.0924627e-06 96,455.77225,22.91642,132.7244,290.89456,3.5646926e-06 96,611.0947,0.0,28.05194,64.52212,3.5213423e-06 96,1.7970492,420.39178,34.691334,77.375885,1.2854954e-06 96,16.654099,7.786146,45.29225,52.641273,1.3952476e-07 96,48.405594,8.738569,42.87684,52.430412,1.0649932e-07 96,137.17688,5.863713,40.828384,50.75334,4.1421767e-08 96,75.3496,7.4239974,43.01458,56.149952,3.9184144e-08 96,204.39417,5.662669,43.32022,60.14008,2.8581248e-08 96,101.52919,6.457824,42.122437,52.62439,2.5271211e-08 96,163.57619,5.588934,42.054565,55.620895,2.0177925e-08 96,231.4129,4.0372267,42.247955,56.7398,1.9417767e-08 97,465.06183,212.7128,46.185364,103.917816,99.878 97,440.8724,214.86958,42.560883,100.030075,99.87102 97,524.94135,222.74742,30.687256,56.702652,99.86951 97,214.03061,210.14772,37.392914,60.96776,92.23135 97,177.9927,218.24313,27.632889,58.10382,74.39255 97,194.363,207.8472,29.341888,70.63092,6.772764 97,490.0879,224.24387,26.5448,57.418365,0.30582002 97,431.84393,221.01207,28.62265,71.64595,0.28514782 97,293.96124,204.44841,36.12372,78.27873,0.1551259 97,281.21988,231.05287,23.970123,46.10048,0.045298487 97,451.42188,267.3905,26.177002,50.8461,0.040552855 97,422.936,186.92113,95.33316,170.32652,0.00958405 97,610.29297,210.45364,28.853699,143.53552,0.0024509656 97,607.9697,137.50667,30.258423,126.78554,0.000917646 97,612.98157,40.1126,26.1651,100.929,0.0002348933 97,509.1497,184.66342,71.3179,151.66205,0.00018632619 97,611.49,375.8955,27.656677,123.06879,8.868866e-05 97,2.5252197,107.91738,35.287365,181.24384,6.685927e-05 97,1.330494,205.65855,20.552517,121.66737,5.2547766e-05 97,0.9088021,391.58884,20.964077,101.994446,3.0768402e-05 97,2.6851156,172.43861,60.076427,260.9909,2.0154066e-05 97,415.33853,47.98972,52.22928,189.40631,1.5241552e-05 97,581.6377,21.713047,57.109863,222.93779,1.0027161e-05 97,1.7393042,17.077986,27.712158,98.70226,8.406691e-06 97,6.344535,26.789858,72.409904,143.57535,6.872422e-06 97,1.1057528,301.11703,20.222878,139.76965,5.3097056e-06 97,611.6772,2.4366179,27.469482,61.459854,5.079464e-06 97,34.86099,7.1246176,42.466747,50.275265,6.586539e-07 97,82.46587,9.308436,43.975197,54.47166,2.3671211e-07 97,109.379196,8.623051,44.85721,56.531277,1.3110238e-07 97,135.29651,7.018926,44.64676,50.108986,4.8963134e-08 97,380.34344,2.782788,46.21164,53.764786,1.8981556e-09 98,384.0445,208.70915,48.8472,110.09657,99.953545 98,349.38422,210.20392,47.824585,111.96399,99.913284 98,463.41214,225.30704,31.1698,56.01944,99.73331 98,145.73128,219.1735,38.836487,64.11209,93.391205 98,216.61148,218.38481,28.281784,64.80498,86.10756 98,118.99292,218.93808,36.84346,66.910095,14.453514 98,102.118126,218.97972,28.42237,67.21373,1.5952868 98,411.57562,230.34267,26.512573,48.203873,0.9960206 98,485.94803,221.94531,27.161285,50.036285,0.029735995 98,398.35196,261.19083,25.80307,56.906067,0.0035041324 98,1.6117685,170.8628,22.200384,104.03128,0.002105261 98,307.5669,139.02354,137.655,237.27223,0.0013053989 98,448.01776,202.71193,65.54675,100.067154,0.0008559902 98,610.5757,189.42714,28.570984,129.93651,0.00048872764 98,608.7626,437.0948,30.384094,66.68646,0.00016582821 98,614.4519,31.467888,24.694763,86.69791,0.00015188198 98,602.004,330.37604,37.14264,159.64127,0.00011329188 98,598.2847,72.94358,40.662537,198.91873,0.000109208915 98,2.8458774,91.69385,58.78157,202.811,4.668732e-05 98,151.3027,137.64575,153.64548,225.73035,4.590848e-05 98,1.0816448,213.48186,20.911638,151.74379,3.1378186e-05 98,1.087225,320.32568,20.14393,133.95181,1.6059921e-05 98,421.0188,145.91643,134.74908,236.76692,1.541054e-05 98,2.3830795,14.781563,36.280193,79.568756,1.0863432e-05 98,2.6675994,255.66055,58.458202,224.69241,9.900761e-06 98,601.8941,5.2668915,36.980835,67.241646,8.254161e-06 98,5.558809,32.787937,73.65726,113.66658,3.907551e-06 98,1.987526,419.3692,34.601036,77.82559,2.35699e-06 98,23.094757,14.503233,73.84701,69.71837,2.3042662e-06 98,347.43634,5.0943947,84.17203,178.64256,1.4156478e-06 98,67.068825,8.348158,43.15438,51.34014,1.0427662e-07 99,586.97186,227.87454,45.964172,112.572235,99.9433 99,421.6299,226.04883,29.501862,56.052887,99.79427 99,320.87653,212.73514,46.08618,106.13455,99.78503 99,286.96558,213.28221,44.78659,105.32713,99.75999 99,102.223434,216.46416,41.299118,68.95409,96.91871 99,68.03878,209.14319,38.31833,83.9548,21.825228 99,160.81657,211.5749,32.44957,74.1487,12.893854 99,331.93286,261.60367,25.20755,54.845337,0.03951427 99,612.0377,244.5431,26.442078,75.107925,0.022067387 99,543.4676,139.34071,94.651245,269.14825,0.009240509 99,606.66327,147.53008,31.394104,138.81328,0.0013538842 99,247.5787,127.711426,135.7127,258.59863,0.00041340853 99,615.43994,44.99283,23.706726,82.01974,0.00017297029 99,608.2,439.0397,30.946655,66.11868,0.00012365056 99,404.97485,185.63536,75.29266,153.24309,8.012834e-05 99,0.975315,77.99961,19.334482,133.45605,4.5050896e-05 99,1.1037289,342.87616,19.975458,129.26593,1.652512e-05 99,2.255967,118.74605,34.989277,183.28682,1.4573038e-05 99,3.8338053,244.62897,56.431652,229.44052,1.2667991e-05 99,1.0469035,241.98021,19.952293,134.03362,9.821409e-06 99,598.0155,21.944304,41.131165,191.0311,3.7144932e-06 99,1.1556584,10.180746,17.628452,79.72094,3.5671412e-06 99,1.9482723,23.00151,34.190968,136.88248,3.141543e-06 99,1.819559,416.53513,34.976875,81.296814,2.2309787e-06 99,611.2302,0.0,27.916443,67.63486,1.5810899e-06 99,0.9980827,4.920967,44.525955,53.200428,1.5662742e-06 99,312.0877,0.0,83.38583,178.62607,9.87573e-07 100,535.8881,229.32365,48.43579,105.91417,99.958534 100,290.2124,213.12228,36.391357,99.334595,99.91048 100,258.6795,212.34065,41.09079,102.28731,99.85019 100,404.08423,224.29524,27.638733,55.511703,99.82103 100,67.31996,216.56961,33.55548,74.91803,80.81348 100,99.02409,215.19225,42.86203,70.10283,16.735844 100,132.89594,214.78465,43.63466,71.78529,0.6794474 100,45.750397,202.39828,39.483482,90.59778,0.020873874 100,69.650024,167.08205,89.331024,143.00294,0.019499507 100,237.30682,183.24326,88.59714,171.1048,0.008509166 100,456.46198,194.9613,33.895996,71.886444,0.002420883 100,610.42035,192.347,28.726318,136.74617,0.00090941496 100,619.10876,56.549534,20.037903,55.069637,0.00086992286 100,392.12976,203.45924,56.874725,99.034195,0.00076017407 100,493.6073,156.09344,135.74689,234.3458,0.00065733783 100,607.5752,438.90262,31.571472,68.85516,0.000100620266 100,1.2762085,117.16198,18.713375,126.1386,2.6410538e-05 100,358.74442,149.70177,136.09122,237.34181,2.1234664e-05 100,0.9969881,376.34384,20.020008,118.69238,1.4848594e-05 100,4.340775,124.840866,57.80874,205.16524,1.1988803e-05 100,3.4038966,234.17957,57.19492,237.46024,8.454288e-06 100,3.1813395,397.294,57.06093,95.08194,8.2091e-06 100,1.0370557,240.87163,20.412941,132.95927,7.294171e-06 100,599.9083,23.170652,38.668762,195.16061,3.0960425e-06 100,1.912124,14.247393,36.047382,77.92955,3.0588346e-06 100,299.61755,4.7143035,85.78516,177.13226,2.1687863e-06 100,611.6601,1.37486,27.486572,62.797718,1.8083806e-06 100,0.7672673,3.8061395,19.782246,49.734936,1.5868421e-06 101,501.53824,224.06972,45.574554,104.87303,99.96781 101,241.351,214.55122,35.337357,95.2386,99.899956 101,267.6708,214.03645,35.772583,95.01347,99.88746 101,406.4832,220.57181,27.089966,57.890472,99.410866 101,68.79021,213.52771,39.428513,82.43167,98.7265 101,124.06347,217.23524,39.007164,72.38341,94.72208 101,91.58501,213.25009,36.450546,72.69336,3.595855 101,470.03818,212.08983,26.407318,60.444473,0.4849419 101,608.7966,332.37305,30.350098,103.997986,0.30800325 101,607.9049,178.48862,31.24176,172.00467,0.01019487 101,231.99469,183.42137,97.88455,170.97255,0.008698983 101,587.80554,236.99866,50.64685,241.21918,0.004010911 101,607.4755,435.5231,31.671143,71.392334,0.00013018046 101,615.2721,46.350803,23.874573,77.80936,0.00010909399 101,460.64032,159.85765,133.63959,224.75002,8.3960644e-05 101,1.0449536,342.2115,19.847982,133.16217,2.2409547e-05 101,1.3289787,116.86617,19.021418,128.03134,1.823399e-05 101,3.4661036,254.11084,57.292507,221.68198,1.2967351e-05 101,359.54446,149.16455,142.06598,234.01135,1.1113501e-05 101,1.1733139,242.988,20.248598,133.47629,9.770979e-06 101,599.15826,22.883177,39.988403,193.88406,5.845847e-06 101,1.7627182,417.05423,35.35366,79.28296,4.2035763e-06 101,1.2307699,25.326935,20.327522,122.01526,3.0958718e-06 101,611.4285,0.9503418,27.71814,63.319748,2.167393e-06 101,298.6468,1.8389388,85.49701,174.23375,1.2108125e-06 101,0.68871504,3.1001694,19.836607,49.188274,1.0071473e-06 102,535.86914,234.52148,68.25433,186.19376,99.96055 102,476.19122,227.08131,39.800232,89.47777,99.95691 102,247.0661,213.5261,35.7836,91.381714,99.76587 102,221.1387,216.32906,35.11194,87.04451,99.73443 102,87.1197,216.19098,40.45855,84.812225,98.65912 102,147.53603,216.81172,36.622345,81.305435,95.69468 102,421.35193,218.37897,26.226196,55.950806,83.17077 102,133.9843,208.44086,29.791748,82.9252,13.774437 102,464.3001,210.78203,32.055786,79.76497,1.7266923 102,110.94133,208.84164,31.054352,83.70599,0.46726367 102,566.77057,320.92728,38.424805,97.884735,0.10530499 102,538.338,316.7111,31.347534,95.52927,0.028773662 102,104.77844,176.09639,79.60361,150.40535,0.011293785 102,197.18892,194.96211,84.36247,144.27815,0.0036451966 102,600.0424,179.72246,37.608826,189.15742,0.00086780736 102,431.63568,164.7502,162.15112,246.88731,0.0008540047 102,614.89685,46.297493,24.249817,76.0747,0.00017420112 102,584.12384,390.28012,54.618286,105.58618,0.00013796952 102,607.7982,438.45648,31.34845,68.97864,0.00010780625 102,393.38428,169.58424,98.72833,187.59895,2.267262e-05 102,1.1162866,343.1584,19.929075,132.62057,2.0307061e-05 102,1.2453939,117.66568,19.003977,128.64818,1.8677578e-05 102,1.0846493,256.55252,19.9852,135.03537,8.250447e-06 102,3.3278322,397.01523,57.418434,93.991394,8.201744e-06 102,1.0491756,440.796,21.597631,61.342102,3.0220108e-06 102,1.76049,179.99388,36.529873,177.38982,2.5738623e-06 102,3.060192,22.192423,53.621334,107.72271,2.5079933e-06 102,611.4791,1.1151595,27.667542,64.11597,2.166e-06 102,0.9651856,12.639542,16.73768,77.06606,9.912605e-07 102,298.6182,2.7824218,84.99582,177.87633,8.683543e-07 102,549.9968,268.33466,32.083557,92.270874,1.0126171e-07 103,466.227,232.31776,62.831543,172.67546,99.97199 103,162.67747,215.47318,36.74788,91.51996,99.90752 103,218.68901,218.12442,34.58383,87.47803,99.74018 103,446.81396,226.70178,35.15335,86.94382,99.724846 103,122.574615,211.59607,37.892883,94.67963,99.72377 103,200.28134,216.41553,29.368744,87.50781,99.500305 103,434.75266,219.12657,25.378357,49.822006,81.55401 103,106.12058,224.43953,32.00225,84.998825,23.839314 103,146.88486,213.27574,25.76233,74.5901,0.18303485 103,486.0577,235.06029,29.066437,61.228592,0.05223261 103,427.5985,205.83482,74.56662,144.64973,0.044447567 103,482.76434,312.78888,33.367798,88.09772,0.009026782 103,97.482475,173.65016,95.77839,175.8138,0.0050018737 103,142.80026,142.07048,153.11307,234.61522,0.0010165236 103,600.0209,188.96255,38.636963,205.8154,0.00031592383 103,585.0695,394.0769,53.950806,103.29947,8.536446e-05 103,1.2137345,117.105095,19.349264,127.49064,2.4846207e-05 103,1.100013,382.1111,20.150646,111.78671,1.2115485e-05 103,3.399795,397.43463,57.361984,94.815704,7.6270835e-06 103,1.7199919,298.4911,28.84131,152.53653,6.6753005e-06 103,598.72876,25.015568,39.973267,203.20538,5.17248e-06 103,3.0555632,23.152407,53.609287,108.76198,4.9969194e-06 103,1.7766976,150.3579,35.397526,178.28801,4.766548e-06 103,611.89075,1.4280046,27.25592,61.59166,2.5067975e-06 103,1.0371972,14.130277,17.190674,75.024055,2.0005384e-06 103,297.94675,1.0667773,83.489716,178.19041,9.267309e-07 104,403.03412,235.11806,63.75,160.05602,99.96255 104,121.50271,208.07887,40.09324,109.40285,99.91404 104,153.33707,216.04375,39.5215,100.53487,99.90627 104,94.5576,214.44418,38.56334,109.383545,97.29857 104,82.53107,216.00478,29.38739,62.186417,88.035736 104,396.0561,223.09224,38.110657,96.14757,68.19268 104,427.89755,215.66164,24.76828,48.67354,6.0900135 104,104.74186,222.1743,20.633224,52.770584,0.84224576 104,419.9334,323.759,35.09854,68.26602,0.8399607 104,91.13012,183.201,100.77067,161.19499,0.021978378 104,610.1762,190.03604,28.970459,128.75223,0.0008329771 104,609.2429,112.31268,29.524597,135.62105,0.0006433943 104,598.4185,411.92322,40.72815,86.89804,8.796097e-05 104,1.2925277,124.863464,19.690111,122.77016,5.4115488e-05 104,1.1003565,320.71158,20.18973,133.9949,1.5360843e-05 104,2.2283204,158.17519,36.278545,189.30898,7.536571e-06 104,2.9125457,393.5419,57.29639,99.61258,4.8968504e-06 104,1.0576473,242.86855,20.520796,132.68434,3.8767876e-06 104,612.4284,1.3946127,26.718262,58.69877,3.5815738e-06 104,1.0106983,441.755,21.722,60.24002,3.5724859e-06 104,2.6238804,20.86779,55.21318,116.66575,2.866448e-06 104,1.1068083,13.023725,17.457933,82.78405,1.6439103e-06 104,271.83136,0.0,84.80151,179.63954,1.5399575e-06 105,311.91882,225.84735,60.178467,169.42667,99.95005 105,99.85802,212.76251,46.517746,121.676056,99.910286 105,68.73094,211.62968,47.440704,120.571976,99.89026 105,16.581171,218.1529,54.502914,122.79355,98.253044 105,377.95132,213.7079,34.889374,59.95381,93.960655 105,342.15466,216.90689,27.879059,51.623016,31.992588 105,4.621937,207.56392,35.66732,95.99977,7.8066134 105,43.720184,213.83363,30.689377,74.40117,1.3096719 105,24.670317,215.14026,25.643946,66.491455,0.3914612 105,36.561333,187.22858,114.123924,172.45871,0.15778135 105,125.46861,226.75449,36.164474,74.16156,0.07043241 105,329.6942,324.5807,30.029175,63.22168,0.041705523 105,609.87854,180.5299,29.268127,113.16821,0.0017224032 105,1.4869646,36.838062,39.39883,300.29755,0.0002734866 105,600.82556,321.75558,38.321106,166.10016,0.00023595394 105,607.4043,434.03693,31.74237,73.23361,0.0001034781 105,1.064253,229.66652,19.706766,156.42015,9.873744e-05 105,0.5980827,331.71188,20.403746,143.51672,1.7272028e-05 105,610.6717,1.6327702,28.474976,58.895435,1.4080867e-05 105,2.4304607,17.15179,35.156097,75.768616,1.1301106e-05 105,1.1353898,441.47537,21.343765,60.027832,4.144496e-06 105,3.3544939,393.37033,56.750534,99.749054,3.1231896e-06 105,210.82536,0.0,83.91078,180.62633,2.1318053e-06 105,159.63225,4.055505,46.706543,60.350983,3.1981166e-08 106,121.239365,236.7962,85.34656,175.32266,99.934395 106,204.43973,216.58516,45.51793,66.69963,99.22879 106,281.2077,222.70644,26.586456,55.47313,85.42755 106,165.76706,227.94264,42.628036,86.53322,83.78851 106,81.84867,251.00706,24.313614,47.185562,1.5258247 106,604.66205,202.26668,31.803406,66.7242,0.7816599 106,145.30247,298.6356,38.08824,103.025665,0.1607514 106,21.127777,246.02165,28.421722,49.999954,0.007774608 106,100.38849,246.60745,23.737633,51.597443,0.0067024594 106,586.3289,129.59137,51.52179,179.60495,0.002684823 106,1.931849,241.07547,32.064255,77.53241,0.002679886 106,2.9744647,113.7939,55.991814,242.42714,0.00055266207 106,1.0971875,124.23172,23.584808,180.76617,0.000414167 106,606.44635,437.9669,32.700317,66.86124,0.00041081852 106,1.8086125,53.95163,31.086266,159.23187,0.00029879654 106,599.3558,277.3973,39.790894,199.974,0.00013053924 106,0.88804036,285.85568,21.327152,118.871216,3.672045e-05 106,234.5316,147.65096,138.61098,227.26451,3.4510773e-05 106,133.1187,267.69235,31.62259,72.753845,1.6168695e-05 106,0.6654142,375.45734,19.622057,121.36752,1.2944123e-05 106,610.7899,1.2665788,28.35675,59.002686,1.13709875e-05 106,0.92179364,14.536309,19.666895,88.119095,1.0932192e-05 106,3.3478744,398.59497,55.971127,97.09265,2.8227723e-06 106,65.395805,0.0,90.49717,238.77219,2.1267206e-06 106,1.0957161,4.682344,52.446083,63.439186,5.614649e-07 106,45.98114,7.505005,43.233902,48.15691,2.0985725e-08 107,15.752784,208.56541,56.26731,77.57698,28.144703 107,118.43106,210.4804,42.86499,66.45015,2.2659569 107,522.1123,184.68683,35.53656,64.1781,0.30389476 107,497.49475,225.46326,21.745667,45.656982,0.035747293 107,602.9216,162.87543,33.635193,77.14148,0.02523741 107,97.30854,197.30513,39.29206,74.93062,0.018633518 107,482.05304,197.96472,31.215088,68.64337,0.011924545 107,59.98241,221.3856,24.487972,48.036057,0.0046388586 107,615.91327,193.5501,23.233398,90.79744,0.0021573785 107,587.9996,144.688,50.184875,247.7115,0.00075441884 107,614.7162,110.328026,24.430481,93.121086,0.0002359483 107,1.5735645,195.76863,19.868269,114.171585,0.00022862703 107,610.93616,357.92096,28.21051,132.77441,0.00015733861 107,3.691527,188.3747,58.133408,236.32751,8.94256e-05 107,611.3265,270.508,27.82019,149.70291,4.2462896e-05 107,0.8169914,383.77365,19.138058,112.63052,3.3656688e-05 107,301.85507,442.19434,43.911224,55.499115,3.0600608e-05 107,169.35785,66.0246,35.471817,88.842834,2.0819183e-05 107,2.1350408,84.51776,32.869293,205.53137,1.9804438e-05 107,0.57634765,265.59015,20.012602,152.63297,1.566753e-05 107,3.5226693,392.89636,55.849102,99.967926,1.5104045e-05 107,1.2549772,73.546425,19.777489,100.33163,1.45205e-05 107,181.57445,424.56238,78.12053,73.27295,5.680208e-06 107,118.47164,424.40195,77.32975,74.054565,5.4218494e-06 107,600.2729,3.1459637,38.87378,228.43492,4.787669e-06 107,281.53775,399.1194,110.98584,99.6886,2.952434e-06 107,611.5784,0.19893555,27.568237,61.84587,2.6189912e-06 107,340.2708,427.3337,79.72159,73.236725,7.1322415e-07 107,2.5152247,13.467324,57.953033,120.38584,5.2596942e-08 107,0.8447689,9.655762,11.708499,87.36394,3.7343014e-08 107,1.1542537,1.1466243,20.747633,46.76088,1.0909758e-09 108,9.728203,209.243,36.347286,55.469254,0.7368946 108,464.50906,213.87032,35.36438,63.7899,0.083414465 108,189.0358,199.15431,29.265656,45.954132,0.013304168 108,438.88986,207.2351,44.812866,73.97684,0.0012166054 108,624.81384,215.3212,14.332825,46.24414,0.0011318281 108,617.21906,245.57262,21.927612,76.371994,0.0008909141 108,610.00525,165.99869,29.141418,138.06323,0.00044747445 108,624.5841,186.90596,14.562561,48.679703,0.00043797758 108,453.40823,165.13498,38.412872,86.78464,0.00042522652 108,619.27905,125.183235,19.867615,61.017647,0.00025224825 108,555.13727,185.8696,24.742554,52.68077,0.00023194718 108,610.578,267.9458,28.568665,138.82849,0.00018913335 108,1.5777109,181.34636,18.31155,114.87984,0.00016051698 108,607.8364,441.34232,31.310242,65.49161,0.000117533804 108,603.812,58.74157,35.334656,170.32431,7.945506e-05 108,531.49963,169.31334,36.54834,73.80333,7.420647e-05 108,4.2792726,191.75188,56.069515,242.70024,3.7459195e-05 108,581.8574,235.57863,38.135254,61.94478,3.5597233e-05 108,0.74793863,425.6299,13.712582,46.44467,3.499535e-05 108,585.8647,320.0838,53.25067,167.4295,3.3002503e-05 108,1.035901,280.42572,18.370588,78.32974,9.584092e-06 108,0.96333987,327.96875,19.946217,136.31012,9.040832e-06 108,79.08443,67.32678,40.9293,107.335266,5.521525e-06 108,3.2393572,393.1831,56.790627,100.503876,1.8967468e-06 108,1.7377474,80.66113,18.008783,162.59453,1.4033888e-06 108,507.85938,425.05673,81.39087,73.892334,1.3621166e-06 108,468.0588,422.8542,73.631134,74.86853,7.693427e-07 108,612.371,0.6157487,26.775696,63.2714,5.0318454e-07 108,3.4298487,18.632526,58.900986,112.29016,5.4243067e-08 108,1.7774805,21.97918,17.305632,116.40366,1.7968436e-08 108,2.0797298,10.115814,29.890442,54.764824,7.543147e-09 108,12.922634,3.2903662,42.38862,45.045635,2.2359756e-10 108,78.77979,1.9194841,45.61383,47.453808,3.3928856e-11 108,47.159576,0.8647445,45.988335,48.854652,2.55501e-11 109,454.5731,211.1778,41.88376,71.36383,0.10806146 109,622.345,162.05827,16.801697,49.3161,0.03125962 109,12.869265,211.2906,24.959543,59.28926,0.010767825 109,603.41266,133.90417,35.565125,79.91695,0.005177718 109,398.82748,201.15564,24.587616,49.059296,0.0036652754 109,622.9624,120.1067,16.184265,46.17457,0.0012858682 109,1.8610108,192.11987,19.026825,81.65985,0.000575329 109,617.1957,268.7284,21.950989,76.10791,0.00053821533 109,527.34863,169.76193,27.626343,59.69789,0.00052657904 109,42.00081,147.58968,40.034256,74.394135,0.00029977356 109,621.64606,244.81865,17.50061,51.875168,0.00029709906 109,610.57556,155.73547,28.571106,160.06244,0.00028072126 109,600.1348,290.71063,39.01184,186.73865,0.0002361347 109,2.7867873,155.09401,32.710056,171.8011,0.00013239378 109,592.9193,235.04341,27.348938,47.289474,7.039342e-05 109,372.0198,202.79352,83.17969,192.27228,6.105404e-05 109,5.3454947,187.6228,77.81263,273.72824,5.322938e-05 109,608.5967,439.88235,30.549988,64.84192,5.1990668e-05 109,583.6077,46.52782,54.52997,214.71434,4.8723945e-05 109,2.3605762,66.82362,20.688398,87.15109,2.3831599e-05 109,1.0392709,380.55167,18.449274,74.24414,2.0106454e-05 109,0.9004037,276.7693,13.851398,51.391388,1.9031944e-05 109,1.2411622,226.3377,20.586748,143.19022,1.7150043e-05 109,0.7239079,337.38193,13.92184,50.14456,6.2145446e-06 109,2.86437,102.16844,38.325768,119.9474,6.1885216e-06 109,3.490031,338.53482,57.1369,147.78864,4.7358276e-06 109,0.8951286,419.39365,16.0008,81.43146,2.5527609e-06 109,1.2134115,0.0,65.457214,285.54688,1.5966666e-06 109,599.61957,5.7320476,38.847717,74.39218,7.614677e-08 109,1.3172176,10.072087,14.848027,86.721886,8.418778e-09 109,0.9894759,1.7673275,64.853455,49.926807,2.111064e-10 110,455.26584,193.38438,46.579803,106.15251,2.081718 110,365.50555,196.05246,26.21051,45.172592,0.5497079 110,173.37253,187.16846,24.784424,47.73236,0.014069622 110,433.8195,179.25098,26.107239,72.64624,0.010225888 110,605.61,234.03053,26.86029,49.462173,0.0066270195 110,463.28824,185.6783,23.929596,54.037247,0.0056161666 110,38.71426,163.53482,37.97729,79.09415,0.0045663854 110,482.19885,235.33472,30.088013,61.312103,0.0038364383 110,517.0361,168.76312,32.9469,66.005844,0.0029242686 110,610.0873,215.27628,29.059387,134.04279,0.0013276375 110,615.6551,143.76462,23.491577,87.13492,0.00021636277 110,4.4692287,178.30672,58.724846,241.4045,0.00013930978 110,572.13403,150.58833,66.69867,230.74281,0.0001338825 110,617.58386,345.85406,21.562805,80.781494,0.0001101379 110,1.0850643,396.24512,18.27654,73.39212,8.225744e-05 110,2.2114518,118.04132,29.476622,153.147,6.962549e-05 110,601.2635,321.099,37.88318,162.49225,4.5475692e-05 110,608.83514,438.5408,30.311523,64.755554,4.1103467e-05 110,1.4737525,85.42082,19.705717,90.16417,1.9962852e-05 110,1.8718702,286.9624,34.4609,199.51068,1.9233124e-05 110,0.92528486,265.07108,18.750605,76.13379,1.715701e-05 110,611.40247,33.50325,27.744202,163.42776,8.796033e-06 110,0.7250521,308.54236,18.581156,77.59195,3.689659e-06 110,2.9309132,426.75714,52.275383,70.4111,1.5479972e-06 110,613.0871,0.0,26.05957,60.83063,1.1293613e-06 110,1.682679,23.788242,30.810364,125.04173,6.233513e-07 110,1.2192587,13.372142,12.603369,77.28726,4.6692596e-09 110,1.4692595,3.3139405,32.332153,45.541794,1.1405269e-10 111,339.96677,201.20197,25.231781,45.634766,0.7643504 111,485.73633,179.90912,50.67639,133.38043,0.2275679 111,482.76224,200.92319,27.042511,55.26996,0.0156171955 111,127.10758,194.71867,29.671623,49.650238,0.013296507 111,514.679,167.53401,35.0672,76.855835,0.0086686425 111,617.8139,253.79222,21.332764,75.923965,0.0010479772 111,397.576,228.55353,35.029724,79.09622,0.0010292566 111,497.77872,169.95996,26.56668,65.106735,0.0008869586 111,617.11053,372.01736,22.036133,80.39795,0.00043758264 111,0.727358,231.19522,13.700943,51.437897,0.00039858866 111,0.86387044,162.9324,14.399163,58.388275,0.00039572333 111,1.1531242,178.41205,19.522814,131.64587,0.00033604843 111,602.95197,244.19147,36.194702,183.4938,0.00015598933 111,410.89694,228.95747,40.980103,129.00966,7.004867e-05 111,613.77594,414.20984,25.370728,86.89465,6.1156425e-05 111,474.726,245.04079,37.949585,83.49196,5.89327e-05 111,610.5934,136.82045,28.553284,133.18071,3.648657e-05 111,1.2341398,388.76266,17.610336,76.844025,2.5919926e-05 111,571.8849,360.79453,67.26178,121.73901,2.1826807e-05 111,4.691792,167.01782,54.345695,216.83246,2.0497662e-05 111,2.4321175,95.49955,32.832127,179.13925,1.3704327e-05 111,0.82392985,329.2411,18.550634,79.56128,7.749364e-06 111,493.73627,320.11624,41.888977,126.391205,6.7062856e-06 111,0.98668945,279.1682,18.451927,74.76984,6.312915e-06 111,1.398326,89.48104,18.643564,80.12646,6.018738e-06 111,1.8948072,316.91302,32.86704,168.54819,5.076384e-06 111,518.82697,324.56192,42.57953,125.35184,4.0539057e-06 111,585.0635,45.22633,53.486572,240.96361,2.4692706e-06 111,2.9836361,423.4723,52.242916,72.285706,2.4453486e-06 111,613.26556,0.0,25.881104,61.416603,1.1849338e-06 111,2.049538,23.9442,30.249268,133.66159,4.624247e-08 111,0.9115735,13.412986,8.865419,79.17529,2.0415893e-08 111,1.5181731,5.552832,21.039047,58.951126,1.7467051e-10 111,424.6723,0.0,42.184174,45.56044,7.799878e-12 112,1.6345476,197.90742,39.65246,77.402115,0.32116094 112,23.462576,223.58478,30.080778,51.21747,0.24691913 112,602.44006,219.61774,36.54413,88.66986,0.22965194 112,595.4905,331.18484,32.60956,60.650146,0.053217977 112,586.38025,186.67238,50.526,237.79164,0.00817329 112,620.9587,331.15106,18.187988,64.14072,0.005606695 112,622.1283,223.72464,17.018372,53.414215,0.004750269 112,470.68646,133.34996,35.613037,84.07303,0.0007710404 112,610.30804,314.82852,28.838623,154.1514,0.0005357904 112,607.6251,61.731323,31.521545,146.45142,0.0004651933 112,605.234,424.69504,33.91266,82.669495,0.00045663927 112,619.5217,109.45653,19.624939,61.118256,0.00039232156 112,2.7565837,153.40395,56.669083,187.66182,0.0003631671 112,579.82074,337.63004,29.181763,53.601807,0.00029998118 112,544.67554,190.09657,27.015503,54.008087,0.00018875458 112,1.2096509,228.11073,20.006216,89.07802,0.00016855016 112,445.3164,233.78464,61.014008,159.73169,5.8246114e-05 112,1.329043,138.5388,23.199005,113.21402,4.5295463e-05 112,562.72034,380.96585,76.244385,110.45264,3.866509e-05 112,461.15714,239.35945,108.86636,228.79118,3.2264572e-05 112,582.9043,0.0,56.159973,282.01938,3.0628053e-05 112,452.38205,419.20474,88.99722,81.198395,1.732657e-05 112,1.2154777,385.02502,17.901585,74.15015,1.704211e-05 112,0.9520606,299.36774,18.539274,76.57147,9.353332e-06 112,295.20398,137.46445,81.96805,151.91296,9.231394e-06 112,485.84158,381.63657,108.41324,107.06137,6.1167034e-06 112,1.2547616,439.5639,21.763515,63.92914,3.5315927e-06 112,1.867727,322.03397,33.286694,166.36505,3.4618722e-06 112,609.98755,4.1072006,29.159119,92.88284,2.78449e-06 112,546.408,434.5781,43.31604,66.354004,1.7222972e-06 112,2.4550946,17.634558,35.99095,161.09956,9.7809085e-08 112,1.0465902,12.400606,10.1747465,82.87034,5.2936215e-08 112,1.6772608,7.051455,31.849216,62.913807,5.5509033e-09 112,509.52112,4.076304,43.35559,45.217793,7.059575e-11 112,585.59973,0.408431,43.940063,50.460495,2.3193319e-11 112,480.30948,2.596076,42.167328,47.08201,1.2462887e-11 113,597.8165,174.50084,35.530945,82.999344,3.7889264 113,23.137928,211.71532,44.938465,59.11412,1.5376903 113,571.7303,166.30222,47.458862,115.63916,0.20544864 113,331.459,207.56409,35.269775,56.865265,0.13109486 113,49.954144,223.02495,24.424648,46.76979,0.10092902 113,619.66156,189.67093,19.485107,73.116516,0.082754 113,539.1018,179.9935,37.770447,91.73926,0.06255538 113,561.81134,175.40659,28.39917,81.15143,0.04723735 113,265.65277,226.19807,20.666504,50.006485,0.019059733 113,581.6473,150.64827,55.26758,269.50262,0.006639202 113,528.61957,158.54797,78.50488,181.12619,0.0052192006 113,1.6066797,181.33566,19.098297,83.000885,0.001173183 113,612.5121,225.14497,26.634583,125.05217,0.0008315666 113,570.53577,404.86908,67.50427,97.026825,0.0005780783 113,610.7073,287.51227,28.439392,160.80832,0.00040908816 113,620.8385,70.73842,18.308167,57.26023,0.0003651529 113,3.9705095,135.59961,58.420937,207.68744,0.00029464703 113,1.3866317,214.7113,17.883135,127.612335,0.00022159377 113,270.38525,211.06337,42.46634,79.81984,0.00018430933 113,1.0290047,390.61154,18.29502,75.417206,4.0550472e-05 113,1.7980013,245.56091,34.37805,191.4412,3.3720626e-05 113,552.7805,225.98573,42.730835,92.20854,3.1107764e-05 113,608.247,43.111126,30.899658,164.23505,3.1086707e-05 113,280.2797,147.03447,87.35516,145.25731,1.9431205e-05 113,457.02023,420.24606,84.11966,78.47827,1.7146183e-05 113,511.93835,415.89432,80.362854,80.531586,1.2133491e-05 113,0.7221102,310.23645,18.3382,76.513855,6.1214187e-06 113,1.1618644,439.29944,21.863874,63.69754,5.505026e-06 113,3.5353777,394.4565,55.298386,100.253876,4.557529e-06 113,2.0527785,86.567726,31.835554,180.53577,4.1899366e-06 113,610.6948,2.0808823,28.451843,60.127556,2.1792898e-06 113,1.6945093,24.685104,19.9663,136.9793,1.396973e-07 113,1.1143746,13.992823,12.41293,79.816734,7.783339e-08 113,2.9247136,20.909899,59.079247,109.875305,1.8140893e-08 113,1.2545768,7.616426,32.0111,57.556053,1.8666149e-09 113,546.3506,1.2640234,44.261353,49.9142,4.577079e-13 113,484.0426,3.6274903,43.978394,48.45852,5.703939e-14 114,534.3806,230.45068,23.766724,46.51355,5.168114 114,573.18097,229.08339,25.05066,52.329514,0.063916214 114,557.8685,229.69925,23.03064,48.04245,0.013179555 114,608.86694,361.8475,29.800598,63.96646,0.0031867705 114,602.03357,209.7806,36.349365,182.94133,0.0022225785 114,620.60944,263.8705,18.537231,63.021576,0.0013963412 114,114.10817,221.50433,24.539093,46.69403,0.0008570055 114,622.1506,222.83342,16.996094,52.676743,0.00071373116 114,484.92886,156.0812,39.6705,130.44763,0.0007128475 114,247.5242,231.10745,32.07074,80.57205,0.00069292623 114,622.00885,155.80836,17.137817,54.47641,0.0006075327 114,1.6615251,195.1288,18.36156,75.055466,0.00054592034 114,621.4869,308.37393,17.65979,61.87393,0.00024114549 114,611.2216,143.14899,27.925049,139.33847,0.00023723078 114,586.92377,381.5501,51.682617,123.423645,0.00017964192 114,127.81793,230.93742,40.186584,97.841354,0.00010523372 114,263.08194,212.25383,39.069977,97.52553,8.203667e-05 114,2.129847,161.09125,33.59187,146.4137,7.221817e-05 114,559.767,436.84418,43.632385,66.11374,4.420528e-05 114,1.2529118,238.35991,18.789171,129.13173,3.5865167e-05 114,0.7627222,426.188,13.410993,46.287384,2.5010053e-05 114,4.3740644,196.99461,56.16703,209.39638,2.4922718e-05 114,499.25815,331.45584,86.7836,143.65271,2.3974755e-05 114,262.6832,135.12001,80.37097,167.99486,1.5798274e-05 114,532.0983,430.7202,45.48285,70.38281,1.4686187e-05 114,610.7478,41.788948,28.398865,141.83417,1.4469934e-05 114,0.94781333,385.71957,18.297525,72.11096,1.2021857e-05 114,472.11856,408.71054,74.66092,86.40927,6.6033217e-06 114,0.7725871,329.103,18.348644,72.45514,6.315035e-06 114,1.7453955,70.72441,21.767908,159.34077,3.2683392e-06 114,1.2322005,440.3746,21.61403,62.67227,2.6737705e-06 114,3.6273568,330.95612,56.405495,152.46317,2.4226192e-06 114,13.653614,392.67685,121.711655,100.04254,1.0947002e-06 114,582.9731,13.639961,56.120056,244.61255,9.318427e-07 114,296.94806,423.18863,73.14798,75.96826,7.2227033e-07 114,1.7613949,50.424408,20.203178,76.33054,6.3991797e-07 114,126.33225,421.92093,75.4571,74.67044,6.2077186e-07 114,168.06444,425.33603,72.25252,73.3085,6.0559876e-07 114,256.6416,424.11356,73.265686,75.28061,5.14424e-07 114,215.95702,428.1802,72.20009,71.28763,4.3782765e-07 114,1.7264323,25.858309,59.332294,107.939926,1.6284802e-07 114,600.2864,4.8257685,38.795532,84.440384,3.2983266e-08 114,1.1547445,7.4434767,20.474821,57.20245,2.9166178e-10 115,302.72357,206.89586,36.532074,52.54048,0.116229594 115,595.92004,182.99995,39.66162,102.90236,0.05887872 115,77.392845,214.68513,31.889854,53.75569,0.050517112 115,571.357,227.41328,22.83258,48.009323,0.041811895 115,58.692978,205.61884,27.211739,50.422577,0.02790688 115,10.73494,193.8353,34.51046,69.27377,0.026326342 115,620.6403,213.91695,18.506348,61.30464,0.024887681 115,499.54184,209.74576,23.516754,51.359833,0.015549483 115,46.12006,213.12769,25.778835,48.933167,0.0015869178 115,610.2197,213.2728,28.92694,141.67825,0.0007583451 115,518.1061,79.06338,21.667114,47.704247,0.0004477921 115,584.2279,388.84058,53.461426,101.55115,0.00039370157 115,1.4939299,203.46147,17.719292,76.2885,0.00036948678 115,570.7058,129.44476,67.3891,223.11255,0.00032571028 115,2.453846,156.70586,34.60571,173.83287,0.00021323173 115,610.82733,85.71124,28.319336,170.8057,0.00020232958 115,610.40765,300.4621,28.739014,154.08078,9.7773525e-05 115,230.00833,212.79869,39.540344,99.257,2.9847479e-05 115,4.11646,202.57306,54.953186,239.20303,2.128466e-05 115,0.99588543,258.49747,20.292854,135.59015,1.5994625e-05 115,257.7526,144.7137,82.54541,148.2076,1.4752233e-05 115,0.87297285,343.80173,17.972095,69.82364,1.0480031e-05 115,1.1976871,141.19563,19.480576,90.541275,9.6231815e-06 115,221.88155,177.10052,83.048965,166.74277,8.478187e-06 115,1.1101344,371.99622,18.96025,123.95828,8.429105e-06 115,1.4927564,92.2005,18.287388,76.62114,6.5539834e-06 115,2.9199886,453.01,40.711777,51.202698,4.063567e-06 115,3.1319826,391.6355,55.126648,103.79675,2.5102424e-06 115,482.57913,280.98178,40.3248,96.763306,1.6174919e-06 115,583.6544,15.73068,55.49225,110.843094,7.405007e-07 115,304.33038,431.46964,71.971344,67.696014,6.410321e-07 115,262.2076,430.4212,73.469574,69.17047,4.820552e-07 115,2.2010384,48.320175,30.347778,165.25052,7.612977e-08 115,1.1390349,10.398848,13.078688,81.07798,6.658941e-08 115,2.4373536,16.524137,58.231056,107.43291,5.4038594e-08 115,583.03925,0.0,46.34552,48.548847,3.886775e-10 115,557.8185,0.0,45.845337,47.037388,5.270853e-15 116,86.62568,210.00287,27.882034,45.917084,4.440341 116,10.096628,199.30864,48.285942,92.97069,0.16107775 116,614.47455,65.23679,24.67212,72.42866,0.018427063 116,49.902287,213.9579,29.78278,61.48546,0.011633438 116,35.089836,213.65358,24.604343,46.269882,0.0082252 116,609.0206,209.65067,29.271729,76.03412,0.006903679 116,606.5821,52.733433,32.564575,188.99014,0.004810686 116,17.184698,206.16432,24.47381,46.488464,0.0043873056 116,571.7826,100.49577,65.84943,254.43486,0.0016631361 116,219.16644,201.3095,34.03694,50.457306,0.00058899267 116,614.9625,358.71844,24.184143,87.10443,0.00053216406 116,599.7824,267.84082,39.009827,204.0694,0.00038934682 116,1.4871428,260.5396,18.066889,68.700714,0.0002231659 116,584.3201,28.863724,54.826538,100.23793,0.00018788553 116,1.3576277,189.63622,19.744448,82.73195,0.000160867 116,5.639512,174.02893,76.02289,263.1716,8.1550854e-05 116,1.1963981,405.7371,17.607096,71.24536,6.5460576e-05 116,1.747028,234.77785,30.410435,155.1627,6.461747e-05 116,207.6573,206.693,39.973145,114.63321,5.970477e-05 116,613.6951,414.88776,25.451538,88.667145,5.5256332e-05 116,2.7878711,83.12799,40.046993,222.27567,5.3258525e-05 116,1.4488989,320.00055,28.16273,152.88055,1.6536378e-05 116,577.70465,337.90256,45.651062,101.77536,9.560048e-06 116,241.72188,129.5838,84.987015,154.10406,5.5731693e-06 116,3.5774057,394.1464,55.85617,93.55206,4.522717e-06 116,1.9823365,59.570377,21.532684,116.2695,1.2286046e-06 116,423.66306,421.4855,72.427795,74.45218,7.87015e-07 116,2.3137581,16.050638,55.343052,113.245964,6.1396776e-08 116,1.0974532,13.082777,11.927377,77.83014,2.7333815e-08 116,1.3056787,3.7638202,32.175915,45.680912,2.3855022e-09 117,11.411379,221.75243,32.434875,48.839188,0.024727741 117,607.99133,231.673,31.155334,71.04556,0.008703697 117,38.707047,220.15714,27.492668,50.421722,0.0077580707 117,5.2068653,208.16864,54.498276,242.32007,0.0008621882 117,601.86774,254.60008,36.991577,197.26302,0.0005958116 117,395.7053,322.1805,64.914,163.0682,0.0005898595 117,219.5664,224.2186,31.455582,69.69855,0.00046068916 117,616.64056,270.62698,22.506104,91.09622,0.00037989338 117,617.0563,61.440235,22.090393,79.30025,0.00037647178 117,616.5262,173.76859,22.620483,94.162384,0.0003076792 117,4.866185,142.4975,76.125755,168.86734,0.0002991655 117,616.3192,368.14185,22.827454,84.07425,0.00026712075 117,1.6534994,204.24358,19.674255,131.41035,0.00025711986 117,620.63885,26.583038,18.507812,57.88952,0.00017042513 117,613.04095,411.90848,26.105713,87.74405,0.00012871536 117,10.500949,344.69458,28.196106,60.850525,0.000102168146 117,585.9469,120.42758,52.480408,216.35196,8.659817e-05 117,583.62573,13.045216,54.970398,99.62007,3.8567276e-05 117,572.5174,357.21127,66.2666,126.04837,2.8459055e-05 117,1.6013037,339.66364,19.304905,83.08215,2.6419963e-05 117,1.3972827,400.61743,18.057034,78.23978,2.497892e-05 117,2.921478,340.23526,40.564003,147.74033,2.3346372e-05 117,351.41492,263.39438,82.47037,202.73221,1.9826248e-05 117,605.5585,1.6082813,33.588196,62.995754,1.8071467e-05 117,1.4769312,149.16685,20.489645,89.35701,1.705401e-05 117,1.5519694,448.42914,28.63867,54.236176,5.315116e-06 117,241.70943,132.11559,84.3127,159.50706,3.9990414e-06 117,198.85101,180.45828,84.4108,150.1734,3.9949477e-06 117,419.7369,424.02448,77.62106,74.89615,2.574638e-06 117,548.47546,327.84604,44.477722,120.15674,1.8552347e-06 117,1.6587973,70.47757,34.33623,201.00781,3.6912903e-07 117,551.72516,18.913568,43.3031,119.49505,1.2843967e-07 117,1.1083935,20.97377,14.240333,118.79822,1.8078511e-08 117,2.4669695,15.298939,54.70293,122.935425,1.5413047e-08 117,569.7723,2.0307455,47.451965,52.233513,1.564425e-11 117,531.3548,2.4375603,45.62451,51.45244,1.25162485e-11 118,291.3916,213.63481,40.24164,53.860153,29.396254 118,16.79067,207.51692,34.34086,57.571884,0.106157035 118,38.774986,220.08571,29.595802,50.70964,0.016829403 118,4.195879,175.39105,60.913948,128.82245,0.0022787629 118,620.6992,186.44463,18.447449,60.175125,0.0020666777 118,621.2356,103.72249,17.911072,52.91298,0.0007834089 118,611.1399,134.38425,28.006775,139.7124,0.0006089109 118,617.4062,229.00058,21.740479,90.92239,0.00042008937 118,212.94496,199.31766,33.719635,57.46469,0.0003805377 118,620.25726,389.77075,18.889404,57.17389,0.00032960367 118,1.319847,198.11394,14.637715,62.440872,0.0003041811 118,603.0646,356.63663,36.082092,106.36401,0.00025208402 118,1.132968,270.4665,19.550102,77.2829,0.0001771872 118,1.7097493,157.04837,22.240187,143.0155,8.3027444e-05 118,608.44666,438.88168,30.700012,64.6077,6.743315e-05 118,601.3696,227.21068,37.77704,193.62386,4.9280516e-05 118,3.8555129,235.04741,48.209557,197.26308,4.8192313e-05 118,391.7209,317.3148,78.60892,169.30002,4.7552156e-05 118,611.8446,44.767265,27.302063,119.80949,2.5762205e-05 118,584.4012,0.0,54.61212,261.42026,1.4843171e-05 118,270.70822,161.83582,106.62344,210.95935,1.1365979e-05 118,241.67982,140.27579,84.452774,147.90588,9.956493e-06 118,1.6885067,320.61554,27.927914,155.6192,9.924641e-06 118,0.7325301,351.5965,13.752428,49.48419,8.712181e-06 118,1.1673104,416.8446,16.072475,80.76395,7.0348597e-06 118,191.71599,165.9928,86.81584,147.0091,4.9647515e-06 118,3.5251384,392.45444,54.82854,97.27954,3.7960576e-06 118,596.6708,6.002331,42.47589,82.34198,3.0885226e-06 118,1.5974431,10.569278,34.04308,76.15057,6.6351538e-09 118,543.2448,4.348602,45.506287,47.108402,3.7098602e-11 118,509.16193,1.0543392,44.246277,47.741154,2.9092475e-12 119,304.67163,228.67986,25.435974,49.53514,2.0372207 119,2.0882316,221.99225,23.2003,53.591766,0.01573986 119,615.3907,380.0657,23.755981,86.54028,0.00049652334 119,616.4133,175.6154,22.733337,85.284164,0.0004194705 119,617.24036,235.54279,21.906311,84.493744,0.00027671197 119,601.2925,85.19495,37.75122,195.93079,0.000236141 119,618.0112,285.42984,21.135437,81.51599,0.0001677679 119,2.1849284,194.52678,40.81363,112.69347,0.00015057245 119,585.52374,305.13278,53.197998,175.26004,0.00011380332 119,608.156,438.9874,30.990662,63.857574,9.6109536e-05 119,0.99296224,256.17368,18.593794,80.25293,6.711417e-05 119,480.92615,133.07018,28.394135,47.623764,5.1332358e-05 119,601.5767,202.44518,37.11206,194.05992,2.905636e-05 119,252.69229,146.3131,81.080414,147.60857,2.7966902e-05 119,610.2336,22.166908,28.913086,153.0058,2.6221209e-05 119,1.8122998,243.73915,32.901184,204.6371,1.9487474e-05 119,379.30505,317.20346,76.35068,167.73865,1.1558726e-05 119,0.67129475,301.943,18.79522,83.25787,1.0220795e-05 119,0.9224846,377.98563,16.976704,115.67688,9.81272e-06 119,3.9966278,132.35748,76.370056,255.11908,9.084531e-06 119,183.99632,168.9967,89.95662,149.22174,6.480866e-06 119,1.6062484,106.76816,19.356829,158.00879,5.8066307e-06 119,533.6978,330.6026,41.893555,125.525635,4.97609e-06 119,3.2830274,393.31958,55.42674,96.20355,3.0087942e-06 119,1.5158789,11.550182,34.470333,73.418564,1.3997729e-08 120,296.1477,207.17819,47.27841,76.82532,0.01378502 120,324.06918,240.81596,27.461945,49.575516,0.0024858988 120,618.43115,250.68466,20.715515,82.003845,0.00062713586 120,615.94794,386.00583,23.19873,85.99933,0.00045699775 120,610.25977,152.20645,28.886902,147.00183,0.00042747706 120,587.5205,221.49893,50.40216,241.45483,0.0002399002 120,611.5003,61.717266,27.646362,158.19144,0.00016877697 120,1.9323145,153.23648,19.551525,74.82291,9.147663e-05 120,607.8992,438.87646,31.247498,64.81802,7.794145e-05 120,0.98916996,235.92313,18.33222,79.58249,6.84762e-05 120,3.9656055,130.24757,71.937195,167.11757,3.5892266e-05 120,283.06934,177.64275,85.60205,153.53435,3.2946587e-05 120,1.2473918,397.1202,17.499874,71.59564,2.893309e-05 120,1.507854,203.08821,18.564463,66.48134,2.7097507e-05 120,1.9391626,191.53717,33.81126,175.01178,2.0845688e-05 120,0.94005376,273.2905,20.467522,140.80862,1.7243357e-05 120,0.5663554,319.30197,14.140314,51.658264,1.1366769e-05 120,226.78865,133.21796,82.26991,153.1019,6.577189e-06 120,4.9960546,192.25908,76.72603,270.63104,4.9830805e-06 120,3.2019289,392.2965,55.32827,96.069916,3.1840234e-06 120,392.39996,421.87878,72.97046,75.33612,2.933215e-06 120,586.05786,12.487891,52.81299,118.113335,4.9542683e-07 120,1.6074626,10.851739,34.137375,75.55038,1.0706016e-08 121,397.43646,234.6408,31.940704,54.832016,0.05093878 121,320.79996,204.81186,40.71228,74.27231,0.016940767 121,619.1072,188.46924,20.03949,62.744446,0.002955977 121,624.313,64.984665,14.833679,46.485207,0.0013436058 121,339.71323,244.39337,28.289032,55.598022,0.00081189 121,611.3348,209.13667,27.81189,139.0681,0.00053418323 121,608.63696,118.2703,30.509705,158.24918,0.00030084728 121,617.07983,382.41568,22.066833,83.2457,0.00029478702 121,609.79785,41.431602,29.348816,133.34451,0.00022123523 121,603.39966,271.95547,35.74701,192.18277,4.9081933e-05 121,609.14325,438.57916,30.003418,62.995026,4.8874546e-05 121,1.3966138,197.85527,18.122719,64.45122,3.9952036e-05 121,0.5683663,237.1104,13.522187,50.65767,3.9557854e-05 121,268.33044,138.47076,81.98642,144.08209,3.2173135e-05 121,0.7956836,230.97069,19.83459,138.13066,1.5842947e-05 121,0.7604533,329.34738,18.378872,76.35712,1.1295288e-05 121,0.87816,377.1596,17.020262,116.506226,9.695773e-06 121,1.3525318,87.07964,18.363243,139.87207,7.0027836e-06 121,5.5624967,203.27318,75.875,256.92493,4.67472e-06 121,3.9128907,113.85576,71.979744,170.72395,4.0744326e-06 121,612.70233,1.3565333,26.444336,61.126007,3.6976485e-06 121,1.6974244,301.07492,33.206963,179.3628,2.6551907e-06 121,2.6324432,422.32028,51.97007,71.710815,2.0234716e-06 121,413.13666,426.72284,72.66986,70.4469,5.438014e-07 121,352.52145,427.38904,72.62381,71.19629,5.301566e-07 121,454.31528,424.43463,72.73563,72.85922,5.183578e-07 121,188.65842,427.82898,72.04202,69.97443,4.3463507e-07 121,147.19539,424.39413,72.54704,73.16141,4.1730343e-07 121,2.0433073,12.35642,56.533413,129.08183,1.0104403e-08 121,0.94588464,6.0248213,18.549932,58.79125,1.6665056e-09 122,455.4164,234.4865,41.357605,77.704605,0.47996607 122,133.84857,226.36147,25.12619,45.14406,0.006937885 122,620.6046,214.59932,18.542053,62.714554,0.0030267404 122,344.96936,208.00877,40.357666,78.22453,0.0020385354 122,474.60266,269.72128,24.009949,49.06372,0.0007040698 122,66.31479,213.06506,47.529015,64.596466,0.000684542 122,610.92944,140.55946,28.217224,148.86449,0.0002505288 122,616.347,402.5479,22.799683,87.23303,0.00020960919 122,617.4645,244.18999,21.68219,91.30202,0.00018880553 122,601.71985,207.24359,37.42682,193.26257,8.829918e-05 122,458.15292,270.36008,22.851257,49.156708,4.4863235e-05 122,1.0508691,220.24886,18.243471,69.95009,3.7326536e-05 122,609.4118,7.016973,29.734863,115.158966,3.4482746e-05 122,572.19525,359.797,66.81128,127.52197,2.7703729e-05 122,0.7948405,245.66902,20.090199,138.27507,1.769738e-05 122,425.367,196.7878,102.89581,181.56654,1.7343202e-05 122,363.7601,223.61714,75.47226,160.46886,1.698043e-05 122,339.82053,122.014694,71.70007,178.42671,1.6037942e-05 122,1.0318897,399.23447,17.745493,74.13019,1.3496802e-05 122,0.6183683,340.65994,18.628983,78.750916,9.141612e-06 122,1.2042595,440.52032,21.392632,62.137085,8.640689e-06 122,1.1378589,147.1205,18.604452,74.04651,7.777588e-06 122,3.2290528,262.50665,56.308304,215.34174,6.7041633e-06 122,1.7733366,167.76639,34.438087,170.26227,6.0904404e-06 122,585.63336,18.62235,53.513306,228.50284,2.799641e-06 122,3.1129444,427.08362,51.583748,69.93503,2.6416224e-06 122,2.8973129,66.2617,59.836887,222.48009,6.466318e-07 122,1.2453622,72.08771,28.16988,140.15204,6.1664394e-07 122,49.165043,171.46037,107.73776,217.44145,4.7450834e-07 122,1.6721778,10.816208,33.857784,75.083954,4.954131e-09 122,434.58267,1.7482146,44.159363,54.434353,3.1619933e-14 123,47.10753,214.36482,31.307312,49.69478,0.35904843 123,569.12646,171.18005,67.17651,201.54736,0.007097797 123,607.78503,209.48344,31.361633,143.04292,0.0036582074 123,459.14,201.81355,42.413605,94.66234,0.0033439016 123,620.96265,161.35332,18.184021,56.9588,0.0029484967 123,621.677,253.07811,17.469666,50.942215,0.002165211 123,554.32947,232.1851,26.135864,50.943558,0.0020519486 123,611.23035,294.84937,27.91632,140.17242,0.0006273775 123,620.5801,211.05171,18.56659,66.42677,0.0004927685 123,1.3648707,207.21136,17.965384,71.372925,0.0003164099 123,421.2191,234.93037,23.938751,46.7498,0.00027600882 123,566.8743,228.44708,37.609497,71.537445,0.0001429 123,609.8641,89.44864,29.282593,154.60725,0.00012822295 123,612.2246,402.6992,26.922058,102.91916,0.00011834386 123,607.4696,7.5549483,31.677063,123.06923,7.896796e-05 123,380.51517,205.33601,73.39011,163.8415,3.889921e-05 123,0.74665856,236.6147,19.575768,137.78636,3.0331274e-05 123,572.6319,349.59448,66.127625,133.58386,2.9765959e-05 123,0.74555993,371.37625,18.13237,74.20044,2.4863368e-05 123,433.5955,234.77295,73.410614,185.08853,2.3854838e-05 123,1.7849642,162.05498,36.05399,173.04326,1.7407627e-05 123,0.9915601,146.75128,19.50858,81.76625,1.1490661e-05 123,0.7541976,417.85223,16.783873,83.009125,1.1345867e-05 123,5.059362,200.6525,76.94478,263.09927,6.789351e-06 123,361.16702,108.383026,74.92313,182.93463,5.445261e-06 123,1.2876091,296.92407,33.067192,182.79376,3.42094e-06 123,565.48627,0.0,73.6604,250.33995,3.393114e-06 123,471.8732,420.47867,73.74875,74.50217,2.8139243e-06 123,3.3437696,396.36276,54.664455,98.01523,1.615728e-06 123,493.99188,389.42053,120.5918,100.63663,1.2919452e-06 123,519.6132,435.5296,43.21216,63.235138,1.1271082e-06 123,572.307,2.2461882,66.83966,53.070637,5.5902217e-07 123,543.21387,451.68344,41.589417,50.29007,4.97271e-07 123,1.7900863,8.297451,32.955418,79.68364,3.4440057e-09 124,1.2596078,213.54437,30.691061,61.98001,0.10066906 124,562.78076,216.5773,50.166748,95.668,0.033973336 124,437.56433,224.76997,40.002563,71.28078,0.021718629 124,606.9972,103.68817,31.94629,69.70215,0.0093745105 124,591.57574,215.00647,43.289795,104.275635,0.0025642696 124,599.2137,463.56125,35.727234,47.003143,0.0018250591 124,622.5466,269.67188,16.600098,52.07599,0.0017222702 124,554.9646,145.26794,79.17047,208.32904,0.0016359629 124,427.30838,173.20187,77.59607,182.30377,0.0005812198 124,610.7807,261.29858,28.365967,150.21902,0.00048648077 124,621.30865,231.22736,17.838013,57.093445,0.0003913283 124,610.2508,347.482,28.895874,160.88635,0.000348561 124,466.32706,130.3943,30.631073,64.55057,0.00028121486 124,585.31635,12.490723,53.830322,123.150406,0.00016187869 124,330.80487,136.22627,82.216156,158.15282,0.0001439675 124,455.75824,91.02522,49.199585,163.42815,0.00013050712 124,566.9064,262.93872,70.33655,209.6614,7.739224e-05 124,0.7882113,233.15138,18.78005,83.25313,6.367169e-05 124,2.226307,141.02475,60.129627,186.55502,4.6752997e-05 124,573.2808,438.95932,46.052734,67.58856,3.1755026e-05 124,519.622,377.35522,117.795105,123.51547,2.9289618e-05 124,1.3083162,122.97964,21.872086,127.35017,2.801661e-05 124,0.78165203,357.3901,13.770063,48.70514,2.4835594e-05 124,0.8708765,403.56326,18.210909,72.39044,1.7260634e-05 124,608.4591,1.5872201,30.687561,66.31827,1.3298164e-05 124,519.0946,433.744,42.934875,66.262634,1.0579465e-05 124,0.8194564,310.59515,20.375404,134.0234,8.76709e-06 124,546.2705,437.08084,44.5412,65.93411,8.184336e-06 124,2.6435466,259.18057,57.425323,216.52777,5.9457034e-06 124,457.21027,417.381,85.91925,79.47806,5.3078625e-06 124,444.42044,76.34999,115.76187,244.03838,1.8007771e-06 124,3.0224106,428.65225,52.330727,69.9899,5.4291525e-07 124,404.9685,417.4002,77.40384,80.276276,3.7544575e-07 124,365.4236,420.56522,74.33078,78.4198,3.399921e-07 124,1.7251287,9.10932,32.91846,77.624146,2.5684639e-09 125,513.5117,171.02129,60.381287,159.67842,0.002058436 125,620.3485,70.16694,18.798157,57.904457,0.0009892293 125,89.99846,196.0504,25.461754,47.80835,0.0009171736 125,610.24805,136.67905,28.89862,151.43039,0.0006880711 125,610.35095,232.50084,28.795715,154.48192,0.0006581194 125,607.00586,431.73895,32.14081,73.20886,0.00064957497 125,616.13904,105.20072,23.00763,84.61982,0.00035882794 125,226.14363,193.13599,32.727646,64.85101,0.00031005158 125,369.35123,96.284065,44.086273,163.54132,0.00029034555 125,519.82916,259.3714,34.541687,81.329956,0.00021378497 125,1.9094198,195.56702,18.11644,72.41748,0.00018690457 125,539.82184,197.85904,81.87988,180.37671,9.7504504e-05 125,612.02325,312.6542,27.123413,161.80066,8.6079606e-05 125,390.25745,118.14452,43.456635,120.939384,7.3075804e-05 125,1.1258513,265.81268,13.463717,50.35385,6.8019945e-05 125,588.3146,211.15366,40.043213,136.93262,6.2558e-05 125,574.1743,446.45798,43.572754,59.88672,5.9628404e-05 125,1.4504777,212.42932,28.859419,139.22244,4.7066198e-05 125,600.10535,12.716628,39.04132,129.45126,4.354087e-05 125,569.73676,17.245222,68.24066,295.95038,2.8890685e-05 125,569.1004,348.67276,68.47571,146.12161,2.5197798e-05 125,0.860398,386.61856,18.103575,70.438385,1.5638328e-05 125,532.74097,418.797,78.18634,79.732605,1.2151635e-05 125,2.998633,225.14928,57.204453,222.67049,1.0881765e-05 125,0.7917546,421.65698,16.340162,79.516785,8.152226e-06 125,0.7030461,332.19952,18.477562,74.35977,7.722187e-06 125,2.5030615,120.65558,30.44412,159.08832,2.7396322e-06 125,238.68182,69.31534,89.98657,170.1386,2.7254816e-06 125,344.25693,90.87855,117.35397,208.64694,2.1705616e-06 125,410.65582,296.23764,43.451263,126.48297,1.881082e-06 125,425.0106,431.92773,83.634155,68.27591,9.791496e-07 125,3.289917,396.67084,55.9992,97.82449,9.4514246e-07 125,24.033298,426.60928,79.45654,73.016235,4.6477345e-07 125,147.6064,426.30856,73.20981,73.101654,2.3548992e-07 125,1.5397428,76.0793,16.897308,142.3422,1.300479e-07 125,2.4124968,15.760437,58.634197,113.14511,7.874567e-10 125,1.3739681,7.1307096,19.03365,56.861244,2.925778e-10 126,604.2382,186.77173,33.648315,78.1174,0.06778143 126,135.99524,214.34825,21.787659,47.652573,0.06352472 126,55.572197,212.47913,26.479576,47.395416,0.021260032 126,579.73645,201.24893,39.763794,70.40054,0.008837292 126,599.9634,172.83511,25.655396,56.242477,0.0048547075 126,621.6612,219.2205,17.485474,55.24193,0.004602831 126,622.29834,174.80821,16.848328,54.750046,0.0038127021 126,587.4343,166.42735,49.88562,215.4214,0.0022201296 126,609.57947,263.08868,29.5672,151.2756,0.000980304 126,557.36633,131.1002,28.309387,58.49826,0.00040522777 126,484.89032,105.734146,36.4093,76.44426,0.00034872626 126,1.8374366,220.16037,18.47274,71.01755,0.000307964 126,396.28888,119.01837,45.359894,144.92316,0.0002915072 126,606.40814,433.2147,32.738525,77.93198,0.00016846917 126,361.50116,135.44644,45.83554,145.57962,0.00016236541 126,569.0702,352.90317,68.83038,145.09042,0.00012617907 126,537.4404,415.0807,60.292297,88.14334,8.467252e-05 126,610.2707,66.86958,28.875977,177.85287,7.907468e-05 126,567.99347,449.76437,44.326355,56.28055,7.639851e-05 126,332.16144,110.5355,116.04019,198.22961,7.314496e-05 126,2.5408025,200.45105,34.919655,156.08765,6.185183e-05 126,465.6852,385.50742,118.358734,110.37094,4.845943e-05 126,5.524629,197.62552,76.11769,264.2196,3.7449263e-05 126,0.66505086,426.05746,13.630819,46.32834,3.0367104e-05 126,503.23813,425.82974,49.22531,77.49475,2.8360486e-05 126,1.2707878,290.9709,18.750975,74.37308,2.4823234e-05 126,0.9138607,323.48404,20.20288,140.30133,2.0394902e-05 126,424.90228,420.7466,85.374664,74.25668,5.919158e-06 126,609.8771,0.0,29.269592,66.71429,5.9042063e-06 126,545.35785,464.6224,35.922302,45.397034,5.169748e-06 126,215.65366,72.75039,133.22656,215.01706,2.6983723e-06 126,74.5376,445.17398,43.821953,54.8537,2.564483e-06 126,1.899699,420.5069,34.573822,77.45291,1.338224e-06 126,304.341,426.8061,74.231964,70.53116,9.804448e-07 126,1.6780559,110.577934,19.82853,149.92322,8.614061e-07 126,138.19597,443.5044,42.233124,57.436462,8.447949e-07 126,344.65378,422.88248,74.96735,73.19495,7.85394e-07 126,127.23935,396.93512,110.485886,97.433655,7.2002007e-07 126,463.825,63.54653,85.26294,176.73804,7.0410323e-07 126,249.64665,424.9315,74.22264,72.42877,6.4784166e-07 126,3.6766522,92.03244,59.140694,219.53998,6.4178084e-07 126,194.68915,428.39987,74.48297,69.361145,5.9821235e-07 126,165.64697,443.6844,44.42668,57.752655,5.9546886e-07 126,44.669796,396.8326,111.3271,98.84943,4.508917e-07 126,1.6821916,63.561924,20.932106,100.56882,8.598232e-08 126,2.9241374,22.650555,56.162663,109.973526,1.3391317e-08 126,1.1935124,6.892139,27.808523,58.709362,1.47654e-10 127,495.35355,71.679504,37.573334,83.364944,0.040317994 127,105.7966,202.19983,25.803894,55.354248,0.01583767 127,619.7544,111.67585,19.392273,57.554085,0.00450997 127,2.0063338,175.47668,34.076797,77.33145,0.00329617 127,609.9214,104.6122,29.22528,140.4315,0.0025761204 127,414.30762,119.68128,30.803894,67.487236,0.0015814969 127,612.0877,201.18834,26.20398,50.64203,0.0014597394 127,417.36383,114.97029,44.991394,137.73352,0.0011311136 127,617.8873,220.3685,21.259338,82.50662,0.0006815053 127,565.89703,209.65182,24.69104,48.266205,0.00032978196 127,617.15607,393.23206,21.9906,79.15097,0.00019467277 127,1.2864316,197.47075,14.80034,59.895462,0.00013242384 127,363.31937,91.33932,77.905334,192.06375,0.00012677915 127,617.1253,336.86093,22.021362,76.66977,0.00012477866 127,602.81915,192.68584,36.327515,190.63924,7.240665e-05 127,1.0894222,132.0656,20.121326,92.98949,5.204812e-05 127,608.25085,438.68127,30.895813,64.009,3.853143e-05 127,4.2762356,118.94685,66.39236,168.88127,2.109362e-05 127,0.69616944,433.3107,13.694993,46.379364,1.9094376e-05 127,0.82090497,208.65097,21.045424,154.75244,1.6046755e-05 127,570.0722,355.93658,69.07446,131.83847,1.43179495e-05 127,0.5856759,251.47972,14.112278,50.1689,1.4241237e-05 127,0.8635246,329.66068,18.416801,73.18027,1.030764e-05 127,0.97820073,361.1731,20.069271,136.02567,9.115739e-06 127,2.810568,245.09964,57.661907,239.14468,4.928616e-06 127,609.8216,7.5990105,29.325073,158.02844,4.7627673e-06 127,1.7026856,455.59055,28.270512,50.130463,3.0815088e-06 127,474.74084,62.08727,92.47864,164.6929,2.6363173e-06 127,206.71793,66.32665,82.0889,158.19373,2.5260345e-06 127,3.9302769,427.58893,65.36631,71.861145,1.3251585e-06 127,270.1398,426.6797,73.55728,73.07486,6.763059e-07 127,420.76288,391.28073,112.83478,102.78522,5.741836e-07 127,529.4821,426.0351,81.486084,72.26169,5.6544775e-07 127,310.54785,426.38004,74.06186,73.09296,4.947828e-07 127,351.81693,427.6943,73.02527,71.83392,4.0058947e-07 127,399.5508,426.1179,73.14374,72.77985,3.2387558e-07 127,1.5180925,49.665012,29.196667,152.82599,2.8727626e-07 127,2.3931642,14.947276,31.944124,68.57054,6.0527106e-10 128,75.45747,221.86275,23.268982,48.35298,0.010375384 128,622.4291,240.65448,16.71759,54.559265,0.0037845701 128,82.42014,230.17732,31.307228,57.24788,0.0019807245 128,533.85315,100.24331,28.506958,59.084267,0.0019800107 128,469.19214,66.9493,25.988129,56.653046,0.0014315057 128,610.0076,171.20749,29.139038,145.80475,0.00084623235 128,507.03308,63.63361,44.91925,109.39656,0.00083503936 128,616.2971,82.697655,22.849548,86.47312,0.00052770163 128,387.09045,98.23952,72.502106,197.19258,0.00022659704 128,617.056,399.7505,22.090637,79.65134,0.000208132 128,434.51508,67.85935,64.80463,179.64038,0.00015634678 128,477.39304,67.566765,38.050934,84.371254,0.000117237825 128,502.59943,95.68766,29.131348,61.117363,0.00010599042 128,617.73535,326.30203,21.411316,85.2258,7.4260846e-05 128,600.93854,223.41373,38.20813,208.77264,6.866067e-05 128,462.38922,101.113716,78.21533,186.43472,6.8438785e-05 128,0.5489266,258.08252,14.027422,50.248596,3.5972043e-05 128,0.8289315,426.71954,13.802644,45.343475,2.956202e-05 128,608.7901,0.0,30.356567,145.63452,2.794099e-05 128,0.7513485,198.77458,19.49503,134.96474,2.2020666e-05 128,571.3323,361.35132,67.81439,126.05307,1.8637757e-05 128,36.70468,113.21563,83.10048,190.82642,1.3878001e-05 128,584.0364,6.01375,55.059875,260.61423,1.3365181e-05 128,0.8443091,133.61192,13.666717,47.677216,1.2512311e-05 128,0.75494957,286.91098,18.415329,75.35718,1.1634916e-05 128,1.0643734,356.13315,20.957397,106.977325,1.0726389e-05 128,469.57974,142.83672,38.340363,95.436646,7.842866e-06 128,1.3037566,246.66206,35.135105,193.8044,4.7347617e-06 128,1.4565374,99.87222,19.438007,130.83575,3.4545906e-06 128,493.94638,59.99263,99.008026,178.45471,2.8246466e-06 128,5.7288933,221.53854,78.36723,250.02304,2.8094996e-06 128,1.9452897,418.62537,35.11415,79.90985,1.5996844e-06 128,1.6064128,72.33815,18.604404,73.038345,1.42438e-06 128,218.12161,75.05772,86.79935,155.38785,8.433749e-07 128,6.073887,398.912,90.18077,96.40741,6.726909e-07 128,3.822163,79.17195,59.154793,209.0717,8.594396e-08 128,2.1859229,12.047051,33.240208,75.54971,2.5408156e-10 129,424.75885,220.57896,20.785065,45.44249,0.06256284 129,32.888783,239.70576,25.874397,58.212234,0.025116859 129,434.85925,227.36063,21.84842,45.477448,0.0054380717 129,46.345043,240.35959,38.351757,62.443054,0.0053316853 129,610.6372,111.78893,28.50946,153.58096,0.0012169095 129,616.544,84.479866,22.602661,84.92419,0.00037305508 129,616.99084,228.93053,22.155823,93.432236,0.00022555739 129,513.41583,99.844444,29.786682,67.976555,0.00016565087 129,559.6534,58.911922,45.704895,109.210815,0.00014377994 129,610.992,349.38528,28.154663,127.83493,0.00014347845 129,0.66753256,251.72247,13.084782,47.227966,0.000113905284 129,580.2001,15.682637,58.946594,116.50327,0.00011253897 129,617.6476,292.39368,21.499084,82.99252,0.00010808904 129,520.3747,95.74087,78.58661,196.13205,8.227015e-05 129,573.0061,158.2653,66.140564,272.9137,8.016488e-05 129,494.65652,111.68155,30.661346,69.90486,7.160377e-05 129,608.5043,437.6011,30.642395,64.38849,6.286187e-05 129,4.0538154,132.55946,60.914417,220.8961,6.143573e-05 129,615.8248,24.64729,23.321838,82.996124,5.2577143e-05 129,1.0270166,140.45341,13.74222,48.027496,5.1557556e-05 129,2.3551302,186.60616,28.695705,129.2882,5.1520885e-05 129,504.9637,68.180084,47.397614,158.18924,4.8573533e-05 129,424.34747,75.93085,79.020294,213.55383,3.7309168e-05 129,0.9720866,255.95865,20.519728,138.51376,2.8816828e-05 129,0.47770956,277.26712,13.89009,50.649994,2.462273e-05 129,0.86253583,426.23108,13.782458,46.20514,1.6522727e-05 129,384.67255,127.0341,28.199738,54.000946,1.2568256e-05 129,545.8599,0.0,93.28674,263.51825,1.2421133e-05 129,1.4866928,111.65952,20.788813,153.79245,1.1573827e-05 129,1.1449227,362.67447,20.142208,129.94449,6.7820893e-06 129,3.4271793,398.79468,56.662354,96.69284,2.8183824e-06 129,218.53987,71.928406,80.97194,146.12546,2.6908738e-06 129,1.180227,53.71096,19.035877,82.03037,4.5767084e-07 129,31.02837,428.11377,78.572556,69.971466,4.1106495e-07 129,3.4184735,28.212494,80.442856,132.9036,9.50368e-08 129,1.4336361,15.099118,37.7099,70.78039,2.2773966e-08 130,622.1893,323.50885,16.957397,53.716278,0.0017670662 130,607.1478,85.28616,31.771667,63.485947,0.0014889922 130,521.94775,104.44469,29.319214,59.48079,0.0010327883 130,63.91375,202.1612,33.971733,58.588715,0.0007209051 130,610.3949,276.15366,28.75177,136.7847,0.0006143635 130,607.7138,429.0771,31.432861,73.84674,0.00041874746 130,26.47568,168.755,43.390327,82.70792,0.0002934365 130,526.0312,241.4222,43.020447,118.18718,0.00029305308 130,617.69977,215.07745,21.4469,81.891205,0.00017146753 130,437.162,107.15397,71.31641,181.10995,0.0001363061 130,598.65295,0.16197266,40.367126,139.45937,0.000117603886 130,615.7706,354.88788,23.376038,96.79422,0.00011471503 130,588.8,150.78763,49.714478,240.02463,0.00011470279 130,1.4296379,200.97377,17.9689,71.14128,0.00010488055 130,26.178364,199.11076,22.353981,45.8369,9.5031595e-05 130,1.3890219,231.58752,18.668747,124.58853,9.018922e-05 130,5.493363,130.29002,80.91456,166.52043,4.3398428e-05 130,0.90378094,294.4756,13.67549,48.37979,3.3631793e-05 130,1.9443946,265.4572,33.957703,181.1795,3.2890708e-05 130,1.2000847,161.2818,13.10089,51.313797,2.8317569e-05 130,2.6435466,161.18056,33.157444,161.92012,2.2833716e-05 130,570.20953,342.93265,68.93713,148.07993,2.2220567e-05 130,1.7026505,114.52818,19.486446,137.09935,1.0938928e-05 130,0.9204582,343.0733,18.368513,74.01071,1.0799511e-05 130,1.3403679,87.256996,18.57893,75.911095,7.0184556e-06 130,0.8744393,412.095,13.693849,46.896667,6.0066845e-06 130,1.0198356,371.18198,20.23903,123.73007,5.107385e-06 130,554.7597,9.973347,84.38696,207.27408,2.3623593e-06 130,1.6918555,458.1795,28.317396,45.167694,1.9371178e-06 130,5.3314095,356.0479,78.8105,132.3671,1.4676701e-06 130,576.86774,447.61844,45.44995,54.444183,9.984826e-07 130,3.1925797,428.99237,52.758736,69.08649,6.6366283e-07 130,70.17681,425.2071,73.31687,69.18942,3.801222e-07 130,311.06744,430.16507,72.183685,70.11847,3.3209403e-07 130,586.1395,2.3895948,43.65796,53.52817,2.8797737e-07 130,471.60294,51.289364,83.92178,224.95349,1.7406614e-07 130,1.8636117,18.772133,58.94239,111.95214,8.0076795e-08 130,1.0775895,25.894604,19.752897,69.60472,1.2868089e-08 130,1.2703613,5.704398,34.83808,45.699142,2.9604819e-09 131,620.4892,108.83951,18.65747,60.417572,0.0046227532 131,1.0522689,196.80077,14.613686,56.694138,0.0043681436 131,31.477129,195.0787,42.24826,62.186615,0.0037606598 131,621.15717,146.81544,17.989502,55.050888,0.0011219305 131,610.65247,120.19649,28.494202,138.48753,0.0008806205 131,610.62946,367.3405,28.517212,135.21857,0.00044112903 131,486.80527,134.22313,54.926178,149.76302,0.00017931483 131,617.5065,266.87173,21.640198,82.2605,0.00012244997 131,2.3100083,185.63419,29.95921,155.9462,8.31333e-05 131,571.5136,86.159424,25.865112,50.333008,6.871949e-05 131,616.90485,325.7126,22.241821,88.19318,6.5680375e-05 131,587.9221,150.71983,51.22455,242.32457,6.4062966e-05 131,554.9522,414.04358,76.77045,87.03851,4.273733e-05 131,572.8452,275.03513,66.30145,218.48764,3.2234097e-05 131,570.5003,25.835808,68.21222,242.24893,3.0037083e-05 131,608.0151,0.0,31.131592,155.15852,2.9026174e-05 131,0.995791,60.147305,18.736036,74.49992,1.5569669e-05 131,486.93387,414.05807,73.05917,81.06781,1.480894e-05 131,1.2681332,260.8162,18.034515,77.13403,1.37116085e-05 131,0.9582878,122.23723,21.374847,116.8819,6.4997566e-06 131,0.99911785,367.27814,18.070023,69.12286,6.1556184e-06 131,5.386973,267.32736,77.17319,205.37405,4.0587643e-06 131,1.6206446,327.23148,33.849377,157.17374,3.3160493e-06 131,1.2321484,443.60876,21.671442,58.29364,2.5303843e-06 131,0.65262777,314.76547,18.699188,77.43033,1.984902e-06 131,3.8021665,72.927155,58.58703,226.54495,1.5014293e-06 131,2.230145,21.222364,56.968124,96.6529,8.1224687e-07 131,3.2487924,427.57855,52.73936,70.09509,6.9308396e-07 131,33.945774,425.3551,76.289536,71.24307,6.338854e-07 131,501.99432,167.69063,28.51587,67.23648,3.7191208e-07 131,99.31387,62.72146,73.37448,204.75586,2.2144732e-07 131,471.11084,4.2974725,40.20291,49.15403,5.5281795e-08 131,1.1651977,9.753761,23.343355,51.848022,4.1400916e-08 132,601.07587,229.62366,37.156006,88.509125,0.010215811 132,584.8238,87.98776,52.52301,250.91763,0.0028290623 132,291.24426,139.77505,35.37857,63.46434,0.002306424 132,620.71704,262.68124,18.429626,52.96805,0.0010518463 132,616.14484,283.09692,23.001831,83.95172,0.0005086084 132,620.84894,141.87036,18.29773,54.989944,0.0003002316 132,609.1099,7.9110746,30.036743,127.05972,0.00020340062 132,1.0415218,187.94864,14.164463,58.860947,0.0001591834 132,604.54663,147.99332,34.600037,97.67554,0.00015851895 132,600.14795,279.86758,38.81964,205.742,0.00014304016 132,616.5386,339.2926,22.608093,83.53204,0.00012789383 132,1.3032039,211.36218,19.373152,78.86377,0.00012226886 132,615.82715,89.096436,23.319519,89.54761,0.0001045505 132,607.11774,433.19012,32.02893,74.670044,6.9447095e-05 132,1.745665,164.14761,33.083057,155.77072,4.574045e-05 132,3.5488136,195.58046,57.566418,231.81526,3.3406814e-05 132,1.0507991,85.115425,19.78597,166.34235,2.2975479e-05 132,1.1771615,57.7211,18.25292,70.6862,1.6645517e-05 132,549.9325,389.3161,84.83484,109.2287,1.3263613e-05 132,0.66519856,426.1841,13.77532,45.401886,6.6239595e-06 132,1.1499146,260.32907,19.88606,142.93338,5.3084195e-06 132,0.7534009,377.80173,13.839474,47.157867,5.130583e-06 132,0.86629194,337.5952,13.788138,46.887268,3.927067e-06 132,533.01117,436.6602,43.103943,67.02811,3.6134395e-06 132,0.88870686,378.11652,20.207626,117.64377,3.3881734e-06 132,501.6076,446.47818,41.93158,57.379242,2.6784155e-06 132,466.41656,386.07462,111.25806,106.27701,2.4571211e-06 132,3.15486,395.35065,55.901978,98.00952,1.2053836e-06 132,2.4778972,22.328884,56.925034,94.1055,1.1514207e-06 132,32.877903,423.75928,76.03616,71.16199,3.5675544e-07 132,1.4135376,13.668229,25.550476,70.915665,3.1830243e-08 133,289.5499,148.51105,35.9722,64.06734,0.025793165 133,0.505269,169.61266,13.507114,47.158997,0.01191034 133,10.263854,180.47601,31.821655,52.282272,0.010590979 133,2.9350164,148.97803,48.384426,126.36786,0.0012209408 133,394.30902,191.60536,30.456818,58.711304,0.00038955512 133,617.33923,136.02771,21.807434,86.75682,0.000359307 133,1.1479639,109.70929,21.883173,138.10814,0.00029149887 133,607.015,434.65793,32.131653,71.73712,0.00015798077 133,451.6474,418.4428,93.70526,78.94855,0.00014712557 133,617.3776,343.16354,21.769043,82.72952,0.0001204726 133,612.5518,179.4477,26.594849,142.50345,0.00010259854 133,1.068433,84.22159,13.619611,51.766235,6.896083e-05 133,510.1832,431.2649,47.001984,72.58002,4.4741504e-05 133,600.8078,289.8975,38.338867,192.98001,4.4276247e-05 133,1.0530306,194.12038,17.858334,148.02498,2.7468588e-05 133,421.256,438.09232,46.20395,58.900604,2.3894137e-05 133,611.80426,25.493385,27.342407,157.61865,1.834625e-05 133,554.8301,392.7741,84.05145,107.592316,1.8171668e-05 133,583.3851,450.0097,41.306763,55.52118,1.7237899e-05 133,588.0529,141.30954,51.09375,254.88629,1.649121e-05 133,375.9642,391.90778,138.64365,102.28641,1.29323635e-05 133,3.5476987,193.38684,55.79113,248.95312,1.2603111e-05 133,1.0407438,334.04,20.103722,131.26364,5.06302e-06 133,0.8171379,303.5587,18.374216,72.27084,4.5239594e-06 133,331.86368,428.8572,79.872284,69.2193,3.6560334e-06 133,3.429274,63.7487,78.32093,269.30118,2.879248e-06 133,276.94516,424.77982,74.221436,73.85614,2.7567307e-06 133,5.3459344,356.96625,78.22455,129.95331,1.2178582e-06 133,1.891683,419.16324,33.81115,77.1864,1.0057151e-06 133,215.75096,424.076,78.21254,74.7887,7.349301e-07 133,1.5850081,18.869915,29.799536,126.01683,3.850492e-07 133,0.88634115,11.638913,13.545997,80.217094,1.8270981e-07 134,296.9659,184.06216,29.069336,58.3757,28.689598 134,619.4262,178.97327,19.720459,64.46216,0.003220302 134,610.3884,95.24278,28.75824,155.99239,0.0019041079 134,1.7778769,204.28836,28.331512,108.06018,0.0015165855 134,617.5211,341.82288,21.62555,77.86307,0.0003575773 134,617.4411,216.85733,21.705566,86.08331,0.00031912027 134,0.8309184,235.0854,13.810703,59.778854,0.00030135005 134,616.33527,56.13433,22.811401,91.758675,0.0002809749 134,586.76483,128.4264,52.381836,254.71413,0.0002420593 134,587.1795,307.1026,51.799683,178.2858,7.045346e-05 134,3.6988966,99.12887,56.20617,223.57297,5.808591e-05 134,0.81918216,265.57733,18.360037,76.68634,4.0353687e-05 134,611.90576,405.37347,27.240906,100.901855,3.61497e-05 134,1.5536809,143.59915,21.67657,112.91217,3.0185432e-05 134,556.7965,449.07294,40.21991,53.695343,1.657253e-05 134,1.1728679,107.56054,18.52257,85.35227,1.5674254e-05 134,2.8693817,239.973,56.365673,232.81465,8.607922e-06 134,266.51752,119.35008,95.95932,216.43962,6.5857002e-06 134,0.97492516,392.3851,18.259146,71.26282,6.301607e-06 134,1.2093604,59.002033,18.451994,73.0616,5.9684266e-06 134,495.1033,447.9496,41.10965,56.052094,5.9088925e-06 134,522.1604,389.24826,114.749695,112.7988,5.5940964e-06 134,585.1115,9.995124,54.035156,120.3792,4.901803e-06 134,533.7574,438.375,42.383545,64.415375,4.7567846e-06 134,0.7369857,295.56323,19.182652,141.83554,4.277541e-06 134,447.14966,383.34598,111.94238,109.35022,3.67775e-06 134,1.6490349,358.0301,33.26542,133.82697,2.1829092e-06 134,1.7565707,14.797425,57.65157,115.293076,1.3710458e-07 134,0.7135425,9.903679,11.624609,87.817444,7.520167e-08 135,315.14383,177.95107,41.903534,77.57938,0.69976395 135,619.46985,52.06208,19.676819,61.872,0.0059871366 135,8.394031,203.07037,41.6412,62.503815,0.0024066137 135,618.2454,222.30379,20.901245,59.200577,0.0017822416 135,609.50653,210.43292,29.640137,151.72766,0.0014594274 135,528.303,197.0335,86.9975,187.02443,0.00035469516 135,304.36682,129.32776,68.73105,169.39023,0.00025168163 135,617.4005,129.16493,21.746155,90.9476,0.000236646 135,0.91413575,84.80003,18.548859,75.69838,0.00013663445 135,609.0644,2.9133368,30.082275,64.23005,0.00010441846 135,583.5995,72.04131,55.54718,271.9507,0.000103513434 135,587.2216,272.60062,51.904358,203.24689,0.000103032326 135,1.2736523,194.2966,18.402714,68.17587,8.626533e-05 135,608.9018,441.26428,30.244873,66.746,6.0414197e-05 135,587.62683,13.8814745,51.519836,109.648056,4.5053945e-05 135,1.1856592,359.58755,18.69014,101.85083,3.0368088e-05 135,0.7242839,317.63922,18.018488,78.525085,2.171519e-05 135,3.1438184,209.27425,45.36117,192.60393,1.7734752e-05 135,1.742837,121.90855,32.56904,173.55075,1.5972355e-05 135,0.728492,252.09352,18.101196,75.907394,1.5261465e-05 135,417.40787,434.68228,83.96802,67.9093,7.6550505e-06 135,0.621766,154.29623,13.900457,50.299698,6.2174727e-06 135,0.86173016,422.72693,14.419535,75.22229,5.7677103e-06 135,3.4647462,394.21497,54.896183,94.1315,4.9233354e-06 135,555.6819,429.1715,80.166565,73.00391,1.4536263e-06 135,31.724419,425.35297,70.730804,71.999084,1.2690173e-06 135,168.84648,432.5887,78.45558,67.6391,8.396656e-07 135,534.40814,442.4346,41.112183,59.721924,6.215135e-07 135,1.1055746,23.972656,29.28556,120.61331,5.137024e-07 135,474.59854,426.8545,72.91501,72.35959,3.589642e-07 135,2.9599707,32.960014,80.65746,264.45035,1.255975e-07 135,0.65428305,7.3701663,21.327602,59.306355,1.173263e-08 136,388.48856,164.94473,26.605408,57.474884,0.0016844792 136,622.3884,355.57376,16.75824,51.903656,0.0010764428 136,384.96313,161.73889,45.895325,133.17874,0.0007394773 136,621.1289,113.62693,18.017761,60.353493,0.00040316395 136,617.7505,385.09305,21.39618,83.75983,0.00026725043 136,622.243,438.9801,16.903687,52.379395,0.00021937044 136,1.4430999,201.29521,18.709433,75.032394,0.00019824745 136,610.884,83.95136,28.262695,147.10431,0.00019269896 136,612.7037,266.9593,26.442993,154.37775,0.00015017495 136,618.0531,241.55545,21.093567,80.906525,0.00012036764 136,616.76697,169.93648,22.3797,84.16504,7.2816794e-05 136,586.8643,179.56683,52.28235,274.84067,5.855254e-05 136,0.95271486,251.10156,18.29361,75.10684,5.4763983e-05 136,572.3122,354.74628,66.83447,136.48691,3.730447e-05 136,572.6998,28.354109,66.44684,225.83157,2.4953446e-05 136,2.0061615,200.0749,33.11494,169.39278,1.7078197e-05 136,597.9875,8.720703,41.15918,84.23538,1.4228354e-05 136,6.664281,212.95471,75.71033,246.00967,1.3843328e-05 136,1.0087167,135.24458,19.032053,92.97891,1.1185018e-05 136,0.66979903,303.16998,13.612392,47.612305,8.079148e-06 136,1.004515,96.57462,18.321796,76.42672,7.689705e-06 136,1.0902255,394.55893,17.869545,71.42609,6.498393e-06 136,0.7863965,307.65445,18.93703,134.58942,5.795754e-06 136,360.77438,138.25966,113.976105,225.74748,4.7101357e-06 136,1.2121933,442.3063,20.792675,59.743286,2.9964808e-06 136,424.15283,435.13614,81.923065,66.63434,2.8761306e-06 136,3.4539356,396.1217,55.773384,95.07941,1.333368e-06 136,469.88937,386.74872,127.552704,106.193756,9.562834e-07 136,541.5127,439.69678,41.716614,63.02484,9.175287e-07 136,106.27987,431.95056,72.50446,68.94336,7.41237e-07 136,24.089434,394.7385,114.35057,99.103455,6.501242e-07 136,179.93336,432.1249,74.14758,69.384,6.1302495e-07 136,1.7819605,60.21566,32.99245,193.98596,5.8456095e-07 136,1.2327572,25.864597,15.502119,96.43619,3.2057523e-07 136,4.522448,39.085327,79.29542,262.00873,1.854335e-07 136,3.2110677,25.20242,56.06773,91.22063,1.2690941e-07 136,1.3114966,9.829223,21.231693,51.367847,8.273837e-09 136,17.887999,5.0158772,40.60415,45.048088,3.706331e-11 137,620.7606,378.49017,18.386047,63.97162,0.018977985 137,610.7395,308.99066,28.407166,154.43884,0.0025493763 137,618.76697,96.29647,20.3797,58.252663,0.0017360956 137,625.78357,354.23938,13.363098,45.531525,0.0010143544 137,608.9479,71.555466,30.198792,144.60248,0.0009710867 137,620.2118,136.81364,18.934875,61.859467,0.0003356756 137,586.40424,167.19777,52.74243,283.7395,0.0001962522 137,584.5534,383.729,54.256897,107.641785,0.00019024953 137,13.475443,235.16432,30.852346,50.178696,0.00016720375 137,617.8436,258.15,21.30304,84.58905,0.000101457204 137,608.457,431.479,30.689697,72.8248,9.577731e-05 137,616.9863,183.32004,22.16034,92.86282,9.5410636e-05 137,609.8432,8.517198,29.303467,111.620316,5.8359205e-05 137,1.0307324,254.19681,18.109207,71.49982,3.8756054e-05 137,1.4210368,191.05858,18.214579,82.55437,2.2897782e-05 137,1.2272413,91.30844,18.099794,69.50505,1.7581038e-05 137,581.36487,0.0,57.7818,281.01047,1.6783977e-05 137,85.75804,233.98454,25.4095,56.22609,1.3273863e-05 137,4.2809296,202.7573,57.127785,228.08047,1.2176601e-05 137,1.9487411,120.31281,31.11716,175.19263,9.008884e-06 137,1.3153346,140.18486,17.846222,72.996994,8.2444685e-06 137,0.66972005,295.62726,18.549051,140.8136,6.494973e-06 137,403.63943,433.0467,83.69348,68.736145,6.127236e-06 137,1.075083,394.7552,18.100275,71.03638,4.754272e-06 137,1.28438,442.44855,20.717255,60.454437,3.0236943e-06 137,3.4404216,396.61163,55.449135,95.35428,2.0025388e-06 137,530.95123,426.06223,86.12262,73.2652,1.0392562e-06 137,453.49902,432.31085,73.00836,69.365204,6.8685137e-07 137,85.76536,435.10962,75.178474,67.1091,5.54784e-07 137,21.514105,431.84012,74.47642,66.17056,5.3532665e-07 137,513.90625,442.05298,40.529175,58.359802,4.5507167e-07 137,592.5233,4.9860253,43.288696,48.845287,4.5225082e-07 137,311.70435,437.65677,76.87109,63.90085,4.1874895e-07 137,1.4740845,28.230951,15.339304,104.4128,3.3960714e-07 137,271.20892,440.5223,73.886566,61.061035,3.0259602e-07 137,182.62064,438.1924,71.17981,62.936462,2.8723133e-07 137,2.4975603,26.301014,55.01485,94.70578,9.579003e-08 137,4.6075487,37.606094,77.908195,259.5714,7.993824e-08 137,1.851373,10.453841,29.845057,58.85736,1.4305372e-08 138,620.5215,406.45877,18.625183,60.736176,0.008065361 138,612.0211,345.96548,27.12555,150.50916,0.0007919007 138,622.0804,222.74104,17.066284,51.052353,0.00077541627 138,621.6453,182.81882,17.501343,58.872284,0.0004193137 138,620.7616,84.79648,18.38507,60.714355,0.00037191552 138,583.7925,17.18459,54.30896,102.838715,0.0002956632 138,67.30259,227.70657,40.076378,82.318146,0.00025810895 138,587.48645,217.16048,51.660217,264.12152,0.00024959637 138,615.73914,291.71295,23.407532,97.32361,0.00016819756 138,611.03973,110.715744,28.106934,151.28227,0.0001613702 138,0.88921714,202.23964,12.896177,48.907272,8.285216e-05 138,621.5447,41.06526,17.60199,51.502235,6.5940956e-05 138,611.7823,190.1706,27.36438,162.96039,6.542419e-05 138,554.1872,387.6714,84.62018,109.64279,4.6117442e-05 138,1.2303826,230.3426,17.777788,72.1194,3.1273084e-05 138,38.63271,256.7226,34.600002,61.949524,2.7181988e-05 138,0.90022016,265.1524,16.779968,138.12552,2.6439571e-05 138,609.4868,8.363384,29.611938,53.71987,2.6053209e-05 138,20.401606,203.9682,84.05871,170.97357,1.9129186e-05 138,1.0958928,406.66187,17.792221,70.3244,1.8051967e-05 138,406.84976,432.63568,87.292114,68.68704,1.1070005e-05 138,5.076302,249.021,55.19385,217.46353,8.64458e-06 138,1.287334,335.16455,30.292946,149.77182,7.759199e-06 138,1.5582455,83.07193,16.250725,134.78976,5.786784e-06 138,1.9130021,143.7534,28.39237,147.30089,5.3260355e-06 138,581.488,436.8759,44.209473,68.13965,2.5693107e-06 138,1.7851856,50.88654,18.298517,73.92894,2.4663334e-06 138,358.34476,432.8897,82.735504,67.17691,2.3337595e-06 138,2.320931,429.90158,44.464046,67.50656,1.8157389e-06 138,16.429512,394.95953,115.943474,97.92114,1.3200173e-06 138,503.21667,428.74246,80.82898,69.61728,8.483132e-07 138,5.2099414,64.45314,57.85265,273.25464,6.654704e-07 138,181.8206,397.61545,114.376724,98.481445,6.6288607e-07 138,440.61188,387.95517,123.13165,105.195465,5.9421853e-07 138,319.17615,443.0047,76.168304,58.48996,3.5852082e-07 138,243.39777,438.20688,71.04468,62.56964,3.58149e-07 138,78.64459,430.85056,72.804,70.87082,3.480747e-07 138,3.628838,24.594486,55.512634,103.72478,3.225981e-07 138,162.03235,434.41635,74.40846,66.870636,2.4582167e-07 138,120.84006,433.68152,71.90242,68.265045,1.9978718e-07 138,0.76999557,12.877416,8.722571,82.020256,2.5104793e-08 138,1.4934456,7.9439716,29.363298,55.63801,3.0169367e-10 138,26.750166,2.8283286,39.376396,48.8546,1.6433103e-11 139,623.1271,370.50647,16.019592,50.055573,0.0026361286 139,621.6826,202.49335,17.46405,60.1904,0.0006917305 139,611.83044,275.48328,27.316223,152.75012,0.00036823095 139,612.8209,407.09482,26.325745,99.269165,0.00021251895 139,611.98676,178.49377,27.159912,165.23175,0.00020846612 139,617.63776,68.052895,21.508911,84.67945,0.0002034858 139,617.504,136.33546,21.64264,87.050446,0.00014283364 139,573.22644,359.5117,65.20746,131.72519,9.604586e-05 139,1.3955014,206.12334,17.883692,68.40358,5.0529343e-05 139,616.21686,21.816082,22.92981,84.75348,4.9750895e-05 139,1.1331275,260.60544,17.819412,73.16922,1.8961542e-05 139,586.1128,55.736824,53.033875,282.32346,1.5740194e-05 139,0.90181035,419.38605,12.7554865,46.979065,1.5636764e-05 139,1.7258203,204.3256,33.209103,160.42635,8.6931905e-06 139,1.0306054,334.4604,17.408024,137.75055,7.4387726e-06 139,1.2869914,134.57008,17.81176,73.928375,7.3850524e-06 139,1.1488843,438.9469,20.33267,62.833954,5.6597896e-06 139,1.49316,60.859715,18.116785,79.74245,5.5854607e-06 139,405.18405,435.93893,81.68918,65.9892,4.706436e-06 139,4.041239,235.12012,56.3275,226.3136,4.6664354e-06 139,0.6825057,301.5976,18.48813,74.399475,4.63567e-06 139,572.1725,14.094121,66.97418,137.45186,4.5309716e-06 139,1.8170297,85.305664,31.646433,182.92581,2.6375847e-06 139,46.333546,92.21226,72.48761,176.02347,2.530114e-06 139,581.2904,437.41428,45.47461,68.47293,1.432756e-06 139,482.44272,384.8079,133.36374,107.62338,1.4071197e-06 139,3.6271892,394.84384,55.7534,95.92737,1.3487379e-06 139,72.40963,433.73697,72.3868,67.204346,8.12058e-07 139,461.75708,430.78647,71.516785,69.140015,5.0575744e-07 139,32.724003,433.4487,70.735214,66.9671,4.83006e-07 139,521.0125,442.9366,39.77771,57.967255,3.9819977e-07 139,236.97925,443.00256,72.2399,58.55832,3.4730473e-07 139,175.90913,439.44492,71.96207,62.301666,2.726151e-07 139,113.29181,435.5498,72.11467,65.79187,2.484178e-07 139,3.7691505,40.531513,82.3861,284.6338,1.10313394e-07 139,0.49087423,5.635384,6.4119115,91.02342,2.521921e-08 139,1.5931804,0.8904167,60.33867,139.57288,4.69386e-09 139,1.097317,3.5422137,17.736576,59.585964,5.821268e-10 140,18.088037,229.0029,29.791246,45.81781,0.022894459 140,620.87244,413.41315,18.274231,59.671722,0.0067089554 140,29.778692,243.19139,26.398745,50.095993,0.0018145093 140,611.4719,337.51242,27.674744,147.95322,0.00061105576 140,625.6805,353.5594,13.466187,46.62845,0.00059980695 140,621.5532,113.980576,17.593445,57.93927,0.00052962 140,616.70966,228.52808,22.437012,87.76669,0.00039716234 140,2.7039046,219.25266,35.73916,81.6055,0.00029063807 140,611.80994,89.01813,27.336731,163.59407,0.00025340414 140,617.24567,56.435,21.901001,88.879074,0.00021161432 140,209.61761,222.67125,26.329208,48.41597,0.00018449646 140,586.0048,156.6449,53.141846,283.96072,0.00013219494 140,579.3422,420.64072,59.804443,82.54138,4.2727715e-05 140,1.0949553,265.42218,18.53608,77.19684,2.3513241e-05 140,4.3580747,191.85324,57.807655,202.9302,2.184684e-05 140,1.4900846,142.7697,18.213722,141.63118,1.0714529e-05 140,430.14258,168.18613,37.31552,76.61052,6.3901202e-06 140,1.3585856,98.25293,18.00281,74.556564,6.001646e-06 140,0.6778776,358.612,13.540964,47.84439,5.659444e-06 140,0.57927,316.45532,13.647996,48.32361,5.3682998e-06 140,0.8209823,314.74963,18.968733,134.97052,5.0887925e-06 140,0.8065365,419.26755,12.999528,83.32266,4.932782e-06 140,118.33105,97.18043,77.93989,175.40326,4.0364375e-06 140,587.3191,10.59043,51.827576,122.761604,2.7099568e-06 140,496.56836,389.40448,137.32373,103.93039,2.3751452e-06 140,2.4052556,434.48682,43.522717,65.04419,1.3221642e-06 140,459.6477,432.81436,73.50824,68.42853,1.1222859e-06 140,167.87294,438.27292,71.73012,62.015625,9.229243e-07 140,5.4158173,362.8963,78.060616,122.33252,7.776473e-07 140,2.3860369,17.249063,58.973248,268.2531,1.4162387e-07 140,1.4114892,20.116219,17.102186,110.03469,2.5687688e-08 140,196.2738,3.3433561,41.639374,45.896008,2.1690745e-11 140,1.6655664,3.0535548,29.932446,65.50352,1.737596e-11 141,619.05664,142.3153,20.090027,63.026276,0.09252671 141,620.47644,424.36914,18.670227,57.04837,0.0046147592 141,610.15686,93.86373,28.989807,151.09921,0.0031484496 141,530.3393,272.85635,26.181091,54.42508,0.00176636 141,624.9722,91.495605,14.174438,47.557816,0.0012192966 141,1.6967465,71.92839,20.695745,96.1823,0.0012111784 141,597.75745,414.2072,41.38922,90.77655,0.00081749784 141,611.7586,324.3074,27.388062,155.73792,0.0007095051 141,65.856514,236.12393,24.123413,45.941162,0.0006060594 141,585.7391,90.74697,53.407593,285.4743,0.00045225292 141,615.50665,464.37448,23.640015,46.31839,0.00028623614 141,617.0848,184.04431,22.06189,90.02777,0.00025121067 141,616.1736,43.547173,22.973083,103.272255,0.00012010207 141,617.62085,238.12047,21.525818,84.44643,9.178763e-05 141,1.4750179,231.20467,18.392912,73.13451,7.058582e-05 141,1.0280681,264.3818,19.175346,131.03445,5.0865758e-05 141,2.319018,76.56631,32.03867,193.4281,4.907772e-05 141,0.71313477,355.98175,18.620918,74.13437,2.0585268e-05 141,1.9251449,189.24568,32.31158,171.5186,1.9398025e-05 141,1.8862419,181.37744,19.001411,83.27353,1.6534454e-05 141,0.5647534,316.5028,13.313307,49.885468,1.4317634e-05 141,0.7750391,396.9934,18.496944,74.57614,1.0182928e-05 141,2.9996257,303.14362,58.570374,179.29108,1.0023738e-05 141,4.655423,137.96748,78.67709,246.46645,5.099189e-06 141,1.1586801,442.57153,20.90329,61.94171,4.363131e-06 141,4.087658,436.18167,65.323166,64.26346,1.6032828e-06 141,185.31818,75.68172,75.89258,183.26323,1.1273404e-06 141,530.60895,431.18924,79.32385,67.16644,5.497133e-07 141,73.565865,435.72757,71.555336,65.91113,4.4643835e-07 141,2.5543914,28.099167,55.599926,104.25154,2.0238953e-07 141,0.8179338,14.634477,8.344776,76.50014,2.6692737e-08 141,1.6165625,15.126892,33.212135,69.24067,4.8389994e-09 141,224.42761,4.9447007,42.92932,45.81888,1.8338339e-10 142,309.3101,151.01231,32.928986,62.0652,0.03694454 142,352.47073,177.0083,28.594635,49.645218,0.021361792 142,259.86716,213.85162,23.33551,46.79492,0.0039047115 142,617.1706,318.2403,21.976074,91.58124,0.00042565458 142,612.00464,358.19727,27.142029,145.41321,0.00034679507 142,601.26776,239.51923,37.878906,216.54312,0.0001817314 142,611.70056,168.84299,27.446106,157.21426,0.00016509541 142,617.248,93.820564,21.898682,87.04911,0.000114551054 142,1.0824398,222.39372,17.292376,65.02901,0.000113022215 142,1.1330664,243.24893,19.376131,132.61575,7.895125e-05 142,4.5040708,210.51689,54.458412,219.71642,2.0300438e-05 142,0.73626995,323.53143,13.127007,50.11786,1.5076313e-05 142,2.0715268,153.05048,29.41602,147.06396,1.2046497e-05 142,600.76733,33.98778,38.379333,215.56557,1.0717963e-05 142,0.7692562,367.07523,20.123642,101.657745,1.0132594e-05 142,1.0578126,175.24268,13.893353,55.513763,8.447695e-06 142,1.3399553,137.64146,13.476451,50.30957,7.84137e-06 142,1.4745085,66.06437,18.00088,73.52227,7.740723e-06 142,556.5631,430.1069,82.58356,69.68738,7.2900534e-06 142,0.94487065,439.94928,21.406725,62.711884,2.4969627e-06 142,320.35873,111.60692,113.42786,246.69508,2.2250208e-06 142,5.5610256,359.04205,77.40724,124.806854,1.0400632e-06 142,229.43297,438.46445,72.27522,62.29364,6.9901836e-07 142,488.0471,432.46802,73.68576,69.254974,5.111377e-07 142,59.535965,429.16434,71.69978,72.6741,3.3886755e-07 142,182.55042,435.05902,72.10672,65.86786,2.9086834e-07 142,3.8598862,41.91371,80.30976,251.71605,2.3129705e-07 142,2.3219435,25.418278,55.593876,97.35458,2.2669231e-07 142,99.54825,430.25732,73.87221,72.33127,2.1034423e-07 142,1.142898,9.282769,18.74903,51.86952,4.549479e-09 142,199.90407,0.41190594,39.474564,48.233154,1.09578204e-14 143,300.0594,209.00415,23.18512,54.68979,0.005540105 143,79.776375,178.39369,25.059204,56.368835,0.0037975053 143,611.0697,361.2168,28.076965,145.62997,0.0007063632 143,396.21808,144.51445,43.35257,93.542725,0.00057469617 143,617.4697,58.307606,21.67694,84.70744,0.0004606378 143,1.3002832,222.58958,17.326012,72.33351,0.0004507815 143,611.02203,202.39734,28.124634,178.51285,0.00039685905 143,616.9837,323.80353,22.162964,89.52878,0.0003901947 143,317.95422,129.38394,22.623688,45.12297,0.00038096582 143,17.610317,221.01282,37.0477,60.21051,0.00029698125 143,612.0898,97.07497,27.056885,159.3514,0.0001807855 143,304.40924,108.07538,40.22928,101.17137,0.00016889515 143,1.1010823,262.76642,18.124693,76.91766,6.115187e-05 143,3.8568523,185.03203,57.465374,218.21935,4.215315e-05 143,0.92199385,391.318,18.383781,76.133514,2.60181e-05 143,586.46466,12.78446,52.489075,105.58801,2.2587761e-05 143,585.3929,53.355404,53.753784,288.96008,2.1917544e-05 143,1.3754643,124.14016,13.2395735,48.54014,2.0637752e-05 143,608.822,3.190843,30.324646,59.304188,1.4691973e-05 143,4.8514843,89.27469,77.741425,203.89072,1.3866796e-05 143,1.5918645,60.754383,19.357492,85.79224,1.3150886e-05 143,0.7003784,343.841,13.720146,50.21295,1.2056795e-05 143,1.4894979,298.32138,32.41041,187.51706,1.1795462e-05 143,555.2911,429.41452,83.85559,72.31506,7.1105383e-06 143,375.73257,98.49012,106.21561,237.509,7.0069655e-06 143,2.1117237,137.09262,29.44153,156.95374,5.817683e-06 143,1.174646,441.79974,21.51803,61.011353,5.062161e-06 143,425.94492,431.43054,82.17615,70.23474,4.284278e-06 143,245.7634,47.57173,47.97348,139.03879,2.6496612e-06 143,2.3154428,15.55168,57.10854,119.15819,1.4743395e-06 143,71.41513,433.06055,75.18092,67.783325,1.4179557e-06 143,9.455257,430.58505,73.88844,68.36813,1.0178944e-06 143,474.15955,432.51385,72.27283,66.30734,9.875391e-07 143,291.3617,68.03992,77.507324,181.21077,7.61185e-07 143,217.23466,38.615196,116.55498,218.83151,4.5277213e-07 143,0.85121256,9.88558,10.587388,86.35568,1.4852787e-07 143,110.979,63.788902,76.67956,195.93698,5.032092e-08 143,1.6593083,8.883505,29.044306,55.880875,1.112566e-08 144,517.4186,89.20428,33.166626,75.65713,0.010345981 144,346.66412,173.45567,23.703217,54.52365,0.002735223 144,81.260124,150.58542,30.12967,64.448105,0.0026062648 144,621.5716,194.94627,17.575073,54.394333,0.0009900354 144,388.3863,106.59553,35.300537,67.56306,0.00071438827 144,617.51746,322.79984,21.629211,85.45599,0.0006696937 144,612.1641,109.74235,26.982544,147.74774,0.00048405392 144,472.08908,92.31968,32.427795,79.22784,0.0003526361 144,606.9444,435.82507,32.20227,72.25076,0.0003251519 144,601.16077,306.0495,37.9859,183.81635,0.00029420003 144,2.4159431,190.95982,32.3279,70.37599,0.00020074585 144,409.8914,108.230896,35.88263,72.21431,0.00016828724 144,585.4454,96.17539,53.167603,263.54837,0.00016641122 144,617.257,84.84511,21.889648,79.408035,0.00014777538 144,441.7875,120.11337,27.112152,56.681915,0.00014554955 144,612.0709,239.60258,27.075745,128.59981,8.741207e-05 144,1.0947648,222.50043,18.39868,75.91922,7.723776e-05 144,615.89905,21.431355,23.24762,85.88896,3.4818648e-05 144,1.5053166,150.67279,18.816692,82.425476,2.0542751e-05 144,0.5083903,363.44232,13.737707,48.361877,1.2902454e-05 144,1.6643107,220.41995,30.24331,176.93463,1.1666293e-05 144,446.9532,432.1184,88.20221,70.10797,1.1008985e-05 144,0.68068933,330.49112,13.217546,47.44052,1.01649985e-05 144,0.7340088,274.96918,18.283045,74.69519,1.0051633e-05 144,0.93149906,327.08893,18.53841,133.36435,8.782053e-06 144,3.7079575,139.96136,57.681156,222.4397,8.700324e-06 144,1.6519043,53.14402,19.480667,81.746376,5.381966e-06 144,0.8661589,420.1551,13.5116005,81.20639,5.1607726e-06 144,331.65015,152.61801,75.33331,169.16632,3.8260273e-06 144,2.306364,433.75455,44.095985,65.32474,1.3850031e-06 144,3.730389,338.4041,57.165127,144.43423,9.375905e-07 144,1.4450684,0.0,85.20226,286.22055,7.926901e-07 144,516.74457,433.3962,80.66553,65.84259,5.224333e-07 144,2.0343652,13.512442,57.540283,119.93688,4.9584844e-07 144,295.3814,42.88049,75.839386,199.25626,3.1593882e-07 144,1.654218,7.9066634,25.799767,81.15219,1.4785395e-08 144,297.29843,0.630944,44.52655,49.76334,6.491353e-11 144,260.5139,0.0,41.198914,49.592976,2.648851e-11 145,14.352997,211.98955,29.526241,59.3618,0.38377392 145,570.2992,89.87747,42.833984,120.83707,0.068938054 145,70.471085,184.07838,40.06241,81.59761,0.043772127 145,580.43085,116.66304,24.57312,54.822113,0.006793214 145,94.13535,182.68355,28.307983,67.72937,0.0030760427 145,620.10095,222.02649,19.045715,60.46643,0.002334884 145,625.51953,352.34967,13.627136,45.659058,0.0013815826 145,616.79004,128.57082,22.356628,92.43735,0.00071399595 145,1.8260609,207.3929,19.90976,81.08482,0.00068023126 145,584.0162,98.489845,53.90039,272.366,0.00065347634 145,428.35147,148.12746,33.861877,73.1039,0.00055660156 145,3.3113153,96.86667,50.57906,202.28955,0.00043668546 145,610.0598,165.95256,29.086853,155.93785,0.0003800876 145,54.34219,199.68489,24.89896,50.242874,0.0003546143 145,611.7938,321.60257,27.352844,153.56042,0.00027627082 145,608.19275,439.7272,30.953918,71.04959,0.00017604504 145,609.7937,15.453868,29.352966,176.16624,0.00016298954 145,557.42194,133.18985,26.348877,65.42169,0.0001429661 145,0.9612061,264.04068,18.041658,75.96045,6.534425e-05 145,1.7357739,230.2899,27.848026,161.0548,5.8762653e-05 145,5.537002,133.0452,110.80324,239.73004,3.8454084e-05 145,0.6466447,307.37943,18.33593,76.32883,3.764851e-05 145,607.8795,0.16918945,31.26715,69.309525,2.0927513e-05 145,0.89204264,405.19092,18.243643,72.93576,1.294642e-05 145,523.0115,52.532253,82.33966,193.36433,1.25053675e-05 145,1.4921713,109.808205,18.731598,80.55578,1.1726684e-05 145,0.85475916,363.4518,17.92006,75.74509,8.1326425e-06 145,372.7434,185.88849,75.38083,169.67786,7.445501e-06 145,1.1225977,453.03094,28.637066,53.320587,3.8113733e-06 145,3.5438168,344.49127,56.523167,140.20087,3.0219646e-06 145,1.1725774,52.891968,19.083296,86.420685,1.0021421e-06 145,73.08926,428.87698,72.78915,69.98105,7.3791915e-07 145,356.4733,51.78179,71.336975,184.88992,4.7978494e-07 145,3.122012,18.990898,80.67537,170.42563,3.630515e-07 145,2.0825717,10.47308,38.367466,79.60405,1.2033753e-07 145,317.75668,17.874388,43.733795,111.592255,1.0332314e-07 145,313.98822,0.0,47.776855,47.004936,2.1352599e-10 146,34.27378,160.91875,34.31595,75.90689,0.71535945 146,621.3797,338.39438,17.766968,54.829224,0.029749889 146,601.5755,83.70126,36.051697,91.19885,0.013550697 146,12.620167,168.2214,65.52054,125.62201,0.009332339 146,496.1112,74.12385,24.983826,62.919716,0.0023095536 146,448.13333,136.85558,34.907104,70.1613,0.0015459366 146,623.9591,118.5107,15.187561,46.787247,0.0010016157 146,613.9438,122.79453,25.20288,95.33758,0.0009867495 146,612.3804,318.7329,26.766296,128.31674,0.0008537221 146,621.62494,68.91874,17.521729,56.822777,0.0005528456 146,587.0538,110.12369,51.66925,286.33206,0.0004908113 146,617.1625,173.18304,21.984192,92.73929,0.0003225228 146,587.5729,9.930111,50.52722,114.29164,0.00026873098 146,617.05853,280.13574,22.088135,95.04407,0.00026813656 146,1.5177068,186.35226,28.562893,108.05496,0.00019606607 146,434.6597,196.47885,25.602905,61.265076,0.00013368487 146,1.1729062,191.23117,13.963891,55.634644,9.7365395e-05 146,431.45667,208.85391,43.883514,124.93167,8.6085434e-05 146,573.2358,344.45203,65.91089,142.30585,3.323889e-05 146,0.6997632,231.74974,13.794768,54.065567,3.0983472e-05 146,0.81585616,272.63052,18.265049,72.88547,2.9301571e-05 146,608.80176,0.0,30.34491,69.31807,2.4569576e-05 146,0.8094255,317.3071,18.513414,134.0597,1.2623512e-05 146,438.3795,58.95958,82.12491,205.67162,1.1504477e-05 146,1.0743629,153.156,14.033909,57.10788,1.0031981e-05 146,0.99741703,427.61948,16.6558,75.2561,9.468966e-06 146,1.6400374,83.73951,18.392443,75.30613,8.817702e-06 146,3.5187778,230.63626,57.96106,236.2789,3.42976e-06 146,6.4580374,95.35977,121.59186,258.52316,2.5823103e-06 146,3.7152345,397.57083,55.535786,95.28085,2.471485e-06 146,1.8527572,53.413334,30.926815,198.1636,1.7767281e-06 146,2.7595623,19.399134,56.972,110.91146,1.2187597e-06 146,356.8898,9.683997,123.26645,261.9691,8.351132e-08 146,1.0447038,11.214574,12.395938,79.82256,8.338749e-08 146,334.82178,1.577588,41.414276,46.509796,7.113017e-11 147,47.24445,172.12122,22.336506,50.96379,0.0030970706 147,462.417,190.60785,25.244904,48.53247,0.003021313 147,516.8781,131.09827,39.049133,76.82884,0.0007438222 147,616.5246,298.1398,22.62207,93.59241,0.0004745783 147,1.660446,186.9775,18.777689,88.82799,0.0004278274 147,617.2023,357.7351,21.944397,85.91464,0.00020386203 147,609.15906,3.1083887,29.84491,57.196133,0.0001825826 147,616.4874,157.2018,22.65924,77.90105,0.00017215898 147,587.80237,152.25562,50.95941,276.16855,0.00016329746 147,33.642742,156.00253,43.66788,97.153534,0.0001284669 147,617.2377,53.36177,21.908997,89.5363,0.00010005359 147,2.2717562,101.239075,32.792404,193.09802,8.666534e-05 147,602.11176,297.10666,37.034912,196.44324,8.0744474e-05 147,462.81146,146.26468,35.190582,68.673615,7.28477e-05 147,504.2573,212.95804,83.50235,187.85394,7.240885e-05 147,0.80727255,264.42526,13.4147835,49.443024,4.172384e-05 147,587.2205,13.033041,51.63678,93.965004,2.9020859e-05 147,602.9624,69.829636,36.184265,160.46822,2.8658527e-05 147,5.173851,162.21806,77.97693,241.63356,2.797197e-05 147,578.7926,425.79605,60.354065,78.68198,1.8000566e-05 147,0.9322233,253.99477,18.98481,139.52882,1.4988319e-05 147,112.09495,78.88076,63.587685,147.27637,1.0748221e-05 147,1.1439096,119.99115,18.8705,83.81508,9.889493e-06 147,0.78502685,405.55695,18.045088,71.49542,9.7048005e-06 147,0.70203453,365.80435,18.160418,72.00113,7.3444417e-06 147,1.4455062,456.8509,27.924564,48.479523,4.7891663e-06 147,126.96982,130.85219,28.236008,61.60521,3.526948e-06 147,1.4014258,357.04596,31.269808,136.91125,2.7865249e-06 147,1.1959229,67.303986,18.229233,75.11311,2.775587e-06 147,175.42839,431.80823,79.17029,69.30148,1.3968939e-06 147,120.02273,431.90933,77.83634,71.042725,6.3414655e-07 147,502.27255,434.26437,75.0477,65.84042,3.8505362e-07 147,381.3608,49.300266,75.9155,187.73692,3.763312e-07 147,73.42075,429.60355,72.37701,72.238434,2.6630153e-07 147,449.31476,66.314964,73.857605,183.49274,2.2732056e-07 147,2.804118,23.692553,84.415764,222.9661,5.1911936e-08 147,1.3806405,23.887072,19.443117,75.1139,5.920673e-09 147,1.7851824,18.869337,34.29409,155.43568,4.2251447e-09 147,1.8790365,4.987507,37.674408,47.717796,9.57556e-10 147,251.6809,3.942741,41.67433,50.086315,4.6199047e-10 148,4.560179,100.70436,38.31202,113.31369,0.06481072 148,0.9489136,118.93836,16.075537,76.95435,0.0060057724 148,604.4311,128.48175,34.273987,77.47145,0.0023485422 148,12.37212,154.195,23.445103,48.901047,0.001992955 148,23.567032,122.00266,31.451588,66.52239,0.0015689742 148,420.1216,160.04268,37.782135,73.45712,0.000820815 148,609.7972,344.26196,29.349487,162.88159,0.00068050384 148,37.344505,66.63787,39.147568,82.712,0.00063809275 148,0.92785686,95.29098,11.23156,45.675575,0.00034339016 148,611.43475,157.92238,27.711914,143.89699,0.00024820137 148,3.7681837,63.464798,78.59254,218.43709,0.00015963704 148,615.94836,58.022682,23.198303,95.427895,0.00010057402 148,1.4165487,145.78235,30.326797,167.51422,9.166438e-05 148,1.3753362,217.10182,18.365126,71.96629,4.9558446e-05 148,604.1624,209.5204,34.984253,233.08955,4.894082e-05 148,373.23892,94.519226,27.648499,67.974594,3.4674635e-05 148,607.82605,6.413177,31.320618,52.88254,3.2765354e-05 148,616.47095,297.2371,22.67572,95.27289,2.549837e-05 148,366.4747,55.844456,25.671417,55.293385,2.299999e-05 148,0.82669234,272.81516,13.273621,50.241516,2.1415133e-05 148,584.0468,7.1957035,54.76538,236.90091,1.7182818e-05 148,1.11198,267.5488,18.925093,141.48138,1.5505211e-05 148,1.0046412,384.8432,16.70667,111.88245,1.2426239e-05 148,359.145,56.09217,41.33737,164.12943,9.625054e-06 148,414.86612,84.06382,71.92758,188.25687,2.9715973e-06 148,3.5535336,392.5322,55.289932,99.49939,2.7717674e-06 148,1.9643278,10.055039,59.605648,139.04921,2.5286474e-06 148,3.7459393,235.50433,55.11625,229.35947,1.762676e-06 148,1.312823,29.523073,19.967758,89.352684,1.971544e-07 148,336.5495,4.0795445,119.655,263.73096,1.3604958e-07 148,1.3113152,7.4419565,31.892065,61.79074,8.425046e-08 148,177.20702,3.614865,42.243256,48.051373,4.6492907e-09 148,359.93784,2.5419173,43.527588,49.666965,7.140002e-10 149,275.95096,176.21448,24.070496,46.876602,0.07147977 149,59.621258,94.01717,26.307186,59.73449,0.035735693 149,204.06091,83.42164,29.104568,64.627205,0.00979988 149,36.194366,85.94633,27.593376,58.730003,0.008674861 149,519.4601,169.5736,36.93103,79.2113,0.0016792296 149,548.9161,212.45836,25.331238,45.272232,0.00066724635 149,1.0173694,187.62306,13.511557,51.1763,0.00036744273 149,42.92357,82.87818,46.555794,122.06347,0.00034703658 149,187.902,54.498203,46.424286,152.96965,0.0003144372 149,617.6785,207.17352,21.46814,77.5578,0.00018192423 149,1.309572,218.82292,18.392591,70.23778,0.00012510763 149,1.102837,116.01852,19.685886,142.67441,0.0001224488 149,92.977715,86.56281,26.321075,56.756355,9.709297e-05 149,611.787,77.39474,27.35968,145.36752,9.706853e-05 149,599.0307,417.10272,40.115967,87.030426,6.107809e-05 149,3.9519157,111.097244,58.563072,230.19872,5.7226942e-05 149,506.13153,119.910065,83.34796,153.07986,5.6093962e-05 149,602.10754,162.53503,37.039124,176.06262,4.5461817e-05 149,0.9336906,252.99063,16.842524,147.35855,4.0447543e-05 149,205.73433,118.21727,23.153122,56.81932,3.3019973e-05 149,1.0129371,356.86667,17.71818,74.55237,2.7450833e-05 149,1.6794482,317.0168,28.888521,165.3919,1.3361957e-05 149,1.2783456,75.28106,18.43131,71.437874,7.31426e-06 149,1.0110637,439.24005,20.706064,65.42038,4.5873903e-06 149,277.92017,77.80556,44.22766,158.96187,4.3914347e-06 149,161.8198,11.0004425,110.21228,266.76013,3.6244835e-06 149,5.0000296,354.32712,77.87243,129.87048,3.2349171e-06 149,31.461493,34.456394,121.01421,272.93988,3.232524e-06 149,612.5385,1.8163639,26.608154,57.93964,1.6033317e-06 149,253.00652,31.140196,115.99678,263.3667,7.5016044e-07 149,3.8173797,23.882826,82.93727,152.23093,1.6733489e-07 149,0.78456706,10.306553,14.148366,83.77664,5.309517e-08 149,70.74023,2.7563672,48.01397,55.52172,4.9964854e-08 149,322.52554,19.182598,75.57156,205.24196,4.9772815e-08 149,175.23727,4.1855793,43.300797,55.194366,1.9706933e-08 149,1.6976612,9.549717,53.599045,79.50569,1.7369892e-08 150,333.40872,165.7702,21.68219,46.71254,0.0078984015 150,148.33064,102.2659,28.582336,52.80751,0.0054222364 150,34.13443,193.46347,42.83712,73.52173,0.0045390856 150,620.60986,104.782936,18.536804,54.371223,0.0035643298 150,88.27352,203.69286,31.806366,72.68727,0.003145964 150,607.35187,70.442116,29.4823,65.17451,0.0019796216 150,0.88371503,155.10158,18.863548,86.52342,0.0014049378 150,434.56387,149.23277,22.620422,46.209793,0.0010576107 150,67.40291,170.25471,34.627228,68.16362,0.0010439892 150,22.323301,124.4012,88.117065,206.82951,0.0007288576 150,310.6206,162.45943,25.979004,55.79335,0.0003281099 150,610.78436,102.7307,28.362305,148.0113,0.00023784787 150,1.769821,150.39833,32.75144,189.11446,0.00023270668 150,183.47977,202.09454,24.315445,57.086456,0.00017265652 150,611.28784,234.87201,27.858826,165.67267,0.00017192667 150,141.69112,78.40868,44.872406,134.63528,0.00015342105 150,144.93227,196.4825,29.447357,70.66246,0.00014685658 150,587.55426,106.50731,51.25128,269.33392,0.00011988167 150,0.9102051,215.09773,18.480906,77.87343,0.00011194936 150,594.86395,24.496563,44.101257,173.93498,9.227211e-05 150,196.32767,195.70018,24.452545,56.650345,8.4917556e-05 150,0.78739506,56.79875,19.433367,89.593185,7.1922004e-05 150,357.40897,122.695564,79.64444,168.961,6.443354e-05 150,1.3159823,252.52295,20.214216,104.29196,5.255087e-05 150,599.3592,417.8997,39.787476,86.33615,4.28418e-05 150,3.219227,229.00203,56.698593,228.32683,2.5407246e-05 150,0.97822267,317.5351,18.789404,136.21115,1.689427e-05 150,0.8066773,419.58066,14.381578,83.73013,5.008981e-06 150,146.27164,21.008406,60.873886,137.72104,3.1841935e-06 150,3.3082993,390.32037,56.94988,105.579956,1.3691728e-06 150,65.8073,48.71497,79.63669,193.7677,9.4684924e-07 150,126.318245,0.0,117.467445,269.50412,8.7069935e-07 150,1.9969825,14.251426,56.386703,116.63494,7.363782e-07 150,1.2172062,12.497432,25.564861,73.03797,3.0911733e-07 150,154.34555,5.592923,43.555573,49.282738,7.1763915e-09 150,129.71146,5.5656185,44.27664,51.6821,3.2745306e-09 151,559.9522,211.84035,23.718323,48.58931,6.4759436 151,145.85474,143.86264,28.353012,68.385086,0.27054235 151,130.76392,166.0825,45.31282,95.35063,0.014350584 151,162.98727,145.49176,44.173508,138.65909,0.004914713 151,553.01105,173.25305,48.21399,102.50833,0.0042234645 151,196.5765,217.91301,26.283493,50.779068,0.00292719 151,168.78639,161.08879,26.378159,66.34512,0.0019941435 151,624.8703,104.286514,14.276367,45.417603,0.0019746192 151,191.08777,164.89644,45.32904,116.992905,0.0018686125 151,618.94244,53.861374,20.204224,68.942,0.0015656906 151,621.4482,173.34818,17.698486,54.63394,0.0009816174 151,490.35162,118.46991,27.866333,56.84868,0.00083348475 151,1.1068884,225.79483,13.581544,52.690735,0.00071421935 151,168.25061,209.79652,25.983917,53.46321,0.0005495612 151,15.688443,207.12347,47.39612,75.84335,0.0005140867 151,187.7011,159.6773,26.161041,58.930435,0.00050745043 151,583.24365,9.949942,55.903015,113.705696,0.00043431154 151,610.7288,63.78103,28.417847,157.94232,0.00034886232 151,582.13995,159.81422,56.689148,251.8773,0.00033992334 151,623.9074,36.692062,15.239258,46.8908,0.00031268547 151,1.0558414,162.23834,14.106099,55.195328,0.00019521006 151,613.25616,269.64307,25.890503,102.66431,0.00017212387 151,581.7216,383.29425,57.42505,110.85254,0.00016846499 151,91.06826,157.06255,33.714035,77.48874,0.00012498254 151,1.8944613,181.6637,28.108873,151.34778,0.00012083183 151,184.37657,215.55005,23.359253,45.649506,9.0728056e-05 151,1.514681,250.51587,18.200798,137.19754,6.9211186e-05 151,1.0636214,57.680042,13.363698,46.86324,4.379891e-05 151,105.452736,120.51308,108.19688,209.2115,3.722785e-05 151,3.4074528,105.260376,57.58091,220.59079,3.41869e-05 151,0.9705591,89.1206,20.103363,159.96729,3.3960347e-05 151,3.1488688,236.33147,57.34254,226.71376,2.1984153e-05 151,172.36879,124.62957,113.61116,207.10574,1.877806e-05 151,1.0999463,329.3001,19.475746,135.74976,1.602125e-05 151,0.8277946,411.88147,13.65751,48.06488,1.1020792e-05 151,1.0776871,441.23755,21.78897,62.366302,2.3286727e-06 151,2.9617724,390.29898,56.838867,103.23581,1.4035012e-06 151,1.6720068,25.687624,33.411106,146.42381,8.6231023e-07 151,1.3007593,12.013568,25.698269,73.08485,1.2539164e-07 151,115.46344,4.23999,42.459686,46.674965,1.0828415e-08 152,601.5186,219.8524,34.62976,75.903915,0.034816865 152,621.7174,216.49751,17.42926,51.51213,0.00582417 152,623.99567,292.9189,15.151001,49.08905,0.0029165847 152,4.9605956,95.43108,29.116,63.477028,0.0017194378 152,590.40125,150.76836,47.84442,228.76787,0.0011949099 152,610.55396,126.37151,28.592712,148.89941,0.0007377002 152,13.656918,127.06391,44.03864,84.29929,0.00072852685 152,2.3623462,238.52841,32.42895,79.17474,0.00059848704 152,617.3632,244.3986,21.783447,80.4669,0.000586711 152,1.4558105,279.16998,19.023018,81.106445,0.00055752805 152,4.1804137,106.08687,68.65082,204.89522,0.00045028186 152,581.35516,389.67862,57.791504,107.04468,0.00035098873 152,56.968113,163.81049,26.678059,50.115448,0.00034980243 152,479.20776,216.54494,42.352844,70.96361,0.00021042596 152,1.4023291,240.73587,13.452606,56.36389,0.00020045697 152,1.8093197,262.468,31.002058,181.99042,0.00010416752 152,1.3369613,120.0874,19.51695,88.894455,8.131236e-05 152,611.1106,10.794167,28.036072,130.04355,3.184036e-05 152,1.2543482,190.0621,18.95768,85.37451,2.9984536e-05 152,0.605448,325.37106,13.791142,53.125793,2.0356778e-05 152,585.6941,5.2314453,53.452576,259.30624,1.9351022e-05 152,466.85257,155.02226,82.013336,171.92467,1.1552709e-05 152,1.6918571,14.112435,57.120422,116.19317,7.5629246e-06 152,0.5913745,390.10455,18.37649,72.931854,6.49993e-06 152,0.56067586,370.49786,13.606091,47.366943,6.291351e-06 152,1.0175139,441.77924,21.58796,61.769318,2.4138096e-06 152,5.570964,351.44922,78.80956,136.3935,8.171339e-07 152,1.4542838,37.374783,20.108572,90.89523,4.5812584e-07 152,1.3166829,8.338148,31.456884,59.763298,1.5321226e-07 152,471.18198,5.65335,43.968475,45.190998,5.980885e-09 152,497.667,3.3565495,44.76581,51.658558,3.4526222e-09 153,407.75726,245.37854,29.80774,45.71878,99.45227 153,602.81415,212.00938,33.348877,77.515366,0.046336643 153,617.5037,287.47052,21.642944,73.973755,0.005291437 153,622.897,220.4612,16.249695,50.301376,0.0052820295 153,624.2769,257.94766,14.869751,50.101105,0.0021724687 153,607.457,240.57303,31.689697,174.90338,0.001999952 153,585.02,155.34425,53.08252,208.37376,0.0018694111 153,589.1722,182.47662,34.520935,78.51163,0.0008969876 153,620.4914,120.126816,18.655273,61.25386,0.00026294432 153,616.09454,158.81674,23.052124,93.32237,0.00021008868 153,582.58673,392.55252,56.559937,105.158905,0.00020693382 153,616.27625,59.346485,22.870422,88.43509,9.237151e-05 153,0.9255217,91.31452,13.551474,50.63163,6.526005e-05 153,394.3755,202.49245,62.24463,112.5529,6.067628e-05 153,1.0772583,312.5141,17.972595,70.89203,3.935789e-05 153,606.6437,1.104567,32.50299,62.911797,3.3959797e-05 153,0.9927702,121.110306,18.422352,76.118164,2.6010408e-05 153,0.9993571,219.91753,17.998095,77.82362,1.8836603e-05 153,0.76840824,360.94925,20.677921,107.7742,1.3750016e-05 153,1.4981681,265.53122,32.661823,172.11093,7.20317e-06 153,1.5408195,131.51598,32.14553,192.4757,5.4553557e-06 153,0.77123946,420.4512,15.988299,82.36557,4.6706828e-06 153,5.263158,216.93532,76.97495,247.30208,4.29838e-06 153,601.51776,30.074974,37.628906,187.47394,2.9102998e-06 153,365.10944,148.18721,138.74283,240.2018,2.099123e-06 153,1.108925,18.50088,19.714293,120.53828,1.1401006e-06 153,3.1144142,394.03745,56.706024,101.210846,1.0534659e-06 153,4.7677736,20.333445,79.16274,139.84897,6.657624e-07 153,2.1094549,12.691406,50.821896,66.15164,1.4237274e-07 153,446.7874,3.1957097,48.6575,52.398876,1.573492e-08 153,61.364346,1.2465137,42.851955,50.400723,6.0036065e-09 154,307.9417,255.01591,28.66977,54.536118,99.15604 154,324.82468,255.59766,25.9711,45.584076,1.1188989 154,589.2947,218.7222,44.183777,111.19165,0.016986495 154,618.2726,234.64886,20.874084,70.5892,0.007467954 154,620.8139,107.252815,18.332764,66.47196,0.0053917216 154,228.08372,98.487816,32.37834,57.487312,0.0032537521 154,529.1158,228.74982,29.660767,61.542755,0.002416528 154,294.53702,234.39433,60.122375,96.47261,0.0014948543 154,610.35077,257.3439,28.795898,150.47995,0.0012522088 154,307.45218,127.62614,33.690063,69.98359,0.0005803414 154,568.2458,137.5314,69.82849,260.1202,0.00023364935 154,610.73535,19.8445,28.411316,148.50462,0.00020138553 154,617.3272,151.88318,21.819458,88.68576,0.00020004676 154,607.1622,436.76328,31.984497,72.04596,0.00017990098 154,603.4439,97.26254,35.70276,188.03638,0.00012856716 154,571.2609,367.30798,67.88574,130.11807,0.0001034409 154,472.67334,155.6848,40.1261,127.24281,4.2336906e-05 154,481.971,181.44655,25.318054,55.93416,3.106472e-05 154,1.1935971,54.89896,18.91394,73.03201,2.729577e-05 154,608.1345,6.072868,30.839783,52.483135,2.6727312e-05 154,0.8126311,234.71597,17.94913,74.06143,2.4383351e-05 154,1.0034286,325.6554,18.17067,73.87253,2.2728258e-05 154,483.7249,144.61435,72.06799,159.10489,1.8845409e-05 154,1.1905648,114.485435,18.042536,68.18548,1.587878e-05 154,0.8021558,363.2071,18.43027,130.88913,1.4291632e-05 154,0.8521989,135.02199,19.280842,136.04738,6.7892993e-06 154,1.3321233,268.6791,31.280548,172.10654,5.256631e-06 154,1.7641699,18.535505,57.17596,104.134186,4.1091307e-06 154,3.3754346,94.28736,58.25288,259.91562,3.0362817e-06 154,265.08017,152.2819,132.70285,246.05339,2.7189863e-06 154,3.298584,340.22495,56.840885,141.62793,1.8790022e-06 154,0.7065267,6.556494,31.973814,67.76003,5.8962325e-08 155,160.96063,247.99303,45.218796,72.808975,99.86259 155,188.00398,249.95842,26.85173,49.428635,1.7430793 155,422.43146,215.4154,28.79007,73.80594,0.017001744 155,129.09456,73.096756,30.615494,60.980972,0.0073265806 155,618.8523,282.72208,20.294373,70.73639,0.0036401462 155,622.1744,98.37525,16.97229,48.94828,0.0013504736 155,610.6149,100.22163,28.531738,136.42776,0.00041878538 155,0.8340137,102.37318,14.2668915,53.50048,0.00033955276 155,600.83154,263.66855,38.315125,189.56454,0.00029873615 155,610.99286,182.01192,28.153809,152.15709,0.00024555245 155,1.0129248,64.957985,14.03695,59.575455,0.00018448167 155,156.58636,220.47424,24.234756,47.337982,5.6571447e-05 155,585.942,387.95584,53.20465,107.52292,4.9996936e-05 155,1.5909611,117.0749,33.0382,196.46057,4.284899e-05 155,2.5327637,13.603262,57.599827,113.03181,3.5520356e-05 155,139.47858,205.10583,91.712204,182.44275,2.790488e-05 155,0.7879916,316.49484,18.16971,144.81247,2.5179637e-05 155,0.8235816,123.70896,19.483988,91.43876,2.1884209e-05 155,1.5507194,215.05244,18.44266,79.78313,1.6560049e-05 155,3.3943896,170.97183,56.77211,233.12927,1.55614e-05 155,363.37955,138.19272,41.459198,133.32166,1.2267398e-05 155,1.2510856,261.60773,18.163252,73.455444,1.0681596e-05 155,1.6774496,44.229954,29.922726,154.1143,7.546151e-06 155,0.4787842,414.41168,16.558876,84.49469,7.232025e-06 155,367.80988,168.3325,26.250275,52.37964,5.8769606e-06 155,584.0948,26.036589,54.61841,255.0618,4.4569583e-06 155,3.002951,335.19888,55.268578,146.72113,1.454819e-06 155,2.0082977,0.0,80.847755,280.7475,1.0095782e-06 155,1.0329146,8.3497305,13.141279,91.37736,9.2439006e-07 155,1.1480045,5.862826,42.84056,50.000664,3.1833233e-07 155,114.29274,7.7800326,83.49684,201.87363,7.442939e-08 156,0.68569905,66.078896,13.857999,55.510597,0.0010867389 156,531.0664,254.49042,26.079895,48.284058,0.0010846929 156,607.1366,398.3276,32.01007,103.81125,0.00037848484 156,612.0989,81.14079,26.93335,117.968124,0.0003468129 156,617.98505,270.48425,21.161621,75.197784,0.00034039892 156,0.98066735,95.29488,18.481646,77.9701,0.00029948464 156,273.46167,212.8386,36.587006,90.0311,0.00022317634 156,587.3149,268.40912,51.55487,206.55017,0.00012799363 156,284.4558,201.0264,25.583221,50.799698,0.000114486844 156,239.07977,191.19194,33.710724,78.78462,7.1570044e-05 156,296.44168,204.44211,38.454956,102.777405,6.952622e-05 156,1.1157862,100.14057,28.423643,161.72943,5.8155358e-05 156,0.8804248,228.43883,18.64749,72.15907,5.2407235e-05 156,202.41667,111.15149,54.70958,148.5333,4.3763423e-05 156,611.322,183.16156,27.824646,145.24667,2.848773e-05 156,0.8409514,338.14255,18.112349,67.901825,2.8396213e-05 156,0.6048649,199.628,13.76084,54.356735,1.8570017e-05 156,1.5315511,26.06215,33.4223,137.05478,1.4908217e-05 156,1.2401261,214.72603,30.425207,172.61028,9.116712e-06 156,0.773055,404.272,18.00043,72.60211,8.84192e-06 156,1.315223,330.2711,31.55611,153.08548,6.6715074e-06 156,615.8394,29.618406,23.307251,91.301384,4.725902e-06 156,4.9375687,124.74771,76.87799,272.3968,4.6739533e-06 156,0.95030683,450.8347,17.806482,52.515015,4.4026892e-06 156,584.18964,0.0,54.95703,203.44449,1.4828677e-06 156,7.0074577,394.38437,116.97986,99.097046,7.6508877e-07 156,12.210884,444.29437,44.362827,56.44455,4.8361255e-07 156,86.4756,429.01907,69.35724,68.664734,2.7978834e-07 156,70.61833,443.521,42.138504,58.47943,2.1542772e-07 156,0.5683903,8.955635,31.199293,64.07181,1.8603151e-07 156,304.73517,3.903903,42.88977,50.74744,1.6229468e-09 157,2.811958,145.25748,39.191444,105.061874,0.16175014 157,0.9019523,180.46828,12.021766,48.730972,0.0072774203 157,44.515026,138.8876,48.452763,97.1194,0.005367283 157,23.97342,95.51408,92.077065,221.31656,0.0034545884 157,605.1749,130.06444,33.89209,82.05998,0.0011386116 157,608.1146,246.28862,31.032043,150.66145,0.001026462 157,19.091732,127.15392,42.431953,159.66422,0.0009964118 157,1.1101391,137.74385,14.9624815,66.6042,0.00089312333 157,54.922096,172.40764,25.438766,48.968674,0.00087138097 157,66.3432,157.06317,24.135262,49.40268,0.00062167895 157,1.4998405,163.76886,20.485622,157.1817,0.00032463387 157,64.97925,66.72158,61.77642,164.65863,0.00021220585 157,570.89557,360.48727,67.9339,131.9382,0.00017173133 157,0.86849004,56.71824,13.377695,49.08487,0.00015439698 157,617.3465,72.492485,21.80017,78.104485,7.842743e-05 157,0.8085946,258.37976,16.125189,139.77322,3.528961e-05 157,609.0727,440.95605,30.073975,70.19061,3.446039e-05 157,3.2990139,185.44426,57.219074,244.0623,3.0559197e-05 157,1.041224,70.58455,18.533642,80.19238,2.877459e-05 157,584.20416,0.0,54.343933,260.4112,1.9836649e-05 157,87.59788,155.14923,77.43537,173.92407,1.1871592e-05 157,0.7091496,335.77917,19.144642,128.96979,1.0290314e-05 157,0.69384116,425.255,13.623196,46.292297,7.335272e-06 157,0.9529655,440.8421,21.477552,61.33374,1.6606632e-06 157,5.2200036,352.00482,79.44952,132.31958,7.6130107e-07 157,1.4017806,15.552175,35.82898,179.79321,1.12270506e-07 157,1.0732414,10.713183,25.019718,74.37976,4.0776158e-08 157,67.67852,4.5699058,43.342514,51.56239,2.275867e-09 157,585.30023,3.5539079,42.52069,46.99761,1.095158e-09 157,557.9446,4.329987,44.145264,46.029736,2.4851859e-12 158,620.53314,110.97995,18.613525,59.796432,0.0024643412 158,1.0862231,108.75628,22.08654,55.84527,0.0022450741 158,610.99054,96.90445,28.156128,156.30191,0.0014174957 158,221.03514,218.66805,34.355667,82.770645,0.0011176971 158,209.72667,226.06912,25.070557,52.256775,0.00046788508 158,1.1105176,220.34178,18.948427,77.61711,0.0003744834 158,617.5246,304.25107,21.62207,85.74484,0.00028567002 158,617.5003,200.53416,21.646362,82.398636,0.00019654236 158,192.84851,211.37355,31.922012,71.96028,0.00017331044 158,2.531634,96.464195,57.12794,238.10315,0.00016050918 158,547.3043,430.53268,84.69739,74.685394,0.00012219088 158,607.3646,440.2198,31.782043,70.53168,7.188156e-05 158,0.7008952,126.75073,21.613695,132.63824,7.0873706e-05 158,586.19,123.76511,52.956665,250.12637,7.058245e-05 158,0.6479069,188.39964,13.955212,55.72641,4.3500568e-05 158,586.9372,324.16864,52.06372,170.82779,3.6533784e-05 158,0.6365352,361.09375,13.489947,47.93933,3.426687e-05 158,616.4438,36.91135,22.70288,93.69951,3.00658e-05 158,2.527959,264.30682,57.09459,198.99152,2.7676004e-05 158,0.77194256,276.96057,18.65879,137.3451,2.3300241e-05 158,0.6078622,381.07965,18.952785,116.453064,6.5972285e-06 158,0.7308252,20.684069,29.620392,145.92339,4.4943827e-06 158,242.74867,427.53192,84.558395,72.02423,7.6343423e-07 158,93.72145,393.4571,110.88219,100.07068,6.711389e-07 158,195.64725,426.871,72.08298,72.099,3.8879818e-07 158,2.913685,430.37778,52.3801,69.158966,3.8448707e-07 158,291.9059,427.70724,78.69791,72.69354,3.5406558e-07 158,104.612,444.7418,44.014435,56.926697,2.740896e-07 158,31.60777,429.13562,72.09869,70.99136,2.6296868e-07 158,42.376472,1.9584782,43.02704,54.710144,1.761425e-07 158,0.47328046,8.869656,11.072144,89.802124,9.232971e-08 158,516.5184,0.23809408,42.864746,48.56464,3.5960728e-13 159,33.40233,170.781,45.06832,87.644684,0.33746493 159,1.4393718,159.61685,28.924608,90.63867,0.0034249478 159,2.732842,160.70773,57.046196,149.67859,0.0019179771 159,0.49470705,175.79436,13.015236,50.50099,0.0015028531 159,23.355085,177.12589,29.348719,66.452774,0.00092780247 159,611.7646,287.38757,27.38208,153.20901,0.0002868335 159,611.0479,90.33979,28.098755,155.3559,0.0002803879 159,1.1464201,259.82312,18.58139,76.20462,0.00025428727 159,612.09546,406.80942,27.051208,99.09732,0.00015679772 159,585.8569,174.1195,53.03772,258.89374,7.323284e-05 159,1.047802,108.71438,14.499761,56.633247,6.92104e-05 159,610.2618,11.391875,28.884888,114.1158,3.1310272e-05 159,0.9110303,302.76483,18.339943,76.918365,2.6086967e-05 159,571.3795,351.80206,67.63989,137.80206,2.4646832e-05 159,1.3546395,221.39719,33.139996,189.61511,2.3748787e-05 159,0.74048424,392.64273,18.34244,71.39197,7.2366474e-06 159,4.8235383,275.93243,77.7912,195.0553,5.815609e-06 159,516.15015,430.17642,79.487915,73.47037,5.385303e-06 159,167.51425,424.8378,85.1124,73.00107,1.4188485e-06 159,2.9026384,396.95105,57.021255,95.27359,9.896038e-07 159,1.8359506,15.330671,57.9399,116.032166,8.8342966e-07 159,574.6825,437.71954,44.875305,64.18457,8.0073477e-07 159,109.08323,395.08707,110.83518,96.94241,5.921029e-07 159,80.22788,423.89984,77.47913,72.559814,3.847585e-07 159,131.54517,440.80063,41.5083,61.661163,3.731285e-07 159,1.1494402,37.06992,19.777897,89.78441,1.9423447e-07 159,1.2263184,5.5912485,38.342194,47.694027,9.081539e-09 159,423.61273,0.0,42.902344,45.671673,1.1948908e-13 160,616.94275,283.6515,22.203918,94.91455,0.00034206314 160,616.8263,52.9821,22.320374,90.11194,0.00031608235 160,617.1666,344.76273,21.980042,88.19412,0.0002841869 160,611.43604,94.025475,27.710632,161.83328,0.00026450894 160,585.89087,281.75903,52.773926,196.81525,0.0002288264 160,607.3792,433.2191,31.767456,74.87714,0.00016274197 160,584.791,63.827293,54.35565,292.02762,6.378503e-05 160,1.4042888,199.4509,20.643206,134.7854,5.60204e-05 160,1.3680502,298.03714,18.476442,79.10214,4.644786e-05 160,2.183501,253.58044,46.37711,180.33627,2.3194576e-05 160,440.91174,428.14017,87.90631,71.28729,2.0419466e-05 160,336.81345,386.52313,122.746826,104.224365,1.986262e-05 160,1.0075179,201.89197,13.911245,54.326874,1.9415127e-05 160,0.98766035,74.61382,18.383598,75.39483,1.6687161e-05 160,1.1653183,137.22412,18.761684,79.88826,1.4576707e-05 160,585.9917,7.1648893,53.15497,124.89989,1.3179422e-05 160,0.81190836,398.1468,18.28678,71.3042,1.0056772e-05 160,1.5722739,104.428535,35.79463,200.09677,6.93432e-06 160,0.65240437,342.88324,13.6938095,47.89911,6.7296446e-06 160,522.6554,384.65463,116.49127,114.029175,4.5533234e-06 160,4.897113,136.99014,79.15925,261.32867,3.0355925e-06 160,317.58133,425.09344,83.6604,71.615265,2.5485574e-06 160,1.1077832,443.4733,21.42461,59.442383,1.3163013e-06 160,5.506657,356.59225,78.612625,131.58813,8.694812e-07 160,568.00604,437.82236,49.234985,66.89917,7.839124e-07 160,493.7253,427.2009,74.089935,72.372406,5.181423e-07 160,270.70914,429.9405,81.7829,69.07004,4.948092e-07 160,3.06431,429.6256,52.04438,68.822266,4.0243515e-07 160,1.4693344,20.944036,29.387125,111.046074,3.526684e-07 160,543.3967,452.6571,40.390747,51.34561,3.4404772e-07 160,63.018974,424.72314,72.7862,70.275055,2.7417636e-07 160,3.4124415,21.087748,81.62467,136.15681,3.9631516e-08 160,1.1363225,7.7355423,20.179895,54.670826,3.3627774e-08 161,488.11542,66.653725,39.23578,60.647255,0.0011112618 161,610.58466,74.378944,28.562012,160.88535,0.00046410592 161,1.5945947,220.96962,17.714743,74.69444,0.00035900288 161,585.9379,250.52177,53.023987,237.7184,0.00035377863 161,617.3131,236.06165,21.833557,88.357544,0.00024826362 161,612.5669,414.06644,26.579773,94.754944,0.00012422274 161,1.5637012,59.59373,18.942743,74.86911,7.276342e-05 161,427.3485,418.2489,105.50702,80.53143,6.7817e-05 161,1.8331918,240.12643,26.163984,138.19409,5.3801483e-05 161,615.1934,15.552777,23.953247,91.32825,4.8932463e-05 161,3.0880568,137.49406,48.563976,183.01286,3.2571385e-05 161,1.1608878,108.11143,13.662032,49.263527,2.5450365e-05 161,0.4994226,314.1878,13.9465475,53.045197,1.587754e-05 161,0.93099856,382.08255,16.701185,111.509796,1.5526994e-05 161,6.0516214,210.09047,73.4235,246.68825,1.4222466e-05 161,521.8313,386.59222,116.26593,112.16211,1.1482971e-05 161,1.2071794,94.505844,21.139027,162.96672,3.4175096e-06 161,3.200236,396.75818,54.654076,95.59412,2.8223953e-06 161,23.73326,425.8966,70.51921,70.75165,1.8737555e-06 161,542.6644,451.80048,41.00061,53.475006,9.747874e-07 161,2.4139192,26.299625,56.612556,99.4946,8.9034484e-07 161,512.1422,438.4997,42.925903,61.02719,7.847441e-07 161,270.99167,389.89548,113.608795,105.06772,5.877821e-07 161,250.18462,424.96393,74.12126,75.533936,3.43417e-07 161,1.1731153,11.504906,27.419165,80.50778,1.6620982e-07 161,346.4138,4.435192,41.392334,45.746162,1.2910509e-10 161,315.7395,1.3436785,40.805176,52.89678,3.6211437e-11 161,124.00085,1.1224952,42.404213,48.1207,7.830697e-14 162,0.9210482,238.24037,21.380688,59.353165,0.050752163 162,620.83344,115.69586,18.313232,61.67581,0.001962387 162,606.4973,434.15997,32.649353,74.54144,0.0006863363 162,617.10925,201.69048,22.037415,87.59819,0.00044435274 162,586.158,237.71277,52.84955,248.17215,0.00036490953 162,611.00775,90.282646,28.138916,170.25601,0.0002931062 162,1.8550895,168.62334,32.8883,166.01656,0.0002657446 162,0.6672457,273.49258,13.689978,55.56671,0.00017169367 162,397.37668,392.1303,138.00833,105.09506,6.679936e-05 162,0.9781515,169.03908,13.628444,51.6158,4.024507e-05 162,233.87555,241.47647,33.3674,68.45105,3.2085987e-05 162,1.2587695,67.48581,18.45738,71.43498,2.9397692e-05 162,0.9930119,256.8025,28.496729,154.07053,2.2581773e-05 162,532.77234,382.5361,106.37433,117.53137,2.055694e-05 162,453.39658,437.22354,55.762817,64.0408,1.31517e-05 162,240.96022,424.04138,79.53566,73.10904,1.2584807e-05 162,532.88666,439.70547,43.422974,60.805206,1.06454945e-05 162,6.1667547,206.28607,74.4029,246.98807,1.0309881e-05 162,586.8161,8.637995,52.330566,126.48728,6.591418e-06 162,0.97392416,397.97455,17.887068,73.82858,5.8215683e-06 162,0.78793216,359.07172,18.38788,72.01102,5.182336e-06 162,0.90850425,106.771,21.767889,118.62562,4.6315427e-06 162,370.7514,419.91345,85.401,78.36618,4.1615267e-06 162,475.39304,422.22,79.09085,75.013336,3.832813e-06 162,1.2869564,454.29068,28.025179,49.27533,3.3587553e-06 162,555.33905,451.36282,41.035217,54.160614,2.6442942e-06 162,41.099747,422.78687,74.116325,73.753815,1.8806155e-06 162,220.53673,442.1605,48.764908,58.24832,1.6492932e-06 162,310.73148,430.53677,72.906586,69.81845,1.2095429e-06 162,3.5749285,397.0584,54.115143,96.73682,7.974518e-07 162,2.4561036,29.849733,56.727673,92.92239,1.8666488e-07 162,3.8420541,41.080853,80.03551,236.96513,1.7840111e-07 162,0.86991215,8.30053,20.55606,57.552635,2.628551e-09 162,328.5492,1.0521061,40.32596,45.660133,8.910493e-12 163,617.7176,357.88095,21.429077,68.23749,0.013213822 163,0.16040324,237.91342,12.014848,46.868073,0.008381186 163,1.1488909,224.04428,25.415445,74.65167,0.0011901198 163,586.77454,330.55692,52.37213,161.52222,0.001092927 163,0.9092424,131.24664,18.362274,74.956924,0.00021746098 163,611.00055,240.8612,28.146118,151.73627,0.00021663675 163,617.50806,61.76052,21.63861,82.49383,0.00020505104 163,617.2208,135.16498,21.925842,89.686386,0.00019869149 163,612.556,403.90204,26.590637,105.19559,0.000131974 163,586.4362,146.0619,52.584045,275.04187,0.000102820784 163,1.188208,96.64004,34.187496,193.35883,0.00010051448 163,0.6479704,256.1427,18.195534,80.73245,8.660098e-05 163,601.8071,69.48781,37.33954,208.43108,3.8885635e-05 163,0.8353264,77.26929,18.675848,79.672165,3.7703267e-05 163,422.6992,419.6809,80.60983,76.1026,2.6407366e-05 163,584.9606,6.865547,54.186096,114.97243,2.528079e-05 163,1.9032829,211.2382,44.69776,168.7101,1.1518397e-05 163,462.87653,424.993,95.28638,73.63699,7.646588e-06 163,93.52488,131.59453,75.3402,157.58992,7.4582076e-06 163,0.633383,302.42697,19.332895,144.73663,7.1082604e-06 163,520.15765,415.54956,79.80426,82.5502,6.184227e-06 163,0.95835775,422.4798,16.489916,77.82294,4.311773e-06 163,561.5717,448.6337,43.373596,59.225372,3.3994493e-06 163,0.5603866,351.17682,13.728263,47.549133,2.9863706e-06 163,6.3692026,254.98845,75.9119,215.15178,2.4145832e-06 163,256.9959,429.63428,73.41528,70.41672,2.1282626e-06 163,8.76162,453.94907,41.448586,49.026306,1.4020243e-06 163,33.038555,423.81418,75.28209,72.00061,1.2001667e-06 163,1.6907227,25.483177,29.67556,109.9793,1.0871678e-06 163,208.69113,428.80484,75.99249,69.80893,8.167927e-07 163,297.0717,430.11792,73.159485,71.48059,7.871907e-07 163,3.6186361,398.5277,54.753254,95.01935,7.1325263e-07 163,351.7395,429.4542,76.16583,72.21802,4.6499161e-07 163,2.8678548,35.631393,82.47708,257.4228,2.6793649e-07 163,154.68793,430.82687,77.26474,68.70694,2.6308706e-07 163,1.295424,9.3107395,21.344109,56.152832,6.052059e-08 163,161.65085,1.795905,41.357864,49.976376,4.568019e-12 163,375.48557,3.0823,42.411102,50.119045,1.58234e-12 163,135.22934,0.0,41.04825,46.1132,1.9780833e-14 164,1.3709546,249.29112,13.545182,51.888535,0.0010936798 164,611.278,88.126114,27.868652,170.58284,0.00079450436 164,1.8165145,196.10756,19.803837,134.60902,0.00056594884 164,611.3143,296.69522,27.832397,165.97473,0.00041886888 164,617.3654,227.77414,21.78125,87.5488,0.0002588781 164,582.76483,383.90924,55.862915,119.33057,0.00021105222 164,4.3562818,268.23798,35.55332,81.34619,0.00020324976 164,617.5364,49.0055,21.61029,83.4683,0.00015303862 164,3.724201,116.905106,48.738037,196.71822,0.00013625475 164,1.1371013,127.48507,18.345133,77.57125,0.000112997215 164,0.9121273,287.2897,18.557402,83.045654,0.000104727726 164,560.5421,446.8441,44.63562,58.55359,9.4194715e-05 164,0.9015471,186.61722,13.756695,48.819656,9.115623e-05 164,585.2961,168.77307,53.850586,270.55865,8.961632e-05 164,449.23914,418.70645,104.64044,78.06387,3.9398597e-05 164,3.0771892,240.78062,54.836216,219.99074,2.0564235e-05 164,534.0593,442.8771,43.892273,61.353638,1.3447826e-05 164,0.7938599,425.79846,13.567212,47.516693,1.25994575e-05 164,0.57175297,335.19406,18.78651,83.40454,1.20017985e-05 164,1.0713867,71.99547,18.54531,77.13518,1.0416221e-05 164,586.181,8.058018,52.965637,113.254196,4.563165e-06 164,1.3696924,386.66946,28.41887,109.178375,2.5545046e-06 164,58.776993,423.53134,77.873215,72.78577,4.5344626e-07 164,6.247783,398.70956,89.508804,94.961914,4.3285308e-07 164,8.220136,448.27225,41.66934,53.39218,3.8368563e-07 164,0.552985,13.963555,7.918229,79.03866,3.71495e-08 164,2.4975343,22.641024,56.166164,112.943405,3.350447e-08 164,1.1593962,8.724499,28.111927,53.273785,3.4265688e-10 164,401.80524,5.2089,42.78592,45.71211,5.116944e-12 165,78.7481,258.5801,24.574265,48.495636,0.0012626017 165,611.3909,77.36742,27.755737,166.80618,0.00045735878 165,611.6889,187.22673,27.457764,161.91008,0.00024441513 165,611.23016,309.4575,27.916504,164.75983,0.00023724594 165,585.0036,386.8778,54.060425,112.76236,8.058247e-05 165,1.038383,248.52477,18.008778,73.87633,7.723106e-05 165,0.8055322,144.61716,13.91254,51.532272,6.2754116e-05 165,1.2966057,83.03437,18.539625,78.15481,4.7344773e-05 165,584.6749,10.720058,54.47174,119.774475,4.6961235e-05 165,0.6006356,301.87064,13.325517,48.26837,3.160466e-05 165,1.1660815,127.52222,19.98716,146.44241,3.0197352e-05 165,81.42412,179.89081,81.09665,156.07297,2.552557e-05 165,465.64615,426.49268,90.98581,74.43906,1.8058923e-05 165,1.3281054,267.40744,32.699974,172.92825,1.7153183e-05 165,3.0598195,125.14847,49.223835,188.48376,1.613056e-05 165,259.38373,156.00452,77.4512,155.42325,1.2064558e-05 165,0.7433045,426.10764,13.597221,45.55359,1.1609036e-05 165,0.6327368,317.25616,18.48422,76.326294,1.0988133e-05 165,5.985684,199.91745,77.18437,252.63782,6.207981e-06 165,0.86580324,365.56815,20.235727,128.49399,5.0523704e-06 165,291.41684,392.6998,112.93204,103.19855,3.4968189e-06 165,559.91235,439.86658,48.202637,65.43228,3.060597e-06 165,349.3131,253.93599,42.236633,122.062485,2.4361218e-06 165,493.03012,388.6175,124.691376,107.565796,2.3547389e-06 165,4.0028744,24.677702,84.89701,145.15234,1.2106739e-06 165,1.6041455,457.33746,27.834528,45.90921,1.1581496e-06 165,346.4577,432.1565,77.616486,68.79382,1.0493908e-06 165,250.16113,425.59357,83.35025,72.60513,8.8452225e-07 165,50.508274,424.0671,78.63985,71.735504,6.25908e-07 165,3.443169,395.98123,55.135315,97.39575,5.4982866e-07 165,1.2023422,26.145784,19.057976,71.28853,2.721174e-07 165,202.29503,428.35336,78.73619,69.08832,2.2984972e-07 165,1.389292,6.73369,38.970753,48.29942,9.379509e-09 165,31.954525,2.3002295,65.51761,51.35589,1.3503337e-10 165,80.26903,3.6942742,45.59604,48.87214,5.7983264e-11 165,387.2102,1.1903255,44.973145,49.793003,1.2054212e-12 166,0.90047526,233.91266,14.030972,56.884888,0.0018453149 166,616.16644,413.2944,22.980225,85.29492,0.0004993393 166,611.43097,84.231995,27.715698,167.26093,0.00038773788 166,273.8062,183.48447,34.2352,69.28465,0.00032517177 166,616.6478,317.20096,22.49884,90.677124,0.00024008832 166,585.9931,244.97722,52.822815,244.01833,0.00019874229 166,1.3496876,174.38686,20.249737,143.21785,0.00017498752 166,611.55475,191.72446,27.591919,168.2482,0.00017460412 166,616.8,35.33843,22.34668,95.45828,0.00011138495 166,1.2953264,72.62825,18.653656,78.81404,8.864207e-05 166,4.0124254,169.1619,72.27773,172.18271,8.6238106e-05 166,1.0380836,265.61688,18.161703,79.52219,2.9304087e-05 166,0.6719458,164.72417,14.105903,55.757507,2.6352422e-05 166,546.0718,446.02313,42.74774,61.23355,2.4806432e-05 166,1.4498584,228.91689,31.49166,185.0273,2.3346862e-05 166,1.2823381,116.59033,18.352524,76.38393,1.5080324e-05 166,258.71194,150.16803,80.58557,154.72015,1.4867227e-05 166,504.49805,417.60788,77.57715,84.664215,1.3624627e-05 166,0.6928239,328.29083,19.693094,137.04913,1.3312008e-05 166,1.4298552,65.55217,29.8198,172.96281,1.1958908e-05 166,0.8217973,406.03033,13.725319,45.700256,1.0390782e-05 166,447.25903,423.7527,91.289734,73.47421,8.594175e-06 166,573.99615,433.17798,47.789307,69.49213,5.5349165e-06 166,1.1116683,441.27927,21.354265,60.184967,1.6415227e-06 166,3.362907,341.30075,56.499893,142.96176,1.2732991e-06 166,2.6337729,18.415535,56.525654,103.94397,1.1273211e-06 166,30.687927,424.9187,77.98142,70.11908,3.7296908e-07 166,1.4552368,9.804359,26.376987,78.488365,1.1631921e-07 167,60.53779,212.63474,38.198906,76.515656,0.6341758 167,611.28827,89.071594,27.858398,160.37149,0.00044632633 167,617.37836,61.83016,21.76831,87.94112,0.00035177317 167,611.11053,199.61421,28.036133,165.94731,0.00027446175 167,612.8564,378.58228,26.290283,124.901276,0.00022195035 167,1.1626287,230.29514,18.111801,70.05075,0.00021132652 167,0.44763836,422.06342,14.377266,50.142365,0.00011077183 167,588.0607,301.65924,51.05304,185.06659,6.523454e-05 167,1.2352377,302.9663,17.965742,67.56705,6.0661758e-05 167,1.5299708,278.4153,31.987413,162.36981,5.984437e-05 167,3.8431983,144.33008,58.230015,207.07233,5.725227e-05 167,615.9252,21.211504,23.221497,79.533134,5.5854594e-05 167,436.68094,430.5277,86.7728,69.31552,5.174498e-05 167,1.1676425,173.36537,18.788088,86.45448,3.7104717e-05 167,6.255059,273.3996,74.79918,195.90155,1.19103415e-05 167,0.7551359,377.03207,20.599575,119.67691,1.1334318e-05 167,37.787304,168.0412,104.331116,209.48584,1.0235738e-05 167,237.96439,125.17849,81.990204,164.42068,1.01024125e-05 167,283.55392,392.58646,118.69055,99.8082,8.910435e-06 167,8.705739,84.228065,44.53545,154.79382,6.180536e-06 167,342.33975,439.55396,42.395874,60.442413,5.519767e-06 167,1.8835304,72.67884,18.573713,75.39164,5.275866e-06 167,554.64465,419.73953,84.502014,82.37106,5.1132333e-06 167,358.9902,426.15195,78.13907,70.94269,3.7163709e-06 167,287.244,441.63214,43.09561,57.775116,2.9719488e-06 167,491.53735,442.21802,43.924377,60.76294,2.0994673e-06 167,1.5114242,456.62204,28.223732,46.526,1.4450842e-06 167,261.7126,443.04266,44.426575,54.716156,1.4249262e-06 167,2.7046323,426.97736,51.98979,71.00864,1.1962587e-06 167,475.37418,394.84427,118.11545,99.29605,8.807411e-07 167,529.0485,451.04678,40.765076,53.06006,5.7005656e-07 167,1.8410336,18.289186,58.61442,119.35527,3.2584845e-07 167,1.5048113,11.426914,26.038425,74.91937,9.936371e-09 167,115.29602,4.4584913,43.214355,45.178898,2.4760663e-10 167,422.0318,2.314489,43.062378,45.535366,6.450461e-12 167,394.29044,3.860547,44.259155,48.71102,3.814969e-12 167,362.95834,1.3605485,40.907562,47.476887,1.3097252e-13 168,617.6417,134.8549,21.504944,68.72078,0.006811689 168,601.7002,87.21494,37.446472,155.99844,0.0009796824 168,16.962633,173.66116,42.629936,119.94345,0.00093557173 168,0.7769027,216.43156,18.498035,81.51817,0.00083693524 168,1.1529086,129.25592,19.380379,89.259,0.00044100708 168,0.96217203,192.44087,13.554922,56.00981,0.00033383927 168,615.91205,65.522415,23.23462,95.4895,0.00028097248 168,611.4045,281.11713,27.742188,154.78165,0.0002804783 168,0.64578694,113.84268,13.873585,53.988678,0.00023290006 168,0.6441398,305.23138,13.873138,50.622192,0.0002245037 168,13.184143,195.72777,25.948399,65.28209,0.00022250858 168,1.9334587,98.79346,34.072464,192.07428,0.00020391103 168,57.249428,217.67906,25.784286,49.600906,0.00017340171 168,611.4417,371.86816,27.704956,133.83981,0.00015327787 168,7.277282,101.2859,91.859,231.5299,0.00010713421 168,0.77308923,263.299,19.891256,135.99057,0.000102931255 168,612.4836,190.9146,26.663086,164.73344,9.748888e-05 168,416.53638,418.57785,85.43649,76.311584,7.92793e-05 168,27.17817,205.59782,21.56546,50.564987,7.018616e-05 168,3.2467563,235.96413,55.721016,229.65114,2.4837349e-05 168,0.8642245,402.78052,18.451963,73.49533,2.441239e-05 168,585.72705,8.795847,53.419617,129.54033,1.9409166e-05 168,0.8738192,320.0248,28.899105,152.84421,1.8080915e-05 168,587.03033,433.07376,45.414734,73.72745,9.720325e-06 168,468.4058,427.25427,87.94162,73.80505,7.922067e-06 168,310.58093,390.72574,127.02002,104.47043,5.8181936e-06 168,245.33826,100.97833,77.76547,165.0585,5.657458e-06 168,519.605,387.662,117.4928,111.570465,4.4948197e-06 168,546.03125,435.16412,45.788208,66.743225,1.7665334e-06 168,1.6446664,457.14172,28.103798,46.37567,1.3563093e-06 168,0.6738436,47.80013,19.251785,80.906784,1.2877285e-06 168,3.0430112,393.55838,55.638905,100.404144,1.2085467e-06 168,343.1623,445.68518,45.35086,55.49698,1.0748361e-06 168,283.97617,429.38724,77.81607,69.66391,6.3280544e-07 168,50.763664,424.38867,78.57389,70.67697,3.994054e-07 168,0.8010067,12.21444,13.169694,77.54291,1.4506564e-07 168,1.863475,16.676615,58.61262,119.12258,1.072554e-07 168,1.5609375,5.977235,38.334602,49.200607,2.5334867e-08 169,616.80835,123.79861,22.338318,88.1305,0.0008289348 169,606.0185,394.84885,33.128174,109.74872,0.0004740717 169,0.93675214,200.5148,18.290764,74.76642,0.00044940665 169,616.41034,294.0397,22.736328,97.6785,0.00044691074 169,585.9202,274.39804,53.22644,210.66373,0.00028430563 169,617.3827,201.29579,21.763977,90.70021,0.00025605303 169,4.4443784,91.04684,72.15062,188.97119,0.00021748483 169,242.36946,128.5398,29.853409,53.543808,0.00017576825 169,600.9455,145.77164,38.20117,238.31482,0.00012751968 169,167.303,123.6294,42.805267,142.32635,6.3836516e-05 169,616.02014,17.644112,23.126526,88.542,5.7374647e-05 169,601.77905,39.26358,37.367615,201.00905,4.387374e-05 169,442.11688,429.6713,92.776184,73.33261,3.668807e-05 169,1.2908512,112.66043,18.861809,78.7126,2.6208758e-05 169,0.72095865,278.83688,18.237246,74.16922,2.1187368e-05 169,179.03247,163.17072,23.417374,51.0867,2.0882975e-05 169,1.1626807,222.71848,30.299204,173.58566,1.8571931e-05 169,41.78118,149.70349,83.78576,165.30872,1.429346e-05 169,1.2709856,157.45084,18.705257,77.67232,1.1591512e-05 169,0.73142743,324.669,20.30812,135.63986,6.811686e-06 169,542.6994,429.2088,87.55505,72.94412,5.784335e-06 169,0.8862972,422.02744,16.21677,77.60742,3.956328e-06 169,0.70603925,372.12567,13.855458,48.364594,3.4762834e-06 169,5.0712857,267.47797,77.80408,208.07596,2.2310169e-06 169,138.87407,88.2615,115.981094,222.36829,1.7514459e-06 169,358.6495,434.86612,80.39685,66.276794,1.0758636e-06 169,188.29427,433.50476,73.18428,68.68884,1.0676134e-06 169,1.2504623,49.851913,18.684595,84.029175,1.0466483e-06 169,298.2085,436.3725,77.333466,65.9859,8.715517e-07 169,79.19202,431.25922,81.05145,67.88605,8.642219e-07 169,3.1274707,395.14645,55.596382,97.0134,7.674755e-07 169,213.6528,80.96222,85.50946,175.04617,6.498837e-07 169,257.71924,437.6297,72.60361,64.59323,6.216012e-07 169,120.574615,395.06308,122.285446,102.08496,6.1318633e-07 169,21.41922,398.28308,115.29454,92.10397,4.503459e-07 169,502.61053,432.1332,74.22162,66.85446,4.27347e-07 169,1.9461166,9.988366,62.25456,137.10725,3.2633358e-07 169,112.64729,16.236603,78.56419,231.39897,1.1470598e-08 169,1.425485,10.187233,25.956856,79.27923,6.7420856e-09 169,157.33578,3.9752963,42.206726,47.615788,1.9002836e-11 169,181.87383,0.45735678,43.668243,60.612137,1.3414758e-12 170,0.7547721,211.53246,13.836577,55.037308,0.0010566902 170,610.85004,342.8097,28.29663,122.09418,0.00050000264 170,616.7127,63.005417,22.43396,86.86299,0.00044605232 170,607.60474,435.1513,31.541931,72.7576,0.00027021737 170,611.0195,89.651215,28.127197,149.22522,0.0002527696 170,260.63586,132.40536,38.75702,67.41995,0.00014895598 170,1.4290495,189.87694,27.233784,131.90529,0.00014676333 170,586.52075,236.35443,52.621277,244.52881,0.00011831496 170,612.1927,188.25774,26.95398,168.38515,6.614093e-05 170,435.6167,429.39322,93.0401,74.586,3.2901375e-05 170,122.32945,119.66914,74.878235,170.01027,2.825752e-05 170,0.72139895,146.33876,19.11281,94.41028,2.0512447e-05 170,0.8288355,268.81378,18.263184,76.364105,1.984747e-05 170,3.4194744,110.81955,57.70581,222.01303,1.6445916e-05 170,585.3723,18.31101,53.710022,112.95147,1.6323036e-05 170,1.6023047,64.69948,19.461817,82.66914,1.14788645e-05 170,540.849,383.55383,98.270874,115.28378,1.0395342e-05 170,1.1205665,260.94498,31.193481,185.32822,8.876814e-06 170,0.77426594,324.67856,18.218987,72.80835,6.743431e-06 170,2.219139,11.967071,57.44247,111.74152,6.5744553e-06 170,0.77171713,364.9698,18.191708,71.0238,5.469796e-06 170,61.674377,67.28301,43.996994,179.30005,4.9327255e-06 170,5.178249,267.49768,77.34147,203.50177,4.3090436e-06 170,1.3814942,36.494644,14.157252,55.961945,3.7731102e-06 170,1.6236523,418.82086,34.227123,78.77075,1.0171899e-06 170,1.5247917,6.7949057,23.927383,61.424942,6.9567454e-07 170,502.14288,423.4244,74.4939,74.286896,5.0200157e-07 170,36.026455,61.559624,120.678696,236.561,4.0112624e-07 170,195.09169,430.05768,77.935684,70.17978,3.0747205e-07 170,1.1447086,28.135866,31.933275,213.31357,2.3119956e-07 170,147.463,429.05298,74.36836,71.70636,2.1817425e-07 170,3.147386,15.855332,96.873215,224.27629,1.017461e-07 170,17.356531,5.5349383,43.641808,51.87895,3.5900236e-08 170,162.7323,3.0744858,43.847183,50.08358,9.389483e-12 171,265.8595,123.38592,41.15094,70.36846,0.0009244444 171,610.54645,287.76526,28.60022,166.42236,0.0008385955 171,616.75244,155.33125,22.394226,90.08769,0.00076104526 171,1.8248739,91.476746,20.967564,153.20462,0.00022919071 171,608.06976,435.9563,31.076904,74.381226,0.0001988071 171,617.83386,48.99019,21.312805,80.312546,0.00018196274 171,584.1495,383.34155,54.88153,115.59915,0.0001712051 171,585.3111,133.90555,53.83557,300.12216,0.00012008351 171,1.4115585,186.59665,13.379635,52.034897,8.042032e-05 171,601.26855,49.449207,37.878113,189.20767,5.416991e-05 171,2.9399772,90.01547,57.725574,210.87366,3.755563e-05 171,405.0461,419.32935,99.62515,76.65201,3.7386388e-05 171,0.9248047,233.65483,18.286615,71.35698,2.6627786e-05 171,93.9092,94.09917,74.681526,183.99095,1.5750917e-05 171,587.66455,17.621904,50.97229,103.93341,1.4183065e-05 171,0.7170744,258.91003,19.673943,137.27997,1.0027734e-05 171,0.79612064,351.5394,18.343323,73.51108,9.499229e-06 171,3.0485792,226.0522,56.360535,213.58171,6.468936e-06 171,1.5907097,316.86755,33.51407,167.15054,4.9488117e-06 171,344.28958,425.2911,85.53876,74.56973,2.6621378e-06 171,452.60583,387.5714,113.46472,105.57898,2.014618e-06 171,178.04305,48.99072,88.68648,212.3718,1.8594433e-06 171,2.1486785,22.357918,36.74685,164.83139,1.7665129e-06 171,560.65466,437.1583,48.092407,66.37204,1.2956024e-06 171,1.5678703,45.937172,19.125948,86.73937,1.2088649e-06 171,2.3454802,445.64038,41.470966,57.477875,1.1895421e-06 171,288.62994,443.22406,42.468506,61.765106,9.879799e-07 171,263.4737,390.67737,119.18817,107.009674,9.154591e-07 171,5.5519238,397.10315,84.07193,96.36722,8.34238e-07 171,506.2945,434.98395,42.724792,64.87579,6.1629e-07 171,236.90411,425.29083,80.69629,75.02844,5.471787e-07 171,1.6846175,10.951065,26.344673,78.301414,2.0205972e-07 171,324.31497,4.877987,44.034027,49.990406,1.6424723e-09 171,299.4271,3.7553778,45.149994,49.368507,1.5579286e-10 172,190.0443,144.03592,46.488632,130.65695,0.009502983 172,98.8227,185.75452,34.581535,77.25934,0.0034971556 172,619.3247,358.83783,19.82196,58.217987,0.0019532833 172,243.37805,103.86374,38.396057,80.84598,0.00058207405 172,616.8294,382.2613,22.31726,86.774445,0.00039480996 172,586.0802,282.749,52.77649,195.54144,0.00038991717 172,612.1753,155.88443,26.971375,150.67603,0.00021727917 172,611.2895,70.82093,27.857178,150.22116,0.00020326761 172,607.496,434.54617,31.650696,73.20187,0.00018934811 172,78.40221,188.09991,27.0316,56.90332,0.00018179519 172,617.68494,251.9415,21.461731,79.821045,0.00016226526 172,610.7923,12.782969,28.35437,119.21386,0.00015058997 172,1.1071858,57.848896,18.387903,78.627716,9.367361e-05 172,90.91904,153.91508,75.09035,157.4391,9.310628e-05 172,236.7228,83.90901,33.94478,63.329742,9.309847e-05 172,0.7495606,101.2716,13.741576,52.3422,8.0632126e-05 172,0.64988077,274.4273,13.240735,48.303955,7.263328e-05 172,1.0226693,171.4684,19.144768,83.44336,6.987433e-05 172,4.7805796,138.85437,71.819374,178.09357,3.738667e-05 172,1.0287907,243.10786,19.554502,124.02205,3.1824515e-05 172,585.05707,47.20198,54.0896,297.78632,1.3767848e-05 172,56.097412,100.335686,77.67334,197.88062,1.2822842e-05 172,0.84407717,312.77435,19.321077,136.62186,1.0984738e-05 172,0.9874569,404.6225,18.03838,70.26935,9.939e-06 172,448.7555,430.24393,85.449646,72.05109,8.674376e-06 172,1.1409082,64.55034,29.438377,172.535,7.813123e-06 172,5.56905,269.9221,77.05446,200.32205,6.4810642e-06 172,164.77068,80.88581,114.61104,228.75732,6.3199273e-06 172,515.8302,381.39575,122.522156,114.659,6.045165e-06 172,2.4066944,18.320026,55.535065,100.02832,2.6509097e-06 172,3.3715284,396.24512,55.784054,98.29251,1.1295316e-06 172,0.9014315,8.875039,14.594793,85.096725,1.1252051e-06 172,594.2464,7.9068346,40.665466,45.05599,4.348192e-07 172,204.23277,2.0046387,41.272903,48.276535,4.7768153e-13 173,561.618,83.147095,27.108215,49.119843,0.009567237 173,90.46713,140.11668,27.218636,68.766266,0.0064602313 173,123.37155,205.55096,31.548203,57.80075,0.0037329614 173,1.0344043,130.48814,14.646156,59.083755,0.0034590485 173,111.746605,228.19084,27.253395,52.270615,0.0034490055 173,621.6631,228.78603,17.483582,54.341934,0.0017526245 173,1.5465496,139.69325,19.907635,147.52705,0.0017309792 173,94.35683,123.475266,47.69606,152.804,0.0014514575 173,69.92982,133.42177,37.919266,102.83118,0.0010253377 173,587.70374,302.33356,50.95276,183.49478,0.0009728921 173,4.1784244,127.70428,68.911125,174.36066,0.000811808 173,611.1009,133.86143,28.045776,154.1812,0.00062556966 173,7.761636,157.45758,36.299465,94.664505,0.0006082249 173,617.27795,65.30793,21.868713,81.5042,0.0005429965 173,611.1867,226.88597,27.95996,181.0901,0.0003611797 173,607.2345,432.07703,31.91217,75.53461,0.00028194147 173,50.50688,116.76394,40.762077,147.92444,0.00026776962 173,0.78680015,221.40712,13.931177,56.2267,0.00024161603 173,0.75694096,85.235306,13.989964,51.32495,0.0001970197 173,615.70605,23.920153,23.440613,74.77634,0.00015456272 173,0.7066813,243.16623,18.41678,78.0921,2.3660215e-05 173,1.4086637,62.222424,30.732246,170.84995,2.1801552e-05 173,584.87274,31.710028,54.273926,182.13857,2.1503502e-05 173,38.131325,105.61777,120.53173,214.3489,2.0032268e-05 173,0.67099285,329.78104,18.998951,132.99954,1.984823e-05 173,383.29752,420.64294,82.684265,74.93713,1.9604948e-05 173,0.57516116,298.4779,18.54649,80.60605,1.258584e-05 173,1.3395826,230.72334,31.762156,188.77547,8.837941e-06 173,450.3637,429.0568,91.680176,72.23056,6.7710907e-06 173,0.86731976,421.07358,16.415869,79.43335,6.291735e-06 173,508.48383,381.92392,129.71454,115.06036,4.813453e-06 173,3.4220264,328.9633,56.390026,151.4837,3.4245045e-06 173,591.2211,6.669971,47.900513,50.85214,1.949773e-06 173,3.0893652,427.9621,51.4173,68.92709,9.653216e-07 173,188.18517,421.91046,73.6367,76.97748,8.9523036e-07 173,533.3382,437.22125,41.85968,63.917572,8.863226e-07 173,132.56964,422.77542,77.185776,75.521515,8.3296607e-07 173,2.067233,14.828698,60.13489,125.58854,6.112596e-07 173,25.670055,426.19034,76.946884,69.4505,5.991659e-07 173,240.00717,421.19235,75.48068,79.59796,5.3598154e-07 173,1.1286182,16.055437,22.352179,103.66237,2.1889535e-07 173,283.1539,424.7367,73.197266,75.88278,2.1051842e-07 173,90.76977,14.431785,83.18516,213.24782,1.0851866e-07 173,29.439323,5.56569,84.2139,219.01988,1.0308653e-07 173,217.9153,5.1259346,41.598343,45.068565,5.658512e-11 174,620.5068,159.78398,18.639893,60.60956,0.011147649 174,616.7707,63.370445,22.375977,63.45948,0.004837903 174,30.501833,98.57694,27.728128,69.27935,0.0022209361 174,162.83649,190.80482,36.26085,60.0562,0.0016755693 174,18.155611,50.44638,47.84494,207.01569,0.00095442263 174,583.6352,3.7997723,55.432007,125.95018,0.00075592624 174,609.1668,72.391304,29.979858,151.46515,0.0006700584 174,1.2397778,156.21162,28.981855,164.78056,0.00060924725 174,617.6426,329.12125,21.50409,81.4205,0.0003890933 174,0.64467776,232.83736,13.926168,58.41484,0.00036456625 174,587.7223,150.48024,50.605774,247.85081,0.00021626911 174,1.155223,169.54927,14.19628,59.812225,0.00019675122 174,611.8605,252.66829,27.286194,128.87337,0.00019038658 174,607.2895,389.89984,31.857178,112.46933,0.00016925311 174,23.133577,121.23798,20.26983,55.020332,0.000102950995 174,1.8915349,56.705242,30.0871,133.99672,9.0682115e-05 174,0.89349365,257.7346,18.215424,74.72339,6.2433915e-05 174,0.82366294,418.24728,12.997047,83.252106,2.025538e-05 174,607.0975,5.6520443,32.049194,57.890717,1.2296012e-05 174,1.8441749,14.662376,58.48981,129.49911,1.081425e-05 174,0.9780485,319.83313,17.383438,137.81656,8.854138e-06 174,4.216971,194.1132,54.8339,226.87395,8.03201e-06 174,2.3292172,433.31223,43.907364,65.63071,5.340419e-06 174,37.179626,31.40058,81.59952,230.4386,5.026294e-06 174,84.643936,46.86515,80.69762,221.14651,1.7751767e-06 174,5.544938,363.9002,77.49965,121.42886,1.3845013e-06 174,1.4930143,28.239468,21.03859,89.62265,5.739843e-07 174,1.7161133,5.801639,39.932507,53.472183,1.7865435e-08 174,570.4624,3.4539063,47.73828,56.946777,9.903014e-09 174,436.2141,3.815923,40.668854,46.084587,1.458731e-10 174,107.45653,4.3004265,43.278214,49.233173,7.85307e-11 174,546.8693,3.0326824,42.721863,50.465706,5.89012e-11 174,183.45963,4.912777,39.958603,46.42993,1.4632696e-11 174,210.71338,4.7246666,41.34134,47.690166,5.5349497e-13 175,6.551185,65.74409,34.354362,108.47854,0.04059935 175,0.0,49.256935,55.320053,234.20676,0.019800175 175,23.671413,91.531654,29.042328,70.29252,0.01491391 175,0.70457155,136.00404,12.187068,51.06804,0.004591993 175,0.76379395,165.67159,20.298464,106.989395,0.0034266338 175,14.733481,109.41725,20.167019,52.04872,0.002452558 175,10.683787,184.82625,38.48811,94.21895,0.001962928 175,0.6567253,63.95812,11.882982,46.746326,0.0010449723 175,3.319162,113.273506,21.031227,56.297997,0.00097619905 175,0.8694222,98.34182,11.893174,48.06008,0.0006882548 175,612.55664,213.5261,26.590027,150.43387,0.00050202565 175,617.2538,318.19724,21.892883,87.77136,0.00032656747 175,1.2524886,242.87068,18.176075,80.44429,0.0003156787 175,608.24115,438.7763,30.905518,68.97281,0.00024032404 175,20.610416,86.69508,87.42149,220.7458,0.0002113753 175,587.2506,256.9728,51.81195,221.4083,0.00019703925 175,612.75507,134.99933,26.391602,134.42041,5.0205166e-05 175,80.130356,81.56392,43.871407,175.00032,3.830994e-05 175,616.4024,27.244057,22.744263,83.54032,3.5193283e-05 175,91.70574,80.55844,83.70994,207.70282,3.226285e-05 175,1.4772054,230.301,31.595732,178.0058,3.139372e-05 175,1.40674,11.153197,22.062151,146.33263,2.5875519e-05 175,0.830857,373.38837,18.197767,70.61685,1.851061e-05 175,0.94104576,297.77588,18.369703,77.53851,1.3816515e-05 175,439.53568,436.00873,88.33096,68.973145,1.2678263e-05 175,506.08328,113.2874,119.69803,237.83656,8.486908e-06 175,3.1852734,295.26907,55.991573,179.90631,4.35451e-06 175,0.783029,417.4012,15.94139,84.397125,2.9166629e-06 175,600.72894,17.34661,38.417725,186.90028,1.405446e-06 175,387.3676,185.92737,28.183136,62.868607,1.0203765e-06 175,112.56862,428.91882,83.49115,71.46765,7.413444e-07 175,4.744502,428.0871,78.45851,71.727356,3.4201554e-07 175,2.7136052,12.142591,52.797966,72.028465,1.00004506e-07 175,122.70148,4.631061,41.52919,47.83567,1.2117809e-09 175,148.28693,4.1249757,41.883606,47.874218,1.8328021e-10 175,543.12946,6.410303,42.55963,46.34661,1.5367972e-10 175,501.95575,2.2865121,64.8714,53.926888,1.3802798e-10 175,32.41478,5.466141,42.112244,48.60648,2.5714708e-11 176,402.90356,212.35513,23.306519,48.456116,2.1575863 176,618.7197,408.88022,20.42694,65.555725,0.008118341 176,3.1815398,64.47206,54.584763,235.6346,0.0007813793 176,583.6796,390.13208,55.28479,108.69876,0.000560037 176,1.194467,237.64886,18.41122,75.82852,0.00050615036 176,460.83716,175.11209,30.181763,61.494843,0.0003982368 176,611.1485,306.3143,27.998169,169.47269,0.00035181036 176,66.81768,220.23883,23.60746,49.950592,0.00030827016 176,1.6815226,109.35995,19.083559,81.00243,0.00027998228 176,27.865,217.61969,30.284258,60.848938,0.00026255017 176,612.465,126.264824,26.68164,121.531456,0.000111716225 176,1.060704,177.09727,19.12099,87.68919,9.85197e-05 176,6.204157,180.89787,88.63863,162.28691,8.410987e-05 176,1.5563558,204.42421,31.544794,165.8817,7.0986534e-05 176,0.5327877,294.46878,13.514762,47.167084,6.2068735e-05 176,612.7885,200.39471,26.358154,147.37418,5.5004388e-05 176,617.6411,71.53909,21.505554,82.85678,3.771686e-05 176,1.2272713,81.146965,14.468253,59.254677,3.6257494e-05 176,0.8270858,285.51672,18.567799,135.0683,2.9157904e-05 176,452.53564,159.51352,45.934418,158.58942,2.1700074e-05 176,0.87586915,406.34662,17.966349,70.18329,1.0829813e-05 176,3.48681,270.97684,56.216957,200.46661,9.943968e-06 176,1.0520573,10.462461,61.305733,144.77998,5.3953686e-06 176,408.36017,428.5408,87.78766,72.64847,3.208494e-06 176,585.2901,65.143074,53.856567,248.09305,3.1285192e-06 176,586.11523,12.412065,52.93518,108.16971,2.0743785e-06 176,527.49915,420.12485,89.15588,80.75122,1.7826446e-06 176,2.9011931,429.15253,52.293163,67.6376,7.531941e-07 176,437.88736,395.1964,118.56595,100.971405,6.37467e-07 176,106.672585,431.24695,71.43685,68.79285,2.5836192e-07 176,1.49962,6.408721,18.411125,59.89467,4.259548e-10 176,46.803062,3.145783,41.677757,47.793423,8.270183e-11 176,420.62692,1.9801384,42.6474,50.86573,3.9068634e-11 176,394.5275,1.0822201,43.292267,47.807205,3.945532e-12 177,620.8697,385.09717,18.276978,63.58612,0.0048764497 177,420.75974,170.81013,24.106934,48.5876,0.0023932909 177,0.81695396,173.23987,14.333259,56.15097,0.0016884855 177,40.42524,209.39241,28.44793,56.030533,0.0015024003 177,426.07874,163.77129,41.602417,86.79971,0.0012933877 177,610.8394,361.44955,28.307251,143.07831,0.0011178593 177,611.0162,142.3568,28.130493,162.22914,0.0006669028 177,616.9853,113.09211,22.161377,82.42547,0.00058684975 177,118.27758,209.19122,30.42202,58.713745,0.0004646231 177,58.760517,211.25317,26.497463,52.620087,0.00045729856 177,586.9992,174.84409,51.955383,277.87466,0.00022178004 177,1.1192278,104.08176,20.151215,150.01367,0.00018951106 177,614.75543,14.770922,24.391235,86.69972,0.00014232752 177,1.4330412,190.32645,18.987986,127.37671,5.210931e-05 177,535.4246,386.03778,103.40631,113.71295,4.4642667e-05 177,401.92258,422.37473,96.949615,73.566864,3.868117e-05 177,1.1068043,72.24818,18.375387,75.81313,3.859266e-05 177,3.56486,173.80153,56.153618,218.87221,2.0471445e-05 177,583.68256,6.959935,55.46411,271.5179,1.11283925e-05 177,1.2800146,271.0073,33.48559,186.2601,1.0617672e-05 177,1.0245646,405.80865,17.86322,70.00897,9.298049e-06 177,0.6746216,330.3838,18.712461,76.37909,8.506906e-06 177,0.56974936,282.90408,18.56599,77.3649,7.95183e-06 177,377.02625,438.4554,51.245605,58.504395,6.270649e-06 177,450.95782,395.08905,113.55469,98.308716,3.517368e-06 177,513.6825,446.71246,42.670837,59.124634,3.4473235e-06 177,542.43036,450.00653,41.35565,54.919098,2.7176798e-06 177,3.4298584,394.0832,55.491196,97.66025,1.3578624e-06 177,324.8861,426.39514,84.06024,71.91644,5.9638273e-07 177,2.2627296,23.05169,57.527843,106.19938,4.0923825e-07 177,2.819642,1.2341276,85.17164,280.02606,4.0450678e-07 177,1.3796542,37.31544,18.931946,66.726135,2.3192833e-07 177,1.4996476,12.116084,21.469324,54.201656,2.3229434e-08 177,93.54851,4.53397,42.482803,45.745945,1.3719443e-09 177,523.1164,3.9862778,44.454773,46.941223,2.2918308e-10 177,499.15594,2.6547396,41.939514,52.21982,4.0795812e-13 178,2.6613429,178.51581,42.758705,108.50253,0.13524467 178,496.5537,156.88495,43.836,88.78717,0.06607244 178,34.0252,220.7463,45.683495,83.27585,0.009138927 178,14.538975,214.95755,25.182304,50.07773,0.006681145 178,480.45862,111.31651,83.63135,167.41759,0.0040614167 178,1.743195,155.64037,20.451342,97.53662,0.0020441012 178,5.011416,104.630135,81.075035,238.94281,0.0018244254 178,619.41846,21.997055,19.72821,63.488976,0.00049830036 178,612.36395,413.79034,26.782715,86.24872,0.00037029458 178,617.23486,219.3655,21.911804,85.30818,0.00032812802 178,584.7068,10.78571,53.096497,97.5376,0.00021020533 178,81.417694,177.73737,35.7481,62.82051,0.00020509369 178,1.3108879,212.63632,20.535885,145.05624,0.00014010933 178,0.89753664,105.19033,13.8631735,53.028816,0.00013989556 178,73.53962,51.593113,35.635597,75.03526,7.063969e-05 178,611.2656,260.11905,27.881042,160.27985,6.533889e-05 178,554.3375,418.12787,78.090515,82.940216,6.1431805e-05 178,525.2979,98.8,23.560791,55.499695,4.7960133e-05 178,612.0626,53.134743,27.084045,161.90237,3.5754656e-05 178,586.4193,311.24884,52.313354,183.16534,3.531927e-05 178,603.3001,124.1149,35.846558,196.90958,3.2223306e-05 178,31.674477,45.754436,39.485382,84.95889,3.2136333e-05 178,506.10544,54.810814,50.05783,139.09848,2.4010267e-05 178,3.3525538,262.41586,55.628307,214.35541,1.8226618e-05 178,0.36137858,304.4394,18.866861,78.530334,1.8150089e-05 178,1.1792139,422.4403,16.313608,75.95532,8.414711e-06 178,500.61258,446.40143,43.715973,59.00769,4.961249e-06 178,0.7058716,358.72455,18.352087,75.074066,4.0878367e-06 178,540.5379,436.59012,42.875,65.8974,3.455368e-06 178,479.69058,392.03424,117.022064,103.362946,3.2359046e-06 178,3.4674025,422.80978,52.023464,72.9256,2.443176e-06 178,1.5639169,12.881107,22.269823,123.15723,2.997411e-07 178,571.9837,5.140215,45.951904,51.617767,1.2593711e-08 178,1.2794076,1.1165007,20.861116,45.00266,4.756315e-09 178,11.854296,1.848654,43.111176,48.92289,2.6802088e-10 178,545.321,6.5815268,44.290283,47.301468,1.4371321e-10 178,488.3246,2.692077,47.809326,54.72636,5.674746e-11 178,516.69403,0.24035482,48.320618,54.2568,1.116265e-11 179,458.75964,163.38278,21.296051,47.869553,0.5990583 179,616.4715,125.951744,22.67517,85.800026,0.00072917255 179,619.20483,88.39125,19.941833,69.495804,0.0007180692 179,612.55786,366.097,26.588806,135.42252,0.00021578741 179,600.51855,113.23734,38.628113,190.00769,0.0001732678 179,617.1781,289.33163,21.968567,82.12027,0.00015947332 179,37.933517,58.56457,27.057678,58.47604,0.00015375676 179,586.4777,188.69174,51.92157,249.76755,0.00011060842 179,1.0495406,174.73672,12.940191,50.49765,7.365709e-05 179,0.77913904,192.67,18.080034,73.35481,7.105183e-05 179,0.77749836,204.26662,27.777834,163.62984,6.995961e-05 179,517.1043,431.25714,53.59662,69.37668,6.312217e-05 179,608.52765,5.035436,30.619019,172.0254,4.283453e-05 179,0.73379356,113.70459,13.998232,50.505295,2.831206e-05 179,4.626055,79.102974,78.16212,298.3733,2.6653546e-05 179,508.64563,391.80997,127.17157,109.235504,2.5577376e-05 179,2.1826758,65.97382,33.87116,209.91614,2.2035118e-05 179,436.0135,393.80182,116.532715,99.32727,1.6789676e-05 179,1.5468367,450.60324,28.161446,53.78302,1.3016266e-05 179,527.55554,102.28231,80.61572,188.33685,1.2784561e-05 179,1.160398,412.81442,17.776457,71.05881,1.147927e-05 179,2.0492857,269.4353,46.729237,207.22253,7.353455e-06 179,554.8079,448.69662,43.53882,57.17926,7.257146e-06 179,586.5386,434.32214,45.141052,70.032135,7.0624474e-06 179,1.3335335,63.46814,20.039686,91.24472,6.510924e-06 179,0.65102136,329.78955,14.0223255,50.95569,6.4964347e-06 179,490.98276,433.29953,46.36502,67.612885,5.4498123e-06 179,0.72760093,349.2305,18.429625,76.10193,5.263664e-06 179,456.1508,434.5508,53.16684,63.41031,5.127472e-06 179,1.4701759,7.1236525,61.553368,132.8351,3.582667e-06 179,275.12137,63.344036,78.34314,174.04471,2.7732165e-06 179,4.049237,423.6361,64.46213,72.47162,2.40673e-06 179,139.79047,214.22267,73.45979,174.04723,1.8983901e-06 179,397.1435,423.24713,78.76575,71.043396,1.8556948e-06 179,297.6849,429.62018,73.76688,70.66525,1.0665224e-06 179,337.74374,424.40573,79.71875,74.471375,9.680265e-07 179,1.4791663,6.8889747,13.508647,83.85358,2.9343494e-07 179,2.3341603,2.5058188,36.66722,51.672955,1.6483364e-07 179,340.59525,5.8622284,43.56424,47.49113,4.8072224e-10 179,30.575802,2.7192433,45.94083,47.770836,1.6277574e-10 180,457.72528,147.3741,34.009674,61.05664,0.005649147 180,444.4411,153.71056,22.563904,48.29782,0.0018449523 180,616.6621,165.56393,22.484558,87.548965,0.0010813258 180,618.82837,55.04461,20.318298,63.415436,0.0010722288 180,89.99622,257.1922,45.716408,156.33365,0.0005145301 180,620.3277,222.18399,18.81897,59.817963,0.00040733945 180,46.88079,180.24748,34.414368,52.699585,0.00030762728 180,611.1164,366.72473,28.030273,135.19519,0.00024869444 180,598.8504,129.98755,39.653748,172.58835,0.00020893024 180,1.5790105,129.99744,18.554178,84.99553,0.00020204036 180,2.4023714,118.37914,33.446987,166.8031,0.00012503678 180,608.556,46.5462,30.590637,166.8153,0.00010460256 180,0.96736574,207.01373,18.257511,76.83887,9.4480005e-05 180,612.2749,238.53755,26.871765,159.8944,5.9000966e-05 180,457.0913,384.89783,113.08417,108.0177,4.7223606e-05 180,1.0508081,62.109398,19.663923,87.23957,2.6118585e-05 180,83.0205,242.8686,109.40479,222.86494,1.6185046e-05 180,0.89933354,236.29495,19.829508,128.97632,1.4738887e-05 180,2.7631056,19.156355,82.06399,233.61821,1.4547946e-05 180,588.9208,448.87772,42.432007,58.974335,1.36031e-05 180,515.8866,413.91693,84.8642,84.15506,1.0959666e-05 180,0.7283708,377.87457,13.836897,47.030487,8.237223e-06 180,1.0377499,319.7123,20.326128,130.26675,6.961991e-06 180,0.79881066,350.3262,13.774503,46.391815,5.9855956e-06 180,3.2730112,189.74028,57.141563,226.68626,5.4961715e-06 180,485.40912,434.00522,52.793518,67.39609,4.1869484e-06 180,1.2234905,406.17307,20.056082,91.92206,2.558874e-06 180,332.61685,75.84612,87.490845,164.77118,2.2520646e-06 180,344.90363,424.64456,77.2135,72.99301,1.3816364e-06 180,414.4271,419.89813,89.68625,75.973236,1.2502846e-06 180,2.1168816,9.97404,58.60839,76.37496,1.2260949e-06 180,3.8503387,396.08517,54.766716,97.91342,9.650162e-07 180,1.1127914,15.705437,32.165287,186.06964,6.6478276e-07 180,273.92407,423.8259,75.16733,76.174225,6.478923e-07 180,1.2805396,6.806901,17.209486,83.28125,3.9990547e-07 180,535.95276,4.029909,45.001648,51.705795,1.1261139e-09 180,293.03943,2.0999186,40.434967,47.549538,9.110538e-11 180,509.93756,3.78938,46.683777,54.336548,5.4765782e-11 180,206.38284,3.0060906,38.576508,46.25173,2.3623792e-12 180,434.96185,3.8178794,43.965546,53.8015,1.833419e-12 180,464.0506,3.8022933,41.283203,51.167,9.267317e-13 181,603.96014,139.06938,33.839966,84.53604,0.109601825 181,349.64258,247.16199,39.12964,72.35068,0.0023189974 181,623.7453,176.15677,15.401367,46.274048,0.0016626558 181,235.76677,155.59373,25.583328,51.281876,0.00088346616 181,611.9988,302.02994,27.147888,162.18488,0.0006701039 181,68.77986,317.62833,75.51616,155.02246,0.00038934345 181,585.09564,78.58161,53.24884,211.67102,0.00032692737 181,606.4042,430.7901,32.742493,79.858185,0.00021697604 181,611.75037,193.23143,27.396301,170.27214,0.00013025224 181,1.551526,304.44504,17.596994,62.814667,7.423818e-05 181,456.98062,120.410446,85.283844,171.95955,6.5760476e-05 181,1.2462313,214.58817,18.683853,126.162445,4.283902e-05 181,1.1138737,326.94583,18.507656,126.1998,2.6675925e-05 181,1.0734416,95.689766,18.21645,70.948906,2.2166767e-05 181,570.412,355.2393,68.73468,138.42447,1.7745613e-05 181,1.1014111,121.271866,18.810946,134.84029,1.6848735e-05 181,611.43146,9.964571,27.71521,70.35965,1.3437981e-05 181,3.4356658,225.12491,58.38075,199.19116,1.23520995e-05 181,604.09375,19.541569,35.052917,169.87585,7.4634736e-06 181,335.1652,218.96774,79.52985,167.8555,6.4314618e-06 181,56.45585,417.65848,73.99717,79.039764,5.710189e-06 181,0.8221948,420.71228,16.581009,79.35654,3.0158553e-06 181,458.41992,425.38855,83.28314,75.474365,2.1804206e-06 181,3.8223634,95.221634,58.15309,221.67857,2.1156511e-06 181,5.270319,353.02502,79.852104,131.53995,1.2210633e-06 181,290.9167,431.00528,73.23309,69.41348,1.014876e-06 181,222.18211,429.1843,72.8625,69.82831,9.013264e-07 181,527.2646,58.561127,90.40515,192.16148,6.542067e-07 181,1.3607064,53.18188,18.740055,71.03348,5.998027e-07 181,506.51367,425.9643,75.3595,74.64551,5.9466754e-07 181,167.43527,428.23087,75.781525,70.67877,5.0213373e-07 181,41.41053,442.11063,43.75992,58.485107,3.366784e-07 181,3.0964031,429.21863,53.33706,68.366394,3.3392965e-07 181,411.2054,0.0,41.86133,60.085224,2.6133165e-07 181,561.3166,438.1154,46.084778,63.9075,2.4659371e-07 181,314.65628,5.260181,44.068695,51.87335,2.3422221e-07 181,334.866,5.1360483,82.09448,73.501495,1.2933204e-07 181,2.6341765,22.742716,57.294468,103.96424,8.519743e-08 181,571.0516,0.8237142,67.59961,53.64104,7.893433e-08 181,1.1027893,15.354747,10.755616,77.9084,6.006771e-08 181,287.9999,2.1257324,38.623627,56.232296,2.8418281e-08 181,422.88806,5.807969,83.50961,74.55492,2.6859587e-08 181,470.15268,2.7327604,42.87039,54.975098,1.5025673e-09 181,2.1416862,10.40169,31.78358,54.372826,8.898801e-10 181,496.1435,4.222707,48.30005,51.227257,3.7139878e-11 181,523.7743,0.0,44.20923,56.17135,2.8604766e-11 181,549.197,0.9487077,47.441406,53.80389,8.1835276e-13 182,288.40897,119.40383,42.664825,105.00875,0.0049665486 182,306.50348,164.24329,22.007385,47.848434,0.0025456203 182,621.5912,169.03107,17.555481,52.533234,0.0022704722 182,607.89545,77.31324,31.25122,145.98071,0.0010696417 182,619.44226,93.868286,19.704407,66.03015,0.0006012926 182,497.42194,283.43427,46.45056,143.27469,0.00045854322 182,312.56638,142.47025,36.535675,69.93356,0.0003582306 182,612.09326,302.6738,27.053406,153.58038,0.0002735393 182,0.75887126,152.10966,18.082138,76.87602,0.00023085129 182,612.70197,412.36093,26.444702,97.7023,0.00013390587 182,443.86136,305.59744,117.78049,162.61914,8.0118865e-05 182,613.2293,169.00415,25.917358,142.90549,6.920182e-05 182,11.427211,338.19162,115.310295,150.84131,6.6945155e-05 182,0.60473555,195.07835,17.974558,73.57466,4.3102482e-05 182,0.66084146,92.614456,18.60057,82.226944,2.9268338e-05 182,0.49233237,240.36977,17.901825,73.01225,2.82813e-05 182,616.3933,38.038635,22.753357,87.79676,2.1891723e-05 182,1.7371745,111.47711,31.463818,171.0502,1.795366e-05 182,555.3391,392.2034,83.43579,107.67563,1.4308065e-05 182,0.9386841,282.39313,18.060137,73.402466,1.1097022e-05 182,1.3743482,408.5186,17.427765,68.62918,1.027047e-05 182,1.6558969,322.8832,19.166145,129.88794,8.129975e-06 182,570.4435,448.1502,44.91516,60.270782,6.9634652e-06 182,1.7333431,202.65248,30.582628,177.12819,6.6890016e-06 182,570.9769,65.9843,68.16974,240.03548,5.299628e-06 182,25.392622,422.05392,76.13072,73.56317,3.9459883e-06 182,286.19107,440.8124,44.28882,62.974426,2.9141213e-06 182,409.5429,426.25128,77.020905,73.02493,2.6616403e-06 182,235.52103,424.2041,74.66412,72.99664,1.8817925e-06 182,261.37912,392.54138,115.44382,102.23364,1.6321442e-06 182,465.25568,421.89044,74.290955,74.53186,1.4650187e-06 182,364.53815,426.62094,80.403534,71.26959,1.3303957e-06 182,261.42422,71.35597,115.77408,204.70009,1.0876572e-06 182,543.3267,451.71814,43.421875,50.810455,1.020799e-06 182,520.2562,438.6591,42.201843,61.104614,4.575277e-07 182,2.906639,37.729042,63.364403,184.82782,4.3027586e-07 182,1.0682877,39.271923,19.23722,72.910965,1.4226633e-07 182,1.2584115,10.511117,37.675793,76.64976,7.661116e-09 182,0.8964917,0.0,21.01516,47.97274,7.3144696e-10 182,584.91077,1.5590869,43.66693,45.41516,2.6956174e-12 183,272.32428,127.317345,37.00418,88.196144,0.3460071 183,290.04767,169.42532,24.091217,47.30989,0.05249705 183,609.1712,58.582787,29.319214,54.077126,0.009572295 183,621.4921,345.12912,17.654541,53.66028,0.001908515 183,65.121826,207.92064,37.568382,67.04555,0.0014873573 183,610.2645,332.4897,28.882141,133.12057,0.00085941254 183,610.2669,66.08193,28.87976,153.5539,0.0007879834 183,250.92267,93.41032,71.68881,159.18338,0.000478311 183,0.83290446,71.26132,13.526493,50.60662,0.00037269556 183,166.03091,80.49476,72.973434,181.32413,0.00025195253 183,617.5025,266.73227,21.644165,83.70538,0.0001306486 183,1.0481706,206.23251,17.729834,75.73068,9.356987e-05 183,0.98250085,161.86168,13.527893,51.49852,9.232774e-05 183,618.3629,204.51544,20.783752,79.967926,8.826197e-05 183,1.0670768,85.350624,19.944588,149.12064,5.1856874e-05 183,0.6536662,249.06123,18.00567,67.6761,4.3300362e-05 183,588.44086,111.26194,50.70581,241.3341,3.365072e-05 183,597.5704,407.69775,41.50836,88.98923,2.967475e-05 183,0.7827262,346.36902,18.762804,134.07022,2.0145993e-05 183,585.7226,18.814577,53.424072,102.708916,1.9755735e-05 183,3.0182927,136.14572,48.13942,175.90558,1.8749179e-05 183,3.1768312,268.33484,57.985294,206.67636,1.6543474e-05 183,0.9558,290.94043,20.27747,103.108795,1.384012e-05 183,474.96945,453.3164,38.660736,48.583496,1.1465408e-05 183,605.98004,6.5527053,33.166626,60.49627,8.703942e-06 183,40.065536,130.65129,86.045876,171.49348,6.7539354e-06 183,1.8946843,422.144,35.93723,76.44714,4.9457544e-06 183,446.55835,450.61084,40.834167,50.064026,4.2356246e-06 183,521.8438,390.9836,116.766785,105.447845,3.068863e-06 183,360.06088,396.08572,109.89969,94.733826,2.9295359e-06 183,427.9488,391.1878,112.01349,101.976685,1.6102211e-06 183,283.93234,66.563034,82.53763,173.05635,1.5527756e-06 183,261.7202,427.2371,72.928955,72.88406,1.3147708e-06 183,395.39432,438.81516,44.038025,63.441406,9.417055e-07 183,1.7601026,29.900694,28.568205,111.47183,8.435341e-07 183,110.48994,432.10278,74.834236,68.05582,5.992493e-07 183,303.87283,426.0796,70.25931,71.223816,5.6428206e-07 183,561.56586,443.6961,44.20929,59.406616,5.1237055e-07 183,534.78046,444.01346,43.11859,59.42047,3.3316115e-07 183,0.7372599,7.565241,19.232742,60.61013,6.3392096e-09 183,581.137,3.7638412,40.78888,49.391937,6.4411657e-12 183,561.32056,1.944209,38.448547,46.230457,2.1395525e-14 184,114.00961,121.77081,29.97528,62.546494,0.016097287 184,66.27497,78.084274,44.632416,137.10045,0.0070221387 184,1.0967741,85.06088,19.57032,146.55125,0.004242307 184,319.06372,200.90979,40.561768,72.365234,0.00061563856 184,2.3982244,89.15855,49.92965,189.6557,0.0005936597 184,90.262344,87.82434,48.024475,124.27408,0.0003251848 184,612.6868,201.99715,26.459839,129.74812,0.00031691964 184,142.5812,134.8404,41.78122,72.1537,0.00021353026 184,617.3882,389.37302,21.758484,78.50125,0.00018599347 184,104.8212,81.72099,84.846695,158.17596,0.00018118594 184,0.7858716,184.18971,13.406668,54.49034,0.00016954745 184,617.11615,288.40036,22.030518,78.62546,0.00015033915 184,608.3949,440.87234,30.75177,63.52533,6.051291e-05 184,600.1625,247.65477,38.98419,191.69127,5.727706e-05 184,0.8411914,177.72682,18.41644,145.15474,4.8734124e-05 184,611.67786,94.39958,27.468811,155.26865,4.142695e-05 184,1.0176481,396.6455,18.196035,72.791595,3.8459733e-05 184,0.73999757,291.27777,17.881594,68.53488,3.6281985e-05 184,1.5819166,320.8673,32.28603,160.98422,1.5625434e-05 184,570.8992,362.6153,68.2475,128.13116,1.471097e-05 184,1.0599544,339.4652,17.836178,70.874084,8.993845e-06 184,5.5347266,271.98157,76.87664,199.05756,7.635744e-06 184,9.771322,0.0,136.07596,262.13596,5.30256e-06 184,0.87425053,39.88723,19.727606,86.38578,4.2863376e-06 184,12.53432,391.7299,117.88576,101.17404,2.4827773e-06 184,1.5510808,13.87567,60.718346,127.11014,1.8295472e-06 184,10.611676,457.10184,40.205578,45.74234,1.4201129e-06 184,284.5813,432.72522,71.69458,67.26837,3.6225327e-07 184,588.88916,20.65547,50.040527,103.75508,1.6758403e-07 184,1.1282195,6.4779005,22.227877,62.922688,3.844502e-08 184,438.566,1.7394483,39.312866,45.095974,1.8083491e-14 185,603.00104,282.6958,35.90399,76.11624,0.008258082 185,460.28036,290.108,32.64084,67.78006,0.0023200263 185,574.76733,196.11029,63.089478,190.32257,0.0007947787 185,534.3362,275.1987,34.32849,71.63962,0.0006374426 185,609.1238,133.27153,30.022888,183.94933,0.00046682966 185,617.0046,347.71957,22.14209,84.99567,0.00018453447 185,589.484,313.39062,49.638855,167.82516,0.00016715752 185,0.7442635,171.42801,18.482065,81.485306,0.00015102157 185,551.2677,176.39261,43.20807,83.32001,0.0001382705 185,0.64164025,281.6087,13.080375,45.467773,8.526608e-05 185,0.90900964,386.78687,18.32712,77.23877,6.053727e-05 185,0.93446046,243.90056,17.51929,69.3625,5.159321e-05 185,609.00507,439.6675,30.141602,64.71536,4.2492637e-05 185,1.4809098,272.43314,32.945366,177.15115,3.9214283e-05 185,0.85298586,332.03848,18.673502,77.8826,2.2639175e-05 185,2.894051,118.24782,46.76231,173.43526,1.8502631e-05 185,473.0512,234.27956,81.49603,173.4525,1.5680042e-05 185,612.1864,0.39934245,26.960266,60.261925,1.52066195e-05 185,397.3718,146.15102,78.39374,182.51949,1.3593517e-05 185,3.0757487,391.82416,56.84726,101.23987,5.222722e-06 185,536.18164,124.91612,83.10437,200.29619,4.784054e-06 185,589.3102,9.568965,49.591614,118.21188,3.6398355e-06 185,329.7384,446.086,42.982544,57.491425,1.1430424e-06 185,318.81927,390.72067,113.42056,109.4382,7.0692903e-07 185,295.36472,444.2676,45.269318,58.06537,6.1711927e-07 185,2.70736,17.130247,57.162186,117.855515,3.9219606e-07 185,392.72662,428.1386,73.62811,74.32687,3.1768818e-07 185,243.22682,427.96283,75.09285,72.759674,2.750815e-07 185,0.4975647,11.333968,8.570866,81.31388,1.8774284e-07 185,1.1334277,9.633272,28.632214,54.243958,2.339578e-08 186,593.1515,285.01636,43.26111,91.77835,2.4364827 186,411.00153,272.36575,37.290375,79.71411,0.068392195 186,519.2026,250.8744,33.455627,73.28056,0.048519764 186,481.101,152.05003,27.102173,55.166016,0.018670207 186,620.4013,315.98364,18.745361,69.2352,0.010400285 186,571.79004,191.25317,64.536865,243.66052,0.0067960196 186,589.3995,86.611496,47.31372,137.0887,0.0051252125 186,539.8042,254.55734,37.619568,72.473175,0.0026105484 186,615.69244,248.76337,23.454224,105.332825,0.001362898 186,616.0622,148.36491,23.084473,86.13748,0.0013491283 186,498.9248,238.99785,42.901367,138.0435,0.00086149364 186,611.7665,326.94513,27.380188,159.59164,0.00059008674 186,0.8807292,99.587944,19.520763,80.78448,0.0005833228 186,614.9895,60.783375,24.157166,108.49364,0.000539606 186,0.50726724,206.12248,13.698202,53.760117,0.00047001836 186,0.55239505,149.96376,13.881245,53.19925,0.00044067364 186,0.79796064,162.8062,19.178844,142.01958,0.000305905 186,0.7183769,418.6399,13.590605,47.329193,0.00012076132 186,487.0751,204.25029,119.926605,212.85524,0.00011388496 186,495.65018,159.14754,24.535126,51.234634,0.00011101125 186,0.7173747,261.1573,17.866096,70.23526,0.00010324734 186,3.830757,113.09292,58.009907,213.62839,5.9794227e-05 186,608.9342,439.14725,30.212463,66.05194,4.1210777e-05 186,531.7918,112.69029,88.41766,206.99202,3.6185644e-05 186,471.54013,130.40536,45.712006,120.31209,2.7519562e-05 186,0.980354,372.48523,18.225216,75.59265,2.430089e-05 186,5.079248,279.44824,78.140274,196.97256,1.9086874e-05 186,404.42325,243.06714,88.09442,156.616,1.7443823e-05 186,0.4982715,298.31677,18.539827,74.971405,1.4840609e-05 186,1.2959018,235.21107,32.50161,179.95918,1.3817595e-05 186,1.4975212,338.34866,33.86681,149.85364,1.0410581e-05 186,0.9367074,440.36423,21.618553,62.140625,6.603624e-06 186,602.0347,7.479157,37.11194,65.07105,5.754074e-06 186,409.41223,91.792046,80.447784,187.88297,3.829196e-06 186,2.847033,427.16412,52.76125,70.695984,2.5816896e-06 186,487.51627,94.059944,78.74344,206.05682,2.2921065e-06 186,311.40274,151.72566,75.56793,164.1584,1.4949854e-06 186,1.4863851,31.587135,31.360653,135.6838,2.4937106e-07 186,19.550117,39.470516,136.97375,225.28262,6.3879334e-08 186,67.21721,41.33553,49.4386,137.26906,1.0950457e-08 186,1.453283,7.241699,19.827106,62.19046,1.0609449e-10 187,509.26294,245.07971,46.612305,117.568756,0.024293551 187,500.65234,114.925,28.378967,51.930542,0.001071078 187,615.8934,200.33778,23.253296,89.71007,0.00072305044 187,617.252,284.74277,21.894653,81.02713,0.00045495835 187,624.66174,181.3547,14.484924,46.13228,0.00038220346 187,614.3632,66.08742,24.783447,91.76218,0.00036784203 187,0.64776695,178.07797,18.1995,83.36359,0.0002913013 187,487.6645,133.75911,30.370544,61.49916,0.0002569539 187,608.83655,92.86363,30.31012,176.49452,0.00019973527 187,616.86554,401.85437,22.281128,78.61679,0.00018534096 187,601.54626,255.80756,37.600403,190.71481,0.00015786782 187,0.7205599,418.02267,13.698389,47.472687,0.00012472023 187,0.83219,261.1486,17.472103,69.92615,0.00012139292 187,570.9889,88.00106,67.17883,271.7429,8.34138e-05 187,1.0689657,127.443794,18.452328,77.05039,7.312697e-05 187,547.85016,118.86597,38.28827,84.52196,6.602163e-05 187,1.9983578,147.2601,31.388914,174.34372,3.5070057e-05 187,571.65533,360.903,67.49133,128.82462,3.2780135e-05 187,490.95438,208.24725,139.6243,218.18109,2.7887643e-05 187,0.7976563,340.0575,20.162764,134.07904,1.716035e-05 187,4.586465,285.1208,78.07054,188.9235,1.3333073e-05 187,5.4960155,122.63006,76.97756,243.5213,6.697159e-06 187,3.1553159,397.3387,56.822083,96.11365,3.9085353e-06 187,472.80496,78.16215,89.81143,204.64233,3.6617002e-06 187,397.58655,116.25709,42.375854,157.39026,3.254064e-06 187,2.2200847,70.62939,38.195877,115.149895,3.01232e-06 187,614.928,1.100739,24.218689,57.94687,1.6744991e-06 187,350.1727,137.5811,78.48709,167.75139,1.0509492e-06 187,526.3788,59.15814,89.01178,196.95312,2.742632e-07 187,2.288926,18.890514,58.351826,119.90181,3.668995e-08 187,0.97152954,12.781231,8.401438,81.751236,4.43082e-09 187,77.88653,27.390001,81.1744,158.7647,4.06861e-09 187,1.7146037,7.3733077,20.219433,55.55049,2.5770783e-11 187,70.996124,3.1349251,45.45259,52.601006,1.6948344e-11 187,45.60896,0.9892383,46.49703,55.49691,1.0691791e-12 187,121.881516,0.12163249,46.172363,48.016396,5.2587654e-14 188,56.699657,251.54768,26.4753,48.93965,0.16185942 188,559.4924,77.953926,28.791992,50.536247,0.007499569 188,609.3538,352.18076,29.653564,68.81763,0.003980875 188,501.2545,78.74526,29.407257,56.192055,0.0033319965 188,618.92395,54.016006,20.222717,65.615715,0.0012513277 188,595.18835,299.84412,43.80548,183.01913,0.0011108306 188,493.18683,106.424446,31.436646,63.574333,0.0008424133 188,624.9676,307.90326,14.179077,45.41562,0.0007803243 188,614.96234,279.17673,24.184326,112.32147,0.00040658534 188,0.5792367,76.78154,18.257841,79.49992,0.00031319878 188,611.03156,140.52068,28.115112,162.19127,0.00025767513 188,0.55492514,120.65554,19.72701,147.28693,0.00025231706 188,616.1144,97.4675,23.032288,91.57185,0.00020338509 188,0.60520834,58.52501,14.062705,50.968506,0.00018304269 188,0.6592224,234.41656,13.205247,50.65976,0.0001532048 188,601.45056,23.309689,37.696106,125.85133,0.00010729484 188,412.8695,109.684326,26.251282,54.05432,7.439481e-05 188,608.3046,441.416,30.842041,63.26596,7.0282076e-05 188,0.5504761,267.0264,18.175682,71.263885,5.9500024e-05 188,3.6387908,120.29903,58.76719,213.92152,5.2558797e-05 188,0.8695516,398.06467,18.37401,71.957275,1.7333314e-05 188,550.73303,44.08123,88.34631,210.0192,9.671982e-06 188,1.3115658,219.97305,31.270107,168.68628,9.5195255e-06 188,5.1462145,279.55765,79.053314,197.60007,9.468245e-06 188,380.06946,96.34064,73.98154,186.49512,9.295478e-06 188,0.7256209,371.48413,13.727628,48.864807,7.6178226e-06 188,0.6432731,313.7352,18.351734,73.39932,6.6511534e-06 188,613.31793,2.5074904,25.828735,55.904194,3.1444383e-06 188,1.6840333,350.74246,33.409035,140.79083,2.365326e-06 188,1.1099406,442.87167,21.62451,60.246826,1.9109307e-06 188,1.1937615,23.412996,35.34516,176.87149,5.6356356e-07 188,482.3835,44.888172,87.868256,161.74544,1.7075249e-07 188,1.2747933,10.764717,25.244326,76.38105,3.597632e-08 188,101.79021,0.28660157,44.368103,51.514343,5.263691e-11 188,452.04553,2.389471,51.070038,55.508537,1.1038789e-11 188,428.46732,3.1064942,45.369263,51.953793,3.7142603e-13 188,126.92152,0.0,42.105507,50.43185,3.675065e-13 189,302.73587,212.58649,37.536743,57.76703,0.017032117 189,431.62543,65.48728,31.152405,67.22964,0.014322639 189,503.74533,53.202766,27.264069,52.203156,0.01053094 189,240.14035,231.55365,27.715088,48.367096,0.00047677758 189,457.9012,206.93271,32.403473,61.48166,0.0003514667 189,610.4066,68.27378,28.740051,154.03351,0.00028568634 189,616.94226,274.9937,22.204407,83.030396,0.00018880589 189,617.41205,403.58325,21.73462,76.14993,0.0001454075 189,617.0557,347.84384,22.090942,82.03339,0.00010830635 189,600.0409,260.28915,39.105774,190.61472,9.525408e-05 189,615.2213,26.536232,23.925354,84.876465,8.812e-05 189,612.40436,179.84544,26.74231,140.81041,7.860475e-05 189,1.1188331,165.24287,17.95891,79.56929,7.293766e-05 189,0.3940674,300.95883,18.80567,81.97931,6.709446e-05 189,1.2453719,207.14217,16.87744,136.87825,3.800275e-05 189,3.480205,125.74019,56.141243,209.74876,3.0862677e-05 189,1.0129158,108.576225,18.464972,79.49767,2.946483e-05 189,0.9637012,303.00577,34.124596,176.41321,1.9624513e-05 189,572.70374,361.2004,66.44293,129.02798,1.7619677e-05 189,572.04297,29.538706,67.1037,144.32573,1.688306e-05 189,335.46518,86.84313,35.643616,78.81049,1.2089274e-05 189,0.72198975,425.82486,13.841533,46.794586,9.925549e-06 189,322.0686,86.9873,75.74158,187.13776,9.269293e-06 189,0.6570178,360.71573,13.61753,45.616302,7.669592e-06 189,4.782559,249.80214,77.44967,219.10005,6.0883267e-06 189,1.2771062,70.646515,18.613745,68.37195,2.3118027e-06 189,490.31427,40.682426,50.20349,106.09463,1.6865029e-06 189,1.2799984,404.6038,25.31237,93.326904,1.4016072e-06 189,422.211,28.535755,88.56036,176.64836,2.78528e-07 189,305.00964,432.51404,71.45245,68.23581,1.7513081e-07 189,466.14444,48.03451,112.52957,194.45409,1.5731835e-07 189,276.848,38.08388,88.78903,190.68436,1.729409e-08 189,1.6497641,42.754566,34.430054,169.83855,1.0650089e-08 189,1.3271078,13.942094,34.191135,65.36809,2.928255e-11 190,386.78473,216.7009,34.513794,59.72223,0.016047634 190,616.68915,72.56733,22.45752,89.33463,0.0004924988 190,1.0088135,320.1061,17.641695,72.88632,0.00031531946 190,582.7498,16.572155,55.76111,101.716156,0.00028144772 190,611.61145,118.673805,27.535217,144.80664,0.00023521902 190,617.5559,302.80197,21.59076,79.03323,0.000135517 190,617.4268,403.58975,21.719849,76.73837,0.000114018745 190,1.070411,66.28116,18.675806,76.284134,0.000111678935 190,617.39667,356.44534,21.75,80.174164,9.858547e-05 190,0.8441146,207.74258,18.8327,69.66586,9.824431e-05 190,618.2425,245.76636,20.904175,82.86609,8.0178026e-05 190,610.741,33.96385,27.408264,59.493404,6.949042e-05 190,601.5919,307.13464,37.55475,178.44495,4.7397945e-05 190,5.8789587,242.7389,75.386635,224.31429,4.4903984e-05 190,1.3397437,219.15881,27.397802,160.86087,4.3822307e-05 190,1.0602328,307.69763,29.640491,167.63248,3.109e-05 190,0.45717898,167.94981,13.404641,48.81154,2.7159236e-05 190,402.0061,42.17732,40.154694,82.09268,1.876696e-05 190,0.74901205,111.78924,18.303732,78.14292,1.6718095e-05 190,0.74087894,391.97513,18.527,71.243835,1.2381997e-05 190,546.0943,25.31741,92.93121,205.59402,1.2320193e-05 190,580.3728,428.6138,58.773865,69.15262,7.532059e-06 190,1.5735735,76.286995,32.52457,200.86288,5.3517374e-06 190,3.2038088,389.22043,56.531387,104.55246,3.588179e-06 190,2.08326,19.189157,58.921143,109.69109,1.3150466e-06 190,5.819346,45.52763,75.997,301.261,7.624986e-07 190,331.88922,431.8923,71.48245,68.198425,2.4999304e-07 190,277.65778,431.34744,71.61243,69.5383,1.8460632e-07 190,388.07266,27.188646,83.64334,166.24373,3.6833693e-08 190,1.2495931,6.854206,32.119915,62.412464,3.782991e-09 190,428.51538,3.6871681,42.301666,45.1125,5.9480897e-12 191,135.60829,228.81433,36.3405,73.73682,0.0022642878 191,621.96136,212.80476,17.185303,52.60811,0.0009630629 191,618.0917,232.78069,21.054993,77.51863,0.00039504725 191,617.2021,69.89731,21.94458,83.52139,0.0002306759 191,617.2277,129.54414,21.918945,84.41295,0.00014774775 191,617.66455,381.52768,21.482117,80.62421,0.00013745548 191,617.7717,284.09555,21.374939,84.12662,0.00013254285 191,0.7440267,167.5546,18.220215,76.052444,7.1740746e-05 191,0.6964225,221.25194,18.094622,76.53648,6.244946e-05 191,602.4952,225.06647,36.65149,171.38501,6.2085855e-05 191,355.7046,276.7489,40.222168,138.80756,5.914034e-05 191,0.43481976,289.86145,13.45991,53.199768,4.4958106e-05 191,600.97296,63.1779,38.173706,194.65797,3.9142134e-05 191,0.65112716,333.85663,18.605452,141.27795,3.2155924e-05 191,577.1379,285.54733,62.00879,187.2345,2.6584954e-05 191,0.8145622,310.66367,17.495424,71.1485,2.5787718e-05 191,615.0309,7.7744665,24.115784,85.39611,2.5632466e-05 191,609.4562,441.1633,29.69049,62.337036,2.3830144e-05 191,52.281193,234.2556,81.98927,181.61443,2.3267867e-05 191,1.1004207,68.65901,17.94743,141.43478,2.1866308e-05 191,1.2788265,125.82302,31.892458,181.0961,1.6636506e-05 191,5.9263773,232.17142,77.68213,241.62323,9.929298e-06 191,0.85495526,437.48392,21.572773,62.758484,7.11374e-06 191,567.8724,23.8245,71.27429,132.26746,6.8717923e-06 191,1.4864202,236.77177,30.615913,173.74596,6.5579607e-06 191,6.321966,392.5163,117.230156,98.82626,6.430738e-06 191,223.56615,380.3043,111.36281,104.89255,2.1726867e-06 191,305.4985,379.3363,111.82373,108.765686,1.4719594e-06 191,75.659256,427.66962,80.855484,69.42111,5.4544785e-07 191,351.28903,428.1461,72.67917,72.56006,4.7728776e-07 191,194.87325,429.25476,71.29445,68.79956,3.8823947e-07 191,291.51892,426.6987,71.37714,74.051575,3.368454e-07 191,2.7154834,35.93157,61.75068,182.38776,9.784584e-08 191,1.901915,20.873953,29.583464,124.26316,5.0037528e-08 191,1.4001783,4.4783173,20.969763,66.38013,1.1466041e-09 192,473.19012,289.64343,42.73633,87.347565,0.00087089156 192,610.8568,208.99991,28.289856,130.77652,0.0008280688 192,625.729,257.00494,13.417664,45.81543,0.00080936827 192,618.28125,136.86658,20.865417,76.73775,0.0006297837 192,617.707,294.1234,21.439697,89.57886,0.00038364378 192,602.96405,290.7726,36.182617,194.02426,0.00017650046 192,617.38995,375.90274,21.756714,85.36398,0.00017619757 192,0.8162435,158.77301,18.656515,76.63574,0.00017327096 192,617.5109,81.703064,21.635742,81.6167,0.00015303 192,608.4285,432.96588,30.71814,72.79904,0.00012293097 192,0.8833838,242.47939,18.263554,74.74431,6.411271e-05 192,0.7484033,385.29816,17.535152,72.09686,5.1908137e-05 192,1.5272348,131.9006,34.305237,191.57202,4.3717453e-05 192,1.0662484,88.366554,18.752563,84.90499,4.0136718e-05 192,0.72402996,325.55307,18.083197,76.11136,3.6495825e-05 192,602.4608,64.071625,36.685852,197.8223,2.1001966e-05 192,3.2086556,228.53772,56.93873,240.69775,2.0122952e-05 192,432.2998,390.65106,111.75476,103.365295,1.2232678e-05 192,615.5678,20.111557,23.578857,86.09807,1.2131626e-05 192,225.83943,386.90622,121.468796,106.59952,7.166198e-06 192,0.66432947,432.6219,22.130388,68.95334,6.814649e-06 192,3.1188185,391.666,55.472633,97.225586,6.3047332e-06 192,466.13995,442.193,41.524292,58.081757,4.351131e-06 192,317.20593,389.2331,121.536316,101.31076,4.2287875e-06 192,521.4314,389.4956,117.71527,102.87973,3.6813713e-06 192,399.314,425.7371,86.38373,73.16745,2.6045598e-06 192,166.9363,419.35013,77.80975,79.08896,2.2639988e-06 192,570.7084,20.643366,68.43829,135.41795,1.8073184e-06 192,2.3997023,21.632236,57.942135,108.22748,1.8040844e-06 192,27.112991,421.53836,76.30487,75.01541,1.5790766e-06 192,120.278076,420.106,80.20364,77.87286,1.1717658e-06 192,289.8673,424.84018,80.02954,73.67755,1.0765593e-06 192,547.8706,438.0599,42.910034,62.378815,1.0365401e-06 192,280.4204,442.96164,42.409943,59.430756,7.108366e-07 192,3.8995574,57.20043,80.97138,322.94897,3.1949114e-07 192,1.5709018,34.255165,19.56496,72.97127,2.192982e-07 192,129.43599,38.879356,78.77339,203.44327,1.807341e-08 192,586.768,5.9971404,41.256775,45.556618,1.5104067e-08 192,1.6421583,8.231853,32.132412,60.430622,9.679351e-09 192,91.57172,6.40666,66.793625,125.775314,3.1588425e-09 192,337.77325,4.504481,43.084503,45.049538,4.266565e-10 192,18.418121,3.165879,44.891308,47.7739,1.2754403e-10 193,618.8775,108.283936,20.269165,69.452866,0.0053151557 193,0.69036704,211.33594,14.032925,56.476746,0.002502394 193,607.43567,53.206375,31.710999,86.41757,0.0011004972 193,612.5928,236.66779,26.553894,148.75726,0.00042611433 193,1.4801074,125.00862,27.877535,156.8171,0.0003248045 193,600.25006,70.9442,38.896606,187.06783,0.0002453343 193,621.0234,167.32465,18.123291,59.002182,0.00020319647 193,0.6844125,219.48982,19.885794,145.61012,0.00012870357 193,0.9138599,331.88214,18.849142,141.15433,0.00011026843 193,612.8824,322.21442,26.264282,141.05371,0.000105134815 193,0.4133541,266.6342,14.00268,53.62857,9.865291e-05 193,0.58961225,350.3455,13.272719,49.81891,7.904436e-05 193,3.3928077,134.98662,57.295216,239.85197,3.6991547e-05 193,0.94138837,418.1958,15.784223,81.8439,3.5279612e-05 193,599.8766,412.04355,39.27008,85.029175,2.9360317e-05 193,3.6037827,303.50354,55.568275,179.1275,1.7543152e-05 193,179.52237,444.69885,44.41336,55.97888,1.560356e-05 193,378.4584,449.84814,40.575806,49.56665,1.3837297e-05 193,0.952037,64.90733,20.691706,115.17566,1.3529704e-05 193,404.88785,453.41907,41.063263,49.217834,1.1992784e-05 193,110.86732,440.85083,46.347023,56.702667,1.1479434e-05 193,2.7295492,427.27362,52.581676,69.58316,8.129014e-06 193,360.424,398.07742,106.57669,95.90582,3.857271e-06 193,38.66266,426.40994,78.68763,71.01138,3.7890843e-06 193,465.8537,453.19235,41.69272,46.98001,3.181607e-06 193,308.565,440.6544,51.99237,57.811768,2.9854991e-06 193,426.68756,427.80548,71.342285,70.38339,2.5822214e-06 193,151.64711,444.52325,41.585587,55.924774,2.3402765e-06 193,67.598,393.67178,115.255775,99.9487,2.2837671e-06 193,496.17575,454.51965,39.279755,46.2753,2.0898788e-06 193,149.1097,392.61035,107.80617,101.28488,1.8636401e-06 193,280.49936,396.2684,111.608734,96.0639,1.6804373e-06 193,2.4763412,20.613344,55.827774,109.58374,9.2247376e-07 193,1.1106926,32.746124,19.249022,74.48258,7.919406e-07 193,450.77606,396.1532,117.19537,96.68469,7.724806e-07 193,204.29626,428.1486,75.87631,70.02753,7.512887e-07 193,508.65662,429.41464,79.1723,68.75787,6.570378e-07 193,256.94263,427.4909,76.043274,70.64188,6.241579e-07 193,596.38965,4.1297073,42.75702,90.29417,3.2008523e-07 193,1.170306,7.154017,30.580854,64.44465,4.0978563e-08 193,484.03235,1.4167969,42.448425,51.297646,5.401979e-10 193,455.67865,0.7166667,41.546783,45.016964,1.3613294e-10 194,621.1301,348.21332,18.01654,58.825897,0.002787044 194,612.4852,311.29257,26.661438,140.23056,0.00052311446 194,618.49304,258.09976,20.653625,76.15387,0.00032508123 194,255.67761,194.17805,58.240143,135.68822,0.00027984937 194,621.96564,115.705315,17.18103,53.627586,0.00022445638 194,272.30423,232.8329,31.57309,67.22658,0.00017549656 194,1.0860026,250.80063,18.540115,79.07324,0.00011804267 194,602.26086,190.30556,36.68518,207.98601,7.660045e-05 194,617.6717,158.24457,21.474976,83.46947,7.000426e-05 194,612.1736,68.00567,26.973083,138.5617,6.97201e-05 194,614.14166,415.10455,25.005005,86.44031,6.015594e-05 194,73.123085,132.77528,70.98992,209.28215,5.0452734e-05 194,0.6388973,297.5742,18.424078,79.212006,3.7397695e-05 194,1.306202,190.00386,18.761444,80.01341,2.7131537e-05 194,2.0615153,141.12738,33.84804,188.43277,2.6902895e-05 194,1.1074561,95.73117,19.079792,81.57277,2.5315532e-05 194,0.8443766,376.12195,18.224009,74.065,2.1365197e-05 194,572.60254,344.73746,66.54413,142.72131,1.7395712e-05 194,1.610581,253.28969,32.21645,180.49788,1.4019378e-05 194,5.0079427,134.60722,79.17957,268.79382,1.2716188e-05 194,295.39813,438.25693,41.606262,58.855835,8.1457765e-06 194,584.48364,17.502644,54.63086,277.2026,8.071324e-06 194,609.33344,6.2685223,29.813232,53.60337,7.359516e-06 194,322.81818,442.41544,40.251526,56.16864,4.8422753e-06 194,0.80604005,417.62534,14.719106,84.41144,4.1438243e-06 194,390.5761,443.50183,45.513153,57.95343,3.2248079e-06 194,2.9190512,389.96234,56.61544,101.52533,1.9432016e-06 194,292.2757,395.73444,118.043396,96.806885,1.6181891e-06 194,364.09497,445.57288,41.117493,55.67871,1.1794074e-06 194,368.61435,392.8242,109.57544,100.87717,9.426077e-07 194,1.6617693,27.645828,35.595062,151.6028,9.0735136e-07 194,1.0144507,45.08167,19.301352,77.598495,8.7012825e-07 194,489.3812,385.1871,119.52176,109.73477,5.844752e-07 194,426.88736,428.71616,72.74811,70.74371,5.2143776e-07 194,475.51877,421.98358,72.32846,78.51184,2.6123098e-07 194,1.2019304,9.022569,51.585316,76.758804,2.560209e-08 195,620.9251,288.06625,18.221558,57.442963,0.006766228 195,606.1209,148.11847,33.025757,96.29834,0.0014672101 195,611.3426,280.47546,27.804077,137.55652,0.0007602205 195,621.0917,253.96873,18.054993,57.6028,0.0006027094 195,621.8078,384.13986,17.338867,58.590057,0.0005770302 195,620.4658,91.79151,18.680847,61.078056,0.0005069977 195,606.04846,433.48068,33.098206,73.31012,0.00048078469 195,621.42584,126.00027,17.720825,60.82531,0.00046226874 195,585.0217,96.93628,53.30365,239.2843,0.00042679434 195,624.0657,166.47018,15.080994,46.659958,0.0003930293 195,0.98826253,205.04523,18.594046,79.67001,0.00035313514 195,544.664,253.40569,26.710876,52.149857,0.00033729288 195,587.36304,329.97528,50.740295,161.55832,0.00028913497 195,616.0896,194.97195,23.057068,90.47162,6.662288e-05 195,0.8682756,274.21277,18.035608,79.24118,2.3787366e-05 195,1.2905592,105.503235,18.036621,72.52872,2.2461581e-05 195,0.7272827,333.28458,18.524061,134.26907,2.2281767e-05 195,107.465416,177.52966,26.298439,50.308304,2.151938e-05 195,616.2819,21.249252,22.864746,83.25399,2.1380074e-05 195,1.5870476,176.79169,34.33755,175.12027,1.9671093e-05 195,0.7342102,158.18106,13.531608,50.65471,1.4985976e-05 195,0.7447465,424.8328,13.447871,45.535187,1.151463e-05 195,3.910508,334.34033,56.90258,150.58472,9.452257e-06 195,457.15933,181.59906,73.11679,173.84143,8.616792e-06 195,1.4038802,85.342354,28.058977,162.12915,7.821264e-06 195,600.9008,8.9379425,38.24585,170.79495,2.421589e-06 195,5.3705406,123.03646,78.49463,281.91397,2.2878523e-06 195,1.9673015,417.56345,34.752846,80.07663,1.6289594e-06 195,313.58707,395.15317,110.87579,98.50772,1.2521389e-06 195,1.1667595,18.032331,20.1829,125.487274,1.1181664e-06 195,292.39758,425.28976,69.973236,74.99014,3.447736e-07 195,1.5952735,10.360606,52.290783,73.21216,2.222017e-07 195,387.2349,34.907913,26.556519,60.41687,1.5721757e-07 195,3.4746454,14.149259,80.47857,146.61249,1.3359333e-07 195,461.343,31.507732,27.144684,65.03325,1.14514975e-07 195,422.78787,4.0284276,43.549896,51.511177,5.8610027e-08 195,395.76462,5.1464243,42.972107,47.824978,1.0121686e-08 196,263.15106,239.77003,25.070435,57.81938,0.5361844 196,352.0325,52.409695,72.028625,182.2059,0.20341007 196,239.08485,132.58696,83.74654,184.23732,0.073086545 196,234.40761,198.31888,49.166428,104.773926,0.028381785 196,279.87405,238.1686,25.087982,59.84813,0.026710335 196,284.95404,202.98007,42.779633,106.58774,0.021225456 196,381.1875,148.83887,23.941376,49.830627,0.012451222 196,376.9712,72.48388,35.25403,74.249855,0.011340143 196,148.73836,227.6173,35.13098,69.09035,0.007290479 196,321.0657,112.01784,48.74655,177.63286,0.0053272177 196,368.42932,111.24679,26.218872,54.57876,0.003886957 196,351.2007,118.6147,38.6232,81.407104,0.0029162925 196,609.26984,173.38586,29.876831,161.27863,0.0017201233 196,87.45297,187.89192,29.071976,59.294067,0.0015798131 196,370.08688,184.92828,42.832703,89.53198,0.0005625893 196,1.1564901,108.52765,21.256922,138.22235,0.00048334996 196,602.17365,257.8586,36.973022,185.91605,0.00024624943 196,385.88547,108.83293,28.454437,66.05235,0.00012947225 196,111.13438,107.78349,75.11375,193.53209,0.00012248302 196,1.308693,276.64468,18.221323,128.87866,0.00011342507 196,608.1633,3.9454005,30.983337,56.69292,3.309396e-05 196,584.16345,10.411543,54.559265,115.765854,3.2579646e-05 196,608.9886,441.05112,30.158081,64.33435,2.8268949e-05 196,1.4907984,311.91312,32.02661,168.18643,1.8781247e-05 196,228.01297,44.646378,39.984497,100.07637,1.7916167e-05 196,2.1953695,32.657917,58.951584,199.826,1.528802e-05 196,3.2378109,127.17014,56.781185,256.48175,1.4953041e-05 196,586.2078,392.6427,52.374268,101.064606,8.994513e-06 196,1.0767822,440.8298,21.180979,61.598633,2.972663e-06 196,1.5553093,17.508406,30.528286,130.96912,1.2204067e-06 196,1.0254297,12.707787,14.641548,75.432785,2.9677327e-07 196,399.49573,1.4079428,50.20923,55.131355,7.73931e-09 196,374.10043,1.5283105,45.8739,57.81177,3.4384118e-10 197,158.3422,196.53014,32.615417,56.257553,0.34256837 197,581.6669,168.35475,24.223999,48.612244,0.27169666 197,75.121086,140.5094,48.05117,127.682526,0.10641068 197,575.4517,167.25061,50.945374,104.42685,0.061604816 197,533.04364,177.24696,36.104736,68.60156,0.034490634 197,326.23914,202.91335,26.900085,45.38658,0.028902857 197,81.4888,195.54994,25.797821,63.665115,0.020931872 197,96.307205,104.32044,42.229584,128.8132,0.01777526 197,609.356,128.52933,29.79065,156.74902,0.011525669 197,621.8161,189.2009,17.330566,59.588074,0.010714349 197,134.51294,137.51746,62.222305,136.38391,0.002534722 197,413.71484,84.076294,68.76022,168.45772,0.0018054403 197,55.342,99.90689,114.58072,208.72028,0.0016058822 197,58.102177,172.39915,40.92796,93.49718,0.0009448331 197,117.38667,80.297615,43.047882,170.60321,0.0005478114 197,394.8855,106.385826,37.930878,85.051476,0.00043647565 197,586.0833,223.32672,52.406372,246.85333,0.00041454242 197,561.41724,180.57942,37.63214,76.598434,0.00040506705 197,101.59853,138.14459,25.224571,56.969498,0.00036732532 197,612.2937,371.9469,26.852966,120.29697,0.00021386081 197,581.044,20.375925,57.93683,218.2858,0.00017884892 197,1.5334668,145.4181,19.92809,129.8542,0.00012350608 197,3.729401,116.85111,70.22673,177.53735,7.224345e-05 197,614.90906,30.190844,24.23761,97.061646,6.333322e-05 197,1.280542,216.06879,18.976759,122.909485,3.2011503e-05 197,1.0065958,323.97577,19.614674,129.85529,2.0271767e-05 197,2.9378173,212.46098,57.606014,234.33476,7.2473113e-06 197,2.9228077,390.0829,56.63584,102.12744,1.8102684e-06 197,1.4740658,53.11033,30.597933,176.83383,1.0971877e-06 197,2.64862,11.531491,57.855885,123.32106,3.0222574e-07 197,414.55188,5.047471,45.51593,54.641346,2.3118194e-07 197,1.9913217,5.294258,38.64411,46.35378,1.0733543e-07 197,441.64032,4.9371777,43.848663,49.75849,9.17913e-09 198,329.75784,176.94983,31.602966,79.44797,0.27923602 198,464.97324,209.2698,31.720947,68.90796,0.07590197 198,556.54114,198.52109,24.835144,45.22574,0.032288563 198,406.7214,200.21596,29.19992,54.41118,0.01570629 198,400.173,145.5454,49.2753,120.73564,0.013074649 198,372.11325,77.45869,46.83377,166.33557,0.007782723 198,325.0324,98.537506,62.27545,170.90903,0.0055288314 198,375.85028,70.07812,29.424713,67.43682,0.0032733781 198,576.9647,99.15927,40.228516,80.117874,0.0022192867 198,617.4724,239.23787,21.674255,89.86116,0.002051616 198,435.03857,148.15694,29.069,59.3396,0.00090378645 198,620.697,92.86039,18.449646,57.403633,0.00062328833 198,611.2419,166.82227,27.904785,124.46829,0.00036441188 198,621.57556,419.79062,17.571106,52.278076,0.0002728525 198,621.85297,374.11346,17.293701,51.39505,0.00026379427 198,377.26355,116.80124,119.85495,188.93494,0.00024802887 198,426.58392,117.50129,49.345306,134.5426,0.00017680421 198,584.8586,91.03329,53.458984,236.57983,0.00014229199 198,598.6812,232.61931,40.465454,200.41725,9.7831915e-05 198,332.24753,71.294365,39.1586,87.67997,8.920517e-05 198,614.8749,19.23099,24.27179,78.9371,8.3642735e-05 198,584.246,12.089063,54.632385,123.61305,6.255979e-05 198,610.9871,369.95328,28.159546,127.786316,5.6554352e-05 198,615.7839,294.949,23.362793,84.1149,5.317266e-05 198,356.1542,88.09104,37.707214,103.99662,4.3784043e-05 198,1.2034457,190.86003,18.53395,117.86226,2.1411988e-05 198,1.4571582,243.996,34.953274,198.67682,1.0819965e-05 198,0.9362793,389.23456,18.275251,72.696594,9.42049e-06 198,2.3354037,131.85406,57.998074,192.63672,8.697934e-06 198,0.8122864,357.46637,13.870719,46.568573,5.25628e-06 198,0.79304975,329.96323,13.932198,46.8136,4.7084827e-06 198,0.79867274,287.1176,18.506834,72.78772,3.794921e-06 198,1.4813281,72.86913,19.011478,136.20926,2.678252e-06 198,1.0977149,442.2519,21.541174,60.507904,1.0504282e-06 198,3.15827,391.7347,56.571198,101.408844,1.020762e-06 198,72.05822,28.548615,113.30619,208.1168,1.9269974e-07 198,1.1559701,15.313568,56.8915,115.36664,7.2996194e-08 198,1.0759904,7.3549285,20.517935,59.45765,6.576816e-09 198,94.268234,1.6048307,46.78409,54.41829,4.1985357e-10 198,515.618,2.648776,47.329773,54.389297,1.5936331e-10 199,397.5118,200.55803,33.649536,78.69957,0.21970786 199,481.67026,190.7437,22.804352,46.478622,0.08507432 199,200.33289,63.491302,67.30701,184.46838,0.045126073 199,323.22778,126.1855,52.65753,132.8029,0.026052475 199,348.14764,114.99292,42.46225,103.84328,0.015866026 199,147.47787,177.41978,29.540848,47.215607,0.0054605054 199,606.67706,120.71908,32.426575,153.52982,0.0048388075 199,363.62924,106.8068,32.117188,60.191322,0.0033618133 199,256.0235,52.956486,64.94159,186.93173,0.0016104727 199,620.4385,58.133232,18.70819,54.27983,0.001026317 199,589.1629,135.95149,31.282532,69.06377,0.0006509224 199,478.5812,124.13565,47.05197,133.35553,0.00038613976 199,611.3235,214.8585,27.823181,142.22972,0.00037927396 199,222.20685,109.49214,36.973633,93.45955,0.00033964278 199,1.3272933,109.3274,18.317524,142.02286,0.00023732695 199,615.87634,78.31177,23.270325,95.83916,0.00020776194 199,581.26855,6.6704884,57.35266,125.322845,0.00020164576 199,225.59975,65.026955,32.154465,84.97808,0.00013775495 199,611.4051,331.72516,27.741577,140.71552,3.0288607e-05 199,609.1292,440.33325,30.017456,62.95276,2.3329947e-05 199,317.9009,83.837006,116.97391,211.7782,2.2375165e-05 199,0.9781413,210.81178,19.063091,130.59416,1.7736545e-05 199,3.4216197,108.06649,57.97946,212.75873,1.2510067e-05 199,0.98896164,330.31122,20.010555,132.15384,9.76768e-06 199,278.42755,32.77095,38.151,106.70352,3.032693e-06 199,3.2758741,332.4419,56.74455,153.29358,2.3464981e-06 199,1.3658504,244.48782,34.201973,186.28067,2.281425e-06 199,1.5944515,418.07602,34.715717,79.32471,1.3258208e-06 199,1.1501473,21.780684,19.2036,131.9376,8.3723116e-08 199,2.2404656,15.252409,57.281723,126.06554,2.5613714e-08 199,0.86232424,0.83891606,20.244734,45.270214,3.5400172e-09 200,594.6175,144.28917,44.069824,106.49756,0.22221497 200,248.56027,168.37172,27.094421,46.225845,0.026119132 200,447.77182,53.281197,40.2312,91.16181,0.012226467 200,4.8036833,172.12186,39.781643,77.13953,0.011261091 200,553.6678,117.14399,24.069641,48.527336,0.008111532 200,618.33594,158.09402,20.81073,66.40114,0.0060289893 200,530.51953,175.81023,29.222534,61.463837,0.0059891753 200,358.03793,105.364586,29.824615,61.679436,0.0035417196 200,73.23035,162.59543,39.483276,116.7973,0.0024571628 200,600.91223,196.99228,23.147583,45.81572,0.0022828432 200,362.45947,118.16319,52.469025,101.30853,0.002051921 200,621.06366,219.4148,18.083008,62.196564,0.0015579128 200,223.18901,172.2789,24.44719,53.12288,0.0011394449 200,93.94794,165.21051,24.093094,56.530045,0.0011176694 200,4.9383593,108.85955,69.2494,172.13379,0.0010909608 200,587.32806,165.87508,26.691772,66.08861,0.00096571347 200,52.112442,86.97002,30.033028,62.281067,0.00077373197 200,548.26135,176.27432,28.969727,58.364227,0.00044129565 200,621.80786,289.25073,17.338806,54.790222,0.00029415908 200,585.4314,145.61285,53.71527,305.86575,0.00027606593 200,610.5505,212.17484,28.596191,151.6282,0.00026437605 200,615.5463,92.220116,23.600342,100.50457,0.00023336364 200,617.2389,354.5225,21.907776,83.42319,0.00012731286 200,583.2423,6.6172724,55.904358,215.53494,9.8399025e-05 200,615.3079,22.122803,23.838745,93.23341,6.3215186e-05 200,2.072675,69.6039,21.693594,170.91714,5.4881253e-05 200,458.45297,91.899055,78.026825,195.01797,2.4960013e-05 200,1.2158537,194.45224,20.468292,152.29922,2.4148323e-05 200,609.5739,437.42865,29.572754,66.47598,2.3349934e-05 200,1.1742936,349.47495,18.744379,122.82507,1.7485896e-05 200,573.1814,358.35922,65.96527,128.9125,1.5657968e-05 200,591.4424,4.151346,43.696106,50.18123,1.0464212e-05 200,0.8971273,48.799904,14.021654,52.038887,9.335117e-06 200,1.7386866,246.9641,33.02185,185.97646,8.37545e-06 200,382.3963,44.08903,85.354645,205.84517,6.9801936e-06 200,1.7115821,415.06064,34.50725,82.009674,2.4065464e-06 200,2.5265186,16.048515,58.411335,126.76882,2.3618322e-06 200,5.3696256,355.80933,78.18347,129.98236,1.6413098e-06 200,1.4161149,8.914571,30.948051,61.73007,1.5660105e-07 200,346.47955,2.9089878,44.096375,57.16292,1.2674056e-07 200,223.51305,2.0832357,43.64012,56.998165,2.2314275e-08 201,395.72394,139.26582,31.359497,69.50276,0.094152495 201,620.8202,224.95294,18.326477,57.301697,0.020112839 201,106.7231,114.90542,29.413208,63.079735,0.01153551 201,413.60657,139.58614,22.567749,46.914963,0.008454957 201,584.6116,80.82162,40.090393,91.51586,0.006919009 201,257.45236,141.72807,28.07248,65.7939,0.0029330046 201,50.985287,81.58798,34.20431,64.073,0.0027551819 201,11.33385,49.428055,27.733234,64.30241,0.002079552 201,354.91208,141.83202,35.498444,80.99603,0.0016720769 201,604.9304,62.979847,34.216248,87.71803,0.0016550621 201,611.19025,171.81346,27.95642,129.30263,0.0016268521 201,213.0981,141.88234,32.535324,80.609665,0.0015983956 201,233.54074,135.88005,35.567474,87.785446,0.001188507 201,621.4064,141.9704,17.740295,56.974045,0.00073449564 201,618.20435,384.35318,20.942322,83.65439,0.00045728116 201,331.43594,113.27618,43.05832,132.60199,0.00041898715 201,624.67804,37.250248,14.468628,45.284275,0.00031886474 201,326.79517,121.673416,25.287018,59.063385,0.00015126214 201,346.61206,172.50792,26.226105,56.73683,0.00014931665 201,580.54376,0.0,58.079712,244.0261,0.0001443545 201,1.4197819,116.08146,19.65855,85.651955,0.00013569221 201,609.0512,435.82657,30.095459,69.09302,0.00012892445 201,340.23798,144.48799,25.793427,61.06154,9.804019e-05 201,612.05164,238.03662,27.095032,151.76074,9.56882e-05 201,155.18394,43.15478,38.07596,95.48715,9.5535186e-05 201,2.1072772,98.65731,35.957333,183.85587,8.9317364e-05 201,1.1278735,198.73433,18.319044,70.8271,8.073477e-05 201,601.7883,307.85764,37.358337,176.87509,8.048646e-05 201,422.2281,50.305126,24.280975,47.54685,4.246039e-05 201,2.51334,26.694057,83.6588,190.46262,1.8606961e-05 201,1.3229704,208.89017,27.833168,142.38419,1.5286329e-05 201,596.7656,2.2323244,42.381042,98.17796,1.0344826e-05 201,0.9267481,340.3407,18.620157,125.82901,8.557241e-06 201,89.553795,18.630854,91.87997,192.8591,6.9418106e-06 201,1.4560198,38.07574,20.156725,95.38449,5.820036e-06 201,44.185253,51.367794,85.61928,188.9978,5.806863e-06 201,375.90414,56.106,78.73129,194.54802,4.7224776e-06 201,0.79349977,421.47266,15.6634,78.686615,3.7874297e-06 201,3.3023715,324.30167,56.294453,152.83112,2.6148484e-06 201,1.9044466,4.463519,52.87179,85.4526,2.1652688e-06 201,139.49326,9.402825,87.46086,184.89165,2.0588914e-06 201,271.7566,2.6276383,42.516052,53.679848,3.827967e-07 201,1.3087192,2.575529,20.365273,45.988747,1.757264e-07 201,151.46698,4.3061213,66.91423,51.538647,1.4726326e-07 202,604.60236,79.81288,32.949036,169.165,0.07975833 202,236.3386,91.804794,35.002716,78.51677,0.043970164 202,9.395347,83.88141,39.72175,101.91101,0.01369521 202,619.8554,182.44087,19.29126,63.053146,0.007398178 202,622.1515,112.974075,16.995178,48.75586,0.0069342214 202,272.90405,240.6132,30.13147,46.737747,0.006347018 202,590.105,99.57231,37.201355,88.28581,0.0038856298 202,1.5536418,91.66292,20.268236,95.35625,0.0025427672 202,17.940166,118.369,23.114338,47.039352,0.0022872405 202,271.77713,84.862595,23.809052,58.46344,0.0019655542 202,36.198257,96.57271,29.488235,69.7545,0.0016263961 202,0.72490644,133.67865,11.463854,46.07939,0.0013911348 202,240.09135,82.73224,21.950607,46.118393,0.0010638705 202,257.82367,86.69761,24.235535,56.940865,0.00083124626 202,621.8935,317.012,17.253174,53.69391,0.00037037508 202,66.62738,93.43276,25.840332,55.785957,0.0003034521 202,73.38347,68.04064,40.451157,105.59507,0.0002453406 202,615.9067,51.67731,23.23999,85.82262,0.00020763477 202,32.639816,128.09175,25.143806,65.188446,0.00020239559 202,611.51965,211.31606,27.627014,141.42378,0.00011524027 202,611.7115,381.5072,27.43518,117.6178,0.000103498336 202,3.4765968,61.75034,57.28321,244.77234,0.00010231888 202,162.55502,125.8315,25.136658,53.628693,7.755204e-05 202,586.5,184.50099,52.38098,272.35962,5.2532534e-05 202,584.0093,8.354427,54.814697,116.43863,4.589727e-05 202,1.0333439,164.2198,18.662954,145.23848,4.1819443e-05 202,0.5771615,246.90909,13.709224,47.15454,3.0742296e-05 202,0.8805233,397.15967,18.273952,71.23242,1.9187542e-05 202,205.52983,13.619831,80.77446,181.45012,1.6565325e-05 202,2.634647,12.027246,58.131462,132.01761,1.5465132e-05 202,551.84534,21.227226,48.46881,139.681,6.5890804e-06 202,1.1601131,337.27243,20.492706,101.6102,6.3250645e-06 202,127.40288,17.869703,41.59459,77.39312,3.9551205e-06 202,3.8946307,307.29224,56.049408,172.4256,2.929497e-06 202,1.5703467,250.92879,27.784504,137.04506,2.792111e-06 202,1.1208847,441.77313,21.778479,61.63916,2.1675667e-06 202,195.77866,25.961811,28.864502,63.702526,1.6500169e-06 202,2.9448323,427.48743,52.45778,71.73978,9.956149e-07 202,1.3643237,9.273614,15.11531,84.2043,2.7816273e-07 202,2.2229884,6.0128665,39.198425,53.309376,1.3228092e-07 202,182.85928,4.22842,44.00653,54.324486,8.558277e-08 202,58.914467,2.4760253,44.447388,55.19361,6.915044e-08 202,141.31876,3.0331771,44.677216,53.54564,2.7808621e-08 202,100.586914,3.0602312,45.345245,55.99861,2.1931609e-08 202,428.85355,3.4485416,43.53189,52.54213,1.3631444e-08 202,463.10464,2.5240006,45.76059,61.638573,6.1890804e-09 202,247.64975,0.86062825,65.994934,49.437157,5.428464e-09 202,492.54648,3.6508627,80.32419,69.56768,5.0880278e-09 202,549.3727,4.6383514,46.151245,52.882706,4.684895e-10 203,234.33763,59.31413,40.40428,84.54645,0.02491648 203,622.7222,129.89078,16.424438,52.446228,0.02014896 203,261.6628,66.07072,25.516937,61.77762,0.00892326 203,285.08087,245.07576,24.725739,46.52794,0.0050700195 203,610.07214,87.31958,28.400635,124.969864,0.0026360305 203,223.58806,50.558037,26.256943,55.523804,0.002065452 203,283.1176,74.09388,36.942352,72.74151,0.0019022169 203,298.17172,251.92102,24.800385,45.557983,0.0018007753 203,143.66096,88.37448,29.577377,56.240036,0.0016521304 203,620.4148,50.218594,18.731873,58.45615,0.001593086 203,50.736214,70.51006,28.101898,67.18644,0.0013923864 203,161.28654,80.34296,25.599655,54.820923,0.00059975544 203,12.222688,74.040665,37.75445,96.86159,0.0005282772 203,616.926,155.62416,22.220642,84.902145,0.00051750836 203,1.428613,55.74657,13.49108,52.473133,0.0005032034 203,1.8101466,108.69833,34.74425,91.420364,0.00031584885 203,121.82884,88.39895,37.471634,72.86584,0.00027249835 203,1.1734757,115.53031,14.4359455,61.682426,0.00022693764 203,63.973824,62.398685,30.310211,64.63687,0.00015119783 203,142.71779,51.159573,44.940735,136.49986,0.00013772341 203,607.69116,441.09464,31.455505,67.30267,0.0001050907 203,1.0779036,162.68068,18.419153,76.144226,9.9407705e-05 203,42.343166,35.786705,49.49767,153.13882,8.875271e-05 203,612.4448,223.05626,26.701843,133.10973,8.275314e-05 203,586.4475,198.02374,51.804016,233.93576,7.2658295e-05 203,38.75659,53.00596,28.557693,63.251762,6.914126e-05 203,611.2091,318.69263,27.937561,151.17242,6.0457016e-05 203,586.44525,19.430138,52.25592,115.77776,4.5711535e-05 203,212.38435,7.8764977,50.985092,122.30441,4.4158765e-05 203,2.2912827,5.919922,59.737534,135.20187,2.7321292e-05 203,3.4870167,77.38893,56.448112,245.14998,2.4552008e-05 203,246.44832,26.577364,74.938126,135.51868,2.3462615e-05 203,1.2428085,167.45201,28.393642,153.81667,1.8399202e-05 203,570.64966,362.82532,68.49701,133.3959,1.7948114e-05 203,0.81877035,396.8862,18.145515,71.31943,1.4992093e-05 203,606.73956,4.834183,32.407104,62.746597,1.3048146e-05 203,0.843982,267.6294,18.07452,74.77701,9.071441e-06 203,0.9376734,308.53317,17.883135,124.03421,7.510254e-06 203,3.2762957,321.03546,56.507706,157.01913,2.7102255e-06 203,1.0273755,442.14645,21.293903,60.596436,1.7622593e-06 203,332.65826,35.998173,25.440002,54.784122,1.37514e-06 203,1.3549626,7.235446,16.927616,82.852005,6.6592366e-07 203,238.04855,1.2822819,49.39514,59.130173,2.762498e-07 203,130.98734,1.6155763,48.427643,57.35889,1.5298711e-07 203,5.8950195,3.3903012,45.838356,55.06037,1.451603e-07 203,102.00155,1.4621631,46.238503,52.446873,3.1514364e-08 203,189.16689,3.7962093,47.65538,54.320442,2.4105542e-08 203,160.52423,3.3043914,45.75894,52.278255,9.565817e-09 203,578.2817,3.9333398,45.285217,52.302048,3.0724545e-09 203,268.4516,2.4851596,48.165527,61.51854,2.957863e-09 204,608.49536,104.42322,30.333435,72.04277,0.054481193 204,482.23672,150.43465,32.244415,73.7919,0.021882672 204,594.6334,65.02833,43.609253,202.15948,0.0022557618 204,537.0432,172.3422,35.0188,73.31851,0.0021518779 204,585.5566,98.01864,40.335022,85.19332,0.0021049797 204,361.48624,93.38811,27.19629,56.325027,0.0018160483 204,1.3175399,105.30573,14.78328,59.326317,0.0014613938 204,524.1018,165.02684,24.92981,58.545822,0.0013742003 204,461.8611,97.08911,39.44693,82.55681,0.0010723626 204,288.65573,139.08821,42.177612,113.92648,0.001061004 204,457.84595,159.16368,37.891663,84.56229,0.00088914786 204,506.97522,86.36151,42.05951,154.21951,0.0006872527 204,207.99263,50.72294,28.313782,61.524437,0.0006178383 204,511.62256,145.67886,25.492065,63.976074,0.0005584178 204,584.497,144.62698,53.77118,276.82605,0.0005416575 204,375.31973,98.70956,30.612518,61.753044,0.00036050935 204,582.2701,7.1787176,56.876587,142.91907,0.0003476905 204,615.46063,197.79286,23.686035,93.694565,0.00032728177 204,204.15825,151.30257,45.528275,143.42427,0.0002570071 204,409.99197,62.080276,35.97638,76.54878,0.00021151686 204,1.6521444,65.365204,21.70795,142.56544,0.00019896151 204,298.23953,127.23245,25.965881,66.01141,0.00018449189 204,368.31912,164.88643,43.670258,82.13431,0.0001731517 204,610.4872,257.2781,28.659485,145.48859,0.00015928423 204,118.6777,72.84933,39.914375,158.20877,0.000114050286 204,396.5861,164.53313,34.465454,78.391174,0.000109624634 204,571.12305,364.12372,66.20972,120.080475,8.667543e-05 204,0.9084644,208.00658,18.624125,134.14128,4.2776723e-05 204,1.0185539,179.3994,18.276072,74.7422,3.585901e-05 204,609.3513,442.7878,29.79535,61.049805,2.07506e-05 204,1.5897493,101.46867,35.42277,208.8409,1.9074463e-05 204,1.0394865,383.821,18.142546,71.12222,1.8536259e-05 204,1.8990316,272.04282,33.008236,179.71588,1.5903714e-05 204,0.9941805,423.80014,16.003603,76.99518,8.490389e-06 204,2.3676677,15.991367,56.823166,121.66922,6.7451806e-06 204,486.13147,41.35077,113.434814,238.7955,5.500261e-06 204,68.25426,23.808008,89.8533,239.04736,4.47465e-06 204,3.526203,393.8206,55.092693,100.10275,4.2034562e-06 204,342.5946,10.051817,81.0748,194.76538,1.6891008e-06 204,245.11807,17.287504,38.77072,78.910286,9.223858e-07 204,79.78326,0.22065105,53.649956,134.84467,6.1732646e-07 204,279.62097,2.7734098,43.74402,51.152508,5.9606884e-07 204,0.9925692,10.171758,14.898567,85.48789,4.0302663e-07 204,305.09183,2.0705714,43.868378,51.227177,1.0078058e-07 204,0.93959635,5.1823144,39.95669,56.6068,2.850987e-08 204,107.843346,3.1539485,42.963737,51.636143,5.0915105e-10 205,243.48305,165.02856,47.394363,89.25569,0.040814582 205,197.71925,188.11629,47.088974,115.65889,0.012728579 205,593.33826,147.06064,41.39508,91.296265,0.009518363 205,619.8668,50.627483,19.279846,66.25543,0.0033958752 205,566.79553,94.71268,26.30426,60.813858,0.00338055 205,621.1651,110.45366,17.981567,57.064392,0.003231796 205,587.46783,51.828117,39.048218,90.66761,0.0021869992 205,495.112,146.38092,40.864136,90.637634,0.0020349554 205,608.3098,52.264206,30.836853,159.8861,0.0011123124 205,524.47925,279.81006,24.432007,49.250153,0.000978184 205,586.5919,172.42224,51.450195,267.37692,0.00075010007 205,621.4602,287.5098,17.686462,55.573242,0.0005874921 205,587.94336,172.27156,22.72107,46.551437,0.00050247303 205,610.88794,215.1852,28.258728,145.49706,0.00034528854 205,353.8389,98.76284,112.55362,259.66415,0.00033085298 205,562.7291,57.37775,42.15155,139.05507,0.00029919203 205,365.83328,49.0111,68.395935,187.88559,0.0002980054 205,158.75424,213.44025,40.13095,83.38031,0.00028994516 205,591.9793,4.8819695,47.16736,100.05122,0.0002301474 205,611.6049,319.2219,27.541748,147.57385,0.00018777106 205,411.3327,100.892166,39.615753,150.64195,0.00017271747 205,1.4263558,138.75648,17.888172,86.50258,0.00016084123 205,507.44016,43.222454,20.663239,46.542477,0.00013247677 205,466.42877,103.80806,84.898254,215.30464,6.46256e-05 205,228.76631,129.92024,86.52547,218.54695,5.5603952e-05 205,567.3492,171.78897,37.05548,90.283264,5.4384516e-05 205,2.2075799,85.12581,32.54222,188.17653,4.7226396e-05 205,609.3112,439.00323,29.83545,66.12198,4.5456356e-05 205,1.0739127,193.71776,18.640139,133.71214,4.3980566e-05 205,0.9985812,342.62097,13.430362,48.57361,2.439042e-05 205,3.501862,141.7999,56.98584,224.31543,1.3269029e-05 205,614.02765,0.0,25.119019,48.121937,9.830404e-06 205,0.92917806,336.24814,20.358856,131.62613,9.428632e-06 205,0.7391024,425.2732,13.823577,46.264618,6.6234165e-06 205,3.2465236,331.9355,57.302486,154.12265,1.9723047e-06 205,1.2443775,443.51437,21.720572,60.118774,1.0976985e-06 205,359.18585,0.0,50.294373,143.05392,6.5051125e-07 205,1.4674935,19.37922,20.817535,131.44592,5.812811e-07 205,269.74146,424.5639,72.48779,73.15762,5.331847e-07 205,511.1692,26.183882,36.076843,72.835754,2.1517312e-07 205,1.7649333,7.6160874,31.435583,62.767982,4.9995837e-08 205,376.57748,0.0,49.657745,65.59062,1.5002941e-08 205,402.98672,1.8423275,46.11902,47.52195,1.7619036e-09 206,470.5611,199.23792,23.295471,48.424255,36.09718 206,389.93,183.45442,32.022583,60.997116,0.20714262 206,606.93756,188.9674,32.209106,91.272675,0.01654761 206,622.83636,186.20374,16.310303,48.97145,0.007685474 206,454.13745,187.51201,42.02475,93.21599,0.0069781346 206,374.50122,180.00479,47.891968,142.08777,0.0053237285 206,510.80518,63.350224,37.058044,80.804184,0.0033667292 206,621.1686,128.61209,17.978088,55.379944,0.0011665358 206,374.51318,217.78743,30.31836,63.24211,0.0009759124 206,617.1473,230.35016,21.99939,87.06195,0.0009137443 206,622.11725,95.3358,17.029419,53.150085,0.0006692857 206,607.1113,145.04988,32.03534,79.653244,0.0006367202 206,404.87,186.64218,37.316742,86.78482,0.0005187485 206,584.6057,118.50707,54.010986,227.69455,0.00037015972 206,533.84076,206.46133,21.986572,49.502502,0.00031592953 206,509.49484,124.68873,41.366547,85.474144,0.0002742448 206,33.009235,127.870514,47.096622,75.7899,0.00021193846 206,564.67584,145.39435,25.992432,60.7623,0.00015959777 206,444.0987,140.7378,79.5979,187.89282,0.00013267083 206,604.6545,355.70905,34.34796,139.15085,0.00012527753 206,612.2309,277.39407,26.915771,147.34686,0.00012075705 206,1.0066186,63.46168,19.51592,80.5932,7.331789e-05 206,430.7152,45.872807,38.14502,82.50694,4.9284798e-05 206,1.0109106,403.07864,18.278759,76.66412,4.764112e-05 206,0.932299,192.89014,17.269482,132.2623,2.9595332e-05 206,614.9312,10.969499,24.215454,86.92092,2.4149154e-05 206,1.2055355,111.398834,19.28352,135.70229,1.7041946e-05 206,0.9427222,282.2107,19.552803,136.4017,1.30634235e-05 206,3.355241,394.06122,56.511883,99.93347,8.919192e-06 206,528.2503,393.66287,108.64813,102.64621,6.7093824e-06 206,3.3937778,210.52423,58.28401,250.50183,6.293511e-06 206,581.36487,443.95236,43.51068,61.10141,5.460727e-06 206,1.4026172,453.7614,28.717957,49.390015,4.71866e-06 206,218.40675,0.0,48.06938,116.40625,2.875955e-06 206,583.2137,0.0,55.932983,217.5925,2.763638e-06 206,60.073765,390.135,108.78758,101.5513,2.6990829e-06 206,82.75256,442.07156,44.17968,59.76297,1.1233267e-06 206,1.8043946,11.970723,58.933002,124.86303,8.3686126e-07 206,495.4176,421.9676,75.61267,73.795135,7.9221553e-07 206,550.74786,455.2649,42.835876,47.9935,5.788084e-07 206,91.42827,20.024124,40.650528,77.22596,3.0308297e-07 206,1.009563,10.52545,14.1311245,85.01748,1.8869851e-07 206,388.34906,1.8069077,43.342163,49.1545,6.077832e-08 206,272.11285,4.1284227,42.954926,49.777042,4.4154675e-08 206,63.170593,0.0,87.9501,195.16805,2.6590955e-08 206,1.9838852,5.734696,39.224655,47.75855,1.9269159e-08 206,457.41528,3.9565122,42.049774,48.418,1.7644908e-08 206,482.9035,3.4966667,43.460632,49.015694,5.4842566e-09 206,73.61911,0.41675618,44.7993,51.443527,3.6425626e-11 207,485.40802,192.07707,24.006897,52.446106,0.13273484 207,552.7736,276.53342,32.838684,60.194885,0.08023034 207,618.93243,207.6879,20.214233,68.38895,0.021185303 207,597.083,187.31665,41.27655,147.62872,0.010427177 207,486.35458,178.11507,43.039154,95.71211,0.0024004136 207,452.14,166.07703,38.880035,77.19264,0.0013680154 207,618.58185,289.07428,20.56482,79.65433,0.0013482897 207,501.597,237.95164,37.808228,87.96983,0.00083649793 207,622.13245,89.061905,17.014221,50.831406,0.0005121015 207,613.64185,419.25824,25.504822,82.29166,0.00049816165 207,547.01825,245.74644,58.881897,137.21098,0.00043369978 207,571.16833,346.4095,63.886658,140.79465,0.00032517954 207,449.98474,152.81778,80.165405,191.13055,0.00024999416 207,524.2781,312.22705,24.922852,55.657898,0.00024804682 207,569.11865,85.004875,68.14404,305.288,0.00024769932 207,495.78595,72.94597,23.466797,45.03717,0.0001909958 207,451.27985,219.48238,34.842834,84.61647,0.00016324622 207,609.3857,102.78213,29.760986,169.75104,0.00014189209 207,1.3151677,69.24683,18.486177,76.05242,4.7228426e-05 207,1.1812216,114.47556,18.601336,135.63586,3.705655e-05 207,0.8770565,193.71368,19.918999,105.18884,3.363237e-05 207,1.2384441,350.75266,17.743807,75.24014,2.462719e-05 207,607.7599,3.403008,31.38678,125.867134,2.1163298e-05 207,1.126062,266.23566,18.508057,132.80893,2.064858e-05 207,1.572181,11.813803,59.69767,119.494896,1.1648372e-05 207,0.90914637,409.3383,18.168621,72.997284,1.1567162e-05 207,3.5732749,206.17537,57.42252,232.10979,9.444689e-06 207,1.4629965,328.33203,32.864944,156.02673,8.369893e-06 207,477.90277,87.68603,38.466797,77.045296,7.1305303e-06 207,582.85956,451.93896,43.10431,53.47043,7.1271716e-06 207,526.86816,419.0868,78.91229,77.01224,2.161275e-06 207,81.637886,417.70517,76.11768,75.46292,1.1482167e-06 207,2.9697835,426.66046,52.46305,71.51648,8.4294555e-07 207,276.5783,29.202728,29.5419,66.73843,4.7463692e-07 207,2.8282635,46.40185,60.104977,267.84518,4.0021985e-07 207,0.98241866,8.779336,16.177021,76.51717,8.0361694e-08 207,583.3449,3.1332374,46.58252,53.54258,4.588488e-08 207,4.620049,4.161462,44.80963,53.777237,1.7303757e-08 207,471.38086,18.642956,36.817688,84.91458,1.4031196e-08 207,107.72464,0.0,83.81389,198.14523,1.0591808e-08 207,304.46213,3.2095249,45.362152,51.355568,3.5311631e-09 207,414.6665,3.0137272,45.121277,58.08963,1.7455504e-09 207,450.02142,2.0374513,43.367706,51.925014,1.0436646e-09 207,126.692375,3.733833,44.78193,53.319912,5.3303945e-10 207,339.7018,4.119997,45.299408,51.140923,4.1541037e-10 207,385.85556,3.856128,46.453583,54.12102,3.4839498e-10 207,558.49164,1.3934879,46.60138,52.144035,5.364274e-11 207,482.76694,3.096387,44.63321,46.356525,4.2152316e-11 208,534.685,190.93005,30.036682,59.746857,53.88459 208,481.86865,191.15384,28.935638,68.58667,0.7023428 208,456.07376,135.6405,29.65152,85.83206,0.050614797 208,421.78525,166.31577,32.70694,62.366196,0.028243931 208,550.8851,211.50455,21.112122,45.94815,0.012017977 208,557.6582,311.08163,42.985718,142.2515,0.008003342 208,585.37616,387.9287,50.10553,103.5491,0.0070281546 208,523.84436,342.06262,37.95862,85.23764,0.0054414957 208,605.9072,299.31494,32.240417,63.750977,0.003766718 208,523.8888,178.73132,54.5282,131.20374,0.003166564 208,577.683,301.80667,58.74695,141.30954,0.002221396 208,622.3096,290.2825,16.837097,48.82666,0.0018396097 208,444.10226,207.95099,49.772583,125.52026,0.0010884502 208,615.98376,215.21123,23.162903,83.26689,0.00084545556 208,609.08984,149.34584,30.056824,76.856094,0.0007494108 208,1.4131913,112.377556,13.53742,50.8888,0.0004812072 208,605.4252,435.86588,33.158813,70.80908,0.00047560496 208,489.70877,261.51392,81.09799,202.95624,0.00042011385 208,586.3143,118.528854,51.391052,260.98682,0.00036419925 208,409.5662,70.41649,40.228302,87.86998,0.0003418544 208,557.2432,298.40607,30.620117,66.2778,0.0001467496 208,0.89222986,222.32019,19.945574,104.282166,8.070644e-05 208,511.28516,411.0536,75.40283,83.5831,5.5700973e-05 208,1.5559156,98.11087,20.167364,151.76807,5.504359e-05 208,531.6722,276.31866,43.36255,94.13199,4.71378e-05 208,480.73544,92.051056,148.85312,305.86084,2.3208251e-05 208,3.754346,92.18527,57.897194,247.75656,2.2053495e-05 208,581.6307,14.260111,57.131104,111.04664,1.8369887e-05 208,3.2685792,260.60812,56.363228,206.33148,1.4101899e-05 208,0.8102035,326.0319,19.44895,135.80957,1.23024765e-05 208,0.9344108,6.258431,62.569096,142.07187,7.518137e-06 208,390.58368,50.394695,78.51779,195.81944,6.9284633e-06 208,0.8667481,419.94543,15.317176,80.13855,3.1725842e-06 208,1.1885514,9.701351,14.58213,84.52002,1.788413e-07 208,1.0597315,3.0031478,42.37022,62.8212,1.058698e-08 208,368.87637,2.2164927,42.5849,48.44162,6.4192185e-10 208,393.84277,3.6985028,44.71808,46.82505,5.979559e-10 208,228.01233,0.99437666,46.08676,51.233047,2.9305472e-10 209,514.3513,201.84248,30.490112,61.24608,81.01855 209,426.34854,132.4362,36.850647,110.56917,1.1071091 209,461.6717,68.61427,51.907837,194.00761,0.10794237 209,566.17847,410.64267,70.712524,80.33743,0.0067539797 209,485.64517,210.79185,37.190094,86.80522,0.005974333 209,395.0329,118.01584,41.246643,144.14883,0.0033568863 209,619.9357,416.83755,19.210938,62.798645,0.0026644967 209,621.31287,151.42995,17.833801,54.240845,0.0022215336 209,610.02606,163.36687,29.120605,140.92027,0.0011335067 209,609.7558,342.0266,29.39087,146.75168,0.0010439603 209,491.72693,153.7161,75.3465,187.76471,0.0003644793 209,586.0259,219.69662,52.861145,279.16803,0.00023204807 209,472.92813,141.97787,31.399384,84.05289,0.00021184146 209,516.3003,411.85742,84.45703,81.819244,0.00018136433 209,367.44943,93.53877,47.837463,142.05505,4.573805e-05 209,0.9383212,137.90123,19.79474,145.56145,4.3331016e-05 209,610.838,28.684422,28.308655,148.04622,3.8561135e-05 209,1.1771216,241.02974,19.322556,125.52904,2.6233065e-05 209,3.843929,131.9397,57.06278,223.0986,2.3349e-05 209,0.88852215,329.76413,19.455158,132.9686,7.428663e-06 209,3.5178044,281.72528,56.28904,192.05655,4.5836646e-06 209,610.4704,4.820788,28.67627,60.95506,2.8777602e-06 209,1.7618865,418.22156,34.217045,81.20975,1.578929e-06 209,1.4068946,58.5587,29.447025,153.08977,5.68027e-07 209,0.8242127,10.701315,13.279802,82.99622,1.7305945e-07 209,1.87049,18.258627,56.68881,115.693016,1.6873484e-07 209,1.3573585,7.16445,37.607273,51.081776,4.9776798e-08 209,380.958,5.382212,45.26233,53.282898,1.1886746e-08 209,406.34103,4.1189795,46.528564,49.633255,6.921951e-10 209,442.1126,4.361571,45.53293,51.14246,4.5706472e-10 209,473.92282,1.6858431,45.67154,51.158733,2.0568697e-10 209,127.46163,1.0491748,44.296745,49.306244,3.914434e-11 210,529.9742,216.9951,37.673584,80.29054,98.47088 210,570.7777,187.99345,67.909485,255.9503,0.79357636 210,446.7656,158.3914,34.84134,96.479675,0.12059181 210,598.3474,304.07657,35.369873,87.958496,0.09885379 210,615.12067,276.29587,24.026001,75.66727,0.031950988 210,332.7148,211.72922,23.392761,46.823395,0.011642648 210,597.52026,99.84865,36.266052,106.058685,0.007962053 210,615.5257,166.73817,23.620972,106.74626,0.0043238723 210,600.60004,238.5999,31.302246,85.42818,0.0042447755 210,582.9895,154.07979,46.61487,153.91713,0.0037260824 210,514.7192,154.87393,74.143616,166.08426,0.0026673644 210,431.98288,115.915184,64.36865,181.09305,0.0026292568 210,571.1691,24.04349,66.91736,230.40787,0.0025463852 210,1.1739079,154.92734,20.320261,153.77014,0.0014355291 210,359.6462,242.36993,29.678253,53.265594,0.001166222 210,381.52322,92.69878,31.421356,59.53276,0.0008628717 210,2.6863413,112.72153,57.259182,209.6511,0.00045438728 210,529.569,106.844055,39.128235,97.84517,0.00031234536 210,609.5012,0.74954426,29.645447,169.23375,0.00024299996 210,1.3606771,77.94672,29.062109,160.8214,0.00017022209 210,586.2237,36.73639,23.869873,56.08819,0.00014870235 210,608.5819,442.4637,30.564758,58.144043,0.00012811832 210,440.56552,91.71265,40.256317,101.117874,0.00010382773 210,582.095,384.57153,55.235962,113.321594,0.00010117509 210,0.7509847,243.85149,18.419447,135.5547,8.211902e-05 210,613.38354,0.0,25.763123,45.443718,3.3424883e-05 210,0.7957333,321.25323,18.775879,140.56741,1.8902503e-05 210,574.4754,2.1344206,42.881042,125.7749,1.37040915e-05 210,573.32965,26.026566,24.898987,62.56083,9.757998e-06 210,2.906289,311.06372,56.256226,166.76276,7.10803e-06 210,1.1401172,442.0496,21.247107,60.797546,2.1504602e-06 210,2.1483788,17.669847,57.424194,121.07416,1.1954506e-07 210,547.5947,0.009199219,46.34131,64.83331,2.847046e-09 210,346.9513,4.702365,44.789,52.588448,9.233613e-10 210,316.4287,6.1847315,46.749725,50.74669,6.524213e-10 211,479.99304,170.29561,36.32538,94.30592,0.031906426 211,611.08405,155.61562,27.77533,68.49855,0.021408342 211,454.4849,159.14334,51.711426,147.17078,0.016081179 211,619.5125,51.25107,19.634155,68.06451,0.015584289 211,597.3424,89.44007,39.99524,161.91348,0.008340993 211,332.40567,217.67035,33.49994,63.939667,0.00507762 211,409.93573,203.51369,26.897705,53.60637,0.0029043085 211,601.2734,172.87051,37.588806,213.0639,0.0013401827 211,622.4072,138.05066,16.73944,50.43051,0.0010850943 211,498.26996,361.0434,129.72546,131.41745,0.00074498507 211,611.4922,85.93101,26.732422,74.42823,0.00074449426 211,413.86478,47.59761,27.940857,64.74686,0.00032609038 211,0.7387289,71.340454,19.734894,143.98544,0.00026467422 211,539.7092,97.85331,94.49524,248.24762,0.0002576299 211,601.45056,353.97293,36.714905,145.8389,0.00025674424 211,582.15405,147.07434,42.599792,147.31845,0.0002081076 211,0.905918,193.25346,19.05748,132.99513,0.000110153975 211,449.99268,127.070526,37.503906,108.8168,9.719822e-05 211,0.80319583,394.51184,18.448965,71.30463,3.5126694e-05 211,0.64069253,275.69962,19.638062,142.69977,2.4963632e-05 211,417.37073,71.84845,113.25171,254.19199,2.0511741e-05 211,586.5646,437.8923,45.916992,69.613495,1.883858e-05 211,3.554297,114.47443,58.57071,243.12772,1.2926334e-05 211,510.90726,433.6584,45.124786,67.75125,1.013012e-05 211,533.6949,449.47757,42.402954,57.03415,7.75525e-06 211,575.7301,37.867,46.010437,150.52438,7.3898996e-06 211,608.8341,3.8400521,30.312561,63.17185,5.583916e-06 211,3.675114,332.34406,55.928024,146.84521,5.2146993e-06 211,1.7081169,414.19617,34.90276,81.82849,1.6117637e-06 211,400.22733,9.84362,66.08023,126.00927,5.8832046e-07 211,1.7838883,23.564444,57.80331,115.27227,4.2174193e-07 211,0.8320158,6.6981645,19.977695,60.415405,1.9687536e-09 211,425.17047,3.1983042,46.36444,54.057884,2.533895e-10 211,394.7709,1.784183,46.927185,51.00425,1.5323678e-11 212,478.50272,216.10757,52.290863,96.80902,3.5817287 212,414.491,212.96901,30.68042,68.506516,0.17007354 212,482.59167,181.66086,33.459595,82.74963,0.034667984 212,620.06476,260.32407,19.08191,62.884216,0.0326782 212,505.37054,146.35692,48.04883,164.74913,0.027863864 212,604.66583,154.00468,34.480835,112.21013,0.014309534 212,585.76013,143.07487,51.75482,258.01404,0.0101591665 212,618.54004,133.753,20.606628,71.61386,0.004415343 212,584.56946,327.06122,52.48871,168.41144,0.0041475096 212,621.2492,182.46475,17.89746,56.654266,0.0035909554 212,620.8651,220.79886,18.281555,65.79129,0.0013760022 212,464.34824,45.824703,40.0773,96.524185,0.0013162635 212,405.92346,160.10352,52.58853,139.83765,0.0012709628 212,606.41705,432.44632,32.729614,71.957245,0.0007768404 212,473.05835,107.53292,123.737,247.7575,0.00067617017 212,606.9891,4.2879624,32.157593,140.69685,0.00028015533 212,378.39487,185.86401,24.369324,53.493103,0.00026143756 212,611.42474,281.8915,27.721924,157.15286,0.00019780139 212,583.5181,34.651405,55.62854,204.39395,0.00017288404 212,1.0034277,366.54028,20.412947,108.11792,7.274052e-05 212,0.84507084,85.139824,18.66328,142.05542,3.1908177e-05 212,3.5642855,398.35663,56.476665,97.01041,2.5880996e-05 212,0.9546379,288.76025,17.587896,136.70184,2.1817485e-05 212,0.76715416,166.89627,18.824556,135.73767,1.9638179e-05 212,1.0174218,441.21136,22.059702,61.02948,1.1658552e-05 212,3.3197072,116.56392,58.64321,250.22838,2.6352716e-06 212,456.88684,425.63412,76.08887,75.95697,2.4408937e-06 212,381.3434,36.88496,125.69565,283.82773,2.293038e-06 212,405.325,26.090742,43.228546,185.89859,1.7890347e-06 212,1.4009603,19.097477,58.947716,112.06656,6.673745e-07 212,457.08157,4.3513412,83.6055,192.66736,4.6632744e-07 212,0.6839238,10.491615,12.952279,86.20586,7.113136e-08 212,0.5081283,5.08223,40.311447,49.362114,1.3106932e-08 212,462.6889,2.033833,45.05966,52.17769,2.283071e-09 213,531.73773,164.74048,35.68927,69.78526,0.18122263 213,473.5919,260.308,35.28537,61.950592,0.15222287 213,479.71033,188.45882,42.301025,145.40504,0.01891241 213,556.8888,160.10397,33.059265,62.070663,0.012429633 213,574.70056,414.8089,62.177795,83.03662,0.009833524 213,618.6484,223.97052,20.498291,70.13223,0.006637189 213,618.2642,405.41345,20.882446,66.35858,0.0032908996 213,514.57477,174.60919,36.954346,77.45047,0.0028290246 213,620.0283,138.87172,19.118347,60.925446,0.0012578819 213,515.7825,96.641495,76.62836,181.91295,0.0010414297 213,486.39297,47.000885,27.610138,67.16982,0.0008495769 213,608.2857,134.84995,30.860962,162.47403,0.0008255125 213,469.8334,88.2942,36.869415,93.74508,0.0007649717 213,585.0219,195.42755,54.124756,303.92703,0.00032926092 213,615.9566,90.01971,23.190063,83.18185,0.00022404468 213,562.70026,438.4344,42.003174,65.26959,0.00011691202 213,611.4067,295.6866,27.73999,159.30502,0.00010581197 213,583.77795,4.8197265,55.174805,217.95978,7.487769e-05 213,460.06476,65.50339,78.776245,235.15887,6.7868765e-05 213,488.1,71.60105,37.06369,93.43461,5.9597583e-05 213,495.6124,390.91724,132.84683,105.013916,3.8265025e-05 213,534.3078,438.7295,43.361633,62.850464,3.480746e-05 213,0.7200114,217.23161,18.217064,132.98283,2.8416747e-05 213,0.9623511,117.15379,18.719791,137.89816,2.7746935e-05 213,470.58768,2.5395117,47.80191,143.95927,1.690752e-05 213,0.9760995,439.14444,21.57048,68.44275,1.05402105e-05 213,0.87409997,309.54077,17.740906,133.70325,9.731084e-06 213,276.36658,423.09863,85.43033,71.731476,3.7727502e-06 213,3.6388674,428.60773,67.42738,75.2702,3.2258847e-06 213,1.0812614,62.897217,20.82639,99.25955,2.812926e-06 213,3.4332716,171.06253,58.000374,237.18832,1.8902028e-06 213,337.85925,424.10907,73.130585,72.292816,9.870834e-07 213,2.453802,24.421953,57.433372,108.50035,1.1953503e-07 213,0.7209278,13.548692,13.186275,81.13416,4.2669438e-08 213,462.15292,2.2831056,46.688538,56.609585,1.2875473e-09 213,438.37515,0.0,42.72159,59.10133,5.8744043e-10 214,604.16754,174.93834,33.165466,86.65944,0.45757708 214,434.89084,81.85041,24.207703,58.623055,0.27138558 214,578.3631,186.45517,41.36969,83.13751,0.08265612 214,578.8263,70.01103,55.79718,244.78523,0.055957224 214,619.772,179.26396,19.374695,47.18303,0.03244396 214,508.832,387.44397,31.919952,61.588165,0.02897241 214,597.39075,61.70512,41.059082,108.525406,0.011475727 214,619.5652,215.12482,19.581482,63.258118,0.0071933763 214,501.36258,254.77011,31.684052,78.66458,0.0053024385 214,588.39575,435.1213,50.750916,76.02536,0.003607441 214,622.7193,94.43964,16.427368,57.597458,0.0014321529 214,563.63666,350.1866,72.34412,155.79266,0.001289191 214,445.8907,193.59167,38.547455,97.987885,0.0011086599 214,0.34944662,54.343056,14.817167,55.049187,0.00095415325 214,616.7407,354.87653,22.405945,92.4079,0.0009356547 214,562.9598,183.03496,33.812073,75.02782,0.00070216536 214,619.94415,128.25352,19.202515,62.199615,0.0006911555 214,610.69977,214.56525,28.4469,166.80649,0.0006552943 214,614.52014,13.272396,24.626526,93.82687,0.00015577585 214,492.56036,340.62915,82.230225,144.34335,0.00014115249 214,0.8337451,183.64774,18.261194,76.39813,0.00010111394 214,0.71577233,87.21684,18.632671,77.53757,9.7531e-05 214,427.7475,117.40617,68.27399,205.8387,7.0328606e-05 214,1.2762874,84.930084,33.366737,189.7905,2.9531446e-05 214,0.8442171,229.2167,17.767963,135.98132,1.5360212e-05 214,0.9195036,312.09488,18.271894,131.4632,9.940365e-06 214,3.6142888,174.00352,58.160103,231.136,4.5831225e-06 214,3.5051987,394.4643,57.54042,97.72452,4.269627e-06 214,0.9118229,26.524216,31.279026,106.54404,2.4161357e-06 214,0.7011239,8.851666,21.96678,57.111263,1.9488636e-08 215,608.44684,185.12225,30.69983,75.46506,0.022232879 215,476.8246,203.03625,28.880066,60.397644,0.016886692 215,501.91794,45.199806,39.42685,110.225136,0.013745711 215,581.73224,380.28632,56.302856,124.127655,0.008467156 215,614.00055,425.38776,20.35205,52.564697,0.0030238468 215,509.8896,60.408165,24.185303,50.060364,0.0027435669 215,621.57166,262.4005,17.575012,55.028107,0.0015047892 215,622.4978,405.9156,16.648865,50.215973,0.00080142944 215,609.4107,299.6325,29.735962,164.11392,0.0003173939 215,588.5009,147.93588,50.285767,253.09033,0.00031064797 215,616.0102,111.50938,23.136475,92.9768,0.000165148 215,607.60834,3.809004,31.524292,55.609604,9.010979e-05 215,1.2683082,85.95087,18.929941,130.70758,8.220771e-05 215,499.2808,320.22583,87.470184,170.78375,5.5135893e-05 215,0.6035018,281.0573,18.231459,74.72247,3.123559e-05 215,0.99585205,186.21819,18.735985,132.93553,3.0480669e-05 215,584.23206,7.523047,54.69171,112.69573,2.0992557e-05 215,503.2774,104.12886,48.045288,177.99736,1.9057334e-05 215,524.8337,426.7887,49.818787,77.44058,1.767923e-05 215,0.63908935,312.7617,19.28902,136.65994,1.30900735e-05 215,1.1602547,63.096577,18.487366,68.19585,1.23187365e-05 215,0.75361,419.35538,15.160261,83.904175,9.459327e-06 215,472.14896,414.73166,77.34134,80.90753,6.093752e-06 215,3.448052,141.0888,58.781937,233.51993,5.934441e-06 215,562.1991,443.40094,47.129883,63.241425,5.656595e-06 215,483.5308,19.391459,112.21152,286.18768,3.8339467e-06 215,3.436836,393.37988,57.013844,102.71747,2.9081468e-06 215,502.73688,21.041836,28.542725,70.207886,8.6129603e-07 215,2.1552246,32.10786,35.82445,139.40746,3.1384928e-07 215,485.81036,1.2746127,61.213196,51.100212,2.9245265e-07 215,389.1048,14.329089,44.941925,151.16943,1.7278371e-07 215,0.7012309,12.733389,12.226777,83.90178,9.156979e-08 215,463.80157,4.748672,44.51468,47.790184,2.526986e-08 216,538.10657,197.07777,23.292603,46.752396,0.02109118 216,610.66437,161.66783,27.553772,60.46869,0.013307823 216,490.20007,177.19255,38.006348,93.12154,0.012653427 216,506.3397,206.6915,20.267548,48.259323,0.007213717 216,599.86505,350.4173,37.92749,150.47568,0.0025448124 216,620.4027,240.50774,18.743958,56.616776,0.0023609784 216,621.17334,62.280952,17.973328,57.403793,0.0012080938 216,504.96823,148.43637,44.387177,139.39352,0.0011182271 216,482.23898,115.035835,29.605713,51.194878,0.0007824755 216,610.6291,187.31058,28.517578,156.0032,0.0005593281 216,600.05994,67.8641,38.671936,212.10764,0.0005022584 216,599.30896,175.33667,25.45288,55.047714,0.00025937828 216,616.36816,444.16037,22.778503,64.65744,0.0002563936 216,402.9529,83.04083,36.967926,84.28308,0.00020726601 216,615.50885,86.896835,23.637817,88.211685,0.00020205771 216,585.74567,12.776094,52.383728,106.41802,0.00018886983 216,587.09204,438.73782,44.188232,68.8497,0.00010004215 216,0.90508544,63.54571,13.709036,51.205128,9.5878386e-05 216,1.1580021,112.49525,17.88229,74.69677,7.7950666e-05 216,607.2734,6.6620445,31.678406,58.38413,7.384629e-05 216,476.19788,121.940475,107.0022,224.80766,5.57505e-05 216,0.53385335,292.94305,18.484083,77.52588,3.2708842e-05 216,0.9339958,149.5147,18.026613,136.5649,2.3996396e-05 216,0.6765764,348.11484,18.451561,76.92728,1.3126214e-05 216,523.4033,233.34508,25.995178,54.66313,1.2294441e-05 216,469.52875,379.31543,110.25885,112.808075,8.053102e-06 216,1.1327881,261.8136,31.746698,171.79361,7.868577e-06 216,0.76890874,402.58746,18.324522,72.88092,6.5457643e-06 216,560.91394,438.52423,44.010986,66.41229,3.9119063e-06 216,3.5952556,127.7345,58.11173,230.02121,3.7084262e-06 216,518.744,434.02658,44.675232,70.167175,2.373678e-06 216,5.4209085,354.9201,78.2798,130.18607,1.3426702e-06 216,493.30917,436.20514,44.02188,63.0307,9.0684796e-07 216,1.9451253,62.34347,33.342606,172.74611,6.836988e-07 216,3.0652604,427.35385,52.760292,70.6246,5.410092e-07 216,1.6274252,18.393503,58.58984,108.2342,2.5224992e-07 216,1.0545003,11.119661,12.287396,84.445366,8.351419e-08 216,481.66034,4.91953,45.51538,51.169613,7.1520825e-09 216,291.89148,0.56579757,45.591278,59.324974,4.637812e-09 216,396.82947,2.4462304,43.12799,49.376354,3.4462928e-09 216,427.2063,1.0349317,47.083862,54.021854,2.3110325e-09 216,455.8993,2.0216699,44.860413,51.345913,1.9818762e-09 216,1.4194019,1.2393262,20.62547,46.156067,7.5833045e-10 217,401.6645,227.27847,23.704468,49.725555,0.23968755 217,584.9154,127.475006,37.686707,87.02898,0.01671042 217,574.35394,137.17972,61.62567,165.8581,0.009869108 217,620.1182,125.99041,19.028442,56.296043,0.0016137304 217,585.9763,236.26183,40.801025,147.3431,0.0012312022 217,1.0187826,119.33731,17.686436,80.63382,0.0012202564 217,621.7407,348.71136,17.405945,54.37198,0.0011719685 217,610.54504,220.20276,28.601624,141.7963,0.0009707107 217,441.45294,76.320656,25.896454,55.200203,0.00082220166 217,609.162,70.487564,29.98468,143.72583,0.0006726181 217,621.89886,243.6498,17.247803,58.310165,0.0006455824 217,617.1678,192.44069,21.978882,85.14363,0.00045431402 217,610.4269,306.33255,28.719788,130.05902,0.00040302557 217,616.16797,443.25037,22.978699,67.8963,0.00017510772 217,574.0598,410.9314,64.78583,90.9635,0.0001473005 217,620.8066,415.4826,18.340088,58.180542,0.00013590694 217,391.7825,112.647606,74.2059,193.85858,0.00012875858 217,0.42143473,63.784924,18.874338,88.908325,6.392888e-05 217,0.82954675,173.45454,18.295849,79.49051,5.3839056e-05 217,0.9582162,290.85065,19.165335,130.75711,2.6484542e-05 217,615.6866,22.62389,23.460083,87.3425,1.826347e-05 217,1.7374512,124.13408,31.500265,181.29759,1.7795846e-05 217,0.784187,394.35934,18.361595,72.65509,1.1003023e-05 217,508.0933,413.93933,76.72366,84.24017,3.9942925e-06 217,431.01596,45.93219,44.432495,129.58983,3.845958e-06 217,556.2975,447.22214,40.333374,59.586945,3.6305028e-06 217,3.2528615,327.7872,56.80959,152.74802,3.2472624e-06 217,3.4608042,159.33893,57.603027,244.55661,3.0970764e-06 217,26.197275,389.73364,123.17794,99.58392,1.034194e-06 217,1.5073389,23.035091,34.024647,157.937,1.016228e-06 217,1.8115088,414.7957,35.01094,82.24585,7.5896247e-07 217,502.40137,448.71823,41.25299,54.888397,7.4208566e-07 217,0.71430016,11.745964,12.1095705,80.353714,1.7062682e-07 217,387.11646,1.7836052,42.608673,47.43472,3.0683214e-08 217,1.6306365,5.8572774,37.608093,46.241875,1.0332782e-08 217,421.8107,4.5379105,46.05368,49.795517,5.1463247e-09 217,462.65158,4.557025,44.47708,51.8961,4.608835e-09 217,515.2525,3.11327,64.7547,53.06392,1.6191584e-10 217,492.77554,1.6564649,45.896515,48.418457,3.375895e-11 218,539.0567,157.44246,39.094543,75.24602,0.046468608 218,432.63528,155.79895,37.293274,102.67651,0.036650494 218,589.9629,155.6099,48.173523,152.22177,0.035707053 218,581.84357,400.457,54.21576,109.47644,0.028154513 218,586.1367,406.8788,29.298035,57.45819,0.0066439207 218,439.1059,157.06107,22.089935,48.37953,0.00635191 218,619.41144,94.65827,19.73523,62.491035,0.0045063156 218,610.1523,121.9503,28.471863,72.711655,0.0031630814 218,619.39124,235.12373,19.755432,70.87413,0.0030021162 218,619.5007,158.46808,19.645996,61.254578,0.0029168627 218,612.1289,459.1747,27.017761,51.971954,0.0012460179 218,620.49207,418.35794,18.654602,57.786346,0.0011626463 218,608.19574,218.43341,30.950928,158.28177,0.00053302804 218,590.1509,59.118484,42.897705,168.34262,0.00048957387 218,608.73517,327.86044,30.35852,160.65878,0.00040170975 218,453.85104,156.04637,25.502472,55.18622,0.0003322471 218,419.03833,97.68129,69.26846,190.21889,0.00032662135 218,578.0948,76.82921,26.112183,50.330025,0.00021854979 218,583.1041,9.459993,56.02423,124.73868,0.00017699349 218,0.7995182,118.85097,18.942787,129.45268,3.3550456e-05 218,0.7511548,191.68971,18.47206,135.86925,2.4894685e-05 218,502.09512,383.42914,111.44791,108.938416,2.3317758e-05 218,0.9306828,386.78903,18.312231,75.357086,2.331331e-05 218,0.86500895,282.4444,19.115679,134.21799,1.6773223e-05 218,479.7079,300.06345,76.1499,179.95453,1.4346049e-05 218,546.37836,435.87003,46.334473,69.59613,6.031091e-06 218,3.3602085,338.54373,56.743546,144.08722,3.5923904e-06 218,3.817435,124.181595,58.32211,226.2853,1.9922677e-06 218,1.9847786,416.5327,34.458885,80.09064,1.8448602e-06 218,506.1269,436.86218,43.854553,63.57251,1.7624141e-06 218,1.0175741,41.75166,19.687748,134.81985,5.99566e-07 218,1.5264926,22.297611,58.36683,94.19989,5.5780373e-07 218,0.7774451,12.702077,12.888687,78.79156,1.9594574e-07 218,421.8025,4.609751,46.128296,53.707317,4.334378e-08 218,395.1891,5.3851433,43.09973,50.374508,2.4263718e-08 218,0.49040854,6.302313,40.106876,49.69641,1.11265726e-08 218,359.92633,4.893049,43.061523,49.3528,7.890042e-09 218,502.31726,4.7093782,46.239502,49.08808,5.2852047e-09 218,542.8016,1.1692953,45.95117,54.208244,2.3266804e-09 218,476.39194,1.2651709,46.369965,50.65053,1.175184e-09 219,455.13177,223.2777,23.150482,51.69597,99.85554 219,470.6454,223.39964,23.914307,52.515793,99.68333 219,599.76447,140.21829,36.97455,76.77101,0.18292722 219,546.6791,118.28858,46.45996,107.01385,0.09990509 219,612.0342,121.75808,23.157349,46.83245,0.014687122 219,584.40717,93.73524,53.635803,257.91797,0.014418285 219,453.2372,199.96191,53.19925,104.38779,0.0050081364 219,521.50867,79.817154,86.90137,204.6118,0.003670291 219,611.1947,271.4223,27.951965,138.99066,0.0034240005 219,598.2751,329.37613,39.846863,164.85764,0.0010069542 219,558.84064,170.26495,25.331543,56.518463,0.0009973568 219,462.8133,39.81921,38.697388,88.34215,0.0005840514 219,533.3984,52.666103,40.012756,114.20984,0.00057289586 219,0.6303231,116.89375,20.589283,116.03273,0.00032274774 219,606.1425,433.54507,33.00415,71.87744,0.00024391778 219,0.8973918,171.16539,18.75073,144.90575,0.00020757935 219,608.5382,9.234642,30.60846,169.89487,5.1992356e-05 219,405.9084,147.04028,134.54962,232.61331,3.9463728e-05 219,3.4380584,108.5581,58.108013,231.53085,3.4237768e-05 219,0.6577466,334.4588,19.931898,132.90823,2.3852106e-05 219,423.60474,159.49597,21.424652,47.200592,2.2073693e-05 219,1.3503549,231.90776,29.021097,179.39867,1.3130007e-05 219,2.9479933,319.81943,56.761875,160.19995,4.224329e-06 219,0.7932398,418.5478,16.286856,81.714264,3.0005303e-06 219,1.1289567,25.359037,19.71758,133.60023,1.7468386e-06 219,2.1437776,18.76901,59.3128,108.60088,1.1505975e-06 219,522.8671,450.4196,40.504456,54.388916,1.0980964e-06 219,501.72876,27.4557,29.714478,64.003815,9.3013443e-07 219,442.67444,5.109271,84.25635,181.98727,8.84141e-07 219,527.14044,423.56473,79.35974,77.541534,3.597319e-07 219,1.2354923,8.2861395,22.349876,57.791138,2.6604956e-08 219,475.09866,2.4681869,46.85074,53.792664,1.6729842e-08 219,501.74283,2.5784538,47.414154,57.28481,8.562502e-09 219,400.22147,4.868729,46.278137,51.16025,5.484832e-09 219,523.34186,0.7817757,66.49225,54.21064,4.625815e-09 219,427.58383,1.4764372,47.056946,52.129147,1.5611291e-10 220,537.40845,223.39717,28.726807,67.85899,87.792755 220,462.4445,226.50203,34.11673,62.59108,0.5154405 220,504.4198,111.90345,39.20691,87.5933,0.1949261 220,602.5869,184.0817,31.205627,62.1138,0.14419037 220,598.8558,71.59102,37.513184,84.147415,0.0025360251 220,492.8954,104.02308,70.700134,189.61166,0.0023438658 220,609.13153,356.70892,30.015137,144.16812,0.002305641 220,598.4375,118.23404,39.277344,183.31668,0.001154946 220,614.8291,142.61513,24.317566,89.49423,0.0011003166 220,619.7692,117.319466,19.377441,57.464455,0.0010843195 220,610.60535,253.95297,28.54132,169.62497,0.0010283088 220,614.0468,462.4312,25.099854,48.715454,0.00044027166 220,587.3155,439.37012,43.52661,70.50275,0.00036055336 220,0.9462305,87.35628,19.027382,139.29607,8.460851e-05 220,614.4232,17.201834,24.72345,103.753716,6.097031e-05 220,570.72296,7.8424025,68.36444,192.3146,4.7117126e-05 220,0.77621096,196.39114,18.87043,135.45612,3.164592e-05 220,0.7380371,336.3844,19.297516,133.61255,2.6840211e-05 220,0.8863908,55.0543,18.607214,76.585594,1.9482306e-05 220,507.9621,388.60126,121.89264,106.28192,1.0203654e-05 220,1.170892,253.39748,30.78267,177.59135,7.011872e-06 220,463.1401,172.9128,26.48938,61.120667,4.5385486e-06 220,559.79785,433.82047,45.608154,71.817505,4.3840364e-06 220,3.1995947,335.72403,57.234272,146.30515,3.8991607e-06 220,3.3539894,149.24474,57.850166,226.96352,2.1994088e-06 220,1.4018214,413.56967,35.707413,81.447205,2.0162056e-06 220,492.09158,13.0986,60.756866,178.74896,1.6585742e-06 220,2.0322835,23.064734,58.798447,97.60185,7.7990353e-07 220,0.84944177,13.360876,13.045894,78.74219,2.2913362e-07 220,485.1625,19.922377,37.28836,89.88118,2.8356286e-08 221,586.04724,212.76474,29.826416,55.31314,0.018295616 221,584.3906,393.1616,52.43347,97.9155,0.008331097 221,624.7958,344.45984,14.350891,45.549866,0.0060529197 221,608.44366,221.56589,30.703003,193.10294,0.0018421708 221,537.0342,218.0745,24.460632,46.358185,0.0013262428 221,621.4655,220.30353,17.681152,51.033173,0.0009808949 221,607.2046,137.69041,31.942078,75.590805,0.0009583007 221,605.1306,349.7098,34.016052,88.17755,0.0006966534 221,551.82306,216.1893,23.62854,48.943573,0.0006578458 221,572.4262,56.778145,24.742859,49.301384,0.00029719828 221,494.39398,252.75261,40.673645,119.4579,0.00029180286 221,583.7677,87.854744,55.378967,280.4058,0.00016022882 221,0.8539559,186.76234,17.75972,77.461655,0.00013911501 221,620.86285,92.922134,18.283813,55.189728,0.0001266461 221,0.82450116,82.20746,19.592049,145.0747,0.00011378541 221,489.36475,384.0601,132.60382,109.39923,9.747633e-05 221,584.5922,7.4058533,54.261353,111.143814,6.518964e-05 221,0.701215,216.03847,18.097803,136.19722,4.2603693e-05 221,0.80940515,368.08786,18.207039,75.4158,3.159619e-05 221,473.62607,227.74406,120.4686,233.39159,2.7359307e-05 221,615.58813,41.799263,23.558533,88.71223,2.21217e-05 221,565.52136,425.20517,48.032898,79.85916,2.1769805e-05 221,1.4613917,269.16037,30.906284,175.475,1.6538774e-05 221,3.9926174,99.77225,58.369526,229.97534,9.612176e-06 221,237.74678,204.82484,43.527145,118.90825,5.5041232e-06 221,1.2307764,390.34433,28.077995,103.385254,3.907842e-06 221,5.795684,354.32907,77.93324,129.58136,3.1406203e-06 221,509.20636,445.29974,42.317017,56.800568,1.6034846e-06 221,1.1599927,46.48455,18.948595,73.05703,8.190859e-07 221,464.0846,39.055866,35.254883,87.67726,7.847082e-07 221,43.986443,388.94904,119.96662,102.73453,7.2673936e-07 221,2.1570916,17.241364,58.481384,110.10693,2.1631294e-07 221,1.3427768,7.2652283,31.158089,61.185814,9.980628e-09 221,387.76428,5.98736,43.1304,47.640465,1.5581669e-09 221,415.96326,4.3566523,44.217163,47.914185,5.5613714e-10 221,531.3462,3.1203485,42.6839,46.794525,5.137643e-10 221,353.07358,6.557214,41.87918,49.83869,3.6931647e-10 221,505.382,2.5455356,42.5856,46.34845,2.2400477e-10 221,442.97418,2.0594091,45.08313,49.39891,1.11311675e-10 221,475.08365,3.6979673,45.687775,48.95665,4.6022425e-11 222,591.6752,401.9034,46.510864,109.19269,0.018864648 222,619.1172,232.90668,20.02948,62.637787,0.014350584 222,618.2113,425.43536,20.935364,67.38611,0.002712085 222,598.1169,203.45457,28.646912,59.69905,0.0025348791 222,616.68115,184.73788,22.465515,79.31879,0.001381186 222,508.46454,352.6779,129.6175,139.85931,0.0004312129 222,585.522,170.12706,52.601257,276.5775,0.000392797 222,614.8548,354.2754,24.29187,99.86801,0.00022274807 222,0.9879265,232.91058,18.053183,78.93649,0.00014849134 222,606.1366,5.708856,33.01007,54.976017,0.00013364153 222,0.83639,91.2966,13.65839,50.427246,0.0001291972 222,0.67180586,139.2538,18.406977,80.01761,6.8539244e-05 222,597.8977,62.680996,40.34137,224.35059,6.4437285e-05 222,585.08734,6.605176,54.003235,113.45776,6.250385e-05 222,0.68843347,285.11273,18.164345,77.66858,4.8946138e-05 222,615.7558,112.47323,23.39087,91.13625,4.5902e-05 222,615.7523,66.74097,23.394348,84.77484,2.4993027e-05 222,1.365459,144.95813,30.921227,185.94748,2.1672859e-05 222,582.1242,381.18594,33.077454,65.28943,2.090904e-05 222,254.12189,259.8287,114.773315,221.02261,1.5352862e-05 222,0.7372494,326.46158,19.03126,135.54819,1.2547657e-05 222,552.8319,426.29907,53.903442,84.37509,1.0634596e-05 222,416.40613,134.24657,40.069153,108.53015,6.54147e-06 222,0.84956384,419.74725,16.805548,80.404724,6.397767e-06 222,3.4602687,185.30527,58.295155,226.04733,5.5538985e-06 222,441.32635,95.74369,75.67285,201.4057,5.139986e-06 222,291.9918,362.36288,26.825287,54.23758,4.4644025e-06 222,96.680824,435.5547,42.081093,65.31897,2.9901892e-06 222,1.1639999,20.933836,21.533596,110.844574,2.7013077e-06 222,513.1349,432.72888,44.80591,66.14786,1.4491748e-06 222,5.2038803,353.17166,79.81727,131.99188,1.3136378e-06 222,44.82723,390.761,123.952835,101.4397,1.0444307e-06 222,2.8968263,427.4849,54.198853,70.104065,8.3216884e-07 222,3.9009507,30.14459,82.79843,123.64046,6.3189844e-07 222,406.1303,40.202396,76.239136,231.38892,9.3676775e-08 222,0.8140267,6.384292,39.778904,52.46678,7.4881585e-09 222,311.15854,3.2137973,43.659607,49.138573,1.0094245e-09 222,339.885,6.1387324,42.30197,49.418385,3.0425945e-10 222,413.21002,2.719795,46.402893,55.63518,1.2141402e-10 222,390.56525,1.9332618,42.807587,49.3678,2.644479e-11 223,583.0859,80.801254,29.840088,63.02481,0.03327324 223,236.75258,253.14061,24.110641,45.84166,0.023927381 223,520.18384,229.21904,30.345398,69.452225,0.01911021 223,586.75323,80.79782,51.885315,189.89828,0.013749498 223,608.2602,159.76183,30.886475,190.22685,0.0066664694 223,618.3345,101.01077,20.812195,74.806595,0.005012135 223,619.0637,224.65787,20.082947,73.766205,0.0039793495 223,251.4787,253.86943,21.265228,45.478195,0.0027628094 223,615.8841,305.74185,23.262573,93.24884,0.0024272308 223,597.7739,256.90488,39.993286,191.4831,0.0015084774 223,501.3398,41.260197,133.98929,295.49966,0.0014543755 223,617.2128,169.6266,21.933838,63.461273,0.0013129462 223,523.7535,170.03381,45.56427,91.2142,0.0009741641 223,612.87744,11.370248,26.269226,86.42994,0.00037511784 223,583.86676,374.47052,54.66455,119.98331,0.00035688744 223,542.37445,60.408047,40.550232,110.97893,0.00022907095 223,566.67676,49.688835,45.344116,172.71695,0.00017931705 223,605.854,435.1042,33.292664,72.64972,0.00015760445 223,1.0570459,179.73993,17.96357,79.220764,0.000114297894 223,0.9912272,82.66093,18.468853,78.64776,7.917594e-05 223,581.5795,1.9759115,57.390198,142.7266,7.442022e-05 223,535.4721,89.203865,54.324768,189.9682,5.426784e-05 223,1.6032472,82.4055,32.65343,185.21819,3.0126996e-05 223,1.0639746,237.51724,18.763136,133.04938,2.140027e-05 223,0.9348698,315.50952,19.04883,129.80106,1.9560948e-05 223,2.4100277,24.572712,56.89781,103.34955,3.2291964e-06 223,3.815713,195.28949,57.856583,230.51648,3.1938953e-06 223,0.71439457,418.48178,16.368366,81.61459,2.5632116e-06 223,514.4404,0.0,47.177917,137.1361,2.0253326e-06 223,5.905036,352.468,78.86977,133.23532,1.3635437e-06 223,536.5354,449.59906,40.96649,55.530792,7.622194e-07 223,527.3858,414.118,83.1095,86.56238,7.605421e-07 223,538.4549,11.283548,36.682373,95.43837,6.063848e-07 223,1.0291622,14.335792,12.945036,80.24623,3.8993e-07 223,577.11743,2.0348341,46.689575,55.937237,9.852208e-08 223,366.5433,4.131561,46.97888,47.622696,2.5108313e-10 224,443.1989,238.58313,24.675262,57.400665,0.7950907 224,220.6248,229.1764,31.772629,63.82469,0.004240163 224,622.4329,238.46892,16.713745,58.540543,0.0035989499 224,483.704,218.98415,29.136505,58.08174,0.001978591 224,607.84515,301.86243,31.301514,140.45004,0.0016060402 224,586.32416,126.9043,50.462708,249.81418,0.0009684416 224,598.3003,117.73612,37.31372,87.06461,0.000622788 224,619.558,129.44644,19.588684,60.801773,0.00040070768 224,590.0921,434.6686,48.327087,73.73035,0.00037002418 224,610.09424,215.0569,29.05243,131.89897,0.00034094832 224,621.3409,93.412056,17.805786,57.06199,0.00030784946 224,620.2229,165.40839,18.923767,57.842865,0.000228033 224,548.0928,69.2086,39.50232,101.52301,0.00022003442 224,582.63947,1.9454753,56.507202,126.07688,0.00014324929 224,470.1561,182.93109,57.756073,123.69891,0.00013272019 224,535.39856,62.849453,74.3667,213.44263,5.561085e-05 224,556.8838,118.468704,38.15686,103.931946,4.8612736e-05 224,567.01324,329.7421,70.16931,166.87625,4.0331444e-05 224,0.70961267,188.2471,18.063448,74.82028,3.6828817e-05 224,0.7758993,80.07918,18.899576,140.66158,3.2376396e-05 224,0.9104916,248.18092,18.261534,127.55623,2.718033e-05 224,0.5910335,319.295,19.169855,135.4711,2.0413272e-05 224,0.7502938,424.9167,13.815152,47.349884,7.999444e-06 224,1.2866529,132.81435,31.89017,184.22203,6.151241e-06 224,533.5249,417.9988,78.82825,85.071045,5.1801417e-06 224,1.2895541,383.27908,29.240408,110.478485,4.1961266e-06 224,3.2071533,254.94711,57.32387,215.1814,3.786202e-06 224,494.66595,412.04547,72.92737,83.701935,2.1182677e-06 224,1.6249366,26.950882,28.842974,110.37146,1.2025934e-06 224,521.16174,0.124075525,47.749023,145.55635,6.774653e-07 224,0.78784794,14.550739,11.894513,78.84154,5.912655e-07 224,2.6020703,32.65476,61.770657,179.4072,8.180364e-08 224,530.0521,2.740202,64.434326,53.823708,6.7514785e-09 225,607.0433,205.18983,32.103394,65.024185,0.010309583 225,604.88904,244.02904,34.25763,84.54463,0.00849731 225,595.79004,64.66613,40.64685,128.24194,0.0060664187 225,413.44196,193.3054,32.42285,75.00209,0.00453938 225,605.72296,162.42493,32.973755,70.9274,0.0040107653 225,377.10095,198.92451,31.18985,69.454605,0.0031191856 225,624.39545,255.56427,14.751221,45.72937,0.0026983835 225,546.71216,184.24399,22.441345,46.49214,0.0022852435 225,621.36273,50.624573,17.783936,52.88668,0.0011114251 225,588.37524,147.54756,49.348267,241.00514,0.0010905262 225,0.8263705,98.51943,13.7555275,52.388847,0.0005714858 225,618.5,107.72011,20.646667,64.2395,0.0005707788 225,619.4861,282.16006,19.660583,60.654907,0.00049487076 225,583.3814,9.219082,54.816772,112.97966,0.00047971026 225,603.7976,432.9884,35.34906,75.79303,0.00033669124 225,1.2078085,87.472015,19.426422,136.86877,0.0002804708 225,417.76428,173.1044,22.924255,53.648056,0.00025719663 225,615.3734,370.12082,23.773254,94.540436,0.00024421944 225,475.56152,187.10918,44.61609,111.79527,0.00015943377 225,585.3536,327.16016,52.375183,167.87292,0.00011676416 225,531.4991,145.75102,44.857544,147.82487,7.720256e-05 225,527.4768,172.09337,31.249512,65.74997,5.5912795e-05 225,0.7681242,159.90628,18.697908,138.018,3.960753e-05 225,0.75883627,251.8702,18.373795,129.10106,1.4729866e-05 225,0.8798731,356.54233,20.830872,104.13867,9.091743e-06 225,0.7356445,420.51105,16.146767,79.397095,7.2664266e-06 225,574.4463,435.19266,45.540222,72.017395,5.5703636e-06 225,542.5834,449.7111,41.608154,58.618256,4.4245603e-06 225,3.2536182,285.49603,56.497536,186.31241,2.5348816e-06 225,494.73553,384.3053,120.99658,113.32617,2.1025369e-06 225,502.60522,449.56958,41.409668,53.92047,9.178036e-07 225,2.914025,428.48645,51.727005,69.24347,7.787842e-07 225,2.8917384,67.767876,60.214546,229.30774,7.27036e-07 225,1.5702084,14.567871,59.788074,121.60228,4.450339e-07 225,19.663528,21.747728,89.185356,185.85324,1.9614694e-07 225,0.8189022,9.604756,11.834173,90.747375,5.229694e-08 225,1.0465951,3.4730713,41.0888,55.05236,1.3402534e-08 226,419.1396,178.17682,34.631104,89.00552,0.53499204 226,596.1767,118.84107,42.316772,86.19239,0.26176482 226,511.9637,179.66675,38.439056,78.62808,0.14188036 226,326.73587,211.1413,27.838318,57.338318,0.027117454 226,375.67734,133.47408,21.76413,46.037598,0.012576828 226,619.62024,239.12349,19.526428,67.292984,0.010501567 226,470.45923,216.89589,23.642517,51.897873,0.009719962 226,624.20557,135.51418,14.941101,45.646164,0.008996671 226,604.661,432.64395,34.485657,77.15311,0.0059997393 226,521.8912,228.31172,39.15802,91.744064,0.0034891074 226,618.6102,156.97997,20.536438,66.72595,0.0023724441 226,607.7888,140.74696,31.35785,165.85722,0.0018809703 226,507.81866,153.7067,70.25403,176.29666,0.0017588696 226,560.7193,391.07025,75.99066,107.70288,0.001523654 226,535.5822,182.20355,26.55133,61.193436,0.0012957334 226,584.32336,185.25533,53.538696,287.9192,0.00054604426 226,563.572,73.9634,74.00354,243.08435,0.00051628094 226,567.3705,159.87534,35.79596,78.606125,6.412721e-05 226,0.7482992,170.0363,18.189518,135.3889,4.6508056e-05 226,516.3527,124.45793,26.687378,57.87007,3.735695e-05 226,527.54987,288.70398,77.21069,201.22406,3.084908e-05 226,502.00833,409.4719,86.8815,97.47015,1.9953144e-05 226,606.42993,0.43852216,32.716736,70.98184,1.881226e-05 226,0.80988365,278.21106,19.082178,131.20303,1.742098e-05 226,379.05716,127.04766,128.37613,224.79474,1.2792698e-05 226,1.2305908,74.78372,27.781187,157.44493,1.1166153e-05 226,0.8188851,364.65613,18.872404,127.588776,7.3581973e-06 226,3.820848,130.21149,57.260693,226.19778,3.3134756e-06 226,3.2061882,293.81433,56.271698,180.91495,2.2306426e-06 226,1.1370947,23.62728,20.955267,115.26235,1.0464487e-06 226,510.49496,7.5019207,46.773956,140.28827,4.861225e-07 226,1.3194304,8.767982,30.838058,60.42254,4.2955815e-08 227,518.2986,163.83922,43.280823,110.495285,4.768778 227,332.415,210.08849,29.167389,57.17903,0.07704202 227,603.99176,122.68945,34.04889,90.18599,0.01477142 227,507.8473,95.25853,39.374695,105.82594,0.004340418 227,496.08923,129.74232,94.6142,208.49443,0.0026832002 227,373.1767,102.67717,25.572754,62.75737,0.0022398925 227,133.04993,160.07742,37.120117,82.306885,0.002167223 227,546.18823,170.32974,32.882324,89.15842,0.002141374 227,620.77747,98.95282,18.369202,56.04538,0.0021060077 227,406.00522,76.08702,38.195618,108.26329,0.0007506583 227,616.41187,256.98148,22.734802,91.24866,0.0006710151 227,586.3508,253.18672,51.918396,229.19023,0.0004688763 227,602.07996,163.55878,37.06671,205.40201,0.00032391705 227,595.2217,399.56653,43.20581,102.82437,0.00029182626 227,0.7129997,139.9679,18.386286,77.10335,0.00015725267 227,583.85614,8.685052,55.028564,125.089195,0.00014556455 227,616.5809,333.8136,22.565796,95.66461,0.00012088784 227,0.71894777,202.52538,18.847666,138.84288,7.279215e-05 227,1.5364258,114.42779,32.126724,177.70721,5.53022e-05 227,0.6313729,59.43124,21.183674,110.41684,1.1362488e-05 227,0.62218016,313.23044,17.129515,129.21957,8.218187e-06 227,0.7691333,420.6596,16.975214,80.02985,6.731583e-06 227,3.7921257,160.71396,56.33196,220.98843,6.5073978e-06 227,489.34485,389.7348,121.42206,104.60385,1.8160645e-06 227,3.1619678,321.63797,55.63027,158.58981,1.4148758e-06 227,513.3213,435.6149,43.25299,66.81287,1.2712873e-06 227,3.850355,426.60312,58.885796,72.80246,6.6559227e-07 227,468.15433,3.0429623,48.143097,129.97833,6.290292e-07 227,0.61510867,10.905026,12.993713,88.170235,3.47265e-07 227,493.02304,0.32128906,79.47708,229.32372,2.1302475e-07 227,1.7010661,19.501211,57.631138,117.49955,7.058953e-08 227,556.40546,25.544645,29.120178,64.58482,4.0921076e-08 227,456.02075,4.0893574,44.88092,54.22209,2.5528312e-08 227,427.96686,4.608753,44.37857,51.449177,1.6932796e-08 227,482.51752,1.1194792,46.25525,55.391018,5.9720056e-09 227,509.18298,1.2637712,46.39911,52.449516,2.2914213e-09 228,607.43896,121.28309,30.371033,76.94625,0.8659932 228,334.66483,203.3143,30.551727,62.127106,0.31361547 228,33.51183,188.81845,32.205692,54.955383,0.23114002 228,623.66205,156.92363,15.484619,45.366714,0.006491763 228,22.539713,181.74533,52.880577,130.55734,0.005574956 228,589.6519,97.57637,48.583374,228.2376,0.003807434 228,579.569,374.3211,58.51123,136.82556,0.002511093 228,622.00806,108.409805,17.13861,52.776337,0.0019629842 228,614.80286,167.38692,24.343811,93.7043,0.0018081886 228,2.0519679,155.14293,27.749323,154.64894,0.0016510596 228,617.05707,332.54755,22.0896,88.63202,0.00075826194 228,54.19873,195.25279,44.882507,93.77409,0.0007008061 228,621.3144,61.158817,17.832275,53.349087,0.00047345494 228,482.98825,33.01593,24.525146,56.30294,0.00019060039 228,480.2273,118.06684,40.17975,96.74102,0.00018481587 228,610.6711,218.03728,28.475586,124.146255,0.00016408783 228,400.63654,93.51193,35.604584,91.98784,0.00013093797 228,436.40192,123.95021,25.285034,50.249863,8.0511796e-05 228,3.406198,206.55556,56.172802,234.21019,3.3258042e-05 228,403.45847,152.18663,33.170807,76.46509,2.5513695e-05 228,0.9993824,257.74304,18.730717,133.60623,1.9118974e-05 228,1.3094661,301.6624,31.947153,184.22467,1.8340968e-05 228,567.1463,448.24057,46.159363,62.906097,1.3765957e-05 228,609.205,20.653776,29.94165,120.1573,1.3440313e-05 228,467.40247,49.100143,69.675964,218.70985,1.1579414e-05 228,609.34045,4.976369,29.806213,54.217545,9.251276e-06 228,1.0810531,441.80356,20.48898,59.787903,7.50092e-06 228,0.7578093,52.55243,20.291988,162.75081,2.2800546e-06 228,2.2854037,29.057709,62.007656,258.93515,1.4538482e-06 228,517.9127,416.64417,85.403625,86.865234,7.280323e-07 228,0.5820093,12.437311,11.360271,81.53583,4.9205255e-07 228,461.84122,0.0,48.122192,155.50073,1.1069067e-07 228,1.2484636,14.527555,38.062412,72.68776,5.797528e-08 228,469.59448,0.0,48.165955,55.25338,2.017904e-08 228,489.29208,13.159675,37.086884,99.5538,1.7155743e-08 228,443.94943,0.93417805,45.675262,52.082077,3.4497633e-10 228,333.25073,1.2983904,45.217285,47.158134,2.2312358e-12 229,312.24426,180.35237,22.743011,46.21219,1.2779391 229,588.44635,208.86115,35.062744,69.34808,0.8545687 229,619.5475,213.00182,19.599182,61.15657,0.09903324 229,459.22992,47.406025,32.87097,75.77179,0.025207352 229,519.2573,56.106537,31.072876,67.274765,0.0073245065 229,44.030094,107.327034,77.71814,191.19293,0.0044050138 229,618.376,97.398056,20.77069,61.954575,0.0030046024 229,583.0714,380.34302,54.641968,126.22055,0.0027754086 229,611.36414,123.37598,27.782532,157.14447,0.0026714758 229,615.83923,358.79913,23.307434,80.65405,0.0017280283 229,614.0841,463.58237,25.062561,47.5643,0.0005727243 229,600.2945,181.54498,38.563965,212.44379,0.000545234 229,518.38043,117.43843,25.175354,49.764404,0.00031322805 229,486.71304,326.37674,88.507416,164.95963,0.00030958414 229,1.3499024,94.18758,19.030571,131.6135,0.00028603149 229,582.3555,4.796328,56.791138,267.6893,0.00022189002 229,88.80069,100.35045,37.408386,93.898834,0.00021455866 229,460.82297,66.27421,42.83194,151.88824,0.0001480321 229,2.3276465,132.16484,33.84155,177.34163,0.00011367825 229,558.0681,435.029,49.86621,68.61029,7.1217626e-05 229,466.347,103.56236,28.804077,63.56537,5.7560716e-05 229,0.83770996,202.32352,18.636564,136.24924,5.1358795e-05 229,68.103546,207.2805,41.38514,84.73909,2.4515744e-05 229,4.043534,190.7799,54.896626,229.08734,1.472078e-05 229,0.6792424,281.3647,18.803938,135.28561,1.4064333e-05 229,614.53406,15.331683,24.61261,95.80205,1.1417344e-05 229,1.1709782,378.11865,16.923746,115.86658,7.253631e-06 229,523.79333,429.81235,48.500854,75.21854,5.1088073e-06 229,434.0222,1.67403,50.462982,134.36128,3.4904615e-06 229,2.994673,42.962666,60.19216,204.21216,1.9739982e-06 229,3.5915415,391.54526,54.913387,98.70444,1.9274617e-06 229,79.45473,62.613483,77.03615,202.59416,1.0578876e-06 229,1.5767107,23.547182,29.644638,122.91887,1.2745814e-07 229,399.1577,2.3472786,148.58014,218.87706,9.5258216e-08 229,0.86728394,15.239557,12.61923,77.989845,7.2363925e-08 229,408.7593,1.9638151,45.0253,50.653656,7.691599e-09 229,448.12152,0.93800455,47.45041,52.957394,5.6338023e-09 229,347.83023,1.0956787,62.856506,52.70086,3.6483234e-09 230,55.184715,240.97487,35.44951,78.55388,87.0454 230,3.0816212,104.94977,55.96057,172.74054,0.99032986 230,26.939745,201.8216,55.926224,121.958374,0.20950353 230,48.195587,228.71373,23.802673,61.335037,0.02678005 230,2.2193751,169.4643,28.358997,91.64139,0.016760271 230,1.406246,95.03265,22.36001,112.18271,0.011130632 230,16.54605,130.72346,114.05917,214.88734,0.0067517385 230,53.593693,154.86346,41.53747,129.54462,0.0013649478 230,55.654408,210.69362,21.335773,45.460068,0.0012132858 230,609.37384,125.94474,29.772827,131.84158,0.0007325468 230,469.41513,137.24374,24.71701,48.95746,0.0006624201 230,581.5245,321.41574,55.520447,178.37027,0.00037866208 230,600.8714,203.76881,38.236755,203.7853,0.00021134829 230,348.61218,93.07299,64.11566,180.36868,0.000118992204 230,79.4881,132.82,40.64779,92.541275,0.00010449009 230,0.9164502,240.97435,19.188126,150.1078,6.052411e-05 230,527.44446,342.05417,75.95343,164.87122,3.4014996e-05 230,0.763029,331.41797,19.087671,140.40424,2.933686e-05 230,550.5887,432.05496,49.753723,79.091705,2.3613597e-05 230,491.62497,434.34714,46.23221,71.18204,1.4967065e-05 230,1.0205714,420.82516,16.649683,80.14401,1.3056236e-05 230,3.0900946,201.52077,59.47936,277.13196,1.2372105e-05 230,585.2439,0.0,53.90277,239.45636,8.630313e-06 230,608.28424,2.2913673,30.862427,59.159805,7.529919e-06 230,3.4223568,395.19165,55.217384,99.71121,4.325818e-06 230,527.48175,447.60287,44.051636,62.557495,3.901824e-06 230,2.4568784,15.215143,58.188984,123.62585,9.50055e-07 230,399.14343,0.23073243,66.01117,54.35689,1.4791706e-09 231,412.5218,252.32149,24.826294,53.169327,94.39602 231,361.72855,193.97717,35.758118,87.4516,2.3926842 231,396.04886,247.14516,25.68219,55.122086,0.15540844 231,393.40497,184.42955,42.252075,130.35185,0.0193465 231,2.3331707,187.10297,44.09414,140.01062,0.012301886 231,505.68823,124.0255,24.083801,50.013184,0.00317977 231,369.6792,120.93874,48.5596,168.97552,0.0027087221 231,612.13336,267.4662,27.013306,131.40274,0.0009781934 231,338.8012,208.45633,24.91681,60.24341,0.0009328544 231,9.617256,130.53754,83.97828,199.13345,0.0007663519 231,382.03876,104.87908,23.341888,49.045662,0.00039491916 231,1.2382138,259.36346,19.439095,84.1239,0.00033718228 231,583.9633,1.7003125,54.490112,115.22574,0.00031985732 231,1.1448706,290.7332,27.970049,171.5232,0.00030862726 231,1.1559863,98.23065,22.742865,185.27225,0.00024012654 231,46.540035,94.96042,48.527966,152.30247,0.00017966214 231,550.8406,425.1639,61.436768,80.573456,0.00012043802 231,306.1896,170.79907,36.186676,78.48387,0.00011101707 231,602.1867,313.6945,35.733643,177.91501,0.000106795334 231,386.49533,194.63268,28.235962,80.030106,0.00010154606 231,1.1084456,80.513855,19.4443,81.6376,8.861772e-05 231,612.0832,183.25069,27.063477,135.8567,7.86115e-05 231,611.6647,65.66978,27.481995,150.78091,7.276175e-05 231,468.5457,54.53274,39.408173,95.08411,3.9486655e-05 231,369.93463,148.28383,139.91428,236.94878,3.4223896e-05 231,613.30646,0.0,25.84021,45.942093,1.7563343e-05 231,4.593509,349.45248,78.832306,134.37637,1.46287075e-05 231,0.7350212,418.18234,16.552618,81.138916,9.522722e-06 231,487.8917,388.8274,112.44559,108.46069,5.7349876e-06 231,508.4746,447.33798,41.634766,58.608185,3.7175337e-06 231,450.8662,21.664785,79.599915,169.82016,1.2967791e-06 231,510.6362,7.8768167,79.3862,167.12997,5.9411434e-07 231,536.2453,2.4234571,45.5578,57.23481,3.4373382e-09 231,475.98172,6.7194843,45.12741,50.795906,6.2287014e-10 231,510.5771,0.0,48.35553,69.064026,2.7070482e-10 231,0.89739585,5.583154,19.778173,59.88611,2.5669624e-11 232,469.94855,241.70518,39.141144,82.125656,99.96395 232,428.36115,242.69376,46.38617,95.168304,26.768648 232,433.86325,115.67115,44.872864,108.62145,0.11762313 232,422.53867,134.2805,68.29462,190.12016,0.034113124 232,387.53702,160.59471,41.20584,102.24153,0.016201412 232,431.88385,49.76347,27.17694,56.033947,0.013411032 232,1.195083,67.88417,19.45529,83.062164,0.0039185956 232,309.81192,129.66792,61.60382,146.25084,0.0023359954 232,478.14224,107.8177,37.21988,88.732956,0.0021932817 232,441.757,185.36609,33.110535,83.83481,0.0018608272 232,3.0865023,139.75806,49.37228,163.30981,0.0018394132 232,439.53497,202.65163,94.56506,184.58745,0.0010453501 232,359.01163,191.63705,27.496704,61.971176,0.00096082815 232,424.38522,154.80103,37.72928,101.1243,0.00057316583 232,3.4915464,226.83807,59.08151,248.31888,0.0004607125 232,1.7476034,218.44264,19.413425,83.10722,0.00036681912 232,609.1583,374.0773,29.988342,136.94843,0.00029982388 232,0.80957687,272.37222,19.267733,146.16675,0.00016770007 232,611.9559,65.513504,27.190796,139.73692,0.00010262809 232,612.1402,176.88818,27.00647,139.89944,8.796652e-05 232,585.9687,83.225716,52.393738,253.3274,7.5058066e-05 232,585.5312,433.65042,45.614624,75.71161,7.439751e-05 232,0.7060539,356.19385,18.065153,142.0582,5.4168362e-05 232,604.7148,0.33199546,34.431885,68.80106,5.3228672e-05 232,512.0119,411.95612,79.1156,90.95776,1.4500963e-05 232,420.3002,17.906622,45.296326,132.66995,1.1191312e-05 232,558.87384,434.17914,46.03119,74.36066,1.0347865e-05 232,1.4799105,23.269218,60.373646,118.24683,6.0059065e-06 232,2.5847852,34.85746,94.9091,218.04709,3.865778e-06 232,192.07349,11.284545,81.72244,185.114,1.8900243e-08 232,419.4514,3.606429,47.95096,54.41261,5.7577543e-09 232,1.0507528,7.456628,22.06841,58.78801,3.3115628e-09 233,600.81793,197.82217,38.328735,117.51276,1.8864306 233,533.6668,135.85614,40.904846,101.78253,0.32440448 233,519.8611,134.47043,21.2359,51.985077,0.08813084 233,622.2591,251.35652,16.887573,54.447433,0.048571154 233,620.6977,220.47752,18.448975,48.862564,0.030576432 233,603.5943,46.755455,35.351685,100.508705,0.012542408 233,598.68634,241.85715,40.04718,222.88272,0.005925249 233,586.95886,23.335014,51.947327,296.80185,0.0028306006 233,500.23813,134.83252,34.66971,80.561554,0.0021394312 233,568.7623,112.41317,31.19635,67.75155,0.001664331 233,618.9866,24.727299,20.160095,67.392456,0.0009723375 233,2.6952443,131.56439,41.24014,127.61957,0.0008846035 233,615.61945,94.77465,23.527222,114.523796,0.0008693987 233,361.06934,97.50216,75.63144,182.51587,0.0007037603 233,371.5996,155.16408,30.498993,69.76915,0.0006929256 233,520.2848,108.993935,88.12421,183.33734,0.00035650507 233,586.04785,381.2419,52.53235,116.709045,0.0003447506 233,435.4821,87.802864,70.19125,193.50461,0.00031454337 233,1.4735522,212.97318,19.78707,133.19809,0.0003052668 233,615.8353,463.3026,23.31134,45.04428,0.00022983749 233,57.76282,306.03912,84.73862,170.84506,0.00021565822 233,616.07825,309.84174,23.06842,84.006714,0.00019674633 233,3.2731023,87.14266,83.30303,226.80536,0.00015931051 233,614.2348,0.0,24.911865,49.752,3.999408e-05 233,0.927745,421.1473,16.865955,81.11572,1.8799597e-05 233,593.7643,13.463272,37.674194,83.79299,9.713393e-06 233,0.94002116,301.7789,17.96797,132.7857,9.572693e-06 233,1.378326,356.28833,29.976818,138.05887,5.7334782e-06 233,549.85516,23.21834,69.35498,187.0455,5.472593e-06 233,506.63626,6.9018784,46.096222,106.661285,2.7925585e-06 233,1.6869727,40.54467,21.429169,159.87952,2.3054797e-06 233,2.2922885,12.47401,61.251343,117.400635,2.2550132e-06 233,6.9703484,355.6482,78.180954,133.68109,1.7661358e-06 233,455.22653,6.3016667,47.324677,132.00792,1.4414616e-06 233,1.368379,11.558789,16.82936,65.82082,4.781169e-07 233,410.80228,0.0,126.8638,214.76993,2.423168e-07 233,32.956142,11.167917,61.910374,180.65886,1.8576701e-07 233,361.40698,4.686447,43.714264,51.291965,7.924962e-08 233,5.7172804,5.0482993,47.41097,53.063267,2.7668628e-08 233,483.9363,2.0151238,46.55899,53.41606,9.301034e-09 233,387.1004,3.3879867,46.331055,52.254654,1.8812945e-09 234,541.67676,150.96623,45.554443,144.80464,0.4423023 234,547.8477,151.18614,26.894958,51.98825,0.07672686 234,605.4598,107.14195,33.42914,89.492355,0.06999465 234,422.27063,153.60408,43.16153,71.20181,0.04550469 234,585.48566,84.734024,42.328735,151.14967,0.03658628 234,39.281666,215.63252,27.453686,46.964554,0.010192652 234,539.38336,99.64451,43.514282,115.31509,0.0071744886 234,590.4196,153.77313,27.154724,57.46724,0.007013131 234,608.893,50.287395,28.783203,67.61267,0.004997373 234,562.63275,141.79524,25.74701,64.351105,0.004158575 234,620.1859,179.6313,18.960754,62.277924,0.0037264666 234,581.01825,0.0,58.128418,98.60693,0.0016499358 234,503.33237,59.115,125.745636,269.44724,0.0010441665 234,440.07288,45.95197,31.740936,71.020996,0.000942958 234,623.987,141.97131,15.159668,47.68863,0.0009188763 234,1.644782,286.6603,43.888195,169.40762,0.0006510367 234,610.12946,156.16084,29.017212,153.9471,0.00059641304 234,1.5094792,67.86481,14.004947,56.151436,0.00035969543 234,1.0956844,161.28511,18.992956,86.03218,0.0002778983 234,621.15076,32.429173,17.99591,57.83494,0.0002329756 234,272.90573,28.97599,20.466034,47.513344,0.00014726385 234,2.2008219,74.82892,35.39774,196.86014,0.00014261 234,73.40531,38.28036,30.559196,75.64778,0.00014202883 234,611.9213,0.0,27.225342,53.02689,0.000114761875 234,400.9904,183.31389,26.12027,58.124786,4.7994316e-05 234,612.29895,375.03482,26.847717,121.54416,3.462692e-05 234,0.92102706,202.95895,20.917744,149.87408,3.4413588e-05 234,2.6177475,13.801745,57.08295,119.4913,3.204837e-05 234,1.2075912,418.28528,15.892795,83.45526,2.6277334e-05 234,2.6832993,389.20398,55.741154,104.4541,1.200395e-05 234,562.2556,26.929825,45.097717,185.28589,6.931292e-06 234,54.482258,4.396595,77.86594,168.39084,1.590645e-06 234,1.1640763,10.123756,15.727787,85.67032,9.27815e-07 234,257.04224,4.440098,44.72281,55.93808,1.6043526e-07 234,1.1913998,3.1650374,46.0637,46.72561,9.293573e-08 234,201.74973,4.7612844,46.232254,49.137463,4.4259398e-08 234,81.58444,0.0,49.982086,46.667988,3.38372e-08 234,61.666107,1.9382879,44.973305,58.608925,2.555964e-08 234,523.75977,5.142904,45.262085,55.04618,2.1394937e-08 234,561.0735,1.5834669,47.87317,53.05677,7.1883095e-09 234,348.8734,5.236727,44.180847,52.35748,7.4732304e-10 235,455.7376,99.44266,48.062622,103.74689,0.07404272 235,115.60498,45.259045,32.547333,67.00723,0.019834453 235,588.9935,46.708138,37.349243,72.1778,0.008216976 235,598.4838,149.14717,40.338623,97.308,0.0043172305 235,620.4103,242.07079,18.73639,56.154404,0.0027573481 235,0.9257975,169.72386,14.139888,59.90338,0.0024725879 235,611.021,238.065,28.125671,139.97162,0.0016967873 235,623.7993,163.64345,15.347351,52.85544,0.0015427232 235,585.79175,105.9023,51.544983,250.33205,0.0011883562 235,1.0656536,83.68003,13.546391,55.897697,0.0010791201 235,1.3508358,98.327545,19.97255,152.7886,0.0005713566 235,620.4625,202.21342,18.684143,65.77525,0.00046036197 235,37.86092,57.43112,40.675396,93.854034,0.0002915478 235,554.9894,1.4938152,81.014404,125.798485,0.0002746251 235,178.32243,36.562416,24.017227,51.674843,0.00017719682 235,26.731068,73.88332,30.043465,68.0837,0.00017095271 235,589.4103,308.633,48.365234,167.20535,0.00013265514 235,4.2102656,89.136314,59.96463,214.42697,0.00012580442 235,616.75653,15.51152,22.390137,83.73847,0.00011452964 235,1.003549,184.95425,17.987633,132.36728,6.196329e-05 235,609.115,443.58255,30.031677,60.03412,3.726017e-05 235,0.9328353,255.7856,20.20456,136.93913,2.9007302e-05 235,3.1123846,195.75786,57.214615,236.53279,1.670423e-05 235,583.57074,2.7799366,50.776917,56.50681,1.6220556e-05 235,1.0365511,346.26346,19.118876,131.06097,1.4571704e-05 235,0.79879236,420.87662,15.164692,81.00726,1.0351734e-05 235,164.31299,0.0,47.782394,123.13347,2.3924138e-06 235,3.385088,396.85764,56.755295,97.398834,1.9220138e-06 235,14.887292,4.3083725,91.57617,246.39697,1.5505384e-06 235,1.281683,17.447721,20.930822,145.66945,8.3994917e-07 235,1.8771224,8.390957,62.749817,137.39737,3.803267e-07 235,135.56857,1.7372006,114.51172,198.70154,1.5228984e-07 235,1.584611,5.3100653,42.128056,55.197624,3.7570057e-08 235,175.51738,0.0,45.6606,49.549385,1.6870386e-08 235,143.84302,1.5481299,45.516205,53.495102,9.892517e-09 235,29.634,3.2575636,67.16794,53.52736,7.2006054e-09 235,312.56064,4.9047594,43.85681,45.081715,6.5702457e-09 235,553.76764,0.90940434,45.5235,56.36019,2.0758915e-09 236,608.4233,136.2018,27.966553,64.2964,0.026449472 236,375.40268,202.95998,36.73056,80.7903,0.0039523463 236,162.6732,60.65738,27.69664,55.93541,0.0017692564 236,84.78358,90.58612,26.56057,52.950027,0.0011186398 236,598.61566,125.96368,39.407288,212.20898,0.0009984056 236,558.6445,220.31375,35.89435,77.49689,0.00063265034 236,581.45386,1.9041407,57.54895,121.72997,0.00062519277 236,4.981019,48.34844,45.471153,148.60231,0.0005227663 236,64.6278,81.74924,35.25438,75.65512,0.00038781224 236,611.8972,257.24124,27.24945,136.02423,0.00026534268 236,615.7758,169.62143,23.37085,91.68552,0.00022361007 236,145.47565,60.666935,58.024353,183.20876,0.00020220343 236,615.9941,54.027924,23.152588,91.30882,0.0001412788 236,1.8477662,59.3115,21.350939,102.564766,0.00013676797 236,0.97802085,248.1698,18.781559,76.92136,0.00011956175 236,3.86778,110.73699,58.719944,212.93146,0.00011578171 236,490.34482,197.94821,23.71463,50.28029,0.00011334204 236,618.71405,20.991846,20.432617,68.23342,0.0001013777 236,1.5493059,183.69647,19.704288,86.56979,9.807459e-05 236,588.6056,305.0774,50.013306,170.39148,6.2927196e-05 236,442.68964,198.37656,24.188354,50.92502,6.278009e-05 236,85.96414,155.09653,28.974197,57.95836,2.7921917e-05 236,0.7662077,398.0323,18.200897,71.59021,1.23596055e-05 236,2.09903,213.16833,34.555832,166.60178,1.12179205e-05 236,0.6952169,344.17755,13.820021,46.232605,7.2003268e-06 236,0.6649024,371.64856,13.7873955,46.048004,6.2129325e-06 236,42.829338,32.458107,94.51173,218.18079,5.430668e-06 236,599.2002,415.33398,39.946472,83.49768,4.7237927e-06 236,1.0738428,319.3127,28.737316,142.91089,4.334829e-06 236,160.51797,1.4591993,52.55638,136.65813,2.131358e-06 236,1.0117896,443.42288,21.540598,59.64441,1.304564e-06 236,3.0530422,394.87454,56.30033,98.98004,1.1836081e-06 236,1.932544,9.631465,40.49413,93.12439,1.9458413e-07 236,47.43196,5.4401855,41.92121,49.552746,2.412224e-08 236,359.41672,4.2286654,46.40268,52.530724,1.8838735e-08 236,141.9026,1.9535059,46.56018,57.79687,1.1299915e-08 236,335.41544,3.325407,42.95569,48.17169,5.0897655e-09 236,263.21582,0.762264,63.559692,48.98437,4.6374056e-09 236,180.05016,1.9888542,47.577866,56.72529,3.4100358e-09 236,209.20514,3.813636,44.095886,48.484497,1.0576218e-09 237,607.32,199.01619,31.637268,82.46098,0.10968215 237,4.253649,84.40848,58.88549,170.78174,0.022111027 237,413.9286,69.01965,47.911163,164.41846,0.0030149522 237,1.419292,104.68742,20.310282,101.54291,0.0026641996 237,624.50793,238.57852,14.638733,45.165924,0.0011827869 237,28.933971,89.23871,27.747047,52.626587,0.0011347614 237,32.981625,166.44516,52.7208,88.162506,0.0007729038 237,601.5923,213.98428,37.351685,194.96051,0.00068101217 237,255.10735,49.783737,25.92186,57.41326,0.0006258608 237,444.96143,73.156654,42.691254,156.26758,0.000553975 237,367.10712,68.66574,29.370026,65.68019,0.0002871877 237,583.6654,2.84737,54.504883,109.249435,0.0002474826 237,538.4296,70.7759,35.216187,79.52407,0.00018192006 237,1.361145,212.75557,18.285812,72.05821,0.00011981972 237,568.759,116.335266,68.94293,246.74866,0.000119428645 237,616.6317,370.9237,22.514954,82.328125,7.157052e-05 237,615.79706,17.288816,23.34961,77.66957,5.9160197e-05 237,608.72437,441.41544,30.422302,62.144775,2.6567719e-05 237,0.89630294,238.26094,20.442785,139.3975,2.6160664e-05 237,474.80273,56.698433,43.716125,127.33631,2.4058081e-05 237,610.41766,45.5459,28.729004,156.48647,2.3526069e-05 237,2.9039438,195.83455,57.260525,239.21373,1.8326107e-05 237,428.42523,64.33836,115.52478,230.47679,1.56659e-05 237,121.589584,148.5461,37.09674,86.974045,1.488719e-05 237,236.36191,11.3492775,47.75412,119.69679,1.3241407e-05 237,585.34845,393.80682,53.798218,99.85974,1.0469881e-05 237,0.74800944,293.8644,13.767972,47.985718,8.584934e-06 237,0.8612142,403.8263,18.24594,71.37344,8.42753e-06 237,367.5368,0.2879948,122.64679,287.05798,5.974121e-06 237,0.6917013,321.84677,13.898347,47.842834,5.2948185e-06 237,0.9907235,315.14725,20.599163,135.05875,4.905245e-06 237,361.71707,27.949389,48.33557,137.95638,3.9061206e-06 237,89.65179,57.28733,78.316826,212.18488,2.9315763e-06 237,2.9354265,18.184668,59.192104,122.47411,1.7845973e-06 237,1.1238265,443.74298,21.50944,59.297394,1.1134588e-06 237,546.3262,30.588465,21.39862,47.035797,1.107919e-06 237,3.151735,391.5537,56.264896,101.987915,1.0344091e-06 237,0.96558434,12.316316,16.545282,79.6081,6.817165e-08 237,263.5999,5.991677,44.57547,51.613293,1.0488056e-08 237,170.68948,4.2251205,43.90428,51.04054,2.7079994e-09 237,361.6735,3.3845346,46.080627,57.031223,2.5960847e-09 237,208.06898,2.7252312,46.550476,55.255016,1.6844977e-09 237,483.24573,4.9136477,43.55139,46.991966,1.3965454e-09 237,398.10532,1.2526953,48.41391,60.71723,8.076914e-10 237,523.3602,2.9942904,44.470825,56.92178,5.6252314e-10 237,550.7077,3.2531772,44.63208,50.13359,4.1879625e-10 238,555.3389,243.94888,25.59845,45.58246,0.20352818 238,620.684,337.68942,18.462646,51.59726,0.035983764 238,168.2594,73.45151,48.83937,87.312775,0.007180568 238,504.95502,242.02086,24.860535,46.255203,0.0023548708 238,622.36707,185.87355,16.779602,54.056458,0.0021816285 238,502.6047,104.443,37.540314,82.05651,0.0020792745 238,606.3412,123.76728,32.80548,85.00977,0.0014696567 238,609.98773,230.51521,29.158936,161.09297,0.0013476032 238,621.6668,246.29839,17.479858,56.846817,0.00103454 238,599.39636,111.75508,25.23938,53.18782,0.0009866799 238,588.56586,107.23369,48.959106,236.29497,0.00070717337 238,610.6447,337.81964,28.501953,147.52676,0.0003549882 238,387.01816,211.17593,24.567352,53.031555,0.00024046021 238,1.6917586,192.16516,17.711197,68.149414,0.00015915182 238,74.14573,110.28852,42.52295,146.41614,0.00010365974 238,616.4968,76.49082,22.649841,89.05753,5.0328847e-05 238,0.4482125,234.93945,13.707938,52.231323,5.0089766e-05 238,608.51984,442.15033,30.626831,63.021515,3.9917646e-05 238,0.75349367,236.02568,19.57465,136.89632,2.7116897e-05 238,301.07922,85.34339,73.89453,192.0531,2.6980797e-05 238,2.177946,122.52662,36.36164,166.1489,1.3980965e-05 238,218.74303,110.02242,80.05046,174.96017,1.22359925e-05 238,544.7186,169.23972,24.416931,52.618942,1.07390815e-05 238,0.79243535,317.36905,13.57132,46.72223,1.0663662e-05 238,0.7017098,417.8837,13.922327,47.302307,8.205907e-06 238,610.51685,3.7898438,28.629822,115.235306,8.088153e-06 238,1.0620712,332.06314,20.48788,131.4137,8.021813e-06 238,5.234772,144.67953,78.7149,246.8323,7.50467e-06 238,319.59814,127.637726,38.608215,97.68561,6.2049035e-06 238,1.5253109,112.761215,19.050978,80.91759,4.836285e-06 238,1.000953,69.34742,18.586424,76.947044,4.5916095e-06 238,0.85159427,365.27243,13.815128,47.300323,4.279051e-06 238,3.0877378,319.96356,57.15126,162.16791,3.8878507e-06 238,407.6188,14.253399,48.317657,114.217636,1.3827912e-06 238,1.1486531,443.14554,21.355042,59.66443,9.493285e-07 238,49.725693,65.39591,117.30916,224.5657,6.022445e-07 238,0.79047203,42.943954,14.084011,46.864677,3.5036e-07 238,2.4394207,17.257278,57.403732,105.78239,1.7674154e-07 238,1.1855396,10.003084,21.144524,49.98516,1.22577575e-08 238,160.96654,4.806434,44.871017,55.81634,3.91402e-09 238,190.23804,6.243407,43.03116,50.06255,2.7718479e-09 238,419.529,2.4779036,46.919678,55.97858,1.6199592e-09 238,369.4421,6.144159,44.6138,50.01171,1.0105322e-09 238,393.96808,6.102759,46.561523,53.120144,7.251916e-10 238,131.24358,1.7504265,47.630386,60.83969,6.245976e-10 238,442.35132,0.8768636,47.364777,46.290016,2.1905873e-10 238,94.76029,4.516999,43.354393,54.314774,1.5954763e-10 239,274.43692,237.32074,23.667328,48.186676,1.2058424 239,567.31647,103.0357,46.29419,109.755,0.39444458 239,621.1495,98.8038,17.997192,52.7594,0.0556351 239,587.3562,100.96674,49.73242,164.12943,0.034034986 239,596.01855,104.419785,28.991821,66.99806,0.029134171 239,447.19794,207.69981,26.535522,59.01381,0.0061005126 239,429.8186,159.74994,49.00244,114.84128,0.0028138652 239,621.20795,60.183178,17.93872,62.03387,0.0025299694 239,612.73004,270.7453,26.23767,106.56714,0.0019152245 239,618.0489,123.40945,21.097778,80.21197,0.0015710691 239,594.3127,296.4209,32.142883,74.56964,0.0013970764 239,599.8441,56.196316,36.50006,94.10942,0.0011343784 239,533.9715,28.556381,101.593994,307.92938,0.00070646557 239,583.88306,205.97247,53.55597,238.33029,0.00053990923 239,620.2913,209.13124,18.855347,57.804092,0.00053507957 239,609.39734,176.24144,29.749329,146.91377,0.00042215246 239,0.9191724,229.31036,18.20367,76.782776,0.0002381461 239,368.26205,196.9485,24.802734,57.49669,0.00019656896 239,408.1757,99.92131,103.48593,210.4489,0.00018523584 239,1.2903906,257.8831,33.962914,181.21167,0.0001566009 239,378.29953,58.65519,29.03012,60.447495,0.00012640575 239,604.4449,1.4846323,34.701782,69.03471,0.00012389538 239,616.31433,382.724,22.832336,86.17355,0.0001199114 239,2.172247,164.29509,29.495214,130.48256,9.917504e-05 239,1.0590552,348.10135,19.821531,122.381775,5.3615462e-05 239,608.44574,439.93234,30.700928,64.199646,3.81089e-05 239,218.0891,97.89873,25.270264,51.364273,1.639477e-05 239,4.3086557,354.9357,78.97946,132.13373,3.7100817e-06 239,0.75570315,418.00162,16.441996,83.4899,1.7552417e-06 239,1.291648,60.42061,20.789959,171.24275,1.6129446e-06 239,393.51932,423.78882,71.14215,73.95599,1.3382598e-06 239,3.721011,69.42085,57.83232,229.29875,1.323557e-06 239,317.14136,424.8218,79.06586,74.93622,8.012023e-07 239,2.09208,15.166231,58.124496,111.35321,4.4674158e-07 239,1.3492244,39.778156,19.748693,79.45456,3.4860156e-07 239,1.3429118,5.935267,32.709396,67.75479,2.2410585e-08 239,65.22095,3.5909326,45.60132,46.453968,3.8993857e-09 240,124.485756,205.19841,23.985847,45.494675,0.035150494 240,366.28705,227.44298,24.855316,53.05797,0.013331001 240,547.953,158.11942,35.45392,88.13057,0.012703312 240,144.11264,196.3471,31.987518,69.87308,0.008844137 240,622.1027,158.51604,17.043945,58.229416,0.0029532774 240,525.3029,147.77641,41.257812,132.84673,0.0014947873 240,612.3185,164.67941,26.828186,137.52945,0.0014669764 240,531.876,104.838974,103.83777,232.88881,0.00086189795 240,617.6033,374.5843,21.543396,86.07904,0.0008012559 240,620.4463,41.443245,18.700378,62.48091,0.0006620348 240,621.3685,201.03534,17.778137,56.60919,0.00064026646 240,1.3567026,202.31155,18.291937,74.92178,0.00056055846 240,610.73645,292.51572,28.410217,141.23569,0.00047509908 240,531.3679,198.70169,26.019531,60.543243,0.0003764596 240,560.1865,146.9905,48.41339,133.18379,0.00031978503 240,475.32663,50.44478,28.304108,56.19197,0.000318579 240,0.692959,252.81374,18.849901,82.683945,0.00016313822 240,585.1619,378.5044,53.449524,115.00644,0.000120163815 240,1.3426498,209.26338,33.88157,184.18169,0.00011515688 240,611.2607,53.461334,27.885986,172.5837,0.00010050595 240,608.261,436.2365,30.885681,71.75574,7.400505e-05 240,0.88537765,299.1658,18.459988,146.93878,5.040618e-05 240,584.82184,8.492031,53.934143,119.09537,3.6619105e-05 240,1.1440634,156.47916,13.864938,49.265884,2.4290699e-05 240,0.78695965,417.30603,15.57372,84.7319,1.8185954e-05 240,0.79755294,56.354195,14.664394,55.007576,1.7646786e-05 240,2.578991,288.0936,58.442207,189.02005,1.7323795e-05 240,344.91412,117.08289,69.93985,185.16946,1.701038e-05 240,1.4215674,84.16406,36.08659,206.25113,1.2170668e-05 240,1.0706934,94.756966,18.863644,80.78654,5.866713e-06 240,2.8677475,429.39035,53.38349,69.87326,4.244731e-06 240,420.73782,37.700123,26.104645,56.48177,1.5582051e-06 240,3.5114193,92.45556,82.483635,278.53427,1.5014293e-06 240,540.84045,420.7764,78.75043,77.82941,6.9570905e-07 240,255.6718,425.15778,74.213394,75.10062,6.2062736e-07 240,482.92245,30.388191,38.73465,92.6059,4.3313557e-07 240,1.6584668,13.516048,58.98635,120.33678,3.328944e-07 240,457.0632,18.299969,49.767212,148.41678,2.8277917e-08 240,1.1845182,5.6322722,21.177841,58.77944,4.8842876e-09 240,448.98636,4.884953,44.055786,53.370354,4.017688e-10 240,490.61282,2.491429,44.03842,54.819744,1.7461822e-10 241,273.33072,134.91203,49.61972,130.1226,12.374189 241,107.526436,241.34415,25.152626,51.00464,0.85679495 241,9.613369,185.40953,44.19279,87.74196,0.0389218 241,496.30542,322.13422,42.269165,78.22363,0.007842876 241,14.395316,222.84047,22.674557,46.439194,0.0065291757 241,518.8767,317.98758,27.508728,52.065002,0.004536039 241,30.701714,224.38081,24.188145,45.587357,0.0028412726 241,4.2986083,70.84804,58.43575,250.55428,0.0018618177 241,11.234535,61.239037,26.497623,63.49904,0.0017390253 241,1.9497348,200.22089,18.082605,73.49344,0.0014590991 241,285.9645,171.71765,27.17163,67.196945,0.00045960615 241,620.6149,152.96594,18.531738,64.87912,0.00026940968 241,611.0695,180.98952,28.077148,137.4597,0.00019439969 241,616.84546,372.8219,22.301208,84.469055,0.00016843046 241,603.00385,248.44681,36.142822,185.81757,0.00013950534 241,617.0936,85.093864,22.05304,76.16326,0.00012662026 241,2.3653908,7.4351306,59.650555,130.78236,9.304619e-05 241,567.0681,114.705315,69.86859,191.67938,7.332628e-05 241,1.4012859,61.31596,21.001272,102.27969,6.8041416e-05 241,609.5448,440.01517,29.601868,60.443176,5.176655e-05 241,0.91618,335.54047,17.649845,136.04105,4.9388025e-05 241,2.2840545,188.22365,33.66487,180.5764,4.2427564e-05 241,409.4773,255.01437,85.45151,167.11356,3.363731e-05 241,0.63326174,255.54454,18.51959,83.62923,2.0182262e-05 241,0.8162435,421.05014,14.583652,81.94342,1.8710773e-05 241,3.2701466,295.0115,58.755646,186.50198,1.8653831e-05 241,585.9765,394.92648,52.890198,96.24817,1.827856e-05 241,609.4706,4.514974,29.676086,109.88311,1.7561197e-05 241,1.5127987,129.20403,18.431213,89.7771,5.3723966e-06 241,2.3778808,430.14423,45.590294,69.673645,5.1666825e-06 241,233.74875,96.8295,133.38547,234.3386,2.8390027e-06 241,77.18867,28.342592,82.71241,248.60764,6.485674e-07 241,1.5159155,6.2062016,24.539808,66.00916,3.2687743e-07 241,551.8685,20.416527,39.31317,68.05314,2.2059197e-07 241,402.82785,4.4337826,79.389404,173.62141,6.869742e-08 241,28.322924,0.0,90.97014,199.68303,4.648477e-08 241,426.96582,1.8896241,43.5459,49.127926,1.2885527e-08 241,24.83092,3.1557944,46.129677,57.252605,1.0893793e-08 241,525.5644,1.9775488,43.815002,55.797672,2.6312394e-09 241,73.2721,1.7157488,45.585182,57.083015,2.596778e-09 241,403.03705,0.6692253,44.220978,52.21124,1.8910147e-09 242,380.77255,216.89398,34.917664,74.38577,0.24737124 242,271.74207,277.73947,22.730072,48.505096,0.072852895 242,524.18756,81.06834,99.24286,230.89542,0.06471231 242,224.41722,212.961,28.865799,51.34433,0.011371568 242,442.70236,207.54192,23.290771,46.31932,0.0073338086 242,617.07385,65.61905,22.072815,69.11575,0.007015458 242,622.54114,272.8563,16.60553,50.1669,0.0038613572 242,588.42773,123.328285,49.875366,181.86877,0.0037127568 242,619.9493,167.8718,19.197388,60.896545,0.0033540644 242,622.62537,361.99948,16.521301,53.70923,0.002142573 242,536.82007,93.82009,32.68506,66.874916,0.0020791476 242,611.33405,268.6919,27.73767,136.89044,0.0015395574 242,560.3231,143.82103,21.622925,56.478394,0.0006175497 242,364.93942,171.16982,68.79608,166.72426,0.0006109292 242,616.32733,381.2141,22.819336,88.37143,0.0005109249 242,490.59308,212.64629,29.510498,48.20308,0.00034300002 242,585.70404,327.7859,52.045044,150.2489,0.00027080326 242,0.49772382,98.670456,19.329538,81.532166,0.00026065833 242,615.314,191.6723,23.832642,92.39282,0.00017900387 242,605.5718,431.00183,33.57489,78.27615,0.0001764604 242,554.8518,170.40942,20.221619,49.250687,0.00012920928 242,585.51324,22.188871,53.539795,112.43086,8.803894e-05 242,567.6249,170.67453,19.067078,49.627533,7.6877885e-05 242,0.7616553,215.31169,18.421724,78.03276,4.138004e-05 242,1.1528907,78.24273,33.201942,193.4567,3.6126683e-05 242,1.3123275,341.48798,17.961239,137.19708,3.134146e-05 242,1.810302,199.78935,32.038635,176.45601,2.9028884e-05 242,3.2476416,315.99838,57.41477,166.17465,2.5618147e-05 242,0.5201034,143.64265,18.410593,78.47691,1.8014684e-05 242,1.4071876,263.11264,18.12644,72.31357,1.6003443e-05 242,1.0960612,439.90756,20.855825,61.862335,1.4337023e-05 242,609.5472,5.000778,29.599487,61.38822,8.0158325e-06 242,4.2994466,33.48073,81.20849,264.14923,1.2548502e-06 242,488.78433,385.54974,128.5621,107.5708,8.6041763e-07 242,1.588615,32.13005,30.043182,109.34552,5.5098764e-07 242,527.5893,438.07812,42.35919,65.811005,2.65641e-07 242,468.71948,422.54047,72.569824,76.51996,2.0248605e-07 242,234.61652,4.6926236,79.40329,178.234,7.351751e-08 242,217.94975,0.9991406,43.304337,59.670315,3.1956513e-09 242,115.32477,4.114634,43.176437,47.562267,2.2656932e-09 242,254.955,3.568755,45.02861,53.828068,1.1499859e-09 242,0.8962191,9.549756,18.930191,52.100636,2.5389746e-10 243,469.03912,220.08047,40.89377,90.433044,0.36720872 243,514.6285,306.23257,38.260376,76.147675,0.042380814 243,443.4436,163.26805,76.65796,186.15431,0.005330323 243,617.52527,202.70432,21.621399,81.56937,0.0014574162 243,469.8601,77.16461,38.94742,110.72925,0.0007453325 243,337.03485,204.8082,26.409393,50.199783,0.00048498076 243,585.0707,332.53326,53.332397,156.41238,0.00047718285 243,444.9884,306.24057,27.628479,63.49759,0.00040312397 243,611.498,259.55704,27.648682,174.42755,0.00021345328 243,617.0552,58.87273,22.091492,72.143326,0.00018864122 243,607.9065,435.7235,31.240173,75.42316,0.00015652282 243,453.0574,376.83322,140.28165,111.06409,0.00015145587 243,470.29474,150.1076,36.985107,108.79666,0.00014844094 243,448.50418,69.93296,43.337708,189.04202,0.00011910427 243,0.70648766,146.34087,18.14794,77.11633,0.0001187982 243,446.08762,252.85538,86.55325,211.70837,0.00011267471 243,0.53180015,83.648254,18.50114,80.032715,8.2920305e-05 243,585.8141,139.99567,53.080994,261.4212,7.823934e-05 243,602.86566,112.01568,34.75299,142.96167,6.450283e-05 243,0.7220736,193.41504,17.98056,75.933014,3.9441944e-05 243,607.6031,5.1281967,31.4906,52.65334,3.244112e-05 243,584.7442,10.556472,53.32483,116.910675,3.0047457e-05 243,1.4400513,105.94958,30.966434,176.08234,2.599538e-05 243,541.0574,415.35974,85.329285,85.7276,2.4616107e-05 243,0.7605916,235.13084,17.72127,135.98668,2.359856e-05 243,432.58185,420.7974,73.22061,73.65625,1.0495273e-05 243,1.0777947,330.69086,17.690737,133.03708,9.8224955e-06 243,484.4842,431.40836,43.91748,67.73624,8.826284e-06 243,520.8683,432.6337,51.017883,68.55975,7.5463818e-06 243,3.8443131,187.89958,56.968605,229.44194,6.0818265e-06 243,1.1813956,418.94412,15.580932,81.85806,5.1463626e-06 243,3.0439665,393.8798,56.42546,98.5061,2.8111292e-06 243,438.8948,0.0,126.977936,299.85367,2.6124358e-06 243,0.8119271,41.317413,18.787071,72.87777,8.33931e-07 243,1.5366668,32.11304,33.616943,145.84361,7.010586e-07 243,578.7307,3.308916,43.82428,48.602737,3.3369406e-07 243,368.81354,2.540537,43.87964,52.144398,3.685843e-08 243,393.0396,3.6037648,45.04187,52.083073,1.6338992e-08 243,524.13635,3.3918052,43.57184,47.921246,5.472073e-09 243,448.67755,3.1197202,46.11313,54.876324,1.9063262e-09 244,514.34827,334.71765,36.984924,53.42163,0.042335875 244,538.0617,216.94247,25.525513,49.25946,0.014753176 244,344.27774,219.8608,37.93808,56.863266,0.0032597836 244,621.1844,123.36696,17.96228,57.715332,0.0008358903 244,617.9754,226.48215,21.171265,77.11572,0.0006228117 244,0.57689416,131.42609,13.630429,54.852997,0.00047792756 244,0.6626205,178.4825,13.271465,51.757812,0.0003324293 244,606.12024,431.71658,33.02643,75.204834,0.00023315876 244,0.8308708,84.46476,18.998003,141.83755,0.00019072986 244,617.8521,285.46765,21.294556,83.90961,0.00017030035 244,609.95306,43.05567,29.193604,157.14127,9.027958e-05 244,203.57675,419.27994,80.57858,77.087524,8.0784994e-05 244,615.9034,12.257562,23.243286,77.01739,7.428486e-05 244,601.9389,207.268,37.207764,181.61975,7.21117e-05 244,0.61223555,63.342247,13.65576,50.403305,6.738185e-05 244,584.3168,9.80904,53.368958,109.465866,6.671412e-05 244,0.77182865,172.47997,18.959915,137.30128,6.604367e-05 244,617.3995,371.75174,21.747192,88.04764,6.1297724e-05 244,524.2701,292.9221,46.829224,119.83963,4.862071e-05 244,585.96106,62.58465,52.495728,262.97034,3.9880506e-05 244,587.1949,304.33557,51.634033,185.45349,3.930515e-05 244,0.89945966,276.88382,17.32366,132.31696,1.3600713e-05 244,553.5607,421.0409,80.48065,78.86151,1.2408193e-05 244,3.5560482,119.10325,58.020294,220.90161,9.1583315e-06 244,0.9092237,370.03668,16.547903,129.20639,6.6065722e-06 244,459.16162,384.2557,112.36853,111.837494,2.6859461e-06 244,3.3684719,262.96268,57.37912,204.6354,2.5993984e-06 244,152.88422,425.5794,86.20909,76.06961,1.6078272e-06 244,2.1881902,430.4372,45.099003,68.926605,1.3421965e-06 244,442.87866,9.784258,58.882812,134.46967,1.1108411e-06 244,522.15186,452.45502,40.52112,54.38614,9.740402e-07 244,486.2469,439.9787,42.985718,63.16971,7.000537e-07 244,111.68762,427.6725,76.37738,75.5108,5.698392e-07 244,1.1075912,22.326614,28.8922,140.8625,2.0401265e-07 244,0.64132124,12.09931,10.620644,80.367874,1.8904542e-07 244,421.9175,5.3596616,123.049286,224.6432,1.6324321e-08 244,570.88336,3.1257162,44.62152,52.00328,1.3795863e-08 244,1.1523112,8.914733,29.113266,57.836235,9.59531e-09 244,339.35,5.034579,43.733063,45.994377,9.3574055e-09 244,264.7369,4.9287744,43.348846,46.72483,6.107439e-09 244,545.5709,2.6225326,42.476257,51.11506,5.347648e-09 244,311.7277,3.6737893,45.05725,48.156086,3.935227e-09 244,455.09262,2.1925457,45.19928,53.73023,3.0798353e-09 244,190.36023,2.5577605,41.838654,46.69153,6.181114e-10 245,622.7731,226.61751,16.373596,46.13936,0.008065646 245,375.98633,96.585884,22.772003,51.198906,0.0060525793 245,384.71323,224.62738,34.87262,60.619904,0.0026634578 245,611.3327,160.13553,27.813965,131.54959,0.001438068 245,610.42957,374.04056,28.717102,134.39923,0.0006003941 245,402.59918,244.39842,27.704712,52.103134,0.000586758 245,346.2732,95.61998,25.28653,53.7191,0.00045087398 245,617.59576,242.8305,21.550903,86.15579,0.00044877967 245,0.60705,95.98008,13.75495,55.37066,0.00043662215 245,620.57196,147.62755,18.574707,60.150436,0.00043662052 245,434.59253,155.9973,24.9841,57.034607,0.00031355204 245,621.2407,93.55038,17.905945,52.61451,0.00029043332 245,0.80405194,130.6469,18.149855,76.837006,0.00027656055 245,588.09094,237.14651,50.257202,251.32303,0.00016550701 245,0.87080973,327.70273,16.914438,145.32166,0.000118113734 245,499.72928,260.16287,121.8176,218.48834,0.00010586647 245,0.67718345,172.59334,18.229841,78.25592,6.410128e-05 245,616.001,34.370567,23.14569,90.23157,5.6432316e-05 245,1.1900896,95.93297,31.781193,181.033,4.0313873e-05 245,0.6862004,234.25548,18.057507,76.73952,3.3863325e-05 245,585.5937,52.8118,52.389343,249.94101,3.3832206e-05 245,608.6403,1.4286394,30.28479,60.38528,3.045533e-05 245,589.66223,444.48526,43.090088,65.3432,2.9545476e-05 245,2.9670784,343.85825,57.52562,142.38553,1.8166158e-05 245,1.3478955,418.13156,33.87459,77.60501,1.3677823e-05 245,1.1486369,251.27397,30.147131,181.13066,1.0334195e-05 245,518.7808,408.36325,88.96271,93.65396,7.144716e-06 245,3.4540186,140.94482,58.219486,236.01749,5.139506e-06 245,531.1782,3.654642,46.80359,131.16179,4.198753e-06 245,290.1147,429.93658,73.23309,70.331665,4.1851445e-06 245,541.6186,443.9172,41.462402,61.899536,2.8817753e-06 245,0.6288216,42.489967,14.119764,55.958977,2.2803765e-06 245,132.59349,423.32886,74.36418,72.79382,2.2557101e-06 245,181.76973,427.05453,78.33574,69.92709,2.0700193e-06 245,8.987904,428.03583,81.293625,69.97095,1.7073237e-06 245,507.17615,435.02765,42.91211,63.770294,1.1818304e-06 245,507.1897,0.0,131.95697,258.61102,1.1183264e-06 245,0.84682703,22.001114,19.965498,140.78896,1.0189685e-06 245,72.01557,426.92657,74.087395,73.302704,6.0727825e-07 245,2.7258627,18.024258,81.731224,156.66917,5.480631e-08 245,366.03876,4.501045,63.779175,45.09034,1.1907894e-08 245,408.9204,5.6839094,42.972412,46.087322,1.1838551e-08 245,0.60382813,5.7854557,20.855843,61.68696,8.634383e-09 245,543.6927,1.9067042,47.286255,49.560177,5.3679736e-09 245,504.2349,0.6940755,66.752106,55.662395,4.0103787e-09 246,446.41455,272.19296,29.383698,64.35913,0.021766374 246,398.2315,265.63187,37.09375,87.020874,0.0069474843 246,622.8599,249.70662,16.286743,48.572983,0.0047532013 246,591.7819,401.20718,47.05481,109.93948,0.0039877864 246,431.88516,214.19844,47.733337,135.98558,0.003244222 246,591.2176,218.3068,30.106262,53.290436,0.0014196399 246,618.3034,417.5786,20.843262,62.760498,0.0013598069 246,525.07324,245.80913,46.539124,164.01933,0.0011916849 246,621.5692,99.195145,17.577454,54.24901,0.00086132606 246,617.8354,228.30443,20.285217,46.2726,0.00081148755 246,619.02814,363.0999,20.11853,63.323975,0.00077244174 246,585.86554,148.10959,51.926453,266.96494,0.0004339555 246,586.5721,97.29316,35.345764,71.85429,0.00041760248 246,462.83386,293.29376,23.247284,49.18921,0.00040458294 246,607.43567,89.241356,31.559998,169.50967,0.00035272416 246,415.0493,236.0235,37.7424,71.272125,0.00027556167 246,608.9126,305.9872,30.23407,156.39566,0.0002746081 246,611.1246,226.47021,28.022095,146.86658,0.00024385913 246,495.43408,249.77281,117.16046,221.47023,0.00018543856 246,442.63242,174.42677,37.97165,92.90663,0.0001723249 246,470.6499,221.80177,84.35852,161.52193,0.00015720662 246,0.7457691,68.93993,18.551819,78.15972,0.00015539333 246,0.80547935,219.75685,17.90818,80.03981,0.00014945542 246,412.21478,202.03941,109.77142,213.52034,8.9924186e-05 246,0.693501,135.07385,20.637154,115.25578,8.84978e-05 246,564.63995,428.7012,53.826782,79.62692,7.928081e-05 246,583.4292,1.7830144,55.307617,132.2728,7.2477254e-05 246,0.7383561,420.0198,13.592615,84.7536,4.351795e-05 246,2.310446,431.74445,46.45674,71.38089,3.117512e-05 246,1.5217,161.35574,30.9726,175.09009,2.967243e-05 246,547.6706,96.37482,45.551514,177.39374,2.80157e-05 246,514.495,403.5858,80.383606,90.6109,2.6912337e-05 246,608.25714,3.1232097,30.889526,57.48925,2.3813425e-05 246,0.78387046,274.7798,17.375284,136.05081,1.6313481e-05 246,538.2217,64.831154,38.305725,90.97788,9.473753e-06 246,5.192168,366.14633,78.37838,127.27182,4.7150797e-06 246,3.2162533,194.54028,58.096367,228.8439,4.5075262e-06 246,536.3108,442.44904,41.856995,60.20117,2.5035101e-06 246,1.9233513,25.431055,58.159435,104.93342,1.5298165e-06 246,0.6023873,14.2711525,11.722165,83.98587,5.7935296e-07 246,475.755,16.418398,40.581726,80.24762,5.635732e-07 246,393.47037,14.887038,77.3587,151.96484,4.4798486e-07 246,387.68854,3.8958433,46.385406,58.360714,1.8620003e-08 246,1.1335694,10.211457,29.06651,55.62388,1.4377862e-08 246,414.49686,2.7817645,45.060394,52.492924,1.3770407e-09 246,358.43552,4.197739,46.148926,51.321697,7.027564e-10 246,457.38583,2.7025018,44.388397,53.16318,5.8436167e-10 246,333.35962,2.1574252,44.73474,49.73748,2.4122709e-11 247,572.4952,348.22363,65.135864,148.14139,21.843103 247,586.7377,200.91202,48.934814,151.81906,0.1284541 247,613.7942,324.94626,21.027283,52.677094,0.057421643 247,599.8343,285.34,38.47119,152.38449,0.051024795 247,618.2501,269.00995,20.896545,69.8963,0.021625808 247,612.9097,371.23984,26.236938,86.045685,0.018353764 247,575.5085,161.48253,31.107544,85.832214,0.007665639 247,619.2371,425.04318,19.909546,71.08652,0.0055905497 247,607.6386,303.00208,21.837158,54.868378,0.0027356609 247,618.7072,212.03835,20.439453,61.024307,0.00226942 247,562.5947,126.151146,60.317627,195.36572,0.0018283654 247,455.9657,250.61206,36.919952,64.69086,0.0009998558 247,553.6262,34.316486,38.60559,116.254074,0.00092738675 247,1.039292,77.95974,18.274052,81.47329,0.0005630542 247,608.1484,124.14193,30.998291,168.05109,0.0005498968 247,483.5944,63.2404,37.831207,95.34683,0.00030152223 247,0.8799968,111.5631,19.423912,142.00845,0.00013414375 247,526.7341,1.6489258,51.821777,138.1985,9.4172356e-05 247,3.603231,79.45627,59.38352,234.20572,6.6945024e-05 247,0.91867274,313.97226,16.880154,135.874,4.8858794e-05 247,584.436,11.350951,53.76465,109.66202,4.6054243e-05 247,609.96405,3.5086427,29.182617,56.81676,4.1855117e-05 247,0.8111784,223.93024,19.905874,107.684784,3.401542e-05 247,514.5455,0.0,119.8587,221.49881,9.429136e-06 247,475.9973,104.173195,27.188263,61.44552,8.278994e-06 247,5.1304493,360.3732,79.37832,122.55264,7.599768e-06 247,0.74527997,418.12143,15.962131,82.76666,7.264874e-06 247,1.2970964,15.190651,60.991882,120.07203,1.9387517e-06 247,0.9182361,11.320199,11.454688,85.89319,2.2835525e-07 247,448.7545,0.0,85.17117,233.62668,4.4218726e-08 247,1.555988,7.0538607,31.109253,64.11694,6.716812e-09 247,510.046,0.20434083,45.816864,53.213623,1.3411195e-09 248,589.1907,187.96216,28.288818,76.80954,3.7363431 248,602.76355,176.7892,33.14862,83.38237,0.021118548 248,578.8635,79.8513,56.864502,239.15367,0.013909111 248,624.7584,207.32393,14.388245,46.39186,0.009493708 248,544.7129,273.0298,20.972168,47.775024,0.0045891125 248,591.96356,242.89526,26.548645,64.675415,0.0031007323 248,461.4461,205.91743,46.075195,89.120895,0.002085017 248,623.3172,179.18314,15.829468,46.761993,0.002040815 248,617.68176,221.38084,21.464905,82.1902,0.001472047 248,519.8939,258.71536,48.772827,150.36038,0.0013428244 248,584.0927,288.43445,53.517456,193.50974,0.0010236271 248,579.2866,39.45352,31.835266,70.455986,0.0010208857 248,600.96844,220.0912,37.652283,169.3571,0.00046954706 248,615.3044,381.5419,23.842285,87.80112,0.0004344557 248,0.9805819,130.19176,17.931004,78.60939,0.00036496593 248,432.92203,170.88911,83.040436,174.09502,0.0002685967 248,607.7814,436.6241,31.365295,71.32855,0.00016573936 248,606.02686,1.8283008,33.050903,128.18294,6.579347e-05 248,0.6123218,66.81542,18.277317,83.09554,6.4000495e-05 248,580.1395,91.11876,37.52478,96.639786,5.8342182e-05 248,0.6789811,178.25273,20.049591,109.984634,3.952927e-05 248,1.2758017,95.01211,32.34608,171.05655,3.8752358e-05 248,557.64136,45.980534,24.821594,57.031773,3.0263374e-05 248,0.7506987,419.59653,13.630588,84.12863,2.8488437e-05 248,610.6718,58.74388,28.474854,171.8879,2.635941e-05 248,0.8666317,328.2809,17.037872,134.13687,1.804911e-05 248,0.6610759,253.79384,17.851946,131.76231,1.50149735e-05 248,2.3635206,430.8815,46.05926,71.3956,9.530681e-06 248,3.2918377,131.63374,57.98758,230.52211,5.607717e-06 248,499.6495,425.75797,83.132904,73.96747,4.4492117e-06 248,5.0686197,362.91174,78.64102,127.65671,3.5008964e-06 248,584.2325,1.2903434,46.042114,53.88655,6.8661564e-07 248,0.5331808,9.666605,10.580024,87.66965,5.1262738e-08 248,1.4171631,14.216446,57.19489,128.016,2.966701e-08 248,538.58746,4.534479,43.481873,50.213272,2.6794936e-10 248,512.37054,4.6775117,42.36841,49.698067,5.6419595e-11 249,612.04504,245.84189,26.849304,63.174774,0.026080167 249,581.28204,381.26105,55.18219,119.215485,0.004785548 249,572.78564,145.16704,63.050354,170.65413,0.0036703048 249,470.836,133.33165,39.406677,101.84483,0.003147939 249,625.0176,198.50983,14.129089,47.48755,0.0020052996 249,525.9367,245.5085,23.112915,50.04637,0.0012477837 249,606.90106,173.1022,32.245605,98.73721,0.0009229753 249,615.13776,371.09497,24.008911,95.359924,0.00067920843 249,539.7859,335.06964,43.374878,105.39923,0.00039844768 249,602.6658,239.5436,36.480896,186.51888,0.0002626456 249,515.9774,299.43475,118.83124,185.83865,0.0002299697 249,622.5972,103.74818,16.549438,51.637794,0.0002065864 249,453.44272,85.04904,77.92972,186.38522,0.000104166334 249,0.7475505,90.31425,18.192678,78.273766,0.000102021884 249,551.71655,260.1709,22.84253,48.139465,9.7893135e-05 249,607.33905,7.037905,31.179443,52.22134,9.246246e-05 249,617.129,136.53209,22.01764,86.715,7.273837e-05 249,0.760328,208.07483,18.14451,77.72443,5.213535e-05 249,0.7180335,276.70245,13.22765,51.769165,4.8885733e-05 249,537.6448,255.55438,23.566223,52.634277,4.1692183e-05 249,0.92052007,241.27292,18.41192,132.02682,3.2020507e-05 249,575.84283,447.94647,43.99414,61.622925,2.7438324e-05 249,579.2179,172.45744,24.054138,53.26248,2.6943822e-05 249,0.8687614,331.87662,15.37867,137.9284,2.5163792e-05 249,617.5544,46.800808,21.592285,82.2301,1.9508969e-05 249,0.77339196,420.93356,13.069038,81.473755,1.896516e-05 249,585.1234,17.271881,53.35376,93.52458,1.3798606e-05 249,3.1672332,396.07278,57.5235,97.33774,1.3587308e-05 249,1.1587029,113.21258,31.684216,187.94434,1.1490135e-05 249,601.7592,29.95228,37.38745,219.10527,6.97825e-06 249,3.5569923,208.05579,57.858192,227.43872,6.5104764e-06 249,532.71497,415.13943,81.98157,87.89252,8.2604254e-07 249,489.07455,423.52487,83.1409,75.99899,6.1784004e-07 249,579.52893,7.185308,42.26465,46.783936,2.844411e-07 249,0.9234001,19.52154,21.203075,95.75385,1.7986757e-07 249,2.2725685,36.35425,60.93011,200.30818,1.3602882e-07 249,1.3167839,5.3930144,38.055504,46.38316,8.062388e-09 249,366.56036,5.59375,43.15439,47.926617,3.5427986e-10 249,510.59338,3.380254,42.4469,47.513866,3.1067077e-10 249,339.07153,4.107414,43.362213,46.438538,1.6826919e-10 250,489.28146,224.36691,34.232452,67.62463,0.006710888 250,623.1644,247.21689,15.982239,50.756104,0.0034950685 250,516.7316,64.28919,29.380615,69.329506,0.00260246 250,609.0166,148.74089,29.882996,150.52254,0.001524404 250,517.7675,96.30352,38.772156,108.73333,0.00073133426 250,617.413,399.79633,21.733643,82.31561,0.00037353355 250,588.1844,213.00882,49.26422,253.25781,0.0002622051 250,617.6529,264.652,21.493774,82.85193,0.00019377294 250,616.64764,22.101358,22.499023,69.99543,0.00015124888 250,502.96558,83.67224,74.062744,230.35294,0.00011436549 250,0.96427083,252.99086,18.057362,78.16341,9.812559e-05 250,617.3299,124.06598,21.816772,88.98741,9.770594e-05 250,579.99646,423.52618,59.02289,77.40018,5.586525e-05 250,617.76154,83.59501,21.385132,78.63412,2.8444563e-05 250,0.88308436,316.10684,15.809411,139.0881,1.8467797e-05 250,0.7619365,140.93312,13.238658,46.81343,1.3477728e-05 250,0.8130343,420.8218,13.014727,81.34247,1.1336663e-05 250,3.1066408,260.98065,58.99314,208.30457,1.0092821e-05 250,0.6775334,196.8669,18.254305,74.59932,9.736785e-06 250,1.3604485,223.04222,31.376596,168.72823,7.150401e-06 250,0.751753,80.79048,18.25869,70.90869,5.89354e-06 250,511.30392,7.947982,47.712067,157.21106,3.1010486e-06 250,2.422583,433.30078,45.276463,66.900635,2.461488e-06 250,1.2839909,84.913956,32.09926,176.32109,1.4190027e-06 250,585.7337,6.5983987,53.36212,247.289,9.305479e-07 250,4.4847493,52.968414,80.9481,279.5055,2.6973728e-07 250,0.7764754,22.283833,20.998192,95.26758,6.630096e-08 250,514.8327,1.868737,47.51758,53.081173,1.8900088e-09 250,471.6722,4.645425,41.092255,49.628235,1.7080963e-09 251,613.1363,233.9264,26.010376,47.983353,0.0202373 251,620.00824,423.6661,19.138428,64.447235,0.0019197136 251,584.7641,394.7348,54.37738,106.898224,0.0010789463 251,392.80893,50.124325,23.390533,51.854496,0.0009009088 251,601.7691,159.06503,36.494568,163.24527,0.00054721045 251,1.1719133,67.74187,18.156588,77.85237,0.00030228175 251,601.4513,239.34233,37.695374,227.94496,0.00020800758 251,618.3345,256.6166,20.812195,85.69757,0.00018711039 251,0.7264962,129.42421,13.357725,48.597916,0.0001602322 251,614.29236,90.50239,24.85431,87.61071,0.00015475594 251,617.7076,317.88467,21.439087,90.96741,7.5227625e-05 251,1.0837777,101.29115,18.584465,133.32585,5.552537e-05 251,584.7783,14.2638445,53.615906,108.812325,4.4279714e-05 251,588.07764,84.659584,36.893127,69.348,4.363215e-05 251,559.5758,437.21408,43.175415,65.30188,3.457287e-05 251,0.7262207,237.15288,17.969078,75.03511,1.5618702e-05 251,503.016,428.50256,88.71179,71.872955,1.5006613e-05 251,0.90847087,319.43597,16.462831,134.28009,1.3274457e-05 251,0.7226791,190.50757,18.244892,70.67743,1.2355162e-05 251,608.35864,2.4869108,30.788025,58.129536,1.1207974e-05 251,0.75541425,417.8073,12.739623,84.383545,7.8017165e-06 251,3.8323698,101.708046,58.0191,229.41599,4.4182857e-06 251,446.80127,423.313,85.64819,75.35019,4.20652e-06 251,1.2854867,239.56802,30.506556,167.21887,3.643656e-06 251,3.4347756,304.44064,59.349846,173.84634,3.405842e-06 251,1.9922153,35.58296,32.705704,143.00815,1.5067309e-06 251,2.261963,432.95923,45.47615,68.22229,1.2126984e-06 251,386.21213,429.5362,78.927734,70.815125,7.8179204e-07 251,168.078,430.82788,84.944214,70.31302,6.188154e-07 251,227.89552,431.9996,74.49312,69.56619,6.1526e-07 251,86.96382,429.18777,71.432144,69.736725,5.210928e-07 251,332.84662,432.97736,74.27695,68.18579,4.6929514e-07 251,277.1731,434.25726,73.19589,67.714325,3.3886755e-07 251,1.1377083,11.506413,24.317919,77.78615,2.8825092e-08 251,366.64398,28.892246,24.653961,55.508526,1.2633793e-08 251,367.1876,5.8250895,40.430145,45.124596,1.4593968e-09 251,551.19824,4.2264276,44.023193,46.971462,1.3293733e-10 251,394.48227,7.893848,39.739746,48.40584,1.2347239e-10 252,513.49445,207.91055,31.964783,66.934784,0.0037780504 252,621.87415,215.14151,17.272522,55.409058,0.0031131236 252,384.5061,157.35004,43.13452,81.397,0.0010081149 252,602.4876,64.23787,36.366394,220.34251,0.00036757905 252,609.5637,12.328428,29.245789,93.274086,0.00036468793 252,0.8006063,116.73637,18.502136,80.075005,0.00017430032 252,617.2571,93.661606,21.889587,88.98546,0.0001528165 252,614.7885,232.78912,24.358154,129.47482,0.00015111106 252,617.9383,371.46997,21.208374,81.46686,0.00013139506 252,608.9098,438.92245,30.236877,66.725464,7.305754e-05 252,615.8397,143.56754,23.306946,89.994736,6.726923e-05 252,0.75839275,263.2644,12.893351,47.19568,4.228291e-05 252,370.12125,124.35005,83.93448,158.79869,3.8313152e-05 252,0.84593266,187.94238,18.160099,75.37091,3.254105e-05 252,618.3632,314.82886,20.783447,80.125946,3.1395637e-05 252,0.81897384,55.405354,18.578054,82.90843,2.86061e-05 252,0.8151953,220.7668,18.375423,130.38039,2.61461e-05 252,0.6034969,289.6166,13.220378,46.783875,2.3609364e-05 252,603.28625,321.35043,35.860413,170.95212,2.2080514e-05 252,1.5817107,102.085686,32.18697,185.25412,2.1925864e-05 252,0.8666288,420.2223,13.086917,80.64194,1.4477939e-05 252,0.7364779,299.04135,17.953722,135.78711,1.0859661e-05 252,567.99133,18.329498,70.48187,126.538864,7.368618e-06 252,572.5482,6.377858,65.7536,45.071953,5.401845e-06 252,1.22688,373.3585,28.059626,119.10492,5.0198646e-06 252,3.5277019,168.67442,58.86819,230.56596,4.8495585e-06 252,5.643376,360.14502,78.63835,125.06094,2.1560047e-06 252,513.63806,395.67825,119.72858,101.45242,8.8234174e-07 252,1.7330567,19.286726,57.616165,114.360855,8.289372e-07 252,441.2097,431.19348,73.21512,70.3345,5.237063e-07 252,0.96224123,11.5426855,23.575897,76.81858,1.3886157e-07 252,481.6959,52.55137,77.213104,213.4831,5.268882e-08 252,422.28677,6.61154,42.350647,48.15013,8.9556884e-10 252,544.93024,5.469313,44.40149,51.297543,3.5368639e-10 252,373.32864,3.4523292,42.00763,47.23934,1.4481716e-10 252,518.50696,5.3415675,42.958313,48.16521,1.293718e-10 252,477.00464,5.0083675,42.776672,47.716957,5.75463e-11 253,569.1605,293.58963,42.43213,55.082886,0.011494937 253,613.07166,204.86761,26.020874,90.43753,0.009424164 253,347.22,145.97894,43.295837,95.08885,0.0012009395 253,0.42837402,207.89212,13.732991,53.006134,0.0011151546 253,493.4183,191.15617,35.174957,69.36885,0.00096420065 253,406.43842,155.14305,34.97348,60.832474,0.0007495373 253,0.7664429,224.99745,18.134407,78.61174,0.0006325779 253,619.02167,314.78714,20.125,76.656525,0.00045488242 253,603.72504,231.66191,34.350525,157.61348,0.00024926572 253,616.69543,58.249683,22.451233,89.45453,0.00024126418 253,615.0881,15.205511,24.058594,77.15442,0.00014450382 253,615.72485,112.03346,23.421814,86.48515,0.00010410129 253,573.07196,215.23213,24.022705,47.271072,7.874701e-05 253,1.0135092,122.45776,28.056046,160.07593,5.988982e-05 253,609.2822,437.61392,29.86444,67.79733,5.9691956e-05 253,0.69190836,67.77905,18.63025,78.5941,5.464321e-05 253,613.1692,338.13953,25.977478,139.47925,4.7563448e-05 253,0.7544466,113.6765,18.51419,76.44115,3.721926e-05 253,435.7377,236.71483,60.253357,146.67741,3.3784036e-05 253,0.8618384,363.90564,17.431028,133.08786,2.7145672e-05 253,470.71323,86.45916,68.184784,193.07556,2.5939558e-05 253,0.7575472,273.14984,18.200203,73.050385,2.592665e-05 253,3.4334035,202.55814,58.422646,236.76938,1.935342e-05 253,3.386273,396.29517,58.04701,100.208374,1.3364633e-05 253,430.67825,123.59183,34.49893,68.714676,1.263657e-05 253,1.1481462,299.20547,27.241276,145.83209,8.303997e-06 253,570.0307,15.342025,68.56799,140.19467,8.001153e-06 253,599.1793,50.251682,39.776306,221.4437,6.082778e-06 253,332.6007,126.64175,102.73938,197.41803,3.5157047e-06 253,554.4337,395.4529,84.71295,99.40616,2.1608175e-06 253,2.8108952,49.459988,59.249187,246.93414,1.4056765e-06 253,485.63626,430.77414,75.729034,70.45514,9.132825e-07 253,1.5842448,19.732292,57.753597,107.87969,8.196799e-07 253,589.21155,7.2346535,46.362366,46.620255,2.496847e-07 253,0.9059579,10.484183,25.61887,79.555786,1.458202e-07 253,525.3994,3.8771746,43.273926,48.904037,1.2664619e-09 253,552.9261,4.5883594,44.100464,50.871517,1.8838356e-10 253,457.38553,2.8014698,40.511658,48.629234,5.903087e-11 253,490.9265,3.5832212,39.59076,45.724155,2.5191862e-11 253,381.11096,2.5748422,40.575714,46.943535,9.4180375e-12 254,569.1517,213.03506,25.286987,45.48831,85.344025 254,609.73926,196.1557,27.656616,51.687958,0.03455729 254,0.25760174,93.816864,15.1350975,57.897736,0.0029283878 254,435.1431,221.53276,54.40518,144.71187,0.0017648565 254,601.44867,193.58504,36.822754,218.23561,0.0011087582 254,616.1443,212.39157,23.00238,94.69119,0.0006385262 254,0.79330975,201.80649,18.707834,81.90747,0.0003579441 254,330.74576,188.8234,29.970795,57.586197,0.00034171296 254,615.85895,337.29785,23.28772,91.87689,0.00027226636 254,571.3601,358.06274,67.06293,130.50867,0.00025508495 254,476.28302,201.3331,59.0791,142.37747,0.00017247944 254,615.81024,397.72647,23.336426,83.50479,0.00014010987 254,543.81555,155.26901,80.47449,177.358,7.896827e-05 254,464.5125,426.07593,91.64795,77.307526,6.578857e-05 254,614.55994,17.57799,24.586731,77.1319,4.6912537e-05 254,1.0975229,132.77472,32.56742,182.52823,3.9943006e-05 254,0.8204818,404.25867,15.874126,96.93646,3.992777e-05 254,0.9903695,68.240486,20.35099,139.29364,3.822527e-05 254,271.47308,131.13225,86.838135,151.20595,2.0327483e-05 254,0.79923177,324.70425,20.095755,109.590515,1.6182516e-05 254,616.3363,120.40291,22.810364,84.15581,1.494074e-05 254,463.3575,254.04625,78.42459,196.98235,1.2363955e-05 254,584.42926,53.33495,54.009583,245.01125,1.16226065e-05 254,3.0947363,395.0923,58.212177,99.86047,9.4100915e-06 254,4.340638,123.86993,78.96254,280.96414,3.223584e-06 254,535.4663,416.78275,83.14404,83.95325,1.625502e-06 254,476.51456,34.101185,116.75906,277.17667,1.2212124e-06 254,2.096281,26.060925,57.706047,108.8414,8.570925e-07 254,1.2496176,13.811885,15.330314,64.872536,3.0811766e-08 254,1.9115381,7.0008383,37.9163,47.249146,9.0235925e-09 254,375.75415,4.7591424,42.614105,49.679607,9.290143e-10 254,399.46063,3.3063364,46.095,51.73945,1.6728932e-10 254,483.65433,3.1241732,44.811066,53.760838,1.142955e-10 255,610.1476,175.44995,26.9693,66.8286,0.7152605 255,595.6086,135.6746,33.060974,111.99988,0.19294095 255,433.9893,72.29773,23.814423,52.412323,0.025173966 255,77.692696,184.20178,38.43844,61.602722,0.012509228 255,623.6432,203.6134,15.503479,47.085693,0.009778224 255,622.5229,163.32896,16.62378,48.480515,0.008544625 255,516.79065,228.43805,25.170105,53.536865,0.0051214797 255,621.76624,256.53778,17.380432,63.08383,0.0039644632 255,592.888,360.6066,24.137756,47.92218,0.003530972 255,620.316,366.12177,18.830688,60.335297,0.003467887 255,610.66187,367.60864,28.484802,137.55649,0.0025457807 255,504.38736,96.447266,22.877167,53.872467,0.0023530931 255,584.0016,290.1825,53.570435,189.96878,0.001628628 255,574.04706,45.54716,65.09961,223.96529,0.0015631276 255,618.139,120.356224,21.00769,71.19807,0.0006781379 255,608.6768,218.18477,30.469849,165.5981,0.00064484763 255,463.6384,112.966354,22.437286,53.260086,0.00051924196 255,448.98755,196.30383,22.721252,48.748276,0.00049486366 255,546.0858,286.51025,51.51532,136.40869,0.0003032606 255,510.47293,387.14374,124.29764,113.80545,7.8064935e-05 255,530.8612,441.69458,44.927795,63.467712,7.144654e-05 255,1.2296085,150.18094,20.86601,96.822556,3.7120008e-05 255,438.82205,200.49469,72.60364,181.63455,2.788163e-05 255,579.80817,199.95518,45.903687,174.94908,2.7591936e-05 255,580.57245,9.486367,58.57422,115.49718,2.402117e-05 255,615.6153,47.67924,23.531372,87.05629,1.8003451e-05 255,0.83062744,193.98175,18.063946,138.17392,1.4613202e-05 255,0.7779842,311.3228,17.437826,140.23938,1.429181e-05 255,1.5532902,421.1272,33.25218,82.300476,9.119843e-06 255,487.03247,417.17062,76.84906,78.92789,8.956969e-06 255,606.1658,5.1233125,32.78357,55.92346,6.161127e-06 255,3.4307928,298.87836,58.677826,181.33493,3.5798664e-06 255,151.01439,69.54164,75.94661,171.77995,3.4716056e-06 255,3.812715,133.77756,56.893513,221.1489,2.2718154e-06 255,555.3908,4.752539,44.771973,126.19131,2.9376199e-07 255,559.08246,1.7863135,71.72888,52.399704,1.9559027e-07 255,1.5147445,7.9005113,32.782288,79.27927,1.7607648e-09 255,239.37381,0.68086267,42.3313,49.33074,1.8962909e-10 256,164.38545,200.93001,26.918213,47.714783,1.8159738 256,449.97418,278.22668,34.714905,65.524445,0.60848486 256,592.34235,223.8279,23.583008,52.11815,0.16523895 256,107.56603,212.24747,24.286018,49.304047,0.024039406 256,179.44832,204.00496,26.231705,48.54419,0.016235465 256,580.0161,378.26434,55.94867,119.3905,0.0076081874 256,617.7454,233.40349,21.401245,81.64778,0.007327901 256,602.9843,70.46285,35.944702,90.78234,0.0033016943 256,502.86652,211.43492,23.682068,49.565567,0.0032729157 256,601.4275,235.04384,35.713806,235.43004,0.0019760132 256,558.3698,234.945,39.164,72.156525,0.0014422501 256,430.20428,210.90094,23.335938,54.46051,0.000823868 256,486.39725,219.17357,33.30185,81.820175,0.0007801249 256,615.8753,358.79428,23.271362,94.68033,0.00039356342 256,604.0551,431.25107,34.91284,77.07764,0.0002258019 256,596.6864,91.3406,41.670776,232.32486,0.00018097248 256,613.06323,119.72813,26.083435,100.47422,0.00017492844 256,494.9497,238.13988,115.66846,255.53773,0.00017375115 256,427.38593,218.50931,69.87033,153.5303,0.0001705793 256,616.5738,189.4977,22.572876,75.545,0.00013432642 256,380.51022,297.84167,84.220764,186.15594,9.4455405e-05 256,0.82891846,222.31879,18.18384,76.48923,6.535622e-05 256,583.60114,12.777953,54.76062,109.86924,6.286978e-05 256,0.8475928,397.03436,18.1078,73.64566,1.7597611e-05 256,608.25574,3.521224,30.89093,59.562084,1.2500431e-05 256,1.3010751,231.4093,27.373674,143.28839,1.2194497e-05 256,508.17615,451.66846,42.684937,54.200836,1.1537624e-05 256,3.2216017,243.56949,56.429596,219.89954,4.558989e-06 256,575.889,447.36362,44.59314,57.94452,3.62541e-06 256,1.2135246,348.7841,32.51983,140.29083,3.2435296e-06 256,0.9657748,441.80304,21.52414,61.629272,2.672751e-06 256,523.92633,419.8807,79.31506,84.16812,2.3730622e-06 256,1.3973088,131.31453,17.82128,130.97505,2.2918005e-06 256,3.2390966,81.62468,59.15322,209.0442,1.2254677e-07 256,394.31815,2.8747933,42.96826,53.458523,2.3314157e-09 256,422.45148,4.228649,43.555084,50.01252,2.0568697e-10 256,1.3975456,6.340357,17.57084,57.674767,3.0644914e-11 257,473.264,268.89767,24.774902,49.523987,0.5811887 257,81.89742,186.45648,23.973686,50.190292,0.24045932 257,576.5293,196.5444,31.85254,67.459076,0.04869317 257,3.8544304,188.34201,37.26409,66.679794,0.037325457 257,582.73334,231.08159,52.553955,255.3618,0.027485667 257,558.69324,190.65848,39.71637,158.67975,0.025249729 257,0.7881275,193.03894,14.163233,60.90573,0.013387471 257,523.0411,335.8061,26.968384,59.57434,0.005213351 257,622.95483,218.1947,16.191833,49.654846,0.0049447347 257,612.49304,179.35046,26.532654,116.64346,0.0035702316 257,72.63747,108.14307,50.231094,139.6246,0.0024798512 257,1.6771395,101.481186,21.096684,160.41252,0.0019144958 257,608.4204,373.89966,30.726257,136.32999,0.0012861257 257,29.703213,125.317955,42.984035,110.47393,0.0011154099 257,621.4764,249.24535,17.670288,60.084335,0.00081150146 257,512.7147,214.28094,80.29663,199.29251,0.0006473617 257,430.82706,187.0711,28.782074,54.310333,0.0005437785 257,584.82837,100.09421,52.152405,233.656,0.00039225942 257,553.38226,412.7037,83.17279,91.30713,9.8837016e-05 257,446.69345,247.37009,41.563843,108.07974,9.588524e-05 257,153.93633,111.12551,30.115509,61.020256,6.531963e-05 257,3.3707798,148.94756,56.892483,196.57393,4.940037e-05 257,614.8926,95.89068,24.25409,93.58488,3.729074e-05 257,582.3199,6.848965,56.74182,111.72353,3.0944844e-05 257,423.8935,210.7267,110.4801,203.09306,2.2245886e-05 257,0.8252124,204.43172,18.353466,141.64632,2.0229088e-05 257,606.3902,2.1204102,32.75647,56.746986,1.9192594e-05 257,0.7295866,411.03955,18.195164,70.248535,1.5396423e-05 257,0.52858645,314.34354,19.004025,134.97256,1.4340756e-05 257,540.3382,441.08362,43.85846,61.42624,4.8542875e-06 257,2.8506591,395.21735,56.948776,97.74954,1.7062689e-06 257,486.14276,425.90768,76.20447,72.8967,1.3955516e-06 257,37.717236,91.1906,129.50336,197.94087,1.1154654e-06 257,136.82208,67.94171,81.36618,173.70546,6.6573193e-07 257,23.53046,424.66235,79.563354,74.49115,3.1005618e-07 257,468.82397,5.6814356,43.434387,51.600494,2.6593947e-08 257,1.4118246,11.048167,33.190346,85.81305,4.795976e-10 257,398.62357,3.2055843,45.05963,45.334015,3.9106583e-11 258,607.25287,166.33855,31.592224,84.79474,0.85724425 258,2.5435174,151.84633,38.085888,77.835754,0.045156088 258,544.9423,304.49625,41.24951,72.722046,0.016236674 258,504.57376,169.29518,35.37509,61.412094,0.00899444 258,582.92126,351.0802,35.433105,67.67529,0.0066236453 258,609.18335,300.0512,29.73883,146.94891,0.004209929 258,441.9753,203.11333,21.90506,52.692978,0.0034792523 258,333.79916,184.4674,25.901611,45.161133,0.00254341 258,620.4161,361.0321,18.73059,63.588257,0.0020363028 258,568.5926,338.67215,67.79791,152.11447,0.0013668654 258,623.9639,213.51993,15.182739,47.98874,0.0012804278 258,431.75748,167.70961,39.329865,116.38954,0.0011189152 258,588.28485,139.56284,49.365112,236.70773,0.00088352937 258,554.16327,178.7275,36.02002,67.07202,0.0006664959 258,539.6902,260.32758,90.5199,165.92346,0.0004741196 258,621.5951,87.84839,17.551575,49.678284,0.0003441048 258,401.42188,183.74583,40.172363,109.80559,0.0003062112 258,608.54535,392.22287,30.601318,116.84912,0.00022529469 258,546.61914,76.05613,30.224976,64.0772,0.00014787236 258,614.90814,19.937973,24.238525,86.38177,5.7597834e-05 258,2.5161655,109.41293,57.42666,203.46411,5.599369e-05 258,598.9303,15.621745,40.21637,234.0108,5.194577e-05 258,366.38336,212.61804,118.991455,245.9574,5.1369527e-05 258,0.8801213,184.14899,18.847689,147.69138,4.6230347e-05 258,433.1247,210.69107,74.63333,170.75845,4.455199e-05 258,0.8756128,384.69174,18.262123,73.95633,1.5280179e-05 258,0.70338464,280.84085,19.66774,137.1405,1.0399348e-05 258,476.4702,424.95248,78.67926,74.18988,8.577062e-06 258,579.9671,427.6807,46.84601,77.90323,5.731641e-06 258,3.4585223,290.99072,57.45997,189.0307,5.378251e-06 258,537.0679,51.284885,44.426758,153.05481,4.444064e-06 258,532.71765,439.67084,45.423584,62.604706,2.6239763e-06 258,1.9427084,418.10468,34.911343,81.75717,2.0837967e-06 258,81.45816,58.72929,90.04295,165.55795,1.8246683e-06 258,496.40167,388.5751,114.68738,106.356995,1.518757e-06 258,590.5197,4.4720783,44.218018,48.722504,1.4973598e-06 258,16.702223,424.46667,79.54591,72.680725,7.604377e-07 258,1.0167164,53.008743,20.81946,166.02611,1.6642329e-07 258,466.9301,4.5404053,65.94934,45.302258,8.950839e-10 258,2.1196826,8.558193,32.84608,81.11627,1.6116065e-10 258,436.541,3.855233,43.028046,51.632385,4.6750715e-12 259,609.4966,410.97275,27.348572,71.983246,0.16431981 259,564.6135,412.338,70.0849,86.53433,0.013502084 259,83.08269,97.25097,35.53499,76.703545,0.0070370203 259,412.58917,181.08191,25.871033,45.901657,0.002935893 259,81.16363,90.57392,23.909286,45.847878,0.0028055776 259,609.4223,202.50183,29.034668,137.70584,0.0027818424 259,16.725046,83.42033,29.120592,50.641975,0.0014385398 259,601.0313,316.313,37.79071,191.62833,0.0013508974 259,514.7101,321.00482,117.9162,180.87524,0.00087484816 259,620.459,291.1072,18.687683,53.038574,0.0008081712 259,586.8373,86.89797,50.41974,250.88138,0.00023507237 259,616.2164,145.83951,22.930298,83.46727,0.00016197012 259,522.33234,205.0231,76.26868,196.69196,0.00015896828 259,533.0162,302.1927,42.772766,156.63013,0.00012791174 259,1.2700374,194.26294,17.806324,70.50922,5.212392e-05 259,469.6698,419.5471,88.766174,81.21927,2.892912e-05 259,610.6796,0.0,28.467041,89.291916,2.7371363e-05 259,1.1225863,239.01904,19.130875,133.64703,2.4984447e-05 259,0.792238,405.08582,18.322239,72.41202,2.4792382e-05 259,598.1412,172.01834,25.05835,52.628143,2.3473538e-05 259,440.60406,243.23087,121.55145,242.03549,2.2055092e-05 259,538.87726,427.99985,58.953613,81.769226,1.9501118e-05 259,4.3636622,131.85017,57.189495,217.47215,1.8090399e-05 259,1.6271477,76.849464,19.205946,72.560875,9.639606e-06 259,521.40155,448.84955,42.445984,57.025208,9.597667e-06 259,0.8103329,358.13995,18.322027,73.5437,9.028494e-06 259,73.70432,67.86553,92.32345,160.34637,8.888962e-06 259,609.2097,28.07918,29.93695,172.38022,8.518483e-06 259,6.5836787,65.25585,48.51859,107.060585,4.2247725e-06 259,3.4079819,333.41684,57.24682,154.3363,2.85426e-06 259,2.211119,121.0107,28.300621,149.9691,1.7346404e-06 259,586.7491,1.5632455,42.486755,47.410168,1.4391969e-07 259,1.8657309,11.182878,33.841354,84.926476,2.935778e-10 260,406.0229,215.13324,26.971527,51.09607,10.034038 260,600.79535,200.4477,35.85492,55.12317,0.017674547 260,217.47163,205.91423,23.516556,46.7827,0.008448156 260,622.8392,217.12804,16.307495,46.281235,0.0076320074 260,434.43335,207.42674,25.581207,46.553543,0.005655378 260,355.07443,232.25282,24.083618,48.226456,0.0047313264 260,38.546753,107.06443,31.498848,58.96694,0.0041144895 260,154.63522,207.34499,23.938797,46.35637,0.0010156728 260,617.16864,304.42502,21.978027,78.10797,0.0006967065 260,586.73145,204.96445,51.49774,250.1441,0.00064830936 260,567.87317,174.02023,46.683533,81.657745,0.000413046 260,608.16437,435.09125,30.9823,70.91272,0.00026826138 260,528.8069,193.57362,26.160522,48.507553,0.00017067528 260,611.0168,337.02057,28.129883,128.43661,0.00015809532 260,598.0526,128.465,40.089478,168.09338,0.00012963373 260,1.2981055,90.04808,13.9354515,49.269104,0.00011097261 260,1.071766,216.63528,17.998943,68.175995,4.3687483e-05 260,395.96588,97.62697,81.12012,192.29985,3.3444492e-05 260,0.7609912,317.0161,13.877561,45.773315,2.372443e-05 260,0.84356856,238.17972,19.10648,130.60275,2.1890888e-05 260,0.91396815,384.07986,18.234447,72.56973,1.8696754e-05 260,588.5845,9.673372,50.562195,117.525314,1.3699623e-05 260,1.0306063,318.51404,20.796383,104.65994,1.3383969e-05 260,4.320036,113.93639,57.320305,220.871,9.35301e-06 260,1.3314998,117.6268,18.942642,137.04443,6.192655e-06 260,3.3040512,275.94516,57.735092,202.82303,3.4273012e-06 260,1.946652,60.46898,30.756481,122.72456,2.019924e-06 260,2.0233676,419.1287,35.296143,81.02585,1.4560403e-06 260,64.029,424.67892,72.81202,72.53165,9.885265e-07 260,39.528748,451.99402,46.21077,54.943756,5.356668e-07 260,1.6832064,14.0819435,33.935013,78.83844,3.071218e-09 261,422.65335,222.60342,25.761719,48.866364,56.676018 261,407.30252,223.48535,27.102112,49.586517,0.7803988 261,447.0131,208.84305,29.18451,51.050568,0.05040354 261,409.54208,200.22858,44.502106,99.808075,0.017939245 261,203.86346,211.66798,24.991562,46.80687,0.0072096037 261,2.4956934,77.21044,33.682346,88.08347,0.006205357 261,123.303444,212.63809,21.737053,48.17993,0.0047825915 261,0.704257,104.95352,14.991642,67.74245,0.002513067 261,1.0681291,122.74192,17.768126,150.51462,0.00088493846 261,432.20346,100.35174,46.42801,180.1105,0.00077137584 261,19.934708,195.68585,23.055424,54.55954,0.0007134099 261,611.16644,210.1379,27.980225,133.14,0.00057959475 261,616.6713,339.2088,22.475342,90.33472,0.0004934673 261,0.70315593,202.4022,13.292401,54.78163,0.00021701101 261,585.8413,250.97829,53.30536,227.92198,0.0001564455 261,616.8659,287.4,22.280762,83.53482,0.000105896666 261,572.3008,133.6455,65.52948,223.99101,9.006889e-05 261,392.7239,160.74532,97.15448,192.89116,7.5666096e-05 261,608.649,441.2068,30.49768,64.12436,6.707194e-05 261,3.6698194,137.21141,58.065964,216.77797,2.9918097e-05 261,0.8229822,371.5623,13.744955,47.183258,2.7801605e-05 261,486.2569,205.74617,61.063538,132.44798,2.7568523e-05 261,0.87658286,332.7848,20.378866,130.64178,1.5356889e-05 261,0.7187378,247.97957,18.670979,134.60918,1.4509758e-05 261,1.2935116,49.472427,19.53937,78.50509,1.0066022e-05 261,2.622741,45.420002,73.62553,171.61162,8.967671e-06 261,598.5724,9.837481,40.57428,73.81157,8.502024e-06 261,0.9334335,422.51236,16.516443,78.50223,3.0028775e-06 261,4.2165675,341.3984,56.944527,147.35248,2.465656e-06 261,453.0025,61.495693,82.83746,220.80927,7.6849506e-07 261,53.209114,428.89697,77.756325,70.31772,7.1573567e-07 261,1.1614649,15.486996,35.6374,76.60347,1.1328445e-08 262,461.29648,225.88696,30.654572,63.308136,97.6288 262,442.57385,225.383,28.123718,60.1232,19.171915 262,471.58282,209.33852,29.048279,51.13954,2.3372393 262,431.42444,194.66992,64.44562,116.95328,0.05364067 262,198.04407,207.12883,30.39946,57.239914,0.024373407 262,618.02905,207.26208,21.117615,66.08417,0.0072905067 262,595.14594,203.26515,42.93518,111.62984,0.005406215 262,622.0956,259.71133,17.051086,55.03192,0.0022991637 262,533.1352,124.12697,31.660583,66.46744,0.00029388512 262,496.54013,126.771095,38.571625,86.0541,0.00023035711 262,84.5168,213.79128,25.091927,51.24083,0.00022117447 262,409.9495,132.83685,143.00809,238.8396,0.00020062967 262,611.8902,254.2893,27.25647,153.85587,9.440651e-05 262,1.8912582,97.25322,18.171097,82.04175,7.755137e-05 262,0.8218661,397.04892,18.380907,73.74228,6.9619906e-05 262,608.64496,443.92453,30.501709,60.116516,6.423787e-05 262,611.56635,343.91132,27.580322,135.97202,4.9621674e-05 262,2.5036411,115.57797,33.523903,174.68384,3.6567108e-05 262,1.1889079,239.46964,20.31268,100.43942,3.0282312e-05 262,1.2978646,309.6207,28.733578,147.90494,2.133726e-05 262,4.2431026,240.29886,58.168976,229.38657,1.7041133e-05 262,609.77014,47.005215,29.376526,166.31453,1.4519324e-05 262,48.984745,135.96448,76.117584,166.03833,1.262479e-05 262,611.14764,4.1130176,27.999023,56.3066,8.3705945e-06 262,3.2848291,395.09924,57.294872,100.82556,5.1117895e-06 262,1.2471598,10.629864,50.307888,124.79083,3.9161987e-06 262,24.72109,394.46893,116.754265,103.91992,2.02456e-06 262,1.0447148,10.971573,11.490832,84.63216,8.2097233e-07 262,1.1172364,0.20330566,21.078484,47.4915,5.245976e-09 262,487.75586,0.32106447,48.69702,51.360973,1.3989034e-11 262,30.064142,0.0,44.584038,52.33506,6.001256e-14 263,523.1757,227.515,31.32782,75.40672,99.46178 263,494.86984,230.91881,31.401642,71.84343,96.67147 263,512.3028,242.9683,21.93866,54.673264,50.70864 263,37.128994,201.57365,31.162952,60.20845,10.936058 263,190.23463,204.41975,23.186691,46.224915,0.20115192 263,507.7919,204.26894,28.044525,66.53508,0.062588386 263,574.77954,301.12415,30.833313,60.595947,0.021534244 263,474.80164,197.29552,71.08234,164.30873,0.008974701 263,497.6261,207.46564,22.546753,46.80249,0.005095359 263,550.2385,312.80417,29.502869,50.922302,0.0038277046 263,85.30637,194.79268,28.160492,48.715668,0.001586482 263,607.20886,303.61716,31.937805,156.44995,0.001233308 263,602.2032,190.5442,36.36371,188.84572,0.0009117145 263,1.172137,156.08318,18.873163,87.29767,0.0008973564 263,606.73083,34.6581,31.423218,140.9385,0.00047611512 263,616.7997,263.0676,22.346985,78.09311,0.00043521787 263,7.903086,159.05505,92.83486,164.12912,0.00023304604 263,595.26855,392.99402,43.878113,112.74777,0.00010880349 263,1.4801905,197.85379,27.669876,146.71259,0.00010600528 263,1.4412175,80.867065,34.544216,198.66608,8.721538e-05 263,0.36575523,46.585743,20.235813,94.251785,2.5337753e-05 263,0.7487614,273.1871,19.06592,128.15921,1.8718983e-05 263,3.3256364,201.56505,57.534683,237.37825,1.0014125e-05 263,0.86718506,421.92374,16.521923,78.460846,5.6202234e-06 263,1.3571126,311.91663,33.350006,171.81403,4.268625e-06 263,15.860703,423.94824,82.4079,76.726135,1.8805868e-06 263,594.867,5.7506933,44.16986,82.53157,1.7434966e-06 263,569.6661,453.8208,42.13391,50.357605,1.1841454e-06 263,507.55188,421.7472,78.75226,76.41745,4.949659e-07 263,0.0,5.919935,39.26538,89.49514,1.5075506e-09 263,528.85846,3.0987794,45.267273,57.420937,5.2581463e-13 264,600.1231,222.71332,38.1745,116.52881,98.533646 264,533.2933,185.67603,39.231934,70.54678,2.4157963 264,510.91772,193.31728,35.60309,60.9431,0.28698415 264,614.11,57.184208,24.8042,81.68471,0.03906622 264,489.34387,194.96542,23.868042,56.302444,0.03416474 264,364.3684,212.76166,24.874786,47.693024,0.0050901626 264,571.1496,381.90466,67.660706,124.19571,0.005033992 264,619.7932,228.94055,19.353455,58.844208,0.004951955 264,44.304638,199.36281,23.163616,46.566696,0.0031081869 264,556.3028,108.12002,82.84387,335.72504,0.0011723844 264,1.2727433,196.72906,17.91729,84.14459,0.0010893382 264,88.1946,215.75912,22.541145,47.21051,0.00081865647 264,614.0135,383.04437,25.133179,98.61789,0.00064307713 264,609.1874,76.06555,29.95929,179.42227,0.00019501877 264,522.9119,354.2418,80.513855,144.70322,4.747449e-05 264,1.7182032,184.63599,32.60943,169.56964,3.4308337e-05 264,0.9040194,345.90698,20.526602,104.686035,1.6990827e-05 264,547.7956,440.93558,43.87323,68.229004,9.358471e-06 264,1.4873332,79.25504,20.91786,159.68924,3.5060352e-06 264,3.3172836,314.7618,56.817795,166.5567,3.487241e-06 264,1.7744759,417.2413,35.226334,80.07971,1.412266e-06 264,596.13794,8.128278,41.960022,80.36749,1.3512458e-06 264,2.3496923,55.989716,61.00784,229.13785,8.971739e-07 264,472.17746,0.0,88.31229,228.04767,2.5784782e-08 264,394.21448,1.0280274,42.770233,49.852676,2.159269e-09 264,2.1895947,8.1635065,33.727028,80.90552,8.9117264e-10 265,545.713,200.16367,33.627747,63.50116,5.470785 265,523.8877,203.76357,34.27527,73.914566,3.356156 265,605.58545,207.28455,32.367676,88.18735,0.47981575 265,3.2286491,197.13733,46.168118,94.15878,0.014154719 265,1.3582366,197.931,16.072348,61.111206,0.011668722 265,481.55658,201.24731,41.716248,74.3728,0.008168008 265,180.28345,233.45506,24.55362,46.873703,0.0064587155 265,598.40436,224.43451,39.886414,214.89539,0.006228561 265,563.5552,197.80081,36.18103,76.88864,0.005862552 265,621.19446,331.04163,17.95221,53.63797,0.0036673413 265,621.3263,248.2949,17.820374,53.320145,0.0032640637 265,618.803,41.519306,20.343689,74.26033,0.0032478594 265,31.016882,215.75504,34.68463,64.116455,0.001217534 265,15.423125,202.26788,21.831455,49.21129,0.0010152932 265,614.4047,259.1447,24.741943,97.49667,0.000688658 265,608.1439,46.338333,31.002747,171.61084,0.0006546153 265,581.33124,7.672474,57.81543,114.78984,0.000482938 265,610.9868,369.7054,28.159851,131.29486,0.00021123544 265,606.2351,0.0,32.91156,65.647995,0.00012434885 265,4.066139,211.47357,54.57735,218.97116,8.8589164e-05 265,1.0573673,221.71584,19.831917,148.77507,6.248693e-05 265,0.874633,384.12244,17.70573,111.26163,1.3918824e-05 265,3.0482373,394.22733,56.178967,96.43686,2.3083703e-06 265,1.609266,103.26115,20.316584,167.98056,1.4324116e-06 265,1.188571,15.773992,33.92031,187.91563,7.3569795e-09 265,394.65222,1.9253516,42.25763,45.486683,5.4370203e-10 265,1.4125863,5.883926,28.202427,59.677116,3.3207703e-10 266,524.9466,190.19797,41.946228,83.102356,0.17206158 266,497.17584,230.42691,22.56665,45.1839,0.057016943 266,597.0452,70.91655,28.572205,59.54268,0.050097052 266,131.32092,194.16377,26.67427,62.0847,0.0425274 266,600.789,186.53444,36.234375,107.10329,0.036513094 266,393.9529,220.93188,25.385712,46.012604,0.018981168 266,620.913,261.81604,18.233643,51.824432,0.0054248534 266,608.695,189.6882,22.924377,46.182587,0.0038464025 266,366.8755,217.15297,28.718018,49.87407,0.0029165042 266,621.742,343.87372,17.404663,55.625458,0.0024130717 266,598.9512,231.22313,39.936035,213.18541,0.0018622333 266,620.11584,66.80699,19.030823,56.87628,0.0012207394 266,593.99457,71.396385,44.204712,130.3353,0.0012130417 266,610.636,151.70352,27.634277,69.23338,0.0007038663 266,619.3355,103.33736,19.811157,62.750427,0.00031626024 266,2.4584205,157.47198,29.97929,138.61444,0.0002700221 266,611.47437,370.452,27.672302,130.29504,0.00014883811 266,1.4747152,232.16052,18.961437,75.71457,0.00014138946 266,584.57745,5.522227,54.569214,131.57387,0.00010174934 266,52.15529,214.35475,27.69423,52.25844,9.218388e-05 266,28.23424,190.90692,50.828804,103.765076,4.1195453e-05 266,3.3162012,187.94254,58.68565,200.99622,1.2034715e-05 266,0.7989657,288.63345,19.072054,134.7927,8.2947845e-06 266,1.0165633,385.92517,18.870607,113.42084,6.6137836e-06 266,606.6726,0.0,32.47406,67.21743,4.999732e-06 266,5.9624286,395.79648,88.944534,97.983215,1.2515229e-06 266,1.5140723,9.5213995,32.86587,72.83734,5.5076645e-09 267,457.67273,213.1676,25.084625,51.415314,2.6092696 267,604.80585,173.58318,32.616882,112.01167,0.6867728 267,385.23895,215.52615,25.087738,48.76129,0.6380629 267,579.11816,236.8656,24.733765,49.815918,0.309957 267,450.05496,200.2734,42.93634,105.51883,0.043636516 267,471.15402,216.21347,33.393127,63.065796,0.008071525 267,623.85205,211.1317,15.294617,46.122574,0.0028252497 267,579.55865,184.09534,39.3584,88.4357,0.0020631526 267,616.5608,248.01897,22.585876,79.48067,0.0007785744 267,588.62836,185.1832,49.96393,217.9393,0.00039500205 267,410.31125,198.4113,33.48407,68.80434,0.00019833671 267,1.1642001,214.54414,18.011324,72.63115,0.00010113543 267,610.8572,328.64398,28.28949,138.18185,9.171064e-05 267,102.733154,173.25127,37.035492,82.93706,8.3454135e-05 267,423.62585,165.8595,98.355225,204.06586,6.573753e-05 267,608.4656,440.77377,30.681091,64.6687,6.0641163e-05 267,610.26355,75.567085,28.883118,165.0885,3.880983e-05 267,583.3653,17.34754,55.21692,291.93826,3.216589e-05 267,0.7684994,249.3947,19.214474,139.76439,2.181482e-05 267,585.0438,393.9651,54.102844,102.13092,1.3778198e-05 267,3.5458171,145.72397,69.887276,163.7698,1.17063255e-05 267,0.8927881,420.46097,17.318487,83.08301,7.6178226e-06 267,0.7750407,337.25012,20.187878,104.37384,4.9169544e-06 267,600.8727,7.115866,38.273987,130.10114,3.4857912e-06 267,314.35388,145.41273,45.878723,85.49753,2.9077253e-06 267,3.0633237,261.1443,57.023174,214.90906,2.61641e-06 267,8.588065,454.0299,42.32856,52.645844,2.0580355e-06 267,10.481279,422.0021,79.056786,76.63025,1.0738565e-06 267,1.5045117,10.104446,33.276978,72.999146,4.192233e-09 267,501.80365,1.0916504,42.826477,51.277332,2.8451333e-10 267,471.8464,0.8163819,42.54196,47.694286,1.5081646e-11 268,430.24948,212.13724,20.957764,47.348145,74.72288 268,408.69073,210.77188,22.986206,55.49405,69.16739 268,603.69104,227.84688,30.45459,55.514328,0.010921743 268,302.93735,208.7012,31.319885,53.744873,0.01057069 268,484.59903,212.31049,36.64853,60.21408,0.009928548 268,488.40262,300.94495,40.697662,78.84357,0.009248301 268,417.6969,191.33914,41.378326,98.92096,0.0072297766 268,621.26624,240.05795,17.880432,50.961334,0.0052235033 268,472.22867,206.84259,45.898346,157.009,0.0033031306 268,582.0864,382.3398,55.4032,124.67758,0.0024868043 268,598.8469,170.70111,39.600952,181.17453,0.0011038017 268,621.8169,53.145412,17.329773,52.025005,0.00045519095 268,523.1017,275.89066,110.70105,212.38028,0.00040351477 268,610.2705,314.271,28.87616,161.88641,0.00017038482 268,611.3369,80.2351,27.809753,152.2127,0.000115180505 268,503.866,285.3794,64.05838,146.60196,7.946627e-05 268,567.81775,443.85474,41.94275,61.30719,5.2378255e-05 268,29.76463,109.86659,80.15805,178.98637,4.2454114e-05 268,607.8249,1.9401498,31.321777,126.89068,3.2815326e-05 268,385.3868,123.28115,146.30728,242.00412,2.678079e-05 268,0.76969486,223.02379,18.567677,131.188,2.4781271e-05 268,445.02814,164.22363,29.415985,58.136917,1.6406813e-05 268,525.0035,416.59604,68.130615,85.902405,1.1020498e-05 268,0.7539429,357.78543,20.644678,102.24832,9.4742245e-06 268,1.2731104,260.81653,33.38924,177.33917,5.1706843e-06 268,0.7535026,420.0758,16.66024,82.52936,3.4581105e-06 268,3.224899,171.74155,57.80423,213.64386,2.253878e-06 268,1.0187484,146.5958,18.725994,128.84775,2.0077632e-06 268,336.73453,119.55531,46.008545,107.839386,1.9297202e-06 268,5.8486753,356.26334,78.28644,131.86172,7.745209e-07 268,538.7879,1.7122233,44.06006,52.155556,3.171111e-08 268,511.60367,3.0481024,42.435333,47.798344,1.3633835e-08 268,1.5734278,10.921508,33.84105,72.99224,5.611036e-09 269,416.6912,203.60661,32.659637,66.81181,93.97002 269,588.2152,170.83572,48.0271,110.776764,3.2583733 269,351.973,200.2954,29.375244,50.421127,0.63910973 269,447.22928,205.65234,39.377197,105.37463,0.4300566 269,79.43602,203.72247,31.956512,59.18985,0.30355498 269,446.93033,257.9279,23.053436,46.22473,0.030539665 269,615.61725,211.90804,23.529419,67.23628,0.017827246 269,400.73044,202.87486,28.04126,63.85521,0.009772612 269,569.5679,407.59073,68.3465,99.8421,0.0035581936 269,513.0618,193.13518,29.503174,60.88147,0.0017418603 269,605.9408,6.869271,32.758728,91.54654,0.0013918673 269,610.3622,326.88113,28.784485,158.98013,0.00012438669 269,585.42926,163.4061,29.191406,61.71289,0.000120703524 269,602.1097,214.40807,37.036987,198.67714,9.849169e-05 269,609.5536,49.06467,29.593079,167.78401,5.8303187e-05 269,376.97974,146.53766,142.24054,213.31583,5.314447e-05 269,502.28976,257.82162,125.11307,221.99033,2.9228675e-05 269,0.8189958,248.41884,18.869133,132.48409,2.5309257e-05 269,0.8289502,318.435,19.971848,135.24054,1.5871226e-05 269,0.8558773,420.82166,17.150702,81.60913,7.888413e-06 269,556.0178,0.0,83.128845,246.71019,6.241153e-06 269,3.7788396,202.50465,56.71721,216.11,5.0078156e-06 269,1.3436825,179.7365,18.992922,118.42061,4.7777257e-06 269,510.7208,407.1303,85.3154,96.50461,4.5198194e-06 269,3.3721778,396.62515,56.49079,100.753204,1.8658168e-06 269,1.5953329,107.33998,28.639778,144.09474,1.3620179e-06 269,522.1175,446.85657,42.89795,57.965942,6.4645917e-07 269,563.28656,0.9139665,68.83771,54.533638,4.7277897e-08 269,1.5511833,9.073649,34.28233,79.45662,3.096871e-09 269,448.30734,1.666486,43.963287,46.19728,5.3147755e-12 269,417.34097,0.0,42.950745,48.064716,4.3996518e-13 270,495.72537,216.62305,27.58017,65.390594,22.42475 270,607.82947,228.64114,29.393066,58.91629,5.6515245 270,598.54254,220.03313,38.403748,188.85344,0.67477053 270,355.94662,206.61798,25.414886,54.643982,0.41664737 270,620.14044,205.21481,19.006226,59.078033,0.12320493 270,52.1459,213.69025,33.00311,57.32898,0.101145476 270,569.5979,194.07399,44.739807,77.75639,0.04888843 270,580.22565,319.61853,43.161804,81.831726,0.046885204 270,448.35355,217.4549,37.251923,75.807526,0.024038306 270,343.94528,198.0607,23.250519,50.79512,0.020578653 270,110.86731,204.74243,38.683777,56.2677,0.019983103 270,472.57782,169.44121,69.112976,126.53209,0.00587835 270,619.7648,341.77466,19.381897,70.45596,0.0032950924 270,295.43948,209.81866,24.573364,45.34192,0.0021883068 270,601.90656,117.268105,37.10034,158.48846,0.00087017514 270,2.5684261,200.9358,34.679527,159.10677,0.00081798143 270,247.59651,208.42857,40.589584,118.81499,0.00035792188 270,510.9209,147.23874,38.731018,72.856766,0.00024891488 270,598.6391,334.42502,39.50775,159.36618,0.00023728191 270,473.22318,120.13577,38.485687,80.04608,0.00019428201 270,460.1996,241.02011,83.378784,199.05042,0.0001130992 270,1.6839046,285.73773,28.335741,157.55417,9.0485926e-05 270,446.6325,136.431,134.9649,238.81381,8.500222e-05 270,309.38657,212.26112,46.25302,124.18712,6.514986e-05 270,2.190319,135.00854,30.05983,139.93246,1.9661078e-05 270,0.8623283,374.58084,18.716898,119.82828,1.1698346e-05 270,5.381605,335.8398,77.57879,148.5267,3.3463052e-06 270,521.9818,389.29724,117.164856,106.78073,2.704824e-06 270,569.4185,454.27393,41.430725,50.979614,2.0681011e-06 270,471.58673,417.26486,75.42529,79.35568,1.6006734e-06 270,601.5206,6.265938,37.626038,163.50006,1.219155e-06 270,1.7602345,13.203523,34.817253,73.137,1.897808e-09 270,579.8553,4.6634345,43.95038,47.997982,9.552866e-10 271,497.61444,206.84789,37.767395,90.74782,99.77007 271,554.2383,210.02867,40.813538,82.80415,82.2944 271,345.58105,181.37624,35.804413,66.12323,0.6213444 271,365.38376,189.36891,27.979797,64.472946,0.14412387 271,517.6888,209.38756,31.228027,66.9019,0.11750499 271,429.16052,204.55516,40.472656,101.55943,0.021916771 271,384.53928,188.70366,37.815063,81.16432,0.014852913 271,608.927,181.51411,30.219666,77.1512,0.012443248 271,583.95435,206.44472,44.369873,104.060135,0.011380419 271,537.64624,184.52309,84.44684,158.93233,0.005106489 271,537.2399,199.73625,24.438965,65.252304,0.003381285 271,476.96313,171.52707,27.531036,53.318253,0.0017166622 271,468.06485,168.17415,93.35959,172.0436,0.0010492232 271,610.428,99.10575,28.718689,111.83439,0.0006455602 271,615.9201,227.31071,23.226562,93.53459,0.000571537 271,601.52246,211.09985,37.04065,209.6677,0.00048286802 271,610.93304,331.3286,28.213623,137.75296,0.0002357234 271,1.2775098,194.69188,18.887117,133.2845,0.00010836514 271,606.38446,428.9263,32.762207,77.74896,9.020058e-05 271,4.1685615,199.87646,55.33823,222.1861,2.8121758e-05 271,587.75775,123.671074,36.91797,94.39417,1.7120006e-05 271,547.33527,451.18872,42.24347,56.400238,1.6096876e-05 271,0.97895265,374.6541,18.360323,119.11224,1.38302385e-05 271,482.9675,410.7126,77.51572,87.363464,9.257561e-06 271,2.2560084,127.045944,33.691273,160.93617,7.865967e-06 271,3.0896826,388.30798,55.701046,103.696106,2.2881143e-06 271,513.28076,386.79865,115.91907,111.65939,1.5718048e-06 271,585.70575,2.110039,52.552612,115.15343,8.031454e-07 271,1.7220036,10.950345,34.366455,77.19946,7.744242e-09 271,413.85254,2.2026043,46.54538,46.168373,8.260519e-11 272,573.67,225.0235,51.152893,138.42691,99.830475 272,372.50708,196.85075,31.807495,81.081345,85.985176 272,602.83344,225.41399,33.529053,99.08775,1.6127514 272,419.06732,207.83745,48.017853,101.679245,0.26153576 272,165.50452,223.05894,33.062286,68.29582,0.08396979 272,93.956276,213.90762,24.545448,48.718353,0.045874782 272,74.44966,212.84227,34.28038,63.58052,0.009974618 272,107.64472,216.3956,23.725365,46.462128,0.0047981646 272,531.6373,166.66174,104.75104,262.02872,0.004245383 272,433.3187,202.13167,26.603394,49.209854,0.0025265745 272,617.14087,87.68384,22.005798,88.25682,0.0023043267 272,608.6846,272.75616,30.18457,147.57047,0.0021158156 272,507.5159,184.26978,42.184357,85.36005,0.0018613047 272,350.59592,180.40707,77.07422,137.87186,0.00015179496 272,606.86926,430.29758,32.277405,75.16843,0.00014279729 272,615.98334,137.52873,23.16333,99.20567,0.00011751183 272,583.1848,38.719715,55.961853,320.52908,9.8484e-05 272,1.1141138,239.17238,18.909092,132.17943,5.4267737e-05 272,569.54333,335.745,69.43683,153.46402,2.3927885e-05 272,3.7768426,178.36398,56.903484,199.85513,1.9489815e-05 272,609.8069,4.0406494,29.339783,56.00418,1.374514e-05 272,0.8459302,322.7123,19.251945,135.37729,8.779674e-06 272,1.5281096,167.42604,19.243526,129.84755,7.741416e-06 272,0.99515873,421.4617,17.175735,80.25455,4.169066e-06 272,513.87494,449.62036,41.914307,55.441437,3.889831e-06 272,451.44406,381.99033,114.673065,114.1586,1.5551825e-06 272,3.432373,342.90854,56.050507,141.8617,1.204377e-06 272,477.63403,436.3551,45.584045,67.033356,7.3842597e-07 272,526.08307,417.24738,76.050964,83.49979,6.4217016e-07 272,1.6318978,9.466491,34.855247,79.97185,1.1900355e-08 272,435.79724,2.11369,44.006836,47.89798,1.2197055e-11 273,400.808,179.11858,37.419952,79.8336,17.05166 273,494.8951,190.94243,55.877716,141.72267,0.06681863 273,422.15002,185.23248,28.004883,49.566345,0.02558056 273,527.3127,240.90569,27.547424,60.007797,0.016321504 273,586.51306,177.45493,39.44049,81.36551,0.0053108083 273,580.17035,253.13991,28.155518,53.32863,0.0043824553 273,613.30206,185.49252,25.844604,94.45273,0.0029398543 273,566.26953,252.60904,23.402527,50.93808,0.0017353606 273,551.36566,250.3133,22.316772,52.77295,0.0016865737 273,583.88525,127.9031,53.28772,217.88052,0.0016808109 273,509.86783,185.92569,28.676605,49.648956,0.0012083934 273,476.76578,317.83667,24.903717,50.921936,0.0012015124 273,499.05844,317.76508,32.58145,62.505127,0.0008181156 273,616.7137,276.91855,22.432983,90.04074,0.0007239688 273,221.64621,129.1777,44.96109,85.17099,0.0005961691 273,1.6406283,210.5196,27.78402,144.32463,0.00047285165 273,599.17316,464.2933,35.230713,45.782166,0.00023249151 273,3.3352964,231.05907,55.430454,236.80229,0.000108513326 273,602.6093,320.68692,36.537354,176.0568,8.7187946e-05 273,506.42236,209.58957,25.3844,52.502563,3.496186e-05 273,371.289,152.33594,95.77652,179.47452,2.046161e-05 273,1.1001929,365.85626,18.839918,132.36673,8.311539e-06 273,3.9293377,115.636215,56.90731,208.38777,6.699433e-06 273,575.81055,448.75412,44.052307,58.24817,6.193505e-06 273,588.31793,6.278249,50.64984,127.05613,4.7883814e-06 273,546.9921,390.26566,90.967834,111.648834,4.6304654e-06 273,459.44885,386.99997,117.99933,108.8627,4.2486513e-06 273,3.08465,393.50784,55.259567,100.343414,3.5588841e-06 273,1.3659799,135.64787,18.785126,133.5919,2.8889629e-06 273,106.25552,143.306,98.23863,204.89056,2.8656934e-06 273,485.79315,432.26227,44.263,72.14545,1.1991142e-06 273,1.4723032,11.288155,34.740273,74.976074,1.1363416e-08 273,500.49023,2.5322006,43.61194,133.72977,4.4081445e-09 273,484.02054,2.8425066,40.77304,87.35472,7.769948e-11 273,514.5489,1.148628,64.44574,48.30505,3.1260775e-11 274,463.3647,151.05759,43.04834,77.91193,0.7244747 274,101.56596,192.96594,30.355484,51.06334,0.058847085 274,601.6949,232.36125,34.74182,60.96675,0.057902455 274,607.65533,160.23996,30.932678,75.98483,0.014988654 274,40.094604,189.22145,30.352158,51.29561,0.014873519 274,585.7347,244.1311,27.210632,51.23764,0.0028827465 274,600.9901,178.3914,37.266296,194.28416,0.0012907508 274,624.63116,185.22025,14.515503,45.708954,0.0010000865 274,454.35397,197.13481,43.52307,107.95848,0.00025778107 274,610.6504,319.22095,28.496277,138.05453,0.00014719166 274,1.5866984,124.1598,19.794487,132.25876,0.00010375706 274,605.26666,427.69363,33.880005,78.89746,0.00010063716 274,0.89403486,271.40674,20.440552,135.97931,6.369167e-05 274,1.1146346,195.42018,19.251993,127.448044,5.8217454e-05 274,3.9208026,105.71314,58.971333,206.58206,3.7014237e-05 274,222.52342,114.1519,41.862534,86.24251,3.4534118e-05 274,599.93695,60.946712,39.091553,213.32574,2.5229008e-05 274,3.2927036,231.34482,56.313103,240.32895,2.483981e-05 274,570.04016,354.34497,69.10651,137.65521,2.0904254e-05 274,1.0233097,365.33127,18.750092,129.56577,1.8681854e-05 274,513.01697,447.9622,42.79596,60.186584,1.8047458e-05 274,152.59009,102.879745,79.156586,158.31142,1.7225146e-05 274,599.17053,4.9734216,39.70111,81.95044,7.925724e-06 274,73.47243,121.19649,139.6637,215.7264,3.8822486e-06 274,462.29782,415.9904,78.06448,83.64047,2.6520222e-06 274,2.7755177,423.4791,52.331993,72.91165,1.9109088e-06 274,468.72662,355.15082,139.27136,139.11035,1.1623433e-06 274,532.7911,417.93042,76.64099,81.95334,4.9306817e-07 274,1.603768,11.890228,34.53297,75.09597,1.0359975e-08 274,473.27985,2.295163,46.32263,49.044518,1.022783e-10 274,422.33966,2.7871518,65.1803,45.09295,2.0387494e-11 275,102.82559,196.58609,34.182205,64.84073,99.82369 275,494.31616,199.12532,33.113037,93.46001,99.81806 275,469.59308,193.47696,37.652832,98.2695,91.51362 275,599.43085,196.86234,38.279297,192.88766,0.06088861 275,593.5104,207.22438,25.39209,54.625534,0.030599644 275,478.80746,189.30785,22.146088,47.488495,0.008893341 275,607.8285,146.05191,29.975159,70.801865,0.008537955 275,461.26996,168.34622,90.62189,173.24094,0.0011176737 275,286.85437,198.45113,26.122986,50.6389,0.0006985053 275,615.93256,302.3604,23.214111,81.65439,0.00022994075 275,84.34525,156.04747,74.98637,147.43571,0.00022636635 275,616.6986,346.49448,22.44806,82.325165,0.00017613944 275,606.169,431.821,32.97766,76.562164,5.4682045e-05 275,2.0130005,102.68255,30.586994,149.02393,4.1307412e-05 275,612.1095,0.0,27.03717,48.13069,3.5381e-05 275,1.3791163,175.22331,20.593653,116.94594,3.093422e-05 275,599.19604,47.53771,39.218872,215.0547,2.7086347e-05 275,520.2253,449.2898,42.02124,58.393707,2.4890176e-05 275,0.77168864,238.47443,19.463844,143.38776,2.2434178e-05 275,1.2478378,368.1751,18.915834,129.92673,1.7892844e-05 275,4.0325375,190.12689,55.722633,249.14896,1.7564682e-05 275,569.8426,342.21817,69.00281,149.42871,1.1471719e-05 275,563.4036,0.0,75.01227,66.847855,9.75863e-06 275,3.2701123,394.73474,54.93603,97.67078,5.94804e-06 275,490.17487,423.80634,60.92804,76.134,4.519751e-06 275,539.84546,414.91653,76.01538,85.7955,5.923469e-07 275,114.36077,60.101746,92.20515,201.21191,9.1699995e-08 275,555.5951,0.0,42.30719,45.008842,3.144957e-08 275,1.8685124,12.148011,34.14158,74.6971,6.036549e-09 276,77.22622,201.66805,39.71295,74.58278,99.76944 276,599.6984,191.10889,39.448242,164.13089,97.033455 276,617.3166,229.54251,21.830078,65.536285,0.006177189 276,620.0897,153.7644,19.056946,65.74893,0.0022711952 276,560.34247,143.6203,78.8042,278.27774,0.002207677 276,475.3169,326.77225,95.070496,160.32059,0.001384755 276,518.8838,154.70459,46.22455,86.17502,0.00057323684 276,49.26116,172.64926,90.58561,136.3771,0.0005666222 276,587.2194,291.3941,50.83136,195.80795,0.0005235706 276,616.88043,9.759365,22.266235,72.48927,0.0004446669 276,611.7929,286.4545,27.35376,115.279144,0.00017371702 276,1.2904093,176.88141,20.376162,125.97333,9.2721006e-05 276,611.25745,397.7094,27.889221,103.29468,8.883638e-05 276,610.0032,115.9124,29.143494,154.9192,8.689194e-05 276,585.97284,0.0,52.277954,110.25155,4.667833e-05 276,547.3128,449.566,41.974304,57.52884,1.4339498e-05 276,0.7659359,247.98657,19.91148,137.29709,1.3617131e-05 276,3.9662924,177.68393,57.612576,238.67773,1.0266514e-05 276,0.8629867,325.26257,20.148348,138.49301,9.429425e-06 276,1.2180624,424.3068,17.192673,76.65567,9.139241e-06 276,514.23895,421.00974,64.16992,81.12308,8.074157e-06 276,3.5894988,398.5754,55.956905,96.594604,4.853806e-06 276,506.1417,102.81452,96.9133,235.71133,4.263206e-06 276,483.25433,427.5854,48.940735,72.93521,4.067708e-06 276,2.1994174,94.200165,34.079216,162.46155,2.0216044e-06 276,102.720024,63.497047,86.45173,182.80508,4.5321102e-07 276,1.9147934,12.876348,34.23133,73.527985,2.6518867e-09 277,558.18097,186.6898,24.33612,46.391296,98.53493 277,547.36426,170.80417,49.351746,80.19243,0.002343924 277,20.942295,184.75931,40.315342,61.84929,0.001920829 277,270.44797,148.88838,25.495209,51.959778,0.0011545672 277,617.3825,196.1875,21.76416,87.45276,0.000627951 277,620.9792,324.3393,18.16748,59.118225,0.00043807118 277,0.8812492,208.67824,18.018696,73.899796,0.00028352207 277,582.41364,318.29385,55.64508,166.21393,0.00022484908 277,616.88824,381.6898,22.258423,82.14722,0.00018397147 277,244.24579,174.08566,23.445587,46.990204,0.00017115238 277,617.3195,269.8581,21.827148,79.07919,0.000158376 277,376.0859,147.09256,36.08194,75.17255,0.00015103555 277,599.79236,201.38867,39.35431,212.15314,0.00013070842 277,2.8388753,84.93442,64.58681,161.2602,0.00012309382 277,610.87695,115.37533,28.19043,120.62786,8.0132995e-05 277,140.19542,151.037,35.397537,70.41922,7.8229416e-05 277,608.65845,436.8085,30.48822,67.41452,7.648854e-05 277,1.200577,119.54086,19.076807,80.08852,4.5508794e-05 277,527.15045,139.33694,99.95453,158.38412,2.9934878e-05 277,123.38115,83.20403,59.230194,149.28186,2.7056654e-05 277,0.8211874,418.0924,13.601652,47.1698,2.6648158e-05 277,1.7365446,174.29402,32.627373,169.89503,1.6171962e-05 277,0.71297204,327.69424,20.216946,136.3219,1.3932663e-05 277,0.80165446,298.3868,18.193937,75.05405,1.37435e-05 277,0.70566165,261.18423,17.926394,69.44501,1.05354675e-05 277,4.524756,241.61417,79.120255,228.30283,9.372547e-06 277,599.7052,4.9482,39.18988,80.907166,6.011246e-06 277,3.2373438,395.58435,56.558666,97.61435,1.5960941e-06 277,1.6711166,19.933386,57.456635,127.55216,3.6949535e-07 277,1.4679639,8.888833,28.265636,53.606358,1.9171598e-09 277,339.14468,3.8454688,44.02307,49.906013,7.856475e-10 278,592.18317,193.05618,29.086426,46.51979,99.48602 278,2.492111,187.73206,33.359474,65.16298,0.019470932 278,1.236237,198.6946,13.166666,51.062515,0.0071439585 278,164.62436,149.68199,35.945282,64.151276,0.0061521283 278,612.1429,180.1478,27.003784,120.33438,0.0011362752 278,338.5789,161.64987,30.93283,58.295288,0.0010560455 278,532.58374,415.90366,32.539795,66.855774,0.0008996049 278,209.98889,147.46735,25.02237,53.69821,0.0008726417 278,155.34639,168.61478,25.678192,55.169373,0.0006701083 278,572.0053,166.25816,64.650024,90.18358,0.00060954073 278,587.21454,202.0366,51.03961,253.5518,0.00028048042 278,138.35936,165.77478,28.51921,55.53531,0.00024558173 278,490.27167,416.3947,92.52667,83.46097,0.000119805554 278,616.8854,280.84537,22.261292,82.45679,0.0001085945 278,617.3402,400.2845,21.806458,82.41391,8.354229e-05 278,610.7173,100.67202,28.429382,131.90256,6.597348e-05 278,3.24125,137.3068,60.58823,218.0668,6.332717e-05 278,0.714314,219.8227,19.91764,147.82147,3.8040092e-05 278,570.52277,366.03476,67.63336,128.20297,3.6912013e-05 278,0.7109611,331.58633,17.948324,71.97131,3.1367596e-05 278,0.56307864,361.6363,19.10198,132.27847,1.4799904e-05 278,314.33572,113.00162,82.16626,152.32187,9.792416e-06 278,599.44916,4.1786914,39.518982,84.85613,4.344961e-06 278,538.2765,120.7399,100.03601,225.53192,4.182319e-06 278,2.6485481,272.16708,56.596817,200.25397,2.8906165e-06 278,368.87427,392.97794,108.991516,102.89499,2.7047465e-06 278,1.3603777,453.12476,28.817507,50.90973,2.3992682e-06 278,5.455163,393.9376,83.87631,97.008514,1.284912e-06 278,329.45282,433.47455,42.164734,67.38818,9.972873e-07 278,432.09512,418.04483,73.59915,80.85272,6.9620285e-07 278,232.62651,389.73013,108.32594,101.31372,5.6494326e-07 278,133.05649,422.52298,71.81059,72.82141,5.312722e-07 278,356.19196,437.69922,43.80255,65.591064,2.702641e-07 278,390.15884,439.60147,44.0278,63.855164,2.423653e-07 278,1.0353833,50.159306,17.172846,158.26894,2.374374e-07 278,2.3768003,22.801357,57.12329,105.81818,2.4638577e-08 278,1.1277442,8.8927,19.58429,54.097736,2.6723697e-09 278,278.5817,3.581198,46.78784,48.71936,1.1093736e-10 279,134.26826,172.28566,25.477188,60.63115,0.051636282 279,358.81183,163.55276,33.809418,57.472168,0.01675824 279,210.0777,148.47963,27.040222,52.399796,0.008505141 279,465.03284,173.88936,25.671509,49.839996,0.0047825603 279,151.07555,159.2424,35.58159,71.54289,0.0034941356 279,580.7297,163.69052,27.995056,46.92035,0.0018130717 279,276.53378,149.2152,25.062988,51.00795,0.0014206569 279,617.3032,179.6372,21.843445,74.16225,0.0012167377 279,418.72922,162.68758,27.37558,48.200485,0.0010153125 279,1.2258309,166.5794,33.176945,80.79669,0.0003222916 279,1.0905269,193.51312,13.666436,52.524567,0.00023971882 279,617.3597,404.9124,21.786987,74.335205,0.00020588405 279,599.6267,146.18425,39.51996,158.4702,0.00016211724 279,616.61035,243.56711,22.536316,84.071686,0.00016176696 279,617.08624,350.27646,22.060425,79.80301,8.0019374e-05 279,617.2705,294.33963,21.87616,80.16406,7.8571175e-05 279,601.8787,316.07623,37.267944,169.38623,5.586099e-05 279,0.9069987,221.04625,18.24023,72.02614,5.278373e-05 279,0.81416833,399.87836,18.458536,75.583374,4.2344374e-05 279,1.6790202,95.42836,21.161161,91.48755,4.034691e-05 279,2.355342,113.455696,56.52365,185.81137,1.29244e-05 279,1.4572681,200.35036,32.79641,169.13435,1.0998575e-05 279,1.1649414,442.59714,22.334248,59.85016,1.0190623e-05 279,0.836779,322.92575,18.268726,70.608185,7.2351845e-06 279,599.0631,4.657656,40.083557,82.87505,7.1825916e-06 279,4.684219,285.34354,78.5386,198.22559,6.5058593e-06 279,1.6867399,345.87936,33.490574,150.21902,6.2399863e-06 279,0.63317305,281.9537,18.301167,71.00937,4.1581548e-06 279,4.4385223,429.8828,78.83882,68.67047,3.979714e-06 279,299.90894,50.2756,36.920258,72.869064,3.7998102e-06 279,1.6791097,24.196764,57.5205,110.535645,2.3639524e-08 280,257.20892,191.3261,32.996887,65.37236,0.44533873 280,503.47705,177.7505,40.33075,79.741135,0.26825836 280,275.87427,210.3761,24.223785,48.167725,0.014610743 280,607.4227,179.45602,31.531006,82.63046,0.006075832 280,622.1916,228.52988,16.955078,53.06656,0.0039434987 280,64.36454,219.21974,36.71206,67.46443,0.0017430335 280,402.0221,175.67662,36.544464,67.53662,0.0016686283 280,152.64024,180.39407,27.716934,45.254395,0.0010852941 280,617.28754,248.70757,21.85913,83.67561,0.000985544 280,352.10153,175.36496,25.855988,53.20221,0.00071106653 280,60.714844,136.405,70.8051,143.06354,0.00032771434 280,84.032364,154.84836,31.633957,66.55185,0.00023374894 280,585.99634,113.715416,52.565918,206.21078,0.00023277728 280,481.89236,142.58086,77.50595,150.24739,0.00019441804 280,616.36597,83.39412,22.7807,75.693634,0.00019417364 280,0.7786292,138.0001,13.475267,48.07901,0.00011065505 280,0.8197066,255.49928,12.873394,45.687027,0.00010873015 280,608.1605,440.60757,30.986145,65.123474,0.00010392719 280,600.6544,216.66476,38.49225,202.27368,7.5695905e-05 280,0.66806155,425.8043,13.74412,46.979065,7.3022435e-05 280,71.35101,182.1545,29.818787,63.54152,6.455784e-05 280,1.0558733,243.59154,19.215282,127.15398,4.1970954e-05 280,1.1432748,168.62154,18.927029,125.40871,2.769348e-05 280,601.84937,340.31158,37.297302,153.97473,2.4396099e-05 280,0.8043441,331.79944,20.143248,137.7937,2.2306898e-05 280,587.94305,10.643386,50.268127,119.2798,1.7244543e-05 280,0.5817261,323.6481,13.760558,47.782623,1.4237801e-05 280,3.454284,146.45508,49.48867,166.11255,1.3781523e-05 280,5.4029036,274.10144,77.00761,199.22482,1.0106151e-05 280,1.1335368,443.65808,21.41902,58.325043,5.335033e-06 280,2.8193245,394.19772,56.934135,99.97113,4.3717287e-06 280,1.5376246,97.05453,28.73417,148.32217,2.4111132e-06 280,386.06747,457.10406,41.60971,49.53772,1.8500897e-06 280,396.6777,425.61838,73.50772,73.90814,7.7247756e-07 280,345.2806,425.63507,73.703705,75.40149,2.2796446e-07 280,1.889642,16.677979,57.205193,119.01796,4.0953223e-09 280,1.0932821,7.2317514,18.400383,55.378822,7.0306344e-10 280,434.72885,2.251447,45.347504,50.26081,1.2977663e-10 281,257.66,163.03438,29.009644,54.62372,0.0851462 281,285.9427,158.43524,29.42694,75.02518,0.051671952 281,302.31754,159.08272,31.776154,62.08737,0.0076599754 281,511.12747,175.49739,42.346893,104.2538,0.0036035348 281,122.12846,217.18443,34.33609,67.32497,0.0033649507 281,275.37042,149.34319,64.49292,130.30891,0.0026710988 281,270.9096,170.24617,29.162842,67.83879,0.0021092517 281,616.7148,62.8279,22.431885,88.245026,0.00062546704 281,616.9496,161.30614,22.197083,81.0139,0.0005682619 281,617.6832,248.27563,21.46344,78.968994,0.00028104163 281,617.6905,306.62387,21.456177,80.46304,0.00019667753 281,601.7671,152.285,37.379578,186.0657,0.00016904647 281,332.14505,214.97438,28.61612,51.69432,0.0001591843 281,611.5152,353.10748,27.63147,143.24399,0.00012618725 281,232.66302,162.67859,74.16385,166.30301,7.716502e-05 281,0.7193628,418.87482,13.93245,48.060883,5.1808085e-05 281,600.07794,34.273113,38.43048,179.47844,3.6995676e-05 281,0.85441166,240.98721,17.906113,72.33505,3.246702e-05 281,0.874572,332.53284,20.37741,134.99716,2.1172344e-05 281,3.1305974,262.01843,57.24304,212.28043,1.591679e-05 281,485.36746,129.30432,112.6611,213.72723,1.0768043e-05 281,0.7719922,309.55392,18.21792,72.714325,1.01390315e-05 281,1.1870638,170.2223,18.303263,72.013824,6.9220305e-06 281,264.06516,204.88779,30.042816,68.00415,5.6224544e-06 281,1.703523,204.16467,32.282604,168.66916,4.605925e-06 281,1.1014185,442.8189,21.493149,60.159546,4.024998e-06 281,2.2101285,89.0108,31.44363,174.5805,2.684082e-06 281,593.3267,1.1546371,41.04883,53.611843,9.4559624e-08 281,1.3788135,29.424265,15.881753,142.13728,9.254722e-09 281,2.0410433,8.780489,33.386497,78.33303,6.8849515e-10 282,94.42269,208.39381,24.117157,51.023636,0.06920708 282,505.49792,162.5752,32.4209,75.92001,0.039016552 282,113.52085,205.48073,26.476692,51.75334,0.021926822 282,143.00113,223.46439,38.43567,59.899384,0.013607109 282,511.05856,169.69818,46.185333,149.27124,0.010426292 282,617.41675,293.2986,21.72992,74.69003,0.003041683 282,534.1446,161.82356,37.164246,98.43538,0.0016666896 282,610.5287,194.69347,28.617981,135.78246,0.0015297665 282,524.80676,154.33228,90.32825,180.34406,0.0013805224 282,621.88416,168.0442,17.262512,56.42244,0.0013728145 282,586.8939,263.06845,50.957153,189.85394,0.0012866926 282,315.19598,230.736,38.218933,68.550446,0.00047961142 282,611.72955,349.57254,27.417114,145.17929,0.0003290914 282,1.2100009,217.17117,18.228718,74.62488,0.00022629513 282,611.54333,91.04399,27.603333,152.72284,0.00014159903 282,503.19336,218.41766,29.749146,64.60562,7.175265e-05 282,581.65137,68.809845,56.229492,254.1911,6.9861e-05 282,332.265,194.65065,75.83777,153.46617,5.7528887e-05 282,2.0831528,189.96712,35.00624,162.51476,3.9567738e-05 282,1.0544841,366.67496,20.494425,99.357544,2.221273e-05 282,0.79115885,309.6875,13.824224,49.542755,2.202117e-05 282,3.0691164,254.35808,57.636856,221.94923,1.7248061e-05 282,609.583,6.645306,29.56366,156.18262,1.1961075e-05 282,0.7185128,282.54752,13.895102,48.3291,9.810549e-06 282,1.7545948,124.726746,27.523102,139.44083,9.524974e-06 282,0.66123456,419.6681,16.147226,80.10797,5.851782e-06 282,0.89083093,275.15906,20.296894,134.45651,5.6535746e-06 282,1.371045,7.9033237,33.080093,76.39422,9.090498e-09 282,366.00085,3.7439177,43.9581,45.67528,8.105081e-09 282,583.38983,1.4250586,45.86023,51.76937,3.6673264e-10 282,524.50916,1.115651,45.10309,48.089645,2.377638e-10 282,557.8684,0.0,46.53351,55.69189,2.4677374e-12 283,287.47458,192.074,26.623444,57.14006,0.1869147 283,331.87885,227.60818,30.138,49.21057,0.028610349 283,273.9795,203.44417,27.09964,50.097458,0.024994431 283,537.36035,206.05772,55.208496,128.88823,0.013187087 283,359.991,210.42847,28.792847,60.242676,0.007396513 283,301.40884,198.76006,34.17218,64.20119,0.004531258 283,543.74567,220.18013,30.130371,55.291428,0.0018125704 283,166.34471,182.40938,32.531784,57.210373,0.0017199494 283,561.7036,227.23643,32.678955,62.901505,0.0006254313 283,601.9599,163.53522,36.586914,187.66602,0.0005995484 283,361.54596,174.48518,43.402588,134.86302,0.00049869687 283,587.33826,263.63452,50.863037,205.5668,0.00031572056 283,0.62502766,213.5897,14.085829,52.09166,0.0002857752 283,616.2243,295.69296,22.922363,88.884705,0.00025079222 283,615.7116,88.3509,23.435059,86.55508,0.00022445017 283,611.20197,349.07758,27.944702,146.23035,0.000109965775 283,562.8107,260.997,28.296936,63.706085,8.527828e-05 283,0.78572756,224.54219,21.490122,120.502426,6.541539e-05 283,374.539,87.32569,43.652863,157.6152,5.4623513e-05 283,3.3491797,117.59898,60.446213,214.79659,4.85727e-05 283,43.845455,188.96964,80.6546,192.12686,4.8292743e-05 283,615.4449,37.30768,23.701782,87.4967,2.7668244e-05 283,1.7963297,145.95895,19.080923,122.74219,2.327248e-05 283,0.6998963,425.53583,13.772904,47.132294,1.1037938e-05 283,606.9839,2.5936785,32.16278,59.145958,1.0231542e-05 283,0.9058256,330.68552,13.545617,46.185913,9.894777e-06 283,1.0029964,339.38736,19.95645,133.33218,8.920519e-06 283,3.162518,253.22522,59.02465,228.03604,8.483817e-06 283,190.82918,171.03603,68.13017,100.6255,6.0217353e-06 283,598.9314,21.701134,39.746643,207.47519,2.614285e-06 283,1.0536329,444.78064,21.736925,58.53238,1.5404008e-06 283,166.6843,128.28484,143.02698,213.66237,6.143992e-07 283,1.4138298,8.752048,32.95274,73.90431,6.4568093e-09 283,577.2362,2.177417,47.035583,47.757526,9.575323e-10 283,546.2957,7.53492,42.252686,46.58549,7.11199e-10 283,433.30206,3.5797803,44.242004,45.726944,3.0024014e-10 283,402.8267,0.43256348,49.125458,47.92775,5.0648815e-11 284,493.31168,206.48059,25.855682,48.016922,0.6914311 284,410.13025,190.34048,24.396881,59.272827,0.060844287 284,505.24298,217.89685,28.927734,51.905304,0.05492409 284,441.052,188.34045,26.598267,54.336655,0.015309106 284,491.35126,206.71263,45.385864,115.85603,0.0042740293 284,598.66113,91.400116,40.087708,145.19838,0.004200293 284,619.38824,128.24173,19.758423,61.21422,0.0033471144 284,575.7199,129.98753,28.243042,68.59654,0.002789158 284,524.49176,233.58269,61.25708,121.4655,0.0022302687 284,590.0237,136.0884,47.690613,246.03304,0.0019122717 284,615.2089,63.54349,23.910828,87.334305,0.0013276172 284,319.5219,194.57042,44.169434,83.317856,0.00040537465 284,616.93567,343.56995,22.210999,87.21982,0.00037680942 284,0.96159834,195.15497,17.560581,64.15503,0.00021989617 284,559.4687,94.45028,60.052185,135.77753,0.00020931454 284,600.3409,293.05762,38.805786,182.19379,0.00018248182 284,620.76416,29.958796,18.382507,58.196365,3.3139062e-05 284,608.631,437.7333,30.515686,67.01297,3.3121367e-05 284,0.6386808,229.25511,20.314766,144.3217,2.5978277e-05 284,3.8963788,182.0357,56.765526,242.86618,2.5906334e-05 284,1.6265862,151.5169,29.21799,128.5075,2.5747073e-05 284,303.66913,164.93988,83.40164,151.01233,7.976195e-06 284,0.7379615,340.3734,18.54533,77.635284,7.4189074e-06 284,0.9583138,406.02866,18.41006,71.20468,4.515598e-06 284,608.1796,3.3760905,30.967041,59.120083,3.6120748e-06 284,1.4099723,297.92587,34.39958,183.91983,2.2738354e-06 284,585.6537,14.230957,52.997375,119.49751,1.3552543e-06 284,5.7048926,354.32645,79.56863,137.18402,7.554083e-07 284,3.4037468,425.2089,53.060493,74.20944,6.6671294e-07 284,1.8800586,9.809499,32.184155,77.88444,2.5879572e-09 284,522.24854,3.805402,48.02594,47.2699,6.8500694e-10 284,577.99207,3.1345346,44.058655,45.22591,3.9250078e-10 284,477.3697,4.996097,44.3562,49.06104,3.5313968e-10 285,491.06375,190.40273,33.261017,64.269775,1.2690028 285,593.2213,204.44902,41.08081,89.881,0.7528427 285,469.79828,209.34854,22.017944,45.85022,0.51554686 285,570.26056,168.51802,68.13574,202.085,0.016412865 285,619.1465,254.31232,20.000183,66.25745,0.0083508855 285,619.858,179.00557,19.288696,61.261444,0.0057434076 285,607.44275,238.87329,31.170654,146.54767,0.0038618397 285,623.149,222.31702,15.997681,45.860016,0.0010631321 285,383.34006,199.16873,44.32437,83.09668,0.0003636599 285,586.4418,303.4136,51.31897,180.14267,0.00034614938 285,610.103,119.162605,29.04364,143.43399,0.00025749163 285,615.34045,335.01047,23.806213,97.575165,0.00010353407 285,1.269655,190.96509,20.347078,93.10303,4.1615196e-05 285,608.2544,436.4402,30.892273,67.09018,3.8661918e-05 285,0.9046436,234.06735,20.11402,135.71472,1.7440896e-05 285,1.1432195,405.10794,17.884525,72.60019,1.29673135e-05 285,0.6981055,307.70984,13.948177,50.32068,1.2801509e-05 285,607.82715,0.0,31.319519,150.26712,1.1379503e-05 285,0.9631942,148.35199,17.98777,76.905365,8.293866e-06 285,3.761247,211.06537,57.014668,226.49411,7.736457e-06 285,0.923702,310.00677,19.786774,137.42203,4.7541635e-06 285,372.16266,169.82149,78.09277,163.76778,4.314389e-06 285,3.3217173,393.53436,56.10961,98.8154,2.057231e-06 285,1.6817529,91.35395,33.748978,164.45996,4.3594355e-07 285,2.277482,13.356208,31.92191,72.681694,3.9595058e-10 285,456.98068,0.28893068,41.5412,47.116764,3.010919e-13 286,447.52628,216.9221,31.190857,55.52504,99.885086 286,507.22443,214.49988,25.679626,53.348785,98.52702 286,523.47784,215.49402,29.746643,51.810944,78.90491 286,557.92267,203.22375,31.94159,56.55478,0.17555709 286,342.79166,210.11172,25.50647,47.395996,0.043779615 286,569.17413,181.65982,21.93158,47.839508,0.03151144 286,212.14014,221.73828,20.299942,45.28714,0.025413921 286,586.50275,197.97299,27.787231,55.233948,0.012223833 286,321.16632,206.25851,33.940063,60.030304,0.008189145 286,541.2676,215.87006,24.12085,52.072052,0.006475058 286,609.9449,152.86992,29.13794,135.4192,0.0025890977 286,602.5262,239.65826,36.620483,194.46509,0.0001267152 286,612.53357,403.3066,26.613098,99.46658,0.000108757624 286,0.9307455,205.39877,18.91814,124.12436,8.0116726e-05 286,570.7947,353.57346,68.35199,134.3504,2.4336516e-05 286,427.03973,184.06477,76.61008,143.96461,1.2778651e-05 286,3.791862,178.13892,57.360615,213.18994,1.2377392e-05 286,610.40717,0.0,28.739502,66.031685,9.621751e-06 286,1.0180241,388.87723,18.274391,107.14029,8.023771e-06 286,0.79572594,275.2818,19.713827,132.77298,7.833029e-06 286,2.041145,139.08092,28.104273,141.7935,5.5298724e-06 286,481.74823,178.78096,97.515564,183.23155,5.510867e-06 286,3.4150846,305.1676,56.94416,173.13376,2.9684136e-06 286,1.1732422,67.84323,20.230055,133.49954,3.2936137e-07 286,1.6334962,10.697198,34.248165,81.547134,8.2138923e-10 287,542.3792,215.25797,38.72589,76.15927,99.974625 287,580.1792,211.66559,35.446777,71.17828,36.782055 287,605.0617,177.93431,33.08014,103.73631,1.1312155 287,369.80103,202.53107,25.785614,46.872665,0.034463383 287,42.520626,197.97281,28.23003,53.52678,0.02990413 287,378.71048,220.1163,23.525269,48.31186,0.006844114 287,621.4715,214.49307,17.67517,58.608826,0.004568041 287,521.7305,198.30667,84.710266,128.07849,0.00031431695 287,4.6124334,129.20416,71.54909,172.69254,0.00026359208 287,586.1021,224.58089,52.465027,255.91975,0.00020115022 287,586.1461,65.94479,52.001526,247.22366,0.00019306278 287,615.4502,59.145653,23.696472,84.931725,0.00018387535 287,1.2201514,128.3834,14.530415,62.36383,0.00016362108 287,611.51697,372.39377,27.6297,127.7092,0.00014087519 287,1.56781,161.97052,19.330572,126.004944,7.45529e-05 287,1.4541708,63.469814,33.544598,192.11328,5.0610994e-05 287,0.7897046,234.43086,18.867723,134.08446,3.4523186e-05 287,3.2041764,231.24617,56.999847,235.35094,1.7369319e-05 287,429.90652,172.72516,59.614532,105.7265,1.35862065e-05 287,585.36334,16.535206,53.783325,105.48102,1.3043344e-05 287,0.90548915,337.24713,18.971922,133.55814,1.0496715e-05 287,0.91787195,416.16867,15.853355,81.68701,8.08664e-06 287,607.9111,3.0276043,31.235596,63.115578,3.3933986e-06 287,3.0430372,392.03915,55.982693,97.21939,2.8133766e-06 287,407.36343,117.76287,141.59207,224.24136,1.1144829e-06 287,0.8576506,14.752513,24.216097,118.79156,9.73472e-07 287,531.2154,1.6193181,43.069885,48.43968,1.8513532e-10 287,578.26886,0.38111004,44.596252,47.018745,3.1342453e-11 288,26.630264,188.2926,36.17656,64.96796,0.030298209 288,7.3824563,197.46712,37.59448,83.51915,0.015009065 288,228.08983,215.14803,40.942154,103.76573,0.009053644 288,376.2114,191.96982,35.335266,62.00972,0.008319704 288,616.8463,143.83269,22.300354,68.74286,0.0048547443 288,469.4595,175.32016,39.96344,98.35007,0.0023841062 288,621.7598,229.52368,17.38684,51.87851,0.0015888789 288,366.46924,114.98677,52.676453,142.34431,0.0008345234 288,609.4554,170.5642,29.691284,140.49702,0.0006133485 288,1.2744414,222.01402,18.777212,81.64375,0.0005759768 288,5.4011364,119.62822,56.393524,209.9522,0.00055870437 288,608.53827,73.6614,30.608398,114.99207,0.0003476716 288,617.2293,324.1038,21.917358,83.691986,0.00015067101 288,602.6813,229.223,36.465393,189.54536,0.000113597845 288,611.5642,368.06522,27.582458,129.97162,7.373623e-05 288,4.1230226,227.93245,53.99643,235.50356,5.3106323e-05 288,583.6529,65.1102,54.907898,216.9979,2.8944738e-05 288,1.5297681,112.10344,19.20673,80.205734,2.0930225e-05 288,0.8605404,361.99255,20.303057,104.872345,1.1127543e-05 288,609.58264,1.0861198,29.564026,94.33238,8.522058e-06 288,452.89398,154.41576,98.36749,190.09517,6.5633158e-06 288,2.8316798,390.85956,56.412724,99.39737,2.4955484e-06 288,1.7246346,74.00262,31.531435,175.6388,1.0643826e-06 288,423.7459,55.97775,46.476227,159.71056,8.7906955e-07 288,347.27713,90.39453,117.59955,215.4237,3.7890246e-07 288,585.9924,0.0,45.058716,45.7852,2.2559907e-09 288,1.8342693,11.400567,33.19244,78.8287,8.919311e-10 289,525.22205,202.88177,24.73822,54.19464,99.6604 289,97.88753,193.36017,33.57373,58.95781,0.20651999 289,404.88022,199.62054,26.428955,47.305847,0.017902762 289,585.1955,198.4598,48.85614,116.48897,0.013824853 289,415.3334,190.7633,37.573273,67.12158,0.010865273 289,619.42786,161.85994,19.718811,60.490173,0.0062987455 289,617.9794,254.7686,21.167297,77.35326,0.0015723972 289,609.02954,123.97748,30.117126,145.02676,0.0013503177 289,80.20638,171.45071,45.870987,129.78607,0.0012233977 289,582.484,217.55339,25.409912,46.8571,0.00083415187 289,602.237,249.9669,36.50067,192.53893,0.0005377264 289,508.929,179.15126,57.815887,100.568344,0.00037374094 289,616.31934,349.35217,22.827332,87.18704,0.0001415245 289,612.6451,408.67557,26.501587,95.43503,0.00010053518 289,1.7178833,143.83107,19.119236,89.36087,7.2102484e-05 289,1.1040332,251.60138,17.406576,130.15854,4.1560303e-05 289,2.1240463,168.76503,29.300215,142.8127,3.8719514e-05 289,570.5179,356.2119,68.24176,131.59262,2.8689703e-05 289,615.10236,24.620918,24.044312,74.75547,2.6758122e-05 289,406.64508,101.51279,38.0289,76.31612,2.5995674e-05 289,3.3681772,284.28735,55.454353,188.80496,1.9374842e-05 289,0.85964113,324.96805,19.77503,134.89603,1.4903496e-05 289,200.24066,314.7963,83.796875,167.37683,1.126968e-05 289,71.45591,140.28079,105.50016,199.57715,1.07822225e-05 289,1.3743498,84.63635,19.026625,80.69107,9.829467e-06 289,471.36578,123.630356,143.88165,225.69914,6.144416e-06 289,3.6858335,89.89012,60.314976,216.98235,5.2994155e-06 289,0.9254167,418.2911,15.999098,81.078125,2.631655e-06 289,3.4931788,427.92947,52.539986,68.6474,1.0775805e-06 289,495.4861,0.0,49.751373,50.066715,5.3101806e-10 289,1.5425115,10.085769,33.635834,76.80112,4.3970053e-11 289,535.7369,2.2587695,48.09497,50.932972,3.382534e-11 289,471.03424,0.0,45.426697,45.465755,1.0462225e-11 289,381.24054,1.1692107,43.23642,48.40502,7.4046914e-12 290,591.84644,204.9544,29.375854,68.131165,98.85056 290,440.95453,182.38986,38.84607,64.828186,24.469748 290,572.24854,201.40463,32.912292,77.53903,0.83096343 290,510.4414,202.47372,25.96283,51.726105,0.6650717 290,573.33124,148.87146,58.409973,172.17642,0.08999054 290,552.183,169.83826,41.977173,141.5441,0.06780076 290,431.118,202.6333,28.555542,49.301346,0.06193585 290,7.460238,122.73375,44.70722,117.68643,0.020092886 290,619.5791,217.28085,19.567566,51.698517,0.013398811 290,500.89783,184.08984,45.40497,116.01541,0.0049652043 290,17.592733,128.55656,25.891401,51.11798,0.004629216 290,468.79965,187.4111,27.514313,57.045776,0.0042141182 290,25.428188,176.20529,44.05968,85.207825,0.0024580956 290,573.0567,102.14532,28.313965,54.924232,0.0021269142 290,610.06146,122.8558,29.085205,148.60922,0.0019255223 290,610.4514,211.00626,28.695251,133.98148,0.0015854248 290,48.933388,194.9088,27.695152,53.978683,0.0013182457 290,550.0403,111.77059,39.62036,92.12974,0.0006275702 290,586.1677,90.98205,35.263855,75.794975,0.0004586578 290,616.43744,76.17874,22.709229,85.53911,0.00018868044 290,607.5187,432.9041,31.62799,74.29651,0.00013521322 290,2.4311004,154.39754,30.3677,147.67494,0.00013447163 290,611.75604,290.5079,27.390625,130.893,8.9466885e-05 290,0.8622111,235.1051,19.069931,141.51398,6.3384694e-05 290,1.9813502,87.25397,19.912628,144.98085,3.0148092e-05 290,4.2657213,194.12073,55.725975,230.06183,1.316411e-05 290,0.80358565,325.77188,19.716028,133.74802,9.146985e-06 290,0.7591358,415.15433,16.2716,83.06271,7.299515e-06 290,569.0893,352.4061,69.726074,139.48688,6.9018733e-06 290,2.9846647,389.97397,56.46811,98.99359,3.2349483e-06 290,583.86365,9.8396225,54.858643,125.799965,2.0657594e-06 290,1.5973772,26.582306,18.969309,119.395905,3.077842e-07 290,355.56216,33.550976,33.95468,80.51271,1.07230655e-07 290,1.2886678,12.154759,14.4784775,64.15235,1.4731293e-08 290,489.13705,4.7164226,44.192047,48.228207,1.4844785e-09 291,129.42221,196.99765,22.182663,45.563156,0.049193565 291,599.4209,193.77812,33.331116,67.21303,0.030861184 291,569.13794,186.65793,39.518005,61.045105,0.020656403 291,620.6138,211.49484,18.532898,49.18979,0.0040327413 291,19.273422,192.66185,30.954742,52.24263,0.0027768435 291,475.53308,213.38234,23.870422,48.66484,0.0016321169 291,609.34106,214.26115,29.805603,141.09319,0.0010540312 291,512.49866,137.14328,42.481262,155.01804,0.0008856417 291,494.79907,245.43573,43.680542,104.85104,0.00072370307 291,0.99227136,225.94664,13.78684,56.70778,0.00053918676 291,40.045948,179.57382,43.036892,84.15747,0.00038935087 291,585.9396,110.04236,51.751404,219.13705,0.00031656076 291,616.85266,377.08786,22.294006,86.41559,0.00022760498 291,474.02768,116.46055,117.868805,223.94995,0.00019788742 291,2.5390658,201.1256,36.733612,121.62807,0.00012881015 291,587.00806,286.63437,51.489624,192.65396,0.000119204495 291,607.7549,430.9576,31.391785,73.65411,0.00010525279 291,3.272448,223.12186,56.654972,242.77179,4.069319e-05 291,2.155079,181.033,18.548544,76.31947,4.0470382e-05 291,0.8732357,331.53726,18.830896,141.77682,3.6044912e-05 291,388.98825,100.745224,80.58493,192.49318,1.7345154e-05 291,2.7273846,108.638054,30.44251,162.59839,9.205723e-06 291,609.7414,0.0,29.405273,95.06697,6.779309e-06 291,0.98390543,246.59065,19.25099,98.508224,5.9113277e-06 291,1.5260987,413.4453,35.07925,82.78085,3.6504591e-06 291,555.3621,419.7051,78.74628,77.49979,3.3903902e-06 291,610.2098,37.88716,28.93689,170.96371,2.5343884e-06 291,1.764131,86.78359,19.708092,87.71397,1.8008323e-06 291,1.7636654,11.812465,33.076286,77.69655,1.6376175e-09 291,586.2728,0.0,44.33905,47.39193,4.843891e-10 291,389.2121,0.0,42.483276,52.282803,3.546657e-11 292,126.93044,200.75183,24.164253,51.4814,0.109065905 292,467.0522,207.26456,25.728302,51.549805,0.004959786 292,500.00897,189.24486,27.82788,66.964066,0.0035590408 292,481.73154,46.258022,26.150238,52.28526,0.0030145668 292,8.086884,176.984,29.76236,55.330276,0.0025347436 292,93.60754,199.7974,35.85096,66.11615,0.0023380034 292,624.6498,167.03839,14.496887,45.09871,0.0015773205 292,484.8663,159.73616,57.957306,130.57558,0.0012596345 292,609.31366,340.1847,29.833008,149.11533,0.0008938553 292,361.0094,388.7793,22.24591,50.253784,0.00054782815 292,610.4575,153.46635,28.689148,154.68068,0.0005454655 292,1.8713534,140.51445,19.584988,93.26465,0.00048014964 292,2.544222,117.73575,37.3004,175.42236,0.00023658916 292,580.83997,17.120586,57.63513,106.69937,0.00017068797 292,614.94727,20.178843,24.199402,71.58988,0.00013605323 292,586.6682,175.12886,51.704346,242.8496,0.00012905805 292,348.96066,359.4669,45.227264,130.39761,8.8633285e-05 292,610.32635,64.001,28.820312,131.39969,7.335118e-05 292,1.3877035,207.21729,21.22515,113.946655,6.23788e-05 292,0.89262617,105.79357,13.887026,57.354866,5.3291147e-05 292,0.95471436,344.75668,17.919567,70.97226,1.4903582e-05 292,3.8162355,189.11931,55.193733,238.95302,1.0611457e-05 292,322.378,308.91385,112.07895,186.73367,7.149433e-06 292,276.35608,425.5504,74.24051,72.86807,6.793833e-06 292,197.56474,394.1131,117.92949,101.95395,6.4695405e-06 292,0.8792603,419.7661,16.76221,80.79953,5.2086352e-06 292,1.244782,253.28912,27.750792,149.7153,3.835892e-06 292,457.13086,422.0821,76.46997,73.905,3.2996138e-06 292,1.2759538,359.43622,30.979357,129.7066,3.1725056e-06 292,547.7344,415.5607,76.591064,80.260345,3.0728163e-06 292,424.81152,315.3088,78.63608,178.21991,2.6515365e-06 292,376.86472,443.7733,41.96402,60.03427,1.8921652e-06 292,385.6818,421.12283,75.37665,76.41467,1.3296093e-06 292,36.083813,422.5591,75.065155,73.94922,9.3181427e-07 292,161.30396,421.40488,72.64308,75.09711,3.7462033e-07 292,0.8503841,16.40769,10.909408,78.95929,4.183879e-08 292,1.3648292,24.298647,20.693207,146.43994,2.6450078e-08 292,1.056167,7.0779624,31.130299,61.579388,7.4127225e-11 293,450.50214,205.12968,21.252136,48.42816,60.250114 293,525.08765,204.57664,23.429565,49.341873,2.062276 293,104.783325,211.21,22.518188,46.033737,0.19132657 293,561.6577,222.03271,38.997314,85.85669,0.02811063 293,398.88824,212.44025,22.190369,51.421417,0.0064289006 293,72.400314,207.02147,21.540787,50.143753,0.0039849626 293,619.6863,227.9061,19.460388,56.58136,0.002829753 293,618.38544,37.34041,20.76123,73.88661,0.0018690831 293,548.088,181.01698,84.74036,188.95235,0.0018047292 293,9.086155,172.25688,30.36066,59.889847,0.0016076108 293,609.74005,143.29282,29.352722,144.67038,0.00074858865 293,602.7632,213.43774,36.129944,196.93753,0.00060355035 293,142.3874,202.44112,21.157516,50.21353,0.000535865 293,1.0136646,188.36403,12.960353,51.83577,0.00048030715 293,87.003944,206.95122,25.006554,52.089523,0.0002638431 293,602.3966,347.041,36.75006,148.05237,0.00013237118 293,1.2270784,176.08292,20.384365,132.29901,0.00010107613 293,0.66914916,229.43713,13.424663,50.76883,8.265739e-05 293,2.6152687,79.99466,48.634842,174.0217,7.791722e-05 293,604.05304,0.0,35.093628,66.98841,5.8344405e-05 293,1.8129183,127.5194,20.402802,97.29191,5.778027e-05 293,608.4069,9.091419,30.739746,184.82535,4.570657e-05 293,478.1989,243.84456,123.62952,223.47722,4.049687e-05 293,0.6614494,317.31537,13.73525,47.359833,2.8264256e-05 293,1.8258805,76.222115,21.230864,93.094215,2.560354e-05 293,0.9556877,409.39062,18.15827,71.20563,2.2898786e-05 293,429.8045,162.51839,79.863464,165.25972,1.7319862e-05 293,1.6992651,248.5385,33.57022,189.10667,9.569772e-06 293,45.560627,98.576996,86.877,171.33688,8.7932485e-06 293,3.800902,393.892,56.04944,97.815674,4.3782707e-06 293,1.0126196,350.66333,17.962355,74.00232,3.942242e-06 293,564.53033,0.0,74.61633,261.93604,2.7926437e-06 293,555.1781,424.58945,76.42645,73.16232,2.1502224e-06 293,1.4191977,7.557497,35.241566,91.91972,7.689747e-10 293,469.24823,3.0440464,43.401794,46.554123,1.996027e-12 294,488.507,189.74292,26.79013,53.578278,93.59946 294,473.577,192.70503,21.826202,45.93257,83.488396 294,555.07886,187.97194,24.257202,59.44403,32.78904 294,118.2615,173.52141,33.126915,57.10701,0.007489506 294,472.42172,158.86618,70.791595,107.277405,0.0072692432 294,21.551886,187.73633,28.798838,58.849747,0.0049152197 294,617.9857,209.3928,21.16095,79.0233,0.0012215185 294,538.9519,155.23189,70.87799,111.243576,0.0007316112 294,1.0829957,140.15048,19.117096,93.69083,0.00049171224 294,610.8599,130.13417,28.286743,138.33904,0.00047658032 294,0.6170386,234.62172,12.826219,52.022354,0.00036628428 294,0.7548169,119.36993,13.830632,57.599968,0.0002527679 294,3.6501727,101.91381,46.790558,162.92957,0.00024298816 294,1.2807887,190.34418,18.643528,125.9111,0.00020381986 294,588.0287,188.5489,50.30963,240.23766,0.00018736949 294,507.03897,95.33085,128.5145,236.88733,0.00015985673 294,617.0876,270.6695,22.059082,87.42264,0.000120515106 294,611.0951,317.56613,28.051575,144.89789,6.373396e-05 294,608.7991,442.16974,30.347595,62.46414,4.079861e-05 294,582.7732,0.0,56.373474,252.13115,3.5866193e-05 294,0.66339195,424.6289,13.812513,47.50531,2.8714612e-05 294,5.775788,191.05959,76.20097,272.7293,2.7100921e-05 294,584.04974,393.68597,54.93286,101.03201,1.6940961e-05 294,1.653392,240.49344,34.607452,198.95825,1.1728093e-05 294,0.92503583,361.3393,20.01009,133.30487,9.278331e-06 294,0.8996452,336.1961,18.3652,75.16446,7.4691693e-06 294,3.262383,397.08862,56.618633,96.88153,2.297797e-06 294,1.6079737,53.64698,19.201693,73.43982,3.3989417e-07 294,1.4535418,17.704832,31.658703,161.23642,4.4613233e-09 294,422.33936,1.2034115,44.074524,49.02643,1.1315038e-11 294,1.5537972,5.3684216,19.851143,60.10955,6.6832945e-12 295,497.10226,205.84543,20.789581,45.200638,98.60795 295,367.80276,199.48766,27.803253,51.662506,0.21420757 295,602.4168,162.93654,34.807434,65.82172,0.0711687 295,88.75863,170.17177,45.89335,87.65599,0.027061716 295,346.31268,203.3421,33.084473,64.98291,0.020115906 295,179.80103,222.06073,25.326263,59.72043,0.013460485 295,607.4154,125.99602,30.270813,70.201324,0.00804529 295,219.503,198.88362,32.930542,74.29924,0.004204613 295,585.9157,80.05739,51.772095,178.13359,0.0032272404 295,610.66644,58.943867,28.480225,62.14201,0.0026033835 295,3.04091,120.324196,37.167732,118.90876,0.0008183591 295,112.4272,201.34344,27.567474,58.448334,0.0007512061 295,620.58905,99.18482,18.557617,60.90296,0.00067838177 295,121.50731,165.38643,33.54843,90.86726,0.00066614 295,607.98303,438.25662,31.163635,68.01407,0.00031667703 295,62.057228,135.26231,37.247063,85.45802,0.00026629816 295,2.076276,104.061455,20.23457,85.00779,0.00013318959 295,612.8621,217.61417,26.284546,137.45053,0.0001246098 295,611.7637,308.59564,27.382996,145.88885,0.00011242537 295,1.741036,181.99992,20.767946,104.961044,6.656451e-05 295,3.9859424,147.94711,56.8912,234.18878,4.3975073e-05 295,602.1098,7.1126432,37.036865,69.74274,2.9168808e-05 295,476.91678,170.13387,71.03592,148.75691,2.6502277e-05 295,0.9810555,229.87738,19.612835,142.91025,2.371511e-05 295,568.30804,67.70608,43.20874,140.6817,2.1141672e-05 295,1.0671004,324.857,19.066637,135.66553,1.33906215e-05 295,1.037793,423.0652,15.874669,77.69101,4.802292e-06 295,3.7409863,338.46494,57.183064,148.97491,3.7737725e-06 295,3.2286541,22.553152,55.61821,112.60534,4.316624e-08 296,544.19037,204.66595,24.877136,53.25818,91.858215 296,214.01572,212.29228,32.479736,78.93794,0.24338472 296,609.35034,118.87968,28.842163,62.094063,0.09635286 296,465.327,199.6175,22.146606,45.966476,0.08566541 296,383.00922,196.1619,26.544739,58.434204,0.07992053 296,603.56085,51.981503,34.431213,96.410614,0.02364379 296,18.908234,139.72923,38.69872,74.47954,0.014993416 296,258.9645,227.019,21.755615,45.560043,0.013966165 296,49.06531,135.5504,34.847744,75.660355,0.013002686 296,96.448944,164.14847,28.365654,73.64476,0.0071142493 296,70.76008,135.90668,26.13501,60.72432,0.006722372 296,625.652,91.86745,13.49469,47.485992,0.005091182 296,177.97766,204.93094,34.348633,80.35361,0.004693434 296,621.0063,39.065865,18.14038,57.593826,0.0037256773 296,76.53501,139.15651,54.60305,131.91197,0.002993094 296,353.51282,217.61794,40.70526,100.72188,0.0020623736 296,344.1292,197.89749,30.986359,69.55151,0.0007195533 296,611.63257,144.08725,27.5141,146.51645,0.00041818275 296,586.18304,61.353485,51.28882,188.96155,0.00030258286 296,109.753426,151.11157,44.06962,125.558075,0.00020076348 296,1.4664689,198.82634,20.653425,123.63231,0.00013022442 296,5.824371,109.234245,26.89148,69.361565,0.00011117462 296,4.3136573,92.46294,59.09669,201.08598,7.651225e-05 296,607.9047,9.913864,31.241943,60.036636,7.52818e-05 296,612.56396,282.3222,26.582703,134.30484,5.247465e-05 296,1.286604,387.15845,18.411232,107.87729,3.719733e-05 296,3.9410124,389.64508,54.83189,99.90097,3.2522403e-05 296,494.63528,129.37161,140.71713,206.37527,3.059915e-05 296,600.9858,417.17584,38.16089,83.26651,2.1532478e-05 296,1.9638997,267.75888,31.860823,187.6394,1.0008511e-05 296,1.9005705,23.943913,19.092497,154.24101,2.2548485e-07 296,2.7256966,23.4589,56.355873,118.398766,1.6153821e-07 296,1.5574187,9.132575,28.756062,60.322258,6.409654e-09 296,580.9543,8.838461,44.867737,53.741364,1.7496369e-09 297,586.4169,246.30432,28.534729,64.215,99.88332 297,247.2288,247.46594,33.72844,79.37512,6.530632 297,384.0444,239.80246,41.13797,94.50534,2.3784313 297,366.4331,269.59085,23.005768,58.37552,0.25137702 297,42.093113,254.93196,31.165516,57.30977,0.21003427 297,491.63214,244.86865,24.62976,51.30597,0.08933039 297,199.24593,251.51334,40.630905,97.63132,0.06166803 297,384.21814,286.96262,23.560425,50.500946,0.012168975 297,570.4773,221.85956,61.0542,105.09207,0.009216414 297,7.2158465,188.85612,29.441303,75.194046,0.0051215775 297,182.73827,291.3746,35.07364,67.54715,0.0029009813 297,0.81638104,236.49844,11.772092,45.411926,0.0022387197 297,68.17202,274.32333,75.38114,175.64679,0.0018802135 297,18.978416,270.0727,59.366676,164.50787,0.0011049496 297,618.84625,275.68542,20.300415,82.775665,0.0007501831 297,1.962588,215.16185,35.767143,195.48576,0.000726102 297,611.4652,71.61752,27.681458,136.38863,0.00060951343 297,105.02522,186.50786,44.109756,113.43892,0.00047928037 297,9.897142,154.5268,52.38346,134.21463,0.000430424 297,1.5198951,216.06029,20.349176,89.70189,0.0003999155 297,25.695055,175.86029,28.540258,70.73831,0.00017128301 297,585.0064,68.983086,51.542664,223.6867,0.00014954453 297,609.25323,438.0826,29.893433,66.71637,0.00010962756 297,8.899854,456.4332,40.3687,48.78421,6.593731e-05 297,1.1949862,319.85803,18.731827,83.22604,6.1022547e-05 297,601.77374,254.41034,36.97412,191.14041,5.728526e-05 297,534.4831,175.28159,100.95502,223.89896,4.4448865e-05 297,3.0154102,394.33472,53.26299,102.785126,1.7832948e-05 297,66.54184,121.79878,43.025322,116.59424,1.6240616e-05 297,610.3775,1.2011523,28.769165,70.08892,7.4434283e-06 297,1.5535661,423.45016,18.464273,79.8277,6.7440233e-06 297,3.4698439,128.09451,38.861183,80.875824,6.450246e-06 297,423.0598,421.4627,77.14331,84.818085,3.305308e-06 297,446.6875,395.9024,121.39728,103.81375,1.2440546e-06 297,2.5500114,17.099037,55.505642,119.6874,5.3617043e-08 297,1.1673356,9.5880165,29.302216,55.095333,1.719666e-08 298,44.749958,189.5221,31.572186,53.145905,9.827655 298,425.86407,179.29216,24.279175,46.328705,7.72082 298,223.53087,198.58946,37.21678,120.26659,2.2543795 298,511.94434,191.71234,25.684326,53.30092,1.7424922 298,23.177599,197.49953,33.937653,54.476776,0.8499705 298,404.99307,182.258,46.974945,109.43591,0.7945899 298,386.79205,190.54109,37.340546,102.38756,0.07512358 298,219.05415,254.2141,22.202133,53.257584,0.047460604 298,362.97522,233.6383,22.882935,53.743713,0.023062631 298,9.546608,190.98373,29.553654,75.29239,0.021339744 298,183.43393,250.3623,22.867126,58.084534,0.013739223 298,164.18958,239.54436,32.644012,78.02574,0.010560263 298,96.18421,146.09923,35.98539,98.507416,0.009320679 298,41.98379,145.58011,54.159664,119.47009,0.008927975 298,388.83932,260.08463,24.512756,55.431824,0.0013533292 298,610.8534,114.055626,28.293274,124.78605,0.00047000582 298,180.16946,195.14345,41.523087,122.38139,0.000465117 298,8.379786,124.11193,39.597862,78.57325,0.00027199517 298,612.1576,221.03165,26.989075,130.89569,0.00019844758 298,4.141994,167.24928,54.514805,224.67027,0.0001816905 298,1.164572,207.92667,20.18247,134.36685,0.00012230757 298,608.81055,438.50656,30.33612,68.87918,0.00010994659 298,417.42853,251.9487,27.507904,62.52121,8.645781e-05 298,397.86246,152.26463,92.373505,207.84908,7.7229364e-05 298,612.96826,0.0,26.178406,49.497555,3.749186e-05 298,65.55702,132.8518,104.50014,176.27658,3.459853e-05 298,609.1576,4.0644794,29.989075,143.27959,2.3716782e-05 298,0.88813967,126.020004,19.476614,95.44063,2.0557136e-05 298,1.3668466,418.62756,16.815392,81.12384,1.226569e-05 298,3.4952116,393.65634,55.14647,99.27884,4.8019997e-06 298,451.78815,419.5922,72.474976,77.69229,3.3322422e-06 298,2.0723927,63.391323,37.119255,202.9787,2.537334e-06 298,45.54215,66.8801,45.262165,129.37772,1.908949e-06 298,18.620697,40.960308,96.96644,218.27437,4.940397e-07 298,1.5712175,11.743998,57.284405,125.23725,5.0346266e-08 298,10.76759,2.8250587,44.380264,57.308174,1.6992002e-08 298,150.58258,11.580827,63.01294,147.23318,3.6445398e-09 299,1.8572022,216.13416,43.642002,82.94504,17.524563 299,425.80545,195.18915,53.790283,163.81552,0.16696261 299,1.1484596,210.21011,17.58425,62.142944,0.08279407 299,425.1571,192.49495,35.758423,72.4987,0.053665146 299,115.252815,297.30084,35.651604,74.30954,0.038192544 299,595.1266,144.77022,41.50702,90.45984,0.009022246 299,315.41418,208.44144,32.550262,56.159485,0.0041321283 299,0.8839156,246.57292,12.932566,56.778427,0.0031685336 299,178.77386,258.539,29.424011,69.3887,0.0026226758 299,196.76663,215.41096,45.77162,132.92537,0.0017613422 299,65.88582,146.61902,41.90291,132.74335,0.0013683273 299,395.99713,203.10765,19.897217,45.092636,0.00075759256 299,431.12573,294.1901,38.625153,71.15921,0.00071029656 299,0.9835376,111.10355,24.003738,63.142097,0.0005926878 299,600.7418,179.47813,37.25403,181.94426,0.00041055147 299,45.94652,160.01996,24.714642,54.364166,0.0003112369 299,0.7761304,230.29771,20.017298,142.95546,0.0002317517 299,400.89124,279.75,40.668518,94.11514,0.00013749822 299,608.9285,439.42474,30.21814,66.196106,0.00010742723 299,5.19736,141.06224,80.66865,226.96187,7.438205e-05 299,610.4892,55.75416,28.65747,157.52121,7.00297e-05 299,608.3144,0.0,30.832275,111.58938,4.9706454e-05 299,584.81165,395.9593,54.335022,98.201385,1.8798308e-05 299,3.4565203,291.65103,56.270973,185.12378,1.8286266e-05 299,1.0283407,333.8865,18.123524,138.99274,1.2108624e-05 299,1.4557943,86.215805,41.042137,139.37395,9.268161e-06 299,478.79855,420.73837,73.942474,78.30243,8.955193e-06 299,1.2526506,139.29909,15.387788,63.934555,4.040258e-06 299,1.6837915,416.81436,34.422424,75.34186,2.3008186e-06 299,1.3349854,7.6062207,38.4738,89.5965,8.1769053e-07 299,565.57764,11.087025,73.56903,168.5595,3.8478493e-07 299,77.55521,3.1457617,118.76024,112.79072,1.0032164e-07 299,213.46146,7.317684,41.418518,52.258972,9.502193e-08 299,2.3535905,17.605892,83.81065,157.84166,7.360562e-08 299,39.918385,2.009678,45.398106,63.101772,2.9393055e-08 299,102.60736,0.0,63.950775,64.81254,1.0021444e-09 299,66.59354,0.0,42.669556,55.288177,7.7928386e-10 300,206.33794,224.00394,29.83223,76.07077,4.9008393 300,515.0432,202.56795,24.08844,47.59378,3.929033 300,605.42114,143.76987,33.262024,102.83655,1.4471154 300,173.74933,223.78835,34.514862,102.3123,0.10174593 300,589.54956,141.43993,33.160217,77.501205,0.036839556 300,51.039066,250.17017,31.243061,66.098694,0.015004486 300,38.78429,342.79218,37.543514,90.20593,0.0112800505 300,495.65695,346.98383,47.645172,90.296234,0.010499064 300,446.82236,191.75433,23.638062,52.47505,0.010178123 300,486.33658,230.43318,69.48282,191.76488,0.005681199 300,623.94977,203.08827,15.196899,52.5959,0.0018577774 300,168.37729,212.44849,77.22633,173.97931,0.0014044369 300,499.60986,276.51212,37.785645,95.20682,0.0009953863 300,117.02379,199.29376,43.723022,129.88947,0.0005784826 300,400.67847,205.67125,25.856323,51.493454,0.0005490923 300,413.86865,211.52684,57.453064,140.35185,0.00053571374 300,4.5246844,304.63794,56.68262,163.74472,0.00034115618 300,602.8297,218.25539,35.94275,160.7267,0.00033849548 300,213.73947,232.0664,61.838257,154.2887,0.0002130429 300,1.6011142,285.6133,18.79992,131.69482,0.00019262766 300,141.39534,339.27512,38.80809,95.45639,0.00010696923 300,564.6362,77.2491,71.33447,250.85158,8.893352e-05 300,610.44214,322.4051,28.704529,123.65704,8.499055e-05 300,466.11273,324.0837,45.8985,122.866,6.85739e-05 300,600.0567,415.74054,39.089966,87.27396,5.9598726e-05 300,1.1771191,110.80334,14.30389,49.31669,5.919547e-05 300,104.27279,325.61377,40.943413,118.93573,4.3126864e-05 300,118.35543,300.45734,78.65179,163.70981,3.359518e-05 300,1.6272738,189.51605,18.292479,139.59354,2.9198529e-05 300,3.5207684,104.39906,61.146538,256.49133,1.8656961e-05 300,1.3590829,116.35232,21.719421,103.83758,1.7915485e-05 300,608.8023,26.913315,30.34436,169.42406,1.1571211e-05 300,1.8942628,417.59964,32.1301,79.52283,7.410111e-06 300,110.09573,8.304017,81.526764,85.79668,4.3646796e-06 300,40.953644,2.5450325,86.876434,89.334274,3.114243e-06 300,1.7247006,8.987171,36.24449,62.03973,2.3378939e-06 300,154.3142,3.6762598,42.508987,61.6795,5.5847653e-07 300,407.07532,121.282135,26.063293,63.940994,1.8726614e-07 300,2.7435384,16.46394,85.88352,156.14809,1.0075809e-07 300,586.3823,3.4088104,43.325684,54.901203,4.107826e-08 300,220.22664,7.2381234,40.860733,52.258476,1.5927352e-08 300,248.08907,3.6553648,41.259384,59.3306,1.2357949e-08 300,272.7652,2.2093182,39.62912,53.07016,3.6932162e-09 301,197.95717,291.08167,25.810776,71.125305,4.7930517 301,149.92944,241.89647,37.79724,127.513535,2.1335492 301,137.1977,292.47284,31.099167,89.37631,0.90018594 301,180.95235,281.76666,27.495605,74.16458,0.12471111 301,454.56866,228.15366,25.98703,55.163116,0.08906844 301,406.5733,237.39574,36.40927,71.26402,0.0833056 301,156.69255,238.43535,23.546722,60.976486,0.03395362 301,584.94214,391.4535,50.38556,115.35458,0.011271619 301,122.92192,285.00583,62.55458,179.64612,0.008065176 301,177.8659,275.19952,54.599777,138.57483,0.0057066916 301,406.81906,303.13562,31.16919,68.71857,0.0036723425 301,482.70975,402.34964,94.03085,94.72281,0.0029720976 301,456.06055,236.25095,68.757935,178.28403,0.0022431437 301,12.524559,460.0417,37.82843,51.10498,0.0014616279 301,610.84875,307.75723,27.85083,152.49487,0.0013024008 301,616.3282,178.15472,22.454834,77.3069,0.0012286346 301,107.81933,420.74203,70.1137,85.27194,0.0010180497 301,535.7951,425.89484,48.98065,79.70709,0.0006953139 301,83.53439,443.00235,48.736435,67.89075,0.0005551607 301,1.2705404,463.63812,19.049593,47.508545,0.0003182705 301,2.3799,272.56787,31.479712,160.48691,0.00022310014 301,121.57306,465.16293,39.25511,45.983734,0.00021084298 301,4.126589,228.16881,78.52087,197.9489,0.00020763716 301,4.580101,411.6839,73.02815,95.902374,0.00017020424 301,1.5900164,352.6808,19.63134,139.0362,4.718219e-05 301,35.352894,382.19043,123.55592,125.10501,2.0161331e-05 301,43.4677,446.34454,42.01897,60.743134,2.013712e-05 301,1.638846,174.4499,30.01206,160.03673,1.6558344e-05 301,1.3461035,8.130368,21.745436,64.01934,3.6450879e-06 301,47.183258,5.6691895,89.25513,93.21832,2.7955696e-06 301,607.9654,0.14092122,31.181274,58.591854,2.5685167e-06 301,91.102585,14.525235,77.46292,183.6877,2.358537e-06 301,126.10642,0.52370447,45.967308,67.53592,8.8900435e-07 301,0.8431413,122.6619,20.648039,130.77289,7.7285483e-07 301,1.8781055,8.934362,55.78416,121.45597,1.6248379e-07 301,155.73375,8.158399,42.179596,53.76518,6.982638e-08 301,100.02033,0.0,47.295525,73.02045,4.9206456e-08 301,33.949383,1.3608724,49.21799,73.277626,4.165041e-08 301,178.51772,8.343985,41.00377,49.96192,1.4007398e-08 301,266.49243,0.0,40.667847,60.80344,6.7557515e-10 302,56.807728,242.35808,30.398235,72.03572,0.5549925 302,156.1625,253.62573,35.292847,92.3501,0.23232752 302,18.716492,290.77356,42.491627,133.29123,0.041983273 302,419.73367,276.23438,28.655304,65.08392,0.020738974 302,6.1907682,242.70828,90.67139,238.33923,0.0082909465 302,168.47122,238.95047,23.879013,54.698273,0.0078089507 302,46.39769,223.26782,60.028534,156.19904,0.005989198 302,524.0558,238.42062,84.45386,208.95584,0.0057702474 302,131.86978,238.14334,41.118484,119.69583,0.0028043124 302,2.1596615,275.93463,33.841988,181.53574,0.0024204953 302,601.70764,149.3567,35.44629,186.28593,0.0011358268 302,32.83985,227.9606,39.352654,117.884674,0.0005230475 302,609.09546,283.29382,30.046814,154.83774,0.0004810636 302,580.8408,382.2902,56.2558,117.95914,0.00046132226 302,64.771675,415.94333,83.90942,83.98782,0.00016629256 302,2.969009,373.7283,59.057842,127.69495,8.020235e-05 302,1.3528076,119.63399,33.447468,249.09984,6.0145612e-05 302,525.7761,405.0895,79.57898,96.95508,3.6893853e-05 302,42.814747,449.50052,43.43247,59.94818,1.707455e-05 302,464.61526,406.39,76.78488,89.40021,1.4963454e-05 302,0.92086345,241.44089,20.496748,95.095215,1.3350965e-05 302,500.4525,445.80835,41.34436,62.730255,1.0299857e-05 302,481.54303,96.215096,138.18738,270.73972,8.595748e-06 302,393.88733,448.27203,49.82144,60.445312,8.397589e-06 302,193.553,425.30637,74.87392,76.61719,7.580167e-06 302,611.9601,0.5218457,27.186584,66.171364,1.4637478e-06 302,1.570603,49.314167,19.846384,145.1426,5.1506413e-07 302,1.3147306,8.651733,20.79401,54.5074,7.176559e-08 302,13.443822,0.0,45.519714,58.392853,5.8842725e-10 302,50.161674,0.0,45.382347,55.996037,1.05543484e-10 303,143.20282,311.37,21.826614,47.93225,1.8278615 303,90.14344,305.18262,70.58947,152.25421,0.5055365 303,464.975,346.72934,34.584442,77.13779,0.064535946 303,99.02031,375.55234,38.210297,89.847046,0.062131554 303,109.323,297.82462,36.457794,88.64566,0.025251126 303,156.05496,308.68454,19.968903,49.407227,0.022654472 303,4.2332063,264.82718,63.45385,160.4808,0.0048215347 303,569.3441,232.55626,67.39905,192.19176,0.0038388397 303,63.58344,316.10425,63.334652,195.04242,0.0030567462 303,501.8926,357.59323,45.576508,144.02945,0.0019557474 303,612.23584,198.29079,26.910828,125.946396,0.0017412524 303,1.6437981,230.68774,21.26491,151.15509,0.0016991367 303,555.9663,441.6422,51.984985,57.833313,0.0011750079 303,614.20496,84.035065,24.941711,102.07913,0.0008145703 303,175.51588,213.45241,23.115936,47.7274,0.0006078804 303,1.2762886,226.12198,13.7312,55.084167,0.000607469 303,617.96875,379.10663,21.177917,78.42078,0.0006058456 303,568.37134,357.53583,66.380554,138.59518,0.0005561346 303,0.8460336,327.98587,14.041414,58.639465,0.00049499155 303,593.03455,450.32825,42.985657,57.083862,0.00040955975 303,92.40846,195.83698,35.434456,69.553406,0.00024479744 303,522.4893,430.66278,46.74048,73.16113,0.00017309836 303,1.729266,122.522194,38.53233,235.38141,0.0001659301 303,1.6148243,307.6189,28.897142,150.22586,9.6626674e-05 303,413.33865,138.84714,24.758331,60.52191,7.951554e-05 303,3.8170834,378.68863,57.733208,115.086945,7.193607e-05 303,438.1151,326.54547,80.83801,147.84314,4.241397e-05 303,598.3394,39.455418,40.72052,212.56393,3.2118838e-05 303,1.0983748,442.87534,21.640135,59.28296,3.1481777e-05 303,480.69028,310.4568,123.05887,189.53952,2.1980255e-05 303,410.64523,177.48097,93.35388,202.21672,9.715766e-06 303,406.01273,125.94527,43.544678,145.04976,4.6270843e-06 303,612.6441,0.0,26.502563,61.698055,1.664002e-06 303,1.007793,9.151486,28.76813,55.325886,2.1694339e-08 303,2.198519,18.686481,57.890076,110.378006,1.0062437e-08 304,455.17,184.96936,19.708282,51.216995,99.72596 304,438.487,188.12193,22.295471,52.92769,97.62966 304,353.0453,181.92227,28.93164,52.795517,0.10352486 304,613.56744,435.20804,23.19867,54.99698,0.094684154 304,123.993286,263.71527,31.46608,70.34677,0.056603614 304,121.10128,173.53857,27.409004,54.94197,0.023001954 304,183.45398,198.52814,25.33223,49.433456,0.021687837 304,107.79683,291.33987,24.642838,63.404633,0.018312545 304,504.4734,177.30122,20.437927,49.33342,0.0063481918 304,52.50903,268.82364,47.836285,139.69095,0.0038881358 304,617.93396,178.7957,21.212708,72.66203,0.002119121 304,585.0339,394.40747,51.64508,102.11911,0.0011693093 304,2.679826,141.54233,29.790007,156.53644,0.0009889369 304,29.433468,416.64133,77.25922,79.53281,0.0005183584 304,21.888662,279.63632,117.56391,197.83359,0.00045258904 304,518.4931,337.89563,46.57843,136.34741,0.00034564734 304,604.44794,159.11166,34.66089,187.64032,0.00032500282 304,1.7573406,418.09225,54.25937,79.67822,0.0002925778 304,621.54694,64.56658,17.599731,53.669617,0.00027803614 304,2.1159148,258.36743,34.650845,116.62567,0.0002084492 304,611.9413,314.12427,27.205383,143.75949,0.00019384577 304,610.78265,99.25798,28.253967,130.00125,0.000105727944 304,1.0762501,305.51495,14.20979,55.730835,8.03167e-05 304,1.6822445,139.45271,21.811705,51.075348,7.340135e-05 304,3.038143,186.46349,56.02231,251.13466,2.9550714e-05 304,524.7435,132.85326,106.08655,210.28447,2.0201365e-05 304,428.07492,136.36073,90.56259,195.96687,1.2602223e-05 304,420.04254,96.536,26.674591,62.72677,1.0693909e-05 304,1.3222828,307.58054,18.043882,152.0615,9.257525e-06 304,1.1868864,89.275536,19.560139,76.951805,2.4984633e-06 304,611.3994,1.3231739,27.747253,61.610435,2.4482374e-06 304,411.17557,77.637314,46.982788,152.69232,1.386187e-06 304,3.7000554,47.378178,81.605034,241.25531,3.293425e-07 304,1.6285483,17.60749,36.64884,64.3979,9.188553e-09 305,556.8527,205.48155,22.431335,48.03691,99.50775 305,456.58908,209.30867,19.405945,45.915863,63.263153 305,366.0938,204.2359,24.861603,47.852875,0.44914517 305,1.9499089,261.53577,60.320522,225.1691,0.2679214 305,436.58304,202.20367,25.657288,45.95677,0.17212017 305,1.7987411,316.1611,19.849983,161.0199,0.013289865 305,574.0963,364.32648,59.78833,114.18286,0.010836189 305,98.00193,311.90686,32.6027,68.730865,0.0058361287 305,0.0,391.33218,40.650757,111.433044,0.0031594997 305,612.2635,410.14395,26.883179,92.06787,0.0025299645 305,617.90564,199.2609,21.241028,72.53354,0.0021437993 305,0.5811605,246.65767,13.690645,50.361465,0.00049472635 305,133.90497,339.70294,22.719269,55.801636,0.00045234087 305,2.39448,178.39261,28.383461,152.81058,0.000266714 305,186.36513,217.18701,33.663895,66.7764,0.00024321787 305,1.813313,162.47795,22.865385,56.581482,0.00020301458 305,601.45013,155.25586,37.614685,162.62265,0.00016243542 305,609.768,297.64923,29.378662,160.4224,0.00010987687 305,120.19588,342.05255,22.358734,50.151764,9.0804926e-05 305,610.64264,79.49656,28.504028,147.96393,3.909356e-05 305,1.584375,209.91165,20.648888,47.00702,2.94482e-05 305,535.7197,168.22891,81.07172,153.22577,2.8951252e-05 305,1.2108985,263.94992,18.595095,88.57675,1.4831696e-05 305,432.73376,137.18643,161.4414,202.66653,8.601619e-06 305,610.5127,0.0,28.633972,66.84542,5.0601047e-06 305,536.31116,420.31906,74.90918,73.811615,4.947e-06 305,37.619514,69.68523,44.765,159.15373,2.0917132e-06 305,3.0193198,74.24224,57.470516,203.85608,6.7517556e-07 305,430.38828,109.204,33.020905,75.81185,3.983327e-07 305,1.549095,21.271042,57.782722,103.186775,1.8836866e-08 306,483.6891,210.98161,23.984375,50.112442,99.94508 306,467.41653,214.13147,21.973572,47.369537,96.47553 306,362.6232,207.12758,23.550262,48.087402,0.5257799 306,620.6178,205.82301,18.52887,58.348984,0.049807377 306,433.30533,200.0032,32.21457,51.004456,0.025022635 306,618.49036,396.37543,20.656311,68.65286,0.010036282 306,531.42456,201.93562,32.010803,56.01027,0.008332575 306,0.0,209.74922,12.882668,54.256607,0.007207432 306,584.1065,395.5526,55.04016,102.827545,0.00089246524 306,604.0095,173.93979,35.137146,119.400696,0.0005981287 306,40.471928,305.706,47.00285,104.52179,0.00043853847 306,2.0667431,317.11823,27.209162,143.3858,0.0003843227 306,6.382324,350.7295,83.45532,136.80057,0.00022889843 306,166.5849,218.04462,33.91124,65.91632,0.00022813544 306,0.55847985,192.02556,19.187956,120.275314,0.00017088263 306,601.9038,215.97496,37.24286,227.11214,8.358038e-05 306,465.55872,182.11783,56.678223,106.34805,7.5662625e-05 306,4.395238,181.19963,56.33888,259.9934,5.164111e-05 306,609.341,66.83979,29.805664,157.64929,3.4356533e-05 306,522.54535,171.90277,86.064026,144.548,2.3162083e-05 306,432.7198,148.72887,149.83752,211.82188,2.2434393e-05 306,5.5650816,148.82042,38.954224,75.10573,1.7107015e-05 306,48.79866,344.96176,21.75277,46.502808,8.154668e-06 306,1.5934912,406.04367,37.29366,91.9415,7.132951e-06 306,611.9754,0.0,27.171265,63.74948,4.440268e-06 306,1.6439145,116.22003,19.039177,129.71883,2.6638902e-06 306,29.057468,74.85351,46.10101,158.89597,1.6584002e-06 306,8.53268,67.786644,117.5142,221.53128,6.088057e-07 306,1.5773991,16.01924,37.762737,71.29834,1.0173149e-08 307,476.02423,212.57771,23.58142,50.162277,99.534485 307,492.8352,211.243,24.403076,47.544907,99.26924 307,538.88416,209.42542,21.749268,49.29242,99.151855 307,431.47324,198.00812,29.973663,47.50537,0.7484204 307,337.79675,207.67711,37.87201,48.96199,0.2751003 307,518.9532,204.97914,21.423767,49.741257,0.04024484 307,621.71375,206.76279,17.432922,52.058228,0.0064266818 307,611.41034,199.7175,27.736328,123.32684,0.00096517126 307,304.6149,209.67223,24.336792,54.1006,0.00083526794 307,520.3479,183.01395,61.865417,97.2323,0.00054891803 307,421.36578,105.66736,25.017883,60.39328,0.00023252833 307,2.3241992,174.89171,29.092636,139.75877,0.0001852157 307,472.5672,187.78912,58.746338,98.07672,0.00018257582 307,1.8353605,158.96184,18.95256,68.62276,0.0001511762 307,611.53827,347.17,27.608398,137.80139,0.00013668268 307,608.38916,437.01755,30.757507,69.3461,0.00012725315 307,436.9028,99.506645,22.869293,56.355537,0.00012474926 307,615.57306,77.055145,23.573608,76.39992,0.000102970036 307,1.3444173,319.0782,13.862386,54.26834,8.459222e-05 307,586.579,177.41946,51.926453,219.51508,6.408985e-05 307,601.42017,84.14355,37.60089,186.72858,5.4627788e-05 307,4.411986,185.44052,55.184513,245.55167,3.2453714e-05 307,1.865551,306.86502,33.1563,182.48239,2.7040249e-05 307,0.98455244,259.99127,18.453114,81.79462,2.534167e-05 307,0.9431474,416.24887,16.755587,84.88052,2.4924146e-05 307,484.3237,130.75774,150.1069,215.17137,2.2933142e-05 307,14.293878,90.102165,38.48703,83.764336,1.8169103e-05 307,1.338147,371.27075,18.189426,76.03525,8.846171e-06 307,554.8992,425.9665,79.491455,76.556854,7.253908e-06 307,2.4941227,420.41602,54.225677,76.77435,5.0354e-06 307,612.7158,1.0133692,26.430847,60.454372,4.540869e-06 307,28.421408,61.899513,48.149933,156.58441,2.5625175e-06 307,1.1965691,88.774765,20.211412,79.73465,1.7462055e-06 307,290.7744,426.89575,75.044464,74.76123,1.6920802e-06 307,451.8693,76.89144,43.684875,136.76572,2.2316458e-07 307,1.3960596,13.991081,39.19698,229.2197,1.5172853e-07 307,1.2110955,13.648529,15.398329,115.990875,7.3463644e-09 307,1.605957,3.385407,30.567707,62.303246,5.320197e-10 308,507.1868,226.5649,24.94754,58.66884,99.91029 308,534.64435,222.80685,20.359436,54.593506,97.94678 308,546.96515,213.61508,24.855713,67.427246,96.97902 308,436.94745,210.97452,31.974487,48.28958,11.213416 308,356.50916,216.21313,25.103088,49.048035,1.7976677 308,341.4644,223.44756,23.883728,45.44072,0.03075653 308,431.01172,109.4173,26.719482,64.44583,0.008388949 308,515.28015,206.05899,62.677673,93.3811,0.0058429623 308,570.03125,209.78766,28.825134,62.26291,0.0014161513 308,5.653578,160.32248,37.800262,79.50273,0.0008145532 308,610.8947,191.46123,28.251953,126.59914,0.0005688898 308,451.35242,103.79749,25.639893,62.911736,0.00047231984 308,70.806854,167.0536,26.834267,65.07416,0.00038798866 308,616.01434,79.26017,23.132324,83.865685,0.00037835457 308,524.13324,159.65144,99.97693,194.68266,0.0003218318 308,587.7851,205.57611,50.58606,221.81412,0.00031632115 308,611.69165,332.83688,27.455017,133.4479,0.00030800275 308,107.2656,206.10555,24.226082,54.93535,0.00030319585 308,608.87006,436.95334,30.276611,65.12637,9.972027e-05 308,582.4976,57.74889,55.516052,224.25981,9.787968e-05 308,4.01945,143.21547,57.390186,204.52083,8.3353356e-05 308,1.8539909,147.22383,19.601318,77.04739,7.235535e-05 308,585.2986,390.54236,53.52899,102.74631,4.9941948e-05 308,0.99469686,198.55112,13.220416,51.794235,2.574796e-05 308,1.1641684,333.8032,18.88369,131.16968,2.203037e-05 308,1.0119824,204.26414,18.569437,139.89952,2.16717e-05 308,4.4392414,385.2762,54.75174,102.7298,1.48006675e-05 308,0.96866536,414.28476,15.985106,83.976654,9.947194e-06 308,447.87747,90.42273,43.06781,132.18243,8.945565e-06 308,612.94635,2.729134,26.200317,58.48157,5.088754e-06 308,270.3542,428.12326,76.02222,71.513794,2.8707157e-06 308,328.4586,430.071,76.560486,71.54608,2.0423936e-06 308,460.9825,423.84576,72.86478,71.75247,1.462255e-06 308,1.8849952,19.513067,58.245705,119.523,5.157635e-09 309,580.8498,224.9857,29.115234,67.21434,99.8726 309,608.43866,220.55069,28.79187,71.11737,97.61836 309,365.83594,214.40349,28.402527,52.531723,1.629824 309,625.09875,214.80785,14.047913,50.77629,0.2846839 309,595.6172,52.543194,34.349304,100.08606,0.091170676 309,386.48398,214.12386,24.67212,54.034103,0.06411348 309,156.06805,191.38824,20.701279,47.90265,0.048638474 309,567.81104,220.5123,23.280762,51.689972,0.025418524 309,600.017,128.16144,36.480103,193.56348,0.022013716 309,605.3967,100.24849,33.10498,79.616745,0.006605933 309,487.17798,87.98982,23.21167,58.239456,0.006550854 309,59.51487,159.33983,37.98387,93.63034,0.003060654 309,620.72107,81.74823,18.425598,67.60985,0.0028926271 309,586.4398,197.81522,52.582947,276.4486,0.0021814974 309,38.32912,96.0837,37.643948,101.8007,0.0009377825 309,143.83516,212.85417,22.833282,47.966263,0.00091658597 309,2.6367912,151.69337,23.45219,53.385803,0.00080938835 309,610.8261,328.53537,28.320557,141.32812,0.00025934316 309,9.427179,152.97704,39.616783,79.960815,0.00018978109 309,571.3176,36.39678,67.80768,179.57745,0.00013805823 309,2.329568,136.3883,29.2011,166.78604,0.00011844863 309,608.86566,437.88428,30.281006,66.68381,0.000109267145 309,1.1685157,303.12848,18.559986,138.4578,7.222237e-05 309,2.326727,216.92267,34.250504,185.2197,4.9634975e-05 309,22.039522,82.146126,72.19335,183.16171,2.9635436e-05 309,485.6546,73.07501,42.38385,125.59767,2.4431907e-05 309,2.881281,301.20584,57.489098,180.67859,2.3318556e-05 309,1.4496778,370.52875,28.127396,121.89722,1.2806014e-05 309,2.8270915,83.30246,34.385197,89.28136,1.2573088e-05 309,612.2864,4.704828,26.86029,56.255978,5.0313483e-06 309,3.010363,19.54077,57.726135,126.19864,1.04139076e-07 309,1.2269727,9.237438,20.178078,54.26412,1.1166649e-08 310,418.1975,220.48178,31.777344,55.29071,0.74771935 310,560.8979,223.87971,28.634705,48.84575,0.18096925 310,390.03848,214.18834,22.653564,45.320084,0.07130253 310,151.89555,183.31674,23.637589,59.364075,0.042867973 310,50.687065,156.2165,39.303482,85.4572,0.0045635123 310,610.8736,172.62335,28.273071,59.561478,0.0025130718 310,617.5198,222.38542,21.626892,78.13481,0.0012941748 310,91.27014,154.10713,35.935783,78.402664,0.0010770445 310,273.74045,285.96628,44.35553,132.67505,0.0005972241 310,70.44097,142.92302,31.682999,76.63022,0.0005955605 310,534.7323,75.391815,34.052063,71.89868,0.00028780897 310,610.47284,341.52414,28.673828,140.51077,0.00025002615 310,600.12604,179.98906,39.02063,165.66576,0.00024438623 310,607.70435,439.95502,31.442322,66.798706,0.00018334863 310,620.4987,28.340584,18.64795,54.60192,0.00016576085 310,1.9120777,74.784744,19.881758,77.37813,8.1130645e-05 310,607.0215,1.1626335,32.125183,62.774624,7.238414e-05 310,600.96423,80.622055,38.182434,175.4731,7.0709924e-05 310,408.0185,127.432526,46.79355,149.54959,6.045131e-05 310,616.24347,56.248093,22.903198,90.57921,6.0190196e-05 310,3.8877702,155.3244,58.060368,232.90036,4.3323947e-05 310,1.2073189,224.25737,18.175337,66.14748,3.8706632e-05 310,1.1971427,342.2569,18.127226,129.56833,2.6278436e-05 310,1.2786096,170.43085,13.798944,50.52684,2.4183122e-05 310,1.5981209,180.55464,28.961382,141.24144,1.5891357e-05 310,2.0191684,262.61102,33.02454,185.62857,1.2551247e-05 310,548.6695,430.0446,83.78766,70.22751,1.2436577e-05 310,3.2798114,390.61807,55.84907,100.49344,8.430231e-06 310,2.3121014,66.19477,43.187683,139.7333,8.329123e-06 310,1.640337,122.1942,21.015802,126.73175,8.3269e-06 310,566.2279,21.287422,72.91876,138.1901,7.956927e-06 310,262.85107,425.47296,73.916595,74.218414,1.5447584e-06 310,493.9789,427.34244,73.95676,72.410034,1.5045082e-06 310,505.37518,36.949234,120.62158,225.56471,1.0020083e-06 310,1.9171697,13.878796,34.127167,75.34221,1.5576388e-08 310,580.2738,2.6095786,41.96295,55.45075,4.2870996e-09 311,472.05005,226.93474,32.45688,73.08305,0.15228303 311,609.1342,217.14764,28.547363,62.69583,0.12921134 311,594.54346,230.54227,27.816284,52.54895,0.118316814 311,620.7567,185.73285,18.389954,55.03737,0.005280136 311,140.57814,176.92865,32.144073,73.53615,0.005274198 311,495.76434,201.84023,23.376038,49.640503,0.0023487618 311,334.05554,220.46959,21.781525,49.456436,0.0021309378 311,601.1497,199.18027,37.64148,161.98364,0.0018450755 311,622.17084,267.43976,16.97583,53.66031,0.0013216696 311,85.16052,156.2491,36.909607,107.236465,0.0009997986 311,59.429596,141.83139,25.06327,67.20973,0.00042474543 311,613.9424,65.0405,25.204285,89.311386,0.0004066552 311,463.44928,120.66321,26.202179,64.62987,0.00024300578 311,610.1456,99.7916,29.001038,166.90082,0.00019935088 311,611.637,359.53885,27.509644,139.18918,0.00014231194 311,3.6716912,253.3212,56.223465,219.55151,0.00012557657 311,110.770546,146.77545,36.725105,81.8143,9.189747e-05 311,548.4597,61.039272,88.73236,203.38547,8.312767e-05 311,1.0755517,228.22766,18.72942,72.09149,5.812603e-05 311,1.3473324,366.81833,20.0995,103.47992,4.7858382e-05 311,482.62445,118.210754,25.656342,63.64479,4.0394923e-05 311,509.21268,76.99937,44.27939,94.51548,2.7786336e-05 311,1.8999081,98.11784,28.335415,132.89574,2.5402062e-05 311,2.374545,177.71913,33.68341,182.08208,2.5329007e-05 311,1.1028255,263.96033,19.084576,143.01062,2.259069e-05 311,1.2194052,72.67891,18.625252,72.37146,2.1652531e-05 311,493.22656,106.82235,35.087708,82.141914,1.6773927e-05 311,1.6472917,417.08273,35.364513,79.243774,1.3374553e-05 311,451.82104,85.47424,77.06799,186.18048,1.2969702e-05 311,4.0941896,103.738266,57.22093,197.65254,6.359152e-06 311,585.70953,17.82759,53.02063,112.97777,3.2267092e-06 311,1.0660625,137.11006,15.065992,58.559937,2.5734107e-06 311,148.55067,430.53223,70.160736,67.51538,2.262967e-06 311,250.46495,427.83063,73.61037,73.05658,1.5543877e-06 311,1.2075936,9.743772,19.732527,55.7272,3.6030436e-08 311,2.8899724,20.644323,57.114124,117.73145,2.1075497e-08 311,585.6611,2.5071697,42.92456,47.73622,2.9141947e-09 311,517.6721,0.0,45.886536,48.008972,2.5526678e-10 312,57.419968,137.13461,35.68017,96.13742,0.060932413 312,2.1801198,129.51802,31.56317,160.44054,0.04569475 312,22.233812,186.995,36.75689,70.521515,0.034518767 312,621.1001,224.88966,18.04657,67.47984,0.02375159 312,39.623768,156.6438,35.192287,94.17319,0.010890958 312,613.42035,88.90468,25.726318,78.12628,0.0067573166 312,603.32733,183.4169,35.15558,176.9343,0.0035870806 312,25.426313,125.527214,23.795755,62.415764,0.0020423862 312,15.518757,123.28467,78.78313,157.33786,0.0015809162 312,621.4097,277.01355,17.736938,61.683655,0.0010594408 312,362.87094,158.74548,35.45331,96.531296,0.00043754588 312,21.279251,94.39382,26.395668,59.987373,0.00037746184 312,589.3128,74.01416,49.833862,181.66835,0.00036229056 312,44.505047,100.00975,27.501469,66.08067,0.0003591539 312,616.7958,309.3414,22.350891,81.399414,0.00035191912 312,619.85223,143.19615,19.294434,68.229614,0.00016536139 312,611.36194,331.42966,27.784729,146.94373,0.0001333894 312,1.0548121,217.27263,19.409082,151.54002,0.000100277975 312,2.3244011,152.49657,57.67711,299.89435,6.78359e-05 312,609.078,438.92966,30.068665,66.25754,5.6630175e-05 312,1.3048698,83.436615,20.514242,94.90303,4.382983e-05 312,615.2347,19.247921,23.911987,109.84189,2.4559082e-05 312,598.1432,1.1344792,40.909668,49.397472,2.436559e-05 312,1.1205599,392.9476,17.601519,105.83719,1.47180845e-05 312,397.15305,160.29532,92.33249,199.13171,1.45852455e-05 312,1.0784863,308.79968,19.666769,134.35248,9.072444e-06 312,6.0862403,359.87555,79.46958,129.30603,5.9709314e-06 312,50.511562,78.098625,42.76563,110.57833,8.6767545e-07 312,498.8088,6.161722,42.884308,51.832573,4.8159853e-07 312,466.15784,6.2279754,47.05304,56.659176,3.645517e-07 312,524.7833,0.0,45.166565,58.12402,5.074868e-08 312,431.49054,2.3766634,61.06665,46.57916,3.8540612e-08 312,1.2254224,7.670949,19.619999,55.115128,2.8472702e-08 312,551.63025,0.0,45.55603,63.00224,1.21841675e-08 313,452.36453,208.8029,23.312836,47.478867,69.55598 313,552.1274,190.72562,45.850952,117.90994,2.9106352 313,562.1029,184.73587,28.11139,58.027313,0.36647913 313,580.8845,193.83742,22.640808,51.502426,0.0968942 313,466.1685,211.97986,24.368042,48.56436,0.030685686 313,339.12042,211.41664,23.61316,53.39247,0.0042934343 313,617.18774,206.79314,21.958923,69.002914,0.004053585 313,567.48773,261.2576,22.430481,48.85135,0.0037308258 313,605.18317,203.71329,33.38202,159.76694,0.0013307022 313,1.2010319,108.64497,36.859726,91.127975,0.0008571012 313,20.543844,150.08678,40.57065,88.297134,0.00043036902 313,89.764046,146.47113,33.33374,73.36731,0.00040568947 313,2.0901556,163.72192,35.70767,92.54291,0.00034901671 313,0.8119975,131.89174,13.134552,49.006622,0.00029891456 313,4.7362223,95.60325,57.19926,221.59824,0.00028896352 313,1.1484123,187.12029,19.972105,136.74852,0.00014998544 313,598.2052,76.109665,39.365967,182.05345,0.00014738101 313,439.12262,172.85693,55.36667,118.102234,0.00010934043 313,611.67865,296.0525,27.468018,112.72009,6.567524e-05 313,600.21906,415.82983,38.927612,83.71289,3.651727e-05 313,0.9686768,259.28873,18.574667,146.00269,3.0289186e-05 313,369.81796,136.33084,43.225983,92.323074,2.6864029e-05 313,3.4348764,243.63521,56.247334,229.14189,1.784993e-05 313,100.389854,115.896774,45.357918,116.3398,1.1640398e-05 313,1.100201,418.1023,16.763733,81.23172,1.0189612e-05 313,1.3211703,50.946953,27.240606,77.68421,9.395314e-06 313,407.30057,142.07082,143.4866,206.01735,7.707002e-06 313,1.5464869,339.46002,30.640663,149.93488,6.3715243e-06 313,3.0263803,423.77396,53.1237,73.74982,3.6706087e-06 313,608.4117,6.1337633,30.734985,164.85423,2.3538228e-06 313,611.9873,0.30941734,27.159363,58.688618,2.3026044e-07 313,475.9587,0.0,49.200653,62.826786,1.0103285e-08 313,447.37476,1.7003516,44.369385,52.797318,1.0241734e-09 313,424.47,0.6376237,42.785736,49.919147,3.5751083e-11 314,480.2332,220.58759,24.706451,54.94864,99.93933 314,603.4792,214.42142,33.226807,60.21817,0.24867497 314,581.6742,122.45758,55.599,149.25198,0.034599442 314,13.965831,217.3058,31.10905,52.86949,0.016607584 314,2.1121101,139.8243,29.435652,157.14159,0.009651494 314,587.58,197.78357,34.321167,67.40158,0.007855272 314,334.8964,222.82199,32.30954,67.12561,0.0041138027 314,464.37152,222.87032,22.867706,49.9821,0.004045634 314,541.4972,244.94272,34.047424,69.05304,0.002975279 314,1.2329245,152.458,16.564045,67.85066,0.0028997974 314,617.6779,148.40387,21.46875,70.10828,0.0015715396 314,80.10292,193.08601,22.95951,49.5309,0.00082614104 314,158.29741,198.18945,22.70343,49.39209,0.0006954917 314,607.212,238.1323,31.934692,154.91339,0.0004026303 314,466.41058,186.89044,55.862793,116.09683,0.00023796901 314,4.109782,109.73192,37.483116,91.43822,0.00023391152 314,4.399217,171.19781,54.56918,238.24103,0.0001843183 314,1.3724895,74.56806,22.681173,83.11738,0.00011716271 314,1.5588542,208.20547,18.200283,73.4606,0.000105544896 314,16.221056,156.20692,46.619415,84.06079,9.9043566e-05 314,608.947,437.89398,30.199646,66.17917,6.572486e-05 314,0.9937248,245.04527,19.037428,153.86522,5.817611e-05 314,405.57224,131.82399,25.954376,70.95801,3.847613e-05 314,431.5879,155.57347,134.8183,219.7813,1.7065595e-05 314,572.4516,348.13956,66.4895,139.0643,1.5932967e-05 314,1.1316016,417.97467,15.985327,80.048584,1.0395381e-05 314,1.709616,329.74762,30.865404,158.60855,7.1323257e-06 314,6.0382357,361.97736,77.64089,123.762085,3.7965285e-06 314,379.32193,135.40846,40.0979,92.53949,2.9035466e-06 314,611.9808,0.0,27.165894,61.412266,1.8617217e-06 314,1.4620312,29.062761,58.932922,229.33849,6.3894595e-07 314,1.0624846,5.66112,20.97759,59.853764,2.5103344e-09 315,524.55005,208.30379,30.40332,67.3535,99.95498 315,176.11124,210.98518,24.163727,49.66667,0.036209468 315,575.06726,89.8959,34.657166,83.70266,0.0017857838 315,334.00906,211.12596,33.80664,60.82936,0.0017111979 315,507.1507,173.55183,68.005066,153.51418,0.0010830576 315,611.58453,217.57367,27.562134,126.43515,0.000634538 315,1.0013709,183.83714,14.276068,66.45364,0.00047510272 315,613.93585,51.631374,24.879822,77.926285,0.0003556371 315,586.4885,141.65262,50.939636,222.99728,0.00027672833 315,608.49554,111.38214,30.651123,146.55017,0.00023471775 315,560.6748,55.56444,76.27789,187.78473,0.00021553217 315,613.6817,340.84317,25.464966,142.92044,0.00018114793 315,587.0428,268.3302,50.894836,194.89407,0.00012081339 315,154.27466,204.94794,44.17479,92.297,9.6052725e-05 315,1.8036915,158.90552,38.718155,86.665924,7.298303e-05 315,179.51982,203.61943,41.116776,86.681046,6.903749e-05 315,1.0088346,200.27402,19.860897,141.20358,5.5294608e-05 315,609.2348,435.00537,29.911865,67.52408,5.161147e-05 315,2.945651,104.26667,55.028244,202.66245,2.3436809e-05 315,1.1888176,337.7536,18.482622,131.40714,1.6881804e-05 315,1.1398877,120.48714,16.315947,63.72383,1.6614878e-05 315,2.0359278,242.3521,31.97739,188.06728,1.3730007e-05 315,595.59186,11.741537,42.93103,90.40172,7.757927e-06 315,0.84595627,417.71945,16.369495,81.96112,5.093609e-06 315,1.455761,64.85213,23.377592,160.34918,4.615106e-06 315,423.62527,85.829895,35.046356,80.88992,4.532761e-06 315,3.4155812,392.1992,55.926777,98.46594,3.4993009e-06 315,345.46518,429.56213,72.99875,74.12253,7.996299e-07 315,298.15863,430.25345,73.0502,73.45856,5.042355e-07 315,0.94921553,14.009154,56.665043,125.7713,3.9381046e-08 315,561.45276,2.3299544,65.82556,45.413807,1.9155777e-08 315,0.7360864,7.311354,12.206439,92.46261,3.842235e-09 315,518.0971,2.2805958,46.94287,57.845085,2.241827e-09 315,0.4629834,0.69053715,33.162525,54.049088,1.09244114e-10 315,436.03085,1.9545898,44.502594,49.63984,8.615686e-11 316,539.5949,183.37164,33.825134,61.684906,0.003040024 316,159.39513,209.95552,36.643494,71.84596,0.0030015549 316,481.4682,111.36086,41.995483,134.74994,0.0024702025 316,564.28186,151.74629,38.278442,93.41843,0.0022994203 316,7.331688,211.94899,32.961613,64.63774,0.0019020083 316,611.51733,213.81238,27.629333,160.65402,0.001308309 316,445.5487,112.772194,45.558075,143.30838,0.0005093559 316,585.52704,95.56209,51.772583,238.53307,0.0004912806 316,613.5443,79.26056,25.602356,105.30423,0.0003737345 316,489.97934,141.44804,24.849396,58.623703,0.000260768 316,3.2566504,88.51121,54.69137,210.93738,0.000120410106 316,604.72644,317.77908,34.420227,172.98608,9.5296054e-05 316,1.6226555,186.6342,19.179575,86.79643,9.514966e-05 316,15.163127,159.00262,37.044106,86.25043,6.1501036e-05 316,537.18634,61.50814,34.822083,88.05053,6.0084614e-05 316,606.4817,0.0,32.664978,64.01935,5.6404504e-05 316,492.85016,57.78227,91.90051,196.90028,4.0570085e-05 316,609.42224,436.6333,29.724426,64.99744,3.9636474e-05 316,3.9073415,157.21388,25.808123,75.55141,3.404018e-05 316,1.8203093,206.01768,32.301834,190.04945,2.9295203e-05 316,118.29173,190.42397,38.87172,138.69334,2.8751603e-05 316,1.8505257,79.63476,29.522552,102.50352,2.0383975e-05 316,584.80743,5.0086,54.15277,128.47876,9.827218e-06 316,1.2104973,325.92007,19.015106,136.53452,7.5260573e-06 316,1.1106544,167.79715,11.316681,49.103836,6.0754496e-06 316,0.9863599,418.5877,16.621075,81.08209,5.473616e-06 316,3.0599382,268.95258,56.917545,209.5976,4.7883814e-06 316,1.3283578,51.902485,14.423151,69.65065,1.558639e-06 316,2.8962224,424.1932,53.553352,73.25696,1.481135e-06 316,504.5147,8.595547,62.485107,140.76674,5.692678e-07 316,577.8744,3.0020998,44.592285,60.146984,1.241906e-07 316,1.0574707,17.054428,57.337803,127.25873,9.463938e-08 316,524.104,2.4825456,46.168762,66.106865,6.802631e-08 316,549.82886,2.0012662,46.443054,58.78716,1.8047572e-08 316,495.8343,2.795052,44.991028,60.401577,3.4264072e-09 316,0.64990723,4.347093,22.305328,69.71774,4.3285245e-10 316,470.5108,0.62633955,43.415527,55.4612,9.266937e-11 316,371.3129,1.6821436,42.87323,46.954693,1.0940587e-11 316,399.13278,0.07806478,42.392395,47.05643,3.92106e-12 317,431.81564,208.924,21.480927,46.490097,98.93567 317,420.2732,205.45381,19.90744,49.029037,96.616066 317,168.6517,214.37581,24.83075,46.794174,0.03626516 317,592.773,170.72438,43.737854,103.099686,0.033416037 317,620.9066,182.96126,18.240051,66.95183,0.004826383 317,608.13727,220.45404,31.0094,87.856476,0.0039321994 317,471.41068,132.8757,36.901794,127.41882,0.0037669626 317,58.399162,217.38063,31.27694,56.330368,0.0034359004 317,79.68287,195.20522,22.969261,47.500122,0.0026766574 317,569.29987,68.03851,28.366577,51.343063,0.0011047948 317,621.4546,263.13632,17.692078,60.345306,0.0008397512 317,579.50977,149.25916,38.828186,93.26814,0.0003717992 317,555.1053,81.43965,81.245056,230.71764,0.00033988414 317,0.36927655,157.64415,17.235006,92.82106,0.0001648858 317,615.5003,69.83786,23.646362,82.88097,0.00014693839 317,1.2211231,198.71167,19.186255,132.5939,0.00013634822 317,600.5976,253.26901,38.549072,196.50015,0.00010718674 317,412.53986,179.0956,53.682404,103.66441,7.3243944e-05 317,609.0499,436.6778,30.09674,68.9642,4.3590062e-05 317,3.1949594,246.91956,57.302246,214.87009,2.1315009e-05 317,6.5166326,131.62115,40.010403,96.69377,2.0098672e-05 317,1.0070549,335.11597,16.836048,129.09967,1.3941248e-05 317,573.62994,359.77527,65.51672,129.83475,1.1303273e-05 317,381.6184,125.80896,137.10315,224.3461,3.7372981e-06 317,3.054266,391.26172,55.396378,98.1044,2.4555281e-06 317,3.7564096,66.119965,78.64082,263.6365,1.5777097e-06 317,1.2366142,10.773792,11.198347,95.86128,8.101295e-09 317,2.8359408,17.165209,54.733788,110.61515,4.2677883e-09 317,0.8182829,5.0707617,44.70925,45.290714,4.1202197e-10 317,534.3095,1.8991586,48.769226,53.614494,5.2024562e-11 318,456.77563,203.68594,23.176239,47.989212,99.87198 318,441.13657,202.16011,21.211945,46.738586,83.85483 318,468.54428,198.20383,24.213745,49.69162,0.96926105 318,420.04437,195.14822,33.83737,64.132355,0.054140028 318,596.46765,170.6376,38.029602,74.16652,0.012956571 318,615.66077,189.73404,23.128052,79.23718,0.0037711968 318,584.7038,120.215904,51.43976,203.35535,0.00214029 318,368.61902,222.2199,25.6333,50.514847,0.0015112924 318,150.3842,203.80211,32.411545,65.14894,0.0012910363 318,438.4579,173.41751,58.048737,107.27902,0.00081950094 318,615.6842,53.99033,23.462463,73.24519,0.000600196 318,14.477886,213.22025,27.250477,47.264435,0.0004046354 318,615.89124,94.95044,23.255432,91.24565,0.0003593183 318,602.127,222.62985,35.324158,185.04666,0.00024077506 318,3.383288,137.20612,59.403927,220.66476,0.00013231148 318,1.5016545,149.7099,20.17934,89.15231,9.159255e-05 318,611.2843,325.02484,27.862366,139.24466,8.310991e-05 318,595.963,28.870007,42.182495,185.07164,7.150748e-05 318,608.6718,435.49167,30.474854,70.46979,4.527266e-05 318,513.9018,167.19072,26.3125,53.690903,3.9573322e-05 318,1.1495028,213.55524,19.12595,145.92456,2.0690843e-05 318,1.1395679,372.96484,18.166458,121.429504,1.3258606e-05 318,1.8417269,255.72954,32.968723,193.45537,8.261579e-06 318,0.85812503,315.37674,18.706358,80.47916,6.035786e-06 318,407.8284,136.82123,139.57883,204.9403,4.7066333e-06 318,3.3454525,391.32788,56.10641,100.20572,3.7594828e-06 318,1.2784994,14.1997595,34.371586,73.83859,6.9400397e-09 318,0.4548161,11.445577,10.572369,84.10812,5.3362568e-09 318,585.0172,0.12538248,43.95813,52.064495,3.9762466e-10 319,472.3722,193.68295,44.253418,88.65756,81.4111 319,465.26193,208.5131,24.203033,60.967087,1.7501503 319,599.0279,226.83807,37.07379,84.78079,0.06411117 319,626.36835,267.34305,12.77832,45.15927,0.027414164 319,398.0559,104.35671,22.641174,59.29827,0.015193578 319,603.41895,153.69424,35.727722,91.71724,0.0055539166 319,587.5981,105.72673,49.372986,229.2155,0.0051875436 319,27.152641,188.68465,53.45597,82.137924,0.002412777 319,1.4803549,213.90262,31.535282,65.52402,0.0020355494 319,625.16113,202.95152,13.985535,45.315125,0.0016643959 319,619.083,33.603626,20.06366,52.790318,0.0015113327 319,590.20953,188.39833,36.708374,80.75008,0.0007649075 319,606.1749,12.052605,32.933838,116.13328,0.00044344174 319,456.36896,172.7957,88.41449,170.22096,0.000199725 319,612.0547,249.56805,27.09198,166.95398,0.000105525774 319,3.3974953,163.03821,53.936554,230.56741,7.104221e-05 319,18.809174,148.87886,87.35678,170.1393,6.907048e-05 319,613.551,347.7513,25.595642,148.0065,5.2069565e-05 319,1.6115178,146.99785,19.011698,85.48456,4.2922446e-05 319,1.1230054,229.35912,19.853369,152.06401,3.1926502e-05 319,1.1018717,415.4049,16.122591,83.556305,1.1401425e-05 319,1.2710531,312.45862,17.744778,136.79962,9.166406e-06 319,3.8700457,327.6912,56.31118,153.72684,5.605621e-06 319,581.9839,3.5383139,47.451538,48.18383,1.0387042e-08 319,1.416722,11.893018,34.92125,74.66306,9.187922e-09 319,533.0939,2.8330405,41.28656,47.011036,1.0761338e-11 320,520.1256,208.14316,27.229553,72.9021,99.92451 320,537.7062,204.15987,35.394714,84.21901,99.366425 320,1.7636108,205.97128,29.659433,49.227005,47.493084 320,600.1854,186.29816,37.683105,186.79956,0.08507735 320,403.17676,210.40018,30.86737,61.181915,0.0068273735 320,520.8698,184.79013,74.831055,138.50656,0.003928852 320,616.95905,287.7153,22.187622,79.8085,0.0019697652 320,429.09958,84.32697,26.957245,57.12168,0.0018044178 320,553.1162,250.6562,20.34967,50.58217,0.0009218554 320,615.9805,227.45436,23.166138,91.88475,0.00085279945 320,2.591962,167.0753,37.187943,158.7907,0.00042766056 320,423.8281,63.340847,46.274353,115.476456,4.17143e-05 320,601.43604,413.50034,37.710632,84.409515,2.2735152e-05 320,1.0416423,215.28247,19.94519,163.13696,2.0804973e-05 320,609.8462,51.279285,29.300476,161.52365,1.9320814e-05 320,585.84,17.150417,52.35614,109.34302,1.690136e-05 320,1.2341228,330.4809,18.613914,131.40881,1.3652682e-05 320,3.6419222,289.85016,57.363964,182.49255,7.697042e-06 320,545.2649,105.25644,44.80597,170.78476,6.5455515e-06 320,1.2646282,91.003525,20.091242,169.60945,3.749107e-06 320,1.6280649,421.35416,32.58672,74.943085,2.720802e-06 320,1.7615039,13.147493,34.948647,73.73996,6.1501297e-09 321,576.5974,187.70798,36.704773,84.19647,99.9721 321,604.0724,180.85022,35.07428,91.60748,99.95832 321,147.57086,175.82094,18.737686,46.361618,9.85416 321,624.6693,188.86845,14.477356,50.783478,0.88379776 321,4.929663,84.45202,45.376163,85.6762,0.04009496 321,441.90073,188.64305,24.812988,49.96521,0.010393485 321,572.17365,154.85944,64.112305,169.62704,0.0050236722 321,515.33746,184.7682,37.31958,136.30754,0.00047659664 321,608.68024,439.31256,30.46643,66.30179,8.219266e-05 321,612.90686,339.73453,26.239807,142.64276,5.69344e-05 321,1.8577849,81.82527,18.93732,136.11679,5.6746085e-05 321,3.9288054,89.568596,58.799313,218.5025,5.5262342e-05 321,597.28955,2.6036916,40.479553,89.676384,3.11403e-05 321,1.221958,376.8127,18.254482,119.16974,1.2993297e-05 321,1.100634,216.42685,19.143469,143.23618,1.2033383e-05 321,3.7241814,237.3266,56.852448,233.0492,1.0379056e-05 321,113.12802,138.06752,99.61626,186.60115,2.3513996e-06 321,528.3549,17.70448,45.614807,119.036514,4.94395e-07 321,564.303,0.0,45.8244,67.36499,2.1351798e-09 321,537.32227,2.5177019,46.8656,56.004307,3.9241319e-10 321,1.6432308,9.384811,36.06739,86.482834,1.7922586e-10 321,471.22632,6.389455,44.186157,50.279785,2.575103e-11 321,495.26443,5.771149,46.006256,46.991653,9.641895e-12 322,470.39575,209.07912,23.351288,47.56984,99.41812 322,604.4316,201.91846,34.575073,99.23471,0.03320954 322,580.70374,98.48087,57.506836,166.7085,0.0064156842 322,622.6515,235.86035,16.495178,54.260315,0.0027861726 322,458.03668,180.23967,46.343323,101.6508,0.0020263921 322,480.15808,140.56377,42.3266,115.01218,0.0008550796 322,612.57855,71.98039,26.568115,105.78516,0.0006372281 322,504.08408,207.9098,22.972443,48.205093,0.000575599 322,614.6505,127.21692,24.496155,110.62962,0.0003712199 322,586.93677,170.10695,51.417908,241.31172,0.00036636848 322,2.6835492,126.43714,34.679905,156.53229,0.00025872953 322,603.089,318.68375,35.721924,172.35995,0.00019976898 322,608.8967,0.0,30.249939,94.28429,0.00018137472 322,446.46216,141.32152,89.664185,203.48952,0.00012299993 322,590.5184,145.87419,33.44226,75.83087,9.274594e-05 322,608.0333,432.96185,31.113342,70.8526,5.96886e-05 322,1.0534742,249.32509,19.383307,139.83482,3.578877e-05 322,392.51602,151.73824,90.26065,152.40071,1.6867225e-05 322,3.962002,206.63284,56.287987,241.12222,1.4547308e-05 322,1.4875501,100.89993,17.578648,120.34067,1.09187295e-05 322,1.2513013,345.50922,18.38505,130.53351,1.0832561e-05 322,1.2420369,437.4873,21.761883,64.84781,4.8229003e-06 322,3.4850018,395.7964,55.698,95.05075,3.1714528e-06 322,567.6704,0.46912923,65.255615,49.95978,1.5770088e-06 322,477.42044,6.833146,41.83383,46.782513,3.697336e-07 322,450.4535,4.908963,42.613434,49.08467,2.4232926e-07 322,504.44678,8.195946,40.911255,46.677864,1.3808507e-07 322,531.7371,7.3994126,42.299744,49.584747,2.4480107e-08 322,1.6562142,11.304922,34.72454,75.33715,1.9765873e-09 323,483.36908,210.73688,23.887695,45.836426,99.67038 323,385.19818,206.3424,27.3042,50.41635,72.58021 323,84.17786,200.57318,25.728256,51.923096,8.387752 323,152.16904,202.92123,22.482086,47.896973,0.01706476 323,619.1324,212.86732,20.014282,71.18785,0.006287823 323,528.4479,151.70331,44.074768,105.41214,0.0019801052 323,427.88794,191.52312,38.705444,76.295364,0.0014466416 323,469.95193,185.00616,46.85739,93.66626,0.0013712064 323,617.72595,270.80194,21.420715,86.03238,0.00063944265 323,602.4992,212.84474,36.64746,185.34785,0.00052801927 323,2.0609725,133.45808,31.063002,164.91963,0.000474696 323,608.6242,125.8605,30.446411,133.69897,0.00021769524 323,1.3636117,224.32368,18.674595,74.196335,0.00017269292 323,551.4555,146.31018,36.732178,81.92757,9.176252e-05 323,4.329341,115.770004,39.004852,80.70354,7.841712e-05 323,506.48172,172.1327,25.832062,58.341003,7.249052e-05 323,3.2641473,199.06142,56.69071,237.85777,5.039594e-05 323,502.42938,120.14235,110.98456,175.187,4.600464e-05 323,0.7309953,256.65338,19.096128,154.25427,3.9556948e-05 323,599.9243,418.62656,39.22235,82.62991,2.6653752e-05 323,1.0449601,421.89026,16.756775,77.49985,2.3831553e-05 323,16.354536,138.01537,46.54915,137.64082,2.2498843e-05 323,460.9724,148.01952,87.37341,194.30196,1.993249e-05 323,407.75388,158.02713,86.785706,149.11679,1.8489367e-05 323,70.36654,178.94165,58.712654,94.98306,1.8458146e-05 323,610.54553,1.7707487,28.601135,58.908447,1.2957005e-05 323,1.4882812,312.6809,31.778946,176.93915,1.2304659e-05 323,2.9787924,427.67032,53.347797,69.64157,3.847668e-06 323,5.5507684,360.74396,78.21653,126.70361,3.5294381e-06 323,37.882942,128.84607,140.35071,228.48895,2.1556677e-06 323,2.2636297,15.14767,57.10697,119.49969,2.8731117e-08 324,511.905,214.56462,25.741364,50.50615,99.89154 324,416.8444,206.91568,24.847748,56.464844,94.24793 324,585.94366,211.55646,35.010864,52.668976,0.30941868 324,469.4904,210.49724,23.270508,45.188126,0.11221332 324,614.6576,158.85768,24.489075,87.352066,0.0052373298 324,22.445297,223.87404,28.033173,50.329727,0.003682372 324,622.19836,238.47574,16.948303,57.50717,0.0012036157 324,610.0124,194.67747,29.055481,129.11363,0.0011638267 324,581.81055,115.63312,55.346436,180.33716,0.0008186495 324,143.45642,205.561,24.559433,45.739548,0.000716757 324,400.16675,180.19531,58.44815,106.57532,0.00046611298 324,493.38016,173.69653,57.467743,108.8009,0.00037679216 324,438.95844,167.85126,64.2706,116.41962,0.00019592512 324,616.0711,284.4173,23.075562,85.87204,0.00014800951 324,0.9401587,235.3213,18.091873,69.86153,0.00013105666 324,2.5532463,136.28468,32.79694,171.6133,0.00010800476 324,608.5949,442.25314,30.551758,65.38092,8.2702485e-05 324,603.2395,270.3372,35.907166,200.40912,4.6841094e-05 324,326.05148,176.0545,39.734344,70.13675,2.9082974e-05 324,485.48346,135.97557,43.50891,95.29016,2.4594237e-05 324,1.2874243,229.55316,28.427303,157.26553,2.2919281e-05 324,366.0218,150.40735,139.58359,207.09323,2.1094706e-05 324,461.96548,145.6767,149.51157,197.262,1.5388146e-05 324,1.1199471,346.13846,19.43309,138.73953,1.4932392e-05 324,610.8788,2.6600814,28.267883,56.31879,1.2988193e-05 324,1.5902206,87.70729,20.634212,129.97842,1.060826e-05 324,3.174162,265.7123,58.146767,216.4704,8.750784e-06 324,1.9409343,420.73328,35.008305,78.90277,3.348572e-06 324,2.6150196,18.126276,56.09485,114.71758,1.3878477e-07 325,565.7584,213.6491,30.88153,61.13832,99.94108 325,500.44162,216.02023,20.903229,46.105072,97.10114 325,513.81396,212.85463,18.486572,46.044662,96.2998 325,521.0694,126.018845,39.39264,77.20596,0.089403406 325,621.5482,178.58682,17.59845,60.917953,0.031269003 325,599.51807,125.70632,39.262085,113.36675,0.030832013 325,478.51974,160.87132,63.875153,133.0606,0.009462634 325,481.68335,150.60672,27.075714,58.960953,0.0030532905 325,506.80646,137.20152,88.04718,139.51945,0.0023620098 325,547.6126,188.20198,75.55493,101.30318,0.0014966402 325,483.7345,226.29295,23.909485,53.28926,0.001119814 325,617.2798,239.68826,21.866882,88.71103,0.00021898709 325,1.1380099,218.03159,18.554966,73.29947,0.00015850912 325,586.724,168.82779,51.589172,215.15207,0.0001033092 325,609.051,441.23907,30.095642,65.5574,0.00010055503 325,2.334108,115.446434,33.731785,182.05032,7.612606e-05 325,602.6752,312.86127,36.471497,182.72714,4.8201553e-05 325,0.96709883,249.53397,19.304985,145.04495,3.9227933e-05 325,3.1248894,219.50641,57.558525,257.09586,1.5345528e-05 325,610.9113,1.9063282,28.235352,57.68824,1.4340948e-05 325,1.0558692,333.76093,19.190292,138.8794,1.3840807e-05 325,3.96382,400.5408,56.501064,96.254,4.259248e-06 325,2.1601222,18.373222,56.1411,111.56129,2.872679e-08 326,544.945,210.85297,24.962769,58.71585,99.50549 326,481.75955,212.72993,30.773224,53.64946,90.01035 326,406.7871,215.7412,26.473907,46.071976,1.9402424 326,558.30023,203.19165,28.92212,68.1102,1.3161689 326,597.7103,197.90753,38.62982,118.50171,0.50398135 326,420.8006,221.273,25.328644,48.116104,0.028831108 326,574.4891,190.0199,23.762512,63.083344,0.016746534 326,612.32996,206.61266,26.257324,51.567825,0.012117389 326,594.3494,110.93431,43.653015,108.25296,0.0064958874 326,618.3831,117.75388,20.76355,59.51899,0.003072056 326,528.5247,182.33888,62.81427,117.66029,0.002640217 326,402.51782,188.37791,23.815796,56.71089,0.00091759174 326,466.51474,172.62492,58.0278,127.231186,0.00084197 326,599.96387,244.3617,38.278687,180.54922,0.00067981944 326,432.56384,257.1475,36.29486,75.61215,0.0005314109 326,572.2868,125.67463,25.139954,52.282127,0.0004215116 326,1.6340536,122.01356,20.237635,139.80557,0.00020259024 326,463.89062,224.99287,25.393494,51.42485,0.00015675034 326,492.72766,140.34831,141.57904,216.79619,9.041123e-05 326,609.1679,440.7276,29.97876,66.111786,8.2645485e-05 326,0.86525476,227.40157,18.972216,146.7882,4.2574367e-05 326,0.9880225,327.4252,18.964035,136.70584,1.4049064e-05 326,610.1377,1.6466634,29.008972,66.09887,1.127513e-05 326,2.7070801,136.35649,59.86046,203.71056,7.7965105e-06 326,4.128602,328.07294,57.51125,159.95844,6.921529e-06 326,2.171701,420.6191,34.639687,79.11206,3.11023e-06 326,1.9163542,16.831465,57.004074,119.629944,1.2444117e-08 326,515.3799,4.508509,42.68347,79.4263,3.48679e-09 326,491.52856,3.5749936,46.854797,57.129097,4.82578e-10 326,451.77542,0.7634863,44.112396,46.141914,9.962207e-11 326,532.8871,1.1390885,47.91925,52.09572,2.3771501e-12 327,517.99304,213.87994,24.960327,53.235596,99.93457 327,605.3863,216.26273,29.940308,57.009583,99.9033 327,587.4981,220.18651,27.673035,55.71547,99.77143 327,497.87198,218.00949,33.316925,45.89563,13.785575 327,599.82495,184.39125,35.880493,185.34169,0.24909273 327,623.3923,206.18501,15.754395,55.57863,0.20719683 327,570.6835,317.73932,61.35559,143.61731,0.009064356 327,537.59045,237.46454,36.3291,78.80914,0.0023379968 327,497.97195,170.74454,75.27286,172.50595,0.0011099431 327,612.05286,305.51132,27.093811,144.5416,0.0011037501 327,47.332535,177.69818,35.06971,66.41403,0.00040310473 327,559.97754,230.27992,36.185364,80.52403,0.0002755832 327,608.1837,431.19632,30.962952,72.04828,0.00019511979 327,621.16693,123.90089,17.979736,57.5194,0.00015249969 327,535.8627,80.78088,38.349365,97.06009,0.00010015249 327,560.52606,379.03232,21.204468,51.136597,7.006404e-05 327,468.3235,297.99887,85.105896,185.13843,2.3617742e-05 327,610.6935,37.68572,28.453186,133.19661,2.1845464e-05 327,1.20066,68.02094,21.611452,138.2923,2.1462934e-05 327,0.7847258,245.15988,19.098896,146.30194,1.3664968e-05 327,598.2451,9.282724,40.21173,79.70112,1.30985145e-05 327,447.88907,112.854965,32.359375,75.69324,1.1503906e-05 327,1.753003,131.64433,30.366371,146.6538,9.847595e-06 327,1.1825823,382.39597,18.66306,116.583466,8.532534e-06 327,3.5739665,249.82573,57.93893,228.66328,7.778404e-06 327,453.3954,94.40572,87.750854,181.11392,7.279521e-06 327,3.5996046,431.43338,53.46972,69.95053,3.1669194e-06 327,26.857895,429.52405,77.42301,72.39758,1.3557145e-06 327,77.45331,425.03708,79.97859,72.866516,9.2477626e-07 327,515.05725,57.313236,91.30194,205.59753,6.922912e-07 327,0.59490234,15.962924,56.27456,128.2277,8.867414e-08 327,580.625,1.9468392,40.48987,57.305424,8.485154e-11 328,556.44934,207.31346,32.967224,76.21681,99.95263 328,623.23517,200.02287,15.911499,48.26706,12.700338 328,455.87927,214.35208,30.720734,54.027893,1.002886 328,553.1899,77.41952,34.755005,80.65017,0.0055738133 328,611.6686,165.12248,27.176697,108.45686,0.0052845334 328,574.49994,218.5174,25.794678,57.827362,0.001153997 328,415.80032,184.06297,36.66324,80.98607,0.0009159551 328,1.1536808,209.39151,18.459066,72.339355,0.00064200297 328,617.7491,231.28957,21.397583,88.80641,0.00036173468 328,587.5998,124.02592,49.7218,198.24216,0.00017162162 328,537.47595,178.22722,79.264465,154.74525,0.00012225534 328,2.7891276,187.16663,31.846706,159.39807,0.000118419055 328,612.45233,53.303223,26.694336,131.58772,5.0640927e-05 328,4.103504,424.02426,59.607346,78.13043,4.6824032e-05 328,604.181,302.41803,34.965637,182.36969,4.2848744e-05 328,3.4589405,238.63318,56.682724,247.64917,3.870375e-05 328,1.4018588,422.24203,17.737656,81.60544,3.3786677e-05 328,1.1568856,252.73418,18.573992,144.74135,1.5904063e-05 328,396.89975,155.70647,99.95865,189.2548,1.29297505e-05 328,528.2043,74.49477,43.876465,112.07898,1.1090506e-05 328,500.69168,69.871216,91.36624,213.27072,1.0953522e-05 328,1.3693124,333.50647,19.145378,134.25928,1.0187047e-05 328,37.408955,426.4771,80.01274,74.225494,1.1155291e-06 328,599.082,3.2318425,39.90039,91.15736,4.6178505e-07 328,1.2692643,11.339997,34.94353,74.6802,1.6095193e-08 329,545.4547,217.2412,24.056213,47.569626,19.812574 329,572.5223,115.75257,36.58557,84.83083,0.59636575 329,595.7275,109.245056,33.595215,72.42618,0.032843832 329,558.0402,109.74753,70.69202,151.12952,0.010049604 329,529.09546,222.4486,33.887756,75.26076,0.0076260623 329,562.0888,128.57341,19.47107,52.629974,0.005724352 329,613.58624,82.75736,25.233154,83.52038,0.005150023 329,508.06427,220.60638,32.753967,67.24878,0.0047924942 329,438.0877,199.80145,29.84961,55.248917,0.0032657015 329,547.08765,131.79955,20.210876,52.042892,0.0025837007 329,542.3401,120.05373,41.570923,102.40765,0.0011201387 329,417.51187,181.73285,32.228027,70.581116,0.0006903663 329,611.5933,214.2127,27.553345,127.83319,0.0005174822 329,621.46075,154.31085,17.685913,51.81134,0.00041809664 329,601.56024,94.33918,37.577087,197.97388,0.00040357249 329,457.18646,166.66084,61.35565,115.468,0.00023949945 329,526.2524,153.34798,80.11151,172.09026,0.00023029781 329,608.17566,437.43765,30.971008,68.197266,8.213374e-05 329,604.0297,303.84464,35.116943,189.90918,7.0459915e-05 329,1.3147982,205.89087,19.791332,124.712494,5.4978478e-05 329,430.63278,114.20094,142.5228,223.80339,2.373416e-05 329,3.77098,183.53377,57.123272,215.89146,1.8783003e-05 329,1.4364926,395.6566,19.901646,104.392914,8.552688e-06 329,0.9227832,308.43936,18.582241,78.24307,8.476733e-06 329,1.5072234,315.20758,28.537243,154.14993,5.683632e-06 329,6.271042,359.28455,77.262764,130.9125,3.2265614e-06 329,585.26294,16.316277,53.48822,138.4342,2.4952249e-06 329,502.8211,141.19911,36.10211,91.06702,1.4594381e-06 329,1.4781853,14.415937,35.087906,69.62297,2.0733602e-08 329,376.08362,1.9330648,44.089478,46.417824,5.6394467e-09 329,435.8531,3.6694956,42.42151,46.639347,9.69673e-11 330,462.09058,207.40549,24.104645,50.976227,99.67811 330,524.0647,213.67096,23.247253,50.358612,4.5408473 330,512.7845,189.314,41.30475,99.67743,0.012553607 330,611.5626,89.92902,26.585999,64.30102,0.008577909 330,490.99704,203.07776,22.185822,48.336212,0.0067036613 330,600.9556,77.07472,38.19104,184.96999,0.0035182664 330,503.93668,201.87987,22.558258,48.72728,0.0027350874 330,612.45416,210.42079,26.692505,119.438126,0.0022248386 330,442.39487,168.31206,63.408905,114.31496,0.0012325932 330,600.274,234.34613,38.399597,203.80692,0.00026703824 330,165.1055,203.56058,35.303894,61.66635,0.0002414732 330,482.07724,138.02109,26.245361,56.48227,0.00020703292 330,620.13495,153.01355,19.011719,56.09932,0.00014405801 330,3.897518,205.92001,55.82576,242.60187,0.00013755882 330,611.8823,369.12274,27.264343,131.19717,0.000118318916 330,2.8931901,161.79672,44.996677,95.22101,7.590206e-05 330,586.1581,19.85621,52.62848,116.154335,7.521076e-05 330,1.1885393,222.03061,18.657011,74.50784,5.821146e-05 330,518.83856,88.384315,119.28699,207.39249,4.053172e-05 330,1.7446038,177.51198,18.673918,71.066696,2.8316977e-05 330,414.69733,126.430405,139.17041,212.1573,2.0896121e-05 330,1.3018888,336.91904,18.883688,137.99463,1.7311078e-05 330,1.4177246,438.72455,20.509014,62.28598,1.1722089e-05 330,0.79667073,280.69873,18.91496,79.72156,1.0691685e-05 330,3.8293068,393.94284,56.130264,96.49289,3.412911e-06 330,587.4962,4.67057,41.29315,46.097748,1.0180555e-06 330,1.367933,13.900036,35.05347,70.36531,1.706762e-08 330,518.2197,2.862274,39.91681,46.551697,3.4118083e-11 331,609.39435,205.13495,27.731934,67.86456,99.84635 331,445.44565,203.1678,26.526245,58.19603,99.47937 331,534.4997,210.07771,26.278381,60.93553,99.22889 331,462.64575,206.50766,22.128204,61.93567,1.7385304 331,0.7618791,204.02066,20.312952,50.004974,0.036223624 331,521.49036,189.287,62.95703,104.587906,0.02936608 331,605.4518,181.64146,33.694885,205.08214,0.021086033 331,499.67413,225.64131,33.890747,65.317154,0.0010527975 331,361.80917,219.3018,43.062378,102.306656,0.00030060808 331,586.2906,55.338776,52.177185,250.39508,0.00011741639 331,0.9923218,205.8203,27.049978,149.4344,0.00010251266 331,415.96817,158.75795,94.8522,194.21877,7.812198e-05 331,608.7361,439.2521,30.410583,66.40878,6.725917e-05 331,481.55115,148.17084,155.27454,214.57648,6.293211e-05 331,612.97253,330.61023,26.174133,147.68698,4.637023e-05 331,609.0935,0.0,30.053162,153.52841,1.3291876e-05 331,1.1901124,381.3348,17.577452,113.15234,1.0591398e-05 331,3.131836,117.44535,59.255978,206.18127,1.0306932e-05 331,1.966093,132.58762,27.706264,135.88818,9.006789e-06 331,1.1082625,295.48477,18.78289,134.1464,5.8189707e-06 331,3.3823535,264.1398,57.048298,207.11563,5.020296e-06 331,2.7852426,422.36423,53.466965,74.55533,1.5646527e-06 331,1.3668017,13.922038,35.040066,70.33879,1.5675548e-08 332,501.70016,207.87257,23.763214,53.419144,99.966965 332,519.18365,209.89964,22.662048,50.572433,99.72953 332,447.1392,196.4545,23.930878,69.063324,99.11074 332,427.84546,174.05872,31.738342,90.620026,40.474922 332,454.1644,163.79984,29.425262,84.008194,5.2022815 332,568.5295,55.049065,32.862915,78.641075,4.571919 332,591.7092,59.99491,27.561096,66.24134,0.017209912 332,604.5422,181.21336,30.560913,86.173935,0.004331995 332,583.6721,78.70055,54.550537,265.66174,0.004074366 332,474.68646,176.92558,34.431244,69.749115,0.0030893807 332,610.5049,208.4722,28.404846,134.0462,0.00115538 332,615.8035,286.2583,23.34314,88.768555,0.0005834179 332,431.09567,158.94331,63.642242,136.22017,0.00052300165 332,488.716,162.65428,66.77466,146.97551,0.0001903526 332,583.1636,15.535117,55.983093,141.053,0.00014444705 332,614.2309,58.99118,24.915771,114.637024,0.00011611531 332,598.77014,268.06882,39.658325,188.86057,8.3990286e-05 332,1.3597103,206.61407,18.896746,124.38046,6.701963e-05 332,360.38196,144.58862,97.3844,197.8406,4.903739e-05 332,609.26715,436.6669,29.879517,68.046906,4.2887827e-05 332,567.2485,51.608574,46.936523,195.54321,3.674658e-05 332,4.053211,194.27985,57.38698,245.81955,2.3987199e-05 332,0.9466663,271.50305,17.006466,141.19022,1.5258117e-05 332,2.3755658,128.92216,32.92676,165.43361,1.2492339e-05 332,607.20996,0.0,31.936707,69.69628,1.180254e-05 332,1.3146998,381.4323,18.115866,113.59515,9.916315e-06 332,3.2508626,391.55054,55.524452,99.73947,6.6409866e-06 332,1.3577474,13.075222,34.5564,71.666565,7.933275e-09 332,460.2494,32.03103,43.580414,111.13839,5.515317e-09 332,479.40674,0.0,46.838257,46.784367,1.976872e-11 333,538.08527,201.67996,21.519653,49.587616,99.94517 333,598.6931,205.56265,29.455933,68.55954,98.24877 333,585.057,208.91678,25.343506,63.083344,93.98268 333,495.81302,220.83453,29.78897,62.361908,5.110499 333,626.7918,209.01303,12.354858,50.82126,0.077065766 333,440.24106,152.14162,27.052979,57.279694,0.043960422 333,536.4234,139.9536,21.629883,46.102997,0.028990453 333,531.8218,156.08368,41.25586,94.78198,0.024661865 333,584.0128,148.38315,50.433777,174.74963,0.015000867 333,475.50302,166.28065,40.587128,124.62999,0.011232586 333,613.49445,173.86775,25.385132,109.240524,0.011053758 333,386.2927,195.82741,42.696808,70.449936,0.0036493014 333,517.86053,91.13944,27.37909,81.49061,0.0005794422 333,608.6611,64.33797,30.485596,172.92047,0.00057866354 333,1.0968018,193.67819,21.181347,128.49841,0.00010036304 333,601.83655,318.34964,37.31012,168.2959,8.135681e-05 333,486.92188,116.91352,136.0766,227.88129,6.844061e-05 333,373.4705,142.63203,92.246765,209.83574,2.884091e-05 333,1.8869905,242.61128,31.141293,193.1132,2.8773931e-05 333,504.5535,68.62003,55.0679,156.43768,7.4055188e-06 333,596.6376,9.210205,41.991882,84.822586,6.4735395e-06 333,3.4716325,390.09232,55.89239,97.38364,2.6679024e-06 333,1.1953971,439.46262,20.49679,61.381927,2.1876108e-06 333,569.60583,2.3598633,46.12854,64.85259,1.10940924e-07 333,1.4864486,15.162653,35.425148,70.37836,2.8918265e-08 333,429.96875,0.0,47.798767,48.869297,1.7551043e-10 334,551.1978,233.71068,35.763428,93.26799,99.964676 334,413.1548,226.36575,22.367126,61.086365,99.67802 334,556.9502,148.4776,82.19647,194.36398,1.1513597 334,423.48395,225.34753,25.259094,46.38861,0.029717287 334,605.4196,200.64886,32.633606,165.9303,0.028617147 334,312.61118,207.54758,26.221375,51.190643,0.027893897 334,371.30878,230.97943,29.115112,64.65787,0.009195995 334,600.95953,156.62723,36.618958,104.088196,0.0076946556 334,621.8396,183.87782,17.307068,57.27942,0.0026467612 334,611.5773,0.0,27.569397,53.92444,0.0011815253 334,501.76694,165.51544,33.528656,81.10933,0.000618422 334,468.7825,182.12773,28.329163,57.07727,0.00035911688 334,573.3615,107.91693,41.983337,80.00386,0.00035309303 334,610.486,318.8424,28.660645,161.5137,0.00015422847 334,608.1567,433.74658,30.98999,70.30853,0.00014542123 334,488.7793,139.14021,86.60504,164.899,6.8104644e-05 334,2.1993725,129.87071,32.497417,172.34947,5.2448235e-05 334,580.13556,2.690586,59.01111,133.42973,5.1986506e-05 334,459.7186,184.54692,20.437256,48.759933,4.2696593e-05 334,1.0448487,262.4697,18.811682,145.29901,3.1835778e-05 334,4.0819564,270.96475,55.587948,200.38297,2.2024195e-05 334,387.41724,180.322,93.73227,200.9665,2.1927703e-05 334,386.2754,163.42618,37.649628,81.75818,1.5756956e-05 334,1.1803361,362.0001,17.952097,132.90121,1.3426719e-05 334,1.4767416,14.516322,35.20722,72.873116,2.380926e-08 334,480.45886,4.147744,43.70227,96.14047,1.2219288e-08 334,523.4031,3.1183822,48.572815,54.8936,8.934111e-09 335,433.3526,214.65092,23.015747,55.478348,99.54459 335,614.099,198.01167,25.047668,110.41182,7.5143023 335,599.4276,73.615845,38.63257,232.67221,0.089017406 335,529.3059,175.03362,38.606018,78.248184,0.014551915 335,396.19653,213.88661,31.780457,64.77327,0.011047899 335,526.00616,147.53206,24.9729,67.57341,0.003859579 335,596.31494,16.21007,40.59424,96.60573,0.002013958 335,587.7167,186.70503,51.352722,296.6513,0.0016178322 335,616.40125,258.15607,22.745422,104.69821,0.0006238485 335,412.45465,164.85414,46.54901,113.79765,0.000576908 335,617.8953,114.3096,21.251343,65.92233,0.00051759224 335,482.2275,166.29192,28.31192,63.166504,0.0003475367 335,607.6807,434.67242,31.465942,70.25842,0.00031357058 335,513.2739,111.73905,79.43414,152.62128,0.0001400738 335,555.00446,72.009094,29.100952,78.231995,0.00013850079 335,3.0337207,110.13126,55.824417,212.52911,0.00010807605 335,462.7235,165.47572,24.55368,55.391495,8.2979e-05 335,1.7837435,183.24814,22.104279,116.089264,6.135183e-05 335,406.81644,132.65768,27.177185,64.89665,4.467299e-05 335,611.83875,0.0,27.307922,52.523922,2.9133e-05 335,3.6474562,282.09854,58.031143,196.28143,2.4717685e-05 335,407.17868,168.74155,96.32175,198.48633,2.3045086e-05 335,542.5888,35.77047,93.10779,216.47046,1.7489963e-05 335,1.0746558,258.98663,17.69289,148.27094,8.976467e-06 335,1.2627174,372.8737,18.663813,125.44211,7.812707e-06 335,1.651753,14.755189,35.05373,71.12389,1.5113114e-08 336,324.109,202.9848,25.05362,45.55002,0.5711363 336,396.31107,201.5941,29.19696,56.795822,0.16859761 336,555.0172,147.60573,68.30176,118.46834,0.021354804 336,489.22543,149.09161,31.418976,68.86139,0.017923858 336,478.98666,158.32188,18.13861,46.715134,0.015488546 336,616.0735,131.65,23.073181,104.236465,0.0088508865 336,623.4054,29.010685,15.741272,49.49252,0.005653626 336,595.6229,121.238625,29.990295,72.12983,0.0046953913 336,423.18533,198.55876,25.163483,53.539764,0.003208953 336,571.59973,193.56923,28.586975,58.87143,0.0014616476 336,599.544,30.707462,38.876526,238.93915,0.00051998184 336,613.58307,9.008428,25.563599,108.013954,0.0004866311 336,580.5546,28.929415,46.076233,111.22456,0.0003017676 336,598.80585,175.7277,39.546326,194.62505,0.0002750345 336,545.58795,115.510475,33.877808,97.96969,0.0001470239 336,1.203562,227.61372,18.373053,70.35112,0.0001013203 336,611.11554,332.19083,28.031128,141.52402,7.234832e-05 336,617.2098,298.76215,21.93689,86.57242,7.035007e-05 336,608.95197,439.07986,30.194702,65.73468,5.9847225e-05 336,1.9076831,218.96255,33.706436,181.92062,4.9136823e-05 336,1.1325773,327.82327,19.752745,129.53241,1.539415e-05 336,3.4513428,284.67227,57.764698,193.69482,8.189832e-06 336,3.8877687,123.11427,58.691246,207.02376,4.1088174e-06 336,586.01,0.0,49.343323,64.08163,3.3123133e-06 336,1.7351359,405.6266,26.295855,93.10217,2.7887368e-06 336,1.28205,108.24999,15.795743,139.22455,9.755129e-07 336,524.58374,43.94407,81.21808,196.17368,1.724377e-07 336,2.9220753,23.12045,56.03721,108.28218,2.0724347e-08 337,423.27023,202.75865,24.562012,53.785416,2.6677544 337,45.50225,200.39746,27.681091,46.074127,0.61601377 337,590.7786,154.95665,47.004333,97.16539,0.5844456 337,61.542175,187.14151,30.911118,56.521515,0.3636697 337,469.97162,149.50795,25.081268,56.83734,0.087133534 337,500.2931,164.04686,28.476685,68.52127,0.058827788 337,515.51025,174.19829,23.746582,45.73529,0.0132067045 337,620.8735,187.71672,18.273193,64.02048,0.006696389 337,410.7543,207.69176,21.597504,46.309113,0.006033085 337,488.07605,150.27686,54.097534,130.30606,0.0057330434 337,469.9215,162.67567,37.87329,103.003006,0.0046423106 337,601.3088,47.72754,36.796143,86.26289,0.0025676123 337,570.9243,104.645096,42.768738,133.33965,0.00023348205 337,553.6654,62.504013,83.61255,232.7003,0.00022603113 337,612.2662,380.91833,26.880493,118.03876,0.00018379399 337,611.96155,0.0,27.18512,53.692757,0.00016904082 337,587.2442,163.45004,51.859802,299.14346,0.00014389586 337,613.38794,82.30036,25.758728,127.32986,0.00011706286 337,610.7321,255.28961,28.41455,151.27588,6.332464e-05 337,1.0400765,219.77834,18.249516,137.77943,5.653585e-05 337,3.6260076,202.35617,57.09052,227.04886,3.5009238e-05 337,1.135118,333.5295,18.267912,134.4978,1.9111243e-05 337,391.94034,167.89906,99.15967,181.39455,7.748921e-06 337,1.8705461,124.68227,19.549252,136.78453,5.390894e-06 337,573.2655,0.0,65.881165,95.87495,4.6998152e-06 337,3.277749,392.68622,56.033283,100.289,4.425168e-06 337,3.5071714,23.704832,57.526405,109.4487,4.3384333e-07 337,1.8163135,49.11808,16.375746,129.40427,2.8446715e-07 338,431.59515,203.76114,19.679688,45.960693,87.692474 338,515.73975,215.60202,31.689514,64.6835,73.37218 338,401.00204,207.64226,23.316132,50.64836,5.532603 338,442.27606,199.70079,21.104584,48.43094,1.1358603 338,501.3982,198.30682,33.29065,66.134705,0.053178582 338,599.5984,110.28524,38.252197,150.69003,0.033039615 338,449.40173,194.15912,31.158844,66.055786,0.02438512 338,621.5088,305.17966,17.637878,51.679016,0.008400388 338,326.2711,205.45749,23.199066,48.893982,0.0050660945 338,620.78845,153.96767,18.358215,64.95273,0.004159892 338,604.2,175.6383,26.976074,61.98587,0.0038743962 338,560.9359,177.87083,71.37085,174.88167,0.0030467429 338,379.7262,202.47473,34.01465,102.893036,0.0016919028 338,610.0276,272.57275,29.11908,125.814575,0.0010752116 338,620.0871,105.90551,19.05957,66.27192,0.00059652113 338,620.9013,212.47678,18.245361,57.49817,0.0005311576 338,514.0958,134.81276,25.23767,64.465576,0.00051887915 338,0.90661544,208.77875,17.745483,71.918945,0.00020862758 338,506.1387,119.55491,44.878693,139.30588,0.00014301084 338,405.23138,165.78381,82.93405,144.54755,0.00010685177 338,606.92773,0.0,31.742737,67.426216,9.165092e-05 338,1.3289185,201.74745,27.794611,162.73549,4.9118178e-05 338,612.5666,349.90817,26.580078,149.01163,3.4928864e-05 338,597.9138,103.035484,28.258484,68.892494,3.1436353e-05 338,0.9612451,343.1521,17.670734,130.50186,1.4541814e-05 338,3.4037158,223.89146,56.657444,244.52708,1.445745e-05 338,584.041,11.871114,55.10565,131.37881,1.1021717e-05 338,2.5551326,86.127975,36.060577,183.1241,8.075081e-06 338,528.355,133.9225,28.95105,69.250656,4.4818157e-06 338,3.284922,390.045,55.907963,101.2063,3.0783833e-06 338,464.16116,4.0860596,58.425507,45.44013,3.698126e-07 338,579.66644,3.7644238,44.27588,63.49368,1.1083707e-07 338,2.2661524,18.501726,56.298347,125.01074,7.915143e-08 338,0.9914811,1.4141977,20.739374,45.519463,4.704129e-10 338,386.58823,3.0221598,42.558197,52.95418,3.39246e-10 339,430.45438,209.2412,22.649536,49.65767,99.60968 339,603.91034,214.25806,35.23633,113.58865,99.55076 339,473.82294,207.8192,23.5336,53.83293,97.455864 339,494.4881,205.95387,25.465454,55.812668,97.220085 339,403.18256,212.82677,20.514008,45.884476,91.10462 339,413.4769,209.07764,29.133362,55.09259,22.48554 339,455.08096,202.52538,17.372864,48.010544,2.0870142 339,596.39465,112.27093,37.311646,128.59021,0.21760757 339,446.50922,176.98245,42.650574,88.38803,0.018200614 339,476.03586,153.44803,49.150177,120.2493,0.006059284 339,558.14026,111.70654,81.00641,281.09705,0.00584416 339,569.45654,117.66297,45.08142,121.43069,0.0020859954 339,395.44083,198.28069,35.87677,104.23564,0.0015859511 339,546.0118,181.03659,32.41858,74.5437,0.0005452585 339,609.71173,273.93893,29.434937,174.33109,0.00048137744 339,558.06287,175.92253,43.48694,104.7216,0.00039118985 339,608.7001,434.66202,30.446594,67.91962,0.00021944493 339,531.0164,81.58646,69.2207,169.5019,0.00013223402 339,2.208597,170.59813,29.54833,121.29503,5.2052885e-05 339,446.6707,140.15935,134.75815,195.78517,4.8024394e-05 339,402.6051,162.8613,93.15387,186.34714,2.3869996e-05 339,610.9172,2.5889714,28.229492,146.76913,1.8499526e-05 339,1.0643742,257.0509,19.095732,139.46655,1.3191318e-05 339,1.07111,372.81534,17.833603,120.28009,7.3454644e-06 339,614.1046,0.0,25.042053,47.845,5.0625085e-06 339,1.7616179,303.23395,32.54349,169.90314,4.1947505e-06 339,1.8193523,80.34467,20.245066,140.79526,1.1328932e-06 339,511.20023,4.8891735,43.148773,57.915565,1.4800892e-07 339,482.3833,5.447012,43.748535,58.72558,1.1834742e-07 339,387.53275,2.9906967,42.498566,57.46215,4.5847177e-08 339,537.8372,4.6293716,46.318726,58.258457,6.710179e-09 339,1.7357324,6.4172983,35.800312,88.047714,7.982658e-11 340,467.04633,211.76047,24.69693,58.57962,99.98026 340,433.7354,212.45793,24.420227,54.188156,95.77845 340,573.9459,208.295,31.197388,68.03664,80.172646 340,447.9526,212.5103,22.02481,56.469193,69.986855 340,532.1993,213.09653,21.437317,54.111206,46.499058 340,544.81384,211.99074,22.210999,63.0291,1.4118717 340,553.60504,177.27013,38.114197,108.62135,0.18233827 340,570.4276,138.56998,64.52771,140.14911,0.049544387 340,622.0033,211.42693,17.143372,53.016678,0.013816527 340,607.30054,196.01337,25.503967,62.585052,0.008267924 340,607.50134,100.90626,31.537659,149.73221,0.001728991 340,491.33496,200.59505,22.543945,49.26616,0.0014437143 340,600.25165,172.7954,38.14435,201.85454,0.00048797744 340,299.39297,169.66824,25.813446,52.94658,0.00046355563 340,492.74872,133.74998,126.858826,209.30486,0.0003269754 340,609.257,303.47516,29.889648,164.30908,0.00014740184 340,607.78296,438.62817,31.363708,64.44824,0.00014478674 340,448.84198,167.73868,68.25305,161.90396,0.00014164252 340,0.86196697,211.8673,19.328548,136.76967,6.17772e-05 340,608.78076,0.48524415,30.365906,66.18365,3.8762006e-05 340,560.3824,126.56964,36.268433,92.9312,2.142167e-05 340,4.1720934,207.84933,56.12813,223.15701,1.8480412e-05 340,0.8979224,334.50464,18.354708,132.69824,1.0070207e-05 340,3.2369907,391.89984,56.735283,101.48828,3.8239264e-06 340,2.287631,110.824745,32.84471,172.80536,2.1828841e-06 340,584.5996,11.258614,54.54706,134.5488,1.1628866e-06 340,2.7088053,22.210625,55.47044,104.13305,3.948198e-08 340,1.6650074,58.188927,19.174118,146.75839,2.341645e-08 340,543.0547,5.205807,44.00116,54.177998,2.5104303e-09 340,518.71313,0.0,44.603638,55.43571,5.0169163e-10 340,1.4886134,7.423949,29.720121,58.11664,2.116131e-10 341,525.9218,214.7724,33.248596,77.845276,99.95516 341,480.63428,218.71579,30.153229,75.16315,99.92613 341,499.73294,216.63419,28.980194,78.4935,99.74704 341,522.2654,208.92448,20.042847,45.00615,1.9914399 341,538.7506,205.1183,20.837646,47.151398,1.326798 341,599.6024,151.76157,36.293945,85.40445,0.07560296 341,624.90405,142.82213,14.242615,46.96237,0.0048552766 341,539.17285,160.78949,42.24408,111.02887,0.000993013 341,462.26334,202.96529,75.07944,129.9764,0.0007848065 341,1.3333423,214.77948,18.641779,70.10095,0.0006411176 341,588.00726,207.18797,49.741577,234.54958,0.00043549435 341,470.21622,164.98216,144.16061,206.36711,0.00039997845 341,300.16068,166.0653,35.90695,62.795746,0.00012286933 341,614.3637,3.4212046,24.782959,113.93021,0.00012109045 341,533.40924,150.1733,27.137207,64.51607,0.000105015555 341,2.1146843,202.3013,32.980427,169.28745,0.00010102226 341,3.2419403,126.323906,60.517227,204.064,2.6605701e-05 341,599.4529,413.03217,39.693787,88.04843,2.5843854e-05 341,1.01045,274.08173,18.83678,143.15994,2.3439714e-05 341,1.2588485,376.09683,19.091436,120.088806,6.218268e-06 341,565.06354,78.567856,74.08313,250.10231,5.807384e-06 341,3.8465252,335.737,57.803665,150.29889,4.3285745e-06 341,388.7624,161.15001,98.568756,191.1985,3.887339e-06 341,592.19135,0.0,39.394287,58.5846,1.8816129e-06 341,1.4582479,86.954056,20.029116,157.60736,6.0273635e-07 341,2.2196696,18.779425,55.74743,109.92333,2.4995902e-08 342,598.9459,234.82425,40.07837,119.1745,98.509285 342,597.3904,209.36691,38.278687,70.740845,1.0889783 342,435.3119,230.18767,25.157654,57.43593,0.056316197 342,286.42438,196.98454,22.424347,45.961563,0.02770767 342,553.665,171.51422,32.901672,75.42894,0.014395906 342,617.8411,266.77167,21.305542,64.34747,0.008970662 342,72.537224,213.1478,24.545013,51.838135,0.008032772 342,545.00397,165.15446,23.69049,63.428635,0.002542418 342,98.79932,214.55832,32.76393,57.647858,0.0019100446 342,450.2971,230.82484,32.215332,67.32765,0.0017812563 342,563.773,160.11922,75.37366,247.8325,0.0013001547 342,356.65167,213.64432,39.78308,140.8895,0.0009915642 342,1.7389169,188.03667,18.993233,73.968124,0.0004555905 342,67.33142,181.66397,34.6288,59.20703,0.00027458373 342,616.14526,307.38644,23.001404,99.28381,0.00011228703 342,612.6176,371.0356,26.529053,129.64996,9.928008e-05 342,490.14026,185.60892,35.615723,72.36069,9.343183e-05 342,3.787697,130.6694,57.50627,210.20175,5.0493552e-05 342,1.1918433,234.18756,18.887426,138.52023,3.2769036e-05 342,1.3015047,341.45963,18.661703,134.93304,1.6787339e-05 342,611.1098,1.8104362,28.036865,57.914253,1.3726119e-05 342,3.552505,249.58597,56.950954,222.70581,1.3120055e-05 342,1.639253,444.2202,21.614445,59.785675,4.626034e-06 342,3.6855812,398.695,56.347996,96.34146,4.1810113e-06 342,67.53675,135.78848,37.127243,78.618866,2.4245885e-06 342,325.39648,430.44162,72.896454,72.26062,3.1882513e-07 342,284.49313,430.93762,72.67975,72.33386,2.6835482e-07 342,3.0873764,22.776182,55.488876,110.680405,1.5734027e-07 342,1.6076196,62.984436,17.11773,137.73616,1.353719e-07 343,510.19604,211.8682,25.147644,55.140472,0.060327157 343,289.84576,192.17415,23.302582,45.970856,0.02346002 343,608.5727,189.38405,29.157349,56.67418,0.014450327 343,52.505093,209.56488,27.10291,47.642273,0.010119929 343,520.0205,194.01694,37.15216,79.16943,0.006814651 343,70.29758,198.74913,30.742027,54.977905,0.0034248987 343,529.2748,261.27924,25.545837,54.31537,0.003148314 343,611.57806,238.58257,27.568604,135.85191,0.0030364254 343,589.2669,112.74365,47.55121,225.48676,0.0013559062 343,52.790947,183.57071,27.72905,47.594666,0.0011921917 343,575.4341,238.62303,44.21173,111.849594,0.00057894835 343,316.5228,151.14833,41.105835,96.532196,0.00024250823 343,611.44434,325.85287,27.702332,152.14105,0.00012027284 343,2.4165666,131.38672,32.46546,155.67172,9.886445e-05 343,3.834787,204.45418,55.076283,226.0338,7.692189e-05 343,608.302,436.289,30.844666,70.9498,6.1527084e-05 343,1.3483366,197.69095,19.453379,125.49811,5.1084855e-05 343,1.3673178,352.15536,20.39143,102.62256,3.1322277e-05 343,2.9957912,387.12964,55.579197,105.15515,9.380846e-06 343,1.1074382,417.71368,15.868968,85.56497,7.650409e-06 343,596.71155,0.536875,41.789734,92.02203,6.4522387e-06 343,3.9612982,142.93341,20.45409,52.071487,4.1507537e-06 343,476.5355,419.0891,76.28946,83.81891,3.2176993e-06 343,131.87506,151.08798,98.6956,198.37064,8.761502e-07 343,444.04065,3.6532845,45.933746,64.13982,6.493703e-08 343,2.4712517,21.642227,56.53013,114.993286,5.173797e-08 343,505.24768,5.0124645,87.73169,82.45497,5.804916e-09 343,1.1182959,10.14723,20.00996,51.936584,4.5135073e-09 343,415.72644,2.8139534,44.244934,54.56284,1.9744433e-09 343,488.7371,1.7421062,48.14566,62.714603,1.8892268e-09 343,543.44604,2.3971453,70.80469,50.88658,5.2908905e-10 344,610.3924,221.64326,27.979004,73.68425,98.06558 344,597.96674,223.5504,24.318848,63.21489,2.6473374 344,575.31964,193.5206,59.941833,137.59961,0.09282805 344,339.58624,216.1739,22.992645,48.4507,0.0042295423 344,609.73663,306.32697,29.410034,146.23715,0.0037082308 344,446.07043,212.99709,32.057953,77.36485,0.0010992091 344,352.9517,219.10237,24.030212,50.186264,0.0008442784 344,610.4898,168.00131,26.920227,63.044754,0.00045279152 344,615.54047,91.7064,23.606201,91.33514,0.00017708752 344,584.7312,377.05893,54.415466,121.964935,8.817952e-05 344,582.86035,13.57681,56.286316,285.442,6.709484e-05 344,1.8828582,179.86449,29.438913,125.41463,5.4475255e-05 344,607.7485,0.64815104,31.398193,64.45282,2.7796088e-05 344,3.6049805,170.88365,58.13927,208.18758,2.5393729e-05 344,1.4207593,241.60722,27.859692,155.46605,1.4016597e-05 344,1.0126823,314.9954,18.129738,134.99509,1.05048475e-05 344,3.7758431,337.94193,57.77242,144.98209,3.685397e-06 344,111.044975,168.87383,80.81141,145.14867,2.7139604e-06 344,538.9254,5.308978,43.612976,56.595314,2.554149e-06 344,1.9655013,415.56732,34.771812,83.525604,1.3067131e-06 344,510.0322,5.3210483,45.34433,56.39588,2.6434356e-07 344,579.07434,1.8167578,43.550537,60.510834,2.3129529e-07 344,484.89856,4.9320183,41.856323,54.6347,7.804404e-08 344,2.4763932,17.554773,56.15517,115.10943,1.467302e-08 344,1.2065918,9.055168,28.936953,54.638695,5.5555853e-09 344,373.78836,2.0828712,45.826324,56.773186,4.7646836e-10 345,591.7433,213.82732,39.085754,108.54967,0.2822603 345,610.43317,213.4549,25.483643,59.26651,0.17639364 345,312.51895,206.00266,21.643555,45.950165,0.0061165267 345,622.6132,299.62677,16.533447,54.62213,0.0057846108 345,403.35184,219.31294,25.525604,48.625717,0.0057733185 345,341.91663,215.07065,22.09195,49.35733,0.0056745014 345,602.56,127.247734,35.01306,161.74435,0.004687106 345,552.049,215.63786,40.096497,107.136246,0.0018573061 345,570.34924,157.86166,65.64374,223.31537,0.0012567885 345,610.0915,112.36581,27.106262,61.605644,0.0011741456 345,425.1727,189.05461,42.345764,67.958755,0.00071326975 345,608.1097,261.02386,31.036987,86.25806,0.0005764384 345,610.845,318.34338,28.301697,146.69418,0.0001677215 345,299.25925,211.80754,26.176819,52.225266,0.00014816853 345,1.557081,169.94214,18.876034,72.876724,8.307544e-05 345,3.3940969,127.27319,59.51813,202.62732,6.41025e-05 345,600.09576,416.4603,39.050903,81.04935,6.036006e-05 345,1.1943115,202.78128,18.926083,131.93283,4.3377822e-05 345,1.0499455,342.6631,17.72702,132.22562,1.5283458e-05 345,1.7023926,265.901,31.680046,180.63812,1.22548045e-05 345,413.2988,146.1326,81.440796,150.82083,1.0610829e-05 345,610.9247,2.274121,28.221985,150.1436,6.2152913e-06 345,371.0557,100.20355,41.35666,149.37866,3.4856714e-06 345,1.6667293,76.844025,30.554123,172.96828,3.1726931e-06 345,3.105236,389.14194,56.26983,102.94443,2.4624321e-06 345,1.2397665,441.11246,21.741543,63.04657,2.1797596e-06 345,592.06366,3.3601758,42.629456,64.15686,1.5201124e-07 345,2.244616,22.613832,57.497032,108.78888,3.691359e-08 345,466.49954,4.009808,42.756134,58.515526,3.6133514e-09 345,438.9988,2.1357765,41.582092,48.977608,3.5278273e-11 346,425.66022,203.08583,34.49832,64.76036,0.5343053 346,595.84296,177.93752,42.317566,84.04939,0.046008945 346,348.40637,209.14098,36.024445,88.89058,0.00288849 346,622.28577,254.2204,16.8609,57.331238,0.0027604206 346,623.8945,210.936,15.252197,50.252533,0.0025489437 346,1.0234936,215.35681,12.033662,46.02362,0.0010086909 346,366.21872,215.66295,39.098328,98.77843,0.0009751513 346,617.8834,123.11641,21.263245,82.58623,0.00078419596 346,313.56656,212.10878,22.14801,45.183243,0.0007275999 346,69.19457,182.4075,43.813736,92.65576,0.00018158864 346,603.7602,229.71466,35.386475,164.5373,9.610505e-05 346,411.37164,113.477135,42.377747,159.46521,8.747862e-05 346,617.0198,325.27548,22.126892,83.58252,6.389724e-05 346,1.1889591,324.3473,17.402985,136.6221,6.35134e-05 346,1.3470044,223.8635,19.254034,137.55237,3.9938892e-05 346,599.56647,418.655,39.5802,81.6445,3.028104e-05 346,603.344,43.7708,35.802673,188.2489,2.7907328e-05 346,446.33203,161.47693,74.53363,155.85046,1.791118e-05 346,339.364,240.87935,25.15805,52.481216,1.6618713e-05 346,3.522995,322.6538,56.61963,158.72491,1.2353135e-05 346,1.0081161,418.11005,15.069515,84.26111,8.690406e-06 346,570.0501,90.240326,68.5965,229.88614,3.8557855e-06 346,2.3779557,164.95242,34.877323,160.62967,2.711451e-06 346,2.3722136,430.7775,46.36935,70.61334,2.1928327e-06 346,612.44434,2.9693213,26.702332,56.63384,2.0302832e-06 346,47.89981,160.1543,102.9314,192.43185,1.8662439e-06 346,416.83563,135.82678,20.392761,45.53737,1.5312263e-06 346,362.94086,92.41423,45.792786,150.59906,9.1338535e-07 346,1.6962631,47.778263,34.665592,189.46974,5.0423074e-07 346,2.6854835,20.979776,53.15236,111.350624,3.7891618e-07 346,1.2665194,24.922838,14.845177,135.66237,2.0403057e-07 346,1.1504142,9.698361,21.938873,54.006374,1.2050743e-08 346,471.90344,1.6495785,40.151978,51.519493,5.280426e-10 346,523.0894,3.6018198,46.027283,55.523327,1.732157e-10 346,498.59882,0.03360677,45.31543,53.13083,1.2976994e-10 347,520.23926,204.5347,24.304321,52.71756,99.95601 347,492.54797,212.5867,38.051575,83.68103,3.7990227 347,320.17233,211.30289,23.850922,52.987732,0.006302843 347,162.87392,205.65953,23.987518,45.6192,0.002965786 347,368.92056,219.30066,33.437653,61.362244,0.0018798728 347,19.513433,190.2244,53.39582,84.10562,0.0005387046 347,611.7628,162.04016,27.38385,131.37872,0.000335561 347,617.732,284.48953,21.414673,80.1084,0.00032796033 347,616.69147,70.13303,22.4552,70.322105,0.00026015096 347,500.89902,168.47383,70.638885,150.59752,0.00019595354 347,608.2631,5.2446227,30.33905,59.595627,0.00013553431 347,583.36743,8.602344,54.48004,120.767044,0.000115011244 347,608.85004,441.05252,30.29663,65.71323,8.224418e-05 347,374.02286,226.41936,43.30359,140.58553,6.191049e-05 347,600.4172,61.711636,38.437317,184.48322,4.636077e-05 347,601.1169,268.42474,38.029785,187.37454,4.5983932e-05 347,1.1595557,206.54395,19.807539,127.23718,2.5947182e-05 347,5.9866114,155.46486,87.62915,182.97603,2.5640045e-05 347,418.94193,108.23461,39.83612,152.00452,1.522987e-05 347,0.9492871,295.91608,18.191015,126.568634,1.2678988e-05 347,1.9417082,118.16159,32.206764,161.76404,1.0248827e-05 347,571.2967,362.2816,67.849976,133.25385,7.8748835e-06 347,1.0352677,379.85223,19.065033,116.81372,4.9496048e-06 347,472.2772,74.384514,39.50815,119.750984,4.7584363e-06 347,556.9476,92.40254,39.820435,143.12834,4.4726444e-06 347,577.435,0.56774414,44.470764,57.430317,4.2237007e-06 347,5.365908,358.34128,78.63497,127.82071,2.3188288e-06 347,430.85297,130.83505,21.248413,50.83841,2.032864e-06 347,2.9780145,431.28497,53.61332,67.68451,1.3282583e-06 347,358.47214,430.93005,74.078125,71.49661,9.585003e-07 347,316.2545,429.87064,75.65231,73.044586,8.220942e-07 347,504.4173,5.188413,45.984924,47.329624,2.342419e-07 347,564.0482,0.0,33.04779,45.652573,1.3007022e-07 347,1.3790772,13.947809,35.046608,70.95768,1.5552876e-08 347,521.4006,0.28606772,92.06311,79.00455,5.5654064e-09 347,390.77673,2.188047,40.82907,48.067177,8.097116e-11 348,590.84375,217.14334,24.708801,63.7117,1.8798783 348,592.8817,210.6305,39.108887,139.7991,0.8305129 348,2.0287378,211.25694,16.32578,52.78163,0.11847425 348,605.34686,218.49734,23.818542,66.3956,0.033304464 348,613.6861,245.79631,25.460571,83.716324,0.020013537 348,419.37173,203.80241,22.438843,46.380203,0.007222431 348,416.42438,109.33266,28.112457,65.84607,0.003342738 348,602.74603,122.389915,36.400635,94.43566,0.0029405947 348,616.5436,182.05,22.603088,101.718185,0.0027901796 348,547.9344,135.12035,89.535645,239.58485,0.0016631391 348,616.862,320.87698,22.284668,83.993286,0.0011992527 348,622.8116,49.403576,16.335083,63.724133,0.0006729569 348,1.9349837,183.77849,33.72921,114.12172,0.00040814438 348,599.1477,30.08332,33.283142,98.99177,0.00019727465 348,587.93243,261.03656,50.57599,210.52917,0.00019614275 348,355.80356,242.29065,32.425415,67.214935,0.00010989826 348,615.5854,461.299,23.56128,48.12674,9.1548536e-05 348,584.36725,7.049271,54.246216,227.59938,8.926695e-05 348,0.78418624,221.12196,20.001144,168.42296,5.1565177e-05 348,596.54645,405.72864,42.02722,96.8421,4.009643e-05 348,1.0535836,380.39673,17.15285,112.302246,1.8411312e-05 348,4.612925,163.09286,71.2796,205.83044,1.3694307e-05 348,605.8965,3.1849675,33.235535,66.036194,1.3147775e-05 348,370.4744,253.98076,32.59607,69.07829,1.2611528e-05 348,397.30847,77.58352,58.403046,146.66357,7.017465e-06 348,1.6254721,284.30264,30.563148,185.57758,5.7603993e-06 348,3.4255307,392.31213,56.606476,96.488464,5.661582e-06 348,467.7404,241.79514,81.34799,169.52023,4.093345e-06 348,458.7759,66.61781,80.5748,186.6005,1.1134369e-07 348,560.0948,8.988947,61.474365,51.436417,5.2883536e-08 348,538.3131,8.075951,40.772766,54.514812,2.2606525e-08 348,2.4247055,20.560925,55.337746,108.34488,1.1348037e-08 348,512.8156,1.0773926,41.350464,62.699497,2.5047087e-10 349,327.9153,205.31097,30.64682,66.81537,0.0926421 349,608.40686,325.48074,30.739807,83.55771,0.012041976 349,603.8994,142.655,34.074707,74.04724,0.010791137 349,403.6077,209.48895,22.551636,46.737427,0.002222358 349,621.34283,377.59454,17.803833,64.12012,0.0013182481 349,589.1215,187.24336,48.55017,235.47466,0.001156144 349,604.5241,84.598206,34.478394,94.70364,0.0010031415 349,612.2416,174.74867,26.90509,129.81819,0.00028925357 349,583.3948,92.072235,54.43524,199.8479,0.00027756247 349,478.99606,110.93538,45.68564,132.63853,0.00025247014 349,604.1272,351.57166,35.01947,149.52548,0.00012548163 349,546.6169,101.72842,44.045654,154.97137,5.3497068e-05 349,1.1506381,233.73135,19.396612,141.71744,3.748049e-05 349,1.5443051,212.63911,18.339907,70.34706,2.2843255e-05 349,398.02417,268.4413,32.341064,73.90219,1.9799454e-05 349,1.150485,339.43994,17.414677,135.61221,1.6879776e-05 349,495.95584,80.80621,42.41031,108.07965,1.5297119e-05 349,615.08514,29.46811,24.061523,82.794495,1.1494848e-05 349,439.62308,83.78768,34.16043,89.20342,1.0881847e-05 349,3.664489,235.39618,56.724236,219.42398,6.9330367e-06 349,3.220205,123.82289,58.66281,204.3654,5.2191863e-06 349,520.17706,76.29702,41.736755,164.40475,4.3892237e-06 349,511.16058,68.2968,112.39081,215.08702,3.7991142e-06 349,3.0421224,387.87585,56.5951,105.432556,3.7713476e-06 349,570.2932,78.48685,43.917725,136.83774,2.7893752e-06 349,554.4087,425.60458,81.03241,74.28418,1.9991194e-06 349,390.45593,84.69357,41.732452,161.93724,6.442079e-07 349,331.53088,430.40268,73.46768,71.5202,4.3160657e-07 349,290.51712,428.50903,73.66089,73.889984,3.75804e-07 349,229.16483,430.48703,73.80347,71.854126,3.606277e-07 349,424.5542,36.234467,34.28119,96.37387,2.0097775e-07 349,0.5688233,11.687979,9.395204,81.77934,5.7761817e-08 349,412.26843,29.915964,76.80762,157.68364,5.308829e-08 349,1.3059407,14.660964,35.490707,71.24447,2.759932e-08 349,550.0262,3.7094743,42.35791,51.738014,1.3517251e-10 349,381.60938,1.3746843,43.836,49.70295,1.9389981e-11 349,434.48508,0.9003516,45.016663,45.596874,1.238132e-13 349,468.93396,1.1608334,44.540894,49.755455,1.7839571e-14 350,398.59262,204.34842,36.1268,78.301575,1.432884 350,585.98114,204.3669,27.737854,48.11438,0.09968918 350,322.4559,199.84274,31.839233,56.90161,0.028923558 350,435.34915,218.24861,23.002563,51.837967,0.027045468 350,612.2945,197.48996,26.852173,131.6083,0.0016155611 350,309.62762,177.05035,32.419434,59.090195,0.0010393134 350,433.23987,197.52228,38.8515,105.619965,0.00083544635 350,624.3092,132.51886,14.837463,47.933304,0.00070522225 350,609.9042,103.8339,28.802856,145.51303,0.00041107956 350,334.41412,201.96402,44.274506,117.129364,0.0003278684 350,616.6588,278.98038,22.487854,80.32901,0.00026067923 350,373.88126,202.751,43.410614,128.58322,0.00024061574 350,616.2843,385.80182,22.862366,82.570526,0.00017350657 350,1.0615821,205.05803,18.666739,70.93654,0.00012624938 350,615.3153,31.935255,23.83136,97.88957,7.607947e-05 350,603.71936,0.0,35.427307,72.79762,5.5573208e-05 350,485.1174,48.95848,35.91574,91.27496,3.8203296e-05 350,601.7404,321.67368,37.060547,171.4555,3.7201517e-05 350,569.9285,188.03976,67.921875,238.14062,3.6574987e-05 350,0.76648605,231.144,19.947193,146.47118,2.9703233e-05 350,568.01294,22.789936,69.24628,271.79382,2.4322037e-05 350,1.4471046,390.28418,18.154102,75.56641,2.1510763e-05 350,1.8536304,295.33466,32.503956,178.29181,1.0520867e-05 350,451.96606,251.20883,44.7753,134.2612,8.850288e-06 350,3.2433383,163.01683,58.818134,203.37114,3.8713492e-06 350,5.5123534,363.46457,78.711205,121.75488,2.5445554e-06 350,582.68286,439.13177,43.987732,64.738556,1.7871249e-06 350,2.313576,419.84106,33.94718,79.24133,1.345829e-06 350,277.3952,432.6422,73.30499,67.92706,9.4677165e-07 350,386.37177,431.49268,72.39975,68.27457,9.038553e-07 350,236.59454,434.04044,74.50308,66.121826,8.309903e-07 350,500.4469,5.5749807,48.8808,126.62825,1.4085823e-07 350,437.13095,22.418272,36.811035,76.52057,9.134929e-08 350,461.88654,45.334866,40.095398,130.49825,8.087836e-08 350,442.1609,6.8637633,43.70398,48.893322,3.8995733e-08 350,1.3730974,13.324265,34.868263,70.94219,1.0427299e-08 350,415.13388,4.8278193,44.86264,51.626842,9.950822e-09 350,486.29037,2.7874904,49.077057,60.50018,8.136463e-09 350,466.48267,3.845612,121.56555,183.70645,5.1864015e-09 350,582.52423,0.0,43.321716,141.2687,2.3430016e-09 350,568.9954,0.0,43.80011,63.20657,8.492785e-10 350,516.25354,1.8193604,48.445618,45.820316,8.03648e-11 351,307.44348,185.15627,27.281952,56.37947,0.012684003 351,424.56656,210.3269,33.70865,69.69037,0.011242529 351,607.4492,121.70878,30.482544,67.06669,0.0092552975 351,340.95096,226.34108,21.409515,53.006546,0.005106445 351,127.10729,205.29427,25.653572,50.05951,0.003133096 351,547.65564,223.37872,40.710632,131.54526,0.0014132641 351,614.61017,180.99883,24.536499,98.928696,0.0013870983 351,455.55844,248.29712,24.603333,52.176422,0.00089068135 351,598.12415,71.41081,40.218628,197.70009,0.0008358361 351,352.52448,233.37834,23.309174,52.30281,0.0007228409 351,367.5973,236.47745,23.21231,47.50537,0.0005537743 351,616.11035,359.16364,23.036316,83.58032,0.00045403728 351,2.1033318,194.72789,32.11549,85.63216,0.00032163912 351,621.18774,259.83292,17.958923,58.620483,0.00027428172 351,602.85657,197.44258,36.255127,211.96635,0.00026840315 351,342.54526,213.79964,41.19931,117.84505,0.00020341031 351,523.60126,246.14474,109.41351,221.70074,0.00016106162 351,93.50728,214.76144,27.502174,55.222626,0.0001604882 351,584.39233,386.791,53.979492,108.181885,5.0094684e-05 351,445.03604,234.08084,42.23825,121.97385,2.7639868e-05 351,610.66907,2.701592,28.365784,55.794765,1.5363144e-05 351,1.5124935,99.78444,15.535734,157.8658,1.32856785e-05 351,3.4137273,128.70044,58.870228,201.30539,1.168734e-05 351,1.2670826,366.96335,20.361626,102.69635,1.060749e-05 351,587.42285,14.871465,50.722534,117.43127,9.988392e-06 351,3.5084343,283.1404,57.442337,190.55133,4.8470065e-06 351,1.2085536,216.11292,16.564852,136.6047,3.1380935e-06 351,1.9692693,420.18362,34.661644,79.214874,2.1018873e-06 351,72.70193,432.93713,72.28431,69.56439,3.2806227e-07 351,0.54595095,10.72598,8.751442,82.86517,5.120489e-08 351,549.13617,40.11314,43.34314,99.2738,2.3435618e-08 351,1.4694418,13.58184,35.10391,72.29463,1.9119787e-08 351,584.24316,2.4385679,42.678833,45.100033,3.2145535e-09 351,457.9311,1.3095329,42.73944,51.14791,2.1154019e-09 351,515.8216,1.0406609,66.68756,57.057796,9.441787e-10 351,482.45236,0.0,48.397552,65.9481,1.6530598e-10 351,557.0237,3.0720313,46.47174,55.54659,1.3776916e-10 352,300.024,197.8571,25.462616,50.051163,0.07883065 352,69.386795,212.33995,23.755386,51.518417,0.014137805 352,529.12823,240.32182,40.128418,80.92311,0.0054339347 352,599.3281,170.92122,37.998596,81.07274,0.002141658 352,2.1051514,207.83821,25.743923,71.055984,0.0015552379 352,402.86075,197.13188,22.770447,53.251816,0.0010757305 352,53.176823,211.28568,27.673527,50.447815,0.00076214934 352,617.35333,248.91972,21.793335,89.04454,0.0006975454 352,621.4642,39.476593,17.682495,55.7315,0.00048094612 352,576.7605,99.69847,60.426086,172.71288,0.0004326435 352,374.4416,168.22766,31.53476,77.92813,0.00037067407 352,407.6008,183.29216,37.59253,83.923325,0.0003675461 352,617.773,202.0025,21.373657,71.15256,0.00033571335 352,620.70465,160.70297,18.442017,58.773285,0.0003246023 352,616.28186,383.84814,22.864807,93.82953,0.00024994937 352,607.5654,440.89114,31.581238,70.25552,0.00023103143 352,2.5274823,106.60165,45.670334,155.7219,0.00012549086 352,0.87355715,244.11063,19.051563,81.084015,0.00011872322 352,612.555,294.04938,26.591675,146.49469,0.00011345363 352,588.11926,176.70206,49.954834,233.87936,0.000111496855 352,544.64014,132.24399,19.903076,46.228195,0.00011018266 352,610.0331,57.173073,29.113586,155.36377,7.743114e-05 352,345.12122,229.18376,41.086823,105.75227,7.387551e-05 352,537.30566,114.77002,34.921936,91.42276,3.4786386e-05 352,3.3982503,198.31279,55.932537,225.99379,2.9441853e-05 352,560.6483,393.65204,78.49835,107.038666,2.6923788e-05 352,1.6115812,151.07497,20.094093,93.553085,1.664136e-05 352,0.9663322,328.44742,18.832693,133.0281,1.40338525e-05 352,525.19495,96.28442,82.48706,203.41794,1.3331866e-05 352,587.6675,11.731107,51.33246,110.72984,6.9968423e-06 352,1.4594043,395.8095,29.160688,101.49716,3.9375077e-06 352,6.0034313,361.28064,78.85922,127.87979,2.1375872e-06 352,570.21234,449.0019,46.119263,56.169464,5.916468e-07 352,2.5524187,16.368237,57.127026,120.00125,2.8574599e-08 352,586.71875,2.3152068,41.461243,48.926,7.740033e-09 352,533.0773,0.95525396,44.276062,65.86975,6.4117085e-09 352,557.0965,0.40861493,45.408752,53.684586,8.655089e-10 352,413.69116,2.3294792,45.6774,59.07689,5.593648e-10 352,370.46414,0.0,42.30481,51.49489,4.159241e-10 352,447.31522,2.1000261,45.397125,48.374657,4.9245438e-11 353,433.46594,200.87375,30.530487,51.97763,3.3423777 353,93.67262,229.6917,24.205872,45.46135,0.25947812 353,423.05783,214.25752,26.318268,48.654892,0.11024463 353,7.7199564,201.68149,44.001324,77.32718,0.03291204 353,614.85156,175.34213,23.88556,70.23334,0.0072620097 353,409.72165,197.59851,25.347595,52.451553,0.003650659 353,597.771,121.178444,40.266907,155.70847,0.0029900528 353,3.042474,114.267944,59.809658,206.61414,0.0015644906 353,611.0542,205.30128,28.092468,150.36922,0.0010457888 353,1.6385934,177.15695,12.843351,72.01259,0.0008198902 353,552.4917,223.89276,49.761536,103.11569,0.0005020774 353,2.2862997,127.39685,21.408642,150.50278,0.0002782526 353,607.80115,435.85834,31.34552,69.08447,0.00024618837 353,0.6970956,244.67003,18.662445,74.15593,0.00010043867 353,457.07687,46.491985,38.59137,95.06413,5.2961524e-05 353,612.2573,298.5858,26.889343,146.71533,4.4395572e-05 353,608.0243,0.0,31.08783,127.99329,4.157529e-05 353,572.9034,363.8747,65.56061,125.79428,2.7070439e-05 353,444.6412,113.15912,42.211975,151.69412,2.088628e-05 353,0.85798746,270.11102,19.095085,142.42468,2.0776657e-05 353,576.83777,125.0453,44.87097,98.89183,1.4216446e-05 353,2.9480453,251.11063,57.0002,223.20428,1.215087e-05 353,1.2826701,364.2663,19.018806,130.18808,7.794131e-06 353,464.5176,90.81051,36.919006,99.43569,5.359399e-06 353,385.66464,424.35687,76.666565,73.56616,2.5705751e-06 353,3.2142677,429.25528,53.509567,70.59494,1.3266354e-06 353,331.29144,423.33432,73.65817,77.56195,1.2275387e-06 353,256.43918,426.4718,73.26932,75.443634,9.431256e-07 353,507.63794,422.5444,74.62683,75.41513,6.2132386e-07 353,574.0913,0.8300781,44.443237,53.135067,2.7150048e-07 353,563.7723,0.0,75.37439,182.49269,1.29261e-07 353,2.2604184,13.738164,57.101574,131.27419,2.474426e-08 353,1.3050814,9.014835,28.631226,53.07434,2.251812e-09 354,458.36325,211.42392,26.151642,56.557526,40.904396 354,415.69708,155.68799,32.6445,83.94733,1.5283351 354,345.88605,218.36787,23.240692,45.119003,0.19112098 354,438.01065,156.29189,33.404877,93.52794,0.0026007455 354,420.66937,102.82838,65.1821,180.52954,0.001994752 354,468.88434,173.51006,32.53647,79.03505,0.0014097401 354,621.17035,323.25928,17.976318,53.310364,0.00091416616 354,620.8522,146.98082,18.294495,60.38388,0.0007856796 354,600.5689,78.88656,37.61914,181.68979,0.0005160614 354,105.85063,207.71667,25.525238,45.305542,0.0004480001 354,426.83914,57.999603,23.8266,57.289955,0.00036142918 354,482.0271,44.854687,25.3078,59.858685,0.0003451513 354,436.80618,148.62364,20.08545,58.923355,0.000341979 354,616.7709,184.47664,22.375793,85.356064,0.00032618493 354,615.1179,45.72565,24.028748,85.58362,0.00024935062 354,610.43976,287.109,28.70691,128.24179,0.00021900944 354,610.68256,404.7361,28.464111,100.57016,0.00018583886 354,584.3527,223.73323,54.05017,228.4651,7.942763e-05 354,1.051775,239.81102,19.261276,137.29051,3.017225e-05 354,1.0876139,332.1174,17.662321,133.74695,2.4479436e-05 354,3.6669598,263.58542,55.502434,203.40366,1.852728e-05 354,1.6481625,162.16469,32.749737,162.56041,1.1643862e-05 354,581.5207,439.10516,44.200012,65.5925,4.6344767e-06 354,0.87655604,417.83484,16.080496,84.287415,3.4981529e-06 354,590.6235,1.892059,42.457397,48.187576,3.5123566e-08 354,1.5458008,11.759385,34.48546,75.6555,1.0461483e-08 354,438.0973,1.1215999,42.461426,53.42518,1.9064707e-10 354,529.36633,0.0,47.083923,57.58814,1.0088101e-10 354,468.06146,0.0,46.492065,65.818726,9.083591e-11 355,516.53174,216.68402,25.793518,53.5242,99.34042 355,509.03278,204.61322,22.82434,48.101395,0.074232355 355,453.94104,153.9905,28.108307,78.69928,0.018022498 355,469.8711,122.39209,22.155518,50.29326,0.005470736 355,500.3461,181.16301,55.30545,100.53862,0.005232432 355,609.9853,199.86826,28.702148,130.2749,0.0040612346 355,43.131992,195.36745,37.35365,57.668076,0.00283946 355,620.7137,224.91493,18.432983,56.33342,0.002808841 355,571.9274,226.47063,62.97058,147.82164,0.0026591176 355,608.75934,289.04083,30.38733,164.43225,0.0006115635 355,325.9122,222.338,24.733032,46.363937,0.0006038198 355,347.20642,221.06618,25.013336,47.402542,0.0003691842 355,582.7903,376.63116,56.04486,124.961395,0.00024299139 355,617.3379,110.227135,21.808777,88.28878,0.00012824325 355,584.0622,25.008268,54.014893,267.65866,0.00012679861 355,474.2538,140.45914,24.017181,64.78096,9.207687e-05 355,1.1263102,219.26286,18.774744,70.227005,8.958112e-05 355,592.5141,83.09064,38.672546,104.37067,7.493241e-05 355,1.8527572,115.0985,30.632309,149.09995,5.9231326e-05 355,465.5451,128.35966,153.48676,223.74123,5.7170975e-05 355,593.15283,3.1068654,41.38092,59.82292,5.5415232e-05 355,1.6985841,218.17796,30.917887,174.45586,2.1055594e-05 355,0.874279,326.29578,17.949026,133.94019,1.5291782e-05 355,0.80628663,273.55228,18.53492,77.83493,1.2429415e-05 355,3.6374123,153.93723,59.410656,194.9281,6.8386335e-06 355,3.1388168,318.42047,57.5472,161.50616,3.3140573e-06 355,1.4131788,417.89545,35.186836,82.00055,1.3020981e-06 355,544.62854,6.6700244,41.541565,49.036095,9.617376e-08 355,492.0885,5.6670117,40.855408,57.74225,6.735328e-08 355,518.0255,7.4300637,43.81067,52.8115,3.372258e-08 355,1.4645752,12.736302,34.545334,72.83794,5.694779e-09 355,455.7096,6.7148895,41.69449,59.859856,4.4531783e-09 355,430.90228,4.282194,40.2695,51.136673,1.436162e-10 356,467.07758,124.88892,51.925842,103.38137,3.1170177 356,490.0081,163.7433,25.871307,55.129333,0.26845348 356,572.07135,197.83133,33.000366,65.5076,0.08453695 356,624.6711,300.64288,14.475586,47.005188,0.02770276 356,480.90726,127.937996,26.427246,57.85209,0.0030297614 356,613.29736,235.04922,25.849304,117.54239,0.0020556448 356,611.2199,301.13028,27.926758,143.81552,0.0004795629 356,624.0513,38.64093,15.095398,46.48221,0.00035616593 356,51.519455,149.9579,44.537476,112.376114,0.0001342337 356,585.1527,161.22844,51.94879,208.00215,0.00013245287 356,455.55548,110.225395,98.8667,209.5162,0.00012976288 356,606.2034,3.7025099,32.943237,71.4741,0.00012528147 356,521.25885,151.62285,34.406372,77.84825,0.00011925041 356,613.6002,148.48552,25.546448,124.40596,8.482584e-05 356,553.36505,85.006485,78.26477,186.57533,5.2395946e-05 356,585.67883,390.9784,53.053772,103.0148,2.6462021e-05 356,1.1342514,217.04681,18.288181,134.0727,1.965958e-05 356,540.5301,138.45966,20.164062,47.27469,1.8640709e-05 356,1.1022071,362.0348,18.690983,130.78189,1.0815591e-05 356,293.9555,158.18669,87.006134,155.08101,1.0389949e-05 356,535.3695,114.188675,38.930542,112.5919,8.548366e-06 356,611.01447,33.226505,28.132202,156.73944,8.099051e-06 356,1.5051156,135.97955,18.470572,127.125336,5.839384e-06 356,1.6475245,273.83224,31.711489,178.29681,5.63508e-06 356,3.1711605,390.13586,56.416836,103.55252,2.5588545e-06 356,3.6634521,181.1534,58.88845,209.70079,1.7513992e-06 356,560.3559,1.0423014,46.850403,69.02905,1.1380606e-06 356,477.5787,5.030287,56.64273,53.003777,3.303756e-07 356,517.93445,7.1624727,43.731018,54.57816,1.9054411e-07 356,1.5133871,13.718718,34.993217,72.242096,9.274408e-09 356,457.09448,2.801709,41.25354,55.79901,4.697996e-10 357,501.68304,166.0354,27.79419,69.34236,1.8606997 357,516.2918,126.68728,37.46393,104.87002,0.1588092 357,543.743,143.38785,36.411743,92.31145,0.042225294 357,602.78955,181.56244,35.141296,83.38052,0.033888455 357,556.35626,114.76784,48.858826,112.45828,0.008998558 357,489.73224,111.41994,40.691345,96.54892,0.0053236573 357,323.36856,170.16028,38.75995,83.933945,0.004193472 357,564.97266,160.10057,24.921082,56.574265,0.0016034383 357,622.831,180.51012,16.315674,55.925354,0.0013274234 357,15.637912,158.02614,40.694145,67.60553,0.0007249395 357,616.82355,213.60295,22.32312,88.79512,0.0006073022 357,492.4811,111.70659,21.404022,46.680847,0.0003122325 357,1.3355461,164.95709,18.764553,78.13263,0.00026144955 357,586.2169,102.60689,52.056213,210.19048,0.00020653121 357,615.22546,107.8601,23.921204,96.11152,0.000183637 357,601.37683,208.53131,37.669617,195.83496,6.10534e-05 357,1.912225,133.22334,32.611755,160.49205,3.3279615e-05 357,600.0995,417.52188,39.04718,83.088745,2.4576933e-05 357,1.1554928,218.63937,18.834454,74.22226,1.6620774e-05 357,427.80902,84.196785,47.95218,150.85834,1.466536e-05 357,1.0124122,282.17392,19.334183,142.05817,1.3827495e-05 357,308.75848,139.69972,98.89792,199.23375,1.0156238e-05 357,1.0911776,379.6781,18.606148,115.811646,9.002563e-06 357,3.4381201,185.88695,57.69024,236.04628,6.797125e-06 357,417.51196,110.526955,38.85202,80.27454,2.6825774e-06 357,3.537925,341.1485,58.13344,143.20496,2.4563994e-06 357,586.70654,2.0442514,52.440125,128.88728,3.9617936e-07 357,398.37354,88.152695,43.859924,140.17163,1.0605438e-07 357,1.4767839,14.1343,35.15152,72.90892,2.8714902e-08 358,336.88495,202.15643,24.87201,45.233917,96.58337 358,497.53125,197.25702,24.54535,55.043457,8.984321 358,576.3316,83.85138,57.546997,145.75914,0.422503 358,480.93182,77.43098,25.018555,52.305855,0.2329692 358,599.6365,87.483955,25.96466,70.58001,0.034425467 358,442.6821,205.08972,23.394958,46.981567,0.029700179 358,609.38904,97.77725,29.523438,93.1199,0.0134157 358,581.42706,90.53138,30.75055,67.71763,0.0031533109 358,612.0248,176.34926,27.121887,139.58571,0.0013360392 358,622.9847,90.68894,16.161987,51.199944,0.0010835101 358,557.82324,157.725,26.032104,63.570435,0.0010546305 358,482.0608,91.93042,35.355896,82.90857,0.00052868243 358,538.8639,110.61111,30.922974,79.91305,0.00048578996 358,611.86676,256.77814,27.279907,135.67365,0.00016934531 358,611.5898,371.01797,27.556885,127.36871,9.466309e-05 358,1.1559107,213.12224,18.866909,126.83867,9.3702205e-05 358,578.3341,0.48319012,60.81256,56.045433,6.38722e-05 358,512.672,85.55752,46.466858,152.04987,3.834035e-05 358,3.5133302,196.1191,56.465813,218.73894,3.5823978e-05 358,561.1934,106.83621,35.989807,92.85904,2.5534191e-05 358,2.410056,146.71233,28.843643,131.59962,1.8489895e-05 358,606.6029,0.0,32.543762,154.33752,1.4809265e-05 358,314.84692,156.82071,84.237366,146.6474,1.3007879e-05 358,1.0184262,350.0932,18.553627,129.89203,9.178197e-06 358,469.1855,31.302046,40.31421,116.83818,6.4847236e-06 358,3.4974072,341.2278,58.443535,142.34286,3.1568238e-06 358,1.6007903,419.79758,34.768173,79.217224,1.0672917e-06 358,1.5390348,14.616139,35.30609,71.83421,3.2063006e-08 358,435.2924,1.4514974,47.923523,70.55246,9.006535e-09 358,406.1516,1.0601043,45.33435,58.6912,3.2549963e-09 358,515.35986,0.13824219,48.596436,63.73898,2.8601521e-09 358,542.4008,1.6263933,49.972107,60.784065,2.3675522e-09 358,475.04156,1.7784147,66.677795,57.962498,1.5681789e-09 359,342.87088,197.44116,25.095367,46.517593,89.72092 359,417.47974,200.64313,21.891632,51.455215,3.7990313 359,595.0203,155.54393,37.99579,82.792435,0.18056382 359,621.3217,173.16313,17.824951,63.011307,0.016381202 359,329.05643,175.6933,46.9794,93.914,0.0012626437 359,3.1058838,198.81746,39.4674,64.22447,0.0011833531 359,609.70197,67.82387,29.444702,164.93195,0.00048749597 359,293.0233,200.75398,22.4104,47.70909,0.0003971688 359,279.51154,201.18349,22.152344,46.74797,0.00031767917 359,617.19666,222.86534,21.950012,89.03432,0.00023077469 359,588.22034,144.20009,49.466675,216.53523,0.0001364727 359,611.3994,260.80115,27.747253,144.6979,8.185036e-05 359,608.2901,433.1668,30.856567,70.670654,6.8692956e-05 359,542.81586,210.47192,41.166565,112.04025,6.1176834e-05 359,4.00306,119.236984,56.84211,206.81908,4.3443397e-05 359,1.3114315,192.39735,19.128897,129.64293,3.140447e-05 359,1.254624,328.85135,19.174252,131.44656,2.2254753e-05 359,570.74365,357.72604,68.01984,131.76974,1.7111226e-05 359,0.9998812,416.36252,16.460703,82.96057,7.080737e-06 359,3.4665756,285.8778,56.668674,190.27866,6.8833883e-06 359,611.58093,1.4720541,27.565735,56.796124,5.672412e-06 359,1.6769296,112.97214,21.260357,128.7136,2.860593e-06 359,2.673418,421.64053,53.278053,74.964905,1.6312448e-06 359,301.43283,106.13177,141.59183,229.8847,1.4658349e-06 359,1.6154842,48.057102,16.555092,131.94681,5.6859474e-08 359,2.1235776,19.404339,55.89338,113.72519,1.9749377e-08 359,484.1172,0.9588379,43.570312,60.59627,3.0680375e-10 359,441.8576,4.917918,42.745056,50.07287,8.1770445e-11 360,347.97333,201.58708,26.297424,50.294434,99.0831 360,598.6741,147.84732,37.864075,63.488068,0.12922475 360,603.96326,58.90314,34.37256,78.415146,0.0140886465 360,584.6645,148.17583,25.084656,48.350296,0.0041915337 360,590.9942,100.98895,45.99054,216.89163,0.003046798 360,479.79117,210.298,36.222626,93.93964,0.002656104 360,427.78452,197.5662,40.970978,68.931274,0.0021265731 360,507.72302,218.82365,33.825195,87.374466,0.0012222059 360,245.21683,190.4722,23.471924,45.546402,0.00080861675 360,0.7177914,218.50478,13.556929,47.470535,0.00032320453 360,328.015,169.06255,60.860107,105.541855,0.00030155963 360,523.55743,119.32777,76.508545,182.38345,0.00019023084 360,612.15356,213.94418,26.993103,142.35715,0.0001286978 360,520.6729,197.25403,40.28882,128.09262,0.00012506386 360,608.9535,434.50742,30.193176,68.64844,4.2453954e-05 360,611.6539,306.36002,27.492798,141.92365,3.598625e-05 360,0.9990869,201.80237,18.680422,133.14624,3.4485507e-05 360,407.78543,158.91281,83.215515,152.01282,3.2369975e-05 360,588.0151,88.20719,40.17743,87.86721,2.9542884e-05 360,2.211045,120.61357,35.31011,162.7707,2.29188e-05 360,3.934201,201.8045,56.396564,228.6991,1.5224729e-05 360,1.084546,342.979,18.451963,133.97998,1.2259726e-05 360,572.91516,364.60135,66.23151,125.12137,1.0704214e-05 360,1.0152743,436.53165,22.176947,64.69971,3.5220405e-06 360,302.35544,124.805534,136.39792,211.06061,3.311789e-06 360,3.286291,393.87637,55.79047,95.20047,3.1682969e-06 360,347.0247,427.7419,78.08075,75.315796,1.4607359e-06 360,283.68808,427.61996,78.79889,76.28522,5.1022704e-07 360,1.3898373,14.253558,35.214447,71.71009,2.096384e-08 360,516.5528,2.7259245,43.385498,51.29742,1.3222018e-10 360,441.4929,2.8034391,44.422485,51.84809,6.347697e-11 361,355.47476,204.38683,28.236664,55.767593,98.60729 361,596.42413,213.21594,39.933716,132.55356,0.006205777 361,605.48566,120.13042,33.52185,70.49492,0.003086165 361,614.3002,168.3638,24.718933,88.26868,0.0015285704 361,614.5336,319.57916,24.613037,95.50995,0.0010763997 361,338.01788,177.04079,65.1568,102.06334,0.0009325111 361,444.9834,194.19426,46.055634,91.54353,0.00087997917 361,586.09814,82.03537,50.045654,191.43561,0.00065933436 361,620.3784,294.8301,18.76825,62.99057,0.0004016998 361,602.07996,342.98724,37.06671,149.15771,0.00024229441 361,617.91437,42.330376,21.2323,72.047516,0.00018725765 361,1.161687,216.71555,18.15189,64.754364,4.746317e-05 361,440.84564,151.97719,90.98248,203.94215,4.3267093e-05 361,0.84849447,320.66248,18.527262,81.141754,3.1098032e-05 361,586.3557,24.944164,51.332886,98.367645,3.0940362e-05 361,1.1501595,419.53293,16.395191,79.6629,8.5784195e-06 361,0.8149691,250.59691,21.370285,117.22322,8.157841e-06 361,3.282925,257.13367,56.72671,216.88727,4.966826e-06 361,312.69046,130.9128,139.4968,217.08156,4.069384e-06 361,3.050241,424.9958,52.74338,70.726685,2.9547773e-06 361,1.9826311,168.75858,34.90553,174.50305,2.7645922e-06 361,1.4664136,90.386444,18.144548,127.634705,1.5036475e-06 361,529.46655,10.314724,83.043335,76.08894,4.4778727e-08 361,2.334559,16.935703,55.613926,121.492905,1.1442234e-08 361,519.9766,3.207754,43.497375,59.325596,7.866248e-11 362,507.80643,213.28647,24.96994,58.643707,99.88224 362,490.5212,217.28821,22.432404,51.088074,99.51987 362,367.49063,213.4956,25.304108,49.235565,99.47394 362,563.105,223.9358,26.279907,46.522354,97.589584 362,605.95416,53.14332,33.044556,74.29442,0.006354564 362,621.5152,211.13899,17.63147,53.36763,0.0014806322 362,488.12027,200.63269,56.588776,90.67529,0.0013934332 362,602.63684,45.01637,35.733032,226.85243,0.0006025215 362,603.9861,0.0,35.096252,72.73164,0.0005381347 362,348.939,184.84872,63.987183,94.74899,0.00045517273 362,612.0144,201.78601,27.132263,134.79037,0.00029948037 362,481.03595,152.91891,95.39404,194.45535,0.00019620243 362,615.4869,101.16831,23.65979,97.111595,0.00017028867 362,611.1576,384.0371,27.989075,116.593994,0.00013397024 362,448.43234,69.46624,29.128601,65.70516,9.9601195e-05 362,602.0635,269.9969,37.08319,201.56036,3.706705e-05 362,0.86574954,263.39172,20.343939,144.40744,1.6875205e-05 362,417.72556,132.53625,91.391235,207.8114,1.17589025e-05 362,3.855892,229.78062,56.580124,233.8014,8.706798e-06 362,1.1595191,386.76382,18.373867,109.40378,8.619455e-06 362,1.0602874,183.0019,18.400972,121.341415,5.8185046e-06 362,319.84808,129.70923,143.96301,220.06769,5.6915515e-06 362,3.6081903,396.07318,55.303402,94.911896,2.7176332e-06 362,573.8107,1.3847884,43.14264,63.749336,1.2836668e-07 362,528.11694,0.0,50.114075,183.64455,7.353897e-08 362,515.6055,4.1018815,67.66803,54.083042,6.6931946e-08 362,2.7888055,20.944544,55.042847,107.91038,5.855695e-08 363,581.0406,217.08203,31.754822,74.042816,99.64446 363,370.81616,213.79483,26.399841,53.145752,96.169106 363,564.0175,218.8884,31.369812,73.70645,82.63542 363,554.74524,204.86679,29.431458,58.279663,6.0854993 363,578.4443,60.939983,38.194824,94.857285,0.026907222 363,600.2531,68.00415,35.8067,97.34502,0.025112791 363,251.92242,165.19693,22.488129,49.402405,0.0029508537 363,551.3248,186.55823,82.94562,141.7308,0.0019080673 363,608.4347,147.74667,28.54773,143.15396,0.0016792199 363,576.3495,30.528053,61.65216,205.66422,0.0011567671 363,621.611,82.73484,17.535645,66.24668,0.00090444006 363,49.57354,113.141815,37.23706,87.59523,0.0006310017 363,611.3442,231.45076,27.80249,144.78609,0.00044576914 363,605.0861,3.7712762,34.060547,71.49631,0.00015768412 363,616.52185,399.30664,22.624817,82.855865,0.00012224122 363,349.39246,171.22447,79.35651,153.52513,4.5979374e-05 363,602.7883,296.54996,36.358337,169.44385,3.299293e-05 363,0.7627507,239.88351,20.148794,143.61316,2.448672e-05 363,443.59912,156.79724,83.00348,142.57416,1.5608517e-05 363,1.1872363,366.29614,18.807644,128.87012,1.1334599e-05 363,1.2911719,181.48552,19.250359,114.39925,7.568118e-06 363,18.887327,67.597916,82.36353,179.59209,5.643943e-06 363,3.4757195,221.44519,58.13341,234.11322,4.653805e-06 363,3.768379,400.29,55.771503,92.64557,4.602175e-06 363,544.85724,20.212826,37.194153,101.640274,1.3535288e-06 363,1.4083611,69.34534,17.148699,129.6586,9.425788e-07 363,2.1617692,111.22545,33.63881,162.97057,9.112311e-07 363,546.72015,0.0,85.70929,81.46136,4.688836e-07 363,526.16187,9.32542,36.089844,92.4781,7.291048e-08 363,2.329873,14.381638,34.84694,75.670654,1.90568e-08 364,539.4147,202.7431,27.013306,52.925186,99.859146 364,515.72943,205.8498,23.359802,47.737915,99.47791 364,373.82224,212.9133,27.082245,55.45456,97.45357 364,5.397325,199.44089,30.551268,52.98198,0.40808445 364,357.28052,189.20268,35.076965,63.921875,0.016441857 364,505.9991,184.4171,50.262543,90.327805,0.0036790196 364,621.36487,190.65526,17.7818,50.674362,0.0012875973 364,575.2693,181.04343,37.11267,63.300903,0.0005922144 364,1.1812252,210.10944,13.335878,54.923492,0.0005682543 364,605.2615,0.0,33.885193,67.89746,0.0005622637 364,608.565,155.37459,30.581665,115.66585,0.0003448065 364,621.4031,32.178345,17.743591,60.07773,0.000243407 364,617.6042,228.9017,21.54248,82.90387,0.00018825966 364,615.97925,88.60921,23.16742,82.22278,0.00015634336 364,616.7966,307.5156,22.350098,85.20026,0.00011878029 364,582.10364,9.589662,55.522522,242.71867,0.00010004043 364,104.02597,99.44579,40.56389,144.2616,9.302285e-05 364,2.7234318,166.89331,36.100334,162.59772,7.923093e-05 364,514.96277,167.35492,84.964966,142.05627,6.8692956e-05 364,611.87085,356.49814,27.275818,143.7135,6.5108994e-05 364,343.2636,167.29883,96.191284,192.13821,3.6340647e-05 364,601.74884,192.94012,37.397827,209.22083,3.492167e-05 364,1.6135613,96.92888,14.401028,57.04802,2.4352257e-05 364,2.857583,55.934742,57.87047,216.74385,1.691481e-05 364,1.6211231,101.670586,20.167145,162.22269,1.5842237e-05 364,1.2275603,350.2537,19.365814,128.78204,1.4314002e-05 364,3.244878,201.52579,58.37424,262.26715,1.3263196e-05 364,0.9110002,308.96756,18.781597,78.50943,7.1549985e-06 364,573.3418,2.8384702,46.705322,53.12881,3.5931098e-06 364,6.0030828,358.51236,79.62676,130.93472,2.210967e-06 364,1.8333236,418.41418,35.175343,80.27698,1.522243e-06 364,1.3696468,8.531634,35.474754,83.25517,1.0623938e-08 364,447.39792,1.2041879,47.278564,52.759586,9.362644e-11 364,497.3373,1.7404168,45.740997,52.01579,2.647477e-11 364,419.5627,0.027239583,42.39792,48.35556,1.669348e-11 365,386.8607,213.69025,28.477264,63.89743,99.52672 365,617.67206,212.67458,21.46759,52.496964,7.8328857 365,399.89966,176.83206,27.501953,46.545364,0.6598023 365,395.04016,194.39552,24.442535,52.65448,0.034130983 365,380.0235,189.38344,23.94049,46.02513,0.02314398 365,608.3912,204.4523,30.755493,143.06488,0.0032423409 365,622.0246,243.4634,17.12207,58.054855,0.002144057 365,364.5049,175.09587,75.18152,154.38005,0.00025403593 365,49.615364,102.53335,43.1707,121.479515,0.00020450618 365,617.0782,291.0294,22.068481,82.35571,0.00017764472 365,617.2983,388.408,21.848389,79.23724,0.00014074668 365,499.43976,166.37738,32.163635,66.17793,8.533018e-05 365,601.2076,295.9058,37.939087,194.01892,6.0090173e-05 365,1.0700212,240.18285,18.625355,72.817245,5.7345005e-05 365,608.9456,441.33813,30.20105,63.84381,3.5914796e-05 365,602.48846,89.095,36.054077,196.55536,2.286841e-05 365,3.4724367,283.04025,57.311363,196.19043,1.8821125e-05 365,1.6410401,171.43047,32.979774,167.19005,1.8109422e-05 365,1.3564934,322.73444,19.61624,132.93808,1.6723487e-05 365,14.623581,76.86491,124.65427,191.30136,6.339413e-06 365,583.9252,8.821042,53.86969,116.33568,5.014659e-06 365,1.5588005,107.51641,18.504894,133.9259,4.3238215e-06 365,1.6383756,392.6691,30.089098,103.89819,4.277337e-06 365,1.2943628,33.38356,17.891018,136.81183,8.896009e-08 365,489.98703,3.6439698,65.38895,52.46265,2.8292051e-08 365,536.6795,0.0,48.90387,58.737034,5.0062323e-09 365,586.38617,0.05252116,42.443176,47.46266,2.5347375e-09 365,1.0333424,5.952184,18.762943,56.11724,1.5113109e-09 366,420.02966,210.33833,34.81134,85.887314,89.14952 366,409.13422,196.1573,25.834503,56.319138,0.34329498 366,611.783,188.41783,26.698792,58.11647,0.012248966 366,622.28687,291.09854,16.859802,52.714447,0.00441291 366,219.81816,152.8139,33.692474,64.070175,0.0037291327 366,605.15875,191.85345,33.161987,160.09491,0.0032313613 366,2.576963,94.086136,29.34175,94.25404,0.0009010376 366,621.6173,219.2585,17.529358,56.93419,0.00043723139 366,389.8827,172.2577,86.57852,171.45338,0.0002870869 366,611.2362,53.139584,27.771057,157.13281,0.00028387594 366,239.53743,156.58739,32.345413,61.52591,0.00025610867 366,612.31805,281.62122,26.828613,137.24384,0.0001977252 366,621.2461,44.514515,17.900574,59.70503,0.00015967175 366,1.1053011,199.17213,18.115078,69.989944,8.6073116e-05 366,4.427251,107.09205,58.87337,225.01917,7.0473354e-05 366,608.96674,438.99963,30.179932,66.77341,4.190712e-05 366,1.2537997,229.39264,28.510729,151.53867,3.0948624e-05 366,1.6672242,137.5852,28.566135,152.64056,2.6984451e-05 366,585.32166,389.21307,53.697876,104.47366,1.7417424e-05 366,0.8906909,388.5127,15.715758,105.88632,1.0510658e-05 366,3.319541,392.22318,55.19257,96.92987,3.921379e-06 366,597.8282,5.1082783,41.31848,101.57928,2.5772126e-06 366,1.7038827,38.591217,19.588251,83.79594,2.4481471e-07 366,1.846766,23.935486,57.85968,108.96214,2.2080498e-07 366,580.2693,1.7733594,41.90515,66.786896,2.9629238e-08 366,0.73508954,8.238675,22.068605,56.464703,9.221421e-09 367,445.38293,217.01138,44.71219,102.73526,99.40701 367,397.2298,194.50558,24.886993,52.351562,9.524341 367,601.4904,249.63467,31.897644,63.53296,0.49593413 367,451.5374,198.42789,27.236542,55.48999,0.1925783 367,432.29346,186.66115,41.04712,94.07811,0.13457668 367,436.22623,182.3112,24.16623,52.233856,0.05951562 367,621.63715,257.153,17.509521,63.253174,0.059468612 367,608.7754,158.55383,30.371277,170.30417,0.025283938 367,413.33926,196.07004,23.073578,54.854706,0.006673682 367,216.72115,156.89702,35.797745,66.129654,0.0045713177 367,578.8305,125.49908,49.296448,149.80075,0.0017664881 367,562.8044,114.22722,41.450684,81.835754,0.0017359036 367,309.58542,162.73209,32.91162,69.27232,0.0006767269 367,609.9597,73.645164,29.18695,153.73004,0.000288337 367,77.72671,196.65504,24.025696,45.347748,0.000282573 367,538.04504,19.92013,100.12506,282.69168,0.00022971281 367,600.4195,247.4212,38.292786,206.35745,0.0001240253 367,598.5353,405.4563,40.61139,93.01761,5.6561195e-05 367,1.0130413,214.23775,16.963469,67.73042,5.438835e-05 367,401.6335,155.59427,132.85574,229.60757,4.0591447e-05 367,615.645,2.8115528,23.501648,91.77966,2.8033606e-05 367,0.99787724,330.35516,16.442793,125.50568,1.81135e-05 367,1.3746403,211.39677,27.605791,145.75267,1.1415176e-05 367,3.6283221,257.72818,56.267303,205.8534,8.790331e-06 367,1.4983082,126.82755,18.419952,136.67657,5.964523e-06 367,3.94348,114.732346,57.148315,222.71864,3.4558095e-06 367,583.3183,0.0,55.82837,152.99174,3.3571798e-06 367,1.1854248,438.67984,19.765907,61.149292,2.9302962e-06 367,1.6394385,52.066746,19.75594,133.33612,5.3200836e-07 367,0.9991207,11.3729105,10.030987,79.67391,1.1969564e-07 367,572.99475,1.5534929,44.068237,66.45826,8.641109e-08 367,2.42875,10.144089,35.085903,79.12852,6.6691605e-08 367,546.4149,3.4146485,43.205933,62.511574,1.8362996e-08 367,25.863613,0.34296712,46.20062,53.02583,3.26313e-11 368,470.80966,267.4529,45.551056,109.9306,90.35382 368,468.08746,278.4231,25.921661,53.20645,0.2745749 368,419.77423,228.21269,33.254944,68.43535,0.16683397 368,437.44257,223.87758,31.990417,80.471146,0.07486188 368,16.869024,224.98128,37.78367,75.531815,0.018203009 368,521.40155,273.27127,36.978577,64.58182,0.017367922 368,605.397,175.75371,33.128418,85.17024,0.012524934 368,230.09383,196.21715,30.590775,65.08861,0.008837022 368,453.50317,217.39143,44.848816,132.13603,0.0072409823 368,596.1305,319.04205,42.390747,162.06067,0.0063162246 368,455.04333,230.33423,98.47858,186.66992,0.0035131802 368,574.00806,74.55102,23.51532,50.309143,0.0024323473 368,624.0137,25.404537,15.132996,47.741512,0.0018017098 368,611.4779,219.35136,27.668762,155.69554,0.001645655 368,322.325,207.2151,32.50894,66.212204,0.0006804629 368,475.0599,222.04706,23.953339,48.537872,0.00046722117 368,4.346872,135.7449,58.541595,209.39041,0.00016474529 368,600.79504,0.0,38.351624,76.74847,0.00015608278 368,1.5478386,156.07295,19.591068,148.22423,0.000119387536 368,620.473,135.2481,18.673645,56.101044,0.000104386905 368,608.85504,438.54163,30.291626,64.76141,7.7233635e-05 368,486.5535,134.68439,41.131805,93.95943,7.6367185e-05 368,608.5885,42.517662,30.558167,193.40918,5.777443e-05 368,1.9608228,245.76274,33.25073,194.17955,1.74586e-05 368,1.1126798,380.81235,18.85058,119.2482,1.2729947e-05 368,3.7905064,396.52954,54.831932,99.6528,7.416361e-06 368,1.6989397,50.96228,18.32109,126.810165,5.615788e-06 368,460.10953,75.659485,84.55856,226.495,1.9949373e-06 368,304.28424,426.09952,74.16351,78.85773,1.139918e-06 368,263.33835,426.75912,74.83206,77.62723,7.9119474e-07 368,1.1228715,13.966016,14.378183,74.05865,6.752284e-07 368,222.38307,426.91287,74.35298,76.195526,6.362377e-07 368,2.213164,23.475384,56.37151,98.45993,1.8445957e-07 368,512.64014,0.9303744,65.55365,57.06326,4.95869e-08 368,476.2859,2.5432456,66.17572,56.855713,1.4844332e-09 369,428.54285,201.30423,20.510803,45.396057,97.55332 369,495.83096,232.82037,56.81949,128.11282,90.60956 369,491.1588,224.29558,33.206177,78.238205,4.5846963 369,602.28406,55.475742,35.593384,92.723145,0.023550333 369,505.50516,252.64345,28.39853,56.93483,0.01377103 369,472.35724,190.02823,38.445587,100.38681,0.01040872 369,224.48128,165.87769,31.784683,65.589615,0.009712115 369,508.47678,221.97806,26.666595,57.397797,0.008704212 369,44.255924,187.30785,41.001102,62.910095,0.008463798 369,366.00458,214.0755,27.90271,51.413452,0.006639912 369,339.65042,212.50784,23.129517,51.252808,0.0012474923 369,609.4483,181.28522,29.46637,130.02756,0.0008196041 369,533.06726,198.25066,21.061218,47.36586,0.00052782346 369,417.54095,183.08788,42.564636,90.97255,0.00036579385 369,620.082,42.53169,19.064697,65.75473,0.00025072336 369,514.13086,272.84076,27.041443,64.42474,0.00024891653 369,470.047,171.32884,121.458984,246.55095,0.000213012 369,603.03424,315.90424,36.112427,173.76837,8.1264996e-05 369,1.5746998,115.52415,19.515905,145.88101,8.0427606e-05 369,583.23816,0.0,55.650818,205.97238,7.5869786e-05 369,611.9269,257.07568,27.219788,141.57764,7.1427596e-05 369,1.3027047,202.0559,18.780016,130.91225,4.7003217e-05 369,608.77783,436.14453,30.368835,69.52777,3.7384394e-05 369,590.0035,0.18257813,46.47583,71.261314,3.499115e-05 369,3.8730536,172.33989,56.795006,232.30373,1.8069848e-05 369,1.2764975,327.51294,18.60777,138.17969,1.4175602e-05 369,1.2557096,421.06442,15.861293,76.76404,1.0037187e-05 369,541.902,271.3236,40.458923,127.1066,9.246761e-06 369,471.31772,3.3907359,44.72989,66.845215,7.4899413e-06 369,407.3463,146.31009,78.84714,168.12173,6.424927e-06 369,4.0265856,335.28433,55.712715,148.85995,4.4279627e-06 369,1.1640544,57.839962,19.364466,75.490906,2.9378623e-06 369,16.992172,125.71539,117.46205,216.2854,2.5749425e-06 369,3.0437696,39.453594,61.56024,218.21361,7.559055e-07 369,444.8382,0.0,43.33426,46.390614,7.36369e-09 369,524.5139,1.5871127,44.236145,60.943207,6.331887e-09 369,496.96423,2.5058105,43.041077,60.723293,5.448141e-09 369,1.5546126,13.145326,33.918022,66.26072,4.2729273e-09 369,417.1549,0.0,41.516785,46.471043,5.2653604e-10 370,538.356,241.07742,56.897034,147.95895,99.137314 370,623.21906,273.03546,15.927612,46.768677,0.20307223 370,574.50464,244.41965,33.51587,88.290375,0.1547547 370,541.11786,263.07724,31.286987,69.7901,0.08323856 370,551.99384,220.62605,25.149414,51.521988,0.026571145 370,622.02814,45.973015,17.11853,49.21151,0.020724267 370,2.6889837,180.78291,33.891445,82.18581,0.0152562065 370,564.55286,284.29843,26.020203,68.512634,0.01107638 370,613.01886,214.09969,25.339722,122.20714,0.005743599 370,503.34756,180.87402,124.18466,243.4288,0.0026604978 370,618.4472,181.68639,20.699463,60.02318,0.002371105 370,227.17253,162.32945,26.337448,62.15555,0.0021095958 370,488.58893,186.91075,41.357056,83.12532,0.0010743731 370,602.5608,133.11067,35.878418,154.7412,0.0008269923 370,609.09125,11.704323,30.05542,102.747246,0.00054015225 370,551.3984,294.54904,25.650879,70.40662,0.00048841926 370,437.06476,185.51045,44.036865,86.05217,0.00042724397 370,614.61285,108.418976,24.533813,90.48424,0.0002099653 370,3.2162502,112.40496,62.74175,175.22583,0.00017568546 370,601.39294,269.7777,36.824463,171.89136,0.00013469097 370,476.1126,146.71925,79.28064,169.91154,6.1389816e-05 370,613.6868,2.4878435,25.459839,46.59079,5.142923e-05 370,600.0099,410.27005,39.13678,89.31534,2.5711692e-05 370,1.3253597,405.85422,16.497717,92.484344,1.6638727e-05 370,1.2307854,321.09845,19.718876,138.52563,1.6376644e-05 370,446.65677,6.765938,46.2771,63.042686,1.6190357e-05 370,3.6876922,270.2839,55.908104,206.43234,1.6139731e-05 370,1.0300546,218.21306,19.597284,154.36485,7.5116295e-06 370,1.6774105,60.16255,21.20366,170.21407,4.719533e-06 370,584.7201,0.037128907,54.426575,197.46051,4.3849395e-06 370,421.55438,148.32265,96.83411,197.35777,2.0894402e-06 370,397.34073,6.0130305,79.06055,79.08224,1.756377e-06 370,580.0613,0.0,44.221313,67.860695,3.083187e-08 370,383.11252,2.7129037,43.80136,57.906254,1.4081332e-08 370,1.4465544,13.826628,38.1742,77.14696,1.3770828e-09 371,532.4812,203.90071,27.914429,53.83589,99.93288 371,517.8334,199.38661,23.80835,45.596573,0.5048405 371,325.76352,181.10832,35.805786,71.2865,0.29045105 371,9.109855,96.276764,30.791466,52.97986,0.014410479 371,623.35236,302.84705,15.794312,46.66086,0.0100638345 371,619.05505,327.17398,20.091614,75.26813,0.0035969187 371,14.310074,195.4356,47.194363,82.78108,0.0027527763 371,612.1727,246.64993,26.973938,126.535675,0.0012317095 371,465.34006,186.85944,41.14395,91.417786,0.0009875912 371,618.5216,215.02077,20.625061,72.70613,0.0008917131 371,584.4952,314.58356,54.65149,179.58334,0.00068005105 371,563.37463,174.41306,39.70703,78.05197,0.0004922654 371,515.9111,176.6278,58.697266,99.39224,0.0003684389 371,601.64795,144.74123,37.09784,138.30681,0.00021362762 371,2.3566082,123.20925,47.056458,136.1958,0.00015462788 371,1.4325676,90.089554,20.08185,69.810455,0.00013634497 371,606.3362,434.94296,32.810486,72.94705,9.65924e-05 371,614.07855,31.343653,25.068115,86.43382,5.2971165e-05 371,0.6619393,244.57536,18.181469,74.396255,3.9601942e-05 371,307.67258,161.2779,79.790985,125.0683,3.0675466e-05 371,544.88696,125.083725,92.08301,195.8604,2.2342583e-05 371,3.56264,212.7056,57.599716,241.20316,1.238006e-05 371,0.86405194,301.17267,18.20427,76.34439,1.1373786e-05 371,1.3125098,423.44522,15.908525,77.598236,1.0884006e-05 371,1.680372,335.99945,32.355034,155.81946,5.0974963e-06 371,4.7070737,432.71817,65.536194,65.59558,4.618381e-06 371,449.64365,153.40993,99.02353,196.68092,3.2132466e-06 371,583.5921,0.0,55.554565,221.84392,2.5701045e-06 371,586.3205,0.60869795,42.20746,50.0083,7.346575e-09 371,1.9013721,14.839024,33.246292,73.38019,3.5065498e-10 371,492.3498,0.8950521,43.593994,55.05013,1.0820259e-12 372,586.9085,209.86798,33.32086,66.378235,99.98128 372,505.41168,212.66618,24.098267,54.230972,99.86157 372,19.09191,223.04288,35.605713,60.53055,0.5959944 372,318.63562,171.4282,29.69925,64.550476,0.23099644 372,567.6627,210.42517,18.19574,45.651245,0.1901025 372,332.71695,174.1969,33.433228,80.44264,0.02739052 372,468.0232,230.09496,23.214478,49.188248,0.018769626 372,583.44586,175.58984,51.2724,180.64545,0.00350945 372,622.58124,254.15433,16.56543,55.989044,0.0029115132 372,598.5855,56.327103,39.221252,108.789856,0.0013252693 372,620.6015,107.52481,18.545166,51.52185,0.00069966476 372,487.17398,181.79391,54.753937,110.69974,0.00058935455 372,616.61694,207.00798,21.7901,65.37901,0.0004562488 372,610.69965,230.24008,28.447021,146.16205,0.000349499 372,168.99934,178.9974,38.33185,88.147095,0.00031844113 372,4.710814,199.00302,56.83297,247.33908,0.00020260764 372,611.09845,308.4117,28.048218,148.82013,9.5874544e-05 372,609.97864,102.98338,29.16803,144.05865,7.754036e-05 372,306.59854,166.17294,81.07074,124.51715,5.9169794e-05 372,1.5982283,169.1549,18.881056,130.28098,4.8024667e-05 372,613.224,3.5627606,25.922668,96.19129,2.7315144e-05 372,1.1189054,340.26126,19.382143,141.29996,2.5923731e-05 372,1.7662028,221.23836,28.638351,154.71443,2.200236e-05 372,585.2957,395.87738,53.850952,103.472534,1.8591387e-05 372,582.2694,0.39157555,56.634766,262.37558,7.392662e-06 372,1.6334726,442.14487,22.157999,60.925262,6.6205994e-06 372,3.5491016,397.7591,56.4853,96.96341,6.065631e-06 372,455.96622,144.8935,152.1962,215.41025,3.1651684e-06 372,2.2083025,61.31355,35.84847,217.82893,3.1091903e-07 372,1.5172421,46.0614,18.499912,142.33934,8.002138e-08 372,410.72137,5.758221,42.80197,46.8292,4.8256926e-08 372,2.386893,14.111335,57.96079,116.0225,2.7916078e-08 372,496.74902,3.5068622,44.073242,55.580925,2.7395563e-08 372,1.177094,7.0394306,14.090235,73.428215,2.7313856e-08 372,593.34607,0.86307293,41.265747,48.96892,2.4852667e-08 372,470.5199,5.5628242,41.650024,52.001423,3.974558e-09 372,443.25574,6.3821306,41.441864,45.182053,1.3700983e-09 372,538.83325,0.0,46.41101,58.953243,6.523018e-10 372,1.8738298,2.416084,32.97037,46.201424,1.2693391e-10 372,568.4368,1.6648438,44.726807,55.393047,2.1233673e-11 373,553.2021,208.09943,30.177246,79.85617,99.55 373,484.30466,214.91255,22.381134,48.450882,0.037649285 373,314.73047,166.10423,41.687653,89.52911,0.0111079635 373,468.09933,210.13306,25.556885,52.706696,0.005890651 373,449.44052,209.48073,25.62445,50.264664,0.0054621403 373,333.29187,221.20094,21.475494,46.90132,0.0033755826 373,497.32486,211.91353,22.1445,48.841568,0.0026649972 373,601.0937,181.66383,36.99176,177.4178,0.0019731284 373,536.7126,188.11736,71.75647,140.70406,0.0017560039 373,621.6081,195.0858,17.538574,58.334656,0.0013136576 373,48.166862,201.0629,36.950096,68.04776,0.0012656385 373,617.5387,243.04185,21.607971,88.26103,0.00087388745 373,609.98834,70.62587,29.151306,147.78244,0.00062964146 373,584.6217,28.191095,53.16858,261.465,0.00025390196 373,1.3381238,217.48837,18.449207,76.90167,0.00020869725 373,621.1206,28.536123,18.026062,60.07453,9.8537166e-05 373,612.05054,280.57968,27.09613,134.66254,7.366285e-05 373,608.7626,439.70303,30.384094,66.381714,5.9579066e-05 373,352.55847,125.12232,42.915924,144.71002,4.8109014e-05 373,1.3529012,227.26001,27.642859,152.20175,2.6297843e-05 373,571.4628,356.71518,67.68384,135.12271,1.14009135e-05 373,3.5831153,210.51659,57.755116,227.70818,1.0155385e-05 373,435.44812,141.37897,36.801575,132.5393,8.669777e-06 373,2.2001336,118.68022,31.318115,169.78596,6.8569457e-06 373,1.2743466,394.41687,18.560452,105.464966,6.763887e-06 373,1.5883504,305.14783,33.800705,182.4064,4.112e-06 373,3.2195313,430.18182,53.0583,69.27902,1.9071075e-06 373,595.9738,0.0,43.17285,106.49716,1.267989e-06 373,311.01846,429.09976,72.907104,72.634735,5.672323e-07 373,484.64334,5.1647005,42.536957,51.91997,3.500127e-07 373,539.3714,1.0957667,47.09973,53.086452,4.1014374e-08 373,506.68085,0.7934066,45.51239,50.63407,3.9397424e-08 373,457.48495,6.4158773,42.52765,52.423943,6.6840444e-09 373,2.1319742,13.999808,31.620163,70.67145,9.138457e-10 374,594.4652,196.4572,32.611694,81.30809,0.06509967 374,621.6614,207.71933,17.48529,56.443787,0.019161958 374,132.29784,225.1747,26.230453,48.824448,0.004103181 374,322.92197,203.8666,32.15515,60.83351,0.0027696183 374,610.11676,171.28912,28.772278,132.11551,0.0025851892 374,613.12177,77.386604,25.74646,89.52909,0.0011867774 374,585.8847,234.58183,51.40747,233.7347,0.00040547983 374,573.23926,91.779205,63.522644,246.90778,0.00033756703 374,382.6175,166.14735,20.718292,49.540436,0.00018234631 374,616.7625,328.91556,22.384155,83.6044,0.00017458481 374,520.3155,106.81609,44.713684,167.27814,0.000107758446 374,0.5219161,236.6381,14.08045,51.784866,9.118762e-05 374,326.6187,158.80814,39.18866,86.81163,7.147169e-05 374,611.85016,380.27103,27.296509,119.12244,6.068409e-05 374,376.94095,180.20096,84.512024,151.89734,5.5633336e-05 374,1.017338,215.00659,19.392605,139.48984,3.5136676e-05 374,495.70053,146.1745,27.561798,62.88849,2.9552124e-05 374,586.4975,12.443386,52.125,119.1057,2.6155774e-05 374,3.5360482,104.80244,57.64606,220.50198,1.3591107e-05 374,1.2677808,423.14038,16.718433,76.95389,8.8779825e-06 374,1.1038346,333.84256,18.757477,135.74527,8.716835e-06 374,1.6213623,138.7044,18.814522,138.5166,7.710398e-06 374,524.4794,148.26299,27.335327,64.44478,7.5676135e-06 374,487.10132,101.81829,43.199158,159.90005,5.218381e-06 374,3.8116553,294.51843,56.655376,186.98825,4.0602667e-06 374,4.7632146,424.7206,65.95681,71.38928,2.8056172e-06 374,490.88162,70.472244,124.78482,244.79066,6.9790457e-07 374,201.95781,427.2047,74.27171,75.04254,4.5831027e-07 374,263.39188,425.77856,74.38876,78.520294,3.9877514e-07 374,568.3728,3.1141212,66.82507,53.692078,3.3597708e-08 374,2.4688444,15.363373,55.586575,126.51196,7.4120794e-09 374,490.56516,2.9745884,43.8768,49.312035,3.0689635e-09 374,410.88184,2.870765,42.135773,46.615913,9.22734e-11 375,492.89053,215.74475,36.4523,76.42868,0.09982869 375,317.4637,164.47414,41.843597,101.19121,0.009892606 375,524.13434,107.619,27.255493,62.875885,0.007750388 375,361.2055,228.85829,25.656616,47.729904,0.0037649653 375,616.45123,200.13052,22.695435,84.52832,0.0029975476 375,405.10104,203.17685,40.33136,90.63339,0.002344116 375,383.25357,132.40111,29.5466,85.37875,0.0008857549 375,365.44745,125.05982,72.59589,160.14548,0.00037638564 375,603.49225,199.26266,35.460815,195.91177,0.00028263792 375,148.37181,128.3081,46.482224,135.08978,0.00025054673 375,509.7418,81.26344,33.279755,72.36926,0.00022411541 375,610.5214,96.62909,28.625244,151.41618,9.806655e-05 375,611.9776,374.94138,27.169067,122.966095,6.474268e-05 375,615.8727,18.189762,23.273987,84.645584,6.2585386e-05 375,403.14917,158.21704,87.00635,201.66855,4.5927136e-05 375,4.1134667,159.58865,58.96656,205.97723,4.1174557e-05 375,350.0286,123.35716,45.21222,123.25693,4.0042745e-05 375,1.126928,217.58844,20.526718,140.60861,2.673236e-05 375,399.13812,141.41913,30.3956,83.5058,2.4101022e-05 375,1.2292416,328.5662,19.107502,136.22766,2.1704216e-05 375,345.2388,143.22662,28.05008,65.88585,1.6286434e-05 375,513.0743,50.72911,58.84326,134.31558,1.2850485e-05 375,586.0875,6.4157877,53.059143,127.460556,1.0416221e-05 375,1.5800326,437.43277,21.512321,63.992096,8.043108e-06 375,4.03868,296.304,55.68427,183.03561,5.830414e-06 375,2.0093434,134.69733,30.569658,159.90979,3.845357e-06 375,493.07043,38.00159,119.38727,230.40826,1.3384946e-06 375,297.38214,430.9634,73.01657,71.18448,3.033536e-07 375,538.8276,3.4998748,41.085205,56.67107,8.845888e-09 375,1.5579672,11.664294,34.20747,73.72572,3.797783e-09 375,444.44427,1.8884717,40.101562,48.835262,6.392305e-13 376,428.66138,221.59123,21.506592,50.62419,99.89941 376,445.2585,222.31802,21.848328,48.854645,99.8672 376,329.0369,207.88478,21.275055,46.33705,1.4661994 376,179.3979,195.56148,21.439362,51.789337,0.51778704 376,71.188156,218.25137,22.497597,46.23175,0.042115014 376,185.18314,181.1576,42.83513,76.73285,0.015056568 376,163.32625,174.93944,43.996704,97.39455,0.00793743 376,316.87585,180.20062,40.477783,84.66348,0.0028725327 376,314.1873,205.24008,21.945312,46.8649,0.0025548576 376,621.07745,176.68385,18.069214,61.049805,0.002531222 376,131.15855,209.76944,32.680878,62.75641,0.0024796717 376,601.77856,49.48885,37.368103,92.621216,0.0016463866 376,609.6102,157.98276,29.536438,137.45306,0.0011570186 376,423.62497,205.5848,44.51953,87.03392,0.00096972426 376,587.91724,209.04308,49.783447,225.76103,0.00019652864 376,167.1472,164.21164,96.09117,178.0986,0.00016487385 376,301.4007,157.28511,81.17874,168.20094,0.00013806348 376,602.76587,338.50262,36.28418,154.86792,0.00012903467 376,1.0751978,224.17563,18.389389,72.2023,8.201164e-05 376,420.45807,139.37814,39.25302,89.79051,7.214369e-05 376,605.8921,0.0,33.254578,75.152336,6.0828832e-05 376,568.37354,0.0,70.77313,186.40775,5.7555604e-05 376,297.1339,125.343414,43.057495,132.39789,5.540831e-05 376,420.56763,165.30522,86.490295,193.14857,3.0840023e-05 376,0.72962403,299.61093,18.546125,78.7225,2.9081422e-05 376,2.489454,184.37135,33.69247,162.00822,2.1703925e-05 376,98.096405,100.74652,81.92102,168.67526,1.476314e-05 376,2.0863347,107.72761,29.598907,154.2645,1.11791105e-05 376,3.8503094,272.5327,56.159325,198.45126,1.0321451e-05 376,1.2219816,438.09793,20.743631,63.118164,9.052566e-06 376,1.0138493,347.30252,18.62724,133.93646,6.1085075e-06 376,1.4386784,46.42282,16.19606,142.33774,1.0722779e-07 376,470.35242,4.517204,82.356445,80.727905,6.7053335e-08 376,537.9119,3.1586428,43.708008,66.45995,4.6513243e-08 376,565.7113,0.6652279,44.927612,70.35315,2.7950389e-08 376,455.56433,0.0,43.132294,64.15271,2.1062036e-08 376,3.0452394,18.447264,55.432583,117.06125,4.6366977e-09 377,457.92886,220.09319,25.547668,57.417007,99.937614 377,476.81006,217.97821,24.149384,57.835175,99.927704 377,164.38826,178.07332,34.362625,62.141815,0.013737558 377,44.969254,207.6339,24.343948,46.750977,0.007496422 377,109.82443,161.60834,45.264206,91.17789,0.006688387 377,144.75172,161.82158,36.33458,90.007904,0.0037094404 377,456.6563,203.0608,56.550537,90.29027,0.001814627 377,618.9559,182.58076,20.190796,58.46518,0.0009775276 377,608.63074,164.70894,30.51593,132.85725,0.00047322473 377,421.8248,195.72745,24.616516,53.069427,0.00046031678 377,426.07135,162.31967,26.485107,64.65398,0.00042622 377,400.90796,225.01498,22.257202,46.222168,0.00040117642 377,617.2753,299.62625,21.871338,88.88611,0.00033126786 377,1.1275623,198.47133,13.455233,51.933228,0.00024545364 377,286.32162,384.0252,22.778656,47.201813,0.0002274249 377,615.12885,63.005665,24.017822,88.50546,0.00019617735 377,132.42221,131.01299,26.118881,55.971497,0.00019580184 377,606.9942,1.1008985,31.90271,59.766674,0.00015990932 377,268.21335,355.68732,48.079773,119.51865,0.00012297765 377,599.4811,222.41805,39.660522,209.26936,9.7292716e-05 377,1.1364299,190.7477,21.184666,114.66414,7.899802e-05 377,610.5675,350.23892,28.579163,151.77557,6.273389e-05 377,586.3123,18.751354,52.2157,232.00693,5.80322e-05 377,154.9539,145.80273,89.362305,148.15121,4.5939403e-05 377,1.2893466,347.14227,17.855814,77.62851,2.9072575e-05 377,337.09464,330.81317,88.43173,154.77261,2.8463615e-05 377,1.8589526,212.92061,34.108887,184.63683,2.748819e-05 377,3.2452002,126.03937,59.30932,193.13852,1.3249251e-05 377,71.43407,124.38111,139.29164,233.82855,1.1966379e-05 377,429.34348,152.84375,124.28165,225.56824,6.8163004e-06 377,3.089318,289.00198,55.385124,184.29239,3.8609296e-06 377,565.10114,0.5491032,61.68567,56.264465,3.3054466e-06 377,1.3581307,105.999374,17.5629,140.90274,2.3694713e-06 377,1.1863737,441.0472,21.319527,62.518524,2.228036e-06 377,28.984232,67.752045,93.75663,193.92694,7.729492e-07 377,546.779,8.594144,40.566467,49.55,5.0270296e-07 377,521.0264,7.0443506,43.446045,49.18736,7.517055e-08 377,0.8246245,12.42708,11.597817,75.914055,3.6802092e-08 377,3.4936996,19.763002,54.55814,106.145546,1.751668e-08 377,494.79544,1.6829948,41.121796,51.521534,1.2674757e-11 378,504.87875,218.94788,34.108734,74.892914,99.97663 378,529.9875,221.16052,30.430664,70.57028,99.96575 378,145.29074,180.36378,27.192902,58.193726,0.19256373 378,393.9556,187.15869,27.236847,59.419174,0.07525384 378,64.77884,204.70854,22.849213,47.01828,0.055218145 378,426.8574,192.04837,36.76169,99.57645,0.034404457 378,328.97617,202.04518,35.664948,59.401962,0.005259923 378,130.46225,154.81274,53.99225,106.65524,0.0036378417 378,608.555,153.50334,30.591675,132.9795,0.0007127985 378,488.84106,191.04457,69.011536,147.13939,0.0007082424 378,293.05722,166.20633,38.864166,93.48804,0.00044605316 378,617.7922,257.6701,21.354492,84.358795,0.00022316907 378,343.43137,225.06383,40.711884,103.79201,0.00020518838 378,617.10095,324.93796,22.045715,83.87433,0.00015205299 378,611.3728,374.4078,27.773865,124.5072,9.4882176e-05 378,1.1384001,195.90282,19.044407,132.80797,7.649752e-05 378,600.45886,264.66647,38.687805,201.92947,7.406917e-05 378,4.1747837,200.64302,56.28531,224.27065,3.381653e-05 378,2.4366806,135.05347,29.781067,139.24533,2.4459603e-05 378,610.25934,13.741738,28.88733,158.67291,2.0235571e-05 378,1.1170646,319.786,19.319687,134.63962,1.1070428e-05 378,3.7361264,73.887985,96.14918,218.7936,8.038676e-06 378,1.5604533,395.2191,29.157988,101.917755,3.5863177e-06 378,2.174048,67.58131,40.290176,101.26005,3.1368966e-06 378,3.840049,342.68994,57.829243,144.71704,2.815986e-06 378,1.7985563,9.626553,35.259438,85.410904,1.2934572e-09 378,449.71167,0.94517905,45.384186,53.48373,6.117733e-13 379,566.19666,209.38727,37.813232,78.11496,99.930214 379,605.1175,220.76079,34.029175,105.20354,99.90579 379,404.51303,192.24812,24.878235,45.856277,1.5416704 379,443.26923,209.46017,21.273743,47.633698,0.3142461 379,10.632739,188.83318,30.244919,48.00569,0.17875707 379,1.2155046,193.19637,22.993225,56.81778,0.026831526 379,557.51184,142.13498,81.0332,249.45999,0.008134601 379,623.56506,271.49707,15.581604,53.18347,0.006588066 379,1.5144727,143.16786,51.093475,130.10002,0.0033550754 379,306.13916,184.02147,23.51065,49.45685,0.0031069482 379,615.81793,280.48602,23.328735,99.161316,0.0006834396 379,123.28871,126.63615,23.105713,48.585106,0.0006353033 379,292.57724,142.01288,37.367554,112.960846,0.0005779962 379,510.14862,199.49889,22.930603,55.39325,0.00046963122 379,611.342,347.58984,27.804688,143.61377,4.7755573e-05 379,607.5764,0.0,31.570251,68.058495,3.2725504e-05 379,1.434659,194.39157,28.330166,161.66187,3.0339257e-05 379,1.1619979,346.5023,19.038565,126.975006,2.6514463e-05 379,582.46326,0.0,56.15088,146.34183,2.4612023e-05 379,574.9065,420.13782,64.24017,77.78064,8.314362e-06 379,3.45757,339.49866,57.731365,146.06677,7.371092e-06 379,1.8622787,419.48285,35.422817,79.589935,2.956153e-06 379,428.31693,3.9700522,44.678772,59.908337,1.2433186e-07 379,1.6399374,58.358746,18.470104,151.02753,1.4821818e-08 379,455.23737,6.846781,46.143738,53.800026,1.3859848e-08 379,401.8918,5.844837,45.76581,55.921238,8.992392e-09 379,257.8434,5.6832943,43.341553,46.068558,1.125665e-09 379,2.352225,13.882458,31.712912,70.347916,3.3533332e-10 380,511.17508,151.74461,38.210846,97.35971,0.009179173 380,170.77515,153.54912,37.81868,69.82344,0.0058477554 380,320.68015,187.89096,36.07248,79.451935,0.0010479753 380,313.50806,192.94621,24.107574,49.32257,0.00053787715 380,304.38892,141.20058,41.37668,104.96472,0.0002909967 380,617.2029,224.37189,21.943787,81.069885,0.00026013138 380,599.40656,162.73895,39.50055,184.9284,0.00020187355 380,609.8246,19.00151,28.9292,122.1257,0.00019087925 380,607.1315,436.11823,32.015198,70.53461,0.00015821282 380,506.38376,85.53795,72.45364,182.33345,0.00014610056 380,611.7442,267.2511,27.402466,141.02695,0.00011274157 380,516.9072,204.84613,36.745483,89.41272,7.152289e-05 380,1.3214519,192.87277,19.125708,139.706,6.7521185e-05 380,485.41544,215.98094,58.402557,146.13533,4.51422e-05 380,382.44626,148.8907,94.704895,206.9893,2.7230613e-05 380,569.2061,342.59512,69.36731,148.47583,2.3281093e-05 380,0.96262044,274.212,17.6552,130.25308,1.9140502e-05 380,1.6348454,361.25797,32.278122,127.21768,3.8948647e-06 380,4.002723,212.64514,56.624855,216.31738,3.5846629e-06 380,317.23666,92.15168,34.43448,74.88915,2.525529e-06 380,2.0476067,124.22623,27.768728,129.30972,2.4468136e-06 380,495.04272,390.39606,114.74127,104.56125,1.4471749e-06 380,567.64417,439.57257,43.695984,64.09769,1.223768e-06 380,466.3831,424.94724,74.226654,75.58908,9.4887594e-07 380,372.0948,425.8586,76.490234,76.85712,8.905147e-07 380,331.02548,75.79263,44.51355,100.75313,7.97026e-07 380,331.0253,425.3612,74.19281,77.48892,6.030123e-07 380,268.13596,425.83633,76.26889,77.70419,5.827998e-07 380,294.90176,2.6568654,58.50592,51.97135,4.9677897e-07 380,527.06384,438.92584,43.844666,62.74005,3.1948684e-07 380,408.76355,0.74501306,43.69986,57.584995,5.142079e-08 380,2.8004265,73.79383,60.082687,219.17523,5.045711e-08 380,432.71573,0.47,45.076874,45.85468,2.7315938e-08 380,459.32532,3.5970118,45.21106,48.389755,2.22797e-08 380,374.8958,3.255827,44.153168,58.583748,1.8371614e-08 380,585.2404,1.6038982,44.11194,54.0727,1.7553662e-09 380,2.2524838,11.835619,31.31976,73.233734,2.2123126e-10 380,557.6423,0.0,44.996033,56.79607,3.0054583e-12 381,438.2961,204.06018,23.39624,50.723373,99.64809 381,501.52875,206.81679,22.667725,50.148636,0.031110184 381,308.2782,137.62276,32.12964,90.9142,0.0221375 381,485.43933,201.01154,35.83722,92.27478,0.014873491 381,162.60631,146.47913,39.567093,85.96176,0.012809377 381,621.27905,207.55559,17.867615,57.252823,0.007928935 381,323.76895,129.37917,34.968567,83.46561,0.0028040155 381,477.0966,64.425095,34.16922,65.56958,0.0018042319 381,91.78932,152.59535,41.27475,95.19098,0.0016886352 381,543.3659,183.80997,25.846252,52.740875,0.0011136243 381,346.74734,198.5191,24.06134,46.14572,0.00078523473 381,610.67816,199.07367,28.468506,144.94962,0.0007101238 381,568.89465,419.46902,68.723206,82.973175,0.0006717694 381,413.90195,171.74924,63.347137,108.414154,0.00038738718 381,615.61206,156.57594,23.534607,87.0587,0.0002694616 381,598.7366,116.68913,39.43805,168.25264,0.00017844973 381,614.18616,395.00375,24.96051,98.95474,0.00017458481 381,392.79614,126.10963,137.94489,219.8735,0.00012789431 381,527.1734,132.68698,43.994995,109.79451,0.00010368732 381,603.94324,264.79834,35.20343,201.59546,7.9038786e-05 381,183.52582,174.3632,19.123764,45.36818,5.6548037e-05 381,0.9425106,219.98068,18.358257,73.148254,5.1219155e-05 381,612.20917,0.0,26.9375,134.85573,3.4647066e-05 381,539.3334,152.71745,23.965149,56.838257,2.6027976e-05 381,574.5352,4.2045655,57.2041,54.6752,1.364136e-05 381,69.23736,139.03508,111.95496,201.32002,1.3332897e-05 381,1.0859392,339.02188,18.512726,134.57489,1.0909217e-05 381,1.5584595,443.6958,20.450571,58.44162,9.271592e-06 381,566.2131,10.697663,71.23541,145.54753,5.0404155e-06 381,1.9496851,209.86598,32.870045,162.19133,4.5578768e-06 381,3.3543768,395.20944,57.015804,99.57239,3.9738584e-06 381,509.4095,419.93274,84.114075,78.41049,1.8645005e-06 381,2.0300927,102.72391,32.83095,166.14911,1.0537814e-06 381,521.1889,6.7253013,66.446655,53.458817,3.2170223e-07 381,423.61554,4.925319,46.04373,61.349346,1.2170959e-07 381,462.83792,8.988474,42.779694,55.222275,5.995051e-08 381,388.33997,1.7264519,44.056,55.381702,1.8214152e-08 381,499.32553,7.046481,41.92575,51.957127,5.474871e-09 381,359.803,4.0683727,45.44745,48.735596,1.1766149e-09 381,2.0870183,9.801182,32.21214,75.8763,5.501446e-10 382,480.086,168.22173,31.615479,79.82115,99.889404 382,71.946945,163.48534,24.611534,45.296677,14.649584 382,497.93646,164.09784,37.036255,69.40857,7.4698305 382,438.84564,154.19765,35.062744,92.3846,0.37437183 382,422.33112,159.62897,26.61795,61.2731,0.16592969 382,154.8846,110.47811,41.71968,88.72692,0.096762136 382,610.40546,163.97539,28.74121,77.27727,0.046284445 382,321.69943,91.984,34.420227,111.89941,0.032564003 382,465.24924,81.1095,22.843842,52.617935,0.0142701985 382,623.365,84.77183,15.781677,49.063347,0.014253185 382,586.33954,76.8569,51.007935,257.53668,0.009002471 382,608.0901,68.22621,28.548828,79.86948,0.008999596 382,602.9062,262.20883,35.3302,80.97708,0.008604388 382,72.53963,109.69546,48.233147,121.50637,0.0066062035 382,454.2736,154.26155,21.225067,46.050858,0.004819383 382,347.63437,156.27151,22.318878,45.791946,0.003547662 382,153.2293,148.14667,20.02658,45.681015,0.0024797283 382,415.6819,80.794975,25.693176,51.255013,0.0016295228 382,336.91245,153.89943,20.127289,46.21643,0.0006532707 382,463.25653,134.61133,67.941956,154.383,0.0006268966 382,172.55995,139.84644,19.520126,50.461777,0.00042027934 382,342.56683,81.281296,36.790924,99.70256,0.00037853536 382,615.8993,204.63515,23.247375,103.282364,0.0002853286 382,585.601,6.6217256,53.545654,137.71146,0.00027450832 382,609.07965,439.9691,30.067017,66.009,0.00011424276 382,1.0000391,185.78603,18.517208,69.93121,4.9165697e-05 382,356.153,85.12664,20.818298,45.733116,4.5417008e-05 382,574.0965,55.357777,44.63617,165.70026,4.3830583e-05 382,1.0739363,313.02405,18.822317,131.82101,9.271767e-06 382,2.1251848,151.05713,34.003372,164.01788,7.877167e-06 382,1.2300977,442.158,20.308464,61.42578,5.682299e-06 382,3.5347512,296.22235,57.278023,178.79031,3.2038222e-06 382,612.9168,0.0,26.229858,49.34177,2.9086461e-06 382,1.4765544,95.19855,18.89245,121.24249,2.0690084e-06 382,560.35004,3.8763607,44.881226,62.931202,3.3867047e-07 382,532.75946,8.114557,41.60553,60.806564,7.320073e-08 382,505.54492,8.888454,42.141235,62.750927,7.8460864e-09 382,440.4748,6.4500785,45.72226,55.4474,4.2324338e-10 382,415.27118,3.8038414,44.78778,54.773766,4.823771e-11 382,1.779165,6.9461527,32.973553,76.74523,4.6468655e-11 383,538.7503,208.6998,36.51526,102.04544,99.977615 383,461.41766,194.77164,27.019745,55.030136,99.27092 383,43.18459,210.03589,30.770473,47.525696,96.29764 383,469.82724,185.0828,48.908844,111.94916,2.3081975 383,501.38565,200.48773,36.019623,108.64981,0.7258299 383,299.59116,140.48402,27.863708,57.619965,0.04284912 383,150.50511,159.9333,35.124115,85.74753,0.039310668 383,475.8299,186.74915,25.653503,58.727676,0.015036394 383,420.8372,125.67487,19.773224,45.02854,0.009481766 383,77.870415,144.82178,42.713234,114.80548,0.0064980136 383,615.3355,216.655,23.777649,76.8197,0.0054507507 383,313.55566,137.70906,36.26584,112.108765,0.0036799004 383,438.45383,127.73735,91.67667,219.68379,0.0023878696 383,598.176,120.879456,39.92798,169.50879,0.0013536698 383,364.69998,188.12552,41.437256,71.01193,0.00134522 383,346.51862,127.743965,26.294556,61.716164,0.0006961659 383,517.2953,182.40028,84.73859,181.1155,0.0005836828 383,171.67145,167.51651,32.082626,71.73518,0.0005179063 383,348.22937,143.36221,81.321655,167.33249,0.00043740738 383,1.0746541,213.85503,19.753332,131.46333,6.4330576e-05 383,608.4953,439.09018,30.651367,69.39743,5.790384e-05 383,8.20917,135.11415,138.65138,224.86568,2.9328692e-05 383,1.0901465,341.05908,18.667387,131.27426,7.697349e-06 383,4.0033984,188.44646,57.814766,227.00957,7.1276745e-06 383,510.30377,423.11548,80.19623,79.74625,2.060954e-06 383,3.2262516,393.91287,56.45941,101.784546,1.9312852e-06 383,1.4762077,143.44067,18.625055,123.51807,1.5119646e-06 383,608.15735,0.753182,30.989319,57.023342,1.2147332e-06 383,396.71436,0.0,45.02112,48.112793,1.5748648e-07 383,510.18396,4.220316,44.96338,57.582443,1.8457559e-08 383,430.8127,5.6475034,44.311554,53.051693,1.7702687e-08 383,372.839,0.0,46.571136,58.630745,1.6883261e-08 383,577.5084,1.5062532,43.63678,48.94341,3.6083925e-09 383,0.99152833,7.61244,19.181034,55.502884,1.6813776e-09 383,536.77313,2.1709146,45.47931,52.824192,1.4512416e-09 383,455.91595,0.7513314,47.29181,61.509594,1.2205141e-09 383,482.5598,4.799603,45.053955,60.63422,2.7144828e-10 384,491.40778,208.07228,25.549622,49.439438,99.45621 384,544.93115,215.97379,26.786926,51.095856,0.11808583 384,582.7737,167.50032,53.684753,217.1939,0.010274526 384,619.47736,287.4284,19.669312,68.24716,0.0099407965 384,605.54486,204.8711,33.33441,80.15631,0.0047946703 384,614.3916,50.156082,23.973206,81.565094,0.0023772998 384,582.01355,3.1334832,54.85492,124.375435,0.0015404444 384,616.3064,162.50185,22.840271,88.60399,0.0007246091 384,360.2402,126.81157,25.18689,61.259354,0.0007072826 384,464.9725,107.35064,38.244385,84.340614,0.00049655937 384,599.26056,262.89307,39.6308,215.80063,0.00048752758 384,474.27756,162.5705,58.87033,116.78226,0.00034246463 384,441.08307,94.68985,45.54193,155.26442,0.00019918743 384,1.3313258,218.64975,27.383793,151.93527,0.00017394993 384,465.79938,291.28326,47.135254,118.82379,0.000112209316 384,4.5491033,195.00378,55.007748,233.44983,9.3690054e-05 384,444.94138,110.268295,135.02072,256.50854,7.719682e-05 384,599.4802,29.49819,39.34723,234.92183,5.1323746e-05 384,608.94653,3.3701627,30.200134,65.82797,4.217768e-05 384,609.47577,438.43616,29.670898,66.88376,2.7102109e-05 384,357.49106,148.05785,95.35391,212.41298,1.5834792e-05 384,6.6147137,136.96959,113.13948,205.47762,1.1349406e-05 384,544.8275,439.85538,44.331665,66.52316,9.293297e-06 384,1.0051497,336.96082,19.273155,137.66165,7.884111e-06 384,0.9790088,422.33936,17.577435,78.72119,6.4696274e-06 384,567.2807,6.1940303,45.698303,63.136192,5.5468904e-06 384,3.5002654,341.98618,57.74576,143.82416,4.788107e-06 384,2.2172143,148.35669,32.646194,146.64337,4.142955e-06 384,509.32883,394.36932,104.816315,100.67157,2.235886e-06 384,517.6657,436.14273,48.095337,67.97571,1.5486231e-06 384,523.377,4.1286197,46.545105,59.48908,2.163377e-07 384,1.0173299,8.138149,19.50495,54.480877,2.9778795e-09 384,425.1804,3.2487566,43.12906,54.45925,3.8142288e-11 385,546.0975,213.80069,28.282593,56.899475,99.905235 385,392.97348,209.19334,22.077393,46.98134,91.325165 385,532.17114,197.94702,31.015808,49.987198,4.1644564 385,246.3765,207.51987,21.025452,45.316055,1.5975449 385,158.16464,159.6985,47.511124,90.65883,0.10060483 385,404.4038,203.25824,23.940247,45.238922,0.07786423 385,378.2009,209.76697,22.913269,48.562134,0.07267056 385,596.2067,211.88927,35.45758,70.72737,0.06252963 385,384.6456,181.00691,45.77896,88.438644,0.061425854 385,374.77884,107.69909,27.085999,71.46194,0.03325551 385,45.085247,203.80565,26.352375,53.301163,0.0054118014 385,502.84387,197.6074,22.79187,50.064728,0.0035160764 385,492.53308,143.18517,21.98993,48.16574,0.0034832032 385,624.8441,378.53665,14.302551,45.47238,0.003285525 385,339.3517,204.59843,23.13736,48.53946,0.0020122016 385,529.6469,189.81673,73.1864,99.70433,0.0014627407 385,609.9396,341.9603,29.207092,139.94315,0.0011970474 385,154.78467,193.87593,24.350693,50.69449,0.000953311 385,615.3455,240.8625,23.801147,86.09932,0.0009185549 385,588.0068,189.35568,50.3219,216.41898,0.0006639 385,601.2829,74.01343,37.622925,211.15732,0.00033759346 385,1.0628834,210.29553,17.057583,118.6965,0.00013453331 385,367.6319,142.03954,87.60681,176.18413,8.110566e-05 385,452.8836,92.498276,47.473236,149.6095,6.110693e-05 385,496.54376,129.68283,138.82385,237.36014,3.757913e-05 385,1.9612752,233.69391,33.18395,169.47781,2.9161185e-05 385,364.65482,86.777336,55.81894,140.48886,2.1087866e-05 385,393.9895,114.669876,24.047333,58.546844,1.8577422e-05 385,610.4379,2.1221256,28.70874,57.834915,1.3760602e-05 385,1.0022217,329.5232,19.20776,133.05048,1.2275602e-05 385,3.332038,116.62999,57.08579,207.93517,1.0035195e-05 385,509.10226,422.80804,78.56137,85.37573,9.458641e-06 385,3.1589894,285.54575,57.580467,189.39093,7.2568687e-06 385,494.27805,316.17606,40.05362,128.92203,3.6663057e-06 385,524.5947,462.6325,40.6037,48.113647,3.4334253e-06 385,1.4874618,163.12108,18.276707,81.81653,2.423576e-06 385,1.3056169,440.70605,20.724926,62.582092,2.0834352e-06 385,2.1787777,19.436726,55.590195,115.67192,1.1941107e-07 386,410.18552,214.09956,28.46408,56.356888,68.32391 386,243.40591,192.04518,29.063416,63.589203,2.1854413 386,534.4108,200.57048,23.960022,48.65773,0.04525824 386,549.7374,201.1328,24.86377,45.883118,0.018915838 386,106.56072,209.47388,26.426735,48.694214,0.013165323 386,619.18396,212.93542,19.962708,75.112854,0.010867305 386,428.51865,194.23755,30.064087,57.73941,0.008181245 386,592.44543,197.92557,26.5943,47.597534,0.0074121743 386,110.53875,168.97507,41.027946,95.94977,0.0054323697 386,433.6797,140.40656,26.328247,64.795654,0.0019282878 386,445.68057,98.553375,35.20508,71.690414,0.00084573857 386,398.5631,175.30637,55.810852,113.70584,0.00084234826 386,617.501,381.81335,21.64569,79.91077,0.00020021644 386,600.89166,137.11702,38.200806,170.91002,0.00017503025 386,361.96432,94.435,44.0589,116.48709,0.00012001767 386,423.0095,108.46728,81.58145,155.70663,0.00010404283 386,608.67035,438.26813,30.476318,67.035645,9.526771e-05 386,4.2323456,113.28305,57.843227,206.12912,7.484834e-05 386,588.6287,203.70822,49.901733,232.96338,6.3659965e-05 386,571.36035,365.80484,67.645996,125.78647,4.209028e-05 386,0.87593347,220.09175,17.251682,127.414566,3.836983e-05 386,41.377426,131.03766,83.19207,168.27124,2.4849905e-05 386,1.0886832,348.5045,19.440916,128.68567,1.6726804e-05 386,1.5919557,257.8551,31.240671,182.62766,1.2610361e-05 386,327.5003,77.598976,116.2619,210.01144,1.157237e-05 386,611.17163,0.9595606,27.975037,59.452724,9.839409e-06 386,3.5284116,332.51053,58.027096,153.7062,8.537677e-06 386,2.4340577,84.72292,31.318354,155.1651,8.217215e-06 386,473.8973,107.1647,45.666595,103.78281,6.9198654e-06 386,1.692334,420.1072,35.51507,78.83734,3.604023e-06 386,541.6396,426.72815,80.32947,74.19217,1.713627e-06 386,309.5944,430.3092,73.894135,70.01138,8.355629e-07 386,529.99445,456.07828,40.065308,49.306793,7.3031043e-07 386,488.98364,427.97208,71.989685,70.75772,2.589826e-07 386,2.0202117,23.63493,55.1966,105.43504,1.3230912e-08 387,586.93616,188.14427,38.10211,72.79799,0.12700841 387,79.564896,205.78323,42.1343,59.641296,0.09170106 387,67.66069,210.54459,28.990097,51.00119,0.05124422 387,118.41478,184.14992,33.33336,79.714554,0.012086036 387,611.04944,187.4476,26.815552,63.46158,0.00898945 387,180.80653,165.83539,27.640045,52.58583,0.0058535137 387,462.50714,91.3947,38.564636,102.37642,0.0058495738 387,2.1365218,179.77126,32.992393,92.05495,0.0051603764 387,388.0719,200.69762,21.675049,46.625854,0.0041937246 387,12.137069,93.69322,38.347847,83.76903,0.00225887 387,371.34155,201.15555,30.507263,62.01111,0.0011566326 387,97.621864,175.74261,39.002007,112.09961,0.0008792241 387,487.045,235.91542,33.23404,59.633804,0.0006615149 387,618.0795,227.43643,21.067139,82.8114,0.000539867 387,598.2505,123.56935,39.9494,167.57918,0.00049214857 387,503.84543,104.201195,46.85092,161.97961,0.0004911948 387,621.52435,406.51688,17.622314,54.218872,0.00034787357 387,4.098522,100.54261,72.42296,230.49338,0.0002478761 387,1.3920541,210.9242,13.373709,55.230408,0.00015857277 387,156.55139,178.80989,37.261307,81.829025,0.0001554479 387,458.05563,98.13332,70.63217,205.25974,0.00012831972 387,611.4192,264.83014,27.727478,137.30692,0.00010165574 387,611.2226,369.347,27.924072,132.06604,8.976789e-05 387,2.0204248,208.0004,31.77052,188.28882,3.9324193e-05 387,587.8105,195.41394,50.997986,260.2117,3.9010807e-05 387,526.0789,154.113,21.123352,46.083008,3.136604e-05 387,1.8902588,90.165016,20.51773,86.151924,2.8337889e-05 387,1.4939088,169.65001,15.309649,69.13701,2.1856718e-05 387,0.9463908,316.7617,17.998331,132.48468,1.5672565e-05 387,461.26944,161.08665,41.026917,94.28226,1.3740565e-05 387,611.38043,0.56194335,27.766235,59.778984,8.49094e-06 387,3.3406968,330.25705,57.75705,152.05771,3.969389e-06 387,0.82272786,418.0815,15.984811,83.32059,2.7775995e-06 387,536.76056,429.63458,82.42865,70.65094,1.3931209e-06 387,3.1025195,428.5328,53.145947,70.5997,1.1676918e-06 387,1.5414722,36.31562,33.702705,184.55194,8.9436503e-07 387,1.4622982,12.614024,34.63753,83.47221,4.818029e-09 387,372.28705,4.5540333,41.000763,48.689705,3.5169134e-09 387,341.9378,2.5415723,42.912323,48.90115,3.3035366e-10 387,500.68835,2.261688,44.164673,48.509197,1.8752855e-10 387,472.98923,0.26707193,44.5372,52.13679,6.563949e-12 388,515.23395,218.77092,25.024597,57.245377,89.4337 388,468.4333,209.20695,23.203491,51.294327,52.142586 388,491.09515,209.52663,28.663208,64.647354,0.8650055 388,94.437416,180.07877,32.867264,72.60445,0.023489023 388,427.34933,203.77527,22.040741,48.019012,0.016846342 388,249.41353,206.7251,25.808212,46.53743,0.014272687 388,387.97354,207.95053,20.9198,53.786774,0.014236125 388,620.4672,345.25165,18.679443,55.18857,0.005417925 388,56.264656,141.31804,37.051865,119.17088,0.0050290064 388,603.72504,211.17441,34.12622,179.65372,0.0046457467 388,369.65845,181.7778,35.341705,91.22461,0.0024154545 388,74.472015,165.1138,38.259888,95.77811,0.002357311 388,90.12423,169.14725,20.426582,46.242477,0.0013719506 388,163.89307,167.23483,33.85176,71.50922,0.0009335754 388,469.27948,56.341057,34.533722,72.61773,0.0009117266 388,611.33856,354.11688,27.808105,145.88474,0.00045491234 388,10.278055,115.166695,72.08469,158.55685,0.0004368954 388,610.1248,86.014565,28.578186,121.98196,0.00035790692 388,587.90155,89.18018,49.677124,243.67068,0.000141592 388,471.34198,148.2183,135.28638,214.06297,7.9491736e-05 388,608.65265,0.6377702,30.494019,65.08781,5.1711784e-05 388,1.5807219,209.70036,18.981647,68.70888,4.128174e-05 388,2.258873,183.63148,34.845646,181.67787,3.5270965e-05 388,0.9946558,325.32904,18.180227,131.90613,1.7418522e-05 388,1.8580184,67.71405,30.617178,154.04199,1.6305672e-05 388,0.8575171,273.7492,18.372606,73.34433,1.2857926e-05 388,411.8085,392.69193,117.32028,102.04663,9.8995915e-06 388,444.70084,440.5971,44.09906,64.22604,9.888287e-06 388,384.1429,96.70148,36.029053,75.558014,7.6008996e-06 388,561.45636,423.29474,77.69031,73.51532,7.551781e-06 388,582.8418,14.789265,55.5401,123.457275,6.1117353e-06 388,1.0811727,392.20688,28.435215,103.75885,3.7240486e-06 388,478.16547,139.34845,37.04779,82.175415,3.5933977e-06 388,3.516299,337.46802,57.442627,145.67981,3.5532948e-06 388,549.89923,451.50882,41.459473,51.094055,5.196962e-07 388,509.64792,4.6101727,43.989166,57.50484,1.932548e-07 388,579.7049,4.6636395,42.493896,57.480705,1.2785257e-07 388,450.43454,16.301844,91.188934,217.91066,1.0700265e-07 388,467.55594,4.568952,67.90231,60.4735,2.4481087e-08 388,1.7886117,12.891794,31.828182,77.663826,2.7612943e-09 388,421.52057,4.5299954,45.483154,49.395187,1.8004243e-09 389,580.2803,223.78224,53.742004,105.728775,99.769745 389,512.2822,205.58286,28.31726,63.34665,99.70445 389,540.50165,209.47617,23.4682,63.549225,72.87887 389,415.06335,203.08348,28.019531,65.36055,72.430824 389,493.40607,205.08238,29.781128,57.10002,33.951656 389,402.96878,211.56575,23.40384,51.78505,3.2925315 389,616.0649,229.8345,23.081787,97.26349,2.135715 389,70.45484,210.44022,27.228226,46.37097,0.13407871 389,8.220777,161.65541,42.086555,90.47923,0.07185562 389,431.27173,202.37527,36.294647,72.01819,0.01103981 389,8.003378,211.73003,25.667562,51.25554,0.00608294 389,1.4625603,113.204895,22.557228,163.64151,0.0013822073 389,602.0574,197.40895,37.089294,272.55145,0.0013811742 389,606.47504,433.92636,32.67163,71.10135,0.0006002464 389,609.90485,18.699915,28.5401,117.12168,0.0003557626 389,384.56964,85.47387,48.54785,179.90622,0.0003294412 389,535.3342,141.2754,103.81244,245.65779,0.0002863672 389,2.0284653,194.11427,32.484745,194.79817,2.6279238e-05 389,480.24792,166.34436,93.13605,176.99973,2.3499208e-05 389,592.9351,11.696846,44.740234,49.404926,2.3210465e-05 389,1.028702,358.88788,18.370478,128.08801,1.2833021e-05 389,571.1783,358.73132,67.96838,133.34625,1.2279338e-05 389,1.2275635,29.229708,31.667662,159.47314,4.738809e-06 389,3.011255,385.50348,56.00589,105.993195,2.9720168e-06 389,544.6078,5.2073536,44.4411,57.36064,1.5779566e-06 389,516.4355,4.034105,48.056152,62.951637,2.9813037e-07 389,442.6132,4.5654054,46.194885,54.23841,6.153183e-08 390,602.29956,213.90994,30.745789,57.448425,99.7809 390,580.63025,214.38214,25.846619,60.264313,95.40126 390,568.8884,211.9348,22.005737,60.064987,69.081535 390,622.87634,208.51369,16.270325,56.158646,0.28505585 390,431.2156,208.32724,28.007782,55.855408,0.062358294 390,542.0365,72.87989,20.78418,45.878983,0.046187475 390,40.49941,211.53049,29.388088,45.81848,0.02750102 390,600.38165,185.5588,34.994324,172.44513,0.023539064 390,380.36365,144.7478,27.029755,54.18135,0.009218085 390,535.8364,75.99,34.74829,99.69305,0.003156187 390,612.4924,65.43323,26.654297,88.61699,0.0008432356 390,608.02075,102.27895,31.125916,178.93567,0.0007131508 390,442.98224,162.44476,25.049652,53.93042,0.0005010365 390,606.4824,430.75888,32.568237,74.471954,0.00041826093 390,1.494218,69.93606,27.773483,87.85532,0.0001261757 390,2.4741008,97.87459,34.44315,183.44289,8.70067e-05 390,611.1431,278.7748,28.00354,135.60648,7.218092e-05 390,1.4960327,127.68685,14.417037,57.8339,7.0329676e-05 390,1.517509,182.93036,20.012924,119.254425,6.8857255e-05 390,497.30615,33.06146,25.068787,55.940037,2.9033868e-05 390,4.3425083,172.88055,57.035316,206.72223,2.7886632e-05 390,587.92694,320.38916,50.636536,171.25043,2.5068175e-05 390,1.0234855,349.17566,17.410067,128.80112,1.7369752e-05 390,1.3558781,30.846668,20.099194,84.88623,1.2033625e-05 390,1.874165,250.6226,33.116547,187.51033,9.595214e-06 390,3.1558204,390.661,56.436447,102.117065,7.345408e-06 390,2.761634,33.338295,79.09822,138.2623,4.574337e-06 390,470.78485,40.954597,93.76355,223.0633,3.5146988e-06 390,458.1437,84.29194,43.24292,157.85547,1.2867661e-06 390,478.98135,10.110906,79.99716,77.40941,8.777259e-07 390,1.4752344,9.613601,37.318607,49.813488,8.461285e-07 390,472.37558,35.842674,33.382416,74.33484,7.93056e-07 390,611.5262,0.0,27.620483,62.933258,5.260209e-07 390,82.3455,9.708956,42.776146,48.146446,4.9709655e-07 390,109.46263,9.238203,42.825546,46.722412,1.2688666e-07 390,260.24554,9.305641,38.79068,46.711067,1.08499634e-07 390,335.02884,9.799587,39.053467,50.97257,7.950821e-08 390,524.31464,2.7486215,46.339783,54.100044,6.601956e-08 390,288.0843,9.392528,38.597504,50.40335,5.644712e-08 390,191.6202,8.831031,41.25296,46.764503,5.255733e-08 390,468.06992,6.019811,47.96823,56.13945,1.0205839e-08 390,443.866,8.402155,44.1922,51.65,4.3503445e-09 391,200.78035,213.20998,29.218094,45.39583,6.348032 391,442.4156,193.04109,32.615417,68.96208,0.53398 391,546.4257,113.76289,33.268005,81.25542,0.30854297 391,234.30281,210.88129,26.440842,49.106842,0.096847 391,531.56134,222.32042,25.062622,48.218246,0.07269301 391,431.36505,213.10297,19.865692,45.24173,0.030517548 391,558.14264,106.02306,20.218933,48.813484,0.020282462 391,587.7486,81.20263,49.868774,248.16367,0.0072935387 391,513.3596,167.73102,41.620056,93.08423,0.005045907 391,603.66394,193.72699,34.37799,94.969604,0.0035319517 391,457.10788,154.74376,26.904846,57.12419,0.0035243444 391,616.52057,150.09506,22.626099,97.93086,0.00058228837 391,611.5241,236.84698,27.622559,107.1962,0.00051793596 391,613.4429,50.247753,25.703796,107.36865,0.00028059867 391,1.0899618,202.94475,18.912266,64.11983,0.00015706112 391,608.36755,434.5474,30.779114,68.01282,0.00013072524 391,2.7066178,150.15022,36.393192,166.1025,7.382573e-05 391,1.1047795,335.33206,18.058493,132.56186,3.0217057e-05 391,1.6499155,228.11792,28.105228,161.62479,2.0691554e-05 391,3.0531087,393.13934,56.56197,101.58823,1.6106089e-05 391,611.1118,4.3752832,28.034851,56.432518,1.006009e-05 391,2.4509685,92.2477,27.090902,139.93936,7.14841e-06 391,0.90663904,0.0,28.02857,46.577274,7.0610844e-07 391,3.0209506,16.16974,58.567516,223.47118,4.2305842e-07 391,262.6892,13.477038,111.14514,117.14232,3.5376047e-07 391,184.39328,15.626609,119.13068,116.87066,3.041543e-07 391,125.72914,1.8358105,45.10518,48.139736,1.5833463e-07 391,0.7741179,5.754089,22.265865,132.38591,1.4596043e-07 391,340.30624,7.738789,83.211,79.24624,9.491018e-08 391,449.5409,5.5888753,59.60135,45.1469,5.145307e-08 391,18.87447,0.0,46.65144,68.45169,4.7116487e-08 391,83.34121,0.0,46.574165,54.263973,3.1055084e-08 391,409.44403,9.334893,84.079895,76.71718,2.900809e-08 391,40.92129,0.0,63.824703,64.98968,2.096688e-08 391,155.27486,5.040892,88.618866,93.22664,1.3955716e-08 392,447.84943,214.51248,26.074707,56.55612,99.66087 392,405.60687,214.66705,20.83194,48.74225,2.84989 392,474.19565,216.37393,29.467957,52.362183,0.08318681 392,436.6225,217.69417,21.792938,47.232407,0.014759338 392,573.6359,220.09451,23.615417,48.11505,0.0035811095 392,606.9016,100.85753,31.77063,90.27292,0.0035271253 392,609.4257,206.27281,29.313599,131.12294,0.003430622 392,609.84924,287.566,29.297424,109.80087,0.001518464 392,585.7259,167.28363,51.009705,235.77814,0.0014086675 392,544.7279,326.93195,53.715027,128.20609,0.0013104667 392,619.1548,69.22602,19.991882,70.53149,0.0012250802 392,599.167,326.73026,39.306213,174.38528,0.001062534 392,428.1118,185.01303,61.465424,107.2999,0.00046667474 392,530.58246,77.77383,46.22412,133.01672,0.00035860526 392,607.4216,435.30112,31.725098,69.04474,0.00029057905 392,2.4511344,144.45346,28.785416,135.39545,0.00015253242 392,585.2953,37.137463,53.039734,210.0121,6.779489e-05 392,427.8208,144.14746,37.832764,72.785126,3.0098849e-05 392,401.34244,134.04759,135.03818,240.43144,2.1904045e-05 392,3.9156854,51.811882,57.89717,216.81775,2.098287e-05 392,3.7309506,325.66016,56.921455,158.12057,1.2841602e-05 392,1.3945727,367.25797,19.372492,125.10309,1.1179835e-05 392,1.8734384,214.61978,29.625196,146.33481,7.936768e-06 392,2.111429,65.5232,19.856623,130.28867,4.696643e-06 392,492.01508,48.17061,110.47882,229.0396,2.6731589e-06 392,1.074266,32.365437,19.899231,81.30559,1.420568e-06 392,612.3461,0.0,26.800537,60.73064,2.3047046e-07 392,1.8002506,12.083418,60.964928,80.97372,1.4557119e-07 392,323.12518,0.0,46.08368,51.21745,9.50504e-08 392,84.28182,4.0203876,44.67034,50.813103,6.426845e-08 392,57.165215,4.621745,44.725143,51.298256,6.145735e-08 392,136.2728,7.1861753,83.49158,84.48736,4.735425e-08 392,296.23453,0.0,46.1019,52.426113,4.614608e-08 392,111.92615,2.286014,44.713104,53.351124,4.5257504e-08 392,32.86829,7.163255,46.70052,60.29624,3.7430297e-08 392,68.20969,9.876042,84.483734,82.21394,3.2827867e-08 392,382.74554,5.517526,83.33087,84.76074,2.29339e-08 392,207.9625,0.0,43.967117,51.1259,1.625953e-08 392,272.04672,1.6910124,46.58957,64.04803,1.398124e-08 392,179.27449,1.2904102,43.815308,52.6662,1.0707895e-08 392,232.41214,1.6404753,45.253387,64.05534,7.545708e-09 392,476.1697,2.3357162,49.98233,63.03434,4.8812794e-09 392,420.40396,8.108099,127.934296,126.67454,3.0680625e-09 392,501.5902,0.0,52.656372,74.429634,8.369685e-10 393,430.94922,215.36568,28.162415,66.20247,99.86541 393,119.340576,211.70657,30.469498,61.4877,60.498226 393,420.0462,216.43745,19.0177,50.093216,6.711357 393,87.33273,208.74196,36.70723,65.454544,2.8068597 393,369.4769,209.70844,23.392487,54.58075,2.2511945 393,617.33295,188.34642,21.781067,69.5327,0.004683701 393,609.6707,212.12943,29.475952,134.376,0.0029811952 393,526.79645,230.13174,20.818848,45.047974,0.0012093525 393,602.0656,98.17575,36.254272,163.86984,0.00030933064 393,583.06134,393.1976,55.913208,117.17703,0.00022764536 393,408.7954,179.76942,76.67111,151.18184,0.00013076526 393,497.7569,61.00397,45.52234,148.1003,9.4229305e-05 393,1.260319,103.39426,29.694874,147.01799,2.6597734e-05 393,1.4423105,330.23877,19.879618,132.15619,1.90737e-05 393,3.8945835,394.75824,56.167084,100.53134,1.0639709e-05 393,3.195656,118.415276,58.127953,262.44043,4.117808e-06 393,1.1853036,51.42127,19.079987,80.45648,3.259369e-06 393,2.8669238,19.58931,58.996338,116.59447,2.0547095e-06 393,1.927561,248.06699,29.746944,154.0499,1.742054e-06 393,1.1359986,174.08446,21.901358,145.32384,1.6008076e-06 393,1.7823975,9.282643,26.263508,63.589832,1.0012442e-06 393,612.15326,0.0,26.993408,63.94435,9.028353e-07 393,472.3449,19.908764,117.17035,261.9901,6.331229e-07 393,31.868464,23.014492,115.83654,109.943405,6.2736615e-07 393,14.161936,7.4894466,47.692642,55.31492,1.7733754e-07 393,147.56068,20.304525,110.18117,110.44366,9.665998e-08 393,94.6777,13.1572695,82.745705,83.43349,9.27735e-08 393,357.2188,0.17143881,45.75644,49.555527,7.970134e-08 393,391.72797,0.9348405,45.889557,47.378353,7.7617536e-08 393,190.97644,8.039476,47.6532,60.40728,5.592779e-08 393,142.97025,6.85556,47.90341,58.211983,4.862298e-08 393,111.461815,7.522204,45.181984,50.285927,4.208827e-08 393,84.583176,8.254313,45.626358,51.71001,2.8504868e-08 393,240.58188,3.2573586,45.47058,53.75867,2.577446e-08 393,57.0006,8.25862,46.23663,51.853157,2.3512179e-08 393,306.24713,3.1443589,46.096527,65.316696,2.1132374e-08 393,275.03867,2.0391161,45.598907,52.888084,1.9534898e-08 393,432.13278,1.1896485,47.052063,52.64622,1.6731375e-08 393,333.48703,2.138457,46.949493,62.882538,1.395332e-08 393,467.1841,0.0,54.799835,73.80598,4.949739e-09 393,408.66748,3.0046062,89.309204,94.58834,1.7085003e-09 394,399.03598,215.05997,33.739746,76.480835,99.93203 394,326.46344,217.09312,21.252625,54.591385,15.436236 394,3.6129234,213.37735,30.469036,76.782074,9.816219 394,46.865814,225.36977,31.436127,56.79637,1.7762476 394,359.66406,141.33583,26.26236,57.209076,0.017858468 394,339.4929,223.56348,23.680878,54.55786,0.010733912 394,616.24164,216.37366,22.90503,66.82364,0.008083918 394,530.5287,222.8273,23.423828,47.876373,0.0038861115 394,470.66382,235.50685,21.550934,48.534714,0.0035285181 394,82.52909,127.0443,56.921486,146.20851,0.0021001115 394,609.9795,235.67154,29.167175,145.95685,0.0012996069 394,340.2375,182.22339,44.463196,107.18469,0.0011271166 394,1.8164583,167.99525,58.05936,187.96065,0.00026224361 394,611.2673,336.32666,27.879395,139.3475,0.00018695413 394,384.86148,184.09402,71.21097,148.40317,0.000100326666 394,299.29184,140.09573,91.92935,211.47559,8.1772814e-05 394,453.52173,63.16102,45.10074,144.95609,1.7365312e-05 394,3.8238347,331.98688,57.156128,159.71234,1.2642778e-05 394,1.4029607,382.14926,19.737562,115.67944,1.2574299e-05 394,0.98674154,227.8873,22.027836,185.42697,1.0849497e-05 394,1.3086662,55.1081,18.98533,74.006676,7.500234e-06 394,3.1644337,23.711622,56.432777,105.76189,4.458293e-06 394,612.3825,0.0,26.76416,63.209957,3.5565292e-06 394,1.7325407,41.32701,37.7403,221.70055,2.6788448e-06 394,1.4994003,10.360544,26.749266,64.45312,7.298996e-07 394,412.85043,0.0,118.28189,268.47937,4.4905414e-07 394,34.679867,22.785892,108.91211,106.3031,3.444535e-07 394,107.22345,19.159588,107.06299,108.34784,2.3089726e-07 394,74.97536,7.870622,48.277405,57.31549,1.4973506e-07 394,15.01606,9.081773,46.750492,52.392624,1.4307015e-07 394,50.31262,8.661566,44.926044,48.95562,1.1123205e-07 394,116.34966,8.773685,48.11019,58.267048,1.0393707e-07 394,143.72974,10.075013,48.016754,58.024055,7.004514e-08 394,365.00952,0.3946159,45.1976,50.072533,3.9167105e-08 394,169.91628,8.337989,48.125443,59.875618,3.0556595e-08 394,198.85736,10.944177,83.80066,82.66192,2.7602635e-08 394,337.05908,0.3004411,44.850464,51.04875,2.699945e-08 394,296.01355,1.5544857,45.13864,50.9178,2.258937e-08 394,207.1686,5.9762926,45.065475,50.805286,1.98328e-08 394,261.63977,2.0036263,44.59073,52.080597,1.751441e-08 394,233.87985,4.160908,44.776,51.563156,1.6131981e-08 394,390.5374,0.05748698,47.414093,56.84874,1.0885299e-08 394,420.22955,0.0,56.1864,73.63471,1.0131227e-08 395,336.56223,214.1489,37.927948,82.60727,99.963486 395,226.95154,219.54001,31.657196,63.434357,92.21046 395,251.88727,211.94298,25.300415,58.323532,50.66059 395,262.55798,228.34279,25.166046,53.225174,0.3498819 395,603.0632,116.73675,34.94989,142.03204,0.028964182 395,201.49742,190.41853,50.543,99.68016,0.0060502416 395,477.22833,228.05907,22.904846,46.739975,0.0037812297 395,615.96576,207.83884,23.180908,90.140594,0.0033566558 395,413.96875,236.74059,22.949738,47.044235,0.0018655286 395,587.96454,110.823845,36.840332,92.501595,0.0010232503 395,443.11423,237.43175,22.018188,45.185074,0.00082652323 395,600.4005,217.595,38.746155,204.52768,0.00040383352 395,213.14247,166.21547,103.40135,186.70387,0.00022351969 395,598.056,413.08075,41.090637,87.10443,0.00014370892 395,2.643694,103.1947,35.271584,177.01959,0.0001365555 395,314.8719,176.09506,86.63641,176.17044,9.8881705e-05 395,402.82935,60.97859,41.92108,139.37022,4.7107285e-05 395,1.5511597,184.3817,21.4585,147.3174,3.118636e-05 395,1.2526392,370.58447,19.007324,119.565186,2.9511626e-05 395,3.398462,381.6836,55.635475,110.041626,9.898666e-06 395,612.4444,2.005319,26.70227,58.695763,3.595146e-06 395,3.7732358,29.50286,57.09709,185.82002,2.3077057e-06 395,119.90652,24.404928,111.31463,108.58161,7.730465e-07 395,59.808712,23.241776,107.84775,106.50136,5.550962e-07 395,1.6059481,46.572372,19.395199,141.45042,5.0427406e-07 395,44.388973,10.323558,43.458332,46.680016,3.6345335e-07 395,386.43686,0.0,80.782166,249.4991,2.4226273e-07 395,36.18214,14.584583,80.47955,79.3589,2.3949508e-07 395,2.9834507,10.51892,58.646317,77.96875,2.1434734e-07 395,1.1883798,9.507296,18.771683,82.21849,1.5128697e-07 395,71.697464,11.277026,44.366364,46.520657,1.4098592e-07 395,98.44413,8.380741,46.046104,50.652107,5.8705794e-08 395,189.83528,21.729279,117.542496,114.79431,5.325827e-08 395,138.94838,9.686016,45.48442,47.22696,4.0236507e-08 395,180.49625,9.357915,44.869873,47.458317,2.1438565e-08 395,346.02478,1.4761459,52.1763,72.15835,1.1411438e-08 395,234.77742,8.186009,44.744797,47.909657,1.1339728e-08 395,207.3932,8.773732,45.09729,47.831135,1.1078778e-08 395,261.5731,6.3140807,44.346283,48.187805,9.182352e-09 395,322.38278,0.5691439,47.46808,58.46825,8.9888585e-09 395,296.0978,3.7485628,45.392914,50.847893,8.349312e-09 395,244.23747,12.582591,86.05388,79.60712,5.1660924e-09 396,265.61673,213.39279,39.90619,96.07538,99.97097 396,58.027527,217.28102,45.128754,77.8633,95.31851 396,154.23543,210.49513,26.522125,59.373947,52.918633 396,84.329315,227.40714,31.21991,57.636993,0.03828014 396,372.94446,255.322,36.05078,91.0876,0.018615918 396,194.76453,128.06018,35.199203,72.96454,0.0065142997 396,593.51166,440.5297,44.009277,66.0726,0.0032153556 396,610.04645,177.39647,28.070679,115.66615,0.0024527009 396,247.86995,188.5007,87.76091,173.13123,0.0008897764 396,141.82175,178.11847,54.823547,117.14404,0.00088179193 396,610.3636,293.5933,28.783081,143.69,0.00013415588 396,511.8746,105.47416,43.029083,128.47379,6.292587e-05 396,570.9796,360.87805,68.119995,142.71826,4.565777e-05 396,91.36315,131.06563,150.47269,236.66777,1.4649524e-05 396,610.1981,44.343216,28.948547,143.46457,1.1889801e-05 396,1.2576107,71.54304,18.50016,78.07694,1.1325058e-05 396,1.2318628,371.67126,19.338116,124.64728,1.0048794e-05 396,4.003763,397.12936,55.41767,97.24274,9.215947e-06 396,3.4837272,175.72888,58.710987,210.00934,6.7625465e-06 396,1.0175798,106.000984,20.078888,140.90347,2.3524133e-06 396,316.13394,18.796837,45.533203,209.67334,2.3046312e-06 396,2.1136134,260.21158,35.842815,202.37363,2.151527e-06 396,1.574462,187.97188,21.18976,129.66292,1.1274738e-06 396,2.2004004,15.644082,56.41188,111.74321,7.216754e-07 396,611.93384,0.0,27.21283,64.65959,6.586602e-07 396,51.9104,24.336927,124.49184,114.35753,4.4140216e-07 396,0.86686283,2.6744287,21.098083,49.46359,3.7228253e-07 396,141.18715,24.1792,118.22078,116.769196,1.6932643e-07 396,13.7127495,5.4532585,45.642063,52.861637,1.5042893e-07 396,117.020096,16.519245,83.4267,80.60957,3.583224e-08 396,257.45215,6.1524057,49.48407,65.29451,3.3567282e-08 396,105.3401,9.390979,44.79654,45.210663,1.9193669e-08 396,132.70273,9.331425,44.76758,46.12543,1.9084446e-08 396,234.52011,5.9663396,45.51465,53.298485,1.07302816e-08 396,159.64967,9.010998,44.91774,46.78703,9.947748e-09 396,54.25575,9.317539,45.635868,56.47701,9.1251895e-09 396,283.22656,2.7848341,53.953033,71.08362,9.0106935e-09 396,210.63109,10.778226,48.00551,58.31882,5.7856506e-09 396,184.45209,10.703984,47.615463,57.55711,5.1979288e-09 397,150.61192,215.27815,51.08406,115.62047,99.95646 397,14.646815,212.53122,40.71169,76.07071,11.155541 397,381.98474,213.18001,21.47345,51.78032,0.0723468 397,36.582306,228.04057,32.573547,68.43184,0.012938226 397,205.08531,244.74564,20.68068,46.28952,0.0059933225 397,611.9817,173.9103,27.140442,110.24779,0.0023014056 397,601.0415,202.54625,38.105164,223.21532,0.001535544 397,562.0827,191.88335,34.594116,64.295,0.0012134189 397,508.71735,220.08788,23.736694,48.434616,0.0007466444 397,223.6398,160.46414,25.905518,52.93657,0.00073692884 397,1.010783,209.96849,19.303501,79.19444,0.00069896784 397,593.0793,343.15137,42.222473,116.450714,0.00059556274 397,5.5081396,194.99509,57.115818,194.4273,0.0004893937 397,605.86804,436.08096,33.278625,71.82062,0.000349563 397,423.47595,119.94984,33.79187,82.712105,0.00024171904 397,51.404583,179.36948,33.800663,87.57373,4.0102936e-05 397,106.4843,138.6454,138.54659,246.67879,3.2459873e-05 397,1.9549341,86.00769,34.900166,212.65454,2.672043e-05 397,3.7579021,395.59857,56.08886,99.41159,1.3221987e-05 397,1.2768027,372.14728,19.422314,125.035126,1.1920625e-05 397,612.0816,0.0,27.065063,60.39124,5.3872345e-06 397,1.9298112,284.04562,34.77,196.82886,4.055267e-06 397,1.1449577,235.80295,20.377531,157.53668,2.9615821e-06 397,1.3044157,46.17827,18.977055,78.94835,1.3010653e-06 397,174.07074,0.0,120.9043,262.13492,6.7240865e-07 397,56.18577,26.462612,122.01388,116.44879,6.089485e-07 397,5.1259766,24.662163,79.96816,144.88324,6.022169e-07 397,1.0473258,4.932456,19.861942,45.435135,2.878582e-07 397,2.162858,12.674753,39.305866,86.490204,2.3819673e-07 397,146.81862,7.531631,51.93741,63.25611,1.13490394e-07 397,123.9711,14.84401,124.203964,119.3018,9.7425904e-08 397,174.23196,3.629297,53.738663,68.06582,2.4725955e-08 397,119.30442,8.061857,46.191307,52.924706,1.8928707e-08 397,26.989212,10.039555,44.678925,56.76135,9.726321e-09 397,81.49929,11.419945,47.818977,57.134094,8.554356e-09 397,51.041042,8.67424,43.92612,46.322628,5.840311e-09 397,208.59097,0.011861979,48.89212,62.342976,2.5944102e-10 398,0.0,220.77321,54.59489,130.9492,99.86285 398,19.512249,257.00867,29.009571,67.51517,0.08716803 398,255.13884,215.9487,31.369308,59.88382,0.042044815 398,604.5836,207.27542,31.963318,67.63995,0.03373969 398,624.03296,161.88094,15.1137085,47.120193,0.016456913 398,605.9534,149.54222,32.408386,95.6682,0.009322413 398,36.108295,243.96706,24.759037,59.303665,0.009131 398,125.51087,237.40584,25.514977,46.904495,0.007507497 398,9.869611,282.7977,25.508266,55.544647,0.0028804382 398,576.953,164.18755,41.56299,104.10698,0.0009937871 398,586.49365,181.70468,50.97821,268.78418,0.0009814003 398,2.508356,159.42117,91.07913,255.01633,0.00056319166 398,610.0346,370.71506,29.11206,130.77277,0.00054127234 398,1.2786027,160.40717,20.774673,172.88568,0.00028768275 398,296.74326,89.236946,25.958282,65.10499,0.0002570539 398,1.22726,283.63733,19.573019,88.78406,5.0272338e-05 398,1.369856,386.71695,19.009565,109.81412,1.2392676e-05 398,1.6653272,301.04407,34.62094,189.82782,9.991803e-06 398,611.46234,0.0,27.684326,60.98814,8.183556e-06 398,72.57119,22.37849,46.203552,184.12425,4.5017177e-06 398,1.382173,87.8963,19.256987,76.94011,3.7741322e-06 398,1.9608968,14.944313,55.330276,108.67456,1.0990329e-06 398,48.808353,0.0,122.85994,270.454,5.616899e-07 398,1.7579086,38.658443,37.301193,211.71016,4.6147863e-07 398,42.24114,0.0,84.95735,86.496216,3.426345e-07 398,27.86025,5.6429267,50.72268,62.286648,2.3607365e-07 398,1.1021777,30.550343,19.99519,88.9915,1.5684915e-07 398,53.9266,0.0,40.569927,48.79986,6.2344574e-09 399,470.80966,169.16826,28.869995,55.073807,0.4089671 399,459.25772,186.41898,39.552246,78.042755,0.03414467 399,462.2186,158.30263,22.891785,54.56836,0.025291368 399,424.42123,211.04364,36.493317,70.17291,0.023281487 399,607.45197,169.76196,30.769531,67.96016,0.017107151 399,591.2148,104.12643,47.18402,121.8753,0.010540424 399,619.7769,97.136215,19.369751,70.31482,0.0022313835 399,614.67084,205.15036,24.47583,86.80731,0.001698301 399,1.6448104,202.01747,18.403921,70.13545,0.0007528593 399,439.9895,142.53754,36.148804,71.34932,0.00072248105 399,553.86127,170.84818,26.220337,54.166855,0.00071962195 399,610.0067,325.31906,29.139954,141.46756,0.0003500908 399,99.16059,67.885574,35.78121,87.76123,0.00018440075 399,608.4995,439.53714,30.647156,66.08005,0.00015613518 399,3.7261345,194.05975,57.8772,236.8288,7.9666286e-05 399,584.053,390.3819,55.022766,107.31973,6.435879e-05 399,239.37437,441.4657,51.088303,55.93396,5.000543e-05 399,1.1879777,386.29214,18.95384,110.618195,4.1345884e-05 399,328.87515,457.07782,43.365265,50.17334,1.7630166e-05 399,0.96024495,229.62839,21.250498,153.93839,1.7267614e-05 399,553.4206,123.091484,32.88733,79.39825,1.34084985e-05 399,36.62776,157.52354,37.253166,85.58475,9.979728e-06 399,3.2161117,394.47104,55.47454,99.75668,9.298155e-06 399,2.2261467,124.749405,29.257591,140.12254,7.760132e-06 399,285.88864,435.20688,61.524384,71.79382,3.9675424e-06 399,227.63919,399.00903,108.94861,102.989044,3.5661274e-06 399,311.31348,398.1566,109.23508,109.74811,1.7388371e-06 399,612.4484,0.7093913,26.698242,61.97829,1.1855035e-06 399,3.2294645,81.16931,62.880108,216.79163,4.1482352e-07 399,1.8117554,16.233503,19.711893,136.67186,1.4746698e-08 399,1.6571476,0.0,20.561113,52.94415,2.177233e-10 400,487.04016,164.33258,28.51233,63.3694,0.48795655 400,15.371931,202.20137,31.83077,51.468246,0.35415307 400,276.01276,226.74458,31.569336,65.73628,0.267626 400,315.57062,168.93182,41.68747,112.01996,0.15104042 400,328.36282,213.15437,24.390533,49.24205,0.045047678 400,1.5792481,181.73965,24.713308,67.10257,0.0023962508 400,615.14813,69.190994,23.998535,84.42699,0.0013553853 400,112.619446,195.31668,25.156647,50.332153,0.0011127348 400,605.7847,173.6327,33.36194,77.875916,0.0010388923 400,416.4939,148.46767,31.577454,85.44885,0.0009737536 400,538.868,121.07309,43.43158,75.96391,0.0006208175 400,615.84436,240.56245,23.302307,89.659195,0.0006152665 400,435.75787,138.07861,29.334259,67.73386,0.00045296337 400,597.81384,48.91691,41.332825,193.6716,0.00032287088 400,611.0102,371.1477,28.136475,130.62341,0.00031474352 400,299.70645,150.50334,33.791504,81.61937,0.00023787146 400,467.6285,108.62051,57.361908,155.44962,0.00021269717 400,602.5134,251.86372,36.63324,208.08311,0.00019430812 400,102.00037,190.08376,22.888412,47.487427,0.0001412007 400,2.4692888,87.264275,34.10959,199.53558,0.00010209353 400,3.2862923,178.56207,57.612335,256.20248,9.107777e-05 400,1.0275977,390.43607,18.590277,73.38092,3.0504254e-05 400,0.87422204,357.74243,13.931275,48.887512,2.7071266e-05 400,463.59418,141.35703,109.12494,207.2995,2.2026967e-05 400,1.8566318,304.58105,34.522717,177.18228,2.136316e-05 400,1.4367977,217.67592,20.738836,143.27318,1.3396662e-05 400,554.5275,416.98996,80.56494,85.67645,1.0873092e-05 400,611.7963,1.0600065,27.350342,62.297913,6.014079e-06 400,410.45993,89.4409,81.12747,176.3051,4.3249183e-06 400,296.80893,423.0897,75.00177,77.83313,8.736338e-07 400,1.7051221,23.184454,18.142517,120.98739,8.3577333e-07 400,2.7184148,22.203917,57.73422,105.26794,6.1752667e-07 400,17.082413,112.7425,38.26817,91.062675,5.98015e-07 400,1.534074,4.63778,31.581804,68.60179,4.250442e-10 401,605.2577,192.18944,32.77057,66.40727,0.72471917 401,354.9527,161.49158,33.416595,77.30466,0.49071983 401,589.5983,107.554016,49.507874,170.7283,0.026130164 401,154.97751,172.31984,35.53412,72.33855,0.02061477 401,136.59746,149.77303,33.027115,75.9512,0.006884048 401,274.40176,114.67727,23.159271,48.673653,0.005045633 401,615.5131,104.49146,23.633545,74.88523,0.0048466907 401,413.5829,108.3855,36.606506,67.36766,0.0025745265 401,490.72604,181.66937,30.095978,57.13344,0.0014375387 401,600.9922,206.53127,38.106384,198.75151,0.0008273016 401,150.20186,225.01378,36.769455,75.8557,0.0004902102 401,98.15456,234.92552,27.769623,55.673782,0.00022501727 401,611.113,318.15323,28.033691,153.30975,0.00017972007 401,563.56525,163.37468,31.004517,57.06053,0.00014775593 401,263.85614,153.16116,35.663544,76.089096,0.00013829832 401,608.3671,439.8178,30.779541,66.23834,0.00013158089 401,1.0593388,192.35855,14.181583,52.98604,0.00011598428 401,3.753851,166.30989,57.20314,261.3675,8.765883e-05 401,2.4267457,172.15657,28.24578,162.27504,6.87132e-05 401,571.5338,367.11002,67.612854,128.05115,4.752894e-05 401,1.1366602,395.8758,18.671623,73.64078,2.0854475e-05 401,1.2400595,320.79507,13.734849,49.8349,1.5346084e-05 401,1.3997339,261.14218,18.810884,82.14685,9.322803e-06 401,2.284707,333.72498,34.783504,156.53195,6.8609097e-06 401,1.2616423,354.8217,18.77728,74.66812,4.4784747e-06 401,612.24036,0.29687175,26.906311,61.76136,4.038086e-06 401,504.41647,43.99838,92.46011,199.74428,2.1256988e-06 401,248.46642,389.6757,111.3351,102.37109,1.4675694e-06 401,312.36377,93.18894,139.18628,227.67197,6.979552e-07 401,372.40042,427.88864,73.7872,73.406525,6.737823e-07 401,426.73193,428.78787,74.01105,72.526764,6.3343697e-07 401,269.9758,452.30075,42.661957,52.26477,5.433027e-07 401,323.08035,424.47025,74.05084,75.92148,4.8152594e-07 401,301.29343,441.21506,43.256134,62.029785,3.9666173e-07 401,1.5838217,13.909274,34.57161,73.0243,2.3987806e-08 402,13.727048,96.17052,29.109531,56.439728,0.017286241 402,137.50002,229.75748,30.533508,48.083923,0.010260456 402,471.06262,158.74997,31.231812,72.10634,0.009136939 402,109.662476,133.64093,29.03572,52.786118,0.004507927 402,601.60944,186.60191,36.80957,139.81337,0.0017351788 402,620.8359,245.53134,18.310791,60.805145,0.0016037963 402,3.2857683,91.22229,45.27249,128.3172,0.0012136735 402,484.03146,204.13406,24.952393,49.496704,0.0011185631 402,424.4345,114.55295,52.2518,130.64497,0.00070421613 402,458.63882,113.853195,68.98343,144.05461,0.00069586985 402,610.887,185.3017,28.259644,56.434174,0.0005955946 402,611.8277,359.90268,27.31897,141.97284,0.00039687497 402,99.08376,196.50095,38.06347,64.586975,0.00038096184 402,440.48523,103.22476,27.075623,56.42343,0.00014767141 402,1.9361304,175.82945,28.083532,144.08058,0.000109485474 402,70.698586,225.87784,31.037056,61.26248,8.624008e-05 402,95.10564,97.49863,45.153305,143.3863,7.3093506e-05 402,2.0662339,87.540955,20.999193,74.62419,3.491048e-05 402,16.835772,134.16814,24.165094,47.998917,3.4566736e-05 402,610.57947,59.74026,28.5672,142.70772,2.8211314e-05 402,5.410394,162.557,75.79183,268.62155,2.4641662e-05 402,1.3379614,136.93852,19.672909,85.44388,1.8447377e-05 402,1.160376,382.72278,18.96524,72.64755,1.4854471e-05 402,3.6830535,310.6026,55.951057,171.11975,7.986639e-06 402,1.1315747,276.13785,18.312365,70.81229,6.107703e-06 402,5.1529593,59.663647,108.64076,239.62871,3.0395147e-06 402,1.3780152,316.80655,18.21837,67.56009,2.1758508e-06 402,2.1066325,412.94104,35.66982,85.59476,1.3301166e-06 402,338.9842,430.38342,75.63269,69.44736,9.593819e-07 402,283.967,430.14355,72.76715,70.7525,6.117985e-07 402,243.37735,428.4151,72.30829,73.06616,5.3180645e-07 402,202.40517,426.3526,73.307785,74.674805,4.7606216e-07 402,2.3618522,26.605112,56.83625,118.02323,1.2208531e-07 402,80.72675,4.415114,42.71631,46.76353,3.6917264e-11 403,403.33786,223.32709,36.516205,64.02655,3.0437915 403,610.207,121.05494,28.211548,50.921898,0.0073206867 403,5.213335,158.5813,46.650566,75.914825,0.00638926 403,415.54468,198.26736,51.546112,102.5885,0.0043592798 403,42.93066,61.904434,38.228107,69.55115,0.0016005723 403,600.8256,46.284676,37.69513,153.40097,0.0006615086 403,1.2266309,169.03192,20.161062,85.464355,0.00039598043 403,426.22333,243.81717,26.432556,51.88263,0.00031695832 403,619.8419,81.862946,19.304749,60.81082,0.00027113172 403,609.5817,240.59198,29.564941,156.13971,0.0002556124 403,609.273,0.81963545,29.592285,93.78443,0.00025359803 403,206.62404,83.322464,26.136871,55.216095,0.00019161846 403,610.3235,137.5375,28.823181,170.28558,0.00015577169 403,3.658952,94.02047,57.90426,216.77695,9.0135225e-05 403,598.48694,416.48273,40.65973,83.98041,6.613821e-05 403,2.5131006,206.55133,58.84116,275.13837,1.4136638e-05 403,0.6325879,218.06094,20.435379,153.48358,1.2130539e-05 403,1.3094931,393.14102,18.375309,71.35956,7.259417e-06 403,1.1197633,321.41492,19.091167,80.63144,6.3250163e-06 403,1.3277996,65.01169,19.188154,151.16249,4.6007267e-06 403,181.2336,390.8199,109.67616,102.74527,4.4495428e-06 403,3.98313,398.43707,56.409824,95.456696,4.3193954e-06 403,229.18323,452.41116,40.853973,53.056763,3.704955e-06 403,548.25305,4.830391,90.893616,109.57741,2.5661025e-06 403,256.1423,453.7956,41.058624,52.523468,2.5379534e-06 403,256.1888,398.48514,111.65845,96.69092,1.4696956e-06 403,454.77084,5.425775,44.3024,54.43947,1.1631972e-06 403,592.5343,0.0,36.305176,49.975,4.618097e-07 403,206.17426,439.55252,44.58664,62.20114,4.4755177e-07 403,2.5813754,24.326626,56.448254,103.59166,1.7632301e-07 403,517.085,5.9382586,44.173096,58.1188,6.8173215e-08 403,479.23648,3.1795948,45.201263,45.95144,5.1300887e-08 403,560.30896,1.1458268,46.960083,66.52719,4.3300645e-08 403,0.7643156,14.440528,10.377846,77.333694,3.7049865e-08 403,421.77066,4.2111425,45.000122,46.60845,3.3157676e-08 404,366.24524,234.89018,37.038147,64.84941,4.0224376 404,210.33571,207.6086,28.454056,53.313644,0.40518743 404,77.59325,183.07155,41.958344,78.20323,0.0678872 404,493.09464,172.8164,35.009796,68.32594,0.042292032 404,195.18286,202.0487,28.674118,46.470078,0.024033446 404,584.86224,180.50938,52.42273,255.13261,0.0059477515 404,169.83592,141.78923,42.832184,109.51369,0.005810501 404,599.85254,318.5511,39.29413,99.43997,0.004307115 404,610.5075,145.88603,28.528625,134.1328,0.002149587 404,44.044277,272.53577,66.411316,134.4802,0.0014512124 404,51.54662,153.18118,87.35788,172.11911,0.0011851273 404,544.69196,306.4145,24.277893,49.173126,0.00050506153 404,122.22391,73.20117,48.110565,161.04808,0.00045992882 404,604.86414,230.98543,34.28253,95.63954,0.00039817987 404,3.5391505,283.2908,57.72803,199.61807,0.00015818642 404,585.17126,384.75714,53.92865,109.36151,0.000138392 404,608.6835,434.39664,30.463196,70.19614,0.000103717684 404,2.884808,441.26935,41.910065,68.74649,6.774784e-05 404,610.087,8.49127,28.906067,82.47663,4.8018443e-05 404,1.3258244,378.54916,15.832691,123.52667,1.952829e-05 404,1.278938,215.1599,19.265314,142.46208,1.874639e-05 404,1.5619849,335.96716,18.474073,80.81848,1.2099609e-05 404,145.8423,111.60005,111.27687,183.18797,9.984601e-06 404,1.9007187,96.795296,19.313236,138.45703,9.240572e-06 404,2.2558172,35.76133,37.290367,161.27747,6.777163e-06 404,97.056114,56.484016,46.974983,153.7732,6.4510823e-06 404,32.53077,39.785885,92.80539,208.2437,3.711922e-06 404,3.9389648,96.821785,59.602646,263.9145,2.4585977e-06 404,564.2301,4.204554,69.94495,55.895954,7.7089527e-07 404,1.630835,13.133425,35.402294,78.26783,1.4986047e-07 404,538.6635,0.0,44.05658,55.654995,1.6550828e-09 404,390.00455,0.0,43.038605,49.059788,1.9284507e-10 404,349.554,1.9686426,44.527496,50.98882,6.910972e-11 404,449.05484,0.92965823,44.735443,47.488613,8.394778e-12 405,234.98053,211.42195,22.792175,47.095383,85.376526 405,458.67096,269.89822,34.152496,62.082214,33.680264 405,431.97592,102.31587,25.310028,63.604706,2.6035714 405,445.66565,274.68143,27.000763,54.592957,1.4608508 405,248.67699,212.68312,22.431015,46.8712,0.5705026 405,434.734,227.12367,60.23819,122.33693,0.15310717 405,500.8088,265.60596,28.635162,48.717102,0.13459757 405,552.814,176.91519,30.20642,67.87529,0.04583808 405,114.21292,194.68391,32.356934,59.52034,0.016531872 405,520.5424,265.1846,30.000488,50.526154,0.014609378 405,2.4192164,266.3255,34.288036,181.4021,0.004619523 405,615.9554,178.7177,23.074768,77.28038,0.0028935873 405,539.9906,172.82054,26.76538,57.418808,0.0026282442 405,572.2308,190.84517,23.434631,53.818985,0.0014856393 405,99.12066,166.40643,58.29415,115.9245,0.00096111954 405,599.7219,129.83281,39.187866,168.44325,0.0007461639 405,143.07823,77.16807,53.323776,172.465,0.000666527 405,219.1437,178.08871,58.84134,105.54974,0.00044793816 405,609.7091,388.25092,29.437561,117.05545,0.00037137888 405,454.56897,220.65436,27.494019,55.684387,0.0003077109 405,1.4764893,368.62192,22.614265,118.58331,0.00021708781 405,615.13763,104.844055,24.009033,85.67087,0.00020143432 405,428.3249,188.2958,144.77924,230.12122,0.00011935737 405,585.8016,196.41347,52.66156,245.37102,0.000111984824 405,4.9899287,336.60223,79.048935,143.36368,7.098275e-05 405,1.6873454,200.85262,19.868996,143.80104,6.592272e-05 405,2.6440885,415.51367,53.09113,83.692444,1.4826335e-05 405,1.8965251,46.197598,19.17398,78.80875,7.5225835e-06 405,56.85358,49.584454,96.68199,214.99309,6.9347557e-06 405,1.397291,85.01106,19.746872,149.29108,4.8319052e-06 405,191.2054,119.42635,137.27135,226.31046,3.0281612e-06 405,2.9383008,41.724182,59.404644,192.8232,2.6649068e-06 405,599.36145,7.7027836,38.5412,74.09579,1.8268552e-06 405,125.748116,45.1503,45.806297,164.05154,1.8044218e-06 405,385.6594,38.785313,139.81174,267.22772,1.7757015e-06 405,1.5870867,13.076227,35.269848,80.42657,1.7613444e-07 405,486.8074,4.344585,39.285553,53.476147,2.311452e-12 406,279.3652,215.62311,27.600525,51.67697,98.32207 406,293.92926,216.97801,33.851837,53.99922,14.649606 406,144.66629,214.61916,29.261215,60.37242,6.613472 406,154.17741,170.11296,44.4684,75.82231,0.002241448 406,598.8243,154.24306,40.322388,206.29536,0.0019609337 406,209.1256,76.596,36.80954,86.653725,0.0018982809 406,196.99422,92.81399,62.95793,168.81622,0.0014009534 406,397.0055,207.36148,43.830933,117.36099,0.0013121414 406,590.0223,137.24774,30.922241,57.32773,0.0007173635 406,615.275,292.30673,23.871643,88.47208,0.00051715114 406,619.9982,217.7787,19.148438,64.4875,0.00048645944 406,263.89322,188.96628,58.678528,101.02249,0.00035648808 406,621.6696,356.725,17.47705,57.425934,0.00032049214 406,599.4906,303.6104,39.656067,185.9096,0.00021976954 406,606.32825,2.1291504,32.81842,70.659096,0.00020285608 406,151.89952,124.57991,19.893387,47.174805,0.00019230203 406,615.3389,118.98688,23.80774,89.4207,0.00018760192 406,138.62495,87.67546,51.894455,175.14873,0.0001764264 406,615.61945,40.130466,23.527222,93.26315,0.00013960755 406,532.84033,243.58427,34.154785,73.41884,0.000106075866 406,599.3512,39.469723,39.79547,210.34424,9.714818e-05 406,3.3668833,276.18887,56.572193,196.54016,7.6530494e-05 406,612.2222,410.7351,26.924438,94.378174,6.9570124e-05 406,228.74886,62.20493,40.964676,118.39104,5.6670586e-05 406,559.2702,203.86855,79.876465,242.73189,5.185312e-05 406,527.49414,100.79097,80.73651,203.73982,4.832587e-05 406,502.7747,188.27896,78.38956,187.5958,4.1944062e-05 406,1.5011158,336.11496,17.752993,133.50635,3.263855e-05 406,156.46712,93.2523,21.957047,57.822914,2.677747e-05 406,1.157234,204.93729,17.988527,148.05582,1.8503302e-05 406,235.7033,132.51248,131.04826,245.79324,1.2097048e-05 406,1.6957756,97.67574,19.368662,142.35446,9.238017e-06 406,528.35754,393.34302,110.76349,106.603,2.1164626e-06 406,1.0078093,417.26895,16.988947,84.71564,2.034338e-06 406,3.4583855,421.89154,52.313217,76.85452,1.0636012e-06 406,581.04205,442.28043,47.08551,63.440796,1.0054927e-06 406,2.9858577,37.837154,59.957542,192.33194,9.876295e-07 406,181.11755,45.267242,42.904114,164.09976,9.134655e-07 406,264.27658,425.3558,78.17688,74.51453,7.308148e-07 406,480.36557,429.14313,77.66556,71.618805,5.6373557e-07 406,215.23294,41.75377,93.17978,196.98114,2.489462e-07 406,1.3586572,20.805925,20.73311,138.07698,1.8574362e-07 406,531.20905,2.0148406,43.302246,56.871635,2.0412234e-08 406,496.62924,0.83979654,42.94223,51.565216,7.884608e-10 407,326.5512,214.05334,28.195007,64.96005,99.89337 407,349.80017,220.43282,24.342926,55.83983,99.4834 407,363.69235,225.21097,24.805573,47.176422,1.7457889 407,380.89093,225.35097,41.551178,84.640915,0.034311287 407,513.0728,274.00702,38.305115,92.9689,0.029332418 407,374.19482,233.5436,24.444061,58.45665,0.005252319 407,328.78696,206.4961,64.76343,91.87463,0.0027264722 407,255.58078,78.01102,44.284363,101.50961,0.0019417257 407,195.36789,134.27484,55.340714,128.58054,0.0008726683 407,621.61914,208.14786,17.527527,55.605164,0.00074772036 407,620.4669,281.82788,18.679749,56.26883,0.00041073354 407,584.08514,244.69011,54.69214,247.2263,0.00033130703 407,608.7273,211.16556,30.419373,138.1318,0.0002894661 407,523.3596,271.09375,62.647156,166.16263,0.0002804462 407,609.47974,383.66885,29.666931,123.62961,0.00024582192 407,216.09604,178.63716,32.985184,60.840057,0.00023190603 407,1.5733927,204.82448,18.591415,72.39317,0.00015325872 407,305.83884,155.7789,141.12259,239.67502,0.00013136322 407,609.95483,3.7842808,29.191833,76.10952,5.657458e-05 407,611.59076,104.85407,27.555908,156.43024,5.2958996e-05 407,551.6851,417.8992,87.005066,85.905975,3.33884e-05 407,2.4618554,119.21075,29.533537,148.35739,2.164324e-05 407,1.1937338,388.0931,17.673569,101.48425,1.613516e-05 407,3.3023634,301.95865,58.03,175.46689,1.5656746e-05 407,584.4026,21.258698,54.160767,271.65906,1.5331558e-05 407,500.6675,445.49823,43.555756,59.323395,1.0164455e-05 407,556.1266,453.76685,41.98828,51.95404,7.636254e-06 407,173.337,80.7068,111.41385,230.04018,7.0532124e-06 407,468.51407,384.8472,113.4039,112.96527,6.465482e-06 407,239.60292,31.10767,83.19667,192.7633,5.177889e-06 407,1.3062695,303.4229,18.794458,139.26251,5.08986e-06 407,2.9045656,418.38385,52.756954,75.713776,2.6148434e-06 407,0.82260174,242.07016,21.777086,117.07623,2.4269666e-06 407,3.238675,30.345072,60.801975,204.09592,1.3350602e-06 407,1.9316431,34.439774,20.205397,138.34799,3.3112252e-07 407,426.85855,422.79367,76.10928,76.52023,3.0593583e-07 407,228.02055,37.52398,41.357437,147.68448,2.2389703e-07 407,1.1583956,12.866452,13.024601,82.207504,1.698647e-07 407,1.7844044,6.3077865,37.480442,50.96099,7.4422005e-08 407,374.43274,4.036784,44.0065,56.409798,3.4020147e-08 407,399.83716,2.1807194,45.818726,57.229294,2.4003644e-08 407,349.2566,3.7158756,43.20038,55.112556,7.923506e-09 407,266.2547,1.5445216,42.06122,53.474834,5.7498905e-11 408,358.35025,216.69981,32.81366,80.48161,99.97924 408,387.12628,228.84474,26.165588,71.14241,99.95425 408,462.26907,198.64917,31.815155,64.743256,0.14142811 408,400.23166,234.51215,21.791473,48.595398,0.026415195 408,13.296703,211.69624,22.915524,47.463303,0.0038279674 408,619.8415,296.4737,19.305176,64.59448,0.0019298993 408,342.9684,195.35492,70.17621,135.28656,0.00090719666 408,219.74487,164.12369,50.70642,95.90195,0.0006740024 408,609.94775,298.76578,29.198914,150.8931,0.0005665261 408,609.90375,99.997314,29.24292,149.39801,0.00049905275 408,585.56824,180.72847,53.259033,256.88818,0.00034436747 408,180.48872,280.14935,24.113586,46.720734,0.0002584331 408,614.4651,464.35385,24.68158,46.792816,0.00022376643 408,285.57364,48.285236,43.22235,108.491,0.0001582021 408,1.7046005,210.78194,17.953974,70.856705,0.000105889594 408,595.65155,409.72638,43.440735,97.64676,6.0726696e-05 408,235.80586,180.54233,24.744522,46.567474,5.2227413e-05 408,4.348353,98.85388,58.740334,230.29898,3.248477e-05 408,0.8174618,246.90886,20.058233,139.79597,1.2978004e-05 408,568.2122,15.6315365,70.93445,162.35056,7.854618e-06 408,197.00212,56.842247,82.30376,214.1719,7.774118e-06 408,1.019963,397.4307,16.835869,101.26056,7.336867e-06 408,0.7638729,358.70627,18.197851,74.100006,5.267943e-06 408,1.900525,63.856766,19.247856,141.99881,4.1996655e-06 408,1.7364933,305.7065,31.96723,176.5087,2.4293379e-06 408,2.7011752,429.98502,45.059475,68.86139,1.8495781e-06 408,268.46982,11.723783,91.224884,201.2757,1.1717792e-06 408,2.6360466,7.9393034,59.699158,137.30266,9.527297e-07 408,597.10675,2.444922,42.039917,95.70994,7.229842e-07 408,1.7525473,3.3418067,38.209713,52.108498,2.2982955e-07 408,1.089415,8.271807,12.883486,94.262596,1.9530175e-07 408,330.46445,3.2087078,45.323883,67.0002,1.727678e-08 408,386.30725,4.2572136,43.859894,64.81842,1.2536552e-08 408,511.76715,5.596128,42.465454,58.16804,9.020564e-09 408,299.41052,0.0,51.593323,72.64324,3.0897673e-09 408,361.1469,2.4999804,44.742615,63.82886,2.532664e-09 409,392.07516,215.28207,42.353027,114.33954,99.977356 409,435.86664,234.28065,36.933838,93.89848,99.96819 409,609.272,178.71036,28.572266,68.44728,0.42459574 409,502.8396,205.68793,31.18097,61.313446,0.2659125 409,557.8712,180.70227,45.59442,109.46567,0.21364896 409,544.16644,203.06107,25.191895,65.04309,0.058043685 409,513.2804,194.2374,47.919983,96.2962,0.0050545326 409,603.8568,196.49292,34.906616,164.65921,0.004655424 409,390.91486,205.73463,105.881195,158.0424,0.0039096223 409,17.087713,199.59933,41.21357,53.14151,0.0029465626 409,618.2702,52.871635,20.876465,69.625786,0.0013570305 409,372.0394,205.91524,35.96637,111.9456,0.00080175657 409,615.51337,318.73816,23.6333,88.57434,0.00072908006 409,232.30777,157.69997,51.527496,102.62755,0.0006201429 409,585.1562,240.4623,53.455505,241.92198,0.0003947957 409,605.3718,436.23138,33.77484,74.753876,0.00031930234 409,582.96313,19.277864,55.973694,263.857,0.00015408278 409,616.23346,97.64636,22.913208,108.77101,8.960855e-05 409,594.3378,4.4249935,44.808838,99.95463,7.8389305e-05 409,1.9701995,153.64175,19.002262,127.68704,7.803575e-05 409,518.6874,198.68814,21.056152,45.99814,6.0347862e-05 409,1.020057,331.65955,18.96749,131.49567,1.36837325e-05 409,1.654594,185.06615,31.790726,179.17711,1.3171608e-05 409,2.421621,44.610985,36.717117,211.50018,1.1870018e-05 409,0.8836825,420.77136,16.709934,77.83865,1.005052e-05 409,556.76447,395.03134,82.3822,108.48169,9.946396e-06 409,3.4215236,217.09802,57.275944,239.41309,8.539436e-06 409,3.3383121,395.45895,56.323135,94.02612,3.4311406e-06 409,265.53983,13.207552,130.79486,260.4126,1.8837245e-06 409,305.0295,17.710358,47.72702,178.82896,1.5667224e-06 409,1.922574,38.18249,19.124153,77.69325,1.3683765e-06 409,212.15993,36.176197,83.199295,233.27757,7.780909e-07 409,325.2846,6.1036754,83.95261,80.2006,2.419238e-07 409,2.0832,6.4292483,31.512552,77.145134,3.7612793e-08 409,304.36227,2.3087988,50.385223,67.652885,9.339948e-09 409,393.33463,3.528143,46.26996,53.875565,6.587525e-09 409,367.75293,3.94472,47.12332,47.47125,3.645764e-09 410,460.5872,219.73625,65.58011,181.70949,99.96214 410,537.9252,246.53976,68.37659,149.91028,99.94688 410,562.02655,311.27628,29.899902,82.244995,2.26356 410,404.21948,214.71738,30.414612,59.873566,1.1429254 410,449.01987,229.99818,39.380524,104.13222,0.85789293 410,539.7822,304.8952,32.735962,82.06537,0.3549821 410,536.8446,190.43019,51.84607,125.33476,0.06145531 410,610.0625,213.20586,28.514893,71.10857,0.060220167 410,502.08304,224.91203,40.365387,161.9652,0.053908817 410,595.9349,159.32141,42.455383,189.0603,0.001563074 410,576.57965,314.2772,61.18811,177.34042,0.0013206869 410,236.09956,167.99028,47.21205,89.48451,0.00062869577 410,604.8585,426.50034,34.288147,80.621185,0.00048422103 410,2.3521428,112.429504,35.97971,183.41693,0.00034749656 410,395.4002,70.34115,69.25049,214.08405,0.00015346188 410,0.98924154,200.97418,19.62274,138.06201,6.613998e-05 410,483.96005,293.66962,24.273499,76.34927,2.6472218e-05 410,4.009777,397.49527,55.218792,105.71796,2.4234609e-05 410,1.5891691,443.08173,21.66955,58.77246,1.3168581e-05 410,607.8884,0.0,31.25824,65.51026,9.818299e-06 410,598.13043,0.0,41.016235,197.74138,4.8598363e-06 410,1.2911036,236.83675,34.06558,208.39388,3.5088249e-06 410,365.18466,4.299671,46.94159,59.507584,1.8750926e-06 410,477.04147,253.78868,28.536713,82.81947,1.722238e-06 410,1.6056201,9.229805,39.059666,89.3832,9.607957e-07 410,1.2701775,27.461946,20.176996,161.35188,3.7573665e-07 410,339.95752,1.490726,45.386017,61.696514,1.2677992e-08 410,285.9528,2.4966505,48.552155,63.227837,9.4424415e-09 411,423.25162,214.04933,41.567352,72.39159,0.08826004 411,580.948,219.37447,37.450684,66.28117,0.015920129 411,237.37793,187.37257,36.189484,72.15062,0.014619522 411,617.14233,48.47514,22.004333,78.06001,0.0124722095 411,340.66934,230.98909,20.861694,47.737015,0.006527601 411,448.86542,204.08586,34.685272,73.642654,0.0031324446 411,72.26668,60.47237,27.882912,57.177425,0.0015987922 411,618.22034,257.62332,20.92633,75.21222,0.001079776 411,617.8092,193.06293,21.337463,81.808685,0.00083321147 411,222.62956,152.04636,77.55736,144.6636,0.0007829376 411,252.77055,172.381,30.704819,62.769867,0.00051834213 411,582.49725,98.85077,54.138184,237.78928,0.00047293014 411,582.39685,6.10278,56.145874,135.00256,0.00037721824 411,601.86444,239.42346,37.282227,194.1788,0.0002602656 411,617.3582,302.155,21.788452,75.927704,0.0001750219 411,92.41314,65.46257,26.848091,60.80384,0.00016722734 411,615.8787,103.32812,23.267944,93.25689,0.00011318888 411,1.2988379,210.29959,19.782373,126.18384,0.00010048774 411,610.75134,374.36215,28.395325,128.24744,8.793129e-05 411,518.3332,92.82932,42.455444,160.10516,3.6215817e-05 411,613.3046,0.0,25.842041,46.254555,2.4075982e-05 411,412.14664,74.58615,77.70041,210.45172,1.991991e-05 411,493.47876,94.2931,44.576904,143.84354,1.8081775e-05 411,4.449754,104.78264,55.730457,230.11998,1.7355147e-05 411,1.2106568,251.67027,33.510136,187.54625,1.585445e-05 411,0.73062545,358.22278,13.77792,47.87906,9.172842e-06 411,498.93558,1.7563657,49.123688,48.110027,8.585524e-06 411,1.5778809,124.36298,19.359404,145.02374,7.702181e-06 411,515.13556,0.0,74.67047,64.50046,7.5151265e-06 411,1.0024756,398.6881,18.105787,72.8768,6.9728485e-06 411,1.8523406,97.616425,18.030298,76.28145,4.303639e-06 411,485.32294,66.1544,109.57434,237.22801,3.481957e-06 411,1.1185979,443.48703,21.840973,60.06366,2.1258163e-06 411,5.419372,356.35565,79.10033,132.99945,7.3017117e-07 411,1.9958904,10.03864,39.06201,87.60275,4.0560693e-07 411,392.5218,3.3191845,44.99234,56.56731,3.983008e-07 411,3.0151367,429.22495,52.93954,70.511536,3.1072042e-07 411,349.72745,11.608575,79.16193,166.26285,2.572261e-07 411,301.4447,14.080476,83.375244,167.95445,4.5464287e-08 411,1.3604485,2.5344336,20.075983,46.855404,4.0692484e-08 411,367.65442,2.534525,44.985718,56.727936,1.6608645e-08 411,273.09125,7.561683,88.4794,73.365234,1.3110031e-08 411,259.25345,5.5870934,44.194855,55.48213,5.421076e-09 411,341.57486,0.0,42.938812,63.34773,1.0520984e-10 412,588.6227,195.81538,37.53241,90.199265,0.11760482 412,439.2981,195.89456,31.957794,60.039215,0.0154995825 412,402.6827,230.93993,31.150482,61.807877,0.012391974 412,186.15366,178.72478,51.132385,122.25572,0.0013001411 412,617.7285,270.5737,21.418152,77.74509,0.0012043988 412,302.67468,228.57,25.718445,52.666718,0.0011017721 412,334.9706,43.23933,35.11792,87.22594,0.001084517 412,611.9722,200.5106,27.161438,118.12697,0.0009909818 412,622.4714,94.227615,16.675293,47.45227,0.0008896355 412,455.4413,183.23184,39.288696,126.17862,0.0003744409 412,207.39426,158.17172,38.41078,85.79721,0.00037006583 412,601.91895,260.42197,37.227722,189.65784,0.00021546581 412,562.01636,71.81742,73.70807,234.14731,0.00017136878 412,1.2026807,211.66068,17.574383,71.98294,0.00014714198 412,617.2239,315.55264,21.92279,78.181915,0.0001329964 412,227.87201,163.77153,26.063644,55.594727,8.999075e-05 412,617.25574,374.05618,21.89093,80.273895,8.877642e-05 412,1.6163436,83.078156,18.437777,83.550125,7.489897e-05 412,608.9005,0.0,30.246155,130.7009,7.4232245e-05 412,370.6918,175.5522,82.64447,146.91154,7.229783e-05 412,167.67358,126.500755,104.55344,204.22852,4.8495862e-05 412,611.1496,99.48147,27.99707,167.26855,4.5584115e-05 412,0.7259766,240.36398,19.769058,139.1037,3.5252033e-05 412,609.0788,439.66742,30.067871,65.19,2.9822893e-05 412,3.9366212,89.242714,57.900032,231.39328,2.08727e-05 412,570.75165,355.66547,68.39502,129.96194,1.0424967e-05 412,0.97403973,326.44626,19.756792,130.5065,8.683116e-06 412,1.4300293,49.8346,31.002134,189.93504,5.37294e-06 412,4.847891,274.14737,80.04181,201.52618,3.81779e-06 412,391.8836,51.284492,84.48114,240.78812,3.5251592e-06 412,1.9466227,6.7206903,60.33859,145.40144,1.4987057e-06 412,320.4377,15.346439,80.10516,144.62344,1.0177721e-06 412,1.8050847,417.82965,34.40857,80.10376,6.5738755e-07 412,1.4769646,21.195248,19.431902,83.41084,2.3565347e-07 412,263.57642,15.572481,80.776184,147.84091,8.757389e-08 412,1.3778988,2.9038804,40.484688,65.71581,7.439674e-08 412,272.19843,4.394738,43.933655,53.229237,3.780411e-08 412,369.5054,5.969261,46.390472,65.576904,1.715548e-08 412,221.13174,5.2392287,63.141785,53.523033,1.5337823e-08 412,196.65067,4.298447,44.98494,60.63636,1.1132707e-08 412,300.67798,1.4907764,43.315765,56.014122,2.6420923e-09 412,341.32178,0.0,48.91339,61.521233,5.5007743e-10 413,377.6884,247.90944,27.569641,52.913773,0.010132135 413,402.9656,206.57332,36.370087,68.347275,0.0062077953 413,570.9633,189.2326,36.88263,81.35104,0.0025907871 413,100.20723,142.8875,49.21118,141.65886,0.0024124985 413,423.9417,189.28435,39.063293,110.26308,0.0017083201 413,616.9427,241.9753,22.09613,74.816025,0.0016682575 413,616.64716,190.01656,22.499512,77.09837,0.0008873884 413,617.5569,284.944,21.589783,77.42993,0.0006285177 413,136.08183,332.98154,32.929398,64.18915,0.00041095415 413,601.65643,211.38664,37.490234,160.24068,0.00039278463 413,121.93667,142.23508,32.698967,65.21217,0.000265954 413,615.9172,70.86586,23.229492,88.04047,0.00021257732 413,617.2691,381.51785,21.877563,78.889496,0.00016262452 413,180.7188,234.14088,24.37465,54.319443,0.00015589118 413,587.10284,286.31726,51.800476,190.00644,0.00014708334 413,333.8984,188.97299,82.63229,145.03162,0.0001373344 413,74.73434,139.03043,114.16561,211.00748,0.000114261275 413,277.93927,50.6812,26.75299,66.460785,9.468205e-05 413,569.14954,83.045654,68.2251,251.52405,5.995434e-05 413,1.0258627,222.70042,17.95359,70.422745,4.6749432e-05 413,394.519,160.1192,112.70032,200.94586,3.834481e-05 413,275.19788,59.017178,44.72278,189.53835,2.9380428e-05 413,609.12476,439.52548,30.021912,64.83234,2.7790787e-05 413,1.803794,101.938385,18.30864,72.179504,1.9016268e-05 413,0.83117026,253.8842,19.029339,133.29427,1.562952e-05 413,568.98193,25.080685,69.788574,134.43126,1.1472857e-05 413,0.8746843,405.84174,18.087496,69.91135,8.874766e-06 413,261.01917,5.5150003,60.61734,128.86098,8.646229e-06 413,2.2220745,92.904274,32.411346,183.10236,7.954135e-06 413,1.0365275,139.32869,18.473707,77.80408,6.87486e-06 413,0.8538249,364.6645,18.36963,72.80365,6.4520423e-06 413,590.6053,6.2365384,45.022827,56.763863,5.3544636e-06 413,2.81528,285.48938,57.32885,187.97803,5.3234967e-06 413,348.61667,46.762554,83.98489,252.44197,4.331044e-06 413,247.89699,35.577435,114.4601,266.84244,3.1503755e-06 413,114.54206,5.1289454,77.796165,244.77231,2.2332308e-06 413,2.46028,8.778119,59.44414,147.24884,9.051268e-07 413,1.0484213,36.517506,13.759545,53.04188,7.0732153e-07 413,292.93402,10.457452,87.45801,72.86269,5.354502e-07 413,358.73862,9.920757,61.641876,47.42406,2.4104912e-07 413,1.3740447,14.223777,20.766668,129.8706,1.2168312e-07 413,401.42532,10.118502,42.3125,50.068237,5.1716853e-08 413,556.7498,7.8688364,46.99353,58.48858,4.3575714e-08 413,278.60266,3.4514422,49.39554,57.699287,4.1311935e-08 413,438.9825,8.62127,40.9599,51.576767,2.0092013e-08 413,232.71495,4.3769107,43.857803,57.303703,1.1345981e-08 413,531.38104,9.189474,43.928894,54.907364,8.487057e-09 413,505.105,8.301398,43.80533,55.002357,8.477948e-09 413,162.13097,9.782303,43.327606,46.620823,4.7096256e-09 413,134.71935,3.83279,45.65715,60.463505,1.7671845e-09 414,407.52368,206.87479,47.21347,116.355804,0.018793335 414,611.9622,262.6593,27.184448,72.075226,0.01467122 414,568.49506,189.82594,35.932434,54.906464,0.014581446 414,433.40598,210.80664,48.99405,113.530365,0.011661337 414,615.33075,150.49904,23.815918,66.47235,0.008969653 414,532.0933,201.90657,30.178162,51.420105,0.004365753 414,122.105156,130.43529,32.20582,64.64659,0.0035218017 414,403.28534,247.6376,23.85086,52.660797,0.003264811 414,599.0308,198.5765,39.798523,182.555,0.0029956985 414,618.9994,305.95444,20.147278,74.522095,0.0018828011 414,478.29178,209.88875,32.02411,60.53157,0.0017981941 414,563.3986,173.71883,52.88202,132.11507,0.0015411616 414,501.01288,173.34349,45.194336,154.93703,0.0008288058 414,620.28296,76.67697,18.863708,61.274445,0.00035832322 414,88.02001,393.48703,36.286514,86.13428,0.00030715152 414,602.41656,316.76306,36.730103,174.2782,0.00013111717 414,386.3014,177.9788,119.98749,195.2238,0.00012617522 414,609.3996,0.9014551,29.74707,101.35952,0.00011238388 414,599.21344,44.199024,39.933228,227.39833,9.760936e-05 414,1.0217546,230.31084,18.285784,77.8745,8.179512e-05 414,71.123085,350.12888,75.75091,140.27936,7.779975e-05 414,94.52788,130.13812,81.48976,182.19824,3.920041e-05 414,588.2523,5.206826,43.494324,52.430195,2.9144894e-05 414,609.2034,436.95142,29.943237,65.98151,2.7772563e-05 414,0.8608211,316.39923,19.526068,132.61307,1.4202786e-05 414,1.0507691,268.41544,20.64777,102.54559,1.1989639e-05 414,529.27893,10.788171,42.674988,49.88717,1.0758394e-05 414,1.216796,117.91157,18.64738,140.12057,1.0066789e-05 414,3.213335,293.2325,56.67354,179.35657,8.358502e-06 414,1.5965048,96.19755,17.770912,71.3977,8.065661e-06 414,313.72516,162.97469,72.88449,159.96693,7.819892e-06 414,1.9758081,179.9504,32.246426,167.29128,6.037053e-06 414,108.9707,0.0,119.4785,276.72852,5.5368696e-06 414,1.2136979,50.138786,18.684093,78.66006,3.766337e-06 414,485.10507,11.024268,41.52585,47.180927,2.784761e-06 414,502.84018,11.857793,118.33865,109.93067,2.542285e-06 414,1.281224,405.27127,25.914314,92.57895,2.178708e-06 414,550.83966,10.683897,48.564697,55.703194,1.6744417e-06 414,508.82443,8.351997,40.961517,45.85833,1.621928e-06 414,3.5059588,36.878242,59.4986,250.49115,1.1598828e-06 414,47.29621,422.17365,72.60804,76.69464,1.146068e-06 414,458.68927,12.247892,41.26361,45.792824,7.455019e-07 414,228.78787,420.23468,72.3699,76.81595,6.46733e-07 414,294.22733,7.3377705,82.527405,77.5867,1.9018105e-07 414,1.4748828,10.255287,37.431946,87.004295,1.3360047e-07 414,1.0549992,3.1353614,19.725376,46.546978,6.0842574e-08 414,396.39264,10.8889065,41.272797,49.67549,4.5173678e-08 414,345.7727,7.252624,45.64383,55.0439,1.6462492e-08 414,231.30646,9.417064,43.943146,50.71823,1.495158e-08 414,182.27225,8.864248,46.014297,49.044662,5.726693e-09 414,258.47598,7.576654,44.064606,54.91789,2.4207816e-09 415,596.2769,236.89899,42.35724,104.54303,0.007023023 415,363.7557,228.09772,29.553314,65.65256,0.0044268365 415,264.86526,151.39568,38.856567,87.416855,0.0025332624 415,623.9851,267.06232,15.16156,45.389374,0.0023633167 415,581.311,150.91182,56.650574,158.11052,0.0013624821 415,614.64417,144.51541,24.502502,99.02379,0.00069668324 415,1.2409106,198.26884,17.87378,65.92119,0.000342828 415,617.6095,222.92941,21.53717,77.75806,0.000315589 415,614.41156,285.5051,24.735107,93.947205,0.00030477517 415,599.47406,270.04495,39.672607,209.79651,0.0002947825 415,617.47766,387.11493,21.669006,77.987854,0.00021751762 415,252.15251,121.168,84.14113,187.02435,0.0001815689 415,43.294685,65.66804,30.916306,56.6885,8.455173e-05 415,98.75375,81.01939,31.045853,54.666588,8.210351e-05 415,612.6338,58.485065,26.512878,132.53055,6.6399225e-05 415,509.4668,232.01779,25.422485,56.70569,4.9888156e-05 415,0.7481983,229.8874,20.697575,109.669815,3.6370602e-05 415,1.9225636,114.66296,33.759933,183.57462,2.2624454e-05 415,491.55185,139.16284,69.97684,165.10486,2.1017997e-05 415,608.843,438.6362,30.30365,64.94742,2.0023828e-05 415,1.0995842,399.10684,18.014462,70.44568,1.8959083e-05 415,0.5393148,307.6936,13.78824,49.731018,1.3116541e-05 415,617.1946,20.318363,21.952087,83.193115,9.643522e-06 415,0.94678146,358.7118,18.239485,72.70618,6.105188e-06 415,1.180533,103.89125,18.6988,82.90126,5.3290637e-06 415,3.3474643,231.4362,55.995686,222.63976,5.2322534e-06 415,1.2854216,49.317852,18.630337,81.78192,3.1939621e-06 415,600.7847,3.519572,38.36194,46.151493,3.0144577e-06 415,569.8664,20.865215,67.81134,140.11852,2.5910033e-06 415,522.5166,167.97984,81.515686,175.54262,1.9483527e-06 415,3.201076,395.57562,55.99425,98.34512,1.7343359e-06 415,396.20813,11.695289,41.75296,48.647556,1.3670044e-06 415,285.82724,8.470528,86.3168,208.16406,7.478603e-07 415,447.86487,422.38162,72.46167,74.89261,5.9534847e-07 415,525.6715,3.0186882,46.34784,49.540115,5.8487666e-07 415,477.10266,1.5569239,46.08026,59.11589,5.525526e-07 415,485.00867,7.0658727,120.0979,222.25444,5.219642e-07 415,3.1888201,26.826212,61.10759,206.05806,5.072626e-07 415,534.7818,8.632897,86.81781,77.14064,4.345456e-07 415,208.9364,424.43753,72.1261,76.05884,4.2495242e-07 415,368.31686,8.306877,42.406036,50.882797,4.2298657e-07 415,406.86496,421.72937,73.12625,76.84616,3.946092e-07 415,498.98224,1.4359701,49.241394,148.12874,2.4288732e-07 415,1.753506,9.053109,39.195766,85.97392,7.3771325e-08 415,340.2071,8.415615,45.622498,47.86952,4.7014247e-08 416,549.8261,158.14197,55.072754,182.20392,0.0043399506 416,560.59045,244.82263,34.297424,71.67325,0.002162485 416,337.01346,91.59973,30.837189,63.95929,0.00072910654 416,550.008,220.27199,32.345276,71.82771,0.00058111124 416,266.34247,204.31216,24.885498,47.041306,0.00054524495 416,613.65875,183.78062,25.487915,96.54582,0.0004552986 416,608.9261,92.90503,30.220581,147.47781,0.000311448 416,584.4309,126.3724,28.730652,58.125374,0.00023796948 416,617.2684,331.9826,21.878296,82.25491,0.00019366173 416,583.40015,128.05531,54.422363,247.47203,0.00018916762 416,616.9238,50.86327,22.22284,89.36238,0.0001788914 416,621.0612,126.01673,18.08545,57.33741,0.0001774187 416,601.8259,293.9324,37.32074,187.25293,8.987695e-05 416,617.3848,387.79855,21.76184,80.02438,8.858486e-05 416,611.9591,250.62373,27.187561,108.469925,7.086911e-05 416,368.5275,83.992805,40.687714,89.115166,6.398646e-05 416,563.5908,176.14558,26.69696,59.38437,3.601481e-05 416,331.82047,49.028915,25.959656,53.25721,3.5155783e-05 416,609.5061,440.5218,29.640564,63.73712,3.0444937e-05 416,0.7377401,209.07492,17.978413,66.68054,1.9708461e-05 416,0.70852214,236.411,19.043894,134.5406,1.7599457e-05 416,1.3988477,109.97697,18.353325,71.95847,1.6627306e-05 416,0.779301,337.20135,18.227982,72.93207,1.0380303e-05 416,0.9385767,397.35287,18.225327,72.668945,7.5240473e-06 416,584.7815,0.0,54.365173,134.40082,5.705986e-06 416,1.6096761,137.03185,27.622778,141.40495,3.8246926e-06 416,1.9792758,440.89096,41.953312,61.661957,3.8123692e-06 416,1.2845012,337.811,31.174406,151.22412,3.6899196e-06 416,5.41361,395.21487,83.42949,99.847015,2.4940305e-06 416,3.9546745,125.50654,58.003048,216.19626,2.301929e-06 416,1.7449479,46.599533,29.002361,155.84761,9.611842e-07 416,341.65967,30.634266,81.73306,218.99483,4.0647282e-07 416,93.33691,422.70135,71.477806,74.65143,3.629518e-07 416,2.163247,9.934229,51.064137,79.79996,3.1680835e-07 416,1.3037207,8.043591,20.40921,60.124844,3.0873903e-07 416,4.554889,18.986681,79.25465,155.91827,2.6139944e-07 416,236.72095,1.5684359,45.99884,56.421688,5.6375033e-08 416,211.71545,2.834271,42.24794,54.47771,8.168199e-09 417,605.2482,109.1445,33.898438,93.76961,0.0023574773 417,1.6591626,139.27664,25.615305,67.09427,0.0016387517 417,242.74318,162.15189,26.550491,52.639282,0.0011605704 417,223.6819,152.76971,31.253204,59.52646,0.0009432925 417,616.36786,353.57028,22.778809,80.87265,0.00032881845 417,616.72723,178.11743,22.419434,86.74188,0.00025070662 417,616.5645,67.20922,22.582153,94.03207,0.00024347201 417,617.9092,267.4893,21.237488,81.68692,0.00017406412 417,601.5579,256.62796,37.588745,194.26752,0.00011170909 417,571.876,72.22806,66.422424,180.11606,0.00010650668 417,276.4509,160.42773,24.708862,49.356018,9.026098e-05 417,604.38165,383.6259,34.765015,113.9263,5.9480397e-05 417,207.87277,92.33908,80.674774,179.52396,1.9669105e-05 417,1.8105803,101.02035,35.96004,178.12546,1.6042395e-05 417,100.73317,9.071986,47.13083,53.94007,1.4573844e-05 417,0.62777996,193.02461,18.501774,80.75017,1.403242e-05 417,0.92919356,283.58466,17.99503,73.70447,1.3974781e-05 417,0.94682455,406.43622,17.971025,69.86728,1.3210392e-05 417,1.0141212,241.55832,18.067392,74.122955,8.029849e-06 417,0.8489144,342.07745,18.43798,73.337036,7.949008e-06 417,1.9788803,278.6074,32.72577,169.05878,7.94225e-06 417,5.1190104,134.87054,78.01895,286.70367,4.643307e-06 417,1.1763103,69.57646,19.011274,87.58421,3.1390034e-06 417,74.634094,8.005674,46.288513,50.59572,2.9051973e-06 417,515.20654,393.28735,123.11975,100.631775,2.0735636e-06 417,0.5574512,4.935807,20.99535,65.663704,2.0194386e-06 417,5.3000913,355.1862,79.09187,133.18616,1.5128992e-06 417,449.18945,390.32675,117.07605,105.23337,1.0744527e-06 417,596.68634,0.0,42.460327,93.58334,9.838767e-07 417,2.9014876,428.9137,52.609287,69.81961,5.9017486e-07 417,473.1734,440.66626,41.42737,61.17453,5.635227e-07 417,421.5506,425.00198,72.135284,73.34631,3.77449e-07 417,2.8976758,14.477683,80.18398,164.30247,3.045804e-07 417,48.883495,5.809623,41.7991,52.595566,3.9829757e-08 417,415.76163,4.357588,44.912872,59.511467,3.8358003e-08 417,390.2647,6.004476,40.33545,48.36119,2.0218827e-09 417,245.12865,0.84478354,41.413834,50.236675,6.2870925e-10 418,604.1285,113.88773,35.01819,96.35941,0.054257166 418,619.5498,96.71245,19.596863,69.67044,0.005717886 418,448.97104,159.2899,23.193817,52.095825,0.0050215935 418,294.9047,227.21156,22.987335,51.014847,0.00424678 418,65.36493,127.481346,26.66272,55.574852,0.0031519881 418,2.4894989,158.18057,42.216103,133.84796,0.002905372 418,267.76346,137.60483,53.608337,158.17532,0.0017529402 418,264.52954,159.63434,28.811584,60.23384,0.0010370689 418,21.272392,196.53563,33.545525,77.453995,0.0006667909 418,1.7290698,158.63031,19.35744,80.04813,0.00050269644 418,282.89157,148.2202,28.83255,57.908966,0.00035857686 418,17.545713,118.996475,74.111176,193.05708,0.0002686946 418,617.0723,193.66457,22.07434,82.88243,0.00020542135 418,617.7234,258.69162,21.423279,81.43765,0.00015013342 418,587.7693,90.392555,51.282593,226.02014,0.00014260865 418,569.7856,1.7716911,61.748047,55.169292,0.00010993348 418,1.0404118,203.35118,13.893426,49.368988,0.000104174185 418,615.9951,36.03993,23.15155,95.647095,6.413137e-05 418,617.83636,354.2624,21.310303,80.58383,6.322398e-05 418,558.2086,160.41663,28.470886,49.065918,5.2768224e-05 418,251.59128,144.44734,26.100616,55.653137,4.6818768e-05 418,614.35675,416.80093,24.789917,86.23944,2.8427263e-05 418,601.8452,266.96558,37.301453,185.09085,2.4682728e-05 418,512.2895,105.79201,38.174988,79.348465,2.3427288e-05 418,565.33765,0.0,73.80902,176.6201,2.1058726e-05 418,1.0479485,345.29047,19.667515,130.56985,2.0888072e-05 418,0.79189456,377.88266,13.607258,47.88925,1.7688133e-05 418,3.5802069,247.1811,55.63714,222.4128,1.644698e-05 418,1.3034961,198.04575,21.029333,156.11026,1.2253075e-05 418,573.2971,365.47092,65.84955,123.27258,9.4979805e-06 418,538.50903,4.8431754,45.898865,55.94248,6.020058e-06 418,1.0868938,310.5903,13.455473,48.86966,5.893742e-06 418,1.1394336,252.9836,13.8057165,48.13829,2.7202468e-06 418,1.6871095,415.9066,34.849804,82.07529,1.6182727e-06 418,4.042256,22.662579,58.972504,221.58748,1.3791405e-06 418,2.0351367,52.19133,19.331076,150.84462,1.2807426e-06 418,395.02652,7.3335824,42.529907,52.935726,2.594226e-07 418,512.31726,3.0851107,43.330383,57.84527,2.2698912e-07 418,1.1266081,10.254841,13.706301,80.40634,1.4939471e-07 418,115.388985,6.144525,39.69274,46.232162,7.434709e-08 418,1.1947315,3.357583,38.629745,60.18836,1.6740184e-08 418,32.13116,0.1768392,44.09174,62.98776,1.0418591e-08 419,307.0674,154.37906,30.742218,57.827347,0.20359464 419,488.9409,151.53098,28.426971,56.91577,0.024282528 419,436.2387,101.82122,27.308533,54.322502,0.0034804172 419,30.293032,140.70949,47.335342,110.38901,0.0034050362 419,490.73862,124.00858,41.74698,132.04233,0.0016932132 419,615.58026,159.69685,23.566406,88.785034,0.00073019345 419,462.74997,60.257893,38.50656,99.374664,0.00062442047 419,616.817,306.9211,22.32965,78.9581,0.000366072 419,276.37137,55.40621,29.61679,59.94837,0.00026789375 419,598.96796,44.062054,39.938904,202.92076,0.00021818992 419,52.16686,215.12778,37.73782,85.69443,0.00021626374 419,599.5422,286.86774,39.604492,181.5289,0.00020100371 419,616.9668,366.14767,22.17987,83.445404,0.00014597159 419,458.0714,65.93757,107.740845,242.09897,0.000102176215 419,7.2740335,100.39728,113.12602,229.76923,8.332825e-05 419,610.7985,188.85779,28.348145,162.57767,7.17428e-05 419,612.8766,410.54865,26.27008,88.47131,5.224276e-05 419,1.3189592,124.78948,19.04116,84.00111,4.8613107e-05 419,615.6345,8.858903,23.512146,91.140656,3.0039373e-05 419,2.9664502,72.764786,35.81823,203.36012,1.8834557e-05 419,3.8312583,204.6538,57.544212,227.31282,1.7073116e-05 419,1.6663046,60.861824,19.634808,91.2073,1.6297277e-05 419,1.1681063,328.2104,19.535627,133.07437,1.2752695e-05 419,1.3528419,210.166,19.491528,136.30699,1.0929897e-05 419,508.8061,28.149565,26.426575,60.569542,9.22752e-06 419,434.25244,0.9751693,85.82086,182.7992,8.547747e-06 419,1.1050302,301.92212,18.20688,69.79996,6.5194486e-06 419,462.18875,1.0291374,49.696686,69.18959,4.240709e-06 419,4.6439424,19.31144,77.49145,172.61234,2.7843203e-06 419,5.520316,348.95157,78.446884,138.08432,2.2951865e-06 419,1.7723275,413.32162,35.48906,84.569336,1.4298403e-06 419,150.78813,9.05489,83.96861,82.3983,1.1744262e-06 419,1.349537,11.69182,17.339174,84.00321,9.881381e-07 419,585.2859,1.6052148,43.64618,64.21825,9.291769e-07 419,79.55612,417.8723,71.90794,78.97427,6.7752734e-07 419,2.0938444,5.013649,48.793373,63.48723,5.946811e-07 419,196.53284,5.178423,44.65262,54.522324,3.7636636e-07 419,224.22813,4.8688545,43.00328,58.998505,1.3974447e-07 419,84.1542,10.47156,81.09533,86.717354,1.3057881e-07 419,135.28426,8.111966,45.581818,55.640274,1.05304345e-07 419,40.738556,3.9540236,44.73365,64.344,9.2208275e-08 419,523.757,5.290205,45.33911,59.55594,4.0034333e-08 419,105.82343,4.8601546,42.708336,51.991295,3.847686e-08 419,67.765915,5.1763997,44.61647,65.15318,3.0494004e-08 419,551.2328,5.3776727,43.009766,56.25122,2.1568498e-08 420,291.2992,207.8258,27.786987,53.885468,0.019247748 420,253.101,123.122025,54.308945,125.721725,0.0074416157 420,369.5779,53.291897,31.184723,63.60709,0.0030536456 420,621.51263,262.25708,17.634033,54.72876,0.0020665121 420,561.51294,229.05292,20.965332,49.525055,0.0017939362 420,607.5239,56.43534,31.379822,145.51495,0.0016232536 420,280.6634,106.077866,37.83545,104.34578,0.00084746 420,535.4879,140.32462,50.320923,142.66724,0.0005212977 420,270.2637,79.065384,77.518616,183.20216,0.00032936453 420,610.19653,253.86545,28.950134,134.7555,0.00027580696 420,586.6466,272.23938,38.052002,77.6528,0.00022214433 420,621.9856,399.8609,17.161072,50.99063,0.00021351357 420,573.80707,188.80077,63.34308,181.96733,0.00020539785 420,617.0545,339.31708,22.092163,84.12256,0.0001284566 420,602.3564,12.091794,36.532593,91.85937,0.00010693536 420,609.4268,127.15641,29.719849,174.32318,7.4016774e-05 420,611.8029,383.93942,27.34375,113.14346,6.8845824e-05 420,1.0127548,150.16818,18.143412,80.40204,5.4382963e-05 420,1.6062663,90.130714,18.142813,80.75155,4.8152073e-05 420,564.88043,260.14178,25.838562,57.61618,4.4932087e-05 420,1.1099418,70.82304,13.070809,50.0334,3.8298833e-05 420,1.0627197,335.41855,19.128761,134.74231,3.0452631e-05 420,358.016,85.7954,27.586304,57.923683,2.8529817e-05 420,1.118116,217.34294,20.31885,104.713486,1.7698358e-05 420,1.9947909,80.213234,33.357803,191.75745,1.5604915e-05 420,1.0695647,291.81955,17.795204,71.88925,1.2816082e-05 420,348.74286,49.29448,46.788025,120.635605,1.1875873e-05 420,4.572204,215.79948,56.540337,226.69188,9.218409e-06 420,515.7138,393.5875,122.034546,99.03659,4.1252447e-06 420,4.825231,354.74335,79.218636,134.05832,3.642537e-06 420,300.7016,45.432396,126.93494,218.70609,2.0443579e-06 420,481.584,425.9207,72.611664,71.10614,1.2572003e-06 420,1.6617123,415.32437,35.677246,82.66373,1.2407418e-06 420,140.20279,423.4066,72.217606,75.51541,5.581677e-07 420,0.89833826,10.544297,12.646429,84.65973,4.4099826e-07 420,3.678135,13.816205,81.85286,158.98596,3.1573762e-07 420,1.89403,17.40278,29.113949,135.98956,2.6702529e-07 420,575.8295,2.156045,45.78943,54.69233,1.5282379e-07 420,421.40463,4.802129,44.350494,59.461857,9.2999564e-08 420,531.9651,2.9432487,90.25586,97.537125,5.804997e-08 420,528.0347,0.35707682,44.85913,50.00282,4.667116e-08 420,449.8811,5.6422086,42.705414,57.744064,3.5442486e-08 420,1.6124512,4.527285,37.32267,51.350697,2.103265e-08 421,17.794054,224.57907,38.25351,80.435394,99.62159 421,47.01881,216.121,49.34006,88.618866,99.500206 421,41.32353,227.25105,27.077808,64.446304,0.4213175 421,592.4587,220.14925,30.340088,54.910202,0.19438732 421,74.56409,239.55486,28.601616,71.31358,0.16158682 421,348.2457,214.29793,42.631073,90.07338,0.050010346 421,577.0123,164.19836,43.3313,119.60486,0.009544338 421,1.9455649,231.22435,18.038021,95.62718,0.0060699373 421,603.90607,183.62369,34.68634,87.28537,0.0044025783 421,620.96014,96.46646,18.186523,59.501205,0.002727804 421,2.813465,220.34633,34.316483,168.93916,0.0022159962 421,329.27673,209.02446,37.440887,79.30205,0.0020186387 421,5.6849775,193.42085,84.18513,170.39314,0.0019145561 421,86.67587,158.82771,28.39856,50.000214,0.0010679761 421,339.79343,211.3507,81.907715,170.6509,0.00082837994 421,542.11426,106.48728,93.87976,242.78003,0.00064263697 421,609.7851,222.72128,29.361572,121.975586,0.00059281616 421,609.5301,58.43164,29.616577,158.84846,0.00037487465 421,611.4029,336.13004,27.743774,136.27472,0.0001540055 421,616.62305,29.534851,22.52362,96.91122,6.251744e-05 421,1.1058196,304.46658,18.75143,85.706726,5.6724555e-05 421,0.9363973,179.56929,19.21495,86.40349,5.2093907e-05 421,608.64655,436.94595,30.500122,67.11301,4.707432e-05 421,610.02826,1.8385222,29.118408,63.181374,2.4119738e-05 421,0.90522385,346.98154,19.743553,136.51868,7.781595e-06 421,404.52213,56.902054,80.69803,210.71016,4.5638185e-06 421,2.718182,320.4103,57.866768,163.82892,4.0042014e-06 421,1.3900512,116.30704,30.169676,185.38174,3.581601e-06 421,584.4439,2.537129,54.531006,143.30705,2.8564275e-06 421,1.9343734,416.76953,34.973976,81.54715,8.091174e-07 421,585.0728,0.47146323,42.045654,54.477264,4.562972e-07 421,405.5366,0.0,44.58362,49.684006,7.7294e-08 421,379.77527,0.0,45.734528,58.00759,4.085069e-10 421,2.0503662,11.218233,31.745266,70.840454,5.731539e-11 422,319.169,228.94675,37.56436,73.80548,99.96063 422,344.5867,220.42964,38.57794,84.89107,99.95327 422,587.3398,227.62259,47.314514,157.96207,0.1371386 422,608.4318,214.2459,29.344055,69.17168,0.01127919 422,107.8679,240.2519,42.780525,78.11717,0.0041604633 422,618.32306,302.8768,20.823608,74.642395,0.0034460695 422,613.7333,48.055737,25.413391,100.231476,0.0010187906 422,508.85635,243.65514,125.900604,229.68758,0.00097028306 422,300.5027,204.14417,82.95383,139.1838,0.00068318157 422,608.8891,309.22885,30.257568,166.05826,0.0003858261 422,504.4352,380.05655,26.61026,55.434387,0.00035416146 422,571.25885,298.84103,29.71814,61.70047,0.00027941092 422,597.88446,43.40634,41.03961,271.95007,0.00020965676 422,354.6727,147.20638,38.578186,63.280533,0.00014684621 422,2.1109083,201.60886,28.000557,127.375885,0.000104427534 422,1.3433553,128.99055,18.563328,81.604645,4.3792144e-05 422,141.5934,40.564472,46.94832,119.726364,3.3583074e-05 422,107.428215,161.50847,80.26057,178.25893,2.9172088e-05 422,3.9700472,178.50557,56.645096,216.31828,2.5722728e-05 422,483.88583,321.84955,77.72916,174.21545,2.2880187e-05 422,0.8582349,339.29797,19.226698,130.06937,2.1936781e-05 422,0.7504582,302.95584,18.158472,73.2092,2.0950876e-05 422,1.3389031,6.188246,43.4263,90.21795,9.738028e-06 422,1.3608309,50.202656,21.122246,122.88382,5.1925463e-06 422,512.6072,415.7915,76.17963,81.67334,5.0381573e-06 422,0.8611182,419.75098,16.842602,81.50461,4.8077277e-06 422,573.79504,422.3567,64.77289,75.06406,4.510682e-06 422,3.26403,335.729,57.977013,147.44351,3.007291e-06 422,466.62057,418.0734,75.27792,86.29288,2.8393333e-06 422,609.81287,0.0,29.333801,65.2131,2.2794545e-06 422,446.13162,445.35242,43.036865,60.09839,1.3121303e-06 422,1.3468889,1.301862,21.690035,49.127586,6.1652955e-08 422,22.819416,3.5590072,44.70535,55.761414,1.2164586e-09 422,328.12888,0.0,41.389404,54.7709,1.3524555e-13 423,348.14615,210.87111,38.23877,92.91707,99.98472 423,324.96768,222.40352,33.308502,81.804,99.956505 423,161.83173,201.89,29.038391,61.895554,0.042044494 423,548.14264,221.20341,25.892578,54.024307,0.016623061 423,41.76848,216.15631,39.84884,79.51425,0.008074288 423,291.8535,211.67998,31.737549,71.568375,0.0066765724 423,314.41556,224.81345,24.097534,63.30301,0.0035918835 423,1.4615138,223.18465,19.374094,89.797714,0.0028240215 423,571.067,225.34285,67.27338,164.2748,0.002506789 423,324.24255,188.38795,87.27515,161.25261,0.0015329688 423,6.683576,225.58357,42.86515,100.635666,0.0008471221 423,616.9431,200.23058,22.203552,74.85777,0.0005950081 423,587.52057,211.87596,21.45343,47.153885,0.00038518128 423,615.25134,256.86963,23.895325,92.17172,0.00038183475 423,616.6794,348.14185,22.467285,84.5679,0.0001594841 423,24.047998,173.59326,86.1994,175.8291,0.000105521234 423,598.5633,115.25729,40.25287,202.43561,8.3946084e-05 423,348.07465,128.57436,40.198456,80.64258,7.431795e-05 423,154.18909,123.50534,72.104645,167.97134,4.9006347e-05 423,585.05756,305.57703,54.08911,182.93668,4.851168e-05 423,1.969655,110.85294,33.725166,199.91406,4.6383768e-05 423,1.0955819,266.73346,19.149267,146.55627,4.3465527e-05 423,609.23126,441.28793,29.915405,64.46442,3.7157693e-05 423,3.3948162,240.42337,57.532917,215.37424,1.8266954e-05 423,611.88306,0.0,27.26361,62.165287,7.007994e-06 423,0.90609866,424.47052,17.32585,76.19684,5.7587736e-06 423,2.762894,14.854623,57.934113,109.32316,2.3445298e-06 423,2.973825,397.0628,56.084835,93.790375,1.8504427e-06 423,90.46141,19.002031,79.08403,153.87532,7.387162e-07 423,1.6143547,9.200049,15.1619835,70.57106,2.4717043e-08 423,222.11998,1.2239518,46.027756,61.600918,2.2498856e-08 423,100.108574,1.4809083,47.99511,59.560448,9.8829185e-09 423,5.132995,3.244494,47.040432,50.843548,5.4119846e-09 423,196.18163,4.1798925,46.330093,55.367542,4.335343e-09 423,135.43329,4.8531904,43.276917,55.550705,5.123082e-10 423,285.24475,2.7021582,42.614044,47.417976,3.2133501e-10 423,169.23512,6.894502,44.3356,54.183144,1.3169717e-10 424,167.49178,212.91295,60.259277,120.343094,99.97286 424,124.36936,232.97589,50.48632,96.47598,99.88258 424,109.96219,237.69789,35.473373,83.30708,2.1050098 424,594.02124,181.20107,44.598816,262.11975,2.0826836 424,601.8812,197.03287,36.237305,75.20328,0.75461227 424,460.9907,284.93405,32.700165,59.40381,0.209452 424,156.11978,224.49005,35.33731,96.30063,0.14431112 424,101.82264,249.34384,24.006195,52.37744,0.031545706 424,457.92188,267.4715,44.63965,152.55603,0.008214673 424,611.10614,329.95462,28.028015,108.845276,0.0047166357 424,508.8295,189.32043,29.97342,61.75058,0.0031482214 424,503.4574,228.60059,49.25946,136.75345,0.00072337873 424,572.26196,344.38647,66.832214,146.2377,0.0005428138 424,124.66546,157.71288,139.33932,232.78938,0.0004810021 424,0.73721033,138.89061,18.715216,76.621506,0.00031484108 424,449.05627,234.87828,113.04462,243.58617,0.0001940633 424,526.2193,231.88077,98.13611,209.18689,0.00018793767 424,205.1969,216.16637,39.150665,96.74901,0.00018668438 424,615.14594,399.91867,24.000732,91.62103,0.0001822413 424,390.74988,234.56204,82.58197,196.40714,0.00017495282 424,0.82130533,231.99586,18.03108,84.58305,0.000111511 424,609.76526,34.36022,29.381409,137.64127,8.887603e-05 424,1.6868286,186.34525,31.863815,176.36627,4.0385486e-05 424,606.2782,2.4305959,32.86847,62.716896,3.9316696e-05 424,0.92286783,284.68686,18.5299,127.78949,2.507702e-05 424,1.7252035,72.51471,33.691895,195.47287,1.0737402e-05 424,3.3755257,260.4086,57.565685,204.30283,6.9621897e-06 424,1.6615462,424.4396,34.029125,74.46051,1.6019744e-06 424,2.1011312,16.4124,57.34361,120.50253,1.4826019e-06 424,1.5497974,32.362144,20.461355,142.20416,2.2012208e-07 424,1.294679,16.092806,12.858774,77.53396,1.2939371e-07 424,0.9594011,2.7047982,39.48624,45.216698,3.5189063e-09 424,44.72283,0.45538738,45.60768,58.95998,2.4940777e-10 424,544.9473,1.2862582,44.485413,53.603443,6.967115e-11 425,0.0,211.07237,46.568626,154.19957,99.68996 425,350.1942,286.49747,27.218628,55.8367,0.52050424 425,609.6002,74.93639,29.546448,84.04708,0.12735295 425,613.94196,197.35266,23.805481,52.091675,0.05844159 425,250.58302,277.74673,25.57344,49.585175,0.02042261 425,272.0009,264.00626,23.493622,49.017395,0.009535942 425,595.42194,374.6356,35.30133,79.43381,0.009338446 425,564.64343,192.89136,22.788208,51.172943,0.009213743 425,604.63446,137.48738,33.660767,138.89098,0.0049581826 425,175.55658,319.7339,36.724396,62.78531,0.0026495142 425,0.0,243.19737,18.268572,75.632675,0.0023949258 425,587.2429,193.2759,50.019165,256.56543,0.0018457161 425,12.9941845,252.27103,29.039236,65.94232,0.0011460437 425,470.09106,49.53461,25.096344,63.132008,0.0010211465 425,553.79443,174.822,26.569702,52.24063,0.0003997923 425,336.9085,248.45224,78.59665,189.9974,0.00032062238 425,571.4872,408.56042,67.15265,87.770996,0.00017365624 425,494.68726,239.1987,84.708374,195.80276,0.00014824401 425,1.2862598,140.48688,87.60283,287.80106,8.57387e-05 425,581.78656,16.469557,56.742615,234.58423,2.2727218e-05 425,1.157924,84.03451,20.368929,134.24487,9.022882e-06 425,8.178089,396.66446,111.70488,96.59354,6.361688e-06 425,0.83041584,320.44922,19.637495,154.88058,6.157579e-06 425,550.06525,0.2526042,83.82654,70.91198,1.2127123e-06 425,536.5162,48.868385,79.52399,224.43384,1.0834872e-06 425,28.19598,439.3788,43.927624,63.55844,9.773565e-07 425,444.35052,41.71936,32.674377,67.69437,9.682167e-07 425,1.9083139,417.7833,35.495926,80.02582,8.17123e-07 425,522.39294,1.6683398,45.951782,57.502262,3.4341176e-07 425,450.63016,17.456652,63.02188,110.47193,6.9436574e-08 425,1.6361947,9.390553,32.62096,82.009575,2.2738311e-10 425,477.24112,1.5557797,42.27823,48.89859,6.3854144e-11 426,289.46906,310.39603,43.00836,112.73642,0.78134567 426,172.91646,207.8765,24.670883,47.72693,0.05902377 426,349.78052,184.43365,25.518738,52.350906,0.051189452 426,303.03513,311.84207,23.509674,55.296844,0.027651515 426,603.0234,181.1531,33.768433,88.74338,0.026309934 426,194.40926,276.51117,25.933273,53.588257,0.014553261 426,561.79486,169.17535,38.778015,97.58313,0.0069234245 426,100.65427,332.96985,38.68283,73.32886,0.0067027146 426,585.5336,169.03531,52.259216,272.6275,0.004160666 426,604.5744,436.96646,34.572266,70.68027,0.0030926825 426,544.79236,156.68968,36.46161,94.31535,0.0018823199 426,2.0536118,377.89514,41.87343,105.85019,0.0008916145 426,582.1056,388.39148,54.419983,105.607086,0.00083823886 426,616.62354,220.98209,22.523132,81.55698,0.0005341985 426,607.9957,299.90646,31.15094,158.79797,0.00041665495 426,265.0406,272.46622,101.25629,196.97818,0.00034567932 426,614.42706,21.465921,24.496216,84.892876,0.0003265217 426,593.0666,0.0,43.482056,68.56833,0.00022491449 426,2.4308333,106.20143,30.797884,156.48195,0.00016768536 426,530.4439,135.51012,78.99689,182.32402,6.756215e-05 426,1.4587923,293.6253,20.441652,151.88712,3.7763653e-05 426,315.57156,316.28406,85.31625,170.67325,2.888969e-05 426,3.5272298,212.80989,55.885166,252.76787,2.1575603e-05 426,1.6825187,414.91724,19.574213,86.14096,1.9360989e-05 426,1.3670663,188.56879,18.565172,144.8787,1.4613202e-05 426,601.387,0.0,37.759644,218.35873,4.4052094e-06 426,478.82272,0.0,37.968353,51.60562,3.800383e-06 426,545.61456,47.1566,42.041443,148.24051,2.35632e-06 426,439.84567,0.0,44.032776,46.46746,3.3882878e-07 426,1.9199854,15.508835,36.43616,68.78093,2.990427e-07 426,477.2432,2.3877735,85.20645,85.95971,1.3961899e-07 426,0.9157894,15.468089,10.6172285,74.347176,4.314615e-08 426,1.6623805,41.360126,18.475845,137.20934,4.2921744e-08 426,529.99097,5.749805,65.63129,61.35323,2.7756267e-08 427,268.03256,357.20132,45.90454,116.4061,0.6512654 427,606.09436,70.63067,31.672607,79.55514,0.017778732 427,578.1121,104.87571,58.588318,128.41058,0.0135424165 427,282.66846,378.674,25.460358,59.716248,0.009755556 427,281.05304,419.4808,27.672241,58.648743,0.0040606963 427,624.5142,134.46748,14.632446,45.690613,0.0037553662 427,127.63392,209.77751,29.354973,57.19203,0.0013633555 427,72.32341,226.95294,25.086517,47.149963,0.0011714613 427,614.3747,143.29561,24.771973,94.80351,0.00078071427 427,618.83105,44.018948,20.315613,69.05719,0.0005669163 427,257.35724,316.65515,111.08539,168.27261,0.0004131618 427,295.0654,372.12125,26.704926,58.014343,0.00040983126 427,609.8604,179.75777,29.286255,165.02272,0.00035096263 427,344.13757,150.52452,43.967438,93.04408,0.00028226755 427,615.7867,356.62067,23.359985,88.6434,0.00025894106 427,434.25394,193.66473,79.21304,197.14975,0.00019521116 427,584.9407,313.94617,53.643005,174.8577,0.00015864978 427,286.69952,355.701,20.86914,45.226013,0.000121871766 427,607.72906,436.8965,31.417603,70.95792,0.00011645522 427,25.686562,359.9906,52.703224,97.99362,8.0064936e-05 427,1.0058455,199.3564,17.927383,78.56392,6.127505e-05 427,3.5394483,390.14224,57.95864,99.31906,2.6603873e-05 427,0.97005457,265.78955,18.797878,146.05667,2.4318559e-05 427,1.3360376,378.1518,18.866364,112.71915,1.9873913e-05 427,4.0887113,195.57051,56.69788,243.53389,1.6082422e-05 427,586.49677,4.325905,51.97473,124.66712,1.0886331e-05 427,1.4111556,121.51923,20.615288,101.15049,5.0580884e-06 427,2.2218587,158.47006,32.226006,175.56097,3.98017e-06 427,539.5129,0.0,84.4256,68.38999,2.2226931e-09 427,1.7112582,14.106563,34.2319,64.96165,3.293131e-10 428,374.3061,232.79904,39.120087,83.28073,0.06780424 428,620.8708,322.05392,18.275879,56.81369,0.0060931235 428,613.44415,342.57455,25.702515,92.63226,0.0034329786 428,467.66418,192.46089,26.32605,56.033417,0.002069249 428,551.37085,264.85312,26.242554,55.87207,0.0020044618 428,586.1801,301.62698,51.825623,182.9563,0.00085553963 428,583.48364,119.34021,54.522705,233.75174,0.0007406016 428,615.9656,112.03512,23.181091,63.108223,0.0006399429 428,608.80774,232.81735,30.338928,157.863,0.0005270996 428,620.84814,226.87613,18.298523,59.85977,0.00042455186 428,615.8574,150.72911,23.289246,85.98105,0.0004071643 428,616.74536,396.33194,22.401306,87.51999,0.00029312744 428,354.05273,180.97107,75.75284,150.29251,0.0002796962 428,25.012882,116.851524,35.07099,65.9627,0.00020254467 428,571.28503,421.05746,67.09448,76.31738,0.00017985723 428,489.66193,234.83464,26.806091,47.735306,0.00015560273 428,365.94904,249.12558,78.443726,208.18979,0.00015241538 428,1.3699813,194.7842,18.062328,83.61656,0.00013916013 428,0.7259619,259.34967,13.237924,48.366913,0.000117531454 428,523.32874,91.24626,97.81201,186.37386,7.9647754e-05 428,4.4314632,123.22558,59.401573,222.72015,6.251321e-05 428,256.57346,287.4487,77.179535,184.24643,5.1403982e-05 428,0.63007975,287.19656,13.2767105,49.785828,4.5230627e-05 428,598.9424,55.398766,39.952454,174.36655,4.4200395e-05 428,1.0911808,237.25026,20.060402,130.57838,3.8379894e-05 428,0.97285646,167.38115,13.657401,50.957993,2.4948638e-05 428,568.1338,99.50053,46.741516,84.87661,2.0443742e-05 428,518.5007,341.75684,25.23114,52.037872,2.0306403e-05 428,2.297753,87.659615,31.206814,158.79538,1.293308e-05 428,538.1115,340.18796,25.542358,52.778168,1.2122698e-05 428,0.9956519,337.14948,18.572002,134.5451,1.0568394e-05 428,4.058063,263.60135,55.72615,212.71326,7.719963e-06 428,79.84565,334.92224,42.812904,76.07446,6.0025277e-06 428,1.6846721,124.53935,18.804852,79.802826,5.7518578e-06 428,349.9728,257.01114,44.918854,160.25916,5.632544e-06 428,462.43674,307.8961,74.893524,173.68924,4.7467697e-06 428,2.1448455,413.0909,35.283154,82.990875,2.2934842e-06 428,5.8088284,392.98184,82.78139,98.12753,2.1470219e-06 428,598.53766,3.6990137,40.53119,88.09559,1.5192089e-06 428,44.94042,420.12112,72.47786,77.36774,9.666335e-07 428,270.01007,420.06345,72.77585,76.07532,8.6068343e-07 428,480.54834,420.90234,72.95386,74.34924,6.923018e-07 428,318.07486,422.9158,71.35544,73.54352,6.305404e-07 428,2.5163085,17.579811,60.660698,124.85076,1.5365819e-08 429,434.15942,204.33994,24.376251,48.806396,0.44183302 429,423.3106,189.02866,69.323364,186.81006,0.023379272 429,613.32733,330.90018,25.8078,90.50601,0.0059841406 429,279.422,381.38943,39.606903,84.77161,0.0051429416 429,620.77655,197.86058,18.370117,58.79283,0.002590918 429,586.48126,323.2336,51.284973,158.29446,0.0021327147 429,64.640724,193.35245,38.177505,74.54257,0.0009477687 429,621.1586,396.43823,17.988037,57.342255,0.0007833095 429,609.7063,178.68013,29.440369,150.04124,0.000729576 429,284.03366,189.92625,35.451782,55.963028,0.00033934845 429,451.37085,227.53914,85.270325,181.70262,0.00024557588 429,610.2933,96.11816,28.853394,150.3583,0.0002393579 429,21.304993,351.21637,51.850014,122.63089,0.0001326225 429,607.38,435.41257,31.766663,68.296295,0.00010510133 429,503.27594,259.74207,28.029785,51.60495,7.79008e-05 429,417.96832,302.856,87.50107,183.19653,3.450916e-05 429,273.82593,332.9413,75.91675,156.6029,3.1775686e-05 429,2.1340039,393.19354,29.50066,102.80606,2.9288387e-05 429,0.72004884,275.23602,19.741875,140.77509,2.5914092e-05 429,0.7586572,240.25545,17.795094,72.546646,2.5024463e-05 429,1.3593913,106.05152,18.111359,81.17643,9.447031e-06 429,1.3781161,144.59445,18.815979,140.112,9.347161e-06 429,355.42343,79.02374,150.77939,285.96338,6.098531e-06 429,3.8888266,146.15472,57.098034,230.77237,3.5096214e-06 429,598.67,5.74126,39.754883,84.3486,2.8111347e-06 429,574.12976,435.00558,45.96338,65.56677,2.067817e-06 429,2.0225952,50.959232,34.3679,181.86037,9.31498e-07 429,522.19794,418.8422,79.99481,77.37512,7.040441e-07 429,1.450691,22.150137,15.559502,122.46804,6.694321e-07 429,2.7454884,20.359232,55.78988,105.156006,1.7198735e-07 429,1.7095028,6.579123,22.94702,56.702923,4.7569344e-08 430,465.15564,198.27023,27.621826,56.936646,99.81981 430,443.1552,201.27864,23.582397,53.66356,99.52876 430,7.8332295,201.26854,50.687683,67.37416,2.1194432 430,146.21912,186.76146,25.552368,52.1998,1.3634923 430,479.81094,199.29851,23.86731,45.278168,0.30445898 430,613.5746,384.46603,25.572083,74.40674,0.08114112 430,579.4014,384.07385,57.661682,116.30267,0.01988228 430,2.1196356,195.8612,20.663895,97.45825,0.006917921 430,431.13,186.22511,53.725586,87.66228,0.005557943 430,2.407072,141.8709,39.83747,182.17485,0.0021184927 430,607.5205,70.29514,31.62616,152.80273,0.0016967517 430,621.3373,160.21935,17.809387,56.724884,0.0012509698 430,592.0423,461.4095,38.94873,49.72397,0.00056830636 430,610.5504,164.79097,28.596252,136.53377,0.0003819218 430,438.1823,342.55374,49.841705,129.31787,0.00037641256 430,561.39526,429.62933,49.931152,67.43707,0.00035179633 430,469.62048,371.31125,49.230713,116.0535,0.00017550125 430,10.643481,444.22302,46.5257,61.0683,6.696469e-05 430,600.51355,221.48058,38.633118,234.88417,6.111975e-05 430,2.7030096,262.4005,59.28013,241.73459,6.025763e-05 430,450.92413,331.83145,121.643005,150.58224,4.5970344e-05 430,1.0152653,239.48584,19.223469,160.54349,4.182076e-05 430,414.2995,146.54498,94.68906,192.18112,3.647307e-05 430,1.3074487,359.82416,19.153896,143.44049,3.328349e-05 430,611.37476,1.0971875,27.771912,65.59277,5.938914e-06 430,1.4319409,67.35775,22.598852,184.87979,3.7271186e-06 430,505.2651,410.32828,79.07761,86.954346,2.1691048e-06 430,1.078645,18.937109,17.845821,111.34251,1.6294814e-06 430,0.0,1.687806,34.945866,69.919136,9.832228e-09 431,431.17123,207.3471,32.473663,65.575806,98.40238 431,367.1085,195.82289,28.48294,47.306442,90.508804 431,344.2212,171.64276,21.34964,46.450394,0.56734383 431,12.153725,181.45598,26.187653,50.68332,0.08442767 431,468.54053,194.45229,23.77771,48.356552,0.0029593871 431,102.40187,186.23334,46.545288,88.57495,0.0027721708 431,607.3639,74.85372,31.782776,145.23697,0.0021154725 431,621.3407,174.12814,17.80597,55.953766,0.0010091692 431,410.87366,178.76024,78.02197,139.00636,0.00041307122 431,2.8330348,144.65617,29.434673,133.55702,0.0003879927 431,558.6606,59.246025,79.03961,196.98529,0.00034007186 431,608.9668,166.25261,30.17987,136.19118,0.00024654574 431,607.7563,439.20236,31.39038,67.328705,0.00013807035 431,610.4711,324.32748,28.675537,145.04263,0.000116192976 431,1.2051294,188.47633,13.789161,51.92836,0.00010323927 431,342.35083,156.918,83.93811,141.32614,6.2283456e-05 431,422.19354,371.83255,24.559753,51.194702,6.1613515e-05 431,0.84773356,219.39597,13.33018,47.85211,5.5588793e-05 431,585.29926,145.87639,53.174377,259.1848,4.0847666e-05 431,3.6897283,192.76456,56.636505,253.12296,3.942077e-05 431,1.3360612,404.0408,18.238693,70.982544,1.9938536e-05 431,0.95501953,204.6343,19.399405,140.80867,1.6570224e-05 431,87.05028,134.31839,96.11513,210.42392,1.5555703e-05 431,1.7487305,307.42828,34.391727,177.41547,1.23488235e-05 431,585.5933,13.693946,53.241577,132.8063,1.1735891e-05 431,1.1256185,356.1339,18.451332,73.28012,1.06394655e-05 431,571.86676,109.90425,25.985474,55.776825,1.0468245e-05 431,0.887876,300.69308,18.450407,77.649445,8.607791e-06 431,1.8964763,110.98559,19.37095,77.2132,7.862952e-06 431,1.8983009,71.02456,43.920567,137.60596,3.8611433e-06 431,3.4001873,427.22406,52.750256,71.39011,2.0275395e-06 431,547.52264,419.68713,79.70996,78.00748,1.6661838e-06 431,603.1005,1.6581641,35.394226,71.423386,1.181098e-06 431,1.2382487,6.2056317,37.019688,88.49283,6.2773625e-10 432,389.12543,210.53976,39.610596,76.20169,96.529785 432,94.20991,204.44273,26.75547,46.784363,10.935078 432,313.36877,179.04941,32.925568,60.829453,0.26083392 432,351.18585,191.8797,22.053223,51.184418,0.22212881 432,443.15897,197.92218,25.253845,47.261475,0.010784121 432,472.04657,204.377,27.692078,54.415024,0.005782553 432,60.846657,179.62338,25.640572,51.529205,0.0041685808 432,404.91287,200.55028,25.23996,47.710663,0.0032268802 432,1.5211345,116.55706,19.75615,81.72013,0.0022918086 432,592.85254,163.21681,34.210266,74.66252,0.0022673043 432,619.0734,86.49632,20.073242,62.907715,0.001879016 432,367.8917,184.9806,79.29529,132.39479,0.0014233937 432,608.9989,115.789116,30.147766,135.75433,0.0005742749 432,617.30597,207.18907,21.840698,84.35924,0.00033903826 432,294.35,164.92053,88.453125,142.70764,0.00025930113 432,610.708,322.50513,28.43866,139.9544,0.00015917339 432,1.9232609,137.98691,30.000542,139.7991,0.00015084498 432,598.66406,183.85512,40.482605,203.10988,8.111092e-05 432,3.2993524,178.33646,58.01357,250.86423,6.631556e-05 432,608.7345,437.51825,30.41217,66.65753,5.4769465e-05 432,1.3253263,214.99149,18.345137,79.95163,3.2103926e-05 432,584.67883,387.9373,54.06732,103.8562,2.5464058e-05 432,64.40228,140.04182,104.17638,214.83138,1.734621e-05 432,1.0961508,410.12085,18.42411,74.030304,1.6054439e-05 432,3.423148,392.60086,56.90797,100.91403,1.4978733e-05 432,1.478641,265.08942,20.11445,134.6145,1.1443189e-05 432,598.8716,0.8854037,40.061584,100.028046,1.6908414e-06 432,1.1840299,17.593855,57.53155,118.19052,2.9387563e-08 433,359.8199,219.69261,35.96457,80.8474,99.89293 433,42.347645,180.51585,27.751247,55.437195,0.32626602 433,335.131,209.09068,20.615448,47.771133,0.02007506 433,302.5786,183.92532,23.914673,51.00531,0.01744919 433,465.34918,206.4239,30.963806,61.073257,0.005924644 433,592.5928,172.18648,36.00305,77.260086,0.0045422423 433,344.47586,192.17834,71.71063,143.57526,0.0037507743 433,621.39386,182.08008,17.752808,55.72876,0.002282754 433,270.49564,186.77289,43.53885,86.585205,0.0006390605 433,609.58167,95.986984,29.565002,146.09563,0.0005450432 433,621.671,410.79028,17.475647,55.639618,0.00048876216 433,608.59973,186.95346,30.546936,133.64093,0.00034598637 433,616.86664,284.65073,22.28003,85.41174,0.000118626565 433,610.79846,353.08115,28.348206,137.12115,0.00011683177 433,1.3739054,177.29414,18.553535,70.043564,8.893072e-05 433,1.7218717,124.55868,18.629614,80.97338,5.09669e-05 433,258.70752,151.71439,94.55612,197.53796,4.499752e-05 433,599.31433,225.87956,39.725708,218.9315,3.8768623e-05 433,4.8956575,156.52173,57.069214,222.48651,3.182676e-05 433,1.1290194,413.96313,18.325256,69.07593,1.0524381e-05 433,3.5157585,326.33536,57.451366,161.63043,9.712282e-06 433,2.4981756,123.70438,33.182487,161.18307,9.3455565e-06 433,586.4302,6.8320837,52.658997,136.40575,8.65362e-06 433,1.048816,250.39256,18.019539,71.48268,8.581136e-06 433,1.409965,278.1146,18.768122,130.06433,8.514389e-06 433,351.97253,418.65076,73.82718,77.0004,6.4175634e-07 433,304.72415,418.29886,73.524536,78.60828,5.1728125e-07 433,412.91516,422.352,73.63995,73.28235,5.0375496e-07 433,263.78098,422.3709,73.37515,74.5231,2.543574e-07 433,1.6589632,16.579851,57.08691,118.70039,3.129501e-08 434,325.37643,214.575,41.10324,91.74776,99.915886 434,252.12776,204.49867,24.03563,48.05548,99.8625 434,151.8401,206.8568,26.11496,46.460556,93.00546 434,330.88693,211.00125,24.571472,45.32428,1.39887 434,597.0995,176.6425,38.940125,78.44391,0.010292785 434,396.39114,201.22253,22.431458,49.95349,0.0056400932 434,435.82245,206.33397,25.609955,47.060883,0.0026013881 434,468.26486,217.66959,25.401611,53.17444,0.0025708512 434,299.9452,179.84134,86.71802,167.86862,0.0022431782 434,619.4034,89.373,19.743286,59.14572,0.0018494833 434,142.8847,188.59587,45.220215,91.85701,0.0016188385 434,620.4578,174.47575,18.688843,58.664383,0.0015343187 434,31.143112,154.24669,40.425148,88.83894,0.0011747536 434,408.2766,203.72159,24.33078,47.107483,0.0008696367 434,585.21216,115.18927,52.75055,206.38303,0.00027203356 434,614.7922,216.31648,24.354492,88.28914,0.00021761945 434,1.5980827,168.90138,17.935013,70.64438,0.0001450153 434,608.5567,64.639626,30.589966,137.76688,0.00013416485 434,611.20935,370.23077,27.937317,127.3461,0.000112175505 434,599.0859,223.48157,40.06079,216.72531,8.560829e-05 434,231.99811,164.68642,77.90848,147.10435,8.107186e-05 434,4.697484,148.8504,57.265293,234.98239,4.022681e-05 434,1.6497217,290.12302,19.363144,137.94205,3.207782e-05 434,2.5354948,163.67627,28.379314,151.87405,3.1702253e-05 434,1.8522062,90.73166,29.538086,132.59874,1.4898097e-05 434,3.69687,319.87653,57.068275,165.63129,1.1064729e-05 434,124.40022,148.72136,100.739136,201.6316,8.837081e-06 434,1.1298251,380.144,18.812965,75.00397,7.862217e-06 434,610.43317,3.0459213,28.713501,58.433414,7.831595e-06 434,1.0891228,421.27026,16.107185,78.75043,2.0268321e-06 434,255.95967,421.6737,74.47389,77.23709,6.894673e-07 434,1.6161801,16.916231,57.688965,118.91354,3.2603108e-08 435,285.3406,222.2517,40.43463,88.51677,99.90453 435,220.83789,207.46298,23.184647,45.206192,99.787285 435,194.67667,209.3262,23.998291,45.21469,95.12768 435,35.174747,185.32971,27.506649,51.073334,0.083162755 435,341.08493,204.50172,23.734436,54.919327,0.07922523 435,215.32594,188.62982,34.682663,107.85431,0.054671768 435,184.7378,187.91263,46.65213,99.65494,0.04118691 435,294.19092,183.99582,34.594025,78.44086,0.030322481 435,468.02393,216.84785,23.901978,55.125656,0.016628532 435,597.1574,177.02698,39.242676,78.87094,0.011656356 435,440.84814,205.44992,25.502441,48.386307,0.0051868954 435,178.30716,208.7229,29.668747,60.61203,0.0044855345 435,269.11685,188.39735,101.03351,178.20412,0.0015788088 435,619.6539,94.375786,19.492798,60.720467,0.0013574706 435,316.35275,185.81473,24.43451,50.41205,0.000844681 435,617.11584,391.6116,22.030823,83.13278,0.0004530727 435,609.4671,221.97467,29.679565,119.036316,0.00028863247 435,584.5628,114.65271,53.500305,209.77975,0.00021763504 435,608.8766,67.932945,30.27008,143.88486,0.00012246292 435,172.47144,145.74092,92.65457,206.68748,0.00010847091 435,608.5741,438.1711,30.57257,65.32306,0.000104432605 435,602.76935,300.8359,36.37732,158.7012,7.162138e-05 435,1.4154671,177.24368,17.585758,68.65622,6.214207e-05 435,3.6581364,209.7306,57.97278,225.35106,4.074472e-05 435,1.4812435,315.32544,19.557392,138.11737,3.1214837e-05 435,2.5209832,179.15826,28.265162,149.09778,2.4143073e-05 435,610.1576,3.2932682,28.989075,57.75627,1.0347509e-05 435,1.822151,101.20125,29.1628,131.89124,7.764396e-06 435,4.9095573,344.69174,79.588974,143.68744,4.0858567e-06 435,1.0876921,420.96765,16.147013,79.11304,2.3487908e-06 435,1.4763509,16.021648,57.873127,119.9202,3.4920298e-08 436,188.08939,204.35252,24.664871,49.57483,99.8041 436,242.34662,217.88536,43.23654,97.2292,99.36258 436,229.9612,211.6803,31.659653,60.028076,93.167404 436,300.7787,179.99042,24.148865,53.98419,0.39216056 436,251.93492,219.72398,23.931839,46.645004,0.2048399 436,32.43705,174.00972,28.462234,58.578613,0.09260586 436,430.57544,199.79756,36.81073,88.4073,0.005532582 436,223.63933,191.21864,98.083084,178.07607,0.003377025 436,340.90125,196.25128,22.883179,46.8058,0.0030683524 436,620.01825,187.45364,19.128418,60.48123,0.002315621 436,605.44525,140.10745,33.46942,130.41745,0.0016641514 436,619.7918,94.47624,19.354858,59.840454,0.0015257553 436,448.14334,200.89062,44.51886,126.33386,0.0006816145 436,399.2377,216.68495,34.03009,74.00728,0.00044140843 436,617.1093,391.13348,22.037354,84.47711,0.00028152717 436,455.15073,232.77077,25.70877,62.585526,0.000275589 436,614.3256,218.27943,24.821045,87.6537,0.0002332546 436,597.9512,196.12724,41.142822,196.67973,0.00017385907 436,422.8601,237.94626,23.120361,50.045868,0.00014629046 436,2.1961029,191.96771,28.452753,148.87943,0.00014344616 436,608.5501,439.24792,30.596558,65.18033,0.000118001255 436,172.1943,172.91945,59.153748,104.55965,7.7406185e-05 436,1.1953678,264.48178,20.92011,133.09613,6.553328e-05 436,4.9420996,123.30389,58.140285,212.18436,6.316287e-05 436,1.771932,140.15376,18.421957,77.51816,5.9492424e-05 436,586.27344,321.729,52.648804,166.26324,3.7165348e-05 436,3.3201253,275.02933,57.34424,204.01694,2.4637384e-05 436,137.13063,134.32755,144.5851,227.27481,1.3719169e-05 436,610.05176,2.9214096,29.09491,58.382877,1.0545157e-05 436,1.2334456,354.45056,19.727568,129.43048,7.0116985e-06 436,1.5715121,51.588066,32.967617,178.88281,1.229385e-06 436,1.3635141,16.15901,58.121506,118.86896,5.047357e-08 437,272.50775,214.91751,25.713196,48.092438,99.90515 437,187.00697,220.02922,49.17923,110.39427,99.17639 437,155.46193,203.33302,27.391739,48.17729,78.141396 437,190.1177,225.49199,24.827377,51.261093,0.14781274 437,143.98453,191.78203,50.3022,94.50044,0.016009944 437,340.0404,203.27707,24.606476,51.280807,0.012711211 437,597.18884,177.28302,38.859436,78.901794,0.012280381 437,303.30328,179.20456,23.38507,50.39177,0.007162786 437,619.26306,93.433,19.883606,63.635696,0.001192748 437,617.09973,390.8391,22.046936,84.34247,0.00034176448 437,28.8596,165.90651,40.86054,79.01485,0.00030930675 437,136.63597,165.97343,140.96892,226.48732,0.0002641568 437,255.29039,183.00325,58.9467,101.236374,0.0002551185 437,609.42505,222.41753,29.721619,119.29588,0.00023803074 437,1.1936027,289.25116,19.666245,82.443756,0.00018281069 437,1.7084229,170.65752,17.896273,73.42244,0.0001665244 437,583.23517,100.36471,54.84131,215.59616,0.00015614739 437,608.14056,67.48568,31.006104,144.67966,0.00014936893 437,2.0417936,282.58725,35.744263,198.75677,9.238763e-05 437,608.6405,438.19867,30.506165,65.019165,8.186621e-05 437,4.040122,238.91985,70.73148,172.70226,6.691809e-05 437,602.5452,295.58057,36.60144,156.18893,5.7799836e-05 437,1.8819597,201.79863,29.280453,154.0334,4.0061877e-05 437,571.1485,361.8058,67.43048,128.03351,2.931169e-05 437,218.64397,150.65334,144.35014,211.21898,9.226359e-06 437,1.2614502,366.58655,18.584364,75.49472,9.190389e-06 437,1.5735067,99.43957,21.026981,107.233376,7.551969e-06 437,3.3086898,85.263084,60.085506,226.04587,3.7789657e-06 437,1.1617131,420.54028,16.300062,79.702545,2.5786287e-06 437,599.0844,1.8335645,39.845886,95.112816,1.6693267e-06 437,1.5441651,17.087664,57.590313,118.354996,4.4544716e-08 438,121.56356,218.59279,38.8254,104.82704,98.9395 438,125.28165,206.2068,27.839249,55.96016,20.860615 438,142.20688,229.331,24.587372,46.931458,2.754821 438,306.13657,217.73294,28.413818,55.315308,1.8747681 438,136.98564,206.15208,49.548874,91.70726,0.29988432 438,34.970932,182.20187,27.726357,52.44008,0.11270763 438,341.1576,207.89862,22.604248,48.21588,0.0973777 438,153.29224,215.27817,23.95903,45.148956,0.087635815 438,597.3933,177.3426,38.626953,78.990005,0.008710505 438,441.1624,206.39941,27.659637,47.933304,0.006175616 438,331.79935,195.41193,40.05841,101.582306,0.0021837477 438,619.8529,93.65546,19.293762,60.13678,0.0018588973 438,316.186,188.72366,26.408478,50.450714,0.0010892955 438,98.96803,197.25107,110.37627,181.81778,0.0004549401 438,617.13055,398.39682,22.016113,82.7908,0.00033791168 438,609.39014,221.91074,29.75653,119.28931,0.00027659087 438,585.4594,149.99876,52.89563,224.66957,0.00014487044 438,1.465241,176.77347,17.645836,69.05206,6.956535e-05 438,600.8625,58.28205,38.197205,154.72217,6.599267e-05 438,602.77405,302.00616,36.37262,158.54056,6.3702355e-05 438,1.6035392,294.99738,18.726084,72.27048,5.0421182e-05 438,3.2918637,213.0339,58.285534,230.03772,2.4866878e-05 438,2.3127882,199.73949,28.517622,155.15459,1.9584204e-05 438,2.0775309,308.42953,28.918777,151.08392,1.949145e-05 438,1.062238,387.37827,18.615168,73.48941,1.3730451e-05 438,1.4461662,251.99698,17.996523,74.90262,1.217919e-05 438,2.126993,101.74666,29.035446,133.13065,8.275821e-06 438,4.635866,342.52963,79.57338,145.6323,3.8422772e-06 438,599.07806,1.6639584,39.89673,95.52416,1.759032e-06 438,2.0290642,415.48755,35.41906,81.93381,1.2265768e-06 438,1.5814096,17.133686,57.670734,117.97145,2.636908e-08 439,57.702084,226.58795,45.76746,92.51126,99.86723 439,87.8703,219.91946,45.76445,92.92752,99.80644 439,339.72885,216.01454,23.746674,51.62935,99.5193 439,96.62475,213.21846,26.937103,45.11876,0.70962405 439,439.58505,205.79895,27.455109,52.086273,0.42561063 439,301.42276,183.4338,22.40918,48.02768,0.030981671 439,47.34248,200.19913,119.92067,160.49438,0.008154023 439,598.5912,184.65561,37.07556,69.65268,0.005512569 439,619.3109,93.51694,19.835754,62.736603,0.0017967473 439,620.77014,180.64357,18.376526,57.480545,0.0015490297 439,601.62244,283.3707,36.855408,196.37988,0.0013357577 439,412.9154,203.7281,63.253418,164.85176,0.00068713987 439,582.71545,106.0311,54.18042,232.15298,0.0006037087 439,322.9481,194.26738,63.025238,89.818344,0.000309837 439,600.2925,63.03741,38.686096,150.67488,0.000101861486 439,4.4527082,154.01208,57.732292,229.13074,8.9884576e-05 439,608.9445,435.93768,30.202148,66.36789,8.7915694e-05 439,1.4257023,182.64201,19.867517,145.47914,4.7590896e-05 439,1.7622706,297.10126,29.394701,157.78922,3.7697013e-05 439,1.7593637,92.7987,29.37037,137.17361,2.1330097e-05 439,289.21957,150.57956,141.44568,216.5379,9.10184e-06 439,610.3543,3.6505795,28.792358,56.711555,8.944029e-06 439,4.562744,345.9715,80.51094,142.13419,4.992785e-06 439,1.1573365,395.02347,21.35222,100.56348,3.6363103e-06 439,1.2528158,15.913074,57.86901,122.876175,5.5388288e-08 440,367.71857,221.85912,28.317444,51.254654,99.77477 440,11.776272,219.76021,43.560905,100.83528,94.66163 440,0.0,218.36761,22.751726,92.92319,68.08359 440,45.009956,213.37538,51.76616,107.584946,65.341934 440,60.948837,225.66154,28.196304,45.96324,0.32728723 440,459.19904,225.55821,27.350922,50.866684,0.041661378 440,4.513584,195.35883,101.78435,188.43732,0.011921669 440,613.84375,176.4777,25.302917,84.30675,0.0026398974 440,321.6461,193.94876,24.536041,49.124084,0.0018715658 440,350.39594,199.25468,61.208282,91.925674,0.0008568037 440,616.094,225.92003,23.052673,86.832565,0.00046717882 440,355.03284,189.66362,26.81427,48.106537,0.00043365266 440,596.74615,118.44334,40.982178,172.21527,0.00039202382 440,614.96295,83.392235,24.183716,90.863365,0.00025865922 440,1.6886866,102.85728,36.716694,226.81909,0.0002490405 440,2.7326498,279.5608,58.981407,201.15973,0.000142335 440,610.696,358.76797,28.450684,140.77142,0.00013954286 440,599.75275,240.77193,39.39392,212.15456,0.000110386805 440,1.084056,306.15625,20.968033,158.36563,1.4134523e-05 440,316.63144,165.019,143.138,203.122,1.1850383e-05 440,610.2425,3.6581087,28.904175,56.81431,1.0171165e-05 440,0.9971761,69.43384,21.504942,150.1758,6.806998e-06 440,1.1881999,420.6876,15.962803,77.54126,3.736443e-06 440,1.0239779,19.190138,58.03636,120.003204,4.3644778e-07 441,387.11005,219.71484,27.156097,52.83145,98.42706 441,176.18182,229.54745,56.39972,105.533325,94.76389 441,273.05075,178.22446,21.823029,47.18071,0.027434923 441,446.17215,224.50061,26.728058,52.14859,0.021386389 441,599.4245,184.06178,34.420837,73.745346,0.013767118 441,180.5019,268.3749,25.051758,58.92984,0.0130848 441,313.0089,199.48671,24.170624,49.862045,0.008244493 441,614.382,159.21829,24.577576,73.78763,0.0025790483 441,621.04956,199.2134,18.097107,57.79628,0.0018094721 441,370.34756,198.97673,64.303406,84.75069,0.00097531965 441,616.80066,231.89493,22.346008,87.64896,0.00025727195 441,611.08856,370.16968,28.058105,127.60196,0.00020534733 441,139.28485,176.30812,125.09668,228.79149,0.00015977594 441,585.9228,157.82399,52.796875,232.6949,9.4284056e-05 441,1.3049675,91.11795,30.75516,148.52348,5.734057e-05 441,610.2506,49.845543,28.896057,145.60437,3.1420892e-05 441,1.499397,334.9822,19.77217,131.22519,2.491459e-05 441,1.3076684,172.94275,19.208664,123.2413,2.2723014e-05 441,4.4649677,156.52618,57.872673,246.71136,1.9347479e-05 441,3.8644142,318.57187,57.78917,163.58517,1.5385063e-05 441,2.1231298,220.6604,28.140152,158.19879,1.1637934e-05 441,0.75092286,244.98581,13.815246,49.314026,6.736991e-06 441,598.1257,2.6443067,40.90985,95.09629,6.5282834e-06 441,337.5927,147.7183,140.82928,212.35072,3.4111533e-06 441,1.0329468,416.6397,16.90802,82.37213,2.17478e-06 441,525.27057,44.215218,93.84119,201.69482,6.7779104e-07 441,0.83425945,20.95012,55.744843,121.2417,4.1105238e-07 442,400.75653,222.23573,27.121643,55.468216,99.55153 442,359.99255,231.45776,50.04663,141.36612,0.44274473 442,287.20004,191.42258,23.953491,55.812225,0.017884249 442,382.70676,198.34396,60.77893,102.09183,0.0037795785 442,580.83057,184.5195,34.386475,78.70117,0.0011218364 442,617.0613,164.09494,22.085388,79.01834,0.00096203113 442,337.22586,256.14398,37.928375,87.90149,0.0004154194 442,620.34155,130.07872,18.805115,52.361008,0.0003806974 442,617.4341,227.61938,21.712585,85.54349,0.00031822952 442,617.1131,392.28677,22.03357,82.57678,0.00029064337 442,577.64935,61.80298,59.78772,218.70108,0.00014076855 442,617.1625,321.18018,21.984192,82.83591,0.000113961345 442,278.91415,214.38412,26.94748,56.10611,0.00010788944 442,608.4779,439.7297,30.668762,63.828064,0.000104034894 442,600.5248,324.79135,38.621887,163.68475,8.514681e-05 442,346.86618,150.53848,134.64465,229.82458,7.198651e-05 442,600.9293,176.86714,38.217346,188.3171,5.4427994e-05 442,1.9340512,296.46893,18.386614,82.464294,5.378804e-05 442,1.3430388,187.24588,17.420998,66.82715,4.2620435e-05 442,5.1941113,215.11282,77.21674,264.6048,3.4095345e-05 442,2.5773194,276.52625,35.58485,185.51575,2.8212497e-05 442,1.3077703,391.6264,18.865923,81.51953,1.9878615e-05 442,1.52278,143.28131,17.835157,75.38132,1.6369928e-05 442,1.8541113,174.45525,29.212107,157.00279,1.3923311e-05 442,2.8973553,384.72162,55.89679,109.36041,1.0282388e-05 442,107.73313,260.10568,83.52804,188.27536,1.0240113e-05 442,585.8031,4.4749155,52.969482,137.60995,8.432369e-06 442,1.5432601,448.86432,29.421186,54.44867,6.8531804e-06 442,3.5971777,92.6117,58.336193,208.36127,2.3485656e-07 442,1.6826742,13.993519,34.922325,72.87901,2.8187989e-08 443,384.01917,217.07806,34.450684,59.694275,99.785355 443,447.33173,241.0056,46.14334,109.17464,98.130974 443,468.69662,239.69435,37.263275,69.52449,0.4380236 443,233.74458,177.83139,24.347488,52.035233,0.07493553 443,601.1814,242.0252,37.96527,91.507965,0.033420596 443,622.0939,250.96948,17.052795,46.938904,0.01126469 443,616.2597,196.52751,22.886963,87.348495,0.00076916185 443,442.6446,201.02231,105.88971,187.55588,0.00075740187 443,364.08472,179.41559,73.30951,142.38593,0.0003545781 443,4.1986995,273.26367,56.71938,203.405,0.00028479792 443,1.3337508,400.60406,18.648594,73.60193,0.00025497642 443,617.088,378.56805,22.058655,84.267,0.00020469216 443,588.71216,219.28267,50.43451,238.97963,0.00019081062 443,612.1909,104.46185,26.95575,133.77422,0.00011537585 443,608.515,438.22324,30.631653,65.996765,6.983882e-05 443,584.1994,87.82287,54.192444,227.9515,3.7893344e-05 443,26.680176,260.7149,87.81183,189.52225,2.7794871e-05 443,584.6896,390.5106,54.229065,103.45874,2.5665977e-05 443,94.596146,277.85568,83.670654,178.49573,2.5120775e-05 443,1.7591016,332.40005,18.692223,79.927,2.0018939e-05 443,610.32446,3.2983415,28.822205,54.62238,1.8854684e-05 443,1.5187948,261.55618,19.139545,83.91098,1.0880685e-05 443,1.4481658,180.01303,18.49479,76.5741,1.0403057e-05 443,2.4388509,162.75992,35.794243,222.74716,5.3694876e-06 443,2.3239257,116.572464,28.434416,126.82541,3.0312008e-06 443,2.1917465,20.368578,56.325405,104.07123,2.3663208e-08 444,368.82648,214.42647,29.311829,66.70448,99.96202 444,538.5542,243.45961,39.18445,107.18892,10.351683 444,172.63568,159.55466,28.98761,62.38365,0.33878654 444,132.73523,154.74174,24.423035,50.99391,0.049723405 444,9.370304,153.8543,31.078796,45.022034,0.04556246 444,600.5099,207.117,38.63678,113.1694,0.0028193176 444,557.6287,238.65034,44.944275,121.64815,0.0017203924 444,610.4509,129.41377,28.69574,137.4887,0.00034315116 444,351.5961,181.70142,68.716095,146.55963,0.00028321345 444,501.26575,171.99974,38.658875,75.876465,0.00024454895 444,178.23183,193.76064,22.10376,45.19026,0.00021636813 444,616.5356,259.4126,22.611084,84.83667,0.0001535374 444,512.08514,195.50188,109.97095,192.30367,0.00012930406 444,610.97723,350.2591,28.169434,140.55664,0.00012362485 444,1.3726156,161.94096,17.656096,71.80209,8.4862906e-05 444,3.9288836,352.99542,80.254845,130.87619,4.88355e-05 444,1.6929208,340.9323,29.354984,130.76477,3.3661698e-05 444,65.14668,258.45773,112.77493,224.27487,2.6701988e-05 444,3.4713087,187.919,57.634644,253.63788,2.18513e-05 444,0.9521428,406.40253,18.619232,73.37906,1.926062e-05 444,611.62463,1.4171485,27.522034,57.742188,1.0266102e-05 444,1.5931145,315.92334,18.940313,72.1145,6.885096e-06 444,1.6746241,150.37518,29.958925,149.64377,6.1046285e-06 444,1.0077572,234.33844,18.751814,79.601105,1.569037e-06 444,1.5988119,63.334156,27.948063,142.25,4.751768e-07 444,2.566504,17.785303,56.929142,107.29693,2.4841531e-08 444,0.997015,8.556198,20.458387,56.334938,1.0029805e-08 445,437.0773,221.31595,33.652496,70.77603,99.70126 445,160.3825,155.39894,26.598312,51.763977,0.033850145 445,359.663,196.85847,33.576447,66.12669,0.010662136 445,196.78142,168.78975,31.088089,63.479263,0.008352112 445,619.7886,260.6304,19.358093,61.52411,0.0033811945 445,313.6194,190.1533,24.828247,48.11183,0.000996695 445,104.67735,328.60968,52.940857,143.22733,0.00064159225 445,600.2517,228.6122,38.89496,207.75673,0.00063446537 445,418.2445,179.45079,72.190094,152.81236,0.00056784914 445,609.00385,179.19548,30.142822,142.41554,0.00055588805 445,616.99677,391.63388,22.149902,83.12338,0.00034105728 445,1.6339111,156.44925,18.822906,69.94151,0.00017024223 445,109.98611,347.81635,22.033546,49.26239,0.00010629297 445,10.458509,310.73798,72.293625,170.44855,0.00010334388 445,608.3852,437.89563,30.761475,65.72354,9.701475e-05 445,610.30286,101.017334,28.843811,131.16702,8.984216e-05 445,617.5725,307.5537,21.574158,80.15259,7.7067794e-05 445,83.34751,298.28015,47.513252,151.46976,5.556113e-05 445,1.9825294,336.6819,28.781124,132.42834,5.3863805e-05 445,570.6642,362.56122,67.86359,126.83847,3.24743e-05 445,1.3756714,304.8445,18.718033,81.26105,2.0851254e-05 445,1.0371696,409.34396,18.449345,69.48288,1.7913775e-05 445,1.8766139,148.78738,29.641808,150.11438,1.4218196e-05 445,4.9478617,130.16858,78.84841,250.81534,1.3524878e-05 445,610.8885,2.235078,28.258179,56.211876,1.2665333e-05 445,0.9319711,256.5305,13.663731,46.83441,9.663279e-06 445,179.7079,294.9126,77.46602,178.59445,6.6637745e-06 445,3.270682,427.16415,52.34573,69.39087,4.4723456e-06 445,1.8422421,60.792183,27.902866,149.70175,1.7772941e-06 445,2.0299416,16.800312,56.953915,113.66283,8.223521e-09 445,347.97314,0.7645003,43.035034,49.327984,7.2113973e-12 446,528.87585,221.95667,37.433533,88.69919,99.784515 446,226.72762,163.06293,33.003677,64.16591,0.038981114 446,550.18805,209.62384,40.101868,89.56998,0.02199433 446,190.46489,162.02089,25.380539,51.055115,0.00723804 446,617.3631,216.88821,21.78357,78.77347,0.00059011375 446,608.3044,120.62787,30.60852,137.84451,0.00056359946 446,110.3587,391.56598,21.693619,46.20819,0.0005493318 446,502.94177,180.71677,111.565125,169.47421,0.00035496452 446,96.91219,352.0002,47.110252,134.61804,0.0002142732 446,610.3799,334.7715,28.766785,137.02954,0.00019739452 446,210.65375,348.259,47.162262,134.44482,0.00019076369 446,1.3999797,166.76381,17.558666,63.29193,0.00018855704 446,0.91698897,371.83398,15.697757,62.792603,0.00018306033 446,2.4980502,320.40884,34.9854,175.52795,0.00017264005 446,597.3577,196.19847,41.729248,210.78178,0.00014840385 446,617.6262,291.2692,21.520447,83.58359,8.1613565e-05 446,608.6763,438.68158,30.470398,65.37149,6.038666e-05 446,0.98410404,328.65143,14.012348,56.709625,4.8341633e-05 446,222.80122,417.93665,79.45763,78.14343,2.7003707e-05 446,4.1019726,422.54727,64.06366,75.340546,2.377249e-05 446,1.1103101,280.89584,18.643051,83.742584,2.3499251e-05 446,166.30328,419.71323,77.94652,75.09012,1.3027767e-05 446,1.4470859,418.71048,16.910128,82.50473,1.2155472e-05 446,610.439,2.9149318,28.707642,57.510303,1.1295546e-05 446,3.0940495,128.84808,58.98323,245.9649,7.654964e-06 446,316.86172,421.00122,74.225464,76.51993,6.8585805e-06 446,2.2497764,113.14399,30.164701,120.7781,5.773907e-06 446,1.076211,243.85568,18.2519,70.56677,5.2668975e-06 446,273.12366,422.53513,76.12204,75.91989,2.7852495e-06 446,0.7695825,202.87985,18.446255,73.982086,1.5179749e-06 446,1.3555574,68.049515,15.16904,133.47081,1.8360798e-07 446,490.14246,27.848843,97.72363,212.44928,1.4347233e-08 446,2.112326,16.8788,57.258194,110.90787,9.319377e-09 446,368.6625,1.0759196,43.004364,49.141087,2.1590787e-10 447,0.0,209.83951,68.15494,204.11139,99.85288 447,79.30137,158.69588,24.589554,55.392487,3.2004979 447,1.6000489,283.47885,35.6869,106.76193,0.08538523 447,25.895967,323.36868,22.6943,54.73761,0.05400607 447,610.5312,211.56346,28.450806,70.15791,0.039179128 447,21.233204,249.3922,38.341484,102.29375,0.030759465 447,245.0779,171.66321,29.610275,64.96916,0.012032885 447,209.16707,162.39491,23.531967,46.933548,0.010536806 447,0.0,244.22087,20.258568,103.0562,0.009811718 447,597.3477,149.4252,41.434875,182.06854,0.0014875148 447,10.472837,260.89374,29.40534,71.7912,0.00030692545 447,607.9382,433.2548,31.208496,72.04053,0.0001693353 447,1.0628223,339.41428,21.65439,111.072296,0.00013470509 447,2.1332536,372.88437,56.111694,123.74298,0.00012904155 447,610.90265,341.51987,28.244019,139.40952,0.000113722606 447,211.34476,421.00815,83.747894,78.06354,0.000101568345 447,1.2293735,411.2235,19.044535,90.01755,1.6607653e-05 447,1.4950904,121.07781,20.575838,141.14478,1.2911747e-05 447,181.47552,338.19617,80.584076,162.04016,1.2723199e-05 447,610.2475,2.595137,28.89917,59.243725,1.2068689e-05 447,44.13043,342.1246,81.673996,157.61047,8.908583e-06 447,334.87302,417.3464,76.17261,80.129395,1.5536854e-06 447,526.34094,437.04517,43.98889,63.941864,1.0954396e-06 447,260.2407,420.20804,74.80261,79.09415,1.0743257e-06 447,411.9361,414.18875,73.367615,81.7594,1.0182653e-06 447,461.92804,390.15518,110.32739,104.32846,7.4722726e-07 447,499.19772,438.00674,44.034393,63.75821,5.8230086e-07 447,472.5543,437.81714,43.371246,64.15173,4.1208708e-07 447,2.217964,19.935556,56.44617,107.561584,1.1749919e-08 448,25.007856,209.89514,83.64523,204.06342,99.65917 448,6.2488103,213.8417,50.62346,175.77557,17.563473 448,19.155033,309.70712,22.797459,68.04828,0.16916694 448,71.47044,279.14847,34.869293,103.84308,0.1366043 448,93.13958,157.47946,23.973068,54.40851,0.022585845 448,53.553326,292.93677,24.165905,64.38855,0.02254707 448,263.0163,168.95619,31.407593,67.36749,0.01695342 448,224.94427,156.90047,24.430191,48.9028,0.010730853 448,77.36241,258.28812,26.456223,66.82724,0.00906534 448,2.5126116,289.8612,23.1727,110.62027,0.007231693 448,44.935543,223.48596,39.94061,125.7211,0.00403168 448,430.3556,219.97308,24.517334,51.687164,0.0034554317 448,610.7052,191.16537,28.441467,96.58734,0.0021847184 448,610.6781,94.23124,28.468567,138.62057,0.00033419539 448,610.5622,374.6933,28.584473,126.29245,0.00014180309 448,2.7246485,293.47638,85.39668,195.02094,0.00012073092 448,584.67883,122.0915,54.08734,228.66196,0.00010777581 448,611.2436,272.80194,27.903076,142.00912,5.9977556e-05 448,607.6765,16.402573,31.470154,145.80304,3.8523016e-05 448,1.6268384,354.64734,20.118286,138.89548,3.2529228e-05 448,1.6428548,156.83678,20.618975,167.43007,2.5789985e-05 448,590.65564,449.1173,43.65161,57.49948,9.217495e-06 448,507.12997,414.36517,77.7023,81.87567,7.319923e-07 448,384.3693,416.94492,73.99097,79.86957,6.573675e-07 448,452.66772,415.94824,75.18292,80.33371,5.437423e-07 448,1.7213233,17.099018,35.11651,68.71756,2.4679025e-08 449,87.03515,193.41228,82.69837,198.89577,99.11975 449,72.86389,271.86288,50.863068,153.27594,0.5830705 449,135.92674,250.72487,41.66472,133.2824,0.096058026 449,281.26816,163.9603,29.61142,63.581512,0.07388632 449,107.17999,251.81949,26.563904,71.55817,0.06988804 449,115.88857,291.22446,26.662498,63.708282,0.013264445 449,132.38408,256.1,26.905228,68.35828,0.0077670645 449,239.34517,161.84093,27.192947,47.898254,0.004972805 449,416.84238,219.41855,21.655487,49.137238,0.0020910504 449,602.3646,170.61592,36.782043,155.1049,0.0004032247 449,607.4962,65.05368,31.650452,144.89394,0.0002552918 449,607.12897,436.17038,32.0177,70.21875,0.00022182867 449,3.6624334,300.3748,57.07054,179.59232,7.863249e-05 449,601.4424,326.7078,37.704285,165.05869,4.4686116e-05 449,608.6608,0.0,30.48584,106.99754,3.0549698e-05 449,1.4411784,339.12872,20.893127,137.05008,3.028523e-05 449,1.4565918,132.46448,19.2616,122.6488,1.0760857e-05 449,549.9966,0.1263021,89.150085,235.11998,7.842986e-06 449,1.3020704,254.79277,20.793264,134.94887,4.0671184e-06 449,2.0768507,161.86356,36.559277,203.4252,2.1602898e-06 449,2.4211752,409.49725,36.061356,88.55817,1.9974727e-06 449,447.15335,423.32407,74.839264,75.35501,6.770416e-07 449,3.9265983,78.831505,57.780163,202.03549,5.922475e-07 449,1.3177881,60.34933,15.877772,134.31143,2.5923364e-07 449,1.5637891,15.021523,35.06371,72.761116,1.8223291e-08 450,177.86855,202.67828,75.55557,206.42166,99.71868 450,217.56703,222.45818,46.2368,136.84673,0.21236229 450,129.11282,157.15987,24.029465,56.74823,0.12575305 450,308.63773,171.66042,34.157104,70.8923,0.047044937 450,486.32214,218.91483,20.774902,50.660767,0.023258988 450,166.57788,268.75958,47.011276,149.52704,0.019060168 450,184.458,228.0686,37.003937,121.58136,0.012679735 450,204.10553,291.73892,25.582077,64.31375,0.005406086 450,207.81813,257.84805,27.00859,70.5,0.002347886 450,612.1309,220.12701,27.015747,95.437775,0.0011346792 450,608.89374,111.92742,30.25293,150.92798,0.0003340189 450,599.36285,246.76234,39.783813,205.4298,8.210586e-05 450,3.799017,305.35684,57.349983,180.54025,6.7625966e-05 450,606.84436,3.1494012,32.302307,163.97823,6.3706124e-05 450,608.46497,440.73184,30.681702,65.096466,6.0596245e-05 450,1.6852995,150.1418,19.909723,119.17311,2.7706159e-05 450,1.5204542,336.56485,21.038094,135.95364,2.5273801e-05 450,584.7929,391.02322,54.24408,102.53314,2.0021498e-05 450,2.3849416,413.17218,35.20097,84.367676,4.294062e-06 450,3.5952377,156.7881,58.04556,246.37349,3.7254551e-06 450,2.0435483,253.7176,29.89653,158.85048,3.6701817e-06 450,1.9597982,82.338684,28.708836,141.01634,8.67639e-07 450,1.8614274,14.577562,35.34438,76.38644,2.8407227e-08 451,320.3583,217.6163,82.278656,211.70819,98.02591 451,358.0685,241.58604,37.617554,113.17381,0.22218555 451,320.44107,239.22266,41.79068,117.75632,0.081463054 451,342.07498,312.70984,24.247559,65.64819,0.048642393 451,333.69556,170.03079,27.239075,47.522827,0.014275926 451,191.9731,165.72821,33.274582,56.024506,0.0121845575 451,341.26712,264.86835,27.65924,71.81348,0.011992153 451,562.9713,235.15474,23.396362,52.30211,0.006513852 451,360.4897,301.18195,24.065704,67.42142,0.0030160309 451,370.75385,181.04109,35.873596,92.18114,0.0017595037 451,600.3931,69.362564,38.1156,222.20854,0.00031140583 451,600.73,202.72006,38.08368,169.82172,0.00026356193 451,611.5076,365.64233,27.639038,129.89648,6.86155e-05 451,609.34283,9.12567,29.803833,144.9376,4.1429008e-05 451,1.5406283,167.77528,17.173298,119.71712,1.9799418e-05 451,4.095303,250.19475,56.696224,229.47026,1.2557065e-05 451,2.442085,196.13441,33.357285,172.96019,9.029528e-06 451,1.9953849,335.15176,29.64225,141.00235,5.3573444e-06 451,2.763965,88.30676,33.894634,164.44997,4.0058203e-06 451,1.2481128,267.876,20.16108,141.57904,1.2459448e-06 451,1.4338843,56.881687,18.676344,130.0511,1.0747171e-06 451,1.4645981,10.362891,37.92688,90.23272,1.8356133e-08 452,528.3929,233.92928,80.65796,211.43184,98.578926 452,565.0809,336.48434,27.062622,65.18286,1.9699559 452,567.384,270.14786,39.546814,110.90851,0.48809615 452,545.5104,340.91736,22.977844,65.066376,0.20444435 452,559.0147,296.08774,26.252258,67.48422,0.12702377 452,538.1438,270.80786,37.78711,117.54193,0.032580364 452,4.2628307,103.66075,45.669388,149.32123,0.031342756 452,578.6739,187.58693,57.050903,260.78296,0.015074927 452,437.06802,186.23997,23.275635,45.585526,0.012763704 452,615.79565,194.91183,23.331787,82.95581,0.0060569737 452,609.5805,224.9921,27.72406,149.62213,0.00085652753 452,607.67645,73.851425,31.470215,162.21191,0.00035003404 452,611.4668,311.30515,26.7854,130.11655,0.00032821062 452,581.19586,383.79614,56.07599,103.68231,0.00018100097 452,609.2485,436.97037,29.898193,66.31323,6.72355e-05 452,1.7618905,158.4469,18.29884,128.09741,6.284472e-05 452,599.0732,6.278542,40.073486,83.52789,3.8822935e-05 452,3.3529623,269.63104,56.406094,204.93643,2.3435603e-05 452,1.5702181,355.61047,20.270302,131.07239,6.4113997e-06 452,1.8831527,231.621,28.999083,145.14993,4.1827184e-06 452,0.59070474,5.9423895,38.12844,94.07702,9.709144e-08 453,27.787426,196.63434,28.823208,50.976425,0.2123898 453,571.05084,189.17487,31.576477,52.67003,0.17441082 453,329.7605,187.32246,26.207092,54.56958,0.07815017 453,511.26746,185.93251,30.557922,64.30174,0.07104242 453,530.88196,232.80943,25.375122,51.712234,0.01869119 453,601.2815,155.55672,36.500122,88.480606,0.0077465447 453,9.427295,102.87706,39.94766,94.09299,0.003650227 453,519.21454,205.00624,41.841553,118.309586,0.0036266127 453,621.15265,222.95311,17.994019,62.943924,0.0026384098 453,1.2799406,120.96764,13.446144,58.943016,0.0005397692 453,609.5622,202.40855,29.584473,144.87813,0.00042292653 453,2.7000668,30.811941,62.417633,236.46355,0.0003395981 453,2.0561776,82.07671,19.302345,140.14056,0.00023924035 453,617.1688,386.98862,21.977844,82.58374,0.00023892001 453,608.436,440.39407,30.710693,64.23004,0.00011422793 453,1.5515145,155.62236,17.934435,134.73875,0.00010557096 453,584.2716,394.33475,54.436035,101.20599,6.804272e-05 453,573.4822,201.38693,45.52765,133.65182,4.851742e-05 453,1.2552865,244.20943,18.70999,66.341415,4.017697e-05 453,88.31906,100.241135,24.960548,57.945267,3.6454985e-05 453,4.420265,181.13727,56.931377,230.78503,2.1187492e-05 453,75.31786,75.02454,75.8368,186.54099,1.8566478e-05 453,3.2895167,320.8764,56.947803,161.5358,1.6740847e-05 453,603.37006,277.36398,35.77661,156.22256,1.6640184e-05 453,0.8382247,423.4543,14.017727,47.029694,1.6601352e-05 453,1.4136556,308.84818,18.326067,80.64389,1.3751405e-05 453,1.5456153,351.63525,20.705704,126.36185,9.83168e-06 453,598.5472,10.487786,40.599487,73.58123,7.688971e-06 453,0.8341781,292.9918,13.710306,47.92639,4.9586192e-06 453,301.98523,131.7468,104.35742,189.22614,1.7791731e-06 453,1.1713192,25.306215,19.953316,86.185585,1.6434212e-06 453,0.0,1.8033171,44.0703,58.630383,2.5681027e-08 454,319.50885,180.47374,28.435852,63.449677,4.0363574 454,583.52716,181.86998,30.997192,56.68216,0.13831747 454,542.832,245.17331,27.306335,52.158936,0.025105555 454,607.73755,162.07828,30.415527,72.23131,0.0025522031 454,621.67957,215.76038,17.467102,57.363037,0.0022814656 454,584.3472,164.69029,53.819336,192.8654,0.0008991717 454,538.1592,238.78453,41.99347,125.265,0.0006913625 454,616.0834,283.92023,23.063293,80.43042,0.00028065112 454,611.28186,377.39127,27.864807,120.26761,0.00018474048 454,463.9484,163.61821,34.50595,62.530487,0.00018275717 454,146.64682,184.00531,36.572266,67.49184,0.00014458198 454,257.16705,159.74385,41.987823,91.81769,0.00013300744 454,33.75703,193.19797,41.981327,79.35492,7.1936964e-05 454,4.282689,253.50386,77.34818,213.21648,5.2171963e-05 454,1.0559701,273.48386,18.740107,64.1651,5.2068277e-05 454,100.77138,173.97122,23.794983,48.183502,4.5977005e-05 454,1.1725049,214.62807,18.347658,79.00078,4.0558672e-05 454,1.3968807,150.11642,18.732811,85.592804,3.2193144e-05 454,302.12622,139.83011,77.85773,145.39908,3.1264917e-05 454,3.4773276,155.69525,59.07533,204.89075,2.6492373e-05 454,1.9109864,104.32742,18.627317,80.38736,2.0041327e-05 454,0.826331,423.9682,13.863366,47.25598,1.7569206e-05 454,489.2603,213.71999,78.75763,184.838,1.2355645e-05 454,1.9311703,325.0788,35.34026,161.24945,7.461651e-06 454,598.4431,10.321524,40.703552,74.17897,6.8743752e-06 454,1.2207414,374.0079,18.82864,76.73163,4.1325848e-06 454,1.3493392,330.33368,18.213024,71.23743,2.9934363e-06 454,3.1005893,426.40167,52.56218,72.63693,2.378128e-06 454,2.645389,59.114567,35.54732,184.88794,1.2345193e-06 454,3.3415382,24.565416,58.00159,109.1772,2.8266606e-07 454,0.957498,12.728571,10.776163,81.95953,8.230069e-08 455,302.77643,181.41893,29.306488,60.514877,4.6509724 455,591.69104,189.45837,37.8631,95.44357,0.4176124 455,234.29561,204.72032,26.04329,45.041275,0.18967015 455,564.8191,245.66089,28.118958,57.360962,0.022535078 455,612.916,261.73837,24.315857,50.98413,0.0072896443 455,623.3394,193.06711,15.807251,57.98178,0.0066191875 455,609.84674,131.08392,28.974182,135.74353,0.005467774 455,538.4152,194.92946,23.511475,51.906387,0.0026809238 455,20.252039,178.92123,30.844831,54.76909,0.0022708876 455,457.3884,188.06424,22.583801,46.946106,0.0011681266 455,622.5587,123.41612,16.587952,47.182602,0.0010420835 455,1.7880648,109.16047,19.282024,140.6901,0.0007509519 455,599.00555,209.67781,39.601685,202.46663,0.0005524355 455,556.2298,249.52475,43.745422,134.461,0.00029623052 455,616.9025,387.34756,22.24414,81.00235,0.0002798424 455,617.3832,277.61258,21.763489,92.602325,0.00016919727 455,532.8881,263.10724,102.41138,221.13693,0.00014134782 455,541.56964,242.23392,36.20294,70.10022,0.00012968727 455,3.3722885,93.37779,60.102833,223.96742,0.00011735786 455,107.7892,174.17566,35.39395,70.591095,8.691026e-05 455,583.18677,393.46567,55.488464,97.88248,7.599245e-05 455,608.63824,439.85583,30.508423,62.53418,6.8331115e-05 455,616.5589,341.93677,22.587769,81.42456,5.9631697e-05 455,0.9531519,303.21793,18.008305,72.20282,2.7604776e-05 455,287.1991,144.20125,74.311035,149.37294,2.361693e-05 455,1.9245028,176.8,28.539207,147.10713,1.6062188e-05 455,1.5276579,24.209805,35.51795,164.91512,7.3386864e-06 455,1.184388,413.33966,18.233225,64.15723,6.232041e-06 455,2.233768,291.29022,31.206238,170.31302,5.1960933e-06 455,598.6047,10.785971,40.541992,74.17291,4.327617e-06 455,516.69025,254.3361,46.92163,147.8059,3.406745e-06 455,0.8725871,351.62656,18.097914,69.60886,2.3948974e-06 455,3.9977996,395.7294,55.42469,94.36713,2.3706737e-06 455,594.3638,114.544014,34.2041,87.50576,1.8602094e-06 455,1.4782178,49.812588,19.862408,72.45616,1.2917777e-06 455,283.8619,428.07703,76.55887,72.3819,4.4831734e-07 455,0.6192411,13.495893,8.599739,84.029015,5.5585136e-08 455,0.44516766,5.05432,30.660185,64.407364,9.593512e-10 456,471.83377,200.03523,37.201385,58.71022,82.49513 456,228.63196,165.59364,32.60913,72.31636,28.753534 456,131.10791,195.1733,45.062958,66.06941,0.44874862 456,606.6292,195.06062,31.304565,94.14119,0.43832377 456,557.556,204.78334,50.742676,134.44228,0.08943838 456,281.6732,201.06207,30.154724,46.572174,0.07512243 456,581.1551,189.07031,28.913086,79.8461,0.044662286 456,414.13477,195.12029,24.608063,46.993057,0.039512575 456,602.6441,195.53986,20.370544,48.568985,0.03656876 456,233.18819,214.59895,26.89009,49.36879,0.008836247 456,569.90015,267.83685,27.542297,58.48285,0.0073689655 456,554.64264,253.49803,29.181091,70.702896,0.0054359306 456,621.40985,227.10623,17.736816,50.295105,0.0029650368 456,583.3414,174.62543,54.249084,212.01077,0.0019471699 456,617.2441,270.76132,21.902588,74.18439,0.0009719667 456,2.6425693,150.64366,33.077816,104.45621,0.0002529155 456,614.59375,114.0612,24.552917,88.02081,0.0002145165 456,609.2457,309.4164,29.90094,145.20953,0.00010151082 456,566.456,365.8326,72.21472,133.70752,7.704141e-05 456,214.78702,142.22119,71.81729,148.25061,4.6118144e-05 456,590.8818,134.28003,41.122864,118.859375,3.5041605e-05 456,142.91742,153.02087,34.839478,77.37402,2.2133854e-05 456,1.0150782,380.68472,18.479282,114.46762,1.798701e-05 456,610.2485,5.8759036,28.898193,52.9682,1.00221505e-05 456,1.2290365,212.59787,19.0353,133.79904,9.9211575e-06 456,1.065035,288.75662,18.146423,126.35077,9.373494e-06 456,3.6822593,329.47858,56.35588,151.51205,8.563902e-06 456,413.23642,397.0049,111.34738,103.3801,4.928127e-06 456,3.2010744,111.41477,58.910362,201.64304,4.2547986e-06 456,441.7337,434.60297,46.901062,69.55594,3.2202781e-06 456,161.5043,418.3922,72.203964,79.47354,2.0886514e-06 456,377.6982,422.24088,77.82773,80.358185,1.1495753e-06 456,121.12864,420.39243,72.67417,77.96951,1.1130766e-06 456,1.6433944,55.46931,19.8858,148.86594,8.4144835e-07 456,206.22096,419.0994,75.60304,77.29666,8.1484137e-07 456,290.17715,418.08917,76.11566,79.509,4.8725127e-07 456,2.714712,16.793812,58.5107,112.23903,1.13181486e-07 456,1.2045817,11.539274,12.417006,76.863945,4.6931643e-08 456,1.9489225,3.4091668,36.704952,45.287827,1.00744595e-08 457,105.95187,153.58344,41.49083,90.90782,99.48288 457,394.4055,214.64236,29.286316,55.387787,1.5319504 457,383.0533,207.69684,24.075775,54.177887,0.5451165 457,545.3861,175.58926,33.40796,85.24106,0.42747036 457,367.59952,189.54321,24.252441,47.55742,0.053764828 457,339.0164,200.59552,27.935242,51.075943,0.032600753 457,551.0565,171.8114,62.033325,145.65585,0.016336901 457,409.04703,195.43353,38.832825,76.882355,0.0067738597 457,566.7621,302.4218,26.256592,52.66864,0.0066436986 457,607.83344,154.14056,30.339722,140.49701,0.003892528 457,501.32812,172.33374,86.565796,199.76675,0.003730267 457,183.13266,194.01266,33.26526,60.36586,0.0035731136 457,585.31195,182.01949,51.13855,204.7588,0.0029906288 457,562.73413,188.4975,28.420166,83.9483,0.00279717 457,616.1541,254.37367,22.992554,88.40782,0.0010933377 457,520.6592,204.5824,43.28961,109.70349,0.00034915254 457,1.7496095,155.10034,19.673552,126.81036,0.00033807382 457,609.12585,77.374405,30.020813,135.88228,0.00029089514 457,616.5834,378.86548,22.563293,85.167145,0.0002623532 457,566.2112,250.14268,50.188354,109.514786,0.00014813618 457,598.6699,320.19046,39.296326,159.01044,0.00013728543 457,79.37474,143.26656,104.48497,161.17088,0.00010865624 457,447.7886,248.3386,123.321625,214.50272,8.93235e-05 457,469.6331,289.26877,49.848114,145.47443,4.3632564e-05 457,609.15857,438.55963,29.988098,65.16107,4.2879812e-05 457,608.85815,1.536556,30.288513,67.79266,2.2799639e-05 457,3.3424335,131.26952,55.45198,204.72804,1.6989208e-05 457,1.2867082,245.39854,19.313272,124.17973,9.778399e-06 457,1.2004956,324.5861,17.926712,130.96094,8.981297e-06 457,3.8415935,311.55984,56.31432,167.45663,8.873783e-06 457,1.98313,56.6685,33.85497,179.715,7.511988e-06 457,2.3583205,415.9666,34.739902,80.028076,3.193548e-06 457,1.7670639,25.24561,57.262875,109.26216,3.000042e-07 457,502.25595,1.3594548,46.511078,48.209393,1.7468227e-09 457,530.1938,2.3549106,48.58783,51.91979,6.723666e-10 457,1.1615479,7.8700004,16.506096,76.51176,5.3343e-10 458,252.56755,209.15756,40.84935,74.2677,48.846397 458,517.4581,192.0086,28.970581,67.19183,0.18741247 458,521.6267,172.55539,47.961,120.0863,0.12709033 458,600.60876,172.70436,37.76233,194.51604,0.12701306 458,483.16153,208.30867,32.259613,89.02672,0.07648581 458,613.28845,351.90598,25.22406,50.608032,0.024499895 458,497.4713,176.06198,38.51355,103.11688,0.024465865 458,29.890587,201.25935,44.917747,60.88652,0.02299209 458,613.0703,99.40201,25.96045,66.957,0.015223873 458,283.63757,190.38008,24.528503,45.032837,0.014780069 458,620.8324,197.59468,18.31427,63.63246,0.0070842323 458,465.69138,219.06854,31.626343,85.337616,0.0053069363 458,621.98315,74.2861,17.163513,55.883514,0.0026988725 458,508.29245,209.08482,20.225006,49.52263,0.002234137 458,614.53455,282.51886,24.612122,100.594086,0.00086673297 458,473.9677,166.93501,79.87793,184.84413,0.00046245172 458,607.49603,439.22934,31.650635,70.187805,0.00036352055 458,601.42413,319.7507,37.34503,160.64294,0.0002863227 458,456.34195,354.29666,83.062775,136.02576,8.870549e-05 458,225.04776,174.40558,100.71872,166.82309,5.9564518e-05 458,604.4481,43.582535,34.698547,172.05049,3.3694974e-05 458,1.8497494,120.148705,28.507557,136.70883,2.2291631e-05 458,610.0365,1.8069987,29.110168,112.222534,2.0626145e-05 458,504.02606,413.69742,76.22656,82.35062,1.8972394e-05 458,1.0669019,292.93198,17.438616,124.41229,7.2527178e-06 458,1.5495182,342.1093,33.48084,147.63788,5.3950907e-06 458,1.0620304,423.29205,16.850391,78.23947,3.6827548e-06 458,554.0695,37.56133,45.50354,149.741,1.4741867e-07 458,2.0361035,10.134427,37.9752,79.41111,1.7531855e-08 458,586.1285,3.7534473,45.1438,55.146748,1.565144e-08 458,523.55347,1.5161752,45.5188,51.57339,2.6670608e-11 458,100.03409,0.0,47.387848,53.07278,2.7342129e-14 459,592.86084,199.71414,40.043945,122.486084,2.387858 459,158.19583,191.5379,28.462006,53.243164,0.3798111 459,463.84552,199.39828,31.477081,59.58069,0.08244142 459,611.0877,228.06172,24.025879,63.389206,0.037700266 459,412.81113,223.7687,26.02002,57.066376,0.0067945747 459,621.6369,252.93668,17.509766,56.346863,0.00604202 459,143.81609,178.24875,26.320908,59.68672,0.0027031559 459,562.6989,135.20744,75.43823,258.4214,0.0019418219 459,577.3729,216.27876,35.52411,84.10817,0.0017110689 459,466.86627,381.04318,46.564453,106.79773,0.0015304318 459,608.536,45.545395,27.416382,74.25879,0.0014398685 459,619.79785,96.44427,19.348816,68.24183,0.0007952109 459,584.5809,388.39258,52.88629,113.13248,0.00076947437 459,621.1825,142.39754,17.964172,62.61264,0.000651835 459,401.41037,191.9498,40.97824,124.57739,0.00036296766 459,610.0759,104.16086,29.07074,170.80338,0.0002855736 459,458.03433,340.58115,123.779755,157.0458,0.00024841804 459,413.51596,243.89394,41.29013,106.617355,0.000239075 459,609.89233,226.56375,29.254333,186.69583,0.00011392342 459,557.1263,438.9557,44.644226,68.0401,4.760733e-05 459,519.01886,252.55579,79.4353,209.80408,3.0087373e-05 459,1.3791863,161.72757,18.966599,129.27194,2.8251916e-05 459,514.39624,434.23965,52.327087,66.677765,1.417183e-05 459,595.8987,0.16315755,43.247986,206.99966,9.9359295e-06 459,3.2296274,199.80476,58.355312,231.88686,9.112124e-06 459,604.0124,1.0577507,35.134277,73.05623,7.9040165e-06 459,1.1569296,244.76138,20.07826,127.29266,6.984216e-06 459,1.105669,389.62756,19.281895,109.00745,6.2586523e-06 459,3.9322412,397.6919,55.70411,98.94995,6.090324e-06 459,1.6767204,303.54453,32.090996,178.71558,4.56914e-06 459,2.2025423,87.57479,32.218723,172.21436,1.5105235e-06 459,1.3411231,19.309036,18.626377,143.52643,7.69891e-09 459,576.3545,2.7850685,47.888306,59.98257,2.2884163e-09 459,513.0613,3.4287827,42.200256,46.332355,9.1877735e-11 459,544.89044,4.218703,45.188293,51.807175,8.834211e-11 460,437.00995,210.5766,29.334381,66.52811,0.1555864 460,43.06506,210.1684,40.788143,67.369995,0.13017438 460,618.36145,253.65802,20.785217,97.07001,0.020596575 460,361.35416,210.87775,22.94873,48.809357,0.0039430177 460,584.8204,334.33765,52.347107,158.27216,0.0032863275 460,545.5198,157.30368,37.771362,89.51619,0.0030124518 460,604.11,432.24475,35.036682,77.99933,0.0029565438 460,611.38416,186.31017,27.164795,121.44017,0.0012495414 460,347.80316,209.32985,23.896912,50.87593,0.0008304238 460,601.80585,219.19966,36.18396,207.88234,0.00057291007 460,492.65292,208.89595,43.332367,134.47218,0.00051029085 460,559.4888,125.69124,46.019836,156.26918,0.00032941165 460,620.75836,57.813164,18.388306,59.512474,0.0002649063 460,523.3086,137.06844,42.739014,137.63774,0.00022290576 460,1.315105,208.07106,18.907387,130.08083,7.690642e-05 460,1.6038159,146.51347,19.26867,86.106735,7.669225e-05 460,3.8314357,111.76966,59.401268,201.08624,5.9161102e-05 460,566.94257,434.38367,48.3219,70.79886,3.2294985e-05 460,515.6457,108.81055,26.415833,65.40776,2.4780516e-05 460,610.76,31.68657,28.386658,165.05612,1.9056863e-05 460,513.0723,216.01857,36.1474,74.40355,1.7935863e-05 460,1.2576286,353.65445,18.171734,126.51614,1.4544284e-05 460,597.20544,0.0,41.941223,93.690994,8.217576e-06 460,429.26187,427.0072,77.420685,72.06967,7.793032e-06 460,1.7706267,269.83865,33.475037,185.21136,7.735837e-06 460,57.979885,455.28027,44.56206,49.418274,6.907365e-06 460,490.66757,380.5327,119.20651,114.1499,5.7246816e-06 460,3.7174268,392.78333,55.5854,99.542114,5.5292926e-06 460,76.96677,423.20953,73.270325,75.362976,4.3222467e-06 460,473.24615,422.46027,76.742615,74.69037,3.1442405e-06 460,534.6482,450.95694,41.98242,51.667908,2.4004949e-06 460,1.4092985,440.04703,21.644466,59.898865,1.7855235e-06 460,257.2365,418.06213,72.804474,79.179596,1.4188755e-06 460,145.92662,418.01633,73.21399,75.36536,1.0273621e-06 460,359.83038,421.94373,72.26941,78.13452,9.0918763e-07 460,318.10455,421.1827,73.85715,76.93643,7.6290735e-07 460,2.674777,19.039284,57.7012,119.96993,8.116823e-09 460,1.0718311,9.337528,19.7522,53.098515,2.2075126e-09 461,576.89343,59.701706,27.301453,64.924446,0.5775363 461,425.66245,226.07657,35.134705,82.28366,0.51785827 461,84.50604,210.4186,24.753502,45.42308,0.047563005 461,583.34827,214.75693,52.821228,195.26505,0.041518155 461,12.942883,199.08662,28.446,55.05255,0.016887384 461,609.9321,81.74922,29.214539,123.43005,0.01487786 461,586.7493,237.54819,32.7724,76.6991,0.011129114 461,621.93994,120.140755,17.206726,50.622993,0.009548509 461,566.3574,309.98022,34.90497,82.27951,0.0048161303 461,585.87604,72.077644,32.199158,104.40894,0.0042345873 461,581.7499,391.7133,55.531128,105.80136,0.0035255915 461,620.85785,73.39634,18.288818,60.150826,0.0024827644 461,604.33844,243.80432,31.046082,80.60922,0.0021209226 461,537.6537,315.97568,78.04578,161.68518,0.0020307219 461,548.2607,179.41011,38.56421,73.95192,0.0012759821 461,98.0494,206.1796,26.85852,53.92035,0.0010540977 461,341.01218,223.50081,23.829132,49.24611,0.0008745169 461,607.0738,438.4794,32.072876,72.46396,0.00073657685 461,565.03674,30.043777,74.109924,323.4225,0.00022225812 461,313.7845,224.81271,24.314575,47.18457,0.00019645182 461,517.636,83.62892,41.843323,77.50958,0.000101171805 461,1.3661935,209.73624,17.844175,134.72284,3.5776964e-05 461,2.2917285,161.44836,31.15105,131.80301,2.5896108e-05 461,409.5335,348.33707,77.875824,142.03299,2.1888634e-05 461,546.1029,429.04727,51.141724,74.16916,1.9143787e-05 461,360.5762,298.20728,86.56375,184.48941,1.2250072e-05 461,583.64813,16.390547,55.498535,128.94496,4.7990056e-06 461,1.3771403,380.0839,19.07668,120.000916,4.047354e-06 461,4.002038,341.43588,56.336807,147.5769,3.2941552e-06 461,9.818347,112.717735,43.772858,117.198784,3.1274037e-06 461,1.0935107,281.74588,16.086958,128.38712,3.0781487e-06 461,2.0337443,82.287025,20.722446,153.26959,1.7800683e-07 461,583.97284,5.307684,45.93878,51.11093,4.141663e-08 461,2.1955485,11.265472,34.64714,82.49558,9.230713e-09 461,552.1205,3.6056771,44.174194,58.01289,8.9825e-09 461,436.02484,1.877194,46.285156,47.372177,7.5142444e-12 461,395.62482,0.0,43.214874,46.78407,3.7667135e-12 461,481.81064,1.6283822,45.20523,46.91934,1.0415351e-12 462,61.89406,194.03961,41.554405,59.905624,8.693486 462,322.54044,198.92155,24.502563,47.374283,6.491053 462,409.5451,201.38637,32.32068,54.08757,1.579584 462,350.22778,207.36768,22.907196,52.44571,0.6141389 462,424.01553,209.03145,32.597565,70.89714,0.43682 462,439.00803,218.95949,33.875305,89.909775,0.024568342 462,502.72012,116.849754,27.338226,58.625084,0.023394972 462,157.27748,197.25523,20.678467,45.431076,0.014942491 462,463.42416,218.07178,40.085052,97.00586,0.007850209 462,103.3298,301.59262,44.042984,92.45657,0.0023596482 462,609.72986,201.44786,28.85785,102.42067,0.0017102666 462,5.982946,352.58008,82.33019,131.26968,0.00038714934 462,585.90204,160.89288,51.913696,230.29333,0.00035856658 462,507.44366,415.55124,90.0506,85.32727,0.00020145622 462,610.60596,403.39767,28.54071,103.42441,0.00017230287 462,415.92996,367.3576,47.587708,124.94458,0.0001205196 462,610.60785,69.24365,28.538818,155.67284,9.1119466e-05 462,587.4591,321.1631,50.992188,169.72125,6.68506e-05 462,2.5089169,140.24667,29.099417,135.20941,5.942868e-05 462,4.571242,168.4887,58.584564,266.5166,5.908081e-05 462,610.9944,257.4876,28.152283,155.8187,5.7011228e-05 462,384.0414,320.0345,113.08292,165.63028,3.4713146e-05 462,1.4223886,220.64114,19.19904,140.18884,2.6724661e-05 462,2.471079,293.39215,31.689371,189.68124,1.5636959e-05 462,609.23285,0.0,29.913818,63.601368,1.37414945e-05 462,1.4783049,381.99683,19.044853,113.30417,1.26727755e-05 462,3.9421208,419.93283,52.784092,75.743164,1.1125506e-05 462,577.5205,435.25504,49.0047,72.87091,7.424102e-06 462,2.153112,75.885056,19.300396,137.73476,6.28503e-06 462,586.1146,7.351706,53.032043,127.116035,3.029912e-06 462,2.6794841,17.209791,58.349617,121.49805,5.6048e-09 462,416.5258,1.4329623,43.710938,46.938484,6.40866e-14 463,423.34686,214.99768,26.609406,58.96106,97.92904 463,382.28766,210.89496,29.460693,49.51471,0.0987306 463,438.07294,224.92062,24.414581,52.44742,0.092291765 463,58.314564,203.47441,31.921436,60.401505,0.07858187 463,602.83344,180.46016,35.240234,105.56056,0.06875873 463,477.03232,244.6756,38.47757,100.181274,0.028218845 463,373.3068,226.1862,24.140717,47.297684,0.010539147 463,411.23224,191.40486,57.963654,102.468155,0.0043445635 463,521.4124,172.94565,44.261536,107.50156,0.0041755196 463,334.2418,217.92548,23.911346,46.9476,0.0016787972 463,615.0816,233.7416,24.065063,84.0157,0.0011511743 463,607.5344,80.142105,31.390015,159.98813,0.0009038692 463,294.53156,200.15393,45.273956,86.16824,0.000724207 463,587.66,187.4215,50.19098,245.40202,0.00042420215 463,2.591841,390.5595,52.864136,105.81998,0.00034670674 463,525.28015,150.30118,78.18512,184.1084,0.00022778218 463,611.8817,300.03275,27.264954,138.39569,0.0001662694 463,606.9795,434.74466,32.167175,70.3226,0.00012466196 463,4.732484,130.38162,56.097935,213.32874,8.561352e-05 463,1.082295,329.6312,19.539286,160.4548,5.9820577e-05 463,374.24042,144.96992,138.5166,231.58748,5.844788e-05 463,584.73535,382.08908,53.210266,113.53464,3.9529645e-05 463,1.429524,211.12392,18.450037,124.33769,3.4130677e-05 463,268.8997,177.5783,110.03009,197.07262,1.9523113e-05 463,344.66373,310.29517,84.660126,173.53006,1.9309875e-05 463,609.1538,0.0,29.992859,61.027344,1.6894011e-05 463,1.798772,233.54274,30.651644,191.61848,1.0725489e-05 463,1.5571159,124.17745,20.983679,153.57468,5.9479944e-06 463,533.95807,420.31192,84.93414,83.10013,4.707908e-06 463,458.12054,420.24152,74.93793,76.513336,1.1758002e-06 463,521.3225,4.523223,48.517822,58.3742,4.264023e-08 463,1.2480233,5.7368426,20.435925,61.859943,4.1165904e-10 463,483.02542,2.3143556,46.0524,62.695663,2.0915056e-10 463,444.03146,3.8007455,41.027924,53.15371,4.443474e-12 464,457.25955,212.42894,41.4693,87.682816,64.10731 464,386.31128,210.44427,32.463776,63.588226,2.1147883 464,363.74072,219.39427,20.630829,50.90013,1.6712865 464,50.829765,207.44667,32.352768,69.09981,0.19396426 464,374.13,222.1739,23.75766,45.85765,0.07831805 464,589.6765,120.23982,46.693542,133.09932,0.01924054 464,601.81964,377.41937,36.130554,70.4108,0.009613357 464,602.9297,0.0,36.21698,75.39742,0.005595158 464,554.03845,272.85855,48.106384,131.137,0.0034010059 464,623.5702,29.964376,15.576477,50.64634,0.0011703891 464,587.3345,184.42123,49.515747,246.75394,0.0010022176 464,613.689,84.49924,25.457642,107.65126,0.0007617947 464,276.96808,208.98738,39.256348,67.9294,0.0004916391 464,558.9571,37.502476,79.9574,271.5535,0.0003784372 464,177.54039,263.96454,88.71651,194.95609,0.00022265037 464,570.31683,345.3604,67.15283,141.44907,0.00015636228 464,605.80975,429.25992,33.336914,79.89206,0.00010016481 464,260.76526,176.47264,83.878235,190.94765,2.6423135e-05 464,1.206355,234.57555,19.101326,123.2719,2.1742666e-05 464,397.5758,86.808105,83.481384,201.40579,1.3732023e-05 464,1.7481755,134.04942,19.881647,140.73064,1.211172e-05 464,368.10785,327.7934,90.073944,154.82312,1.0415228e-05 464,1.5382967,420.06866,17.068382,82.98947,9.499502e-06 464,5.470918,208.49031,56.617054,207.6155,8.599192e-06 464,5.610143,360.60916,77.54577,132.55008,5.2411233e-06 464,1.1341814,336.0939,19.381027,133.33585,4.7583544e-06 464,465.02872,419.8429,74.70645,76.73132,1.4968487e-06 464,506.3172,420.80704,74.54645,79.479065,3.8192013e-07 464,1.8131104,26.58006,30.860947,133.73262,1.5378785e-07 464,516.33673,4.444969,63.088867,52.78429,1.7029859e-09 464,1.3847526,8.104174,22.026045,59.09247,1.0786148e-10 465,104.96142,209.70099,24.64988,56.49228,21.987825 465,400.00027,214.71228,23.833496,50.13037,4.3796406 465,438.43304,219.8681,24.033997,46.506317,0.25074863 465,563.9985,223.01178,46.526306,112.91611,0.013595178 465,608.2693,221.79576,30.87738,112.40877,0.007959244 465,591.91003,65.122086,44.221252,161.0751,0.005590747 465,135.98143,214.77136,22.889145,47.743225,0.005308561 465,619.4993,110.19899,19.647339,67.46634,0.000738857 465,619.977,67.989334,19.169678,61.508423,0.00033449734 465,620.114,171.11731,19.032654,64.76012,0.00029307432 465,587.04175,202.8694,50.603577,223.22273,0.00028581335 465,612.10266,0.0,27.044006,48.172665,0.00014832956 465,580.46094,114.59508,36.554443,86.05235,0.000111596855 465,611.5161,401.49002,27.630554,106.87088,9.96219e-05 465,376.7585,298.0367,112.59546,192.1922,8.4636915e-05 465,619.20337,17.050592,19.943298,73.60897,4.1598214e-05 465,495.80844,253.76134,113.26517,223.43285,3.5582878e-05 465,605.616,0.0,33.53064,150.20735,3.554245e-05 465,2.6264763,183.18604,32.970913,159.47787,3.220816e-05 465,247.65295,176.7282,78.332245,184.15373,1.4567995e-05 465,568.9291,359.0192,70.16223,135.02237,1.0204237e-05 465,449.25424,421.18802,85.9332,80.77637,1.01716305e-05 465,0.9045215,342.58994,19.675344,131.14929,9.318821e-06 465,0.9660421,272.04117,16.577396,131.63443,8.265441e-06 465,512.524,411.05658,77.56842,87.752716,7.01444e-06 465,3.7543588,338.50616,57.340965,149.38583,5.4331126e-06 465,2.595525,53.665073,19.630125,87.12033,5.238375e-06 465,1.0109717,421.89728,16.18183,79.53357,4.288464e-06 465,359.32855,101.59553,63.83365,153.36462,2.49914e-06 465,2.0138826,132.83656,22.762577,132.463,1.9595782e-06 465,382.4899,125.81828,36.02954,77.7354,4.8769664e-07 465,3.0895183,29.438751,41.468258,137.68736,9.5615896e-08 465,564.0067,3.481914,45.516296,61.796406,5.354915e-09 465,536.5748,3.0764096,47.447083,61.455833,9.98226e-10 465,511.44366,0.20141765,43.886597,51.386,5.118894e-13 466,246.33917,221.34702,23.742096,47.050385,99.58364 466,359.29828,225.4176,25.290466,45.020294,97.95409 466,87.37276,220.40532,39.451424,65.779465,11.914802 466,422.61975,216.96431,26.338593,58.282303,6.9588065 466,500.68735,211.55563,44.358856,90.57471,3.9857018 466,436.48492,228.19594,24.416962,46.4756,2.4272726 466,76.89508,221.69122,26.51194,52.141388,1.0712838 466,137.63759,222.5284,24.032791,47.284775,0.32525897 466,110.410576,219.88568,29.507103,58.720367,0.12146558 466,618.5255,48.36519,20.621155,64.91429,0.0070973905 466,610.1072,358.0701,29.03949,148.78857,0.0017235548 466,550.6334,378.55606,85.010315,116.06641,0.0008404177 466,607.9929,177.97847,31.153748,137.37086,0.0007982304 466,600.5583,223.0513,38.58838,219.20871,0.00040568135 466,588.47894,442.9966,42.44513,66.280334,0.00027515728 466,228.16948,189.81305,58.359756,100.48865,0.0001252062 466,598.57697,20.279232,40.569702,246.67368,0.000116631614 466,403.46173,157.74066,95.528534,203.98837,0.00010592969 466,536.7095,59.339233,39.650513,68.13843,0.0001005699 466,47.92019,33.73373,29.421638,75.59447,6.8611305e-05 466,343.40567,180.7857,60.176086,118.17642,2.8253478e-05 466,1.5302719,218.95987,18.960312,125.9751,2.8201091e-05 466,607.87524,0.0,31.271423,69.03665,1.0748467e-05 466,217.67336,165.27196,91.68623,225.72087,9.105834e-06 466,316.31073,149.97284,140.53064,217.97299,6.5832887e-06 466,3.1686516,109.67458,33.124954,187.9989,5.9236077e-06 466,4.331932,196.81818,56.543427,203.49078,5.080181e-06 466,1.0153931,382.72397,19.23362,114.467804,4.8379916e-06 466,1.0608712,287.10455,16.680689,131.2963,4.230957e-06 466,4.0802884,399.73825,55.877827,95.76395,3.6619517e-06 466,386.85046,106.49687,47.181335,155.88689,1.9104932e-06 466,2.6517205,30.850607,29.656874,137.23883,1.4438444e-06 466,506.116,417.71216,80.289825,78.58359,1.1264162e-06 466,1.5924667,7.7640595,20.945417,61.96128,1.2407723e-10 466,59.20245,1.3467969,43.192043,45.044106,1.3606005e-13 467,319.8539,215.17291,29.229187,53.40204,99.90402 467,199.65247,219.95576,23.895798,50.06569,99.52742 467,412.46658,213.86588,21.933716,50.191956,94.06301 467,131.52237,212.20012,27.620209,53.42488,85.78259 467,74.87913,216.88956,40.407402,66.854095,74.03131 467,448.965,221.44678,22.505005,45.325714,3.380321 467,468.98325,212.00397,34.751495,69.46246,1.1404176 467,10.643119,219.12883,45.808575,73.21077,0.06949343 467,618.71515,226.71281,20.431519,63.309982,0.005776248 467,1.6352849,211.21213,20.852007,82.720764,0.002603334 467,600.30945,207.68185,38.66156,202.49835,0.00085397623 467,610.44073,320.23016,28.705933,134.16583,0.00035027112 467,308.02164,196.42607,59.989746,93.186325,0.00027326655 467,610.26324,112.51641,28.883423,167.00107,0.00025330845 467,411.5916,166.65701,82.023346,168.617,0.0002484614 467,584.5132,382.1736,52.341675,119.608734,0.0001400121 467,608.2434,436.48236,30.90326,67.997345,0.00011726622 467,2.4286833,107.34121,37.92853,188.68839,5.9827595e-05 467,4.357632,207.82812,56.009556,216.31433,5.836049e-05 467,608.4656,0.66961265,30.681091,62.33294,2.625454e-05 467,114.437584,179.42839,74.594734,151.61873,1.2879304e-05 467,532.3139,337.38916,68.872314,137.09055,1.2552528e-05 467,1.0776335,265.03787,17.70336,136.38443,1.031891e-05 467,0.9681934,347.713,18.341318,129.23434,7.284105e-06 467,585.05457,11.214818,54.030518,115.30213,6.866185e-06 467,182.81506,180.41719,71.72624,156.09755,6.3876223e-06 467,274.22003,154.7388,143.77396,230.8573,5.9045215e-06 467,3.7681608,393.9139,55.966923,99.63141,4.313599e-06 467,553.3011,437.83417,44.918762,65.04721,2.9131766e-06 467,498.76987,413.86005,79.52951,80.37262,2.6494338e-06 467,408.81018,155.0845,37.891144,96.05394,2.3109387e-06 467,1.6763037,34.9859,19.603088,148.51137,1.0183265e-08 467,0.62841636,3.4310548,39.966785,91.02495,2.3311525e-10 467,16.318846,0.0,44.824883,54.795185,9.554596e-14 468,271.93036,215.39561,30.177277,58.411636,99.941376 468,124.12903,219.87311,29.468033,61.192627,99.7686 468,109.73033,212.31873,25.744034,53.017914,99.12906 468,451.19708,217.42711,31.904388,51.72484,99.08931 468,438.29288,215.76842,25.561768,53.31508,69.03227 468,84.063934,214.91125,26.590027,52.355713,60.95174 468,70.288155,209.99469,25.117157,51.97522,1.909597 468,546.7908,199.81532,41.85437,78.41194,0.3571919 468,602.46375,221.33336,33.885437,65.94838,0.047329273 468,1.8078679,222.34105,30.721178,84.23305,0.01613063 468,596.81165,137.35701,40.89093,199.39018,0.010875371 468,434.0527,189.39378,60.53824,109.357834,0.0050683077 468,612.2747,109.206055,26.810059,95.315796,0.0011192716 468,563.82434,408.09897,73.970764,96.64725,0.0007401681 468,610.5542,264.64432,28.592468,160.0633,0.00030675106 468,87.352974,188.03467,78.500465,133.02704,9.7927674e-05 468,3.1692123,161.6754,58.66122,192.40059,5.2807594e-05 468,409.52094,133.69048,138.24146,235.7834,3.4761648e-05 468,596.73157,0.0,42.4151,203.04553,2.3649613e-05 468,1.1298543,274.31125,16.317686,143.27603,1.7419583e-05 468,243.5155,183.25511,98.38614,198.21431,1.3427129e-05 468,1.6286589,334.05554,32.87745,155.4288,5.3040167e-06 468,2.8148975,96.44874,37.268913,110.98284,3.08665e-06 468,1.5446575,445.19815,21.436964,57.975403,2.541131e-06 468,583.93396,0.0,46.22046,61.294743,2.2652287e-07 468,480.94315,15.827975,88.67679,190.89362,6.8684585e-08 468,1.5609107,10.657214,19.21795,162.97227,1.0732426e-09 468,1.0340605,6.4993687,10.868578,88.31419,7.99348e-10 468,1.6140121,4.570378,32.048428,68.53781,7.519825e-11 469,205.27734,211.47166,39.22615,70.5807,99.89687 469,63.848694,206.93182,34.15692,62.244476,99.87479 469,462.48776,216.09178,24.464386,54.868332,99.87393 469,37.4249,207.3036,34.332592,59.873825,94.40198 469,11.081874,212.41862,39.139915,70.81096,93.68419 469,513.2483,217.89864,38.067017,76.34871,92.425514 469,1.7853255,208.23921,21.335169,83.48897,0.16018663 469,524.8259,202.94301,23.228699,47.09497,0.038346704 469,446.48804,186.1063,56.376343,108.479614,0.0033402368 469,3.4477377,176.8701,58.396168,165.66469,0.0014891372 469,610.12384,112.28136,29.022827,139.23676,0.00049662753 469,186.59082,188.25323,80.30267,133.29251,0.0004684901 469,403.34415,145.70732,143.82162,228.1418,0.00016343922 469,611.3456,232.02254,27.801086,144.73882,0.00012151872 469,583.9019,388.64673,54.051758,112.55673,9.702744e-05 469,45.355602,179.65726,79.921646,140.81186,8.71778e-05 469,613.2401,0.0,25.906555,45.54657,5.785957e-05 469,531.74603,283.2047,93.93463,194.64322,3.1098272e-05 469,0.9859782,339.1,19.656736,133.005,1.0797947e-05 469,607.49225,0.0,31.654419,137.5188,1.0217597e-05 469,4.7957554,393.9405,54.931427,99.653595,3.618764e-06 469,1.2081373,443.1123,21.624737,59.388214,1.9471788e-06 469,1.8715446,78.714775,18.894894,158.42593,1.8150567e-06 469,1.8341341,13.306758,35.147266,78.89189,4.0135464e-09 470,484.72073,218.99045,27.023499,61.386658,99.938034 470,415.80524,209.73366,21.142181,47.019333,99.64605 470,84.13063,216.19435,51.292053,93.08287,99.62307 470,377.5635,211.24626,23.641785,47.0392,95.850296 470,4.325385,198.47966,36.27587,67.8867,22.323462 470,597.0953,239.49683,35.909973,64.99078,0.40673438 470,499.96902,224.13792,22.56137,45.58815,0.22042736 470,0.551296,197.43922,12.897957,71.36598,0.08755164 470,465.00772,146.61737,42.035767,126.41843,0.07290445 470,619.90625,253.00201,19.240417,62.62326,0.02720311 470,450.03934,151.85251,91.34909,217.71964,0.0025023178 470,615.6173,73.02793,23.529358,91.63329,0.0024801968 470,616.97833,209.47954,22.168335,73.22218,0.0016204016 470,606.96075,429.6349,32.185913,77.229645,0.0013863551 470,586.97046,191.16483,50.86493,201.41046,0.0011008163 470,3.6135142,152.7242,54.226974,193.64888,0.00036813968 470,1.6937981,131.22987,21.219454,151.4058,0.00032746783 470,602.1949,93.98265,36.472046,209.3944,0.0002779911 470,586.5554,322.27432,51.698364,171.4949,0.00024437832 470,292.44165,216.0122,23.847351,47.513916,0.00023764107 470,361.03223,168.15752,82.38019,169.30827,0.00022606668 470,59.324474,189.56633,101.01132,173.88145,0.00015645984 470,491.7452,316.29623,53.47116,109.462524,0.00015601135 470,613.7324,0.0,25.414246,45.0489,0.00014025159 470,454.66766,281.78903,73.2478,161.25717,7.471783e-05 470,1.0184798,229.58478,20.173567,156.43655,5.284336e-05 470,542.4395,21.782045,26.87268,73.43555,3.3607295e-05 470,595.29895,21.525248,40.575745,154.94603,2.399072e-05 470,556.8689,24.003181,28.109009,78.35065,1.8942203e-05 470,1.2937443,364.5636,19.287083,126.67291,5.7084135e-06 470,545.7283,413.96268,85.57825,89.5217,4.369194e-06 470,4.083148,396.30142,56.095764,97.50244,2.9712344e-06 470,579.38635,1.670586,46.319824,63.33078,9.293147e-08 470,1.8312842,16.053144,33.62112,73.17933,6.6920935e-09 471,528.97595,224.72308,33.463623,77.73587,99.89531 471,430.9652,216.64435,23.415314,51.275543,99.878624 471,463.28314,216.0996,23.909424,53.21248,99.82437 471,383.17715,214.88213,24.149292,53.900803,99.56202 471,407.6669,219.97604,20.610107,45.348145,87.705956 471,520.3573,216.53343,24.238708,48.464584,74.37882 471,510.59595,155.86424,46.118286,136.90395,0.043194883 471,615.99475,167.0687,23.151917,85.41519,0.0017085972 471,593.7301,433.31497,45.416565,77.831696,0.0015774138 471,587.743,315.20053,50.272278,181.50052,0.00089851674 471,445.931,187.70331,58.54532,104.786316,0.0006539832 471,365.13922,193.23314,62.480255,99.14189,0.000614823 471,596.7291,86.244446,41.24951,208.70728,0.0005616201 471,610.6062,230.23694,28.540466,137.79977,0.0004765821 471,410.35263,196.3143,59.97931,97.203,0.00040644463 471,481.13318,132.68819,125.41284,246.01897,0.00013943671 471,605.2137,0.0,33.932983,72.986984,0.00012517243 471,371.56714,145.40352,149.47498,230.07216,0.00011195459 471,367.36807,420.83505,88.643616,86.482605,6.036179e-05 471,1.1834432,318.02866,18.693445,137.62296,3.2730746e-05 471,1.2231356,242.56276,18.61254,132.7039,2.2911938e-05 471,1.590118,163.45529,18.67974,134.02594,1.6971784e-05 471,257.8371,422.95825,77.66235,76.50415,1.2718007e-05 471,3.6305127,125.32276,57.402092,202.47449,1.1613985e-05 471,322.56583,422.5948,83.29883,78.993805,1.0550348e-05 471,3.7267318,289.56674,56.71905,184.09384,1.0119693e-05 471,301.45288,443.92038,42.60196,58.601807,9.463189e-06 471,545.73016,413.13834,82.89325,92.737885,8.332301e-06 471,156.91719,419.98862,78.198746,80.53894,3.3130714e-06 471,213.92076,421.8134,77.050705,78.37564,2.628675e-06 471,428.898,419.05075,76.709656,80.131226,1.9074641e-06 471,526.47614,440.35898,44.297974,63.570404,1.172951e-06 471,2.2105598,413.9604,35.708687,86.10379,9.456618e-07 471,1.8138102,14.987774,34.684956,72.034485,5.4803353e-09 472,459.0924,216.83128,26.58725,58.136826,99.93662 472,593.2552,210.07506,36.838135,76.251236,99.92155 472,512.5822,212.98245,30.190369,64.86951,99.9057 472,429.74796,217.0358,24.859558,57.107452,99.86326 472,396.19025,213.88084,26.512817,64.10936,99.79732 472,412.9791,214.97577,26.50711,61.047882,76.540405 472,587.04297,128.40506,46.8562,202.7586,0.097165525 472,622.5711,211.91716,16.575562,63.04283,0.04619573 472,81.072174,220.43498,24.975433,48.81108,0.025957594 472,384.93262,203.06894,65.222595,90.24182,0.005483157 472,608.02496,214.00558,31.121704,148.95718,0.0035616285 472,544.3527,79.166405,24.950134,63.190468,0.0031163373 472,438.85266,201.91095,64.290955,86.153656,0.0016456832 472,35.480793,227.75397,24.777508,45.206116,0.0008426616 472,494.4638,171.60667,71.99774,150.26057,0.00047282098 472,610.16974,309.57526,28.976929,144.39969,0.00045327278 472,596.733,104.49348,40.689453,107.058266,0.00043985742 472,400.33636,145.18399,154.5061,228.69836,0.00029469034 472,585.63275,2.875521,52.682495,137.61626,0.00025298036 472,607.4873,0.48903647,31.659363,62.49345,8.568197e-05 472,608.95325,440.7427,30.19342,63.038757,6.0604565e-05 472,584.29114,393.0529,54.827454,101.25629,4.8272068e-05 472,2.4777036,167.42479,36.632084,108.43126,3.7852853e-05 472,0.8748324,315.06915,19.175611,138.34262,2.2476366e-05 472,1.3840504,247.0337,20.586662,105.25719,1.2623464e-05 472,3.473327,324.66754,57.6314,158.37466,7.568595e-06 472,1.9622315,420.90027,34.820484,76.993805,2.6954147e-06 472,1.675324,12.962865,33.381195,72.64901,8.59131e-09 472,473.47507,3.762178,46.99588,53.60884,8.4942103e-10 473,428.0325,208.48917,36.034546,88.02881,99.967285 473,498.73383,218.67735,30.127563,69.77547,99.90429 473,467.39453,216.7044,36.426422,74.76163,99.882324 473,603.0527,215.58324,33.13086,74.68178,80.87066 473,596.76154,91.347916,41.450134,220.27,0.22602975 473,623.27954,234.93123,15.867126,55.371872,0.14043081 473,69.77644,169.3652,38.21881,92.08768,0.0161995 473,562.68036,125.08542,54.897095,148.12021,0.007950983 473,610.22064,60.480484,27.136536,73.633896,0.004407333 473,454.19315,190.30708,74.57248,140.80922,0.0018096894 473,2.3414226,152.92986,36.117527,178.25093,0.00016705456 473,610.10474,238.57698,29.041931,169.05205,0.0001653871 473,611.22614,370.04633,27.920532,129.55576,8.835664e-05 473,1.2116952,229.95776,19.355352,136.99515,2.811162e-05 473,1.5747991,317.0806,33.05903,169.54025,1.1717282e-05 473,608.6616,0.0,30.485046,70.083984,1.0055927e-05 473,1.4376416,13.685531,34.799248,72.47044,5.681759e-09 474,506.63132,207.01738,51.291107,123.200455,99.94429 474,568.39197,212.20018,35.456116,99.86784,99.71745 474,583.2046,216.0405,47.293823,133.71838,99.58092 474,535.5166,216.01881,25.218567,75.14522,0.28709507 474,609.5072,217.55734,26.411682,83.44699,0.111320466 474,618.54913,258.41745,20.597534,72.94919,0.012267868 474,326.79565,226.15572,24.088745,48.70793,0.0044606607 474,524.04407,145.8455,109.75311,253.52016,0.0035795937 474,618.6405,44.599716,20.506165,76.89735,0.0019790516 474,611.47675,278.28012,27.518005,147.80875,0.0005748469 474,614.76874,105.77486,24.37793,89.86282,0.00043843474 474,2.4593263,147.83525,29.608702,157.15047,0.0001252952 474,585.4109,0.0,53.73578,152.67332,0.000115131945 474,478.41104,123.65999,36.84677,74.19859,0.000110802466 474,1.5137142,275.76404,17.872084,69.36655,9.37224e-05 474,599.84015,66.73996,39.30652,205.7771,8.2942366e-05 474,609.39087,438.57693,29.755798,65.85788,2.995327e-05 474,1.8256153,266.7995,33.091934,186.73181,1.8848392e-05 474,585.65765,389.40152,52.94812,101.809326,1.4457616e-05 474,1.1151497,364.7988,18.919235,129.58044,6.4519563e-06 474,3.756662,398.6598,56.65846,95.55267,2.9842522e-06 474,2.0240893,83.80002,19.02009,144.32262,2.1062215e-06 474,494.50928,2.9888444,44.86035,56.349827,1.2225045e-08 474,2.3640707,13.972494,33.97776,74.433426,2.9161242e-09 474,467.74948,0.0,45.489716,60.948166,4.4543546e-11 475,420.36765,204.72302,34.56888,71.29578,0.19292681 475,399.77945,210.43237,23.249054,52.398132,0.11588709 475,451.14917,229.05896,21.475159,48.729523,0.015023927 475,379.4732,212.18253,23.590118,45.979004,0.00901534 475,550.9226,219.45746,26.847473,54.852264,0.0017569488 475,535.5412,118.892136,46.967773,150.12175,0.0016598658 475,565.3209,422.94437,73.42633,80.57019,0.0005243601 475,10.752104,203.48607,25.672483,50.549484,0.0005213503 475,620.42426,145.93712,18.722412,66.70575,0.0005209786 475,547.6238,149.8834,28.247314,60.899475,0.0003871789 475,599.41223,332.8567,39.21765,153.79813,0.0003414807 475,616.99493,210.86316,22.151733,85.07645,0.00033004623 475,316.6885,232.12253,33.41858,73.59775,0.0003057761 475,608.6298,96.82882,30.516846,159.35986,0.00028876463 475,620.1792,28.468592,18.967468,61.327072,0.00020090138 475,617.5877,302.41278,21.55896,81.20462,0.00013244113 475,329.07803,224.45961,45.320038,112.69771,9.664602e-05 475,291.72073,219.75894,40.60083,91.44275,8.219313e-05 475,608.2048,3.5463607,30.941895,129.6652,7.940157e-05 475,1.8751603,102.350426,30.5887,161.54245,7.630967e-05 475,273.90338,238.31735,33.59967,69.03772,5.8812548e-05 475,601.0244,192.55759,38.122253,207.94772,5.8039837e-05 475,3.7474284,197.80385,56.441376,239.11751,3.8595055e-05 475,1.352347,232.60136,19.345337,136.04948,3.4789275e-05 475,509.46106,81.05229,107.75818,230.86922,2.0836585e-05 475,1.3624423,442.40204,22.217646,59.494232,1.8798091e-05 475,355.91403,246.56142,35.252472,79.87163,1.8031527e-05 475,255.34967,237.76024,32.80844,68.902664,1.4976432e-05 475,511.90518,413.8097,89.48959,81.14111,1.2129891e-05 475,3.8909814,429.7929,59.988346,68.96597,8.816911e-06 475,0.87633306,316.80383,19.218895,142.37479,7.5571847e-06 475,249.2085,199.12662,78.12598,145.04504,5.437529e-06 475,375.0719,111.409134,36.71408,79.25394,4.5807974e-06 475,289.01065,196.15591,116.36249,195.6926,3.919076e-06 475,43.57394,427.7755,85.63039,67.918976,1.907999e-06 475,2.4987843,15.333262,55.271835,120.56193,1.27589415e-08 476,425.67514,216.63719,21.445038,48.407303,77.622375 476,372.89023,208.50264,37.315704,76.51854,8.593849 476,463.70526,213.44716,37.51242,100.79213,0.6596692 476,602.24567,115.38261,35.30951,179.12512,0.43735617 476,404.7779,204.94212,33.66873,63.25151,0.123071924 476,612.58276,213.12859,25.773254,71.05916,0.036395665 476,417.80646,203.323,40.781616,91.26639,0.0156839 476,598.50006,51.059135,28.233948,77.73228,0.014841303 476,32.112457,234.53621,23.83667,52.969955,0.009864065 476,618.58655,115.51305,20.56012,71.74773,0.0023959766 476,584.7311,44.508583,27.150085,72.56879,0.0008447817 476,586.8068,176.32634,51.17505,239.6711,0.0007720434 476,589.7472,34.65775,44.12384,176.82445,0.00072436035 476,555.9303,262.2947,44.44409,102.72104,0.00067156757 476,611.3983,359.94058,27.748352,136.20844,0.0002192897 476,615.85876,42.4584,23.287903,109.762665,0.00019393083 476,397.40662,170.30907,102.27481,185.15077,7.979738e-05 476,4.9134765,218.03519,55.297092,208.08008,6.222574e-05 476,2.480316,169.11682,31.57177,168.48502,5.5047105e-05 476,1.2543132,256.22995,19.428097,138.4078,4.3525673e-05 476,614.6479,0.0,24.49878,45.37818,2.0859727e-05 476,1.3288729,323.28757,28.270828,141.90634,8.934038e-06 476,460.3136,418.95386,79.45154,76.816986,7.677804e-06 476,571.88116,37.03407,24.871948,63.232464,3.4244e-06 476,541.2371,60.70503,34.18994,87.24893,3.3755175e-06 476,5.472054,355.81268,79.18239,129.78519,2.3421876e-06 476,393.4069,77.59263,42.51114,115.05944,1.4561625e-06 476,1.6950505,417.41272,35.58893,80.15161,1.2690439e-06 476,590.42755,2.1003451,45.45343,65.70974,1.0452638e-06 476,513.1277,420.49673,78.38098,76.74402,4.5397493e-07 476,1.7570622,14.739186,34.182217,72.452484,5.367861e-09 476,453.3789,7.5924172,43.53595,52.214413,1.6215421e-09 476,552.0194,6.7311006,43.366943,53.468086,1.2019884e-09 476,511.20694,5.82868,43.5195,51.662415,8.5099566e-10 476,389.54346,1.0540869,47.507904,47.24426,1.8059951e-10 476,420.6892,2.6281772,49.15564,47.949966,7.01714e-11 477,470.50674,217.05042,31.551178,62.291504,11.619938 477,322.99533,214.32352,30.490723,52.749023,1.8158635 477,440.04767,218.23488,22.307404,46.652695,0.1389596 477,602.85724,216.01224,34.93634,88.170685,0.084792756 477,389.01324,219.16597,34.194702,75.19621,0.024080466 477,372.42377,193.96306,30.24585,58.884506,0.017417444 477,612.5947,327.11676,26.493042,64.97238,0.015458699 477,452.84262,208.36513,31.82605,65.21446,0.006659188 477,621.46106,238.9366,17.685608,49.68846,0.0017747518 477,598.1005,61.019684,38.473938,164.71387,0.0016863645 477,587.16864,168.87141,50.987183,244.99797,0.0015852555 477,610.6313,115.369225,27.660645,69.9286,0.0010087324 477,611.0245,354.26025,28.122192,145.29657,0.00090983394 477,615.3998,158.82465,23.746887,104.327545,0.00041639156 477,491.6072,180.03568,33.742157,77.30109,0.0003550251 477,610.8634,40.047844,26.975403,72.64243,0.00010414389 477,566.20337,9.701837,72.9433,299.58627,6.77065e-05 477,624.27216,35.410633,14.874512,45.58894,5.191313e-05 477,383.9995,137.9199,134.38708,215.24895,5.175697e-05 477,612.93494,0.0,26.211731,49.0154,5.0529492e-05 477,1.0394776,243.78766,18.265121,122.15115,3.157487e-05 477,554.58264,378.3686,81.08179,119.07678,3.069841e-05 477,1.5484668,423.90375,17.494831,75.5108,1.3616456e-05 477,4.001034,207.44556,57.262367,211.15964,1.2110195e-05 477,1.7295281,279.50964,30.412165,177.82996,1.1041285e-05 477,1.5081381,179.36983,18.440863,118.56575,9.428921e-06 477,419.5019,420.3377,70.125946,77.55023,5.5806795e-06 477,3.715643,398.6038,55.107254,96.649506,4.0286386e-06 477,573.86127,435.67615,44.459045,68.050934,3.0354593e-06 477,346.66632,424.62418,69.1015,74.11963,2.8508214e-06 477,458.04272,80.88943,34.5849,74.81635,1.8088807e-06 477,1.2632633,90.37644,17.280998,150.3985,1.3142643e-06 477,542.2137,450.71054,41.58026,53.46399,6.756432e-07 477,581.00684,0.29531902,43.216248,63.2179,2.867759e-07 477,3.02639,24.18239,54.874,100.19163,1.08638574e-07 477,0.9983163,10.106273,19.391441,51.535225,1.125277e-08 477,435.34433,4.8826075,43.920013,48.46854,1.8681205e-10 478,320.76144,195.58595,38.079224,84.21123,28.806473 478,481.89694,225.62186,32.158356,72.34381,0.66763806 478,571.5255,261.63678,30.018982,71.70593,0.094187275 478,293.19125,228.49532,35.205017,59.181747,0.023211623 478,520.96515,200.4711,34.962646,73.80124,0.014117277 478,563.1363,207.81894,60.12024,130.82733,0.012431128 478,608.3488,184.75876,30.797852,88.39172,0.011573235 478,342.52643,229.24399,25.612335,50.425964,0.0077224714 478,390.4502,197.5075,34.412903,80.61008,0.003888677 478,606.28705,124.357895,32.85962,95.68248,0.0024833682 478,623.8802,189.89783,15.2664795,45.755722,0.0016737138 478,618.9846,65.14372,20.162048,61.659546,0.0006725777 478,617.1667,250.56972,21.97998,80.915146,0.00063161104 478,623.902,130.38013,15.24469,47.92729,0.00060857943 478,420.74402,210.85878,77.48364,183.04362,0.0005185399 478,148.23425,237.48865,24.139694,49.878754,0.00040620362 478,601.7538,217.4342,36.869446,187.8566,0.00037908377 478,584.0726,397.49072,53.32782,105.499664,0.00017447327 478,534.129,138.79227,40.07361,140.297,0.00012808252 478,583.3767,36.70133,55.76996,285.74945,0.000116296396 478,490.02924,129.7745,26.6969,67.9319,5.7961402e-05 478,1.2909644,240.24413,19.567987,136.67943,3.3074146e-05 478,606.7092,3.4762697,32.43744,162.99834,2.1383337e-05 478,513.10626,266.64108,87.34119,197.60117,2.1250386e-05 478,561.5599,452.16193,41.117004,53.523346,1.3706902e-05 478,407.17764,293.3514,76.7785,189.93439,1.2698678e-05 478,526.11316,409.5025,80.84863,92.61307,1.265997e-05 478,483.99918,112.665474,45.982147,160.27954,1.15417415e-05 478,3.9296632,216.70773,56.871403,204.46457,9.029975e-06 478,1.0994458,340.34888,19.663906,132.77628,8.551432e-06 478,535.36115,449.53033,41.86554,54.608734,5.444794e-06 478,496.58517,438.58954,47.00479,66.92856,4.336615e-06 478,435.6362,417.0551,79.0972,81.81,2.637102e-06 478,4.0118847,399.8867,55.65857,95.2016,2.353652e-06 478,2.1319425,156.69821,31.932594,156.30313,1.877433e-06 478,1.5759994,15.1515665,34.67091,70.65657,8.656051e-09 478,468.81183,5.3430033,48.383057,49.50366,4.884192e-10 478,443.31906,1.1926563,43.21344,46.93795,2.5709132e-10 479,474.59006,224.69331,26.761505,51.745407,1.0298892 479,343.44937,224.8661,24.201965,48.2137,0.5658728 479,558.6537,201.78464,59.211304,134.48727,0.3796172 479,413.23505,218.96838,25.427582,55.01245,0.35440084 479,565.0579,193.70377,29.955505,62.287903,0.15680367 479,329.48013,209.99266,27.237,59.14177,0.123918965 479,457.97015,227.86594,29.218597,58.965485,0.10873062 479,308.3221,230.3844,25.834015,49.54782,0.04896242 479,578.29065,182.59915,34.93573,83.30029,0.005908547 479,594.58954,167.76404,40.880005,129.28671,0.0027774738 479,618.4561,150.5723,20.690552,63.206512,0.0027670942 479,291.69604,237.70683,28.341888,51.976578,0.0023120483 479,333.1753,239.4634,26.776184,57.01494,0.0022420916 479,609.62445,272.1095,29.522217,158.18436,0.0015052973 479,390.68112,202.28488,34.355377,68.94217,0.0014191472 479,611.09735,370.8397,28.049316,128.96048,0.00067191734 479,621.29767,115.00599,17.848999,61.08068,0.000634077 479,609.85297,55.39931,29.293701,168.93648,0.00020394137 479,162.00035,238.11662,24.295105,47.186478,0.00014507036 479,1.3422087,245.50209,19.006245,136.03642,2.9218476e-05 479,473.0002,240.51631,80.0455,195.26576,2.1343812e-05 479,533.4381,390.05823,103.14844,110.53668,2.1012065e-05 479,4.2881203,216.84607,56.97253,210.93274,1.2362491e-05 479,1.185752,330.77777,18.973145,137.38736,7.5188827e-06 479,2.7243872,165.31494,36.594376,164.65308,6.6517623e-06 479,572.5912,437.5675,45.461,67.10455,4.154318e-06 479,1.1042204,423.4167,15.868945,77.47009,3.5459561e-06 479,583.8075,9.693542,55.339172,122.7175,2.8241402e-06 479,2.0999837,74.16222,21.31597,119.262405,2.6690018e-06 479,3.7841227,398.23276,56.098534,95.70474,2.2421427e-06 479,546.4298,438.59787,44.117615,62.546783,2.1432782e-06 479,456.82907,417.33597,76.818634,79.66321,1.8910827e-06 479,2.6704266,17.590834,56.272064,128.38597,1.4911054e-08 479,564.0175,3.4466798,44.95044,55.117405,5.558002e-09 479,1.1161988,9.5590515,19.51274,53.610897,2.315047e-09 480,340.74268,212.6545,28.954346,65.87837,1.0253445 480,529.939,224.05376,40.155334,89.56157,0.42514712 480,511.4985,234.04628,32.53128,73.699844,0.35579452 480,596.9139,171.48225,37.52118,113.86272,0.31055978 480,493.5136,240.9027,23.783203,53.14061,0.1242041 480,309.9506,236.70393,23.499908,46.930832,0.07384401 480,326.62796,207.6625,27.366455,64.75647,0.064142615 480,445.15552,230.76923,23.879456,49.75119,0.03887691 480,464.22403,222.33128,23.371124,51.290817,0.025885846 480,611.8794,232.09456,25.509583,60.777084,0.01094856 480,608.7065,119.025444,29.7854,69.327675,0.008959907 480,406.24313,193.87164,40.557404,88.29968,0.006635651 480,455.22824,177.4366,33.680206,81.655045,0.0056912364 480,607.20905,342.45154,31.937622,167.08926,0.0026115668 480,476.74033,238.62547,25.428864,56.183517,0.0025242793 480,617.517,164.46758,21.629639,82.800446,0.0009066872 480,609.17645,213.52742,29.970215,185.09163,0.00050429197 480,4.266393,209.39636,35.713383,71.03772,9.9647186e-05 480,589.32947,450.232,41.566406,57.602814,7.298296e-05 480,566.58984,81.54096,71.4314,269.47458,6.753561e-05 480,485.90912,227.38919,82.977905,184.4338,2.9832794e-05 480,521.45374,383.38214,116.437744,114.92325,2.6330968e-05 480,538.6899,130.22571,25.966553,55.804245,2.2470838e-05 480,3.1299627,174.04836,60.421432,198.24245,1.1771435e-05 480,503.35635,437.5554,46.792023,67.7092,8.650946e-06 480,1.3805314,259.17242,18.306011,134.79187,6.327429e-06 480,1.5418897,297.36682,30.604134,176.82037,5.65816e-06 480,610.7595,0.0,28.387146,63.6081,4.4977787e-06 480,598.2771,7.947728,40.869568,231.35536,2.8818745e-06 480,3.5310516,395.98853,56.312992,98.07794,2.2461704e-06 480,532.9319,439.06705,44.03717,63.017487,9.778264e-07 480,1.3727376,13.537774,35.069145,74.94616,2.2081244e-08 481,491.64975,222.12032,36.279755,74.55165,3.4919176 481,338.32986,213.27792,29.781464,66.71564,1.6798558 481,391.99802,225.79997,27.313232,47.735794,1.415966 481,510.74005,244.36456,25.494202,51.620605,0.047670715 481,467.00272,224.35641,43.367462,100.036835,0.040313423 481,483.64148,209.64977,23.546661,58.90181,0.011412239 481,596.01263,151.52156,40.67285,108.61,0.010591504 481,459.1498,169.9225,39.042084,79.84488,0.010032579 481,401.13528,201.7523,38.50357,75.12099,0.007575623 481,569.2174,209.69225,34.302063,81.281265,0.004247181 481,603.5276,212.6557,35.52838,202.92712,0.0015430027 481,414.09888,111.41734,20.156586,45.75534,0.0015404723 481,611.8519,346.78458,27.294739,148.45972,0.00016515887 481,609.5655,36.884598,29.581177,183.17879,7.6567514e-05 481,1.5171721,190.51108,19.17273,117.80505,4.2491298e-05 481,2.2554476,229.0609,31.910713,158.13405,2.031016e-05 481,571.9765,416.62497,66.93329,85.97046,1.3326616e-05 481,2.832246,146.24167,56.100056,196.44415,1.1781723e-05 481,0.95386475,300.28452,18.260904,135.06647,9.404853e-06 481,496.86282,436.91,46.356537,69.61377,7.4992604e-06 481,609.4597,1.4214649,29.68695,67.95357,6.9043876e-06 481,411.02158,41.61472,32.901672,74.08038,4.3169325e-06 481,1.0000017,377.58694,19.37869,117.618744,3.3147653e-06 481,3.6572282,324.84845,57.53016,159.10504,3.002534e-06 481,513.72186,419.43564,75.7168,78.52823,4.742152e-07 481,1.7403288,16.31071,34.837906,70.28523,4.1598462e-09 481,524.8224,1.6616439,43.723755,67.47816,2.9257348e-09 481,557.4194,6.4821095,43.710022,58.125046,2.6587645e-09 481,476.00235,5.820669,42.006866,54.83837,1.0037627e-09 481,451.42664,2.4462729,42.90625,48.449574,5.950714e-11 482,394.87555,227.08188,25.640717,52.756287,3.2735772 482,465.2674,227.35649,26.744385,60.794205,1.2121711 482,480.9021,222.69733,23.958435,58.42563,0.054419328 482,417.81827,252.16498,39.60431,79.7258,0.024091076 482,335.57825,211.36566,26.024017,55.69113,0.019754617 482,580.9379,233.8119,56.869568,172.1895,0.012507677 482,340.5727,234.1206,39.187775,87.01181,0.0090891095 482,608.92816,207.609,30.218506,93.20506,0.0069098757 482,623.78033,222.52368,15.366333,48.67691,0.005508176 482,562.8026,211.37347,26.80066,52.975647,0.003639223 482,496.39062,226.92055,25.711975,56.745407,0.0034826554 482,540.7814,241.0409,31.28894,64.5087,0.002658362 482,596.4043,324.82916,42.74237,130.1669,0.002153475 482,610.3332,391.8537,28.813477,115.097565,0.0014539151 482,359.2004,257.21756,35.979584,75.285,0.0007837369 482,489.35132,148.85286,42.161377,138.6884,0.00073125755 482,614.3441,66.735,24.802551,94.1913,0.0005343432 482,599.8225,97.16323,39.324158,252.54074,0.0002145918 482,560.9238,378.74365,75.18109,119.590515,0.00012794396 482,586.5136,0.0,52.633057,137.94527,0.00011086006 482,588.3494,446.57495,43.93048,60.55658,8.148944e-05 482,611.01556,0.0,28.131104,54.418972,5.420086e-05 482,597.50476,201.91713,27.17389,68.006485,5.0537106e-05 482,1.6276904,238.3381,27.923319,143.02213,4.0336985e-05 482,3.9713478,240.49464,55.84045,224.2812,1.3654089e-05 482,0.9070793,337.12933,18.768692,138.13184,8.889302e-06 482,490.11407,435.77484,46.28241,69.70871,3.0238211e-06 482,3.7235434,397.64017,56.350258,96.21307,2.0137998e-06 482,533.63525,439.08255,43.900635,63.522736,1.8127973e-06 482,559.74316,440.25278,46.050415,63.579254,1.7631335e-06 482,465.1998,394.10266,112.39279,102.491974,7.5931e-07 482,572.88354,0.914489,43.408752,63.637604,1.884301e-08 482,1.5100131,13.471218,34.96631,70.973236,1.7581616e-08 482,433.40875,5.722168,45.6998,61.906105,3.3007355e-09 483,588.4779,213.17227,46.495422,138.06418,23.249125 483,421.07068,234.71431,31.604065,62.50493,2.1954663 483,329.90625,203.46028,27.557434,67.112015,2.1680107 483,441.16315,241.56374,24.77005,49.847275,0.254763 483,586.7458,211.4096,29.680786,63.8638,0.15267041 483,607.9733,282.76022,28.860535,71.54083,0.11989578 483,560.99725,220.24881,44.586426,129.82217,0.10975521 483,613.50214,201.0306,25.644531,86.50813,0.03916048 483,362.47263,237.59853,43.194336,131.22182,0.00781269 483,516.11383,214.58835,120.29724,241.13223,0.0060240016 483,605.47107,429.00946,33.66815,81.79242,0.0040034354 483,542.91254,254.35867,49.41211,154.53949,0.0028269694 483,548.5234,231.4889,33.888428,80.360825,0.0015689878 483,588.15704,282.53217,50.00415,208.50623,0.0010743731 483,385.70273,242.00394,48.5036,123.065796,0.00017835583 483,468.9629,255.62654,85.73468,187.10945,8.761504e-05 483,1.1763135,228.32324,19.645176,130.01712,4.4269917e-05 483,609.96906,75.69841,29.177612,168.05225,3.7793052e-05 483,523.77966,387.4938,113.8194,116.80023,1.22074825e-05 483,609.1124,0.37063476,30.03424,64.30126,8.871702e-06 483,1.4062802,277.62234,31.16734,174.9096,7.1910627e-06 483,1.0604777,376.72345,19.563625,118.9361,3.5797573e-06 483,484.3985,435.84082,45.734802,69.118866,3.1591849e-06 483,559.6051,443.62393,44.86914,62.608215,2.8902305e-06 483,1.9300717,115.279,31.17935,169.68497,2.7610774e-06 483,5.7437177,357.9132,79.19613,131.41138,1.9810138e-06 483,532.4658,440.8871,44.830383,63.503235,1.4550798e-06 483,259.89905,396.38297,107.39337,100.37189,7.154477e-07 483,1.3766764,13.642497,35.060898,71.65978,1.7661945e-08 483,528.9054,1.6045573,64.860596,64.064644,4.026157e-10 483,400.10736,1.2139144,45.459625,45.526646,2.7634992e-11 483,505.57928,1.242334,44.852173,57.28124,1.708352e-11 484,496.67136,240.28831,35.809113,85.46965,82.170105 484,480.46548,238.65277,31.509521,81.94415,56.166603 484,462.44443,234.87514,24.350433,55.02571,20.265917 484,492.72626,216.90295,26.06958,68.821014,1.4295393 484,329.2493,185.64233,29.490204,67.025696,0.04888202 484,607.6459,158.40271,30.345886,131.78235,0.03862033 484,504.73917,192.22592,40.69992,107.45404,0.013987768 484,624.39166,225.44553,14.755005,48.102936,0.0077646654 484,268.3088,340.52176,51.150635,108.081696,0.0027337598 484,584.7147,33.108517,52.43286,249.50879,0.0026135477 484,468.90997,198.23709,89.54962,173.72964,0.001793346 484,577.9157,83.243546,39.170532,91.112656,0.0005172439 484,615.00745,84.28125,23.564087,94.97615,0.00034857861 484,610.92035,230.6359,28.226318,149.87881,0.00031268815 484,606.03485,435.1865,33.111816,71.5177,0.0002436662 484,257.23007,275.8673,111.09494,206.18375,5.2314652e-05 484,518.90576,64.02867,38.585693,92.840164,3.0197813e-05 484,1.8043149,261.6852,33.818275,186.13965,2.5058853e-05 484,1.0429802,222.78427,19.394644,121.01468,1.7867711e-05 484,551.52374,420.67438,79.68158,80.618866,1.3436647e-05 484,1.2746029,364.91547,18.985685,127.86096,1.1004576e-05 484,606.0824,3.981595,33.06427,67.46233,1.0713958e-05 484,74.10242,155.20357,136.36206,223.6162,4.9873597e-06 484,3.383921,389.85315,56.15346,102.02646,2.599825e-06 484,490.53278,31.376308,24.852844,56.2693,6.614157e-08 484,571.91046,3.7749383,45.95398,64.42243,2.8275707e-08 484,1.3421452,13.4495125,34.93602,71.63432,2.1425972e-08 485,485.116,238.52592,24.886108,55.611526,30.895472 485,471.0325,242.93532,26.104431,55.461777,4.5391364 485,401.3884,245.69238,38.891205,95.95026,3.48814 485,85.568794,236.78957,25.463692,52.34816,0.6831168 485,521.93274,247.58229,41.204834,152.29054,0.017815487 485,542.2428,245.46925,33.8244,85.893814,0.005877185 485,613.75635,141.32411,25.39032,83.82446,0.0057090432 485,578.02814,245.98209,33.9411,70.19101,0.004671661 485,457.26385,210.85582,60.40204,108.969986,0.003814586 485,559.1591,239.6625,25.46759,53.62448,0.0035575281 485,609.36566,287.36713,29.44049,136.16788,0.0011184436 485,614.81104,72.49992,24.335632,85.02208,0.00059395813 485,609.9033,173.59006,29.243347,134.80267,0.00046512764 485,497.14667,247.27626,119.27118,209.73573,0.00032592996 485,438.24026,171.79471,43.40329,91.23703,0.00014793387 485,587.48956,19.282734,50.364563,110.953415,0.00013435615 485,419.18784,162.90306,140.96866,222.726,0.00012797581 485,607.7013,431.30435,31.445374,75.381226,7.6166296e-05 485,571.9946,357.5389,66.59631,129.2138,3.0457799e-05 485,1.1063778,254.42683,18.98866,131.51292,2.6649124e-05 485,1.1633334,330.57257,18.941149,131.03613,1.0087143e-05 485,3.8842547,262.2217,56.82635,208.35059,8.279562e-06 485,463.3719,438.18298,46.13968,68.68344,6.422513e-06 485,1.7641155,204.25394,29.44342,118.728455,3.4060954e-06 485,1.863003,419.66754,35.17439,79.725555,2.5397985e-06 485,523.08374,1.1526953,37.975098,53.77032,2.5031234e-06 485,507.03433,413.9133,76.47519,83.88843,9.672254e-07 485,552.66327,439.16266,44.067444,63.790894,6.0300545e-07 485,585.98456,7.3175554,43.335632,47.08682,5.9844064e-07 485,144.87592,181.79893,93.728,203.60143,4.4118838e-07 485,504.32495,2.5483658,82.12152,85.97955,7.5912425e-08 485,555.52795,4.328265,45.522766,61.127377,5.1111993e-08 485,1.4207357,14.374799,34.986942,69.43248,2.7840091e-08 485,483.3553,3.7739828,46.241333,54.073845,2.4736238e-08 485,404.16483,3.6410677,42.018677,48.058884,1.538887e-08 486,518.5607,231.3835,25.737915,52.37346,0.8904392 486,597.0523,223.37871,38.558655,89.7787,0.5773104 486,430.66116,235.83022,39.10916,111.02254,0.56751233 486,368.678,175.13696,27.481659,71.90015,0.037597205 486,470.57788,249.75043,21.7276,46.414764,0.032571953 486,619.87964,225.20444,19.267029,61.59445,0.028707102 486,584.96967,156.09404,51.52588,254.43715,0.020261744 486,561.273,231.19235,36.803284,68.93628,0.015952373 486,361.1138,179.76923,19.250946,49.2668,0.011975217 486,603.79803,83.06984,35.12805,111.331604,0.010570075 486,53.028496,220.72516,26.910728,51.191315,0.010395745 486,455.8803,238.71687,39.913025,115.89671,0.010061868 486,474.2647,192.741,38.21051,100.700836,0.006400291 486,608.7613,313.02875,30.385376,149.13086,0.004433194 486,597.1263,150.65335,40.38678,100.324005,0.0036390875 486,578.45844,162.01933,35.99695,82.24817,0.0034173394 486,399.3192,238.94646,29.255127,58.551346,0.0021800604 486,624.8316,259.93832,14.315063,47.417755,0.0012700128 486,621.5133,328.04916,17.633362,62.817383,0.00048191578 486,596.54193,397.94186,42.604736,104.87616,0.00031785946 486,450.1143,179.4492,41.532806,86.58397,9.464793e-05 486,1.3751864,234.04794,18.645016,122.00937,5.699133e-05 486,610.11584,8.513398,28.96466,81.90398,4.9405124e-05 486,1.7546184,255.73038,33.106293,185.03348,3.4359677e-05 486,1.2441968,335.9859,18.850098,130.90436,9.390835e-06 486,126.38124,176.00081,84.41167,196.56807,4.7696853e-06 486,3.7621486,336.24808,57.526867,150.00397,3.9942465e-06 486,2.131958,418.69022,35.26894,79.04825,2.7896303e-06 486,463.51083,419.46298,77.120636,78.912445,1.6290093e-06 486,546.6603,442.89798,44.519592,62.005524,1.488098e-06 486,583.82916,5.210101,46.333557,53.595947,3.102597e-07 486,532.16895,3.2082748,45.901367,53.44427,8.8666695e-08 486,559.23376,4.3138933,45.574768,49.960575,2.8961155e-08 486,497.15674,1.6758008,48.701965,52.064487,2.2143833e-08 486,1.4364275,14.007357,35.145557,71.45154,1.4614895e-08 487,555.9931,216.98706,28.33783,66.66388,1.30923 487,465.26917,229.15056,41.759705,104.51927,0.22166227 487,597.73883,206.7684,40.23169,236.9065,0.06470516 487,610.5734,178.30988,28.573242,56.108353,0.043251 487,380.99353,222.96126,21.886078,48.64882,0.018032968 487,560.94415,345.5069,73.40863,140.46307,0.014724168 487,367.8743,220.22664,23.483582,49.218338,0.0041931565 487,606.4586,246.82141,32.68805,82.345215,0.0035526867 487,596.2342,457.45877,40.75305,53.687897,0.0026107228 487,371.46646,166.71214,23.170319,51.567856,0.0022124506 487,616.1469,383.95035,22.999756,110.319824,0.0021245745 487,402.2299,232.69423,21.72525,51.563583,0.002046734 487,11.488491,204.26028,45.483,56.217133,0.0016732252 487,513.1349,243.54031,39.807922,75.19818,0.0014266144 487,597.2957,123.512474,41.145813,165.47003,0.00083037314 487,581.4464,390.97922,23.928589,48.176575,0.0003449933 487,613.20825,0.8429297,25.938416,98.69666,0.00016204272 487,3.7129884,241.30579,56.916336,228.7284,5.056907e-05 487,3.3267286,146.69467,60.28083,191.79199,4.3319447e-05 487,565.30365,426.45538,55.26532,81.38959,3.2137254e-05 487,1.2284359,223.24121,18.503492,124.8728,2.7341572e-05 487,440.7934,198.55223,109.73279,190.76836,2.4697092e-05 487,407.08893,141.85542,40.128998,126.807175,2.048254e-05 487,1.3612199,362.11807,20.66342,100.81912,9.900818e-06 487,1.1315812,424.44974,16.058098,77.032196,4.717274e-06 487,1.7830493,188.52019,18.694082,68.1042,4.31942e-06 487,3.8337436,396.61096,55.671726,98.322174,2.9069768e-06 487,124.703964,151.52196,136.47704,206.74876,2.8588913e-06 487,513.066,444.72992,43.660645,59.48065,1.147433e-06 487,2.6212404,23.313553,55.1297,99.002686,8.610771e-08 487,1.2887256,10.3898,28.887415,53.359985,1.3501032e-08 488,163.67633,212.53352,24.416718,49.120224,88.90194 488,594.12,224.55325,43.370056,73.7905,0.9410277 488,402.71625,227.31165,20.652924,47.706024,0.3418708 488,523.35486,166.86899,42.67633,114.12125,0.12218219 488,532.2841,165.86841,23.52069,60.14972,0.08350711 488,510.99902,253.02277,45.630615,107.87686,0.056068406 488,14.175783,223.07063,28.351904,54.284927,0.037119307 488,380.84402,221.04562,34.975952,64.80539,0.028217068 488,429.4185,219.98758,23.16803,53.52768,0.01642282 488,528.936,226.9805,25.91742,58.07663,0.0052052536 488,379.0906,153.39876,27.21933,77.42818,0.0029071737 488,564.06647,198.18188,74.092896,215.75925,0.002660183 488,551.67084,164.02866,24.730469,55.42679,0.001512997 488,464.52856,228.78326,36.677185,87.96576,0.0013000729 488,610.4354,267.12503,28.711243,120.49301,0.00095266296 488,4.0432487,213.39853,24.300135,48.44922,0.00064970314 488,394.38486,159.49539,25.691559,66.46838,0.0003965919 488,566.46173,251.58095,38.93158,78.20665,0.0001276579 488,601.2525,333.22324,37.894165,165.06448,0.000119695236 488,1.1137419,215.13658,18.101082,131.9092,0.00010136107 488,608.56354,115.2718,30.58313,154.682,9.400205e-05 488,3.4354184,184.98727,57.385963,189.9898,2.9125331e-05 488,1.1501986,367.72632,19.38281,126.362976,2.1279464e-05 488,587.41956,445.03757,44.59326,61.733276,1.2106408e-05 488,134.33574,171.11961,91.50505,195.90047,1.1301806e-05 488,3.6211898,335.58023,57.87074,150.06384,1.0628188e-05 488,610.6786,1.8688933,28.468079,60.63244,5.063368e-06 488,498.37943,437.9952,44.217377,66.53729,1.1856347e-06 488,561.4406,444.1468,46.147034,60.349884,4.6375334e-07 488,2.7454884,21.522627,54.701324,101.40727,6.653431e-08 489,199.65665,218.57138,26.194717,45.120514,96.95724 489,558.65564,234.72685,26.276917,49.3546,7.0845575 489,482.1353,227.91545,25.476105,59.99739,3.3090935 489,595.2151,153.22574,40.97284,123.66885,0.38378394 489,492.9899,220.19667,35.88095,64.86116,0.18275255 489,621.0525,238.01074,18.094177,65.631226,0.049111784 489,537.80566,230.49074,24.297241,45.458115,0.042523813 489,609.3902,231.77501,29.53424,140.58043,0.038115215 489,459.9195,224.98802,37.44342,72.20427,0.027962573 489,459.9072,275.21622,43.514893,79.247894,0.008373429 489,617.84033,174.66344,21.306335,76.74991,0.0022613164 489,619.19147,305.4071,19.9552,58.483887,0.0019814176 489,416.65936,167.54709,21.998352,50.875168,0.0016242123 489,609.61926,102.10061,29.527405,124.24143,0.00043398445 489,616.8278,336.4613,22.318848,88.63455,0.00023918833 489,1.1024723,242.38885,18.795227,82.92981,0.00021837102 489,129.21355,221.81584,79.002716,197.92775,7.8825455e-05 489,4.173244,207.17418,57.821495,184.41353,3.9923165e-05 489,185.14212,193.06006,57.869064,94.89044,2.5412577e-05 489,609.23804,1.3183789,29.90863,61.779633,1.29189775e-05 489,584.9673,393.21405,54.179382,109.30914,1.2234672e-05 489,1.0338005,346.88794,19.239107,126.381134,1.1155509e-05 489,3.8912437,400.6396,55.908302,92.62225,4.5282072e-06 489,155.36787,138.72467,139.89009,223.3794,1.4833598e-06 489,573.6879,447.641,44.91815,57.59958,8.813158e-07 489,477.83188,422.95892,76.89676,77.35098,6.7133857e-07 489,2.0929842,115.43836,30.93951,176.89182,5.746942e-07 489,527.41876,419.73532,87.29608,81.058075,5.2917466e-07 489,1.3865675,14.640719,35.67538,70.368065,3.8167595e-08 490,235.85342,217.67462,25.642975,50.17032,99.92668 490,597.6593,226.64839,26.473816,49.061295,0.07345179 490,518.61993,199.3257,23.35736,46.89485,0.01971991 490,571.9526,225.98128,21.92865,45.647385,0.010177996 490,531.3948,206.96246,23.966797,45.281662,0.0056606005 490,605.2699,367.92657,33.159973,77.78772,0.0052954657 490,607.9976,235.55222,31.14508,82.94803,0.004430645 490,554.36414,233.63173,31.143677,64.95094,0.004148261 490,191.68497,215.32368,25.956757,46.6035,0.0040713516 490,513.81824,205.37233,38.07135,87.41496,0.0040013287 490,590.3786,207.96558,47.69232,213.73187,0.0021462012 490,620.87036,334.08435,18.276306,60.125,0.000457621 490,607.8752,430.98865,31.271484,75.78705,0.00023424724 490,583.99756,96.42571,52.89447,218.44485,0.00021580388 490,616.1469,158.5298,22.999756,93.032104,0.00015096269 490,115.83966,230.40376,79.31026,190.61052,0.00013984529 490,2.1071274,208.454,30.92255,171.42986,0.00010996347 490,1.4879012,228.87677,18.38028,75.14392,9.377426e-05 490,218.84897,198.02202,59.07617,90.53883,6.459288e-05 490,463.0971,151.8097,37.19107,83.68672,4.6577832e-05 490,612.5483,64.61592,26.598389,144.70184,4.3283355e-05 490,561.181,379.1186,77.96564,123.84183,2.330073e-05 490,336.45023,236.8556,80.0213,172.06868,2.0945203e-05 490,0.81497234,304.09244,20.922188,113.49771,1.6956867e-05 490,4.249217,141.04309,57.91525,186.60635,1.2070784e-05 490,561.4221,456.2171,41.885376,51.9252,9.571014e-06 490,186.38608,160.11375,138.34274,218.15245,6.5593617e-06 490,565.66113,11.629193,71.61853,159.54433,5.723055e-06 490,3.4121583,332.70264,58.562634,155.97476,4.881324e-06 490,610.1805,6.939362,28.966187,85.45435,4.735376e-06 490,1.1428223,423.201,16.669565,80.33539,3.3303043e-06 490,478.33276,438.24768,43.819153,65.80951,1.5484666e-06 490,467.56992,386.94724,109.429474,110.31439,1.3004599e-06 490,430.72656,418.82544,77.333435,81.1268,6.4453855e-07 490,588.6027,1.628309,44.006226,50.08947,8.0719325e-08 490,1.4853777,14.555362,35.405552,71.14021,3.4221113e-08 490,559.41394,2.9789941,41.47339,81.51295,1.9960542e-08 491,253.06915,214.59117,24.855835,50.35579,99.94406 491,544.4422,194.2149,23.670776,48.383926,0.10884176 491,501.91635,188.93875,24.933746,53.99617,0.0034919635 491,601.3351,217.189,36.102905,152.6159,0.0030549567 491,560.1433,198.6567,25.607544,52.454514,0.002950083 491,614.94714,219.78383,23.73639,71.43358,0.0017315651 491,618.2709,267.03094,20.875793,77.02969,0.00065899367 491,607.46643,433.42755,31.535828,70.28824,0.00030926545 491,615.32635,323.4787,23.820312,84.79611,0.0002852143 491,588.20703,312.86792,50.306824,180.82703,0.00010489605 491,1.1265512,241.49498,19.18688,79.679214,8.731642e-05 491,4.2029915,241.16806,55.836014,235.29059,7.4378564e-05 491,598.53455,99.06859,39.771545,194.56197,7.345941e-05 491,233.83362,195.41096,62.21405,89.872025,7.334159e-05 491,401.57474,300.19952,61.83667,163.67142,6.7002125e-05 491,0.92642176,274.16544,21.28477,122.19681,3.1256153e-05 491,2.05816,185.61699,36.10765,155.05574,7.953984e-06 491,508.5818,337.51868,41.498962,104.21744,7.744193e-06 491,611.57874,2.167666,27.567932,57.725464,5.9507406e-06 491,1.3624805,371.08313,18.782282,124.03699,5.6947442e-06 491,512.7627,393.0314,114.148254,104.21997,4.8838665e-06 491,498.77887,137.41075,42.57068,120.84779,4.790592e-06 491,205.41083,154.07912,135.76279,223.21141,3.739423e-06 491,429.21518,301.67886,79.78482,182.02078,3.7250577e-06 491,7.57155,401.60803,87.18451,92.53436,3.515034e-06 491,521.5813,448.72617,42.906555,56.343597,3.1507961e-06 491,418.6053,418.86774,74.87201,79.34851,1.7998913e-06 491,1.4253491,148.9984,17.834206,131.68962,1.1688862e-06 491,8.302943,443.23032,44.008263,61.51642,1.0637939e-06 491,477.2326,428.42368,60.064575,74.694214,7.835177e-07 491,1.5126075,16.0103,35.21109,66.799576,1.09013655e-07 492,253.37881,218.10751,25.4263,51.641144,99.92987 492,553.286,197.13396,24.871948,69.28841,2.8847406 492,566.38055,200.28787,21.86261,50.60031,0.094357386 492,613.07153,227.4809,25.303589,48.46765,0.04487496 492,585.34503,193.50212,24.971924,53.596268,0.04104191 492,170.50772,217.92873,24.006744,49.416092,0.010831178 492,531.24994,201.58597,32.574036,82.98657,0.007978447 492,598.76135,111.92698,38.234863,177.77881,0.0019625612 492,621.6615,359.48346,17.485168,55.360657,0.0009885296 492,610.9914,235.85768,28.155273,145.60179,0.0008997609 492,610.5766,385.35764,28.570068,118.22452,0.00073166774 492,543.00946,175.87987,28.721863,62.32686,0.0007291163 492,586.03656,182.12434,52.537292,274.8073,0.00055783975 492,517.52106,160.38737,72.369995,142.30464,0.0002127562 492,233.8694,202.86865,61.890366,88.599396,0.00016951804 492,449.42453,314.98596,73.7294,175.65656,0.000121411686 492,555.4121,428.17776,83.62457,70.75049,5.3948526e-05 492,1.0450879,245.04137,18.897518,142.00026,4.3728713e-05 492,3.448405,260.64084,57.21632,212.0198,3.1957483e-05 492,1.2200928,345.62204,20.345982,106.94281,2.5178579e-05 492,611.6398,2.4292123,27.506897,59.150284,5.284769e-06 492,1.0438542,421.41245,16.069866,79.96121,5.1363404e-06 492,204.87645,161.06334,135.53001,214.75453,5.045668e-06 492,3.8924968,141.46117,59.37083,203.71791,4.2525107e-06 492,510.7859,43.448647,29.249207,69.6791,4.0550426e-06 492,1.8182203,181.1238,29.97805,124.21449,3.8652324e-06 492,477.3685,434.96124,44.047394,70.123505,3.4661732e-06 492,489.0245,77.225494,44.540802,117.69382,3.3597037e-06 492,3.652624,429.28583,53.073303,69.56241,2.88072e-06 492,499.3458,423.7729,74.30063,76.99817,1.3365864e-06 492,0.6235608,11.775068,10.009351,78.36091,9.673708e-08 492,1.5872592,14.963008,35.548798,68.74087,5.9440413e-08 492,509.3823,1.2668685,45.85855,49.986576,1.2907744e-11 492,483.05432,0.6886182,44.81537,50.966873,1.903228e-12 492,455.2522,0.0,45.145782,51.557175,9.431802e-13 493,286.17697,220.43724,29.439636,56.96248,99.9703 493,258.65463,209.94188,41.30487,67.405045,77.25294 493,619.77814,128.99243,19.36853,62.63591,0.117890336 493,559.7726,184.52367,51.94281,122.454025,0.023049463 493,612.4839,157.34195,25.753601,64.40059,0.0051162913 493,607.9529,96.43884,30.989014,71.43422,0.003397278 493,612.9193,250.99944,26.227356,97.597,0.0016376878 493,580.0475,109.92944,56.05078,143.35928,0.0013274095 493,623.2688,33.26223,15.877869,45.438057,0.0012521516 493,617.34576,321.5005,21.800903,81.026794,0.00027428666 493,617.6599,378.17752,21.486755,85.48761,0.00026161014 493,603.6873,1.5894727,35.45935,147.40152,0.00021228762 493,265.7813,190.58192,72.96176,145.56273,0.00015752704 493,1.3171211,246.72504,17.861073,71.130035,0.00011341296 493,601.8506,322.49408,37.29608,169.09381,8.987695e-05 493,584.87225,180.05576,53.24237,230.32596,8.668286e-05 493,1.8229363,261.0839,31.757519,186.36288,6.0179922e-05 493,609.0026,437.6909,30.144043,67.75043,5.4191816e-05 493,1.157496,396.17502,18.59407,73.51636,4.200643e-05 493,0.88720626,299.82394,18.299986,80.05914,2.0584954e-05 493,3.2880013,394.6531,56.996147,97.79535,1.1299802e-05 493,3.6988006,114.66531,57.423878,221.95486,8.773848e-06 493,2.2580664,161.40802,28.612156,137.02243,5.209907e-06 493,605.0842,0.0,34.06244,45.385628,4.130315e-06 493,284.20474,430.8933,72.91449,71.615204,7.3635573e-07 493,0.6134127,11.679577,9.810157,79.92154,8.9181626e-08 493,1.4170117,14.585951,35.52523,70.17947,4.6194867e-08 493,579.15375,2.573955,45.279053,55.418304,3.8125722e-10 493,492.26648,1.0428271,43.548706,46.220486,3.4518038e-10 493,306.67557,2.3557,43.996674,45.343616,7.353086e-11 493,517.0489,0.46004397,43.688538,50.16254,2.0642025e-11 493,546.59406,1.1979313,42.67163,45.401535,9.084055e-12 493,413.40753,2.3537695,44.928253,49.004158,6.138354e-12 493,383.05533,2.6428533,44.32794,50.287376,6.203604e-13 494,334.66785,218.8855,31.046295,62.13449,99.97608 494,304.27896,212.30165,43.87091,72.96501,57.69458 494,240.14586,234.41464,21.704391,46.583954,0.1531587 494,11.393444,206.90483,44.128395,86.049576,0.0055080187 494,611.5651,142.89221,27.581543,136.5946,0.00026554422 494,617.606,382.58527,21.54065,84.30127,0.00025731808 494,4.466776,212.47942,55.493996,229.43242,0.0002047341 494,612.2552,223.13449,26.89148,139.15787,0.00019572419 494,1.7752552,209.46503,18.84301,70.9332,0.00013886212 494,617.4721,328.79907,21.67456,82.40625,0.00013403158 494,118.39275,215.42198,31.047188,54.935623,0.00013293503 494,90.97142,216.55054,31.572388,60.16281,0.00010506986 494,601.3347,317.46658,37.81195,169.00061,7.74584e-05 494,1.2400562,246.75183,19.543812,152.12491,6.404519e-05 494,314.66287,191.46268,72.24225,137.17432,5.627893e-05 494,609.4435,437.41245,29.703186,66.56537,4.014774e-05 494,1.3091911,323.5457,27.794521,149.77158,1.7914323e-05 494,5.8019304,353.0793,79.700294,134.68414,5.5922296e-06 494,0.88076663,419.48428,16.192574,82.279175,5.0890544e-06 494,598.8176,1.76306,40.32904,79.99117,4.1273224e-06 494,2.5995476,135.44948,34.179466,177.66139,3.237621e-06 494,1.1174788,68.66365,15.506096,147.70438,2.4524577e-06 494,3.0488298,426.19812,53.359703,73.16034,1.8593723e-06 494,444.92245,38.57649,34.092102,68.458954,1.7985254e-06 494,325.12442,430.28903,72.896545,71.434875,6.9828275e-07 494,284.4884,428.44052,72.72894,73.12198,6.8793963e-07 494,2.1953452,14.363548,55.84716,128.56668,2.0254475e-07 494,564.0041,2.7665105,75.14258,161.6328,1.9337942e-07 494,362.61096,1.5200244,43.196625,45.906982,5.91005e-11 494,514.1318,2.7322593,45.831482,48.157703,1.7501925e-11 494,479.46057,3.3832798,44.72583,54.70774,4.9333593e-12 495,397.0444,206.23473,34.80728,81.49846,99.95225 495,291.3677,222.55193,28.281403,67.04146,1.895109 495,380.23645,214.47975,29.918823,78.27254,0.09081128 495,610.2173,133.1645,28.929382,61.473007,0.0534376 495,603.316,107.06038,35.410034,167.1968,0.0019025018 495,136.13182,335.96725,51.629486,144.31494,0.0017429553 495,375.74207,188.21962,74.05893,138.09529,0.0012158282 495,619.6285,166.47913,19.518188,70.74945,0.0004674489 495,146.22913,366.65414,31.329346,68.65802,0.0002770526 495,3.3836687,194.03159,54.440662,214.42719,0.00017804312 495,602.6951,1.4925488,36.451477,66.35025,0.00012563083 495,612.48157,214.11449,26.6651,123.99449,0.00011754299 495,106.10324,264.112,142.4709,223.96588,0.00010846614 495,611.4669,337.8504,27.679749,139.76825,0.000107572705 495,1.9459205,119.95068,19.26509,132.115,7.621716e-05 495,2.1698487,198.87112,34.388256,80.53656,5.803685e-05 495,1.2688428,363.42966,20.455753,104.22037,4.670193e-05 495,164.0971,377.91025,20.453033,46.174957,2.6618744e-05 495,609.4701,436.8109,29.676575,68.14249,2.5812424e-05 495,1.1390096,226.51672,19.449802,159.92258,2.3541466e-05 495,588.75757,217.04495,50.3891,232.3551,1.10597275e-05 495,6.3946486,359.47516,79.77305,127.52484,9.400727e-06 495,586.13855,13.40832,52.726562,183.50795,6.864522e-06 495,1.1194279,420.42044,16.679409,80.05176,2.9332373e-06 495,252.49678,424.867,76.24657,74.00098,2.9165515e-06 495,3.3750212,426.88028,54.502445,70.01358,1.6093983e-06 495,555.7627,425.22702,77.687744,74.87387,5.921029e-07 495,2.613418,15.765924,57.443577,130.12196,2.5620848e-08 495,573.3131,2.8135417,47.93579,49.555893,7.2691604e-09 495,0.9913281,8.356256,19.535053,54.57749,4.5575046e-09 495,503.8388,2.6503127,46.85852,54.07425,3.6354728e-09 495,536.18744,3.5546973,64.31604,54.432438,2.4390747e-09 495,446.9247,1.4662061,66.345795,45.254974,4.4986362e-10 495,415.97653,0.0,42.654327,45.429844,4.9959918e-11 496,470.86752,209.66699,37.002014,90.58014,99.930145 496,404.2079,206.47142,39.29193,79.34108,1.7055793 496,491.45062,219.01459,42.28296,150.38434,0.12565294 496,345.9559,212.5849,25.413788,46.924286,0.0550221 496,453.25226,208.23325,31.2005,69.16635,0.053446535 496,327.57834,212.22481,34.36679,64.31001,0.014476876 496,2.5176277,197.64796,33.57924,83.29109,0.008053648 496,391.87173,234.46191,37.50476,81.47244,0.00071111124 496,462.2846,211.52089,112.026855,216.1414,0.0004678271 496,365.7101,216.68895,76.06531,165.3535,0.00021908568 496,610.8025,367.21393,28.344177,135.77249,0.00019270189 496,617.73773,299.88455,21.408936,81.75995,0.00018027796 496,610.98193,92.322845,28.164734,142.70638,0.00010485184 496,2.9840577,148.94826,59.173306,204.5291,9.060225e-05 496,609.41656,4.0368166,29.54358,79.97002,8.188714e-05 496,601.521,165.06084,37.62567,165.13255,6.1614104e-05 496,587.8869,223.59761,51.16028,226.48247,3.7699454e-05 496,1.1603549,215.26064,19.97745,149.62251,2.555831e-05 496,1.4894979,91.22107,19.393946,168.81229,1.17647705e-05 496,1.1820825,375.32098,18.034119,119.75638,7.136572e-06 496,342.32025,104.83744,51.098694,157.85074,6.3883535e-06 496,3.3335075,324.78604,57.141277,157.28107,5.4589777e-06 496,397.65182,70.52168,42.347107,174.64838,3.5990633e-06 496,360.5109,336.27673,80.856415,156.52527,3.3187637e-06 496,478.3828,414.37497,76.91315,85.1965,1.6779712e-06 496,546.7905,419.19104,85.29846,84.068146,1.574211e-06 496,390.8887,417.39816,81.83536,83.766785,9.935812e-07 496,524.5873,438.01544,45.80896,65.25186,9.131293e-07 496,443.55948,437.26636,44.321564,64.592926,7.4740115e-07 496,568.2892,1.8536963,66.89435,49.640312,1.0476464e-07 496,428.57733,1.7184929,45.674957,49.55445,1.3873653e-08 496,469.4711,5.12431,84.90939,74.969376,9.289846e-09 496,1.5704297,13.0776205,34.32207,72.987274,8.980496e-09 496,478.14673,0.0,35.796387,45.082497,8.033403e-10 497,557.4465,199.25711,51.137085,147.7951,98.96741 497,81.03873,188.88806,25.666008,48.852234,55.0965 497,393.5977,206.68936,44.19644,74.1366,2.0651407 497,548.54846,201.56004,33.343018,95.581375,0.8852366 497,532.49634,189.41798,31.898438,89.346054,0.17873512 497,564.49255,199.54591,30.25122,68.707565,0.03178207 497,414.79047,228.0716,33.181274,73.99869,0.014487855 497,514.7936,141.38182,115.41394,257.31384,0.004498999 497,569.1855,422.6048,68.05658,80.01355,0.0011892393 497,573.56744,231.7476,29.764526,67.80327,0.00091449835 497,611.8879,193.61555,27.25879,142.59499,0.0007178905 497,549.9269,445.63913,48.448547,56.39026,0.00023634465 497,512.85657,296.3371,49.39276,160.09506,0.00020420138 497,611.7758,280.28723,27.37085,138.77557,0.00014268537 497,586.9287,10.457038,51.79138,116.52335,8.5259744e-05 497,609.58923,60.15728,29.557434,144.6951,7.4570184e-05 497,498.7935,409.10492,94.133514,88.72461,5.4763932e-05 497,1.3773121,212.08093,20.034843,134.25201,2.8277038e-05 497,373.37317,368.76028,47.209595,126.88156,2.8192917e-05 497,1.4272599,277.84457,28.238354,177.3342,1.7003602e-05 497,3.5993247,147.28566,59.238693,188.72789,1.4856185e-05 497,348.717,315.12653,112.2478,171.1604,1.0821554e-05 497,1.1485808,365.62613,18.282747,127.64685,5.3814015e-06 497,38.355984,121.26789,134.47008,229.81302,4.4312155e-06 497,3.449419,394.91037,55.759125,96.415375,2.7523595e-06 497,578.3627,4.67042,44.504272,57.76131,4.2362043e-07 497,551.8325,5.716439,44.917175,60.591377,1.9437184e-08 497,471.64966,2.4211655,43.941895,54.462086,6.098475e-09 497,524.79205,5.8528776,43.5177,55.33111,3.728421e-09 497,1.430153,9.900179,33.957428,77.43333,3.4273875e-09 497,443.35672,0.07753581,47.30658,57.38029,1.0627722e-09 498,500.55002,199.8946,42.013214,81.873764,0.70881647 498,441.82178,208.00925,26.645538,48.637146,0.18335703 498,417.576,197.16672,26.060944,51.38272,0.031609528 498,537.98065,278.97467,35.496155,80.46948,0.023626463 498,604.75665,212.27048,34.157776,164.35199,0.0052189324 498,617.11566,210.52881,22.031006,75.76755,0.003528922 498,19.322786,234.5291,40.600426,87.645645,0.0028459637 498,524.1541,219.42818,30.933167,68.373276,0.0023867905 498,624.8712,267.68542,14.275452,45.714844,0.0013625992 498,24.812075,219.18004,27.7087,55.103287,0.0005878445 498,1.4147453,232.77399,18.187729,86.19946,0.0004869319 498,34.48268,226.24982,92.46675,201.49768,0.00046940285 498,6.773838,203.93845,70.62773,185.70407,0.00042949323 498,610.1208,299.99774,29.025879,141.96884,0.00026077768 498,611.47034,116.17832,27.67633,146.40225,0.00024801798 498,606.54114,433.1563,32.60553,76.10806,0.00012049006 498,1.1229142,359.96344,18.214226,138.06815,3.6397945e-05 498,389.30945,422.1808,82.885315,77.06439,2.9110668e-05 498,2.4090023,268.6471,35.23816,205.51605,2.5120775e-05 498,568.40076,345.42276,70.74591,147.0513,2.0248737e-05 498,393.90237,226.40381,107.729614,237.43921,1.9995852e-05 498,344.27057,323.1301,77.833374,170.51846,1.9761765e-05 498,2.5519476,162.58467,29.370506,143.72939,7.3509304e-06 498,136.79378,144.378,94.44144,232.13722,4.509607e-06 498,2.6294923,420.33496,52.760098,76.21677,4.101528e-06 498,587.59894,13.781289,50.86841,108.68434,2.0795048e-06 498,528.5567,422.10623,80.47632,79.51846,2.2121007e-07 498,460.10464,425.03357,73.713776,72.06561,2.1939191e-07 498,584.66077,0.5995866,42.24005,45.14279,1.9492392e-08 498,1.8700066,14.621165,33.9826,68.72853,1.8032365e-08 498,471.4669,2.4290023,43.41928,49.504032,2.1142742e-11 498,551.9039,1.84729,40.953796,48.413322,1.2643416e-11 498,495.7412,3.5548487,42.75177,45.018303,1.8561916e-12 499,107.97212,194.44244,27.416443,46.864258,0.43608248 499,481.84528,197.50612,35.009766,65.00221,0.020025315 499,585.0919,181.07204,30.54358,57.03778,0.0021299827 499,617.82916,202.87134,21.317505,83.54016,0.0013728931 499,510.41885,330.13263,66.74875,165.3905,0.00042103353 499,142.05582,194.13878,41.229095,74.33736,0.00040031463 499,608.2341,438.40018,30.912598,69.04208,0.00035540995 499,601.81335,192.08156,37.333313,188.35786,0.00025403034 499,454.64594,413.98993,90.81897,83.86038,0.00021931563 499,1.6046851,213.56815,18.052061,84.177795,0.00016916615 499,610.8927,100.17023,28.253967,137.9716,0.00016748653 499,504.33975,439.93283,45.78531,70.59949,0.00013172578 499,611.79926,330.35193,27.347412,155.87485,0.00010428104 499,539.13525,433.67917,50.557617,73.1174,4.241866e-05 499,2.1628687,170.66432,30.88776,168.57243,1.708771e-05 499,269.3331,415.08533,81.355835,79.21188,1.1990187e-05 499,343.9358,414.26025,76.67905,85.58237,1.0410402e-05 499,310.79105,269.65637,78.7258,194.62274,1.0316884e-05 499,599.0816,6.1303616,39.59015,80.17129,9.764364e-06 499,3.9838104,208.84761,56.403885,224.14473,8.226687e-06 499,139.81665,146.61485,96.56523,225.48473,6.0626235e-06 499,0.83169436,336.29825,17.858023,126.5455,5.2780806e-06 499,1.1865255,112.26207,16.947483,146.73586,3.2972985e-06 499,0.99229497,429.97348,15.7519865,71.11871,3.1048007e-06 499,3.615477,393.71152,55.527832,96.93439,2.488324e-06 499,112.71642,423.45648,71.85732,73.21463,9.849958e-07 499,329.68314,329.90268,33.758057,74.91812,8.022865e-07 499,72.88984,426.38675,72.694725,69.13461,3.0159745e-07 499,96.0687,63.27712,80.85482,203.5725,2.087774e-07 499,3.1985564,19.80736,54.794273,111.23015,1.5026254e-08 499,466.66913,1.8662094,46.17914,50.914135,5.9045264e-12 500,61.305294,201.10326,27.439548,56.671127,0.36964795 500,604.2785,188.05246,26.078308,54.84247,0.058910828 500,627.11487,194.65619,12.031799,46.584488,0.0100060385 500,11.988885,204.20978,24.74303,51.08133,0.008954543 500,98.282715,95.303764,29.983047,47.917183,0.0050951308 500,200.12204,210.94853,28.826096,45.72798,0.0038897523 500,451.90454,191.13164,33.992554,72.403244,0.0026854016 500,1.7758472,184.75482,18.466217,78.771576,0.001965067 500,495.65448,198.95338,33.451843,64.02315,0.001456959 500,608.4289,139.02856,30.717773,136.3013,0.0010818364 500,86.256874,206.9468,34.231804,60.169113,0.0006048007 500,610.7626,211.41127,28.384094,138.98103,0.0005808442 500,114.46832,211.69426,24.765411,48.69722,0.00044793816 500,611.6155,304.7283,27.531189,153.10864,0.00036843328 500,621.32684,262.07343,17.819824,56.27899,0.00025709684 500,2.9640007,147.98813,41.519745,135.94296,0.00023519412 500,612.9809,416.73206,26.165771,86.03473,0.00013849419 500,1.827802,200.86308,27.831251,157.50911,7.384171e-05 500,571.877,369.20047,67.16321,120.92563,5.735676e-05 500,0.8520264,317.9908,19.675268,141.96835,2.313912e-05 500,1.4184196,78.4357,17.05509,153.2704,1.8445373e-05 500,242.24068,244.94415,77.12938,199.38535,1.1079595e-05 500,3.0556154,276.25528,58.50522,202.81537,8.779239e-06 500,599.2261,5.5146,39.094055,79.57328,6.9529938e-06 500,0.98833174,421.21143,16.490913,81.31244,6.6963926e-06 500,304.7896,338.34213,79.32486,157.91391,5.0127846e-06 500,414.65778,395.46365,112.111084,101.73819,3.646715e-06 500,33.864853,77.5319,93.869316,198.42441,2.8134625e-06 500,452.49026,443.31958,45.32141,60.87964,2.4655997e-06 500,90.580734,144.52466,109.21585,223.84857,2.1054184e-06 500,411.7649,448.12872,41.873413,55.02301,1.3653472e-06 500,325.83813,455.06726,39.85562,50.37671,1.3461806e-06 500,345.7602,392.02725,111.50873,107.01318,1.0566856e-06 500,3.296701,427.48117,53.739017,73.61557,8.604947e-07 500,140.69858,429.18262,76.37685,73.77197,7.526713e-07 500,2.9182293,19.06782,57.477196,122.49572,4.8499977e-08 500,1.0591935,9.026413,19.764233,54.672768,5.835879e-09 500,449.81287,1.303698,44.800537,55.49989,2.9525743e-10 500,420.57376,3.4748096,44.02652,50.06613,8.8466214e-11 500,510.11038,1.79417,43.265472,48.749985,1.2531153e-11 500,359.40845,0.0,42.94989,54.781357,2.4192595e-12 500,475.8318,0.0,49.75775,46.04172,2.5186553e-13 501,622.05743,189.99281,16.812683,50.066986,1.4106973 501,608.92053,83.47235,29.295532,157.20854,0.41714665 501,124.493286,196.43408,26.38649,48.022614,0.010527606 501,478.25122,191.32704,27.641083,48.77408,0.0072112815 501,621.12695,160.66724,18.019714,49.839203,0.0062233848 501,618.4266,114.93604,20.720093,59.651955,0.0052209934 501,423.5773,169.40749,31.96167,64.76482,0.0039594006 501,99.19197,183.67433,25.930298,46.158875,0.0015430483 501,541.35004,168.92856,25.51416,54.945877,0.0014183827 501,112.41619,344.2431,46.85224,154.62976,0.0008834586 501,612.4765,186.66626,26.670166,157.34189,0.00075306324 501,90.681046,291.26813,44.328934,178.85236,0.000347273 501,610.7933,375.41177,28.353394,128.05511,0.0002972538 501,548.63275,113.76641,90.184875,158.62155,0.00015699059 501,45.36728,198.86389,114.242355,281.573,5.966458e-05 501,1.2064998,158.09766,18.884748,128.28317,5.8285674e-05 501,587.28467,245.75574,51.862,237.71353,3.3723776e-05 501,1.0229753,383.88562,18.354628,76.491,2.6516233e-05 501,3.5116537,166.58939,58.995625,232.44418,1.7082042e-05 501,130.94208,436.24768,41.397552,64.66733,1.1155892e-05 501,0.7968685,259.37405,18.645002,78.39279,1.0621622e-05 501,555.0088,430.2631,84.07977,67.65787,7.413645e-06 501,0.9471517,304.52963,18.43294,75.73526,6.9777448e-06 501,501.17865,443.09122,40.778137,60.00171,6.428187e-06 501,611.3851,0.8515723,27.761597,63.806484,6.186704e-06 501,1.7511182,262.8238,33.451252,184.48169,6.101125e-06 501,590.2598,12.726433,48.436523,129.79654,5.0674744e-06 501,356.4371,427.5537,74.398865,71.45761,4.2798183e-06 501,3.7498472,397.83752,56.144306,96.5788,3.2797295e-06 501,1.8846884,76.776634,32.210888,164.86118,1.864963e-06 501,296.61093,427.2293,79.1467,72.98981,1.3605691e-06 501,478.97714,399.63907,115.42465,97.77203,1.1675271e-06 501,132.97499,100.02638,77.54883,155.42514,5.6735456e-07 501,0.9282284,21.261625,16.408731,107.81555,5.517835e-08 501,3.0208433,23.598444,54.644627,93.79393,1.9339483e-08 501,389.56223,1.116237,42.158295,55.393436,1.0062706e-08 501,0.8027132,5.7528515,28.850054,57.053207,1.7049748e-09 501,87.76806,4.4732146,44.069984,50.05265,5.2322806e-11 501,113.44004,4.458086,43.826515,45.839966,1.0456958e-11 501,231.07451,0.0,41.787064,53.23917,4.360589e-12 502,567.7935,189.19803,33.673218,72.66086,93.99473 502,562.00775,209.65326,21.117188,46.76306,1.0037016 502,540.4248,198.0714,34.961243,63.884354,0.087795876 502,613.1001,110.76628,25.369934,68.833084,0.04207264 502,622.9546,204.22406,16.192078,46.415222,0.032792456 502,489.1087,223.10857,25.095215,51.118668,0.02708123 502,244.03835,208.44101,24.46901,47.209152,0.025006084 502,603.94617,118.427376,34.282104,146.44717,0.0053848564 502,473.78265,222.01576,26.786407,52.396072,0.0037158204 502,222.55081,171.98248,40.476715,95.59097,0.0018766561 502,148.66637,167.25291,42.558456,115.078384,0.001735182 502,621.2062,157.00398,17.94049,70.41545,0.0012402693 502,618.65204,230.21768,20.494629,79.37601,0.0011153057 502,603.6544,227.07782,35.49225,192.91339,0.0004899279 502,610.3489,406.91104,28.79779,99.19672,0.00031341152 502,617.5819,319.3249,21.564758,83.31311,0.00013703546 502,1.3019345,398.3831,18.321886,71.62811,7.20284e-05 502,524.2737,115.231,111.401,225.9691,6.370126e-05 502,1.8003093,85.58289,19.959965,128.00827,4.3481905e-05 502,1.574961,159.45584,18.874817,121.35275,2.5074343e-05 502,570.1267,361.1765,68.84125,133.02411,2.1815944e-05 502,1.8935857,340.5057,33.64911,148.35172,2.049047e-05 502,0.98937017,315.04947,17.758001,69.418335,2.0237268e-05 502,3.7066765,110.02157,57.442715,206.04257,1.2136556e-05 502,611.5908,0.0,27.555847,63.735184,3.6654037e-06 502,3.8229363,228.71016,56.81851,229.83742,3.6176598e-06 502,6.343226,426.22778,70.24373,73.02359,3.4184222e-06 502,1.6326522,441.27335,22.016813,61.81897,3.0143826e-06 502,496.04282,426.10968,72.51358,71.21408,1.4063068e-06 502,421.07272,424.97238,73.2001,73.84039,4.7909003e-07 502,49.562828,447.67783,42.438004,54.555298,3.8138586e-07 502,72.77809,431.0992,72.56995,68.53714,2.666232e-07 502,447.41428,60.757256,77.047455,207.26599,2.2410427e-07 502,1.3195069,18.961212,14.409499,125.31366,4.974358e-08 502,2.0260515,14.5265045,55.647297,123.09683,4.099263e-08 502,290.9386,0.0,43.548035,51.36734,2.2456665e-12 503,388.80005,189.60129,46.009857,82.41531,98.53087 503,161.93933,195.8267,29.822205,60.7899,0.1688069 503,366.36496,187.97694,34.837128,78.76802,0.010443139 503,284.93793,233.67747,23.41092,52.06331,0.0019956485 503,340.8098,52.586468,21.523071,51.01665,0.0011215999 503,447.8298,143.64972,48.170776,110.831375,0.0007676349 503,617.4737,145.34537,21.672974,79.839035,0.0003819633 503,402.89612,91.72029,37.349213,83.95401,0.00021985866 503,612.3328,216.6597,26.813843,134.37933,0.00021379637 503,1.5451734,225.447,18.145683,73.67912,0.00013582571 503,508.1754,195.0638,27.023926,50.84662,0.00013183337 503,599.3544,127.02563,39.09784,158.41113,8.545935e-05 503,608.8298,441.87033,30.316895,63.834473,6.796048e-05 503,359.80786,154.48003,102.11902,183.28398,6.2049454e-05 503,588.0069,205.21712,51.13977,242.66795,5.7853384e-05 503,612.40076,341.77106,26.74591,138.48157,5.69382e-05 503,611.2442,86.59819,27.902466,106.36531,5.1443807e-05 503,1.1541138,391.85117,18.473469,74.42865,4.6863526e-05 503,3.8918393,145.21411,58.215454,213.96713,3.7159283e-05 503,1.0555094,253.71022,18.355705,140.3878,2.3655208e-05 503,1.2785678,120.437096,18.509418,150.66833,1.6448423e-05 503,1.7535555,342.26505,34.281452,147.69873,1.3615677e-05 503,1.4395809,73.74319,19.885876,106.72964,8.428783e-06 503,466.93683,119.113884,37.3562,88.541466,8.041452e-06 503,1.1396688,438.71262,22.69519,65.085724,7.777914e-06 503,277.86145,452.55643,39.66101,50.283264,5.9988993e-06 503,420.23145,105.92131,113.70404,180.67024,4.543763e-06 503,62.94097,446.20282,49.51264,55.39615,4.0349596e-06 503,611.8036,0.47181642,27.343079,61.40774,3.4419752e-06 503,20.189917,393.94138,128.51869,102.77057,2.8605602e-06 503,244.31956,385.7372,111.21968,111.200134,2.4391857e-06 503,401.36368,424.23975,70.98236,77.32761,1.941964e-06 503,254.41086,441.88455,43.371246,60.04712,1.8480513e-06 503,309.08804,443.216,41.36502,59.697906,1.7877385e-06 503,107.62664,446.61688,45.27906,55.23349,1.458108e-06 503,118.70659,422.7566,75.02617,76.938995,7.4525025e-07 503,352.58392,424.09818,73.41016,76.214905,6.4761434e-07 503,194.10432,422.9763,74.495316,74.473816,5.6823507e-07 503,1.1194866,19.086039,20.714485,102.30911,7.1138416e-08 503,404.00812,31.468699,32.53293,66.502,1.5046789e-08 503,320.23386,1.6635466,44.95819,48.38004,4.601891e-11 504,158.5266,169.62666,51.7614,103.09648,96.307945 504,176.76913,214.17986,29.073685,52.29213,0.14102751 504,147.16878,181.59718,32.19281,74.88927,0.026603846 504,120.70944,178.82674,36.032227,84.24925,0.008275702 504,121.29796,240.86932,29.407623,45.493042,0.0033754285 504,618.3096,221.9107,20.837097,78.18408,0.0006334134 504,616.27637,80.53133,22.8703,78.55325,0.00048979337 504,40.448425,192.32347,41.31732,68.52205,0.0004805436 504,611.81384,148.3486,27.332825,126.97601,0.0002734154 504,602.5164,211.86984,36.63025,183.91354,0.00024236606 504,239.60133,120.90899,44.382828,120.46334,8.077035e-05 504,612.4692,334.13287,26.67749,137.09271,7.3850446e-05 504,1.762859,205.0683,20.838306,116.648254,6.662746e-05 504,2.6203988,77.345055,37.930466,107.96932,5.900333e-05 504,4.316763,90.91148,60.916756,223.11421,3.4107055e-05 504,3.7559555,209.79643,56.66565,250.8503,2.5214815e-05 504,599.6338,413.5445,39.51288,88.87897,2.456372e-05 504,1.144104,384.7303,17.885504,112.96503,1.4912966e-05 504,587.3175,41.56777,51.04962,217.31801,1.1699038e-05 504,611.9392,3.656605,27.207458,60.882084,1.0399586e-05 504,252.30508,89.22271,36.52121,89.1036,6.788807e-06 504,478.5622,143.56123,32.0524,81.7594,5.869511e-06 504,3.5618556,398.43814,54.936943,94.99759,5.701961e-06 504,0.9509221,279.373,18.487513,146.14996,3.0436222e-06 504,123.35401,111.0747,134.26898,228.09155,2.8034028e-06 504,26.549992,429.04153,78.04567,72.54349,2.4309322e-06 504,202.43558,424.9189,72.46506,75.55609,7.612793e-07 504,212.95624,80.92897,110.24539,196.38896,5.7140755e-07 504,0.8244751,5.9748993,10.604033,94.73861,4.5980944e-10 504,1.9233968,5.861283,38.10892,89.33087,1.5924724e-10 504,121.940384,1.2738379,44.04138,48.794525,5.881801e-11 504,94.73528,0.75199544,41.833412,49.127384,3.7667876e-11 504,163.3089,4.054717,43.930283,47.243664,1.718493e-11 504,12.724008,2.1979656,43.08313,48.90277,4.136294e-12 505,619.10297,208.99597,20.043701,71.23447,4.1554766 505,595.6369,223.68524,25.007263,56.408478,0.046010856 505,449.42682,219.66406,21.963715,49.650208,0.017600415 505,458.81284,232.6585,25.364166,48.60182,0.0057838494 505,54.45199,193.94946,29.339241,48.692154,0.00568912 505,100.0374,203.68803,24.13279,46.067932,0.0024310509 505,1.54438,199.8785,21.843136,52.651306,0.0005227623 505,1.1840324,126.93834,31.096924,142.75801,0.000496298 505,597.6345,189.66527,41.512146,165.94212,0.000477288 505,0.6937199,237.38118,13.756577,48.150406,0.0003037014 505,1.8688257,202.78584,33.013138,172.65465,0.00016345888 505,510.7925,154.01152,35.32425,88.95328,0.0001539939 505,105.64409,87.165665,40.822327,90.14993,0.00012153448 505,611.57733,337.28464,27.569336,134.79517,0.00011936362 505,609.57465,94.008865,29.572021,175.29097,9.039468e-05 505,609.3833,441.28906,29.763367,64.23312,8.976618e-05 505,1.082487,121.51975,16.413097,60.735893,3.7826114e-05 505,0.85270184,321.75824,18.742088,79.14563,1.784731e-05 505,4.6627116,251.7047,54.97734,219.79778,1.6340791e-05 505,200.8754,117.22066,42.128098,122.947266,1.3693014e-05 505,611.88544,0.0,27.26123,69.228195,1.048963e-05 505,252.64648,139.65828,33.38687,87.54324,9.841247e-06 505,2.889756,114.67451,78.931366,223.38571,9.716357e-06 505,1.2434433,368.83414,19.08904,128.37384,5.3429867e-06 505,3.4620297,429.832,52.875557,70.76477,1.5984765e-06 505,324.28766,425.78052,72.49588,77.09769,1.3324425e-06 505,394.2431,390.52377,112.228,103.53018,1.1955676e-06 505,398.23306,441.9298,41.623413,61.620056,6.4595383e-07 505,100.46706,427.5796,72.453476,74.68454,5.874884e-07 505,33.440956,430.43872,78.148384,72.308075,5.691245e-07 505,232.20518,395.40942,112.25227,105.60382,5.2304347e-07 505,462.1594,426.23904,72.424164,73.036224,5.128555e-07 505,2.0561426,19.58183,56.594486,122.45564,4.857049e-09 505,1.4313021,9.372012,28.84776,57.74307,2.3837635e-10 506,499.51813,241.09108,19.181396,48.049484,0.968947 506,603.16833,148.29222,34.786743,125.94423,0.054715533 506,299.65717,212.45457,22.308685,53.124924,0.032478493 506,463.48715,213.45195,25.211151,64.97179,0.030402316 506,476.98083,211.80342,24.020111,55.318283,0.0045181834 506,278.7181,214.6839,22.951843,48.367462,0.0023740644 506,619.1383,249.75383,20.008362,69.55153,0.00158812 506,530.0526,208.92873,39.07538,86.49715,0.001111372 506,618.3999,125.29617,20.746765,70.84604,0.0008450001 506,590.07556,181.91423,48.452087,254.1334,0.00069131237 506,1.4000635,186.0592,12.723003,51.14705,0.00034734912 506,612.949,388.66803,26.197693,112.68344,0.00014569177 506,557.7612,115.37628,34.850403,94.72804,9.591405e-05 506,445.76767,179.76654,55.721252,115.92633,8.80774e-05 506,539.8572,224.35654,21.420227,45.420746,6.677019e-05 506,2.9855664,103.371826,46.662567,140.99097,5.824411e-05 506,1.7651864,137.20863,19.373985,124.25877,5.790323e-05 506,472.47852,171.5842,95.27136,213.88177,3.873547e-05 506,616.89087,62.9448,22.255798,87.16755,3.4773588e-05 506,1.8810116,198.44762,32.37988,172.446,2.8371147e-05 506,0.7911914,302.99304,18.80007,76.8504,4.135565e-06 506,1.1334237,342.25928,18.811867,134.75485,3.916864e-06 506,70.28421,122.26611,33.233543,78.51956,3.213136e-06 506,59.2362,82.63667,59.28586,162.78464,2.5578397e-06 506,3.932928,334.23767,57.231857,152.2826,2.4886183e-06 506,1.8674822,65.871475,18.792538,77.71019,2.4660558e-06 506,612.39294,2.7795672,26.753723,57.799377,1.9951426e-06 506,587.1488,40.519474,51.190857,204.27118,1.7041484e-06 506,228.9875,444.19714,41.198746,59.36969,1.6751125e-06 506,1.8414104,419.3806,34.95719,81.19992,1.5974585e-06 506,3.1792417,30.54927,77.131744,123.21524,1.5461911e-06 506,210.97398,392.96072,109.04344,105.470276,7.5085467e-07 506,22.040016,431.02908,75.23225,70.721436,6.245866e-07 506,86.4763,425.98657,71.978775,75.85077,3.435238e-07 506,168.91719,427.06604,72.496826,71.87897,2.466271e-07 506,0.7541691,13.836553,10.567108,75.99914,1.7836913e-07 506,1.9444858,14.821752,32.17192,70.3809,1.17223244e-07 507,150.13846,227.28964,36.30237,64.17844,2.538085 507,385.06085,249.40857,19.071838,46.29077,0.2549833 507,143.7126,217.09053,23.836365,55.58751,0.054982834 507,444.14886,232.91699,32.660217,83.8728,0.007332347 507,619.91425,239.02922,19.232422,51.18907,0.0072009736 507,601.0051,126.357864,37.041016,150.50182,0.0064585917 507,128.46252,217.85316,25.998795,53.30095,0.005174855 507,586.04456,228.37706,22.708252,52.206863,0.0050890166 507,408.61212,251.0964,21.084015,50.152954,0.004017617 507,610.9411,245.22957,28.205566,149.57954,0.0038539886 507,562.6558,175.87437,55.207214,123.87489,0.0025937483 507,424.1176,226.45285,31.82959,77.30173,0.001112181 507,618.1722,107.82803,20.974487,77.70795,0.00064413104 507,586.36194,122.53071,37.701538,87.33488,0.00042169818 507,1.2111427,145.46938,19.916338,125.16713,0.00021475539 507,301.54138,125.2603,22.422882,45.051743,0.00010603906 507,0.9328911,210.80295,18.039661,136.77188,0.000101674756 507,327.59305,173.85144,77.3457,155.05502,6.814447e-05 507,608.62537,439.49423,30.521301,65.655365,6.042964e-05 507,3.341802,49.632652,56.007538,199.7868,2.4751324e-05 507,1.6698576,88.40068,17.835928,66.73096,1.72127e-05 507,3.7428548,153.45213,57.63556,222.2263,1.6983344e-05 507,1.5991887,240.45595,34.02886,191.72008,1.1372604e-05 507,572.07837,366.1871,67.0683,124.5777,1.12534735e-05 507,614.11993,2.669349,25.026733,55.29926,1.0916876e-05 507,437.98398,197.96254,34.351044,66.82243,1.0508354e-05 507,1.1721606,327.6445,19.229464,136.7442,5.3392987e-06 507,612.76373,15.745996,26.382935,149.05827,4.8053257e-06 507,5.9981055,359.6224,79.06525,129.88828,2.654649e-06 507,2.5779102,13.073747,34.754173,75.876595,1.5203046e-06 507,2.1776237,419.8378,34.322083,80.23523,1.4250022e-06 507,128.52774,8.922015,40.664276,45.318226,6.0779627e-07 507,100.62299,9.332489,42.662117,49.76028,4.7243853e-07 507,536.74176,429.15778,83.31067,72.997345,3.9964624e-07 507,77.04539,7.862818,39.281403,51.732994,2.7025948e-07 507,100.27366,428.64597,72.63883,73.4993,2.6197242e-07 508,329.28592,243.03242,18.541382,47.676254,0.08225067 508,49.598778,213.39268,37.743546,69.07829,0.07485382 508,594.93164,232.39774,41.13391,70.902466,0.041740984 508,622.1437,245.08954,17.00299,58.79651,0.027126763 508,546.2416,105.99846,36.58441,83.977356,0.01580804 508,376.9218,229.08673,20.433807,69.2236,0.011147819 508,404.03598,224.68793,32.821228,84.03345,0.009605514 508,313.18442,206.17883,39.88681,92.480194,0.004412708 508,390.74875,238.52943,18.541168,54.719284,0.004340414 508,129.67868,208.27798,20.853699,45.59639,0.0032809102 508,353.74,243.90094,23.568207,51.94458,0.0030961814 508,374.6622,209.56432,48.53839,105.66237,0.0014344575 508,586.89496,222.05188,51.208923,221.7023,0.001332198 508,546.0701,154.6878,62.426575,140.30014,0.0007961427 508,603.884,104.21422,34.019653,187.57323,0.00078102323 508,238.48907,95.53743,22.720306,48.765167,0.0004173111 508,1.6808057,198.8813,27.805933,125.34062,0.00018550207 508,146.86992,98.96564,24.397217,50.719986,0.00018368255 508,562.3378,122.64909,40.620483,98.43515,6.913335e-05 508,327.63828,177.35654,34.275208,74.005295,6.0788352e-05 508,4.3719563,194.50055,57.911263,205.89008,5.4658223e-05 508,480.53177,138.12224,47.50229,134.81468,3.8238253e-05 508,292.16772,184.34167,109.87094,178.85162,3.28919e-05 508,0.83415854,249.11365,19.705236,144.03323,3.2225333e-05 508,397.82913,76.494064,38.990723,140.24281,1.3682388e-05 508,586.4622,395.9528,52.68445,101.47519,1.2197787e-05 508,610.6655,23.384264,28.407227,138.5606,9.536281e-06 508,1.1481991,341.1837,19.708002,135.01941,7.781565e-06 508,1.2884912,104.53581,19.599709,158.77342,7.04489e-06 508,612.80676,0.83059245,26.339905,57.515404,5.2634628e-06 508,1.311534,44.31911,18.766003,74.79137,5.0276267e-06 508,3.7582603,337.47037,57.697914,151.41928,3.3010238e-06 508,396.44437,183.85735,36.578766,81.81163,1.7325109e-06 508,1.9029403,419.88345,34.950764,80.81177,1.6616266e-06 508,2.605324,27.392422,58.693844,249.90189,1.3443794e-06 508,2.450109,11.969027,55.7813,73.513466,1.0675521e-06 508,33.53145,430.41153,77.35691,71.465,6.058345e-07 508,5.606468,24.145853,111.26416,101.662315,4.0799986e-07 508,60.331207,16.163317,82.33823,71.82771,1.1756448e-07 508,122.46391,12.915179,83.936966,79.42781,4.2445485e-08 508,257.29266,2.4841764,43.774414,52.385212,1.0768397e-08 509,428.7216,249.93542,29.299774,54.511444,1.2239696 509,203.04553,217.86288,35.400986,57.49237,0.036615275 509,162.61876,206.98698,22.115158,49.440628,0.016963739 509,191.29091,233.26488,28.948074,46.926804,0.0068343836 509,115.297516,209.537,40.774826,90.62297,0.005889494 509,552.40717,236.65485,45.110535,107.50061,0.004503935 509,617.51733,225.34836,21.328491,82.99234,0.0033245597 509,470.30945,250.8799,32.180878,69.71431,0.0012604542 509,134.72289,243.68173,23.111572,46.311127,0.0012139954 509,583.77466,181.05814,53.20172,225.48041,0.00051523815 509,484.33026,218.65157,38.202454,108.27757,0.00028570186 509,597.36206,72.42075,41.07196,183.95715,0.00016785527 509,610.59296,261.64764,28.44159,115.96008,0.00013654276 509,1.2251059,168.73033,18.586826,73.71973,0.000116825526 509,1.0281446,202.69916,17.586065,128.94598,0.00010885392 509,612.7671,330.01627,26.379578,143.23749,0.00010709764 509,1.9015414,114.3606,33.360435,174.19955,7.637724e-05 509,609.5182,441.03412,29.628479,64.46622,5.2133517e-05 509,435.29593,179.92519,36.08539,72.048645,4.5157012e-05 509,3.9309523,187.2199,56.826,223.32265,4.1917392e-05 509,505.8222,210.07225,83.614624,156.22926,2.5602318e-05 509,1.379581,266.7986,28.983173,151.11224,1.4336954e-05 509,1.0802361,100.73249,18.618818,81.47163,1.4143112e-05 509,610.07465,27.935379,29.072021,134.59367,1.0300801e-05 509,1.4879175,65.63578,18.299107,69.2154,6.258724e-06 509,1.3456495,392.01996,18.414614,74.86676,4.702165e-06 509,3.3463266,35.66266,78.58176,220.71298,3.5654882e-06 509,360.4777,426.73706,71.63953,71.086975,3.2791356e-06 509,1.4025326,5.142152,34.841736,57.237083,2.7798255e-06 509,2.0817513,12.193197,53.168156,115.18261,2.4809121e-06 509,1.9329932,419.61456,34.9398,81.23154,1.6748505e-06 509,613.54645,2.4488478,25.60022,58.064987,1.6410279e-06 509,5.747108,356.9376,78.28059,134.3269,1.5605489e-06 509,64.185524,7.638522,41.980118,54.84554,8.107177e-07 509,297.78217,25.913729,108.17166,104.62648,7.3013916e-07 509,86.94507,9.820661,81.434265,77.8823,1.3791345e-07 509,260.02713,12.776257,81.96207,80.681915,4.413834e-08 509,211.81955,6.0491605,41.911346,59.610424,3.0605825e-08 509,143.46944,6.3407097,41.388504,60.325504,2.8444202e-08 509,318.5913,8.949011,45.560516,51.789406,2.4794481e-08 509,239.37544,7.4897137,41.710373,56.857307,1.7475266e-08 509,185.32516,5.8388414,41.03659,58.47346,1.0941793e-08 510,498.70038,211.43196,26.93982,58.15944,0.6983386 510,460.6546,207.0748,23.462708,47.580154,0.06309944 510,484.70914,205.38391,21.24582,47.35919,0.015388956 510,411.49197,228.93813,50.623077,110.37236,0.002691067 510,443.12448,256.00668,21.695312,46.85916,0.0026098364 510,611.0689,187.89078,28.077759,105.88544,0.0010046061 510,122.04195,193.09186,22.83667,47.748535,0.0005234612 510,229.89195,183.97745,25.025528,58.007996,0.00021151928 510,162.6711,178.14256,30.432037,55.635574,0.00017144595 510,1.370606,213.759,13.345997,58.739532,0.00016408502 510,616.4004,86.19965,22.746277,91.07404,0.00014540319 510,611.99225,242.42516,27.154419,123.35838,8.778817e-05 510,587.39655,65.95638,51.165344,244.88559,8.2486426e-05 510,612.63763,339.8087,26.509033,138.47504,6.64939e-05 510,609.18,441.85303,29.966675,65.16449,6.096554e-05 510,1.4874232,105.410774,14.640083,47.891975,5.015482e-05 510,1.1109383,263.58084,18.35469,75.855316,4.6422618e-05 510,2.0816228,220.17232,32.224613,177.3296,2.8068705e-05 510,2.0633643,132.79256,28.255096,153.37157,2.3477614e-05 510,610.65735,1.9881055,28.489319,137.51996,1.5017306e-05 510,1.3216553,47.1216,20.404148,98.089386,7.647608e-06 510,1.2250847,350.348,19.560835,132.22269,7.591597e-06 510,0.93141276,325.35385,18.75151,73.33444,5.468795e-06 510,1.4087899,123.23557,18.66107,79.83013,4.242295e-06 510,3.9273064,336.67297,58.038677,155.23001,3.9138913e-06 510,2.861206,17.711042,59.746815,221.18542,3.8428198e-06 510,30.913523,459.08856,40.864853,47.144165,2.4479993e-06 510,2.0645401,419.45367,35.001514,81.26276,2.1282465e-06 510,1.7706836,6.280316,23.565308,68.212105,1.4005221e-06 510,247.85384,8.336758,42.911148,60.6312,1.2014906e-06 510,172.6973,9.757939,41.97943,57.49399,1.1179873e-06 510,92.40763,392.30444,113.47909,108.584015,9.846933e-07 510,271.7212,7.126901,44.70163,61.738144,9.046591e-07 510,155.09512,422.49738,72.35744,78.15939,8.9754195e-07 510,125.091774,440.97574,41.71032,62.20172,7.9108605e-07 510,203.95486,9.161222,43.24524,56.693665,7.3017674e-07 510,355.9437,5.064704,42.612,59.520744,5.1390225e-07 510,143.45807,8.098962,42.055405,58.93802,4.865826e-07 510,97.84396,443.3859,42.284317,61.628815,4.57959e-07 510,41.04862,426.42142,77.73624,76.983795,4.485132e-07 510,257.12595,423.2845,72.24277,78.00037,3.9666475e-07 510,42.469128,15.18057,79.249664,68.673645,3.6294213e-07 510,315.10306,7.2779984,40.67334,57.21039,3.2040649e-07 510,116.54971,7.2350683,41.20346,62.147026,1.8791302e-07 510,19.664824,9.29805,42.84027,58.92099,1.2309495e-07 510,380.83423,9.874366,82.05032,77.09467,9.301251e-08 510,88.92333,10.679128,42.145348,58.081905,6.388689e-08 510,580.9994,3.884349,41.08899,59.97655,3.267183e-08 510,404.86496,5.493716,42.713806,47.632065,1.4322844e-08 511,150.79768,194.16269,62.595886,80.84442,5.044621 511,308.11893,191.51945,33.46936,76.454025,1.3661331 511,162.09175,200.63342,29.11641,50.315674,0.036603898 511,546.5131,187.83844,23.214783,50.60211,0.026836948 511,610.3653,239.91808,28.22705,89.55031,0.024863683 511,503.34286,192.41518,25.261261,54.623184,0.022963475 511,181.94028,164.65414,42.762207,83.042786,0.018483091 511,282.7427,195.52818,37.956726,70.76448,0.008262722 511,328.2478,181.51982,39.1261,76.36336,0.0036900775 511,530.43726,108.87227,23.021118,45.37036,0.003261229 511,618.0333,200.1549,20.928589,69.24396,0.001763677 511,591.87085,222.33664,47.275818,228.19534,0.00066594186 511,605.3997,189.05376,24.758606,50.343307,0.00040784047 511,456.02237,206.34906,24.731445,53.511475,0.00023873028 511,617.9928,99.54738,21.15387,78.057785,0.00015057546 511,613.23553,381.95105,25.911133,120.213135,0.00011339057 511,16.468943,162.3479,38.670563,82.959366,0.00010362189 511,516.7052,99.178246,44.229614,147.4888,9.1050584e-05 511,608.54517,5.6555405,30.543213,61.405678,7.4740565e-05 511,600.0521,71.97862,38.88495,196.91731,7.194629e-05 511,585.7357,178.46394,29.151428,55.60544,5.2335316e-05 511,4.05035,135.46494,58.50534,211.38815,3.265106e-05 511,1.5055867,169.93672,19.608227,116.373245,3.1770294e-05 511,280.49744,60.430367,79.16333,195.09848,3.1160613e-05 511,0.77460694,244.25214,18.790977,134.19174,1.5842706e-05 511,0.8784318,332.93488,19.530638,137.63986,9.543414e-06 511,584.91876,14.525144,53.488037,114.81944,7.705693e-06 511,306.58044,77.68709,37.42752,100.4445,7.1643663e-06 511,3.2613592,331.54346,57.581898,153.97452,4.0604527e-06 511,1.6611768,418.60538,35.139656,81.45172,1.8082909e-06 511,579.4167,7.0189815,43.307007,59.303185,2.6987058e-07 511,465.02505,13.279499,80.892426,72.199234,1.4294142e-07 511,540.30725,6.9370737,42.229248,62.725426,1.413993e-07 511,439.27075,8.9231415,41.40988,56.68061,1.2320064e-07 511,511.69995,8.491312,42.582214,60.318382,5.6593517e-08 511,2.754095,18.760008,55.716858,122.22034,4.9325415e-08 511,419.03793,8.9145,39.14084,50.673058,1.8057971e-08 512,596.2921,178.75941,42.854553,92.643906,4.8001795 512,405.84814,202.77263,46.652008,61.086533,2.5410237 512,321.18945,203.53195,32.83374,52.761627,0.4369216 512,580.6295,203.96323,37.037903,61.180756,0.08681832 512,617.36346,215.90138,21.783203,73.63411,0.01177612 512,620.78033,180.09578,18.366333,59.29451,0.0051046386 512,587.09186,167.25685,52.05481,288.52496,0.0009571663 512,617.74664,395.51447,21.400024,79.40549,0.00019152055 512,617.3942,328.0097,21.752441,85.9212,0.00016026979 512,0.76503825,262.8324,18.659863,78.16214,4.6866568e-05 512,609.4206,438.9363,29.726074,66.197815,4.2600812e-05 512,3.5874236,198.6634,57.07586,218.52492,2.9851179e-05 512,1.3572096,93.70104,18.35158,68.85464,2.5431053e-05 512,572.0293,363.1443,67.11737,129.30103,1.6295817e-05 512,1.8126684,179.17407,28.334618,131.41681,1.360353e-05 512,0.9794621,404.5948,18.427856,74.29559,9.1599395e-06 512,599.26794,7.4602637,39.878723,78.80504,7.297371e-06 512,128.74394,111.3837,72.26767,163.83554,4.6157215e-06 512,0.9030046,344.2361,18.320078,75.2865,4.348659e-06 512,1.1708854,301.70996,31.93392,184.01215,4.1880508e-06 512,7.090407,396.40576,90.58297,98.97919,1.8349779e-06 512,476.19684,390.8441,114.53076,107.03583,1.0899831e-06 512,1.9265894,57.667007,33.30312,175.53456,9.095017e-07 512,455.16595,423.82346,72.67511,75.44214,6.9992024e-07 512,542.9989,426.0182,75.28833,76.181,6.3724815e-07 512,79.44883,425.69867,72.30282,75.614624,5.63656e-07 512,120.084274,424.9877,72.938446,76.56409,5.018331e-07 512,236.07764,431.05658,74.42737,70.35614,4.7482888e-07 512,2.4570427,27.610428,56.292763,101.99132,2.2348789e-07 513,145.63997,189.61449,56.12001,95.93034,26.99503 513,2.5153403,227.1038,46.961655,170.0996,0.123865634 513,163.67763,188.12527,26.394333,48.62007,0.009706273 513,1.2829607,233.97935,21.838795,103.390945,0.0047527025 513,0.92992026,289.62106,15.712833,74.68472,0.0036207235 513,617.5715,214.35368,21.575195,84.90016,0.0012213787 513,609.4731,93.4645,29.673584,159.2974,0.0011157301 513,530.46564,205.49435,23.411499,46.922806,0.000768985 513,245.51524,74.79158,22.422867,49.560493,0.00051008316 513,257.79413,219.90944,49.831024,145.45573,0.00050685555 513,621.6233,292.0241,17.523376,54.33539,0.00037444194 513,602.234,210.14757,36.91266,177.49785,0.00020661949 513,611.3814,311.30133,27.765259,151.64722,0.0001398446 513,232.70006,71.40901,38.436295,102.7133,0.00011585638 513,608.72876,441.3983,30.417908,63.21216,6.1343926e-05 513,0.9974341,159.21252,18.565063,82.9673,5.4847664e-05 513,1.1123796,85.056915,18.586329,80.147095,4.557755e-05 513,239.70331,347.74594,37.538452,62.29892,4.0773484e-05 513,571.6391,359.10837,67.50757,135.259,3.5693436e-05 513,1.5281544,299.41794,28.735218,183.83154,2.0935537e-05 513,89.42396,121.860146,148.94046,247.94025,1.7291839e-05 513,233.15816,57.963753,75.982956,230.72388,1.7063838e-05 513,1.9900619,35.69655,62.624493,319.38477,1.1147342e-05 513,252.23448,56.176376,35.943497,83.454865,9.326752e-06 513,1.3682325,443.94067,20.648531,58.09012,3.3628705e-06 513,4.1472316,342.44388,79.58855,142.07166,3.1130671e-06 513,267.32083,74.84755,37.49887,100.20587,2.4194699e-06 513,613.61206,2.000687,25.534607,59.643143,9.087734e-07 513,0.8445516,13.173542,10.106831,82.68283,3.2191585e-07 513,2.1096826,23.765957,34.244087,152.92691,2.8546341e-07 513,1.7079297,8.510565,28.637178,55.340668,1.8612724e-08 513,263.57523,0.0,43.455566,47.684963,2.399976e-11 514,426.2942,175.53636,47.21289,111.99098,35.993813 514,271.0172,250.16486,52.96765,152.74619,2.982356 514,563.8136,209.8695,34.788452,72.08945,0.20439707 514,354.17047,310.57068,44.756012,59.32669,0.0760817 514,156.35321,329.95746,24.069717,50.893738,0.02770086 514,615.393,210.39542,23.516296,74.605225,0.015874939 514,185.51099,328.15292,43.580276,60.407135,0.0038493276 514,584.80914,239.48909,25.31012,49.93199,0.0029070296 514,254.3929,118.9,44.770493,85.951256,0.0025375371 514,439.8035,163.2285,29.778381,66.12372,0.002037966 514,105.54663,245.98396,82.49872,168.9001,0.00075911137 514,600.8529,118.32224,37.410095,193.72433,0.0005914321 514,227.831,185.02147,139.04239,261.78857,0.00026151584 514,240.69058,75.46106,87.063934,199.35254,0.00019692427 514,114.13583,333.55545,24.976028,56.106995,0.00017468205 514,612.2481,365.57034,26.89856,130.00351,0.0001478938 514,611.8109,243.96494,27.335754,143.06393,0.00014027672 514,406.28116,144.78284,105.098236,186.73364,0.0001245334 514,3.256662,386.69522,60.23759,109.605194,7.949378e-05 514,60.419716,337.80447,35.789215,71.3757,7.758992e-05 514,605.82477,36.38818,33.3219,148.09627,6.0413506e-05 514,560.8881,220.66096,47.43506,169.81111,3.465589e-05 514,0.9550859,265.99533,16.463528,139.91254,1.6744105e-05 514,1.1515471,419.03293,15.147843,81.8577,1.4753416e-05 514,559.8529,47.34646,37.49402,114.140205,1.1716132e-05 514,3.4188802,209.62036,58.340366,239.59766,1.1358187e-05 514,1.1165861,116.60447,18.458048,128.32004,9.591188e-06 514,558.1676,21.891582,78.151245,205.46024,4.6654295e-06 514,2.0748813,151.99146,31.928709,173.42188,3.4576356e-06 514,607.8205,3.7255535,31.326172,61.52162,3.2930625e-06 514,1.3835946,40.43055,18.868105,138.02972,1.3289444e-07 514,2.4928727,33.80417,59.69955,227.14597,8.625598e-08 514,257.77942,3.6601336,42.260895,47.938923,2.3459856e-08 514,366.48486,5.6044436,42.807953,53.053604,1.6733864e-08 514,204.35323,2.5019956,46.06021,45.344196,8.955027e-09 514,455.42532,7.1990724,42.93051,48.414757,6.1429075e-09 514,1.4039177,13.080654,36.745777,76.49071,5.918347e-09 514,430.15057,7.9577312,42.28293,46.59881,3.8100594e-09 514,173.44272,3.6568182,40.232162,50.76035,3.938893e-12 515,452.38162,204.03305,45.011505,89.21698,65.937645 515,299.5765,264.3986,51.138794,146.29636,8.545871 515,385.8948,317.98782,33.26303,49.69217,0.41137138 515,599.9058,215.3872,33.06073,79.20917,0.087183155 515,588.1121,187.50171,49.119812,234.0567,0.026701324 515,0.71007246,138.37346,30.67516,177.05501,0.023271188 515,403.2616,314.00623,37.988556,61.940308,0.0054824557 515,148.27242,358.44543,22.10054,48.256226,0.004693403 515,0.0,134.87889,13.937276,58.999634,0.0034692464 515,613.25494,259.77185,25.891724,116.300476,0.0030206968 515,220.28946,337.91623,39.70282,63.726074,0.0023983724 515,298.12018,144.3356,33.824524,74.03264,0.002126638 515,0.0,214.80107,43.458023,198.85542,0.0018380136 515,517.4888,392.38235,26.22876,58.170166,0.0014590101 515,582.8126,376.29108,55.128418,108.46649,0.0013843471 515,280.07666,77.24305,46.59247,155.12799,0.0009834389 515,137.59482,268.3073,79.44139,164.76776,0.00074801274 515,426.82013,175.26024,90.140686,176.39656,0.00045909188 515,615.76404,331.15515,23.38263,90.97977,0.00026469745 515,504.38956,391.1,24.366241,52.127594,0.00024407369 515,608.2343,438.38965,30.912354,64.641205,9.839593e-05 515,73.69641,379.39563,38.5511,85.71106,8.635102e-05 515,600.3845,51.79059,38.099426,241.99323,4.941045e-05 515,252.71579,49.484077,117.901306,295.11877,4.780287e-05 515,607.9937,9.7339525,31.152954,116.43985,1.8575793e-05 515,1.1827182,64.08322,19.346283,161.38426,1.2614355e-05 515,2.416079,377.48773,58.867077,111.76364,4.8163733e-06 515,1.5271517,72.793,88.36104,327.57474,4.5213287e-06 515,1.3383529,441.05215,20.734987,61.39917,2.819619e-06 515,0.44201988,328.56467,20.85573,166.10669,1.1900369e-06 515,2.284489,11.878952,57.528637,119.75766,2.0770976e-07 515,284.45892,4.7910986,45.0748,47.262978,1.4983019e-07 515,1.2543522,9.376663,13.280078,84.180595,1.3160496e-07 515,449.44464,10.703934,44.57773,48.952003,3.6752287e-08 515,2.4422657,2.7116342,39.339878,56.68853,3.2835633e-08 515,217.67851,0.44700032,47.076065,51.58529,2.0338604e-10 516,443.2269,203.04651,46.42685,87.869385,32.029648 516,293.39417,255.08266,51.266785,136.21965,8.112278 516,0.0,133.58246,45.542454,265.8794,0.38021186 516,603.3921,246.27487,24.675537,49.36853,0.017930422 516,582.6609,216.94073,32.494385,71.00687,0.006796986 516,146.93173,277.261,47.13359,119.6611,0.003352977 516,378.23343,304.83392,34.973877,56.78125,0.0032974717 516,3.4997592,175.38075,34.64308,100.43196,0.0024349976 516,284.75934,127.96141,40.03714,83.52165,0.0021187027 516,609.54156,200.05943,29.02295,116.51524,0.00197028 516,504.65054,374.28003,37.162384,79.78052,0.0017036897 516,0.75813234,124.47346,20.181393,72.06493,0.001442323 516,0.78997886,251.67136,14.458901,51.835175,0.0013696159 516,584.90985,214.13467,50.523743,210.99435,0.0010855353 516,307.74747,242.17392,30.60962,77.00864,0.00094580225 516,0.47178304,280.6253,15.213612,53.82831,0.0004844335 516,568.2028,348.95505,68.84363,127.88678,0.0004832864 516,2.9913225,228.40488,30.659248,96.12579,0.00037828853 516,415.89212,168.79366,96.15854,172.32454,0.00035410604 516,616.48083,66.88262,22.665833,84.941216,0.0003035025 516,610.4847,371.96118,28.661987,123.00061,0.00024847206 516,109.84321,235.22256,126.7611,209.49063,0.00021648825 516,0.83415043,245.61913,89.774376,218.36256,6.862231e-05 516,599.2297,57.65059,39.235657,233.9954,6.827118e-05 516,246.82918,52.866188,120.84465,294.91434,6.825751e-05 516,0.23999675,267.99338,27.597286,174.47882,2.2355202e-05 516,2.7853842,380.67508,56.894135,110.886505,8.934005e-06 516,36.831734,418.50406,82.0377,78.99313,4.5168554e-06 516,581.30994,56.45715,42.473755,129.46947,1.6425436e-06 516,1.0216976,51.554863,30.36596,190.78519,1.3825854e-06 516,598.97754,5.484033,40.032715,85.638145,6.1736887e-07 516,1.2939466,7.9500456,13.598113,83.84028,3.158629e-07 516,2.0890203,1.4486394,40.62631,58.65752,9.859464e-08 516,2.2251515,7.3365693,58.579628,134.89198,8.607585e-08 516,464.22815,9.301083,43.390625,47.729523,3.0434332e-08 516,218.02722,0.91241866,45.8761,50.544632,1.3438281e-10 517,51.141,130.91579,71.81851,233.78355,99.465996 517,483.99042,196.53438,41.841614,93.84807,58.151012 517,336.95084,249.05052,53.700195,122.74654,11.29789 517,49.136475,122.68865,47.73255,84.31078,0.40951246 517,610.4999,212.87628,27.10553,63.537018,0.13601777 517,412.0688,298.3207,41.201233,59.919434,0.027988127 517,73.71482,188.2767,25.045326,71.688324,0.0123701105 517,597.3799,172.48839,40.47223,189.05574,0.0068417713 517,331.4377,128.6286,39.01367,78.59006,0.0030090986 517,2.5268035,63.94436,38.533554,135.67944,0.0022143063 517,74.3133,221.74506,33.627968,96.09778,0.00096855056 517,150.30223,329.62445,33.082443,66.47781,0.0007861069 517,603.4726,46.55211,35.674072,101.77542,0.00058511185 517,451.91742,163.37415,94.33038,175.35007,0.00047149538 517,1.704196,169.96558,36.951267,234.15265,0.0003884933 517,294.71652,160.37794,131.9372,263.60687,0.00038281633 517,607.33374,313.10193,31.812927,142.99838,0.00029363358 517,614.22784,268.0687,24.918823,106.63739,0.00024131873 517,608.968,84.31604,30.17865,180.03033,0.00016566414 517,584.1235,378.2137,54.54132,117.71796,0.00012428993 517,558.1751,3.0727735,80.97156,274.31534,8.463837e-05 517,2.0790381,22.598074,60.49356,292.3388,3.7752958e-05 517,3.613397,387.17377,54.305004,109.04697,2.0270183e-05 517,304.216,47.47412,86.841736,225.28922,1.860405e-05 517,1.2362086,307.08414,21.028372,145.29865,1.1210669e-05 517,1.5679411,442.7158,22.006874,60.594177,5.564948e-06 517,608.666,1.8389518,30.480652,63.189514,2.8937607e-06 517,1.6857032,9.052734,39.142197,93.687904,1.4928818e-07 517,286.24783,0.9732227,45.846436,50.09853,2.2498414e-09 518,17.771315,222.10199,102.009285,266.1611,99.70917 518,185.40889,145.90395,75.4193,206.90767,99.685776 518,563.4966,200.44197,43.313354,88.61659,3.7983615 518,429.08304,252.99597,49.60379,109.92871,0.6113999 518,81.91384,332.12457,54.934563,140.80185,0.34587657 518,193.66394,144.97688,49.37419,93.54109,0.25234985 518,426.27115,134.43672,39.54245,75.55408,0.03566743 518,122.68099,214.66837,60.397835,163.01108,0.024994738 518,208.60455,227.31165,39.699463,100.73398,0.0110765705 518,210.23029,198.16493,29.177689,66.13234,0.006912394 518,65.83072,274.03,25.794266,67.81079,0.0018858092 518,266.72797,322.51746,31.959839,60.65973,0.0016342538 518,4.0521226,382.31543,55.969883,103.23291,0.0004680199 518,535.1903,161.7618,94.05005,178.8929,0.00041075042 518,44.45612,270.61823,38.619305,110.53195,0.0003672196 518,143.64015,110.2615,31.850098,67.85192,0.00019378663 518,599.2886,295.45166,39.858093,194.6123,0.00018369411 518,610.0504,440.2737,29.096252,64.72522,0.00011893923 518,605.7979,1.6283399,33.348755,61.39527,8.119822e-05 518,107.77823,80.712814,83.28905,226.30156,7.9082514e-05 518,1.5504631,201.93857,18.745531,134.0635,6.289695e-05 518,599.40265,80.751656,39.74402,203.90561,4.7337955e-05 518,401.16385,58.293766,81.10101,216.8519,2.9000548e-05 518,1.0776831,438.68588,22.828018,64.5874,1.4704952e-05 518,584.45306,8.603835,54.453247,118.39124,9.024913e-06 518,1.8982537,67.01004,34.772995,216.76706,2.0682826e-06 518,1.337544,37.56427,20.090279,134.87709,2.2753616e-07 518,1.8506429,12.432015,37.576466,83.51094,3.9734907e-08 518,500.40533,6.0063834,49.045288,55.99508,8.630695e-09 518,366.91483,0.0,45.664185,59.50832,1.5657043e-09 519,352.13928,230.76642,93.577515,226.78915,99.84823 519,328.5183,157.87694,68.57312,178.89735,94.801956 519,442.83377,248.70467,44.41989,73.91737,0.5177622 519,386.1208,221.73982,32.01828,68.540146,0.11754441 519,529.99475,240.36736,54.272827,133.59984,0.045773678 519,364.0552,285.95862,38.353394,107.13138,0.008488872 519,275.15573,204.40555,54.935852,140.2493,0.006609682 519,530.48663,149.24483,41.42987,66.94701,0.006363417 519,405.22134,308.3458,53.023926,153.25583,0.0031858406 519,597.755,93.50641,40.502014,235.14047,0.0018474524 519,393.8597,314.29575,24.093384,63.483795,0.0010423199 519,609.47296,224.73672,29.673706,145.89706,0.00067673984 519,76.43542,152.79297,61.98046,157.48865,0.00064062496 519,507.30844,214.69142,128.0635,201.7411,0.00060622185 519,384.99252,274.5593,28.61145,66.946075,0.00043328473 519,1.2813518,147.69249,19.525888,137.33565,0.0001042349 519,585.1811,13.271355,53.690002,118.29752,7.284958e-05 519,599.183,411.75134,39.963684,88.32825,4.891329e-05 519,1.4068457,274.50137,32.955566,178.68384,1.8244531e-05 519,374.2801,346.22784,27.77008,75.963135,1.7102939e-05 519,1.3711679,226.31975,18.706179,123.81407,1.655727e-05 519,291.3168,109.12249,38.302917,92.61469,1.28924785e-05 519,70.35373,52.818935,44.89676,165.85242,1.2216414e-05 519,1.2653955,29.5606,36.71931,222.7019,1.0679925e-05 519,26.725618,93.06439,139.04219,268.63812,9.763434e-06 519,607.484,5.4563217,31.662659,58.406193,8.758733e-06 519,0.93305016,384.98703,19.815117,112.64511,4.1253866e-06 519,1.0027295,16.071453,19.0088,139.36896,8.8128724e-07 519,515.5986,1.7462028,43.69873,59.13234,1.0339293e-07 519,486.44247,0.0,51.697235,66.44044,3.973231e-09 519,378.86026,2.956875,45.09424,49.30059,1.3648686e-09 520,444.64407,176.94716,60.503326,160.05031,99.73389 520,603.1841,255.43996,35.962585,173.59554,70.10403 520,210.16905,258.092,28.052673,48.728333,1.7007656 520,539.92316,256.03262,44.549194,75.57071,0.057091914 520,613.7419,298.77615,23.094849,67.49176,0.04688093 520,608.0351,374.9287,31.02295,66.77438,0.033482682 520,244.26134,256.2455,24.720413,46.82419,0.023614235 520,454.011,177.24141,31.54065,56.74724,0.01256743 520,567.5978,269.85666,29.807068,61.485596,0.005417125 520,224.58513,160.15135,49.449417,134.51942,0.0042688563 520,619.5225,250.16759,19.624146,75.28743,0.003755778 520,452.4335,223.16983,25.38556,64.42618,0.0028613615 520,559.74225,183.23183,79.40442,289.9201,0.0008719511 520,465.20236,211.81186,27.914948,68.93436,0.0003532611 520,609.00745,49.947834,30.139221,162.00647,0.00017221269 520,608.318,433.94885,30.828674,72.1694,0.00015902636 520,191.79024,181.68108,44.73201,119.110794,0.00014731962 520,615.77264,146.19073,23.374023,92.95732,0.0001369055 520,1.3936393,198.00266,18.55765,124.170746,0.00013049791 520,583.09894,44.961147,55.71234,295.23077,0.00011372597 520,460.6362,246.69144,28.888824,67.05264,0.00011115024 520,3.2294922,190.37497,58.831993,230.79175,5.166052e-05 520,1.1636491,262.80615,20.188446,145.70724,4.081753e-05 520,222.47441,88.34071,43.744278,123.70314,3.432146e-05 520,2.256784,128.7818,32.484707,164.52222,3.070014e-05 520,405.33566,117.23504,136.1749,264.0283,1.723185e-05 520,1.068514,84.27278,18.463648,147.52214,1.1632431e-05 520,179.80412,108.48712,127.96181,249.63034,1.0455453e-05 520,378.15268,89.907295,73.69656,228.97647,7.411637e-06 520,610.1175,2.2503126,28.882935,83.0528,5.4220463e-06 520,1.1262581,379.79352,19.839602,117.35953,3.654841e-06 520,475.09512,423.6486,72.18344,76.962616,1.9997067e-06 520,5.4169307,352.12753,78.85436,136.64648,1.8571711e-06 520,0.63474613,10.3135195,11.505253,87.946655,2.8598606e-07 520,2.3935921,24.391888,60.10752,237.1953,2.671027e-07 520,1.1392448,20.561237,29.332384,138.92896,1.408123e-07 520,400.23328,7.154655,43.295532,47.559193,6.997727e-09 520,574.5393,0.0,60.165466,48.38693,2.7905096e-09 520,353.028,4.377502,44.69641,51.588398,1.148447e-09 521,472.64642,174.86235,49.928894,158.92366,99.84553 521,243.99026,257.13757,28.70642,52.963898,17.927244 521,279.45773,252.32387,22.630127,47.098557,0.049232807 521,565.91815,249.33368,43.23407,78.01788,0.026850305 521,480.91568,178.04602,29.521454,56.420578,0.009000378 521,262.5325,175.75504,43.608368,136.12296,0.0058349995 521,435.56903,222.85188,35.920776,83.92888,0.004125687 521,232.18675,239.98508,27.110947,53.495148,0.0017833094 521,227.14961,187.74437,43.023514,122.74635,0.00042874189 521,608.1726,263.4823,30.832275,131.9729,0.00035465896 521,598.59357,58.773438,40.365784,212.52283,0.0002301619 521,1.3520695,95.3791,19.552023,141.15585,0.00019877753 521,436.31143,163.58832,126.65842,229.01877,0.00016488078 521,488.39835,222.47636,26.676422,73.41707,0.00016446525 521,1.3395239,257.25388,21.097021,156.05988,0.00013892437 521,611.9843,336.7869,27.162354,142.18146,0.000117683434 521,3.1656284,138.99467,58.00637,227.28911,9.182941e-05 521,609.078,437.09705,30.068665,67.93771,6.3614934e-05 521,1.827732,181.58037,29.091272,136.77147,3.654145e-05 521,205.02644,164.79474,121.61369,231.04242,3.3572058e-05 521,3.4925537,269.79056,57.109005,209.19415,2.6865873e-05 521,257.41125,91.09224,42.48474,118.90846,2.6712532e-05 521,406.2385,98.38227,78.03406,217.84317,2.1928665e-05 521,426.95456,142.19627,38.484833,113.62988,8.337357e-06 521,1.1696452,21.127182,19.184763,135.70384,8.183931e-06 521,1.0827996,370.15204,19.945963,127.22119,5.348411e-06 521,608.3597,3.3268425,30.784363,129.03255,4.67291e-06 521,2.240814,22.033823,80.82614,150.88927,1.0392066e-06 521,614.3877,0.0,24.758972,50.2995,5.8364964e-07 521,1.9147502,5.356195,25.420204,66.63607,4.1155896e-08 521,12.371133,0.90675783,46.13455,49.345203,1.3917484e-09 521,495.35938,3.067295,46.082703,51.319733,1.8976695e-10 522,491.49136,172.22183,51.90518,160.36829,99.70887 522,257.4809,263.2391,27.615845,57.476013,0.72394913 522,582.9741,251.36969,42.555176,74.94702,0.090994336 522,495.74506,176.94441,31.238464,56.549164,0.027883079 522,292.01108,260.31485,23.281494,47.39386,0.025187893 522,615.6352,260.9924,23.511475,66.54959,0.024345325 522,584.61285,114.03987,52.904114,232.46126,0.003648835 522,507.70673,215.2436,27.139038,72.377365,0.0004297448 522,231.88167,193.91112,36.05696,87.49309,0.00041323746 522,263.9866,177.69612,45.76709,137.45049,0.00032186924 522,1.2046477,131.37971,18.29913,75.41675,0.00027738465 522,461.87213,170.59657,128.98663,223.25386,0.00025444737 522,449.9083,242.73782,37.550476,86.19794,0.00012030772 522,601.37024,253.29503,37.77643,207.44191,8.778365e-05 522,612.55347,375.63803,26.5932,126.29614,7.977828e-05 522,1.084707,347.7647,18.484095,77.44626,4.2366508e-05 522,1.6101823,24.579597,20.01853,124.62008,3.401117e-05 522,1.694485,103.92575,33.823902,174.35281,3.3490356e-05 522,1.3422226,261.5299,28.902824,152.70328,3.1297015e-05 522,267.53854,80.542915,44.70114,155.2063,2.1187047e-05 522,442.0302,137.22336,44.340515,137.47589,1.06171665e-05 522,3.3852751,162.61093,57.890507,223.89935,1.0441683e-05 522,1.1223372,197.97827,18.781708,126.94934,8.241355e-06 522,1.3083293,388.34253,18.783033,110.16586,6.41299e-06 522,2.6159928,33.633503,60.083572,175.63141,4.2851602e-06 522,5.364144,354.40845,78.61786,133.25647,2.9834666e-06 522,612.4793,0.0,26.667358,62.03405,1.6268419e-06 522,420.58603,82.64694,47.50528,181.42963,1.2407748e-06 522,404.06693,50.361603,115.82291,284.15414,4.526763e-07 522,2.6876986,9.8781805,60.421833,82.09596,4.096053e-07 522,447.94403,5.841177,44.175415,47.26953,7.2246487e-10 522,390.0815,2.8944533,42.333923,48.3359,5.5914606e-10 522,421.84064,4.3393493,42.363556,50.941544,1.09512614e-10 522,503.84277,1.3044612,42.84839,46.566853,4.4036358e-11 523,387.1605,263.0975,25.656586,55.560028,0.055095624 523,604.39056,313.34595,33.086487,72.174866,0.044201866 523,585.45245,287.64008,41.557312,81.93921,0.0060320552 523,365.41116,256.77744,34.95587,70.518005,0.0046021896 523,404.3108,262.62537,27.251617,53.68225,0.0029057823 523,621.8484,269.27716,17.298279,61.703125,0.0021279606 523,62.88976,190.357,32.27824,64.71991,0.0011155556 523,376.87802,155.48872,68.9256,168.55989,0.0008913611 523,611.2576,332.1184,27.889038,145.28348,0.0008099937 523,608.81915,127.29443,30.327515,130.74261,0.00077746 523,582.5778,80.86304,55.791138,283.2965,0.0006194254 523,615.9906,201.73412,23.156067,98.22447,0.00033905185 523,348.00125,190.56984,25.185059,47.9946,0.00014324383 523,385.37482,91.906815,43.483337,112.11549,0.00014011026 523,1.3472958,95.82535,19.832346,154.05133,9.077478e-05 523,395.6511,188.3971,33.43051,86.610596,7.5704855e-05 523,349.42007,185.77527,44.418518,126.52646,7.199159e-05 523,614.39923,0.0,24.747437,46.350536,6.764996e-05 523,593.35516,4.075329,45.741943,82.05821,6.3522304e-05 523,608.74603,435.9086,30.400635,70.58554,6.241146e-05 523,0.8464624,236.34183,18.754543,73.48392,4.9467355e-05 523,615.43964,31.363464,23.707031,92.66585,4.7298967e-05 523,5.9639616,140.7338,78.28227,248.28094,1.712899e-05 523,1.9384229,174.46707,35.06586,183.32883,1.7105318e-05 523,3.7582521,21.114893,55.16022,107.50378,1.290857e-05 523,1.081158,396.51273,18.234432,74.97156,9.528427e-06 523,0.7950985,291.4392,18.63211,80.46927,9.059804e-06 523,1.2595785,311.42816,29.091883,150.24841,7.28769e-06 523,5.750397,359.19742,79.336105,129.62332,1.3679434e-06 523,1.9753907,418.6296,34.714935,81.01993,9.618922e-07 523,1.7226042,31.281967,19.041113,66.014854,8.3085564e-07 523,525.7319,3.5226824,43.28595,56.769592,3.1845684e-07 523,284.1291,422.26257,71.96814,77.66754,3.073225e-07 523,556.56934,1.3890089,66.23566,56.387646,2.0637498e-07 523,108.27131,9.013807,44.847984,47.890137,1.06795085e-07 523,2.411867,6.2717237,37.421925,52.860348,8.5813575e-08 523,497.55185,4.301006,41.87265,52.503456,5.1134425e-08 523,79.90538,5.4474254,45.974594,49.25005,1.9717499e-08 523,52.99344,4.707539,43.300613,48.90108,1.573519e-08 523,24.647892,4.2834797,44.827106,58.054077,9.659948e-09 524,574.98376,277.70303,38.813538,73.15671,0.035196263 524,601.11945,284.72528,37.8963,77.83008,0.011353667 524,498.11047,182.00177,34.756042,98.85309,0.009769406 524,518.84906,256.13596,24.427856,48.180634,0.007937521 524,524.01556,261.86694,43.828125,85.23941,0.004327626 524,560.11865,273.13278,33.34967,63.01593,0.0030459964 524,194.01147,187.70674,34.542694,65.42699,0.002466921 524,1.3356096,212.68109,19.259518,71.30472,0.0016675291 524,584.1696,152.02892,53.15204,226.29015,0.0013501297 524,614.55133,318.0753,24.595337,86.77591,0.0012911397 524,609.76984,119.18388,29.376831,146.11217,0.000761433 524,615.619,201.86188,23.527649,96.59854,0.0005567826 524,566.00635,217.99866,23.589294,58.353394,0.0004652594 524,568.28094,182.67378,45.157898,117.65456,0.00038722059 524,600.58514,327.88824,38.561523,164.44415,0.00028388517 524,2.1905632,173.96004,35.457245,160.08977,0.00017829222 524,608.387,432.62784,30.759644,69.682526,0.00013493447 524,551.96783,65.83943,41.752502,129.40945,0.00012885807 524,489.83054,174.03047,73.24332,161.69142,6.926639e-05 524,1.3011695,116.15247,19.44746,131.53546,6.396974e-05 524,506.86548,239.51006,20.413086,47.050217,2.862231e-05 524,0.884681,235.85992,18.595303,149.30038,2.8609595e-05 524,609.737,11.926504,29.409668,155.37282,2.3743942e-05 524,105.01402,50.156548,43.06064,105.61317,1.873227e-05 524,2.923535,225.57022,57.548504,247.86874,1.0687017e-05 524,1.0863339,330.81345,19.799578,135.42865,7.990721e-06 524,0.9356185,1.452334,29.308815,47.948498,2.3623415e-06 524,2.50285,23.878777,58.617237,191.54578,1.5385659e-06 524,3.5824366,394.67896,56.24358,101.369446,1.1782876e-06 524,188.6938,419.38702,70.75395,78.18924,1.0272523e-06 524,93.370285,422.5496,72.57852,75.78543,6.338056e-07 524,27.973732,425.4787,76.03865,75.37271,6.2518734e-07 524,1.3928044,5.088659,57.326683,77.7079,4.5881845e-07 524,227.88376,424.1214,73.9751,74.77539,3.3521872e-07 524,1.2896436,24.07225,20.000637,78.87097,2.4090986e-07 524,114.66483,6.6888347,45.57998,45.11483,1.8275955e-08 524,250.05026,6.6233954,63.83249,50.625782,1.4256288e-08 524,188.41902,4.5598326,47.048126,51.611744,4.6493085e-09 524,427.14523,2.2812304,43.583282,55.64011,7.7592005e-10 525,583.28864,259.96976,29.562561,55.44107,48.327522 525,558.8011,191.72176,50.554077,126.32674,6.351272 525,574.4437,262.59406,18.56488,45.917603,1.0287014 525,606.2256,320.80734,32.207886,81.132904,0.018023325 525,624.93604,341.4831,14.210632,45.276184,0.003799947 525,616.0846,268.8372,23.062073,73.109924,0.0036772976 525,581.1916,187.27469,57.098755,240.93265,0.0025348526 525,571.00055,229.26698,26.555603,54.846786,0.0022031553 525,605.01984,51.74004,33.981384,76.64142,0.0017305119 525,558.11725,127.830124,25.916443,55.242767,0.00049360335 525,610.6888,160.0063,28.457886,165.44765,0.00030973565 525,610.5993,364.5355,28.547363,136.94125,0.00027031943 525,1.5504191,78.123604,18.666765,141.50421,0.00012963386 525,563.0922,12.981341,76.05444,144.82521,0.000106034 525,615.5913,85.0887,23.555359,91.416595,0.00010344761 525,1.4987875,92.50042,13.412409,50.068077,5.789809e-05 525,134.90646,57.519955,36.600098,77.218124,4.968153e-05 525,600.17957,41.991478,38.967102,226.1048,3.2952434e-05 525,3.6878452,168.63762,56.032837,226.11311,3.026519e-05 525,1.2049114,174.01842,19.164694,133.57603,3.0051755e-05 525,590.41644,5.745726,45.843384,64.07147,1.1818026e-05 525,0.86435956,258.2562,18.2425,74.36093,9.007819e-06 525,0.9772331,302.88266,19.360098,136.40585,7.888233e-06 525,3.1157975,45.85312,77.64037,211.82663,4.897682e-06 525,0.9956551,392.05463,18.71579,106.46451,2.7821488e-06 525,208.70071,423.83655,68.457275,73.73804,1.8099024e-06 525,1.5341512,19.596706,20.556425,118.06152,1.6702662e-06 525,224.1666,16.034883,123.38913,117.868744,1.2912703e-06 525,5.304906,354.5272,79.46538,133.71323,1.2730028e-06 525,2.9930487,429.33032,52.8444,69.93854,4.6754224e-07 525,344.68356,423.34744,74.23743,74.25168,4.3841513e-07 525,1.6073633,4.367168,59.816635,84.37347,3.7443883e-07 525,203.3048,4.941478,64.85152,56.155643,6.3527814e-08 525,276.52393,6.352995,63.72705,45.95456,1.4337112e-08 525,462.1745,2.432666,45.43802,55.552288,3.941199e-09 525,437.01288,3.6533399,44.108124,45.693874,8.613357e-10 525,172.20547,3.5684521,45.027893,45.36617,6.5387384e-10 526,604.1251,260.44318,29.386108,67.528046,2.6819055 526,598.07983,151.32417,39.61444,188.12627,0.07961186 526,605.7745,180.40321,30.180725,64.3138,0.022462014 526,620.2765,245.6611,18.870178,68.14819,0.017665718 526,596.25903,263.86813,21.12085,46.75238,0.004023384 526,32.22731,207.16457,22.83939,45.72226,0.00046020135 526,600.35693,303.8455,38.03784,186.50974,0.0003898101 526,1.663645,119.65477,19.118057,77.98039,0.00036033883 526,614.80255,41.45202,24.344116,96.8939,0.00016270921 526,385.8771,203.09802,33.183807,75.74844,0.0001406911 526,4.8674674,111.837555,57.263134,223.67722,7.6125914e-05 526,607.0723,432.70648,32.07434,73.66342,6.801741e-05 526,1.2720011,152.50832,19.410181,128.8423,6.461426e-05 526,607.085,0.95764977,32.061646,64.7279,4.5641707e-05 526,187.91406,314.1372,74.027405,161.8248,3.7160175e-05 526,101.15992,43.421303,37.785316,84.560455,3.1219388e-05 526,2.307832,70.63569,32.79644,173.91788,2.4051107e-05 526,0.86427164,258.89655,18.161695,77.61188,1.9014673e-05 526,1.2955225,310.52533,18.919147,135.37558,1.79971e-05 526,3.5954478,302.0838,57.08424,176.53168,9.115287e-06 526,1.1391683,391.43466,18.767689,105.29535,6.8963195e-06 526,82.56769,37.73821,74.05266,181.96971,5.5740197e-06 526,598.0328,0.0,41.11389,252.78282,4.595395e-06 526,555.02625,422.03693,80.35687,78.91513,3.2801863e-06 526,4.043441,28.572721,77.10417,150.85887,2.4537396e-06 526,490.39386,5.1542125,61.965515,133.89957,1.6669818e-06 526,347.041,387.1144,109.777985,105.803986,1.0919142e-06 526,3.0967758,426.71664,52.818798,72.143005,8.4585423e-07 526,377.07047,441.49872,41.47693,59.29956,6.465702e-07 526,103.53089,13.573757,81.35342,72.89104,6.231611e-07 526,318.71008,422.8894,72.48163,75.67816,5.398032e-07 526,69.27268,9.231636,43.952934,46.04168,3.8674654e-07 526,1.4573194,12.572845,35.354256,88.11965,3.6741582e-07 526,499.8326,2.9784765,63.99228,51.516006,1.2082556e-07 526,221.18521,4.556979,90.207184,91.2477,1.091366e-07 526,519.6854,24.046759,85.69006,254.68011,9.273599e-08 526,89.11129,8.400672,63.177666,45.067707,8.070546e-08 526,175.21808,4.157689,66.92073,56.113667,6.695008e-08 526,275.66537,4.7382765,43.009003,54.66084,2.6011602e-09 526,151.28502,2.631548,45.561646,49.03396,1.0162284e-09 527,619.5644,369.5227,19.582275,68.68039,0.007987871 527,617.1734,244.94987,21.973267,69.64418,0.0048763477 527,600.95386,276.64688,37.163635,204.49496,0.0041433587 527,377.14166,173.57477,32.86969,70.40526,0.0009879605 527,611.8778,158.89256,27.26886,133.79518,0.00075135875 527,594.3352,147.71376,32.173645,73.82184,0.00048507977 527,172.1075,173.19586,32.73053,65.49217,0.00047023446 527,586.2187,141.15907,51.248474,225.69548,0.00027369012 527,606.89014,429.1358,32.25653,78.3736,0.00017224193 527,1.6575562,129.70433,18.012402,69.23018,0.00015512209 527,98.53497,207.9117,36.607925,59.672348,0.00014448864 527,74.70542,215.6439,35.92424,57.776627,0.000122787 527,1.2211442,259.66913,18.340733,136.87494,0.00011439058 527,621.40186,85.913605,17.744812,54.79387,0.00010480676 527,112.0983,335.54584,116.44853,151.95023,7.7715216e-05 527,2.3439991,131.23326,30.634745,155.65044,7.04747e-05 527,562.1596,382.86157,76.806274,111.67438,5.8168844e-05 527,494.32434,336.2841,63.377563,132.09613,4.724041e-05 527,591.9666,69.70781,25.36322,53.859344,4.2162636e-05 527,3.2104964,242.72891,55.999676,222.95715,3.5602905e-05 527,57.762684,54.99989,32.301632,73.44656,3.5358196e-05 527,616.2692,29.849728,22.877441,84.66075,2.084215e-05 527,1.442548,352.1623,18.726944,131.47913,1.2574563e-05 527,125.22503,417.19754,75.398506,81.8418,1.1853887e-05 527,583.01764,6.7531447,55.861755,127.78395,7.60644e-06 527,591.8108,4.621255,42.626465,51.76749,4.378805e-06 527,541.86115,55.54998,80.98529,224.81238,3.7844977e-06 527,3.2532341,394.4752,56.281265,98.83493,2.5938318e-06 527,64.23213,22.256458,47.039238,135.65887,1.8421317e-06 527,257.46362,390.89417,121.33258,104.09845,1.7015534e-06 527,311.41495,452.84158,40.876343,51.537323,1.1611113e-06 527,331.4422,423.79977,72.704895,77.158936,1.0262906e-06 527,1.6138363,30.828634,18.159014,116.38436,9.138437e-07 527,526.308,426.97952,74.81647,73.41092,9.0710915e-07 527,179.85083,424.3746,73.54654,75.79047,6.24002e-07 527,5.837751,30.244858,80.49929,140.03256,6.151332e-07 527,86.05203,420.36597,73.89656,77.222595,5.9816904e-07 527,274.84567,441.51117,43.760468,61.753754,5.451161e-07 527,70.26264,35.429775,28.632278,58.470997,5.35956e-07 527,2.2699041,18.193434,37.183346,70.90827,1.7470877e-07 527,551.1358,1.8686459,43.742676,56.226357,8.084289e-08 527,106.090866,5.2095346,42.282333,50.606003,7.8664355e-09 527,215.666,4.2083316,45.935593,45.075035,8.2583135e-11 527,150.71553,2.9819987,43.1743,49.087177,7.187014e-11 527,189.07838,2.8905225,45.195847,47.435917,1.0516223e-11 528,145.61594,164.1709,37.959976,97.95593,0.013119683 528,622.818,424.62616,16.328674,45.43811,0.0065957233 528,584.6053,325.36432,52.542725,165.68024,0.005423048 528,604.9345,103.11989,34.071716,96.9173,0.0036383204 528,551.8785,383.57016,41.12213,89.88153,0.0033669283 528,604.52094,429.47235,34.625732,81.67432,0.0033554304 528,568.8215,209.04607,27.054077,52.84172,0.0014233937 528,622.0266,200.96236,17.120056,52.807343,0.00075828214 528,580.0006,4.7095575,57.88391,262.0066,0.0007247529 528,619.22876,75.82552,19.917908,72.992195,0.0007163975 528,371.3694,155.1501,32.070038,81.5399,0.00056301226 528,623.23254,120.98207,15.914124,50.971664,0.0005439715 528,614.20197,360.57217,24.944702,102.33804,0.00044477542 528,1.6847193,123.289116,17.503204,63.755577,0.0003881667 528,1.8383334,132.70297,28.67086,143.12479,0.0003093578 528,620.36255,40.139652,18.784119,64.90265,0.00027335985 528,602.24194,231.70967,36.68158,169.4507,0.00025174022 528,610.26465,150.15285,28.84076,133.8366,0.0002173575 528,594.38904,190.61177,32.375122,70.25142,0.00016690805 528,528.3776,307.81158,77.93823,185.36374,0.00012803392 528,607.8623,1.3091244,31.284363,65.38194,9.610348e-05 528,577.3287,445.9349,45.922913,60.76474,5.5673463e-05 528,0.7451416,236.7211,18.68092,77.82352,5.441917e-05 528,1.6592513,236.47769,31.762917,191.99011,4.76116e-05 528,379.61993,162.58943,60.356598,112.72496,3.6720867e-05 528,1.6781267,352.78967,20.860281,111.50903,2.7008346e-05 528,574.6326,207.79875,40.774475,139.70564,2.2217813e-05 528,4.0921974,44.87384,59.491203,241.72137,1.6033599e-05 528,4.019772,345.5653,56.383785,139.25107,1.3890447e-05 528,554.7435,437.7499,43.998047,61.634216,1.2067562e-05 528,22.914965,47.057133,29.06133,67.97345,1.1370109e-05 528,1.1391647,420.26807,15.234284,80.24063,6.753857e-06 528,76.59983,423.0231,71.40203,76.88718,2.8702666e-06 528,1.6944954,16.586641,13.962872,93.73666,2.4350518e-07 528,571.15,1.4766667,43.291748,54.20323,2.3371172e-07 528,3.1509507,10.320495,53.687527,81.98679,1.7154508e-07 528,502.48987,1.7710352,44.92914,56.342556,3.4384926e-09 528,24.62533,5.124751,46.43592,49.04928,1.8221336e-09 528,190.59743,1.6461785,46.449295,45.606712,1.2550397e-09 528,79.8674,6.4148226,45.117058,45.57636,3.3264758e-10 528,107.40475,4.9666944,63.41645,49.555676,2.6709315e-10 528,163.07173,4.517236,42.902863,48.032013,9.826519e-11 529,6.6593623,171.25006,50.92846,135.83902,0.005174697 529,615.14417,124.15532,24.002502,87.27469,0.00193688 529,382.1396,160.37378,32.16626,75.612915,0.0011009381 529,610.7585,312.78586,28.388184,144.7016,0.00041788694 529,621.00635,65.099625,18.14032,54.511696,0.0002995592 529,362.38437,143.0824,38.99524,105.43945,0.0002934088 529,189.09808,202.61438,35.839294,68.84897,0.00029009394 529,610.4857,178.1913,28.66095,141.05943,0.00025616048 529,1.9046826,122.186264,18.724478,67.43184,0.00020830714 529,565.57416,180.71664,26.854736,59.29831,0.00012691283 529,23.725214,214.35324,43.99002,63.840424,0.00010612627 529,585.9004,392.0513,52.410522,105.071045,0.00010465683 529,1.0313306,246.843,18.730324,70.06789,9.546616e-05 529,1.9958196,390.53726,18.728844,79.44849,8.773277e-05 529,1.3662428,154.22147,22.71985,137.46515,7.0177455e-05 529,598.10254,27.60224,40.545044,218.42262,6.364242e-05 529,593.98224,3.1549153,45.16443,89.92212,2.6155774e-05 529,3.5473113,388.30414,55.043224,110.731964,2.0514011e-05 529,220.5887,423.62408,74.64317,75.830505,1.4881752e-05 529,2.1392245,290.98505,32.73307,175.40976,1.3761665e-05 529,1.5983171,338.62726,18.187271,75.4014,7.787356e-06 529,340.58255,438.1549,46.293488,68.02957,7.341319e-06 529,4.1360354,458.03818,40.36998,48.522766,6.9850016e-06 529,200.89595,308.9027,110.29097,187.29193,6.615273e-06 529,315.5282,360.1378,78.502594,137.90259,6.064336e-06 529,430.96857,435.58868,41.627686,63.6994,3.7674865e-06 529,274.90332,423.45517,74.07709,75.51282,3.1179518e-06 529,355.12222,384.23242,112.33237,110.5665,2.8228314e-06 529,2.8725636,35.690918,61.490566,225.70871,2.037126e-06 529,549.3906,449.8004,40.598267,52.060852,1.8843856e-06 529,446.56772,419.58282,71.8569,78.66556,1.5119358e-06 529,77.50092,420.50632,74.196434,76.89511,1.288613e-06 529,526.2579,438.30844,43.697998,61.2995,1.2282484e-06 529,483.48666,393.95258,115.02603,97.64566,1.0162319e-06 529,403.38635,438.78522,43.37329,61.625275,9.277637e-07 529,1.3469466,7.712344,39.739597,88.72972,6.9471986e-07 529,502.20605,452.4893,40.60437,53.206085,5.3701405e-07 529,187.49762,2.7573586,43.497437,54.36403,6.3999586e-08 529,509.1197,3.3843133,62.574463,47.46827,5.7251455e-08 529,1.1610067,0.0,22.820581,49.222782,3.3050146e-08 529,162.6127,4.2050033,43.86055,54.858932,7.320474e-09 529,55.23081,5.1747885,44.311657,50.345783,5.2159915e-10 529,79.149,4.487233,44.82514,57.75429,1.7658962e-10 529,107.13964,6.551014,43.110374,51.270042,9.35313e-11 530,365.74945,145.62437,36.42386,98.1306,0.22740881 530,386.22375,155.31946,25.774597,69.405655,0.025965143 530,609.83984,179.21632,28.640259,69.652405,0.005185708 530,575.1819,101.634285,62.011047,183.62485,0.0018594152 530,2.4134727,139.34084,30.659315,166.10533,0.0014891627 530,1.3469776,238.78027,18.265612,76.44733,0.0009171456 530,76.53054,211.61084,36.140167,70.49835,0.00027798684 530,611.7246,382.18796,27.422058,118.18689,0.00016655569 530,615.18066,109.72603,23.966003,103.06366,0.00012883141 530,1.5080371,97.83966,20.761559,121.44211,9.7378026e-05 530,382.01038,166.9011,42.98996,120.5513,7.843499e-05 530,613.14624,231.91777,26.000427,140.1155,7.7766075e-05 530,614.7172,16.114193,24.429443,84.86795,6.9876e-05 530,588.3652,215.05313,50.3938,261.18948,6.952005e-05 530,4.1868916,144.0592,77.30769,243.26892,4.8220492e-05 530,0.9652181,264.24182,19.020588,141.93976,1.7613596e-05 530,337.69064,87.07071,100.58954,213.00827,1.0741991e-05 530,553.69586,425.91446,80.22473,74.73306,6.7315705e-06 530,3.3484814,299.83945,56.68919,183.43854,4.8128286e-06 530,1.3584269,397.58148,19.19585,104.21478,4.7075487e-06 530,304.6761,458.86703,39.189484,47.726105,2.6641544e-06 530,193.59125,431.02838,72.77786,72.118805,2.235903e-06 530,3.6400669,430.43115,52.206833,70.46756,2.0695454e-06 530,429.33823,397.9729,107.874054,93.42175,1.9839517e-06 530,527.2889,434.99023,40.825012,65.5499,1.9667186e-06 530,291.8714,400.82224,108.94928,97.96631,1.6494255e-06 530,364.6471,423.70435,70.40079,73.99155,1.5993795e-06 530,485.82208,437.19287,42.62439,62.056244,1.4942871e-06 530,458.16037,436.59268,42.472717,64.18463,1.0632523e-06 530,406.10205,423.602,71.69354,75.23923,1.0374974e-06 530,1.8248055,24.826374,32.748318,154.66249,7.336091e-08 530,522.7605,3.2835336,62.03076,46.867847,1.654768e-08 530,0.8300159,13.70681,10.12742,80.20935,1.1373628e-08 530,149.16142,2.1134896,42.480835,54.354393,5.6793215e-09 530,1.7330599,9.323896,28.822872,54.378426,1.8162557e-09 530,72.78663,7.4035645,42.72615,48.553463,1.0802789e-09 530,32.595917,4.3549576,63.210686,51.991287,3.7828596e-10 531,382.99707,144.10556,44.871033,111.79939,0.13026392 531,406.72046,158.28851,34.738678,80.02992,0.0038868715 531,88.50976,174.72536,38.337486,84.30577,0.0030586934 531,598.6246,134.36511,39.137573,111.74625,0.0027191706 531,620.0768,156.17625,19.069885,59.36528,0.0016058395 531,4.4859557,229.60945,36.95112,69.89748,0.0010494054 531,78.886086,235.21837,23.944725,58.424454,0.0009156616 531,1.9970044,162.7212,21.237104,151.91307,0.0008474972 531,3.3398046,147.95747,55.539116,196.25578,0.00042065143 531,620.6821,108.87894,18.464539,58.711166,0.0004194329 531,107.872284,170.69342,42.24626,124.28708,0.00030417994 531,359.56097,117.28276,109.26004,181.80507,0.00028878282 531,617.3877,348.0159,21.758972,77.36841,0.00026554495 531,609.7344,186.5189,29.412292,136.05415,0.00020200876 531,1.0817488,256.30777,18.744642,76.91046,0.00019895108 531,1.6600301,108.26314,19.643578,83.1172,0.00018383817 531,602.24774,263.83282,36.898926,187.58652,9.362529e-05 531,569.2287,52.931355,68.436035,247.53026,8.3685496e-05 531,361.47336,143.43393,39.85678,134.89691,7.0472546e-05 531,615.11566,18.544737,24.031006,85.57969,6.898043e-05 531,390.68805,142.72227,23.419983,59.117126,6.6050605e-05 531,612.2609,380.86603,26.885742,110.688995,4.83208e-05 531,1.0404387,299.36017,20.442238,106.06525,1.758919e-05 531,0.81434083,426.13226,13.662014,45.40634,8.289012e-06 531,1.0094442,381.23697,18.413582,74.820496,4.8706193e-06 531,1.5862207,352.355,34.400585,136.38974,2.7734916e-06 531,516.0741,394.56937,121.96826,106.34985,1.8039435e-06 531,489.03125,427.10153,76.14838,74.94409,3.8270477e-07 531,578.43005,5.3974204,42.672913,51.782665,2.8752186e-07 531,2.2901661,44.677776,36.91214,181.35399,1.9433932e-07 531,0.9476685,16.469095,11.000301,74.76989,1.3699814e-08 531,134.89958,4.343669,44.528625,56.151005,6.8894215e-09 531,1.7292448,15.482855,37.24153,72.51242,4.417201e-09 531,161.50835,0.87608075,44.031204,55.018745,1.6481932e-09 531,26.38101,7.1452117,86.65891,71.952354,3.1879913e-10 531,78.67061,5.3604803,43.622375,53.058784,2.4885752e-10 531,12.989087,5.0082946,44.675583,52.747086,1.296539e-10 531,365.98727,1.1737077,43.97058,52.734486,2.9413198e-11 532,193.85913,182.70953,38.2164,89.27396,0.29335538 532,146.07503,228.85237,32.125076,72.71904,0.0047363737 532,7.5825915,199.45874,45.932415,103.69284,0.0028185572 532,609.6453,138.93987,29.501343,76.928085,0.0014919888 532,1.6434807,238.82927,19.580397,85.442184,0.0014517648 532,34.20839,244.53555,27.724892,58.9433,0.00060869957 532,617.52264,385.87613,21.624023,81.61279,0.00027867698 532,617.7919,334.83704,21.354797,79.904724,0.00016910145 532,615.3998,69.289734,23.746887,99.55675,0.00016123068 532,601.4835,304.29822,37.663147,174.18454,0.0001359583 532,506.11203,147.67732,43.68466,128.18987,0.00011158621 532,449.39557,61.65094,28.342346,51.509438,9.366012e-05 532,1.6487061,114.42287,18.221704,78.98775,9.196051e-05 532,615.88776,21.090557,23.258911,87.13602,8.69858e-05 532,585.8955,90.17663,52.273438,218.349,7.211576e-05 532,611.55927,208.7033,27.587402,133.21535,5.857287e-05 532,609.1653,439.52844,29.981384,62.062653,4.464028e-05 532,1.6404688,169.57692,18.62467,87.889084,3.6841393e-05 532,4.653942,41.43077,77.36095,287.1128,3.6838304e-05 532,165.02129,149.54008,105.23024,182.48933,1.6421936e-05 532,0.88584965,381.6099,18.248533,72.48782,1.4879993e-05 532,1.524594,272.81546,30.85511,180.16101,6.3615666e-06 532,570.1103,6.082949,69.03638,165.40288,4.981769e-06 532,3.5855892,389.09018,55.351807,103.50836,3.2993746e-06 532,455.31204,385.5811,113.5679,108.08096,1.6104239e-06 532,393.6566,385.85092,113.44998,106.7258,1.1018959e-06 532,44.586376,424.32965,72.69479,74.26077,8.372507e-07 532,515.51733,428.11115,73.07251,72.49219,8.089013e-07 532,479.72455,441.87173,41.657715,60.52713,7.9113136e-07 532,85.88905,422.53928,71.99031,74.110016,7.518077e-07 532,431.83664,442.11304,41.764038,60.23651,6.220448e-07 532,404.5983,442.07693,41.842865,60.59912,5.437858e-07 532,263.86716,427.9476,72.52438,71.411896,4.5849302e-07 532,222.60774,426.8436,72.26668,72.491425,4.5029006e-07 532,345.68643,424.5156,72.82562,73.479004,4.1891593e-07 532,586.29285,0.40722167,41.38556,54.94481,3.7431747e-07 532,304.909,427.05713,72.75125,70.776,3.5900257e-07 532,1.7695589,47.258938,19.38844,88.9332,2.4188873e-07 532,2.1391375,3.6142352,40.933495,95.9181,1.580703e-07 532,208.93428,5.1463933,44.576355,54.654716,2.3443933e-08 532,16.579998,4.833133,64.49542,49.4901,7.501668e-09 532,236.65385,2.1068816,45.005722,54.293083,5.6399743e-09 532,101.44533,6.6305504,84.84967,71.57675,3.6341972e-09 532,97.14585,3.0230534,42.754295,52.694893,8.851234e-10 533,405.4602,170.90237,47.18637,110.94266,0.5408013 533,228.35059,182.74307,46.171906,114.39584,0.012291639 533,241.1911,247.38815,27.383972,53.03836,0.0030565537 533,379.75894,236.91634,26.892578,56.655624,0.0010198852 533,617.7649,169.27965,21.381775,83.607025,0.0007834604 533,617.47046,394.8581,21.676208,77.81714,0.00029084965 533,611.02893,78.74865,28.117737,146.36844,0.00028352017 533,616.8809,227.00266,22.265747,86.87268,0.00022468445 533,391.09494,224.41995,26.611786,52.61136,0.0001990025 533,233.541,230.34766,22.989792,47.03134,0.00013121449 533,2.0019848,187.49269,28.684818,137.99379,7.491597e-05 533,1.5879793,265.4084,17.518898,150.77835,7.2436545e-05 533,600.6664,319.8362,38.480286,165.71957,6.9192836e-05 533,588.4644,112.26232,50.562134,222.38449,4.229844e-05 533,609.18274,440.25314,29.963928,64.24625,3.7832142e-05 533,1.2681885,124.34983,18.315783,148.11304,2.6134183e-05 533,383.70648,145.4068,109.49307,186.68323,2.4756091e-05 533,0.8150692,368.42844,17.397398,126.29819,2.0955033e-05 533,3.9106624,164.87204,56.329,223.76917,1.926121e-05 533,3.5069954,326.10416,56.296574,159.42798,9.6672975e-06 533,67.208336,2.28958,85.02485,85.92441,6.005425e-06 533,597.99176,3.9761035,41.154907,86.97323,2.8457798e-06 533,9.479824,421.6235,72.82735,76.41708,1.7122384e-06 533,118.73891,6.880622,87.005936,78.18266,9.0787415e-07 533,126.77843,418.6497,71.399826,77.16138,7.5394155e-07 533,72.22203,419.3266,71.096954,77.088715,7.0888143e-07 533,167.98285,419.49536,71.28534,76.389404,6.1681567e-07 533,1.8637778,52.845013,27.471008,141.7139,5.299524e-07 533,12.199834,10.485586,113.19987,117.08363,3.4190725e-07 533,162.94241,5.621909,61.25952,51.41449,1.6177223e-07 533,243.7666,6.0806885,44.460785,51.670967,1.2258418e-07 533,208.27502,4.8721337,46.82495,49.8635,3.6051194e-08 533,475.30627,6.7931805,43.323853,47.745247,2.279174e-08 533,322.59125,1.4952637,44.396484,56.82175,1.7647029e-08 533,413.3114,1.2282976,65.27466,53.522583,1.1800408e-08 533,1.728169,12.803054,35.2768,72.59876,4.612652e-09 533,387.33453,5.143332,43.47174,54.046604,3.6730685e-09 533,14.768089,4.044696,42.489555,53.943626,1.6873949e-09 533,357.8745,6.310516,45.236145,49.568405,1.1265822e-09 534,224.6023,195.07486,30.535187,58.07332,0.19725901 534,233.86382,189.96404,38.44319,103.7758,0.08214513 534,622.0146,277.3354,17.13208,46.69998,0.01611604 534,611.35175,122.41857,24.435852,46.90786,0.01493188 534,258.30124,224.61298,33.718384,76.019806,0.009363092 534,607.79205,155.21907,30.9599,158.37447,0.0038630038 534,605.47687,278.27002,25.48761,46.209778,0.002435562 534,220.0799,228.13156,38.18625,81.97952,0.0021706505 534,620.8506,91.21868,18.296082,49.59823,0.0010075276 534,609.77625,260.22675,29.370422,120.42221,0.00057455484 534,570.5811,178.11795,67.46002,241.1159,0.00034436546 534,1.893916,171.93948,17.855438,69.29208,0.00014775734 534,599.6421,58.413322,39.4812,181.24658,6.505053e-05 534,612.4115,371.00388,26.735168,127.17905,6.315023e-05 534,1.9310588,117.4625,34.578053,195.28683,4.814389e-05 534,1.0755583,214.26385,13.783655,55.990723,4.546537e-05 534,443.95355,3.6314063,47.276184,62.942425,3.9398295e-05 534,616.20306,18.369698,22.943604,80.46242,2.936317e-05 534,1.0174886,309.78635,17.992407,136.2662,1.3880332e-05 534,589.75616,7.172243,45.262817,50.50531,1.1929666e-05 534,1.1178899,203.4297,19.35816,150.63206,1.0254674e-05 534,584.37573,12.793789,54.770935,124.72652,7.865877e-06 534,388.2189,4.7850685,85.32919,74.40979,6.8208783e-06 534,1.1836735,406.44153,18.097374,71.99707,5.4235047e-06 534,3.4244304,210.64754,56.697773,227.69221,4.142386e-06 534,1.8975098,70.339386,20.263088,146.94237,3.9599972e-06 534,347.15927,1.6652181,46.448334,63.7674,3.5136804e-06 534,453.15408,281.14478,41.977478,122.75888,1.9690647e-06 534,1.6904337,360.24133,33.640305,131.19696,1.8877239e-06 534,333.69043,6.7817383,111.56207,117.6548,7.775153e-07 534,154.58665,434.6776,71.52109,61.730225,6.738235e-07 534,113.20272,432.52478,75.31591,66.45169,5.9264187e-07 534,564.86536,6.919095,46.035217,53.861748,4.760458e-07 534,8.148477,431.68985,75.1818,69.06787,4.7475282e-07 534,465.72433,4.9262533,66.0397,57.494503,3.775383e-07 534,48.74154,430.2475,76.15625,70.64172,3.152129e-07 534,538.49066,7.6272774,44.68628,49.03951,1.361077e-07 534,320.46512,3.0494304,43.675568,49.83889,6.59811e-10 534,2.2134035,13.25708,32.404114,71.501526,9.6150136e-11 535,319.1026,232.74524,39.59091,55.963806,0.1661965 535,192.94507,228.52,40.07689,61.931595,0.0055641904 535,621.4764,303.1541,17.670288,56.36435,0.003877579 535,621.39624,220.63733,17.750427,57.81305,0.0020050777 535,175.97415,227.91548,25.571457,48.223526,0.0013385274 535,482.77054,211.27068,36.06436,57.35338,0.0012649748 535,18.236967,245.05597,23.220427,51.881104,0.0012371222 535,601.38727,207.89648,36.79132,150.09033,0.001223708 535,554.94867,227.62784,40.399597,71.43265,0.00060210796 535,622.17316,94.447205,16.97351,54.267593,0.00040806143 535,0.9487256,265.28638,13.006241,48.15622,0.00028700207 535,617.2205,342.06082,21.926147,84.95932,0.00018982544 535,2.4521306,237.89732,31.930681,171.20305,0.00018713449 535,5.204538,260.08786,75.87583,206.88626,0.0001750219 535,611.6379,110.90133,27.50879,152.62701,0.00012971027 535,587.4854,270.1286,50.52368,202.82858,0.00010520041 535,308.52496,215.67162,73.23352,139.79668,9.554485e-05 535,35.806953,241.12964,27.727795,54.13791,9.208732e-05 535,609.5255,440.43198,29.621155,63.667206,6.975721e-05 535,1.153326,316.4425,18.350367,133.12808,3.7846865e-05 535,1.7302214,228.00789,18.040728,68.82005,3.402752e-05 535,574.7325,199.28209,42.42987,139.14543,3.2027838e-05 535,610.8934,17.720118,28.253296,147.58545,1.4294331e-05 535,330.15018,267.94565,31.375061,69.703735,1.3429512e-05 535,1.1970028,412.2441,18.17321,71.60971,1.2082683e-05 535,3.6492026,147.63896,58.40725,226.7611,1.2031054e-05 535,583.8193,14.983099,54.94922,272.0757,8.1001945e-06 535,3.1874676,393.0519,56.35473,99.598724,3.8187227e-06 535,407.91302,387.1776,121.252625,107.408966,3.5107998e-06 535,442.71646,433.42896,43.9599,66.901794,1.6139846e-06 535,1.3845215,117.9866,26.720356,174.81451,1.1506985e-06 535,78.88706,396.38763,117.26833,96.22601,1.0474272e-06 535,413.95184,435.67365,46.434143,65.77966,1.0461813e-06 535,32.221165,423.75507,79.03694,76.08301,9.3402787e-07 535,195.19402,425.9567,72.92781,74.13388,7.688322e-07 535,297.72314,391.04062,116.06183,105.35019,6.80536e-07 535,235.49292,426.47476,74.148895,75.09885,5.313411e-07 535,156.05905,425.65317,72.44823,70.907684,4.953909e-07 535,356.5655,425.81,75.34964,73.82532,4.148124e-07 535,276.8943,426.2048,74.019226,75.83728,3.9319596e-07 535,1.4970248,9.27474,33.044556,73.18979,1.0325866e-08 535,387.56833,2.7112973,42.163452,50.782722,2.726052e-11 535,414.92917,2.8547494,42.61017,46.180138,1.3170289e-11 536,366.96725,228.8066,31.158752,58.667007,0.9597973 536,610.9462,209.3441,26.50476,54.987778,0.27010298 536,336.92297,223.27539,45.3024,86.60474,0.17657174 536,524.62695,203.92732,41.399414,110.47774,0.063666925 536,525.3968,213.98001,24.167725,48.72583,0.022315579 536,566.6189,198.10452,35.218506,64.17279,0.00061948324 536,601.1329,119.62684,36.703552,179.52374,0.0005178984 536,1.136884,98.553246,20.085606,82.18571,0.0004972503 536,603.47546,212.49565,35.671204,207.48177,0.0003470624 536,607.708,434.9932,31.43866,70.09042,0.000330641 536,608.9008,10.14724,30.150024,119.69079,0.00018281225 536,3.7673569,99.23383,70.92777,162.69815,0.00017032992 536,1.0357553,152.34909,19.015867,84.89024,0.00013883179 536,3.9340057,187.98514,57.43342,246.2497,3.9818828e-05 536,1.6384326,351.80365,19.036161,127.24072,3.4622688e-05 536,1.2225269,192.8694,19.570473,131.78963,3.239175e-05 536,571.1792,357.128,67.62756,134.74332,2.698152e-05 536,513.3369,261.13873,37.40802,72.74301,1.777173e-05 536,5.7763267,358.59076,79.695045,126.315704,1.4908572e-05 536,282.394,425.83853,79.91986,73.31586,1.4179278e-05 536,323.49594,454.45026,42.139862,55.622314,9.244962e-06 536,2.741797,413.78806,34.57415,84.53314,5.947359e-06 536,244.09798,428.1486,72.216354,67.88907,5.825145e-06 536,307.61734,397.74127,120.12552,101.34848,3.9142647e-06 536,614.1455,0.18063639,25.00116,47.674908,3.6017625e-06 536,433.58997,426.39606,73.901306,74.17557,2.0104378e-06 536,534.68756,428.25693,84.41199,70.54901,1.738907e-06 536,158.77856,425.3311,79.463,72.89523,1.3813782e-06 536,476.10132,443.97543,44.702515,59.194427,1.272294e-06 536,384.97333,423.8198,73.951904,76.32065,1.2586374e-06 536,494.41742,425.34845,76.92975,72.186005,9.076665e-07 536,1.7750537,21.285772,56.835213,126.86625,1.028026e-07 536,587.2598,3.3585808,41.267883,52.388744,1.7918879e-08 536,1.219677,10.39884,18.785957,52.224945,7.310814e-10 537,379.56857,224.08899,37.411285,75.512634,15.915224 537,607.2119,200.0815,31.934753,96.650925,0.1350412 537,166.55247,215.05397,33.78842,66.2296,0.07488125 537,335.3014,211.66455,35.89792,50.15738,0.036813363 537,358.9674,215.03058,40.75894,70.18799,0.012919941 537,622.07385,225.65385,17.072815,50.99147,0.005985715 537,447.58746,244.96764,72.14026,174.24513,0.0028082945 537,624.71173,201.62401,14.434937,47.776047,0.0023007737 537,331.237,218.60558,77.870544,165.99016,0.0016922544 537,584.9953,156.29108,52.700012,223.4729,0.0016474829 537,618.91156,249.59058,20.235107,67.75049,0.0012126612 537,613.1473,375.26605,25.99939,117.48047,0.0004835611 537,600.66296,64.21186,37.659424,203.8938,0.00020676655 537,522.87494,38.857124,26.123352,65.61702,0.00020092913 537,613.85205,284.61057,25.294617,102.65665,0.000120265846 537,616.62494,113.76479,22.521729,81.96877,8.60439e-05 537,1.6309229,148.79955,19.082552,130.86504,6.2666324e-05 537,610.5208,12.169844,28.461548,119.67796,2.1133446e-05 537,5.6146126,250.47725,56.37923,226.4113,2.0887197e-05 537,1.3954142,351.77316,18.550894,137.39502,1.7099872e-05 537,1.6884172,193.76846,32.51365,169.96838,1.2623994e-05 537,2.2344663,460.18314,28.015602,45.25702,1.1112654e-05 537,1.4014184,78.02816,19.392595,130.47629,4.2760894e-06 537,6.69458,404.93738,81.25024,93.41455,3.9086694e-06 537,3.7256706,91.84706,59.473564,221.91911,2.1840544e-06 537,613.8238,0.026287435,25.322876,49.672176,1.8832108e-06 537,49.60271,448.18854,42.385914,56.4935,8.4973834e-07 537,77.40648,443.2631,41.682877,59.85327,7.677274e-07 537,74.11025,395.89984,110.70379,104.91809,7.5468387e-07 537,181.67372,431.07443,72.73447,70.565674,4.9790685e-07 537,140.22417,425.84927,74.62019,77.05881,3.7869947e-07 537,562.0682,5.214473,76.76404,175.19312,2.2737304e-07 537,1.6522348,16.228851,33.680424,69.38059,5.895462e-10 538,423.3416,238.40964,48.22339,90.16943,64.34872 538,366.26007,224.39879,23.4039,45.66774,0.09663117 538,434.5835,242.23753,25.779541,47.648697,0.0916612 538,563.729,403.7691,72.04828,92.58414,0.058111798 538,318.93585,226.63295,22.941162,48.65123,0.020371541 538,170.63367,240.09706,38.595154,85.61125,0.020061778 538,0.19967286,135.3724,16.883932,59.228714,0.00674421 538,126.35874,225.63841,24.150917,45.6035,0.0044155708 538,240.08203,239.05399,23.018524,47.65976,0.002458642 538,389.89417,244.54057,87.44852,182.33571,0.0016497454 538,605.3643,436.9647,33.78235,74.18198,0.0010616903 538,1.460442,236.8018,33.757347,81.08577,0.0010566863 538,201.85226,235.53102,24.411224,46.893234,0.00092829106 538,610.7384,165.16597,28.408264,118.659805,0.0004687104 538,1.0659441,108.76227,31.04041,157.65762,0.0004213693 538,601.33215,223.36282,37.814514,179.02292,0.00021549908 538,2.3375392,233.78688,54.52798,235.27068,0.00014704547 538,609.55316,53.678177,29.593506,148.29071,5.5605546e-05 538,1.1941476,255.346,13.3123455,46.79335,5.3927233e-05 538,1.2267913,328.62558,18.511858,142.0072,4.8040154e-05 538,3.5186214,396.3911,56.95643,96.83734,7.642884e-06 538,411.26108,439.98898,42.2507,61.61667,4.5200786e-06 538,388.15213,378.79895,110.40787,114.87274,3.7523976e-06 538,446.3208,452.12836,40.707794,53.27182,3.1079053e-06 538,349.1173,422.35083,75.61932,76.02225,2.3331186e-06 538,612.23535,2.674398,26.911316,59.505085,1.8122721e-06 538,1.6213949,14.541648,34.2302,73.487144,1.9778545e-09 538,436.628,1.8917302,43.77362,47.877926,6.224189e-10 538,361.97095,1.0169499,42.338135,46.59895,4.2291958e-11 538,462.8586,3.793952,44.514984,45.87792,3.5746853e-11 539,319.31094,197.00952,25.613403,56.958786,0.43590432 539,546.3084,197.81343,43.888,89.706955,0.08885945 539,290.78183,204.87943,26.402191,50.853134,0.035516206 539,617.0166,171.42154,22.130066,73.28471,0.012891414 539,332.27176,212.32826,25.431,51.766342,0.0072787805 539,228.43701,224.51215,40.951355,120.895935,0.006954658 539,345.61923,209.5228,27.927887,53.303345,0.0050771553 539,571.877,209.63055,38.38037,80.02716,0.0045429263 539,602.5177,430.7324,36.628967,80.414276,0.004406665 539,543.20215,186.11937,82.25952,169.5377,0.0028934053 539,197.9332,188.61176,24.434982,46.213013,0.0025029692 539,594.5014,126.60985,43.405518,179.90144,0.0011281812 539,617.52325,229.41232,21.623413,83.19266,0.0010988192 539,417.23187,186.85043,20.669556,45.22432,0.0009974538 539,587.9246,311.7772,49.77881,180.85559,0.0009876571 539,365.7186,213.39581,37.830994,149.05212,0.00033359614 539,611.4576,255.70517,27.689087,156.25134,0.00019226463 539,609.3146,23.648132,29.832092,178.31198,2.0668795e-05 539,204.78114,189.44122,106.33058,213.3331,1.983502e-05 539,1.3799927,324.1228,18.761417,134.54019,1.6075166e-05 539,393.05423,388.644,115.417816,108.38626,1.3119969e-05 539,1.3281088,164.97673,18.573456,125.90852,1.2607079e-05 539,446.29156,429.4041,49.300903,74.08829,1.1997655e-05 539,540.92755,71.93648,41.057007,138.51163,1.17886475e-05 539,4.08099,187.12839,56.73383,244.4584,1.0232791e-05 539,2.086155,100.50989,28.380093,145.0383,7.995584e-06 539,1.1425399,418.3599,16.498383,81.98404,7.0618007e-06 539,3.6143394,392.31995,55.54912,99.84839,5.647949e-06 539,410.0687,430.3447,46.165436,73.731415,2.3274115e-06 539,2.6806755,58.480312,60.81258,224.94775,3.9983377e-07 539,523.6963,7.223529,43.453003,55.056816,2.2525521e-08 539,1.9869759,10.934609,32.42595,75.30778,6.460067e-11 540,380.80792,241.01321,45.73752,155.35092,0.024162805 540,553.5778,203.22159,38.6994,92.90668,0.012629958 540,541.7246,213.27954,60.509583,200.78928,0.0056097056 540,500.53043,228.27505,25.636261,52.760406,0.0033836851 540,484.6871,235.33095,25.421509,48.866592,0.0031075645 540,437.2323,221.16618,32.5076,68.169785,0.0025324628 540,456.8096,227.57642,23.876648,48.33844,0.0020473627 540,513.9406,231.27156,31.670471,67.01582,0.0017319946 540,587.41547,204.05403,50.183044,241.68343,0.0005417381 540,616.57367,200.65897,22.572998,74.38077,0.0005220748 540,616.20575,86.24596,22.940918,74.12688,0.00035360962 540,607.2288,433.44653,31.917847,74.98151,0.00033494426 540,601.61914,118.930916,37.166138,190.45697,0.00018282811 540,1.4753639,187.66971,18.54858,68.53815,5.239584e-05 540,1.0804892,224.87315,18.737362,76.53377,3.8816714e-05 540,567.10187,344.47015,70.4281,148.74469,3.7098634e-05 540,608.0217,2.782207,31.124939,125.97123,3.0400775e-05 540,1.1836784,400.03372,18.480724,71.3938,2.4674822e-05 540,0.72493124,267.61804,13.782833,51.13318,1.7632823e-05 540,532.62134,419.93967,80.547424,82.17218,9.683057e-06 540,1.7211272,336.2348,32.597103,152.81573,8.913682e-06 540,3.6336393,107.44293,58.32093,210.0315,7.780823e-06 540,0.9409603,260.80545,19.00741,140.7207,7.456501e-06 540,520.67993,293.58582,41.44763,136.44632,5.9048252e-06 540,3.4967237,430.98776,52.69609,68.3533,2.422245e-06 540,1.4805827,92.7453,20.68433,107.76143,2.0210723e-06 540,101.645905,426.6499,76.01503,71.764435,1.9785969e-06 540,350.3281,429.27203,73.59036,72.111664,8.9341034e-07 540,1.9301335,21.252386,56.797062,112.9842,6.9710833e-09 541,101.95585,177.3451,27.647957,60.808273,2.9502313 541,38.157402,182.92755,39.62388,63.225082,0.17342979 541,562.9013,230.48672,69.17639,191.47055,0.07956852 541,609.06726,200.9579,28.486877,68.68727,0.05098819 541,608.51447,226.80641,30.39502,161.51802,0.012690936 541,471.62042,213.84978,22.107086,45.26848,0.008744944 541,621.08,285.98657,18.06665,59.03183,0.0038031624 541,621.50415,190.03535,17.642517,46.73372,0.0027549402 541,345.34827,115.792114,39.836517,71.90967,0.0014501901 541,602.0032,108.640854,37.03296,196.77284,0.0012858767 541,607.15015,428.6944,31.996521,72.40823,0.0008741342 541,1.196097,298.38583,34.6758,113.917816,0.00055768015 541,566.35425,227.19331,39.556946,77.40376,0.00035211717 541,598.4135,286.89905,39.63965,216.23221,0.00017966778 541,551.7826,411.3068,86.62012,85.23071,7.3398056e-05 541,1.5826563,164.81316,19.218166,75.050125,2.9491031e-05 541,4.5841475,252.69324,89.125206,204.60703,2.7325252e-05 541,1.5195736,198.71156,28.148605,155.915,1.9473131e-05 541,611.82837,1.7780762,27.318298,87.82971,1.9094994e-05 541,323.95157,68.59879,82.47543,172.83194,8.106733e-06 541,1.0154142,336.9364,18.628048,149.64362,7.2240837e-06 541,3.0139894,112.71915,58.13953,219.7233,6.8169115e-06 541,465.76172,445.79703,41.91043,57.630157,3.4205943e-06 541,2.911206,379.6236,55.761524,113.16089,3.2616324e-06 541,487.18094,427.94382,75.79617,70.758545,2.1322526e-06 541,1.2788469,108.54136,18.54747,70.43609,4.086182e-07 541,567.90125,7.234043,71.24542,157.17043,2.118695e-07 541,1.6376383,61.67123,29.147795,160.81122,4.0102353e-08 541,2.251387,21.990124,57.945404,99.21431,5.101924e-09 541,1.1333407,6.6913314,21.034388,61.145416,6.2892036e-10 542,341.0242,224.13457,27.151245,45.13759,0.07026664 542,22.826414,194.00087,31.751863,49.87181,0.056801416 542,69.31589,190.75294,27.058266,51.83188,0.029721992 542,131.36858,167.0612,26.389114,53.32698,0.011887386 542,610.61115,210.17639,28.535522,119.021484,0.008109676 542,497.9657,213.79646,24.035034,45.277603,0.0058593885 542,625.3448,275.14142,13.80188,46.9657,0.003476473 542,462.59213,333.69235,25.348755,63.835022,0.0028970225 542,516.55084,218.38156,24.144592,47.013428,0.002281211 542,113.37083,170.41138,40.007378,92.521454,0.0012290201 542,600.512,241.346,38.634644,196.70381,0.0008156555 542,83.368744,184.30077,27.313026,54.732605,0.00033409087 542,616.4278,313.9975,22.718872,96.42581,0.00030169424 542,611.4923,371.5512,27.654358,133.99707,0.00024852372 542,445.66388,313.59937,84.2724,169.90866,0.0002082972 542,602.27625,110.995224,36.24408,171.97224,0.00012525303 542,1.0696077,361.31815,18.100029,74.063965,7.150066e-05 542,1.4637672,167.93004,18.119373,62.566086,5.1692554e-05 542,1.7412386,171.71597,28.794785,123.647,2.2672793e-05 542,5.8115025,182.26964,56.378983,209.98521,1.9176201e-05 542,540.07336,146.92949,98.08252,242.48845,1.5577407e-05 542,610.47485,1.183864,28.671814,58.657986,1.0728271e-05 542,549.3757,432.08902,83.06238,70.45047,7.75448e-06 542,1.5633342,302.25424,33.064518,168.38379,6.742068e-06 542,0.9269393,249.71634,17.017738,140.6011,3.8350436e-06 542,3.111719,390.85413,55.395275,102.049225,1.9064418e-06 542,480.7844,433.92056,72.55832,66.06534,1.7285302e-06 542,420.96146,430.91553,71.41199,67.22006,1.3741176e-06 542,8.687062,453.3957,42.014977,50.97113,7.7587083e-07 542,1.1544816,111.08866,18.339565,70.846245,5.3823015e-07 542,25.325682,422.9963,77.63188,75.39136,3.791056e-07 542,1.587343,44.25633,31.927923,176.94344,1.4163919e-08 542,3.1464307,24.701258,57.15245,97.41584,1.2957494e-08 542,48.21157,1.8390837,45.1118,49.986965,7.1854753e-12 543,28.368448,149.75948,48.86476,84.16136,69.0285 543,291.8707,227.65251,29.898193,49.384567,0.065476775 543,610.8195,273.1445,28.327148,63.83966,0.0050725094 543,4.814162,160.50612,23.517897,59.011444,0.0023553334 543,599.9499,251.78969,38.893616,196.48756,0.001080462 543,354.69113,120.85369,31.875458,59.373543,0.0009677159 543,621.7193,219.02037,17.427368,50.827866,0.0007719219 543,607.7399,439.6889,31.406738,67.512085,0.00029979556 543,616.0781,340.05768,23.068542,80.88266,0.0002827083 543,598.5534,152.72441,39.381714,174.22578,0.0002636318 543,3.834603,152.57635,56.84826,210.1636,0.00021847684 543,2.0847356,181.61105,19.219591,129.98209,0.00013045188 543,1.4575546,368.32394,18.909676,121.34857,2.9180825e-05 543,1.5169637,282.2699,19.109491,143.33911,2.8154389e-05 543,555.7096,399.11438,82.73273,97.57251,2.1285352e-05 543,506.85687,156.97597,132.03033,215.42558,1.1630722e-05 543,455.74527,403.7418,112.89273,91.634796,8.2580345e-06 543,611.4554,1.0493815,27.691284,58.91606,8.149568e-06 543,3.6756494,384.69168,53.917362,108.019226,7.3670158e-06 543,536.83594,456.72867,43.405518,46.233643,6.2237496e-06 543,495.13324,458.26865,42.22168,46.57538,5.836778e-06 543,568.5685,447.89502,48.085205,55.392853,2.9859375e-06 543,3.1811867,70.01667,33.185844,193.79245,1.3982961e-06 543,41.882694,417.83795,75.04236,80.32239,5.2417806e-07 543,1.7370833,32.124565,18.56992,130.27515,4.5415746e-08 543,2.7759814,26.985304,58.604286,97.602585,2.9706648e-08 543,1.0569003,17.86669,10.37838,75.973335,1.8779682e-08 543,1.8332406,10.980453,29.741226,54.423393,2.7822242e-09 543,37.872135,0.31769043,43.635014,48.944157,1.0013748e-12 544,499.1552,230.91328,22.64032,46.269485,0.051003687 544,373.2542,222.51222,24.74121,45.812668,0.015158052 544,188.95775,231.0434,23.414398,47.72397,0.00055874063 544,617.68536,233.82101,21.461304,75.30728,0.00031129655 544,616.59155,279.9138,22.555115,86.33362,0.00024051688 544,601.306,144.71268,37.332397,146.05243,0.00021686207 544,610.8884,310.24606,28.25824,154.72406,0.00019881432 544,293.82663,336.6785,81.83151,165.91406,0.0001703491 544,417.00513,323.22025,76.722015,171.89374,0.00012210748 544,608.3887,442.64932,30.757996,64.60132,8.242454e-05 544,587.5436,214.3331,50.555542,213.59738,7.858556e-05 544,400.93015,439.5987,47.669983,61.37497,7.4277064e-05 544,350.26956,394.56168,118.25696,103.30838,5.725839e-05 544,619.6807,183.60344,19.465942,63.8105,5.046573e-05 544,3.1432114,292.09247,58.11347,188.08905,4.1403015e-05 544,1.0879606,322.05057,18.935486,82.62082,4.0734347e-05 544,4.210091,128.65366,57.418343,232.80704,3.7548147e-05 544,1.1066699,247.8367,18.061817,67.071106,3.4536915e-05 544,298.2011,431.47778,47.547913,71.02899,3.383976e-05 544,1.4807975,153.21873,19.051844,127.282,3.1363885e-05 544,1.0416366,397.5385,18.861591,76.31229,2.8186518e-05 544,583.7422,391.09875,54.882812,110.98328,2.6470858e-05 544,376.03625,440.46625,44.44455,62.09021,2.012729e-05 544,1.7998031,236.36284,29.580446,165.79622,1.4643979e-05 544,431.25226,443.11542,42.236664,57.779602,1.3887322e-05 544,338.27216,455.03674,40.087006,48.983368,1.3123271e-05 544,319.8707,418.47266,79.043304,80.973724,1.2989098e-05 544,610.76465,1.5953158,28.382019,58.735554,1.1855041e-05 544,6.592562,390.22427,108.15716,102.30194,1.0139979e-05 544,222.13458,325.738,76.58014,168.76648,8.074342e-06 544,238.91003,418.95987,83.31317,83.26779,7.899253e-06 544,454.5826,455.36752,39.97531,47.994843,7.1609784e-06 544,450.69095,425.11865,76.20938,71.87042,6.132614e-06 544,72.02119,391.49796,116.84536,99.821075,4.306111e-06 544,97.36969,437.50934,42.3889,62.637665,3.761125e-06 544,215.90971,453.41412,43.40483,50.51593,2.7076217e-06 544,1.8743237,86.80458,27.924486,137.60704,2.6747807e-06 544,68.59707,437.22986,43.624886,61.84433,2.2015493e-06 544,163.58159,393.49197,113.89842,102.58444,2.0614768e-06 544,32.0198,438.2214,45.782913,62.312042,1.9311858e-06 544,188.73737,453.57626,40.214905,49.58954,1.6750294e-06 544,139.18367,420.51538,74.16914,76.4827,9.4174146e-07 544,2.512064,25.905704,55.571,98.056305,8.110839e-08 544,0.6221623,6.5107813,19.8339,59.520325,3.9410484e-09 545,575.65405,233.51454,25.1568,50.30275,0.37755388 545,589.97974,237.81105,24.5094,49.42787,0.2585322 545,516.91327,229.02644,33.143433,65.79149,0.19989346 545,242.5511,217.5008,25.81572,51.470184,0.07774749 545,609.42633,216.21793,29.720337,73.548004,0.00969764 545,584.3572,161.59273,52.618774,196.8921,0.00036882842 545,500.4713,224.1911,32.436523,64.43494,0.00023281503 545,611.9051,370.82825,27.241577,131.77478,0.0002110997 545,1.5353174,225.48535,18.174385,70.933105,0.00016012709 545,610.6201,265.72913,28.52655,155.89334,0.00015268219 545,323.12326,180.87746,83.610016,178.24596,6.805602e-05 545,465.6749,242.3299,39.273438,123.78656,4.498581e-05 545,2.2003174,213.02487,35.697582,175.6777,3.46752e-05 545,1.2378312,407.12463,18.19818,70.02792,2.2507813e-05 545,3.7330666,328.39304,57.852547,160.82953,5.295364e-06 545,2.3731062,113.644196,32.52483,161.2915,4.447676e-06 545,1.0874097,313.0973,19.465109,135.8876,3.988879e-06 545,346.39728,400.8618,106.7081,99.523224,3.9454994e-06 545,611.6247,0.0,27.521973,65.08295,3.1016752e-06 545,358.57605,443.1513,40.590424,60.624237,2.6083778e-06 545,64.578285,395.073,112.72028,103.827576,9.497089e-07 545,90.83793,446.88776,41.895454,57.408936,6.3414655e-07 545,39.51838,429.08594,78.38809,72.69528,6.0468693e-07 545,1.6238428,57.108433,19.44155,123.2986,2.5098393e-07 545,2.554235,23.70972,56.12114,105.67589,2.8209932e-08 545,0.78154665,13.934724,10.384474,74.30275,2.1643418e-08 545,65.34872,5.564741,42.14511,47.001427,7.023587e-09 545,1.1009392,7.251468,29.847878,56.650238,1.3332386e-09 545,40.024452,0.48399577,43.049896,48.30806,5.331879e-10 546,225.67006,223.5199,26.839325,46.994965,99.879326 546,111.00679,227.39755,22.98848,45.848694,1.1562366 546,419.3063,238.36949,20.267181,47.02748,0.081315346 546,567.9257,222.0766,30.129211,62.44397,0.036511317 546,549.0947,209.55733,68.685,112.25084,0.009518462 546,455.65683,231.80008,31.58606,68.36185,0.0069258413 546,54.251854,140.9931,36.70365,68.18576,0.0015267144 546,615.94446,197.8333,23.20221,77.403885,0.0009792668 546,611.12036,265.4689,28.026306,135.41122,0.0008973504 546,583.6363,149.96573,53.173523,203.28958,0.0004244555 546,325.94333,236.11615,23.42334,47.766937,0.00019502993 546,0.9164502,71.82773,18.835545,81.57085,0.00018268067 546,360.91333,215.33841,37.308563,87.19333,0.00017853994 546,611.787,371.10013,27.35968,127.185455,0.00017626192 546,209.6985,182.58401,76.851364,169.28217,0.00016541644 546,1.8892277,265.9935,33.180412,180.62692,2.0742607e-05 546,1.1703573,115.73721,18.40286,137.33272,1.8265457e-05 546,1.1357943,366.64468,18.503258,71.30621,1.5054346e-05 546,1.1788656,220.09064,18.999125,128.06882,1.1415765e-05 546,5.433288,357.84494,79.67564,131.96967,4.061041e-06 546,1.0703442,421.22607,15.743173,78.957,3.3901447e-06 546,612.04016,1.8986295,27.106506,60.933098,2.9619039e-06 546,3.8910336,131.08809,58.847008,222.14952,2.2633728e-06 546,3.4798064,429.12524,52.81822,69.99591,1.6818033e-06 546,1.8143523,22.017517,57.604294,107.73807,1.1367242e-06 546,0.74841636,13.335606,10.590792,83.211334,1.625464e-07 546,1.1880242,8.094339,31.33346,60.567802,2.6887303e-09 547,173.69524,227.15305,27.666016,55.811523,99.872086 547,421.8421,226.98407,32.119324,67.56058,1.3006085 547,249.17053,225.10933,28.710022,45.078598,0.26659474 547,57.9459,237.27615,23.832298,46.684235,0.037684634 547,499.8409,232.72162,39.66269,80.271515,0.029910915 547,193.7808,227.24812,24.465164,45.268692,0.0061436165 547,518.94775,218.47118,38.422424,69.475174,0.0059209503 547,622.7324,222.69096,16.414246,50.714706,0.005037805 547,76.73166,214.12074,32.17108,68.418686,0.0019369945 547,611.66614,200.91423,27.48053,123.34804,0.0003998339 547,498.94803,279.51334,24.124542,53.28882,0.00039718166 547,606.73956,430.4627,32.407104,76.63522,0.0003795801 547,604.957,245.47345,34.189697,209.21655,0.000149389 547,156.12547,191.07985,74.092606,154.3806,5.5901808e-05 547,1.9138038,196.45108,34.85475,154.11795,5.0528717e-05 547,1.3946908,134.48676,18.86899,78.20094,3.0014118e-05 547,3.357339,278.10776,57.923088,202.07538,2.0666586e-05 547,1.0585091,280.85986,19.106771,144.53998,1.6853623e-05 547,560.55225,389.9164,78.50806,106.370575,1.4396389e-05 547,0.9721086,364.92706,19.231512,127.23221,9.7326065e-06 547,611.66815,0.0,27.478516,60.63665,7.354984e-06 547,2.7980502,60.849194,58.35747,234.10228,1.5938401e-06 547,511.40335,417.54767,81.8757,82.27615,1.5279909e-06 547,2.0546484,24.105965,57.282574,102.63391,7.131218e-08 547,1.0717497,17.21139,10.797745,74.067566,3.0128223e-08 547,1.9382324,10.431491,30.909538,59.163845,8.758749e-10 548,116.51855,223.41428,31.760292,69.1503,99.94349 548,20.847713,220.14832,39.16225,65.60123,0.66547215 548,1.5205827,199.09251,30.734095,87.92668,0.5611018 548,421.147,223.83401,23.83487,47.673767,0.14256759 548,103.929245,225.61954,26.417603,58.55719,0.011798814 548,423.5442,218.93105,38.47879,135.85826,0.004943881 548,622.5913,235.32628,16.555359,51.716873,0.002539423 548,486.55893,199.15387,37.268158,78.94696,0.0017255794 548,448.1221,239.11586,23.943634,45.53981,0.0013588526 548,4.278024,140.05281,67.14393,179.2484,0.0011222173 548,605.1068,429.40677,34.039856,75.21573,0.00082930713 548,617.1354,188.91928,22.011292,80.40994,0.00073600456 548,0.74512535,235.44542,14.504664,58.2314,0.0006968129 548,599.9796,174.88753,38.88971,185.21776,0.00060055556 548,616.4072,300.42834,22.73944,88.42093,0.00047452355 548,587.75195,321.83038,50.653748,175.7041,8.969849e-05 548,609.1148,19.770084,30.03186,139.39114,8.022324e-05 548,97.20642,197.59412,74.677124,140.94147,6.5302636e-05 548,5.0062046,37.991886,39.229286,74.16861,1.9071225e-05 548,0.9668213,227.39061,20.708324,149.2126,1.4819466e-05 548,463.53693,429.5891,45.675232,74.31616,1.01491505e-05 548,1.0282056,344.15317,18.843744,130.37158,9.15655e-06 548,1.1143237,424.45435,15.938203,75.960205,6.977585e-06 548,488.4148,434.54883,47.79364,72.19592,6.1974874e-06 548,4.064862,343.40067,57.657104,146.3205,5.591664e-06 548,449.05188,391.55865,113.3479,107.35184,5.5699174e-06 548,575.6629,449.1574,44.43866,57.41751,4.762695e-06 548,1.5131357,99.703926,22.569714,144.91171,3.9340543e-06 548,512.85394,418.92905,75.6073,80.95868,9.97565e-07 548,585.57086,2.3803825,43.97821,50.86674,3.8236035e-07 548,2.1131136,8.80778,29.183483,57.83997,7.3441093e-09 549,27.51431,224.82938,51.333504,94.56287,99.94197 549,584.4651,201.63582,27.67334,53.76169,0.5033371 549,431.25348,224.40422,23.882782,48.667282,0.06667065 549,442.86932,389.59634,26.394165,50.41559,0.017270077 549,367.61905,221.73495,23.681763,53.456757,0.006392722 549,611.3624,197.147,27.78424,129.56094,0.005095709 549,133.56403,210.01125,42.239594,67.013535,0.004125239 549,9.483513,190.1271,95.55291,177.4884,0.0014192122 549,515.18304,357.41544,42.327393,92.27045,0.00080184994 549,584.4193,181.01688,52.28546,232.43594,0.00053968676 549,526.0432,319.423,64.818726,145.79706,0.00049108476 549,604.5909,429.28894,34.555786,81.4418,0.00036881998 549,452.27225,334.01453,94.68588,161.87881,0.0002609832 549,616.3736,318.9412,22.773071,82.82022,0.00024803454 549,586.0387,321.66068,51.593628,172.03464,0.00024764173 549,1.7553304,142.34268,18.317617,148.10272,0.0002289886 549,611.1686,0.0,27.978088,63.91642,0.00017603532 549,1.2109334,104.01943,19.167566,85.653404,0.000103210325 549,3.1530502,175.79332,34.128086,173.66084,9.4265626e-05 549,549.6483,411.88843,80.240845,92.22415,4.9317845e-05 549,2.0573616,68.91049,31.176876,175.57092,2.2638527e-05 549,1.0554184,246.39519,19.126787,133.92192,1.900492e-05 549,1.8779964,270.6166,33.13922,200.65894,7.345549e-06 549,1.0249015,382.41135,19.273571,116.003235,6.6927023e-06 549,3.9525197,397.4982,55.37422,98.413055,3.6782058e-06 549,1.5991634,22.78644,19.395245,119.95763,7.621419e-08 549,2.0352669,8.611441,28.38197,54.072693,2.0878994e-09 550,201.45227,219.50792,20.670135,47.176743,24.202316 550,106.35917,210.78656,28.066933,50.86432,10.796783 550,136.68593,212.39133,23.648743,45.24768,1.4820379 550,441.327,231.73839,23.1427,45.998856,0.08267408 550,84.43964,204.67552,39.54831,68.52818,0.01255963 550,618.21594,224.35966,20.930725,77.1237,0.0011962485 550,553.42255,189.0582,26.386108,59.36296,0.0009018355 550,608.942,439.89645,30.20465,68.906006,0.00084690563 550,617.98706,312.24728,21.159607,75.355865,0.00060135167 550,585.9051,250.96417,51.92157,228.98398,0.00038965623 550,599.9648,190.75262,39.181885,170.73013,0.00028290894 550,610.5179,135.11911,28.628784,135.84857,0.00022910502 550,0.6122449,235.23428,13.650093,55.060852,0.00022432562 550,617.1779,365.43622,21.96875,88.250916,0.00020321409 550,0.8820687,426.86386,13.5228405,46.747284,0.0001926049 550,617.2797,263.57587,21.866943,85.915924,0.00016311146 550,1.6098796,194.97601,19.112085,77.52756,0.000102216276 550,84.63036,168.17755,78.725365,143.20425,5.8940794e-05 550,2.0419443,157.61514,35.29,164.5998,2.2976268e-05 550,1.1820931,359.78513,19.833826,127.41577,1.667453e-05 550,0.84358317,255.40271,18.105036,74.319855,1.5704269e-05 550,3.174219,216.51955,56.71295,250.59578,1.35345435e-05 550,3.558441,397.30463,55.565342,97.60559,9.925284e-06 550,185.58134,189.12686,59.157562,98.64319,8.070092e-06 550,611.67816,0.899541,27.468506,58.32167,7.324786e-06 550,1.2819996,59.577553,18.890587,77.24291,7.2084476e-06 550,1.3939381,110.64981,18.648048,81.957855,5.941577e-06 550,1.3442408,256.99814,28.86977,154.5408,4.2470633e-06 550,155.54575,146.26878,142.48636,222.75108,1.4755828e-06 550,2.914398,42.872288,59.751873,185.64183,4.444214e-07 550,1.7708855,16.470186,34.483215,66.24648,5.708503e-09 551,80.52932,213.6352,38.790367,58.310608,97.55681 551,328.01715,234.4247,27.032532,50.17067,20.206387 551,245.70836,212.85583,32.8741,55.42108,1.1790187 551,344.06348,214.67453,42.966858,63.975372,0.113681205 551,2.5195541,200.2053,32.10302,66.92073,0.03398568 551,572.6602,210.4036,37.78296,57.433502,0.030761166 551,33.333233,210.0924,24.504677,49.147034,0.011685927 551,619.45447,141.87962,19.6922,61.15367,0.004450252 551,608.89374,119.58055,30.25293,154.33733,0.0037333386 551,621.75714,332.66724,17.389526,52.54303,0.0014079154 551,609.9928,340.1827,29.15387,138.16162,0.00079865975 551,612.34106,216.08025,26.805603,132.64189,0.00069609424 551,620.9912,385.02036,18.155457,58.643463,0.00055620197 551,585.0458,223.51727,53.40924,244.33795,0.00021693094 551,117.41918,182.33122,39.32383,70.40753,0.00015810589 551,608.3738,438.22647,30.772888,65.34595,0.00011932641 551,464.09726,181.5427,32.955048,69.09479,8.009916e-05 551,1.1822737,226.86378,19.801838,142.24132,7.100956e-05 551,59.865093,179.26889,90.304016,142.72989,4.3919543e-05 551,3.5085971,185.88348,56.23789,237.45172,3.155193e-05 551,1.1011833,331.5486,19.373857,129.46338,8.76903e-06 551,611.5753,0.93964845,27.57135,57.95558,5.7181664e-06 551,3.8669565,337.03592,57.379467,149.85013,3.6994613e-06 551,1.0659395,422.49893,15.921208,77.12363,3.5399553e-06 551,1.7064055,137.15218,19.425991,97.30423,3.4859643e-06 551,100.924484,112.128555,80.91791,175.81029,2.5006086e-06 551,140.1435,186.61382,26.21669,56.375122,1.7382238e-06 551,3.2542856,49.181923,60.560455,233.69891,3.3235128e-07 551,1.5684937,27.200268,16.105999,119.32323,9.611617e-08 551,2.799279,25.68326,54.428444,99.578674,5.492477e-08 551,0.989869,5.1235385,20.739775,65.18027,1.0713672e-09 552,147.6296,231.78891,23.559174,45.249756,0.105196856 552,390.53442,220.32881,36.749176,60.144516,0.09241873 552,503.44266,212.5297,38.814117,68.492645,0.044230297 552,5.800293,201.67337,34.281773,71.89026,0.04146012 552,107.939865,244.01233,23.814621,45.555054,0.029546488 552,2.6237826,128.80948,48.9256,178.04364,0.0046757925 552,609.2545,97.830666,29.890442,152.2312,0.0005253381 552,618.0135,247.65271,21.133179,84.09366,0.0005252309 552,1.3056194,239.09792,19.205954,82.753006,0.0003691036 552,605.823,435.44226,33.32367,75.70441,0.00032888114 552,1.7229184,163.53087,20.551107,94.06679,0.00029987047 552,611.4864,319.79813,27.660278,147.58356,0.00010375983 552,505.9245,439.73724,45.123535,60.24588,9.254185e-05 552,3.0453093,225.01521,57.52009,250.07689,8.212935e-05 552,1.1337688,398.7537,18.381,71.833466,4.544274e-05 552,601.29114,202.9473,37.527893,169.3927,3.6028898e-05 552,555.0074,405.7113,84.13928,96.0885,3.567414e-05 552,1.4935596,260.671,28.987663,151.67291,1.7407627e-05 552,610.0422,3.6742253,29.104492,144.10938,1.7163657e-05 552,464.81528,401.59406,113.22214,96.46915,1.3576182e-05 552,3.8137631,396.6977,56.49448,98.09393,1.2228758e-05 552,532.33435,438.78958,43.734802,62.648346,6.1499977e-06 552,1.3144051,443.76553,21.608358,58.733917,4.7379235e-06 552,465.5078,444.44855,46.49359,54.961,2.4777626e-06 552,0.64586264,12.167452,10.76858,78.67844,1.2061787e-07 552,1.5169255,15.31822,35.96873,70.952385,6.9720706e-08 553,488.48273,244.70496,25.171814,51.39981,0.78278255 553,135.4819,217.0933,29.213516,62.611557,0.49856445 553,125.60749,237.7804,26.170326,51.455383,0.020844756 553,579.0831,237.67699,41.43799,74.527176,0.0025861165 553,610.47754,223.07167,28.669128,115.90584,0.0022260677 553,73.86766,218.02602,24.769295,47.899124,0.001779056 553,284.56525,138.50343,28.51123,49.84233,0.0015141749 553,113.848145,245.2666,23.656387,45.63983,0.0014710393 553,621.1586,286.18408,17.988037,58.77646,0.0008537953 553,587.78705,232.8527,50.06537,224.36272,0.0006966281 553,484.9148,86.08077,40.471313,85.20922,0.00022645359 553,615.9583,82.78906,23.188354,82.2625,0.00018639583 553,607.6724,436.16983,31.474243,68.21799,0.00012362533 553,2.079546,161.20668,27.13998,73.73122,0.000100543715 553,601.3083,66.6921,37.83838,208.51773,3.291035e-05 553,2.6307828,123.83868,58.046562,188.3252,2.8723485e-05 553,1.3385303,422.65756,17.106926,77.15155,2.8655959e-05 553,1.2423731,187.28752,17.743824,129.18971,2.3311664e-05 553,1.3970866,328.95834,18.534895,130.7702,1.0188096e-05 553,527.40247,394.37054,110.057434,106.60083,9.047112e-06 553,505.8647,440.63354,48.836548,59.710724,7.970659e-06 553,0.9483822,303.07965,18.251781,67.989105,7.8205185e-06 553,3.9286067,397.22437,54.95105,97.15665,6.55296e-06 553,545.61523,443.0425,44.293274,60.319794,5.2937276e-06 553,1.7453825,248.86958,33.790012,176.5247,4.7866642e-06 553,465.32355,440.91095,43.996063,57.58484,2.9195178e-06 553,612.783,0.0,26.363647,62.455677,1.889763e-06 553,359.919,425.9429,71.99106,73.32388,9.60334e-07 553,238.53949,397.47256,112.29495,98.631195,4.084787e-07 553,196.22467,431.78262,74.62775,67.92047,2.7205982e-07 553,254.66391,443.94855,42.70981,58.11142,2.544195e-07 553,1.5094173,16.20482,35.47369,70.22099,8.871846e-08 553,508.51147,3.2661963,43.877747,45.14943,1.5825296e-09 554,108.42028,228.17703,33.17449,62.230713,8.777508 554,585.7073,243.47737,25.301025,50.318222,0.04121444 554,612.4792,347.6415,26.66748,58.314667,0.027744364 554,585.33325,256.8293,51.8927,194.32007,0.0073835966 554,127.79875,108.32831,23.206116,50.8956,0.0035173136 554,44.704056,51.353848,26.31968,53.449154,0.0035078211 554,4.6742334,94.267334,59.163815,222.9412,0.0021733847 554,12.652297,56.48778,36.83146,68.719604,0.0018415035 554,593.1248,348.35272,30.778625,56.26938,0.0016580654 554,606.3594,67.72159,32.787292,145.28108,0.0012450878 554,488.13138,231.54904,35.587006,65.414856,0.0011237616 554,615.6989,240.32391,23.447754,83.612946,0.0006763488 554,598.5035,162.38062,40.64319,201.42255,0.00029726516 554,1.800123,70.477325,30.324835,164.2534,0.0002588855 554,341.91602,65.59972,33.47751,79.88927,0.00022677907 554,604.5965,352.19794,34.55017,138.3114,0.00016375813 554,1.3040015,149.10207,18.919308,142.01765,7.940279e-05 554,1.5246012,452.97647,29.223091,49.847748,4.70177e-05 554,1.1923364,232.27605,18.323696,129.11977,4.5634355e-05 554,1.0152133,324.9026,17.946507,67.21097,4.2651995e-05 554,1.9196322,266.75116,31.64906,184.17407,3.2116357e-05 554,1.065647,358.24738,17.991297,141.5216,2.5563477e-05 554,4.3379493,348.71967,77.30654,141.7702,1.0428268e-05 554,18.072655,456.83893,45.790173,47.046234,1.02810145e-05 554,611.9294,0.0,27.217285,64.388725,4.187795e-06 554,50.53602,455.2244,41.99279,51.398743,2.5552843e-06 554,355.8597,44.7444,35.981415,84.75696,1.6337202e-06 554,284.49847,426.6589,73.145874,73.20917,1.0808225e-06 554,222.54097,422.85287,73.41655,77.33313,8.662054e-07 554,48.5608,392.2645,114.83575,107.93457,7.257101e-07 554,181.43442,424.0894,74.571045,76.697296,7.154886e-07 554,92.62792,455.69345,40.86895,51.130615,4.2980582e-07 554,120.01123,455.80142,40.845703,50.818787,3.6819102e-07 554,139.53311,423.1381,74.55548,76.9689,3.5148983e-07 554,1.1050826,13.240156,11.805861,82.63559,1.7110654e-07 554,347.44775,3.4047267,45.433533,49.126205,5.0182086e-10 554,377.9169,3.1116667,44.666687,46.177948,2.40678e-10 554,306.0481,2.616242,43.567383,45.27571,1.06845845e-10 555,161.75023,218.73157,34.57498,69.996735,3.3277576 555,4.406827,195.59871,21.76923,49.190414,0.43097377 555,594.624,233.6756,42.09204,90.48947,0.15834212 555,168.96457,82.19376,31.060486,64.5351,0.029283352 555,2.022111,142.40706,30.536842,145.59895,0.007478887 555,1.1486995,95.57778,20.057499,78.12992,0.0020452007 555,618.13245,265.3972,21.014221,68.12042,0.0016527732 555,14.986827,201.38014,31.349262,65.20552,0.0012165055 555,617.61536,374.8542,21.531311,77.92618,0.0004630581 555,587.51117,291.5716,50.87146,186.49017,0.00037271547 555,554.04364,230.90952,36.946106,73.35208,0.00032705616 555,616.0239,118.235085,23.122742,89.65127,0.00016435799 555,443.90366,108.52786,34.617615,69.33589,0.00010389291 555,1.0739543,203.57635,19.52623,156.14084,9.8089e-05 555,540.809,246.36324,32.408447,74.21858,9.261955e-05 555,609.6824,440.26917,29.464294,64.198456,7.7782235e-05 555,0.9662687,344.82098,18.33405,68.96185,5.9851398e-05 555,601.58124,77.94477,37.319153,210.1044,5.332521e-05 555,5.9264293,105.24792,91.33991,258.44067,4.8261667e-05 555,3.5325246,243.78188,57.445526,227.18059,2.3202583e-05 555,1.6581446,443.60995,42.06754,60.172516,1.8291501e-05 555,1.5575985,351.8178,30.483234,137.9993,1.4007122e-05 555,39.827587,31.376446,46.83083,100.97247,5.4425827e-06 555,612.5324,0.0,26.614258,62.096146,2.6449297e-06 555,5.312471,395.38345,81.8388,100.379,1.8257127e-06 555,1.7168897,38.28698,35.031616,162.59439,9.1531246e-07 555,270.5793,426.14523,72.539856,76.063385,8.233747e-07 555,408.98077,7.467357,47.722107,141.51254,2.427044e-07 555,0.97356814,11.786849,11.73786,81.150444,3.1641026e-08 555,1.871613,12.465691,37.674377,82.312584,1.7131937e-08 555,79.27835,4.0428615,43.762184,45.449528,4.8145474e-09 555,392.0496,1.1568995,66.83481,49.26553,2.661107e-10 555,45.456863,3.6438022,45.21698,46.026283,1.3989655e-10 556,410.0906,223.54927,41.08731,70.97777,0.93439883 556,247.75703,204.49147,34.696976,58.331985,0.66864693 556,594.72845,216.4466,32.832703,48.464935,0.11125826 556,114.55076,227.49571,49.842323,105.95885,0.1019311 556,395.38474,159.7316,74.74356,157.8707,0.0018755789 556,616.1148,192.41422,22.984924,74.03516,0.0010414367 556,597.1523,191.82237,40.64026,162.25136,0.0006089493 556,614.86383,56.83953,24.282837,87.594444,0.0004501071 556,47.137302,243.36699,63.62779,169.89214,0.00022346596 556,602.3089,71.03107,36.25757,207.37265,0.00012874704 556,83.851524,191.96794,103.11373,195.37471,0.00012303045 556,612.6364,364.7724,26.510254,130.9126,0.00011954499 556,149.73009,207.31422,23.348938,47.580414,5.6502755e-05 556,90.74917,424.4525,73.58915,73.89609,4.892183e-05 556,612.46185,288.5836,26.684814,133.13293,3.962816e-05 556,607.82166,0.54578775,31.278015,87.782364,3.5384237e-05 556,201.39268,120.677986,141.8781,230.40714,2.44272e-05 556,1.4047551,216.37016,20.085722,137.7747,2.0817755e-05 556,566.3928,15.955423,72.62341,141.8778,1.3026114e-05 556,32.399513,443.37158,52.382812,60.960297,1.260156e-05 556,136.38324,439.5591,42.137985,64.36505,1.1843638e-05 556,3.785695,192.06479,60.57819,230.93268,1.0097173e-05 556,7.299649,399.2163,95.91049,99.03543,8.891014e-06 556,1.8838509,456.8912,28.596272,48.75006,8.202652e-06 556,0.9052661,387.21878,18.890265,113.006714,7.9984065e-06 556,1.4321378,154.62943,19.325195,117.74115,3.463319e-06 556,159.82814,422.11356,72.43533,79.26218,3.4177313e-06 556,1.007579,292.47174,19.243212,137.35834,3.334207e-06 556,358.92624,422.4218,73.439514,77.57889,1.0104451e-06 556,1.2606169,76.94954,17.768099,135.76607,5.856167e-07 556,354.65094,3.954691,41.770935,45.908752,8.87254e-08 556,319.68942,3.4827604,42.172455,50.079643,1.4338069e-08 556,1.9817123,15.68088,58.534916,117.088455,1.2267909e-08 556,1.2194052,7.7749057,20.080257,55.472363,1.3234162e-09 556,292.84732,1.5919971,42.31662,46.89292,8.1107837e-10 556,572.47644,0.022503255,44.829712,45.10844,7.376531e-11 557,587.23047,191.8049,45.929626,73.32236,78.10027 557,620.60895,205.98386,18.53772,61.977905,0.055814255 557,489.08282,224.37881,50.182312,117.92435,0.013324698 557,516.9385,198.78069,36.818237,54.954056,0.0113911675 557,597.2585,71.042946,40.879456,225.36084,0.0075208964 557,163.66074,239.89276,26.544067,49.22296,0.0047162035 557,617.8063,83.133415,21.340393,73.69439,0.0019733259 557,423.50006,288.80023,44.930847,142.09613,0.00056704174 557,460.14792,197.64723,113.884186,179.99284,0.00037005346 557,600.0166,194.74568,39.120483,239.83913,0.00024767785 557,542.2801,119.90802,91.74945,243.93417,0.00015847571 557,609.2661,438.02542,29.880554,65.444336,0.00015470709 557,1.2347608,381.76718,19.862593,115.840485,0.00014959689 557,608.54645,12.079922,30.139221,116.90648,8.639945e-05 557,621.0803,30.44157,18.066345,55.26221,8.019149e-05 557,399.52332,249.97026,108.79028,207.94908,6.86794e-05 557,1.0395191,220.14453,20.880892,103.537964,6.468689e-05 557,3.1457064,344.2984,58.44048,146.3887,6.264433e-05 557,3.7685645,167.73888,55.77408,239.94347,6.263286e-05 557,572.4191,360.52463,66.690125,132.69028,4.484809e-05 557,1.3917717,300.96036,19.650385,138.5055,3.474849e-05 557,1.9586694,139.83029,28.595219,141.53915,3.0035993e-05 557,493.0509,431.89594,57.416687,70.81763,1.9440695e-05 557,527.18823,442.00897,42.61145,62.252563,1.4451744e-05 557,1.2623014,84.663284,19.501541,135.27068,9.86664e-06 557,439.6808,424.1344,81.21442,76.16989,6.1091364e-06 557,13.331609,419.05676,90.98744,78.025085,2.0721602e-06 557,236.56453,454.9469,40.987137,48.541656,8.0105866e-07 557,404.5898,444.5635,46.171967,58.867554,6.5399837e-07 557,246.59456,426.55554,75.9142,72.73477,6.147931e-07 557,68.83806,423.76346,77.57448,73.784424,5.8516673e-07 557,358.56573,423.7351,81.762726,75.679474,5.528889e-07 557,3.287134,53.33316,59.50788,208.21414,5.358272e-07 557,144.08722,445.20334,43.430984,55.645172,4.4297596e-07 557,186.18846,445.73724,44.66446,55.992188,2.855729e-07 557,213.58487,444.95435,43.29651,57.06253,2.832457e-07 557,1.4837387,12.325766,35.489513,81.096375,4.109767e-09 557,433.43097,4.076356,47.942383,49.867565,3.6768236e-10 558,304.35397,201.57744,24.283356,48.85118,0.0057526 558,573.5725,221.34204,63.380005,246.03241,0.0030834556 558,473.56772,244.40225,48.99893,99.23132,0.0026213655 558,114.39799,204.21828,28.428642,48.58313,0.0016542304 558,53.46756,206.38255,26.986603,51.09041,0.001071455 558,353.2289,345.00397,65.23245,145.5729,0.0007862778 558,611.2757,342.07715,27.870972,141.44308,0.0005686902 558,610.25793,222.18448,28.888733,161.15802,0.0005091631 558,105.60083,114.63992,41.644455,140.08984,0.00040377886 558,265.28458,200.89307,23.707092,48.237717,0.0003971521 558,542.5761,203.7439,26.340149,50.487625,0.00022129895 558,233.20267,213.13683,32.76071,60.288498,0.0002063873 558,213.02763,216.85391,32.225464,58.454742,0.00015956581 558,584.1928,106.50459,53.715332,223.89738,0.00015351047 558,573.9708,407.4765,64.83429,88.11032,0.00015088727 558,305.46936,372.83112,46.331482,119.88498,0.00013151429 558,612.4172,155.60164,26.729492,130.47853,8.91788e-05 558,112.434105,125.61359,26.644356,54.641144,7.812153e-05 558,1.2391325,102.58048,18.894743,80.32584,4.9638573e-05 558,1.0072974,206.50319,17.731182,73.552475,4.3601205e-05 558,4.179502,238.4748,56.520695,230.20798,2.6137472e-05 558,277.8587,325.48328,116.5224,162.81992,2.1888676e-05 558,504.3424,382.50992,118.125854,108.65134,2.159446e-05 558,1.0866911,233.34367,20.35238,127.412125,2.1562973e-05 558,357.73016,434.06714,49.65796,69.50366,1.693547e-05 558,5.005643,106.55441,56.52242,234.23404,1.6619695e-05 558,1.1917586,150.65633,18.102911,84.10115,1.384564e-05 558,320.70584,433.59485,47.7724,65.009125,1.25269125e-05 558,1.0991496,391.96454,18.49411,70.47153,9.6205395e-06 558,611.79236,0.3547526,27.35431,59.517788,8.719661e-06 558,371.58737,376.94913,122.052124,117.22119,6.6799366e-06 558,71.67854,94.500145,42.643982,102.6502,4.9439436e-06 558,1.0257691,334.67383,18.420258,73.6264,3.7902914e-06 558,534.288,435.98975,42.487305,64.77255,3.2521775e-06 558,3.8344126,395.67123,55.83809,96.838165,3.0488281e-06 558,482.21146,418.27896,73.35013,77.937256,2.067415e-06 558,274.91953,452.31903,42.547882,52.80728,1.5078607e-06 558,1.9037216,28.511524,28.682478,137.87,1.5008223e-06 558,458.87964,443.29736,42.79657,58.62375,1.2311708e-06 558,235.20595,418.27844,76.08977,81.58447,1.1457228e-06 558,431.44208,442.9084,43.38443,59.55844,9.292407e-07 558,402.76038,442.39813,43.96698,61.12094,7.56393e-07 558,0.76894534,13.459085,10.266258,78.29863,1.620171e-07 558,1.5281072,9.861489,28.09989,52.64639,9.802231e-09 559,13.236423,206.1429,63.437023,156.31548,99.83969 559,2.430433,219.42618,27.820473,153.42606,0.088453755 559,609.54065,197.80489,25.418335,57.671997,0.068932645 559,589.497,396.3606,48.758118,109.55771,0.010603451 559,478.33716,192.73003,32.714325,62.52423,0.00976326 559,299.62085,117.70887,28.905365,53.98655,0.0066005546 559,1.8474187,323.79962,24.29157,53.802185,0.0063682133 559,597.58575,464.7802,37.412354,46.366455,0.005931529 559,601.29144,158.08014,37.260986,139.14392,0.005039482 559,538.8087,212.69916,25.328491,47.741272,0.0035644015 559,410.2672,209.47813,32.074036,67.42,0.0034824556 559,0.5867338,217.41832,14.080739,57.988876,0.0023488938 559,622.22577,427.29913,16.920898,48.606354,0.002304107 559,455.05215,210.51094,25.095673,51.98961,0.0014750962 559,0.45866293,245.0569,16.672052,79.16194,0.0008164758 559,263.67902,92.99483,25.423187,47.640366,0.0006970189 559,521.4229,338.12534,117.723755,167.09442,0.0006270318 559,269.93958,114.82943,25.524902,54.030754,0.00027303316 559,34.666557,242.17418,30.488686,75.931656,0.00025627436 559,607.57245,235.65488,31.574219,188.50443,0.00020757814 559,568.89465,94.718475,69.58124,272.29767,5.345627e-05 559,496.6709,419.67218,94.98175,79.90524,2.1470263e-05 559,562.1558,419.37665,52.015747,86.84784,2.0730187e-05 559,3.4554608,302.26434,57.32744,179.04318,1.2849651e-05 559,1.0445671,343.67822,18.852764,79.950714,1.0658477e-05 559,1.0492798,118.66723,19.402355,185.16528,8.144005e-06 559,612.2012,0.0,26.945496,61.30353,3.3979713e-06 559,0.9424146,420.8179,16.032457,79.01434,1.9359434e-06 559,1.6695654,56.20248,19.040842,124.95184,3.1610037e-07 559,2.2822835,31.573164,62.61569,202.90327,4.3015174e-08 559,1.8929574,11.896634,36.252773,72.27581,6.332105e-09 560,492.72168,206.16476,34.69159,66.248474,0.22954544 560,141.5244,164.13675,44.341858,112.88211,0.004737612 560,448.14465,192.67249,38.358948,93.31647,0.0047279573 560,622.62866,201.21692,16.518005,51.887405,0.003206301 560,202.48625,70.88474,26.11081,52.715492,0.0019159168 560,339.53513,212.03093,34.932556,70.37569,0.0016000946 560,167.7228,160.30667,38.854202,111.541504,0.0013670737 560,609.8189,145.93076,29.327759,129.71994,0.0007816364 560,616.9772,263.73758,22.169495,87.37344,0.00019239083 560,290.49603,93.05201,40.38156,90.55787,0.00015551194 560,586.67694,194.0886,52.06909,237.14749,0.00013082763 560,616.99744,333.64587,22.149231,84.35843,0.000114120136 560,607.93945,434.3408,31.207214,69.89542,8.774097e-05 560,0.7887671,209.07211,29.021866,102.13434,8.3712315e-05 560,616.6585,106.41768,22.48816,80.73149,5.3553424e-05 560,0.45667157,195.77368,14.235261,55.291977,4.58335e-05 560,1.1633326,274.97855,19.06868,79.80234,4.0985295e-05 560,1.4598658,333.87604,18.828184,76.23898,3.0235966e-05 560,176.06946,126.8825,77.91469,169.7258,2.3159695e-05 560,1.9202034,264.45615,33.65361,185.15338,2.2598146e-05 560,276.24405,116.193756,81.42749,189.81494,2.2103817e-05 560,582.55597,57.01663,55.833557,231.35815,2.1113503e-05 560,571.3607,355.70657,67.78595,140.72647,1.0201435e-05 560,3.2602067,120.562645,54.462566,234.72351,1.00334355e-05 560,1.6795793,67.68931,20.393959,104.10473,9.113757e-06 560,1.3048185,124.57887,20.256096,105.34012,8.368329e-06 560,1.0941479,411.78488,18.172821,68.10669,5.8308024e-06 560,328.59265,257.27917,44.255066,101.839935,3.610091e-06 560,5.585368,355.7401,78.57892,131.87494,2.140884e-06 560,290.57755,450.80917,40.437042,52.379913,2.0838206e-06 560,466.65002,437.63065,41.71768,61.389404,1.5828821e-06 560,612.47925,0.0,26.66742,64.997185,1.4323351e-06 560,488.95084,448.75366,40.76602,54.59256,1.2185274e-06 560,463.9332,390.0666,108.91873,105.89874,1.1862545e-06 560,397.75726,440.53302,41.979736,61.43564,1.1844977e-06 560,420.43604,423.1717,71.9949,74.18442,1.0940261e-06 560,3.3977897,427.2037,52.372467,70.22986,1.0933898e-06 560,250.54683,422.62347,74.64278,73.84805,9.617563e-07 560,322.71216,438.1843,42.00128,62.569244,8.9847197e-07 560,277.5842,391.30838,111.00574,104.12741,7.8087845e-07 560,353.09528,420.7655,72.05609,77.60098,7.4374367e-07 560,534.82825,416.71136,81.34479,85.97223,7.179534e-07 560,2.8114064,19.367708,58.075184,108.92117,4.1911812e-07 560,0.9814441,13.948825,10.161861,80.58394,1.0541488e-07 560,1.5524756,8.069981,30.182865,58.91447,5.027782e-09 561,412.8587,208.17697,38.123505,66.13568,0.061309554 561,3.442684,136.45576,50.942455,169.46675,0.008681698 561,434.6322,197.35748,34.227173,70.054565,0.0008465956 561,448.25656,149.4089,26.85147,56.479904,0.00077245507 561,611.46893,239.89807,27.677734,113.88336,0.00046730138 561,1.668632,145.67467,20.831642,101.13101,0.00041821905 561,1.235691,78.48116,14.2682905,60.223274,0.0003269074 561,33.03813,94.43831,75.90699,206.80504,0.0002296331 561,611.561,372.94662,27.585693,125.29791,0.00018093936 561,508.37128,147.85191,27.068115,56.543304,0.0001689765 561,586.52075,216.1127,52.060364,220.88922,0.00014384453 561,1.2334399,254.88254,19.157555,78.54117,0.0001271139 561,611.1537,138.52466,27.992981,144.93002,0.00010978555 561,616.82025,311.58786,22.326416,83.52078,8.9767986e-05 561,2.0267496,62.121174,30.003273,95.24637,7.23887e-05 561,182.62111,74.52284,36.82962,70.16641,6.961665e-05 561,498.60236,134.32019,42.543457,127.5961,6.51971e-05 561,52.86538,77.48281,38.60025,76.756386,4.992004e-05 561,227.48854,105.42134,40.069565,144.08215,4.4893277e-05 561,1.8839388,218.99454,34.992058,198.33115,3.715252e-05 561,0.64177084,377.41794,13.667311,49.03595,3.181183e-05 561,1.0896485,336.37677,19.725912,127.826324,1.6297186e-05 561,422.139,152.7667,36.936676,84.26279,1.6184244e-05 561,0.93756515,301.21707,18.388657,78.1167,9.9834015e-06 561,612.0149,0.0,27.131775,62.25102,7.2538937e-06 561,1.9665235,12.144362,59.0284,128.29202,5.967095e-06 561,0.76240724,417.73685,17.087147,84.48062,4.0134305e-06 561,535.03076,394.34805,103.50903,102.82388,3.4338839e-06 561,492.98767,436.52896,42.515198,64.120636,1.7240653e-06 561,463.6484,394.6069,108.480316,101.30963,1.6912575e-06 561,381.44247,392.12048,111.38138,101.38422,1.317904e-06 561,349.5753,437.5327,42.86902,64.89255,1.135658e-06 561,520.4849,439.63876,44.349182,62.328125,1.0687827e-06 561,391.25742,437.78314,41.980408,64.34473,9.899682e-07 561,236.55482,421.1328,71.76369,75.59006,9.858679e-07 561,5.3219237,354.21066,77.20234,130.38513,9.829689e-07 561,1.1736475,10.295612,13.6788025,88.00745,8.90722e-07 561,441.2137,420.94446,72.63205,76.42374,8.7124096e-07 561,312.89218,391.15118,110.05188,102.62509,8.242405e-07 561,542.9553,453.07532,42.494385,52.207092,7.6452136e-07 561,322.9062,436.33777,42.197235,64.175415,6.753417e-07 561,8.758454,455.01303,41.458683,48.74933,6.578981e-07 561,68.71896,425.37656,75.12427,72.615906,5.1165375e-07 561,195.84804,423.63214,72.666,75.116455,4.824057e-07 561,172.57368,440.49365,42.385117,61.11084,3.8962816e-07 561,4.7840805,3.905446,44.619755,58.407898,5.8653864e-08 562,572.9227,268.29272,62.801758,187.21426,0.8368472 562,186.5257,187.67874,42.116684,108.79181,0.01219888 562,148.53654,212.47528,31.031647,53.531097,0.007956579 562,597.0222,351.00116,42.12445,143.89505,0.007815864 562,206.09877,214.65285,27.38089,58.1187,0.0043633934 562,617.1168,359.7828,22.029846,78.87976,0.003676302 562,619.1178,406.42917,20.02887,71.44867,0.0020580473 562,1.2518059,183.69318,19.043192,85.61636,0.0019355435 562,352.56415,177.21794,40.812866,80.08687,0.0013281287 562,560.04816,243.40598,43.17108,137.2709,0.0010074825 562,600.502,179.73967,38.644653,214.22401,0.00083522254 562,363.23752,206.46385,20.75412,45.33545,0.00082168746 562,250.12013,54.50663,36.156143,69.102905,0.00031843202 562,429.98465,180.02707,35.274567,65.33473,0.00028509737 562,616.9016,193.42044,22.245056,79.32977,0.0002311725 562,2.0010824,140.80467,33.70231,183.76732,0.00020230179 562,176.94348,155.0199,106.28659,186.89023,0.00016028996 562,617.4218,122.616516,21.724854,81.99364,8.674671e-05 562,1.1895313,221.67693,18.437939,140.5418,5.0921328e-05 562,218.94206,155.3181,37.362747,75.43544,3.904542e-05 562,603.6686,76.17019,35.47809,184.5141,2.7456957e-05 562,2.4888885,233.63557,58.182533,236.29109,2.1814114e-05 562,1.1203223,345.25058,18.310265,128.22964,8.173603e-06 562,188.84547,121.992256,25.768875,51.409966,3.9311667e-06 562,3.3966455,392.60898,55.28878,101.212585,3.717562e-06 562,612.13947,0.0,27.007202,62.611454,2.846779e-06 562,154.2452,456.00247,42.69548,46.507385,2.579632e-06 562,126.900665,454.8858,43.333496,48.944885,1.597733e-06 562,1.0966822,440.74048,22.385126,59.808075,1.5857046e-06 562,32.061863,423.47617,78.59071,72.52359,1.3947214e-06 562,76.58021,443.19006,42.922775,55.933655,1.364803e-06 562,212.20499,423.7799,80.90765,72.17731,1.2664639e-06 562,134.97136,394.78207,108.887314,101.37027,1.2362582e-06 562,103.777,443.20276,43.696877,57.683777,1.105869e-06 562,1.463973,64.02955,19.317043,140.31961,9.0979137e-07 562,2.8523731,19.77763,56.75772,122.00612,8.580931e-08 562,0.90863407,14.246234,11.618463,79.48433,6.758466e-08 563,123.14904,221.71594,29.735847,46.556366,0.9187876 563,537.1686,200.47115,32.2547,86.64131,0.877311 563,518.10596,228.39029,35.234924,60.95175,0.52782387 563,53.28886,218.40268,28.180767,49.878113,0.25437653 563,14.2010565,215.49446,35.815357,73.51915,0.0083293645 563,611.27563,181.67189,27.871033,139.55821,0.002901568 563,114.03023,166.79451,46.47722,119.9337,0.0020818098 563,604.8658,429.3271,34.280884,77.46512,0.00096772326 563,190.60048,235.28154,24.76941,46.774338,0.00066298887 563,583.3813,174.928,53.122925,263.5008,0.00052612525 563,1.4618441,216.42651,17.672575,75.849365,0.0004973442 563,610.3619,265.25638,28.78479,154.21631,0.00046052228 563,4.8724413,160.78221,73.1555,170.85933,0.00039657074 563,501.55917,199.31354,74.73624,144.2131,0.00035441216 563,614.9839,136.28468,24.16278,92.08835,0.00025349983 563,25.969486,135.2333,44.460133,86.73529,0.0001338599 563,581.2982,449.66605,43.913086,60.64984,9.021968e-05 563,559.38043,383.77472,78.94031,122.22211,6.140317e-05 563,451.43167,318.38406,78.27878,167.34375,5.7369452e-05 563,1.2056348,269.69592,17.833069,76.58661,3.8146176e-05 563,407.4739,241.46844,75.9769,196.14713,2.686946e-05 563,2.1651196,103.242134,29.625708,165.18753,2.2732986e-05 563,266.04544,129.55782,84.3107,164.87254,2.0287589e-05 563,1.0952507,414.79028,36.457684,79.62082,2.0106263e-05 563,0.9191553,320.12875,19.45584,144.64932,1.9063187e-05 563,2.1541357,209.70538,32.128365,181.8624,1.6757074e-05 563,601.7677,47.40036,37.185608,217.18777,1.5426805e-05 563,486.18945,415.90173,85.574646,85.03317,1.437444e-05 563,91.786736,116.934845,110.54235,203.80731,1.3115515e-05 563,3.0498323,312.33566,57.53311,170.81384,1.0514228e-05 563,613.0145,0.0,26.132141,65.37995,9.837063e-06 563,554.909,447.91074,45.101746,57.8071,6.214509e-06 563,36.7501,427.7699,80.43653,70.726715,1.235584e-06 563,1.7100953,54.964024,20.856592,108.76204,2.474191e-07 563,2.471421,21.274242,56.74285,110.91795,5.6281348e-08 563,0.80921835,12.126553,10.220624,81.85515,4.9000228e-08 563,1.6538835,8.956851,28.59947,56.467686,4.306531e-09 564,528.7133,205.16045,36.241516,79.18788,0.039088026 564,433.95175,229.76561,24.810852,54.076736,0.02379214 564,4.248244,176.23985,47.737244,103.275955,0.0101016015 564,422.1285,245.04178,23.9599,49.583954,0.0071227755 564,545.4676,220.32336,39.97577,120.52521,0.0054217195 564,615.3947,159.36852,23.751953,88.00345,0.0012979546 564,1.5718547,191.3158,18.858274,81.77695,0.0010652746 564,583.6808,91.426605,53.461914,224.24347,0.0008215659 564,520.4929,222.51677,22.529236,46.467728,0.0006727811 564,597.32214,465.6224,39.39203,45.52426,0.0006703397 564,617.5659,225.07297,21.58075,81.10507,0.00022563185 564,603.5557,200.46156,35.590942,192.24797,0.00017231965 564,603.0559,385.21268,36.09076,120.61087,0.00012040529 564,512.9017,250.66159,86.95648,192.90091,4.4361626e-05 564,382.31,337.46323,61.8071,153.06787,4.349679e-05 564,1.221272,234.50125,19.60145,146.68301,4.0609335e-05 564,499.44714,76.394455,19.690186,46.60948,3.568976e-05 564,609.7715,4.173646,29.375183,133.57823,2.7776377e-05 564,4.092422,240.51329,55.374905,235.61775,2.301052e-05 564,337.97546,237.28287,73.40497,194.9877,2.2135839e-05 564,421.4908,412.07956,89.345825,88.06149,1.9722187e-05 564,482.26767,75.08043,26.612244,64.707184,1.101869e-05 564,1.2126669,423.83224,16.801336,76.026825,1.0232361e-05 564,512.5116,451.64148,43.29077,56.48999,7.057761e-06 564,3.6802084,426.1573,51.81052,70.4436,6.903914e-06 564,573.9911,437.09735,45.90747,69.67465,4.8341913e-06 564,486.2706,447.97638,44.24832,57.20749,1.7380216e-06 564,519.53864,422.13388,74.44214,79.33066,1.714006e-06 564,28.1403,422.8618,81.13695,73.25354,1.4717994e-06 564,1.5565324,74.59072,18.276152,138.45773,5.348021e-07 564,3.114302,23.07202,56.499096,104.65595,3.1987387e-08 564,582.8273,1.9834375,45.982727,46.818245,4.3799178e-09 564,0.9303007,8.813617,13.584476,77.53692,3.7224646e-10 564,1.0557276,0.6655306,31.813864,49.10693,3.81931e-11 564,544.2131,4.058003,46.023987,47.032585,1.3315042e-11 564,486.15784,2.858483,42.043518,53.659866,8.3018184e-12 565,559.42554,203.9012,36.44995,62.87645,1.0958253 565,495.86783,230.52928,40.248566,94.5417,0.38296482 565,366.34204,222.06131,23.092316,47.242615,0.13118528 565,530.80066,220.9224,24.426636,46.23938,0.01961198 565,608.2627,243.2374,30.883972,74.88959,0.011238039 565,299.11877,234.63084,25.999786,46.146866,0.01067921 565,390.42026,238.87706,30.12201,59.152878,0.009431132 565,578.7938,378.17883,60.352844,129.59546,0.0066610803 565,48.742203,217.70453,27.255783,51.648468,0.004934522 565,540.9906,210.17166,43.405945,107.57843,0.0032409313 565,14.780215,161.04613,38.28823,62.28508,0.0030954613 565,598.30865,233.00533,40.6886,223.7451,0.0028920812 565,333.3191,248.89438,23.055634,47.50412,0.0014104205 565,526.18555,71.6803,30.27832,61.795685,0.0011403786 565,286.47974,176.05434,39.541107,73.72098,0.0008444861 565,616.371,131.36122,22.775696,87.60394,0.00057862164 565,616.62067,196.7585,22.526001,90.0085,0.00053017086 565,1.0690414,158.24043,13.835446,58.80182,0.000494384 565,597.0902,96.97691,41.4234,183.58342,0.00040883783 565,243.43845,175.75377,26.08667,51.870346,0.000374528 565,110.31487,218.14526,31.67675,60.777283,0.00029133045 565,614.3839,301.60434,24.762756,100.02222,0.00029080862 565,1.7930574,171.52626,18.201817,138.61217,7.8104924e-05 565,1.4205616,407.20297,18.143812,73.38031,6.216453e-05 565,506.0257,74.61612,19.916443,48.366425,6.186841e-05 565,382.9072,339.59293,77.4021,151.54431,3.3980043e-05 565,402.98755,418.09305,86.02133,82.844086,3.3324905e-05 565,4.368117,145.65259,60.16223,203.25742,3.165132e-05 565,326.9918,243.81792,80.83389,211.66164,2.7042108e-05 565,1.9763558,237.1924,27.71187,144.38292,2.0695106e-05 565,2.2075431,352.8911,31.81435,139.51764,1.12295875e-05 565,499.36127,451.73376,43.91626,57.836456,1.0884671e-05 565,492.3853,388.76685,112.06775,106.88696,9.1736465e-06 565,1.5049251,92.858215,19.393778,139.1332,5.7694374e-06 565,4.575101,424.56937,77.19822,71.45523,3.877779e-06 565,611.8238,1.0477799,27.322876,62.479782,3.399968e-06 565,453.68216,416.942,80.34262,84.07797,3.0120439e-06 565,2.059712,19.720766,56.652374,109.113464,4.0677484e-09 566,402.00906,221.13698,25.881134,54.69832,84.74028 566,594.16187,190.60619,34.23706,83.126755,40.716328 566,462.52887,217.90701,42.97635,90.52173,0.72675717 566,389.69687,225.07243,24.05832,54.513687,0.06694717 566,354.238,225.85771,27.817719,49.14943,0.06298498 566,373.25613,224.01204,23.08252,53.251602,0.025265722 566,610.41833,187.95227,28.355408,133.90152,0.0047261002 566,621.76733,268.6764,17.379333,57.679962,0.004505894 566,621.2186,104.633736,17.92804,57.48867,0.0031254746 566,623.0176,174.90875,16.12909,58.37503,0.003073096 566,563.014,361.5129,74.742615,136.20459,0.0025351448 566,295.89304,221.74211,34.412933,61.13817,0.0009036331 566,380.44083,204.78242,61.8873,93.10213,0.00045413643 566,607.0142,434.132,32.132446,73.694336,0.0002033087 566,355.57553,322.9799,79.483795,163.20987,0.00014453896 566,611.1563,86.394775,27.990356,142.72366,0.0001381088 566,550.9804,116.5758,84.41144,262.75998,0.00013180118 566,394.9495,417.52896,98.15057,82.98047,7.09347e-05 566,2.1327662,174.87616,28.794134,121.252106,3.4536686e-05 566,336.18936,255.59206,41.63022,158.07875,3.243122e-05 566,1.4647233,376.41983,20.405472,98.83252,1.2868979e-05 566,481.57193,437.0472,48.008575,69.4574,1.2576662e-05 566,456.78745,434.85446,46.781586,65.177795,1.0211441e-05 566,453.756,386.91058,114.69803,107.0589,9.37573e-06 566,2.672142,86.388535,32.277317,76.68895,7.861677e-06 566,4.2011604,194.80188,56.62958,221.05621,7.1902946e-06 566,1.2287444,245.52335,17.800816,134.40897,4.6599157e-06 566,4.1457486,394.3542,54.96133,97.598114,4.4954713e-06 566,353.10483,154.64912,143.49435,240.89766,3.7726063e-06 566,1.304598,439.72272,21.439323,61.383392,3.3839362e-06 566,1.8301986,116.62888,18.88512,81.94703,2.215843e-06 566,587.33276,6.845482,51.813904,127.54598,1.5063977e-06 566,2.4839063,48.056454,59.937725,209.34778,1.5623111e-07 566,587.14923,5.23175,43.17798,45.305607,1.4538077e-08 566,2.1916375,11.294671,35.396587,80.08243,1.9526654e-09 566,415.2059,1.6162647,46.486664,50.467564,2.373826e-11 566,565.59467,4.8405533,40.67517,50.5043,2.274106e-12 566,448.36127,0.6729867,49.21884,45.120647,3.8604523e-13 567,439.67792,215.13284,21.685852,47.750763,99.74286 567,459.76465,219.70415,38.176727,84.565475,7.5543036 567,410.15808,220.68546,23.832764,50.44748,0.10308979 567,432.3386,203.54579,38.120026,97.14842,0.035200994 567,371.23648,225.06569,30.078308,57.39006,0.02103864 567,306.20718,228.28407,35.509186,72.010635,0.012384086 567,213.24205,219.41681,23.104675,46.718506,0.0041507385 567,622.4642,127.21616,16.682495,51.212654,0.0030491876 567,610.10895,204.64397,28.776001,130.18666,0.0018638821 567,611.8041,73.646736,27.34259,110.75936,0.0016686234 567,611.3817,354.5313,27.764954,154.04355,0.00044249627 567,584.1283,32.003815,53.053467,228.61813,0.00043383133 567,354.22382,329.1791,79.925354,155.6773,0.0002744892 567,520.3018,365.5022,117.39404,139.07504,9.791927e-05 567,442.59125,241.83058,39.438812,97.72688,7.4821866e-05 567,404.85196,420.41257,91.391815,78.94113,6.935787e-05 567,395.87534,144.51483,130.13986,223.31119,5.5646604e-05 567,1.1804322,186.58258,18.22177,70.44614,5.502464e-05 567,1.055979,254.78902,18.562416,70.87703,3.4864235e-05 567,1.6243237,87.49036,19.770018,132.97032,3.3611785e-05 567,252.53868,154.3077,23.279648,47.23979,3.3586086e-05 567,1.4474268,363.58646,20.407383,103.431,3.287572e-05 567,398.59604,112.46672,34.831604,77.42235,2.967339e-05 567,511.77792,416.5957,60.725006,86.56134,2.1986752e-05 567,2.169908,180.79823,30.548388,165.9626,1.7332057e-05 567,3.8678777,395.25177,55.384727,95.01434,1.17278805e-05 567,1.0426266,420.43283,15.924645,77.61557,1.0351003e-05 567,579.4514,433.69473,48.24109,75.24417,5.4722486e-06 567,3.8269043,221.12651,56.58336,230.6685,5.281686e-06 567,600.0283,4.897552,38.37787,77.67572,4.58921e-06 567,1.0787728,274.67926,19.221882,147.518,2.7069914e-06 567,3.5331836,74.93032,58.18981,213.90286,2.154607e-06 567,2.3215642,26.788252,56.738712,106.14905,6.4158094e-08 567,567.87634,4.060352,42.614563,58.12739,2.4061846e-09 567,449.3604,0.9849593,43.241364,46.594963,9.292557e-13 568,601.9581,208.72595,37.188538,95.21478,0.41451767 568,205.83841,211.16528,22.356125,45.114136,0.102640115 568,462.05704,205.16248,45.647827,90.027985,0.08711353 568,306.0788,223.30339,27.661926,51.590927,0.019467851 568,398.44144,210.63864,39.074768,67.6131,0.011739526 568,583.4508,207.63698,55.102844,265.12482,0.0052223373 568,313.70398,227.11574,40.021667,93.43071,0.0035210694 568,620.01556,393.65894,19.131104,62.640045,0.0028790103 568,5.203672,193.08073,35.72942,75.63936,0.0021059234 568,598.599,399.07135,40.172485,94.497406,0.0011343794 568,574.2001,329.3778,49.142883,111.93204,0.00048704614 568,615.3961,329.20428,23.75055,99.674255,0.00036439174 568,1.4146045,136.78323,19.230045,141.45322,0.00025767167 568,610.3633,115.35659,28.783386,156.46365,0.00010479936 568,465.75677,445.9145,46.00595,60.538116,6.262557e-05 568,3.3641343,139.26802,56.95487,210.12856,4.4345765e-05 568,584.5047,23.500887,53.475586,282.03348,2.901549e-05 568,435.03345,445.9064,50.006866,57.698547,2.1840133e-05 568,0.9073267,244.95714,17.437012,140.46986,2.1225229e-05 568,294.80185,441.9419,44.781677,62.86316,1.8598586e-05 568,434.56668,385.39325,113.76669,119.790985,1.638186e-05 568,1.1704338,350.5767,18.519665,130.81635,1.41631435e-05 568,83.396164,441.31107,45.34021,58.2041,1.11965655e-05 568,609.64166,3.4663055,29.505005,90.95326,7.80511e-06 568,382.9789,420.0761,89.20261,80.46365,6.883284e-06 568,3.3599236,391.47815,56.189438,98.131226,5.2027967e-06 568,33.14182,421.57172,79.18193,75.16382,2.812089e-06 568,580.9689,29.471306,30.988525,79.40901,2.5349395e-06 568,2.0613558,57.888718,35.418827,187.66986,2.5273214e-06 568,1.2849854,439.2726,21.129627,59.906006,2.474438e-06 568,322.84537,424.2195,75.838806,78.65878,2.1680542e-06 568,174.14165,418.06595,72.9863,78.07379,1.3192422e-06 568,2.2116227,25.53136,55.062256,105.608795,1.6115138e-07 568,1.2554508,25.28599,17.715372,130.61731,8.758474e-08 568,567.7023,2.4289095,66.951416,56.739147,4.6235414e-08 568,475.88074,6.129831,43.235413,48.842068,3.9918702e-10 568,506.4455,4.4950557,44.497986,47.378334,2.4057153e-10 568,1.2772738,6.727435,30.249332,62.112797,1.4894382e-10 568,450.6146,3.3503745,42.80551,51.54128,2.6010187e-11 568,393.57736,1.7416065,45.12967,54.425087,2.0954764e-12 568,530.68524,0.004969076,48.269165,48.672985,7.15825e-13 569,512.69946,223.46764,30.772034,65.101944,99.851265 569,303.90793,233.28098,27.251068,48.393005,0.7923727 569,621.196,378.7189,17.950684,57.776276,0.023599425 569,499.02362,227.42949,23.90564,49.194534,0.023060784 569,444.40677,226.931,43.2334,77.15976,0.009198117 569,573.3946,211.33733,63.806274,171.45296,0.0075532175 569,618.4124,234.2975,20.734253,64.86174,0.007009347 569,389.00717,233.92766,24.11383,45.72783,0.0030431917 569,307.40698,236.59422,49.352448,139.3672,0.0021708244 569,501.61694,442.52048,52.390076,65.62479,0.0021699178 569,390.7196,422.1423,21.945618,52.660614,0.002098834 569,622.3472,347.9971,16.799438,57.582153,0.0020008332 569,608.83795,372.54764,30.308716,122.01227,0.0014470252 569,621.409,174.37886,17.73767,60.16411,0.0005308264 569,380.19583,382.61008,55.362427,118.03186,0.0003275706 569,468.7802,434.50986,54.447937,72.50552,0.00032489712 569,614.76056,464.70673,24.386108,46.198914,0.00031233943 569,289.17322,206.00983,111.53311,227.18814,0.00021022858 569,613.1981,256.01553,25.948547,107.72089,0.00016265492 569,492.82117,189.32993,71.86102,148.7445,0.0001563432 569,340.67505,318.54538,82.00992,165.88089,0.00013715771 569,532.09546,463.46527,36.555298,45.018707,0.000134579 569,447.38403,394.9342,121.83783,108.00079,0.00012097065 569,615.4497,82.216095,23.69696,87.12996,8.221352e-05 569,1.2681446,223.84232,18.506945,81.770386,6.0311606e-05 569,1.5622599,314.50528,28.517008,158.15396,4.9142072e-05 569,600.11176,77.019745,38.90796,229.35916,2.433791e-05 569,1.0677043,140.90736,18.007444,72.790436,2.1407455e-05 569,542.6914,310.91238,83.45349,164.68356,2.1202286e-05 569,1.9367871,146.76196,31.89495,182.69308,1.8283372e-05 569,1.168685,402.48337,20.337105,95.70767,1.0838492e-05 569,412.92145,415.21252,83.00357,83.81232,1.0448217e-05 569,590.25385,442.70236,42.282898,66.57849,9.439033e-06 569,5.1926565,357.3155,77.686874,133.0379,5.737132e-06 569,610.1316,0.64121747,29.015076,95.78556,2.998974e-06 569,534.599,411.27902,80.98578,94.02026,1.333078e-06 569,581.68414,63.117405,43.74298,139.64261,8.260174e-07 569,1.3446501,56.715576,17.463806,130.86914,1.2030816e-07 569,552.0497,0.0,80.96338,79.64106,4.99858e-09 569,1.8009701,12.018008,33.355064,74.00757,2.6524521e-10 569,527.18335,0.0,43.116272,56.627457,1.461822e-11 570,572.03143,219.1418,39.8916,77.591385,99.9493 570,441.7659,227.17932,33.090576,67.970276,0.01823139 570,603.9905,162.78609,34.98358,84.79173,0.014196487 570,310.77948,234.81337,26.517212,52.595352,0.012501572 570,572.7643,120.906784,63.86255,169.07982,0.0048261345 570,623.33014,188.46118,15.816528,53.075287,0.0017981891 570,51.911816,206.1827,24.868137,47.27887,0.0016512705 570,423.90204,234.67857,36.07007,76.881516,0.001217196 570,525.5908,155.32321,106.32385,240.14166,0.0011613765 570,532.0875,235.00946,36.325806,73.67734,0.0009908743 570,372.22223,129.26013,27.871765,64.68524,0.00071031624 570,612.9307,190.9974,26.215942,148.1553,0.0005931713 570,610.9118,274.43008,28.234863,139.98245,0.0004535344 570,583.3861,383.80396,54.27777,124.910645,0.00026319723 570,509.8696,232.74698,34.031403,67.2688,0.00014362398 570,310.5061,228.03795,77.92056,186.0879,0.00013364523 570,560.1274,148.78722,45.352905,90.00229,8.376479e-05 570,1.0036296,233.23535,18.456482,70.35959,6.875778e-05 570,568.9235,445.4461,42.86975,58.649597,4.188419e-05 570,394.21472,419.367,84.98248,79.34274,3.8541246e-05 570,394.74512,139.825,27.210297,53.149994,2.9412275e-05 570,385.32574,120.95297,42.624207,140.33575,2.620916e-05 570,609.35785,44.642883,29.788818,173.1736,1.7990476e-05 570,1.3368303,129.73878,18.997574,124.44037,1.6434626e-05 570,1.8594345,197.95116,32.064587,173.6913,1.5884933e-05 570,1.2531315,345.26154,19.369802,131.00998,1.1449411e-05 570,513.1562,426.3536,80.43329,73.29712,7.5769003e-06 570,4.3111963,342.13297,56.01044,143.99606,5.5612977e-06 570,587.217,15.790195,51.573242,107.37221,5.0128806e-06 570,2.1800196,418.84018,33.978264,76.37665,4.3132536e-06 570,343.71872,421.07404,77.00995,76.73865,4.150017e-06 570,4.046245,110.73948,58.540474,216.16711,1.8731909e-06 570,465.09506,443.8771,42.206055,57.648376,1.5976415e-06 570,277.34177,429.71408,73.02017,71.34805,1.0558597e-06 570,429.06573,393.7047,113.93689,99.99628,7.719311e-07 570,572.55115,1.4287305,65.52832,45.055843,1.5158795e-07 570,1.1653801,48.861504,17.934662,131.35751,4.7215e-08 570,1.8889015,13.719538,32.93196,71.98074,6.646321e-10 570,550.02466,3.0738835,47.558533,54.791508,3.058168e-11 570,461.93808,3.5075083,42.40158,45.647305,3.2873652e-13 571,388.6138,211.12666,28.675415,49.41472,2.4305668 571,451.9854,208.06007,38.40558,74.1436,1.2853143 571,26.668812,196.99666,30.431332,47.114807,0.01347451 571,515.30774,202.09654,46.07782,135.82085,0.010448516 571,321.90182,235.09889,27.86615,52.484146,0.006941724 571,303.09668,208.48682,31.52243,67.77579,0.00410533 571,311.58826,206.424,56.02072,158.46135,0.0035596183 571,619.09076,175.11183,20.055908,57.034286,0.0024331128 571,600.0948,129.68683,37.96283,140.36313,0.0014661456 571,360.6463,313.2161,71.16574,173.46823,0.0012481835 571,203.24307,212.6899,24.939713,48.68654,0.00061410107 571,347.839,201.71442,22.727966,50.83467,0.000557935 571,611.4222,370.47653,27.724487,135.79349,0.00041353 571,435.74487,219.41907,44.399414,112.0484,0.00040677193 571,613.747,220.78024,25.399658,149.70697,0.00035876464 571,333.38525,193.71075,25.006042,53.11969,0.00034581285 571,264.38263,134.44199,22.98999,45.02899,0.00028998332 571,498.77948,89.91312,36.399292,82.76369,0.00020426507 571,371.6133,114.39081,29.787994,66.06508,0.00019497007 571,316.7617,232.62146,91.928314,236.13672,0.00019024391 571,605.90906,2.1960611,32.585205,127.92998,0.00015508171 571,614.49457,462.5731,24.6521,48.109314,0.00015370456 571,418.70688,102.80632,38.45291,89.22928,0.00015368755 571,142.58336,207.23798,22.919464,48.012283,0.0001146809 571,385.272,106.91824,36.22931,81.3004,6.14791e-05 571,403.44974,411.7668,94.0022,87.35248,5.1777813e-05 571,584.75305,431.72278,47.26947,79.42389,3.5502406e-05 571,1.4185604,211.67743,18.667137,137.47705,3.2965883e-05 571,433.31448,104.18564,40.460938,150.45346,1.7987079e-05 571,3.850013,219.64088,56.6726,247.96507,1.7216245e-05 571,491.5537,280.6577,37.31128,84.619965,1.5897358e-05 571,464.677,115.279106,35.794464,85.69207,1.5686546e-05 571,1.1532984,342.41278,19.296719,130.03568,1.2095825e-05 571,1.3030754,134.40396,18.824854,121.919464,4.602289e-06 571,334.66284,416.7412,80.95282,80.62073,4.369594e-06 571,3.6149366,394.48785,55.94268,96.88306,3.1716343e-06 571,499.97815,231.74162,82.8761,238.96605,2.7302112e-06 571,558.07,436.2331,47.354187,74.329926,2.6668645e-06 571,0.9817293,419.8764,15.596445,79.76053,2.4670487e-06 571,3.9750423,103.01482,58.23176,215.69576,1.3346554e-06 571,469.0224,420.77402,77.514465,81.50052,1.3034149e-06 571,273.75055,425.92697,77.078064,74.47366,1.2109973e-06 571,1.4828206,61.634342,29.013195,133.81262,1.4135641e-07 571,1.4534376,10.8426695,35.591557,78.89356,1.3988088e-09 571,520.48645,2.1351075,47.666565,56.160374,2.2897838e-12 571,402.3972,0.43007162,42.825623,52.616936,8.5114004e-14 572,420.11642,219.56891,39.816254,67.09219,2.466989 572,571.159,223.3188,38.13922,79.547195,0.082794584 572,6.614966,197.57231,40.851837,92.82402,0.055061344 572,566.92114,220.98448,69.31305,172.35616,0.042610835 572,396.2006,411.6887,23.985962,61.32553,0.018516887 572,363.91174,212.75839,32.110046,62.13568,0.014858889 572,363.6708,335.69153,51.83423,151.72223,0.010910771 572,580.7853,373.94247,58.32776,125.18649,0.010273605 572,344.66995,286.13168,48.21579,173.39114,0.0042231744 572,381.14633,383.44333,25.513641,69.708496,0.0042047533 572,63.064045,242.70197,39.398746,123.18976,0.004088409 572,13.151598,204.8815,23.251455,45.388794,0.0025812082 572,4.0017138,102.16614,59.453186,246.1268,0.0011693874 572,1.90292,187.60336,20.693014,140.4609,0.0010780887 572,339.12146,200.36476,24.771515,51.85707,0.0009647158 572,609.322,188.73407,29.824646,152.44177,0.0005484654 572,327.3217,222.632,43.89969,171.94664,0.0004809328 572,333.4334,262.3135,139.43399,233.98355,0.00038695076 572,551.5467,207.2075,45.523376,137.85133,0.00037484211 572,604.9465,278.62875,34.200195,173.00287,0.00036035123 572,380.97736,416.30966,52.761963,87.02301,0.00028655544 572,394.3596,408.97787,112.761475,94.96121,0.0002812811 572,583.29016,330.19617,29.667786,69.229034,0.0002231827 572,1.4717171,157.00319,19.50826,83.88875,0.00016561075 572,615.64923,160.78665,23.497437,79.03151,0.00015340408 572,530.7093,313.8045,42.090637,106.53766,0.000106378364 572,615.7249,66.10016,23.421753,89.21167,5.5150304e-05 572,501.73065,244.12178,116.95337,227.92958,3.6147183e-05 572,1.1699113,365.74036,19.230747,127.996124,3.2972992e-05 572,462.73938,427.63815,68.724915,83.270935,2.039323e-05 572,3.2594938,288.9785,56.402187,190.24689,1.7044484e-05 572,1.4611117,286.14212,17.251564,140.94135,1.50613105e-05 572,608.6858,7.1191897,30.460876,83.07032,6.2949994e-06 572,583.2038,8.081081,55.94287,256.82422,5.8726127e-06 572,2.6491814,413.95245,52.221367,84.16495,5.358438e-06 572,1.32097,29.484245,19.499245,122.59185,2.9672233e-07 572,1.1856234,7.384261,30.521122,64.01444,1.0833533e-09 572,510.16205,5.245713,43.581787,55.264477,9.765632e-10 572,464.69324,1.9578289,60.09076,57.912174,5.9603494e-10 572,583.4048,2.4457586,47.47345,52.294945,3.2531638e-10 572,538.9464,5.72654,44.567932,53.790752,1.09390066e-10 573,158.26701,212.34753,26.417664,48.166656,24.85511 573,592.70026,170.16522,45.14746,107.711334,0.18844841 573,378.58035,211.74222,35.753754,62.958405,0.14397028 573,389.21457,411.10513,22.988556,59.398407,0.025289005 573,291.66306,204.98143,23.33139,45.439484,0.011534069 573,353.9135,320.79004,51.645355,166.73007,0.0078070895 573,142.53815,195.53294,29.549866,54.383163,0.0047656093 573,622.0396,178.42719,17.107056,57.327454,0.0038251285 573,312.26318,219.88281,110.70834,263.08142,0.0026450455 573,596.01764,190.8456,24.220703,50.331253,0.0013584691 573,332.40662,238.4746,46.437073,178.05748,0.0012602739 573,490.66653,215.72699,83.76547,205.43823,0.0011634871 573,620.03253,62.01745,19.114136,63.11022,0.0010718914 573,615.5269,208.52531,23.619751,94.54729,0.0007224494 573,512.00073,219.98886,45.16992,102.96994,0.00029906197 573,375.1865,360.43616,61.298218,144.91931,0.00027219602 573,611.42395,369.5316,27.722717,135.47055,0.00026715742 573,508.34048,149.42729,27.722382,71.885605,0.00021046569 573,427.45773,117.670525,36.890625,72.93165,0.00013151078 573,608.7767,47.26428,30.369995,182.12044,0.00010285187 573,482.81058,153.75883,38.03604,84.24187,7.7936835e-05 573,405.22083,413.08502,90.96246,85.26822,4.9783972e-05 573,1.4954615,220.57643,19.125069,119.735275,4.9692328e-05 573,410.61307,228.88438,78.22272,211.82454,3.844873e-05 573,3.7229054,218.14984,58.03886,240.70377,3.721152e-05 573,2.1494043,123.70732,33.057774,176.22636,2.5690517e-05 573,566.15015,81.95209,72.0766,274.80078,1.9424017e-05 573,247.89659,138.87598,33.46791,62.604904,1.6432557e-05 573,584.7429,16.589752,54.403748,108.618256,1.337921e-05 573,1.1020931,342.0449,19.709484,131.73517,9.348444e-06 573,3.8792741,397.15967,56.17526,94.743774,5.578902e-06 573,1.1380485,422.25613,15.890347,76.82608,4.959679e-06 573,1.3644979,78.27675,18.84626,131.15941,4.3048703e-06 573,538.6736,415.47998,78.17474,92.75372,3.524527e-06 573,469.78336,421.70975,75.56033,80.12265,2.0949633e-06 573,496.5872,0.25542644,46.55417,55.451004,2.6962682e-10 573,1.510739,10.1178255,33.676,76.87286,2.1835617e-11 574,1.2837598,198.72127,43.375134,74.52916,1.7771747 574,417.63943,223.48256,49.592926,87.77046,0.40733358 574,605.8916,142.65341,31.835266,89.3067,0.17238425 574,144.59547,206.67885,26.077286,46.73459,0.06560301 574,419.23157,206.37729,31.585419,61.956055,0.017175846 574,488.58328,138.3918,28.128326,64.4548,0.008659884 574,3.6371126,130.45126,54.973663,207.33405,0.0017287388 574,483.93164,202.15321,23.537384,51.407944,0.0010775088 574,555.3813,438.11954,50.080383,67.994995,0.00073184504 574,361.39456,339.2397,41.188385,154.82544,0.0005678058 574,590.94116,433.19583,47.534607,74.266174,0.0005194238 574,1.489611,103.526215,20.765501,176.80524,0.00038499106 574,611.9509,192.19855,27.19574,157.4754,0.0001831197 574,611.0828,315.8011,28.063843,150.22159,0.00015600362 574,587.7971,111.350266,49.90869,206.26555,0.00015441804 574,561.9304,342.6045,76.11273,168.54218,0.00013179137 574,1.1333733,201.5001,20.908054,166.37764,0.00010080716 574,222.99269,144.39998,95.01912,214.7426,4.7053403e-05 574,308.18964,228.49458,86.92496,220.99937,3.7212085e-05 574,513.3763,448.31418,45.940857,58.553864,3.585306e-05 574,1.2602352,307.94724,18.737318,135.7374,3.2174175e-05 574,425.888,121.10206,33.57364,66.2481,2.9935507e-05 574,493.78772,398.39487,116.949036,108.68442,2.5247973e-05 574,413.41425,418.6264,79.80905,79.387665,2.4966106e-05 574,3.5773764,315.17947,56.412247,164.35605,1.5986756e-05 574,609.54,0.6344922,29.60669,180.63484,1.3631372e-05 574,1.1069874,421.7775,16.011683,78.725006,3.7116604e-06 574,613.5769,0.0,25.569763,48.695477,4.5138816e-07 574,3.0665252,20.85266,59.708946,102.37679,3.5321435e-07 574,1.61139,23.486029,18.0826,108.86489,2.3045288e-07 574,1.594646,8.03342,21.671337,52.144577,2.1098614e-09 574,30.8903,1.0047169,45.45367,46.825348,9.498057e-13 575,535.9377,208.85724,39.574158,76.699585,0.9564529 575,306.41983,202.86784,21.780762,45.35956,0.15950455 575,1.4211963,184.38425,39.081814,89.23047,0.10713144 575,556.5686,216.66618,25.256348,46.38951,0.037165232 575,479.8299,97.73561,24.33902,54.128784,0.009142684 575,522.8765,192.07422,71.74927,146.9661,0.0066919345 575,309.1308,208.35812,42.127747,158.66547,0.004853435 575,591.4291,435.2967,45.65216,68.4928,0.004615331 575,92.251625,211.54672,35.96763,57.71643,0.004614011 575,599.9464,191.69878,33.568237,64.11131,0.003925474 575,355.65228,330.61227,68.70511,169.05774,0.0030457578 575,2.797985,106.69256,56.353756,212.30475,0.002844406 575,599.51996,191.74527,38.814026,202.28577,0.002592878 575,440.02844,224.32097,40.881165,97.304184,0.0024178466 575,496.88162,112.83274,131.88492,276.5758,0.0021361546 575,453.3583,102.925026,35.858124,86.06284,0.002054459 575,528.47784,100.905106,38.53772,74.975784,0.0016478396 575,598.2758,319.45468,39.909485,171.86917,0.0009912011 575,390.45755,400.471,101.78204,101.34979,0.0008941264 575,314.79828,220.02339,78.74658,221.7874,0.0004126932 575,522.74,79.655205,60.096863,180.48962,0.0001887337 575,206.3617,144.44298,143.50955,208.43098,0.00012561024 575,432.1589,75.40875,70.83032,191.78201,7.799677e-05 575,3.6616993,256.4465,56.48987,222.52158,2.4302748e-05 575,1.0904126,381.99677,18.253443,115.93851,1.7894447e-05 575,1.0722681,244.11623,19.333649,153.10155,8.542987e-06 575,3.239621,424.27075,52.68598,72.049835,6.5329664e-06 575,610.2158,2.2358007,28.930847,55.897,3.5765702e-06 575,1.7904135,56.36079,21.787466,170.37572,1.3073438e-06 575,462.43506,421.79257,74.8501,79.50223,3.7501638e-07 575,2.120044,22.664928,56.7571,110.439896,4.5271488e-08 575,1.083752,12.023568,12.01117,78.543144,4.1426964e-09 575,1.133151,0.13679688,21.830097,45.035152,2.1350482e-10 575,506.58804,3.1896095,43.333954,47.233906,1.8147105e-10 575,535.7206,1.5903548,47.001404,45.805225,1.4228605e-12 576,257.9119,201.28821,24.978088,46.656296,34.841286 576,585.01324,207.17256,29.716309,58.3098,0.63248503 576,398.14246,201.36966,35.885223,72.303375,0.1098573 576,2.0486703,113.69477,43.048706,136.06909,0.010376532 576,313.5483,198.576,25.247314,48.689392,0.0077127493 576,84.08344,191.64145,37.14264,65.672,0.0043468424 576,1.5879257,162.98749,24.871786,66.47868,0.0026187543 576,395.96664,413.59387,23.153229,58.585297,0.0015494139 576,612.0706,214.50836,27.07605,132.65842,0.0014556965 576,304.21188,202.69958,59.57892,156.24246,0.0012265495 576,308.92816,230.39047,120.70325,247.29333,0.0008350314 576,358.3507,336.44324,90.70874,159.98245,0.0007390029 576,241.99841,162.50075,55.209656,112.47749,0.0005727511 576,412.7903,241.98698,25.55658,47.47682,0.0005301906 576,609.27277,308.90143,29.873901,122.72281,0.00052015344 576,587.0132,189.9632,50.43579,239.824,0.00042051464 576,608.7513,121.55262,29.89978,129.99759,0.00036934303 576,605.4658,427.92984,33.680847,77.7319,0.00023257246 576,335.7414,271.4302,45.642273,165.59802,0.00019033773 576,1.82139,188.76558,21.130896,109.45213,8.778423e-05 576,608.13556,13.630834,30.110535,111.26924,7.950144e-05 576,211.20404,133.74216,143.69318,208.92911,5.1522165e-05 576,408.61893,415.45993,97.29587,85.858826,5.112268e-05 576,403.23117,231.70279,42.802338,162.8081,4.5723307e-05 576,3.8767173,151.38823,57.364014,249.03716,3.3840337e-05 576,254.04152,119.31956,32.501938,60.78933,2.1016152e-05 576,570.0532,349.83148,68.35077,142.72763,2.1014988e-05 576,1.0842929,393.6857,18.358227,102.5744,1.0182967e-05 576,2.11805,314.61395,33.910427,170.40143,7.3224114e-06 576,0.9707683,240.3144,18.169832,136.97578,6.293343e-06 576,481.2264,418.3817,78.03238,83.0423,6.2281315e-06 576,541.6115,19.30302,38.256042,86.11464,4.529918e-06 576,1.9293091,50.04245,20.978933,163.20473,3.4252753e-06 576,341.0726,116.96478,22.721252,57.466324,2.1284088e-06 576,584.8361,2.5754054,45.995117,52.862892,3.7618517e-09 576,1.6374756,11.108425,38.066093,76.897064,1.6201818e-09 576,436.2288,3.7366245,41.95517,48.713345,2.9579502e-11 576,550.583,3.5760663,44.30945,49.413097,3.6710153e-13 576,526.3021,0.95988286,42.319397,45.85978,4.228697e-14 577,6.8000345,198.56538,41.94888,59.456406,4.1159835 577,466.4173,206.79121,40.243744,129.3991,0.04624722 577,355.4393,104.85646,27.189728,68.455765,0.009178113 577,248.50824,179.18341,47.744385,84.49182,0.008332335 577,359.13794,304.93604,50.550537,173.39185,0.005339246 577,605.6016,434.11682,33.32837,73.3595,0.0017730432 577,314.5066,168.23344,39.35028,65.80284,0.0014680512 577,249.72852,216.56247,23.328125,52.686707,0.0008421627 577,4.874525,135.98985,64.97773,164.76329,0.0007865433 577,1.3763998,164.97194,20.95722,127.13457,0.0005592503 577,371.8897,353.6038,88.203125,145.41696,0.0004380695 577,338.54312,271.99677,47.906616,171.54825,0.000429644 577,481.96143,293.61462,26.720093,51.306427,0.00020052867 577,612.05774,259.3896,27.088928,134.43195,0.00019199126 577,244.86784,121.884834,24.751083,49.526955,0.00013184619 577,414.23953,206.65929,25.495789,54.723007,0.00011476384 577,243.66006,141.43948,94.72922,204.504,8.201085e-05 577,609.9389,110.8586,29.207764,139.3544,7.935313e-05 577,588.0785,338.73157,50.765747,165.72333,7.164885e-05 577,410.85208,416.85956,90.91766,83.43628,7.032082e-05 577,1.6337386,205.77556,32.54954,218.45674,2.0887075e-05 577,1.3670712,322.17914,18.805208,139.34738,1.4865284e-05 577,4.039707,321.51562,56.096478,161.2359,1.2711689e-05 577,461.45496,412.55273,79.80322,83.64862,8.35737e-06 577,2.1461694,416.60422,34.28063,78.99252,4.092213e-06 577,612.2557,0.0,26.890991,63.27862,2.50763e-06 577,1.4404184,65.99046,19.500032,147.54262,1.4229563e-07 577,1.6737566,13.089662,33.78099,68.87426,8.029466e-10 577,497.0524,2.4363525,46.92038,51.964943,1.4604472e-12 578,492.38214,205.36469,56.720398,124.28262,15.658667 578,414.91653,214.29703,40.18103,67.55643,4.2820044 578,338.04303,193.27344,23.487427,45.0186,0.09268815 578,2.1861117,165.4841,48.350903,118.595856,0.014065503 578,621.9765,200.97887,17.170166,58.668106,0.010156347 578,314.08884,181.3499,27.459656,53.249344,0.0076115686 578,258.9211,179.56311,45.47934,87.63016,0.006889165 578,610.8037,152.9924,28.342957,129.74374,0.0015217518 578,334.47705,275.55234,63.624054,186.30511,0.0015135728 578,418.43805,100.45973,29.230713,64.06874,0.0011598192 578,202.81563,123.7155,25.248932,50.02893,0.00053759204 578,1.4546583,131.79236,19.942116,106.87608,0.00031861427 578,350.3945,329.6793,125.41498,166.69415,0.0003067762 578,462.39783,200.06482,110.660095,245.53238,0.00023557957 578,609.89435,315.76746,29.25232,134.75348,0.00020903107 578,606.82,432.65823,32.32666,75.27792,0.0001305949 578,243.4791,146.15303,90.10208,195.59477,0.00011052564 578,609.3063,10.733753,29.651672,110.23488,8.165063e-05 578,1.1719677,226.8142,18.395033,81.02525,4.9771632e-05 578,400.76917,96.72146,23.945435,51.175224,3.5675977e-05 578,571.53516,356.48328,67.61151,138.93698,1.2768807e-05 578,1.1276058,391.86673,17.99099,103.530365,1.0502704e-05 578,0.8865471,258.72754,18.931396,151.2854,7.048976e-06 578,3.9257326,314.78992,56.16833,166.97708,6.4267774e-06 578,469.74298,439.07648,46.05188,68.02875,4.91521e-06 578,1.4211426,27.318348,17.693983,154.92046,4.9805383e-08 578,1.9567709,14.071397,31.448353,70.325615,6.449876e-10 578,583.45386,1.4659034,47.150635,53.148354,8.128621e-11 578,511.70944,3.1300602,42.1044,49.396797,2.8285518e-12 578,475.9972,0.5877702,46.01941,47.837658,1.4527896e-13 579,281.60223,197.57817,22.70404,47.746338,99.69349 579,427.08444,195.35957,39.987762,74.437454,0.3797229 579,348.0829,188.25978,31.469513,51.52559,0.25877538 579,254.0455,181.82043,37.93808,64.29973,0.05760369 579,514.1328,157.89287,77.63562,175.6007,0.008908279 579,12.778661,175.25052,39.64571,74.17215,0.0075203157 579,409.68283,192.94318,39.71228,122.565735,0.0063156583 579,622.27747,200.64064,16.869202,53.873215,0.0036671557 579,519.34406,118.26896,44.089233,138.0986,0.0024596667 579,266.19498,152.35414,54.74005,117.79918,0.001967002 579,335.38367,302.3223,125.90665,193.25021,0.0015169731 579,236.83131,161.8942,38.18306,103.16504,0.0012734547 579,338.107,290.35132,45.99527,135.27063,0.0010282785 579,612.2149,208.14622,26.931763,141.17955,0.0008403007 579,298.65817,113.58002,23.067993,46.92067,0.0006091177 579,251.80537,106.69105,21.940048,46.39263,0.00043549272 579,59.519794,129.58836,44.96594,103.22513,0.00035066687 579,602.2612,60.32873,36.14093,204.67444,0.00034975706 579,600.83734,323.06317,38.309326,165.31998,0.0003284981 579,4.497943,130.82721,57.367268,208.17938,0.00019657607 579,607.7498,429.7538,31.39685,75.5051,0.00016783382 579,1.848278,178.13542,19.27919,120.995834,0.0001137021 579,361.15445,410.8516,82.23511,86.21643,6.290007e-05 579,225.81091,120.18283,143.28513,213.1001,5.0350114e-05 579,543.27594,416.29626,78.18616,88.77725,1.6770313e-05 579,1.186399,256.85904,19.034975,140.8992,1.1934446e-05 579,2.2427287,83.09672,31.013725,165.91333,1.012929e-05 579,1.3372307,354.62167,18.675304,130.74246,8.432273e-06 579,4.079567,320.3593,56.00052,159.52261,5.547059e-06 579,607.1846,3.345049,31.962097,60.408653,3.2869316e-06 579,428.11948,90.44109,41.790497,95.80213,2.6042221e-06 579,447.94846,419.54404,77.38022,81.4064,1.1863699e-06 579,1.580852,13.306189,33.224762,76.55891,2.3927111e-09 580,299.7297,200.63774,23.782593,48.253067,99.90988 580,446.26318,187.99525,26.501526,52.327927,69.92565 580,318.52698,200.34396,30.722504,54.812134,4.3331375 580,599.06915,180.06975,37.438904,128.87312,1.9171346 580,316.27234,221.49326,39.04825,76.82507,0.01990451 580,616.6031,165.3418,22.54358,72.9117,0.019418465 580,619.80096,227.92879,19.345703,53.47969,0.012903541 580,362.0129,187.28932,23.138,52.758606,0.011748965 580,37.05489,105.3274,51.72653,88.29476,0.004930152 580,607.7217,39.40284,30.309387,66.33379,0.004229385 580,578.1061,272.94437,60.370544,173.62805,0.0038894378 580,3.5801091,90.26284,45.183914,135.5701,0.0015057051 580,284.06375,167.00562,59.31784,105.83188,0.0010904274 580,457.6218,406.73148,86.98514,103.67026,0.0009939255 580,359.88452,343.41882,81.957306,157.80249,0.00050587 580,609.86475,334.65836,29.281921,158.90234,0.00043771783 580,2.133313,155.73355,19.242655,81.29414,0.0003239844 580,386.50122,412.41296,99.07016,90.4837,0.00026428732 580,253.4208,110.79175,132.12085,235.63708,0.00012875735 580,600.0865,4.018073,38.9906,219.36816,0.00010142083 580,614.00543,257.76175,25.141235,109.64862,8.879572e-05 580,72.21883,83.988495,25.709267,47.198257,5.0837967e-05 580,1.0934408,199.94527,18.00878,131.83302,4.4536187e-05 580,1.5414413,438.56534,22.196602,62.433838,3.1166765e-05 580,104.38911,280.93912,77.29568,165.55411,2.3626708e-05 580,475.11533,464.63162,44.620148,46.515045,1.628982e-05 580,3.8766408,422.67355,59.538868,73.619385,1.3274952e-05 580,348.02536,92.51329,24.050232,64.57503,6.30833e-06 580,2.2139168,322.0383,32.07512,171.26703,5.4877596e-06 580,608.99945,1.2949837,30.147217,63.704887,3.209253e-06 580,362.75375,95.99908,21.670197,53.839424,5.1594714e-07 580,2.05958,25.636063,29.084152,145.08,3.1893586e-07 580,0.78103113,6.9551663,19.949335,60.418285,3.839832e-09 581,317.1243,197.1626,27.837341,60.78662,99.88429 581,465.54996,192.00154,23.004852,48.175995,2.7799525 581,31.90625,95.069176,46.0259,89.05006,0.8117581 581,7.3813014,378.4654,34.49334,86.23593,0.016856497 581,388.76508,195.26213,22.350128,56.54431,0.0153137185 581,312.88663,200.02289,42.503784,136.28925,0.012477515 581,12.085881,85.18588,41.11871,119.83638,0.012283823 581,9.08099,168.74742,46.940624,103.98027,0.011216809 581,216.83429,166.54674,37.257904,80.972046,0.0051666694 581,440.9675,89.09008,27.557556,58.629814,0.0023460728 581,609.7366,89.22329,29.410095,160.11993,0.0011075429 581,223.72807,133.79826,34.929092,70.06578,0.0009362982 581,272.30045,124.78965,131.5509,248.59286,0.0007279254 581,619.94305,178.28879,19.203613,71.41437,0.0006889069 581,596.8125,410.80234,42.32727,96.956116,0.00055802066 581,369.3073,88.81804,33.371857,79.344055,0.0005089597 581,520.2119,96.59476,40.22113,75.93672,0.00039908878 581,611.5585,190.32631,27.588196,155.5425,0.00034595004 581,372.2916,185.9405,23.623505,48.15146,0.0003030536 581,601.17975,254.61037,37.96692,206.9482,0.0002566069 581,346.77567,318.21622,123.4147,175.15619,0.00022577713 581,1.4972429,382.5899,18.636688,111.57083,0.00013138153 581,1.4776416,147.87276,20.934835,127.97902,0.00011657579 581,339.84393,105.46115,23.495667,50.10901,2.5568499e-05 581,383.72784,107.23699,44.157196,111.536446,8.081336e-06 581,1.506303,183.70059,35.65434,225.69046,4.3160353e-06 581,2.0328922,26.420176,29.575233,146.749,1.6915511e-06 581,608.67004,0.86369467,30.476624,61.491295,1.3622724e-06 581,426.48117,63.18617,56.28128,117.89763,8.2689377e-07 581,0.8561882,8.063168,21.140692,66.71216,7.1776376e-09 582,348.81818,200.48712,26.820679,59.886597,99.89407 582,516.3264,196.97258,40.21289,83.42494,3.8082428 582,520.0325,194.3666,21.372131,46.028366,0.1817925 582,495.13715,182.56796,24.305298,57.452698,0.07989172 582,404.26895,193.04865,35.64029,93.93588,0.042873085 582,231.66974,128.61678,28.039703,58.6315,0.011885007 582,337.60617,185.55734,50.937714,109.36334,0.008958625 582,422.49234,189.6957,34.33252,78.38307,0.008160425 582,620.4083,136.68083,18.738342,64.17374,0.007289992 582,469.1019,93.82462,26.647064,54.8247,0.005742033 582,175.04626,85.69843,24.521698,48.77233,0.005736046 582,2.9565854,86.56392,37.060688,113.73357,0.0026780975 582,398.19263,192.57733,26.115936,51.663788,0.0015194085 582,608.99963,83.326805,30.147034,154.20703,0.0011711194 582,66.73108,76.86056,26.980522,51.28373,0.0010290573 582,485.3796,126.16529,38.214752,130.84494,0.0007566136 582,304.96115,128.75258,133.65918,255.46526,0.00051176955 582,610.093,177.29164,29.05365,137.43321,0.00046160485 582,468.58548,192.86874,82.97073,227.53842,0.0003150345 582,458.8584,95.444824,20.3078,47.043747,0.00023724843 582,610.6276,307.42795,28.519043,144.51447,0.00022981799 582,608.47925,435.68237,30.66742,72.910034,5.7511435e-05 582,1.6055298,109.519844,18.511766,148.33237,5.194795e-05 582,354.409,93.98137,22.943848,51.80461,4.3815624e-05 582,484.07642,420.65445,78.842896,87.39343,3.7462483e-05 582,257.26236,87.450745,22.63324,49.287872,2.6198964e-05 582,1.157111,418.74554,17.517382,81.65405,2.083098e-05 582,3.3648846,122.84861,57.317318,259.4497,1.8204624e-05 582,4.8279023,395.8859,53.533356,96.41803,1.3037423e-05 582,1.4616089,195.468,29.209389,153.25716,1.00975e-05 582,347.2155,285.62564,47.39615,145.21405,8.085283e-06 582,1.1355616,278.0662,18.230885,140.44934,5.3032077e-06 582,612.26984,2.2081804,26.876831,60.343132,3.7806742e-06 582,305.30997,417.22183,72.17447,81.67749,2.4537865e-06 582,1.2639388,12.791657,35.507473,85.87701,3.346781e-08 583,384.34506,230.60432,34.883026,76.98595,76.26011 583,431.7267,218.13165,31.30011,60.889984,0.05775842 583,403.32544,233.16655,27.834015,55.059982,0.04110979 583,470.23428,229.09703,40.270935,118.03877,0.03198012 583,551.7168,217.19913,22.49231,50.725708,0.014641314 583,236.67891,155.67216,25.622513,58.511124,0.013983168 583,457.42807,226.95694,24.86502,63.937714,0.0057150084 583,362.71106,215.79997,77.06561,140.0624,0.0046232464 583,547.23804,134.48238,40.797913,139.46419,0.0026178132 583,342.98267,275.86453,27.372528,54.26416,0.0018422763 583,160.64828,116.74405,25.565842,55.629013,0.001339963 583,69.151886,104.60226,23.173843,45.273994,0.0010950951 583,616.5923,170.15167,22.554382,90.58746,0.0010715388 583,263.35672,113.86324,21.691467,47.689537,0.0010496808 583,580.22363,384.4434,57.955566,112.642456,0.0009929042 583,223.07436,238.0779,23.71135,50.27144,0.0009724673 583,362.78287,312.0547,49.084778,157.42273,0.00085750496 583,608.7492,223.79381,29.230896,154.34532,0.0006566837 583,377.60654,115.33068,27.93097,78.58433,0.00062442286 583,333.9304,242.09189,63.33429,185.24335,0.0004420589 583,182.52812,111.57416,23.158508,54.41745,0.0003595082 583,600.56244,89.521164,36.63141,208.14143,0.00027514363 583,141.2688,105.5659,24.549515,52.74301,0.0002723892 583,607.57416,433.90936,31.57251,73.44751,0.00017512674 583,1.5824049,111.457596,19.288578,135.17006,0.00013739217 583,17.115887,66.778046,58.288136,144.5941,8.7637265e-05 583,580.06464,126.86878,37.99829,62.88404,7.845197e-05 583,379.0215,341.62897,93.100586,159.84177,5.8113834e-05 583,364.50375,120.09244,17.626282,46.114716,3.474044e-05 583,0.9996273,266.79468,18.579094,135.87817,1.5416892e-05 583,484.7597,124.43816,23.42218,49.480064,1.4619377e-05 583,446.95,416.33548,84.88269,88.65051,1.4440887e-05 583,1.823881,161.14413,31.52162,169.96375,1.11436e-05 583,3.3189323,269.44843,57.404606,213.41321,8.117702e-06 583,611.95306,0.0,27.193604,60.603825,7.68173e-06 583,1.0721469,377.90195,19.18395,120.86139,7.545547e-06 583,416.29526,432.1683,56.606354,73.55826,5.2157534e-06 583,1.0765837,11.82836,35.751617,86.161964,6.9454824e-09 584,524.0467,207.88979,23.733765,63.186783,98.75843 584,435.05917,206.66092,26.622559,70.58905,91.95692 584,586.70483,189.44656,51.046265,117.99844,0.15426046 584,285.13776,178.8011,22.827454,52.621567,0.1487601 584,236.64993,127.249275,26.603485,61.570686,0.025086513 584,435.27658,413.91547,25.36972,59.3544,0.023310361 584,608.828,171.53339,28.825073,76.6499,0.017493136 584,399.04987,88.494835,25.212524,63.941566,0.0045192437 584,593.0985,203.26286,23.524658,49.55774,0.0035387217 584,623.803,200.64804,15.343689,45.406937,0.0023040543 584,416.53287,377.98822,50.015778,121.49313,0.0022940233 584,162.801,76.59617,19.873978,46.503693,0.0016602029 584,482.76318,84.76559,38.79657,80.58979,0.0010899886 584,615.9754,213.20332,23.171265,80.112015,0.0008057562 584,614.35474,250.08131,24.791931,103.19298,0.00066523725 584,2.59857,79.00214,34.144802,103.69556,0.00051358785 584,389.57675,324.56207,61.60132,153.45404,0.0004764276 584,424.86304,411.15143,109.53949,93.62222,0.00030494612 584,612.28937,356.986,26.8573,140.4924,0.00030151708 584,300.55576,92.33522,21.339996,46.369827,0.00013261315 584,390.87888,93.07898,18.856049,47.39824,9.673547e-05 584,466.49673,80.13504,34.224487,73.240036,7.900668e-05 584,389.00757,136.9193,135.95862,222.07164,7.16781e-05 584,475.3764,122.66375,141.43738,257.37817,6.282933e-05 584,616.86945,92.26065,22.277222,89.31883,4.4482873e-05 584,476.56876,299.14383,79.768036,189.10367,3.6630212e-05 584,3.642749,55.590523,62.50777,191.78568,3.0881874e-05 584,564.81366,74.37206,73.35925,280.59607,2.2245504e-05 584,0.94579023,158.61598,17.801544,137.15742,2.075634e-05 584,0.8404362,250.77217,18.991894,134.21608,1.722702e-05 584,0.9940609,348.15265,19.405764,135.09335,1.5039235e-05 584,602.29224,20.883608,36.817444,234.8365,1.4801895e-05 584,496.38397,414.60086,82.6767,91.296906,1.0699785e-05 584,3.1528957,180.06818,58.131622,242.98148,6.766159e-06 584,1.9637729,417.50104,34.738117,83.42981,3.981871e-06 584,5.705026,357.6814,77.87752,132.82455,3.408071e-06 584,461.62357,59.694935,86.87247,215.9528,2.8494514e-06 584,597.7532,4.302959,41.393494,87.37112,1.1743948e-06 584,1.3546989,13.742839,35.379578,84.51083,4.899424e-08 585,507.80423,201.50052,34.602814,90.16809,99.38825 585,591.3291,201.59972,35.012695,65.68538,99.325294 585,272.91083,175.63875,29.102112,54.938446,8.923348 585,498.5406,202.52124,23.778198,75.175446,8.869668 585,609.4619,193.32556,25.640625,55.846115,0.981863 585,487.94574,191.13045,25.189392,53.20169,0.3756561 585,349.515,170.22487,31.57196,52.125443,0.08110463 585,416.01343,134.38162,41.666748,96.78758,0.023792934 585,584.4593,140.59665,51.597168,225.45798,0.010146028 585,227.13225,126.00658,32.64525,69.5585,0.0064252233 585,3.8783367,83.74555,40.630737,101.18314,0.0059039225 585,478.28516,162.2195,84.51056,180.24373,0.0052556107 585,21.656918,66.6788,27.065067,46.062904,0.0052153794 585,39.047913,63.561317,24.96759,46.51574,0.002288574 585,24.554373,267.79913,32.432396,57.568695,0.0015370516 585,598.54565,334.9847,39.997314,163.9205,0.00080784445 585,607.0996,90.30362,31.482727,178.09494,0.000629133 585,617.408,304.8963,21.738647,82.78195,0.00047486805 585,3.6439111,292.3631,57.67363,191.34326,8.560404e-05 585,401.9443,320.59506,78.051636,163.58969,7.6363685e-05 585,0.9994963,313.61823,20.69324,153.12033,2.599171e-05 585,1.5434929,107.8369,18.094616,161.5844,2.2755803e-05 585,446.65756,419.0339,81.39322,78.5918,1.55909e-05 585,524.2172,417.50677,80.92389,78.709015,1.2982039e-05 585,0.8913017,423.36884,16.75196,77.71628,5.6247172e-06 585,1.4483798,240.11954,28.188118,157.35828,4.699699e-06 585,437.815,65.52033,45.207977,110.00727,3.5694004e-06 585,612.4701,0.0,26.676575,61.862865,3.1194568e-06 585,509.04303,64.02841,49.2489,164.14769,1.1403552e-06 585,486.32013,79.914154,44.75836,169.11153,4.0569512e-07 585,1.531657,14.185596,35.266987,84.06555,1.0222657e-07 586,601.618,210.34782,36.655334,96.52342,99.87368 586,326.2529,199.52771,26.833618,49.80229,98.90252 586,621.8506,237.73259,17.296082,62.870987,0.51222956 586,621.1465,202.4501,18.000183,59.95514,0.24227418 586,595.9783,150.51045,42.993958,297.21344,0.146727 586,368.80463,168.64235,33.75,72.206696,0.12998241 586,331.49582,167.65588,30.338348,61.436462,0.08201844 586,359.0437,170.40952,23.895233,52.659683,0.080972925 586,7.4165335,64.29543,32.624214,58.340065,0.024754493 586,271.71143,179.59653,26.192749,52.780045,0.020068398 586,180.92087,185.84613,23.615646,46.18431,0.008118109 586,290.6081,90.39945,21.840546,46.38595,0.006274095 586,231.64983,90.433,22.059784,47.499405,0.0013695585 586,611.4813,337.39767,27.665344,90.24594,0.0009219002 586,582.232,368.20087,56.498962,136.72543,0.0004913963 586,606.2826,71.35369,32.864075,166.68875,0.0004619175 586,615.0026,463.65897,24.144043,47.113403,0.00031532787 586,543.9749,102.511086,34.31073,77.097496,0.00025081256 586,300.50772,129.52351,87.11676,216.98854,0.00016967913 586,306.6881,90.875046,27.46936,52.67401,0.00011800643 586,0.98867595,175.43779,18.127699,140.31288,7.772641e-05 586,2.1571958,88.060745,33.622673,202.59459,5.745541e-05 586,441.4016,403.96875,91.98114,96.55771,4.0507297e-05 586,526.54663,79.5553,65.82379,173.02708,3.341908e-05 586,399.85355,326.51544,87.90979,162.96472,1.9445553e-05 586,544.0498,440.3505,46.419556,68.66748,1.7491431e-05 586,1.2934285,336.12305,19.109879,134.89468,1.1541005e-05 586,190.85916,273.4985,84.49667,192.19073,1.1100876e-05 586,1.1790699,251.48724,18.800238,137.63358,8.4132525e-06 586,514.8143,438.4943,49.954468,66.750244,6.4128917e-06 586,3.6199448,240.88086,57.032394,230.69675,5.784964e-06 586,1.5221957,37.65554,22.408228,128.53137,5.458853e-06 586,504.3047,384.6065,114.230225,117.284546,3.8523453e-06 586,3.4930143,395.91776,56.054237,100.542206,3.2073197e-06 586,178.04234,426.7254,76.722565,74.09311,1.0331294e-06 586,586.04175,3.8365366,52.585693,134.3988,4.4842508e-07 586,0.90871423,8.069785,20.796728,63.214058,7.2985022e-09 586,586.6268,0.0,42.98065,52.625618,1.8883477e-09 587,427.16727,135.41243,41.259094,75.91893,63.43064 587,570.1172,194.80528,33.304993,49.538788,3.4489064 587,609.8446,94.27241,29.302063,108.79937,0.27886155 587,368.39688,174.79977,45.706696,85.01776,0.11250716 587,393.894,189.9972,26.04419,58.116776,0.029030252 587,229.48167,144.5306,26.667435,62.977158,0.02889192 587,601.7145,123.342995,35.790405,185.63889,0.0042484934 587,101.677666,144.54817,33.14707,69.274506,0.00071984436 587,249.98013,138.19574,27.078583,69.699356,0.00045702828 587,594.62897,441.92725,43.481384,64.657135,0.00032737883 587,444.9845,327.7135,49.069366,143.71442,0.0002901886 587,611.43097,345.66745,27.715698,149.3211,0.00025416655 587,360.96252,374.4099,51.801636,125.68347,0.0001497936 587,614.2918,17.35796,24.854858,86.58232,0.00010590423 587,382.46674,414.19873,96.405945,85.44083,7.875993e-05 587,601.39355,234.64589,36.302002,198.7675,7.454602e-05 587,345.71475,132.81728,89.48178,215.81639,6.0746042e-05 587,1.2695125,33.920486,18.60795,105.600174,5.751528e-05 587,1.3014799,184.84274,16.61666,123.77872,5.3079537e-05 587,1.6953728,363.1,20.650993,102.32251,3.6327478e-05 587,3.9808888,195.15207,56.460064,237.9729,2.730634e-05 587,3.551924,396.1126,54.829575,101.96622,2.5553582e-05 587,2.0272005,69.13858,32.871567,205.92493,2.5489666e-05 587,546.59143,384.61465,90.625854,114.0437,1.6772105e-05 587,1.3590926,437.11417,23.91748,72.51523,1.2904744e-05 587,304.4822,423.1321,75.08957,74.773315,1.1553966e-05 587,122.25934,416.30887,79.5049,85.73303,9.668957e-06 587,0.8572111,263.17557,20.238129,145.08167,8.190426e-06 587,566.6542,434.43253,46.337708,68.97687,6.1681e-06 587,510.71252,417.69086,78.93115,83.789825,4.557529e-06 587,441.3562,412.86432,78.09357,85.69278,3.4785387e-06 587,227.77184,421.97934,77.66264,76.30582,3.4776892e-06 587,490.9162,436.21915,45.909485,69.12744,2.4895726e-06 587,65.31655,421.9076,73.436745,78.27475,6.8402744e-07 587,0.8920874,9.286338,29.43344,64.252945,5.5276946e-08 588,542.0209,199.65091,30.168518,58.776917,99.31226 588,559.0963,197.68927,31.945862,59.10309,2.1393635 588,525.1914,203.89467,29.158447,51.33922,1.0534105 588,509.25632,203.92155,22.418488,45.41353,0.15476732 588,337.6754,175.31886,32.314728,61.87523,0.05733086 588,154.69409,133.7486,39.641907,74.84297,0.021237867 588,619.5369,402.2606,19.609741,68.18811,0.012784899 588,569.9221,81.533035,48.883545,109.06795,0.009293246 588,353.34238,194.68039,28.812073,51.789948,0.008786781 588,276.5296,176.06155,39.76367,90.966095,0.0067262 588,609.23016,314.4696,29.916504,161.00311,0.0065533533 588,69.63054,173.40253,41.28472,107.62601,0.0061592837 588,608.0947,72.14764,28.965637,139.61353,0.0030567108 588,530.1807,169.05771,58.571045,106.45398,0.0021189614 588,477.85626,146.58965,22.701569,51.87578,0.0017047168 588,89.88358,147.51135,25.9104,52.320633,0.00090280443 588,606.12585,431.37457,33.020813,77.96829,0.00046990276 588,611.3756,197.0604,27.771057,130.88345,0.00044465414 588,538.71814,444.8923,47.809875,61.13443,0.0003131038 588,497.4795,419.84543,66.74884,85.898895,0.00025488113 588,516.4374,397.93552,121.99225,109.81534,0.0001970445 588,500.53522,105.27017,132.4231,233.54272,0.00019651347 588,545.0224,156.6531,30.85791,67.82875,6.66544e-05 588,3.6583123,286.59302,57.673695,198.22034,2.5331905e-05 588,567.56384,451.2981,43.112793,57.530884,1.7416925e-05 588,1.9125187,68.88707,31.01069,149.60857,1.4336558e-05 588,1.2460897,221.39995,19.383406,125.80711,1.1320393e-05 588,1.3049203,365.87717,19.864546,125.64487,1.0801675e-05 588,1.4463664,23.73353,17.49895,120.83944,1.2839295e-06 588,2.2234864,23.85023,57.376343,114.76148,1.2193549e-06 588,3.8731935,94.73159,58.017056,228.96576,1.0871719e-06 588,610.1095,0.0,29.03717,62.613346,3.3297312e-07 588,0.7870931,3.2035222,20.957136,62.435463,3.399606e-09 589,225.11313,206.09805,38.127045,66.21738,99.836105 589,461.11948,205.37254,22.859375,50.774734,93.17433 589,473.91147,205.71687,25.977753,47.631577,53.725685 589,444.60516,202.49826,23.623962,55.637512,45.299328 589,202.37361,201.92648,37.566345,65.38077,2.9181013 589,618.99915,196.61139,20.147522,71.337616,0.04765565 589,439.11194,187.9356,49.401733,93.494095,0.020524472 589,182.20749,157.43365,38.23416,93.61653,0.012594203 589,4.2279134,177.90863,37.45315,86.49005,0.0113401 589,326.7776,223.67168,34.63443,58.688095,0.0036788832 589,26.655046,179.40332,31.119349,62.980545,0.001214257 589,598.0813,143.03891,40.527893,157.91547,0.0010146679 589,3.3492708,95.96034,57.401657,223.90019,0.00096069527 589,611.13586,241.16063,28.010803,157.08519,0.00025839565 589,608.66907,373.1336,30.4776,137.27197,0.00025405845 589,196.55162,146.81087,90.71422,186.22212,0.00021622702 589,432.8251,151.94334,95.426544,195.36928,8.190151e-05 589,1.4101367,218.48349,19.026094,135.62897,4.8885642e-05 589,596.49133,7.2156253,41.74774,73.55869,4.8629106e-05 589,1.6464486,76.08155,21.983122,168.1278,3.909565e-05 589,0.954104,336.27927,19.229963,131.50241,1.6533948e-05 589,591.5109,453.3724,41.756042,56.972717,9.405301e-06 589,0.96319747,423.28784,16.069515,78.00653,9.25613e-06 589,3.502728,397.58215,56.128418,97.593475,9.076183e-06 589,564.2692,6.2221875,73.36279,158.6611,3.6948986e-06 589,2.194406,25.504435,57.09286,116.38802,1.2991013e-06 589,0.9113558,7.339248,21.026863,60.553513,4.712638e-08 589,100.37584,3.720586,42.401276,48.59372,5.901399e-11 590,0.0,208.03528,60.0353,79.73776,92.35228 590,288.07706,216.23381,24.494476,46.71791,84.720024 590,301.44736,209.26288,35.078094,57.17862,76.13859 590,320.85437,216.75133,32.584473,51.981644,2.3165374 590,268.42834,207.3051,26.147522,54.345413,1.56917 590,179.43889,207.3222,37.17038,52.770477,0.81737804 590,249.77469,196.05498,28.84616,60.489212,0.59994876 590,464.14667,198.65163,39.121246,62.737625,0.1240722 590,144.47244,147.50142,27.690811,61.663162,0.052908294 590,0.7119385,206.28836,20.31879,128.14569,0.015431436 590,394.99484,188.3075,35.704376,72.071686,0.0029775838 590,86.75901,218.89655,47.27485,97.66748,0.0022495873 590,611.43353,230.08708,27.713135,145.07298,0.0005374782 590,611.3743,369.908,27.772339,133.07602,0.00023063718 590,108.12002,68.85087,47.301857,123.65542,0.00016103091 590,1.6581967,57.19039,35.705826,235.51465,0.000116466006 590,1.7014958,184.71532,60.99283,275.3036,9.765572e-05 590,1.4423381,109.59529,20.454191,88.01599,8.07722e-05 590,601.012,137.34636,37.811646,170.01863,4.858525e-05 590,1.0314316,390.1163,19.055569,107.403564,2.504275e-05 590,3.2513363,397.37256,56.47801,96.36194,1.6139238e-05 590,61.347527,54.600384,118.41061,219.02412,8.156332e-06 590,612.2609,0.46377605,26.885742,58.70878,5.5111195e-06 590,0.894764,288.68488,19.05344,147.14111,4.186789e-06 590,2.928431,27.413918,55.40436,111.855125,3.5410812e-07 590,1.2071599,9.192237,20.951841,55.766945,2.6035538e-08 591,0.0,202.74129,33.068367,74.22121,69.077545 591,200.00412,165.94745,40.866608,85.98868,34.64278 591,591.0956,210.71709,25.989014,56.56642,0.5546289 591,21.484015,200.56506,35.169357,62.95108,0.08323574 591,77.326,167.58969,34.99112,91.8071,0.030832397 591,507.33487,212.3663,29.011017,51.414703,0.027740503 591,622.5475,213.33253,16.599182,54.436142,0.012631583 591,574.9625,168.3853,60.18091,131.2133,0.011443535 591,1.0073185,178.85477,34.737015,231.45807,0.008725745 591,612.1862,191.87865,26.96045,120.599075,0.0028214238 591,95.22643,181.65425,34.033318,72.33229,0.0009843828 591,579.41504,395.40704,59.055176,98.4689,0.000981099 591,598.4063,218.25214,40.4693,219.23865,0.0006733652 591,607.94867,10.3872595,30.641602,123.64384,0.00014266197 591,6.4742484,132.33974,86.01378,265.85504,0.00013573791 591,608.3114,65.7044,30.835266,181.6977,0.000108181644 591,1.9822332,322.58466,32.183746,166.39563,4.7676665e-05 591,1.2884847,423.33978,16.148855,77.17966,1.6547925e-05 591,164.39172,111.35706,126.3201,223.57544,5.1080665e-06 591,0.9243246,79.73692,20.513771,180.0718,3.7956434e-07 591,3.083493,22.114067,56.434166,114.67826,1.615339e-07 591,583.4157,0.4072819,45.031128,53.79276,6.0466526e-10 592,380.27478,207.93173,24.544556,46.88333,0.4118211 592,360.36234,210.54247,29.472809,47.040054,0.3689481 592,512.14087,213.97385,25.084717,52.893463,0.054526776 592,605.90875,189.8388,32.924377,75.73215,0.010670374 592,613.12604,47.805122,24.535889,60.825996,0.008374921 592,2.3038259,197.7708,30.567451,67.65611,0.008046687 592,520.9211,215.36055,39.812927,96.48955,0.0064300415 592,535.86206,197.49727,25.424927,59.61641,0.0026419372 592,599.1597,64.82106,39.398987,214.31438,0.0016153023 592,466.93356,207.12407,41.672485,67.422775,0.00061108195 592,600.7284,229.99066,38.006897,191.05975,0.0004756667 592,586.99,9.299505,51.70294,115.3429,0.00044154067 592,615.35065,285.0243,23.79602,90.18979,0.00018095488 592,610.6705,346.7363,28.476196,144.03787,0.00017110963 592,1.5244402,69.34111,29.73836,176.92593,8.275993e-05 592,1.1534945,328.6915,18.891619,131.84314,2.4124432e-05 592,4.2849255,120.285904,77.912155,253.63701,2.2759796e-05 592,2.062194,209.55727,32.34833,194.34453,2.0968906e-05 592,574.07056,423.5437,64.66638,75.7374,2.0377598e-05 592,452.10626,163.46962,85.4884,169.02464,1.8710238e-05 592,0.8733618,417.05518,15.64324,81.13208,1.1439349e-05 592,3.6183074,345.27588,57.097416,139.66757,7.106159e-06 592,290.58887,429.43283,73.2565,72.59509,1.0114497e-06 592,2.399043,20.203985,55.308823,119.93401,1.420429e-07 592,529.9804,5.037523,46.923523,46.187576,4.9972098e-08 592,579.99243,0.56125325,45.69763,58.222263,2.4508934e-08 593,503.8057,213.9853,23.342743,51.69789,99.48878 593,64.738014,211.53444,29.706047,47.137222,51.340645 593,522.18353,219.27318,18.915527,46.041702,18.446848 593,337.43277,210.07973,32.74405,52.869736,1.5828974 593,531.82666,210.63406,22.278076,49.444366,0.3364522 593,624.50665,312.5041,14.640015,48.995087,0.005393851 593,608.7099,194.34111,30.436768,174.925,0.0034622266 593,611.75006,327.02493,27.396606,156.09363,0.0005202378 593,488.70844,183.5325,73.51776,159.064,0.0003587602 593,607.4211,432.45917,31.725586,71.08777,0.0002505895 593,572.5309,176.51474,63.483032,262.55682,0.00022687078 593,617.1172,154.13422,22.02948,79.70816,0.00019859448 593,616.9863,61.42778,22.16034,89.9767,0.00015301045 593,503.97507,315.42905,46.9368,134.2056,6.457397e-05 593,442.04047,204.788,41.03961,84.23593,5.2445837e-05 593,308.35663,119.13508,77.78412,159.44977,5.1147254e-05 593,614.6216,8.83597,24.525085,89.82369,4.9935847e-05 593,1.3098227,136.86066,18.07664,77.38196,4.390455e-05 593,1.1878883,341.1012,17.789204,133.77377,3.3421853e-05 593,1.0691887,168.40018,18.345762,129.60806,2.2300092e-05 593,2.9357731,392.4422,56.936203,101.163025,2.1746067e-05 593,0.9657634,299.7374,18.77524,82.42578,1.8843612e-05 593,584.5686,0.0,54.234924,286.32428,1.7555405e-05 593,2.1760638,249.14062,32.928173,186.14673,1.14501645e-05 593,0.9559562,439.81955,22.057596,63.188843,9.076217e-06 593,479.98672,276.20734,116.597015,188.38837,8.720859e-06 593,1.8719482,89.76525,32.913765,174.40338,7.846876e-06 593,437.63803,164.17876,93.11954,210.28453,7.4651816e-06 593,4.4296584,144.78033,57.516693,235.46716,2.85068e-06 593,2.4032,18.74092,57.023937,120.37361,1.962561e-08 594,557.4793,213.99817,24.694702,58.96759,99.854675 594,488.96408,218.22972,24.543365,51.89229,99.82625 594,44.55821,209.89874,33.04832,45.57022,99.48886 594,582.93787,213.1401,24.306885,57.521942,6.3300514 594,547.10095,210.4738,21.17633,55.998062,0.94898456 594,585.1517,186.64694,24.136353,46.871704,0.6581816 594,344.71536,194.91365,24.162231,49.84529,0.19604398 594,316.96408,208.61159,36.12851,64.63747,0.14936578 594,534.5544,216.04683,20.550293,49.14055,0.019427223 594,348.52078,211.78674,35.649445,67.41998,0.016476277 594,3.1500945,198.33296,42.482117,80.57591,0.012284888 594,81.89914,210.14719,24.058228,49.159637,0.0112224575 594,613.08984,161.56328,26.056824,134.22377,0.0014530614 594,542.09296,192.6637,70.8197,97.21039,0.0011529651 594,607.03845,432.97284,32.108215,75.16562,0.00048123335 594,600.82684,311.14578,38.319824,176.75284,0.00039402914 594,3.9649513,212.3087,56.4375,239.48787,0.00010609813 594,2.6392303,42.96943,64.666565,250.87949,4.2120235e-05 594,1.1311898,340.3856,17.523073,134.43484,4.090696e-05 594,598.43945,54.238354,40.536682,199.66634,2.5493991e-05 594,474.73022,192.50381,54.83667,98.00629,2.5177667e-05 594,1.5042684,248.35031,18.739521,148.0007,2.3466599e-05 594,2.9758773,391.34143,56.4588,103.07144,1.9763609e-05 594,7.323112,125.96097,142.16435,221.94257,1.8638042e-05 594,504.03882,152.55482,128.06439,219.08574,1.1847739e-05 594,1.1380811,440.7093,21.9969,62.32202,8.023558e-06 594,418.91138,170.17474,57.270355,112.84546,7.328112e-06 594,1.8052377,92.694885,20.141748,169.11642,4.528164e-06 594,613.2975,0.89106447,25.849182,60.989017,3.6677673e-06 594,393.76773,115.553764,132.19144,231.7662,9.616592e-07 594,1.1837517,12.550866,38.815334,83.882996,1.4406582e-07 595,564.3664,210.97456,36.992126,72.96837,99.9561 595,50.507576,199.93011,29.345917,49.41008,0.7615161 595,368.2598,196.42477,28.65918,51.39792,0.5035784 595,335.56708,203.07643,23.44577,46.66394,0.16127343 595,68.50432,204.15265,24.38395,47.01619,0.06934105 595,10.777533,195.21225,34.903526,71.30057,0.013390331 595,591.72687,211.41716,33.69751,63.861588,0.010392514 595,378.25882,211.33354,34.7782,63.339066,0.0054502934 595,337.9491,207.57692,36.911102,87.10747,0.0044533247 595,611.89166,185.35347,27.255005,136.28355,0.00076371216 595,1.7593596,183.70445,18.851185,86.256485,0.0002054829 595,607.8537,438.02167,31.292969,68.6124,0.00019162706 595,547.5791,189.0845,73.86719,141.03433,0.00017472672 595,620.16766,54.772194,18.979004,56.715073,0.00015451202 595,585.93207,228.23946,52.675842,250.33961,0.00014767789 595,615.4674,143.82808,23.67926,98.82292,9.975671e-05 595,5.2580895,141.609,55.994606,196.06227,9.24339e-05 595,585.95593,55.646538,52.087708,237.87741,3.804902e-05 595,1.2233708,237.52388,18.763292,72.88484,3.026092e-05 595,586.372,13.422699,52.77466,98.57207,2.8098328e-05 595,1.0650326,315.74835,17.820309,131.99487,2.443638e-05 595,3.6672184,325.924,56.843918,156.20053,1.6699198e-05 595,452.25845,174.08388,58.59854,101.54823,1.6230382e-05 595,1.4754525,395.98874,28.47013,100.50964,1.0629851e-05 595,2.1232944,126.30632,20.132849,102.03165,4.9756727e-06 595,422.9013,108.2014,137.19379,236.56761,3.055045e-06 595,2.067631,44.770126,34.221447,222.15047,1.3355364e-06 595,1.5002182,18.69227,55.07469,109.421486,7.589306e-07 595,613.3052,0.0,25.841492,46.007442,5.494607e-07 595,0.7314852,5.9796453,12.889372,97.213326,3.2248966e-08 595,543.8243,0.009208985,48.324646,55.665638,1.135371e-08 595,578.25824,2.9041748,47.099365,52.170265,3.771795e-09 595,0.77888346,3.221159,31.71773,48.228752,3.0817862e-09 595,517.32007,0.0,46.494812,48.100677,1.8603122e-10 596,512.6888,204.92131,24.27893,49.808975,99.94272 596,25.66222,200.60951,28.296799,57.1447,89.07013 596,16.224443,205.10327,21.356375,46.839752,2.7279558 596,464.01685,178.56334,26.981232,54.46109,0.07552476 596,387.9213,192.33739,34.29315,62.536057,0.014758775 596,5.716758,193.88136,52.690514,139.00475,0.009210562 596,402.82657,215.1273,33.411804,57.293167,0.0071933004 596,7.162329,74.75292,40.256374,80.48182,0.003430138 596,1.7448756,205.15956,18.422112,74.08391,0.0008118761 596,335.62613,207.38774,39.956055,142.85884,0.00063409156 596,582.36426,395.11414,56.21338,102.98068,0.0004874207 596,607.9059,440.35422,31.240784,65.83533,0.00045974602 596,616.162,59.66926,22.98468,85.43485,0.0004287133 596,2.1507592,67.727104,18.53098,82.14826,0.0002917286 596,610.42017,157.49121,28.726501,138.51306,0.0002660319 596,2.5590456,134.93456,29.439222,158.91386,0.00016167536 596,495.8699,180.07428,56.509857,95.10718,0.000102470345 596,611.1902,306.79324,27.956482,141.39017,8.825945e-05 596,1.3289877,228.8188,20.480698,152.56407,7.948249e-05 596,369.54526,72.27217,73.94803,202.80824,7.8224264e-05 596,6.9152184,127.801094,117.9628,234.9972,5.4832708e-05 596,600.3955,30.61146,38.368652,192.92284,3.88383e-05 596,1.4758024,320.8949,27.749596,148.53833,2.2025286e-05 596,3.357355,43.532684,59.12288,225.39786,1.3868328e-05 596,3.007951,387.62137,56.184513,104.97577,1.0241519e-05 596,0.7829297,417.57632,15.885877,83.39029,6.366507e-06 596,463.91833,140.00346,143.94489,219.97945,4.230457e-06 596,598.0566,2.1060743,41.02838,92.30456,6.15544e-07 596,1.9175993,12.587731,36.832237,89.584335,2.7961052e-08 596,580.67426,0.0,40.67682,52.33037,1.8871649e-11 596,464.30185,0.0,45.198853,49.47347,1.0392967e-12 596,503.1658,0.0,44.231354,46.43869,6.1596025e-13 597,568.754,205.95143,30.698181,58.887222,99.96291 597,621.4037,205.31659,17.742981,57.37918,0.021796837 597,72.55396,193.87068,40.031364,55.880936,0.013732609 597,414.9037,192.23596,26.69284,50.159637,0.0089356825 597,438.5022,186.66959,25.336761,52.10269,0.0055662175 597,609.4172,120.28261,29.646057,147.85994,0.0050269063 597,464.0157,212.44707,35.36798,69.607376,0.0011104451 597,611.6376,203.58125,27.509094,133.32704,0.00036398292 597,331.22128,422.90454,83.08444,78.01407,0.00026910487 597,5.7103925,179.86577,56.712162,238.3968,0.00015359437 597,617.1129,62.70974,22.033752,74.14933,0.00014995111 597,602.1608,263.89844,36.861633,185.12079,0.00012949917 597,1.7867684,115.93672,19.205027,139.85425,0.00011971623 597,220.32118,343.77734,77.334946,160.75287,9.438374e-05 597,611.67395,408.76443,27.472717,96.44354,8.951203e-05 597,345.30127,76.33935,26.723938,58.171852,6.814441e-05 597,550.2932,172.96753,71.78833,145.43027,6.755802e-05 597,0.9927604,214.14062,20.032476,150.36356,3.1828946e-05 597,184.59505,415.48276,86.21266,87.047455,2.9971958e-05 597,1.5699455,330.66525,18.945217,130.12094,1.700558e-05 597,569.9552,357.64795,69.19147,138.02481,1.56349e-05 597,454.23022,422.7449,80.7785,81.250275,1.2812135e-05 597,5.4000406,353.7429,78.01695,131.89087,8.620968e-06 597,610.3023,10.449889,28.84436,83.78767,8.43348e-06 597,599.0337,18.295033,40.112976,187.95024,8.221353e-06 597,255.16667,424.71732,73.82558,76.30942,7.759836e-06 597,1.7721778,450.41278,28.581814,54.285828,2.7259339e-06 597,368.5518,391.58237,116.5354,109.27823,2.3899097e-06 597,99.5687,388.88196,112.1612,109.99487,1.7765213e-06 597,528.9405,422.3081,74.88257,80.13394,1.0746207e-06 597,138.07664,440.7511,43.506638,62.968292,8.5900405e-07 597,109.9422,439.16458,44.46617,65.811615,8.463448e-07 597,43.403896,419.63,75.6974,81.27835,7.155459e-07 597,1.5080388,26.725327,29.62508,160.0401,3.1499175e-07 597,368.3014,1.4271599,45.731445,47.698563,1.309563e-09 597,414.26834,3.883387,44.36798,52.777706,7.154111e-10 597,584.3107,3.4274416,45.760864,53.266468,3.04126e-10 597,443.53778,1.665643,45.45807,55.00652,7.625101e-11 597,481.2589,1.2476335,48.782837,54.351906,1.2506869e-11 597,537.69604,0.3435889,49.705444,50.842903,2.9202888e-12 597,510.22986,1.3795768,46.38971,52.031464,1.4285439e-12 598,547.6041,179.4433,37.361084,72.832596,0.022697218 598,375.69406,208.44603,24.63742,48.304825,0.004760514 598,395.0742,205.99702,33.523834,60.646378,0.0034386471 598,429.60944,211.67477,23.972412,45.467773,0.0030370394 598,604.44464,223.83199,34.02069,151.23174,0.0021299706 598,545.8676,285.75974,23.751526,46.150146,0.0016226191 598,620.6877,84.6806,18.458984,64.21123,0.0015993168 598,609.4682,78.99687,29.678467,148.8524,0.0005246942 598,620.6024,192.09195,18.54425,61.0224,0.00032854668 598,620.15265,123.0259,18.994019,62.18885,0.00031066337 598,533.93646,172.16794,81.702576,159.90613,0.00021445044 598,584.1576,19.585508,53.90741,107.08314,0.00019499869 598,1.523584,211.4899,18.965506,72.67758,0.00014741701 598,612.6278,355.2854,26.51886,144.24695,0.000118869706 598,2.3719923,97.02207,33.07827,201.492,0.00011381841 598,1.6698967,104.09947,19.926949,90.3064,6.360426e-05 598,552.48364,260.83786,52.121887,118.32245,5.475035e-05 598,594.0069,437.88245,43.54596,69.719086,3.683057e-05 598,1.8420159,318.04312,31.614351,168.82898,3.664139e-05 598,3.2868052,212.27063,56.675762,245.90033,1.6611646e-05 598,1.846749,217.98001,27.31401,154.43881,1.5133357e-05 598,456.06058,424.9309,78.72128,74.193726,9.043143e-06 598,3.1959963,426.14923,53.96407,73.8526,3.2832536e-06 598,514.4343,430.22385,76.30994,69.14398,1.6781568e-06 598,45.243866,131.88387,105.94064,218.25407,6.717651e-07 598,578.12054,8.246158,43.867615,50.241005,6.182762e-07 598,1.7062037,19.682814,18.700178,133.5345,2.5409165e-07 598,380.05856,26.597725,37.641937,80.08688,9.620861e-08 598,3.5487306,24.424707,80.27574,144.54167,8.281135e-08 598,416.48535,21.427397,43.995758,115.07999,6.5445846e-08 598,358.504,7.646856,43.98932,124.44021,3.9497642e-08 598,529.8085,4.4942856,44.26947,54.51476,6.09329e-09 598,387.58044,3.7670622,44.025177,46.769077,1.1882563e-10 598,505.91,1.9381006,42.028107,50.729366,2.0416328e-11 599,602.49567,145.88954,33.064514,88.346375,0.0026305683 599,578.9745,82.45679,59.00348,182.17151,0.0018996755 599,489.78595,179.35048,23.872375,48.95549,0.0017435022 599,612.3046,237.1505,26.842041,135.67183,0.000855645 599,617.4036,199.06163,21.743042,75.804,0.0004403653 599,541.616,248.88672,39.20453,115.03085,0.0004197434 599,436.98132,103.675575,38.738953,97.779854,0.00036904094 599,575.066,50.482117,20.312073,45.869843,0.00027473093 599,611.84796,404.33148,27.298706,97.86566,0.00021468024 599,531.793,172.97552,23.392334,52.664978,0.00015885249 599,527.84344,100.77861,40.088562,144.7789,9.77118e-05 599,619.7673,90.62907,19.379395,61.9112,9.105814e-05 599,588.9374,305.11893,49.47058,182.88269,7.938279e-05 599,582.3635,9.84638,56.783142,134.43634,4.5809204e-05 599,528.21576,53.751434,86.53558,239.39572,4.4139902e-05 599,608.58624,1.3971224,30.560425,65.16479,3.532476e-05 599,1.3018539,191.86633,17.703094,70.26962,3.13368e-05 599,540.9285,51.436123,34.628174,69.86792,2.2950953e-05 599,1.156202,308.1412,18.108189,130.00366,1.92918e-05 599,526.0278,247.76735,85.743225,185.26079,1.43843945e-05 599,4.624347,178.42735,55.286434,237.90282,1.1225411e-05 599,567.5525,31.690853,38.333862,97.03543,9.007991e-06 599,1.548335,380.33444,29.395996,113.20358,8.971742e-06 599,406.91742,56.519688,108.8277,237.41391,5.5836813e-06 599,2.18864,147.42221,31.660969,166.60272,4.741485e-06 599,4.939772,355.3006,79.27808,130.67542,4.5397605e-06 599,69.28051,153.39952,60.66291,104.301865,3.675716e-06 599,1.7312996,101.70649,17.166916,132.18695,2.1996775e-06 599,22.030342,130.36139,101.32052,205.55121,1.4451945e-06 599,3.601613,52.328106,60.787083,188.84778,1.1658797e-07 599,1.4600928,25.834597,21.230663,127.21707,8.815205e-08 599,575.46185,3.613151,44.74707,56.938583,1.9067564e-08 599,510.12418,3.8588169,43.918427,47.60491,1.7941485e-08 599,537.5535,5.461375,44.23224,49.850616,1.4335308e-08 599,1.4240015,5.475472,19.64269,64.772514,2.868236e-10 599,461.73257,5.560596,42.587494,49.217308,2.4855666e-11 599,435.76236,4.0081234,44.628326,54.203575,1.5604377e-11 600,34.960213,207.60715,30.483711,48.54019,98.78869 600,99.372734,195.16396,35.6007,52.226364,0.009455094 600,517.37646,222.17758,38.799744,91.171844,0.0023781662 600,353.01523,188.5487,25.030853,46.02385,0.002111373 600,5.4999294,197.97882,22.193073,47.3752,0.0017220303 600,618.76807,222.16342,20.378601,75.27063,0.0013948411 600,620.9322,119.938255,18.214478,59.895027,0.00088471314 600,621.4874,46.184357,17.65924,53.640236,0.00039771572 600,565.39294,65.240715,37.343872,73.1511,0.00030703435 600,605.9082,431.69138,33.238464,74.71832,0.00027650673 600,611.9459,294.82874,27.200745,162.62976,0.00026832995 600,520.98724,68.302414,108.28528,249.53218,0.00023212754 600,617.36505,160.60606,21.781616,86.569,0.00020942195 600,13.443297,181.50972,69.18301,96.329025,0.00015056314 600,610.3386,43.512737,28.808044,121.63513,0.00015039436 600,560.06525,149.73692,22.633606,58.2321,0.00010606373 600,601.0368,173.62308,37.459106,169.90393,8.105586e-05 600,541.6447,137.82005,34.0979,91.104355,7.166361e-05 600,2.0219183,144.631,19.23941,120.301865,5.772112e-05 600,608.1546,9.750059,30.823181,80.07062,4.5448898e-05 600,551.79254,110.66641,43.699768,150.77884,3.2915497e-05 600,584.51587,15.355625,53.264038,260.70255,2.8263988e-05 600,2.1053312,182.26161,30.877357,160.32335,2.8112745e-05 600,1.0130404,377.92365,16.318363,114.88156,1.665873e-05 600,554.91315,390.627,84.23352,106.7294,1.30691915e-05 600,0.86836344,304.98523,18.642883,76.23627,1.2225354e-05 600,4.466566,212.16992,55.838104,235.07956,8.57106e-06 600,521.90765,99.39759,41.97589,161.40408,5.7294774e-06 600,3.1126955,387.7297,56.653305,100.8699,3.8069268e-06 600,8.8719015,130.93793,122.892944,228.67813,2.8654913e-06 600,499.64362,13.766654,37.153564,80.47648,3.3217006e-07 600,1.7479786,69.96128,20.693808,103.31362,1.4742515e-07 600,0.795319,14.885863,8.638267,76.13202,8.766392e-09 600,527.7247,25.404715,34.2276,73.03633,7.2713098e-09 600,484.5282,0.0,84.719666,247.67087,2.7601672e-09 600,1.9515593,17.937353,58.68672,111.92942,2.125574e-09 600,518.3376,1.5410938,42.36676,57.7582,1.0940306e-09 600,477.9124,2.7756512,42.05603,54.798077,9.5140944e-11 600,1.258348,6.3146257,21.607658,59.913578,6.0312144e-11 600,544.51544,1.0573812,45.095215,55.3474,4.374601e-12 601,130.00696,155.23941,22.805862,49.802048,0.23757501 601,162.99287,156.84792,21.685806,45.437714,0.020982804 601,621.49774,216.17072,17.648926,57.75226,0.0054024374 601,610.70276,188.94951,28.443909,131.50807,0.0018205217 601,567.8282,150.18037,66.026794,157.87474,0.0016911767 601,617.3082,149.14351,21.83844,88.87457,0.0007726105 601,140.82895,164.03944,26.019226,48.791397,0.00046448363 601,561.46906,133.37625,22.65979,52.496826,0.00045067363 601,581.8969,190.18872,36.415344,83.58609,0.00044081488 601,588.56506,202.88919,49.87201,222.6648,0.00042905036 601,617.23895,266.55518,21.907715,80.363556,0.0002223071 601,616.7659,357.1949,22.380737,82.87857,0.0002170638 601,580.95374,124.82746,38.230896,81.76095,0.00020774014 601,1.1829166,153.33934,18.472406,74.5948,7.3817566e-05 601,613.29254,410.87646,25.854126,92.47757,5.561106e-05 601,599.5633,57.068497,39.18506,217.99788,3.849628e-05 601,616.43835,30.094616,22.708313,93.85283,3.168684e-05 601,1.2541211,337.9062,18.912806,130.85056,2.5365509e-05 601,571.4256,359.3613,67.007935,127.75516,2.4416764e-05 601,1.7830249,164.06142,32.119232,188.38295,2.3614275e-05 601,493.78918,266.69818,86.38489,171.76584,2.089094e-05 601,5.0662503,166.92252,79.48264,277.98047,1.8797733e-05 601,1.4045223,312.6455,17.843262,72.56113,1.816394e-05 601,281.51007,90.11816,82.651306,156.17172,1.7793978e-05 601,0.89843917,251.05339,18.574656,75.087906,9.93991e-06 601,3.912256,339.1183,57.86306,146.89517,6.3231823e-06 601,520.6764,427.52756,74.38495,71.566986,3.1202358e-06 601,585.782,4.470423,53.364685,148.2152,2.1607555e-06 601,1.8900033,419.45105,35.250282,79.3183,2.1216238e-06 601,531.27826,60.464546,86.82062,207.62167,2.0227385e-06 601,365.98203,428.41537,71.956116,72.60834,1.0768736e-06 601,1.4575701,13.762299,59.589634,118.47388,9.1667516e-07 601,242.85406,430.77518,72.14386,70.81119,5.6259694e-07 601,326.01187,425.31152,72.55127,74.95181,4.8489824e-07 601,1.8392636,48.2029,18.796564,146.90715,1.852861e-07 601,1.3745834,13.462058,14.224008,85.38979,1.1381859e-07 601,0.7653581,0.0,42.396305,64.58792,4.6315046e-11 602,590.9928,214.65256,26.900879,46.256287,0.08168256 602,593.95264,125.91653,42.769226,150.73227,0.008347001 602,521.21454,208.11485,20.095764,46.245255,0.005106996 602,620.59186,197.39108,18.55481,58.054184,0.0024297968 602,144.32794,211.0036,35.500443,85.22363,0.0012929585 602,617.8845,233.01219,21.262146,84.38484,0.0008242239 602,311.28088,189.73894,28.54477,55.21193,0.0006638987 602,624.5878,148.18878,14.558838,46.00267,0.0004630369 602,617.0422,331.47275,22.104492,85.617645,0.00018282376 602,617.1239,277.34903,22.022766,89.38287,0.00016514014 602,4.9603176,95.36043,71.04084,197.04128,0.00015972766 602,601.5724,204.21304,37.57428,216.17911,0.00014036104 602,1.6768465,215.72557,16.97549,66.28145,0.00013454359 602,614.67096,36.58882,24.475708,100.9037,0.000118874355 602,615.2482,88.53722,23.898438,112.6422,9.099893e-05 602,612.0443,361.32812,27.102356,139.95596,8.9354515e-05 602,1.1835661,160.65323,18.447483,91.51138,7.702231e-05 602,1.7990552,219.33759,28.40269,138.96014,5.7224213e-05 602,4.07287,201.99608,58.116104,222.90538,5.3973334e-05 602,608.15875,0.0,30.987915,66.87881,4.4442426e-05 602,2.002378,64.13943,18.741337,78.61318,4.225909e-05 602,265.86038,154.17256,47.574677,119.4265,3.3504766e-05 602,289.12018,121.40063,81.423645,165.49551,3.333101e-05 602,1.2526107,393.00687,18.300116,70.92642,2.1635027e-05 602,1.6924285,117.84312,29.503744,94.454124,1.3134566e-05 602,0.9805656,345.538,18.48867,73.21161,1.2603207e-05 602,0.77684814,294.34015,18.69402,79.63089,7.0893316e-06 602,130.82437,170.64261,84.43117,155.95096,6.7672945e-06 602,1.7305884,336.73697,33.220657,151.03345,6.599569e-06 602,3.2028515,430.80203,52.694138,67.82605,1.8035685e-06 602,2.7649024,17.158821,57.62685,126.48968,7.1137066e-08 602,528.3344,2.7687583,42.989075,51.438168,3.640816e-09 602,498.00146,1.1119336,43.099304,54.05293,2.3692506e-09 602,415.65546,1.2371728,42.554047,51.614803,1.9535064e-10 603,284.6668,179.67725,22.264374,46.386093,0.04819466 603,442.61096,231.99037,22.40921,50.93663,0.032057747 603,304.98935,192.66476,26.03897,56.90004,0.013772068 603,610.31476,161.84938,28.83191,151.95177,0.00089751993 603,617.2567,256.23615,21.889954,87.03464,0.0003703504 603,611.3677,344.31247,27.778992,136.3002,0.00029448466 603,619.6488,20.796284,19.497864,72.29564,0.00028834306 603,438.24768,78.395676,36.46286,76.59828,0.00027711707 603,271.42035,166.20001,40.840088,90.13962,0.00023985695 603,617.71094,313.4538,21.43573,86.430145,0.00019529402 603,0.86754316,234.2654,18.85023,77.54991,0.00015857989 603,608.42786,438.171,30.718811,67.459595,0.00010618528 603,588.90393,209.07759,49.868835,245.04225,0.00010461392 603,3.0673244,244.50177,56.593006,223.38162,3.8131766e-05 603,610.6918,20.93265,28.454895,184.81448,3.4395547e-05 603,298.60947,133.2917,83.94937,154.99275,2.5828132e-05 603,1.0095874,325.1051,18.534168,133.8823,1.903993e-05 603,4.122928,140.73438,59.503063,203.87173,1.6067643e-05 603,1.1605648,414.4172,18.289272,68.47269,1.3308899e-05 603,316.50787,233.1188,76.1236,178.4584,7.708192e-06 603,1.9490356,169.54897,18.168701,84.07451,6.97664e-06 603,3.389572,394.6074,56.590755,99.2612,2.882996e-06 603,359.3545,432.65518,71.581604,67.94873,7.144086e-07 603,318.4764,431.32605,71.8938,69.5936,6.4663425e-07 603,277.54773,430.81427,71.95621,70.45517,5.3406e-07 603,1.575429,68.14665,19.025032,143.60973,9.479692e-08 603,1.9841357,17.168386,57.79212,120.70545,7.951132e-10 603,0.80051273,8.431129,11.8138895,78.46174,3.3352493e-10 603,455.02115,1.1131234,43.86621,50.056793,3.1551442e-10 603,424.82965,0.69028646,38.662903,45.644627,1.208161e-11 604,480.52652,192.90344,37.3555,83.01187,0.33225837 604,513.0685,50.247192,24.306091,51.010643,0.07383364 604,300.42694,200.06517,22.200348,51.19664,0.057936262 604,310.3741,195.16658,30.85672,55.876816,0.01836178 604,468.4012,199.29367,28.012299,61.866516,0.0054519414 604,528.41895,56.52843,21.354004,45.246136,0.0033891432 604,621.021,216.58727,18.125671,67.57988,0.002870342 604,16.983849,202.49875,33.888264,52.40547,0.0018817525 604,601.4124,186.88547,36.954346,136.0386,0.0016519605 604,499.33237,199.87122,41.089874,119.01541,0.0013440659 604,603.80414,245.71922,34.93756,193.06752,0.00031048537 604,266.76297,188.78183,36.811523,70.06421,0.00021808964 604,363.94003,438.47382,50.791595,68.05298,0.00015148331 604,5.2949185,199.13449,54.324043,244.78311,0.00011038238 604,611.2958,351.99527,27.850891,150.8215,9.302951e-05 604,189.17122,398.5669,119.23442,100.47415,6.643621e-05 604,463.56183,164.07248,111.47998,184.8696,6.368304e-05 604,324.8229,399.4602,109.461365,103.92972,4.711726e-05 604,610.0093,66.87059,29.13739,190.93187,4.5166184e-05 604,1.0714713,205.29378,18.482834,137.37361,4.2156524e-05 604,544.4196,122.76055,81.01416,201.15201,2.8483166e-05 604,1.5724251,355.28583,20.365185,99.3143,1.2105935e-05 604,2.4848714,112.19864,34.94615,173.92624,1.0961716e-05 604,56.437904,186.38884,67.27974,108.31935,9.893833e-06 604,211.27745,437.43585,49.043167,68.50217,8.027139e-06 604,3.4060352,389.63467,54.855904,104.95737,7.170819e-06 604,80.5807,393.84906,106.603546,102.00772,6.7021815e-06 604,590.4551,451.03427,42.932983,56.832825,6.4870987e-06 604,1.5943165,264.86417,28.488028,161.4002,4.7781905e-06 604,1.9518994,451.6995,28.675274,53.856506,3.4627835e-06 604,597.8868,4.4349675,41.259888,85.87515,3.3162958e-06 604,467.0944,423.23718,80.63663,78.750916,3.0377298e-06 604,382.9098,396.17184,114.413666,104.57248,2.870179e-06 604,36.29354,143.86679,137.28278,227.749,2.54212e-06 604,43.39901,422.01733,76.15241,77.66763,1.1426434e-06 604,513.56805,419.296,74.27417,82.08829,9.338711e-07 604,109.2715,436.55005,44.258316,68.44736,8.830927e-07 604,1.1363176,31.819258,17.125727,131.77376,2.8511012e-08 604,373.892,0.7707064,44.24173,53.38879,2.2243978e-09 604,1.5412614,10.547363,33.735622,77.98055,1.1967949e-10 605,26.769678,233.72336,24.443033,47.624207,98.6849 605,41.135944,235.03214,27.728039,47.213745,1.0364301 605,498.13345,231.7368,25.269867,45.443375,0.37038514 605,568.9586,113.59245,33.580017,52.12442,0.018174464 605,581.93915,80.26227,32.269653,68.91795,0.008102517 605,599.11993,94.234406,39.68744,222.87723,0.0030916384 605,625.7978,246.13405,13.348877,46.609695,0.002197561 605,585.477,238.52646,27.404968,53.559875,0.0020391943 605,15.91467,220.60156,53.358776,88.20047,0.0012369712 605,615.88165,211.24368,23.265015,94.788055,0.00060237845 605,586.9451,199.48366,51.49823,281.07422,0.00014516669 605,543.05756,102.799904,85.00012,229.92789,0.0001421985 605,612.0746,370.24875,27.072083,134.271,0.00010646383 605,560.0391,63.27803,49.305176,160.04997,9.904177e-05 605,610.7639,37.608482,28.382751,161.28183,7.831772e-05 605,1.2367513,245.80354,18.98032,137.30434,3.7300913e-05 605,4.3883905,234.42276,55.493195,231.42474,3.3766064e-05 605,1.0221672,348.61377,17.82979,131.99619,2.2275946e-05 605,2.5466683,195.16194,28.101158,123.19142,1.0708278e-05 605,555.92,428.8724,83.226685,70.411194,7.5555417e-06 605,8.204535,166.05228,114.00951,223.54187,5.6655467e-06 605,3.156486,391.68393,55.78034,100.743744,5.166623e-06 605,1.0021762,441.87012,22.04979,62.04193,3.8417497e-06 605,1.5482601,95.62335,18.52882,147.42056,8.48836e-07 605,507.53818,431.30872,78.874115,68.44821,7.829829e-07 605,4.1402054,56.91607,59.91929,259.01962,5.2848475e-07 605,525.85956,3.2675896,43.619995,52.7748,1.314345e-09 605,1.6326334,9.676725,32.51055,79.8098,2.1286846e-10 606,21.101727,219.7056,36.45041,52.53424,99.00003 606,405.2974,225.01472,33.36435,59.315994,0.047972184 606,470.68372,194.25597,34.65811,77.22212,0.026087102 606,575.56134,198.40033,40.54254,155.14896,0.015930634 606,500.58932,219.093,25.962189,48.241867,0.01573228 606,608.6775,44.58551,29.115051,76.917015,0.01149062 606,526.4057,223.77519,25.013977,51.71605,0.011168246 606,583.69226,273.01904,26.974915,60.851196,0.006141079 606,621.2052,233.72157,17.941467,59.717514,0.0035511483 606,578.6022,187.03339,26.641663,71.20917,0.0027515949 606,621.95483,165.82211,17.191833,52.819305,0.00252253 606,69.437004,213.4805,23.414284,48.089264,0.0022313003 606,617.7349,263.19434,21.411743,76.53302,0.0014790094 606,610.6419,190.26945,28.50476,129.26125,0.0010861357 606,624.1336,57.09398,15.013062,45.46437,0.0010243156 606,581.8474,43.4481,56.043823,298.3896,0.00034416388 606,602.79504,279.17044,36.351624,186.60706,0.0002699145 606,615.7289,99.02969,23.417786,95.258286,0.00024019845 606,607.9165,436.7846,31.230164,69.48218,0.00017423519 606,592.2458,185.57042,34.497314,95.42656,0.00013892517 606,0.9651888,219.96498,17.898962,131.32503,7.702364e-05 606,5.4508743,185.95319,58.40649,201.81326,5.7268215e-05 606,1.2243661,359.68124,19.607374,102.10361,1.6017857e-05 606,3.0059261,155.20117,32.406372,159.03531,1.570054e-05 606,0.86126673,309.05438,18.435644,77.17764,1.3965095e-05 606,613.41516,0.0,25.731506,47.302937,1.3439378e-05 606,0.9048812,416.60574,15.929511,84.24719,5.9556914e-06 606,3.3706577,332.0781,57.273003,149.70654,5.8925057e-06 606,2.385529,54.16912,30.58488,136.99213,8.5844067e-07 606,585.3301,3.0727897,45.55768,63.40051,2.4382214e-07 606,509.99298,4.605516,43.645325,50.46454,1.2429386e-08 606,383.67212,2.6907878,45.231995,57.215504,1.2850864e-09 606,1.3566399,9.914843,16.82265,52.568863,1.84236e-10 606,358.2711,0.0,44.027374,47.849026,4.3205953e-11 607,464.77048,221.11818,34.343964,63.53801,0.03679573 607,606.8796,89.63513,32.26709,155.46414,0.007165874 607,621.7827,187.9058,17.363953,52.90793,0.003787198 607,357.29092,182.88661,32.569122,67.39215,0.003111206 607,618.1353,120.632454,21.011353,66.56016,0.002107141 607,543.06494,207.52257,22.251282,45.556915,0.0015931027 607,611.5021,211.70401,27.644592,153.0094,0.0010912396 607,619.2145,33.617218,19.93219,73.39767,0.0006670936 607,1.12583,231.85822,18.520164,67.92026,0.0004987173 607,607.63025,435.31073,31.516418,72.51688,0.00028159135 607,459.22263,114.15696,36.234528,82.23052,0.00022879017 607,608.8906,0.0,30.256042,70.64976,0.000115901785 607,2.3416846,200.09158,34.421227,163.64569,5.737066e-05 607,1.5801083,188.46185,18.384481,75.53375,3.957234e-05 607,3.845267,243.27641,55.53239,222.33708,3.4169432e-05 607,446.99023,83.32943,79.26312,197.60504,3.135276e-05 607,572.06366,362.06842,67.08301,129.1955,1.6618871e-05 607,393.02478,151.05597,96.49237,207.08398,1.6513653e-05 607,1.061862,373.7068,18.908188,119.02402,1.4884691e-05 607,585.61664,2.9681902,53.53003,140.01962,1.1350651e-05 607,1.0823349,297.23132,20.465185,109.152435,5.032097e-06 607,2.4590545,423.8182,54.13346,75.50763,2.9233513e-06 607,2.1302075,114.68175,28.872211,160.53508,1.9903648e-06 607,2.0780208,48.48057,20.47934,101.23729,3.9647542e-08 607,501.3869,3.403576,45.730896,55.84587,1.8997925e-09 607,476.95755,3.1593149,43.529205,53.920525,1.6505337e-09 607,2.7042449,13.441401,32.766068,70.96095,1.1955247e-09 608,476.16177,201.88522,24.52417,50.95613,78.01283 608,68.46921,182.69318,46.562332,65.33896,1.0377858 608,393.22525,202.31815,25.050293,54.05771,0.5642572 608,578.75946,189.81833,45.574158,67.73895,0.4853473 608,603.9705,171.38904,34.31067,90.86368,0.15316783 608,470.8883,190.54205,44.16162,96.91849,0.059094805 608,119.85766,183.987,33.873695,61.788116,0.014286302 608,347.62103,184.7868,34.229248,61.41104,0.01408189 608,95.76127,193.56863,24.439476,48.420883,0.011397448 608,620.3071,210.19829,18.839539,57.737442,0.0032484378 608,620.66693,48.826664,18.479736,59.305523,0.0023940192 608,583.7758,100.3371,54.46826,229.47818,0.0014680009 608,611.9841,211.06468,27.162598,162.47774,0.0010029931 608,446.07516,193.39525,40.335266,108.01793,0.0006590226 608,609.45624,42.464462,29.69043,126.675095,0.00051316386 608,616.6209,403.05988,22.525757,83.84973,0.00022190082 608,433.313,138.34897,85.393616,217.7013,0.000108513545 608,587.5726,324.14185,51.244812,164.4216,6.9516274e-05 608,2.4509969,127.938156,29.15681,142.88759,5.5664543e-05 608,1.2448739,324.5333,19.407213,132.43817,3.4405977e-05 608,596.3646,9.21874,42.782043,91.085434,2.8561723e-05 608,4.5014925,180.76212,56.357487,245.78421,2.8318653e-05 608,1.0146322,234.51917,18.365189,69.73007,2.6559715e-05 608,594.74915,437.99402,43.362793,65.45395,2.3690109e-05 608,1.4806104,396.0222,28.167177,99.49783,1.7616954e-05 608,3.6200423,343.73135,58.03233,141.97824,1.2927518e-05 608,1.6693596,220.01883,28.655361,150.91632,1.0039676e-05 608,514.336,238.18542,91.33435,194.30853,6.1003107e-06 608,502.89682,4.5732064,44.037323,49.743996,8.961315e-09 608,476.70688,5.18403,44.63626,54.48687,2.3711855e-09 608,1.9327475,11.466967,32.737965,77.15107,9.628631e-11 609,543.2672,209.2953,23.987305,49.29283,99.13424 609,484.87997,201.29301,24.001404,48.047226,93.75653 609,467.1844,204.1215,22.938324,49.343246,66.52388 609,6.1595917,178.90823,45.26502,73.47836,0.7509735 609,81.8494,197.06392,24.873215,46.58322,0.36869803 609,461.44855,190.98305,47.723755,91.86528,0.0195349 609,399.60486,199.32698,25.49533,46.189255,0.013107754 609,53.768764,173.77715,31.803303,53.680725,0.0029802574 609,621.49835,177.91594,17.648315,56.931595,0.0025071187 609,407.76733,207.22833,36.47528,68.77881,0.0024197057 609,2.5755959,200.00815,20.31124,48.396683,0.0016944718 609,612.32227,235.47652,26.824402,156.27849,0.0006993219 609,608.99927,126.70771,30.026733,136.36456,0.00051224465 609,607.42804,432.36884,31.718628,75.43155,0.00025308004 609,4.6292872,166.50528,54.52031,220.71552,0.0001190602 609,526.6195,181.87389,70.31439,98.04863,0.0001101043 609,610.79895,23.003569,28.347717,144.30247,6.519834e-05 609,1.003488,211.52583,19.954773,159.70909,3.5498546e-05 609,587.53503,324.68195,51.553284,165.14343,2.9859322e-05 609,459.33606,155.13506,86.73834,184.07668,2.3811881e-05 609,495.56464,126.757935,140.02142,231.46204,2.063236e-05 609,503.9414,76.05594,25.621826,56.861847,1.1105704e-05 609,1.2195777,323.2868,19.360058,132.5615,1.0019398e-05 609,3.4842563,329.8608,57.49654,152.4219,4.121753e-06 609,1.6483188,393.57776,28.48241,104.07117,1.975633e-06 609,590.5935,6.375335,45.28778,51.40138,1.3513721e-06 609,379.5672,42.783432,43.6174,128.35674,8.790758e-08 609,1.7250098,7.853438,32.37196,79.8835,2.3999969e-09 609,393.97305,5.389237,44.620148,47.64223,1.9429752e-10 609,369.33078,2.6019614,42.491974,47.518593,5.169328e-12 610,518.3728,201.69719,25.221924,55.436996,99.94248 610,541.43787,198.66142,25.41034,58.431778,99.92015 610,8.601661,199.98665,24.122574,49.583954,17.987534 610,483.19308,199.9647,36.762665,88.30519,7.6295853 610,20.727068,202.78952,26.681894,50.78447,1.0044864 610,359.2731,180.77864,37.164276,57.850266,0.015310154 610,500.8464,177.18088,59.783783,100.36911,0.011858901 610,3.9450781,157.46373,46.406338,103.296585,0.004673564 610,622.47095,213.48073,16.67572,53.248398,0.0013325488 610,2.2985475,190.02446,28.698765,165.19008,0.00093590806 610,608.69617,81.84848,30.4505,139.87656,0.0007794184 610,487.8899,128.83846,137.04626,227.77394,0.00051518704 610,49.566036,177.39645,50.029385,69.831604,0.00035295094 610,612.5994,192.43324,26.547241,115.1288,0.00034646053 610,611.0909,366.46323,28.055786,133.85965,0.00017398346 610,611.2527,270.33984,27.893982,135.9913,0.00012626935 610,5.7774773,131.89302,98.30199,213.33583,3.9103368e-05 610,509.40793,74.81856,40.309235,104.26781,2.1092774e-05 610,0.95997643,281.05573,19.013933,142.21317,1.9349101e-05 610,1.5464267,85.21468,20.86853,164.92328,9.535336e-06 610,1.5250252,350.7246,32.308487,137.8558,5.189942e-06 610,1.0862029,443.15714,21.92364,60.08362,3.7917087e-06 610,584.7765,12.528536,54.14673,124.812454,2.535931e-06 610,487.90463,27.422215,83.76016,240.65933,2.313841e-06 610,484.7269,36.707916,38.799774,101.40236,1.3329764e-06 610,358.9484,4.3159018,48.22708,59.388004,1.4735402e-07 610,335.94705,2.0085027,43.71472,52.92795,2.113955e-08 610,537.93964,6.3233385,44.252747,54.194397,9.125119e-09 610,383.83932,2.8076336,45.95401,50.284405,5.875618e-09 610,564.0261,4.903364,44.657776,53.866737,4.072189e-09 610,0.7733073,4.5932975,17.375261,60.101772,1.2359876e-09 610,503.46616,3.3406007,45.199615,51.49435,5.78823e-10 611,595.22516,203.45386,37.27826,75.76984,99.929855 611,430.58264,198.04366,21.93576,49.094864,99.7647 611,475.966,206.7936,39.842773,79.05681,30.863363 611,621.98206,202.68571,17.164612,69.96623,18.14227 611,411.98404,196.48045,32.852753,70.20058,0.5812526 611,379.5908,183.0253,23.340942,50.146393,0.35246894 611,482.12616,196.36598,23.959106,46.694305,0.021813806 611,589.45514,171.80045,46.64673,214.72375,0.01061296 611,5.779792,182.45773,53.55357,64.16397,0.0012052123 611,605.84564,431.861,33.301025,70.90726,0.0011974402 611,426.3106,190.16696,41.19757,97.181946,0.0009181099 611,461.23215,162.8195,70.54227,153.93633,0.0007817893 611,610.10315,92.893555,29.043518,181.62607,0.00019550089 611,587.4062,329.70966,51.453247,168.61588,0.00018428439 611,155.5997,170.95816,36.291977,63.845306,0.0001795842 611,4.175145,167.13869,56.320835,233.94753,9.8165176e-05 611,1.9825603,176.91122,20.405878,85.54382,6.512495e-05 611,1.0996802,317.3153,17.82186,138.81137,2.4945737e-05 611,402.72025,152.54953,88.68121,181.4285,2.387127e-05 611,3.3460581,310.02826,57.355297,169.86163,1.6124131e-05 611,477.1712,97.55423,38.429688,84.821014,1.3764972e-05 611,0.9235246,268.16208,18.53594,80.3389,8.07274e-06 611,546.9546,423.42203,86.77069,76.114746,7.444223e-06 611,0.88986003,420.8834,16.032915,80.970276,5.7309853e-06 611,18.47338,134.41951,100.66947,210.95589,2.382873e-06 611,600.55963,4.1570706,38.277344,64.25732,4.74703e-07 611,2.5925148,17.349411,55.699078,117.12784,1.1427317e-08 611,483.18298,5.309478,43.625854,48.84618,1.6668743e-09 611,510.31277,4.8121386,44.591583,49.62501,3.8828923e-10 611,537.9412,3.5114813,46.77423,47.54865,2.224243e-11 611,456.64682,2.9839308,43.787872,48.092064,1.6532765e-11 611,408.1695,0.7176774,45.794952,50.790325,1.3705814e-13 612,526.8059,205.14484,27.143738,52.493988,99.95312 612,450.97604,187.49358,26.929138,64.05672,87.009476 612,142.3606,170.108,35.320557,51.212784,0.31639317 612,458.813,73.21606,25.947754,67.555504,0.15369101 612,608.8554,204.89014,30.247498,64.414856,0.11688499 612,477.81638,76.2476,26.40561,67.712364,0.007899743 612,20.643059,194.57024,40.988422,67.39436,0.0038738344 612,476.64886,97.78519,39.148132,153.97758,0.0034048152 612,600.24835,172.67725,38.702454,190.7547,0.002392102 612,513.0237,177.5473,63.10034,96.52652,0.0020295775 612,543.2443,174.34302,24.913391,51.08339,0.0008467297 612,450.17172,58.86125,40.522522,150.04384,0.00046804931 612,59.438896,185.46823,35.9364,66.556,0.0004381046 612,603.0521,21.627361,36.094543,102.926056,0.00043666718 612,606.45685,433.70816,32.68982,69.946655,0.00038060956 612,1.422168,181.39284,19.043623,115.8672,0.00033002734 612,499.27695,160.54187,30.635406,71.32538,0.0003155493 612,587.9427,318.56052,50.778748,180.08667,0.0001949061 612,420.92252,121.292076,89.96384,198.13037,0.00012143611 612,607.7158,65.499596,31.430847,188.28113,8.094895e-05 612,475.47137,119.95099,159.52496,238.42133,3.8824932e-05 612,614.4075,0.0,24.739197,45.47575,1.9721247e-05 612,493.93158,212.18004,87.487,217.54857,1.5748872e-05 612,364.32208,426.17657,74.94388,71.964935,8.131867e-06 612,3.5482926,143.0167,59.873016,198.17621,7.740266e-06 612,0.76171225,296.33517,17.888966,132.65845,7.389829e-06 612,2.1761043,96.2775,31.088621,171.43073,5.509858e-06 612,308.3226,444.07663,42.297607,55.800934,3.2169628e-06 612,271.38065,399.54456,115.09198,94.40323,1.8721478e-06 612,5.0075846,354.93387,79.241066,126.24802,1.8111178e-06 612,282.06796,445.16855,45.193726,56.29178,1.3755781e-06 612,0.9476579,421.42053,16.70122,78.93475,1.3527545e-06 612,228.64835,425.21402,76.24048,73.5459,1.308137e-06 612,396.58545,1.2366683,43.145172,52.78817,6.992313e-08 612,537.03516,4.2951903,45.300537,47.38504,1.7277902e-08 612,1.6091814,11.656038,34.04824,74.26838,4.1245305e-09 612,510.40527,3.4639585,45.233826,50.110718,3.916619e-09 612,419.6242,4.117627,47.578003,59.620403,4.6025259e-10 612,473.80432,3.8981805,46.09784,57.361572,3.6755057e-10 612,448.32883,1.7173079,45.98758,64.13974,5.5302166e-11 613,572.2394,249.39081,31.357788,64.80646,99.96053 613,474.3709,234.61131,28.560822,64.50374,99.93803 613,526.2529,247.5661,41.29254,115.62396,0.19684735 613,610.8046,237.20448,28.284973,150.06749,0.07428398 613,128.96187,231.00287,26.267471,48.918457,0.05036009 613,624.44006,337.5396,14.706604,46.02176,0.008956234 613,488.19412,219.53555,38.183624,72.85791,0.0048505887 613,552.13336,217.44077,71.13043,146.79218,0.0039823027 613,458.82855,179.24402,68.97064,169.59012,0.0007385921 613,607.4692,105.422905,31.67749,73.50312,0.000301367 613,611.26605,406.193,27.880615,100.80942,0.00015261958 613,583.1946,45.222942,54.33441,266.90573,7.468791e-05 613,608.72894,0.0,30.417725,100.236176,7.1563896e-05 613,497.22757,79.12942,131.77902,276.68118,5.9321548e-05 613,615.69147,141.44165,23.4552,97.640335,5.9214843e-05 613,0.94500166,236.7012,18.746416,133.0029,4.3530323e-05 613,1.5688632,298.3279,30.967953,179.66815,1.930737e-05 613,568.6924,338.4989,70.158325,153.44992,1.67351e-05 613,551.50867,35.35441,42.677063,107.383385,1.3350326e-05 613,446.66406,116.82714,36.656433,79.926155,8.899447e-06 613,0.9885531,418.65253,16.730951,82.20093,7.58196e-06 613,521.63983,103.172646,45.346863,180.98569,7.0087167e-06 613,3.5228224,395.15295,56.31137,97.48581,6.86036e-06 613,2.6880047,147.51993,59.291107,211.28534,4.595973e-06 613,411.53363,302.4004,79.52353,181.60425,3.18635e-06 613,470.84845,136.77525,25.245514,59.98033,2.8392847e-06 613,591.1726,1.5904769,38.067688,45.381855,2.79421e-06 613,573.72174,441.04178,45.854553,67.87741,1.7543714e-06 613,493.7951,427.1576,74.36438,72.57608,1.6199e-06 613,566.6424,3.8315122,45.031006,54.919506,1.3033986e-08 613,1.397456,14.206065,34.538994,69.25161,1.1171165e-08 613,503.8096,9.404838,42.637054,47.997135,3.0874228e-09 613,477.2186,2.4046664,43.46646,54.11597,7.656818e-10 613,530.8723,9.197311,46.106567,52.1637,2.733697e-10 614,500.28888,207.22073,32.43396,70.84213,99.94498 614,110.85831,201.2071,30.490387,54.714066,0.04481477 614,623.0523,193.52014,16.09436,54.037476,0.033895183 614,612.38324,458.40292,26.763428,51.96985,0.00792115 614,543.10297,200.04256,22.308899,45.688965,0.00744246 614,593.9461,405.36545,44.605103,105.78122,0.0022583015 614,57.125015,174.01517,27.206161,56.317154,0.0016003387 614,613.55054,175.4343,25.59613,117.23694,0.0009872484 614,620.8439,75.903,18.302795,54.657135,0.00088587496 614,621.42236,353.02002,17.724304,53.146057,0.0007509819 614,522.5726,213.03922,25.531372,52.36383,0.0007061315 614,485.2371,158.59987,68.62332,151.8221,0.00043788235 614,585.4896,253.8747,52.828125,237.98642,0.00032831173 614,609.43884,72.77503,29.707825,169.0481,0.00023876375 614,540.03937,421.8863,80.87384,82.03018,4.217615e-05 614,3.005249,109.211754,62.391808,203.4884,3.282052e-05 614,0.83597493,309.82416,18.498362,76.965576,3.040791e-05 614,444.9579,391.55942,130.58313,107.48886,2.6748325e-05 614,1.1338631,424.85123,17.057592,78.42786,1.7787057e-05 614,0.9221566,232.0287,21.159029,113.33412,1.35587015e-05 614,3.5387566,318.0866,57.63601,172.06528,1.3136408e-05 614,479.1538,454.8186,43.819702,52.22937,8.476214e-06 614,1.5570093,136.83763,19.809978,122.769455,8.026526e-06 614,513.99414,444.33908,44.49646,55.75128,5.4717157e-06 614,4.959805,432.06363,79.482635,69.7543,5.102905e-06 614,444.73663,445.96423,47.079163,58.286285,2.8846846e-06 614,408.4008,149.59592,80.284485,148.52417,2.406863e-06 614,612.41895,0.0,26.727722,71.01082,1.8343552e-06 614,418.2847,446.3911,42.045624,56.217804,1.474092e-06 614,351.5809,428.0089,73.86777,73.493225,9.594808e-07 614,201.75798,430.82385,73.67076,73.57138,9.571667e-07 614,52.82401,430.79523,79.25256,72.20676,7.169189e-07 614,310.74426,431.14117,73.98868,71.86545,7.1156643e-07 614,161.44728,431.77274,74.00119,71.399475,7.055847e-07 614,256.5502,431.59253,73.641754,72.22739,7.0211036e-07 614,99.71649,430.7867,73.56265,71.66763,6.0943535e-07 614,1.5180453,15.311029,35.142418,69.38844,3.3450576e-08 615,558.7174,218.2634,36.458862,84.5773,99.97638 615,460.1683,204.47157,21.973938,46.51573,99.65928 615,39.63666,168.87743,38.18764,77.00719,0.42367378 615,586.48517,219.35144,23.999512,49.466858,0.03714481 615,96.7802,208.48961,26.939415,51.763016,0.0035719757 615,543.5382,188.67053,74.35712,146.80902,0.0024862732 615,3.55389,152.77303,40.607616,73.867584,0.0015190708 615,617.1359,228.44766,22.010742,78.52536,0.0012449288 615,610.09863,136.32352,29.002686,143.73648,0.00064949633 615,620.8494,78.27647,18.297241,52.927574,0.0006104587 615,611.52527,372.70462,27.621399,129.51288,0.00026852498 615,617.62103,335.6145,21.525635,82.11685,0.00023621715 615,587.4469,170.6252,50.68042,200.30199,0.00022539182 615,532.0374,145.43355,37.84497,87.59265,0.00019560587 615,3.15069,106.9662,58.482384,203.56801,7.522325e-05 615,0.8578939,309.60135,18.417334,75.74878,6.404665e-05 615,445.75757,173.50763,57.230713,101.29083,4.8360907e-05 615,1.4988973,157.6145,19.329544,125.85077,4.1218165e-05 615,609.1671,4.6460547,29.979553,149.61012,3.7274032e-05 615,1.2829777,330.79172,28.507908,143.26028,2.9864847e-05 615,288.29007,182.43323,41.416077,124.16049,1.666229e-05 615,1.6945883,179.70467,34.140347,204.42311,1.4766563e-05 615,0.8924317,423.80096,16.510313,77.88165,1.1759071e-05 615,614.2807,0.0,24.865967,46.343765,1.074408e-05 615,3.3769743,397.87357,56.296307,97.103,8.386272e-06 615,553.35474,148.61983,19.529236,46.561554,1.5019793e-06 615,414.7349,125.39452,140.43265,220.3675,1.2202623e-06 615,0.65330285,12.785609,10.781525,78.44125,8.713634e-08 615,1.4952979,15.9327965,35.52255,70.02295,4.7424752e-08 616,523.0833,213.35371,26.788574,55.47484,99.20013 616,360.26843,208.76428,26.211975,46.300095,0.007979314 616,117.4818,211.96469,25.751175,46.050537,0.004220344 616,47.285088,198.98743,42.103516,65.29422,0.0038756528 616,15.1633,160.05418,41.40359,90.23015,0.0018372795 616,616.8297,231.79881,22.316956,78.65587,0.0016678565 616,599.3684,83.74985,38.888123,197.12155,0.001441113 616,622.57544,183.11015,16.571228,52.91574,0.0011659163 616,415.75522,184.94766,42.884857,90.62366,0.0007125457 616,508.0918,189.33575,63.789185,98.413086,0.0002287631 616,3.6011703,230.57912,57.503365,246.52162,0.00020405305 616,602.0693,219.66707,37.077393,207.78206,0.00017621303 616,1.6335987,207.2099,17.519697,70.3439,0.00013206415 616,616.62067,329.15878,22.526001,86.51459,0.00012973206 616,611.5407,359.53568,27.605957,142.10214,0.00012767874 616,1.1736052,316.31735,19.36738,136.44693,0.00012496121 616,24.22866,131.86928,66.77253,152.6143,0.000104561055 616,614.7198,62.656406,24.42688,88.24333,8.667683e-05 616,0.99868166,412.05432,18.290222,72.78131,5.8322927e-05 616,614.83905,0.0,24.307617,45.194324,4.383426e-05 616,1.535844,208.15967,28.851578,151.6478,3.908085e-05 616,44.14515,145.26987,30.09417,58.809418,3.460906e-05 616,401.24506,143.05415,91.423096,206.87401,6.497129e-06 616,3.0410402,427.83066,53.422096,70.954865,5.255318e-06 616,475.0726,131.03673,144.6459,231.7664,5.0560525e-06 616,1.8080493,95.12336,28.643894,153.21655,4.4699323e-06 616,276.53986,221.50714,76.34683,206.77213,3.0684766e-06 616,586.0741,10.814024,53.07257,127.62871,8.0211356e-07 616,0.67982095,12.919339,10.872502,78.84624,8.6854264e-08 616,2.882103,20.16209,54.05413,109.11075,6.76045e-08 617,453.38937,211.2102,24.974426,48.76834,99.67293 617,313.30127,215.38835,33.389404,69.84004,0.0052753696 617,620.9694,218.29836,18.177246,64.10118,0.0024997534 617,592.17444,212.76411,30.818481,51.452652,0.0014118335 617,571.6057,90.922424,64.79303,170.53656,0.0006644979 617,532.71295,95.313934,37.51593,69.805084,0.0005975688 617,599.5231,163.5623,39.171814,180.71892,0.0005201148 617,615.96277,154.48306,23.183899,94.756134,0.0005167134 617,1.5536337,225.33829,17.807243,71.20108,0.00045986526 617,438.00653,173.33867,59.053833,110.23143,0.00038210105 617,611.3549,367.94656,27.791748,132.54971,0.00034447288 617,616.6365,242.62083,22.510193,90.57088,0.00030491006 617,421.959,246.66357,22.94928,49.25708,0.00018737395 617,616.72186,323.43317,22.424805,94.14459,0.00013657843 617,615.37573,102.199036,23.770935,88.71211,9.848738e-05 617,2.058698,222.57314,31.311499,167.36223,6.863422e-05 617,1.0658699,349.09735,19.215233,130.89078,3.9114817e-05 617,0.824126,268.45688,18.773323,85.793915,3.2783668e-05 617,483.47906,124.12473,25.2995,59.896706,2.7314309e-05 617,3.4577718,143.16928,59.949562,201.00613,2.1572228e-05 617,490.01474,103.51762,38.608246,71.18745,1.8637686e-05 617,1.0840333,319.9035,17.97835,73.14685,1.4784852e-05 617,477.35706,154.55809,34.125,78.15918,1.46621305e-05 617,610.6994,1.8887794,28.447266,84.70186,1.3769621e-05 617,3.4909148,343.53458,57.65367,144.06415,1.21890325e-05 617,406.837,129.62257,141.78293,217.77275,7.2656776e-06 617,1.682352,417.65143,35.45576,81.90796,5.9489926e-06 617,1.3188151,152.6047,20.048223,95.0542,5.2162013e-06 617,566.66235,19.285788,72.42926,148.55586,2.3395266e-06 617,17.739141,431.35422,78.54596,69.30328,1.535224e-06 617,277.89502,398.32568,112.64102,99.999176,1.3586293e-06 617,0.92141116,50.70952,12.088093,144.2633,1.340784e-06 617,352.28543,432.48148,73.64542,68.65958,9.917333e-07 617,256.76538,433.18607,72.41525,68.06186,8.0518856e-07 617,79.14836,429.68802,71.92769,70.91907,4.577442e-07 617,2.592557,18.148138,55.135803,120.74535,1.9539712e-07 617,0.6910999,11.576029,10.907369,81.77702,5.9580714e-08 617,585.73236,0.30040365,43.647278,45.302624,1.28786235e-08 617,524.5915,0.7439551,46.40204,53.82057,4.6394354e-11 618,612.3859,211.84921,24.804565,51.79245,16.280834 618,496.28284,213.57597,23.73108,49.33232,1.6126583 618,462.67783,206.13533,24.680939,49.690903,0.17059882 618,79.368774,208.29248,27.085014,49.054657,0.10279009 618,601.6896,121.622116,36.184753,176.52455,0.0029696496 618,602.9303,212.63055,35.997192,215.01962,0.00041381564 618,616.665,226.16154,22.48169,95.0204,0.00039779878 618,395.63312,224.84917,36.254486,61.59755,0.0003911492 618,538.05927,120.09526,27.435364,59.472015,0.00037727904 618,600.96423,2.8836687,37.819214,84.97548,0.00027293083 618,611.6762,377.80096,27.470459,122.42926,0.0002644441 618,616.9086,293.29395,22.238037,82.00784,0.00014683585 618,1.3674423,219.14868,18.84922,70.569824,0.00010607627 618,616.1006,94.68722,23.046082,90.261375,6.284263e-05 618,615.3515,41.62949,23.795166,89.9476,5.388477e-05 618,0.8208195,263.41635,18.799597,83.257935,4.702156e-05 618,3.7156267,212.49493,56.996773,217.8404,4.6178262e-05 618,1.1517457,304.89987,18.143047,135.17877,2.450672e-05 618,2.1867871,118.33602,32.996136,181.30612,1.755343e-05 618,0.87643635,386.70642,18.397392,110.6488,1.3097128e-05 618,1.1220821,165.1746,13.794244,58.046005,1.1863195e-05 618,3.0616245,390.56778,56.528023,103.49774,4.191887e-06 618,447.55804,63.055313,43.379578,108.06262,1.8309645e-06 618,563.72473,0.0,75.421936,228.46907,4.341049e-07 618,0.6744865,13.359434,10.1009035,79.402824,6.059543e-08 618,2.8736508,21.817719,55.33969,110.10431,5.120372e-08 618,441.94974,29.783424,85.22897,197.39871,1.3869387e-09 618,575.00415,0.0,44.26013,53.608353,2.2369894e-11 619,567.53156,211.90959,30.754272,56.87053,99.774925 619,584.81757,206.4967,30.751404,64.65924,84.304535 619,5.8542833,215.37009,23.570347,48.913605,1.4013842 619,559.4048,192.63672,71.209595,99.132965,0.040426638 619,603.9552,113.972244,30.833557,67.74547,0.03498918 619,0.73089725,219.38855,12.05778,46.910248,0.021080403 619,489.09335,223.97424,34.498505,73.81528,0.017015738 619,622.59174,118.30341,16.554932,47.404503,0.007576208 619,326.9764,208.78802,22.839172,50.467773,0.006070296 619,611.57416,217.304,27.57251,143.45784,0.0031549348 619,539.1951,134.82185,31.522827,87.31601,0.0015517357 619,598.99493,79.60753,38.80078,197.13002,0.0015258876 619,1.7901539,148.9393,36.353535,167.67679,0.001505395 619,617.2087,194.2943,21.794128,74.24928,0.0013474695 619,521.9268,129.04356,113.280396,228.30257,0.00045616963 619,608.1647,436.54684,30.981995,66.065735,0.00022050222 619,553.472,130.64078,23.094788,56.07921,0.0001922705 619,600.6542,310.0411,38.492493,189.22015,0.0001367596 619,519.11646,133.8721,34.46881,94.47351,8.523714e-05 619,1.6963339,227.96768,31.744244,209.78046,7.289997e-05 619,1.0242758,342.5283,17.517147,130.1463,2.1180864e-05 619,1.4851213,73.88991,19.54933,149.62332,7.902267e-06 619,87.43424,173.27466,63.213936,101.21997,7.071694e-06 619,3.4200635,331.24506,57.89066,149.36432,4.828276e-06 619,595.76056,5.0418,43.38611,85.33054,4.2899933e-06 619,1.7389014,414.17426,35.066444,84.49216,1.8746564e-06 619,48.962006,132.1393,152.77184,218.90489,7.437124e-07 619,570.43884,1.564686,47.93091,48.687687,1.826543e-08 619,1.6861296,13.068815,35.240284,78.02532,1.4060605e-09 619,472.7437,2.1841798,44.6615,45.97286,9.700997e-12 620,39.623642,209.38858,34.27861,53.67096,99.24094 620,416.6794,218.73802,23.70523,48.144913,0.31139353 620,499.87695,205.36006,39.14679,76.607925,0.074052885 620,622.46936,202.37427,16.677307,51.52121,0.008490701 620,548.43835,116.33081,27.115845,64.980835,0.0059124758 620,599.15497,113.384155,39.58252,86.82002,0.0056936406 620,622.1257,110.008896,17.020996,60.93187,0.004184337 620,612.0724,176.57811,27.07428,129.69426,0.0020242827 620,620.66437,163.48091,18.4823,65.57675,0.0010005827 620,589.12103,126.19491,48.654724,234.19815,0.00084192096 620,611.35974,262.84586,27.786926,108.79898,0.00043108704 620,404.37396,198.7444,42.92694,95.22218,0.00036367794 620,530.1295,123.55043,25.377563,62.688828,0.00028650544 620,518.206,112.6162,42.147156,129.26068,0.00015694254 620,608.2941,436.14026,30.85254,68.76715,0.00011386574 620,1.2516422,164.128,19.891445,94.81688,0.00010370513 620,22.034477,180.3372,72.22543,109.831345,4.8596696e-05 620,2.8338802,160.78542,56.78034,228.65031,4.1204174e-05 620,479.14273,143.5027,99.88498,218.37059,4.0394883e-05 620,0.94131756,219.54391,18.180222,70.930725,3.9986917e-05 620,610.47614,6.3325133,28.670532,154.46852,3.056584e-05 620,1.0955571,346.97968,17.008633,133.1865,2.4994171e-05 620,0.70594645,294.93692,18.556757,80.546875,2.1765736e-05 620,375.4315,161.84286,107.75836,200.04578,1.5704254e-05 620,3.5370247,334.6871,56.82044,147.33505,7.494656e-06 620,571.3021,359.42923,67.84454,133.21103,4.37949e-06 620,495.67606,81.87113,41.466034,141.30716,3.279592e-06 620,1.6234766,414.56342,34.76807,82.64609,2.638913e-06 620,576.6492,3.707243,60.907654,46.693054,3.6175408e-07 620,2.2061052,15.917891,55.363895,121.507324,1.8752909e-08 620,552.0016,4.5622606,41.752808,45.050484,1.432059e-10 621,287.30865,184.47517,26.02829,53.753525,0.27608633 621,441.0858,217.01163,24.076416,49.948486,0.023160117 621,499.2516,216.08434,41.94757,97.51744,0.014383516 621,609.40106,64.099686,28.29309,66.10559,0.013489304 621,503.7333,220.59433,25.326996,45.83734,0.013292325 621,607.12256,121.87273,32.02411,77.75395,0.012907221 621,538.6387,85.614075,24.90155,52.16246,0.006708828 621,618.0933,197.73756,21.053345,74.973434,0.0008194962 621,610.8035,224.10896,28.34314,138.76512,0.0006032275 621,58.18746,160.9295,36.494637,81.49298,0.000326536 621,598.382,99.578476,25.839233,57.61795,0.0002842075 621,587.155,59.463608,50.642822,186.09921,0.00027246145 621,434.11462,167.12311,57.465454,121.70676,0.00021794888 621,612.322,333.81174,26.824646,146.3294,0.00014280232 621,608.36395,435.74448,30.782715,69.00653,8.792357e-05 621,402.36713,173.32579,21.514343,48.25757,5.210245e-05 621,3.839209,183.51414,59.155308,222.74251,3.2024236e-05 621,358.37146,218.47939,39.015625,111.853745,3.1703406e-05 621,1.2099692,342.9247,19.496151,129.18588,2.464627e-05 621,386.04312,156.73767,41.33127,104.3356,2.0389845e-05 621,1.0991406,221.75615,18.229063,72.01753,2.0334386e-05 621,416.54312,126.904976,140.21732,224.99847,1.2833584e-05 621,602.62134,11.723526,36.520996,81.02245,5.121334e-06 621,466.04346,82.61882,42.8154,120.70999,4.343569e-06 621,484.7133,54.01689,34.30484,67.74001,4.2612305e-06 621,5.379808,353.92123,79.0096,133.0065,4.1926464e-06 621,390.31973,176.76149,20.921112,45.43843,3.962233e-06 621,1.4110584,142.08986,17.737154,123.3203,3.0690505e-06 621,1.8399805,419.16943,34.824165,79.42697,1.7317378e-06 621,311.22632,430.8531,73.8811,71.81061,8.1506056e-07 621,1.4284896,51.734818,28.484015,162.69342,6.7856675e-08 621,2.102352,23.70914,56.847443,102.09111,7.005486e-09 621,1.1331381,9.891231,19.58089,52.24378,2.43361e-09 622,502.89148,213.54234,27.79779,59.35347,80.26202 622,545.12366,219.11678,53.80298,116.81325,0.31427076 622,585.32574,206.69176,32.48053,62.00328,0.09886316 622,507.0949,245.46973,36.380554,69.87747,0.019210601 622,555.9328,223.98267,29.223022,58.313293,0.01802549 622,622.93677,223.34805,16.2099,52.146057,0.011103578 622,4.9770103,120.67758,59.161106,158.91653,0.005856423 622,155.76968,215.2763,21.552689,45.72238,0.0036653276 622,442.81137,225.60834,34.255005,62.38983,0.0029358622 622,611.6148,194.54875,27.53186,112.29372,0.0013133845 622,1.3596412,212.79716,18.525293,74.287674,0.0006429355 622,587.2332,129.5125,48.522766,212.9009,0.0005216089 622,579.6652,128.09038,23.309753,49.464676,0.00043150247 622,409.75574,200.67557,22.441864,47.740555,0.00031993055 622,602.6649,227.54793,35.291992,193.0713,0.00029158004 622,488.13168,177.37375,70.14719,161.63043,0.00027100556 622,561.079,48.341,34.859314,84.4272,0.00024111789 622,537.69855,176.74477,38.894043,96.64967,0.00017339278 622,611.0715,91.58876,28.075195,143.49825,0.00012038278 622,611.7463,350.57953,27.40039,144.30554,0.00010817009 622,443.5862,135.16805,42.56485,134.70604,7.1946706e-05 622,610.16077,17.116003,28.967407,127.456856,6.382464e-05 622,1.4902141,134.93568,20.059237,104.61029,5.8800993e-05 622,1.9133,198.67128,32.104317,186.04283,3.4764664e-05 622,560.0756,111.75018,52.48462,133.98396,2.796818e-05 622,607.0673,5.022372,31.716187,53.10068,2.6185824e-05 622,456.18057,144.01828,24.856415,52.107376,2.4668092e-05 622,0.99195397,342.514,18.139965,129.75677,1.7672755e-05 622,3.5802555,341.8788,57.28209,140.72928,4.6726964e-06 622,1.7096859,414.61987,34.542904,81.920044,2.332273e-06 622,520.56323,40.632824,35.809998,78.24632,8.9696516e-07 622,536.37384,18.543562,95.875305,183.9367,6.144531e-07 622,2.5715399,19.692226,55.810127,120.69565,3.4865987e-08 622,578.9787,4.4229183,45.709656,48.98848,9.729698e-09 623,582.5402,215.39291,28.318481,61.71701,97.102615 623,565.6025,202.94809,53.740295,122.9491,0.44384846 623,566.14777,214.40997,24.092102,61.327545,0.029999163 623,594.6766,52.90515,37.08246,119.1485,0.029286286 623,577.3543,92.69576,29.723694,60.79299,0.0082525015 623,582.99884,57.543438,53.37207,272.70593,0.004349517 623,617.17786,227.06735,21.691101,75.554596,0.0022706063 623,619.3422,87.110695,19.804443,67.11123,0.0012691339 623,609.2748,144.45229,29.173767,138.25414,0.0010364153 623,608.4754,322.54678,30.671265,156.78522,0.00071745383 623,4.0073147,102.94842,59.430176,222.043,0.00016004953 623,613.50714,16.36769,25.639526,108.22446,8.216045e-05 623,511.14252,119.58589,24.16156,50.058716,6.50447e-05 623,608.5166,435.74893,30.630066,69.560455,6.034348e-05 623,444.46698,165.18703,34.37268,75.79167,4.5788413e-05 623,598.9401,2.143698,40.013,51.3187,3.432025e-05 623,1.6826465,129.8493,20.220905,149.6886,2.9609051e-05 623,1.0680095,213.2462,17.129234,144.31636,2.7862334e-05 623,515.8223,112.04925,39.64319,100.080605,2.2088687e-05 623,3.6461573,224.09839,58.580162,248.04987,1.9397248e-05 623,1.1262573,313.9999,19.393076,135.49655,1.3742006e-05 623,492.695,117.360344,42.814697,125.71357,1.0217481e-05 623,1.1603068,393.39822,17.959541,103.73898,9.472001e-06 623,566.2355,100.76549,48.899597,138.48752,9.243851e-06 623,3.752466,395.74527,56.19303,98.012024,2.4110948e-06 623,1.7277694,60.993973,21.031517,105.5919,6.38494e-07 623,2.548475,20.905521,55.684387,115.391464,1.8891665e-08 623,1.5000798,8.225853,28.115194,57.846542,2.44956e-09 623,415.44073,1.8587923,45.159912,49.55763,7.0051376e-13 624,92.84526,214.88744,21.655655,45.29738,0.27787903 624,477.86688,218.76837,26.660736,45.61154,0.1278834 624,67.955734,206.72008,25.33567,47.971725,0.07917885 624,606.35205,154.7776,30.92743,72.556046,0.053951975 624,468.36356,212.14563,41.594543,105.43149,0.0051360205 624,621.06903,185.01515,18.077637,56.92839,0.0027625985 624,603.62415,178.89975,34.844666,154.81772,0.0018659342 624,107.63831,213.59027,20.697762,46.08618,0.0016840986 624,616.4691,290.21884,22.677551,85.89014,0.0007187002 624,1.5417244,230.53323,19.072542,79.08145,0.0004555427 624,587.77325,33.169388,49.789856,228.36653,0.00042027974 624,602.5022,296.71008,36.64447,193.71097,0.00015779 624,2.3612428,251.2348,26.40913,151.86603,7.364612e-05 624,608.8762,434.4053,30.270447,69.63919,6.936191e-05 624,3.9612029,167.75241,57.34406,221.26758,6.2828185e-05 624,1.6804435,110.82311,20.956175,163.32101,4.5219585e-05 624,3.535796,321.63757,56.37662,160.37656,3.4537214e-05 624,1.1345866,355.942,19.852943,113.57202,3.016667e-05 624,388.9475,160.17612,82.66214,157.49963,2.6936474e-05 624,610.3487,7.5205016,28.797974,137.03354,2.2749555e-05 624,1.7650359,414.19043,34.648132,82.773865,2.9943099e-06 624,1.7386532,49.363445,19.834951,128.57396,2.2991035e-06 624,593.1263,2.919839,40.38446,56.748055,7.7140277e-07 624,317.86813,431.52106,73.020935,71.846344,4.1753032e-07 624,277.31314,430.43018,72.93051,73.565735,3.5885265e-07 624,2.3919077,22.042858,57.501324,118.78824,1.6376377e-07 624,520.3144,4.8338413,45.513367,57.351303,1.5106774e-08 624,499.47235,2.264175,41.966858,49.376083,5.265481e-10 625,41.238758,215.09097,32.09495,51.621277,95.7858 625,489.44736,211.50233,36.398407,76.82268,0.011255144 625,612.08875,174.8338,26.774902,53.39514,0.0024892294 625,582.9962,12.911641,54.98468,115.67925,0.00057087134 625,548.8601,34.730682,30.070984,85.26741,0.0005466304 625,620.6338,52.51225,18.512878,57.5977,0.00051346445 625,600.7457,61.038765,37.80719,205.14236,0.00050447136 625,427.1368,206.54562,38.409668,68.290344,0.00022756786 625,602.5916,193.47575,36.39337,200.77428,0.00020390442 625,492.64896,114.33638,70.94614,186.76582,0.00016958562 625,575.63214,37.00778,18.465454,47.494152,8.408854e-05 625,611.9148,360.96796,27.231873,143.25873,6.8596266e-05 625,1.9754379,183.26416,33.44132,168.42755,4.4218017e-05 625,605.12305,0.64738935,34.02362,71.07088,3.76353e-05 625,3.2942042,246.248,57.20899,226.10915,3.2515953e-05 625,24.173141,165.20746,84.53703,170.17432,3.098288e-05 625,1.390686,139.43097,18.554096,79.74187,2.7257163e-05 625,1.1319067,327.74884,18.671814,133.7182,2.6133583e-05 625,1.1567302,224.40503,19.032667,74.28018,1.8965882e-05 625,1.0509326,418.2652,16.542604,80.40048,1.2347186e-05 625,181.9952,164.98105,103.287,203.35184,3.226937e-06 625,2.782648,423.4959,53.388435,73.63754,2.860451e-06 625,414.06537,166.3525,80.18085,154.05562,2.6149933e-06 625,3.5478613,52.923393,60.98669,235.90686,1.1346166e-06 625,452.09314,1.786429,46.042084,54.70254,4.8630426e-07 625,560.30634,13.439512,44.684265,148.96301,4.175311e-07 625,1.6182878,30.13351,18.075546,132.89967,1.3009206e-07 625,2.0767481,21.105274,59.32052,115.10892,1.05812724e-07 625,414.73026,1.7258366,45.84549,56.820896,7.879294e-08 625,570.66156,3.0680144,47.638977,65.90303,6.364826e-08 625,0.9431881,11.456755,11.297988,85.51123,1.776906e-08 625,529.7183,2.3556771,50.35547,56.808945,8.55571e-09 626,394.9082,219.90544,26.14264,48.429947,0.18816306 626,55.839664,214.65894,28.618435,50.371124,0.052884042 626,607.7721,161.82027,28.102417,60.046555,0.029362386 626,408.8651,222.13298,27.160614,45.206894,0.025324762 626,599.18317,122.96265,38.138855,166.2734,0.002092614 626,614.4482,351.47144,24.698486,89.812744,0.0014391065 626,593.8031,180.33951,24.64087,53.505127,0.001268466 626,596.0947,312.71362,42.902832,180.1518,0.0010064148 626,617.8554,226.23613,21.29126,78.46471,0.00083313516 626,601.4346,1.2233887,37.712097,68.30816,0.0007993952 626,598.96906,78.579575,36.167053,83.400345,0.000673143 626,1.5236988,192.87132,19.02194,77.83812,0.00025948172 626,621.71924,92.368195,17.42743,57.979584,0.000208105 626,2.0647104,186.41734,33.64761,164.56847,0.00019016537 626,611.94666,409.2239,27.200012,96.350006,0.00017332169 626,603.26526,207.40784,35.88141,175.59674,0.00014324875 626,616.3909,37.96827,22.755737,87.72426,8.641973e-05 626,2.8789616,242.86456,56.73793,224.0531,6.767487e-05 626,583.5087,0.93857425,55.63794,211.1617,2.5538086e-05 626,1.1836922,373.45517,17.54138,120.58682,1.607362e-05 626,446.0849,173.17128,57.894287,110.22423,1.3145669e-05 626,1.1698836,289.05276,19.118464,142.23792,9.961204e-06 626,1.4734392,70.67058,31.294914,169.25641,9.5291725e-06 626,3.5539958,395.3701,55.559597,95.93991,5.8255887e-06 626,417.97144,128.37093,137.68463,216.11732,1.527647e-06 626,571.1465,2.0849285,48.354675,66.33064,5.848543e-07 626,1.607793,21.985163,55.09486,111.86422,2.1253084e-07 626,0.8194499,40.346687,16.04759,136.7381,1.7403195e-07 626,0.99725914,9.143154,28.536602,59.148655,3.2242309e-09 626,544.5595,2.4830632,47.178833,60.530937,1.4815819e-09 627,521.2053,213.06169,27.934143,55.281387,99.93186 627,95.14328,217.51501,30.923752,50.33377,96.041794 627,607.6126,177.5683,25.341614,51.22702,0.06911409 627,448.39578,258.75015,26.18454,51.81305,0.021966876 627,557.6079,184.37146,22.823242,47.76912,0.015970636 627,601.0761,152.60698,36.164978,161.73088,0.006321418 627,609.85767,44.91497,27.293884,79.72641,0.005695786 627,624.16785,61.670742,14.978821,48.672268,0.0048007043 627,388.68103,223.62521,22.130493,45.4653,0.003254944 627,430.99673,219.28407,32.59488,60.81285,0.001922262 627,506.4462,186.30856,65.181915,103.5603,0.0018076351 627,602.4568,0.0,36.68988,77.05286,0.00035304052 627,615.8219,243.35768,23.324768,84.620285,0.00032443515 627,616.8451,301.6281,22.301575,89.35458,0.00027366978 627,3.1872919,142.96043,38.809666,109.74814,0.00024980804 627,4.5717793,202.58948,55.923286,213.03677,0.00019963853 627,611.9581,366.0024,27.188538,133.71005,0.00017203146 627,1.0647762,321.50494,19.579819,131.96521,7.657226e-05 627,1.0204859,237.106,20.407696,136.5374,7.0080074e-05 627,581.7568,0.0,57.19751,240.14824,3.4240675e-05 627,474.27948,137.24217,143.091,219.65257,1.2410381e-05 627,72.239426,173.76978,100.99808,201.28055,8.478995e-06 627,1.3035263,397.14017,28.632576,99.469025,7.330992e-06 627,5.835358,357.1743,78.229324,131.05655,6.474861e-06 627,563.25085,3.0229363,47.868713,55.39843,8.762145e-09 627,1.8516667,16.042116,55.595886,116.87277,7.76874e-09 627,540.87427,3.544271,43.87805,50.921906,4.184559e-11 627,518.7218,1.5516162,42.315857,47.59237,5.4405213e-12 628,435.7934,209.4546,23.730194,53.907333,95.97376 628,499.64627,200.69365,23.707916,52.28662,0.16244225 628,505.91315,200.53835,47.394714,115.41087,0.100809194 628,352.11966,203.83554,32.946045,75.42926,0.044804305 628,334.03702,193.00153,29.965057,63.04947,0.025707778 628,601.741,125.3681,37.298645,96.66719,0.015663518 628,575.1305,51.16144,61.04242,196.91838,0.014411552 628,546.39044,60.194378,19.547363,46.07432,0.0077950526 628,605.18494,314.5116,33.560425,70.22601,0.0061397264 628,516.4633,196.21219,29.967651,54.30417,0.0023256042 628,419.1434,182.97903,55.7312,102.40073,0.0013420371 628,620.93744,164.55672,18.209229,57.04001,0.0012566351 628,621.5303,199.8464,17.616394,50.235474,0.0009797806 628,623.6436,139.83656,15.503052,47.24022,0.00049370644 628,564.7291,47.719833,26.489136,58.275978,0.00040746998 628,611.4413,21.717073,27.705383,107.149704,0.00028775242 628,612.80554,336.9187,26.341125,146.93683,0.0001997425 628,613.1773,191.3294,25.96936,142.02869,0.00016453145 628,0.9459221,204.20131,21.068235,104.98244,0.00012145477 628,608.4277,439.2183,30.718994,66.17462,0.00011816206 628,595.0408,103.87291,32.510376,65.84769,0.000103378385 628,587.14825,237.71173,51.40741,215.93964,9.481704e-05 628,533.5685,27.600046,35.401978,87.94084,7.8766236e-05 628,1.1319491,342.47174,18.725904,134.89984,2.3744618e-05 628,3.9946795,182.44864,57.264072,232.03357,2.2892018e-05 628,0.8124634,253.85149,19.44993,145.49385,1.755661e-05 628,384.35962,130.70181,140.02155,229.20367,6.823311e-06 628,3.6558807,351.50616,58.12823,136.86969,5.3196595e-06 628,1.904668,422.0114,34.661285,77.99979,4.803804e-06 628,1.8934132,114.652466,28.511118,133.1828,1.885414e-06 628,591.43225,4.220534,42.083435,57.5241,2.9324642e-07 628,554.3847,15.250144,44.77417,129.46246,2.482738e-07 628,544.4874,3.5889683,44.777405,63.19816,2.2209395e-08 628,482.78778,3.562619,42.501648,48.230747,7.700936e-09 628,1.3068945,6.4384604,34.79828,82.232765,1.1539336e-10 628,423.32202,1.3174561,44.245758,46.782494,6.3857426e-11 628,452.93823,1.559777,46.986664,49.0685,4.800568e-11 629,542.9526,202.14616,35.21814,74.54906,3.6860292 629,557.6113,182.6016,32.18695,74.292206,0.09444553 629,534.9435,156.73294,66.14453,138.67706,0.027405538 629,386.18036,199.00119,36.7807,64.655365,0.017254325 629,436.0692,204.57802,34.089508,65.28664,0.0073274053 629,320.44946,197.7308,24.693054,50.10295,0.0035642243 629,522.9377,204.28482,22.960266,46.723343,0.002577391 629,620.6498,127.996956,18.496887,65.44633,0.0025105018 629,347.72897,193.44109,23.15982,49.537125,0.0015319618 629,622.3304,214.13316,16.816284,56.04695,0.0008674805 629,610.0338,143.11906,29.112854,119.372086,0.0006852344 629,618.0522,256.23526,21.094482,82.60156,0.0005306533 629,362.2004,193.65291,20.733429,45.13939,0.00037783643 629,531.9793,99.01739,37.392395,85.02071,0.00021096971 629,610.6494,352.96094,28.497253,149.70053,0.00021031662 629,1.7205844,203.12337,21.088654,105.1237,0.0001644466 629,586.14667,74.94881,51.869385,227.46733,0.00016314552 629,600.7951,240.45319,38.351562,200.815,6.511657e-05 629,4.888127,170.75505,56.483463,209.28975,4.6014164e-05 629,611.0704,5.3877087,28.076294,134.4319,2.0369982e-05 629,0.9817977,339.8934,17.465588,132.63489,1.5876012e-05 629,1.4636077,258.04407,27.272863,147.20776,9.787038e-06 629,2.1938844,121.37102,36.56678,164.95879,9.6726835e-06 629,555.606,419.98706,79.8598,80.82785,7.4605127e-06 629,127.2626,148.38594,97.331314,194.88887,5.3313815e-06 629,3.5081608,332.66922,57.375156,149.10458,4.8356296e-06 629,185.86438,443.3662,42.445755,54.38553,4.3442815e-06 629,1.5104476,415.55606,34.7585,83.741394,1.9433646e-06 629,415.5904,5.2191734,42.12143,47.58813,1.0189486e-07 629,390.7268,5.7468896,42.97592,49.1722,1.3065847e-08 629,1.7063917,8.401761,32.411396,74.95402,4.224834e-11 630,354.23447,192.77234,24.231415,52.68593,0.17706525 630,327.09863,191.49292,30.853851,57.337036,0.10212259 630,522.06616,179.08293,38.76892,142.10594,0.059159387 630,217.67773,189.8535,21.51091,45.11107,0.042332362 630,442.4394,209.60617,37.19098,70.47406,0.03598121 630,612.453,201.11346,26.693665,54.230453,0.01569062 630,606.8652,158.78754,25.881897,47.66652,0.0023911828 630,82.278404,174.48082,41.77816,79.606445,0.0022771552 630,377.3411,180.73953,33.831726,69.66196,0.001965453 630,573.5056,199.35374,33.73944,55.825455,0.0011115745 630,620.8528,143.63629,18.293884,53.523254,0.0010487532 630,190.33205,196.98138,20.975235,45.46019,0.00092072116 630,602.7986,141.40732,35.74829,137.74036,0.0009187862 630,593.0623,206.83029,28.95404,47.627213,0.0008348036 630,611.0408,207.68037,28.105896,159.10002,0.0004420041 630,407.7609,201.95822,25.895905,45.82184,0.00033000155 630,1.0946404,206.59702,18.98451,132.69919,0.0002189708 630,608.935,52.05737,30.21167,155.38615,0.00017248899 630,4.5908027,198.96524,54.697945,225.1063,0.00014139822 630,503.54074,175.00638,112.61221,197.01852,0.00010704433 630,601.4695,302.92157,37.677185,181.14981,8.102719e-05 630,53.511543,150.66042,112.60731,184.75172,3.7822618e-05 630,609.49915,435.886,29.647522,70.0611,2.8512193e-05 630,1.1598715,348.28375,20.262335,101.94559,1.3582282e-05 630,115.747215,147.1764,83.66683,153.2407,8.812691e-06 630,2.245428,137.48134,32.76364,154.3254,5.6096214e-06 630,584.5714,13.574161,54.160217,118.2312,4.5453057e-06 630,3.1472282,391.3342,56.881863,98.64874,1.9315137e-06 630,510.23517,2.8200164,42.05249,57.9334,3.411545e-09 630,1.3258284,5.848643,34.905552,85.91746,9.346859e-10 631,470.13913,176.75856,23.808014,49.660065,1.1092887 631,408.43924,159.44403,25.98288,59.330917,0.33306423 631,419.2314,161.61241,30.136139,80.54242,0.17045464 631,455.67346,165.65694,25.18863,46.714462,0.04537457 631,34.018948,149.89445,38.51739,83.425964,0.02393717 631,20.116322,163.86961,28.87775,53.434998,0.017810361 631,60.21508,183.21782,22.748772,57.08896,0.015353985 631,501.28198,180.70706,36.70758,97.592834,0.011488516 631,383.71893,160.10565,34.216644,70.569534,0.010338891 631,617.29877,185.30254,21.8479,88.26842,0.0041315453 631,616.96515,342.1697,22.181519,60.784058,0.004051776 631,184.1751,173.06932,21.460205,54.23738,0.0030853706 631,611.43427,109.20994,27.712402,120.58738,0.0016641926 631,602.0665,207.3212,36.891235,206.26257,0.0013774411 631,566.78577,172.74078,31.2182,61.386307,0.0006014767 631,624.9001,127.13688,14.246582,46.351692,0.00047979347 631,586.43195,33.07771,51.097473,228.59227,0.00046920328 631,534.9299,170.2087,20.634583,46.50534,0.00032606052 631,573.7812,426.68518,65.36548,78.01614,0.00017003469 631,1.1739006,191.80899,19.520273,132.9765,8.322722e-05 631,495.2427,60.065132,37.85666,97.02134,7.185674e-05 631,21.457413,95.39417,86.49145,161.08896,5.422056e-05 631,4.3820376,162.96373,56.6284,230.03831,3.892422e-05 631,606.9055,0.09318685,32.24115,75.85766,3.790777e-05 631,2.6219654,119.75901,35.32258,151.64536,1.7572154e-05 631,1.1417636,322.07242,18.176785,130.95941,1.3621664e-05 631,3.627549,340.93753,57.58532,142.215,4.1517596e-06 631,1.1796477,401.10385,26.545315,97.52106,3.7412206e-06 631,88.336784,125.19779,104.74009,210.3078,3.0348747e-06 631,479.0947,8.276524,76.94205,236.96013,2.1240358e-07 631,517.6235,5.324717,44.078247,51.215088,9.067726e-09 631,1.7888037,10.322468,33.2278,77.61084,1.5468014e-10 632,555.38214,211.76927,31.211975,55.77043,99.57734 632,97.55275,209.6091,27.429451,48.060028,96.71145 632,472.522,189.6805,34.233307,80.044815,22.920088 632,586.03345,202.26508,22.5531,54.308075,3.3286293 632,606.2009,207.32344,22.879028,54.462753,0.30074468 632,1.0266553,132.88953,49.756596,151.83228,0.09497743 632,450.0907,189.42259,38.284424,87.231125,0.08781704 632,416.75223,200.68616,27.067474,63.62378,0.08146227 632,423.1767,180.81142,43.268097,100.726,0.034708958 632,385.94193,211.96062,24.108582,52.11635,0.031751547 632,621.60956,207.0324,17.53711,53.969284,0.012328709 632,609.74756,195.85919,27.744568,133.85916,0.011368553 632,398.95474,206.16637,30.920074,66.07298,0.0053342185 632,540.48413,187.25974,69.99036,103.585205,0.0012860253 632,613.3483,16.33548,25.493896,85.666336,0.0008353349 632,615.54846,288.04684,23.598206,85.99124,0.0007175072 632,16.885971,212.27263,32.26711,61.326828,0.0006864443 632,1.4287192,190.97426,19.126822,87.26332,0.0005700934 632,74.48228,194.12584,27.325165,47.569427,0.0004393908 632,586.1532,218.36234,51.36505,201.819,0.0002882111 632,17.381052,148.71799,24.064005,57.38817,0.000259312 632,1.7489071,130.95506,21.240622,97.05974,0.000111845744 632,2.029188,204.41893,33.71113,206.92516,0.0001022274 632,608.304,436.87296,30.842651,71.0159,8.2940394e-05 632,611.8954,323.5338,27.251282,151.0664,6.619791e-05 632,510.315,128.87119,125.15753,226.74011,6.294082e-05 632,608.7067,67.92981,30.439941,180.66113,3.480029e-05 632,613.3298,0.0,25.816895,46.296764,2.6382142e-05 632,1.0912654,328.0805,19.099058,135.99826,2.2907436e-05 632,1.0086215,419.32684,16.728489,80.03839,8.949968e-06 632,70.141335,168.16963,101.87446,200.03386,4.430928e-06 632,3.4367871,394.29932,55.459713,96.563446,3.5617636e-06 632,3.2364748,71.97056,100.031525,266.96744,2.9614746e-06 632,572.43567,1.8840625,62.311768,58.046818,2.1172295e-06 632,493.5775,4.481491,42.62018,56.39198,1.7074964e-06 632,462.29385,3.9155958,44.692047,55.153534,6.7326596e-07 632,515.3084,6.9803405,47.126038,52.551933,1.7802516e-07 632,545.9151,6.1729345,41.918274,52.512444,1.0167549e-07 632,1.8802979,8.999668,32.19682,79.7014,4.6342552e-10 633,569.14685,149.20386,59.675415,162.80124,33.04354 633,51.0627,208.66617,37.577164,56.549896,21.828321 633,595.48926,204.57411,27.549744,68.559006,2.6197946 633,610.11566,197.12245,27.674377,72.86354,2.3665159 633,497.63074,187.39911,44.45691,95.972015,1.0399709 633,607.41895,62.060307,25.95105,47.890476,0.29019335 633,372.05524,187.10712,30.42929,56.566116,0.2054642 633,625.1039,69.50112,14.042786,45.566147,0.011501472 633,473.30157,124.4637,20.753174,47.375595,0.009955064 633,561.7832,171.5687,37.201477,102.114685,0.009737701 633,129.89433,191.51402,40.17299,57.519867,0.007662248 633,588.87146,25.606667,46.532288,96.94253,0.004056288 633,605.3255,80.99989,33.821167,204.95958,0.0038053866 633,505.3582,166.53014,30.269012,57.924744,0.0026120327 633,616.6822,233.00375,22.464478,95.21036,0.00227762 633,600.31165,188.07027,36.581543,190.32945,0.0016102347 633,551.96796,178.67093,26.240784,66.482925,0.0014016924 633,477.9937,139.0371,109.28699,198.8272,0.00038418197 633,12.968802,109.83293,76.22671,171.84618,0.00015243543 633,608.0371,438.39835,31.109558,68.6929,0.00011630749 633,0.83093184,213.17838,19.070898,146.20447,5.9967664e-05 633,606.91565,8.274805,32.207825,56.35607,5.6330475e-05 633,515.2887,30.325544,47.098633,107.088715,2.4901572e-05 633,1.1931975,398.94278,17.259342,98.765045,1.4544492e-05 633,3.8222396,217.74391,56.915302,237.69505,1.3373608e-05 633,1.8697054,99.81911,32.629086,175.28648,9.2441505e-06 633,1.0246118,306.19128,19.224524,140.07108,7.64688e-06 633,3.4189227,396.7747,55.483597,94.197876,3.2954124e-06 633,578.8838,8.354662,44.031982,50.198334,5.210898e-07 633,503.09726,12.963307,91.24051,227.93672,4.992782e-07 633,1.6642985,13.453728,34.086018,71.60728,1.1409567e-08 633,552.2095,3.956514,43.17572,52.46733,7.337108e-09 633,482.8875,0.24906413,46.44934,53.76499,3.3709102e-10 633,516.2218,0.0,45.122253,55.583164,1.0476589e-10 634,95.054276,196.13281,24.52967,48.62993,0.16119467 634,138.81761,194.88011,23.424362,45.75891,0.066985935 634,548.52356,205.68433,42.572693,111.24338,0.04612672 634,462.67038,221.22336,37.128845,92.999695,0.0071417037 634,622.86005,241.64821,16.286621,51.396988,0.005695286 634,553.70233,258.53915,22.777039,54.582245,0.0023495592 634,121.92576,200.61699,21.708305,45.393204,0.0016215609 634,611.4971,180.39157,27.400696,122.545166,0.0011829593 634,0.82117677,157.54083,11.778131,46.016464,0.000997237 634,537.7557,183.08846,37.38385,91.864456,0.000985918 634,1.5125024,139.47232,20.41331,89.181885,0.0005758275 634,571.2154,120.29835,64.60394,235.55518,0.00047805425 634,606.0508,24.468994,32.112366,69.31721,0.00039928558 634,1.2182927,204.38478,18.414537,80.47481,0.00034835064 634,526.1278,104.45935,73.09302,203.3099,0.00021392731 634,612.204,257.76602,26.942688,153.27069,0.00018259289 634,608.035,439.3046,31.111694,66.88318,0.00013008241 634,1.5755811,196.66483,32.754314,185.61148,5.7837275e-05 634,0.8562036,248.82016,18.449234,81.14215,5.6466662e-05 634,542.6106,157.40161,27.323425,68.034546,3.6994054e-05 634,572.4143,352.76163,66.62866,138.74316,2.6994338e-05 634,611.11646,48.102657,28.030212,143.94534,2.1477596e-05 634,523.75745,139.5969,29.323425,65.88666,1.8059236e-05 634,1.0769596,417.99466,16.077751,81.1214,1.5875012e-05 634,4.498008,137.61444,76.0103,256.0851,1.41479e-05 634,1.2869043,361.612,19.808075,104.49808,1.0537457e-05 634,536.3528,107.29691,26.359497,65.46302,9.245526e-06 634,3.439336,283.39157,57.145782,194.45819,7.546641e-06 634,2.9309783,425.43018,53.150166,70.64084,3.6265717e-06 634,283.54782,427.95474,74.36224,76.96631,5.077718e-07 634,1.9308773,20.145424,56.840385,112.606606,2.6271389e-08 634,537.8066,6.994307,60.068848,52.806488,3.4825545e-10 635,387.4982,187.36151,22.599976,49.027115,1.8190162 635,73.17625,192.58301,26.60823,46.569656,0.22738229 635,596.91534,168.26224,39.635925,84.67178,0.1016067 635,94.124374,202.316,23.731049,48.816803,0.039141737 635,586.20514,194.77188,30.568665,63.724976,0.010941213 635,105.51324,194.18706,22.905083,48.802505,0.0047833943 635,624.24817,194.17305,14.898499,46.252502,0.0029445458 635,573.2065,425.47528,65.84674,78.180145,0.0012574359 635,531.6335,226.80113,23.698914,50.38704,0.001087673 635,585.20233,90.37495,51.58203,227.50818,0.0009355218 635,619.71155,354.3309,19.43512,68.042725,0.00078159844 635,610.869,189.41927,28.277649,148.49565,0.00072172773 635,584.83704,266.80734,52.995605,226.26294,0.0006570132 635,600.5307,157.0997,23.267456,47.72368,0.00022543268 635,527.30493,201.86557,40.57672,104.815094,0.00015875512 635,0.9920769,191.88698,17.983425,139.0573,9.2354596e-05 635,613.2927,6.3553486,25.853943,102.95045,9.178212e-05 635,346.685,303.44714,84.95349,171.38611,4.915435e-05 635,1.3795215,323.88434,18.32763,131.04391,4.7373404e-05 635,2.0555835,135.63498,28.552454,134.09702,4.22441e-05 635,3.050674,125.63301,61.576447,219.99611,3.0486368e-05 635,3.2566195,269.18475,56.045063,204.13702,2.2349785e-05 635,197.86667,297.79254,81.15033,171.98914,5.539067e-06 635,1.8002206,387.32224,28.529423,108.18585,2.4345145e-06 635,0.93174076,51.158443,15.21695,150.41183,4.820065e-07 635,1.9593735,21.489704,56.508953,109.296524,4.5978098e-08 635,586.9244,1.1220996,43.02368,54.390583,2.5050921e-09 635,544.9333,1.1224072,45.22644,49.05552,1.0774797e-10 636,9.11133,197.87186,39.285385,69.349365,0.16290824 636,624.7378,222.2367,14.4088745,50.1528,0.047706034 636,433.3568,217.17813,34.83081,70.8277,0.0032875435 636,602.43964,198.80939,34.931763,125.35541,0.0029330219 636,95.26096,202.50813,33.609825,52.735962,0.001495024 636,577.85736,213.65215,23.64447,48.9644,0.00079807587 636,4.083838,126.11072,59.317295,199.77814,0.00028045475 636,616.82025,286.73083,22.326416,83.91986,0.00027233 636,612.0941,374.0827,27.052551,129.181,0.00026225863 636,1.7588542,170.52821,19.322094,90.47032,9.8653574e-05 636,1.1212915,307.9095,19.240602,134.8049,6.320831e-05 636,616.1971,157.85635,22.949585,91.77251,5.194112e-05 636,597.6644,63.201565,40.296814,213.62228,3.8268678e-05 636,0.80099934,270.00043,18.504374,78.306305,3.191533e-05 636,3.3773618,253.26083,57.62023,223.28116,2.9791974e-05 636,1.0243953,390.76886,18.473993,107.61731,2.3197099e-05 636,1.906154,215.81938,29.379705,160.99617,1.183289e-05 636,550.3873,166.04456,25.50354,59.607254,8.090096e-06 636,555.56915,110.68146,46.007385,107.64191,6.2559075e-06 636,597.51666,4.9602118,40.562927,88.86502,4.1372696e-06 636,3.1130762,429.33398,53.074753,70.058685,3.7415275e-06 636,1.303357,64.64786,17.277308,147.39691,1.2998689e-07 636,2.2554183,23.943981,55.2962,99.77313,5.4135977e-08 636,0.6916447,12.802126,10.4105015,77.845505,3.409758e-08 636,1.31295,10.487814,28.663376,52.996445,1.5494695e-08 637,574.05524,213.19118,26.90564,52.969803,0.14049628 637,2.5135548,193.37576,23.618013,57.43843,0.090947576 637,439.59085,211.75778,31.729279,64.40921,0.04186937 637,510.54855,193.20695,43.405243,134.2943,0.031572785 637,524.8797,193.25558,22.970764,49.13237,0.02362491 637,124.03473,192.09021,20.454636,48.744537,0.021605073 637,194.06311,177.33159,31.113556,71.6622,0.018110577 637,606.4916,151.08406,32.583374,90.64946,0.007937301 637,601.77344,182.35614,36.22754,202.11575,0.0030673342 637,548.99963,155.9857,34.043335,79.44789,0.002322027 637,2.843094,154.5115,42.625057,117.44214,0.0010044164 637,622.96497,151.99057,16.181702,52.312958,0.00049131195 637,611.8448,17.535841,27.30188,95.685356,0.00046219293 637,567.71405,154.66942,28.355469,66.75606,0.00018195892 637,608.451,440.6636,30.695679,64.34662,0.00014756004 637,611.4108,323.2496,27.73584,138.00186,0.00012410528 637,1.2056015,200.94737,20.441883,159.81914,5.921427e-05 637,523.29205,115.57875,41.95874,120.30711,4.8780574e-05 637,1.2586963,367.04028,20.297285,108.03479,4.4096734e-05 637,584.0443,66.17612,54.100708,236.13669,3.6427806e-05 637,3.5927052,179.59961,57.583065,236.8215,3.109166e-05 637,0.9827669,305.89148,20.865536,107.74771,2.3627295e-05 637,610.8618,0.0,28.21521,46.530693,2.3153249e-05 637,3.4180615,400.81128,56.5041,93.799164,1.2031054e-05 637,1.2802792,442.8924,21.932228,59.523438,1.0982978e-05 637,371.821,153.34746,95.50821,200.7484,9.056728e-06 637,541.8728,76.51979,44.73163,123.36136,9.58482e-07 637,562.01685,13.368763,77.12982,155.90025,6.6583345e-07 637,2.1863427,22.27175,56.266476,105.84791,3.6626744e-08 637,1.5031015,10.036903,28.356794,53.758286,1.2977032e-08 637,574.0113,4.9736266,42.368164,51.376247,1.7407193e-09 638,568.45807,197.85107,43.21161,113.87845,0.7651907 638,592.15015,146.94254,45.48938,143.8023,0.043879177 638,610.47327,165.78506,26.257568,68.242966,0.031454142 638,91.30359,188.36684,42.10327,81.90752,0.009657995 638,553.2236,271.58408,20.431152,46.206696,0.004267358 638,617.1794,274.67834,21.949097,74.59665,0.003812055 638,593.46265,204.44556,27.124756,66.57449,0.0032076342 638,153.13934,197.69608,35.400803,75.04056,0.0028718314 638,622.0978,214.27525,17.04889,56.659134,0.0013906665 638,601.1725,309.52844,37.34375,185.4136,0.00081341213 638,618.2199,106.67123,20.926758,73.52352,0.00055917026 638,326.76083,212.83255,24.957764,52.051056,0.00044025568 638,607.2945,431.5941,31.852173,70.629456,0.00033212005 638,3.7274837,99.39903,59.079865,235.76472,9.8940756e-05 638,606.98236,7.1797657,32.153076,117.7365,7.797208e-05 638,1.5929778,109.60672,18.587624,147.78586,5.4565306e-05 638,3.0028646,396.0666,57.60555,100.99463,5.177702e-05 638,595.1797,105.13431,38.006042,104.26367,5.0619878e-05 638,1.4330583,292.28387,30.666384,186.48572,4.9762235e-05 638,1.1733044,218.59561,18.100554,132.26834,4.3688942e-05 638,0.9663273,421.29794,16.877762,81.55344,2.2060603e-05 638,67.22684,163.31018,113.31523,191.22931,1.433064e-05 638,384.53317,157.17334,93.701996,192.55084,7.8018065e-06 638,500.65475,16.398699,46.230255,102.463326,1.2391808e-06 638,2.7093213,16.336779,59.40782,140.305,7.0246665e-07 638,1.2428589,41.164005,15.348713,136.07806,3.7647624e-07 638,584.3779,3.9785726,45.555298,45.013603,1.928438e-08 638,544.6077,3.308501,45.769043,47.452507,2.2106843e-10 639,5.396203,197.32607,36.163937,76.52107,1.1214308 639,523.2917,202.78996,21.344543,45.389755,0.58955795 639,148.21265,200.02995,24.055893,50.413254,0.09061451 639,607.7287,202.73817,30.628845,143.65392,0.0055624396 639,95.507645,203.01068,24.716629,47.42682,0.0051315217 639,592.0763,402.15314,46.56183,103.03949,0.0028096284 639,137.34111,196.35962,21.810135,45.226944,0.002636277 639,591.1547,192.49626,25.546936,52.59195,0.000940691 639,619.88165,244.17493,19.265015,59.78955,0.00086671644 639,1.1713737,205.74112,22.768757,131.35843,0.0005678622 639,613.0265,331.48276,26.120178,123.21335,0.0004919284 639,616.69794,175.98944,22.44873,77.38463,0.00035261456 639,3.2434604,174.21175,56.065147,204.4828,0.00031197772 639,619.7737,313.40277,19.372986,64.23828,0.00029890257 639,1.1397607,349.2086,19.284939,133.26315,8.236435e-05 639,2.8688462,396.22086,57.300495,98.65433,5.2154952e-05 639,601.31836,72.36335,37.565796,190.94272,4.1698026e-05 639,1.1878581,324.66455,17.757936,74.13806,3.180273e-05 639,411.61172,172.93553,59.180573,103.797195,2.886573e-05 639,1.2393205,441.05484,22.198626,62.55356,1.5408985e-05 639,1.6638534,106.01864,20.042831,152.40353,5.3196595e-06 639,498.90057,425.04514,85.89752,72.97421,4.958563e-06 639,611.9555,2.6335547,27.191162,57.980793,4.5706392e-06 639,379.49466,134.5518,142.2352,214.74806,3.7901468e-06 639,2.669681,21.988224,55.46748,112.90988,9.0451067e-07 639,1.2945207,32.651405,16.014301,135.50702,1.5917763e-07 640,473.09125,207.61394,24.17865,52.754288,99.769875 640,133.71893,209.03297,23.473343,45.120102,28.48382 640,612.0629,212.81477,26.964722,54.429855,0.084123746 640,431.44116,201.96344,29.607544,65.37186,0.02553894 640,115.97617,204.02766,25.507332,55.66136,0.016439822 640,505.68948,211.90942,23.258698,46.295258,0.0061081396 640,617.66046,232.04573,21.486206,94.166214,0.0031331915 640,567.2559,189.7114,31.535461,68.696014,0.0029618097 640,487.7236,210.26387,25.200348,47.777817,0.0023876943 640,621.28546,326.2136,17.861206,58.56183,0.0013473384 640,599.22754,116.2872,39.27179,185.73154,0.00095068535 640,102.4416,188.6823,25.329994,53.45851,0.0006758781 640,604.6508,249.42693,34.49585,156.35756,0.00057433895 640,265.9923,171.81487,41.16458,65.40355,0.00032531135 640,359.88513,180.15504,37.730255,72.21637,0.00022866976 640,459.8775,178.72496,57.612427,103.75142,0.00022259774 640,1.2359334,224.53914,18.288069,75.462265,0.000195629 640,608.23694,437.77078,30.909729,68.67224,0.00016327223 640,1.7378712,91.81318,20.63281,84.269356,0.0001416582 640,609.6188,30.609148,29.527893,135.43864,0.00013533114 640,3.230464,254.8947,57.460865,218.99818,8.250539e-05 640,3.2199008,102.0651,59.118965,212.16483,7.4618496e-05 640,1.1519173,341.33508,18.931736,135.6994,5.1153012e-05 640,0.85347086,255.0696,19.272034,141.88652,3.574129e-05 640,572.1367,364.7442,66.716736,129.50629,3.1010844e-05 640,424.98666,140.73975,136.8826,216.4047,9.9019135e-06 640,1.957876,420.09552,34.91867,79.32794,7.2126836e-06 640,612.0225,1.2077898,27.124146,64.525185,5.7060297e-06 640,337.06638,153.8368,103.67212,204.09996,5.1566008e-06 640,1.7536329,23.019825,78.62944,155.27414,1.2285411e-06 640,276.94507,427.2136,73.134,74.550964,6.2667016e-07 640,1.5159669,13.263731,37.11137,88.2021,9.648096e-08 641,546.42285,200.27649,28.3974,66.39932,99.96044 641,63.697594,188.03983,24.92147,64.52365,7.2379746 641,616.3145,28.224585,20.900269,61.532448,0.4109319 641,8.245062,198.03142,31.042723,62.29521,0.19339949 641,583.421,194.5181,35.315247,64.91171,0.05848441 641,599.4233,33.606873,22.08545,56.097763,0.008604535 641,617.8861,195.63058,21.26056,73.390594,0.003086801 641,1.7044507,149.40309,22.91018,134.7368,0.0028067497 641,35.055504,176.41254,69.202194,96.1275,0.0014475428 641,580.21783,394.06604,58.70105,106.65344,0.001311547 641,585.2332,204.88042,52.958435,247.05476,0.00056574325 641,599.6351,114.4793,38.792236,186.3937,0.0004326505 641,588.81824,3.6662695,50.32843,79.36992,0.00017733953 641,615.8021,94.78044,23.344543,98.9534,0.00016268811 641,497.5448,122.29344,135.03912,243.57353,0.00015974091 641,2.62396,126.0205,57.463993,195.36804,0.00015061123 641,383.19434,199.68974,36.41223,88.91261,0.00010554459 641,1.6494589,212.23988,31.366726,199.43306,5.683967e-05 641,2.762876,395.1903,57.601868,100.188354,3.7295085e-05 641,0.96092695,318.17932,17.299393,137.4888,3.1970652e-05 641,0.7517554,421.65375,16.949186,80.39111,1.8664367e-05 641,577.9969,0.0,61.14978,227.21709,7.4422637e-06 641,389.84546,427.7276,75.07352,75.3988,4.0807554e-06 641,1.3721875,53.296295,30.980646,181.21892,2.5603874e-06 641,1.5556332,19.143873,56.28244,119.48456,3.7747495e-07 641,573.6837,0.0,44.527832,50.173138,2.1206e-10 642,560.4333,207.26059,22.628967,48.46953,94.91125 642,12.66382,200.9431,42.911705,60.22969,6.0167093 642,72.93122,209.46202,26.335526,47.96373,0.33298573 642,2.1346972,172.35677,27.275404,95.65025,0.059916742 642,1.1986096,169.0544,13.188295,47.599213,0.0018581671 642,618.59,184.31355,20.55664,74.82509,0.0015262893 642,4.4555306,159.41129,57.079144,192.23691,0.0004201479 642,613.0554,223.25633,26.091248,143.78871,0.00028798854 642,608.77435,439.65698,30.372314,65.3819,0.00018944855 642,246.87544,171.83325,34.813248,62.314438,0.00014046012 642,601.7445,76.49074,36.706238,188.28175,0.00011260488 642,612.16986,304.4609,26.976807,145.63577,7.035295e-05 642,540.7151,174.20117,62.6037,100.729645,4.4546552e-05 642,1.0604484,214.97025,19.786516,153.00061,3.678224e-05 642,572.005,363.795,67.119934,127.410065,3.279189e-05 642,1.0263953,321.8637,18.079206,75.365234,3.1594864e-05 642,515.2498,128.21437,123.11481,201.81276,1.747146e-05 642,1.4874943,270.49475,30.51041,177.01062,7.3542824e-06 642,0.9277295,377.04648,18.067656,118.5202,6.728477e-06 642,611.21216,1.1706511,27.93451,59.803246,6.249873e-06 642,3.4042025,342.84555,58.292465,140.86832,4.5353295e-06 642,283.1283,431.06195,73.50311,70.34363,6.827735e-07 642,1.2449179,62.14686,16.263237,158.51349,5.784384e-08 642,3.6726465,22.56618,81.97306,144.18404,3.2657063e-08 642,2.0975213,14.788343,35.417896,75.74091,1.44644785e-08 642,0.8200594,12.002517,11.370747,79.9501,1.28551365e-08 643,23.460192,231.81172,32.83506,63.967026,0.087514356 643,612.177,236.57697,24.434631,53.56247,0.08737343 643,599.91046,171.23596,37.909058,114.38672,0.027591791 643,3.3701499,215.67844,39.718224,100.27911,0.01733394 643,149.19725,222.35626,25.651566,46.608948,0.01341886 643,117.52299,202.4008,41.40217,81.24791,0.0028183719 643,16.780247,257.83994,23.895218,45.646454,0.002291463 643,622.6791,185.37408,16.46759,53.096054,0.0016025901 643,4.3346324,256.58954,57.153416,228.45465,0.0005241491 643,1.1564697,214.89075,15.15403,67.291626,0.00035898748 643,470.6322,264.0225,26.677917,47.920746,0.0002942511 643,582.27875,397.28146,56.86792,100.921844,0.00022469324 643,588.4087,223.86368,50.334656,255.45117,0.00018928203 643,1.3199586,265.5011,19.60556,147.43762,0.00017307194 643,1.536421,390.3338,18.012648,80.77762,0.00015053715 643,3.1801481,100.384544,60.36187,230.95721,0.00012309429 643,293.61868,191.81598,37.55475,67.64526,0.000116453455 643,565.70074,82.95684,72.74567,255.44315,3.1886244e-05 643,1.6044524,438.76855,21.645082,62.81494,1.6293206e-05 643,8.035338,111.16507,36.409824,93.21181,1.5850006e-05 643,1.5264356,125.29995,20.979033,182.11993,1.5799238e-05 643,3.5779395,424.25778,52.392376,72.119995,1.2707315e-05 643,611.9615,1.5207781,27.18518,59.003624,5.535455e-06 643,101.3653,170.84784,98.40324,201.33185,5.410383e-06 643,344.9233,432.32483,72.9986,70.07947,1.0261655e-06 643,303.9751,430.86313,73.3584,72.36252,9.3208445e-07 643,3.5830176,20.046406,81.53689,166.19533,1.5969583e-07 643,1.2205836,34.80427,13.694489,155.40984,2.5881656e-08 643,0.92623866,8.834677,21.046251,54.933357,1.7674989e-08 644,26.816736,241.78253,27.93204,45.77365,0.016239647 644,446.1314,239.34743,22.621063,48.17781,0.0030473794 644,616.06555,89.63817,23.081116,69.94711,0.0018701387 644,1.2934164,229.92615,16.019888,71.16617,0.00028616845 644,612.1075,377.30325,27.039185,126.56708,0.00028544563 644,611.9871,228.321,27.159546,131.49812,0.00028074565 644,600.3644,64.928215,38.329895,203.44943,0.00019789081 644,587.92145,255.32138,50.931458,226.8613,0.000119267585 644,4.35905,223.351,56.844208,234.18074,0.000118896016 644,1.5060238,151.75754,19.507269,88.71466,8.992162e-05 644,2.3288527,162.0518,34.694786,184.74074,6.019324e-05 644,0.85223144,260.45078,19.564306,157.39899,4.0798925e-05 644,1.3338372,368.903,18.637062,129.27808,2.7817518e-05 644,4.283405,393.4166,55.298008,102.01434,2.058146e-05 644,97.96793,131.63351,39.918205,142.56073,1.0082969e-05 644,3.1427083,67.63312,60.416576,229.97507,8.448855e-06 644,1.8267269,82.98011,22.793655,119.14883,7.243041e-06 644,2.0140553,452.8646,28.410717,51.184784,6.896399e-06 644,141.41547,185.15746,79.076645,159.98949,6.7693336e-06 644,560.8383,135.91875,43.917053,135.17195,5.718854e-06 644,611.2291,1.3825488,27.917542,65.67372,4.27861e-06 644,403.91437,163.38759,141.69061,212.89409,1.443828e-06 644,351.75394,432.2996,73.0296,69.38541,1.0422357e-06 644,297.07187,431.7511,74.57028,70.3945,8.774246e-07 644,256.8542,432.1272,73.43909,70.247406,7.2161487e-07 644,2.744904,20.497213,55.93614,120.12797,2.2052005e-07 644,0.81348026,11.129291,11.454014,84.19338,1.7263178e-08 645,561.7453,187.91127,42.951843,91.55705,1.832405 645,587.30426,173.47185,22.646606,47.749115,0.008780558 645,622.4972,220.37852,16.649475,53.616837,0.0037908186 645,610.5086,146.4142,28.638062,137.1797,0.002059245 645,105.46526,178.47041,46.847878,80.362015,0.0014076147 645,1.8467041,152.23325,29.92892,140.0824,0.0008517868 645,621.2682,164.24785,17.878479,62.917465,0.00053885 645,146.47069,198.56425,48.54402,85.40233,0.00049398857 645,613.40106,219.05745,25.745605,142.98851,0.0004308425 645,611.5368,366.1289,27.609863,138.1799,0.00035973592 645,2.9625912,134.50238,61.75396,229.92667,0.00014918557 645,1.0763469,221.88203,20.061663,149.65904,9.388182e-05 645,1.4122673,384.1225,18.305176,80.37286,7.046206e-05 645,1.0291635,337.13965,18.8187,80.12665,6.746648e-05 645,585.43207,198.07155,53.7146,274.6596,6.743148e-05 645,4.2247105,331.11887,57.65648,160.85406,5.6651355e-05 645,81.35832,147.30988,89.55432,159.94293,2.8268247e-05 645,1.2312175,82.89623,18.816055,156.42096,2.5834246e-05 645,537.2061,167.70667,95.266235,182.79892,1.8169347e-05 645,2.4170957,416.0174,34.468903,84.56784,1.41023165e-05 645,600.524,5.173617,38.62268,82.977844,6.3244124e-06 645,118.04874,134.7033,138.80383,214.23045,4.6006126e-06 645,24.449594,424.5406,77.379105,72.62958,1.0099055e-06 645,4.119092,28.404642,78.04017,148.25252,4.3065108e-07 645,283.7631,428.30197,73.01474,74.55002,3.8542245e-07 645,2.1366684,17.775866,34.835068,64.70987,4.4383498e-08 646,109.46042,214.60573,33.123886,50.034103,96.28159 646,62.142254,209.06119,27.32951,49.80594,84.58836 646,611.8729,192.12001,27.273743,92.08147,0.37175527 646,41.94087,164.62143,48.285503,103.030975,0.36161163 646,78.32027,210.42569,23.97979,48.066925,0.107696734 646,622.23004,167.66782,16.916626,55.934586,0.052408904 646,526.8075,203.76463,34.953674,67.44725,0.003259547 646,59.537395,155.5144,25.267887,55.772217,0.0013848249 646,0.98812014,218.07185,18.156248,69.01619,0.00078698905 646,588.6821,111.47646,48.342285,204.18588,0.0006934161 646,600.6363,230.54636,38.510376,217.8197,0.0004329823 646,611.28253,364.364,27.864136,137.91064,0.00037191447 646,19.197145,127.71578,101.46291,212.81049,0.00027484572 646,1.1708049,223.57104,28.622871,152.61926,5.891814e-05 646,1.2298365,355.20563,19.0999,139.94934,5.549112e-05 646,4.248817,320.7908,57.669994,170.59311,4.2824762e-05 646,90.13986,174.29594,78.54921,158.21852,3.7136364e-05 646,0.65259767,117.50283,14.186585,53.500526,3.1243457e-05 646,1.7800342,142.63586,28.071411,136.29462,3.0128373e-05 646,3.1707096,65.42554,59.842804,208.46619,2.3120723e-05 646,267.36392,152.86397,46.824127,105.699265,8.771706e-06 646,612.0159,2.1824057,27.130737,57.41103,5.1121015e-06 646,1.2396737,59.612736,17.903112,144.02272,2.044124e-06 646,22.76756,422.31122,81.04753,78.79962,1.1497156e-06 646,2.781774,21.756739,57.0475,115.406944,6.707127e-07 646,1.1960523,11.473073,20.966143,51.88606,3.017193e-08 647,35.00711,218.33714,37.595657,60.342667,99.6212 647,60.149208,222.03342,33.140533,56.33716,85.53836 647,455.37057,216.90251,26.033447,54.9373,0.042970587 647,606.1881,243.1988,32.318604,71.93666,0.008275987 647,605.40857,146.40605,32.88611,74.40697,0.0073745535 647,467.43787,232.53879,23.964294,48.651337,0.0031876033 647,16.426846,174.90619,87.347916,166.05539,0.0011882078 647,2.207308,190.26738,18.008524,79.50133,0.0005058203 647,610.21014,371.67474,28.936523,131.7998,0.00024617545 647,2.5144842,145.03586,33.324997,177.26364,0.00018573468 647,1.4123275,128.65492,19.321077,91.15115,0.00014543357 647,586.6175,177.71667,50.980103,216.80948,0.000117715535 647,612.73016,268.64453,26.416504,148.16016,8.7398315e-05 647,1.1521436,396.61685,18.404129,77.43979,7.591205e-05 647,1.103938,227.69766,19.674038,146.19116,7.518932e-05 647,272.54605,163.4678,40.500885,74.128296,6.505971e-05 647,3.9325652,336.3513,58.48112,154.13205,6.13103e-05 647,1.1303825,329.36255,18.474594,80.18002,4.8100752e-05 647,2.1765578,418.60226,35.3987,81.467865,9.18275e-06 647,611.6632,2.5968654,27.48346,57.150257,6.236679e-06 647,532.0269,121.09792,41.249268,124.02607,3.4723275e-06 647,26.354399,394.21173,121.647705,100.10501,2.1724586e-06 647,3.6993718,31.575651,78.559456,132.24461,8.4914535e-07 647,2.6920996,12.388448,47.513317,70.854324,6.626178e-08 648,512.0721,223.88425,29.256042,51.949066,0.015138553 648,362.466,209.94939,21.014008,45.119476,0.005708434 648,578.6665,219.5756,21.824646,46.68373,0.002302488 648,611.1379,214.62292,28.00879,122.52469,0.0021974435 648,190.64363,214.93944,22.967224,47.476547,0.0015279278 648,203.93806,220.19693,24.406754,50.369385,0.0011944951 648,462.97314,47.86039,25.995087,54.938545,0.00033930416 648,586.1481,276.7005,51.877686,205.21884,0.0002977668 648,617.5293,298.65515,21.61737,75.569824,0.00028272634 648,611.12427,358.75537,28.0224,140.65094,0.00027687405 648,3.6643279,232.65407,58.40446,245.8152,7.193058e-05 648,600.7897,109.47608,37.48242,179.19278,6.894334e-05 648,0.70760584,232.19792,13.492416,48.220596,6.570243e-05 648,0.80982506,364.04324,13.654505,52.89734,6.2005376e-05 648,1.1356103,397.48935,18.347258,75.74722,5.2627205e-05 648,264.41516,158.85214,41.175568,76.41896,4.3895085e-05 648,1.6628158,312.55646,28.448858,151.46939,4.2651907e-05 648,1.1330168,200.75041,21.303383,102.258286,3.6237998e-05 648,0.85773605,291.61005,18.74044,78.3772,1.9491152e-05 648,453.5661,121.54977,37.941467,138.53186,1.8870802e-05 648,1.3881291,102.89389,19.064444,133.77942,1.1580529e-05 648,7.2068686,396.71094,87.87549,97.28876,9.432715e-06 648,1.4909294,440.7548,22.06084,62.92511,5.7181664e-06 648,1.2598251,30.338446,14.8953,115.90949,2.283275e-06 648,3.6328175,101.75479,60.52019,221.70526,1.7456427e-06 648,15.051313,442.23914,42.466515,60.69641,1.4047224e-06 648,442.8856,40.19768,37.890503,83.451416,1.3495485e-06 648,3.0432,24.125042,58.033012,102.33284,1.2694239e-06 648,78.573616,427.61435,72.631645,71.75571,8.335827e-07 648,38.564335,439.0269,45.866795,61.69861,8.241635e-07 648,270.4864,427.10193,72.08194,74.03287,7.6883373e-07 648,310.4842,427.78357,73.251465,73.722595,6.063177e-07 648,365.43628,428.7341,72.68967,72.66519,5.9817586e-07 649,426.52216,204.19829,24.45401,51.350418,1.3354506 649,616.2694,227.90152,22.877258,90.90103,0.000454859 649,615.8035,113.63108,23.34314,92.54621,0.00041736363 649,411.10495,164.329,53.200317,125.49153,0.00024010643 649,600.16705,124.50558,38.979614,211.5437,0.00024002261 649,615.55536,55.0728,23.591309,103.23743,0.00021001218 649,618.366,340.44672,20.78064,82.11734,0.0002065206 649,434.86298,207.83524,33.31418,67.23468,0.0001817352 649,616.5174,171.79912,22.629272,94.58348,0.0001457935 649,617.4644,293.57358,21.682251,82.57858,0.0001286665 649,603.6166,304.41824,35.53009,180.51962,6.86923e-05 649,582.146,0.0,57.00067,224.14194,5.5200187e-05 649,609.64197,439.42288,29.5047,65.320984,4.7743913e-05 649,1.1662272,385.5432,18.240955,73.60965,3.1898595e-05 649,1.2734119,184.5501,18.376328,66.16113,1.6905778e-05 649,0.8558651,220.66556,18.15643,138.06903,1.576351e-05 649,1.105769,332.59088,18.307524,78.51953,1.4750263e-05 649,0.68630576,219.27742,13.721897,51.948807,1.2701257e-05 649,4.0604672,200.89943,57.9352,256.55328,1.2437123e-05 649,3.8661394,394.41742,55.308537,100.410706,1.2135885e-05 649,445.70453,431.84152,81.605896,69.17239,6.4052274e-06 649,181.97403,427.17596,71.26251,71.82202,5.7870493e-06 649,1.85198,135.54643,32.907307,168.08403,4.6402793e-06 649,389.45218,126.01225,131.61429,226.65007,2.5465117e-06 649,1.0375078,84.39928,17.777323,140.11314,2.2211366e-06 649,555.75854,431.35934,73.63025,69.77185,1.5604536e-06 649,386.1896,433.64325,74.64035,65.91177,1.2637951e-06 649,127.55664,430.37598,75.502914,69.32294,1.0602814e-06 649,346.04373,435.552,73.23303,64.397064,9.900097e-07 649,304.96063,434.15952,71.84448,65.75726,8.055049e-07 649,234.06248,434.5793,73.83696,66.2381,7.7046167e-07 649,10.539893,457.57782,39.598377,47.085327,6.8243764e-07 649,509.02866,429.3052,72.36258,71.09985,5.5698615e-07 649,72.6369,432.56253,71.515335,68.699524,3.5671803e-07 649,0.85346437,19.665026,14.4712105,125.593994,1.8871498e-08 649,2.152544,13.392237,56.84484,117.365425,2.8309581e-09 649,0.9716903,6.48111,17.33647,55.998756,1.6488911e-09 649,401.91595,5.0472155,39.042175,46.347702,7.5802975e-10 649,344.35312,1.6326091,43.948517,46.96617,7.9911584e-11 650,506.1034,207.93996,30.018982,54.794724,99.701485 650,524.0498,211.88843,23.056885,47.4693,0.0028959892 650,564.2215,221.56337,33.252075,55.227127,0.0017250578 650,616.7563,64.94732,22.39038,89.862144,0.0006160591 650,611.44275,330.7462,27.703918,153.73154,0.0003856981 650,490.17578,184.34555,55.535828,101.29068,0.00035203056 650,610.9959,90.74858,28.150757,159.57887,0.0002478078 650,616.891,210.95862,22.255676,85.73648,0.00020770449 650,607.98096,435.00266,31.16571,70.53174,0.00015301468 650,616.9095,289.6936,22.237183,87.53754,0.00013551401 650,523.54535,89.95954,24.830933,56.904655,0.00011462428 650,600.46124,191.89034,38.685425,205.4753,6.223725e-05 650,1.3858798,197.10565,18.657576,66.42517,5.8291847e-05 650,616.62787,13.952809,22.518799,87.78858,5.4410044e-05 650,0.98646,225.62532,17.927284,137.78862,2.235e-05 650,1.1877165,422.50992,16.628998,82.72421,1.2084514e-05 650,554.8146,388.57986,84.33209,105.71524,1.1947189e-05 650,1.0038965,299.05634,19.240364,141.3609,1.1755663e-05 650,477.28693,157.98538,90.02057,211.2215,1.14248805e-05 650,5.4108725,314.88046,79.55875,171.68912,1.06513635e-05 650,1.9634033,162.88882,34.55862,162.2239,8.499235e-06 650,569.2304,19.265059,69.456726,142.0779,7.4215677e-06 650,394.37042,398.31943,118.73865,98.39667,6.5964236e-06 650,1.5160108,364.0953,32.57362,134.05075,5.2560194e-06 650,311.4777,176.68399,74.7327,156.2503,3.914832e-06 650,1.1366707,91.21636,17.706047,145.8363,3.1380157e-06 650,5.603981,434.95145,71.39171,65.2973,1.7587066e-06 650,443.28226,443.88214,43.658783,58.411102,1.6923514e-06 650,351.9211,431.322,77.51337,68.986206,1.366655e-06 650,195.36916,434.45837,71.78227,66.13861,1.3084864e-06 650,502.93423,430.6833,71.736725,68.94656,9.439425e-07 650,457.05945,432.19043,75.131165,68.00772,7.945549e-07 650,257.35812,436.02875,71.86218,64.451355,7.4414515e-07 650,311.664,432.5621,72.81354,67.976654,6.7547575e-07 650,134.23378,433.7127,72.51399,67.668335,4.2676135e-07 650,47.01195,435.65094,76.12808,64.86392,3.697999e-07 650,93.45839,434.5511,72.31192,67.140656,3.252995e-07 650,511.80527,2.2576628,44.35324,146.45859,1.7444071e-07 650,584.45764,3.7949204,42.13788,51.960808,1.1635577e-08 650,502.17877,0.14313477,47.06195,58.23766,6.5055024e-09 650,2.2337906,15.840313,56.6187,113.64012,2.2213706e-09 650,1.0551562,7.0476956,17.734896,54.98021,1.4418691e-09 650,528.45197,3.629948,47.388184,55.166557,6.2237254e-10 650,557.6959,3.8403695,44.844177,54.287926,2.800041e-10 651,418.27725,162.31186,31.349518,70.69481,25.169586 651,423.17938,206.80951,27.10968,48.25615,0.009218015 651,51.493374,204.4828,23.658909,46.97345,0.009189779 651,433.2446,183.77359,26.272125,59.426987,0.0067084758 651,610.60657,134.69624,28.5401,116.786026,0.0006226449 651,616.29193,87.64771,22.854736,92.640755,0.00033226542 651,612.99005,326.9055,26.156616,151.75162,0.0002246414 651,617.75183,211.76517,21.394836,78.77847,0.0001738647 651,585.3834,116.90991,53.763245,261.48425,0.00017112838 651,608.5522,437.89032,30.594482,66.80463,0.00010251863 651,1.1269718,217.32832,19.110926,133.50414,2.6310989e-05 651,1.0239177,400.12024,18.18743,72.34851,2.3691058e-05 651,0.7159697,224.85204,13.888803,51.59291,2.0067031e-05 651,614.24884,1.8073243,24.897827,102.59737,1.4295927e-05 651,1.1878011,308.79144,28.604637,149.52039,1.121623e-05 651,3.2783253,187.61836,47.422314,165.27477,9.203195e-06 651,5.150101,258.30087,79.399994,219.29993,7.431271e-06 651,554.74835,391.9658,84.398315,103.13376,6.917411e-06 651,422.45456,430.77127,77.91458,69.279724,4.7700764e-06 651,1.2421541,85.70963,17.552952,138.58856,4.223185e-06 651,3.391893,397.0128,56.613434,97.04172,3.5633673e-06 651,167.41106,431.881,71.56258,68.24469,3.2623911e-06 651,326.94244,173.33206,79.41272,170.05664,3.0066942e-06 651,1.9003736,144.41888,28.344862,140.76129,2.7591716e-06 651,379.25943,429.6799,75.27527,70.8176,1.4627096e-06 651,567.52716,2.4970508,71.61951,173.909,1.4381881e-06 651,298.0935,432.16125,71.6113,67.98547,1.3918939e-06 651,113.73507,431.53525,80.49268,69.7457,1.1824075e-06 651,236.60696,435.61282,71.7941,64.39697,1.1286035e-06 651,338.99448,433.59653,71.587524,67.17932,9.758049e-07 651,523.1994,428.96927,74.786255,71.23886,7.152867e-07 651,38.934216,430.89444,77.92668,70.47574,5.4089566e-07 651,0.5787647,12.703008,7.446719,81.104164,8.7932406e-08 651,586.51044,0.0,43.735107,57.893764,7.249862e-08 651,3.0798585,63.93295,61.4349,228.29498,6.52193e-08 651,1.3075325,8.784416,19.010534,53.36812,3.338058e-09 651,2.4952686,17.602123,58.952858,117.11076,3.127984e-09 652,621.33923,223.31824,17.807434,54.25949,0.002459911 652,412.12222,183.04387,35.4617,65.62189,0.0005993118 652,611.84766,152.22192,27.299011,135.43494,0.0005861746 652,463.33725,174.81888,37.28412,90.53088,0.00029107108 652,612.2738,305.70325,26.872864,141.37186,0.00022982938 652,606.8426,437.52277,32.304077,72.61725,0.00019320055 652,617.05005,60.366035,22.096619,87.0622,0.0001138614 652,603.22864,206.95143,35.91803,183.33098,0.00010593918 652,570.73895,355.47046,68.27167,137.03876,5.1062936e-05 652,1.128103,214.82365,18.597477,129.03166,3.2777978e-05 652,0.9537297,406.35406,18.175493,74.30328,2.6673943e-05 652,1.1800854,196.83513,18.132275,60.029037,1.7605804e-05 652,0.64992106,233.75243,13.573982,50.839645,1.4184878e-05 652,3.8442173,249.72298,57.969505,228.25578,1.2174998e-05 652,0.75178224,307.99237,18.809387,75.38403,9.654509e-06 652,585.5333,44.96198,53.56006,274.21564,8.0280115e-06 652,436.12973,431.25058,78.00748,68.91937,6.1675005e-06 652,1.6805273,456.99948,28.09099,47.336212,5.280638e-06 652,7.0684834,396.9772,116.36199,101.825165,4.572278e-06 652,340.38705,159.08675,73.82385,167.74791,4.391619e-06 652,586.13275,8.231387,53.013916,125.51575,3.85822e-06 652,1.9658,149.54144,36.181324,169.16653,3.3280185e-06 652,4.6317058,117.596436,81.23105,259.13232,2.7466642e-06 652,3.206089,429.56055,53.530293,70.30286,2.2717809e-06 652,0.94407064,92.66421,17.765617,137.9844,1.9120898e-06 652,543.2009,428.14197,78.992004,72.89621,1.64551e-06 652,52.163303,459.01147,39.52419,47.1203,1.4543806e-06 652,386.25406,431.2359,76.73862,69.23816,1.4438526e-06 652,338.9983,434.04892,71.61615,66.908905,8.4475136e-07 652,486.90292,430.64725,72.926544,69.431885,7.820769e-07 652,77.197075,433.69443,73.78008,67.53143,7.0920066e-07 652,120.51477,432.11517,71.89664,69.208954,7.029358e-07 652,175.4886,432.58105,71.38942,68.55994,6.47392e-07 652,368.79184,31.92632,37.21692,89.54906,4.41592e-09 652,2.25626,15.836257,56.419888,113.62671,3.831097e-09 652,1.0164576,7.26937,18.205696,54.897,2.588105e-09 652,396.79337,3.4785223,43.039764,47.136684,2.0019838e-11 652,455.1376,0.0,43.67755,52.137383,3.7330547e-12 652,424.88736,2.3054883,46.644897,45.08898,7.3966994e-13 653,505.73685,144.55023,35.34738,108.121735,0.016721832 653,559.01746,218.67116,26.687439,46.877335,0.014478201 653,448.06763,194.46489,22.58899,46.534744,0.0018390607 653,479.0872,205.04695,23.78183,47.929672,0.001756952 653,620.7568,175.07845,18.389893,61.955338,0.0014529034 653,622.003,221.41644,17.143677,52.733368,0.0013105193 653,607.24945,65.893105,31.897217,165.08664,0.0012290366 653,523.82416,206.06375,23.867859,49.945923,0.0009328207 653,539.4257,214.54738,24.826355,45.50154,0.0009040969 653,482.5552,166.67767,44.612946,99.27701,0.00046085267 653,615.9643,311.39514,23.182373,95.35785,0.00023376054 653,586.81226,137.61104,51.759766,262.0163,0.0002141976 653,611.65717,185.0018,27.489502,147.17783,0.00015018754 653,613.0531,351.454,26.093567,149.07413,0.00013557373 653,615.6355,23.85252,23.51117,97.85832,4.6492976e-05 653,584.46375,6.483763,54.682922,152.09602,3.8300917e-05 653,0.8015365,426.7191,13.40075,48.407166,3.1966447e-05 653,1.3825505,227.10431,17.81204,81.99423,2.6036518e-05 653,580.774,428.2766,58.02643,69.890656,2.4818974e-05 653,513.3409,167.18867,20.922058,46.339996,2.0835154e-05 653,466.96143,431.27136,80.63861,69.92636,1.7268174e-05 653,0.90259033,286.3163,18.450161,74.21704,1.4838798e-05 653,1.0672941,383.7957,19.164402,115.56,1.3883692e-05 653,481.1639,105.03498,109.941986,219.84338,1.310019e-05 653,1.6851213,257.92566,32.27919,177.72507,9.1512775e-06 653,3.915381,118.241356,60.439186,222.39478,7.089075e-06 653,5.4903226,286.37363,78.65143,194.47311,6.8250556e-06 653,1.5265723,457.08017,28.0384,47.39978,5.7037882e-06 653,3.4768295,399.12732,56.489136,96.41968,4.014525e-06 653,1.2675757,167.535,21.303116,102.82645,3.4685477e-06 653,0.9813045,87.06737,17.027653,131.4667,1.4895122e-06 653,359.33282,432.50906,72.95389,68.85272,9.535733e-07 653,536.0113,431.96393,73.37286,66.38583,8.8218536e-07 653,317.53778,168.62666,79.56479,162.4691,5.67806e-07 653,25.244148,432.54437,78.00198,70.49164,5.227543e-07 653,0.92399174,23.30927,15.059661,123.92388,1.1178843e-07 653,0.5593237,11.289857,8.362829,80.556816,4.5344255e-08 653,2.414943,23.125317,55.78037,100.66078,2.4963981e-08 654,486.92752,154.96521,40.6503,99.94615,0.0031485877 654,486.0835,192.4724,21.881256,45.77678,0.0010431791 654,347.51505,186.51411,24.433258,56.50879,0.0008023625 654,622.4925,142.66939,16.654175,51.279114,0.00075863657 654,607.2279,216.67914,31.918762,76.95065,0.00049507647 654,608.7041,441.03513,30.442566,68.39313,0.00039675232 654,612.1899,341.98068,26.956787,143.00522,0.00010570949 654,617.0351,92.09969,22.111572,88.26351,9.9146484e-05 654,585.71704,146.36957,52.73871,226.61649,7.447105e-05 654,611.9894,249.0085,27.157288,147.56316,6.223358e-05 654,408.6754,204.86095,22.512604,48.90219,3.7807757e-05 654,1.2939348,197.95375,19.031162,62.06343,2.9773906e-05 654,0.9921493,225.48032,18.467903,137.06293,2.5300858e-05 654,0.9786149,406.88672,18.33389,74.26987,2.439861e-05 654,353.65686,163.14874,38.36325,96.87656,1.9293933e-05 654,616.62726,30.400482,22.51941,88.72164,1.7292268e-05 654,552.8437,392.7376,86.30298,105.622925,1.2966388e-05 654,1.2304126,314.99664,28.508478,148.79608,1.010538e-05 654,2.1411905,153.74075,35.206936,170.84586,9.985706e-06 654,585.55853,31.866915,53.50891,205.59294,6.229522e-06 654,5.2234797,239.53087,79.06399,236.52522,5.369139e-06 654,3.4138005,399.33954,56.575336,96.14429,5.2637038e-06 654,1.4897152,456.4433,28.14819,48.37509,4.9402956e-06 654,346.57822,176.99236,79.47412,158.75655,3.8693415e-06 654,363.07666,198.56595,19.999481,46.116455,2.8153306e-06 654,1.028593,84.09894,16.54885,143.30193,2.7562573e-06 654,501.6109,431.78534,79.899475,68.283844,2.5163113e-06 654,454.01474,426.3368,73.48691,74.10239,1.3681887e-06 654,304.67398,429.96982,71.9548,69.573944,1.2480568e-06 654,19.379915,397.111,125.452194,101.31906,1.0153909e-06 654,175.051,432.7372,73.92412,68.34161,9.489248e-07 654,229.30962,433.34805,71.76796,67.00403,9.275567e-07 654,348.99094,431.64523,75.40845,69.65341,7.500031e-07 654,406.8512,430.50763,72.19568,70.993835,6.8050093e-07 654,120.24495,432.01303,71.78357,68.34668,4.3511955e-07 654,57.01185,446.33032,41.151604,57.777344,3.1463625e-07 654,2.379759,49.131836,59.310715,233.16516,1.535396e-07 654,1.448335,25.614109,28.182545,148.92397,5.4977384e-08 654,0.54455566,11.193129,8.131722,81.23212,4.8103278e-08 654,494.46475,3.1028843,44.21805,56.083794,9.43139e-09 654,470.16547,0.0,43.848083,62.31108,1.7962892e-11 655,591.6219,219.19211,28.762085,58.799683,0.05704117 655,382.9358,187.08447,29.260498,68.614044,0.016271826 655,390.27335,165.06018,40.86435,117.18118,0.0046949075 655,620.8349,172.65709,18.311768,59.906403,0.0021060198 655,435.24368,138.26485,52.1456,177.19926,0.0017042601 655,462.41855,164.91595,32.271362,77.04527,0.0013477574 655,448.7096,149.54156,28.052551,66.46376,0.0011931745 655,567.35016,207.92975,34.111084,81.100494,0.0011373203 655,585.12213,104.53732,52.300842,209.80746,0.0010759173 655,621.0999,214.15926,18.046753,59.181595,0.0009133949 655,621.5448,124.692245,17.601868,58.27803,0.00044428284 655,546.1319,194.66751,36.20752,85.985504,0.00031423033 655,611.1467,215.91042,27.999939,138.35179,0.00020390753 655,408.69797,196.07568,38.979767,114.10959,0.00020127954 655,401.85977,194.24239,21.847137,50.10988,0.00019453248 655,615.43945,53.38432,23.707214,94.14931,0.00017665251 655,542.46814,160.6949,76.29309,166.5663,0.0001623038 655,609.3645,441.07693,29.782166,63.716217,0.00012934575 655,612.1636,335.95007,26.983093,137.53198,0.000118611184 655,358.2528,112.89167,113.18475,211.11453,5.052626e-05 655,1.5883317,101.73009,31.297781,165.06981,1.2936064e-05 655,0.9944515,233.8335,18.37655,138.31201,1.1753129e-05 655,1.0484285,408.2981,18.111176,73.280365,1.1580883e-05 655,1.3131641,316.35303,28.468761,147.6575,7.582278e-06 655,3.4423633,251.29066,58.051422,226.32259,6.8141817e-06 655,451.83444,192.41132,21.440735,48.92035,6.7764136e-06 655,3.329655,431.4291,53.471992,68.47571,2.1788242e-06 655,598.8767,3.8039453,40.26996,91.82691,1.7138099e-06 655,46.24356,430.53302,83.48111,71.92398,5.190315e-07 655,1.496888,12.731318,33.469322,69.79531,5.7545706e-09 655,517.82855,0.0,47.779663,46.29353,1.3813069e-10 655,498.93787,0.5322461,40.5979,57.31976,1.0825005e-12 656,599.3745,208.3589,37.32617,66.16493,0.0049634147 656,621.45056,254.67001,17.696106,59.049835,0.00056795316 656,617.7446,145.09283,21.402039,84.374176,0.00045444837 656,588.8288,152.01631,49.485107,195.89009,0.00028591556 656,607.936,104.43195,31.210693,66.49586,0.0002207227 656,608.78284,440.62054,30.36383,64.91266,0.0002087247 656,616.2621,43.92929,22.884583,76.67783,0.00015341723 656,612.27655,328.95657,26.870117,144.42313,0.000119331184 656,1.865118,193.43675,17.980124,61.77974,0.00010831977 656,616.8724,292.87946,22.274292,90.72113,6.6470566e-05 656,0.5694267,231.38414,13.880757,49.065567,5.8381695e-05 656,1.8697478,205.52596,27.730759,143.99156,5.2741256e-05 656,0.8547754,406.94055,18.263779,74.63992,3.0286183e-05 656,609.2582,2.0114388,29.888489,64.579254,1.9127363e-05 656,587.44635,28.79875,51.288452,187.91753,1.5044715e-05 656,459.82178,430.92505,81.069824,69.45206,1.0773178e-05 656,0.91626465,352.0298,18.499804,75.77811,1.0140405e-05 656,555.13354,429.9633,81.44104,71.80777,9.659741e-06 656,3.5943556,175.01085,56.419342,223.51994,8.428656e-06 656,1.5163004,456.64648,28.137308,47.607605,7.5588e-06 656,3.2978501,400.60565,56.87336,96.44873,6.785855e-06 656,0.8183285,297.15753,18.47364,73.98184,6.6454973e-06 656,5.201706,288.20645,79.31548,195.34283,5.6005983e-06 656,1.7433244,98.12779,31.147732,167.60274,3.062618e-06 656,399.185,430.04196,76.89328,71.177155,1.5360032e-06 656,332.1219,431.37103,72.09436,68.90814,9.901041e-07 656,24.470947,433.1497,78.307274,70.77057,9.778377e-07 656,291.23413,434.65707,71.6525,65.81586,8.278912e-07 656,250.32368,435.17407,71.66011,66.02106,5.970497e-07 656,80.441956,433.41696,69.91394,65.56888,5.305046e-07 656,134.59352,434.42236,71.58365,66.46353,4.969145e-07 656,195.93155,434.37134,71.857544,67.10129,4.7534897e-07 656,0.9561491,64.15923,14.933082,149.2688,4.102676e-07 656,0.59024376,11.955361,9.145576,78.495186,6.2654074e-08 656,2.8856642,21.42872,53.904427,104.30202,4.15208e-08 656,577.34985,6.0705504,47.097534,50.92337,1.3960241e-08 656,551.81976,5.257407,43.4209,54.831436,8.845094e-09 656,522.417,0.18513021,44.742065,59.822227,8.992764e-10 656,499.47992,0.8095117,41.5506,51.76088,1.385978e-10 657,503.33423,218.91449,26.129333,52.442535,0.015622497 657,590.6896,226.234,25.419739,45.52205,0.012995697 657,621.83374,193.39865,17.312927,57.70883,0.0013228374 657,610.31244,142.48853,28.815308,132.43109,0.0006131613 657,616.55383,48.33549,22.592834,87.67735,0.00047577376 657,615.71906,106.66354,23.427612,91.89357,0.0004385075 657,617.4054,226.58873,21.741272,83.686935,0.00035764312 657,608.4984,440.44052,30.648254,65.60672,0.0002556348 657,612.61127,338.97034,26.5354,143.97894,0.0002223601 657,601.5558,210.97905,37.59088,201.93077,0.000139549 657,617.0976,302.14914,22.049072,83.4736,0.00012244213 657,1.1575838,198.11626,18.860037,117.93065,6.621761e-05 657,599.35236,13.09319,39.754272,182.22974,2.9811861e-05 657,1.0688217,407.14862,18.14983,73.90588,1.6725464e-05 657,0.78048545,345.6165,13.452157,47.308105,1.4179752e-05 657,569.64545,92.351944,69.292175,242.92812,1.3996934e-05 657,1.0134407,358.51212,18.394474,76.154205,1.1028994e-05 657,613.0194,0.6231803,26.127258,85.81921,9.9359295e-06 657,552.8064,398.97287,85.8338,98.45187,8.192145e-06 657,0.77437097,297.85995,18.551285,73.09613,7.7596e-06 657,5.8919272,213.50304,79.22605,259.24872,7.180577e-06 657,1.3750823,251.35188,33.13239,181.1428,6.0959946e-06 657,580.6829,442.76288,43.293762,60.455627,5.0295444e-06 657,366.57828,434.38513,75.98959,66.58145,4.2317806e-06 657,1.6970695,115.607216,30.081448,157.8274,3.8052278e-06 657,3.568833,398.4223,56.5367,97.89072,3.4118561e-06 657,32.76351,396.70483,124.35389,100.256226,9.075297e-07 657,161.41814,433.07208,76.26689,68.47778,5.385485e-07 657,33.829285,444.63287,44.443085,60.97348,4.9971646e-07 657,0.89843017,23.1878,14.950174,115.72802,2.0727087e-07 657,2.7092578,24.056719,54.52297,99.12656,5.922472e-08 657,581.63495,0.0,47.150085,51.582306,9.537228e-10 657,537.18,0.25654298,49.8313,58.275635,1.2694934e-11 657,430.6591,0.0,43.39685,56.36797,6.0637623e-12 657,466.01083,0.0,44.942505,60.52422,1.3516773e-12 658,607.96124,156.95366,31.185425,79.92052,0.0012212261 658,518.7406,170.55501,34.48755,58.23088,0.0012124635 658,396.15765,183.01923,25.98526,48.694427,0.0011958607 658,616.8344,200.27094,22.312256,84.497955,0.0005334064 658,615.56915,98.99738,23.577515,105.32635,0.00050267245 658,616.8911,52.51275,22.255554,91.82255,0.0002350226 658,599.3955,223.65623,25.72821,52.911728,0.00023197196 658,586.01306,97.47159,52.540894,232.39789,0.00020083853 658,612.72906,354.29758,26.417603,141.68396,0.00013208683 658,1.4003097,207.63472,17.75283,63.894608,0.000117261756 658,617.71375,328.0359,21.432922,81.714386,9.543103e-05 658,611.26044,239.33522,27.88623,149.03584,8.0715065e-05 658,504.32648,192.95743,23.1745,52.195267,3.951389e-05 658,0.7481568,237.56665,18.959969,137.71405,2.6541886e-05 658,0.9639348,392.74997,18.406769,75.15662,2.1306962e-05 658,594.39294,438.02792,44.23578,66.14584,2.0178913e-05 658,599.1357,6.19668,40.010986,188.6905,1.2829031e-05 658,1.9274423,173.26797,34.84287,159.84338,1.260643e-05 658,6.4504232,205.36234,79.41805,262.8108,1.10371375e-05 658,1.1592281,159.54462,18.253016,77.20227,7.7282575e-06 658,0.93897545,338.95914,18.369673,74.75302,7.322034e-06 658,1.4092684,348.07367,32.683365,145.78906,4.7044073e-06 658,6.7984767,399.87338,91.18079,97.107605,4.0342597e-06 658,2.706289,445.32584,41.316326,57.846405,2.3490954e-06 658,508.1692,431.50247,73.51605,68.550446,1.0033087e-06 658,406.69617,430.14346,72.175415,70.60852,7.6160615e-07 658,236.72806,435.05844,71.5849,65.41272,6.3968616e-07 658,195.68033,433.7721,71.71277,67.11725,6.044886e-07 658,49.683617,430.71774,79.349464,70.81378,3.9217812e-07 658,133.65526,431.4371,73.842636,69.885925,3.8814173e-07 658,0.55964804,11.408896,8.432329,79.89583,8.680093e-08 658,1.0540121,24.374344,28.29871,141.37617,3.317406e-08 658,474.83054,2.8869987,88.82419,78.90672,1.2311336e-09 658,465.80902,0.0,41.00296,55.048244,9.785922e-13 659,458.80823,172.73131,36.31891,69.935776,0.12680738 659,621.19275,204.07692,17.953918,57.162033,0.0012853704 659,610.55615,85.20529,28.590515,156.26448,0.00047993535 659,572.07434,84.522675,66.27289,249.17761,0.00028797702 659,1.8774114,201.91048,17.955542,66.84111,0.00022966723 659,612.9805,366.33173,26.166138,134.4401,0.00016983034 659,455.34674,135.1639,31.38031,69.62161,0.00013287824 659,617.0569,55.27138,22.089783,89.095505,0.000118107986 659,617.6058,248.44446,21.540894,85.18848,0.00010269604 659,433.85922,122.84931,77.59912,148.52353,8.970149e-05 659,587.26526,285.04965,51.88141,199.30264,4.5832057e-05 659,1.838243,151.93042,35.245907,160.02179,1.7646045e-05 659,566.26697,0.0,72.8797,182.11998,1.4826335e-05 659,3.7132683,186.78201,57.64754,231.43466,1.3796633e-05 659,1.1392033,322.11038,19.22441,131.84604,9.2505e-06 659,0.8263119,386.71545,13.377445,47.59372,8.191879e-06 659,0.8002604,260.7721,18.561735,74.63098,7.3667907e-06 659,1.1259912,407.77,18.102335,70.27127,5.7267894e-06 659,555.25684,432.58932,78.23047,68.45413,4.437169e-06 659,1.1606479,81.87536,15.791527,149.3768,3.842028e-06 659,3.799455,334.29797,57.82784,150.23276,2.8026275e-06 659,1.5208904,456.0457,28.372417,48.499054,1.72233e-06 659,10.759509,397.8502,119.81018,98.868256,1.5245557e-06 659,452.6924,429.31036,73.56528,70.52933,1.3317361e-06 659,305.02347,434.54764,71.16257,65.892,7.4119174e-07 659,202.13264,431.13617,71.45198,69.32333,6.50675e-07 659,359.75848,433.5534,71.06076,67.056915,6.3303725e-07 659,148.10936,433.631,72.30083,67.47296,5.2752193e-07 659,15.59535,446.76938,41.27025,56.573853,4.434375e-07 659,100.69566,435.48926,70.66177,64.71475,3.1784637e-07 659,0.5058309,9.052045,7.270345,90.069214,2.5077993e-08 659,2.4257617,21.207891,54.70698,109.00066,8.546299e-09 659,1.0372404,6.8695364,18.727028,56.505062,1.6409379e-09 659,542.3732,2.0475585,45.879272,61.336987,1.4747534e-09 659,517.7386,0.41396812,41.114075,60.390625,8.796477e-12 660,7.147898,182.2785,38.66118,61.99057,0.001709223 660,1.8926091,166.04988,18.117094,75.02275,0.00040632644 660,616.8791,100.36526,22.267578,87.3717,0.0003767656 660,610.87445,125.87415,28.272217,161.3873,0.0002737841 660,583.0019,1.8905241,56.144775,53.69719,0.00024578182 660,617.16284,354.6974,21.983826,83.72305,0.00019031449 660,616.7525,221.55965,22.394165,88.92229,0.00015979257 660,612.78204,416.8064,26.364624,88.360016,0.00013910719 660,617.2658,299.17603,21.88086,86.02551,6.082767e-05 660,615.2691,20.612156,23.877563,101.835526,4.9991457e-05 660,587.4577,295.753,51.688965,190.07733,3.811134e-05 660,2.0981803,104.785095,33.429173,169.24258,2.6108723e-05 660,0.909961,212.82022,18.414879,77.73035,2.255345e-05 660,0.994161,379.21426,18.378492,75.72803,1.4773902e-05 660,4.991006,178.92607,55.814518,216.92244,1.3771801e-05 660,581.7216,0.0,57.42505,210.16171,1.3527485e-05 660,0.70386153,247.39703,19.001654,140.89627,8.726749e-06 660,0.9308423,423.05185,16.696125,79.05551,6.6539956e-06 660,3.4245899,342.29993,58.78594,144.94571,3.5753424e-06 660,554.48126,430.05167,75.006775,70.44708,3.296148e-06 660,501.93845,432.84326,78.26865,67.88931,1.2735128e-06 660,236.32436,433.8989,72.00218,66.714355,1.1500007e-06 660,441.0111,434.8005,74.28461,66.64142,1.0318337e-06 660,5.7811522,433.07587,78.328224,68.02576,9.090611e-07 660,393.18826,434.51263,72.50128,67.18744,8.3329815e-07 660,318.2544,434.61462,71.79263,65.93063,8.307495e-07 660,276.80878,434.128,72.6723,66.876434,7.6591664e-07 660,181.06897,433.64264,76.61606,67.49478,6.7707003e-07 660,55.23978,432.40298,81.12424,69.66165,3.307993e-07 660,126.4051,432.4543,72.87324,67.84195,3.298681e-07 660,0.59354657,12.229545,8.660463,79.5341,5.187205e-08 660,3.30931,27.681173,79.96455,138.33942,2.5049884e-08 660,1.705651,15.320179,34.170677,68.221405,1.8071272e-08 660,551.4342,3.8676205,42.527527,54.282516,3.4069996e-09 660,525.31256,0.36411786,40.24524,57.74595,3.347618e-11 661,36.78817,201.67726,24.706566,45.87764,0.011166342 661,621.6844,155.89688,17.46228,56.18091,0.00072796573 661,616.7794,203.29846,22.367249,84.049835,0.000352988 661,611.156,111.18396,27.990662,153.57007,0.0002676787 661,608.0971,440.01517,31.04956,67.09433,0.00025305856 661,613.74286,299.11047,25.403809,151.14902,0.00011910131 661,1.0287337,211.14761,18.1768,70.11838,9.356523e-05 661,617.608,268.11304,21.538696,86.19141,9.0958674e-05 661,601.3568,187.19894,37.789856,183.25137,8.918424e-05 661,1.1773779,185.09546,13.219436,50.44983,7.577318e-05 661,276.31314,234.99501,73.14917,181.18929,5.419502e-05 661,610.6531,38.102566,28.493591,139.80971,5.3256495e-05 661,429.79657,179.68837,31.708862,70.80797,5.1347e-05 661,571.735,367.0895,67.41168,128.81128,3.1905773e-05 661,1.6808546,138.14001,21.624365,112.05263,2.4348077e-05 661,2.2465308,187.89357,33.740917,161.93755,2.000001e-05 661,0.88922775,407.08667,18.166649,72.78549,1.9557177e-05 661,1.3080409,154.24815,13.498259,50.904236,1.2585047e-05 661,0.98535484,344.9722,18.422129,73.75607,8.703843e-06 661,0.84447676,275.75937,18.576237,77.7168,5.977073e-06 661,1.4405649,456.57706,28.109396,47.52591,5.706095e-06 661,5.299261,285.81387,79.96328,194.40735,5.17028e-06 661,1.2358383,279.2962,31.830606,178.51099,5.0624026e-06 661,612.6822,6.9675913,26.464478,82.00138,4.6441046e-06 661,13.256569,397.279,118.60601,99.52884,4.1047283e-06 661,1.4111923,97.909,19.356583,72.27931,2.696469e-06 661,3.211512,429.7331,53.629997,69.928955,2.4327785e-06 661,203.59291,398.00198,109.95659,96.960846,1.951663e-06 661,3.32091,90.1263,59.238857,207.32906,1.2913515e-06 661,434.35336,432.9445,74.16461,67.596924,1.171301e-06 661,379.4999,433.54688,71.979004,67.02219,9.60737e-07 661,488.38943,434.72183,72.96127,65.906555,8.41243e-07 661,276.31262,433.91885,71.90326,66.3461,7.602433e-07 661,339.0329,432.59717,73.56015,67.84018,6.6588046e-07 661,168.42557,434.74976,73.270874,66.34958,4.635279e-07 661,113.63463,431.85013,72.0668,68.867584,4.1093483e-07 661,1.788081,20.052467,56.944004,112.87611,3.0630705e-08 661,0.57429975,11.396397,8.67869,84.21826,1.2189119e-08 661,590.5131,0.4531234,44.98706,46.481796,1.61413e-09 661,514.7931,0.0,42.653076,55.887657,1.0583203e-12 661,562.0971,0.0,46.578552,49.396534,2.1915872e-13 662,625.9158,249.35365,13.230896,48.328934,0.0016645483 662,596.04584,215.02269,41.748962,102.432175,0.0015858966 662,611.3358,376.1948,27.810852,127.51489,0.0005646135 662,616.6656,173.0037,22.48108,88.978,0.00026584245 662,617.16223,262.01263,21.984436,86.58484,0.0002492486 662,622.76544,110.22901,16.381226,49.61767,0.00023459713 662,601.9983,258.7987,23.82959,50.5878,0.0002144707 662,571.17786,124.1071,66.78021,235.7455,0.00017176902 662,1.3120663,190.54839,18.09752,69.08009,0.00013629347 662,616.9036,336.3391,22.243042,88.25763,0.00012974048 662,601.27893,248.66115,37.867737,205.60762,8.779788e-05 662,612.1694,75.270996,26.977295,130.06645,7.486134e-05 662,1.0447673,359.36734,13.0138035,51.2594,4.4808246e-05 662,1.111176,389.2887,18.056614,76.061615,3.104505e-05 662,1.6413705,88.244225,19.081676,74.56846,2.7501406e-05 662,2.1688364,126.24439,28.984007,147.01196,2.0972506e-05 662,4.2049136,187.36244,56.87281,247.45961,1.5588686e-05 662,1.184642,281.0571,18.558203,140.39584,1.4084412e-05 662,0.5711939,243.4916,18.738894,77.42192,1.1835e-05 662,3.8082585,346.94687,57.94979,137.85602,9.7447355e-06 662,14.823203,396.88568,116.67039,101.25412,5.4667926e-06 662,1.802692,416.62213,34.766575,82.611725,4.783561e-06 662,338.70132,399.5147,112.43848,99.00534,4.423286e-06 662,616.7162,29.253605,22.430481,80.74403,4.364114e-06 662,14.549965,447.35013,42.85397,57.675262,3.464237e-06 662,350.41693,448.17267,41.129333,53.913544,3.302321e-06 662,427.76044,433.9946,71.00302,67.33511,1.2056296e-06 662,570.6503,19.885286,68.49634,138.40062,1.1882518e-06 662,263.24316,432.3477,72.4588,67.925446,1.1799608e-06 662,222.05917,431.68958,73.93756,69.67154,8.237266e-07 662,576.4164,3.5352182,62.730286,48.96001,7.910256e-07 662,174.69719,432.91656,72.36211,69.12366,7.597606e-07 662,99.11079,432.71228,73.98005,69.13049,6.4831636e-07 662,424.29648,8.318255,41.666718,51.96925,5.220309e-07 662,481.90335,433.50357,71.818146,67.78531,5.1509164e-07 662,3.728125,54.961056,79.715935,234.5187,2.8582355e-07 662,396.033,6.7794957,42.387024,53.451,6.9956755e-08 662,1.7631999,20.353325,57.151463,120.43012,2.518998e-08 662,370.90823,3.5065496,38.632202,62.22169,1.7622398e-09 662,540.70465,7.654566,38.697083,45.347008,4.3065043e-10 663,608.17847,102.66601,30.9682,161.0841,0.004965285 663,618.71014,126.79066,20.436523,69.36878,0.0038980183 663,620.8359,187.2761,18.310791,63.125,0.003427457 663,490.35492,199.57547,23.348816,47.428314,0.00052251905 663,612.3395,367.34183,26.80719,137.531,0.00019090073 663,1.5466113,106.171394,18.607613,65.82345,0.00018277006 663,611.976,215.30128,27.170654,119.38963,9.56559e-05 663,587.0524,149.17102,52.032898,246.53345,8.241527e-05 663,617.5552,314.16568,21.591492,83.329285,6.212661e-05 663,616.6625,36.59017,22.484192,91.123505,5.7815658e-05 663,1.2799081,400.1151,17.939201,76.24277,4.348899e-05 663,1.0653646,205.6048,18.28844,70.2923,2.8312385e-05 663,2.0347364,115.060326,31.10331,150.38889,1.7352002e-05 663,0.9438721,344.7058,18.505928,80.545105,1.52308285e-05 663,3.6757212,396.72382,54.935936,97.217224,1.2037632e-05 663,0.7968864,305.0732,18.61428,74.04974,9.517403e-06 663,0.70855635,253.57501,18.612358,72.574585,6.400574e-06 663,1.6136874,200.7824,32.99133,182.07433,6.2446416e-06 663,562.3678,434.20697,76.77887,68.28381,5.6470653e-06 663,608.50446,1.2356348,30.642212,60.52309,5.401516e-06 663,569.2077,20.518204,69.938965,159.65503,3.476827e-06 663,7.346029,202.24925,77.12142,274.1275,3.3071237e-06 663,421.23276,397.18405,115.88071,100.9079,2.2710528e-06 663,358.7917,431.10278,72.80762,70.01291,1.6074042e-06 663,482.1692,458.60193,39.78125,47.714813,1.2862214e-06 663,311.57925,431.1732,75.19211,69.40921,1.2051836e-06 663,399.80496,434.88547,72.21173,66.28439,1.1081155e-06 663,72.57682,431.82706,71.7981,69.57086,9.221395e-07 663,459.46588,447.31955,43.456482,56.089264,8.015049e-07 663,495.00693,435.52963,73.21744,67.18857,7.7299643e-07 663,229.59657,433.6637,71.91359,67.80209,6.321781e-07 663,127.09496,435.37476,72.53773,65.89395,5.546581e-07 663,181.93857,434.94836,72.213135,66.556244,4.0117675e-07 663,3.156224,21.61207,83.43286,144.4338,2.0999618e-08 663,0.55019736,12.608692,8.071619,78.21307,9.0633e-09 663,509.18018,4.0012565,43.992065,54.358852,2.687428e-09 663,1.7125667,14.878012,34.296883,68.09911,2.2118327e-09 664,420.57605,172.39903,37.002197,63.053574,0.0743435 664,366.97763,188.4127,23.209198,45.801254,0.0010808288 664,410.66003,184.73912,25.436005,45.39612,0.00077173417 664,607.24774,177.56444,31.898926,84.5186,0.0007461853 664,616.8834,213.66093,22.263245,92.75044,0.00048113562 664,616.84686,60.03288,22.299805,83.685745,0.0002572111 664,612.5336,366.72623,26.613037,135.0615,0.00025611845 664,585.3886,109.47643,53.304688,229.69601,0.00016335041 664,611.05023,0.7246582,28.096436,102.003235,6.766938e-05 664,617.3279,292.742,21.818787,87.346436,6.0427392e-05 664,601.33105,228.92113,37.815613,202.5551,4.512343e-05 664,0.84599125,398.0385,18.21751,74.65958,3.501976e-05 664,1.4024407,151.43927,18.154913,68.01561,2.5971738e-05 664,0.934458,345.18716,18.466642,77.58371,2.032667e-05 664,372.57156,428.77637,80.52713,70.12656,2.0260944e-05 664,1.1653638,175.66502,18.96707,120.19612,1.7653181e-05 664,5.1448016,139.1885,79.14687,269.93753,1.1223336e-05 664,1.2853019,321.37173,32.449802,167.61761,1.02875665e-05 664,0.8289982,289.6388,18.545624,76.26285,1.0026128e-05 664,561.9789,432.2852,76.96643,69.46533,8.963345e-06 664,1.0617855,442.075,21.909376,61.80719,5.331097e-06 664,6.584502,397.0325,91.612595,96.92471,3.209939e-06 664,441.85315,397.42657,126.746826,99.26306,1.7805718e-06 664,567.2485,7.0095315,71.89819,162.06248,1.7212396e-06 664,1.2324626,62.805496,19.970144,106.600555,1.0497572e-06 664,515.9519,434.15045,77.30829,67.292206,8.119743e-07 664,310.8948,430.10947,77.64511,70.40686,7.169805e-07 664,257.0994,434.45285,72.20944,66.777466,5.7523266e-07 664,585.4805,1.8250977,42.79059,58.94803,5.6848546e-07 664,209.14313,434.2266,71.982025,67.09479,5.510402e-07 664,426.13428,430.16382,72.774475,69.86423,4.842587e-07 664,134.1663,434.53757,71.90854,66.879486,4.796605e-07 664,49.162827,435.21518,75.03874,66.9317,4.5121342e-07 664,2.737671,49.95959,58.970287,198.34535,2.1397317e-07 664,514.9985,0.48182943,44.67572,46.06498,6.905949e-08 664,0.5310364,10.635313,8.072168,82.625336,5.3196235e-08 664,1.7383382,13.340352,33.312805,69.980156,1.1097515e-08 665,463.45538,171.42397,33.216614,59.355515,0.11607733 665,620.17535,192.78773,18.971313,69.3134,0.0024311321 665,616.24274,228.51595,22.90393,91.418625,0.00073140615 665,609.1826,91.68877,29.96405,174.76387,0.00069173845 665,616.36035,61.026123,22.786316,92.06961,0.00043601135 665,613.15564,416.59164,25.991028,89.28143,0.0002215479 665,586.40155,148.65746,52.450073,239.98885,0.00018085274 665,616.8893,286.8435,22.257385,88.37021,0.00013409193 665,1.5932325,153.04268,19.918737,92.90454,5.257108e-05 665,570.89087,366.49542,68.2558,127.666504,4.256487e-05 665,1.0465364,344.59988,18.225857,73.129395,1.9032452e-05 665,0.8027824,384.20428,18.367392,74.398224,1.1428139e-05 665,1.2688721,202.09285,18.980907,139.4005,1.0927855e-05 665,4.1255927,203.91203,57.512978,228.02702,1.0092436e-05 665,1.6955485,321.4569,31.24696,163.30551,7.559146e-06 665,598.3973,0.0,40.74939,185.28656,7.39052e-06 665,1.1039071,299.20532,18.057066,75.36682,6.8187583e-06 665,273.91437,393.95578,114.65506,101.57355,4.9507753e-06 665,5.6382523,359.90244,78.87407,128.74936,3.3819358e-06 665,1.0887345,441.99417,21.767977,61.486298,2.828442e-06 665,359.5462,396.00476,113.9613,101.87521,9.567359e-07 665,529.28156,432.0664,84.236145,69.47211,9.056794e-07 665,3.0103304,429.2244,53.46906,70.28537,8.8447666e-07 665,242.83469,431.70337,75.94446,68.740906,8.024349e-07 665,413.95203,435.2478,72.08023,66.33893,6.128694e-07 665,338.31006,432.40308,70.726105,70.14813,5.5054323e-07 665,181.98267,435.18375,71.77986,66.73105,5.33207e-07 665,454.60168,434.7489,72.17865,66.83615,4.382964e-07 665,86.576164,434.7225,72.1975,67.29614,3.9814435e-07 665,127.45078,434.3439,72.367134,67.51471,3.749291e-07 665,34.455116,433.96497,76.07674,68.127014,3.736755e-07 665,0.9529322,55.857708,19.642023,116.839035,3.6026606e-07 665,2.5169873,57.134636,60.684917,236.10367,1.5879918e-07 665,0.47358033,9.800749,6.944753,83.35258,4.7055064e-08 665,1.5955421,12.505117,33.59282,70.01959,6.795352e-09 665,476.9817,6.096745,39.451538,54.412197,2.7361189e-09 665,436.6196,3.3797429,41.259674,60.494316,2.5454577e-10 666,480.412,198.03323,24.001678,51.194397,0.36674422 666,499.11172,194.4113,26.296906,54.573425,0.059189398 666,382.85184,190.94662,20.81009,47.716217,0.014142902 666,532.86804,192.20598,27.264832,49.261353,0.002818162 666,430.39966,204.80327,22.069366,45.895096,0.00093346054 666,621.4625,213.6885,17.684143,54.604492,0.00087516854 666,360.42017,190.68062,22.189545,49.487045,0.0008531296 666,616.7685,163.67786,22.378174,85.50363,0.0007955765 666,601.1054,66.87036,37.93036,204.19241,0.00036322876 666,466.19064,205.72726,23.856049,47.99095,0.0002840891 666,616.6353,55.58098,22.511353,94.167725,0.0002023103 666,601.6686,178.11768,37.47809,198.47003,0.00018208113 666,617.46466,309.76605,21.682007,85.96933,0.00017032666 666,608.7666,439.31262,30.380066,67.727295,6.979394e-05 666,2.1055632,109.82982,28.916214,136.25758,5.4959553e-05 666,454.767,151.03558,76.3699,158.46457,4.39591e-05 666,1.4885905,182.27103,18.49625,65.926895,4.1439354e-05 666,604.21106,289.69977,34.935608,187.35828,3.0349387e-05 666,0.9776587,378.80225,18.40312,76.226135,1.878322e-05 666,0.8493897,216.44357,18.732153,77.99594,1.2695105e-05 666,0.9095801,323.81665,18.538874,75.795044,9.785881e-06 666,1.0069433,423.12564,16.620306,78.68707,8.586572e-06 666,339.13742,151.88829,74.93625,161.8827,8.512376e-06 666,3.6710076,294.21005,58.816807,186.29333,7.2643197e-06 666,1.9239649,191.05324,32.43782,182.99898,6.3020393e-06 666,148.04135,427.46286,79.24121,71.55347,4.8536854e-06 666,6.415407,433.93015,77.065765,67.21759,1.6111181e-06 666,324.61316,431.9064,73.59711,68.70798,1.5538541e-06 666,2.7538607,62.81401,61.257668,220.50575,1.1650378e-06 666,1.4390088,57.402046,20.991629,106.83869,1.0116561e-06 666,585.5365,5.675417,53.61017,140.51865,7.8294704e-07 666,586.77203,0.32745117,41.601562,60.03953,2.2259748e-07 666,2.351688,18.671589,59.540466,117.93964,6.405893e-08 666,529.4245,5.0376024,43.128662,52.896202,2.3541883e-08 666,504.2635,2.4035823,42.933228,52.762207,3.2076266e-09 666,475.92142,2.0733204,42.88437,52.77456,9.98146e-10 666,1.05299,8.966663,18.806879,53.279606,9.705597e-10 666,405.9692,5.1723275,44.10852,57.893826,1.5914219e-10 666,383.4396,3.2598732,40.62683,51.97816,2.593141e-12 666,362.2125,2.5005908,39.204376,49.01899,1.1530854e-12 667,612.80524,197.21828,25.235596,50.66214,0.02371665 667,498.62167,211.14781,21.744476,47.535873,0.0031123874 667,619.8544,378.911,19.292297,63.111176,0.001809251 667,599.87524,200.55339,39.151794,221.84163,0.0012120635 667,601.2456,114.7961,37.398743,174.57442,0.00029434205 667,603.03723,360.25006,36.109436,138.67657,0.00021554103 667,616.72485,260.5459,22.421814,91.594574,0.0002057692 667,197.11961,206.54662,42.578827,143.06929,0.00013008514 667,566.39655,229.05305,22.123108,50.37285,7.923629e-05 667,1.3736149,175.0161,17.627525,62.925476,6.03008e-05 667,332.38278,166.89471,61.328156,103.82187,5.0123163e-05 667,559.7467,301.34485,79.39996,173.07864,4.7088015e-05 667,0.89587975,385.82462,18.481617,77.196686,3.346823e-05 667,0.7543864,217.0134,18.588251,76.08365,1.867024e-05 667,578.42926,230.26569,27.943176,49.713226,1.5838945e-05 667,0.9742904,331.5942,18.491837,77.74216,1.5725027e-05 667,1.7513185,187.01021,31.42153,173.81837,1.0635854e-05 667,611.0939,17.485456,28.052795,149.19568,8.818021e-06 667,3.2138216,262.95026,59.288784,218.92508,8.705952e-06 667,0.7895492,290.22458,18.675274,75.91501,8.490146e-06 667,1.0908326,442.56036,22.088398,60.749115,8.149428e-06 667,6.440632,400.71475,84.50453,93.93771,4.9515124e-06 667,1.6978825,90.83126,29.677673,159.06903,4.501761e-06 667,343.4358,149.2364,96.704895,213.37032,3.9174615e-06 667,556.0942,422.58557,76.4729,76.888336,2.9455548e-06 667,93.27977,399.53088,111.19888,95.53018,1.7974008e-06 667,508.35907,426.86145,74.89746,71.43768,1.1557223e-06 667,420.90494,433.2268,72.27988,67.56238,1.0711502e-06 667,67.30271,432.4453,77.28008,69.61438,2.578293e-07 667,2.8672104,24.357553,54.479156,98.87938,8.1765585e-08 667,0.59571046,12.383786,9.122911,79.87962,7.1946225e-08 667,1.3696306,45.471283,20.693653,96.586136,6.911576e-08 668,401.02133,209.25066,27.171051,54.77986,99.864395 668,425.6062,212.02318,23.219543,48.092606,99.66977 668,588.1237,236.37073,22.227478,45.89865,0.017960947 668,412.76566,191.28343,43.404053,96.40669,0.0019178418 668,622.41376,210.11299,16.73291,57.71675,0.001518073 668,617.54846,238.64888,21.598206,82.79994,0.00054189726 668,566.90405,230.55193,25.754578,48.36931,0.00029244446 668,616.99884,157.17334,22.147827,87.33284,0.00015748257 668,583.8445,107.43144,54.005066,208.31993,0.00015561639 668,1.4708513,160.45844,18.179432,72.604126,0.00014661365 668,612.42816,356.04358,26.718506,143.08478,0.00011612174 668,602.2767,224.58928,36.869995,197.22337,7.631724e-05 668,377.4666,156.91733,86.270325,189.19803,3.1324846e-05 668,1.1035148,202.05756,18.640202,72.31232,2.73615e-05 668,1.052522,320.88678,19.233877,137.66599,2.4351979e-05 668,599.1796,8.367848,39.96704,73.98926,2.1615762e-05 668,414.92426,428.2734,79.6084,68.80353,1.7655773e-05 668,611.32214,49.046383,27.824524,160.86314,1.4968778e-05 668,1.8707699,109.77654,32.845886,165.80249,1.444148e-05 668,0.89837813,276.271,18.585995,74.24173,1.2957993e-05 668,5.4457164,291.6633,79.410416,191.374,1.1184612e-05 668,0.98660725,422.7926,16.652967,77.923096,7.2969256e-06 668,464.3722,433.40918,74.87958,65.63916,3.179399e-06 668,3.5745428,397.47656,56.817425,96.83362,2.3545592e-06 668,358.61536,432.06577,78.667145,68.095764,1.5469109e-06 668,25.749567,432.53622,77.453865,69.41687,9.1162747e-07 668,304.53027,433.3598,72.72458,67.88489,9.0796084e-07 668,202.45906,431.87537,71.37508,68.51251,8.877606e-07 668,250.1168,432.03888,72.04668,69.197784,7.1094104e-07 668,92.72663,435.1787,72.227394,66.164276,4.0832367e-07 668,0.6449223,12.391953,10.114175,79.05809,7.557783e-08 668,2.488439,23.572475,55.06726,100.206604,3.95385e-08 669,528.2596,217.9705,41.522827,85.96217,99.981026 669,567.3396,219.45618,41.027527,79.710266,99.96967 669,592.2333,220.90613,32.325317,72.84491,0.039117157 669,610.0461,216.61707,28.038147,62.14612,0.008193347 669,554.4039,222.80096,20.76825,57.736786,0.008036954 669,586.7279,97.034706,50.492798,212.42621,0.0005960742 669,535.58716,184.37303,93.912415,165.88441,0.000565439 669,616.95386,52.17549,22.19281,76.66887,0.00015536547 669,617.3863,155.17516,21.760376,92.48721,0.00014624246 669,608.85736,437.55032,30.289307,66.927826,0.000112881324 669,587.96063,221.27177,50.659058,243.47011,6.9045054e-05 669,617.0903,258.7541,22.056396,85.887695,6.488293e-05 669,0.89536947,352.348,13.521249,50.142456,6.2252926e-05 669,617.8608,115.15254,21.285889,78.75049,4.3564625e-05 669,0.9908008,389.72565,18.281822,75.99078,4.0214072e-05 669,0.9801229,208.20697,17.828999,67.07483,3.3809854e-05 669,0.89677006,295.59494,20.175488,138.37302,2.0675181e-05 669,4.1769485,192.0101,57.459877,241.80048,1.373856e-05 669,1.4358805,198.55544,28.494009,144.64192,7.784802e-06 669,586.60187,21.391733,51.531555,109.01302,7.6223428e-06 669,1.1237223,89.39732,17.496658,136.72075,7.482758e-06 669,5.891507,357.44977,78.91287,133.89337,6.8596405e-06 669,593.0329,3.1535091,43.102783,59.321106,5.301367e-06 669,462.1134,431.66956,77.552,68.49573,2.895903e-06 669,2.0524626,417.1308,34.856846,83.49756,2.1919795e-06 669,331.18552,431.89117,73.4415,68.96243,1.3556628e-06 669,22.486559,445.50323,41.637146,61.01715,8.207249e-07 669,1.3911028,26.50638,28.840748,143.03854,9.16042e-08 669,0.65408003,12.42764,9.9687605,78.256744,4.499962e-08 669,567.59625,4.77167,45.800232,45.45417,9.0629143e-10 669,545.9345,5.092339,41.322876,53.25213,2.3200541e-10 670,600.75684,194.8797,35.282043,70.91489,0.046098363 670,604.57983,50.936882,32.476807,61.77307,0.002896028 670,561.65656,198.64711,38.167114,65.074936,0.0017892035 670,620.0848,173.45036,19.06189,66.904175,0.0012653415 670,610.0297,57.441486,29.116943,204.41566,0.0004968123 670,1.7148446,183.8681,18.266632,66.52501,0.00016150367 670,589.0347,136.04959,49.778137,213.39352,0.00013414821 670,0.8320622,425.29895,13.467436,50.27112,0.00011627356 670,617.7197,262.7359,21.42694,85.379486,9.661184e-05 670,613.13165,369.98044,26.015015,131.38281,8.459286e-05 670,617.4808,317.99023,21.665894,84.36871,6.869309e-05 670,0.94026774,378.86356,18.44515,80.410034,5.4286265e-05 670,1.3272054,137.03471,18.53563,78.74304,3.5735466e-05 670,1.0242643,318.11414,18.33366,77.00806,2.4219267e-05 670,0.974563,211.61078,19.10618,142.09357,2.021798e-05 670,1.5380754,300.4416,33.21162,181.3006,1.766578e-05 670,2.137819,150.56985,33.978306,160.54443,1.4850038e-05 670,5.791156,360.99615,78.8511,131.31839,1.0449453e-05 670,0.6219686,247.64363,13.896531,47.541183,7.775838e-06 670,554.6519,394.34457,84.49475,104.17819,5.280447e-06 670,5.062448,145.93419,80.298965,265.1482,3.8886074e-06 670,2.4644792,442.98917,40.879856,59.08185,3.4468765e-06 670,420.59866,430.4024,72.18207,69.963806,1.0158327e-06 670,222.90495,434.01443,71.62343,67.19971,6.730502e-07 670,352.2775,434.29843,72.04239,67.22168,5.691972e-07 670,311.9007,433.39636,72.09549,67.825745,5.5968366e-07 670,509.60867,431.1436,77.85971,71.72519,4.999605e-07 670,134.25368,432.12802,73.49588,68.36392,4.532058e-07 670,80.14439,432.17273,70.411415,65.53354,2.4071693e-07 670,1.1756258,27.031134,27.001049,138.09254,3.880409e-08 670,0.66221684,13.508805,9.843925,75.88701,3.4678894e-08 670,3.066683,24.312742,83.12409,133.16501,5.868808e-09 671,620.2251,298.8992,18.92157,61.391663,0.0036008281 671,616.38367,194.87022,22.763,84.70686,0.00045129727 671,513.0787,222.36581,40.695374,64.970215,0.00030888317 671,571.99457,220.71034,26.81012,49.71553,0.00029694667 671,601.82056,190.62422,37.32611,186.09682,0.00022561722 671,611.39056,286.128,27.756104,149.67188,0.00015034173 671,617.2375,131.9815,21.90918,89.24693,0.00011617225 671,504.47125,221.03242,26.739746,45.228287,8.540329e-05 671,1.167566,189.48201,17.486307,67.1754,8.1013204e-05 671,617.5174,59.560417,21.629272,78.76766,7.759502e-05 671,614.0261,417.93356,25.120544,87.65582,6.87326e-05 671,601.6272,79.235016,37.514465,193.26495,3.6343972e-05 671,0.8872282,213.00885,18.790924,135.42502,2.9506504e-05 671,0.8910482,406.56107,18.21211,74.57733,2.9239214e-05 671,0.8415926,358.56348,18.559156,76.89917,1.7729815e-05 671,0.8942839,316.8892,18.413343,74.58438,1.1158063e-05 671,572.4715,362.45325,66.67517,130.32098,1.0794034e-05 671,5.758851,231.65594,79.56093,251.64105,9.086402e-06 671,3.480319,397.0628,56.627182,100.96982,7.514553e-06 671,1.3562996,289.77225,33.291676,180.48962,7.5083926e-06 671,1.7300017,457.23242,28.1786,46.910034,6.932244e-06 671,4.2238398,140.47942,57.699574,211.9431,5.6331023e-06 671,432.90204,430.79892,75.459595,68.86624,3.958683e-06 671,613.2836,2.2007942,25.863037,96.62433,2.8708691e-06 671,1.0944096,73.96288,15.548042,139.00311,1.262393e-06 671,478.2926,432.3734,76.49524,69.212494,1.2270588e-06 671,22.284441,433.84494,72.9756,67.90341,8.8613996e-07 671,386.40094,431.37616,74.480804,70.079895,6.743455e-07 671,181.87755,431.8179,72.01178,69.17398,6.4240055e-07 671,332.30582,431.02582,72.467926,70.221436,6.013974e-07 671,100.459564,435.5682,71.39424,64.89816,4.979202e-07 671,543.28033,434.79944,75.67615,68.19702,4.1654397e-07 671,569.8529,23.7147,69.29376,129.52924,1.2306818e-07 671,2.2709816,24.2033,56.89316,100.41617,2.8754801e-08 671,0.6579627,11.984919,9.618957,79.6795,2.1854316e-08 672,506.85553,172.83098,42.575134,127.80049,0.00711197 672,606.58026,199.49564,23.43097,56.51947,0.0051764245 672,621.08386,203.2215,18.062805,55.490692,0.0030564985 672,609.9023,130.33586,29.244385,140.74419,0.00091993914 672,548.7512,215.97939,24.16272,46.263687,0.00048134488 672,415.63635,200.25278,23.927826,46.19876,0.00033831285 672,525.27563,210.34123,34.746277,74.1971,0.00029341356 672,625.00586,175.56703,14.140808,46.426254,0.00024513924 672,616.9656,313.3004,22.181091,92.7475,0.00017859631 672,617.3041,98.164246,21.84259,82.543625,0.00012481638 672,617.4568,395.6908,21.68988,87.14365,9.631333e-05 672,616.8429,237.54623,22.303772,87.84186,7.195357e-05 672,574.50964,111.10749,64.341125,255.25275,6.898792e-05 672,601.7158,241.25479,37.430847,206.73688,5.6230754e-05 672,616.73553,40.101723,22.411133,87.233696,3.898046e-05 672,6.8922725,156.09338,76.66102,270.41867,2.8612103e-05 672,0.8800993,406.72183,18.100979,72.862335,2.7657321e-05 672,571.316,356.52853,67.83069,134.10461,1.994287e-05 672,1.3465544,183.94525,18.969515,125.20877,1.9210685e-05 672,594.4811,435.3822,44.20349,68.613434,1.3538094e-05 672,2.07677,127.34469,28.674961,131.76703,1.3346978e-05 672,0.91461796,310.0498,13.5103245,48.706543,1.1939774e-05 672,1.083571,301.39963,19.604,138.07956,1.0880602e-05 672,600.05536,19.807579,39.09131,192.16336,8.360862e-06 672,3.945241,344.73474,58.612354,145.30164,6.1930327e-06 672,0.8803988,75.560196,15.046704,146.541,5.602329e-06 672,1.5455388,455.7945,28.154951,47.911407,4.619095e-06 672,592.61755,4.75605,41.952515,52.19734,2.2217555e-06 672,448.6896,432.2153,77.928375,67.74402,1.8633912e-06 672,20.934635,394.63898,123.04636,102.91019,1.6957248e-06 672,536.56354,424.4073,77.75592,74.975494,6.553507e-07 672,338.5853,432.55023,72.39688,68.368225,4.9705477e-07 672,298.17676,432.1743,72.494934,68.920044,4.4204418e-07 672,147.01376,429.08408,75.79442,72.55322,4.2481793e-07 672,422.9193,6.1682715,40.5979,59.09943,1.4709392e-08 672,0.51121503,9.958017,7.1883225,83.27586,1.3131355e-08 672,565.3799,4.84847,41.506836,60.10886,5.920684e-09 672,498.56314,6.307741,40.624847,57.7323,3.6649788e-09 672,1.0380192,17.258886,28.742945,146.66245,2.1414117e-09 672,538.0195,6.30584,42.4458,59.82583,1.4575442e-09 672,0.9361198,6.426724,18.921873,55.643173,1.1575869e-09 672,393.73425,7.27904,41.941864,57.024982,8.987175e-10 672,363.38638,2.9378517,39.939636,52.79665,1.08799055e-11 673,495.32126,210.48776,24.822906,45.865173,0.018809542 673,531.1924,168.60573,68.20343,157.3463,0.0024307307 673,570.7478,218.32861,25.332031,52.893677,0.0022304219 673,536.48145,247.18834,28.49701,66.75868,0.0010249105 673,617.484,225.38527,21.662659,78.72017,0.00036074253 673,611.1494,334.35934,27.997253,147.78384,0.00027187847 673,511.78012,208.50717,45.69998,146.0104,0.0001834945 673,611.5492,239.27657,27.597473,164.51353,9.337038e-05 673,617.1581,41.03542,21.988586,78.4749,9.0492664e-05 673,617.07263,159.47342,22.074036,85.18503,8.418306e-05 673,617.031,103.84909,22.115662,81.646805,5.4525874e-05 673,544.2077,217.2571,27.48645,62.41255,4.8723246e-05 673,1.356521,189.84865,17.639881,63.407867,4.29204e-05 673,600.5399,101.48438,38.209656,195.21027,2.9152508e-05 673,0.91812664,221.0524,21.315716,110.465515,1.8439567e-05 673,0.95321697,400.33948,18.123285,71.53992,1.6731334e-05 673,574.6288,422.6557,64.51788,77.00818,1.26227305e-05 673,1.0840698,150.94316,13.368466,47.398254,1.0240113e-05 673,0.713186,262.52148,13.579181,47.453613,9.138195e-06 673,604.6591,0.0,34.48755,62.35693,8.347445e-06 673,0.7930013,297.1836,18.57333,73.925446,7.5439784e-06 673,1.0313119,441.4437,22.026258,61.175903,5.990141e-06 673,3.5723944,135.10243,59.207306,211.26534,4.2677784e-06 673,1.4104403,271.575,33.359173,179.28015,3.6323108e-06 673,241.42274,426.73105,73.60536,69.446625,3.4885581e-06 673,393.0859,156.99663,79.81406,164.08556,3.027295e-06 673,1.9171842,98.04564,27.682367,141.33371,2.8716247e-06 673,3.676927,399.2584,56.66477,94.50839,2.2795632e-06 673,385.0449,429.21774,80.042786,66.81253,2.2061902e-06 673,584.6507,2.921914,54.49597,201.75754,7.9848365e-07 673,181.02043,426.58023,75.57408,71.61743,7.7812797e-07 673,132.22711,427.12045,79.44621,70.22165,5.7927895e-07 673,485.08746,429.76312,74.99426,70.54776,5.525578e-07 673,49.92702,432.9273,78.467285,67.878235,3.0559525e-07 673,541.3879,3.0394695,89.87866,80.60602,2.2526305e-07 673,1.6607162,19.32333,58.193203,111.66057,6.5283987e-09 673,506.36417,2.2131543,68.58493,56.2875,2.7115659e-09 673,428.10852,5.161917,44.952698,49.384743,1.3988168e-09 673,400.93478,0.0,46.960968,52.079453,6.4042255e-10 673,456.2594,4.673062,43.961823,45.501,7.0201116e-11 673,483.74017,0.58266276,44.197937,49.78562,7.112593e-12 674,571.8778,226.93492,41.338196,72.368454,12.216436 674,546.4519,217.86887,40.49884,67.89902,4.3373346 674,443.89276,210.70866,30.591736,53.485397,0.014394876 674,410.60995,189.88307,30.391571,66.12273,0.0029844353 674,425.9135,183.01996,34.87451,74.1611,0.0014884401 674,462.126,213.93771,23.028229,47.726624,0.00043960623 674,617.6471,232.37839,21.499573,77.70236,0.00042365113 674,621.6785,94.18333,17.46814,53.691185,0.00032167835 674,610.31024,146.00581,28.836426,147.473,0.00028217872 674,533.81384,162.13911,99.98401,239.69511,0.00018828553 674,617.16486,315.99387,21.981812,87.15729,0.00016894849 674,617.1303,365.48093,22.016357,91.09018,0.00015333416 674,395.91226,201.54736,23.384766,49.991806,0.00013308927 674,602.63196,250.26613,36.51471,196.7147,7.702517e-05 674,608.92096,438.03714,30.225708,65.86606,3.996019e-05 674,1.1470532,193.48508,17.73366,66.917694,3.72194e-05 674,420.3811,149.58089,76.16968,150.54353,3.1134772e-05 674,609.62024,24.571016,29.526428,143.96565,2.3346327e-05 674,572.2663,350.7109,66.88037,138.42374,1.6681815e-05 674,1.5293685,92.15539,19.304968,137.19318,1.5123504e-05 674,386.9795,394.7116,111.62698,103.29065,1.0150313e-05 674,1.9489567,157.30022,32.121513,162.44917,9.530972e-06 674,608.7633,2.8620508,30.383362,65.5081,8.951642e-06 674,0.732015,237.59578,18.68618,74.908646,7.764885e-06 674,1.0001538,378.65527,19.15188,117.861084,7.5925536e-06 674,0.797666,282.99014,18.682064,73.98346,5.7348125e-06 674,444.50317,424.0929,87.81952,76.86868,5.2803257e-06 674,337.55328,427.80188,75.076416,71.598694,5.0445706e-06 674,0.7562842,332.5424,18.384192,73.037415,3.984902e-06 674,578.5132,1.3679525,44.097534,65.67821,2.929972e-06 674,408.62048,439.31616,47.875977,63.989838,2.779656e-06 674,1.1896021,238.5601,34.259083,188.30763,2.6012535e-06 674,276.33688,432.3885,72.28458,69.3233,1.5984524e-06 674,3.6136882,399.13293,56.427814,94.78604,1.1725415e-06 674,3.310529,74.284035,58.160126,204.94751,8.9494876e-07 674,221.228,429.5868,73.7225,73.08292,7.378741e-07 674,484.03,3.6053874,41.53952,62.710735,9.368269e-08 674,458.15286,4.633952,42.397217,60.922726,3.97528e-08 674,393.49646,4.378975,44.00714,60.941994,1.4494607e-08 674,421.70306,6.324268,41.3284,58.472477,4.8826387e-09 674,2.216924,15.974834,31.528574,66.65341,1.0285154e-09 674,349.1718,0.0,42.93625,50.935745,3.7188575e-11 675,595.76807,133.57397,41.96808,130.08383,0.0051337043 675,618.898,196.76936,20.248657,64.60011,0.0035195283 675,498.3347,176.35541,36.467804,76.67468,0.0014934123 675,621.543,253.02158,17.603638,56.48181,0.0013688898 675,574.30414,144.72867,37.563843,87.37749,0.0008783006 675,568.6078,73.95058,68.72772,285.6745,0.0006352464 675,609.3146,200.4629,29.832092,149.44017,0.00039810885 675,616.55945,120.34382,22.58722,93.23765,0.0003632925 675,616.2862,313.32822,22.860474,92.730316,0.00031513427 675,460.46136,161.79256,40.211365,135.71611,0.00023502171 675,479.6259,167.60414,35.208344,71.48392,0.00018088381 675,617.3,55.84279,21.84668,85.0663,0.0001669491 675,457.75397,206.52983,22.709442,49.87419,0.00013601639 675,601.1814,261.82227,37.96527,203.94583,0.000120481105 675,616.89374,379.82886,22.25293,89.80304,9.2096896e-05 675,586.1499,237.14334,39.156372,84.50293,9.070625e-05 675,463.61578,182.5765,23.66626,50.77176,8.6482214e-05 675,1.0684351,204.2299,18.4665,70.43584,3.5137415e-05 675,609.1281,436.48938,30.018555,67.79526,3.3741017e-05 675,1.737098,118.34396,31.03859,162.45483,1.4744933e-05 675,0.7525692,242.49022,18.68703,77.32103,1.0827066e-05 675,0.8282357,400.7617,18.135967,71.80844,9.802694e-06 675,0.8264982,360.69693,18.275578,72.57858,6.5379654e-06 675,1.1267725,444.15695,21.73669,59.267853,4.110683e-06 675,0.7380217,318.05643,18.458475,73.43448,3.989435e-06 675,1.4132398,72.099625,21.629816,112.91826,3.5960581e-06 675,561.6521,386.25314,77.49457,107.77771,3.5442927e-06 675,1.2315121,250.54785,33.93698,188.781,2.8350096e-06 675,5.524925,213.6573,79.20621,260.3683,2.53023e-06 675,275.91043,87.40271,76.47128,174.6792,2.0578784e-06 675,595.9231,0.3203939,43.22357,97.07398,1.3536371e-06 675,3.4461997,399.16983,56.6378,96.00357,9.712463e-07 675,201.91475,432.44397,71.7939,68.319,4.3804567e-07 675,522.0385,429.7846,72.98352,70.49942,2.871185e-07 675,26.920626,431.63843,77.28956,70.70288,2.509083e-07 675,127.71826,432.0261,70.93834,67.06595,1.4801374e-07 675,489.74106,8.526091,40.218903,53.69001,4.2728075e-08 675,462.7021,7.996216,42.94687,54.274464,2.373757e-08 675,436.25745,7.051099,41.69287,52.49042,5.745421e-10 675,1.5205486,9.546748,32.61684,71.7415,4.82301e-10 676,503.5696,297.73718,25.96817,56.60199,0.011800547 676,561.76306,197.21127,42.040833,76.15427,0.009350869 676,605.18207,278.09683,33.9646,100.260376,0.0037748702 676,605.22437,50.95012,33.922302,89.181076,0.0030466123 676,620.60126,185.76096,18.54541,65.98897,0.0016319737 676,587.4221,197.41615,37.847168,80.36244,0.00097467337 676,623.946,316.6236,15.200684,53.20392,0.0008405026 676,368.40622,195.00476,22.802765,47.600845,0.0006899444 676,609.69,109.32674,29.456665,159.30452,0.0006891034 676,570.8891,97.15214,66.62573,261.99326,0.0005780006 676,617.34326,222.23894,21.803406,92.88652,0.00038494627 676,330.58118,174.31467,31.251007,62.678574,0.00025317224 676,616.9766,365.99002,22.170044,90.55115,0.00015002965 676,1.0725546,118.22064,19.809376,113.75137,0.00010209177 676,613.639,413.0474,25.50769,90.673035,4.4153545e-05 676,572.89264,353.40097,66.25403,135.57993,1.6661083e-05 676,1.1344442,444.2228,21.289635,58.876465,1.5168063e-05 676,0.81699383,394.55698,18.255924,74.09241,1.2642644e-05 676,570.1089,6.2286263,69.03778,154.17201,1.1884268e-05 676,0.96459234,216.52489,18.48081,79.206436,9.557878e-06 676,0.92458254,262.77563,18.320457,73.729095,8.115257e-06 676,278.6891,62.904182,40.626312,99.63645,5.9818526e-06 676,0.8751278,70.70192,18.15416,74.41902,5.948584e-06 676,0.75653076,339.1378,18.368992,72.423615,5.509522e-06 676,1.7922233,167.71547,33.99831,170.24043,5.1251645e-06 676,478.5364,238.51865,81.49173,166.71692,3.51009e-06 676,1.3780054,275.20142,33.78958,177.01953,2.6354878e-06 676,4.2803254,130.01372,80.79047,264.05566,2.592882e-06 676,592.4506,3.2288444,43.02716,64.55426,1.7198877e-06 676,3.6626759,400.62106,56.77925,95.76071,1.5568148e-06 676,275.886,58.852802,83.212585,176.07059,9.860296e-07 676,400.14734,432.89935,74.213776,69.3526,5.635711e-07 676,528.22986,430.8292,73.89844,69.54468,3.793009e-07 676,133.47565,432.98456,74.283554,66.81009,1.8634543e-07 676,450.72708,5.204222,44.018097,50.908566,7.031178e-08 676,1.7807748,35.355507,60.73859,222.5267,1.5827416e-08 676,423.21143,8.0963545,41.831665,52.64735,1.5672349e-08 676,469.43866,0.60993165,64.375854,54.411827,5.5916454e-09 676,1.6936866,12.009362,33.951283,68.66744,9.058525e-10 676,398.55917,3.2765675,42.121826,48.809006,4.4954285e-10 677,347.9385,115.31119,41.088745,113.81871,0.3047709 677,600.51056,129.31183,34.272827,101.22214,0.009682515 677,569.1512,117.12886,68.153076,215.45738,0.007378332 677,621.6048,128.8859,17.54187,54.55043,0.0039503723 677,360.1458,118.795105,22.325165,47.565216,0.0038620238 677,619.821,253.39658,19.325684,62.2464,0.0018245473 677,409.84622,109.46204,37.78943,77.37116,0.0017347716 677,612.60345,150.87401,21.353638,45.464127,0.0015150921 677,609.941,242.99402,29.205688,154.46191,0.0015084314 677,619.8296,188.06068,19.317078,64.28055,0.0013398529 677,621.2258,60.45784,17.920837,64.169846,0.00049411296 677,616.42755,348.09296,22.719116,91.70996,0.00022395902 677,0.9497266,206.75737,18.028435,68.63588,0.00012224076 677,423.81888,76.32481,70.87973,205.84338,0.00011444339 677,612.3795,411.1257,26.76715,92.6236,6.723537e-05 677,319.01614,86.077255,101.86801,205.5205,3.7626327e-05 677,571.8678,350.38168,67.27887,136.5853,3.0358418e-05 677,0.7703784,232.98198,19.182888,137.81624,1.8698145e-05 677,609.00824,2.1668556,30.138428,181.04062,1.4930086e-05 677,614.2077,0.0,24.938965,45.535492,1.2858525e-05 677,0.6325525,247.60068,13.894658,48.62256,1.0681556e-05 677,0.80997396,400.77954,18.170618,71.77411,9.881989e-06 677,0.93708825,117.095345,16.768497,132.86905,6.8172235e-06 677,0.9267619,77.77425,18.155146,75.86435,5.9700888e-06 677,1.0973454,443.8242,21.748913,59.260773,5.1838574e-06 677,0.9691602,317.6473,28.240509,142.61115,2.9657197e-06 677,3.3745134,239.75967,58.20126,231.00586,2.6310527e-06 677,395.5678,158.2591,121.303345,234.63794,2.4048852e-06 677,268.94598,0.0,45.726257,66.23484,1.8936779e-06 677,3.5364747,400.5265,56.549644,94.53406,9.811257e-07 677,50.393745,430.03543,80.35792,71.95447,3.2827947e-07 677,585.6903,0.0,42.949585,68.32256,3.201768e-07 677,302.178,0.33825848,44.081238,52.622856,1.5478132e-07 677,456.98453,2.0766308,43.12039,62.86724,1.5420318e-07 677,273.00174,0.0,84.072876,170.23538,2.7318443e-08 677,2.0255063,25.2253,60.99935,234.74287,4.5785025e-09 677,1.6029037,11.864665,34.180824,69.76023,1.853824e-09 678,321.9283,178.78874,23.304108,47.358627,0.011801617 678,416.59247,191.6953,23.510773,52.56955,0.00167194 678,617.7675,273.0507,21.37915,86.92413,0.00032887052 678,616.06934,221.46227,23.077332,93.37883,0.00012814203 678,616.4937,54.1699,22.652954,84.38206,0.0001261342 678,617.34937,169.16821,21.797302,91.36066,0.00010531213 678,608.1422,432.87924,31.004456,71.539215,9.157718e-05 678,610.10535,6.288724,29.04132,86.60291,8.718536e-05 678,415.4601,87.97787,39.666992,81.0906,6.7021996e-05 678,604.93994,272.60135,34.206726,193.9396,6.235002e-05 678,600.42444,166.45456,38.591553,189.10904,4.9694274e-05 678,0.7890609,215.57771,18.82346,77.86531,4.119176e-05 678,0.9099504,406.80002,18.01882,73.18625,2.814596e-05 678,1.7904801,149.84404,36.530586,159.02449,1.3687178e-05 678,0.9162671,93.72733,13.062975,45.703392,1.3454085e-05 678,599.68604,39.15194,39.2005,179.68646,1.0639709e-05 678,3.8284864,191.77037,57.18576,225.5396,1.0545439e-05 678,0.85951334,346.13037,18.477797,74.89197,8.32255e-06 678,1.0526958,113.87708,14.997021,133.38895,8.251579e-06 678,0.82635987,291.23068,18.495295,73.2865,6.5445406e-06 678,1.3086824,344.1702,32.058502,148.73752,5.4758925e-06 678,1.4818213,456.40286,28.100458,47.898407,4.7687668e-06 678,434.65143,432.09076,78.944336,67.08893,4.530073e-06 678,555.4516,423.80963,80.79755,76.10242,4.35662e-06 678,7.6903224,401.43872,91.59151,93.639465,3.6203655e-06 678,1.4336296,65.037865,20.3649,102.619316,3.2585792e-06 678,412.44388,33.0762,88.70712,205.65224,1.2063106e-06 678,59.552547,394.59442,124.54414,100.85596,1.1410144e-06 678,277.5797,432.51663,73.81372,67.010315,7.641102e-07 678,151.99136,430.98212,76.70703,70.472626,6.852889e-07 678,516.17816,427.06638,71.62244,71.61978,6.649958e-07 678,345.28165,432.91388,71.84772,67.53229,6.2481064e-07 678,209.06941,433.9819,72.12984,67.19998,5.773244e-07 678,70.79431,438.3063,41.436836,68.36255,4.764291e-07 678,589.2076,1.3663704,42.286926,49.33303,2.287031e-07 678,92.842316,453.9882,39.39424,52.779633,1.5949735e-07 678,2.229834,22.16933,57.492287,96.36693,6.160605e-08 678,433.56696,1.9238266,39.11264,56.0593,3.327228e-08 678,0.83925337,13.716697,10.413934,73.85558,2.7306147e-08 678,396.27045,11.173483,45.919983,164.16478,1.0316437e-08 678,457.7747,4.5406055,37.935425,48.03292,4.3813717e-09 678,402.89233,0.0,41.363678,58.116524,2.6601327e-10 679,624.2241,85.23882,14.922546,45.5279,0.0039822496 679,621.8076,235.62854,17.33905,57.625916,0.0012292253 679,613.74146,66.884026,25.405212,103.32877,0.00075778476 679,611.6562,171.74623,27.490479,147.72395,0.00041367675 679,617.2845,401.72778,21.862183,86.98175,0.00017670442 679,1.2337672,204.5158,18.02154,64.95912,0.00015718759 679,617.9265,273.88553,21.220154,76.656555,0.00014603356 679,611.84216,304.68152,27.304504,147.69016,6.490478e-05 679,0.68626547,418.78235,13.6093445,49.600433,5.7149275e-05 679,0.8279305,231.45079,18.925303,137.7888,2.992603e-05 679,594.40546,436.89594,43.065125,65.6073,2.709787e-05 679,588.7347,9.7824545,50.01581,117.86393,2.211613e-05 679,1.020092,344.89517,18.931025,134.91922,1.8129502e-05 679,3.5383105,259.6294,57.814827,218.62323,1.6785643e-05 679,571.9279,362.80777,67.21875,125.75525,9.606458e-06 679,0.8977767,91.985916,13.301734,48.29886,8.805131e-06 679,415.66864,191.71472,38.37555,94.51062,8.60986e-06 679,1.7569467,161.3577,35.49474,159.14215,7.5818734e-06 679,7.0845933,396.35153,91.86798,96.343994,5.6240415e-06 679,1.079607,441.6708,21.976324,61.79358,5.2412233e-06 679,1.2742196,106.55266,18.61301,72.49579,2.8220186e-06 679,1.2228678,138.61201,21.07141,108.21788,2.0421794e-06 679,367.7979,394.88138,120.59897,101.27051,1.9715371e-06 679,456.5678,429.94293,77.312744,70.86316,1.2456454e-06 679,543.199,425.19174,76.86359,74.96948,9.86722e-07 679,62.91551,393.61615,128.54541,102.22833,8.7153006e-07 679,338.99615,431.34018,80.257385,68.85141,7.7290497e-07 679,250.40985,429.27594,71.40173,71.31137,6.265817e-07 679,195.81467,426.98645,71.9476,73.63376,5.8520027e-07 679,153.49295,429.50073,75.66643,72.01578,4.1510128e-07 679,290.96896,432.37045,71.680115,68.89038,3.648689e-07 679,84.61452,441.6465,40.693794,63.249847,2.3933708e-07 679,111.54024,441.6983,40.658432,61.155518,1.2490422e-07 679,1.1026009,20.84235,18.74714,103.88779,7.679672e-08 679,4.8452506,26.95088,79.04985,124.337006,2.7751396e-08 679,1.4458578,11.151876,29.385738,50.601334,2.206696e-09 680,622.63135,236.41873,16.51532,54.038605,0.002238673 680,332.1838,180.14738,26.625275,57.807617,0.0012094033 680,617.0255,183.87755,22.121155,88.285995,0.0002491785 680,608.70215,436.4599,30.444519,67.45334,0.00010315875 680,617.42456,301.01123,21.722107,87.1496,8.876101e-05 680,600.631,180.0827,38.36676,177.02032,8.210398e-05 680,617.1308,390.61005,22.01587,86.26175,7.4924115e-05 680,617.2814,79.40105,21.865295,71.8857,7.384818e-05 680,588.49664,252.90558,50.22882,219.40189,2.573858e-05 680,0.9422502,226.01163,18.400612,74.30112,2.1322978e-05 680,0.91302085,386.58533,18.352139,74.32535,1.204366e-05 680,603.3974,65.491234,35.749268,197.1972,1.1453802e-05 680,0.8315182,97.93885,13.42903,49.29249,8.808356e-06 680,0.8219914,325.29968,18.447678,73.57773,6.881118e-06 680,0.71499354,282.47568,18.552515,72.190704,6.52786e-06 680,1.1581722,128.47723,19.251234,105.9496,6.3295297e-06 680,5.6949677,292.38312,79.40005,189.2096,4.5726797e-06 680,1.6761963,154.60037,34.688892,164.60803,4.128504e-06 680,1.1090779,443.04987,21.842323,60.778442,4.025812e-06 680,555.6013,429.08365,80.29816,71.71173,2.9462012e-06 680,3.6245282,398.6715,56.98653,96.960236,2.1720111e-06 680,333.4103,142.35461,26.83319,62.96898,2.0642194e-06 680,459.8909,432.08536,80.67154,68.508026,1.7227965e-06 680,587.4997,12.317129,51.646973,110.282745,1.2579175e-06 680,419.56125,429.53076,74.47897,71.520355,1.0656236e-06 680,0.9369564,54.731556,18.470028,76.33798,1.0170987e-06 680,236.54013,431.73352,71.40915,67.98633,8.483327e-07 680,508.71298,430.79153,73.01694,68.67987,7.0039835e-07 680,174.49377,432.83383,75.634125,68.03549,5.843904e-07 680,373.1757,432.32178,75.01282,69.16312,5.766025e-07 680,107.725105,396.4132,113.276726,97.59546,4.2460567e-07 680,27.895798,432.2672,76.67885,69.89389,3.641431e-07 680,318.4973,433.8357,71.98544,67.26511,3.3443447e-07 680,277.20483,433.73642,71.88675,66.86261,3.3202056e-07 680,76.09167,429.41638,73.90438,72.15634,1.9829108e-07 680,2.212876,20.250208,57.634483,98.80354,3.8336793e-08 680,2.6700065,21.710964,83.38184,244.64554,2.1815167e-08 680,1.3346932,14.084346,23.339487,63.870243,5.2375375e-09 680,409.8114,0.37212566,42.118866,55.636127,9.004705e-11 681,621.97925,227.73204,17.16742,54.847,0.0020636015 681,610.766,194.3248,28.380676,133.39203,0.0002859186 681,616.444,108.36667,22.702698,76.7426,0.00015528727 681,612.947,285.0168,26.199646,133.76755,8.295977e-05 681,608.00244,436.16202,31.144226,71.64923,7.7305405e-05 681,601.35156,82.348946,37.795105,184.4461,3.8303e-05 681,588.92914,228.04381,50.07892,240.47636,3.656285e-05 681,0.8727132,231.63332,18.197708,76.48872,2.6671549e-05 681,0.7711524,412.69498,13.500598,50.239563,2.6103295e-05 681,1.0322412,346.61066,20.488922,108.727234,1.4310917e-05 681,1.3816667,150.73276,18.325783,125.457214,1.176136e-05 681,5.1662564,144.70372,79.20166,248.62181,1.042628e-05 681,0.708029,257.252,19.290825,141.4314,1.0303237e-05 681,3.4307292,273.39102,58.38689,204.91953,6.9637836e-06 681,2.0455737,183.61998,32.38825,166.796,5.9604863e-06 681,1.1663331,443.1812,21.979506,60.23889,4.157235e-06 681,6.91182,400.65747,85.51822,94.522705,3.6426968e-06 681,1.68104,106.51094,18.454468,75.92125,2.8101267e-06 681,554.26776,388.4291,84.54047,108.03644,2.3678629e-06 681,430.1921,429.419,76.7428,71.244965,1.2916595e-06 681,587.70325,14.959479,51.411377,115.939125,9.2180886e-07 681,469.36127,1.9142969,58.787598,68.93918,8.8631236e-07 681,373.21133,434.67188,71.9841,66.59161,7.9266283e-07 681,451.63736,149.08472,104.326935,209.71555,7.241587e-07 681,502.36194,429.17096,72.55878,70.21484,6.438603e-07 681,188.56044,432.19147,71.79393,69.496765,5.9837214e-07 681,49.768097,431.73328,79.65671,69.93439,3.4609198e-07 681,127.257805,432.4641,75.90244,68.82132,2.826456e-07 681,454.16458,9.052103,117.89963,116.37501,2.2937847e-07 681,2.028986,53.082924,34.133278,183.07715,1.424844e-07 681,2.2548048,18.98517,56.58486,104.352585,3.9128874e-08 681,1.1222957,47.357418,18.720495,78.610245,1.9899112e-08 681,412.88318,3.512767,90.09033,85.709724,4.5424042e-09 681,1.3283293,13.453239,23.552607,64.78371,2.6624385e-09 681,497.7101,0.7218197,63.79013,57.131573,5.5115607e-10 681,405.449,1.0334343,42.9982,59.07029,1.6720278e-11 682,444.0756,42.764187,22.620667,46.1358,0.0371631 682,446.41602,36.2909,37.849884,89.582565,0.0036334456 682,621.27374,134.64743,17.872925,55.19278,0.0005793604 682,437.17105,138.0674,41.120056,101.06958,0.00054319174 682,606.4631,430.93195,32.683594,75.96948,0.00032888743 682,0.9425985,205.0865,14.09859,47.84726,0.00014382313 682,617.67004,163.73369,21.476624,79.4765,0.00013611422 682,451.44922,200.0576,32.34778,73.23088,0.00011250227 682,603.04596,288.39127,36.100708,196.23447,8.961667e-05 682,617.70013,234.57318,21.446533,80.04385,8.516125e-05 682,423.58746,18.989521,38.88791,101.51878,3.8945458e-05 682,602.0439,136.62659,37.102783,184.28815,3.3114105e-05 682,1.3529208,175.93922,20.480082,122.853226,3.089861e-05 682,617.0006,66.13668,22.146057,79.71392,2.9332326e-05 682,0.7380908,248.06326,13.547395,48.788177,1.9640764e-05 682,2.2015047,84.85348,27.538265,154.69498,1.4524989e-05 682,600.0287,23.106283,39.11798,179.34506,1.2965312e-05 682,3.8771892,123.857376,60.44258,199.05186,1.2459715e-05 682,1.1420296,407.75912,18.027431,70.69702,8.66905e-06 682,0.8180835,263.66852,19.387493,140.34119,7.742229e-06 682,1.1341846,359.11636,18.178022,74.71701,7.726489e-06 682,449.26703,167.17621,81.13312,167.23907,7.2492326e-06 682,561.3998,394.28714,77.74689,102.94351,6.722281e-06 682,432.82333,9.360765,45.148132,58.23831,4.644122e-06 682,1.6165674,456.9322,28.351103,47.3208,3.1676443e-06 682,1.679065,338.90942,32.07295,151.90182,3.011527e-06 682,7.3877735,401.21802,91.17145,96.05194,1.7420307e-06 682,461.09512,428.66315,72.73135,70.26047,6.4307113e-07 682,492.62225,8.849623,42.79248,57.83085,6.053055e-07 682,522.432,427.6287,81.558044,72.67621,5.166325e-07 682,321.40594,144.51721,107.565155,214.25604,4.671215e-07 682,467.92612,18.333992,116.686005,105.722336,2.0078463e-07 682,464.86438,9.40224,42.786926,59.488773,1.7541564e-07 682,591.0589,0.0,42.47003,55.327625,1.5777151e-07 682,412.5102,2.790306,39.80899,62.207283,1.4646298e-07 682,2.7819207,19.982819,56.40529,103.5506,4.7751332e-08 682,530.76135,1.4261523,47.011414,62.380505,3.133264e-08 682,1.5726652,22.222136,19.25909,121.1803,2.4514355e-08 682,0.7888082,11.825046,10.729558,79.97519,9.035546e-09 682,558.6368,0.0,43.218872,60.387917,7.263609e-11 683,392.34512,209.26132,26.688843,53.155945,99.861404 683,622.0056,177.2928,17.141052,57.27272,0.0005870059 683,0.8455953,162.36308,11.564991,48.919052,0.00039062506 683,621.57367,119.65573,17.572998,57.75998,0.00029166683 683,617.6573,237.26152,21.48938,80.880875,0.0001813633 683,581.69025,11.994886,56.04608,65.579346,0.00015268102 683,617.28265,64.56914,21.864014,79.58775,0.00013884915 683,610.599,84.359314,28.547668,149.54036,0.00010647947 683,617.4758,291.2878,21.670837,84.529816,9.499173e-05 683,1.8448284,110.441475,21.21712,119.79168,8.434217e-05 683,377.31036,187.9076,59.712097,93.53363,6.8339e-05 683,602.5904,186.29059,36.556274,176.85056,5.221965e-05 683,607.4393,436.1474,31.707397,72.19119,4.099917e-05 683,1.2128149,182.42928,19.18372,74.05525,3.4419892e-05 683,612.3571,321.30234,26.78955,146.55472,3.0126304e-05 683,1.9622477,148.59888,35.790195,163.8635,2.6703416e-05 683,573.1938,65.55448,65.21521,262.1032,2.553609e-05 683,0.9830103,224.56923,18.530891,77.60356,2.3426215e-05 683,482.26288,4.9224544,48.80847,69.60061,1.1334382e-05 683,0.726993,345.53046,13.618929,48.233032,9.001018e-06 683,0.81493896,272.4038,19.722794,135.58597,7.79055e-06 683,3.7045476,192.36115,57.073696,225.99734,7.71721e-06 683,1.0531722,386.72488,18.168226,72.8356,5.744534e-06 683,570.5653,356.48868,68.58136,135.91794,2.5604165e-06 683,1.5677556,456.88177,28.191347,47.42163,2.4473081e-06 683,427.94717,431.9885,79.08301,68.934265,2.3693085e-06 683,458.93182,16.777725,109.702576,104.74982,1.6709514e-06 683,342.2068,141.07745,138.26688,227.03897,1.4961408e-06 683,3.667072,342.81122,57.94252,144.65912,1.1559273e-06 683,3.482142,64.39387,82.10463,247.70392,8.556747e-07 683,561.39703,11.246716,44.563904,51.27528,7.2903146e-07 683,502.4336,425.24707,72.690796,74.1033,6.375181e-07 683,195.74895,431.9466,72.25011,69.44577,4.736719e-07 683,542.89087,425.9666,78.28662,75.03088,4.2437088e-07 683,21.289412,432.16074,74.64585,70.967926,3.7289084e-07 683,62.052734,431.70844,75.22385,68.91708,1.6030128e-07 683,533.8742,5.2100816,40.00757,58.492535,4.312065e-08 683,2.3275278,21.36096,57.22245,99.71871,1.3960322e-08 683,1.1639934,23.391098,18.039772,111.71843,1.1219338e-08 683,505.82245,2.7077231,43.98181,53.1678,4.878906e-09 684,519.29706,203.20499,58.767822,116.4306,99.77356 684,524.99274,207.6806,30.750916,51.805145,0.21741632 684,602.8802,199.09291,34.821594,112.514755,0.0059696855 684,622.45123,238.22029,16.695435,57.57939,0.0018787257 684,537.83276,233.99329,26.815857,73.832306,0.0017180952 684,509.48578,184.8671,125.375305,184.84967,0.00049471785 684,546.5545,34.064487,34.13672,64.50488,0.00031914527 684,610.5531,399.91922,28.593567,110.46359,0.00025931397 684,1.3513696,153.44125,17.92729,77.30086,0.00010989239 684,589.126,234.35396,49.177917,238.14449,9.501365e-05 684,610.8912,113.48894,28.255493,150.38982,7.459758e-05 684,610.39844,5.431172,28.74823,57.78731,7.391449e-05 684,617.54144,85.41177,21.605225,80.3394,6.432738e-05 684,1.0104431,199.70578,18.00803,66.65256,3.8768623e-05 684,616.8181,41.289974,22.328552,80.96544,3.249611e-05 684,2.1172535,98.03426,34.700726,165.07019,2.3989762e-05 684,554.5278,424.87448,83.819824,78.4823,9.937825e-06 684,581.87305,12.948021,56.311646,118.36462,8.170267e-06 684,0.9341944,323.44986,19.375372,132.16208,6.8966883e-06 684,0.81647706,277.1061,18.54907,71.72113,6.338228e-06 684,1.0262549,408.33167,18.097805,71.203766,6.3157822e-06 684,1.6529183,212.94504,32.507763,176.59189,5.4605393e-06 684,519.4534,7.2887435,81.08557,80.47013,3.3327822e-06 684,3.5132635,298.9217,58.4197,180.37909,2.6524776e-06 684,3.7561588,56.824467,79.224495,249.81503,1.1623255e-06 684,466.05563,428.79895,75.09482,72.26346,7.6051015e-07 684,498.2973,8.003294,40.883972,73.002304,7.3604673e-07 684,3.4368963,432.01666,53.2991,67.5325,6.1641583e-07 684,52.69281,431.34897,76.62915,71.02542,2.7956906e-07 684,554.7053,0.90556645,48.053223,47.98213,2.4172547e-07 684,459.01584,9.850918,148.80484,146.11502,3.9330004e-08 684,459.64084,0.1354948,38.34845,61.870766,3.1276212e-08 684,1.7594417,29.348055,31.556541,135.67625,1.614722e-08 684,0.7581783,14.075918,9.423777,76.13187,2.0893096e-09 685,563.53577,145.85182,32.531982,71.26839,0.007235459 685,603.70245,133.26826,27.263367,59.90158,0.0069868374 685,584.5525,156.73422,25.970886,53.109146,0.0019296234 685,609.6995,134.82033,29.447144,153.1161,0.000464136 685,615.76575,15.568379,23.38092,100.62534,0.00035937622 685,615.6956,84.524895,23.45105,102.596016,0.0002309823 685,448.25906,138.29628,35.447144,78.64081,0.00018249975 685,608.22296,438.0952,30.923706,66.71158,0.0001282649 685,569.2987,54.63339,68.64087,244.84848,0.000107264656 685,408.5682,90.26546,27.006805,66.0524,8.3185405e-05 685,1.2968807,186.53563,18.776604,68.25,7.201879e-05 685,617.1103,221.70995,22.036377,87.04814,7.050965e-05 685,612.26904,288.55792,26.877625,111.33215,5.2899934e-05 685,0.9870862,142.83218,14.720882,59.84407,4.3401822e-05 685,602.61194,326.34973,36.53473,164.16293,2.8425799e-05 685,588.98254,189.68002,49.88379,245.33502,1.76708e-05 685,416.86084,86.91657,38.991364,96.44282,1.29124355e-05 685,1.3447754,108.53731,31.344917,153.16292,1.12365715e-05 685,1.732452,197.62456,33.209927,182.57387,1.0577508e-05 685,0.94774824,257.69388,18.475945,71.161865,7.3549977e-06 685,0.8258952,311.22525,18.54798,73.842316,6.390729e-06 685,1.0859343,394.5588,18.048086,70.51141,6.194297e-06 685,0.8263892,352.48242,18.330801,74.377106,5.3654126e-06 685,556.2587,425.3602,80.88397,75.05316,3.489044e-06 685,4.100765,95.33566,78.55284,263.31256,3.0921299e-06 685,361.98825,174.2005,83.06354,163.6872,2.7771123e-06 685,1.2848731,443.176,21.639654,60.139954,2.2088511e-06 685,3.512199,288.4844,58.288662,188.24643,2.0046941e-06 685,3.6125765,431.39026,53.030388,68.091736,6.7527606e-07 685,576.0604,3.664079,58.196472,58.23735,3.4276525e-07 685,478.58255,0.71084315,55.946136,60.089817,1.1879862e-07 685,518.6374,3.5138445,40.210938,54.53875,7.625737e-08 685,1.3982927,10.833445,56.10904,126.33047,2.9243354e-08 685,0.61637455,5.42473,10.724041,86.403946,5.076783e-09 685,1.2406869,8.755353,28.774956,54.00347,1.8908346e-09 686,535.7546,205.8119,37.49237,75.21138,99.983826 686,566.92914,205.41486,28.599915,58.939575,99.94949 686,498.60458,209.54019,21.815277,45.655777,0.44645214 686,485.00345,210.42543,23.628082,48.664658,0.000777288 686,618.14124,184.39987,21.005432,72.413086,0.00077338744 686,436.1136,203.6716,23.760345,47.837387,0.00066586497 686,518.81555,179.68454,81.08447,136.689,0.00053835334 686,600.3711,70.62601,38.2041,184.40952,0.00020028213 686,1.3886808,178.47269,18.57934,67.30029,0.00015132534 686,611.5507,205.02777,27.595947,143.29004,0.00014808208 686,621.8986,141.89594,17.248047,52.35173,0.00012075303 686,608.29333,435.34827,30.853333,69.345795,0.000104453626 686,1.7173975,119.122986,33.471497,160.45273,3.218725e-05 686,611.40405,313.6413,27.742615,146.00601,3.117497e-05 686,0.9596965,214.988,18.506838,78.21942,1.5617212e-05 686,582.9445,11.232422,55.856873,129.0437,1.555812e-05 686,0.88085204,393.0206,18.27746,73.93375,9.129311e-06 686,571.94135,362.07767,67.20532,126.291626,8.139502e-06 686,0.81317466,251.93529,19.374043,133.05562,7.225021e-06 686,3.8163722,203.02379,58.18648,240.25215,4.272771e-06 686,1.1214446,443.58636,21.867762,59.19986,3.5617904e-06 686,471.47742,87.89661,46.65686,159.36577,3.4753423e-06 686,1.3806673,331.26245,32.89482,157.6278,2.5300417e-06 686,587.06683,1.8056283,45.044983,51.859943,2.1618273e-06 686,7.640407,432.76263,76.14064,67.62039,8.4872437e-07 686,492.95703,112.24502,40.86322,94.05143,6.6478026e-07 686,515.76196,3.2671745,44.874207,66.37094,1.440213e-07 686,545.3397,4.906159,43.607178,62.693558,9.649015e-08 686,2.6099756,34.8186,60.15901,200.39922,7.331922e-08 686,489.43512,5.9294467,121.81085,121.02448,6.003747e-08 686,0.84821534,44.767204,18.883982,82.229065,2.8934597e-08 686,0.7081775,11.018552,10.005752,78.41333,1.7196596e-08 686,1.690949,14.007178,36.483276,67.74943,6.548453e-09 687,622.7546,174.34644,16.39209,53.79178,0.0059467196 687,458.70578,217.71321,20.685059,45.722794,0.0025080205 687,497.17667,218.03369,22.275543,50.871826,0.0006862951 687,611.8447,150.08578,27.30194,116.55249,0.000576268 687,617.86346,216.93391,21.283203,87.24483,0.0002109315 687,608.51337,441.04456,30.6333,67.15692,0.00013360038 687,612.06244,343.25388,27.084229,141.06503,0.000113514456 687,601.6206,32.11869,37.526062,209.11887,7.101132e-05 687,616.9606,307.53806,22.186096,85.401794,5.7444897e-05 687,602.28217,207.28674,36.864502,192.29776,3.8851602e-05 687,0.75963056,238.9111,18.9501,79.18344,3.7982165e-05 687,3.9418247,295.761,58.072193,190.52762,3.3371052e-05 687,1.4497242,369.69305,20.19358,105.29486,2.7103351e-05 687,612.8229,0.60360026,26.323792,89.66794,2.3433055e-05 687,554.58856,396.26804,84.558105,102.806305,9.697142e-06 687,1.7035335,201.67572,32.484333,178.00012,7.399688e-06 687,1.5797176,88.8775,20.548386,107.35913,6.5104146e-06 687,0.99539554,331.96054,18.439772,76.57269,4.9182017e-06 687,6.9616246,394.83228,121.943344,100.55124,4.5622255e-06 687,482.58246,159.73857,110.2464,230.68132,4.4306407e-06 687,1.3645598,183.72913,18.335487,70.85445,3.0796048e-06 687,497.0526,82.24888,46.70813,153.2955,2.559655e-06 687,3.0923471,111.150055,58.602005,220.77036,2.1464282e-06 687,59.335846,454.33224,40.4002,48.328094,1.7301927e-06 687,379.9499,432.09595,72.578766,69.440216,1.16e-06 687,440.1247,430.98886,77.492676,70.49292,9.66296e-07 687,521.9567,430.71637,74.13855,72.256195,9.415151e-07 687,549.7144,10.428223,79.64215,69.06163,9.21605e-07 687,167.74867,431.9095,73.67703,69.66199,9.036864e-07 687,71.500755,430.81958,78.27648,69.22095,8.837061e-07 687,208.72221,432.0733,72.795334,69.26248,7.958761e-07 687,284.17825,432.92685,72.204285,68.03165,7.027226e-07 687,2.1365561,437.7947,42.33573,65.78952,6.381799e-07 687,126.792725,433.01367,74.86975,68.71289,5.0211554e-07 687,527.48364,4.485067,44.389526,49.788704,5.8511844e-08 687,0.9625261,48.315228,18.768318,80.551956,2.7694183e-08 687,2.3123894,19.309238,56.317207,110.33606,1.5781085e-08 687,1.3163722,12.772367,23.607128,65.36278,3.800624e-09 688,488.8738,205.32123,25.133087,56.510406,0.023324724 688,607.4819,156.02582,31.504395,76.06622,0.015387959 688,551.8142,221.14626,28.089722,56.628036,0.0018362848 688,503.18954,215.17494,19.289642,47.088028,0.0012014151 688,617.34814,206.43137,21.798523,84.250946,0.0008337344 688,539.5637,123.25114,20.56189,47.297005,0.00074895285 688,539.2873,221.2277,23.059265,50.771317,0.00063878443 688,1.2709172,213.51071,12.736248,46.392303,0.0005976554 688,589.4167,45.52409,49.379578,228.79857,0.00017575317 688,1.2608904,209.72542,18.831284,133.0219,0.0001507049 688,617.0411,263.48093,22.10559,80.16733,0.00014210754 688,612.398,348.5763,26.748657,138.87097,0.000104876846 688,609.10175,443.39078,30.044922,62.32315,9.668106e-05 688,617.6535,63.637703,21.493164,76.996254,7.7222736e-05 688,500.97922,63.39605,67.79245,150.43118,4.1958625e-05 688,601.47815,229.47446,37.668518,192.18799,3.965674e-05 688,1.3665023,241.0556,33.779224,192.7673,2.2680233e-05 688,0.9680127,398.96448,18.261347,75.44501,1.5269528e-05 688,610.6716,6.988317,28.475098,83.03982,1.2982645e-05 688,0.8548153,303.5121,18.646252,74.21451,1.0809981e-05 688,5.6220474,284.70645,79.54214,199.1174,9.980832e-06 688,2.2206903,131.0744,31.599123,164.1282,5.754382e-06 688,1.3632674,444.58844,21.910795,58.77469,3.6197719e-06 688,3.760293,398.82474,56.656982,98.46112,3.2580574e-06 688,368.57495,205.00365,21.550903,46.8562,1.4232746e-06 688,202.10342,427.40915,71.9884,73.08142,1.2347407e-06 688,558.48755,7.2001467,46.325073,46.743885,9.319849e-07 688,34.36793,429.4304,74.07811,73.154724,3.87479e-07 688,79.20541,429.6786,71.92683,70.02319,1.6596935e-07 688,538.991,0.0,43.150208,65.05284,1.4192078e-07 688,541.5442,10.197728,97.60248,124.18383,7.393008e-08 688,2.019829,20.894444,57.167973,98.19565,2.2030425e-08 688,1.1940292,54.07921,20.038677,103.626205,1.086122e-08 688,3.6739748,35.196888,82.08675,211.1996,4.787205e-09 689,584.5464,208.4035,27.265564,54.331543,74.38471 689,599.4047,204.4419,26.344849,62.618774,1.9354985 689,559.3946,209.56755,38.53717,65.50664,0.6333184 689,449.13715,208.4451,22.794891,53.240936,0.10001961 689,568.5238,185.01172,66.1062,113.16821,0.029805163 689,551.5868,226.63248,26.064026,58.476685,0.016129922 689,520.4912,206.39668,28.0094,57.893936,0.008246688 689,612.0081,201.96608,23.9552,47.744003,0.0040294435 689,616.2084,215.14407,22.938293,83.14371,0.0037632282 689,431.05154,241.19357,21.068726,55.247498,0.0014320683 689,505.4548,208.4622,27.073456,54.80037,0.00036505677 689,611.3817,123.86577,27.764954,148.51823,0.00028935238 689,599.08984,221.47708,39.9198,198.95685,0.00012063022 689,607.11774,6.4512763,32.02893,54.253803,0.000115386094 689,612.33484,366.00787,26.811829,136.199,0.00010380694 689,617.82214,93.22337,21.324524,77.990906,8.176408e-05 689,1.5075969,174.3313,21.027655,90.99289,7.257637e-05 689,0.99767745,222.98724,20.852222,107.8858,1.9389741e-05 689,1.0613518,372.7582,18.320078,76.456024,1.5428763e-05 689,3.630687,226.75928,57.95593,250.10611,9.724461e-06 689,0.9757178,280.2267,19.340933,138.64862,8.28299e-06 689,1.0314779,80.489426,18.159508,154.14418,7.0124074e-06 689,3.6559799,397.37552,56.365173,99.49698,3.9908505e-06 689,600.975,10.515736,38.17169,178.74323,3.0401409e-06 689,3.1075685,62.373127,61.46833,238.37447,2.1094529e-07 689,556.72437,0.2645345,82.390015,73.62823,1.6561204e-07 689,2.8797884,20.461668,55.896687,103.982666,3.02899e-08 689,1.2805909,22.679571,18.796099,114.39016,1.5530821e-08 689,548.0335,0.0,42.580933,55.867657,1.3683582e-10 690,437.53464,235.80006,24.949951,73.2466,0.1913233 690,560.35205,237.8268,33.817627,70.30296,0.04573742 690,590.4667,275.373,42.638184,127.240204,0.030346252 690,622.5827,193.74126,16.563965,51.03865,0.01688542 690,419.2051,238.07422,16.765778,45.058807,0.004011595 690,572.66345,206.35202,41.03015,149.13763,0.0037397845 690,488.44272,234.54704,23.323486,58.402786,0.002361807 690,625.3146,313.9255,13.832092,50.12903,0.001552643 690,616.3055,264.4309,22.841187,88.87982,0.0015503392 690,612.3796,182.38683,26.699585,125.65291,0.0014342332 690,625.664,341.5939,13.482666,49.88031,0.000778694 690,496.1698,210.50232,24.66919,57.937622,0.000444485 690,576.4633,199.15088,31.713074,63.667572,0.00031165834 690,539.7949,220.6135,35.643555,72.157776,0.00029466645 690,613.47455,309.9925,25.67212,104.33652,0.00024690691 690,573.62866,327.03018,65.518005,165.86197,0.00015615694 690,417.76624,195.58896,66.382996,142.1065,0.00014515076 690,608.80597,440.03714,30.340698,66.22125,0.00010449965 690,1.5938631,202.87473,18.220678,70.63107,5.5690987e-05 690,3.9500442,195.24545,57.808617,230.24033,1.9525014e-05 690,1.1849227,335.9052,19.240572,135.60526,1.4032821e-05 690,0.9445907,241.42293,18.986444,144.1335,1.0848379e-05 690,1.0759921,422.4391,16.441017,78.806244,8.687787e-06 690,585.0111,54.169987,53.230896,282.24,7.164134e-06 690,381.15945,208.88283,21.860596,48.200027,6.4417377e-06 690,611.2494,48.231197,27.897278,146.60664,5.085804e-06 690,3.3710988,394.98438,56.29603,98.04599,4.1655135e-06 690,2.5086403,131.81313,33.632652,168.71794,4.16109e-06 690,463.1295,92.88302,39.08255,92.77279,2.3784185e-06 690,1.5959762,85.83332,17.162296,155.84042,2.2884024e-06 690,481.15732,53.08453,38.690582,92.19891,1.5988517e-06 690,586.7238,11.049779,52.166016,114.10374,5.513693e-07 690,2.2323797,21.219597,56.085342,105.12472,1.3307655e-07 690,1.8934424,51.239258,22.019142,96.51199,1.2201757e-07 690,440.3323,59.35032,83.45932,197.00098,1.0054346e-07 690,0.84792155,12.037829,10.905651,78.40563,5.8667045e-09 690,584.8177,0.0,43.45044,47.177307,5.5235577e-10 691,524.6793,206.33844,24.836853,49.600418,0.07679661 691,511.26135,205.40678,22.610107,46.809784,0.013525393 691,537.7403,209.86852,25.092346,53.203903,0.012720135 691,375.3286,65.40814,23.118805,45.84276,0.010148496 691,565.2817,217.67639,25.076233,53.730164,0.0017027671 691,410.7135,224.61966,20.602661,52.641846,0.0014404578 691,619.7857,77.12192,19.360962,55.855057,0.00035084682 691,503.22324,219.37946,26.469025,63.86551,0.00027997643 691,611.40485,347.15088,27.741821,159.10477,0.00021073001 691,592.55066,42.07421,46.055115,97.48283,0.0001862409 691,617.77576,148.50114,21.37091,74.04907,0.00016127511 691,1.863029,128.36848,20.569447,128.19072,0.00015621801 691,484.71146,65.10526,24.904968,62.33185,0.00014244147 691,620.8125,316.05304,18.334167,70.38791,0.00012669938 691,608.1068,262.50076,31.039856,150.07816,5.5563985e-05 691,585.89655,90.72571,51.0058,237.27267,5.433081e-05 691,476.28204,217.15575,23.765015,53.10646,4.9941566e-05 691,617.8087,215.34427,21.337952,85.734344,4.8573667e-05 691,1.1203223,202.60712,19.085896,138.71912,4.2777865e-05 691,3.1388965,91.356415,58.036015,216.58875,1.5746906e-05 691,486.85907,46.422,41.7218,122.54468,9.96491e-06 691,436.60986,216.41849,21.780762,46.634247,9.010122e-06 691,1.0402775,313.3927,19.01932,133.33209,8.5340625e-06 691,436.08948,432.24088,76.51898,68.152954,5.6358317e-06 691,3.5747495,233.4184,57.701202,240.60342,5.586942e-06 691,1.4229566,401.1263,26.363499,96.95172,4.272706e-06 691,1.3787948,65.00661,20.634909,117.13504,3.2099877e-06 691,7.4092712,400.21735,90.29659,94.95163,1.6211023e-06 691,521.3141,49.45181,35.66864,88.10721,8.7111624e-07 691,446.60562,4.340334,43.548462,46.531197,4.880586e-07 691,2.3515055,26.690134,56.07865,99.84961,1.3815988e-07 691,472.78574,1.9384668,45.422394,48.66466,6.256379e-08 691,353.99094,8.124318,40.29367,55.728203,3.2925566e-08 691,423.92325,5.8145056,40.025085,56.03427,2.6852263e-08 691,505.3771,100.4761,35.962677,94.16102,2.4618238e-08 691,0.72850466,12.54988,9.919046,84.36235,1.0968894e-08 691,490.1504,0.0,69.34271,64.7444,6.328664e-09 691,555.16034,1.206696,43.657227,57.71469,9.614453e-13 692,610.3168,206.65775,27.93451,51.628418,23.33281 692,532.1028,211.91547,25.828918,52.979767,0.013624923 692,622.7749,229.9905,16.371765,57.713455,0.009546778 692,576.7022,230.57652,27.334656,54.152023,0.008637287 692,503.78653,250.35733,26.733246,72.93686,0.0022105337 692,605.31366,219.70001,33.635437,139.29605,0.0019935425 692,605.878,58.715775,32.911743,90.20065,0.0016676052 692,560.02484,217.88878,22.904358,50.696335,0.00045644378 692,608.83075,441.28647,30.315918,65.43939,0.000101319245 692,612.7487,288.70038,26.39795,146.77719,9.335515e-05 692,613.86707,0.0,25.279602,45.73743,9.030438e-05 692,608.8515,81.32301,30.295166,195.0276,3.293236e-05 692,569.3626,119.28021,67.65698,263.96527,3.1260235e-05 692,0.9324455,234.25006,18.790628,77.658966,2.8083003e-05 692,571.6411,357.22556,67.505554,137.73575,2.3485449e-05 692,582.04144,47.79366,43.608887,120.49512,2.2007354e-05 692,1.08318,78.19292,15.836678,146.64787,1.8842245e-05 692,2.0191,198.42825,33.257946,175.83951,1.7530076e-05 692,1.0931039,336.47543,19.053144,132.97208,1.2438498e-05 692,3.2798212,251.87146,58.207565,222.9943,1.027196e-05 692,598.3325,0.0,40.814148,99.95332,8.208803e-06 692,3.18174,108.28798,57.688145,215.59901,4.6859236e-06 692,1.0805517,423.05933,16.846313,79.21527,4.657605e-06 692,499.84198,95.795395,35.234924,84.58252,3.0920949e-06 692,1.9790202,35.224316,32.89893,146.46352,1.6832283e-06 692,6.658727,428.1428,75.77894,74.41925,1.6315154e-06 692,481.01605,430.70895,79.45685,72.859344,1.5421149e-06 692,1.2061341,9.982813,15.289109,74.10547,3.1796156e-07 692,44.358673,15.304138,81.53388,65.89336,2.682842e-07 692,92.891685,14.137292,74.32896,65.160995,2.2638984e-07 692,158.42523,9.493111,37.76671,45.539806,1.6254701e-07 692,185.71732,10.5384865,36.847748,46.495377,7.84606e-08 692,32.627525,7.9958205,42.587578,51.97118,4.762254e-08 692,218.95493,8.398702,38.85962,50.095993,6.5702457e-09 692,438.26083,5.122386,39.853607,50.672504,1.3591028e-11 693,513.4022,217.73845,25.670837,52.123093,4.485581 693,601.21857,212.3243,33.53424,67.390366,0.12864639 693,569.8776,212.9698,24.20288,48.80397,0.06748173 693,76.55339,211.20226,25.654495,46.2455,0.009749584 693,625.0418,251.86191,14.104858,46.2352,0.0028015538 693,597.94385,38.83398,38.19922,92.66464,0.0022282489 693,559.6607,228.9712,24.917725,52.696,0.0011589269 693,584.1057,177.8368,50.859802,210.64915,0.0007637267 693,419.43265,224.98268,23.109253,56.01741,0.00064968347 693,611.60077,324.02682,27.545898,155.20856,0.00044915173 693,1.5825928,221.03755,18.077353,73.32039,0.00028290218 693,616.76184,69.46954,22.384827,84.86063,0.0002307342 693,3.5750098,208.31433,49.004753,96.289734,0.00018968682 693,607.61664,438.89297,31.53003,67.1409,0.00017402628 693,592.064,81.715576,27.72284,69.74713,0.00013271904 693,583.12726,14.706303,55.211914,232.54985,1.9850275e-05 693,2.0767236,89.738495,33.732716,194.98477,1.4990878e-05 693,0.8042464,370.2182,19.099062,128.08884,1.34612865e-05 693,0.8854085,280.99765,18.523386,138.14523,1.2727229e-05 693,3.0809066,398.94534,57.87129,99.301636,5.094639e-06 693,307.86465,7.615254,43.367737,47.93631,3.7880945e-06 693,562.47144,52.3231,43.652405,112.681625,3.6636561e-06 693,348.48798,7.498049,41.285614,47.19256,2.7063309e-06 693,1.5608416,3.63208,36.866215,86.982445,1.427505e-06 693,102.45677,10.76462,108.324326,112.40012,7.0397164e-07 693,188.06941,9.977673,108.64787,107.45903,5.250916e-07 693,257.02716,11.4443655,106.927155,102.74652,4.758897e-07 693,58.170143,7.9471455,78.76386,77.873665,4.2875538e-07 693,478.05682,4.4682684,39.98401,48.79788,3.6912832e-07 693,160.67802,8.1900625,77.31917,72.39641,3.2597524e-07 693,2.9829917,15.863509,78.90696,152.49481,3.1897173e-07 693,151.92274,6.791294,44.304535,51.39458,2.692171e-07 693,18.710241,4.7839813,42.41877,59.12951,1.4109837e-07 693,499.18417,1.6457683,44.94699,60.06758,8.526241e-09 693,588.3095,0.2035254,41.001343,51.058006,7.6208884e-10 694,467.6415,212.95213,23.080597,56.530777,0.39840987 694,588.4035,213.40857,24.280396,51.5708,0.2889803 694,608.33124,208.97343,29.473755,63.96379,0.042621188 694,552.6231,210.98485,22.925842,49.945724,0.010931453 694,166.58598,220.97021,24.96643,47.36209,0.006264875 694,565.85785,216.35109,23.357666,49.471756,0.002421682 694,505.36127,229.6153,36.657166,80.0784,0.00202174 694,476.81454,228.5873,22.48822,62.586136,0.0018969434 694,611.6845,244.46967,27.032837,55.05365,0.001302786 694,273.62292,206.06506,23.673004,45.110825,0.00043466376 694,620.974,100.804756,18.172668,63.925255,0.00043038052 694,586.7964,109.9494,49.40631,218.10425,0.00025458523 694,600.7583,221.91962,38.168823,176.8917,0.00013967561 694,616.79236,271.71414,22.35431,88.138214,0.000120363606 694,608.4923,439.0571,30.654358,66.15662,0.00011792712 694,611.09784,81.27105,28.048828,142.67722,4.2586187e-05 694,1.007347,399.18033,18.356094,74.83792,3.3952703e-05 694,1.0461239,206.34352,18.794172,136.68248,3.0048259e-05 694,612.88165,332.0594,26.265015,142.53964,2.8451455e-05 694,3.5910776,248.16277,58.52597,236.23964,1.5178395e-05 694,1.072028,301.3423,19.287113,139.61981,1.2974452e-05 694,1.8384871,147.36946,28.44477,135.44286,9.806172e-06 694,439.29398,169.80637,99.18436,197.29749,8.6053615e-06 694,1.0797006,90.033936,16.734484,140.6805,7.714767e-06 694,3.404987,427.22592,53.28857,73.46405,2.1364294e-06 694,3.283379,97.03941,58.42295,222.27351,1.6791719e-06 694,522.32336,117.06516,41.2594,145.01968,9.039346e-07 694,585.5253,11.646523,53.621338,132.52585,8.443938e-07 694,2.4457293,20.609196,56.50197,103.54384,3.051955e-08 694,0.76630986,12.4519205,10.709218,76.16467,2.1799028e-08 695,477.2784,211.52534,20.058746,46.03618,99.209305 695,547.01764,218.11069,20.635193,47.552612,97.967964 695,558.88196,216.90526,19.311646,49.483566,90.33597 695,610.08545,218.26154,23.36316,46.996887,51.036 695,592.63385,224.51027,26.88153,57.827744,44.0812 695,597.2551,178.46101,39.740112,118.0168,0.01988975 695,625.2279,209.87206,13.918762,45.561127,0.01472838 695,612.37726,379.66818,26.76941,122.86084,0.00024209391 695,558.1002,136.37016,78.91565,226.0222,0.00018378015 695,611.2265,241.57019,27.920166,160.67297,0.00017753142 695,2.5946453,128.05814,28.007788,136.62143,5.1610583e-05 695,491.3671,88.76444,40.387115,74.953636,4.165387e-05 695,534.4085,197.54921,60.59424,95.86235,3.452852e-05 695,0.9030933,215.19287,18.30337,73.633545,3.4366498e-05 695,1.0470947,344.66052,18.397333,76.724335,2.0906207e-05 695,610.9958,22.388523,28.150879,106.970566,1.8624785e-05 695,0.7672868,248.9048,19.711685,140.49684,1.4588585e-05 695,460.77026,170.32028,58.74408,112.38925,1.2040961e-05 695,1.0842391,381.51083,19.08524,117.31586,1.1597095e-05 695,3.3028858,257.0252,58.363598,226.25232,8.726549e-06 695,3.3528028,136.79073,59.29098,215.20726,8.455385e-06 695,204.20197,216.8478,22.117157,46.46556,7.292557e-06 695,431.7966,127.6306,134.24832,206.72859,4.3181267e-06 695,3.420114,427.1536,53.3836,74.7659,1.710068e-06 695,580.8326,154.59245,40.788452,90.93706,5.4005034e-07 695,2.178833,37.704063,61.630295,180.91531,2.4845144e-07 695,1.2260385,22.16892,19.2707,118.57801,7.636669e-08 696,556.96075,209.74045,27.811401,60.57193,99.816246 696,606.0269,207.63596,31.004822,60.78055,0.5390025 696,624.4715,203.49149,14.675171,45.151047,0.007945511 696,599.4478,105.68963,37.615295,173.36069,0.004332156 696,537.048,184.57465,64.14331,103.68933,0.000565624 696,615.24054,75.80647,23.906128,87.89273,0.00026271524 696,620.8131,125.12039,18.333557,60.607758,0.00020985502 696,616.815,237.13094,22.331665,93.40907,0.00019762284 696,611.865,367.7366,27.281677,135.85086,0.00016846371 696,1.76212,165.99226,18.15408,71.31357,0.0001224536 696,0.90723515,365.80655,13.323608,48.804047,8.3435436e-05 696,587.401,220.24094,51.745667,262.60104,5.6579865e-05 696,617.3813,302.68665,21.76538,79.791046,5.2498177e-05 696,1.0305688,397.70667,18.203247,75.853455,3.0310337e-05 696,1.8835442,109.968414,32.581272,170.93982,2.2644876e-05 696,1.1333545,301.94412,19.279762,136.92569,2.1497104e-05 696,1.240114,194.52953,20.788431,108.9987,2.0647556e-05 696,615.38654,20.307981,23.760132,89.57967,1.5627356e-05 696,503.29877,121.54081,135.50891,223.20773,1.1942564e-05 696,3.5481136,272.82208,58.619778,211.09137,9.546983e-06 696,0.8542977,271.039,18.444317,69.35373,9.234951e-06 696,436.38297,432.89426,75.21695,66.02524,6.2259105e-06 696,6.666797,397.53662,89.08189,97.60724,5.0708873e-06 696,2.115555,418.43628,34.84129,83.29181,2.6216553e-06 696,529.13727,430.38577,81.84546,70.60574,1.3606157e-06 696,188.57195,431.292,72.0793,69.38275,7.7058513e-07 696,3.5539258,49.976936,80.56571,187.8489,1.6488897e-07 696,3.0537663,19.013073,55.17389,98.934875,1.1895324e-07 696,0.8043535,12.642751,11.800854,75.011635,3.0404394e-08 696,0.95337,33.34844,18.457228,142.86119,8.094622e-09 697,517.537,193.81934,24.704956,54.17981,0.017796813 697,597.32495,125.35318,40.019897,99.33255,0.0071481694 697,625.25525,170.42502,13.891418,47.459915,0.0018701423 697,611.98627,20.073393,27.1604,118.96117,0.0012400801 697,615.05676,91.38021,24.089905,86.336784,0.000864008 697,617.3969,180.37288,21.749756,88.13472,0.00036519257 697,611.97925,382.03543,27.16742,121.20392,0.0002372912 697,396.65402,210.32964,22.710632,52.513535,0.00020653121 697,582.1252,57.574814,46.408875,138.26044,0.000113402246 697,0.824668,426.33868,13.526289,48.453217,0.00010060414 697,618.1371,244.61334,21.009583,80.360504,8.2514125e-05 697,586.9243,259.1525,52.096924,228.33438,7.226461e-05 697,617.0269,308.04788,22.119751,85.80426,6.697108e-05 697,1.398866,195.78099,17.929045,64.66521,6.211759e-05 697,0.7350602,385.5557,13.688385,51.8089,6.1819155e-05 697,600.4748,164.383,38.671875,199.42737,5.187557e-05 697,1.0849088,345.2889,19.394585,136.02396,5.1174287e-05 697,3.856268,346.27606,58.56182,147.60123,1.8011247e-05 697,0.92325765,318.57147,18.540785,76.950745,1.355516e-05 697,2.0761034,146.62794,35.47787,162.5674,1.0003816e-05 697,1.3552231,443.12585,21.830498,59.794586,9.7149505e-06 697,0.7687687,246.95383,18.511366,73.55444,9.006308e-06 697,1.5647693,90.64142,16.160803,145.96489,8.947016e-06 697,3.6345313,182.71262,57.869675,241.10492,8.364466e-06 697,512.9207,97.860466,41.8136,156.02792,8.066492e-06 697,18.276182,430.36325,76.089134,71.545654,1.2842112e-06 697,146.71968,429.17105,73.430176,71.50339,8.274144e-07 697,2.5226824,21.368917,56.569065,99.54558,2.9169448e-07 697,449.82083,2.6980193,43.440796,51.44933,1.2206505e-07 697,0.850223,13.437647,11.228065,73.90625,1.5678388e-08 697,476.44766,3.047881,42.561676,53.50355,4.157578e-09 697,580.7877,1.3352165,42.684143,51.78179,8.8643276e-10 698,564.6746,218.6185,24.462036,46.03894,0.009754569 698,496.02414,210.58615,24.277618,51.005493,0.0013163112 698,611.2527,169.8406,27.880127,126.30319,0.00093712896 698,2.3999236,165.5386,32.624275,71.07979,0.00090499746 698,482.76657,215.36217,24.11908,52.451614,0.0008177708 698,451.18933,65.36274,35.186462,64.50608,0.00019768238 698,611.7967,369.8214,27.349976,132.5498,0.00014985791 698,608.78827,90.52409,30.286255,136.13908,0.00014548212 698,584.77386,266.48584,53.43048,217.81287,9.858585e-05 698,613.58466,242.05148,25.562012,137.35379,5.7939575e-05 698,1.1922665,194.57083,18.301676,71.995544,4.3857595e-05 698,616.041,45.77885,23.105652,78.938934,3.2252756e-05 698,1.5432243,199.64543,28.47117,153.9229,1.3124773e-05 698,1.1405005,407.33557,18.288929,72.006256,1.306761e-05 698,1.0331095,309.04532,18.547539,77.29434,1.2143029e-05 698,0.8958016,264.6604,18.380747,69.87518,1.0636929e-05 698,3.841115,344.08975,58.126637,147.96191,7.896692e-06 698,521.9544,431.2289,78.09259,70.55853,6.627068e-06 698,1.0873528,358.30896,18.476131,77.08432,6.1958212e-06 698,3.339816,103.85358,57.55206,207.74088,5.1834327e-06 698,551.2545,54.32246,30.361877,59.969418,3.6393847e-06 698,439.46948,434.23892,73.03357,64.57498,3.3712195e-06 698,2.8706691,446.58273,42.102455,57.14859,1.2296101e-06 698,18.69381,430.64615,75.98321,71.16397,8.612713e-07 698,535.66077,30.897839,79.02612,144.23416,2.2297864e-07 698,2.7637305,25.079372,55.633003,90.44029,2.1484871e-07 698,1.698951,55.569336,19.599148,90.221375,9.20979e-08 698,592.571,2.1731884,41.10614,47.7972,1.663134e-08 698,511.6818,3.5630894,39.94998,55.769897,1.038316e-08 698,0.9420744,13.519906,11.054898,79.9343,7.854232e-09 698,410.83423,2.8845086,40.43454,52.122684,4.4893556e-09 699,532.7329,205.75084,22.465942,47.21289,0.12881866 699,541.95514,216.06636,23.198547,49.141586,0.003473219 699,601.01624,87.412735,36.91217,193.70796,0.0013207851 699,572.7457,232.01363,25.438477,46.405197,0.0008816221 699,616.71204,55.31051,22.434631,86.36216,0.0006366814 699,523.9882,224.2595,36.222473,129.0093,0.0003631363 699,0.8414315,239.0067,18.508709,78.895584,0.000149219 699,608.6679,0.522793,30.47876,75.42111,0.00013587144 699,449.82562,243.3912,22.7836,54.564697,0.00012688535 699,612.3762,352.8333,26.770447,149.92987,0.000114365605 699,422.9285,196.03885,22.17157,46.56868,9.8895e-05 699,535.3358,71.4235,29.243896,70.130196,9.531987e-05 699,571.29065,191.33778,66.77557,264.38635,8.888078e-05 699,408.9848,225.26323,20.765991,47.953415,8.692642e-05 699,565.23395,41.087463,47.84027,136.57512,6.16623e-05 699,1.3163875,169.73195,13.249938,55.285294,2.9067058e-05 699,2.3764176,173.83212,35.27654,153.95987,2.5400319e-05 699,611.791,200.03433,27.355652,142.80014,2.1445217e-05 699,572.658,428.82333,66.48865,72.307526,2.0910993e-05 699,3.4769728,216.25108,57.600613,257.14404,1.7776914e-05 699,510.07376,60.495274,41.51706,95.37509,1.4591187e-05 699,616.3186,306.509,22.828064,95.24237,1.2771827e-05 699,1.0686256,406.20984,18.176466,72.68356,1.2397701e-05 699,536.82306,282.822,26.854797,59.685577,1.0704193e-05 699,0.78414065,289.17276,18.739313,74.35672,7.733772e-06 699,1.103213,331.35968,18.33853,75.36966,6.051025e-06 699,7.0421324,399.2214,90.19691,95.79996,3.2722003e-06 699,1.5634612,125.93475,18.606092,138.70688,3.083943e-06 699,1.4810905,457.3458,28.404816,46.82428,2.2395052e-06 699,174.82481,431.2984,73.34378,68.15686,1.9948304e-06 699,541.49634,29.79823,43.427856,120.17558,1.5564764e-06 699,579.6985,1.7311133,42.316467,62.88458,8.035024e-07 699,477.99158,16.719667,127.60101,217.67972,7.675794e-07 699,557.64594,2.4500408,43.17041,48.377502,7.875537e-08 699,2.8802052,19.095339,55.26529,100.61563,4.694668e-08 699,0.76020265,12.609186,11.335444,75.10039,2.230534e-08 699,0.888134,33.461285,16.584145,145.65103,3.550634e-09 699,525.7094,2.3773243,41.548645,52.07922,5.6189768e-11 700,614.18567,214.824,24.960999,51.4805,0.39554974 700,586.98737,209.22563,22.085327,45.02771,0.1676362 700,463.7113,191.38583,26.450317,49.460815,0.030644814 700,599.8994,210.5037,22.028442,45.22751,0.01363566 700,436.27103,192.83492,21.543243,45.29442,0.010695149 700,594.0956,217.79485,37.28302,86.08061,0.0065370877 700,621.5649,265.97226,17.581787,55.786163,0.0015975514 700,573.4508,203.06227,41.51349,87.42183,0.0012634702 700,586.4907,206.08992,51.687134,220.28242,0.00036651175 700,560.7794,58.95233,45.45343,88.007,0.00023030023 700,537.35077,205.70882,24.995728,49.29802,0.00018394762 700,611.7791,365.97433,27.367554,137.94943,0.00011490971 700,1.0419824,215.1517,18.71362,73.629,6.926303e-05 700,611.10754,52.01185,28.039124,106.70025,6.824997e-05 700,2.5947876,193.59615,34.29359,162.80559,3.3557015e-05 700,525.2947,28.376173,111.21527,229.19905,2.1247588e-05 700,3.3362777,245.86719,56.70096,229.82199,1.971128e-05 700,1.0771037,342.23022,18.921774,134.10593,1.7331133e-05 700,431.1897,145.06905,71.68469,158.11287,1.3524027e-05 700,1.5473568,166.73206,18.318382,73.834885,7.752498e-06 700,0.8057121,276.32187,18.702473,73.45273,6.3833836e-06 700,510.04095,269.10583,25.451538,58.889282,5.5452824e-06 700,1.2253728,442.878,21.924126,60.999725,2.6643324e-06 700,6.738037,399.9154,90.41022,95.71774,2.556084e-06 700,2.681097,18.980091,55.438927,100.876785,7.100151e-08 700,0.7560108,12.226166,10.871233,76.642914,2.2960641e-08 700,0.9603516,34.452045,18.488398,135.67387,3.374843e-09 701,605.54785,198.65765,33.598816,80.88934,0.011231129 701,609.88776,67.21335,28.944885,74.90883,0.009266019 701,532.59436,209.99348,24.198853,53.31703,0.0026354499 701,585.71356,62.68457,51.91919,250.33633,0.0003996719 701,612.1738,232.9275,26.97284,108.4001,0.0003671068 701,398.7793,219.76721,24.767792,55.246887,0.00026601818 701,584.2477,10.948125,54.375305,135.49069,0.00019931742 701,608.4099,441.12778,30.736755,64.4639,0.00012628092 701,616.1017,139.28876,23.044983,91.64896,0.00011841249 701,588.09125,325.55304,50.77594,164.59207,5.9227146e-05 701,296.45908,189.17267,30.402985,62.85692,5.837535e-05 701,537.23157,185.01764,38.982666,90.322296,5.7780046e-05 701,454.91882,195.65881,73.746216,161.34436,3.217368e-05 701,1.2096452,191.78667,18.25007,70.70799,2.9362891e-05 701,2.1480942,101.45124,34.344166,169.15442,2.1001568e-05 701,0.870931,338.6536,13.428213,49.208466,1.8640032e-05 701,0.75184,231.43501,18.459368,75.6479,1.2412819e-05 701,1.199279,391.94165,18.293776,75.17908,1.2135017e-05 701,0.8828158,266.36215,19.585766,135.43607,9.82435e-06 701,3.6525767,191.49452,58.106083,243.64613,8.024292e-06 701,5.7667317,359.7876,78.3769,132.49548,4.7813446e-06 701,2.2028434,419.8604,34.839268,81.70053,2.123073e-06 701,140.88408,431.86908,74.661865,68.240875,1.0403231e-06 701,318.0278,5.967497,43.054108,62.274483,1.0298159e-07 701,2.4786572,19.626183,56.758312,101.38024,4.5367525e-08 701,291.9933,4.912031,43.819824,62.082436,4.0146432e-08 701,1.1272168,23.058907,18.373514,113.81388,2.3313993e-08 701,433.1445,11.740206,88.55185,69.08171,1.0298075e-08 701,439.84085,6.1414227,40.634827,47.68158,7.7047115e-09 701,538.95026,6.105044,39.401733,46.25171,2.771508e-10 701,512.4277,8.198002,38.776733,53.747887,7.8862875e-11 702,0.0,261.93576,56.218987,182.57507,14.847307 702,610.4063,138.89146,27.789917,114.676926,0.0457414 702,526.67554,208.72781,22.494446,48.853973,0.01449012 702,601.43024,212.68968,36.0,64.59126,0.0138879465 702,0.44938722,299.9312,19.173632,90.87546,0.013619312 702,11.93699,315.0222,25.093433,64.03757,0.005373571 702,542.4663,215.83617,25.170837,51.952805,0.0048248647 702,622.505,137.04672,16.641663,50.393875,0.0031513632 702,0.0,277.43762,17.081244,58.977173,0.0007843261 702,620.411,94.729935,18.735657,65.59325,0.0005307667 702,477.51773,223.8848,21.633942,45.069336,0.00038587028 702,300.12296,186.82968,23.066132,51.950928,0.00035491746 702,571.9471,128.11267,64.533325,229.96454,0.00024495882 702,607.41144,440.5346,31.73523,65.36771,0.00019943909 702,616.78156,34.010635,22.365112,88.281075,0.00014878731 702,1.5166798,345.15195,20.434103,105.182434,0.000117405645 702,570.0496,356.02844,68.883606,139.38458,8.459939e-05 702,0.9538168,409.29016,17.016624,92.40057,3.4224875e-05 702,0.80776286,160.64323,19.595438,161.57796,3.2052314e-05 702,613.6093,0.0,25.537354,49.044506,2.7806485e-05 702,612.52435,310.78906,26.622314,161.49881,1.7693397e-05 702,2.348431,415.98703,52.126427,83.977875,1.1588782e-05 702,598.02106,4.562448,41.12561,224.42195,9.503e-06 702,484.9489,108.56121,131.1352,226.03806,8.927464e-06 702,519.4257,107.37761,33.643433,69.189575,2.7862116e-06 702,466.73236,427.49692,73.86273,72.067535,1.6897227e-06 702,2.3300521,20.31471,55.978302,99.69894,4.3274394e-08 702,0.74538577,11.816433,10.318817,78.32973,1.5200536e-08 702,1.0293335,35.960403,17.918541,135.8215,3.888512e-09 702,577.448,0.0,44.405273,65.96704,1.5719013e-09 703,106.700615,200.06384,26.754097,50.558456,0.0059472867 703,98.7193,199.12779,48.12256,105.20274,0.0024999299 703,611.61566,122.91098,26.687866,133.44977,0.0016667912 703,616.55426,86.74256,22.592407,79.38126,0.0011034964 703,584.3595,160.80502,36.34076,79.350006,0.0001976332 703,611.5928,348.99225,27.553894,142.15457,0.00018951503 703,617.0588,234.95224,22.08789,88.09656,0.00015735166 703,1.2798544,200.58803,17.628592,67.57744,0.00012558891 703,2.0117285,197.76305,28.185883,146.79488,0.00011653121 703,570.76447,103.350006,66.596924,224.31772,0.00010654122 703,616.9047,285.47113,22.241943,83.70517,9.5185795e-05 703,74.72299,194.9848,22.750168,45.76419,8.0393795e-05 703,599.41754,233.94191,39.729126,211.06853,6.2492945e-05 703,5.4857163,196.6341,77.146774,259.69342,5.9617825e-05 703,579.6089,429.40213,59.53778,70.47351,5.9149483e-05 703,1.0115112,237.15544,13.299492,47.345413,4.7332764e-05 703,1.0186324,335.8609,17.62195,71.591034,4.6755315e-05 703,128.06961,205.38457,39.806656,135.59944,4.5752535e-05 703,1.762671,266.4792,33.573376,181.61795,2.3693497e-05 703,593.3417,213.33159,23.791748,49.394577,2.292995e-05 703,75.62741,183.30212,106.52284,231.97058,1.9667194e-05 703,589.0489,10.24888,49.90558,127.444466,1.7108647e-05 703,429.83276,433.16605,76.76282,64.58386,1.5777781e-05 703,1.0222412,392.9556,20.460379,106.79587,1.1792504e-05 703,309.2256,181.64516,46.59778,108.95485,9.399365e-06 703,1.931119,94.1487,27.615913,164.72804,5.413727e-06 703,5.7732162,387.55576,90.14822,106.675354,5.1089337e-06 703,473.9733,434.87634,72.15628,62.94467,4.563287e-06 703,290.3889,146.20639,113.96896,224.92545,2.4062433e-06 703,324.96243,433.1514,71.935455,66.59674,1.0895467e-06 703,84.676605,300.38425,20.212593,49.721466,6.6281774e-07 703,3.0021062,24.12259,54.69365,97.04965,1.5872862e-07 703,0.8841614,14.336182,11.372191,74.51171,6.4855094e-08 703,1.1283114,40.401974,17.427288,124.633865,7.975133e-09 703,81.871826,5.0886135,42.59371,45.13501,8.810216e-11 704,24.517632,192.46521,36.93716,82.96231,0.026438909 704,498.09897,225.28117,22.91043,51.603714,0.0058453255 704,501.77924,224.2975,40.182983,92.355576,0.0017900226 704,614.71014,112.130226,24.436523,82.08585,0.0010503306 704,621.96576,233.76141,17.180908,54.5766,0.00097512803 704,598.7544,230.03223,24.686523,55.57715,0.0007743011 704,6.511009,160.4379,66.28155,172.60138,0.0005425405 704,611.10223,164.8947,27.684387,129.67918,0.00048749597 704,617.57855,260.795,21.568115,81.37204,0.00030993097 704,1.6788119,197.59654,17.593845,77.66286,0.00030521466 704,577.59296,140.51698,26.420105,50.317963,0.00028103899 704,597.6466,206.57927,39.524414,174.6587,0.00021937482 704,551.8131,227.72949,23.595825,48.452606,0.00019946213 704,610.74695,320.18915,28.39972,148.01242,0.00019884808 704,160.66714,210.23848,26.271088,50.219406,0.00015247875 704,613.3823,418.66888,25.764343,86.60452,0.000105281004 704,1.0825546,243.10458,17.688229,75.96954,7.449314e-05 704,1.1343116,391.4783,18.479467,75.310974,6.7062596e-05 704,0.8948869,365.30807,13.650566,50.75592,5.2913863e-05 704,2.8830917,164.53848,34.044567,87.6879,4.435799e-05 704,580.79285,7.3359246,57.132812,258.1147,3.7720314e-05 704,2.027046,258.65875,34.14878,194.60309,2.9689354e-05 704,132.62875,192.19066,71.34886,147.31084,1.6800472e-05 704,0.9340609,315.3772,18.761988,79.803894,1.5041488e-05 704,3.5483286,395.69403,57.254395,99.67264,1.4804013e-05 704,1.6102369,93.86453,16.435913,146.98412,9.643393e-06 704,599.7292,4.793916,39.416748,81.62567,4.0555065e-06 704,338.18533,178.07137,78.70276,162.90736,2.4805147e-06 704,24.4085,430.15973,76.76935,71.82794,6.595666e-07 704,2.3952897,23.319113,56.09738,87.79521,2.3021389e-07 704,1.3527043,29.506025,19.074245,59.939865,1.1986106e-07 704,58.22332,8.637321,41.786446,70.92375,3.4062282e-08 704,41.183075,12.929005,109.56082,97.36084,2.1349527e-08 704,72.40085,0.0,65.35472,51.013515,1.8782254e-09 705,68.79038,187.65169,36.519997,101.44954,0.005648694 705,620.37695,135.75816,18.769714,58.74582,0.0054915813 705,179.71657,209.41888,35.153717,81.85501,0.0025854309 705,610.6887,109.78648,26.950134,47.404312,0.00093410356 705,600.1228,77.04782,38.23456,129.03932,0.00065524614 705,620.8276,404.5143,18.319092,57.72928,0.00046663027 705,610.3428,142.30336,28.803894,149.49248,0.00043174205 705,620.8552,311.1193,18.291443,58.74109,0.0003718024 705,616.6839,340.9833,22.462769,83.19568,0.00029614408 705,585.7558,322.28537,53.39087,170.19412,0.00011808613 705,607.85095,438.7297,31.295715,67.84772,9.5308416e-05 705,617.1988,236.27457,21.947876,83.53052,8.773804e-05 705,85.33505,191.37103,43.4644,118.17148,7.937068e-05 705,0.947319,385.82303,13.379592,48.64731,4.9326503e-05 705,0.78698814,219.72948,18.456776,76.420364,4.5535493e-05 705,522.8402,109.722336,26.265625,62.203964,3.8128823e-05 705,1.1694304,328.68677,19.417295,132.84586,3.1734773e-05 705,3.4831154,265.2278,58.084724,212.29266,1.745081e-05 705,587.1073,10.315872,51.851074,133.35861,1.6298367e-05 705,1.7036898,174.1889,17.087965,69.88785,1.3965054e-05 705,1.9807748,198.70108,33.239258,181.0405,1.3730714e-05 705,0.87688154,283.52304,18.625126,71.52524,8.468362e-06 705,7.084424,399.79117,90.90557,95.90738,5.1520587e-06 705,38.743206,154.72517,116.18826,219.56862,5.0889284e-06 705,2.1378126,419.5939,34.875595,79.106476,2.9579296e-06 705,549.04297,426.9104,80.946655,74.81299,2.723949e-06 705,2.4192457,93.45285,33.9672,171.11572,2.2128781e-06 705,570.648,73.924484,42.794434,96.12361,1.2727721e-06 705,494.56714,432.27316,72.69452,66.313354,9.0965955e-07 705,1.0802946,23.382622,17.763187,113.789925,4.9815384e-07 705,29.20562,446.28073,42.237053,58.61255,3.5184533e-07 705,51.751507,429.39853,77.17464,71.14673,3.4449292e-07 705,3.0316212,22.329477,55.60825,102.674095,1.5343392e-07 705,1.3271648,9.88725,20.685905,49.52426,6.4161895e-08 705,5.804678,7.475674,58.831833,47.08561,1.5603328e-08 705,45.23195,6.97245,42.61165,45.564537,1.4189168e-09 706,618.9471,182.63756,20.199585,76.201096,0.005085601 706,601.46576,122.279564,37.68091,194.54861,0.00059147156 706,101.87594,196.77016,37.00138,92.85487,0.00046895142 706,343.51364,173.25859,31.981537,67.67964,0.0004514996 706,617.4595,132.25992,21.687195,86.63139,0.0003485258 706,617.5231,387.5057,21.623596,80.53473,0.00020343516 706,617.82684,256.6878,21.319824,82.039154,0.00012619604 706,359.57773,219.50438,23.704742,52.691696,0.00011041597 706,1.1660156,189.89868,17.96598,70.45358,9.452019e-05 706,608.83374,437.522,30.312927,68.96051,8.680679e-05 706,617.6235,74.022606,21.523193,74.62299,7.840051e-05 706,192.47964,207.1042,30.057861,71.205185,7.802951e-05 706,371.20078,212.6679,29.873535,64.281906,6.8387766e-05 706,601.89624,298.38638,37.250427,185.95062,5.0997336e-05 706,617.5961,329.35864,21.550537,80.78116,4.049073e-05 706,1.251722,407.04605,18.362833,73.42297,2.5634617e-05 706,1.183772,352.39398,18.35742,75.27573,1.7143599e-05 706,3.9323049,344.1348,58.52499,146.38934,1.6944356e-05 706,3.8533204,178.51006,58.80827,253.65004,1.2571074e-05 706,104.94398,165.69977,74.24828,149.862,1.2503602e-05 706,0.8172502,255.10313,18.416607,71.691666,1.0635772e-05 706,0.8774797,303.29852,18.699125,76.8678,8.191504e-06 706,2.1098201,122.86003,28.36245,131.15482,8.090497e-06 706,610.5926,1.3539551,28.554077,57.450134,3.503682e-06 706,2.8452914,445.59308,41.235367,57.17746,2.3817959e-06 706,556.75793,426.47772,75.88428,73.52139,1.9609315e-06 706,324.88385,430.2538,71.89346,69.07901,1.6706645e-06 706,588.628,23.44598,50.279236,95.03987,8.089414e-07 706,26.458565,427.76764,75.13229,74.177,7.467258e-07 706,2.58806,21.667397,55.365406,96.83513,4.7406484e-08 706,0.7855233,12.190551,11.441158,76.26007,2.1641188e-08 706,0.9092033,35.06214,15.679206,139.0653,4.215276e-09 707,471.6584,164.83456,21.754395,50.105133,0.020048548 707,622.0697,170.7319,17.076965,54.784424,0.007092148 707,368.74713,222.81729,22.134583,50.613617,0.0043972996 707,332.8743,177.00468,31.07129,62.565002,0.0035262173 707,2.8028662,152.7886,33.835896,76.901474,0.0025437567 707,312.55188,182.20485,22.089874,50.094055,0.0019564638 707,122.510826,196.59375,36.809563,88.256256,0.0017010905 707,611.8255,138.84753,27.321167,119.31763,0.0009824621 707,622.3949,394.9563,16.75177,51.3656,0.0005480466 707,1.2870927,166.39449,13.725491,60.351517,0.00019585564 707,620.2118,18.61089,18.934875,59.015965,0.00016748685 707,612.99603,412.691,26.150635,88.058685,0.00014375169 707,587.9071,142.90636,50.636475,225.56364,0.00013513253 707,611.5962,328.46567,27.550476,131.15152,8.1578386e-05 707,607.5261,68.889015,31.620544,78.62054,6.027941e-05 707,571.6669,366.32495,67.04303,113.769165,5.4643835e-05 707,271.29715,391.45557,123.51056,102.663025,5.3376396e-05 707,1.1352133,398.34976,18.377943,73.81354,3.8832375e-05 707,0.7899308,203.75087,18.740255,81.184586,3.0276073e-05 707,3.0752215,135.03703,57.067135,206.10887,2.1339254e-05 707,374.03015,427.73428,77.03851,67.630615,2.1167012e-05 707,3.602041,288.32907,58.229694,191.61606,1.934438e-05 707,1.0058349,263.90237,18.342743,69.96643,1.8293384e-05 707,1.050962,338.50375,18.510914,77.980804,1.7793163e-05 707,586.713,35.025406,51.35956,201.29454,1.73728e-05 707,285.67627,441.94724,43.7312,56.8649,1.7048676e-05 707,329.11032,439.31625,45.641083,58.335175,1.41487235e-05 707,1.2705631,248.53021,28.789906,153.85382,7.3005453e-06 707,603.0054,0.14295085,36.141296,55.15614,5.7358193e-06 707,2.129611,419.6019,34.760357,79.69046,3.4542084e-06 707,99.47411,152.66931,109.41152,199.1778,3.047549e-06 707,27.516872,428.7608,74.52338,72.24448,9.815693e-07 707,0.77143925,13.439199,11.056977,75.31332,2.6706589e-08 707,2.4982,22.913034,56.57554,95.160385,1.8269022e-08 707,543.42914,4.413649,42.392456,50.880642,7.61651e-11 707,514.18384,2.1133676,40.118347,50.757286,7.898175e-12 708,398.42508,153.05882,37.021942,81.208374,0.0685011 708,376.0637,210.4217,32.905396,65.49129,0.00529334 708,357.98172,216.87863,25.525818,50.059723,0.0020848738 708,621.4311,61.40204,17.715576,55.30114,0.0012102257 708,305.1965,178.93207,26.201965,55.103333,0.0010172471 708,617.25305,106.51043,21.893616,80.84666,0.00067790644 708,385.80554,186.98077,45.57602,101.030426,0.0006487937 708,122.35395,195.65085,36.862724,83.78714,0.00014069071 708,608.68976,440.91794,30.45691,64.19046,0.00011463651 708,602.45416,132.6612,36.692505,166.05081,0.00011211369 708,0.85865396,412.7884,13.5487795,49.086365,7.112118e-05 708,0.8749064,378.661,13.65497,50.93509,5.990307e-05 708,480.61304,162.67183,80.26538,162.14125,5.756214e-05 708,611.82697,242.63383,27.319702,139.85481,5.5768793e-05 708,1.0814592,192.04428,18.006771,69.72827,4.9992075e-05 708,612.79706,348.17953,26.34961,136.03433,4.81687e-05 708,609.71027,25.938608,29.436401,130.9643,4.4915974e-05 708,1.2194881,344.04477,19.524445,133.79602,4.2615193e-05 708,3.954336,187.2991,57.884182,242.40231,2.6555104e-05 708,3.9272835,344.61365,58.75198,143.0759,2.4565921e-05 708,617.1107,178.90434,22.03595,79.73744,2.339304e-05 708,609.9067,3.4994304,29.23999,61.774998,1.2343631e-05 708,115.166855,158.7568,72.9259,150.26718,1.1675375e-05 708,0.83015627,247.7867,18.407188,73.418594,9.954252e-06 708,0.9755998,304.12088,18.686094,77.18567,9.0611e-06 708,1.9676669,152.85057,33.825317,157.20607,6.532568e-06 708,2.1468475,418.5375,34.785698,79.75531,5.780706e-06 708,19.376879,427.7546,75.37585,73.9093,1.3654668e-06 708,536.3403,427.66647,73.16925,72.17621,7.6881463e-07 708,581.85406,2.6382585,45.10504,46.639435,2.2757479e-07 708,2.4666994,44.642918,59.99363,179.6549,4.7392025e-08 708,1.12528,23.952208,17.99908,112.62009,2.4374486e-08 709,599.6443,217.18373,36.544067,60.927017,99.84634 709,514.2974,203.93617,24.857056,53.270126,98.42857 709,569.3277,221.00772,26.069214,55.4942,97.74673 709,585.0303,221.90709,18.422424,49.882523,2.4643376 709,620.97675,212.68642,18.169922,50.599777,0.90150553 709,528.25775,207.72308,25.574951,48.20117,0.018695038 709,477.86826,207.73515,23.302917,57.824753,0.006561033 709,459.72855,68.57656,53.81076,209.7066,0.002675004 709,598.77905,190.00052,40.367615,252.14026,0.0015689115 709,605.29144,81.48915,33.266846,216.06306,0.00072288356 709,617.0119,70.17657,22.134766,76.3066,0.0006596753 709,607.777,436.33664,31.36969,67.249054,0.00044060388 709,553.6245,199.7617,70.96161,97.95491,0.0004332087 709,440.3938,77.2751,35.922516,94.59186,0.00039315602 709,313.05234,179.02122,23.881989,55.933807,0.00012443296 709,496.9156,167.34859,64.0755,111.71388,0.000106294 709,125.17091,202.07965,31.896332,71.42981,7.3837415e-05 709,611.4253,330.11813,27.721375,140.64343,4.7790287e-05 709,1.4377311,191.70027,20.109398,96.986465,3.9192484e-05 709,190.91779,204.9209,31.068726,64.51434,3.3310545e-05 709,463.83188,105.128815,146.92209,240.43951,2.9280009e-05 709,561.35474,139.25691,27.419739,60.206497,2.7072867e-05 709,4.4840527,210.68094,56.65358,232.43292,2.225586e-05 709,1.2208114,341.8119,19.29607,135.25848,1.7474293e-05 709,0.7987777,244.14558,19.96403,144.96446,9.914991e-06 709,598.3302,2.8996062,40.816467,96.64581,7.988862e-06 709,5.7473764,358.6901,79.159195,131.95538,6.9074304e-06 709,1.2967188,94.177475,15.386641,141.58318,6.0255607e-06 709,2.2242708,418.19,35.1188,81.44229,2.5619065e-06 709,2.7608595,24.480177,55.46688,91.37884,5.824839e-08 709,1.2956047,25.083693,17.558039,104.197174,1.3103932e-08 710,594.9012,200.61441,28.78424,59.73593,90.198784 710,579.01306,172.69273,56.510315,105.098465,0.035197202 710,525.719,203.51926,36.331787,65.587494,0.020861339 710,608.4145,215.60031,28.974182,54.548553,0.015902665 710,580.3049,214.21263,25.890015,54.607956,0.0106070805 710,624.1962,31.129025,14.950439,51.49233,0.0010369007 710,491.9921,84.786316,29.644562,61.738052,0.0003448828 710,616.5911,50.970562,22.555542,90.89636,0.0002918282 710,612.4487,363.6659,26.697937,138.27594,0.0002525742 710,1.1680168,209.08682,18.04201,70.27048,0.00017124038 710,535.97974,97.98078,26.406372,54.981514,0.00016329963 710,126.41162,203.50165,31.001099,71.77066,0.00012942681 710,609.1592,0.0,29.987488,96.279205,7.6781165e-05 710,599.24646,211.60677,39.900208,212.50725,5.4278917e-05 710,617.364,286.5294,21.782654,89.01407,3.6950332e-05 710,1.3395085,225.62909,28.45576,157.02267,2.7082164e-05 710,549.3844,99.54142,87.53259,262.96536,2.4813244e-05 710,1.2004566,405.55963,18.311064,73.5845,1.564961e-05 710,315.83514,165.78261,31.966125,72.18576,1.4555427e-05 710,3.292907,250.53069,58.04811,231.13298,1.4438092e-05 710,1.2627327,338.67755,18.16214,74.864746,1.3579251e-05 710,440.4601,147.20795,76.05722,180.57712,1.1241116e-05 710,198.65579,205.85835,30.922836,64.92409,8.555478e-06 710,1.875962,358.06802,32.936333,136.6672,5.8132905e-06 710,2.051831,112.27839,33.85974,171.12137,4.919346e-06 710,6.5740657,398.136,89.86877,98.353,4.7565036e-06 710,324.09262,431.13562,72.938446,69.95334,3.4837442e-06 710,567.2176,10.394662,71.46747,137.87154,1.5569217e-06 710,588.53955,0.0,42.39868,53.021595,1.8697347e-07 710,1.1584285,23.961908,18.69236,110.87086,2.4496597e-08 710,2.19174,21.239767,56.96443,99.226616,2.449608e-08 711,541.66113,217.07901,26.668762,46.449554,99.71927 711,558.9668,212.66753,34.091675,53.81407,0.026714409 711,532.27484,75.61403,30.716064,76.35097,0.017610388 711,202.91284,204.06454,24.653519,56.774414,0.0028434515 711,430.60977,205.73215,21.564209,45.61322,0.0027300888 711,616.1188,170.51195,23.027893,82.604645,0.0022192318 711,599.8774,153.20393,39.129272,176.14925,0.00066711527 711,622.3393,73.87652,16.807373,51.340645,0.00064459804 711,528.8756,180.24086,68.602844,106.20256,0.00040138693 711,573.9818,59.011982,35.730103,80.10948,0.00021912287 711,611.64514,335.3389,27.501526,134.90799,0.00019375041 711,133.96912,182.33267,38.457336,98.69443,0.00016007229 711,346.4808,171.07317,25.014679,61.418488,0.00014375513 711,608.63696,439.50116,30.509705,68.19031,9.141994e-05 711,610.335,60.98301,28.811646,170.04486,7.682578e-05 711,1.2009456,202.4306,18.545885,125.17383,7.039651e-05 711,1.1797062,399.52097,18.380804,72.74176,3.6477868e-05 711,3.6731398,234.73834,57.159374,238.85663,3.4274588e-05 711,616.406,19.510506,22.740662,81.27512,3.224753e-05 711,326.8364,172.18303,34.46402,74.705,1.5594485e-05 711,496.94574,99.66999,132.46716,248.22443,1.3408792e-05 711,1.1460425,351.9856,18.338028,76.29941,1.2393267e-05 711,3.7588477,397.80997,56.56581,96.484314,1.1933172e-05 711,422.7093,144.52986,77.32089,167.43971,1.0125059e-05 711,0.85940593,310.03445,18.53107,76.32373,7.3484352e-06 711,2.1361272,149.0838,27.839586,126.333405,5.550478e-06 711,3.6611443,123.243126,58.39594,210.23135,1.8598973e-06 711,0.910201,89.56921,16.024775,148.86444,1.1265302e-06 711,1.1511507,21.192423,18.99973,116.50326,2.9181344e-08 711,583.13666,0.37673992,46.46869,48.811752,8.20192e-09 711,518.80554,1.4924967,44.379578,52.208405,8.086555e-12 711,544.27716,1.1578028,46.815796,51.38784,4.483752e-12 712,342.88986,170.92587,27.28714,66.98163,0.023208948 712,602.06525,184.08229,36.43994,87.392715,0.010027778 712,200.12804,208.56544,30.972519,68.93382,0.0058330637 712,624.1835,219.94441,14.963196,45.984055,0.0009838329 712,616.16315,387.65448,22.98352,87.19226,0.0009053151 712,609.186,78.24182,29.947083,68.49782,0.0008313509 712,558.0369,111.79989,28.024414,57.272057,0.00062178564 712,623.73615,245.01912,15.410522,49.139633,0.00042708588 712,570.941,423.75073,68.20569,73.86896,0.00041288018 712,510.15646,212.5622,21.720428,49.115875,0.00032119558 712,571.3467,103.88405,30.21344,59.37889,0.00031973503 712,517.2099,65.79553,42.286804,144.51273,0.00019299246 712,1.100061,202.89131,18.296007,63.51625,0.00019241634 712,119.772255,201.30504,32.314583,79.09639,0.00018768442 712,479.242,178.29192,31.95102,76.40408,0.0001869249 712,319.01865,167.21936,34.26346,75.57254,0.0001821527 712,585.585,117.078636,52.836792,213.90714,0.0001452312 712,4.0746455,103.27363,75.8512,166.21472,8.68593e-05 712,616.87695,138.51462,22.269714,82.8513,7.790236e-05 712,1.0511955,397.86975,18.451725,75.35855,7.7549004e-05 712,602.123,253.6962,37.02368,219.85599,4.188578e-05 712,587.40753,88.95328,33.818848,75.43182,3.9873965e-05 712,2.2960718,153.14131,36.552277,164.17897,3.315038e-05 712,1.1292595,351.95462,18.530807,76.944214,3.238421e-05 712,3.1446176,253.7947,58.084446,226.00078,2.6662852e-05 712,0.8893946,244.52509,19.754896,148.80704,1.937558e-05 712,113.337906,165.10474,71.381516,141.2727,1.5013569e-05 712,602.49817,0.5346029,36.6485,68.66479,1.4194012e-05 712,1.5657716,114.2755,19.714645,133.1129,9.424533e-06 712,2.0111442,420.08716,34.94443,78.777954,5.536764e-06 712,563.7049,8.787741,75.44177,158.87872,2.7913761e-06 712,409.2873,2.0124252,41.877808,48.425472,1.0018739e-07 712,1.9501938,17.359577,58.10728,112.996445,7.4573904e-08 712,1.0340625,22.979923,17.413134,120.87604,2.4356172e-08 712,436.726,3.6311753,41.231018,50.183617,2.363105e-08 712,575.0397,0.3061784,44.693604,54.06002,1.3557584e-10 712,510.00604,2.1856186,45.468994,50.09321,8.892768e-12 713,531.30206,208.45471,25.631348,51.16989,99.90534 713,321.57535,179.47139,24.33728,50.183975,0.03274475 713,79.41545,204.89873,20.093185,46.513443,0.011713984 713,595.0189,91.6874,43.0343,167.8747,0.009256383 713,179.76793,203.35515,33.945465,77.034744,0.006248289 713,611.8025,156.39316,25.88507,59.208893,0.0033724678 713,608.6079,88.098,30.166687,69.30619,0.0020001084 713,621.51697,215.23128,17.6297,62.398575,0.0014069946 713,517.69946,171.28993,57.849915,107.5793,0.000854703 713,621.9495,275.0275,17.197144,53.888214,0.0006641837 713,81.41965,184.07576,36.947388,103.20598,0.00059475115 713,591.91486,193.2231,40.282104,99.405136,0.00044429343 713,610.9495,237.84337,28.197144,129.64638,0.00017861523 713,616.87714,14.470583,22.269531,77.8767,0.000119126526 713,608.3625,443.10037,30.78418,63.85382,0.00011460536 713,4.1690774,187.73381,57.50953,244.73235,6.107495e-05 713,1.3571126,194.27686,17.887924,67.45587,5.622732e-05 713,583.973,397.8418,55.112488,100.7829,4.0237323e-05 713,1.17896,404.96744,18.281284,73.437164,3.7783106e-05 713,407.44138,198.82944,23.789398,49.57007,3.0203284e-05 713,612.68317,316.37476,26.463501,143.01541,2.8563685e-05 713,1.2611263,357.6823,18.369774,79.12738,2.6496718e-05 713,6.1210904,361.2181,79.43048,126.77905,2.437526e-05 713,0.86379886,236.26588,19.52951,151.63078,1.6898428e-05 713,1.6336523,303.638,33.32019,180.39832,1.4321745e-05 713,53.712708,166.9424,81.201965,163.48125,1.1792942e-05 713,590.4934,2.0780535,47.883423,53.659786,5.5653727e-06 713,1.0276823,68.987526,18.346424,75.35981,4.617131e-06 713,1.8794166,123.51719,28.55086,142.1308,4.505085e-06 713,482.10413,128.82971,135.78772,233.7417,3.5530647e-06 713,310.2632,431.02353,71.72522,67.87668,2.6032983e-06 713,397.33386,182.31854,40.41501,122.96866,2.2560541e-06 713,39.65206,427.6867,77.32311,72.855804,7.580916e-07 713,566.103,8.740847,73.04364,177.21204,3.372401e-07 713,2.1050425,21.47231,57.54195,95.15233,7.601907e-08 713,0.7601013,13.300834,10.926922,75.30008,2.3945567e-08 713,566.24,2.3859668,44.828796,49.26171,4.4465245e-09 714,617.6272,220.4411,21.51947,61.9747,4.2855964 714,621.1441,190.93039,18.002563,58.350143,0.0046306686 714,376.8702,207.9296,20.84491,50.669434,0.0018208795 714,606.4145,144.58026,32.624756,162.2862,0.0013465511 714,25.70258,210.28432,37.232227,91.976944,0.00020337733 714,608.0873,437.76288,31.059387,71.37012,0.00014874533 714,168.05988,209.66435,24.327454,56.301804,0.00014002706 714,1.022496,226.29971,18.313097,76.42377,0.00013454692 714,616.942,68.28695,22.20465,84.241356,9.141366e-05 714,612.5122,337.2434,26.63446,138.00375,8.550109e-05 714,0.8837305,419.0934,13.511129,49.14676,6.45123e-05 714,4.997435,156.11658,79.87693,252.16061,6.391089e-05 714,617.7324,290.47867,21.414246,84.4682,3.4339042e-05 714,1.5799643,236.4655,33.8388,197.10027,2.6760163e-05 714,552.32355,397.7741,86.74585,102.350006,2.044074e-05 714,3.6933415,313.77823,57.94231,173.19043,1.993325e-05 714,587.67126,204.80054,51.475403,270.62134,1.8185989e-05 714,0.90149254,365.16318,13.534641,49.94754,1.7604661e-05 714,1.7423536,127.82049,31.017855,165.73822,1.7555405e-05 714,1.1788721,370.67377,19.358349,127.38046,1.6548967e-05 714,311.20334,138.6869,78.33121,163.87914,1.4745987e-05 714,0.8013668,337.85272,13.521908,49.726257,1.1325511e-05 714,599.50476,8.49669,39.641907,75.045,7.670953e-06 714,0.7741919,287.20966,18.851847,74.61841,7.54906e-06 714,8.184925,396.73917,121.40614,99.701355,4.729292e-06 714,1.3432121,92.423874,18.378231,73.994446,4.641979e-06 714,586.4183,0.50597656,52.728394,245.5392,3.7280572e-06 714,3.4107912,428.54688,53.942337,70.79715,3.725683e-06 714,534.14386,443.2348,44.16284,59.6427,2.7286444e-06 714,487.7488,429.028,73.27658,70.37933,2.2582672e-06 714,181.40414,433.3027,72.79562,66.44479,2.1612336e-06 714,1.8196762,12.9741535,59.8092,269.58234,1.6712247e-07 714,1.3331707,23.540485,18.488556,107.737335,7.300956e-08 714,1.4514356,10.549719,29.400537,53.334023,3.1205882e-09 715,348.85052,177.70937,23.094574,48.846603,28.467184 715,0.7740487,267.1191,11.082442,46.422943,0.0008359286 715,338.1026,162.25801,40.695374,96.35472,0.0005506183 715,613.37103,127.55335,25.775635,99.32458,0.0003002207 715,1.0684042,283.86844,18.151043,79.576355,0.00022714787 715,145.14873,203.45827,25.81073,57.52739,0.00017646932 715,613.04895,416.87793,26.097717,87.57391,0.00014592009 715,617.0686,184.6663,22.078064,92.96617,0.00011944436 715,0.954764,186.58334,18.928238,83.08151,0.000113627524 715,1.4865324,244.44055,31.932375,90.88873,0.00011163784 715,617.3169,67.777466,21.829773,84.32887,9.903431e-05 715,617.28674,255.06238,21.859924,82.38141,9.659646e-05 715,604.02423,302.19882,35.122437,186.07422,5.7767596e-05 715,425.29477,202.92224,32.960144,65.222626,4.5428096e-05 715,502.61688,149.50684,82.151794,154.8758,3.7869173e-05 715,603.5681,168.17284,35.578552,198.25432,3.573243e-05 715,83.50461,191.20625,40.686096,139.05708,3.34332e-05 715,3.2217336,271.41702,56.33336,208.79214,3.2417243e-05 715,0.9941472,309.85034,19.547915,146.43106,2.8972798e-05 715,3.6873748,132.26347,55.433857,215.17308,1.9127363e-05 715,2.076819,123.669075,19.77258,99.73934,1.2460189e-05 715,322.6885,131.33893,78.788635,169.69098,1.0667507e-05 715,554.9545,396.9169,83.63428,102.40518,1.0300054e-05 715,0.7760905,364.89062,13.681113,49.38199,8.8581755e-06 715,122.86443,260.28723,21.753792,51.6131,8.04495e-06 715,600.06384,8.93,39.082825,74.20823,7.869148e-06 715,58.738636,167.58162,119.164474,223.20616,7.1726517e-06 715,585.7169,19.51019,53.1709,218.80736,5.188408e-06 715,1.3214844,406.72864,26.670773,93.11633,3.618529e-06 715,6.581094,399.62582,89.40365,96.86206,2.8329123e-06 715,481.23755,432.0146,72.34473,66.80792,1.6925387e-06 715,333.99762,4.44778,59.751648,54.59023,1.6133046e-06 715,243.34543,432.43396,73.33026,67.7634,1.3886163e-06 715,291.1053,432.15714,72.14398,68.186005,1.2737752e-06 715,331.89407,431.3705,72.26703,69.14606,1.2396064e-06 715,1.6685922,59.582672,18.090189,70.59775,5.3771913e-07 715,2.9125326,23.463533,56.053196,91.49142,1.7162756e-07 715,287.62183,10.090175,39.560852,50.67256,1.2053968e-07 715,314.7559,11.261895,40.699158,48.645264,6.768579e-08 715,356.65817,16.910076,113.418976,102.925064,3.6951207e-08 715,179.3877,3.5638673,57.081238,47.76723,3.0020782e-08 715,198.87506,9.220014,79.56293,66.21369,1.2366956e-08 715,1.0099858,14.099636,11.734337,75.886856,1.0914154e-08 715,381.89313,6.1119566,46.585632,60.49605,3.4931273e-09 716,379.5691,195.63657,20.3172,45.463852,10.609218 716,161.63008,219.65852,29.334824,71.747665,0.06713814 716,622.18414,193.93837,16.962524,53.86638,0.002225208 716,288.7821,220.59464,20.663239,45.90811,0.00079339504 716,610.16046,178.12875,28.909668,138.64801,0.000766585 716,555.4708,231.62303,44.694946,103.800156,0.00043796003 716,618.15656,273.12213,20.990112,78.609955,0.00033511777 716,1.1275306,321.7576,17.958858,76.44855,0.00022666273 716,588.2774,214.27078,50.231445,215.58484,0.00011642446 716,617.4044,69.56931,21.742249,80.23472,9.506187e-05 716,141.9406,182.97597,42.975006,134.679,9.226436e-05 716,1.9127727,323.18954,32.797165,166.60538,7.056859e-05 716,602.7272,65.13482,36.419495,194.74802,5.747591e-05 716,609.058,439.73965,30.088684,65.84415,5.6827106e-05 716,1.0506632,188.5385,18.271935,66.56235,5.3787015e-05 716,1.0114193,398.83804,18.486193,76.3176,4.8765036e-05 716,617.79205,345.94177,21.354614,81.45816,4.8578953e-05 716,211.24005,228.01883,17.850708,46.115356,4.3546974e-05 716,130.09576,277.43674,22.258514,52.489563,3.6706373e-05 716,1.4784384,170.45638,28.525955,154.8384,1.6595812e-05 716,88.27187,169.77808,76.30428,177.36359,1.3197257e-05 716,4.739206,171.33511,78.028015,287.46292,1.0940745e-05 716,123.1746,180.75172,106.75028,219.33177,6.8494687e-06 716,588.7632,15.600574,50.383484,106.663284,6.40055e-06 716,1.3243865,443.66086,21.804117,59.413788,6.234157e-06 716,0.6082752,253.3287,14.087399,54.39984,6.009263e-06 716,572.74,360.71915,66.40668,129.51242,5.7475263e-06 716,1.0277425,70.15201,18.320032,73.460724,3.856212e-06 716,3.1027815,428.6206,53.03667,69.991974,2.642489e-06 716,342.4541,109.30883,131.2753,227.55017,2.201264e-06 716,1.5933195,93.3591,27.20149,139.84357,1.9611336e-06 716,318.0648,431.6991,71.9624,68.62424,1.1287304e-06 716,0.97538537,13.104259,10.706833,69.510544,1.4306688e-07 716,5.131966,29.081354,76.907,116.51725,4.337769e-08 716,2.0532618,15.280342,35.80594,64.51164,8.212377e-09 716,514.4459,0.0,44.55658,61.14395,1.5950988e-10 716,549.918,1.7807113,41.772522,54.565098,5.671024e-11 717,614.4485,172.08037,24.385681,47.451935,0.055751815 717,211.37953,212.64311,26.910553,68.425095,0.044572648 717,32.698463,210.73875,36.856888,86.75993,0.012810613 717,622.55035,284.7649,16.596313,51.984406,0.001089815 717,367.7441,177.73212,24.204163,52.298615,0.0008110419 717,191.3633,193.17822,39.777054,71.38284,0.0007999954 717,604.51025,168.26894,34.47638,190.15419,0.0002628315 717,622.0409,87.20562,17.105774,51.373726,0.00013906434 717,618.3334,234.46777,20.813293,78.69751,0.00012604678 717,407.47955,188.39062,39.30182,69.00003,0.00010709355 717,44.724915,251.85855,32.714867,67.46146,9.921761e-05 717,617.4392,336.40225,21.707458,86.74628,6.60472e-05 717,22.461485,184.12068,76.779144,184.32762,5.7345387e-05 717,608.6656,439.91043,30.48108,64.29562,4.5368608e-05 717,1.1044809,213.1169,17.673248,69.70448,4.0728246e-05 717,167.51735,194.75986,72.36351,176.15445,3.4819877e-05 717,588.99347,274.8948,49.807068,199.16858,3.1493368e-05 717,4.086307,235.64662,57.87344,237.19319,2.8149017e-05 717,1.6317521,221.50633,28.95278,143.40184,2.4043724e-05 717,1.1304663,365.51324,20.332077,103.98401,1.9963689e-05 717,611.24817,43.183548,27.898499,162.344,1.6241298e-05 717,598.82275,8.671009,40.323914,73.62561,1.0923645e-05 717,0.9486711,102.17433,16.129854,146.80927,7.3198985e-06 717,6.489808,399.02332,91.381905,95.199524,5.693832e-06 717,151.82516,390.69672,106.08191,101.28906,5.150703e-06 717,1.0225936,77.60959,18.107712,72.73164,4.534672e-06 717,1.7243441,418.78543,35.496727,80.63135,2.9053858e-06 717,382.97318,134.77705,106.290375,218.91176,2.837655e-06 717,183.9975,279.18555,22.60019,53.792023,2.206897e-06 717,173.14278,436.40698,42.025757,63.92273,7.4751523e-07 717,123.25206,423.02927,78.261246,74.62668,3.4592173e-07 717,2.366989,21.878376,57.571842,92.72873,9.2805e-08 717,3.6770606,9.317032,80.43484,277.938,7.315118e-08 717,0.7267729,13.258871,10.9073105,75.21484,5.7384607e-08 718,403.71777,211.14049,23.93396,45.20546,97.51473 718,68.347275,211.45393,40.514717,88.28554,0.0129897725 718,211.51666,228.80482,28.959412,66.27684,0.0034266987 718,233.39534,230.2396,18.897736,46.319733,0.0009857488 718,618.22156,183.48502,20.92511,60.230362,0.0008961291 718,617.5178,278.73407,21.628845,77.9621,0.00036125822 718,193.00394,207.22006,53.6792,128.14868,0.00028208026 718,604.46655,183.99821,34.680115,187.90819,0.00020552328 718,68.4346,185.9316,76.26915,159.68715,0.00018159694 718,90.48068,249.49753,39.786346,86.886505,0.00015842494 718,617.29865,76.62664,21.848022,79.62202,0.00010812038 718,395.09534,193.19958,44.53836,90.74896,9.214275e-05 718,603.89795,76.32523,35.24872,185.06674,6.30626e-05 718,617.33496,349.61044,21.811707,86.47586,5.3276613e-05 718,609.1036,436.74774,30.04309,67.905914,4.995157e-05 718,0.93265504,227.29443,17.87339,68.74298,3.0988023e-05 718,589.36,288.79092,49.67041,185.97116,2.7999195e-05 718,1.130323,392.3771,18.192877,74.46155,2.6917061e-05 718,166.04463,184.94984,113.089035,223.13033,2.5624646e-05 718,3.6704152,248.88219,57.835995,218.93929,1.2058394e-05 718,0.9698389,303.89044,18.387104,71.431244,1.0374782e-05 718,599.39886,8.24083,39.747803,74.74903,9.290461e-06 718,1.2668889,112.5386,20.680962,116.3382,7.230797e-06 718,1.5589551,342.75436,32.476982,148.58414,6.190021e-06 718,2.0640357,199.23094,33.60816,159.18062,4.869263e-06 718,1.0117277,62.927982,18.309053,75.35423,4.508171e-06 718,373.00256,154.43307,99.388916,206.03458,3.319726e-06 718,208.64978,434.92215,71.43231,64.01196,2.4686867e-06 718,3.1511605,431.49057,53.128334,68.1561,2.138843e-06 718,147.41438,432.6514,72.30362,66.459564,1.0970978e-06 718,3.319642,84.45232,60.21497,226.183,2.5320145e-07 718,2.800817,21.599112,56.62503,96.28498,6.987887e-08 718,0.7270077,12.924965,11.209981,76.32365,4.4480622e-08 718,1.3478923,10.670603,29.364223,51.73884,5.0587077e-09 719,385.93396,203.80486,23.180634,50.15645,98.81749 719,177.6729,210.91077,37.931595,85.660706,0.04390127 719,69.21403,208.48898,37.111755,87.5827,0.011620899 719,333.48257,167.42264,27.019226,68.33127,0.008332265 719,197.61111,219.05743,21.48204,50.594666,0.002754688 719,375.50336,189.85034,45.048645,88.63925,0.0005877538 719,612.652,169.18446,26.49469,147.37648,0.0005017012 719,54.74578,162.55101,74.01617,175.92299,0.00029107495 719,89.82642,246.97762,36.872795,73.57088,0.00012366896 719,0.9025822,219.6579,17.772207,70.65762,0.000115612114 719,617.614,278.43054,21.532654,79.658905,9.050457e-05 719,617.12274,68.61765,22.023926,82.01556,7.694346e-05 719,169.84319,191.34009,75.782074,170.31628,7.2822986e-05 719,612.1869,340.79507,26.959778,137.3349,5.2065694e-05 719,609.7146,435.03848,29.432068,68.77106,3.996953e-05 719,1.1130176,405.62457,18.125813,73.97748,2.847024e-05 719,587.61865,207.56384,51.12097,232.74887,1.5078098e-05 719,599.05176,9.154128,40.09491,74.065094,1.2545037e-05 719,3.8272202,177.43419,56.608925,229.93666,1.2316961e-05 719,0.77707356,251.09521,19.418085,143.25824,9.336256e-06 719,1.0341033,345.5733,18.475172,76.39426,8.312744e-06 719,602.91455,48.2452,36.232117,199.07547,7.3396664e-06 719,1.0288119,127.50059,16.128267,136.05368,7.053105e-06 719,3.6780047,397.69916,56.461487,96.67566,6.6690645e-06 719,1.7764307,301.91748,33.177567,176.50616,5.487435e-06 719,1.0325196,69.792725,18.28922,74.276566,4.9831565e-06 719,1.6734132,458.68674,28.220142,45.598602,4.052514e-06 719,362.4767,141.7674,91.32065,211.43198,3.0942065e-06 719,167.47847,431.9618,72.55995,67.66284,2.3295433e-06 719,127.80411,430.7016,70.94899,69.09564,6.725344e-07 719,2.265052,22.118008,57.01495,95.18289,5.6571075e-08 719,4.321185,29.434141,80.89074,243.10867,4.074786e-08 719,0.7380929,13.411814,11.301008,74.56762,3.7297887e-08 720,404.48087,200.56688,25.84375,56.115128,98.404526 720,168.73534,206.5355,35.07184,77.00188,0.121064335 720,54.970757,205.47931,22.183884,49.824265,0.053962495 720,63.7777,198.08748,35.06206,83.65245,0.017572481 720,333.8474,174.49236,23.294586,53.606064,0.0105741285 720,391.5743,174.40646,55.740387,104.68063,0.0003813682 720,75.77639,169.55638,42.078613,142.38301,0.00024053936 720,612.0303,159.5793,27.116394,105.61644,9.898455e-05 720,609.0683,436.11966,30.07837,67.64987,8.189237e-05 720,617.2658,69.017555,21.88086,80.21081,7.207911e-05 720,617.5949,333.24057,21.551758,81.85315,6.989505e-05 720,30.181553,174.60646,77.1145,173.65791,6.283735e-05 720,618.5959,234.00308,20.550781,76.82971,5.6460256e-05 720,156.9953,172.6491,65.49832,162.2069,5.1342937e-05 720,612.1268,260.10754,27.019897,126.70795,4.956804e-05 720,1.2689853,200.1792,18.148724,63.360687,3.7150112e-05 720,1.1721689,407.47192,18.22899,72.910065,3.3096454e-05 720,602.27954,320.46228,36.867126,166.96878,2.645097e-05 720,3.7338672,164.0087,57.87067,213.84753,1.8027644e-05 720,586.81555,139.4861,51.295837,216.4116,1.5181755e-05 720,1.7644353,180.94897,28.520895,133.74387,1.44429805e-05 720,598.95996,8.709023,40.186707,74.50932,1.16591855e-05 720,1.13681,313.35773,19.055618,141.37177,1.0546726e-05 720,601.54785,50.920822,37.598816,188.28665,9.09528e-06 720,0.9671338,269.5537,18.45853,70.66431,8.697934e-06 720,6.8691473,402.56326,89.781166,90.065186,8.129851e-06 720,0.7761727,90.92241,13.670823,50.477997,8.0921645e-06 720,1.473488,131.66862,20.465565,104.591354,7.239671e-06 720,86.84487,400.73648,110.74532,94.711914,3.8340195e-06 720,62.35132,429.12756,75.997116,70.66583,2.0037614e-06 720,356.6278,112.78149,139.84131,251.04764,1.959989e-06 720,110.97223,446.41547,42.909607,57.560486,1.7434699e-06 720,160.44554,429.52524,72.390396,69.84592,1.2967396e-06 720,1.0992221,22.292356,19.379667,109.37605,1.1541885e-07 720,2.912129,42.71219,59.05333,203.57097,2.9113073e-08 721,449.16074,210.26674,29.81073,68.82445,99.697624 721,330.31882,163.16254,37.327606,74.7045,0.02254664 721,55.756836,210.05531,31.344536,70.4814,0.019955324 721,40.184082,208.25916,28.945145,58.62735,0.012194274 721,164.63441,215.26793,28.102478,63.496567,0.0018419249 721,616.97595,158.28964,22.170715,76.25807,0.0005778772 721,46.523586,176.86522,64.40254,138.44624,0.00027314542 721,368.69507,198.07838,41.541534,71.08006,0.0002128041 721,608.60596,434.7896,30.54071,70.42139,0.00011550401 721,612.0446,65.08716,27.10205,148.64171,0.000112372516 721,617.65753,200.47156,21.489136,88.53674,8.263941e-05 721,617.8189,303.5772,21.327759,82.385925,7.798829e-05 721,602.60394,164.13431,36.402466,183.68732,7.7344055e-05 721,601.90063,297.03235,37.246033,185.83731,3.8941333e-05 721,1.4661865,129.34024,20.124887,108.242035,3.69099e-05 721,429.82294,176.45724,70.79175,160.43661,3.0363803e-05 721,1.189808,387.1859,18.353209,72.44815,2.4438057e-05 721,1.0785205,211.28548,18.443306,72.33815,2.4080851e-05 721,4.014502,237.09154,57.005512,237.30342,1.5986756e-05 721,1.927041,181.5357,32.79483,178.087,1.2210987e-05 721,598.65424,9.080615,40.49243,73.87857,1.1855369e-05 721,0.9917448,284.49356,18.849463,135.7562,1.1255395e-05 721,1.5378354,85.97368,17.791733,70.81616,7.306925e-06 721,1.0098755,425.2548,16.463724,76.5748,7.259721e-06 721,357.43323,158.31038,76.05646,152.20415,5.6527556e-06 721,3.6589112,399.4795,55.19681,94.08777,4.924049e-06 721,356.2894,395.74466,117.35086,100.6503,4.527706e-06 721,429.1033,424.7661,78.13745,71.93524,3.6807326e-06 721,482.87808,440.7939,45.64633,58.478912,2.9630455e-06 721,377.35687,441.28513,47.739716,59.96176,1.7148661e-06 721,459.81656,394.7177,112.19168,98.97012,1.6820887e-06 721,298.01364,427.74384,75.83856,71.11398,1.0428065e-06 721,2.8297038,22.81115,55.786415,100.43655,1.9197266e-07 721,0.8276982,13.144056,11.141206,77.40468,6.7367154e-08 722,437.9469,217.94333,22.482483,50.611115,2.5162678 722,46.712273,205.31938,28.572456,52.029556,0.055978756 722,340.69855,181.75731,23.35733,51.57866,0.027463607 722,619.59735,206.88115,19.549316,63.094254,0.00647278 722,153.26813,211.72032,30.572891,68.04933,0.003747042 722,610.90796,219.4031,27.963684,142.87503,0.0031250515 722,420.7276,214.35538,25.636536,54.234253,0.0028693185 722,43.91469,190.53743,43.42723,120.56279,0.0021558648 722,384.57687,84.573975,80.352356,178.19669,0.00034352575 722,426.26755,190.08498,46.3284,101.32384,0.00016042471 722,617.431,62.69626,21.715637,79.17029,0.00011404833 722,616.6545,342.17096,22.492188,85.58682,9.7451426e-05 722,608.4563,435.1022,30.690369,70.21979,8.583368e-05 722,0.6831409,232.17923,13.562731,49.457764,6.3951804e-05 722,599.973,281.48663,38.386536,187.15561,6.228524e-05 722,602.93475,127.20959,36.211914,158.94122,3.791854e-05 722,4.5683627,198.64911,57.53595,234.66266,3.2495245e-05 722,1.0922843,405.81155,18.334301,74.334595,2.6629612e-05 722,2.2709374,150.31151,33.950157,162.33333,1.5012968e-05 722,0.92225915,240.26385,19.85636,137.61755,1.20325585e-05 722,1.0851009,351.92087,18.529657,78.00101,1.0323262e-05 722,599.0171,8.996384,40.129578,73.540245,8.953485e-06 722,3.4247706,396.9347,57.18699,98.74423,8.524172e-06 722,1.6293694,299.76416,32.452194,179.66815,5.7709785e-06 722,1.8424406,118.83131,21.182358,102.97727,3.2664325e-06 722,403.68982,140.99301,36.819458,102.63626,2.8850643e-06 722,392.40735,123.68265,134.78125,225.57053,2.7502238e-06 722,1.2096949,60.285007,18.287697,76.99426,2.1629946e-06 722,536.35724,423.98343,77.07001,74.43753,6.82422e-07 722,35.559742,429.6492,81.5477,72.30655,4.7830844e-07 722,488.15814,426.10123,71.8371,71.05139,3.5354998e-07 722,2.0863118,23.216032,56.500656,90.08959,2.582742e-07 722,441.66016,8.250553,43.222046,46.19465,2.0958575e-07 722,3.1784344,17.259792,82.32016,272.55695,7.1815705e-08 722,0.8061597,14.375541,10.798344,72.3464,6.3330255e-08 722,387.75708,4.877054,78.45007,58.887703,1.1300217e-08 723,355.98364,174.69266,27.732727,65.321365,0.3381364 723,37.15299,213.79036,29.098919,67.64229,0.057889894 723,157.78584,214.3796,27.867401,60.901627,0.003652369 723,25.573097,181.80598,58.347893,143.14137,0.0014148498 723,610.7264,272.48187,28.420288,133.0252,0.0002851534 723,617.306,67.83182,21.840637,80.89868,0.00013675701 723,618.2803,239.11224,20.866394,74.72739,8.943191e-05 723,608.17664,434.5767,30.970032,70.587006,8.084318e-05 723,616.39484,348.24405,22.751831,86.98819,7.050159e-05 723,1.1356388,234.09956,18.281174,77.61427,5.1859053e-05 723,140.43446,209.755,39.645554,114.72174,4.3841203e-05 723,343.53195,162.42068,57.4003,108.56543,3.7018865e-05 723,602.3486,143.44165,36.779114,180.29855,2.7498572e-05 723,573.2938,222.97504,65.213806,243.29175,2.4568686e-05 723,2.0868776,161.48984,33.855347,167.40787,2.1740923e-05 723,109.750496,254.13823,22.175896,48.287216,2.156001e-05 723,0.90787154,427.5009,13.422946,46.527344,2.0351961e-05 723,4.1957846,221.3346,57.652225,253.53116,1.2263819e-05 723,1.0997608,385.55432,18.290651,75.756256,1.0301901e-05 723,599.19293,8.840137,39.953735,74.38039,1.016876e-05 723,1.1343335,141.54964,19.000149,113.07196,9.5188e-06 723,0.8733732,344.56604,18.485909,75.459656,4.637218e-06 723,0.78467774,286.23862,18.647686,72.70111,4.608596e-06 723,1.0954558,77.0217,18.13525,75.085526,4.4768863e-06 723,3.4581332,398.83334,56.83723,97.6561,3.919973e-06 723,555.3909,425.13324,79.90588,74.23834,3.270291e-06 723,585.7343,26.94159,53.412354,221.6099,2.5096967e-06 723,437.59912,430.76602,74.85132,68.48227,2.0849577e-06 723,10.340847,457.33054,40.893158,47.804047,1.8804075e-06 723,329.83484,144.28763,103.17728,209.08145,1.7415623e-06 723,21.906273,430.74655,80.04939,70.52829,8.716332e-07 723,509.55032,424.6159,75.393585,72.45645,6.203433e-07 723,2.9022722,29.526342,59.827118,248.19293,1.1714143e-07 723,0.7008126,12.62794,10.751494,76.28889,6.89613e-08 723,1.7414633,16.457806,36.58095,67.19824,1.9773955e-08 724,398.47336,209.52084,22.66098,49.641785,91.07101 724,385.00305,210.9351,22.89624,47.50511,57.320194 724,10.99689,202.93517,41.86201,123.58998,0.0071291775 724,21.31974,236.5497,24.240887,59.80562,0.0022173282 724,158.7562,215.81401,25.270767,58.255234,0.001458875 724,358.70404,151.30525,38.546875,79.90007,0.00093335455 724,1.8455795,201.12897,17.76371,80.03992,0.00047929547 724,362.33087,168.4878,64.460754,112.57068,0.00045294614 724,268.07825,208.2019,47.253387,135.06088,0.00040576456 724,32.39406,241.78522,31.850212,69.871,0.00017528365 724,612.17035,76.13302,26.976318,137.34671,0.00010447255 724,5.9767647,153.802,111.864,251.92654,9.3713104e-05 724,617.4711,169.89763,21.675537,80.20691,9.123912e-05 724,618.92523,249.01587,20.221436,75.91751,9.086799e-05 724,612.5207,272.63547,26.625977,129.51068,8.9459885e-05 724,1.2393458,263.8541,18.536503,81.694,6.726372e-05 724,617.69116,350.5561,21.455505,84.66565,5.7134457e-05 724,608.4985,434.6639,30.648193,69.767395,5.436911e-05 724,1.1694092,384.60684,18.497019,77.9061,3.4332363e-05 724,599.87885,128.53708,39.267822,178.46698,2.5675965e-05 724,1.6794108,240.36766,34.46502,214.87859,2.4508683e-05 724,587.74005,315.90842,51.327515,168.26035,1.4147119e-05 724,0.91066897,310.83487,18.926561,82.912964,1.0571619e-05 724,599.4274,9.010928,39.71924,74.21266,9.003525e-06 724,136.01137,255.29617,22.976974,55.33548,7.734657e-06 724,3.5085142,398.05664,56.8821,96.463104,7.2779253e-06 724,1.3064845,83.0528,27.564816,169.84653,5.9984877e-06 724,289.92825,431.0565,78.26883,68.994354,5.2456235e-06 724,1.0774325,70.63262,18.140976,73.97065,3.5982534e-06 724,555.06213,424.72363,80.55109,74.47061,2.4045733e-06 724,346.60715,128.55914,137.63644,227.9277,2.0389296e-06 724,462.58008,429.79153,76.77692,69.67108,1.3400222e-06 724,24.298597,431.05853,78.66628,68.67169,7.993203e-07 724,3.2106316,19.962631,81.5457,270.1897,7.777521e-08 724,2.3184214,20.039122,57.29132,97.50861,7.453366e-08 724,0.69945556,12.751559,10.769827,75.68729,5.499899e-08 724,1.3635954,10.723865,29.658241,51.19212,7.884822e-09 725,484.6838,210.22679,39.532013,81.99489,99.96291 725,462.78616,217.75113,33.922455,68.68677,98.85529 725,362.57205,155.02562,30.817322,65.85043,0.19667964 725,144.9523,214.90495,26.522629,67.59221,0.013928685 725,507.81143,216.81235,24.825653,62.625122,0.0017785267 725,623.0088,220.31161,16.137878,54.967102,0.001337851 725,1.1693457,196.12346,18.134699,85.48915,0.0004146531 725,334.94565,165.47983,31.43634,64.6794,0.00034451656 725,3.410542,225.20813,57.285957,243.19913,0.00023215852 725,444.91788,198.00397,72.62906,136.74146,0.00020714587 725,1.0465641,268.32007,18.810886,86.042816,0.00020382238 725,1.419148,391.39014,18.135162,75.084656,0.0001765001 725,499.5425,175.29977,41.43515,77.80591,0.00015846243 725,612.85364,188.51031,26.29303,134.1294,8.545935e-05 725,3.5290055,391.14117,56.21934,95.35776,8.208817e-05 725,611.8581,282.41522,27.288574,133.61111,6.714054e-05 725,617.3587,74.75789,21.787964,82.79846,5.9925416e-05 725,617.0581,396.898,22.088562,86.73657,5.270948e-05 725,121.64236,259.1207,20.649147,51.354065,5.206212e-05 725,2.3066976,172.2727,39.840225,139.17538,4.9081e-05 725,99.51777,189.77742,78.23496,157.8839,4.216883e-05 725,571.9435,118.3717,66.06329,235.63477,2.5115985e-05 725,0.8659481,316.89267,18.848444,83.153076,2.2497685e-05 725,604.0155,59.16793,35.131165,193.27185,1.7726601e-05 725,587.2631,319.88544,51.883545,165.72946,1.1991422e-05 725,594.615,435.76526,43.70465,67.066895,1.1593392e-05 725,1.3440071,440.17178,21.521458,60.437073,1.0695826e-05 725,599.5075,9.043213,39.63916,73.34789,9.395994e-06 725,262.6249,427.1765,72.584656,70.156586,4.827382e-06 725,1.464436,113.505264,19.984797,109.571075,3.4912873e-06 725,1.295538,78.546135,18.215185,73.58297,2.3807286e-06 725,445.47095,430.366,73.54706,68.81174,1.3718129e-06 725,22.024511,427.6451,80.19615,71.421936,1.1387511e-06 725,535.90796,424.25592,78.81433,74.54181,5.978257e-07 725,495.64163,425.08557,71.7269,71.976746,3.898668e-07 725,2.5252035,20.99755,56.87235,96.799446,7.596631e-08 725,0.7196635,12.907058,11.037755,75.82479,6.23584e-08 725,2.480166,17.98203,83.06732,261.73752,4.1092363e-08 725,1.4022331,10.706978,29.639164,51.048832,8.357996e-09 726,360.1658,139.2281,37.76071,91.52159,0.011549444 726,523.33295,159.84427,29.422241,49.3956,0.004314827 726,89.944756,280.82993,26.793488,60.274963,0.0011255904 726,614.6966,130.01701,24.258667,82.53352,0.00046271374 726,1.509196,187.2136,17.751026,68.76282,0.00017421093 726,611.7179,270.65408,27.428772,135.36972,0.00011854402 726,607.0211,434.46164,32.12555,73.33249,0.0001028203 726,617.26483,176.15517,21.881836,81.18062,9.3727234e-05 726,549.4589,170.17914,26.397705,48.812958,8.6324995e-05 726,617.0104,349.33218,22.136292,88.65527,8.607558e-05 726,618.9871,245.87349,20.159546,71.20412,8.330218e-05 726,109.47825,185.8551,41.646645,138.51022,6.50442e-05 726,617.22046,68.32847,21.926208,85.66271,6.249092e-05 726,1.6591179,213.69887,27.789072,148.1645,4.5643057e-05 726,602.5107,148.76205,36.507324,179.87204,4.3115182e-05 726,587.47296,320.96793,51.441833,167.32892,2.5560894e-05 726,0.8970646,306.88672,17.849382,71.99344,2.48954e-05 726,4.006877,174.35509,59.146294,223.47508,1.6901973e-05 726,0.7637183,353.72974,18.72558,78.488434,1.668643e-05 726,1.0550326,397.70538,18.41677,74.76724,1.6193972e-05 726,600.5765,4.465371,38.57019,210.16426,1.4540691e-05 726,75.11801,173.61209,117.65369,227.42688,1.0955654e-05 726,1.3972104,332.0598,33.399082,157.30234,8.230202e-06 726,212.40314,429.43625,74.56665,68.737885,6.8744407e-06 726,271.27182,405.3412,110.67648,92.03534,6.088907e-06 726,338.3839,430.31995,78.77844,67.67163,5.5000723e-06 726,300.6159,448.35413,45.098846,52.641083,4.9182577e-06 726,1.7528256,128.35509,20.538237,99.93831,4.607682e-06 726,5.5684214,398.68265,85.931786,96.12277,2.5062238e-06 726,442.16293,430.1521,77.1207,69.11917,2.0893046e-06 726,1.1404338,64.17471,18.360905,74.30731,1.6609357e-06 726,275.08282,449.5737,42.68036,52.570435,1.5208848e-06 726,2.2692595,447.23135,41.645035,55.49698,1.2283303e-06 726,0.68110555,12.654232,11.175449,76.37926,1.0868292e-07 726,2.6700034,21.080786,56.762245,98.014946,5.89999e-08 726,313.89557,3.5714943,41.36374,49.13833,1.2938076e-09 727,385.43494,194.01985,21.298737,50.197266,39.36686 727,526.176,132.37576,35.02362,76.24805,0.010210824 727,64.476036,186.80298,26.634056,52.995544,0.0058349604 727,374.7292,164.13365,41.83493,107.05931,0.002131279 727,427.82172,220.87506,24.329376,54.266266,0.00078794727 727,612.8403,69.58378,26.306396,136.09729,0.00049380533 727,66.896,194.88568,46.012085,114.52884,0.00033416896 727,47.16342,184.2039,28.205177,53.202454,0.00019953423 727,616.38916,388.73468,22.757507,90.84128,0.00013268185 727,617.26184,344.73383,21.884827,84.77368,9.270014e-05 727,611.8236,144.23674,27.32306,138.05977,8.384975e-05 727,21.138094,174.13103,33.59104,65.055405,6.7442284e-05 727,1.2491642,315.06284,18.653461,86.319824,4.244124e-05 727,612.6037,229.72092,26.542969,136.397,4.0991275e-05 727,1.0959953,201.90236,18.007881,71.419785,3.2088865e-05 727,600.9346,283.98376,38.212097,190.44937,3.0626357e-05 727,593.8746,435.95276,45.268494,65.989075,2.9283137e-05 727,1.6364046,295.18,32.46277,192.30783,2.4619914e-05 727,196.80983,204.33737,22.630417,52.084656,1.9861407e-05 727,1.3622746,162.25943,18.135685,65.13568,1.848443e-05 727,598.7663,7.5000033,40.38037,75.49791,1.7935383e-05 727,585.43475,80.57424,52.930664,234.97342,1.6950142e-05 727,3.7952702,246.40576,66.44369,177.57416,1.4746072e-05 727,332.4954,136.47626,99.09958,196.51062,1.2344197e-05 727,405.7695,203.62433,55.233063,136.75333,1.0904245e-05 727,0.9943677,254.47217,19.237215,84.54474,1.0682574e-05 727,2.0963519,148.92073,28.963564,141.86684,9.160429e-06 727,4.9989357,393.33182,83.89952,102.14011,2.6615185e-06 727,1.2833757,64.908905,18.376202,75.269196,1.2963118e-06 727,2.1625733,443.13882,42.026764,61.639404,7.303495e-07 727,0.66693974,12.135749,10.657037,77.84712,8.301044e-08 727,2.6343393,21.16871,56.49127,100.73682,4.1653742e-08 728,537.4532,214.02621,47.225525,96.986725,83.57967 728,578.9153,158.63805,27.79773,48.792084,0.0731442 728,562.09595,216.02716,26.508362,54.014862,0.031269986 728,589.5923,153.10219,39.26013,74.77826,0.01343566 728,546.40314,213.78845,25.344788,47.51599,0.008288251 728,562.53827,248.74225,27.424133,63.410217,0.006001645 728,367.5887,171.49121,39.1373,97.0589,0.0039975876 728,513.12756,168.93863,120.00806,190.92883,0.000678974 728,609.8496,138.00139,29.297058,127.43434,0.0003661921 728,1.052981,393.8899,19.069738,80.53677,0.00022590914 728,153.21114,215.5238,37.148666,73.311005,0.00019068584 728,1.1120297,227.9906,19.157616,157.58618,0.00018160838 728,1.5534049,172.00435,18.566807,70.32808,0.00017542092 728,613.3945,235.25117,25.752197,139.03362,0.00015971775 728,600.3112,300.4131,38.83545,181.68948,7.8265904e-05 728,1.5883204,217.88467,53.88668,232.79929,6.8617206e-05 728,607.06476,433.8391,32.08191,73.67297,4.8723756e-05 728,2.7053826,391.1574,56.21613,101.91724,1.5517757e-05 728,599.03784,8.487152,40.108826,73.67517,1.3916582e-05 728,2.372453,135.73389,29.224037,146.13235,9.394598e-06 728,359.33185,150.44698,90.789215,197.71544,6.4052274e-06 728,1.207557,440.54855,21.993439,62.43994,4.9686546e-06 728,0.47527915,334.58676,20.399685,98.06763,3.9487813e-06 728,1.2793677,63.196953,18.535435,152.73282,1.3690938e-07 728,0.6947803,12.347966,11.039634,77.095314,9.6508e-08 728,3.0960026,21.148685,56.12249,96.51686,8.069469e-08 729,401.99963,204.7056,22.960297,56.64572,99.76652 729,71.292404,227.4774,26.224495,50.75096,0.0066858483 729,94.08749,224.74925,25.316307,58.159134,0.002841836 729,372.5776,197.38872,44.497437,71.82283,0.0019797427 729,625.07794,148.9761,14.068726,46.70587,0.001910019 729,609.63586,121.88548,29.510803,139.42839,0.001342932 729,1.4107012,248.86592,12.84882,54.072067,0.00089485414 729,599.06793,183.95068,26.757141,49.415695,0.00085141393 729,1.8249073,206.69667,20.166855,122.90318,0.0003105609 729,586.888,144.01192,51.305664,220.0402,0.00012864516 729,613.19275,236.93848,25.953918,132.758,8.6292726e-05 729,368.5352,132.02602,39.9581,112.74219,8.484025e-05 729,4.209346,177.07051,57.869312,204.51341,7.1030416e-05 729,347.2909,160.42007,80.723755,145.25592,5.497387e-05 729,607.3558,434.837,31.790894,74.315186,5.4065033e-05 729,77.86571,206.72,45.505806,121.41962,5.1694726e-05 729,1.1554159,272.18716,17.96794,135.56964,2.8470131e-05 729,0.70742434,364.93896,18.799673,79.43204,2.7210572e-05 729,603.1564,293.64255,35.990295,179.04471,2.5057276e-05 729,598.87317,8.8366995,40.2735,72.52956,1.7375483e-05 729,1.9892082,91.75128,31.536587,197.28198,5.7358193e-06 729,2.8501155,389.0568,55.916428,105.64099,2.1642697e-06 729,554.45917,389.87808,84.6875,109.44797,1.3136979e-06 729,1.0907552,72.210014,20.049456,109.30071,1.2911914e-06 729,446.38522,428.45477,72.80966,69.09866,7.5797584e-07 729,488.48105,423.55438,72.34885,74.39917,3.7688642e-07 729,2.672448,20.687641,56.518993,96.41388,1.0157779e-07 729,0.68466026,12.374147,11.09695,77.432045,8.652555e-08 730,443.41544,212.05554,25.769623,63.189575,99.91805 730,407.55643,212.319,23.061462,53.116913,99.77617 730,388.857,210.8841,20.3479,49.206818,98.779686 730,373.76602,213.38234,19.048492,45.07173,68.21359 730,370.8775,162.7945,56.871796,119.14981,0.016495248 730,420.45364,212.66394,23.323181,52.709137,0.0038964164 730,428.4856,191.1467,53.91638,104.82379,0.0024900367 730,433.54178,215.37987,21.88861,49.315018,0.00071474945 730,611.61707,141.62508,27.529602,138.2577,0.00060528656 730,1.4645826,221.58347,18.282707,71.91318,0.00021503022 730,384.90158,157.90605,92.78354,190.99031,0.0001831012 730,1.6785042,215.83316,33.455368,176.06848,6.715783e-05 730,610.557,287.58878,28.58966,136.1297,6.1269966e-05 730,612.60657,219.63966,26.5401,131.42458,5.9562473e-05 730,611.8877,378.2668,27.258972,122.69324,4.307967e-05 730,599.2043,8.510635,39.942383,74.48765,1.7663924e-05 730,0.83574545,260.87512,19.018291,75.895355,1.6421434e-05 730,0.8352808,301.70612,19.532242,142.22437,1.1188667e-05 730,3.1346843,289.35464,58.312073,190.4473,7.4752984e-06 730,602.8946,30.371204,36.252075,203.47836,6.554947e-06 730,4.218037,139.2137,78.22935,253.42015,6.0654693e-06 730,1.062251,421.2163,16.144955,80.22278,4.8693005e-06 730,0.89998454,101.93843,17.275902,160.68462,3.5759083e-06 730,587.7477,435.18616,46.58081,72.50751,2.6019482e-06 730,3.349126,429.98224,53.710407,69.57825,1.2276955e-06 730,1.0354354,21.05808,17.020847,112.29377,2.0527968e-07 730,2.806385,20.917599,55.880623,97.37245,1.2167037e-07 730,3.0916276,42.825222,59.687435,219.22055,1.03584e-07 731,526.47546,210.67967,36.179626,95.67186,99.97639 731,439.8548,213.367,25.557861,61.539764,99.933975 731,462.9058,215.11923,26.986084,66.15228,99.933914 731,423.09354,218.0514,23.031158,53.248215,97.60759 731,407.8027,217.72372,25.252289,59.792114,96.73741 731,412.6109,203.92009,48.414673,89.978836,0.027913563 731,19.181276,217.6005,36.264977,74.05258,0.0018165298 731,620.26556,202.21715,18.881104,59.658157,0.00050598045 731,617.53217,144.6119,21.614502,81.33606,0.00044489338 731,67.81262,253.44183,47.01911,152.08514,0.00023285231 731,333.91953,145.23149,39.0625,93.38487,0.00021709278 731,1.0899899,225.75006,13.521568,47.43802,0.00018761498 731,1.73174,257.99667,30.095863,196.40793,0.00012448852 731,499.38943,190.87907,99.1987,164.94536,0.00011630749 731,603.4388,177.27698,35.707886,182.9263,0.00010314381 731,1.2320069,212.89073,20.273525,145.17668,0.00010280294 731,1.40785,188.8517,13.147033,46.31859,9.6533186e-05 731,5.4252768,235.61505,77.27484,224.49939,8.6826825e-05 731,389.6749,185.51694,91.88367,167.77042,7.926947e-05 731,1.1584464,346.18124,19.073416,91.351685,6.431548e-05 731,611.4055,374.549,27.74115,129.75403,5.1764677e-05 731,611.90686,289.6405,27.239807,133.34552,5.174138e-05 731,440.97845,193.54216,72.23419,136.73161,4.6161007e-05 731,4.0838866,128.86945,59.07204,228.02585,3.5315665e-05 731,599.4071,8.680498,39.739563,74.253105,2.0982789e-05 731,0.8466952,415.39468,16.6221,84.05246,1.8169416e-05 731,1.9455038,137.39441,29.916496,144.26492,1.318205e-05 731,2.6271176,381.8907,55.50868,107.01538,1.1704974e-05 731,555.52045,421.23776,82.267456,80.719696,2.0613747e-06 731,1.1162167,20.727852,17.63585,123.59733,1.1754856e-07 731,3.139873,21.033567,55.44083,98.02399,9.18339e-08 732,526.77515,202.78648,38.82251,102.27229,99.9683 732,562.7087,210.0899,44.740417,108.07962,99.96031 732,507.52573,214.7416,33.519684,85.39635,99.4834 732,484.0135,216.2276,35.600403,85.85394,98.94545 732,527.97705,255.01714,19.868652,48.227768,0.02426716 732,568.5332,212.44965,24.328186,50.8006,0.016311904 732,532.42615,204.37529,23.235352,45.42769,0.0056362855 732,496.03137,192.3684,116.31781,157.76964,0.004744524 732,388.4903,123.02885,38.58893,93.091515,0.0029681148 732,603.4737,215.5054,35.45746,165.98245,0.00048564363 732,1.8120174,183.40602,21.874836,111.94212,0.0001717048 732,195.70482,218.0311,21.846481,46.28772,7.100563e-05 732,610.6679,84.05391,28.47876,143.67857,7.071559e-05 732,611.65314,366.1331,27.49353,135.97614,6.9258735e-05 732,4.7589374,283.75815,54.724937,187.0628,3.068146e-05 732,42.41468,207.14261,81.27554,161.2652,3.054317e-05 732,610.4448,3.8445687,28.701843,53.81596,2.4083378e-05 732,4.2233024,125.242035,55.977898,228.2702,2.116576e-05 732,0.91541505,357.7169,18.921066,139.79535,1.033319e-05 732,590.2479,449.03336,43.25415,59.704163,4.1113417e-06 732,1.1592749,275.27872,18.422895,138.74805,2.37175e-06 732,3.1762583,427.13553,52.704533,71.32156,9.942751e-07 732,1.1624309,53.069378,17.122133,137.02258,3.3412334e-07 732,2.6956527,20.551046,56.14235,98.83136,9.775947e-08 732,0.7015674,12.063815,11.025041,77.81082,9.06002e-08 733,135.95776,211.98996,26.49292,52.752563,0.015467676 733,5.5246134,212.6796,24.945946,54.996094,0.0013410368 733,150.87625,213.79715,25.436478,51.3295,0.0012888529 733,545.7355,122.09142,36.67743,79.50684,0.0012633977 733,386.45645,191.22858,30.12503,67.42917,0.0011492175 733,25.232729,213.21248,24.201616,53.860214,0.001032673 733,347.404,192.60757,23.982208,45.385666,0.0007510278 733,1.4018644,224.9432,13.370281,53.25287,0.00046687774 733,390.02094,120.307465,36.17502,89.736694,0.00022257458 733,618.2426,207.23293,20.904053,77.05229,0.00018050021 733,618.3916,258.86182,20.755066,81.74753,0.00013419428 733,602.58295,239.09717,36.423523,176.33997,8.1580496e-05 733,607.20154,434.93704,31.94513,74.392975,6.5787506e-05 733,611.13196,0.992168,28.01471,151.3706,6.37037e-05 733,1.4785213,174.45563,21.08425,132.49954,3.91493e-05 733,0.5379077,356.95068,19.104582,88.4534,3.5549463e-05 733,611.5255,110.5494,27.621155,147.08688,3.5343426e-05 733,227.44104,185.01857,81.57797,176.72517,3.3607423e-05 733,3.2453613,91.898415,57.64999,242.58948,2.1309765e-05 733,1.1481576,288.11343,33.207592,199.35583,1.5015131e-05 733,1.5498829,80.20512,19.264238,107.99932,1.3731932e-05 733,586.9513,326.45972,52.195374,164.18738,9.430828e-06 733,1.006366,420.81625,17.265293,79.14188,6.372253e-06 733,147.70763,394.2905,112.29884,99.95523,5.7981424e-06 733,285.36502,395.967,112.45514,99.4364,2.9395494e-06 733,263.28568,427.22488,71.71658,71.89105,2.9095615e-06 733,172.54764,441.96777,41.03331,57.51187,2.8897123e-06 733,5.4744306,396.43765,84.30411,96.423035,2.7275464e-06 733,428.9549,431.05148,76.48172,68.6037,2.6415319e-06 733,120.518,426.63553,76.00399,69.13464,2.597114e-06 733,222.1549,427.4321,72.35181,71.11218,1.8898172e-06 733,555.0627,422.05905,79.90326,79.47659,1.7315626e-06 733,345.0345,429.6088,72.858765,71.03433,1.414347e-06 733,208.24844,454.01694,40.535202,48.757874,1.0812863e-06 733,79.376076,431.4872,73.623344,64.51468,9.964356e-07 733,0.6701538,12.016046,10.879756,78.36574,1.08153756e-07 733,2.836644,17.782236,55.766502,107.36832,8.7404004e-08 734,539.61707,178.92595,20.986938,46.538223,0.008600401 734,2.0578508,287.6363,32.525864,79.635864,0.0015376615 734,375.55197,191.33214,22.56897,49.88571,0.0011146443 734,388.30887,218.07788,22.331268,53.67154,0.0003870135 734,46.985317,207.3396,23.016232,49.9989,0.0003681509 734,2.9369419,228.97401,47.83325,182.80809,0.00022939582 734,1.7827076,228.50964,17.676697,79.95462,0.00021317093 734,463.77573,239.23735,39.74344,93.09056,0.00019027058 734,618.53613,266.8404,20.610535,79.2193,0.0001264477 734,1.7588705,316.38324,31.66302,175.91193,0.000115952425 734,161.60143,212.11159,24.477814,53.187668,0.00011156014 734,397.83606,207.77438,30.481354,76.57074,0.00010065904 734,17.335361,197.27826,51.52145,133.0523,7.357642e-05 734,612.36237,167.99814,26.784302,134.74902,5.7474484e-05 734,607.2417,434.11237,31.904968,75.512024,5.3203094e-05 734,123.01588,225.26337,34.64173,70.19168,4.3427408e-05 734,611.6021,90.08206,27.544556,137.51648,4.3303175e-05 734,611.40735,1.4342579,27.739319,154.79008,3.3767385e-05 734,1.3913038,389.0188,18.154661,81.50516,3.3668373e-05 734,611.65045,287.24673,27.496216,136.48886,3.335473e-05 734,1.3009294,166.15309,18.222208,67.04324,1.17331165e-05 734,586.60706,328.98386,52.477234,163.65344,9.568275e-06 734,0.84891194,330.74448,14.981765,64.3858,8.430906e-06 734,141.77463,211.38179,24.782425,55.482132,6.1165865e-06 734,1.5358472,439.94345,21.274721,61.877808,4.5138927e-06 734,585.44116,50.53823,53.516663,243.99527,4.4978046e-06 734,2.1823454,109.02668,36.768757,204.87918,4.2347842e-06 734,5.696556,396.74823,89.85816,94.56131,3.8443004e-06 734,443.15955,207.72469,114.20557,203.65428,3.1050615e-06 734,157.56837,191.59021,71.37152,157.20898,2.8981574e-06 734,1.3697184,82.35001,19.598154,103.58616,2.4680182e-06 734,577.1778,452.62976,43.903748,53.927795,1.6629137e-06 734,423.37585,429.50912,75.21686,68.23947,8.8276266e-07 734,509.0812,424.08218,76.3179,73.3981,5.783758e-07 734,0.64707196,11.78279,10.546541,78.49279,9.9812794e-08 734,2.985454,18.108757,55.767456,107.041374,6.6950456e-08 734,466.3472,3.0307813,44.29001,47.48369,7.877452e-10 734,444.5246,0.40818685,42.094543,58.63561,1.0436993e-11 735,621.933,167.64647,17.213684,55.287186,0.0019295387 735,43.723694,197.69809,35.72969,65.16211,0.0008250797 735,380.97937,217.23312,23.393616,51.7565,0.0004900905 735,407.08377,227.52332,21.793518,50.39911,0.0004652408 735,611.7904,122.14289,27.356262,127.02758,0.0004026107 735,437.7886,215.04897,20.8349,45.77202,0.0002635765 735,1.7056487,211.50987,17.966103,77.09328,0.00019743614 735,386.431,237.4656,25.001099,54.211823,0.00018841485 735,2.1894531,233.7123,32.41362,208.18007,9.195331e-05 735,607.13495,433.1183,32.01172,76.95328,8.860725e-05 735,616.3713,366.9246,22.77539,92.3085,8.81e-05 735,612.18176,241.55756,26.964905,138.3472,5.8685255e-05 735,600.39825,306.42816,38.748413,185.2445,5.5464556e-05 735,1.2380794,326.76596,19.562199,88.11832,5.107901e-05 735,0.90352786,391.95978,19.107311,90.41742,3.5274265e-05 735,3.0227408,327.03278,77.60469,160.04694,3.3065062e-05 735,610.99884,20.084349,28.147827,142.81175,2.2841687e-05 735,0.37807822,390.67044,11.15256,45.200775,1.4712317e-05 735,506.59793,84.76444,42.670746,154.58496,1.0527412e-05 735,1.8998381,117.554886,29.485466,155.24037,9.855298e-06 735,523.88116,77.71049,39.12256,77.95904,9.36022e-06 735,2.2695508,416.4254,52.289547,79.91266,8.650419e-06 735,3.5092938,101.1701,59.515526,266.8661,7.3498086e-06 735,25.309229,227.80441,86.17358,192.8136,6.6587695e-06 735,585.70166,67.8825,52.897522,220.8151,6.5787326e-06 735,1.529362,163.31378,18.35132,69.56157,4.349571e-06 735,416.8458,431.45816,74.824524,67.845764,1.7903421e-06 735,541.59875,424.00464,82.081665,76.42114,6.8123074e-07 735,474.67752,423.84778,72.34189,73.456665,6.369431e-07 735,1.345328,45.766777,20.448078,107.52943,2.4192795e-07 735,0.6807324,12.545062,10.830314,76.56342,8.8678874e-08 735,3.9606414,22.179363,79.52541,135.19576,5.1159493e-08 735,1.69889,15.725391,36.31804,67.813965,2.9522282e-08 735,524.6504,4.8519125,41.674255,45.608616,1.8154398e-11 735,498.24823,3.8844435,40.40271,55.868435,8.637495e-13 736,256.88382,306.357,43.982605,76.45032,0.10460483 736,113.482994,211.15492,24.645119,51.397324,0.023449507 736,624.8689,153.35895,14.277771,45.674393,0.0027533064 736,503.28433,223.72832,23.079987,47.844254,0.0024241495 736,416.17844,228.17995,33.009033,72.74251,0.0013057811 736,605.1217,118.28799,33.374695,86.6224,0.0011496297 736,583.62177,85.07565,52.99646,211.68854,0.0006611277 736,1.4850993,219.14511,18.496798,75.1308,0.0006246307 736,615.91907,44.348873,23.2276,98.006424,0.0005426699 736,585.81256,194.38231,24.634827,48.892853,0.00037584617 736,611.74414,164.67125,27.402527,140.15016,0.00024977495 736,602.06573,265.2839,36.92163,175.00287,0.00012379227 736,607.26166,433.71338,31.88501,74.37659,6.97219e-05 736,288.5117,11.124278,42.30948,46.098743,5.6150588e-05 736,25.300514,199.5016,47.000175,91.9781,3.3110504e-05 736,2.3702588,148.74457,32.650463,183.60449,3.034296e-05 736,1.0085417,366.90756,18.543964,132.294,2.0323143e-05 736,249.03506,17.783005,74.49869,66.46734,1.050701e-05 736,3.0914226,217.9188,58.99946,245.67441,8.126983e-06 736,1.1351465,253.68642,18.009056,137.95506,6.2997797e-06 736,2.851761,388.77353,55.642303,105.15866,5.4342013e-06 736,1.4986329,169.92442,18.194761,74.52605,4.636722e-06 736,308.71716,16.032478,75.9126,67.75625,4.0984464e-06 736,569.881,357.59882,69.265686,135.40485,3.987023e-06 736,598.3024,3.1379883,40.395935,91.43919,2.557098e-06 736,574.7951,440.37375,46.638733,64.46658,1.2204486e-06 736,350.68045,11.620172,46.314545,50.880066,9.0784306e-07 736,171.13011,9.850207,56.820618,48.139545,2.786178e-07 736,1.0968034,45.21368,17.827337,132.91415,1.1237462e-07 736,0.67075723,11.924415,10.652545,77.58956,9.531763e-08 736,380.04666,8.584016,42.5101,53.473343,6.290625e-08 736,2.6970313,18.456837,55.951633,104.54884,4.7081013e-08 736,151.71783,8.277982,40.702835,54.010166,2.0467201e-08 736,410.19925,6.1767354,41.96295,57.08304,8.7445225e-11 737,619.61816,311.36334,19.528503,64.445404,0.022819554 737,582.4422,317.98444,53.196594,169.43735,0.009966157 737,12.06079,212.82855,33.440723,67.15991,0.009465287 737,622.00256,402.92764,17.144104,50.319916,0.0011565993 737,567.6147,147.35536,69.47125,293.2091,0.00048295234 737,618.1689,68.18519,20.977783,79.64672,0.00043167538 737,1.6224422,214.15382,17.945667,70.61531,0.000412594 737,611.7013,411.74762,27.445374,89.29208,0.00035493777 737,610.54584,225.25943,28.60083,147.02515,0.00026859262 737,43.605175,206.28375,33.02377,57.275238,0.00026028126 737,585.89044,199.5106,25.51178,52.038147,0.00018980337 737,610.6606,104.70685,28.486084,124.669586,7.884049e-05 737,513.25354,288.2228,97.13336,186.36813,7.363855e-05 737,568.581,185.8483,42.533447,134.03586,7.173815e-05 737,1.1159652,238.87292,18.496677,138.13858,7.062231e-05 737,594.4895,203.48532,32.91333,78.44705,5.467178e-05 737,574.7786,423.04385,47.09253,76.880646,3.492187e-05 737,3.8391032,118.18188,54.914238,212.73267,2.4541476e-05 737,1.3976514,401.5547,17.931248,71.65286,1.7250992e-05 737,0.8303548,329.41635,18.56405,75.43152,9.427051e-06 737,587.81854,465.74875,35.872986,45.138153,8.069692e-06 737,1.6634408,351.80637,31.78191,139.48468,5.7477123e-06 737,1.79972,164.15398,18.303324,71.58127,5.601432e-06 737,1.4374423,440.72537,21.23813,61.033447,3.8218263e-06 737,583.7477,38.465836,55.224304,249.04762,3.1242855e-06 737,1.9705046,87.33093,28.097582,160.42908,2.8766242e-06 737,1.5832227,47.22364,20.376642,104.00356,2.1870672e-07 737,0.62695926,11.4256315,9.878944,78.86338,7.1635675e-08 737,597.32764,1.5059668,41.770508,89.7163,6.2666025e-08 737,2.5838542,17.77275,56.130848,105.81057,4.2174012e-08 738,53.038815,190.95541,29.30888,45.096954,0.02970681 738,401.66293,192.45053,20.94632,46.49434,0.017066712 738,600.2548,143.73352,34.41089,78.99492,0.01700479 738,7.9348807,210.22144,22.360107,45.99173,0.0033915287 738,390.30875,187.37402,21.360443,47.18634,0.0025314924 738,88.28881,214.2044,21.90895,52.742706,0.0019117866 738,65.81527,207.72633,24.07933,53.49153,0.0007282462 738,27.04096,207.55576,35.298523,60.857452,0.0005004134 738,620.9192,131.04771,18.227478,61.230423,0.00030486938 738,612.5009,372.88492,26.645752,125.51077,0.00012447331 738,617.0408,252.6171,22.105896,85.645996,0.000117278294 738,588.39496,134.68645,50.24353,199.8817,9.6087446e-05 738,2.8152719,141.45471,29.14096,142.87823,4.0239316e-05 738,587.26105,240.48116,51.88562,238.40666,2.9167413e-05 738,0.8484579,358.42572,20.8898,108.25769,2.1835009e-05 738,599.1929,5.994427,39.953796,85.74041,1.288041e-05 738,3.1151042,208.61392,58.819935,259.73984,9.060478e-06 738,3.5366309,399.1997,56.278564,96.54532,6.750741e-06 738,0.9782349,421.68243,16.327995,79.676544,6.101171e-06 738,1.2057674,274.93738,17.312876,145.13788,6.0627167e-06 738,377.1975,81.13505,42.874268,147.32455,5.306749e-06 738,27.936478,428.6053,81.545006,71.6001,1.3402421e-06 738,1.1134245,73.52047,16.580591,148.85721,1.1184394e-06 738,0.6540267,11.576966,10.425276,77.739876,1.0299887e-07 738,1.646486,18.082924,28.015982,113.59849,7.085946e-08 738,2.3817677,36.753094,61.38439,203.95828,5.16715e-08 739,148.56226,210.66014,21.409485,45.517105,0.028841773 739,548.40436,183.32774,24.351501,52.66713,0.023700034 739,463.6914,199.35226,25.18866,48.794846,0.014853338 739,462.177,139.15453,24.270721,50.388275,0.0017861518 739,465.6619,138.77896,42.055603,116.99704,0.0009550582 739,18.983074,204.43779,44.29571,89.42119,0.0009161892 739,114.44638,204.12323,37.84755,84.09042,0.00027127395 739,618.366,165.49904,20.78064,76.71794,0.00027107325 739,1.3222005,206.491,17.220758,71.67392,0.00023243124 739,616.93713,246.55641,22.209534,86.2682,0.00014848512 739,609.0034,440.9969,30.14325,64.536255,0.00010631862 739,611.81976,323.34158,27.326904,140.67197,0.00010126196 739,616.5242,103.96711,22.622498,79.96505,9.3931514e-05 739,482.45386,183.43591,30.002869,59.570602,8.594778e-05 739,1.2185556,405.48996,18.23111,78.20712,6.5181055e-05 739,4.402264,190.75656,58.693768,231.54663,6.083405e-05 739,601.9779,72.06162,36.75067,178.25421,3.8139297e-05 739,600.9197,207.98318,37.999268,175.81699,3.588946e-05 739,3.4661167,395.97525,56.035732,98.0018,1.9505991e-05 739,1.3043319,225.99059,28.615244,149.6179,1.7238097e-05 739,1.8209326,454.04575,28.305878,48.641937,1.2471496e-05 739,2.3202035,105.3039,34.31707,184.39496,1.0376127e-05 739,0.87540776,308.85123,19.39899,143.268,8.951077e-06 739,1.347767,157.77058,18.078945,75.161606,5.09324e-06 739,599.19525,4.35987,39.951416,82.052895,3.888414e-06 739,1.0165958,21.561003,16.24322,127.39644,2.4258176e-07 739,1.6297771,14.653034,35.625145,69.890854,7.687057e-08 739,4.073239,23.39752,77.8365,135.48897,6.8886756e-08 740,361.16403,200.47508,21.439148,48.280106,0.04441707 740,89.96151,222.0886,24.761139,53.36975,0.01600695 740,578.6801,164.04907,24.715576,54.49414,0.0020826499 740,554.39087,169.64748,32.979736,70.31758,0.0012402055 740,620.03156,275.941,19.115112,60.19391,0.0010546799 740,531.20764,205.35445,20.294006,46.05464,0.0010510932 740,621.62103,206.14441,17.525635,60.243774,0.00078582496 740,606.69495,141.72525,25.562073,49.55461,0.0007807008 740,610.71875,127.06841,28.427917,148.22745,0.0005911852 740,17.695715,245.50423,37.56391,70.28212,0.0004033466 740,621.6219,156.35599,17.52478,58.527466,0.00038936947 740,585.1574,185.52394,29.71698,47.422256,0.00027562788 740,1.3353345,227.9055,18.774963,118.81978,0.00024139538 740,613.6005,21.86061,25.546143,104.18045,0.00023595776 740,4.985013,207.79482,77.97704,255.165,0.00015358382 740,0.975826,344.22455,19.608551,139.59149,0.00011975871 740,569.9437,171.41537,68.53473,252.75986,8.8859e-05 740,609.29285,441.9918,29.85382,63.046967,8.46911e-05 740,609.04626,235.4698,30.100403,148.46437,8.1713486e-05 740,74.470634,222.00131,26.553253,54.70053,7.285139e-05 740,617.11414,339.7877,22.032532,82.73038,4.944943e-05 740,0.8357902,304.10278,18.077726,75.76068,3.8334132e-05 740,3.0815122,395.6006,56.458393,95.36868,2.9862227e-05 740,519.7576,103.91774,45.814026,135.22919,2.8971303e-05 740,585.08655,396.92267,54.06012,99.154175,2.5309306e-05 740,553.59546,141.06187,22.33075,51.28763,1.7430553e-05 740,2.2156332,132.51547,32.83895,189.60349,9.727113e-06 740,118.788704,171.22093,101.66024,208.7072,7.6861415e-06 740,1.0998462,74.17673,16.400385,129.63744,1.0738258e-06 740,580.0297,0.0,58.93994,226.88475,1.0686687e-06 740,2.3716114,19.024994,55.64949,116.53439,1.4837298e-07 740,0.7111076,10.988258,10.724042,79.87953,8.465316e-08 740,587.21796,0.15459798,42.136536,51.031536,2.7339448e-08 741,394.6178,198.13846,22.350983,51.098343,0.064456925 741,1.9684131,204.25415,33.370857,72.03055,0.014862305 741,406.78845,200.95152,22.61914,47.33226,0.0021974144 741,376.6729,201.23296,21.456238,47.54393,0.0019385763 741,610.12305,140.54417,28.836243,130.07823,0.0011293998 741,0.38346234,280.7978,13.258607,50.750885,0.0010179216 741,0.550861,254.00305,13.939838,50.20981,0.0007995728 741,0.93959635,227.04518,25.008944,115.27489,0.00079587626 741,81.78835,185.84001,38.394173,79.82066,0.00058403023 741,1.2688509,242.72693,57.275692,233.87991,0.00052454614 741,608.79504,440.52216,30.351624,66.70056,0.00013822422 741,617.5301,236.39774,21.616577,84.24753,0.00011939653 741,0.9611141,351.62497,19.199331,91.35513,0.00011342139 741,617.1333,320.92255,22.013367,80.35803,7.617007e-05 741,603.9877,350.9613,35.158997,142.05844,4.3394037e-05 741,589.26794,168.49472,49.878723,208.8471,3.6378235e-05 741,1.4634384,395.56146,28.715736,99.208435,2.4845496e-05 741,0.7893783,308.56104,11.527818,48.276154,2.1567537e-05 741,531.7263,123.4887,24.475708,48.10926,1.4733912e-05 741,2.1670835,66.11892,58.105698,250.68524,3.7874731e-06 741,588.38165,16.12722,50.273865,108.12828,3.6877457e-06 741,545.6508,129.6048,23.100159,48.164124,2.963831e-06 741,1.7122673,102.910774,19.455877,140.85764,1.982556e-06 741,2.5703955,21.680971,55.83061,112.93947,2.695151e-07 741,471.56924,4.755562,41.470978,50.18224,1.7518896e-07 741,0.6877621,9.581595,10.546865,84.2208,3.3804497e-08 742,414.7699,159.7831,26.277832,71.12793,0.01460974 742,400.54294,164.9618,26.132843,67.30882,0.0019161855 742,138.21227,199.75562,24.473785,46.1857,0.00096914655 742,80.376114,203.65372,20.806412,45.88321,0.0008902771 742,434.0398,182.29208,25.215485,51.33876,0.0007221195 742,120.211784,202.24518,24.732048,47.55342,0.00051339687 742,617.52344,390.49484,21.62323,77.06021,0.00032112913 742,616.3555,189.89375,22.791138,80.50377,0.00029918834 742,389.88852,182.31401,23.31955,52.090317,0.0002455028 742,393.08395,128.8334,55.521515,119.78212,0.00021357405 742,617.2982,330.44397,21.84845,79.139465,0.00012656389 742,4.157642,184.5929,56.781982,235.76825,0.00010022339 742,617.0575,93.76879,22.089172,82.94926,9.751632e-05 742,608.99603,439.56116,30.150635,65.09839,8.879827e-05 742,602.5244,303.62225,36.622253,179.91473,8.656192e-05 742,1.3712769,214.89108,18.066946,74.68948,8.3640974e-05 742,601.42426,100.83029,37.64148,177.9534,5.7269797e-05 742,617.4938,264.58157,21.652893,81.49448,4.368461e-05 742,2.395752,113.33571,28.774261,130.94794,3.3722747e-05 742,1.1595207,404.923,18.523758,71.51831,2.9293808e-05 742,1.2881202,357.82578,18.142506,74.14307,2.0282365e-05 742,1.8661703,296.61163,33.085674,176.09229,1.0641008e-05 742,3.3633854,393.16068,56.17796,100.167816,7.684997e-06 742,0.95747155,297.8974,18.627258,78.59097,7.545489e-06 742,324.95023,431.80493,70.98352,67.7507,2.8018846e-06 742,587.14343,19.394564,51.102234,98.3347,2.3075297e-06 742,1.5623056,60.309845,20.399029,101.905426,3.5472533e-07 742,370.46335,90.52441,114.85599,209.983,9.8820195e-08 742,3.501211,27.293627,79.079124,133.39412,1.8683433e-08 742,0.6857337,12.363891,12.577168,69.98676,1.3200663e-08 743,416.1486,143.91768,53.053192,121.47136,0.7714898 743,445.0669,166.06711,28.278625,80.45686,0.023602597 743,538.25946,199.2477,22.979614,49.97203,0.020648802 743,183.51445,221.12039,20.807281,47.983826,0.010387036 743,622.0542,230.48279,17.092468,55.161835,0.0075620324 743,505.55402,190.73517,23.414917,54.002914,0.0046918276 743,39.509315,194.85753,23.630733,47.41031,0.0038476025 743,431.38522,204.44672,20.117401,51.15767,0.0026847208 743,526.4382,191.05618,23.938171,50.879807,0.002457512 743,409.96054,195.70613,25.415253,64.61302,0.0021421888 743,7.4076605,222.34996,28.080795,49.583694,0.0019473037 743,218.14577,218.58475,20.898453,47.62845,0.0017308983 743,611.3757,177.06706,27.77069,121.627,0.0010662829 743,551.02606,194.64966,22.687622,46.714417,0.0007048424 743,29.170639,211.4907,28.72358,50.46718,0.00039698475 743,3.8159,193.50963,57.16601,231.50334,0.00024573097 743,1.0479298,237.61732,13.553024,49.22957,0.00023990247 743,1.3905469,201.77547,20.928467,110.13277,0.00022296593 743,617.6289,143.529,21.517761,79.4337,0.00021210426 743,1.3118303,358.41403,18.68873,79.948944,0.00018947636 743,621.7239,107.97197,17.42279,57.117905,0.00015142554 743,611.95154,355.55243,27.19513,135.6966,0.00012897806 743,610.8679,242.97568,28.278748,148.54935,0.00011665185 743,585.5482,98.77548,51.9209,213.67322,5.912692e-05 743,405.21246,110.15357,121.323,191.03372,5.7348392e-05 743,1.760796,335.9899,33.237553,149.99225,3.3952478e-05 743,0.99022055,409.616,18.376833,72.36688,3.1375253e-05 743,610.2001,41.016777,28.946594,142.46222,2.3964287e-05 743,88.17552,112.40568,26.005226,49.891396,2.1209042e-05 743,2.1287541,104.2016,33.90169,183.55319,2.0174564e-05 743,1.2462947,163.1632,19.270061,83.98746,1.0045958e-05 743,1.0320524,100.21626,18.430832,68.82153,5.196648e-06 743,0.85494304,295.8217,18.782486,78.39014,4.8857482e-06 743,3.0281577,425.9414,52.677094,72.48804,3.278823e-06 743,1.7524447,20.13868,34.879845,68.91475,3.0314176e-08 744,451.61667,129.87225,52.279022,151.49649,0.21385765 744,16.961138,174.1056,28.681437,50.96672,0.007073432 744,478.09283,90.25297,48.968506,177.80124,0.005096048 744,606.17444,118.53955,31.842773,70.68204,0.0032797274 744,467.7808,199.50423,25.105103,61.275955,0.002724271 744,531.0109,192.42642,34.739685,83.8923,0.0024236643 744,622.4412,188.0274,16.705444,50.410446,0.0018904944 744,621.21045,147.28212,17.936218,55.848267,0.0017310864 744,193.44986,213.39656,25.634415,48.242935,0.0017179004 744,266.25092,232.24461,21.056305,49.484634,0.0016124626 744,483.0022,123.39512,25.380829,58.067314,0.00083773857 744,611.1649,147.21394,27.98175,127.22893,0.000491074 744,388.63763,203.2301,22.127869,46.43863,0.00030007015 744,415.53137,200.52393,21.126282,48.545578,0.0002885136 744,616.9084,76.7361,22.238281,85.94162,0.00025515136 744,4.3457847,250.01396,55.804855,220.14818,0.00021932945 744,617.0723,219.65189,22.07434,82.47043,0.00018777966 744,611.6847,337.46918,27.461975,138.21564,0.00016534152 744,430.8427,76.3625,141.99622,236.76814,0.00011309175 744,608.8953,440.59955,30.251343,63.020477,8.995815e-05 744,617.4764,294.98645,21.670288,81.26068,7.847682e-05 744,599.92346,20.860573,38.61841,199.6412,7.6022174e-05 744,2.0265512,171.20094,28.932674,138.8232,4.4511646e-05 744,1.4199512,361.93393,20.406267,101.108154,4.4336924e-05 744,361.9989,200.33759,42.340607,124.14758,4.0611347e-05 744,1.0242074,250.91266,18.951782,79.42435,3.6601647e-05 744,1.2817985,216.44772,17.908653,68.47809,3.5936828e-05 744,600.7396,221.96451,38.407043,202.08917,2.8627934e-05 744,1.8272705,416.24768,35.868393,81.59842,1.1849219e-05 744,1.8403639,100.76379,18.853828,137.05179,1.01995665e-05 744,4.562046,104.68186,57.403065,216.21387,6.7182177e-06 744,609.66125,3.5957944,29.485413,59.647774,5.8650903e-06 744,0.8595785,7.7827606,37.950996,85.48975,2.9985276e-06 744,0.9366781,296.15088,18.620571,75.12924,2.735163e-06 744,2.9496126,16.398731,80.53653,153.45317,6.831396e-07 745,11.466488,251.78313,30.598682,64.26778,0.1409087 745,622.3897,182.71956,16.756958,52.4682,0.005259211 745,610.2226,168.52582,28.924072,145.21149,0.0037369863 745,619.70856,120.89386,19.43811,76.39818,0.0028813751 745,625.1631,98.51832,13.983582,45.318993,0.002259357 745,448.6885,104.94103,88.35684,182.30234,0.002041833 745,319.79703,204.78247,24.919495,50.870132,0.0018984672 745,233.55522,208.90833,21.633698,47.619507,0.0016528302 745,354.84302,208.4968,32.375214,78.41919,0.0014646979 745,558.34656,183.68279,24.698242,54.04605,0.001177579 745,0.47358236,224.95857,48.452507,139.25331,0.0011486608 745,374.1502,203.00394,22.734436,51.93318,0.00051925384 745,616.63654,385.11618,22.510132,81.71701,0.00039524172 745,504.25964,59.677464,52.584717,185.8568,0.0003074909 745,585.8796,201.06845,52.749817,222.0604,0.00014198171 745,602.6362,47.682083,36.450256,176.65974,0.00012476604 745,608.9143,437.71512,30.23236,66.82599,5.617405e-05 745,1.7475603,168.1787,20.676682,141.4236,4.9603506e-05 745,611.16254,298.16632,27.98413,127.87082,3.751382e-05 745,570.70276,362.58023,68.44391,126.734924,3.361608e-05 745,240.0514,10.4399185,44.55989,52.860546,2.6956108e-05 745,568.1407,0.0,71.00598,72.35989,2.6224163e-05 745,613.3112,0.0,25.83545,46.04384,2.0418802e-05 745,0.885778,359.4703,19.828089,135.20767,1.96079e-05 745,537.41003,62.561836,50.366272,178.32928,1.37787365e-05 745,343.3789,179.60548,75.47009,155.08083,1.082075e-05 745,377.35803,142.01285,83.97354,165.11499,1.0701029e-05 745,174.48825,14.2770605,44.12848,45.636715,7.014909e-06 745,251.65974,12.110824,77.03557,69.0307,4.1334993e-06 745,1.3220574,22.149405,19.431572,102.27762,3.6921583e-06 745,2.6897266,32.312214,61.213776,188.82034,2.2877475e-06 745,3.0090072,340.68353,78.79031,148.28143,2.0749721e-06 745,3.9411068,13.060742,55.03624,74.268745,1.5487028e-06 745,338.92294,6.599881,42.086914,45.78105,7.7606927e-07 745,369.44623,9.973179,41.69925,54.118595,7.2334564e-07 745,300.83313,8.1587715,41.65454,54.10066,5.930953e-07 745,437.9918,12.974694,38.991516,52.410973,5.2810384e-07 745,115.5146,9.161221,41.586227,49.749626,4.3024548e-07 745,411.1605,13.128084,40.166595,51.320908,3.5362015e-07 745,310.34045,13.296836,77.35184,71.660805,3.4810523e-07 745,35.103848,5.717992,41.680363,54.40845,2.159502e-07 745,463.64996,9.311026,40.56546,55.557816,1.5245027e-07 745,541.72125,1.8544466,46.33264,69.553566,7.652227e-08 745,500.29428,8.356094,39.378937,58.233803,6.697383e-08 745,61.42773,3.5687404,42.960552,56.29405,4.4155687e-08 745,89.42342,4.8238444,40.855583,53.554398,3.222204e-08 746,422.25458,206.33975,21.287048,48.568695,3.276782 746,604.8891,116.209,33.40222,65.45053,0.005903124 746,33.870182,249.6879,26.507015,59.859833,0.005572251 746,354.1731,202.17471,21.114227,45.014175,0.003475899 746,490.1667,143.9459,43.145447,129.39317,0.0026376173 746,430.68396,202.14111,30.655945,73.40274,0.0012819233 746,374.65323,189.15704,38.48987,67.629395,0.001091477 746,296.5415,200.37347,26.347382,52.133484,0.0006633671 746,2.2228858,183.03549,17.909943,67.863495,0.00064404134 746,584.1586,31.482168,54.231995,182.41351,0.0002515127 746,616.69745,62.71754,22.449219,89.813,0.000199693 746,457.2048,156.66089,49.40155,125.6561,0.00017051032 746,617.5431,401.4579,21.603577,79.07541,0.00014081688 746,617.3421,251.8021,21.804565,81.71323,0.00012921938 746,617.1697,344.97705,21.97699,82.977936,6.8419016e-05 746,478.1973,110.320755,109.784515,211.28426,5.961146e-05 746,1.3066065,317.35608,19.280094,144.4057,5.396016e-05 746,2.6338005,267.48062,56.89546,209.47552,4.7948153e-05 746,611.7107,151.65271,27.435974,139.5469,4.5704648e-05 746,601.30054,293.03262,37.84613,185.04889,4.4938814e-05 746,2.6514795,127.30332,35.54735,180.73148,2.6240423e-05 746,329.35104,189.14592,75.19714,152.83592,1.6142963e-05 746,20.767052,218.44264,46.035744,134.07323,1.5063996e-05 746,607.7553,1.9449056,31.391357,61.973534,1.3079766e-05 746,364.45898,154.07297,99.041534,186.57089,1.0580092e-05 746,1.4741113,216.34187,19.164186,153.16481,3.907e-06 746,0.98179525,418.52173,16.076586,81.33328,3.4893897e-06 746,538.44543,0.82803714,96.52832,94.96759,1.5449941e-06 746,2.9761264,425.4536,52.263412,72.44104,1.0281835e-06 746,526.19763,11.292227,69.558716,200.8378,9.2731443e-07 746,528.04004,0.0,46.32373,61.569206,1.3031749e-08 746,505.29758,0.0,44.103607,131.00075,1.06095e-08 746,0.74898845,11.370267,16.743473,136.59877,5.2199653e-09 746,1.0726628,4.6635303,27.720125,55.742264,1.226376e-09 746,483.81256,0.0,49.198242,78.38177,7.2954787e-10 746,458.8094,0.0,40.45041,63.901806,2.4298692e-11 747,370.99298,198.07217,20.594696,48.87047,5.012043 747,134.57173,220.47276,23.675674,45.31224,1.0528172 747,354.61786,189.61014,21.342438,53.476852,0.06732553 747,442.98813,200.79951,28.199432,57.658646,0.028585322 747,577.9139,84.1509,58.64453,162.2781,0.018439366 747,620.6785,120.60296,18.46814,61.846428,0.00992371 747,321.2754,205.49837,21.64035,46.064056,0.0040925127 747,228.19376,221.29341,24.039795,54.039627,0.0019311219 747,621.582,168.98024,17.564697,61.350464,0.0018271141 747,210.38727,209.4103,24.154846,51.86821,0.0018164743 747,517.30066,122.43878,47.43097,155.59946,0.0016410414 747,419.79526,176.51852,42.000214,93.17636,0.0006245426 747,457.15485,194.5587,33.21335,83.41643,0.00058468565 747,2.600153,209.62445,54.013313,150.94183,0.00052170746 747,600.6896,145.83443,37.17383,182.01219,0.00032863911 747,1.6530102,202.6645,19.2853,66.073746,0.00030748444 747,493.31763,136.71889,45.294373,148.70912,0.00023128894 747,482.29013,214.4825,36.727875,83.703354,0.00022755528 747,361.86246,167.4065,57.831238,102.532745,0.00018343906 747,612.938,47.110313,26.20868,120.74659,0.0001604677 747,610.84155,243.20824,28.305115,127.69676,0.00014764578 747,1.2660499,249.35527,22.26403,107.119644,0.00014366794 747,607.61566,438.86636,31.531006,66.155945,0.00013343344 747,496.56232,95.800385,126.10541,216.4144,0.00012168479 747,320.35376,169.81792,78.71762,171.62413,8.960727e-05 747,612.4869,338.45737,26.65979,142.07358,7.107528e-05 747,1.0295671,304.6195,19.610577,157.97513,3.939747e-05 747,580.0919,4.630059,59.05475,140.40471,3.317571e-05 747,412.44812,146.66203,89.53607,186.22853,1.6685268e-05 747,4.2317677,343.19418,77.97912,143.20532,6.1122014e-06 747,2.1049838,95.19302,33.262486,201.91553,3.1285672e-06 747,604.5039,0.0,34.64276,73.15444,2.6951523e-06 747,1.9145395,414.84656,34.908825,81.81674,1.8045595e-06 747,485.8038,3.7194922,79.58469,175.2305,8.404856e-08 747,2.9204445,16.96265,56.213306,116.8647,2.2119181e-08 747,562.6556,1.4885792,47.03949,55.56956,1.7280538e-08 747,507.91418,0.0,50.20404,72.908485,1.250417e-08 747,0.95038986,7.448996,20.120308,54.450855,9.821339e-09 747,537.6175,0.651722,45.200745,67.07731,6.314496e-09 747,478.62115,0.0,50.235535,59.109936,2.2763444e-09 747,452.91486,4.224287,43.079285,58.202744,5.1156784e-11 748,457.39752,202.72272,21.212921,46.361145,99.78346 748,396.03223,197.67578,21.662354,52.115112,99.416626 748,504.30908,197.73943,21.656555,45.776596,98.458374 748,487.3957,194.75323,18.335785,46.836014,86.77109 748,377.09048,193.76552,27.3667,61.96405,0.65483356 748,366.67316,196.0304,20.798431,50.52443,0.10626176 748,350.63525,194.02232,20.68805,49.253952,0.009895494 748,521.06915,191.6514,32.82361,63.585907,0.0056966986 748,608.865,67.57428,30.189636,67.17906,0.0019565364 748,608.2804,154.41052,30.866272,151.2799,0.00057039026 748,487.67474,160.45566,56.693054,111.915985,0.00032711172 748,617.0616,297.1047,22.085083,88.45932,0.00018762822 748,1.2451571,213.04381,17.914202,128.88588,0.00013314335 748,612.90485,360.8843,26.241821,135.93686,9.473624e-05 748,585.78925,177.86699,53.131653,262.75623,8.778483e-05 748,439.38333,171.2118,58.261383,97.866714,8.2797975e-05 748,599.5177,24.640236,39.237,217.84067,6.361907e-05 748,614.64233,8.105157,24.504333,96.554016,5.4206128e-05 748,1.0334506,393.0755,18.623259,79.195496,3.7582646e-05 748,368.4927,156.94534,90.36127,186.25616,2.2238122e-05 748,465.81677,110.60935,134.5484,215.02283,1.874228e-05 748,302.84317,420.75458,74.326904,76.84216,1.6950595e-05 748,362.03558,415.40872,74.56482,85.40021,1.373742e-05 748,588.0869,0.60615396,45.628662,51.281475,1.2146456e-05 748,207.76646,422.09866,73.54292,77.947296,8.365551e-06 748,3.914193,194.92273,54.982418,205.65057,6.89461e-06 748,2.8289413,136.60529,31.629242,156.09622,5.3134136e-06 748,3.2833042,391.22974,55.580467,100.914764,4.759026e-06 748,0.38703045,299.91937,28.67385,164.32855,3.872457e-06 748,1.3255087,439.98987,20.970377,60.220306,3.517992e-06 748,139.68352,419.5088,73.65987,78.49371,3.4279678e-06 748,404.4354,420.21594,73.36713,81.06793,1.3709315e-06 748,544.2291,4.466859,46.950684,59.670044,5.552177e-08 748,515.79517,4.2431707,46.200317,61.02424,3.7181824e-08 748,1.6720557,24.416935,28.965933,146.30568,2.9493524e-08 748,486.04434,1.1519173,46.98947,57.185467,2.1569486e-08 748,1.1134001,8.556893,29.198938,54.067444,1.1759964e-08 748,451.81564,0.0,41.67801,63.354233,2.3640776e-09 749,507.5796,207.64252,25.11621,53.95752,99.813194 749,543.068,201.1408,21.334595,52.24286,95.99578 749,529.5639,199.84348,20.357483,49.100464,41.754036 749,370.544,210.2341,20.613434,45.786438,0.037234776 749,420.8045,201.43633,22.869263,52.082016,0.013615079 749,378.09656,192.80516,27.90445,60.835785,0.0054047257 749,86.09241,217.85744,24.194496,52.418808,0.004673185 749,533.6726,178.90286,40.038696,99.69382,0.0035307799 749,75.469894,224.96945,23.231346,58.04898,0.0017661479 749,491.0709,181.04868,59.518158,101.51291,0.001119105 749,394.2933,203.57045,21.573608,50.567627,0.0009205842 749,616.9221,52.091103,22.224548,81.28367,0.00045460442 749,603.1066,157.39722,35.011475,122.78595,0.00041116192 749,617.4813,235.0648,21.665344,81.13704,0.0003426979 749,602.6553,221.20386,36.491394,194.06808,0.00012372722 749,611.7928,373.56207,27.353882,124.83746,9.631185e-05 749,463.84387,133.28252,133.28711,231.4099,7.838796e-05 749,1.6641577,184.51892,17.705404,72.12097,7.354618e-05 749,1.0942277,213.87029,18.608082,124.14671,4.9656563e-05 749,429.66922,157.03648,56.815277,111.7527,4.5217686e-05 749,3.7607715,217.10547,56.994686,220.81412,3.5773104e-05 749,1.0473796,332.4405,19.757442,134.16739,1.5823816e-05 749,609.45233,2.9736881,29.694336,73.44613,1.1996649e-05 749,3.5348585,394.39948,56.27263,100.60867,5.9489703e-06 749,2.493199,138.47902,34.72262,161.79701,3.5054602e-06 749,528.3621,422.19067,78.30731,75.6308,6.5823065e-07 749,522.3177,3.4226563,63.966003,53.80702,5.143102e-07 749,1.0103532,59.885567,15.858362,145.06046,9.591838e-08 749,491.66855,3.7225945,44.923798,57.44165,4.921058e-08 749,2.4344337,20.35286,56.44485,106.89896,1.8775314e-08 749,464.75632,0.93774414,41.63385,62.33676,4.855623e-09 750,454.76596,213.04332,27.763062,68.24196,99.96108 750,606.4303,218.78206,32.646362,78.98192,99.43767 750,592.69073,215.07704,24.549927,64.27959,94.01212 750,134.83862,196.95444,29.853394,58.6326,0.31239903 750,584.126,217.91315,20.260742,46.952454,0.14787193 750,623.0135,251.67279,16.133179,48.647095,0.06526971 750,538.54913,213.26059,20.835632,48.150604,0.02457839 750,254.4316,217.22963,23.700333,51.201523,0.023634415 750,508.26517,190.5799,22.590485,51.04561,0.02002142 750,148.29947,218.00851,26.396667,50.123413,0.018986164 750,369.98087,222.19527,21.28302,48.71541,0.011531057 750,589.5855,198.09982,47.5849,192.0112,0.009254045 750,95.18556,216.48688,28.522629,45.119476,0.0035547677 750,39.01264,229.03334,34.22886,69.357285,0.0022250044 750,75.57204,204.35214,34.80549,64.65811,0.0011920395 750,604.42145,67.273766,34.72522,102.56039,0.00083668146 750,382.00128,219.49715,22.759918,52.903152,0.00042921232 750,620.36615,30.837103,18.780518,68.56312,0.00018230875 750,399.40906,137.56546,41.934753,119.42142,0.00017457515 750,603.0239,352.4781,36.12274,139.85693,0.00015185997 750,612.8241,0.0,26.32257,47.267437,7.5265154e-05 750,440.3362,179.67052,73.905,139.50746,6.0669736e-05 750,409.67035,139.18776,21.875458,54.73802,4.4972512e-05 750,3.8877344,201.2068,59.64615,227.20274,1.6331787e-05 750,592.6344,0.0,46.512268,102.74195,1.4677883e-05 750,420.70496,135.39658,25.936157,62.384552,1.3400955e-05 750,0.96113855,220.61339,19.01944,131.74333,1.1741747e-05 750,0.92153484,308.95752,19.62849,137.07144,1.0815425e-05 750,555.8933,418.68463,79.50818,79.06174,5.77252e-06 750,3.7403874,396.38574,55.978794,96.33499,2.2229847e-06 750,2.3313298,138.99605,28.575985,145.97536,1.7061388e-06 750,571.8234,0.8991634,45.44818,65.34227,9.610224e-08 750,545.69586,3.3833008,45.76892,63.07203,4.886899e-08 750,489.34042,3.6672266,44.542633,63.240124,2.090072e-08 750,1.5499642,12.874763,35.154472,72.097946,1.8419613e-08 750,517.8547,4.8845606,46.53369,59.152275,1.5234553e-08 751,534.41815,208.58478,38.59021,91.606964,99.966385 751,489.156,205.79297,22.336823,47.178802,99.65075 751,403.10046,223.28595,22.166199,50.798492,5.049099 751,114.83793,203.9049,28.234169,50.60898,0.9951873 751,612.68353,218.2294,25.402954,48.149933,0.017970523 751,69.50027,202.75899,30.978188,54.22429,0.011628003 751,507.4546,196.03732,44.328247,77.45001,0.0100577995 751,335.22827,185.42334,22.521332,52.840027,0.009444757 751,597.4848,149.866,40.81311,107.66385,0.006780212 751,460.51422,206.39807,40.15338,107.232605,0.004168263 751,572.8456,171.08084,22.6391,54.393387,0.002871229 751,379.75702,140.22253,22.777191,49.26004,0.0026857757 751,620.8632,155.10857,18.283447,58.752502,0.00096172653 751,1.5652612,205.64981,18.950777,76.36365,0.00064925605 751,494.90402,152.87791,87.09958,188.34047,0.00049475563 751,601.414,197.46483,37.732666,181.71892,0.00033915596 751,472.4223,169.41501,59.71466,114.13818,0.00029104747 751,364.59296,133.34932,42.81125,99.00746,0.00028744142 751,611.2096,297.55966,27.937073,136.73764,6.3645515e-05 751,2.7805486,172.81218,34.786564,169.84547,6.204323e-05 751,608.20874,438.55786,30.937927,65.012054,5.4165623e-05 751,607.7141,29.815815,31.432556,167.49542,2.4470803e-05 751,1.034336,324.85986,20.070059,151.02676,2.3352652e-05 751,3.521831,303.50546,55.35229,179.47232,1.1533853e-05 751,575.41534,2.9762826,63.731323,57.110874,7.845469e-06 751,572.111,355.94424,67.035645,138.10327,3.360165e-06 751,1.5538558,102.63651,18.99494,143.56989,2.6652676e-06 751,1.5475831,443.4377,20.895512,59.737366,1.3645245e-06 751,427.99963,7.5957584,42.097656,58.60122,9.275546e-08 751,403.19693,3.4792743,41.155,63.28478,6.4033494e-09 751,1.5152849,9.971267,34.475655,75.28721,6.0331082e-09 752,538.55615,191.43571,26.707886,59.564377,99.93512 752,566.6783,194.0429,27.119629,54.801727,99.87992 752,599.9455,163.52151,34.983765,66.11456,3.3994946 752,451.30963,240.73209,23.96939,50.266357,0.7901533 752,334.9556,170.26147,20.941223,53.2041,0.26890647 752,345.73026,163.81195,22.245758,57.943207,0.046769302 752,84.14577,193.19504,30.689323,53.450806,0.038898893 752,323.2242,168.11102,21.24884,50.6846,0.036368072 752,494.43225,204.74841,41.87854,141.95837,0.026069053 752,621.0937,154.76187,18.052979,61.72151,0.013693368 752,358.29892,169.45444,29.665283,70.30469,0.010387125 752,374.90942,190.06273,21.471344,56.21585,0.006479801 752,3.0955184,193.9326,31.955473,66.138016,0.004931812 752,522.72394,178.115,63.95996,92.868454,0.0023185045 752,1.4607439,209.87794,13.741109,51.298447,0.0019426664 752,589.63245,107.03633,47.475708,193.8796,0.0007738855 752,621.5167,101.55994,17.629944,56.25377,0.0005585733 752,306.21906,197.41753,21.024689,50.08464,0.00017722725 752,610.81354,271.252,28.33313,143.0072,0.00015979727 752,610.0042,49.006077,29.142456,160.89148,0.00015304898 752,485.49365,123.46882,133.52448,230.89041,0.00014418774 752,608.69684,438.15637,30.44983,65.279205,5.0285234e-05 752,570.9206,349.58984,68.226074,134.68579,2.3635226e-05 752,1.2423316,225.44771,18.912035,128.88356,2.3181574e-05 752,0.963374,361.0604,19.94137,134.09103,1.8995677e-05 752,616.22626,19.97629,22.92041,87.62018,1.3185169e-05 752,3.7351222,221.00862,56.110477,230.89195,8.211403e-06 752,1.8175595,109.40076,19.875748,140.22957,6.096995e-06 752,3.123348,389.27078,56.106575,103.111725,5.734944e-06 752,1.6738232,290.6268,27.595076,144.16614,3.5714368e-06 752,566.32245,17.076002,72.60303,156.83261,1.1528733e-06 752,588.07025,10.508805,41.69232,48.675232,5.3353057e-07 752,560.0884,9.838695,39.293762,55.618793,1.3102983e-08 752,386.89987,2.9709148,44.6734,57.52983,1.2609382e-08 752,360.95963,4.105192,45.01187,59.817116,6.894206e-09 752,331.14343,2.238291,45.779266,61.547073,4.3889328e-09 752,0.84643394,5.8015203,18.922155,56.848045,2.1384279e-09 752,532.8676,6.393688,43.149414,57.848537,1.9024033e-09 752,250.47472,1.9804444,40.921097,55.30597,1.308072e-10 753,598.8094,221.01237,39.86609,133.26308,99.22764 753,587.4449,275.7735,33.85846,62.705353,6.981227 753,434.1349,197.92296,25.929962,72.70421,0.20386584 753,397.34653,191.60687,30.846283,74.76419,0.09684879 753,420.93686,191.71188,23.770386,70.481964,0.07558442 753,612.28253,276.14944,23.972473,63.746704,0.066690825 753,108.89698,208.47638,26.225761,53.413605,0.06493475 753,335.50903,179.01079,20.952728,50.952545,0.01455515 753,619.1086,248.41563,20.038086,61.604294,0.012722671 753,366.76712,154.37813,31.97699,77.84268,0.011656867 753,344.35278,162.90253,27.703827,66.603836,0.011115612 753,392.3586,193.0014,20.065277,48.51927,0.0071185865 753,381.04135,142.80795,38.37262,108.035706,0.0010409809 753,566.5928,154.83032,72.553894,255.00739,0.0008837653 753,614.1883,300.51654,24.958374,99.92255,0.00027721963 753,610.7722,158.5627,28.37445,127.7325,0.00011593496 753,608.4657,435.96863,30.68097,69.506165,4.8667145e-05 753,1.6096933,168.72922,19.698997,119.29425,3.257747e-05 753,570.97284,348.6585,68.17383,139.57114,2.0729909e-05 753,611.0342,46.122383,28.112488,154.84784,1.9667794e-05 753,0.98714274,371.8977,19.22589,125.59909,1.8235867e-05 753,1.2632812,240.88177,18.066586,121.926605,1.1871275e-05 753,597.29,5.4552183,41.54834,97.62294,1.1047562e-05 753,3.6002767,94.43353,59.48424,214.11014,6.3708553e-06 753,3.2963102,389.4973,55.455963,105.40524,4.373046e-06 753,520.9553,0.29133463,46.74524,64.69244,1.6325107e-07 753,1.4609083,7.063815,32.845474,76.70339,1.1364695e-08 753,313.91528,3.557601,41.8201,58.04207,8.402014e-09 753,491.99084,0.0,48.651978,57.13508,5.1567994e-09 753,374.60886,3.2143197,45.133087,61.00823,4.8835798e-09 753,346.9085,0.3374414,45.354675,61.521206,2.1438473e-09 753,286.72684,2.3716178,41.953705,57.068905,2.0538915e-09 753,402.22424,3.4963348,45.044464,59.70514,1.5695913e-09 753,428.27362,3.4562664,42.350647,61.601013,5.1940413e-10 753,469.01804,2.2055175,43.349762,59.623272,4.4653137e-10 753,258.78033,1.807339,43.181732,51.7083,4.421236e-10 753,232.48083,0.0,39.829285,51.233738,2.3364272e-10 753,206.38484,0.118483074,40.146576,48.440964,5.1713224e-11 754,101.21044,221.50258,32.677788,66.95216,36.007126 754,380.13217,182.66568,26.360199,60.619736,0.08246274 754,438.48932,189.06754,25.341064,56.23729,0.022491677 754,336.77026,167.37694,29.520996,72.48572,0.020952918 754,121.06964,223.77704,21.99318,47.730377,0.018906606 754,48.60144,228.95993,23.91249,45.16678,0.010298371 754,387.01566,149.31627,38.767212,102.04715,0.006429661 754,403.8494,215.4429,21.904877,53.7648,0.0052526644 754,356.17947,167.6071,36.3468,86.48779,0.004421697 754,413.34766,193.49916,24.103485,53.60228,0.002746546 754,66.350555,225.15761,23.77414,51.19603,0.0022602878 754,610.0877,252.59079,29.05896,128.93686,0.0015979111 754,619.87384,324.53293,19.272827,65.75665,0.001082434 754,1.0425147,222.20187,13.250773,47.473755,0.0004345593 754,441.14,167.21347,40.742035,103.84235,0.00035888958 754,587.7971,298.05615,50.180725,174.77762,0.0002446663 754,612.0452,176.09773,27.10144,135.61928,0.00010843813 754,2.5203314,173.65488,28.7714,135.15729,0.000104573424 754,424.07324,115.910774,22.425415,50.093895,9.810641e-05 754,587.67474,103.15536,50.439636,247.64539,7.5103824e-05 754,399.45474,136.75145,25.493378,61.580627,6.517945e-05 754,609.6003,54.780716,29.546387,154.98718,6.4077816e-05 754,609.107,435.2262,30.039673,67.20715,6.293967e-05 754,0.90966475,368.4918,18.641844,127.01193,3.573393e-05 754,1.5098926,143.85529,18.534315,80.449875,2.376551e-05 754,80.91856,205.09824,75.4656,144.69293,1.9496134e-05 754,1.0980514,248.93433,16.987131,122.43674,1.8981045e-05 754,614.2133,0.0,24.93335,45.189377,1.4634136e-05 754,1.9819133,264.0259,32.65767,173.59628,1.10522415e-05 754,420.2703,87.693596,40.190186,102.79977,7.0593906e-06 754,584.8505,0.0,54.296143,149.86902,6.6075045e-06 754,5.439795,337.3881,77.47014,146.09995,5.9935473e-06 754,2.4033496,427.33594,44.275913,70.025635,1.9568888e-06 754,367.77322,9.02642,46.818024,51.88871,1.2672467e-06 754,394.5028,4.7136917,46.829376,60.369125,5.8577392e-08 754,341.452,8.420772,39.91333,50.85844,2.8759631e-08 754,1.2918246,8.7308855,33.58151,75.972824,9.852165e-09 754,433.63046,6.4975066,85.089935,73.70468,3.6644754e-09 754,566.094,3.4463933,42.924744,61.938137,4.4178722e-10 755,438.96652,201.737,19.391785,47.819122,93.98304 755,449.81714,199.91922,18.279083,46.15544,62.631615 755,468.93365,188.74794,37.30609,69.925125,0.06130879 755,341.7989,206.31,20.132294,45.63954,0.0180242 755,449.37454,165.04756,38.838287,88.55888,0.01209797 755,611.5319,81.748726,27.598877,77.31591,0.005357311 755,622.3217,172.6776,16.824951,54.96173,0.001890545 755,399.94067,201.32529,23.176239,47.005844,0.0018422834 755,387.71304,189.73499,25.023438,53.50815,0.0016636848 755,454.27887,136.53271,69.18616,163.4367,0.0010743485 755,353.66504,199.24034,22.597656,49.99901,0.00045199378 755,603.8593,103.06557,35.092102,148.20557,0.00025590605 755,466.1538,76.99991,32.09491,90.67801,0.00022686817 755,621.996,256.8176,17.150696,52.16745,0.00021673283 755,606.2153,0.0,32.931396,67.22025,0.00020449059 755,611.1929,368.56528,27.953796,128.23212,0.00020325152 755,361.38632,168.62871,37.69336,90.0594,0.00011840063 755,3.1188786,165.83722,34.223434,175.793,9.74912e-05 755,610.9669,205.00966,28.179749,145.11998,6.781973e-05 755,0.7725912,341.82263,20.264706,153.68936,3.8080238e-05 755,586.56104,274.6288,52.585632,209.78833,3.6518595e-05 755,455.54443,112.06156,36.746033,99.83242,2.6456823e-05 755,612.0598,291.46225,27.086853,112.68381,2.5471487e-05 755,3.0915625,225.87454,74.25333,243.02963,1.6558091e-05 755,384.29807,130.17603,35.305206,92.62137,9.380864e-06 755,1.7220231,122.53955,18.633886,134.75305,6.578707e-06 755,1.18889,245.20534,18.277472,151.2621,1.6593715e-06 755,553.802,422.08167,81.69983,78.57761,1.587048e-06 755,564.4451,2.451914,74.70154,167.03314,1.0491987e-06 755,377.9914,3.198584,44.893707,47.006824,1.4500479e-07 755,352.9809,3.7870378,42.77005,53.23334,1.375719e-07 755,565.04456,0.0,63.877808,57.181602,1.0581979e-07 755,291.1503,0.0,45.447693,63.989468,3.189722e-08 755,408.65936,1.6512859,46.19513,55.344307,2.3010578e-08 755,319.8826,2.9163053,43.419983,56.860264,1.4744223e-08 755,537.7826,3.122453,43.8385,53.255726,1.0892298e-08 755,1.5431039,10.241035,33.872017,75.00876,6.2147487e-09 755,503.95844,5.3281007,44.317383,54.53809,4.627456e-09 755,433.86215,5.595521,43.76834,59.24449,2.3863032e-09 756,512.39075,202.87029,26.665771,58.92015,99.78372 756,498.92523,201.94048,22.105957,52.10016,84.80753 756,351.17343,202.66063,22.50055,52.113174,1.6393251 756,488.3773,185.64352,53.557648,104.16077,0.034631435 756,376.84433,182.4899,33.690002,73.74661,0.015517652 756,401.2889,205.85768,30.9859,67.39165,0.0074118776 756,616.7483,194.9805,22.398376,79.4762,0.00040056783 756,409.7228,100.45076,24.129486,55.535706,0.00020901034 756,610.72644,96.49736,28.189453,146.14853,0.000195491 756,607.6624,436.89764,31.484253,70.145294,0.000100108184 756,0.48014975,210.21754,27.424557,153.32857,7.958185e-05 756,611.62427,337.98947,27.5224,139.86636,6.374156e-05 756,601.5469,185.78625,37.599792,180.96298,4.5117926e-05 756,3.6476204,192.74858,55.75199,249.03001,2.6471713e-05 756,0.9134261,304.28613,19.789589,139.96597,2.6431453e-05 756,438.37445,104.95434,125.44519,229.84128,2.3654755e-05 756,1.1633277,390.4302,17.411852,104.511536,1.3152979e-05 756,3.7153418,392.97067,55.662567,97.01495,4.7434028e-06 756,2.29733,115.61504,32.12252,183.0875,4.4784233e-06 756,361.40118,87.42036,40.092712,105.27538,4.0287923e-06 756,561.7127,390.62772,77.43396,107.70856,3.0101717e-06 756,585.7357,9.497585,52.779724,130.06012,2.9485059e-06 756,1.3644581,77.889854,17.301643,154.03998,5.1651716e-07 756,476.04663,50.794075,40.87445,120.305336,2.6363963e-07 756,587.00275,0.5237191,40.58899,57.133617,2.5756387e-07 756,498.0009,8.893594,43.70926,144.07408,1.3142085e-07 756,402.45917,6.5501595,41.759216,53.468513,5.5564787e-08 756,429.3667,6.7833304,43.13269,61.65279,3.5784566e-08 756,484.91263,3.2934277,45.097992,63.37565,3.2189973e-08 756,450.8999,13.592702,41.877502,134.51811,2.3240203e-08 756,515.3434,0.29523763,48.727356,58.05264,1.8285012e-09 756,542.18585,0.52846354,61.14862,47.756065,1.1343704e-09 756,1.9991146,8.954743,32.16799,76.846954,8.741625e-10 756,312.6262,3.9497721,41.913666,54.89079,4.559267e-10 757,587.9122,200.9649,28.864014,56.35663,99.90547 757,572.21814,201.94365,23.503357,53.426666,99.539444 757,551.64014,207.2919,22.805908,51.75415,99.36814 757,380.72955,215.46756,25.672577,53.210205,2.6430168 757,472.04044,204.95894,23.864532,51.36882,2.1753528 757,523.84045,201.1139,25.790405,63.34996,0.9242819 757,420.55392,200.99876,33.096283,79.83391,0.112929024 757,511.29367,173.90466,56.312347,123.24509,0.006455871 757,554.0102,183.07245,65.135315,96.46246,0.0023419848 757,9.110171,204.79128,37.613125,72.41344,0.0011688566 757,438.74622,206.91779,39.34198,104.84259,0.0010070638 757,614.38654,191.41267,24.760132,115.29405,0.0006151127 757,620.69385,79.68341,18.45282,62.149414,0.00044266385 757,586.40936,175.18016,50.3714,192.52531,0.00035115145 757,370.41702,201.01031,41.56964,118.81821,0.00019082811 757,607.3461,434.76572,31.800537,74.46387,0.00016242426 757,601.7773,82.57465,36.845276,178.97324,9.732288e-05 757,3.6280308,166.80244,56.039978,213.09407,6.896674e-05 757,1.8407203,107.28634,29.191141,163.57877,6.234764e-05 757,602.6774,312.36734,36.46924,177.12659,4.3171305e-05 757,0.9373682,218.40038,16.521437,147.06248,3.232432e-05 757,0.88356286,322.15567,19.268513,139.61703,2.5098841e-05 757,455.86188,84.443596,25.054016,60.112343,2.0971986e-05 757,198.15051,217.104,22.186493,46.80481,2.0581854e-05 757,3.5796974,329.29044,57.826164,158.74405,1.339688e-05 757,326.15317,187.74475,112.25235,213.24765,1.2726525e-05 757,1.220437,442.60345,21.534569,60.11618,6.557673e-06 757,609.5369,12.041003,29.609741,156.57599,3.7751977e-06 757,613.10376,0.0,26.042908,59.538517,2.4804485e-06 757,546.92017,420.8792,81.42053,81.94998,5.000845e-07 757,311.10138,1.5286914,45.106934,54.11921,3.4715376e-07 757,445.59143,20.416166,44.8916,133.54391,1.2503341e-07 757,1.1707674,65.353615,17.932577,133.36047,5.975119e-08 757,422.619,6.890332,45.42273,63.219097,3.077334e-09 757,466.55396,0.0,48.008728,62.53926,2.1816156e-09 757,395.94412,0.7183952,43.865845,71.00603,3.4757197e-10 757,1.8573064,9.522331,33.96951,79.11032,1.4296629e-10 757,550.057,0.0,42.712402,56.515366,5.4988836e-11 758,621.2736,213.49892,17.873047,67.244705,0.0047618756 758,597.6358,200.90607,41.06897,144.84717,0.004240891 758,497.21268,207.26186,24.317963,55.70375,0.001731651 758,510.60397,235.71881,24.030914,55.317596,0.0011621631 758,435.81073,220.0224,39.524597,117.382935,0.0010427217 758,594.7548,206.02414,24.023865,48.411728,0.00036006508 758,527.0301,198.43463,42.269592,127.41,0.0003579796 758,617.7348,348.71323,21.411865,81.15964,0.0003575558 758,618.25244,164.1433,20.894226,81.282394,0.00023386646 758,611.8026,411.44257,27.344055,93.439575,0.00019489866 758,404.50983,203.84683,112.57135,212.69046,0.00019033192 758,601.7464,288.79453,37.40027,187.13654,0.00017561109 758,1.7828996,234.92337,32.484238,180.94614,0.00011385978 758,393.32083,177.57773,28.598877,63.696915,9.822362e-05 758,517.3218,203.1962,26.007141,62.28192,6.979421e-05 758,478.1925,237.96768,22.64328,51.346863,6.2166546e-05 758,8.337312,252.54602,25.772137,57.548035,4.796581e-05 758,1.0598259,239.92183,17.840725,76.76158,4.5214667e-05 758,0.7391471,282.45154,19.135696,84.68375,4.0675885e-05 758,1.18299,198.54407,17.70082,66.564026,3.7973983e-05 758,1.1989266,372.01562,18.278076,74.341095,3.7485068e-05 758,602.17633,77.40663,36.970337,206.03722,3.591524e-05 758,1.258033,104.176796,18.764547,71.253654,3.0224004e-05 758,561.14374,393.26654,77.26965,104.170654,2.0347461e-05 758,1.0454208,419.17337,15.166598,81.214874,1.2734136e-05 758,5.4547267,357.63898,78.17237,127.78998,6.063063e-06 758,2.0256991,151.43347,29.029001,149.4403,5.1903085e-06 758,612.4013,0.9527279,26.745361,58.90717,2.4439823e-06 758,2.722238,428.87906,43.400856,69.330444,2.2966578e-06 758,403.5187,427.99646,75.53177,69.8858,1.008164e-06 758,2.191416,39.204075,60.460014,245.79327,6.947768e-07 758,501.40823,425.98938,73.39389,70.98917,4.9723496e-07 758,547.41516,442.14673,44.44513,59.309998,4.026501e-07 758,1.0125294,29.1508,28.697412,137.71051,1.6875606e-07 759,428.7517,176.49643,31.97409,75.782715,0.005546152 759,502.72934,211.50168,25.567413,54.300385,0.0023362963 759,36.15563,251.58305,22.450317,48.569077,0.0019987868 759,600.4862,169.67105,37.68628,187.3601,0.0013149698 759,544.4242,209.6635,23.486084,48.1577,0.00091417396 759,619.27765,315.72516,19.869019,72.960724,0.000868382 759,616.9149,197.58868,22.23175,91.12067,0.0005948373 759,616.582,247.72983,22.564697,92.920654,0.00039104998 759,617.1897,52.286102,21.95697,78.897064,0.00034931971 759,599.90436,280.19736,39.12622,195.42526,0.00032086894 759,621.80853,408.10382,17.338135,54.212646,0.0002273928 759,1.0255864,230.5106,12.14498,46.009872,0.00021652336 759,3.6832862,239.91357,56.993916,232.60718,0.00015637481 759,609.45233,445.91086,29.694336,59.19336,0.00013192065 759,0.89975464,104.93691,13.331043,48.20771,0.000116354975 759,511.32037,238.14453,22.95581,56.158936,0.000109314366 759,1.6859977,236.90321,28.377146,139.7965,9.6202246e-05 759,1.0844059,391.63257,18.384666,76.80682,7.016795e-05 759,1.3927963,187.3355,19.177216,117.64244,3.5601002e-05 759,600.1869,45.071804,38.959778,211.22238,2.9256395e-05 759,525.53217,209.89012,34.99225,74.55406,2.8022057e-05 759,3.7457619,398.05734,56.376038,97.15909,2.1687703e-05 759,0.80516195,345.472,18.660387,76.82654,2.0216128e-05 759,557.6203,217.92491,24.876892,50.889267,1.9113102e-05 759,1.3168979,443.6797,21.729713,58.747345,1.1584197e-05 759,1.4033896,107.40754,21.120007,116.12783,8.982171e-06 759,3.2203288,89.26802,57.750584,236.27007,1.5498582e-06 759,1.5920444,29.916544,83.808235,128.0153,3.5166622e-07 759,1.0093124,38.639637,16.704596,132.75795,3.532539e-08 759,1.3257048,8.614007,36.67076,83.576935,7.420082e-10 760,592.0021,271.23328,47.141296,96.717255,0.026830602 760,538.72534,187.68619,26.346863,58.87506,0.011385739 760,586.4012,306.87677,52.342346,185.17776,0.0018203238 760,367.6652,230.28168,22.530426,52.96115,0.0016155025 760,1.5763143,218.32855,17.914038,68.57794,0.00078533357 760,478.55875,200.50566,33.07376,76.14778,0.0007784022 760,459.72183,201.97147,32.032196,67.4874,0.00027461827 760,616.7858,100.623856,22.36084,85.17081,0.00024127937 760,612.813,417.72342,26.33368,88.16403,0.0002080566 760,450.43182,208.90086,23.19049,47.87297,0.00015594828 760,616.8006,46.439266,22.34607,89.8194,0.00013671827 760,5.228939,242.56667,74.90759,221.77846,0.000117955235 760,0.82939005,405.16312,13.472744,50.815582,8.987343e-05 760,616.5973,180.43169,22.549377,92.28099,8.9016416e-05 760,584.66943,97.73881,53.234253,241.61945,7.325428e-05 760,2.0674179,215.57646,32.95358,157.97594,6.6980145e-05 760,0.8163151,320.28693,19.544441,140.72263,5.134431e-05 760,436.84454,210.31355,23.041779,47.18486,4.0252944e-05 760,0.8019682,372.1044,13.516593,51.75589,2.9857585e-05 760,224.93904,234.27014,21.319824,48.56555,2.7680806e-05 760,0.87042236,289.65076,18.366213,74.88431,2.6632151e-05 760,584.5044,178.55183,27.363098,56.998093,1.6951433e-05 760,3.5166278,398.13742,56.220833,96.4176,1.2852396e-05 760,112.96018,146.32838,78.035576,163.19319,1.0434277e-05 760,2.9752996,93.245186,56.4522,233.47858,6.67054e-06 760,0.7471712,89.0015,19.53053,78.54188,6.08337e-06 760,1.4474195,158.89423,18.8296,84.481476,3.5498267e-06 760,599.6892,1.4562826,39.45746,187.72,3.2961918e-06 760,0.0,17.642246,58.674427,123.59216,1.659416e-06 760,24.098125,428.62308,78.45958,72.567566,1.0800187e-06 761,608.07745,170.21385,30.177063,75.42537,0.006986831 761,622.13605,238.0039,17.01062,60.855804,0.002121153 761,7.7849507,252.53275,26.634064,55.994385,0.0011329923 761,622.18445,276.1785,16.96222,54.447845,0.00072109076 761,584.85034,107.99618,53.28888,212.89154,0.00026458086 761,610.7936,212.33398,28.353088,145.94788,0.0002534892 761,350.82312,206.31235,40.31143,143.47754,0.0002376343 761,612.0795,369.56494,27.067139,131.22131,0.00021518714 761,560.8603,124.54175,39.179382,89.86128,0.00020746002 761,616.7899,107.78927,22.35675,97.457466,0.00020577233 761,587.71704,252.59126,51.043518,224.44704,0.00013154415 761,528.7121,212.92337,32.23633,63.70691,0.00012026596 761,0.8409005,203.36388,13.548003,49.28456,0.000101248246 761,1.4901221,233.36589,28.904703,154.33986,7.512259e-05 761,3.584406,267.93674,56.067574,211.41998,6.432186e-05 761,0.8445817,365.3995,13.4254465,50.889587,5.6837405e-05 761,1.132911,391.0545,18.39484,74.63495,5.6493594e-05 761,551.55524,209.9818,23.116516,48.686905,3.250761e-05 761,0.80620605,256.07736,13.316903,57.033936,2.6250833e-05 761,1.4711548,158.03679,18.075901,72.562195,1.1598555e-05 761,610.1136,0.0,29.033081,152.00714,1.15089e-05 761,3.4814827,430.08673,53.127777,68.81183,6.839938e-06 761,460.03152,430.35632,79.41257,69.63275,6.6294447e-06 761,3.879178,146.21709,56.585968,211.44807,3.0027973e-06 761,535.7969,427.95096,79.86487,72.950714,2.4532062e-06 761,1.0713265,79.15988,29.707811,173.31421,1.6154631e-06 761,31.88547,429.17313,75.721085,71.99429,1.4958326e-06 761,0.57949954,45.27256,15.755088,142.52567,2.3205308e-07 761,1.4652556,18.932272,56.525085,111.19718,8.749437e-09 761,0.47809368,5.5011916,9.20198,92.31771,2.8989657e-09 761,458.93765,0.0,39.981323,46.500572,9.664584e-11 762,603.7397,149.57838,32.692993,77.79964,0.077565886 762,596.4617,180.6732,35.28888,94.42131,0.017791996 762,618.53265,124.579636,20.614014,72.752,0.0055858227 762,620.02124,201.5843,19.125427,64.55751,0.00353178 762,3.1208513,168.93773,34.322666,78.40457,0.00241621 762,1.3551164,192.69115,13.721817,54.77159,0.0008800479 762,624.6079,98.8049,14.538757,45.26747,0.00087669387 762,599.9959,40.70842,38.91986,224.05391,0.00086597865 762,529.5158,188.686,24.424072,53.716476,0.00065830775 762,435.82254,195.31342,21.976288,46.358673,0.00063136895 762,142.62172,198.18341,22.144867,54.79155,0.00042833245 762,611.7622,380.2853,27.38446,123.88425,0.00037526203 762,615.57135,53.327274,23.575317,105.81178,0.00029166657 762,580.6789,180.09976,24.946228,51.502274,0.00024593208 762,586.841,180.68367,52.02185,274.78345,0.00019145955 762,617.2558,253.75725,21.89087,83.49379,0.000116018906 762,0.74103516,274.23892,19.407799,87.50607,7.621193e-05 762,617.15015,300.1985,21.996521,85.46945,7.442894e-05 762,3.703387,157.96323,52.720272,227.7713,3.9828665e-05 762,1.7827857,141.52597,18.424965,68.63208,3.579341e-05 762,1.1977572,276.52853,32.08377,192.87607,1.7775186e-05 762,0.99990565,363.30145,18.406641,75.03079,1.0927146e-05 762,1.0790275,412.8847,18.140375,70.85748,1.0408197e-05 762,3.470617,391.42953,56.356865,104.0762,4.5999545e-06 762,597.3197,1.6558822,41.826965,102.00125,2.972578e-06 762,460.58667,433.7272,71.92621,65.75937,2.2356046e-06 762,530.0742,428.8476,79.462524,71.45206,1.7164433e-06 762,46.322075,434.46698,75.671234,66.52063,1.298165e-06 762,0.67904377,12.771979,8.591056,77.51192,3.9887837e-08 762,2.698672,21.945892,56.27457,113.18442,9.115483e-09 762,1.457972,7.770814,29.817352,57.509674,2.881694e-09 763,379.73257,204.8876,24.159088,48.083725,0.010417388 763,620.20715,139.83165,18.939514,64.39804,0.002310338 763,610.2558,109.1394,28.89087,150.63736,0.0022217815 763,625.0415,87.37535,14.105164,45.666702,0.0012633497 763,570.43915,365.2737,68.10376,123.58801,0.00079866213 763,616.8359,195.8874,22.310791,92.28725,0.00072511035 763,471.0946,190.20236,24.90271,49.695374,0.00051311887 763,337.89343,230.67899,23.110718,60.01468,0.0003347255 763,611.1702,317.95544,27.97644,146.43604,0.00020257017 763,616.0095,55.06796,23.137146,104.5282,0.00020068191 763,608.4814,440.22574,30.665283,65.82214,0.00018509316 763,122.06032,198.97238,23.975098,51.283325,0.00017942346 763,1.684681,173.34248,17.94809,66.87154,0.00012209605 763,600.9503,180.13254,38.19635,204.62347,7.680205e-05 763,351.79523,202.26657,31.75351,57.42755,6.599997e-05 763,1.1718628,213.51277,18.637426,75.457016,3.891583e-05 763,617.41895,269.48068,21.727722,83.43518,3.8585964e-05 763,1.1782007,392.07812,18.198475,74.062836,3.1745127e-05 763,488.3582,394.11728,129.21817,102.464294,3.0976382e-05 763,2.0557082,140.44174,34.74741,162.99896,1.8276643e-05 763,0.93512535,297.31604,13.355574,47.727356,1.5110974e-05 763,1.6023527,222.411,28.47412,153.80132,1.4321772e-05 763,1.0458032,336.93527,18.338114,76.39444,1.4027778e-05 763,3.8357098,202.11618,57.025322,241.7893,1.17609e-05 763,513.19543,443.15057,44.271973,59.431976,6.3088946e-06 763,3.6538868,397.7227,56.2987,97.42514,6.240867e-06 763,597.69385,1.0412338,41.45282,97.22468,1.3764862e-06 763,1.0583162,51.925247,15.247664,146.40881,3.0287262e-07 763,508.02402,3.8309636,42.449738,57.248634,2.7049243e-08 763,0.74408245,12.07961,8.582697,81.764046,1.9176543e-08 763,2.56,19.62366,55.486145,115.80849,2.7330103e-09 764,385.55707,201.1342,21.70398,45.94658,0.072294205 764,469.72565,192.58052,24.798279,53.05034,0.010285456 764,306.28082,221.20271,29.861359,66.38118,0.002873083 764,458.57886,201.7606,22.398712,45.723022,0.0014101702 764,621.4808,154.94649,17.665894,57.63846,0.0012158236 764,609.78656,50.870697,29.360107,168.60655,0.0006035308 764,611.3785,371.6333,27.768188,130.83582,0.00050622463 764,611.68024,193.12732,27.46643,119.733154,0.00043303106 764,422.91406,157.11598,34.979218,80.043365,0.0002833161 764,444.30084,197.05821,21.547089,45.046722,0.000253948 764,588.2721,95.72721,50.275635,219.85074,0.00012926102 764,585.67535,246.57137,53.32831,243.10301,0.00011952367 764,1.8232821,146.91516,18.458344,82.5363,9.4846895e-05 764,616.511,311.84216,22.635681,91.71884,6.8813664e-05 764,0.8471066,216.01553,13.777962,48.535553,5.816529e-05 764,2.2417626,110.09872,33.870945,165.44385,4.2810352e-05 764,1.1383594,407.12198,18.197588,73.30054,3.322786e-05 764,1.5097445,182.19206,19.681786,124.88042,2.86168e-05 764,481.42224,394.3024,129.8291,101.23303,1.7173119e-05 764,1.0975488,344.8194,18.260456,76.74957,1.12134485e-05 764,4.247609,148.3869,57.27543,238.6041,1.0636219e-05 764,4.092749,345.8611,58.102825,147.88348,1.0202135e-05 764,0.89696777,247.83876,19.42807,139.2791,8.394001e-06 764,353.95374,155.16469,79.572205,162.90025,7.4417244e-06 764,454.2095,431.36432,84.34964,67.625275,3.0662125e-06 764,17.232273,432.15958,76.34308,68.84485,2.8234454e-06 764,586.89496,9.810606,52.25171,126.03023,2.7362169e-06 764,1.4745647,27.020313,16.70786,140.5738,3.347828e-08 764,467.78564,4.775394,46.47278,56.881397,2.607042e-08 764,3.231732,25.526777,56.807774,112.004105,6.5186683e-09 764,1.2246155,13.681394,12.83152,70.998985,1.916432e-09 764,446.98694,2.5703516,38.076782,55.946,1.3331064e-09 764,1.523392,4.2259245,38.903828,51.15025,1.2699687e-10 765,449.6406,193.05255,24.389984,53.735,0.14211473 765,462.9071,195.05394,32.3266,57.718124,0.004714428 765,616.02136,181.88626,23.125305,79.592316,0.0010769643 765,570.0336,366.2066,68.54529,122.58008,0.0005970174 765,599.74274,113.066605,39.40393,180.23259,0.00038240766 765,507.58466,190.77553,31.619812,66.206345,0.00024080307 765,611.2223,318.8812,27.924377,145.16315,0.00019931133 765,608.29443,440.71564,30.852234,65.49594,0.00019616858 765,615.9607,72.1088,23.185974,94.700264,0.00018389076 765,1.3931348,202.16582,17.743536,65.699326,0.00011534121 765,588.0851,180.30263,50.655823,262.49915,7.8997036e-05 765,617.52277,252.46513,21.623901,86.08681,5.3312702e-05 765,0.6796745,236.76855,13.639483,48.30774,3.8384103e-05 765,0.83755696,426.73108,13.479609,47.688843,3.1339907e-05 765,1.767872,218.82454,32.939342,189.76546,3.0995823e-05 765,615.6663,14.387191,23.480347,95.8869,3.069683e-05 765,1.1375024,351.52814,18.305557,76.18573,2.8072402e-05 765,1.9107398,82.59951,17.464586,65.78683,1.9066389e-05 765,449.06012,430.90503,76.28906,70.527954,1.3912468e-05 765,2.055254,123.05638,28.390326,144.61394,1.0259741e-05 765,3.744813,340.80432,57.790554,151.09012,9.872909e-06 765,0.86614424,296.57437,18.72651,76.79968,9.116608e-06 765,597.9565,0.0,41.190186,186.93094,4.9765554e-06 765,2.0520053,419.16205,35.133816,81.6817,3.7051739e-06 765,502.9046,426.5442,79.89148,72.65338,2.0471127e-06 765,21.247078,434.71057,74.091385,65.93747,1.2672177e-06 765,3.726657,24.919867,56.773064,105.73115,1.2410956e-08 765,1.2128316,12.272292,12.674444,70.600525,1.473623e-09 765,1.5271631,2.3486784,38.536255,45.489143,1.9257161e-10 765,437.38376,0.77100265,40.417877,50.67625,4.8008196e-13 766,310.80762,220.34769,25.408783,47.093414,6.7336955 766,227.98013,219.54634,23.60225,52.276352,0.22580189 766,608.612,166.01157,30.070862,136.97638,0.008208188 766,500.05408,200.88676,32.139954,67.87831,0.006015574 766,481.95825,181.353,24.703644,53.69342,0.0044006053 766,221.18767,218.1397,42.062332,106.19423,0.0042623966 766,621.2185,255.28375,17.928162,55.27661,0.0025469074 766,621.35925,192.53276,17.787415,60.726303,0.00066030346 766,471.61826,201.66663,24.252167,50.89969,0.00054677273 766,517.4872,218.04053,24.479797,52.14746,0.0005261664 766,611.10645,360.15317,28.040222,143.21686,0.0004974618 766,617.6489,120.47844,21.497742,73.86893,0.00037835888 766,622.2131,84.17633,16.933594,50.32042,0.0003662424 766,1.344692,174.68103,18.839312,81.14424,0.00030203682 766,574.1923,138.65651,64.736145,221.73656,0.00014245178 766,2.209612,86.93569,29.667427,172.78052,0.00013771764 766,4.070171,181.76003,57.38133,244.1364,8.494614e-05 766,610.9938,250.16225,28.152893,146.35204,7.193923e-05 766,1.3089437,211.81969,20.53152,107.188095,6.294784e-05 766,1.1971688,341.5708,18.8346,136.64182,3.2102882e-05 766,1.6594085,97.40125,18.449741,67.345894,2.9268673e-05 766,3.7894711,339.4314,58.115322,151.59814,2.2287677e-05 766,385.0592,155.48882,84.5871,155.98186,1.3337207e-05 766,0.9032829,308.6243,18.803072,76.87863,1.2388138e-05 766,609.0,0.0,30.146667,73.40914,1.0512524e-05 766,2.3554606,419.49432,35.09818,79.67862,8.162246e-06 766,585.2187,20.12864,53.92798,203.7095,4.1572266e-06 766,2.9871876,23.734291,58.03055,108.70043,1.896054e-08 766,481.92465,6.1340837,45.80789,54.464973,2.2602935e-09 766,0.98599285,9.004997,14.057791,74.61427,1.7608118e-09 766,1.2188803,2.3244288,38.393177,46.443,4.397796e-10 767,172.20714,222.80782,25.886154,53.720657,1.5767753 767,484.3246,190.67923,24.652771,51.122803,0.015289016 767,559.9277,216.12129,26.408508,61.594864,0.012079054 767,187.68063,227.81267,23.298813,49.07878,0.007865061 767,571.9859,212.12755,39.2666,79.48363,0.005903422 767,395.0217,201.6789,23.682373,45.044754,0.0038227215 767,612.0807,184.09471,27.013428,120.90242,0.0020817067 767,259.28708,221.77298,24.233429,46.616364,0.0016115557 767,610.91675,367.78424,28.22992,135.14954,0.00068317377 767,517.4629,205.51306,23.070618,49.14328,0.00055306125 767,497.07318,197.24884,23.53424,50.466324,0.0005188861 767,622.2075,144.79062,16.939148,54.104553,0.00022195035 767,1.5189632,184.83154,18.42962,69.49341,0.0001677474 767,615.52203,81.17163,23.624634,87.72534,0.00011474327 767,1.1891545,213.6806,18.598349,131.10266,0.00010027541 767,550.33514,169.52068,79.9176,151.39223,7.344952e-05 767,602.1974,235.36688,36.94928,194.11642,5.965855e-05 767,0.96545166,224.86467,13.845376,48.050613,4.8874448e-05 767,621.3765,30.451092,17.770142,61.493977,3.9136834e-05 767,3.5005274,186.96956,57.30208,237.47087,3.349007e-05 767,0.86921304,307.76358,19.320635,140.96494,1.9445702e-05 767,2.1115048,129.16895,28.847662,154.25851,1.6823784e-05 767,585.7641,40.415146,53.243652,262.39478,1.2344197e-05 767,2.2184067,57.983932,19.313925,75.42946,1.1275764e-05 767,0.957439,422.9415,16.158625,79.321625,1.0088549e-05 767,3.4666228,397.32468,55.935387,97.61157,8.5092925e-06 767,399.92825,148.88828,97.55936,220.92776,6.940155e-06 767,597.21606,0.6491211,41.930603,102.69916,2.7935705e-06 767,3.0329916,46.91955,61.25188,198.52034,6.14636e-07 767,1.4806645,16.38581,13.451906,88.34017,3.7711945e-07 767,1.6589144,4.475057,31.999136,50.473,1.09570175e-08 767,517.2451,0.12765625,43.92267,56.50924,1.8533999e-09 768,114.76942,223.82214,24.061226,51.67975,0.1722103 768,156.23549,207.79271,23.481308,46.494064,0.01677786 768,103.04047,234.3004,26.36824,60.74086,0.010264195 768,132.73245,205.69423,25.197845,52.512924,0.00897263 768,212.44319,220.39346,25.73143,55.431732,0.0071847863 768,538.94257,207.5369,23.43573,54.105804,0.0062560393 768,169.14215,213.7607,24.65799,46.356277,0.0033280274 768,182.86913,214.70932,23.922089,48.743958,0.0009759738 768,609.6758,73.00568,29.470886,158.8117,0.0008358505 768,526.5482,200.62552,23.80426,51.157227,0.00069307495 768,440.27725,184.14923,37.834595,88.3201,0.0006516442 768,610.9214,365.14328,28.22528,139.39487,0.00056584686 768,196.61015,218.738,28.218811,53.280914,0.00042111464 768,617.65765,195.20049,21.489014,86.36211,0.0003706592 768,530.88983,175.13702,40.73633,108.81351,0.00026706545 768,407.74814,190.65765,22.963806,47.273285,0.00020771241 768,1.7641944,208.77342,17.361538,73.97307,0.00020204479 768,203.23837,213.23941,42.394608,132.44241,0.0001679901 768,586.4865,263.49466,52.64502,226.12827,0.00012680091 768,601.7964,148.5827,37.35028,181.56271,6.0984148e-05 768,4.115425,198.16621,57.52061,239.20927,4.6505083e-05 768,610.9508,8.17362,28.195862,130.19098,3.2729626e-05 768,0.9773015,233.16615,19.265463,142.08766,2.894435e-05 768,2.5634067,146.71321,34.435616,168.63344,2.358497e-05 768,0.9418067,349.03064,19.096722,132.10526,2.2610004e-05 768,611.91693,252.09323,27.229736,119.76349,2.1164951e-05 768,416.0124,147.66469,82.42929,161.5222,1.2620215e-05 768,3.3775473,394.99216,56.412334,99.383575,6.8543955e-06 768,613.8314,0.0,25.315247,45.26418,4.070929e-06 768,1.5345101,83.86964,17.748177,161.01666,1.7606634e-06 768,1.8330567,46.290344,19.97635,75.84364,3.169371e-07 768,2.9131901,38.66687,60.1484,201.01517,1.7274154e-07 768,1.265042,14.558333,14.419306,73.14021,5.3257455e-08 768,1.7975993,12.179392,41.117058,86.97315,5.1955897e-09 768,558.5891,3.493519,41.903442,62.356876,1.3106369e-10 769,483.91885,205.4904,22.841248,50.187866,99.76242 769,54.86558,198.76045,35.435955,73.926834,0.37506714 769,154.3561,215.51135,22.33841,46.39676,0.11736993 769,114.979935,210.73996,24.39569,46.513,0.0517689 769,512.6239,201.77693,22.936218,53.715805,0.02688648 769,47.10429,231.42043,24.038128,57.245926,0.011948163 769,1.7140511,192.84938,19.53021,74.546005,0.003492986 769,609.0177,67.405594,30.128967,165.25009,0.0013039694 769,529.028,193.39899,25.227234,50.41078,0.0011097738 769,384.14664,193.5393,21.251312,46.333405,0.0010409452 769,611.4448,206.0367,27.701843,111.361984,0.0009378478 769,468.29272,172.6849,58.829712,106.043335,0.00045492454 769,546.39886,188.7212,24.223145,46.188873,0.00040523472 769,611.1695,351.58005,27.977173,142.15128,0.0003264728 769,619.4726,118.973595,19.674072,72.400734,0.00026285305 769,2.6730616,161.87578,35.064777,165.74953,0.00023940034 769,586.82184,123.41831,52.15851,227.81812,9.417352e-05 769,2.7791293,230.89699,59.12384,249.7487,5.1438354e-05 769,601.58295,231.97607,37.56372,208.45236,2.940111e-05 769,0.8532552,275.12317,19.588722,154.8895,2.7541879e-05 769,435.28168,123.627594,132.31091,251.0773,1.8009805e-05 769,0.92544436,379.49512,19.348196,120.11801,1.5066037e-05 769,594.8761,0.0,44.27057,95.284355,1.2569767e-05 769,1.576477,81.89418,18.222761,164.46927,4.960937e-06 769,4.591413,426.6208,65.67828,74.6026,4.929763e-06 769,2.550563,34.051517,60.957134,224.22412,5.689527e-08 769,1.5218172,25.384096,20.583675,121.65485,4.0287425e-08 770,518.7577,205.13411,24.00293,55.905807,99.94669 770,40.014668,195.98886,27.915218,59.189346,0.16066626 770,555.4569,204.74843,19.805054,45.44371,0.071448475 770,143.71645,227.98482,20.663177,51.022995,0.049152046 770,387.7133,185.00867,24.088379,51.296005,0.010197145 770,120.24646,216.14165,36.707657,67.124466,0.003789489 770,538.24927,199.57437,30.059937,59.26834,0.0031538038 770,23.613699,215.84859,26.904604,57.605026,0.00234923 770,429.582,200.55365,21.878113,45.423492,0.0015685733 770,616.6857,180.5826,22.460938,85.8492,0.0012208454 770,18.043741,193.60083,23.912241,45.421677,0.0010521763 770,3.5172396,198.28279,41.096695,128.48055,0.000964254 770,610.3497,96.57879,28.796997,130.17194,0.0008251772 770,503.6337,177.44765,56.527496,100.774796,0.00063772843 770,611.597,364.30655,27.549683,136.76779,0.00036851867 770,585.3034,24.367851,52.77179,250.24448,0.00016915661 770,329.7802,197.52547,37.77658,120.37163,0.00012748005 770,615.7808,26.950167,23.365845,96.55156,0.00010521004 770,601.67706,173.0418,37.469604,199.12846,8.43692e-05 770,1.7088387,129.30707,20.244452,150.81732,4.531853e-05 770,0.8128874,289.95956,18.715675,80.76694,3.9374783e-05 770,439.6101,147.04767,79.230896,157.42764,1.8256505e-05 770,3.3518913,244.74948,55.950134,232.32855,1.5855449e-05 770,471.48068,116.02043,135.72311,253.12422,1.3079416e-05 770,0.8611516,360.31363,19.219181,133.54202,1.0124558e-05 770,5.131924,428.87073,75.49166,72.26309,3.1381892e-06 770,2.6765463,55.661095,58.981266,251.98697,1.9737947e-06 770,1.5797616,20.469505,21.342735,141.75003,1.20930626e-08 770,401.6717,0.073994145,41.70468,50.77388,3.2185518e-10 771,562.03394,204.12851,26.465515,69.02832,99.94221 771,18.949272,201.40446,40.472076,82.38924,0.032226812 771,591.5275,198.54155,33.935486,73.46419,0.022987945 771,333.6964,211.6924,21.608032,47.09578,0.014349857 771,577.3206,208.34106,22.572449,56.980194,0.012446855 771,543.96423,193.48985,25.079407,53.712814,0.0103951115 771,154.68224,211.50058,29.448517,61.40341,0.006247336 771,28.623158,238.95659,20.755737,46.59407,0.0016925094 771,621.07196,197.31525,18.074707,64.18771,0.001514676 771,330.64914,206.1342,55.885223,148.45839,0.0013075356 771,598.423,137.72795,40.026367,184.50676,0.0010323077 771,12.820232,192.6787,25.812038,65.74419,0.00087646977 771,385.3796,180.64229,30.444977,61.71637,0.0006681327 771,416.0366,194.94247,21.040863,46.39334,0.0006138558 771,621.31055,70.327515,17.83612,55.05509,0.0005619255 771,586.3128,223.6862,52.103333,257.85315,0.0004944656 771,611.321,360.70468,27.825684,140.05716,0.00043807746 771,227.09152,211.59592,39.77481,126.819916,0.0004156167 771,615.0184,128.31743,24.128296,97.024185,0.00035908844 771,616.3696,240.64949,22.777039,83.032394,0.00034322057 771,242.39297,222.56068,26.305786,59.11937,0.00019426884 771,1.8368766,190.61076,18.302244,78.12746,0.00017238702 771,451.16455,158.85997,59.902924,113.84682,0.00016290657 771,5.0538983,143.91074,57.388435,202.06317,0.00012204646 771,609.8678,46.49797,29.27887,132.7189,0.00010642383 771,542.57886,162.6518,74.367065,159.40872,7.679107e-05 771,0.9534709,219.61229,17.265224,127.30162,2.5677682e-05 771,2.3545117,102.688934,29.821205,173.0126,1.25779325e-05 771,0.83697754,337.67975,19.3896,136.44214,1.194515e-05 771,1.6975082,251.42813,33.193863,189.59564,7.293809e-06 771,581.60504,0.0,57.541626,257.45276,6.7857777e-06 771,3.6056657,396.3977,56.406853,101.21042,5.778424e-06 771,427.55716,111.47059,139.0588,219.07071,5.266868e-06 771,1.5503467,21.158268,21.155195,140.33067,6.032694e-09 771,0.8914502,7.4020314,21.542461,60.006332,1.9769109e-10 772,455.50195,198.05255,22.255463,49.318756,0.07021948 772,409.6098,195.31232,23.174652,49.91829,0.06569138 772,459.42563,180.32625,41.55887,100.906204,0.017038971 772,597.6838,192.08011,39.753723,100.62756,0.0035965103 772,551.94055,188.06854,23.596558,46.163864,0.0031627857 772,480.69125,207.96461,25.0112,56.37401,0.0022667188 772,2.5055282,230.63779,31.243538,76.59833,0.0018761693 772,507.221,192.00754,32.57904,72.43497,0.0018416898 772,229.3726,220.63103,37.864975,76.58305,0.001159201 772,609.277,91.83566,29.69989,149.91443,0.0010938717 772,318.17117,220.31047,25.068634,57.212784,0.0009800739 772,359.25964,248.38078,37.109344,106.146225,0.0007683395 772,620.0298,41.474976,19.116882,63.675583,0.0005697618 772,582.1154,196.65686,34.890564,72.768524,0.000379688 772,562.2918,185.1593,42.898804,127.267426,0.0002912332 772,341.533,204.67943,73.30374,185.38313,0.00023280081 772,1.9981372,176.5795,33.31811,86.359924,0.00021833625 772,608.1919,439.35934,30.954773,66.57562,0.00018296661 772,611.8046,333.5117,27.342041,148.13666,0.00017599872 772,572.5912,204.18158,23.408264,49.52121,0.00017318406 772,198.62576,230.90985,69.69699,200.39557,0.00014775677 772,607.0647,0.0,32.08197,144.81299,8.641412e-05 772,611.2315,231.0555,27.915161,139.34102,7.958276e-05 772,3.0256023,147.86378,54.52285,200.95314,5.5555505e-05 772,450.22266,143.02892,87.524475,207.53078,5.380292e-05 772,613.01935,0.0,26.12732,50.99087,2.5108224e-05 772,0.8758366,243.64995,19.379822,158.67305,2.4428553e-05 772,0.9036849,338.2289,19.393324,137.26031,1.2171411e-05 772,3.6441066,399.0157,56.809864,100.74844,9.987497e-06 772,1.5946827,94.26109,19.347395,88.45897,1.6366519e-06 772,2.400075,36.20575,60.031517,206.11029,7.293662e-08 772,1.6055282,36.25654,20.546335,76.112686,1.744067e-08 772,0.90642256,5.4533076,32.233807,66.97435,2.2868922e-10 773,613.2703,168.19547,24.457336,53.601578,0.009508439 773,609.3913,80.77538,29.69403,152.52774,0.003966536 773,619.3996,85.07313,19.74707,65.53919,0.0019901649 773,261.00882,228.01581,32.591217,66.78934,0.0013183123 773,473.31497,199.51094,30.614471,74.465775,0.0011936855 773,314.28427,213.95512,34.587646,79.24605,0.001090339 773,389.94794,194.92522,24.362549,53.290253,0.0009035727 773,617.60095,191.94751,21.545715,84.4202,0.0005547722 773,611.27374,366.6375,27.872925,134.0372,0.0004970682 773,422.24384,191.23521,24.38034,53.83937,0.0002611749 773,1.1652238,175.66904,13.722468,52.376938,0.00025382088 773,1.6509701,196.05167,18.193632,83.457886,0.0002098556 773,231.57074,225.72427,37.074707,75.938446,0.00016067136 773,351.1523,288.54562,49.278778,141.11465,0.00014515755 773,588.1572,135.61324,50.01172,213.42531,0.00012857305 773,183.3259,260.36713,71.007385,188.19925,8.762824e-05 773,615.12396,23.893476,24.022705,99.35661,7.940301e-05 773,571.4251,15.134935,67.7005,231.63416,5.0384893e-05 773,1.7774822,185.86563,33.219982,174.4978,4.2191114e-05 773,0.7473283,277.33368,19.238167,144.8996,3.945861e-05 773,438.07553,194.43169,20.299744,45.04254,3.9268805e-05 773,610.9003,268.0894,28.246338,154.0787,3.429715e-05 773,3.7476237,247.30283,57.276413,227.89395,9.827518e-06 773,1.6291903,112.94708,18.664564,131.4191,8.804123e-06 773,0.96806806,379.7076,19.016981,118.86334,8.018494e-06 773,3.566561,428.76025,53.5604,72.40042,2.335033e-06 773,3.0938249,46.915146,59.631565,191.8089,2.8253117e-08 773,1.3270956,21.430515,21.212492,137.12474,1.0318798e-08 773,387.74426,2.1239014,42.302765,56.0458,6.880763e-10 773,1.1431885,6.1996126,31.340244,63.39146,1.9495011e-10 774,362.45084,206.3223,19.761597,51.02069,1.1099051 774,412.75494,189.58551,23.463684,49.259384,0.0859857 774,427.7579,195.90768,20.637878,47.29521,0.010679342 774,617.61835,101.46948,21.52832,65.808075,0.007129925 774,373.90927,219.27774,21.920502,54.468536,0.0070951777 774,357.91928,195.70683,37.18228,121.20485,0.0048405896 774,622.28674,181.69968,16.859924,49.02591,0.0047309613 774,602.7746,71.4574,36.057434,155.43912,0.0037272912 774,258.5123,240.59909,24.889374,50.66504,0.0031962357 774,597.8294,288.91083,35.61029,77.72479,0.0014162133 774,587.63165,130.98666,50.017212,236.01367,0.0014027663 774,303.201,219.13503,31.244019,72.42317,0.0009607218 774,611.96545,362.6654,27.181213,132.33826,0.0007411223 774,315.7414,211.17453,42.02182,92.55188,0.00036386805 774,394.47073,187.33727,25.19397,56.641205,0.0003328538 774,263.9095,216.99226,39.456207,89.04265,0.0002515194 774,179.34657,248.50537,64.3624,196.28204,0.00023089048 774,565.8735,340.29724,69.88385,147.91177,0.0001940557 774,223.22151,222.05862,40.122696,106.357635,0.00016138975 774,1.1471436,202.85338,18.729063,129.45256,0.00015743003 774,345.76205,268.4119,80.24286,197.73297,0.0001532704 774,2.2539942,171.9398,31.29929,73.70375,8.699757e-05 774,615.8209,26.532202,23.325745,95.7041,6.218588e-05 774,0.77088785,293.97757,19.455112,145.00687,2.2947232e-05 774,429.94653,114.21145,143.60382,236.66376,1.908469e-05 774,0.93323976,379.78885,18.868826,117.42279,1.2037104e-05 774,3.4924886,200.7268,57.90789,238.90121,1.0866872e-05 774,3.637648,396.30856,56.732697,100.80853,5.983586e-06 774,1.7352148,82.193214,18.847263,147.98123,1.6234385e-06 774,2.8436427,38.78616,60.01946,198.62657,4.573861e-08 774,1.8012354,42.327095,20.195002,77.396095,1.1996963e-08 774,0.9795345,11.067074,39.867165,87.48782,3.1752858e-09 774,393.62836,3.7082846,41.8183,53.583725,7.573158e-10 775,461.74652,203.19878,25.201569,50.021286,81.957985 775,414.48575,204.72957,22.980042,49.36783,0.40680933 775,342.60095,211.21451,34.015106,86.19122,0.058536727 775,426.1022,198.17143,21.873383,48.628754,0.021376012 775,612.35535,168.00595,24.804382,57.981323,0.011575674 775,405.02252,197.40065,18.156464,46.434723,0.009198827 775,434.2779,182.33102,56.795563,127.31329,0.0035482782 775,265.39102,240.18333,23.852386,50.86769,0.002758142 775,599.3394,98.05945,39.154785,191.64612,0.0026774283 775,619.5518,93.40539,19.594849,62.773094,0.002001471 775,303.36224,219.00037,31.001526,70.74075,0.0019450727 775,625.4681,161.60426,13.678589,45.1053,0.0010187732 775,359.69098,225.30154,46.357147,166.81537,0.0008490504 775,1.1524019,181.68652,13.651065,52.221268,0.00052869145 775,611.1426,361.48062,28.00409,140.36221,0.0004938322 775,617.1208,192.40028,22.025879,83.12926,0.0004048392 775,236.18376,237.67917,27.868057,57.049164,0.00037962897 775,205.71246,218.57768,39.52382,138.28801,0.0002664793 775,323.67633,232.95303,26.310303,60.4115,0.00021271339 775,243.76971,221.1097,39.72174,92.531784,0.00019743953 775,184.48613,263.17075,69.08487,193.53207,0.0001573134 775,529.8721,116.39795,28.276855,63.0502,0.00015170652 775,1.9859612,170.32402,19.609331,142.73256,0.00013278222 775,423.30923,120.79971,130.76419,233.71982,0.00013014025 775,612.1519,277.84363,26.994751,147.00854,0.000104789266 775,355.92065,258.21063,92.37274,212.20312,9.035546e-05 775,587.2464,213.58485,51.33667,259.79175,7.78091e-05 775,7.83349,235.03777,84.70977,191.3745,6.987106e-05 775,609.6149,27.595964,29.531738,164.3386,6.1700775e-05 775,222.89293,243.64113,26.788559,61.79036,3.947954e-05 775,1.788278,233.2958,29.473839,148.0415,1.5452806e-05 775,1.0722754,337.97662,18.94487,138.64609,1.5259588e-05 775,3.4076548,90.66749,60.027504,249.04776,1.15304865e-05 775,608.8092,0.9328125,30.337463,69.51026,9.4970555e-06 775,2.2263737,96.65775,28.983696,152.43817,9.443751e-06 775,2.8359637,381.2394,56.10211,115.82733,8.0801965e-06 775,1.8278288,443.9254,36.007885,61.418823,2.0555876e-06 775,1.5614014,20.97278,21.604908,145.75127,1.5324023e-08 775,393.5324,3.5223,42.036255,53.58664,8.220804e-10 775,1.0261881,6.8673897,21.616722,61.95492,3.8009115e-10 776,379.15775,205.9742,23.68097,52.872177,0.24709539 776,455.6082,197.29968,28.417542,66.09021,0.0763575 776,563.3099,337.34097,71.245056,168.33606,0.022935316 776,411.03305,193.58821,22.535767,53.95172,0.016969658 776,340.17224,213.35478,23.128387,51.248734,0.014328555 776,441.08365,198.02979,25.013275,56.292664,0.008118311 776,621.9427,180.09077,17.20398,50.931885,0.0036479337 776,619.0255,93.408646,20.121155,63.94409,0.0035904725 776,258.7186,241.26544,24.658997,49.757782,0.0027913346 776,608.3483,82.88435,30.640015,151.64622,0.002623839 776,313.35208,216.33453,35.587402,77.24536,0.0013943225 776,243.35173,239.27878,26.944382,52.91382,0.0012300332 776,424.18118,193.17072,20.166534,46.65921,0.0012207301 776,583.1831,193.21307,53.480164,259.47537,0.0011632186 776,611.83203,408.84802,27.314636,96.13028,0.00094395125 776,297.3555,224.53876,31.167755,71.36365,0.0005916261 776,616.81366,193.03555,22.333008,91.036865,0.00047995005 776,1.1367526,176.95633,13.914852,57.07492,0.0004640094 776,222.33073,220.69128,39.357254,102.80682,0.00030524467 776,182.64305,263.7773,72.91167,195.48364,0.00027656948 776,345.52734,268.01126,76.63199,190.19193,0.0002683064 776,199.3786,220.42685,40.37468,150.21597,0.00020208815 776,364.40277,241.42987,41.014526,137.84467,0.00017672531 776,0.92207766,218.75577,18.13475,76.34207,0.00011985503 776,111.480354,205.6412,39.749916,93.12189,0.000114155184 776,616.0025,27.071997,23.144165,95.158424,5.928603e-05 776,4.354971,242.0214,57.11891,230.80194,5.3965614e-05 776,572.93744,457.2468,37.314636,46.112762,5.0235336e-05 776,2.349948,144.55493,27.784943,130.06644,4.9480946e-05 776,0.9448625,330.36032,18.73466,138.29678,3.7254595e-05 776,1.4495679,252.16992,27.198542,143.53308,1.6841572e-05 776,4.553114,115.76888,57.160522,222.78452,1.3017223e-05 776,547.93933,431.73264,47.24817,71.51581,1.088982e-05 776,1.6792351,416.18747,36.24671,84.60373,4.3618e-06 776,1.6425147,52.155003,20.6724,148.8429,9.275828e-08 776,1.7301563,18.082754,59.093277,122.75678,2.4295475e-09 776,393.41818,3.9538217,41.744324,52.80981,6.40326e-10 776,1.0677524,7.6070414,21.468634,60.834732,3.5464492e-10 777,438.2096,192.41571,32.686768,80.649994,0.70244396 777,572.6098,237.32358,22.631104,48.32553,0.32009572 777,491.42328,242.35904,40.763306,83.28958,0.058291223 777,418.53348,189.36589,33.4494,80.105515,0.008635905 777,258.57397,240.86353,24.369446,49.984833,0.0037348378 777,303.28848,220.05627,31.037567,69.76013,0.0036271517 777,618.8561,93.058334,20.290588,65.52396,0.0021851226 777,318.92758,221.67747,36.174774,76.94417,0.0011655327 777,600.2822,99.274414,38.154297,199.00455,0.0010556317 777,609.9174,172.80956,29.229248,71.922775,0.0009471508 777,410.04626,189.71518,23.122406,56.470688,0.00084744376 777,235.70563,236.86792,27.985321,57.5123,0.00066036265 777,625.4857,215.1076,13.66095,45.4433,0.00043982806 777,360.2039,238.87105,43.483368,156.42647,0.00042787756 777,1.9432268,173.02786,18.161716,80.762115,0.00037155816 777,564.1217,187.59108,24.669434,46.402527,0.00025777568 777,611.3225,325.51312,27.824158,149.60214,0.00025756948 777,611.5587,205.24936,27.587952,142.22226,0.00025167997 777,351.3991,244.67912,122.29132,240.85551,0.00023912516 777,172.71078,263.20013,69.927704,196.09833,0.00023321013 777,419.4212,189.49368,73.73074,181.97949,0.0002308623 777,0.41434002,225.63565,18.588284,89.67587,0.00022092297 777,205.61488,215.79396,40.20755,142.94368,0.00017702792 777,608.2862,438.22638,30.860474,67.34885,0.0001715403 777,395.84967,191.95491,23.291077,53.750076,8.651035e-05 777,609.1784,31.153627,29.968262,155.0311,6.895563e-05 777,0.9011459,262.4095,17.634636,142.53442,6.653437e-05 777,2.394218,147.25725,32.271244,189.55952,5.926342e-05 777,240.43127,215.2786,42.69983,115.921844,5.3283726e-05 777,222.62823,241.86292,26.903809,64.265594,3.7628335e-05 777,3.159292,226.59084,54.683746,213.77455,3.4322802e-05 777,0.84488446,382.8242,19.111544,115.30026,1.019455e-05 777,608.8381,0.27595052,30.308594,70.69726,9.041488e-06 777,4.4922953,344.16858,78.559425,146.42899,6.077722e-06 777,3.3286035,427.47067,53.51673,73.62808,2.1731714e-06 777,1.7152792,51.905937,20.481382,146.75363,1.4879042e-07 777,2.8224514,34.361225,59.780075,199.09978,2.4459057e-08 777,0.9978125,11.20072,39.661263,86.62902,1.490084e-09 777,393.39404,3.6379867,41.78882,52.803642,5.4606747e-10 778,21.135023,256.95532,20.07683,47.83792,0.005178597 778,335.93408,217.74358,33.919403,81.21608,0.004743601 778,618.88916,93.28655,20.257507,65.21371,0.004705508 778,307.37103,218.65126,32.797394,73.86061,0.004368094 778,608.18774,82.04009,30.958923,148.81876,0.0029600025 778,258.54324,240.68636,24.248016,50.12642,0.0022202185 778,611.81006,358.3373,27.336609,139.02567,0.0013841146 778,383.08734,184.08583,54.29715,128.93456,0.001068129 778,616.8218,170.04404,22.32489,76.27818,0.0010246389 778,378.48914,201.89928,19.677063,46.022583,0.001011466 778,243.19464,238.73286,26.914825,53.636642,0.00089399 778,1.4642636,210.27866,18.75362,145.61487,0.00085181353 778,3.0884507,236.196,41.26484,166.52965,0.00060424086 778,566.405,340.48898,69.461365,151.26599,0.0004776168 778,180.10603,247.58813,63.694183,194.51254,0.0004049342 778,0.71961266,244.066,13.587099,57.819473,0.0003923421 778,609.5719,274.0334,29.574768,143.43683,0.00031461715 778,599.56635,140.64336,38.73578,194.60915,0.00026918447 778,345.21948,259.62912,84.09708,199.66913,0.00020910086 778,388.51654,179.93372,24.271942,60.295044,0.00018871679 778,222.85576,219.88019,39.98033,103.742065,0.00017758053 778,1.3824267,179.63559,13.793692,56.367065,0.0001753761 778,2.1979127,144.32315,28.624264,153.92432,0.00015908596 778,207.0967,231.40944,33.652267,87.774216,9.237221e-05 778,0.10731283,376.73132,21.245922,104.72812,6.363016e-05 778,0.0,325.81348,48.97323,169.5008,2.5942578e-05 778,610.03436,6.7034965,29.112305,124.561745,2.0371188e-05 778,1.357806,438.58682,42.731968,66.50745,8.222373e-06 778,0.26133057,368.48914,13.634957,49.838837,3.3244212e-06 778,1.9841797,73.45211,18.575712,148.48715,6.462188e-07 778,2.9695346,32.511772,60.22902,201.04803,1.5034969e-08 778,1.7231951,38.703224,20.107521,73.825165,1.2066821e-08 778,393.39258,3.5407765,41.74518,52.457436,5.643264e-10 778,1.0962086,6.9426794,21.974808,62.469368,5.0047116e-10 779,620.7467,278.1065,18.399963,53.229034,0.036364865 779,367.45102,220.70224,22.403534,52.869263,0.020255638 779,446.70987,197.10506,26.877533,52.16188,0.011844208 779,19.544294,249.78703,36.612175,94.339096,0.009068436 779,338.0747,217.61183,21.175812,50.054153,0.007395287 779,586.8899,190.40935,38.44049,82.116196,0.0060951575 779,611.6496,221.18571,27.100769,138.55089,0.0060562454 779,355.19977,224.10645,23.738342,60.30356,0.005953949 779,572.9043,161.99568,62.4162,175.24977,0.0053615426 779,258.53287,241.25243,24.49939,49.975235,0.002496299 779,1.2512558,274.69638,18.226082,69.458405,0.0023296482 779,311.72546,214.67084,36.52948,79.529175,0.0021932062 779,609.23334,163.06097,29.6391,73.15111,0.0015024318 779,356.66077,205.16896,38.050995,124.61067,0.0014359084 779,500.64304,267.06042,39.52487,105.3703,0.0011863294 779,5.866921,224.50792,71.25279,172.24043,0.00066925376 779,615.547,82.29301,23.59967,94.0292,0.00058669527 779,572.26935,350.89417,65.83533,139.9526,0.00056249916 779,236.03497,237.31595,27.819427,57.128265,0.0005204611 779,611.06244,291.6652,28.084229,175.44394,0.00032937143 779,179.88289,247.93188,64.10487,193.53116,0.00030136987 779,1.5824708,191.24144,28.746632,157.72655,0.00028613897 779,608.1761,439.34094,30.970581,66.552155,0.00020285511 779,434.27432,194.6734,71.61282,177.32816,0.00016583755 779,216.02792,223.4286,39.02948,106.93306,0.00013476754 779,346.1314,267.91052,77.38251,192.24588,0.00013401957 779,0.36581787,247.24583,14.177155,59.159134,0.00013104829 779,240.49055,215.04944,43.05931,116.043945,5.8041725e-05 779,599.00854,38.600197,40.131287,239.85727,5.2886615e-05 779,1.8374,168.39464,18.26084,79.342896,5.139903e-05 779,1.3130933,304.12546,17.663078,154.16925,2.8661756e-05 779,2.7297266,322.89774,79.60851,165.71109,2.3463646e-05 779,1.9393425,402.2683,36.09862,95.92044,1.4125037e-05 779,610.1665,4.6823635,28.980164,124.77935,1.3263424e-05 779,482.38507,240.06064,77.759094,185.29285,6.363532e-06 779,1.9433081,62.167507,19.125881,148.3589,1.3899141e-07 779,2.8488102,39.7684,60.78614,216.28061,3.7474017e-08 779,1.1373665,12.03611,39.61671,83.516945,1.1722648e-09 780,347.40408,208.0773,31.10553,65.51608,0.1884653 780,26.26735,244.49484,27.427738,55.082184,0.03254588 780,612.64404,169.49709,25.391785,56.42047,0.0072773225 780,308.3681,217.87115,33.155273,73.882904,0.0037579278 780,258.50336,241.18451,24.277039,49.921936,0.0026071598 780,599.6402,100.45426,39.484375,181.32578,0.002020179 780,324.79736,212.97041,41.403076,95.195175,0.0016329981 780,395.92993,190.12375,35.334686,120.563385,0.0016213537 780,243.30782,238.56238,26.82106,53.87018,0.0010656893 780,610.958,365.91547,28.18866,137.1698,0.0006596055 780,420.52316,236.8043,34.143616,78.42949,0.0005382014 780,1.4175187,248.41866,18.499449,74.91991,0.0005149886 780,615.6385,81.44105,23.508179,94.82958,0.00048282108 780,404.5798,195.10939,19.598267,45.08786,0.00040098408 780,573.70776,199.3001,21.826477,46.37947,0.00032053737 780,363.91745,249.42143,41.24759,125.25493,0.00026150586 780,180.41904,262.11124,74.56018,197.34134,0.00023807024 780,222.83453,218.64714,38.90738,104.79469,0.00023643395 780,328.03302,232.05988,20.057617,46.292084,0.00021137974 780,3.1208904,227.54745,42.413773,124.85913,0.0002063139 780,199.49156,223.49907,39.03743,147.6678,0.00019879687 780,1.5916146,174.86238,18.484056,80.31645,0.00016038844 780,356.73593,253.5567,92.154816,213.20715,8.576519e-05 780,601.73145,193.11513,37.415222,200.70055,6.261769e-05 780,404.74646,250.09854,17.38678,48.55307,5.490293e-05 780,615.57294,13.064183,23.57373,95.48101,2.111995e-05 780,1.1570638,375.23907,19.012175,123.36911,6.3602442e-06 780,1.9286556,279.20023,32.221664,191.29962,5.173151e-06 780,2.5005844,85.44013,34.40924,204.95602,3.989914e-06 780,5.815166,337.0795,78.855965,150.99802,3.5943503e-06 780,1.5597721,21.167845,21.606133,145.32837,1.4850513e-08 780,1.0454948,7.5084248,21.963877,60.639053,4.9719245e-10 781,516.47784,189.24318,42.100647,112.86397,0.048223775 781,327.66946,214.02946,36.296295,74.83095,0.04024647 781,26.435858,245.08087,29.786531,62.726624,0.017124612 781,612.9864,167.5572,25.037903,57.130722,0.010216006 781,436.88248,196.90005,22.936798,53.282608,0.00960982 781,388.68713,238.71138,22.680298,55.10872,0.0076006385 781,347.23438,227.98889,19.781372,47.934814,0.004619452 781,619.23816,93.77787,19.908508,64.07534,0.0035947443 781,258.6239,240.72025,24.78006,50.233368,0.0033410455 781,603.1996,116.17482,35.562866,147.08653,0.003165758 781,400.82703,199.40424,22.679016,53.394882,0.0028288304 781,306.25735,214.41162,38.290924,82.883575,0.0022592666 781,356.1289,230.28099,31.913513,74.67952,0.0017737908 781,373.88464,242.388,22.179443,53.121155,0.0014188631 781,243.19699,238.6498,27.193787,53.63826,0.0013142427 781,538.32983,96.451645,40.46643,86.45711,0.0012943253 781,571.5825,331.55252,63.670166,147.63348,0.000700502 781,413.86734,190.04282,25.315186,55.9498,0.00067575695 781,355.29565,224.65157,57.132416,151.22017,0.0004493342 781,4.23405,215.10165,57.255104,129.56061,0.00034853973 781,201.00334,217.46591,37.891876,146.41656,0.00032418 781,586.7115,189.1849,50.372253,231.71384,0.0002894197 781,613.4214,350.75946,25.72528,149.22858,0.0002845427 781,2.1470141,206.09447,20.89419,108.6317,0.00026632735 781,175.50401,304.9611,73.22888,163.8534,0.00023285276 781,223.17422,219.75363,39.973846,103.11359,0.00019732959 781,1.7435507,169.5749,18.16102,75.47005,0.00019628683 781,612.7511,265.7116,26.395569,140.68338,0.0001139684 781,525.42474,228.40251,23.00586,51.176376,6.69919e-05 781,609.6473,16.74556,29.49939,160.30478,4.4467775e-05 781,215.38107,244.80646,26.387833,67.86539,1.7483493e-05 781,1.7741374,284.98114,30.26274,193.96777,9.816221e-06 781,608.9101,0.82236004,30.236572,68.01081,8.095901e-06 781,2.5845509,85.31763,34.048393,202.55322,6.7599926e-06 781,0.8613444,414.72958,17.396074,88.15854,6.1041396e-06 781,4.998324,338.29742,76.94988,148.44437,3.1616928e-06 781,1.6591235,23.212923,21.53123,141.0035,2.234443e-08 781,1.053326,7.4159408,21.847063,61.392113,2.8287814e-10 782,412.3617,194.1875,26.976654,77.90375,0.22398758 782,355.42255,205.7591,28.354584,62.389618,0.07226961 782,429.59686,194.20752,22.619873,47.839157,0.07035741 782,24.432848,244.00548,31.335882,62.69316,0.014228389 782,601.9403,165.82185,34.25934,65.07654,0.011297262 782,307.08307,216.97166,32.59659,72.721725,0.0054271515 782,258.58173,241.01793,24.357605,50.159775,0.0035042928 782,243.06032,238.23108,27.20662,54.41342,0.0012280102 782,585.3353,100.659615,53.395386,188.8255,0.00077843934 782,420.0059,198.47607,38.079315,126.87192,0.0005669336 782,361.08124,234.01172,43.64154,159.9921,0.00053375855 782,615.8879,82.69189,23.25879,92.83346,0.00043060468 782,2.117412,174.50656,18.699585,130.65851,0.00039563465 782,328.7608,228.94508,20.692963,47.8264,0.00036547412 782,621.78204,38.839848,17.364624,58.62968,0.00031831727 782,192.78833,276.15628,53.490158,160.15317,0.000256268 782,583.6033,393.23282,55.180054,102.470795,0.0002529015 782,0.97369796,334.824,36.16422,153.95496,0.00022212317 782,223.17813,218.73016,39.77707,104.39462,0.00020388459 782,608.26556,439.26312,30.881104,66.51376,0.0001986195 782,3.5641553,213.87625,63.05816,132.77377,0.00019830947 782,611.5397,307.12497,27.606995,149.9462,0.0001269552 782,602.3197,189.56673,36.826965,204.04048,7.090575e-05 782,0.59610844,404.19922,17.651215,99.861664,1.3210618e-05 782,2.4927442,85.860596,33.878082,194.86044,1.1131619e-05 782,610.34625,2.8856316,28.800415,124.57939,1.0266044e-05 782,1.2528484,238.23535,21.39212,173.07642,9.545435e-06 782,1.6690967,23.065912,21.456629,140.86198,2.7275954e-08 782,1.0832462,7.300111,22.130785,60.962524,3.7006323e-10 783,357.14056,210.71997,29.615723,78.81842,0.18966366 783,412.12833,194.76962,19.728333,48.662125,0.06879934 783,321.2067,215.13052,32.427307,77.66507,0.030807478 783,612.37195,168.22664,25.237305,56.963028,0.012335729 783,397.69693,196.86452,19.638458,46.489243,0.009669219 783,258.65607,241.219,24.276703,49.978943,0.0057155592 783,590.5866,371.6573,48.56006,122.84683,0.0048927353 783,302.93747,219.61824,30.59253,69.76567,0.003759197 783,603.17316,118.057076,35.433777,142.05057,0.0029178145 783,356.7222,228.43039,42.34198,171.26779,0.002385748 783,620.6004,379.41623,18.546265,59.042267,0.0023147357 783,243.35834,238.79565,27.059753,53.57202,0.002102893 783,273.4823,227.9675,31.973602,66.8595,0.0018307836 783,35.73893,246.79164,27.28424,57.93828,0.0017613438 783,1.6663249,177.572,18.27365,74.210785,0.00058297964 783,615.66815,81.72881,23.478516,93.6076,0.00054610777 783,222.66579,219.52055,39.635025,103.558945,0.0003073531 783,378.95493,209.01978,31.537323,79.54294,0.00030202704 783,588.72485,190.02956,49.3667,273.05585,0.00028762955 783,9.827881,225.57874,42.703167,105.98807,0.000286845 783,192.74706,268.37433,53.34784,167.72552,0.0002194734 783,1.3841529,209.43466,20.485462,137.05215,0.00013945719 783,354.88077,266.2411,93.222565,204.49768,0.00010741462 783,2.8539762,130.2832,34.17974,174.06284,8.979016e-05 783,210.55121,243.73816,25.982697,68.372345,4.0356994e-05 783,1.0767773,369.55057,57.046223,127.055115,2.808236e-05 783,0.75010014,407.50537,17.323277,95.064026,2.1112457e-05 783,610.1989,5.2445183,28.947754,123.241135,2.010956e-05 783,1.309012,309.1139,20.835363,167.61664,6.8131812e-06 783,82.70833,230.7117,74.98186,163.82254,6.5254694e-06 783,1.6376066,51.8291,20.802906,148.28676,1.1560128e-07 783,2.651071,39.053726,60.833458,201.93105,3.6992954e-08 783,1.0083073,11.65459,39.678436,85.69975,2.1756235e-09 784,346.1896,211.95972,29.502838,62.810303,0.2442176 784,57.31536,243.35803,26.315407,55.674866,0.07112002 784,427.30505,199.96474,20.868042,48.5085,0.023507621 784,414.5926,193.06377,23.14975,49.28923,0.011128765 784,598.7186,105.60795,39.206726,187.1701,0.006479246 784,258.53555,240.68152,24.365112,50.51779,0.0032715776 784,307.94464,217.45354,32.40335,72.63136,0.00319612 784,35.288803,247.12349,27.597038,57.541702,0.0026923865 784,19.187963,239.98642,23.780672,53.343323,0.0024130694 784,328.16055,221.2085,35.18982,78.659424,0.0017774517 784,243.12323,238.0468,26.987854,54.450577,0.0013024159 784,403.32596,196.16347,22.554901,54.50537,0.0007101211 784,542.9672,101.5302,31.577698,71.956024,0.0006670739 784,616.0799,217.3673,23.066772,85.986465,0.0005498989 784,362.9773,242.99084,42.37204,133.25864,0.00044059506 784,1.9956446,174.92227,18.596,127.20685,0.00043883343 784,615.62836,82.21922,23.51831,95.8551,0.00040943554 784,178.40158,248.91306,65.293976,192.7229,0.0003614664 784,9.720104,225.71501,42.811947,104.9572,0.00031785737 784,608.12415,440.8959,31.022522,64.8616,0.00022975114 784,222.76428,219.64117,39.957855,103.9971,0.00021270449 784,611.68463,327.2844,27.462036,148.48016,0.00013550109 784,355.7433,265.0936,90.28287,200.5662,0.00010051572 784,207.14018,231.5599,33.592484,88.51468,8.099814e-05 784,0.5480542,356.9344,20.589613,145.66974,5.5954508e-05 784,616.13696,25.75795,23.009705,94.76484,5.4383996e-05 784,1.9767936,291.3478,54.48988,195.88495,2.3932767e-05 784,2.1977954,98.08225,29.057915,151.47928,7.013839e-06 784,1.074961,237.69833,21.338623,172.22552,5.537609e-06 784,587.0535,3.1286004,52.09314,144.93307,2.569139e-06 784,1.8694866,68.65966,19.672426,86.784584,3.1036328e-07 784,1.7433301,18.33224,59.00757,120.5684,6.6910464e-09 784,0.9893986,7.499323,22.364084,60.85875,4.4470908e-10 785,345.45966,214.08229,23.273254,56.61888,0.5469768 785,56.36621,243.42596,27.167831,55.768463,0.057182148 785,413.11624,201.0861,27.008148,66.117386,0.012068013 785,612.593,174.9632,24.658325,53.494278,0.009082473 785,313.97998,216.57991,33.097656,73.25551,0.003909298 785,258.53113,240.98863,24.451263,50.432144,0.0034549178 785,405.22165,198.68785,20.51352,50.332214,0.0031799914 785,619.50385,94.183,19.642822,63.96988,0.002818775 785,417.66174,217.31909,39.476013,98.24658,0.0025181386 785,35.33026,247.06761,27.648014,57.275497,0.0023444179 785,603.3722,119.47722,35.394043,144.73378,0.0022800672 785,19.363056,239.5604,23.731564,52.567566,0.0021505323 785,243.21959,238.90837,26.962357,53.608017,0.001301918 785,569.0084,365.95496,69.47742,122.686554,0.000716405 785,363.2192,248.32118,42.73593,127.66759,0.0005563001 785,2.0243392,187.11699,18.037647,77.353714,0.00055619987 785,180.32037,253.9519,64.97453,195.46597,0.000536843 785,345.56674,260.96002,82.91104,199.26843,0.00045905332 785,264.16064,216.90349,38.94934,88.350845,0.0003667583 785,9.799701,225.36206,42.54061,108.25955,0.00031016604 785,608.27264,440.06985,30.874023,65.978485,0.00021886347 785,222.71823,219.35506,40.267242,104.78932,0.0001958336 785,611.21277,314.95377,27.933899,150.14734,0.00017598564 785,1.3110026,246.41183,18.90443,84.139496,9.8438366e-05 785,602.2797,189.22282,36.866943,202.91484,9.7390286e-05 785,2.7064404,128.708,34.16495,176.28593,7.5108124e-05 785,207.28351,231.86542,33.25827,88.101166,7.317748e-05 785,616.46124,26.643398,22.685425,94.36182,4.431173e-05 785,0.9861735,369.25317,57.029858,126.28168,2.6596874e-05 785,0.7483252,406.38953,17.174433,95.96747,2.1393904e-05 785,0.7189974,370.5687,16.361998,71.59683,9.677629e-06 785,600.97864,4.042448,38.16803,70.98169,2.3157306e-06 785,1.6980876,53.354202,20.552399,147.14963,1.327622e-07 785,2.5673113,34.41827,60.7356,198.35501,2.521536e-08 785,1.1871142,10.660944,39.878433,87.80063,1.8545242e-09 786,57.097454,243.31313,26.246082,53.72505,0.15608133 786,339.74057,218.5444,32.179565,75.740875,0.037799448 786,415.40796,192.16154,22.829132,53.605026,0.013474111 786,609.50525,87.674576,29.416199,150.8159,0.0040637804 786,258.59695,241.33394,24.718903,50.600784,0.00400065 786,24.132713,239.01714,24.85474,53.480576,0.0034782174 786,619.337,92.35002,19.809692,64.22258,0.0031810165 786,311.362,213.99055,39.514954,89.67613,0.0019783762 786,381.03192,228.65964,21.279083,52.11435,0.0019635796 786,35.402527,246.83995,27.71487,57.31627,0.0017924758 786,538.10645,220.91766,37.615234,81.758026,0.0014606443 786,273.8551,227.47417,31.360565,67.52736,0.0012169349 786,611.009,173.91763,28.137695,139.7222,0.00072914053 786,1.9924984,174.00443,18.767347,128.39032,0.0004450767 786,507.09918,164.00752,80.65283,195.73698,0.00042977676 786,613.5579,359.30118,25.588745,136.92206,0.00037685398 786,362.2431,231.90988,41.74414,167.53757,0.00024366015 786,229.63748,218.79233,40.331665,98.52457,0.00021725867 786,183.34692,257.92493,70.381836,198.82138,0.00021526453 786,320.86526,230.10837,20.97052,48.08957,0.00019673244 786,2.5193505,212.44427,43.01396,138.14883,0.00018853655 786,206.70134,213.31195,39.499557,140.88702,0.00013200472 786,611.586,273.5123,27.560669,152.77817,0.00010566554 786,356.5563,263.56772,91.695435,206.23584,7.26644e-05 786,0.9026774,366.79398,57.129604,129.47626,3.7735354e-05 786,568.2218,340.85684,66.38147,147.25998,2.4747074e-05 786,0.7437858,407.14786,16.972548,95.38211,1.8820478e-05 786,2.4360142,81.57255,34.087456,195.82388,1.6734431e-05 786,609.9497,3.7266798,29.19696,125.46322,1.4584786e-05 786,84.795135,226.7609,73.4718,160.55173,1.3236268e-05 786,0.70938313,368.6253,16.748001,73.72815,1.2518803e-05 786,1.2282064,277.20255,30.703323,185.87753,7.269004e-06 786,1.5903639,73.378815,20.199854,93.4991,8.369315e-07 786,1.494808,18.753561,58.87582,120.37708,1.2679805e-08 786,1.1313827,6.633949,22.298738,63.37578,3.8150894e-10 787,612.37415,166.46474,25.565674,59.078857,0.018013943 787,333.609,218.73839,33.015533,76.74281,0.016433738 787,313.3073,214.852,34.108337,62.531998,0.007909693 787,450.50745,197.52147,28.121277,51.853897,0.0055639143 787,421.2751,195.6025,23.295227,54.334183,0.004390638 787,599.5994,181.23203,24.609253,49.263092,0.0038442246 787,258.55408,241.27667,24.665558,50.567383,0.0037264556 787,356.64383,215.38083,32.487854,76.8746,0.002866507 787,299.50604,221.06761,30.284576,72.3329,0.0025098624 787,619.43475,93.25663,19.711914,64.1963,0.0024756573 787,36.90125,239.23694,40.327915,68.35358,0.0024537744 787,599.6448,100.939255,39.314697,182.15657,0.0024213032 787,18.989857,239.55608,24.063713,53.696426,0.0022129423 787,243.13644,239.0955,27.160004,53.40944,0.001332991 787,274.2883,227.15334,30.929077,68.48802,0.0011380755 787,367.28152,227.38005,41.407013,163.09605,0.00069036894 787,610.95233,365.83105,28.194336,137.10938,0.0006332129 787,438.0258,202.26375,40.26761,123.9839,0.000565617 787,1.9675326,173.71687,18.703266,128.11266,0.0005188257 787,617.30945,193.13379,21.83722,83.224335,0.00042510687 787,1.0778768,181.50243,13.805029,53.377243,0.0003057662 787,9.482051,225.896,43.023167,105.74124,0.0002854429 787,175.04654,304.29022,74.024216,163.09433,0.00028311406 787,223.00854,219.90544,40.07541,102.965866,0.00019648048 787,199.77136,224.67178,39.543625,147.93787,0.00016298691 787,247.94585,213.83751,40.389175,111.9792,0.00010099231 787,356.2686,260.6436,92.09451,209.0192,8.41333e-05 787,611.1529,277.36166,27.993774,153.3963,5.1029543e-05 787,0.8357276,366.56595,57.020096,128.99188,5.039916e-05 787,210.85115,244.72147,25.48906,66.39084,3.7651527e-05 787,609.5687,15.7225065,29.577942,162.25159,3.604966e-05 787,0.67568445,368.85336,16.764233,73.18466,3.0098105e-05 787,0.6848804,406.91342,17.194908,95.12991,2.299012e-05 787,2.528322,91.696266,33.67114,185.56479,1.4756327e-05 787,609.1315,0.55352867,30.015198,67.529106,1.0187027e-05 787,282.4653,175.56572,102.9339,203.43861,8.591159e-06 787,1.0784335,236.2431,21.070164,173.79092,5.028969e-06 787,1.6263982,21.087246,32.43141,149.11784,1.4679544e-08 787,1.0826082,7.6217513,21.94799,59.998886,3.707768e-10 788,56.77362,243.20862,27.227058,55.86261,0.08976317 788,410.71924,195.41937,22.553925,53.654144,0.053348858 788,353.9537,224.10542,31.304077,74.4868,0.012374796 788,609.3671,89.51252,29.338928,147.68036,0.007145437 788,258.63913,241.48315,24.417389,50.056274,0.0064691696 788,621.80676,178.9453,17.339905,51.52887,0.0039817714 788,243.13316,238.22485,27.029007,54.19861,0.0026369384 788,323.01993,221.54126,33.814606,75.43625,0.0024344823 788,274.3709,228.284,30.742035,66.53464,0.0020828466 788,35.233624,246.59625,27.705559,58.287964,0.0017844526 788,298.39548,224.19336,30.558228,70.0325,0.0013691824 788,608.6445,200.18234,30.234741,138.68765,0.0013035341 788,357.5661,242.76694,43.25946,164.8836,0.0012879104 788,1.9569621,193.47758,17.887617,75.83443,0.001008613 788,179.78255,252.49652,65.507385,196.73141,0.00084086333 788,611.3755,355.1201,27.77118,144.61908,0.00048619087 788,226.01587,229.54782,34.23001,79.45813,0.0003884785 788,395.46964,189.12923,23.75769,57.844345,0.00034558537 788,620.8599,253.97542,18.286743,56.518234,0.00034361487 788,205.38963,216.14798,40.1828,141.70255,0.00029682947 788,9.518536,226.00887,43.182274,109.44243,0.00029573427 788,340.4467,245.0791,122.16016,231.07736,0.00020951945 788,1.3211955,246.1324,18.903297,83.958664,0.00011197734 788,2.6272802,129.935,33.30248,173.39328,9.962874e-05 788,616.5285,35.090588,22.618164,96.29234,8.2490915e-05 788,0.6466984,359.3638,19.896414,142.16922,5.2262898e-05 788,2.0018442,287.71063,54.500954,196.00735,2.7906048e-05 788,503.28656,239.1572,75.67877,206.11127,1.9799418e-05 788,82.47168,230.50967,75.26007,163.22351,7.462591e-06 788,609.65497,1.1514975,29.4917,66.617325,6.6774783e-06 788,1.717824,52.59266,20.552673,147.81927,1.3492286e-07 788,2.6684506,35.193886,60.594795,198.1803,3.7256363e-08 788,1.166237,11.254102,40.220814,86.744835,3.4686614e-09 789,56.79676,243.13191,26.883453,55.822433,0.067049906 789,409.93045,193.04619,21.975342,50.860977,0.032585494 789,347.39993,224.0824,32.296417,74.05771,0.008373141 789,611.7847,165.74211,25.399048,60.667297,0.0080929585 789,337.18362,219.29964,23.527863,50.236008,0.0061352956 789,489.2118,234.82155,25.21698,47.914536,0.004950519 789,258.53406,241.35236,24.329773,50.397583,0.0044427207 789,617.7039,259.26685,21.324707,93.07248,0.0040327413 789,598.95984,93.46027,39.289307,220.6059,0.003698956 789,560.59436,214.4316,35.842163,78.58855,0.0030685107 789,618.8256,93.68215,20.321045,66.4605,0.002544475 789,303.76648,220.65392,30.61914,68.898605,0.0018403484 789,35.799778,247.09329,27.072124,57.43863,0.0016952783 789,242.9547,238.05034,27.199448,54.91368,0.0016851316 789,19.213024,239.69858,23.762867,52.971222,0.0016394722 789,273.95682,227.39876,31.364594,67.32286,0.0013445428 789,325.7698,238.41667,25.94226,58.597763,0.00062668446 789,617.0005,191.85696,22.14618,93.49255,0.00058652856 789,611.054,368.81042,28.092651,133.13995,0.0004755796 789,1.8250188,188.02914,18.236359,76.0007,0.00046547997 789,9.64826,226.1105,42.573837,106.06406,0.0003244141 789,366.97437,230.85078,42.149994,161.80171,0.0003027301 789,175.22292,305.085,73.51288,163.20581,0.00028892743 789,223.0649,218.99138,40.39177,104.18135,0.00022666555 789,199.52733,223.86806,38.97322,146.4232,0.00018366573 789,254.30104,216.7446,40.56044,109.806244,0.00015515316 789,603.3294,224.03242,35.580017,208.19398,0.00015176949 789,1.3021078,246.51126,19.044079,83.28787,0.000121445955 789,2.722806,129.24031,34.464306,173.30415,9.53969e-05 789,356.8859,263.75226,88.884155,205.54004,9.394621e-05 789,0.6429321,378.29898,12.870031,51.659424,8.37858e-05 789,0.6153109,357.8384,20.396261,142.96457,4.1929947e-05 789,609.6533,17.805756,29.493347,159.22978,3.8983842e-05 789,2.0303175,289.5463,54.414566,196.81662,2.6626614e-05 789,215.55281,244.38457,26.496048,67.74043,2.2727912e-05 789,609.2635,0.85717773,29.883179,67.44998,6.712608e-06 789,81.73276,231.13615,75.395676,162.88725,6.4997066e-06 789,1.7662859,89.97607,21.417152,123.21334,1.392802e-06 789,2.5975294,36.33586,60.369816,197.60492,3.3902126e-08 789,1.6302905,19.167747,31.672993,134.71616,1.2948203e-08 789,1.0114217,7.211406,21.946737,61.695393,4.7929405e-10 789,393.38068,3.700145,41.49945,51.03631,2.6277575e-10 790,346.99658,220.9212,23.091064,51.066803,0.008746946 790,618.97235,102.38425,20.174316,62.516037,0.0036759444 790,258.6255,241.1613,24.504242,50.566788,0.0031417545 790,621.8532,180.13806,17.293457,51.46225,0.0030268964 790,609.6659,87.57832,29.43103,153.15726,0.0027618266 790,429.36664,204.12813,26.001251,54.241013,0.0024052348 790,43.40354,247.41788,27.725395,58.68869,0.0023740055 790,307.75824,222.5244,32.44516,74.04506,0.00205431 790,415.48703,195.4821,25.317108,54.152313,0.0019512407 790,19.248295,239.50607,23.826744,54.319885,0.0016554646 790,357.8594,227.90329,24.887177,57.29132,0.0012846474 790,274.26016,227.16995,31.1315,67.708374,0.0012184446 790,243.14142,239.05612,26.985992,53.507416,0.0012166935 790,1.7586629,186.46443,18.260015,76.78328,0.00073220173 790,611.1132,371.90994,28.033447,130.73288,0.0006174537 790,401.94522,193.60652,22.674927,48.797134,0.00047477114 790,355.80078,236.61176,44.615295,152.16382,0.00045180586 790,9.844992,226.44011,42.70272,105.67494,0.0002246909 790,222.85881,220.52155,40.097794,102.63959,0.00019844304 790,611.9566,173.52863,27.190063,132.08545,0.0001956432 790,183.77484,259.24658,69.946594,199.38556,0.00018321577 790,6.702951,175.0665,32.434456,68.59166,0.00013963711 790,1.2326685,246.31161,18.969969,84.15988,0.0001289312 790,368.2237,216.55058,77.55188,200.55223,0.0001063808 790,616.52795,33.129807,22.618713,95.33386,0.00010383942 790,207.39896,231.74866,32.996155,85.79819,7.529631e-05 790,611.0045,278.31973,28.14215,149.8129,5.1174527e-05 790,0.5363481,379.30765,12.675188,50.544006,3.6160112e-05 790,0.6728638,360.54587,19.968342,141.9444,2.7393247e-05 790,87.86884,236.5754,56.507927,137.99666,2.6577956e-05 790,2.0898633,288.78036,54.906948,199.04648,1.5332025e-05 790,609.49316,0.87768555,29.653503,69.131195,6.7746555e-06 790,587.2371,4.786712,51.909546,144.60954,3.7078603e-06 790,1.6197722,81.58496,18.695053,148.79286,1.3399405e-06 790,2.4484978,34.127266,60.613132,196.73007,2.5834899e-08 790,1.7200236,38.029823,20.337425,75.281166,1.4319513e-08 790,0.9737769,7.373506,22.188124,61.715523,4.0074172e-10 791,56.961296,241.23503,26.843697,52.76848,0.08763771 791,401.2135,197.98036,22.299255,49.19011,0.04889733 791,345.52884,221.111,23.98468,51.507385,0.033985227 791,332.2867,219.81633,22.508545,45.11171,0.02935919 791,576.6009,415.80865,62.545776,89.957855,0.016723603 791,258.58124,241.36345,24.581207,49.955276,0.005502128 791,612.23804,167.43909,25.205078,58.990585,0.005378001 791,242.93642,237.64735,27.11882,54.51207,0.0026639712 791,583.98865,98.715225,53.372803,201.06926,0.0025608456 791,19.324162,239.9313,23.541744,52.851685,0.002239181 791,319.40482,216.11868,40.318054,86.77829,0.0021874742 791,35.520397,246.79855,27.629936,57.995575,0.001669768 791,619.21704,92.30019,19.929626,65.47463,0.0014071999 791,274.0778,227.806,31.238983,67.114746,0.00095016684 791,1.9757324,187.73946,17.901693,75.77632,0.00070935086 791,617.311,195.41422,21.835693,80.93088,0.00065583375 791,572.96375,197.99283,22.759216,48.215515,0.0004821318 791,355.61157,233.49818,60.220367,157.2918,0.0004035594 791,222.88255,219.3243,39.66884,103.791336,0.00032641864 791,9.967356,226.14131,42.452652,106.91786,0.0002705828 791,191.74573,272.8556,54.976837,166.65717,0.00026439774 791,608.9857,290.35043,30.16095,192.68198,0.0002568902 791,207.21297,231.23444,33.235367,87.023254,0.0001543116 791,490.04877,298.77606,78.46625,183.46771,0.00013486732 791,1.3057919,246.72751,18.91031,83.04834,0.000117106625 791,2.767798,132.28896,33.64243,170.9598,9.382167e-05 791,616.3852,34.686527,22.761475,93.93251,7.619158e-05 791,1.0283741,368.74704,56.747597,126.90094,3.272482e-05 791,0.72865397,407.7116,17.40422,94.727295,2.2395787e-05 791,0.6678223,370.21756,16.466753,71.86371,1.5019428e-05 791,609.41675,0.87741214,29.72992,66.844025,7.84948e-06 791,83.414505,231.0301,74.00772,164.31508,6.5959325e-06 791,1.8488746,85.56318,18.405588,143.61798,1.3925523e-06 791,2.7414079,36.46826,60.5899,195.82024,3.324957e-08 791,1.6521989,20.160196,31.276882,132.24567,1.7792324e-08 791,0.95020187,7.511667,22.193026,60.78559,6.020231e-10 792,332.1587,216.48402,22.528778,46.576645,0.04017006 792,344.73096,221.36761,24.257294,52.619354,0.02018269 792,589.9235,289.5925,47.2641,200.73563,0.008764622 792,612.4814,166.0025,25.021057,60.029266,0.007251513 792,593.8643,183.36545,24.59314,48.864212,0.006372064 792,584.2127,93.51791,52.93872,228.72986,0.0036409236 792,267.83365,229.40038,30.953064,64.79732,0.0028169209 792,622.3131,194.18346,16.833557,50.006058,0.0027482826 792,410.6051,197.17497,23.300049,52.992355,0.0023672527 792,616.0747,266.81088,23.07196,104.70303,0.0022143356 792,19.263458,239.83408,23.552395,53.767426,0.002054345 792,36.181458,247.261,26.565811,57.308823,0.0019102958 792,304.0785,222.0518,30.637878,68.43791,0.0018679142 792,372.2645,236.0461,38.950684,132.34859,0.0015148942 792,325.59882,236.15662,26.443787,60.871216,0.00077084714 792,1.7626417,187.82793,18.304094,76.58302,0.00068511674 792,455.94736,199.76846,24.951355,52.30417,0.0006792693 792,464.13287,220.02303,34.48239,81.33382,0.00042461907 792,346.9336,261.01935,75.30319,196.50424,0.00039939446 792,614.8076,100.279,24.33905,102.7873,0.00039730745 792,174.77565,304.0216,74.71004,163.39444,0.0002374252 792,225.6701,231.20392,34.365112,78.239044,0.00023677737 792,205.63722,216.82732,40.120438,142.14122,0.00022504623 792,243.90207,221.22266,39.031982,91.93707,0.00022148665 792,9.889577,226.11308,42.56419,106.52348,0.00021948678 792,415.55838,241.73636,74.960236,203.5936,0.00018496205 792,608.30676,440.1172,30.839905,65.88251,0.00016799844 792,1.3366773,246.84534,18.973173,82.569214,0.00010622265 792,2.7416162,131.6026,34.00233,173.6445,8.6311826e-05 792,616.2281,25.394236,22.91858,95.53012,4.582502e-05 792,1.2206593,310.08466,37.394196,183.92953,3.256778e-05 792,0.72353846,406.19943,17.287521,96.21152,1.7540411e-05 792,0.6741992,368.8,16.879364,73.76898,9.312033e-06 792,82.21364,231.81891,74.72931,162.68344,6.4474534e-06 792,1.6290983,83.802505,18.584368,146.184,1.3402573e-06 792,2.6923585,36.50104,60.64667,197.51189,2.4540602e-08 792,1.5319613,19.924103,31.591528,133.22757,1.4515413e-08 792,1.009157,7.447155,22.234911,60.965557,3.2967132e-10 793,56.59023,243.8088,26.50835,54.3118,0.122758046 793,434.63245,239.72435,20.902557,47.037216,0.05433925 793,345.41034,219.06168,24.283386,54.012848,0.015848998 793,622.1001,178.75818,17.04657,51.49185,0.007877431 793,322.14816,219.66638,35.679962,77.60254,0.0063180914 793,609.6176,90.87482,29.112183,148.06764,0.00536673 793,258.61386,241.29306,24.682404,50.33847,0.0033879348 793,410.19852,198.05772,23.381256,51.998505,0.002862879 793,35.065514,246.6139,28.12635,58.07567,0.002306934 793,19.343832,239.93439,23.81676,54.04132,0.0020912697 793,274.531,227.83478,31.035614,66.92853,0.0012441869 793,389.45535,198.16225,36.435974,95.92256,0.0010465431 793,243.5182,239.12886,26.790268,53.211014,0.0009613653 793,297.8793,224.59201,30.86322,70.862915,0.0009018905 793,450.67767,196.98633,36.529724,70.04648,0.0007773177 793,1.7932658,185.02777,18.4604,79.366516,0.00067048415 793,611.2995,372.22134,27.847168,131.17184,0.0006052461 793,376.4854,226.08087,41.238922,160.62524,0.0005097602 793,381.2777,233.18953,23.971619,63.75157,0.00043910427 793,354.96832,240.40245,115.08133,236.37114,0.00032101705 793,205.54988,218.7578,40.01854,138.82451,0.00025262815 793,2.8074546,156.30379,34.02279,177.32808,0.00018879888 793,164.39264,244.1886,109.515625,224.93463,0.00017720208 793,225.59134,231.87415,34.891113,78.302185,0.00015545529 793,588.46564,137.93956,50.177856,218.00893,0.00015004953 793,1.2807487,247.38391,18.857735,82.17679,9.323743e-05 793,23.6109,218.09755,46.379944,122.44524,7.0889124e-05 793,240.3429,216.22633,42.947357,115.57121,6.5704175e-05 793,616.57697,33.504726,22.569702,96.365875,6.3526e-05 793,611.31744,275.4587,27.829224,151.21155,4.5805486e-05 793,0.4066911,358.44724,30.822502,142.80731,3.215537e-05 793,525.6806,223.10745,43.5885,138.56702,2.818324e-05 793,0.67796063,369.10403,16.957142,73.26984,2.0282443e-05 793,2.9502573,281.69992,84.47492,203.87857,8.419529e-06 793,610.0351,0.89984053,29.111572,66.7963,5.7456514e-06 793,1.7126596,53.303524,20.668472,146.67624,1.0107068e-07 793,2.741068,36.631374,60.814194,196.63733,2.8303388e-08 793,1.1918327,11.616316,39.872356,86.31792,2.0824984e-09 794,414.27478,210.98868,23.670288,56.95285,0.4761767 794,332.53268,216.38014,21.4917,45.52037,0.031150613 794,345.6959,220.14227,23.76709,52.221863,0.020131413 794,402.04663,197.5348,23.830048,51.81833,0.010497512 794,612.63806,167.50601,24.49115,57.733154,0.010097537 794,593.79095,184.94656,24.916687,46.212265,0.0065979366 794,307.87372,221.36401,32.19226,70.13458,0.004930533 794,24.626776,239.05229,24.478212,54.42885,0.0045941654 794,258.6519,241.54716,24.763214,49.91951,0.004569862 794,599.54346,100.59787,39.339355,181.43103,0.0027836305 794,35.746956,246.94795,27.361443,57.589645,0.002029202 794,619.8804,92.50279,19.266296,62.655518,0.001843584 794,274.55728,228.36292,30.81009,66.40057,0.0013805645 794,243.61256,239.69089,26.691055,52.825317,0.0012973604 794,330.0417,214.06071,41.267944,107.76338,0.0010408617 794,352.73355,224.72449,33.40811,77.08551,0.00087611726 794,1.9266797,187.36172,18.258318,77.30618,0.0007311439 794,361.15094,211.98495,67.66171,174.33463,0.0005701314 794,617.40906,192.3663,21.73761,83.56918,0.0005555235 794,402.45706,206.91574,39.61905,135.44724,0.00051419414 794,611.225,342.8927,27.921692,142.6398,0.0004701502 794,162.28487,243.59883,111.63493,226.21608,0.00023044567 794,608.32025,439.39304,30.826416,66.096985,0.00021696363 794,205.46608,217.30916,40.025146,141.26509,0.00019276109 794,2.6796665,212.86693,42.884964,133.74959,0.00017332003 794,225.72887,231.95639,34.442886,77.83087,0.00014147026 794,1.3083293,246.43716,18.847073,82.2912,0.000112585985 794,240.42883,216.49442,42.85956,114.595856,7.0330745e-05 794,0.6576607,378.08957,13.026267,52.055603,6.9917725e-05 794,602.62103,193.82382,36.525635,208.28574,5.132032e-05 794,616.30255,25.671583,22.844116,94.583626,4.9972816e-05 794,393.19687,231.3597,81.08362,200.87953,4.0927684e-05 794,0.6687728,356.55157,20.48935,147.05823,3.6965488e-05 794,2.023973,292.17648,54.86761,197.03223,1.819265e-05 794,2.5028353,87.86499,34.17869,189.78659,1.0289627e-05 794,1.684091,23.624668,21.383337,139.62305,2.0315365e-08 794,1.0923266,7.472474,21.892403,60.937576,2.5422892e-10 795,410.9003,205.41672,24.146027,58.443634,0.13658933 795,56.532776,242.99342,27.354202,56.698624,0.052388303 795,345.9949,220.52272,22.963898,50.71373,0.016821159 795,378.30582,230.005,27.515198,66.59479,0.009188596 795,258.65262,241.40164,24.807068,50.152496,0.003262682 795,608.343,83.46939,30.629272,148.85632,0.0030175122 795,328.65833,224.34952,35.570465,76.06494,0.0030073312 795,621.63806,179.8047,17.508606,53.034256,0.0027806275 795,298.7264,221.67891,31.017975,73.403915,0.0020465194 795,35.464928,246.68459,27.859604,58.678818,0.001742578 795,243.08789,239.25519,27.061737,53.062286,0.0015664615 795,19.412363,239.50835,23.613993,53.47505,0.001516519 795,370.81583,233.44983,20.218567,48.915253,0.001475569 795,390.9534,212.14684,33.25186,70.45863,0.0010963072 795,363.94803,230.93793,42.463013,155.23416,0.0010872136 795,569.8834,367.48193,68.456665,121.69348,0.00097393285 795,1.8439869,188.69937,18.146769,75.81445,0.0006214276 795,274.11145,227.83133,31.491058,67.96884,0.000587937 795,317.90616,228.80641,26.09433,59.38823,0.00036045056 795,622.07806,45.705666,17.068604,58.671494,0.00032443827 795,611.46765,172.3579,27.679016,134.06145,0.00031174635 795,611.0855,315.8352,28.061157,150.10382,0.0002445662 795,10.063973,224.79616,42.549904,108.84425,0.00023383925 795,223.10417,220.4542,39.728714,102.65106,0.00021337757 795,608.1649,437.92526,30.98175,67.97125,0.00021248651 795,342.3165,246.39088,118.92102,223.77815,0.00019459667 795,169.99661,241.46709,107.892395,225.86589,0.00018477428 795,199.77165,224.65953,39.101654,147.0323,0.00018291183 795,1.3063403,246.6778,18.956987,83.30615,0.000111822286 795,2.726054,143.24664,33.611942,163.15457,8.2151135e-05 795,1.0646664,369.63654,56.695805,125.73093,2.7250198e-05 795,214.9894,243.81339,26.777512,69.26898,2.1112053e-05 795,0.71593994,408.58218,17.129776,93.65976,1.9653955e-05 795,570.313,59.46556,68.61395,259.77496,1.6595113e-05 795,608.5974,0.0,30.549255,67.97699,1.5166966e-05 795,77.31533,232.56995,75.37383,161.85107,1.2564421e-05 795,0.6877409,369.8991,16.51351,72.568146,8.362105e-06 795,1.5021672,230.7497,30.846546,180.00134,6.723653e-06 795,586.7838,3.323203,52.362854,146.51646,2.7660055e-06 795,1.7237508,52.80735,20.598114,147.38171,1.0938355e-07 795,2.7173064,37.86254,60.703682,194.60696,2.7056055e-08 795,1.0630974,12.026072,39.81902,86.142654,2.5590554e-09 796,57.028362,243.18333,26.92471,56.69722,0.039235003 796,411.65872,204.07634,30.574463,67.955,0.037877146 796,612.9396,169.15016,24.94751,56.41597,0.008864789 796,345.7066,219.76668,21.971619,50.487564,0.0071883774 796,261.7521,230.32686,30.730377,65.004074,0.0057277805 796,599.5628,96.705315,39.445496,185.67963,0.0032453605 796,298.83582,222.54881,30.482666,72.81624,0.0026335835 796,23.651293,242.74432,25.592333,57.07843,0.002297936 796,327.49982,218.19762,39.207123,91.75072,0.0018611395 796,455.15497,212.22237,27.842224,53.54857,0.0017316097 796,370.3419,219.72876,35.025116,75.6705,0.001452435 796,569.6,365.80197,68.57654,122.37314,0.0012897123 796,390.6898,214.00598,33.535492,69.14438,0.00078876526 796,281.21646,227.45633,31.971252,69.499695,0.00073674053 796,615.6537,81.83182,23.492981,94.909256,0.00056800625 796,235.57402,236.5292,28.01915,57.90924,0.0005561887 796,1.696067,188.95433,18.434156,75.94939,0.0005318378 796,363.9295,225.32079,56.082794,154.92351,0.00042670645 796,173.39896,258.38757,67.32402,194.4379,0.00028229688 796,608.1111,438.35986,31.035583,67.7576,0.00024497983 796,205.3896,217.49278,40.095642,140.89336,0.00023002322 796,611.0326,315.3076,28.114075,150.64648,0.00021867029 796,351.27985,238.7061,115.658966,236.39162,0.00020902869 796,2.5696192,213.39667,42.898144,134.35565,0.00015958438 796,581.1645,198.45312,25.30597,47.85295,0.00014678153 796,1.3063852,246.81676,18.87913,82.3065,0.00011211133 796,240.15314,216.69516,42.47046,113.91205,8.131554e-05 796,611.5894,212.37523,27.557251,149.16139,6.4658394e-05 796,0.6234196,371.6905,29.010681,128.17972,4.5760913e-05 796,222.32558,247.71495,26.578018,61.84233,2.85468e-05 796,615.53656,13.535863,23.610107,93.35553,2.6900741e-05 796,2.1136444,292.26147,54.753746,194.96667,1.4663823e-05 796,2.5175416,92.14173,33.673275,187.11539,1.1248709e-05 796,1.6358106,53.769356,20.29202,145.45758,1.1699295e-07 796,1.8136231,17.519304,59.674374,121.869,5.270457e-09 796,1.0253174,7.5466475,22.188217,59.905266,3.005129e-10 797,411.85715,208.66565,23.687439,55.079895,0.62758 797,327.94385,217.82713,22.212952,45.189743,0.006234267 797,609.5578,166.23102,29.12024,65.89368,0.004793217 797,258.6553,241.52878,24.470276,49.78003,0.0044210646 797,450.41104,200.57587,37.07834,72.0791,0.002626901 797,36.95056,239.06172,40.534546,69.51567,0.002231805 797,332.35965,213.84499,37.991882,93.83583,0.0022238544 797,298.4483,224.35583,30.42572,70.95224,0.002127403 797,19.157259,239.36487,23.867105,53.43329,0.001916359 797,599.9926,100.864624,39.084106,182.85767,0.0018343349 797,274.1365,227.92761,31.244934,66.67551,0.0016876594 797,403.80634,228.4903,23.572266,49.1326,0.0016296564 797,243.39427,239.48001,26.807358,52.749084,0.0013164995 797,617.47015,193.24072,21.676514,84.243805,0.0012175526 797,610.8806,371.48587,28.266052,130.55673,0.00079174817 797,1.74306,187.26236,18.471115,77.72214,0.0007673194 797,179.65744,255.49501,65.764694,194.30672,0.00059940893 797,615.9438,81.65278,23.20288,94.98403,0.00036451127 797,319.1703,234.11386,26.147339,60.365112,0.0003364223 797,364.6269,215.92183,70.15155,189.04726,0.00033550852 797,10.068428,225.89647,42.405518,106.90718,0.00033101393 797,370.18835,228.61751,19.070618,45.28224,0.00030748357 797,222.62746,218.29156,39.745834,105.60785,0.00019534152 797,382.99362,222.76009,32.899567,66.3669,0.00018755594 797,1.3078955,246.65883,19.049103,82.77727,0.00011320851 797,2.654292,132.6525,34.092632,170.4006,9.667258e-05 797,602.44684,193.88876,36.69983,200.24323,9.1597096e-05 797,0.5614982,357.4899,20.322401,145.41,3.3941957e-05 797,615.7357,14.582823,23.41095,92.33775,2.8441475e-05 797,210.81424,243.71333,25.793503,68.16252,2.3294197e-05 797,1.964611,291.4423,54.590168,195.38214,1.40289285e-05 797,1.6963819,75.823586,18.455841,148.3425,6.490983e-07 797,2.6333659,34.54808,60.647892,197.67023,2.2491347e-08 797,1.7539103,20.69674,31.497673,132.41733,1.0604846e-08 797,1.0407838,7.950303,22.25096,59.433357,2.8719582e-10 798,411.22202,204.6887,24.049103,56.63298,0.213907 798,594.67224,181.39102,24.209717,45.395493,0.036799554 798,612.51483,166.32758,24.97229,57.49826,0.009696634 798,24.486542,238.77722,24.628727,55.372253,0.004093879 798,258.5572,241.61821,23.85794,48.9319,0.0037537946 798,424.27786,207.77943,34.78534,65.95235,0.0025264132 798,42.974842,247.19376,28.040813,58.54138,0.0025148364 798,315.66507,223.22696,34.28122,75.67114,0.0019729384 798,243.13144,238.72188,26.855194,52.846115,0.001833824 798,298.27664,224.38336,30.386505,71.06439,0.0018059347 798,345.31766,220.7215,22.595947,48.592255,0.001729908 798,599.7318,102.76684,39.104553,178.63354,0.001702806 798,274.4836,227.75673,31.164673,66.586655,0.0011549504 798,396.45984,198.49031,23.291199,49.564636,0.0010624176 798,362.85944,237.36014,42.574768,158.3555,0.0008088543 798,179.9524,253.92508,64.61168,198.74393,0.000732885 798,610.9516,365.32776,28.195068,136.72559,0.0007280254 798,1.9301693,185.97511,18.091503,79.11211,0.0007092691 798,356.52997,223.89214,34.35312,81.84813,0.000544825 798,617.64844,192.32712,21.49823,84.63031,0.0005096154 798,384.07205,216.04295,32.983917,72.754745,0.0003951256 798,616.2863,81.8452,22.860352,95.076965,0.0002989123 798,222.97891,219.1811,40.13739,103.354416,0.0002809961 798,2.7222786,156.42177,34.71734,178.03914,0.00020746063 798,346.96,252.43225,114.58685,219.48703,0.00019645857 798,203.38986,225.32207,38.367752,121.37331,0.000110308814 798,1.1935384,246.30095,19.006168,83.829544,0.00010156485 798,24.14883,217.11383,45.39355,123.776794,9.0021145e-05 798,611.1468,277.26123,27.999878,153.06793,5.459904e-05 798,0.3558838,358.4798,30.870966,142.79324,3.874992e-05 798,0.69637775,369.313,16.720375,72.62964,2.1531614e-05 798,75.57661,232.38542,75.69421,161.19994,7.5476637e-06 798,609.45886,1.2503028,29.687805,65.240295,6.6922303e-06 798,1.7002597,83.88835,18.933992,144.35614,1.538422e-06 798,2.6643572,36.953053,60.96157,197.14656,3.2984776e-08 798,1.5342586,20.42627,31.614374,135.9745,1.118705e-08 798,1.0391667,7.666035,21.893244,59.656498,2.9919744e-10 799,57.674408,243.67003,26.305252,55.656937,0.06826089 799,420.66415,210.72981,24.723724,50.037186,0.018289406 799,396.9851,205.50325,22.993011,51.04695,0.010861555 799,612.2036,168.94933,25.055115,57.426193,0.010790953 799,258.64963,241.41946,24.437714,49.69867,0.0040486166 799,28.829193,243.67091,26.24973,55.85283,0.0032579938 799,328.2414,222.64781,34.47174,77.32219,0.0032180517 799,603.32654,119.72558,35.1709,142.40573,0.003051113 799,619.1597,93.72147,19.986938,65.25756,0.002397826 799,456.07376,197.06906,26.406921,53.628708,0.0019468319 799,242.98201,238.87982,27.218338,53.122833,0.0018434469 799,298.22702,224.14828,30.965057,71.40796,0.0014722125 799,274.4923,227.04074,31.076752,67.45459,0.0013037157 799,616.7809,193.95494,22.365784,83.55492,0.00078922574 799,1.8637142,192.90552,18.572453,78.089386,0.00071643374 799,611.1187,341.30106,28.027954,145.08032,0.0005732576 799,347.80838,223.1848,34.94867,82.392685,0.00049530977 799,363.2552,217.03545,70.0972,181.0074,0.00035391832 799,222.77063,219.10933,40.33362,103.445724,0.00029794575 799,9.832287,226.64798,42.50611,105.522095,0.00029396417 799,193.02673,279.29684,53.503876,157.06235,0.00025185067 799,369.41074,220.87987,33.424927,74.524765,0.00023550387 799,608.3559,438.91812,30.790771,66.26898,0.0002241695 799,1.358519,246.20154,18.909014,84.296936,0.00015759707 799,207.70343,231.39217,32.967224,86.58852,0.00012594584 799,616.56305,34.121185,22.583618,94.47252,0.00010138891 799,2.6485376,132.43312,33.442413,173.57454,8.086377e-05 799,602.57007,197.96352,36.5766,206.74901,7.423125e-05 799,0.62956625,358.47797,20.1609,144.53122,3.5905825e-05 799,1.4052962,264.9657,35.752457,210.58817,2.0765288e-05 799,570.55566,62.874664,68.2876,254.94495,1.3204193e-05 799,609.9062,1.3774545,29.240479,67.84325,6.79448e-06 799,2.3421698,413.72885,53.60058,86.663025,6.1208816e-06 799,1.6398828,23.620346,36.32287,172.72713,3.6437424e-08 799,1.8264217,43.76526,20.049475,76.58921,1.0277432e-08 799,1.1654525,8.029808,21.82732,59.751434,1.9965088e-10 800,47.00687,240.34235,36.995472,66.92938,0.012177274 800,613.077,167.82167,25.084473,56.356415,0.008725237 800,2.7522893,183.28346,31.94273,67.85193,0.0047036367 800,268.14767,228.13991,30.832275,66.32155,0.0033287576 800,322.00705,223.40996,33.945465,75.445145,0.0025865408 800,19.303791,239.36372,23.556782,53.23506,0.002439786 800,298.1667,224.3098,31.313843,71.02251,0.0020248252 800,599.9221,101.60415,39.159485,180.44507,0.0014957299 800,341.1038,215.0081,39.63385,101.59569,0.0014080793 800,357.79282,226.3844,41.429108,142.2522,0.0008475755 800,1.4193474,180.82458,13.407185,53.692764,0.00056185795 800,570.3501,365.55566,68.15442,123.12863,0.00053388276 800,616.17413,82.433784,22.972534,93.12595,0.00042408652 800,9.540297,223.42139,42.753235,107.84894,0.00032972597 800,608.2602,438.7939,30.886475,66.58569,0.00025608574 800,345.8455,265.38943,77.83829,195.17392,0.00024597856 800,206.00412,216.58269,39.814484,141.61916,0.00023697616 800,229.5685,218.35417,39.890274,98.84807,0.00022526506 800,611.20996,315.64377,27.936707,151.43027,0.00022236815 800,1.4742017,206.64925,20.58758,138.63115,0.00019244055 800,175.5296,305.65204,73.632095,161.78775,0.00019219865 800,356.4309,226.6061,20.494476,50.560593,7.754612e-05 800,611.52014,212.98679,27.626526,148.94669,5.925952e-05 800,615.72437,15.256146,23.422302,92.11987,3.400465e-05 800,221.96123,247.02815,26.70787,62.90471,2.5858006e-05 800,1.0612419,369.70267,56.915165,125.45062,2.3377743e-05 800,3.8423975,92.231224,57.396454,222.96231,1.9687723e-05 800,0.78777343,406.75598,17.043861,95.38638,1.9555127e-05 800,0.69391847,370.4151,16.518696,70.82568,1.8785404e-05 800,1.8486166,95.561325,19.152763,89.616745,1.0318829e-06 800,1.5652702,22.28435,36.910385,178.7793,2.7763466e-08 800,1.8271892,43.50152,20.097313,77.70798,7.642406e-09 800,1.1078703,7.5483565,21.887697,60.49105,1.5339623e-10 801,57.51497,240.88126,26.592148,52.965546,0.06884181 801,612.99994,173.923,24.59674,52.305313,0.013745856 801,24.85258,237.37927,23.927252,55.057037,0.0057993964 801,352.655,214.68294,37.072968,101.34029,0.0049361787 801,609.82965,91.99391,29.00531,151.79828,0.0048825364 801,258.59656,241.75313,24.446411,49.036118,0.004830025 801,410.07297,203.79411,23.385956,50.250366,0.0038683563 801,2.4508302,189.99359,26.27865,62.674957,0.002577927 801,43.55377,247.00139,28.064754,59.36888,0.0023838084 801,298.35223,224.02074,30.93222,71.98631,0.0017606686 801,274.5531,227.98293,31.072937,67.02208,0.0013097497 801,610.7716,371.6641,28.375061,131.23456,0.0009609354 801,333.4071,219.76889,35.32904,83.791626,0.0008567432 801,374.71567,224.52078,31.527039,78.58917,0.00060712727 801,355.87338,216.62521,67.96005,186.16495,0.00057001016 801,9.787318,218.28288,42.538437,114.91652,0.0004987739 801,193.32327,274.35547,52.941895,161.63895,0.00028590765 801,1.4222941,205.9153,20.452414,139.18553,0.0002617564 801,362.27258,225.80176,19.392181,49.26773,0.0001948946 801,229.77014,217.93825,40.101746,99.78804,0.00015595483 801,255.06548,213.82404,39.966354,110.28299,0.000116254276 801,588.4653,141.56427,50.39044,208.42438,0.00011098331 801,2.724315,127.651825,36.227077,177.56216,0.000103954946 801,209.16692,220.80734,38.789413,119.29611,7.556564e-05 801,616.9502,33.24891,22.196472,95.243935,5.6873676e-05 801,611.3285,276.5672,27.818176,155.94354,5.401113e-05 801,0.60295576,357.9627,20.367504,144.07455,4.0583855e-05 801,1.3743556,258.58606,35.2834,213.05432,2.3007447e-05 801,2.1993523,413.5323,53.297405,86.230286,8.218579e-06 801,609.2101,0.31069335,29.936584,68.072495,6.805868e-06 801,83.52443,231.12979,74.10704,163.927,6.3636776e-06 801,1.7914869,95.252396,19.490505,92.49103,4.5977595e-07 801,1.3890527,17.885313,37.42352,190.47054,1.3590166e-08 801,1.8009148,42.58796,19.833681,78.0679,7.922207e-09 801,1.0165479,7.8190856,22.077835,59.912193,2.5701385e-10 802,353.98032,217.80777,36.995514,78.21753,0.09800438 802,416.97577,197.92097,21.610657,47.652725,0.04921104 802,373.8171,225.0974,19.469269,46.573532,0.040049218 802,400.19736,194.48483,24.035248,52.140717,0.019902954 802,24.547802,236.6282,24.4291,55.730774,0.006700324 802,2.1407952,210.07253,21.026543,51.590897,0.00575688 802,612.9431,169.6986,24.598083,54.70717,0.005088328 802,258.403,241.235,24.538757,50.124496,0.003397829 802,593.7137,186.48555,23.94159,45.67305,0.002901507 802,38.12331,238.97858,38.78603,69.31787,0.0024631547 802,12.144555,222.85258,22.742493,49.391525,0.0023229397 802,360.72156,225.08276,43.053314,154.1773,0.0017608264 802,599.77936,104.99065,39.230225,177.0366,0.0017519526 802,298.34976,224.60315,30.386292,70.77591,0.0017053835 802,242.67352,238.26256,27.458588,54.182144,0.0015009925 802,274.60568,228.44725,31.031769,66.96376,0.0013791037 802,456.34964,191.3005,24.601715,53.924286,0.000896902 802,1.9189812,195.50523,29.136084,150.08315,0.00073317287 802,340.02185,253.08755,108.27591,225.69687,0.0006612828 802,617.4745,194.12122,21.67218,83.10956,0.00060813676 802,311.16544,217.68918,39.953003,85.336395,0.0006039718 802,621.91046,44.97318,17.236206,58.36368,0.0005112305 802,611.13293,342.33304,28.013733,142.59592,0.0004999712 802,616.0419,82.178894,23.104797,93.93562,0.00041318111 802,192.26605,276.24188,53.903122,162.72067,0.00025517007 802,222.90776,218.45221,40.192368,104.91821,0.00021419801 802,608.2554,439.22632,30.891296,66.21686,0.00018932502 802,207.39722,232.5925,32.936203,86.19852,7.860384e-05 802,602.83026,196.45923,36.316406,206.51672,4.6416157e-05 802,0.4761377,360.7677,30.295198,140.10815,2.2529846e-05 802,0.7694011,370.06433,16.365892,70.94693,1.117084e-05 802,610.398,4.941465,28.748657,121.89408,9.771221e-06 802,2.8301597,340.95782,78.208725,147.14551,4.513858e-06 802,3.556416,82.52624,59.337376,232.67938,3.965953e-06 802,1.5486369,75.42395,20.799147,165.91838,5.1705337e-07 802,1.6896273,20.711758,31.532743,134.04324,9.190939e-09 802,0.99086756,7.482487,22.061815,59.90604,2.2622462e-10 803,349.69492,214.47598,36.33383,81.835846,0.1254689 803,58.351257,240.93687,25.72062,53.408463,0.066080034 803,258.45496,241.35019,24.299072,50.141846,0.005723315 803,409.7603,195.65938,23.613983,55.73239,0.0046027824 803,18.903112,231.46709,24.04754,50.24614,0.0037257914 803,307.99,219.58493,32.980865,72.02698,0.0023234934 803,274.07513,227.371,31.315155,67.745605,0.0020821714 803,35.99438,246.96071,27.004353,58.011032,0.0018158751 803,609.95795,93.94718,29.032776,148.35837,0.0017344409 803,395.7798,195.92848,24.149017,53.712387,0.0010226727 803,569.7706,367.052,68.54132,121.691956,0.0009408041 803,327.40344,226.71225,34.29944,76.70245,0.0008313113 803,1.8731185,197.89017,18.9123,71.444824,0.0007121707 803,9.917086,221.40323,42.37223,110.27164,0.0005134908 803,621.4542,156.05301,17.692444,61.66626,0.00046077886 803,173.39264,259.91623,67.43497,195.78976,0.00034146017 803,355.84668,235.50603,42.882294,156.23463,0.00033884172 803,229.78914,217.26137,40.32869,99.64757,0.00029378003 803,201.0481,213.25352,38.140945,150.08556,0.00028802096 803,456.59918,196.17679,24.57074,51.518845,0.0002735993 803,608.20154,438.76755,30.94513,67.17224,0.00023182866 803,611.1102,309.10794,28.036438,152.28946,0.00017029842 803,1.2709131,246.10582,19.014896,83.0529,0.00015520702 803,611.6124,206.05983,27.53424,146.42238,0.00013421911 803,355.87317,268.85498,90.05325,199.50275,9.0679256e-05 803,2.607264,130.0489,36.914284,177.2972,8.696265e-05 803,46.75521,193.60881,26.855324,58.43016,7.171585e-05 803,616.41516,26.967026,22.731506,93.72613,3.671436e-05 803,1.0711784,369.42676,56.99234,126.42816,2.620481e-05 803,0.76012206,405.92273,16.837498,96.70587,2.0079206e-05 803,0.67302084,370.70477,16.58017,70.87048,1.3406708e-05 803,600.9529,4.69347,38.193787,68.68141,2.3370737e-06 803,1.5463054,70.538345,20.719933,166.87567,4.2645297e-07 803,2.2910905,38.279774,61.08477,212.52148,4.1225196e-08 803,1.7845378,39.058064,20.061493,74.76889,1.6773296e-08 803,1.0272242,7.5536137,22.242887,60.15879,2.7098482e-10 804,344.03418,217.74144,37.05902,81.93767,0.08647672 804,57.55448,242.70238,26.856705,56.61061,0.06768325 804,414.84833,205.5696,22.368042,47.669525,0.03655928 804,24.51352,236.587,24.542881,55.608673,0.009354988 804,258.66418,241.64117,24.206787,49.14499,0.003174849 804,4.748519,204.19176,24.997963,50.056473,0.0025793975 804,608.5972,84.86015,30.479431,148.83116,0.0023925789 804,35.92594,246.52907,27.259583,58.229446,0.0019405517 804,274.64127,228.30896,30.864105,65.884705,0.001424093 804,303.87833,221.21394,31.285248,69.73207,0.0013265667 804,456.92657,188.23851,32.876617,64.220795,0.0011754831 804,243.22743,238.81134,26.950851,53.424072,0.0010692196 804,611.4733,174.40466,27.67334,131.9719,0.0006645106 804,611.2609,370.79837,27.885742,131.49509,0.00064698636 804,621.27765,155.94156,17.869019,59.930542,0.0006054482 804,360.1442,237.54094,44.391815,159.65257,0.00045441583 804,2.8718832,211.07484,42.94572,134.53877,0.00034297482 804,223.06569,217.45137,38.487015,102.859055,0.00030622608 804,162.6306,244.61496,110.186264,225.41504,0.00023504144 804,199.87624,224.25891,39.166977,146.51111,0.00021036496 804,1.2792969,245.85745,19.087008,82.73346,0.00014614683 804,355.55536,266.8057,91.326324,203.0264,0.00011839928 804,0.26810548,353.70703,31.272081,148.0123,7.728271e-05 804,616.8845,33.837437,22.262146,95.94629,5.4741427e-05 804,611.02106,275.166,28.12561,155.52097,5.459274e-05 804,0.61707604,367.37814,17.482386,74.89935,4.416399e-05 804,571.80554,77.25202,67.058044,236.3812,3.191673e-05 804,81.72964,226.97826,75.53245,169.21736,1.0108812e-05 804,610.1539,1.7856022,28.992798,65.18997,7.031935e-06 804,1.9185361,113.629036,20.229132,149.32394,6.765745e-06 804,3.435853,74.78613,61.26709,229.93842,6.377929e-07 804,1.759454,23.861485,21.391142,139.08813,1.0841847e-08 804,1.1128776,8.011465,21.792133,59.61972,1.9882626e-10 805,414.07812,201.6621,22.526886,50.749664,0.5094354 805,58.008698,240.90694,26.331673,52.863358,0.05859989 805,404.3146,198.08722,19.811646,46.62062,0.030326355 805,347.59128,219.67279,24.521423,55.51364,0.02917058 805,614.3451,178.488,23.249084,48.031036,0.010687217 805,24.566305,237.82271,24.35966,54.304337,0.006014484 805,427.94156,196.89755,21.209747,50.384384,0.005015257 805,258.6372,241.89998,24.42331,49.196762,0.0049318406 805,13.052955,232.17917,22.670471,47.38095,0.0021034065 805,456.78485,188.10077,32.146973,64.47119,0.0020353107 805,610.7863,94.23651,28.296265,148.11021,0.0020164605 805,43.38522,247.55522,28.208378,58.89415,0.0018651445 805,327.60736,222.78267,35.01709,77.0854,0.0018239174 805,618.0768,194.75229,21.069885,80.52658,0.0015655294 805,243.31183,239.22229,27.118164,53.18091,0.0015622274 805,308.525,225.46661,32.097107,71.54559,0.0010657766 805,274.21637,232.32964,32.085693,66.17229,0.00094069727 805,610.7966,364.97412,28.350098,137.8937,0.00068524614 805,391.13782,187.13962,22.870483,53.32666,0.00067131914 805,10.264826,222.0486,41.983154,109.89513,0.00052111223 805,356.06378,243.65953,43.609863,149.32289,0.0004891772 805,205.4635,218.0577,39.795517,139.00981,0.00034752276 805,1.7757015,199.23444,18.862148,71.607056,0.00033493305 805,181.44775,258.82068,73.71355,198.03036,0.00020266949 805,1.3422039,245.63324,18.892736,84.00806,0.00018956367 805,225.66432,231.12204,34.729263,79.28418,0.00018311481 805,354.70007,272.01016,92.09198,198.85214,0.000106116546 805,602.6445,194.1974,36.502197,195.94072,0.00010091856 805,616.83374,32.364326,22.312927,95.32982,4.9028364e-05 805,572.5697,82.85515,66.15845,231.00975,4.7311416e-05 805,0.623466,359.44003,20.35139,142.42743,2.9791348e-05 805,2.2202377,295.54626,54.553864,186.70395,2.1938162e-05 805,609.293,0.8490527,29.853638,66.83331,9.671521e-06 805,2.4652312,88.45939,35.465595,197.62671,9.562182e-06 805,83.20813,229.94044,74.821335,166.39143,7.310271e-06 805,1.951819,54.707397,22.207039,128.1132,3.717658e-08 805,1.7302637,18.910385,58.977787,119.49855,7.2730435e-09 805,0.9978573,7.604675,22.157991,60.270874,2.6329955e-10 806,414.27823,202.80461,22.729736,49.729385,0.16809888 806,404.82153,199.75844,19.24649,45.308853,0.01876535 806,347.1546,219.93402,24.010681,52.22519,0.014310462 806,24.258945,237.57288,24.575363,54.44806,0.006266321 806,258.64923,241.67142,24.21164,49.169464,0.0038895044 806,608.9007,84.55243,30.174133,148.14674,0.0035531982 806,427.32318,199.08105,22.19104,49.158875,0.0031355768 806,613.39844,171.4212,23.732056,53.936646,0.0031132363 806,12.758124,231.49402,22.881409,47.375977,0.0024757686 806,38.5014,238.8922,38.22829,70.38365,0.0022774225 806,326.47427,222.63423,34.977234,77.299576,0.0020854403 806,457.0562,192.31711,22.19635,46.380325,0.0017047072 806,298.05853,224.81894,31.595703,71.09485,0.0012416185 806,274.61023,228.34561,31.053833,66.360504,0.0012018229 806,342.74915,208.67784,40.481445,116.37157,0.001030279 806,1.7284799,203.41405,19.061455,72.769,0.0007837713 806,570.3996,366.07047,67.95648,122.33627,0.00075789104 806,360.4727,243.21057,43.289734,153.37997,0.0007571137 806,9.991975,222.58394,42.471626,108.36311,0.0005355002 806,4.0870023,189.64674,24.971352,45.768158,0.00043435008 806,174.7693,306.2009,74.17427,161.37527,0.00040502846 806,608.1676,438.2869,30.979065,67.364746,0.000249174 806,229.66225,218.3535,40.092667,98.73265,0.00020693461 806,611.3385,308.5708,27.808167,153.71603,0.00015337247 806,201.42346,214.95793,38.00496,149.71709,0.00014786814 806,1.2931267,245.56235,19.06936,84.40372,0.00013631869 806,354.32974,273.3906,92.26022,200.96649,0.00013450973 806,612.0829,206.96829,27.063782,146.30576,0.00010560682 806,2.443418,130.53671,35.944405,177.4714,8.935348e-05 806,0.81150717,367.7649,57.05646,127.703125,3.8946124e-05 806,616.6458,26.24291,22.500854,95.349594,2.7075808e-05 806,0.65042484,368.68375,17.094685,73.72705,2.4591847e-05 806,0.72687095,403.8407,17.017616,99.13333,1.9656092e-05 806,210.469,245.04259,25.328308,65.2823,1.597895e-05 806,76.167816,230.74277,76.069244,162.49838,1.1369481e-05 806,610.0273,1.4815658,29.119385,65.69605,8.206016e-06 806,1.7194532,94.09021,19.69123,92.2413,4.6890682e-07 806,2.2429883,36.254475,61.119072,210.24493,4.253577e-08 806,1.7628305,21.175196,31.672007,130.629,1.2148872e-08 806,1.0596354,7.8196616,21.976599,60.010174,2.0928784e-10 807,414.33258,202.82529,22.867523,49.35475,0.13484405 807,347.25272,219.99716,23.886902,53.382782,0.03861393 807,427.3755,197.46701,21.349426,50.02083,0.0073009157 807,23.966726,237.79266,24.787828,53.682434,0.0070603853 807,612.6885,166.61536,24.966492,59.283813,0.0055942563 807,38.77212,238.84381,39.00886,69.96655,0.0042814007 807,258.5435,242.16476,24.346405,49.806335,0.0041059996 807,12.759671,232.66258,22.858997,46.38176,0.0027903074 807,327.46768,221.84256,35.014862,78.02219,0.0023307705 807,603.5255,117.47877,35.20453,147.65863,0.0017728993 807,242.9415,239.29779,27.240417,53.363342,0.0016835718 807,298.38156,223.7626,30.710266,72.206726,0.0015809886 807,274.2361,227.859,31.23172,67.664474,0.0014649829 807,615.6878,83.11925,23.458862,93.91466,0.0008406774 807,1.720201,204.8329,18.917868,71.416336,0.0007836263 807,610.3265,202.35707,28.82019,154.63875,0.0007243266 807,180.45665,252.80162,64.38617,195.79652,0.0006069131 807,356.13733,245.48312,43.977997,148.60379,0.00059226406 807,2.9081707,213.70729,42.955956,131.94511,0.0005010365 807,393.57986,172.8464,25.157806,62.906418,0.00041894914 807,345.0746,259.83075,114.53818,225.3367,0.00036949065 807,621.4951,140.88692,17.65155,61.13199,0.00032709763 807,222.94048,219.1374,40.152176,103.63179,0.00028377146 807,1.319563,245.20636,19.142904,84.08615,0.00021395345 807,612.1208,376.32864,27.025879,120.64575,0.00017446131 807,207.3818,232.57974,33.18779,86.24332,9.94683e-05 807,40.845757,203.10703,23.620056,53.805145,6.5043205e-05 807,567.74384,341.6039,68.70715,148.99286,5.3170123e-05 807,570.91296,66.53059,67.5741,268.7836,4.21472e-05 807,0.9475635,368.49625,56.576405,126.1969,4.1764684e-05 807,616.2207,26.147758,22.925964,95.10996,3.9002472e-05 807,0.71103436,369.9698,16.570219,71.20096,3.0957537e-05 807,0.7239234,405.80908,17.410847,96.57562,2.3006614e-05 807,2.3524072,92.846794,34.78837,196.94766,1.7147426e-05 807,78.95569,228.47464,72.81586,166.60294,9.512864e-06 807,1.6719043,92.90886,19.785873,94.52925,9.780167e-07 807,1.8017042,21.249798,31.560444,131.78294,2.0182583e-08 807,1.1216456,8.006234,22.037096,60.13144,2.1900193e-10 808,347.45822,218.71333,24.310486,55.468094,0.08690163 808,413.11435,197.75836,24.882996,57.549225,0.07825185 808,57.395107,242.76083,26.729832,56.069305,0.05444576 808,487.91663,234.92204,26.41687,49.46785,0.013067172 808,404.48013,198.89357,19.623413,46.608368,0.012122243 808,24.628582,237.34534,24.483334,55.023346,0.010120094 808,258.5287,241.27623,24.605682,50.190445,0.004885378 808,621.8365,179.03613,17.31018,52.124893,0.0039493474 808,12.811981,231.77727,22.9183,48.406937,0.0030863623 808,308.06558,217.9642,32.740753,73.91141,0.0026595488 808,455.15823,195.86737,28.931152,59.33943,0.0026188118 808,35.870544,246.48738,27.314716,58.091934,0.002448723 808,610.0021,93.62183,28.954468,145.94281,0.001966128 808,242.882,238.62016,27.494278,53.971878,0.001692148 808,327.36377,220.70401,35.865417,80.483795,0.0016495549 808,274.39325,227.7071,31.077362,67.45039,0.0013090753 808,427.29584,197.46579,23.418854,52.50453,0.0012493174 808,611.33325,170.6621,27.813416,150.21931,0.0012215279 808,469.41528,232.61803,25.972961,52.854935,0.0011066517 808,1.7469906,202.6305,18.943447,73.66135,0.00088800734 808,611.0749,373.13535,28.071777,131.22232,0.00044966218 808,2.8533561,210.90135,42.61406,133.64601,0.0004385067 808,174.74084,304.69348,74.7207,162.2721,0.0003285733 808,4.311531,188.63168,24.195452,45.893143,0.0002918282 808,195.17639,224.7204,38.262527,151.39316,0.00028283827 808,222.97511,219.59503,40.331863,103.978516,0.00021596138 808,345.804,269.12573,77.10065,195.67245,0.0002082976 808,1.2879525,245.39703,19.022703,83.86075,0.0001709206 808,585.61694,220.25923,52.34027,259.92792,0.0001462645 808,247.90092,212.88908,40.96321,113.0226,0.00010911917 808,616.4463,25.415283,22.700378,93.927635,3.578399e-05 808,210.49141,245.21147,25.608551,66.7354,2.3106706e-05 808,1.1223161,369.685,56.904705,126.655426,2.2659175e-05 808,0.73702395,406.74042,17.059334,95.63568,2.025905e-05 808,2.4182928,87.58791,34.876003,198.39758,1.05406925e-05 808,84.62558,230.02594,73.58649,165.08395,7.4615373e-06 808,1.3540405,309.8522,20.926514,166.21469,5.425926e-06 808,1.9418596,52.672424,22.64745,130.64409,2.3397428e-08 808,1.7195802,18.897558,59.326057,119.59635,7.314919e-09 808,1.0552075,7.501423,21.736004,60.519413,1.6241816e-10 809,347.3683,220.40944,23.638977,51.70598,0.026623081 809,24.517029,237.26001,24.442432,55.154022,0.007213978 809,413.59833,200.47334,25.644958,65.10469,0.005301023 809,612.9531,168.72305,24.849426,56.8024,0.0042136246 809,258.43832,241.08003,24.981018,51.06633,0.0038974907 809,599.8384,95.855995,39.223694,187.07874,0.0026503734 809,429.1863,213.92783,24.234589,49.86212,0.0025171833 809,619.29364,93.72232,19.853027,67.05109,0.0025054624 809,327.288,222.65056,34.494843,76.47438,0.0022950629 809,38.45394,238.58662,38.585114,68.44713,0.00227815 809,273.68005,227.66147,31.640564,67.82495,0.0013365783 809,342.8735,210.68764,39.13199,112.35637,0.001314249 809,298.20996,224.13295,31.245667,71.62578,0.0012629413 809,236.81587,226.98087,26.37709,53.5412,0.0008532451 809,1.6928337,203.90472,18.893408,72.35748,0.0007761073 809,611.1802,371.23737,27.966492,131.64874,0.00064483413 809,347.67892,245.83711,114.691345,233.2228,0.00044525246 809,2.745879,213.25839,42.485886,132.67667,0.00040165882 809,363.922,248.95532,41.483704,132.21417,0.00033908288 809,396.3812,202.65271,23.927338,55.051514,0.0002981868 809,201.85449,215.42,37.87465,145.82838,0.00027239858 809,174.89005,304.70807,74.387924,164.90778,0.00023638661 809,1.3409066,181.51988,13.383774,49.150024,0.00020508468 809,1.3523372,245.62495,18.886986,84.10753,0.00016498554 809,218.18796,232.65558,33.877884,85.26691,0.00012232472 809,248.06754,212.62027,40.867126,113.872925,9.9476834e-05 809,603.0835,193.61362,36.06317,196.94135,6.552897e-05 809,610.0951,19.248373,29.051575,158.60614,6.2062114e-05 809,41.279064,204.33447,23.217083,51.762787,4.7203976e-05 809,494.69513,174.05095,71.53583,166.70943,4.3234304e-05 809,0.8127857,409.0403,16.929386,93.440125,2.3153558e-05 809,1.4141114,373.53625,56.792744,122.71762,1.6171345e-05 809,0.79494876,372.76907,15.606348,67.844696,9.365543e-06 809,83.57765,230.51521,74.263336,163.48955,7.576091e-06 809,610.2292,2.28972,28.91748,68.07545,6.899557e-06 809,1.5420109,77.94821,20.5499,160.65912,4.930813e-07 809,3.0231154,65.89663,60.926014,233.00378,4.72044e-07 809,1.7165804,21.413393,31.386124,129.02911,1.1479746e-08 809,0.9973706,7.72279,22.14534,59.702335,1.9946667e-10 810,57.94531,240.85469,25.790775,53.23494,0.07040728 810,411.13782,198.88321,22.804626,52.16823,0.01198262 810,337.80786,219.99211,34.83969,82.10957,0.008999005 810,258.63007,241.36456,24.289307,49.91452,0.0039302306 810,613.3447,171.4266,24.724182,53.390686,0.0031238534 810,19.11136,237.82484,23.911745,53.92241,0.0030834705 810,43.447834,246.85712,28.261677,59.2482,0.0026358196 810,298.6002,222.67906,31.315125,72.78673,0.002199928 810,274.35126,227.10667,30.99115,67.53313,0.0016768706 810,620.1629,93.75598,18.983765,63.281326,0.0015274876 810,600.33856,103.34097,38.783325,183.59915,0.0013347033 810,312.44388,217.59251,39.235474,89.34584,0.0011457485 810,611.423,370.40616,27.723694,132.09613,0.00079778745 810,10.242641,221.57141,41.841278,109.7576,0.0006469901 810,1.6917481,205.45886,18.773685,70.11691,0.0006087855 810,396.15994,193.88786,23.727386,52.399384,0.0005683421 810,354.378,232.36626,59.36093,158.42339,0.0003589005 810,175.50943,303.25812,73.60011,163.43866,0.00034819686 810,622.021,45.645256,17.125671,58.530075,0.00028781116 810,229.71439,217.21768,40.009552,100.49994,0.0002031825 810,1.2513038,245.52524,19.142124,84.459564,0.00015862359 810,205.96948,219.1461,39.507812,139.15092,0.0001398821 810,586.1206,231.58371,52.86975,258.05527,9.065091e-05 810,611.5548,214.72025,27.591858,147.8971,6.751165e-05 810,610.1382,14.724584,29.008484,162.86389,2.6646481e-05 810,0.6970459,358.15814,20.268173,145.51172,2.410061e-05 810,2.3120363,296.56815,54.54745,189.98926,1.7764884e-05 810,2.424188,88.115685,35.02411,198.88953,8.336339e-06 810,1.7724073,94.614655,19.49656,91.853745,5.942696e-07 810,1.8428565,44.244087,19.774961,76.308,8.155853e-09 810,2.0714746,19.672071,58.982574,119.14105,6.2043863e-09 810,1.1325643,8.047699,21.573559,58.43479,1.0546822e-10 811,57.64231,242.53242,26.571701,56.37236,0.04269284 811,411.17722,202.37897,22.818085,51.53003,0.020079728 811,350.7002,224.42017,24.650848,57.59247,0.016881397 811,258.60855,241.55092,24.619873,49.82341,0.005969247 811,593.3122,189.01582,25.094421,45.437958,0.0053233025 811,608.5123,82.65377,30.570618,148.22415,0.003982634 811,615.41516,386.4222,23.731506,111.71979,0.0031132542 811,587.3268,213.47736,49.569214,238.39307,0.0029710345 811,18.968111,231.00806,23.39277,48.686157,0.0028548636 811,307.87866,220.23485,32.61496,72.06996,0.0026145051 811,274.20694,227.95471,31.092926,66.84177,0.0021363911 811,242.94469,238.71255,27.245285,53.837463,0.0017372817 811,327.32666,223.22537,33.921173,76.2699,0.001493166 811,35.878963,247.38948,27.337143,57.45381,0.0014574899 811,348.82877,285.687,67.08304,151.43414,0.0012490457 811,1.7207675,200.60567,19.111284,75.243546,0.0010508497 811,617.1995,170.6197,21.947144,76.068924,0.0008415565 811,608.66327,200.22113,30.375427,138.73752,0.0007615114 811,371.46127,239.33607,40.438934,132.20387,0.00053817785 811,9.787494,221.37425,42.256996,108.72472,0.00040963865 811,192.463,274.95557,53.18756,161.00906,0.0002812368 811,613.9827,278.9995,25.16394,99.59805,0.00017925925 811,1.2772763,245.80719,19.048967,84.32266,0.00016585145 811,222.8354,218.78987,39.891983,105.01848,0.00016496667 811,207.3873,231.64221,33.197342,87.78766,5.3435473e-05 811,0.6543677,358.82965,20.358479,143.79855,4.971679e-05 811,2.1492026,299.35135,54.46296,187.63867,1.8372899e-05 811,511.93127,248.36969,79.547485,182.12344,1.3985779e-05 811,1.5387573,233.84923,30.364847,187.14339,1.3423596e-05 811,2.437762,91.620346,35.019928,194.35204,1.0842773e-05 811,609.684,1.4093164,29.462646,65.52086,7.790267e-06 811,1.9053614,55.469345,22.315325,128.28494,3.6345316e-08 811,1.7828028,18.778263,59.1566,120.15849,8.977379e-09 811,0.99170005,7.6151857,22.27995,59.489025,2.2335883e-10 812,58.24706,242.60896,25.657368,55.093674,0.093114786 812,347.5378,219.7669,24.189972,53.559113,0.034248028 812,410.34286,201.75252,23.448303,52.02408,0.025007086 812,612.62805,165.51285,24.92456,59.168747,0.009831142 812,258.56738,241.66237,24.185028,49.258255,0.0035909624 812,35.728256,246.31165,27.373241,58.100616,0.0028900302 812,19.142757,237.63454,23.998367,55.034927,0.0026914058 812,326.78912,221.70099,34.395752,78.200165,0.002543774 812,600.0336,107.253365,38.842896,183.93729,0.0019089173 812,272.06888,239.4187,23.43518,51.54001,0.0017579476 812,298.21997,224.31348,31.586792,71.39261,0.0013984948 812,243.09183,238.9429,27.11325,53.525238,0.0010732876 812,1.6812044,203.75024,18.627731,71.870575,0.00060631376 812,351.5911,243.548,26.105774,61.954987,0.00059847673 812,10.195658,221.60724,42.241653,108.97504,0.000499832 812,616.3775,82.43489,22.769165,93.50241,0.0003517594 812,194.90562,223.28958,38.25876,153.22913,0.0002540381 812,361.68552,240.59761,44.507935,157.93605,0.00022782649 812,587.85657,207.86906,49.625916,226.63829,0.00020114255 812,172.5796,265.2582,69.52644,193.14066,0.00018385887 812,223.00282,219.01115,39.678513,104.43294,0.00016843287 812,1.239939,246.03618,18.977278,83.79689,0.00016254916 812,612.68445,326.12698,26.46222,150.77106,0.00015014358 812,608.71124,438.69266,30.435425,67.17438,0.00014815526 812,2.5957894,130.06593,34.945908,176.8478,8.2939834e-05 812,0.9365869,368.3501,56.861748,127.78079,2.8064798e-05 812,616.72156,26.67544,22.42511,94.1027,2.1271917e-05 812,468.52365,233.86526,85.26846,180.45035,2.017191e-05 812,0.7490983,406.30618,17.077097,96.2681,1.9692454e-05 812,0.73580486,369.90823,16.703583,71.939575,1.3949441e-05 812,1.4402548,228.27701,31.160633,184.2598,1.195405e-05 812,83.96095,232.04366,74.34259,162.33015,8.306278e-06 812,609.5003,1.4100912,29.646362,65.32663,7.2255725e-06 812,1.5482211,63.077488,20.036783,163.95583,3.8442985e-07 812,2.5593848,36.71241,61.105255,208.08722,6.9825845e-08 812,1.7734604,38.733868,20.24921,74.51846,9.643123e-09 812,1.0655745,7.305202,22.10417,60.6098,1.7206715e-10 813,57.73913,242.79875,26.27388,56.19551,0.03909442 813,347.51913,220.61394,23.716095,52.215225,0.024673106 813,410.44254,198.76874,23.022491,53.0338,0.017073987 813,492.40054,243.95161,25.680817,50.137924,0.013684166 813,599.1173,109.24357,39.32794,188.06317,0.006303366 813,258.51895,241.6534,24.17508,49.840683,0.0045359526 813,396.89203,202.50768,22.3844,48.15236,0.0032558753 813,352.71667,229.61003,32.446716,75.23549,0.0032445467 813,615.73285,203.93826,23.413818,91.25415,0.0031360197 813,19.41963,237.62186,23.66181,54.576263,0.0026330936 813,303.6711,222.39828,31.34729,69.23004,0.0025936964 813,320.9525,222.96085,33.12668,75.099304,0.002406857 813,35.63063,247.03183,27.380184,57.56842,0.0019137382 813,609.3775,158.32846,29.619751,71.83426,0.0018251947 813,242.9407,239.09915,27.358826,53.56256,0.0017515449 813,274.09467,228.27055,31.211182,66.47078,0.0015255093 813,1.8713257,200.4574,18.716457,75.53168,0.0011457889 813,615.88776,83.21071,23.258911,94.663345,0.0005481344 813,10.269077,222.6698,42.003265,109.07559,0.00046054603 813,354.972,231.69566,58.516663,156.61852,0.00042329574 813,223.11472,218.80086,40.326996,103.96727,0.0002307652 813,194.67378,220.92825,38.940308,154.07669,0.00020631528 813,608.3708,438.98044,30.775879,66.71677,0.00018315393 813,182.69075,259.3868,72.9677,199.37738,0.00015086972 813,1.3569483,245.79892,18.924877,84.53162,0.00014293025 813,493.5423,227.3167,74.450195,174.58101,0.00013869164 813,586.60333,199.6098,51.651794,234.05682,0.00010327353 813,612.46466,318.3073,26.682007,142.59363,9.242437e-05 813,2.6160858,131.85023,37.22624,175.36232,8.625324e-05 813,573.0004,366.7281,65.66925,127.51651,6.168089e-05 813,441.6924,201.61754,75.02719,170.64699,3.2240518e-05 813,615.78455,16.389833,23.362122,89.319534,3.1787145e-05 813,0.691189,359.7444,20.183344,142.4024,2.5903517e-05 813,210.89871,244.17139,25.107697,65.58533,2.4433817e-05 813,1.6650805,232.06374,30.528568,185.9474,1.8851986e-05 813,83.577156,232.28441,74.34577,160.71361,7.222128e-06 813,3.1624904,341.70026,77.841095,145.63745,5.302722e-06 813,1.5512818,69.79258,20.36652,164.15305,5.3967966e-07 813,2.5528908,37.05099,60.82534,208.23877,5.5578138e-08 813,1.8218002,20.98058,31.936737,131.53763,1.0897202e-08 813,1.0859741,7.7274547,22.13542,60.4748,1.5725872e-10 814,58.47491,240.21735,26.048725,53.416443,0.04604435 814,409.82687,202.14159,24.079285,52.697296,0.028851978 814,347.00375,220.67836,24.22348,52.15251,0.023655517 814,352.34457,229.70753,32.852478,75.94496,0.0048641707 814,258.56918,241.73286,24.505127,49.73503,0.004277936 814,18.912563,230.95773,23.23523,48.67209,0.0032398559 814,584.632,110.5561,52.2099,210.02158,0.0031772295 814,326.95193,222.51782,34.63977,77.77673,0.0025146396 814,243.15857,239.63841,27.075409,52.7834,0.0019023584 814,609.42786,157.11697,29.321838,74.20871,0.001863093 814,298.51794,224.43587,30.838104,70.81645,0.0018418055 814,274.54654,228.61203,30.818817,66.306,0.0015102667 814,35.70856,247.3231,27.565197,57.26262,0.0013747745 814,610.9847,195.50427,27.898376,143.91919,0.0011782328 814,1.7168156,204.48495,18.72775,71.448425,0.00059226406 814,611.6894,372.97382,27.457275,129.8511,0.0005664331 814,2.648973,221.46722,37.460293,109.08014,0.0005604623 814,616.1047,82.83828,23.041992,93.17568,0.0005091029 814,625.29956,162.08179,13.847107,45.46106,0.00040349472 814,361.0314,235.17224,45.228485,153.52063,0.00038222643 814,205.63654,220.24358,39.69043,134.86665,0.0002945535 814,175.45622,303.88275,73.836914,164.25955,0.00018989498 814,355.79443,263.72775,89.73767,205.74704,0.00013417163 814,481.09543,218.0719,74.941864,183.48697,0.000104124614 814,226.32701,217.11847,43.875656,117.57788,0.00010038065 814,23.76988,215.862,45.68421,122.52066,6.608563e-05 814,222.31578,247.2266,26.538391,62.477478,4.59302e-05 814,1.6654452,159.91129,18.479067,69.9091,3.0097704e-05 814,0.65953207,378.9864,28.334091,122.16809,2.8848284e-05 814,615.72296,14.082936,23.423706,92.09489,1.7612889e-05 814,2.2369108,299.34586,54.754887,185.79337,1.5472906e-05 814,2.4373405,98.66201,35.126175,189.10623,1.5456757e-05 814,0.65875655,370.5331,16.57319,70.72128,1.3331586e-05 814,1.8344052,95.26842,19.616838,92.89049,8.5747513e-07 814,1.8516179,18.452826,59.264877,120.83083,6.1708096e-09 814,1.1133765,7.8162436,21.787334,58.683918,1.3590672e-10 815,57.57258,242.94948,26.314148,55.91249,0.060242414 815,410.9199,197.48363,22.97754,52.55948,0.011383654 815,344.25403,217.78401,38.117065,91.97041,0.0054256245 815,613.2865,168.82143,24.775879,55.57852,0.0052190013 815,258.45773,241.61209,24.645874,49.80139,0.00493217 815,397.01187,198.2726,22.417267,48.971054,0.004774343 815,584.7152,109.605,52.173218,208.70718,0.003766165 815,19.326471,238.13237,23.573431,52.684586,0.0034491303 815,314.49048,223.22762,33.861023,74.84459,0.0021249838 815,243.04597,238.34499,27.22139,54.36653,0.002089603 815,35.747772,247.54347,27.26408,57.156937,0.0015554248 815,611.2561,192.06157,27.69696,146.5211,0.001226842 815,274.4795,228.76698,30.919647,66.070145,0.0010826011 815,616.1664,67.18086,22.980286,90.660355,0.00077034003 815,9.956081,222.60004,41.977234,108.488525,0.0007380246 815,1.6880835,203.92165,18.9801,72.46422,0.0007008582 815,611.66797,372.4784,27.478699,129.94531,0.00054169784 815,173.78221,256.30783,66.89108,197.5029,0.00039139323 815,371.3056,239.23647,40.017273,131.66579,0.00036518733 815,226.14058,229.03162,34.34944,80.38776,0.00028962846 815,300.2954,236.02618,25.55719,55.97513,0.0002827398 815,201.26248,215.20587,38.0287,148.80927,0.00024780567 815,1.3143514,246.14925,19.01905,83.29796,0.00022738284 815,346.46548,268.53015,77.05066,191.82547,0.00019278863 815,247.75352,212.56917,40.55327,113.86696,0.00012439168 815,2.0130649,237.2012,34.55096,211.87094,4.4599223e-05 815,503.67773,237.89932,41.942932,137.19684,4.0637693e-05 815,0.51315266,360.72385,30.534964,140.21725,3.1583662e-05 815,615.7664,15.542302,23.380249,90.38848,2.3548877e-05 815,0.7217692,369.84354,16.393713,71.59491,1.7260074e-05 815,2.4378743,87.74492,35.137882,199.09511,9.581607e-06 815,1.9013737,74.67768,19.78366,90.34188,2.7315903e-07 815,1.9564421,19.797142,58.934795,118.54586,9.226593e-09 815,1.1395761,7.6085844,21.93352,59.58852,9.6530506e-11 816,607.24316,336.9147,31.533997,87.4317,80.0417 816,57.601227,243.22485,25.868248,53.535187,0.15038735 816,413.3591,201.71133,23.81726,54.355072,0.01259454 816,346.92212,228.01266,32.67502,74.75656,0.007201743 816,586.9204,279.41574,51.819458,199.2341,0.0043475926 816,258.55493,241.16243,24.701508,50.171432,0.0041567357 816,622.03046,179.47575,17.11621,52.313995,0.0039901794 816,609.6051,98.93737,29.541565,129.20255,0.0028304278 816,24.138548,234.20308,36.105034,64.578384,0.0026671176 816,326.45938,222.73521,34.838135,77.445145,0.002663506 816,242.93735,238.47844,27.230225,54.03569,0.0015257886 816,274.61313,228.60945,30.864014,66.17732,0.0014317542 816,584.15515,101.27206,53.761353,254.54492,0.00092874625 816,2.7415593,223.73865,37.200123,106.861664,0.00091767835 816,611.04785,167.9049,28.098816,144.52063,0.0008756728 816,300.56717,235.22922,25.856873,56.7601,0.0006532994 816,1.6992855,205.0386,18.845291,71.40054,0.00058938935 816,361.7821,243.23053,44.282593,154.26312,0.0005833422 816,395.5353,190.6069,23.65268,55.431274,0.0004219613 816,173.56816,256.52777,67.64,195.39319,0.00032459147 816,621.8389,45.488216,17.30774,59.309505,0.00025666808 816,608.577,433.7088,30.569641,71.83069,0.00022482722 816,223.21326,218.65923,39.79492,104.39729,0.0001705409 816,615.52246,251.68565,23.624207,100.56886,0.00010595959 816,207.56436,231.39998,32.83371,86.41206,6.749389e-05 816,0.9871094,367.631,56.679142,128.2955,3.308519e-05 816,458.88934,217.8487,81.290405,182.0083,2.930163e-05 816,0.77179366,407.59882,17.32773,95.14969,1.8845516e-05 816,2.4091716,93.91289,35.182213,195.45305,1.4253399e-05 816,0.7347803,369.42813,16.704517,72.41864,1.2689465e-05 816,610.20026,2.9051955,28.946411,127.74036,8.215115e-06 816,1.7296151,93.48857,19.680588,94.576935,8.007989e-07 816,2.002321,19.917337,58.823097,117.7483,1.48159405e-08 816,1.8296208,38.948288,20.097614,74.18636,1.1851678e-08 816,1.1310742,8.09709,22.236322,58.78952,1.2295913e-10 817,610.55194,343.31778,27.589722,80.442505,48.426563 817,58.770958,240.54834,25.502518,53.66745,0.09262409 817,411.04742,199.26802,22.882507,52.5309,0.058392655 817,597.5738,296.88278,41.572876,187.47311,0.033138 817,612.9086,167.77377,24.715088,56.6848,0.010214058 817,396.85297,196.83629,22.712128,50.253372,0.009336933 817,343.79755,217.49644,38.863403,92.92561,0.0054452014 817,267.99902,229.32529,30.608093,65.58569,0.0034732788 817,603.0685,113.835106,35.980713,157.93292,0.002948058 817,313.26956,222.67711,34.02002,75.873764,0.002941467 817,242.95055,238.64995,27.139755,53.694077,0.0027673661 817,35.827007,247.28764,27.142487,57.499374,0.001872905 817,301.17633,229.08084,26.247803,57.792694,0.0008546084 817,615.7054,83.385376,23.441284,94.21733,0.0006421279 817,10.4120865,224.55782,41.826084,99.876236,0.00055219745 817,371.35883,239.55089,39.858643,130.97395,0.00038471725 817,223.13991,220.06534,40.032272,102.00012,0.00026959652 817,609.11,191.27727,30.036682,187.04955,0.0002607528 817,608.31476,434.24857,30.83191,71.095,0.000249998 817,345.54645,268.48468,78.35303,192.97507,0.00019805263 817,569.99615,69.03831,67.39252,278.73447,0.0001903448 817,1.9172918,196.39922,18.816856,126.40184,0.00018559108 817,192.34445,273.14218,54.063217,164.49518,0.00017277035 817,207.69228,230.8867,33.17395,87.12938,0.00013532172 817,2.0702686,229.96564,34.64171,209.69958,3.2086384e-05 817,1.1081917,370.47723,56.95384,125.338715,2.7399416e-05 817,459.97336,221.26979,80.63852,179.60423,2.6334834e-05 817,0.7765536,407.12738,17.1998,94.867065,1.8361443e-05 817,2.4414046,94.468475,35.06194,194.31937,1.8227207e-05 817,608.9687,1.327601,30.177979,64.627625,9.4599045e-06 817,83.18211,233.10992,74.89943,159.78577,8.976672e-06 817,1.9179842,53.924362,22.342445,129.96375,5.053223e-08 817,1.8434767,18.976954,59.10836,120.44343,1.0541965e-08 817,1.1084652,7.740407,22.14782,60.013134,1.5900564e-10 818,608.27765,337.70883,28.593689,86.27338,66.967186 818,52.3587,237.43819,34.994717,61.51036,0.09239717 818,612.93536,165.84244,25.083374,60.00241,0.023580035 818,410.9184,197.91862,23.331146,54.13344,0.019469187 818,343.51328,216.64935,39.02487,93.976105,0.0058056936 818,267.9173,228.86844,30.756561,65.23386,0.0041008615 818,242.93723,237.88412,27.17862,54.58963,0.0029937164 818,313.85672,221.6817,33.812622,76.50238,0.0025298947 818,603.33655,122.02965,35.707336,149.52342,0.0019890587 818,29.695799,237.75821,39.521385,68.21942,0.0018210079 818,1.8348837,200.00899,18.741982,69.70805,0.00092399505 818,625.0132,155.35524,14.133484,45.806046,0.00078912347 818,589.19385,156.84378,49.45331,284.22348,0.0006930406 818,396.21594,190.13148,23.326355,55.563293,0.0006537793 818,10.152961,222.6687,41.953407,100.64154,0.0006287384 818,289.76486,226.13399,32.821808,70.69069,0.0005368128 818,587.6386,358.02448,51.508057,140.6286,0.00053393416 818,356.62878,240.59068,44.438873,147.34535,0.0004585388 818,616.0434,82.889595,23.103271,94.60955,0.000282459 818,223.18027,218.38689,40.63968,104.12669,0.0002427945 818,608.2129,433.8831,30.933777,71.72931,0.00024234294 818,199.89833,224.63954,39.31105,145.28981,0.00020403902 818,182.4176,257.49927,72.83063,201.67169,0.00019537171 818,355.44305,262.51834,89.98331,204.88318,0.00018762912 818,609.9397,212.2949,29.20697,139.91994,0.00017047033 818,1.2410784,245.57089,19.020916,83.63907,0.00013381445 818,0.49120444,363.01947,30.159395,137.0719,3.4179535e-05 818,2.0336215,226.12381,34.874866,212.03598,2.7321186e-05 818,459.52844,218.04326,80.653015,181.60118,2.365029e-05 818,215.07457,243.49387,26.547394,69.099304,2.3570085e-05 818,0.7602694,370.51752,16.508938,71.159485,1.6850472e-05 818,610.15295,5.6994405,28.993713,122.1324,1.0535025e-05 818,584.1352,4.0427737,55.011475,224.9413,9.169274e-06 818,2.4978728,83.15831,35.255817,204.855,8.382705e-06 818,3.1211264,343.7323,77.7323,144.34479,5.4822044e-06 818,1.951202,52.72538,22.506435,129.02121,4.8780898e-08 818,1.8473177,19.473112,58.765854,119.85286,2.3927168e-08 818,1.1418359,7.2147365,22.385456,60.805008,1.3531518e-10 819,611.4896,343.14133,26.434387,76.18326,84.457634 819,57.64726,242.80443,26.137852,55.69011,0.065232076 819,411.0257,198.07349,22.81372,52.519623,0.04558422 819,597.29144,296.77567,41.855225,184.99066,0.034967124 819,612.4115,165.8871,24.66565,59.41327,0.009483998 819,342.22598,221.33868,34.138763,78.87399,0.009169253 819,397.31082,197.21614,22.999329,50.1996,0.008363668 819,30.30775,242.35254,24.97665,56.03595,0.004922875 819,258.58112,241.79846,24.419617,49.887573,0.0041968855 819,597.4444,98.61742,40.67273,200.342,0.003419481 819,242.82779,238.61133,26.947693,53.773804,0.0023384516 819,318.92487,216.00473,40.234497,91.97748,0.002138397 819,298.66235,224.73152,30.709991,71.06682,0.001382289 819,274.70395,229.31532,30.643555,66.01198,0.001178643 819,615.7198,82.64189,23.42688,95.02597,0.0007521287 819,10.125025,222.76566,42.15062,108.12247,0.00042198063 819,1.7954501,185.51141,20.253584,114.44833,0.00034773292 819,371.17896,239.09102,40.11917,131.73494,0.00028525837 819,223.3717,220.4881,40.096283,102.25223,0.00024670662 819,608.3245,434.04886,30.822144,71.81293,0.00022783889 819,175.89493,303.0916,73.4745,164.62949,0.00019421734 819,346.4001,267.18488,77.07449,194.51575,0.00018290555 819,203.49443,228.07553,38.172974,116.601685,0.00014580102 819,615.62634,251.7642,23.520325,97.477554,0.00010531886 819,480.30627,227.04314,75.02466,173.7216,3.9920385e-05 819,615.4632,14.997386,23.683472,92.142395,2.7434868e-05 819,0.71627283,381.06772,28.1552,119.89484,2.2640037e-05 819,95.365166,248.08688,41.900703,133.24463,1.8288707e-05 819,2.30855,299.0493,54.817024,184.79431,1.5708074e-05 819,0.7687264,371.2078,16.273363,70.345764,1.0757778e-05 819,1.5405428,235.23518,30.214975,184.46217,9.045524e-06 819,2.4555566,81.473045,34.78252,203.90256,4.5827555e-06 819,1.9287086,54.658073,22.551958,126.10943,3.279983e-08 819,1.7886654,19.170046,58.900436,119.18689,7.717346e-09 819,1.0880867,7.5303745,21.786268,59.450752,1.0513e-10 820,609.2609,342.64578,27.285522,80.006836,69.579704 820,58.54331,241.13904,25.184391,51.369812,0.073282726 820,597.21375,298.89944,41.932922,183.32764,0.031746335 820,410.0932,198.31671,23.580261,53.419525,0.014667275 820,345.96234,217.65623,33.61261,74.68956,0.014196623 820,612.0803,163.84113,25.345337,61.59529,0.008054186 820,306.28116,219.58044,32.36963,70.50131,0.0074698203 820,24.088293,237.69933,24.5507,54.12233,0.0062987697 820,258.73602,241.86176,24.749023,50.265472,0.0035303729 820,43.760124,247.56313,28.103264,58.723953,0.0022410098 820,603.2744,117.596275,35.62677,157.30399,0.0016256362 820,243.26935,239.60405,26.644348,52.86415,0.0014822203 820,274.60092,228.38763,30.596252,67.12912,0.0011435216 820,327.77072,227.50319,35.912994,77.20311,0.0006286892 820,371.90088,239.2354,39.191956,130.51064,0.0006117461 820,616.068,82.81338,23.078674,94.27616,0.0004363741 820,1.6988525,204.94757,18.842094,71.83954,0.00041105368 820,3.0028517,213.65668,42.479973,131.32092,0.00040674553 820,176.01694,304.62668,73.45589,162.96057,0.00029596253 820,608.3828,434.99417,30.763855,69.838715,0.000252914 820,1.3378443,246.43027,18.944653,83.088745,0.0001866826 820,345.23145,269.9398,77.57614,191.19318,0.00018404043 820,223.33913,221.64305,40.095566,101.123886,0.00015393987 820,615.669,251.73428,23.477661,97.83853,0.00012497109 820,568.9885,55.042267,68.74255,296.11844,9.105831e-05 820,207.31728,231.91504,32.92917,86.53357,6.699912e-05 820,479.9052,226.71344,74.70697,171.16812,5.5664757e-05 820,616.4984,26.970121,22.648254,91.92613,3.105559e-05 820,0.6908716,360.56415,20.171465,142.77267,2.722978e-05 820,2.4442303,97.70605,35.085766,191.2767,1.5330901e-05 820,2.2183187,299.1753,54.970333,186.74524,1.0559567e-05 820,280.77057,181.37747,102.444275,196.44247,8.777129e-06 820,82.937004,232.58147,75.78838,160.90718,7.048479e-06 820,609.3722,2.1379557,29.774475,64.521965,6.592952e-06 820,1.8587329,94.03854,19.62134,94.00699,1.1372057e-06 820,1.8110026,42.334763,20.074951,80.058876,9.331615e-09 820,1.8969727,18.770678,58.881706,121.98764,7.887258e-09 820,1.1035328,7.591533,21.730774,59.630177,1.08723607e-10 821,610.0759,342.64413,26.951721,82.27228,74.92391 821,57.767754,243.28204,26.004951,55.461792,0.048696786 821,597.38324,299.7874,41.763428,184.40729,0.034395665 821,410.33353,197.3709,23.79306,55.398956,0.021933243 821,350.16415,225.83194,25.483398,59.026917,0.00869361 821,24.117117,238.3998,24.489569,53.712814,0.0068841605 821,609.1462,158.07423,29.313293,72.780334,0.0052016317 821,319.6041,224.08295,34.66336,77.90729,0.0044311774 821,258.6588,242.36826,24.692657,49.648865,0.003095467 821,36.212063,247.54189,26.892094,57.04393,0.0019131856 821,242.88332,239.57741,26.916275,52.798447,0.0015872796 821,584.7064,107.765526,52.95398,248.62329,0.0010395414 821,274.8211,228.27634,30.680786,67.212616,0.00073544186 821,10.0250635,223.24818,42.053528,107.000595,0.0006636379 821,1.670573,205.57378,18.940422,70.945816,0.0005467931 821,356.53418,240.32774,44.54541,145.58885,0.00033765013 821,616.28625,81.69421,22.860413,94.30665,0.00026822247 821,608.0385,434.136,31.108154,71.647095,0.00024876322 821,175.26344,304.35962,73.45505,166.3117,0.00022016309 821,294.87604,214.44987,37.93756,93.946304,0.00020527646 821,205.85771,220.44954,39.301407,136.03517,0.00018678876 821,1.2442074,245.61711,19.091383,83.788284,0.00015291257 821,356.24252,260.8669,90.02786,206.25366,0.000101403224 821,480.46497,220.403,74.32477,178.24257,8.981396e-05 821,615.7223,251.15959,23.424377,98.60985,8.226073e-05 821,226.23753,216.29616,43.159103,119.30235,7.129346e-05 821,1.1799365,370.08585,56.969273,126.49667,2.8783867e-05 821,0.76090986,405.6331,16.828087,97.16202,2.0596031e-05 821,2.485158,102.10012,34.479595,185.42975,1.5712389e-05 821,0.74102134,370.54288,16.484581,71.709595,1.49235075e-05 821,1.5030787,235.65042,30.133892,183.43408,1.0732323e-05 821,84.60679,231.56245,73.70629,161.89314,9.884478e-06 821,609.7219,1.4416244,29.424744,64.60592,6.8912705e-06 821,1.9022112,55.01629,22.314857,126.595406,3.1325285e-08 821,1.741478,19.750143,59.17228,118.20338,9.698904e-09 821,1.0635229,8.01933,22.21727,58.499134,2.0594526e-10 822,607.84064,336.7233,29.944092,88.368256,54.420765 822,58.935745,242.21936,24.765053,51.791626,0.1521526 822,410.4016,197.5387,23.745117,54.689804,0.022907604 822,350.11148,225.71078,25.42044,58.76764,0.00921195 822,609.13513,159.19118,29.307434,72.44722,0.0050066463 822,589.678,181.19206,47.680115,263.55225,0.003926051 822,311.4469,215.9778,38.080627,87.488266,0.0037794772 822,258.6505,241.7344,24.738983,50.63492,0.0034172416 822,18.907852,238.89035,23.893978,54.170685,0.0025877054 822,35.858665,247.83629,27.575241,57.988235,0.0019298295 822,243.06912,239.45584,27.383118,53.235565,0.0016409975 822,395.494,191.01715,23.90561,54.691452,0.0011346218 822,578.1082,342.6735,61.038452,148.33792,0.0010805156 822,274.4055,227.674,31.20047,68.93773,0.00090965256 822,361.95993,242.36147,44.380768,155.2852,0.0005445621 822,600.9238,67.33493,37.837097,205.00073,0.0005015146 822,616.1708,82.72483,22.975891,95.13477,0.00046754788 822,1.6589445,203.45026,18.687222,72.971405,0.00044029302 822,2.822243,212.8511,42.747616,132.57922,0.00033919024 822,192.26591,281.2225,53.885986,156.35489,0.00030827956 822,587.31726,199.68439,23.50653,47.358902,0.00028331502 822,608.3433,434.36075,30.803345,71.380554,0.0002513245 822,1.3079908,245.71634,19.07255,83.99902,0.00015543425 822,223.50865,220.49435,40.604385,102.5134,0.00015151653 822,201.46588,217.26884,37.578293,147.08687,0.0001447848 822,615.6688,251.58743,23.477844,99.16998,8.70379e-05 822,459.33224,215.83093,81.54666,187.19504,2.9974473e-05 822,0.5580412,357.48172,20.396093,145.66013,2.9532966e-05 822,2.432051,97.07682,34.82455,189.1673,1.7721362e-05 822,2.0191228,293.11685,54.62655,193.88004,1.710842e-05 822,609.3609,1.5548145,29.785767,64.41889,7.092415e-06 822,1.7645557,50.550816,20.852892,155.97873,9.030811e-08 822,1.8467871,19.520964,58.66143,119.26448,7.3966855e-09 822,1.0116594,8.3184185,21.829592,58.331886,1.8080148e-10 823,608.97406,338.9553,28.69812,84.921814,77.124725 823,342.5134,218.25594,32.80847,73.221664,0.018178986 823,410.43634,202.2632,23.644562,52.06723,0.008247812 823,593.5642,185.16331,25.469177,48.18445,0.007748777 823,589.1778,178.96971,48.15497,266.99274,0.0045588366 823,609.06134,163.13443,29.940369,70.87489,0.003416994 823,300.68292,210.85402,38.66623,82.714676,0.0029435633 823,38.76198,239.03375,38.67701,68.36713,0.0028959836 823,268.14288,228.59714,30.762817,66.37134,0.0017000753 823,243.24284,239.01047,26.878769,53.456573,0.0005759395 823,587.4295,363.01996,51.717163,135.06973,0.00052339636 823,10.025487,222.9896,42.065887,107.93326,0.0004768649 823,1.7740194,193.78883,18.705767,69.8141,0.0004748282 823,616.3348,82.4393,22.81189,92.616,0.00039225942 823,361.92642,243.3216,44.042236,154.22662,0.00035120168 823,323.61435,235.59917,25.784515,59.480423,0.0003264121 823,174.44183,291.9213,74.88937,174.3833,0.00028618975 823,608.1858,434.32742,30.960876,71.227844,0.00025042705 823,1.2870402,246.46126,18.965797,82.785324,0.00013091463 823,615.85864,252.76039,23.288025,95.306656,0.00012770503 823,223.09198,218.87743,41.325775,105.17372,0.00011961855 823,207.1171,230.13193,32.907486,87.384,8.863362e-05 823,600.82214,52.75284,38.101196,208.20374,6.21125e-05 823,480.47183,225.61224,73.989044,173.45697,5.8602705e-05 823,0.69997156,360.08554,19.90234,143.74255,2.0810925e-05 823,41.15635,203.43112,22.24718,51.521286,1.932616e-05 823,2.232549,298.7137,54.845215,186.92816,1.65579e-05 823,2.4655876,99.31387,34.393894,188.1853,1.598139e-05 823,83.979126,233.14522,74.49771,159.41817,1.3386854e-05 823,609.6624,1.7934929,29.484253,63.667484,6.322447e-06 823,1.8383642,55.627506,22.223652,124.41026,4.6132175e-08 823,1.9232064,19.01205,58.444267,119.17537,8.383206e-09 823,1.0311971,7.7579985,21.912704,58.97127,1.652136e-10 824,611.2579,341.6986,26.713318,77.609955,84.64602 824,57.989838,243.31845,25.921783,56.543518,0.04279682 824,597.57227,297.00598,41.5744,180.63553,0.032895256 824,339.92416,218.84561,36.651978,81.66934,0.026106505 824,410.5405,197.80428,23.414673,53.91652,0.010121532 824,317.01526,221.3212,35.35199,78.14371,0.0065297666 824,622.01556,179.70786,17.131104,52.4485,0.0026468474 824,258.50287,240.94331,25.539581,51.157333,0.002151117 824,24.241745,233.83037,35.76485,66.2946,0.0019308182 824,611.04565,115.46602,27.964844,120.17157,0.0014548388 824,301.3285,225.30743,27.693115,62.64035,0.0013480736 824,242.98964,233.7976,28.378464,54.13739,0.0010659259 824,583.02716,96.12133,54.588867,235.11456,0.00086210173 824,274.61475,228.51524,31.27301,67.16902,0.0008151772 824,395.546,191.68402,23.818085,53.751633,0.0006178478 824,371.6024,240.0371,39.784485,131.51299,0.0006025635 824,1.6891911,199.7307,18.599468,70.326096,0.0005084929 824,346.04147,267.91656,76.74802,189.55429,0.00039846703 824,2.9224432,212.55821,43.02664,134.15428,0.00038002414 824,608.3916,433.30444,30.755066,72.22128,0.00022488854 824,610.24,187.05745,28.906677,185.59605,0.00021421845 824,193.06381,274.88382,53.19026,162.87885,0.00020759992 824,1.309445,246.06013,19.031311,84.04265,0.0001410463 824,215.74838,220.08662,39.443558,105.83156,0.00013717994 824,480.236,218.31364,74.8154,180.89668,6.931463e-05 824,0.6824666,359.0756,20.347404,143.32614,3.383737e-05 824,616.6387,26.701738,22.507996,93.44518,2.1683774e-05 824,2.1797218,298.55246,54.997902,186.95676,1.8110182e-05 824,47.18713,204.62029,23.20908,51.533463,1.4820666e-05 824,609.73645,1.5902344,29.410217,64.6626,5.997881e-06 824,2.3256903,78.900055,34.94082,200.6737,5.2038686e-06 824,1.6952523,23.510183,22.101057,140.35397,1.5617472e-08 824,1.0871884,7.285879,22.02669,60.10907,1.2294742e-10 825,609.7697,337.2929,28.348633,85.415924,74.06955 825,345.19202,216.94125,25.584015,59.368225,0.12754372 825,58.291447,240.83176,25.808529,53.034424,0.048382226 825,410.16953,200.32214,24.338348,53.299347,0.030530756 825,612.3558,166.91808,24.680359,57.93901,0.0062926156 825,312.1219,220.45802,34.095947,77.307785,0.005981892 825,586.2542,288.4623,52.892456,189.83035,0.0053361617 825,483.6209,236.88933,25.945496,53.938034,0.002156936 825,3.0278485,190.83432,32.665474,61.47438,0.0020772924 825,603.01385,115.55524,35.931274,159.29935,0.0017594249 825,36.245018,246.82027,27.095238,57.96077,0.0015300304 825,301.02844,228.82863,25.666748,57.6425,0.001500121 825,265.24677,239.94589,24.107697,52.21353,0.0012577655 825,454.94125,199.49214,26.406158,51.3938,0.00059965596 825,615.95264,82.68575,23.19403,95.84402,0.000553787 825,1.3223137,192.494,13.624286,48.479156,0.0005256393 825,362.11136,245.18864,43.95993,155.50224,0.00042302822 825,243.75677,246.30058,27.510834,51.041855,0.00039505668 825,331.56354,232.5078,28.749298,63.937912,0.0003406386 825,10.259148,220.8534,41.990784,105.02298,0.00029725212 825,609.16284,192.37187,29.983826,186.01024,0.00026607275 825,608.3302,434.06503,30.816467,71.5531,0.00023832038 825,165.12117,245.20348,108.90364,223.80592,0.00016164946 825,1.4801571,206.02777,20.614645,140.43784,0.00013816083 825,226.14526,233.23392,34.40222,76.51053,9.478793e-05 825,205.19887,221.78862,40.07254,139.59038,8.6257685e-05 825,460.44034,209.48355,81.451324,191.49725,3.8936098e-05 825,240.24902,215.8572,43.79718,117.81642,3.6045087e-05 825,0.66851974,377.33136,28.690111,124.82541,2.8329887e-05 825,616.71716,27.23797,22.429504,93.379524,2.210192e-05 825,2.197531,300.5566,54.24317,186.05975,2.1762042e-05 825,2.4643164,91.15075,35.13884,195.40167,1.1106742e-05 825,584.89355,11.672989,54.253113,211.64038,7.192077e-06 825,609.7061,1.6626661,29.440552,64.42655,5.4275924e-06 825,1.9061605,54.99045,22.408678,127.44943,2.343709e-08 825,1.8152767,19.423933,59.04885,118.85794,8.84157e-09 825,1.0365024,7.876986,21.993355,58.630825,1.5700996e-10 826,606.5442,340.33548,32.602478,83.950836,10.685957 826,306.05066,218.65717,33.09021,76.35202,0.04983209 826,336.33157,214.52066,34.08667,75.278015,0.028541641 826,48.172623,239.07845,35.931747,69.99397,0.010475074 826,410.34433,201.95375,23.402893,52.20024,0.008669056 826,586.587,281.4902,52.3869,195.36414,0.0071974862 826,611.86633,165.45021,25.714355,61.471405,0.0066242777 826,258.265,239.73293,25.259033,52.261307,0.0027427506 826,18.523178,233.48532,35.052753,67.22421,0.0021818867 826,598.8555,94.07384,39.592896,212.92543,0.001698748 826,1.7444817,198.21474,19.189995,72.28206,0.001590598 826,615.6004,83.097305,23.546265,94.49623,0.00086731504 826,273.9254,233.30568,32.22293,66.06001,0.0007272475 826,236.5466,230.92729,27.430511,58.190872,0.0006409629 826,362.03552,246.0799,44.04721,153.9216,0.0004886405 826,598.3572,395.35776,40.78949,105.57294,0.0003954785 826,196.21555,227.75136,26.202087,64.20537,0.0003546894 826,201.29356,216.08928,37.182617,146.90916,0.0003165167 826,180.41965,258.33606,74.74213,203.16678,0.00028018848 826,621.8976,46.06775,17.249084,59.013153,0.0002022339 826,2.6286118,164.10489,35.99463,158.90128,0.00015918461 826,474.85257,221.34615,73.6423,165.0258,0.00015556741 826,1.2873983,244.57764,19.189793,84.93619,0.00013576445 826,218.78888,228.17703,33.8824,85.64053,0.00012507675 826,1.166268,370.37872,56.48859,125.210236,2.8769708e-05 826,0.7464828,406.51913,16.869062,96.431915,1.9085817e-05 826,0.8141618,370.34302,16.306992,71.40027,1.0214364e-05 826,83.167984,233.0466,74.416245,160.74637,6.7745523e-06 826,609.8439,1.6889486,29.302795,63.659477,6.4138703e-06 826,1.5210075,287.32935,30.05993,176.56732,4.458157e-06 826,1.619624,79.76074,20.497528,157.46489,9.710463e-07 826,2.3053923,35.078144,61.420364,210.75867,4.5498464e-08 826,1.7434262,21.062227,31.681967,131.02477,7.4850455e-09 826,1.0873739,7.835033,22.111145,59.235943,1.6593112e-10 827,605.102,331.416,33.138733,91.46945,1.7344882 827,25.689219,231.61221,34.59861,63.443848,0.014894921 827,344.95493,224.03891,33.393402,77.80835,0.012325699 827,301.61948,224.24579,32.478394,71.83301,0.011949472 827,329.51288,213.45787,33.67639,64.290146,0.010441804 827,265.76334,239.753,24.794342,52.29915,0.005585583 827,410.41742,197.73557,23.456757,54.465332,0.005014334 827,621.9589,179.97108,17.187744,50.60721,0.0041897674 827,591.06244,234.6394,46.37921,223.51825,0.00229225 827,348.15494,287.33286,64.34314,145.06577,0.0020595316 827,280.82327,233.44975,33.09247,65.34358,0.0020451695 827,609.3626,75.756004,29.779175,154.75159,0.001779185 827,43.256607,248.40079,27.118423,56.928436,0.0014992771 827,1.6691692,207.43211,19.477884,70.99895,0.0011878622 827,472.60413,219.25339,54.07892,140.53717,0.0009613689 827,186.39561,241.49103,61.84291,196.09882,0.0008634298 827,2.975617,214.01224,42.280758,128.40201,0.00078684645 827,469.7418,234.54558,27.81134,56.130386,0.0007710294 827,382.06573,236.8805,21.54361,54.720673,0.0007405487 827,244.40411,226.91933,26.651337,52.932663,0.00070718414 827,317.01004,218.96236,24.424042,49.087997,0.0006272375 827,598.3675,395.50012,40.779175,105.9823,0.00047427972 827,611.6664,166.65854,27.480286,139.24448,0.00042676344 827,325.1634,242.48068,25.499573,53.952545,0.00035140873 827,1.3562737,244.16803,19.283772,84.735504,0.00028539877 827,390.67267,192.38814,31.230804,65.689896,0.00024291262 827,8.965897,193.8968,26.82391,49.41455,0.0002163318 827,1.1843132,186.39192,13.921065,49.90892,0.00018696928 827,203.29414,229.37703,24.549683,60.727158,0.00017721881 827,212.22292,227.35808,33.494766,86.186966,7.301951e-05 827,616.7232,32.75571,22.423462,94.16763,5.749126e-05 827,40.80187,203.70355,22.650326,52.52838,5.431185e-05 827,0.63355553,358.2845,20.408762,145.48364,3.074042e-05 827,2.1291764,291.37277,54.841496,197.53375,1.8785011e-05 827,4.008405,90.910904,59.172703,225.8767,1.0258156e-05 827,609.45123,2.2772136,29.695435,64.02183,6.69827e-06 827,1.6086768,78.457596,20.147753,158.79439,9.1161183e-07 827,1.9193197,19.488424,59.078793,118.80381,9.195497e-09 827,1.8220419,39.41369,19.891155,73.89468,8.831356e-09 827,1.0734872,7.9841113,22.018969,59.22202,1.5104167e-10 828,546.76697,212.94081,24.639893,49.579727,92.2499 828,40.266,236.85318,28.53228,60.225464,0.20821136 828,539.22595,191.81622,40.751587,105.96002,0.08825272 828,598.9342,325.71356,38.470642,103.876495,0.047279224 828,334.91043,222.70847,31.566559,69.59598,0.02789656 828,312.60245,222.50099,34.63504,66.52904,0.012153528 828,455.17188,203.13635,27.707306,57.65738,0.006848135 828,300.70895,232.87212,24.546814,51.752792,0.006622269 828,412.79935,196.50285,25.35019,53.707565,0.0047613126 828,368.70938,234.42941,21.375793,54.435516,0.0026870873 828,622.2208,189.02736,16.925842,48.647522,0.0025461449 828,603.22363,96.70273,35.244995,159.78427,0.0013310984 828,281.783,230.65742,31.449432,62.73683,0.001290837 828,623.1093,350.88242,16.037354,48.687195,0.0012302937 828,343.27588,220.85324,55.138,153.7669,0.0011513368 828,257.89896,234.65474,26.182465,50.353867,0.0011088322 828,437.5038,197.4103,41.0614,121.41652,0.00068466604 828,530.38025,222.45042,25.022217,55.546616,0.0006540549 828,598.09674,397.39948,41.049927,101.93451,0.0006067904 828,1.653081,187.9586,20.987864,46.494873,0.0005872181 828,206.91762,224.58969,38.755615,150.42252,0.0005680019 828,18.524315,218.83006,45.199306,115.53056,0.00049898226 828,563.7517,216.85884,23.318604,47.538834,0.0004769131 828,612.3632,194.39316,26.783447,152.79349,0.00026360215 828,1.945149,192.80128,29.479988,149.2549,0.00024259869 828,571.7542,228.9011,67.392456,259.59695,0.00020380449 828,179.52625,234.25107,108.22461,225.75922,0.00016710491 828,502.47375,124.51955,128.42291,247.29109,0.00012581258 828,456.94403,222.93571,41.4487,132.99461,5.9746293e-05 828,3.1053224,259.9596,55.695667,230.64355,3.660758e-05 828,46.955914,200.99573,24.02184,57.76184,2.7436019e-05 828,0.7659074,409.54138,16.646797,92.04843,2.3712983e-05 828,609.12244,2.457448,30.024231,145.27919,9.529409e-06 828,2.1274202,105.55482,30.591825,159.19107,8.011385e-06 828,3.3087077,417.6177,76.50933,83.28439,5.760773e-06 828,1.3941212,286.93115,18.621561,167.42474,1.9184974e-06 828,1.9580339,20.368366,59.028477,119.209656,7.3920305e-09 828,1.946001,43.460037,20.007437,78.92548,6.66861e-09 828,1.1159408,7.271885,21.392956,60.022655,3.6766673e-11 829,38.32321,242.1813,39.175728,64.22543,2.9012847 829,326.99783,224.62927,23.424103,49.797455,0.025251126 829,612.20013,164.47841,25.614746,62.313583,0.02509809 829,605.9031,78.417206,33.24359,84.809326,0.015031262 829,312.60474,220.3587,23.458618,48.765564,0.013619989 829,436.66525,228.9812,35.920807,69.29239,0.005411223 829,599.75964,99.96053,38.4563,194.94534,0.0053596105 829,622.97595,83.17777,16.170715,47.14518,0.004823282 829,480.92313,195.56372,44.46115,99.98651,0.0040881983 829,22.756613,249.75784,26.46171,57.06604,0.0032570432 829,214.4319,220.67393,23.413269,58.70897,0.0028874597 829,595.31244,318.07294,41.311768,162.88416,0.002247962 829,523.3152,195.66261,37.171448,140.34901,0.0017197066 829,422.45984,202.65291,25.568604,58.34117,0.0016327567 829,361.1219,226.24483,21.201172,48.21251,0.0010444503 829,616.5591,195.84305,22.587585,88.29785,0.0010428609 829,402.07635,199.47429,22.05539,46.846832,0.0008916298 829,2.6892319,218.22894,40.762386,128.21616,0.0005886546 829,1.5411304,204.69566,19.398102,73.08272,0.000487199 829,245.83032,234.1509,23.533752,49.67195,0.0003389232 829,336.87503,217.60324,39.78018,138.53693,0.00028274872 829,608.1798,434.49393,30.966858,72.25693,0.00020281371 829,1.2899846,253.03949,19.123573,81.98166,0.00011934507 829,210.55264,207.75797,66.082855,163.94324,9.679213e-05 829,1.5636532,265.93173,33.757904,212.8899,7.0326925e-05 829,466.64136,163.21657,107.43909,204.93672,6.3278996e-05 829,0.7526107,363.41467,21.261305,99.85556,4.1484516e-05 829,36.249058,237.91542,82.31438,182.4587,3.8791626e-05 829,3.924899,81.016304,59.05182,234.98221,3.7470272e-05 829,0.98536056,433.79083,22.412853,70.67517,7.9029005e-06 829,3.3118947,419.90726,77.31551,81.79605,4.1382796e-06 829,1.547356,87.07464,20.273039,161.71338,1.2432149e-06 829,2.0663118,21.1425,59.343567,117.66771,1.1692909e-08 829,1.9834652,48.8071,19.624298,79.1665,1.1659458e-08 829,0.98205,14.276592,10.235525,81.35806,2.2991262e-09 829,1.0770264,6.056091,31.32074,63.966263,1.5527126e-11 830,416.83646,233.28532,29.473297,61.242813,12.638114 830,322.8403,222.3088,24.089996,48.544067,0.10946091 830,607.28546,154.48123,31.861206,71.44203,0.0680749 830,416.15576,197.09047,25.334412,63.891556,0.043614417 830,472.40573,216.45538,34.849335,64.67468,0.037510693 830,405.97504,196.7174,56.964294,110.22305,0.012941878 830,441.07553,207.80557,22.043915,50.257355,0.010641091 830,1.1940569,217.92462,36.83612,110.18582,0.005538388 830,15.515956,205.75638,43.788654,79.933136,0.0047051036 830,599.3984,138.81857,38.169067,193.35931,0.0042151352 830,335.56448,221.17691,32.455383,74.60446,0.0030974813 830,221.6161,217.1589,23.03215,53.259247,0.0021029292 830,490.28925,213.70746,23.052307,45.1362,0.0017260716 830,401.50476,198.26845,23.095062,54.853043,0.0014389418 830,616.91266,194.77869,22.234009,83.63669,0.0010106408 830,353.6838,220.83113,21.27774,45.256546,0.0009620586 830,237.22636,223.47758,36.436325,100.84227,0.0008876508 830,613.32416,329.31558,25.82251,145.25116,0.00055713794 830,615.78754,47.1626,23.35913,92.54707,0.00042136613 830,0.50876546,272.97498,12.893922,46.942413,0.00035294425 830,0.67517906,221.85863,14.078818,55.2285,0.00017308367 830,608.47046,440.42105,30.676208,66.18994,0.00012527945 830,4.867101,193.43211,55.43533,220.07393,9.501764e-05 830,452.19778,162.05627,78.96744,158.23413,6.6442735e-05 830,374.16772,169.75064,131.8439,213.95157,2.6250933e-05 830,1.1342489,256.17844,19.58845,142.66992,2.3205948e-05 830,1.7569182,149.85547,18.338528,78.46982,1.9843686e-05 830,36.705544,181.28256,71.0036,178.02756,1.5823018e-05 830,4.7839,332.95572,80.45534,156.16705,1.0226703e-05 830,609.7513,1.6282682,29.395386,65.474266,8.264606e-06 830,577.1447,322.04044,36.83136,91.8421,7.877437e-06 830,1.1163974,376.67206,18.409634,121.194885,7.139213e-06 830,2.865905,420.26346,52.955456,79.68765,2.3650014e-06 830,1.8961858,49.03769,30.608889,173.50154,5.3691135e-08 830,0.9621505,13.7080145,10.009625,83.82781,6.858715e-09 830,2.2301433,18.329987,58.0806,119.36661,6.2381926e-09 830,0.88570154,5.661771,31.307886,68.79957,1.8574819e-11 831,402.78458,207.46393,25.642578,55.41736,15.732463 831,420.96652,203.62244,23.180511,51.839294,0.065816715 831,456.35168,197.21786,23.226135,48.406723,0.008997236 831,463.58688,196.6285,35.3172,79.68242,0.007994791 831,387.09354,194.7743,57.506775,106.72673,0.0026363472 831,503.61105,187.06987,39.47116,94.22548,0.0026124811 831,223.40779,215.50208,22.90802,54.07785,0.0010345025 831,2.1345947,190.40553,18.938303,69.261826,0.00094320264 831,612.1473,359.024,26.99939,139.39758,0.0007600335 831,617.4198,190.18962,21.726868,86.08168,0.00055555045 831,570.7585,329.52957,63.90973,155.46039,0.00039162775 831,609.6257,80.907455,29.520996,156.34059,0.00031804718 831,610.32556,213.98596,28.821106,154.05466,0.00030748267 831,395.99554,180.87828,23.027344,56.956055,0.0001445817 831,1.4428362,256.6574,19.373402,74.33371,0.00013044343 831,3.243734,154.52144,32.80136,184.1858,0.000107271 831,615.61066,31.38044,23.53601,94.20675,6.432388e-05 831,451.67526,155.18623,75.106476,164.90187,4.648136e-05 831,2.4375343,368.4092,56.783745,127.07214,4.017528e-05 831,0.9187964,399.74698,18.680214,84.489685,3.658315e-05 831,362.45007,161.72682,128.64941,208.94896,3.3071403e-05 831,399.6861,233.32553,20.013336,48.420593,2.7286085e-05 831,490.8256,113.18297,36.766876,82.03076,1.872609e-05 831,31.336536,205.66486,25.178425,49.31546,1.6472128e-05 831,576.60895,319.77264,37.12909,90.72534,1.3688927e-05 831,350.437,68.89022,34.241394,69.79438,1.3413678e-05 831,606.95856,2.148838,32.18811,66.11557,1.1651238e-05 831,1.7409612,81.11083,18.501894,158.90286,1.1108455e-06 831,2.6407878,34.61693,60.39371,232.06947,1.2160307e-07 831,394.16748,5.682129,40.85504,47.080612,2.5661612e-10 831,1.5960857,9.23473,35.88469,84.6579,1.7141562e-10 832,467.3645,203.76282,32.488525,70.57593,2.3620913 832,15.763715,240.30399,37.818287,75.00067,0.1674412 832,430.1756,201.943,25.218018,56.13559,0.058817696 832,415.72687,204.23479,24.39746,52.81395,0.0028771663 832,394.34418,217.8956,36.337402,87.03778,0.0024792461 832,620.6214,206.56845,18.525269,63.25461,0.002088595 832,556.127,159.92477,44.16693,139.45667,0.0014034715 832,1.4923446,249.39053,18.036837,74.10339,0.0013821624 832,480.71902,236.15977,23.341675,49.426285,0.0010768515 832,611.1583,171.7878,27.988342,146.62148,0.0010719374 832,610.42676,75.48785,28.71991,165.33224,0.00081231527 832,616.78876,57.311558,22.35791,83.12167,0.00075660634 832,584.1355,113.90302,52.673645,245.52075,0.0005188465 832,169.5489,220.80174,24.491302,50.415604,0.00046342303 832,341.61966,223.4565,22.84256,53.551193,0.00041645707 832,566.34033,336.9173,66.84338,152.27844,0.00040865265 832,613.5345,335.54965,25.612183,145.49771,0.00037965973 832,617.9803,310.20627,21.166382,84.26865,0.00037150216 832,584.0939,3.9502995,53.577698,120.94645,0.00019511253 832,2.545905,216.70442,34.779037,155.28792,0.00017942463 832,608.7282,438.84225,30.418457,68.71323,0.00015857338 832,563.7865,176.57654,27.737732,61.48735,0.00012123973 832,450.34906,167.66136,66.74658,155.11641,8.3078616e-05 832,368.40942,183.13432,99.617096,210.17918,5.9324833e-05 832,1.7445427,208.4044,17.668888,64.98552,3.4825425e-05 832,453.70297,427.6763,72.51834,70.9982,1.2329771e-05 832,1.084231,300.83777,17.290564,141.90506,7.649212e-06 832,375.24594,35.898033,37.128387,74.145744,4.0602667e-06 832,1.1464877,401.22232,26.536781,99.41821,3.7935606e-06 832,2.2711573,116.75182,28.799824,156.97409,2.9177588e-06 832,3.4854167,335.22552,57.141422,151.80609,2.6727203e-06 832,571.4149,342.70615,28.759705,76.3721,1.4535735e-06 832,1.77226,43.98392,20.258596,144.03879,2.9322836e-08 832,2.5076742,30.237448,60.88656,234.64018,2.3241888e-08 832,402.41397,0.96717614,45.96527,45.10338,9.965329e-10 832,1.0177348,8.9198475,12.429136,77.29361,6.989347e-10 832,1.5075114,9.004477,36.98278,86.77689,4.5433032e-10 832,382.4083,2.2911313,40.3208,52.125896,3.5489375e-11 833,420.43216,186.6769,27.272217,57.274857,3.0926294 833,453.49063,187.36101,23.928741,54.129105,1.3573048 833,58.655678,224.91539,35.457886,68.75209,0.75412 833,483.52823,198.34305,21.073029,50.97133,0.45726267 833,436.28833,189.67203,23.431732,47.48546,0.05814925 833,610.21796,105.25938,28.376648,106.88174,0.032461774 833,493.54596,186.65715,27.646729,59.514725,0.022313768 833,616.315,302.14944,22.831665,84.22922,0.0037748807 833,22.908812,230.68694,26.75472,53.84117,0.00219537 833,508.07892,190.90474,33.434326,72.59584,0.0008784899 833,538.5513,233.31548,22.768799,45.027267,0.0008518875 833,602.9399,158.35349,36.10266,210.0495,0.0004918234 833,203.05946,210.9193,22.01445,50.80101,0.00047700774 833,404.99203,158.1188,56.959595,117.83084,0.0003881852 833,616.3154,171.83505,22.831238,96.121,0.0003862746 833,1.6058749,194.38536,18.865223,79.35365,0.00037756664 833,26.31481,201.77115,23.243437,45.179657,0.00031845205 833,29.572952,217.86452,42.963913,97.02077,0.00021277933 833,608.4766,439.32965,30.670044,67.861664,0.00019535347 833,3.2797365,152.67511,34.718662,170.05396,0.00019395431 833,585.74915,32.979767,53.033447,219.04776,0.00010487424 833,2.0325587,114.93163,20.92294,115.17921,6.108258e-05 833,552.7498,319.3538,36.582275,87.07678,5.2224335e-05 833,1.16198,352.91174,17.27828,142.94815,4.8787086e-05 833,2.5851986,367.45435,56.940742,125.92166,4.2001186e-05 833,584.8301,391.52234,53.900757,105.78668,4.190536e-05 833,379.8386,127.94464,127.38803,227.45294,2.3869628e-05 833,13.456648,193.75998,87.2019,163.827,2.11805e-05 833,459.3694,427.5241,73.742615,71.59772,7.853045e-06 833,1.112474,245.90005,18.705463,166.9111,6.373201e-06 833,612.05927,7.1188188,27.087402,82.30838,5.2474247e-06 833,2.6608822,34.777683,60.476124,219.8849,2.8920599e-07 833,1.3980469,21.53961,19.250404,147.45107,4.460481e-09 833,433.4919,4.2971387,44.753143,46.41171,4.0148556e-09 833,0.7871017,9.707452,10.85699,88.466064,3.3512377e-09 833,394.34634,0.0,62.472534,53.104317,2.74403e-10 833,0.7918278,3.2374058,30.721395,69.40598,1.7107757e-10 834,493.31647,203.8408,20.558655,45.13266,96.39252 834,103.4187,220.40839,27.827988,59.003296,0.2808903 834,468.90585,193.69708,21.298523,49.515945,0.10786729 834,503.52823,200.43405,25.14096,49.610855,0.055024754 834,91.45567,216.53079,26.207909,50.04898,0.016318811 834,437.3993,175.03319,31.216919,72.25502,0.010589527 834,585.8891,111.719765,51.220093,234.02484,0.0072130016 834,604.60547,164.96826,34.5412,95.010956,0.0055337534 834,61.647762,231.35693,24.349987,50.703766,0.004324557 834,620.09045,94.66425,19.056213,61.833855,0.0035011868 834,388.6267,214.20699,22.988312,46.53633,0.0033902263 834,510.87845,181.61203,37.255035,81.06085,0.0019115241 834,209.74133,210.60611,20.827286,49.761536,0.0017373379 834,616.0262,283.63428,23.120483,84.679474,0.0015486694 834,603.77136,293.3088,35.375305,190.59781,0.00033849548 834,1.9102938,173.2375,28.019691,139.98116,0.00024438623 834,608.40796,439.3851,30.738708,67.72516,0.00018056203 834,1.3852475,102.104576,21.452106,126.659355,0.00013749639 834,555.99805,324.58954,34.20172,81.02838,7.824725e-05 834,472.73898,150.38432,74.82779,159.7014,6.2765845e-05 834,450.40802,147.59758,34.003754,84.7755,3.006345e-05 834,0.93819094,365.71054,18.177729,129.26056,2.7656002e-05 834,600.12634,24.748236,39.020325,199.25511,2.7414571e-05 834,3.84528,143.2535,58.156673,219.20491,2.4935081e-05 834,1.1138363,251.19276,16.359627,126.059525,2.073074e-05 834,3.2221649,392.38562,55.222485,102.35669,1.1721451e-05 834,1.5703312,305.44473,26.133148,135.65945,4.668242e-06 834,611.1603,0.8676986,27.98639,56.377186,1.7015598e-06 834,1.5492481,18.865242,30.233227,154.70486,4.850146e-08 834,0.78467697,6.259626,14.190848,84.976,2.2519582e-09 834,415.965,0.0,42.518616,56.606422,4.572276e-11 835,516.5898,195.39317,21.209839,50.549118,9.671562 835,467.83194,194.18307,25.004211,61.5988,0.9308204 835,493.85287,195.6718,32.84317,70.61073,0.027149014 835,39.370754,211.06934,34.817715,72.47125,0.017696554 835,400.35,224.98141,22.869965,45.863007,0.0050409 835,621.0203,203.26242,18.126343,65.522125,0.0028888122 835,60.510387,221.11319,24.868351,49.555817,0.0024512834 835,219.67198,217.07141,24.136642,54.912354,0.0012991383 835,622.6762,149.8101,16.470459,53.392838,0.0009280733 835,141.3973,230.89157,23.674896,50.670563,0.0009269615 835,603.82574,168.06139,35.088806,194.313,0.00088666094 835,612.5272,95.05092,26.619446,151.0782,0.00053072115 835,613.5955,320.32135,25.551147,147.70694,0.00052000367 835,449.06558,159.22273,74.91165,148.42955,0.00015582176 835,1.4597323,219.30821,19.311817,147.32158,0.0001397682 835,608.9191,438.0471,30.22754,68.66153,0.0001373035 835,617.6111,55.64113,21.535583,90.97496,0.00013451511 835,567.7993,338.19772,67.553406,149.84161,0.0001304056 835,565.27264,315.23187,41.345764,108.59531,7.339918e-05 835,1.7223821,142.74803,28.99077,162.62126,7.213825e-05 835,2.6978369,254.48209,57.042397,217.77197,3.159758e-05 835,606.99384,0.0,32.152832,71.967,2.5738236e-05 835,1.018641,364.77167,18.99486,132.55865,1.2523974e-05 835,3.078125,430.75412,53.736637,68.752045,8.74718e-06 835,585.2622,11.474636,53.46167,265.037,8.401017e-06 835,1.8499683,91.35629,19.044313,79.23071,6.1826227e-06 835,3.0143294,43.08682,60.586884,211.99767,2.0147361e-07 835,1.4980794,8.642702,34.97102,84.34095,1.2867616e-09 835,448.0644,2.5255275,47.762604,51.852917,2.423192e-10 835,0.7791203,0.0,19.934553,46.02754,2.1550138e-10 836,494.95908,194.58131,22.67862,48.144165,61.857533 836,542.83057,193.67969,24.29895,52.836884,21.810604 836,80.6272,206.2085,24.882439,48.117554,0.13186057 836,508.24963,192.13513,23.731445,50.201645,0.05764236 836,222.51971,203.52579,21.881989,50.257263,0.030995024 836,166.31898,210.1304,25.802155,51.54373,0.012934758 836,590.2466,324.09268,47.143738,154.68369,0.009494667 836,485.37424,204.93086,25.40686,65.771194,0.0063095903 836,409.11325,221.20331,23.848663,51.873352,0.004928578 836,441.4846,201.92049,25.350098,46.12361,0.0018358645 836,524.50555,198.13165,22.842773,51.586136,0.0015119498 836,505.64627,132.64043,40.44284,130.30754,0.0012616941 836,526.2274,161.32567,67.001465,114.266464,0.0008215072 836,611.7623,163.38808,27.384338,128.11876,0.0007768412 836,607.90125,430.46805,31.245422,75.35614,0.00041430607 836,616.5718,66.00917,22.57489,91.87985,0.00020053844 836,588.69446,108.27272,49.587097,233.05305,0.00013171222 836,1.1731368,189.5912,18.538769,67.416214,8.215912e-05 836,618.8512,355.50214,20.295471,72.588684,8.196824e-05 836,611.26404,231.32675,27.88263,163.99832,5.6497203e-05 836,510.72845,122.80295,27.69751,63.24997,4.267221e-05 836,473.2587,135.70523,88.64566,215.17844,3.840442e-05 836,614.5174,10.119294,24.629272,93.884575,3.1097086e-05 836,1.122076,320.7673,18.77337,138.1124,2.9358973e-05 836,1.0781763,214.32974,19.114725,135.00943,2.3612789e-05 836,1.5499016,394.9089,28.842045,101.72293,1.7737391e-05 836,3.578509,243.28777,58.394917,230.96098,1.6117458e-05 836,599.62915,2.169323,39.517517,202.90752,6.666165e-06 836,1.953152,99.34718,31.911121,178.57085,6.176989e-06 836,1.361945,49.92788,19.772936,126.65687,2.2162576e-06 836,1.1227365,13.888132,13.0821495,74.84199,2.3193363e-07 836,2.672985,17.646967,57.730278,113.94952,1.0132445e-08 836,524.89233,2.7842042,44.762756,50.469635,3.057664e-09 837,561.3306,198.12614,22.969666,49.59677,98.5861 837,544.739,198.19624,22.632812,48.532974,98.48935 837,417.3123,190.9455,40.62497,72.516815,1.9415848 837,440.76517,194.36629,26.206726,55.39421,0.19586529 837,76.84525,210.452,32.026276,63.112427,0.07565806 837,610.1502,202.46266,28.961975,61.153427,0.02517517 837,221.388,211.8255,23.466202,61.00302,0.01021398 837,490.3775,213.52013,26.400452,48.87947,0.0037068941 837,115.02069,207.97859,23.27861,46.25493,0.0034113808 837,469.4579,207.43611,22.87082,45.824936,0.0033806013 837,529.55786,168.9231,60.234802,105.87958,0.0022994005 837,598.90936,134.2496,39.30017,178.41684,0.0015188637 837,429.32028,221.82358,32.464478,83.900604,0.00052145973 837,570.34125,363.91882,68.142334,126.15259,0.00043192986 837,193.13277,221.23595,30.793625,63.349228,0.0002604275 837,608.3943,439.48022,30.75238,66.688446,0.00022501683 837,615.4695,40.697304,23.677185,90.90327,0.00015299469 837,615.931,108.07742,23.215637,99.42192,0.0001378305 837,611.74426,302.5793,27.402405,148.34601,0.00012844094 837,413.3022,223.24005,27.287659,66.49228,9.491005e-05 837,537.57416,156.04881,96.83612,201.57579,6.0948332e-05 837,1.0505664,204.84341,18.260675,71.64447,5.263373e-05 837,1.1267139,341.98245,18.975151,133.39975,3.3669017e-05 837,4.162777,180.9728,56.77135,237.08696,3.320201e-05 837,0.96389407,243.18837,19.657528,137.23225,1.4016129e-05 837,584.1481,22.409538,54.826477,212.24835,1.3712722e-05 837,0.9637012,423.1244,16.135338,77.20407,1.3424696e-05 837,3.5653646,396.83188,55.991383,97.022675,8.6506e-06 837,1.3988786,116.85615,18.396929,130.95688,7.1645304e-06 837,597.07965,5.2042155,42.067017,87.95618,4.467299e-06 837,3.1928337,48.65716,60.45226,219.13242,2.8624254e-07 837,1.3252848,27.783268,18.859922,136.94838,6.046613e-08 837,0.9903951,13.546175,12.63079,77.76011,3.5301884e-08 837,528.3986,2.434717,46.376343,49.447903,3.5854029e-09 837,498.0722,3.8106186,46.110596,56.97642,1.1747044e-09 837,446.80594,0.6955746,59.634277,48.425056,4.2932814e-11 838,220.78047,215.29791,24.52797,60.233765,0.9535248 838,563.5661,233.82079,31.926819,79.3235,0.1124276 838,510.16824,202.8667,41.707245,73.15555,0.062561676 838,607.9142,48.628704,29.545288,64.24399,0.05842592 838,0.5609131,243.15384,41.985813,93.579956,0.022397347 838,115.97017,219.83243,23.25772,49.602142,0.017160933 838,456.85022,206.76613,27.943695,51.410812,0.0032094552 838,486.6179,200.6488,36.526947,69.01605,0.002461877 838,0.9206055,243.11298,71.57034,204.32953,0.0015401316 838,1.0284196,256.87103,17.440474,64.83191,0.0012755697 838,611.1557,363.03665,27.990967,141.10345,0.0008481925 838,587.9996,272.0124,50.182434,208.7858,0.0006815307 838,200.08157,224.28088,34.40184,67.4924,0.0006463438 838,624.49115,38.60148,14.655518,45.057037,0.00047714374 838,618.5322,201.24733,20.61444,76.48042,0.00025692768 838,88.34521,215.15591,22.62046,57.434235,0.00022882159 838,2.9142482,414.49765,53.100323,82.736176,0.00021103569 838,612.5211,243.88943,26.62555,131.22552,0.00012504084 838,548.274,210.28807,72.53735,145.7296,8.364545e-05 838,602.0036,54.10107,37.143066,221.44061,8.123517e-05 838,259.3805,225.73761,25.141449,57.962463,6.542157e-05 838,457.91333,222.53761,40.996796,137.11192,6.211369e-05 838,1.3238704,198.67502,19.45628,79.69043,5.798169e-05 838,1.5318644,407.7822,18.82207,78.94116,5.076578e-05 838,2.8006008,86.43753,56.924583,251.28171,2.6598293e-05 838,546.06915,73.278725,35.366516,84.91364,2.2338063e-05 838,1.1295304,451.6174,29.848488,52.90744,8.338057e-06 838,610.2064,0.22975586,28.940247,67.422844,6.4039446e-06 838,1.4783806,68.9343,20.20164,160.55786,1.4433488e-06 838,526.42957,14.891673,77.84082,179.08055,2.2147519e-07 838,0.45269737,12.705446,9.752193,84.58074,6.666655e-08 838,1.4947852,20.458971,59.36925,111.91298,5.2530275e-08 838,481.0848,0.0,34.13437,46.86574,1.157974e-08 838,524.2141,3.4697917,46.616455,58.456863,2.8467961e-09 838,446.95502,1.6280339,126.616455,123.936005,2.2257434e-09 838,497.5165,3.586089,47.287933,51.660572,4.540886e-10 838,0.3258838,4.9975033,31.360477,67.68949,8.472152e-11 839,476.8391,206.54971,35.883423,66.11551,1.1971349 839,225.22055,223.82555,19.192795,50.85179,1.0767035 839,465.48752,211.63458,25.370667,54.533173,0.050494634 839,129.29366,220.42957,22.97496,49.741547,0.043813724 839,592.80566,216.12375,36.83026,79.21509,0.029901337 839,450.5134,207.36134,46.504517,117.49538,0.00834108 839,572.0746,238.70102,23.987854,48.551147,0.00815051 839,619.2745,217.27086,19.872192,69.09593,0.0040220646 839,623.01575,77.41757,16.13092,47.61257,0.0020068567 839,446.44867,264.486,37.626434,95.65018,0.0017824693 839,584.346,145.4728,52.13684,205.52046,0.0010209596 839,557.71747,205.59198,41.970337,102.79175,0.00081725704 839,497.4391,211.40643,38.3667,72.82831,0.0007466302 839,617.6368,95.20732,21.509888,85.58217,0.0004043877 839,12.069172,199.77324,37.318054,66.004166,0.0003898395 839,523.9285,228.85594,24.870728,57.08818,0.0003757458 839,608.1859,440.34027,30.960754,66.613556,0.00027268473 839,1.3886865,373.6152,19.838385,98.729706,0.00024791394 839,608.68353,6.615384,30.463135,126.82576,0.0001692954 839,610.69885,328.039,28.447815,139.19003,0.00016444187 839,534.14624,198.30078,43.366577,132.41635,0.00015896554 839,3.269917,252.28578,55.99179,231.72975,0.00014262008 839,610.11346,222.18845,29.033203,156.00827,0.00010951931 839,572.63544,370.85718,66.083374,124.818665,5.003085e-05 839,2.3162403,193.53629,29.688833,144.67682,4.707073e-05 839,1.0443563,448.59485,29.16669,54.61142,1.2751369e-05 839,1.6663452,115.91548,17.952473,142.34859,1.0478072e-05 839,584.5077,3.0584555,48.36084,50.506786,3.0446906e-06 839,2.741592,40.4541,60.47707,231.74805,5.640647e-07 839,553.27637,1.9341862,45.960144,63.249058,1.6668235e-09 839,1.3845004,7.344115,36.79771,87.43931,4.6891685e-10 839,495.36304,0.0,45.021423,62.958115,7.563352e-11 840,558.9513,232.60258,25.002808,52.387497,0.4115549 840,505.14856,220.6684,38.12921,97.488556,0.22119367 840,234.48315,225.14124,21.36467,50.48581,0.05986052 840,532.3089,250.2855,24.182861,60.758682,0.0070309024 840,603.16974,339.17676,35.45868,148.71918,0.0053739096 840,520.9463,215.01073,28.303955,59.29396,0.0043285917 840,480.82877,219.94173,45.036957,129.29631,0.002344049 840,536.84656,225.95728,42.19397,98.70703,0.0023038608 840,561.9369,370.8693,29.50647,72.99936,0.0020041447 840,351.8487,223.49245,23.470001,45.767807,0.0014823701 840,483.147,215.79576,23.390991,46.112076,0.0014553024 840,81.7343,242.54776,32.387253,66.07822,0.0014324343 840,622.0306,207.9811,17.116089,54.424026,0.001362399 840,498.58386,214.66438,27.074036,50.665726,0.001191994 840,608.13983,258.6909,31.006836,152.1648,0.0011913734 840,121.5249,223.86282,24.132523,52.99945,0.0011059322 840,621.1799,53.236652,17.966797,60.929935,0.0008263396 840,334.10004,428.37122,83.559906,74.0423,0.0005716286 840,611.4661,158.55748,27.680542,127.311356,0.0005377572 840,622.18475,107.052315,16.961914,52.46792,0.0003461174 840,0.9989641,389.36023,18.016453,86.03873,0.00017480673 840,2.457295,163.49055,34.409405,200.00478,0.00016272318 840,468.71698,244.43336,82.50836,185.43681,0.00016141529 840,608.72797,435.54797,30.418701,70.030945,0.000113022 840,58.670918,215.83452,25.597477,46.80809,0.000101922116 840,55.03448,314.18094,41.24989,98.02573,8.268814e-05 840,587.8638,79.42689,50.64502,256.99802,6.376666e-05 840,607.9305,0.0,31.216187,141.26547,5.71435e-05 840,20.519995,241.3235,120.88003,229.09761,4.6849942e-05 840,35.28254,201.74582,34.444237,67.11792,4.671449e-05 840,3.6623309,235.49556,56.475807,237.22466,4.4258813e-05 840,1.6368823,253.40201,19.090683,159.55997,3.7191796e-05 840,1.7349805,185.26295,19.488972,78.25786,2.3075214e-05 840,1.2795142,439.13406,21.883472,63.61487,1.3138599e-05 840,1.9329859,97.15414,19.241615,129.22968,1.5954732e-06 840,589.40656,0.24658203,42.063477,66.541885,8.044666e-08 840,1.8254834,19.281126,56.761208,114.83432,1.970182e-08 840,530.0916,0.0,42.833496,61.519436,6.59968e-11 840,503.6888,0.0,46.637726,56.560856,6.5536777e-12 841,550.72925,225.62003,20.29248,47.021942,29.037407 841,605.27527,231.20287,32.51599,64.93324,0.68013823 841,112.97888,224.75995,23.81395,51.226776,0.100543976 841,609.91626,310.09692,29.230408,164.83023,0.057026975 841,364.97385,223.85974,25.118927,53.807068,0.053123187 841,623.0799,223.09396,16.066772,49.240387,0.023892844 841,621.31726,344.79453,17.829407,47.08026,0.01106752 841,618.77454,300.6433,20.372131,67.00418,0.010484947 841,61.79432,222.4243,22.80056,51.157516,0.005036278 841,617.56726,257.11386,21.579407,75.51181,0.0032952118 841,592.29987,163.0479,45.99933,216.54912,0.00074555003 841,274.5385,225.72574,20.218689,47.975677,0.00052269053 841,543.1456,204.6077,41.03955,95.61395,0.00036619138 841,2.9263444,380.14343,51.92596,107.47684,0.00028324316 841,1.362133,377.54312,18.734455,79.4393,0.00026469037 841,1.2138265,240.6024,17.47249,75.13173,0.00025110863 841,615.9631,84.68455,23.183594,89.46723,0.0002492619 841,583.91724,396.8325,54.809692,101.072784,0.00021063679 841,565.4685,217.2484,26.083496,52.17433,0.00012824559 841,4.2637434,261.96277,68.26754,186.76443,9.904593e-05 841,81.583305,317.24304,29.589767,70.24417,7.203417e-05 841,2.0802093,170.08513,28.35832,140.855,3.5557263e-05 841,90.90609,219.79837,82.513145,163.15366,2.9677634e-05 841,599.0694,23.67345,40.07727,232.78957,2.2068556e-05 841,1.5271851,281.21603,17.48372,137.59161,2.0002946e-05 841,1.6097803,123.36626,20.342468,106.56758,1.30852795e-05 841,530.18677,174.45897,83.44214,169.33662,1.0530604e-05 841,53.545208,254.88414,95.68004,203.4377,7.889466e-06 841,226.0706,230.69118,22.74675,52.421036,6.1842975e-06 841,395.8914,178.8397,27.716797,59.61743,1.0708295e-06 841,2.4820557,36.393906,59.527477,275.9522,4.9496964e-07 841,587.82697,0.0,46.91992,63.451122,3.1919447e-07 841,1.4664909,36.047794,29.984818,148.67188,1.0774807e-08 841,1.3410774,8.362051,36.85226,84.89252,1.8473046e-09 841,560.45874,0.9081999,42.315857,57.141777,1.0967502e-10 841,513.7692,0.0,69.93878,60.597073,4.7684066e-12 842,114.59349,212.56386,21.77008,47.520462,0.04421196 842,135.90202,213.61952,32.00502,67.65404,0.024809353 842,460.99466,206.11693,25.18039,54.642654,0.013491762 842,357.16315,213.29233,19.348297,53.58441,0.012372483 842,622.21246,217.56174,16.934204,53.421722,0.007698619 842,587.71436,285.60446,49.87079,192.12378,0.004452964 842,541.93475,218.20676,25.44336,47.944794,0.0042249714 842,594.9435,211.58539,35.904785,60.78589,0.0015949894 842,616.4568,275.85007,22.68988,89.4379,0.0010780536 842,617.1058,400.3203,22.040894,79.93219,0.0010266382 842,0.504327,253.18182,12.975073,48.09079,0.0007776046 842,377.46814,216.0235,21.141144,54.096313,0.0007376545 842,439.24063,199.45508,32.33908,72.658905,0.00066035136 842,616.91156,110.06464,22.235107,89.868,0.00041341328 842,267.98166,218.33237,21.571716,49.239807,0.00033498358 842,602.8434,99.92667,35.85498,191.10464,0.00026209388 842,0.87443525,200.5457,17.780432,74.79872,0.00026182804 842,1.1516216,371.50174,18.330456,78.82953,0.0001280818 842,4.125998,288.6799,55.28738,186.37839,0.000105134015 842,0.8989331,232.65727,19.2739,128.68187,6.480458e-05 842,610.3175,16.397865,28.829163,137.02173,4.7122292e-05 842,2.8005762,158.388,35.11658,171.04974,4.3353255e-05 842,5.164834,120.55314,77.90268,246.96762,2.7579885e-05 842,520.43646,148.80656,114.87781,219.56755,1.527419e-05 842,59.976097,232.51616,81.572685,198.813,1.2499143e-05 842,0.7019141,418.77985,16.590054,83.03256,1.0799079e-05 842,1.2027247,82.073204,18.08258,147.30914,4.2820557e-06 842,2.634427,424.70117,53.241806,74.84305,3.5353537e-06 842,599.32654,3.561927,39.82013,45.827187,2.430098e-06 842,0.88925135,21.30625,31.504417,147.40204,2.0943669e-07 842,522.9398,5.087689,116.20685,193.48203,1.6176699e-07 842,547.0582,12.188412,44.29712,131.27089,3.077858e-08 842,1.0808936,1.4361085,31.242386,47.776745,6.6360106e-10 842,571.0729,0.0,49.683655,52.324226,1.8351284e-10 842,527.1461,0.0,69.08154,60.874336,1.8082863e-11 843,543.101,219.74477,24.932373,59.778183,5.5458527 843,497.9546,199.16508,37.29944,81.210556,0.037241735 843,272.38168,218.05183,24.071594,53.47368,0.0043180212 843,623.3919,215.51935,15.754761,52.111877,0.0041754325 843,152.8827,206.23419,25.270508,58.251404,0.0039334856 843,619.4889,72.54193,19.657776,55.54854,0.0032382493 843,523.2672,226.07448,25.622375,56.500412,0.0016672808 843,386.8248,214.6268,21.019958,53.531586,0.0016032336 843,511.70517,188.14442,68.75424,109.16521,0.0012515235 843,613.1696,191.12746,25.97705,111.92436,0.00050511456 843,184.44057,215.28127,20.771713,45.67839,0.00049285684 843,611.9357,371.98474,27.210938,127.29669,0.00028582424 843,1.3769133,201.01582,17.858805,72.60448,0.00027652626 843,512.66003,168.9281,35.23047,79.128204,0.00024292513 843,416.0557,234.1875,24.525818,57.29828,0.00018391182 843,612.14886,87.56668,26.997803,156.48924,0.00012139559 843,586.9661,118.834404,50.98645,203.86371,0.00010945728 843,587.5647,247.3545,51.138306,233.68779,0.00010058112 843,609.84973,8.6964655,29.296936,135.85448,6.15471e-05 843,128.67618,299.5905,25.28955,63.98346,6.108939e-05 843,1.2225472,254.15948,18.289446,67.16861,4.3779284e-05 843,26.823915,191.35298,41.936462,114.04729,3.543212e-05 843,493.98636,138.25832,141.41391,213.05824,3.3989574e-05 843,1.1451075,357.11304,18.40756,133.89838,2.1582682e-05 843,2.3944638,163.18681,35.619846,154.45042,2.04841e-05 843,1.2445459,137.287,18.37801,76.61923,1.8551114e-05 843,612.74384,0.0,26.402832,49.524055,1.5351427e-05 843,3.574118,242.5473,56.643826,226.30511,1.4263883e-05 843,2.9978142,393.0071,56.127617,102.52487,1.0646794e-05 843,1.2369076,327.00568,17.702042,70.01953,1.0382027e-05 843,4.885306,126.62315,77.455635,225.28706,6.5566846e-06 843,1.0246948,31.198965,33.151215,198.29428,2.0027583e-08 843,1.4294093,2.2501287,37.70049,49.66202,1.8864685e-09 843,581.0411,1.1318848,43.734863,60.2202,1.6984087e-09 843,0.5497274,5.531745,9.875248,91.92071,1.4000607e-09 843,339.95343,0.054427084,45.487732,60.580585,1.5307917e-13 844,40.6909,213.54881,39.976215,120.71718,0.060843356 844,54.27533,208.12207,21.520401,49.21817,0.039099842 844,601.2511,208.95592,34.479492,68.47374,0.013266594 844,409.6419,234.44943,22.800568,56.928192,0.005019362 844,86.04722,201.96817,23.517746,47.289627,0.0037084147 844,558.80743,212.94753,37.109253,79.369,0.0033580135 844,591.95374,206.3924,24.256409,55.891296,0.002729412 844,585.7891,146.47185,50.83087,194.23015,0.0008044418 844,612.6558,227.47795,26.490845,128.53462,0.00064956816 844,600.802,191.25937,22.812805,51.207672,0.00054332335 844,19.974411,221.37537,86.42874,178.72641,0.00044690652 844,38.84091,207.064,24.700424,46.36177,0.00028912508 844,527.5563,206.59462,74.722046,156.7436,0.00010845571 844,608.5558,438.4549,30.590881,68.67511,0.00010033911 844,1.7660706,186.93584,17.45955,66.90401,7.945801e-05 844,114.9078,190.54135,38.65255,82.77286,5.920885e-05 844,616.85016,125.01951,22.296509,85.19451,5.8534784e-05 844,617.4675,344.9736,21.679138,83.27847,5.5228942e-05 844,588.7769,258.6537,49.18225,212.44681,5.3823755e-05 844,90.881744,186.66608,38.914505,112.12387,3.9604358e-05 844,1.9166236,207.87381,31.71137,172.4125,2.66056e-05 844,1.2019638,366.17227,17.605013,130.49716,2.3148259e-05 844,3.5709147,398.61807,55.14783,93.98126,1.2495855e-05 844,455.0282,430.87552,77.590454,71.10309,1.1321083e-05 844,270.46594,222.71892,24.460693,58.27043,1.118982e-05 844,0.9907373,318.79575,18.429214,75.14261,1.11205845e-05 844,0.70217127,246.74358,18.755013,77.27037,9.485722e-06 844,236.16847,432.39966,77.247604,67.29733,6.3788198e-06 844,392.8533,430.66342,71.29562,70.21634,4.7960407e-06 844,154.66068,426.86304,71.28766,71.93063,2.4035737e-06 844,587.42145,4.3126044,51.621826,131.65616,1.3866419e-06 844,26.786465,429.29062,75.967255,69.55496,1.3142692e-06 844,1.8055681,83.91447,31.444359,181.5387,8.2775847e-07 844,1.5717318,13.700183,55.62051,122.37285,1.3625881e-08 844,0.7449878,36.419075,16.430853,150.2453,6.3063e-09 844,1.3111621,3.1021647,36.751976,46.06626,4.6241304e-09 844,0.78643924,3.8094857,12.771001,80.234024,2.7119473e-10 845,618.25885,318.87653,20.887817,63.607117,0.002699498 845,4.2448144,193.55263,25.399796,47.877945,0.0025477963 845,615.89777,193.44394,23.248901,80.60492,0.0014165267 845,349.70914,195.56737,22.5141,48.87172,0.0014120598 845,138.4387,201.73659,33.35408,73.15172,0.0010557898 845,596.41394,204.09708,32.574524,65.07773,0.0008724586 845,616.9283,55.220543,22.218384,79.57603,0.00059073087 845,450.97678,243.95924,20.523346,52.99385,0.0005797263 845,77.79298,205.26753,23.389061,50.211716,0.0005684738 845,568.37384,202.91196,34.342712,62.961914,0.0003865373 845,232.00073,208.20271,43.22885,89.13127,0.00038073046 845,559.11304,226.70883,23.272217,50.481293,0.00033178256 845,610.73004,99.54669,28.416626,145.77501,0.00024214196 845,585.8086,284.33453,51.93103,196.62079,0.0002229151 845,585.68463,130.75772,51.39203,238.69827,0.00020235834 845,1.4164551,186.80602,18.573513,127.01567,0.00014567954 845,609.0507,440.07236,30.095947,65.621826,0.000105502215 845,616.9424,260.27374,22.204285,94.344666,9.432812e-05 845,616.0276,345.75174,23.11908,96.509094,7.7129036e-05 845,1.1723763,407.06006,18.279016,72.59616,5.513674e-05 845,3.4423325,254.1146,57.565857,227.01932,3.2787357e-05 845,1.3825732,323.49994,28.43714,148.6308,2.9113613e-05 845,53.685177,170.37688,43.50964,103.69063,2.4011413e-05 845,334.6517,432.26953,74.88745,72.136475,1.8197925e-05 845,0.82320887,251.40271,18.720121,148.03586,1.8040575e-05 845,125.23743,431.3793,75.00134,70.146545,1.2794857e-05 845,150.43263,401.19583,115.6703,94.62866,1.2303003e-05 845,3.4974773,430.92526,53.191532,68.12396,1.1622994e-05 845,2.1891172,103.6916,30.809563,164.09985,1.14444e-05 845,117.43628,186.90268,71.79909,168.98578,9.096772e-06 845,583.2144,12.80377,54.84308,116.97946,7.789109e-06 845,489.91425,225.727,77.22168,172.0063,5.3942263e-06 845,207.74026,433.94565,73.06818,67.0405,5.1875963e-06 845,275.96887,432.47046,72.20148,71.53241,3.8269322e-06 845,412.1324,429.3796,72.32373,73.96921,2.830131e-06 845,488.36172,427.69617,73.40744,73.56589,2.3629993e-06 845,1.1121631,72.26684,14.259222,145.7847,4.788105e-07 845,2.2741668,16.198938,56.716408,115.45417,7.5405575e-09 845,0.5561336,6.080436,8.691837,89.14064,3.7371923e-09 845,475.60715,1.8313835,42.222443,57.919857,6.1032895e-10 845,450.609,0.0,42.028656,55.82582,4.1279265e-11 846,367.6346,195.73251,29.14679,58.398376,10.95945 846,209.53107,221.01721,24.823364,46.96945,0.0059974054 846,3.0328484,200.49023,31.824677,65.1051,0.0018943964 846,570.0348,221.51404,25.437256,45.397125,0.0012790804 846,1.3501819,214.00943,13.185252,49.554016,0.0011882236 846,616.4831,161.08434,22.663574,89.0184,0.00089038577 846,600.9329,91.52234,37.758484,183.75012,0.00043644194 846,609.84515,195.38641,29.301514,131.1437,0.0003238188 846,612.294,374.49756,26.852661,129.65765,0.00025736348 846,274.55652,210.42511,44.42337,112.04822,0.0002264864 846,4.807041,201.02907,58.87917,236.49345,0.00018610418 846,422.50406,229.81746,22.822449,53.49855,0.000110627094 846,1.1858569,392.3377,18.322756,75.27841,6.28183e-05 846,588.783,235.87798,49.77301,248.86479,5.798164e-05 846,1.5322444,218.67032,17.589912,129.83484,4.9416667e-05 846,351.18494,432.07867,78.84912,64.80951,2.7350647e-05 846,610.87537,11.932344,28.271301,127.82977,2.6393163e-05 846,352.01932,168.23996,72.378235,148.88422,2.551929e-05 846,3.7322137,396.13977,56.658363,98.89868,1.7264289e-05 846,1.9908496,283.6487,32.173176,188.28683,1.2160899e-05 846,100.92862,399.59525,110.51279,92.7254,1.129908e-05 846,1.7297754,120.68982,17.891315,140.46313,5.7638504e-06 846,73.07598,431.08804,78.0989,64.22327,3.3040346e-06 846,513.09735,2.0670345,42.01477,56.21319,4.2853873e-07 846,464.69455,1.8542806,83.77341,78.0208,7.576777e-08 846,0.64077395,9.354241,8.890071,85.21762,2.8452016e-08 846,1.8393865,11.753991,34.554726,77.4968,1.75996e-08 846,518.79865,5.4704137,89.896545,76.27679,1.06554126e-08 847,304.4675,213.91336,25.6604,48.75183,7.6773047 847,380.9376,193.75507,25.261353,56.466736,4.13975 847,369.55164,204.2984,24.022247,50.82007,0.088126354 847,525.5619,206.4384,23.434448,50.408768,0.048967853 847,538.4157,210.7968,23.202759,49.600815,0.0071451585 847,381.01627,228.98389,18.818512,46.522827,0.0048394725 847,600.5875,142.2694,37.56189,194.6674,0.0016884066 847,393.30673,209.58156,23.947662,58.260727,0.0011976525 847,615.87775,223.78087,23.26892,95.41582,0.0006418585 847,572.14496,220.65366,23.157898,49.83792,0.0005480126 847,616.9834,161.02061,22.163269,88.161285,0.0003576329 847,294.59976,199.51854,44.08966,98.82646,0.00033911908 847,608.21204,439.64658,30.934631,67.10651,0.00031332305 847,610.0224,67.639015,29.124268,158.14142,0.00027620234 847,364.38065,184.18646,54.405975,101.41995,0.00025252215 847,616.7257,284.5704,22.42096,86.07669,0.0002460715 847,1.6653736,200.5528,18.28185,61.57367,0.00022544515 847,186.61972,436.36694,46.16945,66.07547,0.00012600001 847,588.0347,247.17772,50.236267,237.71843,0.000114931856 847,317.13992,424.36453,78.35806,76.460205,0.00011248275 847,0.9803862,231.4436,13.212424,46.114746,9.0231035e-05 847,184.77963,400.25525,120.74658,102.667114,8.3089544e-05 847,3.980057,215.78938,57.498146,221.83531,5.208417e-05 847,1.1952238,220.20714,19.021328,125.31502,3.9431037e-05 847,0.92655766,342.67834,18.904625,135.11401,3.1959553e-05 847,3.4527962,398.61746,56.263664,96.9711,1.6912905e-05 847,340.4602,135.46431,130.20065,238.00743,1.5401814e-05 847,1.4280461,443.26935,21.897495,60.323578,1.04151095e-05 847,261.0045,147.21712,138.7334,244.09602,7.387405e-06 847,2.5482454,148.73627,33.484608,163.96805,5.3438835e-06 847,587.1309,19.98695,51.64563,100.467255,3.4685609e-06 847,0.7873617,13.076706,9.886471,78.81935,4.999679e-08 847,2.2465024,21.028809,56.29691,107.1812,3.1434517e-08 848,402.50174,188.84988,26.758148,56.33754,9.762646 848,311.38846,211.46812,24.227722,51.461166,0.32232994 848,386.50446,197.04892,26.749237,59.674652,0.1378792 848,480.82642,265.3049,33.85193,78.232544,0.029290834 848,542.8178,156.65651,26.153625,52.071487,0.02007724 848,163.6419,217.0258,22.461594,53.25081,0.011188788 848,409.20862,188.14598,37.22171,113.61943,0.00907804 848,130.75752,212.0071,19.542984,45.27977,0.008090381 848,497.15033,231.94777,25.161865,59.229446,0.0020653417 848,622.3131,236.52847,16.833557,53.92105,0.001136982 848,0.9412297,210.75864,14.088377,56.504364,0.0009594474 848,540.9321,197.89098,32.895874,73.75896,0.000755532 848,611.0284,135.59462,28.118286,149.08388,0.00043243932 848,608.1584,442.55637,30.988281,62.581055,0.0003373717 848,588.4508,260.54282,49.526367,220.5694,0.00019896873 848,474.18912,215.96696,69.29825,154.59398,0.00018009443 848,611.77246,233.34969,27.374207,136.08775,8.132167e-05 848,374.19928,163.64537,92.45111,177.56215,4.8338872e-05 848,1.109148,386.81552,18.752623,111.68323,4.2774354e-05 848,612.33105,38.23488,26.815613,134.94292,3.621485e-05 848,1.0006942,225.90488,19.913424,109.94458,3.113869e-05 848,3.753558,395.64627,56.398746,100.62561,2.9039682e-05 848,3.4673357,201.67783,57.102497,233.87045,2.6118334e-05 848,1.1097339,326.18628,20.582304,111.847015,1.4728181e-05 848,2.2234604,131.54297,31.771996,165.50488,4.3821806e-06 848,1.2999048,76.79522,15.736758,129.45572,5.095803e-07 848,2.0207357,23.826403,55.294094,99.41201,5.3725962e-08 848,463.96918,2.123729,44.37906,53.396896,4.197185e-09 848,436.1541,0.48232096,41.690277,49.97546,1.637975e-11 849,478.50854,209.37758,26.396057,59.98683,94.46653 849,452.33792,184.40828,24.135803,59.6185,0.1907014 849,435.265,188.55254,24.919678,57.629944,0.04280046 849,323.00266,210.71242,19.098755,50.252213,0.039149635 849,415.9284,197.53976,27.847382,53.52556,0.010900466 849,140.51031,217.15083,21.102264,52.189865,0.005152214 849,332.3501,212.19037,27.619476,54.679962,0.002452331 849,578.2055,277.694,33.9635,72.36185,0.0020838797 849,584.9033,263.59726,51.368713,220.2489,0.001968537 849,621.8563,188.86061,17.290344,55.75174,0.0006373983 849,530.62396,211.77742,27.179565,54.819717,0.0005259116 849,611.01074,199.67404,28.115479,135.8865,0.00041228958 849,460.3738,180.46399,58.93039,117.719086,0.00036183544 849,607.8968,434.803,31.249878,69.72055,0.00035302973 849,1.8995061,194.07927,28.086237,140.33351,0.00024789173 849,583.61816,99.65203,53.633545,241.0893,0.00022679895 849,611.05316,108.48943,28.093506,145.85153,0.00016122792 849,617.4789,314.45297,21.667786,86.234955,0.00011522114 849,4.193402,192.369,58.653984,245.94148,0.00011127134 849,516.11096,244.19513,27.05719,54.736664,7.358372e-05 849,1.4026368,357.28052,17.999126,77.767365,6.190063e-05 849,3.069686,375.98715,56.469482,117.13974,6.16803e-05 849,0.79705894,415.34692,16.68559,85.97928,1.6492688e-05 849,433.3136,143.7345,132.5224,229.8274,1.2878273e-05 849,1.4180249,152.58023,18.297846,118.75336,7.377534e-06 849,609.8543,0.0,29.292358,136.46333,5.15259e-06 849,476.08292,85.51042,41.43332,151.74329,8.3998276e-07 849,1.7823877,70.271454,28.559498,168.4009,8.003542e-08 849,0.91964847,11.760491,9.410038,83.54641,3.762447e-09 849,2.228177,23.507563,55.34749,102.27923,3.4885927e-09 849,491.58148,0.0,46.64618,45.170795,1.048729e-09 849,396.38617,0.0,47.832947,46.246532,5.606606e-13 850,567.1972,213.46246,30.621277,51.58145,93.77039 850,456.76825,200.95772,32.96222,59.28804,0.72882426 850,492.84985,181.15028,38.907898,78.98692,0.69796306 850,519.50275,177.98871,25.024048,55.02205,0.2568145 850,484.87137,205.29047,24.499207,52.54117,0.07740275 850,428.18317,202.68,24.369293,49.399902,0.032350615 850,325.53174,212.21544,19.966278,45.383743,0.026834592 850,442.23865,204.64156,22.865204,47.735245,0.014989898 850,548.53156,209.43959,35.693176,76.654465,0.014209571 850,340.4362,213.438,30.077026,71.6801,0.006763506 850,597.6454,120.80167,39.98468,210.63339,0.0018362182 850,552.7008,177.5862,66.60211,126.42995,0.0016581318 850,52.35432,219.96654,37.106846,58.823288,0.0013902581 850,616.1257,73.23837,23.020996,90.845566,0.0007331834 850,616.73334,171.22945,22.41333,87.446945,0.00030959037 850,1.4053825,196.40485,17.89867,66.267,0.0002979989 850,359.1864,222.34425,24.857147,54.027084,0.0001476869 850,608.6069,439.5321,30.539795,66.5011,0.00013351515 850,611.8669,269.2611,27.279785,124.18152,0.0001263221 850,584.99243,393.27234,53.463806,102.772095,6.947863e-05 850,1.7078825,199.99316,27.98145,163.34747,5.9996546e-05 850,1.829519,348.2634,31.837702,140.62802,4.267917e-05 850,3.6948748,229.45215,57.57449,217.46182,4.064025e-05 850,585.7268,23.728958,52.825684,109.002975,3.9664043e-05 850,0.7415332,413.9869,15.987667,86.00113,2.2262862e-05 850,2.984017,95.51573,30.741623,167.99214,5.189447e-06 850,588.613,7.0659375,46.263733,46.0343,1.1928456e-06 850,1.3975953,66.21282,16.727718,137.54846,1.2931082e-07 850,2.7654166,26.45793,57.40206,99.70267,1.9852104e-08 850,497.79333,4.112754,41.349426,45.58076,9.523285e-10 850,530.77124,2.5373406,64.31201,56.527798,8.170751e-10 850,1.4154509,7.808428,21.178385,58.538376,3.0380942e-10 850,472.46585,0.05314779,42.375763,50.89099,2.3212804e-10 851,542.2082,183.97409,34.67383,63.806305,0.50987536 851,401.06012,213.01154,24.371155,49.590546,0.2933106 851,554.58624,183.34683,42.493225,114.80563,0.17215696 851,529.53577,184.10284,26.809082,47.430756,0.11680339 851,575.80896,214.80775,41.584534,98.16368,0.06902697 851,349.7877,221.45045,19.903595,52.5168,0.05010969 851,580.33685,179.39607,25.728394,66.0345,0.029937733 851,73.072075,218.16896,27.208023,54.73439,0.018213147 851,365.75192,218.9896,32.234802,80.36209,0.010887116 851,566.7568,192.43074,22.575562,52.273956,0.010255557 851,550.543,136.79817,81.42352,209.42363,0.0044622864 851,209.02832,212.24576,26.469498,56.70993,0.0043751723 851,589.69366,148.78448,41.079773,115.08801,0.0034261765 851,621.81726,238.7906,17.329407,57.345352,0.002591501 851,101.429214,218.63225,23.421753,47.607376,0.0022542435 851,497.69537,170.14691,22.689087,48.867386,0.0017770026 851,194.9136,223.35774,27.971863,61.01088,0.0009445276 851,614.70966,146.82559,24.437012,95.87602,0.00086889643 851,609.56024,203.54016,29.586426,137.85327,0.00080667576 851,4.8915706,208.33107,59.289764,218.36665,0.00048971584 851,1.3703556,197.92499,17.440796,131.64856,0.0002673333 851,608.8213,440.09198,30.325378,65.582825,0.00015412731 851,611.37006,37.55195,27.776611,149.58145,0.00013120848 851,1.8890251,294.75723,32.092636,179.91852,3.9292296e-05 851,585.36273,392.51508,53.434204,104.55542,3.3938526e-05 851,1.132063,374.8315,18.67531,122.68417,3.328587e-05 851,613.0364,313.27997,26.11029,144.04654,2.9064122e-05 851,2.4203265,134.49171,29.55525,158.82472,2.210837e-05 851,3.5938673,396.30252,56.53196,98.5152,2.0372547e-05 851,4.013802,55.6003,58.88114,260.57425,7.491481e-07 851,1.6252905,48.32638,16.913841,132.15274,6.579972e-07 851,1.6098825,15.74156,14.630928,73.03096,1.379095e-07 851,3.5686817,26.171745,58.594795,95.707375,8.5768406e-08 851,360.2918,5.5804167,42.679596,54.26027,9.550248e-09 851,585.385,3.830311,41.897095,54.41591,7.4022427e-10 851,544.52405,3.496177,44.619568,55.187496,6.8704953e-10 851,6.1454134,4.133628,64.16448,48.577408,3.0400998e-10 851,451.48898,2.0042775,43.2594,60.862198,8.912334e-11 851,514.0404,2.153786,48.6864,55.402344,4.17465e-11 851,488.63568,3.6163576,47.37561,61.399033,9.637188e-12 852,565.8316,209.86636,22.942383,52.063324,88.22244 852,588.855,209.73721,33.314514,66.053375,36.928 852,360.4428,214.68613,20.551086,52.530396,0.06452276 852,601.96844,168.73837,37.178223,104.65918,0.009748561 852,618.9231,135.71216,20.223572,68.33275,0.003879809 852,585.44275,64.39534,50.461853,236.77415,0.0035425103 852,508.33856,339.95578,99.86682,171.19089,0.003321077 852,377.7079,218.57745,25.404022,51.23587,0.0029083607 852,577.3745,389.38895,60.680725,118.98996,0.0013752518 852,610.15375,37.1518,28.99292,158.94449,0.001042494 852,253.49696,215.0261,40.832718,100.23761,0.000946007 852,182.98425,222.20279,24.535522,47.946655,0.00063176826 852,615.99774,217.33571,23.148926,87.83003,0.0004964362 852,1.26882,217.62027,57.34326,251.0174,0.0004189548 852,551.23785,175.10403,61.18457,113.77521,0.00041364832 852,251.65016,228.21735,24.06282,53.82303,0.00018606622 852,417.59534,180.69493,75.116394,162.95616,0.000150248 852,0.7618791,226.27884,18.669254,161.78421,0.0001281622 852,582.5795,15.982732,54.55597,107.67198,0.00011196794 852,609.6775,249.02402,29.469177,153.15018,9.960281e-05 852,0.9594206,322.68497,19.069628,145.07874,4.2126703e-05 852,514.8585,126.171074,118.999695,259.50516,2.7107018e-05 852,1.0681975,424.0084,16.132647,77.342255,1.4850235e-05 852,606.01733,2.3040235,33.129333,74.070465,1.4833152e-05 852,3.6924822,399.33273,56.52167,95.87326,1.1716634e-05 852,1.6032943,139.38531,19.839912,150.54282,1.0470041e-05 852,1.7506429,28.556368,18.056524,123.63205,6.5136294e-07 852,3.2589877,73.369545,57.594193,250.91827,5.1120986e-07 852,2.308885,15.705218,40.948513,79.88225,1.5867624e-07 852,3.2719858,20.287306,82.6244,143.5561,1.1303537e-08 852,511.2505,1.9826237,45.573914,54.751167,3.798239e-09 852,537.4829,2.9235938,45.707947,55.79567,2.6707188e-09 852,565.7771,4.0630016,45.195007,63.033394,1.1766957e-09 853,461.90448,226.3876,27.278595,58.33838,99.672356 853,625.42737,235.56264,13.719299,45.591446,2.7159133 853,409.7775,230.74191,25.804443,53.575867,0.09906886 853,621.49475,201.33284,17.651917,61.86992,0.07272952 853,334.33264,204.42365,22.843994,51.140945,0.009684002 853,580.90546,345.20923,56.561157,144.60901,0.005817903 853,480.66406,232.91335,24.873657,47.19545,0.004087715 853,446.9574,210.78221,59.69388,101.89653,0.0027097121 853,561.31854,115.435394,71.94391,171.09912,0.002148794 853,613.08575,139.85663,26.060913,147.2203,0.0020505989 853,195.74861,223.15819,22.439438,45.97444,0.0009204314 853,395.22754,231.67787,24.728058,52.41234,0.00068514555 853,606.0177,438.02115,33.128967,69.2702,0.00066943764 853,615.66095,344.3139,23.485718,84.125854,0.0006638392 853,263.52072,217.68178,38.552643,102.155624,0.00042707694 853,602.1135,242.81168,36.123047,198.2873,0.00041324066 853,616.3676,83.32525,22.779053,83.50854,0.0003549127 853,1.7703223,195.29944,17.817854,73.9736,0.00024452704 853,179.38994,261.5683,23.606628,57.744263,0.00016565877 853,376.88022,230.09293,31.325043,70.26282,0.00011474218 853,583.5568,149.3559,29.007935,73.13362,6.7109686e-05 853,0.8688949,225.87881,17.834597,135.65134,4.5532975e-05 853,0.8547193,334.57635,19.449594,135.7998,4.4128792e-05 853,3.6156137,256.5784,57.156544,216.84897,3.7989772e-05 853,0.9480176,422.90802,16.220005,78.45688,1.9088257e-05 853,2.5244207,141.48596,33.70485,172.64957,1.8728877e-05 853,610.13904,4.81722,29.00763,94.60481,1.7136244e-05 853,418.41025,161.28334,129.85916,221.54274,1.642709e-05 853,3.3095427,429.93756,52.651394,69.101776,4.8999714e-06 853,469.54538,5.4917107,40.6127,53.26527,2.7008546e-06 853,1.4961922,94.0354,21.13811,121.890335,1.7579152e-06 853,1.4482032,25.943634,19.4028,112.146835,3.4305694e-07 853,2.828252,31.522364,61.389767,236.20248,2.5744697e-07 853,435.2646,0.94485354,42.8739,54.192196,8.365703e-08 853,583.4596,6.2658105,43.19336,51.085777,4.9639986e-08 853,407.95718,0.2597526,43.592194,57.213295,3.7647876e-09 853,546.0464,9.293231,41.740906,52.935493,6.948274e-10 853,0.4563965,3.9343457,32.73883,70.241486,1.017638e-10 854,536.9834,227.42279,42.379272,91.89392,33.93965 854,598.168,345.09583,39.718628,71.0636,0.009240368 854,255.33347,205.02544,26.769196,49.34723,0.008573495 854,334.04285,206.85846,22.957916,48.443573,0.0041575045 854,191.42825,208.32657,27.031433,53.075317,0.0027025244 854,560.0094,258.7411,20.057495,48.492615,0.0023492882 854,298.6559,245.01266,21.197601,51.026764,0.0012506143 854,127.87761,224.12003,20.5206,46.927765,0.0012345389 854,584.7599,251.47105,52.11566,230.33907,0.0006483193 854,49.91947,206.35687,42.22966,131.93832,0.00058609137 854,610.7731,192.2042,27.98285,131.28186,0.00043191912 854,616.9279,272.2632,22.21875,91.05902,0.0002762392 854,610.53064,79.53587,28.616028,167.82825,0.00024820844 854,1.9286312,180.52724,18.526289,75.12448,0.00023184458 854,592.5062,202.45197,36.108154,82.00314,0.00016780662 854,462.7256,173.30234,36.463867,86.074036,0.0001400436 854,607.7515,434.37827,31.395142,70.28491,0.0001367823 854,1.0903084,293.10013,18.534153,159.15695,0.00012560532 854,586.14105,103.38307,51.47882,243.99052,0.000112088455 854,412.66272,230.58022,38.08792,108.372696,7.5160715e-05 854,2.095923,206.98117,32.360947,183.1666,6.912544e-05 854,3.518633,310.24542,57.06121,179.79965,6.888596e-05 854,483.68286,253.20975,108.23877,215.19449,5.043604e-05 854,0.9460181,423.34848,16.325981,78.18237,1.4225776e-05 854,16.747314,183.2844,110.96015,218.9773,8.907937e-06 854,3.4345703,430.5434,53.351578,68.629364,5.742683e-06 854,1.4167457,72.35196,18.881754,142.95807,1.6784002e-06 854,598.546,6.3834834,40.076843,74.47756,6.68103e-07 854,3.2183726,60.420235,60.325848,245.79944,2.7155852e-07 854,1.7678028,18.882608,59.00661,112.089485,9.935233e-09 854,0.47471192,3.992881,22.103436,67.36815,2.05895e-10 854,429.9712,1.2894304,57.62976,48.75684,3.6002628e-11 855,312.40158,198.92825,30.314667,63.262543,7.7245803 855,605.5363,154.00137,32.67102,79.036545,0.028147155 855,331.11154,203.04295,24.432983,50.956085,0.0017950551 855,624.39087,174.16325,14.755798,46.081406,0.0011940806 855,584.15344,43.325306,53.832214,204.77614,0.00092664413 855,308.82645,227.29694,18.819641,45.93097,0.00053456955 855,616.91077,89.69334,22.2359,91.84333,0.00029497684 855,250.25586,210.42213,23.507599,46.648026,0.0002753557 855,485.38263,270.76898,82.95911,195.88461,0.0002432738 855,617.3897,186.02509,21.756958,83.42145,0.0001843009 855,617.0122,327.46906,22.13446,82.80768,0.00018078637 855,617.16956,264.35638,21.977112,84.34656,0.00014602729 855,585.1765,171.69504,53.776855,264.71335,0.00013748248 855,610.8147,371.05402,28.33197,128.95734,0.00013195412 855,168.5318,214.28578,22.43892,57.79512,0.00013090327 855,74.17727,221.86201,22.839592,48.225204,0.00010993914 855,1.1690178,398.42062,18.308102,76.052155,0.00010815946 855,0.85981447,316.2433,13.492857,50.50064,5.441466e-05 855,1.3947258,144.10864,18.663366,80.14714,5.0920647e-05 855,1.0342505,276.58603,18.651072,74.4819,5.0453502e-05 855,1.3022299,186.88277,18.428501,127.686966,4.7094436e-05 855,3.8934798,344.39865,58.20237,148.07043,4.525185e-05 855,1.0932292,350.5021,18.506428,81.36209,3.2839554e-05 855,554.89075,424.99936,78.25122,73.499084,2.5605053e-05 855,1.5894214,255.53452,33.739014,190.44077,2.5279294e-05 855,291.10043,179.22052,73.00879,151.32907,2.1914868e-05 855,470.11142,422.40277,74.92551,72.75809,1.3836267e-05 855,3.8569548,148.28018,58.760387,224.4252,1.0649495e-05 855,11.712116,430.4456,76.52222,69.67099,6.8771683e-06 855,2.2280324,84.18393,33.441525,171.49097,1.7823455e-06 855,1.453016,52.37162,20.863388,97.606224,1.0400845e-07 855,2.3290071,21.117878,80.4531,138.99619,5.3954764e-08 855,0.6035323,10.389948,11.009283,85.80891,1.2624303e-08 855,0.96606284,8.958952,37.688305,83.791534,3.5693681e-09 855,0.80015385,0.15707682,21.167946,45.074677,5.386892e-11 856,321.85028,210.71881,26.901123,51.639435,3.3274453 856,310.38516,212.94725,22.107727,47.43651,0.19629775 856,336.27966,216.24129,23.20639,54.45201,0.04166837 856,485.27112,259.13977,23.163422,45.785583,0.011629466 856,348.79034,222.91011,23.65393,58.824722,0.0024501197 856,608.0081,436.95364,31.13855,70.36667,0.00045926005 856,617.69806,144.06744,21.448608,79.27556,0.00029352412 856,618.097,286.4783,21.049683,80.16974,0.00028627762 856,617.26855,233.13412,21.878113,79.28696,0.00019455956 856,612.0573,329.98914,27.089355,142.09503,0.00014157283 856,612.1669,48.26612,26.979797,146.92288,8.872555e-05 856,602.0384,128.14131,37.108276,184.69225,7.260877e-05 856,1.2381592,162.58594,18.633318,81.98537,6.857089e-05 856,587.0322,217.29176,51.66797,227.80418,6.8217756e-05 856,1.1450814,407.20233,18.165606,73.421844,5.868201e-05 856,244.52914,244.59972,23.226868,56.470413,4.9989263e-05 856,611.77026,3.6509213,27.376404,78.09625,4.4379736e-05 856,1.4244792,315.81458,28.609285,145.50934,3.530583e-05 856,0.88866454,297.68842,18.583378,74.69028,3.0879753e-05 856,1.9225008,178.01694,32.171192,164.78528,1.8592807e-05 856,0.75497806,254.06683,18.601955,75.574524,1.7138891e-05 856,3.8620052,400.876,55.900764,94.62082,1.5800248e-05 856,333.6457,170.13336,73.91342,142.82126,6.7255514e-06 856,485.72656,82.41078,40.019043,130.16725,3.6411268e-06 856,584.5123,15.358154,53.325256,103.60151,3.2983803e-06 856,1.7729045,59.176563,34.715767,184.99069,1.0775311e-06 856,571.6673,0.24745117,66.222595,50.504066,7.09271e-07 856,1.3729582,53.03035,20.752602,99.89,1.03216976e-07 856,2.0907228,23.407911,80.99096,136.32109,3.5635537e-08 856,0.53245443,6.00667,14.127194,81.23646,2.0329618e-09 856,458.17804,2.5845492,40.477905,46.55948,2.214439e-11 856,550.2933,0.0,45.148743,47.49639,1.157811e-11 856,497.526,2.1915479,44.908325,51.77895,5.8129183e-12 856,522.7943,0.42735678,45.41284,46.435513,1.2641962e-12 857,318.10596,207.13701,25.513733,57.1696,0.3117364 857,597.561,199.9063,40.116028,120.671005,0.2686333 857,613.9972,211.36,22.12738,57.252792,0.01598229 857,584.1999,209.11378,35.14746,76.3488,0.0044217515 857,571.7265,122.391785,65.58197,258.09738,0.0017184868 857,625.08136,267.00403,14.065308,47.587738,0.0014030472 857,624.3341,189.51958,14.812561,47.85652,0.0011583877 857,623.3062,238.01488,15.840454,52.571304,0.00066881865 857,614.4903,135.20721,24.656372,110.0381,0.0005245391 857,326.09583,196.97139,37.04489,84.67314,0.0004352046 857,616.5033,84.0269,22.643372,83.891495,0.00020999197 857,612.50946,344.3433,26.637207,136.41913,0.00020020746 857,0.0,312.47192,38.27993,187.87881,0.00019620112 857,609.092,442.05304,30.054688,63.50876,0.00015526713 857,609.3879,245.23732,29.75879,163.15523,0.00015455784 857,1.1198341,279.5664,18.674818,72.924866,0.00011222067 857,355.9741,208.1199,31.603302,63.4552,6.656166e-05 857,1.5123137,149.56505,19.826427,102.83836,5.5296186e-05 857,349.64456,229.78516,19.239563,47.828064,4.7685942e-05 857,244.91287,225.36597,21.628479,52.007965,4.0129868e-05 857,599.20514,35.399975,39.94153,231.13466,3.5434146e-05 857,314.68585,160.40022,106.34509,223.0731,3.5397636e-05 857,0.9197095,433.9595,22.448437,68.73151,1.7498505e-05 857,614.5503,13.918656,24.596375,87.074776,1.0504346e-05 857,3.5944223,123.57171,57.095776,220.61874,4.9650926e-06 857,587.9765,18.222208,42.77704,119.30996,2.7027302e-06 857,0.0,375.51132,14.6937275,59.72583,1.6466121e-06 857,1.37462,62.082287,20.940208,100.36592,1.5797988e-07 857,0.7302881,14.227894,8.6088,73.46843,1.00070515e-07 857,535.7094,0.76245606,44.595764,47.730717,5.044508e-08 857,585.7073,3.877186,44.045044,53.128803,2.418494e-08 857,2.249738,19.526499,57.484196,107.5427,2.113818e-08 857,560.37976,1.5816244,46.603394,48.02984,2.50842e-09 857,503.1711,0.0,43.77945,52.108665,2.338729e-09 857,1.6156869,5.819489,29.165356,58.828453,1.0593844e-09 858,327.95108,206.38123,23.224213,58.81778,0.5647695 858,315.74588,210.81331,20.576141,46.620956,0.22156192 858,373.23157,205.48514,23.45871,45.443024,0.017673537 858,416.09808,163.14743,32.890564,79.56398,0.010271705 858,60.31668,220.37115,23.36853,47.065613,0.0009984266 858,9.077022,202.66248,42.24706,90.07449,0.00076583965 858,47.384296,221.64095,22.983242,45.45717,0.0005058613 858,351.72473,210.2793,31.45462,72.50174,0.00044878307 858,245.59529,239.51599,23.310165,49.804016,0.0003656191 858,1.7584367,174.95346,20.999718,122.23465,0.00036354762 858,616.42413,47.000248,22.722534,81.052185,0.0002589028 858,536.6216,185.30083,25.351685,54.37619,0.00023701775 858,609.9368,74.48175,29.209839,138.77826,0.00020760724 858,616.93756,247.89825,22.209106,84.79886,0.00018275387 858,611.3257,375.7337,27.820984,126.49063,0.00012894449 858,610.9582,274.4675,28.188477,149.56479,8.4821e-05 858,365.82483,196.93005,36.977966,116.1709,6.436942e-05 858,0.95822024,159.87776,13.991487,61.257553,4.5791294e-05 858,383.1155,62.175934,24.037537,50.845634,2.28301e-05 858,0.75830567,374.20837,18.87058,124.26752,2.2359976e-05 858,448.62357,270.5179,115.85794,201.24756,1.946574e-05 858,1.1951343,266.12668,18.111525,74.71576,1.9464627e-05 858,3.4491243,97.00248,57.8145,228.96677,1.851753e-05 858,585.4358,18.040724,52.628357,115.03038,1.8147906e-05 858,3.7722805,231.46786,56.30316,236.90704,1.6208309e-05 858,2.750363,396.1223,56.897007,99.57477,1.33090125e-05 858,335.97635,172.56194,111.70178,207.54527,1.0492151e-05 858,1.1046908,112.97726,19.13808,85.72874,3.4835182e-06 858,609.462,3.1723423,29.60376,50.04,3.0022131e-06 858,555.1497,423.95007,77.388916,76.42374,2.72764e-06 858,2.1250553,21.82315,77.75185,132.11874,8.3571386e-08 858,1.0365223,13.767868,12.622277,76.06346,7.208716e-08 858,373.14438,15.179968,47.918976,131.94376,3.148955e-08 858,1.6373357,9.786595,39.646767,85.24203,7.298989e-09 858,403.01303,1.727264,41.6774,53.529495,3.818784e-12 858,427.5577,0.6914762,44.712097,53.86459,1.8294509e-12 859,336.61484,199.5018,22.828857,47.963226,0.08499933 859,103.06713,217.79318,24.515373,48.33438,0.007208359 859,621.2581,165.41849,17.88855,66.70839,0.0032211926 859,459.1284,140.9414,38.893982,117.31033,0.003006018 859,557.06384,168.7894,43.983643,119.673615,0.0018556169 859,376.12234,194.13892,33.172546,71.09827,0.0012974027 859,609.6624,106.19764,29.484253,156.63956,0.0010812918 859,619.785,93.481,19.361694,64.47461,0.00087519694 859,361.04617,204.91847,22.988342,53.758286,0.00045367327 859,535.7924,106.27223,99.9621,221.89232,0.00027119636 859,107.77361,204.96274,38.836357,79.92084,0.00014630804 859,611.23206,373.51126,27.914612,130.32791,0.00014369508 859,462.2807,149.46999,23.598907,53.330215,0.00012360788 859,611.167,203.56944,27.979675,148.73805,0.00010291958 859,181.84583,222.94638,24.743866,46.59439,7.2202056e-05 859,1.0900732,397.50385,18.32076,75.73639,7.0305265e-05 859,351.6309,170.58656,75.558716,157.92094,4.1049443e-05 859,1.3470882,184.83167,18.9855,128.77856,3.874408e-05 859,3.7542155,343.9623,58.45648,146.07425,3.623931e-05 859,1.1020825,351.57275,18.540209,79.19641,3.4445507e-05 859,594.3627,41.846714,41.12805,162.48178,3.2631142e-05 859,586.6532,226.58125,51.85504,235.41231,2.8201091e-05 859,436.29468,241.49178,109.98505,231.2997,1.8692224e-05 859,609.65924,0.0,29.487427,93.78564,1.6859698e-05 859,1.5699626,264.5511,33.71746,183.1499,1.449803e-05 859,2.1159456,419.10437,35.041107,80.06949,7.9648835e-06 859,1.9788811,114.44181,28.745722,139.78485,6.6192356e-06 859,3.7281673,157.08914,58.317837,223.4371,4.441835e-06 859,408.21033,0.0,44.958282,57.172333,1.1202174e-07 859,568.1019,44.720345,43.91516,138.36584,7.98392e-08 859,1.1999512,52.61901,20.173815,139.94766,5.5212983e-08 859,0.54529625,15.818575,57.96056,112.837265,2.2112518e-08 859,0.7103101,10.599056,10.872437,82.307846,1.23874955e-08 859,468.1747,0.0,46.178436,54.502155,6.023863e-09 859,0.501639,3.3868718,31.585405,69.54317,7.446307e-11 859,550.1021,2.135293,64.41168,53.991207,6.1856506e-11 860,340.7173,192.34055,26.958466,49.4169,0.38240185 860,326.65182,197.54881,29.277313,64.7285,0.046748534 860,377.10507,237.63461,37.247955,73.96814,0.0053523164 860,565.2112,170.93149,35.78302,70.43294,0.004159662 860,0.7607796,288.81744,57.855408,208.34787,0.002349483 860,621.0861,196.92058,18.060547,60.18489,0.0019286005 860,609.0725,98.79269,30.074158,135.47559,0.0013945685 860,380.82382,219.63756,24.688965,50.571426,0.0013272854 860,17.392015,187.90695,26.4027,47.449905,0.00052947656 860,0.8935519,348.29648,11.8290205,50.053223,0.00044437184 860,1.5517546,325.47012,22.07979,109.57962,0.00042318722 860,611.66077,380.35773,27.4859,116.289154,0.00039160004 860,537.2773,124.394875,79.51947,171.05603,0.00038920756 860,550.39685,96.497284,24.78125,53.679993,0.00027143568 860,616.5897,342.80646,22.556946,89.815704,0.00022212653 860,586.7233,136.68083,51.98163,232.92827,0.00021690053 860,31.925024,182.1516,24.959555,45.777603,0.00010934418 860,1.5745126,196.78549,17.894394,69.74286,0.000108202905 860,554.044,199.72873,37.859253,86.55829,0.00010493287 860,308.64682,207.17642,21.284332,47.49733,9.945729e-05 860,259.2636,215.81746,22.738342,50.72798,8.870804e-05 860,1.042334,419.32687,17.219105,79.2749,6.7971756e-05 860,2.191535,176.42412,33.64999,197.7675,4.3191154e-05 860,234.15443,203.06825,38.300003,127.76778,3.580874e-05 860,614.7634,13.794682,24.38324,84.72333,3.16869e-05 860,1.6131787,145.14108,18.429384,75.06676,2.094724e-05 860,306.16064,155.62064,101.405426,215.56854,1.7031743e-05 860,464.10538,273.42093,82.88931,183.04044,1.2828688e-05 860,566.03613,19.900417,73.110535,144.11635,3.7188242e-06 860,430.84937,428.0634,81.73578,70.8663,3.6157007e-06 860,528.4581,421.31952,84.05267,75.90689,3.06478e-06 860,1.756172,37.57159,34.21791,198.09961,1.3180593e-07 860,0.86720055,7.0148635,13.98583,84.61111,2.6269371e-09 860,468.98935,4.3057766,41.039825,46.63652,1.2742059e-09 860,1.1343588,0.83993816,31.593538,49.19779,1.5951901e-10 860,437.4549,0.0,43.19211,59.64784,1.03112324e-10 861,153.47423,232.16751,23.781708,46.54065,0.35653976 861,520.31525,335.0446,62.393738,133.95834,0.0729625 861,138.3301,236.02042,24.79396,47.14096,0.045616172 861,102.92531,224.25063,28.797348,53.26021,0.037534155 861,359.33176,204.49434,26.003265,45.972046,0.022057712 861,334.69794,205.81471,25.190094,59.11647,0.007010377 861,5.6252046,228.23466,23.404696,52.25682,0.0067769657 861,526.0343,356.6439,24.201355,58.529755,0.0055656233 861,544.47565,366.55466,25.347473,58.904144,0.0046651303 861,488.29865,269.2975,141.22937,207.32794,0.0033392047 861,18.65294,229.08563,24.184126,50.26599,0.0031218787 861,384.7707,186.42725,40.499634,109.98715,0.0029344764 861,64.68995,215.09016,32.16638,65.07979,0.002661731 861,460.85208,214.40509,41.688507,132.10043,0.002149706 861,31.839432,226.79488,24.595692,48.24916,0.0016296285 861,495.19037,292.75565,44.789307,154.92114,0.0014827406 861,617.5197,198.63927,21.626953,83.26662,0.00077190716 861,450.72235,211.422,23.014221,54.105377,0.0007224122 861,580.74316,386.03726,56.71234,110.71155,0.0006519488 861,54.224,228.13759,24.010414,46.631516,0.0005548981 861,586.7865,192.35112,50.494385,239.94347,0.0004981949 861,609.40405,302.93948,29.742615,150.6261,0.00048234616 861,1.4101245,239.78949,18.168558,73.49188,0.00044733193 861,14.475316,198.8314,42.370544,117.940994,0.00036139332 861,601.2116,97.66914,37.287964,209.03453,0.00027836487 861,2.1296494,216.25696,30.716476,160.7638,4.3196014e-05 861,318.2988,187.9087,71.98587,157.9251,3.303758e-05 861,1.4212223,129.85109,19.239887,147.93828,2.7300923e-05 861,366.07526,161.7402,90.944855,202.18732,2.2113558e-05 861,1.0687622,353.11078,18.335333,134.72449,1.8405448e-05 861,3.445249,241.5597,56.224487,230.03918,1.44785745e-05 861,610.374,20.775677,28.772644,144.49179,1.1254707e-05 861,1.3771224,443.69418,21.692963,59.765717,5.771243e-06 861,610.3225,0.5834994,28.824158,58.910107,2.1719281e-06 861,1.390669,36.140957,59.427376,230.37732,4.305862e-07 861,0.78888106,40.806435,20.991344,140.54938,2.4403803e-07 861,0.050473634,5.2028356,37.637894,92.75511,5.435849e-10 862,496.25632,220.53941,19.650665,45.793747,99.54039 862,415.56396,216.21056,22.875885,48.72609,98.85609 862,430.48413,215.60649,22.207336,46.66014,1.0351661 862,403.4641,217.2957,21.940521,47.229477,0.052575562 862,513.4929,213.02112,20.27533,47.75003,0.0018146944 862,482.68887,204.50919,40.16037,91.04135,0.0012774687 862,617.02563,203.51073,22.121033,84.60841,0.0007659777 862,621.1288,121.70998,18.017883,58.214264,0.0004552326 862,341.97598,208.05225,24.673553,59.287567,0.0003063716 862,399.35104,186.21803,58.87372,115.35692,0.00026223186 862,358.36307,203.97371,38.837463,119.256,0.00024555292 862,272.922,226.24178,22.422821,47.907608,0.00021062512 862,466.41406,262.37,37.65854,78.68732,0.00018785382 862,601.7391,117.71768,37.407593,183.6702,0.00018254918 862,617.02124,340.77805,22.125427,79.36688,0.00017975947 862,617.11865,151.55609,22.028015,89.27763,0.00015063824 862,600.49927,242.37917,38.6474,197.4734,9.916427e-05 862,612.21906,367.5016,26.927612,134.78128,9.598551e-05 862,610.7929,40.680893,28.35376,163.92807,3.2556633e-05 862,1.5418367,174.74109,18.571278,76.035,2.2334785e-05 862,1.1638298,342.26755,18.497177,130.03601,1.7724336e-05 862,448.09528,153.8755,132.46503,222.6433,1.6979588e-05 862,1.010765,225.7374,19.052341,132.97543,1.5912936e-05 862,1.63257,264.93927,32.166832,175.28851,1.2502864e-05 862,364.18527,154.92157,137.55536,216.84515,1.0198712e-05 862,601.2512,6.7578907,37.895447,62.93448,6.382239e-06 862,1.5557455,133.82062,19.98257,72.76721,6.060057e-06 862,1.024598,423.09457,16.141783,78.31033,4.9406067e-06 862,3.8575082,337.1298,57.76283,147.76996,4.582965e-06 862,1.9940789,132.07011,34.476727,157.88719,2.72345e-06 862,518.2599,10.4068,82.76416,72.3284,4.6210884e-09 862,2.0540724,14.763252,55.096554,114.21574,9.669511e-10 862,320.13116,4.919227,39.05609,51.55207,1.03904794e-10 862,494.56088,2.8569272,66.78836,54.208546,3.4053073e-11 863,588.2489,210.9376,34.437317,70.46144,99.943825 863,464.22278,205.63165,27.520935,67.56903,99.63504 863,353.18234,192.38649,30.28064,55.340393,0.8727462 863,481.31412,335.70407,34.615326,61.327515,0.15132767 863,452.2734,203.86852,23.824615,62.141403,0.082630835 863,483.5607,206.50839,23.359985,55.821777,0.02998527 863,608.5574,203.83934,30.589294,70.18114,0.010022798 863,441.59564,258.5945,21.552032,48.71707,0.007385843 863,416.0485,196.82227,33.855988,62.4169,0.0034747103 863,573.00024,171.72653,60.833557,163.44711,0.0032486732 863,527.83997,215.26573,29.857971,60.739304,0.0030671472 863,447.51523,177.25696,71.92166,178.14825,0.0017691281 863,341.68668,199.44162,25.393494,56.239502,0.001233127 863,396.04465,280.71005,22.282867,50.589233,0.0010249319 863,404.8781,203.1281,23.75824,45.559464,0.000711405 863,408.03473,281.41013,25.0141,55.83069,0.0003010137 863,611.2972,375.0948,27.849487,126.37372,0.00023758714 863,462.11096,288.8936,45.898834,117.14505,0.00017094375 863,610.0072,78.788574,29.139465,176.25067,0.00014671883 863,601.0492,214.7404,38.097473,220.97545,0.000120129094 863,1.3738437,207.9398,18.732918,129.52174,7.1374685e-05 863,3.790918,294.33017,58.03505,187.85342,2.1178641e-05 863,1.1018596,335.7529,19.423143,136.09628,1.9754378e-05 863,1.0015829,423.20804,16.215855,78.401184,1.2172397e-05 863,610.20056,0.73837894,28.946106,62.41865,8.291652e-06 863,587.1401,12.575261,52.00659,121.27758,1.8882066e-06 863,2.0521867,104.50319,33.00204,162.30391,1.6969542e-06 863,1.6738217,7.1966667,32.263016,78.33162,2.5246918e-09 863,419.35605,1.3149544,45.611877,54.956104,1.3330149e-09 864,582.03906,210.93253,48.341064,111.352905,99.90143 864,622.2435,215.52805,16.903137,74.750336,0.18860148 864,365.7328,200.48535,31.323822,56.970825,0.17377152 864,346.93457,196.31143,34.914124,71.25119,0.108381934 864,590.79425,460.42148,48.352417,50.72519,0.049803667 864,428.75952,202.2652,28.1167,47.984604,0.014862958 864,535.9443,148.87317,99.67499,283.48154,0.007889007 864,600.3216,261.08435,21.798584,58.272614,0.003578624 864,570.9717,301.8799,42.62921,99.67493,0.0035149697 864,610.6856,128.6277,28.46106,179.7436,0.002417798 864,319.5409,188.45735,71.53735,187.49876,0.0004818882 864,601.33154,277.79556,37.479065,226.36111,0.00039395058 864,616.8302,283.82312,22.316467,79.63193,0.00027959698 864,373.4767,213.92574,35.11133,84.065475,0.0002507674 864,447.8225,235.96042,81.37012,177.01257,0.00011592434 864,1.0727344,325.32642,18.88024,141.65714,9.513552e-05 864,3.6573665,333.55856,57.916866,154.14182,6.36749e-05 864,1.1968653,189.3196,18.13867,133.69829,5.5815515e-05 864,610.9609,8.52224,28.185791,145.0964,4.424552e-05 864,554.1107,428.18753,78.62036,78.36499,4.10979e-05 864,0.9376994,422.08997,16.352238,79.143524,1.9496061e-05 864,1.2190194,245.26912,28.48616,148.75679,1.4367861e-05 864,1.9063176,98.37832,28.473433,148.67392,1.2634438e-05 864,479.98846,276.1704,83.75391,184.64783,1.0015615e-05 864,1.5621208,9.349844,33.506065,76.99706,3.0767e-09 865,364.34222,217.00774,26.208984,63.268204,0.86750835 865,333.40793,211.04137,29.158997,67.33766,0.046151415 865,580.552,390.96765,58.305176,107.75424,0.01564823 865,397.7841,227.3566,35.240295,59.398895,0.011952447 865,367.1432,187.92499,26.506104,56.513687,0.0077335113 865,357.05453,199.4987,47.01947,132.60036,0.0065980814 865,381.63556,219.66016,24.240356,53.793854,0.00393517 865,618.13074,209.98624,21.01593,83.6561,0.0010007191 865,600.3683,104.48347,38.68701,194.91602,0.0004248232 865,332.97562,180.71562,99.37891,222.92207,0.00033248446 865,610.0787,308.0459,29.067993,158.76083,0.00032660077 865,616.5386,138.84068,22.608093,94.36067,0.0002238198 865,586.8533,171.49731,51.34247,271.1303,8.481808e-05 865,0.8840202,214.78839,17.98062,72.28467,5.2924002e-05 865,1.0702531,406.06137,18.138186,73.62677,3.3536027e-05 865,440.90698,236.945,84.214355,199.8461,2.5055553e-05 865,610.3656,15.465248,28.781067,170.89685,1.7411114e-05 865,294.4194,428.0976,73.24686,68.31076,1.6016147e-05 865,0.85407555,256.19293,19.529076,137.84177,1.45971835e-05 865,1.318864,324.72784,28.14387,145.47336,1.2463126e-05 865,3.8907619,213.1123,57.725685,234.42905,1.1641388e-05 865,1.1656902,135.58803,18.689377,72.9315,1.0158602e-05 865,2.1522257,170.25494,34.137543,170.94543,8.171467e-06 865,3.553021,399.40866,56.372723,96.51343,7.1275385e-06 865,541.772,436.33307,40.70044,64.85153,6.184628e-06 865,1.3775424,62.55169,28.598461,176.49857,2.7651495e-07 865,1.9685596,10.932647,34.49115,77.30871,4.6282858e-09 866,599.60565,220.01875,37.687134,104.10063,0.19107825 866,357.06827,225.5325,27.502533,70.364655,0.05478774 866,377.74225,226.32642,40.842377,89.54959,0.04013303 866,601.0548,226.11441,20.871277,51.348938,0.03457148 866,436.5818,238.18074,32.02011,60.989212,0.01921795 866,339.6546,218.11974,22.936829,51.17775,0.016450875 866,377.7221,182.08852,26.210144,51.115555,0.013035547 866,572.3181,224.22922,26.65033,55.77948,0.010002431 866,457.62402,330.88913,25.722595,53.06186,0.006249934 866,621.6061,230.75594,17.540588,57.1147,0.0060185003 866,427.41193,238.61032,76.54376,204.94516,0.0016779552 866,589.0564,225.02753,20.858582,47.62387,0.0015608781 866,580.6819,397.78958,57.076355,95.18976,0.0015579024 866,568.4925,134.26906,69.72174,284.08905,0.0004470505 866,370.8196,197.11812,20.475769,45.95752,0.000424275 866,610.9474,120.24232,28.19928,138.95917,0.00038490185 866,341.35898,205.73238,52.373047,129.61137,0.00037735817 866,372.34137,212.5603,78.61749,163.56778,0.0002804328 866,609.92755,294.9934,29.219116,160.92847,0.00016034378 866,394.45966,201.31134,24.674194,52.500977,6.9733935e-05 866,1.1390942,329.30838,19.138388,137.55548,5.303238e-05 866,1.5148641,118.98409,18.571093,132.50815,2.6967988e-05 866,3.733978,342.65854,58.59816,146.19699,2.4735371e-05 866,610.13574,12.97683,29.010925,157.18607,2.0140385e-05 866,1.110918,190.78972,18.231022,127.83577,1.7943596e-05 866,0.9838721,423.11404,16.387701,78.64737,1.5973787e-05 866,521.001,417.31146,75.46271,81.18393,1.1948225e-05 866,1.935123,222.34952,32.719852,189.98697,6.973314e-06 866,3.0177052,102.70375,59.919094,206.06413,4.0887567e-06 866,1.8112338,9.434577,34.941936,80.20342,1.94903e-09 866,515.42944,4.9924417,43.815125,49.08423,3.0813968e-10 867,377.94873,221.14597,22.764374,45.298065,0.13533157 867,528.75507,340.3344,53.277344,159.85925,0.062998794 867,389.9216,196.78955,24.086304,55.299225,0.031973902 867,332.0602,214.43349,19.719177,48.48448,0.011005064 867,532.627,379.64432,25.82428,58.898468,0.00987455 867,347.32626,227.06099,23.91748,47.926163,0.009379714 867,423.29608,206.52058,25.442535,47.547104,0.0044248947 867,554.75275,205.56506,23.574097,48.87195,0.004147739 867,533.3653,200.0258,32.61139,58.784042,0.0023456768 867,399.191,178.4638,23.501312,53.131927,0.0020833034 867,436.3402,220.03699,24.752777,48.536285,0.0019572421 867,480.68512,310.24994,39.336243,141.65512,0.00159626 867,1.2851188,262.6181,13.665092,57.506012,0.0013075169 867,498.55392,304.05417,61.095306,156.70975,0.0012596574 867,608.53375,144.29863,30.177002,139.56728,0.0009811532 867,361.2754,217.96315,22.781067,47.91017,0.00070799456 867,1.9552304,224.82823,29.087221,146.59923,0.00043904147 867,608.81824,220.2703,30.32843,137.69229,0.00040473728 867,621.1339,251.76065,18.012756,58.267395,0.00039422608 867,620.9515,289.22083,18.19519,55.527252,0.0002536418 867,1.5806974,193.22469,19.206142,70.1595,0.00021778453 867,617.18884,72.17071,21.957825,79.4959,0.00021267324 867,621.5358,344.30945,17.61084,54.699554,0.0001981652 867,612.1044,384.52798,27.042297,119.460724,0.00016195266 867,1.1450839,398.31284,18.264317,75.85849,5.1934672e-05 867,585.23914,209.50056,53.104187,259.94067,4.694485e-05 867,550.6088,417.59668,82.515076,82.23038,4.545037e-05 867,3.1390805,316.6125,58.251923,170.2843,4.257689e-05 867,1.0173218,320.379,20.72686,114.06183,3.250938e-05 867,3.416574,145.1744,59.159008,221.10683,2.1571404e-05 867,392.67825,240.93243,75.6904,197.70831,1.4670481e-05 867,586.071,24.15765,53.075684,211.12933,1.1911352e-05 867,3.261587,430.8042,53.11158,69.031494,3.839186e-06 867,1.9612207,94.04551,28.622562,158.53952,2.9749547e-06 867,421.88104,428.29117,77.52658,70.68442,2.7324202e-06 867,2.2895312,17.623796,54.690243,113.95456,1.4212631e-08 867,476.79434,0.0,40.707733,47.147644,3.503177e-12 868,461.6747,221.11555,18.79181,46.01323,85.90882 868,414.7062,190.49298,36.132355,73.0542,29.195538 868,463.4405,208.85396,37.43875,71.97545,27.772001 868,400.16525,209.06305,19.190826,47.336975,2.9756706 868,485.79382,220.96031,21.849579,45.053604,0.2658528 868,614.01666,193.47021,25.130005,74.680084,0.12694399 868,480.75955,206.33829,42.17044,90.76175,0.0153528135 868,417.61844,182.794,20.978027,45.37285,0.011077733 868,346.46036,235.09576,23.0979,55.072266,0.004173979 868,604.8859,105.281746,34.260742,204.97403,0.003075295 868,570.03827,264.0459,29.755371,48.97827,0.002688307 868,611.7201,382.2876,27.426575,116.98459,0.0010977803 868,387.69495,218.73727,24.65738,56.4982,0.0008352934 868,587.1067,248.27943,51.1698,239.68202,0.00047347663 868,402.5124,178.90349,80.694336,144.36797,0.0003788445 868,0.96230555,321.1925,19.118315,137.89929,3.551507e-05 868,442.53433,163.75674,96.031586,195.50394,3.5404253e-05 868,609.0229,0.0,30.12378,156.27493,2.9475339e-05 868,1.1591129,220.2372,18.263159,130.25398,2.7019578e-05 868,3.5348895,327.74658,58.229084,161.5474,2.3097937e-05 868,1.0246371,423.01956,16.49059,78.5105,2.2282024e-05 868,1.8102287,155.48338,18.020014,123.81691,6.999472e-06 868,3.6590755,108.86736,58.942642,207.50558,5.1941706e-06 868,3.1304135,19.858057,54.75433,109.2996,1.3986787e-08 868,468.5834,0.0,43.129364,49.004627,3.8427015e-14 869,530.4575,219.3955,25.704346,61.902573,99.47061 869,394.25772,225.74307,19.539734,45.105316,99.20671 869,517.99255,221.67393,22.827515,59.69252,78.48088 869,426.11237,209.28773,24.771027,63.092514,51.775665 869,444.44882,183.73508,33.091553,82.82944,2.9306865 869,416.45483,226.16211,20.971832,48.13153,2.3916435 869,461.96323,177.38446,25.753143,61.176224,0.3553093 869,573.1079,228.8668,42.2489,84.23738,0.07674639 869,424.23666,180.93686,71.60779,164.64493,0.009778233 869,555.11835,185.31888,77.62323,171.00656,0.007747092 869,607.5642,243.4974,30.126953,74.207825,0.0052467575 869,553.234,231.54388,22.300781,54.439026,0.0019923605 869,480.79886,207.21593,29.707336,65.63933,0.0019579588 869,379.05936,211.27415,40.015472,90.482346,0.0015838244 869,508.9164,185.35695,79.476715,170.48921,0.0010166613 869,38.770103,216.64153,24.703106,51.95967,0.00085081253 869,599.73956,105.721954,39.407104,232.15167,0.00080544886 869,4.24229,256.29828,56.407516,217.93991,0.00013777569 869,609.90125,37.77306,29.245422,167.1536,0.000101246325 869,361.25317,186.03964,96.4021,181.79959,8.284474e-05 869,609.17004,439.12427,29.976624,65.492676,8.0157835e-05 869,611.8025,285.70468,27.344177,146.67279,6.7663255e-05 869,1.268497,236.816,19.52015,128.74522,6.43526e-05 869,1.0823821,387.15793,19.297989,112.30017,4.5175402e-05 869,573.4705,352.85687,65.51605,134.29742,2.6975704e-05 869,610.46606,0.0,28.680603,67.71413,1.4838131e-05 869,2.5634668,177.19597,35.24648,157.7071,1.22100655e-05 869,1.5867888,137.63591,18.361702,140.52065,2.378237e-06 869,1.5903541,52.235634,17.460228,120.36298,1.483031e-07 869,1.9224203,13.721524,34.233658,73.45979,5.164526e-09 870,436.00278,228.95836,23.328339,56.452255,99.93021 870,409.95053,239.97047,22.371887,46.54741,99.21543 870,583.21014,219.67639,32.56671,59.050262,99.050095 870,482.89496,212.81828,31.57428,85.96965,53.554928 870,470.22272,206.34984,25.569794,75.71724,30.960978 870,510.27298,143.46648,38.438385,132.42451,3.2769566 870,529.07605,142.63197,30.737427,80.90752,0.19368125 870,608.9781,230.52693,30.16858,94.349075,0.13253523 870,460.0145,188.82985,73.125336,150.85527,0.0231384 870,354.54782,226.22699,21.679993,48.01349,0.008806653 870,619.4206,123.77887,19.726074,68.0963,0.0028180142 870,583.9678,70.56302,52.76477,241.64221,0.001658086 870,616.19806,59.40647,22.948608,100.6195,0.0009400041 870,415.23328,197.66794,75.54715,157.03119,0.0005181138 870,610.8755,375.4368,28.27118,125.944885,0.00022861439 870,1.1501286,224.54834,19.176222,134.25037,6.824261e-05 870,3.796914,344.77716,57.794926,144.77536,4.784127e-05 870,1.0296241,363.84058,19.148075,133.8722,4.5548266e-05 870,597.6201,8.768099,41.52655,90.073814,8.585852e-06 870,1.6323316,158.36511,19.335707,125.96457,7.848432e-06 870,1.3023186,6.617702,18.682152,56.806805,1.1201777e-09 870,436.5933,0.60975915,44.251312,49.07576,1.3590334e-10 871,533.4747,229.17688,41.129456,91.58435,99.966934 871,481.89798,251.41722,32.27951,62.343277,99.837234 871,536.01605,212.18188,27.475403,59.24713,2.3140295 871,583.897,168.63704,43.207336,97.46611,0.06575199 871,560.51196,222.82697,32.088867,89.483185,0.036033247 871,427.34116,257.33957,36.47522,92.39139,0.023114013 871,553.41644,178.4112,75.02606,173.63522,0.0043741628 871,366.56967,212.65929,22.884552,48.75493,0.0029763486 871,607.2842,168.21927,31.069458,147.44916,0.0028118803 871,426.3782,258.538,20.275879,49.465515,0.0022968317 871,445.0398,252.90285,41.586456,109.27608,0.001530207 871,500.59485,210.50113,22.88739,57.699005,0.0008104859 871,607.491,440.80667,31.65564,67.62427,0.0004858738 871,620.9384,239.3339,18.208252,61.039642,0.00035495064 871,425.2214,181.44379,169.97989,220.91547,0.0003281224 871,610.2767,58.993973,28.869995,168.88847,0.00029478673 871,461.61923,213.9293,74.992096,141.80272,0.00026183703 871,600.82495,336.18375,38.321716,158.01251,0.00015434 871,1.5940601,192.48206,17.79572,66.22357,8.129732e-05 871,1.069297,217.72409,19.027298,134.461,6.7003915e-05 871,3.287544,231.08948,57.706173,240.2626,2.6106782e-05 871,1.113838,321.6025,18.978323,137.48218,1.9884948e-05 871,0.94517255,422.57562,16.267698,78.78073,1.9229456e-05 871,3.4264894,397.51437,56.69648,97.19028,1.2420966e-05 871,2.1774366,151.61774,36.405098,160.73853,9.2931905e-06 871,1.2157869,91.33238,19.442417,153.42137,2.2088595e-06 871,586.79596,18.967888,52.16028,104.50023,2.183842e-06 871,400.97388,5.689634,60.559113,52.485577,6.479722e-08 871,1.1457772,19.519402,17.729908,140.98315,1.1262046e-08 871,493.01007,4.1174693,41.58087,51.065006,2.730478e-09 871,512.2258,0.0,62.778564,51.04554,1.2016103e-09 871,1.1289088,3.2146647,21.500874,64.39597,1.1439827e-09 871,3.0183985,17.497013,57.067013,114.6284,4.715654e-10 871,344.5467,0.0,43.576935,57.002274,4.0590195e-10 872,514.65845,201.92882,21.062988,48.832718,29.411034 872,416.65164,213.49767,22.944885,50.042526,0.042987913 872,218.1629,210.09157,19.43544,45.09407,0.02048082 872,340.1875,216.00714,23.968353,48.92984,0.008586242 872,82.43017,181.49362,22.215195,46.067093,0.0056226985 872,493.5167,205.75523,32.219696,65.918045,0.003933516 872,611.4708,204.18262,26.975525,65.76361,0.0017773873 872,400.16205,128.95744,29.057495,64.83435,0.0008657862 872,620.8387,168.36522,18.307983,60.081787,0.0007467441 872,620.72614,127.73118,18.420532,62.87748,0.0004741205 872,616.4926,358.02426,22.654053,76.59625,0.00044335925 872,605.59296,381.82568,33.55371,117.1326,0.0003175495 872,601.91284,131.3936,36.64038,174.31429,0.00030119892 872,617.5094,238.51698,21.637268,84.698074,0.00021272172 872,334.63474,206.5371,42.329224,122.07655,0.00021060825 872,1.4357259,143.57576,19.638361,93.262085,0.00013809983 872,616.87964,78.67631,22.267029,83.16128,0.00013370374 872,602.01587,224.09451,37.006104,197.36963,0.00013256534 872,492.47778,158.45566,74.48578,164.39355,0.000103655984 872,484.53632,232.9819,27.747437,58.93051,9.1542424e-05 872,1.0212532,405.83243,18.272982,73.93378,6.6268905e-05 872,357.99002,98.006355,40.346954,153.34583,6.00499e-05 872,1.2098023,190.15686,19.287733,128.70648,3.947747e-05 872,304.96814,164.62788,112.05817,216.94844,3.134795e-05 872,1.0931633,307.4902,19.26873,138.53867,1.8675975e-05 872,3.9920168,221.12134,57.927166,233.39444,1.5151871e-05 872,607.33234,1.0064778,31.814331,60.424377,1.37491115e-05 872,3.4839113,397.84515,56.444477,96.87668,1.1822208e-05 872,474.5782,115.82373,42.533997,106.26692,9.376016e-06 872,2.2800863,95.50657,34.065475,176.0603,5.3692006e-06 872,1.1971135,83.54551,19.572672,88.316246,3.7842526e-06 872,586.20447,12.37239,52.9422,117.39201,1.910129e-06 872,3.4845607,57.983673,81.9744,249.93054,1.5183167e-06 872,484.498,144.17514,22.781769,51.182663,7.014639e-07 872,1.7507747,13.550919,61.320965,129.35918,2.280572e-10 872,1.2809302,5.477653,19.007265,62.834625,4.978394e-11 872,464.01584,1.6549723,41.892,45.13758,1.3127013e-13 873,543.91064,179.44032,51.656067,138.36061,0.6040587 873,450.00543,230.24391,22.328278,50.798813,0.08987975 873,539.11975,224.91199,31.83966,77.71207,0.028576873 873,558.0137,244.51591,25.256958,57.547012,0.002011367 873,515.95984,118.591774,113.854004,232.2576,0.0010326494 873,554.5268,190.6161,20.187073,46.290573,0.00086030975 873,568.54645,365.57022,69.18988,120.35501,0.0006577336 873,348.27182,218.11096,24.893555,49.33963,0.00041515642 873,617.2582,199.43793,21.888489,86.73355,0.00036468307 873,382.74295,199.55023,22.317444,52.839203,0.0002952721 873,614.3141,349.76944,24.83258,89.71323,0.00028077269 873,474.3231,261.71298,114.07376,216.43167,0.00020421033 873,577.22406,208.47682,40.85437,100.78267,0.00019138397 873,611.0244,79.051926,28.122253,151.45949,0.00012485031 873,1.2234375,195.65674,17.981009,68.70352,9.1713344e-05 873,529.02545,301.03387,43.1286,157.45511,7.703164e-05 873,607.72546,436.176,31.421204,70.71933,6.991579e-05 873,587.4761,163.08578,50.858948,269.32745,6.1563245e-05 873,498.39062,311.87308,46.146667,127.04126,6.0986356e-05 873,439.32538,251.18756,85.97473,196.2233,5.1149647e-05 873,1.7111589,203.89682,27.831146,149.3876,3.979487e-05 873,394.7781,206.27786,22.112305,50.0047,3.181851e-05 873,1.0892872,413.46884,18.096622,72.60785,3.0397647e-05 873,1.0979508,319.34396,19.05781,138.43808,2.2433194e-05 873,3.724637,344.28183,58.685287,146.22473,1.17768595e-05 873,390.9319,89.49223,41.550964,153.92288,1.0651811e-05 873,3.8955162,185.20088,57.4336,236.88063,9.114348e-06 873,2.2067351,116.05878,29.429628,147.7742,2.2568117e-06 873,584.6548,16.618574,53.81018,107.42173,1.1345453e-06 873,264.21323,0.0,45.882324,59.808933,9.745867e-07 873,434.7299,62.2343,41.81659,107.76027,8.927493e-07 873,1.3707837,79.97935,19.567745,77.534615,5.9466754e-07 873,588.8005,5.224458,46.177856,46.734406,2.5770933e-07 873,396.96805,9.038705,42.88556,55.58403,8.445464e-08 873,420.58188,7.8871794,44.617035,54.842865,1.8651354e-08 873,311.544,4.0293717,40.774506,50.204086,1.2108342e-08 873,0.8928467,15.868757,59.394604,122.45932,6.339815e-09 873,491.66605,4.7729216,46.32199,49.488388,1.7950271e-09 873,565.4484,4.56604,42.566467,53.225555,7.8202056e-10 873,1.0433562,1.7328614,19.696411,70.649635,5.488486e-12 873,528.06915,2.769883,46.566284,57.430107,4.9220623e-12 874,604.8025,225.77972,34.30426,84.09848,0.009408056 874,406.81244,190.1854,30.76596,68.003845,0.003324132 874,622.4806,270.914,16.666077,56.99466,0.0026362543 874,493.60773,227.80449,23.41919,45.27913,0.0020874282 874,7.4727573,268.76172,31.232855,61.327972,0.0019289718 874,394.469,195.06975,23.435974,51.377884,0.0013217201 874,1.3015552,274.81055,14.4554405,56.56427,0.0007208453 874,443.85065,189.01094,23.17331,49.996872,0.0006638601 874,2.4284317,181.55994,33.372486,75.38776,0.0006031844 874,2.4673243,232.23738,57.17156,146.01631,0.0003120271 874,1.5914307,209.6059,20.156168,142.13379,0.00022486625 874,38.043415,185.08846,25.059399,49.86087,0.00013761982 874,617.1571,304.72772,21.989563,88.43793,0.00011715108 874,589.062,112.82383,49.945618,246.18228,0.00010761795 874,611.66583,372.42017,27.480835,126.70911,9.9379824e-05 874,327.1946,203.79822,21.748718,47.88182,9.6152165e-05 874,456.93005,193.4963,25.003906,55.57802,9.0427784e-05 874,467.20667,216.86131,34.095276,74.29167,8.9673944e-05 874,611.086,72.87931,28.060669,149.47025,7.8948535e-05 874,10.910837,275.72864,83.11591,201.81409,4.9318878e-05 874,1.337609,292.83005,17.9231,150.10757,2.2978458e-05 874,1.4003361,134.18112,19.337286,83.19682,1.7495237e-05 874,611.42395,13.797917,27.722717,118.22941,1.7427694e-05 874,3.3041341,382.89575,56.548294,110.73093,1.4387221e-05 874,462.89682,64.045845,40.564636,114.24207,6.135773e-06 874,0.8627938,417.6006,16.598015,84.61063,5.7933667e-06 874,464.41724,59.361217,75.49359,205.99931,1.2920143e-06 874,28.426582,425.18323,74.003654,75.4147,1.2719033e-06 874,1.844043,51.43995,59.793915,252.62979,7.082328e-07 874,401.26654,5.592702,40.28482,52.05908,1.817823e-08 874,525.76276,2.4242122,44.832703,57.60207,1.0435178e-08 874,362.10342,0.0,42.795074,54.350117,7.9030366e-10 874,0.3878841,0.0,35.355686,94.647224,3.4171357e-11 875,3.0289502,177.14565,35.978565,110.581406,0.060711864 875,451.1561,305.14307,32.289185,84.01456,0.04797383 875,359.4775,250.26643,23.762482,46.87523,0.044391125 875,6.360174,229.16785,21.032011,49.66272,0.0105253775 875,345.12308,212.7095,31.663635,67.607025,0.0037858768 875,104.31813,218.3058,31.87822,58.52318,0.0030239765 875,10.216527,179.48947,24.136646,47.6783,0.002686319 875,510.79272,211.13962,24.111023,53.27835,0.0026776942 875,33.030403,213.87128,23.11346,46.154053,0.0014706114 875,550.7695,184.3716,26.635925,59.1568,0.0007533074 875,530.63226,212.5831,43.052185,109.22104,0.0006773028 875,1.4013176,180.08615,15.882921,60.649216,0.0006282361 875,468.35052,214.54092,23.168549,48.209198,0.0005166074 875,433.18433,263.3115,58.73523,160.28088,0.00037823297 875,1.0210853,215.57483,12.35494,46.0372,0.00035528725 875,610.6868,359.59485,28.459839,141.30246,0.0002978287 875,520.7636,202.52483,34.955994,73.89061,0.00023054414 875,611.3102,159.96616,27.836487,143.34293,0.00021829564 875,424.27515,234.51422,33.907776,81.799835,0.000117825824 875,611.1728,71.097916,27.973877,148.76553,0.0001009848 875,0.81886804,377.60214,19.198618,121.86798,7.5234726e-05 875,611.8726,254.92725,27.274048,151.09256,6.7985246e-05 875,329.97617,180.51929,86.27588,178.53387,6.1251674e-05 875,2.9749448,398.63565,56.481438,97.534,2.889702e-05 875,5.3493037,166.72624,78.0783,243.67122,2.4350353e-05 875,1.245118,224.66162,20.942059,144.35208,2.359487e-05 875,463.84042,258.60956,81.40427,194.96075,1.6230335e-05 875,609.44666,1.6608155,29.700012,55.581665,5.4624356e-06 875,586.6259,16.694128,52.33252,104.63137,2.2251736e-06 875,1.140153,60.764915,30.331768,167.55884,1.2084769e-07 875,1.0967122,13.617904,56.307674,117.513245,1.1173381e-08 875,0.36207113,1.4292936,11.115195,101.96577,1.0302347e-10 876,381.1446,215.78046,25.287964,59.235413,0.7365421 876,449.24042,289.6241,33.0083,66.144745,0.059778728 876,74.52302,224.55505,22.776505,49.594574,0.025206795 876,599.9962,130.50063,38.262756,193.50111,0.025196683 876,432.60327,272.23364,34.04767,79.62448,0.005954413 876,621.5393,254.09084,17.60736,52.63063,0.0048045707 876,620.25745,146.20355,18.889221,64.964264,0.0027308702 876,422.3771,263.01538,24.479248,59.523224,0.0015916692 876,624.451,186.20482,14.695679,46.129044,0.0012402883 876,615.6867,268.15634,23.45996,94.11569,0.00067253725 876,366.57886,202.73138,54.480713,106.6835,0.00061927305 876,1.8727092,157.49275,18.583178,81.38614,0.0005517179 876,611.58234,350.17166,27.564331,150.06143,0.0004511372 876,621.35645,343.54016,17.790222,58.27417,0.00041265148 876,625.1433,317.1449,14.003357,46.71039,0.00032773215 876,411.30087,213.28278,32.575806,64.85092,0.00022051737 876,413.22656,239.90219,42.64151,130.72745,0.00021768715 876,202.83372,225.08339,23.243256,50.402756,0.0001706805 876,571.5088,197.26463,67.045044,253.39977,0.00011247974 876,391.4623,215.59946,112.80844,229.68738,8.087449e-05 876,1.0719393,399.25983,18.125082,75.65561,7.779263e-05 876,623.61163,218.66295,15.535034,52.18956,7.449804e-05 876,610.68427,60.680027,28.462402,155.20306,7.0512615e-05 876,0.8571305,215.88048,18.79236,76.30745,3.7882903e-05 876,578.7337,286.05533,23.030518,49.557922,2.275693e-05 876,3.9644744,322.92596,57.8192,163.64447,2.068453e-05 876,0.8510832,269.92816,18.323643,74.44318,1.3633881e-05 876,0.99441004,323.78558,18.577211,72.53647,1.3236938e-05 876,2.1176074,99.2022,34.694576,165.96744,1.1198743e-05 876,1.1653703,442.71475,21.680737,59.914337,1.0325664e-05 876,1.7780657,217.55331,31.677345,179.71484,7.6116057e-06 876,3.296097,430.5649,53.00505,67.70474,6.5218856e-06 876,134.25626,431.18747,70.48976,65.515656,6.190503e-07 876,585.8685,16.849375,53.278137,113.80227,1.8852691e-07 876,2.014619,13.775397,56.178886,122.29891,6.8083517e-09 876,0.5705444,4.6792645,9.440899,92.193535,1.9084219e-09 876,586.9385,0.013567708,41.144043,46.08464,9.593915e-10 876,484.93057,4.6422267,42.851288,51.857594,6.7432476e-11 877,447.3575,193.93605,27.38504,58.368332,0.82189506 877,582.4978,391.5714,56.648865,99.726715,0.14523052 877,539.04047,248.2832,24.78125,46.455933,0.08097367 877,615.4541,379.81598,23.692566,79.35196,0.006529007 877,416.42676,208.06676,23.83554,46.21382,0.0062410412 877,434.22247,199.91263,40.283325,128.79156,0.0016272275 877,1.2964966,156.90344,18.168375,77.62718,0.00022586974 877,477.1451,138.59914,33.84958,69.19516,0.00017889513 877,616.7118,67.33647,22.434875,82.84932,0.00015575149 877,617.74274,164.45898,21.40393,79.135025,0.00015284128 877,1.0941187,392.39008,18.369017,76.93271,9.583815e-05 877,617.03754,243.55995,22.10913,83.292465,9.105675e-05 877,602.6504,122.71904,36.496277,176.64989,4.8480142e-05 877,3.5039845,397.56052,56.431824,98.062164,3.3341184e-05 877,402.00293,174.05664,108.54645,226.2757,2.606439e-05 877,614.8529,13.243441,24.293762,91.66242,2.5168927e-05 877,0.74175745,223.69357,13.71058,50.176758,1.7692824e-05 877,1.0011271,215.40948,19.125502,138.65286,1.666477e-05 877,1.6930542,303.12253,32.355545,175.89697,1.4195433e-05 877,586.76215,168.38112,52.38452,291.2188,1.4107711e-05 877,3.9186573,177.05957,57.651375,242.92023,1.1637279e-05 877,0.8726514,316.535,18.589483,74.272644,1.1514696e-05 877,583.83075,12.953529,54.849915,194.31519,8.777932e-06 877,2.0727677,100.88178,34.86051,158.45773,8.405376e-06 877,526.73737,204.08076,76.50256,170.48723,3.474911e-06 877,195.49301,435.01678,71.429596,64.77573,1.7810132e-06 877,1.3019133,117.096855,18.934715,65.40023,8.74791e-07 877,33.01744,433.2125,77.016205,68.8208,8.490272e-07 877,2.0312517,14.661328,55.841442,119.12698,5.2500995e-09 877,0.65598917,6.4573603,9.162209,89.64979,2.7849851e-09 878,483.551,219.45149,22.362152,50.144028,0.08461798 878,613.88385,166.65492,25.262817,54.240402,0.04277982 878,507.582,219.83412,21.964203,46.63405,0.0066202227 878,308.11133,187.2142,22.526031,52.217026,0.0060859104 878,595.89636,169.6763,41.590088,129.60544,0.002176284 878,621.303,136.03424,17.843689,61.469803,0.0021160818 878,610.8996,355.22662,28.24707,146.49106,0.0005347796 878,2.7051368,198.19852,32.79779,66.25952,0.0004927211 878,608.1043,59.02935,31.042358,77.97817,0.00030247148 878,1.2204163,213.92418,13.746928,51.082077,0.0002360919 878,29.322412,197.66376,31.873228,62.074707,0.00022946845 878,586.1572,246.3125,52.67169,244.14261,0.00012893404 878,616.5842,269.78162,22.562439,89.27838,0.000121458244 878,1.0782439,385.51,18.390816,75.49884,5.353305e-05 878,1.3044401,210.33875,18.750933,128.51788,4.8043636e-05 878,0.69763106,302.96017,18.804192,78.22946,3.597722e-05 878,1.5244914,249.19084,32.91307,191.6075,2.7102004e-05 878,610.491,7.125723,28.65564,89.229095,1.850796e-05 878,3.33167,327.5781,58.202305,160.01254,1.7638438e-05 878,583.33826,15.663028,55.31781,207.71985,1.2735922e-05 878,493.36664,157.66321,84.506165,156.28479,8.818611e-06 878,4.59647,162.09386,57.721176,203.28734,5.6975905e-06 878,2.024383,418.90775,34.73281,79.80673,4.85941e-06 878,1.7166733,122.95948,20.335234,131.57132,2.487318e-06 878,566.81525,5.307661,64.12164,54.110504,4.8730516e-07 878,388.3816,2.978177,40.204315,53.322372,4.8319006e-08 878,361.09927,4.146657,40.977325,50.20315,2.8204122e-08 878,289.56073,3.9987257,43.7334,53.490826,2.8001987e-08 878,319.87375,5.857723,41.035767,50.941322,1.6826808e-08 878,1.25625,6.1033792,27.921082,55.897488,1.0579829e-09 878,545.36334,4.177253,44.452515,53.597176,4.1043133e-10 879,318.96732,196.94814,21.579071,53.782806,1.9434736 879,620.2566,220.8457,18.46289,56.25943,0.21679015 879,610.21204,151.03743,28.769836,144.95314,0.09721377 879,607.8277,116.915535,30.071777,74.92097,0.04196005 879,619.3661,159.74942,19.780579,56.730637,0.02357327 879,579.89655,96.71499,56.338623,145.38492,0.022121865 879,24.065624,198.63536,26.104897,53.521683,0.0041863965 879,438.54486,238.89516,27.36145,58.149185,0.0012221767 879,587.92096,195.8069,48.832153,227.17427,0.0012098185 879,618.05054,48.32779,21.09613,88.671234,0.0007433102 879,523.83936,240.05261,20.915344,46.471405,0.0006512975 879,610.62244,367.6925,28.524231,135.21924,0.0003445974 879,1.3343595,218.86176,18.662798,76.272095,0.0002698862 879,0.91497153,383.29272,18.877373,79.66577,8.857988e-05 879,332.84988,191.05435,23.440002,56.327637,8.400623e-05 879,2.9335027,397.32208,57.285587,98.497345,4.634503e-05 879,434.05087,431.8822,84.98837,72.41681,4.560277e-05 879,1.3355566,162.26357,18.842628,87.405106,4.4548036e-05 879,2.1193025,194.85251,33.89039,159.85489,3.6269183e-05 879,608.4569,4.4769306,30.689758,84.85008,1.7891207e-05 879,0.87829673,255.0622,19.380438,149.97818,1.543899e-05 879,1.1094254,441.3744,21.815321,61.70874,1.3947832e-05 879,295.18567,154.69646,79.86395,156.22997,5.1299958e-06 879,21.624222,429.78903,81.39952,71.66077,1.9726433e-06 879,565.7211,2.4518995,62.012024,55.35971,2.8518299e-08 879,2.4243913,13.825013,55.133408,120.550095,1.0480097e-08 880,585.7999,169.89957,28.689392,53.09398,0.73272336 880,468.7945,196.59232,22.93808,54.89441,0.007358285 880,609.61395,159.61472,29.532715,133.35477,0.0048714713 880,138.26411,161.01294,39.644333,74.92647,0.004128245 880,623.7822,180.31107,15.364441,47.247894,0.0019091576 880,620.6641,140.09863,18.482544,62.28882,0.0013666698 880,621.09076,205.0524,18.055908,61.046295,0.0013555663 880,353.362,429.43982,85.84775,75.14203,0.0009745693 880,594.1774,221.5087,34.17102,61.422913,0.00051427353 880,347.0421,184.48471,22.891327,56.37407,0.00034991722 880,607.866,440.3774,31.28064,65.87088,0.0002279821 880,616.59357,85.940735,22.5531,83.05667,0.00022071344 880,618.8433,257.3418,20.303345,82.30258,0.00018056513 880,617.4113,329.0606,21.735352,86.480774,0.00014277018 880,573.80273,194.03568,43.417908,131.15015,0.00014080561 880,2.7065568,154.96584,33.347908,77.18558,0.00012022261 880,583.373,52.8607,54.845398,223.79213,9.268387e-05 880,588.591,194.64418,49.539856,229.36769,7.032525e-05 880,1.3888599,298.53506,18.174522,73.604095,5.7094094e-05 880,0.7196871,215.98935,13.831936,50.308533,5.1757765e-05 880,571.07837,358.72333,67.72345,130.96362,3.3120803e-05 880,1.2048405,190.57004,19.772795,144.08707,2.9363395e-05 880,455.21713,428.2941,78.6763,71.11075,2.8247227e-05 880,1.6546599,331.37515,19.90836,103.02365,2.8202112e-05 880,4.172762,164.28282,55.274002,225.20708,1.3830885e-05 880,5.8405666,358.4859,76.60682,128.72504,1.1663156e-05 880,221.65208,431.0839,74.341934,71.474976,1.058958e-05 880,1.0649984,382.87814,18.713875,117.07556,7.855262e-06 880,3.2007098,424.23737,52.457336,79.79584,6.171418e-06 880,402.72943,430.02737,75.250946,71.17374,2.5627814e-06 880,587.72253,19.047483,51.08362,107.52869,2.3008142e-06 880,125.07326,427.15198,72.64227,74.20029,2.096578e-06 880,30.88238,426.86374,77.24224,72.64111,8.7014485e-07 880,513.9254,428.7168,72.783325,72.05499,8.122454e-07 880,180.90852,431.29474,73.10773,69.41815,5.209447e-07 880,2.2469027,19.410856,55.24495,110.305695,5.0188547e-08 880,0.72697145,7.7828193,10.735994,87.20139,4.833105e-09 881,553.33496,193.62073,34.885498,75.51523,0.03405915 881,581.6492,201.59361,25.769165,57.84932,0.01945542 881,620.7301,78.41789,18.416565,65.57034,0.0016209271 881,340.31973,197.15155,22.556183,46.543304,0.0013415558 881,252.6914,231.45016,21.042969,46.898773,0.00088782865 881,611.4091,367.06863,27.737549,136.94174,0.00069875456 881,610.9404,95.71757,28.206238,153.3176,0.0006754696 881,545.8002,140.01076,73.47534,157.28471,0.00056384085 881,611.08765,188.54532,28.059021,148.3458,0.00028834885 881,240.21513,205.69841,43.155807,86.14369,0.00024032222 881,617.19226,335.0779,21.954407,87.04343,0.0001808024 881,1.7664909,195.47331,18.043041,74.6414,0.00014551014 881,10.638631,218.36533,24.61699,46.503693,0.00011007867 881,1.1219459,392.41788,18.174906,76.56381,7.268366e-05 881,586.0887,223.24638,52.92334,259.8009,5.8723992e-05 881,264.93515,223.87926,34.457184,65.53688,5.2714306e-05 881,1.2465382,226.87329,21.216421,102.75949,4.3010048e-05 881,5.2167354,289.2434,77.561386,191.27448,4.237855e-05 881,0.84740806,330.68713,18.444712,76.5661,2.7860313e-05 881,1.4705591,247.66974,32.201786,188.81302,2.0551452e-05 881,368.97708,115.054405,56.630737,138.57379,1.6267248e-05 881,1.247653,443.6808,21.705032,59.37903,1.3468887e-05 881,3.4816146,398.9922,56.21271,96.15521,1.2919101e-05 881,1.7625773,146.5725,18.246243,78.36061,7.0017413e-06 881,2.1820712,97.86147,32.44546,172.0062,6.503886e-06 881,587.63446,22.97185,50.457397,108.94269,3.5802213e-06 881,495.41495,432.09567,80.3804,65.67886,3.5290877e-06 881,4.2220216,97.46055,77.94773,248.34784,1.5218473e-07 881,1.198811,58.66618,14.980125,135.64304,4.7038284e-08 881,2.1564162,19.612204,55.637997,109.60403,2.766425e-08 881,0.72213095,8.270013,10.029583,86.052284,1.14999965e-08 882,387.40543,201.02971,26.24585,52.097153,4.818315 882,429.23898,206.15459,39.218903,65.32915,0.032012824 882,509.4021,144.25471,27.11377,60.282288,0.012709781 882,621.6119,167.71654,17.53479,55.367798,0.0062873974 882,378.88876,165.13652,53.272095,108.31889,0.0012177825 882,601.1654,298.15762,37.459473,185.69864,0.00045850038 882,1.8929428,184.31772,16.86689,65.12323,0.00022471961 882,620.50006,321.52435,18.646606,62.29181,0.00019445829 882,610.27454,156.64949,28.872131,137.0677,0.00017305098 882,1.1183276,398.31467,18.243423,74.701294,0.00011457028 882,617.04376,245.97229,22.102905,85.245636,0.00010672875 882,327.37985,204.0497,21.210052,46.23546,9.232096e-05 882,0.81766236,223.59625,13.245171,49.003387,7.478477e-05 882,609.2144,438.4197,29.932251,66.605774,7.247297e-05 882,3.6550033,198.76866,57.788307,245.57079,4.6803227e-05 882,1.1462948,351.28796,18.43943,78.70532,3.530159e-05 882,587.85474,172.0515,51.134766,235.69765,3.4950725e-05 882,1.5510905,195.19704,27.759695,140.06352,3.1526695e-05 882,1.5858456,303.67273,33.483463,180.59839,2.5679296e-05 882,610.30804,33.171062,28.838623,160.39316,2.2236636e-05 882,5.5015106,361.7685,78.93096,129.62537,1.718603e-05 882,0.78207195,289.3624,18.659483,75.43512,1.3374718e-05 882,2.5445526,84.86239,31.204643,176.16379,9.354955e-06 882,0.7885441,60.884228,13.499435,45.1602,6.9545595e-06 882,3.3478973,429.83636,52.792053,69.113434,6.380462e-06 882,343.89966,125.830795,138.36935,208.58144,2.153695e-06 882,137.62694,27.994362,40.793427,129.77515,1.9238833e-07 882,151.56604,9.560941,39.072876,49.7251,1.2422898e-07 882,1.0625196,26.783451,19.575617,133.01556,9.9510366e-08 882,122.672905,8.1851,42.541924,51.743145,8.160044e-08 882,4.6198993,25.657774,76.564285,135.55008,4.7398075e-08 882,0.80833536,10.721488,13.497029,77.33082,2.4796654e-08 882,96.11991,5.0471973,39.8323,54.04532,1.976709e-08 882,19.550982,6.192925,39.337837,53.62865,6.0612972e-09 883,361.98016,197.73268,23.789337,51.115158,0.00093293283 883,426.40054,182.7455,40.521027,83.69273,0.0006960955 883,602.79407,97.80968,35.953125,185.46645,0.00039455103 883,617.91095,81.388504,21.235718,76.31552,0.00022790648 883,617.1673,197.11903,21.97937,81.33705,0.0001604524 883,599.6409,200.45844,39.505737,177.00558,9.8999655e-05 883,608.4285,437.10138,30.71814,66.068054,9.345268e-05 883,1.594087,186.31088,17.821533,65.81569,8.2404105e-05 883,504.69604,131.83878,79.88049,185.02676,7.4690404e-05 883,617.4361,255.47655,21.710571,83.83592,5.7898756e-05 883,602.36035,342.74377,36.786316,147.0998,4.4773475e-05 883,3.6304004,284.6216,59.012375,195.95502,4.418118e-05 883,2.328121,164.75568,28.594486,135.52966,3.092744e-05 883,1.1374586,377.96872,18.469976,77.125885,3.085173e-05 883,610.6868,10.28599,28.459839,118.31608,1.9976296e-05 883,1.0358,308.48312,18.332367,75.31195,1.619774e-05 883,1.8667554,92.14416,18.834822,137.84235,1.1636768e-05 883,4.61376,150.3336,56.261925,232.50566,9.207128e-06 883,1.0027376,422.91354,15.898141,78.23834,8.68204e-06 883,254.73978,18.901342,109.42389,105.582405,7.206276e-06 883,427.0585,145.86594,95.83133,198.67514,6.09223e-06 883,565.34106,16.642076,71.71301,146.81564,3.0145327e-06 883,3.376455,431.57556,52.49965,67.855194,2.2281465e-06 883,591.1689,6.2748065,44.388123,51.530285,1.6902545e-06 883,233.27104,6.5726857,43.603653,48.497837,1.2477141e-06 883,308.56393,12.491505,76.531006,77.48448,1.1703296e-06 883,260.6041,6.976462,42.670563,50.84615,8.7110135e-07 883,145.99724,8.897631,77.1936,67.87816,7.8994316e-07 883,193.93013,12.935645,111.87038,108.67905,7.177932e-07 883,299.68234,9.019414,44.673035,52.47534,5.646825e-07 883,351.41824,13.059125,82.3811,82.04285,2.9883915e-07 883,324.97546,8.445793,40.05966,45.977898,2.5150914e-07 883,396.21643,5.104525,43.314636,60.353596,1.6261835e-07 883,110.7602,4.928555,41.315926,57.444557,1.1462292e-07 883,422.36505,3.9604428,43.58606,52.572834,7.7401396e-08 883,484.24423,5.744919,43.2482,57.025097,6.3673994e-08 883,449.78958,3.3911881,44.118713,51.05341,5.2900482e-08 883,351.32227,7.508983,41.796143,46.874825,3.2247737e-08 883,565.61505,5.3578467,42.839783,56.820515,1.39275285e-08 883,2.2236052,8.560866,36.168545,87.09789,8.005324e-09 883,538.9841,6.322969,42.707397,57.033787,6.0350875e-09 883,3.2311037,16.647865,79.50268,161.08249,5.9046474e-09 883,510.701,6.742225,43.47455,54.18773,5.7865437e-09 884,503.81772,206.66673,24.763275,52.479324,99.91948 884,540.2668,213.17494,23.759338,49.327225,99.52874 884,519.8325,209.04329,23.71997,52.248642,99.44733 884,425.0819,218.4714,29.26471,57.610626,0.019743541 884,349.4973,172.29318,31.901154,79.33836,0.010112242 884,531.91736,194.00568,45.635864,90.246765,0.0016445866 884,620.69684,195.35269,18.44983,65.20178,0.00096071453 884,611.42413,380.8472,27.722534,119.12521,0.0006644073 884,341.98602,196.64943,21.61676,53.63359,0.00040051204 884,490.06064,184.60516,57.602448,97.87561,0.000372308 884,610.6558,107.37566,28.490845,157.9021,0.00031084445 884,368.6619,184.63466,34.98651,77.40227,0.0002958313 884,616.6459,226.14146,22.500793,93.372025,0.00014123759 884,1.6412525,186.27824,17.193666,71.153885,0.000120817196 884,504.51044,161.0112,91.26141,183.92001,0.00010233742 884,1.6042278,203.9674,28.901861,145.60938,7.259762e-05 884,611.3875,280.05988,27.759155,147.4411,6.676523e-05 884,0.9912492,398.55054,18.312346,73.92853,6.672881e-05 884,3.1127963,244.74937,57.41004,227.24345,5.8544727e-05 884,573.07513,102.28154,66.07153,245.9665,5.600426e-05 884,0.9965902,315.7888,18.345104,76.33923,2.1955366e-05 884,610.305,1.2816211,28.841675,148.2711,6.343452e-06 884,1.96229,419.95404,34.91945,79.01962,4.9744576e-06 884,290.56995,431.0598,71.56348,69.68576,3.4402294e-06 884,2.6779826,96.98725,33.304207,179.54608,1.6451711e-06 884,167.72969,427.95572,71.11682,72.73355,1.3770481e-06 884,453.46393,423.13403,72.0968,73.973114,9.137321e-07 884,501.08133,6.527645,45.44516,49.94351,2.9502e-09 884,470.46085,1.2231592,44.600494,55.407265,9.824762e-10 884,2.1755176,9.718881,32.387012,78.98258,9.305834e-11 884,431.58835,0.87533206,43.170715,51.349297,5.5673115e-11 884,538.6197,3.7301204,46.971497,50.76072,4.5219644e-11 884,360.68753,1.9324334,41.079956,48.831882,2.6195693e-11 885,460.2682,184.66151,41.06485,103.92119,0.09495685 885,489.51257,162.62556,26.015076,53.46956,0.01999448 885,475.77893,148.32544,44.61322,117.72064,0.005591883 885,397.82108,185.34511,33.50186,66.27789,0.0044581904 885,369.29108,130.87169,39.081085,121.68999,0.0009019335 885,390.6086,127.70218,23.883911,60.756348,0.00085856963 885,478.83026,227.07532,29.029236,73.240814,0.0005101385 885,617.0921,109.3118,22.054565,84.11548,0.00042080192 885,444.24792,149.01329,103.39795,187.05928,0.00026597353 885,617.33,313.89954,21.81665,80.34122,0.00020921616 885,547.3653,209.05685,51.15619,144.0535,0.00015521413 885,600.5465,96.65161,38.60016,177.1098,0.00011089602 885,612.1598,371.22083,26.986877,129.22034,9.6506585e-05 885,1.5392562,150.95071,19.230438,89.285934,9.4792544e-05 885,617.838,223.71597,21.308655,80.45807,8.1323145e-05 885,1.0173593,391.95178,18.440855,74.47693,4.495326e-05 885,587.5222,221.27428,50.879333,236.84111,4.155888e-05 885,1.0093237,215.60458,19.099455,137.39917,2.2223916e-05 885,1.1958097,205.91415,13.402694,47.329803,2.0916377e-05 885,615.0689,6.3176856,24.077759,92.57467,1.7752485e-05 885,3.6942432,337.76483,58.30391,152.05988,1.2113361e-05 885,3.6844776,172.80084,57.970222,243.86981,1.1242489e-05 885,1.0251514,293.60416,19.582266,136.10574,9.919795e-06 885,2.2727685,121.52259,36.041332,176.75269,5.778942e-06 885,1.9081202,419.2198,34.72431,80.42569,5.4873512e-06 885,555.9494,423.86426,76.50824,75.13803,2.0556738e-06 885,1.4196485,53.714252,17.559904,142.61472,3.897439e-08 885,494.78287,7.73327,46.16696,55.12868,3.3193682e-08 885,471.49756,6.1110644,43.589172,57.01307,1.22117845e-08 885,523.5359,6.973255,43.08789,48.584167,2.644618e-09 885,450.15338,8.056581,41.618774,48.897255,1.4158996e-09 885,380.4393,7.683444,40.963562,45.11037,8.7018004e-10 885,1.873711,7.580101,32.906765,82.474625,3.213594e-11 885,349.54425,4.1285467,39.136963,46.75278,4.803148e-12 886,479.31433,176.74162,35.06128,89.134384,0.016906623 886,515.9699,199.66269,23.992737,52.31375,0.0008711616 886,426.98523,194.82,28.761444,59.923492,0.0008703643 886,2.8515797,141.25096,36.74871,116.94081,0.0006127252 886,410.0878,216.77794,23.515411,51.81279,0.0004633346 886,616.818,150.81834,22.328674,80.545364,0.0004511966 886,599.847,82.31531,38.750122,164.5079,0.00026821945 886,620.96704,79.3144,18.179626,57.6466,0.00018988953 886,613.1352,372.39355,26.011475,128.82181,6.744846e-05 886,612.7728,243.78558,26.37384,142.26944,6.4951346e-05 886,1.5360384,207.60454,18.744164,65.03688,4.8118283e-05 886,0.7896102,425.7303,13.460745,47.90802,3.595925e-05 886,487.1549,235.72774,26.953308,57.02794,3.567196e-05 886,1.0586956,384.8233,18.411833,75.26175,3.5365952e-05 886,144.12334,167.03816,44.40332,93.978775,3.475389e-05 886,3.8983252,208.32616,56.569748,235.045,2.7773835e-05 886,0.9254134,239.36542,18.868666,79.77356,2.5498224e-05 886,1.11462,338.09958,18.264898,76.93414,1.5527794e-05 886,0.8272909,289.66852,18.646313,73.72244,8.044919e-06 886,3.438156,394.66327,56.652275,101.21481,7.508063e-06 886,1.7015951,74.98082,19.198895,154.59482,6.5655945e-06 886,1.190184,442.63058,21.570889,60.63739,4.7508456e-06 886,554.8854,393.17236,83.76013,102.83469,2.8382667e-06 886,125.33551,139.35321,100.43907,197.81033,2.172152e-06 886,434.6547,430.32935,77.12729,69.971954,1.945189e-06 886,586.8833,22.860659,52.14679,102.63278,1.4937314e-06 886,456.32828,10.141728,43.88449,54.76035,3.479174e-07 886,4.733545,71.37581,77.57379,250.68764,3.4436417e-07 886,500.75528,10.305677,82.91446,68.305466,2.6639958e-07 886,482.537,7.9296875,44.72528,53.577507,8.0438376e-08 886,240.85605,1.5420053,39.53192,58.29313,1.1811306e-08 886,517.93207,2.0830257,39.094482,45.712162,1.1561577e-08 886,264.92783,1.9541407,43.219025,59.35281,8.181827e-09 886,431.905,9.546852,40.695435,49.845745,1.9697153e-09 886,2.8315055,26.148994,55.292664,105.12043,1.5240186e-09 886,340.31073,5.1964536,44.44644,52.67615,1.1218391e-09 887,539.2172,231.89497,23.928528,45.107468,1.4726074 887,128.30058,181.92758,41.044266,72.48279,0.8536974 887,621.77264,173.21767,17.374023,54.30562,0.0020314113 887,611.02203,142.10207,27.990356,131.00163,0.00086417113 887,1.9992563,226.92227,20.22667,109.69537,0.00060081 887,1.9391903,195.21588,18.320957,70.10428,0.0004300605 887,616.9046,90.92423,22.242065,92.83694,0.0002384197 887,616.8994,231.17313,22.247253,86.36041,0.00013538096 887,612.3098,379.99927,26.836853,120.08325,0.00012568955 887,465.20737,216.92134,34.485138,66.64784,9.262626e-05 887,2.385377,126.18958,29.728062,164.94601,7.19561e-05 887,446.3924,95.40567,36.59906,102.84384,6.303699e-05 887,1.3135865,390.70276,19.426153,105.23367,5.8642963e-05 887,612.2425,288.7841,26.904175,141.0344,4.877071e-05 887,587.4322,168.4752,51.204163,239.47539,4.3466523e-05 887,396.25818,153.07376,40.541046,123.439514,4.2523567e-05 887,3.4123113,312.93356,59.326015,176.02603,2.5614969e-05 887,4.239429,140.43338,58.29961,243.8324,1.9093754e-05 887,64.532906,217.36284,80.93832,196.4008,9.193177e-06 887,506.98553,174.65022,99.35248,212.08235,4.777917e-06 887,10.005905,417.96393,77.3151,80.97443,3.1052923e-06 887,1.3575709,105.72659,19.259491,82.98967,1.7830187e-06 887,586.10187,16.481495,52.036255,109.92609,3.154667e-07 887,402.0495,5.239512,61.69931,50.362083,2.4840727e-08 887,442.28387,7.521416,43.90686,54.39047,2.1598138e-08 887,587.6906,2.6678061,39.191895,45.38479,1.5681132e-09 887,380.5471,4.655482,43.02603,46.811035,1.4745283e-09 887,476.71313,3.7197592,43.505493,50.050636,8.947289e-10 887,1.7962484,8.760486,32.33661,77.86209,1.31603695e-11 888,598.40283,215.83717,38.84265,96.373764,0.5336742 888,358.60175,199.6629,30.195618,60.09082,0.0737735 888,550.2901,233.65675,25.272217,52.524246,0.052775584 888,63.043327,194.74016,37.954025,74.82454,0.012408199 888,585.13574,115.66689,53.730408,250.05566,0.007591337 888,84.4633,212.92104,25.543312,50.335403,0.0035167467 888,621.29114,330.15097,17.85553,54.609283,0.0021333026 888,98.1118,198.70566,31.331589,62.454437,0.002067281 888,1.6118823,156.16643,20.666325,99.67879,0.0020123264 888,120.3089,195.3074,33.452698,60.25406,0.0011448595 888,620.35144,87.80943,18.795227,63.685486,0.0009391385 888,621.5322,192.89505,17.61444,54.211777,0.00085750344 888,619.5145,285.97812,19.632141,69.903046,0.0006659317 888,610.5323,297.18124,28.61438,145.74612,0.0005901036 888,1.1291285,216.6873,18.369984,73.087845,0.00012584907 888,571.53235,352.438,66.91229,134.33987,0.000107612825 888,610.16315,80.8427,28.98352,168.52544,0.000100229125 888,607.8738,435.25897,31.272888,69.316345,8.658579e-05 888,2.7837338,100.50841,47.474556,179.75804,8.594713e-05 888,556.0518,89.67917,43.369507,124.82761,2.8967825e-05 888,2.0872607,187.99026,34.05258,184.40063,2.7561953e-05 888,1.1362532,341.41684,19.056803,136.84576,2.7399989e-05 888,3.7068036,342.204,58.57997,151.23944,1.4517441e-05 888,0.98457927,424.1456,16.415562,77.351715,1.2534645e-05 888,330.78543,152.51819,106.53546,201.57635,3.8339026e-06 888,525.1698,35.555992,112.634094,269.06747,3.2166313e-06 888,601.48364,16.485046,37.663025,145.7539,2.3812918e-06 888,1.4925188,50.04286,19.873198,155.67587,1.5468807e-07 888,479.83032,0.0,42.744507,63.052383,1.6736609e-08 888,585.62274,0.0,44.651672,55.949127,1.8495858e-09 888,1.8366293,9.92152,32.483868,78.54962,3.6891099e-10 888,507.66714,0.0,87.91287,85.88296,1.7832803e-10 889,381.9718,202.99266,22.904541,52.811325,0.20126729 889,328.93195,208.83653,20.394226,45.633835,0.09199993 889,425.16165,215.76894,24.839355,47.967667,0.009716228 889,59.88011,187.78416,23.148087,46.016083,0.008292718 889,13.439528,168.44284,41.529087,77.81883,0.000640512 889,621.77875,225.16519,17.36792,57.83188,0.00046550663 889,604.7663,386.89948,34.38037,111.70096,0.00031397693 889,612.9449,153.57625,26.201782,131.69218,0.0002815355 889,616.93567,349.16223,22.210999,85.58649,0.0001674265 889,611.37164,63.751858,27.775024,154.90456,0.00014781822 889,617.4321,256.43344,21.714539,83.81528,0.00011270297 889,1.5488831,163.35669,18.117153,72.940765,8.71743e-05 889,3.3496046,217.87917,58.25403,255.64699,8.068505e-05 889,1.0825928,383.75406,18.392113,77.11487,7.3511255e-05 889,602.123,196.22276,37.02368,192.74184,4.587513e-05 889,1.9618881,172.41336,27.973894,137.25635,3.8955113e-05 889,1.0409302,253.51945,20.9517,107.72572,2.58478e-05 889,60.192776,121.98995,46.743458,79.36036,2.5432411e-05 889,314.50058,194.21024,41.436462,115.833466,2.5260786e-05 889,612.5501,7.1731677,26.596558,79.542435,2.4049777e-05 889,3.6365383,395.631,56.321224,98.74457,1.9596198e-05 889,6.784121,120.21875,91.36177,229.73892,1.8887367e-05 889,304.68228,71.72785,26.4599,59.204277,5.416599e-06 889,177.60974,154.99178,41.366333,116.58287,3.1102538e-06 889,1.517688,58.86439,18.840254,67.757675,1.3910021e-06 889,565.1067,14.655417,74.03998,148.39258,9.923236e-07 889,3.50833,50.26885,58.50076,201.50772,4.4248617e-07 889,565.63116,0.0,69.075134,56.574337,2.653306e-07 889,0.6692969,13.819812,8.72095,72.5809,2.0629392e-07 889,290.35294,46.750256,43.19049,132.02742,6.47067e-08 889,1.4587761,12.364945,36.647217,74.51825,1.7008734e-08 889,367.24942,2.4404118,46.709198,48.1747,2.4860336e-09 889,340.15756,3.429738,42.917877,47.591812,2.2817553e-10 889,546.74164,2.5881088,44.84784,54.10408,8.4255485e-11 889,448.85938,0.0,43.413666,47.36845,1.5100868e-12 889,475.67133,0.6833838,40.283264,46.014664,7.7022095e-14 889,524.8523,0.0,41.454468,48.496468,1.1124269e-14 890,533.36444,204.9036,24.323364,47.191483,89.523026 890,427.44772,176.11673,24.798431,66.94057,0.09497585 890,434.6689,176.51758,39.87265,98.6243,0.01152334 890,514.2048,204.74135,34.212097,68.584946,0.0035693059 890,454.12836,208.63303,23.959259,55.726776,0.0018742343 890,24.536722,146.47185,24.67953,48.40915,0.00102007 890,623.302,173.47833,15.844666,48.106567,0.0009784901 890,443.8189,186.62839,21.818756,51.756226,0.00061189255 890,618.66705,235.04037,20.479614,73.04639,0.0003761775 890,2.9482226,96.13906,44.35356,135.99615,0.0003021238 890,602.8676,91.10612,36.09491,178.31046,0.00029539235 890,1.3772209,132.64415,18.3403,74.66817,0.00017117898 890,617.3196,396.9304,21.827087,86.08737,0.00015411644 890,602.39355,226.77016,36.753113,170.7741,7.927068e-05 890,617.4584,292.61826,21.688293,81.094086,7.492583e-05 890,1.3042619,181.54971,20.725864,103.401764,3.2353004e-05 890,0.76735026,425.49478,13.524444,47.926575,2.8779807e-05 890,587.99854,334.73807,51.148132,151.33157,2.5345485e-05 890,1.0214144,337.05392,18.966177,134.33987,2.5207171e-05 890,513.126,163.06053,73.66559,146.6787,2.1109317e-05 890,4.4757977,148.35289,55.65159,237.04341,1.8929128e-05 890,401.0693,131.93036,108.07822,180.17017,1.5674763e-05 890,0.9185588,253.93053,18.248688,136.32933,1.478295e-05 890,610.9101,19.130632,28.236572,129.93794,1.2055024e-05 890,3.5855014,339.82578,57.925175,148.95386,1.0109081e-05 890,1.8588794,76.54848,18.757,77.772675,4.9134665e-06 890,1.1280632,442.0708,21.696606,61.070892,3.9017646e-06 890,556.11536,424.74594,74.455444,73.13345,2.8438483e-06 890,365.6897,4.8743424,43.3497,59.142868,2.923863e-07 890,394.74277,6.1739717,42.1651,49.67414,2.9659772e-08 890,332.5922,1.8823665,45.011353,61.73398,2.7897235e-08 890,2.5870183,24.103092,57.348194,121.490265,3.1844922e-09 890,416.6976,2.648379,45.329742,58.41594,1.3878146e-09 890,1.4261833,11.029697,33.461456,77.72565,2.7035393e-10 890,450.0683,4.093644,45.628113,45.470562,5.3130656e-11 891,449.7112,204.8498,23.014526,45.718887,3.696229 891,571.31647,173.92908,48.184082,115.04266,1.753263 891,596.60834,214.93411,36.31543,82.63574,0.015525674 891,618.75916,232.86972,20.387512,52.277954,0.007688055 891,515.4682,184.33862,23.778015,58.085815,0.0033408224 891,619.7952,193.25279,19.35144,64.2697,0.0017383291 891,539.54565,176.17148,34.529663,85.201904,0.0013290398 891,601.54865,114.53253,36.72223,164.86511,0.0010892769 891,447.40942,163.71982,38.0643,102.65213,0.0010725262 891,368.9032,215.21881,20.688232,45.41095,0.00094785 891,612.022,149.32797,25.560059,56.376175,0.00029169745 891,609.3688,441.5235,29.777893,64.21771,0.00023554159 891,611.71204,247.95952,27.434631,140.75279,0.00023095786 891,584.8859,183.9672,53.145325,240.5487,0.00020915111 891,599.02496,157.71188,25.293152,60.763382,0.00016142637 891,1.0045215,315.33276,19.310678,152.56876,6.5958884e-05 891,605.2251,350.41824,33.92157,140.81729,4.3472242e-05 891,2.1286728,174.07016,27.423346,153.37979,4.058812e-05 891,2.76132,217.16486,57.45842,239.0816,2.52127e-05 891,499.5504,425.20758,76.90936,73.145386,1.939884e-05 891,1.6281723,398.98102,28.636946,99.236084,1.794387e-05 891,1.4309107,112.44763,18.302752,139.55867,1.1700053e-05 891,610.354,13.898477,28.792664,154.9602,1.041344e-05 891,438.01193,147.56944,98.32449,198.20927,9.549696e-06 891,5.1270313,361.12686,79.536865,131.8392,7.946008e-06 891,583.665,3.8202963,47.37683,51.164875,1.1432646e-06 891,462.44116,0.24734375,45.307068,60.794624,4.5635983e-07 891,3.5580208,55.1993,56.433426,235.55205,3.3364952e-07 891,1.0465536,38.704903,18.711277,129.18997,3.3487346e-08 891,558.96844,3.774113,43.44629,49.637753,1.7403112e-09 891,422.5405,4.3465595,43.99716,51.401436,1.6720774e-09 891,1.5922592,9.241514,32.89224,79.29216,1.2179392e-10 891,397.39105,3.370394,40.673737,47.22997,1.4747968e-11 892,540.7946,211.29579,20.956238,47.167953,0.49311227 892,557.25806,194.0814,36.655823,80.95091,0.059491612 892,432.69196,196.51643,26.350983,55.834045,0.02155088 892,1.461464,228.01982,13.4224,55.490646,0.002353421 892,623.3148,242.09506,15.831848,50.81836,0.0018934825 892,421.21674,223.38152,41.329987,102.19078,0.00087558926 892,547.0099,151.20349,70.24963,150.37094,0.0004007084 892,611.27856,350.92307,27.868103,144.88449,0.00027565105 892,612.4019,184.25275,26.744751,101.90216,0.00025678685 892,514.85785,160.16736,58.89331,127.84982,0.00019965907 892,1.0789884,389.90793,18.424105,77.61786,0.00014198982 892,578.0203,188.04388,23.884216,56.56691,0.000100618534 892,1.8028215,182.79086,27.94893,137.4725,9.957023e-05 892,617.2893,323.25543,21.85736,85.2728,7.9282094e-05 892,616.46375,101.24672,22.682922,84.585556,6.6638e-05 892,586.80524,121.63961,51.825012,201.07233,6.070215e-05 892,565.6172,167.51242,26.021057,65.33995,5.704919e-05 892,578.0701,427.3287,61.04059,73.69772,5.078486e-05 892,448.95615,431.35632,83.53079,70.11972,3.3293076e-05 892,3.1353858,173.19019,56.41076,221.87,3.276823e-05 892,1.1531836,258.86908,32.988907,202.24728,3.0327743e-05 892,602.88464,219.01607,36.262024,186.61906,2.374847e-05 892,0.59907633,274.43692,19.128416,83.60974,1.8190118e-05 892,3.3558187,394.2076,56.30474,99.35458,1.7989893e-05 892,1.040092,113.64123,18.338394,74.02239,1.6119857e-05 892,1.2799447,153.66307,18.48813,79.78543,1.4945414e-05 892,601.74725,15.753698,37.399414,149.30302,2.185067e-06 892,1.9461906,57.093594,33.79598,203.36194,2.3301735e-07 892,591.2702,0.0,42.088745,55.617897,9.829064e-08 892,1.6315552,56.70491,20.741135,91.82944,4.5484406e-08 892,559.8344,4.5750294,41.88153,51.602104,2.1129785e-09 892,2.3174772,26.058226,57.086807,103.41501,1.8093438e-09 892,454.7099,4.773989,46.919373,48.91258,3.1505376e-10 892,404.37903,0.0,41.88974,59.026264,1.00510336e-10 892,1.4260287,6.340573,27.737123,63.072506,3.5817904e-11 893,361.55414,202.84589,24.884033,49.009064,0.0221923 893,448.4873,205.37305,23.277039,51.271667,0.012968709 893,428.31265,187.08539,24.51059,57.88272,0.005450782 893,415.14453,213.55716,24.12146,46.519714,0.0008723213 893,611.62775,372.43057,27.51892,130.05203,0.0004091276 893,617.7197,225.10365,21.42694,78.47426,0.00026095653 893,617.46643,64.33438,21.680237,74.798676,0.0001307483 893,357.4553,153.02237,40.683197,110.90991,0.00012131701 893,617.5024,322.48566,21.644287,86.731445,8.575611e-05 893,617.6058,159.53069,21.540894,83.09961,8.199506e-05 893,586.1831,257.6925,52.91748,227.97125,7.6525605e-05 893,1.0868449,390.68378,18.254477,76.69528,7.175826e-05 893,602.28436,127.514114,36.862305,174.05464,5.809466e-05 893,1.3177246,113.22221,18.672592,80.910736,5.1314448e-05 893,427.3034,427.31705,80.19696,69.79718,4.6045985e-05 893,39.084667,182.99767,24.005909,48.854248,4.2556017e-05 893,24.36253,175.2903,26.028667,51.70073,2.8973847e-05 893,1.2873389,203.85901,18.34525,72.76294,2.5205727e-05 893,0.93156743,229.35495,18.87001,134.26947,1.8060544e-05 893,3.5972967,333.4947,58.192,154.06662,1.7541948e-05 893,2.2499413,125.84806,34.31284,168.98895,1.6733153e-05 893,0.86161214,323.05356,18.617868,77.53833,1.0358527e-05 893,613.1639,9.373318,25.982788,85.53493,9.8902865e-06 893,601.1784,26.417944,37.96826,183.43289,7.333817e-06 893,1.9315072,418.47913,34.56454,80.80887,6.1808073e-06 893,5.3925295,141.63998,77.99724,262.49112,5.598035e-06 893,486.6398,430.05893,76.22708,66.87662,3.5700953e-06 893,310.8908,429.94974,72.19324,69.39383,2.045887e-06 893,147.8107,430.24304,73.87344,69.92935,1.0647216e-06 893,25.736082,430.4353,76.22094,71.431366,9.263739e-07 893,581.9533,2.1793766,43.086792,45.299347,1.2182386e-07 893,0.8823743,25.022026,14.088234,122.09847,1.03673734e-07 893,550.8434,4.527285,43.797363,57.03266,1.1311301e-08 893,2.0167708,21.165424,57.4247,113.66698,3.0461496e-09 893,1.1875644,7.34487,19.69401,56.54778,1.2070474e-09 893,524.46576,0.41581708,42.071533,61.268818,4.0879608e-10 893,361.46735,2.692666,40.486145,49.81824,1.5907814e-10 894,447.11188,212.9763,24.121307,53.055283,99.87357 894,388.18954,188.01591,36.82144,74.26778,0.018658426 894,486.3099,201.69354,31.072052,68.93277,0.017334634 894,621.48535,171.16269,17.661316,56.78273,0.0049704816 894,559.2851,190.86584,43.233887,108.75992,0.0015951127 894,609.90295,111.07823,29.243713,148.06389,0.0009345204 894,0.4007483,84.77625,12.075289,45.25396,0.0005603901 894,1.484655,104.002655,20.902836,153.70557,0.0005075404 894,617.7872,210.16367,21.359497,84.15692,0.00028780845 894,1.115896,67.96248,20.71479,86.91171,0.00018913805 894,6.9153657,179.97832,23.43748,54.986115,0.0001718139 894,293.31287,198.44072,26.449707,47.462723,0.00015399347 894,613.11224,417.02795,26.034424,88.069824,0.00014998343 894,368.24692,169.60371,40.81421,104.6732,0.00014292425 894,431.8869,188.26605,58.9552,99.158264,0.00012796825 894,1.2085067,146.0029,14.266194,63.700027,0.0001278342 894,1.0849186,211.33711,18.492224,76.59331,0.000104734616 894,615.7316,82.51664,23.41504,91.07186,9.028957e-05 894,602.28937,205.90686,36.8573,176.02368,8.560658e-05 894,611.68567,322.92624,27.460999,138.1142,7.426921e-05 894,570.8671,95.42163,66.6875,235.59555,6.1462575e-05 894,2.3106186,165.16583,33.196255,166.76987,4.4367636e-05 894,571.17303,368.61325,67.97363,122.60327,4.0398507e-05 894,0.9588119,250.79787,19.294434,135.27815,2.4892788e-05 894,355.01117,146.55405,108.3768,185.3099,1.8842353e-05 894,1.2056364,378.36246,18.192804,74.48468,1.2399485e-05 894,6.193773,214.42389,77.37942,253.33566,9.39388e-06 894,1.6301303,316.76175,32.890926,170.75754,6.905086e-06 894,3.9202604,57.899715,77.36502,254.62067,6.728849e-06 894,6.82277,399.31815,90.328186,95.22952,2.6940372e-06 894,2.654484,446.62668,41.27266,56.59015,1.7844816e-06 894,583.4613,1.8539388,55.685364,138.90652,1.3425038e-06 894,479.88132,33.37819,41.917084,136.83885,1.01501676e-07 894,583.445,0.0,44.605957,46.25678,7.145936e-08 894,407.5117,5.3473616,44.614685,53.30676,4.9449195e-08 894,1.5658497,21.183216,57.732544,124.05086,4.2520682e-08 894,342.8465,0.0,41.33374,59.717808,3.1920404e-08 894,367.82034,0.37444338,44.341553,54.16198,1.8499597e-09 894,0.91646403,8.09042,20.967798,62.15479,1.5870758e-09 895,588.6802,219.30867,48.27356,94.48436,99.94646 895,621.4559,211.84723,17.690796,70.35782,0.24037117 895,388.5913,206.15112,24.337006,45.838135,0.05128312 895,621.5676,252.24303,17.57904,66.28676,0.046725612 895,466.94183,201.50317,22.836578,53.2843,0.00917576 895,595.94305,269.56952,22.284546,45.01764,0.005595275 895,3.325547,167.12276,33.172802,77.30284,0.0009144853 895,568.3555,153.20169,67.23419,231.43567,0.000900926 895,492.81824,240.63498,34.12787,69.78668,0.00042506313 895,616.98865,282.49088,22.15802,92.87677,0.00020883183 895,1.2162777,391.6652,18.179184,76.76065,0.00018865112 895,296.41876,194.21333,28.105988,53.495895,0.00017791004 895,611.2833,372.13965,27.863342,127.617615,0.00016662736 895,610.6414,99.36663,28.505249,193.62949,0.000100375575 895,518.0323,194.83525,75.25134,156.99925,7.673871e-05 895,394.1534,160.88245,62.22467,113.333374,6.4364256e-05 895,1.6960442,283.0937,33.300217,178.60168,6.0631795e-05 895,1.1135987,318.26254,18.468164,78.11215,5.7566205e-05 895,0.85576254,218.59987,18.790182,84.0038,5.622888e-05 895,3.8457048,400.13013,56.118805,95.881226,4.47064e-05 895,3.4959865,162.11185,58.198704,244.12723,4.0435585e-05 895,615.41113,47.882126,23.735535,92.82675,2.1567252e-05 895,1.7765877,81.61485,19.530495,151.74532,1.962017e-05 895,1.388654,443.6342,21.905666,59.823334,1.1234558e-05 895,373.24716,120.77384,137.91571,219.66971,6.397133e-06 895,608.69025,0.0,30.45642,72.84288,5.5739105e-07 895,1.650905,26.078535,55.259544,95.80081,7.533978e-08 895,0.8833854,9.721263,14.259084,77.71504,6.0669185e-09 895,1.036831,1.9879818,30.933964,48.997032,1.9781932e-10 896,454.9162,221.64612,26.20105,53.189026,95.441414 896,436.15002,222.47115,22.366608,50.332657,62.451492 896,424.3891,225.52147,20.970764,46.759415,0.7698516 896,469.89917,232.25238,26.968536,47.22159,0.026732346 896,5.297679,210.23915,36.647118,67.19301,0.015860884 896,433.1677,170.83412,63.21164,125.859726,0.0063839974 896,1.4076025,213.67274,13.991021,54.422592,0.001840201 896,620.9038,125.000626,18.242859,57.548096,0.0015720432 896,610.32324,126.23266,28.823425,143.9831,0.00061655225 896,539.8059,200.71136,44.331238,92.825226,0.00059815036 896,611.25854,338.9624,27.888123,150.55386,0.0005702804 896,490.51825,185.6828,22.52008,55.682648,0.0005070267 896,397.80807,146.2527,44.085052,128.21663,0.00039805382 896,607.98676,439.6145,31.159912,67.8266,0.0002885092 896,1.8879851,164.22675,20.181625,133.72653,0.00028260262 896,617.83765,243.50151,21.309021,71.32179,0.0001654985 896,1.1023194,398.56705,18.178467,75.188995,0.00014746902 896,621.4851,56.64969,17.66156,55.34725,0.000104361025 896,3.5118182,180.27768,57.173378,234.95718,9.9279896e-05 896,1.1092188,230.96191,19.930984,151.04453,5.3749583e-05 896,600.81006,238.47652,38.33661,195.61678,5.3610045e-05 896,3.5825832,329.50806,58.469604,158.69098,4.4055203e-05 896,526.34686,166.35788,107.67651,222.34225,3.570763e-05 896,1.1576189,123.64589,18.917131,94.14836,3.518798e-05 896,410.0568,142.01057,137.44363,210.71458,2.4963441e-05 896,1.3835067,442.74518,21.768583,60.02191,9.561234e-06 896,584.30035,37.285007,54.620117,208.89935,7.914365e-06 896,1.8771077,67.76684,34.60605,203.53229,6.362355e-06 896,1.20149,90.661476,18.560238,66.46584,5.2174946e-06 896,608.34576,13.146062,30.800903,122.68113,3.9979586e-06 896,2.0582764,24.204073,56.329445,106.31305,4.6944887e-08 897,526.2675,213.88028,39.740173,78.482635,99.04303 897,498.40164,214.98149,23.845428,71.717545,20.37708 897,488.02554,214.95062,22.14389,55.15045,1.3349519 897,515.98944,199.59618,29.875488,74.193436,0.07330959 897,620.7638,101.75365,18.382874,64.72359,0.018509896 897,510.35812,177.17744,24.042511,59.71309,0.014630497 897,481.23294,174.8879,52.977386,126.98436,0.0068927 897,14.910269,174.93015,39.116943,77.650696,0.0020507083 897,497.92422,196.1596,19.921478,46.377945,0.0019577534 897,429.45102,206.31613,23.23883,53.598236,0.00090534356 897,502.42365,182.7912,90.27026,149.48566,0.0007830742 897,609.4949,39.650307,29.651794,149.27032,0.00040497707 897,602.6588,344.72537,36.487854,151.13776,0.00018148268 897,611.56244,219.42213,27.584229,117.142715,0.00016962476 897,622.0624,156.44493,17.08429,60.424423,0.00014372056 897,3.0147917,82.70986,33.116554,194.6242,0.0001318247 897,587.44586,220.81868,51.255615,221.04076,0.00013133867 897,602.22046,104.908905,36.38269,184.06247,0.000102068705 897,1.1853695,369.33667,18.841787,128.16812,5.0120296e-05 897,1.7818327,184.4435,17.879185,125.4265,4.9031503e-05 897,1.5895492,263.34723,32.94393,189.08228,2.365701e-05 897,3.6859376,345.33453,58.222664,145.79974,2.0559255e-05 897,449.40143,152.67964,34.57904,94.28679,1.1811176e-05 897,609.47144,1.8109539,29.675232,59.040504,1.039106e-05 897,1.297107,52.31612,20.808592,116.40932,7.5000903e-06 897,2.6095493,31.555231,57.685528,96.330215,3.0482101e-07 897,0.7678329,15.174737,12.323165,79.94826,1.3086354e-07 898,532.04736,193.8092,25.467163,60.065704,99.46548 898,497.6216,179.58183,37.26657,85.968796,6.3053527 898,521.01605,202.32849,21.111694,53.218338,0.1811522 898,516.0276,168.40077,52.973938,106.9243,0.020600114 898,611.6441,212.05022,27.27124,62.19368,0.01488416 898,441.3744,193.6341,27.193542,49.850006,0.00799447 898,601.8197,140.53416,36.95691,159.04659,0.0026038503 898,368.2838,85.18187,21.569061,54.602264,0.0021735837 898,618.52484,133.55856,20.621826,74.84128,0.0013217932 898,624.418,112.091606,14.728638,45.537544,0.0011941444 898,372.70737,427.31235,87.67087,79.011475,0.00027230714 898,600.87,87.95812,35.147827,98.18081,0.00022234145 898,616.5686,269.98346,22.578064,87.24307,0.00018122065 898,348.71786,81.74701,34.875763,75.49443,0.00012003966 898,611.9237,364.81036,27.222961,135.42163,0.000109549386 898,602.04913,231.22949,36.837524,202.59686,7.3082905e-05 898,492.37787,131.7262,34.574097,86.623474,4.4995333e-05 898,1.1300651,320.1755,18.615465,126.22345,3.7717546e-05 898,614.6929,25.484024,24.453796,100.69968,2.5829613e-05 898,476.94366,66.24204,78.629456,204.38385,2.3785098e-05 898,582.08374,23.02002,56.983276,218.02795,2.1633747e-05 898,1.4012378,118.99237,18.678555,129.02782,1.742374e-05 898,3.740708,287.92096,57.22665,188.83401,1.2265433e-05 898,1.1845875,396.1166,20.238972,105.33069,9.547639e-06 898,1.3983854,241.61084,28.413252,155.50223,8.762928e-06 898,3.9038544,75.712845,58.22969,224.33806,1.9814597e-06 898,1.4458342,53.137665,18.834137,123.120514,1.8481993e-06 898,2.2153907,446.2427,42.30286,60.81375,1.8121442e-06 898,2.9303353,29.31279,57.546124,91.68997,5.185823e-07 898,1.2755933,15.743444,28.717585,63.957542,1.3009057e-07 898,412.70453,0.4229834,40.457,51.269894,1.2826028e-10 898,503.52808,0.9530241,47.2088,64.27971,7.4172474e-11 898,530.1384,0.0,48.249146,63.54668,4.4449977e-13 898,552.89667,0.0,48.633545,46.943726,1.096882e-14 899,602.8827,203.1272,33.97223,76.088196,98.79157 899,552.3843,193.57495,38.873108,85.22058,7.3631244 899,442.1709,194.0968,32.231873,71.22089,0.13429646 899,571.5084,216.19865,34.72827,79.50127,0.118407734 899,624.2723,193.26712,14.87439,46.841537,0.104156554 899,538.5777,187.57806,21.958801,45.76027,0.0034683929 899,590.4376,127.636215,46.629517,198.60008,0.0020478764 899,534.9062,174.57402,83.12775,141.47621,0.0008208134 899,616.82996,70.34392,22.316711,81.7823,0.0006923456 899,361.6791,40.16254,31.031097,72.344376,0.0002692204 899,607.943,435.57935,31.203674,70.89276,0.00020868331 899,610.52075,219.62222,28.625916,171.55176,0.00011630749 899,441.90854,70.0403,75.87723,196.48897,7.319555e-05 899,246.04561,424.34186,84.33833,70.67374,5.925568e-05 899,358.2633,95.84831,26.063416,63.565598,5.5380206e-05 899,570.0827,371.83075,69.063965,123.31723,4.680198e-05 899,1.2545468,310.9242,18.645956,132.78696,4.026043e-05 899,611.7092,333.14114,27.437439,140.29996,3.7681555e-05 899,1.1949341,192.76482,19.037285,120.91228,3.2322994e-05 899,3.8552718,242.25807,56.774055,228.34782,2.5091707e-05 899,205.41405,427.97562,76.97508,70.037994,2.2663757e-05 899,1.4649643,235.22365,28.210783,160.44472,1.3147249e-05 899,295.72025,420.5595,82.29587,74.49103,1.2384028e-05 899,609.72614,2.8192968,29.420532,109.418335,1.1495516e-05 899,146.48596,425.2048,80.79451,72.30542,9.927291e-06 899,3.2269027,394.70468,55.017944,96.505646,7.863971e-06 899,2.0766976,113.10902,28.560352,135.48056,2.8431484e-06 899,547.03204,78.20274,42.3042,167.27274,2.4375113e-06 899,3.515622,99.326805,59.01933,213.58966,8.2961725e-07 899,502.8197,8.879466,80.24957,154.2309,1.4575846e-07 899,2.120594,22.022549,57.88555,111.44147,3.0050288e-08 899,502.79443,1.4478906,66.11255,64.61632,2.151573e-09 899,435.498,3.2676027,45.42984,51.327133,5.264838e-10 899,550.4068,4.5316734,44.141663,57.669773,1.0242706e-10 899,409.8726,2.5181868,42.75998,52.16111,4.8393733e-11 900,344.22818,189.09314,22.881134,50.023346,0.30141252 900,621.51624,161.69893,17.630432,53.843567,0.00162659 900,324.14685,168.5549,36.82663,70.19557,0.0013394544 900,482.59662,166.33134,28.175049,62.125015,0.00092663267 900,611.22516,159.14436,27.921509,124.03044,0.00078913773 900,525.2062,195.74231,41.65503,114.50937,0.00028283935 900,479.26663,207.74466,35.76169,73.9469,0.00016759966 900,617.6237,237.36758,21.52295,85.678375,0.00011930774 900,608.2958,439.81497,30.850891,66.11484,0.00010944956 900,477.7259,111.76186,43.78607,147.6759,9.2358736e-05 900,1.0020744,404.66794,18.209982,77.21469,7.054557e-05 900,249.5919,176.94325,41.903214,98.878525,6.1565814e-05 900,1.3325195,278.05792,18.166569,73.82233,5.628124e-05 900,3.087487,271.76752,58.470875,210.20667,5.322857e-05 900,1.1651286,301.355,19.892672,135.3775,3.478785e-05 900,1.0456592,207.05333,17.844664,69.93965,3.179263e-05 900,612.95593,335.112,26.190735,143.68875,3.0028721e-05 900,588.1112,168.6705,50.86316,222.22305,2.124459e-05 900,2.2842636,184.26144,33.077847,172.60513,2.0937932e-05 900,220.80235,393.50974,109.31639,102.380005,1.5948564e-05 900,233.54967,156.9428,77.5887,181.60692,1.3168882e-05 900,317.85333,136.52258,80.78302,156.89355,1.3148076e-05 900,1.0713009,134.75018,18.643448,78.8132,8.791286e-06 900,1.6503955,458.00528,28.222834,46.314484,8.1046755e-06 900,1.3868921,99.506744,18.209875,67.35785,4.96036e-06 900,3.3472266,429.9443,53.190556,69.79004,4.682421e-06 900,201.16298,431.53943,72.583786,67.32245,2.8743536e-06 900,588.4335,3.2033594,50.713196,130.47075,2.4092974e-06 900,462.73798,72.91916,42.008453,122.41408,7.0356487e-07 900,3.616486,96.51449,60.022293,213.26578,4.0005042e-07 900,1.8256267,47.728405,34.9101,166.89388,1.489233e-07 900,402.11758,1.4166064,48.507477,53.711338,5.296278e-08 900,444.3702,24.235254,34.897552,76.37413,2.484564e-09 900,0.82845056,11.781947,12.775276,75.12058,1.9830069e-09 900,0.93564945,2.9780273,40.50465,56.05394,2.8687774e-10 900,433.67773,2.2372413,44.075134,46.854733,2.7325398e-10 900,482.65643,0.90849775,63.874756,47.818195,4.047056e-12 901,386.688,197.39508,30.32727,65.141235,0.118017346 901,366.6403,202.48898,24.727264,61.472504,0.08962789 901,607.54224,185.31937,31.552979,83.14575,0.011979718 901,538.5371,199.43024,42.267456,99.46762,0.0071817734 901,347.984,197.51198,22.11325,50.51407,0.00420355 901,333.87762,194.33139,21.49118,47.84523,0.0039569926 901,600.5837,179.41547,24.26709,48.11017,0.0030212384 901,539.2044,180.87064,26.289429,49.595642,0.001196034 901,620.796,86.09688,18.350647,51.841095,0.0009000741 901,572.4659,425.34012,65.69537,76.41818,0.00047063918 901,463.21887,248.543,25.393433,46.76169,0.0003970029 901,616.82306,223.1511,22.323608,89.64676,0.00038168952 901,369.60367,160.67819,34.41623,83.73775,0.0003349439 901,347.34406,158.05904,39.091187,112.6895,0.00030946138 901,616.6935,133.87436,22.453186,85.2785,0.0002777113 901,616.6299,403.16693,22.516785,92.06604,0.00026051642 901,621.4591,287.06265,17.687561,56.269135,0.00022697098 901,584.97675,134.13329,53.25403,200.85802,0.00020782831 901,1.0645826,397.42825,18.279451,77.721924,0.00020473899 901,616.89197,347.02557,22.2547,89.96579,0.00010968571 901,230.09065,193.17975,44.486618,160.98837,9.388862e-05 901,609.9742,247.13992,29.172485,158.87552,6.762829e-05 901,3.700983,336.5419,58.256454,154.53195,5.5231783e-05 901,1.3033468,154.65067,17.98096,76.14783,4.779516e-05 901,1.0763241,198.46349,18.093384,73.8022,3.9679442e-05 901,609.554,0.4564388,29.592651,158.71745,3.7598347e-05 901,1.0076449,338.2586,18.434399,80.47427,3.753028e-05 901,0.9638005,278.38235,18.305454,69.73102,2.0551608e-05 901,2.1715105,142.74777,33.007397,175.73892,1.7490866e-05 901,1.2426449,442.1295,21.693178,60.898804,1.6508488e-05 901,1.2525724,104.6381,18.708565,72.4132,1.5328767e-05 901,0.70586914,240.92998,13.760096,48.064285,1.3730373e-05 901,160.09239,431.54883,73.58168,70.0665,3.7549607e-06 901,4.9089813,58.123634,76.73936,253.49487,2.1602693e-06 901,1.7730128,38.92687,30.960466,114.74362,2.4662896e-07 901,1.0439047,16.34773,14.823727,69.81491,7.860721e-09 901,1.6305046,10.714665,52.804054,72.83948,2.1757147e-09 902,536.44385,215.11795,38.266296,87.808136,0.5326078 902,405.44,193.49168,34.766937,82.01909,0.28562313 902,430.1464,198.19655,23.583893,60.960068,0.010853242 902,441.89215,197.78503,41.042175,103.292145,0.005724942 902,385.61816,184.32687,25.444916,52.822067,0.003484064 902,571.55493,217.79709,22.11139,47.81598,0.0022275986 902,273.84567,176.20558,36.081146,61.412292,0.0022037434 902,348.3226,188.1538,21.25534,47.748016,0.00214317 902,511.85495,182.75931,47.24881,133.32788,0.0018313405 902,620.0573,186.30807,19.089355,58.101883,0.000794368 902,609.4128,124.72829,29.733887,138.63448,0.0005177927 902,199.75627,274.78867,52.360245,140.4851,0.00016530085 902,612.7001,376.3134,26.446594,118.01538,0.00011554157 902,616.4085,87.94231,22.73816,83.19293,0.000104861145 902,492.45377,140.90703,120.45767,212.44533,0.00010242012 902,315.9341,52.413666,34.79196,73.248314,9.40042e-05 902,611.3251,1.2263542,27.821594,133.52455,8.9612906e-05 902,1.1065512,328.26328,19.513779,138.92584,8.7373635e-05 902,611.3683,215.67097,27.778381,144.79231,7.266211e-05 902,3.6126156,342.86404,58.445747,147.1795,4.9401355e-05 902,0.9483708,423.09677,16.622673,77.69418,3.319201e-05 902,179.32555,228.90941,111.030106,244.53758,2.6865822e-05 902,527.3924,75.755005,42.991333,140.58391,2.398061e-05 902,1.1896086,133.79065,18.438442,73.892975,2.1947746e-05 902,1.1985173,192.42192,19.521122,132.10893,2.1185631e-05 902,3.6689844,161.00858,58.138767,249.66571,9.676706e-06 902,552.3237,5.2437825,81.87695,82.62661,2.0281275e-06 902,1.5668848,48.15633,20.410128,117.75868,1.0496432e-06 902,368.60013,7.866089,41.198822,52.28662,6.315189e-07 902,340.80734,8.657542,41.157745,51.070484,3.635532e-07 902,3.1044466,44.862854,59.97786,181.76663,2.894245e-07 902,312.85864,2.2096941,42.6268,60.779186,8.465995e-08 902,1.2575562,13.687299,16.636255,71.33815,5.4002534e-08 902,539.64484,7.3422756,43.09558,61.64422,9.475457e-09 902,425.48163,2.2549968,43.964386,48.73803,7.862836e-09 902,456.29855,9.767631,82.73801,75.43593,5.5951017e-09 902,1.2720394,2.7792025,44.333084,58.06062,1.0955508e-09 902,509.4175,9.198571,43.01236,57.42109,6.824183e-10 903,369.52948,210.66542,21.910156,45.31401,2.0251162 903,401.6638,203.2219,33.77777,66.38852,0.007177089 903,618.8491,261.24957,20.297546,67.15381,0.00216252 903,620.6758,159.79057,18.470886,66.58766,0.0013210422 903,622.01984,322.79147,17.126831,53.29245,0.0011909077 903,595.3447,254.75761,34.35443,88.36644,0.00092278695 903,277.1798,187.85332,28.801697,53.954056,0.0006881853 903,615.28723,43.080482,23.859436,77.163345,0.0005859505 903,489.93277,192.96599,35.252045,88.047806,0.0005620777 903,609.0098,65.16553,30.13684,161.83656,0.00053872215 903,467.7214,131.41557,45.531097,152.24385,0.0002121071 903,585.8899,207.15996,52.312317,222.87349,0.00019764336 903,274.47928,129.55753,44.91629,127.18826,0.00013335836 903,1.1872437,392.26382,18.193468,75.702484,0.00013079669 903,610.4229,177.17737,28.723755,141.0314,0.00012906494 903,611.8508,311.0962,27.295837,160.30814,0.00012162585 903,607.105,433.6462,32.041687,75.548706,8.808269e-05 903,2.859694,311.07422,58.077,178.5133,8.291714e-05 903,1.2312932,203.18385,18.84042,78.65782,5.99405e-05 903,1.2590398,266.88663,17.900784,150.4925,5.1414572e-05 903,476.8494,199.34459,30.166962,63.47975,3.4273082e-05 903,1.7136133,114.993675,20.719812,110.57813,2.9200313e-05 903,462.22153,153.10925,110.749664,185.26483,1.655304e-05 903,2.0680974,419.16013,35.272152,78.871765,1.32927125e-05 903,2.3585808,128.96669,33.60783,192.343,8.745578e-06 903,341.19794,89.04181,35.2955,86.31625,2.6800406e-06 903,21.127777,429.5647,76.30197,70.55179,2.140484e-06 903,1.7215633,65.76616,19.4938,69.51926,1.6430921e-06 903,106.36794,426.54483,71.65792,71.39017,1.4372064e-06 903,2.741914,45.090496,60.084835,189.22235,3.1949781e-07 903,415.571,3.915529,45.57614,55.38765,2.3349183e-09 903,0.77391684,7.266247,16.09651,81.97717,2.2123137e-09 903,443.00427,2.8736525,45.160645,63.84155,4.877843e-10 903,1.4712175,0.046666667,44.182293,48.38253,4.721883e-10 903,468.8587,3.8985548,46.227478,64.97123,7.847769e-11 903,381.78302,4.9400573,41.82245,47.164326,6.580147e-11 904,442.4259,206.62881,36.710297,76.39813,21.277596 904,351.76266,196.44,22.880005,51.242584,0.044652473 904,610.39624,131.45016,28.750427,55.37294,0.007174852 904,616.46295,76.67611,22.683716,82.60862,0.0023384318 904,279.90094,177.09883,39.770905,71.29607,0.0007086167 904,600.6141,80.621956,38.532593,190.26572,0.0006546815 904,329.9489,183.6702,21.771393,52.904785,0.00035778436 904,610.68744,372.9443,28.459229,130.11627,0.00026405428 904,617.1154,254.0924,22.03125,85.400085,0.00010662904 904,1.1080599,391.32553,18.310543,76.2634,9.833422e-05 904,586.8848,268.4844,51.983337,218.28445,6.7975394e-05 904,583.70807,16.432884,53.94635,112.067406,5.767704e-05 904,1.1518441,345.22195,18.336123,77.921936,4.5855184e-05 904,1.2521623,121.2626,18.359074,76.58325,3.543435e-05 904,3.4287126,284.60925,58.868473,200.14426,2.9181607e-05 904,1.0882577,192.15887,19.286848,128.05801,2.330913e-05 904,552.8471,420.78857,83.960144,78.39731,2.2743567e-05 904,266.30847,162.96628,79.36609,151.68283,1.153053e-05 904,6.783675,429.17755,76.87447,70.302765,1.0164571e-05 904,0.94987714,265.06927,20.818014,106.33594,8.918988e-06 904,2.0524113,114.129105,33.547337,168.95467,7.015832e-06 904,458.44907,77.06717,37.58902,63.99681,6.75427e-06 904,1.3180078,65.6021,19.030481,66.97043,4.062544e-06 904,57.7806,428.6614,78.65946,69.40039,1.3306166e-06 904,0.5038965,21.329515,58.365623,105.41604,5.51436e-09 904,399.52524,3.4706903,47.82727,59.938046,4.4167203e-09 904,469.7088,5.8867598,41.3349,53.26725,9.122018e-10 904,533.56903,2.6470542,40.862183,55.01033,6.413002e-10 904,372.1866,6.4718738,40.208496,51.153687,1.0335413e-10 904,0.0,4.5486526,24.85867,66.605515,3.9045916e-11 904,441.02783,4.412186,44.591125,48.121964,1.7233706e-11 905,325.98813,173.13058,21.707428,51.314713,0.011055739 905,359.1978,170.27318,33.16684,88.64397,0.0073543144 905,301.3804,163.40985,38.512634,72.315994,0.0024929023 905,342.82486,185.89697,22.705994,58.598923,0.002322904 905,421.6437,200.32808,23.575989,48.42372,0.0020368039 905,384.59152,188.45515,30.548004,75.97737,0.0009980629 905,409.83847,140.95276,36.37686,118.38107,0.00036643035 905,616.88666,114.4967,22.26001,85.61762,0.00034436779 905,617.2761,243.75902,21.870544,79.52907,0.00017688955 905,423.9939,226.75323,21.626312,47.56488,0.00013558588 905,600.98175,101.362206,38.164917,172.33041,9.779301e-05 905,611.29944,369.95593,27.847229,131.48688,9.262521e-05 905,0.8891093,426.43793,13.373219,47.790527,8.701069e-05 905,73.01286,171.69876,24.204895,49.501373,7.9690144e-05 905,284.00925,176.03688,43.303467,102.55574,6.322724e-05 905,612.6068,276.8002,26.539856,141.18155,4.4681685e-05 905,1.1581055,336.3811,19.024815,135.9563,3.222816e-05 905,587.7453,171.08406,51.092896,232.99538,2.96234e-05 905,422.4381,146.66528,20.824188,50.012497,2.5391986e-05 905,0.87430954,214.81294,17.937056,71.681046,2.2102551e-05 905,3.7203858,341.71783,58.19863,149.13828,1.5160688e-05 905,0.77832115,258.63684,19.280209,137.31592,1.2010948e-05 905,1.1633936,106.62118,17.606297,125.44831,1.0020889e-05 905,1.313833,443.873,21.687948,59.397278,9.165741e-06 905,4.1625,183.67526,57.174835,241.29834,8.611764e-06 905,2.0238657,130.33641,32.912113,165.00795,6.3956804e-06 905,310.93747,423.66028,72.66867,73.99756,6.3709526e-06 905,259.4419,121.23979,108.3851,235.9828,5.775185e-06 905,483.55902,69.50737,73.68164,220.95628,4.0185087e-06 905,507.15814,246.15355,81.09497,165.19182,2.2182155e-06 905,554.7838,425.8459,76.938965,74.43704,1.6666288e-06 905,288.25568,64.29872,46.508514,156.67378,1.3668792e-06 905,473.7054,428.21844,72.23111,67.51752,8.543961e-07 905,585.0329,13.98221,54.022583,110.0457,2.5332224e-07 905,507.04117,39.027878,30.784637,73.70414,2.4574527e-07 905,458.40955,0.67088056,37.125824,45.70135,6.5899e-09 905,2.0422804,21.45867,54.57725,107.869865,1.7261357e-09 905,439.88565,4.2609572,81.8743,69.656166,1.2876185e-09 905,576.88086,1.2053939,45.61499,52.159634,1.794061e-10 905,544.5244,0.46722168,46.590515,53.274776,1.5596233e-10 905,481.00882,3.760332,91.46408,89.26556,4.0937878e-11 905,1.0053679,0.7673063,30.00159,49.937458,3.8681728e-11 905,497.882,0.8584619,46.20346,54.390614,3.431793e-11 905,431.48618,3.4618149,41.485077,47.97149,2.7616392e-11 905,0.43665773,5.5263476,12.205217,84.081894,1.1905696e-11 905,410.7867,1.1636622,39.24063,45.20365,4.2302e-13 906,437.8564,236.68706,23.428741,46.223495,88.35039 906,489.14276,221.33902,33.923035,77.25964,0.0071483874 906,612.2952,216.48691,26.85144,65.21591,0.005195365 906,411.02267,184.36398,32.959198,81.66373,0.0015413379 906,428.40387,213.64767,40.690308,92.92828,0.0014191134 906,371.4936,181.03653,29.55954,67.14525,0.00131414 906,599.4946,178.1272,27.681824,49.668335,0.00097515876 906,610.78845,109.03594,28.358215,152.87085,0.0008646772 906,427.4522,60.077984,27.09732,73.23874,0.00022069743 906,599.8016,168.18178,39.232788,189.00835,0.0001712848 906,617.3565,255.19891,21.790161,89.839966,0.00016176852 906,1.6898047,138.83157,19.187683,78.70029,0.000100861405 906,617.8391,316.00223,21.307556,78.31827,7.577434e-05 906,612.5963,349.1196,26.550354,146.93845,6.81179e-05 906,616.7297,31.408953,22.416992,73.51121,6.0534843e-05 906,354.59702,161.03448,35.927795,73.046585,5.679557e-05 906,2.405939,90.44622,34.825706,167.23471,3.7243473e-05 906,1.0883586,191.49843,18.002958,73.37154,2.3629007e-05 906,1.2455714,342.74463,19.232887,132.6481,2.1763244e-05 906,471.60544,192.83942,74.88559,147.56366,1.7452441e-05 906,413.79102,176.0358,88.54581,198.8341,1.3523434e-05 906,573.6031,420.29214,65.359436,77.764435,1.2890179e-05 906,3.8487046,311.12762,58.608406,172.09082,1.22074825e-05 906,0.9862183,235.3474,20.708538,102.80031,9.859265e-06 906,1.0706006,423.08167,16.348143,78.46716,8.401914e-06 906,599.8621,18.673094,39.284546,173.31322,7.645275e-06 906,4.1106725,163.36351,57.161144,235.54756,7.507991e-06 906,608.2623,2.441224,30.884338,59.646748,3.2111022e-06 906,302.53223,435.22934,72.23978,64.4415,3.1222958e-06 906,235.38579,434.08118,72.23787,66.515564,3.0621507e-06 906,3.5465088,430.28406,53.797543,69.6246,2.3862385e-06 906,30.586079,428.29742,79.36835,72.9801,1.0909192e-06 906,81.463234,430.4556,75.24673,69.32202,8.603995e-07 906,286.16797,0.0,40.946136,59.65012,8.791463e-08 906,1.6757292,37.468987,17.843534,134.01431,6.268826e-08 906,3.5776644,30.031862,56.354195,104.71895,1.306171e-08 906,315.7194,1.4316716,60.191498,48.82312,3.5116379e-09 906,577.0061,2.4076092,45.959167,50.533436,1.7806709e-09 906,360.6097,7.9647593,42.865723,55.680027,1.470686e-09 906,550.45135,0.0,47.429382,59.358627,8.590961e-10 906,505.90897,2.4891374,43.07242,48.95472,1.1942501e-10 906,1.8383464,12.489379,32.282654,73.813866,1.0879973e-10 907,382.25195,182.27026,25.09497,58.646286,0.29648337 907,393.98877,177.95679,33.464203,69.48738,0.022913149 907,472.95746,158.48169,53.089905,146.39435,0.0025948714 907,423.9016,182.67728,33.49356,69.45247,0.0016285845 907,622.56055,219.45644,16.58612,48.739212,0.0010055109 907,611.3979,133.58656,27.74878,119.313736,0.0003285006 907,548.0166,198.2777,33.48181,62.212296,0.00027523338 907,611.8361,356.01843,27.310547,123.09003,0.00025628266 907,617.5572,234.89824,21.589478,80.200455,0.00023079538 907,622.12744,42.650085,17.019226,58.013794,0.0001543883 907,300.8221,191.59221,23.859894,46.859222,0.0001482016 907,608.4789,438.0826,30.667786,65.223145,0.00013385696 907,0.9234969,426.76108,13.278473,46.89392,7.385769e-05 907,600.67395,182.58568,38.472717,172.5851,7.098329e-05 907,617.68195,307.50302,21.464722,82.004456,5.7312525e-05 907,1.0754892,212.95363,17.826279,71.90886,3.515377e-05 907,1.0526433,378.82907,18.346666,77.39499,1.8501396e-05 907,442.85007,86.21491,38.459167,83.89512,1.6005428e-05 907,0.9487728,305.30206,18.376629,69.11447,1.5014658e-05 907,0.79063964,253.68362,18.613592,77.56293,1.4662606e-05 907,1.512968,337.1513,32.860764,154.3735,1.000981e-05 907,4.3772902,96.35484,56.767765,218.48549,9.760324e-06 907,595.7826,0.0,42.473877,62.282715,9.158611e-06 907,5.07583,289.27576,78.62243,191.49341,8.325248e-06 907,573.0795,71.059845,65.713745,236.46552,7.925271e-06 907,1.5906918,156.14128,18.254398,78.98555,5.542596e-06 907,609.57733,27.116505,29.569336,169.4624,4.423362e-06 907,2.0693343,75.22289,27.430992,149.22684,4.25699e-06 907,3.2075424,431.80078,53.326965,67.22955,3.6480646e-06 907,222.2755,434.47525,74.148636,61.77246,2.2897339e-06 907,263.72433,434.86673,75.444275,61.14386,2.1479273e-06 907,206.9916,448.6106,42.97937,50.095398,1.6032645e-06 907,311.64334,436.1988,72.00491,60.640686,1.451731e-06 907,359.5054,436.34406,71.45325,60.35013,1.2345051e-06 907,508.1689,433.7396,72.41135,65.85089,7.826425e-07 907,99.32821,429.83163,71.30802,70.25864,7.4125677e-07 907,397.22787,62.87721,45.248962,164.92766,1.2652704e-07 907,4.2794027,33.50754,54.649895,99.680435,1.03584e-07 907,406.61603,95.97227,28.33429,67.33871,6.7841924e-08 907,1.8824894,32.3484,16.29653,117.59761,6.649524e-08 907,395.2856,7.5943832,42.101227,48.54822,1.7786352e-08 907,1.2886678,12.1075945,11.9141245,74.12449,1.402458e-09 907,359.79913,2.3160467,62.776672,45.60679,1.1064412e-09 907,553.22815,3.106701,45.037598,54.96385,3.1935476e-10 907,1.9132634,5.0824857,36.84434,46.384937,3.123719e-10 907,421.61163,3.9600148,44.320312,51.14725,2.0724328e-10 907,336.0983,2.02612,40.885345,47.138092,7.9917385e-11 908,457.54044,193.8085,23.18396,46.13202,0.012360278 908,622.73346,219.84279,16.413208,55.656754,0.0026646364 908,386.73346,118.357414,41.37451,125.68592,0.0008662058 908,612.4496,193.8748,26.697083,145.5442,0.00033948343 908,612.31915,106.8727,26.827515,143.45255,0.00017888492 908,54.939682,89.76785,21.92276,48.716614,9.205352e-05 908,617.5677,324.37372,21.57898,82.96704,7.086256e-05 908,613.03015,413.24802,26.116516,90.14847,6.464218e-05 908,1.1648657,392.46005,18.259003,75.66391,6.3720465e-05 908,0.9290023,77.05332,13.213495,46.68225,5.8649563e-05 908,1.5749269,208.0698,17.311491,64.94797,5.6794703e-05 908,610.41315,8.555586,28.637146,120.07228,5.611665e-05 908,0.81572837,261.39075,18.759665,79.32349,5.148749e-05 908,451.01382,167.09375,42.04785,100.88068,4.5932567e-05 908,516.9415,245.0868,25.600586,59.84874,4.526066e-05 908,308.8382,174.92596,47.667023,138.72165,3.6865997e-05 908,512.9286,194.91426,35.56732,62.87529,3.4498436e-05 908,1.9570867,214.46133,31.409197,177.15488,2.5992504e-05 908,602.6313,270.1079,36.51538,179.33444,2.162921e-05 908,482.0797,84.36401,37.975647,73.3501,1.9399728e-05 908,4.9690886,282.38702,78.422676,199.89435,1.9054463e-05 908,397.11136,118.33632,26.772156,48.678665,1.6778504e-05 908,0.9658073,311.89746,18.339539,71.369995,1.515609e-05 908,3.2583416,399.72916,57.33136,94.51596,1.45510685e-05 908,366.13437,111.734795,38.819885,99.753365,1.40749735e-05 908,203.00621,398.36432,120.25679,95.0943,1.2549931e-05 908,1.9479387,96.70449,27.309685,159.97989,1.1845909e-05 908,572.0531,361.0732,67.09357,126.86752,1.1233507e-05 908,1.2633651,442.096,21.629253,60.54651,1.0329368e-05 908,5.3057942,109.00333,55.621754,216.31607,5.45469e-06 908,2.6161215,37.27991,34.581745,135.94698,4.2261986e-06 908,423.2296,121.88638,107.743225,197.58606,3.0993278e-06 908,337.51562,432.95398,72.2283,65.828,2.797084e-06 908,181.16162,431.2949,72.415436,66.29831,2.3986186e-06 908,393.48383,430.46994,71.499054,68.97055,1.7644691e-06 908,501.62006,191.05984,80.14404,154.28052,6.603798e-07 908,1.9437826,15.323253,27.143269,66.39484,1.7029323e-07 908,449.87003,4.3760777,47.17383,48.240967,1.5891242e-08 908,2.890075,7.221649,63.770958,52.220066,4.5647686e-09 908,481.45074,7.041727,48.364258,47.25367,1.6173042e-09 908,424.73978,2.5132325,41.457153,49.39746,8.8562616e-11 908,51.79612,4.002941,41.331917,53.572205,2.071993e-11 909,445.22205,199.73634,22.184021,48.89119,24.19021 909,428.0056,166.90898,36.32248,76.07277,0.01536705 909,326.34174,190.88387,24.295105,48.326553,0.0010043139 909,37.277695,70.71228,24.921745,57.218307,0.00079763524 909,623.04175,259.5859,16.10492,51.21872,0.0006001749 909,575.51965,424.30212,63.627014,73.85315,0.0002592205 909,611.5646,139.38464,27.582092,133.10287,0.0001836512 909,611.3299,344.11743,27.816772,140.36508,8.356372e-05 909,364.88623,132.9074,40.45938,119.954025,7.558654e-05 909,617.8089,301.57526,21.337769,84.938416,6.665656e-05 909,0.9253748,202.6706,13.054223,48.2666,6.516042e-05 909,1.2214721,325.01547,17.992855,75.3186,4.4910492e-05 909,1.3677661,151.33897,18.4076,74.50148,4.2557564e-05 909,1.1618474,188.14824,19.870092,126.445145,4.2291224e-05 909,601.19836,185.86987,37.833313,182.36395,3.8418384e-05 909,1.1753727,361.39206,18.542322,132.74182,3.206531e-05 909,1.0176388,75.17422,13.912104,55.86489,2.5297384e-05 909,418.6553,138.84683,78.24899,161.36887,2.2361555e-05 909,3.6533415,220.27547,56.833084,226.5974,2.1749343e-05 909,0.6591008,297.5814,13.756245,49.834045,1.41456485e-05 909,2.0133154,77.13245,31.61865,189.35043,1.05224935e-05 909,311.2413,430.55914,69.69891,68.00726,7.950556e-06 909,584.9983,49.375576,53.547607,254.87302,7.195975e-06 909,3.2488885,396.18848,56.252537,98.12561,6.5299396e-06 909,595.3625,0.0,43.555603,98.67495,5.195161e-06 909,4.257611,18.008001,80.23269,149.74911,7.0802344e-07 909,1.6179777,15.77099,29.9622,118.66401,6.913675e-07 909,41.871628,36.91425,34.414635,76.85896,6.0377647e-07 909,572.56195,0.0,43.31018,59.98839,7.011424e-08 909,1.2821159,4.6022625,65.665085,52.598198,7.2984467e-09 909,51.587246,4.51624,43.493282,57.798435,2.2877027e-11 910,535.1874,207.43576,29.555298,56.8562,99.85274 910,441.31018,179.03764,30.281555,56.81082,0.0099291345 910,4.5474343,52.2118,26.320507,65.76677,0.0018772362 910,517.721,212.33902,22.488647,50.562103,0.0015196896 910,30.619905,52.769375,24.398077,54.65775,0.0013959244 910,522.67633,188.81879,62.265198,93.399414,0.0006700764 910,323.95,179.35092,30.56549,60.463486,0.00045294702 910,1.0451078,125.4842,13.20579,50.706078,0.00029833498 910,613.646,199.36682,25.500671,105.339966,0.0002578526 910,582.237,395.20718,56.909668,100.92804,0.00020074392 910,608.1133,440.2136,31.033386,65.35654,0.00016835098 910,340.14056,419.20673,84.7984,78.28244,0.00014505045 910,0.76141524,207.87907,18.136755,71.1823,0.00010193805 910,617.3476,139.00298,21.799072,78.03679,9.773642e-05 910,0.93529785,161.48349,18.257368,80.813705,8.993019e-05 910,438.85013,77.98044,47.11139,155.36095,6.919614e-05 910,1.7192636,58.948486,29.114904,177.28305,5.751528e-05 910,1.3618906,333.99203,18.465212,130.59418,5.5407992e-05 910,600.8904,100.91996,37.96936,160.29984,4.578876e-05 910,611.70526,307.34195,27.441406,139.75092,3.0034334e-05 910,309.40973,194.81401,78.26419,224.6003,2.9830118e-05 910,0.81009036,233.81017,19.102942,147.06157,2.790456e-05 910,3.6800196,308.13455,57.29351,169.44489,1.6194774e-05 910,1.8365853,155.4668,34.254604,184.04312,1.6166627e-05 910,3.117601,12.590345,56.222088,123.44017,1.1642131e-05 910,462.70068,150.41145,108.25818,187.65642,1.07643045e-05 910,1.1264242,418.2317,16.276161,81.92313,8.433736e-06 910,611.2427,2.1223242,27.903992,58.240044,7.906851e-06 910,587.26044,176.87488,51.837646,229.95471,6.9135467e-06 910,5.452194,101.19398,77.49598,279.0526,6.5527715e-06 910,17.805964,37.393993,27.376055,60.843082,3.824918e-06 910,3.2687485,425.45837,52.80497,72.86154,2.1346373e-06 910,434.7262,100.624664,29.141785,76.61003,2.0009122e-06 910,1.6942651,3.1994956,26.124403,70.87661,1.4026367e-06 910,23.089071,5.068919,49.502136,60.606503,9.342528e-10 910,456.0761,2.4023242,45.188324,47.454865,3.5475976e-11 910,50.639805,6.15327,43.823124,53.330753,2.938404e-11 911,565.2529,196.02443,24.78888,55.513412,99.55514 911,548.7812,197.7587,23.749634,50.01323,0.56783503 911,446.037,165.85835,33.902985,66.79967,0.005143555 911,366.48605,110.02576,43.519745,125.32529,0.004522244 911,436.19138,181.81009,24.393127,48.443634,0.0037608785 911,622.9012,220.88339,16.245483,53.612488,0.0019023548 911,211.78369,130.60182,31.194122,68.36842,0.0014959652 911,439.09094,62.03486,36.05838,85.74267,0.0005319981 911,612.16223,130.33076,26.984436,126.6461,0.000456422 911,464.7833,138.71307,34.530884,78.5061,0.0003826039 911,611.5234,380.34906,27.623291,121.62445,0.00032703966 911,1.0345606,377.18497,18.219975,79.091034,0.00014460707 911,548.21826,170.06004,60.659607,104.254074,0.0001387504 911,1.1738802,206.11476,18.028242,72.737564,0.00012324205 911,602.6586,182.86772,36.488037,166.07463,6.204915e-05 911,3.536504,209.383,54.8293,230.05234,6.146726e-05 911,586.6468,267.3824,52.499878,217.91043,5.3732463e-05 911,0.0,346.31183,15.397471,64.363464,5.299163e-05 911,476.37903,164.58183,39.316406,90.29884,4.8155925e-05 911,0.9576433,288.40494,13.591857,46.78073,3.826656e-05 911,2.1221755,154.29292,33.090996,164.35777,2.9610692e-05 911,1.2073861,302.08945,32.15663,177.71906,2.778443e-05 911,1.3382536,152.12794,18.672323,72.10953,2.5881885e-05 911,1.3094141,106.16445,19.325125,80.31664,1.7214703e-05 911,1.0750383,247.43076,20.420343,114.77203,1.4191861e-05 911,323.18933,426.69843,78.39673,69.40024,1.3516872e-05 911,585.28613,76.42549,52.92389,212.11842,1.1190502e-05 911,385.22122,94.81094,43.146454,103.41881,1.1014256e-05 911,1.6545956,57.713856,19.533695,81.138306,8.049831e-06 911,599.0123,1.335625,40.13434,86.48981,7.633501e-06 911,470.6658,66.14995,39.47467,85.76271,4.10091e-06 911,437.59195,104.84073,39.186035,101.23927,3.3300503e-06 911,2.3832438,20.362078,58.991627,115.46318,2.4801266e-06 911,510.97668,128.65193,122.467896,221.02873,2.4542078e-06 911,2.9845426,424.6519,52.72864,71.81827,1.3829864e-06 911,1.2762948,9.829822,13.914639,84.62672,1.17795e-07 911,1.5212094,6.4453874,38.7336,52.073586,4.772984e-08 911,39.000618,3.1904883,44.1491,60.9363,4.029151e-11 912,273.15762,191.84978,27.034546,56.692078,0.14703988 912,601.81226,217.13992,35.710938,69.582306,0.022088395 912,469.67392,188.97609,34.094696,71.98912,0.0056860065 912,464.49377,220.8681,24.305298,49.96399,0.00062766834 912,171.1563,131.50957,29.03357,67.05354,0.00041261056 912,578.2129,201.68903,59.795593,145.73245,0.00035822619 912,617.566,135.35104,21.580688,80.6219,0.00033127636 912,9.333418,81.3247,25.967978,59.812737,0.0003287623 912,621.8251,109.18225,17.321594,53.99547,0.00018630768 912,363.34174,206.69034,39.77249,129.65247,0.00018113204 912,607.79645,437.51996,31.35022,68.85739,0.00018004446 912,617.3262,383.67908,21.820496,79.93567,0.0001679129 912,1.1957763,119.86483,18.791826,87.751335,0.00014467826 912,313.88632,395.95905,117.65256,99.23129,0.00010427348 912,617.14685,272.1468,21.999817,85.18796,0.000101752936 912,386.53967,123.05214,40.137634,113.236465,5.7016343e-05 912,1.1926522,223.55261,17.795256,70.07706,5.5726476e-05 912,2.2682056,112.07068,33.36521,182.31345,4.6288143e-05 912,617.67224,319.2439,21.474426,81.403595,4.2200852e-05 912,1.2253947,82.78369,14.492397,57.527115,4.0576117e-05 912,570.9186,371.8278,68.22809,121.14139,3.9787203e-05 912,2.1014755,219.29587,32.648155,173.20349,3.524427e-05 912,1.1795728,330.54892,17.946043,73.65613,3.5031982e-05 912,347.8492,439.59912,43.17801,61.439423,2.955821e-05 912,1.0786133,359.0546,17.743694,134.84192,2.1223894e-05 912,611.3692,44.260254,27.777466,141.42021,1.5278341e-05 912,0.7935124,275.1315,18.624346,78.99423,1.4764562e-05 912,5.50431,180.58618,76.6228,248.61945,1.3316313e-05 912,2.9618099,395.37833,56.804234,99.81476,7.803145e-06 912,459.3757,168.68677,74.151215,129.9306,5.8332394e-06 912,1.5918766,457.6697,28.328854,46.503174,4.685852e-06 912,383.07407,430.55753,74.87329,69.863434,2.167922e-06 912,395.72726,107.366806,25.912354,62.176895,1.810068e-06 912,4.626087,64.49324,79.43913,214.1303,5.359314e-07 912,599.39966,8.124942,39.038025,78.25524,1.7618552e-07 912,1.2703589,30.867287,21.456316,137.80225,1.6232457e-07 912,334.66525,6.4113917,40.838135,45.535336,2.6540942e-08 912,472.9382,42.423492,45.663788,123.14778,1.1312596e-08 912,0.68301517,9.97753,14.171022,82.634254,2.3455773e-09 912,0.8654183,8.483737,50.49125,75.20942,4.020095e-10 912,580.1477,4.269782,40.276062,54.142544,7.6051436e-11 912,531.6348,2.1826205,41.904358,51.70964,1.0117303e-12 913,607.77936,215.35498,31.102356,85.04083,0.14428425 913,248.78131,192.18233,25.535217,57.077347,0.07086067 913,269.6302,190.82208,19.677551,47.092422,0.06822421 913,391.65305,206.2695,22.113068,52.95697,0.03187918 913,594.1377,120.696045,41.75934,168.29944,0.01723157 913,139.14279,126.52795,36.727295,119.977715,0.0041779615 913,617.0365,135.22104,22.110168,103.11949,0.0020169413 913,528.1149,183.44455,26.66986,50.77707,0.0016156028 913,621.9598,296.61234,17.18689,59.65564,0.001383592 913,408.28937,208.14642,21.854797,51.21634,0.0008657351 913,378.60233,99.26006,39.168182,122.76122,8.3719104e-05 913,1.2102304,384.68726,18.24328,77.07782,7.288398e-05 913,609.0191,437.80252,30.127563,67.622894,6.354405e-05 913,3.4159586,273.40512,58.156048,203.8518,4.5922847e-05 913,589.2289,200.1471,49.917786,263.709,4.4186487e-05 913,612.4853,320.6329,26.661377,144.90607,4.1803974e-05 913,1.036761,274.2951,18.81414,143.13837,4.1574618e-05 913,1.6806821,193.3287,18.31347,64.66913,2.1858968e-05 913,309.627,129.50914,43.226807,94.15605,2.0702882e-05 913,418.62323,75.38165,37.54663,73.387085,1.9206325e-05 913,3.6739357,140.3981,60.170723,201.13525,1.4833222e-05 913,585.46545,392.08182,53.681213,102.06946,1.3797409e-05 913,613.89606,0.0,25.25061,47.114925,6.709638e-06 913,2.025949,419.3259,34.57423,78.298035,5.919609e-06 913,609.8678,19.330359,29.27887,160.98907,3.6061754e-06 913,1.8477702,78.30613,20.365889,132.23056,3.2879723e-06 913,1.4464263,90.93656,13.688156,47.994637,1.4624642e-06 913,576.9244,0.3270866,62.22229,76.746185,2.1226093e-08 913,1.9731348,23.2937,57.359184,111.192184,1.9229137e-08 913,542.95074,0.0,37.252502,94.427605,4.0088544e-10 914,391.0328,204.12567,17.470459,46.30696,2.391247 914,604.13586,156.90862,28.963135,74.57532,0.30638453 914,462.07178,211.04279,26.417511,53.745575,0.09541188 914,366.87497,202.94092,34.24002,65.03955,0.05963999 914,273.18353,186.03142,21.019104,47.71698,0.020619329 914,354.23425,201.71298,20.596497,46.844727,0.018104207 914,251.3852,187.50531,22.006683,45.292297,0.016534774 914,624.0252,184.7164,15.12146,46.9196,0.00433789 914,2.526753,208.89201,29.625042,45.283325,0.003849812 914,594.7016,160.14531,23.270996,55.23874,0.003680894 914,596.7183,126.30321,41.52417,177.3123,0.0036079015 914,624.65704,342.06573,14.489624,45.409912,0.003119489 914,511.2071,210.4903,46.072998,133.90634,0.0024064507 914,465.18076,241.72537,21.427795,47.816376,0.0018630378 914,240.06831,171.87889,23.468643,52.08174,0.0009395506 914,1.4556015,203.1529,21.298397,133.70401,0.0009129542 914,610.2321,243.15941,28.91455,163.64745,0.00020446016 914,352.981,47.50008,37.166656,92.972855,0.0001543612 914,608.1228,437.72632,31.023865,65.832184,0.00011638539 914,602.5661,324.08624,36.580566,162.76178,9.438832e-05 914,2.8152297,171.9571,54.502106,225.66692,7.138381e-05 914,1.2174293,406.7095,18.151796,73.43707,5.896412e-05 914,1.8869491,90.73986,19.824474,82.146614,2.9419682e-05 914,0.9496078,308.4714,18.530334,76.74698,2.436229e-05 914,3.8257375,341.58923,58.18667,149.93729,1.557833e-05 914,451.77158,188.24763,78.77487,142.14684,1.1300783e-05 914,129.4896,422.51126,74.76427,75.0571,1.0988636e-05 914,611.79694,0.0,27.349731,64.4756,6.151029e-06 914,1.7804835,92.99613,34.369568,168.4014,5.6267454e-06 914,501.07486,67.989784,47.600494,113.14756,1.4709491e-06 914,429.88757,12.102507,47.507294,120.00096,2.0645925e-07 914,468.61133,0.0,48.75116,68.78864,6.579968e-08 914,1.820892,22.448177,57.144154,112.08498,2.1367368e-08 914,393.181,5.7654333,49.732758,56.252094,4.5234874e-09 914,441.91412,1.3349545,43.943024,65.31932,3.0971603e-09 914,366.71594,4.784746,45.278534,55.84507,1.6435596e-09 914,455.4736,0.0,92.221344,163.26614,7.611242e-10 914,495.35367,2.230049,47.6351,63.134018,3.959672e-10 914,519.63293,1.14125,49.488037,56.95702,1.4815352e-11 915,465.11166,203.54384,34.850372,71.20842,0.32888034 915,387.3739,214.61261,30.3797,67.06119,0.0560613 915,279.98962,195.87717,25.097717,51.019226,0.016942173 915,20.979343,233.92905,27.823166,52.43463,0.009929977 915,246.37845,187.99445,23.33258,49.774963,0.007467285 915,364.85544,201.61343,29.574951,55.993713,0.002137618 915,622.2465,270.22937,16.900146,52.79648,0.0010895304 915,622.21655,103.36305,16.930115,47.61331,0.00040381274 915,612.0392,222.58707,27.107483,113.60968,0.00037948962 915,612.0034,108.475334,27.14325,139.68985,0.000173407 915,1.052321,405.00412,18.202337,74.84177,0.00014908046 915,617.8071,346.286,21.339539,82.528656,9.707538e-05 915,142.68413,137.7909,43.982437,93.58096,9.4268675e-05 915,3.9554055,184.1897,57.989857,226.69363,7.4647534e-05 915,588.41455,187.98701,50.03778,227.37898,7.3537485e-05 915,612.7889,403.6914,26.357788,101.05377,7.313882e-05 915,191.54384,202.02745,82.76045,175.23174,6.753896e-05 915,454.4189,194.69582,70.126434,143.30806,5.7135872e-05 915,2.048235,228.4868,27.199793,130.09218,5.40205e-05 915,1.2068778,116.76765,13.809708,48.2647,4.655012e-05 915,1.1001091,296.97202,19.615633,143.3407,2.9565996e-05 915,3.2689404,397.7262,56.988117,96.23117,2.2987402e-05 915,1.6879517,81.01039,30.753286,129.8356,1.1158106e-05 915,610.72595,27.996023,28.420715,140.94144,7.945098e-06 915,325.97263,57.576244,41.007904,96.4097,7.58277e-06 915,1.345429,141.88849,18.64052,148.58023,5.1361644e-06 915,570.54114,353.7194,68.60553,134.35104,4.0877508e-06 915,70.20115,424.6278,79.91689,75.85626,2.605847e-06 915,322.3869,66.9833,23.708221,52.814934,2.5045897e-06 915,363.9698,116.1968,22.902832,52.31756,2.2827785e-06 915,595.0083,4.157259,43.5932,86.74521,1.2986033e-06 915,363.45078,95.0451,44.90976,133.46982,4.5052545e-07 915,441.69693,1.494541,44.160522,59.154602,4.134891e-08 915,469.79272,1.2115967,43.862366,51.232883,3.8670944e-08 915,1.4474821,20.676237,57.14036,113.68407,2.7923585e-08 915,578.2129,0.32831055,44.16278,54.356865,6.6828293e-10 915,552.81494,0.85722494,43.47229,47.203876,1.2398071e-10 915,496.52026,1.3358707,44.853577,51.195877,6.000201e-11 916,482.99747,203.89934,21.52707,45.97606,0.0343255 916,522.9037,199.41225,21.058838,47.813644,0.033893775 916,460.40433,208.27513,37.418396,103.59685,0.033091277 916,388.25912,212.21846,24.981781,56.61815,0.023633176 916,287.14175,198.48512,24.111786,45.75679,0.013474945 916,254.04927,192.98795,32.065628,54.907715,0.009328174 916,360.70938,210.25429,22.933136,46.567307,0.008651928 916,405.07367,202.63667,29.481476,71.742294,0.0036496946 916,376.578,210.0983,22.440155,48.44821,0.0014242927 916,9.415781,97.03284,24.686975,46.868332,0.0003975386 916,2.566888,208.06815,29.601336,142.37302,0.00028743374 916,608.6564,438.85797,30.490295,65.66116,0.00015518541 916,611.81085,185.2217,27.335815,134.75865,8.4177926e-05 916,616.884,89.34729,22.262695,75.77118,7.61294e-05 916,3.8035076,190.2936,57.030823,241.0196,6.657778e-05 916,617.2481,354.32266,21.89856,81.7522,4.9505776e-05 916,617.24274,284.16855,21.90393,85.27362,4.2600608e-05 916,0.7856462,397.93478,18.897886,81.53027,3.3084085e-05 916,600.93695,239.73412,38.209717,188.82292,3.146899e-05 916,1.5140935,127.66175,17.931572,148.76764,3.0682135e-05 916,279.6784,146.10643,105.431335,203.46666,1.5583544e-05 916,600.18317,49.799397,38.9635,175.68866,1.2965125e-05 916,611.0541,0.38724935,28.09259,62.002167,1.164072e-05 916,3.1213706,388.71115,56.00898,108.93939,7.0090905e-06 916,1.1410222,90.6174,18.540136,74.55827,5.753219e-06 916,571.7802,359.59265,67.366455,133.45471,4.984782e-06 916,0.9382219,284.71802,18.970789,157.66309,2.7244787e-06 916,391.38107,427.62195,75.19101,71.422485,2.4465521e-06 916,576.00916,452.62204,43.469482,53.425995,1.3831077e-06 916,2.9230502,47.07745,58.093395,218.9761,6.126229e-07 916,528.36566,425.45404,76.36517,74.43213,5.1957727e-07 916,405.074,0.8082894,45.88965,51.450928,2.1793633e-07 916,353.37454,0.0,45.507202,63.80728,3.1866268e-08 916,365.65198,0.0,86.82141,92.83083,1.840002e-08 916,1.4400684,10.839707,37.018646,83.96551,2.1383708e-09 916,436.74036,1.9049984,44.402466,50.661076,1.074279e-09 917,415.82346,201.32619,25.956451,51.109802,1.490187 917,600.9743,194.92567,30.806152,60.754562,0.116171464 917,420.72662,203.6211,40.499695,98.25281,0.055204973 917,622.09625,198.68857,17.050415,55.935608,0.015786773 917,485.18372,215.62442,27.233154,49.251556,0.011658135 917,287.90643,219.22719,43.27835,110.46538,0.010750403 917,437.63345,194.51178,31.80896,67.23682,0.009243946 917,33.904095,192.81807,29.262547,52.067947,0.008597892 917,572.63666,206.47787,24.077759,45.344208,0.006527195 917,429.13528,214.1906,21.125,45.22505,0.004337013 917,145.16783,198.42923,36.58029,73.62613,0.0010633968 917,611.172,131.43567,27.910767,138.26569,0.0005264405 917,599.84314,199.58583,38.694885,223.80113,0.0004971223 917,3.9349203,311.50995,59.72195,179.80896,0.00034882835 917,1.522111,195.87383,18.410767,71.918655,0.00019367298 917,401.1306,201.32097,41.069824,138.32854,0.00016404387 917,1.4130623,385.03238,19.123465,91.347534,0.00016199978 917,613.0103,349.7642,26.136353,128.2775,0.000116803254 917,608.11707,440.22876,31.029602,65.05939,0.00011622987 917,133.99577,210.0619,28.136597,55.59572,7.810969e-05 917,2.3268857,198.13405,29.422995,141.13826,6.0303097e-05 917,5.3428874,122.92344,58.182335,244.63242,3.9442246e-05 917,385.8554,175.4881,105.71512,186.42291,3.457195e-05 917,2.7080486,443.17136,41.580982,58.539917,1.5322292e-05 917,611.115,2.1156414,28.031677,60.118668,6.1234737e-06 917,1.1999594,83.09845,19.234722,152.37367,3.5677808e-06 917,555.4988,424.18515,74.2572,76.59308,2.6691034e-06 917,363.04715,236.68938,89.52786,210.0023,1.7090864e-06 917,533.02875,444.9977,44.274597,60.268982,6.43195e-07 917,1.2497852,25.6025,56.693913,104.8769,4.6896293e-08 917,0.9769108,12.510935,13.037004,75.173,1.1172571e-08 917,1.1386149,4.069982,37.62108,52.034206,2.657242e-10 918,294.73364,202.55258,21.71103,45.94963,0.6208804 918,266.58838,184.85406,28.900177,63.81334,0.3441988 918,306.13403,198.86472,23.858246,50.18448,0.29161102 918,251.67018,199.66284,23.074265,52.993286,0.13378704 918,19.329609,216.9953,31.172028,58.222504,0.03690787 918,23.076824,88.59558,25.591503,47.647034,0.017445464 918,622.7861,210.5774,16.360596,54.04605,0.0058785523 918,239.86887,156.23341,57.6149,116.00386,0.0031467832 918,471.51193,206.37277,59.334198,185.4473,0.0027445822 918,455.2715,319.784,112.664154,166.53482,0.0014824097 918,620.19666,61.4711,18.950012,59.324394,0.0006628093 918,599.15094,224.78961,39.938232,228.93018,0.0006346917 918,611.773,184.71185,27.373657,122.540436,0.00053351116 918,617.2507,356.07782,21.895996,87.75641,0.00032736917 918,2.8064063,171.58925,29.779367,129.54756,0.00032349225 918,621.5298,325.31598,17.616882,56.324615,0.0002880127 918,584.98096,390.91156,53.241882,103.815216,0.0002831986 918,0.9542603,369.77353,18.930418,90.73624,0.00012572335 918,611.3355,0.0,27.811157,105.58478,5.7388934e-05 918,4.5901904,120.52891,58.412117,259.9708,5.5584973e-05 918,612.34625,69.85224,26.800415,147.19147,5.2716012e-05 918,3.745765,255.58693,93.61843,221.46547,3.7747086e-05 918,2.430403,74.74258,28.564337,157.3403,2.6596364e-05 918,1.5446664,317.04303,32.680733,173.33145,2.4584439e-05 918,499.4789,409.76373,91.84305,95.77414,2.2944168e-05 918,544.27405,448.19278,45.193665,62.953888,1.2028107e-05 918,1.2312313,268.93036,18.330711,150.90854,6.9697103e-06 918,3.036465,423.1028,53.07842,73.99112,4.678797e-06 918,1.4738306,439.5759,21.712309,63.21292,3.5469843e-06 918,517.8156,464.46298,39.96521,45.46573,1.53019e-06 918,565.95514,7.1488867,72.30054,149.7682,7.50753e-07 918,4.5985026,43.080307,76.35694,110.802444,7.3287237e-07 918,1.1059506,12.470196,39.05661,92.91463,4.936643e-09 918,6.9675455,2.9405046,44.560112,47.745262,3.839149e-10 918,586.3488,0.0,43.228943,61.496513,3.795956e-10 919,274.96118,197.66705,25.215454,50.37465,99.87809 919,406.29156,188.6585,32.578278,54.95984,69.71745 919,252.32741,200.29465,19.083817,45.336746,68.15996 919,198.8035,186.56583,23.816956,53.96257,26.656094 919,450.49417,195.31197,32.36969,57.119736,0.27306554 919,189.24449,163.94615,53.618896,94.764114,0.011756352 919,159.5964,190.33995,31.044037,69.6696,0.0033303418 919,606.42365,223.42532,32.1156,135.62589,0.0022832917 919,579.1891,393.50616,58.60132,100.94672,0.0005908571 919,258.23776,171.46295,60.402008,100.7142,0.00019199729 919,187.13507,150.0546,111.19083,190.65817,0.00013173923 919,612.26685,142.34245,26.879822,138.11418,0.00013138792 919,1.0127978,207.75105,18.152157,75.02443,0.0001201047 919,611.31256,303.6851,27.834106,169.29727,0.00011382167 919,484.24054,262.8638,120.094666,223.08893,3.5763933e-05 919,111.78502,99.04687,43.234695,116.56144,2.0658743e-05 919,1.9339616,206.26497,31.490984,175.6038,1.5495767e-05 919,611.0358,0.0,28.11084,62.87232,9.0008125e-06 919,610.9782,51.170563,28.168457,137.58368,8.440142e-06 919,1.0127645,380.52628,18.127293,116.08884,8.355474e-06 919,4.1652966,125.320175,58.459297,218.6274,7.749763e-06 919,1.0946549,297.19376,17.709698,137.88501,7.67798e-06 919,4.3247137,299.5726,56.720066,176.17038,5.6523136e-06 919,2.2362654,77.98753,32.21357,168.25847,4.446336e-06 919,41.600105,2.978607,42.194298,55.191868,2.5175304e-06 919,3.8053126,425.3537,59.342865,71.96106,2.3560058e-06 919,1.3118262,19.341654,18.019453,127.04652,5.743019e-07 919,3.0350978,25.027254,76.62648,141.03549,3.9938408e-07 919,14.932684,4.407323,42.548897,47.476418,2.8212207e-07 919,66.6322,0.5076904,44.553932,57.604225,1.4638701e-07 920,187.57132,198.28853,25.956192,59.130875,99.73644 920,163.32837,198.1857,22.41452,52.443497,95.403755 920,98.90162,202.1643,23.979897,45.042236,95.14921 920,354.59006,192.02773,35.17444,60.21431,0.72721416 920,465.9736,194.06325,28.243805,52.58658,0.048211478 920,16.094711,158.91617,38.945686,82.98457,0.009843619 920,579.8476,260.85562,58.58136,189.17615,0.0033660422 920,143.99092,173.92906,62.054474,101.675125,0.0017923818 920,609.7588,214.11993,29.387878,163.19916,0.001271107 920,34.98719,148.73341,28.353058,61.55568,0.000784086 920,4.636774,98.8963,57.906586,214.75943,0.0007060439 920,615.63196,62.39215,23.51471,79.50836,0.00031706414 920,610.3449,377.01062,28.801758,119.66086,0.000271893 920,618.8228,344.2433,20.323853,67.37726,0.00019396782 920,3.867401,123.55638,34.291878,96.1723,0.00016646406 920,1.5820378,167.46461,19.6773,136.82631,0.00015814899 920,78.13418,153.09312,75.88244,159.90154,0.00010448451 920,601.8192,113.38808,36.67462,190.49007,6.943928e-05 920,166.60645,158.10332,80.70505,153.86873,6.9103684e-05 920,1.1447128,240.93074,19.895979,147.05614,2.1998667e-05 920,3.545205,298.25037,56.10703,180.8808,1.870924e-05 920,1.2196827,351.66504,20.001638,132.90637,1.7536831e-05 920,586.68567,19.076977,51.551086,107.8833,8.273958e-06 920,1.2780379,438.96964,21.674114,64.090485,2.6985988e-06 920,1.3130665,12.007618,31.542105,179.06825,4.5843177e-07 920,1.1804167,3.526413,23.44029,70.493286,3.8118326e-09 921,168.46625,171.45222,21.862915,47.31366,0.62026 921,329.8687,195.86176,30.294617,54.107178,0.09913263 921,458.86407,199.31781,32.330994,57.5683,0.024206614 921,280.48975,194.61584,34.52054,64.78641,0.005171165 921,620.5233,357.95673,18.623352,64.10513,0.0041154316 921,266.8051,224.99324,37.045776,69.439224,0.0023579407 921,620.44275,222.90717,18.703918,55.891815,0.0018699566 921,368.85757,193.7599,22.32489,48.22255,0.0014618845 921,585.1688,273.38058,53.197876,221.54901,0.00058896793 921,617.0912,246.94032,22.055481,88.20711,0.00058886455 921,611.6456,380.49783,27.501038,121.62259,0.00055099174 921,620.0231,42.077297,19.123596,61.248554,0.00050951866 921,118.43213,234.81448,50.21199,144.26804,0.00046200695 921,610.7318,149.97781,28.414856,139.32,0.00022479719 921,401.81967,198.20274,23.092316,46.330124,0.00010466142 921,554.2623,424.4439,82.70392,75.10989,8.3614825e-05 921,1.8226945,184.61131,17.402931,70.87143,7.4321135e-05 921,616.7485,76.198906,22.398193,76.29746,5.275535e-05 921,585.27515,104.49526,53.35034,250.93811,5.1775834e-05 921,1.0040954,220.41121,16.956333,125.472275,2.8543152e-05 921,596.0025,13.352172,42.834595,78.12687,2.8199049e-05 921,577.43915,457.32687,42.223267,47.116943,1.6623942e-05 921,2.4116652,127.79057,31.568472,165.84645,1.3602802e-05 921,0.9826563,319.5042,18.318724,71.55014,1.1130218e-05 921,0.9659082,360.5348,18.950314,133.8385,8.317979e-06 921,270.7029,166.80774,102.65433,195.50821,7.755101e-06 921,3.7829916,233.35019,55.829494,219.48837,6.910475e-06 921,1.2714592,99.549614,18.127474,73.52361,4.2782353e-06 921,256.3778,425.89322,78.61136,76.231964,3.6660047e-06 921,301.88168,431.5886,75.43875,69.277985,3.0912101e-06 921,343.42377,434.33057,72.422424,65.55792,2.4350995e-06 921,152.89032,422.89804,73.163025,77.65576,2.4046008e-06 921,3.5617986,395.60757,55.13227,98.47342,1.9251763e-06 921,507.93167,431.3588,78.32907,71.52283,1.0656846e-06 921,0.5818327,12.740349,9.537294,76.04829,5.889758e-08 921,2.3490593,20.23126,54.843304,106.76111,2.1534053e-08 922,306.13815,184.09409,23.587402,47.32219,2.1261687 922,4.592409,146.41685,58.90428,164.01723,0.021658018 922,90.49454,175.89433,26.436432,52.90773,0.0015969939 922,617.77716,221.22685,21.369507,80.09032,0.001086686 922,588.2339,262.24576,49.708435,225.33228,0.00055044243 922,296.18176,291.784,27.340607,57.560577,0.00040862497 922,2.5225465,115.022995,20.477776,162.16927,0.00035411483 922,603.0989,164.7273,35.683228,167.84589,0.00027734655 922,611.8319,380.3811,27.314758,122.31958,0.00020414141 922,596.0808,2.5058448,43.065857,50.33627,0.00018647691 922,610.8489,68.54014,28.29779,168.62228,0.00012667726 922,19.999456,184.29889,25.911745,66.819214,0.00011635309 922,508.7701,56.149044,29.181122,51.781467,0.00010147733 922,130.8563,223.68341,34.058746,68.66,9.4245755e-05 922,615.94354,18.66409,23.203125,88.065506,7.0425114e-05 922,1.5446754,253.00577,21.449987,110.83536,6.603234e-05 922,0.9438835,301.9651,13.335418,49.357727,5.6482175e-05 922,1.1277922,322.96512,18.221272,73.438324,2.828955e-05 922,555.6892,425.5666,79.83185,72.354034,1.32730665e-05 922,2.2129347,276.19315,32.139194,193.54651,1.0659575e-05 922,45.041824,127.474144,96.075745,197.50876,1.0207625e-05 922,1.1896737,383.25443,18.522,116.131836,7.157783e-06 922,5.7062044,354.78726,78.243004,135.28156,2.9880566e-06 922,566.86066,0.0,72.091125,165.54333,2.9160562e-06 922,343.156,444.1451,42.137024,56.96823,2.9034857e-06 922,486.65344,445.2228,41.316467,54.71219,2.768629e-06 922,263.7903,429.03467,73.47034,69.17804,2.0580983e-06 922,366.1617,429.54166,71.39157,69.03424,1.6952914e-06 922,489.98407,400.26276,121.14697,93.77954,1.6401957e-06 922,2.5081723,445.7074,41.930634,57.18875,1.5879199e-06 922,146.73267,430.75772,71.94417,68.25714,1.4255595e-06 922,285.7709,400.02307,112.58313,96.21365,1.2763044e-06 922,69.36555,396.02,123.10383,99.7254,1.022044e-06 922,31.465685,425.19806,79.53704,74.345856,8.668864e-07 922,2.0011337,52.313778,20.77476,110.03142,1.2972237e-07 922,566.5315,3.7029867,47.320312,54.0292,1.1253377e-07 922,538.5976,3.9572005,42.88385,45.20277,2.2936426e-09 922,1.442111,11.264903,32.744205,73.40772,9.757011e-10 922,506.1259,3.524673,43.122772,46.287632,7.646601e-10 923,474.6908,205.65565,26.09082,45.461014,0.014087974 923,114.68678,197.43506,34.892395,66.285,0.008396929 923,29.162956,205.76842,47.470985,93.86403,0.0018666069 923,610.2046,145.86604,28.903198,144.5172,0.0005923561 923,52.627285,233.98607,23.645054,52.651627,0.0005725255 923,618.89484,370.57837,20.251831,64.10538,0.0005236115 923,164.58537,190.97112,22.133759,50.225967,0.0004919449 923,600.97815,306.8695,38.168518,186.74817,0.00039598308 923,183.45827,194.86703,22.4254,46.471954,0.00034607743 923,86.05894,190.60524,39.5895,97.97099,0.00030735397 923,27.202585,232.76384,22.850775,47.984177,0.00018168807 923,1.3486898,248.46378,17.916193,74.34387,0.00014508169 923,3.8755014,265.75186,55.566357,209.73721,0.00012123973 923,605.9759,3.3758888,33.170776,61.48469,0.00011562016 923,45.832397,211.81143,23.715584,45.55075,9.6606585e-05 923,414.4202,205.81134,26.136017,46.12166,8.8818924e-05 923,613.03687,413.2876,26.109802,94.40329,8.553321e-05 923,616.39935,72.58437,22.747314,84.584816,7.9726946e-05 923,584.2041,15.040642,54.497986,111.28177,7.6142474e-05 923,622.61005,251.21988,16.536621,50.258057,6.377105e-05 923,2.3748813,196.8709,34.40425,179.14763,6.0059007e-05 923,0.96695316,269.94437,19.076157,151.66809,4.5527766e-05 923,1.4521176,378.40524,18.014244,72.61316,4.2793043e-05 923,1.7271054,127.34185,18.558903,149.55438,2.4211877e-05 923,1.5178069,93.68773,18.856155,79.146835,1.22663805e-05 923,1.0813826,415.85352,16.35994,85.49863,7.561078e-06 923,1.9487013,50.416733,37.8167,82.970215,5.278302e-06 923,3.3786914,425.3253,51.3661,73.39166,2.4340502e-06 923,531.6033,3.1917057,48.99408,50.49907,8.806235e-07 923,3.0940936,71.6767,59.777912,255.19293,7.3956204e-07 923,562.5099,3.0337582,64.575195,55.9523,5.518564e-07 923,444.34586,2.3438299,42.486816,50.70789,1.8158539e-09 923,0.6638257,2.819717,21.20395,69.63784,5.023473e-11 923,151.16644,0.25688478,44.25099,51.367336,1.1748937e-11 924,307.0505,200.46976,35.262848,69.82141,0.04371658 924,91.46747,188.2227,33.9598,56.268555,0.024494432 924,544.2837,235.29074,25.74701,54.82785,0.022662595 924,153.07204,191.1638,24.518036,51.299225,0.0072704987 924,609.9528,139.30269,29.112122,146.9611,0.0016161992 924,329.31442,209.78133,35.69342,68.15419,0.0009969175 924,595.999,217.13815,31.028564,66.44284,0.0008081542 924,1.5824463,204.14804,18.957756,84.11676,0.0006254158 924,76.938095,192.18016,23.953888,51.561172,0.00048203205 924,587.4754,203.54605,50.311035,234.81088,0.00041500485 924,616.6448,401.70593,22.501892,80.13199,0.00036864908 924,1.480796,193.77243,12.837847,48.424927,0.0003512824 924,616.91943,102.728645,22.227234,85.175026,0.00027150536 924,2.3456974,182.5056,32.84253,168.0605,0.000109687695 924,608.3661,1.5968002,30.777283,60.56808,0.00010278362 924,1.0937655,399.50638,18.101616,75.12555,8.777628e-05 924,571.60297,362.13998,67.5437,129.62054,6.476874e-05 924,1.3356568,253.47131,18.993254,80.49567,6.2006504e-05 924,0.8840023,344.9839,18.475946,77.133606,3.8259954e-05 924,117.80238,280.9756,28.384018,54.828552,2.2276243e-05 924,1.3521054,267.2258,28.185242,168.13312,1.6678985e-05 924,3.4316895,401.15094,54.906464,95.6485,1.3329348e-05 924,1.5158455,443.93646,21.470316,59.241302,7.673207e-06 924,1.7317156,83.13803,17.532486,140.62302,4.07671e-06 924,585.47375,8.1128645,53.569336,120.53785,4.027517e-06 924,25.147133,431.9948,76.402245,66.358154,2.778034e-06 924,201.64629,428.6683,72.27547,67.585144,1.9806964e-06 924,154.42125,427.84525,72.33763,67.8006,1.6838383e-06 924,501.90393,1.7878224,47.565613,63.723576,6.944005e-07 924,572.0983,5.1768017,45.372375,56.04875,1.875013e-07 924,529.3898,4.043423,45.883545,56.346664,6.939672e-08 924,469.6232,2.141709,47.39792,60.669178,2.3768015e-08 924,444.8183,3.1795802,42.662292,54.88309,4.4646598e-09 924,2.170874,11.09001,32.98744,76.0071,1.0254928e-09 924,402.0067,2.8218849,44.014343,51.026215,9.0516855e-10 925,487.9746,232.34448,30.286987,55.449158,0.15499413 925,1.4096762,246.94987,22.267359,62.54924,0.019469744 925,589.9429,197.11325,27.01825,53.372665,0.018206583 925,203.40883,214.4163,34.868774,63.814194,0.0052163936 925,620.88904,189.17285,18.25763,55.965485,0.0038212345 925,177.26361,232.8378,21.960083,46.9776,0.0025970377 925,609.54504,173.99962,29.51117,126.83601,0.0013345048 925,227.88432,214.41507,31.728378,63.995667,0.0007316894 925,586.4795,190.98471,50.80121,243.89026,0.0005533709 925,624.5426,140.11246,14.604065,46.02928,0.0005444702 925,0.34168255,271.17856,12.390128,45.407074,0.00049066014 925,1.8116146,237.76279,40.880337,119.324066,0.00029456502 925,610.75543,371.4405,28.391235,131.05417,0.00024073831 925,0.67155844,295.91302,18.966911,85.33328,0.00014469867 925,609.8083,4.680475,29.338318,93.920586,0.00012642684 925,616.50104,73.9038,22.64563,89.56353,0.000116770956 925,174.97441,209.93634,41.458252,85.80737,6.890336e-05 925,1.1959424,402.7956,18.288145,73.625305,5.523305e-05 925,584.9527,0.0,54.05078,282.5502,3.9632847e-05 925,4.0643425,170.67102,74.37567,251.06915,3.5982266e-05 925,1.6551498,175.64803,18.724411,80.572495,2.3574627e-05 925,1.3794898,332.4451,33.830883,160.44669,1.7924953e-05 925,1.3582976,97.51056,18.19168,68.12149,4.4379985e-06 925,1.8506234,91.44127,29.17191,184.15495,2.6555958e-06 925,570.8904,4.4464064,62.181824,55.93785,1.6228441e-06 925,409.80356,1.9132634,47.311188,50.176502,4.7443413e-07 925,440.1953,5.262243,45.693756,56.69332,1.2553811e-07 925,326.65912,6.701896,44.87921,56.524166,9.302795e-08 925,381.60938,4.650866,47.039886,56.100243,6.01287e-08 925,1.6319467,13.474372,35.79249,75.90201,4.3868592e-08 925,354.1264,6.060921,45.304962,54.500645,1.8108432e-08 925,299.165,5.646011,47.03589,55.596626,1.0515698e-08 925,273.31985,4.368086,42.99005,51.76761,4.0046837e-09 926,456.70303,192.00618,26.642303,55.183807,0.043526087 926,354.1151,226.53969,37.67386,66.7484,0.009844238 926,490.07346,190.30289,25.447052,53.562744,0.005505813 926,475.10104,193.28894,25.016785,50.949158,0.0037951344 926,573.2221,216.78766,20.672546,51.93335,0.002579855 926,586.521,212.92943,25.726807,48.74156,0.0009567483 926,612.66455,213.23865,26.482117,99.62903,0.0008398192 926,584.8924,238.47833,53.73987,242.86954,0.00050743396 926,616.192,268.463,22.95465,90.29382,0.00027803722 926,610.9161,377.04776,28.23059,125.635284,0.00024912553 926,231.2476,260.59262,23.756409,49.57895,0.00024112617 926,546.15424,200.73416,23.90149,46.193115,0.0002403497 926,1.1634831,230.63805,17.98396,79.06868,0.00015980033 926,617.9342,57.83693,21.212463,76.62573,0.0001158535 926,2.2046468,139.63528,28.504677,149.85391,6.590022e-05 926,1.0997103,330.08783,18.940166,140.71509,4.372917e-05 926,1.6848438,178.75813,18.105612,70.09508,4.210871e-05 926,586.6051,119.33597,51.812805,226.83234,2.521145e-05 926,3.445739,186.70953,48.776226,174.24368,2.089381e-05 926,1.0835133,421.02557,16.334352,80.286835,1.3508649e-05 926,3.5322332,323.90195,57.39524,162.6211,1.1432805e-05 926,100.95658,258.00504,68.248726,119.05475,6.88767e-06 926,1.3525131,116.7972,17.83805,86.662346,6.2232752e-06 926,155.96053,396.24854,124.27147,98.89731,4.470956e-06 926,200.11227,442.5165,41.664886,55.22043,4.3227083e-06 926,600.25934,27.149454,38.88733,169.34549,3.9971196e-06 926,222.29366,441.66016,45.710617,56.340057,2.5326683e-06 926,277.37454,36.852383,78.26318,197.8783,2.2282738e-06 926,237.63037,428.57358,76.802765,67.71164,1.8274616e-06 926,599.141,8.60554,39.830505,69.95904,1.3133872e-06 926,4.4942904,26.764776,55.94756,95.74034,9.731934e-07 926,1.8214893,28.91438,17.858679,112.57051,4.689694e-07 926,1.9210898,9.734149,30.147053,54.37267,1.1247497e-07 926,437.36887,12.996687,84.4877,70.49857,8.061224e-08 926,278.4454,4.98035,61.250824,49.33528,6.058989e-08 926,483.3174,7.9580584,43.85446,48.53492,2.8948453e-08 926,416.99384,6.182821,45.595276,56.41124,2.14582e-08 926,538.4937,5.958968,43.966797,50.639854,2.107389e-08 926,191.09332,5.800492,42.98442,51.59062,2.056095e-08 926,29.01293,9.195239,41.390602,47.55579,1.40956535e-08 926,389.24387,7.788353,42.592957,53.841454,1.1407847e-08 926,127.44829,4.001247,41.814972,54.81709,1.0521435e-08 926,578.8542,3.1347022,41.8844,55.888382,8.217437e-09 926,54.458942,7.7728095,43.553715,50.278,6.939894e-09 926,100.66828,4.6013103,44.83866,54.15231,2.5649731e-09 927,208.95322,177.04631,28.00296,60.183334,0.057129662 927,459.43533,206.00522,23.421143,45.964005,0.009657995 927,217.63168,170.79187,44.365845,82.38693,0.0018157054 927,1.0654411,243.26128,14.1039915,50.2137,0.00051620806 927,617.4687,217.58215,21.677979,80.32761,0.00039720512 927,610.4706,321.76575,28.676086,155.83984,0.00039506573 927,326.58856,221.05815,22.25528,50.418472,0.0002036106 927,0.8782227,183.83578,19.241936,84.345215,0.00016562527 927,613.23584,418.8432,25.910828,86.25583,0.000121701385 927,0.8428463,111.75887,13.646351,51.218864,0.00010668255 927,0.868558,261.93613,20.583061,126.68094,0.00010452996 927,584.7211,180.66388,53.47162,244.13815,8.861215e-05 927,611.2213,116.80907,27.925354,138.17024,8.059e-05 927,1.1632097,66.05682,18.802553,81.20993,7.409743e-05 927,616.07947,279.0618,23.0672,89.43292,6.064637e-05 927,1.1146427,132.85542,18.388475,81.50226,5.947926e-05 927,1.7602067,74.62135,33.1725,207.76799,5.4889682e-05 927,30.692768,190.47192,38.425404,65.59744,5.186825e-05 927,114.31241,292.99857,22.059235,45.736847,5.140476e-05 927,0.94496256,336.8744,18.313097,135.73108,4.750923e-05 927,3.4424121,156.56183,56.389034,213.16333,3.5094614e-05 927,51.974274,207.17348,26.111023,52.999405,3.2218082e-05 927,95.73383,193.79,62.560356,145.96986,3.1930915e-05 927,43.737484,171.45387,47.941273,124.95039,1.7517541e-05 927,3.3685093,334.78244,57.529816,150.37549,1.08054455e-05 927,0.8745248,420.42236,16.562363,81.703064,1.0173531e-05 927,611.3008,1.3415755,27.845886,164.93523,5.099208e-06 927,0.85857344,10.650183,26.085894,87.55076,2.3745113e-06 927,4.214398,42.042118,81.82137,198.38148,2.0445138e-06 927,291.0369,431.5252,71.83807,69.2283,7.292178e-07 928,502.02304,216.97147,24.740082,45.76944,99.73253 928,619.0974,137.92882,20.049255,61.927963,0.009408308 928,599.00824,232.54459,39.569824,121.37424,0.0025738343 928,158.96799,216.6841,35.75148,62.726913,0.00068602024 928,621.27386,320.66806,17.872803,60.706573,0.00061710697 928,486.62366,203.06737,51.120483,81.7885,0.0004332806 928,4.7138495,81.29735,60.520084,169.9301,0.00039403734 928,609.67,137.87973,29.476685,146.68549,0.00028967566 928,31.196358,94.50003,26.76242,62.02336,0.00022489455 928,610.57074,306.62738,28.575928,148.28674,0.00013380477 928,0.78488606,236.54959,13.944313,53.506256,8.263674e-05 928,1.484336,160.41629,18.431206,75.332886,7.209623e-05 928,1.0622299,398.2527,18.245264,75.17911,6.319734e-05 928,612.7709,414.35645,26.375793,87.47098,6.0601382e-05 928,51.099384,95.9014,27.123074,56.598343,5.922398e-05 928,0.9773454,306.18314,19.345232,143.39673,5.8595215e-05 928,1.4688712,77.36419,18.780617,82.06043,5.7855537e-05 928,572.8198,188.4959,66.32684,267.01007,5.315471e-05 928,6.0629525,129.44289,77.62755,278.7959,3.6686357e-05 928,1.3479224,203.37636,19.856709,134.50102,2.0350875e-05 928,67.14207,90.4227,23.586838,49.224686,1.9079229e-05 928,3.1090674,329.8512,58.58955,158.41928,1.5486326e-05 928,537.0654,432.29672,78.71448,69.48694,7.636007e-06 928,1.3053695,444.08542,21.573591,58.96115,7.237572e-06 928,80.9665,89.821236,26.138535,47.13276,5.4981947e-06 928,612.2181,0.0,26.928589,62.0276,3.1594502e-06 928,489.5734,166.57883,94.47104,187.30325,2.4428964e-06 928,2.3303044,28.822813,32.700188,165.8994,1.7270736e-06 928,195.21349,432.36334,71.50386,66.69989,7.625044e-07 928,147.01866,430.06534,72.177704,69.13364,6.4568775e-07 928,0.83872193,13.781172,14.008394,79.321106,3.6242537e-07 928,2.4715593,13.444646,48.624214,66.28361,2.125802e-08 928,42.193604,12.495163,85.82327,70.25768,1.8141307e-08 928,164.91093,6.445135,40.63504,52.769386,4.3600137e-09 929,439.8606,216.71776,25.120026,50.761185,99.75394 929,621.384,191.80624,17.762695,58.366165,0.00050192274 929,609.7743,122.21663,29.372375,142.394,0.00041230686 929,136.33696,223.74097,20.918716,45.722015,0.0003448545 929,123.41719,227.61272,21.06575,46.96425,0.00029531267 929,622.06775,237.27147,17.078918,51.694687,0.00024109581 929,615.47327,394.0489,23.6734,88.95331,0.00023486732 929,414.2901,193.15308,59.672302,100.551056,0.00017078796 929,1.1921501,249.2624,33.22278,200.77827,8.6514556e-05 929,617.3486,264.27835,21.798096,84.89227,7.423762e-05 929,617.3451,313.92343,21.801575,83.35751,6.8620735e-05 929,1.5100448,213.70276,19.566431,77.54306,6.367831e-05 929,0.57526046,304.66867,19.098259,87.33792,5.7690464e-05 929,600.8621,195.18137,38.284546,198.76224,5.206376e-05 929,1.1175147,384.23834,18.233227,75.432465,4.3663287e-05 929,571.649,420.3502,67.198425,78.81497,3.7493934e-05 929,2.1862972,162.59573,33.753853,170.27567,3.2674674e-05 929,1.5318465,156.30713,18.595207,84.170944,2.1664262e-05 929,1.4550627,55.32948,18.039371,69.74048,1.3377232e-05 929,1.0682536,423.13205,16.374771,78.6525,1.1174548e-05 929,448.05466,429.7457,85.03348,69.999054,9.942147e-06 929,2.8528028,19.549232,36.660206,71.28922,8.052841e-06 929,4.60263,151.39984,77.86418,258.16537,7.1481372e-06 929,315.32526,209.03685,41.48517,124.442,6.6553157e-06 929,3.27591,394.47174,56.331383,99.862274,5.180616e-06 929,1.2774373,100.38309,18.164589,74.64299,4.9069668e-06 929,612.66223,0.0,26.484436,62.30848,1.806674e-06 929,4.649089,31.889141,79.22971,112.9554,1.6314781e-06 929,423.68625,180.40115,96.70651,182.50494,1.2668118e-06 929,243.2517,433.53107,72.04295,67.67935,6.690032e-07 929,25.959864,433.36166,76.85055,67.39783,5.86765e-07 929,516.0457,427.64978,74.37909,69.91699,4.8814053e-07 929,48.32535,9.523299,42.386433,48.46247,2.1005468e-08 929,74.11363,6.0572867,43.104927,52.41115,1.8864181e-09 930,448.8663,212.29553,28.140015,62.10269,0.86033213 930,552.95575,140.14345,23.593628,45.266464,0.019318001 930,381.06088,186.23534,36.558716,84.26817,0.0034902722 930,620.0109,160.63599,19.135742,55.222977,0.0014473218 930,436.85855,208.55907,24.586365,54.45781,0.0008368419 930,610.8396,111.06487,28.307068,145.7507,0.00037100012 930,612.9989,205.36176,26.147766,114.99597,0.00024853463 930,606.03656,431.78098,33.110107,76.28403,0.00023955335 930,622.44055,298.9543,16.706116,52.0524,0.00011254734 930,1.6842912,180.45746,18.08967,73.89011,9.698941e-05 930,0.8720101,308.75552,20.02852,150.91537,8.961094e-05 930,3.7348976,184.39389,56.963787,236.06784,7.062729e-05 930,0.85944176,426.3919,13.380976,47.737335,6.5681066e-05 930,617.6492,333.2807,21.497498,82.48819,5.998042e-05 930,572.3752,119.75967,66.7641,231.3291,5.8890448e-05 930,0.7778247,276.0174,19.231655,86.63751,4.4616703e-05 930,601.69904,248.83235,37.44763,197.02046,3.063512e-05 930,417.10995,426.20837,83.16916,71.96283,1.493356e-05 930,4.9370313,357.99225,80.189835,132.9801,1.0596349e-05 930,2.198192,151.38248,32.956123,169.10913,8.484965e-06 930,376.9064,170.04727,73.26074,142.78915,7.604278e-06 930,561.39667,397.36465,77.75,96.81915,7.140601e-06 930,611.708,14.390625,27.43866,136.42162,6.3076436e-06 930,1.5686743,65.1618,17.8749,68.2786,5.926478e-06 930,1.9780209,418.56387,35.518055,80.32666,5.8032756e-06 930,3.5178957,23.539085,56.567287,90.32843,1.989784e-06 930,0.4444104,264.2545,10.905715,45.863586,1.6939662e-06 930,1.471047,20.0385,12.8882,70.32845,1.5480147e-06 930,99.838585,432.1566,71.53315,67.16156,1.2295656e-06 930,28.805971,431.2597,75.43857,70.75253,1.1462167e-06 930,146.29655,432.9888,72.7932,67.030914,7.3896143e-07 930,509.17273,425.77307,75.41766,71.96149,7.388134e-07 930,16.143673,9.4705305,90.01431,69.263794,2.0663169e-08 930,73.29518,2.2348504,44.43569,61.841343,9.03548e-12 931,0.6276156,214.6554,33.76522,89.775604,0.0057099313 931,619.8311,74.93873,19.315552,65.57453,0.0038630483 931,625.7738,161.73509,13.372864,45.09915,0.002416915 931,413.06992,209.96538,32.27234,67.38457,0.00154687 931,608.1128,61.569,31.033875,147.0602,0.0009509175 931,1.400433,172.09818,19.23412,93.765686,0.0003461052 931,610.5329,415.5093,28.61377,90.8107,0.00027073792 931,0.32441,245.94048,13.126493,54.447495,0.00026121078 931,4.4355226,145.7814,65.20731,170.73154,0.0001984737 931,617.29016,196.9358,21.856506,84.860825,0.00015313044 931,56.069527,190.08572,32.587418,68.20294,0.0001383363 931,617.85,338.6267,21.296692,76.06879,0.00010652507 931,1.0787696,385.16907,18.217634,75.912506,6.6287364e-05 931,404.75528,116.80828,72.51727,181.85812,4.3947864e-05 931,602.4656,152.28152,36.68109,189.25519,3.665691e-05 931,0.87780195,306.6823,20.800964,115.92084,3.2652617e-05 931,5.2140527,227.21094,77.094284,248.77032,3.0177376e-05 931,588.8981,250.81194,49.694946,231.36736,2.9229064e-05 931,561.56476,398.77417,77.40112,96.651306,1.4801063e-05 931,429.24536,428.75192,83.391174,70.21039,9.665159e-06 931,410.47336,138.37378,38.832703,90.13226,9.500697e-06 931,1.2558106,443.02838,21.621937,60.12805,9.149428e-06 931,3.5020542,397.7467,56.603104,96.61676,8.125804e-06 931,1.4117774,79.823235,18.572784,77.90354,4.4008675e-06 931,283.5825,432.38705,72.02081,68.17993,1.0165886e-06 931,40.345596,431.26422,76.74277,67.32745,9.567669e-07 931,522.5552,424.4383,76.923706,73.643585,8.3634734e-07 931,324.562,431.52292,72.522095,69.12335,7.247626e-07 931,2.0340934,17.22115,38.45263,68.05406,6.0119663e-07 931,2.0142846,44.661995,29.209011,181.57935,4.688648e-07 931,4.967712,19.26668,80.83621,142.89708,1.5865204e-07 931,25.792046,5.81896,44.23813,49.096703,8.561931e-09 931,52.319912,6.731149,45.115185,49.066704,6.3223504e-10 932,582.63873,201.36998,51.37671,120.07512,99.98172 932,612.97034,211.75969,26.17633,78.17137,69.59675 932,620.55566,256.06564,18.591003,64.22113,0.067838535 932,423.1665,211.77531,34.27063,78.09526,0.017238244 932,589.414,260.3286,25.32605,54.79239,0.004434204 932,510.426,229.52815,27.130707,54.80687,0.0011871962 932,570.832,424.6035,66.647705,74.64429,0.000816608 932,535.74365,118.02802,103.2345,271.28314,0.0005832343 932,620.2236,53.0424,18.923096,62.91991,0.0004530679 932,1.6121492,189.29816,18.217476,79.504,0.00027488163 932,611.5355,280.00317,27.611145,168.42401,0.0001097576 932,2.4817936,185.44504,34.288925,157.89508,8.4605126e-05 932,608.4613,25.766817,30.327393,141.84981,6.7324174e-05 932,426.0096,164.42662,78.62192,159.43483,1.9308034e-05 932,1.0470711,262.8685,19.965237,111.57306,1.3105725e-05 932,0.8142163,319.23398,19.49263,143.63937,1.0776713e-05 932,3.270215,234.25577,57.306244,233.36545,6.3501348e-06 932,1.3283122,79.53493,19.187439,150.84302,6.0363277e-06 932,1.3914006,397.75708,29.481812,100.04654,5.4318903e-06 932,3.8554053,45.49814,59.408054,256.54428,2.167765e-06 932,2.4674625,16.49445,59.111397,113.80818,1.0219114e-06 932,1.4807764,27.16749,19.301277,70.86146,4.5197658e-07 932,574.8472,0.0,63.10565,53.394974,2.794431e-08 932,6.835404,5.367829,44.05812,50.636353,1.977599e-08 932,496.49387,0.0,79.73074,160.71758,1.3574726e-08 932,507.02725,0.0,44.811066,63.238987,1.9551998e-09 932,414.87106,1.3179916,43.019257,46.46486,7.9983e-10 932,542.86255,0.0,50.569763,59.92293,3.564937e-10 932,45.85244,5.856742,45.055237,52.693832,1.1035889e-10 932,478.40063,0.64187014,45.63501,47.846233,1.1798139e-11 933,493.53235,198.63014,25.186584,57.228928,99.95443 933,428.68085,193.42761,38.417297,93.32538,0.006331675 933,386.13196,198.92259,26.009491,52.063614,0.0014703015 933,27.766224,182.6218,39.40241,74.8945,0.0011352809 933,478.72595,179.46326,58.2594,94.67551,0.0009405134 933,625.49176,239.42676,13.654907,45.101196,0.0009392495 933,425.97156,221.17169,21.848755,45.105316,0.000847814 933,508.13544,200.71971,23.492859,49.309937,0.00083293486 933,610.60834,183.91136,28.53833,145.20427,0.00016770342 933,438.5389,233.05391,21.979645,47.070267,0.00016385312 933,616.4458,97.024635,22.700867,84.89185,0.0001611655 933,1.7478646,174.12514,18.551947,79.52403,0.00015861301 933,606.6455,430.81387,32.50116,77.74817,0.00010397815 933,588.84406,245.41829,49.406494,225.3087,8.1878316e-05 933,2.9708562,19.761759,58.14804,100.86982,4.4029457e-05 933,2.739336,76.438255,34.24933,208.39572,2.5815574e-05 933,1.296078,55.36772,13.601341,53.544075,2.1769018e-05 933,1.119017,386.83408,18.189863,73.94589,2.1355661e-05 933,3.0380177,225.43536,57.431927,243.03705,1.5394884e-05 933,1.0437126,243.1607,17.529488,140.96017,1.4618193e-05 933,1.7681421,75.99653,18.676369,79.814354,1.360955e-05 933,1.6518067,120.82908,18.445549,82.65191,1.0430416e-05 933,599.21265,48.23498,39.93402,205.41489,9.9817835e-06 933,443.33344,139.42789,142.37842,225.50647,8.763312e-06 933,555.30774,396.71143,83.83893,97.91437,6.050079e-06 933,1.5228565,341.75604,33.3036,149.60501,5.367112e-06 933,610.82306,0.0,28.323608,64.31567,4.8131956e-06 933,1.2566903,443.6575,21.545135,59.188354,3.3412605e-06 933,586.1919,9.614746,52.101135,115.10396,2.0135387e-06 933,3.2560434,430.58276,53.02116,68.42645,8.773141e-07 933,2.4520037,8.083456,36.9453,49.258514,8.6087715e-07 933,467.3839,427.33298,71.75043,69.68527,5.860894e-07 933,25.345524,7.96244,48.285107,51.474567,4.0853325e-07 933,74.36384,2.2162077,44.412636,59.06499,9.011067e-10 933,497.43976,0.78678226,42.094116,45.32298,1.1916685e-12 934,580.3998,197.01219,38.085693,74.80443,99.931335 934,439.14984,179.47919,38.11209,74.88365,2.3088403 934,604.4097,200.63339,31.102112,83.61771,0.16432364 934,528.278,170.81989,27.29242,56.0663,0.016365435 934,580.4895,172.8609,56.022095,188.84296,0.011128265 934,621.2992,193.47214,17.847473,55.72943,0.005744607 934,1.4984928,174.37001,21.997387,126.23613,0.0012058399 934,463.38315,191.48615,44.08844,80.38812,0.0010305129 934,616.2138,240.80052,22.932861,82.7426,0.00035155355 934,620.2311,89.772354,18.915588,61.75807,0.0002766291 934,611.623,373.04575,27.523682,127.11426,0.00016211136 934,616.3685,130.53252,22.778137,90.71756,0.00012401512 934,600.6783,43.86444,38.468384,201.73587,9.073134e-05 934,3.5153906,13.558142,55.01464,69.91661,4.0944076e-05 934,0.8780542,234.96786,19.564783,148.67578,1.7436803e-05 934,1.9860914,11.759111,16.659504,67.964294,1.636228e-05 934,3.4315398,158.04774,55.92958,219.42268,1.4016064e-05 934,0.8644816,340.42062,19.896929,134.72586,1.2110127e-05 934,408.04947,142.63417,99.714355,185.7914,1.1071611e-05 934,612.98315,0.0,26.163513,46.917057,6.9290713e-06 934,1.0618237,424.06387,16.848572,78.07718,5.3402355e-06 934,1.9643499,62.399017,29.200228,176.35149,4.8340808e-06 934,3.409206,338.38745,58.388947,150.94397,2.6341256e-06 934,59.993042,5.427316,44.412895,52.556965,1.0794878e-09 934,580.70325,0.0,42.344788,47.560223,1.4538666e-11 935,406.26483,231.22298,31.17273,74.49834,3.4666889 935,596.9245,177.2678,36.174316,90.45961,0.18826912 935,364.71133,221.80214,20.171082,47.230087,0.060023427 935,616.9277,176.88005,22.218994,64.58095,0.008975198 935,550.4894,125.45081,81.50946,169.68405,0.00576787 935,564.6796,208.9802,38.44409,74.31772,0.0046542524 935,584.6649,176.09346,29.228271,59.475082,0.0037649653 935,620.2725,213.88316,18.874146,63.37761,0.0032823714 935,483.1437,199.71198,44.18155,164.22205,0.00076984 935,611.89276,370.97495,27.253906,131.3722,0.0002493335 935,584.76556,170.07341,53.394287,275.69427,0.00022346168 935,1.2185067,182.77617,17.792484,75.96602,0.00019732659 935,456.9896,198.75233,111.33896,246.86247,0.00016870713 935,395.55145,203.11177,66.161224,127.81734,0.0001661895 935,554.02094,157.19194,37.376038,89.89955,0.00013971838 935,610.4575,68.655266,28.689148,165.21463,5.8875117e-05 935,610.32635,222.12662,28.820312,155.01782,4.6220033e-05 935,1.1112086,226.79024,20.65692,99.17824,4.2557644e-05 935,552.32574,420.0853,82.7735,79.10962,3.7287828e-05 935,2.0171208,14.692357,42.59043,84.67384,3.4061868e-05 935,3.8592172,62.991615,58.228294,242.88367,2.050126e-05 935,1.1279558,407.17096,18.030521,71.32886,1.3649702e-05 935,1.4610002,71.4323,20.011732,156.49063,1.0635955e-05 935,0.84300053,318.26294,19.842924,134.8176,9.245173e-06 935,365.59497,166.15596,136.95337,234.26479,8.756144e-06 935,3.715949,241.2396,57.936565,227.42297,7.789599e-06 935,597.26056,13.126612,40.871582,70.87047,5.7468797e-06 935,3.7555943,398.58948,56.393394,95.75461,1.4834336e-06 935,566.5031,11.179798,72.13214,162.12146,6.823075e-07 935,25.165915,5.676882,42.638557,53.754936,3.372282e-09 936,407.96072,220.63638,26.96695,60.731506,0.3840918 936,538.2623,251.40532,30.093384,55.252975,0.10402927 936,400.50604,229.52998,18.665955,46.614365,0.0071865 936,120.54026,201.75143,23.538979,48.209488,0.0058401874 936,524.89764,194.91881,41.77014,104.47905,0.003163745 936,621.4386,109.8983,17.708069,53.05298,0.0008031724 936,616.8873,200.0197,22.259338,79.5829,0.00068643515 936,530.5734,191.73373,23.971252,47.054214,0.0006690541 936,576.9012,178.14009,60.273987,115.73009,0.000593048 936,622.4314,288.88974,16.715271,54.730194,0.00045878382 936,615.71796,52.652496,23.42871,90.6355,0.00027065273 936,1.5069344,224.04953,17.976828,72.3811,0.00025785115 936,515.2198,223.50128,75.5116,150.20447,0.00025135878 936,620.8942,350.5962,18.252441,69.42493,0.00024580854 936,615.88196,127.86084,23.26471,94.64314,0.00015760097 936,599.9043,66.56765,39.24237,200.83655,0.00013662703 936,1.2774943,288.05887,18.180788,75.27881,9.0345384e-05 936,610.9942,222.09756,28.152466,149.1897,8.5882726e-05 936,2.6641943,180.57542,33.866665,175.44264,8.096702e-05 936,612.9677,412.44485,26.178955,91.54608,7.730622e-05 936,588.5191,273.49997,50.372314,204.37582,7.391012e-05 936,516.8602,241.77193,33.851685,81.90312,4.0242005e-05 936,1.0990934,414.75458,16.111115,84.86163,1.9265102e-05 936,1.3368148,325.73962,18.722212,130.047,1.8344046e-05 936,3.596914,291.41156,56.450928,176.81573,1.2350226e-05 936,1.3464649,114.348335,19.05113,144.48242,1.0015023e-05 936,585.71875,18.86616,53.427917,110.99656,9.0444555e-06 936,101.53216,94.99323,71.44665,197.79663,7.746173e-06 936,2.4709082,421.6184,52.703426,75.37274,3.339827e-06 936,1.1618214,45.903805,19.153976,81.279236,3.1807697e-06 936,3.3273065,21.367863,55.504948,95.67145,2.8194145e-06 936,1.3159856,13.829486,16.735615,64.71031,1.6793545e-06 936,126.01693,426.7787,77.66517,71.59329,8.290922e-07 936,522.2735,422.66565,73.88904,75.43942,5.898193e-07 936,17.509153,8.041584,44.570366,46.519405,6.069164e-09 936,54.232708,7.234196,41.600513,45.504986,1.5096396e-09 937,40.374283,197.59431,27.745354,51.32312,37.96341 937,483.73178,222.78912,27.718536,49.47052,0.5085202 937,62.32252,189.01067,26.043339,55.794754,0.09266068 937,117.38707,198.18819,21.594147,45.406113,0.0685458 937,468.7082,246.03923,24.856598,55.300705,0.06820643 937,125.74948,208.52005,25.058365,51.129578,0.00580741 937,622.25946,242.51447,16.887207,53.078705,0.0019184382 937,621.3614,406.31418,17.785278,54.32135,0.0010808225 937,75.346954,176.24742,32.852936,68.82855,0.00072272366 937,499.5557,222.48444,26.572418,46.648895,0.00044686213 937,1.1207349,182.00111,13.108139,52.33577,0.00041617558 937,610.1201,188.66753,29.02655,132.57051,0.00038647058 937,367.7445,206.75404,23.242645,52.56624,0.0002574624 937,4.9460125,140.9475,42.925705,131.66621,0.00019327021 937,208.46165,234.48157,32.811783,67.7135,0.00017688246 937,611.137,70.34858,28.009644,151.80911,0.00016239763 937,611.7801,378.73972,27.366577,121.279785,0.0001561751 937,1.5036719,160.80836,19.291801,128.1483,9.4903626e-05 937,362.89816,161.72545,40.226562,124.481674,4.6737037e-05 937,5.7298536,171.88762,57.013195,239.81755,4.628496e-05 937,616.96234,309.92175,22.184326,95.9765,2.8946613e-05 937,588.8368,237.57352,49.520386,247.1193,2.826803e-05 937,1.0871078,399.92416,18.029444,71.94147,8.989574e-06 937,1.2732259,215.17894,28.76282,152.00291,7.4525765e-06 937,0.93090576,324.54346,18.386066,72.48816,6.903585e-06 937,1.4704883,56.64802,18.353739,72.549835,5.2867354e-06 937,1.4402068,87.671394,20.904003,122.35871,4.8093966e-06 937,614.7599,3.8704655,24.38678,51.55513,4.038124e-06 937,1.547959,352.28015,32.98533,137.6683,2.1596802e-06 937,1.208667,444.02786,21.553373,58.647095,2.0820328e-06 937,3.1198063,20.579489,56.631508,94.45336,1.4686392e-06 937,1.3192542,11.520745,16.988287,75.31291,1.1399376e-06 937,3.2998407,431.52487,53.10075,66.97998,5.671955e-07 937,1.8177719,7.8025603,43.4779,47.186035,1.3319692e-07 937,80.590805,8.177033,43.72342,45.06755,1.1563258e-07 937,54.12463,7.099162,43.433125,45.540802,1.41357965e-08 937,108.21204,5.927764,45.12867,47.056362,5.92274e-09 937,135.40912,3.841107,43.735245,53.842285,1.5005158e-10 938,383.7317,210.62988,25.272705,67.11603,0.14500168 938,25.434967,165.73808,29.797829,65.938065,0.07268641 938,34.81528,173.36224,51.432934,91.68881,0.026738489 938,47.894535,201.8826,20.545757,47.89923,0.010042763 938,622.1966,234.54376,16.950073,56.397125,0.00930151 938,6.9421663,180.33734,36.97391,80.33884,0.004309021 938,157.3449,200.92885,24.243073,45.903397,0.0033770895 938,64.18884,202.12035,23.850739,50.817856,0.0017641413 938,5.505228,118.0332,66.23193,171.11981,0.0012658545 938,615.9369,80.67439,23.209778,92.45094,0.0011072883 938,613.1886,144.05734,25.958069,151.85785,0.00094367954 938,604.0824,231.23042,34.73474,134.88582,0.00057815114 938,392.3766,204.51819,37.031464,91.245514,0.0004353391 938,621.1249,293.07434,18.02179,57.751495,0.00029977754 938,187.94539,209.84566,30.472107,62.696,0.0002940968 938,0.81426966,228.09587,13.453966,50.28801,0.0002513197 938,1.5493449,177.74052,19.616724,123.43782,0.00014473207 938,367.62732,176.5654,82.57202,167.14407,5.1826122e-05 938,612.332,369.8001,26.814697,126.56564,4.382582e-05 938,591.76654,75.71123,40.128967,131.79152,4.11266e-05 938,1.774484,67.09315,30.954176,185.95984,8.954647e-06 938,1.021001,333.66757,19.039742,132.14468,8.868099e-06 938,3.5181267,190.14026,56.965298,253.83377,8.447566e-06 938,615.2661,11.140785,23.880554,104.31755,6.0815482e-06 938,0.8371208,285.4426,20.712353,103.319824,5.3656177e-06 938,552.32916,14.798698,85.42328,282.91528,4.0195973e-06 938,2.8209782,394.36395,56.81069,98.75757,1.2885e-06 938,585.08905,1.6744955,45.377136,59.181984,1.0895591e-06 938,1.8202149,10.796296,58.790836,127.032715,1.7431432e-07 938,1.015378,11.424821,12.818664,78.98737,7.918102e-08 938,66.262856,6.845568,44.414963,46.528587,7.3662505e-08 938,40.589355,6.5074887,43.24742,45.844006,1.1355508e-08 938,5.2006135,4.750936,44.43348,49.75937,7.1498043e-09 938,464.55328,7.0180225,39.8201,47.126602,4.4389488e-09 938,391.76364,0.0,44.489258,52.19316,1.742264e-09 938,101.096085,5.753755,46.294968,48.750797,1.7392093e-09 938,127.57326,3.5243783,43.346252,55.418396,1.7484077e-11 939,431.75778,207.45212,28.12796,60.693176,0.014942178 939,456.70667,259.39853,34.420593,87.88107,0.014616932 939,108.37724,197.27765,23.207596,48.81955,0.0043669855 939,3.2291944,170.61726,36.669056,98.11742,0.004260682 939,494.49808,231.51544,36.413788,66.995636,0.0039792354 939,554.13617,289.6002,81.95569,183.99191,0.003666037 939,401.98245,210.69931,32.05771,61.101807,0.001621827 939,616.96106,200.0442,22.185608,83.09175,0.0012987396 939,625.2232,410.64377,13.923462,47.358,0.00089433626 939,615.2128,376.7772,23.933838,102.63736,0.00077235926 939,1.3987712,185.72989,13.900474,63.669678,0.00045265333 939,600.86676,182.84874,38.279907,237.748,0.00022577133 939,1.5798072,127.671295,19.83929,98.696396,8.0156926e-05 939,610.3316,109.49206,28.815063,154.52682,4.718831e-05 939,5.7854624,109.78147,81.909096,219.05194,3.3801567e-05 939,612.0146,12.289818,27.13208,144.92963,2.5539646e-05 939,1.2058431,222.22441,18.85468,76.451126,2.3238637e-05 939,1.0393384,340.44064,19.203142,132.94128,1.09451275e-05 939,1.0487794,249.9668,18.650558,138.12674,8.7223225e-06 939,3.4063754,254.18805,56.818977,216.34015,3.7464335e-06 939,1.046403,421.1983,16.624493,80.85379,1.8322605e-06 939,1.2959896,19.003666,18.871933,119.95824,4.3289603e-07 939,3.313511,429.29742,53.138477,70.33981,3.860265e-07 939,2.9084017,17.31717,57.251263,114.743256,1.9845261e-07 939,7.3669434,6.2446,61.61467,46.642868,1.8680592e-07 939,66.97841,6.3007617,42.66529,46.69331,6.6202115e-09 939,524.1851,6.120202,43.25293,49.931156,5.6063765e-11 940,400.58572,195.95522,38.875336,70.50673,0.0029445768 940,621.5834,152.1598,17.563293,55.642853,0.0026641437 940,512.7715,263.76797,27.707214,76.489685,0.0017009948 940,610.4811,62.045986,28.665588,155.49623,0.00085667777 940,8.846191,162.9523,33.789364,85.45364,0.00079915044 940,0.9668225,165.24445,13.402739,60.541595,0.00045629012 940,377.94586,190.16103,42.325073,90.45912,0.00042616838 940,626.6383,321.62976,12.508362,49.014343,0.00041393164 940,599.4283,272.51544,39.180664,184.57349,0.0003765838 940,1.674126,174.77348,20.496155,101.456345,0.00013494244 940,518.2914,211.94936,24.05487,49.14479,0.0001217145 940,389.51382,157.11375,81.775665,151.90627,0.00011347268 940,513.36273,173.70337,40.78125,141.24924,0.00010930686 940,5.1721225,100.15226,66.899704,185.56161,0.00010571432 940,610.8666,173.74307,28.28009,167.73682,9.787726e-05 940,612.47864,367.28146,26.66803,133.67761,5.948261e-05 940,616.19727,28.872465,22.949402,82.01714,4.869951e-05 940,1.0860645,51.905666,13.209375,47.566853,3.761563e-05 940,2.2165072,187.982,33.7024,178.25125,2.5383415e-05 940,574.45496,55.409885,64.03992,283.73392,2.2392796e-05 940,0.74655277,238.0522,13.489322,47.909775,2.2108456e-05 940,606.6137,310.50876,24.421387,57.788788,2.0180454e-05 940,1.465398,70.507,18.34078,71.0724,1.4253194e-05 940,1.4678255,113.67703,18.818783,91.5934,9.327784e-06 940,0.93523926,320.10803,19.501114,131.74298,6.869408e-06 940,483.42276,197.592,109.29343,220.74937,6.2077684e-06 940,0.57926273,269.48105,13.810132,48.38553,5.912816e-06 940,0.83152837,292.88583,18.370642,70.06479,5.731182e-06 940,1.1148152,407.36456,18.00475,71.03107,5.4222637e-06 940,3.385796,23.168474,56.09832,96.350266,3.453286e-06 940,1.5854785,457.332,28.004272,47.041046,2.115732e-06 940,3.1982017,282.6274,58.334686,194.22598,1.8948773e-06 940,221.79451,432.0859,71.903244,66.908936,7.9873655e-07 940,3.4744728,430.48932,53.06479,69.27469,5.01546e-07 940,61.333874,5.840091,41.681408,50.922096,2.177533e-09 941,403.43323,203.71385,23.197418,54.906143,99.906006 941,386.79416,204.5408,24.13031,53.307037,99.75789 941,442.4409,207.06386,21.874695,46.478287,99.45288 941,620.98254,128.29117,18.164124,59.36644,0.0014724989 941,383.0481,190.23853,60.831024,92.62427,0.00058236724 941,608.9701,104.45154,30.176575,153.0946,0.00020115981 941,617.7219,240.7763,21.424744,84.44107,0.00017564894 941,608.4504,437.23892,30.69629,69.0553,0.00015870607 941,620.7906,161.50418,18.35608,63.65718,0.00014794177 941,425.3018,171.48961,61.33029,107.99846,0.00013041269 941,0.9123519,217.59291,18.332382,71.67995,9.909798e-05 941,602.1572,196.48001,36.98944,180.88,4.7793117e-05 941,612.4135,333.38583,26.733154,140.02194,4.6038433e-05 941,573.0397,42.20703,65.673706,275.69083,3.1859436e-05 941,610.41846,0.0,28.72821,175.15823,2.4369774e-05 941,1.362854,94.266014,18.455923,73.1475,2.0023866e-05 941,1.2612207,124.808075,18.743256,134.68765,1.4763732e-05 941,3.9567058,164.32178,58.217278,223.59955,1.0874793e-05 941,390.84695,142.3266,138.40189,211.94238,1.0669908e-05 941,0.79957765,248.20448,19.829048,137.87541,1.0196513e-05 941,1.0526497,378.9075,18.15119,73.33038,6.438286e-06 941,0.7723397,337.9993,13.66955,47.9812,5.4558445e-06 941,0.9948503,422.9712,16.411549,79.23175,2.1233077e-06 941,1.8597169,347.17303,32.807266,142.51144,1.6294006e-06 941,5.312907,27.545639,77.11185,137.83803,1.237924e-06 941,2.4745133,26.813223,28.998938,116.8794,4.827822e-07 941,1.4909106,16.295525,14.959985,73.63806,3.1893157e-07 941,3.284012,431.4671,52.773815,68.42615,2.8191872e-07 941,2.6915789,13.203532,53.565857,65.847084,5.409449e-08 941,27.12699,6.167175,43.031487,50.15118,7.834403e-10 941,52.091637,6.613537,46.64109,48.354214,5.388354e-10 941,393.4297,4.857912,44.042206,47.619514,1.9378196e-10 942,463.53,196.91873,36.08737,76.630554,99.97136 942,433.10385,200.45717,31.664795,66.939255,99.97108 942,530.1667,203.63826,31.942627,70.51195,99.88583 942,549.56244,204.50821,27.947693,68.5654,0.2716544 942,492.43335,209.55023,44.57727,112.83591,0.11682564 942,489.41882,197.83762,29.335144,70.25699,0.06167458 942,333.77814,192.97421,21.054901,47.52925,0.0027284883 942,512.2267,168.87198,65.548096,157.2139,0.0014576497 942,621.5237,198.99066,17.622986,63.632202,0.0010366812 942,432.4925,164.9475,99.53577,165.00273,0.0007356537 942,610.26953,157.48816,28.877136,145.98764,0.0006206777 942,609.8605,61.707565,29.286194,151.0809,0.0002670637 942,617.12317,242.56592,22.023499,88.57733,0.0002588154 942,619.7656,25.003517,19.381042,64.65561,0.00020050038 942,1.1077075,231.5711,19.595152,144.01218,0.000101975296 942,611.5316,380.82172,27.615051,116.58652,6.2382256e-05 942,602.66125,248.20293,36.485413,200.55244,5.6151013e-05 942,352.1748,159.19165,81.587494,144.20178,1.9594441e-05 942,585.0275,9.572708,54.11914,125.17682,1.9565536e-05 942,3.1940806,208.95753,57.06984,239.89165,1.8144965e-05 942,1.4046273,98.26147,17.379505,132.33356,1.7339331e-05 942,1.0940715,172.20206,20.153496,116.6734,1.5345016e-05 942,1.0215992,312.7777,19.410778,136.33948,6.3600014e-06 942,1.0199406,424.1905,16.959047,78.49432,2.1079013e-06 942,5.8893166,359.34494,78.738754,131.96133,7.9181365e-07 942,3.2674432,430.87018,53.02563,69.2587,3.8728166e-07 942,2.4999545,17.52281,56.365433,110.47558,2.1608864e-07 942,1.4072901,23.622175,18.543535,135.07292,1.6724874e-07 942,1.7122185,8.603692,21.604641,56.8164,3.38711e-08 942,60.400055,4.311618,44.935936,50.98497,2.2019482e-10 943,483.24963,213.25044,30.911255,57.39357,99.923454 943,428.6761,212.69601,25.276733,55.373077,99.55837 943,406.15244,206.66985,32.487823,62.579056,5.8018336 943,612.10114,249.60912,23.147278,53.698196,0.980154 943,596.3812,225.44542,42.76544,119.3629,0.1808363 943,129.23744,188.79686,21.547394,45.798096,0.05563948 943,380.84464,212.74129,21.79477,51.314346,0.011325706 943,621.10803,340.37427,18.038635,55.927917,0.006396953 943,614.5541,174.986,24.59259,112.17679,0.0049593365 943,564.39264,142.55914,74.75403,293.47104,0.0026152632 943,6.369927,196.18636,53.39193,74.68187,0.002366354 943,623.7831,274.46057,15.363586,45.31668,0.002069778 943,617.67377,287.2686,21.4729,81.759125,0.0018302144 943,412.1573,188.09216,54.634277,107.964264,0.0015671367 943,611.1279,5.1511364,28.018738,113.5763,0.0003406165 943,611.01556,349.7556,28.131104,147.10803,0.00030059088 943,601.17004,42.4137,37.976624,211.56714,7.6972676e-05 943,1.461862,176.47006,20.814482,95.97751,7.6097174e-05 943,468.5034,176.30783,69.33951,163.66046,4.2714677e-05 943,375.21707,141.46716,145.80844,223.41852,1.2490588e-05 943,0.978208,237.01714,19.162086,142.21547,1.13145325e-05 943,6.9855504,136.23085,91.968376,229.22923,8.243918e-06 943,1.2139494,73.37321,19.803623,156.78775,5.700265e-06 943,0.9634847,324.54355,20.935822,107.14197,4.884388e-06 943,0.88497156,424.47363,17.321327,78.1232,1.9143195e-06 943,3.0663493,287.0409,57.73361,192.46402,1.2386799e-06 943,2.7657943,14.776915,59.645927,263.09802,9.855145e-07 943,1.4780298,370.60925,32.51129,124.68973,9.692477e-07 943,535.05676,0.0,91.14575,229.1838,2.9286614e-08 943,2.2869596,16.90343,36.73452,67.99783,2.9161146e-08 943,54.066025,4.3515415,45.130875,50.337112,3.7503226e-10 944,474.94028,204.21155,28.563232,65.86508,0.30883908 944,461.0061,210.10701,24.978973,60.205093,0.22897819 944,429.7917,211.70193,24.098328,52.33548,0.002698041 944,493.3814,198.95262,32.02594,62.10112,0.0006330583 944,454.7569,163.06334,52.623627,131.08427,0.00059231545 944,0.25558797,205.61641,13.168761,52.590317,0.000377657 944,608.51,213.23445,30.636658,70.17,0.0003297165 944,428.10944,157.37167,41.317413,114.943695,0.00024739103 944,585.10693,107.19254,53.36133,243.8158,0.00019243595 944,616.62366,63.623413,22.52301,84.49596,0.00014598496 944,611.4139,375.04953,27.732788,126.72537,0.00013591758 944,617.10065,254.64629,22.04602,80.01985,0.000119432516 944,616.72754,167.07307,22.419128,81.34201,0.00010531344 944,0.72129315,175.8767,19.658295,129.72496,7.851125e-05 944,583.73364,15.382338,55.20703,112.80078,4.2574495e-05 944,617.0786,307.10904,22.068054,83.50882,4.0862356e-05 944,599.8302,237.83295,39.316467,202.69852,2.8018747e-05 944,419.6135,129.43428,132.04355,232.88817,2.7880515e-05 944,0.82267827,245.4881,18.3112,137.39908,1.2067285e-05 944,3.5760221,101.042915,57.20259,227.76544,5.7348234e-06 944,0.9010238,399.29446,20.548836,101.8465,5.099763e-06 944,1.3348926,79.66284,19.101519,140.70135,4.729112e-06 944,1.0963566,337.68805,20.286114,106.813934,3.0952222e-06 944,590.41394,449.9826,42.306213,58.636475,3.0269948e-06 944,3.2932081,264.21164,58.2261,210.77066,1.5524856e-06 944,1.567522,51.402946,18.517908,72.970726,1.0779443e-06 944,527.66876,427.15054,74.71814,73.35129,8.449705e-07 944,3.2869468,428.1931,59.876053,70.46622,4.4020658e-07 944,1.1111422,14.244096,13.44412,78.151985,1.7296736e-07 944,2.6008756,20.363575,56.890663,109.179596,1.6780152e-07 944,372.1573,2.5187826,44.81836,59.568817,1.2953748e-10 945,558.50696,207.0317,57.593323,116.91557,99.96544 945,594.561,205.96927,41.532104,112.60809,99.697975 945,620.256,206.70685,18.890686,80.58716,0.53467876 945,570.422,209.87282,29.110962,56.500656,0.10978141 945,624.9435,256.2656,14.203186,52.75522,0.036641113 945,520.96106,177.29214,20.338745,46.044586,0.010904675 945,511.71085,134.04535,125.915985,233.04819,0.0028489372 945,615.79736,126.996056,23.349304,100.3933,0.0005181128 945,443.05127,104.67298,23.352478,46.276512,0.0005075211 945,448.251,95.32156,36.757812,89.17467,0.0003446145 945,149.70462,213.38464,21.797913,46.962708,0.0002580088 945,616.3846,76.95955,22.762085,92.39525,0.0001415156 945,610.9101,290.06525,28.236572,159.45648,8.850684e-05 945,1.3054371,193.49811,17.898706,71.94522,8.428155e-05 945,451.41882,102.52685,73.99634,176.12433,4.2522715e-05 945,612.11914,404.1976,27.027527,100.54605,3.8225637e-05 945,1.8329867,198.4043,28.252567,144.32703,2.5142634e-05 945,427.18393,76.64887,45.51581,141.52356,1.91033e-05 945,608.63525,0.0,30.511414,69.497086,1.5872241e-05 945,3.975332,112.97813,58.481846,216.63116,1.2117982e-05 945,1.1183178,290.78354,17.537651,122.63855,9.544762e-06 945,597.37885,0.05229167,41.767822,272.16348,5.0774784e-06 945,569.24884,355.48578,69.89783,136.42975,4.434259e-06 945,1.2696118,74.819466,19.460976,141.16006,4.4207304e-06 945,0.9061882,390.4854,17.64153,105.94638,3.5850594e-06 945,3.4864323,314.01303,56.375965,160.91025,8.5898114e-07 945,1.0535499,11.079493,13.1658535,79.93359,4.0802323e-07 945,581.5224,437.291,46.62982,68.05267,4.0094724e-07 945,2.9439862,430.0079,53.03566,67.61743,3.4352576e-07 945,1.6020899,18.76235,29.60846,116.28422,3.1601658e-07 945,39.5628,6.11174,45.6516,45.110924,2.1410859e-08 945,391.74265,1.3072265,69.17331,61.88788,6.563783e-09 945,66.86652,5.9813333,43.568268,49.43057,2.923353e-09 945,445.94537,4.920936,43.446472,55.717373,9.237788e-10 945,92.6119,4.4577637,42.263756,48.195717,3.618037e-11 946,604.9402,208.7273,34.206482,97.90637,0.018893272 946,432.86636,123.24086,45.25064,150.75075,0.014783762 946,586.80707,98.009834,52.3396,277.17923,0.014118431 946,600.73816,286.9942,38.40851,105.418365,0.013027433 946,623.08655,226.08371,16.06012,51.542175,0.0021665927 946,619.95135,116.82077,19.195312,67.79007,0.001900895 946,624.09973,294.41525,15.046936,48.379974,0.0014497255 946,608.2505,65.44527,30.89618,176.30959,0.0009419855 946,624.52295,267.57806,14.623718,45.70508,0.0006980066 946,30.725088,231.28806,32.605347,52.720978,0.00034276262 946,453.66824,183.58797,37.387817,92.98341,0.00024064764 946,1.6365292,177.3918,17.288328,77.39154,0.00019038892 946,2.2031698,201.70575,26.91391,140.43588,0.000111699606 946,594.1399,154.67285,37.57379,105.016785,8.4387386e-05 946,611.5715,361.81982,27.575195,139.50143,8.09908e-05 946,3.3613803,190.51044,57.972286,239.34863,3.1476615e-05 946,556.168,165.1809,26.511353,55.50792,2.9568588e-05 946,2.0998747,102.81436,28.566177,160.95172,8.072094e-06 946,0.8415731,275.91125,20.632893,144.1312,7.499719e-06 946,554.62134,389.23636,83.88904,106.257935,7.185496e-06 946,432.5544,134.08122,110.93826,208.93419,6.1510063e-06 946,0.9166732,399.74002,18.0305,72.61896,5.1422808e-06 946,1.6322559,80.5784,18.398365,82.09392,3.5453609e-06 946,1.5025488,458.6533,28.067587,45.450012,2.1804206e-06 946,1.3960035,340.07507,33.161667,151.06326,1.5731514e-06 946,598.6262,4.0217676,40.520447,86.47359,1.4404171e-06 946,310.09,426.82187,76.29367,71.000854,1.1101147e-06 946,2.7953858,18.099623,58.418102,117.85846,7.2142774e-07 946,189.28085,429.53442,71.09848,70.44125,3.341673e-07 946,250.52998,429.00638,73.441666,69.67404,3.1114567e-07 946,3.1881316,431.86874,53.209393,68.48215,2.7597278e-07 946,141.54605,429.70642,71.249405,70.39108,2.3931702e-07 946,14.075545,6.1634083,41.64711,45.72548,1.0106427e-08 947,474.6147,187.51234,39.052795,99.25929,0.014512133 947,450.5013,163.24516,45.889374,122.54344,0.0018944 947,14.660746,181.2455,33.086327,71.1124,0.0015098305 947,374.7027,207.84186,24.402039,49.836243,0.00043346823 947,404.8737,209.38232,33.151947,65.3179,0.0003914395 947,616.1544,100.441,22.992249,92.281624,0.00028602986 947,616.5541,153.76685,22.59259,91.16147,0.00020985001 947,622.04987,209.486,17.096802,58.09323,0.00018450068 947,1.8326001,188.10696,17.76548,70.06583,0.0001542073 947,467.10355,165.75537,79.5358,166.38629,0.00014801147 947,617.492,247.1817,21.654663,85.87717,0.00013967854 947,617.38446,408.97922,21.762207,83.5246,0.0001379424 947,616.7347,46.124752,22.411987,88.95886,0.000115714705 947,600.9923,77.882706,38.154358,198.87834,8.990369e-05 947,2.4805567,118.91688,34.89117,170.87027,7.209272e-05 947,617.77783,328.09048,21.368835,80.00983,5.140614e-05 947,0.667723,239.4882,13.606698,47.956924,3.329003e-05 947,1.1714649,162.5391,13.565402,54.99034,2.6182528e-05 947,601.82666,253.29123,37.320007,195.41837,2.4618505e-05 947,1.1167781,212.80032,19.348848,131.5015,2.4283518e-05 947,570.4401,363.87714,68.70654,125.341,1.6532182e-05 947,5.3070216,123.1387,76.152885,254.24918,8.0216905e-06 947,343.92352,105.33692,77.082855,177.1735,7.2144035e-06 947,0.9139925,400.26648,18.026434,72.02182,4.6495816e-06 947,1.4028662,60.618828,18.764656,74.75091,2.9271343e-06 947,0.8038265,305.9482,19.656168,135.04523,2.900956e-06 947,3.1934605,296.4207,57.25534,184.3458,7.553579e-07 947,7.2786365,399.9281,91.31703,95.36435,3.8195802e-07 947,139.1765,432.32712,73.0499,68.63779,2.9228815e-07 947,93.7001,431.25616,75.51552,70.23312,1.9513718e-07 947,0.99809736,10.473936,13.767562,87.05657,1.5199211e-07 947,3.2018034,23.670385,81.06897,149.44215,6.666439e-08 947,2.443327,9.995937,53.461372,77.999344,1.304926e-08 947,408.46664,6.2859116,41.57379,51.841167,1.1689476e-08 947,89.230736,5.213366,41.93754,47.681156,8.474323e-10 947,340.3526,7.0246177,40.861053,49.779755,3.3068523e-10 948,474.97626,81.98466,46.169617,120.054375,0.10931225 948,342.43002,196.3845,22.674103,48.944565,0.009743618 948,394.62363,167.95508,46.39044,119.572845,0.0067318985 948,479.3911,110.133156,23.041046,49.83593,0.004300974 948,458.927,69.456474,38.303528,99.64135,0.0023985645 948,491.1858,121.41628,22.905579,48.346092,0.002379831 948,619.88654,84.68044,19.260132,61.460167,0.0021490233 948,483.0684,78.10752,27.569183,60.436577,0.0007349679 948,608.32526,63.841087,30.821411,151.16797,0.00072150066 948,558.78186,87.3351,78.6532,192.15617,0.00055904815 948,617.4075,387.84848,21.739197,79.60324,0.0005565697 948,573.1486,126.020065,38.324646,94.493866,0.00039439002 948,357.2924,197.98468,26.758179,53.403717,0.0003942644 948,581.34216,142.61891,21.190796,45.58516,0.00030348802 948,495.49033,104.860214,46.229034,154.34612,0.0002451972 948,549.3776,55.078087,28.894897,69.65697,0.00020624463 948,616.80994,195.3188,22.336731,86.76042,0.00018690992 948,617.16907,330.14963,21.9776,91.88159,0.00013405281 948,1.5084685,169.72969,19.020445,85.96344,0.00013122827 948,600.87805,260.03223,38.268616,198.40585,9.583267e-05 948,609.3967,435.1089,29.749939,68.7569,7.766409e-05 948,0.9841146,221.28581,18.203146,78.44835,5.8722093e-05 948,486.2362,254.95375,33.65332,70.69151,4.8581223e-05 948,2.1881356,121.447296,34.324017,181.7583,2.650688e-05 948,372.44046,119.05229,112.549286,210.18532,2.3549954e-05 948,423.162,47.749954,83.99567,210.57695,1.7104601e-05 948,458.39517,61.878544,112.03964,237.90836,1.4433357e-05 948,585.34265,12.521074,53.804016,132.70706,7.2879543e-06 948,0.99911624,273.77982,20.182934,105.109344,7.1740205e-06 948,1.1655265,328.04947,17.267698,127.75867,6.3242924e-06 948,545.40717,28.103151,50.18933,188.9401,2.9229277e-06 948,4.1130633,215.92206,56.00846,230.89273,2.0172135e-06 948,1.9255453,423.67307,32.39101,73.23486,1.4269687e-06 948,1.321346,51.50527,18.20193,158.55408,3.969781e-07 948,2.45063,23.093458,56.421207,95.22469,3.8015696e-07 948,531.2655,4.148789,43.329346,56.32801,9.80672e-09 948,2.1262207,9.677985,29.974205,59.989014,7.904818e-09 948,449.71838,4.1910644,43.484802,57.39498,6.323725e-10 949,519.6211,195.56232,48.551697,144.4957,0.048211847 949,598.7054,164.35411,25.718872,65.68173,0.017423986 949,537.87646,248.9074,23.983032,55.13307,0.0035214052 949,531.61176,222.00677,25.657593,54.038788,0.0034969156 949,492.73364,87.091896,84.7334,227.91638,0.0025186914 949,575.0994,72.792175,61.766785,194.03128,0.0020083273 949,619.6183,167.88495,19.528381,64.11398,0.001963149 949,360.1629,183.66092,29.070099,68.49257,0.0015484804 949,609.10693,361.92465,30.039734,147.79865,0.0009282982 949,620.10834,132.78423,19.03833,63.76523,0.0008816557 949,620.67975,76.206215,18.466919,63.24427,0.000844044 949,518.9143,157.44022,36.90985,95.36401,0.00054161105 949,603.36597,153.08144,35.7807,160.36967,0.00037746617 949,621.38617,212.12318,17.760498,63.746628,0.00031693775 949,1.4021566,187.56834,18.539766,125.52733,0.00011039427 949,614.6144,14.253054,24.532288,106.63233,6.858881e-05 949,586.1889,205.03477,52.957764,279.78326,6.271947e-05 949,504.20633,157.28392,128.34598,264.29846,4.469434e-05 949,531.82135,83.29098,37.28607,71.17953,4.425468e-05 949,1.9501058,81.37423,33.905792,208.514,3.6772173e-05 949,1.9706283,222.21057,32.08428,180.99203,1.3246776e-05 949,0.6561344,330.4138,18.625715,74.65051,8.697471e-06 949,0.84896487,284.7635,18.433603,77.503815,7.5248513e-06 949,1.0381593,399.73395,18.028734,72.727264,4.7809526e-06 949,5.650814,247.71855,78.183945,223.92598,4.1199764e-06 949,1.203348,444.23074,21.710611,59.123474,1.6205768e-06 949,2.9927783,18.690329,55.664272,103.8476,8.781881e-07 949,1.478549,12.53891,12.275826,79.059975,6.1718987e-07 949,1.5411279,49.93576,20.761791,111.31149,5.8234644e-07 949,3.4686036,398.9741,56.491226,97.14331,5.304358e-07 949,4.4407554,72.58608,79.818306,287.82938,5.138807e-07 949,374.10425,14.98752,84.11545,188.84071,3.3539013e-07 949,468.36026,26.782982,27.317291,63.758118,1.5477778e-07 949,487.69522,1.0901579,65.75668,54.826603,6.683818e-08 949,477.77563,0.0,83.50195,201.77667,3.0032922e-08 949,558.0716,0.0,43.673584,67.67567,2.6251904e-08 949,469.18808,0.0,44.510956,65.49342,7.703918e-09 949,379.1479,2.6691375,45.902344,64.60636,5.359309e-09 949,354.29507,2.0772038,44.17749,61.346703,1.4045312e-11 949,333.26556,3.411439,40.890503,50.595024,2.9558732e-12 950,424.08823,171.06976,42.757507,104.72186,0.02323527 950,445.55798,177.47446,28.894745,58.606873,0.0144715365 950,398.54504,147.5837,44.807617,117.61388,0.0079193 950,620.5151,68.78412,18.631592,61.600372,0.0007002489 950,610.52264,111.50175,28.624023,135.50455,0.00025748945 950,621.5778,340.85086,17.568848,57.57019,0.00024882873 950,1.8836491,196.6946,17.881607,68.21782,0.00024254873 950,504.13928,168.33961,26.463135,56.869766,0.0002422288 950,616.7854,194.23387,22.361267,91.48979,0.00017305907 950,490.1631,166.33368,25.816772,57.097183,0.000120623656 950,612.442,381.73898,26.70465,116.42139,0.000105075174 950,617.3361,251.98001,21.810547,87.16223,9.369059e-05 950,607.76666,0.0,31.380005,152.00159,6.657054e-05 950,585.674,76.68291,53.472656,258.53833,5.015444e-05 950,2.1152694,130.26454,29.016878,142.91954,4.0440675e-05 950,611.1139,295.19598,28.032776,140.41006,3.8270577e-05 950,400.14188,122.42184,112.70389,203.8468,3.826736e-05 950,399.98434,202.14932,25.965729,54.881866,2.3875458e-05 950,1.4638193,206.19376,27.825842,144.8447,1.8429371e-05 950,0.59073853,246.07164,13.653051,49.04573,1.4310345e-05 950,0.4927181,337.1069,13.817078,47.478546,1.0347311e-05 950,0.7515519,292.3462,19.722788,132.53595,6.8655304e-06 950,3.895944,167.55045,57.271038,216.56009,6.538277e-06 950,0.80355144,373.91266,19.610918,124.78177,3.5817923e-06 950,0.70248127,419.84756,13.588011,48.293427,2.908635e-06 950,1.461692,84.00337,18.298956,76.6528,2.6694904e-06 950,2.3450928,14.77291,38.936436,75.91083,1.3994434e-06 950,555.97626,426.49402,76.716736,73.37103,1.3424423e-06 950,2.8065088,294.88422,57.79568,184.57935,1.2985861e-06 950,2.9347463,21.262005,60.070404,256.16785,1.0254494e-06 950,3.0812664,432.80914,53.368576,67.662994,3.0528298e-07 950,370.63092,15.704239,81.07556,183.99368,1.9194924e-07 950,387.04413,3.7230308,43.1586,61.11077,1.2420813e-07 950,362.26678,3.4762323,42.84738,56.40689,3.1506726e-08 950,19.063059,5.053592,41.851463,50.387268,5.9575456e-09 950,299.47647,4.166351,40.963287,48.367664,3.688774e-09 951,358.1706,191.95,24.78543,52.4149,5.0540257 951,538.5695,181.66199,23.36621,51.556564,0.00081055635 951,502.4268,180.0099,27.209808,57.14859,0.00041815767 951,339.57812,152.49261,66.22916,111.43454,0.00026446505 951,617.79144,146.26222,21.355225,82.26883,0.0002641903 951,616.5753,61.59903,22.57135,91.32547,0.00024357466 951,539.04724,80.3023,36.157043,74.9027,0.00023834013 951,546.8596,160.30132,32.907104,73.085464,0.00020874164 951,1.3640487,205.50447,18.264067,70.99916,0.00018902335 951,611.404,171.20213,27.742676,140.78911,0.00013658339 951,612.3908,380.54926,26.75586,120.32648,0.00013624955 951,479.7726,109.10614,78.51724,198.65189,0.000101299054 951,617.341,256.18906,21.805664,82.92517,8.716484e-05 951,617.60974,327.98746,21.536926,82.18808,7.5713804e-05 951,404.3981,207.61784,33.73877,72.16438,3.9407314e-05 951,602.21924,271.69333,36.92743,195.39664,2.1884167e-05 951,2.3371046,123.34763,33.139317,166.69626,1.8255392e-05 951,0.80948406,245.2004,20.674921,107.08226,1.2165121e-05 951,584.535,36.4467,54.22876,212.81044,1.1964052e-05 951,0.588016,323.29944,18.499184,73.1452,8.76801e-06 951,1.4741668,56.543583,17.999218,74.18385,4.977865e-06 951,5.799069,152.71663,77.34918,261.7207,4.9565674e-06 951,0.8821061,407.45667,18.002645,71.89383,3.9250453e-06 951,314.765,103.53237,136.78436,223.5824,3.007176e-06 951,1.1585255,307.6989,33.598816,172.44427,2.2862646e-06 951,5.684769,361.14148,79.13286,129.48297,5.3072523e-07 951,542.42957,426.4911,80.254944,74.31372,4.7799284e-07 951,3.1795802,432.82584,53.292458,67.3096,2.9713348e-07 951,333.61267,9.68175,40.524323,54.345585,2.777296e-07 951,2.1312323,11.615922,36.45086,76.92136,2.4230755e-07 951,3.261011,21.089043,62.892387,223.05838,1.6262516e-07 951,448.45892,3.04931,65.27063,53.19042,1.3947474e-07 951,361.62302,10.690471,39.543,45.11436,5.913261e-08 951,430.783,4.8641324,42.118958,52.20931,4.637708e-08 951,501.771,4.4336624,45.410767,61.154396,1.1625216e-08 951,12.6872,4.3617334,41.922653,49.738216,1.1300665e-09 951,248.19821,5.7384195,63.238495,47.63624,8.854577e-10 951,231.96031,1.4784701,40.992966,56.72248,5.678333e-10 952,373.10825,203.00249,24.485474,46.874817,0.004102563 952,616.19183,148.11859,22.954834,92.02063,0.0006952423 952,615.81854,63.55253,23.328125,92.811485,0.00049890997 952,500.13794,149.59868,75.29669,193.54948,0.00029567786 952,1.3965341,196.8812,17.938536,68.10028,0.00017041116 952,584.8871,90.66365,53.60083,239.36906,0.00016160814 952,617.4435,257.2477,21.703186,82.642,0.00014784925 952,406.96683,211.07083,25.001465,53.1521,0.00011570919 952,1.4100301,59.264362,18.707874,79.75348,5.8880676e-05 952,613.31915,419.16382,25.827515,82.718445,5.7280886e-05 952,617.4329,341.3213,21.713745,82.612,5.519919e-05 952,587.3484,273.06012,51.215515,200.88629,5.4849443e-05 952,0.64958537,236.63628,13.85892,50.097763,2.907571e-05 952,2.5974033,76.25958,32.498447,196.98395,2.4282266e-05 952,584.6294,9.547357,54.517273,128.098,1.3785242e-05 952,0.5538493,323.28625,13.578048,46.501373,9.891305e-06 952,0.70186484,268.8908,13.580911,47.712006,8.905457e-06 952,0.7044043,339.3608,20.183968,134.09259,8.850069e-06 952,339.7382,157.14163,82.99332,155.14456,8.703477e-06 952,0.68233156,297.488,13.331097,45.25482,8.130936e-06 952,0.6643099,261.42307,19.041908,136.26749,7.629921e-06 952,3.673558,203.48074,56.951405,236.1586,4.371311e-06 952,0.7393974,419.70764,13.552516,48.05075,4.2673955e-06 952,1.3812126,142.49615,18.406988,89.87573,3.0874508e-06 952,1.5374634,10.784232,16.215508,79.0208,2.6451114e-06 952,555.10065,426.00555,79.267456,72.15222,1.5849789e-06 952,2.1769598,9.626856,56.577515,125.995995,9.705464e-07 952,5.48974,360.79434,79.15397,128.65411,6.1487276e-07 952,3.0676124,431.99054,52.965794,67.783844,3.4243982e-07 952,516.08875,425.7178,73.91388,74.474915,2.8990627e-07 952,575.07184,2.6300766,43.83667,46.04613,1.5955395e-07 952,307.9571,4.6024055,41.977448,56.252598,1.6673075e-08 952,473.3043,1.5575619,66.45438,53.38903,4.263582e-09 952,280.24948,4.6983676,39.87323,49.475487,9.345308e-10 952,451.9531,1.2353532,47.36154,52.31906,6.088895e-10 952,332.1374,4.174953,41.111267,52.37554,1.9008826e-10 952,259.3169,6.058519,39.58908,45.134106,1.4320754e-10 952,95.74441,3.510495,40.73107,48.995693,3.9905128e-11 953,618.8348,155.8474,20.31189,76.19771,0.0025337674 953,19.86454,210.68454,38.870342,50.79492,0.0012734984 953,454.50586,194.36705,43.06909,103.06209,0.00093486544 953,361.08276,184.37773,42.690674,82.430374,0.00065718364 953,609.02673,80.70747,30.119934,176.07979,0.00060117216 953,448.62137,91.67022,71.234955,199.2478,0.00045378707 953,617.6724,391.6443,21.474243,79.44412,0.0002710888 953,616.1894,64.23059,22.957275,88.01335,0.00017396505 953,609.03436,444.96585,30.112305,60.447235,0.00014321296 953,489.24146,92.14943,39.277283,86.63466,0.000119241995 953,617.8059,236.03835,21.34076,81.39409,0.000103175684 953,1.1875,223.0855,17.758806,72.73604,8.387502e-05 953,584.0041,398.0472,54.968933,97.72568,4.3740805e-05 953,617.4342,335.38412,21.712463,86.19968,4.1612104e-05 953,584.7881,14.187605,54.15326,119.64615,3.9858453e-05 953,573.2326,87.57799,65.91406,266.71863,2.7886683e-05 953,609.03827,3.122562,30.108398,63.1355,2.0384092e-05 953,0.7645435,249.27985,19.078152,141.09338,1.8708313e-05 953,601.5752,280.12317,37.571472,190.49792,1.5105717e-05 953,1.4430583,174.48917,17.95558,75.29509,1.3635312e-05 953,5.5706477,244.12901,77.69546,225.83528,9.639274e-06 953,4.354546,154.56516,59.677048,203.22522,8.781482e-06 953,0.8019442,332.40277,20.220871,134.48251,7.6160204e-06 953,0.74939376,427.2235,13.483224,46.48224,5.340287e-06 953,348.5874,143.81206,85.38666,200.32475,1.9650427e-06 953,1.0635425,444.60938,21.7811,58.435852,1.9482338e-06 953,1.7744043,82.86789,29.655449,170.51347,1.7152489e-06 953,7.211309,399.6353,91.65223,94.417206,4.962742e-07 953,440.5457,428.7853,71.06824,69.03674,4.7331156e-07 953,2.9653354,15.863897,57.77725,112.67777,2.8002268e-07 953,0.8824569,14.807875,10.143202,77.9031,1.2124363e-07 953,1.5978247,37.200695,19.608595,99.082596,8.465074e-08 953,544.5217,3.9172919,41.930298,53.205807,4.6788013e-08 953,1.5927547,8.676696,28.920261,57.354347,1.3465081e-08 953,462.8774,6.647191,41.88208,52.721874,9.317156e-09 953,25.303032,6.4077783,42.000267,47.690426,8.133592e-09 953,402.65836,6.683589,41.932495,50.539146,8.107107e-09 953,354.35913,6.149816,39.77603,50.396633,9.2687447e-10 953,326.68082,1.9383236,40.457397,57.339867,7.464167e-11 953,81.37402,3.5724561,41.43094,50.74017,5.390839e-11 954,396.22244,204.1158,25.298615,50.03769,99.76059 954,409.8179,205.5479,26.421417,45.989532,0.0025098433 954,620.8074,62.078785,18.339294,62.276608,0.0006779917 954,346.26282,200.15247,23.979431,48.710663,0.0003518963 954,609.89984,77.59148,29.246826,163.218,0.00027826824 954,616.9822,383.87042,22.16449,83.0412,0.00025334326 954,378.5188,177.25887,56.586853,97.83977,0.00023985603 954,617.7355,230.22673,21.411194,80.828476,0.00019021814 954,620.66364,171.25487,18.483032,61.690186,0.00018908808 954,607.1308,433.91583,32.01587,70.490326,0.00012355909 954,617.82196,288.14255,21.324707,77.87079,8.235382e-05 954,598.6303,0.0,40.516357,51.742794,5.351483e-05 954,586.83496,333.15536,52.311707,157.801,4.4366618e-05 954,1.6196965,209.2761,18.438044,75.70755,4.153768e-05 954,1.2757593,263.06903,17.769281,72.33328,3.60368e-05 954,2.5511444,204.8781,33.775215,155.48439,2.9224939e-05 954,601.31744,168.89618,37.829224,201.18103,1.9585324e-05 954,0.62312096,322.5776,18.617346,74.990326,8.476117e-06 954,1.7765732,127.902245,20.805498,118.916695,6.41228e-06 954,2.842544,268.49124,57.415764,207.18607,6.317601e-06 954,0.75874674,348.31076,20.127077,131.17477,6.239951e-06 954,0.832135,420.81256,13.417876,46.510376,6.198753e-06 954,584.36914,0.0,54.777527,141.20943,5.2772853e-06 954,0.9953577,71.87192,13.6005335,50.061676,4.655367e-06 954,346.11554,130.87126,133.38467,218.79103,2.4884237e-06 954,582.86536,449.9776,43.06842,56.107666,1.5835042e-06 954,541.4835,413.55048,78.43585,83.89047,1.4290742e-06 954,392.3789,430.6144,79.04312,68.982635,1.0590869e-06 954,3.7903469,38.641865,58.635746,268.27005,8.7065945e-07 954,1.7565951,420.29977,34.48034,78.08154,7.6286375e-07 954,488.28476,422.52252,72.536896,75.09302,6.17939e-07 954,6.6761003,399.71063,90.6427,92.33005,5.5906054e-07 954,1.2580827,14.734835,13.416367,74.29219,2.7118583e-07 954,3.3661606,12.937184,49.96822,64.71455,1.6390378e-07 954,1.5103655,36.016087,19.990604,137.64117,7.5899685e-08 954,417.03326,1.6997559,39.912018,61.00367,2.0119617e-09 954,443.58835,4.669668,39.861145,47.34629,3.3168335e-10 955,450.8663,209.87996,24.919586,58.55995,99.9129 955,469.3206,210.11339,23.140259,49.400803,0.017760096 955,39.6099,201.03781,23.553543,45.591858,0.00391261 955,393.35013,171.17065,37.914673,89.10913,0.002416528 955,436.1887,185.33789,55.36206,101.31424,0.0005867647 955,617.0723,158.56165,22.07434,87.02339,0.00022228844 955,465.7081,199.75894,43.921448,143.29074,0.00019388553 955,347.613,201.99709,21.796417,45.337845,0.00016059232 955,607.4619,438.9944,31.684753,66.130615,0.00012892789 955,616.8585,81.87573,22.288147,85.085724,0.000115035815 955,617.7813,256.4778,21.365356,81.910645,0.00011089507 955,1.7417579,188.49478,17.873783,70.71695,8.007777e-05 955,393.21704,110.84922,81.042725,180.15646,7.034067e-05 955,611.8313,328.0918,27.315369,142.57196,5.876097e-05 955,601.2977,109.87474,37.848938,183.80379,3.9474002e-05 955,616.3724,29.393011,22.774292,90.31113,2.7261634e-05 955,2.206967,123.46071,34.68162,174.62181,1.5236044e-05 955,0.9384571,220.31688,19.812344,134.37016,1.3565182e-05 955,0.62126833,330.70407,13.777386,47.147827,1.1878386e-05 955,568.8425,359.7583,69.83331,134.65457,1.0431251e-05 955,586.7908,175.46411,52.355896,247.35974,8.527586e-06 955,0.82296306,333.14563,20.11455,135.31595,7.868052e-06 955,0.76419884,427.6088,13.543737,46.852875,5.9257545e-06 955,1.5949041,457.65292,27.88151,46.022034,4.5478555e-06 955,1.5361882,70.35605,19.559412,153.18831,4.300316e-06 955,598.73267,4.4118814,40.414,188.89108,4.050273e-06 955,576.0436,451.54083,43.0318,54.14386,3.0824374e-06 955,3.5125,212.53618,57.766884,242.61403,2.8668196e-06 955,520.67426,421.46878,77.30005,75.37134,2.788992e-06 955,3.2360792,397.58496,55.819378,98.197754,7.822589e-07 955,3.178052,17.468367,56.86286,106.24791,4.8008155e-07 955,1.5498438,31.309591,18.449757,78.189354,2.0765707e-07 955,20.460451,6.7260904,43.471992,50.01654,4.481239e-08 956,551.4678,204.78896,45.732666,93.392136,99.96748 956,589.72766,200.38037,49.419006,199.63892,0.15599532 956,606.7713,226.66272,32.375366,85.6243,0.07463362 956,558.7961,201.39944,27.067749,46.36348,0.056057878 956,584.431,206.83463,35.940002,92.04199,0.01518777 956,609.99884,294.6912,29.147827,96.36606,0.0067664725 956,114.73223,190.0618,23.191093,51.52556,0.004338502 956,622.0184,277.5348,17.128296,54.870056,0.0037506528 956,422.44528,160.18765,37.846924,91.093704,0.0031212803 956,526.6177,161.70795,104.48486,190.53113,0.0025665034 956,624.63586,354.53766,14.510803,45.056244,0.0024424538 956,617.9771,35.949215,21.169556,82.60307,0.0018448783 956,609.7737,106.80444,29.372986,140.26457,0.0011152844 956,581.9109,8.301615,57.23578,290.7603,9.694114e-05 956,607.4315,438.74188,31.715149,67.70944,8.750407e-05 956,399.22806,122.313385,77.60861,159.65173,6.706362e-05 956,2.024411,171.52074,17.524656,74.17604,4.878374e-05 956,571.6992,353.78946,67.42505,141.27982,3.467351e-05 956,607.5104,0.470612,31.636292,73.165474,1.6989694e-05 956,1.1155859,214.67781,19.874044,132.32924,1.4502912e-05 956,4.311628,103.93576,56.662373,213.29724,1.37137e-05 956,0.8097282,294.53204,20.896885,106.13663,1.0807115e-05 956,0.73120934,348.8155,19.955774,131.42035,6.1395313e-06 956,1.6919549,59.375443,19.733812,166.985,2.716229e-06 956,2.8300862,266.88162,57.330982,210.7533,2.4082085e-06 956,1.0427523,444.251,21.84856,59.063904,1.6882761e-06 956,1.2216574,10.56319,14.897435,79.467514,1.0353506e-06 956,2.99049,431.31168,53.024044,68.17093,3.134455e-07 956,2.812653,13.921497,58.505505,118.15991,1.3922595e-07 956,2.8777735,4.9129443,38.867065,45.893692,1.2986001e-07 956,406.13864,4.0507064,64.19043,49.65144,2.0113093e-09 956,115.98611,3.7650049,42.431923,54.279575,1.2699729e-11 957,76.07274,184.36276,31.8835,64.318756,0.0039753444 957,479.341,205.16338,37.02118,83.36018,0.0008848684 957,616.2582,124.79088,22.888489,90.631165,0.00032753966 957,409.17172,181.45161,35.023132,75.38426,0.00028760484 957,16.247366,196.66919,25.235395,45.10852,0.00028586623 957,471.84454,99.84476,45.47937,167.16406,0.00023123952 957,617.29675,397.31888,21.849915,81.36014,0.00017711372 957,616.85046,67.57611,22.296204,87.11578,0.00015526373 957,617.40564,232.39142,21.741028,87.74933,0.000121672485 957,600.9238,112.48797,38.22284,188.99753,9.3728304e-05 957,2.1220825,132.67717,30.146294,146.44502,8.6027736e-05 957,1.3307341,194.6561,18.829058,68.82788,8.5139494e-05 957,1.4168278,100.69087,19.083096,75.36113,8.450738e-05 957,617.5116,321.49335,21.63507,81.43701,3.975046e-05 957,616.3971,19.717829,22.749573,84.89867,3.7265712e-05 957,396.2417,116.36195,77.542694,165.18367,3.5800993e-05 957,572.98346,424.70328,66.16321,74.996,2.2173997e-05 957,601.3452,269.99756,37.801453,203.59329,1.4147279e-05 957,3.4252262,146.65839,56.445023,221.99976,1.4008672e-05 957,0.9468799,229.09805,18.515474,78.94202,1.3699062e-05 957,598.9655,17.8909,40.08008,180.05565,9.91121e-06 957,0.783785,326.4114,20.045307,134.54471,9.119808e-06 957,0.6291093,358.77884,13.737965,47.76291,7.2907483e-06 957,0.8216683,284.47885,18.218483,69.72406,7.122103e-06 957,0.7047856,419.51074,13.591737,47.831238,4.439709e-06 957,5.295039,246.39282,79.16512,227.3215,2.3702441e-06 957,282.5835,5.4490104,46.095673,58.709248,1.1465796e-06 957,591.0438,4.1071258,44.575806,54.85942,1.0924349e-06 957,3.1586802,398.21194,55.97786,96.67459,5.2206275e-07 957,1.0550692,8.981088,12.549262,78.17356,1.4271312e-07 957,1.7045281,11.544291,58.39994,129.02458,1.09668086e-07 957,368.1591,6.222536,44.236084,54.26129,8.607815e-08 957,415.39136,7.7383986,43.592285,53.27973,6.834481e-08 957,305.98456,3.881154,60.424377,47.31833,3.816694e-08 957,441.65955,6.0987697,65.292694,58.30108,1.6270263e-08 957,2.4657552,4.91002,37.729122,54.95173,1.1322958e-08 957,558.74915,3.3051646,43.60919,57.706505,3.0908873e-09 957,489.53177,6.01224,41.8602,54.47192,5.624373e-10 958,413.18216,197.02884,33.1756,70.47769,0.65946746 958,385.93546,197.77025,25.370117,47.679916,0.5518368 958,536.3598,133.62196,51.057617,165.70705,0.00510925 958,548.48267,182.62633,30.724304,70.46355,0.0013934517 958,510.7211,84.3872,121.469696,239.84479,0.00052745256 958,1.1985035,272.82504,19.804678,92.381775,0.0002363643 958,2.8062174,160.93776,35.777985,194.02419,0.00018986962 958,617.8224,138.28615,21.32428,77.116165,0.00018080308 958,617.76935,258.98157,21.37732,76.75717,0.00012690957 958,612.45624,57.965755,26.69043,119.90599,8.054297e-05 958,1.1582276,275.2121,31.184904,200.06802,7.2089424e-05 958,601.4129,126.24045,37.733765,170.24243,6.7990564e-05 958,1.6980429,175.19797,18.181255,74.17157,5.673797e-05 958,613.0591,417.19843,26.087585,85.909515,4.6513465e-05 958,617.3205,341.66522,21.826172,82.61395,4.641483e-05 958,404.35242,162.54865,73.19113,151.5636,4.0346138e-05 958,0.60492355,390.2525,18.944752,87.648865,3.8670696e-05 958,5.485752,178.68263,76.65604,270.38623,3.1665273e-05 958,616.6928,23.342716,22.453857,82.14099,1.8345761e-05 958,587.67596,263.19604,51.355225,212.35406,1.1509887e-05 958,132.47908,133.26251,85.376144,174.38504,2.4686583e-06 958,2.201644,418.2523,53.044262,82.1647,2.0122907e-06 958,586.80255,13.082598,52.32013,123.953384,1.2797512e-06 958,1.4638257,74.199295,19.108063,147.9948,5.814286e-07 958,2.1468978,13.785001,57.825336,117.2236,3.1952503e-08 958,1.228995,15.430919,17.49015,118.303566,3.0363537e-08 958,2.0447283,5.3220997,39.935364,52.836617,5.609977e-09 958,348.15112,6.561014,41.19751,51.283073,2.7916475e-10 959,545.2499,143.41678,68.95349,161.76437,3.2015514 959,576.256,154.06792,33.325623,77.24266,0.030711934 959,571.99994,214.23674,25.385437,52.997055,0.010030169 959,397.67627,191.5158,41.944366,72.15639,0.0044138487 959,582.6209,121.42683,46.679443,152.41641,0.004253001 959,560.2968,196.73499,26.239014,58.27664,0.0016724407 959,616.4818,169.21732,22.664856,87.158966,0.000477604 959,611.03314,197.88107,28.113525,151.37329,0.00019680527 959,611.58777,379.91678,27.558899,119.77939,0.00010256077 959,610.74567,296.34308,28.401001,127.37619,9.5798314e-05 959,609.1746,73.43852,29.972046,159.68854,9.445775e-05 959,1.6649805,182.62918,17.964493,71.22919,9.344226e-05 959,584.98285,231.01349,53.30664,235.72125,7.242253e-05 959,605.5159,0.0,33.630737,66.69577,4.057566e-05 959,0.6808126,232.17613,13.566297,48.30812,2.266765e-05 959,0.95570314,221.0267,19.43389,136.02203,1.7912922e-05 959,2.3600717,121.11503,35.417213,175.10098,1.46343455e-05 959,179.04807,214.26411,34.552017,72.73335,1.3516382e-05 959,386.95462,149.14316,92.97949,181.62479,8.4250705e-06 959,3.8907845,206.49034,56.436405,223.78728,7.595856e-06 959,0.9593514,325.8609,18.25693,128.50803,6.791514e-06 959,0.8333521,423.33997,17.053913,79.18228,2.167368e-06 959,5.7850003,355.7576,78.06418,131.72168,6.403796e-07 959,1.5472331,51.151825,19.82305,158.85312,5.511715e-07 959,1.4796655,24.872692,18.440243,69.31427,3.750836e-07 959,3.4977198,24.658978,59.548923,225.92554,3.7234642e-07 959,2.7703564,430.00763,53.185604,69.98135,2.9873598e-07 959,32.496082,7.3446584,41.801136,47.03106,1.0981419e-07 959,6.016701,5.9793572,43.34629,50.84297,1.0935872e-07 959,496.18704,0.7732227,50.538055,65.92994,8.297656e-08 959,532.30444,2.3002963,46.974243,64.87936,1.7901185e-08 960,441.51437,210.27556,22.486267,49.209305,99.936775 960,456.40527,218.64542,27.257538,53.131348,0.006517927 960,616.7149,55.376175,22.431763,81.56154,0.00062500796 960,425.7229,177.41177,67.64258,113.726135,0.000474116 960,616.118,403.21252,23.028687,85.802704,0.00032594704 960,0.57202923,229.72136,13.671012,48.693924,0.00011991025 960,610.54974,86.8049,28.596924,141.47498,0.000105558174 960,616.8466,174.75006,22.300049,83.77655,8.755206e-05 960,617.7627,270.7248,21.383972,81.41083,5.9505073e-05 960,1.8021257,176.72017,17.397612,74.78108,5.5004493e-05 960,4.2792172,94.23237,58.05435,220.09628,3.424133e-05 960,586.7148,337.1868,52.431885,151.7445,3.3893823e-05 960,584.2666,9.6814,54.739136,131.77565,3.0229623e-05 960,26.903429,151.11438,91.9385,163.28915,2.8088414e-05 960,602.3252,162.52438,36.821472,190.065,2.7460626e-05 960,1.7343278,56.790127,18.818655,77.87335,1.8968307e-05 960,0.8350114,234.70204,19.543545,133.17497,1.8557697e-05 960,0.73863447,339.0216,19.878374,133.06934,1.1788927e-05 960,3.1807666,20.212467,56.414677,104.178345,1.0805074e-05 960,0.6560128,379.10718,13.714014,47.039673,7.576235e-06 960,394.85452,139.67691,140.06705,218.5224,7.222458e-06 960,608.8936,3.5810516,30.253052,65.15216,6.300225e-06 960,0.90878177,423.88345,16.979435,78.91916,3.1753991e-06 960,1.8076978,14.064522,16.230484,68.325584,3.085555e-06 960,1.4610206,109.32926,19.796154,89.30503,2.686356e-06 960,2.9091895,288.38864,57.764614,189.60583,1.7213447e-06 960,2.7407277,8.032608,42.692127,49.863342,1.1383819e-06 960,2.9219744,430.97864,52.786667,68.80481,4.0620768e-07 960,577.01483,3.9743652,45.620728,61.8636,8.7394e-08 960,39.768265,6.4211884,42.61463,47.91343,1.9996742e-08 960,531.5957,5.367087,42.69281,56.378036,1.2968718e-08 960,504.561,5.00724,43.39334,52.680756,1.5148259e-09 960,381.68988,2.2888362,42.87433,53.274277,5.722473e-11 961,5.9399433,208.38622,36.56115,61.72258,55.441147 961,514.86566,219.08806,28.349976,70.984634,1.3817061 961,0.8471635,220.21292,13.274569,48.692566,0.15719546 961,416.30502,226.63354,22.931396,51.04535,0.036894135 961,2.038589,157.08191,23.001251,132.35101,0.013770032 961,381.5726,219.5867,24.5336,52.035126,0.0041264268 961,517.4614,161.47708,42.74939,143.76913,0.0015582842 961,3.3666732,162.68192,65.16732,159.62674,0.00073819637 961,611.3426,163.558,27.804077,139.17067,0.0001382887 961,1.177151,201.35686,32.774372,211.9781,0.0001194349 961,617.47797,257.76852,21.668701,79.52655,0.000100210294 961,611.885,379.27255,27.261658,117.74704,8.9009714e-05 961,610.31635,71.6601,28.830322,151.6065,4.8730355e-05 961,423.70932,163.62596,58.330383,130.60872,4.689062e-05 961,527.6562,69.76475,77.90216,204.64896,4.4015647e-05 961,479.11517,148.53018,111.72705,207.7255,3.3435754e-05 961,587.2182,262.4465,51.81897,218.931,2.3215023e-05 961,321.15945,158.86113,82.41788,152.85881,1.14677705e-05 961,583.5379,10.563529,54.69879,123.73794,9.804003e-06 961,0.7232919,339.1629,20.154448,134.15887,9.589249e-06 961,0.935717,424.58823,16.920006,77.61679,2.4934313e-06 961,2.9776254,327.23593,57.74602,157.50085,1.117821e-06 961,1.432736,16.65952,37.873573,261.27994,5.568969e-07 961,3.0581608,431.45187,52.830116,68.16354,2.831555e-07 961,1.3017008,10.965677,14.923376,70.46735,2.6103822e-07 961,1.7323601,53.429905,21.85894,130.9098,2.2038718e-07 961,19.496857,6.6125426,43.563725,53.374928,5.8106025e-08 961,564.33655,5.5666604,44.106934,59.03284,1.492084e-08 961,490.42007,5.018672,42.871246,52.671555,6.966671e-09 961,538.4463,4.405241,43.976562,61.41735,5.876223e-09 961,74.44914,6.4649186,41.359985,49.30099,4.673462e-10 962,506.64594,213.76012,23.47522,50.812027,99.90028 962,493.14267,215.58434,21.675018,48.99974,99.120346 962,418.01526,218.87695,25.594635,58.930847,59.348995 962,575.7179,180.87878,61.30957,178.18881,0.043031886 962,431.18283,218.23143,32.464325,74.434006,0.0047247033 962,617.5904,207.48978,21.556274,73.92743,0.0027116819 962,337.79166,196.12277,43.46985,68.54724,0.0013402901 962,474.95325,187.83539,57.603455,100.15759,0.0011672336 962,608.1838,235.57436,30.96289,160.93446,0.0005071147 962,608.42456,96.137726,30.722107,151.00713,0.00037828385 962,610.6889,323.80856,28.457764,148.97906,0.0002863847 962,617.17456,62.61116,21.972107,83.898315,0.00028437885 962,1.4290267,171.18846,19.633831,123.22084,0.00014258309 962,381.58875,199.62793,76.71518,145.2911,5.9815215e-05 962,608.3703,434.46185,30.776367,70.346924,2.5538815e-05 962,3.954261,118.12844,57.67806,209.401,2.5425086e-05 962,1.6457015,201.82935,32.521473,178.6947,8.316107e-06 962,610.22754,2.0066926,28.919128,70.88918,6.9196412e-06 962,318.53683,157.85252,88.680725,151.24718,6.6643347e-06 962,0.88592124,348.58054,19.814466,131.38052,5.824534e-06 962,459.68042,145.67386,131.52747,216.10526,3.7530278e-06 962,493.29474,3.1537225,42.836975,49.48609,2.8044992e-06 962,3.314593,284.60266,57.22641,191.71048,1.7270802e-06 962,1.8173186,51.223476,30.386395,191.54675,1.6785795e-06 962,1.061368,444.49918,21.860302,59.11786,1.485557e-06 962,2.7746208,10.06751,39.407406,83.859116,1.0051955e-06 962,3.1893783,16.753809,81.92394,170.72842,8.525858e-07 962,2.9861622,431.20703,53.018005,68.71335,2.5551174e-07 962,299.72314,9.68337,46.162903,50.59738,1.7752502e-07 962,469.35986,6.376211,44.858337,56.18947,8.487077e-08 962,524.1742,6.131162,45.706787,58.391033,5.8111116e-08 962,272.45975,8.302303,41.959167,52.140236,1.8916795e-08 962,84.58133,2.65584,45.133667,49.773155,9.77583e-09 962,32.49119,5.2423196,42.7402,57.598747,6.8428125e-09 962,59.015198,3.761989,44.627617,51.752922,3.881154e-09 962,121.66522,0.0,42.1454,62.71676,6.8439934e-11 963,614.8178,206.79362,23.378845,78.17958,97.271904 963,524.92426,212.26625,39.694824,93.66322,95.31677 963,366.92038,199.3567,26.595947,49.325882,72.8118 963,507.90173,215.37808,20.231445,46.961365,11.945139 963,544.48065,245.74078,31.390564,66.22333,1.1801342 963,510.7768,270.26025,23.138855,57.40799,0.21352457 963,541.4726,229.00761,50.7417,140.73729,0.038080912 963,503.1204,205.77405,40.269867,131.30487,0.031251095 963,601.04895,141.13528,37.690125,182.19681,0.024957899 963,10.122562,187.03256,26.640373,60.84424,0.015751373 963,421.7322,193.15642,39.797638,75.415054,0.013757459 963,618.45154,159.38545,20.69513,75.50354,0.004169766 963,480.89523,154.70285,149.61057,238.35916,0.0008132074 963,600.2327,239.66751,38.91394,220.09875,0.00014527388 963,2.0550766,183.055,28.740484,155.03482,0.00012024166 963,442.9187,159.61998,97.828674,203.99931,8.358596e-05 963,607.2614,431.60284,31.885254,74.08499,7.903185e-05 963,405.37518,156.66368,84.42081,157.63866,5.9673006e-05 963,346.8992,154.66545,75.44458,158.43532,3.0937586e-05 963,2.014703,75.186035,29.779873,174.11227,2.794797e-05 963,609.39575,28.93521,29.750916,172.3432,1.4524879e-05 963,0.9675928,272.2404,18.739689,128.22064,1.3102151e-05 963,1.58264,314.31894,32.05553,167.01883,5.27645e-06 963,1.2149553,443.51022,21.679008,59.690674,3.7246314e-06 963,609.67303,2.319401,29.473633,61.497658,2.550571e-06 963,1.9821094,13.124245,57.617966,123.04537,2.3915559e-06 963,0.9018441,5.775443,22.758747,63.90616,8.2907746e-08 964,391.67087,205.80344,25.656097,49.394897,99.81979 964,611.32446,242.816,27.822205,56.444077,0.76299304 964,495.21893,229.57448,31.41809,59.26097,0.40861773 964,401.77908,212.68472,30.322296,60.036346,0.04726392 964,591.8176,165.40834,47.29126,139.07823,0.03649693 964,390.25064,231.62886,20.31369,46.11589,0.017815659 964,616.99786,191.33191,22.148804,83.657074,0.005068037 964,621.1371,304.04062,18.009583,52.243042,0.00065567245 964,587.7162,255.94496,51.193848,223.1986,0.00024268059 964,617.4239,394.81448,21.722778,77.98215,0.00022241354 964,616.8292,116.256004,22.317444,89.98254,0.00017364763 964,617.3398,347.63544,21.806885,84.05682,0.00014186693 964,528.3051,171.34595,96.71393,191.58392,7.826202e-05 964,608.5253,438.4072,30.621338,66.601715,6.1051884e-05 964,1.0460417,199.85078,17.387484,126.84184,3.598371e-05 964,373.50653,166.06876,76.203735,146.95871,2.6913056e-05 964,1.4041365,114.476776,19.10174,140.43489,2.496968e-05 964,1.6895509,58.815094,18.010841,74.02724,2.387787e-05 964,4.089712,21.471136,55.78784,95.555115,1.8563502e-05 964,601.2932,35.143482,37.853455,204.33867,1.0669867e-05 964,1.072762,360.58517,20.704391,103.32025,9.032697e-06 964,1.4061711,258.82468,34.025745,180.63522,8.833458e-06 964,0.87089276,310.1327,18.446287,72.522125,7.3897304e-06 964,1.8987077,14.014271,16.729563,79.1987,5.8448213e-06 964,4.0464177,136.92035,58.483677,218.08707,5.7274883e-06 964,1.0307332,423.68808,16.788857,78.1438,4.8877805e-06 964,6.5581527,9.151793,61.733566,45.893066,2.3057257e-06 964,3.5792742,340.39532,58.045116,146.31958,1.4218339e-06 964,68.039764,5.933802,48.735435,53.66235,6.822655e-08 965,435.12677,206.29997,28.013855,69.56807,99.95938 965,495.0045,279.27585,24.001984,48.588135,0.07869615 965,444.64392,260.85706,24.557037,54.528717,0.01570563 965,404.53998,201.81558,20.272797,45.05974,0.008217635 965,67.04739,199.77335,28.568962,49.630417,0.0063623125 965,453.89664,211.13232,23.984406,55.649475,0.0018050976 965,609.85724,129.7912,29.289429,130.53867,0.0013450584 965,388.8324,206.17107,24.241638,46.561935,0.0010916061 965,488.64334,221.41391,38.80313,116.7883,0.0009231583 965,418.49545,176.8864,66.45941,152.70247,0.0005262382 965,623.2488,153.30704,15.897888,46.42006,0.000408768 965,28.674623,194.24406,27.04959,49.05414,0.00039653745 965,621.3753,191.20258,17.771362,51.73886,0.00039518968 965,617.3362,380.57224,21.810486,81.29855,0.0001910991 965,1.8957251,196.89865,17.183708,66.13046,0.00013704997 965,617.78094,60.795742,21.365723,74.6176,0.000118827884 965,611.66034,205.48894,27.486328,138.80046,7.5983175e-05 965,1.2302995,47.57982,13.443661,52.620636,6.8148045e-05 965,617.19037,298.98096,21.956299,82.38434,5.8991456e-05 965,0.4558838,234.85092,13.829398,50.770294,4.4603006e-05 965,601.7002,319.5386,37.446472,169.7637,4.0267263e-05 965,2.2464983,162.15765,33.963722,167.59348,3.061754e-05 965,608.8986,439.43674,30.248047,65.075775,2.9228786e-05 965,2.7192497,13.1451435,41.006557,81.737045,2.2128197e-05 965,387.72342,141.64352,148.56961,240.34515,1.1345813e-05 965,4.1596665,40.46055,58.77256,248.15265,8.940637e-06 965,0.80776775,243.55626,20.181631,139.81386,8.77805e-06 965,0.6870215,268.04373,13.913173,49.203674,8.175942e-06 965,1.0327848,393.5911,18.106247,71.18182,7.991683e-06 965,0.81966066,344.81427,18.347166,74.57214,5.4670954e-06 965,1.5205168,84.27505,20.88243,118.26803,2.8700258e-06 965,1.5607374,309.13528,33.544178,173.33932,2.2389418e-06 965,1.1623104,444.14288,21.515833,58.573334,1.7944343e-06 965,6.095075,361.7849,79.22476,126.52197,1.0670291e-06 965,46.871967,6.8758645,50.412434,53.120228,4.28582e-07 965,3.3735352,431.64026,52.93042,66.97977,4.1136065e-07 965,583.47253,9.232702,55.456543,126.44936,3.007605e-07 965,313.76025,3.0641894,39.27704,53.47975,5.591293e-09 965,585.0604,2.780503,42.338074,52.280174,9.93394e-10 965,85.86923,3.2924805,42.162384,57.136955,2.3701884e-11 966,546.9572,198.93193,52.83185,112.77614,99.96049 966,576.53314,207.20926,25.6922,69.513916,0.020576045 966,563.5307,84.135025,27.875,58.035294,0.007410874 966,1.2540898,167.41602,13.571575,58.82727,0.0014081531 966,4.6167073,135.84279,41.04526,110.48924,0.00074640656 966,505.58173,116.95585,126.290955,263.3352,0.0005187129 966,618.0008,240.94011,21.145874,73.691574,0.0003681291 966,587.02655,107.903275,51.30304,223.493,0.0002855943 966,1.091696,199.0343,18.575205,78.08975,9.7555756e-05 966,619.25726,181.45831,19.889404,65.063644,8.794873e-05 966,617.6661,320.4386,21.48059,78.904755,6.6688604e-05 966,610.7042,54.345345,28.442444,156.26416,6.01494e-05 966,601.7314,263.41016,37.415283,190.21887,4.787326e-05 966,612.40625,376.48126,26.740417,120.32037,4.3864457e-05 966,617.49994,37.62243,21.646729,81.15235,3.002832e-05 966,1.5234815,75.55139,21.773857,137.83763,2.7889928e-05 966,5.7218037,64.585365,77.59202,251.59912,1.2863004e-05 966,0.83216393,420.04092,13.549096,46.281006,1.0293121e-05 966,3.33292,194.53438,58.21389,252.21257,8.822142e-06 966,586.77795,18.670645,51.52014,113.31068,8.472853e-06 966,0.8080925,238.8332,19.604872,138.67522,7.913338e-06 966,0.7543636,344.24725,18.491983,75.013336,7.185414e-06 966,0.8313994,393.17865,13.609526,47.405212,6.834383e-06 966,1.4574097,304.6484,34.288464,173.6578,2.7172132e-06 966,354.47675,155.03098,98.08484,199.25092,2.4573928e-06 966,1.3685856,407.86786,26.116917,90.60626,2.140892e-06 966,594.00995,7.5445576,41.30603,50.839645,1.7974899e-06 966,2.170363,10.390596,38.625137,82.00633,8.3888443e-07 966,5.793148,359.17615,79.50433,131.10168,8.185613e-07 966,38.189064,428.8461,78.617096,70.38611,1.6309234e-07 966,16.03835,5.2930374,47.344913,50.01557,1.618639e-07 966,46.79357,5.4056478,44.901733,55.010345,3.3376647e-08 966,73.38684,3.188527,41.011536,54.964073,4.416874e-12 967,431.16766,207.25829,21.928284,52.136826,70.717415 967,449.09143,202.7711,24.234009,55.524063,25.46933 967,495.60168,211.67085,34.156616,76.83333,0.10535963 967,474.8186,206.64397,26.968536,62.786118,0.013741254 967,462.43896,209.19254,21.480621,54.655975,0.011513433 967,417.69897,207.95341,21.959625,48.01027,0.001571297 967,621.08704,155.31296,18.059631,59.95984,0.00091849 967,1.6196029,117.230995,19.118486,139.88297,0.0009042227 967,611.0423,140.98799,28.10437,133.93217,0.0002287099 967,617.73944,222.30424,21.407227,80.75362,0.00021945246 967,0.8261898,97.47145,14.16266,57.98459,0.00020617149 967,616.9175,55.694233,22.229187,81.80112,0.00017237486 967,4.171475,108.42224,58.306705,207.21991,0.00012686514 967,611.69366,357.32684,27.453003,134.00589,0.00011285473 967,0.90573,205.72282,18.286928,79.351395,6.920188e-05 967,617.40625,286.92053,21.740417,81.30469,5.361454e-05 967,401.2425,170.07477,93.6207,184.76617,2.9063844e-05 967,588.31366,180.81987,50.71289,238.29039,2.5749776e-05 967,379.20847,423.49234,70.464355,72.383514,1.19788265e-05 967,0.8179704,245.63188,19.560106,134.95528,9.379558e-06 967,0.79128987,343.43228,18.518856,73.30005,9.280668e-06 967,364.21292,441.61526,42.19928,54.56192,8.950856e-06 967,599.9126,23.830431,39.23407,176.06276,8.759668e-06 967,1.0496526,406.86688,17.999651,71.36386,6.233432e-06 967,1.2293335,54.100964,21.965113,128.4113,5.7185157e-06 967,307.63315,391.7935,113.32687,102.08362,5.5770397e-06 967,336.88492,442.7758,44.244415,54.66559,5.280558e-06 967,86.40002,149.64755,84.39216,158.60919,3.6633905e-06 967,420.68192,428.97046,76.5542,67.82037,2.7742533e-06 967,3.5063038,217.14319,57.803062,242.98837,2.7100086e-06 967,1.467522,341.62967,33.79392,148.29926,2.4905128e-06 967,2.8316245,18.65144,57.33567,129.35616,2.3396963e-06 967,1.3768123,11.262253,16.934416,75.38955,1.5280638e-06 967,3.256141,431.50958,52.925846,67.77896,5.072877e-07 967,586.0229,3.629691,42.258118,50.692997,4.4167625e-09 967,220.7036,3.11035,38.01552,49.93939,3.1673157e-11 967,269.7299,0.0,44.498016,57.13618,1.0956416e-11 968,527.8143,217.80254,36.619934,86.50914,99.87889 968,568.98846,209.39404,41.58362,101.62207,98.90222 968,551.5277,218.16512,33.73694,85.92555,89.85912 968,76.44093,206.43126,28.013786,48.40309,22.549967 968,606.61816,202.16412,29.24591,123.29697,8.917994 968,615.0375,198.08868,19.611877,48.74669,0.09457975 968,539.499,183.35504,95.10382,178.42023,0.013310768 968,617.4771,262.23254,21.669556,82.00961,0.0028031624 968,620.22076,81.200935,18.925903,66.687614,0.0010877633 968,609.51575,78.41397,29.63092,189.70251,0.00023149594 968,1.4375131,129.63477,18.930288,135.97922,0.00020885313 968,601.0088,237.8587,38.13788,219.3753,7.150973e-05 968,4.118089,94.93062,57.651443,214.47017,4.1691386e-05 968,0.8487704,227.37912,19.59722,140.95642,3.235788e-05 968,609.62225,440.71622,29.524414,61.15796,2.1841173e-05 968,1.1065617,336.88437,18.997543,132.38052,1.5964282e-05 968,584.62085,11.700944,54.525818,130.14546,1.5554768e-05 968,585.7076,393.4797,53.265503,98.07687,1.1674685e-05 968,1.0618343,442.2844,20.730927,58.860474,3.4268303e-06 968,3.5921435,296.0552,56.889168,182.0123,3.1738732e-06 968,2.457881,8.960879,60.206352,140.31325,5.391199e-07 968,1.3428336,7.9562407,31.357487,63.786495,7.645268e-08 968,448.43704,5.0292935,45.002075,58.576946,1.746567e-08 968,252.94664,0.63164717,48.595963,45.716793,4.832743e-10 968,233.37134,4.5133643,40.202972,49.68257,8.954352e-11 968,283.21024,0.5011621,45.65674,57.706448,4.6721144e-11 969,30.083399,207.43108,35.06344,51.8347,96.93997 969,541.29456,224.63307,29.375793,55.197464,0.0433504 969,622.0678,114.361855,17.078857,56.01333,0.003210888 969,1.7347763,178.24388,17.881033,74.168884,0.0015848957 969,622.76544,249.1244,16.381226,52.444595,0.0012352313 969,609.8651,89.921135,29.281555,135.11615,0.0008861554 969,532.7595,182.99431,61.20746,115.16695,0.000655598 969,6.896794,175.0308,79.005,109.438675,0.00055570947 969,496.16043,179.66891,38.03488,87.89136,0.00012869056 969,612.0396,171.38615,27.107056,134.02354,9.9780314e-05 969,613.2801,418.31622,25.866577,84.72092,9.061218e-05 969,2.2956054,118.64714,32.605724,172.3156,5.8575322e-05 969,611.87427,326.00317,27.2724,135.7062,4.7552698e-05 969,0.76299644,219.08406,18.738888,82.56651,3.3000426e-05 969,601.93146,217.42,37.21521,187.56502,1.6449365e-05 969,1.6123837,48.142204,18.22031,79.19415,1.59364e-05 969,570.0829,359.01044,69.05554,130.85333,1.1539661e-05 969,1.1290194,336.0159,18.698244,130.49707,9.052014e-06 969,9.484131,125.23899,124.74596,246.42944,8.743894e-06 969,1.7895329,218.49524,34.002663,201.66922,7.869327e-06 969,0.97965413,296.0434,18.432732,77.3038,7.050038e-06 969,0.8017424,419.11526,16.809355,82.50299,4.100847e-06 969,419.97684,139.19685,99.70627,217.74016,3.799658e-06 969,0.93911135,3.1841862,42.206947,64.57572,2.4976816e-06 969,3.422316,339.5753,57.043922,143.54453,1.8800345e-06 969,2.7252686,15.499845,61.47452,233.84099,9.762425e-07 969,585.4662,17.226967,53.231384,119.74856,4.034527e-07 969,239.4288,5.8200817,41.595215,55.004112,3.249446e-08 969,292.90106,5.739388,44.163116,49.96497,1.5790924e-09 969,587.06134,3.0102654,40.14209,49.665264,1.4514299e-09 970,460.31778,201.14488,22.21698,47.444992,0.0019404927 970,437.97064,206.04402,21.490997,47.09825,0.0011720199 970,1.6185303,191.04123,18.134798,72.629,0.0011072936 970,617.53955,220.59732,21.607117,79.803894,0.0002647237 970,617.2308,347.4559,21.915894,82.39526,0.000115125804 970,599.6342,107.202614,39.177063,183.962,0.00010810264 970,612.2716,379.18604,26.875061,119.712036,8.286749e-05 970,617.1894,286.526,21.957275,83.26709,6.9826296e-05 970,617.57306,38.33806,21.573608,76.553856,5.3108397e-05 970,0.5305554,234.05446,13.891258,51.80641,5.1289982e-05 970,617.48865,131.23997,21.65802,86.04419,5.0789215e-05 970,601.4028,243.59312,37.743896,201.86293,4.718903e-05 970,2.024362,177.98827,34.11617,177.47981,4.3347052e-05 970,5.2145705,173.85266,77.23715,282.59692,1.8326491e-05 970,1.2700797,399.5536,17.833595,70.18997,1.17588015e-05 970,1.4588567,117.41996,20.981638,118.86625,1.0651974e-05 970,1.0193335,338.26312,18.460794,76.668884,8.704441e-06 970,0.8784912,295.9008,18.72025,76.445465,6.02015e-06 970,1.75858,315.36557,33.57304,169.21857,4.3808936e-06 970,1.0738493,439.1241,21.665224,62.58078,2.0040443e-06 970,1.5520785,60.018856,18.248976,70.2534,1.943105e-06 970,587.18054,12.294981,51.782837,121.58589,1.3460985e-06 970,3.0150278,425.68988,52.700436,71.528046,7.525852e-07 970,3.1836116,34.684254,59.792683,230.29329,4.6256963e-07 970,1.0198283,13.2212925,14.79022,79.3647,1.8700128e-07 970,587.7635,3.9572217,41.213196,55.15263,1.5961604e-07 970,451.9719,21.420685,120.19351,201.09865,1.5418641e-07 970,259.54205,8.381402,43.64969,53.417538,1.4272756e-07 970,1.2506055,5.872033,31.457117,46.514297,9.6748884e-08 970,530.01276,7.3952494,40.286377,50.915756,7.337043e-08 970,468.83002,7.4851565,90.35181,79.227585,7.1996475e-08 970,1.7643197,18.911133,29.624466,150.94598,6.954619e-08 970,219.62923,5.611831,41.39879,53.4903,5.740662e-08 970,555.15625,8.389252,37.600098,48.19627,2.9082658e-08 970,17.480936,5.954631,45.9169,53.812702,1.9654296e-09 970,197.80858,3.8660777,38.424835,47.215992,8.810035e-10 970,47.114025,5.238661,44.553425,54.37948,2.2269567e-10 970,466.46735,0.0,42.637817,61.204258,1.3110054e-12 971,20.565786,206.66266,38.88291,57.539917,7.8684754 971,470.66528,201.08015,24.94342,53.623886,2.5101447 971,43.49354,201.00981,21.490818,45.332077,0.055721316 971,102.15525,203.20282,25.38018,45.40042,0.0037555129 971,616.9075,155.9936,22.239197,87.06877,0.0005459213 971,2.1399887,204.36852,16.690874,64.78575,0.000523298 971,599.16174,2.9915562,38.61615,46.575462,0.00036565014 971,617.48254,383.53656,21.664124,78.704956,0.00022189872 971,622.2868,52.950638,16.859863,50.70015,0.00020060461 971,3.8624122,165.82076,60.161064,210.3173,0.00018165793 971,616.9354,205.7337,22.211243,83.686676,0.00012366223 971,584.57385,7.1423993,53.220093,101.98224,9.5687836e-05 971,1.1491952,219.20375,19.645256,137.93016,8.496429e-05 971,617.1265,314.42255,22.020142,80.990814,8.24799e-05 971,600.6109,110.89094,38.535767,172.23633,5.0257666e-05 971,608.9225,439.7424,30.224182,66.18176,4.397306e-05 971,602.38873,333.77972,36.757935,158.73999,4.326767e-05 971,611.26337,35.5681,27.8833,151.844,2.2770522e-05 971,2.298169,125.42222,27.373106,150.4538,1.2577668e-05 971,1.1897306,392.66306,18.224213,71.43939,1.06774205e-05 971,1.0146663,317.9296,20.755028,106.14331,6.1274463e-06 971,3.224445,285.32843,57.732124,191.11917,4.09436e-06 971,1.7269093,417.55402,34.50612,79.76346,1.3756568e-06 971,530.51953,11.135092,87.354614,77.89507,9.3599846e-07 971,1.5860727,39.831276,18.451916,68.00624,9.347586e-07 971,512.295,5.6672754,52.199707,63.26236,5.8058197e-07 971,2.61126,15.422696,39.47521,76.54504,3.1569306e-07 971,2.8514795,24.40862,60.69532,230.78821,2.8371937e-07 971,259.63553,8.051753,44.984467,53.108124,1.4554426e-07 971,479.63022,0.0,59.84378,127.44297,4.838614e-08 971,199.21564,13.146667,83.90518,79.16885,3.150096e-08 971,285.09274,7.8224287,44.624115,50.818504,2.547719e-08 971,461.50354,5.905521,119.68884,209.00966,2.2613984e-08 971,191.75357,7.3172493,43.390594,52.912323,6.5990315e-09 971,8.8210745,2.9309328,46.51496,48.38104,4.926146e-09 971,470.5422,0.0,40.105316,61.6143,2.5215913e-10 971,169.38773,5.303859,43.482285,47.73267,5.2979166e-11 972,73.08694,204.23409,24.92656,53.425705,7.892708 972,2.5022364,196.10661,30.83656,77.48723,0.007701879 972,1.3075846,215.58495,13.726828,55.232193,0.0048848744 972,569.53046,121.76739,35.54657,73.98144,0.0011126329 972,611.0816,134.00523,28.065063,134.48103,0.0005407198 972,504.4136,196.2389,39.84738,83.81923,0.00012681204 972,612.025,366.11746,27.121643,133.88379,0.00010677995 972,583.0768,78.915146,55.19983,225.94673,6.3543266e-05 972,609.58856,29.553204,29.558105,144.91039,5.1384966e-05 972,3.5270264,149.19449,58.716713,193.16489,5.0761424e-05 972,612.16943,211.91852,26.977234,130.0018,3.8832266e-05 972,0.92447346,221.32178,20.256233,149.90765,2.440587e-05 972,611.55505,285.80844,27.591614,138.77988,2.2124274e-05 972,1.0639576,90.47464,20.12242,174.7634,1.7386456e-05 972,1.1467,342.8611,19.512144,135.56732,9.391838e-06 972,33.681744,154.64784,110.64334,223.32549,5.325731e-06 972,497.96518,156.0624,80.257416,165.70143,4.03948e-06 972,1.4043945,441.00153,21.509647,62.28891,3.1147301e-06 972,3.8341928,336.6221,56.651295,149.6977,2.738368e-06 972,578.3146,10.661637,60.76117,71.06765,2.1294077e-06 972,196.58142,8.358596,45.760635,53.1521,1.0002702e-07 972,264.6808,7.187082,45.035095,54.48881,8.396203e-08 972,0.9518319,13.790518,16.241573,68.92574,5.8970873e-08 972,205.10023,11.348151,87.20735,83.21748,1.3253694e-08 972,145.2183,11.231999,81.59839,73.46094,8.362349e-09 972,291.89664,6.9483223,45.387054,52.777557,3.1082505e-09 972,3.3641765,27.20521,78.12278,135.0957,1.8150922e-09 972,507.42142,0.0,43.585114,50.293144,1.729098e-09 972,1.7353175,11.721423,50.386814,72.63168,2.181577e-10 972,389.44333,0.534292,40.734375,51.034687,4.0118967e-11 973,92.23168,207.08871,25.518387,45.990738,2.7733705 973,99.17753,182.5841,36.51319,67.79195,0.014016703 973,612.9488,193.71634,24.450623,54.10016,0.0042930087 973,582.5678,187.10059,42.95459,86.884186,0.0012887435 973,600.9043,90.71406,37.44757,179.0716,0.00071043073 973,108.80589,169.9285,22.262482,46.221268,0.0004906246 973,617.1066,391.0531,22.04004,81.228516,0.0002862842 973,611.7084,222.69899,27.438293,140.24004,0.00015087747 973,1.1545125,230.30948,17.842417,72.8212,0.00014327718 973,617.105,342.59717,22.041687,86.00247,8.118452e-05 973,608.64856,441.8847,30.498108,63.406647,7.2996605e-05 973,1.8349056,184.21346,17.269876,78.06279,5.668275e-05 973,586.6191,310.0614,52.527588,181.37238,5.356195e-05 973,2.4115984,161.32384,35.233143,164.2065,3.256747e-05 973,553.35297,154.2877,84.5047,236.86372,9.69642e-06 973,2.056242,452.92578,27.929722,50.098663,9.269894e-06 973,1.564336,369.12817,19.82053,105.10089,7.075971e-06 973,0.7780314,267.53,19.799007,141.34778,5.5035985e-06 973,4.1199985,284.16022,55.50498,199.81647,4.7453937e-06 973,574.04114,5.8277655,64.22998,51.24999,3.7526268e-06 973,566.73663,12.801159,72.410034,163.58673,3.3426375e-06 973,1.7578231,103.64016,20.919767,119.55567,2.6228856e-06 973,146.43437,14.206071,82.51366,73.41939,1.3511807e-07 973,137.52884,10.516622,42.187485,52.07571,5.743235e-08 973,207.04402,10.266335,85.58153,82.89371,1.6240685e-08 973,1.8346078,32.3439,27.897997,136.68361,1.2011525e-08 973,251.48198,5.100739,43.82692,56.56627,6.842486e-09 973,326.24207,7.092448,42.915222,48.471073,3.8327927e-09 973,278.1452,6.326971,43.045044,52.541924,1.6823912e-09 973,555.4019,4.7028484,44.36731,46.262993,1.2343573e-09 973,1.6424365,14.141762,31.400768,63.08439,5.3769994e-10 974,416.50653,213.82002,20.160248,46.791092,0.21685854 974,425.94293,202.34683,22.867493,48.78856,0.0042840107 974,619.7943,161.84184,19.352356,61.97615,0.0042798785 974,610.7739,118.15473,28.372742,145.50626,0.0014160026 974,622.619,245.34558,16.527649,56.62088,0.001412663 974,1.1853251,193.73404,13.243923,54.71277,0.00051149575 974,586.01306,92.171394,26.368103,52.785942,0.00028063668 974,617.51874,395.36224,21.62793,79.86716,0.00023720409 974,1.2671379,222.64496,18.601435,74.23941,0.00015291708 974,2.4826977,161.47667,35.31999,163.15398,0.00013243065 974,611.9902,222.95276,27.156494,138.19101,5.9444897e-05 974,617.3884,327.84943,21.75824,81.5314,5.0705155e-05 974,583.8422,21.545294,54.043457,224.60133,4.854834e-05 974,608.4993,438.2423,30.647339,67.29797,4.215403e-05 974,616.6895,38.264,22.457153,83.7506,4.015e-05 974,1.5224382,100.81126,19.675404,156.17172,2.3596758e-05 974,587.3554,328.53384,51.79126,160.13242,1.633671e-05 974,0.967347,264.12772,18.528442,75.039276,1.1561295e-05 974,596.36005,8.717989,41.850037,76.15332,9.245756e-06 974,1.6495882,250.17201,33.07462,185.65273,5.985676e-06 974,388.2095,156.43822,98.95624,203.02428,5.3742415e-06 974,0.7802405,358.525,13.764343,48.158295,5.2211485e-06 974,0.90595216,311.13162,18.527103,72.94165,5.216808e-06 974,1.18125,368.56406,20.26295,103.69977,3.803385e-06 974,1.4099455,443.11377,21.270893,58.904846,2.8005059e-06 974,3.2566683,58.833855,60.068882,214.0328,1.7526856e-06 974,3.7373438,400.51935,54.777985,93.938324,6.108563e-07 974,165.29745,13.066823,43.159393,46.8999,1.00834605e-07 974,173.86409,16.913546,83.15706,74.8092,7.946212e-08 974,116.11204,9.875866,42.65838,54.134197,5.6092947e-08 974,575.1135,4.4419045,45.398376,46.734207,4.9941512e-08 974,449.55548,8.662266,43.003113,54.761642,3.0367534e-08 974,214.31587,6.7029347,44.28499,47.568928,1.4871432e-08 974,245.10641,5.1985025,43.088867,58.545525,1.0590293e-08 974,526.4889,6.7066426,41.781982,55.0398,1.0571101e-08 974,423.55804,8.3711,42.761444,52.038868,7.526104e-09 974,550.643,7.153755,44.90271,54.004402,3.2977086e-09 974,0.72936034,5.9556365,17.404692,54.345837,2.4037672e-09 974,395.12433,6.2207212,42.65387,51.1792,1.0345043e-09 975,447.6045,215.39342,25.321625,59.649582,0.14368834 975,460.28574,210.3577,32.65204,67.19571,0.013016257 975,213.20857,227.0361,26.126022,45.14679,0.002458825 975,527.0265,200.59976,33.009766,71.52753,0.0009808155 975,479.20673,222.53568,26.12442,58.05011,0.0009399135 975,610.31903,112.814674,28.827637,149.09122,0.00091657724 975,620.9465,151.19766,18.200195,61.668457,0.00080234103 975,1.1104615,221.89879,18.937494,79.82985,0.000527833 975,621.6068,406.67136,17.539856,54.406036,0.0005104349 975,442.42783,152.5799,37.871674,112.68634,0.00036119897 975,622.3404,65.23684,16.806274,51.571846,0.00026344584 975,2.2284195,172.05153,37.180397,170.00404,0.00015265861 975,608.36066,438.60495,30.78601,67.92526,0.00012155489 975,610.9419,316.55286,28.204773,149.586,7.702341e-05 975,617.67004,292.13986,21.476624,79.15646,6.432529e-05 975,1.5414014,142.81824,19.781223,125.348785,4.1632426e-05 975,570.73254,364.78033,68.41412,124.687164,2.9593642e-05 975,0.81624186,252.24402,21.110825,153.80261,2.1258695e-05 975,601.3978,187.23462,37.74884,189.74051,1.6951724e-05 975,0.9476148,126.04081,13.674886,55.58683,1.3386726e-05 975,515.59937,152.03357,73.77045,149.86221,1.1179366e-05 975,577.5936,4.290907,58.805115,47.664474,1.0931232e-05 975,177.64496,162.12535,101.05432,224.24269,7.697423e-06 975,601.89716,16.339727,37.24951,164.80875,7.650818e-06 975,1.3088517,380.17398,19.119394,116.52542,5.452048e-06 975,3.842557,293.08463,56.539528,188.69144,4.5734905e-06 975,3.2567415,5.085249,42.39532,54.659843,3.2899986e-06 975,512.59283,7.470711,41.359375,53.299023,2.8461327e-06 975,1.2236207,13.425277,13.641585,81.159546,1.7834269e-06 975,4.0879917,17.777384,79.806175,165.311,1.4032013e-06 975,3.6956983,429.9591,52.25424,66.55179,7.304609e-07 975,130.39438,10.064418,42.048706,47.23989,2.496509e-07 975,22.041426,3.3731837,66.52071,58.80989,2.3039706e-07 975,531.0264,6.639455,65.21515,49.072456,2.1349294e-07 975,173.40894,11.192598,56.68019,48.74141,1.2621996e-07 975,481.64523,0.0,45.49344,49.52706,6.212323e-08 975,217.92134,9.365296,43.934982,57.049942,3.2645404e-09 975,457.77496,0.0,41.08603,54.651096,6.502522e-10 975,245.65982,7.291794,41.407043,55.33335,4.3681855e-10 976,603.0829,214.54425,21.567078,45.770325,97.20571 976,619.29694,210.31877,18.262634,53.48015,1.103473 976,602.6069,162.76102,33.61682,117.03348,0.036620393 976,155.5306,237.92764,53.425537,207.06961,0.015042907 976,327.38962,250.31631,60.321045,138.35199,0.006800137 976,47.211674,219.0339,26.95258,49.236816,0.004998007 976,375.95886,217.00246,23.786652,52.01625,0.0036122845 976,205.036,194.82346,25.295395,48.45778,0.0026638235 976,5.9489512,207.46758,23.59755,47.290375,0.0018454115 976,621.6332,129.21002,17.513489,56.246902,0.0010393838 976,320.65973,213.81247,36.841858,86.508575,0.0008840536 976,611.5898,331.49503,27.556885,143.61542,0.00044261574 976,622.55023,305.65952,16.596436,50.026764,0.0003686315 976,588.3949,180.02971,49.265076,223.5702,0.00036611807 976,616.0881,77.128494,23.058594,89.42877,0.00017278615 976,608.39954,433.08258,30.747131,71.83826,0.00012325439 976,617.37384,253.45522,21.772827,89.242966,0.00012308583 976,587.0809,28.53228,50.924683,264.44714,0.00010450125 976,3.7074268,197.04695,60.17156,217.08543,8.785836e-05 976,1.1673462,333.74475,18.230967,75.618774,5.522389e-05 976,2.137295,132.10805,34.20453,169.39195,5.0472754e-05 976,1.2723104,219.18912,18.32137,150.69543,3.9363596e-05 976,1.9657276,274.84805,33.150936,190.7428,3.5528963e-05 976,611.5904,5.246299,27.556274,87.89553,3.4955727e-05 976,0.9929769,370.2928,17.291306,124.98596,2.6701122e-05 976,4.746543,332.0499,78.1768,153.66904,1.3356376e-05 976,3.0180535,425.32672,52.2927,71.54788,3.9031415e-06 976,1.4137948,78.779205,16.056805,156.20969,2.710329e-06 976,277.13855,419.37234,71.6503,75.25461,1.4115442e-06 976,133.98581,52.4273,76.05893,213.81537,5.601343e-07 976,0.80621505,11.444216,9.733905,85.894905,1.9283865e-08 976,2.5333107,19.882835,55.96496,111.85845,7.780752e-09 976,492.4669,0.0,42.995514,48.074745,4.0764142e-10 976,175.96468,3.7762876,41.616623,48.340054,3.5663106e-10 976,140.88539,4.0232925,46.69693,51.988785,2.9664265e-10 976,13.9990225,5.999159,40.259007,50.010643,5.9761356e-11 976,115.09903,4.1733723,45.164,53.086487,5.2270736e-11 977,595.0588,212.3557,26.26239,47.50453,99.596725 977,213.83672,212.61893,31.071838,65.50223,0.09303126 977,610.4836,163.35278,27.277344,99.87976,0.055568118 977,182.00044,228.68536,45.02202,158.15298,0.013051802 977,334.69363,276.923,48.554382,148.83942,0.009622466 977,6.6527476,208.1962,23.142662,47.766724,0.004313588 977,369.01068,218.57037,24.919617,63.7424,0.0016062317 977,588.602,148.10771,48.28235,202.47444,0.0008317411 977,321.0112,218.90971,35.53186,79.39867,0.00071833294 977,611.6791,337.0187,27.46759,140.27557,0.0004550451 977,155.04959,200.20412,110.50079,226.80101,0.00030896184 977,617.2825,240.04004,21.864197,87.5853,0.00019940108 977,608.45355,432.44016,30.693115,72.58914,0.00012396817 977,2.2429826,153.07646,29.874388,134.13301,0.00011478464 977,1.51122,330.63446,18.608925,143.15347,5.7537552e-05 977,609.35223,53.15444,29.794434,167.49493,4.503882e-05 977,3.6159294,224.9851,56.589737,229.98376,1.7646953e-05 977,1.5022689,222.90282,19.225512,155.19426,1.2624766e-05 977,3.0083628,390.28714,55.34192,100.5874,1.121807e-05 977,1.0709392,420.43234,15.921861,78.33664,1.0939034e-05 977,585.69727,16.012188,53.032837,115.29024,7.0082883e-06 977,2.247972,18.349783,56.25957,112.217125,4.6833253e-09 977,492.47742,0.39748538,43.174805,48.37186,3.7132034e-10 977,154.662,3.333034,45.275787,54.491283,3.144678e-10 977,127.249146,4.54361,45.592056,49.90673,8.1601864e-11 977,13.804898,4.990583,40.37955,51.114857,2.1945593e-11 978,601.1995,213.88252,25.379333,46.332443,99.08269 978,516.70044,223.88792,26.443542,48.6884,0.27995396 978,594.5697,200.65355,39.540955,102.04683,0.12846872 978,208.07521,229.44206,43.35057,135.7559,0.03465034 978,586.7357,211.61661,23.781616,45.434082,0.009494169 978,596.83075,237.06602,24.352905,47.05342,0.0053753858 978,1.5600481,215.02101,18.828835,78.159195,0.0042401673 978,547.0871,231.07248,23.581238,47.31082,0.004102704 978,570.2848,228.85052,23.938477,53.427338,0.003916731 978,38.926075,219.25323,24.619202,46.681305,0.0030835115 978,343.99554,259.47815,43.225006,110.38083,0.001882828 978,327.014,215.46686,34.979218,64.839386,0.0005427537 978,611.85223,338.90698,27.294434,139.2326,0.00027856432 978,2.231133,171.78993,34.458015,176.29506,0.00026753172 978,587.43634,12.352695,50.714844,283.004,0.00016415669 978,611.2634,229.81477,27.88324,150.10133,0.00013108767 978,608.5226,432.90866,30.624084,72.726776,0.000105918276 978,609.0932,57.439957,30.053467,138.4626,9.548601e-05 978,176.13853,241.03053,110.77626,219.46776,8.726331e-05 978,3.6608741,241.27391,56.05241,231.40672,7.2194685e-05 978,1.5935628,121.12365,18.338818,142.15707,3.9335486e-05 978,0.57633305,317.1161,19.508972,90.96579,2.075349e-05 978,1.1355835,374.7095,17.379772,122.4906,1.0477333e-05 978,3.192194,423.04364,52.22454,73.72778,2.741012e-06 978,1.1871891,8.972653,19.512217,54.186333,2.312805e-09 978,147.84659,3.7611964,45.99318,50.65138,3.5022052e-10 978,176.60701,3.0814128,42.303833,51.916054,2.943572e-10 978,121.71471,4.391535,44.93831,52.922775,5.5630868e-11 978,26.998951,6.313026,41.92259,49.018192,2.5728348e-11 978,518.77057,0.0,43.663635,49.323204,2.4146416e-11 978,542.1439,1.1671257,44.713135,45.63678,4.8215793e-12 979,363.4725,422.04578,35.637756,73.25064,0.12935509 979,276.46994,413.62674,90.385315,82.06238,0.07261451 979,619.5693,53.237297,19.577393,60.60868,0.05804526 979,340.402,368.83078,47.23105,134.25586,0.03692888 979,8.053039,208.04683,36.280952,85.590775,0.0056195576 979,606.92255,198.70871,31.568787,133.41318,0.0055845613 979,35.168114,219.96326,26.790215,55.037933,0.003425026 979,5.4792156,207.52722,74.59797,159.88892,0.0024091005 979,347.3966,401.5991,114.83435,98.12561,0.0010774985 979,284.13412,429.48495,30.184265,66.25632,0.0010543963 979,609.21265,17.587194,29.934021,137.34743,0.0010074921 979,147.96295,241.9794,26.238861,56.158966,0.0005908751 979,246.3625,436.0009,49.91307,63.862396,0.00038771826 979,239.56021,247.15941,36.067413,80.55321,0.00034069153 979,597.769,404.22192,41.100647,93.76117,0.00026709298 979,1.5183203,193.94804,18.998304,74.904495,0.00023398579 979,1.6969442,234.35126,21.66647,115.49338,6.583703e-05 979,602.7078,254.70241,36.438843,201.27089,6.196921e-05 979,181.07495,424.1775,77.76169,72.40253,5.3550975e-05 979,165.53456,441.7587,42.64485,58.757507,4.8926027e-05 979,6.7020183,326.2222,76.51487,157.3935,3.7645492e-05 979,305.74307,231.24944,36.03116,65.754715,2.9690375e-05 979,1.5123072,102.457664,29.45956,189.3818,2.409413e-05 979,1.0914035,378.33237,17.301617,118.32791,1.4366367e-05 979,557.5574,116.74263,79.95892,239.56758,1.2708988e-05 979,1.579318,285.83615,18.536606,146.59927,1.1791165e-05 979,220.28506,236.89084,75.98416,218.18594,1.1780926e-05 979,3.097754,426.9697,52.305885,69.780304,2.7213002e-06 979,582.52924,1.3206999,45.286255,50.184967,4.703126e-09 979,1.2133659,9.258289,19.601622,54.32186,2.212533e-09 979,148.0883,3.9708514,45.445435,51.15874,3.3971478e-10 979,183.28104,2.7068148,41.37262,50.82752,1.9159559e-10 979,121.98305,4.447085,44.618362,54.440956,8.347743e-11 980,354.41473,373.92587,46.642395,94.39633,0.30705744 980,358.5849,391.7493,22.760468,55.133575,0.011545272 980,611.18243,331.95566,27.180176,51.321136,0.008878071 980,18.425962,221.14964,46.02587,140.25462,0.007494307 980,404.7534,232.28305,23.872803,56.219604,0.0066045597 980,248.89857,226.44438,34.421738,73.564224,0.006093867 980,30.330534,233.4117,28.521524,58.875046,0.0013480505 980,588.57605,256.42166,48.367065,205.06003,0.0011795977 980,325.6648,319.42194,97.792114,164.6727,0.00085537974 980,611.3294,0.0,27.81726,64.91369,0.000732987 980,617.3333,269.88623,21.813354,82.086395,0.0005150397 980,468.70282,243.23964,61.459778,145.21254,0.00042483862 980,1.4153451,236.01465,21.847004,112.136566,0.0004001814 980,5.019675,226.68694,97.77215,214.17809,0.00038874464 980,164.2577,240.22641,19.979584,45.28958,0.00020310095 980,234.66682,249.9173,34.1447,79.38489,0.00015362688 980,203.28621,408.57748,23.170853,50.181946,0.00012739739 980,610.0937,168.07048,29.052979,138.98817,9.5313786e-05 980,237.59764,187.25206,73.809586,150.34999,9.079297e-05 980,608.804,433.5687,30.342651,71.63022,7.102337e-05 980,28.91658,300.9996,27.589722,58.165955,5.0568444e-05 980,1.158916,359.07898,20.407667,115.90677,3.716315e-05 980,224.47043,268.42444,27.069687,49.994904,2.8909533e-05 980,2.6083953,148.93517,35.98662,184.8267,2.0080432e-05 980,559.0023,215.43219,23.29718,46.10034,1.1185657e-05 980,3.2747738,392.30762,54.503784,99.532196,9.15973e-06 980,1.3675562,438.55182,21.617514,62.41211,5.1966285e-06 980,598.30804,0.0,40.838623,158.0357,2.5388151e-06 980,2.2476857,19.20488,55.762814,112.78267,2.3258206e-08 980,159.66791,3.4700456,62.73387,47.977623,7.5721185e-10 980,127.916016,4.801128,45.085815,51.311386,2.0348345e-10 980,20.479465,6.988949,41.106293,50.02195,9.9072174e-11 981,128.66298,236.34532,31.341827,78.79698,0.13783586 981,531.1455,228.03328,44.055115,112.47246,0.049748465 981,431.52536,223.9255,35.707947,71.63101,0.01805945 981,274.69852,240.87282,24.231598,46.471664,0.0121778315 981,619.7276,213.44485,19.419067,55.456604,0.008545725 981,3.9105875,235.57373,59.128685,143.6134,0.0072892136 981,348.66025,244.87526,27.328766,58.54512,0.0064020436 981,1.0988795,262.58017,22.57506,95.37393,0.0025002446 981,535.66425,218.09886,26.180481,47.610092,0.0016560804 981,557.65674,271.99265,20.334656,45.309204,0.0014394895 981,14.254804,219.04248,35.397514,78.30365,0.0010451248 981,585.908,256.32764,52.572876,229.48166,0.0006917371 981,609.69666,198.97913,29.450012,135.07709,0.0005655588 981,611.57294,367.97775,27.57373,134.69861,0.00037540199 981,1.3459473,220.07831,19.162086,80.39606,0.00024620103 981,617.04834,327.6508,22.098328,92.38962,0.00020285706 981,261.94168,231.9585,39.39081,142.49957,0.00010945916 981,429.95227,218.66454,72.28085,138.92775,8.492752e-05 981,334.97354,211.55579,55.09723,116.71512,7.642628e-05 981,460.95428,270.04587,23.780823,48.568085,6.957915e-05 981,4.2095346,314.58102,56.763905,173.67892,5.734342e-05 981,28.655605,303.21942,27.291298,55.081696,4.7398622e-05 981,1.2274691,324.608,18.158382,76.52484,3.766438e-05 981,1.1030135,381.53476,18.519796,120.15103,3.0911928e-05 981,518.991,208.01279,115.39032,197.68204,1.8076671e-05 981,228.22673,210.70543,113.24312,226.51537,1.7590397e-05 981,445.83112,277.78207,18.999573,45.409485,1.5691245e-05 981,1.8439088,107.00004,31.085897,198.1607,1.5679188e-05 981,598.42633,10.15902,40.720337,73.38345,1.0004886e-05 981,112.49511,211.43623,75.880684,160.74,9.192353e-06 981,3.0896924,427.46054,51.796627,70.74667,6.599167e-06 981,137.29384,37.198742,35.56781,90.74213,2.2824554e-07 981,3.0830762,20.058718,56.437565,116.043625,3.9787086e-08 981,1.6274635,19.22151,15.885535,126.88742,3.5922156e-08 981,148.12471,3.059315,45.345993,51.633804,4.0283693e-10 981,120.82727,3.6317627,44.7155,50.818108,1.3106968e-10 981,13.797375,6.588988,41.13324,53.237698,4.316337e-11 981,46.23213,4.489437,41.36591,47.646027,2.9652485e-11 982,461.87912,213.62605,35.68689,95.41792,0.009835324 982,2.2184074,74.401215,25.793577,78.83838,0.0015099614 982,371.9712,222.55048,25.393158,48.64502,0.0013464728 982,455.09198,259.42203,27.530579,62.8432,0.0011789792 982,617.69574,206.665,21.450928,72.64781,0.0009928719 982,8.525851,299.82428,27.407814,67.48682,0.00056724396 982,362.6135,219.01677,39.76059,126.05287,0.00055639347 982,1.0490259,216.7253,13.233143,46.778122,0.0003982949 982,611.3268,339.2146,27.819885,135.61078,0.00037581817 982,2.5133188,250.31235,47.86964,144.72287,0.00022902549 982,608.4357,434.63092,30.710938,69.29611,0.00017179128 982,600.4258,142.46454,38.59973,168.00677,0.00015455653 982,232.12117,233.50107,32.697067,69.52948,0.0001482474 982,132.09132,117.022766,41.534653,87.949005,0.00014659952 982,603.9871,237.10672,35.159546,162.59921,0.00013705391 982,45.704643,122.298935,24.501724,51.8385,0.00012901153 982,1.4331201,93.48494,17.122658,136.63449,6.1929386e-05 982,1.2656275,288.31522,19.30576,153.9213,4.767812e-05 982,1.4118954,187.27155,20.838215,145.85617,4.326891e-05 982,276.47977,457.90433,39.885956,47.658173,4.1470747e-05 982,205.81708,215.71933,79.002594,168.8114,2.3905304e-05 982,325.87332,216.61287,115.20709,207.52507,2.2251275e-05 982,1.3617269,406.68793,17.864042,75.464905,2.2217855e-05 982,449.89194,175.39188,77.67142,162.02975,1.6991573e-05 982,4.931227,342.8251,76.949005,145.8772,1.1675909e-05 982,250.33168,457.82846,44.153976,46.205444,1.0468204e-05 982,598.587,10.341514,40.559692,72.846405,9.695846e-06 982,554.7668,427.376,78.38519,71.41431,7.351351e-06 982,286.25937,431.86914,75.662476,69.4913,6.821073e-06 982,2.2358952,441.88016,41.10034,60.82434,5.889899e-06 982,227.11696,446.5305,46.08699,57.128113,4.3048703e-06 982,204.65611,398.53342,109.371445,103.619415,2.8357017e-06 982,181.00682,429.80872,73.374664,71.71719,2.4166798e-06 982,18.521759,429.2501,76.84352,70.0806,1.3601694e-06 982,4.7407165,30.19211,78.26357,134.59695,2.0245324e-07 982,1.1850249,11.57166,12.993119,96.994286,1.380424e-07 982,2.5952947,10.810062,50.726437,71.43956,2.2793816e-09 982,120.14653,3.9868019,45.76935,50.922688,6.1934224e-10 982,168.98355,3.42,41.949738,47.08863,5.5378724e-10 982,94.54087,2.8512793,44.95861,57.271416,1.3072914e-10 983,607.6161,204.5356,31.27771,65.372604,0.0017718938 983,616.0181,228.32048,23.12854,93.389786,0.000573004 983,611.5407,320.91928,27.605957,144.40137,0.00017523768 983,402.7185,433.53955,79.24823,68.04385,8.245898e-05 983,608.59094,436.7497,30.555725,69.246826,7.6298034e-05 983,150.00456,58.174404,34.671646,80.371994,6.7777175e-05 983,588.2574,211.08504,50.304077,238.97694,6.3220126e-05 983,210.54092,200.69904,26.82872,53.567825,5.29069e-05 983,431.29587,327.8705,75.2128,161.36517,4.2951684e-05 983,570.4933,361.24835,67.69415,130.15665,4.2575182e-05 983,195.73692,430.2021,76.79219,69.27542,2.8831013e-05 983,0.9267139,233.94553,20.658524,109.7269,2.766318e-05 983,0.9505762,211.3007,18.19841,65.521255,2.0139809e-05 983,1.3445866,308.5686,18.229616,137.87885,1.3578021e-05 983,604.939,6.656784,34.20764,163.69843,1.2085505e-05 983,3.7983122,278.13113,56.1245,197.01071,9.312691e-06 983,1.9224805,144.62259,33.20656,176.30634,7.942795e-06 983,134.92035,396.07974,119.83794,96.90497,6.692639e-06 983,250.08246,430.48053,71.54266,67.69885,5.797169e-06 983,492.50854,176.63359,65.549866,105.34828,5.735228e-06 983,1.7714437,382.9622,29.74094,109.46542,5.298597e-06 983,515.699,427.9336,76.552795,73.37631,4.867592e-06 983,5.8495574,397.03906,84.37201,92.43408,4.426063e-06 983,1.3347421,98.11513,13.784561,131.6734,4.291041e-06 983,450.5735,428.68286,72.538025,75.52768,3.0310737e-06 983,71.0485,428.068,71.904915,71.74661,2.009763e-06 983,475.3246,126.553856,135.42792,222.96713,1.4065911e-06 983,113.41482,429.53342,70.85546,69.01102,1.2018711e-06 983,2.5135849,25.52429,27.816912,140.47266,2.7970347e-07 983,131.17433,7.4886394,82.11365,215.8577,6.2374816e-08 983,1.4552848,10.274356,11.910336,93.10308,2.833309e-08 983,3.2397218,11.107415,52.04759,75.422104,8.110974e-09 983,1.721036,2.169847,19.986855,47.627533,6.458124e-10 983,133.80803,3.9684653,47.556976,53.844807,4.973158e-10 983,89.14939,1.489886,42.735588,60.001083,3.3747255e-10 983,168.61708,1.6403255,43.898026,56.68815,2.787242e-10 983,45.621387,2.9164226,42.33044,49.905888,2.3149562e-11 984,7.725128,217.91525,25.69843,49.669617,0.2987491 984,317.95914,216.18198,23.334381,50.602417,0.04084533 984,149.11684,209.82494,23.709991,46.98375,0.002717164 984,46.0575,200.685,34.272633,63.80307,0.00076329923 984,610.5507,155.34497,28.595947,116.79581,0.0006227987 984,622.0695,232.931,17.077148,55.385864,0.0004661196 984,611.8863,352.8269,27.260376,149.40259,0.00039978928 984,1.8057667,176.93076,19.541822,115.57736,0.0003887702 984,435.9031,218.36801,27.243713,45.760254,0.00021984334 984,611.88794,238.859,27.258728,151.57951,0.00011046442 984,572.8347,428.5762,65.7616,73.00589,7.999885e-05 984,1.1751473,386.0636,18.534237,74.17911,6.181745e-05 984,2.226631,198.84969,33.494926,171.1368,4.705004e-05 984,1.9698194,86.265625,29.445246,169.53368,4.0318984e-05 984,572.1748,106.81808,66.68158,227.7013,3.3591146e-05 984,1.1629696,338.4318,18.418945,80.40381,2.7844004e-05 984,3.4680893,340.76935,58.25545,146.86844,2.3596625e-05 984,1.1199585,113.32654,18.499851,77.7025,1.4870019e-05 984,2.0505698,419.5129,34.59664,79.967926,1.2269727e-05 984,0.60141194,269.28784,18.56757,78.92557,1.10633355e-05 984,598.37445,10.165593,40.772217,72.079445,9.7113925e-06 984,126.37456,183.0803,76.15219,151.34929,5.6087015e-06 984,502.37778,397.24567,126.62906,104.33435,4.0899577e-06 984,420.19992,429.56287,73.48703,75.571014,2.5199279e-06 984,25.273123,433.26218,77.34999,68.25528,1.7485387e-06 984,232.67186,34.157112,35.225296,94.51322,1.3212767e-06 984,481.7784,428.92523,73.736115,75.528015,7.435096e-07 984,4.1166506,30.417768,75.81551,133.61098,7.205284e-07 984,1.1189071,30.02306,14.881488,120.0349,1.1155117e-07 984,2.3431137,8.640885,52.28263,74.47288,5.1908646e-09 984,177.25433,2.9126482,62.091187,50.752678,3.1068932e-09 984,222.46243,3.486901,47.5011,54.13189,1.1887669e-09 984,123.00519,5.3696437,40.95195,50.578014,4.9444426e-10 984,82.86609,4.5436444,39.079567,54.16031,6.462211e-11 985,2.0248487,193.42183,33.390472,76.86534,0.0016721567 985,0.84363693,190.46303,11.092787,45.529602,0.0014410333 985,611.7284,338.38385,27.418274,143.44818,0.000490056 985,572.97504,216.80716,25.64209,49.089874,0.00033924848 985,608.8115,440.375,30.335144,64.93506,0.00022327852 985,617.8249,230.75629,21.321777,83.98703,0.00020700684 985,203.91638,195.09605,26.06604,46.548203,0.00016187978 985,3.3902328,107.27469,44.63238,199.07635,0.00015551194 985,587.04675,203.99559,51.71875,240.89946,0.00010773193 985,612.8181,130.50214,26.328552,132.43628,8.217989e-05 985,1.5576408,133.77966,20.069567,98.88472,6.92837e-05 985,1.2013111,377.31287,18.314875,77.15292,6.856415e-05 985,20.597914,220.58626,40.82209,89.333206,5.5592078e-05 985,3.353112,284.1472,58.145042,199.17627,5.1656873e-05 985,32.12327,136.37555,39.37847,88.7657,4.0737803e-05 985,609.8964,5.1229672,29.250244,52.79398,3.2972675e-05 985,0.971521,298.1143,20.393635,117.48895,2.7464032e-05 985,1.532507,57.86105,12.996084,48.627148,2.7363638e-05 985,1.3090186,222.3112,18.055923,77.46913,1.6263368e-05 985,1.0689161,422.26303,16.040129,79.08948,1.3504953e-05 985,605.382,5.497357,33.76465,195.81108,8.838632e-06 985,1.7169759,83.527176,19.016333,80.39166,7.384996e-06 985,8.619377,52.121246,35.240177,75.61779,5.9736203e-06 985,3.4542725,431.2439,52.798462,68.49451,4.280161e-06 985,454.2928,433.60883,72.33331,66.75958,2.4380647e-06 985,26.766638,435.2103,75.90632,66.49582,1.2970562e-06 985,202.23099,431.2688,71.41589,68.98709,1.0625467e-06 985,1.4419996,13.38778,14.605928,70.572716,3.169262e-07 985,3.5651855,19.326237,82.430504,158.21983,1.216228e-07 985,2.9866114,11.596836,50.607094,70.67384,3.6343653e-08 985,378.31363,6.7578616,90.71283,74.47803,1.8349473e-09 985,364.42902,2.7498357,44.806915,46.025406,7.8117374e-10 985,313.07413,6.108008,40.582184,46.946922,2.3199433e-10 985,285.92194,7.228019,42.09839,49.727066,1.2279835e-10 985,253.75238,4.839305,39.179565,54.665703,5.5723152e-11 985,45.11567,0.0,45.080208,63.23116,5.8434212e-12 986,328.59317,228.06194,30.049011,49.95598,99.37742 986,277.533,225.3905,36.33185,55.917877,98.18732 986,370.36362,228.22836,26.304718,51.603912,94.881004 986,193.26768,211.27583,30.23941,53.698685,0.82498586 986,602.48804,132.37459,35.328247,69.32956,0.026634911 986,622.4882,43.31337,16.658447,56.70568,0.0007025539 986,616.80927,214.52435,22.337402,82.18317,0.0006151104 986,585.8652,245.01738,52.95282,237.54393,0.00027749102 986,610.75854,359.29382,28.388123,141.25577,0.0002597127 986,313.85703,196.73796,71.60443,105.07887,0.0002375142 986,616.6299,78.58092,22.516785,88.23331,0.00018275369 986,586.5578,51.105312,50.89984,218.46094,0.00016616256 986,1.5431942,214.35439,17.94263,72.93187,0.00015275486 986,600.1088,156.5436,39.024353,191.5518,9.523973e-05 986,597.99664,12.593971,40.505554,115.427345,7.518581e-05 986,2.4249935,176.81091,33.107574,159.9531,4.097482e-05 986,95.29798,86.91331,86.43307,196.74411,4.0375126e-05 986,1.1190292,413.34662,17.935863,72.024994,4.0245843e-05 986,0.8847054,320.10312,19.539537,143.38232,3.1917094e-05 986,1.0548311,244.42073,16.557888,141.52354,2.256593e-05 986,255.12303,175.12389,98.32478,210.72585,2.2056984e-05 986,3.4892302,240.7801,56.88996,227.89674,1.3572907e-05 986,347.63385,182.06053,79.932495,163.42354,1.0403395e-05 986,3.5013576,399.50668,56.51852,95.16562,7.7072955e-06 986,1.3849154,99.538124,19.43922,149.85666,7.2529397e-06 986,4.0235367,79.19278,57.23059,226.26312,9.482862e-07 986,584.4575,7.6230307,46.191833,48.760525,2.4085656e-07 986,1.2779167,35.4395,17.083815,131.67995,1.685559e-08 986,2.6432617,24.564734,55.076794,98.73433,8.29123e-09 986,560.7772,5.539645,42.088745,51.163284,8.963921e-11 986,1.873527,4.9582715,28.907099,65.037766,5.78368e-11 986,477.90204,6.9923763,42.35956,51.04078,3.6156618e-12 987,582.6443,222.87573,36.791687,56.28296,99.86953 987,527.977,224.17897,35.46289,59.959335,99.52538 987,306.86484,211.23817,32.490143,46.92305,96.779465 987,449.82568,218.32487,34.39798,60.567276,34.34312 987,423.03024,203.4745,26.59137,48.625366,1.7455115 987,151.64731,210.36958,28.067917,47.225906,1.3701994 987,436.93277,210.52965,24.971344,53.529465,0.027836092 987,97.60297,224.0929,35.963608,68.686646,0.004020212 987,583.30676,200.253,54.593384,236.99544,0.00044623358 987,484.9702,137.18153,36.65442,88.70366,0.00039060382 987,615.6747,219.95644,22.881714,67.71706,0.00036782172 987,610.7323,377.34247,28.414368,123.12161,0.00021822966 987,510.4638,190.67395,75.849304,146.35892,0.00010406625 987,600.8202,145.24219,37.237732,174.78796,9.031608e-05 987,1.4722583,193.21971,19.850224,122.69884,8.416941e-05 987,412.9511,138.99092,145.2232,226.14201,3.2981232e-05 987,2.2408764,222.1963,32.823017,174.37401,2.2205062e-05 987,403.29294,111.17169,35.119995,75.43718,1.4899944e-05 987,1.1066178,381.75677,19.264528,113.61984,1.3826982e-05 987,611.13605,31.879251,28.01062,133.9758,8.930461e-06 987,0.9158537,305.30655,20.976786,111.55151,8.239987e-06 987,4.270189,111.380486,56.7573,224.35394,6.6092193e-06 987,329.4947,80.2138,79.06079,184.42746,6.5992926e-06 987,284.27002,148.89975,94.12259,220.93744,5.0458793e-06 987,3.7850327,397.35315,56.65757,96.252655,4.6104687e-06 987,1.4110571,73.61778,18.309475,158.84868,3.3931528e-06 987,611.8332,1.593711,27.313477,61.17147,1.153652e-06 987,1.3631738,12.263434,14.685594,75.95637,5.287388e-07 987,2.7794142,15.605957,58.62677,110.36675,3.081049e-07 987,281.46033,6.4726124,40.364685,52.75863,1.4249818e-08 987,2.0446925,5.0233808,38.826923,52.83202,1.3754718e-08 987,306.83417,5.695765,41.47458,56.145206,3.0809868e-09 987,128.05202,6.7542777,44.094666,49.42329,1.5015246e-09 987,474.57532,6.363944,47.115845,55.121292,6.736374e-10 988,504.3322,203.41772,33.74005,50.59337,99.488754 988,361.39716,209.45021,27.934357,50.404312,4.2012396 988,620.71765,199.73946,18.429016,56.461533,0.017567337 988,462.59497,202.34996,22.174927,45.602356,0.008671007 988,584.92706,14.490762,53.229248,122.03237,0.0010476476 988,610.56805,155.20892,28.578613,127.552734,0.00052333693 988,489.33752,175.16263,60.515137,97.68594,0.00034632706 988,80.83087,212.86656,23.217674,46.36827,0.00030014 988,260.13715,147.94351,36.6481,69.617645,0.00027270213 988,611.02814,348.09344,28.11853,134.3399,0.00020113928 988,615.9142,90.59439,23.232483,98.23311,0.00016935775 988,608.5863,438.47424,30.560364,64.88785,0.0001394282 988,0.23041993,417.93817,38.636208,79.184326,0.00011045578 988,617.84784,243.13272,21.298828,81.97363,0.00010067823 988,617.68176,301.29575,21.464905,78.72891,9.6164455e-05 988,576.398,65.94437,44.715027,138.66316,5.8999678e-05 988,3.073545,362.02408,81.86866,129.5141,4.5308723e-05 988,604.6956,7.873594,34.2511,57.838886,4.4951546e-05 988,587.6937,176.94672,51.377502,240.97714,3.6306974e-05 988,551.39764,0.0,87.479004,265.10623,2.6182428e-05 988,0.7683374,219.16637,18.955402,135.41853,2.179677e-05 988,0.9558187,320.7419,20.18842,141.46606,1.886292e-05 988,1.2182666,135.56627,17.236246,129.83363,1.7459668e-05 988,3.2947934,195.45418,58.042793,235.3351,1.2834171e-05 988,462.25693,121.114586,153.88754,236.8812,7.688531e-06 988,113.23055,393.61823,117.10262,99.00079,4.0625287e-06 988,427.12817,423.81158,72.73282,72.7041,1.7159131e-06 988,372.14423,423.70923,73.46692,73.96219,1.475628e-06 988,138.12135,437.00323,42.18402,62.778534,1.4131659e-06 988,165.29958,441.85736,41.736115,57.09488,1.3280886e-06 988,189.4865,393.90094,110.56801,99.69006,1.3103146e-06 988,77.93186,420.32312,73.02143,75.03522,1.282855e-06 988,184.58821,4.028799,41.08734,54.14762,5.4446225e-08 988,225.68967,6.763036,42.174805,51.333725,5.3026156e-08 988,252.54602,6.421359,43.185272,50.647312,1.602755e-08 988,1.4475554,8.622266,33.365486,73.013855,1.1322352e-08 988,332.13828,6.834621,44.847534,52.05986,1.13069865e-08 988,306.98468,6.4320445,44.382874,52.5454,5.184285e-09 988,103.35171,2.199484,41.37275,55.758484,3.0536658e-09 988,279.22934,4.0998716,43.50708,51.533474,1.6005061e-09 989,598.7438,202.70702,27.131165,58.15245,24.378654 989,215.61101,205.6994,22.608536,47.66255,0.05918287 989,548.2052,191.81642,22.391602,45.386444,0.047527608 989,615.25397,198.65178,22.296143,57.828903,0.02827966 989,580.1269,154.23466,55.951843,118.56908,0.0032721858 989,2.0019727,215.2859,37.682083,166.50822,0.0015304202 989,616.09827,126.88042,23.0484,100.274124,0.00041020667 989,611.99384,380.63785,27.152832,121.38153,0.00020773736 989,616.70026,335.327,22.446411,84.19299,0.000103366554 989,584.0276,215.61288,54.755432,267.14697,9.576014e-05 989,1.697487,139.64435,19.286905,144.32736,7.1264985e-05 989,617.5899,255.45473,21.556763,83.191574,6.244439e-05 989,1.2145394,271.44257,19.5145,160.8653,5.394673e-05 989,599.4551,17.291393,39.69159,230.2236,4.711034e-05 989,3.0815446,316.31345,57.972084,172.75522,1.0125175e-05 989,0.9527759,379.153,19.25927,119.95001,9.2510645e-06 989,337.6171,132.04839,98.94968,210.65611,8.350535e-06 989,1.3674675,107.5575,19.381708,82.31196,8.038569e-06 989,399.53888,31.74063,27.254791,51.75988,4.534361e-06 989,3.294035,432.2382,53.859154,68.21188,3.7875452e-06 989,502.2137,425.35248,79.486786,74.1655,1.299587e-06 989,3.3645852,72.1221,60.39247,247.19391,6.41311e-07 989,375.39365,6.9215007,43.96454,50.628616,1.6824764e-07 989,1.9093946,38.883408,31.29735,179.93538,3.1712442e-08 989,401.78073,7.139862,42.983124,48.313232,2.4816337e-08 989,339.97406,4.3397217,44.492004,51.324276,1.619994e-08 989,538.2715,6.2972984,41.12677,46.18601,1.3884878e-08 989,299.43045,2.0133057,44.406586,52.870125,3.4801921e-09 989,566.9353,6.2588496,41.46411,46.229443,3.1953342e-09 989,2.239209,12.127529,31.881725,77.410736,1.4790937e-10 990,564.01697,203.19559,28.114807,45.384964,68.0576 990,59.22888,217.75862,24.713226,49.083206,0.003959733 990,619.46173,121.5528,19.684937,58.05993,0.0007570372 990,621.75525,87.553856,17.391418,57.016563,0.00046614144 990,610.38416,76.57007,28.762512,138.43188,0.00042492207 990,621.38586,344.52686,17.760803,55.82669,0.00035278845 990,618.38416,194.78748,20.762512,75.53894,0.00021953954 990,608.6643,438.70694,30.48236,66.64896,9.3798764e-05 990,611.6259,333.8301,27.520752,140.67511,8.295146e-05 990,617.78033,250.03142,21.366333,82.48509,6.825914e-05 990,602.3149,195.70496,36.831787,184.45377,5.0551756e-05 990,1.4485865,246.65735,18.122223,74.37564,2.7558483e-05 990,0.8051628,373.67252,19.82891,124.6539,2.2692997e-05 990,4.225669,263.8221,57.41766,216.1903,1.8006747e-05 990,542.15576,144.19221,92.70044,179.9673,1.487287e-05 990,430.7097,160.6747,80.70001,159.99245,1.3561173e-05 990,1.6271249,303.81046,26.764242,139.93372,1.107142e-05 990,2.6448576,192.51733,32.30705,160.25668,8.909365e-06 990,3.202072,72.97085,58.357643,262.83478,4.4393278e-06 990,1.289511,127.03677,17.148537,141.2063,4.113538e-06 990,586.2357,13.508249,52.75,118.528206,3.5779005e-06 990,456.64526,121.06668,129.26562,200.3652,2.8724683e-06 990,3.118369,431.03104,53.984257,68.87787,2.4477004e-06 990,1.1052897,109.46417,17.9359,63.608124,1.5621957e-06 990,1.3960563,7.9566603,36.280273,126.04389,8.6733415e-08 990,518.74744,8.981237,44.46747,45.371788,7.644976e-08 990,347.82104,3.8317628,39.161316,53.399147,1.0312019e-10 990,1.3622713,0.0,22.030472,49.339684,5.3103397e-11 991,553.8768,206.08727,26.172607,54.578354,99.872345 991,538.8415,209.24908,21.366821,48.536957,98.32782 991,590.1138,209.27757,20.744568,46.852707,95.04246 991,576.5688,207.86005,18.204407,47.198105,76.93643 991,604.22534,204.9688,21.481262,51.37111,0.18850091 991,614.83813,185.25172,21.975769,58.73471,0.115374036 991,602.138,123.19172,35.99402,165.20825,0.0022446758 991,577.17163,190.06271,48.636597,88.44736,0.0014766697 991,535.0121,190.32935,65.25818,93.91263,0.00048702108 991,462.00412,192.56882,40.09085,90.431885,0.0003939893 991,1.3621575,217.9257,18.045527,73.19057,0.00022351797 991,611.87933,350.08557,27.267334,107.109436,0.00019429774 991,612.43134,223.40437,26.715332,154.92982,7.2830066e-05 991,1.5653435,58.344788,20.968103,93.01021,6.6838045e-05 991,505.55157,151.32436,131.41644,194.51949,4.2260337e-05 991,585.819,395.78284,53.094727,98.39343,4.078313e-05 991,600.9865,14.153933,38.160156,117.331955,4.0650368e-05 991,2.1058896,158.70566,29.081402,148.42249,3.275673e-05 991,616.11145,103.376144,23.035217,95.57004,2.9433992e-05 991,463.48178,157.71257,89.030304,212.68651,2.9032262e-05 991,4.381519,342.6199,56.97273,145.21448,2.0131629e-05 991,1.1022241,268.7425,18.149414,129.46991,1.853838e-05 991,1.1630518,339.8946,18.204977,132.6312,1.5438005e-05 991,0.6831429,3.600599,46.71607,134.25331,1.4377689e-05 991,434.0316,421.60968,85.13913,77.051544,9.312087e-06 991,2.1038427,420.18295,35.3032,79.81372,2.926576e-06 991,1.1119418,7.219424,15.359922,88.74209,2.0634204e-06 991,2.233483,1.8176563,90.133,247.2514,1.8695634e-07 991,422.57104,35.048626,35.487,85.31821,1.6422233e-07 991,463.69794,5.1817093,44.352173,46.29588,3.152944e-09 991,395.3867,2.1267157,62.723724,56.80428,2.5185007e-10 991,13.206553,0.0,48.214165,50.725117,1.6881281e-10 992,516.6224,206.44817,24.585388,49.16043,99.93319 992,545.6916,205.0695,23.662048,53.93727,99.85966 992,611.845,195.1269,25.099976,69.402176,88.35187 992,12.257614,212.09172,36.40043,68.244064,0.013704694 992,604.33954,173.66362,34.76941,173.75044,0.0035046542 992,1.503698,221.02539,18.482319,70.72711,0.0006175096 992,608.2549,439.81757,30.891785,61.917755,0.00043391247 992,527.82684,191.82533,60.96704,90.98384,0.00028098724 992,571.5055,367.75192,66.48041,125.604126,0.00010982157 992,612.1171,325.38,27.029541,132.99963,0.000107254644 992,616.39264,83.40011,22.754028,83.226585,0.000101447724 992,584.3607,0.0,54.78595,284.6756,8.19802e-05 992,2.4457505,186.18279,35.218266,150.63359,7.220033e-05 992,495.8601,143.57355,134.78491,232.33447,5.067165e-05 992,1.014659,365.6545,18.898172,133.7251,1.645586e-05 992,1.0461751,264.5339,18.51542,133.99075,1.5483816e-05 992,451.68787,157.22972,97.65137,198.31224,1.4070035e-05 992,540.8912,442.34882,45.53186,57.15738,1.2124052e-05 992,597.1524,11.412204,41.367615,81.5545,1.1409855e-05 992,4.692445,235.31691,55.78545,215.99504,9.445841e-06 992,3.2560043,398.21768,56.378574,97.986755,7.937994e-06 992,568.10187,441.2107,47.195923,59.795197,6.9543867e-06 992,1.7550912,13.214577,66.44089,120.362404,6.884334e-06 992,481.905,427.77747,77.9003,71.96301,3.970608e-06 992,3.5155404,61.48538,60.42425,266.8489,3.8049666e-06 992,1.0198991,12.991038,21.603695,104.3432,4.3883009e-07 992,403.19672,1.466211,76.46271,79.75354,1.0226362e-07 992,490.71017,4.6359377,45.268646,55.423492,6.9948713e-09 992,462.35773,5.254253,45.728912,53.93868,5.7355916e-09 992,434.23965,0.0,37.2955,47.914215,4.377312e-09 993,591.5685,212.49846,32.232544,57.311844,99.866905 993,531.38184,209.43384,22.696777,47.117645,99.64489 993,504.146,203.74019,19.869385,45.05078,80.89835 993,502.69058,176.48782,35.941498,92.29663,0.08419677 993,17.783659,198.5697,39.077576,65.82074,0.003604927 993,45.244827,207.83397,24.550003,50.1855,0.0035412065 993,482.93262,204.85818,25.286194,46.902206,0.0015832158 993,612.3886,157.07394,26.173462,117.33154,0.0015664076 993,575.54474,178.1495,60.565002,142.49661,0.0013149285 993,520.0819,191.04018,42.358154,90.4131,0.0006540774 993,293.00253,206.94841,34.70868,71.72432,0.0004223244 993,612.06573,216.21927,27.080933,143.27048,0.00040352705 993,622.1972,109.081345,16.949463,52.05864,0.00029825108 993,2.0429168,192.70149,18.147133,135.29243,0.00028324316 993,611.7078,338.47354,27.438843,141.62756,0.0001044108 993,610.5829,12.298344,28.563782,102.66345,9.4267234e-05 993,609.31055,441.35886,29.83612,64.77591,7.377287e-05 993,617.57697,300.21338,21.569702,81.52768,7.085336e-05 993,1.596543,11.910326,66.46394,126.1331,5.6347242e-05 993,4.243013,149.3975,59.403957,202.68404,2.9588107e-05 993,1.5217757,321.537,28.31558,157.27344,1.914806e-05 993,505.24292,163.79382,88.06561,181.22525,1.4416642e-05 993,585.33594,1.1188412,53.044678,259.17917,1.255047e-05 993,5.341192,358.63278,79.68961,132.02255,8.94652e-06 993,1.1287614,422.571,16.640358,79.96008,4.9439814e-06 993,1.3554273,79.75141,17.155394,164.00558,4.3432706e-06 993,3.575957,428.73755,53.286297,71.00534,1.913615e-06 993,410.25885,2.4854622,77.75073,72.24136,5.607155e-08 993,0.9909554,10.68863,12.759178,87.47878,2.3995861e-08 993,1.8246549,6.4735026,33.88653,64.36754,1.4980923e-08 993,453.58188,7.7464733,43.93994,49.93737,5.0752796e-10 993,24.599735,0.40227214,43.12251,60.125465,7.091393e-12 994,577.3161,213.42693,23.163818,47.053482,99.11138 994,591.001,215.02455,22.15979,45.88301,98.874794 994,610.6573,214.98392,19.9516,47.215027,0.0964634 994,584.2134,149.51524,52.72876,185.81123,0.006763397 994,617.98914,219.46394,21.157532,97.86046,0.0066768136 994,559.4884,212.2921,21.698181,46.41487,0.0020362758 994,565.7556,197.48514,47.494995,85.537445,0.0016877771 994,621.8692,109.39429,17.277466,55.9628,0.0015740325 994,274.30054,212.86888,21.623047,50.20143,0.00096022716 994,100.0285,201.81839,25.100716,47.04953,0.00080033427 994,610.1456,95.061005,29.001038,173.7644,0.00071011303 994,346.83984,214.40482,22.953522,49.29663,0.0003434668 994,1.4000618,11.746641,68.39273,139.88722,0.00028859227 994,620.076,160.13747,19.070679,64.76811,0.00025568967 994,615.5467,12.472161,23.599976,76.38437,0.00020605905 994,608.15784,437.00885,30.98883,69.926636,0.00017602189 994,616.4522,279.25137,22.694458,89.42102,0.000107116735 994,0.85340494,208.3689,18.569944,76.39862,7.462276e-05 994,600.23456,255.70099,38.91211,198.51657,5.1378003e-05 994,539.6804,146.62984,38.149048,83.9639,2.7675e-05 994,567.5539,345.54294,69.35443,142.25613,1.8146766e-05 994,1.1072795,406.786,18.238525,74.694,1.0128575e-05 994,1.3476311,104.22982,18.319403,145.55994,9.098821e-06 994,581.2437,435.47586,44.084717,67.755554,7.871339e-06 994,599.9743,9.368002,39.172363,166.7039,7.476039e-06 994,0.7267171,256.66623,18.825895,135.2858,5.325619e-06 994,2.253327,177.67114,33.76463,165.52502,5.1681213e-06 994,3.561662,249.59746,57.556038,226.25462,5.086813e-06 994,540.1591,417.53107,73.608765,79.24249,4.2960037e-06 994,1.7908187,358.64145,33.09876,137.34946,2.9922485e-06 994,1.8175716,11.865361,22.678877,106.29831,1.1529063e-06 994,469.04898,16.7205,63.353607,119.87393,2.3017877e-07 994,480.48105,7.4954085,46.983734,54.453762,1.0426384e-08 994,545.551,8.713249,43.97052,45.217903,7.985377e-09 994,456.99454,5.412183,44.72177,51.99625,6.1508854e-11 994,433.7387,3.173174,39.305878,55.969498,5.044642e-12 995,289.16357,212.98152,23.737305,51.346848,0.0049481406 995,610.521,314.1449,24.562927,60.06015,0.0030394155 995,624.4218,232.86597,14.7248535,47.520203,0.0019662196 995,604.4732,222.98233,34.673462,70.825714,0.001482281 995,510.35742,202.4604,40.715637,105.76784,0.0011652727 995,581.12585,374.0961,56.52643,122.936615,0.001092458 995,443.14807,252.40617,22.42273,45.15297,0.0010615385 995,553.76086,180.88075,29.462646,56.91472,0.0010212323 995,611.7505,127.50128,27.39618,142.8386,0.0009577443 995,475.73297,213.62224,40.629333,102.728836,0.0005422519 995,565.23254,162.28624,36.286682,80.270584,0.00047422454 995,587.1833,141.85973,50.08789,226.74925,0.0003420814 995,617.5697,61.161068,21.576965,77.02916,0.00019622732 995,251.98747,213.50203,20.60469,45.842728,0.0001891485 995,470.5664,243.22256,26.169952,53.36075,0.000130103 995,599.93,269.12262,38.82898,192.21286,0.000112238966 995,442.59558,199.10532,38.83551,106.75833,9.411686e-05 995,608.7749,441.25455,30.371765,66.349365,5.737252e-05 995,0.8400985,208.28899,18.395142,77.11287,3.5965662e-05 995,598.8397,85.09147,24.722961,50.36738,2.319347e-05 995,599.15216,28.519056,39.960205,177.09702,2.1969901e-05 995,1.6833553,125.4068,18.311106,127.588486,1.8199e-05 995,1.0037338,342.0428,19.532314,135.80347,1.4345598e-05 995,390.65002,233.05894,80.73505,204.76689,9.093285e-06 995,0.8438224,241.11372,18.64936,138.58385,6.7143746e-06 995,3.6083872,342.71005,58.391705,145.57346,6.2184577e-06 995,409.03287,379.4327,110.3356,115.515625,4.065893e-06 995,2.0612867,173.87291,32.820206,167.41081,3.1455602e-06 995,1.1597615,443.50507,21.61724,60.405945,2.8839747e-06 995,602.17126,10.309453,36.975403,56.31345,2.8445588e-06 995,438.63742,438.65454,41.2175,64.416504,8.1232747e-07 995,504.197,9.403343,45.735443,49.933414,2.565854e-09 995,474.356,7.177953,45.540436,56.404125,9.202896e-10 995,538.08356,6.23702,41.485596,48.22849,8.3055335e-10 995,2.978405,15.514825,56.323048,119.76223,3.9442047e-10 995,449.4348,5.913771,46.94571,52.234146,1.2054639e-10 995,1.2301791,20.277409,14.754377,130.1846,1.02579556e-10 995,1.4973747,2.2110872,35.433796,49.173214,1.6158163e-11 995,425.97754,1.9055958,40.831116,55.787453,4.092646e-12 996,308.49084,234.36497,35.898315,71.260605,0.019875456 996,606.63983,185.88795,31.654907,68.431656,0.005393656 996,565.98755,189.17517,24.583008,53.448822,0.002204021 996,443.41522,208.48138,23.887177,51.00122,0.0009300669 996,514.4812,193.2474,48.057373,82.71628,0.00092196534 996,600.37146,61.062588,37.95221,189.98476,0.00043207488 996,422.20236,231.72939,22.68396,46.49211,0.00038802973 996,408.45386,238.18617,23.333038,49.905167,0.00037269059 996,265.12,216.19078,35.871246,107.12196,0.0003393184 996,617.09485,224.93027,22.051819,85.62186,0.00025209074 996,617.3157,86.06596,21.830994,74.37302,0.00025123463 996,289.40463,229.68498,69.1875,145.19838,0.00022098725 996,616.76587,326.7573,22.380798,82.65329,0.00018149271 996,585.3106,250.22542,53.83606,231.57521,0.00016300385 996,612.3234,370.55927,26.823242,131.87637,0.00015971134 996,581.1535,193.19432,20.006775,46.22113,0.00014427894 996,570.64825,119.70938,67.99475,256.1811,0.0001250592 996,0.64591837,216.56813,13.600035,48.48192,9.842879e-05 996,617.0951,272.30258,22.051575,85.66232,5.5563134e-05 996,616.0531,22.98532,23.093567,80.57344,3.141484e-05 996,0.99423665,219.96652,18.481884,140.35278,1.8479812e-05 996,1.1435198,321.82623,18.13191,77.80438,1.2358732e-05 996,502.4013,153.48178,94.33472,159.28058,1.101682e-05 996,567.4219,7.500941,65.87634,50.510902,1.0029074e-05 996,0.93368655,365.44458,18.552376,129.92532,7.692667e-06 996,1.6350521,122.52664,17.440914,133.49356,7.661565e-06 996,3.631675,254.32019,56.48916,211.58862,4.7624044e-06 996,273.42426,234.8011,18.272064,45.192154,2.384569e-06 996,3.1333253,395.78305,56.80104,99.870026,2.375517e-06 996,545.92535,5.742772,47.298767,53.468674,1.5448705e-06 996,2.0103402,67.49465,19.869608,105.33221,6.6890624e-07 996,4.1892724,97.8724,59.41923,215.60855,5.5193004e-07 996,495.1572,9.917238,62.881256,45.876633,5.6639305e-08 996,461.99173,9.746517,42.544495,55.044147,3.2446386e-09 996,2.5853972,11.982142,32.38868,74.25881,7.760488e-10 996,418.8631,6.221265,67.5506,47.835953,6.192498e-11 996,398.31015,1.195752,41.93216,55.43097,3.881378e-12 997,553.04456,206.15411,24.30481,45.439224,98.952034 997,318.39978,209.55788,26.859283,50.493393,0.031819545 997,2.850944,141.77135,39.47627,84.90202,0.0063744956 997,1.321067,155.80728,13.589946,60.621506,0.0041825534 997,583.29266,181.1191,45.190063,75.35277,0.003718749 997,545.35626,190.5821,44.313354,88.667496,0.00226282 997,621.8359,106.453384,17.310791,51.44104,0.001058208 997,609.9847,124.74253,29.161987,137.33588,0.00076848373 997,608.4858,7.1722007,30.660889,135.82089,0.000495503 997,617.6281,202.62862,21.518555,86.37758,0.00042840838 997,464.25604,204.60165,24.703339,48.82689,0.00035289646 997,612.637,351.28476,26.509644,134.38248,0.00019172046 997,574.98816,87.857086,62.683655,225.8479,0.00017788357 997,579.2535,7.0829916,59.088318,46.087917,0.00011294044 997,609.1043,439.88132,30.042358,64.71594,0.00011062814 997,617.2574,271.6323,21.889282,82.70569,8.597402e-05 997,602.06647,184.96404,37.0802,206.74849,5.0098122e-05 997,1.0434513,196.70036,18.254211,81.33263,3.856058e-05 997,3.4398487,126.24042,57.887627,196.32275,1.7686278e-05 997,459.695,186.14594,41.184082,108.90939,1.6446826e-05 997,0.88596517,277.2292,18.458908,73.897675,9.457559e-06 997,1.0365064,330.39648,18.382156,75.116455,7.841819e-06 997,1.13483,385.86264,17.727583,112.717255,4.5685647e-06 997,1.5736654,91.14243,19.353535,85.265495,3.2179566e-06 997,1.6274805,284.9948,32.20731,169.62015,3.091682e-06 997,6.5581965,366.5012,79.342354,125.3743,1.8839579e-06 997,3.540757,434.64355,42.882694,64.71124,1.4623582e-06 997,28.855923,432.92477,73.37819,68.03827,1.2869183e-06 997,495.7469,432.83228,75.619934,69.81134,9.020091e-07 997,537.3145,10.173402,45.135376,48.040924,6.109259e-08 997,3.2734392,24.943874,55.039097,101.1458,6.67272e-09 997,512.2723,11.971415,42.737488,46.13285,3.963059e-09 997,467.3687,9.708245,61.921387,46.21636,3.3069996e-09 997,1.1977556,8.875797,12.426083,71.87782,2.8792326e-09 997,426.85577,7.4694095,45.95758,50.974224,3.5972034e-10 997,2.1864111,2.9693491,36.86752,48.099293,2.8821858e-11 997,403.082,3.524808,42.914215,58.418644,2.0915082e-11 998,276.21585,225.22371,26.267334,52.09578,0.46396875 998,621.5936,219.0242,17.55304,52.649933,0.0014958811 998,1.7337272,132.61435,21.418621,109.2036,0.00045944666 998,605.99524,211.51529,25.349854,49.204468,0.00044939126 998,610.41785,203.43166,28.72882,135.05635,0.00039800294 998,174.01646,225.61162,53.734222,150.98366,0.00014509319 998,602.16895,106.449036,36.977722,178.00522,0.00013905202 998,617.6897,148.9473,21.45697,81.33833,0.00011973085 998,616.5833,296.34915,22.563354,85.993774,0.00010278069 998,609.0567,442.5319,30.089966,63.96353,8.412881e-05 998,586.2027,212.7048,52.94397,241.8988,8.256851e-05 998,0.58078617,215.09871,13.904773,52.154465,6.806582e-05 998,617.4948,56.736954,21.651855,83.65512,6.0997292e-05 998,622.5799,38.486725,16.566772,51.21781,5.2989413e-05 998,604.10156,336.28506,35.045105,156.88876,4.5129113e-05 998,0.93868005,207.25279,19.667109,143.03606,1.4977447e-05 998,607.15375,8.505241,31.99292,52.552418,1.23685895e-05 998,3.5550783,213.95413,57.826645,221.12357,9.724443e-06 998,1.1133643,319.9114,19.365707,133.27115,9.014866e-06 998,0.9872815,263.43192,13.372841,46.52539,8.774284e-06 998,0.9280115,289.55008,13.424267,46.9151,7.695838e-06 998,123.14697,395.77515,104.15465,97.678345,4.6201967e-06 998,1.0420753,399.8183,20.239983,99.83954,3.13252e-06 998,586.60486,18.970411,52.513916,97.396805,1.7992564e-06 998,5.913649,359.20068,78.63566,131.13486,1.4876894e-06 998,3.060845,102.10334,59.43464,198.28766,8.7984455e-07 998,145.31216,445.59485,41.210205,57.216248,7.3614785e-07 998,3.2948568,432.07614,52.799137,68.293976,5.1691535e-07 998,1.4957739,50.657593,19.847685,135.84325,5.347304e-08 998,505.2437,13.006773,40.70044,46.649162,2.8870264e-08 998,581.4111,10.370155,42.564636,46.308975,1.4371033e-08 998,3.2660906,23.957918,55.10492,99.45472,7.4083193e-09 998,524.70465,9.931908,57.907104,45.04752,7.22001e-09 998,1.160188,9.277797,11.6268835,70.555374,3.655017e-09 998,560.6299,11.174226,39.44403,46.107327,3.1127119e-09 998,478.38287,12.150349,41.320312,45.079998,1.9465076e-09 998,450.1689,10.630504,42.02176,46.378605,8.434589e-10 998,423.69473,8.081294,39.928314,49.6878,2.3036639e-10 999,423.31137,208.77469,26.730682,54.967865,0.39639074 999,380.15814,183.1606,26.23172,60.899414,0.003435799 999,357.04782,180.6991,31.747375,71.4644,0.0015470721 999,618.01733,167.78384,21.129333,77.6375,0.00040128166 999,1.9080176,136.10417,21.617775,107.326935,0.00036182025 999,622.6786,54.24633,16.468079,47.04821,0.00023058723 999,362.33984,137.2022,58.136353,132.37004,0.00020027143 999,617.9765,221.0661,21.170166,83.05945,0.00019461189 999,413.36044,155.36516,53.532654,116.74605,0.0001695232 999,611.1867,90.84411,27.95996,132.23224,0.00014606545 999,490.45193,133.32095,23.257294,48.91893,0.00012939794 999,612.5643,368.39642,26.582397,132.30063,0.00010946209 999,617.95874,301.32452,21.187927,80.50226,5.1860137e-05 999,0.64830285,214.92772,14.008266,52.40605,4.7959493e-05 999,603.1477,176.126,35.998962,169.21683,4.2590367e-05 999,239.0008,349.78726,73.002655,146.45386,2.3819783e-05 999,588.23535,278.60193,50.911316,202.26996,2.1384112e-05 999,0.8023641,218.52885,20.837467,115.54625,1.3405493e-05 999,0.94411296,406.21136,18.198072,75.433014,1.1716254e-05 999,3.141958,102.619934,59.499687,200.27206,1.0925729e-05 999,610.8803,7.31487,28.266357,115.88966,1.0494633e-05 999,3.1358058,249.09146,58.417282,227.37912,7.528067e-06 999,0.97702885,306.46655,19.54837,138.13284,5.372581e-06 999,1.5127361,457.48224,28.101913,46.925385,4.0577584e-06 999,216.45932,427.54285,70.670166,72.321594,2.1800297e-06 999,1.6203394,85.167915,18.763378,73.63474,2.1041255e-06 999,3.2390122,430.3499,53.257023,70.01285,1.530546e-06 999,569.19025,19.908484,69.95642,142.76683,1.5224404e-06 999,59.196083,431.6376,75.67223,69.25006,1.3847971e-06 999,2.1297877,51.034397,30.17257,160.55913,8.012222e-07 999,587.07196,4.823114,41.243774,46.635536,7.849144e-08 999,0.8675301,12.618629,7.801713,76.003235,4.0213873e-08 999,3.6196926,27.001541,54.58564,97.086395,1.5631032e-08 999,1.6833179,6.843047,18.871088,56.795677,1.7808067e-09 999,7.106514,3.5933366,39.950638,48.89319,1.8591548e-11 999,252.13173,4.3537874,41.08519,47.898163,6.021396e-12 1000,387.16043,194.7278,21.741638,48.848587,5.3388968 1000,568.81885,190.95583,32.63098,65.398575,0.012796533 1000,388.19138,161.05573,37.77063,95.839294,0.008326918 1000,415.71442,194.8235,22.542145,54.105408,0.0036227542 1000,427.97363,190.93954,26.046478,61.740906,0.0024902504 1000,272.8211,216.33911,22.440613,51.564026,0.002270914 1000,369.09137,197.83987,21.443329,48.690292,0.0018197305 1000,531.49133,220.30269,33.26715,80.04784,0.0009139796 1000,432.43533,157.51979,40.52942,129.55687,0.0009030765 1000,410.84906,120.02642,41.27823,148.56009,0.00069555204 1000,220.83682,399.8599,34.235367,81.21002,0.00067090953 1000,471.74063,183.70459,33.407196,71.50067,0.00035050372 1000,524.37976,53.694946,26.36261,65.41649,0.00031594792 1000,612.38025,193.51694,26.766418,125.85303,0.00028209802 1000,210.80832,349.65677,79.99844,141.89157,0.0001513008 1000,617.3034,62.615562,21.843262,79.285255,0.00011458908 1000,472.71005,223.86516,31.57605,73.86778,8.522007e-05 1000,617.6297,277.5156,21.516968,81.574615,8.415007e-05 1000,609.0217,440.806,30.124939,63.78537,6.0996244e-05 1000,612.09827,109.53094,27.0484,137.1485,6.098008e-05 1000,602.1599,253.09227,36.986755,193.71098,2.8402605e-05 1000,1.2864063,209.93916,19.455147,136.91704,2.388525e-05 1000,531.23785,62.668076,36.688477,106.30055,2.3357106e-05 1000,2.065638,140.92267,28.241459,139.25983,1.4572677e-05 1000,573.7536,365.90613,65.39307,124.46185,9.437485e-06 1000,584.87177,26.459532,52.98065,233.30124,7.660075e-06 1000,1.0930477,398.81607,18.323309,75.98773,7.51024e-06 1000,3.851815,129.90057,58.159527,225.84064,6.689958e-06 1000,6.501667,363.47226,77.52544,131.22745,5.804715e-06 1000,1.4946395,115.52651,19.787033,93.286674,5.363796e-06 1000,1.1149032,345.86734,18.339024,74.4595,4.816667e-06 1000,1.566556,263.29288,33.976723,192.05823,4.096063e-06 1000,1.9169011,458.14188,27.927336,46.344482,3.2327832e-06 1000,33.910305,431.24954,74.02083,67.75348,6.009616e-07 1000,491.17807,5.7852607,122.36569,263.85782,3.440897e-07 1000,3.9766097,28.6505,54.548668,97.05373,7.0051556e-08 1000,508.03174,22.038647,45.941406,185.8314,2.7105537e-08 1000,1.1892054,12.763858,9.796984,71.44454,1.4723316e-08 1000,2.725189,14.872793,31.552898,68.77885,7.0201596e-09 1000,502.60022,1.5522624,65.8609,56.75188,2.8111946e-09 1000,409.70813,4.6317677,41.82312,48.524235,2.1794183e-10 1000,449.62585,2.6629672,44.309357,53.669586,1.2262234e-10 1000,475.89407,2.9702947,46.2493,54.882572,8.939881e-11 1001,545.58496,83.121185,42.004272,162.18239,0.0032945613 1001,555.5055,99.75007,27.522827,60.25077,0.00228425 1001,622.80707,203.41016,16.3396,50.80185,0.0015533229 1001,567.4245,177.03238,38.391235,89.77341,0.0009810596 1001,529.21326,65.10887,27.991882,58.980858,0.00077089417 1001,458.92548,192.5809,33.63629,71.149536,0.00064260565 1001,526.6084,85.935486,108.71228,254.43811,0.00056479336 1001,403.3738,201.07068,33.0231,68.70227,0.00048972236 1001,581.7471,7.6306643,56.52722,116.23315,0.00047794575 1001,540.0409,84.442856,29.657715,67.66559,0.00039055504 1001,510.2561,199.24886,21.80664,45.218414,0.00033436148 1001,621.7347,161.98347,17.411987,60.74353,0.00022132428 1001,516.6334,55.952698,26.486511,61.680054,0.00021060584 1001,280.40842,217.348,21.483582,49.144943,0.0001698352 1001,610.1995,111.627304,28.947144,157.72197,8.7579625e-05 1001,612.44965,201.26949,26.697021,135.16243,8.5650274e-05 1001,586.17017,196.83316,51.678467,228.80298,6.788715e-05 1001,612.63477,342.57437,26.511902,136.90042,6.649478e-05 1001,1.638816,188.65189,18.255022,70.20407,6.6334665e-05 1001,616.1098,64.540405,23.036865,100.07941,6.32656e-05 1001,609.5548,436.70013,29.591858,66.81778,6.0910334e-05 1001,0.79890466,285.23694,18.801186,76.16147,2.744963e-05 1001,524.5256,41.870514,48.04181,163.22296,1.9492936e-05 1001,2.3641016,137.9127,33.054955,168.18437,1.5069428e-05 1001,2.1866243,232.0611,31.031961,174.92148,1.1476511e-05 1001,464.72922,424.82486,76.10611,71.67728,8.6096625e-06 1001,5.5810905,260.85925,77.74965,212.25461,8.440496e-06 1001,1.0829134,384.8555,18.226952,74.43039,5.764422e-06 1001,1.1550407,120.90532,20.275898,99.7038,5.065165e-06 1001,473.2726,53.448284,79.691925,213.7159,4.2510346e-06 1001,0.81171143,331.66257,18.603123,74.47925,3.4997147e-06 1001,1.0782992,422.8704,16.329048,79.64014,3.3426754e-06 1001,1.4098113,331.17776,32.91502,158.29861,2.7317426e-06 1001,276.11478,433.40897,72.16199,67.15491,1.5236227e-06 1001,7.332891,399.68417,90.67606,95.16354,1.0535623e-06 1001,6.2386265,62.647106,76.38587,224.33513,3.9933227e-07 1001,3.6980631,30.487972,54.50837,95.70392,7.9068734e-08 1001,573.1264,3.5593295,45.6709,59.39859,2.9157865e-08 1001,1.1157796,13.28406,9.663776,72.3005,8.045413e-09 1001,2.6393929,15.842692,31.558617,68.73897,4.1396313e-09 1001,475.5385,1.6769499,45.62195,59.854687,4.071179e-09 1001,552.80225,5.3414636,41.759216,50.68268,8.9205354e-10 1001,294.58224,8.37085,38.513916,46.685604,4.160574e-10 1001,240.12573,6.6120462,37.47818,49.85091,2.5373964e-10 1001,116.16688,4.8399873,42.35717,51.581913,1.343596e-12 1002,438.1981,195.43393,24.649567,49.26381,99.49922 1002,408.24963,194.88716,23.10318,53.2809,0.009923048 1002,421.40222,193.81316,22.289398,46.20839,0.0044026873 1002,619.1338,183.8763,19.87262,51.40329,0.0040617185 1002,419.44995,159.05305,58.3797,107.162704,0.0013401086 1002,609.9601,91.4755,28.771301,148.76184,0.0009685764 1002,621.4777,317.95844,17.668945,55.40793,0.00079196715 1002,618.2277,212.1627,20.918945,82.96709,0.00024225742 1002,615.5723,50.68878,23.57434,99.330185,0.0002048552 1002,620.60297,112.84572,18.543701,57.54721,0.00012182657 1002,611.5208,296.23972,27.625854,138.76144,0.00010645682 1002,569.3156,6.150912,69.04144,262.78796,8.440622e-05 1002,570.9034,3.6141064,68.243286,54.160904,7.483542e-05 1002,602.8255,167.0109,36.321167,183.18869,6.550616e-05 1002,609.6431,437.42856,29.50354,67.346985,3.931617e-05 1002,1.0794641,202.57631,17.122757,117.59474,3.237621e-05 1002,391.93405,119.58177,139.27628,207.71455,2.026651e-05 1002,573.8911,361.66974,65.255554,126.48892,1.134062e-05 1002,1.4655648,139.32118,18.716486,89.35213,1.0590873e-05 1002,3.8038576,213.52011,56.932396,212.89908,1.0140347e-05 1002,0.73970544,289.6309,19.59448,137.30374,5.68579e-06 1002,0.94450116,422.27966,14.330806,80.15463,5.400259e-06 1002,2.45802,98.68732,31.849125,177.50372,5.20111e-06 1002,399.72403,130.12967,25.802582,58.42021,2.5609102e-06 1002,1.899769,81.64803,18.767954,86.18104,2.548718e-06 1002,2.6841488,434.1454,45.43039,66.47394,1.5761156e-06 1002,483.51068,430.18652,77.97595,70.42349,1.1240426e-06 1002,298.69028,434.58356,70.56998,66.15369,1.1048865e-06 1002,6.0442157,363.12274,78.538124,127.25513,9.522065e-07 1002,134.15028,431.30356,72.46712,70.102875,2.4369803e-07 1002,4.3669124,28.07904,54.3142,97.44741,8.3924725e-08 1002,5.557585,61.287308,78.75127,240.50185,6.8380665e-08 1002,470.63797,3.596792,42.212433,46.725834,1.2001657e-08 1002,1.2030464,12.164753,10.249403,73.17836,1.1720329e-08 1002,2.6296926,14.310993,31.551338,70.41925,9.488316e-09 1002,546.2621,1.3647754,47.216553,55.676292,8.731365e-09 1003,464.36417,199.81435,25.277405,60.141525,98.82924 1003,499.30267,203.67833,23.295593,47.44162,0.1720105 1003,451.88834,177.83943,51.942505,102.20262,0.008608607 1003,520.974,179.89706,32.479126,65.51344,0.006809584 1003,52.84496,219.95312,23.863972,50.34262,0.0038417252 1003,510.87933,195.14789,22.705261,50.14659,0.0026128748 1003,563.2766,152.1879,74.12793,188.95154,0.001761542 1003,484.67834,199.34294,22.892487,48.802734,0.0016539118 1003,66.35086,222.2553,22.973877,46.316208,0.0014237589 1003,610.2526,167.24883,28.894043,68.05055,0.0011154748 1003,298.07364,215.82188,21.889465,48.80928,0.0007069023 1003,122.25762,217.05977,36.46157,72.0132,0.00051292806 1003,616.6541,204.49213,22.492554,90.259674,0.00041154318 1003,549.7119,189.12396,23.805786,47.633728,0.0002210568 1003,621.3082,35.364826,17.83844,58.624203,0.0001843097 1003,611.9215,253.49777,27.225159,135.68951,0.00014707379 1003,45.73314,201.38857,43.689957,103.059555,0.00012607538 1003,601.60425,72.21479,37.040222,209.21423,9.512844e-05 1003,22.469719,215.29141,42.287376,101.68039,9.1630565e-05 1003,1.7531487,189.08192,18.217903,64.90219,8.388718e-05 1003,0.94537765,227.64444,17.1729,129.25021,7.2270326e-05 1003,604.4926,318.4364,34.654053,169.23795,5.837847e-05 1003,609.8259,436.7797,29.32074,67.77496,4.391058e-05 1003,616.4489,74.44859,22.697754,87.74158,2.1688365e-05 1003,2.398662,174.30284,28.606209,139.00536,2.100938e-05 1003,416.27005,126.23647,135.94064,224.65979,1.9979345e-05 1003,609.0053,7.0775523,30.141357,122.212715,1.9017174e-05 1003,3.493143,203.59998,57.577103,231.93796,1.3871833e-05 1003,0.69232994,311.59552,18.67247,77.69751,8.986436e-06 1003,1.2276677,300.58026,32.811848,185.22852,5.857868e-06 1003,0.95669925,422.3416,14.526631,79.861694,4.919881e-06 1003,0.96606934,385.63293,18.207588,73.82776,2.7712758e-06 1003,5.8744564,354.6033,77.66874,134.22025,2.1330945e-06 1003,1.4348714,130.33907,18.536077,88.23161,1.9690494e-06 1003,2.7764747,433.18002,45.111633,67.868225,1.1768052e-06 1003,2.2246232,66.607346,20.205778,106.13779,9.579941e-07 1003,3.8903224,28.450655,54.92704,97.01938,7.728869e-08 1003,585.026,3.6164162,43.836243,50.514584,7.127532e-08 1003,2.6334002,15.475085,30.944576,67.2566,5.2376676e-09 1003,265.61972,5.627196,42.07596,46.56755,1.0319615e-10 1004,500.6609,198.6423,27.304443,67.850006,99.926025 1004,515.18317,200.9102,20.609436,46.593918,3.1282787 1004,549.086,186.8799,43.98645,103.305466,0.27416992 1004,442.70538,126.81076,28.589355,66.95325,0.008219327 1004,606.19855,186.93678,32.067017,66.914444,0.007658996 1004,619.07745,44.749783,20.069214,70.26129,0.0035625526 1004,596.97424,37.3434,30.333862,74.85749,0.0020680993 1004,592.0376,190.0636,25.880005,57.197037,0.0016358271 1004,573.3682,175.3638,34.06494,84.323,0.0014648488 1004,524.81683,140.32576,109.01892,180.99529,0.0011102513 1004,617.35254,216.15202,21.794128,87.49803,0.00036179402 1004,1.5310335,187.58058,21.642391,102.022934,0.0002954918 1004,295.11932,207.14413,30.121613,61.682007,0.00028634208 1004,601.76996,206.2093,37.37671,201.00719,0.000199906 1004,483.95096,160.82016,67.92471,155.90381,0.00018772416 1004,418.5535,122.828156,33.913696,81.35631,0.00016117717 1004,601.4833,61.17821,37.217163,207.2534,0.00014214822 1004,612.3095,327.12122,26.837158,117.316284,7.4145006e-05 1004,605.64594,6.057269,33.500732,64.74775,7.164837e-05 1004,609.7006,436.01028,29.446045,68.1181,3.4201188e-05 1004,1.0225545,243.51746,18.420359,78.21814,2.094812e-05 1004,3.6022413,131.82214,58.63075,249.77963,1.7173086e-05 1004,1.0451432,355.2691,18.509737,145.35101,1.3852243e-05 1004,2.1095989,94.004944,29.030325,165.86954,1.1749465e-05 1004,573.04767,357.673,66.099,129.81113,8.694021e-06 1004,2.0726156,241.27641,30.77861,170.83,6.1509354e-06 1004,3.312308,308.411,58.31384,176.61526,6.1264877e-06 1004,567.917,5.929245,71.229675,166.01543,2.6360556e-06 1004,1.7059237,66.01267,17.88499,69.52004,2.1233968e-06 1004,2.9480991,430.19498,51.216858,71.2926,1.1193572e-06 1004,3.7289064,25.679552,53.510574,97.7655,9.352432e-08 1004,1.0776974,12.4417515,10.664422,65.703476,2.6494057e-08 1004,544.6643,3.8795135,42.977783,53.239006,2.548607e-09 1004,190.44336,6.441084,39.355026,46.234337,2.0621176e-10 1005,541.17065,201.78265,30.62616,75.16287,99.8371 1005,426.83392,214.74686,25.473267,56.83957,0.01709831 1005,604.7778,195.33823,27.17389,54.883713,0.015433895 1005,494.60007,102.14293,35.154938,86.07039,0.00290463 1005,618.5682,174.4483,20.578491,62.77603,0.0024488817 1005,306.7068,214.77785,22.41919,51.02977,0.0018419249 1005,625.23315,71.52904,13.913513,45.090393,0.0006844937 1005,584.6109,177.00859,29.27472,57.872406,0.00025124566 1005,617.0403,79.12838,22.106384,85.76795,0.00024938842 1005,600.35333,102.883484,38.41681,175.44904,0.00020115558 1005,523.91486,165.01393,72.3363,163.29723,0.00018375824 1005,617.3178,296.52942,21.828857,79.434784,0.00014605041 1005,612.10925,320.23532,27.037415,139.57556,0.000103284176 1005,601.32227,200.8559,37.8244,196.92535,7.1381975e-05 1005,94.41095,216.53069,22.4889,46.492264,6.676472e-05 1005,1.162323,208.23499,18.072424,137.12881,5.587719e-05 1005,4.003358,127.076836,58.93878,244.59802,5.4222364e-05 1005,609.2435,436.09497,29.903137,69.53024,3.853573e-05 1005,610.18304,7.262282,28.963623,107.107704,2.250588e-05 1005,1.6391748,100.15816,18.764297,152.95055,1.1767911e-05 1005,0.72378665,305.88678,20.499914,105.84204,9.479701e-06 1005,0.78115565,359.40063,19.159065,133.93948,4.1542703e-06 1005,1.4795316,70.71724,13.070284,47.859444,3.8613643e-06 1005,3.2098877,310.50552,57.374805,169.65408,2.815277e-06 1005,3.2385662,431.5388,52.401962,70.92743,5.4760153e-07 1005,2.5912158,25.916569,27.251024,103.60393,1.5854253e-07 1005,585.3146,5.921597,42.799072,49.930424,7.9839495e-08 1005,1.2507565,12.126697,12.632625,64.817276,5.2355233e-08 1005,530.43317,6.855508,41.094482,52.515224,3.2470794e-08 1005,188.13445,3.461857,43.95514,52.178165,2.6079771e-08 1005,553.2688,8.311581,40.461914,46.84385,1.5141046e-08 1005,164.36188,1.878724,41.41855,54.847366,1.3186061e-09 1005,264.4911,3.3441536,43.665253,54.607384,1.061176e-09 1005,503.51422,5.8453727,43.798218,53.467064,2.2867395e-10 1005,104.28085,10.349227,39.0244,51.084614,1.3802746e-10 1005,436.68073,4.8918037,41.743652,49.936035,6.0639625e-11 1005,477.25323,5.9171357,42.4104,53.06779,3.143933e-11 1006,393.12546,196.00269,23.828186,56.494095,0.016269065 1006,470.4714,207.01454,27.557312,57.89119,0.0058126845 1006,2.9343815,214.2717,32.844185,64.30817,0.0040677735 1006,1.3819067,216.19893,13.587515,49.67424,0.0010295217 1006,620.4394,312.54153,18.707275,67.18918,0.00075776817 1006,370.27747,189.18396,32.947174,71.06778,0.00071473577 1006,34.13362,210.02945,32.542397,61.733643,0.00070440694 1006,461.4268,179.86954,52.745514,116.32892,0.00067678496 1006,622.958,200.50972,16.18866,47.476425,0.00060386356 1006,295.15118,212.16006,30.671143,66.96838,0.0005004425 1006,610.32654,227.14444,28.82013,145.76617,0.00030651593 1006,366.8931,228.1352,20.68515,52.791565,0.00026189222 1006,129.12573,213.89049,22.873062,48.399277,0.00024430934 1006,572.14703,201.83058,66.68634,216.95558,0.00022502027 1006,620.9675,71.834816,18.179138,55.938454,0.0002213475 1006,621.23395,113.36661,17.91272,55.17476,0.00018159625 1006,355.31458,165.43819,36.461273,123.24895,9.412027e-05 1006,612.9459,156.905,26.200745,125.80612,8.585882e-05 1006,5.1576204,129.01285,75.23493,268.9657,8.510442e-05 1006,1.5376416,231.34433,18.03671,129.15796,7.2371644e-05 1006,602.3251,297.14786,36.821594,185.67163,6.7000976e-05 1006,479.7665,229.49605,26.779541,57.301834,6.567411e-05 1006,596.5695,22.79127,40.817566,128.13304,4.5638444e-05 1006,70.054306,234.08836,42.98413,134.69221,3.5101377e-05 1006,609.39844,437.1364,29.74823,68.24478,3.3322554e-05 1006,1.1441089,150.71782,19.787085,92.689606,1.4537696e-05 1006,604.7741,0.19455078,34.37256,68.217316,1.2799811e-05 1006,0.90846354,376.19525,19.393978,123.27121,1.2246429e-05 1006,1.9923145,272.8631,31.30604,167.96906,8.7903645e-06 1006,5.2445183,352.98642,78.65306,138.03766,2.4728997e-06 1006,2.6379054,435.1152,45.91232,66.55084,1.630918e-06 1006,255.86401,433.91437,69.96762,64.8096,1.3290844e-06 1006,1.8848283,84.81169,18.504587,79.78604,1.1031283e-06 1006,3.6953843,27.956999,54.774624,95.41696,3.5819411e-07 1006,1.9064624,47.880367,18.602314,69.05643,2.3166218e-07 1006,175.04297,431.90387,72.63008,69.07019,2.0689129e-07 1006,1.92566,41.500397,30.509205,168.9007,1.3506808e-07 1006,1.1388737,13.929134,10.820368,74.736694,1.2585913e-07 1006,286.4513,6.550083,39.428467,49.482067,4.9832945e-08 1006,245.29945,2.2919564,39.441513,49.103622,2.4818325e-08 1006,40.39841,7.015119,42.301342,45.6451,1.2871519e-09 1006,83.60569,6.939585,40.45633,50.92539,8.796317e-10 1006,538.80725,4.5282,44.085083,55.23404,2.6941654e-10 1006,571.3382,1.2417709,47.569397,66.12195,7.9906706e-11 1007,419.9825,205.91125,23.642822,47.68521,0.0964816 1007,346.88907,209.99065,22.492126,47.5428,0.0028678738 1007,190.4223,212.9403,21.524872,46.601196,0.0021661632 1007,489.61325,168.69011,42.32779,120.659805,0.0015372951 1007,373.14664,214.3757,22.117554,45.746796,0.0011882349 1007,334.79214,213.23344,22.414642,46.094345,0.0010341366 1007,285.2637,213.27292,22.068878,52.901855,0.0006662531 1007,1.483217,206.83505,18.744446,73.766266,0.0004814794 1007,480.89755,235.88696,35.25168,82.642,0.00036233512 1007,404.4596,171.14531,36.10608,90.14635,0.00027832267 1007,484.27667,192.3853,26.28891,54.68541,0.00019242037 1007,616.3344,196.74394,22.812256,89.636154,0.00018255232 1007,621.72845,175.09001,17.418213,54.97374,0.00014370111 1007,4.945355,216.56425,76.46266,165.12056,0.00012550366 1007,610.7841,67.30725,28.362549,142.79617,9.313559e-05 1007,609.1105,436.91653,30.036194,66.68915,8.310872e-05 1007,1.5582935,249.19516,19.005026,138.5568,5.98579e-05 1007,612.65796,317.96497,26.488708,136.91833,5.7529756e-05 1007,495.79745,90.146866,70.12082,197.33037,4.0201423e-05 1007,613.111,241.6211,26.035645,132.98627,3.096755e-05 1007,585.3571,12.352428,52.46631,116.935745,2.8134149e-05 1007,2.555926,90.76164,33.350307,212.562,2.662748e-05 1007,2.343151,308.24268,31.788208,182.31369,2.2596896e-05 1007,587.91534,124.633286,50.823486,222.44856,1.9272235e-05 1007,1.1262053,377.27707,18.088707,78.52356,1.26076075e-05 1007,608.5615,2.365384,30.585144,59.39734,1.0966149e-05 1007,573.5847,364.25287,65.56195,123.66226,1.0435869e-05 1007,1.8317896,88.23272,18.50237,75.71804,9.506099e-06 1007,0.8608277,418.06296,14.299404,83.620544,8.99635e-06 1007,392.881,151.13943,108.036255,181.70276,6.1309534e-06 1007,496.46533,64.242256,39.814575,116.45133,3.2658156e-06 1007,2.3534782,432.08453,45.57544,69.01419,1.551784e-06 1007,3.5770965,27.348099,52.30556,97.7902,9.058539e-07 1007,4.28472,34.86185,79.44161,238.61899,6.5106485e-07 1007,277.42712,432.39096,77.62247,68.26056,6.17965e-07 1007,539.052,47.66102,41.405273,117.42425,1.8507275e-07 1007,1.2280005,15.34906,13.28895,69.64132,2.5065322e-08 1007,573.81134,0.69692874,45.587036,45.07857,1.4054063e-09 1007,42.055573,7.1241326,42.16227,46.980686,1.1581214e-09 1007,271.66998,4.30479,37.847717,48.938313,5.793819e-10 1007,66.038635,9.840267,44.368805,52.211895,4.0635584e-10 1007,247.10873,1.5528907,39.86624,49.591812,1.9485606e-10 1007,550.1126,2.672028,44.20459,53.29077,2.8228298e-11 1007,477.65485,4.6232033,42.45337,50.729336,1.2975825e-11 1008,539.9883,196.84007,23.262695,46.302826,99.66313 1008,559.60095,204.86029,31.80835,89.15207,95.25416 1008,475.9046,198.54727,24.552765,50.92917,8.083351 1008,401.3097,191.55981,23.677307,53.946,1.994472 1008,554.08777,179.4707,59.057922,167.86621,0.892533 1008,565.3974,198.97597,20.70813,45.82524,0.03877209 1008,577.3824,218.38614,25.230896,66.77304,0.024855763 1008,411.984,184.02129,35.06302,67.61664,0.015803983 1008,540.7851,267.75262,46.38446,100.74661,0.00736171 1008,594.0588,163.38464,42.16449,137.92697,0.00382634 1008,620.7734,229.74248,18.373291,55.27809,0.002076112 1008,1.4925098,192.02885,19.38109,83.33528,0.00047216445 1008,609.4344,233.06831,29.71228,143.97478,0.00028809815 1008,601.95966,105.32099,36.983093,124.54014,0.0002599637 1008,608.73175,441.59174,30.414917,66.151184,0.00017280165 1008,2.2059522,174.68881,34.54542,170.85013,0.00014205919 1008,612.22186,322.33728,26.924805,134.65594,0.00011954031 1008,570.6295,349.43237,68.46326,143.24295,2.5389227e-05 1008,608.90857,5.966146,30.238098,158.20428,2.1055273e-05 1008,1.532033,240.11076,17.865765,143.62157,1.2436661e-05 1008,0.9953996,324.45676,19.36345,139.64258,9.321346e-06 1008,3.5121567,273.77652,56.063293,199.01459,4.8901024e-06 1008,1.4815935,91.06095,18.617226,148.10278,3.859781e-06 1008,1.6934595,424.46857,32.80084,75.20978,1.941875e-06 1008,529.8488,44.532097,41.459473,100.1531,1.6525744e-06 1008,3.3951547,21.11715,60.467464,250.65326,2.7114496e-07 1008,450.46912,6.559107,42.42105,53.078094,1.8332909e-07 1008,1.919244,20.9253,19.696331,116.25587,1.05439405e-07 1008,581.8903,2.5226562,48.197998,55.319885,3.7400895e-08 1008,424.47388,9.360977,40.602844,51.881973,3.0583532e-08 1008,512.1543,7.8007812,84.230225,215.52185,1.2514645e-08 1008,7.0996356,5.6544905,44.326843,47.57175,9.670309e-09 1008,475.95062,3.0306022,45.066162,55.90794,6.4851973e-09 1008,30.576479,6.997162,46.90316,54.472893,6.1257786e-09 1008,258.28226,5.9861655,40.058838,52.283733,5.051534e-09 1008,220.23775,0.81906575,39.411972,48.759132,2.7269775e-11 1008,560.0479,3.5258806,43.20514,49.3499,1.5926416e-11 1009,575.9008,195.1467,25.931824,51.179916,99.93867 1009,604.4462,194.2081,34.58954,109.40506,95.36058 1009,341.37576,204.86115,21.728088,52.579224,0.026208432 1009,620.7476,255.38734,18.399048,54.90901,0.024629015 1009,364.33984,189.32233,30.650116,68.56488,0.012387087 1009,596.16077,195.172,24.700134,51.256973,0.004847472 1009,488.0428,214.05336,39.626648,106.56734,0.0024967946 1009,393.93903,197.9301,30.312744,68.71007,0.0017329262 1009,358.67657,206.27167,18.843018,49.193314,0.0014872835 1009,589.18353,176.73051,49.963135,277.43823,0.001188108 1009,528.5893,206.90768,23.319336,47.022446,0.0010239278 1009,1.4705819,203.00427,19.054165,78.311615,0.0008659613 1009,472.7497,143.56302,41.645813,137.81204,0.0005678816 1009,336.48132,158.74936,37.923767,113.09607,0.00043770784 1009,560.6242,171.23853,62.563416,99.63599,0.00030579767 1009,611.81793,364.25992,27.328735,135.68597,0.00012766497 1009,84.9182,208.21492,41.481087,90.24681,8.0988175e-05 1009,2.3258123,143.92572,33.388874,176.54892,5.4778924e-05 1009,609.07733,56.079,30.069336,167.09505,3.874105e-05 1009,1.2496216,239.03319,17.801966,148.28432,2.4892788e-05 1009,1.2145092,326.7125,18.477757,134.74347,1.2217429e-05 1009,380.8848,116.11519,142.84146,202.86507,9.9721165e-06 1009,3.6447804,217.85703,55.016083,206.01526,7.498088e-06 1009,587.34766,7.339258,51.79901,131.23203,6.2763925e-06 1009,1.5258081,80.89721,18.663616,151.6542,5.5214728e-06 1009,3.7998505,19.580585,53.69816,102.8497,2.3838502e-06 1009,1.868825,421.19293,32.179943,76.74182,2.2892493e-06 1009,53.85685,21.736383,34.879326,89.53836,2.2366835e-06 1009,1.6263888,14.769236,16.54075,72.57407,4.494766e-07 1009,2.3784864,7.657665,43.508278,49.02024,1.650098e-07 1009,399.85468,5.42259,43.261475,48.460026,3.962411e-08 1009,39.18548,5.856605,46.54769,56.59936,2.8759631e-08 1009,375.6532,3.7908854,42.67401,52.62308,1.7655749e-08 1009,477.097,18.529402,82.23462,213.65605,1.5639918e-08 1009,270.98737,3.8585124,42.11664,55.26677,5.711898e-10 1009,66.86879,6.753031,43.77836,53.19564,3.108504e-10 1010,614.3985,202.65012,24.7005,52.9308,99.716415 1010,355.9078,196.92253,22.90152,56.481644,1.3866222 1010,485.5678,200.09773,23.376373,52.135788,1.0633883 1010,499.5187,184.63501,39.44278,71.905426,0.36243635 1010,392.12665,204.55487,21.883087,59.44638,0.24627881 1010,373.27893,195.69682,26.588776,70.92229,0.15717062 1010,598.6519,201.72562,22.692139,55.840332,0.15708534 1010,612.0503,175.32341,27.096375,178.85948,0.012547815 1010,1.5634221,206.20282,20.47569,46.47409,0.000803131 1010,259.0639,231.49756,19.749634,51.18701,0.00041412117 1010,599.8219,53.74098,38.997375,227.00826,0.00023558945 1010,618.9398,27.095974,20.206848,58.678394,0.00018076827 1010,420.29257,154.32695,79.70947,153.19405,0.00013389616 1010,612.11285,373.89096,27.033813,130.35532,0.000115594696 1010,584.3142,8.034304,54.83246,122.822784,5.0952127e-05 1010,1.5086842,187.53471,28.292078,123.540085,5.060404e-05 1010,1.4337232,60.680016,14.229003,51.6437,3.6568566e-05 1010,616.39874,118.29958,22.747925,97.48621,3.3161003e-05 1010,611.86584,291.41122,27.280823,137.23657,2.6924454e-05 1010,320.48453,142.3988,96.136536,203.89209,1.7256321e-05 1010,599.60046,1.1127002,39.546204,53.11701,9.626927e-06 1010,0.97839767,265.68997,18.53009,138.56134,8.419882e-06 1010,3.5137646,141.80505,57.21314,212.77151,7.139853e-06 1010,1.0281202,360.4151,17.02878,127.754486,6.8584363e-06 1010,1.412631,73.608986,18.555542,148.57162,6.458506e-06 1010,3.3661654,340.4675,58.86995,143.54172,2.2752497e-06 1010,1.1841122,443.29272,21.564,60.174988,1.9194822e-06 1010,3.3821616,17.766745,54.800564,114.19053,7.5360214e-07 1010,5.8977294,7.058854,45.19322,47.66551,1.172371e-07 1010,39.43532,5.29945,64.10878,53.550636,4.6026006e-08 1010,266.95615,2.5759442,45.12213,47.202522,2.5912268e-09 1011,533.01685,214.95729,24.018677,49.958176,99.79423 1011,479.38846,211.3295,21.06842,52.251648,95.09846 1011,407.89276,199.699,28.384552,81.35849,1.849657 1011,605.38995,187.53891,33.756714,100.062164,0.116326995 1011,384.50705,209.7926,27.0018,65.37125,0.046971966 1011,584.0715,151.6181,54.56903,247.33978,0.008731744 1011,620.3168,46.53693,18.829895,60.3894,0.0030633877 1011,622.766,219.01863,16.380676,51.488358,0.0023013616 1011,553.2992,218.0656,22.264038,45.53096,0.0011274435 1011,74.57624,52.454338,34.290154,86.88442,0.0010198599 1011,617.1021,336.51373,22.044556,79.480774,0.000846079 1011,120.232506,223.87617,25.982658,53.741226,0.0008274846 1011,621.6204,262.94223,17.526245,54.408234,0.00080560555 1011,239.35623,231.30316,32.57553,73.42883,0.0006510864 1011,621.9068,88.03493,17.239868,54.319275,0.00062265084 1011,271.84048,245.7268,20.487762,50.396088,0.0004386698 1011,610.1676,66.66418,28.979065,160.34256,0.00026362579 1011,610.9322,368.58002,28.214478,133.69208,0.00024859817 1011,516.27936,184.04533,59.239746,104.91618,0.0001442616 1011,457.30954,182.38461,55.661285,107.06381,0.00010441877 1011,2.2290258,191.26662,27.247036,130.51814,8.688332e-05 1011,487.46756,137.5167,137.00113,226.17026,4.7427064e-05 1011,352.362,154.19061,85.61505,159.65945,4.034445e-05 1011,1.3423511,254.3447,18.645533,142.44254,3.152955e-05 1011,4.260109,165.36346,55.105595,211.89041,2.230086e-05 1011,585.24506,8.714466,53.90161,126.22012,1.8652372e-05 1011,1.6582716,298.4271,32.12556,185.49234,8.544552e-06 1011,1.1127287,379.42343,17.25198,115.70215,6.8182244e-06 1011,2.03497,80.33184,29.26021,168.56061,5.170073e-06 1011,3.3759472,23.551062,54.1433,100.47894,2.2603874e-06 1011,408.5546,77.34013,40.42871,120.13527,7.447884e-07 1011,1.498766,14.368034,15.181807,72.4545,1.8400485e-07 1011,59.76523,4.3438606,47.25094,60.864292,7.9216974e-08 1011,33.58007,6.1889586,44.926888,49.179672,9.893215e-09 1011,578.3596,2.521071,44.520996,59.29746,1.3006142e-09 1011,338.98663,5.083177,45.8649,55.621323,1.2934375e-09 1011,533.05505,2.5895507,42.203064,59.536404,1.2032868e-09 1011,261.79358,4.419613,44.688446,51.416386,8.49528e-10 1011,86.49129,7.0854917,43.666428,53.105656,7.307469e-10 1011,367.21396,5.6851025,44.573517,54.656197,2.3295033e-10 1012,558.2286,214.17427,25.829529,60.696823,99.87718 1012,455.67267,221.26941,25.623077,62.618896,98.411354 1012,286.48984,216.83565,25.955688,52.530655,13.873691 1012,428.61984,215.12459,28.771942,77.69682,12.060402 1012,609.37946,181.77777,29.722412,86.17328,0.48645473 1012,491.7032,216.64752,26.10028,63.17694,0.46086666 1012,547.62427,217.01793,20.488647,52.153214,0.2323074 1012,531.4207,191.8908,39.003174,101.16478,0.08894547 1012,503.943,204.71808,24.573303,57.983215,0.015174207 1012,623.2558,179.7274,15.890869,48.03058,0.001353484 1012,349.0433,213.21625,32.908173,70.64267,0.0003009087 1012,588.05786,88.590294,49.656006,209.31665,0.0001931335 1012,527.1527,173.44353,89.60626,178.72069,0.000105057436 1012,608.56744,440.86902,30.579224,64.6297,9.130153e-05 1012,602.0427,341.44366,37.103943,154.71088,8.302174e-05 1012,374.52908,152.53087,91.04779,206.36794,7.950599e-05 1012,420.32864,176.22475,99.653534,185.94066,7.3198564e-05 1012,608.04596,3.5903614,31.100708,92.4426,2.0652205e-05 1012,1.5950309,247.31383,33.232014,179.9799,1.7050726e-05 1012,1.458143,195.40324,17.868807,114.26024,7.782871e-06 1012,1.1404078,381.28345,16.9297,112.15985,6.7996148e-06 1012,1.8554868,73.23798,28.984287,175.79428,6.093508e-06 1012,354.0041,6.153856,45.082153,54.893322,2.5403072e-06 1012,382.37726,7.261698,44.79016,48.651115,1.251924e-06 1012,3.6710923,394.6195,56.0468,96.67221,1.0447495e-06 1012,3.343558,19.935123,55.442932,108.430374,5.765079e-07 1012,320.172,5.528955,44.60318,51.571255,4.357615e-07 1012,480.6378,3.9665267,48.905,61.857502,2.032301e-07 1012,292.2677,3.125975,42.966583,48.913677,7.524715e-08 1012,395.8432,8.996969,85.00061,66.556404,7.2700516e-08 1012,523.2797,2.2350879,46.10138,55.89477,6.1772774e-08 1012,53.589157,5.3072853,63.8593,54.4824,5.140216e-08 1012,478.3783,12.95295,44.30896,154.44858,2.5257336e-08 1012,451.69974,7.720775,41.977417,52.385918,6.7707706e-09 1012,566.34375,1.2511524,45.72229,64.02165,2.7861208e-10 1013,472.59033,206.99231,21.376923,50.282562,99.78508 1013,456.81146,206.48683,20.974915,50.50862,99.75332 1013,590.582,208.88513,32.895874,67.53378,99.65668 1013,427.18994,206.1865,20.148865,45.083694,98.078606 1013,511.41006,198.47147,37.33255,110.673096,20.630629 1013,531.1054,192.9507,25.825989,69.34883,0.5479124 1013,162.71774,209.29517,23.601242,53.260193,0.03296099 1013,506.3124,216.53032,24.583832,66.62337,0.020693306 1013,599.6677,74.29006,38.305725,222.75784,0.007861432 1013,520.96027,209.14365,19.967224,54.561615,0.007837673 1013,388.86392,204.71039,37.297485,81.69693,0.0058379048 1013,189.60504,212.79778,24.45337,47.185837,0.0046517323 1013,617.0957,59.65564,22.050964,78.49606,0.002036565 1013,560.148,163.07735,73.0871,184.61256,0.0019234337 1013,313.7963,212.66159,36.0636,80.563446,0.001072467 1013,614.0405,197.84566,25.10614,115.53853,0.00089726056 1013,75.25266,65.012726,37.051483,87.71449,0.00075596233 1013,452.2247,177.1285,52.794373,112.51521,0.00049340713 1013,607.6032,436.0221,31.543457,67.42041,0.00047243288 1013,497.7633,164.02844,98.87079,179.88965,0.00025644936 1013,224.97568,223.21545,36.334473,78.9776,0.00025089798 1013,404.46518,162.06224,92.00745,189.60982,0.00020201434 1013,612.26917,284.58594,26.877502,143.77731,9.007628e-05 1013,1.0406747,208.34761,17.179394,131.71095,2.4286435e-05 1013,3.3519435,242.92043,57.636345,224.13615,2.409652e-05 1013,4.032549,22.03065,55.623512,103.66433,1.4438271e-05 1013,1.1353866,298.65973,19.02812,136.6164,1.048061e-05 1013,1.1519458,380.42163,16.99094,113.36868,9.992527e-06 1013,598.5961,0.0,40.550537,104.92068,4.844067e-06 1013,3.6996257,394.9845,56.700584,97.019745,1.6893908e-06 1013,1.8984026,12.730759,18.432737,65.97881,1.2317532e-06 1013,2.0108895,33.05181,19.987705,125.250465,3.3934617e-07 1013,6.427025,9.601647,45.368225,46.48954,3.2595412e-07 1013,60.578556,2.371582,48.38293,61.252506,6.447362e-08 1013,33.79358,6.5907717,45.391502,48.206112,3.065145e-08 1014,497.24557,209.27364,23.51181,55.890213,99.9684 1014,481.48672,211.59776,22.569855,52.9496,99.93574 1014,554.6281,212.81293,35.50409,86.437775,99.8849 1014,542.6228,213.32043,23.846558,48.77304,99.44944 1014,449.22906,212.12639,24.352722,50.46083,70.769135 1014,420.2081,210.7441,44.922028,91.58748,6.629388 1014,428.96683,211.23381,22.622498,45.369583,0.50422215 1014,611.20667,196.348,27.782593,128.7917,0.084047996 1014,538.9991,248.41405,39.41742,106.04225,0.072661564 1014,622.9112,251.99152,16.235474,58.779022,0.0416508 1014,530.0073,191.11462,82.57654,175.85773,0.0096659735 1014,620.06805,186.02457,19.078613,67.97974,0.005584284 1014,75.84444,49.24321,42.118454,119.87494,0.0039462866 1014,610.5862,69.01353,28.560486,173.32086,0.0021511272 1014,426.1426,180.82608,81.22012,159.50256,0.0015000293 1014,476.9198,196.63359,56.46216,91.585526,0.0005039339 1014,621.99567,125.276566,17.151001,60.2614,0.00045271203 1014,615.82166,269.55368,23.325012,100.54602,0.00039204623 1014,607.23895,438.5731,31.907715,67.61902,0.00037612297 1014,467.60126,158.67656,92.751526,201.11604,0.00014679259 1014,1.4203199,210.93564,20.29776,130.4815,5.84607e-05 1014,3.5618148,20.590174,54.79484,113.222115,2.418557e-05 1014,1.314642,443.63705,21.270054,60.667816,2.2182287e-05 1014,1.046469,301.39307,19.325937,136.307,1.5772966e-05 1014,3.3353353,183.04001,58.83179,231.99866,1.3408191e-05 1014,2.49618,65.02087,33.752216,210.82874,8.783291e-06 1014,3.3300538,394.4778,57.753815,104.1788,7.0974493e-06 1014,607.55414,0.0,31.59253,74.24755,5.3282097e-06 1014,82.880554,23.686699,28.796738,82.45525,2.0926786e-06 1014,1.6853899,33.861916,20.731997,128.98724,1.2995772e-06 1014,2.0373185,11.654326,32.039604,59.04989,1.2007163e-06 1014,64.67439,0.2955892,50.353226,65.16323,4.997584e-07 1014,34.19159,4.9115677,44.501015,52.604546,1.8200087e-08 1014,437.43253,0.0,42.121338,45.22142,2.162645e-09 1015,517.7212,212.45227,25.26538,59.02005,99.915085 1015,581.1902,213.70624,26.315979,53.075165,99.89928 1015,567.4616,214.78488,22.787415,52.841003,99.8772 1015,617.1663,220.0762,21.980347,75.14508,97.12503 1015,500.2835,214.61256,26.901001,60.04045,97.06945 1015,471.5047,209.18004,60.14215,106.395645,1.1273746 1015,481.82367,222.06331,24.73291,50.04561,0.7963242 1015,70.899666,32.32177,46.576195,133.48221,0.32026127 1015,469.4232,214.55283,25.504791,46.36328,0.027935311 1015,607.5015,142.83891,31.645142,190.57014,0.017233755 1015,618.1821,165.34874,20.964539,82.36148,0.004557902 1015,407.54147,214.58531,23.427094,48.583023,0.002305162 1015,89.67112,100.70719,28.866333,69.74787,0.002006166 1015,562.10046,189.91383,58.000732,101.98036,0.0017258493 1015,607.5504,69.62453,31.596252,129.88443,0.0010689951 1015,361.95908,210.2036,70.09241,170.37587,0.000663869 1015,580.52014,392.06552,58.490356,115.290955,0.0006630471 1015,530.10394,141.72565,107.1944,237.76956,0.00035102892 1015,486.44714,176.33797,86.716736,185.26646,0.00013550239 1015,155.109,416.11487,75.21724,80.61978,0.00012503333 1015,1.1478662,265.92804,27.99031,184.89911,6.803609e-05 1015,613.5644,19.841566,25.582275,96.80432,5.3971995e-05 1015,370.8151,277.23224,36.023346,91.79324,3.1521013e-05 1015,3.375446,21.605288,54.17082,117.93994,2.9638886e-05 1015,1.3050439,190.20932,19.296871,114.01364,2.0912748e-05 1015,0.8270239,371.41788,18.38998,123.90796,1.1337691e-05 1015,2.241023,51.32131,34.136757,215.48756,7.06463e-06 1015,7.051439,354.22458,75.90106,133.37357,7.0308893e-06 1015,530.73596,36.890663,39.64862,100.97631,2.2684726e-06 1015,28.325693,420.31134,74.95714,83.387726,1.9146958e-06 1015,7.7818427,441.78818,44.785667,65.32367,1.4246353e-06 1015,597.24695,0.0,41.89972,55.92448,8.298231e-07 1015,1.9980258,12.510062,31.914484,59.25637,8.222322e-07 1015,64.78828,0.0,51.48829,68.9222,7.687179e-07 1015,34.047325,4.916839,44.52027,53.118748,1.663134e-08 1015,513.18066,3.9711263,87.70422,205.89525,1.1841939e-08 1016,605.15686,194.89711,31.014954,65.20528,0.97872484 1016,560.998,192.5903,28.05658,51.17096,0.49613416 1016,139.76836,68.32018,38.08699,86.62423,0.4074106 1016,591.17175,193.31529,25.609253,57.00299,0.3248396 1016,489.28146,303.52908,32.056854,83.500885,0.013878825 1016,595.6732,149.15668,41.66559,193.18207,0.007496465 1016,159.16077,110.096214,21.976562,51.36631,0.0056653693 1016,31.234655,92.02878,29.245405,58.845856,0.0036649643 1016,614.2571,234.97847,24.889587,97.45058,0.0034325072 1016,11.416202,219.31071,37.80058,69.86525,0.003086948 1016,590.65674,0.0,48.111023,130.64357,0.0025336344 1016,437.8819,179.62909,22.288544,50.071,0.002512473 1016,479.44382,202.86443,62.13315,180.17705,0.002470999 1016,48.743557,221.15079,31.463528,60.858124,0.0015711859 1016,81.69476,239.83131,46.46895,97.7852,0.0012379603 1016,617.26904,39.866188,21.877625,84.26935,0.0008171261 1016,1.3667864,208.85687,20.7406,123.98938,0.00035161793 1016,3.7625635,186.14749,56.9105,199.14331,0.00010382218 1016,607.6562,441.07953,31.490479,67.8537,9.338275e-05 1016,604.0923,288.94138,35.054382,200.2189,9.221554e-05 1016,2.1523519,94.42288,34.261086,209.98584,3.5929734e-05 1016,4.130433,21.055363,55.667023,113.34549,2.9228786e-05 1016,1.6102271,46.21483,18.949503,82.72444,2.4187506e-05 1016,1.4060539,335.8497,17.142694,136.15027,1.4812217e-05 1016,613.58655,0.0,25.56012,47.695488,8.107289e-06 1016,269.6714,418.40012,74.058685,79.6774,6.1232868e-06 1016,3.046522,389.66266,55.43878,101.77225,2.6466912e-06 1016,118.332565,0.38097984,62.78586,59.686844,1.5908059e-06 1016,1.3037549,439.4627,21.894876,64.239716,1.4182802e-06 1016,1.7614739,3.1380274,20.242842,48.08203,6.747752e-07 1016,4.8927865,7.384618,64.61058,52.034786,2.6445855e-07 1016,53.95595,9.094745,43.763943,48.276817,2.1152738e-08 1016,88.09068,7.5297413,43.63124,49.96871,1.7110972e-08 1016,169.23643,2.3547819,45.22737,57.59517,3.0803976e-10 1016,213.44064,0.0,47.305847,59.164837,2.4160682e-12 1017,616.6146,221.09647,22.532043,62.99643,97.263 1017,163.50064,41.386127,44.76039,133.19815,1.6837636 1017,173.07137,251.26607,25.545471,54.61003,0.07713726 1017,103.44189,55.213577,20.800095,45.46238,0.061905697 1017,601.12915,183.02148,38.017517,135.08963,0.039826527 1017,69.229485,67.762245,21.587624,48.36994,0.004046278 1017,181.96358,105.35799,29.320251,72.124344,0.0039724987 1017,587.2766,290.03952,51.608643,221.10715,0.003418832 1017,475.60648,216.68187,22.645813,45.25676,0.003381827 1017,624.4158,271.81177,14.730896,48.33493,0.0033003911 1017,620.66626,400.68643,18.480408,69.86435,0.002047148 1017,180.18529,76.193596,25.28798,62.47222,0.0016409631 1017,606.21655,277.57275,32.76941,92.48038,0.0011730822 1017,108.5712,109.20245,25.755173,57.82025,0.00046480435 1017,584.06165,443.14282,44.955933,67.11304,0.0002979497 1017,1.0615088,426.13297,16.424484,73.53403,3.753565e-05 1017,1.4076502,211.5022,17.59913,134.63556,2.5345293e-05 1017,610.9793,3.6257293,28.167358,54.770947,2.1823933e-05 1017,3.983283,238.96959,57.628704,218.02214,1.8583838e-05 1017,558.66626,121.63843,80.48041,312.4631,1.643049e-05 1017,1.0006258,307.02838,18.699219,141.13919,1.3631359e-05 1017,1.1448307,88.272064,17.168753,144.16377,9.189022e-06 1017,1.7644141,365.6916,31.226347,129.21411,7.82816e-06 1017,2.1056364,141.95853,32.189125,172.81409,5.0440226e-06 1017,144.17352,1.1532357,77.41356,85.442635,2.4623932e-07 1017,65.4414,6.419045,46.024475,50.245045,1.44512695e-08 1017,107.18116,5.268177,45.917686,52.59049,1.3792495e-08 1017,2.1719923,9.22639,35.335335,81.963684,9.15137e-09 1017,132.41512,0.0,46.76387,53.543056,3.8988426e-09 1017,14.7445345,2.5396338,42.445583,52.375328,7.0883716e-10 1017,198.56303,3.163558,44.4877,58.99068,3.6866127e-10 1018,598.384,225.47058,26.530762,64.17615,99.96955 1018,616.5094,222.05188,22.637268,65.01511,83.002464 1018,480.8292,205.53027,22.197968,48.878143,1.6775529 1018,116.25204,37.719227,49.26275,134.46068,1.0103993 1018,269.9359,226.54657,23.9552,45.963562,0.030819027 1018,621.4031,50.982864,17.743591,54.94908,0.030638473 1018,54.323956,48.181244,23.229939,46.069763,0.02154447 1018,8.247533,335.93875,48.205074,112.59515,0.013827796 1018,588.2336,177.28586,48.82306,244.8558,0.0068603717 1018,195.79852,227.72191,28.512863,57.47667,0.006143288 1018,15.163695,45.784237,27.239117,51.08862,0.005022599 1018,339.0694,222.9456,23.998047,46.551468,0.004340025 1018,56.57019,65.42589,30.528427,79.22237,0.0007567428 1018,2.3557975,350.83395,98.91989,156.22086,0.00071166153 1018,137.49998,109.163216,28.08078,68.39069,0.00056191586 1018,20.616854,449.2074,39.10742,61.93927,0.0004179244 1018,1.9603337,221.9998,34.376637,203.09975,0.0004045814 1018,1.7986873,317.66492,17.910969,141.4288,0.00040136089 1018,607.01587,0.0,32.1308,132.96983,0.00037586765 1018,607.5904,440.454,31.556274,66.78543,0.00033263734 1018,134.42084,35.55884,23.7939,62.05489,0.0002174956 1018,1.4076604,195.60686,20.944538,128.19212,0.000118833326 1018,571.19324,368.2719,67.95343,130.44122,6.39009e-05 1018,614.7076,0.0,24.439087,47.42693,3.7378264e-05 1018,1.58,93.36524,18.950596,83.26716,1.8770254e-05 1018,2.4088786,450.73633,30.649899,60.41034,1.8229783e-05 1018,3.6550636,22.052504,52.17306,107.955826,1.638511e-05 1018,2.2243783,59.094936,35.010593,235.31912,7.320652e-06 1018,565.9894,11.237721,73.15729,271.72186,2.6641699e-06 1018,2.1473682,11.619678,29.402292,73.42954,1.0470876e-06 1018,97.62397,4.601387,78.69926,81.590485,8.8494414e-07 1018,5.0730014,5.540161,63.38544,48.50255,7.683993e-08 1018,82.38713,2.8309343,44.515137,53.18448,8.362892e-09 1018,150.02003,4.495677,43.776413,57.36575,1.2939853e-09 1019,552.26465,211.29594,26.597107,67.81288,99.94572 1019,572.19916,207.47296,27.332092,71.14078,99.941025 1019,607.4485,210.39917,26.479126,61.998535,99.78428 1019,377.35886,174.65196,28.333405,62.07367,0.5982562 1019,415.31052,196.79721,22.725342,45.571564,0.12327348 1019,602.9801,114.94461,34.532776,187.18161,0.013344215 1019,24.582039,89.8775,25.764744,58.80075,0.010404691 1019,20.7125,45.69838,48.446007,117.5905,0.0069477437 1019,157.72086,214.25336,21.393478,45.79129,0.0027774551 1019,43.48499,94.163635,36.867092,72.80759,0.0018660232 1019,2.860275,238.82451,51.817337,171.43727,0.0016955175 1019,3.6292791,62.53858,32.171593,87.56835,0.0015806556 1019,604.9733,37.70126,33.706604,85.78458,0.0011622629 1019,548.9944,136.16771,90.15228,226.22112,0.0009692196 1019,1.7452515,205.37437,19.779085,169.28978,0.0003501175 1019,608.4617,440.83408,30.684998,66.248474,0.00015414877 1019,1.3452727,342.63385,19.069468,155.36261,0.00014130009 1019,4.258724,337.14844,78.326935,151.18219,7.676111e-05 1019,1.4986768,125.7153,18.979492,154.0065,6.2905834e-05 1019,611.52356,251.64375,27.623108,128.69182,4.7648937e-05 1019,3.2206454,34.53218,19.29035,48.867767,1.891646e-05 1019,2.5901597,416.51932,52.86311,80.746796,1.5466032e-05 1019,613.0257,0.0,26.120972,47.338646,1.0200774e-05 1019,580.05383,0.0,59.092834,195.54399,8.72888e-06 1019,1.5084473,7.993164,38.480797,91.5042,4.0753477e-07 1019,564.5445,0.0,46.26471,116.89706,8.4863814e-08 1019,14.291215,1.5369109,69.6582,64.461426,5.1610034e-08 1019,1.1813322,3.458869,20.80208,47.4474,3.99227e-08 1019,580.66754,0.81921875,50.056152,63.99129,1.5662248e-08 1019,67.64851,4.447845,42.66658,54.6717,3.0597622e-10 1019,94.686264,0.38497072,52.208115,64.63801,4.292168e-11 1020,562.669,225.76724,33.56256,75.04224,99.9781 1020,586.5838,221.80399,35.152954,77.494446,99.968124 1020,618.3763,226.64621,20.770386,66.40631,99.01179 1020,396.57373,207.56972,23.421997,47.14537,9.375342 1020,96.38433,223.40738,28.564178,55.044525,0.06380128 1020,452.11105,189.27226,33.44464,64.20282,0.052416477 1020,367.53415,218.82318,22.37851,45.73358,0.034843232 1020,606.36566,153.10687,32.781006,169.8068,0.017137794 1020,2.0147674,45.992847,38.236835,125.2021,0.0065204767 1020,72.52321,219.70901,50.442657,100.65405,0.0051745987 1020,546.9392,199.17287,82.60437,139.0844,0.0037083863 1020,621.0584,85.436615,18.088257,55.246567,0.0012096986 1020,1.3582561,225.53365,18.418242,73.97954,0.00042570208 1020,608.5608,28.249903,30.502075,121.314735,0.000302625 1020,607.91907,439.21054,31.2276,68.698364,0.00016357085 1020,2.2659042,128.78932,33.86857,180.33345,0.0001301447 1020,39.021343,204.38628,108.38876,201.90334,0.00010181213 1020,610.67236,309.83655,28.474304,150.09473,7.795334e-05 1020,0.9746281,377.35153,18.79972,121.108,3.359006e-05 1020,1.5760872,250.78024,33.997375,184.23453,1.9647658e-05 1020,559.10706,0.0,79.776245,168.52165,1.2972768e-05 1020,611.8419,0.0,27.304749,49.19501,8.441719e-06 1020,3.3047802,333.7012,57.39202,152.47662,7.7304385e-06 1020,0.26601726,2.5413184,50.29764,98.44466,5.535751e-06 1020,2.6048844,430.3264,46.789165,69.3569,4.291622e-06 1020,1.0753939,0.0,23.989357,58.97081,6.049131e-07 1020,577.0914,0.0,50.67102,55.50931,8.241486e-09 1020,24.76282,5.9927783,44.588287,54.82522,1.147011e-09 1020,60.79243,1.9733789,51.524723,61.522022,8.562901e-11 1021,375.6302,226.4637,23.200806,46.959274,0.037142295 1021,28.578012,251.10318,25.817461,51.243134,0.0363867 1021,131.80382,229.52951,25.402664,51.58896,0.021425778 1021,1.807819,38.359726,37.633118,128.1664,0.010779003 1021,109.55157,227.1621,37.99534,68.25383,0.010348942 1021,402.98642,223.24623,24.684906,46.641403,0.0030658576 1021,616.8998,9.5485325,22.246887,63.07968,0.0023130274 1021,477.46277,204.12978,25.691254,53.221085,0.001587864 1021,3.0994923,138.28789,32.930405,190.06828,0.00073585997 1021,1.6297982,193.82947,18.294651,77.30298,0.0006533262 1021,15.914159,219.85057,45.79501,110.748825,0.00049482303 1021,493.95297,205.54465,25.800507,51.194305,0.0004811232 1021,616.85406,187.80785,22.292603,85.55034,0.00041760327 1021,1.2335426,48.361835,16.865135,74.401596,0.0003704415 1021,2.1073291,103.71755,23.629229,57.681755,0.00036636743 1021,608.2847,439.3612,30.861938,68.487305,0.00015682794 1021,93.740005,211.66776,76.30911,135.83331,0.00013501171 1021,599.16644,138.21678,39.942993,178.85762,0.00013337491 1021,610.9252,319.47473,28.221497,140.18497,0.00012775327 1021,570.2952,366.49997,68.85144,128.94275,7.908237e-05 1021,1.033191,254.92592,19.139833,148.08214,6.7087414e-05 1021,1.0266577,364.57907,19.851498,107.97455,6.263035e-05 1021,3.3930323,253.21722,56.915318,224.7467,3.602237e-05 1021,611.88165,239.31355,27.265015,146.66884,3.1365802e-05 1021,1.253737,442.79562,21.292051,59.40204,2.0380941e-05 1021,597.69543,0.0,41.299255,154.80263,7.5497796e-06 1021,1.7303256,6.289388,81.8968,251.94203,1.7177665e-06 1021,0.7246419,0.0,28.001722,81.08848,5.762067e-07 1021,16.545128,6.706665,45.714237,54.5463,1.0004408e-09 1021,54.72447,4.7427034,45.42425,53.96743,1.168126e-10 1021,78.18936,0.0,51.345566,66.0542,3.7728775e-11 1022,152.59648,229.9717,36.89688,70.28694,0.82474715 1022,452.02637,218.81776,23.651917,45.348373,0.044621706 1022,516.87933,170.25696,40.327576,96.03003,0.00717672 1022,30.045414,106.731346,23.146984,49.732063,0.0019881579 1022,431.85724,217.71698,32.048126,60.695892,0.0018704168 1022,73.45292,208.15335,25.65297,51.920288,0.0015755359 1022,616.53796,74.94545,22.608704,80.234055,0.0010483252 1022,375.03406,192.7046,38.042877,73.49681,0.00082032976 1022,15.112696,96.02719,28.076223,56.501144,0.0005980637 1022,8.712301,38.45991,43.30654,128.76373,0.00046930846 1022,611.3399,129.47903,27.806763,142.20148,0.00025785607 1022,538.43256,208.56815,22.135437,55.11023,0.00025590876 1022,608.39874,439.99365,30.747925,67.13168,0.00017949875 1022,430.86166,149.93065,32.876465,84.17685,0.00016546756 1022,1.5448087,189.3297,18.636442,72.41255,0.00016483378 1022,612.3087,331.98718,26.837952,145.68173,0.00015066526 1022,617.15674,248.38889,21.98993,88.88425,0.000118013064 1022,1.750162,99.39796,18.875685,79.910866,9.872491e-05 1022,138.28778,216.97266,71.97073,140.72824,9.2769835e-05 1022,2.7128696,112.293205,33.435814,188.60861,8.808412e-05 1022,0.9709668,385.5261,18.016281,73.5358,6.44422e-05 1022,586.76074,169.91545,52.291016,250.49825,3.045533e-05 1022,3.5752084,201.30157,58.456955,225.1915,2.4099047e-05 1022,361.9911,155.47935,79.40991,152.44673,2.141636e-05 1022,1.2312118,442.78,21.306675,59.548706,1.3552419e-05 1022,6.0048375,366.5698,78.13757,119.79178,1.1849965e-05 1022,1.4902881,232.92542,28.20412,149.36209,1.1719864e-05 1022,586.61914,42.50632,51.7912,194.33495,7.4440104e-06 1022,1.5934294,0.0,43.47211,68.703125,2.5583468e-06 1022,1.6494019,16.129675,21.456144,119.09266,5.848789e-07 1022,611.95496,0.0,27.191711,61.27396,2.1693356e-07 1022,72.757225,7.5981903,78.02613,151.12262,4.1183853e-08 1022,87.118645,2.657246,51.943474,66.56543,6.835921e-10 1022,47.747936,6.6589684,42.361767,53.01657,6.2926586e-10 1023,425.42084,201.0739,18.666473,46.710434,5.4218783 1023,514.2805,215.18523,27.881226,71.64052,0.6290733 1023,544.83765,218.73215,23.136963,49.078186,0.049839146 1023,595.12445,161.6047,43.365723,106.85483,0.018635383 1023,531.00726,218.34969,25.865479,60.859116,0.0025283727 1023,22.940842,72.01675,40.128353,75.78277,0.0013384483 1023,616.48376,231.96458,22.662903,92.61046,0.0009596249 1023,495.70142,222.61066,24.221863,60.947266,0.00086358713 1023,615.9945,65.039696,23.15216,83.749886,0.00069413066 1023,1.1244743,171.98097,18.507652,78.86037,0.000299042 1023,611.3892,354.27344,27.757446,148.69617,0.00014286948 1023,617.2506,293.39996,21.896057,79.68109,0.000114179464 1023,1.3462045,88.161644,13.376699,52.89466,0.000101347345 1023,4.0059557,83.352394,56.951313,220.21002,8.679652e-05 1023,600.27734,225.19318,38.869324,205.71182,7.221679e-05 1023,476.48898,132.4378,135.75119,226.72617,4.1649502e-05 1023,585.0837,7.194922,54.047913,135.92032,3.4458382e-05 1023,0.9418685,229.66022,17.503914,143.61795,3.0108786e-05 1023,574.2772,428.29865,64.869446,70.25021,1.6007809e-05 1023,540.40955,97.74765,40.08081,155.01079,1.2302816e-05 1023,1.176399,336.17804,19.84543,105.6189,8.934124e-06 1023,393.273,133.06888,99.71451,207.38043,7.774058e-06 1023,4.3493557,1.1281706,77.45661,164.33736,7.438248e-06 1023,516.5622,78.81897,42.205017,162.16281,6.3691054e-06 1023,3.8253467,223.49495,57.22753,226.47786,6.3122166e-06 1023,0.95340985,422.3922,17.295305,79.67905,5.764818e-06 1023,2.2485108,39.45503,29.626337,156.22487,5.0972244e-06 1023,405.62665,418.492,74.785126,78.31958,2.468517e-06 1023,5.6619534,356.878,78.49368,131.34842,2.239753e-06 1023,331.1372,424.7937,74.31149,71.95703,2.032647e-06 1023,236.87386,393.87292,113.091446,99.16739,1.6642527e-06 1023,99.631096,394.32678,112.12093,100.22095,1.0097784e-06 1023,446.41367,426.5252,73.67282,72.49643,9.467807e-07 1023,197.61784,426.96902,77.18407,71.55307,7.25479e-07 1023,216.9708,2.769567,43.827606,54.625057,6.4788117e-07 1023,31.098558,422.91595,80.16405,78.83911,3.828303e-07 1023,1.2320931,34.666428,13.259813,53.40589,2.0080452e-07 1023,36.67738,32.201973,27.7308,72.34694,1.1799063e-07 1023,2.0219986,3.0442286,64.94673,58.29474,1.02401806e-07 1023,81.8284,7.037647,42.615784,51.682907,7.959553e-10 1023,497.91934,3.1127913,62.971527,53.23596,5.983689e-10 1023,38.694553,4.5899267,46.974293,48.136818,5.0738663e-10 1023,360.30856,0.7188021,44.635315,56.727814,7.141987e-11 1024,460.14648,191.26761,23.594635,57.159058,99.40266 1024,606.70447,194.73836,32.16571,79.55986,0.0057597193 1024,439.37888,189.0661,34.222504,65.79559,0.0034827313 1024,624.036,222.63185,15.110657,45.315323,0.0017829352 1024,417.18402,188.51642,21.353333,47.00934,0.0017055332 1024,584.6145,157.18427,52.39038,185.09204,0.0009236058 1024,447.1003,164.54988,54.395416,108.32793,0.00078162603 1024,620.1178,111.45996,19.02887,57.40428,0.0006177865 1024,585.28546,194.70027,24.64032,60.196503,0.000547032 1024,606.5365,253.3684,32.0755,79.61418,0.0005380311 1024,0.80604655,362.99323,11.191977,45.13919,0.00046493337 1024,615.5049,43.281155,23.641785,90.604706,0.0003117963 1024,616.585,146.69913,22.561646,93.715195,0.00030864464 1024,607.5261,437.45303,31.620544,68.92505,0.00022172144 1024,5.315801,81.41833,64.76965,194.58282,0.00020079679 1024,1.6065731,199.74487,18.431166,134.4335,0.0001672554 1024,2.3002012,132.95721,29.772411,157.5282,0.00016352031 1024,571.4296,214.31589,25.031677,58.637787,0.00014044298 1024,595.57275,219.16158,20.337402,46.84282,7.4534e-05 1024,1.6668735,245.76181,33.573616,199.55084,6.2799256e-05 1024,1.2251343,337.41788,19.833324,90.44223,6.2239036e-05 1024,570.01135,366.20966,69.135315,129.53665,5.128128e-05 1024,1.6684091,44.637157,18.758953,82.59714,2.8398703e-05 1024,1.2024487,363.57916,30.232716,133.40115,1.558378e-05 1024,415.85892,116.714066,133.06448,235.2787,1.399145e-05 1024,4.9970865,338.0356,78.21966,151.57285,8.498246e-06 1024,594.7821,3.517855,44.364563,88.92144,3.9380334e-06 1024,1.2851188,442.03677,21.76889,62.13449,1.8879654e-06 1024,2.6180062,7.4432487,58.977814,124.48224,1.4708789e-06 1024,1.4206715,0.51188314,22.83109,52.665554,5.82512e-07 1024,36.974506,428.22443,72.037704,72.44589,3.8265662e-07 1024,11.727071,1.3598356,37.634544,45.960598,3.8297747e-09 1024,524.3868,3.8738723,64.02301,52.084198,2.647187e-09 1024,572.08655,5.989854,43.69818,55.861816,2.3372484e-09 1024,61.290535,6.7816377,43.747116,50.15715,1.5018222e-09 1024,32.064613,6.156657,44.886833,55.071598,4.8616067e-10 1024,86.85075,6.5386686,45.04953,55.072765,6.94427e-11 1025,528.9584,200.91423,28.64502,69.65895,99.885216 1025,482.32782,201.2198,23.524628,55.80629,0.01075668 1025,504.51028,190.84164,37.815277,97.28873,0.008188878 1025,605.3057,259.57,32.322388,76.239685,0.003690306 1025,587.37354,109.51072,50.205444,232.04315,0.0021675206 1025,549.8,207.76239,23.648193,54.02368,0.0018247649 1025,374.4803,191.75067,22.486938,45.974304,0.001377315 1025,621.16547,106.22383,17.981201,60.92035,0.0013286937 1025,484.10605,166.39133,41.647614,109.087524,0.0006724244 1025,624.5836,281.97018,14.563049,46.484497,0.00057519187 1025,609.36957,77.513504,29.7771,147.89801,0.00046879536 1025,1.4282821,91.687546,19.928406,163.52054,0.00032486054 1025,511.62866,184.86685,67.831116,142.43704,0.00030357484 1025,1.0069836,225.28853,13.44808,54.622665,0.00017421141 1025,619.28644,65.05133,19.86023,62.82776,0.00017083423 1025,621.0626,146.3936,18.084045,59.753662,0.00017037832 1025,607.231,440.00656,31.91565,66.087524,0.00016028692 1025,616.6502,192.7095,22.49646,86.43475,6.676535e-05 1025,602.7977,330.6025,36.348938,162.08432,3.5174766e-05 1025,1.4441626,192.32143,19.926733,126.31386,3.4011948e-05 1025,1.0485616,325.6707,17.687592,70.65515,2.038868e-05 1025,1.4123975,61.37168,19.202703,76.70669,1.9181909e-05 1025,3.9085288,168.17595,57.66178,203.57936,1.753195e-05 1025,0.87937826,366.97263,18.524303,78.6525,1.4184445e-05 1025,109.37537,198.35527,41.5737,122.10698,1.36680155e-05 1025,606.0646,2.6461623,33.082092,63.675423,1.126014e-05 1025,4.2575474,325.35175,57.889473,155.1438,8.010315e-06 1025,493.19617,142.13211,20.268494,46.020935,4.764512e-06 1025,585.2557,13.0289135,53.89099,124.27452,4.348161e-06 1025,0.8855632,420.16315,16.20421,81.29312,3.1434488e-06 1025,2.3479037,23.536882,78.59794,234.66673,2.518741e-06 1025,420.09497,428.96594,71.36279,73.40231,2.284155e-06 1025,249.86339,431.1438,71.393326,70.80023,1.073621e-06 1025,209.20232,432.07593,72.802505,70.39581,7.1429145e-07 1025,141.40764,422.46704,71.70891,77.76688,6.6281274e-07 1025,21.191902,428.8158,75.94224,72.61496,6.3739765e-07 1025,1.2164323,7.840202,19.734278,81.09252,2.9898112e-07 1025,580.6426,3.391971,43.10022,55.779995,2.6465216e-08 1025,4.5231705,6.2519193,64.09213,51.731586,6.306179e-09 1025,54.152775,8.789237,42.151653,46.07596,1.7733025e-09 1025,81.06004,9.18544,44.400894,51.497673,7.346161e-11 1026,426.7382,211.9865,21.408966,49.0009,0.7003971 1026,569.3562,219.70248,27.353333,57.12262,0.15896541 1026,597.58,254.386,40.047607,104.16756,0.004633093 1026,618.7993,299.11816,20.347351,57.73755,0.0021153193 1026,616.0727,227.09274,23.073975,89.37668,0.0018613755 1026,619.75574,144.23444,19.39093,66.98828,0.0012869355 1026,12.381836,221.92113,37.579144,104.60249,0.0012476457 1026,22.904745,184.98265,41.440987,100.048325,0.0006837447 1026,585.5367,95.54029,53.105164,250.91968,0.0006216546 1026,1.5826954,200.93793,18.890072,136.6749,0.00058583985 1026,622.0535,214.57326,17.09314,50.340164,0.000585008 1026,110.09434,217.48187,37.055595,87.27731,0.00014787505 1026,608.4996,439.9462,30.647095,65.14731,8.233945e-05 1026,610.636,55.4341,28.510681,154.21216,5.263363e-05 1026,613.0034,319.04324,26.14325,158.10172,4.507612e-05 1026,2.318742,99.18272,32.381187,194.90039,3.8651375e-05 1026,3.8703613,228.72818,57.089485,237.79596,2.9139832e-05 1026,1.0043937,308.8632,18.676788,80.19083,2.7061818e-05 1026,417.53265,144.39626,33.76584,76.86656,1.911912e-05 1026,405.72916,160.4054,71.479095,151.37012,1.5682823e-05 1026,616.0075,17.849245,23.13916,80.7757,1.32863e-05 1026,1.3702832,318.37268,28.631655,154.87659,8.711217e-06 1026,0.9279883,413.247,18.152382,73.2366,5.093687e-06 1026,360.8508,396.0513,110.93152,96.939026,3.39779e-06 1026,496.39835,97.499794,71.65201,200.71893,2.814579e-06 1026,1.4426318,93.16582,18.119415,68.59534,2.7600242e-06 1026,3.8189063,397.0468,57.512165,99.12915,2.590272e-06 1026,427.07,431.02188,70.644165,67.99979,2.4741548e-06 1026,1.0721496,72.06324,13.294895,45.581505,1.028052e-06 1026,2.0523357,18.564356,54.761406,106.971954,1.7122407e-07 1026,389.13953,1.8908106,45.008118,54.817287,8.790691e-08 1026,1.1003325,10.118376,14.969078,77.16941,6.5213825e-08 1026,5.736556,7.6634636,42.131218,51.104115,2.3341211e-09 1026,360.47043,3.3742807,42.29483,48.687447,1.184532e-09 1026,61.17918,9.895402,40.84177,46.96928,3.1592146e-10 1026,88.555405,6.220817,43.298416,53.428814,6.0798866e-11 1027,76.9382,186.53503,34.188713,78.40225,0.0818123 1027,461.82626,203.43665,24.449127,55.819946,0.040387988 1027,68.239914,185.1586,27.056198,46.77162,0.030951973 1027,1.990682,178.77895,22.238117,61.641266,0.022262024 1027,623.6089,308.57623,15.537781,45.608612,0.017809479 1027,491.48413,209.7351,30.96759,81.20984,0.004048918 1027,606.8703,275.377,31.631104,75.17856,0.0027790638 1027,624.4425,278.08722,14.704163,46.27481,0.0016552294 1027,472.4041,207.12984,31.56491,78.17781,0.0015558297 1027,94.56408,187.03998,34.91961,68.25342,0.0012613488 1027,622.3421,203.0311,16.804565,51.9563,0.00036411453 1027,56.238125,191.70802,24.638515,47.275757,0.00036364255 1027,451.07178,213.15428,23.490936,56.692795,0.00035573618 1027,527.0788,190.39688,42.527283,124.91513,0.00031152167 1027,610.85504,172.26154,28.291626,158.78128,0.00021361865 1027,572.2165,33.60158,66.47998,119.35832,0.00020876211 1027,149.18857,236.66158,32.317993,68.97215,0.00018910342 1027,509.09943,215.69218,24.853271,63.26207,0.00015464204 1027,608.8671,7.2451825,29.904297,52.7804,0.000111936126 1027,613.1297,294.836,26.016968,149.18582,0.00010686156 1027,2.0174024,138.04189,35.027035,176.10109,9.595632e-05 1027,608.08496,440.65616,31.061707,64.441864,8.962812e-05 1027,615.3996,49.66935,23.74707,81.07891,6.8530615e-05 1027,610.58685,76.463036,28.559814,133.28802,5.8690683e-05 1027,154.75868,211.51613,24.72194,58.15773,4.5299093e-05 1027,571.2591,196.0665,67.60394,221.08124,3.6624097e-05 1027,1.3790951,358.39148,17.72445,73.530426,3.2595373e-05 1027,61.08538,166.72766,70.56667,157.27301,3.0475843e-05 1027,5.4968424,137.68419,76.82071,243.8264,2.5547246e-05 1027,572.29926,354.74408,66.84741,133.81647,1.5873635e-05 1027,1.0528035,264.2082,18.904158,136.05319,1.51832455e-05 1027,0.8410034,225.16495,18.87823,84.05252,1.3695182e-05 1027,0.886176,418.88593,15.972692,82.01044,6.475355e-06 1027,256.87683,431.6767,69.254974,66.284515,4.6687946e-06 1027,3.850765,338.40762,56.778435,143.25165,2.145008e-06 1027,183.61455,398.061,113.041824,97.818756,1.732643e-06 1027,206.79216,443.80386,41.2912,55.58026,1.4714234e-06 1027,1.1784693,42.874916,17.005692,153.60562,2.0048958e-07 1027,2.5702882,17.925144,54.71785,106.7522,6.267858e-08 1027,0.9354501,11.476394,13.166506,74.81296,1.6612383e-08 1027,552.05664,11.700261,41.509277,45.54293,1.31795295e-08 1027,1.5136768,7.8414683,38.16682,47.002457,4.4984665e-09 1027,26.395153,8.589898,40.70029,46.82574,4.362141e-10 1027,54.634254,8.724653,42.05974,49.361794,1.291435e-10 1027,345.3236,4.520285,42.20523,46.43077,1.6156809e-11 1028,577.43604,191.10805,29.262695,62.35904,68.17224 1028,597.5024,185.61636,30.962952,71.629395,0.37098956 1028,587.9402,163.74472,48.71582,182.66019,0.006284022 1028,554.35504,187.12631,33.43927,79.60181,0.004654288 1028,621.8814,196.3471,17.265259,58.773346,0.0019467911 1028,613.27905,58.950367,25.726196,90.08304,0.0012225731 1028,612.6768,224.7393,26.20398,102.556015,0.000660774 1028,107.396996,201.74948,30.701424,62.780853,0.0003423928 1028,178.44455,201.77238,22.830505,48.27423,0.00023567349 1028,617.4952,396.69968,21.65149,79.2193,0.00016263893 1028,1.3903239,93.2019,18.153324,136.699,9.0372865e-05 1028,608.2792,438.92044,30.867493,66.64743,6.5942346e-05 1028,602.014,329.13693,37.13269,162.09882,3.7170805e-05 1028,1.8471159,129.41873,36.01321,167.44305,3.0243407e-05 1028,585.5497,6.950918,53.596985,133.12015,1.5935884e-05 1028,1.1007837,201.05437,18.195002,76.813095,1.4324312e-05 1028,203.41974,204.92937,22.232712,52.235703,1.2277007e-05 1028,4.136815,171.88704,57.128456,239.46214,1.11259305e-05 1028,613.49316,0.0,25.653503,46.69858,8.6662385e-06 1028,561.3062,107.57102,43.11432,161.70825,6.292455e-06 1028,0.87100506,227.19939,19.89148,138.21748,5.916313e-06 1028,1.1480721,332.42343,18.051544,71.6369,5.158578e-06 1028,0.84731936,305.06247,13.508633,45.944244,4.5400034e-06 1028,0.8656096,392.0881,18.246214,72.65515,4.2570873e-06 1028,1.5126449,292.87872,33.648994,168.60919,1.6787972e-06 1028,1.0883017,443.45038,21.402641,59.501984,1.5877504e-06 1028,6.182689,359.41278,79.16725,128.9704,9.861519e-07 1028,3.2500553,432.76004,53.04001,67.00806,2.6044592e-07 1028,491.128,2.5903678,44.645996,60.23476,1.8334159e-08 1028,1.3353142,9.317438,19.770964,57.305023,6.7306756e-09 1028,2.8013494,16.480711,57.889328,119.06787,4.5063326e-09 1028,517.40546,1.9832569,47.46826,50.22462,2.313043e-09 1028,299.07047,3.1633236,42.034973,53.220264,1.8698325e-09 1028,579.78613,4.2365465,43.67383,57.98549,1.2433504e-09 1028,40.748703,6.568275,42.008553,51.827885,2.1693477e-11 1029,601.7392,237.80368,35.99756,85.111725,0.060201745 1029,75.197,214.02895,22.414421,47.587997,0.012312121 1029,622.6774,215.30522,16.469238,51.832077,0.00229326 1029,573.6632,187.92725,63.82135,161.5922,0.0009835308 1029,154.41708,233.32738,33.482285,72.39693,0.000729805 1029,617.3013,63.38998,21.845398,82.099106,0.00049352145 1029,388.26773,200.07275,23.220673,52.461,0.00045532815 1029,615.09576,274.49173,24.050903,82.87842,0.00035668258 1029,235.6739,234.87027,22.320602,49.48053,0.00014408535 1029,395.49673,183.06985,35.951263,76.624725,0.00011257847 1029,4.6922235,135.39268,58.01864,219.65175,9.776811e-05 1029,617.21594,146.5753,21.930725,83.941025,7.5048985e-05 1029,1.3493506,380.8842,17.465439,72.263,6.752685e-05 1029,1.278132,239.69025,17.096891,137.35123,5.7767487e-05 1029,612.4609,314.76196,26.685791,155.43243,5.3294752e-05 1029,412.9033,172.52417,40.424683,99.42828,4.4164663e-05 1029,1.5461715,185.1012,18.768091,79.53085,2.5577376e-05 1029,578.98724,177.08383,36.54004,95.35886,2.5549974e-05 1029,140.25824,218.83461,67.44765,172.19365,2.1565194e-05 1029,579.9413,427.01648,59.205383,73.64197,1.7028788e-05 1029,2.3209198,102.14587,29.368454,159.04034,1.6597742e-05 1029,1.6991488,119.25729,18.067617,72.25375,1.32604e-05 1029,613.95276,0.0,25.193909,45.450893,1.3228785e-05 1029,2.0124545,297.07672,33.351353,177.92422,1.282667e-05 1029,567.7718,79.208084,43.60132,159.80992,1.21602025e-05 1029,2.8321013,419.2423,52.06583,77.55078,6.1598116e-06 1029,584.1401,8.6664,55.00659,122.64636,5.836333e-06 1029,28.779896,422.29376,74.00484,76.77063,2.044202e-06 1029,84.11015,420.30167,70.34735,78.55679,1.7647855e-06 1029,1.521001,451.96875,28.40739,52.75772,1.5376037e-06 1029,126.952515,423.92532,70.51367,72.47031,5.1106366e-07 1029,437.22906,8.802663,40.950104,45.585365,2.3150305e-08 1029,1.4550732,19.902943,18.188202,117.12982,9.326081e-09 1029,2.538724,17.570911,58.09978,116.3255,1.4117225e-09 1029,462.28876,7.3114944,42.873535,47.519146,9.0491653e-10 1029,551.5831,6.2464437,42.907898,51.36253,2.363157e-10 1029,34.337475,7.0586166,41.414288,50.99748,6.0122865e-11 1030,18.160912,191.89558,29.956684,49.063934,0.02105706 1030,611.5895,203.65921,25.969666,58.03479,0.006742422 1030,6.3315787,199.06859,26.057264,54.463806,0.004352434 1030,597.3554,160.3699,39.065125,136.02069,0.00087085756 1030,212.71397,244.56725,35.28038,88.54176,0.0007882937 1030,493.1547,217.00029,32.358368,70.435684,0.0005963943 1030,615.50775,254.73112,23.638916,92.14549,0.00027081333 1030,617.49347,403.64722,21.653198,78.20972,0.0001854529 1030,615.9232,39.864967,23.22345,89.54746,0.0001610174 1030,227.47217,214.4612,32.23297,72.19447,0.00015971545 1030,1.773711,209.76894,18.826105,76.982895,0.0001526062 1030,208.16371,231.32573,26.619003,61.691086,0.0001068693 1030,128.4234,211.37433,34.12213,52.519897,8.268388e-05 1030,2.6974545,172.28268,33.2462,161.28595,7.039966e-05 1030,620.7158,108.86364,18.430847,62.682686,6.457354e-05 1030,195.15027,223.43948,70.87552,154.58716,5.530431e-05 1030,412.6771,202.92535,32.309418,68.35263,5.33711e-05 1030,609.8105,83.760796,29.336182,156.68216,4.463015e-05 1030,602.94244,330.80185,36.204224,160.02493,4.05039e-05 1030,0.8960767,237.95448,17.376606,148.42485,3.516182e-05 1030,3.3810678,227.78418,57.52847,239.07162,1.3792528e-05 1030,431.90503,108.79228,40.948364,151.83534,9.42732e-06 1030,0.8364852,336.8098,19.937513,137.41727,7.591829e-06 1030,0.9186829,427.18747,13.406012,47.021973,4.823305e-06 1030,1.6987687,78.44896,19.187857,149.53339,4.719434e-06 1030,1.4930676,92.43182,12.882753,48.71721,4.2144866e-06 1030,612.0143,0.0,27.132385,49.248535,3.331524e-06 1030,1.6953988,458.8618,27.937454,45.502747,2.0689693e-06 1030,96.90034,429.02505,71.783806,71.2699,6.4983163e-07 1030,3.6717987,398.71957,56.00401,96.987885,6.024857e-07 1030,147.38074,429.59882,71.56883,69.19739,4.4744596e-07 1030,2.9024985,24.82595,60.871838,244.15393,1.2864906e-07 1030,286.4577,1.5769451,41.62909,52.53275,3.4039356e-08 1030,1.2910165,8.948246,11.405515,90.482285,2.7944205e-08 1030,1.9507422,8.702897,37.426384,84.39384,7.826685e-09 1030,311.18857,4.3189716,42.493744,51.117104,5.1289706e-09 1030,586.42346,0.0,42.35028,60.937122,1.6838744e-09 1030,19.592165,5.912108,43.55401,56.382854,1.2467458e-10 1031,3.4856608,186.54936,24.54293,46.557495,0.052564416 1031,21.268744,187.62839,22.794107,47.378616,0.010671006 1031,577.1407,78.27494,58.58081,148.24432,0.0015497657 1031,614.23456,58.926655,24.645203,91.75868,0.0013211832 1031,0.99947554,207.40588,13.244568,48.977936,0.00073421054 1031,625.84827,181.71713,13.298401,45.189438,0.00064803124 1031,616.58185,212.67847,22.56482,81.782776,0.00063890754 1031,625.1434,48.691063,14.003296,46.48082,0.000566713 1031,407.8233,204.67955,25.349274,54.19719,0.00053348264 1031,428.65555,198.20738,22.930206,51.256897,0.00051337236 1031,1.6745867,121.77756,18.551712,131.80652,0.00032391085 1031,617.4893,396.07254,21.657349,79.65152,0.00019155635 1031,615.6354,153.66724,23.511292,92.03441,0.00017613439 1031,600.0185,172.99281,38.67334,173.1035,0.00015691215 1031,2.1331706,162.49472,33.388885,165.19897,0.00013396755 1031,617.4228,307.7701,21.723877,84.14816,0.00010027751 1031,388.4506,216.36354,55.36563,126.888565,8.243327e-05 1031,602.13306,267.31848,37.01361,175.57196,4.9449154e-05 1031,608.6255,439.95126,30.52118,66.25839,4.408984e-05 1031,586.00775,1.0528516,53.138916,141.53494,3.592473e-05 1031,1.1046485,225.06285,17.941652,78.11342,2.4244133e-05 1031,613.3143,0.0,25.832397,48.21783,1.9636269e-05 1031,571.9281,357.7549,67.21857,130.61526,1.7557548e-05 1031,5.494883,203.73286,76.238594,258.37567,1.1345651e-05 1031,1.0053109,344.36685,19.434008,129.65436,5.7547327e-06 1031,481.4208,122.62571,39.424835,130.58212,5.408268e-06 1031,0.6473381,270.38345,18.858475,79.76291,4.7466337e-06 1031,3.6387777,397.8586,56.074726,97.35303,6.017141e-07 1031,1.2718123,6.6096225,16.490868,85.46954,4.859167e-07 1031,154.79779,429.79352,71.39044,68.586975,4.2852238e-07 1031,29.206976,433.28702,73.7412,68.91269,2.2799665e-07 1031,3.19215,19.955528,61.18575,223.30267,1.0629557e-07 1031,2.2322266,7.3388705,52.743267,80.94195,3.490798e-08 1031,286.70612,0.0,42.46164,64.1033,2.1036902e-08 1031,511.14554,8.256234,42.0726,52.57694,1.3440345e-08 1031,484.17136,7.1756315,41.71988,53.531883,7.70502e-09 1031,579.62036,2.0299187,43.694885,57.92076,6.3501746e-09 1031,538.852,9.215152,42.481873,52.297493,2.4526456e-09 1031,26.190702,3.3700116,41.74621,54.00637,1.1301401e-12 1032,460.0397,220.30441,23.673645,50.475403,5.2570453 1032,471.56656,201.78902,32.210907,74.278336,0.013641226 1032,619.3689,125.21959,19.777771,61.028336,0.0036146033 1032,610.2746,232.12746,28.87207,127.63228,0.0032370083 1032,598.68506,91.97284,38.94763,108.72362,0.0019951917 1032,585.3431,209.2148,50.20111,225.35548,0.0012735567 1032,618.7551,206.35289,20.39154,72.34993,0.0010923444 1032,34.277283,189.47035,26.81945,47.691223,0.00096689584 1032,611.3123,406.7354,27.83435,104.411255,0.00071689027 1032,514.2418,344.4078,44.95819,127.045685,0.00071520155 1032,12.825534,180.37029,21.504856,53.508255,0.00069567875 1032,0.5334798,204.70297,18.304249,85.327484,0.00025103297 1032,485.44122,248.66531,36.52545,76.757965,0.00020444769 1032,617.7279,156.72034,21.418762,82.4487,0.00015339718 1032,0.0,354.47644,26.149849,125.65738,0.00013510264 1032,569.33234,34.22811,66.823975,264.83682,0.00010563551 1032,0.18797934,221.94539,27.64747,159.5258,7.631317e-05 1032,0.7210571,311.82648,18.588531,85.34503,6.9157875e-05 1032,2.4802067,104.17535,32.681126,173.54462,6.7596695e-05 1032,567.62823,334.4959,69.852844,152.62515,6.5342254e-05 1032,1.917264,159.0869,18.5312,77.92987,4.7112455e-05 1032,486.62344,284.3861,113.48251,201.20923,4.3420037e-05 1032,427.13324,150.40599,127.38074,204.5648,2.7787079e-05 1032,608.4897,9.247747,30.656982,132.80719,2.0701025e-05 1032,581.9493,437.64523,45.720764,68.28311,1.3239476e-05 1032,0.0,274.88678,14.976797,67.57385,1.2144059e-05 1032,1.9022315,242.60063,55.05264,232.75777,1.1171052e-05 1032,4.850283,115.35412,79.12453,243.80933,6.0722755e-06 1032,511.55475,414.56262,75.746826,84.19394,6.0008447e-06 1032,0.0,407.46674,13.138682,51.225708,4.7018593e-06 1032,1.4990268,421.99963,52.562935,79.10263,1.1823399e-06 1032,1.4526807,42.14946,18.985771,142.68265,1.0137654e-06 1032,613.6566,0.0,25.490051,53.01407,8.013215e-07 1032,1.3387997,10.007989,16.61086,79.82738,1.9302053e-07 1032,3.6009507,22.513699,60.792862,206.34843,9.331585e-08 1032,436.155,7.0425687,43.814087,45.25303,4.7332577e-08 1032,569.2878,5.0657783,65.95502,58.846554,7.301955e-09 1032,462.75418,3.8481903,41.631134,45.23803,6.7615047e-09 1032,5.538558,6.3244095,44.01976,54.524857,3.3726916e-10 1032,531.7352,3.1269433,44.452454,55.435585,2.6059957e-10 1032,294.3362,0.6806397,39.763184,49.050407,1.9627987e-10 1033,532.3018,146.45079,45.417725,137.64238,0.026275234 1033,520.8513,205.8554,37.322815,87.32091,0.0042986693 1033,538.8264,200.20634,24.404724,52.593536,0.0019553911 1033,620.9791,40.7834,18.167542,59.56344,0.0004977039 1033,479.28403,205.22075,21.222168,49.43007,0.00035936903 1033,3.2104394,185.0182,41.27841,126.44154,0.0002955916 1033,608.95526,3.5807943,29.633118,134.59885,0.00023146237 1033,1.409458,242.92331,18.71829,74.08856,0.00022470676 1033,1.681788,148.36229,18.325048,81.77524,0.00016081377 1033,387.95914,218.32814,20.36734,48.388474,0.00014871525 1033,616.68317,220.3599,22.463501,85.583405,0.0001462422 1033,22.459515,215.19406,38.1992,67.14166,0.000115933406 1033,5.3531237,226.11832,25.286938,57.0513,0.000106054635 1033,612.55,374.122,26.59668,127.10983,9.1964896e-05 1033,600.90814,143.95207,37.488037,177.68071,8.0259655e-05 1033,1.175271,212.97256,13.738453,52.125214,6.053831e-05 1033,612.03784,264.07773,27.108826,120.52167,6.0217582e-05 1033,617.3325,174.55804,21.814148,76.45871,3.467791e-05 1033,588.57965,279.3934,50.567017,202.36536,2.9532743e-05 1033,1.0163851,371.29782,19.39782,125.89697,1.839885e-05 1033,1.875997,240.49734,29.769882,159.83395,1.45483755e-05 1033,5.85765,142.36148,76.556946,228.38846,6.684576e-06 1033,1.1309285,326.2679,17.95102,70.81586,4.343337e-06 1033,2.7666748,390.4505,56.593433,103.86676,3.5202409e-06 1033,518.7046,53.98593,37.693237,117.17441,8.4203447e-07 1033,21.142666,431.62424,75.24434,70.431305,5.0823104e-07 1033,1.5712314,44.704735,18.816942,151.93695,4.190038e-07 1033,574.515,20.306889,42.079285,128.42885,2.2627933e-07 1033,579.80505,6.4978843,42.324158,57.79343,7.150981e-08 1033,1.3771875,12.456185,14.595436,74.612564,4.63137e-08 1033,2.727946,25.153086,62.142757,216.38968,3.705142e-08 1033,498.38126,8.370306,42.04605,49.927177,2.0207851e-08 1033,395.07822,7.0241394,42.13086,50.308388,1.2207988e-08 1033,525.05096,8.575861,42.32959,49.49064,1.2017873e-08 1033,2.1225765,9.365264,53.913353,73.75831,3.0848915e-09 1033,373.17816,2.0113754,41.92807,45.0712,2.0507314e-10 1034,501.39767,204.63274,23.989044,61.864426,20.981945 1034,482.30542,205.83038,23.338196,51.315887,2.4363387 1034,606.116,207.88254,31.835938,90.495636,0.044991992 1034,623.0672,211.6723,16.079468,47.69171,0.012604683 1034,470.78012,205.98451,41.2706,129.15376,0.0017295039 1034,384.79892,226.99443,26.908264,65.16722,0.0016032184 1034,136.01987,221.05165,22.667099,45.93553,0.0014941844 1034,518.0805,218.31267,20.541931,50.202194,0.0009798291 1034,1.1566801,196.65437,13.348135,60.170578,0.00089307904 1034,92.552376,219.7767,24.680832,47.954193,0.000798509 1034,593.27576,207.76833,25.987488,60.8239,0.0003529678 1034,2.0894775,183.85287,28.428455,141.4071,0.0001666558 1034,587.93567,187.23338,51.211,221.31221,0.00015985064 1034,621.18805,171.17123,17.958618,63.392944,0.0001355462 1034,615.9047,260.5198,23.241943,88.48581,0.00011875719 1034,208.70593,229.36017,24.759201,55.109985,0.00010595373 1034,608.4487,437.0472,30.697937,68.68521,9.21925e-05 1034,404.3952,223.70053,30.490448,59.72336,8.7915694e-05 1034,603.8623,337.26257,35.284363,152.44556,4.7433758e-05 1034,610.9051,93.64589,28.241577,166.00954,4.0892683e-05 1034,4.419585,199.83176,56.998177,229.14383,2.6465756e-05 1034,1.2926164,337.2298,18.052818,77.37546,1.3069304e-05 1034,615.0591,19.611944,24.087585,89.789604,9.161477e-06 1034,1.1816748,391.1658,18.303928,74.03192,7.4653244e-06 1034,457.8812,148.4127,134.68167,218.02022,5.843116e-06 1034,1.8885059,341.76773,32.559357,146.4263,4.2539705e-06 1034,1.2999789,88.9667,18.5565,158.61539,2.2625786e-06 1034,1.2524414,442.75897,21.607267,61.10376,2.2413471e-06 1034,2.2459538,17.19662,61.71931,235.52301,1.3658055e-06 1034,3.331473,430.571,53.25018,69.52005,7.0900586e-07 1034,1.3725578,9.20377,16.621622,78.50845,1.8598149e-07 1034,512.94794,3.0343654,39.814636,51.399445,5.2926064e-10 1035,547.5991,196.29277,28.922363,66.4189,13.266355 1035,514.71857,198.74275,22.874207,45.251236,0.04920222 1035,474.41647,208.17642,34.734314,66.52545,0.02466017 1035,492.91318,187.81378,41.223114,75.537964,0.0074683665 1035,53.58483,184.22377,35.77822,80.45622,0.0052364804 1035,611.7551,239.06113,25.20935,49.24942,0.0032492932 1035,444.16354,246.15462,36.09265,81.19585,0.002471032 1035,564.6154,200.98694,24.648376,51.67807,0.0010883381 1035,613.8832,319.12234,25.263489,92.86511,0.00088483887 1035,602.88745,194.92087,35.1344,142.53564,0.0005107699 1035,485.753,239.32568,28.232727,58.948944,0.00040482337 1035,587.3986,244.42386,51.216064,215.56671,0.00038136897 1035,1.082085,111.72315,19.1458,94.86462,0.00030873736 1035,2.444672,101.377014,33.698303,201.16534,0.0002861671 1035,462.11148,192.55136,77.524445,148.99756,0.0002843783 1035,1.5330217,209.94977,18.570803,73.76105,0.00024370338 1035,533.5559,167.40263,62.757874,112.88365,0.00018652031 1035,608.8767,440.4299,30.269958,66.20599,0.0001400511 1035,408.5986,213.9631,34.733765,68.982544,4.4766388e-05 1035,584.0194,391.04044,55.12726,108.43265,3.8314873e-05 1035,503.88574,139.63052,129.91785,211.78177,2.6759551e-05 1035,1.011799,262.08673,17.513002,138.94147,1.3027655e-05 1035,4.2016325,200.55893,57.824566,234.88293,1.0712711e-05 1035,612.02844,0.0,27.118225,61.442604,6.543304e-06 1035,271.0929,431.56122,75.714966,67.23047,5.9149593e-06 1035,1.0581877,383.68433,18.10089,114.722565,5.441181e-06 1035,2.4404461,30.28222,71.28767,188.30835,2.5118854e-06 1035,3.346774,395.64117,56.116177,99.96591,1.5486645e-06 1035,1.6728907,47.79654,19.786537,91.047195,9.828188e-07 1035,141.12703,430.21527,72.433655,69.87079,2.9733985e-07 1035,0.98598593,9.849359,11.595011,88.34037,1.8381263e-07 1035,0.0,3.0240138,40.37403,66.40856,9.918509e-10 1036,520.6844,211.12062,21.59961,48.82469,93.92079 1036,152.54703,213.70378,25.843857,53.22084,0.050141133 1036,129.91484,210.39651,32.622253,58.836395,0.032926884 1036,611.2765,196.33795,27.639465,65.05344,0.012444743 1036,508.89737,203.82904,41.71219,88.605316,0.0072563547 1036,580.12274,208.70964,36.33313,85.1891,0.0039152377 1036,621.4702,289.54153,17.676453,52.1149,0.001162418 1036,114.97984,288.71533,36.14415,78.974884,0.00097752 1036,616.6306,221.2134,22.516052,95.583145,0.0007732548 1036,484.18976,86.8755,31.17163,66.461136,0.0005106 1036,116.33474,208.48444,72.88807,171.44366,0.00050093624 1036,0.82163537,335.8654,17.354256,73.14389,0.00034985316 1036,601.73474,89.43666,36.042847,185.60246,0.00032418617 1036,1.3318388,295.4536,17.27923,71.529785,0.00027352755 1036,2.3856585,201.62086,34.801434,178.44136,0.00017377253 1036,613.9068,317.74506,25.239868,147.90744,0.00016458449 1036,608.3712,438.54596,30.775452,67.979095,0.00014450478 1036,3.0712044,275.5744,54.15705,195.0405,0.00014238116 1036,73.18857,260.65518,28.808327,58.709564,0.00013540615 1036,554.87006,141.20932,79.047424,223.38315,0.0001244636 1036,617.0306,114.48402,22.116089,91.33007,0.00011016101 1036,1.5654184,58.531578,18.867662,83.12937,0.0001012471 1036,1.399961,249.8338,19.492931,80.6947,8.714172e-05 1036,1.5215511,207.971,19.15919,77.267685,6.0917067e-05 1036,1.4092847,88.46598,19.881094,157.39288,4.312094e-05 1036,572.0423,350.01614,67.10437,143.1022,2.2617767e-05 1036,487.0288,186.30965,97.090515,180.72215,2.1580336e-05 1036,0.82809734,392.24887,20.351002,108.96478,1.7389044e-05 1036,3.6795003,63.026005,57.103672,251.07047,1.5070163e-05 1036,2.8217123,429.0646,53.777176,70.68228,4.190016e-06 1036,586.91016,14.638457,51.87744,123.46326,1.7940544e-06 1036,3.9748569,29.678885,56.35478,103.622765,1.6045555e-06 1036,256.4039,430.5576,72.74368,70.036285,1.4515954e-06 1036,64.57656,426.2143,80.30019,75.96509,5.625176e-07 1036,119.75508,426.00446,72.43742,71.903564,2.4238196e-07 1036,0.86168945,11.529375,10.076764,85.427,1.08003064e-07 1036,0.7660368,1.9943213,31.30537,53.12656,7.912776e-11 1037,616.7254,205.4825,22.421265,57.90358,97.47799 1037,498.64453,207.84067,23.582703,46.000824,0.19497351 1037,103.06915,217.38147,21.159103,50.455933,0.028391235 1037,484.17062,207.92857,23.670013,47.374893,0.0270448 1037,533.2029,283.67578,46.372803,117.7612,0.009171972 1037,606.29175,185.51917,32.85492,187.95752,0.0074206465 1037,429.31982,200.25475,34.80075,77.28261,0.0057112 1037,125.77752,213.73744,27.451332,51.899643,0.002309787 1037,1.8050203,204.87695,18.46735,67.38162,0.00057460845 1037,611.6229,330.83328,27.523743,144.09079,0.000366394 1037,96.38568,205.34592,35.75084,104.00189,0.00035469752 1037,1.5449325,45.928795,18.774807,70.29113,0.00030179264 1037,523.7341,221.02298,42.25067,135.20389,0.00021746948 1037,364.72095,204.67986,30.753296,63.573807,0.00012132997 1037,608.6671,437.87033,30.479553,70.013275,8.558838e-05 1037,2.0025911,133.67664,28.627357,150.55453,5.2561903e-05 1037,2.0022266,28.42983,39.880886,169.27911,4.9510494e-05 1037,4.312264,146.35474,58.50897,214.34662,3.865882e-05 1037,190.48271,210.55112,39.941742,92.22476,2.421474e-05 1037,1.0260701,247.02272,19.002157,138.14412,1.7284947e-05 1037,1.2333927,367.34027,20.302183,104.508545,1.4697002e-05 1037,602.1743,51.499977,36.778564,222.4353,1.3667169e-05 1037,3.7131414,276.44318,58.67152,203.03226,5.9000186e-06 1037,5.1493783,49.866493,89.176476,222.35583,5.883544e-06 1037,406.93988,177.08078,98.619934,182.19672,5.6292356e-06 1037,1.2381039,443.40714,21.901403,60.40735,5.4254083e-06 1037,3.3821762,429.4199,53.527065,70.23633,1.7130517e-06 1037,2.9247918,15.42322,49.160397,72.57451,1.5001642e-06 1037,596.6642,0.0,42.345337,96.6844,7.6849796e-07 1037,1.3572795,9.237631,21.107431,60.750328,3.4487422e-07 1037,578.9524,0.0,42.191895,53.924683,1.3845598e-09 1037,530.5074,1.9389551,43.973816,46.071056,3.6793475e-11 1037,47.081825,1.3589095,49.204742,61.600487,1.0125764e-11 1037,498.7658,1.9149822,43.000305,46.65647,4.3796913e-13 1038,610.62067,194.94043,28.526001,56.04927,98.83712 1038,511.4274,204.91129,24.34311,53.203217,97.3666 1038,462.08438,204.06274,21.167511,45.165253,16.106567 1038,437.46262,206.16846,33.503754,77.61911,0.32753 1038,19.615915,208.19124,22.85325,51.959152,0.15347677 1038,602.7299,163.37982,35.66272,168.14316,0.04753153 1038,6.430123,207.63173,21.923927,56.142807,0.017779749 1038,577.6925,289.8001,55.52887,140.35965,0.011803508 1038,417.0324,223.07547,39.807556,86.00952,0.010686137 1038,415.70706,206.30525,23.717072,51.653427,0.0073110596 1038,174.4631,214.80415,32.533905,65.998184,0.0030214572 1038,2.6978712,85.591835,34.26686,196.65741,0.0011472794 1038,620.7799,225.06949,18.36676,65.77725,0.000957643 1038,615.74084,307.4279,23.405823,100.67023,0.0007298516 1038,493.13495,171.83788,59.785645,117.11302,0.0006079187 1038,595.6974,399.18942,43.161926,99.380585,0.0005522722 1038,439.06793,241.47762,39.413116,101.4803,0.0005220628 1038,1.4355502,181.01025,19.28373,125.177826,0.00027597143 1038,432.59348,174.48042,93.33884,180.85454,0.00012334106 1038,4.2479935,184.31044,56.05124,226.14629,3.179885e-05 1038,610.3953,13.860293,28.751343,137.5788,2.6114998e-05 1038,0.9587362,343.20297,19.033213,133.37079,8.6887485e-06 1038,1.4835905,29.442884,19.975273,131.5836,7.815478e-06 1038,0.69580895,256.5229,18.783379,143.4794,7.493342e-06 1038,3.958799,342.9937,57.992676,144.92395,2.8574955e-06 1038,2.0596273,420.6886,34.787308,79.25516,2.2022382e-06 1038,3.6790593,22.427631,56.053158,103.12024,1.3313756e-06 1038,1.359668,11.734546,20.588737,53.72105,3.7869222e-07 1039,485.0484,205.7099,22.554016,59.41162,95.214775 1039,551.1936,218.51271,19.789185,45.465836,42.84282 1039,536.0333,212.3942,21.488586,53.352722,4.744224 1039,574.83826,214.57286,22.659729,47.063248,3.3265042 1039,614.6113,206.60336,24.244995,56.226685,3.0676556 1039,437.4061,207.5459,22.883453,49.683228,2.9602327 1039,512.087,212.33176,21.41919,56.029175,0.75932795 1039,489.83276,203.93509,38.247803,107.63217,0.1439513 1039,519.9592,214.89706,32.23242,78.378174,0.0457025 1039,500.5024,209.78261,19.170746,53.439865,0.04197635 1039,542.0621,191.66791,39.015625,91.53937,0.03962616 1039,603.0682,170.50728,35.244507,137.0435,0.0152364215 1039,448.6619,224.82495,24.482452,63.548096,0.0013917559 1039,562.82434,163.47406,39.729736,102.76141,0.0007109248 1039,616.35364,241.89641,22.79303,92.344376,0.00033081954 1039,474.59845,153.7597,125.824585,209.03503,0.00030086277 1039,211.05396,216.37654,22.995789,54.444077,0.00021832563 1039,607.9506,442.1683,31.196045,64.089325,0.00017503592 1039,1.5126343,152.79677,20.261143,123.38765,0.00013235287 1039,421.97736,162.06445,76.230835,153.25217,0.00011532272 1039,567.4016,130.08064,69.78046,236.78932,0.00010011029 1039,600.2908,224.36264,38.855896,205.34033,8.743741e-05 1039,610.52124,4.9646845,28.625427,54.65673,1.4196611e-05 1039,1.6830274,212.82436,32.287426,170.25114,1.361386e-05 1039,3.8287241,116.90443,57.100456,212.24835,1.0240074e-05 1039,1.1087614,342.9264,18.811459,134.39532,8.274243e-06 1039,1.2052971,50.236206,20.25104,169.29202,6.703523e-06 1039,1.2629826,444.11023,21.686985,59.753845,5.162407e-06 1039,6.051169,362.00882,79.332466,130.65723,2.6528114e-06 1039,2.5148325,10.917556,38.662174,84.80143,8.8567697e-07 1039,307.27023,2.5023925,42.457672,57.826504,1.3904642e-09 1040,545.7425,196.55707,22.472717,58.670486,99.29048 1040,411.9509,204.1698,19.991882,46.463623,92.41615 1040,582.16583,197.26013,29.666077,71.989685,89.972916 1040,525.0603,196.29265,27.49762,83.67934,83.04658 1040,518.13086,203.27138,20.956726,53.465805,18.040462 1040,486.83688,204.13388,22.301727,63.227448,17.795994 1040,22.852047,194.999,30.120026,54.044235,16.989166 1040,609.977,228.46053,29.169678,74.29219,2.727268 1040,472.1025,201.34329,21.70166,55.400513,1.7872978 1040,443.7333,200.99806,22.18509,49.054474,1.289614 1040,431.08282,200.589,20.781921,47.839172,0.45159063 1040,12.053149,201.8138,21.68555,51.296677,0.113606185 1040,503.34995,200.53989,32.980072,100.171295,0.035031147 1040,584.17065,171.54904,52.507874,190.14832,0.010850303 1040,608.86096,102.188225,30.285706,168.12354,0.0017287964 1040,2.246845,161.28032,30.61087,125.065414,0.0012619024 1040,618.6404,276.06833,20.506287,74.303375,0.001011443 1040,616.5721,61.498283,22.574585,91.12368,0.00031928226 1040,517.1663,163.2553,92.285706,188.82436,0.00030732495 1040,608.08795,440.76495,31.058716,65.167145,8.710982e-05 1040,1.2391781,203.95573,19.061794,144.7289,6.199202e-05 1040,584.61444,392.2109,54.532227,101.98624,1.8450333e-05 1040,369.8984,133.28264,139.11536,197.41997,1.0235621e-05 1040,1.116438,286.35934,18.969992,132.02295,7.1124377e-06 1040,1.1536988,375.19885,19.272562,123.24393,5.5635473e-06 1040,3.791888,399.47513,56.30595,97.35925,2.4792091e-06 1040,348.79932,9.510668,43.096436,51.892265,1.1892427e-06 1040,607.1652,0.0,31.981445,65.47227,3.9555115e-07 1040,2.016289,19.902859,36.07548,163.5849,7.564403e-08 1040,525.29895,1.9190528,45.745667,51.621223,2.4798542e-12 1041,453.0847,202.18915,25.242035,63.29535,99.522194 1041,539.442,198.6793,22.120422,61.642715,92.734215 1041,602.1849,203.87173,22.578918,59.92816,92.718445 1041,437.7558,208.38751,22.939331,51.863983,91.40725 1041,467.5997,201.88867,21.969482,58.149567,85.90324 1041,552.64545,200.2479,20.031372,59.84201,62.02189 1041,517.1471,196.9804,22.688904,56.735992,42.275017 1041,562.6412,204.36513,44.044983,124.75798,17.912802 1041,587.5179,204.59209,24.123352,64.18968,10.976968 1041,496.15933,200.26003,27.592743,67.26518,2.9687228 1041,565.01294,202.65392,26.2583,60.392807,2.3595998 1041,583.35846,189.81712,51.012024,104.55809,0.0635839 1041,483.80344,201.34132,23.993774,59.492905,0.037602123 1041,616.0386,190.54564,22.572144,79.22917,0.0036536814 1041,498.03107,159.46829,128.72137,203.16913,0.0020308825 1041,616.04926,288.77518,23.097412,85.55328,0.0010451387 1041,435.01984,177.86758,73.40741,146.44775,0.00013909882 1041,599.0213,227.94612,39.0459,192.3449,0.00011921993 1041,609.0687,439.46823,30.077942,65.89505,5.583468e-05 1041,1.2393954,205.53467,19.487875,133.9993,3.8441325e-05 1041,381.31235,163.22255,90.71683,198.65443,1.22228e-05 1041,585.41595,388.2828,53.730713,103.885895,1.1437297e-05 1041,2.233544,132.66136,28.405748,145.39915,8.052227e-06 1041,1.1823951,328.11978,19.026098,134.73141,7.366524e-06 1041,610.48816,2.4507031,28.658508,63.08086,5.9989566e-06 1041,1.3286719,443.52747,21.539413,59.9451,4.0582067e-06 1041,3.5784426,398.62585,56.695953,97.30182,1.8677181e-06 1041,1.6698316,14.200847,20.985619,138.00418,5.729496e-07 1041,2.2133317,9.708074,61.042416,239.73387,1.0441473e-07 1042,565.5276,193.90816,42.38501,102.09563,99.97352 1042,454.2645,206.73312,27.615265,64.0163,99.90783 1042,604.612,200.41376,33.76123,88.062256,99.658134 1042,529.46136,200.63931,33.60327,81.98584,99.63059 1042,511.31943,206.44762,27.564423,65.71648,97.347244 1042,549.0203,198.8657,27.091064,74.442,93.306076 1042,473.38208,206.0337,21.05075,46.093643,71.85742 1042,587.67957,202.88805,22.448608,55.739548,60.164154 1042,441.12054,207.59525,20.158112,51.70392,0.07487486 1042,534.9075,167.37914,96.96411,172.24129,0.005419362 1042,499.71948,209.23007,22.646301,56.220154,0.0018458919 1042,608.3045,439.0543,30.842163,67.6416,0.00015044156 1042,428.41745,182.22456,76.54474,138.33339,0.0001065337 1042,1.6851124,149.70105,19.641275,125.7728,7.0239585e-05 1042,353.01175,221.23938,22.471497,51.447906,6.222521e-05 1042,601.4662,210.97934,37.68048,254.21332,4.4122058e-05 1042,610.8221,9.496374,28.324585,143.36356,1.7646988e-05 1042,0.82096356,261.1686,19.597658,138.83957,8.795563e-06 1042,3.9481153,120.480644,59.84807,205.40909,8.070861e-06 1042,0.96828043,380.22098,19.01854,118.81705,6.4878664e-06 1042,3.629608,398.81085,56.775093,98.52026,2.6096568e-06 1042,1.8077288,52.008327,29.970207,176.3266,1.8418743e-07 1042,489.10474,5.2761574,44.95514,46.773785,1.7894367e-07 1042,1.323991,5.5863347,21.762005,61.19143,4.756172e-08 1042,517.20105,5.725345,44.036987,49.54834,1.3357263e-08 1042,12.609437,1.56389,47.424362,61.697395,2.9172742e-10 1043,586.05475,211.5713,46.93463,99.205124,99.9502 1043,562.7958,203.62819,38.32953,92.03517,99.89869 1043,552.5857,206.5494,21.867737,54.192947,86.79657 1043,518.8283,210.32347,25.512512,61.512802,37.374195 1043,622.6431,214.36055,16.50354,70.16063,0.6397705 1043,390.32797,223.99628,28.444061,60.741425,0.17061308 1043,407.35492,216.48022,24.187347,52.52896,0.118026346 1043,539.19556,209.6988,26.834167,72.55049,0.019863633 1043,483.6408,224.4113,22.567627,54.202072,0.013372672 1043,535.9369,181.59418,99.553345,163.74097,0.002725292 1043,507.35974,180.02002,60.378113,110.220245,0.0023340601 1043,610.1728,102.9062,28.973877,180.4856,0.00080676656 1043,621.50555,107.1193,17.641113,58.187477,0.00080160145 1043,619.95807,145.69298,19.188599,67.16432,0.00023263258 1043,608.74097,440.36777,30.4057,68.02182,0.00013444725 1043,1.3541455,172.2634,21.161333,124.58969,7.089128e-05 1043,0.97006434,233.14803,18.684965,139.31871,1.9226338e-05 1043,605.5306,1.4819661,33.61609,62.191875,1.3840279e-05 1043,3.8110743,145.76463,59.584763,203.55867,1.0689402e-05 1043,0.94636637,340.07288,19.265371,135.47452,6.454516e-06 1043,2.4187841,77.172806,34.037254,191.61928,5.5943633e-06 1043,585.6804,7.660853,53.433838,129.28596,2.8898776e-06 1043,1.146626,443.97388,21.604033,59.73291,2.213921e-06 1043,3.597788,340.3265,57.7856,148.14362,1.7563066e-06 1043,1.9202051,5.6150913,20.509178,132.3371,5.2550746e-07 1043,1.1571876,0.0,60.113003,94.72686,5.973501e-08 1044,501.50375,210.57222,31.824677,76.53023,99.973175 1044,468.56564,208.77077,33.931335,80.67305,99.90602 1044,625.07806,200.30281,14.0686035,45.18167,0.010209402 1044,613.41864,171.0706,25.728027,97.5988,0.0044263676 1044,584.2613,129.12355,52.5907,212.12895,0.0007155569 1044,621.04034,284.444,18.106323,55.890717,0.0005377551 1044,484.03177,184.86685,67.897675,152.7279,0.00039122606 1044,617.1917,222.00232,21.954956,94.931366,0.00034924413 1044,613.052,414.69794,26.094666,88.948944,0.00013342033 1044,602.2694,228.46295,36.87726,180.3046,0.00012726942 1044,591.1665,6.8239617,45.28192,51.934624,8.408148e-05 1044,2.0411923,198.01405,17.72912,66.69914,5.2266485e-05 1044,616.9958,46.820095,22.150879,79.864944,4.647693e-05 1044,569.9828,357.7153,67.78833,130.9794,2.975137e-05 1044,515.66254,287.579,77.19348,181.09375,2.6580594e-05 1044,2.2419581,170.18607,34.942932,153.53867,9.787299e-06 1044,0.8836003,405.5246,18.258137,73.98697,7.6104157e-06 1044,1.0151278,236.09589,18.717308,73.77048,6.7388414e-06 1044,1.8063933,248.77399,33.092022,186.02554,5.8239007e-06 1044,1.2900237,97.1148,17.831139,151.57178,5.6446534e-06 1044,0.99452966,339.0243,18.217693,73.890564,5.3048266e-06 1044,5.543747,361.79608,78.55309,126.89569,4.2057495e-06 1044,0.77087814,297.95938,18.579739,73.34137,2.2836846e-06 1044,569.2623,17.285704,69.88434,147.73073,2.2536844e-06 1044,410.2666,426.7642,81.30066,74.62216,1.938049e-06 1044,473.37726,420.45718,71.953,78.000946,1.8349219e-06 1044,3.5454135,429.37878,53.17979,70.328064,1.5876958e-06 1044,1.0127742,9.443702,17.305622,98.49169,1.1573983e-07 1044,566.8361,7.843988,43.61908,48.873756,1.6575036e-08 1044,539.4009,8.626602,40.82556,45.37726,9.874214e-09 1044,510.81903,7.4350557,41.634766,45.22346,8.595161e-09 1044,1.4368571,14.50237,62.906185,210.66692,3.4770342e-09 1044,0.6755176,0.0,30.953047,48.68117,1.7231225e-09 1045,476.13782,208.19313,35.532562,72.86052,0.003191411 1045,611.11053,188.80615,28.036133,126.79538,0.00095757726 1045,581.7373,228.0117,36.664673,69.62062,0.00072684186 1045,615.5838,73.42923,23.562866,84.38466,0.00031054637 1045,619.6208,132.10422,19.525879,71.95648,0.00024606608 1045,561.3128,225.33087,34.030273,73.042175,0.00023979839 1045,353.29813,219.42636,21.669464,52.515778,0.00021387427 1045,617.53766,274.72464,21.609009,81.01843,0.00014775818 1045,612.6235,350.85294,26.523193,150.48248,0.00012627874 1045,586.8851,79.0504,50.358765,223.91759,0.00010722427 1045,423.42465,216.75584,32.427917,70.05629,4.8568574e-05 1045,380.23462,220.24399,22.043427,51.62915,4.1754647e-05 1045,1.2859058,115.74469,21.41027,127.9951,3.8027618e-05 1045,0.9673446,230.67534,18.653986,73.86885,3.0908624e-05 1045,589.43427,254.56042,49.185974,218.73813,2.8135599e-05 1045,585.22754,16.803516,52.86859,123.07823,2.643599e-05 1045,463.34558,262.28378,24.21991,54.664825,2.5070565e-05 1045,549.91376,99.475395,40.274475,139.52505,1.3725596e-05 1045,470.64835,236.12495,70.29312,182.88448,1.0935487e-05 1045,403.09158,431.54404,83.35248,68.897064,9.289611e-06 1045,1.9063021,159.31891,32.314514,165.38226,8.424123e-06 1045,410.13376,229.61722,23.090668,53.933716,6.5639424e-06 1045,0.99342614,344.3869,20.352774,105.232056,5.621296e-06 1045,1.0491358,310.71924,18.110468,73.012726,4.9490386e-06 1045,554.7901,388.6855,84.224365,108.11423,4.721127e-06 1045,5.891335,227.65063,78.13696,242.60953,4.414807e-06 1045,1.412343,83.43147,18.34177,62.063797,4.293309e-06 1045,0.9319995,421.01947,14.706592,81.058105,4.203384e-06 1045,446.0849,385.84875,119.26196,109.76538,2.2020029e-06 1045,486.28888,440.71533,41.563293,64.11713,1.227466e-06 1045,127.31283,395.0787,111.96197,101.76407,1.2158898e-06 1045,507.71902,427.57272,72.02988,73.99353,1.0941136e-06 1045,3.6277995,394.83047,57.35935,100.20184,8.103096e-07 1045,594.24335,4.0023437,39.668457,51.473373,4.3593027e-07 1045,106.026306,432.99228,73.37924,68.86279,2.3165421e-07 1045,2.3102067,45.758068,59.379944,196.64641,9.272821e-08 1045,504.3702,7.1290984,42.394196,51.21031,5.6928458e-09 1045,0.8843238,17.469336,29.922983,147.5633,5.7096106e-10 1045,0.0,0.9195443,20.680206,71.394585,2.1680062e-12 1045,266.9658,0.8156836,39.15384,47.95509,4.4065725e-13 1046,575.9766,201.56511,31.891235,62.985153,97.324455 1046,568.6894,202.99995,20.397278,47.780655,1.0491451 1046,598.07654,194.74689,31.50769,62.43103,0.70577806 1046,554.06036,196.65218,41.82202,93.482895,0.029319167 1046,561.2312,218.22781,20.10138,48.58908,0.023922773 1046,599.9566,126.13206,35.8786,183.52441,0.0120763015 1046,621.8713,191.4469,17.27539,56.954147,0.0081202 1046,524.6903,218.05708,28.095947,56.474686,0.005996879 1046,609.6092,216.15816,28.94574,67.90288,0.0036506727 1046,493.26907,218.20148,27.438934,56.899567,0.003439972 1046,73.582466,191.04135,23.364006,46.68396,0.0014025122 1046,600.2819,249.31729,38.1557,82.11694,0.00087668886 1046,532.88715,119.83302,99.53076,247.68575,0.000757938 1046,602.4145,324.572,36.732178,167.22745,0.00028206303 1046,608.557,437.83017,30.58966,70.02219,0.00010556664 1046,607.0541,2.9979851,31.795105,57.679333,7.60966e-05 1046,1.2042074,215.5596,18.60825,79.93378,7.242612e-05 1046,452.14026,154.49055,79.10339,184.58492,4.0117815e-05 1046,2.1448138,154.10406,34.10347,163.1604,2.8280541e-05 1046,583.039,15.401739,54.89807,115.97466,1.9185603e-05 1046,1.3727376,118.84081,18.59698,135.22363,1.7163526e-05 1046,0.94800216,263.8186,18.284039,133.78519,6.658896e-06 1046,0.8788851,350.18207,20.54411,106.5867,5.2706264e-06 1046,0.93882895,421.8231,15.855576,80.69864,2.6034077e-06 1046,3.9299302,237.01938,57.19804,220.19412,2.283432e-06 1046,3.3709702,396.6181,57.0011,98.2608,6.665374e-07 1046,578.50995,6.136722,44.03784,56.655094,3.2305132e-07 1046,3.0809572,60.681408,59.968227,213.58598,7.9863106e-08 1046,1.4875903,47.47299,29.350542,145.21065,6.291042e-09 1046,406.93323,3.1871665,41.397003,56.20818,3.7055925e-09 1046,510.5751,8.110414,43.489105,50.033913,3.1330532e-09 1046,550.9254,11.120358,44.487183,52.403706,2.1776951e-09 1046,381.2204,0.0,44.206726,64.37306,7.807355e-11 1046,1.447225,9.466491,31.588438,75.78519,2.499658e-11 1046,1.195476,0.0,19.490618,47.796864,1.1155598e-12 1047,589.26575,221.91881,38.016663,65.83745,88.96928 1047,613.7626,227.07118,18.42926,45.980057,0.029782185 1047,599.33514,205.82652,38.04608,161.04631,0.004689882 1047,552.6446,213.32883,38.652527,95.23132,0.0017442207 1047,622.5332,259.36322,16.613464,60.340393,0.0012441004 1047,558.18164,380.38455,77.19653,113.934326,0.0005372292 1047,550.5209,150.21855,83.808716,234.13255,0.00025319544 1047,468.21643,286.05984,60.23694,151.94147,0.00020579784 1047,1.1903654,148.77448,19.126606,92.206726,0.00017730484 1047,0.7274398,93.82448,13.720661,51.010498,0.0001222177 1047,610.64166,18.47282,28.242493,125.70265,0.00010173867 1047,617.2517,387.78067,21.894958,93.3508,5.1423547e-05 1047,1.0304875,241.10556,18.667088,78.31177,5.048758e-05 1047,588.43494,441.42236,49.589783,62.48593,4.85351e-05 1047,609.7218,105.73379,29.424866,179.54285,3.1315645e-05 1047,575.56604,254.23083,40.860718,75.75,2.7742382e-05 1047,1.8258756,141.2979,33.405247,174.27156,2.0681964e-05 1047,2.0197332,260.17352,31.192215,189.4281,1.7542216e-05 1047,1.1732926,387.7016,17.925224,69.72659,1.2849492e-05 1047,6.0370574,287.85666,77.94875,189.57736,8.74311e-06 1047,1.3141105,441.39584,20.333124,62.359436,6.983603e-06 1047,3.9419403,396.0084,57.39757,98.22943,2.3089647e-06 1047,332.21658,433.9895,71.54178,67.73682,2.2595684e-06 1047,284.54498,437.01996,73.53345,63.615936,1.4682162e-06 1047,229.87935,435.29565,72.7513,65.15436,5.830989e-07 1047,1.1025114,50.356804,18.205814,136.3671,6.664252e-08 1047,523.40015,3.3006673,47.687927,55.112545,4.923293e-08 1047,491.43195,3.4702556,42.890686,53.971874,7.935182e-09 1047,2.3978777,19.996996,57.28471,118.12096,1.0476894e-09 1047,467.84006,3.432692,37.68106,48.500122,3.88249e-11 1048,388.84283,161.77695,33.85974,84.86972,0.12973623 1048,369.38693,173.21057,34.408295,74.18053,0.031761203 1048,22.524597,208.05879,26.61393,49.592606,0.0032330474 1048,616.21783,76.29503,22.928833,80.95033,0.0011585003 1048,611.1421,107.43317,28.004578,144.61137,0.00071546825 1048,280.74454,110.702736,36.00351,82.807365,0.0003057044 1048,362.48337,125.45264,69.47394,154.86148,0.0002835991 1048,617.3616,197.47174,21.785095,86.56027,0.0002403309 1048,612.63916,318.2828,26.507507,135.92053,0.000115380804 1048,608.8135,436.4847,30.33319,68.64969,8.1230595e-05 1048,1.3760084,167.74564,18.152054,85.79637,7.952214e-05 1048,3.5139487,106.57368,60.27278,211.874,6.715861e-05 1048,420.55408,224.67633,35.47876,60.84073,6.243999e-05 1048,1.4658822,87.911446,18.590498,70.54742,4.5299177e-05 1048,0.79928756,242.7524,13.5146675,50.515305,4.121754e-05 1048,1.3074911,220.22482,19.172138,135.77307,4.118021e-05 1048,617.5907,273.88568,21.55597,85.3208,2.7961943e-05 1048,0.97059083,405.3839,15.0644455,92.85724,2.2709191e-05 1048,587.04626,123.12025,52.100403,242.08163,2.2611814e-05 1048,1.103409,361.1997,17.838861,72.93613,1.6831553e-05 1048,3.7249463,233.43347,57.399693,239.92361,1.1456785e-05 1048,555.10864,399.97235,83.60693,94.60452,9.578574e-06 1048,383.9531,427.56366,74.89484,73.879,8.917014e-06 1048,264.28973,420.16013,72.28107,79.36957,5.384502e-06 1048,303.0717,423.50726,73.30057,76.88223,3.2290363e-06 1048,2.4939032,434.37912,45.29116,65.74393,2.7254662e-06 1048,187.70026,429.4983,72.30533,72.302704,2.6102691e-06 1048,433.66162,428.22546,70.68335,71.7612,1.9757083e-06 1048,234.04333,441.76987,41.65866,59.64337,1.4358583e-06 1048,128.28448,430.12286,71.84805,71.61914,1.3911799e-06 1048,172.76096,444.10266,42.654404,60.78891,1.3145826e-06 1048,482.30362,428.62933,71.12625,72.626526,1.168104e-06 1048,49.357506,432.3242,76.5091,70.78607,9.489447e-07 1048,611.403,0.0,27.743652,65.25098,6.14643e-07 1048,2.2017043,16.028568,59.00792,131.25533,5.3471966e-10 1049,318.08737,220.57918,23.243927,47.783737,0.012107628 1049,397.03937,206.71431,21.432068,45.881744,0.0049588447 1049,408.98346,203.85637,23.198914,48.41075,0.0026101875 1049,586.3941,89.05679,41.743103,152.67838,0.002056876 1049,615.39166,209.98186,23.755005,88.045944,0.0016487482 1049,448.90762,212.4953,23.460632,45.173645,0.0010995908 1049,1.5606885,168.13823,19.011969,91.87254,0.0010436906 1049,435.44083,198.71077,24.088348,53.12224,0.0007286797 1049,2.0461028,113.16876,33.410233,184.13135,0.00044677267 1049,0.6469613,114.355,14.356136,58.488213,0.0004038374 1049,418.5055,118.40495,40.0755,145.12999,0.00035746922 1049,616.0482,77.65809,23.09845,92.26606,0.00033847033 1049,477.52158,231.63506,25.2276,52.30568,0.00019937825 1049,616.067,146.98479,23.07965,86.24931,0.00015092411 1049,608.80023,442.13617,30.346436,64.11197,0.00012592578 1049,612.1903,340.4083,26.95636,141.82785,0.0001222459 1049,0.75849694,242.64188,18.653837,77.72922,4.336632e-05 1049,616.23676,20.776108,22.909912,82.446144,3.8309063e-05 1049,0.8306649,392.05484,18.257626,76.92877,3.7461195e-05 1049,588.45013,192.07451,50.26538,220.33818,3.3602173e-05 1049,1.1729964,443.13474,21.400875,59.606537,1.5650745e-05 1049,0.8009855,311.12137,18.538246,74.00214,1.3670402e-05 1049,4.5236754,128.23634,78.74731,258.5504,1.08397535e-05 1049,491.54507,144.33336,67.256134,165.45586,8.589848e-06 1049,1.7240837,235.20267,31.3166,189.99258,7.641602e-06 1049,393.21094,100.022156,114.06824,205.45569,7.64026e-06 1049,3.6498373,338.34683,58.079514,151.88422,5.7835955e-06 1049,399.66937,432.25137,72.94595,67.64697,2.0027678e-06 1049,5.9624805,433.72668,77.22838,66.73724,1.925606e-06 1049,475.47906,434.32635,72.19464,67.117096,1.2367346e-06 1049,325.0646,433.724,72.402954,67.21982,1.0019528e-06 1049,216.0442,431.83463,71.841324,69.40454,5.769325e-07 1049,154.3037,433.02835,72.5641,69.06583,3.58149e-07 1049,2.0349138,22.606817,58.234375,120.56379,4.7960086e-08 1049,383.19296,2.9787388,43.387177,55.342087,1.376028e-08 1049,547.127,5.380676,41.91461,48.09433,8.519739e-09 1049,354.74536,5.981963,42.23233,52.75078,3.190657e-09 1049,428.83545,7.060946,42.02884,51.58688,1.9131159e-09 1049,240.9991,1.1744336,38.787186,50.867443,2.089476e-10 1049,1.2392066,8.523446,17.824251,57.35855,2.0326466e-10 1050,567.1287,196.98244,31.485474,63.470688,0.23085505 1050,594.784,200.3271,36.521057,70.2798,0.009505757 1050,620.88165,221.07118,18.265015,55.255814,0.0015040662 1050,382.39233,183.30095,21.073792,45.693954,0.0009057141 1050,497.96872,160.31207,36.24179,90.40408,0.00077047746 1050,614.30493,13.8319435,24.841736,83.34189,0.00051585963 1050,1.5533562,162.40543,17.655018,75.34221,0.00025599296 1050,616.5581,240.70842,22.588562,85.06062,0.0002503005 1050,450.80963,200.50806,22.327362,48.146866,0.00023133348 1050,617.74896,384.71036,21.397705,78.59778,0.00021144183 1050,617.5241,68.671265,21.622559,77.23369,0.00020604885 1050,601.0564,104.457565,36.8479,191.70213,0.00013631376 1050,608.81934,440.1885,30.327332,65.60162,7.956038e-05 1050,539.28986,221.82462,22.54657,48.397247,7.264153e-05 1050,588.2322,197.14221,50.897278,232.94986,5.308126e-05 1050,1.8218987,91.39198,29.138374,157.41089,4.6292556e-05 1050,1.1829126,76.06857,19.394289,78.28244,4.4683387e-05 1050,617.76086,318.43777,21.385803,83.99124,3.9318045e-05 1050,385.99924,131.36348,80.87161,165.85768,2.6927333e-05 1050,572.5596,365.97015,66.5871,125.64804,2.5422127e-05 1050,0.98659587,188.56552,19.345415,132.50146,2.4103827e-05 1050,0.67222863,220.48706,13.708885,47.2323,1.8771185e-05 1050,583.3122,22.073887,55.41461,177.52315,1.1866273e-05 1050,0.7644564,282.98672,13.511797,47.095062,8.699826e-06 1050,0.86968505,406.15717,18.24817,73.82977,8.033267e-06 1050,3.8388884,149.2474,58.13546,229.35562,7.523115e-06 1050,0.9185295,358.53458,18.371988,75.26422,5.642479e-06 1050,590.98096,5.040532,45.776794,53.85822,5.5577775e-06 1050,0.86142415,317.9982,18.370224,73.845,3.932682e-06 1050,1.443628,456.7009,28.099054,47.588593,2.9153666e-06 1050,533.506,55.82769,40.860962,135.32428,2.8679135e-06 1050,1.4507056,241.48297,32.875343,175.25494,2.1170963e-06 1050,1.669004,354.13113,32.359554,139.49097,1.9499216e-06 1050,1.0857792,11.8319435,13.642337,78.034836,5.478551e-08 1050,566.593,6.52842,41.473877,53.70748,3.4251805e-08 1050,2.6350749,25.318178,79.662346,139.71025,2.1975533e-08 1050,538.70337,7.9170785,40.249695,50.973625,6.9882566e-09 1050,2.136429,3.9257326,38.35973,49.47839,2.7323102e-10 1050,306.89972,0.0,42.522003,51.954266,5.8698095e-11 1051,603.85474,141.47415,34.88147,88.17403,0.0969496 1051,400.9567,185.10573,23.855255,57.584778,0.0076661063 1051,491.0299,185.55771,24.949402,53.09091,0.0018970594 1051,622.1942,162.33797,16.952454,52.87416,0.0018829771 1051,558.5143,190.36235,23.496765,49.201202,0.0016183107 1051,608.6736,201.5571,30.473083,83.99411,0.0012227189 1051,624.50525,205.85866,14.641418,47.425934,0.0011258716 1051,587.1114,90.08003,51.0036,203.44087,0.0009395792 1051,443.8716,181.68704,31.325378,67.55505,0.00090580387 1051,617.6987,390.16382,21.447937,84.937744,0.00042900856 1051,535.34924,108.58964,41.29309,146.3729,0.00019248517 1051,416.41382,175.13165,37.19391,82.75061,0.00018486154 1051,617.1363,241.92378,22.010376,90.52275,0.00015992291 1051,572.6093,366.1865,65.9881,122.75455,0.00010588374 1051,1.0170199,185.22878,13.258704,57.30313,0.00010546872 1051,0.5143876,221.54562,13.804077,50.696716,8.216218e-05 1051,612.55786,309.39157,26.588806,136.91635,7.568941e-05 1051,608.7781,438.90387,30.368591,64.527954,7.00452e-05 1051,610.7881,6.7076435,28.358582,91.51598,4.5927398e-05 1051,415.04633,152.72807,77.95322,156.45094,4.420528e-05 1051,1.1843995,182.49306,20.048672,130.84529,4.1344465e-05 1051,0.6034514,253.84677,13.698156,49.72473,1.5988524e-05 1051,553.29395,116.25814,34.776184,78.310555,1.5424099e-05 1051,1.3186711,442.15662,20.530113,61.72174,1.4280026e-05 1051,432.07404,435.0675,80.42395,65.31656,1.2205608e-05 1051,0.93217856,392.8265,18.433493,74.92456,7.579328e-06 1051,3.6434147,397.8176,58.078217,101.102936,5.68489e-06 1051,0.7779346,278.306,18.29909,69.754944,5.0267827e-06 1051,1.2800367,96.68968,18.429222,145.7947,4.9379123e-06 1051,0.88487065,352.48065,18.04968,72.273834,2.923318e-06 1051,537.09283,424.3993,77.36902,74.15338,2.5096967e-06 1051,567.8633,13.318151,70.88806,155.10707,2.2110514e-06 1051,3.1709507,112.30888,57.948032,213.49712,2.1829007e-06 1051,1.291543,272.8511,32.08588,175.39365,1.4315758e-06 1051,495.6075,425.51117,70.25906,73.75098,1.3117299e-06 1051,147.51747,431.80292,72.16881,69.956055,4.139209e-07 1051,586.1265,6.981789,42.884644,51.916603,1.6703832e-07 1051,491.3427,4.9610467,40.301575,49.70817,5.3894054e-09 1051,525.4059,6.2616196,41.25586,50.251545,2.3807023e-09 1051,551.86816,6.742679,43.593567,50.774593,6.261411e-10 1051,1.0664567,24.340885,29.087831,142.80092,5.670389e-10 1051,0.90184087,2.7115364,19.034166,68.0125,8.83882e-13 1052,441.42474,195.68645,22.445465,48.109787,59.535812 1052,390.69794,167.31071,34.918945,76.76372,0.00619735 1052,412.45352,167.7413,37.700714,84.99376,0.0015531954 1052,431.70108,163.09378,40.50934,99.13013,0.0007886464 1052,616.48694,202.97096,22.659729,78.11357,0.00068719365 1052,608.4711,441.75958,30.675537,62.481934,0.000495495 1052,617.1577,141.33777,21.988953,84.7095,0.00025322827 1052,1.4034083,149.15384,18.422228,90.37981,0.000236809 1052,518.8025,217.99644,26.19513,48.179276,0.00016380109 1052,617.2723,68.474075,21.87439,83.34303,0.00013302227 1052,583.8718,393.33435,54.805542,103.838776,0.00013255473 1052,601.6911,102.756096,37.455566,178.75613,0.000113373164 1052,612.21655,325.18036,26.930115,112.37732,0.00010114518 1052,599.9447,199.98207,24.344666,47.21492,8.0230806e-05 1052,589.8293,184.9162,48.71881,226.05505,4.7631675e-05 1052,1.9185076,132.42558,34.409958,166.40208,2.9191237e-05 1052,1.0315483,214.48216,17.95275,68.93788,1.3347717e-05 1052,0.9905811,379.55972,18.354198,73.57941,1.1206478e-05 1052,444.80444,97.72778,41.74182,150.12358,1.0592934e-05 1052,464.12482,429.05136,76.3551,73.02969,1.0485909e-05 1052,1.2466537,443.4652,20.328707,59.75595,7.6033352e-06 1052,0.84327966,239.32307,19.483404,137.4546,7.592727e-06 1052,0.61791503,276.99902,13.654115,47.10208,6.182411e-06 1052,4.030156,201.95193,56.911827,231.89606,5.1910806e-06 1052,411.68344,124.779755,132.04373,199.88635,4.670701e-06 1052,3.5410125,396.63104,57.79542,97.642365,3.8961502e-06 1052,0.92342937,338.80652,18.080683,73.90451,3.20017e-06 1052,586.2967,13.417305,52.849976,119.66712,2.7116528e-06 1052,528.5567,431.70282,81.27704,69.604004,2.597852e-06 1052,592.9731,6.211875,41.355713,46.030598,7.5056397e-07 1052,4.1274157,65.290474,78.45311,256.60464,6.180286e-07 1052,1.3533521,54.449306,19.200148,142.55466,4.546188e-07 1052,511.96674,6.2790413,39.6994,53.038292,1.020563e-07 1052,484.68402,8.27591,37.720703,47.1734,2.4866372e-08 1052,2.3277247,27.487091,58.019264,106.05525,3.5992092e-09 1052,335.28244,4.306673,39.29132,46.901375,2.7427443e-09 1052,383.05365,3.1979868,40.4534,46.80039,9.141875e-10 1052,1.2127808,8.30983,17.766993,55.96952,3.160191e-10 1052,442.02673,4.817072,41.03479,46.58056,5.3332193e-11 1052,409.78235,2.2657943,40.702667,49.381527,3.388804e-11 1053,518.9788,210.15704,23.910645,51.15918,99.398094 1053,505.45438,209.55101,21.398407,47.85875,94.495804 1053,472.00085,206.02946,23.528473,47.066452,80.958115 1053,597.76416,183.86987,40.54834,108.3858,0.019494021 1053,624.6851,207.69156,14.461548,47.50264,0.00808435 1053,456.08432,193.55353,24.446411,53.66455,0.0041878102 1053,624.1721,244.43472,14.974548,47.552612,0.0030455783 1053,620.7631,170.12991,18.383545,64.56889,0.0017850143 1053,410.04315,168.20569,32.878723,76.59784,0.0008804232 1053,610.07367,82.993774,29.072998,167.56029,0.0003876458 1053,485.26642,179.08443,62.187317,103.107285,0.0003579004 1053,452.3209,171.0626,62.666534,105.421555,0.00024960923 1053,568.20245,195.46078,37.384827,73.57745,0.00023720272 1053,608.8224,442.27963,30.32428,66.38583,9.5706084e-05 1053,569.4598,113.05771,68.91565,232.75513,8.204684e-05 1053,611.7847,310.49313,27.361938,145.74814,5.7749417e-05 1053,571.50397,369.24677,67.6427,123.745636,5.389299e-05 1053,0.80792403,243.99258,18.888502,80.2475,3.369041e-05 1053,1.3541626,173.54147,32.19949,164.15665,1.8225539e-05 1053,1.2443588,443.01804,20.65571,60.233643,1.2891114e-05 1053,1.2969311,164.69211,18.918985,88.20378,1.0268904e-05 1053,3.0712337,232.77026,56.99447,234.8526,8.727182e-06 1053,611.7979,12.985013,27.348755,118.44736,7.818311e-06 1053,1.0811825,329.7078,19.050446,133.936,6.8655568e-06 1053,3.6027508,399.15686,58.19581,95.25543,6.4732803e-06 1053,428.65836,127.020996,135.23434,206.61429,5.6575013e-06 1053,484.60178,1.2620834,44.931366,58.671707,6.9826683e-07 1053,1.8119532,67.34443,29.323334,154.991,5.5195216e-07 1053,457.35965,0.0,46.995636,46.66531,2.9236512e-07 1053,368.65314,4.8622527,43.79776,55.55555,2.898442e-08 1053,1.6514926,30.2178,16.704145,117.13194,2.7667577e-08 1053,2.8938706,25.186996,55.16307,104.61714,1.688848e-08 1053,509.80048,0.0,46.687805,63.480476,5.4349703e-09 1053,567.8781,3.009852,64.35718,54.01325,3.969459e-09 1053,422.48758,1.0685384,42.719208,57.904667,2.207938e-09 1053,1.2184318,10.06195,10.931677,73.78184,1.3185054e-09 1053,530.0295,2.7019515,67.48822,53.387028,1.1619271e-09 1053,393.81604,1.6246941,45.59784,58.127525,2.4555608e-10 1053,323.2141,2.4319565,39.70096,56.18419,2.42133e-10 1053,1.7866749,2.2398405,37.091053,49.134384,5.654572e-12 1054,403.9038,191.41672,20.310059,45.93042,0.061269093 1054,562.376,100.59982,72.81903,174.43402,0.0032234672 1054,578.77594,162.58347,37.6463,94.535645,0.0016756892 1054,618.8369,207.16325,20.309753,75.47267,0.0016456642 1054,396.38733,171.58524,43.528137,75.8203,0.0012202937 1054,484.74377,164.591,39.694702,87.58093,0.00058366725 1054,1.6731397,164.07845,17.75616,74.1082,0.00025028593 1054,621.6798,84.68676,17.466858,55.693916,0.0001920158 1054,615.2644,144.10355,23.882263,94.930756,0.00018157912 1054,608.8631,441.55252,30.28357,65.7778,0.00016401884 1054,621.0177,126.428116,18.128967,58.251556,0.0001442883 1054,612.62885,341.144,26.517822,140.5737,0.00013514825 1054,424.74933,177.54044,31.490265,61.048737,0.00011277512 1054,595.74005,68.48829,41.437073,110.79174,0.00011100575 1054,1.0380925,109.920135,18.875162,86.95575,8.055588e-05 1054,601.9345,179.52307,37.21216,167.0726,6.296008e-05 1054,611.757,13.918406,27.389648,125.5584,5.0264185e-05 1054,1.6376294,97.594955,32.623337,175.33937,3.9218055e-05 1054,1.2366284,193.0252,18.869804,135.82693,2.744298e-05 1054,0.8899235,388.38657,16.251057,110.58276,2.4888515e-05 1054,1.4128972,73.1284,18.179287,71.706314,1.8489647e-05 1054,568.437,122.528076,35.87787,104.31781,1.753603e-05 1054,3.637679,399.37402,58.423317,96.25745,1.1448286e-05 1054,0.94419354,317.2054,18.439173,74.65765,8.151263e-06 1054,3.5491943,145.42798,59.115887,224.06366,5.5679843e-06 1054,1.6265495,272.34158,32.855022,178.93051,3.991147e-06 1054,382.07343,6.4081774,42.96692,55.98271,1.450032e-06 1054,451.17914,431.58664,74.65405,68.98978,1.244591e-06 1054,352.50494,3.717142,44.895813,61.157913,3.299612e-07 1054,406.83603,9.343704,43.701233,49.217,1.3813721e-07 1054,532.21484,6.246348,43.088257,55.921795,9.872184e-08 1054,316.4951,2.3580208,59.03949,56.29233,5.3337867e-08 1054,2.5283675,24.348278,56.294827,108.07721,2.0973639e-08 1054,0.53925985,11.302012,10.150364,89.24393,1.9762075e-08 1054,0.7968327,6.974743,28.75987,59.40465,1.1416156e-09 1055,568.5099,212.1298,36.75879,84.75203,98.86208 1055,515.7985,224.78995,27.751709,56.597992,9.593369 1055,492.1889,212.63562,20.783875,49.289978,6.6142397 1055,578.89465,191.58243,25.921265,60.088333,0.009535952 1055,504.26065,211.50377,23.305328,51.68724,0.004583505 1055,622.33105,262.54892,16.815613,54.68512,0.0032157416 1055,563.51117,133.34595,70.67407,170.66891,0.0013890613 1055,590.49084,177.37474,28.86084,55.640625,0.0012596453 1055,611.025,141.50195,28.121643,145.07861,0.0004200966 1055,621.8447,219.29474,17.30194,60.582397,0.0003288636 1055,103.88512,193.77464,38.145996,74.37138,0.00017520727 1055,585.85913,192.78473,52.609314,238.17868,0.00014983262 1055,611.8154,234.79668,27.331238,134.0312,0.00013379558 1055,616.9405,67.51089,22.206177,83.068184,0.00012844766 1055,1.2963274,236.31279,19.782993,139.32289,0.00012216176 1055,611.64246,372.38892,27.504211,127.64569,6.119609e-05 1055,1.9646477,116.81638,18.698322,139.38092,4.0901305e-05 1055,607.8923,0.0,31.254395,108.35392,3.299627e-05 1055,3.733589,201.0686,55.87756,215.56308,2.6897047e-05 1055,2.041774,42.107624,18.445957,83.16385,1.2167871e-05 1055,5.645202,30.582708,76.990555,140.87256,1.2076035e-05 1055,1.0904639,363.28238,19.393192,133.63455,4.496878e-06 1055,581.6977,8.128503,57.448975,234.8833,2.7302008e-06 1055,2.823641,15.924883,52.24158,80.64054,2.513625e-06 1055,4.047155,340.18713,56.777836,148.45935,1.977518e-06 1055,25.596346,17.154848,87.75629,78.52457,3.9403454e-07 1055,33.685387,9.876182,46.306076,48.18525,3.334256e-07 1055,332.72464,4.852266,45.195007,57.051476,4.4063224e-08 1055,306.41437,4.282246,45.080536,59.083042,1.9153076e-08 1055,272.03534,5.4576497,46.08914,56.341656,1.352134e-08 1055,219.23776,5.437168,41.197754,59.592236,1.3312879e-08 1055,162.27473,3.1794696,43.041763,60.105637,1.7824924e-09 1055,245.47586,6.358024,43.87506,56.32238,1.5061998e-09 1056,196.53491,214.64336,27.793274,48.744705,99.928894 1056,586.99615,211.88263,32.261597,60.02997,1.3274462 1056,101.0112,213.08662,26.402687,54.797073,0.15901104 1056,285.50665,215.973,31.50531,56.29329,0.017673906 1056,622.18634,217.29128,16.960327,54.036514,0.008792884 1056,603.4359,169.59267,34.914185,125.50954,0.003777445 1056,622.01306,267.03217,17.133606,56.906525,0.0012789951 1056,410.48154,200.57495,22.84906,45.10057,0.0007649864 1056,600.249,220.0615,38.897644,210.22702,0.00034359487 1056,617.2517,305.38135,21.894958,82.81998,0.00014502167 1056,617.3267,371.55856,21.819946,85.431305,8.113923e-05 1056,182.19911,182.727,56.114258,104.181656,7.459737e-05 1056,610.6356,70.853035,28.511047,164.69003,6.0595834e-05 1056,608.8547,435.70752,30.291992,69.71463,5.1392606e-05 1056,54.13368,211.05852,25.520779,49.417465,4.84373e-05 1056,0.7674984,252.28134,18.71841,82.544464,4.304608e-05 1056,1.5931739,109.29503,20.30019,110.62732,3.0259707e-05 1056,1.7899488,213.78354,33.127155,177.69177,2.2477352e-05 1056,1.0659782,312.22696,18.244656,77.91446,2.1453605e-05 1056,4.260757,95.58659,55.38484,221.5276,2.0617688e-05 1056,573.7762,356.53568,65.34851,131.44028,1.7736984e-05 1056,1.2024853,351.54495,19.611685,107.16669,1.6354323e-05 1056,614.0289,3.5943506,25.117798,53.525925,9.811784e-06 1056,78.09934,150.63794,76.46902,183.11221,6.3630587e-06 1056,151.03114,131.64362,133.99397,236.38931,4.8339148e-06 1056,0.95499104,419.35812,16.221485,80.29318,3.2112125e-06 1056,3.6585093,296.91882,56.27708,174.4089,2.9044106e-06 1056,4.4589715,22.85159,77.265785,145.78156,2.2480003e-06 1056,1.3785034,21.546465,18.231543,139.61446,8.974306e-07 1056,2.8603792,427.50906,52.588478,69.706665,4.6319735e-07 1056,1.3835222,6.3727345,39.41462,60.826393,4.452962e-07 1056,351.78168,6.072401,64.6853,52.99669,8.5813895e-08 1056,185.596,5.80903,46.16214,59.343147,5.8694827e-08 1056,20.742426,5.0977964,49.39666,62.353985,5.3931302e-08 1056,400.90485,7.0401664,43.45645,51.29719,1.6463812e-08 1056,89.482635,9.668346,41.75229,51.13571,1.6068569e-08 1056,311.95917,6.469743,64.89841,52.349415,1.3954171e-08 1056,53.35858,10.553508,42.283165,48.214943,9.694113e-09 1056,233.25568,13.824773,40.674713,47.691532,9.643674e-09 1056,288.78265,6.437588,44.65692,45.25273,3.798203e-09 1056,267.99634,9.475369,41.67517,52.463943,1.0217773e-09 1057,340.67624,214.92758,35.669373,53.23468,99.90575 1057,263.63995,212.50266,33.49814,53.491333,81.0432 1057,463.42908,223.78658,32.48358,63.189407,0.52926415 1057,593.0354,193.69136,33.87964,59.264786,0.0021496096 1057,2.2097697,144.91858,19.502913,92.436264,0.0012520357 1057,617.32806,173.48958,21.818604,75.437485,0.0008780661 1057,2.658017,104.33076,33.82786,177.5398,0.0007187838 1057,622.1239,327.7866,17.022766,49.297363,0.0003697131 1057,599.4382,122.31007,39.02014,170.5112,0.00017710948 1057,617.40155,356.3789,21.745117,80.22009,0.00015162972 1057,190.3143,204.87383,25.389359,49.76123,0.000116811716 1057,1.1369035,211.82407,17.529043,77.61182,8.191659e-05 1057,611.0737,211.7269,28.072937,141.19473,8.1619015e-05 1057,608.62946,443.54028,30.517212,61.644775,6.435573e-05 1057,1.0173748,272.84622,18.004309,73.930786,5.532831e-05 1057,601.22675,310.3752,37.91992,179.90329,3.9892984e-05 1057,611.0535,54.40181,28.09314,157.99173,3.8416987e-05 1057,4.577409,146.74077,77.136604,237.19356,1.7709906e-05 1057,1.7248886,223.81766,32.95017,183.00287,1.6009e-05 1057,236.0909,158.47935,97.117386,221.36073,1.0133406e-05 1057,0.8941138,323.68005,20.015213,136.66473,9.78939e-06 1057,322.7809,162.55623,88.74548,195.79503,7.3078454e-06 1057,585.20056,9.812265,52.934998,122.18607,5.1534935e-06 1057,1.1681552,423.4563,16.804491,79.26956,4.342459e-06 1057,3.4719224,341.80557,57.79157,147.63281,1.6214054e-06 1057,215.29076,426.15225,72.43773,72.869385,1.3644204e-06 1057,256.6349,427.372,71.9599,72.399994,1.1206624e-06 1057,1.4924822,11.652295,15.807935,67.42627,1.0873958e-06 1057,310.5961,15.693243,78.087555,70.38854,2.9924698e-07 1057,2.8390903,13.401468,48.9517,67.010765,2.5154176e-07 1057,4.233503,20.670944,80.20639,156.3056,4.4400434e-08 1057,122.24032,11.312279,41.922997,52.91028,2.25724e-08 1057,494.29205,3.7057161,66.24487,55.483284,2.2523974e-08 1057,48.96815,4.5840397,44.252934,45.769424,1.5456795e-08 1057,95.43921,9.572056,42.43199,52.42655,1.4513475e-08 1057,466.2881,4.4196143,47.30487,47.497692,9.699236e-09 1057,417.63422,4.123135,62.73517,57.587986,5.8693677e-09 1057,542.5429,5.456338,45.054993,55.083736,3.4281196e-09 1058,545.56213,220.02974,35.218506,60.136032,99.80426 1058,534.35864,227.56602,21.718933,49.37996,7.00824 1058,615.76874,220.82985,22.771362,70.64296,2.2694166 1058,568.0873,226.41985,19.15216,47.928482,0.395954 1058,609.6693,74.68456,29.477356,151.76154,0.003075471 1058,61.339115,259.76166,30.576847,53.089325,0.0007570307 1058,603.87524,199.91074,35.271423,203.84296,0.00071089633 1058,25.723333,212.93544,36.32354,59.629898,0.0005362259 1058,621.5771,281.5602,17.56958,55.26468,0.00026463333 1058,621.9405,319.5091,17.206177,50.904236,0.0002059223 1058,617.2856,342.0395,21.861084,80.46802,0.00012908118 1058,3.096805,155.95538,34.10918,158.6012,8.44634e-05 1058,1.3835018,228.276,18.007938,70.53317,7.404741e-05 1058,3.8525717,237.60527,56.549458,240.14119,4.899971e-05 1058,612.50305,385.8651,26.643616,114.98459,4.8346334e-05 1058,524.07385,182.41245,82.1933,149.57617,4.4352913e-05 1058,1.4605079,376.641,18.623562,121.512146,1.7535727e-05 1058,3.7557406,398.58072,54.56542,98.95065,1.1290118e-05 1058,1.0436231,282.5335,19.344,142.38672,1.0874171e-05 1058,1.4919108,92.34929,20.535276,165.36516,4.3036716e-06 1058,596.0131,0.0,43.133545,98.47024,9.327425e-07 1058,1.556032,42.940037,19.25186,84.83757,7.644309e-07 1058,1.1348056,4.0542254,26.12903,68.64259,4.2287448e-07 1058,1.2959718,0.0,59.091927,135.4538,1.5284797e-07 1058,45.21486,5.069284,45.699867,59.725876,1.2159636e-07 1058,122.56563,11.4507265,41.71205,50.636944,9.438574e-08 1058,73.743546,9.203083,46.282837,53.25861,7.889609e-08 1058,149.87364,12.231805,39.912476,46.83412,6.566992e-08 1058,368.86044,8.801037,42.26767,55.585712,2.6253455e-08 1058,255.49321,3.830835,44.02745,49.375854,1.5413663e-08 1058,395.74072,9.520558,40.040985,51.419548,9.5248165e-09 1058,568.1201,3.9561784,43.110107,59.84747,3.2882999e-09 1058,285.04062,7.510928,45.423126,57.104412,3.1309444e-09 1059,506.92615,205.98871,31.545288,54.287537,0.27885893 1059,300.81104,186.55577,20.441345,46.434006,0.08163783 1059,488.2951,204.05,33.62738,64.883896,0.03463614 1059,524.9933,203.59001,28.1391,51.595642,0.023680294 1059,558.61993,195.52866,28.265442,49.86731,0.008155984 1059,0.7521558,193.33125,16.607708,66.30611,0.00655536 1059,1.3892481,159.16518,37.12739,104.0493,0.0022809978 1059,340.7812,188.3925,39.473846,88.294785,0.0010494054 1059,541.3241,201.91846,27.555176,51.41153,0.00088942604 1059,617.2755,170.39503,21.871155,76.49887,0.00080000143 1059,602.8225,114.41074,35.4292,180.67267,0.00040936997 1059,403.6532,270.62692,29.139404,65.69449,0.00035280627 1059,616.32733,343.82324,22.819336,94.51593,0.00033907514 1059,573.56104,341.05548,65.30298,144.92865,0.00022941288 1059,260.62708,241.65009,22.315643,60.499573,0.00021279941 1059,616.61566,56.537464,22.531006,92.34361,0.0001720034 1059,609.408,438.88382,29.738647,64.37369,6.99791e-05 1059,617.0102,115.19628,22.136475,87.13648,6.0679457e-05 1059,1.0088673,194.2372,33.672623,214.21721,3.563585e-05 1059,607.2799,0.0,31.86676,64.02769,2.9253604e-05 1059,0.5682341,223.72316,19.659222,96.00322,2.4219127e-05 1059,468.64667,63.77314,72.798706,200.55435,2.280025e-05 1059,332.49692,163.70276,74.02359,160.00388,2.0620399e-05 1059,1.0899309,400.80634,18.002712,69.81497,1.5140993e-05 1059,1.3263469,313.20078,18.247864,74.6767,1.1579171e-05 1059,3.7834735,400.46066,58.07994,96.15723,4.605679e-06 1059,586.0784,13.203861,53.03656,122.436386,4.5727666e-06 1059,1.1669768,443.67282,21.067213,59.852814,4.046366e-06 1059,375.81726,0.0,47.3584,53.977642,1.9429606e-06 1059,2.83931,87.84885,79.95974,262.2,1.4313465e-06 1059,77.54926,428.29544,74.98681,70.39957,1.3575776e-06 1059,408.1614,1.6731706,43.266785,65.28898,8.0190097e-07 1059,392.91125,423.81018,72.518555,76.46207,6.822866e-07 1059,344.4516,2.5300229,48.344604,63.616173,1.02790054e-07 1059,151.36662,4.561416,47.69516,61.366158,9.535255e-08 1059,436.35623,6.3229427,43.07486,61.099,7.34064e-08 1059,286.0135,9.471051,43.703674,50.8076,6.747929e-08 1059,579.86206,5.5902786,43.374634,55.733543,5.216126e-08 1059,308.98544,3.8568263,46.769806,50.523563,3.923021e-08 1059,191.02893,0.0,47.172455,149.88326,1.8194116e-08 1059,552.8362,8.017032,41.22754,52.796165,1.3318161e-08 1059,235.19852,3.0904233,47.09482,60.212753,1.244884e-08 1059,471.01797,7.4350896,43.388947,54.626812,1.0087303e-08 1059,108.04617,0.89744955,48.333755,54.629074,9.530777e-09 1059,1.402072,7.7857847,33.277596,75.50549,8.2205425e-09 1060,410.7711,206.14302,24.864014,58.34282,94.93835 1060,496.29745,208.58292,32.41684,71.37656,0.17214458 1060,447.07162,209.99171,32.26187,62.345688,0.040501453 1060,392.85632,198.8627,27.56369,51.56978,0.03676237 1060,522.6618,209.92061,26.415161,48.961655,0.029672585 1060,429.31567,213.70808,23.874115,53.72838,0.012132176 1060,508.5647,274.2359,45.124023,125.66214,0.0105151655 1060,467.52084,213.1361,25.659729,56.379776,0.00996077 1060,537.07404,218.668,24.987549,54.537598,0.0038969032 1060,5.382188,217.85307,62.528717,152.66328,0.0027263216 1060,621.0316,130.63129,18.115051,55.55623,0.0015622871 1060,483.52005,221.27193,26.366882,54.255814,0.0014534438 1060,14.224681,188.27272,40.024986,65.45929,0.0014233299 1060,505.36945,84.91025,21.662048,48.02385,0.001399829 1060,1.3943034,228.39488,21.678112,135.40068,0.0013840302 1060,390.9095,167.26558,57.35324,119.54759,0.00075718807 1060,610.32806,217.7497,28.818604,136.66501,0.0006580824 1060,622.00995,222.34802,17.136719,53.517944,0.00056426466 1060,609.9325,83.7464,29.214172,141.70694,0.0003433191 1060,372.5983,212.95045,24.887451,47.471085,0.00031850795 1060,490.53214,233.89381,93.77939,206.75551,0.0002484993 1060,1.7305453,186.2949,18.238878,74.689255,0.00023096138 1060,612.1557,335.72272,26.990967,145.29327,0.00018405606 1060,584.34186,58.265106,53.365356,251.76578,0.000108729524 1060,609.4197,434.53177,29.72699,71.6723,7.89779e-05 1060,1.5686394,265.80487,34.83905,204.96692,5.612317e-05 1060,2.2071779,128.66635,29.599384,161.36725,3.6303754e-05 1060,583.8639,10.599505,54.84027,130.08522,2.7929214e-05 1060,0.62319094,319.1886,20.049314,94.467285,2.152287e-05 1060,367.87143,124.81698,126.52307,229.38885,1.4638505e-05 1060,1.1034579,363.60156,18.268198,132.30621,7.564424e-06 1060,4.781058,346.95633,77.86093,137.1177,2.7309247e-06 1060,397.29596,0.09895508,49.771393,71.513016,7.993824e-08 1060,1.2655225,63.254704,20.426392,147.88849,5.1192483e-08 1060,348.6875,1.8276596,46.835205,62.27825,4.2269605e-08 1060,301.48993,1.266263,50.558136,65.178635,1.8919827e-08 1060,425.57532,4.0271387,46.753143,62.692795,1.8765065e-09 1060,456.2986,7.051774,43.489624,53.614067,5.6149835e-10 1060,374.00388,0.0,46.527832,60.548264,3.3556108e-10 1060,1.5151644,7.4536524,33.493614,81.87918,2.3126603e-12 1061,532.27795,140.57465,26.718933,66.788635,0.0150808655 1061,530.94794,214.46356,28.644043,53.405823,0.014194078 1061,21.515402,208.72704,26.830954,45.761505,0.013185727 1061,622.14197,210.34395,17.0047,53.833572,0.007074174 1061,6.900752,217.41742,22.91037,50.064606,0.0038059817 1061,518.2604,229.95471,23.839294,53.11853,0.0031639382 1061,540.17645,221.86852,34.89569,70.66753,0.0028583065 1061,600.784,100.123146,37.11084,213.00336,0.0026554433 1061,480.1994,214.07825,38.8396,78.794556,0.002339565 1061,456.00586,263.81595,31.507599,69.62552,0.0020058714 1061,1.5796025,212.35289,13.64105,48.137314,0.0016721886 1061,387.5532,223.23761,24.357239,60.217773,0.0011033955 1061,77.505714,199.06813,32.87612,69.37938,0.00079057715 1061,620.988,73.326645,18.158691,58.336304,0.00060501066 1061,1.3622934,200.75171,20.638926,138.35031,0.00048563106 1061,619.88464,118.00598,19.262024,68.218735,0.00044480345 1061,613.1597,364.2749,25.986938,135.99506,0.00038559368 1061,4.7202034,160.10683,63.78194,136.45885,0.00029190726 1061,610.24396,213.07211,28.90271,159.17624,0.00027192463 1061,515.0306,196.75836,40.67462,114.61328,0.00015025258 1061,1.6815332,115.68757,19.91055,148.76828,0.00010958053 1061,0.8830225,292.3154,18.84525,85.12906,0.00010878626 1061,568.3583,334.08148,69.112,156.159,0.00010694281 1061,547.3425,143.05461,28.735657,58.961807,5.5354332e-05 1061,1.4152653,268.1871,31.38719,192.11765,5.2573734e-05 1061,608.4914,33.920998,30.655273,167.10406,3.5463625e-05 1061,596.101,2.036084,43.045654,100.800285,8.7876315e-06 1061,1.0885743,383.88284,18.115213,113.06311,7.2910134e-06 1061,5.262259,352.7448,76.76024,132.50827,4.2589795e-06 1061,1.7321045,27.14713,30.23565,174.1517,2.3604002e-06 1061,151.5549,144.21779,128.95294,216.57228,1.385891e-06 1061,2.6925716,430.0537,45.16465,67.62079,9.249861e-07 1061,1.2994792,9.254636,21.174164,61.850727,2.651151e-07 1061,527.89105,6.702282,49.081665,60.602306,3.0419127e-08 1061,407.8187,4.806188,48.00177,60.53271,2.7827724e-08 1061,359.253,4.9483366,84.8389,82.30962,1.7255637e-08 1061,425.68005,2.4521322,81.29678,75.21801,1.6046945e-08 1061,474.1145,5.2459345,89.143555,82.9357,5.789558e-09 1061,558.4999,7.153692,42.529175,54.22617,5.2334435e-09 1062,526.51337,211.76088,28.834473,49.699997,31.572796 1062,58.263115,184.13103,39.579422,72.63982,0.04008598 1062,336.46304,218.2932,17.819275,45.45372,0.0350411 1062,545.9924,212.81462,28.362366,55.447678,0.034788534 1062,142.27148,217.0262,35.01509,64.70329,0.02123902 1062,2.364795,219.39368,43.72254,136.4523,0.008818839 1062,514.5039,179.5241,58.02588,107.66057,0.0037898356 1062,608.6541,187.29614,29.974792,139.96622,0.0029459558 1062,620.3897,239.93683,18.756958,60.656128,0.0009201892 1062,0.8538192,218.8713,17.791075,79.60443,0.000853701 1062,611.707,81.687035,27.439697,136.20142,0.0006214774 1062,1.1460214,123.61878,18.911343,91.6843,0.00028406334 1062,86.26357,184.8543,39.065353,89.06032,0.00023718554 1062,129.62248,233.61066,35.696304,86.36047,0.0002194483 1062,482.607,271.2691,30.35785,76.664825,0.0001902664 1062,611.1577,261.07648,27.988953,143.3493,0.00017120919 1062,608.99915,440.4123,30.147522,66.62106,6.61261e-05 1062,488.7786,130.07257,130.33817,242.16037,5.6067274e-05 1062,617.2065,38.218525,21.940186,84.38956,4.7051613e-05 1062,1.2793766,261.5022,17.879045,146.05017,4.150988e-05 1062,585.6514,390.81067,53.49524,106.88965,2.8032753e-05 1062,3.9569027,305.006,55.34982,173.53207,2.4471407e-05 1062,2.6056073,55.580822,60.317467,277.59164,1.334068e-05 1062,1.0250236,372.65942,18.81357,124.44623,1.1535338e-05 1062,572.9726,2.2527864,66.17407,55.953777,9.597703e-06 1062,1.3531836,15.614805,20.87132,136.14111,3.878028e-07 1062,424.93176,6.02765,81.9346,79.78896,1.4370082e-07 1062,566.1872,2.1088672,72.95947,176.3936,1.3627343e-07 1062,552.4853,5.350967,43.683838,59.46897,1.15602596e-07 1062,452.6409,0.0,37.08423,49.193996,4.178201e-08 1062,415.87296,5.4459248,46.48523,50.039154,3.3340317e-08 1062,366.5592,7.9251823,83.62793,74.51251,2.4761068e-08 1062,474.4184,3.3055632,86.35626,75.2037,6.353106e-09 1063,537.5636,173.39703,28.133728,68.186935,12.209652 1063,569.55817,225.31828,28.196167,69.484085,0.088054836 1063,405.36606,198.75275,25.248688,55.808243,0.021863027 1063,341.52286,216.93552,20.626099,51.42685,0.0048723593 1063,1.5783774,309.88382,32.71015,108.108,0.0038674676 1063,608.8959,179.35712,29.610474,142.15186,0.0028653534 1063,549.0703,214.9145,32.53772,81.99031,0.0013352381 1063,621.55273,224.39975,17.593933,59.08972,0.000828181 1063,621.19226,172.54753,17.954407,65.93411,0.00077408476 1063,621.9971,132.6415,17.149597,57.25125,0.00064045575 1063,619.63354,298.59372,19.513123,67.57211,0.0005413611 1063,621.0621,93.29571,18.084595,61.53576,0.0004912576 1063,500.98834,101.352165,130.18066,253.26904,0.00041353473 1063,609.75903,84.71337,29.387634,160.7922,0.00030709058 1063,543.616,142.40114,23.5448,55.844894,0.0003034243 1063,601.8024,258.62674,37.182983,125.532715,0.00023869045 1063,1.6323593,142.3625,20.346363,133.60085,0.00014027553 1063,613.69037,358.51584,25.456299,139.67966,0.000117579315 1063,3.7988493,193.67068,55.347965,238.491,9.9048564e-05 1063,1.1757593,360.75546,13.111566,50.49875,8.675209e-05 1063,1.45514,213.24066,18.449854,153.58401,5.4224955e-05 1063,1.4374512,385.3396,18.498163,88.09088,1.8637791e-05 1063,3.7043002,337.42093,77.349205,145.0318,8.004786e-06 1063,601.9957,15.610736,37.15094,136.72421,7.5888183e-06 1063,1.1064632,438.38892,20.720314,63.29059,4.482483e-06 1063,591.47064,6.4467173,46.800537,51.09812,1.0910314e-06 1063,1.1720736,45.03815,20.789862,150.93947,4.173098e-07 1063,0.90877974,14.328041,11.695686,78.43916,2.0620502e-07 1063,2.3684587,34.907658,60.093014,234.7821,1.5516027e-07 1063,384.65424,0.2759082,48.749786,64.82447,1.4347788e-07 1063,419.49908,3.8032732,47.449097,53.09037,2.4349763e-08 1063,456.3332,5.722694,45.24646,53.560303,1.37291885e-08 1063,1.6816065,12.977601,37.65329,80.77765,1.0512369e-08 1063,483.82693,5.0594206,44.35959,52.040405,3.6673002e-09 1063,511.43372,4.7471094,41.366333,48.9027,2.6118838e-09 1063,558.10706,1.1860434,46.065186,54.41326,1.7571213e-09 1063,351.09018,3.7215853,40.30313,57.628418,7.938233e-11 1064,147.7826,213.53355,37.88701,71.17735,0.80570513 1064,365.13605,222.00287,20.437622,51.194366,0.59800404 1064,610.37067,115.330475,28.473389,67.585144,0.07894736 1064,427.4697,195.63937,39.751465,67.96979,0.010219534 1064,502.72324,221.39435,36.696564,70.91528,0.004548497 1064,458.04944,226.32886,33.326782,65.849,0.0032075488 1064,585.9968,108.767845,50.93457,216.61829,0.002902152 1064,610.99164,186.81183,28.15503,124.18991,0.0025864125 1064,348.09647,220.03766,19.476227,47.851715,0.0022135207 1064,622.4648,189.41475,16.681885,58.321457,0.0014760038 1064,369.0893,201.06386,33.67166,83.29405,0.0010285678 1064,568.0809,224.59831,35.748962,79.575516,0.00055927853 1064,413.73096,210.90797,33.401337,62.41646,0.00046615922 1064,1.1523471,235.83553,18.13629,73.09404,0.00029381257 1064,588.086,234.06802,36.0755,74.25888,0.00022786691 1064,608.9858,441.33038,30.160889,64.758484,0.00016110587 1064,2.4317636,172.92113,29.432919,157.18556,0.00015896765 1064,612.3845,298.93594,26.762146,140.78473,0.000105314044 1064,503.22464,168.69615,24.404022,47.54808,6.911871e-05 1064,3.2005372,150.76303,39.59356,85.625305,5.8741578e-05 1064,584.8621,397.32217,54.167725,99.28046,4.064257e-05 1064,0.9597095,274.2428,17.132534,143.94775,2.3471837e-05 1064,5.3876724,135.38422,75.42604,233.85736,2.2042013e-05 1064,1.1021558,371.59818,17.80111,122.04242,9.251312e-06 1064,610.02637,2.7345638,29.1203,146.02202,5.4604566e-06 1064,3.8458319,313.79276,55.164806,165.41855,5.1372517e-06 1064,1.414568,65.88522,21.127745,161.43704,3.28507e-06 1064,497.95517,283.57077,80.171295,184.53534,2.925739e-06 1064,2.606906,427.8391,45.111362,69.54596,1.644249e-06 1064,470.97803,8.112684,43.676758,51.206696,1.10088905e-07 1064,496.4971,6.7483597,44.625397,53.82207,1.8052324e-08 1064,585.0994,3.868358,44.318848,51.672665,1.249032e-08 1064,421.86435,4.93763,45.141174,59.313164,4.683736e-09 1064,1.6148535,19.389357,54.87489,118.88571,3.0414762e-09 1064,524.79254,6.4984946,43.7157,51.35258,2.3311313e-09 1064,372.84305,4.7224936,66.36374,55.540623,1.9297468e-09 1064,552.1726,7.60973,44.162415,49.881313,9.0221597e-10 1064,1.0971484,3.3941343,18.95272,69.17625,4.5407192e-11 1065,606.7286,195.28894,32.41809,83.22571,0.11747603 1065,502.52982,215.55766,36.1929,72.598495,0.027046885 1065,355.7179,229.55103,18.886505,49.926117,0.0054451083 1065,624.551,221.75102,14.595642,45.23558,0.0045809536 1065,587.07166,119.08185,50.5802,227.06503,0.0028169851 1065,522.764,230.97478,26.178589,56.563828,0.0013372094 1065,5.0350914,199.60371,22.89337,47.52028,0.0009603535 1065,402.1326,226.73349,24.164673,58.24405,0.0007450738 1065,606.80865,441.24823,32.338013,69.89844,0.00060204824 1065,616.827,262.10605,22.319641,80.92001,0.00036863363 1065,375.30624,225.07262,22.49408,55.52089,0.00035785604 1065,398.99048,189.02414,37.356506,132.9661,0.00025782755 1065,610.8461,77.64133,28.300537,164.91045,0.00022871513 1065,603.82306,314.58636,35.32361,183.8277,0.00016503496 1065,102.19185,220.10233,22.067856,46.849396,0.0001571666 1065,70.95986,223.46162,46.887566,126.26906,0.00013783472 1065,2.5617034,160.46477,33.051716,186.74104,9.873715e-05 1065,616.4711,42.536938,22.675537,88.36197,5.6610792e-05 1065,1.2400074,222.25381,18.46887,78.07025,3.3936518e-05 1065,1.6719849,134.60365,19.512728,132.10158,2.8590339e-05 1065,1.102507,284.4465,17.003483,130.07803,1.8188e-05 1065,42.937946,197.91258,118.21121,215.75111,1.20927225e-05 1065,0.7261076,379.62704,18.43536,116.24191,9.238052e-06 1065,466.53043,253.27136,79.2504,204.84558,8.600635e-06 1065,3.7295947,246.38805,58.277523,219.8394,8.153299e-06 1065,391.2976,429.80237,81.64969,69.37744,5.794969e-06 1065,571.1133,21.134727,68.03339,142.22287,4.115743e-06 1065,410.81464,252.49693,18.540833,48.250534,1.5415296e-06 1065,488.79767,433.18307,72.101135,66.87787,1.5183543e-06 1065,2.2732894,428.27182,45.67171,70.22403,7.137712e-07 1065,439.8733,431.83075,72.138,68.166504,5.3292035e-07 1065,1.607011,43.91346,34.36633,186.20499,3.5189146e-08 1065,473.1976,6.064416,64.742645,48.10466,1.8238937e-08 1065,3.2653077,26.472015,53.498085,99.09652,6.3204006e-09 1065,451.5759,2.8284717,46.529846,47.230648,1.4667865e-09 1065,400.60422,4.404232,45.02408,51.64043,7.4885126e-10 1065,376.11136,5.2569695,43.563538,58.88293,4.2834007e-11 1065,1.1321347,2.9890203,18.327047,70.815216,4.884336e-12 1066,372.57657,215.52878,22.616577,56.20294,0.08196255 1066,612.1975,67.07359,26.949158,53.222946,0.07649846 1066,473.20023,264.6948,67.10989,140.6459,0.0061333235 1066,611.45764,320.99054,27.689026,138.49759,0.0056610433 1066,385.26364,217.63966,21.411041,52.672134,0.0028735546 1066,594.2217,340.18198,22.293274,52.274414,0.0026746267 1066,586.93317,207.11559,50.713745,233.39772,0.00078859145 1066,1.8698031,185.10818,18.859108,75.759766,0.0004017753 1066,621.2402,215.25728,17.906494,56.980362,0.00035451018 1066,463.55267,227.3478,42.978058,128.73708,0.00025476157 1066,462.04596,240.71164,26.248413,54.664734,0.00015801046 1066,609.7155,176.83636,29.431152,162.8305,0.0001486696 1066,481.84372,280.2668,29.743073,65.10861,0.00012548522 1066,585.2304,379.55386,53.91626,114.519226,0.0001008641 1066,482.2513,199.34756,25.384705,59.216187,9.31825e-05 1066,597.99084,21.51761,41.155823,154.67247,8.295716e-05 1066,608.9738,433.55786,30.172852,73.09976,6.520543e-05 1066,2.270398,134.6368,36.11647,169.61018,4.9606537e-05 1066,445.8198,211.09238,33.450745,73.12805,4.4095053e-05 1066,0.94149417,207.77144,17.341074,158.89384,2.4803168e-05 1066,1.8021046,76.9363,19.111937,149.11938,1.9398507e-05 1066,607.06537,3.1899056,32.0813,67.80199,1.70531e-05 1066,3.5108724,237.54152,57.178062,231.94588,1.4048288e-05 1066,1.1780087,439.63376,20.740833,61.838593,1.1129326e-05 1066,0.9097998,319.29773,19.336441,137.21707,6.8184854e-06 1066,409.33502,153.2657,75.80914,177.48763,5.0262843e-06 1066,548.14343,8.852881,82.81769,73.26685,2.739512e-06 1066,4.117575,394.02182,57.078766,98.93829,1.3991445e-06 1066,502.83344,4.2052083,46.185303,62.929367,1.8440785e-07 1066,529.484,8.09652,44.99402,50.48317,5.1316935e-08 1066,478.62772,6.3741865,43.76773,56.005074,3.7513903e-09 1066,142.32698,6.572404,38.434235,48.72882,2.5429892e-09 1066,409.68146,4.676244,42.236053,54.255085,9.97887e-10 1066,1.5029948,14.002302,30.167843,65.1107,8.5073926e-10 1066,441.38687,5.315653,45.262817,47.307663,7.3158085e-10 1066,353.97113,4.6986413,39.64026,51.419952,1.328265e-11 1067,455.13406,209.13132,21.46637,45.134964,5.8527894 1067,607.5379,254.47755,29.669373,51.550278,0.060950797 1067,477.60132,202.62761,25.416962,53.98323,0.0071526296 1067,599.64703,181.19328,38.211914,178.51793,0.00423231 1067,78.67513,202.83424,25.61663,46.61058,0.0037645702 1067,435.12833,210.81816,36.213623,79.37288,0.0027294224 1067,454.81506,197.20047,37.2576,92.351135,0.0012010633 1067,510.62262,213.68918,24.891113,56.36902,0.00090803887 1067,474.09262,185.18263,39.188324,128.04796,0.00031292142 1067,589.6123,263.2262,48.83008,205.65933,0.00023866177 1067,607.8255,52.2858,31.321167,78.95978,0.00023558293 1067,75.27597,198.04309,42.47673,96.16263,0.00017078925 1067,617.2853,174.01492,21.86139,86.85394,0.00014690869 1067,1.3241813,163.9786,18.27833,71.77997,9.126071e-05 1067,393.47498,215.13806,34.411407,109.71277,8.0713064e-05 1067,60.076298,210.9709,25.624645,57.32817,6.98564e-05 1067,421.89575,217.15297,25.721588,59.66588,6.7068424e-05 1067,617.5919,96.13436,21.554749,81.63773,6.0818737e-05 1067,609.0594,439.28427,30.08728,68.35455,5.6249366e-05 1067,39.65416,217.41893,27.665749,56.609634,4.199682e-05 1067,2.5381935,151.34514,33.42983,171.1617,2.9655313e-05 1067,423.24182,163.99655,89.84686,201.79758,2.604332e-05 1067,1.0388298,216.4977,17.600988,130.26302,2.519943e-05 1067,595.1982,2.989157,43.948486,93.44921,1.1331367e-05 1067,1.6714624,247.54613,32.987114,184.49544,1.0578215e-05 1067,3.6676872,327.08124,57.08139,156.99585,6.223322e-06 1067,1.1009343,360.04758,20.255968,107.17847,5.489382e-06 1067,1.2058733,441.64075,21.333193,60.48761,5.010615e-06 1067,583.12994,17.67134,55.31848,222.56085,4.1142916e-06 1067,508.68152,234.3964,87.56909,191.52087,3.3137478e-06 1067,2.426175,60.22539,28.521454,143.91434,5.644037e-07 1067,142.5275,7.1725326,39.193573,47.19917,5.721063e-08 1067,3.0249057,21.833496,56.887314,118.885574,3.63768e-08 1067,559.4186,1.5897901,46.580444,45.349495,2.229139e-08 1067,408.0272,4.637878,45.854218,62.550537,7.3767916e-09 1067,0.9983903,8.071509,18.982227,54.062553,6.8437265e-09 1067,380.62643,6.0714064,43.72049,59.007397,4.203963e-09 1067,516.32733,0.0,64.852844,60.46629,2.2808384e-09 1067,478.5403,5.109808,42.247223,52.872787,7.6831363e-10 1067,435.54163,2.7652996,42.560944,56.94203,2.491767e-10 1067,356.57935,1.989476,41.40387,59.221176,7.3311135e-11 1068,2.233186,212.28429,28.750336,82.61235,11.002608 1068,487.81137,210.35962,19.982086,45.8703,6.4950438 1068,406.392,216.93259,22.227905,55.49411,0.03422262 1068,0.90577555,216.2287,13.987894,53.434845,0.0032601194 1068,421.16705,212.78198,21.827759,48.02957,0.0032508553 1068,621.58655,224.0462,17.56012,58.39569,0.00205402 1068,559.10187,206.11143,23.314697,48.833313,0.0011361745 1068,565.0813,217.31079,44.165222,88.844574,0.0011112205 1068,546.215,207.04947,22.260864,46.215256,0.00108657 1068,603.2425,186.97871,34.83307,147.59654,0.0010541016 1068,481.12277,192.11322,38.091278,102.736115,0.0003556866 1068,622.4748,115.41461,16.671875,53.87198,0.00017808727 1068,2.6290789,202.58905,59.258053,135.07483,0.00016729481 1068,609.1505,435.38434,29.996155,69.62097,0.00016387062 1068,609.7169,259.41245,29.429749,158.87323,0.00014417552 1068,0.9416561,246.64772,14.710229,64.709946,0.000112717906 1068,1.4964832,69.855194,13.523181,51.04663,8.746627e-05 1068,607.8713,2.7598991,31.27539,60.18474,7.196544e-05 1068,567.1148,352.0275,69.19849,143.6883,5.9068192e-05 1068,53.97506,197.33301,34.988335,63.82898,5.6598863e-05 1068,611.0287,78.375786,28.117981,157.34836,4.4681386e-05 1068,617.268,54.53394,21.878662,85.433014,4.2850625e-05 1068,468.30038,155.25327,74.02011,189.60904,3.4014025e-05 1068,440.07657,151.19582,32.744476,66.878784,2.0709636e-05 1068,0.9716651,330.8628,19.22257,141.58023,8.050076e-06 1068,497.1689,237.39674,84.14908,198.61873,7.3839815e-06 1068,3.396312,272.0953,55.910355,205.21194,5.0199415e-06 1068,585.89624,12.375736,53.250427,113.308075,4.7480917e-06 1068,1.1891667,95.9478,20.688429,185.45946,3.5715593e-06 1068,2.015949,420.29074,33.34393,77.62988,2.1708515e-06 1068,2.0720623,27.613054,29.017372,116.33792,1.2532523e-06 1068,446.55783,430.27292,73.00198,71.45932,7.1572066e-07 1068,1.0028117,14.588226,14.397756,83.96088,3.2338545e-07 1068,3.362772,34.49387,61.309967,226.45319,1.6674674e-07 1068,407.95993,7.484733,45.855133,58.725174,5.0776762e-08 1068,377.92477,7.789548,47.2825,57.308826,4.70469e-08 1068,573.4602,7.8947396,41.249084,54.834545,4.2891624e-08 1068,543.6506,4.9171224,45.455627,60.59307,1.7477966e-08 1068,472.1009,7.256408,43.415527,54.588593,2.5236084e-09 1068,434.82333,4.3040757,63.618652,49.337543,1.3223235e-09 1068,516.87915,0.5604948,47.368958,65.17274,1.0713651e-09 1068,198.36548,3.3512273,42.223663,60.01983,5.578178e-10 1068,492.71173,0.83526695,45.821045,51.69811,2.9936753e-10 1068,350.69705,2.8202832,42.562042,58.447662,2.453847e-10 1069,438.4713,218.2136,22.344727,47.995483,92.427925 1069,423.49368,209.03612,24.800537,55.139786,1.651608 1069,528.0387,211.31775,31.145874,51.436188,1.5112051 1069,404.50418,194.88428,24.40979,58.023544,0.0850712 1069,431.75732,193.13611,38.780304,109.80655,0.018907506 1069,606.87103,210.22733,26.481506,52.444336,0.0073460024 1069,146.89073,212.29834,24.541718,45.62509,0.0072394214 1069,455.32794,215.81596,24.77359,49.665726,0.0037263457 1069,596.3287,211.89539,21.283203,45.5502,0.0017541024 1069,620.37714,181.06932,18.769531,68.11928,0.00070037175 1069,616.192,220.29285,22.95465,88.1261,0.0005961583 1069,609.58514,129.36339,29.561523,150.1379,0.0003870482 1069,57.776726,230.74306,36.97178,67.702194,0.00019820359 1069,349.34735,212.67618,20.179382,48.690094,0.0001852929 1069,610.48126,11.0040045,28.665405,125.85854,0.00018489451 1069,612.33887,383.48465,26.8078,121.88385,0.00014290135 1069,1.133929,241.01631,18.538366,74.18892,0.00013090976 1069,602.8493,199.31372,36.297363,202.02072,8.5424144e-05 1069,409.15637,168.5031,88.46292,187.90489,6.580075e-05 1069,463.3629,159.83383,36.67627,82.02022,6.549548e-05 1069,586.7199,306.68277,52.426758,184.30179,5.6809655e-05 1069,1.7884521,254.00066,32.43069,192.60997,4.0207324e-05 1069,585.1533,21.511152,53.60962,204.21504,2.5055888e-05 1069,1.5178125,126.27586,18.69606,73.87918,1.5625628e-05 1069,574.6281,2.3888884,64.26251,53.30325,1.0625858e-05 1069,1.1959766,382.0583,18.019293,115.10568,1.0189379e-05 1069,2.1468124,123.87407,32.358917,187.41698,9.119565e-06 1069,3.5185564,396.31705,54.252827,94.45444,2.9227717e-06 1069,1.72417,61.297535,29.540602,125.73003,7.140259e-07 1069,408.02786,6.6329656,44.924866,56.13356,9.720651e-08 1069,380.26413,6.3862696,44.497803,61.38439,6.400372e-08 1069,532.57404,10.99821,87.354126,81.53619,2.511078e-08 1069,429.0309,4.0076303,61.251404,47.059437,1.2013084e-08 1069,508.54382,5.6278877,46.869446,59.690723,1.1379271e-08 1069,470.70148,5.483169,44.76776,56.85747,3.3895127e-09 1069,340.86584,4.8569827,64.70401,56.50496,2.406873e-09 1069,1.7650554,12.7991705,30.555826,66.832184,6.5727246e-10 1070,501.2244,205.49104,20.51175,48.47818,99.27233 1070,475.91684,211.78665,25.062225,61.395294,79.69412 1070,571.49854,211.74155,28.330078,60.986755,54.867615 1070,600.38556,205.72415,29.485779,62.27057,12.373674 1070,537.2031,209.61147,29.699097,55.413895,0.673068 1070,428.41116,203.2261,29.518341,66.05936,0.44094622 1070,489.6797,187.15952,36.677734,97.0318,0.057282254 1070,623.8093,210.18726,15.337341,55.650208,0.050950993 1070,555.55005,189.90077,62.62018,99.64168,0.007817959 1070,610.8045,147.52545,27.972595,117.671875,0.0020099077 1070,587.0022,117.93958,48.98999,210.17773,0.0011815748 1070,473.51007,166.67989,88.75159,178.25215,0.0002661118 1070,350.2501,216.56146,17.845398,46.650177,0.0001541085 1070,1.7689925,174.63391,19.630953,127.765015,0.00010804514 1070,608.9055,443.4458,30.24115,62.11441,6.462807e-05 1070,602.9226,326.53653,36.22406,173.16467,3.9995608e-05 1070,0.92114013,375.0285,17.958363,119.98682,2.8558235e-05 1070,3.9352443,107.97758,55.258713,235.96552,2.23301e-05 1070,610.42737,21.548737,28.7193,156.29588,1.8066918e-05 1070,610.62396,252.54579,28.522705,151.36613,8.633869e-06 1070,3.7914226,340.27655,77.628944,142.0094,6.60409e-06 1070,608.46014,1.9668198,30.686523,65.5694,4.2016763e-06 1070,1.324992,255.43753,34.619026,203.79373,3.0209908e-06 1070,1.4089617,74.39314,18.839602,129.97745,8.4071684e-07 1070,2.8627214,424.23578,53.16755,72.90805,6.811034e-07 1070,383.20966,10.375967,82.020935,73.57403,5.4026253e-07 1070,376.66266,6.9148684,44.519836,47.380356,5.3734777e-08 1070,434.12595,3.5385287,45.48163,61.37892,2.7401573e-08 1070,334.34152,3.650303,61.716675,53.21444,9.757649e-09 1070,1.0048105,9.327784,16.819532,48.658394,1.9280094e-10 1071,568.2229,222.55397,35.630005,76.11751,88.608955 1071,490.72205,214.1336,23.650574,52.80667,3.029754 1071,467.0097,208.60466,29.841156,72.04686,2.3404305 1071,552.00006,195.96506,33.048096,81.18298,0.30995274 1071,374.53418,166.20396,23.751831,59.69304,0.02672799 1071,20.949638,212.05644,28.877838,55.479538,0.019606745 1071,379.15396,202.59296,24.177063,59.54712,0.0058647664 1071,389.8454,200.18509,32.443207,70.506134,0.0020895672 1071,603.1936,171.83076,35.099915,131.98967,0.0019095236 1071,66.23225,207.07144,22.927132,46.885178,0.0018691686 1071,620.3346,134.98769,18.812073,58.323074,0.0009424464 1071,610.0661,94.296524,29.080566,150.3742,0.00056445086 1071,614.7846,20.004837,24.36206,101.2749,0.0005110423 1071,79.833496,206.76497,25.2751,45.702072,0.00038231502 1071,29.842873,194.39487,48.515068,83.58298,0.00029208322 1071,1.5531218,165.23393,19.769522,135.46935,0.0002035807 1071,534.36285,163.0726,98.111694,210.06635,0.00020270851 1071,588.16693,208.67409,50.669983,243.05077,0.0001376378 1071,3.7966309,157.15826,57.46151,202.42871,5.8053403e-05 1071,609.408,441.3219,29.738647,64.6268,5.1690084e-05 1071,612.8742,0.0,26.27246,47.767696,4.556803e-05 1071,584.9385,394.6341,54.20819,101.35239,3.9055998e-05 1071,1.273409,241.26491,18.92263,144.29527,2.365904e-05 1071,2.1782918,78.82147,33.78809,196.3825,1.7625727e-05 1071,497.46918,144.90105,36.02539,90.19432,1.2600287e-05 1071,0.9230086,345.40027,18.469004,132.76578,7.5027374e-06 1071,3.5629737,285.69656,55.7504,190.64392,2.637288e-06 1071,1.8733822,417.39282,34.00199,81.25714,1.5171007e-06 1071,449.92148,4.945801,47.055817,61.128914,4.658154e-07 1071,1.0898958,34.06928,19.185043,119.87344,7.9241154e-08 1071,577.8367,3.4502573,46.1817,61.225426,7.049682e-08 1071,550.65814,1.4793588,45.16205,60.286644,4.5966853e-09 1071,381.17654,8.547022,44.269897,48.02237,3.2486263e-09 1071,505.17365,5.479082,43.567017,52.1966,2.755549e-09 1071,1.0120785,8.562285,17.052498,52.029797,3.8460676e-10 1072,619.54645,207.69847,19.289856,64.345474,84.55325 1072,580.4971,224.42754,35.26599,79.4984,32.098396 1072,85.27015,209.41568,23.924904,50.288208,1.0933383 1072,555.1321,223.9819,37.328857,77.66632,0.1669031 1072,610.5883,135.06831,28.55835,75.42769,0.14021985 1072,468.85406,212.60883,40.139587,99.79404,0.06402621 1072,539.44183,210.74268,22.97754,50.058777,0.0317117 1072,503.591,209.1653,25.06305,49.44066,0.024516182 1072,376.79492,200.78548,31.838257,71.122696,0.014733914 1072,398.421,163.25928,24.017426,63.719482,0.011756487 1072,490.84344,222.1373,21.792847,47.483795,0.009958235 1072,509.72943,195.38177,38.92151,75.66437,0.008254186 1072,579.6546,165.51772,55.657166,194.14555,0.0070832735 1072,416.89438,206.87502,36.788696,95.523575,0.0015182974 1072,616.6592,253.21602,22.487488,98.26619,0.0005622037 1072,183.09386,213.52733,25.452744,55.198196,0.00017986065 1072,1.426744,236.88716,19.081055,122.828415,0.00012177696 1072,608.921,439.72382,30.225647,66.9415,5.6940593e-05 1072,0.9456437,315.99747,17.982706,144.66562,4.673356e-05 1072,493.12247,165.76366,102.70761,198.5898,4.4932087e-05 1072,4.4101725,235.15456,58.541927,221.50056,3.8458413e-05 1072,2.1249228,153.42433,28.671085,157.9616,3.8315782e-05 1072,1.0028459,421.0096,16.908815,81.226166,7.700169e-06 1072,1.3908968,88.95466,18.31688,141.96878,6.8419477e-06 1072,585.0256,11.000606,53.608887,123.12667,3.0809094e-06 1072,3.5373616,394.94885,55.91871,99.00601,1.7805244e-06 1072,590.2709,4.452181,44.77173,50.451416,1.1467109e-06 1072,543.9737,4.6379557,63.51837,58.113693,8.807234e-09 1072,1.7400651,13.066827,34.87185,72.80634,1.9361324e-09 1073,458.6372,215.56805,33.575043,91.188995,97.79517 1073,488.56143,203.40154,28.849152,76.56319,7.070577 1073,577.08936,204.74663,32.035522,53.022324,3.0754497 1073,436.68137,201.85489,33.002716,80.991516,0.04705251 1073,414.66193,151.60777,23.316895,58.513763,0.01587668 1073,601.56647,212.56035,37.35327,78.349014,0.011430143 1073,621.4928,201.37987,17.65387,57.26143,0.0050284266 1073,585.18286,148.0844,51.82025,235.94191,0.0018661121 1073,477.20062,194.12508,26.266937,61.15175,0.0017463746 1073,414.2563,200.44534,37.242676,98.752594,0.0012073359 1073,601.8793,305.11813,36.062378,182.12152,0.0006992252 1073,427.16443,176.08228,93.808655,173.52927,0.0006835035 1073,391.21362,207.39073,28.801117,70.121475,0.000619982 1073,610.4748,107.34086,28.671875,160.3031,0.00037042596 1073,1.7308211,207.18687,19.727919,129.52202,0.00018023085 1073,143.92639,205.44685,31.167526,67.72218,0.00014792851 1073,491.27875,196.81746,75.87457,177.38704,0.00013091101 1073,608.3005,438.51547,30.846191,68.61578,8.880622e-05 1073,2.9063208,117.11784,33.592384,189.74925,4.778883e-05 1073,574.5361,315.00653,38.501404,97.98474,3.499602e-05 1073,4.1785827,194.57758,58.666225,240.38104,2.321405e-05 1073,1.0616455,314.84433,16.097054,140.58167,1.6839324e-05 1073,608.6276,0.0,30.519043,63.21815,1.23893915e-05 1073,0.841213,420.22443,15.840889,82.464325,2.8210068e-06 1073,2.9357991,385.4775,56.62785,109.1308,1.9059074e-06 1073,585.9923,5.2274413,53.154358,142.89604,7.857955e-07 1073,313.42874,3.0640235,62.003784,55.190018,9.6780084e-08 1073,1.5963591,30.27064,19.557072,139.05212,8.7505256e-08 1073,1.8286785,15.297829,34.88234,65.887474,1.1674234e-08 1074,577.366,219.21661,55.358337,170.02875,99.90581 1074,570.44446,222.02795,36.893005,98.31662,3.3363893 1074,353.04236,208.81003,25.702423,47.47989,0.6728309 1074,389.19724,184.13586,29.334503,57.670242,0.05856616 1074,607.9891,304.66522,29.848267,72.723114,0.043716915 1074,605.4181,257.07938,25.378235,59.52249,0.02540653 1074,440.14944,185.28491,27.121033,57.569138,0.016087988 1074,121.91434,201.58138,35.652374,73.25734,0.013409113 1074,470.5294,252.61383,29.164429,69.30533,0.0055651665 1074,598.2971,285.7425,26.985107,65.365845,0.0048561147 1074,12.071667,212.30634,22.381504,49.24118,0.0029965416 1074,430.97675,149.61406,32.039246,70.5406,0.0025144669 1074,614.2239,61.223766,24.92279,103.689316,0.0019285268 1074,508.96637,276.3928,29.002441,74.904755,0.0018142047 1074,553.4195,261.63925,22.241638,50.417206,0.00075047935 1074,26.836407,213.53181,21.756302,45.159378,0.0006240086 1074,2.9992595,177.58589,35.073742,172.68752,0.00035162328 1074,556.8002,160.25102,26.326355,69.63226,0.00034059832 1074,623.008,265.62625,16.138672,49.098816,0.0003050459 1074,548.3216,194.0893,36.485107,86.13336,0.00015302212 1074,2.3190472,205.58182,18.891039,74.45935,0.00013531282 1074,599.3952,44.65633,39.751465,250.20796,6.3734755e-05 1074,609.101,438.9327,30.045654,67.24579,5.6435227e-05 1074,585.0057,387.58472,54.14099,111.9657,1.6245946e-05 1074,1.0470117,317.51962,18.141485,136.02997,1.0420832e-05 1074,608.1925,0.0,30.954163,71.07967,9.899798e-06 1074,1.1716293,392.0108,29.346891,105.17041,1.984546e-06 1074,3.589751,337.32535,56.000156,146.46121,1.4209068e-06 1074,1.2677963,57.59654,19.705578,162.30605,5.416369e-07 1074,2.680145,35.048386,60.057987,209.5449,1.920188e-07 1074,1.4202621,10.699962,38.06586,83.7159,5.814147e-09 1074,351.063,3.0459995,48.2959,65.651,2.809167e-10 1075,590.8394,198.2787,26.269897,49.111557,37.290714 1075,554.9168,198.8336,29.638062,48.761826,6.1984634 1075,489.6582,216.52147,22.251343,65.54619,0.71831304 1075,466.16153,207.64482,36.047607,94.337326,0.22133833 1075,498.59152,209.39899,33.50595,80.792816,0.10054243 1075,599.5668,199.60747,38.262695,71.096664,0.08444476 1075,623.34674,203.12546,15.799927,53.392426,0.011256261 1075,605.6197,53.481167,33.52124,109.80618,0.0051765284 1075,587.7701,150.27945,48.289,199.613,0.0019291484 1075,600.4003,52.271374,22.893372,45.898556,0.0008477332 1075,480.92554,191.67662,72.5437,149.3412,0.0006912834 1075,326.6153,219.17088,21.801392,48.1252,0.00028833756 1075,42.606777,214.42757,28.536854,48.772324,0.0001624574 1075,615.75024,119.29146,23.396423,94.51419,0.00014430811 1075,611.1047,256.00244,28.041992,145.38196,7.983034e-05 1075,1.1622827,199.63103,18.389551,70.43239,7.951077e-05 1075,604.63916,349.94638,34.507507,146.00104,6.813973e-05 1075,615.28754,9.098854,23.85913,94.13628,2.0049089e-05 1075,2.0928793,207.08522,32.17993,167.56541,1.7518143e-05 1075,4.200225,241.62016,56.91182,233.0764,1.4722788e-05 1075,1.491276,77.84021,18.991539,141.74193,1.2588433e-05 1075,583.86816,0.0,55.278503,234.29646,1.2397251e-05 1075,1.321482,443.7553,21.933636,56.974182,7.5631115e-06 1075,0.8933716,343.16562,19.457403,135.22818,7.247256e-06 1075,523.47705,212.10973,78.874084,209.74538,4.285389e-06 1075,3.4854884,397.96872,56.100204,96.73068,1.935323e-06 1075,3.6689992,43.277763,57.822456,245.70474,2.2089218e-07 1075,0.9439372,12.795642,13.227099,87.87021,6.344124e-08 1075,110.698425,6.7778583,40.461044,57.6302,1.1697236e-08 1075,449.0735,9.095143,42.185394,48.475613,5.9201652e-09 1075,135.91705,9.104745,40.850555,52.594234,3.7195285e-09 1075,404.6525,1.1327246,63.881927,53.642803,5.7457933e-10 1075,359.30652,4.262837,45.858368,54.458996,2.9668663e-11 1076,382.3744,210.84052,27.68985,65.99332,98.25325 1076,461.18658,221.05066,23.767792,54.017426,0.700297 1076,613.93256,193.39201,23.339111,72.38057,0.3963881 1076,571.7775,203.32875,57.70996,187.45747,0.05490073 1076,368.987,210.26831,22.603241,54.683533,0.05120746 1076,421.22964,174.21387,36.958282,78.72496,0.04868493 1076,602.5892,193.4271,21.625427,60.718536,0.048424587 1076,526.5103,193.45361,37.010315,87.63788,0.037669137 1076,592.43066,163.92923,45.605408,132.71945,0.010342964 1076,543.3628,226.08527,36.31024,75.52652,0.0022481207 1076,499.38116,150.6065,77.30914,157.97034,0.00043157325 1076,465.39047,254.91727,17.956268,45.42679,0.00028358263 1076,616.5359,268.55856,22.610779,95.87659,0.0002403378 1076,612.217,322.8861,26.929688,144.32303,0.00015631545 1076,590.1223,6.039388,46.3833,52.499886,0.0001095146 1076,1.6478915,153.25829,18.550419,124.62706,9.153762e-05 1076,608.5915,438.1037,30.555176,67.993195,7.142256e-05 1076,367.33572,170.12349,68.83209,157.08257,5.674295e-05 1076,615.83887,17.37862,23.3078,87.6295,5.546117e-05 1076,4.78535,9.048402,58.278816,85.98141,2.3551256e-05 1076,3.7451074,210.54355,57.803295,230.95538,1.6507007e-05 1076,583.4261,11.112331,55.624023,219.59908,1.0274703e-05 1076,0.73326254,238.47743,19.824354,138.09056,7.977077e-06 1076,0.9540202,312.71307,19.060516,138.13037,7.852836e-06 1076,2.0581787,419.73898,33.350906,76.22769,2.2411548e-06 1076,2.0451775,52.561234,33.50516,206.11952,2.0239656e-06 1076,1.5585881,9.727461,17.702375,78.492294,1.6384947e-06 1076,6.11528,360.81912,78.44937,121.73392,1.6266217e-06 1076,558.9356,7.4393945,44.935852,53.51875,4.327557e-07 1076,532.81476,9.537448,42.47699,53.57808,4.023392e-07 1076,494.10043,17.039772,112.32028,114.85247,9.5047135e-08 1076,505.89825,9.076869,45.66925,49.60841,3.1715462e-08 1077,412.58865,214.41716,35.168762,90.69908,99.977646 1077,503.52237,212.63564,21.414764,46.382614,62.605804 1077,464.11557,220.87263,39.667725,104.413864,2.6117666 1077,400.3423,216.46649,25.09256,70.535095,0.2991489 1077,542.69794,217.49957,22.903564,49.22705,0.1171645 1077,487.90903,204.81172,33.918854,97.04195,0.078511626 1077,603.6554,203.5742,27.053894,57.137283,0.0112523325 1077,621.7044,222.53183,17.44226,66.18103,0.008760987 1077,388.88303,223.05428,21.025726,55.596786,0.0038205343 1077,545.5379,224.99089,37.24286,86.60106,0.0019878906 1077,608.87823,122.497986,30.268433,160.98315,0.001332569 1077,387.03436,176.33086,83.07648,171.24971,0.0007240372 1077,478.3318,169.85995,79.398926,164.41171,0.00044712384 1077,437.23407,209.1549,37.54074,91.53699,0.00035996447 1077,617.24194,98.821724,21.904724,76.131874,0.00028157255 1077,617.49457,268.11032,21.6521,90.46918,0.00019179708 1077,612.1212,371.03964,27.025452,129.88507,0.00016798034 1077,374.69388,211.5131,21.725983,54.994675,0.0001639089 1077,599.5039,197.93011,39.538208,179.47168,0.00013749534 1077,1.2636906,203.86777,19.257425,125.50198,3.6295758e-05 1077,4.367707,207.94992,56.232685,239.14993,3.3137163e-05 1077,610.8705,2.95528,28.276184,139.51764,2.5200728e-05 1077,1.5832756,112.85782,19.367233,133.38992,1.1219504e-05 1077,0.8078776,277.02783,20.87819,114.01105,1.0842029e-05 1077,6.9153028,359.17645,75.62239,123.81357,7.962029e-06 1077,1.060236,423.00003,16.03236,76.343414,7.6676915e-06 1077,1.9909863,303.896,32.581608,178.69876,5.1328047e-06 1077,54.25442,3.8506024,42.194683,59.443436,3.4509026e-06 1077,591.90643,4.9422364,43.635498,53.464314,2.9990083e-06 1077,76.2769,8.591097,42.205833,57.504684,2.474136e-06 1077,3.3781154,426.2657,53.041157,68.57391,1.6267519e-06 1077,3.4918947,33.56256,58.82627,198.9738,6.1872925e-07 1077,1.7453483,12.800472,39.243904,84.16821,4.0399945e-07 1077,102.22317,12.274961,40.12594,50.539246,1.04543275e-07 1077,566.8873,7.5982294,42.079712,53.79162,5.946216e-09 1077,484.99533,6.6363916,42.591278,55.49173,4.5293236e-09 1077,305.92148,0.43284017,42.305176,49.513012,2.0942229e-11 1077,175.40556,0.8895085,42.42827,57.349712,7.501242e-12 1078,493.02365,220.54414,57.944916,146.70125,99.96159 1078,564.77826,214.67319,25.882446,53.406433,84.11165 1078,523.9563,211.43161,23.205566,50.93753,72.26571 1078,600.52246,282.5691,36.113464,94.575806,0.9061924 1078,575.4318,209.67581,31.666443,73.23468,0.4639057 1078,502.0896,219.79271,31.864502,74.670425,0.039377652 1078,439.76303,242.25703,25.212341,62.060715,0.022419395 1078,441.5726,195.03673,24.898346,52.750153,0.010777852 1078,403.08014,183.62993,30.879822,87.48241,0.009242104 1078,509.40173,117.81222,23.554993,54.025566,0.008616047 1078,526.88696,206.38348,38.707214,109.86151,0.0069913752 1078,567.71265,207.39604,69.34894,209.43282,0.0054134843 1078,477.4336,164.72722,142.4278,213.30644,0.004458335 1078,614.22,108.87645,24.926697,103.85155,0.0023799536 1078,611.7294,166.20894,27.417297,158.5937,0.00035662306 1078,1.2203035,203.0379,19.323193,140.35071,8.936073e-05 1078,610.73676,366.0708,28.409912,137.94894,7.8924895e-05 1078,587.05634,49.728336,51.641296,271.03006,7.729421e-05 1078,4.25626,237.55371,57.796658,233.74744,5.798916e-05 1078,615.7737,30.139395,23.372986,90.94131,2.9099345e-05 1078,1.1349715,393.0617,17.154799,103.02731,8.740042e-06 1078,62.020504,5.413734,45.47392,64.14081,8.319344e-06 1078,0.7468799,278.08167,20.047813,148.24539,7.900881e-06 1078,3.7447314,395.28616,56.121506,91.8277,5.10643e-06 1078,1.4344157,96.75535,19.15272,144.87177,4.066203e-06 1078,86.30592,8.785782,43.023636,56.872528,2.8307664e-07 1078,1.4980356,10.63907,37.90369,84.0153,7.914388e-08 1078,319.29205,1.8612728,43.02411,55.678314,1.9896331e-09 1079,546.96313,92.72578,31.962097,77.14744,0.49430043 1079,538.0905,265.63312,27.83368,53.867126,0.100219585 1079,497.88693,209.20816,21.887115,47.432953,0.08826967 1079,482.86282,210.13544,26.281036,60.43213,0.014847856 1079,604.40436,208.538,32.221436,58.670776,0.014319499 1079,509.45737,206.97011,23.56839,52.69313,0.013796737 1079,464.38428,244.60992,32.49463,87.621216,0.0023363763 1079,588.7487,212.68158,22.74823,49.83139,0.0011978719 1079,551.29346,115.41166,45.209473,128.12457,0.001014248 1079,586.9367,201.88991,39.825623,99.17525,0.00077186886 1079,616.66364,244.94907,22.483032,89.69058,0.00037039278 1079,603.9553,89.70529,34.890625,194.49152,0.00023153258 1079,600.4715,227.74602,38.67517,204.84593,0.000108014225 1079,490.21356,141.94034,24.419983,49.49115,9.2209564e-05 1079,1.2975578,125.96555,21.733452,118.0324,8.006647e-05 1079,617.5702,82.542,21.576477,74.08016,7.465095e-05 1079,608.98804,439.2429,30.15863,67.15555,6.1508894e-05 1079,4.539546,396.12427,54.274307,98.4581,2.4087236e-05 1079,584.82983,387.2276,54.316833,108.74423,1.993306e-05 1079,0.752959,268.1139,18.78173,78.51895,1.5320318e-05 1079,4.0651903,200.17424,57.410107,250.03764,1.144487e-05 1079,1.3918352,375.47095,18.977314,121.3963,9.086316e-06 1079,608.45074,6.5285354,30.695923,132.12616,5.9088925e-06 1079,47.399166,0.6648926,48.545483,70.24241,5.6209424e-06 1079,2.3469532,36.836994,57.66032,244.52821,9.541847e-07 1079,1.3810612,5.8891377,37.28968,53.178715,6.0710687e-07 1079,0.7556641,10.251566,12.004549,84.74941,2.3988278e-07 1079,88.42548,6.8728614,41.076546,59.895565,1.3494236e-08 1079,115.68311,5.2226434,42.514717,61.433323,2.9999017e-09 1079,143.33466,4.581992,42.289185,56.76675,2.5180827e-10 1079,344.96387,4.7493896,44.21472,53.769855,5.694882e-11 1080,616.92633,316.53204,22.033447,79.16135,5.808583 1080,541.8694,209.03192,27.66394,58.48593,0.14583367 1080,475.18173,227.90677,30.18692,76.17828,0.14162186 1080,493.3295,210.96013,32.650116,86.88783,0.011098243 1080,610.0528,239.35103,28.882263,55.639694,0.010253091 1080,425.74194,175.92938,28.934845,66.5943,0.0075164074 1080,604.2848,242.31485,34.30768,194.93921,0.0060317963 1080,614.949,49.142273,24.197693,89.7563,0.0011423575 1080,73.685135,217.70491,22.373985,47.92427,0.0010464753 1080,604.6563,111.395004,34.46753,89.52815,0.0009537448 1080,590.14954,111.955734,47.174255,241.7415,0.0007655308 1080,620.8416,394.87265,18.305054,59.597473,0.0005444645 1080,476.9573,202.67456,79.80905,165.07037,0.00049129647 1080,478.95126,115.192894,42.355377,166.69116,0.00044257523 1080,399.29553,219.95227,28.17575,59.979156,0.00024489156 1080,573.2602,350.91907,65.52423,137.49533,9.3299954e-05 1080,609.0045,435.71176,30.14215,70.91107,7.952388e-05 1080,1.2105001,224.89719,16.123884,124.93625,3.603893e-05 1080,457.15646,100.78844,35.700623,103.5181,3.3413693e-05 1080,613.8189,0.0,25.327759,46.469257,2.2849443e-05 1080,1.7587826,153.56183,18.768063,132.10266,1.6905069e-05 1080,4.2600293,214.79118,55.86505,232.41725,1.4437334e-05 1080,0.8927792,287.798,19.723145,141.94101,8.353848e-06 1080,1.1041366,387.1148,18.950619,111.81369,6.1291294e-06 1080,1.6682903,93.66634,18.313618,78.35229,5.0854355e-06 1080,6.039219,360.36493,76.77283,127.72284,2.2589222e-06 1080,1.8315423,48.653576,30.163174,188.75539,1.3673824e-06 1080,3.3352978,430.13248,52.342556,67.486176,1.0569921e-06 1080,41.25436,3.2431397,43.497143,50.424816,5.6135997e-07 1080,0.80304855,9.790723,12.465972,87.767845,1.8811419e-07 1080,15.987044,3.2679265,44.22474,47.900578,1.7930752e-07 1080,3.9685092,13.571667,81.15698,168.49208,1.0285399e-07 1080,63.001213,8.071372,41.663475,55.44036,4.6082224e-08 1080,89.07893,7.414232,43.16844,56.70275,1.6881973e-08 1080,115.876045,3.7086296,41.596672,59.964092,1.4797857e-09 1080,148.82196,3.661976,43.201096,57.83311,1.8139067e-11 1081,582.497,211.28746,25.73944,78.251205,94.60229 1081,532.7539,197.62747,36.305847,85.95877,0.06844381 1081,437.13574,203.76013,25.303894,48.269897,0.02197253 1081,561.5996,163.27748,44.326843,139.64082,0.01640559 1081,2.6299968,148.13855,37.79156,111.64398,0.0026283143 1081,470.29065,166.93668,35.36133,96.070984,0.0017022375 1081,623.0535,142.26834,16.09314,51.23932,0.001540371 1081,584.1072,147.3126,51.319214,195.20198,0.0011792536 1081,612.794,153.86884,26.352661,124.980255,0.0010536353 1081,368.22482,210.92932,20.195587,46.156982,0.00035147244 1081,602.4031,139.78545,31.917053,64.66237,0.00031544518 1081,611.00586,352.98032,28.140808,144.19382,0.0002890672 1081,1.2150553,211.00186,13.805518,55.650482,0.00023475246 1081,618.2936,92.106834,20.853088,75.31892,0.0001866698 1081,617.19763,269.46555,21.949036,82.5686,0.00015398009 1081,525.50616,167.02455,21.833008,47.57292,0.00014740562 1081,0.9784855,236.39357,17.75966,73.46547,0.00011343004 1081,1.6116846,187.3482,27.290695,157.94788,8.148447e-05 1081,3.177124,188.33424,55.901627,248.0807,4.6116475e-05 1081,0.9139787,268.6176,19.407793,143.63916,2.3967075e-05 1081,1.0080681,361.0636,19.069675,131.35168,9.464164e-06 1081,600.7947,40.099342,37.849792,200.95844,8.063999e-06 1081,616.12665,30.872149,23.02002,94.371765,3.0360557e-06 1081,6.0051403,357.50146,78.74587,127.35489,2.6380474e-06 1081,2.8997169,427.35965,53.648643,70.865875,5.595214e-07 1081,1.2734717,9.517644,15.378691,101.34173,2.898167e-07 1081,591.4991,1.246276,43.22882,60.55426,2.859686e-07 1081,6.8589244,6.026945,60.109108,47.00377,2.1033783e-07 1081,4.400537,18.786797,82.28068,171.33557,1.1967921e-07 1081,574.4593,10.452539,44.138794,178.69048,4.1093227e-08 1081,564.5738,3.6010742,44.424866,56.697327,3.229797e-08 1081,80.71562,7.346719,43.513794,57.270683,9.1561185e-09 1082,555.00494,213.21118,29.405212,61.08429,4.0048075 1082,546.71906,170.8075,57.66382,139.66235,0.005211532 1082,584.58264,136.32553,51.207397,249.18796,0.0011793458 1082,577.8653,196.9193,40.42224,100.09233,0.0009252718 1082,618.1718,175.85391,20.974854,73.36224,0.00040229288 1082,598.94135,222.89017,23.903625,49.19394,0.00035317388 1082,617.42926,229.16733,21.717407,81.50424,0.00025521414 1082,616.88574,85.4515,22.260925,76.3713,0.00024421103 1082,509.06357,215.34544,55.263092,157.82927,0.00022610225 1082,610.80273,342.68515,28.343933,163.6081,0.00020586145 1082,1.6920638,145.92076,20.67304,114.16618,0.00017282604 1082,517.60657,270.33282,28.252258,68.38388,0.00017122275 1082,393.1983,214.393,22.705383,49.126648,9.242102e-05 1082,599.29877,47.580547,39.341248,193.18828,5.8929883e-05 1082,4.3658023,122.20378,58.168953,210.93019,4.7233694e-05 1082,1.2745277,197.94566,17.10998,129.65346,4.126741e-05 1082,620.0859,339.17154,19.060791,68.662964,3.3027565e-05 1082,2.1152506,220.09454,32.575226,186.65442,1.2587616e-05 1082,0.9871916,332.68918,19.799404,136.44699,5.0514645e-06 1082,594.2138,2.161032,44.93286,108.08823,4.259264e-06 1082,6.60349,360.31735,76.808556,128.51892,3.827692e-06 1082,2.8148682,17.297588,40.00252,75.632126,1.7598678e-06 1082,2.1655567,418.8112,35.45652,78.34012,1.6212662e-06 1082,6.113213,27.631237,78.004875,147.66869,1.4031718e-06 1082,2.0841699,46.17194,20.922201,113.25838,6.150582e-07 1082,563.7041,3.7885222,63.871155,58.468716,2.1239306e-07 1082,541.47363,4.674238,44.208252,45.769806,6.555054e-08 1082,20.031002,8.881286,43.47934,57.581062,5.9130805e-08 1082,503.62314,3.4726954,44.76248,56.82098,4.7062333e-08 1082,398.3784,4.269839,66.982666,54.61567,1.9636918e-08 1082,441.5548,4.757969,43.253174,48.616207,7.774671e-09 1082,80.43457,4.2984667,42.92167,63.189114,7.4382935e-09 1082,46.083866,4.4718685,44.969273,65.22326,5.2396762e-09 1082,375.4588,4.200892,44.44281,55.987534,3.8040884e-10 1082,348.09302,3.9567091,43.77289,56.02954,3.3349743e-11 1083,600.9717,206.61514,28.2323,60.367676,2.7636116 1083,483.23703,210.37227,22.609558,51.165237,2.1775713 1083,407.12402,213.24066,22.537079,49.751923,0.15311505 1083,618.4838,210.09193,20.662842,63.16707,0.02764825 1083,463.02917,204.64478,35.591248,69.695404,0.018785259 1083,608.40204,193.70648,30.524048,157.15277,0.012053396 1083,416.00687,214.40816,32.68866,77.385574,0.010177541 1083,515.2886,215.6696,33.607178,65.70729,0.007071375 1083,494.5431,217.12259,24.608276,53.043915,0.0022027264 1083,620.5752,287.8965,18.571472,60.96283,0.0014737266 1083,392.07242,214.62312,23.465057,50.176987,0.0008580171 1083,621.13806,327.04764,18.008606,56.994995,0.0008484044 1083,533.46136,217.6242,35.91992,69.30823,0.0005112124 1083,551.3973,200.55116,39.242126,98.97102,0.00017670442 1083,610.3679,289.32623,28.778748,146.6821,0.0001507532 1083,612.72266,125.446724,26.424011,116.669945,0.00011588047 1083,608.45447,1.9987599,30.6922,60.470654,7.8613e-05 1083,1.392085,219.45818,17.697578,66.01076,7.4826006e-05 1083,1.1209091,263.56897,18.836374,130.76385,4.1187515e-05 1083,572.07947,356.12155,67.0672,138.88153,2.9784698e-05 1083,2.3552377,53.356,29.436735,162.49147,2.2199556e-05 1083,1.4341146,119.83146,18.931896,151.57498,1.107556e-05 1083,586.14185,12.952715,50.939392,116.281494,8.509746e-06 1083,2.886071,26.145723,51.756836,105.91284,7.3129763e-06 1083,3.831893,90.04715,57.115906,233.06586,6.994094e-06 1083,4.1458645,266.5633,56.509598,202.73062,4.7021467e-06 1083,1.0044075,422.94742,17.20775,79.43036,3.835519e-06 1083,1.4844328,358.51917,32.23791,134.49731,1.5577891e-06 1083,3.844681,428.68002,59.830986,69.63519,6.08476e-07 1083,1.4947599,17.193285,17.800621,70.513504,1.9099713e-07 1083,542.2151,0.0,46.61615,48.300346,7.83592e-08 1083,57.543545,3.1342075,45.40105,48.78606,5.121231e-08 1083,577.2976,2.2684278,45.510742,60.61933,4.5337334e-08 1083,11.937839,11.808778,44.19888,52.70311,4.2062272e-08 1083,518.5723,4.8633075,44.99597,58.335705,2.2517273e-08 1083,492.47922,8.805261,42.122406,55.991432,9.932448e-09 1083,406.80927,6.8790364,46.342896,56.200443,5.8725034e-09 1084,466.7259,220.42534,26.279541,52.55876,16.168781 1084,557.7151,212.76036,26.837158,49.25264,0.11522791 1084,531.3933,114.65337,33.13562,79.473595,0.02022457 1084,619.80133,252.48003,19.231628,62.497482,0.018767996 1084,587.76935,85.138885,48.63208,236.41977,0.006406691 1084,596.19977,248.65376,31.819214,71.15108,0.0038208917 1084,604.1519,123.21731,34.63202,101.03898,0.0017628595 1084,551.1914,129.18082,26.359863,56.46147,0.0010110706 1084,616.0253,66.75551,23.121338,96.368256,0.0002928796 1084,523.4507,91.56576,74.12067,193.62982,0.0002444454 1084,2.1897755,166.83243,28.034756,135.00284,0.00019449278 1084,3.8184147,196.62602,57.209984,197.51619,0.00010055062 1084,447.48798,170.2223,74.87665,166.99498,9.689742e-05 1084,613.01605,269.7002,26.130615,134.33719,7.3056355e-05 1084,585.2106,18.564272,53.30072,140.33328,5.784737e-05 1084,1.1041032,244.21443,18.825966,86.514175,4.7879796e-05 1084,609.37115,441.46402,29.775513,64.03064,4.3023505e-05 1084,585.1986,387.948,53.808777,108.71326,2.0135314e-05 1084,1.5120386,85.84831,17.477255,145.48529,1.9164318e-05 1084,0.82533854,276.70468,19.874388,149.57327,1.1468339e-05 1084,1.0424747,375.20596,19.306204,122.666534,5.3980343e-06 1084,3.3123293,37.119583,59.186295,243.71803,1.8061263e-06 1084,5.7519665,358.02536,78.71238,129.58789,1.5736406e-06 1084,593.21655,6.1399283,42.635864,49.649002,1.1391986e-06 1084,1.68875,5.455692,30.550005,47.032185,1.855439e-07 1084,2.2982895,18.259996,28.899172,102.970505,1.3588075e-07 1084,49.237118,6.589064,57.801304,52.521423,3.5476706e-08 1084,88.80972,6.5705957,39.326645,54.7645,1.0310058e-09 1084,347.01004,6.7864733,41.56958,49.409473,5.6715355e-10 1085,541.4296,214.91034,22.75177,50.36078,99.929405 1085,557.1233,211.45477,23.27649,51.617188,99.82102 1085,370.62982,215.62233,27.613739,64.71309,78.89264 1085,503.9304,214.24704,26.565704,56.56613,15.562388 1085,468.63882,213.44229,20.285095,45.068176,2.5515525 1085,582.4284,210.94397,24.848877,46.739136,0.08680521 1085,596.3235,147.74571,40.513794,179.33931,0.022040328 1085,608.6435,190.09634,29.553833,75.97455,0.007365628 1085,1.7530388,209.51086,26.23329,52.84674,0.0052814456 1085,526.74286,169.048,74.39801,171.30939,0.0023170589 1085,617.9261,96.14165,21.220581,82.87688,0.00081293756 1085,620.2402,60.81283,18.906494,70.25444,0.0006073149 1085,532.1702,272.03122,40.63678,117.16974,0.00055344694 1085,2.088859,132.02379,34.41525,167.12547,0.00020688726 1085,583.7578,32.66805,53.247498,219.48521,0.0001597607 1085,608.5359,441.86917,30.610779,63.388184,3.9522864e-05 1085,1.1349568,217.20853,29.049387,168.95718,2.1044392e-05 1085,584.91077,393.84625,54.03412,102.67807,1.922315e-05 1085,597.3671,13.04851,41.77954,95.26395,1.804264e-05 1085,613.0621,324.40866,26.084595,147.21301,1.5886477e-05 1085,1.7376302,68.415016,18.28323,73.53179,1.3239249e-05 1085,1.3000854,128.44444,19.556263,90.67561,5.644115e-06 1085,1.1066024,342.8198,19.538128,134.13882,4.3709283e-06 1085,3.7809474,330.36893,57.456116,153.39395,1.3297133e-06 1085,1.4331771,3.1677573,44.697105,62.07069,1.1865826e-06 1085,1.968895,419.5551,34.46583,78.91345,9.86417e-07 1085,2.5102718,22.805397,61.244545,209.0983,8.036357e-07 1085,579.2327,7.3223505,42.85974,62.04741,7.4805826e-08 1085,414.13803,5.852614,45.34912,55.55609,6.2583844e-08 1085,320.42657,5.3400636,59.56198,45.52006,5.192511e-08 1085,440.67453,6.1587796,43.96518,52.656456,1.9648683e-08 1085,300.69287,2.8715918,41.921875,48.344383,1.0352149e-09 1086,600.3874,222.4074,27.687073,54.853195,98.21468 1086,45.826866,206.57776,28.605858,47.459595,96.646545 1086,561.95337,211.57628,29.432922,80.61479,81.04885 1086,549.92975,210.08687,25.17517,63.739944,22.840008 1086,617.25134,213.09738,21.895325,61.509216,13.469347 1086,33.854374,206.06302,22.459286,49.511826,0.12368937 1086,385.6601,220.82066,32.49536,74.95674,0.10148459 1086,586.16614,190.74553,50.217957,109.90968,0.04694963 1086,489.29886,212.7748,24.507355,51.11003,0.041825406 1086,470.4787,212.1757,25.745209,51.621506,0.035143226 1086,601.3946,214.52014,37.118713,214.77444,0.0011881874 1086,617.1623,82.6847,21.984375,77.78954,0.000815024 1086,518.2506,140.71265,113.44806,233.15054,0.00026100583 1086,2.8118327,162.2381,35.015976,175.41315,0.00025937334 1086,609.0003,436.9164,30.146362,70.48923,7.454658e-05 1086,1.615564,99.91407,20.48209,150.12823,4.2554802e-05 1086,1.3167375,361.54718,18.709219,133.33774,3.517845e-05 1086,1.0557194,246.40178,18.204903,147.35942,1.4502552e-05 1086,25.444935,145.14656,91.4214,219.9022,1.3079304e-05 1086,2.858978,385.539,54.866856,105.31824,8.536879e-06 1086,599.69714,7.6186914,39.449524,181.58556,5.744556e-06 1086,1.0517505,1.3934766,17.38632,94.40962,3.354632e-06 1086,452.04208,292.42215,19.577942,51.168365,1.64064e-06 1086,585.7142,1.3352946,43.345947,54.74986,2.620554e-07 1086,1.3825911,0.0,34.78544,186.90027,1.7416744e-07 1086,551.10297,6.779126,44.1391,51.13314,5.2624007e-09 1086,346.8271,5.3259993,43.71585,57.64214,2.9095612e-10 1087,22.168695,204.10878,21.039183,53.052383,97.01652 1087,32.475277,205.89061,28.13638,49.543793,96.73136 1087,558.27856,217.93912,27.902588,60.775787,89.25095 1087,520.3621,210.4071,25.129517,53.472687,68.900826 1087,4.011111,208.33803,21.295792,57.066666,9.027013 1087,506.24622,211.87292,28.053223,68.80011,5.2874036 1087,520.6403,234.19725,29.682861,74.42824,2.5212219 1087,4.33826,179.38683,47.030457,99.82774,0.14769419 1087,523.16187,206.0828,67.32922,121.79819,0.040399075 1087,567.199,210.4917,39.996765,92.52246,0.0136917615 1087,393.82697,208.94229,20.628754,45.558853,0.0042008976 1087,606.2159,433.59674,32.930786,70.14749,0.0009479784 1087,553.56104,341.0748,80.49927,156.97449,0.000636849 1087,617.9928,90.93013,21.15387,67.70444,0.00041737393 1087,6.0619564,145.57599,76.39345,206.6937,0.00032871592 1087,469.10324,230.34766,73.006134,186.5588,0.00030533434 1087,612.5642,186.68845,26.582458,119.63217,0.00027420977 1087,478.44867,139.95932,130.01184,248.08328,0.00026142458 1087,611.81714,105.43461,27.329529,134.91614,0.00010924974 1087,0.9647778,223.27386,20.052578,167.29343,7.6082666e-05 1087,417.81274,163.11957,20.131744,46.676834,3.1200936e-05 1087,1.5238518,98.36304,21.120201,167.31357,1.8819223e-05 1087,611.40796,264.77267,27.738708,148.59888,1.6373207e-05 1087,585.7751,16.378105,52.641235,125.44074,1.0552159e-05 1087,1.1497558,385.03012,19.10057,113.88431,7.9248475e-06 1087,591.85376,9.37091,43.96747,48.37017,4.2912948e-06 1087,1.5609432,299.7993,33.65251,180.12344,3.7709951e-06 1087,6.074102,359.88,77.04026,127.97632,1.7125682e-06 1087,360.5707,2.0484245,46.082703,62.765823,1.7213168e-08 1087,1.1315267,4.511273,21.371622,66.7115,8.63272e-09 1087,397.31564,0.40097982,82.385925,83.83242,5.080115e-09 1087,456.29135,3.9788706,46.548035,63.666233,3.7683865e-09 1088,11.903859,204.30635,34.598904,58.420242,99.835434 1088,571.5211,209.42245,23.154297,46.8808,99.16305 1088,510.65283,209.45639,22.328613,45.091217,0.3584428 1088,3.503135,197.54567,18.998964,67.6266,0.26269972 1088,488.13846,248.31268,35.308136,87.567444,0.09903611 1088,430.27838,204.43184,22.911957,50.788452,0.09550961 1088,454.50558,212.48203,24.387451,45.65155,0.017417807 1088,610.6544,235.73956,28.450134,128.86365,0.008021701 1088,2.3581185,158.12573,40.19502,150.49222,0.006029886 1088,580.5762,200.09486,54.18811,139.93147,0.0058881184 1088,81.01706,202.04707,20.220886,48.322174,0.002439716 1088,610.9311,99.59274,28.215576,144.92119,0.0005807932 1088,615.91113,192.87166,23.235535,95.91814,0.0003146796 1088,602.52924,328.2423,36.61743,166.70459,0.00025751104 1088,607.7267,440.4046,31.419983,67.019165,0.00014240996 1088,525.1824,170.4929,64.28058,127.54268,0.00013883722 1088,108.415054,191.97241,23.70874,49.91577,4.056482e-05 1088,6.741605,117.86297,101.56557,257.34387,2.0303538e-05 1088,612.4275,0.0,26.719177,47.578056,1.4985062e-05 1088,1.0283943,234.02896,29.25311,168.54968,1.0659046e-05 1088,0.99997807,330.0098,19.334373,133.32767,4.942869e-06 1088,609.36536,0.0,29.781311,146.75479,3.7040222e-06 1088,1.6398283,401.21365,26.982319,97.16489,2.3679893e-06 1088,3.9210532,342.61932,57.548958,143.7221,1.6571732e-06 1088,1.3129834,60.04021,20.32948,157.45644,1.0321013e-06 1088,578.0426,4.6138935,46.338196,61.51931,3.2383235e-07 1088,544.5038,3.6156056,44.284485,59.684006,1.9640301e-07 1088,512.03357,6.853506,43.77417,54.05845,1.3264417e-08 1088,377.92902,1.7145118,43.460693,48.46446,1.2650527e-08 1088,2.4436378,12.698919,56.642757,132.16393,6.648531e-09 1088,483.66635,7.8819633,43.41983,56.382275,5.00063e-09 1088,1.4617456,6.3650947,19.456009,65.61271,2.6025346e-09 1088,455.4748,4.7268295,44.881897,65.09359,1.0585763e-09 1088,401.44995,0.0,46.24536,58.65717,9.395829e-11 1088,429.8914,0.5114388,44.07425,63.290802,5.8315776e-11 1089,606.4025,209.71173,26.286621,61.252167,99.4937 1089,1.4082869,201.87158,26.097166,52.98152,8.250177 1089,574.6925,214.15344,23.981628,46.760284,7.6936245 1089,482.81064,216.61984,26.180206,46.114807,7.3623476 1089,624.43896,206.66193,14.707703,51.219055,2.8310347 1089,589.5993,212.34605,28.371765,55.126785,1.2055779 1089,590.3855,183.88116,47.343628,235.7655,0.11715736 1089,510.82745,207.96277,23.92456,45.06685,0.008386901 1089,606.0724,354.02216,33.07428,95.93591,0.0026396029 1089,2.331665,120.21888,28.418674,158.23813,0.0010828594 1089,619.30164,320.7553,19.845032,73.25882,0.00077778334 1089,615.5508,230.86235,23.595886,117.24324,0.00060960464 1089,466.9036,145.75932,25.878448,54.9494,0.00018108904 1089,607.6748,436.81384,31.471863,69.911896,0.00013934379 1089,608.47986,81.53023,30.66681,194.16762,9.210251e-05 1089,109.694595,203.88719,22.274185,47.97151,5.7305642e-05 1089,616.3476,51.43512,22.799072,91.13313,4.9228758e-05 1089,455.76297,165.83127,92.11728,199.87427,4.2366508e-05 1089,3.777619,161.7068,56.98198,250.49992,3.7446694e-05 1089,1.0455599,230.03899,28.574184,166.08641,1.3658725e-05 1089,0.9642587,327.85364,19.513561,130.91388,1.0000611e-05 1089,1.0470183,422.1042,16.764708,79.767395,3.252277e-06 1089,608.62744,0.0,30.519226,66.50857,3.080169e-06 1089,3.5746517,324.89096,57.7604,158.15286,2.3755078e-06 1089,1.654165,52.873642,19.8807,152.5372,6.819848e-07 1089,586.47577,0.0,52.6709,143.72441,3.191537e-07 1089,2.929624,21.60918,56.15625,122.60077,1.3464567e-08 1089,1.622745,10.997388,19.677942,58.828625,3.8071386e-09 1089,509.64932,5.734072,45.743744,62.445652,1.7339297e-09 1089,483.0011,5.9129167,45.651978,61.530167,1.542336e-09 1089,545.6048,3.4246745,41.174744,57.0353,2.4889885e-10 1089,456.54657,3.861719,44.785522,58.10315,1.2275574e-10 1090,537.0323,95.152374,21.52948,46.288986,1.6503494 1090,422.19382,202.38176,22.608887,50.67354,0.75069064 1090,585.7662,215.6903,26.561218,51.829895,0.067347966 1090,500.51636,87.06735,21.770447,51.32106,0.050898083 1090,467.51523,210.17975,40.944305,87.730865,0.009642893 1090,443.32916,218.34525,19.64209,49.346466,0.008936458 1090,454.54208,212.43326,33.21997,60.740143,0.00394471 1090,45.59332,187.79454,24.68668,49.17299,0.002679418 1090,535.72485,210.40498,31.73175,59.304,0.0009804143 1090,611.0208,117.36234,28.125854,152.55261,0.00024041574 1090,484.58112,89.063614,23.866333,55.227066,0.00022866802 1090,601.6473,198.35448,36.66986,163.5551,0.0001885148 1090,610.62616,353.87262,28.520508,132.5698,0.00014674471 1090,465.7398,141.43752,19.448181,45.835083,0.00010451779 1090,2.5590503,173.24683,34.94112,167.89981,9.271597e-05 1090,437.13995,143.76828,126.38916,216.84897,2.8631322e-05 1090,0.9371965,259.98404,20.691177,109.47125,2.2520911e-05 1090,610.0398,5.402188,29.106873,150.14111,1.8251525e-05 1090,1.161342,339.41562,19.37038,133.16653,7.3771403e-06 1090,507.49313,43.64556,107.34842,252.54028,4.7945405e-06 1090,1.4616733,113.9292,19.505365,152.46243,3.898454e-06 1090,0.99168295,422.30887,16.163956,79.77594,3.3778297e-06 1090,3.6025066,302.61105,57.320747,175.78738,2.2824347e-06 1090,3.2148046,431.1477,52.349247,67.893555,4.815893e-07 1090,1.4978663,10.840876,18.000101,53.936188,4.5333707e-08 1090,3.0044858,19.81616,56.16677,126.4603,1.4576034e-08 1090,516.2234,4.3166733,46.376648,65.50157,5.212901e-09 1090,473.64664,5.6849756,43.25174,47.53403,4.0231654e-09 1090,450.2923,7.343721,42.859375,53.508755,1.9688213e-09 1090,544.4024,4.234938,41.32086,58.960884,1.4545171e-09 1090,49.451668,10.176283,39.06259,47.998604,2.9781164e-10 1091,412.04614,223.3291,33.14856,58.604523,73.62113 1091,429.21777,217.9977,30.94162,50.373795,4.5913105 1091,474.9338,72.57332,31.963959,63.41942,0.086234316 1091,472.35178,213.68408,33.049957,63.27469,0.047049038 1091,391.99353,213.01227,33.802826,69.0051,0.008845471 1091,361.44492,215.43398,21.666046,52.012375,0.008802616 1091,382.18707,223.88693,19.831879,52.94345,0.007027927 1091,216.77951,206.35243,20.180832,45.239273,0.0019372124 1091,624.4009,49.20925,14.745789,46.510582,0.0014349966 1091,616.3996,217.92833,22.695374,85.992935,0.0013126845 1091,502.38617,220.5229,25.090088,48.25627,0.0012555066 1091,585.4342,108.1522,52.018616,221.30005,0.0005085012 1091,526.507,210.24998,34.473633,63.660446,0.0004838397 1091,617.24255,174.47165,21.904114,80.40784,0.00014572818 1091,614.29895,7.3624516,24.847717,103.2549,0.00014123744 1091,615.8597,71.605576,23.286987,90.98578,0.00012594392 1091,2.7228825,88.34376,37.008057,188.36404,0.00011812893 1091,612.97095,420.8343,26.17572,85.046875,7.093186e-05 1091,611.81635,310.66635,27.330322,144.01013,6.407903e-05 1091,4.4361787,167.14525,55.49666,248.17555,5.309655e-05 1091,2.07858,200.16818,29.077072,142.05148,4.3307056e-05 1091,367.7758,146.22166,133.81256,223.68599,2.806271e-05 1091,571.1378,366.1328,68.00885,130.362,1.3691056e-05 1091,1.1386565,343.4863,19.126387,131.8533,7.644779e-06 1091,585.1425,4.191582,54.00415,196.2348,7.466777e-06 1091,451.83313,27.328321,111.204895,250.55824,5.9174527e-06 1091,0.96552736,423.2228,16.655998,76.90454,5.564056e-06 1091,1.7140764,47.104694,20.107883,160.95972,3.4651557e-06 1091,3.6218345,335.98676,57.665485,149.50122,2.0970901e-06 1091,405.16855,5.164113,43.32007,45.402912,5.3498745e-08 1091,455.40594,5.243591,64.381226,62.942673,3.2002276e-08 1091,547.07806,5.948203,41.781555,64.0933,2.3763844e-08 1091,579.92303,1.6602474,44.423035,69.23988,2.2787829e-08 1091,1.046779,1.8362696,18.527603,70.52557,1.4591583e-08 1091,431.51382,4.7715693,45.859375,49.110283,4.571338e-09 1091,183.93884,4.0862875,42.348175,51.76529,6.06282e-10 1092,543.0017,230.19487,39.17041,89.884964,99.96688 1092,583.61536,228.57352,28.559265,74.73187,99.8448 1092,602.98004,220.13943,34.723694,84.57208,98.75451 1092,434.29636,217.596,26.459442,58.570724,2.3265338 1092,300.52045,231.51102,34.635376,53.40918,1.7371228 1092,363.3748,215.40839,33.71402,65.81961,0.5892507 1092,321.64752,209.22383,24.789764,54.685715,0.271121 1092,417.25488,219.11124,25.472412,53.323425,0.2073567 1092,623.9666,228.52303,15.180054,56.284134,0.1791338 1092,226.48282,200.55258,21.972916,47.682556,0.16942444 1092,363.9214,61.369656,31.139343,68.14189,0.10086467 1092,565.5403,197.17084,71.36627,145.23785,0.010828908 1092,385.71683,224.56735,24.573486,51.39801,0.0059832046 1092,595.7334,10.868191,41.184387,85.14836,0.00034280543 1092,1.5563827,145.96375,19.662672,132.22089,3.2622866e-05 1092,599.0159,411.10385,40.130737,87.643555,2.711395e-05 1092,1.034576,228.12688,19.255365,138.42458,1.1093065e-05 1092,0.94762534,341.751,19.814535,131.45703,7.0990204e-06 1092,531.5606,3.55001,47.717346,66.95125,6.1979017e-06 1092,1.1358423,443.76523,21.702702,59.55066,1.9101872e-06 1092,2.15306,61.98174,36.11669,191.74265,1.4805503e-06 1092,3.5339048,398.8329,55.846355,94.77826,6.444304e-07 1092,463.39288,8.520579,46.506927,65.35108,3.18754e-07 1092,438.45575,7.917624,40.5101,61.196877,1.3274042e-07 1092,320.89157,7.013431,44.549683,55.60941,1.3029114e-08 1092,30.928852,2.035485,43.09128,58.030922,2.2253315e-09 1092,9.594139,1.1631087,40.956306,49.604755,1.5580839e-09 1092,1.735595,4.8690205,18.10381,60.295143,7.6426937e-10 1093,537.7252,235.14157,36.995728,105.61444,99.8926 1093,575.12946,218.62384,44.357178,119.651,99.42935 1093,493.96802,219.51558,36.835083,93.56401,94.697495 1093,527.4764,221.98482,28.23468,87.48778,92.20512 1093,134.41331,199.44261,37.48407,71.1122,21.309288 1093,568.88226,225.37238,25.700806,84.06305,1.7516261 1093,238.93971,206.96732,33.650192,59.100006,0.1440224 1093,1.7324431,171.99246,37.63933,96.92334,0.12503213 1093,78.403305,221.03381,39.656334,68.86359,0.036252443 1093,512.8973,200.90007,115.186035,168.69234,0.01960252 1093,161.83281,200.10664,41.328674,106.27043,0.010472736 1093,183.36473,224.64899,25.96045,54.304688,0.002670485 1093,129.5372,43.989494,19.774063,46.40818,0.0013528776 1093,187.61035,203.54254,41.402466,101.30722,0.001127194 1093,184.26236,44.809998,25.329208,65.577156,0.0010169115 1093,609.35004,262.67133,29.381775,141.88055,0.00054546964 1093,599.2311,112.24064,37.41925,222.36707,0.00016909806 1093,1.1912516,195.86877,24.04853,165.55847,6.468171e-05 1093,608.80176,440.5804,30.34491,65.180115,5.9519032e-05 1093,584.8917,393.48718,54.254944,102.96631,2.0724337e-05 1093,1.0008985,319.93878,19.69449,136.11914,1.576429e-05 1093,1.4986849,62.56887,21.830456,174.23242,1.0084508e-05 1093,392.56586,5.973695,61.306335,65.1456,6.1837786e-06 1093,469.20554,3.1965137,50.65561,67.4555,5.8442865e-06 1093,586.1633,10.345977,52.66681,116.47624,2.8395878e-06 1093,1.9801074,419.3805,34.035053,78.71271,1.7881204e-06 1093,367.95993,1.5905762,47.258392,65.60491,7.188976e-07 1093,443.06424,3.9708595,48.433228,66.66658,6.6102496e-07 1093,1.2048438,15.363764,37.763615,81.135086,1.3450916e-07 1093,165.95364,4.732962,50.53293,66.9248,1.1981305e-07 1093,341.6631,3.4811263,43.30771,59.561466,4.0582496e-08 1093,195.62434,4.384466,44.810715,56.59188,2.386459e-08 1094,350.36792,201.60446,66.93149,153.49277,99.91534 1094,295.3284,211.39,63.203003,147.83546,99.89745 1094,610.906,193.2442,27.098572,91.81268,97.60166 1094,596.51416,188.00278,26.100464,76.263855,93.38713 1094,292.65088,222.90517,31.48349,95.60387,13.992294 1094,303.82236,286.82114,27.20877,65.11984,0.06027567 1094,586.27704,165.53407,50.60498,169.7459,0.051540177 1094,375.21536,274.4189,34.924103,78.013916,0.027903795 1094,320.40448,289.33008,25.63269,57.671722,0.020512538 1094,306.84802,158.43668,140.15091,259.88046,0.012542455 1094,320.9899,246.4736,29.127167,68.26825,0.005799109 1094,617.0273,41.33643,22.119385,69.04834,0.00015603128 1094,610.2757,254.99985,28.870972,160.35709,0.000102498976 1094,1.6840218,134.38763,20.166168,150.85754,9.727611e-05 1094,608.183,437.17923,30.963684,69.675995,2.8320543e-05 1094,610.22473,50.897743,28.921936,152.91275,2.462705e-05 1094,585.13043,391.59344,53.6521,99.681,2.1561658e-05 1094,0.91815674,368.01736,19.2572,129.27847,7.892838e-06 1094,608.08685,6.234974,31.059814,64.04999,3.5777502e-06 1094,3.091543,391.70145,55.507328,101.93063,2.3554755e-06 1094,363.4282,241.88683,32.176514,91.00615,2.2652646e-06 1094,1.9999577,32.337025,35.013817,201.34077,9.297265e-07 1094,2.056888,13.109174,38.41645,85.1346,5.89925e-07 1094,66.6848,7.8188024,42.83309,55.53778,4.1162986e-07 1094,210.70728,5.506366,41.78766,54.76026,1.8186216e-07 1094,444.25372,2.0486248,42.887848,53.364964,1.4378911e-07 1094,471.62552,5.0080338,44.879303,53.44717,4.5634042e-08 1095,573.3185,228.11261,39.82556,92.44333,99.95515 1095,347.9826,217.53618,52.94156,118.65318,99.92005 1095,385.20877,208.45555,34.97107,73.987595,99.57813 1095,21.037409,227.91058,92.17705,222.14801,99.541534 1095,405.02994,209.48418,36.66153,77.283646,98.69988 1095,501.70294,216.43996,32.48004,65.47432,96.57485 1095,618.10284,225.26482,21.043823,97.91255,70.29251 1095,3.2476206,218.99844,45.350735,222.98584,57.451904 1095,361.04517,206.84787,28.249115,65.178406,6.5563016 1095,34.73781,224.14717,36.744965,130.1999,2.5506442 1095,551.4275,202.17319,23.433105,51.708984,0.19944336 1095,528.98285,135.64456,107.878174,254.29724,0.001951129 1095,1.4288794,346.56964,20.455454,140.09152,0.00043065642 1095,607.5764,441.29443,31.570251,67.36679,9.254645e-05 1095,1.3596745,9.1379,20.18905,59.142715,1.2357506e-07 1096,459.7134,229.04436,45.282013,120.823746,99.96883 1096,49.55339,219.24712,80.18892,188.58528,99.96344 1096,175.97726,202.95819,39.100937,89.86041,99.963066 1096,340.83075,214.37544,31.02182,68.80852,99.94187 1096,252.83397,208.73538,38.935684,92.33963,99.936905 1096,514.1762,223.89143,39.12976,130.08952,99.92081 1096,210.71167,203.13956,39.623337,95.40692,99.91274 1096,507.33163,214.95381,26.887299,76.85701,75.01115 1096,524.9095,217.95474,24.937622,61.414,45.977566 1096,39.605976,231.22714,37.968334,108.50479,1.7842044 1096,156.83289,193.00891,21.818512,48.139664,0.43218845 1096,457.1685,166.88538,142.81058,247.68884,0.0060924375 1096,574.47565,157.91565,35.402405,75.515945,0.0020193432 1096,148.07568,167.5088,96.85568,181.11504,0.0015085507 1096,208.05853,117.86426,131.34866,249.9682,0.0008915362 1096,597.16254,232.4724,41.98413,215.57533,0.0002327371 1096,607.98016,440.23288,31.166504,67.71707,0.00010660321 1096,312.33505,150.67987,90.92563,185.93796,7.26497e-05 1096,604.8146,0.0,34.332092,72.43217,3.5424215e-05 1096,83.70415,255.07413,28.52372,84.48288,1.1624446e-05 1096,1.3806779,443.19513,21.209251,59.339355,2.4597798e-06 1096,1.7204924,355.61453,33.274734,136.40408,2.374647e-06 1096,2.227728,13.849105,36.963196,85.04578,1.8683595e-06 1096,87.56095,1.3025717,45.87014,58.287693,2.3033422e-07 1096,293.8279,5.116971,44.96042,55.341213,5.415044e-08 1096,218.87389,3.128623,49.657486,62.05385,3.955962e-08 1096,265.7458,6.049626,42.92392,49.11787,7.3618645e-09 1097,261.67575,202.52472,51.02365,112.20288,99.97876 1097,214.22499,210.69202,42.54512,106.11142,99.9767 1097,523.329,239.85623,74.57031,181.4639,99.954765 1097,328.39075,213.77464,33.541504,73.33638,99.93875 1097,587.0234,249.33089,52.12329,165.03438,99.926216 1097,157.5095,206.36363,37.616898,108.10686,99.80477 1097,511.50977,219.0776,23.429382,54.89917,99.75842 1097,526.0381,220.21782,24.335022,56.481674,94.163284 1097,517.494,218.27664,46.19281,106.34732,3.0815637 1097,564.676,245.23883,32.749573,109.52579,3.006682 1097,348.41888,195.78036,28.079987,77.655304,0.2329444 1097,96.40448,187.61362,27.308723,61.89099,0.16570102 1097,619.4896,303.87616,19.657043,62.27359,0.0065074326 1097,398.60748,157.8925,23.832336,55.456467,0.0017860956 1097,158.70808,134.06384,144.317,256.1086,0.0006882312 1097,256.23892,136.51964,157.54245,244.52702,0.00016464887 1097,594.1253,402.5045,45.021362,107.502075,0.00012604798 1097,33.168217,259.36777,89.96358,195.99533,8.137403e-05 1097,2.121027,79.04461,36.997513,223.33444,4.3095944e-05 1097,606.1244,0.39875653,33.022278,72.37863,2.8734774e-05 1097,1.8124806,414.76035,34.67022,84.24338,1.9471454e-06 1097,1.1103141,4.8960123,21.136719,61.289536,9.953015e-07 1097,110.049965,0.0,46.269356,58.338036,3.0772196e-07 1097,201.34982,6.121115,45.07521,53.154438,1.768939e-08 1098,223.3663,212.30472,48.70758,125.19733,99.971825 1098,298.23956,207.34978,49.693634,122.78645,99.96437 1098,533.64886,222.77379,27.091187,65.76604,99.93201 1098,337.79233,215.5244,31.366241,80.32387,99.92383 1098,125.11136,203.36197,55.297455,140.10141,99.91287 1098,552.00665,225.77849,26.039612,64.27925,99.879585 1098,289.1967,192.46696,33.294098,95.359116,0.85743964 1098,53.434742,186.96385,32.10306,71.05095,0.049468007 1098,396.16367,163.28825,26.264374,59.575836,0.019105293 1098,598.27826,138.42818,37.932617,188.55919,0.01040214 1098,613.2041,134.56633,25.08844,84.45854,0.0044704983 1098,228.12517,277.63846,22.518738,60.47229,0.004367419 1098,528.96295,128.15045,23.37091,54.254288,0.0025738492 1098,258.1972,130.35092,129.20337,248.9172,0.0012869944 1098,190.22736,133.26683,123.37915,263.72095,0.0005807001 1098,142.5741,228.01591,30.913727,73.3745,0.0005204437 1098,75.2089,128.87401,143.94547,295.59167,0.00045092643 1098,496.88235,157.98747,87.6055,184.62892,0.00023518223 1098,2.1882536,176.06721,28.968973,157.60872,0.00017638721 1098,608.9961,441.5824,30.150574,65.38458,8.660223e-05 1098,583.84796,393.67096,55.298706,104.649536,7.422276e-05 1098,1.4520297,293.13638,18.820452,132.28708,4.0061877e-05 1098,130.59041,5.806364,84.96973,82.747185,6.4533588e-06 1098,1.6913958,354.31348,31.700905,134.32278,6.436984e-06 1098,606.2929,0.0,32.85376,145.3917,5.5368487e-06 1098,123.808426,0.0,44.009766,54.60401,3.310728e-06 1098,189.38086,8.444953,46.88263,51.62589,1.736991e-06 1098,1.2376001,440.4936,21.706701,63.065216,1.6144064e-06 1098,218.65529,9.312679,45.189102,53.007336,5.094306e-07 1098,1.5326319,12.91431,39.21759,84.661545,3.093922e-07 1099,14.235551,214.09709,81.33204,187.59807,99.97947 1099,151.94946,203.83548,65.48465,167.81088,99.97607 1099,440.3528,227.2312,32.15338,78.780304,99.956604 1099,204.19415,222.83295,35.798615,84.51233,99.88679 1099,459.5821,230.72522,29.18866,74.61713,99.86902 1099,404.65616,216.5971,20.669464,46.785828,80.60386 1099,395.42905,166.48445,33.56244,100.06181,0.09470083 1099,129.78761,192.63815,44.9283,147.6471,0.07389163 1099,3.3719094,222.43584,28.277277,164.94872,0.0038968362 1099,107.27858,128.66249,135.92458,285.87274,0.0031384134 1099,39.316666,259.21698,27.084694,71.87744,0.0019209663 1099,403.03723,113.61132,32.250244,68.47282,0.001751211 1099,423.4188,192.02266,70.59842,146.43266,0.0015547813 1099,482.3581,198.28499,30.005676,92.69154,0.00096726755 1099,51.12231,276.26566,25.824642,76.637146,0.00024430235 1099,583.7961,383.20422,54.769897,117.884,0.0001193387 1099,1.9602963,305.36508,33.042294,176.81937,0.00010240284 1099,607.9798,439.57428,31.16687,67.98563,9.9781835e-05 1099,607.3541,7.0242743,31.792542,61.93121,3.3297078e-05 1099,1.376757,118.75289,21.2222,163.62122,3.0048715e-05 1099,1.4208106,442.48907,21.494102,61.05005,3.3086255e-06 1099,1.4110222,8.302578,38.00538,84.30521,1.0124785e-06 1099,18.540154,6.5803323,44.724915,54.157192,2.1874843e-07 1099,172.61995,228.9879,30.518204,93.2914,7.833555e-09 1100,424.92554,229.68042,32.334625,98.286804,99.93548 1100,403.26074,224.90068,34.774323,100.51225,99.91516 1100,92.03265,217.26065,45.38286,103.08188,99.91489 1100,333.76495,214.89433,22.993164,49.895676,97.392456 1100,181.31444,208.10332,22.094818,47.10469,96.64374 1100,132.61642,211.10551,25.584015,66.56389,81.52243 1100,0.0,191.06749,55.31832,266.60815,75.46799 1100,0.0,228.057,31.515587,114.51471,0.06157796 1100,372.8258,211.53746,22.594147,53.691116,0.0565633 1100,453.87122,133.62236,33.39734,73.44722,0.03863973 1100,315.1992,152.13503,40.58658,114.74663,0.01333521 1100,386.53775,170.41837,77.83618,197.15588,0.0054991962 1100,58.340267,177.66112,106.63411,171.15291,0.0023882387 1100,172.56667,152.35448,27.918839,63.987488,0.0008912217 1100,6.3121924,277.51752,34.550854,114.98132,0.0004800599 1100,0.59479004,300.40054,27.559664,195.62665,0.0003244355 1100,414.30417,197.84206,24.419128,78.8683,0.00028082516 1100,583.5418,391.20728,55.513855,107.04285,0.00014124284 1100,608.0257,439.50406,31.120972,67.48834,0.00012896674 1100,610.6608,266.9845,28.48584,136.67245,0.00012220802 1100,306.91782,141.58038,94.31973,211.0328,9.681909e-05 1100,605.12006,0.0,34.02661,69.88076,7.925488e-05 1100,1.711849,51.69499,36.265568,270.53253,2.9077815e-05 1100,0.8566691,432.4057,22.427109,68.23453,2.804778e-05 1100,163.19904,162.76372,90.386566,192.26033,8.318042e-06 1100,362.82272,0.86290044,47.63443,71.742615,5.259326e-07 1100,1.1521192,7.530892,38.03511,96.53394,3.4161133e-07 1100,536.95264,3.661478,46.500305,59.79641,2.0479387e-08 1100,401.37027,4.9921355,43.648193,64.95215,9.632639e-10 1101,489.87814,242.04927,56.22293,147.1378,99.9491 1101,14.152488,214.67822,60.788704,133.02945,99.936905 1101,163.49667,214.5684,25.35234,52.339615,99.933426 1101,450.37314,239.6606,61.06433,151.98659,99.91259 1101,317.27222,214.7784,24.473938,56.103897,99.69732 1101,148.87846,211.49886,24.320923,51.238815,99.68154 1101,86.52392,217.43745,34.363464,82.68681,99.53537 1101,417.30646,169.21155,141.83203,260.71094,0.09188224 1101,305.4404,152.11307,40.783783,127.69925,0.068262845 1101,432.72183,172.04524,44.682617,140.0606,0.04467035 1101,373.5293,210.83415,24.06012,54.183395,0.038024705 1101,456.37845,190.26712,39.97632,114.497925,0.02334822 1101,6.9736524,152.24144,106.048454,268.23065,0.016027767 1101,4.058908,164.40628,32.607426,184.17181,0.0096059535 1101,607.55975,238.72975,31.586914,161.64803,0.0010118202 1101,48.934273,188.21422,93.496666,150.27516,0.0004900868 1101,1.0000391,236.18907,20.041779,156.62563,0.00015817645 1101,133.4999,166.11154,73.67905,151.73724,0.00015410584 1101,290.5824,135.85686,91.36499,213.72557,0.000110339446 1101,608.35364,438.01923,30.79303,68.29385,6.65482e-05 1101,1.2456552,329.6838,33.916092,163.68631,6.567248e-06 1101,608.0692,6.646315,31.077454,54.983204,5.085028e-06 1101,1.2837818,443.533,21.392036,59.774323,1.763739e-06 1101,1.8909408,14.712409,36.455368,80.243324,2.3087436e-07 1101,352.63687,3.5472739,43.656586,52.64999,2.122234e-07 1101,325.76788,9.728188,46.056793,55.750694,2.8155316e-08 1101,380.85464,5.772217,43.946014,59.583984,4.0214085e-09 1102,173.87527,214.22737,26.996826,61.19371,99.9313 1102,340.6319,217.49203,25.931366,65.90866,99.89479 1102,156.33684,211.525,24.177505,60.788116,99.88778 1102,7.4936314,218.62392,43.41205,116.10335,99.57991 1102,488.69714,171.80563,42.319336,152.06326,1.854184 1102,31.68756,224.1174,27.409922,82.909546,0.6515486 1102,521.74615,178.18588,40.425964,116.309784,0.073161095 1102,1.9224098,213.81557,19.485619,115.05278,0.057356413 1102,304.2036,200.30496,25.069,48.216217,0.035018023 1102,146.02359,185.09541,51.245422,99.261215,0.030632453 1102,498.77716,192.90901,21.71344,50.10623,0.030609159 1102,542.8239,163.60071,40.45227,131.79617,0.029836694 1102,322.79086,170.46802,36.666016,89.20419,0.02511959 1102,608.81464,121.73813,30.332031,163.16855,0.002586383 1102,313.87338,131.8364,69.33417,163.5907,0.001116342 1102,5.499014,150.9879,90.81741,247.09904,0.0010942307 1102,599.9862,222.0109,38.63556,184.07425,0.0006247392 1102,610.9168,330.857,28.229858,144.92514,0.00030468276 1102,607.75134,438.37137,31.395325,69.71173,0.00011979813 1102,401.46127,138.98236,90.659515,225.44022,8.153919e-05 1102,128.60873,150.38661,135.59296,222.3069,7.7645134e-05 1102,609.6559,0.0,29.490784,146.62122,2.2987928e-05 1102,1.1786158,270.517,20.015461,161.65344,1.0876411e-05 1102,2.870905,293.1684,58.347168,196.84256,7.801613e-06 1102,1.7685417,70.67582,36.11285,249.81244,2.314397e-06 1102,1.4259025,444.41626,21.4725,59.19812,1.8501286e-06 1102,3.1880405,12.913236,57.830006,120.81767,8.44767e-08 1102,448.58246,6.075877,45.354797,55.970543,2.1597563e-08 1102,344.74606,5.700567,46.84189,58.04854,1.9494362e-08 1102,368.2973,6.855868,45.772247,45.0229,1.4060397e-08 1102,421.97617,3.573607,45.14508,60.994843,5.4783706e-09 1102,395.2988,3.3119922,45.470886,58.8262,2.7858618e-09 1103,362.19962,221.43808,31.055206,78.21875,99.96076 1103,163.44916,218.60498,31.552963,75.981445,99.95882 1103,129.9352,211.19356,33.365433,81.39909,99.958496 1103,473.75388,208.8797,26.464844,63.539124,25.483223 1103,148.82921,211.36356,25.299774,61.019775,6.27793 1103,527.96936,179.64363,39.19763,111.67763,0.4264444 1103,572.73505,184.96036,25.74347,55.94452,0.3838104 1103,486.94897,196.05609,21.095673,59.715927,0.07183463 1103,506.42487,178.84013,36.129272,92.067825,0.044149064 1103,600.58435,160.53778,35.757446,199.07495,0.035889085 1103,0.8504289,134.33098,28.695082,108.90491,0.031081788 1103,549.9726,159.33228,51.203796,147.86197,0.010359172 1103,620.99805,240.45164,18.14862,58.383255,0.0020634597 1103,4.5836883,93.21105,54.134914,229.89307,0.0020270918 1103,458.08878,164.38608,56.17221,134.18948,0.0010911439 1103,113.331184,179.95952,75.16465,139.8441,0.0008852575 1103,552.94275,197.7541,84.91852,261.68536,0.0008314857 1103,609.65155,300.39954,29.495117,153.36255,0.0008106754 1103,346.81912,181.28717,66.212555,157.57254,0.0004250113 1103,582.76825,388.87073,56.0708,107.74512,0.0002198163 1103,587.51465,23.804678,50.37201,101.84965,0.00011065779 1103,607.8211,436.32593,31.325562,70.66919,7.071612e-05 1103,1.3026685,204.0002,18.530893,89.26875,7.0073394e-05 1103,436.56302,128.70085,130.19046,233.25468,6.410068e-05 1103,1.3495932,262.969,20.165539,136.15744,5.8041776e-05 1103,3.903094,229.92378,57.20861,241.41039,3.564394e-05 1103,610.60876,3.4034245,28.537903,60.911686,2.4318882e-05 1103,1.2177075,367.32547,19.41563,130.80011,7.327147e-06 1103,3.5532765,394.7427,56.447365,100.21304,5.0005997e-06 1103,0.88318604,18.962618,23.04252,169.49731,1.6831962e-06 1103,0.878916,2.527002,31.479933,47.31067,7.5747727e-07 1103,372.74973,7.0252604,45.685364,56.27448,4.6786315e-08 1103,402.7104,8.6880865,43.810455,55.931007,4.5950394e-08 1103,463.74756,6.1221943,43.677704,55.583313,3.7697827e-08 1103,436.41034,5.8112664,44.306396,57.63535,1.2850332e-08 1104,68.7887,218.96045,50.33068,116.09503,99.98296 1104,114.9009,222.92249,41.852318,117.80899,99.9703 1104,391.03113,227.73618,41.55252,104.800354,99.95314 1104,154.8272,224.63074,28.96289,78.804016,99.92211 1104,576.9033,166.39914,31.869873,109.5278,96.926636 1104,135.40746,224.98422,23.400223,62.789764,12.962517 1104,552.80414,171.67776,33.640015,129.55078,6.663187 1104,52.838947,210.89418,30.045773,92.90538,0.11519852 1104,414.162,236.38516,31.358246,82.317444,0.018812269 1104,56.845234,166.90567,148.98637,235.87317,0.0056867767 1104,549.5656,160.15706,78.76807,192.10051,0.0015462742 1104,585.2524,23.062706,50.930115,98.07001,0.00016657953 1104,2.1889715,207.5024,29.803299,147.13191,0.00016166517 1104,611.2692,310.32135,27.877441,141.85693,0.00014577892 1104,346.53897,140.12518,127.9429,244.53345,0.000114329065 1104,609.1917,3.1369565,29.954956,61.127914,5.8221565e-05 1104,583.6131,395.2538,55.53357,99.81702,5.4815973e-05 1104,3.5377183,222.5046,57.068233,232.70094,3.316087e-05 1104,1.5468954,273.17328,19.589943,132.16986,1.5421921e-05 1104,1.5255754,332.01755,33.538208,158.22571,9.145101e-06 1104,1.8342057,113.61099,19.17299,148.2988,8.2512015e-06 1104,1.1916391,443.78302,21.502043,59.619904,2.556698e-06 1104,2.5700262,13.775697,38.148766,79.91798,2.8212634e-07 1104,2.0517976,28.091707,32.852295,189.86115,1.3049615e-07 1104,398.94208,2.6286817,43.165222,46.810604,6.060456e-08 1104,427.92505,7.0827637,44.901794,61.623764,3.9600085e-08 1104,444.0832,11.455267,78.551575,73.4191,8.833445e-09 1104,370.5987,0.94783854,48.02466,72.06539,6.3069847e-09 1104,516.94293,5.2774577,43.484924,54.721474,6.0578187e-09 1105,471.1812,228.92949,66.43347,166.8639,99.98673 1105,70.62559,224.48312,49.639496,122.20877,99.96736 1105,111.98697,230.04857,42.608276,117.19289,99.94984 1105,0.0,280.57886,45.927353,133.90219,87.66712 1105,0.80083984,176.77386,36.766804,121.2988,0.36820337 1105,349.21777,196.87003,19.38446,47.85016,0.044309907 1105,601.6702,76.22673,35.547913,217.46156,0.04225248 1105,616.25134,164.59537,22.895325,76.96388,0.008350017 1105,10.848262,244.57503,34.720795,84.53056,0.0076709474 1105,426.82703,173.7481,140.05151,270.97986,0.0063378606 1105,25.020683,160.4648,139.49368,261.04047,0.0030712148 1105,495.53195,276.43945,28.297272,76.79523,0.0005088228 1105,582.8412,366.79013,56.06714,122.862854,0.00032358788 1105,600.8334,251.9885,38.313293,191.12515,0.00014158795 1105,585.7058,10.555176,52.315857,112.331764,0.00012417312 1105,608.1005,439.27823,31.046143,65.88849,8.6168555e-05 1105,611.8941,1.680573,27.252563,47.28046,7.164448e-05 1105,0.94815594,355.15915,56.57531,139.05878,2.7957569e-05 1105,1.0460824,437.91086,21.822735,66.68405,3.4015507e-06 1105,1.3010075,7.5707426,21.940422,60.844242,1.04305265e-07 1105,423.11182,0.0,53.548553,69.69219,1.0011901e-07 1105,1.965796,18.358717,36.43952,164.04605,7.2633846e-08 1105,510.28506,6.994196,43.658844,55.929512,3.7712358e-08 1105,388.40814,0.0,50.442352,74.18464,2.3631759e-09 1106,0.0,241.3772,68.45297,205.30756,99.96861 1106,0.30860272,274.44522,21.771051,158.29822,0.16223197 1106,0.17284098,343.801,12.5533695,62.59366,0.026138514 1106,361.84106,197.9773,21.421112,47.50891,0.025780726 1106,29.873396,281.43253,26.442186,66.03763,0.0024261524 1106,617.4974,298.87708,21.649292,81.43329,0.0021462953 1106,599.36316,181.82643,38.555725,196.51949,0.0008439274 1106,610.49615,109.38112,28.650513,127.396545,0.000795874 1106,12.442838,301.39236,27.22005,79.45749,0.00062999275 1106,598.9098,301.69952,39.749207,179.09924,0.00039991282 1106,29.336964,327.24606,26.130016,60.26956,0.00036299258 1106,608.9703,440.2354,30.176392,64.866486,7.473971e-05 1106,615.0792,204.765,24.067444,90.81749,6.0156395e-05 1106,610.2832,7.680075,28.863464,81.15494,4.3056916e-05 1106,600.32056,23.682018,38.82611,158.66025,2.4386747e-05 1106,0.71927327,407.10767,17.220766,88.29584,2.2195323e-05 1106,1.3198332,175.74501,20.878206,160.90761,1.7248423e-05 1106,304.20825,166.55756,86.64841,149.1629,1.6894946e-05 1106,1.1330925,73.95903,20.37328,147.36908,9.585373e-06 1106,584.4261,8.092017,45.316895,45.708054,1.104581e-06 1106,0.9686886,7.452764,12.794339,94.606224,4.5049453e-07 1106,1.4574219,9.717175,30.90911,132.28487,2.0232778e-07 1106,530.4119,5.7448864,44.676086,56.583878,1.2103084e-07 1106,2.062819,15.384323,60.49916,254.497,5.181559e-08 1106,468.24445,2.7624023,67.49829,56.13411,2.398854e-08 1106,60.924294,5.4301076,41.921623,52.30643,1.4866766e-10 1106,452.61996,5.004681,42.307404,61.746853,2.3851907e-11 1106,380.91342,7.545264,82.94275,70.42127,1.1701414e-11 1106,369.92203,1.4115039,43.792175,56.119293,1.3000336e-13 1107,337.8533,216.67604,21.282501,49.484177,99.84004 1107,355.85303,213.33873,20.154968,48.085342,0.28473723 1107,78.275024,189.68146,36.708366,90.3237,0.03543367 1107,420.38623,79.84964,34.082886,77.318405,0.0066457638 1107,2.7858677,139.16716,37.77738,126.685135,0.0015978683 1107,1.6241163,123.6087,18.311094,94.14665,0.0012634785 1107,219.47969,187.62444,32.603653,66.02167,0.0012020062 1107,625.3746,249.54805,13.772095,46.840164,0.0011154547 1107,622.4481,67.94973,16.698547,54.386826,0.00046527848 1107,603.87,154.19623,35.0166,187.49338,0.00045264474 1107,139.95355,203.58939,25.561523,54.535217,0.00031952412 1107,611.1614,75.204605,27.98529,168.26384,0.00031534652 1107,1.5916187,278.78683,18.174074,73.01318,0.00019793479 1107,1.3435279,201.7658,18.457767,91.62822,0.0001397553 1107,617.29364,24.202204,21.853027,75.31502,0.0001299304 1107,586.58154,296.43256,52.5448,183.92365,0.00010346773 1107,608.87897,440.57938,30.2677,64.76788,8.143195e-05 1107,117.42378,67.22713,32.264053,73.81331,7.731338e-05 1107,612.3863,261.3469,26.760376,140.8153,7.259624e-05 1107,617.49506,349.14093,21.651611,81.0856,6.928965e-05 1107,569.57916,34.02015,68.562805,121.23644,6.767332e-05 1107,316.7512,185.52592,60.11035,100.212326,6.47921e-05 1107,3.4274724,202.13055,57.68511,228.9342,6.137483e-05 1107,55.326225,176.44022,85.020744,159.3483,5.430201e-05 1107,292.96762,135.53578,139.35187,218.19572,1.2513874e-05 1107,1.0032731,330.70578,19.795902,144.08356,1.0200891e-05 1107,1.0091789,423.93323,16.37869,78.83023,2.3658135e-06 1107,5.5659604,352.06985,79.18993,140.10681,1.989602e-06 1107,1.8731153,16.583937,57.313404,115.29442,8.474788e-07 1107,3.555949,433.4015,52.589813,66.8678,6.3624253e-07 1107,97.550964,35.01416,80.146545,193.04443,3.4143153e-07 1107,579.13574,7.8065805,44.053406,47.640797,1.5736758e-07 1107,1.203296,9.2205305,13.669914,80.8814,1.3091449e-07 1107,1.7290902,6.13173,39.233246,54.75947,2.2588853e-08 1107,538.16364,7.918353,43.24298,51.279995,1.3575323e-08 1107,82.05459,9.660787,40.066025,47.48273,5.9792655e-09 1107,473.4924,0.81290364,64.42551,148.3001,4.7339777e-09 1107,55.508724,9.416904,40.29073,49.441628,2.669079e-09 1107,500.61768,2.5530405,46.28247,62.563004,6.439719e-11 1107,408.6441,6.9632425,40.078033,55.389454,1.4712119e-11 1107,467.3674,1.7855762,41.25943,63.070923,2.2438939e-12 1107,380.62378,3.7812014,45.664795,56.87638,1.87833e-12 1108,361.12317,201.74734,27.174103,67.96066,99.47631 1108,430.2172,210.17906,22.680878,51.264175,94.46873 1108,329.73355,211.37772,25.26065,48.29532,0.8361197 1108,224.45131,199.19273,22.599716,53.644592,0.005530693 1108,622.3941,272.33368,16.752563,52.654236,0.003292557 1108,411.61902,223.69379,26.09491,52.661713,0.0024999105 1108,1.6196274,186.30681,19.304047,158.96275,0.0021995464 1108,469.99585,57.626286,29.645264,80.65378,0.0016646595 1108,81.07703,69.95885,21.332657,51.1157,0.0012077447 1108,4.608008,141.8708,79.36798,196.72975,0.0009680537 1108,1.4625146,154.3077,19.026634,89.77371,0.00040627102 1108,612.11346,237.9351,27.033203,117.37517,0.00039729907 1108,617.9921,199.1254,21.154541,79.64508,0.0002244825 1108,601.9247,270.35535,37.221985,186.73395,0.00020876892 1108,608.7496,441.17932,30.397095,66.18234,0.00017849365 1108,342.81842,169.9366,68.14688,159.5269,9.720657e-05 1108,410.80304,180.57785,59.53488,105.32141,9.1087844e-05 1108,610.57996,6.380365,28.566711,84.53702,6.219679e-05 1108,0.99858075,317.283,18.846441,79.88492,5.1824543e-05 1108,610.62366,58.183987,28.52301,161.9088,5.001372e-05 1108,602.8118,131.22314,36.293518,190.01169,4.3298547e-05 1108,1.0155225,69.36784,18.124582,68.87787,4.2002182e-05 1108,448.72476,40.43445,41.305084,151.34508,4.0810286e-05 1108,3.2234995,248.29333,57.776344,218.40231,3.49752e-05 1108,572.62006,363.6784,66.52661,129.42212,1.7134576e-05 1108,269.3744,166.17714,83.96057,148.68828,1.2502123e-05 1108,383.18295,119.01573,136.97421,251.38115,1.0027122e-05 1108,2.2817612,59.676735,35.28227,230.42548,9.665122e-06 1108,0.9519279,405.6761,18.236397,73.065704,4.9656796e-06 1108,1.452907,339.405,33.349403,155.10898,4.836921e-06 1108,565.69446,2.9485092,66.497925,60.202522,2.45879e-06 1108,565.2927,8.34433,73.16742,167.25954,2.023159e-06 1108,3.2820492,430.3195,53.050728,70.06833,5.7109264e-07 1108,496.79724,5.306146,89.50476,92.17492,1.4263205e-07 1108,0.83188236,12.315775,10.6426,84.265396,1.13012575e-07 1108,1.0358448,7.8762045,35.8524,80.02808,6.9010735e-09 1108,127.73575,6.5409083,43.626373,51.348297,9.478128e-10 1108,492.4458,3.264616,47.87549,58.125725,4.2852333e-10 1108,103.775475,6.9987063,40.69204,49.937187,2.3595537e-10 1109,308.7196,214.93428,19.980469,46.070633,99.49906 1109,293.08517,214.47185,21.17566,45.961746,99.31013 1109,394.73325,217.88905,22.892883,58.987442,92.14493 1109,433.79544,217.2959,26.093842,57.21823,32.230194 1109,484.7147,228.07256,27.909332,55.982468,0.10912394 1109,504.605,137.6275,25.328583,63.135605,0.028331045 1109,409.30173,225.37872,18.410248,48.785675,0.026260238 1109,217.4757,203.11015,25.177017,57.114334,0.008859669 1109,381.8061,197.38306,27.041138,58.501038,0.0057719643 1109,2.3636508,184.34341,33.83656,174.65387,0.001753701 1109,379.5456,190.27274,56.71591,102.69641,0.0016547985 1109,287.93646,198.62454,43.53708,81.95416,0.0008370127 1109,618.046,171.25844,21.100647,72.221146,0.00039291126 1109,1.5800179,160.72246,18.949465,84.07536,0.0003050549 1109,611.1534,342.09674,27.993286,142.88895,0.00026357296 1109,586.9164,142.92888,50.12439,206.02898,0.00023107948 1109,1.4075032,221.98013,19.202282,83.053925,0.00013110091 1109,612.395,209.18259,26.751648,118.411285,0.00011001865 1109,608.4633,440.769,30.68335,65.102936,8.905641e-05 1109,1.3298129,261.71924,19.32798,133.84363,5.747174e-05 1109,286.3867,167.12183,78.84659,164.07669,5.2803665e-05 1109,611.33813,67.98488,27.808533,148.89465,4.6133147e-05 1109,511.33267,13.203874,37.805817,114.06604,3.752885e-05 1109,389.8387,144.64923,137.4426,242.8027,1.8698216e-05 1109,1.0450399,359.2164,19.59674,138.62085,1.7444088e-05 1109,608.3258,0.24735677,30.820862,63.767445,7.6601045e-06 1109,585.54816,10.928998,52.3407,112.63703,7.044702e-06 1109,2.6950278,307.11066,58.1239,176.55927,5.556696e-06 1109,1.2059774,38.010586,20.136288,151.01247,1.9812178e-06 1109,472.5196,8.442617,117.56763,231.88019,9.294144e-07 1109,3.3654542,431.2293,52.802788,68.6333,8.076048e-07 1109,1.3163273,16.533295,14.734181,74.696785,5.103691e-07 1109,2.6062615,13.799705,57.474274,112.04076,3.1198297e-07 1109,1.9936866,5.1877995,40.17297,55.24124,3.0606877e-08 1109,573.4537,4.2121973,42.37976,60.275764,1.6833518e-08 1109,403.3233,9.23326,64.87723,47.42034,5.533631e-09 1109,528.7737,4.541709,44.43512,59.268898,1.584112e-09 1109,479.3924,4.034157,44.388916,58.420677,5.9836663e-10 1109,194.66776,0.50875,46.886185,69.755394,1.6655513e-10 1109,382.56744,1.8135808,42.21582,58.333923,6.774548e-11 1110,304.45486,219.46219,23.940582,52.486786,99.90704 1110,318.99475,218.44803,23.558807,52.414062,99.896706 1110,439.97684,220.48834,31.474121,79.75256,99.86921 1110,425.7958,220.03091,27.738434,73.104004,80.70247 1110,1.7404102,209.59528,36.407944,91.53067,0.16935444 1110,457.72015,226.72006,33.64377,72.495544,0.0157834 1110,482.1928,226.83594,38.353638,73.889435,0.008622771 1110,394.07425,197.84204,24.180359,51.881607,0.004463231 1110,127.21606,235.18842,24.235023,53.680756,0.004375114 1110,476.07938,253.2829,23.491882,49.1445,0.003058005 1110,3.1170542,121.29009,55.060772,228.46204,0.0015626759 1110,407.77362,199.69064,70.97598,135.32864,0.0015274337 1110,621.8661,202.83347,17.280579,55.274292,0.0007264649 1110,611.7985,142.80727,27.348145,136.71306,0.00054777326 1110,620.2471,93.87032,18.899597,65.9909,0.00053697714 1110,294.8672,200.55609,57.99518,90.9064,0.00042296207 1110,586.16626,270.21155,52.43341,206.8429,0.00031385777 1110,608.1,441.48413,31.046692,65.65152,8.277065e-05 1110,611.7153,242.13078,27.431396,131.48424,7.459232e-05 1110,607.4556,31.252096,31.69104,188.95084,6.8489586e-05 1110,593.9925,0.0,45.154175,109.14017,6.030178e-05 1110,1.5497323,231.06956,19.40538,144.54689,5.8012665e-05 1110,613.84595,0.0,25.30072,45.886406,4.5522727e-05 1110,1.2503825,68.76022,19.778845,166.0878,2.5267098e-05 1110,299.66983,170.76118,87.96561,182.92912,1.9817891e-05 1110,2.7518213,29.365665,53.511906,96.895355,1.8190394e-05 1110,1.5612931,35.266106,19.320042,82.88861,1.3981112e-05 1110,1.0494897,361.47125,19.632711,134.35706,1.3801646e-05 1110,3.5495965,309.5727,57.176865,171.58044,4.8218885e-06 1110,1.136569,10.354206,36.597267,58.370014,2.6359385e-07 1110,557.1976,1.5571029,45.512268,61.993916,2.0665365e-09 1110,186.48349,0.0,67.33623,60.384052,6.526827e-10 1110,522.68976,4.0501857,39.27234,59.424736,2.1267649e-10 1110,382.9211,0.01029948,43.436127,58.673622,1.8759473e-10 1110,408.78763,0.0,60.143433,59.607944,3.6891153e-11 1111,313.09247,219.36626,25.46286,65.091324,99.933525 1111,332.37347,218.90031,25.291626,65.479324,99.9161 1111,494.69434,224.02531,45.09723,123.89418,99.8465 1111,104.72061,246.5056,27.129333,45.746628,3.7154932 1111,419.8215,204.3441,28.365112,54.83412,1.5027589 1111,541.6689,270.8633,28.927795,71.837585,1.1789525 1111,69.94833,252.77258,25.98552,50.574097,0.33829346 1111,495.95474,308.17435,24.46634,50.99231,0.114093125 1111,521.3772,221.95735,42.4682,115.95119,0.11062339 1111,346.86954,224.94727,17.210052,46.627136,0.0014055758 1111,611.4674,221.72401,27.67926,121.387924,0.0006738996 1111,457.52023,160.30496,139.98196,249.86676,0.0002556948 1111,311.16907,185.16281,73.23337,143.0365,0.0001923079 1111,1.8222454,31.126518,28.707272,123.88749,0.0001745282 1111,607.96655,439.73132,31.180115,66.66077,0.00010139298 1111,602.18195,300.25568,36.96472,189.01715,9.877915e-05 1111,609.2451,0.20195964,29.90155,132.37721,4.640611e-05 1111,1.1823958,207.36894,19.16473,132.0984,3.9089795e-05 1111,1.6358936,105.80909,33.582478,190.91806,2.7310505e-05 1111,347.22217,165.03456,93.14874,200.05464,2.4216035e-05 1111,602.1157,83.26029,37.030945,205.29352,1.6427355e-05 1111,0.8240519,372.77164,19.963617,124.043,1.5778654e-05 1111,4.0326204,209.23842,57.455116,203.47444,1.5090598e-05 1111,1.4883773,299.0968,26.93857,142.0831,1.002303e-05 1111,5.1366377,342.9408,78.70596,144.41473,5.325731e-06 1111,1.4294605,16.64763,16.179379,73.82436,4.171683e-06 1111,2.2029638,11.021486,42.334133,50.898537,7.669955e-07 1111,34.079407,13.042183,42.994232,47.190235,5.078044e-08 1111,60.506668,9.552439,43.0082,49.375458,9.66935e-09 1111,204.19456,0.0,63.917038,57.611214,2.3063822e-09 1111,494.39835,7.085768,43.23166,49.71498,4.4334214e-10 1111,402.48987,2.223073,44.73456,56.80251,5.3855562e-11 1111,443.23605,0.0,47.999023,53.150276,2.225276e-13 1112,305.59494,219.04277,30.46106,81.86388,99.97767 1112,565.42944,228.9972,52.300415,132.97864,99.97479 1112,326.9981,218.78706,30.131836,80.93251,99.949394 1112,372.1465,230.12161,22.042908,45.25647,99.935135 1112,63.112984,259.57043,26.36779,54.104584,0.3960265 1112,595.7709,227.21516,41.229553,125.73567,0.16330448 1112,437.18793,201.21399,30.090637,61.270508,0.021321032 1112,11.041815,231.48178,35.333847,85.18375,0.009682284 1112,386.44327,228.65758,22.718597,46.605576,0.00598845 1112,617.0514,293.002,22.095276,89.67227,0.0045316117 1112,527.62646,174.35844,105.28723,254.66447,0.0035482103 1112,616.58765,219.05779,22.559021,83.41542,0.0016657743 1112,293.82608,191.4719,64.32068,143.34735,0.0013285823 1112,1.6175416,188.01413,20.147871,137.26208,0.00055127667 1112,3.8642254,194.56467,57.739075,202.164,0.0001723872 1112,610.96155,350.17932,28.18512,147.29367,0.00015081101 1112,1.0189657,69.27912,20.322697,163.99045,6.555873e-05 1112,610.79736,87.5971,28.349304,147.91687,4.190512e-05 1112,1.1970834,261.97385,19.68172,137.49454,3.3729117e-05 1112,355.93402,180.56717,75.19043,164.26825,2.8620429e-05 1112,0.76389164,335.2698,20.210983,141.91724,2.6354632e-05 1112,1.0349414,441.4307,21.871582,62.247803,5.1733678e-06 1112,2.8780665,397.07962,56.711178,97.992645,2.4129351e-06 1112,608.46466,2.847552,30.682007,63.735363,1.9295144e-06 1112,1.6654509,8.533607,60.416386,295.913,8.0583067e-07 1112,0.86502403,13.8659115,13.124169,76.855545,4.99992e-07 1112,59.575504,8.725111,44.120853,54.874977,9.722486e-08 1112,103.00299,11.680632,43.480988,50.809067,7.459097e-08 1112,0.6294108,5.8374286,39.82493,54.967632,2.2370699e-08 1112,196.72488,0.0,49.87439,69.167244,3.9394535e-10 1112,510.92416,3.360765,46.57901,48.321358,4.4392743e-11 1112,429.9982,2.0023162,41.74109,53.303596,1.3600815e-13 1113,275.00333,218.67938,36.884766,110.90097,99.956184 1113,372.87134,230.46742,23.218536,48.340256,99.93912 1113,297.23523,216.78268,39.845398,111.41995,99.92481 1113,604.0429,234.73938,34.06122,74.709076,0.07381338 1113,451.03152,192.14842,25.03244,47.907684,0.020658767 1113,623.6361,245.92607,15.510559,46.501816,0.01688922 1113,446.8536,216.74922,38.987915,82.40968,0.010177112 1113,2.5065675,217.9498,35.85452,100.81497,0.004268645 1113,562.1899,204.37677,63.535828,128.89838,0.0023766356 1113,489.1159,230.22318,25.335022,51.402252,0.0006900346 1113,537.90607,219.3919,40.784668,97.33185,0.0006631147 1113,615.7001,263.71,23.446594,91.21744,0.00062775577 1113,358.8205,202.82793,55.698914,100.80995,0.00017620697 1113,609.7485,308.58698,29.398193,165.85089,0.00012353482 1113,3.4952264,189.54146,56.504612,224.84517,0.000105882624 1113,608.96265,443.72662,30.184021,59.614594,9.003557e-05 1113,252.35396,169.58144,123.44762,221.78624,7.072287e-05 1113,1.0928442,250.08751,20.359491,145.81532,6.9041234e-05 1113,600.95905,82.746216,38.187622,223.59875,6.82917e-05 1113,611.2545,40.85368,27.89215,130.2226,5.601206e-05 1113,584.667,395.48163,54.1037,100.598236,3.558423e-05 1113,1.2322038,121.92369,19.478676,145.20122,2.1856635e-05 1113,1.1398934,331.55252,19.664883,138.2305,1.4819564e-05 1113,1.1575285,442.9624,21.52343,60.35324,3.549766e-06 1113,597.53455,14.659626,41.57721,72.293015,3.169699e-06 1113,1.2523454,43.542156,19.677465,142.12338,2.0210764e-06 1113,3.434087,343.32697,57.636868,144.29184,1.9474016e-06 1113,2.5350993,15.380492,55.51803,107.83822,1.0518777e-06 1113,0.8647282,11.028292,13.553747,79.08174,8.572135e-07 1113,0.8334473,4.153021,32.469135,47.44139,2.025351e-07 1113,78.71346,5.6596503,46.955925,54.93084,1.7258478e-07 1113,55.016266,4.626787,42.8649,55.420914,1.3478904e-08 1113,108.647194,5.4083757,48.419075,59.00384,7.020373e-09 1113,563.22437,10.17901,44.822205,51.769966,4.8585505e-09 1113,531.6351,1.6386393,46.60974,64.202324,1.1214112e-09 1113,422.561,5.0176597,45.10916,57.730064,1.6462853e-10 1113,182.72917,0.0,46.96141,64.78119,2.5368823e-11 1113,446.8679,3.7236524,44.18457,51.91958,6.5266396e-14 1114,377.22342,226.66472,24.013031,50.1277,99.960045 1114,230.29532,208.06053,56.459534,156.48463,99.94491 1114,198.3001,215.99324,49.50415,145.91335,99.92235 1114,507.65305,226.32066,25.09439,47.453323,0.57251847 1114,205.22975,218.71945,26.174835,53.976562,0.21267435 1114,620.6214,211.39465,18.525269,56.96454,0.120582804 1114,157.42477,167.61014,141.6536,242.91483,0.0057719424 1114,479.80255,199.37256,29.678284,58.79886,0.0014683706 1114,603.33844,192.54924,35.21039,173.75029,0.00057378603 1114,450.54028,178.47406,41.290558,80.28485,0.0005208544 1114,1.4738599,133.10109,19.147863,132.8037,0.00035615847 1114,364.91,194.90952,54.664368,101.17142,0.00024459747 1114,608.7478,437.84283,30.398865,66.71292,8.4292806e-05 1114,495.84402,308.23175,85.46805,169.38046,6.5201326e-05 1114,1.9753696,177.78027,34.715733,177.49374,5.7975558e-05 1114,602.60486,8.573102,35.367737,103.36218,4.582764e-05 1114,1.2121208,266.74942,18.945969,138.87552,1.7568771e-05 1114,4.019095,261.4481,56.899094,208.04962,1.2151461e-05 1114,329.6258,148.83844,136.40942,228.11993,1.2093496e-05 1114,1.6612419,329.20676,27.893303,143.10309,5.5718833e-06 1114,1.2648983,443.4295,21.647003,60.03186,2.2230058e-06 1114,1.6956217,47.25581,29.089281,171.21666,8.9240723e-07 1114,2.3061914,10.713392,56.010685,124.84572,1.2652124e-07 1114,580.9843,5.592077,42.17267,56.99458,3.130928e-08 1114,113.0075,6.3896484,49.081444,57.485107,1.2534089e-08 1114,429.79526,4.244398,46.588257,56.928207,9.431776e-11 1114,489.41266,1.5785286,46.53766,63.435707,4.9635765e-14 1114,462.73465,0.093736984,42.000427,57.823315,1.3822153e-15 1115,381.03656,226.61133,24.77536,51.130585,99.94047 1115,52.08558,218.93683,71.19178,232.82755,99.81473 1115,99.02241,211.03952,71.19718,218.9935,99.70855 1115,130.56346,305.9899,54.180954,131.27078,0.5200467 1115,68.8778,219.51978,34.469894,68.13968,0.22124085 1115,455.78094,187.69777,23.377289,52.652023,0.09605359 1115,530.7063,206.06342,33.756897,77.61957,0.073942766 1115,583.625,398.35355,55.521667,101.81137,0.06503025 1115,135.17586,231.27077,35.970016,120.70479,0.025010519 1115,77.713005,263.72247,36.587845,127.372406,0.024188433 1115,547.0999,230.60973,43.83551,98.64726,0.003405647 1115,612.1151,452.54935,27.031555,58.59732,0.00038018113 1115,122.14893,299.67502,23.16584,78.55347,0.00037273997 1115,367.38083,195.16208,53.184906,100.696014,0.00027054333 1115,1.8734318,270.57968,33.62244,173.21594,3.727119e-05 1115,324.60245,155.64215,146.7793,228.61649,1.6384549e-05 1115,607.2258,3.0030339,31.920837,61.29179,2.9159785e-06 1115,1.4363688,443.88657,21.789526,60.09729,1.6944508e-06 1115,3.3041847,390.2408,56.52639,103.4953,6.5442885e-07 1115,2.2094514,35.38191,34.760006,186.13362,3.8812252e-07 1115,1.6094711,15.456149,36.77359,79.46572,9.759273e-08 1115,430.5099,6.116071,48.049652,59.189495,9.129712e-10 1116,378.06702,250.9537,25.895142,52.09726,99.94879 1116,187.60107,205.1752,32.76065,79.89383,0.06802903 1116,552.2044,227.09668,32.94818,83.095825,0.053375006 1116,537.0529,252.79417,72.46222,214.33223,0.006078672 1116,95.75842,283.9704,23.936928,51.4906,0.0053146994 1116,173.29855,171.25626,26.155838,49.501663,0.0048852284 1116,3.6362712,166.93724,46.075787,200.85445,0.0020543982 1116,543.8176,365.09454,41.748596,109.45108,0.0015668856 1116,611.64703,253.90378,27.499634,144.02362,0.00089938013 1116,1.4278337,279.83286,18.70034,83.00177,0.0004467062 1116,366.2567,218.60236,54.69098,103.21365,0.000408586 1116,484.02628,202.07722,34.775787,76.478134,0.00025231997 1116,463.47375,194.92212,41.911774,113.29944,0.0002479546 1116,1.5945158,213.93803,19.536053,92.030045,0.00017561947 1116,607.7061,439.52615,31.440552,65.20709,0.00017174345 1116,1.8112916,143.8978,19.061121,89.049545,0.00012288199 1116,611.60223,332.59158,27.544434,141.89374,0.000109934525 1116,580.8281,384.715,56.047302,113.5285,8.6779815e-05 1116,274.58374,204.72472,42.24533,84.45323,8.617989e-05 1116,612.21576,84.372826,26.930908,129.31946,8.176252e-05 1116,1.3096305,330.4313,18.392002,77.87735,6.473466e-05 1116,335.10327,181.64545,130.92636,228.17645,3.2300715e-05 1116,2.041429,286.87216,32.780697,181.73212,2.8855382e-05 1116,0.58909184,6.0386233,32.778275,66.490326,8.183587e-06 1116,1.0386068,375.01862,19.625849,123.35925,6.9585126e-06 1116,264.13678,174.67625,81.38922,160.24864,6.902347e-06 1116,584.7957,24.74291,53.774902,221.44974,2.7146957e-06 1116,1.8256893,39.16088,29.68331,184.58224,2.3314549e-06 1116,5.651833,346.9776,78.6975,139.61777,1.7504807e-06 1116,596.40466,10.607859,42.536804,75.495605,1.1107649e-06 1116,3.3439682,427.75272,52.934353,71.392914,4.2177737e-07 1116,66.33207,6.831027,46.62481,55.629444,3.177704e-08 1116,99.590614,5.135508,47.04084,59.805172,4.3057264e-09 1116,128.71954,3.52958,42.083237,62.86312,2.1099338e-09 1116,565.4207,10.299349,41.35309,51.506004,8.030274e-11 1116,442.2892,3.9792156,48.707306,56.52951,1.2873202e-11 1116,522.7768,2.3390985,46.23285,66.43382,1.2595228e-11 1116,163.28654,1.9060254,46.284836,55.978695,2.4207734e-12 1116,499.3387,2.0289552,43.022552,62.43905,2.526546e-13 1117,385.1116,260.44287,24.646698,53.25641,99.96162 1117,465.1776,206.7519,30.890839,67.60234,0.0669701 1117,625.3817,439.60907,13.764954,45.60782,0.047810692 1117,170.33548,200.85492,44.00148,101.63431,0.036870647 1117,588.70154,227.61696,28.854858,57.016953,0.028435063 1117,622.18494,224.87897,16.961731,53.976105,0.007811334 1117,168.11162,159.24619,25.767456,64.384186,0.0023456279 1117,453.46387,229.38847,34.055054,71.04115,0.0023223946 1117,611.2193,210.87543,27.927368,149.78665,0.0013815351 1117,503.50403,212.11906,24.006165,51.000046,0.0011275337 1117,614.56573,395.43826,24.580933,107.899445,0.0010702356 1117,226.11427,211.2744,25.43126,55.42656,0.0009058299 1117,1.5484091,207.6217,19.396742,140.6521,0.0007548334 1117,373.78073,229.45128,52.59854,98.41054,0.0007449673 1117,67.585434,237.35818,43.193695,123.10733,0.0006417544 1117,184.71408,225.98643,41.332703,159.43236,0.00040509296 1117,617.5709,303.97443,21.575745,86.49213,0.00036467193 1117,487.73257,219.27954,32.84903,74.92685,0.0003196905 1117,584.6532,69.667694,53.08435,275.59424,0.00025925512 1117,589.73395,256.49615,47.56189,216.68604,0.00022181578 1117,358.2093,201.83722,90.04886,202.5553,0.00010426662 1117,609.65173,120.23896,29.494934,154.37372,9.8517055e-05 1117,1.1451416,293.60526,20.363365,143.49652,6.578563e-05 1117,1.239563,151.2314,18.257175,81.90973,6.551622e-05 1117,4.3825426,176.71643,56.658398,231.79715,5.6773588e-05 1117,1.7810571,81.90263,34.356647,221.48573,3.600077e-05 1117,609.61664,7.6665497,29.326416,76.64117,3.2465385e-05 1117,259.8741,192.47646,60.9682,103.44835,2.462799e-05 1117,611.6762,35.157715,27.470459,137.07037,1.3547289e-05 1117,3.4675016,323.7171,57.68522,159.6348,7.4336945e-06 1117,1.2614421,399.31314,20.390877,99.54813,4.798722e-06 1117,232.36339,155.09058,135.66566,217.94724,3.6479396e-06 1117,0.9558724,46.034306,22.637766,136.354,2.8078227e-06 1117,555.56573,421.27548,75.39307,80.29483,2.3963185e-06 1117,0.68628216,10.769669,11.962973,77.975204,7.0211036e-07 1117,2.2675245,14.678464,58.9137,121.62346,5.4350795e-07 1117,39.74143,6.4448113,46.189083,53.455532,3.897216e-08 1117,580.1175,7.69139,42.608154,55.591618,8.7468627e-10 1117,120.66163,5.5174284,44.959755,61.680683,6.797371e-10 1117,550.5879,4.168265,43.757202,61.87578,3.1242553e-10 1117,442.34793,3.4940267,68.98041,56.081314,9.6253255e-11 1117,149.0458,4.306556,45.696808,58.185894,1.5089905e-11 1117,487.1656,0.9395671,45.007263,62.524353,1.3543102e-11 1117,518.66003,2.008558,45.345703,64.36548,1.1500066e-11 1117,176.25203,0.65892905,43.904022,55.47439,4.563445e-13 1118,386.05145,234.7249,26.657562,54.063766,99.96742 1118,498.77255,195.84239,28.19931,64.74611,0.26453462 1118,468.6421,200.59618,36.570374,79.95201,0.14805299 1118,497.10413,92.03239,25.919678,52.292824,0.14205451 1118,620.6401,202.47481,18.506592,58.09221,0.008814585 1118,514.86194,199.3268,23.34729,49.201157,0.008587617 1118,481.96307,173.2644,54.743225,123.628815,0.004006358 1118,556.2658,176.46263,25.878418,64.45511,0.0037195005 1118,10.770911,253.62875,29.646923,55.99652,0.0017284832 1118,608.9808,147.7592,30.066406,137.61897,0.0012491886 1118,1.5528817,266.91788,19.561943,85.4137,0.0010090692 1118,374.047,205.79091,52.970093,97.65355,0.00077770103 1118,4.2318606,222.52626,56.751877,124.809525,0.00056656223 1118,473.0686,159.97287,36.77426,80.800674,0.0003051757 1118,144.59297,123.58387,34.61862,75.08773,0.00026856113 1118,610.2406,221.74005,28.906067,161.13077,0.0002133206 1118,617.48834,61.432854,21.658325,74.79667,0.00013431386 1118,485.88635,242.99576,21.461884,47.790497,0.00013321523 1118,613.0279,345.75583,26.118774,127.89438,0.00010122527 1118,536.15015,148.61221,42.827515,132.72247,9.567533e-05 1118,2.414629,265.54855,36.303375,189.02426,9.068428e-05 1118,428.4254,178.09901,111.92383,246.61546,7.3639385e-05 1118,1.1141089,325.54364,19.425722,93.52612,7.016621e-05 1118,608.5234,439.81412,30.623291,67.62622,5.7490655e-05 1118,1.7855086,173.15955,19.133856,140.03427,5.11776e-05 1118,359.0019,170.74638,87.64636,206.49205,4.4703163e-05 1118,608.0264,5.8348455,30.865051,55.804646,3.502086e-05 1118,252.99892,162.62173,60.735092,105.545746,3.273702e-05 1118,163.2039,246.1401,41.709656,149.91434,2.410631e-05 1118,1.1413884,379.12344,18.8041,118.37756,2.3550761e-05 1118,388.71445,173.40512,23.747925,56.225555,1.733824e-05 1118,5.016465,343.33887,77.88278,145.0603,8.652168e-06 1118,585.9564,14.979259,52.898804,243.02104,7.401043e-06 1118,131.62943,212.4696,112.38957,235.5151,5.3387284e-06 1118,226.73482,124.835106,134.36604,215.86542,2.797383e-06 1118,2.1066227,99.46987,29.200727,151.2732,1.7898878e-06 1118,175.87277,430.38022,71.17508,67.46335,1.4625898e-06 1118,3.54862,431.29874,54.00232,67.10483,1.3725353e-06 1118,32.028152,448.7141,45.901794,55.015533,1.2895424e-06 1118,113.685196,430.2992,78.389084,69.616455,1.015207e-06 1118,64.858284,430.4242,73.585625,71.9704,8.9100746e-07 1118,1.4300781,10.783184,16.946045,70.78589,6.6688585e-07 1118,2.8357277,15.474531,56.195778,117.17961,2.0182054e-07 1118,82.14174,1.7057097,62.88391,151.82545,1.1929133e-07 1118,68.59469,3.437759,43.051308,53.8037,8.341894e-09 1118,504.46225,7.5285516,44.139313,54.77887,3.7100814e-10 1118,128.96056,5.458848,44.497375,54.268024,3.453068e-10 1118,531.3105,10.71001,42.75244,53.66058,1.9847995e-10 1118,469.98996,6.8897038,42.864655,49.47455,1.9363716e-10 1119,377.6994,243.01363,27.293,58.77272,99.95941 1119,501.1633,292.80447,39.542694,105.26511,0.010546557 1119,9.931804,368.71155,90.466484,129.77112,0.007833489 1119,472.0852,210.54597,32.85016,87.44035,0.0068054483 1119,586.115,175.66455,26.028564,69.09735,0.005365583 1119,107.75776,236.48769,24.378761,55.069443,0.002773974 1119,497.42496,189.44885,19.042877,46.647766,0.001669612 1119,586.6956,318.5296,51.357727,183.8122,0.0016317121 1119,510.9361,319.39914,22.47461,53.95398,0.0014690513 1119,621.43066,295.99753,17.716003,57.095673,0.0005159802 1119,585.5851,136.02357,51.26361,242.62852,0.0004319867 1119,617.43243,203.05174,21.714233,82.72264,0.00042495778 1119,609.80853,250.65842,29.338135,151.93832,0.00032668273 1119,446.20813,221.79724,119.7829,235.9469,0.00031962377 1119,68.8976,344.58673,41.876274,136.12833,0.0002365729 1119,39.811787,290.19818,116.68785,196.81943,0.00020667033 1119,610.7622,95.399734,28.38446,140.03227,0.00015833644 1119,1.5648942,241.88298,18.771496,76.04375,0.00015210579 1119,2.3939404,332.9162,32.0949,152.33679,0.000103719074 1119,362.74725,190.3936,67.84985,151.5074,8.532774e-05 1119,45.82252,267.13403,45.57516,160.95953,7.6750504e-05 1119,2.2450936,185.6939,31.41238,183.33498,4.8988124e-05 1119,583.89734,442.50345,44.650208,67.26416,4.806073e-05 1119,235.51422,180.64551,58.269836,101.317505,3.5676185e-05 1119,615.70624,393.7974,23.44043,108.0405,3.4394496e-05 1119,1.4809538,288.6672,18.385887,126.204346,2.9624076e-05 1119,2.3813348,449.6686,35.31264,52.83499,2.9405766e-05 1119,19.24343,431.45993,47.645927,70.62674,1.5226268e-05 1119,607.29395,5.7428093,31.852722,57.19895,1.3227888e-05 1119,585.7423,16.653711,52.505127,96.81754,1.2645141e-05 1119,66.74026,399.9682,22.8321,61.86853,1.24271155e-05 1119,1.487177,126.1027,19.838263,134.79279,6.2225154e-06 1119,204.1726,146.19972,137.81366,213.60866,5.2064106e-06 1119,3.5405731,80.80859,59.47996,252.22116,3.4010188e-06 1119,14.2853,2.6028516,116.414314,299.6649,1.4929195e-06 1119,1.4392302,5.62542,41.15662,90.19741,5.1117087e-07 1119,1.9287143,51.007767,29.403112,161.7123,2.8933175e-07 1119,31.026602,1.646657,48.033157,61.93904,3.7522295e-08 1119,503.43164,10.921509,44.385742,49.52546,2.5900567e-08 1119,58.410263,6.834411,46.4012,56.6208,8.771392e-09 1119,87.04809,6.353768,44.820854,53.957054,3.6041554e-09 1119,443.1647,4.7051954,43.438324,54.74735,5.3972204e-10 1120,373.4764,213.11322,28.01361,65.27725,99.95676 1120,234.23183,187.91188,23.346146,46.942184,99.68957 1120,501.76752,167.8291,35.71112,100.79239,0.423706 1120,3.664484,191.44502,35.712677,91.53764,0.3433139 1120,572.08325,263.02307,64.61731,204.36945,0.014611884 1120,513.11017,166.35136,19.7276,47.190094,0.009340805 1120,87.42696,174.32565,46.60427,144.36789,0.0022297965 1120,55.853424,70.526825,41.82099,93.7735,0.0018329812 1120,610.35846,190.27112,28.452759,136.41528,0.0013144822 1120,518.253,134.91557,31.890015,72.81334,0.0012378988 1120,576.0123,270.7689,33.960266,58.77713,0.00118624 1120,615.2739,278.71204,23.872742,90.17148,0.0010287511 1120,3.0643246,67.82656,55.87754,243.0028,0.0007050857 1120,2.0018172,113.53425,19.811523,92.56704,0.00053652155 1120,586.062,73.889366,52.15094,282.66013,0.00042095204 1120,609.07886,3.5964193,30.06781,129.75578,0.00041763755 1120,185.1633,197.31673,20.068695,48.343903,0.0004144602 1120,607.0534,429.86475,32.09326,77.4671,0.00018865344 1120,356.54523,160.78233,67.68118,153.65999,0.00016625036 1120,214.9741,147.32697,60.364487,111.90222,6.8640045e-05 1120,616.29236,145.78386,22.85431,86.415726,6.1646075e-05 1120,373.1168,139.62595,24.883514,54.78354,3.3168024e-05 1120,2.1958504,291.38232,30.990154,182.41772,3.1446463e-05 1120,1.6115984,233.7524,15.9829645,157.63484,2.3828597e-05 1120,1.0570483,440.0439,22.165194,64.035675,8.60981e-06 1120,67.97215,181.27101,112.30165,212.54442,8.542661e-06 1120,2.9067237,421.91235,52.812073,78.159485,3.184558e-06 1120,500.09808,253.98686,78.961365,199.78087,3.0642188e-06 1120,1.3790414,11.101295,57.53378,136.96921,1.8868132e-06 1120,188.61615,108.93279,138.49838,208.46463,6.817507e-07 1120,530.83154,8.157676,43.413635,54.979195,3.4958836e-07 1120,104.63263,3.1869075,46.416702,64.15594,1.8886305e-07 1120,581.05597,7.609089,41.76245,50.45241,5.841338e-08 1120,74.67035,3.8709474,47.06279,61.409615,5.676823e-08 1120,502.66016,5.066322,46.456726,61.859184,2.748936e-08 1120,478.71808,4.7643538,44.717224,47.68526,1.6117744e-08 1120,12.024319,3.8880339,43.833397,58.262676,1.2192258e-08 1120,444.1131,4.691533,43.230347,59.569195,2.6315694e-10 1121,384.43143,234.70392,33.590424,73.93695,99.96934 1121,554.6148,178.52321,43.804993,158.61497,0.01004947 1121,501.17508,247.77016,20.144318,49.155594,0.007685445 1121,0.97632736,47.588703,18.326157,73.07027,0.0056870044 1121,1.1607308,40.846382,42.0121,126.79243,0.0042555975 1121,2.904896,140.95636,43.551846,177.6315,0.0031634162 1121,583.5066,95.06911,52.704712,232.25352,0.0020721322 1121,541.9385,197.28546,32.611877,99.635925,0.0009946366 1121,12.144434,123.14884,22.243006,51.272697,0.0009437174 1121,219.3568,196.48068,41.12468,83.42874,0.00065501005 1121,2.6542854,218.06375,56.47392,223.69125,0.00044361386 1121,617.70953,275.89548,21.437134,81.456116,0.00035774685 1121,615.2407,175.55171,23.905945,91.68526,0.00028134306 1121,607.9921,434.4064,31.154541,68.80716,0.00024983523 1121,620.98175,26.886036,18.164917,57.443806,0.00024366527 1121,368.65903,202.08618,66.20334,136.62311,0.00020081286 1121,610.88684,84.84303,28.259827,136.72359,0.00019583378 1121,501.12003,220.9961,19.110748,46.64804,0.00018305074 1121,1.7402654,115.580956,20.216856,98.14593,9.309332e-05 1121,0.712487,372.7138,19.66017,126.56387,8.7698136e-05 1121,608.4322,3.6725588,30.714478,125.08992,7.5114716e-05 1121,1.5784351,276.9848,19.791082,77.921295,6.217479e-05 1121,546.6983,91.394516,62.08893,171.2285,6.172255e-05 1121,601.3195,219.0015,36.81952,196.20538,3.138381e-05 1121,568.92725,354.16492,69.22589,142.29541,1.7312597e-05 1121,2.3846664,417.38083,52.49256,79.50461,1.1384953e-05 1121,1.1858659,17.390522,79.724335,262.3632,1.0011605e-05 1121,203.02342,152.72388,89.41902,188.97693,8.967774e-06 1121,590.67017,3.415298,43.845947,50.33529,5.738708e-06 1121,550.34186,3.655752,63.865234,57.22347,3.9232248e-07 1121,52.8881,5.7422037,43.56521,54.621704,1.6741917e-07 1121,1.2377262,6.1649804,31.691114,69.75958,4.8638384e-08 1121,530.75275,5.9396467,45.599854,52.08898,1.8567691e-08 1121,79.76855,5.6790156,43.799767,55.24648,1.1656791e-08 1121,129.72552,6.3335466,43.461014,49.976025,6.70878e-10 1121,502.8696,6.0805764,45.775604,56.95187,4.4793197e-10 1121,470.87888,4.4364924,42.84854,55.83159,6.399948e-11 1121,154.9912,4.3871226,44.598145,51.794884,2.9518957e-12 1122,415.0723,242.63902,37.55902,89.564255,99.95998 1122,220.4239,218.81511,22.900742,47.97072,99.78142 1122,50.917633,209.29584,27.95536,56.66684,8.500711 1122,602.7447,197.07558,36.38794,179.83006,0.036077417 1122,439.46964,250.7591,25.811584,62.397827,0.026145289 1122,399.1464,224.84729,35.07794,77.99338,0.019942999 1122,611.8529,154.21362,27.210999,94.41919,0.017312862 1122,0.73856694,278.36005,22.139385,137.1528,0.0013237863 1122,624.2555,319.74597,14.891174,51.3172,0.0008421185 1122,603.78937,0.0,35.3573,67.34898,0.0007081816 1122,3.7389112,118.02507,59.26281,265.31207,0.0006542159 1122,616.31366,241.81157,22.833008,79.42561,0.0005026609 1122,388.8884,190.80344,87.92459,175.80011,0.00033985043 1122,573.76996,68.06275,64.91559,287.64035,0.00027035503 1122,617.7798,88.20943,21.366882,69.57059,0.00018368027 1122,611.3227,318.15283,27.823975,156.46362,0.00010968173 1122,605.9676,31.056309,33.179077,178.79091,0.000101095226 1122,100.942314,92.226425,43.04345,115.73851,6.704271e-05 1122,202.21266,188.21971,57.949905,98.037674,6.238641e-05 1122,608.5963,439.25336,30.550354,67.89624,5.70046e-05 1122,1.1135498,316.81778,59.407078,157.74207,4.0114563e-05 1122,1.8870842,142.6617,19.62128,142.73515,2.2973376e-05 1122,0.68000245,373.25833,18.764555,127.09271,1.0503404e-05 1122,173.40018,144.5915,145.77771,212.07884,1.0380759e-05 1122,77.17758,88.430214,43.526253,128.5892,7.69525e-06 1122,2.1936736,41.512997,28.69649,166.53825,2.9188552e-06 1122,3.03396,17.720247,53.666733,109.83005,1.5529388e-06 1122,1.3730485,17.294254,14.589009,69.35951,6.801661e-07 1122,47.305397,78.18234,43.43949,149.48326,4.9036527e-07 1122,89.06276,3.353685,43.20665,57.520626,3.1007747e-07 1122,1.7909554,10.395918,38.515068,48.384315,2.8042462e-07 1122,60.21161,5.146019,45.663025,55.34789,5.9567984e-08 1122,572.4238,4.843286,46.681152,53.17785,3.941223e-08 1122,114.655266,5.4916587,43.821327,48.502815,9.1369934e-10 1122,516.1368,3.9652588,43.922424,50.855705,2.2736923e-10 1122,489.73154,2.9343197,46.740326,52.682556,2.2156051e-11 1123,473.55762,253.69936,50.387573,119.703964,99.95316 1123,217.50368,218.15451,25.993622,58.883636,99.67957 1123,521.32153,270.75528,38.900757,73.39282,0.14269732 1123,98.50059,213.7563,33.58544,74.79735,0.04390836 1123,502.06088,247.58037,39.470306,106.83287,0.037154175 1123,620.5149,118.71121,18.631775,79.2,0.013805305 1123,609.3203,62.50879,29.826355,169.29648,0.006151694 1123,610.29614,187.41937,28.530823,136.85431,0.0050842436 1123,438.50314,205.83755,109.225494,199.76825,0.0041867997 1123,616.909,55.65927,22.23767,72.69066,0.0018535674 1123,233.53967,180.85732,44.040314,89.47423,0.0016837259 1123,203.08928,192.53227,56.53093,97.499954,0.00063862605 1123,603.4714,243.39412,35.675293,177.94563,0.00018687641 1123,608.6348,440.9139,30.51184,66.881195,6.301391e-05 1123,206.40225,148.52266,105.52164,180.23882,5.5331635e-05 1123,587.99854,15.01612,51.08191,118.26354,3.6781465e-05 1123,4.4503727,151.37555,58.037697,232.21219,2.1063146e-05 1123,1.4031633,249.10123,18.882734,137.97784,1.7876915e-05 1123,571.18774,351.49588,67.95892,141.97815,1.4574512e-05 1123,1.0967522,375.00323,18.576187,121.32782,9.62388e-06 1123,1.1545036,144.06946,18.719978,139.8811,8.70826e-06 1123,1.8502548,302.03424,31.064365,167.11066,7.065412e-06 1123,1.6454582,51.41361,17.667547,120.93895,2.9056075e-06 1123,5.398138,346.23666,77.85659,139.66266,2.1534938e-06 1123,3.005,22.512716,54.58017,98.01959,1.2894639e-06 1123,1.339301,18.860762,15.052024,69.33471,4.7047908e-07 1123,535.1581,3.1469028,45.46454,49.638702,5.581671e-09 1123,91.19814,4.1468167,46.32215,53.952717,2.7198692e-09 1123,68.17403,0.3394987,45.227432,63.499565,1.6956501e-10 1123,163.03891,1.7627572,45.344482,62.773056,5.822677e-14 1124,208.35329,218.07646,31.626465,78.29146,99.950935 1124,264.3222,209.3037,22.165588,46.390366,99.94565 1124,59.391056,232.51064,36.48267,82.45329,0.12148918 1124,188.84178,212.18903,32.432495,70.57138,0.0046797357 1124,47.19886,251.60822,27.145638,63.441956,0.003671782 1124,524.6462,270.49954,34.579773,72.2793,0.0025482827 1124,622.6564,172.1587,16.490295,55.887985,0.0017580667 1124,79.725494,231.94641,33.308456,77.931915,0.0017537363 1124,19.368954,187.99704,46.567043,146.90146,0.0017121511 1124,99.03896,236.73329,24.365166,56.52495,0.00076188036 1124,485.37537,121.86153,34.75476,84.1978,0.00068225706 1124,610.3932,145.86069,28.753479,142.46307,0.000535224 1124,193.51921,183.49622,65.486435,139.28244,0.00034476834 1124,1.5900098,214.38759,19.341097,133.88023,0.00026070356 1124,612.03613,355.5634,27.110535,144.79688,0.00013514026 1124,241.04411,172.60992,53.585434,109.17868,0.00013294454 1124,8.505482,166.0868,107.30882,217.74104,0.0001228712 1124,610.37384,42.76777,28.772827,159.52151,0.00011082434 1124,616.0178,21.221807,23.128845,86.181656,7.9190584e-05 1124,587.832,55.5306,50.346985,267.1084,6.2638355e-05 1124,402.29254,225.91339,23.068909,57.98178,3.9560797e-05 1124,1.8282464,123.11017,29.490047,169.7414,3.0774096e-05 1124,612.2245,262.34714,26.92218,132.13806,2.4915636e-05 1124,326.65027,156.49341,79.11215,168.04837,2.0545416e-05 1124,1.13618,299.7791,19.833622,147.17099,1.7571854e-05 1124,3.169987,289.60767,57.667305,191.97006,6.3873545e-06 1124,212.01993,127.370964,141.06323,204.18317,4.4865114e-06 1124,295.22437,444.32812,41.916626,51.90216,3.9073725e-06 1124,1.0894084,422.39905,16.469082,78.597015,3.2826836e-06 1124,1.3508211,45.04696,18.946384,128.86615,1.3196649e-06 1124,3.4873242,429.72015,53.508373,69.34558,5.003135e-07 1124,1.0210686,15.824492,12.363483,77.45723,4.770229e-07 1124,2.29152,8.563516,60.032063,123.774895,2.1936681e-07 1124,582.0889,3.2791066,47.820007,47.57697,8.439521e-08 1124,93.62156,5.9916716,41.460976,46.893955,6.3833996e-09 1124,29.517221,4.1892743,46.083824,58.870075,1.4805367e-09 1124,545.33826,4.118879,45.07141,45.77119,1.3769509e-10 1125,258.54523,213.49945,23.463776,50.967987,99.981186 1125,147.33281,221.55862,51.759003,115.786285,99.951256 1125,243.09485,213.30574,22.549164,50.77794,99.94304 1125,364.8218,215.82129,20.096771,48.52475,99.49879 1125,577.58295,215.14989,32.371765,65.080185,2.0890706 1125,132.48288,228.8262,35.68959,96.51279,0.015874455 1125,568.6855,222.1195,24.560791,45.552673,0.0032216783 1125,2.8983676,250.72876,36.53855,107.29938,0.0028108933 1125,203.69841,228.35951,25.587814,49.86229,0.002226316 1125,620.24835,24.014889,18.898315,54.97192,0.0013536002 1125,3.5361247,104.09839,57.872704,265.52573,0.0012430735 1125,551.66254,227.52196,26.81659,52.818954,0.0011835247 1125,440.27325,223.06548,43.24362,135.18379,0.00070914667 1125,603.274,202.43211,34.786987,146.64662,0.00056791736 1125,1.4560019,174.37274,20.945324,157.08295,0.00040871228 1125,599.86414,64.13777,38.878296,218.58492,0.00028495764 1125,105.72673,165.1074,123.42827,233.14265,0.0002557904 1125,1.0274537,115.51313,20.08595,103.74593,0.00010020303 1125,611.86725,367.45355,27.279419,132.30688,9.5630734e-05 1125,343.6953,182.9497,58.81424,101.80008,8.619214e-05 1125,609.8899,9.639857,29.256775,157.35057,5.024703e-05 1125,234.0068,151.65205,88.55588,189.84636,3.5816494e-05 1125,1.1347127,303.8198,20.08633,144.34073,2.4306502e-05 1125,10.784432,46.605976,44.033974,125.94728,1.2084169e-05 1125,580.2773,6.0362797,57.561768,63.186287,1.0385076e-05 1125,1.1327091,389.53516,18.718916,110.338135,4.5694533e-06 1125,318.63205,139.21661,139.27493,207.79819,4.2498023e-06 1125,5.277757,348.77036,80.2211,141.97662,3.1026048e-06 1125,1.5497957,17.866486,20.101862,132.36636,3.272998e-07 1125,1.0146973,5.842832,39.410206,59.216366,4.029004e-08 1125,88.32993,5.046807,43.217827,51.071667,1.74588e-09 1125,113.664375,5.8110433,46.875847,51.541862,7.4531165e-10 1125,150.34576,4.4011197,42.604874,54.777008,3.668712e-10 1125,188.78452,0.0,45.838165,55.790157,9.500303e-13 1126,238.65448,213.70102,23.767181,62.62094,99.94211 1126,218.30441,207.50504,24.469421,68.501434,99.93293 1126,371.4884,220.19626,24.102753,53.700104,99.2913 1126,0.0,221.07774,48.049194,182.5933,82.61096 1126,1.4742652,214.86852,21.322784,89.37828,0.110070154 1126,16.64951,268.03174,24.544846,52.336304,0.107053176 1126,17.902462,294.76935,24.044895,65.11948,0.042796783 1126,604.1828,102.89737,34.963867,88.841385,0.0060957675 1126,27.67784,232.53651,42.578224,161.63365,0.005365583 1126,1.4484367,308.79163,22.370468,106.4801,0.002380185 1126,169.70096,229.06566,26.213104,56.55098,0.0015438738 1126,616.45734,218.94513,22.689331,90.622314,0.0009416136 1126,538.41376,289.88052,93.002014,184.38126,0.00069519924 1126,200.3462,170.23238,69.4348,146.45097,0.00020245388 1126,600.11926,170.9911,38.430603,184.9405,0.00019027022 1126,475.39386,209.21039,77.862,173.09344,0.0001863244 1126,611.7392,368.45078,27.40747,133.70584,0.00014430757 1126,614.39514,11.313868,24.751526,89.139824,0.00013170544 1126,581.9323,0.0,57.214355,271.77948,0.00011046884 1126,175.32303,112.75274,44.917755,166.09479,6.1618215e-05 1126,353.23846,170.3656,71.20688,175.56778,3.615253e-05 1126,3.389346,318.62726,79.71859,170.64203,8.485207e-06 1126,1.3220874,353.8623,29.075182,143.18353,7.359769e-06 1126,1.28816,442.61755,21.6073,59.83841,5.198254e-06 1126,0.8911426,0.0,64.09729,321.78317,1.9210536e-06 1126,1.5056983,84.199196,19.041391,171.26776,1.6432707e-06 1126,1.0953158,17.16892,20.361406,124.20066,1.567631e-06 1126,95.99418,10.587624,45.549065,52.678246,9.405401e-08 1126,586.6876,2.8094563,44.236694,48.59211,6.23766e-08 1126,141.11075,2.0679395,53.670944,59.77438,3.3097047e-10 1127,208.82185,211.8054,29.590576,83.15663,99.94618 1127,184.24232,203.29678,32.14691,95.90848,99.92751 1127,390.74252,217.92854,27.13855,67.021774,99.90745 1127,205.18341,209.1995,19.554169,49.24652,1.1660652 1127,480.95386,207.03333,28.413025,52.814453,0.663926 1127,106.00934,246.58284,37.828247,75.590744,0.0035573994 1127,1.9631625,232.77745,20.908142,50.608658,0.0016227585 1127,618.1227,202.4886,21.023987,77.64891,0.00070972845 1127,616.3745,296.3414,22.772156,89.532196,0.000471054 1127,161.68047,168.12007,87.491516,170.66234,0.00039508418 1127,585.2057,129.74023,51.558777,212.28845,0.00024034605 1127,611.9591,118.60167,27.187561,138.10374,0.00023820426 1127,617.7019,252.10191,21.444763,81.86806,0.00019484885 1127,1.9545094,177.55219,29.695084,136.71805,0.00014949134 1127,600.7002,271.76648,38.446472,198.91422,0.00012281239 1127,608.3763,440.33167,30.770386,66.5885,0.00011763406 1127,373.6569,184.98676,69.258545,144.35999,7.517261e-05 1127,4.5489893,201.30443,57.122784,227.38048,7.477579e-05 1127,1.1940601,245.89037,18.394857,148.5674,1.8546692e-05 1127,1.2346542,87.94242,19.08265,172.5538,1.8521629e-05 1127,608.0016,0.0,31.14508,132.22986,9.804545e-06 1127,4.4711866,66.935135,59.2291,239.42659,9.573314e-06 1127,292.463,162.39433,83.32724,146.42284,8.765652e-06 1127,0.9798926,421.5048,15.252859,80.12204,7.4303775e-06 1127,0.9954232,329.53867,19.246174,138.52899,5.4165575e-06 1127,151.76424,103.7224,43.520782,174.61296,5.1630177e-06 1127,5.9167027,357.17914,79.15894,131.9235,2.3040993e-06 1127,1.6619768,25.509903,18.48397,100.59842,2.0013474e-06 1127,2.9665267,431.47433,46.012024,68.49057,1.2926946e-06 1127,3.5692027,25.234241,53.9316,93.16678,1.008966e-06 1127,1.729917,12.703527,29.944798,52.967506,9.7984596e-08 1127,413.62378,2.1729345,43.351288,50.153557,8.806499e-08 1127,456.96002,5.1222854,38.783325,48.45875,6.713088e-08 1127,60.97713,5.457023,45.96806,52.551083,4.5240136e-09 1127,386.37143,3.8117824,44.568024,49.249744,1.4406101e-09 1127,93.27996,3.9745378,43.386696,51.406303,2.6758776e-10 1127,363.41205,3.5528743,41.09378,55.18685,9.531854e-12 1128,407.66623,221.08928,40.11316,92.35582,99.95162 1128,86.34181,211.49405,57.90271,134.43518,99.949715 1128,130.36905,219.42383,46.927246,127.75247,99.928314 1128,156.71155,214.9887,31.974411,98.80217,4.811388 1128,69.05498,211.80865,35.372322,132.34985,0.065975755 1128,171.94386,207.24695,22.770325,48.0511,0.028760001 1128,46.775158,156.29521,144.5283,249.72511,0.0027349307 1128,615.3515,81.706856,23.795166,81.3807,0.0017615957 1128,110.77692,227.87654,28.33873,74.6147,0.0016307946 1128,598.2968,36.15438,40.0636,200.44168,0.0011923499 1128,2.3369093,123.437454,33.59619,192.07817,0.0008703843 1128,382.98633,185.26555,89.29349,161.64955,0.0003160582 1128,609.3239,2.2201726,29.822754,101.36204,0.00013229798 1128,610.14374,161.73436,29.00293,135.59904,9.994174e-05 1128,1.3029143,61.60346,21.420837,171.19054,5.274548e-05 1128,609.42,441.63052,29.726685,64.31485,4.4773136e-05 1128,603.09467,320.36203,36.052002,168.8281,3.913616e-05 1128,1.5675627,207.88849,19.344114,132.83548,3.7042417e-05 1128,612.53424,255.7745,26.612427,130.33878,2.9458311e-05 1128,293.19662,159.2199,88.22397,193.60875,1.911354e-05 1128,1.0014136,380.6787,18.761902,116.0535,1.2764996e-05 1128,1.130468,287.16376,19.255186,140.23907,1.0195717e-05 1128,3.647318,260.54376,56.605957,205.73746,9.112992e-06 1128,526.8461,5.2635255,41.036682,49.672817,2.2133427e-06 1128,1.8381641,16.659662,54.097656,120.01618,9.205474e-07 1128,552.23175,4.962318,47.020325,48.587467,1.7830722e-07 1128,399.40393,9.269305,45.612396,50.29862,5.824517e-08 1128,373.5572,6.108291,46.224487,59.188065,7.579375e-09 1128,1.2622689,6.122334,31.972569,68.44624,1.943043e-09 1128,18.009697,5.7617726,43.938274,49.40358,1.0815586e-10 1128,153.99715,5.26764,46.605515,57.862923,3.7469385e-11 1128,130.94221,1.202793,42.910675,62.376884,6.9244658e-12 1129,469.59338,223.79126,49.71228,136.38925,99.96023 1129,313.72592,211.0868,19.973785,45.964706,99.58827 1129,134.08282,208.67912,23.269394,50.974167,3.842085 1129,449.72263,225.62198,43.76468,106.62396,0.77122694 1129,490.32657,286.3609,23.789398,72.70209,0.019647954 1129,565.84454,245.6229,25.682434,48.401306,0.0020356039 1129,608.79254,194.76407,29.544922,123.557465,0.0016386502 1129,1.815053,164.61183,33.911957,87.412,0.0006845688 1129,432.84518,159.42929,122.67825,231.06613,0.0006022084 1129,290.10336,197.18997,43.785248,80.054016,0.00034575482 1129,3.8388088,137.75734,58.926727,201.77565,0.00034438388 1129,610.7611,87.83966,28.10492,144.27785,0.00031630066 1129,573.66486,219.49399,39.661743,80.66849,0.00023089511 1129,1.5798845,193.57066,19.488491,136.95079,0.00017130129 1129,320.40692,155.715,88.28992,201.40158,7.992625e-05 1129,608.56744,439.56277,30.579224,66.665375,4.8785783e-05 1129,277.39536,168.7413,83.067505,148.20013,4.3690106e-05 1129,611.20734,19.19879,27.939331,131.76776,3.315632e-05 1129,613.0773,320.77615,26.069397,146.46161,3.138615e-05 1129,585.33264,382.73032,53.814026,112.190735,2.1110485e-05 1129,2.3955078,233.67809,30.771835,177.22478,6.9990447e-06 1129,1.3810409,443.1732,20.486317,60.32431,6.6221523e-06 1129,4.0056887,395.9389,56.841618,99.896515,2.967055e-06 1129,0.95626956,323.75513,20.50565,147.79196,1.7874044e-06 1129,1.0292847,44.524727,19.184977,154.29681,1.4517587e-06 1129,2.741748,12.360554,56.679436,108.47746,2.698819e-07 1129,0.9963436,5.4811134,21.200525,55.133133,1.8999395e-07 1129,586.17395,5.6676335,44.815735,47.23397,5.1389808e-08 1129,471.3934,7.0047235,42.661896,46.06839,1.825293e-08 1129,126.54124,5.617077,46.828026,60.63798,1.274068e-08 1129,422.4329,6.1147428,44.029053,51.603786,7.612727e-09 1129,392.90286,4.1391406,48.658905,52.254234,1.3678161e-09 1129,155.77448,6.099046,44.465836,58.095856,5.166455e-10 1129,13.531602,2.5612159,42.343464,47.243446,4.9944227e-10 1129,46.903587,5.46528,46.520325,55.45169,2.439288e-10 1129,369.5955,3.044808,45.07953,59.373684,1.3247059e-10 1129,100.80805,0.86337894,45.8619,61.873657,1.246287e-10 1129,72.83766,5.9478564,43.96302,52.434006,2.1802738e-11 1129,182.26733,0.0,45.58072,65.625786,9.848392e-12 1130,314.70114,212.13005,23.636505,54.348923,99.89949 1130,287.06183,212.04012,23.427704,51.085617,99.60781 1130,353.6605,213.8626,21.908112,52.320053,99.55389 1130,342.00534,210.3848,17.411438,47.3201,96.68134 1130,100.66588,202.01944,26.13794,60.473297,76.52019 1130,366.33136,218.43102,20.562256,45.150284,0.9612565 1130,2.3258448,167.15524,36.927776,134.04309,0.023259167 1130,621.12994,177.71677,18.016724,48.33702,0.011809857 1130,32.78624,180.86104,22.403591,53.47516,0.011305 1130,31.893568,198.42651,35.029472,80.502045,0.009910055 1130,275.2278,211.15596,21.868195,48.37709,0.005740385 1130,610.105,176.92445,28.725952,145.6491,0.005537596 1130,500.50427,216.95447,25.945984,47.25882,0.003473431 1130,615.8838,79.85547,23.262878,82.58688,0.0008611979 1130,293.17795,194.78346,63.71396,90.37346,0.00020878483 1130,602.2727,27.422716,36.15924,174.61842,0.0001907091 1130,5.7111526,148.15216,89.014786,212.36557,0.00018638873 1130,337.1058,183.61057,54.985565,109.05487,0.00015509367 1130,580.97986,209.11198,45.72821,133.23451,0.00013025945 1130,609.5578,442.40298,29.588867,63.957336,0.00011224699 1130,266.15802,161.25247,135.47281,215.63599,8.270091e-05 1130,610.9941,305.00314,28.152588,148.89114,4.511044e-05 1130,50.909336,133.31163,141.10252,242.33485,1.5496964e-05 1130,572.73206,363.00262,66.41461,127.6626,1.438596e-05 1130,1.8142041,78.78135,20.227169,164.71439,1.3023356e-05 1130,1.2394556,218.59824,18.77711,140.974,5.9444333e-06 1130,1.6090755,286.86557,30.53425,181.05753,3.8884364e-06 1130,2.716149,14.611846,58.180767,109.075645,3.5760927e-06 1130,1.9153215,425.33804,33.53978,74.91681,3.2796233e-06 1130,610.8983,7.9452767,28.248352,91.81245,2.6845735e-06 1130,1.177804,13.422116,13.497576,76.658005,9.747503e-07 1130,1.2436247,7.4364815,40.0291,54.453514,1.5789071e-07 1130,552.07355,5.391143,44.05255,54.6212,5.020674e-08 1130,362.63123,12.735358,114.85535,109.21303,6.0195675e-09 1130,441.1042,5.0554347,44.634277,52.120125,5.600943e-09 1130,64.26491,5.9613705,67.536026,49.828323,3.1257292e-09 1130,389.45667,2.0682814,39.792725,85.82619,1.3164977e-09 1130,32.10171,6.5661087,44.242474,54.485397,8.0183093e-10 1130,405.14978,4.616066,48.281372,53.45016,4.4516904e-10 1130,364.16052,1.1410971,43.596527,63.406754,2.5659148e-11 1130,161.49707,0.0,46.24063,67.42843,2.5415801e-11 1131,259.92627,211.53976,23.87024,56.16565,99.92704 1131,290.5721,214.2322,24.741669,56.64543,99.90181 1131,328.28983,213.53157,24.161285,61.802505,99.83417 1131,30.778402,197.69446,45.47403,79.45953,99.40003 1131,341.48618,215.55727,27.526123,65.353836,98.91508 1131,227.22464,213.82268,25.388626,48.138474,1.3457978 1131,357.44565,218.03479,25.575348,60.279633,0.042252116 1131,59.48118,205.21082,29.789673,63.522827,0.02425964 1131,622.5988,165.44324,16.547852,57.253906,0.008701813 1131,128.00832,233.07912,29.070877,49.100143,0.0057794107 1131,610.9629,103.5024,28.010803,137.2916,0.0029586367 1131,599.7426,150.94235,36.716125,202.94061,0.0023452295 1131,244.98907,212.44066,23.319702,51.423294,0.0015603304 1131,586.6067,246.48154,50.858276,241.89114,0.0012260735 1131,606.05054,423.17914,33.09613,83.94675,0.00047067774 1131,327.57217,181.4718,66.62213,147.81155,0.0002902351 1131,272.7483,201.727,60.638794,84.40837,0.00019678798 1131,1.7739583,131.97269,27.83526,157.61829,0.00017353935 1131,606.20575,7.70618,32.693237,53.371853,0.00015370178 1131,239.46458,192.2431,59.726944,93.88446,8.5508094e-05 1131,10.416621,136.47849,119.470345,233.59485,7.9519414e-05 1131,236.41,159.24905,139.21097,211.3942,3.7572972e-05 1131,601.0554,21.880085,38.091248,149.63077,3.7224934e-05 1131,1.3699985,219.08415,18.44799,129.22426,2.952632e-05 1131,1.0768205,338.30917,19.474937,135.5669,1.150146e-05 1131,1.3376082,442.72934,20.41199,60.48355,8.943893e-06 1131,3.8622851,219.41925,57.887012,236.11685,8.344007e-06 1131,1.396831,269.66794,28.262804,146.45837,4.921007e-06 1131,3.7439423,396.43478,57.760746,99.259186,2.871899e-06 1131,3.0572755,39.39978,57.528755,257.1322,2.8445425e-06 1131,1.2520118,37.507637,19.134583,142.51099,1.0140709e-06 1131,570.2139,5.6823506,48.323364,58.74019,4.357557e-07 1131,1.270245,16.473871,14.297728,71.17548,3.6799867e-07 1131,2.475534,11.91813,36.923878,45.360676,5.189214e-08 1131,547.3037,3.4699805,45.012207,50.954533,1.957249e-08 1131,490.54788,5.300204,43.737274,46.751865,8.018069e-09 1131,72.29532,4.9455647,44.23178,51.706623,7.703287e-09 1131,455.0061,4.549839,43.425873,50.68474,4.9574016e-09 1131,45.666412,5.9939294,45.12735,53.317368,3.5735304e-09 1131,364.94476,8.237666,81.87421,71.31971,7.944416e-10 1131,357.656,1.3624333,45.887085,53.349064,2.6438352e-10 1131,170.64061,1.1851562,46.16275,58.662148,1.0439302e-11 1132,257.68445,212.18965,27.10205,63.803726,99.897316 1132,292.1734,220.51941,24.843994,66.14227,99.87751 1132,230.9323,213.36687,24.697403,59.973404,99.8406 1132,312.9372,211.25946,27.078094,75.126434,96.02242 1132,329.35287,217.85014,33.559875,75.713974,0.5340924 1132,31.526016,260.2954,27.131008,52.543,0.07085462 1132,620.9012,167.96555,18.245483,59.660004,0.0052007833 1132,3.03042,217.66637,29.092688,71.28459,0.00398732 1132,599.73663,144.32664,37.62903,162.6314,0.0032327545 1132,531.12695,245.95949,26.854858,51.7285,0.000996543 1132,292.1813,187.08147,69.86917,143.31178,0.0007000659 1132,35.195705,238.96948,46.41209,126.381195,0.00040854196 1132,566.6351,203.0172,24.09613,51.92073,0.0003275609 1132,610.6298,229.3979,28.516846,135.39397,0.0002971688 1132,609.7041,43.261127,29.442566,165.36409,0.00025973277 1132,214.2744,201.53354,61.37126,86.46442,0.00023173536 1132,4.6380486,182.16174,57.678513,194.9607,9.812736e-05 1132,1.8415642,247.45471,27.167147,144.48145,9.669434e-05 1132,224.30719,182.7475,97.67395,160.41458,9.4686926e-05 1132,1.9958342,128.81801,19.724068,140.51988,6.4641135e-05 1132,611.324,373.896,27.822693,126.088745,5.109509e-05 1132,359.94696,75.71548,35.526398,84.353584,4.6311365e-05 1132,1.338243,318.93893,17.93256,130.12363,4.2934316e-05 1132,573.564,236.24863,42.849976,118.545746,2.6090254e-05 1132,515.8725,273.34616,75.34717,181.13406,2.207466e-05 1132,611.0941,13.50959,28.052551,85.94418,1.566478e-05 1132,4.980456,353.30026,75.41368,129.42844,4.0308373e-06 1132,0.9518498,437.8931,21.737667,64.71213,3.861909e-06 1132,1.5068914,18.966654,18.177052,122.157265,3.7679463e-06 1132,0.84209555,1.648418,21.172905,46.53901,4.6237912e-07 1132,478.98083,9.556949,41.223022,51.889717,6.685883e-08 1132,7.447406,2.8114617,44.68327,47.38721,6.153277e-08 1132,444.49396,10.237945,40.484497,50.917305,5.3549385e-08 1132,506.3548,9.497314,40.765747,48.614677,2.4360821e-08 1132,576.9889,8.157972,48.073303,53.194298,1.8996268e-08 1132,539.9672,6.5165772,46.354675,51.312965,5.6976033e-09 1132,416.48657,8.162088,40.607544,45.127403,5.1220392e-09 1132,80.372894,1.528789,46.913345,64.19941,2.753194e-10 1132,371.77386,3.6917481,45.615906,54.689873,1.610617e-10 1132,333.30814,1.4335042,62.83307,53.369843,3.284003e-11 1132,107.31952,0.0,43.74292,57.602093,2.6207836e-11 1133,275.60086,222.86372,27.908966,73.68718,99.8793 1133,303.22287,218.29536,28.721497,81.98897,99.63909 1133,258.00598,212.23405,22.063843,68.13573,99.40045 1133,294.86804,216.62189,21.712067,59.199585,10.622162 1133,316.86368,217.50917,37.595795,92.1617,3.9958916 1133,319.76813,216.50125,20.166199,50.755463,0.6190995 1133,219.16151,210.98668,23.909058,49.907333,0.16758099 1133,335.14285,229.26071,27.56195,59.256287,0.021883259 1133,572.05927,208.2512,25.187195,46.67148,0.018778434 1133,588.3644,326.38022,50.040405,173.07959,0.012899002 1133,616.76074,392.57147,22.385925,78.74881,0.0034529904 1133,619.124,339.69803,20.022644,68.24582,0.0026920864 1133,379.22116,215.86925,23.793518,52.83403,0.0021726347 1133,600.15356,171.32579,37.941833,191.26439,0.0014356276 1133,622.1704,163.61981,16.976257,49.9729,0.001311452 1133,272.74805,185.79774,92.35095,162.83427,0.0011857809 1133,616.90967,182.55125,22.237,78.754105,0.0008552248 1133,609.69025,91.2247,29.388184,141.7341,0.0006191649 1133,6.0085254,355.58316,82.20477,140.0604,0.0004018358 1133,0.8508236,233.23985,18.794401,87.19273,0.00020058436 1133,235.15547,190.42242,75.098526,143.47339,0.00018166416 1133,592.19824,446.12646,41.992554,62.010162,7.805763e-05 1133,1.9517912,145.42542,19.902498,134.40552,6.864391e-05 1133,3.5898926,181.66272,57.370056,230.67926,3.060306e-05 1133,1.4000937,386.27576,18.685686,120.29614,2.8948823e-05 1133,2.1106095,302.48694,31.811083,183.3937,7.5216653e-06 1133,2.3525465,54.40398,32.10374,180.87505,5.0878607e-06 1133,587.0802,11.195365,50.798218,116.913124,3.989564e-06 1133,3.5372658,21.382181,55.904427,124.26156,1.1568912e-06 1133,372.10248,8.666301,43.82773,50.430367,1.0414969e-09 1133,88.332726,0.618724,44.91828,64.44812,3.9743508e-10 1133,347.14917,6.0446095,44.84726,62.38553,1.2460326e-10 1133,315.48666,3.594704,43.400635,55.742863,1.8835391e-12 1134,300.23193,219.50398,31.818176,97.60829,99.70478 1134,326.21313,220.6755,31.016052,99.196075,99.57127 1134,356.5751,232.00092,35.89972,81.18332,1.1238841 1134,611.9409,190.05652,26.006165,60.873077,0.05663745 1134,603.2849,120.63568,35.295227,170.75626,0.00360157 1134,621.89825,138.10577,17.248413,59.516113,0.0029430804 1134,619.2413,377.9542,19.905396,69.036285,0.0015050418 1134,608.5797,296.12088,30.566956,182.57523,0.001247548 1134,296.89218,199.13081,94.75534,159.50938,0.000697632 1134,619.7905,225.63841,19.35614,65.39824,0.0004625708 1134,411.32806,221.45045,32.541046,66.88097,0.00037485032 1134,567.55634,243.2009,69.44104,203.66074,0.00031523436 1134,607.5378,436.69763,31.608887,70.544556,0.00016373096 1134,611.27124,35.42991,27.875427,159.6278,0.00015472317 1134,1.6636467,147.06488,19.17396,132.56995,8.461061e-05 1134,374.16144,59.857887,38.268585,97.0142,6.470176e-05 1134,391.4553,49.951138,27.153503,58.822773,4.340662e-05 1134,1.211132,221.13672,19.708641,132.70023,3.672178e-05 1134,596.1689,7.8444014,42.977783,86.95713,1.5085432e-05 1134,3.4295917,190.28534,58.007935,222.93198,1.4552927e-05 1134,552.8705,419.73508,77.10455,81.28781,8.797325e-06 1134,1.2126075,370.79776,19.190311,126.86133,5.95743e-06 1134,1.4289478,279.35437,28.985132,154.49527,3.8611875e-06 1134,1.7872648,56.28014,17.74976,133.78902,2.7418068e-06 1134,6.2838707,360.00204,78.09793,130.03702,2.4479104e-06 1134,2.7616813,15.607546,56.704155,127.410355,4.5727296e-07 1134,566.03754,5.9530163,44.114014,54.195366,1.314785e-07 1134,362.6235,12.661589,77.19873,69.96602,7.166547e-08 1134,1.1180086,5.4353714,21.251308,64.252266,3.5739116e-09 1134,61.5971,10.119974,42.29754,49.10241,4.852787e-10 1134,340.37857,5.283506,61.486145,51.215378,2.91436e-10 1135,312.74802,222.44165,37.340973,114.75699,99.84171 1135,352.83017,227.02734,32.2948,109.00531,99.48991 1135,337.12665,229.7193,27.963348,100.87021,90.292786 1135,372.1824,236.97043,22.848022,81.237915,4.259189 1135,388.78857,232.3081,29.756348,58.791412,0.36312792 1135,363.63766,230.35547,60.6214,116.81741,0.06357954 1135,362.5093,212.36887,25.483337,64.887634,0.05597731 1135,619.45874,204.5706,19.687927,64.656265,0.010527023 1135,400.45245,237.37492,33.68573,77.9265,0.007854207 1135,606.8054,166.21259,32.30255,142.21759,0.0022579848 1135,341.044,215.51724,20.207428,53.290985,0.0013082091 1135,442.69104,230.38902,25.104492,55.15175,0.0011728875 1135,428.9739,226.1443,25.338806,54.50801,0.0008686627 1135,308.2777,172.1852,125.13095,225.81639,0.00056696497 1135,457.8727,219.94104,35.98047,71.60333,0.00025710123 1135,600.47046,265.99496,38.4657,192.40765,0.00010417179 1135,608.08374,437.9032,31.062927,69.19479,7.8195924e-05 1135,609.3744,4.762064,29.772278,58.2696,5.7437006e-05 1135,1.7251921,118.72836,19.140839,137.04143,5.645848e-05 1135,1.1541822,218.77892,20.018461,132.90416,4.478176e-05 1135,601.7439,26.770737,37.40277,183.54578,3.282866e-05 1135,3.645897,246.59488,57.54678,227.90991,2.1918964e-05 1135,1.6633147,443.24402,22.040339,58.917908,9.939038e-06 1135,1.4536964,355.62848,19.156961,133.1795,8.573415e-06 1135,4.1528063,100.271805,56.869267,218.62294,7.1524883e-06 1135,577.11804,5.2350945,48.552673,46.606762,2.8891336e-06 1135,529.2703,5.555142,44.511597,46.09176,2.813704e-06 1135,507.1434,7.6471143,42.09268,53.704937,9.985321e-07 1135,412.11194,4.9412565,43.920166,59.431423,1.4034094e-07 1135,451.67377,9.363424,39.444824,50.764824,1.3098791e-07 1135,2.039476,11.243223,35.2889,75.950676,1.9647548e-09 1135,365.25314,5.5385613,65.33249,52.13049,1.162734e-09 1135,54.35436,5.4822836,42.511303,48.54424,9.865849e-10 1135,81.674965,9.254779,43.889076,52.407234,8.6882966e-11 1136,325.80423,231.92178,45.46924,132.38092,99.947914 1136,353.55664,235.64069,37.74347,122.66202,99.86123 1136,382.37604,227.42378,37.731018,141.71889,99.78436 1136,401.96207,235.79797,46.527985,126.3425,48.85884 1136,372.65094,280.08517,23.08319,74.652985,0.41884705 1136,330.03873,283.70685,21.28302,69.036835,0.21941888 1136,349.019,285.76627,20.421875,67.9866,0.17751458 1136,393.81577,214.89902,30.270935,76.116974,0.16686384 1136,356.23,212.08707,26.18161,63.29004,0.049324024 1136,327.17313,200.5161,120.52585,203.82991,0.009465739 1136,334.54828,215.74893,22.733551,50.231323,0.0061659194 1136,615.3158,162.73479,23.830872,88.45746,0.00062708324 1136,598.38666,288.26807,39.580505,200.13638,0.0006226152 1136,606.91016,438.54913,32.23651,69.02698,0.00038169534 1136,1.0369726,227.6663,20.325207,130.34502,5.1653133e-05 1136,587.74744,13.980717,50.672607,118.07654,1.2145622e-05 1136,3.6301205,194.03532,57.627186,216.73436,1.157567e-05 1136,1.1902328,350.4601,19.606823,131.2604,8.405184e-06 1136,453.66052,166.18701,26.574432,58.923782,4.1579087e-06 1136,540.2137,7.1557198,42.564636,50.75871,2.7790093e-06 1136,516.1997,6.7207685,43.370544,45.3436,1.3141114e-06 1136,2.0527637,421.62338,34.23637,78.096436,1.3077629e-06 1136,581.5089,5.8776565,43.122864,50.06124,1.1414562e-06 1136,427.46585,14.104637,44.786987,51.049164,9.0532876e-07 1136,493.18408,10.530438,40.950073,46.83646,2.9616933e-07 1136,1.9115837,37.121754,35.298504,198.84654,1.07295925e-07 1136,401.39,8.072171,46.720734,58.249943,2.8699462e-08 1136,2.4862647,12.47001,36.082287,76.98173,2.5737714e-08 1137,352.67087,243.31436,58.519867,159.57193,99.96499 1137,423.207,239.63512,55.13733,170.15031,99.851234 1137,389.9554,246.49683,47.495483,157.14844,99.84975 1137,356.32367,213.58401,21.922058,49.454895,17.073154 1137,344.45474,212.00586,43.226044,106.12146,7.244779 1137,440.0746,220.92068,39.18094,93.23279,0.7696674 1137,425.31354,211.92818,30.497925,90.72212,0.20327497 1137,403.5694,303.634,28.306519,76.75574,0.060118206 1137,364.03293,218.43579,149.19083,218.17065,0.037863612 1137,396.6608,242.9159,28.16034,68.31351,0.030926073 1137,615.2519,371.76517,23.894775,88.81317,0.005633202 1137,441.15094,282.2157,25.623657,70.95627,0.0041949325 1137,609.7362,5.306979,29.410461,53.353508,0.00013317588 1137,1.3052897,227.54462,20.36283,136.52283,3.8059978e-05 1137,1.5592123,278.1849,33.802666,184.10464,5.4736265e-06 1137,1.2956527,445.24094,21.549246,57.64627,2.7873755e-06 1137,3.7915528,398.5978,56.36788,97.13855,1.125772e-06 1137,521.0954,10.952533,39.63861,47.30454,6.2360937e-07 1137,2.839668,11.97184,36.738953,80.74575,4.055698e-07 1137,434.56668,11.920237,43.38855,46.43473,1.6302984e-07 1137,408.03793,8.7511425,46.56009,58.69021,1.6733354e-08 1137,375.99774,10.389199,41.5076,47.579475,1.2642457e-10 1138,410.70682,259.0064,76.82001,209.09158,99.904305 1138,381.7533,221.65816,20.483582,49.347885,99.89825 1138,460.4084,260.11423,62.068054,215.34198,99.80661 1138,369.3862,216.74405,19.295898,51.03586,99.53062 1138,513.1845,249.61902,68.04474,217.44449,98.59969 1138,444.88678,214.74384,37.403442,104.7428,71.040794 1138,505.79022,270.53342,39.76642,140.92761,3.5649228 1138,452.06537,251.2487,37.88739,138.89662,0.15147805 1138,475.56573,353.4059,38.46399,96.05127,0.10350824 1138,465.99985,231.89438,41.75418,97.588715,0.09593277 1138,424.1903,286.01843,36.45398,121.641266,0.008141576 1138,353.25717,158.08752,92.6167,212.57217,0.00042241786 1138,441.8551,321.53122,26.297455,72.236084,0.0004165564 1138,597.8735,403.13882,40.843567,92.717285,0.0002983054 1138,608.8024,3.1149025,30.344238,61.34622,0.00028333854 1138,571.37665,5.319616,44.765076,58.543045,4.3025066e-06 1138,1.3166724,444.0902,21.900133,58.98813,2.5062623e-06 1138,2.7088478,392.3238,56.587353,103.111694,2.090963e-06 1138,3.3309767,13.427386,35.60517,81.90175,1.4924954e-06 1138,534.37744,7.554898,45.365723,51.98776,2.7355162e-07 1139,402.07648,222.23871,20.499542,46.75522,99.86331 1139,469.7648,220.4642,39.539337,103.33334,99.42597 1139,389.34717,217.22147,20.66922,48.874023,98.789154 1139,493.60965,234.71432,26.448761,65.40622,60.218258 1139,512.4489,321.01694,66.211,155.04593,34.20235 1139,595.7134,335.44543,43.43329,175.70123,2.8190439 1139,543.6076,288.27396,86.91608,222.87271,0.54724187 1139,579.1445,426.42764,21.459839,59.35623,0.01707117 1139,566.68774,421.3503,52.45166,89.79636,0.014051321 1139,455.04703,203.72954,107.1022,191.85017,0.0121435765 1139,537.7748,366.00253,26.695496,66.0401,0.011263088 1139,613.4795,410.6132,25.667175,86.98151,0.007970447 1139,560.02893,421.9798,26.504395,65.806244,0.0035306793 1139,615.7152,351.21463,23.431458,70.62918,0.00046617386 1139,378.36774,189.93338,52.749847,103.79797,0.00024504247 1139,1.6012875,218.49751,20.355816,129.0479,7.549131e-05 1139,256.138,159.39449,85.15198,202.06136,1.645977e-05 1139,606.68835,0.45250002,32.458313,63.69715,1.6217678e-05 1139,3.1103876,382.7299,55.265945,108.15445,4.458922e-06 1139,1.0024675,438.82016,21.710966,63.1474,4.3174186e-06 1139,353.18683,125.87291,138.54187,232.4445,3.5061823e-06 1139,3.8679101,20.983107,57.634937,116.28319,3.0182032e-06 1139,3.6567008,9.167978,39.82341,50.33725,1.2893653e-06 1139,472.26657,5.565765,47.7222,55.838463,3.9181604e-08 1139,567.2428,5.0542417,47.445435,52.65603,1.6392713e-08 1139,435.82907,4.898503,48.48999,56.215134,1.1747711e-10 1140,482.73273,222.6011,45.976868,147.63928,99.90447 1140,410.30466,223.12259,19.931458,47.849274,99.86293 1140,398.1298,216.09062,19.466644,52.36635,99.71582 1140,277.33945,216.01764,22.473724,46.606476,98.77667 1140,507.18997,226.16527,28.634186,89.97072,78.37624 1140,462.4021,221.07732,40.037598,135.52956,0.010132068 1140,613.8111,321.36298,25.335571,101.78549,0.0049656113 1140,0.7884566,199.98701,12.903742,54.564743,0.0021474499 1140,440.43564,171.44455,119.08792,254.75537,0.0011291306 1140,0.0,377.199,73.72707,125.9498,0.0009821398 1140,611.4929,174.19324,27.653748,129.43985,0.00036557726 1140,583.19403,268.32724,54.724365,156.43979,0.0002613119 1140,386.00482,194.57573,53.812103,98.80156,0.00025331427 1140,612.1938,77.4277,26.95288,131.49731,0.00015859818 1140,1.792382,209.90068,18.82809,124.870224,0.00014110672 1140,555.6747,415.1605,75.468445,95.986176,0.00012257791 1140,3.0363412,136.85202,36.13434,185.69086,3.84164e-05 1140,1.2628744,347.14523,23.50862,164.00143,3.128335e-05 1140,594.36346,6.6950717,44.539124,86.45532,2.621001e-05 1140,1.5990332,283.94458,19.109753,140.84003,8.390032e-06 1140,258.4215,165.16951,74.43094,156.95811,7.0538313e-06 1140,356.31885,132.33636,133.95752,225.50546,4.33918e-06 1140,1.674205,78.56626,18.632936,131.87381,3.5517164e-06 1140,3.6967025,4.6836457,42.73377,60.68875,3.079511e-06 1140,4.4526887,16.680885,57.293465,124.88459,6.578504e-07 1140,463.2311,15.749838,47.16678,161.08902,6.9960755e-08 1140,477.81055,3.155228,50.4635,61.02581,7.3029027e-09 1140,566.3453,6.5351744,46.204468,45.753323,8.830913e-10 1140,449.63745,4.504232,48.518402,56.940914,9.697359e-11 1140,421.72992,7.967839,41.679047,51.516247,4.8380532e-11 1141,506.74023,234.82162,61.778076,162.5376,99.938225 1141,406.38187,223.50224,19.208405,48.36699,99.820625 1141,395.244,219.24324,18.384613,49.642075,99.0889 1141,505.8835,241.89383,23.007355,58.8291,12.019359 1141,534.0116,233.08958,29.753296,96.11632,2.0296211 1141,261.12894,220.6836,24.871185,53.85968,0.0718975 1141,242.94524,228.43848,21.800217,51.627747,0.01994026 1141,0.0,210.75256,10.457027,45.068283,0.007406352 1141,511.39267,262.38547,26.930511,76.771454,0.0063249636 1141,388.62732,204.85995,38.98062,82.8371,0.0013538351 1141,1.3023877,198.93204,18.853296,96.406525,0.0010190608 1141,515.8077,308.3837,26.892822,76.027466,0.0010167505 1141,599.98694,199.79013,38.40564,184.59595,0.0009347441 1141,608.6416,301.47717,30.505066,143.43387,0.00032634486 1141,610.11743,75.12864,29.029236,138.7077,0.00018289003 1141,531.22144,281.27557,26.842041,83.71506,8.660305e-05 1141,24.841625,325.1507,88.05412,171.05078,8.429859e-05 1141,2.581714,147.07443,33.612007,175.95895,6.835073e-05 1141,607.94574,438.49182,31.200928,64.97159,5.6703568e-05 1141,482.16568,67.551216,39.062225,100.606255,4.5261004e-05 1141,379.02774,170.18915,86.45004,181.4002,2.569806e-05 1141,584.3453,391.12262,54.106995,102.81604,2.3632883e-05 1141,1.1081715,288.8329,18.274662,138.05594,1.5593563e-05 1141,567.98834,448.6273,41.256775,52.075165,7.708501e-06 1141,1.0834554,418.78696,17.907808,80.181274,7.4891404e-06 1141,4.2713475,391.9335,55.330406,103.337494,6.6801276e-06 1141,596.9773,9.450798,41.76709,81.24415,6.0015773e-06 1141,22.43922,446.03226,42.515804,58.084106,5.415814e-06 1141,536.409,415.87643,62.451477,84.38049,5.221676e-06 1141,1.7060434,43.42235,19.184063,129.1418,4.4115805e-07 1141,2.127606,12.420292,29.48916,55.253384,1.0410015e-07 1141,151.52626,18.49694,80.47247,197.93176,5.1660855e-08 1141,566.68884,5.615531,47.283752,47.278805,6.6298402e-09 1141,498.61438,5.5729885,46.8844,48.01931,1.4120106e-09 1141,473.61746,2.4696875,48.376923,59.031433,4.2267703e-10 1141,449.8671,4.7573633,44.76999,54.26568,8.721648e-12 1142,398.01248,227.74063,20.375488,48.20172,99.870384 1142,383.17105,222.32793,23.185852,51.620316,99.86543 1142,583.5703,236.53777,48.029785,228.97505,98.60092 1142,597.9351,227.93262,40.913208,109.08365,0.83045393 1142,588.9508,265.71692,30.29419,75.687775,0.12614243 1142,600.4456,331.4178,33.745056,101.84503,0.08693388 1142,621.93945,236.5461,17.207214,49.602463,0.021356313 1142,600.00275,306.718,23.975403,70.789,0.012466146 1142,607.4176,232.84683,23.441223,48.61389,0.011855881 1142,616.871,370.08066,22.275696,92.678375,0.0045564547 1142,611.99316,282.77573,27.153503,109.0574,0.0039705853 1142,610.19495,69.32701,28.951721,154.29268,0.0009717267 1142,606.1038,428.9492,33.042847,75.440735,0.0006749119 1142,379.15198,201.82413,51.587738,97.03317,0.00014294579 1142,2.076932,121.33107,33.995213,191.78407,8.514064e-05 1142,1.3825594,71.98358,20.048002,133.30965,5.7648827e-05 1142,1.4130111,207.60597,19.679615,123.17247,2.3586546e-05 1142,1.0923291,315.62354,28.776989,158.83893,1.4553372e-05 1142,1.2162378,443.79324,21.758358,59.730408,2.2844554e-06 1142,350.0739,152.09294,126.54538,210.79558,2.272188e-06 1142,609.26,1.8172526,29.886658,65.16673,2.2105792e-06 1142,3.5732749,397.28702,56.6951,98.007935,1.1319902e-06 1142,2.3414812,28.176296,59.134823,212.4055,3.0762513e-07 1142,125.7125,16.209427,82.05526,180.70134,9.475644e-08 1142,71.166084,3.6761491,46.971237,54.69694,3.4985298e-08 1142,1.5032423,11.818536,36.64217,80.15354,1.7907775e-08 1142,45.238564,2.990524,45.92534,59.145493,4.273075e-09 1142,130.87807,6.5583515,43.813126,51.908333,3.4658973e-09 1142,155.32504,3.04473,47.5446,55.13161,1.0224968e-09 1142,459.7834,3.225153,70.16504,61.1708,9.30275e-10 1142,19.973629,4.410215,43.904686,53.935413,3.8290351e-10 1142,445.475,4.4816637,40.81189,55.58839,3.4240385e-11 1142,190.90385,4.0782585,43.68753,54.252792,2.9783422e-11 1143,342.44812,220.87724,26.171112,58.280014,99.92214 1143,181.26535,218.19305,29.917694,62.41101,99.81045 1143,357.71436,223.97047,22.607147,54.88109,89.080315 1143,165.14728,217.99431,28.318878,63.73265,0.14244328 1143,156.15863,193.60004,53.545822,128.89447,0.0019575441 1143,336.80807,199.15857,53.4299,99.75403,0.0008668222 1143,616.4019,265.77365,22.744751,85.58035,0.0007616959 1143,587.583,246.89357,50.73755,231.73207,0.0006283871 1143,110.17724,74.43073,29.389168,56.26101,0.00056708825 1143,1.5508089,215.69339,18.415874,85.21832,0.0005398711 1143,610.3192,78.800415,28.827454,154.11246,0.00041075976 1143,2.174922,175.13602,34.25224,178.28452,0.00013014929 1143,617.24585,342.5539,21.900818,78.849945,0.00012275479 1143,611.81335,170.25983,27.333313,147.45819,0.000113047005 1143,612.9059,421.26794,26.240784,82.682495,8.757344e-05 1143,5.4864974,339.7797,81.75771,151.42615,5.836455e-05 1143,84.05934,211.69495,42.942696,85.19656,5.747756e-05 1143,0.91080815,414.15366,16.01993,84.06088,5.2942585e-05 1143,1.2135881,251.74959,19.457129,143.99782,4.9401355e-05 1143,602.8641,20.467405,36.068115,109.077774,2.622146e-05 1143,1.9033058,354.5131,31.031586,142.88083,1.9427907e-05 1143,134.06206,148.25745,129.69759,231.11371,9.832354e-06 1143,1.3835596,121.84396,19.534868,137.93268,9.00538e-06 1143,307.0787,139.57918,125.15103,221.92494,4.390614e-06 1143,592.8284,8.240435,41.675415,49.575706,2.3299822e-07 1143,62.561108,13.586361,80.92972,157.81825,2.3295424e-07 1143,1.3465846,20.738438,19.052124,130.06662,1.7910756e-07 1143,456.57278,0.25291017,70.44327,66.8275,1.773169e-07 1143,4.8522673,2.0301661,45.731133,56.551254,1.3429386e-07 1143,510.6386,3.9905665,43.033142,54.98862,1.2178621e-07 1143,3.8706446,31.41073,58.53131,196.42442,1.14684376e-07 1143,539.29645,7.0243554,42.034485,50.713894,1.1756958e-08 1143,93.2967,4.6060905,45.301018,56.108788,5.0634568e-09 1143,67.77412,2.913711,47.241264,61.492035,2.6977507e-09 1143,359.52118,7.359756,45.137207,55.84403,9.726167e-10 1143,387.48193,5.0925946,42.861786,54.940674,5.328098e-10 1143,434.93002,1.9958562,46.029724,66.910965,3.4866351e-10 1143,121.15586,3.9674838,43.28472,51.184654,7.978213e-11 1143,147.7925,2.1450489,42.056473,52.775295,6.4382427e-12 1143,257.2157,2.3460824,39.374878,53.768887,7.1173525e-13 1144,188.71898,220.08972,30.968063,59.42871,99.87575 1144,172.51418,214.6471,30.992676,60.334656,99.03435 1144,620.2974,267.36282,18.849243,51.534668,0.02304898 1144,612.2489,189.63126,26.897766,128.03494,0.0016197342 1144,587.7389,210.60443,50.471497,206.77234,0.0009410598 1144,413.76233,265.1493,23.28949,47.66324,0.00090100756 1144,621.9304,88.27297,17.216248,54.713936,0.0005915675 1144,448.7045,258.32178,24.493958,51.48752,0.00058572926 1144,74.03339,208.45099,23.42479,48.03586,0.000571982 1144,1.8589324,155.41142,21.936016,123.140884,0.00047680986 1144,53.44602,215.62485,23.491558,51.607513,0.00030917875 1144,170.62834,165.24118,63.994476,142.89212,0.00029018085 1144,621.69855,352.94476,17.44812,53.43341,0.00019438541 1144,617.46246,395.1911,21.684204,79.138855,0.00016510862 1144,616.9278,294.60834,22.218872,80.16458,0.00013083425 1144,611.0657,79.93699,28.080994,155.10837,6.442549e-05 1144,1.3840804,250.77576,17.86186,68.1781,4.0334984e-05 1144,572.38354,350.75922,66.76312,138.19257,1.9734265e-05 1144,616.1872,23.428968,22.959473,91.298035,1.8296456e-05 1144,5.1642385,165.44928,56.914288,215.35513,1.1081666e-05 1144,0.9307389,419.2572,13.562408,48.633484,1.0703132e-05 1144,1.1035156,273.9694,18.442274,135.1914,1.0198828e-05 1144,1.0143979,373.49808,19.913366,124.33908,8.359873e-06 1144,0.8041569,371.8137,13.765537,48.577423,7.828906e-06 1144,3.2582147,338.93835,58.466927,150.33197,3.7133102e-06 1144,1.7543498,56.801617,20.144152,160.36572,1.1232769e-07 1144,268.20633,4.967057,67.91089,127.90347,4.188286e-08 1144,330.51523,0.0,47.143433,61.354137,1.2408921e-08 1144,275.6551,18.613897,30.877716,76.236595,8.991259e-09 1144,303.25208,1.0564226,48.511566,67.601326,8.685057e-09 1144,586.7791,1.2823471,41.78717,59.469696,6.505254e-09 1144,360.2597,4.1184325,43.92206,50.195225,4.5376933e-09 1144,449.93585,4.510417,41.71634,47.973423,3.2068375e-09 1144,170.85509,4.871393,44.189224,56.97618,1.5268115e-09 1144,505.2505,4.305537,41.435852,49.371788,9.897967e-10 1144,1.187155,9.658568,58.6708,142.12292,7.296995e-10 1144,209.75128,6.7692094,42.93672,55.656925,2.9331085e-10 1144,246.01576,0.5654004,65.364975,58.696075,8.337464e-11 1144,1.1232487,4.3828745,20.483671,66.773026,2.4946187e-11 1145,508.22443,276.0793,25.385193,54.360077,0.08295438 1145,580.36176,246.67009,32.07141,61.829086,0.057773292 1145,1.8556414,260.25916,33.472546,83.17441,0.018259784 1145,621.4533,250.7654,17.69336,52.278763,0.013635165 1145,178.78262,260.09204,24.736755,52.42273,0.013459407 1145,612.8919,178.57007,26.102478,127.55353,0.0024139988 1145,0.52834636,285.52344,12.3667555,48.64908,0.0017212622 1145,3.1372967,226.89467,53.387695,170.51155,0.0009317422 1145,611.4761,251.05792,27.670593,141.85681,0.0003728118 1145,99.714325,148.6078,27.940193,53.030685,0.00033857685 1145,0.873807,274.27322,19.99608,155.61801,0.00029014787 1145,222.4844,232.54337,25.485886,50.76059,0.00016706315 1145,617.26807,395.59338,21.878601,79.022156,0.00016587709 1145,574.33,205.31517,63.169556,254.50816,0.00012280983 1145,618.06226,148.33554,21.084412,79.29756,7.85254e-05 1145,601.2607,327.6494,37.885986,163.18826,5.4222885e-05 1145,609.1081,441.66318,30.038574,63.08142,4.407626e-05 1145,617.0966,83.75538,22.050049,89.80608,3.0190844e-05 1145,1.2713648,208.2497,18.349203,84.72504,1.5864494e-05 1145,0.8294092,370.72385,19.843208,126.7157,1.4658328e-05 1145,1.4165031,150.38481,18.264147,79.393265,1.44911455e-05 1145,1.5496184,92.94493,18.487312,79.473206,8.191083e-06 1145,2.8395069,318.01505,57.752583,167.32425,8.133015e-06 1145,0.828206,412.84964,13.5674515,48.289703,8.08368e-06 1145,6.6508627,93.135185,77.22298,266.58752,3.0440344e-06 1145,2.162452,84.54647,32.987534,217.97928,2.6819685e-06 1145,1.6159782,458.68875,28.21024,45.467712,2.5269599e-06 1145,584.1935,6.3666797,54.95288,290.41812,2.4114627e-06 1145,3.1163023,431.0409,53.52564,68.95203,8.4503176e-07 1145,611.3477,0.5062761,27.79895,60.784996,6.012987e-07 1145,193.11636,13.019729,36.760986,49.64757,2.399633e-07 1145,213.72456,12.216047,38.54213,50.151985,2.0876945e-07 1145,137.79828,12.183444,39.248764,50.379356,1.594873e-07 1145,354.1309,10.21149,39.724365,54.847965,1.5436267e-07 1145,1.9896013,7.181898,32.243526,64.22477,1.5172853e-07 1145,165.28075,13.034281,37.944366,49.941795,1.4886481e-07 1145,329.0589,9.280561,38.132385,56.38389,1.2514292e-07 1145,73.20386,11.026761,84.82895,66.31839,1.0863215e-07 1145,247.44131,11.951549,37.53253,50.455235,9.636673e-08 1145,3.5430763,10.379935,55.82702,122.10087,7.7627156e-08 1145,387.96375,9.616598,43.154602,56.45452,7.6579646e-08 1145,414.4492,5.2982197,43.61786,58.575424,3.1087188e-09 1145,8.799187,4.036605,64.92065,50.901737,2.0793074e-09 1145,69.26087,1.8883626,48.340057,49.995934,1.5847588e-09 1145,442.30756,6.447316,37.88208,46.688553,2.871334e-10 1146,466.94427,226.96144,33.757812,62.59233,0.04645072 1146,510.74445,234.5905,24.5307,46.590225,0.019051105 1146,621.44073,94.09538,17.705933,52.383835,0.0052365805 1146,509.81183,214.58272,42.066467,93.94063,0.0010146215 1146,612.23535,186.66443,26.710876,128.61038,0.0008818474 1146,441.04495,218.11221,61.06375,121.25949,0.0007135603 1146,485.72815,233.83214,33.087585,76.20268,0.00068534416 1146,538.27704,241.60966,25.30658,53.424484,0.0006600321 1146,617.643,270.12888,21.393616,75.499664,0.00057451753 1146,3.7373033,331.6009,56.313633,143.1359,0.00043541836 1146,1.2172095,390.99692,18.311176,72.934235,0.00026673177 1146,585.2336,151.17542,51.06494,207.44458,0.00024339772 1146,617.0706,389.2042,22.07605,79.563324,0.00017289443 1146,612.18994,85.80264,26.956726,127.46683,0.000108027416 1146,1.2141407,323.61847,18.263367,80.319885,9.152095e-05 1146,610.67896,291.45172,28.467712,145.83694,6.842821e-05 1146,1.3269938,168.22069,18.15617,71.479965,4.288971e-05 1146,1.5319858,83.71034,17.89326,68.0146,3.9554572e-05 1146,609.1545,442.92172,29.992188,61.528656,3.4935798e-05 1146,571.17676,352.5343,67.96991,137.97202,3.1906446e-05 1146,477.48438,192.33229,106.09332,184.92397,2.5875666e-05 1146,1.2568344,221.32985,17.85657,147.21214,1.9230776e-05 1146,615.20056,32.406467,23.946106,99.526825,1.2977891e-05 1146,2.536893,111.95235,31.921734,176.941,7.838753e-06 1146,0.867557,437.69043,22.005089,64.28897,4.77778e-06 1146,584.2467,1.5093751,54.899963,219.22751,1.0214086e-06 1146,3.0247543,43.4459,58.69745,164.06781,9.4984654e-07 1146,0.67966557,13.18932,12.492562,89.01639,7.4935673e-07 1146,1.4309669,24.163237,28.22799,114.066574,4.1683168e-07 1146,436.97116,6.926221,42.59442,52.999817,2.4050675e-07 1146,374.16397,4.118612,61.847717,49.493443,2.1711114e-07 1146,0.6574357,3.0795217,19.439863,45.18395,6.5569914e-08 1146,592.21344,0.0,41.16632,56.23206,4.071399e-08 1146,460.6849,8.569052,43.785828,52.38552,1.8883632e-08 1146,88.35573,7.6456137,40.88849,47.613995,1.6665446e-08 1146,349.337,2.6110418,41.534393,51.204227,1.5400323e-08 1146,62.375156,5.9123893,40.910397,47.43684,7.520966e-09 1147,469.2471,222.5371,46.36429,81.39244,99.97151 1147,372.6337,223.70857,45.290466,82.31294,99.96865 1147,540.002,219.25397,30.66455,79.07526,99.83531 1147,565.97076,227.94379,30.651001,83.90076,99.62214 1147,588.25824,226.97696,33.227356,86.77765,99.527115 1147,617.00305,222.09186,22.143616,109.24844,54.56404 1147,527.6189,221.21461,24.414734,73.35719,27.4231 1147,147.4985,237.3699,37.23239,81.298004,0.014218148 1147,437.9285,187.5274,31.893799,70.25183,0.010878565 1147,588.2331,196.90625,48.598145,203.8494,0.0057417536 1147,90.936615,169.72942,35.812218,93.43727,0.0033133463 1147,397.93518,220.60605,34.432648,71.59674,0.002920161 1147,522.8658,198.70563,82.52246,141.00235,0.0009872898 1147,136.38232,204.32352,82.59729,154.71353,0.0003879154 1147,354.969,184.1003,86.53549,171.9192,0.00020581199 1147,609.5471,101.54052,29.599548,145.48819,0.00018170454 1147,453.3473,175.58148,94.60126,161.55563,0.00017333293 1147,608.889,442.2935,30.25769,62.641174,9.6403935e-05 1147,0.9818986,234.50514,18.958372,131.9427,6.2766085e-05 1147,601.41516,315.3627,37.731506,185.11908,4.553558e-05 1147,2.1322722,103.35477,33.43562,198.33032,4.067119e-05 1147,3.4940886,284.2312,56.7227,188.18799,7.606497e-06 1147,1.0519158,365.10974,18.447874,127.940674,5.424974e-06 1147,1.5688542,57.372208,19.301472,116.01521,4.089685e-06 1147,612.66095,0.0,26.485718,62.399975,1.6560074e-06 1147,2.3886003,26.284021,55.830498,117.84435,3.8499414e-07 1147,1.0478947,8.606462,22.306906,56.54889,1.9924025e-08 1147,74.371254,4.4033384,45.821144,54.864872,4.059548e-09 1148,262.65015,217.52995,48.610382,97.922165,99.98466 1148,495.737,220.63866,41.29132,122.66472,99.96851 1148,418.45123,215.4609,46.569153,109.243744,99.968216 1148,389.97156,217.33592,39.28006,107.96852,99.96618 1148,116.64818,213.4504,53.88875,103.35075,99.83797 1148,361.43536,218.40768,31.736115,88.77994,99.83508 1148,347.66177,222.03053,27.340637,79.476456,68.229065 1148,379.8437,209.91661,27.09842,97.135635,19.917404 1148,449.76724,218.04991,24.748444,57.02443,0.41774327 1148,609.4528,192.15134,29.33612,122.361084,0.0031611812 1148,82.20206,201.36855,104.40607,201.94731,0.001115392 1148,371.8076,169.20514,135.39124,222.17444,0.0007763797 1148,3.2245688,281.862,53.512157,204.78302,0.00041544394 1148,448.69318,161.98941,134.31512,238.34988,0.00019840065 1148,610.27124,110.7401,28.875427,141.5208,0.00018846642 1148,608.7448,440.18073,30.401855,65.36157,0.00015987943 1148,1.7708285,336.2006,22.650633,163.10223,0.00010761847 1148,293.43314,152.91373,142.25104,214.64053,0.00010630394 1148,226.5245,147.59596,129.45782,219.32793,8.162968e-05 1148,1.6383203,148.38438,18.812235,135.53807,2.0749887e-05 1148,611.25836,2.3237662,27.888306,61.61564,1.0248353e-06 1148,1.2809831,11.989912,37.78443,86.43649,3.1453186e-07 1148,222.76422,2.4069467,46.0007,62.16164,2.5108887e-10 1149,362.69064,219.28409,35.44101,93.351105,99.96241 1149,335.80106,220.90997,38.619934,121.943665,99.959274 1149,123.35156,220.76746,60.13867,132.50314,99.95289 1149,489.26163,229.09029,49.17917,153.14272,99.94641 1149,262.2859,220.38022,38.559235,108.71341,99.88435 1149,304.29922,216.49954,39.52365,136.6987,99.66892 1149,283.4319,212.99982,37.248383,124.96274,70.83844 1149,264.83997,205.64828,27.007996,64.50595,0.032292746 1149,276.26074,182.80339,142.10684,216.53093,0.007617929 1149,199.74284,188.57368,29.47815,67.20325,0.006186025 1149,455.75372,187.82143,115.783264,253.84108,0.002348184 1149,90.97405,149.87231,125.2284,252.38583,0.0010881431 1149,584.0922,394.11526,54.72406,103.303955,6.297924e-05 1149,608.4326,443.35617,30.71405,62.06906,5.7844118e-05 1149,1.6075546,87.802734,19.282265,146.59935,4.0452785e-05 1149,1.5708911,189.04814,19.350393,140.99483,3.896515e-05 1149,1.1294605,441.37778,22.035288,62.513123,1.919051e-05 1149,607.3887,8.097875,31.672852,50.804016,1.1494651e-05 1149,1.4314111,306.8066,32.317314,181.92194,7.082129e-06 1149,2.0513477,8.974743,37.631493,84.97276,8.854434e-08 1150,314.21335,212.72345,47.96118,115.11322,99.97619 1150,267.05133,207.72537,52.121155,164.50827,99.94078 1150,0.062088218,212.50209,66.94962,184.42125,99.92884 1150,221.89204,213.45462,55.649887,151.5834,99.74769 1150,530.8989,232.09596,75.50598,211.33354,99.72674 1150,242.2626,290.28137,33.1485,102.989624,91.0776 1150,554.96436,325.94455,37.900513,114.68588,11.772226 1150,510.7135,250.11018,49.48236,176.01299,1.0600543 1150,225.61043,182.2974,139.08186,218.93109,0.04075904 1150,593.92395,317.38705,39.485657,171.46088,0.035109352 1150,606.18634,429.2764,32.930054,74.5845,0.00030547415 1150,1.2232219,440.14185,21.462214,61.690674,1.6400805e-05 1150,608.0344,6.987596,31.112244,52.599854,4.2098027e-06 1150,1.2488005,6.7325325,21.26948,61.215115,4.859183e-08 1151,265.09695,219.07127,55.37494,133.8282,99.972336 1151,349.4151,211.65303,22.194855,46.11415,99.9015 1151,217.87173,213.39857,60.60681,161.50249,99.887436 1151,370.99774,209.8557,21.345093,49.023148,99.86706 1151,104.622734,221.51071,78.38955,236.98572,99.291306 1151,188.93346,221.5311,59.173004,189.82086,98.672874 1151,145.48425,213.32259,75.09235,212.85408,95.179405 1151,183.97218,210.0972,40.28636,105.345764,19.058899 1151,174.43748,320.23892,29.88115,74.52411,4.6217976 1151,37.81343,228.4624,36.014435,79.615814,0.10214968 1151,94.47916,311.70178,48.238464,158.68906,0.09057204 1151,614.3607,308.85638,24.719116,56.68402,0.04413995 1151,496.36053,212.97687,24.984741,49.66452,0.03914935 1151,126.41314,254.47095,37.58056,123.3613,0.003658989 1151,608.39484,425.10757,30.751831,78.596344,0.0014577805 1151,606.72504,6.4467187,32.42163,54.109856,3.0121819e-06 1151,1.944209,420.73462,34.50841,77.63275,1.5826708e-06 1151,1.3714461,2.372129,22.41862,66.730606,6.376953e-08 1152,147.08844,214.99194,60.31691,177.87894,99.97731 1152,202.3588,224.81422,63.052734,155.29033,99.968445 1152,359.63242,213.45088,19.766998,45.769577,99.654274 1152,70.56426,222.6684,89.86904,247.4837,99.43999 1152,17.547358,228.5866,83.98942,231.27394,99.41715 1152,105.724205,207.2292,47.11364,126.804886,70.15479 1152,2.0366554,306.5884,31.681107,124.78894,3.8275697 1152,596.2692,399.66428,41.6532,99.293335,0.0002438717 1152,2.3196893,364.9646,55.694267,123.70953,0.00012882391 1152,0.3944515,422.3824,24.920267,88.22977,8.191895e-06 1152,606.8249,6.1449122,32.321777,56.622746,1.9303388e-06 1152,1.0234334,6.661507,21.94841,66.31839,5.3629005e-08 1153,6.742321,218.57126,88.70064,248.80249,99.92549 1153,84.72158,221.40599,84.52271,200.11986,99.91849 1153,333.33267,214.38074,22.101105,47.97513,99.902405 1153,318.8492,214.34694,21.235352,46.432266,99.89609 1153,209.20287,201.83344,27.546234,56.07193,10.794563 1153,225.38222,201.79488,24.019821,53.300644,4.6757383 1153,8.069917,223.35844,44.577736,134.97188,2.812361 1153,2.168834,228.07579,20.958998,118.70952,0.33486277 1153,0.9887175,301.74524,39.487064,171.23926,0.30864567 1153,50.54043,271.55768,25.649406,52.756927,0.22535515 1153,25.716696,320.94366,25.573378,65.7056,0.012526915 1153,609.5031,194.25092,29.046875,104.06848,0.007972392 1153,30.504854,266.9119,27.007738,68.182465,0.006482713 1153,125.75567,266.99448,26.48867,66.45944,0.0062006847 1153,40.65124,323.0643,23.418438,67.34152,0.00158196 1153,106.66879,275.71533,26.285507,69.74524,0.00046441675 1153,310.97403,160.82808,82.8327,192.68022,0.00016088295 1153,0.9894499,424.34415,23.675295,76.86536,6.6544075e-05 1153,598.7726,411.2538,40.374084,89.19339,1.9985748e-05 1153,607.7141,6.4560432,31.432556,53.53135,4.476852e-06 1153,1.3096005,51.05894,36.18453,240.08476,6.592069e-07 1153,2.166434,8.956859,37.94686,83.002335,2.2722388e-07 1154,306.68005,216.2662,21.357056,49.308655,99.942245 1154,292.769,216.99416,19.756866,48.34178,99.902534 1154,334.89325,212.91447,18.318878,45.146317,33.44834 1154,1.5846891,216.54053,33.018547,81.66,0.044507567 1154,516.31525,175.07014,23.142395,52.193787,0.02576362 1154,167.06058,205.02855,28.324905,61.722916,0.0070722722 1154,530.35126,261.23428,24.679932,50.993774,0.0021777623 1154,611.49805,187.99626,27.600525,105.23482,0.0020426903 1154,4.572811,115.853806,57.68969,231.49837,0.0013872451 1154,112.4986,220.77266,25.145844,57.262802,0.0008609835 1154,585.41,120.50208,51.162415,207.12485,0.00063670444 1154,521.4207,230.48615,43.309814,100.28015,0.0004768749 1154,1.5303785,66.470924,19.098362,95.89164,0.00026232717 1154,339.4335,152.64641,22.52655,46.085785,0.00022319696 1154,395.7507,219.56393,21.445648,51.589813,0.00021258177 1154,611.02405,261.61526,28.12262,140.0813,0.00018929648 1154,281.28433,193.29013,55.33484,92.98703,0.00014905231 1154,545.7388,226.84949,38.58954,74.26834,0.00014402119 1154,1.1485385,377.16837,18.234251,81.24582,0.00013237308 1154,616.5526,126.69273,22.594055,84.13304,0.00010631468 1154,0.906346,123.17055,19.292864,97.26839,9.690583e-05 1154,621.6736,78.8932,17.473083,56.037323,8.721912e-05 1154,477.26187,209.82376,79.24332,172.61081,8.2942606e-05 1154,612.4985,362.51266,26.648193,136.52374,6.45048e-05 1154,308.90167,161.69362,84.728424,158.62514,4.1934985e-05 1154,1.1181893,241.91568,29.7773,172.24078,3.7332447e-05 1154,612.9915,0.0,26.155151,45.047737,3.5963054e-05 1154,407.44107,218.5119,21.787811,50.521484,3.5773006e-05 1154,1.4330193,276.01202,18.680748,78.250305,3.1435728e-05 1154,405.38794,155.27098,44.59149,113.910324,2.712776e-05 1154,614.59735,15.442539,24.549316,90.329956,2.6670226e-05 1154,3.2346046,43.06857,43.855644,159.77893,1.9319932e-05 1154,1.2782878,408.55536,34.65395,93.52716,1.6425694e-05 1154,3.4250522,307.417,55.90866,178.98984,1.3976927e-05 1154,364.20618,425.84518,72.38611,72.482574,5.488241e-06 1154,583.22504,1.9259636,55.92163,214.6417,1.5487146e-06 1154,0.5634237,13.428063,13.745167,94.88676,6.962055e-07 1154,584.99445,6.047705,45.93756,46.365555,2.970672e-07 1154,118.1313,16.854643,59.156418,170.85797,3.0737336e-08 1154,388.17383,3.93327,44.63272,45.49428,4.991861e-10 1154,94.10783,3.9062696,44.41416,54.256725,9.335913e-11 1155,299.26578,211.83142,22.919739,51.913757,99.90687 1155,339.5362,210.77007,23.515167,54.93141,99.88573 1155,285.41907,212.94579,20.323547,50.400864,99.76631 1155,577.66876,267.35434,58.09784,148.97394,0.13334055 1155,149.5301,221.76118,22.744202,50.20842,0.07942898 1155,601.75214,213.6935,35.773376,144.53215,0.062123027 1155,568.2273,167.98973,39.381226,74.273224,0.03585301 1155,510.83038,209.8905,25.47992,52.44629,0.012722405 1155,610.85394,303.7168,23.677307,51.983032,0.010212479 1155,617.26013,256.30878,21.886536,73.224396,0.003182628 1155,421.07297,141.46118,42.723663,89.53465,0.0013576105 1155,579.96136,359.30023,58.861877,132.01807,0.0010515293 1155,621.3372,393.647,17.809448,67.79718,0.0005056862 1155,607.15424,429.31946,31.992432,75.89398,0.00044878392 1155,410.82294,216.25836,30.899475,66.351685,0.00041983183 1155,279.8128,190.47292,57.60211,90.054825,0.00034426237 1155,323.72998,179.35374,55.555786,104.77992,0.0003323304 1155,616.19336,170.14114,22.953308,78.70126,0.0002996481 1155,344.7537,152.01268,23.274597,49.11447,0.00018984028 1155,277.31235,147.63678,150.51736,221.4046,0.00013045712 1155,1.2286866,198.14842,18.86273,136.4893,0.00011331112 1155,616.8297,95.22744,22.316956,83.0543,0.000103166145 1155,4.271958,150.49252,56.68216,202.05219,3.7223872e-05 1155,1.453283,121.67318,18.68761,137.96811,2.1216527e-05 1155,600.26685,51.488537,38.812256,204.73476,1.4677898e-05 1155,610.139,13.24224,29.00769,115.86968,1.2780417e-05 1155,0.9437492,275.7125,18.629768,141.41,8.7144745e-06 1155,0.96017665,422.84344,16.827286,79.802704,6.2694767e-06 1155,3.4386964,279.68994,58.093147,198.4281,5.537081e-06 1155,3.4426026,429.35092,54.485073,70.76889,1.9147542e-06 1155,1.3882927,13.358919,21.048971,126.675125,1.5491726e-06 1155,0.23092774,3.530127,40.570747,59.109417,1.9676472e-08 1155,399.56125,6.528872,41.896576,46.276546,2.6068718e-09 1155,26.0907,4.025295,43.84356,52.542778,7.5054525e-11 1155,376.57065,2.1607358,42.331696,56.15903,2.4053561e-11 1156,302.17148,212.86874,21.985413,56.881256,99.68609 1156,358.74133,215.33913,24.572296,62.450607,99.58339 1156,289.48907,210.20428,20.308838,59.499847,96.82812 1156,610.6025,189.80263,27.670837,56.99774,0.4112333 1156,123.06659,238.51668,27.737366,53.582443,0.32340443 1156,591.9626,160.81084,35.240234,84.23338,0.038195588 1156,140.80165,208.17703,21.695694,48.018036,0.0069301226 1156,555.2738,217.27377,35.179504,67.629974,0.0042536254 1156,586.00714,117.06232,50.128662,201.67426,0.004058927 1156,281.1002,181.75029,47.95572,101.07265,0.0017618344 1156,622.80554,278.10315,16.341125,51.756042,0.0017001611 1156,573.5303,214.7018,37.18878,77.48024,0.0016320328 1156,102.14517,237.7954,34.725006,64.59624,0.0014707502 1156,343.03766,179.48479,56.22287,114.13628,0.0008124756 1156,83.54848,193.63124,34.18728,81.42589,0.00056019507 1156,546.0046,231.64807,25.187439,46.74179,0.00048023384 1156,620.0993,155.46095,19.047363,69.38611,0.0002973298 1156,2.613002,189.97449,34.252136,194.59067,0.0002700749 1156,602.4416,218.33656,35.411255,148.58104,0.00026372034 1156,609.7173,73.777916,29.429382,164.12521,0.00014275806 1156,346.027,130.26271,37.6846,87.86545,0.000112597365 1156,611.5326,341.8366,27.614075,144.39215,8.4684725e-05 1156,609.17377,442.69104,29.9729,62.83194,7.3441115e-05 1156,1.6680282,296.31235,18.845087,127.34338,4.629909e-05 1156,460.79242,214.17647,38.848846,116.08275,4.566692e-05 1156,310.28745,139.42444,130.94168,240.08093,3.7793052e-05 1156,270.85324,162.0162,90.66519,182.00162,2.6869873e-05 1156,82.62528,127.10663,37.049484,89.63785,1.9023488e-05 1156,3.7619615,294.8746,56.739967,172.14828,1.3272458e-05 1156,1.4202466,66.94343,18.665668,141.68362,1.0695948e-05 1156,1.4344255,354.034,27.43682,135.18393,8.148449e-06 1156,0.8553036,417.56537,15.488166,83.15506,4.4982075e-06 1156,3.7373943,54.701057,59.336845,270.74066,4.018923e-06 1156,586.8303,22.031315,52.316345,96.16693,5.864998e-07 1156,2.492588,18.188795,57.09987,118.23743,2.0889092e-07 1156,0.97799194,12.558503,13.02318,81.96337,1.5447577e-07 1156,392.55322,3.1111393,48.966217,51.1569,1.7055668e-09 1156,168.54938,5.271356,44.876312,50.023342,9.176793e-11 1157,379.03265,218.35956,33.291138,84.95416,99.969185 1157,304.87222,217.71657,27.750854,68.3954,99.81503 1157,292.81314,218.70602,22.545868,65.59036,98.66392 1157,68.94006,254.29793,38.04972,67.6747,5.150453 1157,370.96024,221.61649,19.87445,46.651886,1.9528598 1157,242.843,213.84589,24.30046,47.79724,0.74971783 1157,595.21674,230.8631,35.2641,68.02835,0.050415132 1157,57.82804,266.8547,29.156937,68.27188,0.032377336 1157,35.83257,266.0656,34.264164,73.956665,0.0039538923 1157,3.3528972,247.90776,33.25794,88.876144,0.0038155867 1157,610.7024,145.97554,28.142822,135.88045,0.0029235885 1157,5.2568994,166.15808,56.72716,201.29865,0.0016861057 1157,616.177,231.88313,22.969666,87.64186,0.0012702115 1157,585.3717,183.96811,51.9834,221.90033,0.0010501663 1157,365.14725,194.51573,66.45792,147.78838,0.00058512855 1157,617.97455,103.809875,21.17212,80.01567,0.00018876394 1157,1.3925521,266.68063,19.571846,134.54721,0.00015835048 1157,1.3482357,161.53471,19.080162,92.95076,0.00014408233 1157,611.33636,334.4754,27.810303,147.93481,6.7547146e-05 1157,285.05682,190.36913,70.64871,141.32341,6.2014245e-05 1157,608.7268,439.73923,30.41986,65.73151,5.767583e-05 1157,1.0684595,355.14575,20.57756,105.68552,1.6229778e-05 1157,3.5800376,305.1455,58.180454,178.83105,7.615919e-06 1157,1.0525179,420.96643,16.202465,81.20969,6.394973e-06 1157,583.3533,20.343607,55.628235,254.8632,4.736604e-06 1157,609.075,3.8759212,30.071655,60.333275,1.5184731e-06 1157,1.470944,60.446426,19.577927,154.90895,1.4727823e-06 1157,1.2580966,16.827845,14.654615,81.716484,1.0109077e-06 1157,3.5041032,428.5679,53.666435,71.92154,9.329275e-07 1157,2.5175114,15.154506,58.208527,117.541725,5.588452e-07 1157,0.84376955,8.179369,41.320515,58.19442,1.1531587e-07 1157,540.29364,7.915397,45.610046,48.26415,3.1054846e-08 1157,406.1564,1.9386947,47.194336,53.52016,4.8783266e-10 1157,66.61654,4.804523,46.742004,51.611168,8.23304e-11 1157,120.4278,5.317513,45.901176,54.95421,3.0527185e-11 1158,431.03888,211.33638,50.118317,133.89226,99.9814 1158,304.4534,208.2343,33.003937,82.962234,99.920975 1158,289.97397,208.95367,26.88736,78.65518,99.694244 1158,11.917504,224.76224,23.883797,62.652344,0.38995004 1158,439.64224,212.26105,29.983398,59.582428,0.013577133 1158,1.90632,203.24928,18.105234,85.61711,0.006828546 1158,584.8208,217.22525,30.37555,55.56482,0.005041573 1158,609.5099,206.46608,26.75769,62.97438,0.0041462835 1158,135.19815,244.95375,28.685577,61.62526,0.0029351932 1158,599.382,99.810646,38.722168,199.00116,0.0026245771 1158,1.5779036,127.58509,34.2159,191.28271,0.0021709278 1158,590.96094,268.4337,47.575195,198.65924,0.001092631 1158,454.9023,265.25787,23.760834,70.8909,0.00062998076 1158,620.7977,171.757,18.348938,56.563187,0.00059736933 1158,610.4937,359.63272,28.652954,142.66434,0.0004675238 1158,621.11383,100.882385,18.032837,53.61653,0.0003656184 1158,276.25687,182.0755,66.01471,141.95679,0.00034828088 1158,412.63647,206.71167,36.71942,123.075806,0.00033495418 1158,234.3101,190.93787,31.363846,63.707138,0.00030928905 1158,0.197146,94.76525,23.578163,106.99061,0.00020331063 1158,387.1883,155.30298,126.146484,233.28265,0.00019771501 1158,607.8891,6.4187565,30.865112,132.02129,9.428307e-05 1158,617.4572,288.28122,21.689453,82.333435,7.8501966e-05 1158,155.96205,112.25563,28.610107,60.832184,4.6858073e-05 1158,1.172618,239.25404,19.243996,140.53416,4.06019e-05 1158,3.368703,222.85315,56.80994,231.24988,2.2323626e-05 1158,2.2052052,51.24587,72.742165,208.74644,1.9291541e-05 1158,0.8829289,377.04022,19.284103,119.98462,9.020955e-06 1158,585.54236,4.069878,45.91443,51.86062,2.51098e-06 1158,3.277562,392.81967,57.56274,102.35684,2.325956e-06 1158,1.2072461,8.621517,21.177855,146.71373,7.7499934e-08 1158,3.0357733,7.202969,50.702267,78.7522,5.350732e-08 1158,79.6712,5.78208,45.341675,54.874325,3.8034518e-09 1158,226.98766,2.7112403,69.01497,60.93647,2.615857e-09 1158,106.670586,5.898148,45.323387,57.258183,4.843632e-10 1158,427.22913,6.9132977,44.23416,50.101807,4.1229872e-10 1158,168.65874,7.3462453,43.5325,47.0233,2.5848773e-10 1158,385.54974,1.4447689,43.705444,59.443954,4.020292e-11 1159,296.38812,213.97433,37.690704,92.996735,99.96432 1159,273.1014,213.13608,34.448273,91.35019,99.92545 1159,578.433,229.18771,60.713684,259.30002,99.865364 1159,335.37,212.36539,24.170532,47.699738,99.4896 1159,606.967,379.97797,30.783386,93.940125,1.0447798 1159,614.646,217.50592,24.500671,88.97308,0.025891868 1159,76.70327,254.1931,46.96392,118.57738,0.021442743 1159,608.1793,308.65033,30.967346,100.11786,0.00344397 1159,588.1519,267.75287,36.323914,122.041046,0.002251575 1159,268.05313,181.46565,92.50079,159.37508,0.0018138691 1159,2.173505,187.61266,29.482178,156.14952,0.0007584521 1159,618.076,284.067,21.070679,63.47876,0.00039127195 1159,615.708,462.35083,23.43866,46.114502,0.00038745842 1159,313.25775,187.35959,62.376984,100.0965,0.00014814507 1159,600.4017,91.28666,38.744995,246.80441,0.00012698934 1159,1.6490797,141.18439,19.41121,130.5473,0.00011016291 1159,1.305337,299.8839,18.235271,145.24323,3.375338e-05 1159,595.91925,12.605326,42.5813,84.72552,1.36093295e-05 1159,2.021247,23.52681,59.964,241.41371,8.683812e-06 1159,1.1394215,442.00476,20.677105,61.310028,6.5598124e-06 1159,3.3437517,391.33643,58.57417,103.06326,6.08308e-06 1159,1.6249056,41.247963,21.789944,151.98401,2.234428e-06 1159,1.0556625,9.460036,40.77011,91.6152,5.414465e-08 1159,165.35829,2.7037532,48.83763,61.195168,9.515192e-09 1159,462.8773,7.1516976,43.1268,48.012806,2.9588336e-09 1159,248.26964,0.3428418,53.02382,68.18691,1.222364e-09 1159,424.20773,3.573978,52.16739,59.126648,4.3169487e-10 1159,138.1581,0.11911133,49.422943,54.71619,6.9865704e-11 1160,231.0225,211.83498,42.236526,119.15144,99.97089 1160,259.99124,212.46136,44.177338,113.21936,99.890945 1160,378.24548,214.17924,23.857635,57.030045,83.97308 1160,102.128296,69.28212,23.24823,55.004784,1.5899556 1160,283.44846,208.79306,26.28897,72.86835,0.30960107 1160,245.26573,210.21634,22.102554,47.606934,0.024744015 1160,1.2249886,287.56427,41.92112,98.53146,0.008263164 1160,257.9,204.16197,23.50879,54.64995,0.002585712 1160,236.5772,193.33424,116.50151,162.73128,0.0012005079 1160,617.6203,208.32701,21.526367,78.501144,0.00037866825 1160,612.6567,255.05759,26.48999,129.41577,0.0001859495 1160,1.5175668,69.85928,22.619009,163.41728,0.00017418068 1160,586.56116,88.797226,50.678833,253.02196,0.00013579993 1160,609.84467,10.903412,29.302002,115.58098,0.00013351464 1160,569.5021,308.36047,26.85614,63.519012,0.00012366919 1160,617.0342,81.92533,22.112488,85.00033,0.00010120809 1160,3.6932325,108.43453,54.7792,229.5986,9.040451e-05 1160,366.20398,186.16862,54.455627,96.8705,8.625727e-05 1160,608.73987,442.81662,30.4068,65.322235,7.586045e-05 1160,602.95966,335.88437,36.18701,158.23627,6.1837316e-05 1160,0.89395756,316.08698,19.449385,163.15918,5.5895947e-05 1160,1.1873837,169.02982,19.01178,139.68732,3.6488374e-05 1160,2.4860644,263.06516,74.29701,190.30615,1.7794793e-05 1160,330.15863,130.33185,135.98395,226.19421,5.090365e-06 1160,1.1217424,443.30246,21.080748,60.511566,3.326565e-06 1160,2.919813,25.073097,55.7976,105.30082,2.2311192e-06 1160,1.2780477,38.167458,19.152182,81.974365,9.907332e-07 1160,2.7898698,387.15787,56.75445,106.697784,9.421834e-07 1160,568.6361,7.423747,67.22046,49.134716,1.4829263e-07 1160,139.72525,11.618096,86.01871,69.9188,6.802631e-08 1160,463.69177,5.865171,45.44699,54.818798,2.9363918e-08 1160,1.3735238,7.7574873,31.02319,66.04153,3.0309133e-09 1160,232.20503,1.9416146,49.66249,59.687714,4.391518e-10 1160,120.35667,4.3273177,47.881615,62.395065,1.497888e-10 1160,89.050835,3.7533855,43.0187,56.0636,6.632654e-11 1161,156.38013,214.43031,51.551254,146.37636,99.93718 1161,194.08176,207.7887,50.509506,154.2793,99.8509 1161,215.06746,208.04025,26.995544,61.632507,0.38204893 1161,184.81113,250.72397,21.613983,78.965576,0.024702528 1161,196.65823,207.31657,29.422028,69.2393,0.021387083 1161,363.98227,189.42964,24.690765,52.097336,0.010171409 1161,149.32358,163.94168,132.10196,238.08658,0.009215746 1161,222.65083,193.40044,38.847366,144.89299,0.004442034 1161,461.72992,210.91255,48.945343,131.19081,0.002156778 1161,38.163063,44.589928,25.267792,59.12136,0.0013409473 1161,199.81337,246.68509,26.183228,86.979645,0.0009551675 1161,611.3131,220.4948,27.833557,141.14491,0.00066422677 1161,472.24866,114.37238,22.695831,54.299522,0.0005651069 1161,230.29459,151.309,38.99997,90.77884,0.0005180901 1161,611.05396,343.4329,28.092712,144.2406,0.00040963473 1161,552.30664,219.74315,25.19043,47.113174,0.00039272732 1161,1.4182439,214.37384,18.732126,138.86658,0.0003873266 1161,617.0324,153.19936,22.114258,77.813644,0.00016417031 1161,585.4002,78.03777,52.41455,254.54852,9.781735e-05 1161,180.66968,159.52017,24.688675,50.914734,6.0797218e-05 1161,610.635,9.932992,28.511658,80.618805,5.8457128e-05 1161,484.5135,116.322395,20.302979,45.409798,5.596529e-05 1161,608.7434,439.7601,30.40326,66.292206,4.6661105e-05 1161,610.3926,45.081642,28.75409,137.73196,3.5866608e-05 1161,2.1652768,142.47563,33.353527,176.38896,2.2702783e-05 1161,439.9848,186.51591,110.35004,204.54457,1.9640203e-05 1161,4.229437,198.89828,59.025215,192.39279,1.4639454e-05 1161,0.8861068,312.58716,20.478233,105.46323,1.09796265e-05 1161,1.3636402,442.13242,20.16609,60.389954,1.01395535e-05 1161,1.3662468,352.96466,27.494482,138.8313,5.092968e-06 1161,2.5436263,13.173445,57.461098,114.953354,4.349521e-06 1161,1.047601,83.18266,19.59739,165.7256,3.889675e-06 1161,583.93274,8.847303,46.86664,49.13764,1.3261692e-07 1161,466.6502,5.2321568,45.512817,46.87191,1.3000202e-07 1161,511.146,12.222456,43.16095,49.060432,7.61889e-08 1161,1.5254688,8.750359,22.667622,60.35623,2.8709426e-08 1161,169.34099,6.170923,44.34099,52.528587,1.988204e-08 1161,138.70782,4.092956,47.383514,58.87534,1.4684836e-08 1161,441.96252,7.4809394,44.24124,50.499447,1.320648e-08 1161,546.5436,8.920755,44.636414,52.89422,1.0911179e-08 1161,113.041046,0.6963379,47.703964,65.26202,1.0254112e-08 1161,412.60623,4.797308,47.36087,52.905907,1.3029356e-09 1161,44.69241,3.4086883,47.080524,57.06394,2.9842914e-10 1161,217.72101,0.4401823,49.389923,60.25909,9.96711e-11 1161,335.16565,6.7512875,40.203613,54.82724,7.4566534e-11 1161,11.907141,3.9126449,43.50685,55.76811,5.830444e-11 1162,71.32276,237.2769,67.319435,194.105,99.93601 1162,116.494675,238.16832,70.168274,194.22511,99.885086 1162,202.84598,216.38902,25.24736,62.069992,0.12722634 1162,122.43235,235.95245,36.260292,89.22232,0.06784678 1162,150.55365,259.29105,30.846024,92.74124,0.0110076135 1162,365.7871,210.1803,24.929108,53.02896,0.009889344 1162,115.21893,232.48576,24.350052,65.452835,0.0019702236 1162,106.492355,282.53192,24.243958,81.271515,0.0009845254 1162,1.4564217,194.54654,19.98465,83.13452,0.0006958977 1162,222.62474,175.66873,37.49373,82.89877,0.00057759834 1162,483.71216,126.49224,22.704773,57.382347,0.00033096975 1162,82.015396,277.74246,25.366783,72.54816,0.0002841078 1162,1.7972453,209.57724,29.20494,146.32114,0.00027429374 1162,153.10085,317.4859,24.543884,63.3432,0.00022299081 1162,608.7743,11.6352215,30.355469,77.09158,0.00018189369 1162,233.23839,200.09784,19.022476,45.041534,9.4640345e-05 1162,3.015314,134.95044,56.545715,243.70795,7.693165e-05 1162,611.34686,43.973362,27.799805,140.10014,4.942195e-05 1162,130.48888,295.413,23.20935,91.88745,4.4527565e-05 1162,602.7811,307.99524,36.36554,177.85492,4.4399807e-05 1162,1.7254736,279.1711,18.52629,125.92511,4.2013402e-05 1162,1.1679672,346.84216,18.539022,133.74625,2.884278e-05 1162,609.58844,438.67075,29.558228,66.791046,2.8351618e-05 1162,602.4283,168.7881,36.259155,178.46425,1.9937128e-05 1162,533.8401,240.86542,83.32208,199.3363,1.1189563e-05 1162,1.2794662,442.25034,20.766788,60.857025,9.947003e-06 1162,2.7756526,388.5259,59.03867,106.70749,7.237683e-06 1162,1.6126091,44.52421,21.779387,157.79366,4.416213e-06 1162,94.205734,293.04843,25.35144,91.316895,3.920616e-06 1162,1.6292042,10.360222,58.434666,125.12072,1.5204785e-06 1162,1.0945866,9.5841055,16.33316,89.65222,2.2996022e-07 1162,485.92523,6.432969,45.538574,49.0827,1.2610109e-07 1162,578.0845,5.925049,47.95276,55.68041,9.5117855e-08 1162,448.71277,7.537199,44.451355,52.539948,1.525811e-08 1162,127.47723,8.210935,43.425713,46.828117,2.449434e-09 1162,92.81489,2.8289292,47.680397,55.496372,1.6477122e-09 1162,420.4908,6.6296163,44.96338,52.79342,8.580072e-10 1162,34.63525,1.650778,46.026043,56.16662,1.6889751e-10 1162,197.76555,0.5549089,48.424484,59.372272,6.1731335e-11 1163,11.949225,234.42584,92.375114,253.88416,98.98921 1163,2.582357,241.30327,37.9103,226.94429,23.72512 1163,534.0236,214.52477,32.188904,63.708908,5.2908616 1163,54.614708,254.87492,43.69732,140.03453,0.057181064 1163,110.09447,238.00925,38.40007,89.90033,0.048552822 1163,41.05825,288.59323,20.833973,56.270874,0.039265875 1163,0.51658285,296.33337,19.37973,103.232056,0.01731494 1163,41.768887,355.1269,22.21698,62.60678,0.015188277 1163,587.8586,199.27493,23.606567,47.37062,0.0117974635 1163,14.690065,299.78754,19.684675,73.40198,0.0091078775 1163,23.805012,274.53473,31.94844,109.64725,0.004354543 1163,51.78066,349.9398,34.641125,81.60739,0.0036070622 1163,67.22238,294.5829,22.05513,56.88217,0.0021555235 1163,218.49652,164.18689,21.991135,51.475006,0.000903142 1163,178.14618,201.63527,28.640045,63.347763,0.00087723247 1163,66.41907,324.23615,22.843971,61.86139,0.00084210734 1163,492.66495,92.92475,20.906158,51.289528,0.0005689039 1163,521.64746,167.14168,84.99487,170.26454,0.00040528772 1163,610.5855,240.48009,28.561157,139.84953,0.00022701579 1163,53.51149,296.38,23.07682,63.546112,0.00018391744 1163,608.7585,5.8961983,30.007446,50.146023,0.00011118967 1163,1.2818156,432.5692,22.23602,66.34247,3.2497104e-05 1163,585.33655,390.07538,53.81012,105.91113,2.8618817e-05 1163,1.4311972,96.897865,20.646599,157.10803,2.7210934e-05 1163,599.8021,11.871732,39.344543,200.0149,1.5778429e-05 1163,0.9483504,21.021238,20.717493,138.494,1.6089922e-07 1163,109.27422,10.207835,42.26458,50.017757,7.576199e-08 1163,434.47818,4.2538056,44.491272,65.0645,1.0623958e-08 1163,0.95333743,7.41181,20.632347,57.77401,3.394792e-09 1163,406.55054,3.3447592,47.11261,61.813786,8.8412955e-10 1164,228.56279,213.59311,21.687393,50.103546,93.18377 1164,581.8683,234.52597,34.76654,58.018646,90.63575 1164,386.43253,224.12433,25.166626,51.978973,0.14670834 1164,352.23468,198.62865,25.351074,55.99376,0.058449723 1164,19.783344,219.38722,24.534557,67.372604,0.044200145 1164,1.8642522,217.10199,20.251522,81.07065,0.01720025 1164,568.8877,205.06984,64.63446,106.60829,0.014109441 1164,5.109663,213.53316,55.073578,190.02025,0.013442488 1164,148.97725,205.13972,40.05133,71.248215,0.008013713 1164,490.2738,223.08604,34.33191,66.854294,0.0042953175 1164,621.6519,197.12251,17.494751,52.699753,0.0040776934 1164,48.000977,252.5735,43.496445,112.70827,0.0035545065 1164,200.765,174.68456,24.556488,57.465454,0.0031683282 1164,35.64239,217.78049,20.722408,54.086975,0.0018383625 1164,622.36664,235.97191,16.78003,53.764725,0.0012410219 1164,611.96277,223.76355,27.183899,126.71033,0.00091175095 1164,491.96307,84.99228,34.66577,91.9639,0.0008585066 1164,123.356445,186.99907,44.66913,115.1237,0.00071592827 1164,22.772736,225.33047,105.69902,185.0972,0.000577486 1164,75.78071,142.03938,43.058838,162.74129,0.00035230597 1164,609.63855,144.24438,29.508118,138.85123,0.00023278306 1164,607.9202,3.2407374,31.109314,53.158894,8.429104e-05 1164,1.6323006,283.11688,20.077452,141.96094,5.6857458e-05 1164,609.26056,441.4637,29.886108,63.009216,4.238134e-05 1164,587.63275,11.503457,49.97986,107.652565,3.7934165e-05 1164,539.7836,146.66068,96.84943,242.0722,2.932282e-05 1164,611.19727,53.754272,27.949402,142.9019,2.4881254e-05 1164,612.4275,336.65463,26.719177,143.2507,2.366649e-05 1164,2.6445882,139.84825,34.123734,193.27617,1.7968083e-05 1164,3.2981122,384.8174,58.17306,108.98602,8.38912e-06 1164,203.92732,168.52458,78.88637,156.19023,5.2514297e-06 1164,1.1915056,92.85107,18.906048,159.0495,5.203687e-07 1164,79.30432,11.869396,46.75889,49.753574,1.4356328e-07 1164,449.02267,9.869733,42.348236,57.55559,1.428929e-07 1164,1.354235,26.962526,19.029879,133.57378,5.960219e-08 1164,2.1214225,20.018614,57.864037,114.21341,4.435938e-08 1164,307.7395,6.6032357,42.165894,58.15669,3.9450416e-09 1164,1.3227409,9.42871,21.91994,55.78476,2.3985782e-09 1164,143.43044,6.096213,45.916946,50.22745,1.3121982e-09 1164,422.1454,4.492334,44.73404,58.645092,8.881963e-10 1164,334.88724,4.972601,41.26953,57.160507,2.3275624e-10 1164,392.3176,2.7527084,47.375854,64.4629,1.10676135e-10 1164,359.70508,3.745625,46.067078,57.981213,8.4033516e-11 1165,225.67285,219.34802,23.908691,49.344482,99.65884 1165,408.42258,231.61703,24.689056,54.937775,0.5215282 1165,539.89374,257.22803,19.007019,45.607483,0.18054911 1165,523.5909,230.73982,23.150513,54.18495,0.032321855 1165,2.0971258,184.50229,32.033115,100.692566,0.02934699 1165,359.08267,204.16875,27.505005,59.21013,0.027382007 1165,380.61078,231.21457,23.150024,52.68683,0.023403116 1165,521.5847,81.33787,37.59314,89.52935,0.010816502 1165,530.5289,236.18996,36.180115,84.83214,0.0066914107 1165,342.7521,124.876724,26.21054,56.958694,0.006361305 1165,18.20598,295.69888,23.718546,48.785583,0.005372321 1165,3.742041,241.65948,52.956177,173.4595,0.0049877088 1165,13.122086,164.96475,43.84492,160.10068,0.0015461283 1165,611.67584,197.63329,27.470825,130.92973,0.0008335198 1165,194.20906,167.31712,27.05188,62.075928,0.00078681944 1165,495.05142,53.633816,43.40988,162.57277,0.0005152411 1165,43.620014,169.23198,42.63912,127.32463,0.0005107568 1165,541.8778,89.55131,24.67212,63.378624,0.00037141575 1165,566.69775,244.37315,44.149048,70.23012,0.00029789458 1165,616.7962,43.62548,22.350464,84.22293,0.00013789006 1165,607.0594,434.1902,32.08728,72.293274,0.00011455543 1165,87.11975,176.94281,79.51906,160.11807,7.500913e-05 1165,601.866,65.81078,36.813354,205.2009,6.698347e-05 1165,1.8732544,284.36664,20.770464,149.38034,6.2101666e-05 1165,601.0295,248.02966,37.753662,182.95706,4.6110057e-05 1165,549.55255,384.84937,88.24744,112.42502,2.7469741e-05 1165,464.9522,280.43018,80.466125,187.27295,2.6911363e-05 1165,206.07704,184.26437,63.15074,107.19913,1.4725176e-05 1165,612.4661,2.6783822,26.680542,60.303753,1.127413e-05 1165,1.4161947,77.34407,19.074274,146.98825,5.3634894e-06 1165,3.3966146,381.662,57.189274,112.3085,3.8112566e-06 1165,179.04414,147.38771,135.05162,223.59694,3.173244e-06 1165,488.53284,11.343591,41.136963,54.87522,4.8012004e-07 1165,2.6135905,26.852718,57.998936,98.58005,1.5173286e-07 1165,464.03073,8.322058,42.111664,59.54277,1.72667e-08 1165,307.9762,6.6979103,41.145905,54.79437,9.909262e-10 1165,435.85062,6.5317693,43.8443,56.34389,8.6700247e-10 1165,355.54178,2.9572527,44.042084,55.241276,6.2942435e-10 1165,67.48845,7.4948506,43.35321,46.563873,6.2033534e-10 1165,408.00912,6.757116,45.18936,57.586674,3.14583e-10 1165,1.4661857,11.201096,21.00012,53.067627,3.0841663e-10 1165,178.33005,3.0195117,45.398834,59.606823,4.7451106e-11 1166,237.89688,211.49937,25.152466,54.40349,99.934235 1166,407.72238,225.47235,26.48236,53.840515,0.8167505 1166,441.70413,225.9477,24.668213,52.798523,0.3996835 1166,383.3097,202.8305,22.24524,54.89032,0.043217946 1166,600.554,225.81206,37.10785,59.343246,0.028569467 1166,5.4091816,133.74005,62.379524,196.70392,0.015186047 1166,623.4978,216.52072,15.648865,49.71579,0.009596578 1166,567.74963,54.54948,32.75421,91.14946,0.0041166167 1166,208.70082,169.63412,25.786163,64.71887,0.0015725442 1166,165.51762,210.06508,30.867142,64.800735,0.0014874169 1166,602.7356,233.84709,35.117554,190.38078,0.0011358333 1166,621.6761,141.39583,17.470581,55.57309,0.00088421546 1166,1.6176864,191.98419,19.367336,143.20093,0.00048416096 1166,581.0848,12.141355,56.81952,144.41826,0.00040147002 1166,611.56616,107.84486,27.580505,149.14359,0.0003398141 1166,611.42633,343.8187,27.720337,143.04648,0.00014592691 1166,219.50133,182.32057,64.6653,103.011826,0.00013722364 1166,366.4297,113.113235,28.05075,53.01065,9.054342e-05 1166,2.466802,95.856476,30.826818,168.79764,4.471638e-05 1166,540.47003,18.300964,45.44098,162.3037,1.4531126e-05 1166,0.9273169,290.40198,18.72903,145.19574,1.0504245e-05 1166,609.09094,0.07731771,30.055725,65.58445,6.7145534e-06 1166,190.05536,140.32904,132.36032,224.50793,6.53339e-06 1166,3.5097005,282.4877,57.45457,190.42886,5.390894e-06 1166,481.8495,242.31305,79.60211,189.06992,4.4007165e-06 1166,0.8007235,421.07556,16.358353,81.22861,3.442238e-06 1166,1.0725619,356.0637,28.062277,137.58414,3.2503174e-06 1166,540.8778,6.3451176,44.478455,58.42897,1.1636808e-06 1166,2.9511914,428.85757,53.62892,70.44055,6.357852e-07 1166,572.0017,4.4821744,43.09375,62.624783,2.9677102e-07 1166,2.2569206,17.09653,58.354618,121.82329,9.462205e-08 1166,496.88022,7.7914734,63.480865,48.800194,4.8169007e-08 1166,1.3455338,9.662436,15.465811,75.0136,1.08762706e-08 1166,387.3105,4.145723,83.91672,221.79051,7.227009e-09 1166,468.64215,6.3412256,44.3844,46.959408,3.6921175e-09 1166,5.208965,7.3985467,47.051544,50.998283,3.6882886e-09 1166,91.96805,5.713252,45.064255,49.27603,3.5408276e-09 1166,442.20026,5.882575,46.169067,53.66391,2.3240811e-09 1166,414.49313,4.450762,45.725006,58.78852,1.4209235e-09 1166,346.01505,6.1150994,44.815247,50.752186,7.434461e-10 1166,386.35727,0.4999707,47.516266,65.62665,4.061482e-10 1166,179.21938,7.4522934,41.738358,52.368595,6.878096e-11 1166,208.93729,2.2615821,46.01944,59.48605,3.841672e-12 1167,251.04874,228.26813,26.483734,57.48987,99.95436 1167,237.86589,231.10513,22.412308,47.80081,30.277971 1167,438.34412,242.44913,37.693512,64.72299,0.16372553 1167,410.77664,220.81497,23.021149,54.854523,0.028733527 1167,214.85306,175.77707,33.364685,79.33177,0.01776687 1167,167.36368,230.18358,26.309143,52.37355,0.007199985 1167,484.1756,256.3116,25.296356,47.63974,0.0069588628 1167,561.422,286.1934,70.40802,188.11725,0.004485581 1167,566.3659,352.1864,28.895569,75.78311,0.004266093 1167,222.16725,201.48889,61.882828,104.75058,0.0035261498 1167,388.1589,115.070526,36.13553,76.31526,0.0018361779 1167,602.81104,31.383848,36.30945,102.106,0.00078241585 1167,150.02182,213.76868,39.174164,104.86127,0.0005953867 1167,1.9057398,253.05446,19.636345,129.90804,0.00054806325 1167,107.31418,239.221,35.817642,84.102554,0.0004541438 1167,78.409096,273.48618,35.661583,81.58499,0.00037988648 1167,611.93787,230.3762,27.208801,127.85884,0.00032307912 1167,6.3340464,222.75198,89.478645,180.11456,0.00030520567 1167,611.40704,372.40927,27.739624,130.25809,0.00026776755 1167,611.5334,99.096344,27.613281,150.5008,0.00016945273 1167,1.5540715,160.86667,19.660873,142.6864,2.6415375e-05 1167,586.68066,38.858997,52.22693,268.10013,2.2945613e-05 1167,78.03574,214.32365,83.35598,167.02086,1.5805674e-05 1167,1.7847421,88.07149,18.840929,135.15672,1.4456871e-05 1167,0.93001795,349.94012,19.215502,143.67426,1.4382941e-05 1167,200.8542,157.1241,129.14534,223.74257,1.3107549e-05 1167,352.99127,154.42905,95.493256,234.06348,6.9926664e-06 1167,3.1783693,326.14566,58.7053,158.03452,4.9984064e-06 1167,566.2416,8.504622,72.8006,70.64501,4.199201e-06 1167,3.2584164,429.93588,53.09721,69.35794,4.6606777e-07 1167,393.25372,11.366745,133.33002,266.09503,3.8984825e-07 1167,1.8343782,19.182539,29.78059,143.15327,4.608583e-08 1167,2.4028776,21.099207,63.953102,258.6274,3.4493457e-08 1167,1.1858512,6.4828744,41.083538,51.276787,2.8803546e-08 1167,0.9923991,12.61736,12.981771,82.4023,2.779245e-08 1167,518.0183,10.205771,85.5376,76.25008,2.1826155e-08 1167,469.97095,7.6127005,43.78949,51.190388,1.2014986e-08 1167,69.047585,5.404974,50.821556,58.206955,9.534158e-09 1167,547.2553,6.6787972,45.16327,45.720604,8.6162535e-09 1167,521.284,4.8337517,44.21234,48.074654,4.1571973e-09 1167,441.98047,5.667868,45.244904,58.374466,3.6119459e-09 1167,498.15143,6.5906544,43.65332,50.391968,2.3557056e-09 1167,395.0094,2.590853,63.965607,57.83687,2.1625746e-09 1167,366.96008,7.186514,42.41739,48.59771,1.420536e-09 1167,98.9699,7.3827457,45.72547,49.968857,1.1787085e-09 1167,212.36061,2.7935646,44.579178,61.0967,1.4916065e-11 1168,216.92693,220.03728,25.674988,63.46498,99.974365 1168,198.61508,220.89969,22.997894,59.927673,99.85221 1168,360.46887,218.62547,22.34787,47.68257,84.325935 1168,442.43646,232.77165,40.97757,70.84398,5.0095215 1168,5.9495535,203.64166,32.051346,86.66644,0.94935614 1168,174.22542,218.33878,36.439667,69.48566,0.11413172 1168,94.30627,222.85664,29.94471,67.78746,0.03593779 1168,401.53543,201.0095,23.514404,52.728333,0.022415804 1168,184.74849,200.32193,56.99733,102.69595,0.022051023 1168,1.4499301,210.05606,15.65609,73.56375,0.0050631827 1168,4.4249544,155.16342,51.046455,213.76355,0.0048358277 1168,466.27805,253.1084,26.911133,53.2258,0.0041361894 1168,616.34973,260.58246,22.796936,92.21005,0.0035679175 1168,496.80246,253.61958,26.159027,47.070633,0.003189239 1168,616.55475,74.80061,22.591919,95.3239,0.0003450927 1168,587.86505,208.44565,51.281616,220.1535,0.00034487687 1168,615.0379,17.415049,24.108765,91.303955,0.00015810045 1168,1.6938477,226.996,19.516155,160.0951,0.00014734476 1168,72.49369,196.19553,76.17907,169.54208,0.000115756426 1168,602.8887,91.51394,36.257996,221.11615,0.00010708354 1168,611.4964,354.79562,27.650269,141.48767,5.262018e-05 1168,171.30844,154.82855,129.41513,216.65561,2.8820124e-05 1168,613.2202,0.481709,25.926453,45.82539,2.2214464e-05 1168,0.9106478,335.03146,19.180737,137.88406,1.236044e-05 1168,339.52097,152.46042,91.48105,218.9497,1.0417215e-05 1168,1.4308497,75.131386,21.681503,168.259,8.471559e-06 1168,0.82911867,421.44394,17.127798,80.79233,2.32695e-06 1168,3.5202882,322.5402,57.638412,161.89658,2.1790488e-06 1168,2.1191602,17.788692,58.247795,120.64549,1.0839956e-06 1168,1.2147437,11.307028,15.500758,89.97539,6.118845e-08 1168,412.60757,2.8423178,47.91031,66.60698,4.2471076e-08 1168,587.4895,4.108296,42.426636,55.423946,1.9393118e-08 1168,1.117072,6.163202,35.826633,51.24955,1.750626e-08 1168,462.55075,5.2235565,43.843018,50.16828,1.4155654e-08 1168,365.69617,0.48842123,67.6525,62.05761,1.6413543e-09 1168,345.2966,7.109118,45.33609,47.441574,1.6173288e-09 1169,176.01332,199.03537,29.902618,72.65765,99.971504 1169,154.2016,198.80788,30.704468,69.73802,99.96042 1169,354.24518,203.5434,22.660767,52.452606,98.29175 1169,483.48193,247.15536,26.289062,56.320618,0.55822706 1169,498.86688,238.8387,41.08551,78.54195,0.30499935 1169,468.2925,214.54198,51.075653,108.99211,0.01456245 1169,342.2214,200.43904,21.150513,46.94307,0.013887575 1169,619.3768,47.38822,19.769897,58.57196,0.0035510943 1169,524.5057,232.17404,34.30121,72.36511,0.002151525 1169,389.46457,166.9974,24.462341,48.142715,0.002128344 1169,98.98713,189.77547,58.527534,145.3113,0.0014346585 1169,135.44077,159.91318,70.18829,152.61533,0.0012592261 1169,1.5150497,112.99924,20.260427,89.67297,0.0008227506 1169,613.4722,179.56223,25.674438,125.95734,0.00028543742 1169,2.9574676,49.943577,56.991623,215.05936,0.00021440833 1169,611.8458,249.09076,27.300842,132.51361,0.00019506902 1169,597.24,7.754317,41.41443,80.25051,0.00015486371 1169,610.0364,46.200966,29.11029,173.53217,0.000113809176 1169,338.13516,167.84161,55.308533,102.957306,8.952467e-05 1169,617.3139,333.2472,21.832764,82.41562,7.987443e-05 1169,444.936,182.13704,121.40201,193.75096,5.9923128e-05 1169,611.97253,367.69434,27.174133,130.85458,5.605706e-05 1169,1.8712273,21.484604,32.739952,136.96599,4.2649917e-05 1169,1.5834644,218.72633,19.135277,126.515305,3.782709e-05 1169,0.6936735,354.18185,20.853382,107.420746,1.1901906e-05 1169,312.07098,119.10025,132.37622,236.77496,5.459957e-06 1169,3.6167629,229.93886,57.835243,217.78542,5.0164e-06 1169,0.8844401,421.44547,16.733976,80.884705,3.5629455e-06 1169,1.5884701,8.95169,24.350563,70.770744,3.4001625e-06 1169,5.560026,24.600756,97.291565,124.06552,2.9138323e-06 1169,568.571,12.220958,70.40192,148.54225,1.6716049e-06 1169,2.8978045,395.06705,56.971268,99.66098,1.1668369e-06 1169,32.885944,6.9343653,45.137585,61.564026,1.3866756e-07 1169,412.506,2.066325,67.18765,53.08069,1.7228801e-08 1169,454.49805,2.6929786,45.661407,65.11718,1.5007658e-09 1169,327.8439,4.6170883,45.61554,45.299545,9.646925e-10 1169,137.21819,7.5804787,43.011353,50.8893,1.2219042e-10 1169,163.17142,7.6070037,42.38974,50.99673,4.9395488e-11 1170,90.92196,216.25017,41.362617,92.84776,99.972435 1170,126.07097,216.86636,41.27588,94.45853,99.969986 1170,356.51233,221.94814,23.501984,58.14894,99.52574 1170,490.04913,237.44328,22.82434,51.85771,0.03814268 1170,82.90202,221.97948,24.25351,65.2119,0.02042631 1170,621.17303,294.7278,17.973633,64.72821,0.0107670035 1170,610.78815,193.97137,28.35852,159.94244,0.007403006 1170,473.12476,67.00188,26.214478,56.653465,0.005807565 1170,619.2257,30.575548,19.92096,76.26444,0.004626762 1170,90.635185,182.4657,98.97193,156.60263,0.002751553 1170,14.361201,233.95427,79.15931,160.98369,0.0025522371 1170,393.80176,178.67146,23.447235,50.397873,0.0018770855 1170,67.276405,231.24615,23.761253,53.515167,0.0016594448 1170,529.46704,234.29933,88.47266,164.92384,0.0006017986 1170,1.9377947,194.35948,36.302917,176.42928,0.0005070818 1170,611.7566,307.64706,27.390076,148.77274,0.00021468557 1170,601.67944,9.607429,37.185913,66.05187,0.00017805025 1170,1.0886832,185.10936,19.700731,79.02229,0.00014053569 1170,154.38966,205.49791,34.271057,108.03352,6.7083325e-05 1170,333.92566,160.78099,73.9361,181.03139,6.296453e-05 1170,609.5488,45.1762,29.59784,208.87323,4.840004e-05 1170,1.5941813,283.10666,19.39786,155.24792,4.5051667e-05 1170,584.1466,390.1596,55.00006,105.39993,4.3149244e-05 1170,2.2749708,297.11584,62.790337,195.59036,4.230627e-05 1170,609.0983,440.0136,30.04834,64.64969,4.1841948e-05 1170,1.4789958,89.14601,28.55603,154.36327,2.6713195e-05 1170,3.7744808,70.60681,57.560837,237.53091,1.9902895e-05 1170,0.7955469,416.99457,17.442516,84.75842,7.4564155e-06 1170,463.09933,5.717279,46.07184,137.99129,1.676231e-06 1170,580.5771,8.138754,40.174255,50.901405,3.259939e-07 1170,1.118322,26.831642,18.391712,119.46494,2.4064715e-07 1170,2.5428271,23.59894,57.05412,107.27086,2.3597102e-07 1170,71.09157,29.251837,81.7144,268.55084,1.8537553e-07 1170,0.87940514,12.074934,23.91594,54.832954,7.295833e-08 1170,442.6681,3.6540463,46.525513,63.779327,3.3319958e-09 1170,479.07547,0.0,50.18515,72.813065,3.010879e-09 1170,401.7862,6.8049936,44.967926,55.320217,2.4830293e-09 1170,305.6336,5.9662533,43.220886,52.1548,1.3165755e-09 1170,368.46942,5.655233,43.911774,53.860252,3.228266e-10 1170,75.50252,7.9189506,42.76013,48.51417,1.4112157e-10 1170,101.06826,4.6670527,44.16491,51.4814,8.442548e-12 1171,13.794097,220.13896,56.54454,124.17616,99.97887 1171,58.980354,221.86061,56.944283,122.399124,99.96397 1171,365.88715,225.00363,25.536896,69.6543,99.927086 1171,540.74927,264.93228,23.073914,46.768005,0.2999183 1171,2.8985205,224.8943,26.396465,93.999405,0.097514465 1171,530.07056,231.81224,27.84314,64.73027,0.032638907 1171,5.232341,151.99576,110.07609,262.44785,0.00908646 1171,624.9039,290.62903,14.242798,45.529266,0.006681126 1171,610.9321,249.46693,28.214539,122.49577,0.0017708598 1171,30.725986,262.07248,26.242329,73.53192,0.0015062221 1171,601.537,304.84192,37.60968,181.03284,0.00018627837 1171,422.20834,178.43846,23.232513,51.420288,0.00013555874 1171,1.5261117,176.38022,19.91156,100.64987,0.00012128878 1171,617.2122,203.5945,21.934448,82.58879,6.879864e-05 1171,341.99707,179.37082,75.71005,155.79852,6.7379544e-05 1171,611.96985,0.0,27.176819,92.249275,6.556897e-05 1171,608.77637,438.76273,30.3703,66.33661,3.9093415e-05 1171,586.64105,149.70284,52.043823,228.66219,3.8690247e-05 1171,609.58154,93.78337,29.565125,165.39247,2.2425624e-05 1171,0.860153,275.29276,19.899937,159.77466,1.6627844e-05 1171,0.8240552,384.24377,19.393719,114.14343,4.5063225e-06 1171,1.6083692,52.348984,34.91363,252.48894,4.064552e-06 1171,1.7165763,48.629642,18.92711,138.60542,1.9800843e-06 1171,4.8007812,343.67923,79.354706,146.1659,8.1084767e-07 1171,2.2801466,8.782181,58.556416,146.04155,8.8630344e-08 1171,479.0212,24.555723,43.4628,141.44533,2.7913256e-08 1171,423.4062,3.0274658,46.57553,50.6383,1.3361466e-08 1171,313.9946,5.486626,44.94931,46.23135,5.1824265e-09 1171,88.083206,0.88314456,45.645386,58.027378,3.812705e-09 1171,454.95825,3.0730436,44.766876,63.715446,1.0607552e-09 1171,490.39133,4.487344,44.868134,64.599625,3.5713002e-10 1171,293.35855,2.8852735,43.071503,58.64898,3.1571906e-10 1171,516.1704,7.382303,44.364624,56.137413,4.6911704e-11 1172,391.88895,221.73761,33.763428,89.66751,99.96345 1172,412.174,215.58774,33.950165,72.42853,0.31532797 1172,139.61324,212.06514,23.50232,58.270004,0.006720744 1172,341.536,224.09373,23.925446,50.86528,0.0060901255 1172,621.1518,258.69186,17.994873,51.84738,0.0053846817 1172,0.0,238.91899,25.397337,99.68242,0.0027590785 1172,432.73602,210.12552,40.333374,101.98804,0.0023727834 1172,611.8385,239.8186,27.308167,124.805115,0.0018288223 1172,617.05304,204.92198,22.093628,83.81563,0.0005790069 1172,586.9435,232.25279,51.518433,220.47816,0.0004980134 1172,25.000437,229.75813,26.668764,71.74132,0.0003885156 1172,621.9245,365.79184,17.222168,53.099884,0.00021638423 1172,16.770124,191.30742,48.01648,144.97325,0.0001863507 1172,616.3461,398.4798,22.800537,82.746216,0.00017527696 1172,1.4177995,95.51824,18.993048,141.63104,0.00016786231 1172,362.1249,174.50073,94.62952,181.2616,0.00012159291 1172,617.38556,313.1823,21.761108,85.22308,0.00010137577 1172,0.0020515951,298.3589,19.992962,93.063385,8.615886e-05 1172,601.6809,121.462074,37.40741,213.17108,6.783343e-05 1172,4.7797756,209.55467,78.58021,251.17506,3.9950817e-05 1172,612.48126,3.7381577,26.665405,121.2669,2.7584934e-05 1172,0.13156576,281.1746,13.23814,54.478027,2.7340058e-05 1172,579.37805,421.82675,59.768616,76.30853,2.7107746e-05 1172,1.2598715,196.43855,18.406757,90.199875,2.4584344e-05 1172,4.811877,56.862,46.96881,159.93513,2.2033773e-05 1172,0.49083334,282.73114,33.571384,201.41278,1.6604707e-05 1172,0.9669165,406.36557,18.092163,72.74158,8.855591e-06 1172,0.485166,357.6118,18.829906,82.5228,6.6346693e-06 1172,574.2678,3.5920215,62.731018,49.226334,2.1479025e-06 1172,3.1604412,396.8437,56.848907,98.00415,1.2734205e-06 1172,1.0713029,31.967104,20.00934,92.947044,1.7283381e-07 1172,384.21286,12.354694,40.72397,51.95241,4.2472536e-08 1172,342.26074,11.476317,40.2117,52.728073,3.972195e-08 1172,539.5606,4.03008,44.17743,55.491283,2.918869e-08 1172,409.1184,6.823317,89.117035,75.8193,5.8208274e-09 1172,0.9928662,7.0681643,30.905767,66.43707,4.423777e-09 1172,96.00297,3.0169094,41.529625,52.32882,2.3274394e-09 1172,457.48886,2.1152475,47.631348,55.195778,8.098881e-10 1172,314.57794,7.8457456,41.305206,56.98479,7.129768e-10 1173,469.89084,224.453,47.011566,131.53464,99.97399 1173,38.256943,187.2698,25.501957,57.49765,0.2071698 1173,533.15497,203.20967,34.651794,78.20143,0.07615689 1173,561.07874,274.58835,20.488647,47.68051,0.041271448 1173,49.67197,200.19113,28.689793,59.637268,0.01885873 1173,138.56284,143.4516,28.882309,53.05493,0.016072042 1173,481.28018,213.91269,27.722748,55.908173,0.0074383593 1173,567.2677,292.3263,41.542847,91.45343,0.0032112494 1173,0.9948422,128.21219,22.061325,113.93057,0.0030350648 1173,0.8376201,177.8385,12.789754,50.310287,0.001821404 1173,8.463599,176.67715,26.421535,59.777847,0.0010699264 1173,537.83185,233.0667,93.36572,224.41566,0.0010245686 1173,149.18428,212.96669,24.454193,49.71672,0.0010227624 1173,41.568497,178.8547,43.447914,134.67099,0.0006952582 1173,381.7175,231.74667,25.423859,55.835144,0.00066412543 1173,426.26556,147.91156,125.70538,266.19366,0.00053259206 1173,3.3113804,96.72213,55.06263,227.94104,0.0003027191 1173,617.53546,320.88217,21.611206,82.2117,0.00024503874 1173,611.4888,141.91325,27.657898,139.4919,0.00023883299 1173,611.93823,366.90137,27.208435,129.58902,0.00016527215 1173,1.1976042,198.12622,19.410542,92.24863,0.0001258654 1173,602.96844,196.53175,36.178223,189.87099,9.8606724e-05 1173,1.3357716,253.2396,18.288622,72.34015,3.194444e-05 1173,610.4927,2.7349837,28.653992,57.38012,1.165366e-05 1173,611.50543,41.083782,27.641235,145.99336,9.900894e-06 1173,0.91275394,316.51132,19.625896,134.92624,9.23069e-06 1173,3.5826466,228.90437,57.668697,237.93776,7.527148e-06 1173,586.6726,11.424811,51.602295,110.510765,5.71154e-06 1173,255.37537,159.97314,99.19751,197.18219,4.5984984e-06 1173,0.87629724,421.8741,16.41486,80.938385,3.071498e-06 1173,3.3655844,395.60046,56.539574,99.0968,1.1348656e-06 1173,354.23755,10.25139,43.890778,52.89981,6.519496e-07 1173,2.1047869,17.338308,57.476486,114.591194,2.9324306e-07 1173,0.79572594,9.521832,13.584497,89.53187,8.3329454e-08 1173,382.30518,9.614395,42.511047,50.29739,6.221513e-08 1173,432.6677,8.148232,40.99597,54.994667,5.034569e-08 1173,1.4610189,7.030088,39.381363,49.52377,6.5307146e-09 1173,449.31226,4.14819,62.593628,52.563946,5.4425326e-09 1173,121.192085,3.5695086,45.159264,53.287487,4.8286086e-09 1173,518.43335,3.743379,44.500854,61.99299,7.772813e-10 1173,328.8479,5.2248926,40.559998,55.132088,3.6292355e-10 1173,558.4607,2.3179166,44.188354,56.594143,3.41347e-10 1174,39.487522,163.4333,26.33965,65.00729,0.0024638833 1174,618.6345,37.153713,20.512146,66.25644,0.0024232182 1174,4.554479,132.83202,69.84173,207.826,0.0012753446 1174,22.17732,164.63278,27.860521,63.393677,0.00096113974 1174,598.8621,56.97059,40.284546,215.03448,0.0005070528 1174,622.19995,231.31116,16.946716,53.16159,0.00028926105 1174,2.088828,146.32748,35.77119,94.04773,0.00028590165 1174,617.00226,268.85345,22.14441,84.65274,0.0002708314 1174,617.79755,394.78284,21.349121,78.149414,0.0002451383 1174,614.8594,90.34289,24.287292,95.086525,0.00024276625 1174,456.74615,228.74617,33.475677,78.18208,0.00021438093 1174,431.3764,60.398544,34.97992,75.92557,0.00021259961 1174,289.0124,187.66212,43.81076,81.89433,0.00015242613 1174,612.2137,300.75992,26.932983,142.40833,0.00014886196 1174,584.5731,7.726517,53.894165,117.45114,0.00011172251 1174,0.98917115,312.38818,13.539112,55.513855,0.00010199514 1174,140.12318,126.935486,28.737701,63.804916,9.9902754e-05 1174,1.2449048,194.82933,14.545588,58.23094,9.530169e-05 1174,453.6908,257.61963,18.516449,45.47638,8.584358e-05 1174,611.53424,193.03354,27.612427,118.909485,6.757568e-05 1174,1.4434025,187.90378,20.806416,161.78238,6.55806e-05 1174,430.09604,153.3503,33.72293,75.935074,5.6236815e-05 1174,612.7999,0.0,26.34674,47.257824,4.872478e-05 1174,586.89575,153.2708,51.694397,253.16249,4.1393818e-05 1174,573.15796,353.5724,65.36853,131.11761,3.9381957e-05 1174,609.4899,440.6493,29.656738,63.7453,3.4855824e-05 1174,1.0169157,81.982765,20.068094,93.33869,3.0614505e-05 1174,1.5999821,271.7133,27.754902,139.45303,2.648641e-05 1174,1.0827547,268.12845,13.734371,52.991516,2.172339e-05 1174,0.8330249,334.74786,19.097593,144.29773,1.6454764e-05 1174,3.3998342,233.44044,57.947433,230.1567,1.5923033e-05 1174,221.03555,447.85474,40.06848,50.142365,7.876235e-06 1174,265.3331,157.82756,89.766266,192.61208,3.08379e-06 1174,2.9869614,390.06284,56.763893,105.0824,3.0739243e-06 1174,1.0019287,442.80768,21.837532,60.87088,2.974529e-06 1174,1.0697119,8.7732,37.61711,84.53042,5.789542e-07 1174,2.224463,1.1033204,81.82348,181.52759,6.437126e-08 1174,503.04788,5.958496,46.662994,58.488358,6.0077454e-08 1174,475.30325,5.3706675,44.747894,52.69582,8.245321e-09 1174,531.23016,5.773877,44.415222,55.47392,7.541766e-09 1174,160.99812,6.263311,43.462357,48.507553,6.5638086e-09 1174,115.82757,4.3595834,42.04693,51.124817,6.395842e-09 1174,401.1121,7.116167,43.628296,46.418648,4.357353e-09 1174,571.283,3.180231,49.235596,60.410538,4.3136423e-09 1174,450.2814,6.0153174,42.845,46.20324,1.136948e-09 1174,374.8865,5.1812177,43.342346,51.749554,2.3790397e-10 1174,348.4706,2.6993701,41.098785,47.41284,5.5850277e-12 1175,610.7272,245.81659,27.959473,119.676056,0.0017039789 1175,537.5655,290.05563,22.147217,52.754272,0.0014261451 1175,617.83966,224.84673,21.307007,68.74495,0.0011990605 1175,595.3242,313.42026,21.919617,50.233917,0.0010396872 1175,588.2517,262.8109,48.965576,197.75851,0.0008338346 1175,1.2045898,200.78342,13.09065,48.23732,0.0006825876 1175,282.7592,194.34479,43.347046,63.928986,0.0005458756 1175,220.89684,182.81912,29.278381,60.81015,0.00036528523 1175,616.7758,322.361,22.37085,82.51877,0.0003025543 1175,616.9317,387.60162,22.214966,81.83725,0.00019027348 1175,163.0445,174.08894,36.912155,90.15675,0.00010984178 1175,600.12787,115.43982,38.601013,193.17722,9.9100245e-05 1175,617.4253,87.12607,21.721375,75.21948,9.393107e-05 1175,1.5969279,150.62845,18.080172,125.68506,6.534668e-05 1175,450.6914,153.97865,35.039185,72.48938,5.1643623e-05 1175,616.5299,161.91574,22.61676,91.232605,4.5750876e-05 1175,609.0082,442.3463,30.138489,62.65152,4.293321e-05 1175,4.024932,182.09615,58.59252,236.3304,3.045591e-05 1175,0.7329663,404.70657,18.241362,74.02249,2.560393e-05 1175,1.0504231,63.349762,18.388107,72.71622,1.6873177e-05 1175,458.7048,61.294292,33.628113,68.72638,1.5888598e-05 1175,1.025752,247.58907,17.35966,128.72209,1.0389019e-05 1175,615.1004,16.09586,24.046265,87.530594,8.432515e-06 1175,281.6059,158.0067,95.931,181.33754,7.0699416e-06 1175,1.9377996,287.7271,32.193157,166.32953,4.9539876e-06 1175,5.73515,357.5092,79.54853,131.4762,2.77255e-06 1175,583.6883,19.882788,55.280396,193.02892,1.2042253e-06 1175,3.062941,430.04364,52.961525,69.18262,1.0699944e-06 1175,2.1062453,42.560352,32.964504,205.86049,8.175377e-07 1175,2.5077636,19.92285,55.716404,105.09408,3.0299566e-07 1175,0.72473633,11.226794,14.096642,88.28468,1.5332685e-07 1175,578.6683,6.8585825,45.177185,51.25851,2.3924295e-08 1175,156.5389,10.424937,40.99907,45.9751,1.4844962e-08 1175,185.41422,10.198044,40.257248,45.67938,1.3464259e-08 1175,121.447296,6.7907734,42.756653,46.257874,4.754301e-09 1175,218.57608,2.7118,63.70572,57.343685,9.474224e-10 1175,401.47614,5.750684,43.789124,54.299175,7.9510254e-10 1175,477.39886,8.037844,42.77063,45.31862,5.254064e-10 1175,442.59,7.249022,43.201782,48.091297,3.7612322e-10 1175,360.70984,3.8869157,41.978363,49.605934,8.8677e-12 1176,303.44705,212.65314,22.120483,46.91391,99.902954 1176,284.5589,213.40828,21.371277,45.636765,99.85676 1176,266.597,211.44882,20.28302,49.54831,99.83417 1176,60.355366,226.00533,32.019016,69.86415,0.0028158084 1176,622.80743,217.85,16.339233,52.44629,0.0014063722 1176,1.221346,249.32407,18.928408,75.833954,0.0008883062 1176,616.25793,173.69292,22.888733,80.05467,0.00063092896 1176,577.57947,252.42352,58.82263,141.90186,0.00038199572 1176,611.8397,226.7104,27.003601,132.72191,0.00036953893 1176,1.2322807,173.51207,13.02007,52.776657,0.00024030753 1176,5.5097513,161.66272,66.92683,180.50024,0.00023091954 1176,616.6083,78.20932,22.538391,79.02249,0.00018341333 1176,260.02975,198.83008,43.41754,81.66757,0.00017987646 1176,617.4365,400.71448,21.710144,80.229126,0.00014279809 1176,611.0859,299.6777,28.060791,153.12637,0.00011537575 1176,601.02765,81.87077,37.411926,211.5012,0.0001032956 1176,133.13278,158.71216,37.767334,138.39398,9.844146e-05 1176,1.8681169,231.80183,32.731464,167.52574,8.5710744e-05 1176,1.1619833,205.94717,18.268017,76.18863,7.3175106e-05 1176,470.375,167.60127,37.97229,84.08017,3.4826222e-05 1176,2.0131762,104.50319,33.34792,199.22694,3.220429e-05 1176,572.4809,343.46854,66.48279,146.63043,3.176057e-05 1176,0.7738509,406.1962,18.21001,73.34375,2.2871722e-05 1176,267.7382,171.08977,84.17673,170.21956,2.2246184e-05 1176,1.4630216,122.95944,19.062454,80.50174,1.9112482e-05 1176,605.4979,5.6023664,33.648743,56.98171,1.44727355e-05 1176,0.9038908,320.79245,18.29659,75.66788,1.2737877e-05 1176,585.48114,10.808308,53.187134,115.17796,8.410733e-06 1176,1.5460775,338.58423,32.172646,152.37292,5.5022547e-06 1176,1.87535,9.542474,52.606148,192.68903,3.4147665e-06 1176,2.934523,432.28424,53.465065,67.06607,1.7782197e-06 1176,1.150629,39.920807,20.012728,101.24092,1.1760806e-06 1176,1.2981405,7.793268,22.236805,53.847084,3.9564617e-07 1176,579.221,6.5381317,43.868042,47.532387,2.9511021e-08 1176,539.27515,6.242176,44.029236,49.940437,8.903813e-09 1176,87.58522,7.9939423,42.13417,47.754745,6.0076157e-09 1176,158.6867,9.460949,39.612946,46.44308,5.010703e-09 1176,420.43213,6.199909,44.977783,51.70456,2.4497142e-09 1176,511.3262,5.88708,44.02481,49.128963,1.2444752e-09 1176,456.01758,6.9460387,43.43155,47.54968,6.0553773e-10 1176,199.22888,8.121713,45.329178,51.195465,2.1804912e-10 1176,396.22458,4.003812,43.131165,57.76407,7.03165e-11 1176,225.40694,3.1530664,44.304947,60.05902,1.9231164e-11 1176,367.63687,5.0613594,40.81961,47.00931,7.2164605e-12 1177,288.2257,210.69714,24.14386,55.25894,99.91978 1177,264.1317,213.23528,22.615723,49.308975,99.86292 1177,246.13052,210.23492,22.888702,52.394165,99.58484 1177,472.75375,154.21925,33.20111,59.122787,0.011822274 1177,622.5865,223.98138,16.56018,48.61441,0.001671841 1177,59.24377,164.0021,25.10284,51.045883,0.0014088744 1177,476.7936,152.2,43.17935,147.9363,0.0003869338 1177,610.82947,188.45834,28.3172,111.275055,0.0003821167 1177,616.5685,52.69091,22.578186,77.87899,0.00031480385 1177,77.959625,226.40126,39.163643,131.92754,0.00028815668 1177,233.40503,213.49321,21.693329,47.207016,0.00027416664 1177,1.5385132,217.77182,17.725674,80.6026,0.0001844078 1177,228.75331,182.31062,58.896317,100.10863,9.89602e-05 1177,0.8479427,318.55518,19.46727,143.46515,9.753975e-05 1177,270.1962,194.88492,62.140076,86.013214,7.990956e-05 1177,1.4980226,114.7828,14.09305,55.034126,7.753207e-05 1177,2.7438266,281.2121,57.4095,191.53506,6.235406e-05 1177,612.07904,359.75964,27.067627,138.41708,5.7931895e-05 1177,587.89905,100.5368,50.464844,218.24112,5.188893e-05 1177,483.82938,46.520737,25.555908,60.0539,5.1018742e-05 1177,616.4175,131.20355,22.729187,97.456955,4.8937138e-05 1177,1.7727051,251.26831,27.93457,139.76239,4.875109e-05 1177,607.56995,0.0,31.576721,99.63418,4.198016e-05 1177,2.16497,126.670395,33.501694,194.88466,3.6881822e-05 1177,613.083,244.76837,26.06366,142.01917,3.097242e-05 1177,232.54454,156.34909,146.17445,219.50677,2.4487888e-05 1177,444.8983,128.52893,107.78793,201.02881,1.3353765e-05 1177,0.73649174,420.0224,15.95121,82.04773,9.931192e-06 1177,523.01764,183.22885,25.570068,56.435654,6.252806e-06 1177,568.042,12.997461,71.00665,129.77129,4.057967e-06 1177,538.0635,180.55168,24.72406,52.453476,3.927592e-06 1177,3.0118961,430.43546,53.51925,69.006805,1.184421e-06 1177,1.7195671,61.42622,21.282063,149.89949,1.1663274e-06 1177,1.1251563,14.4077835,14.727878,82.360756,2.2325568e-07 1177,2.3629036,18.623844,57.95318,114.547485,2.0927655e-07 1177,585.3941,4.098477,45.248352,51.77794,1.4433645e-07 1177,475.04282,7.27334,45.171967,49.471,5.0318427e-08 1177,503.99548,6.9523177,46.197693,48.951443,2.2280421e-08 1177,6.8654723,7.664595,42.444702,46.255035,1.1945361e-08 1177,41.223743,5.005941,43.232243,47.20091,6.201275e-09 1177,552.5731,5.556066,45.14569,52.065006,3.2447809e-09 1177,443.8825,6.1691113,42.754913,49.14077,9.873982e-10 1177,415.50955,5.2058725,43.604767,51.24597,3.6305856e-10 1177,361.91705,5.5462956,39.352203,46.261883,3.2863153e-11 1177,221.80055,1.3056641,45.606827,66.02277,1.0488274e-12 1178,273.43945,214.63214,25.968048,65.78323,99.95684 1178,245.2508,219.57214,23.89264,58.85974,99.94831 1178,225.32303,217.85349,24.261307,59.798645,99.68822 1178,608.3116,186.56876,30.209717,68.9474,0.00302042 1178,0.7158236,227.10516,28.678558,80.55997,0.002792999 1178,161.63313,205.46313,39.519028,98.41748,0.0018485909 1178,289.77527,217.02368,23.31247,49.28943,0.0008818357 1178,480.81058,132.43027,44.119232,98.765305,0.000854866 1178,210.92276,201.5805,61.03119,90.23401,0.00054173404 1178,1.3539885,149.33275,18.470423,81.64731,0.00051032007 1178,601.4777,86.85346,37.150513,209.62,0.0002973366 1178,1.662832,82.78857,35.62729,216.43924,0.00025444495 1178,622.5996,45.497185,16.547058,49.364983,0.00024635278 1178,1.1515039,122.274025,13.727358,57.78858,0.0002035842 1178,589.3613,244.08371,48.97809,225.48141,9.805075e-05 1178,617.39087,118.62736,21.755798,89.64448,8.5813306e-05 1178,611.9365,369.5361,27.210144,132.72046,6.999925e-05 1178,609.0087,8.324801,30.13794,107.3816,6.4118954e-05 1178,2.600508,166.92021,57.93339,226.82161,5.121906e-05 1178,1.2997298,268.37607,20.528477,113.81259,4.0846924e-05 1178,492.39746,191.70038,21.395264,45.15634,2.2734459e-05 1178,253.79857,190.24597,74.171616,133.59436,1.950655e-05 1178,176.69388,151.95264,135.90671,204.4289,1.8118957e-05 1178,0.81917644,360.6278,19.154745,134.30347,1.6666994e-05 1178,457.99963,130.08609,109.12329,202.03314,1.2923857e-05 1178,573.5381,4.2879853,65.60858,46.259537,1.00553525e-05 1178,4.8182683,342.8076,78.68249,142.5722,8.334749e-06 1178,499.0946,159.78726,44.043823,146.4697,7.902267e-06 1178,569.12354,0.0,68.80066,152.25957,3.5954408e-06 1178,3.140625,428.4402,54.40381,71.35571,7.7429496e-07 1178,0.98999554,5.8694954,12.892605,87.56404,5.6004563e-07 1178,3.9453485,16.250229,79.47147,168.32924,5.254393e-07 1178,68.14919,430.51324,77.33665,71.450195,2.9218953e-07 1178,1.6919711,11.160241,30.55613,137.18665,2.4210195e-07 1178,403.98492,0.1851823,80.53369,191.36021,1.0090979e-08 1178,530.4399,4.5052915,46.17041,53.157997,8.779494e-09 1178,409.55023,6.8257227,42.2977,53.228653,3.3462302e-09 1178,435.77805,6.436035,42.444244,49.455887,1.751881e-09 1178,361.00815,5.8922234,41.13562,51.383976,1.6830138e-09 1178,464.41174,5.4748473,43.14633,51.821907,1.5392798e-09 1178,169.87889,9.960559,42.867813,47.955177,9.284846e-10 1178,554.2181,1.0511768,44.759094,46.619167,8.281806e-10 1178,506.31516,3.5677898,41.363007,47.453396,6.79566e-10 1179,252.71605,213.64485,32.718277,83.79634,99.971825 1179,200.85683,215.70319,30.57138,77.91339,99.94189 1179,222.90118,221.08336,26.6306,75.31676,99.91023 1179,598.1713,276.98395,36.879883,82.84689,0.040247235 1179,620.18634,275.0385,18.960327,56.337494,0.00785901 1179,109.823715,172.49591,41.782562,129.0914,0.003916656 1179,277.14664,219.26003,21.957611,56.040817,0.0037829247 1179,584.64966,218.31683,53.757996,203.19473,0.0011077246 1179,1.0877336,333.13498,21.99403,126.60202,0.0010834398 1179,2.3057032,315.7915,58.860718,160.68237,0.00067002396 1179,204.03452,194.37846,75.16574,140.89458,0.00062364986 1179,611.3873,173.08794,27.759338,153.42943,0.0002311425 1179,3.6578646,144.31126,59.223454,255.30241,0.00022180857 1179,2.626665,134.9293,38.666145,108.80145,0.00019860134 1179,608.2489,440.75964,30.897766,64.854126,0.00012764378 1179,603.3845,0.2515267,35.762146,67.759766,0.000113690614 1179,1.3773454,249.58047,31.31591,161.20883,5.6453962e-05 1179,1.7552637,160.19,19.49958,143.06424,5.3577434e-05 1179,609.29205,30.758562,29.819519,136.76595,4.99559e-05 1179,609.88245,305.72794,29.264221,157.57391,3.9873587e-05 1179,46.41903,93.49946,78.24722,217.28357,2.4949637e-05 1179,1.5678972,77.26721,18.687096,86.00844,1.5463835e-05 1179,499.43643,163.55547,48.48752,145.94356,1.2274571e-05 1179,1.054589,437.45453,20.709194,64.65985,8.246481e-06 1179,2.8628516,24.80049,61.07624,207.46664,3.7083396e-07 1179,497.4982,9.536581,42.49356,48.4291,1.12552236e-07 1179,403.86664,4.288688,61.310394,51.851246,6.4825905e-08 1179,0.8736483,9.916817,14.14532,92.284225,6.165307e-08 1179,1.8195426,9.344014,51.19863,78.60008,4.7198974e-08 1179,390.86752,7.0593233,117.04144,214.86555,4.1522384e-08 1179,440.6328,5.9729576,45.03232,51.934322,2.272901e-08 1179,538.5446,6.045212,44.006042,55.76922,6.6377863e-09 1179,567.324,5.054292,42.743774,52.422943,1.3715571e-09 1179,360.12863,3.3773553,41.479675,52.14749,3.7846565e-10 1179,184.39246,0.0,77.91739,73.563675,1.6489313e-10 1180,225.03157,203.56213,43.71843,116.47922,99.984 1180,190.05298,215.85208,33.98004,98.49768,99.94062 1180,154.68796,210.30048,47.724136,105.28073,99.93919 1180,22.995962,237.6842,25.624285,51.607666,0.10715694 1180,2.9708154,198.64423,30.480017,95.5708,0.023991046 1180,198.87384,216.71507,20.726273,46.7592,0.014801295 1180,620.85895,221.02042,18.28772,61.551636,0.00814957 1180,601.6412,154.20389,36.2912,155.06653,0.003759046 1180,3.2014194,102.438576,55.062607,215.91135,0.002525965 1180,253.62178,207.10101,29.979446,84.22943,0.0024547505 1180,156.39514,189.44995,103.90103,168.95557,0.0024030472 1180,1.4573658,122.34927,22.434605,119.23297,0.00046833066 1180,563.6607,178.1618,44.869324,124.63147,0.00023359944 1180,588.1313,241.27486,49.680847,224.9684,9.267017e-05 1180,1.349419,221.36221,19.476925,154.74384,8.0539285e-05 1180,3.0919712,221.65657,57.50058,236.06438,7.483357e-05 1180,611.3222,298.85968,27.824463,123.8548,4.3757413e-05 1180,609.11145,438.76132,30.035217,66.81113,3.5645946e-05 1180,585.94977,388.72653,53.1969,106.44623,2.2478169e-05 1180,1.0561996,304.8539,20.628757,156.9978,1.7505283e-05 1180,73.39829,27.946941,28.893082,75.245316,1.7274631e-05 1180,1.7823617,377.3837,58.132355,111.394714,1.3259768e-05 1180,0.6339258,412.89944,16.104977,87.70123,1.25076685e-05 1180,474.22403,246.2794,59.136444,159.39388,1.1291216e-05 1180,610.8934,5.6012306,28.253296,147.1662,3.941896e-06 1180,1.5353801,23.618938,29.903032,157.22957,2.9538082e-06 1180,1.2449145,19.51327,13.84495,67.86787,2.5670377e-06 1180,2.9276497,16.220469,49.19256,63.55165,2.4831938e-06 1180,585.27405,2.8989325,43.971863,57.35394,5.92966e-08 1180,421.48257,1.4627864,49.04883,57.45795,1.9321527e-08 1180,465.12424,4.4869175,41.142487,54.524895,4.7566955e-09 1180,513.406,2.4369695,45.461487,48.96145,4.3281387e-09 1180,537.68787,3.7826025,65.34967,51.244545,3.5283085e-09 1180,349.49432,0.0,57.821747,47.88188,8.677896e-11 1181,102.56005,224.04918,57.021812,149.19331,99.98043 1181,156.78687,211.81032,55.33156,160.91948,99.9793 1181,37.9534,216.31764,76.87317,176.28047,99.95614 1181,86.28706,220.76466,35.87355,130.70348,0.03660362 1181,134.67633,220.08688,33.825836,112.47391,0.014199873 1181,96.99754,179.65182,139.33577,237.11594,0.009773656 1181,606.9662,346.49765,32.18048,156.3645,0.005719675 1181,598.1579,289.5083,39.74652,129.00748,0.0019820414 1181,5.3219857,137.42386,58.117065,254.16089,0.0011785408 1181,125.898415,264.23056,26.331795,75.78076,0.0006700853 1181,614.44415,458.96188,24.702515,52.184784,0.00046962764 1181,1.9991261,120.091644,22.515015,157.71692,0.00033708388 1181,599.95874,83.799286,38.520203,233.17084,0.00019418346 1181,78.99051,266.61307,24.98751,80.09854,7.348883e-05 1181,583.7829,15.983842,53.92157,109.73043,4.0700445e-05 1181,2.1471045,251.00452,32.417763,171.80463,3.0272724e-05 1181,606.9606,4.840843,31.765198,56.740368,1.69051e-05 1181,0.83471924,340.49704,19.184793,131.6973,1.6020973e-05 1181,66.33206,280.5044,25.312912,83.06134,1.0847821e-05 1181,1.1323617,442.88657,21.383732,60.20044,3.4400196e-06 1181,3.1513462,382.23578,56.84739,111.21652,1.1378653e-06 1181,3.341517,10.405411,56.753407,116.182846,7.7529984e-07 1181,2.1965804,3.8803778,31.444891,70.243546,5.4529366e-08 1181,565.9633,5.4836035,46.10919,55.80016,1.41957255e-08 1181,509.31195,1.755817,48.833923,70.02343,1.1141545e-08 1181,418.84427,4.339009,64.5712,52.090015,5.8063008e-09 1181,538.6806,3.7200098,44.540833,62.670334,1.0519704e-09 1181,149.98683,5.3362713,45.96646,53.905388,2.779691e-11 1182,0.0,220.03345,67.07761,291.11322,98.56587 1182,590.9353,259.7078,45.89856,207.93066,0.4220868 1182,0.0,237.70055,29.856647,181.3545,0.083075956 1182,7.9364586,330.4209,22.516043,61.70761,0.05241959 1182,15.502621,315.77335,37.569397,95.92474,0.018484747 1182,0.5428418,341.93253,14.116284,59.522034,0.0128491605 1182,26.745079,290.76883,29.250183,67.537506,0.006265748 1182,608.13855,84.60373,31.008118,171.79047,0.004630373 1182,613.71246,268.26495,25.434204,116.65939,0.0040296507 1182,20.18217,392.00882,21.022629,51.579254,0.0026862777 1182,3.7619696,379.01227,37.54136,105.83206,0.0016891281 1182,0.40950766,295.38635,15.437775,73.15814,0.0014993686 1182,618.4441,168.70528,20.702576,74.783035,0.0012748254 1182,612.9116,366.40918,26.235046,119.80942,0.00077085523 1182,571.1561,176.59392,23.849121,48.444656,0.00074558414 1182,6.8497868,455.1297,37.562614,49.501343,0.00063117145 1182,12.497758,280.19473,27.01944,74.186676,0.00021545142 1182,27.638054,205.69522,79.34309,191.5344,0.00015822217 1182,441.86664,144.40924,34.781708,81.73509,9.279363e-05 1182,607.6341,5.1969075,31.512573,149.76178,7.047107e-05 1182,1.3563575,93.79838,21.145195,150.85672,2.5146519e-05 1182,22.654884,434.25604,47.215202,67.7923,1.3055764e-05 1182,2.4635043,51.348427,62.372196,287.38696,5.8492155e-06 1182,560.6813,1.7640463,68.5199,62.132687,8.571383e-07 1182,2.8517318,24.055939,55.032085,104.19658,4.232069e-07 1182,1.2475171,17.245255,16.494104,62.493134,2.2860978e-07 1182,541.1491,1.4485335,45.069702,51.381477,8.406712e-09 1182,432.41193,4.16501,47.80664,60.3024,5.517093e-10 1182,352.92813,1.4862305,43.819794,47.59995,1.7496019e-11 1183,605.5852,190.2085,33.561462,102.82712,0.03514868 1183,607.01166,110.33051,32.13501,67.20208,0.030063238 1183,604.75934,59.198975,34.38733,85.59361,0.0075055207 1183,588.8996,49.33694,49.599365,244.81192,0.0060684783 1183,619.30566,142.42873,19.841003,60.742645,0.0025784555 1183,494.1294,221.34975,38.42169,69.430984,0.0020731562 1183,624.0532,178.80023,15.093445,45.36891,0.00189556 1183,622.7071,216.44604,16.439575,51.325867,0.0014207776 1183,606.0184,157.74277,26.952393,61.073334,0.0012821725 1183,621.08405,286.2926,18.062622,52.516266,0.001036106 1183,265.4838,195.92458,23.853882,46.175095,0.0005704403 1183,62.46243,199.03525,33.75738,75.29303,0.00016064869 1183,611.3636,365.92245,27.783081,133.41913,0.000112477166 1183,1.1672815,261.3488,12.950706,51.302734,0.000104713545 1183,97.28694,232.16711,33.104935,60.77655,0.00010021536 1183,1.1987045,220.68915,19.665195,129.5325,3.0354886e-05 1183,1.0204859,172.54633,13.678577,49.08159,2.078875e-05 1183,611.8589,250.70578,27.28778,141.36453,1.8222308e-05 1183,1.5173739,141.51917,20.102686,137.01434,1.7561099e-05 1183,388.1998,59.941826,35.77124,90.55358,1.1067472e-05 1183,4.012251,121.541695,57.282074,220.06296,9.431007e-06 1183,597.5373,14.943037,41.524902,87.969635,9.430216e-06 1183,0.81130373,310.661,19.50318,139.9762,9.24059e-06 1183,1.2450668,120.698586,13.289626,49.80419,5.6921594e-06 1183,0.9820915,401.53003,20.36925,97.04367,3.1344805e-06 1183,3.2741342,265.94394,57.62512,204.41107,2.6303753e-06 1183,1.4301978,58.577053,18.513147,74.85184,2.37052e-06 1183,1.2112175,7.7635646,52.932438,75.99148,7.518665e-07 1183,3.1067073,430.61975,52.92639,68.70621,3.060123e-07 1183,540.9914,15.737809,81.56976,69.773125,1.1093817e-07 1183,2.7274675,14.446524,81.109436,156.09962,6.896761e-08 1183,531.6054,11.227407,43.76233,47.65291,1.2103864e-08 1183,481.7813,12.541142,85.19,68.104355,1.4164453e-09 1183,469.11465,3.7494044,46.03415,62.344826,7.436764e-12 1183,142.69342,1.34875,43.552338,67.35946,1.6656132e-12 1183,443.27484,2.6113672,44.645752,65.36917,8.6111435e-13 1183,411.14648,4.092119,40.37091,54.76358,4.908391e-13 1183,114.350784,1.3808627,41.776794,58.477184,4.7502486e-13 1183,374.7306,3.0363216,41.202637,54.735252,3.9338454e-13 1184,124.00029,240.76031,28.840683,58.64908,0.0061913254 1184,116.93991,220.04123,47.292877,130.37424,0.0024126642 1184,622.54407,50.944565,16.6026,52.24521,0.0009856218 1184,102.06762,232.29391,37.21264,91.41202,0.0009019335 1184,610.68915,188.7372,28.45752,146.83333,0.00036932333 1184,1.4835458,223.18001,18.595795,83.629074,0.00035379143 1184,585.9056,74.55223,51.945923,261.60095,0.00026276984 1184,610.8328,55.808815,28.313843,140.48007,0.0002056252 1184,617.6887,284.8389,21.457947,81.55588,0.00015071325 1184,617.55096,165.734,21.595703,84.126434,0.00011989539 1184,2.0949218,168.99683,32.516148,184.93832,0.00010583305 1184,1.1977003,257.50232,19.083384,136.80182,8.943328e-05 1184,608.8328,436.54858,30.313843,67.992096,7.641454e-05 1184,611.2738,6.260052,27.81311,89.61938,7.179906e-05 1184,602.62384,312.86118,36.522827,174.44247,7.135353e-05 1184,621.7555,385.15933,17.391174,56.421936,6.674575e-05 1184,1.1781926,168.38182,18.255129,80.47043,6.43637e-05 1184,1.3232365,82.298325,19.203196,92.933075,5.2430732e-05 1184,73.53694,196.32527,125.39244,216.54189,3.678845e-05 1184,3.325459,246.35402,57.225,218.41975,2.6113952e-05 1184,544.3247,89.79368,70.98413,195.99234,2.583725e-05 1184,3.598558,69.66885,59.821003,253.09143,1.7793504e-05 1184,0.716346,374.5559,19.017017,121.52646,1.0251682e-05 1184,1.8375342,8.580868,40.183994,55.19009,3.8131475e-06 1184,568.4867,9.325189,70.65997,146.61397,2.7908438e-06 1184,1.5348585,17.154915,35.53022,174.18738,2.5202307e-06 1184,584.3479,6.0036216,44.454285,46.187756,2.2076972e-06 1184,1.4020426,456.61453,28.01486,47.521942,2.164121e-06 1184,2.9572558,392.51385,56.90945,100.872406,9.0160313e-07 1184,31.99072,432.7861,78.32226,68.97949,4.2531573e-07 1184,152.38438,432.04285,73.98033,68.67819,4.129352e-07 1184,77.698044,432.12885,73.880066,68.706635,3.4823736e-07 1184,395.29678,17.461016,61.03772,122.31207,2.6806307e-08 1184,556.89087,3.85112,48.005127,55.84855,3.3326377e-09 1184,421.25494,9.894216,84.476105,68.40938,7.8268864e-11 1184,530.83954,2.177767,42.50946,55.953068,5.2605798e-11 1184,107.18488,1.8351921,46.53579,57.637283,3.1495504e-11 1184,498.05292,2.3543198,43.239258,61.743946,3.1118063e-11 1184,384.52298,5.400184,39.10556,54.991837,1.7704145e-11 1184,144.25015,3.0236557,43.924164,57.29825,5.1739017e-13 1185,48.509605,242.73871,33.758896,77.85156,0.019946516 1185,550.3858,222.74571,25.98346,52.999832,0.01387921 1185,570.4371,234.91188,24.245422,45.374374,0.011701638 1185,609.22174,226.47531,28.903748,70.54617,0.010425805 1185,625.23254,224.54688,13.914124,45.48294,0.0014420808 1185,266.14743,195.13188,21.86496,47.46312,0.0010222573 1185,588.2069,112.02909,49.144653,229.659,0.0008333688 1185,617.5972,260.3799,21.549438,79.967224,0.0005503852 1185,13.784681,233.61331,78.28714,174.5697,0.00035069027 1185,617.5683,304.6231,21.57837,81.35678,0.00031077184 1185,1.0875428,167.25978,13.581411,50.01454,0.0002667745 1185,1.2650342,229.45677,18.035635,70.903885,0.00024717575 1185,617.24274,97.11938,21.90393,77.63998,0.00015354487 1185,2.4010124,162.57524,33.923733,190.11559,0.0001380997 1185,602.0844,269.2869,36.51715,175.90414,0.00013196745 1185,253.21678,195.49097,21.415298,45.31813,0.00011898052 1185,1.666176,123.113754,18.475245,77.894485,8.368278e-05 1185,608.7971,436.00177,30.349548,69.71393,8.047188e-05 1185,617.2921,165.7026,21.854553,83.20862,5.398847e-05 1185,1.4109343,270.2444,19.232208,142.24011,3.7198322e-05 1185,585.349,388.95486,52.508118,103.392914,2.8240816e-05 1185,610.0494,9.652859,29.09729,122.01875,1.8250237e-05 1185,0.8535913,378.01624,18.19786,78.57306,1.8158435e-05 1185,3.4357812,328.37503,80.56357,155.41843,1.6324439e-05 1185,454.93677,222.75227,73.421936,157.89073,1.5683809e-05 1185,0.85893965,439.06512,22.017824,64.03088,3.5303333e-06 1185,437.15897,37.223606,34.771576,81.19032,2.091019e-06 1185,2.971732,423.8298,52.94371,74.38147,1.1193401e-06 1185,1.050804,47.65892,18.94704,80.25825,8.278912e-07 1185,0.79434043,10.684814,13.383801,77.2524,3.352462e-07 1185,1.7322851,22.26707,34.750633,178.01027,2.8517553e-07 1185,2.2196388,10.3617935,51.63572,66.81638,2.289867e-08 1185,386.40002,6.4530535,82.42987,82.10807,7.588517e-09 1185,387.8541,3.914987,41.68042,50.043594,2.89544e-09 1185,74.8055,4.5310354,45.06211,52.87675,5.9175204e-10 1185,578.8305,0.29826823,44.721558,59.69592,5.332601e-10 1185,102.30712,1.1825,41.87983,62.327354,1.522629e-10 1185,422.55273,0.5651546,37.02951,50.87464,5.690907e-11 1185,554.5463,4.0866275,40.62799,49.16623,5.216666e-11 1185,139.90222,3.3724935,41.026825,52.794514,2.2294416e-11 1185,504.5233,4.9770393,38.058563,52.78171,3.2215701e-12 1185,470.8499,4.2738705,39.38214,56.553017,2.6075541e-12 1185,441.4497,4.89182,44.43625,57.767338,1.5043028e-12 1186,436.56442,223.34813,22.59198,49.799362,0.02528891 1186,620.25024,66.89404,18.896423,67.303406,0.0072096996 1186,622.5726,237.05727,16.574097,54.497726,0.0031702565 1186,461.90338,226.30852,26.887054,52.029037,0.0019081435 1186,531.4011,226.09607,24.78833,50.29486,0.0011525385 1186,593.5635,219.2531,36.207336,74.0948,0.00074506237 1186,610.53973,167.49124,28.606934,132.33636,0.00038216263 1186,622.20447,204.96895,16.9422,50.799164,0.00032296788 1186,608.148,25.965307,30.998657,140.65143,0.00026745518 1186,617.0269,388.04816,22.119751,89.54419,0.00024499293 1186,2.2860906,195.06831,34.36257,174.66548,0.00012677419 1186,1.362909,255.25699,13.362278,54.604675,0.00012381552 1186,547.2707,311.78314,43.718994,98.97446,0.00011103349 1186,611.88306,262.10486,27.26361,148.29587,0.00011075873 1186,617.01086,137.3843,22.135803,85.959015,8.332657e-05 1186,568.09705,225.85152,38.1037,76.26933,7.924015e-05 1186,585.8477,319.52597,52.32782,165.00238,7.710147e-05 1186,1.331141,198.18045,19.129423,85.58853,5.5568864e-05 1186,585.92633,148.4934,51.606384,236.4048,4.812186e-05 1186,5.356406,125.27599,75.54354,252.46906,2.6202562e-05 1186,2.1040008,113.45047,28.417225,151.52536,1.655929e-05 1186,569.3928,14.499297,68.57068,264.32233,1.42589315e-05 1186,1.2859212,272.72083,18.680756,141.69974,1.3298051e-05 1186,0.7715458,426.11862,13.374824,47.19156,1.2068447e-05 1186,212.29794,211.29387,24.279617,61.826797,7.1803997e-06 1186,606.45667,6.101423,32.690002,56.850792,6.8971353e-06 1186,0.89050215,377.96732,18.26395,75.239716,5.762883e-06 1186,3.038685,300.51648,57.804226,183.10437,4.474001e-06 1186,1.5982764,78.18447,18.09347,73.04038,4.1892013e-06 1186,1.0518237,442.4873,21.795647,61.143066,3.1086763e-06 1186,3.1734734,430.5293,52.98191,68.806915,6.3620126e-07 1186,3.7884784,41.7481,58.88149,180.08939,3.527222e-07 1186,0.8292017,16.26947,13.579073,99.7952,1.04572784e-07 1186,1.823143,13.308165,51.60985,72.44121,5.267415e-08 1186,434.96964,1.9538119,46.922607,59.121384,1.6018015e-08 1186,411.06192,5.1166034,41.463043,54.9532,2.887625e-09 1186,463.72852,4.8222985,44.52655,59.291546,2.5641855e-09 1186,483.18085,10.410866,43.85724,134.35052,1.3564961e-09 1186,551.9542,3.0281315,41.245605,56.56534,6.1180455e-10 1186,63.92589,5.857121,40.00307,47.932182,3.6910736e-10 1186,482.5238,1.1192693,63.032715,51.91191,8.416586e-11 1186,523.1881,1.5378093,43.027527,53.706837,2.2085927e-11 1186,294.75604,2.6158073,40.34958,56.974613,3.8103947e-12 1186,87.5434,6.9111705,43.03736,53.201084,6.729942e-13 1187,624.87555,365.5479,14.271118,45.84262,0.0027241176 1187,609.6258,319.64755,29.520874,154.56262,0.0006299603 1187,612.17175,198.40315,26.974915,135.50835,0.0005344808 1187,382.9773,232.26251,21.692749,55.528076,0.00049915747 1187,581.0478,257.2775,35.95703,62.439392,0.00039047122 1187,559.8645,268.24814,40.33075,56.15985,0.00037908956 1187,616.52637,290.46567,22.6203,91.64673,0.00021490312 1187,4.021618,140.8437,56.04461,232.90822,0.0001585631 1187,615.3585,146.33995,23.788147,93.073135,0.00014365863 1187,587.04755,147.90804,50.639893,238.86131,0.00012325827 1187,609.06537,432.63458,30.081299,71.313934,0.00012101449 1187,1.4645101,120.44172,18.161997,72.02085,6.126477e-05 1187,183.81737,214.83472,33.451645,78.556366,5.7818415e-05 1187,1.7216871,222.02763,18.515089,136.04222,4.678636e-05 1187,1.2434807,204.5421,12.97985,50.646378,2.0677075e-05 1187,611.1367,29.12733,28.009949,163.93895,1.9614185e-05 1187,1.8786166,102.49471,28.971521,169.35013,9.558498e-06 1187,0.7352002,419.333,16.556723,81.6593,5.915309e-06 1187,1.2031673,357.02164,19.248922,106.455505,3.5017713e-06 1187,33.296604,267.24976,79.41336,208.00995,2.6091243e-06 1187,3.6748374,387.59952,55.29078,103.97983,2.1663511e-06 1187,592.8117,1.5907878,40.633057,56.969437,1.0313634e-06 1187,347.39557,10.773387,59.75818,47.706764,7.1128106e-08 1187,0.7810441,12.218867,16.623064,142.78758,6.450448e-08 1187,1.072907,14.24125,56.49956,125.57319,3.6027412e-08 1187,523.20166,1.3374398,62.500977,53.16426,2.8786411e-08 1187,326.5546,8.093552,43.39212,51.767635,2.0479463e-08 1187,359.0465,23.229057,116.52429,120.35046,5.36299e-09 1187,273.53946,3.1073015,61.107178,53.83207,4.404472e-09 1187,504.2074,3.888597,45.772522,60.136536,1.5483196e-09 1187,562.83325,3.3680437,45.397827,60.264725,8.16237e-10 1188,140.91278,207.34859,25.92337,49.722885,0.057957135 1188,534.26404,235.14143,33.153748,59.331802,0.045802437 1188,492.29428,215.2291,39.242462,70.91406,0.034758065 1188,431.04977,228.07079,27.286499,48.486343,0.01863819 1188,610.284,125.30004,28.86267,164.80478,0.00249236 1188,510.98538,221.58722,42.937164,87.07022,0.0016215949 1188,464.34735,228.42169,21.982086,48.700256,0.0008660307 1188,471.4862,202.02715,39.334595,95.4041,0.00038381177 1188,617.38873,229.71954,21.757935,91.85681,0.00034109174 1188,571.50446,230.17238,44.280457,101.82216,0.00021722367 1188,587.4161,176.80507,50.89789,212.67418,0.00017438097 1188,608.0391,0.0,31.107544,101.54274,0.0001543191 1188,1.4815633,220.48827,18.58459,75.551956,0.00015319705 1188,608.72577,441.818,30.420898,63.9364,0.000102118065 1188,2.036116,130.45987,31.8371,180.02322,9.4677445e-05 1188,1.3611199,264.4799,18.86122,81.81021,6.8653986e-05 1188,585.0459,393.528,54.10077,104.522,3.912709e-05 1188,613.0893,309.294,26.057373,139.18814,2.9524463e-05 1188,1.6223927,250.60498,31.19523,198.05759,2.824157e-05 1188,1.2191732,357.04422,18.371023,86.12198,1.9850311e-05 1188,1.0966822,95.56819,18.065302,71.226364,1.8467445e-05 1188,0.87238526,417.1484,16.585783,85.55603,4.988063e-06 1188,584.56116,0.0,54.58551,210.54204,4.0596856e-06 1188,2.665218,384.3261,55.644665,108.62912,3.05712e-06 1188,584.5541,5.3101954,46.82898,51.329872,6.3344544e-07 1188,346.06638,4.4576693,60.315735,52.474754,2.0862774e-07 1188,321.17224,4.676011,46.032562,46.21369,2.4909996e-08 1188,279.24036,1.967461,59.35907,55.333584,2.3203308e-08 1188,459.57434,5.167243,47.425873,45.454685,8.617635e-09 1188,1.5409188,16.380505,30.513315,61.30042,1.5734701e-09 1188,490.16302,3.3906705,39.489197,55.971558,8.231528e-12 1188,554.54865,4.0521617,40.023438,55.91725,5.809413e-13 1189,417.99673,227.22762,20.189728,50.073013,27.495995 1189,605.31366,220.04694,32.98346,76.911835,0.009752272 1189,513.9211,215.0068,31.971619,75.26108,0.0030147855 1189,94.846245,216.74814,25.867676,52.382294,0.0028541475 1189,579.5062,238.05295,23.741577,59.031677,0.0028287927 1189,545.4921,243.28217,22.0318,51.16986,0.0027211006 1189,559.4259,243.09013,22.137024,52.56346,0.0026829238 1189,120.350136,191.91957,27.116692,62.91101,0.00089440367 1189,531.2158,233.85661,24.642944,49.252792,0.00072081643 1189,321.4253,231.50143,19.250732,47.547546,0.00071970985 1189,567.1938,229.63258,22.207336,46.02397,0.0006483601 1189,571.9138,189.674,64.8136,142.92009,0.0005683015 1189,1.4576595,212.78873,17.963476,76.15976,0.00052917266 1189,474.52808,222.59224,37.759216,74.77977,0.0005193673 1189,534.7568,206.79204,39.442078,109.435135,0.00040096798 1189,258.8582,191.13136,24.01123,55.0027,0.00037494543 1189,612.5958,241.42717,26.550842,145.53123,0.00028878584 1189,311.06754,140.30515,25.926727,54.577606,0.00028348176 1189,462.9013,240.05211,47.322205,132.32481,0.00025851838 1189,610.8493,132.82153,28.297363,140.6217,0.00022580405 1189,609.2701,436.40884,29.876587,67.60278,8.2954786e-05 1189,3.8806624,156.2881,59.311516,242.44475,7.689563e-05 1189,0.83064985,137.18861,13.467382,46.286743,7.1289454e-05 1189,136.72537,178.69238,29.532623,70.98132,6.8317044e-05 1189,513.4892,268.37283,45.16803,155.08276,5.4224176e-05 1189,1.1014885,106.06603,20.256546,135.92673,4.219361e-05 1189,2.0147161,278.9489,31.33789,184.5362,3.8194477e-05 1189,0.99412113,238.45683,15.614552,166.88692,2.4109482e-05 1189,0.87054855,381.00522,17.964533,114.216156,2.282679e-05 1189,611.8455,50.249973,27.301147,140.64659,2.2644876e-05 1189,481.4153,232.70464,108.719696,227.69917,1.12979915e-05 1189,574.21735,369.3387,64.65808,118.37286,1.1046151e-05 1189,5.032604,344.08527,78.42772,138.53104,8.237427e-06 1189,388.36453,169.74893,96.15497,216.9902,5.3955846e-06 1189,3.3244352,422.7598,52.71653,73.94141,2.1459532e-06 1189,612.5447,0.0,26.60199,63.95478,1.5160364e-06 1189,3.2478273,47.596123,58.95775,202.66373,1.4666712e-06 1189,430.52124,8.577774,43.292114,50.713867,3.0159745e-07 1189,327.35477,7.7485175,43.186157,48.39981,5.3492627e-08 1189,396.27255,9.104642,47.105225,48.76295,3.3284593e-08 1189,451.76517,5.8502655,44.844055,45.15245,3.0480514e-08 1189,278.40338,6.0494466,79.288635,82.856995,1.8556786e-08 1189,1.0641073,11.039618,17.600004,50.339493,1.7904599e-08 1189,296.7983,0.412417,38.27237,47.455223,5.081181e-09 1189,480.81622,2.521631,48.664673,52.658638,4.408952e-09 1189,270.27972,0.0,40.600677,62.928543,1.4965707e-11 1189,508.51724,0.9332324,43.48123,63.0619,5.2576476e-12 1190,529.68884,225.51108,41.272156,92.113434,0.06661076 1190,578.74036,242.62587,27.554321,55.242874,0.013745815 1190,257.74716,186.3154,33.44348,71.8898,0.011408571 1190,618.8012,106.91329,20.345459,71.03208,0.010675972 1190,524.0669,227.035,23.688477,52.12848,0.0048852656 1190,562.31354,214.80756,34.43109,67.76672,0.0019944592 1190,617.97327,228.7941,21.1734,72.97098,0.0014772163 1190,68.15278,215.15225,23.277344,46.497772,0.00064120744 1190,587.1948,152.73247,49.433228,226.26277,0.00056848524 1190,271.1865,224.43259,21.280853,48.631317,0.00056031905 1190,297.94,140.22601,27.939087,63.938446,0.00041834151 1190,610.3452,248.65865,28.774963,159.16362,0.00031282802 1190,2.3591895,97.69027,33.00524,178.20667,0.00023924379 1190,247.05042,206.04941,23.220245,47.95787,0.0001613605 1190,617.22156,154.45071,21.92511,84.51497,0.00014555622 1190,608.4097,434.84018,30.736938,72.62149,0.00014114441 1190,621.21356,344.2552,17.933105,72.0788,0.0001217275 1190,1.4670199,220.75696,18.041819,72.07449,0.00011462701 1190,518.15076,226.30125,80.007385,159.44359,0.000112452915 1190,128.39406,189.8324,26.22647,59.593384,0.00010481925 1190,1.1995932,259.31976,28.7316,170.19699,9.167635e-05 1190,587.5233,297.953,51.135742,192.23877,6.859457e-05 1190,309.7447,117.45797,42.881104,124.57467,6.815845e-05 1190,1.4625082,107.31132,18.21738,72.35107,6.722306e-05 1190,3.3145428,151.60999,56.895416,243.99652,2.9227725e-05 1190,54.02785,418.33368,82.54216,78.009186,2.5776804e-05 1190,601.2497,44.82772,37.896973,196.44412,1.885875e-05 1190,417.5641,147.97652,158.53448,235.5254,6.0850984e-06 1190,3.7522495,391.47293,53.69818,100.36438,4.214848e-06 1190,1.2143295,421.35165,16.597435,80.77496,3.755978e-06 1190,337.70712,431.49008,73.241516,69.737335,1.916954e-06 1190,122.96902,122.52706,44.706566,146.5365,1.6133138e-06 1190,613.7043,0.0,25.442383,61.00079,8.664499e-07 1190,3.082456,28.261833,52.417168,106.44839,4.389774e-07 1190,0.421001,11.728962,7.164401,81.35248,8.587022e-08 1190,362.18597,3.6038477,41.60913,59.13064,4.0988173e-08 1190,291.838,0.0,60.527557,155.25877,3.9488604e-08 1190,332.05084,3.5568328,43.62845,58.443325,1.4666501e-08 1190,1.6491342,14.150404,31.12646,65.33733,1.24263755e-08 1190,275.28207,0.0,62.90915,63.483257,2.1349585e-10 1190,531.04254,2.3373146,42.223145,55.435127,2.84242e-11 1191,486.37704,228.04005,22.973755,51.286148,98.27924 1191,563.36884,223.38196,32.86035,64.18829,0.2990529 1191,588.3928,197.84201,46.376343,123.5285,0.045145325 1191,599.2944,217.05104,24.935242,54.22429,0.019209942 1191,622.0683,222.17607,17.07837,51.232132,0.010036369 1191,584.5436,222.7199,26.174805,50.87175,0.0077494574 1191,298.9994,138.72214,20.907593,49.80612,0.0023274454 1191,609.0836,124.57081,30.06305,159.88675,0.0018935007 1191,230.91539,219.46591,20.017822,49.933014,0.0015467358 1191,613.48517,232.80074,25.661499,110.06627,0.00087704003 1191,624.7721,288.26508,14.374573,48.333344,0.0002704195 1191,617.32556,360.91943,21.821106,87.42688,0.00023413514 1191,468.33517,196.95224,57.329803,103.58151,0.00016271946 1191,1.1743523,381.68433,19.551702,114.71799,0.00016152371 1191,602.74756,285.48584,36.39911,199.44495,0.00011605354 1191,1.7041732,214.92728,17.464302,72.444855,7.523387e-05 1191,3.1349251,351.57718,58.83383,139.3772,5.7905272e-05 1191,609.3331,438.91824,29.813538,66.37781,5.3381278e-05 1191,1.7759969,122.783,27.48556,151.6889,4.929735e-05 1191,1.0708863,54.84926,19.227097,117.00673,1.459191e-05 1191,185.37209,424.19495,79.36211,75.73981,1.4498929e-05 1191,1.2554549,250.85558,32.816784,206.0764,1.3103987e-05 1191,610.8397,15.83961,28.306946,148.95836,1.1220252e-05 1191,3.5243654,146.24748,59.337227,220.23839,7.1469785e-06 1191,441.21167,142.55185,133.01355,226.87747,6.026745e-06 1191,188.73315,456.546,39.743134,46.730896,4.0962036e-06 1191,87.33465,428.87427,77.466835,70.20657,3.3499773e-06 1191,151.70575,444.19913,49.20012,55.953796,2.9533012e-06 1191,3.2649155,41.757984,59.24505,185.50879,2.1467474e-06 1191,0.6814669,8.774206,15.673197,75.32711,3.9989095e-07 1191,601.07935,2.144979,37.83319,48.407974,2.1735266e-07 1191,2.2483025,10.412608,46.93765,69.69555,9.182706e-08 1191,383.2783,8.731226,40.856445,53.882477,8.188623e-08 1191,414.5893,7.5288706,62.712555,49.99168,4.3911875e-08 1191,339.9792,9.077653,43.205048,49.4574,3.7580378e-08 1191,293.3477,6.668216,87.426605,83.63205,2.3144477e-08 1191,485.17798,6.438327,42.681396,56.022625,1.666729e-08 1191,274.97137,1.201403,41.940247,69.43267,8.701659e-12 1192,507.55075,243.1756,25.766632,54.678467,99.55893 1192,558.1598,248.12654,23.487854,48.474747,0.41441256 1192,591.6607,239.818,23.757751,52.59549,0.027831635 1192,523.311,240.27988,22.86554,48.24466,0.017879339 1192,603.15063,177.98558,34.632507,136.96141,0.017520882 1192,340.4785,231.40695,21.797699,48.33319,0.004084262 1192,621.7109,245.7936,17.435791,50.723038,0.0027293025 1192,490.84167,246.15488,22.02063,46.267303,0.0022953714 1192,616.26953,279.15036,22.877136,83.87067,0.0014563603 1192,621.4898,143.21588,17.65686,57.276062,0.00031258198 1192,290.07352,222.52177,26.380463,52.34755,0.0002979662 1192,2.316556,98.69664,34.310165,179.2303,0.00018913028 1192,617.8709,72.048325,21.275757,71.11342,0.00018777877 1192,611.6301,302.40482,27.51654,154.68427,0.00018338255 1192,608.6877,439.28497,30.458984,65.00806,0.0001571167 1192,494.53778,223.85661,57.371094,90.037704,9.668198e-05 1192,242.97542,189.61044,41.24318,126.16873,8.258175e-05 1192,0.9225684,318.58716,17.514755,135.87686,6.956004e-05 1192,1.4860735,233.19637,18.528156,73.50337,5.7291265e-05 1192,2.1022437,225.71844,32.77184,180.3981,5.458399e-05 1192,571.5362,365.873,67.61047,124.94803,2.460348e-05 1192,1.2210621,100.316536,18.302588,70.61938,2.067873e-05 1192,3.052627,304.48947,56.942112,170.01575,1.8244773e-05 1192,463.52017,166.64832,134.5062,231.41452,6.328455e-06 1192,614.1672,0.0,24.979492,47.215412,4.640067e-06 1192,0.84469324,421.18597,16.261,80.54706,4.32751e-06 1192,385.79123,430.3905,73.34378,69.72299,1.7514793e-06 1192,201.61795,425.61502,74.43671,74.4516,1.6409091e-06 1192,426.76666,430.8426,72.64575,69.233734,1.624696e-06 1192,3.012982,430.24857,53.7137,69.66879,1.0209646e-06 1192,601.866,26.347338,37.28064,163.25189,5.2299856e-07 1192,0.93835044,30.905968,20.898108,101.74738,2.8159738e-07 1192,363.7114,10.686463,43.86908,49.651848,1.7590781e-07 1192,0.60071373,11.177595,12.23181,67.33321,1.223597e-07 1192,3.1581511,20.52891,62.485992,111.482216,8.764306e-08 1192,281.8288,3.4714682,84.344666,88.475815,7.393713e-08 1192,532.398,5.4954658,43.1593,63.344852,6.059774e-08 1192,491.37146,6.458566,44.095703,55.685844,4.3113e-08 1192,333.07983,9.455441,43.042175,48.079933,3.9293113e-08 1192,401.86276,8.413524,43.905,52.77093,1.6919365e-08 1192,586.86194,0.0,43.049194,58.39241,9.05602e-10 1192,271.0307,0.0,45.90689,59.911324,3.554628e-11 1193,513.2303,218.62946,26.212463,62.040985,99.77421 1193,527.6222,216.55487,25.86322,56.53003,0.016737338 1193,469.02786,231.00673,21.890594,48.50563,0.014930028 1193,609.75714,137.26875,29.389526,139.04509,0.007321811 1193,334.82477,211.00604,22.987518,47.28012,0.0046753646 1193,353.84015,215.57542,22.471191,46.841995,0.003979577 1193,156.29147,208.48686,24.852737,46.31099,0.0031148877 1193,610.7283,303.34726,28.418396,165.16135,0.0028711357 1193,498.57913,221.81808,25.91159,52.98993,0.0027495201 1193,621.45917,205.18195,17.6875,54.945618,0.0018813292 1193,3.001312,194.17879,30.25967,77.07112,0.0018018059 1193,624.5108,125.83426,14.635864,45.667145,0.0015386797 1193,597.17926,211.45036,33.691345,59.749893,0.0015093221 1193,623.7943,153.26651,15.352356,46.946136,0.0009434149 1193,300.18774,94.14831,23.124939,53.209633,0.0006272555 1193,1.0052787,209.14449,13.706509,59.39543,0.0004149435 1193,211.16812,207.83905,20.849823,48.776123,0.00037470917 1193,269.76617,200.21783,26.748322,50.717224,0.00029102474 1193,589.49536,162.28076,48.180298,208.27325,0.0002851811 1193,617.63556,236.11844,21.511108,94.598236,0.00026355893 1193,617.0399,62.333035,22.10675,89.72946,0.00017753344 1193,608.8039,440.50708,30.342773,65.285706,9.051821e-05 1193,0.8115047,244.92563,18.980164,78.337555,4.2288117e-05 1193,494.9593,184.3126,70.464966,142.9645,2.912472e-05 1193,1.4991521,223.89302,33.017292,187.79143,1.4561243e-05 1193,3.6962957,153.8812,59.289265,189.10214,7.5625485e-06 1193,607.6081,3.0166602,31.538574,58.87592,7.335818e-06 1193,568.63025,26.1134,69.83057,139.81013,6.3572124e-06 1193,0.89690757,343.75214,19.025455,131.41934,5.7009606e-06 1193,0.9522827,423.8922,16.568405,78.28946,3.5994344e-06 1193,1.5444336,61.876232,18.934238,154.7069,1.921801e-06 1193,3.6843653,346.77646,58.211666,140.45032,1.0111604e-06 1193,1.3792448,0.5120703,18.762863,102.093666,7.4445603e-07 1193,580.9502,7.336348,44.47046,46.256554,2.9648797e-08 1193,268.3309,0.6802051,65.867676,62.070343,2.440277e-08 1193,335.04593,7.527064,39.285553,52.761673,1.639756e-08 1193,435.66214,9.773006,41.70349,45.323296,1.089608e-08 1193,0.93268883,0.0,61.06461,139.92787,9.436626e-09 1193,409.18506,7.6153975,43.085632,53.163963,4.5357984e-09 1193,239.35373,4.592663,42.34384,56.21887,1.7594212e-10 1193,209.75464,2.7423568,45.66362,59.728153,4.9953437e-11 1194,509.3138,213.86568,28.095184,64.98784,99.948715 1194,565.4106,225.59927,26.43457,51.779327,0.30327272 1194,613.85944,227.82678,25.219238,49.896973,0.2367914 1194,529.10443,215.22522,23.661987,52.829315,0.019519933 1194,469.52768,226.83664,22.53003,47.53479,0.018978203 1194,593.3781,238.54037,26.858704,48.134796,0.006918132 1194,620.4074,86.65139,18.739258,57.83213,0.0039695255 1194,611.44574,69.37476,27.700928,134.94421,0.0008625624 1194,602.69653,126.60539,35.44745,164.40398,0.00070242933 1194,1.802509,208.21082,17.855757,70.52893,0.00031489515 1194,588.80646,215.41405,50.34021,221.81627,0.0001946182 1194,612.40015,368.25693,26.746521,131.89487,0.000101205194 1194,617.74524,276.45288,21.401428,84.117096,7.884305e-05 1194,236.65761,192.4329,26.937607,54.394135,5.0699015e-05 1194,2.3803744,167.77254,29.198812,142.57152,3.865735e-05 1194,492.12747,179.1304,67.45572,143.98828,3.2960226e-05 1194,616.3568,32.766296,22.789856,89.21993,3.0187852e-05 1194,0.7300171,291.1869,19.6446,144.4815,1.9731708e-05 1194,3.2471094,218.00299,56.489483,217.96906,1.4095781e-05 1194,298.6811,147.34097,99.41937,198.37543,1.1826595e-05 1194,568.7517,24.033295,69.04535,142.79176,8.501537e-06 1194,1.6214104,136.8502,19.659693,89.33748,5.7937314e-06 1194,0.96811444,423.6223,16.461826,78.656555,3.4857776e-06 1194,5.6063643,352.7157,79.33411,137.30368,1.3735881e-06 1194,3.273003,432.0467,53.063763,67.90927,5.729037e-07 1194,498.3561,7.3751664,45.906036,55.664047,2.653067e-08 1194,1.2670231,53.549747,33.370842,192.43433,2.0025597e-08 1194,248.19058,10.627441,86.110535,77.69534,1.713076e-08 1194,201.75543,2.567832,65.74222,56.740116,2.523416e-09 1194,176.11882,0.0,43.698242,67.62177,5.577561e-10 1194,0.22922853,7.763633,57.581932,134.15273,5.928023e-11 1194,0.53567386,2.0053256,29.837852,73.87089,1.1942534e-12 1195,505.36755,226.84073,28.723633,70.05438,99.945015 1195,324.54202,215.5331,24.075653,47.77162,0.2791966 1195,341.27417,214.82918,27.25595,47.39186,0.07422468 1195,569.9852,238.55902,25.293457,49.34436,0.03578843 1195,278.79688,225.16858,22.777191,50.575134,0.012785385 1195,154.4737,209.25513,24.654404,58.06549,0.0051903194 1195,491.2347,233.04056,24.235016,56.17865,0.0040750615 1195,359.39536,215.03984,27.455292,47.81523,0.0038965987 1195,252.56633,73.839584,24.189163,60.62471,0.002095408 1195,611.1386,194.3537,27.423096,106.52356,0.00082530314 1195,617.5124,105.10674,21.634277,87.673836,0.0003782691 1195,1.919555,178.7369,28.543756,143.02266,0.00034881508 1195,589.2646,255.59444,49.5755,211.61125,0.0002136421 1195,215.86613,207.0014,27.480072,52.790863,0.00020597928 1195,254.03426,254.49454,43.862686,145.54492,9.3334755e-05 1195,612.1516,368.2237,26.995056,131.61185,6.44666e-05 1195,588.5383,81.14034,49.121338,239.71045,3.951819e-05 1195,0.6812842,240.4173,15.734341,65.825775,3.9069113e-05 1195,2.9793768,216.9492,57.456455,248.0941,3.5052533e-05 1195,611.1253,23.788744,28.021362,139.61282,3.449883e-05 1195,485.9071,203.02211,71.6178,134.75652,3.3069104e-05 1195,1.0452043,249.90048,20.578266,155.91394,2.9899786e-05 1195,599.7549,199.9288,23.887695,53.328033,2.5592994e-05 1195,1.6159294,163.15747,19.731546,79.299194,1.8196328e-05 1195,1.1388233,364.1037,20.542238,105.41287,8.819132e-06 1195,19.948008,110.29496,72.06411,183.48895,5.7355783e-06 1195,0.920848,422.68518,16.377998,79.631226,2.2226795e-06 1195,234.22029,11.343496,42.75679,146.69896,1.1390899e-06 1195,3.4412956,394.68216,55.970894,99.5614,1.0141445e-06 1195,340.70398,6.25446,49.944153,59.678303,1.912928e-07 1195,238.54518,2.817321,47.93904,56.191242,4.118103e-08 1195,1.1535255,7.1535482,33.263958,75.568436,1.6030059e-08 1195,181.0418,1.8191407,65.246735,57.897728,2.9250369e-09 1195,150.61545,0.0,43.099304,67.93025,7.903217e-10 1196,465.56958,219.89256,37.894592,78.90349,99.948906 1196,250.432,202.43417,32.42935,60.374542,9.377673 1196,268.4893,209.07936,23.53833,46.39598,1.990976 1196,400.98074,218.76462,26.073944,50.074432,0.16900693 1196,1.9647787,198.50905,24.735006,51.52614,0.059097145 1196,277.86084,216.18912,24.861053,56.429077,0.014968245 1196,538.48956,241.87094,26.41504,47.225677,0.0066942186 1196,288.6639,209.71129,35.52957,63.24904,0.00490765 1196,622.81915,251.2187,16.327515,48.631973,0.0046950323 1196,52.603527,188.28358,26.197918,56.122803,0.0024620509 1196,2.0869582,189.17107,27.821724,159.16685,0.0019309379 1196,86.30372,204.93553,23.99231,50.87674,0.0014693204 1196,620.8701,53.543453,18.27655,57.937473,0.0007362355 1196,600.6856,95.15598,37.207886,206.36655,0.00066747033 1196,611.9495,209.31944,27.197144,112.95683,0.00061097473 1196,147.83557,194.73042,28.33194,59.466873,0.00047217796 1196,611.7663,267.4226,27.380371,145.40262,0.00013014904 1196,436.83292,203.82259,21.959808,53.52028,0.0001165291 1196,611.7291,368.41183,27.417542,130.5762,0.00010145508 1196,609.9301,20.071505,29.216553,145.79878,7.112247e-05 1196,442.83386,180.04715,88.03607,174.16293,5.474461e-05 1196,563.927,187.94333,25.999084,53.91658,1.8461986e-05 1196,606.8348,6.9460225,32.31189,58.804955,1.800122e-05 1196,1.0590658,273.5801,19.305473,133.26163,1.614957e-05 1196,223.69771,145.84175,101.05565,208.16243,1.3748495e-05 1196,3.2899349,269.40906,57.916687,202.38943,1.2760456e-05 1196,0.91135746,359.8679,19.756033,134.73206,7.895156e-06 1196,1.2932495,104.47481,19.676628,138.694,1.1968841e-06 1196,167.69621,12.926647,83.232315,79.41008,3.825194e-07 1196,3.0372055,77.00741,60.498104,231.492,2.469731e-07 1196,288.79507,2.9332829,46.32422,46.430214,1.5336195e-07 1196,462.87735,6.0693135,47.21631,57.386482,1.337333e-07 1196,218.54941,13.448988,42.602875,51.13083,7.58055e-08 1196,579.66583,6.9210367,44.953613,52.304188,6.571102e-08 1196,262.55194,6.2283792,45.80536,46.43666,6.111706e-08 1196,406.71365,6.0951366,46.138855,56.52471,1.3345115e-08 1196,133.68326,3.391849,46.362946,63.221783,9.061052e-09 1196,1.4673487,7.6816344,32.80856,79.00861,4.674722e-09 1196,104.705925,0.0,48.511696,68.78401,4.891613e-10 1197,349.5114,223.61324,40.841278,87.63982,99.9166 1197,123.95959,212.55228,29.702995,57.458984,1.1118726 1197,586.3323,219.02022,28.842346,49.552963,0.46931127 1197,2.6163883,189.90315,37.781425,94.43712,0.38811016 1197,279.83267,218.07782,35.0542,62.991882,0.074284084 1197,1.1833692,203.70638,15.365271,64.87828,0.009866333 1197,100.57435,188.619,62.580498,112.18938,0.0024160533 1197,581.59357,208.15242,44.73822,109.695724,0.0005982896 1197,326.6366,188.61224,86.96039,185.58002,0.0005671531 1197,168.43591,222.29315,25.587372,48.57892,0.00053797156 1197,616.07605,218.01097,23.070618,76.376785,0.00030291724 1197,1.934572,208.6271,56.328922,249.70337,0.00026388283 1197,1.1598121,213.42422,19.544735,151.46939,0.00024483408 1197,562.08075,225.22725,39.30835,78.39693,0.0001723788 1197,541.0359,208.05779,40.372498,119.26213,8.7538036e-05 1197,1.037076,299.15283,21.276585,148.57712,8.421574e-05 1197,601.79,214.57254,37.26825,178.69412,5.9264097e-05 1197,611.7368,104.46854,27.409851,144.01837,5.1243587e-05 1197,611.79865,370.84033,27.348022,128.52228,4.958932e-05 1197,610.9386,27.149792,28.208069,133.81029,3.0554533e-05 1197,1.5487028,12.668213,17.176758,77.83611,2.5882677e-05 1197,3.5633464,17.773764,58.98737,112.22599,5.7353377e-06 1197,591.3014,9.442609,45.71991,49.23413,5.4339002e-06 1197,1.0348861,422.97913,16.467909,78.990875,2.6999376e-06 1197,2.6812143,386.94717,56.86087,106.4827,1.4263754e-06 1197,1.4488517,50.293594,20.013443,174.30086,1.1650756e-06 1197,69.26582,20.109894,80.155945,65.94291,7.1785485e-07 1197,28.413034,7.472178,49.652397,63.110355,3.1575388e-07 1197,157.59674,14.7728195,42.12973,52.600525,1.367069e-07 1197,130.88226,14.665025,46.948517,51.262794,9.6631226e-08 1197,359.12982,7.364421,44.837463,56.00901,8.516753e-08 1197,192.22879,13.10147,42.341064,54.428856,7.223237e-08 1197,59.886395,13.2086735,45.27309,48.285995,5.6916544e-08 1197,218.70024,10.354025,42.511703,56.415886,1.4219246e-08 1197,471.1372,7.9316473,43.712463,51.54352,9.73224e-09 1198,157.22777,226.61246,47.37114,98.13739,99.946945 1198,428.37054,218.29951,23.089508,46.312332,0.31934533 1198,167.1098,226.7724,25.720978,49.60211,0.15637745 1198,507.10855,227.84245,27.846527,58.491196,0.03705517 1198,149.99112,235.2936,24.144867,71.535904,0.02652938 1198,498.141,222.18208,23.715515,47.263138,0.0090439785 1198,476.10126,223.05865,25.924896,53.934174,0.0070357122 1198,457.58682,221.32323,32.241486,69.37465,0.0055179494 1198,244.66644,237.1893,22.944275,51.665405,0.005217076 1198,189.73984,231.511,33.247543,72.35533,0.0032751078 1198,617.02264,184.8135,22.124023,83.036865,0.0027319745 1198,606.01294,84.20946,33.133728,80.89882,0.0008692271 1198,557.2804,221.568,25.010132,54.901764,0.0008232578 1198,1.2307243,336.56485,19.76519,89.3403,0.0005452533 1198,621.7007,394.35547,17.445984,50.722412,0.00025293356 1198,1.5157032,227.15865,17.917662,72.58226,0.00021873577 1198,586.84766,87.58961,50.73407,218.9078,0.00014738861 1198,66.45612,199.4011,78.62832,159.50299,0.00014233311 1198,616.7916,327.1268,22.355042,81.84885,8.8960915e-05 1198,2.2329118,271.6642,56.617847,200.08267,8.6803484e-05 1198,587.8797,207.3932,50.604553,222.51213,7.322829e-05 1198,1.8428574,193.08386,29.069187,150.36282,5.449874e-05 1198,608.8846,440.82288,30.262085,63.644257,2.6930875e-05 1198,585.3627,393.21292,53.783997,101.87976,1.7819757e-05 1198,112.6392,145.04764,134.45322,256.4929,1.7734752e-05 1198,1.2574968,124.49563,19.840073,145.0076,1.7228105e-05 1198,0.8134961,386.05612,20.792482,108.725555,1.3580002e-05 1198,4.269061,88.14608,56.31479,259.90836,8.63517e-06 1198,1.4629565,50.06716,17.908726,70.00706,7.5211487e-06 1198,1.2996875,11.417593,21.18989,55.560112,4.800122e-06 1198,5.9656286,30.294363,76.99129,115.74169,2.6260693e-06 1198,3.9613135,16.547182,48.658947,69.17964,1.6949938e-06 1198,1.6035653,56.719486,28.645258,148.26637,1.3204176e-06 1198,612.615,4.1712694,26.531677,52.8161,9.464159e-07 1198,2.8466814,428.76355,53.070595,70.5726,4.0817963e-07 1198,27.961126,11.290599,42.482147,57.52947,1.5120966e-07 1198,403.73294,12.31226,44.10849,47.430332,9.4139615e-08 1198,50.2384,13.050585,47.012264,53.588875,7.943727e-08 1198,429.32544,11.347092,42.024994,47.640083,2.519392e-08 1198,305.59723,7.9086885,44.812714,53.76139,1.6716383e-08 1198,244.47342,5.351634,44.348602,56.333935,1.6075251e-08 1198,116.14545,12.20667,46.13199,53.636997,1.3996715e-08 1198,184.75575,5.16647,41.842407,48.5046,1.37161e-08 1198,89.79158,14.174777,42.555557,46.924976,1.13194165e-08 1198,272.2599,7.4120507,43.891205,56.43935,5.7111817e-09 1199,555.5118,233.84134,48.128662,85.23682,99.92499 1199,301.3011,211.68976,32.933075,66.37488,0.0037777983 1199,248.58199,219.19011,26.74141,46.994644,0.0029475633 1199,170.29001,222.83925,34.91098,72.5883,0.0018527599 1199,190.80965,221.80548,33.11853,67.18161,0.00092988246 1199,532.0528,191.94397,101.86145,187.20334,0.0006421046 1199,2.0133424,188.74449,33.754887,170.71696,0.0004084902 1199,1.1383862,155.54517,19.726158,87.22601,0.00033617823 1199,1.4807943,267.85333,17.913536,75.63339,0.00032000287 1199,617.8703,240.53976,21.276367,82.58237,0.00028630823 1199,601.9587,201.29005,37.18799,168.97661,0.00025319905 1199,381.3445,221.13185,23.128113,49.829453,0.00025216263 1199,621.6131,360.643,17.53357,52.352936,0.00024524351 1199,209.94905,234.42068,24.121323,50.988922,0.0002430199 1199,584.56165,260.19672,54.15863,227.34329,0.00013943698 1199,608.43665,443.57516,30.710022,60.80063,0.00010862868 1199,616.86743,300.9519,22.279236,87.68466,0.000101400714 1199,0.84445316,54.135426,20.353657,83.635056,4.5545617e-05 1199,3.1861784,34.898373,80.22116,323.7735,3.9192113e-05 1199,0.9714518,313.5373,18.30081,73.85516,2.7755455e-05 1199,0.93523604,69.33442,30.504759,205.13605,2.5422662e-05 1199,612.004,106.68566,27.14264,153.34637,2.4369725e-05 1199,1.6276742,292.10922,32.633286,172.775,1.013041e-05 1199,0.88365966,355.38608,18.323462,75.50949,1.00215e-05 1199,612.0483,0.0,27.098389,61.818752,7.3833335e-06 1199,0.84678304,419.50113,16.343693,81.01471,2.3262135e-06 1199,6.905492,344.7586,77.93309,139.65323,1.4356665e-06 1199,1.4149675,9.553594,59.566166,127.624916,8.9060643e-07 1199,184.25734,6.279193,50.04796,58.12083,6.126521e-07 1199,42.96231,425.8442,74.43657,71.995026,4.832262e-07 1199,3.118571,427.41183,53.175793,70.69504,3.0297082e-07 1199,216.65402,4.421639,44.113525,53.25434,1.1617686e-07 1199,0.42764974,4.612181,24.509802,72.001396,9.105236e-08 1199,430.17838,1.1836865,40.47986,49.492886,4.638847e-13 1200,217.85956,237.78346,55.850586,95.5045,99.9041 1200,570.84235,217.30956,28.193726,52.714615,0.9002995 1200,116.77386,203.05719,34.175835,69.29428,0.028779369 1200,589.34973,213.17294,25.622559,55.51761,0.023810383 1200,613.9141,199.0791,25.049805,55.896133,0.010673551 1200,623.5098,282.44583,15.636841,46.952393,0.0073088706 1200,595.1915,214.30246,42.02362,122.92352,0.0066632726 1200,2.288838,210.52129,35.643467,79.80769,0.0033371416 1200,3.571797,80.22123,72.3309,221.61343,0.0026658007 1200,32.48182,212.8045,34.133263,64.08804,0.0021437055 1200,582.92365,292.07944,56.0578,210.73792,0.0009267449 1200,1.7335271,77.44902,22.587372,169.93448,0.00045813236 1200,610.0444,413.1942,29.102295,92.138824,0.00033594877 1200,616.8139,97.64642,22.332764,83.04787,0.00012337447 1200,1.3354037,230.5985,19.642351,136.87788,0.000104657636 1200,174.87291,158.19974,141.14037,240.07373,5.2283183e-05 1200,1.0150342,320.3466,18.439688,144.05539,2.3887666e-05 1200,584.3679,27.618126,53.760254,275.02493,2.345152e-05 1200,4.032253,219.6924,57.27845,241.95073,1.9523002e-05 1200,2.4233725,15.387559,60.04156,141.36534,7.773791e-06 1200,0.9511157,419.2676,16.28837,82.25601,4.1977596e-06 1200,3.2808268,394.5013,56.243126,97.89322,2.1498615e-06 1200,1.009873,11.781943,14.363799,78.83355,1.7516523e-07 1200,1.8167905,5.3030863,38.82892,59.109962,5.1277404e-08 1201,539.45776,204.55559,38.503906,70.93495,1.0727903 1201,516.241,201.11165,24.639343,53.65242,0.41319826 1201,460.042,211.07593,29.62082,58.24002,0.11020715 1201,560.0708,202.12038,29.214417,53.38275,0.02744607 1201,531.52875,215.09367,23.241516,48.43895,0.008614223 1201,601.36444,300.25476,37.782227,193.38025,0.008285856 1201,508.42755,167.32838,40.065918,119.10356,0.006361142 1201,617.956,376.06454,21.190674,69.34744,0.0057132104 1201,607.28204,119.521645,31.442566,158.32684,0.0034483739 1201,622.4559,220.64133,16.690796,53.96469,0.0027281474 1201,162.72612,225.2706,24.020615,46.909576,0.001227364 1201,620.60364,133.7718,18.54303,61.504562,0.0007838341 1201,619.615,178.81912,19.531677,66.532135,0.00047060548 1201,618.28754,246.89003,20.85913,79.71419,0.0004360563 1201,590.53906,165.33315,47.28351,248.35997,0.00036070813 1201,1.5262175,198.95415,18.224613,73.416824,0.00026840108 1201,621.7105,99.94949,17.436157,56.34207,0.00024694623 1201,607.1519,433.6158,31.994751,74.57196,0.00017770486 1201,239.10391,219.54915,33.453125,74.862656,0.00012407356 1201,2.4054012,101.53445,28.519495,151.28995,9.0831076e-05 1201,1.2634985,145.83359,13.6886015,58.122635,6.73523e-05 1201,624.03125,312.42325,15.1154175,49.655334,4.5909183e-05 1201,4.363965,157.4641,58.03098,214.24107,2.387705e-05 1201,0.9843636,245.95187,18.138748,141.68481,1.5613623e-05 1201,1.1104298,400.25626,18.10337,72.091675,1.0395956e-05 1201,610.49805,6.5424905,28.64862,109.68261,6.6437233e-06 1201,1.3270053,314.28763,28.664577,149.3179,4.7121484e-06 1201,1.1780599,444.0136,21.84213,59.578217,3.4497575e-06 1201,3.8157797,400.04907,56.09685,95.750824,1.7257039e-06 1201,0.961473,9.181751,40.430496,82.93732,5.237373e-07 1201,2.62139,18.484154,60.32837,205.43466,2.6429922e-07 1201,1.1147453,29.449429,19.93118,162.29352,1.2847423e-07 1201,0.7534074,0.049663085,21.542067,45.28953,5.806788e-09 1201,382.5163,2.030897,40.489532,50.86375,1.8388535e-13 1202,599.47327,201.62447,26.963074,51.748566,0.4468325 1202,590.89124,209.53978,42.175354,92.39433,0.41095582 1202,418.5513,223.55,28.425323,59.225174,0.3101592 1202,504.98737,194.77936,43.60565,90.14072,0.10754681 1202,407.9088,208.88052,26.375214,57.442627,0.055935897 1202,433.12747,219.90602,23.160156,48.543137,0.043772105 1202,528.013,198.70819,25.41394,52.892105,0.0340597 1202,616.4537,142.88538,22.692993,78.31029,0.02373796 1202,512.6066,209.14175,23.465027,45.968124,0.012732926 1202,461.88626,148.79498,34.449493,91.41104,0.007055889 1202,9.478803,188.83185,37.28604,65.341934,0.003926987 1202,573.0243,131.8393,64.63367,220.6622,0.0032539384 1202,617.86676,235.62587,21.279907,69.68617,0.0022022265 1202,496.85117,206.67766,26.672577,66.325485,0.001143514 1202,469.4966,199.06941,22.682037,49.501877,0.000727652 1202,523.8139,198.07426,72.11322,172.48405,0.00038956295 1202,1.4136882,307.17953,44.93612,167.48694,0.00032426658 1202,608.2062,440.48105,30.94049,64.56708,0.00015906077 1202,0.2409017,343.8002,12.610077,48.393127,0.00014582522 1202,1.8991293,151.59721,18.632822,127.103195,0.000112032874 1202,43.95616,212.90146,78.82427,196.12222,0.00010915622 1202,4.338112,171.70735,55.642353,249.91722,9.492689e-05 1202,602.8846,276.684,36.262085,204.11765,8.666783e-05 1202,616.4474,56.9947,22.69928,79.06146,7.78881e-05 1202,598.2232,25.014708,40.923462,217.68884,5.7606183e-05 1202,128.19145,195.42305,23.907822,47.75177,4.6658304e-05 1202,443.94156,142.46144,78.176605,157.0218,4.4432592e-05 1202,0.83865154,400.7892,18.166573,84.509125,3.306062e-05 1202,1.0319067,210.87941,20.32339,174.71132,3.221679e-05 1202,1.3682976,105.359406,19.016397,87.04645,1.5462832e-05 1202,595.9666,11.0969925,42.91681,77.99648,3.386222e-06 1202,2.5999088,419.9225,52.837257,76.93317,2.7824567e-06 1202,2.5172918,68.26262,34.932877,198.87917,1.1189451e-06 1202,579.9285,6.6907783,42.5354,48.605183,2.1178455e-08 1202,1.7494336,15.595387,31.934713,66.22643,3.0785575e-11 1203,437.6628,229.53355,23.457916,54.715195,11.0198345 1203,424.8226,239.7799,20.32898,45.65918,2.609337 1203,536.2982,200.09013,25.30133,55.90474,0.3602783 1203,549.0535,208.36299,25.29364,55.494736,0.13076054 1203,533.8329,169.23744,41.856323,124.68614,0.023487411 1203,622.5784,209.83667,16.568237,53.215363,0.009512384 1203,450.61694,231.36412,26.850006,54.879623,0.009155728 1203,400.69073,227.6062,21.965515,52.45981,0.0015236859 1203,71.18247,190.07227,32.631714,64.00136,0.0014772501 1203,611.4701,171.92967,27.676575,123.407425,0.0011309476 1203,1.3023641,183.5656,19.118036,88.81462,0.0006590226 1203,553.3608,164.32654,31.225952,74.659515,0.0005601128 1203,22.79568,191.21985,25.850935,50.363678,0.0005410225 1203,586.10297,91.98829,49.987,216.70044,0.00041211347 1203,2.710267,154.90318,32.750797,180.5702,0.00032998453 1203,471.67444,147.456,21.713806,47.577286,0.0003285379 1203,1.4895256,235.03511,19.320215,77.34328,0.00020758982 1203,614.7045,96.34349,24.442139,99.467865,0.00014819368 1203,7.857917,201.27954,76.04627,184.40167,0.00013745966 1203,617.92834,281.14105,21.218323,82.79462,0.00010596324 1203,611.9314,366.0529,27.215271,131.34634,9.932771e-05 1203,586.10803,244.68561,51.604004,223.84384,9.13415e-05 1203,2.080166,257.71225,35.14669,200.67865,8.3380946e-05 1203,545.22797,145.94444,25.231995,60.110825,6.6911576e-05 1203,617.2012,328.8626,21.945496,84.05313,5.55942e-05 1203,505.9627,144.39803,115.48389,201.96333,4.8851245e-05 1203,615.8793,47.210033,23.267395,88.57919,4.7139285e-05 1203,341.2832,214.37524,22.905396,50.478546,3.0841373e-05 1203,1.3725724,308.35547,13.9756565,51.098846,2.9873734e-05 1203,1.023352,355.34247,18.76451,137.34097,2.5763187e-05 1203,401.8262,168.20717,97.7272,200.42336,2.118139e-05 1203,44.849148,181.92834,81.63263,185.29654,1.6051912e-05 1203,4.0525846,335.2274,77.94896,147.6442,6.2511835e-06 1203,597.6011,9.441735,41.545593,80.06222,4.827999e-06 1203,1.2546208,100.50781,21.54391,126.85487,4.004873e-06 1203,3.010005,424.9946,52.761063,71.62271,9.0097404e-07 1203,1.0495801,44.739105,21.71375,107.73956,1.4184357e-08 1203,544.9303,6.7936883,41.512024,52.234985,2.572955e-09 1203,1.0659456,12.8576565,32.980526,65.697174,1.2637587e-10 1204,500.5369,256.68494,19.760712,49.056244,0.005682104 1204,471.11844,214.78188,23.530731,48.829575,0.0024156778 1204,399.42017,210.94386,25.484894,52.267166,0.002067766 1204,512.5191,248.39821,20.193542,46.01085,0.0015661821 1204,617.1605,221.22195,21.986145,79.44064,0.0011424404 1204,410.29013,188.72102,32.317383,63.08185,0.0006836065 1204,497.2832,227.49539,37.63794,90.56189,0.0004977181 1204,1.4552035,205.08025,20.439032,138.85121,0.00039317628 1204,381.2636,209.75089,24.02594,48.516663,0.00038685853 1204,522.68494,239.57866,26.202942,55.31456,0.00036095522 1204,451.14673,213.08084,36.95642,93.233246,0.00030699396 1204,617.23035,387.93417,21.91632,80.82913,0.00025206115 1204,600.33344,135.90712,38.724182,178.23283,0.00022108675 1204,1.1061101,234.99652,13.599331,49.68509,0.00019953154 1204,6.2238812,212.2399,34.932976,69.12012,0.000118949654 1204,108.95506,212.9921,32.387085,63.406647,0.00010947816 1204,73.31644,222.95352,61.878647,129.86462,9.891811e-05 1204,535.844,232.80777,25.110107,53.757355,9.601637e-05 1204,608.56964,440.2253,30.577026,65.68475,8.1096536e-05 1204,617.6185,71.26497,21.528137,75.883575,7.7384706e-05 1204,617.9461,285.43823,21.200562,79.8696,6.672551e-05 1204,1.2460804,178.30238,12.94314,53.432312,6.1500796e-05 1204,602.6634,298.62408,36.483276,186.23874,5.139898e-05 1204,616.3387,129.65758,22.807983,95.78879,4.5180273e-05 1204,4.0761085,153.13892,55.77094,224.8313,4.0649706e-05 1204,1.0596668,284.69907,16.530718,130.44778,3.8428276e-05 1204,0.97556645,376.65897,19.161873,118.785065,1.1400087e-05 1204,2.0503867,114.22529,29.03814,162.54959,1.1143558e-05 1204,616.9372,20.891144,22.209473,84.17401,1.0281956e-05 1204,4.8837013,334.37534,78.78015,146.80014,5.9736885e-06 1204,1.4528353,75.34287,18.508423,74.7877,1.2650395e-06 1204,454.8885,427.93246,75.85394,71.936676,9.719154e-07 1204,3.0273242,426.8961,53.455547,69.78659,4.713225e-07 1204,467.3839,4.2004166,44.871277,56.577526,1.8350612e-07 1204,424.56815,4.5753355,41.285187,51.568924,5.4272242e-08 1204,2.5514634,24.434877,57.50558,110.28963,2.4012802e-08 1204,0.840542,8.711411,19.060413,55.589348,1.1027295e-08 1204,300.3342,3.7369874,39.497864,54.40408,1.8555141e-10 1205,446.31018,237.63889,26.04712,59.763336,0.063709065 1205,495.50095,216.62128,35.963104,67.9317,0.022341272 1205,453.6516,205.77405,25.447723,53.733185,0.018835874 1205,517.3748,219.4145,23.05597,50.228348,0.015494618 1205,532.2503,215.91318,23.350159,45.54657,0.0048876377 1205,484.46085,222.20729,26.429108,57.249466,0.004341192 1205,546.6749,210.90466,23.632385,47.457886,0.004242849 1205,471.03958,147.09506,20.743713,45.38971,0.0019448538 1205,622.2624,293.28198,16.884277,61.48236,0.0014576804 1205,617.7092,318.8569,21.437439,81.45645,0.0010095368 1205,611.0714,226.43599,27.929688,138.65489,0.00093799544 1205,1.315839,185.1586,18.237392,75.38965,0.0009114094 1205,463.10834,210.83878,34.91031,76.790985,0.00088948116 1205,601.5878,333.6852,37.558838,155.80835,0.0004525851 1205,585.51465,116.86864,51.12549,236.06367,0.00038372283 1205,2.6113737,111.69177,33.6992,186.5686,0.00023022249 1205,622.45593,223.65297,16.690735,56.738754,0.00020472512 1205,617.82697,102.44198,21.319702,80.59606,0.00015902286 1205,616.9609,167.67334,22.185791,80.094604,0.00011784763 1205,1.5598193,243.26889,20.54185,107.24271,7.459672e-05 1205,608.5198,439.05835,30.626892,66.13776,7.1701616e-05 1205,438.71683,216.16277,73.41031,165.46547,6.763293e-05 1205,0.9514551,156.68716,14.100489,61.76935,6.4262385e-05 1205,1.0128288,384.7473,18.118305,78.83713,4.185731e-05 1205,4.282886,192.50732,54.680534,241.74814,3.8540507e-05 1205,621.04254,28.566217,18.104126,55.687347,3.0800344e-05 1205,1.6048958,302.3862,30.584686,179.06226,2.3359024e-05 1205,609.7505,1.2626172,29.39618,159.52335,5.733172e-06 1205,5.618812,340.6816,77.072495,143.17538,5.223738e-06 1205,2.5153792,418.63434,52.57947,74.766235,4.5042602e-06 1205,1.5228207,54.536636,20.250708,155.10056,7.0567216e-07 1205,0.9347901,14.80503,12.245017,77.91169,1.0730472e-07 1205,2.0798876,21.928799,57.134384,115.639114,2.2934861e-08 1205,438.48257,3.776701,41.082184,49.55494,1.8763785e-08 1205,516.11566,5.5873713,44.252136,51.2425,1.24601485e-08 1205,545.56586,5.44395,42.186768,48.444363,7.719141e-09 1205,490.0023,3.40069,44.610504,49.912987,5.0567786e-09 1205,319.51736,3.2040317,40.87195,53.402245,7.769696e-11 1206,580.0791,206.12877,34.829773,58.668167,4.4341903 1206,616.63257,205.11446,22.5141,84.82524,0.37439284 1206,584.25934,322.36444,53.62567,155.24136,0.027396344 1206,608.1624,366.57733,28.55487,81.05246,0.02009599 1206,554.6349,120.08776,20.528564,46.753685,0.009090255 1206,571.4893,123.43254,63.32019,258.1565,0.003399158 1206,624.86694,421.21606,14.279724,48.006134,0.0021208336 1206,412.09674,80.32687,25.846497,53.608,0.0012393541 1206,623.53815,360.067,15.6085205,49.948486,0.0012134537 1206,571.84937,226.35034,29.548706,57.564056,0.0008469428 1206,604.9979,421.67416,34.148743,85.089325,0.0006127252 1206,502.83054,66.43031,31.160126,62.933014,0.000531562 1206,621.6892,125.29214,17.457458,63.191307,0.00049463724 1206,1.8400562,180.6945,18.054674,74.90842,0.0003169916 1206,610.115,93.86227,29.031677,158.50513,0.00025362222 1206,1.1481136,268.21027,48.741066,216.69214,0.00023920224 1206,3.8672445,152.15916,55.894566,231.82271,0.00023867268 1206,483.46234,213.38718,25.627563,50.93451,0.00019638908 1206,617.5434,55.69956,21.603271,78.26546,0.00017397317 1206,0.44946373,322.67996,21.202679,102.285706,0.00013991118 1206,552.1938,113.460106,39.026367,94.02874,5.993627e-05 1206,1.0771542,422.9396,13.4239235,53.59839,4.5606248e-05 1206,1.1771744,372.11533,19.925705,127.52884,1.4278908e-05 1206,0.90126383,235.55284,12.798742,54.946457,1.1854983e-05 1206,584.9276,13.039551,53.65625,115.40704,1.0904577e-05 1206,572.7398,122.09654,40.402588,82.18787,1.03846605e-05 1206,2.4357748,91.09823,32.077095,199.23566,8.325137e-06 1206,2.9453988,423.4831,51.98987,73.460205,3.2056314e-06 1206,0.84730184,12.35127,12.503417,80.24933,1.5625317e-07 1206,2.132915,20.819712,57.857372,109.75707,7.282264e-08 1206,6.7496586,4.5240464,42.34237,45.950047,1.129371e-08 1206,308.17776,3.71111,41.337494,58.171574,1.1792475e-10 1206,493.93304,3.1317303,45.414185,50.658012,2.3110916e-11 1207,457.1275,205.46565,23.132599,46.72339,0.0154271275 1207,563.55804,222.45828,24.82257,48.25821,0.0017728554 1207,545.2823,207.4354,38.513977,87.73102,0.0017351685 1207,468.98148,208.64801,24.4104,51.555115,0.0015486885 1207,621.41583,274.1375,17.730835,60.659393,0.00083614944 1207,621.58356,99.165565,17.56311,60.31272,0.0007498355 1207,1.2390885,200.61461,18.07431,75.4265,0.00062356837 1207,586.88934,201.79848,50.981995,221.69054,0.0005682305 1207,90.90569,222.30162,31.435349,65.94145,0.00049625547 1207,609.3826,139.41068,29.764038,162.84549,0.00048017802 1207,579.5975,207.397,24.967407,52.305695,0.00041292192 1207,36.6682,145.21439,41.80187,87.76419,0.00040752284 1207,601.5403,314.71558,37.606384,174.09177,0.0002529777 1207,1.7785214,175.33125,28.540653,159.50768,0.00021298358 1207,415.60474,224.39595,22.840118,50.63228,0.00016445112 1207,3.72237,141.46416,56.69249,255.15254,0.00016114213 1207,599.0725,96.00214,38.371887,111.278046,0.00016089031 1207,108.217995,214.44652,24.986961,51.53328,0.00011810055 1207,608.6935,439.04044,30.453186,67.333496,8.817439e-05 1207,124.108635,207.08043,33.078896,63.240005,7.785319e-05 1207,1.81195,156.39238,18.430693,78.00064,5.8090292e-05 1207,571.84393,49.233086,64.81543,271.12045,5.737175e-05 1207,1.0988102,400.91522,17.840843,79.97931,4.2491134e-05 1207,586.3853,6.7533207,52.07263,133.24036,2.1492307e-05 1207,1.2514966,263.7987,18.985785,147.57999,1.7137585e-05 1207,167.6414,212.19318,38.024338,89.920746,1.6637965e-05 1207,4.235218,380.22913,84.85094,111.05551,1.2524559e-05 1207,1.4817643,80.877075,19.0762,86.3065,1.2448047e-06 1207,357.89572,4.0036607,44.389404,45.099667,1.113272e-06 1207,472.1244,17.630157,36.29074,67.566536,3.5617754e-07 1207,326.6967,6.7081075,43.80655,54.72774,1.3321724e-07 1207,384.0207,4.687956,45.762573,48.71305,1.1383076e-07 1207,451.63547,5.530295,45.667206,53.198685,8.155407e-08 1207,475.27725,5.2035093,64.72592,48.84685,3.9483034e-08 1207,405.0161,6.0231447,65.93344,49.653824,1.7949528e-08 1207,301.25583,5.7620053,41.724274,56.547913,1.2498565e-08 1207,1.3147933,18.829779,36.453762,226.40297,1.1935135e-08 1207,0.62721276,1.5664681,22.389719,67.458626,7.0211232e-09 1207,571.70667,5.2434473,43.80768,52.39572,2.0780229e-09 1207,544.151,4.833968,43.425293,50.117764,1.9754567e-09 1207,517.3981,4.3874984,44.09723,51.287193,1.4167209e-09 1207,11.045882,0.0,40.775932,56.0875,1.4831687e-12 1208,608.68066,85.403755,29.440796,69.98551,0.22873625 1208,545.5362,208.16536,29.66632,53.8976,0.08814243 1208,135.07846,206.23792,26.790466,48.725784,0.013802371 1208,603.615,105.595116,34.996338,203.12228,0.007895465 1208,463.3018,227.54362,22.857605,54.36879,0.0068130335 1208,607.88715,243.5339,31.102783,71.390625,0.0067049395 1208,623.19867,114.63023,15.947998,46.29579,0.0055159605 1208,623.44995,208.74782,15.696716,48.34041,0.00418231 1208,546.78595,185.37073,43.726685,121.08603,0.003479544 1208,613.0585,154.91573,25.953918,63.337692,0.0010741702 1208,73.97923,210.13728,23.925667,48.606796,0.00048273915 1208,574.7249,202.72153,37.073303,64.50214,0.00024353564 1208,612.07355,376.90094,27.07312,125.88611,0.00011699679 1208,0.8078727,257.18127,19.012476,80.93021,0.00010020303 1208,587.7579,247.79001,50.339233,220.35593,8.319453e-05 1208,1.6397462,259.79443,32.895603,191.47922,6.605034e-05 1208,1.4973389,159.78224,18.057987,84.275345,3.5597062e-05 1208,3.9139714,155.53491,58.114456,216.61752,2.3319402e-05 1208,1.347666,107.1024,18.065508,77.58371,2.2150789e-05 1208,587.75336,15.346003,51.1875,126.63729,2.2044956e-05 1208,510.24048,126.304115,37.904297,106.74175,1.8504537e-05 1208,1.7115927,178.46568,28.69152,127.93236,1.736104e-05 1208,1.138654,406.498,17.800531,71.339325,1.0762456e-05 1208,0.806412,337.92242,18.575815,75.78665,6.224641e-06 1208,2.039218,73.25664,28.930634,162.31917,3.5685293e-06 1208,5.5959606,355.4652,78.06627,129.4885,1.5823992e-06 1208,3.1283448,425.90317,52.90048,70.37564,9.951932e-07 1208,349.19754,6.3801775,44.193542,53.799023,5.389616e-07 1208,1.2003663,43.36533,21.510248,102.16872,1.2809569e-07 1208,383.3734,8.250778,81.83508,76.99274,9.7036825e-08 1208,370.76843,4.2575846,45.25772,45.488163,6.51529e-08 1208,319.3409,6.706582,44.052765,54.180874,5.1710934e-08 1208,486.29465,4.3559847,43.634186,45.641937,4.7484487e-08 1208,579.56525,6.0663233,42.814636,49.924553,2.3146066e-08 1208,458.88544,5.064256,45.794067,46.911163,2.0088489e-08 1208,1.7269646,15.524616,60.562126,131.94199,7.681015e-09 1208,428.03442,6.9017596,44.902527,53.230007,7.516076e-09 1208,294.40018,5.055583,41.376373,56.85678,5.18385e-09 1208,0.46638185,3.951439,20.183603,62.76911,3.541785e-10 1209,573.69727,210.55779,28.262878,52.699997,95.36163 1209,560.314,215.37337,25.528381,50.673782,0.072680645 1209,542.5917,218.87927,25.801086,45.497864,0.03375912 1209,603.78723,90.82416,26.012512,48.321487,0.032852005 1209,590.80426,212.79425,23.132446,48.66916,0.007581412 1209,623.3712,82.058014,15.775452,50.371628,0.005809814 1209,594.7375,88.813385,43.8797,132.19928,0.00100191 1209,617.5585,199.28986,21.588196,78.6037,0.0007576013 1209,555.27185,176.57388,61.5932,112.90793,0.00053885573 1209,466.66992,161.97295,27.12265,61.413696,0.00046866213 1209,602.0383,169.48997,35.72351,167.36897,0.00019727879 1209,1.1082276,261.47287,18.367744,75.42093,0.00018878916 1209,0.8762484,77.65284,14.046229,56.32891,0.00014461452 1209,616.10504,298.3301,23.041626,87.07373,0.00014057885 1209,2.7243571,139.08221,34.44467,175.82214,0.000117276286 1209,601.32324,287.83884,37.823425,199.17905,0.00011143849 1209,529.87915,130.80748,104.74017,234.45598,0.000100470585 1209,608.8422,442.95825,30.304443,63.150665,5.1342737e-05 1209,608.89514,10.646355,30.251526,131.10004,3.981598e-05 1209,1.540394,193.52545,18.152834,74.380615,3.506524e-05 1209,73.16864,210.3371,24.41034,52.16327,2.6824142e-05 1209,1.730158,245.25781,32.328346,189.1149,2.5703259e-05 1209,1.1449463,99.0088,19.463522,102.1515,2.1803131e-05 1209,1.0152738,403.0259,16.023376,92.31677,1.0570288e-05 1209,0.7892513,324.01007,18.402788,76.33008,3.848453e-06 1209,5.779033,357.80414,77.41418,124.52545,1.9338618e-06 1209,424.22614,231.94818,41.777527,130.47418,1.8787941e-06 1209,1.4192147,14.063959,21.617205,138.08528,1.7629048e-06 1209,517.0442,34.478672,24.992493,56.546696,1.2175375e-06 1209,2.9406023,424.17712,52.331673,71.7854,9.568308e-07 1209,483.8858,5.1199155,63.229248,51.05372,9.079746e-07 1209,1.8532666,5.4825263,61.77534,274.21432,7.2149106e-07 1209,409.76523,7.4584246,60.918213,48.66357,1.2660139e-07 1209,325.43298,6.669564,44.931458,54.348877,7.1012344e-08 1209,300.90994,5.0233335,41.59482,57.13094,7.834646e-09 1209,4.8573112,1.6594532,48.448166,60.762814,2.2015492e-10 1210,606.9448,233.25043,31.418457,148.21411,0.13256283 1210,612.86194,208.40036,25.250854,59.248993,0.12827133 1210,621.1732,307.64447,17.97345,58.0968,0.0043978025 1210,624.38763,184.21904,14.759033,48.704666,0.0037708662 1210,605.712,128.16501,33.08008,162.96405,0.001183062 1210,615.5234,334.5596,23.623291,103.44879,0.00028774203 1210,588.00684,288.47946,51.13983,200.26102,0.00021432675 1210,37.92027,214.86467,26.905537,55.670944,0.00019201031 1210,616.77094,92.79195,22.375732,100.60835,0.00011712941 1210,1.7199496,199.41493,18.181892,77.925125,0.000111019835 1210,608.28973,439.30865,30.856934,66.67673,5.918632e-05 1210,2.516346,156.4563,35.41912,176.95969,3.2429118e-05 1210,0.6982365,253.01454,18.964582,80.13881,2.9644596e-05 1210,4.253034,225.19394,55.435047,235.42648,2.6663463e-05 1210,1.2408806,334.80997,18.488432,127.15958,1.046485e-05 1210,605.06555,5.0555277,33.99475,113.597786,9.300461e-06 1210,0.8160783,304.58685,18.676062,76.7218,4.293325e-06 1210,565.5419,17.940216,73.19415,157.55923,2.747429e-06 1210,0.9588249,434.79556,21.56884,65.717224,2.2815336e-06 1210,3.359551,392.5172,55.21332,95.48984,1.662514e-06 1210,396.4207,3.072492,45.67856,46.929256,4.1940763e-07 1210,1.6343001,65.12894,19.87934,143.17041,3.129019e-07 1210,347.61362,6.089279,42.710754,56.520573,1.4959689e-07 1210,422.45718,3.4470916,61.94693,53.871727,1.2582888e-07 1210,315.98788,3.4848666,42.970886,46.823696,1.5456234e-08 1210,490.4285,6.654266,43.35074,49.392128,1.2330707e-08 1210,2.4950929,30.141512,61.352024,223.96288,3.9978e-09 1210,1.0971956,4.61736,20.906433,63.56686,1.8308456e-10 1210,204.35059,3.7799578,39.7789,49.38454,1.207341e-11 1211,457.65622,210.7432,28.821869,50.640564,48.677402 1211,434.0226,207.41612,38.49942,61.005875,0.107446745 1211,606.7943,106.527916,31.098328,106.11823,0.043526754 1211,382.94742,190.9325,21.662598,47.087402,0.010899218 1211,589.23224,91.91835,48.933533,260.47382,0.0029584784 1211,622.61676,111.9859,16.529907,51.009644,0.0016605118 1211,616.568,210.46182,22.578674,86.75491,0.0013061323 1211,623.70605,162.89154,15.440613,45.73709,0.00080958364 1211,46.63097,195.62994,23.685734,47.025787,0.0007671181 1211,587.2016,280.70947,50.48413,200.12476,0.0005049229 1211,615.0855,253.47324,24.061157,103.68408,0.00030320336 1211,1.4910938,196.75638,19.16837,81.39249,0.00020029338 1211,617.0886,397.79312,22.058044,83.39703,0.00017447062 1211,132.87955,178.62032,30.794708,65.207214,0.00015847104 1211,537.36847,121.21552,40.12744,84.48705,9.988237e-05 1211,2.4399414,155.10918,35.386654,174.0417,8.447307e-05 1211,609.0585,4.9222007,30.088196,158.20403,2.4596444e-05 1211,0.58538085,254.86887,19.422485,85.28943,1.9862317e-05 1211,426.0139,171.41849,97.481476,194.3193,1.5994e-05 1211,3.5206673,215.20358,56.351288,255.2156,1.5818112e-05 1211,1.0432646,396.90393,16.165283,96.87222,1.219709e-05 1211,1.6197543,312.15237,27.167746,143.24435,9.371063e-06 1211,379.4776,4.3955927,43.796875,48.184044,6.9081425e-06 1211,1.7342587,106.50636,21.52316,121.87547,4.96212e-06 1211,3.5730243,392.75104,55.27744,94.37521,3.1651862e-06 1211,354.61627,5.5740495,42.23831,57.399868,8.191095e-07 1211,383.07843,6.664821,86.253235,80.00806,2.0010107e-07 1211,438.0101,4.7315807,45.131897,57.396156,9.859464e-08 1211,325.06927,4.4723864,46.00534,60.196888,3.0781223e-08 1211,216.63487,4.8053827,42.158493,53.18415,6.5033685e-09 1211,1.5228052,19.89541,31.047482,167.17686,1.2890436e-09 1211,468.30084,3.8825474,42.17624,47.232048,4.2869502e-10 1211,0.7898568,2.9005568,20.911644,66.418015,2.1462927e-10 1212,489.2497,209.3229,23.806274,50.01718,97.71552 1212,117.486084,194.599,25.400146,56.330597,17.172714 1212,391.56158,190.678,23.420715,50.86566,0.564785 1212,592.24005,234.00269,39.85388,63.56201,0.02255404 1212,10.173471,187.51054,23.401926,50.757797,0.0023501888 1212,610.2115,184.80362,28.5979,128.56567,0.0019706823 1212,406.34122,199.30017,23.419312,46.3376,0.001452568 1212,131.22832,187.06284,26.63115,49.125458,0.00110805 1212,2.4464152,136.47395,35.19305,118.722244,0.0004097144 1212,423.58093,219.69948,24.152252,47.759262,0.0002712931 1212,586.1914,54.943974,51.434814,261.82553,0.00025649046 1212,621.7258,53.36181,17.420837,55.669136,0.00018724908 1212,89.67032,113.01555,22.784256,46.272354,0.00018189334 1212,474.4485,184.51259,61.124023,99.72725,8.2274535e-05 1212,611.6306,67.30188,27.516052,146.0225,7.321322e-05 1212,1.058396,190.85971,18.953888,137.69452,5.361163e-05 1212,611.7566,369.0111,27.390076,127.845,3.201129e-05 1212,584.91626,12.47401,54.05481,118.72896,2.511498e-05 1212,4.043558,147.37885,56.533455,227.70816,2.4615687e-05 1212,1.7477686,238.89865,32.672253,198.82864,1.5233501e-05 1212,0.9760368,403.2297,15.507201,91.22287,1.2438439e-05 1212,449.57657,133.41159,131.87729,221.46725,3.8086987e-06 1212,3.593493,395.28848,55.006065,92.90152,1.4209826e-06 1212,1.5952238,45.869915,20.104868,145.40646,1.3027737e-06 1212,401.83707,8.328806,59.503143,46.72361,6.5003246e-07 1212,586.15485,6.6905956,43.118347,49.271477,6.1811346e-07 1212,1.4580746,21.049929,56.100792,125.85684,1.1357181e-07 1212,454.78198,8.930786,42.0401,48.415672,9.75877e-08 1212,346.22977,3.9652638,45.21765,57.236458,5.528496e-08 1212,272.2637,5.6048765,44.10251,52.202785,1.1929695e-08 1212,210.15697,5.486003,41.895065,54.50352,7.9812965e-09 1212,475.61917,5.1882715,46.47867,55.959023,5.061777e-09 1212,300.66956,6.645913,41.640076,49.782448,3.4638417e-09 1212,0.35687095,1.0951791,22.752937,72.338936,1.2430156e-10 1213,483.26117,211.37257,28.292114,58.505417,99.907425 1213,90.94357,205.16266,27.929344,46.63292,99.51939 1213,421.09454,212.3618,29.897339,54.26198,0.09987524 1213,394.7048,200.42989,21.94519,47.404785,0.006425034 1213,623.0465,226.97578,16.100159,49.2632,0.0010977447 1213,605.5891,102.467155,33.02301,169.13107,0.0009916691 1213,618.7455,245.10156,20.401184,73.328064,0.00072285807 1213,573.8181,240.35683,33.68811,71.67406,0.0005882303 1213,618.3168,156.90971,20.829895,73.32333,0.00033719768 1213,1.5024056,151.19832,19.561878,84.43007,0.0002723939 1213,2.2169483,110.02813,35.561176,180.81729,0.00025250818 1213,1.0090942,71.74009,19.408901,93.0257,0.00019996855 1213,76.947426,168.91556,57.537697,108.95706,0.00017040092 1213,617.3966,381.6961,21.750061,81.407135,0.00014253957 1213,1.3753134,204.2461,18.35626,73.724884,6.825328e-05 1213,617.0559,311.7706,22.09076,83.30698,6.294748e-05 1213,586.2494,228.9114,51.81659,236.18073,4.70038e-05 1213,608.87195,442.5334,30.27472,62.115387,3.373169e-05 1213,1.0564592,229.92297,19.84054,145.72812,2.2786162e-05 1213,4.1045218,183.37534,53.864853,241.72717,2.0209767e-05 1213,469.20413,177.40488,70.22299,148.7143,1.6544185e-05 1213,585.6811,394.73505,53.465576,102.024445,1.3795266e-05 1213,0.94023275,366.69345,17.490604,124.66452,1.1472463e-05 1213,609.2739,0.0,29.872742,149.78976,5.2735522e-06 1213,46.342346,118.07497,137.64423,238.00175,2.4663427e-06 1213,2.9309163,389.4015,55.847107,101.979614,1.6621493e-06 1213,213.5173,5.203947,42.59131,54.62982,6.194543e-07 1213,324.36325,5.6578746,49.03183,62.062828,2.0880051e-07 1213,453.38632,4.713252,45.02896,47.390797,1.5016177e-07 1213,183.39233,6.0292745,43.263504,53.935272,9.343641e-08 1213,401.74197,8.30958,44.090424,61.56196,9.317995e-08 1213,474.5204,4.843781,64.878174,51.63697,3.6758458e-08 1213,429.14438,6.784515,43.236786,59.51879,3.2100825e-08 1213,351.40195,5.5787597,46.72632,58.219902,1.9985684e-08 1213,1.1161524,12.598796,36.098064,83.98489,1.496533e-08 1213,158.12782,4.450453,40.900314,58.16719,5.7657656e-09 1213,301.28595,3.9046907,42.20645,59.48218,9.618393e-10 1214,36.206978,199.2099,40.424004,57.864746,99.91682 1214,455.3306,207.00029,32.058533,70.44197,99.90403 1214,396.37357,197.7222,24.895874,45.273254,5.358817 1214,337.10526,192.77419,26.919678,45.03212,0.52325267 1214,401.36734,200.6427,34.069794,81.16043,0.11305991 1214,608.2285,142.32256,30.918152,153.55376,0.028121244 1214,618.2355,133.12213,20.911194,77.21361,0.01449432 1214,352.79666,191.55719,22.775177,49.54683,0.011691633 1214,619.8471,232.2508,19.29956,64.575134,0.0054006344 1214,357.90717,216.4988,23.509888,48.065445,0.00028574793 1214,2.2262444,99.696846,32.773026,162.72214,0.00013394418 1214,124.986305,200.29953,33.26252,75.71802,0.00012642467 1214,17.844847,155.52164,79.48576,147.23087,9.2087415e-05 1214,601.5162,209.78969,37.630493,194.39226,7.7749755e-05 1214,1.0543872,196.38113,18.104467,73.13934,7.417944e-05 1214,438.9556,174.01524,73.58182,142.93779,4.917423e-05 1214,611.4681,368.86353,27.678589,128.49936,4.7744827e-05 1214,1.2601384,200.8603,27.654154,149.67873,1.622594e-05 1214,0.82229334,310.64835,19.655092,134.07791,1.1906515e-05 1214,3.2266831,182.94348,58.543343,251.90729,8.976946e-06 1214,585.9977,12.585879,52.846313,118.34238,7.6701635e-06 1214,0.9739136,422.64932,16.711319,78.682465,2.449167e-06 1214,165.47256,4.5507097,43.814926,57.20746,1.1390596e-06 1214,5.4909215,355.68454,80.482765,132.13559,7.111363e-07 1214,136.706,5.302451,42.06041,55.132347,2.916344e-07 1214,107.79717,4.854437,42.54772,58.607216,2.1451898e-08 1214,270.89847,4.1434407,46.337616,63.58378,1.3823249e-09 1214,1.7511996,12.641758,31.703234,71.271255,5.879359e-10 1214,375.02246,4.8750715,42.699738,56.441654,5.0248267e-10 1215,434.73447,207.11559,35.75699,84.17131,99.74739 1215,3.545202,198.63205,43.115005,70.449646,99.58115 1215,285.7592,206.45401,26.076294,52.52704,99.510216 1215,392.2509,210.68733,36.406494,78.919876,0.7854365 1215,39.4278,204.48653,26.344746,59.232895,0.074205555 1215,271.41827,181.45676,56.078857,97.49069,0.0014373631 1215,4.5155973,162.51082,56.679794,198.01466,0.0013777117 1215,389.7356,89.353905,26.404846,68.10032,0.00074545835 1215,332.693,230.40404,22.666656,46.40544,0.000681885 1215,1.7104028,136.6281,20.70552,143.72148,0.0005474417 1215,616.8823,223.956,22.264343,73.89255,0.00042732953 1215,415.41226,178.52032,75.35321,148.34619,0.00032245053 1215,616.6305,275.15085,22.516174,84.86014,0.00014322963 1215,602.0571,69.515564,37.08954,204.99792,7.220033e-05 1215,108.408066,185.10696,40.623703,129.57391,5.902179e-05 1215,611.6714,308.29358,27.47528,141.58044,5.3923428e-05 1215,587.17957,216.02379,51.967102,217.75356,4.9177794e-05 1215,387.2627,58.92562,43.01645,152.29053,3.0423978e-05 1215,609.75366,440.64627,29.393005,63.000397,1.5877571e-05 1215,0.8301416,242.3312,20.40571,156.21558,9.991535e-06 1215,572.90265,363.26974,66.24402,123.62485,9.081377e-06 1215,610.07184,0.9013086,29.07483,63.49576,8.590831e-06 1215,238.38037,128.62144,138.09927,218.18297,7.396823e-06 1215,1.1266114,351.98016,20.616886,105.330475,4.4538397e-06 1215,0.90882975,423.52887,16.393393,78.83896,2.8127436e-06 1215,3.5197558,397.4323,56.27264,97.42166,8.1867677e-07 1215,1.8936809,66.041985,21.67296,112.2246,1.4535146e-07 1215,75.64661,3.893327,43.740112,45.37745,5.2258052e-08 1215,3.1462371,22.991215,55.517345,106.43135,1.9886134e-08 1215,387.49057,5.5017285,44.76581,59.735317,1.6393246e-08 1215,55.405823,3.6403842,41.503128,62.188755,1.4369032e-08 1215,155.94527,5.6435843,42.031357,55.31781,1.4239167e-08 1215,1.9945085,8.001592,27.52942,59.33221,1.1476544e-09 1215,236.03935,4.233553,46.711258,55.93142,6.927987e-10 1215,211.86745,4.6401987,42.562607,58.248386,6.8462125e-11 1216,304.9802,201.18173,27.03244,61.917877,74.056595 1216,376.55875,58.357742,24.006073,60.689682,8.120326 1216,408.23334,200.25928,51.51413,130.4599,0.9857388 1216,185.03256,192.34125,27.575546,51.200745,0.97854745 1216,435.6419,226.51865,21.802338,49.347137,0.14526981 1216,320.21616,194.6683,21.498657,45.214905,0.09748404 1216,392.65994,51.844612,25.201508,68.99471,0.04361038 1216,7.390822,194.12543,45.629326,156.25647,0.008667718 1216,419.40692,213.35347,26.358398,62.146347,0.0077753575 1216,95.00634,174.34874,24.000175,52.467926,0.006733209 1216,284.72083,179.94751,64.47958,101.83746,0.0066190427 1216,246.15039,185.95302,28.188263,46.50168,0.004324664 1216,401.55707,269.4046,28.09555,64.12305,0.0022557576 1216,452.86798,61.229847,25.975159,57.874516,0.0018322647 1216,319.21945,232.30339,20.695465,49.1808,0.0009198119 1216,1.5810262,195.37901,21.934828,98.40181,0.00048616674 1216,2.216613,252.30365,32.18256,202.03226,0.00017637225 1216,611.5084,196.09544,27.638245,133.55782,0.0001244307 1216,610.91925,322.36487,28.227417,144.28442,0.00012306048 1216,611.2056,107.95763,27.94104,138.70332,9.376424e-05 1216,612.188,413.93784,26.95868,89.62781,7.824516e-05 1216,587.0509,198.47733,52.095764,245.04681,3.0953404e-05 1216,262.80765,122.862816,129.52567,223.37256,1.7274071e-05 1216,1.458501,83.273476,19.68371,175.21597,1.1862685e-05 1216,0.71222496,363.0916,21.151829,107.09662,5.672326e-06 1216,609.481,2.3723536,29.66565,63.222504,3.1366812e-06 1216,0.94764084,423.166,17.066542,78.57251,2.2292604e-06 1216,2.3568213,24.132189,61.458088,255.04048,1.7742526e-06 1216,377.28052,22.580828,60.095947,149.64821,1.3938651e-06 1216,4.817855,346.38525,79.163704,142.28732,1.3608545e-06 1216,82.326035,5.4011216,44.14686,53.890934,3.630487e-07 1216,47.39416,6.890186,42.65305,55.216236,3.4840082e-07 1216,218.5011,10.265825,42.884277,50.19294,3.1695282e-07 1216,1.8214527,19.608633,30.45367,134.94135,1.470867e-07 1216,192.64578,10.301249,40.97995,50.281586,9.776115e-08 1216,418.8099,2.852295,66.44031,57.314777,5.927806e-08 1216,104.38819,3.7989974,46.230812,45.32729,4.5588806e-08 1216,20.374538,6.3320737,41.28275,58.64548,1.4229312e-08 1216,1.3002181,7.778737,18.341583,57.254055,8.983031e-09 1216,467.1319,2.947614,47.61853,57.014057,9.1469676e-10 1216,496.69955,7.3561754,44.081573,52.676098,4.228835e-10 1217,389.11478,200.80325,45.65869,112.079926,99.960014 1217,22.74314,202.6249,49.10781,88.74568,99.93455 1217,375.1033,204.67487,24.843323,59.436462,96.93066 1217,191.4668,191.42967,28.379776,51.072815,54.933907 1217,322.01282,191.88599,29.949646,58.128036,1.4647375 1217,397.483,52.932068,21.074524,50.853676,0.19595052 1217,265.8101,189.74457,31.889282,45.171738,0.050660163 1217,349.03165,193.74026,21.563538,48.396896,0.014195729 1217,503.4972,340.84494,56.161133,109.124146,0.010810439 1217,2.427461,189.28441,41.35483,115.94295,0.0067447247 1217,464.72086,276.86047,54.902985,110.52969,0.0042090616 1217,471.6017,197.79234,36.948914,83.81026,0.0037896151 1217,8.8022785,167.63503,85.30699,180.64403,0.0014086958 1217,616.2512,255.04529,22.895447,85.55087,0.0005040156 1217,610.2279,68.88689,28.918762,148.66028,0.00019342767 1217,465.76,232.34683,144.95935,224.36047,0.00017054821 1217,601.2536,257.85217,37.893066,191.14847,0.00013356509 1217,346.94528,133.9167,131.3529,233.4951,7.924619e-05 1217,2.056788,26.865326,18.875309,112.85979,3.8143407e-05 1217,608.6245,437.70172,30.522156,65.948975,3.6234887e-05 1217,260.10385,133.60403,100.83548,203.72366,1.8145034e-05 1217,1.0873479,348.5641,18.655748,132.22623,1.54776e-05 1217,0.6647844,234.64412,32.140564,209.35677,9.870687e-06 1217,3.863068,22.782715,56.21627,99.21557,5.5577134e-06 1217,448.2698,0.14012045,47.712708,61.22802,4.518837e-06 1217,607.77124,4.007012,31.375427,60.300804,2.948236e-06 1217,3.0522103,388.12137,55.89404,103.307434,1.7132609e-06 1217,115.57272,7.915316,49.644775,56.141224,1.6749144e-06 1217,21.0281,9.44273,44.055534,54.331047,7.9176533e-07 1217,46.261204,8.4726515,43.32803,53.51839,3.8416013e-07 1217,473.53897,0.0,51.104584,67.61909,3.8159973e-07 1217,89.888275,6.0161867,43.5372,55.768856,3.7929655e-07 1217,510.19247,5.7452216,48.60611,59.388897,1.8269169e-07 1217,274.3549,8.636857,43.97928,55.645386,1.2405613e-07 1217,299.1556,6.9102864,46.665222,59.335083,9.748056e-08 1217,148.64969,4.0660253,44.229446,50.381207,5.1573203e-09 1218,475.4722,201.28769,26.91803,65.00229,99.90955 1218,236.31058,189.02815,28.055481,49.7735,99.82907 1218,351.8059,198.84917,49.03839,122.93733,99.7474 1218,352.03067,185.10396,29.89853,65.31418,85.66089 1218,121.630264,202.49516,29.687866,56.730515,25.916811 1218,586.60156,159.72997,28.921448,58.79634,0.6577926 1218,418.90558,192.33862,25.168182,57.61763,0.04888834 1218,584.01135,381.77496,53.630676,109.78177,0.0064068316 1218,582.23016,156.60184,55.000244,276.3742,0.001988998 1218,610.0716,184.96251,29.075073,137.90965,0.0014902822 1218,221.14857,160.60886,57.27504,106.618286,0.0005789616 1218,195.32396,277.524,82.261765,187.7153,0.00037549113 1218,607.1788,0.9770768,31.967896,116.647125,0.00029791164 1218,608.3147,275.68048,30.83197,170.0676,0.00022581784 1218,312.30963,118.423386,132.54294,255.60954,0.00018551623 1218,456.62167,166.4602,70.68222,152.7843,0.0001032054 1218,1.080603,172.47273,19.37137,128.38094,9.122146e-05 1218,610.7348,58.388317,28.411865,154.87502,8.038705e-05 1218,163.3598,10.08286,49.23517,56.23804,3.2589403e-05 1218,1.7818848,98.54752,27.961357,141.20187,1.7554801e-05 1218,585.5319,2.1732,46.52484,56.218403,1.0550106e-05 1218,188.26595,93.61855,133.81819,264.57394,9.609627e-06 1218,0.47748455,269.36826,20.452957,141.37906,6.987893e-06 1218,0.8612248,352.59637,19.069038,132.12396,5.645665e-06 1218,3.1815886,311.51257,58.33387,167.07016,4.667388e-06 1218,248.31345,12.83155,41.069763,51.01827,1.8696002e-06 1218,435.92172,5.5585647,44.5748,58.694,9.231567e-07 1218,136.59158,7.656605,43.03453,54.758247,4.982089e-07 1218,394.27206,6.534289,45.38629,52.354603,2.696704e-07 1218,500.41193,5.1284604,44.99408,57.193363,2.589174e-07 1218,342.78854,8.433753,46.12787,59.36988,2.5535775e-07 1218,272.44574,9.423939,42.034515,51.82392,1.1679007e-07 1218,219.8656,13.280588,40.572083,48.17379,9.44558e-08 1218,295.72232,7.057601,43.359253,46.761066,9.413782e-08 1218,84.97567,2.7797983,45.397316,63.06912,2.8608302e-08 1218,1.6061524,6.9742417,17.732946,61.313774,1.816137e-10 1218,33.1692,5.5155845,41.29437,50.299614,2.3826895e-11 1219,561.6401,197.76846,28.668396,71.81256,99.8235 1219,203.71045,203.35732,47.807312,107.899216,99.37976 1219,241.92412,217.47443,47.871902,133.14041,98.47461 1219,367.24326,188.75868,23.284943,45.833145,97.37969 1219,270.22803,192.10895,23.753265,47.322433,97.14768 1219,435.97885,188.26767,20.490387,45.303223,43.92459 1219,603.64166,186.34308,31.845703,89.075745,0.43120584 1219,348.1179,184.8672,25.935211,45.70604,0.14674181 1219,201.0712,437.51663,58.46512,67.11322,0.0072960225 1219,166.05235,136.11421,146.98317,255.85063,0.0011802886 1219,589.0789,171.45016,50.06775,210.66293,0.00060135114 1219,542.64307,160.0118,79.41858,154.4666,0.00046479772 1219,176.62949,179.89061,24.59999,51.841995,0.00038937983 1219,221.3031,412.35074,85.079315,84.862305,0.000244978 1219,4.034105,318.29257,56.451046,170.89578,0.0001039601 1219,609.1041,3.1622007,30.042542,139.66217,6.6438115e-05 1219,608.27374,436.797,30.872925,68.026764,5.181436e-05 1219,342.31268,121.37571,91.10416,203.58838,4.623943e-05 1219,1.4083049,176.98196,19.64742,117.22537,3.8030594e-05 1219,601.0925,271.66367,38.05414,208.4549,3.1885273e-05 1219,1.26993,339.47028,19.633337,146.13025,1.36569015e-05 1219,1.2450595,250.31615,18.505264,133.54381,8.569278e-06 1219,1.2500912,438.48575,21.960379,63.96472,5.7089255e-06 1219,191.14503,10.00725,47.737732,52.343582,4.1568464e-06 1219,163.81146,8.659223,43.10927,53.810677,8.4239576e-07 1219,457.9823,7.621089,44.935425,54.8596,5.8845626e-07 1219,534.01764,7.2324576,79.21881,82.96989,5.155398e-07 1219,415.44366,9.413424,45.531647,53.27308,4.4977332e-07 1219,489.40912,4.353132,47.079956,58.914978,2.4408783e-07 1219,521.8976,1.226652,45.379333,50.04805,2.003256e-07 1219,580.4258,6.8497105,45.159363,56.422707,1.7211272e-07 1219,110.137215,2.1748617,44.29003,52.487198,9.261067e-08 1219,371.53802,3.2829754,44.73932,52.38458,7.652153e-08 1219,285.6193,3.2997136,44.672516,61.0766,9.564795e-09 1219,0.983252,5.3439846,17.337702,60.237656,5.3864424e-10 1220,284.67505,205.55063,42.75818,96.90332,99.92962 1220,613.5326,203.18828,23.957886,67.880325,85.33436 1220,264.92603,188.13063,45.89273,84.66463,0.2035302 1220,71.3844,202.58263,56.395485,108.34624,0.04139758 1220,599.7251,147.46297,39.42157,171.81133,0.0036299545 1220,259.644,175.76399,85.88776,177.90718,0.0014909818 1220,3.9523325,328.66284,55.193893,164.93869,0.00037319315 1220,206.50395,415.2892,96.394424,88.96771,0.0003123379 1220,613.86847,254.69194,25.278198,97.50664,0.00019058402 1220,615.4609,24.498844,23.685791,90.56857,0.00017163636 1220,210.04533,14.818854,40.527924,88.71744,8.2120736e-05 1220,611.7271,415.30344,27.419556,88.51871,7.559699e-05 1220,600.90955,284.0161,38.23712,206.36984,4.4615936e-05 1220,1.4486377,194.73265,19.658531,120.500626,4.0795574e-05 1220,1.3611573,336.1067,19.83516,158.22879,3.9983406e-05 1220,334.00232,138.57805,89.13437,202.48763,3.8350478e-05 1220,2.3508945,231.83777,31.83316,196.97931,1.28685615e-05 1220,555.51105,420.97745,80.97211,79.10834,2.0447362e-06 1220,172.65906,444.82922,43.28305,55.93985,1.8106101e-06 1220,157.72952,9.3947935,42.04071,53.742237,8.468098e-07 1220,184.95888,8.0907135,44.61891,52.573364,7.984913e-07 1220,117.66611,444.82745,43.60997,56.48944,6.0584836e-07 1220,421.57666,8.2043,46.1911,56.688004,4.5429633e-07 1220,466.3719,5.088094,44.793427,48.912834,3.721874e-07 1220,126.714745,420.90854,74.20377,77.733154,3.46635e-07 1220,545.86536,6.0297365,47.204407,57.116215,2.813681e-07 1220,578.19666,7.3385353,46.9812,56.78384,1.5584362e-07 1220,503.35287,4.498962,45.889374,58.277824,1.3506344e-07 1220,119.67546,5.064053,44.655136,63.473713,8.5602686e-08 1220,390.11426,5.18786,45.279022,51.194798,6.777519e-08 1220,364.62585,3.5271094,46.150146,48.488224,1.5577577e-08 1220,293.05304,3.8054721,43.104156,60.383217,2.888187e-09 1220,0.84728515,4.803112,17.385315,59.89072,1.0209689e-09 1221,346.24802,205.21927,40.288116,93.23053,99.89734 1221,272.13376,192.30943,27.132904,49.307236,99.78481 1221,371.59006,193.15802,24.568481,46.555573,88.90308 1221,615.07117,179.6211,23.463318,92.03415,24.14688 1221,328.40714,181.59724,43.29254,80.622574,0.09637497 1221,187.24289,191.95746,24.134674,45.42073,0.00924681 1221,344.16983,154.7633,78.276794,166.9696,0.0035587628 1221,550.85297,178.33583,27.562744,48.97603,0.0008435959 1221,583.559,146.43718,55.40918,201.5428,0.0006727252 1221,256.87738,164.14027,55.89319,105.70967,0.00042095402 1221,211.93776,413.65533,92.21825,82.46921,0.00041214647 1221,615.7613,24.577286,23.385376,88.682014,0.00034994126 1221,614.5716,244.33368,24.575073,100.31937,0.000125633 1221,1.7105485,197.03831,19.415827,117.4749,9.6929216e-05 1221,611.7861,415.3285,27.360596,88.7345,8.254316e-05 1221,611.11115,324.99527,28.035522,139.50507,5.7321107e-05 1221,224.7699,110.67991,137.60489,237.66183,2.8067743e-05 1221,23.511429,334.59564,81.88515,150.0477,2.3446286e-05 1221,3.3676255,196.08586,56.17042,246.07039,1.6856e-05 1221,0.7258911,265.11136,18.870972,142.59085,5.8960586e-06 1221,569.4887,356.8885,69.65796,136.45953,5.6656218e-06 1221,563.50385,13.603405,75.64282,154.84065,4.0541686e-06 1221,0.85321045,385.294,18.701246,110.38699,3.641363e-06 1221,3.2707324,391.3004,57.858482,97.77881,3.17279e-06 1221,158.55391,10.207109,41.15242,54.286476,2.0140033e-06 1221,196.8394,8.141772,47.724075,55.16598,1.5466984e-06 1221,470.97986,5.5177083,44.850525,57.48642,8.5587544e-07 1221,545.6109,5.5303617,47.909973,60.233196,4.2108127e-07 1221,421.26382,8.95415,46.195465,57.396908,4.1434745e-07 1221,119.49666,5.253825,45.47171,63.075886,2.1354016e-07 1221,513.23175,2.652399,44.934692,47.199303,1.13556e-07 1221,395.62268,7.6962957,47.05539,61.50354,5.0238064e-08 1221,364.83093,3.9862778,45.294983,48.12034,1.3142178e-08 1221,287.02304,4.9390917,42.53003,60.76646,8.449827e-09 1221,0.86306727,4.901937,17.35306,59.74116,9.2352503e-10 1222,406.0326,208.64868,33.67508,82.307434,99.91992 1222,271.9122,191.5912,27.589508,50.693253,99.84451 1222,614.4908,181.1186,24.115723,92.553116,20.21873 1222,423.26028,196.14352,35.881958,75.38565,0.8881037 1222,387.75015,179.9286,75.26111,139.98128,0.0009736905 1222,584.03345,148.67296,55.066467,198.84444,0.00073428685 1222,312.55557,180.64246,40.86017,82.11667,0.0005233 1222,255.59285,165.34286,57.297745,107.7413,0.00047287872 1222,219.78857,268.42548,82.62213,186.43741,0.0001795782 1222,614.0836,255.26485,25.06305,96.3271,0.00017406145 1222,612.10376,415.54584,27.042908,87.84265,7.375198e-05 1222,604.1948,8.063165,34.951843,133.29759,7.310995e-05 1222,600.8893,281.86743,38.257385,204.79883,3.9851613e-05 1222,1.7307528,197.44066,19.371138,116.82704,3.632464e-05 1222,305.36456,138.00453,89.26843,200.4323,2.3806475e-05 1222,221.66605,112.523415,134.51498,236.05533,2.3317445e-05 1222,4.29244,199.46477,55.371777,237.13383,8.140743e-06 1222,62.07004,275.29352,78.547806,173.67154,6.4578408e-06 1222,0.7356511,275.9861,19.161947,139.83826,5.8752908e-06 1222,0.92524415,362.77258,19.144833,134.74103,5.654524e-06 1222,164.2351,9.403896,42.6763,54.18992,1.4119724e-06 1222,202.60187,8.287689,48.60269,56.660088,1.1974206e-06 1222,3.3704624,398.5198,55.839912,94.658325,9.3382664e-07 1222,466.65308,5.593745,44.356842,47.87757,4.631028e-07 1222,545.68524,5.506338,47.718445,58.6053,3.6488842e-07 1222,421.74832,8.359411,46.057526,58.116608,1.8832279e-07 1222,119.46353,5.433672,45.49272,62.23546,1.7377455e-07 1222,492.31815,4.908734,47.07126,47.303852,1.6625356e-07 1222,579.2596,6.068656,46.807617,58.494804,7.061444e-08 1222,517.5015,2.7800846,44.92395,59.77925,3.6937323e-08 1222,390.56616,5.5697203,44.901398,51.963646,3.3910013e-08 1222,304.99786,3.505329,46.96872,59.563026,1.3717201e-08 1222,281.54703,5.124639,41.941345,59.89069,6.9071313e-09 1222,0.861591,4.892422,17.365242,59.8184,9.411474e-10 1223,273.1152,192.19144,27.034271,50.72104,99.84092 1223,456.8536,199.76108,35.94464,87.013916,99.38394 1223,614.3419,182.1021,23.827148,91.495834,32.584343 1223,446.9352,193.76047,27.151611,63.079895,1.5911586 1223,463.13068,192.21222,21.110016,51.038284,0.05707904 1223,549.97955,176.63165,31.179749,50.369446,0.00932572 1223,459.76703,179.65396,72.13098,161.70645,0.004456456 1223,251.21329,206.46944,60.240112,162.84511,0.0017723263 1223,583.64197,150.23318,55.237366,195.97308,0.00092364446 1223,260.87122,165.00557,56.054993,110.64232,0.0004692507 1223,614.07825,241.34396,25.06842,103.29245,0.00018358028 1223,349.05075,143.96547,78.46362,163.62123,9.883683e-05 1223,610.35547,6.487331,28.791199,136.26358,7.65321e-05 1223,607.53784,435.54193,31.608826,70.04578,6.776568e-05 1223,611.2091,324.22168,27.937561,139.96088,5.1860832e-05 1223,1.6070737,195.81746,18.918518,118.55232,3.512746e-05 1223,224.9798,118.74001,131.98846,227.1778,1.8814737e-05 1223,0.9476237,385.00317,18.55449,113.45798,5.9100876e-06 1223,569.084,355.84903,70.06268,136.5838,5.0487097e-06 1223,1.4154696,240.50282,31.700794,183.40623,4.2594916e-06 1223,589.48065,4.4901905,44.989563,49.072807,1.4838976e-06 1223,196.68842,8.40955,48.118042,55.080654,1.3090355e-06 1223,3.3181233,397.54572,56.014645,95.69055,1.1169216e-06 1223,150.38998,9.204007,42.414642,53.632305,1.0982765e-06 1223,470.3915,5.412458,44.99936,57.48236,3.4601408e-07 1223,545.79645,5.671351,47.32495,59.226032,3.205037e-07 1223,421.65295,8.633643,46.081696,57.23461,2.418712e-07 1223,119.44067,5.151953,45.465782,62.793304,2.077882e-07 1223,492.35794,4.968457,46.74283,47.362972,1.3298089e-07 1223,395.11575,7.657741,47.21875,61.517582,4.6639393e-08 1223,517.4197,3.1106935,45.18103,59.758408,3.8942737e-08 1223,368.26617,5.1156154,46.614014,60.352226,1.1577929e-08 1223,299.06143,3.8135352,45.46164,60.081547,7.409139e-09 1223,0.8612354,4.905026,17.36341,59.749493,9.37489e-10 1224,501.02017,202.29102,33.47592,82.81473,99.9622 1224,274.0339,194.2602,28.306152,51.29593,97.92694 1224,440.14084,192.99849,23.527283,47.145447,17.052135 1224,616.97974,206.1188,22.166931,58.49301,2.5290928 1224,481.1106,200.72803,32.54651,77.598694,0.0063823913 1224,184.23756,191.74324,23.591034,45.59752,0.005252414 1224,423.24747,187.73285,37.284485,97.15738,0.0020929375 1224,266.4385,202.21164,48.112946,148.09415,0.0015249624 1224,470.04916,159.94427,86.32504,186.965,0.00082536135 1224,603.67816,94.56039,34.866577,187.67932,0.000788939 1224,610.04535,200.0402,29.101318,159.08156,0.00031589676 1224,420.2189,145.19077,77.16861,174.75168,0.00019479627 1224,611.7652,369.6132,27.38147,127.3988,9.2685295e-05 1224,610.7428,5.1835093,28.40387,144.40942,8.9810375e-05 1224,585.72955,220.36693,53.22821,263.84882,8.433928e-05 1224,560.1848,37.59979,34.35663,79.97496,3.828262e-05 1224,355.411,125.78539,91.11801,214.68747,3.18301e-05 1224,1.4039291,194.61537,19.028913,120.41844,2.888892e-05 1224,232.21652,114.77981,131.71591,235.56781,1.8998395e-05 1224,0.93831056,390.7755,18.416512,108.397766,4.3514133e-06 1224,0.7773128,277.1873,19.01782,135.69745,4.2372085e-06 1224,3.97792,196.76668,56.453266,231.47478,4.165792e-06 1224,554.92523,422.4457,81.33917,77.88721,1.707161e-06 1224,203.205,7.8506722,47.746796,55.99641,1.4755153e-06 1224,589.4367,4.026491,44.68396,49.355316,1.4717153e-06 1224,157.83296,9.109805,41.90599,54.856277,1.4231416e-06 1224,541.5482,6.711094,79.58063,81.95404,1.0172558e-06 1224,3.354061,397.37558,55.714157,96.24963,9.84408e-07 1224,466.36096,5.5742645,45.10739,47.51966,4.5803063e-07 1224,506.4223,3.7092059,45.42578,46.94125,1.9823887e-07 1224,428.88422,8.017976,45.141266,54.745438,1.08684794e-07 1224,119.861916,4.705316,44.692802,63.319572,8.506038e-08 1224,384.46567,4.5229263,44.84134,50.537792,5.0042015e-08 1224,293.3691,4.4005666,43.136414,60.93148,6.003927e-09 1224,360.10687,5.9170055,46.896942,60.055008,5.6773395e-09 1224,0.8453703,4.864388,17.3577,59.43592,1.0806415e-09 1225,556.4383,198.5178,35.642517,80.47371,99.93751 1225,574.6147,195.82248,26.431152,59.044876,0.34323183 1225,310.39642,184.68793,40.02365,71.14188,0.021248115 1225,184.48392,192.44415,23.48352,45.5457,0.009223817 1225,433.5212,182.18555,40.532074,81.681946,0.007742853 1225,539.92737,174.594,72.41553,142.79767,0.0003899365 1225,610.62604,212.82997,28.52063,140.16072,0.00013776546 1225,357.07568,145.40205,81.44324,163.71187,6.1029416e-05 1225,612.909,416.5058,26.23767,85.78525,5.9499227e-05 1225,602.52747,100.012505,34.877808,174.87354,4.7849666e-05 1225,584.20966,14.945307,53.950806,108.956116,4.1078856e-05 1225,403.68787,115.23435,133.36981,240.49667,2.7897377e-05 1225,602.60443,315.9719,36.542236,174.73166,2.6799291e-05 1225,602.87317,4.4454184,36.2735,51.69177,2.5882677e-05 1225,1.612435,195.06912,18.197054,118.02496,2.3327944e-05 1225,295.54083,146.2232,88.34616,201.45361,1.3480581e-05 1225,1.0693897,391.811,18.724018,108.03522,4.674729e-06 1225,4.6051774,176.91032,57.63641,222.4363,4.0217137e-06 1225,0.94421065,254.21777,18.64028,137.58997,3.959846e-06 1225,1.2514307,316.8002,28.48721,145.0907,1.8820222e-06 1225,542.8372,7.6451435,78.33215,81.360374,1.3844115e-06 1225,555.6531,421.7743,81.382385,79.194885,1.2707661e-06 1225,202.8374,7.9984703,48.83107,56.444683,9.733457e-07 1225,3.4754932,397.35214,55.120518,97.017334,8.4005967e-07 1225,164.49278,9.132978,42.339767,54.635757,8.3245453e-07 1225,512.5593,2.5265496,45.349792,48.251244,3.2517855e-07 1225,400.90735,4.3240757,47.950745,55.120995,2.1756463e-07 1225,435.58545,6.657087,45.371796,55.980026,1.8071522e-07 1225,118.94529,3.6398602,45.942314,65.25043,1.3660811e-07 1225,470.07657,7.133825,82.52823,79.60495,1.0157256e-07 1225,293.03174,5.9279366,42.571106,60.241444,2.888442e-08 1225,237.42485,9.372248,39.82155,48.882828,1.7591468e-09 1225,1.8029916,7.9981217,33.362537,79.31225,1.6437351e-09 1226,614.06024,205.15277,24.939148,65.34927,67.26035 1226,272.34888,189.05237,26.599304,50.03235,38.714558 1226,370.89334,179.82745,39.873444,75.737946,0.015177476 1226,471.46268,187.96056,27.371033,57.94809,0.013601325 1226,600.45776,138.91191,37.97046,162.74944,0.008138045 1226,182.28348,176.60168,25.883423,54.080948,0.005855401 1226,361.768,194.90993,26.938507,50.848907,0.0056570605 1226,537.1156,202.72006,39.93756,78.63339,0.0020912737 1226,539.98566,35.44366,31.876831,75.889404,0.0011780699 1226,572.0489,173.3474,26.877625,49.45363,0.00035855768 1226,532.45825,165.06677,79.54346,179.55658,0.00031979356 1226,608.8625,0.8678223,30.28418,91.66538,0.00010634531 1226,610.2021,238.60777,28.94458,166.3124,7.3412404e-05 1226,612.2137,368.68655,26.932983,128.78549,6.0690803e-05 1226,352.6058,138.42676,79.69122,167.9285,2.6042871e-05 1226,583.9789,0.0,55.167786,258.49075,1.6673957e-05 1226,1.6361662,197.10266,18.577883,128.1785,1.550604e-05 1226,227.32826,115.692856,140.08919,228.42241,9.137464e-06 1226,1.1994646,370.48474,19.528769,122.6832,6.978224e-06 1226,4.3135777,189.33856,55.68309,228.33594,5.6099425e-06 1226,0.9393368,275.68118,19.408918,140.37326,4.846026e-06 1226,517.68463,19.295364,59.934143,143.41652,4.110597e-06 1226,2.2058709,123.00106,32.716576,154.82611,3.1624527e-06 1226,293.16794,10.208636,41.204712,51.498917,2.3982159e-06 1226,5.8531904,358.7871,78.42745,125.93994,2.2349054e-06 1226,200.30394,9.00573,49.963882,56.282425,1.7336413e-06 1226,554.5222,419.30957,81.70929,81.83325,1.4180206e-06 1226,149.59464,6.881543,42.42961,56.269737,1.3045441e-06 1226,485.20834,7.8171616,43.914886,58.53055,1.1989587e-06 1226,537.33356,5.7279296,86.96484,89.265045,6.9728196e-07 1226,321.4288,13.401001,42.09021,46.335148,6.3692005e-07 1226,382.67776,7.3165755,46.0737,58.125374,5.7466355e-07 1226,179.80023,7.4294515,42.091446,54.256332,4.0941782e-07 1226,438.53455,2.104196,45.62854,52.139477,3.8708748e-07 1226,356.2665,11.581869,43.29239,49.689972,3.0468962e-07 1226,511.9246,8.517417,45.983,53.045097,1.4876262e-07 1226,110.13944,1.7733171,44.96734,54.985332,1.3857475e-07 1226,412.2922,3.817316,44.562134,53.438118,1.1408658e-07 1226,231.10675,9.228234,39.920685,48.96679,7.0856174e-09 1226,1.9956609,8.014938,33.468567,80.37948,8.1564877e-10 1226,74.952286,6.9763594,41.34516,48.49002,2.3271218e-11 1227,291.99615,186.21057,28.474426,50.617905,97.94541 1227,333.25034,180.19934,27.208374,55.069183,97.56115 1227,193.6496,183.59538,29.25621,50.15355,0.103327245 1227,489.0813,174.66696,35.63629,74.3837,0.051507495 1227,399.73416,110.59487,30.440643,60.15429,0.0036341248 1227,537.5538,231.64574,25.68457,55.642227,0.00096590875 1227,312.8448,162.57816,62.247192,100.65671,0.000662266 1227,612.6997,131.73106,26.44696,117.62311,0.0005102276 1227,275.38928,161.40108,60.476166,99.38753,0.00036048528 1227,499.02307,240.77586,35.15686,77.69078,0.00026262406 1227,458.98294,131.12386,85.1868,204.50905,0.0001592768 1227,485.1802,274.96918,25.993042,53.753235,0.00014305435 1227,615.67773,17.275003,23.468933,83.12081,0.0001290349 1227,611.1003,214.69716,28.046387,134.46483,0.00011997569 1227,611.3265,348.52808,27.82019,137.53464,8.773645e-05 1227,586.3873,219.69052,52.338257,261.4546,4.702667e-05 1227,608.2096,436.89645,30.937073,70.32684,4.6497145e-05 1227,567.5297,11.386654,71.10608,170.15147,3.2859167e-05 1227,1.3142823,192.27432,18.972473,126.866516,2.9408067e-05 1227,507.3307,1.895573,46.015625,64.84098,1.6762255e-05 1227,1.0834057,425.24927,17.286709,76.42709,7.1219397e-06 1227,0.9876473,281.07553,18.793785,136.64334,6.0781276e-06 1227,247.80542,101.81163,135.69656,235.20732,5.701439e-06 1227,308.33054,5.339624,40.808746,54.950214,4.604897e-06 1227,3.620744,240.74936,57.17216,222.54404,4.3650957e-06 1227,536.80676,2.4651465,46.0542,61.324596,3.960949e-06 1227,3.166193,397.9615,57.05487,97.82492,2.5613542e-06 1227,222.24675,4.9079947,47.959488,58.025627,1.3110845e-06 1227,554.83136,424.0991,80.177246,76.96561,1.2576296e-06 1227,403.31262,9.623221,45.362915,51.54758,1.1604227e-06 1227,119.3469,427.65747,73.20866,69.6189,9.805045e-07 1227,566.7074,4.84319,50.60504,61.65791,8.223953e-07 1227,78.61076,426.35013,73.604324,72.3667,7.414109e-07 1227,376.55383,12.387245,44.233643,46.117653,6.681081e-07 1227,311.646,11.046146,85.0365,73.98166,5.0120747e-07 1227,442.95804,6.365332,84.42697,87.46441,4.76133e-07 1227,162.93562,7.6957684,42.92035,54.384323,4.470757e-07 1227,114.81964,3.7198048,59.68318,61.782455,1.6058405e-07 1227,429.10562,7.118278,46.57849,55.678097,1.2232026e-07 1227,479.6111,3.3167417,45.378754,51.16534,1.2038205e-07 1227,250.90141,7.81022,40.9001,49.4634,9.45246e-09 1227,1.5858692,8.096829,33.1015,76.455536,3.5724261e-09 1227,95.63089,6.6200604,43.599335,50.516876,7.793889e-11 1228,347.55536,182.04889,25.691101,52.39589,99.14187 1228,305.87094,186.66023,24.908844,53.13788,98.295975 1228,412.7856,189.04411,25.740448,45.664856,0.81913483 1228,323.666,188.59709,23.363312,50.082397,0.04988372 1228,209.31932,183.78894,25.249573,50.01201,0.019546175 1228,515.41327,285.74466,41.064148,68.17432,0.0075400267 1228,621.7172,164.78035,17.429443,53.18199,0.0015879519 1228,610.60077,173.96263,28.341614,119.47713,0.0013961094 1228,486.37585,166.36737,40.958862,99.91055,0.00043794917 1228,602.4071,36.11659,36.04724,218.62596,0.0004234334 1228,581.0447,0.0,57.475464,88.65952,0.00036863956 1228,327.24805,162.9799,63.42575,95.77043,0.00036495097 1228,289.98096,159.22534,57.781647,106.6214,0.00032449304 1228,586.4211,184.34886,52.13739,224.26833,0.00013575384 1228,614.34296,19.470524,24.80371,94.464005,0.00011836823 1228,611.8761,0.16707031,27.270569,50.17337,7.9337915e-05 1228,1.3660612,195.67365,19.5013,131.8663,5.9231214e-05 1228,611.526,312.0385,27.620667,141.46014,5.3634078e-05 1228,612.5971,410.3091,26.54956,93.383026,4.082165e-05 1228,468.78522,141.26161,97.36511,208.54015,3.106543e-05 1228,0.95403975,380.91635,19.117407,116.239716,6.8553495e-06 1228,251.02373,98.45268,146.79607,245.36354,6.333648e-06 1228,3.8305469,193.94702,56.604702,229.77682,6.161257e-06 1228,317.52475,1.6388526,42.059174,51.231632,5.041714e-06 1228,0.9998592,268.47684,18.41388,134.95639,4.420764e-06 1228,568.3003,349.70215,70.846375,143.48291,4.2034803e-06 1228,3.331919,338.4464,57.591297,147.69574,2.8625689e-06 1228,553.8702,1.5800635,45.259583,49.465126,1.4172418e-06 1228,581.72955,440.50006,45.769836,64.17636,6.854615e-07 1228,345.185,6.811265,44.223724,51.50933,5.678493e-07 1228,383.3837,14.13471,84.221985,71.36742,5.1951287e-07 1228,188.30133,6.538931,41.35199,45.80326,4.2409573e-07 1228,207.93517,7.8780766,84.54668,80.26859,4.0705154e-07 1228,434.98654,6.9284863,46.529144,53.77983,3.2425632e-07 1228,504.41397,9.300622,81.15628,77.18055,3.1042367e-07 1228,139.03114,1.9574838,46.8378,68.96015,1.3295832e-07 1228,448.74298,10.342839,85.631836,77.01991,8.027545e-08 1228,500.93268,6.545381,45.526672,48.458214,3.9244576e-08 1228,257.25012,6.9310856,41.78952,53.020096,3.1761594e-08 1228,1.4006658,8.271943,33.074043,74.45853,8.037147e-09 1228,116.3387,5.022627,45.058975,55.554543,3.0082598e-10 1229,309.5315,188.8179,26.79602,51.922028,99.81719 1229,353.9965,184.16025,24.900269,51.051575,99.39674 1229,533.7121,292.6307,42.35846,71.44757,0.025033921 1229,337.02286,189.1295,24.791656,49.894882,0.015809216 1229,215.0116,186.89966,22.935776,45.71089,0.014014897 1229,566.45624,202.23143,40.160156,109.57341,0.0036275533 1229,620.3195,160.85895,18.827148,54.63861,0.0015073085 1229,609.8199,132.3082,28.781006,122.84856,0.0006657513 1229,621.21875,57.5467,17.927917,54.365494,0.0004434384 1229,583.59406,34.099648,53.693176,274.865,0.00043625923 1229,296.14023,166.4943,56.2157,99.23288,0.00031604135 1229,332.47955,166.036,62.85742,93.47594,0.00030176964 1229,611.1925,226.28334,27.954163,107.780014,0.00022114262 1229,581.81366,0.0,56.802246,87.86009,0.00017357874 1229,611.93604,1.323195,27.210632,48.29108,0.00011033018 1229,598.65765,249.06116,40.489014,204.69061,8.22136e-05 1229,1.3254029,195.58177,19.386932,131.81734,5.486807e-05 1229,405.3302,131.73444,76.002686,165.86713,4.6912624e-05 1229,607.79956,438.06912,31.347107,69.81781,4.40605e-05 1229,1.1267928,323.6969,18.791065,135.68237,9.597484e-06 1229,250.52951,107.50003,149.69858,240.46692,7.204105e-06 1229,3.9097283,185.69807,55.884537,244.36916,6.3147218e-06 1229,325.7056,1.676836,43.845398,59.063683,4.5394922e-06 1229,0.9160905,422.0248,16.518959,79.819214,1.8596312e-06 1229,5.3699512,354.14697,78.511696,131.49496,1.2859098e-06 1229,348.2221,5.401444,43.26129,45.09535,9.2090914e-07 1229,390.87192,14.954294,82.1983,70.192444,8.765598e-07 1229,511.72617,5.320267,84.37973,85.478745,5.963816e-07 1229,442.53036,8.267157,45.342407,54.38115,4.6991855e-07 1229,231.42706,7.117476,48.406708,54.499065,4.6145755e-07 1229,191.97859,7.7496533,41.500793,54.079437,2.893715e-07 1229,136.32837,9.281609,78.1909,78.37941,1.6565245e-07 1229,483.27948,7.2798505,47.09552,58.428387,1.591242e-07 1229,507.58246,4.407562,45.367188,53.104652,5.410986e-08 1229,1.360433,8.130664,33.08413,74.44388,1.0989584e-08 1229,271.42307,6.89764,41.800293,49.102467,8.647799e-09 1229,123.158775,4.384821,45.241768,58.7713,1.3580832e-09 1229,100.69072,5.778226,42.509766,53.62638,3.06947e-11 1230,353.71313,186.51349,25.485626,50.946625,98.54349 1230,310.31265,191.70175,24.571869,51.32274,97.726814 1230,419.92084,189.27979,26.42517,50.480225,97.47537 1230,215.12094,185.01347,24.139969,49.720886,0.03637674 1230,536.9514,293.2561,35.520813,68.165375,0.016860643 1230,609.60455,131.9223,28.694153,124.07947,0.0012136596 1230,407.70612,147.57835,55.987946,118.53557,0.0010233381 1230,620.195,161.86363,18.95166,54.5838,0.0009964983 1230,584.2535,78.038124,52.922607,229.27777,0.00091437023 1230,603.00415,3.9042678,36.142517,68.0254,0.00022355444 1230,611.2053,227.33202,27.941345,108.30354,0.00021257631 1230,295.91403,165.81532,57.718597,102.528,0.00016695644 1230,334.76917,164.58612,60.42047,97.12753,0.00014049938 1230,486.10397,140.20381,75.519806,168.1327,7.0610324e-05 1230,1.3003174,196.64346,19.145266,132.2529,5.734527e-05 1230,600.67395,253.11147,38.472717,199.31856,5.7307552e-05 1230,607.70764,437.83658,31.439026,69.37384,4.0409333e-05 1230,3.398737,240.09308,56.61329,226.43286,9.672352e-06 1230,1.1143246,273.07928,18.981785,139.44162,8.550258e-06 1230,308.31427,110.09382,138.85605,231.96756,7.231377e-06 1230,565.6352,3.1357293,73.511475,174.10347,6.9105404e-06 1230,325.78424,4.0502067,42.77884,56.635303,5.04923e-06 1230,0.90496504,377.37753,19.39273,117.877686,4.7830595e-06 1230,225.88446,9.331631,48.7453,51.852734,1.2382878e-06 1230,423.07495,5.5798616,48.396942,55.264378,1.1776069e-06 1230,2.9761817,393.21667,56.27485,98.16324,1.1000669e-06 1230,573.9598,1.3080485,46.263184,52.669483,1.0698516e-06 1230,518.9809,5.401634,83.47125,86.46712,5.601258e-07 1230,375.9576,14.9959545,85.81598,73.596275,4.834069e-07 1230,370.54013,12.456234,43.437653,46.207783,4.3539345e-07 1230,199.8531,7.311621,40.71016,51.765938,2.2710387e-07 1230,470.2539,6.4562535,46.687317,56.96432,6.798208e-08 1230,145.9247,2.486097,45.500137,66.94912,4.7349552e-08 1230,507.68542,3.6743717,45.401367,52.698517,2.8417958e-08 1230,1.3353841,8.288095,33.089394,74.07721,1.1930515e-08 1230,264.82825,8.251598,40.61566,47.911854,1.1902128e-08 1231,420.16635,189.43927,25.571411,48.23633,99.35374 1231,352.8564,186.54225,26.527435,49.28984,98.65101 1231,310.6915,195.44775,23.51773,46.638504,96.6862 1231,214.07126,182.47714,26.292114,53.693848,0.20532724 1231,335.01993,196.31142,21.649109,46.697968,0.004924124 1231,534.87537,293.30243,41.11725,74.96243,0.0043933596 1231,584.6565,80.92642,52.30487,228.9696,0.0011440387 1231,407.786,142.05116,56.545563,122.25078,0.0010546688 1231,620.3995,162.77649,18.747192,54.085526,0.0008307438 1231,609.60333,132.33876,28.83014,125.89223,0.00068139355 1231,620.5511,55.26478,18.595581,58.079727,0.0005367335 1231,611.15656,226.14212,27.905273,109.25647,0.00032685004 1231,586.7649,3.991185,51.759583,115.41342,0.00020690264 1231,331.6014,168.24966,64.680725,94.29846,0.00015615618 1231,599.8677,248.45451,39.24286,203.26399,0.00011914971 1231,611.97754,1.0928191,27.169128,49.294273,7.7911565e-05 1231,485.0781,158.29962,60.49539,100.783905,6.8392976e-05 1231,1.3262224,195.27742,18.956882,132.81316,5.6493383e-05 1231,607.75934,437.70865,31.38733,70.71695,3.5337293e-05 1231,290.5007,146.7482,78.41037,163.09323,2.9530545e-05 1231,1.1306494,324.27335,18.872377,135.85782,8.785151e-06 1231,325.82132,3.790062,43.294006,56.74736,6.1637957e-06 1231,568.28595,344.78226,70.86072,148.14447,5.9041386e-06 1231,3.8602295,195.57181,55.856567,235.96304,5.56221e-06 1231,376.36044,91.30013,137.32687,237.18185,5.082216e-06 1231,457.74023,84.402245,140.24902,258.39175,3.3162455e-06 1231,230.48854,9.504961,49.21721,52.180748,1.8670057e-06 1231,0.9393026,421.85135,16.490011,80.122894,1.8565231e-06 1231,3.0538542,392.81802,56.162838,98.77292,1.1637252e-06 1231,574.2352,0.6200082,46.81372,53.739,7.37725e-07 1231,397.5306,13.971885,81.967224,69.3499,6.6002724e-07 1231,192.38478,7.4801645,41.10704,52.45774,4.927316e-07 1231,518.47614,4.806895,84.142395,87.75294,3.7981926e-07 1231,431.36902,5.1721272,45.546875,46.86023,2.012424e-07 1231,137.21552,9.618262,76.68112,76.78709,1.7574182e-07 1231,454.9988,8.774798,86.51346,80.73255,4.2727997e-08 1231,499.56302,3.7752264,45.99533,50.1595,3.459308e-08 1231,1.3351563,8.289633,33.09195,74.09025,1.2054352e-08 1231,123.2221,3.6775522,43.996193,59.0231,4.543667e-10 1231,100.88255,4.710171,41.2679,51.951183,2.2970466e-11 1232,421.21954,191.67049,23.657501,45.302643,99.14618 1232,352.22104,188.28644,23.651947,49.36,82.06903 1232,284.08487,194.33867,23.613983,47.060562,65.09992 1232,339.16925,187.48013,21.511627,45.147446,2.882575 1232,215.45213,188.4537,23.889954,49.611664,0.147379 1232,534.5475,292.6524,42.01886,71.624176,0.0048293113 1232,411.91617,174.29808,49.161346,88.56996,0.0017640168 1232,584.59656,73.40964,52.214478,236.9011,0.0017169536 1232,620.3943,162.93954,18.75238,53.73224,0.0010585602 1232,609.47784,132.16383,28.894653,126.28233,0.00076406915 1232,558.4791,176.60242,43.493286,112.620026,0.00064800284 1232,615.9036,58.94802,23.243042,89.23835,0.00038088916 1232,611.3346,225.96326,27.72467,109.22186,0.00035271645 1232,587.2841,8.851618,50.737,111.56414,0.0003204842 1232,599.5937,248.73318,39.54364,204.08307,0.000110236564 1232,1.2805388,204.45659,19.25096,139.31621,7.2819224e-05 1232,483.9444,139.49492,75.77167,169.0865,7.049816e-05 1232,607.88434,438.1522,31.26233,70.450775,3.505989e-05 1232,401.264,119.87198,85.70825,209.25293,1.638394e-05 1232,319.91794,145.96243,84.4487,165.82593,1.5376101e-05 1232,4.0551043,203.67302,55.258194,228.07005,9.817157e-06 1232,1.0467163,323.59985,18.727373,135.79636,8.434831e-06 1232,326.36615,4.7057796,42.625397,55.639946,2.798413e-06 1232,0.93926436,422.1252,16.799437,79.77005,1.844716e-06 1232,230.5885,8.820517,49.77832,52.050797,1.5798539e-06 1232,398.51443,14.184255,80.718445,69.60869,1.0551389e-06 1232,3.0691977,393.26276,56.086845,98.57663,1.0357456e-06 1232,573.60693,0.8331885,46.6369,52.75426,9.2120774e-07 1232,383.7734,13.681465,44.258667,45.5654,6.4031605e-07 1232,192.19427,7.4996715,41.532715,52.975174,6.279528e-07 1232,518.8014,5.886358,83.44342,86.341995,5.673145e-07 1232,137.40509,9.919965,77.08736,75.71657,1.9287624e-07 1232,477.11246,6.0516896,46.582794,57.128124,7.812103e-08 1232,515.2083,4.073978,45.569153,53.46826,6.1114385e-08 1232,1.3344988,8.28862,33.096657,74.07401,1.2147273e-08 1233,354.76523,194.58243,23.426514,49.48471,99.82058 1233,324.2354,193.3129,23.477386,48.652573,98.8367 1233,421.42288,193.65419,25.587921,50.435394,98.80849 1233,543.13196,298.7797,45.707825,77.920746,0.25445122 1233,587.0992,86.01908,49.97943,236.73413,0.0014369027 1233,609.85645,233.63689,28.723389,114.80095,0.0010678315 1233,410.38467,159.13245,58.315918,112.0567,0.00086586876 1233,615.3193,152.26344,23.827393,85.63223,0.0007610975 1233,621.47955,35.5383,17.667114,58.44149,0.000540246 1233,587.0216,12.355827,50.42682,101.77074,0.00025384434 1233,609.698,37.70023,29.44867,166.10866,0.00020082359 1233,333.4952,173.35135,62.31421,94.61688,0.00011205383 1233,233.71819,168.82935,60.9998,100.90799,9.157797e-05 1233,611.9071,315.00537,27.239563,139.34766,9.043951e-05 1233,608.2779,439.82208,30.868774,67.78232,7.086012e-05 1233,488.68497,164.06186,56.063263,98.85083,5.6071865e-05 1233,612.0126,1.5780599,27.134094,48.56224,4.9967388e-05 1233,460.58746,113.832504,139.64258,231.94054,2.679474e-05 1233,1.2749618,201.4427,18.863783,136.74898,2.5388354e-05 1233,258.57043,160.593,92.165985,193.06743,1.912284e-05 1233,568.26263,335.32596,69.867615,155.14005,9.02271e-06 1233,306.91284,115.56821,145.10226,225.71774,7.5195708e-06 1233,1.1004924,329.49365,18.833023,134.51938,7.1975114e-06 1233,321.82986,6.539294,41.189728,54.12002,7.0033984e-06 1233,3.9648504,203.01883,55.997025,230.54425,4.0462583e-06 1233,383.88278,97.486694,139.1771,234.41931,3.841515e-06 1233,1.0882162,443.33344,21.716854,60.1268,1.736653e-06 1233,5.514206,351.89355,78.31779,133.24402,1.1654045e-06 1233,416.94315,9.30325,48.694427,52.467037,7.5041663e-07 1233,339.83408,14.516557,83.957275,72.61711,7.3224646e-07 1233,191.51094,9.228011,41.388916,52.748623,6.444304e-07 1233,231.26982,8.674595,47.566727,52.50021,4.982945e-07 1233,523.04553,4.2247577,44.02295,52.533413,4.6911973e-07 1233,431.123,12.09113,79.31525,69.5419,2.1568674e-07 1233,575.55316,4.3425684,46.082764,51.134323,1.7553212e-07 1233,144.2725,1.5846289,44.366028,57.079838,1.4378773e-07 1233,482.8312,4.674499,44.870087,57.724792,1.03964226e-07 1233,549.964,5.722617,47.920532,62.553024,5.779213e-08 1233,0.7754964,4.629245,17.26733,58.420677,3.4500545e-09 1234,519.2885,199.73041,25.279419,52.23204,99.79642 1234,300.14462,197.10919,25.565521,58.48828,99.67737 1234,434.75406,202.11357,22.621216,47.31372,98.950806 1234,341.00522,197.5023,29.18985,57.134766,97.244576 1234,538.0159,202.0616,24.693054,48.90242,0.21393898 1234,597.3027,308.7711,41.390747,89.1051,0.012289153 1234,619.3695,223.68738,19.77716,71.994965,0.0072674 1234,603.29694,187.06972,35.84973,163.78993,0.0037406655 1234,551.8648,210.04793,23.890259,48.048843,0.0036731763 1234,426.25708,187.46268,47.809296,89.70773,0.0029775612 1234,609.47437,2.2676759,29.451172,94.75275,0.0007623332 1234,503.28668,178.11887,56.44763,93.4888,0.00030175524 1234,285.06317,182.26485,54.739532,95.234116,0.00028495115 1234,600.6219,26.86258,38.321594,227.99785,7.629919e-05 1234,188.70056,164.99547,79.87457,152.1425,6.203637e-05 1234,1.2536085,207.58702,19.070541,134.9688,5.3076597e-05 1234,608.1931,435.5273,30.953552,71.398834,3.6254038e-05 1234,322.96997,158.53862,75.68509,162.33589,3.4373774e-05 1234,472.6956,123.48224,151.66708,248.71262,1.6448706e-05 1234,333.08224,7.203934,43.216125,54.03082,1.5372816e-05 1234,413.31577,135.58653,88.2392,202.3657,1.5106883e-05 1234,0.9019824,280.1076,18.81176,142.26694,9.592835e-06 1234,237.97441,125.16181,149.90819,245.30392,8.448452e-06 1234,3.5311215,179.44675,55.929012,214.07095,5.890629e-06 1234,1.11785,390.56247,18.437508,105.911804,4.7161225e-06 1234,578.9686,5.8739,47.045288,55.84879,3.8886515e-06 1234,533.57245,3.1744661,44.462402,68.18768,3.3764638e-06 1234,3.430542,306.94498,56.646255,169.50085,2.9616047e-06 1234,192.31288,10.886112,41.199677,52.983166,2.3049256e-06 1234,361.80038,12.320456,42.539093,46.461617,1.5050391e-06 1234,417.48315,10.643255,46.83374,49.842613,1.4953476e-06 1234,220.17592,9.357894,43.944077,51.28292,4.1069583e-07 1234,143.95604,11.80904,76.3542,72.632355,2.051959e-07 1234,497.01627,4.0982685,44.583344,59.078148,1.645299e-07 1234,243.62721,6.6269565,46.46266,55.1303,1.3705073e-07 1234,473.85492,5.1856184,44.621155,45.654312,1.230602e-07 1234,0.7736784,4.631569,17.26497,58.415333,3.6294658e-09 1235,125.783195,209.67407,29.613579,54.16153,99.90302 1235,151.47818,211.52458,30.5345,53.13292,98.026924 1235,247.09209,209.02907,22.681534,55.51143,97.33898 1235,275.80057,213.71259,26.757477,51.614777,84.16712 1235,428.9325,209.5719,29.076538,52.441254,9.629159 1235,260.97278,209.10999,20.610687,50.133514,3.2897565 1235,620.2958,156.67308,18.850891,62.8351,0.00818201 1235,235.11227,195.39542,58.060974,90.07684,0.0017679543 1235,611.6257,162.12675,27.520996,133.07875,0.0010143553 1235,108.01042,191.11217,63.17636,99.12752,0.00058094715 1235,580.2074,398.9003,58.48474,97.77133,0.00021535714 1235,609.1228,444.62372,30.023865,61.23889,0.00010250953 1235,608.1732,3.3420312,30.97345,58.916912,9.472432e-05 1235,584.4761,80.17234,53.664795,198.74506,6.3700594e-05 1235,104.097824,136.24194,138.39745,226.95654,4.750819e-05 1235,610.68243,244.56792,28.464233,149.99901,4.3529657e-05 1235,1.0918481,198.67209,20.278055,119.22949,2.2648417e-05 1235,235.30246,134.19847,132.46417,222.24889,1.7821152e-05 1235,585.53723,9.563011,53.40088,112.85927,1.1666704e-05 1235,395.95282,129.32954,131.12701,227.54155,9.714468e-06 1235,1.8807455,228.22917,31.891846,180.91637,8.545823e-06 1235,1.2312305,361.21652,17.937847,129.61734,8.1309045e-06 1235,428.55392,0.47405925,49.921143,60.91774,3.834634e-06 1235,538.21796,3.0427964,45.416443,62.971516,2.7721587e-06 1235,4.3356886,392.0009,54.556465,100.18143,1.1085002e-06 1235,316.8408,0.0,42.126404,47.33687,7.044578e-07 1235,484.69153,5.8199677,45.961243,62.10798,5.537257e-07 1235,390.66638,10.940578,42.228485,49.26603,3.3037054e-07 1235,200.46922,7.9984,41.872864,50.001774,2.1755508e-07 1235,229.9941,6.387632,45.88698,53.429886,1.3123348e-07 1235,117.79344,11.441482,74.980255,73.2224,1.1653506e-07 1235,347.0261,5.8055797,43.08969,52.33769,7.723991e-08 1235,510.14465,2.8381414,45.600525,61.37549,5.242178e-08 1235,457.84888,2.8634636,45.1156,49.058754,5.1872945e-08 1235,0.8148999,4.801758,17.293783,58.414143,1.6373615e-09 1236,454.5911,209.58957,30.082397,54.66394,99.93741 1236,85.13372,209.17865,37.67386,66.13843,93.62309 1236,344.13684,209.62387,30.921997,60.716553,52.119225 1236,58.038536,182.14537,39.06768,87.93318,10.460549 1236,76.497856,221.0888,23.96894,50.54666,6.6974 1236,482.83807,207.9009,27.02121,57.165268,0.19088852 1236,499.17288,206.15099,30.118744,61.36281,0.1717189 1236,592.27637,156.30766,39.759583,76.76909,0.01097846 1236,618.2336,172.1099,20.913086,61.056885,0.0016958038 1236,42.872242,142.7763,77.023224,168.93146,0.0015260593 1236,607.90405,239.68428,31.242615,139.09117,0.0009273531 1236,605.15027,2.7236166,33.9964,73.91713,0.0007910659 1236,619.80035,37.53368,19.346313,65.73982,0.0006700278 1236,586.32446,37.867786,51.35675,257.14304,0.00033267224 1236,608.3669,439.90704,30.779785,66.086975,5.910826e-05 1236,601.77716,336.54752,37.369507,154.45844,4.557616e-05 1236,443.06778,175.04941,70.95767,146.00647,3.8764334e-05 1236,1.4296656,134.02141,18.80008,131.75584,2.0840956e-05 1236,304.29578,141.83644,131.90408,219.50902,1.1633684e-05 1236,0.79974204,245.24858,19.957996,139.63979,1.0365742e-05 1236,1.0488598,322.727,19.386625,130.50714,7.0753636e-06 1236,4.293351,192.27814,56.550037,227.4237,5.0283743e-06 1236,0.9798804,421.6011,17.148306,80.59369,4.6629207e-06 1236,2.434603,18.386478,54.219025,111.10158,2.5613397e-06 1236,445.15512,7.559333,75.1832,79.615746,2.0788502e-06 1236,3.4377084,341.01318,58.41851,145.45938,1.5475896e-06 1236,534.00287,2.8217351,46.076904,53.499218,1.32742e-06 1236,490.20126,2.7030747,44.59323,58.391712,9.506132e-07 1236,410.97583,8.634717,45.147827,59.272953,6.559171e-07 1236,1.4627011,46.514114,19.528698,147.8753,5.7453855e-07 1236,562.83466,4.5226436,47.749634,54.643417,2.1082542e-07 1236,463.2766,0.90276694,37.08075,46.128902,1.5755978e-07 1236,332.81647,2.095643,65.25818,56.086494,1.1924948e-07 1236,110.81822,1.0225407,46.87184,50.582394,5.777934e-08 1236,271.54813,3.946722,45.01239,59.936584,5.3419626e-08 1236,9.271896,5.188306,41.882442,52.229626,2.6277199e-08 1236,1.0246224,2.6628792,20.402424,45.245586,1.4306299e-08 1236,379.5536,4.199053,46.202454,55.856705,9.302755e-09 1237,231.10182,208.08662,28.640305,61.50511,99.876274 1237,248.89941,217.8699,24.347351,50.834167,99.8161 1237,216.33722,223.1711,22.180435,47.333237,34.204845 1237,563.8028,178.21802,41.76953,65.93335,0.034864713 1237,215.32417,193.3327,67.189224,96.220795,0.003551904 1237,428.3185,199.00351,24.75827,51.657074,0.0023752057 1237,358.16266,198.59251,32.142365,60.277817,0.0004402028 1237,611.41437,234.10571,27.7323,142.2781,0.00026893377 1237,417.24924,177.98163,44.370575,103.47391,0.00022831805 1237,611.46265,140.2774,27.684021,128.68665,0.00017118356 1237,1.4841081,177.55678,17.706905,75.30075,0.00013536341 1237,440.65018,183.31023,41.04776,82.84709,8.864241e-05 1237,611.6397,326.405,27.506958,140.7637,4.7719288e-05 1237,2.0325375,172.86314,34.52513,187.61769,3.941912e-05 1237,609.304,441.36554,29.842651,62.991516,3.5866124e-05 1237,0.9374048,222.10045,18.640411,75.33592,3.286277e-05 1237,609.8302,0.0,29.316467,118.59021,2.1134576e-05 1237,1.0221819,265.8461,19.506609,134.02777,1.817472e-05 1237,172.68195,147.91182,132.25873,204.62886,1.7598013e-05 1237,2.2871559,96.225876,26.613691,147.29652,1.0685285e-05 1237,585.44305,10.641758,53.12329,243.40916,7.969047e-06 1237,0.9301522,373.739,19.811592,122.89984,7.2637376e-06 1237,582.58563,1.8480405,46.499207,56.42056,3.345546e-06 1237,3.303833,336.99536,56.996403,145.98325,2.3170649e-06 1237,367.27695,4.1790886,45.19449,61.183483,1.1073697e-06 1237,547.2803,1.7382601,47.711792,51.265312,1.0193788e-06 1237,1.398195,27.9723,19.218927,126.23377,2.799885e-07 1237,2.6882098,44.7129,59.510944,221.25903,2.4971186e-07 1237,505.26553,2.5223308,62.287994,54.136642,2.2750967e-07 1237,394.05518,5.661501,44.67993,49.25257,5.9259975e-08 1237,301.63937,2.2338216,61.234924,58.470776,2.0513866e-08 1237,339.87027,1.3598112,44.266052,62.767456,1.0563764e-08 1237,1.1334254,9.518905,19.115566,56.88424,8.117784e-09 1238,262.53326,219.19862,35.053223,76.64461,99.9496 1238,611.59863,39.37304,27.548035,70.942406,0.06312877 1238,460.57803,184.76898,42.757202,99.47949,0.014562118 1238,622.2124,208.87787,16.934265,53.68344,0.00893951 1238,573.3703,206.85837,25.375305,53.98291,0.007427189 1238,482.1372,221.46626,24.57193,49.461777,0.00617544 1238,593.95825,245.61961,21.773865,45.30577,0.0044837003 1238,585.76764,220.34378,23.342163,46.456726,0.002112501 1238,456.83752,200.46208,24.570343,56.492935,0.0018712732 1238,140.84006,215.43204,26.171661,55.153595,0.0011555629 1238,225.19409,252.28658,28.625885,54.14647,0.0011105784 1238,611.61176,148.57516,27.253479,128.11667,0.0006521975 1238,612.83514,223.49092,26.311523,131.29955,0.00022445852 1238,487.13272,202.3559,41.37863,84.60474,0.00019836659 1238,587.1928,209.5696,49.686707,214.19844,0.00019603616 1238,245.16425,196.6227,73.91379,140.73381,0.00011088872 1238,584.6659,9.943854,53.582947,284.38907,7.33611e-05 1238,1.6191489,83.43403,17.295963,153.45709,6.828857e-05 1238,606.3989,2.1215625,32.74774,68.090355,6.823604e-05 1238,1.0132397,242.43617,18.439108,74.63133,5.0440132e-05 1238,2.2895906,133.40193,33.209293,169.98729,3.9494527e-05 1238,0.6618494,218.90532,13.87933,50.52968,3.4017332e-05 1238,600.69257,421.11465,38.4541,73.78876,2.0993797e-05 1238,3.7488723,204.08057,56.631104,231.90518,1.0845875e-05 1238,0.9979875,378.33087,18.532904,117.28348,1.0745822e-05 1238,1.0957903,290.58783,18.740635,135.51889,9.950609e-06 1238,2.9865024,394.13214,55.143044,96.861206,2.3903885e-06 1238,476.39392,7.4494176,84.0802,76.00328,4.2481793e-07 1238,449.72714,1.3006592,46.441254,53.62492,2.73367e-07 1238,263.58862,3.7245655,62.06485,49.684013,1.9750142e-07 1238,580.95514,8.278433,42.713867,53.07801,1.5987321e-07 1238,1.3956975,26.810236,18.783806,117.97303,1.537767e-07 1238,418.29147,0.0,44.94998,45.522255,1.4182146e-07 1238,340.27307,4.626611,41.450012,52.59503,4.805522e-08 1238,523.64764,3.8738363,45.18524,49.715424,2.6966616e-08 1238,388.65564,4.635643,43.18103,56.375713,2.5585441e-08 1238,1.0883472,8.87299,19.908558,57.571697,6.6080372e-09 1238,550.1393,6.396268,45.280945,46.71578,1.255394e-09 1238,233.72014,3.7327914,45.03926,47.16813,6.016924e-10 1238,209.6805,6.400905,44.145004,51.26953,2.1242676e-10 1239,129.09657,206.47841,23.014832,45.592896,0.02444849 1239,4.897699,205.3238,36.659496,83.31444,0.010468603 1239,579.2555,224.633,25.432983,55.89099,0.0067384113 1239,598.47235,222.62473,24.781067,51.70169,0.004737756 1239,539.51886,237.65498,34.195496,73.46236,0.004713534 1239,473.10352,199.04675,32.861664,64.06186,0.0034527634 1239,324.86792,186.61565,24.707916,53.042953,0.0021108375 1239,621.4716,218.1789,17.675049,49.434296,0.0020008544 1239,558.94806,228.68704,35.39917,69.12332,0.0013351717 1239,609.69977,145.58151,29.4469,150.25064,0.0005913238 1239,258.40164,194.10745,22.515411,50.89154,0.0004641395 1239,3.3763592,144.75768,57.866077,224.11214,0.0003654239 1239,0.95993084,173.08473,19.045116,81.713165,0.00031818976 1239,611.4695,278.93912,27.677185,145.65631,0.00030362754 1239,1.1417472,213.89357,19.448769,146.7931,0.00021749726 1239,570.0834,191.01941,68.1889,145.70898,0.00014083179 1239,612.6432,368.0804,26.503479,131.91287,0.000109709035 1239,125.378426,243.89983,37.889397,69.6053,6.358849e-05 1239,0.4808944,330.8901,19.160744,85.87338,3.821215e-05 1239,472.87106,176.20163,24.813538,52.45421,3.0787072e-05 1239,586.1476,40.917683,52.832703,235.63606,2.8097094e-05 1239,573.7081,426.0794,64.70703,70.65372,2.2468523e-05 1239,1.3803817,285.24173,32.56502,178.88162,1.1071188e-05 1239,1.0479419,392.1123,17.950357,73.4888,8.328424e-06 1239,1.2787004,92.07412,18.565382,84.75364,7.533913e-06 1239,612.5722,9.009297,26.574463,132.27594,7.1229997e-06 1239,1.791198,49.075996,35.261757,226.92148,2.6372074e-06 1239,5.286507,348.65897,78.64866,139.27698,2.09137e-06 1239,1.280695,442.4259,21.62143,57.905884,1.7812782e-06 1239,503.5145,432.79852,77.10855,61.700653,4.5932887e-07 1239,307.0321,5.2656837,60.335815,47.875984,3.9601312e-07 1239,175.96199,431.89954,70.47177,64.80554,3.13216e-07 1239,121.17762,429.74112,70.717186,66.54935,1.9635729e-07 1239,2.5562062,12.776648,58.40036,127.468346,9.664303e-08 1239,1.5130323,18.055414,21.395369,98.3514,8.2107206e-08 1239,288.16345,5.0862255,41.146515,49.95665,2.421148e-08 1239,355.81705,7.0280666,41.77069,46.269478,2.3647868e-08 1239,421.59976,5.426828,62.186462,48.69917,1.8389423e-08 1239,461.50174,6.8037243,42.865417,53.045937,6.7845e-09 1239,2.1884735,5.7967434,39.600105,55.53688,4.892847e-09 1240,3.2107553,171.0457,32.381416,74.81607,0.0036295394 1240,102.69762,385.24854,28.703445,60.57553,0.0015985483 1240,610.8444,241.08759,28.142395,100.77841,0.00063153275 1240,70.11399,222.57646,31.830208,72.595505,0.0006052473 1240,388.8544,210.38113,23.948212,45.214737,0.00048927375 1240,192.92943,212.54558,34.220596,60.74254,0.0004743064 1240,1.1740454,199.89514,19.048573,84.77063,0.00045368797 1240,617.03186,388.7885,22.114807,81.801605,0.00026882224 1240,90.42975,219.33891,33.726273,66.15819,0.00023338232 1240,2.776032,193.88878,32.600033,183.88783,0.00016693576 1240,81.61498,337.58365,48.556236,132.63043,0.00015065089 1240,593.23535,186.5723,45.911316,217.1222,0.0001222705 1240,0.9736345,128.07234,19.501602,90.51337,0.00010498631 1240,616.99286,330.97668,22.153809,83.19098,0.00010376399 1240,354.81763,201.40479,34.77066,57.805054,7.7940254e-05 1240,616.65094,182.99425,22.495728,84.57326,7.621004e-05 1240,608.6987,442.1809,30.447937,65.62576,7.2017414e-05 1240,585.4181,316.90463,53.728577,178.3663,5.1335002e-05 1240,602.9701,102.0118,35.358948,192.29294,3.318153e-05 1240,337.2029,199.88742,32.534454,60.09195,3.141541e-05 1240,3.2693377,78.085106,57.395702,228.60007,2.971332e-05 1240,1.0259286,65.40792,19.415531,82.15011,2.6728487e-05 1240,1.0575123,276.17484,18.250753,136.05975,2.5209092e-05 1240,13.384844,382.43918,137.10352,113.22641,1.703772e-05 1240,1.0891334,418.8096,18.221664,88.7442,1.3053424e-05 1240,9.453293,450.10812,40.631252,54.69815,7.869989e-06 1240,3.6267025,316.10812,57.642662,173.975,6.6416965e-06 1240,554.9497,428.15686,80.25574,72.89566,6.298122e-06 1240,612.1763,0.0,26.970398,62.997757,4.018493e-06 1240,111.469635,390.99466,111.78427,101.48474,3.5752128e-06 1240,35.30867,437.06412,47.750557,63.65262,2.3271543e-06 1240,311.92416,424.61572,72.97922,71.57507,1.8667779e-06 1240,441.1401,429.16064,72.30014,69.70831,1.1258986e-06 1240,1.8584684,23.518774,56.789,113.696495,6.604175e-07 1240,510.33893,4.587979,43.499695,51.592636,3.6259128e-11 1240,481.4988,0.0,45.795685,64.66822,5.7562297e-12 1240,544.99414,1.2098665,41.33191,59.03304,1.5291642e-12 1241,421.28958,220.91237,25.507294,57.61,0.014919712 1241,624.0247,297.5072,15.121948,47.10623,0.0051037525 1241,580.8941,196.39238,52.479675,117.973526,0.0024017782 1241,614.41077,240.98524,24.692505,108.49318,0.0018748028 1241,608.78766,49.759933,30.021301,82.627045,0.0009565987 1241,618.0658,195.12347,21.080872,79.71863,0.00057912397 1241,586.2378,242.14503,52.40503,249.80696,0.00056432385 1241,162.60982,203.62195,23.998184,47.9122,0.00029830512 1241,182.63832,204.689,23.454071,45.154785,0.00025144458 1241,623.6389,40.830284,15.507751,48.62979,0.0002381602 1241,615.50024,306.91385,23.646423,98.02649,0.00022076565 1241,586.7454,229.9225,23.24469,67.74568,0.00012021575 1241,606.33765,392.6492,32.80902,109.25064,8.3613864e-05 1241,1.0325164,280.20013,18.485603,75.720825,6.843996e-05 1241,600.3392,43.56798,38.807495,259.88858,5.2092764e-05 1241,0.9100175,147.54584,13.517138,53.36168,4.5370947e-05 1241,1.262492,192.6827,18.635746,71.92796,3.8857677e-05 1241,1.3096054,102.34791,18.36532,77.525505,3.3415923e-05 1241,601.05945,1.1694629,38.08722,58.570705,3.0032901e-05 1241,1.6455396,266.66916,31.650019,186.98547,2.3238637e-05 1241,598.00604,241.34953,23.395569,66.571976,2.0183958e-05 1241,2.1466432,109.95414,32.128872,178.89984,1.5970905e-05 1241,1.1396078,233.39641,18.548145,79.22093,9.439807e-06 1241,120.90518,248.58339,26.55751,54.460922,9.096633e-06 1241,1.3132545,60.83645,18.151688,71.03625,8.854645e-06 1241,6.043763,249.38147,76.73495,223.44135,8.48291e-06 1241,1.2638786,409.42123,17.878578,69.83841,5.81542e-06 1241,0.76653486,336.48227,18.591936,75.09717,5.6764384e-06 1241,520.4566,434.01126,78.90973,66.00223,5.2161217e-06 1241,568.0569,2.0332358,71.08978,164.04816,2.709099e-06 1241,7.628708,401.58997,88.590996,92.45462,1.4875134e-06 1241,2.550708,445.53284,41.379547,55.520233,6.5835127e-07 1241,121.82239,427.98553,76.84108,69.7298,4.7678185e-07 1241,46.110237,433.5398,83.5539,64.119995,3.270851e-07 1241,4.243893,41.69284,58.339226,174.41023,1.4004627e-07 1241,0.7054793,14.134538,9.751817,79.8933,8.638572e-08 1241,1.6215984,16.170176,34.12197,69.956116,1.4947018e-08 1241,276.37302,3.1889064,44.12976,55.89345,1.2051242e-09 1241,334.34106,2.8396175,39.42047,55.08303,8.890326e-12 1242,615.07117,210.43965,22.501587,47.986984,99.58128 1242,601.9967,197.86317,37.149963,100.084854,0.10364985 1242,479.02203,201.79979,26.969788,63.72972,0.048204146 1242,563.3879,212.8447,25.698486,59.355927,0.036750406 1242,572.88416,211.82394,38.593933,74.75873,0.012992363 1242,551.471,214.16397,22.17102,45.778748,0.004887027 1242,10.107592,259.96915,47.051033,166.57819,0.0014584674 1242,581.12665,137.75122,55.74225,239.21738,0.0006996555 1242,572.6364,328.84927,65.51984,158.37137,0.00038511958 1242,490.49536,211.4737,32.986267,77.07898,0.00027311285 1242,538.66895,193.81564,44.85376,117.57364,0.00025905445 1242,615.1861,129.27359,23.960571,108.95146,0.0002588754 1242,204.63931,213.15334,34.47812,70.68596,0.00025014777 1242,617.2074,81.59735,21.93927,83.558426,0.00019806338 1242,611.48145,241.6123,27.665222,161.7037,0.00018448659 1242,620.9685,54.885757,18.178162,60.703285,0.00018386728 1242,0.83661866,303.7228,21.261696,94.262695,0.00015896722 1242,608.73596,439.60757,30.410706,66.72577,8.032804e-05 1242,1.3620052,199.15337,17.748737,70.76024,7.804253e-05 1242,2.4362192,165.31503,32.55501,191.9721,4.8376405e-05 1242,604.8781,0.0,34.268555,70.25863,4.704479e-05 1242,1.01674,413.46368,17.354202,85.64676,4.2418986e-05 1242,143.38577,217.04805,42.818604,139.26192,3.6152393e-05 1242,170.49542,211.72331,65.810394,136.13231,2.4820818e-05 1242,601.7706,24.15138,37.376038,247.4535,1.711214e-05 1242,0.107771,351.81946,13.662877,48.916687,5.8339288e-06 1242,1.915962,379.18225,54.874077,114.87662,5.218241e-06 1242,1.1404119,77.88622,15.66971,136.64236,3.294545e-06 1242,521.84875,8.896706,117.29791,116.66511,2.8664576e-07 1242,1.388859,29.949097,17.517334,98.38194,5.9029393e-08 1242,3.0392563,30.769926,53.39633,84.863235,4.8311172e-08 1242,510.31528,1.1444564,62.08304,57.539337,2.7386615e-09 1242,1.3576026,11.324334,28.438921,48.070244,1.2507001e-09 1242,565.0379,0.0,38.136963,47.332676,2.684578e-10 1242,447.8599,0.0,67.938324,63.074814,2.0848023e-10 1243,602.346,203.88084,27.006836,56.545364,99.38211 1243,492.0296,209.19913,25.636475,55.046326,32.300915 1243,595.1439,190.33905,40.513977,131.03113,4.040208 1243,623.6582,200.57895,15.488464,58.214325,0.2147191 1243,534.80914,188.94586,39.786133,106.32669,0.043933526 1243,530.1548,190.98058,24.172852,54.218933,0.014068803 1243,615.8537,229.20975,22.994446,77.13251,0.013312977 1243,612.88745,118.44293,25.154419,72.00687,0.012051718 1243,506.8265,208.8058,26.2753,55.85594,0.0076740202 1243,479.7707,212.92618,22.274841,47.30905,0.0033187543 1243,524.443,214.01183,31.423157,66.380325,0.003259305 1243,621.09924,87.144066,18.047424,60.021233,0.00225007 1243,603.05695,84.8869,35.849304,180.56284,0.0021906747 1243,0.8954175,116.298386,20.116737,103.9397,0.0015581327 1243,554.0259,110.254166,80.28931,276.63037,0.0013924979 1243,1.1400871,234.61125,18.386723,83.45082,0.0005294786 1243,1.9384652,153.28508,34.49031,185.52956,0.00045049487 1243,104.30446,202.89685,34.924408,68.83798,0.00040012263 1243,624.2632,155.41782,14.883484,49.761765,0.00027316133 1243,56.912006,234.84396,23.103168,55.36563,0.00025323647 1243,602.335,306.13467,36.811646,182.94955,0.00011355138 1243,608.82837,440.48657,30.318298,65.63449,5.8952257e-05 1243,4.013908,208.84143,56.29423,233.89093,1.8556246e-05 1243,457.4485,174.75414,103.546326,195.5803,1.6457856e-05 1243,609.26404,0.0,29.88263,173.6951,1.5864856e-05 1243,611.60175,0.0,27.544922,47.60888,1.2739129e-05 1243,0.7046566,286.61795,21.227222,118.51337,9.296311e-06 1243,1.1466919,356.4885,18.771252,133.46527,4.848967e-06 1243,2.4672737,39.229942,61.301502,220.76218,2.7054432e-06 1243,3.759546,394.6922,56.603733,99.32214,1.2342132e-06 1243,0.76033247,12.078763,10.347025,81.09519,2.919994e-08 1243,1.6333008,13.964353,36.40184,72.371956,1.0527016e-08 1243,478.4236,2.5257359,46.15042,55.21871,2.32901e-10 1243,425.52875,7.923988,93.96448,75.26754,1.6679197e-10 1243,412.25964,3.4638574,49.271973,57.81767,1.5696017e-11 1243,503.67526,3.1820443,45.9794,53.57327,4.3739312e-13 1243,528.7132,4.881374,46.386047,52.418964,1.3202796e-13 1244,513.91583,219.11743,22.49176,52.72348,69.02376 1244,589.0838,294.463,50.062866,134.93188,0.10411895 1244,528.6743,214.9441,30.209778,67.58165,0.03009576 1244,126.24714,222.6432,27.270027,53.52733,0.022789354 1244,476.6334,221.28116,30.927612,73.00879,0.018659811 1244,619.0611,320.03757,20.085571,77.18454,0.01094879 1244,21.215754,168.92546,34.76818,84.25554,0.0073657264 1244,625.85645,362.55267,13.290222,45.098053,0.0035117802 1244,2.2987044,117.07901,35.234787,184.86304,0.0023024594 1244,37.04448,194.82683,39.78144,80.36778,0.0018025725 1244,517.30426,183.58601,61.79779,117.94078,0.0014676999 1244,342.32108,215.77313,20.152252,45.99182,0.0010540312 1244,609.75793,162.01591,29.388733,137.52318,0.00076807785 1244,615.50964,243.33603,23.637024,86.318665,0.00061385054 1244,119.00954,221.32503,47.620422,116.20241,0.0004764412 1244,456.58615,215.9817,37.320587,123.85326,0.00028856532 1244,1.7606568,166.17204,18.991129,76.77197,0.00027741614 1244,611.61444,93.355965,26.664612,58.495033,0.00025774198 1244,595.8873,397.42477,43.25934,102.23956,0.00023048963 1244,1.3327483,211.74004,19.551105,133.29555,0.00017478305 1244,492.62454,152.41376,134.9562,228.1936,0.00015450598 1244,0.67860025,75.70424,19.579762,100.23866,9.819064e-05 1244,465.26776,210.21852,81.56842,153.9269,6.753111e-05 1244,614.2346,0.0,24.912048,46.575554,6.58857e-05 1244,598.4035,19.739922,40.743164,233.73776,9.374138e-06 1244,1.1727995,439.73135,20.488438,62.819397,6.5067275e-06 1244,1.0339087,325.1983,17.495754,136.53134,3.4574114e-06 1244,4.0997868,227.23526,57.064423,231.32037,2.1924982e-06 1244,0.41534832,17.733274,64.75674,116.94914,1.489893e-06 1244,3.4135547,394.71124,57.09418,98.48886,1.3376626e-06 1244,0.9863281,6.836338,21.650248,59.055294,1.8769397e-09 1244,577.74445,2.6606772,44.920776,54.449192,4.925335e-10 1244,544.94806,0.0,43.25946,57.76939,4.5387646e-10 1244,470.69907,5.1348343,62.724274,47.630955,4.3812856e-10 1244,396.4277,2.6888022,47.97293,63.501408,3.36545e-10 1244,427.3175,8.142505,47.41208,47.40186,3.0416544e-10 1244,511.7895,1.3020183,45.14215,56.875668,6.859584e-11 1244,364.1744,2.4636328,41.69171,55.989555,1.1671094e-12 1245,612.6413,217.95776,25.129333,74.38388,97.166016 1245,623.055,207.91823,16.091675,45.263336,0.109809116 1245,599.39044,155.68526,39.408447,192.65776,0.02490905 1245,516.1269,223.73318,24.829346,50.21463,0.018713534 1245,624.02405,253.18964,15.12262,48.73938,0.015565222 1245,604.89594,120.9686,34.250732,109.47333,0.009710706 1245,496.6507,224.21439,20.629883,45.931824,0.008831125 1245,371.20114,231.27998,17.395905,45.980515,0.0025266057 1245,128.73271,223.45215,23.712494,49.59146,0.0016167216 1245,531.5687,228.42747,24.588196,47.142776,0.001504904 1245,561.3129,220.61133,35.76184,67.45819,0.0013800681 1245,470.62698,218.60715,24.421204,47.188446,0.0011165317 1245,540.80853,221.13077,33.29254,68.15936,0.00056336564 1245,1.1386695,153.98958,18.817167,78.58835,0.00053011015 1245,437.80112,210.72554,41.339996,98.982864,0.00038254517 1245,585.38837,91.18559,37.449707,81.070145,0.00020529621 1245,1.217863,219.12349,18.892284,128.12718,0.00015026004 1245,608.7123,439.62152,30.434387,66.10449,8.550532e-05 1245,603.9208,341.87387,35.22589,152.35489,4.7701316e-05 1245,2.273506,123.161705,32.631535,180.37173,4.2923057e-05 1245,607.24976,0.63946617,31.896912,131.413,3.7581212e-05 1245,4.924175,179.84195,57.520996,214.77353,1.7354121e-05 1245,1.1029484,438.79324,20.150078,62.659637,1.1598843e-05 1245,462.46365,165.85146,91.789154,194.83846,1.0451486e-05 1245,1.1984318,269.16486,27.427761,160.0733,9.4147235e-06 1245,1.4289999,369.47623,29.352299,122.95941,4.0479717e-06 1245,1.0289592,53.04086,19.669659,146.7469,8.422834e-07 1245,568.9349,4.3712206,46.927673,57.42864,2.23055e-09 1245,1.5414975,21.17924,57.864845,111.60256,2.1419344e-09 1245,1.3167497,9.950731,19.347227,54.455536,2.1452326e-10 1245,387.56363,4.9717093,46.699432,57.687008,1.2286865e-10 1245,475.4064,4.899269,45.345,49.373463,1.2114151e-10 1245,447.2715,2.767134,47.539185,49.099434,9.803586e-11 1245,519.0341,1.8818604,45.023987,54.128956,6.706167e-11 1245,424.0406,3.183506,43.991028,52.52354,2.201544e-11 1246,365.38498,216.24722,20.912903,52.607086,0.26064944 1246,503.38214,219.33386,33.15509,64.90976,0.008283265 1246,619.95605,162.57315,19.190613,67.18547,0.00813287 1246,571.56915,240.42693,27.079712,58.12294,0.0074855722 1246,622.08044,204.95364,17.066223,53.83246,0.006215994 1246,611.64233,172.59698,27.504333,135.047,0.0025101593 1246,523.68555,231.3804,25.680786,52.777893,0.002011313 1246,575.9247,210.90013,45.309998,100.25081,0.0019342775 1246,592.97986,217.0178,24.496094,51.74547,0.0014727039 1246,548.18195,232.25594,35.34381,73.637924,0.0012003441 1246,621.35785,275.82376,17.788818,51.788635,0.0003565017 1246,275.50366,184.36566,42.11676,63.283752,0.00031409253 1246,612.69794,385.74136,26.44873,119.17395,0.00024776103 1246,616.7625,98.71995,22.384155,90.855705,0.00018404219 1246,570.4478,154.3701,67.91626,249.26225,0.00014884834 1246,1.6670874,174.38126,18.614481,82.21771,8.250587e-05 1246,1.700022,189.85306,28.427896,146.30347,7.78183e-05 1246,616.3968,311.4327,22.749878,89.79434,7.137659e-05 1246,399.3359,221.61284,31.481537,72.64885,5.614657e-05 1246,0.86723673,248.45445,13.005222,56.025955,4.9614056e-05 1246,616.6607,19.515024,22.485962,80.077965,4.5167304e-05 1246,3.8604217,210.08789,55.04872,227.67535,2.0991916e-05 1246,0.7882585,260.4046,19.649462,160.96985,1.8408293e-05 1246,1.644432,73.425285,18.606129,68.93392,1.4743583e-05 1246,405.05884,427.679,76.53842,73.659515,1.0964308e-05 1246,1.1549081,406.43057,17.897503,72.47882,9.65462e-06 1246,585.4677,18.828074,53.47583,206.85794,4.366345e-06 1246,259.51492,154.81247,102.60156,193.59647,3.8789176e-06 1246,2.0829785,70.18962,28.910902,163.1375,3.5678418e-06 1246,1.6439168,350.0824,32.35306,141.57687,2.7750684e-06 1246,474.6348,426.27997,74.96658,72.003845,2.4835538e-06 1246,599.066,1.7574333,39.770996,51.0241,1.7109913e-06 1246,2.0975099,24.494062,53.578026,106.17677,1.5494193e-08 1246,574.1286,7.1469126,42.306335,45.127098,5.354729e-10 1246,457.68005,6.1152363,43.969757,51.14846,7.481698e-11 1246,0.9790389,5.356582,19.624979,66.94914,3.6011694e-11 1246,394.7041,3.3596306,43.109863,48.53934,1.0506094e-12 1247,140.85278,207.96791,20.801666,46.46985,80.33269 1247,7.31744,196.89935,41.997177,60.864655,0.023806073 1247,611.14136,69.24513,28.00531,55.171303,0.009223746 1247,484.81625,275.291,48.86856,115.13953,0.0077156997 1247,2.6782928,193.12473,30.035921,144.05103,0.0026920373 1247,386.077,216.78232,23.283264,49.1994,0.0011899235 1247,612.03564,306.96512,27.111023,136.68771,0.0011669497 1247,479.05627,281.83484,29.201965,64.70813,0.0005798308 1247,270.75806,187.89719,39.96103,62.79042,0.00049950124 1247,571.5477,344.8261,66.40137,134.7504,0.00036864064 1247,616.04803,221.3632,23.098633,93.30562,0.00018975882 1247,585.85754,150.78584,51.92285,259.82727,0.00018491813 1247,578.4722,330.18372,22.38379,47.942657,0.00012379274 1247,611.7308,104.636116,27.415894,156.069,7.338546e-05 1247,584.52124,21.45114,53.93103,100.687744,5.69759e-05 1247,5.3371534,139.80667,74.586365,253.2609,5.6788424e-05 1247,609.2055,440.06674,29.941162,65.324524,5.2139727e-05 1247,465.15323,236.4589,37.246674,82.63199,4.5247194e-05 1247,495.5891,287.541,24.618958,64.92099,3.428675e-05 1247,1.2411914,251.69254,18.129911,130.98065,3.1257106e-05 1247,95.04136,196.264,74.59557,155.4036,1.8159923e-05 1247,1.6073893,112.39388,19.041002,150.35297,1.7857557e-05 1247,0.966495,338.33917,17.063433,137.10959,1.3038493e-05 1247,253.8125,157.28366,85.06314,150.6854,9.8998935e-06 1247,1.2412834,440.8673,20.590733,60.788788,4.614613e-06 1247,3.6527996,329.92725,55.978165,152.59387,2.4894964e-06 1247,2.0467155,66.04188,20.49083,92.145836,1.6579099e-06 1247,502.93356,5.3922086,45.951508,54.885117,9.550686e-09 1247,1.6884302,15.725801,31.076878,65.72652,5.801275e-09 1247,142.37982,7.410303,38.076035,47.486588,3.781866e-09 1247,462.97876,5.3329754,42.49176,46.07698,4.44318e-11 1247,409.47992,2.545827,42.77359,47.652016,4.8257652e-12 1247,354.3023,5.3064375,39.835205,48.736305,4.7792235e-12 1248,273.7938,210.45961,22.016815,45.656967,99.6865 1248,127.70728,213.01059,38.87626,71.58737,0.042880215 1248,540.76636,221.27797,34.123535,63.297714,0.030843861 1248,563.0462,225.13103,27.126831,59.976883,0.005948756 1248,609.2238,231.83884,29.868713,117.78598,0.0023400376 1248,505.52844,202.57042,37.731384,94.11958,0.001848873 1248,104.57388,206.94846,85.22235,147.08258,0.00092796533 1248,621.0071,186.62466,18.139587,56.216766,0.00088122877 1248,95.06983,201.66609,40.16233,80.40935,0.000853119 1248,37.277645,194.79463,48.23025,91.44917,0.0007491507 1248,5.0573683,133.02777,55.913425,214.5022,0.0003110034 1248,586.75916,123.84357,50.518555,222.36682,0.00027406728 1248,1.58719,180.77155,18.530918,71.889404,0.00023922347 1248,578.6045,233.19118,23.71051,53.47896,0.00018138232 1248,63.941525,199.40828,40.755917,80.03108,0.00012117097 1248,611.81824,94.40684,27.32843,155.74329,9.2824084e-05 1248,613.27075,345.2228,25.875916,157.70438,8.345151e-05 1248,1.3624301,206.80977,18.248894,140.33241,6.8850684e-05 1248,616.41394,42.910824,22.732727,87.11737,4.50189e-05 1248,254.45094,180.27032,63.20366,90.85101,2.378088e-05 1248,1.5965446,92.300446,17.992136,135.20753,2.2384085e-05 1248,1.0306503,294.62814,18.877731,148.831,9.968027e-06 1248,430.16812,152.70592,98.07382,209.78725,9.496531e-06 1248,3.587583,305.313,56.568245,179.094,8.4389185e-06 1248,0.93621993,420.76978,14.205547,80.76398,8.181277e-06 1248,597.23096,8.539323,41.91571,79.2389,4.169464e-06 1248,2.6823032,432.02344,44.73565,67.19034,1.8837676e-06 1248,229.07863,140.2238,132.87572,195.45647,1.395935e-06 1248,445.3187,260.17694,17.871674,45.214935,1.1204551e-06 1248,1.5614616,32.341038,18.33583,117.73851,2.6600352e-07 1248,136.22003,7.506722,41.2097,50.571198,9.1699995e-08 1248,3.5214014,28.372488,55.04563,106.11036,8.142476e-08 1248,0.86279297,17.532936,9.920151,75.2424,3.709116e-08 1248,1.86646,18.790314,33.143074,66.32593,1.02429105e-08 1248,378.79507,6.597938,44.84909,51.613754,1.8121578e-10 1248,407.9683,6.3076077,44.44693,55.941757,1.3170068e-10 1248,498.33084,3.8977947,43.03543,52.151855,8.783906e-11 1248,539.10345,0.7610905,44.32831,54.931503,3.3151933e-11 1248,442.6042,2.9605925,42.226868,48.48766,1.6308822e-12 1249,580.21277,221.04381,30.756714,58.172348,99.78151 1249,261.86267,208.48396,25.039764,53.39937,99.766556 1249,25.872513,208.8822,38.20128,76.5069,98.905525 1249,545.93805,207.43478,17.908081,46.286285,95.71129 1249,607.8258,215.50278,29.813904,59.993683,0.55472803 1249,567.14606,197.52766,65.143616,102.19725,0.06152915 1249,489.61694,202.12856,23.878784,51.283875,0.05396494 1249,600.1148,101.02257,37.805603,208.8423,0.0015676717 1249,584.83545,231.19917,53.694336,267.33923,0.0013683599 1249,503.75195,190.05298,38.14685,96.11322,0.0008310188 1249,533.32574,141.94833,100.48883,244.77777,0.0007361682 1249,594.8889,402.33948,44.25775,99.079346,0.00031909475 1249,618.8001,331.65543,20.346558,78.382355,0.00026739473 1249,5.0599055,185.04872,58.64654,253.674,0.00018125316 1249,1.8136353,142.21295,18.611511,136.27039,4.3140317e-05 1249,483.50888,161.67363,81.3475,159.9583,3.727915e-05 1249,1.272819,212.70857,17.69088,141.61461,2.9507686e-05 1249,610.0951,19.112377,29.051575,153.31874,9.2551945e-06 1249,1.3214738,443.33127,20.944574,60.138184,4.6418018e-06 1249,244.34831,166.15631,74.25569,139.79599,4.4082353e-06 1249,0.80884445,308.158,20.06561,138.14822,3.812493e-06 1249,6.507637,359.89035,77.50193,128.22217,1.3405872e-06 1249,1.6021541,53.829433,18.409142,142.65794,6.465394e-07 1249,592.3615,6.6597643,43.3349,53.639263,5.08359e-07 1249,2.5023942,28.266176,55.422905,97.10044,3.6677866e-07 1249,1.0189332,13.790336,12.157168,82.35321,4.3577543e-08 1249,1.1433318,7.7086687,38.289036,48.7843,1.2077015e-09 1249,421.44962,6.1945963,44.374878,52.357685,5.6239013e-10 1249,392.97443,6.828633,44.232605,51.799793,3.039926e-10 1249,486.03387,6.447995,42.284363,49.99739,1.7969581e-10 1249,557.93274,6.140581,44.461792,48.950706,9.140928e-11 1249,456.71674,5.278683,42.681183,47.238884,3.6869695e-11 1249,530.3357,2.9690235,45.957275,53.647285,2.4323547e-11 1250,213.77068,210.32149,35.204773,67.0551,99.96552 1250,586.5449,208.47656,27.10492,52.80304,99.85322 1250,502.5636,202.65767,22.543762,53.271973,73.34698 1250,475.84396,210.9937,26.482605,55.12819,16.417997 1250,602.2959,197.91342,28.672241,66.2959,0.15084219 1250,549.8844,210.2445,24.328552,46.35556,0.13205393 1250,440.42563,211.88011,19.42038,46.424362,0.1265364 1250,529.726,213.80174,24.76947,55.541794,0.03557717 1250,516.38654,205.03168,25.204224,53.556396,0.030419478 1250,620.75684,60.81508,18.389832,67.59546,0.0074315243 1250,621.692,207.50797,17.45465,54.897064,0.0042146207 1250,462.3024,175.29846,55.806366,114.46753,0.002348363 1250,572.0147,183.56946,55.579956,108.493286,0.0016073532 1250,601.7661,120.66367,36.288513,183.58334,0.0011953384 1250,461.8348,238.77211,26.950195,64.98451,0.00097052736 1250,587.3061,19.973816,50.84546,108.241394,0.0003652908 1250,1.8957081,203.91301,34.16432,191.7895,0.00015816605 1250,436.3756,145.76721,139.43628,213.38422,0.00015136533 1250,613.0697,231.99782,26.076965,139.9009,0.00012541415 1250,611.2315,313.33066,27.915161,142.39331,0.00011923813 1250,532.69885,129.50453,102.917114,231.85551,7.0577196e-05 1250,2.1966667,279.40872,68.59544,200.54498,6.550822e-05 1250,609.0646,442.67303,30.082092,62.566498,6.537616e-05 1250,1.6954403,179.70973,18.999203,126.89638,6.0200244e-05 1250,0.82455647,301.89383,22.17728,159.12534,3.318188e-05 1250,571.81213,362.8103,67.33453,131.25107,2.8791444e-05 1250,197.23924,181.75871,70.30226,127.28453,2.3674434e-05 1250,2.4710083,75.483376,33.83341,210.37546,1.6088004e-05 1250,607.7609,3.3501954,31.385742,64.33041,1.0761698e-05 1250,0.8742798,416.4621,17.520786,88.035,6.474343e-06 1250,2.9446893,422.32077,52.98878,76.38779,2.6147138e-06 1250,1.898335,51.392456,19.189367,139.87978,9.075868e-07 1250,407.94327,7.177474,45.909973,54.846497,8.4915746e-09 1250,1.898151,12.486332,31.54105,74.197845,1.8765567e-09 1250,436.6298,5.4082766,40.962708,47.52914,1.6157379e-09 1250,559.1737,8.627402,43.756958,46.094864,9.888155e-10 1250,529.3343,3.8874788,46.227783,53.53868,2.3026624e-10 1250,377.5856,6.3396974,48.198822,53.38866,4.920244e-11 1250,505.39908,3.8739243,43.96237,50.031612,2.5171113e-11 1251,577.3828,209.95613,28.177856,60.801346,99.9046 1251,126.893555,213.21066,41.47148,80.99136,99.89732 1251,593.46704,207.1293,29.14215,60.733765,99.83241 1251,533.7141,201.98114,23.812317,56.075836,99.81736 1251,548.7155,207.72372,21.464417,51.217957,99.488716 1251,613.1611,209.48093,21.81543,57.293335,39.780487 1251,106.77901,211.76474,37.097244,82.42145,0.2775316 1251,13.854414,224.43732,31.969206,57.39621,0.022484943 1251,563.91895,193.4404,66.95386,98.15039,0.017124744 1251,601.0535,187.3878,37.678467,176.76573,0.0122909825 1251,449.59573,212.57022,22.063751,50.560455,0.011764157 1251,521.8025,184.52432,62.93695,102.77359,0.0039619845 1251,102.97621,221.4393,21.795563,45.966522,0.0030769024 1251,530.10175,152.50941,103.031555,225.13908,0.000669725 1251,478.07788,161.17322,34.223267,76.790924,0.0005162031 1251,1.5977515,183.95532,19.270468,133.22168,0.00028866224 1251,374.27313,210.2166,22.47345,53.84651,0.00012120414 1251,89.20382,184.49048,101.32043,173.23996,0.000106018015 1251,4.5814114,147.61804,56.911896,215.4466,9.6883094e-05 1251,608.7829,442.9217,30.36377,62.88629,9.317379e-05 1251,610.18256,72.60386,28.964111,185.36887,5.1879924e-05 1251,603.2819,336.9485,35.864746,161.07904,3.635583e-05 1251,1.6682488,238.74615,28.421774,149.7977,2.4997127e-05 1251,608.0995,0.0,31.04718,69.01608,1.7006749e-05 1251,0.95482504,300.16394,18.156546,144.73773,1.44534115e-05 1251,2.1329103,82.79906,32.88693,202.34935,1.3164211e-05 1251,3.702404,316.459,55.406242,167.34802,8.411406e-06 1251,1.2548145,374.08826,27.719522,121.530914,4.8724223e-06 1251,427.7157,8.362482,45.260498,51.020996,1.5126092e-08 1251,401.7862,10.009346,43.504486,48.406235,7.3717845e-09 1251,1.6517245,13.643064,31.801397,67.02601,1.1433916e-09 1251,364.96805,6.8174853,49.05414,49.713852,2.9593852e-10 1252,507.60788,220.97273,23.203949,52.33348,63.93432 1252,491.63422,218.10027,23.53009,53.490616,0.7026432 1252,598.3106,203.92914,31.753845,96.47888,0.30551866 1252,547.9827,201.49013,23.845764,57.74678,0.28991395 1252,600.75275,202.21542,20.125,46.377396,0.050333947 1252,559.4303,183.15797,22.845886,50.054016,0.017427078 1252,617.5828,195.8282,21.563843,83.71416,0.0043634055 1252,611.1657,262.97885,26.261597,52.41327,0.0039801807 1252,394.1154,207.22159,24.765686,57.08963,0.0023815476 1252,490.61084,184.518,51.091858,113.43588,0.00217946 1252,1.6252711,184.23026,18.061493,70.243164,0.0016042229 1252,475.3995,215.32582,26.440186,54.811478,0.0014873318 1252,586.91724,195.15717,50.93866,232.08997,0.0006054413 1252,613.0138,419.14978,26.132874,85.58029,9.6950294e-05 1252,602.2438,72.262054,36.77997,220.01419,8.8867055e-05 1252,612.16315,307.5985,26.98352,146.79431,7.042874e-05 1252,600.3104,15.585932,38.836243,113.67918,4.0862706e-05 1252,463.61215,154.87279,136.95486,215.18578,3.9595372e-05 1252,1.9882015,167.4143,34.87661,174.52164,3.9145118e-05 1252,570.5427,366.40106,68.60394,127.99338,3.0186931e-05 1252,0.6858252,255.31242,19.282883,139.12624,1.00627585e-05 1252,4.9371195,125.67689,75.17559,258.87466,9.13391e-06 1252,1.2639925,440.13544,20.124004,61.502808,7.716974e-06 1252,1.1890112,355.89688,18.693663,127.29132,5.1497204e-06 1252,3.6194859,393.78845,57.056183,99.52969,1.6857567e-06 1252,460.9898,428.70132,72.79364,70.61609,1.5505561e-06 1252,386.80426,428.0844,82.36612,72.06436,1.0599801e-06 1252,590.71405,5.0037174,44.636658,48.549355,5.387663e-07 1252,1.5950302,38.941757,34.40225,174.06598,1.2030287e-07 1252,1.9187549,14.821426,33.28212,65.3613,8.866559e-10 1252,177.90761,0.8806836,43.389816,56.680748,4.584385e-12 1252,566.59106,0.52945805,43.121765,53.479946,2.5289e-12 1253,500.62048,208.3235,23.82721,51.39952,87.89105 1253,519.7718,207.88115,20.37207,48.118134,45.629116 1253,608.3634,232.59863,29.692078,62.748016,26.614145 1253,487.59402,209.97467,19.683655,45.030914,8.199224 1253,514.2351,203.98073,37.65027,97.92793,0.08086621 1253,598.59827,225.25879,25.304016,46.906128,0.045988332 1253,381.08948,165.95613,32.849243,78.96356,0.03369241 1253,455.79694,218.79524,32.562927,74.374374,0.012501501 1253,585.14636,215.54562,25.745422,47.97946,0.012214546 1253,545.43335,198.6194,23.946167,54.924484,0.0074200956 1253,392.6877,156.43134,20.174591,46.22786,0.0043295994 1253,596.2518,187.22829,41.56201,168.88594,0.0020362271 1253,355.22528,196.65904,22.223877,53.719925,0.0017955191 1253,426.31027,169.3649,34.584106,84.685,0.0017544571 1253,442.21555,205.67885,22.728424,50.29236,0.0012051847 1253,562.26483,205.44398,33.729187,67.921616,0.00054174016 1253,482.83783,243.00371,26.202484,52.13521,0.00052455213 1253,620.86664,150.74217,18.28003,63.814804,0.00019012584 1253,481.86563,180.91515,100.755646,190.15034,0.00017021365 1253,610.1349,112.012856,29.01178,172.67673,7.8078185e-05 1253,604.1616,262.80215,34.985046,199.46545,7.199928e-05 1253,609.555,438.3987,29.591675,67.21155,4.562252e-05 1253,0.9723112,203.12491,17.238976,129.67319,3.2791926e-05 1253,611.56396,6.279466,27.582703,92.60427,2.8247012e-05 1253,2.1559482,128.05229,27.023792,144.24486,1.3087053e-05 1253,3.5985694,259.22943,57.134193,211.68762,1.1891184e-05 1253,0.98420817,370.1657,16.827774,124.951965,6.171336e-06 1253,4.357059,139.58597,57.293728,206.85635,3.4160105e-06 1253,1.4260262,45.76905,19.172459,135.99908,3.5613247e-08 1253,0.82049483,13.7153,7.786355,77.980316,1.2649128e-08 1253,584.97314,3.3901498,43.231323,46.376694,4.9712447e-09 1253,1.6296436,11.624486,35.211063,73.99047,3.470594e-09 1253,559.6134,5.525562,44.382996,51.56276,1.7299812e-10 1253,176.98874,0.0,43.585175,60.05848,9.331819e-11 1254,550.67645,206.68318,25.498169,52.358322,98.898926 1254,596.0364,207.4152,22.911377,52.634964,31.793701 1254,578.15717,212.81274,25.040283,56.0614,25.238974 1254,612.9063,208.64098,24.190247,56.11409,8.294378 1254,363.428,202.38985,21.363037,46.569122,7.4792376 1254,536.35077,212.21927,27.297607,56.699585,1.7830975 1254,168.99033,211.27716,21.277374,46.048462,0.10093603 1254,602.1952,195.70476,36.017517,145.18498,0.03609004 1254,374.4574,207.90831,20.42212,53.04698,0.014785144 1254,567.0874,217.94173,21.955261,47.474106,0.014598851 1254,468.79626,180.72404,26.316864,64.273224,0.012151559 1254,401.5309,158.31194,23.055573,59.221176,0.010789326 1254,535.18677,177.346,56.982117,113.27858,0.006781344 1254,379.45877,166.37032,40.999237,118.81758,0.0010048811 1254,501.78986,143.60254,129.19763,224.16254,0.0004547293 1254,440.35455,170.90723,31.318542,73.56171,0.00031403502 1254,400.49365,198.5237,37.320312,97.42528,0.00022748888 1254,616.51654,64.76871,22.630127,92.19191,0.00016023312 1254,422.94284,208.31998,34.450348,76.16437,0.00015674434 1254,610.86536,272.59766,28.281311,139.29016,0.00010019042 1254,1.6851254,168.3635,18.167023,129.44409,9.909978e-05 1254,3.4334133,112.49508,57.487434,215.55634,4.476929e-05 1254,609.26984,439.75677,29.876831,65.40735,4.128615e-05 1254,605.2648,340.59186,33.881897,153.4819,3.890054e-05 1254,0.6726571,262.49432,19.201252,82.903595,3.0038114e-05 1254,601.89087,58.03857,37.2558,223.86975,8.51897e-06 1254,1.5556511,221.44734,32.14032,179.93855,6.9169496e-06 1254,585.98865,15.482292,53.1463,117.75222,6.8837167e-06 1254,1.3436337,444.32278,20.852991,58.99582,3.7568948e-06 1254,0.87498295,324.34326,18.476377,74.88614,2.0314842e-06 1254,1.4994296,365.0451,27.546703,129.78336,1.3970885e-06 1254,1.5097169,72.5068,19.769276,156.66238,1.2527671e-06 1254,560.4303,150.9943,32.01892,65.76538,6.1030903e-07 1254,6.222969,357.11603,78.7794,133.0116,5.190444e-07 1254,1.4281307,31.443737,20.872967,101.22043,3.9318e-08 1254,0.9124036,14.131863,11.241514,78.75351,2.6293545e-08 1254,315.6068,3.533143,64.80545,51.864494,1.4121238e-09 1255,380.80182,179.81642,28.5896,70.27304,84.13352 1255,410.53174,207.05042,34.139465,83.6655,0.22507036 1255,438.5288,213.10527,23.574707,56.58943,0.10595708 1255,394.55463,208.45087,19.190247,47.92227,0.08131682 1255,494.6519,273.97174,31.716217,82.91193,0.06791355 1255,610.1725,194.5861,28.864502,144.6646,0.00573737 1255,513.9389,270.30997,24.17694,53.698303,0.0008334467 1255,422.3482,192.98341,52.259308,126.587814,0.0003290832 1255,570.4456,118.28565,65.49182,257.4289,0.00030771445 1255,478.22705,228.926,73.45996,159.77725,0.00017615891 1255,552.0834,260.6835,55.520935,151.00781,0.00014584594 1255,610.0828,92.26584,29.063843,159.94003,0.00014573595 1255,613.44275,336.28726,25.703918,137.20728,0.00014470282 1255,1.1170354,232.73082,19.29774,128.91173,6.7991605e-05 1255,565.38275,163.36902,24.662048,59.983246,4.840373e-05 1255,609.34827,439.0394,29.7984,65.896545,3.9671948e-05 1255,3.772606,199.72113,56.160156,227.42001,2.2086075e-05 1255,2.103253,159.30188,29.303968,136.08188,1.956912e-05 1255,565.1487,317.37894,29.676392,76.86792,1.3597446e-05 1255,1.578064,87.67677,19.568666,145.255,9.033214e-06 1255,0.98905766,341.9221,19.395817,132.52704,3.7272323e-06 1255,585.82697,7.649629,53.293884,127.28233,3.3320578e-06 1255,1.2815601,443.51154,21.049889,59.720093,3.3254548e-06 1255,6.101859,360.33398,78.7127,128.99805,5.470419e-07 1255,4.040539,69.82087,56.018356,232.5798,3.785969e-07 1255,0.9240328,13.871443,11.4337,81.44179,2.2101302e-08 1255,2.3264372,15.925606,56.776897,126.57726,2.1773598e-08 1255,1.8216976,9.151804,30.085836,58.958954,3.4826493e-09 1255,366.3513,5.6487746,42.569458,50.603603,4.713541e-10 1255,338.61465,5.4670215,47.27292,56.7258,3.909584e-11 1256,421.2896,176.53961,31.40915,68.62149,0.18218055 1256,620.21936,179.79938,18.927307,76.178604,0.08041733 1256,538.0967,178.35693,22.929688,47.820618,0.020200633 1256,598.0125,183.77847,31.602417,70.35304,0.017593335 1256,540.3643,209.49011,58.459717,161.53915,0.0125698745 1256,520.35626,174.23938,33.391113,70.63469,0.0077483784 1256,609.8529,107.96552,29.293762,169.4707,0.006742448 1256,3.8467767,248.33656,26.195436,53.33348,0.0030154756 1256,509.58997,221.95065,21.980164,54.608887,0.0026273245 1256,556.54065,274.80505,32.68103,78.8811,0.0015242703 1256,616.97144,220.4913,22.175232,88.34265,0.0008364501 1256,2.721932,170.2871,33.995922,163.84337,0.00072829484 1256,568.5346,129.16803,67.88934,249.41171,0.0002272963 1256,1.4114397,212.0054,13.93403,55.654694,0.0002227519 1256,1.8665382,160.04282,18.747393,77.94031,0.00021560947 1256,617.15845,55.691975,21.98822,81.02725,0.00015272996 1256,612.39795,362.16333,26.748718,137.71497,0.00012603162 1256,583.8233,11.490248,53.615295,110.83785,0.00011285796 1256,602.3259,256.16168,36.82074,196.12097,0.00010402855 1256,1.2623303,230.84595,18.12102,133.45749,6.723397e-05 1256,1.4898592,275.7986,31.590708,191.17957,1.1873426e-05 1256,0.97260094,422.47025,15.692747,76.35571,4.8661623e-06 1256,0.75638676,338.68887,18.533478,75.79291,2.2052564e-06 1256,1.4846468,47.660496,18.13673,148.80684,2.020872e-06 1256,3.6454134,397.9998,55.74731,92.73178,9.132721e-07 1256,3.5719938,33.69836,58.979633,260.6417,8.888958e-07 1256,3.536963,14.712559,50.068302,72.619415,7.8410676e-07 1256,1.3113273,14.040004,15.899548,70.026146,3.2468088e-07 1256,573.58264,7.227539,43.374695,50.03627,2.5027643e-07 1256,494.10913,17.543575,114.94916,111.53531,9.876705e-08 1256,525.8087,10.175936,43.330627,48.94629,3.539614e-08 1256,102.70773,8.286812,40.228592,49.31377,1.5753199e-09 1256,182.91116,1.8242676,43.081604,56.90678,1.289731e-11 1257,517.9545,216.62488,42.71216,120.25308,0.58390445 1257,532.57446,205.07045,34.174866,70.76164,0.041561734 1257,489.50543,213.43651,23.83313,47.78148,0.025097778 1257,406.41016,184.73651,26.1474,66.82811,0.009532697 1257,503.21548,212.0287,24.5195,49.230637,0.008601697 1257,418.56958,227.25638,29.483551,67.04794,0.005902133 1257,623.3657,262.1686,15.780945,55.92392,0.003391548 1257,580.56635,170.23628,42.4093,125.52565,0.002212052 1257,622.0422,293.20596,17.104492,54.328796,0.0013621054 1257,618.56793,209.72604,20.578735,83.65375,0.0011863351 1257,600.00555,233.66037,38.905823,174.9147,0.00052362354 1257,420.84607,206.07521,24.19925,48.797974,0.0003697582 1257,389.85254,211.50436,21.84842,49.934357,0.00028805173 1257,483.9167,184.6625,107.67737,201.3812,0.00028702366 1257,407.21356,232.54741,21.466248,55.38951,0.00023061846 1257,621.10425,338.04294,18.04242,56.860046,0.00012827957 1257,604.8217,125.57945,33.630066,185.94545,0.00012722025 1257,612.0023,352.39548,27.144348,149.96918,0.00010803463 1257,0.7515381,267.26962,19.337965,86.50214,6.502249e-05 1257,1.850568,163.74596,18.149345,69.85272,5.182044e-05 1257,617.24316,62.336044,21.903503,83.350266,4.9992457e-05 1257,1.9513819,191.38002,35.174335,174.5555,2.3450672e-05 1257,3.107557,268.5039,56.208344,204.52283,1.0260406e-05 1257,1.0024154,421.39728,14.602383,78.533936,6.7701217e-06 1257,0.7643474,318.68512,19.32412,139.58725,6.289575e-06 1257,587.0993,17.531094,51.612854,116.513855,4.6272517e-06 1257,1.3879428,218.6241,18.665676,79.43977,2.5497536e-06 1257,1.4924178,64.4663,18.746471,146.65149,2.0391785e-06 1257,2.6608057,432.16736,44.814373,65.706024,1.0557108e-06 1257,69.82765,5.571289,40.22062,53.368263,5.769765e-07 1257,94.02697,10.663063,43.089638,52.864105,4.5788912e-07 1257,3.3606772,25.925158,57.593975,257.21545,3.484653e-07 1257,1.6045817,12.106074,17.77306,69.978775,2.6793543e-07 1257,75.59331,18.224747,80.63498,151.67651,1.9141764e-07 1257,123.490456,11.244615,39.712242,47.2957,3.047783e-09 1257,354.14343,5.9487453,42.009277,50.52625,2.8959428e-09 1257,325.05862,0.17977865,43.138245,58.313824,4.2794995e-10 1257,188.07301,0.50703454,43.172104,56.393887,8.691408e-12 1258,495.2245,204.37038,25.029297,51.806076,99.42661 1258,475.2942,204.78514,36.04129,67.25185,0.04256025 1258,549.95294,96.004875,34.260498,78.95753,0.01930686 1258,534.12616,260.51495,26.9068,54.942932,0.011251732 1258,601.67975,221.50272,33.668335,63.270264,0.010411718 1258,465.17178,232.76724,34.19348,94.6803,0.0012403687 1258,589.46704,94.213295,48.27362,225.83344,0.00041433296 1258,414.4791,186.27307,24.549255,55.827927,0.00033631132 1258,67.742195,46.859455,26.554688,63.6219,0.00032512835 1258,587.7827,223.033,23.121338,46.556442,0.0002613154 1258,449.70453,205.10915,24.773987,56.91011,0.00024609306 1258,476.5521,160.72314,70.39218,173.56378,0.00013690798 1258,601.1967,234.90488,37.602783,179.98804,0.00011054936 1258,609.14014,438.44125,30.00653,68.82846,5.8957547e-05 1258,617.4092,81.613495,21.737488,74.858154,5.438244e-05 1258,604.80457,337.52664,34.342102,154.3378,4.005218e-05 1258,1.6904728,147.79506,20.919275,108.5688,1.9607603e-05 1258,429.2055,232.05579,23.137726,51.924988,1.3219477e-05 1258,0.917238,392.75888,18.182621,75.893524,1.1135951e-05 1258,608.44257,12.376381,30.704102,126.31434,9.946984e-06 1258,0.86371094,237.08496,19.774965,139.02261,8.531166e-06 1258,1.1213322,441.04605,21.560326,62.046417,5.611366e-06 1258,3.6469824,175.59569,59.250668,222.2599,4.725649e-06 1258,0.7698495,331.61584,18.436605,73.62079,3.701021e-06 1258,1.3824341,306.74667,33.03103,180.13419,2.6180523e-06 1258,6.2272396,360.71768,78.593895,126.38406,1.6327419e-06 1258,2.6315527,34.882767,59.08328,213.00534,1.5732263e-06 1258,1.0381176,60.441055,21.144142,112.35474,4.964257e-07 1258,65.49414,4.8965497,44.94982,62.94183,4.8016034e-07 1258,47.10901,4.47612,76.503456,158.31194,9.0242175e-08 1258,0.6858797,10.920212,11.301841,84.67501,7.047128e-08 1258,40.10713,0.959528,43.63345,62.37831,5.871722e-08 1258,1.5156707,11.921071,36.213978,78.895515,2.2521482e-08 1258,95.04328,6.2847266,40.563545,56.924282,9.38289e-09 1258,128.61407,4.8303027,42.097717,55.610817,8.379972e-10 1258,352.16367,6.346122,43.472687,52.350742,6.0067134e-12 1259,562.07275,207.28816,25.937805,61.79637,96.493454 1259,515.53046,206.98825,28.860779,81.62485,94.64644 1259,495.21948,206.37747,27.783081,84.20279,8.829385 1259,532.06915,206.41003,34.698853,83.493164,0.046446245 1259,482.13605,161.46376,55.24646,145.60359,0.03749468 1259,551.07214,214.35928,18.039612,45.786407,0.03229644 1259,545.6409,181.74733,55.65753,121.28496,0.012966607 1259,573.95667,227.95091,62.01593,141.59932,0.012374312 1259,614.0187,242.4502,24.992188,91.99805,0.0014231006 1259,503.641,196.53305,74.11847,168.28769,0.0011022491 1259,405.60934,220.51399,32.842438,69.20073,0.0008607225 1259,612.0906,364.89948,27.056091,137.24313,0.0001868283 1259,617.5486,61.048916,21.598083,85.06285,0.0001637494 1259,1.3229362,119.23918,18.915686,147.35237,9.049543e-05 1259,617.0002,328.44604,22.146484,96.569214,8.6034546e-05 1259,0.99256104,244.87491,19.104034,136.76053,5.5230095e-05 1259,3.6467986,154.64592,59.817463,226.2112,5.0207946e-05 1259,612.7679,121.63454,26.378784,141.88264,3.7605016e-05 1259,0.94059736,422.80035,15.672659,79.19235,6.566221e-06 1259,0.6897461,345.4856,18.530552,73.607025,4.9024206e-06 1259,584.1141,32.22588,54.299927,211.56303,4.10975e-06 1259,1.245407,322.95245,32.852104,165.55017,4.0573636e-06 1259,2.5856724,431.8706,45.45391,67.70035,1.0924725e-06 1259,15.583191,3.4148893,43.189404,47.24553,2.2301863e-07 1259,1.3913997,26.29086,34.551422,203.38466,1.1205016e-07 1259,0.7186133,8.823281,12.430337,88.0481,6.576381e-08 1259,74.76672,8.047762,42.942482,52.95089,2.5805052e-08 1260,587.8431,199.44922,27.254028,49.96689,3.2158806 1260,597.6745,202.46439,36.543274,67.64798,0.13415566 1260,489.4327,188.33366,39.340607,84.17461,0.049965836 1260,549.5242,149.11475,25.587524,63.076324,0.014826537 1260,620.3351,66.96149,18.811584,68.11252,0.0074490197 1260,509.86658,198.92278,29.460815,54.517227,0.0036313252 1260,587.3706,220.49344,50.650513,248.01773,0.0006334159 1260,461.37344,141.34897,73.14969,162.30899,0.0006029831 1260,1.5890683,156.88754,20.181425,128.57748,0.00037705386 1260,497.30557,43.258335,22.503632,46.484325,0.00025442627 1260,603.1234,125.67086,34.999084,193.49545,0.00022724582 1260,604.1396,22.713724,34.746277,128.57053,0.000154613 1260,612.218,354.5435,26.92865,145.59674,0.00012134594 1260,548.96576,121.53922,85.2489,249.224,0.00010331432 1260,1.0737789,221.44756,16.274937,131.95122,2.0528456e-05 1260,3.9370036,109.58719,56.843662,212.83582,1.872677e-05 1260,563.32434,148.59908,27.278503,61.82785,1.6899363e-05 1260,0.9262484,327.56915,19.668411,135.66403,5.060028e-06 1260,0.9233423,423.18835,15.939284,79.19937,4.3405207e-06 1260,3.2829037,283.1372,57.79722,197.59671,3.65881e-06 1260,2.589048,430.56195,46.035076,68.3624,1.211256e-06 1260,1.8285824,33.122623,34.997887,207.15962,1.9282915e-07 1260,1.4045076,20.007627,19.276337,119.1693,8.4245485e-08 1260,414.4,5.4782667,43.061737,49.307476,3.7420697e-10 1260,388.60205,5.177497,43.546722,46.3337,9.6928285e-11 1260,359.46332,6.0228486,43.70572,46.364464,7.064168e-11 1260,336.0315,3.3539715,40.859314,52.824593,1.5399007e-11 1261,594.6155,204.07802,37.83008,88.99916,99.86966 1261,504.54465,202.62935,24.177277,54.126328,40.456043 1261,621.07544,205.61832,18.071228,67.84473,0.3142863 1261,601.3228,185.81009,23.59375,50.782806,0.082870044 1261,570.63434,155.87973,66.3421,196.65079,0.04018854 1261,467.9587,211.07936,21.660522,48.750504,0.02042156 1261,448.4231,205.9863,23.71875,48.84201,0.0012478074 1261,615.5425,235.43465,23.604187,109.42613,0.00077233865 1261,615.40326,136.50317,23.743408,98.97649,0.00052045117 1261,410.31186,213.4417,25.417755,63.382492,0.00041624904 1261,2.0128703,178.58788,28.903965,131.50813,0.0002595401 1261,602.31885,328.45007,36.82782,168.2865,0.0001708041 1261,608.547,439.71402,30.59967,67.94672,8.306253e-05 1261,1.0462972,243.7919,19.173664,141.56848,1.8140503e-05 1261,3.5127995,138.75717,58.28496,211.97787,1.7430286e-05 1261,486.4775,163.70728,73.06607,162.29944,1.6716405e-05 1261,585.6437,13.040762,52.240906,114.40781,1.4488893e-05 1261,1.9028711,97.16246,23.068554,129.93643,6.326838e-06 1261,0.9615975,342.12222,19.205206,133.5083,3.836712e-06 1261,0.91823,421.67084,15.680725,80.216095,3.5547255e-06 1261,3.9749675,29.109152,54.819176,106.43163,3.5330886e-06 1261,3.470088,327.8807,57.71318,155.48718,1.2981551e-06 1261,2.6898618,431.10037,46.18507,69.00641,5.168434e-07 1261,1.6126653,18.198029,14.978052,73.596245,1.9303525e-07 1261,519.6299,1.5307813,44.070312,52.467422,2.2862446e-08 1261,549.62085,3.0540593,44.967712,48.30492,6.866437e-09 1261,6.3828206,9.740322,43.767403,52.8137,5.269884e-09 1261,53.62991,4.845256,42.927372,54.292973,6.3935585e-10 1262,442.94547,210.50131,20.421936,49.0813,61.28254 1262,429.70935,208.6643,22.40097,49.941284,34.2885 1262,530.071,209.7761,27.783142,57.894836,1.2003647 1262,517.55896,140.62065,41.448486,116.034744,0.07351677 1262,431.25812,184.72505,36.053467,109.196,0.035674132 1262,365.8901,213.95108,22.167297,46.789337,0.0126089845 1262,434.55994,235.94504,20.881287,46.6651,0.012587001 1262,612.5582,193.44662,25.26587,50.750366,0.010936279 1262,602.6141,117.3843,34.34613,143.38931,0.009423302 1262,611.382,198.33559,27.58667,153.25352,0.00032471254 1262,573.3747,136.90356,24.845459,54.692017,0.0003079622 1262,550.9178,253.8211,24.555725,45.42157,0.00029233264 1262,454.38788,142.95142,102.78363,201.15506,0.00015078069 1262,571.34485,53.65267,64.47278,274.40195,0.00011216416 1262,1.8484539,72.75026,17.718643,77.079666,5.655516e-05 1262,1.2385807,215.1779,17.608477,133.60448,4.8496328e-05 1262,583.9799,379.59387,55.166748,121.64566,4.544352e-05 1262,409.13547,173.5203,86.76846,172.62088,3.0613857e-05 1262,3.2619352,207.54355,58.423496,222.92798,1.9507703e-05 1262,2.1581023,74.084335,31.059534,191.88155,1.8553486e-05 1262,610.0477,1.2186849,29.098938,143.78093,1.2057197e-05 1262,0.79232585,329.90427,20.902863,107.530334,9.56645e-06 1262,610.6963,286.89865,28.450378,163.39908,6.8219188e-06 1262,1.0160173,385.7163,18.982038,112.0751,5.0155013e-06 1262,1.4053931,15.256481,14.559593,96.86888,2.4373253e-06 1262,115.08059,147.66891,102.419655,198.71286,1.348869e-06 1262,5.5510874,359.4284,79.27173,127.75943,9.793084e-07 1262,3.6503518,19.037373,55.767437,117.265076,7.7192965e-07 1262,2.0975602,8.486859,33.83756,50.12324,1.3877023e-07 1262,332.66064,3.5542157,42.098785,48.563904,3.100164e-12 1263,464.00476,204.28185,25.706024,65.45943,98.7341 1263,530.48535,209.03595,22.949097,57.776123,98.6416 1263,512.717,213.19707,26.584412,53.48259,91.75149 1263,479.01804,207.35413,24.605103,59.74301,88.16859 1263,549.4819,221.8711,20.074524,45.870148,67.92168 1263,564.251,206.15503,23.124023,54.292755,1.9461957 1263,534.7759,205.73625,41.624268,88.547714,0.47725537 1263,576.554,195.8036,28.918945,65.152664,0.10595941 1263,602.0553,158.05084,35.53882,89.4281,0.055519007 1263,578.501,111.19146,56.309143,182.82556,0.027709391 1263,392.3381,212.2768,25.046295,46.27176,0.008156987 1263,608.9129,78.74812,30.233765,130.609,0.0030955027 1263,453.991,188.04546,54.585175,106.2267,0.0025611902 1263,499.46365,216.85555,23.64743,50.672104,0.0022595532 1263,610.0797,194.92177,29.066956,148.04128,0.0009509501 1263,495.46585,175.88727,70.33182,170.18454,0.00035109287 1263,1.4108846,194.1712,18.405281,120.5105,0.00010383725 1263,602.8796,312.5717,36.26709,179.63208,6.2148705e-05 1263,585.3307,18.616426,53.81598,135.4756,3.2816042e-05 1263,2.8221517,112.52029,30.390667,162.11105,2.5584794e-05 1263,1.8430356,217.55238,33.2233,173.43846,2.2068221e-05 1263,0.8492692,290.14926,19.640795,136.62589,4.5883703e-06 1263,0.9718441,386.12918,18.777397,111.71411,3.022155e-06 1263,3.434458,287.69238,57.885105,188.58206,1.1637875e-06 1263,1.5731446,42.152893,19.223778,130.72302,1.1503797e-07 1263,95.68762,7.9696684,43.320435,46.332108,1.5511107e-08 1263,408.3011,7.743607,43.74231,50.40463,1.5362946e-08 1263,66.99683,6.4019027,43.155876,47.170742,1.1348037e-08 1263,1.6428044,9.591849,36.602844,85.58151,1.9731143e-09 1264,578.3353,214.03976,29.58966,61.54898,99.922874 1264,561.2497,217.53648,25.398865,53.133713,99.38018 1264,109.425095,206.28214,23.329056,47.860367,99.348785 1264,506.66006,204.49498,23.019012,58.449173,98.76694 1264,529.2576,209.56711,22.887878,68.8273,98.409096 1264,600.0903,215.23102,24.139832,56.3714,93.49351 1264,409.93384,215.19882,24.002747,47.137665,65.703354 1264,613.69183,210.85841,20.419617,53.01689,24.856823 1264,489.8988,208.83847,22.17102,49.854736,20.13717 1264,539.6921,212.10457,33.934814,67.792404,0.021533052 1264,603.67535,189.24904,34.29065,117.54225,0.0128703015 1264,44.579853,133.54881,25.06155,48.802322,0.006306739 1264,549.0352,192.21101,72.88739,104.82475,0.0043518865 1264,604.588,131.59018,34.448486,91.95126,0.0023509488 1264,499.26944,188.97208,76.88852,143.20935,0.00048665243 1264,522.93,141.2644,114.40625,233.52612,0.00026609254 1264,610.4353,29.77737,28.711365,146.81258,0.00010739732 1264,608.67096,442.4489,30.475708,63.111053,9.825584e-05 1264,1.3760035,185.52457,19.776672,116.07855,9.098402e-05 1264,601.89606,255.65782,37.25061,218.30318,2.661179e-05 1264,384.0737,178.97105,90.54187,185.0756,2.0621854e-05 1264,2.3276532,95.58664,33.613396,171.77637,1.9832602e-05 1264,1.8154761,212.38736,32.07661,179.70068,1.3576778e-05 1264,608.2925,4.2464066,30.854187,66.75271,4.58307e-06 1264,1.0239079,393.21057,18.871557,106.263306,4.0377777e-06 1264,63.602848,120.545654,134.41838,227.81973,3.8343414e-06 1264,1.1622754,318.61603,28.46541,143.57587,2.373651e-06 1264,3.599717,395.85135,56.966198,99.70648,7.239336e-07 1264,1.0643913,1.5570817,20.85202,47.138393,1.5260154e-07 1264,1.351648,10.793321,20.452698,131.77948,1.1843435e-07 1264,340.4868,2.3119712,43.86252,54.562817,1.1747895e-09 1264,448.72867,5.2634344,44.628845,56.285427,5.1485316e-10 1265,92.17758,204.18582,26.997604,52.357086,99.65794 1265,555.84644,206.31998,27.506958,65.66162,98.40276 1265,581.6801,210.72557,27.17987,66.83714,90.5779 1265,456.30396,208.6982,20.648499,52.192917,87.157875 1265,438.60294,207.46092,25.390717,57.969986,84.70897 1265,485.17453,209.43672,23.647003,46.62947,33.304985 1265,74.89432,197.73288,20.846626,47.788223,8.435305 1265,526.73926,212.7199,21.456299,45.55327,5.6511803 1265,592.23114,206.93565,38.703857,84.40236,2.8911936 1265,532.5739,204.10715,35.74536,66.8515,0.50238186 1265,616.163,211.33372,22.983643,103.97432,0.006076192 1265,553.4224,172.13437,80.53656,188.22925,0.0013922668 1265,477.48703,178.77237,58.18106,115.95444,0.0010759194 1265,616.8379,88.10372,22.308777,86.40334,0.00030065596 1265,415.5697,177.56906,92.265625,177.61127,0.00027523207 1265,1.0386955,227.11183,19.473284,130.15974,8.7391396e-05 1265,600.33685,60.78797,38.809814,219.88907,6.192277e-05 1265,1.519957,104.14873,20.341978,147.83803,3.3809694e-05 1265,453.95105,143.69818,135.37665,216.5242,2.613433e-05 1265,584.746,397.75504,54.400696,99.58362,1.977379e-05 1265,609.33435,5.453021,29.812317,53.44431,8.260287e-06 1265,41.88529,121.377396,142.25287,231.7035,7.05028e-06 1265,1.3442993,270.60757,31.357616,181.22083,6.0588436e-06 1265,1.2492172,442.5907,21.406631,60.125,1.6963199e-06 1265,3.497098,398.49594,56.33005,95.23886,2.8470703e-07 1265,1.104681,8.190118,21.472126,142.76772,1.2554266e-07 1265,0.9529557,1.1574007,20.795086,51.40855,3.8845407e-08 1265,372.35233,7.491501,45.163605,52.526814,5.9872542e-09 1266,518.0536,214.87926,20.045593,45.66667,99.841705 1266,78.25596,201.25275,31.563095,55.179016,99.58498 1266,449.9696,213.79459,19.601715,48.717896,98.48811 1266,608.8421,205.18256,30.205261,74.3371,97.69986 1266,465.3672,210.45181,22.546936,53.480286,96.16643 1266,554.48914,217.7988,26.73877,45.044373,2.608981 1266,67.56615,199.3501,24.17125,49.884384,1.2245116 1266,427.958,215.81793,21.99701,46.00894,0.27252275 1266,504.0748,203.88477,37.84207,86.55359,0.22630666 1266,535.1237,218.30539,37.6109,73.47952,0.015846116 1266,586.7706,208.29932,34.667908,70.33905,0.009302832 1266,528.7207,216.2672,25.14441,47.79811,0.0063863415 1266,582.2826,172.55078,54.41266,184.50903,0.005999333 1266,479.49637,166.47557,74.26352,170.59258,0.0012562876 1266,1.2699374,181.25117,19.600609,118.100815,0.00020088948 1266,608.8238,440.91068,30.322876,67.10971,6.335919e-05 1266,1.8336174,91.45432,29.736113,175.98459,5.925754e-05 1266,609.94305,11.258425,29.203613,121.63341,4.6679e-05 1266,1.8314104,225.22133,31.543625,170.61006,2.8485718e-05 1266,585.8762,391.24603,53.049866,105.8544,2.0867485e-05 1266,611.1195,72.49932,28.02716,157.62451,8.699494e-06 1266,49.178997,157.99693,97.769165,207.76457,5.6352947e-06 1266,0.8454273,295.52374,18.618273,131.74277,4.9480564e-06 1266,1.034524,386.21375,18.604057,109.795654,2.974285e-06 1266,3.5435042,396.09958,56.23372,97.37189,4.5378363e-07 1266,1.4164616,9.909043,20.696487,155.47739,4.9475048e-08 1266,366.44687,2.881302,44.698578,59.54592,1.2764485e-09 1266,408.1812,1.2895085,44.68167,60.34053,4.315146e-10 1267,523.311,215.18755,20.636536,48.636185,99.9083 1267,470.97214,213.77402,20.144684,50.89212,98.49727 1267,597.5517,225.43506,24.70398,51.806152,95.5848 1267,499.27417,211.76508,18.055664,46.405457,65.87181 1267,511.45898,213.77544,20.549133,46.736526,64.88747 1267,449.59543,214.26357,20.396149,48.75737,37.875237 1267,585.21704,221.93909,23.317932,52.604736,4.7289944 1267,434.1574,213.12413,23.330353,50.970108,0.6032287 1267,178.09106,213.32578,26.189163,48.61447,0.26782662 1267,570.2716,221.39375,47.02942,91.99074,0.1733112 1267,459.9066,205.26813,20.092682,47.27797,0.092352636 1267,600.0406,374.10052,39.10608,125.78595,0.05348978 1267,22.905735,195.11554,23.307323,45.027466,0.043687314 1267,597.4638,194.5755,38.17218,167.01791,0.008151405 1267,615.4913,220.97461,22.846252,77.84024,0.0016888526 1267,4.724068,190.98866,23.993042,55.32199,0.0012291585 1267,499.7249,167.28096,76.0376,203.16191,0.0005653247 1267,3.0090187,164.46289,36.559544,176.30298,0.0005234333 1267,450.76434,164.21571,75.77063,161.74345,0.00027259765 1267,611.7746,101.93347,27.37207,142.2081,0.00011381037 1267,569.2728,272.42395,69.21991,213.60883,0.00011001402 1267,1.1034172,252.24414,18.71596,141.45813,4.5468016e-05 1267,1.4543759,106.31083,20.37437,154.15009,2.1312651e-05 1267,380.11243,164.01498,88.598145,201.19006,1.769981e-05 1267,601.40497,17.188795,37.28601,148.24796,7.6237234e-06 1267,1.1777726,358.09177,18.446974,129.57782,5.748776e-06 1267,3.478231,395.23227,57.741486,101.309204,1.9007668e-06 1267,474.04236,4.743529,51.127808,61.44848,5.008441e-08 1267,1.045713,10.736719,19.32912,146.37236,5.9943153e-09 1267,354.3231,4.155879,45.255524,58.23972,5.3240266e-09 1267,449.6197,4.8228226,46.53116,62.377136,3.3966052e-09 1267,380.9278,0.39577475,44.14557,58.680138,7.759847e-11 1267,402.23273,0.0,63.36734,62.68045,7.657806e-11 1268,471.25455,212.9787,23.399994,55.42514,99.848595 1268,520.29144,214.42671,21.605347,49.751205,99.555466 1268,503.83966,211.58354,22.194214,49.614883,98.84544 1268,452.2253,213.86884,21.223602,51.715332,95.14385 1268,603.26776,220.0023,28.841064,82.35011,90.78472 1268,333.24686,210.12419,19.477478,45.763077,86.59418 1268,576.70624,227.07101,49.741516,115.55908,0.28620157 1268,13.54624,195.56197,27.78148,55.25992,0.118467025 1268,195.62802,212.97777,24.939774,47.912582,0.012413785 1268,624.0892,224.11044,15.057495,49.43222,0.0039152526 1268,1.8095126,162.78078,22.981918,129.4459,0.0024444626 1268,497.25262,197.17294,44.58673,90.29697,0.0016610504 1268,61.69975,199.77774,28.084766,50.9187,0.001116636 1268,514.61835,280.67786,55.473206,139.1514,0.00071685197 1268,501.0016,163.0398,77.306946,217.98636,0.00060997275 1268,456.31625,190.97885,60.625336,101.21747,0.0005690124 1268,608.5301,435.5399,30.616577,69.53821,8.871911e-05 1268,611.3428,102.04567,27.803894,147.54861,6.1335624e-05 1268,1.1231632,241.7522,28.700386,166.07968,1.5699869e-05 1268,600.93,18.020847,37.624756,141.12709,1.0041017e-05 1268,1.1557626,381.3911,18.918331,115.06879,4.723396e-06 1268,3.59007,396.9276,56.76035,98.78693,9.4210435e-07 1268,354.63693,4.190153,45.728485,57.85701,1.0654843e-08 1268,1.277443,13.058971,19.106438,142.31973,8.462536e-09 1268,469.3206,3.96667,47.8591,60.684162,8.153007e-09 1268,380.18033,0.6392969,45.232452,58.474674,1.8943315e-10 1268,414.13593,0.38436198,44.56778,64.35314,2.1894e-11 1269,515.2833,216.10039,24.10144,53.315994,99.95809 1269,473.9434,215.00566,22.526306,56.646225,99.69505 1269,503.73096,214.18192,21.43695,50.8414,99.18759 1269,599.85187,222.9837,26.405945,68.32269,83.40401 1269,452.08725,217.79672,23.684479,51.80374,77.89685 1269,396.3864,218.87488,21.047699,46.023743,31.408607 1269,576.4671,232.74008,49.021362,103.13345,0.91702294 1269,616.70233,213.21785,20.93042,82.35774,0.012125261 1269,65.75334,209.83083,23.341988,48.036972,0.009483825 1269,513.9354,295.065,46.625732,118.176605,0.0011456654 1269,30.499128,205.40834,25.879557,50.829605,0.0007592779 1269,457.3867,191.58199,60.13968,102.75307,0.0005941468 1269,2.0075862,158.27937,35.167328,86.732605,0.0005382312 1269,586.89026,243.95732,23.148315,46.848648,0.0005331409 1269,494.6962,193.34682,53.03488,103.207016,0.0005111739 1269,490.52716,224.98064,107.1687,243.64552,0.00019456662 1269,600.6575,81.37459,37.5708,216.83159,0.0001857028 1269,1.9245061,188.68234,28.129135,141.46985,0.00013313067 1269,431.80624,145.84726,130.9813,225.6289,6.73071e-05 1269,610.692,10.769395,28.45465,127.93457,3.0614792e-05 1269,612.92303,375.96518,26.223633,124.54306,3.022507e-05 1269,0.93034506,271.15085,19.499212,139.03311,2.9428938e-05 1269,4.3764863,234.82112,55.897133,223.47523,1.7433145e-05 1269,373.2294,172.71104,94.14258,203.40965,1.469577e-05 1269,3.6623487,111.886345,56.98045,216.41916,8.114762e-06 1269,1.141084,357.66855,18.43152,128.90073,3.839904e-06 1269,0.9588607,440.96417,22.01474,62.276764,1.7825427e-06 1269,589.7783,5.355791,46.13318,52.769363,1.5068688e-06 1269,3.4341164,396.89038,56.38578,98.19583,7.093332e-07 1269,502.07684,4.600791,45.934143,60.614525,1.3188841e-07 1269,469.28714,5.286979,48.644196,59.971878,1.5851889e-08 1269,1.2222095,11.869688,18.817013,150.0301,8.658098e-09 1269,360.2999,3.1570768,45.242706,59.24964,8.389059e-09 1269,530.0564,5.500534,45.29071,55.543255,9.139973e-10 1269,407.45868,0.0756543,63.788635,63.139297,1.7705304e-10 1270,512.6036,216.47499,22.505005,51.866104,99.90243 1270,470.62152,213.57735,22.060272,56.893845,98.77751 1270,451.54022,219.66534,21.878601,50.107483,83.66764 1270,598.71124,221.12703,29.322876,65.88164,30.600973 1270,51.90179,211.41383,26.049046,48.75087,6.0136495 1270,495.51178,214.62337,22.31128,52.501602,0.3313153 1270,6.9681315,183.21762,33.995907,80.98636,0.11723907 1270,571.04175,215.34268,61.97522,128.69968,0.021034347 1270,617.1628,213.47528,20.84845,81.38742,0.009451749 1270,81.273964,209.77853,22.36074,48.95627,0.0047271005 1270,578.72565,252.23161,32.597046,70.66609,0.0015167475 1270,1.8021326,156.44398,20.217922,136.66185,0.0009920939 1270,509.40668,283.1818,58.618347,140.36368,0.0008357245 1270,453.38477,173.72313,75.951355,151.18855,0.00026068668 1270,493.79443,189.2082,52.674194,107.533066,0.00024137004 1270,3.925871,119.93215,54.528137,201.84818,6.3658874e-05 1270,611.87573,101.720726,27.270935,144.9226,4.7338497e-05 1270,610.6058,11.341218,28.540894,86.53753,3.0622912e-05 1270,613.0948,376.72552,26.05188,123.25366,2.8564666e-05 1270,1.7589617,225.79927,32.182384,183.89049,2.7655055e-05 1270,418.53085,163.12294,19.60556,46.588257,9.249371e-06 1270,0.95857424,329.4484,19.411215,129.8414,6.09653e-06 1270,0.91567713,421.62552,17.195597,80.522675,2.0086825e-06 1270,3.6180193,345.172,57.614605,139.51746,1.2791314e-06 1270,586.55554,3.8603256,45.080505,46.587376,3.6951505e-07 1270,481.68466,3.9703453,51.47458,61.009155,5.4202932e-08 1270,515.06696,4.686312,46.104492,59.637524,1.04302025e-08 1270,1.2052181,12.6814,18.794615,149.19745,8.145453e-09 1270,359.5301,3.0088706,46.032654,59.6038,5.8525775e-09 1270,456.12122,5.3787045,45.378754,61.02589,1.7635915e-09 1270,407.48227,0.25711262,63.842834,63.289463,1.5484723e-10 1271,510.52948,216.4287,23.759277,52.440536,99.74481 1271,471.24396,213.2532,23.103455,57.881683,99.722244 1271,451.5913,220.82281,19.658295,48.177704,95.64149 1271,433.03723,221.74998,22.276428,46.529068,24.404737 1271,15.487816,190.74902,29.25436,61.215637,13.998994 1271,619.27313,219.1743,19.46045,70.93526,1.2743628 1271,598.2929,219.9923,31.127747,67.40248,0.35227153 1271,491.99658,215.15422,22.557678,52.901627,0.0842862 1271,578.251,254.89462,34.00708,71.12674,0.02369023 1271,51.121643,213.04416,25.978264,48.080536,0.009430124 1271,569.33606,219.62297,61.9151,134.06447,0.007765303 1271,484.29068,133.3384,24.141846,45.767746,0.0022202143 1271,35.928455,204.90787,26.409065,51.24539,0.0015187709 1271,2.6248226,166.30617,29.397806,149.77318,0.0014011244 1271,611.46515,230.79208,27.681519,143.08963,0.0013004425 1271,456.78265,190.29927,59.604004,103.74361,0.00083558424 1271,508.1686,282.29114,59.965485,144.78647,0.000519301 1271,492.65918,171.70596,68.20593,177.20953,0.00045285802 1271,608.69226,435.22656,30.454407,69.977356,7.96672e-05 1271,1.905599,99.15369,19.562872,154.46706,6.67054e-05 1271,7.1768684,153.67833,91.76016,206.62267,5.0665956e-05 1271,611.8873,75.94283,27.259338,130.7927,4.9294806e-05 1271,418.42868,162.7779,20.339203,49.158524,1.8028157e-05 1271,1.2687582,256.6957,19.153202,143.87302,1.3814737e-05 1271,3.6750488,253.31824,57.21729,215.8599,5.9638865e-06 1271,1.1548153,363.90552,18.665592,129.10123,4.022205e-06 1271,583.4997,9.175606,55.287476,130.69449,2.9790656e-06 1271,481.52652,4.5210843,50.39987,59.89648,4.6385665e-08 1271,360.02396,3.2973146,45.4458,58.708775,1.0298429e-08 1271,1.1606445,11.191811,18.904753,152.74908,7.199342e-09 1271,456.00616,5.157513,45.59198,61.602833,2.3465572e-09 1271,407.49045,0.2322168,63.562683,63.115833,1.7958926e-10 1272,471.78955,214.19093,22.647064,56.37947,99.796234 1272,502.33002,214.78539,24.688232,53.135757,99.49914 1272,451.48877,221.97032,20.365082,48.072433,94.38031 1272,54.714638,208.60777,26.238014,52.835007,87.190834 1272,29.741644,201.94525,20.786188,45.975983,84.175095 1272,45.843502,202.56227,20.313847,52.947998,28.511385 1272,432.38507,220.2662,23.776123,47.935364,26.068262 1272,615.22723,223.40959,22.265015,61.441605,6.6123433 1272,600.31146,221.23802,24.536926,61.011124,0.45480064 1272,488.19177,215.76154,21.094269,53.56021,0.09267557 1272,573.3728,218.70871,61.359375,125.686676,0.02366057 1272,456.45435,193.17479,61.04541,101.42479,0.0005763724 1272,2.1213574,162.84602,29.079458,141.90034,0.0005194827 1272,508.21533,282.99533,60.127136,142.8913,0.00050824956 1272,484.2213,168.47792,82.48633,213.36006,0.00016198434 1272,4.1963024,171.69376,55.83645,225.927,7.1252274e-05 1272,608.8702,434.46515,30.27649,70.43579,6.476214e-05 1272,611.9575,76.551254,27.189148,129.30005,5.712285e-05 1272,1.8456999,96.08753,19.47231,145.71027,1.883452e-05 1272,0.8207845,230.62355,20.104462,144.51695,1.5224249e-05 1272,9.1650915,111.76215,132.41281,258.3124,1.445512e-05 1272,1.0675602,323.8201,19.453112,127.590546,6.200384e-06 1272,418.4789,162.39124,19.881775,48.87445,5.7579387e-06 1272,584.0968,11.66183,54.516785,128.6657,3.623792e-06 1272,0.9168213,422.4389,17.4117,79.54465,2.4425142e-06 1272,3.770145,346.77716,57.555286,138.0539,1.2195828e-06 1272,481.40167,3.8384507,51.693787,61.05431,5.5607508e-08 1272,360.17783,3.2860093,45.523865,59.465214,1.3754403e-08 1272,515.5766,4.908877,45.88562,59.454494,9.98594e-09 1272,1.2150855,12.178151,19.25927,151.28421,8.289459e-09 1272,455.8963,5.0586457,46.03073,61.92353,3.102878e-09 1272,407.5715,0.13020834,63.933105,62.684067,1.7331286e-10 1273,500.1171,214.20645,25.883759,53.57187,99.87503 1273,472.6387,215.43695,21.940735,48.8649,89.52577 1273,51.75777,209.64499,26.26598,53.441742,87.36746 1273,44.64088,204.78314,19.150131,45.51851,10.397583 1273,452.04642,214.5371,24.583588,49.761246,6.631005 1273,605.11816,228.04573,29.662415,70.04637,1.3857822 1273,626.139,245.98746,13.00769,45.36978,0.15022275 1273,393.39114,198.73029,25.183624,47.33354,0.09178856 1273,67.45948,212.10078,18.591957,45.673904,0.020160263 1273,586.5255,253.10458,22.584473,53.708435,0.007854343 1273,577.7162,230.77766,45.37207,100.51512,0.0041076597 1273,2.3355682,150.57909,31.550137,144.77464,0.0019449577 1273,436.83725,215.53273,22.07016,46.68297,0.0017525541 1273,486.86414,186.15428,56.38562,109.75362,0.00066602055 1273,465.00183,200.95988,43.92746,93.64009,0.0006625439 1273,514.7154,293.61066,49.44214,122.62549,0.0006320973 1273,486.7373,226.70311,111.58667,243.32555,0.00012839303 1273,445.09027,175.36899,89.18408,193.07648,0.00010624352 1273,3.4133968,167.46338,54.962013,243.52652,9.314732e-05 1273,611.9485,76.69396,27.198181,128.83817,6.5142594e-05 1273,294.89508,204.04544,33.66516,67.24353,4.888983e-05 1273,613.0663,376.25363,26.080383,123.83731,2.557967e-05 1273,9.698337,118.15469,133.0877,259.4176,9.617109e-06 1273,1.086141,323.263,19.28642,129.08258,6.836573e-06 1273,0.99404055,262.14337,21.338224,109.07388,4.151973e-06 1273,583.90125,12.082715,54.706665,128.12367,2.6276525e-06 1273,589.9598,6.9124365,45.940796,50.27936,1.4627265e-06 1273,3.715119,346.45502,57.399193,138.08734,1.3224668e-06 1273,1.6605062,418.38895,34.71097,80.99884,1.0422178e-06 1273,502.13458,3.7564876,45.967407,61.080204,1.483031e-07 1273,469.1223,5.059974,48.864685,59.71116,9.300803e-09 1273,1.2341276,13.463959,18.782948,148.33615,8.8599705e-09 1273,359.9287,3.251709,45.55423,59.435658,8.636887e-09 1273,407.80112,0.1120638,63.730133,63.28735,2.2834708e-10 1274,50.758797,206.8402,24.562653,55.01259,99.45707 1274,593.00775,219.04839,35.654358,89.74419,95.63049 1274,454.52628,212.62602,22.313416,51.3452,38.26907 1274,67.19904,207.46542,20.029182,51.043427,8.222429 1274,469.7914,211.28731,22.567352,49.830124,8.040198 1274,435.31436,219.66394,21.92862,49.448273,3.2842371 1274,613.5358,221.33331,23.239502,61.72525,1.5152189 1274,499.362,213.80914,23.071533,47.316803,0.039418217 1274,586.22125,210.9912,27.386292,57.6671,0.020426508 1274,571.3011,165.76216,63.554504,213.62383,0.0015087032 1274,574.4261,211.91777,23.56012,45.91838,0.0013296341 1274,1.6918588,154.70842,35.54176,88.57309,0.0013111344 1274,514.4956,292.19064,49.631836,124.72421,0.0006937985 1274,35.202652,172.50682,61.059692,114.57875,0.0003011409 1274,2.9913266,164.75537,54.622765,254.09659,0.00016015185 1274,1.3084319,182.92088,20.564775,148.57661,6.760011e-05 1274,611.8141,66.28359,27.33258,132.49817,5.944495e-05 1274,493.102,238.29092,105.40234,232.47742,4.80058e-05 1274,374.25763,167.5354,91.876495,199.10217,3.4260014e-05 1274,613.11633,376.9882,26.030334,123.10361,2.7389175e-05 1274,478.93286,127.0135,37.67798,81.264015,1.752175e-05 1274,8.689779,110.925995,137.22672,266.92358,9.909924e-06 1274,418.22583,162.5106,20.080963,49.624863,7.3047795e-06 1274,1.1279769,323.61325,19.204462,128.37952,6.8726054e-06 1274,583.8006,10.325625,54.967407,130.07373,3.4703212e-06 1274,0.9323959,422.4357,17.483805,80.13837,2.2683428e-06 1274,3.8511035,348.31033,57.66603,136.6175,1.3387296e-06 1274,494.72906,3.2593296,47.218994,62.60209,3.598863e-07 1274,359.99344,3.3875065,45.64731,58.71666,6.3212204e-09 1274,456.10687,5.2920346,45.947296,61.81793,3.8606442e-09 1274,1.6704297,7.0709734,35.676025,90.667595,9.90588e-10 1274,407.53604,0.28240886,64.05356,63.608307,1.621164e-10 1275,498.38318,214.38982,25.64618,56.365036,99.94411 1275,474.976,214.96536,22.715149,55.72992,99.552635 1275,52.281246,207.36502,26.432293,55.329224,98.86769 1275,512.78577,215.4239,22.374817,49.167496,97.842995 1275,399.0932,217.31306,20.466736,46.88777,93.6903 1275,454.4423,214.88142,26.506317,53.041245,66.31596 1275,588.4639,209.51764,41.623108,101.54169,42.288486 1275,78.93746,206.19711,19.844322,48.96945,1.7946955 1275,432.6655,222.5042,19.871399,45.521072,1.1600959 1275,594.2397,210.1128,23.606384,48.655487,0.08440655 1275,612.20483,240.81578,22.265625,48.334488,0.066672996 1275,2.0429485,160.05101,35.64903,86.845474,0.0056387265 1275,481.48224,193.411,61.815063,100.25609,0.00075613824 1275,609.80005,231.80612,29.139526,141.57455,0.0005712401 1275,508.78647,282.55795,59.259186,142.59583,0.0004889496 1275,455.6673,152.0853,129.63916,228.31381,0.00013684128 1275,291.85208,206.74034,25.128967,52.96193,7.955043e-05 1275,611.66974,100.6099,27.476929,142.07117,7.112586e-05 1275,1.3252068,181.99454,20.586826,149.57571,4.782868e-05 1275,422.2986,163.45578,19.77008,45.24855,3.783582e-05 1275,3.3651416,113.63056,56.16909,201.37274,3.218909e-05 1275,612.8453,374.94083,26.301392,125.45773,2.6895405e-05 1275,23.157742,154.31548,85.576935,186.59676,2.2323457e-05 1275,1.0756372,316.98422,19.612696,128.62302,6.905968e-06 1275,601.03674,17.018522,37.665955,142.56439,5.5403243e-06 1275,4.165124,227.27147,55.89208,235.60152,4.9648274e-06 1275,1.6826172,417.68896,35.06345,82.03345,1.3330273e-06 1275,589.59503,5.639676,46.365112,53.358784,1.2586183e-06 1275,481.45547,3.688379,51.21878,61.979584,4.9100517e-08 1275,360.09247,3.7130501,45.318634,58.397476,6.822235e-09 1275,456.12027,5.1426077,45.87085,61.547302,2.5348728e-09 1275,1.7935742,7.0924706,36.085323,91.17439,1.3119881e-09 1275,522.565,4.7208757,46.22522,59.55547,1.075189e-09 1275,407.57785,0.0,63.83899,63.396317,1.7661188e-10 1276,545.214,217.36171,25.268494,54.23375,99.952126 1276,500.32413,211.65927,24.746124,55.99408,99.89435 1276,51.78587,209.29279,28.636883,53.79245,99.75931 1276,477.88818,215.55629,19.620361,53.333725,98.296 1276,514.75055,214.61407,20.27295,49.959595,97.77749 1276,449.8632,218.75754,21.026306,48.66986,56.53697 1276,561.866,219.0734,23.587463,45.67621,8.678292 1276,434.24466,221.57594,22.32019,46.146805,3.412335 1276,608.1744,223.84792,27.760254,65.32466,1.5428042 1276,75.936516,207.49037,20.469421,46.377502,0.20780654 1276,624.4406,220.68279,14.706055,45.66652,0.03303416 1276,571.45807,213.07402,63.80786,126.726456,0.015318931 1276,5.6175995,163.1814,35.265617,90.39017,0.0047879852 1276,578.37805,255.43925,31.761353,68.22136,0.0030200572 1276,490.98428,155.66537,135.03043,242.40433,0.0010324939 1276,483.26938,189.09311,59.941803,104.90662,0.0007705428 1276,34.36816,177.11842,61.726513,109.298386,0.00040688209 1276,516.1177,294.41724,47.73236,122.77817,0.00033984816 1276,533.4225,216.10425,23.502869,48.436462,0.00020408067 1276,3.4962566,163.82341,54.387592,240.598,0.00013398021 1276,1.315254,182.85571,20.772001,148.41678,5.4400436e-05 1276,611.9307,101.03644,27.215942,145.54036,5.3938653e-05 1276,612.7943,376.04834,26.352356,123.32062,3.07579e-05 1276,1.9698365,95.679115,19.381317,141.13715,2.6473583e-05 1276,376.70474,167.30904,89.81683,203.03508,2.5565427e-05 1276,418.38245,163.25139,20.281738,48.85086,1.6013306e-05 1276,9.73601,123.78897,136.0371,260.8692,1.0322888e-05 1276,601.4798,19.99806,37.12555,139.84265,9.914614e-06 1276,1.0343034,316.63205,19.570774,128.97488,7.87203e-06 1276,3.6840968,347.83334,57.697433,136.49976,1.3836908e-06 1276,1.6962516,417.9263,34.70209,81.31033,1.0592848e-06 1276,589.62054,6.3953648,46.80304,52.87314,1.0307714e-06 1276,481.64944,3.9855633,51.363068,61.09379,3.3305298e-08 1276,360.2331,3.2157717,45.595642,59.08581,8.452195e-09 1276,1.8346599,6.758783,36.055164,91.78011,1.5330972e-09 1276,456.23215,5.3468847,44.973022,60.401733,1.2390939e-09 1276,407.54797,0.5035514,63.97116,63.81941,1.6046622e-10 1277,500.98584,211.74724,24.28888,55.99626,99.86638 1277,540.3654,218.62668,20.70697,51.36856,99.851135 1277,470.52954,213.21777,22.633118,56.18103,99.688736 1277,50.179714,208.7227,27.215473,53.650833,99.52914 1277,515.1528,214.45676,20.277405,50.325043,96.1851 1277,445.46408,221.11497,21.141876,47.913162,94.348236 1277,611.4936,222.64612,25.308899,66.21356,2.5862188 1277,66.38267,207.58855,22.658813,50.583755,0.5887157 1277,598.98267,220.6463,24.83435,57.894745,0.16948292 1277,79.98922,207.85715,20.615196,45.53572,0.046647083 1277,574.1693,215.4923,60.870728,123.74196,0.020196164 1277,578.1905,255.18274,31.772888,69.088135,0.0068556243 1277,2.439541,150.29803,36.841087,100.890045,0.0037556132 1277,487.43658,165.64629,80.3772,206.42506,0.00067899795 1277,34.248444,174.75235,62.046936,111.47,0.000353865 1277,509.96768,281.24033,58.24759,145.45596,0.00035196546 1277,526.3012,195.87668,57.20923,101.223816,0.00020620965 1277,1.3096403,181.44121,20.641176,150.1829,7.849718e-05 1277,423.07968,173.61452,92.48691,188.15694,7.326281e-05 1277,3.1563315,167.60594,55.09073,256.32904,7.316311e-05 1277,611.71686,75.57901,27.42981,131.69048,5.6166544e-05 1277,612.87915,376.55197,26.267517,123.34381,2.60318e-05 1277,9.101422,114.55503,136.27515,261.6674,1.1819086e-05 1277,0.9932577,274.229,19.491142,133.91647,8.00894e-06 1277,1.1827897,350.81693,18.633295,129.69977,4.73032e-06 1277,583.789,10.7128,54.98224,129.4821,2.813731e-06 1277,3.7446404,347.70303,57.65782,137.84683,1.4014093e-06 1277,1.7595459,418.64038,34.869225,81.14224,1.025774e-06 1277,481.5389,4.442119,50.668182,59.9764,3.7206085e-08 1277,360.08725,3.38014,45.377228,59.014656,7.670475e-09 1277,455.94617,5.284401,45.903534,61.30709,2.0163102e-09 1277,1.6906087,6.6329007,35.71396,91.23098,1.1967612e-09 1277,407.45483,0.1905664,63.66278,62.741558,1.9996034e-10 1277,384.36942,0.0,45.3349,52.583683,8.7455904e-11 1278,531.9843,212.21297,23.323547,54.311813,99.8359 1278,501.91376,212.49467,23.721619,56.256638,99.74371 1278,53.83849,209.05438,25.59827,53.74951,99.61254 1278,481.20038,221.15714,16.796448,48.40619,99.068954 1278,444.90338,220.56021,21.342682,48.986664,92.74179 1278,431.9576,216.71387,22.62204,50.613586,60.003357 1278,517.9439,214.83894,15.86084,50.57756,6.2647605 1278,618.46796,221.17577,19.723877,67.87633,1.9819757 1278,489.98605,215.62297,22.516754,55.16237,0.66058856 1278,595.55176,217.87183,31.231323,64.032196,0.33026215 1278,578.36523,253.87944,32.58783,71.05861,0.017873475 1278,569.79614,217.14308,61.487915,133.50551,0.007859497 1278,2.293229,150.46072,36.702885,100.00392,0.007297337 1278,611.3539,229.3084,27.641235,141.36156,0.0019872973 1278,483.26273,191.39229,62.496185,101.87712,0.0016634689 1278,508.65234,280.97476,59.37207,144.0466,0.0005748782 1278,511.90298,175.17216,79.998566,204.54152,0.00042910024 1278,33.164043,172.44609,60.07819,116.892136,0.00023504904 1278,432.46182,146.32857,132.53928,206.76225,0.00011033786 1278,1.3447388,179.96492,20.994797,151.29979,9.0383124e-05 1278,612.1453,77.662094,27.001343,128.78653,6.868235e-05 1278,608.8494,434.40356,30.297241,70.58063,6.1656545e-05 1278,9.771738,112.89383,139.84251,266.2613,1.0506449e-05 1278,4.2438836,223.31558,55.89928,238.50598,7.321685e-06 1278,1.057216,281.0382,19.532734,132.24985,6.498145e-06 1278,1.1404134,386.94482,19.113287,110.67432,3.979995e-06 1278,583.7197,10.194388,55.053223,131.17056,2.3612376e-06 1278,3.4749122,396.50333,55.61944,97.86252,6.8662604e-07 1278,481.53693,3.7255697,51.62024,61.336365,4.0216637e-08 1278,360.01465,3.263213,45.272186,59.230824,7.188255e-09 1278,456.1681,5.2275686,45.595398,60.507057,1.2564816e-09 1278,1.7282389,7.974082,35.55755,89.36997,1.1383411e-09 1278,407.36594,0.22060221,63.960693,62.652485,1.4762246e-10 1278,384.38885,0.0,45.480682,52.288002,6.294204e-11 1279,524.3214,211.61662,23.890503,51.806107,99.95911 1279,52.032093,210.65208,27.491459,51.697037,99.53478 1279,472.3514,218.53735,21.034424,51.238495,99.05477 1279,506.85132,213.97696,19.39038,52.755768,98.853424 1279,490.68497,220.11508,19.75003,49.67401,98.18543 1279,441.96152,217.79074,23.617188,51.22357,94.36458 1279,43.46693,206.204,20.235039,48.5688,3.475955 1279,623.83417,232.40945,15.04718,51.4765,1.223331 1279,604.99207,222.04808,28.76233,68.43553,0.3766351 1279,577.94916,255.28084,33.78717,71.93132,0.03044153 1279,77.963905,210.34792,20.788834,45.49608,0.024576003 1279,569.14886,220.0511,61.99878,134.7213,0.00626714 1279,594.5519,213.38084,24.734741,51.262344,0.0034569148 1279,484.39902,189.3462,60.122284,104.880936,0.0021345378 1279,501.8988,170.09102,77.65393,213.45796,0.0015364449 1279,2.2269475,152.67473,31.110718,142.59242,0.0015215965 1279,515.4055,293.7234,48.426514,121.78317,0.00039792244 1279,31.043322,175.34018,63.88955,114.46982,0.00016238491 1279,419.38562,160.7444,24.537048,57.903107,0.000119732445 1279,419.56168,168.58183,88.36145,192.70207,0.000112511916 1279,3.8437874,170.77808,55.48114,227.73715,7.917231e-05 1279,608.90546,434.75763,30.24121,69.4303,5.6176832e-05 1279,611.69794,66.896645,27.44873,131.79898,5.0696788e-05 1279,0.90555423,229.73584,20.107393,146.74829,1.2709242e-05 1279,8.453956,115.22146,140.21222,262.84225,8.034123e-06 1279,584.2148,12.996628,54.389404,125.77522,4.5619645e-06 1279,1.4149699,305.01624,28.511965,139.54337,4.076111e-06 1279,3.7519174,346.31955,57.45196,138.25076,1.3958659e-06 1279,590.1342,6.462075,45.75592,51.637554,1.2697412e-06 1279,1.8083447,418.46478,34.58872,80.51413,9.476497e-07 1279,481.63782,4.546231,50.86841,59.541294,4.7399613e-08 1279,360.28287,3.2294207,45.479126,59.10425,1.6122478e-08 1279,515.4826,4.945423,45.72046,59.841946,8.697955e-09 1279,1.20969,12.933842,18.977781,149.63362,7.0200783e-09 1279,456.1112,5.1955924,45.69751,61.48879,2.5762896e-09 1279,407.42535,0.088538416,64.022156,62.88814,1.4141122e-10 1279,383.70157,0.0,45.857452,52.065163,6.79856e-11 1280,503.35788,212.97047,24.15268,59.725845,99.91697 1280,51.386177,209.80513,26.99813,53.030807,99.7583 1280,471.3833,213.02689,22.501282,57.641235,99.70661 1280,442.49167,218.15259,23.339813,50.962006,96.74267 1280,25.893585,204.41489,26.36956,46.05916,94.199776 1280,597.7253,224.70496,30.710022,69.37097,2.4706032 1280,618.7792,222.68466,19.48706,71.76041,0.7982815 1280,78.76391,208.4984,20.350037,45.972046,0.081982814 1280,578.01074,255.24834,33.49176,70.482864,0.026884736 1280,562.6128,214.86188,70.9845,155.70505,0.0044575906 1280,484.90924,198.53244,60.38153,94.533325,0.0033543522 1280,514.63336,296.35083,45.411987,116.18057,0.0007480769 1280,2.3194401,149.9935,35.585236,156.3518,0.00048001407 1280,486.16125,224.69972,111.778076,245.57939,0.00022540857 1280,30.294134,180.53345,65.13663,110.0892,0.0002120345 1280,419.0997,171.57861,88.00198,187.85373,0.00014826648 1280,611.5721,106.11324,27.574585,152.5438,4.8987145e-05 1280,7.460205,135.76352,137.07742,252.78915,3.597616e-05 1280,422.38824,163.8956,19.894989,45.56511,2.96334e-05 1280,612.88165,375.88162,26.265015,124.35245,2.8992199e-05 1280,4.83875,219.24579,55.248642,238.4708,1.8432745e-05 1280,1.6090202,95.10045,19.9502,148.23235,1.8024582e-05 1280,0.80501384,227.82542,20.16545,148.16292,1.6882512e-05 1280,601.6515,20.868288,36.913513,145.47331,7.1405743e-06 1280,1.0531169,316.47656,19.499199,129.19635,6.5379404e-06 1280,589.94324,6.0858645,45.95227,51.289455,1.7761386e-06 1280,6.2594075,359.325,77.988655,127.67032,1.116536e-06 1280,1.8198617,418.75928,34.70762,80.5748,7.7837e-07 1280,481.21017,4.1725197,51.11801,60.550724,4.1139103e-08 1280,360.13586,3.2134604,45.769592,58.647778,1.0708304e-08 1280,456.03903,5.097793,46.2305,60.7192,1.9944622e-09 1280,1.6315218,7.1752152,35.638035,89.94046,1.0341275e-09 1280,396.4503,0.0,64.04129,62.147644,6.7432865e-11 1281,523.5272,221.65182,24.01007,51.032043,99.92698 1281,50.47448,209.37805,28.28434,53.926422,99.75952 1281,473.07538,213.99905,20.943787,56.07617,99.75748 1281,594.269,223.72763,33.79132,79.8613,99.28525 1281,499.96188,216.89618,21.249054,53.872253,98.385086 1281,442.6465,218.4725,23.078705,50.57248,95.129555 1281,11.150672,201.49661,30.79041,48.753235,93.860756 1281,613.2731,225.6985,25.446411,64.72008,1.0871842 1281,563.9851,223.50142,53.350708,133.4756,0.006007388 1281,2.2384667,152.59683,32.29477,136.7316,0.004986448 1281,498.84964,226.30386,74.33365,217.9902,0.00088719034 1281,459.8649,192.02753,57.05887,102.22305,0.00068883924 1281,505.99298,196.72264,57.479736,104.50215,0.00035014088 1281,34.157623,177.40115,60.8981,110.08087,0.00028824407 1281,418.71954,172.87018,88.79938,190.2731,0.00011584234 1281,422.41138,163.6463,19.736542,45.791306,6.815494e-05 1281,611.7057,75.60907,27.440979,131.38458,4.8457583e-05 1281,10.954216,129.51282,134.38794,255.05624,2.2150747e-05 1281,586.1091,396.65402,52.58429,96.79431,1.5193443e-05 1281,1.0766724,316.87036,19.74445,128.21762,7.958172e-06 1281,584.049,12.792461,54.57843,125.69002,3.7204704e-06 1281,1.731172,417.89313,34.683746,81.42328,9.663312e-07 1281,359.96097,3.7599382,45.490997,58.05315,4.1223287e-09 1281,469.12366,5.203141,48.55829,58.764725,4.0368553e-09 1281,1.7273585,6.778516,35.762283,89.658646,7.6099654e-10 1281,396.58344,0.0,63.77841,61.960835,4.320373e-11 1282,50.622536,209.37091,28.102364,53.414886,99.65689 1282,591.8505,223.25409,32.885376,79.6958,92.999626 1282,616.1952,226.45938,22.951477,63.716248,18.529022 1282,588.1512,218.48964,22.659485,47.38414,2.3522856 1282,78.06336,207.48686,20.78627,45.808746,1.3268747 1282,11.808956,201.61224,25.547993,49.447525,0.48566392 1282,437.8173,214.46867,30.804138,53.51042,0.16738382 1282,565.9914,207.20792,69.130554,148.96954,0.015722563 1282,2.2585368,153.18974,31.569225,137.9717,0.006969981 1282,508.89392,271.2538,59.76465,154.2478,0.00083069154 1282,32.521942,181.36836,64.66339,107.3723,0.00016469817 1282,3.1485124,166.9073,53.740334,234.56761,0.00016078172 1282,611.49286,73.031296,27.653809,131.83902,3.854198e-05 1282,422.3194,163.52092,19.930573,45.269775,3.3231983e-05 1282,612.9289,376.43002,26.217773,122.9288,2.889454e-05 1282,10.855694,129.46722,134.5393,253.27414,2.01803e-05 1282,376.51514,170.49454,87.389465,195.66635,1.6833606e-05 1282,1.0208919,316.81958,19.803871,127.94116,7.426241e-06 1282,584.1889,12.477969,54.56311,126.21091,2.7141882e-06 1282,3.7250392,346.4602,57.718216,138.22882,1.4717265e-06 1282,590.17554,6.254681,46.00006,51.168407,1.2681899e-06 1282,1.809502,417.94794,34.760574,81.86313,8.809276e-07 1282,481.4822,3.754935,50.713226,60.594437,3.3230293e-08 1282,1.1932585,12.795,18.655201,141.7737,6.6491403e-09 1282,359.69183,3.847067,45.59915,57.09486,2.2823268e-09 1282,456.01767,5.04515,45.71051,61.305443,1.3959356e-09 1282,407.44055,0.40299806,64.10416,61.724514,1.0445403e-10 1283,554.10144,221.84912,23.491577,51.50232,99.969986 1283,470.98703,212.58546,22.915283,57.876328,99.82774 1283,500.06357,213.94537,24.35727,54.43747,99.80185 1283,51.137375,209.67555,27.19783,53.069534,99.4866 1283,442.61362,216.80118,23.810303,53.075348,96.03164 1283,514.0198,216.55943,19.519714,47.041855,94.148384 1283,594.54974,219.62625,29.968323,73.08496,81.694534 1283,76.81187,207.48627,21.005241,47.353897,4.598257 1283,616.12244,228.51935,23.024231,62.48059,3.3747919 1283,428.58276,219.15846,20.115051,45.243332,0.13992691 1283,4.394827,204.32213,22.236954,47.333496,0.09395173 1283,565.7343,208.66539,69.54584,139.99083,0.008525695 1283,1.8310417,148.4343,35.61829,107.07292,0.004046132 1283,482.9579,190.71765,59.478455,103.19104,0.001545621 1283,497.1978,225.74834,81.47662,221.59044,0.00026207484 1283,33.79878,180.24701,63.37981,106.49893,0.00023890178 1283,1.3675065,187.2431,20.566658,143.75296,0.00014874348 1283,420.56888,172.84276,89.54364,188.72362,0.00011416978 1283,608.9043,434.24435,30.24237,70.43463,6.590336e-05 1283,611.7971,73.406525,27.349548,131.14195,3.5769594e-05 1283,10.53224,124.80757,135.93288,260.32617,1.6171916e-05 1283,0.9706128,272.52887,19.571142,136.19092,9.071942e-06 1283,1.1573048,363.64066,18.765703,129.90671,4.592048e-06 1283,584.2273,12.573503,54.302124,125.21092,3.45695e-06 1283,590.1553,6.7584004,45.90149,50.25576,1.1563837e-06 1283,3.4628842,396.02332,55.798767,98.19769,8.2745225e-07 1283,481.762,3.8469987,50.40103,60.1058,1.3277984e-08 1283,360.32764,3.8184311,45.096893,56.62537,2.4720377e-09 1283,1.6940267,7.0817614,35.564255,90.05527,8.389983e-10 1283,456.09116,5.1168847,45.70511,60.94749,8.0512275e-10 1283,396.62445,0.0,63.725677,61.928986,6.7225336e-11 1284,572.6132,221.00659,24.492432,50.753754,99.90792 1284,500.66495,216.2503,23.172882,52.54666,99.905815 1284,471.8158,213.05855,22.67746,57.780502,99.85042 1284,444.6533,218.06815,20.195068,49.42163,95.63925 1284,399.0971,220.70927,19.859497,45.337906,88.674995 1284,598.6522,228.27156,25.530762,58.442276,87.11029 1284,513.41254,216.24812,21.550354,46.7545,68.49977 1284,613.71136,230.47423,24.30365,59.880203,1.2776275 1284,430.0474,217.53665,19.693756,46.32498,1.0710428 1284,584.2049,215.06172,50.913147,101.57869,0.22715923 1284,564.4295,208.08267,42.29718,120.590546,0.007036926 1284,415.99796,214.33401,20.077301,47.17929,0.002534555 1284,482.00528,193.01845,60.90091,100.391495,0.0017079716 1284,514.54254,294.47736,49.51013,121.33316,0.0004259973 1284,485.356,134.75702,23.039764,45.63553,0.00038969266 1284,1.7122372,156.96117,19.130342,123.928085,0.00029307095 1284,489.8539,219.59595,108.77896,256.04282,0.00019517951 1284,419.24982,161.22131,25.06842,58.458923,0.0001689177 1284,419.34015,173.52461,90.160706,185.81468,0.00010883898 1284,611.80054,66.441925,27.34613,130.67636,6.405398e-05 1284,612.9004,376.7095,26.246277,122.982025,2.7526281e-05 1284,0.8795956,247.9611,19.299566,140.58656,6.242605e-06 1284,1.1051693,329.58932,19.18937,129.03073,5.541328e-06 1284,584.10815,11.238223,54.66693,127.329605,4.1221224e-06 1284,3.8184278,95.02419,57.025543,209.9296,2.9235189e-06 1284,3.957544,258.01212,56.950706,212.53305,2.8113543e-06 1284,1.8809376,418.5474,34.62288,80.71063,8.5866986e-07 1284,481.482,3.5148308,51.184875,60.725105,1.8754161e-08 1284,1.195577,12.696218,18.987404,149.36192,6.860547e-09 1284,360.3412,3.5841799,45.604095,58.06163,4.9938054e-09 1284,456.1196,4.8752184,45.664062,61.29369,9.465121e-10 1284,396.2646,0.0,64.028534,61.870495,4.5672813e-11 1285,52.050365,210.10101,25.865871,52.48874,98.96142 1285,397.7095,218.42741,21.239685,48.041885,93.530174 1285,597.591,215.91443,28.526001,73.38629,89.287155 1285,436.27982,217.65208,22.400604,48.26561,81.78737 1285,583.1413,212.80858,28.942444,61.936813,1.9879878 1285,613.51,225.32193,25.017029,67.930115,1.5596446 1285,69.571014,211.07277,17.745544,47.28572,0.37176162 1285,419.94028,213.10846,22.053162,51.55249,0.16042541 1285,80.021965,209.0532,20.676132,45.9207,0.0622412 1285,3.1952167,170.04547,40.191177,104.778534,0.013680435 1285,584.8035,175.72118,50.654785,176.24675,0.008461459 1285,510.05923,274.06345,58.151825,151.41068,0.00040991613 1285,35.040226,174.62611,61.00703,111.53557,0.00023952138 1285,617.4867,92.57365,21.659973,72.39156,0.00015752374 1285,561.3192,221.86087,49.463196,148.26263,0.00010567461 1285,610.4536,14.644922,28.693054,121.88151,7.407927e-05 1285,1.927946,96.440834,19.639904,142.08853,4.5731944e-05 1285,375.52402,172.01733,88.74579,195.09396,3.826984e-05 1285,610.80084,102.15247,28.345825,164.21414,3.8003323e-05 1285,612.85126,375.49408,26.29541,124.616394,2.9463254e-05 1285,1.1790031,194.04669,20.626514,150.50128,2.7124916e-05 1285,422.45648,163.75583,19.826874,45.54631,1.631065e-05 1285,8.803659,117.08477,137.33037,258.99173,1.3458576e-05 1285,1.0669987,316.9577,19.75189,128.01315,7.989243e-06 1285,4.259665,212.19731,55.28855,243.53026,7.819147e-06 1285,1.4167432,392.38083,27.479496,105.24481,2.4937406e-06 1285,6.0910254,358.82846,78.17535,127.76785,1.3701002e-06 1285,481.7473,4.064925,50.039307,59.11484,1.3747374e-08 1285,1.2354256,13.024135,19.00725,148.52734,8.310419e-09 1285,354.62823,4.669818,45.405212,56.153927,1.9384676e-09 1285,456.10132,5.521322,45.667694,59.74229,9.222524e-10 1285,380.99408,0.796556,44.272644,58.486847,7.62196e-11 1285,407.19794,0.30517903,64.34531,61.092777,6.87213e-11 1286,472.5663,212.34743,22.558014,58.799484,99.83666 1286,500.61844,213.78917,23.922882,54.09825,99.801865 1286,51.795933,209.11739,27.254871,54.34114,99.53908 1286,444.4357,217.80386,21.405396,49.756836,95.954025 1286,398.70496,219.43459,20.004578,48.334854,75.941025 1286,599.5723,224.52461,27.42511,70.24153,71.19798 1286,430.118,217.87476,20.346283,46.733337,56.757973 1286,69.77865,208.02475,18.18895,45.592865,4.8224287 1286,613.8871,226.65594,21.805542,51.307068,1.361931 1286,590.1311,219.1443,23.039917,49.321213,0.16905642 1286,610.1829,220.09607,28.892212,147.10165,0.011852695 1286,577.3722,213.94899,49.669983,132.91908,0.008868866 1286,3.9320297,161.6271,36.818592,90.66438,0.0031063794 1286,483.46417,190.07521,59.973083,102.68141,0.0015504309 1286,34.81853,175.8657,62.5146,111.209366,0.00050883443 1286,515.40295,294.34674,48.67389,121.14206,0.00041297427 1286,186.83101,217.08684,19.234924,45.154556,0.00017934783 1286,422.54428,166.06625,86.789154,192.12851,0.00014870532 1286,486.82797,226.26245,111.20328,247.35464,0.0001241923 1286,419.45462,161.09882,24.567413,56.89914,0.00010477708 1286,3.363055,168.54706,54.81401,252.06879,7.2450435e-05 1286,610.402,13.27183,28.74469,123.379555,6.362598e-05 1286,1.3526441,183.56662,20.73582,146.98505,5.1679144e-05 1286,612.99524,376.48663,26.151428,123.088806,2.8103526e-05 1286,1.8608447,96.201965,19.589527,142.99898,2.633589e-05 1286,610.9222,97.574844,28.224487,164.04146,1.4097744e-05 1286,9.46347,114.84784,135.7545,263.8476,9.763694e-06 1286,1.0848722,323.38773,19.551556,128.03,8.264621e-06 1286,3.6996665,348.5821,57.566822,136.36725,1.5135372e-06 1286,1.7838672,417.91245,34.76148,81.152985,1.2149718e-06 1286,589.9091,6.1484866,46.221985,51.595955,1.095168e-06 1286,469.08273,4.970967,48.832977,59.42232,8.13952e-09 1286,360.0797,3.573952,45.97049,58.294994,7.0984414e-09 1286,1.7161019,7.4385386,35.56354,88.64258,9.101129e-10 1286,442.47986,3.4160938,45.650116,61.84893,7.105505e-11 1286,396.35065,0.0,64.09091,62.539684,6.765652e-11 1287,474.59918,212.98918,22.152222,58.70726,99.88212 1287,499.88193,217.16528,23.733246,52.10501,99.8819 1287,51.10909,208.52336,27.933628,54.863937,99.26878 1287,397.67587,219.94836,21.56076,47.048615,96.88538 1287,444.82022,218.39088,20.421234,48.4933,86.69603 1287,513.6192,216.45946,21.373535,46.45198,72.324394 1287,591.04205,210.9806,34.98468,84.69478,32.28186 1287,611.58,225.77219,25.28424,64.47781,1.1846985 1287,625.14343,247.38303,14.003235,46.556915,0.036343966 1287,601.4096,140.344,35.008972,183.39737,0.005614239 1287,482.37198,192.48041,60.416046,101.388306,0.001796888 1287,508.2384,284.56015,59.732544,141.26434,0.00036939868 1287,548.157,145.2413,87.2298,241.62863,0.00025280117 1287,2.2262728,154.50354,30.276218,148.90555,0.00017217311 1287,419.4964,161.82927,24.469238,56.310455,0.00010681478 1287,452.34534,152.90166,130.03522,227.74287,8.674258e-05 1287,610.31067,11.883672,28.835999,122.87083,4.9720205e-05 1287,374.34775,169.55162,88.42789,194.47511,4.5710403e-05 1287,612.8611,375.82672,26.285583,123.86084,2.781147e-05 1287,24.018826,157.6035,83.209656,180.41423,2.2653558e-05 1287,0.9754045,246.15845,20.037262,141.01038,1.9724783e-05 1287,3.5642774,191.50177,55.70463,250.00388,1.8542449e-05 1287,1.1896721,350.61868,18.513924,129.81238,4.150579e-06 1287,6.2449026,359.29846,78.18856,127.70206,1.1217423e-06 1287,1.8582097,418.35443,34.76518,80.903015,1.097485e-06 1287,1.5037085,29.795652,33.64519,211.68045,1.7095257e-07 1287,481.76044,4.0909276,49.946045,58.45496,9.8795825e-09 1287,359.78827,3.3370867,45.848236,57.8424,1.665403e-09 1287,1.7978972,7.473363,35.52946,88.65489,9.80505e-10 1287,456.0911,5.3180895,45.48471,59.844906,6.7248973e-10 1287,396.30798,0.0,63.91385,61.80895,3.8319337e-11 1288,471.59985,210.1081,24.53714,62.009064,99.89919 1288,501.93646,213.4994,23.916992,54.849014,99.8657 1288,50.344963,208.82634,24.7566,55.450058,98.87074 1288,441.5868,214.10852,23.688232,54.649017,93.24858 1288,423.41113,212.81006,23.532928,51.6882,85.305565 1288,607.55133,234.87881,26.373535,53.660004,72.17375 1288,397.26343,218.5772,21.275269,48.6902,68.57312 1288,515.70593,216.28772,20.0943,49.480164,17.695845 1288,588.741,214.83061,35.933655,80.14525,13.120833 1288,64.574425,208.08504,22.123451,51.529556,0.65300614 1288,610.82385,217.37463,28.322815,153.99689,0.009037083 1288,569.24243,156.32675,65.475525,223.55765,0.005039525 1288,2.4256885,147.86122,36.311413,102.50809,0.003398626 1288,457.11734,217.20592,16.234924,47.171677,0.0025626756 1288,484.71512,190.85368,59.018585,101.47368,0.001264027 1288,507.5142,284.4293,60.123383,140.0603,0.00044341423 1288,31.971071,176.14113,64.1299,111.12547,0.00028431322 1288,451.8758,152.19733,129.99945,236.14719,0.00017534902 1288,421.11508,168.45357,87.95477,189.3072,0.0001308496 1288,3.432251,169.50371,55.541435,253.58644,9.229006e-05 1288,612.0791,77.339035,27.067566,128.39589,4.5504847e-05 1288,1.2703459,188.38538,20.646322,149.14926,3.5010642e-05 1288,612.8703,375.50336,26.276367,123.90982,3.0879168e-05 1288,9.497142,111.47887,136.5902,263.46887,1.0588287e-05 1288,1.0644516,323.285,19.508635,127.708405,8.35592e-06 1288,583.9407,12.235664,54.65735,125.4994,3.2901116e-06 1288,3.8347235,345.98953,57.54279,138.51407,1.4459774e-06 1288,1.8402703,417.90533,34.586624,81.3251,9.959055e-07 1288,481.69913,4.2393394,50.5748,59.311543,2.2682368e-08 1288,360.0314,3.100726,46.2695,59.151024,1.1633424e-08 1288,1.7390137,7.2608366,35.4942,88.7534,8.104042e-10 1288,456.20798,5.197051,45.2247,59.660957,6.2564565e-10 1288,388.82428,0.0,45.45459,61.702854,4.357083e-11 1288,414.20114,0.0,44.888336,65.1674,2.4729595e-11 1289,499.50943,214.32524,25.67398,55.03978,99.84139 1289,471.51236,211.73997,24.433685,59.647537,99.8078 1289,516.37585,214.89995,24.30597,50.2155,99.77198 1289,53.374744,209.19606,24.57851,53.17305,99.16342 1289,40.9074,205.06288,22.456543,46.720505,95.799835 1289,397.35205,220.02068,21.191772,46.880295,94.09553 1289,442.24496,215.65509,23.043213,51.97751,89.44037 1289,597.90485,225.86401,28.035522,65.674774,88.36968 1289,617.7587,229.21498,21.38794,60.099777,38.098164 1289,423.31244,214.3947,21.359436,49.79631,31.125826 1289,589.3385,218.2659,23.06372,49.7511,0.2513263 1289,578.4235,209.71944,57.70587,119.16258,0.15883227 1289,80.656,211.80193,22.333336,47.263718,0.015591038 1289,457.36923,218.75217,16.643799,45.35367,0.0040320572 1289,483.28506,190.42194,61.97867,101.77844,0.002309547 1289,1.9847339,154.45975,34.868237,84.05295,0.000930097 1289,506.58533,282.17575,61.391052,143.97769,0.00035061 1289,455.4447,154.01808,129.26111,238.13176,0.00022861568 1289,420.17075,169.99489,90.91812,190.73741,9.462121e-05 1289,1.3035018,185.48569,20.577515,144.10547,5.5994333e-05 1289,17.903854,154.54968,88.60677,170.15912,4.5453537e-05 1289,611.7778,73.49349,27.368896,131.83554,4.1857907e-05 1289,612.9454,375.54904,26.201294,124.12097,2.8115108e-05 1289,1.1332463,323.63998,19.38007,128.32108,8.104707e-06 1289,3.481626,225.02255,58.2175,245.84073,7.3933106e-06 1289,584.6576,13.450462,54.125,125.02886,3.9435586e-06 1289,590.42883,6.753768,45.90912,50.22786,1.1233053e-06 1289,1.7999935,417.93875,34.85544,81.25339,1.0489086e-06 1289,481.6255,4.0046453,50.109436,59.033062,1.116107e-08 1289,354.72507,4.503558,45.7753,56.735725,2.9452976e-09 1289,1.6768539,7.429805,35.496864,88.2443,7.923321e-10 1289,456.12375,4.6802473,45.51596,60.906277,6.698334e-10 1289,380.493,0.85344076,44.847137,58.529713,1.0122564e-10 1289,413.9032,0.0,44.94806,65.05885,2.9067308e-11 1290,499.931,212.88625,25.086945,55.887375,99.77677 1290,474.78137,213.80858,21.464722,56.873886,99.4077 1290,516.84283,215.20894,22.652771,49.396347,99.37605 1290,52.494957,210.06682,25.56044,53.38231,98.32986 1290,589.7894,221.68625,36.965393,80.38751,95.29148 1290,398.46738,219.88063,20.296173,47.515427,93.3168 1290,446.76633,211.7622,24.329163,53.513367,85.44541 1290,423.2362,214.22311,20.451996,49.704468,34.679756 1290,617.66223,228.42522,21.484436,61.21324,25.681978 1290,68.91364,207.90158,19.008072,46.098816,0.38013166 1290,569.11664,158.95961,65.75629,225.37239,0.0062226253 1290,483.22604,190.42293,62.0455,101.42284,0.0014975995 1290,1.7013403,152.20923,35.69691,89.62254,0.00082259695 1290,507.85693,282.30292,59.91046,142.24472,0.00048535093 1290,457.36526,151.0233,126.37363,237.39806,0.00017217606 1290,2.0773504,177.4463,33.861244,190.1212,0.00013220578 1290,420.62323,173.77875,92.418335,186.84027,8.5607804e-05 1290,608.79047,435.40143,30.356201,69.26999,5.942392e-05 1290,612.0273,77.62588,27.119385,126.355736,5.191021e-05 1290,7.297074,143.41957,91.15247,224.1493,3.2149423e-05 1290,0.95887536,272.2316,19.363853,136.65564,6.9189555e-06 1290,1.2341553,357.79324,18.412449,131.3237,5.8349306e-06 1290,584.2948,12.659115,54.390503,126.94789,2.1586836e-06 1290,3.4674773,397.0717,56.052357,98.27905,1.2214825e-06 1290,590.3914,6.4585013,45.413208,50.734535,8.6016485e-07 1290,468.77954,4.914509,48.783936,59.12312,4.4366213e-09 1290,359.73715,3.547692,45.882904,58.130177,3.326579e-09 1290,1.7376286,7.066055,35.637012,88.1997,9.190775e-10 1290,396.22946,0.0,64.13669,61.57913,4.22743e-11 1291,499.90726,213.90433,25.081696,54.981873,99.8357 1291,474.85648,213.73965,22.403595,57.310486,99.65005 1291,515.3373,215.06985,24.265259,49.907196,99.58233 1291,52.469135,208.87772,30.072132,54.71942,99.22457 1291,397.9611,217.47273,20.808533,49.611465,96.944786 1291,593.7226,217.93503,31.491028,73.98859,93.125046 1291,441.38745,216.89595,23.7471,52.93895,77.49283 1291,614.612,225.84953,24.534668,61.70906,62.77721 1291,425.87866,214.08504,24.484436,51.446945,52.93522 1291,457.04303,211.59125,18.883636,45.883118,2.5618882 1291,582.8501,213.96346,26.674988,58.94548,0.55219233 1291,72.42001,208.16534,21.417664,49.613464,0.091677696 1291,9.115394,197.49634,24.904755,55.116898,0.04589805 1291,570.3103,205.77646,65.25922,143.37045,0.03204476 1291,483.10367,189.93668,61.783356,102.575195,0.0016373553 1291,2.8111377,142.80634,36.418304,156.72601,0.001561438 1291,506.23325,281.59427,61.791107,146.82877,0.00038905613 1291,452.78226,150.79654,130.78421,240.65329,0.00014912226 1291,608.8665,434.04733,30.280151,70.52472,6.0061007e-05 1291,611.7808,76.552925,27.365845,128.02527,4.612888e-05 1291,375.8066,170.8622,86.55621,195.09996,4.1054183e-05 1291,17.099737,149.38289,102.67907,223.5345,1.4562771e-05 1291,1.0819181,216.79109,20.495363,151.56221,1.3304279e-05 1291,422.34152,163.45183,19.84668,45.20909,8.900125e-06 1291,1.0308627,323.1108,19.539476,129.0369,7.954227e-06 1291,4.29042,224.28482,55.56686,241.60083,7.050361e-06 1291,584.31647,11.96724,54.348694,127.1069,2.243841e-06 1291,3.4926677,397.2337,55.9631,97.48819,1.5053865e-06 1291,589.82855,6.2371926,46.5119,50.840424,9.874581e-07 1291,360.18933,3.380599,45.55713,58.672005,6.61066e-09 1291,469.11533,4.4821715,48.586884,59.915527,5.055698e-09 1291,1.7542562,7.0289063,35.67649,89.3412,6.467394e-10 1291,442.5838,3.5783496,45.474396,61.1751,6.0494644e-11 1291,396.22104,0.0,64.27719,61.10193,4.112539e-11 1292,499.00662,214.77985,26.0654,54.883026,99.80368 1292,469.4262,210.26544,26.409119,61.320343,99.698 1292,49.290035,205.66246,29.947536,58.527756,99.56854 1292,514.41327,215.84479,24.687317,48.408386,98.73397 1292,397.04306,216.33818,22.588715,49.824844,98.681816 1292,443.34543,216.98784,22.921295,52.602707,96.93132 1292,596.91296,221.34975,25.63855,69.796036,81.83251 1292,425.48865,216.30981,25.011566,49.257477,29.114536 1292,611.71094,224.89655,26.473389,65.757416,8.951179 1292,66.86554,208.70424,21.73693,50.96013,0.2470949 1292,577.64746,207.93321,58.595337,121.18471,0.13355266 1292,582.6482,213.7673,27.5542,58.96756,0.08069459 1292,456.8774,213.80605,19.092651,51.311386,0.034743313 1292,483.55362,190.42696,61.14908,102.07826,0.0016268989 1292,4.7000766,161.62704,36.331703,87.198685,0.0011134057 1292,515.40314,293.51044,48.44232,122.178925,0.00036453287 1292,483.35898,140.46095,125.58511,237.58778,0.00010634317 1292,398.2576,149.49477,134.96274,219.78432,0.0001013178 1292,1.3206487,185.77258,20.324265,144.86722,6.542381e-05 1292,611.9168,77.5437,27.229858,127.017166,5.4499877e-05 1292,1.8679403,94.20999,19.473831,146.64119,3.8106613e-05 1292,3.51799,114.030846,56.80804,199.01138,3.5757967e-05 1292,22.38422,156.54102,84.41325,179.89737,3.491934e-05 1292,612.78094,375.3517,26.365723,123.50122,3.073491e-05 1292,0.98718506,272.69214,19.349749,134.61325,7.267244e-06 1292,1.1759456,363.7706,18.846169,130.5889,4.241866e-06 1292,583.92914,12.720365,54.83319,125.48807,2.529622e-06 1292,3.4390771,396.61615,56.188953,97.827515,9.921987e-07 1292,589.9964,6.653773,46.523376,50.917007,6.321878e-07 1292,481.77042,3.8695638,50.493256,58.916786,6.9893766e-09 1292,354.89127,4.210837,46.555573,58.33911,6.1781114e-09 1292,1.7832276,7.3067875,35.575504,88.17599,7.403315e-10 1292,455.95163,4.92319,45.4451,60.17052,4.883726e-10 1292,396.36023,0.0,64.075134,61.46557,3.7147174e-11 1293,474.61917,214.31966,21.862976,57.43843,99.49964 1293,515.6269,215.26703,23.410767,47.900818,99.09097 1293,497.38495,214.96431,22.32129,53.81221,99.066925 1293,51.371136,206.64615,25.167439,57.0112,97.22725 1293,397.90936,220.46722,21.680298,45.77054,92.64509 1293,593.0738,221.29953,34.629578,77.040344,92.24071 1293,442.6624,216.75317,24.832031,52.949432,90.90935 1293,424.57233,217.01083,18.584076,47.236267,81.55124 1293,614.3035,219.57039,23.561829,70.3589,9.356519 1293,581.5729,214.17346,27.650818,58.458405,0.17168507 1293,37.78478,198.51167,24.35073,54.797607,0.14398846 1293,67.02936,212.09787,19.782204,47.292725,0.021353787 1293,601.54926,144.5702,34.36737,190.09227,0.009824105 1293,568.6525,212.993,54.48462,149.05544,0.001301708 1293,458.12073,192.43015,60.151855,101.60892,0.0010304146 1293,2.2434945,149.71068,30.894411,145.80428,0.0007507227 1293,507.32367,281.29135,60.473633,143.9892,0.00044780018 1293,480.69766,170.6774,82.24228,207.03656,0.00019035388 1293,403.74802,150.12599,130.8262,199.4427,7.8990175e-05 1293,611.7513,76.17745,27.395386,129.79034,3.7466914e-05 1293,612.7529,376.54135,26.393738,122.792786,3.17201e-05 1293,0.9136784,230.00774,20.286829,145.08858,1.07925725e-05 1293,1.0723983,315.73892,19.661905,128.96411,6.9114244e-06 1293,4.1423473,221.24919,56.32219,245.2407,6.284682e-06 1293,584.3885,14.006393,54.22296,123.004074,3.023406e-06 1293,1.8293686,418.46887,34.699,80.62515,9.764864e-07 1293,590.37,7.3357344,45.727478,48.789104,8.844429e-07 1293,360.12698,3.6185677,45.976685,59.060184,1.3294608e-08 1293,1.2918148,12.657214,19.139874,148.19673,6.6587216e-09 1293,469.03693,5.084225,49.060486,59.290768,4.304486e-09 1293,396.28998,0.0,64.128265,61.281628,4.1172798e-11 1294,473.93204,214.88153,21.456085,55.636414,99.58754 1294,53.460106,204.9129,25.937515,57.627197,99.13073 1294,516.3452,215.76115,22.118042,48.72209,97.86842 1294,491.3803,219.92422,19.389435,49.847565,95.314316 1294,399.3125,217.79634,19.519531,47.837112,95.13557 1294,592.9179,221.43642,34.57831,74.90907,94.743996 1294,419.74536,216.51898,18.904602,47.00412,89.85302 1294,444.9698,218.62009,21.400635,49.54358,80.60548 1294,502.10205,220.53806,19.634033,47.061523,55.568684 1294,614.45935,220.10933,24.006836,69.501816,11.931101 1294,44.300926,201.81128,21.445824,48.12503,8.237737 1294,459.1634,211.92613,18.577515,49.3972,0.59756094 1294,583.5567,175.43704,51.33075,176.94916,0.033518422 1294,459.25955,190.75293,58.898956,103.763885,0.0009823993 1294,2.6859488,154.86021,34.220646,178.83266,0.00045863245 1294,506.42877,282.75854,61.314697,141.73132,0.00039583168 1294,476.67392,171.7249,84.64334,205.22945,0.00010059215 1294,611.819,75.868385,27.327698,128.65369,5.908786e-05 1294,609.00244,434.15457,30.144226,70.03299,5.8252557e-05 1294,381.05817,169.97845,91.844696,195.29291,4.1224142e-05 1294,1.71865,96.34117,19.284904,143.06676,1.8687697e-05 1294,19.930033,151.70168,98.41887,216.7303,1.6822662e-05 1294,0.90873295,230.2823,20.153343,146.20274,1.206426e-05 1294,4.2664666,219.01079,56.541214,246.16151,9.661804e-06 1294,1.1060808,323.64972,19.493729,127.414734,8.914702e-06 1294,584.1464,11.48388,54.508484,126.55311,2.83221e-06 1294,589.7928,6.1355143,46.052185,50.036167,1.059194e-06 1294,1.8425244,418.12814,34.5887,80.46277,8.804791e-07 1294,481.38303,3.9168913,51.368073,60.017483,8.516749e-09 1294,365.54767,2.8569922,45.18228,58.621304,2.2960411e-09 1294,456.34338,5.375876,45.66397,59.5718,5.648293e-10 1294,1.9025553,8.109801,35.554474,87.35434,5.564873e-10 1294,396.03204,0.0,64.293945,60.725548,2.3389051e-11 1295,51.18142,208.65167,27.44204,54.957825,99.736206 1295,473.64075,217.79439,21.360321,52.399796,98.751816 1295,445.81036,216.62846,24.126587,53.101944,98.11808 1295,490.71548,220.72534,18.930511,47.01999,97.316055 1295,514.89435,216.06613,23.15686,47.50943,96.81405 1295,593.0501,222.85985,35.74756,76.89952,95.73441 1295,397.7681,216.2379,21.814056,49.70198,95.31797 1295,35.832767,206.70447,24.23373,46.09874,94.06254 1295,503.0336,218.75003,19.553375,46.378662,93.336815 1295,419.04544,215.79913,19.951447,48.20645,91.11809 1295,613.04987,232.79071,21.648743,54.558075,2.7883966 1295,431.0807,218.75342,17.310577,45.482056,2.7521956 1295,588.51843,218.41801,23.538025,49.449142,0.39996383 1295,601.20593,143.60289,34.618347,190.66228,0.013466184 1295,568.7293,212.90453,54.721252,149.22145,0.0014465437 1295,507.39355,284.54242,60.600464,140.93137,0.0005197087 1295,471.0465,172.0005,75.341064,163.62889,0.00032980426 1295,2.2203736,146.86539,34.794796,159.98022,0.00023045532 1295,611.9263,70.83254,27.220398,125.464195,8.457108e-05 1295,608.9278,434.13974,30.218872,70.15845,5.9650585e-05 1295,419.06018,178.87425,92.39697,182.68724,4.4340224e-05 1295,1.7500106,95.58127,19.692844,147.4775,3.2953816e-05 1295,7.920277,148.69878,95.19578,221.13405,3.0602474e-05 1295,0.9214795,255.84224,19.623276,139.1035,6.816938e-06 1295,1.1378882,364.0509,18.619284,129.0379,4.8508073e-06 1295,584.1075,13.408972,54.56836,123.388756,2.7735443e-06 1295,3.5076742,396.22458,56.06002,97.96048,1.0093895e-06 1295,589.6591,5.7935176,46.463196,50.39382,1.0092893e-06 1295,481.52496,3.3510678,51.57666,60.51982,7.298363e-09 1295,1.8432145,7.689577,35.669876,87.5923,5.220879e-10 1295,366.2296,3.2067254,44.776154,56.034363,4.120754e-10 1295,456.06622,4.572764,45.72873,60.473522,3.8146816e-10 1295,403.0563,0.0,45.461945,64.11901,2.2920922e-11 1295,427.73596,1.640599,45.386353,63.883015,1.0018968e-11 1296,472.88583,216.46005,22.847717,54.122375,99.83999 1296,49.83185,207.60669,28.33931,56.46582,99.18506 1296,490.32382,222.61574,20.364319,47.140182,98.095924 1296,591.9837,221.84772,35.33191,75.41556,97.021515 1296,512.89984,216.49915,22.122559,46.661987,96.8391 1296,446.71057,211.64825,24.506378,54.66208,73.90676 1296,415.38687,216.83841,19.42862,46.583527,56.402172 1296,398.67697,217.75505,20.728912,47.788742,53.511326 1296,12.35693,204.57346,29.374153,49.644485,34.42141 1296,430.1785,220.03813,21.816772,45.849075,6.293684 1296,613.9917,220.20827,22.825012,68.05162,3.1616921 1296,582.08057,214.12785,28.29486,58.42607,0.30784315 1296,68.83831,207.4296,20.356796,48.13507,0.076484576 1296,564.8227,181.38359,71.29541,184.64064,0.0050773635 1296,456.87054,172.59427,73.176575,153.75726,0.00055803027 1296,2.2447348,176.87863,29.855839,141.63242,0.00029963494 1296,515.14233,293.2535,48.57245,122.04224,0.00027516382 1296,5.8849287,145.46283,84.79684,226.83966,8.962949e-05 1296,1.7267107,113.6713,20.473787,144.4346,6.6421395e-05 1296,608.6026,434.13696,30.544067,70.03909,6.0957405e-05 1296,475.19122,145.08112,126.7832,232.72223,5.81339e-05 1296,611.9397,76.113686,27.20697,128.49301,5.677391e-05 1296,1.0682251,323.84802,19.43613,128.47626,7.1850577e-06 1296,584.1482,12.743399,54.405884,124.35645,3.0655635e-06 1296,1.8553598,418.17517,34.78018,80.83905,1.0024938e-06 1296,590.157,6.7023244,45.77069,49.135372,9.865677e-07 1296,469.1572,4.7296257,47.898956,58.442497,2.2667221e-09 1296,365.77203,3.1944141,44.893555,56.976433,1.0846806e-09 1296,1.8541423,7.90057,35.461075,86.98985,4.0958986e-10 1296,403.0131,0.0,45.64691,64.02412,2.1272874e-11 1297,472.6183,217.41495,22.164948,53.099823,99.66995 1297,53.86973,210.62894,23.8681,51.691895,99.26294 1297,440.82773,223.8081,21.690369,47.34317,99.15013 1297,511.5389,216.46431,24.117706,46.573746,96.88831 1297,591.3131,222.2062,35.383545,77.79361,96.17352 1297,495.2645,220.86987,23.863983,48.28714,87.06307 1297,410.78015,217.20328,20.268738,46.73236,17.353735 1297,3.495892,181.99251,32.93808,76.36861,9.200234 1297,612.7597,218.29832,23.360535,71.175705,2.873366 1297,455.98187,215.04568,20.280273,48.477264,1.6063269 1297,421.48346,219.3084,23.694244,46.585922,0.2039344 1297,74.787285,209.21394,21.423782,47.078842,0.100519925 1297,602.1188,147.55771,34.34326,190.47864,0.0067976727 1297,513.3898,285.497,50.259766,141.90729,0.0003805 1297,456.38635,173.84706,74.639404,151.5136,0.00036594985 1297,32.628197,174.05457,63.181114,115.21387,0.00023380603 1297,545.1547,145.78217,90.15399,244.06763,0.00021479944 1297,493.90814,175.0218,81.40668,206.11333,0.00013143441 1297,608.6452,434.53568,30.501465,69.915436,6.457459e-05 1297,381.93994,173.54198,89.66748,191.33397,2.7578517e-05 1297,0.9754411,207.9673,20.598753,162.54088,1.6261787e-05 1297,601.5069,23.713028,36.839478,147.20172,1.0609433e-05 1297,9.191484,112.95158,137.4887,261.2447,9.262965e-06 1297,1.1723552,322.7976,19.375763,128.11871,6.9700823e-06 1297,589.97906,6.4538283,45.84015,48.965042,1.6495354e-06 1297,1.7777718,418.00482,34.717464,81.61368,9.867069e-07 1297,481.57288,4.594092,50.203613,57.0949,5.600397e-09 1297,365.85074,2.8862371,45.038696,56.800365,1.0320683e-09 1297,1.7544158,8.105664,35.537537,86.71713,4.906077e-10 1297,456.04303,5.0543456,45.64447,60.06257,4.6953263e-10 1297,403.01294,0.0,45.41046,64.05375,2.2336384e-11 1298,51.28169,210.04686,27.383068,54.477615,99.74341 1298,474.70892,217.12447,23.110413,53.048965,99.7253 1298,592.36725,222.90347,35.299805,75.66574,98.480354 1298,442.22476,215.51219,23.167114,54.119217,95.37287 1298,515.59576,216.56516,20.933838,46.287292,92.15705 1298,493.57648,222.371,19.380798,45.304596,83.652725 1298,397.8597,220.35811,20.687836,45.289413,72.20356 1298,615.02686,233.55766,23.573425,60.995895,28.41371 1298,588.0217,219.78925,23.578491,45.702637,7.0277877 1298,465.38422,212.42546,19.810425,47.968765,4.29104 1298,78.01273,209.50494,20.245293,45.962463,0.1715061 1298,1.6282308,192.46413,27.918215,64.282486,0.13896847 1298,565.3935,181.14217,69.91681,189.86937,0.0033631925 1298,2.2621534,145.63046,38.622234,154.13208,0.0023213495 1298,32.041763,182.43373,63.822517,107.201126,0.00036409366 1298,508.4536,283.24802,59.299255,141.56326,0.0003542185 1298,457.95062,176.46419,74.43115,151.7379,0.0002960814 1298,490.3803,173.95508,84.04492,207.5903,0.00013055331 1298,608.7802,434.3381,30.366455,69.96088,6.468936e-05 1298,381.00558,176.51021,91.18332,191.41805,3.3235152e-05 1298,9.758782,133.67703,136.08319,252.7651,2.6879865e-05 1298,0.889834,229.95021,20.300163,156.01335,9.288973e-06 1298,1.1726295,322.7338,19.461176,129.30792,6.8115305e-06 1298,601.51715,21.999968,36.958557,149.88014,6.714503e-06 1298,1.1476806,441.31976,22.012396,61.93164,1.731117e-06 1298,3.4561214,396.64194,55.96569,98.24814,9.593307e-07 1298,360.01425,3.8326857,45.624054,57.185246,1.765069e-09 1298,469.0344,4.462165,48.585785,58.552082,1.1718668e-09 1298,1.8119255,7.366488,35.533123,87.78947,6.073214e-10 1298,403.18488,0.0,45.57129,63.81034,2.3560627e-11 1299,573.6661,226.3594,35.750793,84.66507,99.8983 1299,387.4318,218.91609,20.082306,45.595505,98.773506 1299,57.859795,212.04803,25.991272,48.973267,98.61004 1299,439.45074,222.38712,20.870789,48.16101,95.233604 1299,410.0178,216.34303,19.810303,47.25084,66.44012 1299,613.7974,219.4232,24.613708,70.10741,64.032974 1299,22.074717,200.11266,26.783968,49.265,47.176598 1299,425.63394,218.0406,22.380066,47.520065,9.385625 1299,75.94316,209.2663,21.724411,48.3024,0.8192148 1299,587.8534,217.62875,46.73285,112.1792,0.103298716 1299,522.48035,172.68417,111.13605,226.0404,0.00064056023 1299,507.30673,278.02203,60.321075,146.07916,0.00030657323 1299,2.1750212,146.39854,38.24528,157.94249,0.00022740189 1299,40.13788,176.12137,62.23092,111.57065,0.00015881189 1299,458.33307,169.24995,84.64398,200.54771,0.0001142105 1299,608.8983,434.889,30.248352,69.01553,6.43026e-05 1299,367.52832,172.07367,92.6145,202.07947,2.6212108e-05 1299,0.76834965,223.28906,20.096352,152.02814,2.5998153e-05 1299,1.629651,93.771385,19.60266,153.0557,1.7891343e-05 1299,9.918265,121.743935,140.27242,261.22543,1.2929922e-05 1299,1.0153898,323.5413,19.526245,127.68579,8.431452e-06 1299,584.0351,11.536842,54.757263,124.76533,3.5891098e-06 1299,1.6189486,417.45123,35.068424,82.16806,1.3230522e-06 1299,365.41705,3.2573373,45.671356,57.489227,3.1913572e-09 1299,468.8562,4.778457,49.25592,58.737522,2.4718774e-09 1299,1.802544,7.954867,35.418644,86.75936,6.1508415e-10 1299,403.0213,0.0,45.730835,64.23895,1.5894128e-11 1300,71.94262,209.35255,28.931877,58.330215,99.819855 1300,471.81073,219.40811,22.001953,49.908264,99.75618 1300,522.3552,224.99384,40.91266,84.88287,99.745384 1300,580.5947,209.00905,31.474121,92.766495,99.714165 1300,484.596,221.4952,19.252869,46.587906,95.97266 1300,435.56735,219.98454,21.641785,48.156265,95.20769 1300,604.74744,218.68915,29.430603,90.83548,93.73971 1300,7.1723056,185.55885,29.941689,65.30173,32.122906 1300,502.68085,219.60129,24.711853,51.54004,22.47577 1300,519.23505,220.41943,22.246643,53.305603,4.0675898 1300,562.34686,203.47673,72.75928,137.85707,0.053918228 1300,500.10565,202.64339,87.356445,165.45103,0.0061185807 1300,1.8259416,133.6077,20.865774,132.47488,0.00035164002 1300,454.33188,171.05058,87.33383,194.39943,8.049314e-05 1300,337.2518,167.08498,89.64093,213.73216,3.631646e-05 1300,586.0685,396.09058,52.426147,96.12109,1.7181212e-05 1300,1.4014909,228.38034,33.33319,206.45895,1.0905763e-05 1300,14.805039,133.85876,147.00558,253.05328,7.998605e-06 1300,1.7430551,365.29187,32.944717,125.51877,2.0165903e-06 1300,594.1637,10.675081,44.98297,82.67548,1.7823046e-06 1300,1.1785295,441.76126,21.952461,61.5112,1.7089984e-06 1300,1.7854248,7.2209606,35.51243,88.150055,4.784044e-10 1300,408.5934,0.0,45.08664,64.25718,1.8795063e-11 1301,520.5094,216.84592,49.2619,117.6026,99.8736 1301,463.48627,221.52052,34.62506,82.9323,99.81035 1301,512.4885,215.62863,23.434448,48.696503,91.672195 1301,484.40668,220.04956,30.07837,77.94333,77.410545 1301,43.930443,197.42319,18.941093,46.603485,2.4044502 1301,457.04663,212.32819,22.319122,50.92688,1.6906328 1301,527.2844,217.67859,24.14624,54.511963,0.35105523 1301,616.8891,221.42293,22.257568,57.177322,0.28395575 1301,2.9412923,164.6731,33.44441,94.8819,0.04474459 1301,604.473,187.64912,34.106445,132.77965,0.0016959251 1301,492.15012,202.39638,105.438934,244.07234,0.0012635785 1301,417.097,157.4532,131.02551,225.89394,0.00017264698 1301,343.99332,169.78204,92.96442,208.89761,5.242653e-05 1301,586.3097,395.93854,52.25885,97.240906,1.7939832e-05 1301,0.9648511,272.40146,19.402542,136.59952,6.1476285e-06 1301,1.683763,365.1001,32.944572,125.36673,2.19686e-06 1301,584.05725,10.348842,54.786743,126.835304,2.036912e-06 1301,1.0301588,440.802,22.021952,62.68994,1.6947741e-06 1301,469.12585,4.348083,49.05078,59.57348,3.3278102e-09 1301,365.20126,3.296569,45.626923,57.70106,2.9377012e-09 1301,1.8100082,8.05168,35.516556,86.40046,5.2799626e-10 1301,402.83694,0.0,45.983215,63.853672,2.1287767e-11 1302,451.95923,216.77678,43.21933,119.884995,99.914696 1302,339.3739,217.61691,21.830261,45.580627,99.70825 1302,295.4865,217.62212,21.232697,48.20131,99.68429 1302,592.6784,220.81514,31.458923,78.69173,99.35214 1302,419.47623,220.42267,31.226746,80.93561,98.99495 1302,514.3337,216.85858,22.160217,45.242462,98.83342 1302,134.52344,216.6408,21.348343,50.645218,95.78592 1302,477.76767,218.08913,29.346252,97.67238,90.243935 1302,571.6341,313.14697,67.51257,197.9997,83.457436 1302,611.0041,228.5601,28.142578,71.49162,79.21077 1302,438.0978,217.32773,24.778595,77.590485,25.505253 1302,470.34357,221.63988,22.921967,61.052322,8.979595 1302,584.65063,209.0504,48.325928,195.29393,4.7784142 1302,69.70529,209.26094,22.220695,48.878494,0.8151162 1302,46.37786,200.8788,22.782509,47.95839,0.09340023 1302,601.78,429.14578,37.36664,82.000885,0.0045632073 1302,552.3166,413.9755,56.77539,95.28104,0.0014012007 1302,410.40186,163.19283,126.23773,231.07686,0.00035365787 1302,518.5627,285.31488,48.279907,147.84427,0.00022929016 1302,606.86383,8.089178,32.282837,52.89321,1.3136444e-05 1302,1.013833,441.218,22.050133,62.292603,1.4839597e-06 1302,3.4187875,396.4849,55.873165,97.96469,8.12058e-07 1302,1.3018945,4.033812,20.06355,65.913376,2.9960118e-10 1303,162.4813,214.53488,25.344498,51.57733,99.88446 1303,592.64813,222.61949,24.523499,60.133255,99.863884 1303,510.80475,220.15334,22.610596,50.49852,99.85672 1303,302.86746,215.95454,24.81897,48.289597,99.84435 1303,264.75403,218.29704,20.550354,46.38713,99.814285 1303,282.8054,216.778,20.390747,47.08989,99.74204 1303,364.5891,219.10782,29.896118,78.33023,99.60421 1303,495.97632,221.63545,20.887573,48.728348,99.29192 1303,393.68484,217.52519,39.60086,119.133255,99.17212 1303,564.983,223.42836,34.40393,90.34187,99.07505 1303,467.7446,218.37784,21.353546,52.634888,97.6261 1303,308.81046,301.11182,111.99759,210.03485,96.86206 1303,352.62558,217.78601,21.972168,50.14502,95.250336 1303,385.28442,219.9739,21.651794,77.55118,85.43249 1303,393.8225,274.76495,114.46176,204.87677,38.73217 1303,617.24335,220.25523,21.90332,56.070847,16.5672 1303,428.35312,223.29686,29.485107,68.9453,4.041712 1303,416.45273,212.00449,51.58081,180.02274,0.19674852 1303,368.24722,198.89098,71.66986,257.27838,0.0050943093 1303,607.87225,8.812166,31.224121,50.313118,1.6865326e-05 1303,1.3610946,4.1220837,19.841652,65.36868,3.6388564e-10 1304,384.86545,216.04208,33.99887,83.38165,99.951645 1304,518.8241,219.96516,35.70813,93.968185,99.910645 1304,317.55963,218.0806,29.905334,75.1673,99.84407 1304,340.66385,216.06158,32.383575,100.79877,99.84369 1304,613.28925,214.62611,25.48407,67.13353,99.70781 1304,574.3295,218.11517,37.174194,79.793,99.622574 1304,454.27747,217.77904,26.694794,54.00081,99.402504 1304,271.43353,215.30367,21.753113,48.63359,97.51196 1304,194.47871,215.65616,23.591019,52.15796,97.20836 1304,0.0,173.09026,35.44421,161.75523,86.010895 1304,501.40408,218.62886,30.623138,89.57262,60.6027 1304,360.3416,221.48698,24.443207,87.34462,44.23718 1304,54.77581,228.48152,124.94834,257.83228,9.351034 1304,6.269742,218.87569,23.413532,49.539047,4.545269 1304,244.56927,213.2697,25.067413,56.38069,3.0811296 1304,66.74202,207.51735,23.291344,45.226273,1.9165924 1304,599.3656,213.6336,24.852722,64.79346,1.4212427 1304,553.5162,205.27852,79.95099,141.77763,0.21611822 1304,502.04773,219.2801,79.14154,224.08632,0.0013115307 1304,608.2941,8.750666,30.796997,50.09072,1.5821523e-05 1304,598.5806,410.4985,40.362427,87.361664,1.5750225e-05 1304,1.7453467,415.80405,34.870026,82.956604,1.179025e-06 1304,1.3039901,3.953008,20.104534,66.1817,3.71742e-10 1305,579.98413,218.90857,26.064087,59.319794,99.96497 1305,61.652073,215.81769,56.45441,108.69745,99.96331 1305,522.2148,219.32649,34.06122,95.77818,99.95056 1305,288.8259,209.05536,41.957367,104.97336,99.93721 1305,600.3314,210.90208,27.601746,69.2946,99.890915 1305,344.45474,218.1343,32.099213,77.97218,99.87136 1305,234.79243,215.32248,24.003159,49.462585,99.66776 1305,437.0995,218.29251,29.612244,90.84778,99.31688 1305,463.0011,223.1142,31.299377,88.009186,99.04797 1305,278.57666,211.7906,23.509796,77.1389,98.49132 1305,23.756935,217.75798,24.97126,53.259933,93.9958 1305,3.8988583,195.72914,28.417398,78.0302,73.85213 1305,483.08252,219.93811,27.05774,87.12836,46.344326 1305,509.15903,217.0965,25.003876,67.170166,46.06298 1305,195.52956,216.38287,17.745514,46.912506,9.105877 1305,361.6983,218.93225,24.466278,47.973053,8.399954 1305,391.1431,207.14835,19.761719,48.390182,1.0446649 1305,501.14398,213.82404,20.062622,49.255646,0.5125757 1305,622.6375,208.4296,16.509155,62.710632,0.027349968 1305,501.41833,220.38058,79.51135,221.37738,0.00038326342 1305,389.27795,168.25972,138.85425,220.16624,0.0003459428 1305,294.34677,159.36655,139.56241,232.624,0.00010360242 1305,598.4708,409.7768,40.43988,88.09604,1.6979295e-05 1305,607.47565,8.273405,31.651062,51.47149,1.6373644e-05 1305,1.8480405,417.65552,34.60101,81.16977,9.910866e-07 1305,1.3850651,4.0427084,19.92751,65.788,3.0391953e-10 1306,537.91077,221.90385,23.87085,53.912674,99.97985 1306,158.85571,213.87642,48.96382,103.060745,99.97496 1306,304.47626,218.9658,33.255066,74.96196,99.95689 1306,469.95438,218.00708,35.97815,93.09241,99.94789 1306,9.50418,220.86504,69.96603,149.80467,99.86299 1306,579.1358,221.73633,21.125916,53.447845,99.84495 1306,445.72778,214.95622,33.305664,91.756546,99.807205 1306,518.42346,221.2112,22.600952,51.973404,99.774796 1306,251.91722,217.78328,32.315292,85.685135,99.76549 1306,416.16367,218.64394,29.455109,85.47267,99.70131 1306,595.29144,213.65445,23.01184,62.164276,99.60758 1306,329.75372,216.41869,21.746674,48.539474,99.561676 1306,389.67535,211.2038,25.554626,89.18796,99.4327 1306,238.97578,218.65543,24.73854,69.19925,99.27597 1306,53.870426,204.05252,31.734669,68.82886,97.80948 1306,273.218,217.02011,23.147064,70.173645,46.84073 1306,497.50235,214.0071,20.531097,47.00499,9.095548 1306,32.15837,202.92188,30.18267,63.749115,2.0611324 1306,483.0936,215.73671,20.945587,46.644882,1.6255372 1306,623.5047,213.75732,15.641968,57.206573,0.09210483 1306,607.64984,8.529523,31.496826,50.935337,1.873688e-05 1306,1.968361,418.76212,34.83022,80.724976,1.3518e-06 1306,1.254375,4.6075487,19.684736,64.74129,2.3935406e-10 1307,551.59644,221.59868,23.195618,54.310196,99.986115 1307,525.85034,219.83282,25.384155,55.8927,99.96817 1307,239.26677,214.65912,34.887466,92.89096,99.96257 1307,374.50262,218.0594,36.457703,87.37489,99.95795 1307,109.43363,224.21289,64.89654,133.9997,99.914185 1307,269.8075,217.7548,31.054352,74.19969,99.91037 1307,217.25587,213.06676,30.030197,88.13344,99.90056 1307,1.7002848,211.74,62.66866,186.27214,99.852554 1307,422.43115,218.3356,31.712921,88.329254,99.841515 1307,590.29364,214.8319,22.203125,58.98607,99.68118 1307,406.55112,218.52531,28.255219,82.42827,99.646484 1307,574.36847,220.13948,20.571838,51.207962,99.13799 1307,300.76132,213.76288,22.529419,53.662384,98.85939 1307,315.8627,215.2167,21.779358,53.374756,97.871315 1307,344.61743,249.54443,24.834595,51.92816,96.91608 1307,617.4639,217.04756,21.68274,59.583145,95.182945 1307,81.17999,220.403,22.033958,48.8524,92.97451 1307,99.96253,217.91483,17.795494,48.010468,67.16586 1307,338.7905,214.2264,25.384216,56.653824,8.3863 1307,131.00163,220.62828,29.881958,69.84932,5.5471787 1307,12.098601,202.26703,32.47343,62.727814,0.58883715 1307,585.5439,167.4917,50.119568,178.0141,0.003887153 1307,607.4894,7.8107195,31.597534,50.966274,1.3983299e-05 1307,1.5427784,415.31006,35.30341,84.68622,1.9230772e-06 1307,1.2179786,4.211429,19.99848,65.565796,2.7936345e-10 1308,565.35974,222.39143,24.00769,56.4579,99.97429 1308,537.83405,220.4302,24.91394,58.949463,99.969795 1308,376.39218,215.2009,33.258026,90.402985,99.95928 1308,293.28757,212.83415,37.476807,92.096085,99.95255 1308,339.36172,218.89482,32.17987,84.209305,99.950874 1308,202.58958,228.77277,50.399323,117.33914,99.93981 1308,106.59739,219.5863,62.91189,165.30481,99.86457 1308,236.25444,219.89162,26.184952,67.721085,99.76906 1308,600.109,213.73566,24.509705,65.699524,99.63918 1308,185.45534,215.16414,30.348083,82.84502,99.28347 1308,357.68542,215.40057,28.012756,84.154755,96.94777 1308,471.3457,215.8754,21.25177,45.94522,96.84359 1308,275.72855,217.27155,21.454773,46.6127,89.2464 1308,586.5091,217.49821,19.59375,53.036606,80.55696 1308,172.46089,217.21063,19.28537,58.186523,62.680183 1308,98.86008,217.83255,19.951538,45.251526,32.651035 1308,202.67625,219.40926,25.129349,66.70952,15.943644 1308,131.98257,219.9512,28.469498,73.894806,5.6562834 1308,154.18304,215.91652,29.271927,71.319626,5.379105 1308,43.126865,209.07567,26.321835,46.05179,1.4979666 1308,622.27496,213.07341,16.871704,63.972427,0.47075796 1308,607.4644,9.200522,31.682251,50.328964,1.5440079e-05 1308,598.59686,410.47025,40.44391,88.05603,1.3549978e-05 1308,1.8014128,417.68625,34.855404,81.50528,1.2753505e-06 1308,1.2956007,4.0852084,20.124043,65.379326,2.581842e-10 1309,372.19202,219.81006,36.2558,84.07141,99.985085 1309,552.4415,223.12285,24.894592,59.404984,99.95284 1309,209.86533,207.11555,70.29657,164.06322,99.91922 1309,281.26263,224.08345,46.65451,112.44508,99.91573 1309,580.697,223.34152,24.961975,58.324707,99.90416 1309,338.15607,216.31885,34.345367,83.36136,99.877174 1309,403.2932,219.49745,26.979889,51.633224,99.876724 1309,474.8048,213.30777,20.890717,52.939697,99.75921 1309,135.02208,219.0942,25.033386,62.357773,99.51879 1309,198.20908,219.74652,23.402908,63.208435,99.23407 1309,322.15536,217.25363,29.894836,78.85141,99.14415 1309,71.694855,206.98238,27.100304,61.719498,98.94567 1309,505.0548,214.4553,21.615051,46.792343,98.724304 1309,153.79947,218.58763,26.77031,73.9196,98.596405 1309,607.1044,221.7347,23.431824,54.80635,34.323845 1309,168.88219,218.22165,26.839127,71.50873,33.737503 1309,13.517636,204.96848,26.548164,46.39554,9.800133 1309,216.75673,218.24973,30.842178,90.68335,8.838944 1309,33.469067,206.9554,23.137287,47.610657,2.2804446 1309,184.84825,218.81302,19.158936,48.377014,2.0342557 1309,622.04376,224.90091,17.102905,53.651276,0.17913797 1309,248.52432,211.73259,26.752228,66.49086,0.041224048 1309,168.124,170.90251,167.53955,243.46608,0.018926589 1309,607.50714,8.778352,31.53778,50.798306,1.6098471e-05 1309,598.52515,410.86972,40.507935,88.227234,1.4128162e-05 1309,1.885599,418.42642,34.70976,80.832184,1.1852752e-06 1309,1.3251181,4.266559,20.053097,65.08555,2.5240113e-10 1310,250.45427,218.21701,33.583145,80.71399,99.97854 1310,425.18018,222.06946,33.927063,79.97592,99.95466 1310,10.086142,212.16086,48.20478,98.6532,99.92974 1310,106.52573,218.55797,27.24472,62.851364,99.891136 1310,482.91583,215.92627,22.524292,54.544556,99.79175 1310,294.6168,213.65248,67.44568,151.73802,99.76145 1310,163.7284,218.26698,26.895767,64.15202,99.640915 1310,343.6806,227.09311,38.99237,107.963684,99.62252 1310,562.811,221.17998,25.158386,66.43031,99.50956 1310,530.3837,212.95485,22.907043,50.774277,99.47896 1310,128.44418,219.66203,26.187134,67.570114,99.46127 1310,574.30194,226.30623,38.592834,87.77232,95.01321 1310,64.74095,210.97115,20.394318,47.096664,94.361084 1310,181.007,216.16037,25.694855,65.35269,91.54521 1310,80.217575,209.48346,23.460289,55.68399,87.92708 1310,45.500507,215.61908,23.151073,50.0325,83.07404 1310,599.44403,224.71724,27.050964,58.754013,69.42285 1310,232.42522,216.95119,18.044891,46.04048,65.19485 1310,290.32248,212.42874,29.666351,98.41913,40.162704 1310,146.38849,217.92242,20.542313,67.46051,22.052435 1310,192.83394,238.22443,23.32486,54.928406,21.79618 1310,467.34247,212.84541,17.325928,45.940964,3.5395072 1310,579.76013,212.62222,22.378113,59.46454,1.6710093 1310,607.50665,8.117641,31.526306,51.58771,1.8874007e-05 1310,1.2917912,4.238669,20.023462,65.20881,2.800917e-10 1311,212.59862,216.61203,32.648712,78.661835,99.965706 1311,585.3354,225.28256,26.976135,68.79886,99.94168 1311,474.46802,219.08626,50.04364,118.65407,99.93538 1311,453.44293,218.15019,33.17151,74.46562,99.93506 1311,256.2703,214.26593,32.886597,78.69974,99.928955 1311,376.7205,216.60938,66.36618,144.25052,99.90053 1311,82.20339,219.57396,35.730507,89.03639,99.78517 1311,283.19617,211.74907,31.9003,75.71736,99.75468 1311,552.8021,215.13821,23.050903,58.60193,99.441185 1311,158.6518,238.80734,23.446777,51.963837,99.222694 1311,26.701454,211.5736,22.275925,51.754868,98.9192 1311,130.63768,219.40425,25.264282,61.87947,98.519264 1311,194.23946,215.54678,22.14273,50.451294,98.35193 1311,42.60762,210.78044,20.727165,51.500595,98.142654 1311,566.77826,217.30931,19.45105,54.83931,96.512505 1311,305.59,210.25548,25.796875,61.4467,93.68272 1311,113.06555,227.08162,21.50177,57.15947,77.8145 1311,619.03986,232.08836,19.681458,45.949936,61.855007 1311,12.41626,203.28043,20.500484,54.223785,34.495544 1311,76.43311,205.8325,23.101074,55.40074,12.223374 1311,61.281193,207.19945,21.922771,52.500046,12.059036 1311,1.3593409,183.52466,27.881271,151.67026,0.03355553 1311,4.9072137,153.7899,94.34339,206.13197,0.00016815007 1311,607.76587,8.575194,31.380798,50.900814,1.1378452e-05 1311,1.7887435,418.17743,34.76072,80.76868,9.995458e-07 1311,1.3140886,4.481833,19.81889,64.925415,1.6794792e-10 1312,182.68256,217.68343,31.650833,75.16539,99.96586 1312,387.61185,221.24855,49.904938,110.8221,99.95767 1312,540.4775,224.87915,31.774353,67.41876,99.93935 1312,138.81909,218.57787,33.354233,79.75856,99.93438 1312,519.23486,218.70795,23.85144,56.713135,99.91623 1312,53.46283,220.30896,47.935814,127.25708,99.89685 1312,598.0271,214.53271,34.15039,73.21091,99.89677 1312,354.77704,218.68774,25.413757,53.196564,99.8442 1312,269.2933,217.43964,24.784302,67.510376,99.84195 1312,458.21057,217.43802,41.149292,128.8599,99.813805 1312,221.31676,215.57234,30.499344,76.20851,99.80406 1312,107.21266,217.45216,25.454895,62.620438,99.52264 1312,503.15558,216.01575,22.967346,57.818726,99.14376 1312,438.6821,213.58232,37.55777,129.81624,92.55327 1312,252.54395,221.01157,22.22284,62.91815,69.323235 1312,18.400175,210.11287,33.544785,64.66728,52.805084 1312,77.25501,210.82474,31.644081,74.09454,49.969006 1312,585.6808,214.42511,26.269653,59.295166,36.873512 1312,46.30011,211.24031,22.359688,53.469986,25.10742 1312,607.73584,9.055947,31.327698,50.269073,1.533077e-05 1312,1.3470167,4.0991507,19.893892,65.701515,3.014262e-10 1313,317.3756,221.55627,42.23877,101.74448,99.91635 1313,146.28516,223.35469,46.79132,127.07982,99.90108 1313,283.096,215.39787,27.985199,56.216415,99.77786 1313,405.05234,219.28743,27.373108,51.227158,99.69066 1313,50.650585,208.69582,34.716442,77.78825,99.46965 1313,243.64493,218.80266,21.930573,61.671677,99.19899 1313,80.71772,208.34326,27.329842,69.8194,99.11484 1313,490.3862,221.88911,37.333282,112.55464,98.75541 1313,472.7483,211.1833,33.474365,88.15767,98.58626 1313,193.62856,215.21368,31.49533,76.76141,98.15563 1313,584.6951,221.11276,30.17981,88.763,97.96869 1313,232.30357,218.77992,18.134903,60.90593,96.65089 1313,137.864,217.31712,22.938187,52.11653,89.5358 1313,28.063587,209.9345,21.588375,60.382126,89.11818 1313,515.973,220.03714,39.374573,110.19287,88.88402 1313,567.37805,219.88722,21.79004,56.591843,86.68437 1313,614.66174,222.33037,24.095337,61.18663,78.682144 1313,99.81254,233.34286,21.28067,47.857178,71.591034 1313,550.036,222.71005,25.302673,53.60608,58.60852 1313,534.23804,216.75136,25.0943,57.41255,13.816001 1313,12.153433,210.01581,19.767883,49.66684,3.9558008 1313,212.13435,220.89888,28.631302,68.62868,2.267022 1313,154.77507,219.2824,26.968796,61.77266,1.934094 1313,467.5294,212.37863,22.060944,50.62137,1.8022077 1313,607.4266,8.451867,31.703552,52.427002,1.3171984e-05 1313,1.3129061,4.1811037,19.992489,65.38641,2.2508104e-10 1314,274.1564,220.23654,31.48346,92.18164,99.929825 1314,0.7053044,231.13,52.62488,148.13437,99.90824 1314,242.92209,226.73805,44.751923,113.53047,99.9008 1314,316.13873,214.59918,25.86615,57.082947,99.84108 1314,490.37094,224.06497,41.50833,140.06033,99.82798 1314,125.7389,220.65341,31.852852,67.36383,99.81499 1314,448.13922,222.70386,27.391418,68.14578,99.79865 1314,206.73277,218.30757,24.192444,62.213486,99.79596 1314,534.5118,218.81404,31.91565,97.45061,99.794075 1314,558.77435,225.34746,36.071106,91.43532,99.754105 1314,159.64575,216.31863,26.14975,71.200745,99.557304 1314,23.16677,212.02075,32.81396,70.64261,98.39615 1314,42.990486,215.85951,25.556648,60.357407,98.07725 1314,177.76958,215.18674,24.35469,70.5148,98.00148 1314,225.8013,216.94069,22.89714,64.506516,93.99631 1314,68.68136,223.35866,33.595627,59.020798,91.24071 1314,616.13184,218.73021,23.014832,59.816635,90.3443 1314,514.05743,216.3051,31.265015,99.112045,79.01109 1314,465.567,217.7989,21.403381,56.77037,48.49393 1314,582.6485,216.99509,20.488281,48.672516,1.7804314 1314,600.3016,213.2467,23.60321,55.551514,0.3741062 1314,607.29517,8.556541,31.746643,51.545307,1.7022587e-05 1314,1.3385441,4.3442416,20.022295,64.73514,2.3690597e-10 1315,394.43924,227.7855,53.75717,133.21669,99.94491 1315,98.779205,214.27011,32.530075,72.48825,99.9386 1315,223.43555,222.30516,30.984879,80.767136,99.92462 1315,200.54137,218.14874,30.954102,86.71915,99.90808 1315,469.56058,210.20125,22.185791,54.206192,99.889404 1315,335.2104,225.40012,49.34317,133.64075,99.889404 1315,259.47238,215.11913,27.733276,72.85304,99.880775 1315,491.58167,215.39081,24.323425,59.85092,99.878876 1315,147.10164,229.05865,75.09282,146.4076,99.871864 1315,24.847643,214.29367,29.897196,67.38431,99.82627 1315,543.332,222.42352,30.416504,80.270874,99.81098 1315,565.32635,222.69693,30.543213,84.769165,99.79881 1315,526.7912,217.53249,24.38269,60.404343,99.4097 1315,132.68198,215.41435,28.282043,71.30162,98.90487 1315,512.95544,214.9099,21.802063,54.750076,98.83434 1315,80.51245,211.75264,23.716026,55.16591,97.76298 1315,48.76994,219.48099,27.955677,61.443146,95.13954 1315,149.03052,213.66693,26.294907,66.77551,84.04497 1315,180.93443,219.48038,30.580673,78.17932,16.038254 1315,583.8326,224.07944,31.547363,85.2229,15.533081 1315,67.213036,214.0576,22.78328,54.060593,4.5438437 1315,607.3119,8.567081,31.834778,51.739758,1.3295122e-05 1315,1.3267326,4.2592936,19.811071,64.74433,1.8926163e-10 1316,73.60559,213.08803,34.599686,75.29964,99.964485 1316,155.26236,218.19646,31.581573,80.90526,99.94172 1316,178.29143,218.94273,30.84703,79.13463,99.92097 1316,428.94458,227.97168,57.515625,134.05646,99.91021 1316,558.0448,218.86401,25.093628,63.779755,99.88212 1316,102.46474,212.83014,33.47763,76.168945,99.87971 1316,297.06653,211.7253,41.417816,151.4936,99.87658 1316,537.9288,220.24048,24.935425,63.56488,99.870995 1316,325.39944,238.43678,48.92282,129.74702,99.83304 1316,506.35318,214.91328,22.891327,58.524216,99.816284 1316,470.7844,211.73161,21.794617,54.842392,99.75243 1316,488.00235,213.11736,23.860687,58.250473,99.71104 1316,140.6667,217.21388,24.361359,68.11174,99.37923 1316,33.40631,223.9945,24.528793,53.35257,99.323685 1316,380.73962,217.5713,26.763733,61.399033,99.32114 1316,356.51138,225.5838,28.12143,67.84845,98.89795 1316,580.2408,216.69055,35.155212,85.9389,67.981125 1316,63.132618,210.78456,25.385113,63.044388,44.989815 1316,606.39087,225.31374,29.298523,71.8969,41.362896 1316,21.386063,222.44318,17.00259,52.161804,37.53568 1316,3.8943565,196.37292,30.776402,80.929596,29.912577 1316,607.0339,8.580283,32.112793,52.955025,1.5114953e-05 1316,1.3177865,4.2396064,20.02933,65.054886,2.4961527e-10 1317,154.54422,219.24597,31.771072,75.35245,99.95284 1317,72.3764,217.84956,80.45862,152.38383,99.91404 1317,462.25262,241.21494,62.102966,126.86386,99.910934 1317,304.78033,223.35771,29.20755,64.6667,99.909615 1317,201.61055,222.443,52.526962,134.95428,99.88777 1317,44.51704,215.6407,35.173298,71.32143,99.760155 1317,514.4554,217.68822,22.72931,52.55522,99.571075 1317,323.86215,219.62724,32.03232,66.42308,99.42329 1317,17.586592,219.30313,26.514574,57.213165,99.41437 1317,121.975655,217.04137,31.062233,79.39876,99.384224 1317,568.0603,219.49243,25.891235,67.99094,98.9926 1317,469.1398,212.88231,21.775513,55.40889,98.67419 1317,435.56213,218.67894,24.306946,56.458084,98.51138 1317,526.16516,240.6195,48.30017,105.10382,98.45454 1317,409.36392,218.30083,24.224304,55.80394,98.19694 1317,483.30902,213.49974,28.64093,62.927444,96.66401 1317,547.88495,219.96838,28.276917,74.23602,89.10818 1317,32.18684,214.14857,24.710636,60.446,82.22636 1317,502.29678,213.29398,22.353485,53.125153,76.69741 1317,81.1414,209.1241,26.559853,72.57341,71.54449 1317,425.40323,220.30634,20.084534,51.556488,47.562546 1317,5.4644027,218.33762,20.229979,56.251953,41.561832 1317,140.59949,215.60205,20.374817,66.92871,24.945276 1317,596.7563,223.13184,33.510986,74.58536,4.118915 1317,586.57306,214.776,23.094727,58.8602,0.03649698 1317,500.2608,216.10262,86.39783,217.97704,0.0023280426 1317,607.5337,8.078993,31.504578,51.474075,1.5306927e-05 1317,1.3849585,4.025469,19.989773,65.433205,2.2918832e-10 1318,198.67567,222.7166,76.314865,142.59532,99.97337 1318,559.2371,222.65941,27.83197,70.824875,99.939384 1318,269.74634,218.8041,26.294067,66.93388,99.93026 1318,508.6591,216.59856,24.178802,52.88472,99.83222 1318,435.44702,215.16946,25.488708,57.156555,99.813095 1318,378.72318,218.76985,23.238983,54.620255,99.736015 1318,579.34296,215.2688,32.74109,80.294464,99.7334 1318,355.48807,218.13103,24.307281,59.360703,99.70135 1318,116.22146,222.40735,58.561226,133.54178,99.6795 1318,67.78566,213.91887,33.880997,79.47978,99.43867 1318,539.2488,215.19139,22.83081,49.65291,99.167 1318,473.2898,214.98386,18.652618,52.986237,98.796776 1318,21.751835,210.21872,35.767452,75.75577,98.77531 1318,109.94927,219.50183,29.478172,73.53781,98.15059 1318,499.66742,215.67355,17.402588,51.62561,93.68487 1318,285.2188,226.47017,23.969269,55.39952,91.33545 1318,144.47063,217.62747,28.081207,75.91681,91.16429 1318,4.871884,209.7288,23.036541,56.41411,90.28929 1318,611.7176,223.71347,27.16687,67.66431,89.011475 1318,95.31384,223.39268,24.124634,68.08507,88.05051 1318,127.440475,219.50552,26.330154,85.075165,19.270174 1318,40.612797,207.09818,30.456875,65.282135,1.9888725 1318,607.69806,8.913526,31.397339,50.010727,1.3973501e-05 1318,1.8278793,417.868,34.972115,81.381744,1.3023314e-06 1318,1.3437728,4.1058335,20.144266,65.02727,2.479081e-10 1319,337.786,225.2961,77.72305,145.66109,99.97199 1319,126.13964,221.88222,28.687233,64.83998,99.93404 1319,233.86504,222.3361,25.250961,60.53578,99.90892 1319,468.36575,210.3494,23.523163,63.479004,99.895454 1319,101.72344,218.96715,25.670624,65.91496,99.8697 1319,8.901341,223.91432,68.34707,143.54887,99.86317 1319,576.7191,214.93668,31.311157,84.48474,99.78611 1319,510.0822,212.8379,21.494019,52.494614,99.656654 1319,283.2951,215.12303,25.35852,56.857925,99.64998 1319,525.9415,215.24146,20.69226,47.502075,99.36825 1319,299.16534,214.71654,29.827362,58.236588,98.96153 1319,596.5968,218.32457,28.510925,76.39421,97.90922 1319,490.887,214.48566,24.165863,57.711273,96.23254 1319,246.64986,220.78363,30.614273,57.476532,95.797295 1319,50.75801,207.63136,34.658295,82.833084,87.81774 1319,376.49274,215.18826,25.130646,60.21759,79.90395 1319,9.5307455,216.16656,29.394741,68.545074,74.855385 1319,88.846924,217.77925,22.613075,60.722153,13.503553 1319,623.0548,233.3282,16.091858,56.28328,0.3753518 1319,1.9296175,197.04451,19.94303,157.11534,0.01649951 1319,26.020586,145.84923,159.38048,246.96767,0.00032415683 1319,598.5429,410.28442,40.457703,87.74078,1.3893985e-05 1319,607.41864,8.469586,31.689026,51.363235,1.10468045e-05 1319,1.9173535,418.37183,34.5479,81.0036,7.91877e-07 1319,1.3253801,4.3718653,19.940552,64.97699,2.2739481e-10 1320,105.13814,220.59126,29.213608,63.874252,99.94846 1320,464.0319,225.58081,73.18155,148.22699,99.93666 1320,391.66156,218.90625,25.038849,56.893097,99.93482 1320,84.274216,218.93974,25.97068,65.619705,99.92571 1320,208.50099,221.02185,23.078995,57.609344,99.83909 1320,241.77943,214.58325,23.992477,54.508453,99.525406 1320,53.433628,212.39139,27.784618,66.72339,99.19093 1320,0.6042139,212.95667,38.877632,90.089325,98.82721 1320,30.070755,211.6584,27.98919,69.7426,96.580246 1320,221.18182,219.83633,24.035156,57.53543,95.70559 1320,69.690956,214.7999,23.26529,63.72885,92.96589 1320,597.7013,222.37492,30.686401,71.07088,87.504524 1320,509.1101,215.67192,22.16681,54.014633,87.39149 1320,469.92032,214.8487,22.920013,54.095276,75.9396 1320,616.75073,222.45956,21.836853,73.053894,2.117055 1320,484.3419,215.72398,36.73227,87.65102,0.28974184 1320,513.44965,282.35513,48.70111,138.81561,0.00038303033 1320,54.69603,174.92763,95.320724,184.08131,0.000115752446 1320,608.76874,433.96597,30.37793,69.73801,7.194073e-05 1320,607.2616,7.804891,31.88507,53.286674,1.3128717e-05 1320,344.547,154.5882,129.26389,235.22318,9.594518e-06 1320,1.1439462,441.60095,22.028904,61.940735,1.3670749e-06 1320,3.5441341,395.871,55.829697,98.451294,1.0232064e-06 1320,1.2921818,4.379574,19.824707,64.96678,1.702527e-10 1321,62.031693,215.66888,26.161491,67.50192,99.93658 1321,526.1746,217.47914,23.576172,55.511673,99.92654 1321,85.079315,221.14651,30.719818,61.196106,99.90715 1321,165.99396,218.05035,25.237823,53.956543,99.899345 1321,185.04042,218.95845,27.423874,58.32109,99.7009 1321,480.26913,213.28969,22.079376,57.57637,99.68942 1321,405.0217,220.39868,23.463806,50.959442,99.30449 1321,595.224,221.32735,36.01996,68.03856,96.90218 1321,508.00272,214.91998,18.387482,55.71823,96.179085 1321,24.25936,216.56282,22.66014,62.197464,86.10629 1321,463.95773,212.26694,21.364777,55.73587,78.95018 1321,9.305013,215.87926,21.86362,62.448715,17.390215 1321,44.543602,213.50928,24.711075,66.041626,1.3873879 1321,616.0127,231.0668,23.133972,71.48447,0.12309437 1321,1.2834193,224.51698,13.908558,51.99504,0.08672568 1321,585.53784,203.30972,50.99164,163.70905,0.014680316 1321,2.6409514,158.26256,34.474697,152.49095,0.014172522 1321,41.732716,194.3643,61.976246,108.20033,0.0022966303 1321,503.0136,181.86195,78.00397,203.16646,0.0004667513 1321,513.6271,280.84503,50.44586,149.63342,0.00027786332 1321,455.42258,169.4979,85.340485,187.36172,0.00019146796 1321,8.72058,152.17076,129.37885,240.01277,0.0001379282 1321,149.42462,173.7721,71.9884,164.27881,4.087705e-05 1321,1.4670687,226.26797,32.937622,209.34177,3.2041284e-05 1321,359.01907,151.09291,131.39978,230.84706,2.6893405e-05 1321,586.2799,394.59006,52.08844,98.22226,2.1616135e-05 1321,607.2556,7.739019,31.891052,52.49413,1.22887795e-05 1321,1.5740097,365.9007,32.9605,125.1066,2.0477298e-06 1321,0.8194141,440.30948,22.288704,63.438354,2.0474408e-06 1321,1.7872965,7.9653225,35.401806,85.350395,5.023207e-10 1321,403.0794,0.0,45.57364,63.076836,9.201588e-12 1322,67.65599,218.21599,30.997063,63.010483,99.936646 1322,551.34674,213.71924,26.992188,60.439484,99.93489 1322,45.900585,217.40132,27.882122,63.70961,99.91361 1322,155.64587,219.78957,30.457031,54.391342,99.61413 1322,127.757126,219.17618,22.86206,50.241974,99.50917 1322,482.09995,214.54013,21.745209,55.822052,99.416336 1322,517.369,216.78851,21.764465,56.37198,99.06372 1322,470.63266,212.75876,20.743225,56.055756,97.71384 1322,507.9794,218.40758,18.426422,52.276382,92.72653 1322,8.160478,213.62747,24.831284,66.592255,87.931046 1322,611.2596,231.1641,25.880615,58.053436,85.0845 1322,587.5977,214.50278,21.772095,50.50659,53.1598 1322,145.95985,220.82318,18.547028,47.065033,50.3575 1322,21.949705,218.06477,26.111418,56.99666,43.201347 1322,416.09668,219.602,20.931702,49.506912,27.184391 1322,456.27997,210.13954,21.165771,49.05571,16.639923 1322,444.7107,212.0214,19.178436,46.555267,0.25326455 1322,1.0784627,220.9879,10.895054,55.373856,0.14909881 1322,600.5593,215.91505,21.443909,47.34279,0.13003331 1322,174.00859,217.53906,20.732834,51.44278,0.03172945 1322,2.1312182,172.9019,20.78004,131.58122,0.02765697 1322,428.77768,218.59666,22.746918,46.767776,0.025520392 1322,599.682,205.073,38.869812,142.37183,0.023427919 1322,502.9621,154.7672,126.23761,234.92198,0.0003701802 1322,513.4193,283.1549,50.33307,146.48569,0.00019720149 1322,14.131511,167.41003,98.19903,203.30188,0.00017997356 1322,417.21442,163.9176,26.66861,60.72003,0.00015617092 1322,453.91318,173.48706,86.70328,183.6557,0.000132009 1322,1.2713583,219.16321,33.961624,221.3128,8.595033e-05 1322,608.808,434.76364,30.338684,69.53763,5.6670262e-05 1322,607.2802,8.504157,31.684814,50.41382,1.9336449e-05 1322,136.40543,172.71599,91.23044,203.47414,7.622619e-06 1322,1.6298243,365.93658,33.090473,124.74213,2.613228e-06 1322,0.9281983,440.1801,22.384249,63.585205,1.7326727e-06 1322,1.3656071,4.1824446,19.641985,65.27168,2.4480035e-10 1322,402.97726,0.0,45.447327,63.10529,7.72206e-12 1323,33.563747,212.39098,31.526218,66.510605,99.90032 1323,54.20446,214.9541,30.894226,63.163696,99.87313 1323,135.60785,218.40039,25.811417,56.46704,99.72478 1323,526.8298,219.8754,22.806885,55.138947,99.54884 1323,579.82306,214.46634,25.89801,59.305054,99.43236 1323,515.091,217.44638,22.119812,54.47827,98.70546 1323,427.03738,219.43977,22.848145,50.032486,98.041725 1323,476.882,209.7165,23.515564,57.143173,96.754585 1323,94.7692,214.65117,25.193443,54.728928,84.176575 1323,609.78046,217.0705,25.868896,58.490997,74.79435 1323,20.837507,209.79349,25.341501,64.82486,34.911697 1323,2.0962288,170.39188,39.358173,110.2558,18.295101 1323,600.75916,193.76405,37.456116,152.66704,0.015348977 1323,407.64352,219.01735,20.531708,45.147537,0.012809219 1323,6.912966,163.01958,94.11592,196.04839,0.00044411977 1323,500.14984,178.68819,80.68793,199.09755,0.00028741316 1323,1.0510058,200.7518,20.328777,148.85843,6.519038e-05 1323,608.83325,434.0962,30.313416,69.77908,5.932613e-05 1323,385.27005,150.47122,131.85794,212.13821,4.1520612e-05 1323,606.9898,7.923192,32.139404,51.89696,1.5840033e-05 1323,109.593414,166.0681,87.881546,188.91948,1.022641e-05 1323,415.2712,163.93819,25.534576,64.87398,6.2866006e-06 1323,1.668588,365.727,32.754135,125.270935,1.9258412e-06 1323,1.0620866,441.30313,22.106602,62.203766,1.2782606e-06 1323,1.3151702,4.2651663,19.892073,65.06312,2.1427016e-10 1323,402.64185,0.0,45.897064,63.746185,5.2062256e-12 1324,526.1047,217.77396,23.557861,59.452423,99.90713 1324,21.560764,216.13828,32.014168,60.83902,99.90309 1324,46.992737,217.28835,23.658257,57.460373,99.29934 1324,114.77738,216.82574,24.790367,56.03366,99.16214 1324,587.0242,210.43408,25.462585,61.461975,97.26116 1324,72.5806,212.31639,23.929298,57.607895,97.24894 1324,435.10156,215.55814,24.353302,55.29486,96.97444 1324,471.9593,211.10649,24.239777,54.517624,95.36416 1324,456.22833,208.12433,18.15979,45.767,76.27466 1324,607.24835,215.27003,30.021973,57.441452,74.21344 1324,64.49858,216.96126,16.692177,52.344467,35.11859 1324,488.79495,211.28183,18.133911,47.23694,4.4778633 1324,7.7086754,211.53348,21.25544,59.833496,0.54403687 1324,2.059287,166.58546,39.91822,115.91539,0.042137943 1324,593.68353,168.01112,43.129456,170.42265,0.016834108 1324,1.4378825,210.42796,13.822654,60.3564,0.014722652 1324,19.590322,191.37791,68.40569,110.46779,0.0016171627 1324,505.20303,183.83246,78.63492,197.039,0.00027942852 1324,6.13168,146.04982,124.105896,248.02992,0.00023354887 1324,415.82565,163.73277,25.14914,63.202682,8.526877e-05 1324,391.25494,146.63779,130.36316,229.85272,8.384559e-05 1324,608.83594,434.4089,30.31073,69.74481,5.8350026e-05 1324,0.8074781,204.12558,20.273005,143.29675,4.3657208e-05 1324,87.54311,169.00229,89.77541,190.28488,1.1052073e-05 1324,607.639,9.102398,31.47882,50.150707,1.0211558e-05 1324,1.5762688,365.71683,33.020733,125.55588,2.0724526e-06 1324,0.89016277,440.30646,22.364107,63.5495,2.0019736e-06 1324,1.7962778,7.825817,35.60999,85.520676,3.3465858e-10 1324,402.98914,0.0,45.762756,63.65228,1.1622982e-11 1325,539.75555,216.75383,24.608765,63.070084,99.89293 1325,7.4414186,213.99457,31.938423,59.665222,99.834404 1325,32.548923,217.40988,26.873714,55.51358,99.700066 1325,485.71225,210.98842,21.112335,53.797928,99.63444 1325,304.55475,215.41695,24.337982,49.45543,99.619255 1325,569.7459,216.3298,22.682434,54.15454,99.41911 1325,88.75372,218.70667,28.434807,51.973755,98.29328 1325,52.32265,215.15782,22.37791,52.860733,96.66648 1325,591.5177,217.4642,18.78418,48.885925,72.79075 1325,556.6751,217.58905,23.595276,57.499115,58.526333 1325,446.65057,213.89665,22.08255,51.512344,49.787045 1325,77.52692,213.58868,20.751984,48.88275,44.56751 1325,463.49963,209.76045,20.870575,49.66725,3.648136 1325,2.295345,213.2756,13.112591,57.81964,0.07413731 1325,2.482317,168.264,21.870268,121.51236,0.015032755 1325,617.5457,228.71536,21.600952,85.97012,0.0029185573 1325,12.883555,188.44206,69.14382,111.26265,0.002464031 1325,599.15546,193.7336,38.34192,158.97899,0.001059834 1325,541.2717,172.71115,87.71106,194.11499,0.00070711604 1325,500.12366,230.99396,78.32623,217.43411,0.0004651924 1325,483.12408,132.53099,27.71521,57.11972,0.00014594472 1325,463.99875,163.90706,85.53482,199.72075,7.142467e-05 1325,1.4052132,212.29553,34.16405,221.0434,3.1895855e-05 1325,39.42075,143.04315,147.006,243.48212,2.5481015e-05 1325,286.97662,163.87073,85.530304,221.80682,1.9073661e-05 1325,586.131,395.59814,52.346558,97.5791,1.9034194e-05 1325,584.34937,12.285488,54.19275,123.141464,2.6575115e-06 1325,1.6326449,365.90207,32.600197,125.26361,1.8541309e-06 1325,1.0837712,441.51053,22.009924,62.06604,1.4811209e-06 1325,1.7926042,7.675576,35.5073,85.98833,2.878605e-10 1325,380.50278,0.77143556,44.60428,57.77505,2.7391131e-11 1325,414.3798,0.0,45.123352,63.56995,7.0069046e-12 1326,550.2972,217.7191,25.858704,67.77925,99.91333 1326,253.23466,216.8772,22.130783,46.943085,99.88374 1326,1.6198056,213.94858,30.556414,58.83606,99.49535 1326,565.94244,221.0846,20.828674,59.818726,99.436005 1326,497.015,213.1193,17.712952,48.144806,99.41615 1326,25.7676,212.20932,32.94751,60.76587,99.36075 1326,485.78595,213.00288,18.594025,47.719223,98.131584 1326,72.700455,215.79103,27.481293,54.851242,96.00943 1326,468.8284,212.72543,18.155304,46.77414,81.736015 1326,449.26666,212.55566,21.51532,48.594666,56.846256 1326,598.1543,220.24573,22.630127,46.772766,48.963936 1326,58.51496,213.27391,24.98323,58.309708,3.3443437 1326,576.0903,218.5319,22.90155,52.40352,0.23707727 1326,2.352251,162.99425,40.254486,154.67519,0.02234726 1326,610.08777,200.37709,28.978699,66.665726,0.009106035 1326,598.0546,187.23528,38.44281,163.39787,0.0020732689 1326,535.8842,176.99306,88.023926,185.95705,0.0012407696 1326,509.49866,274.57635,58.82135,153.4548,0.00014855975 1326,471.60263,180.04381,53.248444,111.58577,0.00014454917 1326,5.5265594,130.70192,95.40983,256.8094,0.0001072886 1326,414.4983,164.76154,26.044678,63.26216,8.719193e-05 1326,608.7073,434.721,30.439392,69.08035,6.932362e-05 1326,449.32367,147.03969,132.67047,217.55531,5.092919e-05 1326,1.1889348,94.59726,21.033243,181.7539,4.002961e-05 1326,233.48941,161.09192,88.47113,221.41559,1.4069083e-05 1326,0.7256576,261.91574,19.846981,152.54623,7.465723e-06 1326,584.4014,14.077051,54.23999,121.815834,3.5434682e-06 1326,1.726517,366.31052,32.99372,124.40195,2.4401302e-06 1326,1.8060694,8.122171,35.35004,84.84573,3.3219993e-10 1326,381.06656,0.8771289,44.274597,56.951427,2.1760612e-11 1326,414.15927,0.0,45.22943,64.54711,7.072941e-12 1327,531.94763,215.99059,26.407166,53.193924,99.97693 1327,250.19637,216.90135,23.984146,45.55635,99.93871 1327,564.77563,216.3781,24.906982,70.411545,99.86809 1327,493.20996,213.75557,18.02536,46.020096,96.44944 1327,5.404362,210.74216,22.943483,57.563416,93.41551 1327,37.875984,216.7084,24.770874,55.889313,92.93763 1327,578.5266,221.77287,22.5932,62.24391,88.507774 1327,52.23308,215.61496,29.265095,56.501404,86.61372 1327,19.960703,214.48782,25.511248,55.53015,84.21455 1327,470.8194,212.63948,20.341766,48.17552,69.479355 1327,597.71027,214.57005,22.334656,53.222824,39.472424 1327,450.2047,210.10909,19.971191,47.519394,16.839426 1327,1.1168449,218.33339,12.304453,48.39232,0.20263773 1327,3.245853,175.76021,48.39029,117.58977,0.04294143 1327,212.27956,215.65172,21.57724,47.429947,0.020168224 1327,565.97424,206.44925,48.155457,128.62033,0.014888021 1327,615.1486,207.96664,23.998047,56.920593,0.007963465 1327,598.24744,186.27858,38.28369,163.44249,0.0013108418 1327,515.29285,175.23212,80.7038,203.02548,0.00064013456 1327,418.16763,164.62454,25.519928,59.38452,0.00037160743 1327,509.92407,275.13242,58.066162,152.20703,0.00021853144 1327,5.4124546,156.74855,102.059166,213.36418,0.00012145222 1327,0.6728426,206.13823,21.061909,172.19261,7.847704e-05 1327,608.8271,434.2273,30.31958,69.88333,6.532307e-05 1327,1.1150489,88.48993,20.700321,175.89694,1.403471e-05 1327,231.52151,172.34282,77.044525,162.52672,1.1823799e-05 1327,0.9618791,323.46896,19.45388,128.37589,6.6603943e-06 1327,0.8577865,421.5453,17.771933,80.54706,2.6493933e-06 1327,584.5404,11.681562,54.182434,123.95041,2.452224e-06 1327,3.4112468,396.74396,55.97594,98.28479,1.1252761e-06 1327,469.3321,5.270026,47.913025,56.773438,5.25976e-10 1327,365.99323,3.0478485,45.221283,55.364094,4.6039306e-10 1327,1.8283187,8.264401,35.422066,84.56871,2.987082e-10 1327,402.9348,0.0,45.759247,62.66233,1.1612125e-11 1328,518.7996,212.85889,24.65979,53.873993,99.95159 1328,579.67285,219.62694,27.030579,70.97615,99.89045 1328,16.20001,211.50194,34.632545,61.924393,99.73423 1328,36.41989,209.23306,27.789726,59.200684,98.26136 1328,597.6971,223.98886,26.65326,61.943848,98.149025 1328,471.79907,213.53265,20.373535,50.539124,95.50525 1328,502.85,213.6138,23.865631,47.149994,87.72909 1328,6.8884554,211.59909,21.67865,51.02997,51.64026 1328,178.46031,217.71791,21.889038,47.163254,46.00543 1328,387.49603,199.25343,22.691406,56.56839,0.18407774 1328,571.1872,203.4913,55.039673,119.9935,0.13197164 1328,1.6993845,204.32936,12.774333,56.639206,0.044440128 1328,70.32154,208.2313,20.3777,45.968216,0.021443397 1328,5.1023555,187.88196,67.0259,113.045685,0.012999798 1328,213.82172,218.4348,23.160736,48.596756,0.005643978 1328,617.9936,219.55237,21.153076,77.03104,0.0037905658 1328,1.9964633,160.53156,20.765236,126.20889,0.0026294624 1328,507.91287,279.66742,60.084686,145.07993,0.00034383353 1328,476.5524,158.69876,129.11984,240.76465,0.00029325718 1328,415.56613,165.15024,24.868866,60.990265,0.00010721006 1328,7.2983236,132.22574,112.64116,256.01288,9.6702446e-05 1328,611.8331,76.85487,27.313538,126.26164,6.550816e-05 1328,612.6519,375.4849,26.494751,123.14789,3.8478807e-05 1328,1.1274341,225.61055,34.08585,215.72337,1.6746626e-05 1328,1.238405,351.2587,18.573128,128.12918,4.87456e-06 1328,584.49664,12.980463,54.259033,123.41175,3.192543e-06 1328,154.85448,169.38766,89.98253,206.63763,2.3330651e-06 1328,1.086268,441.3805,22.088932,61.89328,1.7134896e-06 1328,3.4764829,396.56387,56.10011,98.23337,1.1181728e-06 1328,365.56363,2.50736,45.72708,56.303898,6.623264e-10 1328,469.15704,4.8319664,48.314087,57.257828,4.888125e-10 1328,1.7499951,9.153278,35.277233,82.25285,2.2700783e-10 1328,402.9122,0.0,46.06192,62.714508,9.100252e-12 1329,593.7764,223.22478,28.705017,66.420364,99.793076 1329,484.35507,214.80753,20.182129,49.373352,98.38242 1329,504.67914,212.98703,19.233032,48.506683,98.14616 1329,45.621178,206.42274,22.913414,48.366714,97.69943 1329,473.10553,216.25375,18.856934,47.6976,97.04762 1329,6.871612,209.42545,27.05199,61.44153,95.48903 1329,612.34467,228.8657,24.588135,54.87941,89.571014 1329,27.250265,213.3908,20.255995,50.79341,88.45659 1329,77.54055,208.84946,21.90371,47.392,1.5096765 1329,1.1907092,194.20929,16.53373,68.815186,0.46457252 1329,589.5784,188.07454,44.19507,151.8679,0.07220206 1329,2.358358,161.29922,38.444294,150.7232,0.013645348 1329,179.32446,214.98497,22.345947,50.971664,0.004563273 1329,507.39273,284.73126,60.794647,140.34341,0.00048753226 1329,490.60812,160.41936,82.26773,214.93413,0.00024406715 1329,543.03125,141.10164,91.98804,247.03596,0.00015098098 1329,6.2792907,127.576904,97.30242,254.42358,0.00010704465 1329,608.80273,434.6012,30.343933,69.81445,6.402662e-05 1329,611.8364,75.310196,27.310242,132.89328,2.9590254e-05 1329,607.50854,8.210596,31.54663,51.227287,1.563141e-05 1329,0.7318229,252.65245,19.722507,154.71825,1.2832041e-05 1329,1.2170793,357.75546,18.451225,129.40933,5.0319436e-06 1329,584.3248,12.497969,54.460693,122.94763,2.252039e-06 1329,3.4257684,396.39453,55.807564,97.79089,1.1763744e-06 1329,469.31903,4.689896,48.203247,57.130627,6.754309e-10 1329,1.9818767,8.372975,35.492714,84.02069,3.0749267e-10 1329,366.1216,3.0838218,44.874084,54.618694,2.0550031e-10 1329,403.0334,0.0,45.736115,62.744297,9.249062e-12 1330,502.4288,216.24477,22.78006,51.07292,98.547424 1330,614.82263,225.9136,22.818298,63.57779,98.531624 1330,483.1689,220.60738,21.176788,50.604538,98.507034 1330,7.5998564,212.31827,22.880028,51.200073,92.37416 1330,25.037989,208.37897,17.437624,47.84482,81.18212 1330,597.56464,218.75183,27.257141,57.12552,81.072014 1330,47.62201,213.74611,23.638458,45.12581,64.04782 1330,34.882973,212.67433,18.901512,47.874466,17.804398 1330,2.6718848,156.89064,37.815674,110.48067,0.07003279 1330,603.5955,193.66663,35.551147,181.46997,0.05647097 1330,1.37219,209.68349,11.768629,46.206573,0.018793982 1330,474.8759,200.23611,45.653717,92.15021,0.0023061621 1330,108.78654,219.87073,23.690102,49.412964,0.0008015716 1330,515.07825,288.2102,58.03717,143.4498,0.00042645502 1330,1.2605388,193.56137,20.72314,144.67374,0.000327981 1330,551.09436,111.23577,84.416504,266.11426,0.00029755163 1330,479.53137,165.54727,71.967834,173.84985,0.000225719 1330,4.9797626,152.87695,75.182465,204.11966,0.00018219402 1330,610.6946,98.38861,28.452087,177.68576,4.8667385e-05 1330,609.02374,434.68945,30.122925,69.199524,4.4186152e-05 1330,607.70294,9.594293,31.176697,48.663666,1.8541175e-05 1330,1.0569247,233.70448,33.63246,213.42455,1.0192897e-05 1330,602.05804,26.981537,36.31958,143.36707,9.4707e-06 1330,1.145551,386.4501,19.055817,110.50641,7.226923e-06 1330,3.7599285,348.47974,57.823944,137.84589,2.069273e-06 1330,1.3078516,14.767481,18.831991,145.03848,3.874771e-09 1330,359.9353,3.5905013,46.568024,56.663525,2.0031163e-09 1330,481.8148,4.2929134,49.944733,56.190514,1.8123832e-09 1330,455.86038,5.001208,46.14157,58.59617,1.5182325e-10 1330,1.5401872,3.629258,30.409214,69.00845,1.2184645e-10 1330,400.85785,0.0,65.09439,59.965946,2.6159245e-11 1331,526.81647,218.63919,22.762817,52.096313,99.1321 1331,515.41144,223.26028,19.676086,48.869873,98.324265 1331,3.2778027,212.2261,22.246908,51.049744,96.96091 1331,501.29663,214.06613,23.306885,57.401337,74.034096 1331,67.20646,212.01924,27.87442,60.212997,62.815243 1331,603.4606,334.95193,35.686096,147.0521,13.617836 1331,405.78323,207.50159,22.379303,54.423462,2.6601644 1331,623.8409,223.51698,15.305786,45.22606,0.7609217 1331,52.198383,213.34502,26.171543,56.47664,0.08216865 1331,617.79376,337.1352,21.352905,62.672882,0.03861987 1331,1.9269817,179.93867,27.70623,140.06288,0.020918902 1331,613.0206,204.24042,26.126038,94.87372,0.00538073 1331,88.37757,219.7672,21.890518,46.348312,0.0035643196 1331,619.832,392.14908,19.314697,62.276093,0.0022299285 1331,501.5872,191.76561,54.161163,107.06047,0.0018913997 1331,588.24567,145.31264,49.474915,214.07076,0.0003896391 1331,607.972,13.8706,31.174683,119.98792,0.00038202124 1331,3.491224,115.91702,79.286,256.21075,0.00010733271 1331,612.36914,72.402275,26.777527,132.59875,8.91788e-05 1331,0.4652596,242.7822,20.62623,165.91422,2.0678533e-05 1331,0.9307048,362.14563,18.928667,131.56067,1.42680055e-05 1331,614.2109,1.208514,24.935791,45.94544,1.3898584e-05 1331,471.19846,140.31577,132.0026,223.29294,5.870877e-06 1331,3.2674088,340.7201,58.088036,145.29965,2.7470937e-06 1331,1.2733505,18.937643,32.200085,227.42688,7.9424805e-09 1331,372.61246,4.412085,45.831512,52.804504,6.287788e-10 1331,468.72177,5.841397,45.644073,59.240078,4.6463805e-10 1331,497.84772,5.192837,44.112732,52.6975,3.020149e-10 1331,2.1499577,9.707754,34.804573,83.81848,2.3461266e-10 1331,435.0917,2.0606544,45.441376,64.16394,1.337593e-11 1331,403.1077,0.0,45.057312,55.33894,1.0906537e-12 1332,557.6091,228.36008,22.41809,55.035553,99.83444 1332,11.776415,209.63058,41.172325,79.427704,99.77206 1332,35.81965,214.32732,39.44162,72.0439,98.28049 1332,517.28845,215.35028,24.831665,53.276886,96.137825 1332,570.777,228.73839,21.055786,53.675674,85.13541 1332,1.1463965,213.17737,23.48431,58.14984,22.350033 1332,425.03925,205.86673,23.689789,59.239746,7.5800033 1332,11.325639,173.3123,73.036156,154.6996,0.0058696684 1332,1.7384278,187.19154,34.038303,163.30507,0.00078621635 1332,526.30743,120.36879,39.859253,72.64549,0.00049040566 1332,183.94981,221.3887,20.072372,45.23459,0.0004767707 1332,544.3626,206.74132,56.351685,96.533646,0.0004716955 1332,610.6093,224.11534,28.537354,144.90648,0.00045334286 1332,610.94324,132.17305,28.20343,139.72987,0.00032945815 1332,610.48505,342.05194,28.661621,145.64447,0.00019009247 1332,510.1653,151.58461,124.47031,233.0843,0.00015392622 1332,608.5524,441.6422,30.594238,63.84427,0.00011672997 1332,608.5971,0.64537114,30.54956,146.67531,3.565132e-05 1332,0.8563428,283.13202,19.992836,139.18338,5.994587e-06 1332,0.9484001,367.77676,19.516888,127.26849,5.465729e-06 1332,3.1881902,315.15558,57.68202,164.67273,1.3098147e-06 1332,1.4619963,55.785275,20.181868,159.61961,1.9211919e-07 1332,584.2662,3.2594533,45.366028,52.046654,1.6488143e-07 1332,2.430368,11.741641,34.302555,81.62612,3.223233e-10 1332,469.4347,4.206361,45.926453,63.324615,2.9900063e-10 1332,525.9314,7.321678,42.72583,47.53245,1.2085766e-10 1332,400.8171,3.859603,44.54013,48.798283,4.4449767e-11 1332,444.14142,1.9117091,43.791046,56.68366,1.0654333e-12 1333,600.42017,218.9691,34.56256,75.84752,99.928024 1333,582.98157,227.30173,30.249512,68.84866,99.92748 1333,530.2258,213.30594,21.683655,57.641113,99.892456 1333,513.1314,211.57101,21.180176,55.31613,99.830666 1333,543.5339,213.39807,19.659058,55.7157,99.32552 1333,623.44165,215.3191,15.705017,61.626328,0.46822137 1333,422.3908,219.4654,24.719604,47.34076,0.395247 1333,534.3253,110.4212,23.61499,47.76854,0.02902444 1333,28.658829,213.9285,24.191864,46.385376,0.019467259 1333,438.31403,220.91788,27.689697,55.07083,0.010129536 1333,72.401215,200.86746,23.200684,45.80876,0.009143076 1333,573.778,175.85262,60.34662,177.08586,0.0034867623 1333,2.869878,170.17554,35.165565,111.0538,0.0025539221 1333,11.318782,211.67973,22.298107,49.346603,0.001668754 1333,507.7196,197.16771,56.213196,97.28459,0.0010575714 1333,465.16943,221.72412,20.608337,49.022278,0.00066696835 1333,465.35892,148.73996,20.392761,46.8985,0.00030831838 1333,608.13336,84.65187,31.013306,194.92354,0.00021469416 1333,616.4277,258.73593,22.718994,93.18906,0.00017413983 1333,615.9367,44.42553,23.20996,91.52047,0.00010062429 1333,116.36834,232.55415,21.694542,49.65599,9.829117e-05 1333,602.75146,290.42422,36.395203,195.83078,8.4822284e-05 1333,608.51086,442.2549,30.635803,63.687805,5.637503e-05 1333,483.52747,142.52484,135.45898,227.59756,4.3312095e-05 1333,1.165166,210.23135,19.52495,139.26828,4.0334293e-05 1333,3.9330292,190.70471,55.98196,233.19281,3.0105164e-05 1333,1.026119,368.14148,20.494972,98.58295,1.3526839e-05 1333,596.1498,5.9705176,42.728943,96.00391,4.0705095e-06 1333,3.0914242,396.43228,56.48311,95.651215,3.8639128e-06 1333,0.9294881,440.4131,21.792624,63.41989,2.5296604e-06 1333,1.6665162,52.76225,18.213066,151.64922,7.896897e-08 1333,2.6947005,17.390638,31.606302,64.25804,1.8849506e-09 1333,475.69427,5.7603226,45.721863,56.23731,2.123174e-10 1334,566.02484,206.50816,24.423462,65.88405,99.747246 1334,543.97614,205.82253,22.561096,60.714584,99.61718 1334,535.2378,206.63205,18.629211,48.11075,55.031734 1334,437.97058,203.71748,26.911926,57.712326,35.26362 1334,423.89905,204.6922,26.195343,53.272827,5.6173844 1334,564.8964,75.391266,22.550598,48.970863,0.16790478 1334,449.40198,216.70792,31.587036,62.320282,0.131114 1334,583.659,209.89381,22.006165,54.187424,0.005127794 1334,621.8966,215.97614,17.250061,53.190277,0.0044955253 1334,497.1513,214.39665,35.441833,65.13722,0.0039820373 1334,528.5631,195.9866,65.02026,89.20691,0.003383401 1334,621.48895,65.21358,17.657715,54.17566,0.0015269314 1334,473.95163,207.08708,29.421295,63.527603,0.0014602349 1334,519.13586,215.04459,23.91388,56.511566,0.0009605643 1334,608.7367,76.209114,30.409973,152.19064,0.0008165178 1334,1.5019385,195.06456,17.613592,74.40929,0.00080771185 1334,611.7817,213.43776,27.36499,128.52852,0.0003330138 1334,395.50507,171.8601,25.251404,63.071274,0.00022667614 1334,516.1706,86.868286,24.173706,52.945145,0.00019698945 1334,491.8457,129.00513,140.0567,220.68442,0.0001456687 1334,611.387,375.53146,27.759644,125.79788,0.00010742846 1334,2.706771,172.72672,33.01688,173.16498,7.6016666e-05 1334,586.6517,227.97203,52.494995,253.78505,5.308582e-05 1334,0.9492115,325.39362,18.517506,136.1065,3.2773976e-05 1334,585.59436,20.84438,52.808716,109.8159,2.5632662e-05 1334,3.542596,255.4485,55.777733,214.49944,1.5602875e-05 1334,0.8958439,422.90262,15.902338,77.21478,3.1507725e-06 1334,2.6628468,28.835365,60.997597,274.3648,3.519138e-07 1334,590.4886,5.482005,45.268616,49.84202,2.1038917e-07 1334,1.6903499,61.095703,20.204649,163.73691,1.17895695e-07 1334,2.043252,14.614808,34.12463,70.569145,2.850023e-09 1334,495.82117,6.9600163,44.942566,50.478348,1.2557383e-10 1334,462.99075,6.1167707,43.588776,46.62161,8.958589e-11 1334,524.6762,6.497093,45.354614,49.963955,8.759914e-11 1334,564.7222,6.071888,45.403503,51.18232,5.5052636e-11 1334,273.7216,2.573457,40.383545,46.49307,4.5343276e-13 1335,619.2413,211.0071,19.905396,73.62947,98.1299 1335,477.68216,216.31094,35.922516,81.75339,81.23587 1335,453.35117,206.14278,19.557648,48.451263,63.599003 1335,417.62756,195.3394,27.771301,60.98842,16.851988 1335,601.14545,29.3164,34.023254,89.4294,0.22770944 1335,557.89856,86.391914,27.875305,60.98281,0.14534494 1335,623.0756,44.190002,16.071045,47.796524,0.012078409 1335,436.9135,203.6703,23.583832,51.74965,0.004206245 1335,603.5144,198.693,35.632263,179.90393,0.0025736894 1335,614.82166,63.84159,24.325012,85.129005,0.0006416761 1335,533.11816,197.21909,32.674133,67.96298,0.00047087038 1335,2.8270192,178.54398,34.645203,98.278625,0.00043080098 1335,560.7479,139.68411,75.82123,264.6058,0.00014528952 1335,610.74664,332.06836,28.400024,139.63962,0.00013628932 1335,433.61884,165.24301,84.40454,149.09454,0.00013039928 1335,1.2136878,203.242,17.725023,133.82462,9.8380915e-05 1335,609.2311,442.62814,29.915588,60.735046,5.7769525e-05 1335,588.56506,12.661771,50.07898,290.0241,4.9032154e-05 1335,1.2956088,238.6931,32.233044,191.71117,3.7252637e-05 1335,1.6905135,94.79929,21.273348,128.8457,2.0076104e-05 1335,0.84308106,360.34158,19.547766,131.76495,4.0845944e-06 1335,2.807054,32.84607,59.795372,254.25223,8.174613e-07 1335,5.405049,356.20303,79.76956,131.31381,6.800805e-07 1335,579.3445,4.1438675,44.457092,54.77619,9.122666e-09 1335,298.82986,4.666481,43.45111,45.463158,2.760399e-09 1335,2.2010467,13.646488,34.016792,74.58986,1.4166776e-09 1336,545.444,204.16602,27.264404,69.44562,99.956825 1336,526.44385,206.81635,24.204834,55.739838,99.35964 1336,514.0561,207.32758,22.431702,53.36551,30.392384 1336,567.6291,237.2879,47.47351,94.28784,1.7177 1336,582.00397,205.82253,33.306335,70.35503,0.4085544 1336,450.4181,198.8066,32.76178,56.68422,0.06636422 1336,609.96063,129.20088,29.186035,66.85805,0.014008191 1336,622.0454,263.00333,17.101257,57.274017,0.008937413 1336,566.5883,209.05513,22.859985,56.860764,0.004787565 1336,611.1101,201.01923,28.03656,116.78516,0.003478841 1336,506.24948,188.5229,60.87668,101.5974,0.0034563676 1336,617.85754,53.993343,21.289124,64.81001,0.002051162 1336,584.88275,179.96986,52.26581,195.77885,0.0013497717 1336,1.8559847,209.3121,19.64936,82.22031,0.0010058024 1336,1.2068657,173.37756,13.259807,55.76494,0.00038011698 1336,495.11194,150.84607,136.90662,216.43918,0.00022800427 1336,613.70483,35.299427,21.976562,47.416172,0.00013505046 1336,599.21594,32.249825,39.930725,227.48727,0.00011081261 1336,3.6587453,100.2472,55.073925,250.10135,0.00010818402 1336,617.3591,165.91153,21.787598,85.588425,9.978297e-05 1336,612.3815,316.19492,26.765198,142.9704,9.5115196e-05 1336,596.8561,33.73635,29.719482,79.25985,6.1719606e-05 1336,609.1873,439.4769,29.95935,66.19025,3.5297347e-05 1336,1.7087574,106.23572,20.328438,157.88327,2.997676e-05 1336,585.2288,391.9798,53.917847,103.23413,1.7722072e-05 1336,587.63007,36.003445,22.529175,48.938076,1.4238387e-05 1336,0.81882083,347.74146,18.863335,144.83844,1.3236496e-05 1336,1.8975081,258.3587,57.49687,218.60324,1.0039331e-05 1336,1.2112167,246.69641,19.334908,163.94296,2.1560254e-06 1336,2.187705,429.03995,43.959972,69.71503,6.98913e-07 1336,0.89497113,13.402458,9.783722,81.085304,1.4786382e-08 1336,2.0031347,21.6325,30.588501,154.28784,1.0346627e-08 1336,1.7122185,7.6886916,29.659246,59.89563,1.8482589e-10 1336,345.96335,6.4106236,43.163666,46.69902,1.8697878e-11 1337,601.84814,204.9198,31.327942,79.09921,98.642296 1337,507.48273,200.18097,23.639526,51.04657,54.18703 1337,622.87775,204.70628,16.26892,60.394363,6.273082 1337,529.3868,208.67326,28.432312,60.165634,1.7510706 1337,47.016968,212.73154,30.418266,63.2677,0.68127143 1337,544.56134,199.0204,22.548828,48.77997,0.017402304 1337,588.3441,218.47719,23.516907,59.94197,0.009394537 1337,587.4404,154.2392,48.900513,196.30283,0.0065827793 1337,614.28265,109.9459,24.864014,83.12176,0.0040176483 1337,488.12387,207.37108,25.56784,51.833206,0.0025048794 1337,30.290922,193.3147,35.236656,74.375275,0.0024040926 1337,620.7294,80.244576,18.417297,60.112953,0.0016530491 1337,362.00586,214.09114,22.69101,55.370865,0.0009681997 1337,599.42084,316.54242,39.657898,172.9213,0.00045926525 1337,592.7405,0.0,44.69104,127.92917,0.0002836324 1337,610.93317,247.37894,28.213501,146.1507,0.00021829335 1337,1.547229,183.52565,20.154245,130.66463,0.00012869571 1337,608.94415,439.40674,30.202515,65.296234,7.1053924e-05 1337,5.2399316,140.59692,57.0946,233.90146,5.6751604e-05 1337,448.33688,255.33907,24.152802,60.90593,3.7318707e-05 1337,1.0409814,326.01346,18.601723,149.5149,3.4419267e-05 1337,482.65985,168.83516,91.07971,181.39845,3.1977423e-05 1337,2.5316017,314.05606,57.82697,168.59598,1.2327185e-05 1337,1.7503092,227.15474,31.7641,196.99828,1.0307089e-05 1337,2.416696,88.26575,29.579428,168.50836,8.914839e-06 1337,1.4034506,418.9624,32.436108,78.65442,1.8418541e-06 1337,1.7636971,48.2597,17.827358,124.3636,2.2192724e-07 1337,4.125446,24.310703,55.94016,114.80878,1.1523847e-07 1338,592.29517,198.15369,29.599487,63.79889,99.65143 1338,611.1722,199.47375,26.309875,75.17099,98.08422 1338,4.9867806,177.52637,37.78283,77.96236,73.98755 1338,519.94556,200.4355,23.79126,50.336166,3.4599934 1338,582.486,162.17445,51.71173,133.88615,0.21777092 1338,1.6391733,199.46774,14.185489,58.60843,0.13766517 1338,568.86993,195.97375,39.202576,72.44644,0.019260582 1338,58.353394,197.38042,24.896729,50.528214,0.008673909 1338,3.567487,116.85128,60.418636,167.5755,0.0030043472 1338,597.46515,153.05556,30.371033,77.02229,0.0026464334 1338,503.55896,297.4293,24.716858,55.16623,0.0022279727 1338,1.3416708,113.2712,24.33444,130.78583,0.0014495042 1338,535.7923,120.85404,100.403625,256.30865,0.0010553991 1338,615.6024,228.44745,23.54425,109.26593,0.0009425867 1338,532.594,207.89406,36.18573,67.03459,0.0007918856 1338,385.38083,216.31241,22.089142,53.785675,0.00050051505 1338,612.6251,355.2062,26.521545,143.12558,0.0003852882 1338,597.65186,237.2075,40.11493,222.59026,5.0111885e-05 1338,1.4813989,223.28464,35.329494,209.35214,4.4466586e-05 1338,1.0612622,335.59427,19.302149,137.19049,2.9112058e-05 1338,613.7238,0.0,25.422852,45.75495,1.6552787e-05 1338,587.0394,14.303653,51.949646,114.740524,1.0308584e-05 1338,0.8902287,419.87485,16.798326,79.89371,4.2091283e-06 1338,5.4735384,353.01993,77.46399,130.8381,2.6634993e-06 1338,2.6224968,14.911921,36.741245,76.92884,4.277266e-09 1338,349.487,0.0,57.873474,47.050034,4.8720757e-11 1339,574.8836,201.36115,32.78253,60.82077,99.48131 1339,415.95773,205.91219,21.817322,45.615112,2.2975893 1339,562.2248,181.65916,68.127014,101.47551,0.13459988 1339,529.8646,183.44052,38.618103,83.33325,0.12367076 1339,534.50464,141.75511,23.98285,55.58676,0.068002045 1339,7.7593265,193.97989,40.8515,67.20169,0.040173374 1339,622.7369,218.94977,16.40979,48.200592,0.023234054 1339,613.7097,285.27582,25.43695,130.54816,0.0122268405 1339,505.14627,187.43689,21.119354,48.733566,0.0056766993 1339,550.05493,210.55904,28.177124,58.72438,0.002393332 1339,612.86145,181.25061,26.20691,123.30066,0.0021745542 1339,587.33765,186.07625,48.581665,246.6165,0.0014867233 1339,1.7436606,178.41403,22.02955,108.01758,0.0013353018 1339,515.9513,146.06049,85.24109,166.72766,0.0005087636 1339,520.12933,146.12949,19.168396,45.997375,0.00020643475 1339,615.2421,367.1365,23.904541,98.34241,0.00017331044 1339,572.0321,354.7939,66.66809,133.38098,0.0001337272 1339,610.3167,66.42675,28.829956,157.83536,0.00011203631 1339,607.5874,438.6225,31.559265,68.830475,0.000110357745 1339,4.423296,158.55319,55.492447,231.31439,0.000103048624 1339,1.3850431,356.14664,18.233582,135.25635,3.3447683e-05 1339,1.1991928,250.27379,19.754778,152.2567,3.2972424e-05 1339,3.34868,377.74188,55.455124,110.606415,3.149493e-05 1339,463.155,258.93762,22.853668,54.341827,6.681032e-06 1339,610.0741,4.4541,29.07257,57.834488,4.0098416e-06 1339,2.0701473,50.969044,35.04185,221.12325,3.5228047e-07 1339,1.5029705,20.797852,18.523127,112.69365,2.313459e-08 1339,2.2337224,9.699925,30.426552,59.264286,3.5475994e-10 1340,583.1748,199.85834,31.55841,66.59393,97.6766 1340,262.9801,209.40837,26.697937,48.524246,20.224138 1340,452.25668,222.87083,28.093994,51.671463,17.56696 1340,500.37872,200.9289,25.365662,55.677765,0.1679059 1340,138.5251,207.26683,24.620453,54.5652,0.16532879 1340,468.69022,219.15366,23.813293,50.12506,0.12697344 1340,443.9824,209.58273,23.914398,51.404785,0.05821738 1340,583.0753,132.32898,26.376709,52.63646,0.010002546 1340,567.1455,187.7044,64.081116,173.45975,0.009554356 1340,477.02716,199.94803,34.385284,69.64896,0.004197021 1340,1.4115381,140.57162,15.1174555,62.449005,0.002550237 1340,356.40778,212.74707,19.830963,46.10959,0.0025387886 1340,1.7660173,125.0734,37.94436,102.11553,0.0018784605 1340,508.6908,191.48952,39.23761,87.92366,0.0018637184 1340,574.92395,118.98383,47.59088,114.12995,0.0017050763 1340,621.0544,134.24936,18.092285,59.262253,0.0011093463 1340,441.30304,182.62448,53.776093,118.01614,0.0009860534 1340,618.40656,195.54855,20.740112,80.12335,0.0008418247 1340,598.08435,294.80063,39.4942,197.22995,0.0007081614 1340,616.16327,60.518414,22.983398,86.79936,0.0006808745 1340,602.6491,118.2418,35.856934,192.6442,0.0005918722 1340,534.1946,209.12589,34.87146,66.83713,0.00052732887 1340,89.35074,120.04866,21.31369,49.465973,0.00038265716 1340,568.19586,291.25516,51.43103,117.059814,0.00037466307 1340,483.97955,282.68234,23.275726,56.538147,0.00022648014 1340,3.868239,124.31555,57.921013,215.13297,0.00019387758 1340,1.4279444,150.55583,18.876453,150.14754,0.00014381738 1340,608.39197,442.89642,30.7547,59.395996,7.789924e-05 1340,1.4770557,221.35922,28.0109,142.3176,6.2748964e-05 1340,417.44214,147.6621,125.34436,220.67839,3.8367416e-05 1340,3.6438446,266.45413,56.061203,215.23587,1.8000566e-05 1340,79.851875,93.687645,41.847305,104.42907,1.5766545e-05 1340,90.18254,131.12141,82.19739,159.799,1.29397295e-05 1340,1.3717375,383.0821,18.136257,112.66098,8.431935e-06 1340,3.4411378,427.8021,52.076427,66.47891,6.7783008e-06 1340,609.2796,2.140303,29.867065,63.27117,3.7549178e-06 1340,1.4208537,22.156446,20.288774,157.37242,6.9094796e-08 1340,1.9894596,16.106329,35.03564,68.50315,1.6745223e-09 1341,477.609,205.84499,22.401367,62.119736,99.679665 1341,489.58627,216.00868,22.163849,52.627365,39.159687 1341,524.2387,236.67792,33.68628,68.70877,32.86953 1341,255.20508,212.56612,25.378906,51.81505,27.437735 1341,436.5989,206.3762,23.050049,48.222595,5.6183023 1341,464.37845,207.55142,20.755005,53.353546,0.31879687 1341,3.2273877,75.48996,55.116207,195.7829,0.06573219 1341,620.942,224.57564,18.20465,59.303238,0.05097463 1341,605.64874,332.3105,33.497925,94.95743,0.03084783 1341,450.3565,209.27502,23.132294,48.70108,0.013336811 1341,1.4015162,90.01322,23.2749,124.02503,0.007713036 1341,610.34125,202.59422,28.80542,133.55391,0.0042778994 1341,66.04999,108.98841,25.432114,56.86846,0.0032150121 1341,69.858116,129.44667,44.716026,140.50056,0.0024565256 1341,621.4047,141.5349,17.741943,55.97281,0.0024085077 1341,621.60187,70.19309,17.5448,60.312096,0.001245494 1341,588.0539,205.52827,50.538452,246.92809,0.0011056981 1341,583.83936,98.86107,52.16504,218.50404,0.0010470122 1341,462.73987,194.48676,54.472717,93.28076,0.00049921696 1341,617.5245,160.22678,21.622192,92.29224,0.00023722286 1341,243.1453,182.9613,54.56308,98.9675,0.00019127996 1341,469.88315,180.66101,100.99844,182.51889,0.00017448694 1341,586.8291,374.4827,52.317566,121.94357,0.00015070722 1341,611.1517,44.233856,27.994995,161.39867,0.00010092183 1341,608.5816,439.33783,30.565063,66.23535,5.894147e-05 1341,1.2442937,183.53062,17.628391,140.62798,2.1506617e-05 1341,3.953353,182.84042,57.37428,263.10828,1.9798093e-05 1341,606.96783,0.0,32.178833,68.8922,1.7100523e-05 1341,408.22086,166.48524,92.53009,187.59001,1.0789074e-05 1341,224.11092,155.1726,96.77782,193.14319,7.981064e-06 1341,1.1314697,342.66635,19.113804,132.58688,6.9419025e-06 1341,0.8088989,285.61627,21.176004,111.43637,6.0322413e-06 1341,1.0992603,422.96988,16.1076,76.418304,5.979434e-06 1341,6.313096,358.751,76.6129,124.54047,5.67185e-06 1341,3.1952069,425.65784,53.36054,68.35269,2.0092266e-06 1341,2.416953,20.773335,56.833992,125.425064,8.920226e-07 1341,0.7578097,12.0553,11.434955,88.967964,4.732328e-08 1341,1.1575683,8.045622,30.077276,60.886803,1.5368565e-09 1341,400.99045,9.174154,42.474518,47.1838,3.591376e-10 1342,505.44397,198.60378,30.452942,80.96779,99.95762 1342,248.31845,207.2047,30.328705,66.73222,77.63227 1342,116.238686,209.09294,20.364449,45.01207,67.003426 1342,533.5842,227.81898,27.336853,52.783005,36.47357 1342,489.8013,206.08835,21.42694,59.87085,5.2757545 1342,581.72614,249.72453,39.588074,76.932205,4.124441 1342,475.71814,218.9027,22.286926,49.12587,0.31364945 1342,550.84906,228.96376,22.390137,52.013107,0.040398825 1342,2.8010793,160.1237,36.439606,91.495316,0.014135218 1342,6.3159947,100.05912,67.64343,190.45975,0.0023799762 1342,582.28265,154.18625,54.971313,206.89447,0.002242656 1342,611.48785,228.42267,27.63794,118.65442,0.0013630643 1342,619.9718,194.35352,19.174866,64.76721,0.0011868624 1342,488.06506,180.59547,69.45978,145.1371,0.00021016604 1342,609.3374,439.17502,29.809265,64.57004,0.00011903192 1342,232.47636,166.54222,68.383224,152.8654,8.180557e-05 1342,511.4133,181.60951,102.44028,195.98936,7.654686e-05 1342,603.19916,302.8,35.94751,184.49127,7.291485e-05 1342,69.26625,92.09539,44.904587,165.4674,6.894886e-05 1342,612.66815,82.96062,26.478516,140.31319,6.549049e-05 1342,291.8694,193.86665,24.454712,49.777206,5.201086e-05 1342,1.8806112,88.82086,22.396654,134.33011,3.9680195e-05 1342,1.0484339,200.21977,16.86837,144.14595,2.6340613e-05 1342,4.176161,191.72302,56.146263,252.04266,2.3998135e-05 1342,95.940056,163.75446,75.1856,160.28174,1.5541229e-05 1342,609.98773,7.4033074,29.158936,120.39277,1.4918457e-05 1342,1.1267546,423.24625,16.264105,76.2135,5.6088297e-06 1342,1.0198194,314.18213,20.014147,136.45279,4.9391183e-06 1342,6.1084313,362.42252,76.71082,122.77078,1.3128212e-06 1342,3.154261,429.15784,52.15735,67.117645,9.0909583e-07 1342,1.854974,19.036707,58.163296,117.76682,8.571923e-07 1342,0.77573895,14.083028,12.539211,83.08045,1.21005e-07 1342,442.38065,4.354349,43.598114,51.444168,4.225483e-09 1342,0.5390788,6.0009456,40.695724,52.306126,3.0912761e-09 1343,541.3149,207.0294,31.827454,85.390396,99.92753 1343,608.8172,208.1099,28.406189,83.83536,99.03341 1343,77.84595,214.06522,30.754463,55.557617,97.37878 1343,572.0172,219.1586,29.485657,70.967316,90.99954 1343,98.38246,214.28789,23.315315,49.40538,62.0673 1343,595.3431,232.29909,25.85608,64.28105,0.8547995 1343,521.28845,204.1173,34.602234,75.8318,0.12284927 1343,498.45615,231.41129,19.453339,47.058014,0.011187688 1343,75.33139,174.37222,55.08368,111.14694,0.0075868433 1343,247.124,210.66977,32.68759,70.5051,0.0037816372 1343,589.636,194.03671,49.51068,226.58487,0.0016860944 1343,382.0845,218.17233,21.111359,51.272186,0.0005977233 1343,521.5215,187.08784,78.32666,139.59752,0.0005121171 1343,298.37335,199.1414,26.130493,51.317642,0.00029018358 1343,1.4833512,175.79318,20.77149,128.81616,0.00015386735 1343,3.260005,128.29662,59.58428,234.49547,5.6770226e-05 1343,609.6384,440.5501,29.50824,65.126526,4.9637765e-05 1343,609.311,63.343773,29.835693,177.11322,4.1819523e-05 1343,1.6786174,73.826035,21.271278,166.13991,2.3309263e-05 1343,582.83826,11.122247,55.74243,118.38302,1.7980528e-05 1343,47.391224,135.27675,143.63448,232.43214,1.3493561e-05 1343,0.7504525,276.64056,20.287409,146.44357,9.461744e-06 1343,607.26764,4.7137012,31.879028,54.630913,7.4383756e-06 1343,1.4052955,441.07043,21.317802,60.842133,6.812258e-06 1343,3.6024008,264.5343,56.002327,212.2958,6.2524123e-06 1343,1.8186882,355.97995,31.880333,136.3836,1.8611215e-06 1343,1.8134465,23.37944,19.382496,116.02687,5.159451e-07 1343,1.8632195,10.315489,29.617552,59.703636,9.609175e-09 1343,444.46365,5.958885,43.512177,52.67124,1.138656e-09 1343,467.55005,7.434728,45.513367,48.58237,6.445326e-10 1343,376.57867,1.9936589,60.373535,52.25647,2.7543284e-10 1344,593.1424,211.42186,33.51129,92.454636,99.925385 1344,110.55586,213.83661,24.357727,56.425964,99.81583 1344,576.61475,211.5697,31.28009,84.6575,99.646416 1344,125.00184,215.37668,23.492836,53.329224,97.30387 1344,612.534,216.87834,26.61267,82.22975,95.16217 1344,545.0282,203.48659,27.448975,80.0016,60.3972 1344,140.34064,214.63756,20.107162,48.528275,57.915802 1344,514.6425,214.89433,27.166992,57.207016,0.31108874 1344,532.71173,217.32545,24.442322,63.633194,0.22250505 1344,499.22214,204.15565,30.503998,54.744614,0.17406456 1344,243.25221,212.7633,32.094833,64.198944,0.0695411 1344,46.032265,229.33136,24.959862,53.959778,0.024031019 1344,600.72614,196.98952,38.420532,200.55711,0.00819748 1344,109.37459,189.22878,57.702393,108.65636,0.0013574914 1344,521.367,162.72557,117.24243,218.0172,0.00027170219 1344,2.746378,110.58292,34.853493,200.0817,0.00019215193 1344,298.93817,197.53424,25.26532,54.479904,0.0001844741 1344,44.0045,94.05801,77.17688,204.6694,0.00014349514 1344,608.95123,438.2082,30.195435,67.48865,7.573273e-05 1344,1.0722075,214.76045,16.854904,140.54472,5.567198e-05 1344,4.496649,256.32907,54.1986,223.86365,4.075688e-05 1344,51.934494,138.70653,140.33467,236.15697,1.8215045e-05 1344,610.6514,37.737717,28.49524,136.157,8.139735e-06 1344,1.1007593,320.24066,19.637144,136.82965,7.43988e-06 1344,2.36195,420.66513,33.733994,72.31442,5.7193447e-06 1344,601.1028,6.728177,37.551025,58.348637,2.921618e-06 1344,2.052938,44.615406,21.71108,144.1052,8.138209e-07 1344,2.9145103,24.168972,56.186424,109.225266,1.4538861e-07 1344,546.3744,4.7691603,44.230713,47.585125,2.3557953e-09 1344,487.1811,7.858701,47.47699,50.383034,1.0005896e-09 1344,462.00513,4.404906,45.650818,51.069332,4.2046588e-10 1344,397.248,8.995902,42.384216,57.81173,1.8526919e-10 1345,135.65529,211.99588,25.422134,61.996063,99.77113 1345,157.33243,215.04727,24.83574,55.30551,99.47498 1345,617.0083,209.23462,22.138367,101.868835,95.91159 1345,581.6532,201.1233,24.005005,71.12532,91.13515 1345,569.3504,207.15935,23.590576,73.94969,75.76101 1345,54.994984,205.10707,28.879696,47.070618,14.061689 1345,243.22176,211.88635,32.702316,62.007233,0.034801487 1345,35.22214,194.3678,28.365856,55.899155,0.03272684 1345,522.6696,206.0711,25.049011,49.099686,0.009225681 1345,400.39523,213.7587,25.690674,48.739136,0.0070793293 1345,551.5847,226.74011,23.785217,58.502808,0.0059894044 1345,453.95428,220.03125,25.42041,50.15921,0.0030589968 1345,581.85266,180.46492,56.013428,162.73769,0.0012300379 1345,348.11667,210.03123,23.675018,48.673416,0.0010876491 1345,0.726027,238.95596,12.733934,50.120544,0.0010035625 1345,138.68333,201.6716,57.703888,91.99158,0.0003756734 1345,2.6674316,148.69638,31.535473,174.07788,0.00035658362 1345,40.248306,112.34508,81.51914,179.3705,0.00015751443 1345,608.7008,438.08557,30.445862,66.57611,9.218231e-05 1345,612.34155,271.69208,26.805115,159.31714,7.969053e-05 1345,609.77893,38.473537,29.367737,131.08266,7.416714e-05 1345,1.8451734,73.671844,21.22284,155.12712,6.606459e-05 1345,0.72579753,235.04248,18.944025,136.09229,4.1047606e-05 1345,99.97527,163.34079,142.13446,212.13538,1.13367605e-05 1345,3.5939991,258.07498,56.599895,216.67441,1.0650591e-05 1345,1.1234229,344.43265,19.146444,131.80438,5.564184e-06 1345,2.5862956,34.29422,60.236034,270.32797,4.1694e-06 1345,2.1621518,422.01727,32.682865,74.75473,1.4359623e-06 1345,584.6266,6.3392353,46.522583,46.61377,2.3249127e-07 1345,1.8395541,25.385752,19.14756,109.24145,1.2787403e-07 1345,1.6853614,10.511423,30.134544,59.740303,8.1474646e-11 1346,394.25565,209.37137,28.198517,64.36084,99.871704 1346,161.05064,215.22124,27.609665,67.60658,99.82035 1346,37.117783,218.13431,31.59983,63.451935,99.47778 1346,185.86302,217.61559,26.91298,60.991898,95.333115 1346,609.47894,203.71516,26.030457,78.857254,91.44847 1346,6.366928,213.51225,41.133804,73.31102,6.3445106 1346,356.42386,211.8329,27.275238,58.035995,0.8405702 1346,29.49254,228.28113,20.198595,49.974884,0.6586507 1346,591.01086,211.54652,31.92566,82.697464,0.6303263 1346,579.6632,230.57115,26.352295,51.667313,0.19184932 1346,555.9345,199.70464,25.784729,58.353134,0.032430258 1346,475.3029,227.68927,26.22052,48.228973,0.0067767403 1346,592.30884,174.97751,45.398132,189.20715,0.0035743061 1346,1.7321696,178.0987,21.058762,132.94159,0.0023900843 1346,523.9322,213.16284,23.958801,47.431732,0.0017571732 1346,2.9537778,140.43315,58.61074,206.39122,0.001538348 1346,304.50375,202.54071,25.71994,55.097137,0.0008222361 1346,538.33124,211.66592,24.447754,50.423798,0.00029533406 1346,610.44006,271.67633,28.706604,147.59186,0.0001150278 1346,143.78159,178.4458,70.49109,150.55212,0.000105452935 1346,610.22284,69.46402,28.923828,172.3982,9.9776415e-05 1346,609.1436,442.4445,30.003052,62.411163,6.40491e-05 1346,378.51508,183.64772,72.90457,140.89742,5.4181684e-05 1346,584.91895,399.68115,53.66931,95.6297,3.989355e-05 1346,583.49426,8.527617,55.648438,116.76122,2.3756806e-05 1346,0.9168026,259.11484,20.079138,160.56714,7.0465026e-06 1346,614.77313,0.75790364,24.373535,46.284687,5.3048666e-06 1346,1.3598381,384.92657,18.463757,111.99234,5.17704e-06 1346,3.9769971,397.366,54.252098,95.07916,2.2449026e-06 1346,1.5413176,50.91701,32.228535,209.04497,1.4286327e-06 1346,1.9790511,10.811712,35.6544,81.9828,9.40049e-11 1346,476.2523,1.902902,43.660248,50.707344,7.622654e-12 1347,380.52875,212.09373,27.099823,67.103165,99.95598 1347,185.82085,217.88324,28.55101,73.621826,99.93941 1347,55.969994,218.03586,35.931374,72.424866,99.832146 1347,21.264137,219.3224,33.727882,62.908585,99.31553 1347,206.93443,221.48524,32.312943,66.61897,97.51516 1347,365.13226,210.98972,24.993866,57.95111,6.483765 1347,535.51105,210.61037,25.453674,49.14775,2.073847 1347,578.007,213.43872,29.396545,58.05655,1.3491286 1347,550.6791,217.17628,23.337158,50.472122,0.2744808 1347,8.3545885,188.28912,66.99065,112.658325,0.011398644 1347,610.8788,83.18929,28.26355,138.104,0.00042538063 1347,2.3368237,104.54368,29.41623,177.66235,0.0002797357 1347,587.337,158.32474,50.28656,192.20111,0.0002691131 1347,164.7804,187.403,75.34633,147.09846,0.00017757781 1347,29.514734,168.28871,93.69523,184.47978,0.00016616128 1347,1.0853182,223.14516,19.616335,129.42271,0.00014297182 1347,362.76746,185.17348,64.68927,147.97444,0.00012932133 1347,599.6019,409.41016,39.54474,87.939606,4.5241497e-05 1347,1.3187011,294.55936,29.12628,157.98743,5.2873506e-06 1347,3.9572396,396.98618,56.04775,94.131134,3.7747086e-06 1347,1.4582536,442.99203,20.721088,58.15146,2.4127971e-06 1347,585.55176,15.440586,53.44464,117.923096,1.7749093e-06 1347,1.9412631,53.100742,20.807549,140.49011,2.0494089e-07 1347,443.43726,3.87126,46.59906,60.670418,1.6900788e-08 1347,469.3819,1.7819694,64.54553,55.99606,7.8589185e-10 1347,1.1209034,5.601182,18.312056,62.063232,2.204931e-11 1348,198.41133,218.49149,30.205841,71.81442,99.97273 1348,80.578156,214.72972,37.450935,80.1534,99.933365 1348,40.87307,218.9019,34.292435,66.62688,99.93037 1348,226.29472,218.25198,31.120987,79.82669,99.89172 1348,364.81546,209.2042,31.879883,79.227295,99.79918 1348,0.0,219.45776,30.027918,78.13287,99.33246 1348,565.6493,211.48463,23.862366,48.5045,9.339514 1348,603.1044,202.64407,33.58197,77.98041,0.514467 1348,550.4932,215.19286,26.179993,56.003616,0.3446035 1348,439.33142,225.6505,27.722351,46.996445,0.23192854 1348,248.02368,215.96457,31.66745,75.89755,0.04467649 1348,2.5067074,151.70293,65.92221,198.3535,0.004349032 1348,58.13598,174.26897,80.503975,152.45058,0.0007345629 1348,351.215,186.27646,62.671753,157.49686,0.0006711265 1348,194.8952,184.9123,87.367004,173.0498,0.000221739 1348,541.7665,156.10278,89.967285,209.10983,0.00015113238 1348,0.3060962,209.36597,33.7562,236.35394,0.00013030243 1348,599.62506,0.4055257,39.521606,47.979748,0.00011105965 1348,1.5498714,76.48263,21.414038,175.64536,8.183734e-05 1348,584.3637,396.2325,54.57904,99.14728,3.7309383e-05 1348,609.00256,0.0,30.144104,156.1564,1.7040094e-05 1348,1.7968612,365.92578,32.4765,126.98392,3.420379e-06 1348,1.4794084,443.45944,20.893394,58.754425,2.707064e-06 1348,455.10315,0.95989585,47.102386,59.723255,1.4282654e-09 1348,522.3585,6.0046487,46.386963,49.667355,1.1702989e-09 1348,1.6023031,6.4079103,29.745752,61.84251,2.891559e-10 1348,496.8564,1.9649447,46.834198,61.04937,1.4057701e-10 1349,64.73227,220.20279,35.66838,75.74371,99.8142 1349,108.53595,218.2026,37.491608,80.6221,99.78067 1349,3.4226873,212.61855,43.758945,89.270096,99.77459 1349,226.76418,218.10036,31.699417,79.60594,64.25695 1349,615.76385,213.7636,19.49524,50.139236,25.601995 1349,345.24448,211.99443,33.57791,73.091934,8.919087 1349,97.146484,212.67928,25.221947,67.54707,6.4045005 1349,1.5786955,222.9236,16.250223,79.455,0.4105328 1349,600.9292,186.47745,35.957275,116.72302,0.010132009 1349,613.4875,301.28366,25.65918,113.41162,0.01013084 1349,3.891032,162.7025,72.67941,194.50096,0.006237621 1349,46.73175,169.88655,77.52022,159.79027,0.00057064276 1349,1.7765837,104.752914,22.974293,187.29515,0.00042972475 1349,568.9349,142.14783,67.123535,246.9627,0.00018840643 1349,608.5899,443.7965,30.556763,60.59912,7.665438e-05 1349,586.0924,394.36215,53.05426,103.95526,2.450686e-05 1349,1.4879582,241.11337,35.459183,235.06488,1.5703132e-05 1349,5.0972853,395.6083,54.133236,102.27405,1.2959082e-05 1349,596.82983,3.5510614,42.126892,84.06877,5.4775323e-06 1349,1.7355387,443.36923,21.160864,58.48178,3.7216341e-06 1349,1.5874382,12.057467,38.022465,87.808655,1.9037836e-08 1349,454.17236,2.011683,48.54355,59.656597,5.814136e-09 1349,490.0002,0.0,45.989594,61.85005,2.8771546e-11 1350,149.1781,217.9024,42.185165,87.40793,99.95915 1350,98.81262,218.08069,36.265717,80.2193,99.90876 1350,387.5981,224.7661,35.369995,89.740005,99.69953 1350,27.747513,221.78702,40.65844,88.99194,98.83074 1350,2.0028973,221.80443,44.470154,95.432816,95.714966 1350,374.1284,222.35919,26.249115,80.20145,93.04396 1350,559.5386,216.99028,24.743408,48.378952,8.672975 1350,612.99713,194.68578,26.149536,63.874985,4.720781 1350,15.797385,168.80283,45.268467,104.61789,1.8550168 1350,578.2716,211.7944,27.007446,49.267975,1.6607338 1350,262.14188,207.82458,22.040436,48.05449,0.026804624 1350,37.998093,218.69522,24.635029,46.381195,0.011859218 1350,321.30588,206.45543,30.97702,67.4474,0.003027156 1350,6.5652604,143.03699,89.509796,250.8728,0.0026135077 1350,364.40598,198.89822,80.34976,172.58258,0.0015518186 1350,599.5725,110.181046,39.32312,201.86922,0.0013440737 1350,84.24595,181.36166,69.55123,149.33801,0.0012246759 1350,610.4624,247.44548,28.398987,146.63423,0.0010286934 1350,267.01486,210.06432,35.302094,69.84053,0.00074060657 1350,119.71702,177.72243,93.202,162.2441,0.00024254825 1350,584.2109,391.27698,54.606323,104.05902,6.0545757e-05 1350,1.116285,239.89308,20.68081,151.41624,5.288183e-05 1350,609.32745,444.43875,29.819214,57.941162,4.2664033e-05 1350,595.64795,5.512741,43.49872,89.24952,3.6179085e-06 1350,1.524672,332.794,33.282997,158.40506,3.1509285e-06 1350,1.4698462,443.53735,21.442589,59.53824,2.1710543e-06 1350,579.4197,4.165729,44.47174,48.610634,1.6290332e-07 1350,1.43702,11.078053,40.425014,87.83617,3.7649613e-08 1350,448.54614,1.3120899,47.47751,61.088303,4.4266804e-09 1350,475.0672,0.0,47.592285,61.000412,1.1393267e-10 1351,146.69849,221.36641,36.043823,80.04558,99.94584 1351,449.16168,222.39334,35.774323,96.534,99.88464 1351,201.81552,218.78133,37.597504,88.435074,99.76998 1351,60.679005,221.12305,40.655506,96.96875,98.98704 1351,37.643246,218.36612,39.648502,96.86508,95.69581 1351,598.8233,211.51787,24.055054,51.622482,80.142105 1351,277.7598,211.1712,30.498505,67.49704,43.604 1351,265.188,214.91656,25.388702,48.115723,6.0773396 1351,583.2056,211.69424,25.92694,48.796143,2.539625 1351,467.34445,216.28319,29.148376,61.128006,0.5397451 1351,616.1088,322.009,23.037842,84.7312,0.2851533 1351,456.25412,217.79898,21.900177,49.089783,0.21708626 1351,566.6933,215.84682,24.772339,52.524155,0.037826143 1351,320.4119,207.0822,39.748108,103.73891,0.009439994 1351,604.10864,228.48393,34.568665,212.28114,0.00434236 1351,573.69104,144.66713,62.24823,214.52382,0.00067634234 1351,12.912194,152.65329,115.06197,247.3016,0.00058006804 1351,328.82672,215.31421,21.25772,51.392822,0.0003905506 1351,341.44522,215.66072,19.975159,48.99376,0.00034677555 1351,1.8514128,120.63495,22.167194,154.09622,0.00030202387 1351,608.2176,439.26154,30.929077,66.778015,0.00011221851 1351,150.00952,159.2597,134.95996,240.72156,5.4463097e-05 1351,605.52747,2.450153,33.6192,59.07717,4.0363615e-05 1351,1.3628532,251.30193,32.83617,186.99684,1.8909932e-05 1351,3.8720052,395.92032,56.666252,98.74814,4.8995225e-06 1351,1.4599634,443.10208,21.46259,60.371582,1.2367157e-06 1351,1.2915381,10.846557,40.668365,89.49225,5.7093878e-08 1351,442.84802,0.0,44.871094,60.61186,2.965444e-09 1351,466.16064,0.0,50.667297,61.70513,1.4908336e-10 1351,495.52106,0.0,46.601807,62.574574,7.1583763e-12 1352,93.51297,216.51695,44.28795,100.904434,99.926025 1352,215.03436,211.6526,39.049133,103.35875,99.90171 1352,119.08149,218.9229,39.52256,96.615524,99.30711 1352,202.31497,220.18102,29.861069,85.70131,98.72577 1352,604.3917,212.19212,28.057678,54.95424,85.09529 1352,370.68585,216.39932,31.042664,72.48346,77.17411 1352,585.3905,213.20863,27.198792,57.777115,3.2680576 1352,391.45364,223.97008,20.335205,48.818222,2.9377348 1352,262.18887,212.03111,32.86133,54.17784,0.10083666 1352,623.7402,212.9394,15.406494,57.76793,0.08281822 1352,570.61536,215.69318,24.971802,52.90811,0.051665008 1352,557.36786,222.84312,25.317505,54.277145,0.02974924 1352,8.974669,166.16283,41.108356,87.40741,0.0218795 1352,335.17087,203.999,32.658173,75.543396,0.0054618176 1352,239.18599,205.64091,38.744583,110.80177,0.004935962 1352,191.08888,187.07741,89.80022,174.87083,0.0045671565 1352,68.79529,176.09097,91.40286,180.59729,0.0020448184 1352,597.8966,184.47302,39.40204,137.04053,0.0019480985 1352,1.9734441,142.22113,20.658705,136.65808,0.0005605275 1352,609.16437,442.3954,29.9823,61.748627,0.000101927755 1352,553.0342,138.97527,81.040955,222.8709,7.928519e-05 1352,606.9548,0.54924804,32.191895,64.84815,3.5299436e-05 1352,0.9275773,237.55354,18.309519,135.20558,2.5297433e-05 1352,4.058877,76.85207,55.3469,226.61343,1.2658968e-05 1352,1.664161,360.16034,32.655605,131.93481,1.9501263e-06 1352,1.3126254,443.6486,21.361311,59.539276,1.6969866e-06 1352,1.154799,26.056667,21.907333,139.98135,2.2031614e-07 1352,1.5569255,7.5825295,33.08516,64.68935,7.89245e-09 1352,549.34955,4.8957033,46.274475,53.102177,4.262817e-09 1352,443.34344,0.0,45.22757,62.51565,1.7210138e-09 1352,477.35907,0.0,48.440186,53.60006,6.140512e-11 1353,409.0657,215.99243,32.67096,81.999054,99.9476 1353,146.33397,209.13782,37.437622,116.46329,99.940285 1353,173.31883,220.38245,34.966583,102.49692,98.64464 1353,196.31303,216.85513,35.258087,101.69861,92.99027 1353,605.7032,213.31729,31.911438,62.43042,82.529366 1353,556.9086,215.83994,29.263977,54.440094,39.93824 1353,261.183,222.09946,30.779083,53.25882,8.880569 1353,583.10126,213.80734,34.73358,63.622253,4.8092384 1353,8.286791,186.11449,29.352098,58.05963,0.13612695 1353,332.14264,205.14558,31.196198,66.49214,0.1134818 1353,137.12543,203.13829,98.26242,153.34843,0.012294899 1353,392.56815,192.7256,65.76828,158.33989,0.004499823 1353,585.5391,169.39627,51.22528,189.15677,0.0012049525 1353,2.002098,127.56756,21.7997,140.67468,0.00067071826 1353,3.9151742,101.134544,53.23257,218.68988,0.0003893137 1353,606.8998,0.54983723,32.246887,64.49192,5.6415694e-05 1353,598.7022,417.4542,40.444458,80.29999,5.5185763e-05 1353,0.7972518,229.21107,18.629726,143.65746,2.6730933e-05 1353,1.5298153,340.57236,32.73565,148.66296,1.9172576e-06 1353,1.3242757,442.63367,21.662317,61.03311,1.8890893e-06 1353,1.0650212,9.962155,40.97166,88.6763,6.970036e-08 1353,563.0494,4.382002,45.831665,52.26896,1.3486826e-08 1353,478.80115,6.086556,81.144165,202.70395,9.713844e-09 1353,454.1801,0.0,48.780304,61.956272,5.7201077e-10 1353,489.43527,0.0,47.696136,63.22297,5.873662e-11 1354,55.117653,208.37239,57.4638,122.434494,99.92481 1354,442.98773,221.47972,30.659088,73.6714,99.87427 1354,388.9074,221.70795,33.73755,91.80936,99.72837 1354,537.3579,222.38272,29.282532,51.42862,82.33114 1354,370.12103,226.30258,33.154846,81.21762,32.99256 1354,602.7457,209.828,34.436035,63.184906,14.008429 1354,263.2177,215.66324,25.09436,58.169342,8.843727 1354,238.88928,213.1463,41.61844,88.57611,2.1187148 1354,433.2073,224.14331,21.243286,45.0336,1.1356232 1354,327.56744,188.84392,33.184845,84.63277,0.2607693 1354,586.7032,215.94922,28.0271,67.03494,0.08734588 1354,566.89404,213.52023,33.78247,63.6091,0.05768756 1354,8.612772,170.665,39.14766,85.977615,0.040885907 1354,623.3649,213.85652,15.781738,46.490036,0.011364436 1354,364.76654,192.77919,83.1633,177.27715,0.0018871803 1354,1.8807275,152.13702,20.326193,134.62479,0.0007218496 1354,424.64377,187.03784,67.82687,151.8435,0.000470843 1354,13.407259,134.15483,141.06628,274.08075,0.00036378618 1354,609.0842,443.8132,30.062439,59.933533,0.000102109494 1354,606.328,0.15061525,32.818665,65.04156,6.893663e-05 1354,584.78827,399.99396,54.3584,96.77127,4.4027736e-05 1354,1.6370826,258.19012,33.697823,186.02457,4.564036e-06 1354,1.2225903,51.374638,32.769585,197.81438,3.2342446e-06 1354,1.326211,443.1381,21.512093,60.141876,1.9682386e-06 1354,3.6704314,396.4918,55.554817,98.694214,1.2581502e-06 1354,1.0951693,9.641967,40.535614,89.47141,5.1320555e-08 1354,556.1051,3.8232667,46.839966,53.548046,6.2335066e-09 1354,446.95966,0.0,67.234436,59.343517,4.84867e-10 1354,496.00476,0.0,47.401733,63.15758,3.7285952e-11 1355,414.79553,228.39665,31.354584,77.21907,99.94124 1355,433.85986,226.72594,31.748688,85.165695,99.92985 1355,7.079403,225.19165,46.939796,109.686005,99.890305 1355,484.60297,221.66048,32.41925,73.13948,99.479996 1355,606.516,209.6426,29.77887,63.55876,25.078014 1355,567.9227,222.11932,25.875916,45.38983,6.6975517 1355,368.79138,223.19516,27.55429,64.98923,5.5678563 1355,326.5274,198.95978,33.197052,73.55789,1.5022796 1355,1.010844,168.1758,25.25419,179.58803,0.7765788 1355,581.9978,212.34612,32.57953,62.6671,0.2763041 1355,387.97308,225.06116,23.205688,60.10321,0.137418 1355,265.26593,208.35374,22.923492,50.74861,0.12077039 1355,3.0345135,144.91742,67.75401,266.7702,0.021045279 1355,307.94247,218.8503,36.682953,79.63066,0.005529153 1355,595.6406,156.922,41.881836,161.97037,0.0050582164 1355,366.05746,173.43378,118.66431,224.51349,0.000421465 1355,608.88495,442.6171,30.261719,60.359833,8.989417e-05 1355,606.1679,0.031048179,32.97876,63.702595,8.347427e-05 1355,1.1341504,69.68549,23.508783,180.89557,8.256538e-06 1355,1.3034196,442.9636,21.674286,60.40506,1.7144115e-06 1355,3.7641456,394.9698,55.365314,99.54068,1.2524542e-06 1355,0.957098,9.702035,40.77488,87.803734,8.99962e-08 1355,454.03033,0.025716146,48.485504,61.16758,5.349727e-10 1355,482.13477,0.0,48.572876,63.08646,9.22412e-11 1355,509.0714,0.0,46.739197,62.08159,3.1974284e-11 1356,420.80536,224.50969,30.53659,83.82686,99.9532 1356,485.83127,221.05254,36.558563,96.53728,99.93094 1356,407.4939,223.73685,25.991058,79.338715,98.8082 1356,522.5329,218.19423,29.855103,76.75148,91.89233 1356,371.51294,224.66344,39.66156,91.38136,67.39681 1356,610.34314,211.90154,26.221375,52.14366,10.692142 1356,481.66995,212.64568,25.898193,52.239334,9.023511 1356,266.84457,210.11139,22.57483,49.23526,0.18162039 1356,332.02637,200.25156,31.480133,77.40167,0.048323438 1356,2.6877165,171.2637,39.120895,84.689865,0.036883906 1356,594.8335,152.06851,42.147156,169.85971,0.002872653 1356,404.81027,199.1328,63.296783,151.39558,0.0013124517 1356,457.0002,196.25438,93.21048,162.06166,0.00052126485 1356,0.9108952,190.62117,20.180187,136.76338,0.0002470355 1356,3.8345313,95.795654,53.62971,228.7869,0.00019848562 1356,584.9844,396.52472,54.162292,100.176544,3.527386e-05 1356,595.4662,8.380313,43.58728,90.76162,1.0383294e-05 1356,0.9506673,321.78098,19.836742,131.18976,5.899163e-06 1356,1.3337069,442.88742,21.666348,61.13849,1.9596716e-06 1356,3.7903125,396.70248,55.712772,99.18744,1.8191741e-06 1356,1.1687086,22.656393,21.10241,152.9869,1.0983534e-07 1356,570.0572,4.4293604,45.343323,50.986324,3.6280767e-08 1356,1.4283692,7.0999837,32.523865,64.427414,8.3734255e-09 1356,441.60876,0.16578777,64.31094,57.250244,5.132249e-09 1356,546.17883,3.6883953,43.80896,56.493793,4.0612673e-09 1356,484.33334,0.0,48.105927,53.5701,1.6250926e-10 1357,467.47897,226.82376,35.621826,83.14838,99.95142 1357,412.59357,221.75201,35.883698,96.13571,99.90784 1357,434.08817,219.05258,27.491943,97.41461,94.903534 1357,555.52185,229.53346,27.355652,54.056503,84.06897 1357,450.1572,237.61217,25.613708,77.50749,5.341294 1357,607.0566,211.32138,20.012207,48.62549,3.3431947 1357,392.58273,215.57146,34.644653,97.19182,0.51387334 1357,595.4197,218.21815,22.018982,45.510605,0.0873203 1357,3.0467792,167.26389,37.772663,86.2081,0.043448176 1357,334.23743,202.7582,29.977173,70.143936,0.028302588 1357,580.5219,227.3845,30.835083,58.666428,0.023106609 1357,264.84607,206.74286,27.466156,54.472137,0.015988953 1357,612.02576,198.15381,26.082825,108.721924,0.014822153 1357,388.72006,192.01593,84.24301,177.11694,0.0134512205 1357,446.0739,204.70688,77.86975,137.99646,0.0009837333 1357,588.742,137.61272,46.64215,225.08665,0.0008889427 1357,596.6567,298.6088,40.459534,177.60162,0.00048681168 1357,1.197924,191.33504,20.371426,142.46138,0.00044988823 1357,612.41797,47.96277,26.728699,104.62999,0.00036084713 1357,529.3689,181.85023,93.80597,199.17122,6.51557e-05 1357,1.5832983,243.49818,33.124817,197.7989,2.0782287e-05 1357,2.803558,61.846695,57.45807,249.90025,1.2759556e-05 1357,595.0816,9.525195,43.854736,89.05053,1.0577165e-05 1357,1.0347469,342.63574,19.322886,132.33005,5.5108044e-06 1357,1.248016,440.96808,21.601011,62.1597,1.9943511e-06 1357,3.5843441,396.09308,55.620445,97.142395,8.412975e-07 1357,1.5615023,35.228424,20.916372,160.99084,4.926562e-08 1357,1.1467611,10.593158,39.33956,80.974754,4.880211e-08 1357,577.09436,3.5166376,45.317566,53.86209,2.6049547e-08 1357,437.3105,0.0,62.34131,60.75911,5.1195195e-09 1357,37.632313,4.0049577,48.301785,53.872425,3.3414598e-09 1357,552.6969,2.3648243,44.448425,58.10898,1.353124e-09 1357,479.8276,0.0,51.321075,64.76663,2.4017083e-10 1357,524.8387,0.970293,44.808594,59.273075,9.867822e-11 1358,533.62854,229.28711,34.928528,81.95807,99.96253 1358,466.0574,223.36826,34.594177,98.860535,99.92273 1358,486.5245,216.42711,31.55655,105.59529,99.63176 1358,240.09677,217.4674,34.5271,92.54379,97.86982 1358,599.1043,211.92317,27.693115,69.29961,61.38147 1358,258.95474,215.7382,24.611267,48.7939,1.1276754 1358,491.87433,209.7486,23.210144,50.42801,0.80701643 1358,615.61005,214.5339,23.536621,76.899536,0.08702692 1358,590.0983,219.90797,20.76593,47.554337,0.06784273 1358,343.69565,205.7562,24.075928,59.815216,0.020746805 1358,387.48557,222.14589,25.313995,59.696365,0.0058403434 1358,361.29843,215.66231,22.09314,48.867844,0.0039074086 1358,443.4041,191.02228,86.93317,170.17224,0.0017495716 1358,585.4179,179.35251,51.55072,177.58807,0.0017217118 1358,614.4447,41.673874,24.701965,99.487686,0.0006872769 1358,2.077382,155.55856,35.826195,199.2486,0.00053055916 1358,501.14062,199.81577,91.826904,167.38428,0.00046464085 1358,214.99342,186.55095,83.461075,188.71593,0.00041509824 1358,1.7842017,167.40817,20.056316,91.94528,0.00033016902 1358,1.3797868,251.22966,20.688179,137.201,8.956105e-05 1358,608.50885,440.83734,30.637817,63.253754,8.621377e-05 1358,601.84186,281.54114,37.30481,200.35352,7.8955614e-05 1358,28.989737,131.35582,83.93103,168.03017,5.7623383e-05 1358,1.792561,57.574795,32.234158,192.21172,1.8260998e-05 1358,599.406,12.085274,39.74066,216.82938,1.7014081e-05 1358,589.6156,2.7393816,45.225098,53.340355,9.9934805e-06 1358,1.0733749,381.0811,19.063135,116.35315,4.1925264e-06 1358,3.9786654,396.42728,56.332214,98.75253,2.733463e-06 1358,0.9932324,8.968148,40.2438,88.920456,4.0797806e-07 1358,563.1858,1.9586296,47.197998,57.113495,1.3853901e-08 1358,441.63715,0.648431,83.94708,80.45897,1.2155339e-08 1358,37.388645,4.059048,47.044506,52.821377,1.6005794e-09 1358,531.6796,2.0465755,45.433167,59.62963,4.8711113e-10 1358,503.46783,0.0,47.15686,63.994495,1.7171832e-10 1359,534.0776,227.96156,44.647034,108.425125,99.93028 1359,266.8965,213.49397,22.403473,47.202835,99.45339 1359,102.82052,225.00224,48.51757,104.37016,98.97606 1359,608.0605,213.39694,27.611023,98.901794,62.62476 1359,85.56604,218.82039,34.853638,87.271225,16.906164 1359,563.9434,248.21936,26.245422,81.35724,1.2254186 1359,261.73444,192.3675,38.926453,96.70172,0.022919664 1359,553.6828,274.46887,20.801514,54.619995,0.0120953275 1359,283.0873,216.0688,23.850983,51.582443,0.010666915 1359,588.41595,170.45787,48.92914,191.99092,0.0047276774 1359,574.2002,239.39272,40.384705,108.070145,0.0008647333 1359,601.08154,290.35385,38.065125,195.4082,0.00035806734 1359,493.8452,172.08649,137.30511,229.47137,0.00018429704 1359,349.45645,199.17953,33.62805,82.88797,0.00016749965 1359,2.3626385,131.15945,34.826576,194.7952,0.0001420356 1359,1.2734424,177.62347,18.693434,89.298706,0.00012134085 1359,240.0333,157.05284,86.80115,204.80779,7.351925e-05 1359,45.308037,172.60133,150.38647,242.1191,6.522123e-05 1359,6.606374,119.60568,92.782005,229.15234,5.849187e-05 1359,593.4555,1.0515885,45.189392,96.18331,3.2187003e-05 1359,1.1285946,246.82285,19.966408,134.44843,2.6702244e-05 1359,1.5920395,54.9436,22.639496,179.87393,1.8623152e-05 1359,1.8361557,290.76172,33.478886,191.97214,1.0544975e-05 1359,1.2607145,381.81125,19.089394,116.48224,5.2287023e-06 1359,0.7066781,10.217282,39.382225,86.94007,1.462771e-06 1359,437.05652,0.0,81.78821,80.07435,6.6367223e-09 1359,24.770922,4.294922,47.911568,52.064922,4.3082973e-09 1359,564.5548,0.38447917,48.262695,61.7362,4.2122865e-09 1359,539.2076,1.8375814,43.575317,58.981182,3.3428346e-10 1359,495.3922,0.0,48.61908,60.271904,5.289092e-11 1360,264.41525,207.16096,23.263458,50.50273,99.76927 1360,489.3657,218.78784,46.839203,158.7634,4.125899 1360,506.17,208.27939,23.538177,45.84604,2.2582476 1360,614.4182,321.70407,24.015686,87.15314,0.39970666 1360,624.71466,319.51752,14.432007,46.949677,0.0057999156 1360,494.11246,319.75687,21.50766,49.14563,0.002913485 1360,435.55804,198.07858,22.102753,48.047806,0.0028503179 1360,449.56256,215.5284,20.80371,50.766953,0.002136762 1360,33.995605,175.07082,35.360817,79.039,0.0018253097 1360,611.0506,154.78822,28.005066,136.54045,0.0016665846 1360,493.76178,233.52753,21.109497,45.95511,0.0015666226 1360,309.73288,225.11276,31.643341,61.0325,0.00079803396 1360,510.52283,319.37585,22.004211,49.371857,0.0007230415 1360,323.04178,215.65642,25.08081,47.515213,0.0005110004 1360,2.1045094,121.617165,20.046064,96.82589,0.00040076807 1360,0.6871033,247.10542,14.294779,56.165726,0.0002563738 1360,5.630967,120.098625,82.15094,182.76001,0.00025231752 1360,592.4361,205.7972,45.713684,214.68684,0.00021201631 1360,616.29803,371.53027,22.848633,97.47427,0.00019001489 1360,249.06401,175.60352,55.757095,104.476685,0.00016406983 1360,2.2705112,149.09222,37.193035,127.55493,0.00013979888 1360,607.7627,440.93814,31.383972,65.71646,6.877129e-05 1360,609.5585,41.287632,29.588196,158.27136,5.412395e-05 1360,1.068925,215.32076,20.84691,141.78477,5.3911088e-05 1360,584.82043,387.6031,54.260437,110.900635,3.831045e-05 1360,607.2902,3.312015,31.856445,97.20387,3.459091e-05 1360,470.5125,134.09479,123.19159,255.08917,1.9543046e-05 1360,217.75021,135.98648,135.20172,232.60645,1.631124e-05 1360,275.45926,232.7651,80.69226,201.8822,1.2713011e-05 1360,3.0988135,259.7384,56.90059,212.47766,9.200281e-06 1360,1.0901864,312.80588,19.200575,133.21542,8.941472e-06 1360,2.0044549,418.07184,34.06934,80.09338,1.4321604e-06 1360,1.611333,14.484303,29.650562,165.16151,2.63066e-07 1360,1.1520166,7.305475,21.39877,58.10109,4.5125795e-08 1360,7.609346,7.8641553,43.161438,49.727024,1.0781961e-08 1360,432.9342,1.64528,82.2608,79.01995,5.8160325e-09 1360,578.74744,0.0,48.23645,65.8677,5.0964877e-09 1360,505.62018,5.5354104,85.23407,199.87553,1.4164641e-09 1360,544.7675,1.9350065,46.682068,62.378716,8.3652807e-10 1360,32.24916,5.8894467,42.43297,45.913605,4.2128948e-10 1360,516.8692,0.0,46.24054,62.226772,5.6881506e-11 1361,258.3627,206.60262,24.479767,54.833054,99.93448 1361,338.66162,214.94632,22.138428,46.399384,18.250082 1361,486.51193,233.02316,22.658966,48.3136,13.292797 1361,502.34183,210.83127,39.176422,72.85181,0.8397518 1361,426.4834,200.65207,24.33313,56.40207,0.35857618 1361,413.93625,195.43192,23.310486,50.287018,0.04334135 1361,13.815827,147.01036,50.29268,141.62535,0.040732298 1361,91.767334,198.8898,37.16826,74.232666,0.035497807 1361,411.1974,213.15997,33.756165,69.72809,0.0019584312 1361,614.8077,254.41335,24.33899,91.47853,0.0009603261 1361,1.5315496,175.81651,18.455074,90.63362,0.00068551337 1361,611.9548,146.72752,27.191895,132.64378,0.000643854 1361,602.62823,266.03528,36.518433,186.46811,0.00062609126 1361,19.58902,131.91458,34.21469,79.17172,0.00034846793 1361,243.98271,184.94893,53.475845,97.867935,0.00021762135 1361,607.51324,26.952637,31.633423,168.80284,0.00015790501 1361,1.5493808,114.16144,19.074549,91.17854,9.5854615e-05 1361,608.5148,438.12198,30.631897,66.27939,8.992315e-05 1361,2.1300123,160.15068,31.376663,185.15242,7.8371966e-05 1361,229.16432,153.2744,89.24284,204.63936,5.318823e-05 1361,1.4062891,320.02197,18.23198,132.77792,3.1124797e-05 1361,572.0935,362.61664,67.05316,130.04617,2.7441096e-05 1361,3.673073,260.04953,56.73056,210.12292,1.7293487e-05 1361,1.1486499,419.12485,16.711315,81.57599,4.3516457e-06 1361,3.642399,425.91016,60.248226,72.526215,1.5792934e-06 1361,2.2386785,31.095638,33.924114,183.6067,3.5603964e-07 1361,0.85546386,11.35278,15.797069,76.49218,1.5021332e-07 1361,2.5099578,14.098441,53.30933,72.676186,5.1710735e-08 1361,584.31195,0.50965494,44.509888,58.529007,2.7753936e-08 1361,511.89105,7.4540105,83.88605,189.41983,9.907435e-09 1361,548.252,0.0,47.772034,57.490334,6.110748e-09 1361,522.8755,0.0,47.343628,66.17861,1.3416876e-09 1361,441.6124,3.6186361,85.12259,77.20841,1.2420279e-09 1361,489.99823,0.0,50.95398,56.348034,5.60411e-11 1362,256.9926,210.91058,24.765717,54.9711,99.92753 1362,428.2776,204.84334,28.686127,70.10387,63.740982 1362,414.57083,200.35628,26.13153,50.440063,0.70363826 1362,443.6731,199.6704,28.915192,52.73648,0.06472819 1362,623.23584,234.09596,15.910828,54.56581,0.0053790826 1362,76.735886,179.889,33.551773,68.3846,0.0041853907 1362,605.8838,78.915695,33.26288,93.97746,0.0009089268 1362,611.64655,180.4794,27.500122,119.04773,0.0006855964 1362,4.794134,153.8476,47.351547,146.9516,0.00041509306 1362,611.22345,327.70953,27.923218,134.27747,0.00031289426 1362,241.13472,183.9892,55.85298,98.34079,0.00025433532 1362,39.197697,134.03851,35.565487,87.65581,0.00022829848 1362,1.2648332,183.61594,18.518986,83.36386,0.00018675633 1362,17.093504,127.63809,39.57189,93.18561,0.00015700691 1362,121.82223,192.32886,25.916191,57.027817,0.00014579436 1362,588.02826,200.90234,49.953125,227.67172,0.00012355096 1362,608.7702,441.2459,30.376465,62.18097,8.496348e-05 1362,0.957203,238.36574,19.70269,144.04906,4.2679658e-05 1362,585.1016,389.41852,53.86206,106.11493,4.0984552e-05 1362,3.7820687,207.07411,57.14484,241.61153,3.8770915e-05 1362,1.1567204,381.7264,19.595984,118.76596,3.4823428e-05 1362,202.97717,150.7715,138.92441,232.18163,2.2512064e-05 1362,1.8440536,93.017746,19.27078,89.44731,2.1403208e-05 1362,395.27356,171.72766,97.634674,170.86078,1.9637655e-05 1362,531.48395,112.1868,24.527954,53.75241,1.941857e-05 1362,583.6312,22.480013,54.147217,253.58527,1.8640067e-05 1362,2.9539258,395.9761,56.464085,99.667175,1.5186705e-05 1362,504.99115,168.00774,98.196655,188.74464,8.344739e-06 1362,600.139,2.5608888,39.00769,75.12491,6.667195e-06 1362,1.9359741,23.752039,33.87333,175.05737,2.0916005e-07 1362,1.2645264,8.662272,22.117428,57.903385,2.5375929e-08 1362,524.888,4.9186783,84.388306,174.55115,1.7459508e-08 1362,547.9873,0.30900392,67.677795,60.130535,6.5920873e-09 1362,473.7759,2.0542285,48.43741,59.50028,2.7121865e-09 1362,517.7744,0.0,48.68164,65.89981,6.725821e-10 1362,444.0024,2.477038,45.988007,56.487225,3.2188832e-10 1363,253.64021,214.89618,26.666733,58.969116,99.93127 1363,346.40738,214.78018,23.531677,50.294403,46.31863 1363,540.7652,211.16003,24.001282,47.270355,3.9241142 1363,414.86063,209.88004,20.931976,50.36139,0.10954452 1363,577.8235,205.87454,22.33081,46.519104,0.0896615 1363,2.6702068,170.503,38.69661,109.30513,0.010608345 1363,616.46655,196.32143,22.455688,67.53117,0.0027423007 1363,14.656959,134.34636,36.22859,96.5961,0.0010265971 1363,482.59854,217.53072,27.360596,53.48314,0.00074550306 1363,599.49023,98.916145,37.730835,179.65771,0.00050470914 1363,239.16956,193.59787,59.490265,95.960846,0.0004790071 1363,5.288861,104.4489,82.07137,226.55296,0.00028838098 1363,2.0557504,100.05093,20.456453,149.42651,0.00022624506 1363,601.87897,216.40422,37.222534,181.95415,0.00021170676 1363,612.04114,327.9881,27.10553,135.34238,0.0001505581 1363,2.7776985,246.58379,56.76021,239.3159,0.00014019835 1363,0.97445315,345.7236,20.1967,155.65366,5.3943797e-05 1363,1.6981943,226.80988,19.65108,85.10309,3.5819092e-05 1363,609.2168,439.11966,29.92987,64.83609,3.2388256e-05 1363,572.5501,368.32004,66.59656,119.83472,2.1202408e-05 1363,608.5184,2.385892,30.628296,153.96756,1.7747238e-05 1363,328.50565,171.2092,72.35309,155.21085,1.5621607e-05 1363,206.44115,147.21318,137.90022,220.37245,1.1216016e-05 1363,1.0992863,14.568584,13.980047,82.799164,3.01071e-07 1363,590.1752,0.46853843,43.221252,55.577488,1.2462627e-07 1363,2.584331,23.581556,33.889492,161.73502,1.02793194e-07 1363,460.5258,0.64058435,66.302826,53.771637,1.5052808e-09 1363,542.42285,0.35272786,67.61133,62.04744,1.23248e-09 1363,436.56082,3.414336,44.38965,53.016724,4.1528678e-10 1363,510.61465,1.6175163,47.819183,60.328236,1.965376e-10 1364,249.72954,219.27696,26.426682,61.432693,99.950836 1364,549.5002,215.32487,27.755371,50.74025,0.6110543 1364,333.6777,200.88556,22.803314,54.776764,0.12276371 1364,608.8398,195.68225,28.674744,68.950806,0.043240927 1364,228.66048,217.8981,31.186935,58.801605,0.023667337 1364,430.3693,204.85527,22.462585,51.585495,0.013888648 1364,31.641043,193.19766,39.220963,75.9762,0.0018139348 1364,87.274925,234.9113,24.724426,50.48436,0.0008385755 1364,3.5421095,120.16912,35.281326,178.71497,0.00066901644 1364,498.71252,224.84618,23.570435,51.474136,0.0006183417 1364,612.9897,217.99586,26.156982,123.534134,0.00045118367 1364,1.1506999,192.5185,18.635576,85.14145,0.00034807666 1364,616.1517,141.56038,22.994995,89.75252,0.00032630315 1364,1.9560589,130.02211,20.502022,93.18857,0.00031060324 1364,586.89514,199.37047,51.492188,226.47627,0.00025564604 1364,599.4539,99.71382,37.96759,188.86937,0.00019417882 1364,612.2815,378.80615,26.865173,118.93277,0.00015971775 1364,232.19649,174.33109,68.82097,152.25616,6.754541e-05 1364,3.1438396,170.8311,58.363544,248.90007,4.9009246e-05 1364,0.72130454,241.44435,19.889635,137.7884,3.312364e-05 1364,607.9282,0.0,31.218445,156.39966,2.025878e-05 1364,1.1624845,327.09274,19.482239,137.58499,6.0834045e-06 1364,3.7214193,334.65698,58.39655,156.00677,4.3317295e-06 1364,1.0736686,424.5946,17.068983,78.10513,3.927352e-06 1364,1.6919515,57.683125,21.065836,118.31975,7.548538e-07 1364,570.7812,0.10841797,68.17517,54.939735,2.624045e-07 1364,513.61597,4.5627604,125.5307,236.67073,2.3564179e-07 1364,546.1106,5.596289,47.118652,149.40547,4.3065e-08 1364,3.0271924,23.975756,56.335995,115.829926,2.7703692e-08 1364,1.1657951,10.391995,20.668093,56.0529,1.1634711e-08 1364,524.48016,0.63367516,66.69208,58.30024,2.577758e-10 1364,436.5956,2.2025814,43.98889,51.63453,2.342889e-10 1364,460.11075,0.0,66.553925,52.170586,6.797471e-11 1364,503.17297,3.4440236,47.44983,58.946934,3.0567042e-11 1365,245.01079,216.8166,26.282486,64.153,99.93986 1365,430.7198,197.53821,21.561523,45.681168,0.27762318 1365,554.2074,213.29608,23.500977,47.05188,0.030918589 1365,44.62739,167.08505,23.811947,60.461075,0.019750888 1365,483.43903,238.76683,20.049316,45.145767,0.011861253 1365,511.17084,219.34383,24.50946,58.71846,0.0068360385 1365,1.5859493,198.38275,13.486544,48.957382,0.004082359 1365,235.94788,218.88129,18.949036,47.598083,0.002188626 1365,2.2307854,140.21387,22.208666,105.65523,0.0021703192 1365,613.2293,165.0788,25.76892,122.30524,0.0020979375 1365,26.141886,154.6282,40.680145,111.04028,0.0014622594 1365,416.98572,205.41042,20.5766,47.483032,0.0012808552 1365,11.376647,190.5968,26.386772,58.742996,0.0010323698 1365,1.0250748,143.01784,11.841817,47.134842,0.00067632104 1365,34.395065,186.02826,24.155842,54.10063,0.00042325497 1365,587.62244,206.56235,50.520935,220.6871,0.00019129984 1365,614.91394,71.93119,24.232727,98.37737,0.00012430771 1365,1.045747,211.90817,22.077286,103.025024,0.00011779347 1365,612.1288,351.4688,27.017883,108.69699,0.00011655777 1365,5.349188,170.22101,44.247246,126.38443,9.903611e-05 1365,1.2737207,253.03339,32.819073,195.42932,7.185139e-05 1365,608.79236,441.5597,30.35431,64.346924,6.748552e-05 1365,61.901577,173.94142,19.720173,45.364944,5.4424778e-05 1365,226.91339,176.51503,68.71359,154.66435,4.2192565e-05 1365,572.3681,367.53018,66.778564,124.697235,2.4941024e-05 1365,592.951,3.2112176,45.321777,95.28278,2.2345906e-05 1365,529.54956,147.60735,105.354614,217.88976,1.5113801e-05 1365,581.9758,0.0,56.598206,276.27713,1.30520775e-05 1365,1.1005363,398.81567,18.211954,73.549805,7.2734424e-06 1365,1.1412671,358.57544,18.291868,73.50473,6.5186405e-06 1365,4.597839,75.475845,77.59812,249.7466,6.066187e-06 1365,1.3845655,444.54376,21.603785,59.186096,1.7618023e-06 1365,6.2022724,359.44788,78.57283,130.55203,1.4666348e-06 1365,3.3419695,430.84274,52.949024,69.18295,5.222669e-07 1365,551.96075,0.0,47.649475,146.86502,1.2496976e-07 1365,0.91842,17.36176,11.679307,75.857834,6.273647e-08 1365,2.1739128,23.41946,34.534977,175.18253,3.622296e-08 1365,532.9132,2.159668,44.99597,51.74783,1.442675e-09 1365,569.1198,0.0,48.691345,65.99786,3.3041542e-10 1365,488.47247,2.7783756,45.630005,52.090607,6.981398e-12 1366,590.3849,213.36984,26.513855,46.41101,0.35819224 1366,612.95526,174.3266,26.191406,60.07541,0.17259496 1366,293.98114,197.35918,26.131927,56.124313,0.074852884 1366,3.6979501,204.16246,20.218885,48.080307,0.07215676 1366,327.85336,216.4069,26.99823,65.01427,0.039968185 1366,555.2451,211.78535,26.621704,50.979507,0.029138505 1366,571.40686,213.05121,25.597351,49.057434,0.012011104 1366,280.29282,202.55992,23.233063,49.261627,0.008334188 1366,6.539989,174.86353,32.24908,91.81061,0.0037004594 1366,603.8352,67.443436,35.309937,88.93056,0.0030335227 1366,219.96822,204.24606,33.891144,62.419037,0.0022579827 1366,22.441813,151.64282,35.77333,106.87079,0.002245267 1366,598.94446,185.34352,27.89209,54.286407,0.0014796725 1366,600.54114,95.638176,37.936768,201.62695,0.0007416823 1366,193.77548,209.67146,41.643112,83.56642,0.0006093571 1366,586.1737,227.8789,51.645447,250.64612,0.00037083813 1366,1.2103332,201.61188,18.099035,142.39566,0.00024236858 1366,611.6963,253.84183,27.450378,145.47171,0.0001444527 1366,611.936,378.73468,27.210693,120.911896,0.00011310966 1366,2.0191994,138.20244,20.306976,103.06593,0.00010703067 1366,3.3167026,176.04678,57.584995,249.37662,1.716824e-05 1366,593.57306,0.94139975,45.241516,104.565125,1.0944918e-05 1366,0.80149496,286.16345,20.01083,139.41644,1.0251838e-05 1366,1.1800667,382.98935,19.699657,114.63495,4.9627824e-06 1366,3.652658,340.32208,57.736015,148.50137,1.4809881e-06 1366,2.7168295,40.957924,62.340595,227.65979,1.3196346e-06 1366,1.7549984,51.251167,21.83266,121.999794,1.8884721e-07 1366,2.416582,17.427937,36.74952,72.06091,4.5939004e-08 1366,572.5365,0.0,47.30078,52.72845,1.0989096e-09 1367,235.49582,213.3921,28.096283,68.43974,99.93936 1367,71.29431,181.8254,32.994255,70.42662,46.237354 1367,612.28436,215.9348,25.09375,46.971878,13.7649 1367,421.80508,197.94885,33.921326,60.542023,0.24842739 1367,621.9128,172.64584,17.233887,58.540314,0.018185453 1367,557.40405,210.28227,26.013855,53.379745,0.009494052 1367,144.27048,201.07166,19.051208,45.898605,0.007045978 1367,604.77496,156.65956,33.635742,129.81166,0.0059849047 1367,409.91193,208.0529,24.028748,54.477036,0.0021909317 1367,285.01486,178.13943,24.477753,55.658493,0.0011688254 1367,20.197453,158.90335,31.161331,75.007645,0.0009647461 1367,604.7046,60.775627,34.442078,94.976036,0.0009316152 1367,600.9941,231.65355,38.08893,211.53261,0.0005731401 1367,460.16678,217.5901,32.19516,57.0822,0.00052781694 1367,23.752802,118.46353,53.687256,156.23016,0.00016642646 1367,569.2839,145.04556,67.724365,222.46643,0.00012361837 1367,611.931,379.86002,27.215637,120.78369,0.00010259031 1367,219.46771,174.44455,66.978485,152.97931,7.786032e-05 1367,1.5798748,204.36209,17.733963,70.3172,5.3181782e-05 1367,1.0572925,246.84712,19.13318,131.72917,4.651076e-05 1367,51.832306,162.04044,82.41696,150.8128,3.3990807e-05 1367,2.9010906,148.25377,35.23049,164.36601,3.2135078e-05 1367,3.7232015,190.12338,57.333134,242.38919,2.0358058e-05 1367,593.851,2.8818164,45.041687,97.48064,1.4076666e-05 1367,1.5463452,144.34569,18.651709,94.41989,1.35141645e-05 1367,1.0762533,318.66428,19.769646,133.95642,6.977079e-06 1367,1.1907072,402.1705,20.453457,97.16467,3.0049976e-06 1367,6.107119,360.496,78.740715,129.121,9.1947516e-07 1367,3.0938802,430.80893,53.19827,68.84338,6.63873e-07 1367,1.4358741,46.442142,20.345118,149.07292,5.423109e-07 1367,587.59235,31.224865,43.741455,181.20224,5.061917e-07 1367,0.9851229,16.06425,11.57746,73.17938,1.7018543e-07 1367,3.038825,22.509737,58.471085,107.726074,1.4269679e-07 1367,553.78986,3.1814811,45.010376,53.15895,8.65752e-09 1367,163.7458,5.548791,38.814438,50.350964,1.9959759e-10 1368,233.60875,218.03612,27.102585,65.35878,99.9519 1368,557.8357,207.73802,33.195374,69.36037,0.14963083 1368,119.81207,202.51357,30.009735,58.32512,0.016404556 1368,610.08405,169.9967,28.973328,62.030746,0.012502121 1368,424.701,203.13153,28.794708,56.608,0.004825702 1368,468.54547,211.59718,23.397552,52.005936,0.0027263423 1368,13.582685,148.01364,33.7511,108.23917,0.0025010316 1368,586.7607,211.33475,50.80316,224.60187,0.002284215 1368,617.1469,68.3752,21.999756,77.45528,0.0015937972 1368,62.7092,180.7776,37.470425,71.2142,0.00085179973 1368,621.18976,196.02812,17.95691,59.589905,0.0007355246 1368,610.47046,185.75099,28.546143,141.69463,0.0005723159 1368,5.9516406,114.67655,69.32895,183.90619,0.00057200267 1368,1.9983733,146.45227,19.701075,98.78308,0.00035749786 1368,1.7505331,205.01883,18.317734,77.717804,0.00029632376 1368,614.8914,283.30417,24.255249,98.13281,0.00019064221 1368,610.65045,320.247,28.496216,152.20749,0.00018817422 1368,601.8891,49.10815,37.25757,223.55472,0.00014300783 1368,608.74634,440.37704,30.40033,64.15079,5.93999e-05 1368,1.0168978,378.32013,18.669775,120.19763,3.677849e-05 1368,582.9537,4.036341,56.172302,137.03041,3.3869397e-05 1368,215.84088,175.69026,67.7038,156.52385,3.276435e-05 1368,133.37303,204.38478,42.5764,89.93663,2.937443e-05 1368,3.685913,219.97264,56.744396,238.95518,1.9310244e-05 1368,1.2011206,251.36552,20.12029,147.37239,1.0856473e-05 1368,605.66,2.157321,33.486694,68.91332,8.108928e-06 1368,2.1503434,417.31903,52.4029,78.36597,7.682653e-06 1368,1.6445727,45.06771,20.421297,160.99866,4.89024e-07 1368,2.4950976,22.239147,59.40425,110.42911,2.0825162e-07 1368,1.0856864,17.522602,12.784227,73.06641,1.3085206e-07 1368,559.42145,3.0409408,44.72351,51.374035,1.9219604e-08 1368,1.9089698,8.239483,37.988018,47.279724,6.9315726e-09 1368,163.70456,4.969805,37.876328,50.955246,1.3107518e-10 1369,229.00977,211.94849,25.791107,60.587524,99.798836 1369,107.75175,198.29521,31.053062,70.63768,2.3485906 1369,320.0561,195.20552,25.932037,50.198914,0.044341393 1369,178.59158,246.62112,19.736023,46.569122,0.034967974 1369,3.9799252,155.94939,36.09764,110.617325,0.02156527 1369,273.594,205.12737,22.343231,46.33058,0.021327173 1369,586.61005,207.16219,27.32788,53.080185,0.012910398 1369,307.1871,218.06337,44.532776,84.03792,0.010439136 1369,466.966,207.1039,23.140625,48.756683,0.006557085 1369,4.029777,132.91818,56.336403,260.29858,0.0048602056 1369,157.34235,241.22833,25.994247,55.89798,0.0047608954 1369,183.7727,225.73134,32.61238,71.66945,0.0042362595 1369,612.30786,248.37311,26.838806,138.99649,0.0034804204 1369,214.98224,193.16414,55.487946,100.41737,0.002413456 1369,136.15282,240.7341,23.545609,55.718628,0.0022023944 1369,247.01297,217.75432,33.221375,77.14101,0.0014346505 1369,546.7503,256.5722,20.461365,45.167297,0.0012637328 1369,44.768875,207.41779,24.524246,47.9955,0.0009379123 1369,601.91095,169.82831,35.65155,156.84644,0.00085257017 1369,614.1067,52.828598,25.039978,102.12601,0.00081971654 1369,0.9945614,152.30353,14.8843,75.19957,0.00022624462 1369,428.89355,209.19641,19.747803,45.171097,0.00015021721 1369,1.3961638,207.9918,18.601938,152.7516,0.00012071181 1369,611.8799,368.67557,27.266785,130.88013,9.274789e-05 1369,167.30305,155.43774,145.39738,215.68134,5.457811e-05 1369,1.236141,373.7474,18.249859,120.73804,2.0629685e-05 1369,583.3243,0.0,55.822388,138.87776,2.020919e-05 1369,2.100135,293.3591,34.72999,177.03851,1.3546941e-05 1369,5.577038,357.26233,75.64482,126.598785,6.2441295e-06 1369,613.0044,0.0,26.142273,46.264812,4.500087e-06 1369,1.7021403,46.899208,21.293545,166.66321,1.2671549e-06 1369,1.0952169,14.035147,13.175451,77.851494,2.9004732e-07 1369,2.2379932,20.83558,57.341103,117.25521,2.364346e-07 1369,1.3950261,7.986481,38.6812,47.119106,2.8827346e-08 1369,578.4704,0.5450065,45.244385,57.624878,6.736352e-09 1369,163.0811,5.4357796,39.07042,50.886963,3.343447e-10 1370,222.49016,208.20244,32.290497,76.330734,99.93825 1370,535.65173,210.01881,21.540833,46.0551,1.9231696 1370,620.53754,210.22983,18.60913,58.099854,0.34531265 1370,323.0645,190.45125,20.782776,45.463684,0.02301549 1370,356.66617,214.42535,23.246063,45.47885,0.010292745 1370,465.62802,205.75972,23.384338,48.79518,0.009924439 1370,605.52094,177.72243,31.884521,124.82048,0.00908698 1370,278.796,176.46992,33.804382,67.409195,0.006401487 1370,320.03665,199.75531,33.24185,76.57294,0.0037914116 1370,1.0174211,183.42047,18.85924,84.620514,0.002571376 1370,616.81854,270.67413,22.328125,86.53113,0.0011057477 1370,589.944,205.71945,48.334106,214.5007,0.0009976728 1370,339.75134,219.08623,22.2901,49.64473,0.0009037572 1370,617.86145,21.387796,21.285217,68.316635,0.00030990082 1370,205.97784,169.95094,66.529175,148.6747,0.00029893965 1370,3.2954428,101.5685,59.404575,212.18385,0.000272737 1370,566.7187,218.33487,38.10132,74.7663,0.00016933707 1370,612.16394,369.9588,26.982727,130.73236,8.996999e-05 1370,585.42737,0.0,53.7193,126.69883,2.4152607e-05 1370,0.97293866,227.85933,17.188858,128.13762,2.1613867e-05 1370,515.91034,167.65178,75.10962,160.14452,2.070237e-05 1370,609.00946,41.023945,30.137207,175.84254,1.4535299e-05 1370,3.4909115,241.31471,58.264038,229.70805,7.3924652e-06 1370,0.9474081,334.82635,19.83613,131.06558,4.497118e-06 1370,1.891399,64.851425,22.156107,128.09601,4.161043e-06 1370,1.1034482,424.11234,16.699211,77.33914,1.9510712e-06 1370,613.4055,0.0,25.74115,47.757137,1.3329408e-06 1370,3.574992,397.89105,55.916363,95.45651,7.012458e-07 1370,0.8085629,11.092644,14.552181,82.54682,3.393564e-08 1370,1.9936051,19.742708,58.019917,116.9216,2.0472982e-08 1370,0.50601727,6.1200585,38.96091,50.326244,3.7659436e-09 1370,427.63226,4.355075,43.74008,51.394444,3.637647e-11 1371,223.14264,210.47563,31.13562,75.23341,99.95296 1371,615.3626,210.08954,22.999084,48.12445,2.8899903 1371,19.289293,182.17725,36.822456,76.66464,0.025005084 1371,606.3473,202.727,31.52533,118.67192,0.024034774 1371,608.8153,265.25266,20.803955,46.177612,0.0224873 1371,366.03543,210.06781,24.365051,53.862488,0.015656618 1371,279.52518,177.81755,32.777527,63.640274,0.010868237 1371,321.97464,181.63019,22.852203,50.496246,0.0103291245 1371,1.1921778,153.831,20.853619,102.89075,0.0047323597 1371,45.246323,167.63147,39.888237,102.71808,0.0032174473 1371,3.358462,108.97462,64.4989,171.9483,0.0029183654 1371,589.86115,220.80188,49.285522,252.6619,0.0008798515 1371,205.31418,172.40845,65.75598,151.67532,0.00025500247 1371,579.6533,212.55501,35.491272,71.86192,0.00020392347 1371,613.04675,4.6353874,26.099915,97.8768,0.00015968941 1371,612.0379,375.6699,27.108765,125.06079,8.6930646e-05 1371,513.73694,172.86182,75.54169,157.06763,3.6479887e-05 1371,7.3643327,125.92241,124.83411,246.54872,3.291054e-05 1371,1.0023878,193.30302,28.428795,150.83928,2.1586635e-05 1371,608.56714,40.972195,30.579529,177.71393,2.1178725e-05 1371,1.0765055,285.99338,19.94855,139.90591,8.054531e-06 1371,3.2826107,259.79684,57.938873,217.26608,4.3009145e-06 1371,1.095761,382.50565,19.406193,113.30115,3.3488784e-06 1371,1.6059204,41.20517,21.063778,172.31479,1.0677065e-07 1371,1.0437045,13.478126,13.022549,77.39121,1.28297595e-08 1371,2.130272,15.088236,58.59967,125.21264,5.9766436e-09 1372,218.81508,212.25166,30.691544,73.11754,99.87477 1372,524.39514,206.57458,27.262268,52.811584,87.642715 1372,11.639609,205.3214,29.929623,57.547318,83.69139 1372,540.8068,207.25044,22.051758,46.712265,17.628283 1372,29.426264,206.53442,26.265894,54.796295,5.5180864 1372,609.0927,205.37737,30.053955,66.946884,3.2554884 1372,5.373732,155.47935,49.694653,127.70543,1.6154956 1372,279.2738,180.01567,33.553436,62.57048,0.04642117 1372,1.4887272,164.42651,20.426394,100.81537,0.031868 1372,608.6783,268.1227,21.631042,47.372894,0.026810346 1372,602.6732,216.04495,35.45746,177.82416,0.007897746 1372,322.55487,182.8826,21.776733,46.56407,0.0070560644 1372,561.0382,256.92786,21.988892,48.315186,0.0016063083 1372,509.95,179.15178,56.75775,115.31801,0.00035693098 1372,4.3286004,111.58914,103.459984,255.6325,0.00027966022 1372,200.10503,171.81982,71.10338,147.99115,0.00020833257 1372,578.8121,210.85771,36.578796,74.83559,0.00020504538 1372,611.4856,345.4976,27.661072,132.03815,0.00012536251 1372,612.4792,10.806253,26.66748,95.21475,0.00011929501 1372,0.7120451,267.01282,18.7801,83.23013,9.554193e-05 1372,608.75146,442.44278,30.395203,63.12906,6.1788334e-05 1372,0.610424,287.73752,27.876835,158.4614,3.2619067e-05 1372,602.6419,85.6596,36.50476,210.284,3.2257925e-05 1372,480.29678,143.17088,133.72464,216.19377,8.46962e-06 1372,4.3814325,352.59958,79.52406,136.57013,1.6637608e-06 1372,1.6662306,416.5706,35.360485,81.541626,7.601042e-07 1372,1.5789918,41.23176,21.084274,172.25955,2.8114655e-07 1372,0.9915918,12.040921,13.626837,79.32818,1.7881256e-08 1372,1.9810174,15.225873,58.693672,127.25772,1.4107569e-08 1372,1.1813639,5.7610435,38.15657,50.013683,2.3654487e-09 1373,14.3390665,205.04031,33.869858,59.91281,86.38056 1373,533.8435,209.68153,21.887573,48.69423,16.845827 1373,1.50983,155.07477,23.31628,109.38666,0.38244215 1373,2.726688,122.201965,45.855232,192.16492,0.09281955 1373,279.0962,185.93503,33.30237,62.087585,0.025027048 1373,322.96072,180.7559,23.245056,53.808533,0.020448819 1373,621.6334,219.25652,17.513245,54.982193,0.016462943 1373,610.49316,203.3041,27.408508,112.71724,0.0073481873 1373,236.9204,213.17091,25.230637,51.514572,0.0032583543 1373,99.60111,202.92,31.851067,68.72856,0.0020673184 1373,216.17918,213.67421,23.532013,49.255783,0.001153658 1373,260.20166,205.48817,34.78836,81.7061,0.0008091043 1373,589.5135,225.16527,49.16974,249.54744,0.0005813944 1373,565.6207,261.12247,21.86792,47.864075,0.00057886116 1373,617.2001,18.626907,21.946594,71.15402,0.00042405818 1373,428.57104,205.11761,20.331512,45.111893,0.00040043032 1373,611.94666,377.40552,27.200012,123.41522,0.00010442195 1373,222.08932,187.56117,57.159393,110.561935,6.884859e-05 1373,601.40393,78.94411,37.742737,212.16573,4.1221705e-05 1373,510.21954,169.7474,82.705444,152.62292,3.5836892e-05 1373,199.66054,191.08307,41.638916,97.81177,3.375296e-05 1373,3.2638607,202.64542,57.20649,262.5083,2.6331973e-05 1373,585.90576,0.0,53.240906,128.90877,2.2655631e-05 1373,1.056071,230.4849,20.2398,151.02237,1.19765755e-05 1373,0.9696452,342.50958,19.798172,129.87714,4.8425895e-06 1373,613.1456,0.0,26.001038,47.161858,2.548086e-06 1373,3.481307,391.91925,56.41208,101.19263,6.6639257e-07 1373,1.4804558,16.954134,37.30002,210.14795,4.3016485e-08 1373,1.0957434,12.628737,13.381496,78.49362,2.1538323e-08 1373,1.6303988,6.331006,37.736454,49.55873,1.967879e-09 1373,433.45926,4.5859165,44.47998,50.46041,1.1756139e-10 1374,209.04889,212.60773,31.991745,74.0542,99.96407 1374,526.2256,210.25133,20.160217,45.151443,14.75403 1374,0.26389325,165.4967,32.53287,84.92992,0.36643386 1374,3.2940772,115.47904,50.308083,164.53656,0.016398238 1374,567.2562,260.3303,21.02246,48.889313,0.009959431 1374,280.2895,179.45137,32.176666,62.731995,0.0042828177 1374,320.0552,204.69691,24.623474,47.136765,0.0026253182 1374,106.89595,205.59808,23.265549,51.329895,0.0016496228 1374,565.8561,220.53032,38.497375,94.96974,0.0015473437 1374,611.95447,255.31496,27.1922,150.89592,0.0013207385 1374,515.0141,193.54083,38.534973,99.674255,0.0012276495 1374,617.3314,19.966534,21.815247,68.076096,0.00045106234 1374,617.59796,214.11351,21.548706,85.014175,0.00043978106 1374,149.64731,194.3464,22.431946,48.957794,0.0003560742 1374,52.43454,168.46944,29.707794,65.079025,0.00030535005 1374,615.9752,81.737305,23.171448,85.056595,0.0002711736 1374,190.2498,168.03435,69.86247,156.43129,0.00027071574 1374,586.233,164.79962,51.305664,202.29977,0.00020327495 1374,611.1413,112.62055,28.005371,154.7377,0.00012857844 1374,617.1826,362.71924,21.96405,80.46301,0.00012401571 1374,609.0285,442.01648,30.118164,63.130463,5.769206e-05 1374,0.20527345,338.75522,18.836384,87.35568,2.4522009e-05 1374,585.76807,392.2964,53.3786,104.46231,2.4048171e-05 1374,503.49698,171.28052,84.22922,155.15305,2.0781177e-05 1374,584.9861,0.0,54.160583,131.20293,1.5223423e-05 1374,0.6374162,245.04182,18.88222,147.16411,1.3206801e-05 1374,0.0,332.51837,11.16224,51.015503,9.1393285e-06 1374,2.4515626,191.87996,56.08224,247.43266,6.146268e-06 1374,0.67220706,393.7292,20.822552,105.09717,3.9866886e-06 1374,613.09894,0.0,26.04773,48.184578,1.6155001e-06 1374,4.8037467,353.73932,80.017555,134.00964,9.650898e-07 1374,1.2120272,38.550762,21.401724,192.1731,3.3163195e-07 1374,3.0846486,429.07483,53.149616,69.45102,2.7158907e-07 1374,0.9502629,12.160411,13.530245,79.73104,2.4040206e-08 1374,2.1637826,16.088848,58.42416,123.31909,4.8288853e-09 1374,1.328737,6.1631885,37.334656,49.80919,2.6822815e-09 1374,433.71414,5.561857,43.555603,48.59163,5.1120982e-11 1375,211.26862,215.76674,26.708496,51.82927,98.094635 1375,100.8979,199.32213,24.357285,53.682175,0.11232949 1375,1.3584799,157.87502,36.209282,103.351944,0.10284248 1375,280.61026,179.66704,32.500153,62.2287,0.009831535 1375,577.24896,217.2887,25.947083,49.312378,0.0089358445 1375,228.15683,214.2112,25.160004,52.039444,0.007700705 1375,618.0915,197.8163,21.055176,77.15065,0.0034562093 1375,195.9276,202.61404,53.78006,96.23395,0.0028330362 1375,427.93097,207.84306,20.54425,47.255325,0.0022058422 1375,3.7617173,118.99489,55.37637,219.51094,0.0013925139 1375,0.55388266,165.2993,14.367543,62.859253,0.0013597251 1375,513.2817,229.59543,30.333618,71.5874,0.001211734 1375,53.767464,168.89203,36.501945,84.46335,0.0010970392 1375,114.197395,205.2476,22.038368,45.345886,0.0006325176 1375,183.07959,222.63347,23.746704,45.19969,0.00045591127 1375,615.16144,81.87535,23.98523,85.0444,0.00038619427 1375,611.3456,110.703964,27.801086,146.8993,0.00036572444 1375,1.4297323,238.79948,19.284325,92.779434,0.00028860412 1375,159.14769,213.54248,31.925156,59.40811,0.0002125378 1375,62.07271,191.4992,39.567825,120.956635,0.00019012329 1375,614.3076,227.38733,24.83905,134.68048,0.00013523412 1375,618.832,22.175669,20.314697,66.41325,0.00013196646 1375,611.7545,343.6238,27.39215,131.9111,0.00013149934 1375,587.81177,226.92412,50.234314,220.29115,6.889023e-05 1375,609.0788,441.82974,30.067871,63.36075,5.4828735e-05 1375,1.8326458,241.54501,34.21177,199.08228,4.7876325e-05 1375,0.90220135,302.8023,19.042747,87.85303,2.2749597e-05 1375,584.10114,0.0,54.8255,275.9648,2.0300244e-05 1375,1.4910499,102.60664,20.357155,107.638916,1.9565425e-05 1375,173.67151,166.6381,96.30005,187.85362,7.5418066e-06 1375,1.0203606,361.1782,20.856485,107.69183,6.789273e-06 1375,596.99677,0.0,42.149902,60.67797,4.8605225e-06 1375,4.376589,348.351,79.7057,137.74207,2.1991991e-06 1375,1.6621689,419.67245,35.053944,78.2876,6.152822e-07 1375,1.645236,17.778034,37.147484,201.54146,3.069053e-08 1375,1.0133451,13.009629,12.938542,78.48641,3.053294e-08 1375,1.423081,6.436748,37.686863,49.164944,2.3436186e-09 1375,433.39667,5.4868264,43.869232,47.70136,5.1095933e-11 1375,146.2654,2.8359344,39.16797,48.349537,2.134883e-12 1376,211.0307,216.7323,33.189484,72.33246,99.98192 1376,101.43146,200.49443,25.156906,58.112076,1.0370837 1376,1.4702833,161.57703,21.60615,102.93848,0.028040659 1376,203.3028,219.64975,21.011795,45.353394,0.021686181 1376,284.5799,207.92755,25.022644,46.54358,0.015957104 1376,59.45157,181.52989,28.564804,70.15152,0.0075511583 1376,91.77563,210.9401,19.766289,47.507263,0.0048034345 1376,3.369577,119.39701,50.403996,172.603,0.003970169 1376,233.2784,216.88266,32.32228,60.658478,0.0035947822 1376,251.61282,221.10938,22.360199,46.16394,0.0014376456 1376,586.84546,224.32724,36.309937,56.736694,0.0012388579 1376,431.43332,202.95976,22.960236,50.22043,0.000981874 1376,620.67426,101.55965,18.472412,56.198242,0.0008512199 1376,612.0588,173.08301,26.415466,111.86209,0.0008451476 1376,331.1909,214.05223,26.1792,52.796005,0.0005365103 1376,192.72284,185.96074,72.09985,142.91048,0.00017202474 1376,341.22476,243.92099,21.276459,49.09189,0.00014472958 1376,610.57983,63.938114,28.566833,157.08159,0.00011110339 1376,605.8355,0.0,33.311157,67.65069,9.88818e-05 1376,612.4117,233.24342,26.734985,126.81526,9.253815e-05 1376,612.05994,357.55618,27.086731,135.2804,8.057286e-05 1376,588.85187,236.81433,49.83026,218.34564,6.0610404e-05 1376,0.82148355,284.2454,19.196388,83.442505,3.518278e-05 1376,584.35645,28.69198,53.586914,270.93716,2.0407006e-05 1376,0.8632674,320.18817,19.952364,139.0058,1.3400202e-05 1376,2.5881803,190.20688,58.32738,250.406,1.3281574e-05 1376,1.4691602,408.29868,26.292599,90.02426,1.3362754e-06 1376,5.964971,359.39758,79.20926,130.64285,9.723733e-07 1376,1.6032276,40.505295,20.537334,169.20961,1.1534579e-07 1376,0.991379,12.248067,12.938864,78.8443,1.717506e-08 1376,2.417121,18.057852,57.50536,117.14422,1.2903654e-08 1376,1.4820867,6.3039374,37.192444,46.902023,2.5896159e-09 1376,175.63547,6.3390203,38.06526,48.846268,1.0538703e-09 1376,446.67444,6.2523766,43.06067,45.455563,1.7322495e-10 1377,230.9349,216.2705,34.648468,74.34685,99.96923 1377,39.152264,170.01952,48.516514,110.36903,0.007780185 1377,40.110886,161.02148,25.13404,65.528366,0.0058878656 1377,57.787136,220.1973,25.955265,50.632874,0.0040415036 1377,125.44894,202.22792,32.963875,61.69182,0.0029480695 1377,481.32492,213.98209,37.724518,83.39313,0.0014751258 1377,102.51118,216.84233,22.59246,48.107925,0.0013638809 1377,3.5028436,144.51773,32.42992,101.27194,0.0009571554 1377,20.032335,130.44557,38.39087,130.73839,0.00074290135 1377,612.049,160.01141,26.879822,128.57343,0.00070159376 1377,11.232513,224.01134,24.583965,48.49141,0.00051597034 1377,580.2938,225.42662,36.67334,56.863113,0.00044059844 1377,620.168,139.73972,18.978638,63.67668,0.0004039044 1377,1.3641765,209.868,14.072067,51.411423,0.00039842562 1377,621.2527,72.57431,17.893982,59.38533,0.0002939566 1377,1.1878256,168.70938,14.680811,65.11664,0.00027674309 1377,212.38396,185.8392,72.04741,146.56036,0.00019026676 1377,7.2667093,104.2039,103.782295,226.41823,0.0001883518 1377,612.0067,373.91293,27.139954,124.14395,0.00010791826 1377,1.5198926,186.34872,20.64652,135.35727,8.530235e-05 1377,29.038177,206.41154,34.585667,72.48784,7.5620716e-05 1377,583.616,75.06307,54.083923,219.89532,6.06952e-05 1377,612.79254,239.29199,26.354126,121.80524,5.725336e-05 1377,587.90405,259.33856,50.52887,216.49384,4.346843e-05 1377,464.7948,187.06923,104.24628,201.57994,4.1083596e-05 1377,1.026259,340.5839,18.703367,130.64728,2.9049492e-05 1377,609.6494,42.90321,29.497253,163.3996,1.630244e-05 1377,1.3033928,270.10703,27.216042,142.02567,9.4351635e-06 1377,4.161706,198.86723,56.458576,236.11943,8.5828715e-06 1377,1.430022,83.047485,19.78009,97.17374,7.726076e-06 1377,5.0906773,356.12064,79.06139,131.3262,3.2899611e-06 1377,0.89141685,422.27185,16.339615,79.21582,2.5328613e-06 1377,598.4778,8.753844,40.668457,83.65476,1.9781367e-06 1377,2.934896,430.43445,53.775036,68.52374,4.9349904e-07 1377,1.0636821,13.183536,11.665499,80.11853,8.5706915e-08 1377,1.9140365,15.608138,35.186882,182.54765,8.034959e-08 1377,1.9453663,8.410375,29.739927,59.521564,1.3902554e-08 1378,71.19264,214.14763,25.976494,50.986404,96.22402 1378,92.704216,212.60533,24.129951,48.731796,83.7509 1378,219.03777,214.79477,20.468124,46.26831,0.72934616 1378,80.14456,175.50842,42.760048,113.476105,0.036128405 1378,138.69423,149.16985,44.565002,114.267136,0.0060156714 1378,333.74783,211.49132,27.347015,49.848892,0.0049600457 1378,405.52127,179.36975,35.770782,71.29492,0.0043719565 1378,155.1923,205.15152,34.33911,62.86145,0.0029869692 1378,58.66701,119.930885,39.03613,165.42609,0.0020595158 1378,611.32306,196.35239,27.582886,122.99365,0.0009783818 1378,174.89702,224.8074,21.634079,45.334778,0.0008823429 1378,193.48787,219.27701,23.11905,45.433746,0.000758272 1378,568.2794,227.04558,32.967346,59.754684,0.0006298618 1378,449.49945,189.05078,24.849792,56.235107,0.00031118258 1378,550.5464,199.08658,23.597717,51.998108,0.00030373904 1378,621.5473,107.073425,17.599365,56.77617,0.0002706943 1378,602.6845,300.21356,36.46216,180.42337,0.00019525253 1378,616.8799,57.458725,22.266785,86.07135,0.00018937774 1378,620.6235,140.8844,18.523193,66.40669,0.0001874869 1378,1.2004956,182.32652,18.362617,76.134476,0.0001868864 1378,30.789385,90.7717,51.40661,163.8639,0.00016663132 1378,610.3284,84.90021,28.818237,169.7351,0.000114524075 1378,608.99036,443.77823,30.156311,59.115784,7.5278214e-05 1378,59.03646,133.87793,98.52967,223.0199,5.2046387e-05 1378,106.47069,131.12285,110.44197,195.90819,4.2931366e-05 1378,1.9505689,164.102,31.448502,178.11351,3.699095e-05 1378,2.0242457,89.07869,18.838837,142.50835,1.633802e-05 1378,0.9948137,331.8247,19.995909,135.68103,1.0213312e-05 1378,0.9271688,252.59355,19.924936,140.20775,6.8637237e-06 1378,3.0356104,249.53813,57.539272,223.56062,6.4440355e-06 1378,584.92676,17.258484,53.770752,111.459915,5.0638705e-06 1378,1.9111426,419.8075,34.933445,79.52496,9.817621e-07 1378,2.6141863,17.38149,55.470055,126.79879,4.995287e-07 1378,1.1935315,14.033177,11.62565,81.29218,4.5735472e-08 1378,1.9290072,9.008197,30.71358,61.49454,2.2413909e-09 1378,293.64203,5.1260695,37.69397,49.277203,1.9186183e-10 1378,551.8309,2.2051547,43.087708,53.12518,1.3140497e-12 1379,364.28638,223.67993,41.86551,80.106415,99.975845 1379,188.93575,219.13591,34.12889,57.315445,99.874084 1379,210.532,219.66336,21.09845,45.45764,23.99585 1379,338.73877,217.53294,22.936737,55.685593,0.6187774 1379,58.177814,164.89069,20.915104,52.76541,0.10114989 1379,203.09737,194.46915,38.537384,85.66385,0.055864867 1379,527.5212,182.69612,34.620544,80.02568,0.053030986 1379,52.666664,97.15391,34.81868,140.2528,0.031746276 1379,285.97852,206.62585,34.517,64.77591,0.006267373 1379,226.0598,185.76672,33.408188,72.23999,0.0049560834 1379,67.13358,144.04037,36.6558,80.64081,0.0033092725 1379,572.07623,184.51035,24.322083,54.464066,0.0010074767 1379,173.45552,161.60791,70.438995,185.92929,0.00069837883 1379,4.776351,81.479416,56.80531,239.36015,0.0004683592 1379,611.0534,257.40912,28.093262,143.93417,0.00032742033 1379,272.98877,161.44672,37.7713,94.77496,0.00026135528 1379,611.2817,106.4121,27.86499,136.65118,0.00024552716 1379,611.6068,373.93005,27.539856,124.976105,0.0001345287 1379,612.6768,191.9735,26.439209,129.98442,0.00013250127 1379,334.20612,174.00195,94.01044,187.06451,0.000100652505 1379,1.6059408,95.03917,18.95781,144.00224,6.7171415e-05 1379,583.7834,202.20535,54.118164,250.23715,5.8282672e-05 1379,0.8086263,351.33124,17.207308,124.1535,5.0213497e-05 1379,0.9791854,207.5859,19.939333,139.11621,4.4024713e-05 1379,105.45208,75.72279,55.869987,172.99164,2.647858e-05 1379,3.4578938,292.59,56.002842,179.77277,7.974825e-06 1379,1.7436051,410.6477,34.288704,86.06366,3.8199682e-06 1379,612.3992,0.0,26.747498,62.936188,3.2455844e-06 1379,2.9949007,14.861029,59.537453,125.31609,1.7062073e-06 1379,0.96035564,13.353441,12.912308,81.37706,2.9960563e-07 1380,39.8163,197.63847,28.145393,51.316406,0.3389477 1380,16.263964,192.14,42.216232,67.26564,0.20514709 1380,256.1386,149.86148,23.252502,57.32817,0.023063995 1380,293.16183,233.45543,48.917175,98.534225,0.015399465 1380,7.6509213,215.61452,27.310596,55.343246,0.0058397087 1380,243.71901,69.70962,40.11177,155.4729,0.0051151835 1380,267.37985,139.56056,36.741943,77.020035,0.0020026201 1380,447.97464,173.42181,44.831787,123.7048,0.0010794217 1380,311.75604,159.27464,50.388184,167.25395,0.00075063965 1380,136.60138,126.73719,38.903427,82.70716,0.000685718 1380,617.18567,314.17737,21.960999,76.419525,0.0005591788 1380,5.7826695,115.222916,77.96265,190.5348,0.0005531494 1380,610.34424,206.84839,28.499268,142.23114,0.00049929885 1380,92.849464,78.20534,51.64689,153.93811,0.0004004074 1380,620.0664,180.51985,19.080261,58.109116,0.00035273127 1380,611.33417,121.80357,27.8125,143.86345,0.00025010627 1380,551.27136,205.72122,23.133545,47.60788,0.00024140759 1380,1.9226669,187.99057,20.363188,113.30325,0.00022623729 1380,566.5535,215.15245,24.519836,52.24156,0.00021849184 1380,588.7367,235.27682,49.66156,226.65823,0.00011069135 1380,119.53452,89.91743,82.96813,195.41962,9.638554e-05 1380,461.63522,161.38423,24.778381,63.972107,9.035727e-05 1380,611.58057,372.77103,27.566101,126.66986,8.226921e-05 1380,284.9867,297.08572,26.730255,49.78058,8.221697e-05 1380,610.17725,33.536068,28.948181,138.78914,8.048954e-05 1380,376.04187,315.22083,76.3544,155.69373,6.818406e-05 1380,302.76077,81.13152,42.90735,173.33313,5.031061e-05 1380,289.62454,83.97931,114.72229,261.55743,4.5111385e-05 1380,1.103689,355.90472,20.47687,103.89905,2.025538e-05 1380,1.6848544,146.06076,18.905941,88.23932,1.7198032e-05 1380,42.416965,72.50284,118.85988,252.7237,1.474534e-05 1380,611.4949,2.2075098,27.651794,62.344822,1.2184569e-05 1380,1.9604802,230.4199,30.329575,194.27928,1.1984745e-05 1380,3.6869729,318.4916,56.80478,160.32391,3.1433292e-06 1380,3.838711,20.007853,55.27579,112.86166,1.9542108e-06 1380,1.1128557,421.77768,16.416315,79.44107,1.7933667e-06 1380,2.173707,46.69345,21.695534,107.38315,8.8865005e-07 1380,1.2006193,13.287712,15.39833,79.09908,5.279004e-07 1380,3.258392,428.25497,52.577045,70.174194,4.158184e-07 1380,5.577033,7.9587793,42.55374,52.78948,2.1751319e-07 1380,68.39292,8.055166,40.95543,48.67994,4.0943718e-08 1380,40.34248,7.430225,42.934628,50.831535,2.509407e-08 1381,502.15485,213.89398,33.44409,62.963196,99.86313 1381,521.523,212.85065,30.489258,66.20322,99.651924 1381,177.93794,208.89336,35.729507,63.121506,3.4960523 1381,0.0,227.51091,29.68767,82.97322,1.3168175 1381,196.60022,210.78764,32.25009,50.897446,0.057596195 1381,414.42722,146.16463,25.673798,74.75809,0.044781696 1381,605.5447,173.74976,33.583557,90.690765,0.038604464 1381,537.99084,94.98164,26.835693,66.36397,0.026305016 1381,536.408,96.833405,45.71515,162.97577,0.021942908 1381,154.25224,219.28209,33.885803,67.16612,0.0095441025 1381,422.20944,111.83899,52.659637,121.66846,0.0018788906 1381,206.86305,203.02892,40.794067,92.16823,0.0011803855 1381,478.5378,105.42123,75.92197,196.92502,0.00097603153 1381,1.5818604,210.4643,52.892906,159.02283,0.0005763812 1381,585.78784,135.20221,52.878662,201.0394,0.0005629027 1381,169.44827,109.912865,72.413666,187.9945,0.00032699722 1381,464.70178,65.4238,45.646667,178.76787,0.00030064993 1381,307.66238,129.05226,37.504395,80.38182,0.00017893336 1381,508.3592,68.60147,113.34863,226.28806,0.00010854272 1381,615.09393,20.777367,24.052734,75.73387,0.00010737705 1381,1.3568864,265.7429,32.859253,203.35785,9.047989e-05 1381,242.14383,91.50162,88.35785,196.03079,8.2787476e-05 1381,602.3827,293.04324,36.763977,193.28848,6.0409242e-05 1381,608.866,440.3136,30.28064,64.260376,4.5356064e-05 1381,1.4190674,57.94726,36.152126,229.90997,8.940483e-06 1381,0.89000165,368.85352,19.73369,127.20279,7.974581e-06 1381,1.2954525,49.30162,20.125008,130.10735,7.43361e-06 1381,599.2302,13.468034,39.916443,199.2603,5.49045e-06 1381,2.2452443,15.335782,37.107044,77.25678,3.1027469e-06 1381,5.293535,25.778152,77.67449,135.78615,2.1373587e-06 1381,3.0549333,392.24426,56.42654,101.66785,1.5875445e-06 1381,16.729357,9.667058,45.960968,51.426727,3.8561438e-07 1381,103.427025,6.424686,45.404106,46.27312,1.3353169e-07 1381,130.15118,6.9936576,44.55612,46.88195,9.926071e-08 1381,70.11826,7.993651,43.57933,52.885647,8.823683e-08 1381,205.81155,6.6083384,42.396835,53.670765,4.0645087e-08 1381,232.31212,6.9698243,42.577133,55.636986,2.5735405e-08 1382,157.19734,231.42662,48.03241,104.66887,99.613815 1382,336.10474,220.2515,34.211273,79.0325,55.5114 1382,380.39578,215.45969,38.280975,69.68634,38.283302 1382,593.9029,78.90402,41.292114,139.13618,1.4366589 1382,359.00955,231.73758,24.62201,61.255707,0.73393273 1382,158.37547,229.3097,29.772171,52.124268,0.38565174 1382,47.03762,256.43802,31.432579,67.73291,0.041846205 1382,1.8509164,72.176704,43.777683,129.98663,0.01074321 1382,354.2775,207.57571,47.057556,111.73663,0.0071950164 1382,437.98407,78.61061,47.067566,161.2918,0.0024016914 1382,615.6455,135.93404,23.50116,91.35727,0.0019801182 1382,586.3772,20.985184,51.516052,117.360504,0.0009446123 1382,463.0646,104.87475,86.51401,195.08975,0.0005115997 1382,2.4402182,67.59504,74.79029,254.8624,0.00035642146 1382,611.216,268.90045,27.930664,131.68674,0.00022033953 1382,357.14624,166.90561,100.64444,185.6199,0.00021694129 1382,610.7541,183.08922,28.392578,147.95772,0.00016768007 1382,117.27245,147.73145,125.33425,270.32065,0.00012543079 1382,1.7173243,311.05063,20.062428,136.93329,0.00010948161 1382,600.489,338.71548,38.657654,148.05328,6.682109e-05 1382,1.0655632,122.1327,21.860262,197.06409,5.0609833e-05 1382,469.1724,222.72069,44.669525,99.716995,4.4033113e-05 1382,608.96356,438.51276,30.183105,65.205475,3.6570942e-05 1382,614.2041,0.0,24.942566,48.67347,2.2652433e-05 1382,1.4212769,247.02582,20.179651,117.867004,1.1420109e-05 1382,3.1856918,386.92828,55.71871,105.99054,5.5261507e-06 1382,1.1957308,441.72574,20.839855,59.526306,2.6210053e-06 1382,523.5412,4.2854543,47.183655,54.17129,1.03152416e-07 1382,185.38214,10.074265,41.919952,49.33258,7.1817354e-08 1382,220.14987,11.037074,43.856537,50.24346,4.569048e-08 1382,301.131,7.480656,44.806885,47.49262,4.477975e-08 1382,157.42116,10.562728,42.979874,46.929707,3.898986e-08 1382,253.60121,11.228317,48.67491,52.34051,3.248225e-08 1382,130.40717,9.4143,43.023148,46.879627,2.8949227e-08 1382,577.61383,4.4382486,47.52417,58.49045,2.312912e-08 1382,88.26105,8.591958,44.333527,48.919403,1.5035429e-08 1382,1.5858399,8.3828125,39.5408,96.787506,8.03212e-09 1382,60.30805,7.472041,44.4732,50.6165,6.9324457e-09 1382,550.72833,6.4907064,47.687073,55.62889,2.9509992e-09 1383,427.65573,235.22878,50.82141,127.19414,99.65161 1383,54.348778,218.78287,44.81144,71.493164,68.19409 1383,201.50665,204.26883,54.723328,94.38718,54.71003 1383,418.97714,237.89603,35.599426,69.272095,11.975655 1383,32.883537,212.33157,24.500378,52.776062,10.90603 1383,576.52747,227.28186,52.860962,122.94226,4.592797 1383,45.345528,222.9548,25.597565,55.973175,1.0834119 1383,12.386276,208.36266,28.532429,60.93309,0.44634533 1383,82.175964,240.55649,20.527466,45.809784,0.11572449 1383,235.77956,214.58722,35.3517,74.242615,0.046265233 1383,443.52756,306.87048,26.541351,50.820892,0.033643942 1383,236.70651,79.25439,39.677155,118.126884,0.018062722 1383,190.04709,109.64276,89.841125,215.16345,0.007702056 1383,5.4693947,156.82361,45.99452,134.83783,0.0067439405 1383,2.4765284,54.601597,36.42081,118.38617,0.0040439633 1383,608.2493,151.77742,30.897339,153.77907,0.0016746143 1383,160.31018,76.38289,67.6324,206.9586,0.00044715535 1383,240.03688,74.91988,98.79878,240.1677,0.00036632203 1383,384.45642,158.67561,131.58752,275.92426,0.00030010336 1383,584.7149,394.9255,52.662903,94.61508,8.079947e-05 1383,2.1932619,239.80519,33.11702,197.44164,6.245892e-05 1383,606.4558,0.0,32.690857,69.97968,4.5062883e-05 1383,318.38272,89.20462,93.74158,214.58435,4.4279797e-05 1383,1.0492,334.55432,19.987211,138.31927,1.5528209e-05 1383,597.7848,2.7270508,41.361877,197.21642,9.926458e-06 1383,1.2827182,12.543737,86.9451,299.6966,4.3398254e-06 1383,3.1320264,397.92847,56.825493,98.0531,2.5847544e-06 1383,395.48563,9.274736,43.61209,49.900627,6.5772966e-08 1383,423.83884,9.094098,41.537903,49.14913,6.450387e-08 1383,543.9612,5.064225,47.96283,59.503647,3.1485584e-08 1383,1.844305,12.611351,37.14524,84.582184,2.2548003e-08 1383,319.21613,5.4005733,44.429596,52.833973,1.1096373e-08 1384,510.39835,206.11014,54.987213,106.18533,99.06941 1384,346.1541,216.09811,31.112366,53.198425,93.97658 1384,282.65622,210.20445,31.354126,63.933273,5.839107 1384,328.38248,217.81055,33.98343,70.761566,4.193157 1384,235.43962,215.55421,23.953781,52.210587,0.55055916 1384,46.731815,217.80388,29.28017,56.964737,0.07311803 1384,491.8875,61.368805,49.36676,157.14078,0.040323816 1384,432.17334,44.200794,54.416504,199.75435,0.033942714 1384,206.56636,213.12628,27.18068,49.251343,0.024969347 1384,483.87012,84.158936,101.917725,228.83517,0.010922034 1384,1.2544678,152.44345,21.245085,99.72476,0.008675605 1384,465.3842,61.66944,43.34781,193.08475,0.006126708 1384,579.87964,25.56862,57.884644,317.4379,0.004387201 1384,615.1553,252.18063,23.641235,83.2171,0.00057718874 1384,607.7989,8.734518,31.347778,153.39697,0.00032124305 1384,597.72217,207.91882,41.4245,171.30582,0.00022858255 1384,511.13788,101.97197,24.60315,74.36908,0.00010403956 1384,384.93744,25.08849,150.09265,289.98532,7.523458e-05 1384,295.9994,130.67877,141.74457,250.2461,4.5505323e-05 1384,583.8401,399.02985,55.241333,100.43799,4.486109e-05 1384,1.4831942,182.49944,28.466755,160.77406,3.861155e-05 1384,1.4361459,276.26447,33.676083,182.72711,1.009806e-05 1384,1.1811417,373.67133,18.720562,119.2366,5.736169e-06 1384,3.5935807,397.59857,56.122337,93.67374,1.794715e-06 1384,590.2108,5.985028,46.572693,54.308327,1.5588739e-06 1384,2.851286,79.667465,57.57644,221.58937,9.3546487e-07 1384,1.4052613,7.367279,20.038473,58.034058,4.3095832e-11 1385,434.37457,212.74724,24.289642,53.382095,97.48146 1385,390.1075,217.78319,24.271912,45.45012,85.74033 1385,543.9471,218.09248,48.83313,80.544266,37.400097 1385,416.52402,213.99593,33.059418,68.20677,2.3476043 1385,26.573559,210.61441,27.442093,49.43152,0.1385887 1385,217.30484,220.06783,31.975891,57.16722,0.091265716 1385,598.2116,75.071526,38.29193,114.17716,0.027154628 1385,8.519536,204.05165,33.394634,71.195175,0.0052136695 1385,583.39,53.579937,54.61139,289.72394,0.004541883 1385,239.04008,223.47089,26.778397,54.66284,0.0030131126 1385,610.12555,193.21107,28.99414,148.92592,0.002282299 1385,618.0217,91.84741,21.124939,70.476364,0.0017770347 1385,1.9809619,210.44234,18.1262,76.35686,0.0014805447 1385,573.04987,235.52826,38.606506,76.45755,0.0005078532 1385,417.29047,170.47812,66.1756,172.74335,0.00040910262 1385,475.23898,231.17274,40.99582,96.66402,0.00034275805 1385,617.7845,43.161285,21.362183,69.265175,0.00033592022 1385,502.9733,134.87038,127.609955,248.57957,0.00032498888 1385,2.9210222,94.88041,33.970787,198.86511,0.0002674246 1385,585.57336,385.30023,53.106934,107.668365,0.00013978528 1385,2.5389583,213.7825,31.69988,183.43127,8.8361434e-05 1385,605.5151,0.19667318,33.63159,69.12882,5.6826888e-05 1385,608.7812,441.53995,30.365479,64.53656,5.5359083e-05 1385,440.2609,64.506996,41.576874,126.06942,1.549519e-05 1385,1.1289966,314.41708,29.115686,152.64136,1.0840704e-05 1385,1.1134399,427.3431,16.506884,75.06128,7.561323e-06 1385,3.6192987,400.4374,56.05322,96.73468,2.7168558e-06 1385,1.0414014,27.0245,20.248642,117.8231,7.363796e-07 1386,449.48453,211.38078,29.587402,69.22456,98.06461 1386,482.67313,210.6501,25.244904,56.44545,95.983025 1386,493.7333,215.70836,30.512482,74.0721,91.32351 1386,475.5007,210.04074,43.31717,150.17621,1.2826816 1386,283.9369,212.85422,31.400085,70.5426,0.013411032 1386,258.78708,212.45525,33.23285,65.7527,0.0077129914 1386,36.736168,196.51428,41.137947,105.44272,0.006439049 1386,479.6131,305.47256,42.923645,96.99457,0.0018742665 1386,306.39716,241.83408,19.824432,48.09369,0.0016942439 1386,2.8471258,286.07507,40.385303,129.01129,0.0012736332 1386,410.394,134.56732,137.01016,253.60205,0.0011367868 1386,501.1369,214.28223,45.819458,131.78262,0.00081012433 1386,598.4381,127.841644,40.364014,220.65408,0.0008010871 1386,477.43646,24.006823,43.960205,127.75162,0.00051916327 1386,135.7601,248.2673,33.939453,78.01764,0.0003248522 1386,2.8580892,239.46922,79.525055,232.78996,0.00019132903 1386,529.641,232.85962,42.392517,101.46448,0.00018292211 1386,607.4133,26.984955,31.733337,160.45647,0.00016993404 1386,1.1324414,318.73682,18.832582,160.57507,8.212857e-05 1386,610.92316,255.72365,28.22351,141.6317,6.916289e-05 1386,608.0248,3.922715,30.743286,53.72727,6.575846e-05 1386,613.0209,341.37183,26.125793,142.03589,6.174316e-05 1386,1.2773609,66.12775,21.67512,171.71085,5.9585826e-05 1386,608.79364,440.21143,30.353027,65.52011,4.2056858e-05 1386,1.527365,182.5117,20.35488,152.1486,2.6150086e-05 1386,3.0494304,385.78784,56.026077,105.49863,7.310578e-06 1386,496.79184,51.309147,45.59488,176.42334,5.4728016e-06 1386,2.4052606,49.158543,60.4849,301.87982,4.1596063e-06 1386,0.9694873,421.08878,16.735222,78.6889,3.0146994e-06 1386,442.7292,2.7060938,121.5307,270.35974,1.7290965e-07 1386,519.257,13.567025,61.31122,168.16194,1.5952716e-07 1386,1.6855322,10.412816,37.18686,86.53883,1.0564973e-08 1386,562.4538,2.146649,48.212036,52.81356,4.8002136e-10 1386,496.41116,2.8283496,45.458344,57.781845,4.0875714e-10 1386,524.31354,2.3730047,45.748535,57.404938,2.3269543e-10 1387,584.7932,208.58531,34.31299,79.57399,93.606995 1387,529.79,211.96852,25.132263,62.180008,31.571648 1387,549.4045,213.84784,23.606384,57.52487,1.0465056 1387,291.98373,204.84311,30.674255,71.76593,0.757599 1387,346.89996,236.55435,24.42804,63.611023,0.21080391 1387,320.3785,213.38316,32.183167,71.9261,0.12614761 1387,578.97125,90.67211,54.83728,245.43936,0.10250653 1387,506.84427,213.74677,33.84323,91.30115,0.026356578 1387,609.9669,165.78082,29.165527,143.0087,0.014039628 1387,578.4867,243.81503,28.836426,73.15662,0.013237454 1387,617.4646,55.184505,21.682068,78.20528,0.0069843116 1387,10.099344,438.40625,54.08477,65.67151,0.0036029164 1387,575.27435,4.0243883,63.518127,163.02945,0.0004950543 1387,585.16095,392.1538,52.831177,102.093506,4.1663166e-05 1387,1.3435001,211.3528,18.644293,125.37868,3.28744e-05 1387,1.3719954,366.16006,18.778856,131.6236,2.6254089e-05 1387,605.2063,0.0,33.94037,71.12441,2.5353078e-05 1387,4.2462516,206.20502,56.787136,243.32666,2.4165973e-05 1387,56.052845,151.68828,83.95914,173.72255,1.8616936e-05 1387,210.6867,145.02086,88.043365,207.67049,6.721935e-06 1387,1.8671892,69.88056,29.99369,172.1372,6.3608745e-06 1387,551.0092,5.1335745,52.861816,130.5925,6.3019193e-06 1387,1.4700196,24.578484,21.026937,125.281456,9.55864e-07 1387,539.0756,1.0276855,46.520264,57.39734,5.343091e-09 1387,1.1382763,8.556401,21.883232,56.785114,2.6377165e-09 1388,576.7351,211.34113,28.540283,65.966095,99.92718 1388,595.32983,208.42628,33.095642,70.72752,99.8075 1388,576.51874,189.79256,57.523804,145.12114,0.13067499 1388,479.93054,221.30608,33.155823,66.0638,0.08981764 1388,524.47845,212.4109,27.255371,57.885666,0.07662129 1388,623.16815,211.63882,15.978516,59.68637,0.061433546 1388,318.5591,209.45787,34.08893,81.53313,0.053674407 1388,381.6394,254.26855,28.328033,68.76575,0.010913496 1388,442.53726,224.22792,26.292023,55.862747,0.004109462 1388,617.93054,373.22168,21.216125,89.76376,0.003224125 1388,494.446,211.214,49.78012,100.28627,0.0031636395 1388,462.92825,231.56187,26.54718,53.769028,0.0020904483 1388,6.826714,204.10327,33.57985,84.59949,0.0018210706 1388,354.49786,238.1429,23.687836,61.169144,0.0016573286 1388,608.9222,101.99822,30.224487,178.6857,0.00069377135 1388,616.48737,247.02446,22.659302,83.64143,0.000395806 1388,494.4369,126.21985,139.32831,234.7359,0.00034461715 1388,521.77155,136.0963,20.13684,45.057007,0.00030114292 1388,605.89404,5.2520313,33.252625,93.278206,0.00020939301 1388,611.7588,281.12567,27.387878,151.50818,0.00015559293 1388,608.694,437.89984,30.452698,68.21747,0.0001078045 1388,1.303169,211.89107,18.033575,139.90742,0.000100241174 1388,3.9664862,208.7745,57.073124,240.72519,4.5164503e-05 1388,566.8821,2.9016082,72.26459,160.64337,1.6158088e-05 1388,1.140035,341.3976,19.2581,134.56131,1.49262e-05 1388,1.5387558,91.58705,19.671486,147.80228,8.977974e-06 1388,67.45987,156.66121,99.91399,210.90056,7.3887854e-06 1388,228.30232,154.64096,86.43114,207.13803,6.791047e-06 1388,4.146911,396.26965,56.350147,97.777435,5.5284067e-06 1388,1.3256925,443.23495,21.47728,60.01651,1.9980255e-06 1388,1.9545377,12.8542385,59.3957,121.077126,1.4367513e-06 1388,4.123397,55.838203,57.378883,243.4855,6.5472346e-07 1388,1.0306609,6.434479,33.06874,66.74316,4.3214673e-08 1388,394.26984,6.8367305,42.80893,50.440315,3.066294e-10 1389,90.07709,200.996,17.448715,46.85614,98.81963 1389,105.30178,202.76233,22.570023,45.764633,96.18714 1389,576.48474,202.65231,23.398254,56.70529,76.404175 1389,502.75043,207.34544,26.3266,54.988297,67.86379 1389,416.68173,282.88046,24.392181,55.21173,1.1783237 1389,599.5899,203.12952,24.318787,52.3403,0.09128316 1389,524.6592,212.19308,25.772522,56.44098,0.036450922 1389,570.3207,179.55486,41.499817,118.73848,0.024621617 1389,605.50977,224.08269,33.6369,91.66383,0.012112434 1389,83.497635,192.29776,40.366302,70.92215,0.009648993 1389,588.1758,136.95668,47.54669,218.6255,0.0073780715 1389,448.5398,211.37659,24.091614,51.317566,0.005283349 1389,350.53247,247.9968,38.386597,76.97531,0.005263726 1389,505.49127,234.22678,28.236633,60.45517,0.0023622462 1389,413.35806,224.0255,48.07715,133.61662,0.002164511 1389,616.8552,148.63335,22.291443,92.03259,0.00016053567 1389,3.9918914,189.28839,56.311707,236.85895,0.00010641905 1389,1.7040633,192.85146,19.04996,118.67586,8.3666346e-05 1389,603.97125,333.29175,34.59967,151.15201,6.274017e-05 1389,609.53644,434.39557,29.61023,68.86975,6.15596e-05 1389,62.16786,141.2136,81.56329,205.0781,5.3691027e-05 1389,596.05835,8.164437,43.088318,75.80945,1.47620285e-05 1389,1.1756071,357.53714,20.573116,109.11682,1.32389205e-05 1389,0.9066887,293.14984,20.662016,112.25061,6.5538593e-06 1389,1.0346346,422.84,16.34916,78.95892,5.86941e-06 1389,1.6770402,101.884636,28.790112,155.84967,5.3212125e-06 1389,3.5550327,397.4541,56.76854,97.59503,5.270958e-06 1389,231.05011,157.54337,90.065796,203.58188,2.932902e-06 1389,4.3021955,58.20246,57.83487,242.48764,3.6195286e-07 1389,3.0114064,21.032013,58.158478,107.88844,2.8363388e-07 1389,1.6565373,29.431673,19.458553,113.43112,7.262123e-08 1389,1.761818,11.032152,29.963886,57.112694,1.8007744e-09 1390,73.87153,200.39284,29.243294,58.741104,99.83877 1390,264.28268,212.1081,22.997955,48.02054,99.711136 1390,101.51948,199.76988,20.259666,49.146683,97.21219 1390,604.55206,339.10284,33.912292,165.70248,13.535605 1390,62.428577,198.30467,21.037983,54.39676,0.12603158 1390,614.7829,217.64125,24.36377,47.139603,0.097010076 1390,616.6304,407.9981,22.516296,67.675354,0.043023273 1390,564.85406,210.7075,25.835693,54.225723,0.031956468 1390,607.7074,100.590034,31.43927,172.66183,0.009512883 1390,611.74194,217.49358,27.404724,144.34328,0.002858432 1390,615.0372,455.70844,24.109497,54.72058,0.0016460883 1390,60.08236,179.10965,62.4321,95.50821,0.0015972286 1390,414.42,249.35484,61.17334,146.76738,0.00025491224 1390,1.9958944,186.57005,29.493942,134.2585,0.00024203898 1390,561.5614,80.77822,74.502075,240.88455,0.00022956826 1390,3.610241,202.69276,55.44174,242.60994,0.00019380807 1390,68.05411,137.15817,99.979065,213.6087,5.886249e-05 1390,1.362972,363.32935,18.494326,133.6062,1.5601283e-05 1390,1.0899756,107.68027,18.993113,142.21931,1.2351309e-05 1390,3.743353,398.73483,56.01233,96.03226,1.04501305e-05 1390,246.91911,186.11485,56.96022,94.193436,1.0311651e-05 1390,608.223,3.8242157,30.923645,59.611156,1.328238e-06 1390,586.0314,14.213008,53.115295,122.65571,9.097567e-07 1390,217.11499,141.93495,139.14856,215.84053,2.6768618e-07 1390,1.4600513,16.22291,21.061022,111.245964,1.9175017e-07 1390,3.4931755,33.926914,59.511944,271.5808,1.3401238e-07 1390,0.7436735,4.996392,39.252388,48.69517,1.2274322e-08 1390,361.68954,3.3132048,41.952026,49.186718,2.4658167e-13 1390,394.9579,0.7806755,43.030457,54.493416,2.1962298e-15 1391,25.27601,200.0293,42.341835,66.5838,99.940445 1391,530.7805,214.88182,28.064575,73.94591,99.85464 1391,77.01455,198.21414,29.233727,51.109802,99.51414 1391,248.86813,210.73108,24.768402,60.15329,99.403694 1391,58.958706,199.72975,26.546436,48.987854,98.15773 1391,593.0861,354.07388,45.276062,141.7055,35.648342 1391,549.57056,211.7246,34.46173,77.7491,2.6685634 1391,504.3441,212.78023,23.272003,50.809677,2.2011232 1391,377.75217,209.28606,23.539734,47.45735,0.074287385 1391,609.65204,457.64282,29.494629,53.503845,0.012658268 1391,610.16754,385.23254,26.347717,69.336365,0.008810164 1391,449.98383,193.83064,20.357483,46.644836,0.0068512904 1391,554.5484,225.27637,84.25519,261.57843,0.004740092 1391,1.1873341,212.71652,31.994425,80.057556,0.0038121569 1391,513.1,188.79144,67.7572,175.89603,0.0034175676 1391,610.93396,107.659355,28.212708,151.56158,0.00082513 1391,57.046875,178.58524,62.009407,97.89166,0.00057145633 1391,610.0606,194.31755,29.08606,137.89842,0.00056740956 1391,11.335173,169.94235,85.296585,156.77112,0.0005579802 1391,1.0978898,97.186806,18.465164,159.86566,2.9070608e-05 1391,1.0706112,379.8155,18.884665,119.56848,1.15722605e-05 1391,1.134974,241.48651,19.250574,139.95413,1.1103162e-05 1391,228.84456,181.3099,72.23631,148.46484,6.4473056e-06 1391,3.5528436,396.66022,56.94882,101.25595,4.5456873e-06 1391,1.6194987,289.21286,32.2868,185.55658,4.219586e-06 1391,368.90726,157.7193,99.09537,202.78079,1.6797708e-06 1391,611.0365,4.657243,28.110168,56.63802,6.6524956e-07 1391,1.1130892,5.1364064,58.60144,128.28268,1.566375e-07 1391,1.2659131,5.6190953,17.321161,80.946075,4.476694e-08 1391,102.50232,4.807523,44.962555,55.490078,6.2258094e-12 1391,353.66425,3.9128582,42.454254,51.83784,4.215571e-14 1391,381.24963,2.1663885,42.52008,50.498096,4.6126907e-15 1392,596.15765,229.1948,37.253418,90.51309,99.9605 1392,433.9802,217.7849,24.77002,50.51036,99.78735 1392,218.98813,225.39319,26.935318,68.01984,99.72285 1392,573.3172,226.75154,23.800354,57.795242,97.87998 1392,5.0928726,197.39157,32.068092,58.26567,97.815346 1392,206.85074,225.65259,22.27742,60.614746,97.12999 1392,31.57907,202.18881,29.545107,50.627914,63.78988 1392,622.05347,235.75975,17.0932,71.297104,0.48704767 1392,1.0712976,202.99486,13.00869,50.942368,0.16442679 1392,589.2212,232.79562,21.282898,48.964813,0.11862156 1392,400.4764,216.60622,20.992737,45.1165,0.08394023 1392,50.36251,201.88751,22.401527,45.305405,0.017724233 1392,545.37115,217.69885,22.285034,51.64267,0.009294584 1392,568.2979,190.12477,68.797485,176.70067,0.0067672604 1392,1.1706845,186.24052,20.229504,143.97939,0.0024559586 1392,154.15633,213.96402,23.569672,48.050262,0.00077606726 1392,3.4909604,157.50095,56.728664,181.05743,0.0004741024 1392,583.9251,390.60138,55.221558,102.63812,0.000434331 1392,610.5294,110.31694,28.617249,188.84773,0.00022138633 1392,417.76862,192.68723,60.67566,96.325775,0.00012397124 1392,609.3002,442.0591,29.846497,62.342407,0.00010674321 1392,182.52838,185.70418,92.62146,162.35146,2.4836017e-05 1392,1.0398885,342.1299,18.653885,134.84665,1.5279187e-05 1392,1.0235791,442.39944,21.879053,61.33313,6.089975e-06 1392,386.64957,145.13052,139.90897,222.67664,4.6790824e-06 1392,3.4475782,398.89062,56.850517,97.41272,3.47513e-06 1392,612.2747,3.4503224,26.871948,59.635677,2.6182872e-06 1392,2.2485402,11.950294,58.490074,122.51771,8.758829e-07 1392,1.0493653,4.980078,14.881821,87.48698,3.3017903e-07 1392,1.0950073,38.39122,20.22238,181.09946,8.6292346e-08 1392,2.6194239,0.75055826,45.04142,50.209564,4.6854516e-09 1392,102.27163,3.8024578,43.69657,53.968185,1.1434575e-12 1392,361.81436,2.7634718,42.167816,53.385883,3.228284e-14 1392,393.60986,1.1622038,43.551544,54.324814,4.4348307e-15 1392,423.3364,1.045044,41.523254,53.03661,4.7423114e-16 1393,567.8607,220.18274,35.704224,75.39154,99.700455 1393,432.94223,217.89691,22.706055,50.951538,99.44047 1393,65.510254,216.41895,48.972443,107.575226,81.210106 1393,50.42924,232.07217,37.867474,79.51947,0.7384729 1393,496.38742,202.36433,22.226837,55.325912,0.28684512 1393,623.1815,217.52786,15.965149,51.770447,0.089472175 1393,510.86304,209.886,20.99646,49.683853,0.04122047 1393,69.51992,263.34793,25.35041,59.80182,0.036911633 1393,419.10846,208.92615,23.275146,53.746613,0.029329427 1393,64.52863,213.435,29.008217,56.74887,0.020904467 1393,524.3396,212.32034,25.415771,52.162384,0.00162444 1393,613.7517,196.28096,25.394958,117.54649,0.0011739976 1393,490.5911,79.40957,47.95938,184.3663,0.0010237208 1393,546.7501,188.52174,87.31409,147.35341,0.0008340183 1393,413.6774,193.6655,53.740112,98.213745,0.0004983621 1393,604.0418,87.38705,34.774292,187.762,0.00040027377 1393,2.5579762,145.67241,34.481888,159.2661,0.0002367286 1393,608.7609,442.57346,30.385742,63.79904,8.9300505e-05 1393,602.8473,317.6294,36.299377,177.91806,8.834282e-05 1393,322.94308,179.22832,60.084747,102.84584,5.7482157e-05 1393,1.9105266,222.56427,32.34806,183.0857,2.4134464e-05 1393,0.89138514,325.12622,19.708477,140.04562,1.11552545e-05 1393,1.0077214,423.15314,16.435658,79.5759,6.8698796e-06 1393,3.1714633,336.92017,59.3435,153.96219,4.980154e-06 1393,600.8746,24.432455,38.272095,140.94969,4.487496e-06 1393,609.5158,2.2700033,29.63086,61.46548,3.4675356e-06 1393,374.422,141.75311,141.88177,226.33517,2.9141768e-06 1393,295.36517,127.347374,137.18948,218.35883,1.5551292e-06 1393,1.2489331,55.5778,20.892221,172.02666,6.0964e-07 1393,2.7982178,11.581888,61.21492,278.7997,1.7673472e-08 1393,1.0908643,6.7730765,38.24705,86.000305,2.6870335e-09 1393,298.36783,3.3688998,42.599823,56.39628,1.381715e-14 1393,429.06207,2.0861979,44.83008,56.335594,8.431512e-15 1393,361.669,2.0604541,41.775208,54.663654,6.907241e-15 1393,333.57227,1.3003939,43.21158,53.851616,1.5981158e-15 1394,531.6528,214.35138,35.913574,77.949646,99.81413 1394,503.66068,199.49458,29.918243,66.501144,99.71912 1394,262.763,201.08855,23.97287,48.02295,99.70783 1394,383.58954,202.5974,26.723145,63.970016,99.415634 1394,413.20212,197.00516,20.406525,47.525894,6.868099 1394,429.34756,194.9674,23.525787,57.92984,0.11175681 1394,619.1325,182.76881,20.01416,65.73979,0.051979635 1394,331.65585,201.85037,20.71814,48.61589,0.02093407 1394,442.3785,198.84631,22.243652,51.87172,0.0063414634 1394,469.1533,184.66527,25.188538,58.79265,0.0043187295 1394,515.41364,185.03952,74.10828,140.42258,0.0015388117 1394,601.29614,135.71869,37.71997,170.56198,0.0006733241 1394,602.04913,302.24036,37.097534,184.68018,0.0001845165 1394,596.67004,13.800466,41.501404,87.34482,0.00012741733 1394,483.43475,142.13684,148.14569,238.03311,9.3337694e-05 1394,609.1229,442.79803,30.023743,62.76535,7.294809e-05 1394,248.71803,176.90182,56.777847,101.26077,7.1300194e-05 1394,365.61826,171.6701,74.31708,149.25095,6.139473e-05 1394,1.9213184,181.69019,17.752127,128.3653,3.676642e-05 1394,3.26694,201.63885,58.119656,248.42007,1.9009161e-05 1394,1.1305697,272.95755,19.585758,143.53162,1.5399919e-05 1394,1.1070915,358.72415,20.503185,105.85367,1.0773671e-05 1394,1.2127726,443.5008,21.754204,60.410767,3.1248458e-06 1394,5.831514,357.69403,78.81135,132.29141,2.4261474e-06 1394,215.4831,129.09932,137.7168,217.5757,1.931882e-06 1394,396.75586,32.84736,81.769775,225.7985,1.6102825e-06 1394,2.2828972,93.13424,30.002777,171.80692,1.4685467e-06 1394,414.36826,18.8707,85.914246,76.883545,1.1296738e-06 1394,463.971,12.184227,42.998108,53.671684,7.793693e-08 1394,492.3884,12.3203745,40.685394,48.55879,6.194752e-08 1394,1.3450037,7.854766,9.97983,91.67839,3.4640468e-09 1394,408.3308,7.59307,44.964294,58.895203,3.2173018e-09 1394,1.6253256,2.022334,39.01016,96.75418,3.6011577e-10 1394,175.72397,6.930381,45.610718,50.56769,2.4266906e-12 1394,245.45691,2.14834,41.103485,53.17377,1.7364264e-15 1395,565.4306,220.7312,39.308594,97.11713,99.93467 1395,251.63565,208.07054,25.602966,49.99666,99.9328 1395,400.75854,205.93864,28.028625,70.28487,99.88299 1395,500.6765,208.74376,28.472473,69.85405,99.82735 1395,387.9206,208.6561,24.526855,64.92871,48.973103 1395,612.4039,192.53275,26.742798,68.67975,26.273504 1395,375.24426,207.65288,23.328552,46.199524,1.0565603 1395,421.5316,214.0534,23.276917,54.781464,0.034231775 1395,599.6224,141.80219,39.476685,165.34567,0.008416048 1395,306.29904,207.26366,24.701294,52.481674,0.0028563337 1395,537.0127,184.26498,95.78693,176.99448,0.0016583974 1395,616.7644,34.923473,22.382263,77.42284,0.00035714314 1395,378.9371,176.01845,71.51547,155.29146,0.00017734409 1395,479.097,180.846,71.24005,141.67296,0.00017623151 1395,609.0199,441.1624,30.12677,65.017975,9.130336e-05 1395,612.23773,239.6921,26.908936,157.70601,9.008495e-05 1395,603.0752,326.31454,36.071472,166.23724,8.515524e-05 1395,234.16365,188.1305,62.767776,94.48364,6.763074e-05 1395,1.7386947,187.31102,20.65304,102.125015,4.2892327e-05 1395,0.9124325,336.53317,19.626337,138.04938,1.8258317e-05 1395,601.33575,24.615248,37.810913,190.92682,1.5079922e-05 1395,202.67532,147.57275,136.42725,222.45108,8.6832815e-06 1395,593.29297,9.969351,41.954834,48.249855,7.5350486e-06 1395,3.679673,310.15115,57.6218,172.26974,6.434947e-06 1395,1.6988559,249.89326,30.865437,164.3908,4.5936067e-06 1395,1.3496981,442.24304,21.757477,61.92209,3.785884e-06 1395,157.98991,142.20305,96.04939,203.04689,2.8974612e-06 1395,402.88278,15.132188,84.18906,74.87313,1.1900572e-06 1395,455.71698,9.027691,43.954193,55.932003,7.034316e-08 1395,411.18103,7.620059,45.252716,47.60888,2.417945e-08 1395,388.75708,8.139144,44.18402,56.60647,5.321113e-09 1395,1.3777051,3.0210059,32.37083,85.607605,1.6317993e-09 1395,277.76562,3.0040202,42.15213,52.829742,2.4933227e-13 1395,211.6587,2.937163,40.23877,50.768093,6.3418236e-16 1396,292.52878,206.73206,27.271637,52.32843,99.639854 1396,557.9817,212.01817,32.442017,67.343124,99.17506 1396,457.24695,211.80295,29.976227,77.05548,98.92838 1396,438.64023,206.88542,23.353363,56.816208,86.465904 1396,346.8521,207.05368,20.965698,49.464172,81.32549 1396,543.2489,214.25903,27.569153,59.44812,61.918873 1396,422.25143,207.18439,23.332642,48.238403,0.076713376 1396,577.51605,216.68777,25.913818,59.352783,0.0073064454 1396,421.92148,185.55917,73.84686,140.97318,0.0006189518 1396,537.7053,183.1874,88.54108,148.24681,0.00040403038 1396,612.6617,182.89516,26.484985,127.43294,0.00018169534 1396,1.4289095,170.55244,17.34235,127.54527,0.00014269259 1396,609.6521,74.83383,29.494568,163.63568,0.0001237244 1396,186.34804,158.22119,55.90045,124.88544,0.00011046674 1396,602.94763,244.736,36.199036,199.19333,7.9687416e-05 1396,275.67676,187.22415,60.163483,94.42886,7.8148216e-05 1396,585.016,397.39627,54.130676,100.54675,3.9635568e-05 1396,1.5060588,201.44322,30.488817,204.78752,2.244552e-05 1396,607.8555,0.0,31.291138,71.71239,1.5083504e-05 1396,2.6070752,271.2134,57.94238,209.05139,9.552902e-06 1396,1.2258236,331.70245,20.051842,139.48755,9.469995e-06 1396,317.54126,165.30283,93.88333,199.30414,7.0472956e-06 1396,1.0228369,421.50296,16.64671,81.68115,3.2481357e-06 1396,159.59065,125.25495,132.56377,217.3901,2.8474628e-06 1396,1.9720882,92.842316,34.560627,180.59198,3.1235453e-07 1396,476.3735,3.5596094,44.828705,57.522568,2.4765043e-07 1396,448.4904,5.438654,44.55139,52.20797,1.6498272e-07 1396,545.44635,5.3505144,41.922302,53.684566,2.7266694e-08 1396,406.824,4.314186,47.16928,57.98826,5.7001253e-09 1396,380.82956,6.9100914,45.294434,56.209507,1.2582804e-09 1396,1.1891211,18.171608,20.077707,133.89685,1.0539748e-09 1396,0.8896159,3.20264,28.764015,66.551926,4.674962e-13 1396,212.0121,5.4980354,40.186737,50.571365,8.40239e-15 1397,444.973,201.1739,28.147858,56.85103,99.83328 1397,552.9605,202.57956,37.57019,80.04913,99.77837 1397,34.244358,199.70828,24.664047,53.8394,21.451 1397,537.8544,206.20702,26.16333,57.30803,9.114021 1397,269.04733,184.8268,41.038025,97.18486,0.012988856 1397,559.823,242.95757,22.26892,47.104477,0.01169093 1397,463.86658,203.10869,23.306976,54.06978,0.008414804 1397,611.8889,248.38708,26.207947,57.845825,0.00696189 1397,19.528013,166.60649,44.638634,108.38304,0.0063129 1397,382.0426,200.70071,22.037445,49.55133,0.0025958717 1397,477.4668,216.7492,23.318695,54.69818,0.0018587058 1397,600.13477,191.30272,39.0119,165.28859,0.0007338704 1397,490.38065,228.41298,22.384125,46.57344,0.00031337448 1397,534.74445,180.35146,87.50116,154.04793,0.000304287 1397,428.4311,184.41492,57.755432,96.02475,0.0002844795 1397,607.1154,0.023613282,32.03125,144.31097,0.00012966972 1397,1.5292994,153.13588,18.86678,120.821,8.698206e-05 1397,612.1244,369.86542,27.022278,131.51917,8.69493e-05 1397,587.99243,274.95798,51.154236,205.83453,8.604866e-05 1397,609.9932,104.38126,29.153442,156.76953,2.3875185e-05 1397,0.8926449,225.3088,18.548845,143.75153,1.7233297e-05 1397,11.204824,118.26881,117.53025,234.1709,1.4523034e-05 1397,258.23965,140.21013,85.395966,219.82915,1.2779552e-05 1397,0.85447514,316.88034,20.14589,135.21716,8.481455e-06 1397,398.24203,141.51614,139.32779,232.1781,7.586155e-06 1397,3.6791081,188.28539,58.637142,259.4989,6.3318967e-06 1397,0.97940755,423.2749,16.367235,79.25574,2.3719854e-06 1397,2.0501685,31.43478,35.054607,224.1706,9.702928e-07 1397,5.6913805,358.5683,79.33402,131.46844,7.9609003e-07 1397,580.53125,3.1197722,43.711914,63.068497,4.4693934e-07 1397,1.5500675,13.105687,13.283412,79.56498,2.845355e-07 1397,443.3029,7.6212974,42.85675,49.870087,6.8139344e-10 1397,1.7959815,4.5676565,41.104755,60.329117,6.345994e-10 1397,469.73276,5.729058,42.944305,49.38705,4.7292464e-10 1397,281.15112,4.5314536,40.62387,51.70694,7.5043534e-14 1397,346.32422,1.6043001,42.53604,57.116104,4.6099836e-14 1397,321.5202,0.0,42.254883,53.2834,1.4920418e-15 1398,590.3093,205.37422,34.005615,64.020615,99.90964 1398,433.19788,216.25652,28.190155,45.54384,99.7915 1398,154.7806,206.60094,31.88124,52.508804,99.246056 1398,612.1037,208.87863,25.533936,62.780487,0.43811178 1398,515.4947,194.19495,23.039917,57.024796,0.03145087 1398,550.6913,225.86212,41.054016,58.21704,0.0090924995 1398,477.31528,207.1234,22.011871,45.032288,0.008797849 1398,533.3456,194.54167,30.665466,68.93672,0.006142075 1398,583.787,187.35512,54.888794,294.1626,0.0023043442 1398,600.1556,150.28668,38.391174,163.97968,0.0011685913 1398,611.16504,342.9487,27.981628,134.99393,0.0001885495 1398,385.39615,168.05228,61.741882,116.6994,0.00014520712 1398,1.2633374,187.66191,19.60975,114.012375,9.404751e-05 1398,1.3760295,61.550182,19.588694,76.69841,8.82576e-05 1398,609.4539,53.13431,29.692749,191.11476,7.642532e-05 1398,4.601188,140.60341,54.91712,197.08699,6.956674e-05 1398,608.85535,441.68283,30.29132,63.64328,6.112016e-05 1398,0.73694175,237.65712,12.707214,48.99913,4.3316144e-05 1398,1.8835092,244.82466,31.959532,179.10713,2.4649044e-05 1398,0.96469486,343.1046,18.962772,129.70041,1.8349225e-05 1398,409.66446,150.73964,93.2471,214.24348,9.004075e-06 1398,129.71109,160.86166,92.749435,193.20273,4.596955e-06 1398,0.84891117,420.44772,16.499334,81.97699,3.618695e-06 1398,3.3975863,339.9394,57.669693,146.91415,3.5892058e-06 1398,586.9502,15.477139,51.580627,103.74747,3.3722679e-06 1398,1.8879379,17.768444,59.268326,116.470795,3.538023e-07 1398,1.5250114,47.18457,31.459455,206.05911,2.5960375e-07 1398,0.8162879,11.643965,12.070903,87.8989,7.062966e-08 1398,578.7815,5.9384375,44.708252,48.62086,7.0345276e-09 1398,109.808815,5.6385484,43.677406,51.297684,7.463198e-11 1398,397.00137,3.6912858,41.62567,54.746166,1.960603e-13 1398,155.62808,0.61699545,48.53264,61.280243,1.906337e-13 1398,482.76562,1.9589893,41.143677,52.81385,3.419543e-14 1398,457.15625,0.0,44.41278,63.569195,1.658402e-15 1398,421.49255,0.0,43.250854,51.4018,9.779637e-16 1399,563.25366,221.99237,27.733093,55.570618,99.92556 1399,495.42184,219.10855,23.264801,47.60135,99.91548 1399,242.58878,215.54427,27.635773,56.533463,35.737915 1399,40.582226,204.71483,30.049252,56.68776,5.312241 1399,59.47084,204.19423,25.872566,52.059097,0.8661578 1399,610.3588,216.78911,26.214966,46.99196,0.42539752 1399,126.12547,211.57304,25.165527,48.763077,0.017758504 1399,482.7244,205.84232,38.496124,111.53894,0.009570551 1399,603.3456,183.26633,35.010193,125.47513,0.0014021858 1399,10.019642,104.36444,71.938,196.7374,0.000600488 1399,548.386,206.993,63.3255,87.42409,0.00054350996 1399,2.1369612,100.92369,30.31917,178.33241,0.0003685405 1399,611.251,328.93826,27.89569,147.72827,0.00022203845 1399,597.9795,413.84756,41.167175,88.30792,4.8146376e-05 1399,477.2012,163.92342,85.58597,212.18562,4.6794303e-05 1399,5.0493913,187.48318,57.99118,238.83603,2.4556459e-05 1399,1.3164649,225.8066,19.644491,132.00157,2.0700947e-05 1399,224.64832,186.14243,71.85315,148.46176,1.2732278e-05 1399,0.95611656,421.19516,16.22064,78.35297,7.3126976e-06 1399,1.1781218,318.40732,18.96716,137.64789,6.5587237e-06 1399,610.47015,39.930958,28.676514,165.00139,4.3731793e-06 1399,5.982279,364.11218,77.57136,121.72272,2.3866983e-06 1399,610.8025,0.0,28.344177,71.54024,1.3803826e-06 1399,41.43603,47.102734,84.1989,251.02287,7.2873115e-07 1399,1.5073357,18.867579,20.854788,140.9243,3.7959015e-08 1399,1.287325,5.942962,14.779045,73.68545,1.8821844e-09 1399,1.5712078,0.0913737,47.10918,45.374153,1.0583012e-10 1399,175.83568,7.3572917,44.47435,50.098362,9.976734e-11 1399,210.47823,5.958729,46.524673,51.569633,2.4331993e-11 1399,236.53522,1.8356023,44.68161,57.324387,3.5677884e-13 1399,577.3728,0.0,42.136047,54.27641,1.4575968e-13 1399,493.16647,3.6526563,40.06888,55.601994,4.4584453e-14 1399,552.18524,0.0,44.155518,65.67614,2.9320062e-14 1399,523.78357,0.0,43.253723,52.858692,5.764635e-16 1400,433.3728,217.52727,25.976898,48.495712,99.889 1400,551.327,216.74402,26.38269,57.97464,99.7969 1400,601.0115,194.4479,35.79889,93.40872,0.100977555 1400,102.905655,209.16783,32.41504,70.702774,0.009669772 1400,606.9141,75.21861,32.232544,172.07259,0.00084239716 1400,80.42051,228.03773,40.116287,107.5399,0.0003122206 1400,123.67684,200.35217,40.523354,118.635315,0.00030731264 1400,3.0270386,126.66708,29.681446,156.24142,0.00029842235 1400,534.72864,197.64938,65.62012,95.67142,0.0002374825 1400,419.43573,184.6182,54.568176,112.66547,0.00022039167 1400,611.60645,378.16,27.540222,125.02283,0.0001385132 1400,571.3011,129.71724,67.22034,238.67354,7.420393e-05 1400,611.55896,233.69019,27.587708,154.17566,6.717475e-05 1400,1.1815349,198.55553,17.442636,131.81383,4.0213614e-05 1400,609.0361,13.852097,30.110596,120.70361,3.7682526e-05 1400,4.299906,210.19699,56.090767,220.00778,1.3048444e-05 1400,0.71689373,283.86053,18.979946,146.74979,1.2259013e-05 1400,388.68994,138.16457,132.74689,244.80159,9.25426e-06 1400,0.97125655,378.96362,18.695827,116.90213,8.851437e-06 1400,2.9191911,394.14084,56.475357,99.42798,2.6627017e-06 1400,1.6982862,40.923847,20.467379,162.09454,2.6590206e-07 1400,2.9026043,17.692337,58.588127,115.7811,3.717516e-08 1400,1.089196,13.655079,13.077036,78.71112,2.1270836e-08 1400,579.52136,7.9348927,44.480103,54.54471,3.5628975e-10 1400,80.028625,6.2436247,43.957626,50.750164,1.7202056e-10 1400,552.69025,6.883143,43.610474,54.457977,3.9927357e-11 1400,53.649334,3.6071615,43.96274,51.932037,3.7508996e-11 1400,155.89534,3.1222365,44.457245,54.821655,2.4544342e-12 1400,424.41183,1.5078809,42.760925,63.427757,3.396469e-13 1400,518.4456,1.6630583,38.464783,48.36914,1.5131768e-13 1400,183.10579,0.0,46.15068,65.45823,7.8702575e-14 1400,488.59122,0.0,44.371674,62.576263,5.5674517e-14 1400,447.6809,0.0,43.901978,52.56143,7.4798526e-16 1401,415.4506,219.72176,24.197327,50.03679,99.96363 1401,588.8039,218.32162,27.371765,61.982758,99.38547 1401,91.48068,214.159,31.963394,54.081757,97.46728 1401,505.41318,214.62206,21.163422,48.373672,0.19243464 1401,517.5852,212.687,22.776001,52.320602,0.100960515 1401,80.15498,202.83243,48.90413,125.44916,0.021555156 1401,602.5078,215.252,35.086,67.66185,0.017746892 1401,474.92413,218.36847,21.591248,45.360382,0.010827109 1401,622.65826,242.51959,16.488403,51.171326,0.004730005 1401,4.7968946,333.18515,93.969666,172.68579,0.0041907546 1401,2.901491,143.1121,45.672775,132.90562,0.0024271708 1401,364.82782,217.55939,29.447601,72.779175,0.0017551334 1401,570.1172,178.87659,65.38214,152.37097,0.0015229683 1401,613.79254,82.16559,25.354126,110.14848,0.0007332988 1401,621.3404,52.23265,17.806274,54.091835,0.0004693098 1401,57.666668,164.4607,94.50984,220.28519,0.00040512887 1401,611.67664,231.70027,27.470032,139.58641,0.00024274818 1401,608.3315,442.40018,30.815186,66.683105,0.00023173625 1401,1.6812142,281.12308,20.09699,138.60611,0.00020172383 1401,611.3048,327.5098,27.841858,142.63391,0.00014115033 1401,1.5104078,93.4046,21.513737,127.266815,0.00012863314 1401,398.7586,190.20404,57.21167,103.612305,9.002286e-05 1401,1.1665552,175.0026,19.698776,144.34839,7.7522316e-05 1401,608.1061,13.430281,31.040588,125.57628,4.445234e-05 1401,2.3584554,365.6463,32.74046,133.46326,3.801935e-05 1401,372.1486,154.90102,127.47565,225.9876,2.9773511e-05 1401,100.61995,214.94655,78.43602,227.1003,3.333291e-06 1401,14.226703,428.19263,46.019638,82.95404,2.4657031e-06 1401,575.9484,9.322825,62.741516,46.098667,6.9365393e-07 1401,1.9512794,8.058099,57.31173,137.14154,4.7834675e-07 1401,1.701932,7.6844926,33.528362,66.26137,7.2856645e-09 1401,67.36708,9.310701,43.488914,48.722076,3.3465108e-09 1401,552.37225,10.329523,44.500854,49.327263,8.1577904e-11 1401,347.16937,6.001644,43.2558,54.018833,4.3877898e-11 1401,525.9506,7.6161637,42.82379,52.808563,2.0449729e-11 1401,397.29666,2.8457227,42.040894,62.37747,4.635753e-12 1401,141.90685,0.0,48.77646,65.53794,4.944829e-14 1401,482.3837,2.303366,41.46176,51.155087,2.3000063e-14 1401,420.8153,0.0,42.463867,53.606453,1.5970798e-15 1401,457.58807,0.7508399,42.90146,58.181507,1.1832549e-15 1402,19.404352,215.82925,46.85247,89.786316,99.973335 1402,412.17743,220.08904,24.137146,57.434433,99.96004 1402,62.92095,222.37738,30.73742,58.383667,96.130104 1402,621.8374,226.21675,17.309265,68.74989,0.6179921 1402,533.538,202.13652,26.304321,55.792618,0.17675933 1402,508.22678,213.05734,29.656097,57.720062,0.036955014 1402,32.640854,214.49823,25.165138,48.54245,0.034035306 1402,363.2137,217.32776,31.58957,78.93143,0.009550913 1402,472.99503,224.84355,24.066772,46.859512,0.0029431505 1402,607.47186,179.48193,31.674805,135.2362,0.0022966873 1402,395.91803,222.50612,22.570038,48.715378,0.0020195358 1402,48.06468,219.33504,25.597065,62.232468,0.0014678735 1402,8.808428,180.24222,87.54056,177.94357,0.0009907824 1402,551.48926,209.84871,24.703064,58.72725,0.000863326 1402,2.7348504,168.95683,32.453026,161.21465,0.00028977514 1402,398.23035,206.2849,54.97403,91.457504,0.00026804963 1402,608.47235,442.83502,30.227844,60.39859,8.97174e-05 1402,612.1729,247.91228,26.973755,159.40157,5.565074e-05 1402,609.287,55.248978,29.85968,183.07796,5.2086652e-05 1402,570.22736,369.66653,67.08765,126.77716,3.580594e-05 1402,566.78876,128.57402,71.60187,261.3645,2.1613083e-05 1402,584.56635,16.222609,53.765198,97.031364,1.9878236e-05 1402,389.313,168.33609,85.21619,203.93991,1.8293871e-05 1402,1.2384595,242.43178,18.667046,134.72011,1.7566894e-05 1402,0.83190674,367.43768,19.085873,128.3067,9.860714e-06 1402,1.2850595,91.416824,19.866804,171.0371,6.314854e-06 1402,2.8246062,396.80768,58.449234,99.28427,3.289271e-06 1402,1.7527344,1.7807748,58.59443,138.34305,1.5307992e-07 1402,1.9311393,3.1058626,43.358116,51.46594,4.8929987e-08 1402,579.6038,8.432541,42.99695,50.377644,1.5862474e-08 1402,46.151356,3.7719173,46.101826,53.126007,1.4796615e-09 1402,432.40338,7.3142257,44.806793,133.68095,1.1355177e-09 1402,545.34015,11.352905,43.20166,46.9959,1.0136015e-09 1402,519.724,8.37669,42.621582,49.218117,1.3662824e-10 1402,114.41481,0.0,50.01387,60.90928,7.895521e-13 1402,403.50668,5.1943326,39.404358,54.47921,5.3167805e-13 1402,425.79977,2.4065592,41.61133,56.09645,1.573448e-14 1403,444.86542,216.48509,28.46164,69.37288,99.96105 1403,30.549513,221.8862,37.757416,68.75049,94.78693 1403,428.19855,212.52753,23.360779,52.69586,0.89326936 1403,460.2589,216.24529,22.994965,52.0681,0.08135371 1403,603.8027,201.77968,33.98651,77.06554,0.043750264 1403,52.389572,214.33113,25.163155,49.497574,0.0382158 1403,584.2397,193.33945,36.986267,77.678925,0.0027356662 1403,6.2015576,134.40506,45.202316,151.83008,0.002035998 1403,598.9046,63.449467,39.385742,228.6471,0.0018184952 1403,555.57806,214.46407,33.3667,59.903824,0.0003468751 1403,2.0141928,163.21962,18.875174,132.07799,0.0003460474 1403,428.46835,181.82767,66.69495,153.26447,0.00031534952 1403,608.2027,440.21005,30.94397,68.33563,0.00031270157 1403,7.320749,184.6217,83.18009,160.7514,0.00024362623 1403,586.5816,179.71158,51.17682,259.5429,0.00023907339 1403,612.0063,332.35086,27.14038,139.1879,7.0712085e-05 1403,616.09735,142.44606,23.049316,100.00603,7.047732e-05 1403,1.0365365,244.87482,19.153635,135.12424,2.9107892e-05 1403,615.8181,18.0604,23.328552,86.70767,1.92726e-05 1403,0.86777914,366.6473,18.984392,128.5354,1.1876496e-05 1403,2.737106,396.19995,59.032867,101.045746,5.5557634e-06 1403,1.378379,62.50254,20.055376,161.70209,1.1408076e-06 1403,128.21555,429.99387,70.52103,70.84396,2.3221428e-07 1403,1.1390227,11.919649,13.022345,84.883934,1.9987677e-07 1403,2.1111767,8.888763,58.57145,145.10022,1.09828015e-07 1403,1.6161361,5.359611,39.62275,57.780014,2.8509817e-08 1403,81.314644,5.760552,42.88262,45.39635,1.9374953e-09 1403,374.66013,4.4460416,43.541138,57.80287,6.5236655e-10 1403,340.8233,4.1270556,42.252502,53.531338,1.485945e-10 1403,416.79254,3.525804,40.53882,53.675358,1.0239536e-11 1403,470.21768,3.1647966,39.556244,49.439255,9.163468e-14 1404,479.0946,215.82526,33.436707,83.4534,99.984314 1404,444.2488,206.32582,21.744019,48.840256,71.99422 1404,548.5315,235.6374,29.878601,64.88927,0.12247949 1404,6.592946,188.77556,32.51036,70.15321,0.019952623 1404,610.8321,180.43475,27.838379,69.34206,0.012195739 1404,465.34482,188.42416,65.80521,153.3537,0.0022695845 1404,1.9467856,129.11095,19.300022,145.4233,0.0017552889 1404,620.9595,253.27269,18.187195,54.999863,0.0015359732 1404,4.363963,117.949715,57.047405,223.29132,0.0005618655 1404,600.0347,101.899796,38.807312,203.83607,0.00045857645 1404,610.4723,216.9954,28.674377,140.364,0.00028467464 1404,608.01514,439.0016,31.13153,70.183014,0.00025257393 1404,1.5196623,228.44568,18.444628,75.024445,0.00019989687 1404,585.4438,294.85834,53.70288,199.58661,0.00018896893 1404,1.3861068,65.88408,18.913912,87.47987,4.8833168e-05 1404,425.42422,172.64125,57.82715,118.19084,3.803041e-05 1404,610.0418,7.4380927,29.104858,175.68016,1.7887724e-05 1404,1.0599267,313.1833,15.708971,141.99762,1.7045555e-05 1404,2.278554,218.22844,28.105663,164.8011,9.693664e-06 1404,3.8731608,337.21768,78.86702,148.8089,8.2116685e-06 1404,1.1006023,389.57687,28.06958,108.30496,6.688402e-06 1404,585.71277,5.2718277,43.42572,48.3827,3.1748787e-06 1404,1.924598,20.463028,34.89631,171.9525,2.0982614e-07 1404,0.83653283,11.944128,12.470113,88.15766,1.1559599e-07 1404,1.2150472,6.378221,39.096836,50.26165,1.7942751e-08 1404,558.5496,8.702908,43.43878,48.961098,5.8913736e-09 1404,532.3872,9.433555,43.06317,51.703297,3.951375e-09 1404,369.2295,5.733073,44.586,59.46841,1.885893e-09 1404,342.60825,3.430202,45.675934,46.529003,8.5345626e-11 1404,504.91043,6.7155013,42.986664,52.053825,8.2129636e-11 1404,417.19757,3.138483,40.438965,60.412506,2.480157e-12 1404,479.4971,4.7193685,39.02957,52.36743,2.4760906e-13 1404,436.66925,2.4895363,59.83963,48.467274,1.7719196e-13 1405,556.13794,218.3221,51.871887,115.94621,99.97553 1405,492.78052,214.01787,24.02063,54.64238,99.795845 1405,515.226,165.74438,115.55054,230.59839,0.0020312136 1405,617.7213,188.0418,21.425354,89.95564,0.00088065665 1405,561.56116,267.5305,23.400635,61.538208,0.00066413556 1405,602.7441,155.93484,36.402588,183.4237,0.00057271286 1405,1.3327677,200.31578,18.154236,80.459305,0.0004892182 1405,473.54437,197.14566,56.19159,96.71954,0.00035195873 1405,3.0215333,97.513626,33.27129,185.12804,0.0003020662 1405,43.220547,148.40872,21.172367,45.380325,0.00024786947 1405,584.0866,393.60175,53.817078,98.39551,0.00021985004 1405,1.6842546,147.07909,18.009796,85.12428,0.00019123072 1405,433.86023,169.9469,79.8136,161.00214,0.00017723924 1405,612.4044,323.87332,26.742249,145.96054,0.00011598273 1405,13.353863,143.54196,35.79957,82.708115,0.00010654711 1405,608.6089,441.53073,30.53778,62.17627,7.666038e-05 1405,1.665831,83.634,18.920769,85.656296,7.546748e-05 1405,1.4170996,212.13084,27.720774,151.64513,4.5870056e-05 1405,610.23157,8.355906,28.9151,114.17514,1.9051373e-05 1405,3.2722461,190.01552,57.248104,232.48189,1.074777e-05 1405,1.1100032,390.90256,18.11547,106.83075,7.1246577e-06 1405,1.9432602,300.3425,31.754429,184.69464,3.4939653e-06 1405,584.70874,14.109147,54.437927,204.1928,3.1658203e-06 1405,3.8788347,398.4568,57.34337,95.64926,2.83844e-06 1405,592.22296,6.4238105,43.60547,50.614494,1.1609408e-06 1405,0.85042197,13.316374,12.116167,82.79383,7.677181e-08 1405,2.2423813,18.41396,58.256226,124.263504,3.5900236e-08 1405,393.55765,4.6076174,45.266937,61.45325,1.7691347e-08 1405,564.7336,10.031089,44.0813,50.523365,4.412132e-09 1405,539.5584,9.164421,43.11731,52.6305,1.9741007e-09 1405,416.36862,7.7199903,46.913696,47.334816,9.322075e-10 1405,366.52405,5.415147,46.57254,58.77825,6.8211387e-10 1406,578.7652,217.30946,33.05365,70.75148,99.903366 1406,488.16403,215.35048,23.102966,52.926987,98.838005 1406,518.1212,214.84894,22.439087,48.959473,97.415764 1406,503.2914,213.83951,21.918915,47.62393,84.65063 1406,457.25552,212.81721,22.545776,48.390213,42.92922 1406,444.09616,215.66225,22.134369,47.063553,1.8278139 1406,623.47217,224.6268,15.6744995,55.903687,0.09830809 1406,565.9038,215.85368,26.411377,53.364426,0.0097900545 1406,17.47779,132.13048,26.311779,57.36734,0.006925373 1406,1.8633537,129.98268,20.48384,143.20302,0.003005095 1406,97.92919,199.76985,26.14698,50.575104,0.0025294607 1406,492.77484,204.49408,50.281372,80.21274,0.0024931447 1406,613.3068,178.63873,25.839844,119.13483,0.002427652 1406,3.8277833,111.09894,57.45633,205.77905,0.0008489499 1406,559.3476,185.72699,74.38263,144.21729,0.00060871354 1406,603.28845,214.70872,35.858215,179.26161,0.00018886047 1406,416.21588,61.215294,23.00357,49.70018,0.00014946511 1406,245.64143,228.16512,23.02745,59.465256,0.00012514535 1406,612.62836,366.22815,26.51831,134.60019,9.143912e-05 1406,493.33304,164.60844,86.71445,189.16753,7.019552e-05 1406,615.9091,14.941049,23.237549,79.314514,3.1964068e-05 1406,1.0524487,227.36224,17.676996,131.59317,2.9580235e-05 1406,418.08685,171.56192,112.75897,177.09607,1.7784341e-05 1406,1.552221,64.142876,19.351952,98.663475,8.8072475e-06 1406,602.1464,31.623621,37.000244,235.75342,6.9928e-06 1406,1.0399219,374.1563,19.059622,123.50464,5.52497e-06 1406,3.4929476,246.81276,57.35604,224.34422,4.271386e-06 1406,1.2314519,280.76443,28.353365,146.97913,2.211853e-06 1406,1.9264698,24.414688,37.643448,206.2361,1.3374834e-07 1406,419.306,0.7210254,67.12427,60.551167,5.989998e-08 1406,0.91305095,11.880778,11.550893,87.60725,1.9688825e-08 1406,580.09357,8.180268,44.72003,55.073185,1.4251176e-08 1406,1.4428939,7.3618884,31.544292,63.963062,1.5145138e-09 1406,394.49356,4.2117677,44.417694,56.9755,1.25008e-09 1406,544.7423,7.781322,42.617004,53.52244,9.3042585e-10 1406,466.0485,3.0693815,47.82071,63.979195,6.997163e-10 1406,497.097,1.1495833,44.310913,64.369156,9.754793e-11 1407,547.13446,212.98268,24.981995,66.63838,99.86473 1407,567.29895,215.80899,22.13733,60.814728,99.58576 1407,580.421,214.12285,22.243958,60.494644,99.31865 1407,600.5034,211.97244,26.342468,61.444336,97.10041 1407,508.93777,209.07262,23.768524,55.303787,33.331528 1407,25.929863,204.28635,28.483868,46.37085,0.3017813 1407,45.294514,197.18736,25.37965,48.74243,0.2026042 1407,100.439644,199.209,28.464958,48.019363,0.12774408 1407,623.6092,217.92142,15.537476,58.31021,0.053018272 1407,1.0659753,201.9828,12.132904,46.70645,0.0057934155 1407,610.2857,207.5588,28.860962,138.22525,0.0049371296 1407,552.4587,206.95476,62.51935,86.13844,0.0040212823 1407,490.4091,207.17813,38.6846,110.368805,0.0022672568 1407,1.7110506,122.75935,18.777391,142.57582,0.00021377864 1407,500.20563,163.59114,133.51544,204.69475,0.000171341 1407,4.4172754,128.0036,58.20191,224.78683,0.00012375308 1407,612.2127,357.77103,26.93396,136.70126,0.00011866028 1407,609.43494,10.857338,29.58429,126.48081,9.2236645e-05 1407,599.0053,61.88845,39.539062,236.55975,9.025841e-05 1407,621.8657,126.10382,17.280945,56.248596,7.821695e-05 1407,621.8614,36.19676,17.285278,54.635197,6.936714e-05 1407,1.2143807,205.30623,16.61703,129.73299,6.570895e-05 1407,1.089008,387.47153,18.962725,111.1337,7.838918e-06 1407,1.7403418,247.42754,31.920986,179.94542,4.3086e-06 1407,3.5836084,306.33423,57.577118,178.16452,2.0949672e-06 1407,1.7193335,21.600847,20.238573,131.25185,9.876799e-08 1407,1.3074496,4.890003,39.095787,52.051483,2.5691105e-09 1407,441.87012,5.3060613,46.388214,54.15668,8.087705e-10 1407,483.1922,2.466976,43.540283,55.005447,4.263693e-10 1407,408.81714,5.7531595,42.745728,51.069622,4.256427e-11 1408,594.7224,214.58649,28.777039,75.768616,99.276344 1408,47.889336,200.98451,37.12252,54.4877,0.1878093 1408,608.39545,204.00592,30.222473,74.80847,0.054606177 1408,585.94257,164.69907,48.607056,197.79156,0.0240661 1408,426.59848,161.37013,39.44919,83.675156,0.0019371035 1408,616.95056,239.26816,22.196106,86.2547,0.0013011992 1408,414.04684,186.85066,54.008057,140.68047,0.00061667396 1408,1.09184,193.95972,17.266161,72.14624,0.0004249869 1408,617.0735,162.84941,22.073181,82.54315,0.000303234 1408,2.0366447,122.12171,26.54622,155.15198,0.0002672553 1408,587.0216,290.46783,51.989685,190.25302,0.0002287941 1408,0.83535486,113.70596,18.804554,80.44385,0.00017428737 1408,616.8277,376.4831,22.31897,87.076965,9.1292044e-05 1408,4.099409,135.77258,57.169266,198.9595,6.3949854e-05 1408,0.73741865,169.26717,12.739136,51.50807,6.2261475e-05 1408,608.59827,439.76074,30.5484,67.4003,5.0156348e-05 1408,617.29504,49.09488,21.851624,81.1163,3.4403944e-05 1408,586.01605,19.57941,52.243225,95.3663,2.7665024e-05 1408,1.1836605,237.40797,17.937103,137.12141,1.9009234e-05 1408,17.398802,128.1947,137.15164,237.0127,1.1022222e-05 1408,3.6424253,253.77121,58.61918,226.91724,9.635046e-06 1408,599.4879,45.735367,39.658752,244.66682,8.294342e-06 1408,1.0800277,425.40674,14.71184,75.079895,7.4683994e-06 1408,1.0824715,340.95804,19.314531,138.74301,4.165704e-06 1408,3.0493245,434.78018,45.168224,63.332123,2.4982824e-06 1408,285.76828,430.40125,68.88678,68.60568,1.6696387e-06 1408,1.3378572,48.352913,19.524471,88.64536,5.421775e-07 1408,3.3070996,39.594025,83.92208,211.27525,4.320349e-07 1408,1.7275147,16.175209,37.117596,167.99908,4.9344802e-08 1408,455.58664,3.4548764,45.239685,56.930202,4.6825837e-09 1408,0.9946509,9.22042,13.321944,76.68693,4.0236103e-09 1408,1.3870622,4.286631,33.963745,47.39138,1.7677508e-09 1408,428.7672,5.3140154,44.239258,48.30568,7.1787837e-10 1408,483.15527,3.7551613,45.279785,51.7888,2.0764608e-10 1408,390.74902,1.9414047,60.555878,49.168545,4.7102676e-11 1408,170.42961,6.217064,41.74385,50.63381,1.11984545e-11 1408,66.43189,4.7173944,43.866966,53.597267,2.0336569e-12 1408,143.1473,2.9661963,40.859024,53.18514,4.4383388e-13 1409,46.467228,195.94598,39.035816,65.98108,0.12100297 1409,264.47803,212.94275,21.71228,47.33487,0.0024120503 1409,70.8377,197.9935,24.794266,53.558426,0.001324985 1409,479.67142,221.08136,32.87918,69.14218,0.00040870332 1409,620.9556,320.24957,18.19104,59.109222,0.00036909655 1409,1.9417644,196.70253,17.60458,67.75972,0.00024442747 1409,618.04456,80.90522,21.102112,78.69047,0.0001867501 1409,617.84686,137.6408,21.299805,77.68361,0.0001751802 1409,612.03564,304.49954,27.111023,135.90646,0.00014967537 1409,459.70755,208.94954,56.507416,139.20262,0.000108066364 1409,2.2790267,186.49808,31.786922,178.47043,9.2142924e-05 1409,614.1455,412.13303,25.00116,93.04053,8.050381e-05 1409,617.77606,199.29994,21.370605,79.006485,7.6628654e-05 1409,1.3493001,52.226353,14.378651,57.917736,4.132152e-05 1409,0.7433187,166.24954,14.095332,60.037445,3.3516397e-05 1409,601.9875,99.81115,37.15918,169.45673,3.245628e-05 1409,421.35825,151.86017,24.766907,56.631363,3.225042e-05 1409,0.7843596,289.93884,19.101006,83.671875,3.1589683e-05 1409,574.7502,366.29208,63.91388,120.602356,2.8235752e-05 1409,1.4819483,69.65913,29.960167,181.72482,2.50132e-05 1409,0.96354985,124.69888,13.869449,52.61496,2.4399773e-05 1409,5.1783466,230.6798,78.2183,241.68584,2.1490505e-05 1409,158.00392,149.59924,20.320236,49.482895,1.186626e-05 1409,1.1654745,291.8724,33.357315,196.42969,1.0543668e-05 1409,3.583864,49.41486,79.216034,275.41553,9.941313e-06 1409,0.7541211,385.15582,13.636296,48.880432,8.241245e-06 1409,474.28256,253.94125,79.339264,188.5521,6.804882e-06 1409,0.76160604,418.89343,13.471458,49.20456,6.3905227e-06 1409,0.93101484,337.46332,18.469816,75.002655,5.7230986e-06 1409,611.47784,8.753766,27.668823,78.93777,5.3927347e-06 1409,1.3321257,444.17,20.85505,59.59613,5.242473e-06 1409,1.6191944,13.937207,56.83388,119.57953,4.392775e-06 1409,568.8375,17.464096,70.30914,142.2399,1.3310607e-06 1409,4.9963655,436.11255,66.05267,65.00241,1.1816996e-06 1409,503.56836,4.4544744,42.37317,45.092148,9.245161e-09 1409,1.4039519,6.6081705,32.81046,67.05112,6.2474323e-09 1409,455.23132,4.267845,62.00049,46.131805,7.9531787e-10 1409,415.13577,4.2159667,42.46768,46.755524,2.7292268e-10 1409,31.820316,8.470002,42.81992,53.297153,2.1550424e-10 1409,163.17078,3.6723683,42.766983,51.57798,1.439621e-13 1410,526.88525,205.61195,26.648499,59.05339,53.86381 1410,547.541,201.52707,24.89972,64.30386,36.293198 1410,592.97095,199.99063,27.292786,56.22516,20.002716 1410,537.24634,195.36487,54.88794,118.597626,13.793733 1410,510.07272,209.93733,29.36087,59.27855,2.9023087 1410,565.4052,198.94841,28.572693,62.962143,2.3858337 1410,581.6968,190.35577,43.112854,128.4797,0.22167039 1410,578.6986,216.40613,23.512268,58.15921,0.076591566 1410,540.0964,229.33318,23.432434,57.186478,0.026023332 1410,454.00653,214.08292,26.541931,50.34543,0.01009103 1410,571.6522,398.67343,67.494446,103.787994,0.0044384524 1410,609.7493,184.5926,29.397339,133.8167,0.0038485385 1410,493.8345,220.52078,34.203888,72.34424,0.0037473994 1410,197.52827,212.12703,32.513687,63.00392,0.0030089032 1410,422.89868,202.35269,35.268463,64.96829,0.0017166393 1410,616.65546,414.71457,22.49121,74.947266,0.0014882258 1410,1.1982886,116.17125,20.05266,99.17915,0.0014566547 1410,506.67575,151.22025,122.12906,230.19153,0.0010220312 1410,622.0411,88.43715,17.10559,49.986923,0.0005757231 1410,616.9392,296.11862,22.207458,86.90842,0.00053559017 1410,2.5745347,88.362404,44.567974,171.61148,8.1066144e-05 1410,610.7549,75.23047,28.391785,162.703,3.7263937e-05 1410,2.2025473,245.13628,33.171455,167.75948,3.4696204e-05 1410,609.38086,14.658555,29.765808,124.655975,2.1416196e-05 1410,1.3848209,178.40091,19.717499,137.2396,2.0326319e-05 1410,1.0265251,317.07465,18.32076,142.6716,1.4123367e-05 1410,110.999405,147.42323,21.0764,49.21086,3.2792545e-06 1410,2.0145483,425.242,32.323147,75.26083,1.9566874e-06 1410,1.2809424,15.784695,21.317469,128.17052,9.888057e-07 1411,583.1711,214.90704,38.753357,86.742645,99.6268 1411,565.3117,209.4146,30.042664,83.75639,99.16146 1411,606.8252,198.40564,30.248596,69.7298,94.83831 1411,496.5807,212.03719,35.32086,75.16612,88.67611 1411,530.48,202.70613,23.007812,65.52565,80.95947 1411,549.46124,210.26572,25.888367,77.490326,68.13748 1411,472.09268,219.92857,42.638702,79.699875,0.87664324 1411,518.1359,201.72717,52.119263,106.15787,0.730106 1411,580.00977,199.62025,23.334167,54.938293,0.20396253 1411,545.1639,183.10612,81.05609,151.11366,0.18799889 1411,37.67944,130.07838,30.339848,65.79706,0.123936854 1411,78.62243,215.53993,39.396286,83.10759,0.007916854 1411,65.72371,200.29033,80.238174,171.6721,0.001925445 1411,418.11594,106.15643,31.076416,65.315674,0.0015170166 1411,449.59195,147.71439,153.13077,228.53177,0.0015052859 1411,1.6723918,206.42607,18.911291,73.20027,0.00065600645 1411,2.2460124,115.65081,33.73167,194.16415,0.0003056169 1411,20.99767,109.94896,60.704395,143.48073,0.00010225898 1411,607.0649,437.51627,32.081787,70.31583,4.714387e-05 1411,609.6892,2.18653,29.457458,56.78162,1.9464627e-05 1411,568.7222,359.35022,69.72778,130.7302,1.0096865e-05 1411,1.1167521,436.21518,20.396582,65.61484,9.14845e-06 1411,1.9507065,344.41635,29.760935,142.4158,8.925796e-06 1411,599.4203,13.741153,39.72638,224.18263,9.030816e-07 1411,2.243825,14.709538,36.073246,72.75482,4.61693e-09 1412,543.1368,215.65439,26.593628,79.076965,97.66188 1412,587.74866,203.74521,29.569824,75.84964,90.54178 1412,575.87317,225.62823,26.262085,60.483276,38.740532 1412,602.5547,219.09462,31.540955,67.56825,38.332497 1412,621.91064,217.72507,17.236023,53.839935,0.24735641 1412,295.23627,221.38058,18.710419,45.88025,0.019889237 1412,582.29114,166.1128,52.134705,178.87244,0.015748749 1412,386.59808,211.09145,23.310059,50.165848,0.014593145 1412,406.37747,208.48154,31.25592,67.38223,0.0066498723 1412,13.897071,121.863014,41.789192,107.64774,0.0023745897 1412,437.58325,91.84367,34.50894,63.795578,0.0010476635 1412,2.99299,138.47188,33.978184,198.5038,0.0005001209 1412,491.946,234.21999,60.117096,114.91835,0.0004912 1412,363.07028,220.42648,44.862488,118.593506,0.00046194482 1412,599.35547,225.96324,39.7912,227.77968,0.00028467408 1412,613.65967,0.0,25.487,45.013218,0.00014999688 1412,1.5368701,211.67976,17.872429,138.51375,9.6381504e-05 1412,564.47516,414.13803,72.40381,97.00864,9.327532e-05 1412,608.75903,437.95142,30.387634,69.27786,5.951869e-05 1412,608.8878,0.0,30.25885,165.48042,2.6497324e-05 1412,0.9928874,383.11923,58.218365,116.25256,1.9736752e-05 1412,1.1134896,403.93106,18.814415,101.18915,1.1311975e-05 1412,1.7328093,248.41608,34.40158,226.30936,4.315632e-06 1412,1.7160311,52.056335,20.05788,166.97922,3.446835e-07 1412,2.005534,12.908815,61.612885,126.20848,3.1600513e-07 1412,1.7588933,7.480677,31.809309,64.45185,1.4856569e-09 1413,587.73956,219.4247,37.14044,116.21092,99.780174 1413,575.8119,213.96385,27.59143,96.20186,93.48399 1413,614.3532,230.32458,20.936462,56.507324,59.472054 1413,433.10464,213.46213,24.317139,48.508484,17.615843 1413,326.28073,211.02054,23.119171,52.0365,0.6698363 1413,463.94617,210.23077,22.217163,45.772095,0.01246567 1413,601.51337,141.08553,37.202576,213.45229,0.0068796724 1413,607.58374,83.31388,31.074402,75.02682,0.0042183483 1413,19.125292,201.79927,28.62229,55.646835,0.002642673 1413,540.9142,160.30763,94.51349,252.60677,0.0017970079 1413,490.47833,73.98128,35.863525,65.52983,0.0010707706 1413,618.64655,47.903793,20.500122,75.96431,0.00059560937 1413,621.96497,291.20306,17.181702,68.0755,0.0005616448 1413,420.15854,211.94225,40.511993,140.65895,0.00040888344 1413,12.038928,89.37118,65.65789,169.94232,0.000152762 1413,37.313026,111.73056,31.103714,67.41264,0.00012976646 1413,397.7161,125.57435,125.61624,254.8063,0.00010634915 1413,609.2927,270.225,29.853943,150.85376,0.00010518255 1413,2.3670142,135.79887,33.156487,178.16948,8.079994e-05 1413,609.34845,439.8149,29.798218,67.067444,4.8181562e-05 1413,433.67438,277.42627,76.60687,183.73953,3.2672055e-05 1413,1.1570175,218.72496,17.655771,137.38875,3.08595e-05 1413,586.66675,4.756634,52.47992,133.90768,2.6175936e-05 1413,585.8091,385.66708,53.288635,110.68063,2.2683911e-05 1413,1.0114259,387.5594,17.768917,108.76437,1.2156412e-05 1413,1.939082,265.01102,31.469034,181.8516,5.326686e-06 1413,3.4231625,394.83307,56.943695,99.536224,1.6170692e-06 1413,1.7313917,49.62965,18.800766,149.2314,2.7064533e-07 1413,1.1058757,14.024678,13.683425,76.23316,2.791267e-08 1413,2.5239227,12.919011,59.853207,127.521324,1.3484022e-08 1413,436.6123,1.6558985,46.82199,149.1822,3.986042e-10 1413,380.76144,5.952793,45.773163,52.48031,3.2393438e-10 1413,495.77997,5.6704493,44.590515,54.26165,7.640853e-11 1413,409.26068,4.0401793,44.99173,55.03087,5.2419596e-11 1413,467.25565,0.0,48.509552,67.491425,7.855358e-12 1414,497.24683,220.4826,25.244568,63.77292,81.92068 1414,361.64893,220.24527,21.256714,54.487915,0.5153341 1414,620.29156,138.49829,18.855103,57.145447,0.009492639 1414,482.97235,201.2434,53.93982,105.73152,0.009368621 1414,610.6715,93.92223,28.271301,134.42416,0.006141578 1414,542.24207,318.52444,34.991028,73.84573,0.00561214 1414,49.81081,103.15118,37.775455,93.04598,0.0045728525 1414,537.06146,220.61018,23.274353,46.33177,0.0025367702 1414,616.7084,64.22745,22.438293,81.3934,0.0008470438 1414,555.56213,213.3118,31.588196,56.205475,0.0008136929 1414,617.963,182.97763,21.183655,88.26398,0.0007684962 1414,563.4865,69.902824,25.556274,58.102516,0.0007607434 1414,586.70056,131.69211,51.210144,227.16876,0.0005911998 1414,519.4371,299.91348,54.4776,152.36975,0.00048566025 1414,1.4551636,97.15042,19.998388,88.820465,0.00043139677 1414,612.0258,410.5501,27.12085,95.29663,0.00026392916 1414,454.00073,156.14833,127.10541,237.93492,0.00024059143 1414,617.1813,255.5498,21.965393,93.368256,0.00020970737 1414,4.182025,94.26657,57.972183,226.84857,0.0001988974 1414,612.545,316.9229,26.601685,146.50409,0.00016861384 1414,1.66382,167.06227,19.547955,139.33342,5.4269236e-05 1414,585.05707,23.252514,53.51831,106.08615,3.662595e-05 1414,571.4154,352.47742,67.33966,139.33551,2.5725623e-05 1414,607.4998,8.381343,31.64685,52.83115,2.3225257e-05 1414,425.95953,242.98178,77.74625,194.05801,1.1179877e-05 1414,3.3583953,221.74768,57.785416,242.45773,9.21739e-06 1414,0.73539716,285.34528,19.108479,83.77692,6.7390856e-06 1414,1.3108854,443.0499,20.53978,59.532135,5.7931234e-06 1414,1.0160189,335.77197,19.312916,137.91705,4.9918226e-06 1414,3.730783,394.2217,57.813133,102.484436,2.035029e-06 1414,2.2152328,20.17276,57.939796,128.04677,3.111427e-07 1414,1.2921343,16.50935,12.411782,74.20935,9.683271e-08 1414,579.0061,10.834189,43.690125,45.675076,3.0463664e-08 1414,6.5588007,7.514427,42.124992,45.837162,5.7003535e-09 1414,427.45856,6.8945346,45.99655,52.84845,3.8979278e-09 1414,548.4277,5.1694107,47.639893,58.29115,3.502661e-09 1414,458.37552,5.107554,47.211792,48.79105,1.1940411e-09 1414,400.52484,4.54348,47.222137,51.157024,1.14316216e-10 1414,462.49023,3.8775814,89.27246,78.919106,1.14166294e-10 1414,521.6696,0.57548505,48.555054,67.85242,5.1183325e-11 1414,83.52539,7.034743,41.61853,46.813824,1.0397651e-11 1415,551.6008,206.48178,31.37201,80.25351,99.9562 1415,365.167,206.4787,23.308105,60.687958,83.36476 1415,603.4929,220.0088,32.966187,63.090042,0.10029906 1415,464.6463,204.46864,22.166992,48.58165,0.09167447 1415,17.445782,82.607605,41.02215,96.276794,0.018142985 1415,620.6585,191.7015,18.48816,63.51451,0.005232976 1415,7.617467,183.50967,32.78843,73.23526,0.005109236 1415,535.4159,172.846,65.456604,162.71638,0.002547211 1415,587.551,143.41042,50.003113,204.88722,0.002032169 1415,3.1175537,93.23175,33.037205,211.27274,0.0018109118 1415,26.130919,87.96742,22.882795,47.607193,0.0011784543 1415,496.6611,231.01704,23.01767,53.605026,0.00060276577 1415,1.6514095,190.69344,19.112759,81.02635,0.0004315778 1415,436.4907,158.77052,25.245422,54.141296,0.00034868735 1415,609.57306,50.409885,29.573608,167.43942,0.0002657172 1415,614.4023,0.79168785,24.744385,45.940006,5.005672e-05 1415,609.99927,278.4941,29.1474,142.40549,4.735078e-05 1415,497.02716,139.56201,23.089233,53.42633,3.8472204e-05 1415,552.9289,414.2509,86.21777,92.89981,3.8002963e-05 1415,1.7354745,211.40863,32.09447,195.82153,3.6402733e-05 1415,611.0626,371.6577,28.084045,139.48895,3.0991094e-05 1415,1.4756616,80.926506,18.511425,85.008965,2.9613853e-05 1415,1.0682088,163.51761,14.198071,66.25583,2.3626844e-05 1415,339.78665,164.98817,94.62161,193.13924,8.576195e-06 1415,585.4201,12.179342,53.016968,117.59582,6.426017e-06 1415,1.1311337,393.14606,18.081743,107.23056,4.7904e-06 1415,1.0252385,337.95163,20.676231,103.99191,4.559824e-06 1415,3.6977816,394.58832,56.62136,101.36862,9.396009e-07 1415,2.7667742,22.161427,58.834282,121.812775,2.9925954e-07 1415,1.7445085,42.847084,18.700598,73.45158,2.404948e-07 1415,579.79675,5.132863,42.379333,54.61932,2.9100416e-08 1415,1.3118132,9.643783,21.552269,59.45922,2.7897435e-09 1415,476.00235,5.519699,43.711456,52.046906,2.3828193e-09 1415,449.89386,5.965902,44.609894,52.745613,1.7077152e-09 1415,400.52213,5.5240316,44.993927,51.514652,1.5672222e-09 1415,374.71436,5.540519,44.21402,55.024754,2.4157942e-10 1415,511.84604,5.409782,43.74875,52.754387,5.0644954e-11 1415,549.15985,4.9192204,46.4646,49.68061,4.3551968e-11 1415,129.5172,1.5236589,41.208145,51.038094,5.5957734e-13 1416,371.6974,222.86105,28.60315,69.9624,99.4789 1416,534.3917,248.43417,22.135315,47.57895,0.33141154 1416,488.31622,211.1704,37.736572,80.26048,0.030786633 1416,2.476814,186.30116,35.312107,80.05098,0.007337061 1416,606.0092,106.81598,33.13745,156.03839,0.002637796 1416,555.07043,111.78042,77.14368,188.37482,0.0015243865 1416,622.64014,224.3918,16.50653,59.699142,0.0010416243 1416,4.696245,111.66828,57.219833,225.05212,0.0004351266 1416,2.5988934,46.842594,35.962914,105.86119,0.0002187241 1416,572.6798,119.60046,40.952515,92.830956,0.00019780439 1416,3.0610483,132.16393,32.343384,92.01639,0.00018197524 1416,1.350319,57.38233,15.197712,65.80651,0.0001702825 1416,354.95032,192.23961,70.95615,148.19759,0.0001291526 1416,616.98456,261.4083,22.16211,78.44855,0.00011199015 1416,1.5505037,143.37532,15.032323,61.342712,7.076861e-05 1416,612.2105,309.8253,26.936157,148.95404,6.0754734e-05 1416,477.1684,180.96097,74.946594,157.01135,5.835715e-05 1416,616.22784,23.847698,22.918823,77.293655,4.894245e-05 1416,601.20294,218.89505,37.943726,172.04391,3.526034e-05 1416,1.364476,227.57886,18.768393,78.40378,3.0827232e-05 1416,1.4461793,88.65197,20.221033,96.46494,2.1931133e-05 1416,584.9102,395.8383,54.23645,103.98511,1.9509826e-05 1416,599.9846,6.9759083,39.16205,47.30239,5.63147e-06 1416,1.1034514,376.37656,18.829935,121.875854,4.5874253e-06 1416,0.835931,273.83948,18.544567,73.65048,3.8455837e-06 1416,1.5416008,228.5769,31.961557,183.61465,2.6621176e-06 1416,568.1393,14.528887,70.340515,153.48824,2.2603442e-06 1416,3.6322234,397.0473,56.49657,98.22772,1.403635e-06 1416,1.8938868,8.325449,73.141975,195.14299,3.567262e-07 1416,1.2199366,6.989398,33.41091,72.945175,5.1424296e-09 1416,559.24774,8.93458,44.625183,54.888817,4.4361137e-09 1416,430.07755,4.1012845,42.84903,52.63869,4.1204573e-09 1416,496.74033,5.75112,44.227814,49.44933,3.1147016e-09 1416,531.78613,4.628828,46.185364,53.96881,1.7227478e-09 1416,468.22073,5.649245,46.30081,50.94155,9.556803e-10 1416,354.82916,3.2548993,40.175293,49.889465,1.3855015e-11 1416,115.177765,1.0523324,42.879745,50.515205,7.2367776e-12 1417,386.5172,223.19298,23.873474,68.802536,99.82894 1417,400.70206,218.53133,26.996796,78.213455,99.699356 1417,550.83966,191.33018,35.853516,84.43382,5.592693 1417,490.62817,211.35603,33.654846,64.42848,0.0118719125 1417,611.27783,208.75095,27.868835,109.44452,0.0038687547 1417,537.05396,178.25087,75.9964,159.58705,0.00091758295 1417,621.93024,275.35684,17.21643,52.322998,0.0008647861 1417,588.07947,117.15993,49.67578,203.19121,0.0008458289 1417,606.2068,164.25601,32.78015,89.540634,0.0007609059 1417,383.98346,189.31088,67.83176,149.14618,0.00064808317 1417,1.2946216,217.39911,18.624243,75.29965,0.0004920124 1417,2.9090967,212.85857,40.6356,130.69383,0.00030324268 1417,1.4249252,110.23443,18.634617,147.08649,0.00015864841 1417,617.2005,77.529,21.946167,89.27407,9.298232e-05 1417,608.3989,439.95413,30.747742,67.715576,8.890647e-05 1417,612.0197,278.1802,27.126953,144.60123,6.8212816e-05 1417,1.2976669,280.31732,18.510075,81.442566,3.546038e-05 1417,1.288759,64.23651,19.150421,89.57059,3.4448723e-05 1417,573.2435,360.21283,65.90314,132.00946,1.6667758e-05 1417,1.7473373,260.61218,32.089104,188.35648,1.2703158e-05 1417,1.1881754,442.85938,21.200373,61.17511,7.913519e-06 1417,4.7859783,83.21116,58.016106,233.62354,4.1856074e-06 1417,586.4357,13.368158,52.710938,119.04073,3.2834791e-06 1417,5.4049187,356.86395,77.505585,131.5358,1.9950437e-06 1417,2.1472576,18.820744,58.35107,127.409164,1.07447676e-07 1417,0.79874474,11.250465,10.851265,90.61237,2.7803528e-08 1417,1.3842725,7.95181,30.616835,60.23923,9.801198e-10 1417,115.09992,0.0,45.594627,63.59189,3.4171183e-10 1417,435.3171,3.903418,45.693207,56.318913,4.313931e-12 1417,456.89532,1.0923682,46.078705,47.00444,5.381649e-13 1417,147.41711,0.0,45.148804,69.58109,3.0330754e-13 1418,433.03522,229.16222,32.8161,90.84697,99.75132 1418,418.55713,231.56773,28.157623,82.66197,99.641106 1418,523.2148,209.17255,41.598328,99.40106,0.199732 1418,451.53497,241.8272,26.07901,70.49254,0.19481176 1418,619.3103,181.10007,19.836365,62.644363,0.0940217 1418,535.5156,213.54385,23.369934,51.123505,0.07324334 1418,547.4469,211.79771,35.156006,73.72865,0.02318053 1418,605.3036,81.583,33.374695,176.47375,0.013873598 1418,124.408,232.47777,30.926231,70.27034,0.0072796554 1418,610.5879,194.09004,28.558777,150.22325,0.0024448636 1418,619.9047,101.72205,19.241943,66.60552,0.0024324586 1418,565.02924,232.32646,38.816223,71.09151,0.0013404947 1418,566.7363,219.89532,21.770752,48.525635,0.0009853361 1418,408.4495,198.76038,89.161835,170.14584,0.00086592 1418,571.0214,98.46526,65.27643,266.57306,0.0006911318 1418,2.4784718,148.13547,29.632792,143.57983,0.0005887669 1418,616.37006,288.43372,22.776611,84.95413,0.00034293722 1418,4.1176696,95.74365,58.37928,231.92215,0.00023982354 1418,602.0359,283.21594,37.11078,185.76355,0.00012270655 1418,609.2269,434.8951,29.919739,69.808136,0.00010520904 1418,493.10626,160.5019,32.51477,77.77107,7.1563154e-05 1418,588.3596,28.026333,50.27661,110.809814,5.2221338e-05 1418,0.9271322,237.5751,17.313206,153.48578,7.83022e-06 1418,3.298304,214.02095,57.294533,256.11298,7.025259e-06 1418,1.0408391,345.55612,19.321268,135.88223,5.990141e-06 1418,2.0619206,425.23328,33.068188,75.99808,1.8851333e-06 1418,492.40518,35.305115,30.956879,75.81477,9.534187e-07 1418,2.339144,20.172155,59.319122,114.81321,3.2142012e-07 1418,1.4754574,54.4933,20.044886,159.94283,2.7090923e-07 1418,0.7809965,12.885977,10.266843,85.2146,1.1747908e-07 1418,474.492,23.632744,34.195984,74.47716,6.3124608e-09 1418,1.3769954,7.7730374,30.030176,61.673214,1.5259963e-09 1418,422.3403,6.261631,44.629395,54.98682,3.4638667e-10 1418,450.37552,6.249372,45.579895,54.905235,3.548789e-11 1418,488.6667,3.3742042,43.103638,47.383083,2.3462137e-12 1418,119.53121,0.0,47.87722,64.64677,2.9616392e-13 1419,486.66013,216.68451,48.97934,147.0075,99.94694 1419,462.53122,230.87837,39.4964,116.43208,99.936066 1419,506.78058,225.39154,29.549377,72.06818,4.683092 1419,484.3851,224.39471,28.561188,82.10693,1.7703646 1419,497.21378,221.23613,21.94278,45.35286,0.044211794 1419,471.8096,231.45964,21.67511,51.731888,0.021271529 1419,608.58136,196.2702,30.216492,137.29742,0.007939134 1419,144.41972,215.95451,20.609818,47.64189,0.006143956 1419,444.76944,158.67044,110.29587,239.86957,0.0046228897 1419,621.58215,267.2245,17.564514,59.349274,0.0033838365 1419,620.94275,191.95975,18.203918,60.364563,0.0019645987 1419,525.4142,267.82425,69.410706,197.02234,0.0010939635 1419,496.135,278.60223,26.994507,76.72217,0.00084265677 1419,624.53864,240.05118,14.608032,46.950745,0.00055952446 1419,522.3993,207.95134,37.16919,144.56053,0.00054556533 1419,2.3851905,135.91222,35.49737,198.6468,0.00048640603 1419,498.02313,91.61883,38.929688,98.117226,0.0004381393 1419,462.52277,147.18196,26.997253,69.80473,0.00028993023 1419,558.43036,186.70667,24.52417,52.293,0.0002856858 1419,3.8079362,229.89923,57.50372,222.26962,0.00018285237 1419,610.7795,274.1225,28.367188,143.69946,0.00012394595 1419,570.29816,148.30612,66.47943,255.96127,0.000105625644 1419,1.6146859,214.41365,18.03111,137.5208,0.00010014638 1419,616.3585,40.49763,22.788147,83.82048,7.5547556e-05 1419,609.2073,437.30643,29.939392,67.75546,6.9632915e-05 1419,610.08276,59.30493,29.063904,167.93758,4.2892818e-05 1419,570.5229,354.38644,67.99481,133.55481,4.1663403e-05 1419,1.5894597,285.68246,20.093987,147.28308,4.0376246e-05 1419,512.04474,88.76896,20.974365,45.228172,2.9442414e-05 1419,1.1686718,371.37402,18.496706,126.267975,1.44505575e-05 1419,3.4115236,373.66882,54.30499,116.70032,1.3835765e-05 1419,1.2141203,97.141754,21.550447,132.73653,1.3211802e-05 1419,492.9533,60.459442,74.37219,238.68683,2.643044e-06 1419,595.9438,7.111276,42.938965,81.74526,1.0550505e-06 1419,2.8219857,28.513086,62.020153,203.73576,6.370756e-07 1419,1.5622363,24.704304,19.765184,110.29071,1.9962454e-07 1419,564.929,12.733216,74.21765,160.47842,7.867099e-08 1419,77.76442,2.5592318,46.16057,56.35508,2.0652442e-09 1419,0.97973716,2.1295557,21.052282,47.233227,6.952185e-10 1419,525.1722,0.0,47.82251,58.76937,6.4142985e-10 1419,421.9773,3.4737062,43.560944,54.77178,3.700209e-10 1419,566.9552,3.0850813,42.094543,53.67646,2.0878108e-10 1419,489.60266,0.0,45.99994,48.97903,1.1406661e-10 1420,586.9172,250.7009,52.229492,219.93558,99.89267 1420,428.9501,212.5177,24.251678,47.30493,60.952847 1420,151.55737,212.76852,23.950134,50.884125,42.570816 1420,606.27264,247.35245,32.874023,72.9209,0.046851825 1420,619.69196,209.7348,19.454712,65.32001,0.02117878 1420,620.9217,288.7478,18.224976,55.893738,0.0073329136 1420,592.3531,375.43073,32.966614,79.704956,0.0042323507 1420,535.56445,179.43428,45.19397,144.0335,0.0042311884 1420,409.73502,217.55484,23.327759,49.969543,0.0036757411 1420,514.24963,188.84445,124.89703,238.36353,0.0032443455 1420,623.2787,387.5696,15.867981,50.989502,0.0019308678 1420,1.9422779,160.66675,28.658813,152.75916,0.0018794497 1420,610.8589,345.1656,25.569092,71.07239,0.0018469802 1420,98.79391,215.43324,44.303368,108.31673,0.001825609 1420,3.136994,81.341606,57.382214,247.31561,0.00068712747 1420,606.9976,429.07114,32.149048,77.040344,0.00030908795 1420,608.7212,302.992,30.037964,78.37735,0.00013565703 1420,609.59656,103.28844,29.55011,165.65959,0.000118170734 1420,1.1292937,236.00847,20.382397,138.16045,5.01954e-05 1420,390.91623,142.73811,129.77512,206.34554,4.2338233e-05 1420,610.8781,11.549903,28.268555,154.30511,9.42367e-06 1420,0.85404867,376.46143,18.723352,121.45999,5.232134e-06 1420,1.5019531,296.23172,31.482723,176.95694,1.8036509e-06 1420,1.2193546,47.416836,22.01632,168.73802,1.494555e-06 1420,1.6593425,15.207357,59.400475,123.55906,1.3786275e-06 1420,3.0895867,395.22308,57.43449,100.50348,1.3093652e-06 1420,1.111075,10.786676,15.843003,76.83424,1.4964533e-08 1420,6.6482277,5.104058,43.829086,51.765045,2.4864983e-09 1420,409.64093,5.520913,42.45642,51.93668,9.487696e-10 1420,39.604866,1.3473079,44.11087,52.721172,7.177373e-10 1420,373.10144,2.535516,43.328796,54.495136,5.478932e-10 1420,435.16586,6.2840986,42.73535,48.080673,2.7080962e-10 1420,114.846016,0.0,48.594566,63.138428,1.7379732e-12 1421,554.4662,226.07741,30.180542,51.843643,61.34139 1421,616.26025,76.70729,22.886414,78.29002,0.11234692 1421,436.24625,207.87242,37.37549,67.734116,0.018230418 1421,597.22424,65.14719,41.505676,218.70526,0.016929708 1421,477.93948,217.65646,34.52658,57.814423,0.012286318 1421,63.68713,224.10501,32.21654,64.55786,0.00985471 1421,560.20825,218.54024,45.972107,88.095535,0.0068671526 1421,572.5681,238.03035,22.768127,47.97484,0.0066200336 1421,618.57587,136.17943,20.5708,70.80557,0.00190952 1421,578.1612,213.57404,58.84674,123.84961,0.0010249526 1421,538.561,228.52081,30.286621,61.99124,0.00092195126 1421,617.0779,232.01839,22.068787,87.37578,0.0009144539 1421,127.81969,196.90404,24.93924,45.24698,0.0007480798 1421,2.6661882,114.23943,37.712402,121.18954,0.00030804033 1421,5.0153694,130.96573,57.266514,220.32178,0.0001787299 1421,511.42648,139.0473,123.12015,239.00943,0.00017708972 1421,584.8231,249.80762,30.14447,53.879852,0.00017150497 1421,603.82635,266.33356,35.149414,173.32452,9.943083e-05 1421,612.9241,380.65854,26.222595,119.73981,8.943464e-05 1421,495.94736,238.81764,24.792206,55.056076,7.961806e-05 1421,617.2062,176.07216,21.94049,87.77434,7.324827e-05 1421,1.1943946,149.5109,14.343279,63.36229,6.765564e-05 1421,1.1167505,229.19894,16.886684,133.41208,5.0372302e-05 1421,1.5674464,192.93443,18.579834,71.60545,4.556855e-05 1421,408.68524,138.525,128.95148,225.18356,2.024611e-05 1421,1.6171819,254.61559,34.144108,202.53532,1.3217838e-05 1421,586.19354,7.739004,52.078796,133.59381,1.18256585e-05 1421,1.4496224,62.261837,19.496132,88.98842,9.535445e-06 1421,1.2660531,443.7259,20.694454,59.822876,4.5672405e-06 1421,1.066399,400.09222,18.069153,74.27054,4.0718064e-06 1421,0.9153988,338.16882,18.478998,73.450836,3.2270664e-06 1421,3.703423,397.07083,56.77904,100.03439,1.2334154e-06 1421,2.116722,6.965547,59.088852,145.67871,1.6607989e-07 1421,0.98651695,13.099701,13.322159,91.75772,8.212256e-08 1421,568.1714,0.0,58.741028,51.675922,2.101228e-08 1421,19.196007,5.7433596,43.076977,55.119858,1.498764e-08 1421,429.0361,5.533566,43.02603,51.99598,6.24262e-09 1421,76.84309,0.0,84.8682,79.892265,2.8369092e-09 1421,402.4793,6.8124156,43.991943,48.174923,1.799216e-09 1421,373.7143,6.4533434,43.489105,46.95253,4.0721554e-10 1421,69.73819,6.4653096,42.327583,47.474644,3.0943953e-10 1421,546.8804,5.003184,40.71161,57.207508,2.5122154e-10 1421,346.42804,4.9629593,44.291748,51.09006,4.917495e-11 1421,491.26068,3.24542,42.045654,48.995068,2.1371085e-11 1421,523.50574,2.4112208,41.486816,51.445564,9.106081e-13 1422,92.98469,211.51062,36.288017,75.1142,99.93099 1422,69.7748,210.298,36.79396,77.453125,99.70343 1422,142.87366,205.8796,24.58435,53.250504,97.74909 1422,120.431854,202.17467,21.687164,53.457184,0.048641372 1422,594.5129,112.10848,22.115723,49.845284,0.007082963 1422,2.362064,90.130646,47.23017,166.57605,0.0049896394 1422,59.851322,204.43634,25.9912,49.610275,0.0043207807 1422,621.09174,294.28006,18.054932,62.95688,0.0038723203 1422,505.56226,158.34956,35.379395,86.86598,0.002120243 1422,591.3234,96.677505,38.26117,108.501175,0.0014433577 1422,622.3825,116.6692,16.76416,52.859337,0.0011575595 1422,608.85736,233.79532,30.087341,129.09625,0.0010592185 1422,57.655144,186.89421,73.81312,137.54152,0.00061940413 1422,455.83112,152.5036,21.939117,49.74643,0.0002455459 1422,1.0222445,275.61905,43.34204,166.53702,0.00012445814 1422,611.2728,129.78462,27.87384,141.77544,9.991876e-05 1422,15.311771,136.16106,145.8554,237.13548,7.89465e-05 1422,496.3256,145.67833,127.6304,247.1851,7.617051e-05 1422,610.5664,48.788757,28.580261,136.42656,7.5638454e-05 1422,608.7914,439.8012,30.355286,65.46088,5.1246276e-05 1422,1.742391,238.78659,17.84971,145.88657,3.9545783e-05 1422,612.7622,309.69775,26.38446,132.762,3.7118803e-05 1422,406.13126,225.91565,75.90866,195.94199,2.609299e-05 1422,1.6775725,142.73694,20.98458,157.41159,1.8803077e-05 1422,1.1947876,334.69324,19.957388,81.22513,1.1868797e-05 1422,570.7181,362.9435,66.91577,129.67477,7.916176e-06 1422,120.7452,170.67172,77.88964,152.61945,6.598009e-06 1422,615.82336,13.448242,23.323303,86.784935,6.165971e-06 1422,1.0363663,371.99765,20.709349,134.61972,5.383804e-06 1422,2.3893116,9.077764,40.830772,94.60298,1.9867502e-06 1422,2.9694011,16.698242,83.996544,183.31581,8.683145e-07 1422,1.4252238,0.93151534,19.87973,48.305042,1.1132162e-07 1422,359.86255,5.311992,45.206482,55.135143,4.9710738e-09 1422,82.18813,1.8936393,47.031746,57.92566,5.482023e-11 1423,592.83746,212.08885,34.82263,68.71706,99.9246 1423,14.922766,205.03806,48.49903,108.78531,99.917755 1423,3.8413372,214.60126,30.048388,71.267975,28.121885 1423,575.2615,208.3523,28.268555,55.578674,0.15556811 1423,622.8625,216.85422,16.28418,63.5961,0.11123737 1423,29.52933,208.63979,25.00731,47.710495,0.058455985 1423,406.76898,218.73282,26.7594,50.652435,0.024185438 1423,577.2306,176.65677,56.357056,153.52896,0.022867406 1423,514.27155,226.38591,23.297485,53.787704,0.0038169369 1423,610.6105,208.59203,28.536194,138.77376,0.0035596318 1423,537.3802,50.598713,21.634033,47.52155,0.001956626 1423,6.3830013,150.16054,75.92722,246.27916,0.0010814948 1423,0.9272884,225.4467,20.636942,164.89867,0.0004043507 1423,513.8953,327.11533,40.579895,103.03696,0.00038621228 1423,1.7431153,90.625824,35.973595,245.30185,0.00013318438 1423,611.20856,309.1183,27.93811,152.81955,0.00012563395 1423,616.14777,102.1862,22.998901,84.535645,9.737172e-05 1423,595.17944,407.1164,43.967224,98.63992,8.7691944e-05 1423,617.0937,35.480263,22.052979,79.48289,6.156735e-05 1423,598.1623,46.573387,40.742493,238.57764,5.0124596e-05 1423,484.03766,255.6499,107.90344,219.24905,2.295441e-05 1423,1.1313891,388.42334,17.684626,111.39484,3.5267192e-06 1423,1.6111158,52.95319,19.024132,143.61525,2.4098076e-06 1423,3.921094,398.07532,56.56326,98.54648,1.1980353e-06 1423,2.6907911,18.773874,57.53561,127.36048,1.095657e-06 1423,0.95683026,12.571777,14.196363,90.57299,1.5626867e-07 1423,5.160578,5.8022137,46.53533,60.039177,2.1752594e-08 1423,437.52237,7.2983384,43.485504,53.357594,9.485312e-09 1423,536.8536,5.485698,45.175415,46.18683,6.629233e-09 1423,462.5445,6.78397,43.75894,52.273994,3.566605e-09 1423,511.78976,4.3722024,43.516815,49.972557,2.8418592e-09 1423,382.54688,2.3498144,44.56418,45.102367,2.139509e-09 1423,362.30603,1.4149382,42.031708,60.88816,1.0337942e-09 1424,87.55801,203.60706,31.493027,69.27103,99.84766 1424,494.5821,215.74686,22.649841,50.987152,98.77902 1424,507.45288,216.32457,21.222473,48.28337,6.186799 1424,459.1642,206.73946,34.773987,65.23872,0.8164933 1424,402.58075,217.58727,23.572296,49.56801,0.1986597 1424,78.70941,195.74805,26.263023,54.070526,0.1571591 1424,65.74346,197.82573,24.74839,55.871384,0.034673665 1424,517.41895,225.15819,22.745361,49.06816,0.013738712 1424,452.09,235.02121,26.720062,63.29367,0.013728391 1424,604.30035,193.93362,33.11682,77.95093,0.0046586525 1424,474.7521,184.9841,63.090607,116.55551,0.0022020629 1424,608.2536,222.23285,30.832031,164.18365,0.0015803948 1424,626.1543,203.87418,12.992371,45.29471,0.0010663978 1424,447.9623,147.93764,127.566864,231.06566,0.0001717002 1424,2.22237,133.3567,34.834282,171.16185,0.00011037355 1424,509.89047,103.32446,41.973114,125.954865,0.00010404333 1424,609.2157,442.30823,29.93097,62.476685,5.9166177e-05 1424,572.8172,351.23666,66.32947,141.1849,5.4640186e-05 1424,599.395,55.310184,39.751648,235.02472,4.976622e-05 1424,71.80763,166.3515,70.080765,155.26352,3.4856523e-05 1424,610.70337,7.425,28.443298,76.898766,2.9375215e-05 1424,1.1039771,220.2658,16.799736,148.2564,2.402534e-05 1424,1.2681738,66.48848,19.143763,155.36931,1.0452403e-05 1424,3.9414601,206.07057,58.409676,233.52992,9.405355e-06 1424,1.1679256,364.96982,19.101505,132.3269,3.7776686e-06 1424,567.7158,18.947643,71.23059,150.0372,1.6082444e-06 1424,3.802544,397.70547,56.764526,98.72775,1.5150391e-06 1424,147.49045,154.62566,92.38339,198.77647,8.6228056e-07 1424,1.1290544,12.378968,13.81395,83.043236,4.726476e-07 1424,2.962316,22.108894,62.823803,239.905,4.2751006e-07 1424,2.3898308,8.028539,39.69251,96.51321,2.1835243e-07 1424,565.31433,9.636841,43.82251,45.86466,2.6656918e-08 1424,539.1635,6.7806106,43.76288,53.06766,1.8401213e-08 1424,372.36038,4.523011,45.443756,49.09782,1.533852e-09 1425,32.518738,204.45999,43.97616,82.861694,99.9668 1425,7.916765,212.64586,38.0299,87.6064,99.81835 1425,1.2332838,209.68163,20.250633,85.57915,1.3914771 1425,46.242306,204.42038,21.9846,46.938095,0.046640933 1425,477.8733,216.2243,28.62918,56.60031,0.024661817 1425,63.713165,204.29216,24.002838,62.196182,0.0056079887 1425,5.620641,155.25725,79.635376,211.81172,0.0018857014 1425,618.11066,180.41277,21.03601,68.734085,0.001350328 1425,608.93787,256.45404,30.208801,73.00006,0.0011424404 1425,513.5851,213.88675,32.350525,64.462036,0.0011210237 1425,538.8196,214.53319,39.698242,81.84096,0.00061194034 1425,602.88556,108.30258,35.83734,188.95837,0.0004323197 1425,600.1782,210.86336,38.511047,191.19267,0.00027570626 1425,617.1145,79.642746,22.032166,84.002304,0.0001990807 1425,613.3784,378.1285,25.76825,122.15103,0.00018388183 1425,616.2845,300.30865,22.862183,93.32324,0.0001110643 1425,1.6013632,105.238945,18.788284,89.77819,2.0469884e-05 1425,0.7319474,193.0616,35.024456,261.5932,1.5732872e-05 1425,438.92303,236.96217,76.83606,200.79439,1.1128265e-05 1425,1.5304801,7.7633076,49.792065,136.29242,8.234631e-06 1425,608.8315,1.5599871,30.315186,61.072914,6.6009293e-06 1425,1.0615455,370.95227,18.536718,124.81708,5.018256e-06 1425,1.5989975,5.823151,18.596334,99.04269,2.917113e-06 1425,1.532221,62.43594,31.950571,219.99802,2.2005754e-06 1425,3.8310351,396.7353,57.23932,98.541504,1.1371883e-06 1425,24.088503,4.369836,45.925117,53.28141,6.6412775e-10 1425,408.91162,5.1691146,43.019287,55.023598,2.218702e-10 1426,514.5623,225.61714,25.811218,58.330307,99.889145 1426,533.5976,220.53677,27.140076,52.127075,88.7672 1426,599.0116,218.52129,35.992065,87.019,0.17867371 1426,36.166183,194.41212,33.759125,58.98642,0.0528901 1426,537.1677,310.5775,48.87732,115.63333,0.022071049 1426,549.3529,218.0186,28.91449,47.063004,0.017438779 1426,619.5625,216.16626,19.584167,45.677185,0.010440609 1426,503.86133,208.20488,56.74054,93.11711,0.0044346186 1426,622.9446,124.35862,16.202087,50.13407,0.002678593 1426,493.7772,156.59932,130.38718,240.38872,0.0009224121 1426,615.36835,50.271107,23.77832,97.08589,0.00036434445 1426,588.4371,243.52785,48.977295,221.99077,0.00036255183 1426,611.1744,104.898605,27.97229,142.65453,0.0002413675 1426,17.637331,156.57104,63.044083,134.15536,0.00017378114 1426,586.0561,55.613674,51.480713,266.8451,0.0001551033 1426,1.9485669,123.86013,19.08124,144.89227,0.00015152464 1426,609.0685,436.07974,30.078186,69.907104,9.3651106e-05 1426,612.169,342.40402,26.977661,143.14651,5.900733e-05 1426,1.3257861,217.97798,18.770813,138.0562,4.022297e-05 1426,4.3005977,186.57748,58.04978,224.70358,9.402808e-06 1426,1.0338998,368.32016,18.105925,126.49161,6.049225e-06 1426,608.95197,0.1654948,30.194702,66.67858,5.5447854e-06 1426,1.7340455,264.59402,31.55934,181.18088,4.837152e-06 1426,2.5540674,22.318998,62.525677,250.07275,3.2022153e-06 1426,3.5971942,393.65164,57.799866,98.30087,2.2204804e-06 1426,1.983947,16.220924,30.84483,127.07867,4.920873e-07 1426,5.604401,6.385856,44.039486,53.11154,1.5105018e-08 1426,481.15402,3.6125164,45.350616,59.770386,1.1837287e-08 1426,523.66864,4.002938,45.787964,51.5234,6.693293e-09 1426,39.518158,4.4961214,45.11004,48.653557,6.324497e-10 1426,454.4734,4.6100554,47.149963,58.89234,3.642954e-10 1426,418.38458,8.223077,40.404694,51.72183,1.7139035e-11 1427,584.2746,227.43727,35.756653,84.52669,99.968445 1427,608.1971,225.2849,30.949585,86.71944,99.90294 1427,150.09691,207.75986,27.931839,60.80591,99.81856 1427,138.24252,206.70392,20.726791,52.479095,0.68907136 1427,623.2893,265.21982,15.857361,48.270447,0.029521482 1427,587.0931,134.81566,49.821045,222.63213,0.013821137 1427,46.110645,199.67238,22.307407,49.82202,0.0052145543 1427,111.86248,210.9156,25.366295,56.11528,0.00240198 1427,622.1762,118.514275,16.970459,50.846016,0.0018117066 1427,30.739464,200.68481,25.366379,48.12053,0.0008982341 1427,1.6326147,187.26135,18.23285,74.2269,0.0002765669 1427,610.42096,38.175503,28.725708,134.9173,8.1105194e-05 1427,609.40027,441.68512,29.746399,65.70355,7.781051e-05 1427,611.93396,309.99146,27.212708,149.05084,6.483969e-05 1427,2.02119,135.71323,35.09481,171.81714,4.92855e-05 1427,134.93484,168.19289,69.084366,162.54268,4.219643e-05 1427,0.9187053,222.0656,19.74433,143.19826,3.675717e-05 1427,3.8630128,184.06435,55.629734,232.54433,1.5845668e-05 1427,598.88666,14.357771,39.927612,69.4639,1.4573663e-05 1427,585.19934,394.12384,53.947327,105.21118,1.4327824e-05 1427,0.93901694,366.9679,16.712843,126.303406,6.413038e-06 1427,1.5612444,286.75113,30.483295,168.6893,2.412208e-06 1427,566.7778,10.434947,59.641907,46.186882,2.059512e-06 1427,3.380765,393.25192,57.61624,99.151,1.6351291e-06 1427,2.1294858,17.658379,59.543343,115.87362,5.229697e-07 1427,1.5242139,47.8512,18.875847,164.68225,1.8951548e-07 1427,1.0340817,9.736332,13.290264,88.952515,6.092642e-08 1427,547.3137,9.933229,40.244263,47.944878,5.789892e-08 1427,451.8631,3.158939,68.8689,57.523914,4.038251e-08 1427,1.1755224,3.402173,40.73431,55.657387,2.71695e-09 1427,392.69196,4.594102,44.340027,64.44175,1.5149935e-09 1427,423.02402,5.463646,42.651978,56.246914,3.3413558e-10 1427,368.88065,2.8083951,43.079376,63.341034,8.464589e-12 1428,93.86231,206.69154,32.58642,65.433365,87.25839 1428,578.6564,206.3186,25.437866,51.79126,0.8315322 1428,80.18971,204.56248,22.881096,55.70433,0.7748924 1428,447.37424,218.3594,24.565552,48.992126,0.009160059 1428,394.12268,227.36777,29.48996,64.457825,0.006426804 1428,621.3943,217.6809,17.75238,55.02025,0.0040718876 1428,590.98193,213.47548,24.562927,54.034378,0.002966281 1428,25.900997,209.48416,34.990425,75.58951,0.0028345904 1428,556.20044,210.20934,38.5235,58.07344,0.00086375914 1428,610.1289,92.04843,29.017761,135.69017,0.00083581853 1428,609.61,265.41846,29.315796,152.37668,0.00029258142 1428,1.5571818,213.01057,17.855309,72.26021,0.00018648474 1428,612.2508,163.77902,26.879822,137.95477,0.0001360042 1428,612.58984,376.31445,26.556824,127.159515,0.00010282814 1428,4.4875426,129.47946,59.58264,227.49512,9.926134e-05 1428,574.75385,24.652527,63.351807,265.20953,7.130353e-05 1428,569.69354,199.741,42.965637,107.130035,4.4826284e-05 1428,0.9575212,237.48706,19.246088,137.98068,3.430814e-05 1428,2.2856886,134.20082,27.57955,150.37788,9.852404e-06 1428,601.5363,9.914818,37.61035,137.21896,7.2153257e-06 1428,365.38147,175.86398,108.66687,207.30698,6.8075565e-06 1428,420.66193,72.9716,72.86276,206.83086,5.5804876e-06 1428,1.2002157,371.56934,17.545708,124.31006,5.2410533e-06 1428,74.82153,145.04016,36.463882,72.68016,4.8157212e-06 1428,59.42786,137.90794,135.4674,245.97273,3.74935e-06 1428,1.0801417,339.32712,18.191248,73.006744,3.5271498e-06 1428,4.1315465,397.88177,56.740513,95.12271,1.7007519e-06 1428,461.0397,431.76416,71.26602,69.49365,9.322232e-07 1428,236.08641,434.73422,71.06468,65.40198,6.60405e-07 1428,421.3297,8.492519,43.48419,146.88393,7.558446e-08 1428,448.69043,0.0,69.071045,64.209816,5.3772304e-08 1428,496.7199,9.051729,41.26355,51.62471,2.2294536e-08 1428,408.19763,2.7177246,67.69629,55.69827,1.8375959e-08 1428,352.31863,5.809678,87.17975,79.53956,1.3959762e-08 1428,431.7565,26.077616,20.872986,54.506126,7.0766357e-09 1428,1.857116,18.251036,56.54119,127.31801,1.4256851e-09 1428,333.9623,1.3983854,48.10211,62.75141,2.342727e-11 1428,1.6957219,6.622054,27.003464,62.540215,3.1612367e-12 1429,52.606644,211.1854,35.048187,71.77142,99.81482 1429,41.32221,209.73067,25.399426,66.72197,7.5298624 1429,415.79303,223.88165,24.068604,51.33661,0.04739365 1429,384.2474,217.93755,32.404175,63.29872,0.015148588 1429,365.67624,217.84097,31.276855,66.79886,0.009447342 1429,442.55496,225.3198,22.184906,46.413727,0.005445607 1429,327.35526,215.3171,32.37155,71.16301,0.00403348 1429,622.43054,96.67918,16.716125,47.525826,0.0018133553 1429,421.01306,213.4651,40.35492,79.87636,0.0006504893 1429,623.5074,245.66405,15.639282,50.815964,0.00045449607 1429,486.3612,217.76051,33.029297,79.82924,0.00020071905 1429,611.7575,227.64128,27.38916,118.11162,0.00013637304 1429,616.18414,40.102448,22.962524,95.795685,0.00010557126 1429,612.9502,383.29724,26.196472,121.85861,9.135858e-05 1429,617.21606,177.72865,21.930603,85.75307,8.768367e-05 1429,601.3237,97.56331,37.47223,201.54976,8.681689e-05 1429,1.8760914,159.67377,18.190798,79.962234,8.003142e-05 1429,26.921667,173.03146,86.02675,168.7226,7.128136e-05 1429,603.7453,265.64206,35.401367,192.23373,6.417175e-05 1429,5.3223114,156.92152,57.472855,215.00749,4.740491e-05 1429,2.0678647,171.09943,29.140099,139.7287,3.6901736e-05 1429,0.7742049,255.58102,19.69776,81.78,1.554458e-05 1429,31.462084,153.38487,26.95204,56.20352,8.009308e-06 1429,1.0173486,386.7508,16.332165,111.52371,6.066997e-06 1429,476.89642,194.20776,70.78772,150.78067,4.8196453e-06 1429,1.1954118,353.45505,18.053238,72.75128,4.6232108e-06 1429,1.4826424,276.71152,33.710995,188.83194,3.3839103e-06 1429,568.7021,15.924864,70.44458,141.7329,2.7059177e-06 1429,3.79105,395.4968,57.472557,98.89331,1.4820279e-06 1429,463.42554,4.2271566,46.202087,50.3277,3.1752765e-07 1429,2.1208375,61.366386,29.306683,163.5206,1.7547153e-07 1429,404.17523,4.084922,42.921234,165.67348,3.8405002e-08 1429,409.33423,6.447712,91.999054,75.161545,2.8304035e-08 1429,382.24963,4.1967254,65.20871,52.842537,9.422975e-09 1429,343.8255,2.7201889,47.788086,65.31879,8.9436085e-09 1429,2.4210043,23.712637,55.32984,114.81237,6.4083587e-09 1429,1.9393653,14.004102,31.185402,68.28316,1.5920298e-09 1429,306.6217,1.3289421,46.982147,63.98831,9.526437e-12 1430,26.311922,201.06412,43.860817,80.40192,99.877266 1430,312.2032,213.24109,29.096313,61.759644,0.9455742 1430,10.1840725,197.69806,32.592987,75.07126,0.11563496 1430,251.37561,225.63829,22.588287,50.076035,0.05259529 1430,619.8657,197.35716,19.280945,61.6064,0.014224457 1430,367.77185,233.29651,31.127808,62.20221,0.010296428 1430,277.54697,217.32126,31.20993,67.57715,0.010038111 1430,265.24817,231.49657,24.406555,50.268723,0.004861151 1430,8.911485,165.64175,80.748146,162.28009,0.002051937 1430,622.6663,88.641624,16.480347,47.648705,0.0020473707 1430,199.30995,215.66104,32.498016,69.596375,0.00079578283 1430,2.3979475,140.30061,19.336647,138.59868,0.0006574281 1430,610.77167,210.37047,28.375,116.126816,0.00058350695 1430,589.0283,95.482086,48.57538,225.966,0.00033186356 1430,55.52664,360.15366,39.254913,121.824646,0.00024325987 1430,2.71924,190.4195,31.96134,187.42926,0.00013718399 1430,608.7794,443.22354,30.367249,62.512085,8.453737e-05 1430,616.36066,28.756596,22.78601,93.369064,6.12181e-05 1430,398.71512,222.9991,40.463654,131.82994,4.7049907e-05 1430,10.327805,148.05104,28.963303,65.90277,2.3284425e-05 1430,572.7506,370.1872,66.39606,125.27313,1.6171469e-05 1430,156.26413,203.12407,38.19748,86.7585,1.5087431e-05 1430,1.2223177,267.85953,17.912525,138.8244,1.1849897e-05 1430,1.1057984,438.04813,20.543007,63.79538,1.1633706e-05 1430,3.829074,338.69812,55.963753,139.86246,1.0930711e-05 1430,456.2326,5.1308756,45.758606,45.022045,2.898615e-07 1430,1.8940479,37.582535,34.91644,200.27515,8.715163e-08 1430,336.30548,3.578187,48.04828,60.928604,2.8304035e-08 1430,1.5895345,11.842911,30.67852,63.565475,2.5267632e-09 1430,430.4909,3.7326221,43.10321,55.721664,2.102237e-09 1430,376.87817,4.217282,42.889526,57.485924,1.1632886e-09 1430,306.2409,0.27738282,45.954346,62.543713,2.7393116e-11 1430,399.5559,1.9739747,44.681335,61.85105,1.6152248e-11 1431,587.0477,213.28941,42.533142,114.2462,99.949646 1431,5.35687,200.09726,41.7487,80.46213,99.84808 1431,611.87146,220.24207,27.275208,83.31946,44.65297 1431,1.4163013,202.05196,16.596764,70.90236,1.071818 1431,498.3759,89.91279,23.479828,49.05024,0.46483144 1431,599.4017,217.25754,22.93396,52.69507,0.14738895 1431,579.5114,216.62517,29.779663,70.449265,0.054850616 1431,623.63,273.62524,15.516663,45.921234,0.007286379 1431,562.5713,164.1074,75.53223,233.70293,0.007203859 1431,4.8183775,175.68925,55.502666,216.93254,0.0036584234 1431,622.47925,81.71499,16.66742,50.245216,0.0014792689 1431,24.974144,463.80704,41.920403,47.33963,0.0005974662 1431,85.89271,421.3337,52.84185,88.85037,0.0003355514 1431,609.2291,442.30032,29.917542,63.97809,4.2651664e-05 1431,1.4531877,84.16131,33.6105,212.1311,4.0157127e-05 1431,608.1508,8.758066,30.99585,128.18242,3.90889e-05 1431,610.98926,72.59989,28.15741,151.82928,2.9347215e-05 1431,602.94305,342.87262,36.203613,154.39246,2.1592647e-05 1431,66.38596,462.38678,36.637215,45.53235,1.3035347e-05 1431,63.38963,346.94202,117.879,164.20465,1.174262e-05 1431,1.0191553,296.86554,18.741255,134.0455,8.643359e-06 1431,157.0915,251.09802,73.21361,191.78397,7.5771018e-06 1431,19.577087,413.3384,82.65953,97.37656,6.9045855e-06 1431,1.144541,377.67197,18.180077,116.46481,2.527596e-06 1431,3.7075846,319.4934,58.06481,164.28546,2.2491713e-06 1431,1.590044,450.52005,28.614988,54.210327,1.7515696e-06 1431,330.05392,7.324085,44.914,52.618958,4.5570896e-08 1431,448.04184,6.1292953,43.75952,52.69947,4.3125585e-08 1431,1.1251961,19.464428,17.512089,123.37511,1.8579668e-08 1431,298.87384,1.5785254,47.725708,65.21994,2.8172706e-09 1431,363.50732,3.4089258,41.13501,58.56737,1.9691895e-09 1431,1.5990105,7.910656,27.174408,51.848537,1.4971262e-09 1431,423.55902,5.234401,42.66272,57.17349,1.1082195e-09 1431,386.83426,2.2360482,44.035614,60.653015,5.4267816e-11 1431,272.0921,1.9003581,45.22577,60.89006,1.1494534e-12 1432,570.4492,219.88188,43.861694,115.969955,99.94307 1432,0.38474286,206.52841,34.994812,78.325134,99.89537 1432,595.9028,226.87758,40.87323,103.39925,99.364716 1432,622.67474,226.11847,16.471924,73.54758,0.28622428 1432,0.5578394,205.47623,12.476253,47.522034,0.03952056 1432,414.20212,220.0118,23.093323,45.889328,0.004744334 1432,613.23114,197.7154,23.875732,62.33429,0.0045188554 1432,523.7648,158.55972,113.12909,242.31238,0.0029067912 1432,624.82837,189.65927,14.318298,45.592484,0.0012591939 1432,2.3351188,178.596,54.851494,224.07442,0.00044445237 1432,609.9914,81.543785,29.155273,171.73462,0.00030084152 1432,602.1284,245.87012,37.01825,235.19891,0.00026464343 1432,608.58234,5.713047,30.564331,127.622696,5.994164e-05 1432,609.4335,441.19513,29.713196,65.19055,4.7335245e-05 1432,1.2075773,141.61487,20.535099,107.5085,1.0185395e-05 1432,0.9133008,262.96036,19.409636,156.7413,7.025339e-06 1432,1.0568416,362.30823,18.44105,132.81714,3.622797e-06 1432,3.6343474,395.00354,57.365562,99.428345,1.0200205e-06 1432,1.3087875,38.048172,19.838444,147.48564,9.658756e-08 1432,315.77017,4.840114,48.62326,60.60812,4.830315e-08 1432,455.54367,3.549953,43.40103,54.512413,1.44058045e-08 1432,1.2306169,8.294105,17.417496,51.350113,4.1887316e-09 1432,356.31967,5.5201645,41.713318,52.613945,2.665477e-09 1432,430.35254,2.5454395,42.338623,62.10672,4.01588e-10 1432,375.4024,3.0318148,63.619537,53.420128,2.4139013e-10 1432,285.8118,0.29064128,45.74109,66.4915,7.986527e-11 1433,46.000412,217.44916,36.29863,79.95392,99.379715 1433,24.845192,217.67133,37.96074,75.83981,30.330744 1433,468.65262,229.60661,26.308228,59.377335,0.035501175 1433,388.47827,222.35852,22.768372,48.252472,0.007968091 1433,553.92773,222.32687,36.61133,70.55655,0.005099082 1433,415.31998,222.73329,23.831848,47.370712,0.0027041512 1433,622.81604,291.0022,16.330627,51.573853,0.0018229403 1433,495.7959,235.97412,24.55597,46.010864,0.0017586516 1433,613.458,210.76384,25.68866,126.655136,0.00036351223 1433,610.93726,108.06997,28.209412,167.05777,0.000348573 1433,608.5508,1.3608398,30.595886,132.05737,0.00029507672 1433,21.071342,199.63138,81.06077,141.46182,0.00019639544 1433,603.94196,318.47,35.204712,167.84357,8.0402075e-05 1433,609.6079,439.40195,29.538757,66.12088,5.864715e-05 1433,0.9792692,270.8013,18.550259,75.45053,5.687015e-05 1433,2.692514,146.76845,34.41435,169.86809,5.137492e-05 1433,1.2978077,218.61836,18.83418,79.70863,3.9543673e-05 1433,588.47424,144.61789,49.099243,224.76508,3.773629e-05 1433,1.8092139,90.59978,18.121138,148.61406,1.0529179e-05 1433,0.86587894,315.9918,18.994638,134.5556,6.8576646e-06 1433,0.8529028,391.03558,16.587614,107.486725,4.579933e-06 1433,3.3286426,291.227,57.136555,186.22754,2.9380922e-06 1433,344.68866,3.1609213,85.33197,81.739914,2.915254e-07 1433,536.0025,2.354411,43.667847,53.658623,1.9804422e-07 1433,392.28033,6.4574723,44.114807,48.51831,1.0196325e-08 1433,488.2222,4.747464,86.982635,85.20081,6.705841e-09 1433,426.0742,7.72641,79.67114,65.338875,2.7671254e-09 1433,500.34064,2.0559132,43.38153,49.80685,2.0202946e-09 1433,1.395105,12.329167,31.762945,69.798775,6.975815e-10 1433,475.54636,5.3185678,44.796234,55.102905,1.2500413e-10 1433,319.84262,0.0,67.26654,61.602337,6.0807657e-12 1434,57.54399,216.80542,39.84867,84.047485,99.94601 1434,38.71245,213.03656,33.597954,80.530945,81.3745 1434,482.57605,232.46011,25.87741,52.611237,0.026145441 1434,571.165,243.94586,27.714783,64.50467,0.010515546 1434,625.2595,356.91953,13.887146,46.85675,0.009208244 1434,457.76257,225.55203,35.576447,66.35077,0.0065923776 1434,434.98682,228.54225,24.728394,49.912888,0.0056502563 1434,557.9421,249.67436,25.156982,62.377518,0.005054909 1434,1.9698951,138.20282,34.73813,108.32443,0.0047322065 1434,588.13776,248.63243,21.26355,45.84822,0.004669002 1434,577.8786,211.66513,57.96753,115.318726,0.0018721585 1434,1.3087533,146.3806,16.247396,68.83211,0.0010493414 1434,598.12726,245.72308,25.41632,54.03769,0.00093966257 1434,617.8412,222.59694,21.305481,80.03868,0.00062798447 1434,542.74774,88.41312,24.02539,50.320496,0.0005252995 1434,29.96834,196.46712,86.64574,137.1038,0.00040796772 1434,612.4665,246.18146,26.680176,141.6467,0.00025901638 1434,541.95984,209.32657,58.183533,128.68433,0.00022653135 1434,3.6530876,132.54633,57.86355,206.98297,0.00021862984 1434,608.0688,0.45818362,31.07788,125.835754,0.00018579137 1434,611.42816,60.942516,27.718506,148.43782,0.0001439826 1434,613.9016,341.7199,25.245056,140.00095,0.00011990934 1434,1.4198332,198.47058,17.332691,135.22226,9.9853605e-05 1434,609.3697,440.95892,29.776978,65.632324,7.3911666e-05 1434,1.671788,233.55966,31.060806,176.33606,1.1114306e-05 1434,579.8372,2.8155828,52.648132,63.61187,6.405752e-06 1434,1.2363819,355.59613,17.926895,126.65909,5.7620914e-06 1434,1.83361,422.91736,33.321037,75.944275,3.613674e-06 1434,405.8558,3.4382715,49.519714,65.05651,4.9844374e-07 1434,1.5740967,39.75935,18.542042,149.85498,1.7526974e-08 1434,546.8811,4.527832,46.639038,58.258003,5.8509695e-09 1434,1.8327475,12.481595,32.65618,71.93096,1.0759769e-09 1434,377.29468,0.0,47.538696,59.93388,5.037657e-10 1434,352.57086,2.766312,47.460327,65.758995,1.0694346e-11 1435,29.031061,204.31134,46.21148,98.988434,99.911674 1435,9.620573,203.8494,38.058205,96.22562,99.566666 1435,527.45197,214.161,35.48639,80.74901,16.441963 1435,576.4285,234.82219,28.43457,63.572372,3.4306872 1435,2.4279175,204.77052,19.245941,92.46828,0.16597408 1435,553.9247,227.70758,35.506104,75.55853,0.028997112 1435,524.3269,102.12089,25.5401,46.16427,0.021874517 1435,413.67224,201.88193,31.700317,59.598755,0.019352697 1435,611.0316,47.092373,26.128052,65.2923,0.008520671 1435,5.67126,175.4778,95.37528,179.93245,0.007146132 1435,434.58472,211.13274,26.630249,50.42177,0.0060226913 1435,616.9474,248.75087,22.19928,91.17058,0.0031153036 1435,436.1554,142.86537,25.414185,67.154724,0.00088600325 1435,514.71106,198.01602,81.14606,144.10513,0.00053023 1435,610.4053,64.22178,28.741394,169.17853,0.0004856936 1435,602.21655,141.37679,36.642334,205.52296,0.00044761956 1435,192.57704,213.02809,31.449142,67.3943,0.00018138094 1435,587.77734,233.32738,50.59326,228.94817,9.605859e-05 1435,609.37604,437.96423,29.77063,67.48245,7.9426565e-05 1435,321.13693,216.40979,22.266235,48.88629,6.960902e-05 1435,611.8806,328.60916,27.266052,148.7735,6.452793e-05 1435,586.7,5.505612,52.32184,121.02607,4.638341e-05 1435,612.39044,0.0,26.756226,47.6293,3.6415477e-05 1435,3.854401,233.75238,57.946304,248.50027,1.7310846e-05 1435,1.0696615,386.53442,17.825083,112.21423,1.58796e-05 1435,1.4443661,290.27856,28.313004,160.57343,8.421584e-06 1435,1.4333326,83.385574,19.782963,166.78972,4.5180614e-06 1435,1.7680941,25.719637,35.60415,161.74594,1.7214752e-07 1435,401.9323,2.9457488,92.050995,86.253136,1.8984823e-08 1435,0.7646273,9.255765,30.055452,57.802868,7.9074125e-09 1435,130.33524,8.951527,48.43988,50.935524,3.2379002e-09 1435,374.14038,3.776276,45.29306,59.206017,1.6374355e-10 1435,161.12552,1.5812663,46.150757,65.58345,1.804493e-11 1436,331.12997,219.16235,23.996033,54.58658,0.09045234 1436,437.02704,220.31677,24.875793,54.686462,0.034082275 1436,613.78125,289.58075,25.338928,92.31833,0.014422878 1436,575.98785,218.98204,26.114807,51.59276,0.0109193055 1436,484.0108,44.202904,29.720947,75.89722,0.008979255 1436,595.1647,227.8331,41.44403,126.18359,0.0073117153 1436,616.99786,215.19962,22.148804,77.23837,0.002263297 1436,475.24112,128.44815,29.042114,71.57608,0.0020929934 1436,555.9438,219.51352,36.46173,74.243805,0.0017406812 1436,545.0583,122.29243,24.829712,56.294426,0.001302011 1436,527.8825,223.81183,32.789917,69.3161,0.00094743085 1436,3.2136898,152.79837,31.793787,82.16841,0.00093098806 1436,609.4946,66.42063,29.652039,149.44681,0.00078263594 1436,475.21173,68.116974,45.66388,166.89496,0.00061331573 1436,3.6693003,260.14386,82.60811,198.5976,0.00023944533 1436,1.4336003,326.8745,19.839909,139.112,0.00023410321 1436,585.0988,3.6704493,53.350403,128.95782,9.859084e-05 1436,522.17426,182.07693,83.47992,155.87991,8.608493e-05 1436,607.7166,437.77756,31.430054,68.50241,7.521894e-05 1436,4.1103354,105.170456,62.146072,260.62677,7.2303344e-05 1436,507.90625,204.99649,40.680054,109.305115,7.111244e-05 1436,1.9400586,195.24414,31.88732,216.30588,2.8489198e-05 1436,427.23996,229.40329,71.78021,197.29431,2.4267174e-05 1436,606.84326,0.0,32.303406,68.34036,2.2643491e-05 1436,0.9297128,415.47076,16.43852,83.683624,1.5452057e-05 1436,3.2000651,384.26562,54.824364,105.17731,1.0111357e-05 1436,566.6267,345.4252,70.83606,152.59616,7.3287274e-06 1436,449.59604,10.628867,117.63492,240.0499,1.930313e-06 1436,2.3139894,20.901022,57.999146,111.37751,4.4770547e-07 1436,1.4908204,26.825573,20.240845,132.22745,3.2344713e-07 1436,458.10632,0.0,47.452087,152.09909,2.6264286e-07 1436,469.2536,0.0,47.542725,55.26276,4.326152e-08 1436,1.5904281,12.698311,31.754444,57.15367,2.2246791e-08 1436,123.21764,7.2971272,44.647545,50.276443,1.305028e-08 1436,424.21927,0.0,73.14819,70.56296,1.6723645e-09 1436,381.25067,6.4294744,44.82849,54.197166,4.811424e-10 1436,155.51117,0.70124024,48.590744,64.90509,2.5627358e-11 1437,512.5485,214.84807,26.712402,73.90492,33.156002 1437,610.8897,213.24406,28.256958,150.31578,0.010938356 1437,622.1765,56.0645,16.970154,45.858383,0.003795572 1437,1.6008545,191.63922,19.07335,77.25104,0.0010410573 1437,522.5204,72.181175,38.683105,96.74232,0.00054296496 1437,3.869992,82.99676,49.260994,220.99582,0.00048761227 1437,608.8399,4.588594,30.306763,118.19736,0.00038996513 1437,529.52527,154.83763,28.302856,60.88138,0.00026444867 1437,623.9852,204.54878,15.161438,47.310547,0.00025204386 1437,587.9678,86.44896,50.070496,237.69978,0.00018242352 1437,1.2959131,96.07618,13.646765,59.563377,0.00012956168 1437,484.43573,153.77805,94.052124,222.15259,8.6596614e-05 1437,1.4334376,118.35793,19.786734,106.430244,5.459175e-05 1437,612.49304,370.29144,26.653625,133.16647,5.1250372e-05 1437,615.6376,148.1943,23.509094,111.11957,2.877333e-05 1437,1.0565649,222.31946,17.23507,137.4701,1.7415e-05 1437,20.740673,112.23995,21.698978,50.942543,1.6913002e-05 1437,1.0320777,379.453,19.081057,120.39722,7.5662138e-06 1437,590.18774,450.81418,41.101746,58.386505,4.34279e-06 1437,3.842614,338.38318,58.362434,152.4898,4.331606e-06 1437,504.6921,26.913628,75.6597,198.98465,2.5422655e-06 1437,0.9075057,292.9509,19.20876,141.99197,2.140843e-06 1437,554.46265,396.41565,83.04639,102.93463,2.045684e-06 1437,1.670284,40.869255,19.09997,78.59481,3.067843e-07 1437,137.30829,10.300638,45.97554,49.01529,9.564107e-08 1437,501.542,8.018513,83.703125,79.91437,4.6255526e-08 1437,1.8412403,9.593438,35.773304,83.879745,9.737124e-09 1437,409.54483,0.883737,50.452515,57.605473,1.3989528e-09 1437,492.48438,2.2901955,46.836365,52.08586,3.4533645e-10 1437,164.73543,1.4692204,50.106827,50.583088,1.0880742e-10 1437,378.33536,2.5529363,47.20749,58.118015,6.1480945e-11 1437,468.29803,2.9804037,45.385925,67.1058,4.0078278e-11 1437,440.59177,0.0,47.193665,68.366745,3.5581948e-12 1438,581.31134,215.83356,32.53363,76.65808,99.646904 1438,32.659004,208.26448,23.85109,54.193436,0.068277776 1438,45.898987,209.72672,23.919907,54.51935,0.006011342 1438,57.52202,208.40488,32.252647,66.351166,0.0021859398 1438,563.1486,199.77962,67.42493,142.36955,0.0007377544 1438,4.853192,159.75519,56.810455,206.99524,0.00055871235 1438,75.06005,212.48035,33.477875,62.896423,0.00054742495 1438,523.4724,211.94998,37.385864,84.95755,0.0004320032 1438,584.1274,231.27902,53.509644,245.7251,0.00036625986 1438,400.22803,230.82259,58.84793,162.14668,0.00034014648 1438,1.7739421,184.48857,19.139544,133.26842,0.00030830514 1438,171.97202,211.26593,33.377792,67.98163,0.00025044807 1438,617.28125,76.36482,21.865417,79.92917,0.0001931556 1438,613.3827,224.29433,25.763977,119.42061,0.00018054325 1438,612.03784,370.919,27.108826,129.55298,0.000120220444 1438,599.88715,107.02799,37.93164,190.76184,7.5771735e-05 1438,1.3872697,84.889725,19.07785,159.53549,4.384555e-05 1438,616.97296,316.74646,22.173706,87.876526,3.8138573e-05 1438,563.27985,53.883034,27.738586,64.11871,3.265592e-05 1438,1.3218181,278.88928,17.776571,136.32089,2.0754202e-05 1438,584.2125,14.943412,54.61017,113.42631,1.5007343e-05 1438,608.1761,5.6067076,30.970581,54.468376,1.47754645e-05 1438,0.80167484,376.35068,19.34085,123.35507,1.22762e-05 1438,2.848457,324.11618,57.84359,163.95795,6.896662e-06 1438,1.6585563,455.51376,28.54373,48.861603,3.4367276e-06 1438,4.544938,430.80267,78.80445,70.11963,1.6444119e-06 1438,530.07947,6.6451435,105.7157,241.60477,1.4349e-06 1438,529.3027,1.2420118,86.56799,88.0235,8.7570083e-07 1438,26.136284,59.637768,82.27182,228.93721,6.371509e-07 1438,1.4397804,21.73976,19.916607,111.44989,5.1486666e-07 1438,3.9840462,27.479746,61.706047,208.65463,1.8676745e-07 1438,577.396,5.6270165,44.385925,51.06798,1.5214815e-07 1438,549.1746,0.0,42.063232,52.77336,8.175186e-08 1438,2.1646175,11.644916,52.30542,74.84394,4.0287116e-08 1438,0.9316602,2.5644238,20.472061,47.261692,3.0680404e-08 1438,137.74171,5.1215887,42.533386,52.07698,4.982142e-09 1438,408.64508,3.3817742,45.846436,58.690296,2.2271573e-09 1438,515.8557,0.0,49.40918,66.74043,2.9711378e-10 1438,486.58267,1.839336,48.463654,68.763954,1.8508767e-10 1438,381.03894,3.981094,45.026154,58.385757,1.3068577e-10 1438,163.44055,1.4258431,47.377502,57.064934,1.2540485e-10 1438,434.16492,1.9672949,48.63092,62.07407,5.7611537e-11 1439,594.96155,239.12584,38.613464,85.186874,0.023293745 1439,622.3467,231.10149,16.799988,53.12761,0.013822441 1439,620.3657,49.334538,18.780945,64.07176,0.0059842654 1439,589.1104,57.42254,28.244202,60.85537,0.002218758 1439,413.53152,71.03205,24.502502,53.31494,0.0022150835 1439,585.02106,81.26496,51.87964,250.37674,0.0008124059 1439,571.8198,84.25624,27.07129,54.935425,0.0007008789 1439,570.22577,73.37823,43.61017,134.28583,0.00064858084 1439,621.15356,91.65003,17.993103,57.628532,0.0005590636 1439,460.83542,238.52156,26.886719,49.452835,0.00041048488 1439,616.159,166.43913,22.98767,100.31807,0.00037133074 1439,1.4891976,191.22964,18.703278,73.733826,0.00033061326 1439,610.8048,56.058002,28.341858,180.89626,0.00033048276 1439,3.9871826,80.59787,59.86925,210.20782,0.00027691998 1439,155.32616,140.54286,35.851135,90.63524,0.00025642785 1439,612.0857,278.31223,27.060974,135.05057,0.00013807666 1439,580.9302,5.2084374,57.780823,127.41733,0.000111863345 1439,461.0501,110.29354,29.892609,59.5353,0.00010249476 1439,444.09818,277.60995,74.328766,207.2009,9.420019e-05 1439,1.4867994,129.50336,19.875278,100.49762,8.5504835e-05 1439,608.8995,435.443,30.247192,69.67941,7.660293e-05 1439,542.6139,72.07211,42.07672,164.8249,7.408598e-05 1439,1.1252536,219.8661,17.139864,133.95418,6.910994e-05 1439,603.7019,342.65585,35.444763,146.43134,5.2360476e-05 1439,2.353952,167.28552,35.299717,167.93011,3.863037e-05 1439,442.56094,226.94246,44.58203,134.07405,3.3772696e-05 1439,17.196722,322.99356,91.559204,170.89322,2.6455058e-05 1439,2.1685221,22.034538,58.169598,130.7345,1.7565922e-05 1439,4.7756867,220.88193,57.953285,225.14703,1.7239478e-05 1439,1.1307886,417.80548,17.669401,84.11069,1.550996e-05 1439,3.2164373,381.75476,58.69869,117.94327,7.3204005e-06 1439,1.9606869,280.61288,27.347038,150.70062,6.639061e-06 1439,585.2302,1.4644141,49.369873,48.060616,5.772696e-06 1439,122.95675,7.0857944,45.940544,53.29544,1.0622018e-07 1439,558.1301,3.336937,51.717896,64.376175,9.0805734e-08 1439,96.29536,9.478575,41.571785,46.624496,6.070117e-08 1439,507.77893,10.029057,45.65863,149.4329,5.1717247e-08 1439,5.0996275,8.187951,44.74718,48.168697,4.9275013e-08 1439,1.3809204,11.066605,17.217247,80.63431,4.1427455e-08 1439,514.8728,2.6075423,50.21234,66.28951,1.2715066e-08 1439,415.6354,3.2488086,46.63919,60.098087,1.2575371e-08 1439,385.84088,3.4811296,47.012268,60.967632,1.512447e-09 1439,489.65094,4.1151204,46.962097,58.68731,5.4349264e-10 1439,440.78815,4.505781,46.918,52.572525,5.3570376e-10 1439,363.76608,4.655355,40.828705,56.5768,2.914727e-10 1439,148.94177,3.237038,44.7325,56.731102,2.7161196e-10 1440,586.2261,116.54822,32.671753,93.401535,0.036623444 1440,571.97534,72.8942,60.64563,176.49536,0.030439556 1440,569.85785,92.73715,26.733704,81.03339,0.029864244 1440,607.26556,66.26455,30.482666,72.435356,0.01002706 1440,537.0771,282.1016,26.292358,56.261505,0.0054983622 1440,552.6315,217.95639,26.787476,66.381775,0.0036143141 1440,588.99036,56.605705,35.22284,110.70638,0.0036123362 1440,485.01242,223.93527,57.85739,164.0322,0.0024294306 1440,624.7482,38.850494,14.3984375,45.254913,0.0022847925 1440,427.25146,63.934814,24.296936,54.021103,0.0010682145 1440,1.297601,214.05568,18.480465,68.499985,0.00071572757 1440,542.1493,238.15495,43.334595,113.292435,0.0006128433 1440,601.3264,220.38303,36.617004,196.17963,0.0004882991 1440,623.5743,90.96832,15.572388,45.02681,0.0004425347 1440,610.3881,139.28038,28.668884,135.92815,0.00042849092 1440,615.3568,311.07452,23.789856,87.90799,0.00027580277 1440,601.8334,0.0,37.313293,80.36706,0.00021669564 1440,607.3521,439.59647,31.794556,69.8634,0.00016527485 1440,615.01373,93.1271,24.132935,98.389565,0.00013711612 1440,2.1411588,133.43394,30.809994,165.68639,0.000103020626 1440,461.8859,304.3545,88.91104,184.74646,7.57661e-05 1440,332.44656,302.56342,25.542938,48.708313,5.7974226e-05 1440,1.1668205,239.07715,17.298798,136.78894,4.0246458e-05 1440,4.125057,58.01862,79.681305,247.26028,3.6498925e-05 1440,534.54834,419.98126,74.927795,91.165405,3.299879e-05 1440,1.5658048,49.98627,21.045979,100.78403,2.7531794e-05 1440,567.87994,334.0607,70.01642,160.7475,2.7418704e-05 1440,4.0652947,215.89249,59.15322,229.91116,2.6541838e-05 1440,1.4031967,11.663542,58.41326,142.19524,1.7342838e-05 1440,0.93075526,313.76007,19.460596,139.85461,1.6393582e-05 1440,546.5297,7.5060744,62.90143,208.43169,3.5365138e-06 1440,0.9133374,423.14862,16.184282,77.91528,2.7030085e-06 1440,5.289932,353.36847,79.80024,132.95502,1.5593496e-06 1440,96.94921,10.496478,42.181908,45.913055,3.6263626e-07 1440,529.5852,5.7715335,51.666687,58.95126,1.4334222e-07 1440,1.0551839,3.4573536,46.29087,50.999916,7.9092565e-08 1440,68.270966,10.58344,42.315224,45.17405,6.435775e-08 1440,133.95822,7.6537924,49.587967,55.394073,3.0045815e-08 1440,38.611057,9.071815,43.808094,46.569443,2.7863093e-08 1440,571.0111,3.763633,47.324463,65.75638,2.0775998e-08 1440,384.51822,3.1061947,68.69589,56.430096,1.209361e-09 1440,503.40897,3.1043522,47.086456,58.26182,4.1192535e-10 1440,435.5354,4.144037,46.762787,57.61744,2.8120567e-10 1440,163.66576,3.5909214,45.465942,56.807533,2.3811236e-10 1440,468.25122,4.6524253,46.13086,55.93634,1.3151995e-10 1441,614.5428,225.35696,24.029846,48.088837,0.044762615 1441,588.01434,223.68066,32.397644,67.68918,0.037280597 1441,10.671381,216.00699,27.068521,57.429413,0.025129601 1441,80.00664,211.86433,25.01561,50.159134,0.015767617 1441,474.9012,55.027187,33.073334,63.67394,0.014400836 1441,67.68319,218.33539,24.43274,49.50345,0.0077301855 1441,1.0009558,227.4673,13.815207,50.96376,0.0041024615 1441,23.914343,199.81686,36.507317,70.977844,0.00392281 1441,46.11597,213.73546,23.849064,47.232803,0.0020533386 1441,406.89203,388.04587,28.140808,60.282684,0.001559423 1441,603.24554,194.62798,34.94513,132.44194,0.0010256262 1441,621.99493,434.3891,17.151733,55.80075,0.00060460233 1441,1.6216586,182.99889,19.524237,123.8954,0.00044055306 1441,621.58936,301.61053,17.557312,56.08957,0.00042818414 1441,616.5779,464.61063,22.568787,46.53604,0.0003662256 1441,621.18616,68.47366,17.96051,55.759415,0.00028514088 1441,106.29211,218.35622,24.779823,46.89708,0.00028424436 1441,587.164,229.13719,50.98633,236.72859,0.00028197267 1441,614.60046,11.4332,24.546204,82.67786,0.00021054762 1441,609.26263,89.87482,29.884033,183.30322,0.00014512101 1441,612.1671,369.70966,26.979553,133.5462,9.15035e-05 1441,4.247142,165.36862,58.06787,202.2232,7.927363e-05 1441,0.9889242,255.02147,17.969673,134.58061,3.3212527e-05 1441,1.2585303,325.8015,28.07177,148.88126,1.42378285e-05 1441,567.77795,16.078686,69.342224,139.09358,1.2686064e-05 1441,1.3528157,107.18475,21.63628,129.82921,1.0547188e-05 1441,0.890048,421.75052,16.61148,80.32938,5.5293135e-06 1441,5.262448,350.11548,78.80231,139.07458,4.0182326e-06 1441,585.97186,5.285394,43.23059,55.993145,8.575226e-07 1441,3.1894662,429.2892,53.012745,69.959076,8.506838e-07 1441,3.610381,13.637116,59.167873,123.11856,5.4643505e-07 1441,1.4309684,27.784878,19.157824,129.49303,4.518559e-07 1441,178.65962,9.928947,42.225204,47.8191,2.2179012e-07 1441,149.74527,10.332745,42.890335,45.82093,1.4417577e-07 1441,122.41767,8.549576,43.46308,49.267925,9.374362e-08 1441,12.425573,3.6181316,46.441887,55.622383,1.2044148e-08 1441,36.515724,5.079616,45.903137,61.468235,9.6032196e-09 1441,203.16219,6.629053,44.905136,54.81938,8.75842e-09 1441,535.5088,5.449922,64.82892,48.930183,3.4398157e-10 1441,435.85443,5.4989257,44.669067,56.545803,1.5420941e-10 1441,460.5172,6.7593327,46.996918,53.102684,3.3410608e-11 1441,491.25854,6.212012,43.49469,53.163296,2.864932e-11 1441,237.22566,0.0,47.52449,58.675667,7.790177e-14 1442,584.9133,235.77545,26.045288,57.375916,0.3468035 1442,615.72595,225.04092,23.420715,47.753174,0.095823705 1442,543.8985,228.66818,34.8797,67.66553,0.010578163 1442,14.932292,204.84654,34.175682,73.76259,0.009595059 1442,620.0061,44.92473,19.140564,60.140213,0.009427544 1442,476.1062,219.99667,33.94693,68.526886,0.0038517285 1442,625.30756,206.84843,13.839111,45.72725,0.0037058126 1442,523.86176,230.39928,22.91034,49.19026,0.00089129136 1442,612.24335,145.08484,26.90332,145.23755,0.0007418705 1442,1.5304093,171.74416,18.980549,91.35838,0.00065180083 1442,3.518011,115.42792,46.361847,193.06863,0.0003192737 1442,606.772,0.0,32.374695,129.21822,0.0002547543 1442,452.11063,60.81784,32.49182,61.470924,0.00019052878 1442,618.1342,251.95084,21.012451,85.50427,0.0001848677 1442,618.0738,390.24008,21.072876,78.483795,0.00014880633 1442,563.77484,211.41275,71.96417,146.53741,9.5293515e-05 1442,612.28534,301.14276,26.861328,144.29819,4.5593028e-05 1442,2.1239455,210.37575,27.462852,144.74434,4.1715255e-05 1442,0.7360059,328.1644,18.761501,84.4996,4.1015595e-05 1442,489.76678,64.44276,23.798767,58.73433,3.6404053e-05 1442,609.38574,441.0733,29.760925,65.02936,3.371638e-05 1442,3.125267,239.2405,58.91004,227.57341,1.9430574e-05 1442,169.87654,154.73141,27.057999,53.694473,1.8223142e-05 1442,1.3902596,106.38172,18.762707,88.40803,1.8170318e-05 1442,1.5375636,65.658165,18.142933,78.74821,1.1666704e-05 1442,572.48334,355.20178,66.66333,137.53207,8.968629e-06 1442,1.1170329,363.12064,27.946074,130.79105,3.5901642e-06 1442,1.1724691,442.56924,21.644772,60.76175,1.8954448e-06 1442,385.4271,425.16757,71.327545,74.65509,7.50816e-07 1442,1.0255795,45.97601,13.624126,46.745266,6.0779973e-07 1442,3.3546746,430.37198,53.166187,69.35324,5.557424e-07 1442,140.87294,427.55008,78.722946,72.54651,4.3970223e-07 1442,188.20203,428.6682,72.648254,71.65997,3.3787103e-07 1442,586.50525,2.3955324,43.061768,53.19249,2.2971034e-07 1442,533.87946,2.9442708,43.440308,131.92546,1.4989793e-07 1442,149.91313,7.809699,42.902832,45.440887,9.684804e-08 1442,2.9931056,20.859467,57.26191,122.69522,3.169599e-08 1442,1.2441895,10.102571,19.828775,55.75666,3.808664e-09 1442,414.61166,6.8529086,44.86209,53.18569,6.8325196e-10 1442,455.94656,9.322657,40.791992,50.70745,3.3882822e-10 1442,557.44727,3.3616602,43.602295,46.74931,3.0530234e-10 1442,487.6732,4.590464,44.249054,48.584427,2.6477007e-10 1442,203.74236,0.0,50.53163,67.23701,1.4304961e-12 1443,562.76154,226.79439,26.403442,51.628647,0.123492666 1443,607.9101,202.42531,30.623047,78.86357,0.035115357 1443,578.6414,231.50652,23.128418,50.0728,0.016979678 1443,588.8065,221.34857,34.892456,64.28845,0.006860267 1443,617.7092,252.77513,21.437439,83.50792,0.0027369603 1443,1.4946265,206.17824,19.985676,81.40578,0.002474817 1443,624.7818,220.27077,14.364868,49.710526,0.0023229928 1443,546.3882,227.64511,25.322327,52.42621,0.0018205617 1443,1.9988054,182.4481,34.790874,166.03038,0.0010109395 1443,543.3671,220.81729,39.75531,115.737366,0.0007371116 1443,584.2723,142.37093,52.665222,215.66875,0.00065821863 1443,1.5353321,104.39249,18.17566,70.8253,0.00014998144 1443,617.91376,403.47433,21.23291,78.41275,0.00013600627 1443,609.2239,0.0,29.92279,91.61238,0.000117548596 1443,0.8774886,62.04079,14.026003,56.295788,9.366468e-05 1443,604.09204,246.41016,35.054626,189.87875,4.1880114e-05 1443,610.9612,58.964573,28.185486,170.78429,2.8258328e-05 1443,1.2489885,144.73917,18.941519,87.90454,2.5473288e-05 1443,0.9952767,256.28006,14.750662,59.92569,1.9205081e-05 1443,0.8412891,290.83786,19.300842,82.50058,1.7990442e-05 1443,442.77893,49.97571,23.978424,59.47601,1.7682769e-05 1443,447.67715,228.366,76.50278,184.51639,1.4684674e-05 1443,585.7371,387.0836,53.409546,107.54971,1.43750985e-05 1443,5.108991,198.02582,77.81953,257.77798,1.166013e-05 1443,4.014229,68.89617,56.760864,240.83148,1.0485869e-05 1443,1.292033,443.53656,21.129873,59.031006,7.984703e-06 1443,568.7273,9.1488085,70.41937,140.51874,6.5900094e-06 1443,0.88430095,324.6929,19.480703,140.49701,5.584555e-06 1443,2.1454964,62.184097,28.757303,152.03221,2.6659081e-06 1443,3.8743556,398.87363,57.716038,96.59253,2.4512697e-06 1443,325.1697,428.7763,70.65115,70.454346,2.1222957e-06 1443,3.0503287,23.433445,55.896927,113.36551,4.9716095e-07 1443,364.53622,431.47748,73.36539,69.197266,4.6818292e-07 1443,580.24414,2.661709,46.17267,60.52626,4.1357584e-08 1443,1.4237134,15.526921,25.026936,75.867516,3.5807368e-08 1443,88.06897,5.6605062,43.530914,56.412586,1.5761502e-08 1443,340.41583,4.333923,64.49481,51.118557,3.006317e-09 1443,386.51785,7.117692,45.571136,55.984043,8.6742263e-10 1443,483.94928,7.5031447,83.435425,75.61262,8.045317e-10 1443,433.36957,5.375036,63.781708,55.532925,1.7739646e-10 1443,479.35236,3.7536297,46.224365,48.49727,1.0136552e-10 1443,553.11084,4.7144823,42.245422,48.65496,5.2927454e-11 1443,152.74524,0.0,46.216843,64.04709,5.9652167e-14 1444,523.20746,226.9575,24.219788,51.301773,0.027394513 1444,580.83826,206.94414,54.52368,152.80019,0.018620605 1444,614.34045,113.83133,24.806213,111.7679,0.0049417363 1444,623.3728,117.822556,15.773865,48.44568,0.0026291187 1444,619.4275,237.35626,19.719177,69.30441,0.0021545927 1444,10.6719675,272.26273,27.737854,60.012604,0.0011869008 1444,94.17022,233.82521,59.396614,120.8065,0.00045621142 1444,474.76923,212.62611,71.9198,158.92769,0.00042372345 1444,4.8551416,230.38365,54.9166,127.17345,0.00030456713 1444,535.82764,231.29535,25.667236,48.23358,0.00026897198 1444,1.4033228,208.50877,19.0915,128.53285,0.00015578014 1444,27.650412,270.79526,28.429045,62.59662,0.00012669383 1444,0.9585128,214.14432,13.14241,46.818146,7.860505e-05 1444,609.2436,263.0374,29.903076,159.63083,6.998337e-05 1444,1.2787834,130.48013,18.799742,80.65929,6.782218e-05 1444,2.2148519,116.14217,32.741375,203.1131,6.459171e-05 1444,607.421,430.59378,31.725647,80.55289,5.489696e-05 1444,1.4502287,75.182304,18.569286,79.13134,5.1575455e-05 1444,552.4003,413.65714,85.57587,88.83688,4.497869e-05 1444,40.529163,144.47218,23.99178,53.10103,2.8603048e-05 1444,585.9182,21.91625,53.055603,233.48679,1.4220107e-05 1444,1.5573967,261.4776,27.525625,156.12851,1.0454516e-05 1444,0.90728843,359.0053,19.231543,139.49362,6.261638e-06 1444,3.0921257,306.003,57.195957,179.47363,3.62653e-06 1444,435.3782,31.415583,24.620148,65.90563,1.416723e-06 1444,2.724956,434.90808,45.72753,66.95422,1.4139129e-06 1444,4.818366,25.799904,79.65705,153.68384,6.9326643e-07 1444,588.29535,2.497692,38.921936,58.991756,5.259968e-07 1444,515.7051,5.16696,64.34387,55.14955,1.117765e-07 1444,1.297574,15.292201,13.810496,79.94741,6.678911e-08 1444,467.78574,7.45946,45.576935,53.219315,4.9776705e-08 1444,2.3540788,11.7511425,52.757854,71.05136,1.2900331e-08 1444,417.85556,4.881976,67.658356,56.437294,6.22253e-09 1444,493.17554,3.373786,44.97705,46.297386,2.3672722e-09 1444,73.550095,4.240534,46.060127,59.01197,9.636977e-10 1444,26.89211,6.170951,43.522064,50.276314,5.7749094e-10 1444,48.79161,3.0108936,47.229607,50.231712,1.2324322e-10 1444,380.2994,7.040425,41.670563,50.46041,1.0841381e-10 1444,331.68503,5.78334,46.317535,52.60849,9.026441e-11 1444,104.10883,0.39361003,67.92768,58.987797,6.119638e-12 1445,435.69797,216.01375,24.106323,50.451767,9.201222 1445,405.35638,236.5319,26.902496,49.26973,0.103842676 1445,497.71518,232.6136,23.2659,47.53392,0.016951755 1445,615.51624,233.09915,23.503052,77.492645,0.0014787174 1445,601.04553,157.49838,36.52124,186.68347,0.0013218941 1445,280.49722,275.4082,24.594025,55.942627,0.00033256566 1445,613.33875,9.393812,25.807922,83.55116,0.00025192753 1445,418.0444,182.30954,57.873535,115.57901,0.00022573816 1445,616.8082,104.03457,22.33844,85.38566,0.00011829319 1445,616.6598,307.47784,22.486877,84.00229,0.00010470186 1445,602.6882,299.4462,36.458496,189.58554,8.731892e-05 1445,1.7214608,178.3363,20.59668,102.79599,8.1498925e-05 1445,609.2421,440.53168,29.904541,65.084076,5.2678723e-05 1445,1.6932577,200.93813,33.70446,167.77031,3.836035e-05 1445,575.0909,5.2176547,64.055786,51.506226,3.238319e-05 1445,0.722946,268.29333,19.31739,87.51788,1.9218822e-05 1445,2.8439128,244.5387,58.24791,227.11417,1.8501501e-05 1445,78.37857,60.61551,48.98581,176.78044,1.3548504e-05 1445,4.871418,90.22511,59.020744,231.1941,1.2811938e-05 1445,391.7626,139.74844,133.78073,219.30551,1.0363448e-05 1445,333.77737,115.399025,38.829895,86.45501,7.904815e-06 1445,0.86877036,320.12988,19.866344,140.50034,5.918796e-06 1445,600.7482,0.0,38.398438,238.39772,3.1917575e-06 1445,0.9283594,422.04922,15.314343,80.326935,2.5893928e-06 1445,1.5753671,69.064865,19.347046,146.93771,1.7665873e-06 1445,297.54483,430.38776,69.59274,68.60318,8.2347213e-07 1445,484.03354,20.618568,80.89462,177.7568,7.9624505e-07 1445,3.7346745,395.80646,57.261536,100.59689,7.621656e-07 1445,45.11059,61.620823,125.33403,239.2474,4.1586125e-07 1445,26.533903,430.87738,76.563835,70.46921,3.0798856e-07 1445,5.061914,31.912638,80.27096,147.12653,2.142051e-07 1445,521.9912,4.5773697,45.931763,57.510666,1.8223231e-07 1445,1.2581682,16.836185,14.096051,76.752304,3.948544e-08 1445,2.482806,15.261023,51.007786,68.14524,1.7695397e-08 1445,551.33246,4.574261,47.35437,58.1337,1.14447225e-08 1445,387.4645,8.514447,41.448975,52.08937,9.070425e-09 1445,482.51007,6.513408,47.736145,55.593678,6.9342176e-09 1445,48.354813,9.338721,43.42285,47.132736,1.8385204e-09 1445,73.025604,5.6622705,45.98893,54.741795,1.2811829e-09 1445,343.2821,6.0287337,45.360107,56.12269,9.31429e-10 1445,457.95526,5.611657,43.56836,52.70849,1.11824945e-10 1445,437.32272,5.8354216,38.75647,48.139545,1.0483439e-11 1445,108.846535,0.0,46.576363,66.8352,1.1677862e-12 1445,133.61555,0.0,43.927017,57.71167,1.4981286e-13 1446,514.85706,227.90373,24.830383,54.256454,0.0063838996 1446,399.66156,232.40334,23.924652,50.553146,0.0016845387 1446,586.2901,112.960175,50.86493,254.21387,0.0012722166 1446,618.0131,280.02762,21.133545,81.132385,0.00074015185 1446,298.01428,299.012,44.135986,121.708435,0.0005466158 1446,1.2538892,219.65912,13.420086,47.977448,0.00035544587 1446,612.2702,197.72647,26.876465,139.03494,0.00031550357 1446,135.14078,194.3933,22.344315,46.679153,0.00030239884 1446,299.3748,197.10236,78.567535,174.46255,0.00028037291 1446,493.18558,103.808075,33.334686,72.8739,0.0002065269 1446,344.6875,215.32626,23.605804,46.122192,0.00020520813 1446,592.79114,15.648815,45.83844,99.715225,0.00020047839 1446,621.37384,195.80243,17.772827,56.69255,0.00017208184 1446,534.12787,289.00262,33.122375,63.892365,0.0001407621 1446,4.4493947,131.6101,58.315334,225.74033,0.00014001798 1446,2.2126741,165.77628,29.507572,144.75989,0.00010856737 1446,517.1765,242.30157,34.49756,78.42261,0.00010848849 1446,1.3035254,116.96193,14.090334,56.032394,0.00010609104 1446,603.25006,305.95523,35.671753,178.32999,4.3972683e-05 1446,609.5014,436.02252,29.645264,68.05542,4.2786105e-05 1446,1.0840617,232.26573,18.217842,151.46489,3.998699e-05 1446,618.40686,347.2117,20.739807,82.98105,3.7615133e-05 1446,537.0071,256.1378,25.102905,52.164246,3.7461123e-05 1446,551.49493,58.670536,38.89624,92.89517,3.5252e-05 1446,1.2008541,166.277,13.366839,60.070663,2.6121126e-05 1446,1.8324927,77.73867,19.63252,155.38004,2.4103641e-05 1446,610.61035,45.188274,28.536316,163.74416,2.3366063e-05 1446,3.0421143,260.58514,57.56934,218.46246,1.921622e-05 1446,1.0058944,365.9586,20.564432,105.67798,1.6073574e-05 1446,476.41058,128.81047,26.915222,64.60803,1.2957659e-05 1446,183.48805,198.04434,21.952377,46.59314,1.1401882e-05 1446,511.86667,292.27875,75.64035,176.94373,9.781588e-06 1446,585.875,27.910984,28.0318,63.220463,6.784703e-06 1446,1.0223731,441.69757,21.468203,61.951508,5.2326327e-06 1446,25.666111,130.2013,37.341743,87.029526,1.5681217e-06 1446,555.45886,2.9766603,83.687805,215.48206,1.3333222e-06 1446,20.396769,394.93042,123.83901,103.817444,8.4104084e-07 1446,4.527383,433.2349,67.2841,67.620636,8.22229e-07 1446,140.25735,429.92603,74.11369,71.72638,6.8780054e-07 1446,99.82812,429.85333,72.03843,70.90286,3.2945812e-07 1446,4.325941,26.10349,82.415985,155.77629,2.4442002e-07 1446,1.6934897,18.625423,28.713036,124.31401,1.1207837e-07 1446,413.43164,10.69599,44.868317,115.64779,1.0546213e-07 1446,40.07264,7.3606644,91.16473,244.29492,1.03180554e-07 1446,552.66174,4.2124643,63.36792,55.825813,2.8561958e-08 1446,421.15912,4.800734,46.12085,48.028667,8.789228e-09 1446,56.897873,7.00708,44.634125,49.37409,4.9783995e-09 1446,12.896913,8.41404,40.398968,49.018677,4.5944497e-09 1446,387.99075,4.973789,45.592804,56.7494,2.1726376e-09 1446,360.9178,2.56111,47.111816,46.25722,3.6078812e-10 1446,93.47801,2.0034928,43.386566,58.057888,8.825117e-11 1447,484.34906,222.45076,25.329803,59.342667,84.63962 1447,504.40356,219.06436,24.688599,53.777985,61.833305 1447,23.034578,197.64165,26.530409,47.853195,0.02949138 1447,544.6878,244.65802,33.222473,64.523346,0.01696469 1447,612.16815,86.17492,26.978516,115.124245,0.014953638 1447,581.38495,77.30379,28.702026,59.13849,0.004357351 1447,312.48544,336.18106,34.785217,89.892914,0.002161986 1447,535.13586,327.02344,50.429382,148.05762,0.002031539 1447,470.63687,180.49687,63.304108,174.56755,0.0015771489 1447,619.8158,409.19986,19.330872,67.03671,0.0014120126 1447,595.963,391.36932,42.770264,111.51141,0.0013165949 1447,587.992,257.2518,49.38806,216.15622,0.0012768988 1447,166.4977,175.21613,34.904892,82.53989,0.0007672382 1447,495.68845,247.44014,136.37991,233.6634,0.00036266458 1447,1.390455,198.04063,18.28264,75.36842,0.00035624538 1447,4.13638,89.01623,57.17098,225.68582,0.0003491299 1447,584.7966,89.56625,52.82611,248.73929,0.00033172528 1447,610.58325,218.41904,28.563416,142.67389,0.0003118296 1447,304.7285,331.2805,69.798096,153.75839,0.00015521029 1447,622.1856,203.37,16.96106,52.41452,0.00014570233 1447,1.7257073,89.07713,18.856213,165.05861,0.00011647488 1447,365.16403,215.07314,24.124023,45.23195,0.00010447235 1447,616.5125,31.410587,22.634155,87.41237,9.034073e-05 1447,1.1076798,332.73285,19.171387,139.35971,4.051255e-05 1447,0.7948633,219.6617,17.505386,155.26817,3.518654e-05 1447,2.801517,266.60995,57.20461,214.8299,1.4953555e-05 1447,585.5878,9.115677,53.23987,134.40637,9.967096e-06 1447,2.58945,22.952446,56.503258,115.68682,8.473014e-06 1447,1.7995133,421.9614,33.41153,75.95154,6.9847083e-06 1447,0.9759937,17.22156,15.660931,78.290344,2.7277754e-06 1447,573.72095,433.5813,44.17627,68.487976,2.3335056e-06 1447,323.71875,425.8943,71.08127,71.42041,1.4046099e-06 1447,72.14008,3.3535874,47.482628,60.918903,1.3473199e-08 1447,46.460705,5.7656674,46.306644,53.501118,4.4673607e-09 1447,18.71043,8.563824,44.438595,53.7034,2.2854807e-09 1447,439.7123,7.56674,41.54727,47.63005,4.2282866e-10 1447,101.89273,3.778304,46.338608,57.880486,2.6443092e-10 1447,408.24207,7.201094,45.088104,51.63811,2.2455876e-10 1448,506.45596,213.58199,26.489594,66.30855,99.93715 1448,535.7896,211.9634,29.30597,66.823685,99.81454 1448,430.00327,207.53596,24.664612,51.43788,76.91044 1448,551.84784,207.40636,32.485718,67.24568,0.005847683 1448,491.59927,214.52524,24.756012,57.75,0.0045440835 1448,385.8707,219.56055,24.260681,50.68863,0.0016230834 1448,616.69806,205.33128,22.448608,77.36751,0.0012241657 1448,119.76478,207.53784,26.130013,57.362976,0.001186516 1448,1.7346452,184.48636,18.783098,83.213715,0.00062893506 1448,615.24194,120.20242,23.904724,94.56294,0.000582365 1448,1.5211955,127.67629,18.889378,91.021,0.00023437933 1448,617.4588,401.39413,21.687866,80.5488,0.00016587757 1448,602.23926,166.78998,36.90741,170.0516,0.00015778202 1448,488.99637,183.43948,72.88852,138.77975,0.00012053442 1448,2.459441,120.17178,34.593143,178.32861,0.000116814386 1448,617.69946,310.63083,21.447205,83.36661,7.062891e-05 1448,125.4114,188.63354,45.01168,95.40677,6.00499e-05 1448,588.44684,229.39297,50.69983,247.50632,5.492377e-05 1448,613.4438,0.0,25.70288,48.147083,4.234615e-05 1448,1.0546428,267.85275,18.308762,77.15976,2.6887043e-05 1448,2.9299562,190.84454,57.190243,233.71704,2.2675476e-05 1448,393.4458,134.6896,129.19269,214.98273,1.2542286e-05 1448,0.8779183,297.79755,20.150343,145.1257,1.11286045e-05 1448,379.24918,113.17388,26.372711,55.626152,1.0025325e-05 1448,583.73395,2.7348633,55.41272,130.05731,9.786814e-06 1448,0.99011886,406.8711,18.050566,72.55084,3.0544275e-06 1448,308.97314,448.64276,41.39319,54.627625,1.2643834e-06 1448,1.5078207,356.2255,33.091557,137.62775,1.1523633e-06 1448,3.1243784,9.351244,58.410297,123.24426,1.1107627e-06 1448,1.7168661,3.2399871,24.951286,63.276646,6.2008905e-07 1448,1.4423113,17.621857,20.050495,172.5024,1.567732e-07 1448,538.9744,3.4379346,62.657837,53.795284,7.3555197e-09 1448,429.45398,7.290319,43.588745,57.444386,4.9166466e-09 1448,401.68484,5.5212307,45.081635,58.434654,3.8130255e-09 1448,24.493958,5.8673425,43.716904,50.76159,3.0162934e-09 1448,373.22153,5.1888967,44.77881,59.024178,5.000761e-10 1448,521.0596,0.77201825,41.092346,54.935345,1.8074285e-10 1448,349.21124,4.6154494,44.119476,57.978043,2.1919657e-11 1449,605.9935,214.16853,33.153137,85.736496,99.93584 1449,565.49677,214.13136,38.63568,87.62303,99.90991 1449,466.12955,210.9339,22.241547,52.301422,51.10089 1449,602.4297,164.08247,36.71698,281.1223,0.011882377 1449,593.3771,214.4011,25.628357,67.89682,0.011421644 1449,547.5161,197.03586,78.58606,153.98508,0.009374546 1449,422.56152,199.44948,22.796356,46.32219,0.0006475061 1449,617.6418,395.6507,21.504883,77.09076,0.00019515607 1449,3.8698814,146.07545,40.03661,102.196014,0.00012120692 1449,611.6748,71.409805,27.471863,106.76164,0.000100682075 1449,411.26962,213.27934,76.296326,169.8402,6.998697e-05 1449,609.3292,439.977,29.817444,66.00223,6.970421e-05 1449,409.07327,82.57204,38.026123,93.562836,6.96947e-05 1449,1.4700139,118.390396,18.671463,78.14232,5.372683e-05 1449,615.8282,19.19487,23.318481,94.19779,4.226598e-05 1449,571.71344,343.6965,67.419556,145.08633,3.7505164e-05 1449,615.92554,133.75034,23.22113,103.06543,3.0247043e-05 1449,0.63705814,267.33163,19.101702,86.70245,9.3643275e-06 1449,1.2955469,222.40764,32.049843,185.30098,6.723115e-06 1449,0.8811206,339.46017,19.87066,135.54852,5.950468e-06 1449,575.35455,4.2642775,63.349243,87.00011,2.2459303e-06 1449,584.6318,20.870697,54.168762,211.26115,2.2301874e-06 1449,1.0613616,423.6269,16.670433,79.473114,1.524358e-06 1449,1.7515154,29.761576,18.471237,125.73998,1.1051584e-06 1449,5.690713,360.56018,79.08201,130.5852,1.0494389e-06 1449,4.0037923,23.542175,55.813526,113.90779,4.5052718e-07 1449,3.3080177,431.25912,52.87977,69.2785,3.60475e-07 1449,1.6737037,11.767041,21.63381,52.224392,2.2146283e-08 1449,456.63876,7.840783,41.483948,47.287853,6.7154504e-10 1449,419.88287,4.996431,44.28897,51.04794,4.270432e-10 1449,396.77097,3.9075978,42.015076,57.211056,8.566005e-11 1449,361.61966,6.3177476,42.329346,55.861237,8.686436e-12 1450,610.7728,313.4302,28.1557,66.666534,0.007406762 1450,554.2078,240.74173,32.899963,69.99634,0.004748526 1450,50.736317,209.34769,36.23653,65.841,0.001870943 1450,1.6470411,207.2887,19.363678,86.16849,0.00095059647 1450,624.2079,91.87815,14.938782,47.244194,0.0009455624 1450,603.72656,70.925186,35.420105,94.41225,0.00059732946 1450,1.0797576,74.92974,13.923595,59.148796,0.00041944892 1450,605.1763,179.48244,33.061157,183.53014,0.00037220895 1450,620.6218,53.19556,18.524841,59.636066,0.00036774806 1450,468.92914,210.60039,24.818176,49.974533,0.00028045152 1450,579.3987,266.1402,57.939697,167.35828,0.0002419319 1450,503.5184,239.92172,61.32187,164.96207,0.00023036348 1450,35.205826,98.91483,76.778366,187.16663,0.00018522525 1450,615.8566,125.41339,23.29004,88.64073,0.00017033024 1450,2.4653516,102.631874,32.92523,201.2981,0.00015126044 1450,371.36093,159.9267,26.608673,58.87758,0.00015056011 1450,617.81885,181.29102,21.32782,79.38721,0.000120594326 1450,42.853535,112.26118,35.07475,86.76275,0.00011693377 1450,612.22095,411.4765,26.92572,95.62933,0.000105674815 1450,526.7119,49.87049,31.282593,61.94348,9.74504e-05 1450,1.6836467,98.9394,18.483639,80.209465,6.342485e-05 1450,0.7445052,276.69308,18.958984,85.02594,5.2082334e-05 1450,585.96094,28.709766,52.80768,215.97871,4.935643e-05 1450,3.3217254,205.25665,57.368786,217.93951,4.9030798e-05 1450,523.631,101.6805,34.20105,81.63858,3.5767822e-05 1450,607.83215,7.7741637,31.314514,55.359467,1.8610226e-05 1450,1.187863,372.22995,18.143246,73.95709,1.804577e-05 1450,1.6244279,145.15694,18.427383,80.55878,1.624517e-05 1450,554.6,392.41867,83.36731,105.88025,4.3925065e-06 1450,0.9156275,421.6596,16.829807,81.05307,4.216714e-06 1450,497.3139,50.520596,27.061584,53.027256,2.5681738e-06 1450,2.298506,31.98916,29.471226,126.1675,1.6370983e-06 1450,5.902728,358.33963,78.452515,129.63788,1.5884287e-06 1450,581.5004,438.69565,45.27295,67.49255,1.5326027e-06 1450,3.1300213,428.06192,53.176296,72.071686,5.162502e-07 1450,0.7460136,14.838356,11.018456,90.15576,1.05047185e-07 1450,501.2346,13.994928,85.575714,185.1063,2.2439586e-08 1450,424.71072,15.076211,43.72159,168.48106,4.9041526e-09 1450,579.2745,5.921429,43.46039,52.48632,4.116467e-09 1450,370.84143,3.6350815,44.471405,47.570286,1.0936836e-10 1450,439.88934,4.9469957,46.751648,56.064426,6.383831e-11 1450,470.0009,7.4276466,41.121887,51.456886,5.1624822e-11 1450,414.43127,2.9095476,46.96399,60.62254,1.1340664e-11 1451,595.9169,214.47179,32.37274,58.25789,94.987625 1451,583.27814,213.86098,26.803467,51.792892,0.9196076 1451,573.71857,206.2172,59.326477,111.28046,0.25230488 1451,511.23666,213.47308,25.730682,48.669098,0.15140358 1451,621.1785,210.77625,17.711487,48.660553,0.02339341 1451,358.90802,219.73927,30.929016,66.751816,0.012067358 1451,0.0,338.4212,23.327658,116.67325,0.009112065 1451,620.18353,283.02664,18.963135,61.314545,0.003106883 1451,614.54675,219.78888,24.599915,107.69205,0.0017517353 1451,611.8859,124.04219,26.890137,149.10213,0.001055387 1451,35.341007,115.37188,47.93668,149.79968,0.0007317236 1451,1.7064381,163.69756,21.367657,106.96248,0.00052288745 1451,541.3958,146.43787,93.585754,239.26395,0.00047748836 1451,0.1574414,328.96,67.864914,158.43408,0.00044559824 1451,600.0333,235.00725,39.113342,230.36412,0.00023192773 1451,608.876,369.77127,30.27069,136.71399,0.00016145747 1451,1.192658,196.99654,34.522903,243.54582,0.00015905895 1451,487.8923,154.8899,80.84201,182.27945,0.00013160448 1451,1.5632577,73.687775,19.203316,89.97604,5.931747e-05 1451,608.37384,1.6112696,30.772827,130.3358,3.8129772e-05 1451,3.7036133,60.73198,59.20976,262.83215,2.3011617e-05 1451,555.99176,416.41193,74.16766,82.18631,5.8511346e-06 1451,568.17084,1.9855046,67.747925,66.49994,9.896359e-07 1451,1.6043131,12.053649,36.668217,86.14708,8.1600746e-08 1451,536.8994,8.890537,44.08008,47.763695,4.1839428e-08 1451,466.16147,3.2156186,48.321136,60.076927,1.0840111e-08 1451,400.87506,4.646123,45.945007,61.26193,8.502364e-10 1451,428.24963,3.218812,47.122314,61.489357,1.16077016e-10 1452,441.90482,245.63574,23.110077,50.067932,93.48296 1452,422.145,241.879,21.799805,47.39508,68.30451 1452,601.9308,98.48881,35.676453,85.49836,4.532718 1452,622.28864,242.43263,16.858032,53.726303,0.081215344 1452,622.83276,125.63292,16.313904,51.84836,0.044883147 1452,412.6724,226.3343,40.02893,97.03584,0.02243582 1452,1.553457,224.92427,19.439404,83.23552,0.005945574 1452,0.8905062,141.37564,15.691972,70.9337,0.0030031467 1452,497.56308,254.67464,34.612946,81.368454,0.0029161703 1452,588.0237,75.42762,49.56964,250.48828,0.0028021843 1452,573.1689,273.211,24.86493,57.76306,0.0010059032 1452,613.30817,243.71255,25.838501,124.53555,0.0009857271 1452,2.332273,173.16742,33.735497,180.19223,0.00082685665 1452,570.4178,414.91196,68.72888,89.69504,0.00036517132 1452,1.5708594,94.708595,31.33666,146.3533,0.0003650206 1452,391.80356,233.20595,76.45792,179.92867,0.0001598654 1452,578.24115,257.08554,42.690308,99.90814,0.00012014904 1452,617.6591,336.24466,21.487549,80.7558,0.00011846061 1452,608.91895,0.0,30.227722,152.49477,6.804492e-05 1452,1.008514,263.45462,18.35154,145.72675,5.6117664e-05 1452,615.7052,158.479,23.441467,95.886856,5.545927e-05 1452,3.8628988,242.97168,55.907986,213.43478,5.3622414e-05 1452,587.1135,232.76422,51.158752,244.28162,5.2355284e-05 1452,184.80502,106.12531,42.031387,77.11956,2.5129788e-05 1452,4.707168,83.65686,79.843475,254.59467,2.4861993e-05 1452,1.8005192,326.28555,27.49771,145.29684,9.542687e-06 1452,1.0279102,423.14645,16.272602,76.11133,6.18635e-06 1452,3.2797086,397.96716,56.127167,92.43701,2.326879e-06 1452,1.0731356,19.955912,19.821035,160.02536,2.074624e-06 1452,2.0518394,16.792963,56.94828,122.07,4.859204e-07 1452,0.83110803,12.244212,11.341787,79.75603,3.9631004e-07 1452,579.33765,0.7181478,45.90155,63.73403,8.0914624e-08 1452,483.59302,15.365817,39.306152,83.67643,3.9730057e-08 1452,550.426,5.465736,44.850037,56.68571,2.3393905e-08 1452,449.8505,9.511543,42.03125,124.882164,2.3193e-08 1452,1.0422591,5.0417237,38.91468,51.646076,1.8337447e-08 1452,520.8969,2.8688314,48.922485,62.425327,1.4058197e-08 1452,43.638348,6.6384068,49.805714,55.700058,1.3857285e-08 1452,435.7911,3.4042773,45.751465,61.60329,1.9152955e-09 1452,403.131,2.1393783,45.12567,48.9708,4.4109177e-10 1452,495.1479,0.0,49.280212,70.4252,1.5947643e-10 1452,377.34396,3.898568,42.521423,58.367737,4.648036e-11 1452,71.99415,2.3269012,42.782303,58.99714,3.7691877e-11 1452,462.13116,0.8031413,45.875885,61.095173,1.7071435e-11 1453,465.24527,170.13397,23.182648,50.574936,99.904724 1453,442.60104,169.30551,21.82898,52.7502,99.52839 1453,517.1197,162.33446,23.11731,50.219406,5.5502663 1453,529.1732,157.9102,23.111511,48.766098,0.89021695 1453,59.25209,66.315956,46.481804,131.26038,0.03521704 1453,558.3467,181.21318,24.48999,53.561325,0.00866618 1453,510.66016,185.0242,38.138794,82.39444,0.0044978405 1453,618.0301,379.306,21.116577,81.27521,0.004430332 1453,580.3771,178.07602,56.192932,122.919495,0.0026775305 1453,617.742,208.04633,21.404663,78.724304,0.0016463348 1453,586.6552,376.96854,52.491455,120.35513,0.0012571206 1453,426.94516,141.08574,58.012512,102.59453,0.0010840476 1453,15.726709,168.54327,26.734201,50.53064,0.0010567184 1453,616.5015,138.30127,22.645142,77.12854,0.00064644177 1453,545.9055,163.79488,25.898315,56.98146,0.00058224174 1453,448.71866,130.0803,68.21884,167.82018,0.00055918196 1453,625.1851,438.72028,13.961548,45.222717,0.00044233384 1453,603.7042,257.26932,35.442444,198.68887,0.00030016663 1453,1.4497038,106.51936,19.392109,89.48898,0.00025352646 1453,505.5397,119.60933,75.10434,171.06691,0.00019736422 1453,616.13025,63.59628,23.016418,94.20688,0.00012742268 1453,2.2527833,138.59453,29.038591,140.54787,0.000121264486 1453,309.6434,167.97826,41.293427,131.24721,3.2856035e-05 1453,0.64640546,251.26646,18.900404,82.992874,2.3281937e-05 1453,599.6901,15.144291,39.456543,221.66249,1.3208375e-05 1453,3.4384685,178.52141,56.937,246.45549,1.2378361e-05 1453,2.4608903,8.809395,60.739292,217.64398,6.7097403e-06 1453,0.950127,334.8652,19.383379,135.0596,5.8264336e-06 1453,0.89359623,422.15607,16.494904,80.14166,4.10678e-06 1453,3.3796208,340.27255,57.81709,147.07193,1.2476547e-06 1453,494.46048,235.46774,83.153534,201.78497,1.0801424e-06 1453,1.4725358,8.083477,39.204212,91.04631,2.3679156e-07 1453,0.88243693,10.147868,11.720905,90.21318,2.1715876e-07 1453,122.473335,2.774572,44.257057,52.364254,4.6168593e-09 1453,500.508,3.3077214,46.240112,55.061176,4.3022865e-09 1453,379.57776,1.5596029,45.270752,59.101322,3.1855067e-09 1453,153.8337,2.3885548,48.62413,64.533615,2.2037308e-09 1453,88.39794,4.51646,44.010323,52.70563,2.0902813e-10 1453,456.6107,3.1283383,43.487457,49.96324,7.586078e-11 1453,356.006,1.127526,41.911224,59.057686,3.4853773e-11 1454,502.15048,205.06099,24.168304,60.003372,99.91162 1454,470.84537,204.83601,24.208069,59.256393,99.88473 1454,570.2357,195.60019,29.853516,63.305145,99.15767 1454,588.553,191.06192,24.651062,55.908707,77.18175 1454,439.8063,195.18227,22.944397,53.64151,0.35995972 1454,623.5439,205.25987,15.602783,51.83348,0.028157115 1454,518.1179,209.85985,17.585388,46.39836,0.010614781 1454,425.476,206.04465,33.46234,74.743835,0.007667949 1454,1.913501,103.59,36.630398,129.7675,0.0037293604 1454,613.2655,191.2093,25.881165,128.60701,0.0018384887 1454,607.87994,199.17757,23.007446,53.259262,0.0014013703 1454,454.95135,181.93633,56.39319,101.22023,0.0012575919 1454,420.28876,137.51094,22.826569,56.71605,0.0011386008 1454,565.832,160.26323,68.08368,149.57005,0.00087065663 1454,399.45328,143.6137,23.988312,55.868866,0.00073180173 1454,486.33365,192.18549,56.41385,88.28357,0.00051096483 1454,436.72116,132.06628,23.654053,53.71585,0.00050261396 1454,87.62483,112.07163,27.27124,63.631218,0.00017374006 1454,76.58797,102.26968,43.619484,140.59048,0.0001269 1454,617.39404,294.3282,21.752625,86.98535,0.00012677298 1454,1.3066032,170.72523,18.988672,124.92839,9.281408e-05 1454,4.11875,160.49268,59.922287,243.84717,7.064029e-05 1454,611.5095,324.51187,27.637146,146.66284,6.7828005e-05 1454,40.5013,92.13047,36.85091,88.944176,6.0964438e-05 1454,416.421,136.41315,132.26993,219.8229,4.8679543e-05 1454,610.4816,53.38153,28.66504,121.32457,4.6855486e-05 1454,608.4552,442.84668,30.691467,61.697144,4.5656205e-05 1454,584.897,392.36362,54.249695,105.35129,2.2308133e-05 1454,0.9354338,231.34294,18.103392,148.53716,1.394412e-05 1454,1.0608512,352.18213,20.57805,105.240906,6.292479e-06 1454,1.2671534,53.33781,20.13666,95.92937,5.5907794e-06 1454,0.9468262,422.02173,16.041574,79.60959,2.9335845e-06 1454,580.6329,0.0,58.306458,272.0594,2.9326109e-06 1454,6.147754,357.7388,79.29897,131.13074,1.3106745e-06 1454,0.21178061,3.923524,40.730522,53.70931,3.6640788e-08 1454,1.0782666,3.9243035,60.375576,152.48169,2.6373357e-08 1454,0.8690112,7.203841,14.682799,83.2328,2.1023023e-08 1454,384.28122,0.0,48.75125,66.020485,1.9826372e-08 1454,414.52338,5.519173,44.46649,51.55371,4.8638538e-09 1454,73.363235,3.3244255,39.645287,51.2032,1.7040076e-11 1455,520.7223,209.91803,33.86212,77.80795,99.97842 1455,555.45917,213.51411,28.332825,75.6656,99.80705 1455,572.2734,218.41,20.25531,49.801147,0.38246217 1455,491.43002,205.09454,38.94809,135.01947,0.077659115 1455,567.1212,212.6613,38.459656,95.89766,0.06255207 1455,611.2179,201.9822,27.928772,123.89116,0.0029181177 1455,56.089935,77.207375,40.72152,86.4192,0.0026043667 1455,343.67032,215.85893,22.580261,54.263535,0.002558383 1455,614.13226,102.33423,25.014404,105.99614,0.0012268818 1455,6.013728,204.11523,35.25302,71.690216,0.0011765237 1455,498.6408,139.31808,128.1466,236.74188,0.000804425 1455,408.03784,144.95975,24.19342,53.809586,0.0007514204 1455,588.3729,102.57181,50.10443,217.37253,0.0006280791 1455,1.5599878,156.7511,18.640295,140.67459,0.0002883579 1455,4.413651,97.587616,54.90372,227.49155,0.00016229018 1455,612.65546,383.68756,26.49121,118.11551,0.0001350748 1455,459.11917,110.957565,25.84375,62.007553,0.00010198454 1455,421.65863,146.85323,23.747986,55.105576,5.4336197e-05 1455,614.79626,14.738304,24.350403,88.43084,4.500606e-05 1455,602.8934,270.3251,36.253296,195.49042,3.487927e-05 1455,436.60446,113.0472,37.605865,76.52758,2.9646631e-05 1455,2.0197575,80.241196,19.415451,81.433105,1.813251e-05 1455,1.5420817,217.22638,27.535133,151.25726,1.3559594e-05 1455,0.9966309,315.27554,19.689556,140.94623,7.540109e-06 1455,3.3143115,274.07556,58.12681,204.87393,4.107031e-06 1455,568.2387,15.580847,70.90796,159.21452,3.7327886e-06 1455,1.0131536,422.45233,15.818247,79.94629,2.2701436e-06 1455,3.613755,432.84836,53.1701,67.89633,5.0170297e-07 1455,2.7312143,22.411367,58.67547,121.909615,3.149389e-07 1455,0.94096315,13.7951145,12.591022,84.913,9.25764e-08 1455,581.9417,6.6151237,42.02191,50.962963,4.6415135e-08 1455,121.79263,0.64485025,45.251114,63.76413,8.6851853e-10 1455,383.58905,1.8600749,46.43878,63.252354,8.809342e-11 1455,149.5413,0.23698893,46.80641,61.501125,1.1215876e-11 1456,480.44583,209.82571,31.476227,64.513824,98.746445 1456,401.91837,170.21852,33.71704,66.3819,0.03648473 1456,620.892,217.92714,18.254639,60.133713,0.0033771126 1456,367.9162,187.11203,25.012146,59.862137,0.0029011972 1456,616.7705,92.291374,22.37616,86.81306,0.000748945 1456,611.0566,129.74545,28.090088,156.91583,0.00069787813 1456,0.93376386,182.1809,18.844765,83.38756,0.00051792955 1456,617.67035,249.08331,21.476318,81.28259,0.0004551397 1456,0.75528646,67.76453,19.06163,80.582184,0.000324454 1456,1.2004135,94.514305,32.16966,188.92163,0.00031065775 1456,460.2647,168.94896,71.85596,154.76085,0.0003022397 1456,617.67035,383.17667,21.476318,85.78314,0.00012793492 1456,617.87146,296.82825,21.275208,81.95105,0.00011400743 1456,602.8077,251.41988,36.33899,205.86409,7.044862e-05 1456,0.6272469,124.66103,19.198246,88.153206,5.869141e-05 1456,0.822251,229.83524,18.560432,79.49295,3.0165722e-05 1456,502.1199,148.40233,77.436676,169.36192,2.3489392e-05 1456,609.2491,437.98294,29.897583,67.4892,2.1795606e-05 1456,601.45496,9.526452,37.69171,204.22472,1.8617186e-05 1456,3.8901563,98.75046,82.29152,248.39548,1.7130917e-05 1456,0.92612225,407.69595,18.132967,73.71973,9.476555e-06 1456,572.61005,354.5944,66.53662,135.4114,9.043385e-06 1456,237.64253,135.8704,80.47026,149.86626,8.434863e-06 1456,0.52650553,358.62286,13.743083,47.360077,4.4883946e-06 1456,0.4614909,317.01172,18.51918,73.58676,4.468764e-06 1456,1.6076807,455.39893,28.038258,48.411255,3.816888e-06 1456,1.3533204,317.6499,32.716633,172.49924,3.3958725e-06 1456,1.5750358,20.363,56.69186,113.47288,5.9885167e-07 1456,0.41395062,8.806051,9.056863,87.56994,2.2075022e-07 1456,0.90025395,6.1559377,29.878136,57.97651,9.7468424e-09 1457,561.67847,214.31386,37.454773,81.07094,99.84776 1457,453.58386,194.21632,32.912598,66.349106,0.0014664058 1457,401.8195,186.25833,25.129059,50.57657,0.0011337706 1457,234.74937,172.5062,41.442734,71.43823,0.0010381673 1457,618.2801,205.40869,20.866577,78.0762,0.0006988865 1457,2.0409667,148.49403,42.41234,139.48476,0.00041385234 1457,0.89832276,142.60216,19.874657,90.78732,0.0001951933 1457,607.0517,8.369928,32.09497,102.90061,0.00015024097 1457,617.8377,264.5735,21.30896,89.5163,0.00014994497 1457,538.00635,180.53836,88.2099,178.5311,0.00014251185 1457,617.8305,109.33021,21.316162,81.30703,0.00012178858 1457,617.4118,325.8259,21.734863,84.44229,0.000119705044 1457,602.70374,237.19649,36.442932,200.93114,0.000107475804 1457,617.26807,59.440483,21.878601,82.140495,8.730293e-05 1457,1.0199146,233.65323,17.708126,72.84689,4.598674e-05 1457,1.0600114,79.27874,18.733053,77.66303,4.3159987e-05 1457,608.6058,436.13263,30.540894,71.42807,4.09715e-05 1457,602.33124,88.13876,36.81543,203.51321,2.5320263e-05 1457,585.4094,389.0817,53.737244,105.08035,1.7289862e-05 1457,0.60570884,270.36456,20.127153,109.90933,1.3923975e-05 1457,0.8436865,399.70773,18.117048,71.315155,9.6195845e-06 1457,4.9321585,115.75271,91.36988,236.28986,8.183993e-06 1457,222.31136,121.373985,80.03786,159.40732,5.1457832e-06 1457,1.2047567,442.28088,20.924393,61.562683,4.475153e-06 1457,1.4021827,340.232,31.545109,147.74625,3.0316637e-06 1457,2.9643652,25.623692,78.49627,132.4388,1.4161718e-06 1457,3.384393,234.7823,56.37398,227.21468,1.3940778e-06 1457,25.73087,4.351994,43.860294,45.151443,1.7427277e-07 1457,1.1978793,11.0028,52.283905,66.752625,1.1861248e-07 1457,0.63717365,10.448691,12.958397,83.23616,6.0707066e-08 1457,483.98267,6.7915187,44.41681,46.954784,7.9932977e-10 1458,569.9097,229.67871,49.11792,92.67218,9.217171 1458,450.6061,196.6926,24.758392,51.28476,0.1837019 1458,603.3825,149.36383,35.76416,143.21408,0.16385323 1458,554.8885,174.89754,83.04175,186.19038,0.050546095 1458,433.31494,207.87416,39.203827,81.34715,0.03870693 1458,617.76434,159.74066,21.382324,64.4814,0.024951022 1458,621.8947,137.5138,17.251953,46.610123,0.019507764 1458,604.30035,233.8094,26.089478,56.228622,0.01792584 1458,611.18915,75.94291,27.95752,129.8482,0.0058607133 1458,617.5922,215.72862,21.554443,65.285355,0.003686768 1458,621.68335,277.4014,17.463318,49.186646,0.003489813 1458,586.24805,160.90622,38.325623,89.023636,0.003327951 1458,572.1867,214.20192,28.716858,59.91072,0.0012189723 1458,219.20695,166.90837,42.978226,90.206314,0.0005294705 1458,609.38684,240.01285,29.759827,143.97842,0.00051175634 1458,0.6402442,150.74841,20.497168,111.23877,0.00020706884 1458,584.2955,14.852904,54.851196,115.26535,0.000104424944 1458,611.9737,322.05978,27.172974,142.60107,7.240471e-05 1458,599.67444,411.49362,39.47223,90.598206,1.9616167e-05 1458,1.3159473,69.89848,28.979029,136.66637,1.6654825e-05 1458,0.609506,245.0032,18.42671,76.79782,1.1718388e-05 1458,2.473042,123.29586,58.343014,219.04065,1.135313e-05 1458,207.83693,122.72089,89.49745,205.43472,9.836406e-06 1458,0.92353195,349.11182,17.961855,126.8533,8.671596e-06 1458,0.92726564,265.07684,27.825844,146.74713,3.3334945e-06 1458,1.663068,423.2492,32.01954,73.69165,3.1267834e-06 1458,3.201359,304.891,57.462334,171.03632,1.1558678e-06 1458,3.649092,34.09419,78.67354,131.72394,8.282355e-07 1458,0.84707767,25.186417,20.688654,95.20868,3.8479448e-07 1459,210.74872,204.24608,24.609848,46.29489,89.34355 1459,619.6984,193.51947,19.448242,52.957077,0.009039212 1459,607.51776,213.90543,31.628906,83.50433,0.008201383 1459,481.32693,225.89017,39.809296,139.55005,0.004935468 1459,460.29596,197.50185,30.315704,58.011368,0.002587365 1459,279.83112,203.98434,23.43689,45.005554,0.002572828 1459,624.3146,221.1273,14.832092,45.891464,0.0019370002 1459,587.03217,162.49878,52.05963,222.80716,0.0014063132 1459,201.17172,182.76987,43.748566,91.16202,0.0009058168 1459,470.3907,163.94177,106.523315,215.15729,0.000581048 1459,615.6441,306.58875,23.502563,95.321014,0.0005236874 1459,610.6088,96.6706,28.537842,163.29294,0.00040625824 1459,485.3007,281.44638,22.430267,52.77722,0.00010128399 1459,1.0961093,139.69334,18.115284,74.91817,9.0359e-05 1459,608.0989,385.28595,31.04779,115.302185,7.921944e-05 1459,0.7728874,71.20705,18.643042,78.9151,3.6570455e-05 1459,0.7158065,171.84944,18.950117,140.74284,2.1028784e-05 1459,0.45807293,267.2494,18.635004,74.056854,1.3041876e-05 1459,597.6697,5.5566115,41.47699,79.01007,1.2401827e-05 1459,0.8617725,392.95792,18.15871,71.10184,6.680064e-06 1459,0.51157796,309.91443,18.435295,74.23871,5.4276443e-06 1459,187.45836,135.97903,86.35564,210.28214,5.093104e-06 1459,0.7227344,351.33215,18.23752,73.08267,4.5213897e-06 1459,1.2441797,443.71698,20.763252,59.76126,3.762704e-06 1459,1.2061508,225.76083,32.089565,171.00949,2.5918735e-06 1459,1.5695492,73.98752,32.755894,174.9877,2.000985e-06 1459,5.297751,172.62401,78.82018,263.82465,1.7172653e-06 1459,437.0212,428.19547,75.69046,72.69891,1.0559946e-06 1459,3.4667172,397.12766,57.091618,98.45099,8.1018135e-07 1459,2.633073,21.423725,79.936905,146.19003,3.8171768e-07 1459,21.504492,432.0958,76.232864,69.24814,3.7807445e-07 1459,495.3436,426.98938,71.69699,71.50897,2.7293353e-07 1459,0.48625815,10.022914,10.120754,86.512566,2.2772373e-07 1459,318.72882,430.62836,71.58893,70.380035,1.894815e-07 1459,1.2805095,12.82499,36.19628,77.76583,1.0382255e-07 1460,175.71806,175.80574,26.43924,48.33882,88.33671 1460,497.62042,186.47284,22.566895,46.721695,0.86413187 1460,469.88214,202.89383,24.531097,54.43048,0.10535612 1460,484.96402,139.1089,43.779144,110.20218,0.03288115 1460,621.87976,193.22089,17.266907,50.08763,0.005966566 1460,606.5365,193.97252,22.913696,45.431885,0.0054356866 1460,571.67114,183.76895,37.843933,67.32399,0.0036841952 1460,525.4451,165.05339,43.9281,93.75331,0.0031811348 1460,160.64851,131.49579,59.543472,114.442856,0.0024227307 1460,551.51154,192.90642,24.317993,45.136505,0.002348486 1460,610.1303,108.53567,28.83612,148.01236,0.002235831 1460,0.8437842,103.45913,18.530306,80.87342,0.0015478218 1460,620.1898,389.97562,18.956848,60.99356,0.0011971501 1460,617.01263,78.23637,22.134033,83.83701,0.0003826236 1460,463.05496,105.585724,104.64334,197.9581,0.00037314545 1460,621.21655,128.4351,17.930115,54.536224,0.0003238528 1460,617.5206,218.322,21.626038,84.967575,0.0002976067 1460,621.1515,46.411213,17.995178,56.90508,0.0002621491 1460,608.5305,322.21097,30.61615,148.53363,0.00021138942 1460,601.50244,191.7476,37.644226,228.59761,0.00011136052 1460,608.1123,433.4597,31.034363,72.740234,0.00010883358 1460,0.7448291,148.92636,18.394516,143.76572,7.1386065e-05 1460,1.1394109,75.16685,32.784008,175.74295,5.062567e-05 1460,0.4901416,253.74026,19.196596,136.14313,1.4951072e-05 1460,2.7490609,115.30841,58.28145,224.03989,1.26343875e-05 1460,597.3664,1.9605567,41.780273,88.25415,1.2288838e-05 1460,0.94012535,382.8904,17.807474,114.87268,4.713587e-06 1460,0.6391545,345.70654,18.310823,72.32504,3.1896277e-06 1460,2.9858773,264.06122,57.25298,211.15576,1.5190147e-06 1460,2.7693295,434.68616,45.54138,66.091156,9.765422e-07 1460,126.389534,85.94411,144.26324,229.90535,5.7466355e-07 1460,1.3134733,19.838627,56.992825,118.40073,2.9371995e-07 1460,0.5385942,10.040163,10.852148,84.469955,8.934167e-08 1460,0.820682,4.0473747,37.55734,45.839058,4.211997e-09 1461,127.08507,184.47643,27.92723,56.0728,98.04798 1461,571.0473,142.49,40.704468,80.64752,0.41986638 1461,608.0413,152.96681,29.83429,58.086746,0.24449725 1461,617.11804,269.28342,22.028625,59.60193,0.12679845 1461,583.4995,144.20004,53.40918,191.13986,0.035009097 1461,621.4642,141.2293,17.682495,45.59105,0.025876472 1461,600.9768,242.63734,37.89966,121.16603,0.010762877 1461,113.10956,160.24892,56.254074,98.347244,0.0058213607 1461,610.3412,299.16162,28.805481,152.84708,0.0043040267 1461,0.9931869,122.55065,18.23162,75.11071,0.002898802 1461,606.9424,198.08456,32.204285,83.23724,0.0022920796 1461,0.98194337,88.99054,33.68706,168.97916,0.00043013596 1461,0.6855624,228.12251,18.79755,80.52812,0.00035128745 1461,570.6959,204.19092,25.724121,47.70294,0.00024017374 1461,616.0783,62.616264,23.06836,94.80097,0.00015385474 1461,1.1855241,181.81761,32.018623,173.81624,4.738068e-05 1461,608.9781,437.34683,30.16858,70.529755,3.960738e-05 1461,583.13257,2.2051954,56.0141,125.93534,3.1208318e-05 1461,0.69942874,263.28308,18.592913,138.57782,2.5405938e-05 1461,585.87,381.13538,53.276672,113.00766,1.9960491e-05 1461,79.716255,100.376915,134.29446,246.62372,1.00816815e-05 1461,0.74236816,350.37775,20.439373,104.945496,6.018233e-06 1461,1.1928345,443.28375,20.941023,60.480316,3.1525876e-06 1461,2.9576678,310.4846,57.394802,170.39392,2.0897592e-06 1461,0.6413273,22.589779,19.88112,149.25967,1.2476047e-06 1461,1.2002263,14.990756,57.695187,123.72926,6.3047025e-08 1461,0.5881067,9.77098,9.869624,82.54363,5.4851697e-08 1462,118.00422,202.5263,35.365517,67.34012,99.053055 1462,608.4791,180.31665,30.15857,64.063644,0.10367375 1462,606.4413,78.53516,32.53308,78.78902,0.062013492 1462,474.59677,180.29079,34.870636,70.87334,0.055384923 1462,623.141,60.985268,16.005676,47.454277,0.00860749 1462,596.3487,84.95258,42.63916,202.73056,0.0067581413 1462,0.5710425,163.1669,14.099812,54.370193,0.004993752 1462,623.882,93.527954,15.264648,47.366806,0.0039383126 1462,0.64071614,96.289,28.726595,142.60622,0.003762776 1462,0.45395103,91.43592,14.247078,52.1681,0.0033529927 1462,0.4641512,159.71309,19.845976,155.21687,0.0013922802 1462,92.92896,160.42879,76.49291,171.33736,0.0013232625 1462,614.9585,12.53655,24.188171,111.42715,0.00031670512 1462,617.2719,223.21243,21.874756,93.2486,0.00026352875 1462,2.7259848,190.52855,58.206123,235.82866,0.0002291343 1462,617.3213,287.544,21.825378,84.5907,0.00018897685 1462,0.76941735,261.612,18.712748,75.60016,0.00018291827 1462,3.7530794,53.322033,78.26805,265.75204,0.0001570108 1462,602.42194,194.30144,36.72473,204.66621,8.8064306e-05 1462,611.89465,321.51312,27.252014,147.0148,7.831025e-05 1462,1.2927654,305.24005,28.041813,145.64798,6.590299e-05 1462,613.7907,418.07657,25.355957,84.60678,4.8481714e-05 1462,0.8401001,373.28656,14.570242,120.93381,3.462256e-05 1462,5.6326957,343.72192,78.00673,134.29257,2.1248681e-05 1462,421.34424,427.71353,77.09073,71.26236,6.448388e-06 1462,2.3285515,429.8483,44.73612,68.00311,4.678716e-06 1462,523.446,399.3987,114.570496,100.45267,4.6196324e-06 1462,283.42844,426.4485,74.733826,74.038086,3.1353295e-06 1462,479.66904,427.5712,78.43588,72.778656,1.0581359e-06 1462,344.06027,430.44693,73.1622,70.66647,5.8686123e-07 1462,1.0594678,21.765795,57.143074,120.390045,5.40971e-07 1462,201.77487,425.06473,72.464386,75.42029,3.164056e-07 1462,161.13492,422.8488,73.23985,77.91846,2.728112e-07 1462,0.30738485,7.8892546,8.547246,91.89355,2.1800659e-07 1463,152.38623,211.39847,43.641327,90.42911,99.65487 1463,606.97797,223.26694,30.081482,57.266235,0.1804327 1463,0.51313806,334.4579,19.827417,83.50336,0.005691057 1463,1.163711,348.69342,32.269436,144.25784,0.0040391996 1463,584.93665,96.637245,53.157593,211.91736,0.003723621 1463,619.86285,171.09105,19.283813,56.306717,0.003585015 1463,0.67125326,146.9031,19.260561,88.0058,0.0028080693 1463,0.52036864,131.56248,14.318743,53.52086,0.0014142239 1463,129.94417,169.55185,86.84946,189.08475,0.00093446695 1463,1.1217709,101.05459,32.604744,175.72086,0.00090271485 1463,0.3299113,82.023766,19.23713,82.25527,0.0006041285 1463,617.33124,55.535015,21.81543,81.0307,0.00036857455 1463,617.9066,262.05045,21.240051,82.24118,0.0002903209 1463,3.84361,426.84906,66.84068,69.662476,0.00028513817 1463,4.5543947,260.16507,79.569786,230.54025,0.0002510325 1463,0.90955,437.5442,21.646297,64.87552,0.0002509942 1463,618.326,382.2088,20.820679,80.3139,0.00023351636 1463,0.53605306,402.83615,14.139231,54.734222,0.00021713585 1463,618.2767,322.42886,20.869995,78.53082,0.00010916997 1463,0.4180176,185.1621,19.356987,155.26802,0.00010554027 1463,603.02673,245.35667,36.119934,197.94106,8.383551e-05 1463,597.6957,0.0,41.45099,96.297676,7.009238e-05 1463,0.54427737,276.33926,13.876448,54.481476,6.3767024e-05 1463,47.889004,423.20868,81.00481,73.64603,4.5036417e-05 1463,3.0088184,26.498737,81.56326,225.37085,1.32549e-05 1463,585.69147,394.53888,53.4552,102.95645,9.878937e-06 1463,91.20577,427.42694,80.131935,72.60089,1.7300212e-06 1463,304.58212,430.87637,72.52634,70.97287,2.8653096e-07 1463,263.8594,429.16544,72.6236,72.5004,2.4523348e-07 1463,0.40130007,7.6663346,8.756493,90.52122,2.4446615e-07 1463,0.5267204,9.226251,36.17701,80.670616,1.6091273e-07 1463,0.7523633,0.64862144,20.721886,45.357677,4.589344e-09 1464,157.10455,206.14842,51.420776,116.110794,99.821365 1464,156.4414,203.03407,30.75354,59.074814,0.24374756 1464,174.74245,206.4358,22.71347,45.53157,0.069474064 1464,185.98003,251.42787,37.472458,77.34276,0.0089630345 1464,620.33105,123.54318,18.815613,53.53755,0.0086399475 1464,620.3994,181.55954,18.747253,54.004837,0.0027023568 1464,0.40939373,387.58453,20.046347,87.17682,0.002436043 1464,610.06665,90.299644,29.080017,142.43738,0.0017196641 1464,0.53092533,156.88705,13.81734,56.97293,0.0017024683 1464,128.09076,147.52966,129.12872,235.23862,0.0015188174 1464,169.44641,267.88235,26.502289,53.848267,0.001107581 1464,0.683313,89.17675,18.673246,78.9694,0.0010334139 1464,611.6017,189.56677,27.544983,144.53384,0.000639952 1464,2.3039308,395.62454,58.11722,99.992645,0.00051869114 1464,1.1341765,86.537895,32.371197,168.86392,0.0004561461 1464,0.4390137,288.37466,31.938717,191.19296,0.00021797257 1464,618.25885,336.67773,20.887817,78.59735,0.00013556663 1464,0.40289146,177.24649,18.574635,79.68744,0.000104142986 1464,612.67194,369.8667,26.474731,131.51059,0.00010162492 1464,571.7788,80.52585,67.36786,236.53693,5.0480936e-05 1464,0.39537436,295.925,19.537766,88.181,3.702695e-05 1464,2.7059147,127.53215,57.010414,236.82307,2.421086e-05 1464,0.42219403,224.70172,18.389788,75.50604,1.441113e-05 1464,598.6384,4.2021646,40.50824,83.82126,1.411172e-05 1464,0.4876164,41.31518,19.45502,82.875854,7.869058e-06 1464,1.8358529,10.253503,85.106895,221.68962,6.08482e-06 1464,556.32764,430.73486,82.81903,69.8913,4.045201e-06 1464,50.705387,429.42603,82.059555,72.788635,7.8640426e-07 1464,97.93534,431.0075,74.75652,69.82767,5.824208e-07 1464,0.35405844,9.11653,8.912818,88.05571,4.802849e-07 1464,0.5715788,10.117357,36.965355,77.20304,1.13541056e-07 1465,59.852448,224.62495,71.09444,155.81297,99.68803 1465,100.01811,270.5327,51.05786,107.394226,0.062359158 1465,62.872696,206.50862,40.052635,105.16072,0.015112145 1465,25.20289,131.9705,137.69615,287.58563,0.009658999 1465,162.45734,168.65608,25.113953,54.02983,0.0074309013 1465,611.45654,107.05912,27.690125,150.25418,0.0052868873 1465,621.76917,201.63603,17.377502,54.953598,0.004176085 1465,106.8703,284.17148,22.783325,54.534454,0.0027716155 1465,0.669318,138.44138,13.713674,54.329437,0.0007998794 1465,95.3955,293.3693,23.29795,59.918488,0.00048775872 1465,78.54146,291.23953,27.120895,70.05725,0.00033369983 1465,0.94691736,85.165054,19.587128,141.5772,0.00032718127 1465,617.87634,238.41084,21.270325,85.70311,0.00028248245 1465,94.6327,252.40631,29.140167,64.09073,0.00023553778 1465,587.17395,122.04315,51.972717,250.93958,0.00019323998 1465,605.4212,0.0,33.725464,64.38631,0.0001657155 1465,609.3186,441.9899,29.828064,62.32495,6.540136e-05 1465,615.73596,21.808165,23.410706,104.76689,6.394205e-05 1465,612.79395,318.84988,26.352722,138.29477,5.5355384e-05 1465,69.75466,207.10036,24.83931,48.867065,3.229006e-05 1465,0.6770972,167.46387,18.756182,138.31714,3.083588e-05 1465,585.3401,394.36398,53.80658,101.93567,1.6366776e-05 1465,3.2845492,106.76839,58.85949,221.62025,1.4750278e-05 1465,0.8286589,328.18295,18.999819,130.21973,6.7746428e-06 1465,0.56838137,276.62317,18.299269,74.24017,5.0531803e-06 1465,0.6087944,318.1029,13.489396,46.63501,4.6321434e-06 1465,1.0091504,442.81735,21.979824,60.244385,4.191263e-06 1465,0.758217,35.160034,19.43452,81.24595,1.0821117e-06 1465,3.1310923,237.06409,57.285603,214.8377,9.87283e-07 1465,2.961976,396.3371,56.588943,97.740265,7.559055e-07 1465,1.9221582,16.896332,57.09386,112.85629,2.762614e-07 1465,0.33742067,6.680189,8.38869,92.746346,2.5397148e-07 1466,231.7029,171.17107,23.90834,49.0412,0.0016991496 1466,0.64896566,125.76395,18.769411,77.806885,0.0015773807 1466,621.3994,251.49321,17.747253,56.47267,0.0013596369 1466,0.38227132,105.60806,14.100873,50.804337,0.0008525636 1466,617.1113,105.29031,22.03534,80.477036,0.0006909024 1466,611.1726,207.72717,27.97406,138.19934,0.00066567387 1466,617.5741,178.86441,21.57257,85.56778,0.0004470122 1466,615.42126,48.931454,23.725403,91.6687,0.00031198366 1466,0.6041264,176.19055,13.264862,48.532974,0.00027014883 1466,600.7386,75.90444,38.40808,218.96875,0.00026504174 1466,617.9347,369.98245,21.211975,80.048615,0.00025109117 1466,617.2638,294.0617,21.882874,85.42581,0.00024742502 1466,573.1534,179.96753,65.993286,257.15134,0.00024104754 1466,0.9822754,99.34071,35.292336,161.38432,0.00019436984 1466,609.14624,436.15875,30.000427,69.58203,5.0052473e-05 1466,0.50567466,178.3248,19.698044,140.8371,3.6876194e-05 1466,601.9865,327.8027,37.160156,164.67023,3.6729554e-05 1466,596.0052,3.8732781,43.14148,85.22828,3.0121591e-05 1466,5.005228,98.80124,78.825294,241.98883,2.5412819e-05 1466,491.6987,432.37067,75.87399,68.52118,1.4121197e-05 1466,0.47477785,227.54532,13.813968,47.640533,9.91174e-06 1466,0.9697746,386.86002,16.31104,109.557434,6.207697e-06 1466,0.54869384,269.90558,18.453377,73.16141,5.5846294e-06 1466,0.52168053,311.104,18.43344,75.67209,2.7796984e-06 1466,1.1922063,218.38516,33.016598,182.37476,2.7780552e-06 1466,556.2744,429.39078,77.04169,70.35605,2.2226454e-06 1466,358.78247,430.22964,72.31058,69.8085,1.7232139e-06 1466,2.6484783,430.46893,45.23613,68.54358,1.4671384e-06 1466,399.82074,431.49387,72.35843,68.352295,1.2447975e-06 1466,1.4054493,20.25087,59.069344,116.19336,1.2306683e-06 1466,210.86224,395.1587,115.83319,99.59076,1.0239484e-06 1466,445.87033,430.96857,80.8624,69.69531,8.539921e-07 1466,3.395853,271.39578,56.688164,203.20068,8.146394e-07 1466,0.60031414,20.062122,16.975513,119.07034,5.524461e-07 1466,100.78316,394.08414,112.64276,100.37753,5.1288384e-07 1466,290.29294,428.51727,72.67676,71.58774,4.735102e-07 1466,174.89922,423.92978,72.28717,75.397644,2.889915e-07 1466,73.70317,427.07382,72.34369,74.21765,2.1349129e-07 1466,1.0026481,4.4316015,30.889814,64.70891,2.3861771e-08 1467,616.9105,133.04698,22.236145,83.23764,0.0011774488 1467,617.97766,202.73598,21.169006,81.56117,0.00048529447 1467,359.06033,186.99916,23.865234,48.571777,0.0004292672 1467,617.5724,259.92474,21.57428,87.09296,0.00026047247 1467,618.14374,386.9803,21.00293,81.01453,0.00022787777 1467,617.85583,330.33344,21.290833,85.17078,0.00021981691 1467,585.9348,95.8258,53.211853,238.56586,0.00019565457 1467,617.97046,73.91275,21.176208,80.96658,0.00016486662 1467,0.70528406,178.74146,17.872429,73.218506,0.00010821538 1467,2.5839145,144.91296,47.51691,167.00522,6.0347167e-05 1467,601.71497,262.5618,37.4317,194.04971,5.8094218e-05 1467,217.1685,196.3081,24.0197,45.857635,3.966616e-05 1467,609.687,438.94418,29.459656,65.71832,2.9614983e-05 1467,598.47626,5.16418,40.67041,82.009186,2.9493338e-05 1467,1.0096639,130.42094,17.922634,73.091125,2.0319187e-05 1467,0.745599,249.29642,18.224005,71.866394,1.9779827e-05 1467,0.4159371,301.7275,13.907556,47.9115,1.1332728e-05 1467,0.5917733,289.74997,19.578575,134.80984,9.7001e-06 1467,585.75507,389.15924,53.3916,106.65628,8.0917325e-06 1467,3.146403,213.29344,57.90165,219.17012,7.0366846e-06 1467,0.7422315,399.3658,18.210688,73.10275,5.1983334e-06 1467,1.4162272,458.45627,28.170275,45.903442,2.475939e-06 1467,1.2762142,347.34442,32.258896,144.47101,1.8101509e-06 1467,1.6806479,64.17257,32.094368,169.31866,1.1242033e-06 1467,6.717484,398.83713,92.34136,95.84491,4.021965e-07 1467,285.1599,391.41217,113.71265,103.75763,3.2963788e-07 1467,441.4506,428.91544,71.06955,71.25751,2.7090564e-07 1467,509.58667,428.78403,75.25055,71.790985,2.6100983e-07 1467,393.66943,429.59998,71.19125,70.61737,2.2153816e-07 1467,352.65396,430.12872,71.29559,70.45062,2.0516302e-07 1467,264.21335,430.85886,71.326294,70.18002,1.6027927e-07 1467,216.38712,431.5205,71.18265,69.30054,1.5079664e-07 1467,175.15614,431.9939,71.14201,68.80789,1.4473841e-07 1467,134.21446,432.2315,71.283844,68.67877,1.4451442e-07 1467,79.94776,432.46194,71.48867,68.822235,1.3094595e-07 1467,2.7722592,16.934616,82.57781,152.5931,6.244386e-08 1467,0.93303144,38.11583,19.956917,114.13425,6.101015e-08 1467,0.5879289,9.86972,8.589785,82.88285,5.4536226e-08 1467,1.9864519,12.041514,34.17208,72.76233,1.6926725e-08 1467,366.25015,1.6599463,43.683533,48.271824,7.2161144e-09 1468,617.76404,258.98767,21.38263,79.5914,0.0002644098 1468,617.938,151.4633,21.20868,81.35751,0.0002161957 1468,617.7518,77.87708,21.394897,76.77657,0.00012726334 1468,617.24744,196.63773,21.899231,84.16223,0.00012602465 1468,618.1586,381.98056,20.988037,80.494446,0.00011409162 1468,617.86237,314.7305,21.284302,79.90082,9.2973714e-05 1468,600.4642,5.5474677,38.682495,61.50794,5.1974705e-05 1468,341.5793,198.9485,33.957977,70.2383,2.8794573e-05 1468,602.1107,256.9856,37.03595,192.81036,2.8553552e-05 1468,609.75684,441.848,29.389832,62.65515,2.1869564e-05 1468,601.3121,116.2282,37.834595,194.16397,1.9357887e-05 1468,1.2172103,194.93864,18.070528,73.33522,1.6430427e-05 1468,0.76991296,358.8094,18.156168,70.00342,1.0494673e-05 1468,0.6463289,397.74026,18.323135,73.728546,7.642519e-06 1468,572.81604,364.38403,66.33063,126.446045,4.919093e-06 1468,0.6065845,298.25726,18.235285,74.32001,3.922426e-06 1468,0.53941405,253.02553,18.478275,76.48262,3.4370946e-06 1468,0.84917724,133.67674,18.369974,75.88243,3.13515e-06 1468,570.3269,16.998333,68.81976,124.9536,2.932678e-06 1468,1.4407113,458.56375,28.11983,45.680634,2.852279e-06 1468,0.9694222,60.13633,18.35401,70.26394,2.6888986e-06 1468,1.3211117,150.24988,33.605247,169.68741,2.2437896e-06 1468,1.3354973,278.81088,32.055386,168.97064,1.8899866e-06 1468,331.39853,145.6541,73.304474,160.98448,1.577752e-06 1468,5.4128485,143.8198,78.9816,256.3479,1.3092128e-06 1468,5.5877376,358.27277,78.75317,128.57224,7.6599554e-07 1468,502.62784,116.88214,76.48154,170.156,3.9739172e-07 1468,2.8379998,45.097076,59.57699,207.58571,3.2613195e-07 1468,28.242836,433.47318,75.40956,67.983826,2.6873488e-07 1468,161.69106,433.24716,70.66104,67.16034,1.576599e-07 1468,0.80748254,14.25304,12.692323,74.598465,1.5492606e-07 1468,100.29208,432.54044,70.956985,68.323425,1.5418054e-07 1468,209.64256,433.45157,70.84389,67.29184,1.4529049e-07 1468,250.52805,433.22308,70.859436,67.723755,1.4063194e-07 1468,298.32596,432.87247,71.08026,68.09479,1.3373763e-07 1468,352.84424,433.54037,70.80826,66.90558,1.3152165e-07 1468,510.0325,433.36948,74.9285,67.18631,1.2761721e-07 1468,2.2620296,16.002026,50.262352,60.603863,7.4149256e-08 1468,477.84662,1.495114,44.059082,45.618736,2.7633584e-10 1469,0.6012354,224.80807,13.9443245,60.40796,0.0049155946 1469,16.088661,203.71281,34.798607,68.2617,0.0014443573 1469,409.16403,213.60608,23.8779,46.950836,0.0013341128 1469,1.3138225,213.08862,27.841862,101.69565,0.0006611264 1469,618.2546,215.13786,20.89209,75.90904,0.0005221046 1469,0.9302466,180.0004,18.578772,82.66437,0.00049616926 1469,617.0757,329.37567,22.070984,86.406586,0.00029958264 1469,0.5950497,159.29889,13.920035,51.914673,0.00020947849 1469,617.42487,77.339935,21.721802,80.46265,0.00016150862 1469,0.94103193,80.59451,29.02168,163.82834,0.00015103872 1469,601.2378,204.5137,37.908875,186.83423,0.00014997658 1469,0.751355,75.484825,18.871752,77.61906,0.00014527165 1469,3.280928,109.70956,59.365047,220.60565,0.00011880024 1469,618.2875,395.2821,20.859192,79.071594,8.883332e-05 1469,617.447,272.80215,21.699646,86.03836,8.511782e-05 1469,612.0017,126.26741,27.144958,138.9344,5.8343296e-05 1469,615.7972,18.313665,23.349487,88.31369,4.632055e-05 1469,587.94214,309.2522,51.20453,173.45908,2.6939302e-05 1469,609.4482,440.56006,29.698486,64.924805,2.1388192e-05 1469,125.40155,164.29388,80.10985,154.8042,2.0065578e-05 1469,0.5718441,275.7565,18.415981,78.11978,1.3598989e-05 1469,584.5084,30.159233,54.19568,263.1592,7.4331842e-06 1469,0.521379,351.45718,13.692408,47.559082,7.003184e-06 1469,0.72957075,419.4469,13.515104,47.507996,6.114429e-06 1469,0.69624674,331.5486,19.37736,135.20813,5.508229e-06 1469,0.671593,392.74387,13.5533495,47.200714,4.9310797e-06 1469,1.1263762,443.1075,21.223927,60.68509,3.0958952e-06 1469,2.9885027,295.2668,57.277782,185.89111,1.2990467e-06 1469,4.163781,435.5184,67.09431,65.399414,4.222458e-07 1469,68.15847,428.2974,76.718666,72.2785,1.7590077e-07 1469,1.1172998,21.507761,30.106276,113.30735,1.6474688e-07 1469,0.88604003,5.5981054,20.224695,58.22097,1.21256e-09 1469,455.98938,0.0,43.48947,48.69349,2.8008032e-11 1470,44.131477,224.2561,24.862648,49.496124,0.5548778 1470,17.092083,221.13992,25.609241,51.80481,0.019406784 1470,621.5407,342.02646,17.605957,61.464417,0.0062029795 1470,621.2548,219.59029,17.891846,51.074448,0.0059388764 1470,132.7893,207.67743,51.103607,83.08365,0.003766244 1470,619.9687,175.6068,19.177979,54.991257,0.0022492034 1470,58.09211,228.68938,23.328827,45.463455,0.001720448 1470,608.7961,155.15025,30.350586,130.86153,0.0015710586 1470,612.1984,261.31967,26.948242,156.09894,0.0013911056 1470,620.741,108.1194,18.40564,55.162476,0.0010217525 1470,1.1330693,220.19688,13.234754,53.887955,0.00062771025 1470,26.087412,200.20825,53.62313,103.71295,0.00014939613 1470,572.69824,140.95538,66.4259,253.14648,0.000121659024 1470,1.3494263,171.89218,19.282188,135.05084,0.00011666665 1470,0.6497445,104.940834,13.747833,49.649864,7.193703e-05 1470,584.5697,19.38211,54.576965,241.63986,6.0185317e-05 1470,0.5579419,257.90707,18.209711,82.542114,4.4359847e-05 1470,614.08124,410.07535,25.06543,93.52872,3.8650196e-05 1470,0.7343799,131.06818,18.57646,78.90227,3.430814e-05 1470,3.6237924,117.908516,57.859764,219.39319,3.2786797e-05 1470,574.01746,350.3862,65.12921,136.15305,2.8471868e-05 1470,598.16644,0.9714909,40.980225,90.73949,1.9552217e-05 1470,1.4174707,220.52951,31.168592,177.75775,1.3061367e-05 1470,123.87852,165.35052,89.27441,202.35883,1.0329663e-05 1470,0.77672935,340.80392,19.275028,133.64587,5.351513e-06 1470,0.43892092,307.40466,18.51235,76.0972,4.894479e-06 1470,0.6196647,49.286278,14.172002,51.76612,2.6446373e-06 1470,1.1031885,443.0636,21.220947,60.768707,2.6006533e-06 1470,2.9914014,394.9593,57.205032,101.83331,6.9155743e-07 1470,75.059616,429.2547,76.37767,71.29556,1.6358085e-07 1470,1.0814136,24.562767,20.297272,120.65804,1.0235729e-07 1470,1.1215503,6.650357,19.33595,54.78309,2.778495e-10 1470,353.2942,3.0532439,42.117188,45.82473,1.1637651e-10 1471,119.40763,215.73407,24.566689,45.800537,0.0102302 1471,616.75055,246.3883,22.396118,79.82309,0.00035202585 1471,609.46326,0.0,29.68341,91.1237,0.00018262789 1471,617.4791,151.95923,21.667542,83.164246,0.00015070333 1471,617.4129,370.83203,21.733765,83.35922,0.00012628814 1471,617.9262,97.00279,21.220459,79.791,0.000121638615 1471,617.41437,298.8743,21.7323,82.720764,9.419993e-05 1471,601.07806,163.36316,38.068604,187.29883,5.4713815e-05 1471,609.3317,436.27917,29.814941,70.97824,4.3681986e-05 1471,46.279915,224.04123,26.02073,50.515717,3.501294e-05 1471,108.476585,199.12596,44.67048,95.620255,3.0256273e-05 1471,601.3284,275.02634,37.818237,191.33264,2.59403e-05 1471,0.9728003,220.69852,18.283016,77.42859,1.0647383e-05 1471,0.6256185,279.44315,18.30803,76.95322,7.979512e-06 1471,0.81605595,426.4338,13.249727,46.381042,7.1971685e-06 1471,0.47118896,372.19858,13.627843,46.817566,7.134952e-06 1471,0.8491431,347.8786,18.986835,131.76733,6.407341e-06 1471,0.87668866,119.783844,18.323435,72.61557,5.902371e-06 1471,0.9927356,188.31784,13.381018,46.62001,5.651074e-06 1471,1.2019638,443.6482,20.585508,59.879883,4.3771265e-06 1471,0.90047526,72.35543,18.15081,71.08161,3.999011e-06 1471,1.3868572,126.79029,28.132063,145.87408,3.3539927e-06 1471,573.79364,33.285706,65.35303,280.2212,2.4656938e-06 1471,3.2905715,147.1274,58.88751,212.97911,2.3127643e-06 1471,1.3294662,225.43546,31.482187,171.16217,2.1605988e-06 1471,5.774196,260.96094,78.53624,209.66669,1.4263319e-06 1471,554.7033,384.11542,84.44336,111.697876,9.669083e-07 1471,80.60703,150.01556,110.31426,225.10022,7.203525e-07 1471,3.2970345,395.33994,57.17246,100.42456,7.178507e-07 1471,127.72877,428.16595,70.49792,71.30759,3.295027e-07 1471,508.49933,427.27234,73.063354,72.73303,3.0341496e-07 1471,35.055447,433.6605,75.93791,68.18082,2.4569135e-07 1471,83.62347,427.33466,74.110634,72.911255,2.000049e-07 1471,586.6165,0.5607601,44.04828,49.600903,1.5975736e-07 1471,2.2170508,24.941397,57.564217,92.430534,4.6849628e-08 1471,3.9778647,35.34902,82.6945,215.04628,4.0120256e-08 1471,0.8554179,15.587718,12.6625805,70.25767,1.9517763e-08 1472,608.15906,248.55305,30.949951,73.765366,0.03738425 1472,614.4206,130.46802,24.566711,60.72957,0.029141843 1472,598.34467,169.23068,40.2265,189.551,0.0051866034 1472,616.81616,56.171368,22.330505,107.08403,0.0012981205 1472,1.1764209,201.23935,18.233498,82.12833,0.0012061851 1472,620.8578,203.45018,18.28888,54.658127,0.0010715775 1472,1.5282308,143.5062,32.60422,166.46957,0.00040344513 1472,617.403,306.64194,21.743652,88.1326,0.00030133198 1472,0.5794336,111.64191,18.514643,79.33241,0.00028573486 1472,618.1227,379.53372,21.023987,82.01358,0.00017051618 1472,0.9708537,159.48694,18.567923,77.201096,0.00014591926 1472,0.6268726,256.64328,13.430323,51.17459,8.160212e-05 1472,55.41678,188.63483,51.04815,98.24844,8.103685e-05 1472,599.9758,13.529962,39.170837,257.19907,5.7967816e-05 1472,611.2215,0.0,27.92517,102.57907,5.280578e-05 1472,588.0537,305.0044,51.092957,174.63843,3.0714516e-05 1472,609.73456,436.81897,29.41211,68.46057,2.8878287e-05 1472,4.4811883,124.90848,78.19725,263.05432,2.2073229e-05 1472,0.7792334,253.68016,19.219837,141.77458,1.2230064e-05 1472,0.80662274,360.6066,14.110203,131.46811,6.3968882e-06 1472,1.3498023,444.80408,20.606754,57.637695,3.38004e-06 1472,3.7281902,396.27032,56.479103,95.93411,1.3703198e-06 1472,557.04614,426.07947,78.13739,74.67355,5.9646237e-07 1472,223.83095,429.91122,70.744736,70.07858,2.9714937e-07 1472,325.82254,430.08664,70.980774,70.04385,2.9693408e-07 1472,26.26546,433.88345,78.12629,66.34515,2.9631173e-07 1472,277.34555,429.00708,71.64853,71.04245,2.818671e-07 1472,366.616,429.89502,70.54401,69.64734,2.816038e-07 1472,87.512054,429.7043,70.744354,70.80966,2.7434115e-07 1472,509.3455,427.8979,73.71622,72.3129,2.313822e-07 1472,0.651604,21.911003,19.957636,130.8121,2.2153985e-07 1472,2.208545,21.17392,81.33484,141.22551,1.0829493e-07 1472,585.77277,0.0,44.13202,45.093258,3.1085645e-09 1472,0.49231935,7.788415,20.49903,54.437153,2.217806e-09 1473,24.02265,247.51404,28.857512,58.72812,1.3552519 1473,621.8515,218.45738,17.295166,51.940414,0.00027878222 1473,617.53827,68.302956,21.608398,83.86828,0.0002347914 1473,618.12067,388.09085,21.026001,79.57178,0.0001920704 1473,617.86053,126.91378,21.286133,84.235405,0.00018648438 1473,611.5114,207.88055,27.635254,138.82779,0.00016238214 1473,5.3534017,208.5571,64.763504,121.97806,0.0001620041 1473,617.7162,287.71188,21.430481,85.21979,0.00010856881 1473,617.87427,340.7886,21.2724,81.63251,8.303797e-05 1473,1.1275773,258.99808,17.758505,76.619446,4.6128396e-05 1473,601.4241,95.2818,37.722595,203.97348,3.2906486e-05 1473,609.56836,439.09387,29.578308,66.49875,3.0919477e-05 1473,615.07294,12.811514,24.07373,91.66823,2.5974365e-05 1473,601.9623,272.09073,37.184387,199.87814,1.8529578e-05 1473,0.45681235,301.83478,13.554051,48.73111,1.0115447e-05 1473,585.3799,392.82895,53.766785,103.39758,8.256664e-06 1473,0.44298178,329.31592,18.580433,73.26068,7.749364e-06 1473,3.7489634,244.93488,56.90885,226.07513,5.755842e-06 1473,1.0996631,194.60432,18.342775,80.68715,5.359603e-06 1473,0.75528324,112.7005,18.288826,73.15132,5.065706e-06 1473,0.6078072,379.06287,13.612352,46.954865,5.055301e-06 1473,0.99031985,406.78796,18.052418,71.225525,4.6631963e-06 1473,0.7881795,153.87682,18.302628,72.6353,4.0613045e-06 1473,7.6572104,147.74956,119.11994,253.37404,2.9064722e-06 1473,1.0431014,70.757225,18.36587,73.064064,2.334249e-06 1473,1.8203133,95.28802,32.919205,197.85059,1.8163278e-06 1473,583.4325,0.0,55.714172,198.65303,1.2744215e-06 1473,2.546281,434.96198,45.31476,66.13574,8.916194e-07 1473,2.2578402,24.822739,55.006096,94.22544,4.200577e-07 1473,33.138115,432.8841,78.16896,68.980774,2.663762e-07 1473,3.7495282,36.546185,79.79765,242.88991,2.6434458e-07 1473,100.54211,428.044,71.32737,72.01044,2.4678474e-07 1473,481.88153,428.1003,71.73132,73.124695,2.3884184e-07 1473,291.18793,431.31473,71.41681,70.19217,1.0830609e-07 1473,0.90945965,14.655352,14.023636,70.83399,6.73561e-08 1474,1.2536336,183.19688,26.606993,70.60193,0.0009011941 1474,44.605453,218.26309,27.09227,60.641663,0.0007540535 1474,0.54422283,145.70586,18.761433,79.350525,0.00054929295 1474,0.6019507,77.99823,18.867264,77.779785,0.0003529052 1474,2.5868213,132.0718,51.048664,168.08015,0.0002011763 1474,617.48517,231.49873,21.661499,82.848434,0.00019501413 1474,617.5417,183.19664,21.60498,82.48958,0.00016801608 1474,617.60443,118.053,21.542236,78.91073,0.0001637355 1474,618.05615,387.73163,21.090515,79.79437,0.00015452085 1474,0.65288496,225.71092,18.430464,80.3701,0.00012857869 1474,617.92163,304.9331,21.225037,82.713806,0.00012352256 1474,617.4538,54.598312,21.692871,83.884766,8.7769e-05 1474,615.29785,16.01902,23.848816,73.12026,6.5738524e-05 1474,600.89667,200.1442,38.25,188.6128,4.019728e-05 1474,602.9957,306.5908,36.15094,178.7438,3.0797994e-05 1474,609.2743,438.09836,29.872375,66.53854,2.5571328e-05 1474,601.32654,92.85116,37.82013,195.86334,2.190956e-05 1474,1.065804,202.38084,33.451008,189.35652,1.1566214e-05 1474,0.8892798,426.78384,13.322362,47.004242,5.005562e-06 1474,0.5056165,331.0446,13.740592,47.756104,4.3393375e-06 1474,5.6513186,174.4347,79.30502,270.74542,4.2405554e-06 1474,0.783134,320.3308,19.43613,133.90909,3.8538888e-06 1474,0.4876888,279.59604,18.59428,75.94855,3.8346193e-06 1474,1.7317204,456.88812,28.192083,47.078125,3.572091e-06 1474,554.7805,390.2255,84.36615,103.94476,2.424672e-06 1474,1.8325049,22.223577,58.201717,113.16006,2.214124e-06 1474,3.4139454,398.63416,57.37732,98.369446,1.230997e-06 1474,19.596657,395.8926,125.2306,98.86798,3.7269317e-07 1474,326.05215,392.14685,114.02838,103.18393,2.5510025e-07 1474,0.44577435,8.227432,7.803781,90.74198,2.5375167e-07 1474,99.806885,431.0946,72.00937,70.6741,2.4935582e-07 1474,475.405,430.43365,71.03293,70.23532,1.9526858e-07 1474,414.08853,431.13892,70.98471,69.23099,1.7573714e-07 1474,140.39667,430.51962,72.00754,70.71091,1.7140019e-07 1474,311.97122,432.00903,71.3858,69.41458,1.4199739e-07 1474,271.1951,432.693,71.09534,68.7988,1.3025368e-07 1474,230.09036,433.3785,70.81918,67.7554,1.2988257e-07 1474,1.1675489,7.097982,29.68504,56.628757,1.3692366e-08 1475,326.5965,227.03943,25.556702,50.296936,0.28810823 1475,620.81647,257.5427,18.3302,63.055664,0.015065097 1475,610.75116,166.80487,28.395508,147.5517,0.0051181507 1475,620.76135,220.02022,18.385315,58.682327,0.003759706 1475,8.299613,212.36182,33.289387,67.28662,0.002548504 1475,2.9747233,123.5509,48.477257,185.42749,0.0020780177 1475,621.25555,135.78807,17.891113,53.693665,0.0014543602 1475,0.37355143,105.31676,19.269632,76.68532,0.0010709299 1475,1.3776156,224.63358,18.141426,77.75879,0.0009020866 1475,610.1007,74.159485,29.04596,154.44156,0.0005261408 1475,0.77974695,166.70854,19.129068,80.655,0.00038017135 1475,572.197,113.47181,66.949646,249.75339,0.00029384895 1475,612.7297,243.19376,26.416992,154.63257,0.00023416303 1475,612.76166,357.2463,26.38501,109.82266,0.00014960858 1475,615.81757,47.143127,23.329102,90.80002,0.0001351239 1475,0.64220625,266.33594,18.382893,81.46268,8.648436e-05 1475,1.4912549,238.48097,31.391695,178.45659,2.6616055e-05 1475,584.89636,9.097168,54.250305,119.1051,1.33314215e-05 1475,5.919385,203.54741,76.55745,254.16646,1.1684553e-05 1475,0.7271989,318.20563,19.159431,138.05591,9.974798e-06 1475,574.4678,419.5703,64.678894,80.4624,8.692031e-06 1475,0.6846045,384.92877,13.575089,47.79117,6.5884515e-06 1475,1.2985644,20.577332,64.70684,208.17062,5.0832437e-06 1475,1.1725293,395.56204,27.39214,102.254944,3.2267212e-06 1475,0.9132422,21.348953,29.178452,119.38402,1.3843481e-06 1475,4.3086395,435.66736,67.045975,64.62787,7.509936e-07 1475,448.3485,426.2534,76.51947,73.558716,7.113425e-07 1475,0.42719483,9.166755,7.7899723,87.29819,4.0566883e-07 1475,502.6185,429.45193,72.01425,71.22089,3.905925e-07 1475,93.27642,427.4075,72.45023,73.84314,3.11795e-07 1475,47.65076,430.19736,78.06122,70.55676,2.9855144e-07 1475,366.1293,428.84573,71.559204,71.70511,2.1127065e-07 1475,284.69318,428.15732,72.00568,73.34686,2.0303908e-07 1475,325.22147,429.16946,71.70245,72.21576,1.974389e-07 1475,230.07251,429.33768,71.63803,71.78708,1.9679673e-07 1476,620.6047,210.96237,18.541992,54.428284,0.0040960573 1476,1.5380893,174.98947,34.585407,101.89349,0.003757946 1476,621.63367,80.42238,17.513,52.85994,0.0019518475 1476,611.37244,152.15591,27.774231,140.50385,0.0016331009 1476,621.50104,120.94282,17.64563,54.235573,0.0012842714 1476,1.0977726,216.67632,18.595072,77.40373,0.0011602993 1476,0.80484784,185.61908,14.288359,57.35106,0.00096671237 1476,0.47026938,111.78196,18.964916,79.72141,0.0007635432 1476,617.1452,236.64282,22.001465,79.88873,0.0005824711 1476,2.9545133,114.61949,58.678722,208.08403,0.0005481663 1476,610.97186,67.47794,28.174805,146.60391,0.0005195625 1476,617.54395,389.45358,21.602722,81.761475,0.00025923733 1476,618.0632,294.78867,21.083496,83.472015,0.00015259659 1476,0.49292237,263.5273,18.411283,80.60101,0.000115922136 1476,587.20447,174.41237,51.9422,224.64088,8.4536085e-05 1476,608.9857,436.1271,30.16095,69.150055,8.4217754e-05 1476,572.52966,14.435625,66.617004,272.97186,6.537729e-05 1476,601.32935,306.3675,37.81732,186.83585,5.595494e-05 1476,0.47657186,314.81418,13.645054,49.025818,4.8207574e-05 1476,609.057,5.206706,30.08966,111.31559,3.474064e-05 1476,1.3560206,256.955,32.119625,180.47128,1.9693358e-05 1476,0.6219727,335.35153,18.4907,75.74896,1.112627e-05 1476,5.187077,203.26617,76.65801,259.45468,7.984642e-06 1476,0.96632487,379.42688,18.455647,72.2345,7.4004497e-06 1476,0.64625245,22.994883,17.985607,135.84924,7.3863484e-06 1476,0.8639673,419.86447,14.069422,82.99695,6.52435e-06 1476,1.7394124,19.937918,58.15689,112.527794,3.7966952e-06 1476,3.354048,395.23706,57.316654,99.94925,2.351754e-06 1476,555.9824,425.18716,80.8609,76.280914,1.9629597e-06 1476,0.4467631,10.541146,8.280739,85.84742,1.1527194e-06 1476,502.89658,427.4348,78.42746,73.74521,5.9842466e-07 1476,74.07256,432.1866,71.851234,68.91235,5.177777e-07 1476,461.75027,427.83517,74.25357,73.17078,4.6208814e-07 1476,414.55603,428.44812,74.02112,72.42209,3.8613618e-07 1476,270.8405,427.9254,72.27466,73.53256,2.8991013e-07 1476,338.89447,428.13422,72.26779,73.27136,2.8765677e-07 1476,141.066,427.34805,72.6626,74.368835,2.4836476e-07 1476,223.32838,429.18527,71.920364,72.076355,2.3885687e-07 1476,0.97169924,7.693229,30.346724,57.976524,8.52218e-08 1477,609.0669,228.78792,29.943665,62.060043,0.031396464 1477,236.72792,212.53908,25.158737,49.240677,0.005416004 1477,441.42606,223.6872,39.14511,79.79816,0.00067886256 1477,0.48130697,172.08122,13.859198,50.767853,0.0005151232 1477,599.47284,129.79872,39.67383,201.4067,0.0003226751 1477,617.63055,91.411224,21.516113,80.60666,0.00032079854 1477,617.9751,273.18665,21.17157,87.57385,0.00027857866 1477,0.5660669,125.9304,18.734438,76.73911,0.00025289474 1477,0.7455477,154.4473,19.376278,139.81738,0.00024422546 1477,621.45465,184.52922,17.692017,54.261963,0.00022937501 1477,622.4687,395.11053,16.677979,50.709534,0.00017276985 1477,617.76166,329.87292,21.38501,85.0961,0.00015920677 1477,4.6691833,117.373634,79.64981,254.07095,5.9349844e-05 1477,602.90686,267.39038,36.239807,210.03201,4.839999e-05 1477,614.8515,14.8435,24.295166,87.078896,3.293358e-05 1477,609.29584,438.4938,29.85083,67.87808,2.9822952e-05 1477,0.66534346,240.28282,18.989826,135.13316,2.8610631e-05 1477,0.88677657,47.07392,20.524145,107.795815,6.139332e-06 1477,0.65378255,329.5278,18.258902,73.20993,5.8517376e-06 1477,0.7804037,359.90292,17.325258,132.8847,4.6946548e-06 1477,1.5182064,281.89203,31.958158,173.30215,2.5992001e-06 1477,561.25476,389.96164,77.89191,106.75708,2.3086038e-06 1477,598.3596,0.0,40.78705,202.58376,1.6134398e-06 1477,3.23473,395.81317,57.704712,99.29642,1.2303915e-06 1477,2.0612206,18.80876,57.528244,117.12775,1.0509111e-06 1477,80.90306,431.5392,71.57037,69.810394,3.1177714e-07 1477,0.50065917,9.121758,8.128738,87.15071,2.3974144e-07 1477,523.025,429.39215,75.82568,72.52527,2.2568751e-07 1477,120.62153,431.00745,72.30787,71.38913,2.0758814e-07 1477,421.13748,431.00314,71.53848,69.80536,1.91464e-07 1477,291.7538,432.82483,70.89511,68.291595,1.626717e-07 1477,161.44406,430.7358,71.80928,71.022736,1.504209e-07 1477,468.7021,430.73965,71.96594,70.67203,1.3013525e-07 1477,1.1484343,7.169748,30.253933,56.278915,2.1636815e-08 1478,617.16113,193.20735,21.985535,81.01436,0.00033558405 1478,617.8512,82.82167,21.295471,81.324875,0.00030887697 1478,617.8445,131.39323,21.302185,81.87271,0.0001599673 1478,617.3822,252.91284,21.764465,83.72272,0.00015926296 1478,617.7994,339.6343,21.34729,80.299866,0.00015198601 1478,617.9091,392.91138,21.237549,81.855194,7.423946e-05 1478,611.14355,15.145401,28.003113,90.15749,6.79903e-05 1478,601.5538,85.01042,37.592896,210.69313,3.7016853e-05 1478,588.79926,260.08945,50.347412,211.53058,1.7434242e-05 1478,0.7136174,227.74686,18.28647,73.63794,9.2053015e-06 1478,570.86646,28.127182,68.28021,118.984665,5.1287634e-06 1478,0.91733074,387.2063,15.431174,111.44086,4.7684575e-06 1478,0.73368245,318.88254,18.219206,71.38733,4.2131282e-06 1478,595.1516,439.2169,43.995056,65.4686,3.63647e-06 1478,0.9048812,360.1642,18.211672,69.9509,3.5631494e-06 1478,1.4498414,329.5905,31.206749,156.11768,2.4194237e-06 1478,0.81110436,77.46084,18.794792,132.72675,2.3766588e-06 1478,0.7903353,168.5605,18.214893,72.270645,2.2993313e-06 1478,557.58594,187.60321,81.56073,180.49869,2.0538237e-06 1478,561.0181,384.3249,78.12854,111.1799,1.6996072e-06 1478,1.2391016,204.60399,32.894936,167.4612,1.2409027e-06 1478,2.5122023,435.62372,44.568226,64.5011,1.229894e-06 1478,4.825586,117.350395,80.924614,252.09976,1.0478068e-06 1478,5.8580046,362.9826,78.893486,125.14188,8.7159657e-07 1478,450.362,429.55957,75.658325,70.9758,8.4125895e-07 1478,347.31903,142.09,74.10028,173.34277,4.903727e-07 1478,74.63165,432.0846,70.36467,68.50162,4.2795793e-07 1478,0.8644035,23.909786,16.004337,111.91298,3.9770867e-07 1478,114.07029,430.1963,71.37948,71.95737,3.0084598e-07 1478,407.0809,428.30978,72.40781,71.687775,2.7189122e-07 1478,2.464079,24.545437,56.119102,96.38423,2.7027906e-07 1478,168.53964,430.21506,71.214294,71.51865,2.1623872e-07 1478,209.91881,432.39896,70.696365,69.040436,1.8503216e-07 1478,502.8598,430.33804,71.13904,70.29227,1.7724793e-07 1478,250.94273,432.70474,70.58119,68.72604,1.6962221e-07 1478,291.7996,432.54263,70.73053,69.06357,1.6867338e-07 1478,332.66367,431.9215,70.83099,69.491486,1.618602e-07 1479,229.47787,205.99547,24.637604,48.219147,0.015729327 1479,622.1644,267.4174,16.982239,53.574097,0.0071020885 1479,5.419292,213.67058,22.869692,49.405167,0.0037469813 1479,609.5961,196.66496,29.550537,136.62141,0.0035329089 1479,566.89044,144.21216,71.43036,238.22858,0.003074949 1479,621.0017,126.34537,18.144958,56.90239,0.0015650039 1479,621.6788,72.787315,17.467896,52.55719,0.0013083126 1479,183.17477,207.9187,23.74205,48.871155,0.001308032 1479,1.0021534,164.52547,18.600622,82.32295,0.00119086 1479,1.4813428,117.381256,33.854675,172.71338,0.00087065325 1479,610.22687,91.57682,28.9198,153.50241,0.00086936064 1479,618.1175,312.44846,21.029175,77.61478,0.000691592 1479,569.2371,226.35675,46.29236,104.15634,0.0006464338 1479,389.53177,160.4697,61.35846,152.31561,0.00049291796 1479,0.40858075,106.74504,19.059435,77.79231,0.00038596377 1479,0.8868274,229.63248,13.617659,54.54425,0.00024989335 1479,601.29614,264.83646,37.279602,163.41742,0.00016801254 1479,0.8851148,198.05653,19.886719,130.50893,0.00015084294 1479,608.9264,391.64752,30.220276,107.55417,7.051773e-05 1479,608.2052,3.0897787,30.941467,136.87486,4.6668003e-05 1479,574.00085,338.6731,65.14581,142.46295,3.753744e-05 1479,4.789704,130.45099,78.21701,252.1246,3.173326e-05 1479,0.31623334,281.59024,13.725698,47.297455,1.1799039e-05 1479,0.69707686,327.7215,18.517729,129.07257,8.503548e-06 1479,0.81836754,421.45023,13.781287,81.13895,3.4860573e-06 1479,0.5761255,18.229265,17.483213,128.60994,2.1085007e-06 1479,3.3141196,267.67188,57.774033,206.31335,1.5521925e-06 1479,2.2992952,433.76974,45.587635,66.246,1.0344742e-06 1479,458.03625,429.77518,75.59015,71.81732,8.533538e-07 1479,1.3598112,15.620821,59.18583,119.28525,7.0866787e-07 1479,101.13605,431.9579,72.196976,69.93317,4.343202e-07 1479,517.04346,430.13477,70.93396,69.333466,3.7849435e-07 1479,400.40677,428.4824,72.39017,72.26459,2.1730666e-07 1479,147.97668,428.17688,73.207535,74.26813,1.9973803e-07 1479,298.5859,431.6736,71.42755,69.96362,1.5868594e-07 1479,250.78337,432.4836,71.34285,69.15927,1.511125e-07 1479,339.5309,431.54233,71.33673,69.9108,1.4708334e-07 1479,189.17166,430.83218,71.95325,71.20105,1.4601947e-07 1479,0.87656087,6.95459,30.844378,57.481102,1.2394497e-07 1480,216.95946,199.37437,25.296616,49.948776,0.022903234 1480,1.2262086,205.70071,26.133142,59.17859,0.0035703953 1480,572.03827,121.03379,67.1084,252.14328,0.00094966136 1480,611.77734,88.043335,27.369324,148.4257,0.0009486657 1480,617.20734,197.2262,21.939331,88.367035,0.00055968243 1480,617.5934,292.40564,21.553284,88.90915,0.0005595917 1480,2.3932178,154.44347,50.3564,152.3091,0.00030266252 1480,616.7389,47.98488,22.407776,88.32231,0.00025809865 1480,0.6164706,241.1491,18.322084,74.8835,0.00024611043 1480,602.05994,226.69958,37.08673,190.02762,0.00013043894 1480,615.0256,418.70258,24.121094,85.13443,0.00012390672 1480,0.25741294,137.99586,19.434996,74.93527,9.695343e-05 1480,0.70072514,83.86632,19.308372,73.89201,1.9466075e-05 1480,573.85895,352.22116,65.28772,131.31812,1.9384082e-05 1480,596.6299,4.415,42.516785,84.099014,1.0623203e-05 1480,1.407103,232.6143,32.02826,175.91652,8.842157e-06 1480,5.712643,192.4113,77.334724,258.02258,8.828725e-06 1480,0.6915601,353.20724,18.387428,70.09918,5.1944185e-06 1480,0.88033044,392.5372,15.528951,106.986145,4.311444e-06 1480,582.5307,0.0,56.615967,213.61353,4.052916e-06 1480,0.40325767,302.14502,18.453999,74.96469,2.7460146e-06 1480,0.9706088,60.271152,34.504887,191.21407,2.5145073e-06 1480,1.4509652,330.23813,30.346945,156.71335,2.263675e-06 1480,2.4264014,434.3807,45.422787,65.49783,1.0185917e-06 1480,1.7563542,20.928328,83.17245,134.1925,5.033688e-07 1480,312.5532,393.591,113.82037,102.30838,4.6024797e-07 1480,377.6323,394.15558,117.967255,101.54147,4.2107163e-07 1480,224.10336,432.50287,71.40048,68.5087,2.9710517e-07 1480,278.12308,429.81213,72.36401,71.02237,2.5950771e-07 1480,0.683645,10.048444,10.378737,88.56314,2.0377145e-08 1480,1.3963933,7.7858987,40.107086,88.68219,8.057131e-09 1481,616.5798,247.64844,22.566895,68.08246,0.006161863 1481,620.7254,67.326385,18.421265,56.42768,0.004249624 1481,216.24173,237.6199,26.797836,49.781372,0.0018683737 1481,156.73387,239.00092,21.536194,46.493652,0.0013620923 1481,12.46837,239.35457,24.911882,53.304398,0.001071034 1481,599.8953,125.34597,39.251343,204.10818,0.00077285 1481,611.7721,274.1118,27.374573,131.6051,0.000533728 1481,1.1689035,240.68616,13.404642,52.795288,0.00039513392 1481,616.6523,180.58951,22.494385,88.023285,0.00020818698 1481,168.9524,249.56905,22.804993,47.987564,0.00020155191 1481,615.1576,414.7885,23.989075,89.83719,0.00015790366 1481,616.62555,124.43667,22.521118,83.614845,0.00015054058 1481,608.86487,7.001771,30.2818,132.34003,0.00010302721 1481,1.3138062,220.62967,19.34118,128.4065,6.363775e-05 1481,2.4214697,191.63129,49.855835,162.0586,5.015444e-05 1481,573.89087,353.1117,65.2558,129.44144,3.1383395e-05 1481,0.5195488,301.36157,13.531403,50.31366,2.55907e-05 1481,1.6405257,256.9925,32.043324,181.7561,1.2156759e-05 1481,1.1321265,174.95094,18.423376,78.17618,8.483217e-06 1481,0.50412273,322.0538,18.422825,73.54724,7.553208e-06 1481,0.64344525,378.65887,13.558744,46.96167,6.1028127e-06 1481,1.0260441,406.3548,18.139202,70.58276,5.2944956e-06 1481,0.85279137,126.54573,18.356674,73.60135,5.20511e-06 1481,1.4694906,61.419155,18.478632,74.796234,3.3051504e-06 1481,1.8162842,88.76872,33.104927,201.05482,2.1215753e-06 1481,3.2402148,395.0994,57.530334,99.2901,1.1150464e-06 1481,462.1184,429.8713,71.1355,68.3295,1.1025287e-06 1481,2.333454,19.965137,55.68906,99.767365,6.715781e-07 1481,422.30045,427.29062,73.36359,71.38321,5.6763383e-07 1481,353.56696,391.8338,118.85919,101.23813,4.9936966e-07 1481,108.48562,432.11636,71.87774,70.08536,2.504641e-07 1481,326.2069,427.40045,71.56354,73.268036,2.2461393e-07 1481,57.729664,435.75546,74.65871,65.86334,2.2450813e-07 1481,169.21336,430.12036,71.87097,71.5636,2.1505906e-07 1481,216.88818,429.03824,71.84421,72.14578,2.0597702e-07 1481,278.13916,428.55676,71.59726,71.95279,2.0550142e-07 1481,1.8237321,7.916644,22.516985,75.27848,9.696535e-09 1482,215.21786,193.10983,29.045532,46.328094,0.03231609 1482,620.2062,412.25775,18.94049,59.51538,0.0021349206 1482,585.102,401.18063,54.044678,103.92798,0.00035054816 1482,617.67065,150.34644,21.476013,89.553986,0.00029348157 1482,617.96313,89.05215,21.183533,79.671074,0.00027882584 1482,617.66516,230.12029,21.481506,77.99452,0.0002333634 1482,618.2715,300.7974,20.875183,79.25079,0.00012995445 1482,617.8768,342.27106,21.269897,86.28879,0.00012363712 1482,1.1356356,196.0466,18.354912,77.92523,9.2990034e-05 1482,602.0925,73.601524,37.05414,200.37732,8.049444e-05 1482,614.72705,11.680293,24.419617,84.75689,5.3720585e-05 1482,0.6275228,244.82074,18.216875,76.91104,3.2852273e-05 1482,602.5556,264.6769,36.591064,208.45624,2.645632e-05 1482,449.47882,191.29979,23.553802,47.911026,1.5433869e-05 1482,1.5984375,151.57149,34.47964,170.43477,1.0590145e-05 1482,0.43227133,293.33884,18.478123,75.19525,9.245808e-06 1482,0.97124594,400.04596,18.145967,71.183105,5.56877e-06 1482,0.921971,104.44795,19.590122,144.45512,4.947585e-06 1482,0.511084,344.93857,13.647674,46.934998,4.26284e-06 1482,0.73253095,359.2671,18.235262,72.05441,3.9088186e-06 1482,0.7652466,71.92932,18.398045,72.22699,3.1163938e-06 1482,1.2695321,443.49658,20.839197,60.094635,3.0726933e-06 1482,1.3313249,296.981,32.227417,174.17386,2.1015828e-06 1482,4.791452,108.748116,79.35872,257.72647,1.4964204e-06 1482,3.4732049,397.71606,57.31322,98.214874,8.619189e-07 1482,93.301125,427.347,71.48446,74.32761,2.467885e-07 1482,147.85527,428.48297,71.62273,73.428925,2.0433978e-07 1482,47.72329,433.5955,77.40992,68.78296,1.7702155e-07 1482,387.0747,431.1513,71.28494,69.93802,1.5667484e-07 1482,209.7807,431.8524,71.166534,69.462006,1.5442097e-07 1482,2.2736084,25.082159,56.718178,88.71029,5.997658e-08 1482,1.1056918,15.924067,14.203588,67.32103,1.1718362e-08 1482,54.98633,1.9219337,41.813293,46.68016,4.441191e-10 1483,618.4519,374.2309,20.694763,81.0202,0.00017155551 1483,618.1608,192.47154,20.98584,78.494064,0.00017076157 1483,127.44673,221.14781,24.692657,48.41951,0.00014875666 1483,617.8219,69.10049,21.324768,79.875725,0.00012758706 1483,618.10254,316.93707,21.044128,77.46115,0.000121499485 1483,617.83856,238.77243,21.308105,77.714935,0.00012076776 1483,617.8949,129.83585,21.25177,80.2554,0.00010691039 1483,1.2863395,210.28806,18.119143,72.7135,2.5361107e-05 1483,602.60675,267.25214,36.539917,189.56064,2.2394035e-05 1483,602.8398,118.66253,36.306885,184.84177,1.8385168e-05 1483,1.0731649,154.94193,18.44178,72.93811,1.4321937e-05 1483,597.03503,6.660238,42.111633,76.94309,9.942374e-06 1483,585.80884,391.6266,53.33783,105.97461,5.9837466e-06 1483,0.76761395,100.904915,18.598223,75.49345,5.714209e-06 1483,0.4244096,310.03735,13.78933,47.194763,5.342151e-06 1483,1.0051229,406.8259,18.06646,70.60504,5.2039286e-06 1483,1.8322787,118.738,33.603283,172.4404,5.097555e-06 1483,0.627452,345.73813,18.298504,72.19675,4.4946482e-06 1483,0.68306154,256.47943,19.597935,137.18564,4.405361e-06 1483,1.5180013,330.24796,32.239967,157.44006,1.8989984e-06 1483,2.3039763,209.53339,47.25618,163.1683,1.7393645e-06 1483,584.40015,5.704499,54.74652,208.70822,1.0441041e-06 1483,2.5813022,434.6554,45.415104,65.879395,9.4599005e-07 1483,21.77948,397.96463,123.280136,99.4393,5.546274e-07 1483,1.0488591,24.578028,18.01936,119.90688,3.1225622e-07 1483,100.76576,428.7872,70.848404,70.72568,2.4080143e-07 1483,4.5656643,48.0134,79.991325,262.5455,2.2436856e-07 1483,154.89917,431.78955,71.03552,69.46933,1.8243402e-07 1483,509.9027,431.98834,75.25232,69.49219,1.6665136e-07 1483,455.44,432.241,71.25104,68.77817,1.5721577e-07 1483,196.0268,433.106,70.936615,68.00995,1.4157958e-07 1483,346.07434,432.87885,70.870056,68.10367,1.3900069e-07 1483,236.97194,433.49066,70.81917,67.38257,1.3824845e-07 1483,278.05746,433.74423,70.77435,67.37103,1.3775701e-07 1483,2.4810646,21.948452,57.055786,98.44028,1.277653e-07 1484,182.23587,216.16418,27.126785,52.076782,0.1421395 1484,121.04606,224.52118,23.23632,47.371887,0.014763561 1484,455.54318,194.04466,35.682465,68.73143,0.0035718938 1484,0.93939865,227.57219,18.494715,82.86937,0.00044686726 1484,618.08777,379.83606,21.058899,80.37842,0.00031688882 1484,163.86682,180.8074,36.911102,70.60278,0.0002753962 1484,617.88306,213.17412,21.26361,83.76192,0.0002462771 1484,0.67071456,138.61069,18.70227,80.29254,0.00021569071 1484,617.8066,55.762234,21.340088,83.02229,0.00020233229 1484,617.8621,129.68182,21.284546,80.52646,0.00015250959 1484,617.8504,264.41434,21.296265,79.19168,0.0001512437 1484,1.5216277,104.021805,32.000957,185.31728,9.231973e-05 1484,0.77235514,72.45742,18.788378,77.05938,6.400941e-05 1484,602.7484,273.53876,36.398254,194.35834,3.6919617e-05 1484,609.161,435.67856,29.985657,70.55051,3.177557e-05 1484,602.3923,85.75633,36.754395,200.06346,2.6519774e-05 1484,4.7653093,100.2221,79.531685,251.97797,1.7030314e-05 1484,0.9457699,221.83984,31.244255,178.10236,1.4067205e-05 1484,596.83813,2.5741212,42.308533,83.29062,8.783727e-06 1484,0.34765136,291.25885,18.565886,77.19333,7.1843447e-06 1484,0.8033667,339.04736,19.368052,132.9437,5.905783e-06 1484,0.44860923,337.09933,13.777314,47.449005,5.334148e-06 1484,0.8794011,422.1495,13.911305,80.42737,3.540239e-06 1484,2.8526986,267.43213,57.042942,210.66675,1.4995919e-06 1484,2.5689812,434.02313,45.29893,66.49536,9.834396e-07 1484,556.7573,425.96448,78.94873,75.78549,8.004752e-07 1484,47.530357,433.04044,77.83141,69.32727,1.8410735e-07 1484,325.71555,430.9967,71.49713,70.18405,1.5500999e-07 1484,0.4750106,8.224551,7.469059,88.023605,1.0427741e-07 1484,1.7841603,16.457018,59.70739,117.457596,9.7464195e-08 1484,1.4937419,5.164997,29.839169,58.337284,5.4574287e-09 1485,40.955357,226.38998,34.858303,65.71051,0.04001943 1485,1.2513753,207.75682,26.309282,71.30199,0.00159063 1485,430.53305,197.18234,33.54416,71.971405,0.001257635 1485,617.67755,190.47928,21.469116,84.194855,0.00066732394 1485,618.12177,387.541,21.024902,79.56882,0.0006542746 1485,617.42163,63.049168,21.725037,84.1178,0.00043417653 1485,0.78253096,194.61739,13.820622,55.70262,0.0003431682 1485,617.317,111.57585,21.82965,83.99774,0.0003217431 1485,617.6236,237.08246,21.523071,82.932434,0.0002906198 1485,0.53149337,144.91667,13.803481,52.457504,0.00023085129 1485,2.282015,176.818,48.787888,173.90186,0.00022954111 1485,21.774235,159.57727,77.40979,180.3135,0.00022515508 1485,600.58093,81.840675,38.565735,202.30856,0.00015341006 1485,0.5309261,74.046616,18.95996,82.36449,0.00014915981 1485,618.1599,308.3111,20.986755,83.227875,0.00011058521 1485,0.69861573,242.9255,18.648172,83.74838,7.982706e-05 1485,420.3537,127.43805,70.392914,173.40088,7.880275e-05 1485,607.40967,1.9121712,31.737,63.119057,7.306339e-05 1485,571.3309,366.45312,67.815796,122.54938,5.0316463e-05 1485,587.80566,173.01611,51.341003,239.98291,4.863551e-05 1485,0.505448,306.93228,13.614477,50.60782,3.3918786e-05 1485,584.7587,6.0847135,54.38794,118.57466,1.9259554e-05 1485,0.29497153,329.02167,18.619421,75.63953,1.567877e-05 1485,594.74567,436.01837,42.987305,68.45624,1.4558924e-05 1485,1.0569011,249.66162,32.340004,181.41922,1.2507955e-05 1485,0.8721712,391.9798,18.178085,74.592285,7.690907e-06 1485,5.6494856,246.8368,76.22404,221.60442,6.8100235e-06 1485,523.57886,418.96674,77.208496,78.72119,5.3537183e-06 1485,0.79440755,58.80313,34.171585,204.8417,3.793134e-06 1485,1.9445639,421.37317,33.80481,78.28674,1.9560382e-06 1485,482.36127,422.13495,77.26819,77.10907,1.6457486e-06 1485,15.168051,432.79257,75.38876,67.58176,6.1620307e-07 1485,325.17523,426.25378,71.690216,74.48294,2.9756907e-07 1485,58.874195,429.98782,72.66025,70.947754,2.910154e-07 1485,113.52006,428.7045,72.10497,72.83771,1.7216394e-07 1485,223.16638,429.0903,71.3259,72.04913,1.721357e-07 1485,154.87921,429.91418,71.33917,71.30859,1.5424554e-07 1485,0.89018965,33.88067,19.421282,72.02364,9.134528e-08 1485,2.324598,19.47536,58.361954,111.351974,4.6651937e-08 1485,0.8388477,5.6805277,19.675188,57.50898,3.4115908e-09 1486,1.2716382,217.2903,25.73047,73.43025,0.0066092415 1486,418.41592,222.92053,24.910797,53.78003,0.0035679005 1486,621.67206,100.2607,17.47461,52.93666,0.001732074 1486,2.1207504,143.56902,47.868774,176.03267,0.0008059845 1486,617.8915,206.84328,21.255188,83.63551,0.00076558045 1486,617.3994,141.80656,21.747253,85.48938,0.0004786117 1486,617.63513,267.26505,21.511536,83.68472,0.00030612652 1486,616.4274,48.017933,22.719238,88.76213,0.00026879917 1486,0.49269938,97.35569,20.536505,161.50226,0.00014524105 1486,617.9166,358.50424,21.230042,80.08374,0.00013655864 1486,0.6059554,119.21667,13.739773,50.42176,0.00012949793 1486,601.1525,100.47001,37.99414,210.52505,0.00011405964 1486,606.6545,1.1936556,32.492188,64.65319,8.0433594e-05 1486,613.9097,417.41547,25.236938,86.207825,7.4665615e-05 1486,400.04758,116.9936,70.91983,178.42792,7.36568e-05 1486,0.6334123,61.740276,18.791273,77.917496,6.925067e-05 1486,602.705,268.5899,36.44165,197.7037,4.2025666e-05 1486,0.49535647,261.13318,18.352196,81.15744,2.526281e-05 1486,1.2025733,257.74527,31.61175,185.2225,7.3651336e-06 1486,0.8255477,345.50534,19.40207,132.13638,7.1108097e-06 1486,0.60456055,316.79187,18.295986,72.07974,6.763229e-06 1486,597.3314,0.0,41.815247,192.06665,5.1830666e-06 1486,5.1811266,250.00478,78.62046,217.35051,4.970778e-06 1486,0.8461532,421.38156,14.177516,80.944916,4.0260807e-06 1486,555.0778,393.22025,84.06885,102.77603,3.362909e-06 1486,2.020814,23.644753,84.2907,251.2952,1.7328116e-06 1486,2.3868914,433.01544,45.786373,68.01535,9.4548494e-07 1486,1.2239356,14.358255,58.98948,118.29475,4.5329318e-07 1486,516.3799,427.78174,76.94977,73.240875,3.8300635e-07 1486,468.8798,426.9062,74.28311,73.944305,3.0464955e-07 1486,311.6859,427.3804,71.85812,73.635956,2.7654187e-07 1486,270.9652,428.0112,71.7583,73.04913,2.7495878e-07 1486,35.454056,432.0786,76.09864,70.02072,2.15616e-07 1486,168.5202,430.56052,71.45418,70.332245,1.8646205e-07 1486,114.01969,430.0443,71.637184,71.270966,1.6709505e-07 1486,1.0121444,22.991896,20.500362,75.364655,3.398279e-08 1486,197.13597,2.471675,42.681686,45.370964,8.8613866e-10 1486,1.015389,0.0,21.474705,46.496185,5.4465047e-11 1487,408.75128,179.59424,39.794037,94.44818,0.010358281 1487,39.62018,204.63936,23.291576,47.789352,0.007899456 1487,622.32166,265.8667,16.825012,53.48575,0.0025874462 1487,0.4626119,224.81534,13.561829,54.43622,0.0016592201 1487,0.8122103,83.58091,19.352032,79.0931,0.0016560489 1487,611.8225,182.44284,27.324158,143.03494,0.0010742205 1487,617.1955,136.73071,21.951172,85.894455,0.0007190615 1487,0.87907636,156.84027,20.071741,130.66956,0.0007021574 1487,423.4318,229.40768,21.046234,47.27472,0.0005613899 1487,0.3668099,144.33812,14.413581,54.553436,0.00040214637 1487,0.60387045,177.81223,13.666182,47.37021,0.0003678512 1487,616.6272,75.77443,22.51947,87.069016,0.00032004926 1487,2.6592627,112.31322,59.81015,210.39302,0.00029092203 1487,617.73267,379.43195,21.414001,81.8154,0.00028757905 1487,609.1466,440.25903,30.000061,64.7778,0.00015977351 1487,613.6354,263.90518,25.511292,144.841,9.847038e-05 1487,607.77454,1.1930208,31.372131,62.824276,7.5934215e-05 1487,0.66654056,348.79794,18.403193,79.05414,7.312683e-05 1487,602.0905,326.22897,37.056152,170.14911,7.0362e-05 1487,1.4655404,219.58188,31.18616,175.41379,6.6387e-05 1487,383.20938,119.029976,111.54709,211.69104,3.7826874e-05 1487,585.50134,43.34862,53.645325,279.8976,3.7034435e-05 1487,585.1826,4.609831,53.96405,122.54785,1.7115697e-05 1487,0.7868547,410.3975,18.17937,71.86539,1.5733202e-05 1487,5.706826,223.56995,76.65237,232.35974,1.3527175e-05 1487,0.39086998,259.1798,18.632292,75.71643,1.1544153e-05 1487,556.7805,428.89404,81.147156,72.36606,3.9874035e-06 1487,2.7330763,389.14484,57.261467,104.23819,1.924611e-06 1487,0.9515723,19.670156,59.987354,124.029854,1.0760565e-06 1487,481.93396,423.22397,73.93286,76.7027,9.499824e-07 1487,28.493153,429.05023,76.25801,73.20172,3.227163e-07 1487,93.34496,428.9127,72.295525,72.53284,2.0775255e-07 1487,0.8043587,22.176725,20.031162,80.56951,6.075629e-08 1488,59.19392,209.21707,24.618275,48.801178,0.0320138 1488,451.74658,232.28802,25.129517,51.53073,0.0040665446 1488,1.1937158,205.11057,17.968231,81.03192,0.0017964492 1488,437.74423,147.93967,41.07791,148.45554,0.0015964473 1488,621.4815,101.825134,17.665161,53.91513,0.0009411415 1488,0.5414844,104.171875,18.83612,79.387985,0.0008089439 1488,611.85455,157.28261,27.292114,148.2075,0.00072150474 1488,617.9672,277.63553,21.179443,81.66559,0.0005748798 1488,0.6091065,152.15816,18.76282,78.59503,0.0004694544 1488,1.2211914,91.447655,33.956787,184.3778,0.00044172007 1488,618.176,386.30255,20.970642,77.70325,0.00024504785 1488,2.2023551,175.2141,48.14183,177.1544,0.00013827826 1488,607.49347,1.8100911,31.653198,63.340755,0.00010421363 1488,587.3393,200.28123,51.807373,233.9847,9.7890515e-05 1488,610.6632,40.89168,28.48346,160.57408,8.7142726e-05 1488,0.79753584,238.48001,19.039099,141.4581,8.187481e-05 1488,608.96906,437.13443,30.177612,67.46536,7.874918e-05 1488,602.06775,338.1987,37.07892,156.55734,4.3251166e-05 1488,410.95914,99.18595,111.17728,227.72754,3.7436548e-05 1488,572.50275,33.462723,66.64392,291.41003,3.245102e-05 1488,0.69927,380.11856,18.207956,78.04468,3.2334065e-05 1488,585.6492,6.5772333,53.497498,117.949356,2.5751053e-05 1488,0.78477055,419.5343,15.264322,80.07544,1.2644091e-05 1488,5.4044013,239.85292,76.87117,221.38054,7.945856e-06 1488,1.5293051,307.72705,31.449303,168.8294,7.862247e-06 1488,0.52670246,288.33652,13.671595,48.62497,6.8960703e-06 1488,556.19446,425.85037,81.86267,74.019104,3.6415993e-06 1488,2.791172,30.828203,85.11655,255.06718,2.6136868e-06 1488,2.2781544,430.13638,46.29486,68.977264,1.8756791e-06 1488,489.4745,426.14334,76.55414,74.23459,1.4362581e-06 1488,0.6864966,41.49144,19.32751,80.78914,5.630296e-07 1488,297.864,429.54428,72.12192,71.53656,2.7581282e-07 1488,37.073902,430.6179,74.433105,71.1463,2.4020142e-07 1488,1.6065593,16.743685,59.45951,120.10431,2.0906353e-07 1488,127.40344,428.87497,71.89519,72.21457,1.8958562e-07 1488,86.19021,429.0245,72.245445,72.456085,1.3575925e-07 1488,0.8033342,5.607393,20.914606,58.009876,2.5683267e-09 1489,41.37999,212.52777,37.306694,83.443634,0.30678296 1489,1.0161873,211.99821,20.471836,90.770676,0.037140857 1489,0.44603923,229.01605,11.850692,46.58008,0.021782212 1489,2.761478,153.81438,72.62217,177.79759,0.0063568433 1489,520.84155,228.42448,26.698303,55.02281,0.003152277 1489,621.41547,149.09537,17.731201,56.09915,0.0016989326 1489,617.6647,218.97954,21.481995,89.37532,0.00094955997 1489,506.1407,194.68134,36.16919,77.44812,0.00087380747 1489,0.88291997,84.768425,33.437847,209.34772,0.0007049459 1489,611.3051,108.79327,27.841553,146.98447,0.00067128136 1489,617.16754,83.71584,21.979126,85.01905,0.00049360667 1489,0.74196696,131.97482,18.815645,80.674484,0.0004588131 1489,0.63388675,63.531395,18.656372,78.124306,0.00021803974 1489,602.91077,182.54259,36.2359,192.84615,0.00020513419 1489,618.16504,387.2059,20.981628,76.62265,0.00015003551 1489,609.234,438.72314,29.912659,66.277374,0.00013402059 1489,495.3709,143.4351,72.38684,168.7148,8.1559105e-05 1489,613.5467,279.01575,25.599976,151.07416,7.280145e-05 1489,608.4932,1.0647494,30.653442,110.26416,6.0042104e-05 1489,0.58826333,246.56865,19.784864,152.94637,5.7924717e-05 1489,0.29973796,300.02945,13.9051285,50.97754,2.8881976e-05 1489,0.8195207,351.01813,18.263542,72.89746,2.4420118e-05 1489,572.395,366.49777,66.75165,124.78693,1.5982121e-05 1489,570.3023,11.336185,68.84436,236.13554,8.119066e-06 1489,0.79614097,399.5012,17.716343,103.84253,4.7831413e-06 1489,3.1457276,328.41605,57.097904,153.44986,2.0230932e-06 1489,529.70966,426.41464,80.2384,73.147156,1.2888956e-06 1489,2.4176075,36.35614,84.06846,210.15147,1.1414214e-06 1489,3.8550944,430.40942,66.99713,69.73456,6.963436e-07 1489,58.842228,427.5136,72.59155,73.05109,3.1413975e-07 1489,1.9180323,19.60358,58.500134,108.363525,1.3313495e-07 1489,1.073252,11.270183,25.479897,75.09007,3.0978768e-08 1490,78.389275,229.8523,31.427826,65.71393,0.43800068 1490,622.15845,246.42357,16.98822,53.668106,0.011308008 1490,143.83589,205.90404,29.971008,53.316116,0.0088169295 1490,0.52999675,189.78674,18.597742,81.73044,0.0046188887 1490,1.7479688,165.82005,51.50724,164.9741,0.0021898746 1490,612.32837,201.40279,26.818298,127.02812,0.0016508582 1490,621.40076,170.8173,17.74591,53.89531,0.001592483 1490,578.56085,218.97847,34.889038,72.947495,0.001574926 1490,0.5999927,69.80338,21.331968,112.65246,0.001244085 1490,48.121365,157.18024,79.59889,173.92233,0.00088757713 1490,0.40109375,244.48894,19.319796,82.51427,0.0006541941 1490,621.3701,129.49205,17.77655,53.87735,0.0006397244 1490,0.3974756,136.30746,18.96286,78.12169,0.0005750877 1490,618.20184,272.98215,20.944824,84.10748,0.00035900113 1490,617.501,63.977943,21.64569,83.962654,0.0002887798 1490,610.7093,95.09376,28.437378,146.7873,0.00025015397 1490,557.5299,133.54271,74.57556,179.36366,0.00016225257 1490,0.5766374,224.53844,33.60144,198.3651,0.00010304627 1490,607.70807,1.4343066,31.438599,61.660095,9.0488174e-05 1490,612.62494,385.0534,26.521729,114.263214,8.2892155e-05 1490,588.6279,217.59483,50.518738,237.84038,4.4251345e-05 1490,0.7792684,384.70486,18.279827,72.31311,2.9509936e-05 1490,0.45805666,300.7315,18.72544,76.87326,1.4702821e-05 1490,584.9512,3.4981706,54.195496,123.30576,1.0337054e-05 1490,1.0202392,439.8048,21.354103,63.419983,7.700271e-06 1490,3.7122087,393.15344,56.734657,100.0372,4.6799923e-06 1490,1.0890983,16.04543,85.328285,274.06216,4.349986e-06 1490,556.1465,427.52924,82.5896,72.93198,2.932152e-06 1490,1.2102246,16.094955,60.35884,111.14015,5.729387e-07 1490,0.69819176,8.778028,9.212147,83.38708,4.2954116e-07 1490,54.700367,429.1924,75.901,71.48166,3.0033456e-07 1490,1.3487159,5.0085807,32.10307,62.395298,5.3155134e-09 1490,223.90451,0.0,43.287323,47.8463,1.0299139e-11 1491,277.1343,220.09987,43.272705,78.682205,16.781977 1491,112.17178,197.82016,33.681595,52.573746,0.27005482 1491,619.79565,186.1091,19.351013,60.51158,0.06506587 1491,1.806403,215.83806,33.66274,72.58818,0.01775092 1491,2.1686492,150.981,49.032734,167.84447,0.0051440545 1491,0.73756593,135.20636,20.11431,142.35764,0.0037607031 1491,621.18304,151.87962,17.963623,61.26111,0.0032079068 1491,353.778,202.35759,31.982117,59.819595,0.0023063933 1491,611.19806,83.99345,27.948608,160.15189,0.0018396359 1491,611.3128,177.23392,27.833862,156.81516,0.0017320128 1491,0.55085856,179.29024,14.4280615,54.077087,0.00092512625 1491,0.567828,152.73605,13.865532,50.36763,0.0009248625 1491,258.18625,165.43939,78.19519,158.7167,0.00074525294 1491,345.24933,229.70584,34.16809,63.927643,0.0007426279 1491,0.28341392,82.35383,19.099737,84.83219,0.0006908392 1491,616.97015,46.5417,22.176514,88.080185,0.00030418226 1491,0.77056235,230.24771,19.50861,140.98825,0.00027949514 1491,618.12195,384.3434,21.02472,78.906586,0.0002638461 1491,0.50772953,398.59283,13.819221,50.738953,0.00018586722 1491,570.22046,156.3337,68.92621,251.91356,0.00012517686 1491,617.8554,306.21848,21.29126,80.09808,0.00011467806 1491,0.666862,363.92123,19.602686,130.7995,7.121369e-05 1491,609.395,440.41736,29.751648,65.30759,6.855938e-05 1491,1.0035677,274.12912,32.34073,192.55417,3.1848984e-05 1491,602.7876,337.80118,36.35907,156.65118,3.0671898e-05 1491,3.0912175,397.95648,56.94986,95.77432,2.3305975e-05 1491,1.1914762,451.71387,28.50812,52.449677,2.062744e-05 1491,596.6259,2.315944,42.520752,86.66869,1.5044801e-05 1491,1.6762729,28.723568,82.260056,259.22635,4.585239e-06 1491,0.60863525,42.253597,19.394718,76.836914,1.4415936e-06 1491,45.203075,429.7408,79.66313,71.91107,6.974029e-07 1491,294.57196,426.2692,75.31552,74.65286,5.2339476e-07 1491,1.2621843,17.419231,58.94408,107.32608,4.0420446e-07 1491,0.83268636,5.5539975,21.203857,58.15565,7.795725e-09 1492,543.00397,199.561,40.57361,104.053375,0.10508963 1492,607.22766,237.14548,31.919006,85.60803,0.07326175 1492,181.12035,225.75899,30.349731,60.00853,0.020184997 1492,624.12994,264.84216,15.016724,52.271515,0.011094562 1492,623.68054,236.22902,15.4661255,50.573166,0.0062488914 1492,219.67091,192.77322,45.64064,127.13458,0.0054014996 1492,570.1867,189.03519,68.95166,154.30728,0.004378278 1492,0.23461671,97.5948,19.936922,78.01709,0.0039794403 1492,1.0835816,185.65775,18.72374,77.69992,0.0023571018 1492,2.48646,138.08423,49.52929,180.22131,0.001998234 1492,551.60297,258.20508,27.076721,60.800537,0.00057519955 1492,616.9466,159.50471,22.200073,87.72977,0.0005389122 1492,0.9165999,220.45058,21.083208,113.44615,0.0004004666 1492,617.6678,69.85482,21.478882,83.62707,0.00037399193 1492,410.84476,182.33015,34.078125,60.65425,0.00035639288 1492,618.36035,385.12592,20.786316,78.73654,0.00033315737 1492,622.50775,340.53577,16.638916,50.613434,0.00017212157 1492,609.51355,442.41214,29.633118,62.526093,0.00011881292 1492,614.4,10.805069,24.746643,86.17834,6.552235e-05 1492,603.09906,327.59277,36.047607,166.61594,4.0375013e-05 1492,0.5693205,301.82855,18.577919,78.74286,3.9679628e-05 1492,0.75016767,378.47903,18.48587,77.449036,3.6653342e-05 1492,2.9096534,283.35086,57.291046,195.40979,1.2094844e-05 1492,0.86319256,427.72934,17.428097,73.6167,1.03311795e-05 1492,0.7205973,38.34421,36.08113,195.04614,7.5157573e-06 1492,599.79865,14.583555,39.348022,282.9083,4.496209e-06 1492,555.7838,429.04312,79.923706,71.106476,3.2055582e-06 1492,2.6706789,427.77658,54.338192,69.23755,1.6205521e-06 1492,10.305837,398.7202,121.05756,95.82526,1.2848138e-06 1492,495.77725,427.30658,79.97299,72.41376,1.1247976e-06 1492,1.4046257,16.89933,84.76029,143.72641,6.4269955e-07 1492,82.21049,432.79703,75.6397,66.73065,6.097249e-07 1492,0.5672839,7.008783,9.701725,89.89986,2.0526087e-07 1492,1.352531,6.572689,39.760906,85.93344,4.925425e-08 1492,60.554832,0.0,42.932137,45.691757,2.6665422e-11 1493,141.25426,191.35626,25.610886,50.077698,2.3273108 1493,357.09094,207.4926,35.534943,65.954544,0.35970464 1493,560.3696,185.4507,30.034363,57.465668,0.026944373 1493,525.6561,146.52074,76.59906,198.62785,0.02281879 1493,124.1436,194.33778,22.66008,46.670837,0.017631896 1493,496.01883,196.03593,25.37497,49.400482,0.007077068 1493,83.51573,173.84187,40.770638,76.769485,0.0043514674 1493,611.4333,182.31227,27.713379,140.59709,0.0015994936 1493,0.64725834,153.32587,18.601885,76.9884,0.0014607167 1493,544.3046,179.3224,28.424988,56.17679,0.0014329372 1493,621.22437,201.07933,17.922302,56.133865,0.0013250998 1493,305.11035,194.57245,24.332916,50.499634,0.0011854711 1493,0.49625,210.14249,14.055182,52.01541,0.0011836928 1493,621.4392,258.6853,17.707458,56.542297,0.000725194 1493,480.6124,197.3529,26.43808,57.505844,0.00067105476 1493,617.4189,84.69318,21.727783,82.43451,0.0005674247 1493,612.87286,379.73035,26.273804,120.46799,0.00039820265 1493,0.7750155,414.88416,18.616774,75.75574,0.00038439233 1493,616.97205,131.49684,22.174622,88.28946,0.00031305364 1493,0.80475914,70.04538,18.42422,75.043365,0.00026756083 1493,0.62339765,193.98613,19.636375,146.07689,0.00021876706 1493,612.7685,267.08353,26.378174,147.55887,0.0002091603 1493,1.0817058,87.94343,32.38275,181.65225,0.00020645009 1493,2.7505226,187.27124,57.905376,247.1966,9.213221e-05 1493,583.431,45.982826,55.715637,257.7977,8.002647e-05 1493,0.66179687,330.46982,28.28397,152.79993,7.172365e-05 1493,2.9828386,398.41583,56.347412,99.423706,4.7584363e-05 1493,49.259735,118.43925,111.570404,234.02896,2.3958848e-05 1493,584.7108,7.528887,54.435852,120.46667,1.819605e-05 1493,53.05295,429.43872,80.32144,71.38406,7.955956e-06 1493,557.5247,424.6762,81.62195,74.224,1.9934234e-06 1493,1.3325,0.0,63.092068,218.93892,3.9070503e-07 1493,0.47242597,7.346488,9.894476,90.3722,1.6801577e-07 1493,1.1094532,8.670124,36.47271,80.85335,3.5818847e-08 1493,327.0181,0.0,44.340424,52.115223,1.857335e-09 1494,154.60536,197.80818,26.469376,45.69362,1.674862 1494,407.24036,191.94888,23.906921,52.39839,0.32421228 1494,3.8842483,186.06757,24.891699,56.791183,0.15536368 1494,420.99667,193.04834,23.830261,50.281876,0.041667596 1494,368.67975,197.8518,25.107452,48.648956,0.021778556 1494,388.29065,192.5694,25.206635,51.60759,0.020884905 1494,212.90317,176.8157,41.688065,70.85826,0.007204683 1494,621.30176,164.14362,17.84491,51.98448,0.005138152 1494,621.77924,81.049835,17.367432,50.736862,0.0029131712 1494,620.8939,428.25342,18.252747,55.645355,0.0018363968 1494,608.9289,130.04663,30.217773,131.39587,0.0015612057 1494,611.7431,263.43784,27.403564,138.15198,0.0013807949 1494,585.8775,150.00052,52.657776,223.13492,0.0011628105 1494,1.423444,137.7224,34.093204,167.52736,0.000771431 1494,611.2042,61.364697,27.942444,119.89986,0.00063747604 1494,585.36896,321.37543,53.65027,170.56546,0.00036187237 1494,616.5229,219.75047,22.62378,81.56386,0.000115256866 1494,196.67609,126.0124,88.94003,158.22311,0.000111655936 1494,0.474091,79.15388,21.718287,131.00674,5.8269e-05 1494,607.6085,1.672728,31.538147,61.409588,2.4738438e-05 1494,0.5332536,227.50824,18.125044,148.43906,2.4479345e-05 1494,0.7461467,373.2791,18.827606,124.511536,1.5768004e-05 1494,582.6778,0.0,56.468872,226.18439,1.5134859e-05 1494,2.400687,226.63344,57.801735,243.20808,8.110119e-06 1494,2.3300164,432.5506,46.44457,68.7587,2.5259385e-06 1494,2.5216162,31.368763,59.054993,205.4983,1.0502238e-06 1494,0.617179,12.904356,10.431192,81.21768,5.11684e-07 1494,1.3889649,13.761674,35.56649,74.418785,1.8398345e-07 1495,86.60018,214.03357,29.543533,58.099365,1.6907636 1495,388.49573,200.39346,25.57132,55.49672,1.1328324 1495,540.8023,164.66902,37.614807,66.18689,0.7835408 1495,402.0135,194.45355,32.591705,59.775726,0.1643321 1495,530.88947,154.67058,70.585205,168.3304,0.02340365 1495,598.8334,161.30605,24.211975,48.009445,0.021354845 1495,169.61037,188.60307,46.569183,87.27074,0.0022873802 1495,621.0775,51.933304,18.069153,58.298912,0.0019128735 1495,611.7446,180.05339,27.402039,151.32793,0.0017308355 1495,610.81964,84.663376,28.327026,134.47559,0.0010997964 1495,0.4254305,88.45939,18.956253,81.522804,0.0006216107 1495,0.75887537,170.83234,18.466436,80.14201,0.0005429763 1495,1.0897266,116.18891,34.264397,188.96884,0.0004998362 1495,609.31647,442.9557,29.8302,61.958557,0.00040164118 1495,612.2808,265.2205,26.865845,145.79211,0.00028030822 1495,0.7506714,218.19948,19.732021,137.92522,0.00016835995 1495,602.5487,332.5687,36.59796,168.25403,7.756993e-05 1495,607.59174,1.3389356,31.554932,63.6192,7.383572e-05 1495,0.8135881,364.1716,17.852865,133.2745,3.8416623e-05 1495,582.0243,0.0,57.122375,233.82251,2.6933392e-05 1495,132.26665,122.25137,147.81572,213.7438,2.2922251e-05 1495,3.2829657,396.67834,57.23012,98.535614,2.0863903e-05 1495,3.1942074,231.3901,57.25866,223.7796,1.8448221e-05 1495,0.6866797,37.18351,19.562548,76.25793,2.3212938e-06 1495,0.8508773,26.277012,36.107525,149.41212,1.921618e-06 1495,0.68258625,6.7250915,19.649231,57.391808,1.0580117e-08 1496,128.16103,214.49947,23.615036,46.718796,87.3335 1496,391.9373,200.75969,28.54013,64.16588,0.61660606 1496,374.72043,218.49675,26.176208,50.838333,0.17840561 1496,407.36972,209.49939,22.76236,47.952423,0.078697644 1496,614.2227,165.68423,24.635864,47.093124,0.06235449 1496,121.90669,194.52269,44.566345,88.80211,0.008011038 1496,182.75507,204.0919,24.904312,48.993805,0.0065785614 1496,610.43604,162.92558,28.710632,153.08635,0.0053004567 1496,484.11044,173.49171,25.959045,46.23404,0.003790327 1496,624.5848,142.61272,14.56189,47.677216,0.0035876485 1496,161.8504,204.10492,24.864243,53.29843,0.0029232595 1496,441.4775,179.19118,38.511658,62.977768,0.0027194042 1496,620.3103,84.92491,18.836365,59.50792,0.0016958313 1496,606.266,442.07413,32.880676,67.818695,0.0011904559 1496,610.16504,51.11829,28.981628,168.67744,0.0010689565 1496,611.68274,249.42548,27.463928,146.9025,0.00094255246 1496,0.5494881,62.164104,18.836912,79.29733,0.00077787973 1496,0.5095703,181.26492,19.271673,139.83759,0.0004162665 1496,0.47120443,90.65411,20.21804,147.27022,0.00033705367 1496,2.6198275,117.690834,59.616306,222.92398,0.00014137152 1496,607.1064,0.91778976,32.040283,65.138535,9.2096896e-05 1496,351.85583,124.02953,139.21814,221.6224,7.0231144e-05 1496,571.51373,356.62885,67.632935,141.29404,6.99779e-05 1496,0.6022176,261.7198,19.661081,145.06284,6.0211783e-05 1496,3.664904,240.9123,56.9818,226.30731,4.0708906e-05 1496,567.9242,35.735275,71.22247,313.13287,2.7414677e-05 1496,75.17806,111.77732,150.53284,239.87518,2.6646381e-05 1496,1.1115291,441.99002,20.931913,60.742554,2.4068222e-05 1496,3.293252,391.40756,56.773815,101.84921,1.6836144e-05 1496,0.953584,23.717787,34.87201,166.64911,8.0286816e-07 1496,0.50429446,10.539362,9.659029,84.239784,1.5095203e-07 1496,0.81177735,7.316107,30.08199,56.46366,4.0972914e-09 1497,94.45431,210.63216,24.467964,47.91475,91.719826 1497,412.49908,203.88039,32.377747,70.60295,0.4383698 1497,225.70224,212.3179,24.38086,45.59488,0.15018271 1497,432.2382,209.47287,26.165771,54.086304,0.0775972 1497,4.655826,220.64824,26.713432,60.20961,0.041584957 1497,528.0297,181.72813,27.714355,45.13307,0.01611575 1497,94.312164,183.84201,50.63669,93.920715,0.012675119 1497,1.2070525,180.67363,19.605516,85.59303,0.005894568 1497,394.26276,213.44086,24.937866,47.440063,0.004828316 1497,1.3694304,127.79162,34.077618,181.26675,0.0039927564 1497,0.8647689,231.80016,19.216627,92.00188,0.0020819786 1497,346.0085,197.19221,25.994293,51.135834,0.0019786102 1497,611.28345,146.36255,27.86322,132.95367,0.0017582998 1497,320.62296,200.59718,22.34671,45.257065,0.0016806201 1497,0.7028044,75.668655,18.815117,77.87955,0.001512482 1497,616.8673,83.49628,22.279358,88.56479,0.00076103077 1497,587.1641,186.9603,51.982544,246.31876,0.0005024807 1497,608.5426,442.2934,30.604065,63.301514,0.0004437823 1497,585.65686,391.0273,53.489807,106.28671,0.00011164997 1497,608.2506,0.6473763,30.896057,114.99057,8.063766e-05 1497,82.64967,140.67744,96.02486,200.93025,7.397076e-05 1497,582.9824,25.948112,56.164246,250.70871,3.129433e-05 1497,0.85066736,256.75412,28.355284,163.07062,2.3775301e-05 1497,0.96386397,357.83942,17.911762,128.38272,2.2240158e-05 1497,1.487129,20.577995,61.156265,234.07294,1.6250098e-05 1497,1.2254964,441.21252,20.976196,61.988464,1.1650282e-05 1497,3.4531236,394.34802,57.346733,98.719086,6.920882e-06 1497,0.542924,10.279824,9.675002,85.4909,1.4248955e-07 1497,1.0249951,11.231397,36.13666,77.18433,2.8231891e-08 1498,27.61075,208.49075,33.186737,62.38739,99.80471 1498,49.78155,212.33844,35.5834,57.779358,0.65193826 1498,113.59677,206.88266,23.729416,53.401398,0.39918536 1498,431.2603,186.22914,44.779816,109.92192,0.16213422 1498,374.57712,214.18398,25.373718,51.4301,0.079183064 1498,621.95734,165.10217,17.189331,48.084946,0.023339942 1498,429.3107,215.82625,27.214264,54.43669,0.022453666 1498,610.4672,159.86522,28.679443,142.59166,0.0065826783 1498,545.41296,163.49469,23.680603,45.902634,0.0044719395 1498,620.8185,87.68537,18.328186,57.70788,0.0018806009 1498,127.75967,206.19856,25.364128,47.461624,0.001870021 1498,0.5488851,229.70116,13.686782,51.02855,0.0017922057 1498,610.3349,79.895966,28.811768,134.80844,0.0009589096 1498,586.89935,174.23465,52.19751,262.73172,0.00072119385 1498,5.5114684,172.44443,80.63653,159.54974,0.00053858646 1498,0.6061499,80.54628,18.931479,80.2612,0.00048341035 1498,0.5232129,212.87581,20.103617,135.9547,0.00048036486 1498,611.8719,292.83536,27.27478,148.2886,0.00042452675 1498,0.9622087,174.88213,18.415005,78.403656,0.00027471784 1498,1.7769939,128.32755,33.393215,173.08209,0.0002302337 1498,347.12827,153.81328,88.94913,159.8098,0.00014146055 1498,604.1303,376.25546,35.016357,123.91086,0.00013224235 1498,0.8896045,364.04898,17.962957,130.28119,7.021046e-05 1498,607.2596,1.0754265,31.887085,63.29066,6.121063e-05 1498,3.8217986,397.166,56.834114,97.14511,5.571139e-05 1498,418.61115,201.56592,79.43512,174.25366,4.3025273e-05 1498,0.9235628,262.8946,32.86142,194.59949,3.374347e-05 1498,1.1114274,28.560886,35.068314,148.2961,2.7762649e-06 1498,0.7828955,32.632412,19.633894,75.10263,7.445157e-07 1498,0.813444,7.58424,29.460964,55.94744,9.421968e-09 1499,0.17130859,209.1166,25.056065,71.453995,97.72255 1499,169.13036,225.37573,29.942917,58.479065,33.414566 1499,600.3522,143.31882,33.85974,64.768585,3.3964102 1499,15.827583,213.48228,28.972572,69.22539,3.0498798 1499,383.75827,200.24466,33.49286,65.17239,0.8318335 1499,35.896748,220.24759,24.234646,49.035034,0.07659029 1499,620.21674,133.94957,18.929932,56.287918,0.015253965 1499,1.3263737,122.971695,34.134956,190.76808,0.011748395 1499,583.38794,154.81255,28.682983,59.389984,0.006467505 1499,608.66785,143.40517,30.47882,167.07027,0.0037914626 1499,466.91907,166.28674,69.488525,173.84708,0.0012307091 1499,586.7158,169.3108,52.430847,266.02533,0.00054058514 1499,3.4390936,188.71483,54.82124,231.5931,0.00047231937 1499,612.15344,281.17075,26.993225,144.9361,0.00030793375 1499,608.2548,441.886,30.891846,64.12543,0.00025618175 1499,571.4043,353.36664,67.713196,137.86847,7.396957e-05 1499,581.6719,0.0,57.474792,226.53717,6.09856e-05 1499,0.8070744,364.92743,18.529972,131.32932,4.6359353e-05 1499,606.5065,1.6481544,32.640198,60.64596,3.7831418e-05 1499,0.45205894,276.89673,19.701822,153.83939,2.6112011e-05 1499,3.2443426,396.9825,57.606647,97.056366,1.9938421e-05 1499,150.50925,170.30376,95.90477,206.1574,9.273643e-06 1499,0.92546713,48.134304,20.636618,143.37346,5.8268784e-06 1499,0.9362256,16.960052,63.83745,256.5644,2.2198747e-06 1499,0.9593506,12.610017,36.102524,73.73679,6.7971705e-08 1500,1.7738835,211.41716,32.497265,81.45531,3.9453716 1500,113.58221,208.06807,41.54339,105.481,0.5514763 1500,0.8660002,218.08853,15.121861,51.909637,0.14957017 1500,620.199,181.76746,18.947693,52.70656,0.028422052 1500,418.75623,218.82756,25.270142,51.854355,0.016603544 1500,2.0790837,153.57352,61.841923,168.04233,0.013556861 1500,42.2747,210.21776,32.262585,59.295486,0.0073392233 1500,399.38705,200.79607,33.341766,71.28508,0.005747654 1500,584.62366,179.17105,25.229187,45.9476,0.0053025293 1500,610.53424,174.09007,28.612427,150.97624,0.004415318 1500,506.75412,157.22896,72.88516,186.0117,0.0017227628 1500,1.062907,114.84277,19.023561,86.84488,0.0011197285 1500,112.006096,221.5141,22.035957,46.490387,0.00075126346 1500,473.50226,63.151714,38.368683,77.4841,0.00070486794 1500,1.0610592,258.2561,13.639537,56.796936,0.00068565784 1500,364.58624,116.44522,73.638245,178.0617,0.0005098983 1500,610.689,69.668076,28.457642,150.14151,0.00039804316 1500,360.81396,147.17311,39.330994,85.104996,0.00029791563 1500,612.78705,278.4364,26.35962,144.76245,0.00025200637 1500,608.78033,443.3189,30.366333,62.055267,0.0001765747 1500,0.49581707,53.8278,19.080786,82.18771,0.00013899275 1500,585.28436,395.12994,53.862305,102.420746,3.5335877e-05 1500,0.66415364,245.55727,19.616762,158.27818,3.028208e-05 1500,484.0442,202.57794,37.575745,62.18985,3.0263314e-05 1500,567.76587,46.453854,71.3808,299.449,2.936149e-05 1500,0.81879073,387.7855,16.710102,110.02951,2.2762315e-05 1500,597.1345,4.5504494,42.012146,83.52847,1.6570475e-05 1500,2.6644108,246.28027,57.583332,234.08057,7.755131e-06 1500,2.564437,432.65036,45.79091,67.121826,4.876755e-06 1500,1.2991146,17.66364,58.01202,111.92102,2.3393573e-06 1500,0.5361849,10.755772,8.870474,83.23186,3.9584697e-07 1500,0.95925623,7.580342,29.937084,58.012287,2.2938233e-08 1501,8.778769,216.13086,44.26301,116.7092,94.28931 1501,150.53938,216.1678,24.02536,54.80452,9.119105 1501,475.59705,208.50975,33.747864,67.39299,4.461793 1501,22.581984,244.23488,25.561728,57.727524,0.34085226 1501,163.75687,216.51376,24.45102,51.97238,0.24444258 1501,2.0935864,227.87433,21.819696,104.80124,0.075789325 1501,215.90028,212.94249,24.430603,47.468185,0.0311786 1501,2.465537,134.4974,87.26804,282.62354,0.009226983 1501,611.85614,324.01892,27.290527,142.52234,0.004550779 1501,621.5284,248.07922,17.618286,49.190155,0.0033670408 1501,612.23047,265.04004,26.916199,116.246185,0.0023581858 1501,610.2948,200.34364,28.851868,117.509476,0.0021058149 1501,104.35267,213.42381,27.7295,54.93672,0.0020881053 1501,572.94855,129.73497,28.596802,48.99083,0.0017632969 1501,583.4826,159.18901,54.096252,206.30281,0.001249203 1501,609.81366,99.21347,29.333008,151.57448,0.0006109508 1501,609.1307,436.80417,30.015991,66.68411,0.0006094245 1501,0.7449048,74.53965,20.82875,151.82083,0.00043388183 1501,1.4114152,356.8716,19.50905,88.44476,0.00040695735 1501,619.1977,30.319534,19.948975,63.632797,0.00015253185 1501,1.598156,294.4881,34.960556,192.82599,0.00012980483 1501,607.2996,2.639157,31.847046,58.103188,4.7499034e-05 1501,99.118484,119.92651,150.87006,232.14261,2.1868604e-05 1501,606.59235,9.741277,32.55432,165.64935,2.0596384e-05 1501,1.2412639,441.41147,20.918167,61.909943,1.0904744e-05 1501,0.670293,0.0,64.80173,293.46344,3.3341178e-06 1501,1.1650358,12.018926,37.548805,75.239395,1.1944888e-07 1502,102.44998,224.01144,46.538544,87.98505,99.89436 1502,60.278614,216.29918,42.442287,101.42119,99.81665 1502,270.24542,217.83566,27.338715,61.8562,69.17914 1502,284.9475,215.71974,25.202728,50.789078,16.605291 1502,593.83984,203.66081,38.13098,77.477554,9.112036 1502,616.02844,202.39961,23.118225,61.77333,0.119839214 1502,130.48264,228.35204,32.13231,79.015335,0.06098647 1502,585.492,85.9244,53.175293,222.20694,0.015849074 1502,176.98393,228.3423,32.83075,68.77562,0.01553056 1502,146.64464,143.86577,75.344666,179.27861,0.002896398 1502,23.234863,179.69334,102.08778,186.34676,0.0028822792 1502,3.2735662,96.79835,57.208458,220.82114,0.0023494205 1502,223.83954,217.66191,25.161713,53.387344,0.0011788914 1502,0.5409611,93.08311,21.003386,118.83904,0.00078930706 1502,611.65204,303.05762,27.494629,151.28,0.00068385695 1502,0.73504233,168.63235,19.177643,147.36063,0.00038249808 1502,619.4482,32.28165,19.698486,63.540524,0.0003038587 1502,608.8305,434.89032,30.316162,70.7587,0.00028699302 1502,607.0131,0.72940433,32.133545,65.3117,0.0001263744 1502,0.70570475,265.91794,19.248877,141.19046,6.0898135e-05 1502,0.81743,366.7639,18.437704,129.41919,4.5035988e-05 1502,571.2747,361.4495,67.87195,128.60504,4.407975e-05 1502,2.6211524,268.54114,56.385414,204.85898,2.558294e-05 1502,1.1508822,27.506771,35.236412,147.2171,5.087162e-06 1502,0.57858807,11.489792,10.465112,84.40402,3.180204e-07 1502,0.9446631,8.408906,30.427797,57.759277,1.3608272e-08 1503,301.6903,227.68852,46.38797,97.04176,99.959404 1503,262.89288,221.3937,49.679382,110.16995,99.89227 1503,504.90985,209.468,31.109863,66.659256,19.482368 1503,337.39594,224.53714,35.283905,73.818634,0.9695311 1503,417.09824,235.39276,30.639008,58.699432,0.44176298 1503,555.9933,207.97516,26.288025,53.804077,0.21883869 1503,398.76562,167.9049,50.38376,144.63467,0.030764798 1503,540.16,211.81862,24.838623,48.975235,0.020902833 1503,440.90167,235.42696,25.3396,49.615433,0.014737218 1503,620.38873,181.16011,18.757935,59.71817,0.013205823 1503,0.66195476,120.81032,29.039602,154.6953,0.008994277 1503,273.5686,207.86273,101.98639,156.49069,0.0036242856 1503,608.77966,112.37214,30.367004,142.60504,0.0025810557 1503,1.0716203,247.2679,18.477839,76.423386,0.0009370156 1503,611.95966,196.13235,27.187012,145.90833,0.0005456778 1503,609.1854,440.29965,29.961243,65.56839,0.00018680656 1503,612.48236,344.74146,26.664307,140.00882,0.00016948345 1503,1.2273812,226.31305,32.137962,183.01251,0.00011048422 1503,608.5486,0.10583659,30.598083,64.945526,4.1988766e-05 1503,0.8882414,373.10132,18.275646,122.403015,4.172527e-05 1503,0.6652873,49.6973,21.127708,137.8843,2.7714508e-05 1503,3.2123163,396.03857,57.73464,95.92587,2.3456083e-05 1503,0.36704755,0.39252606,62.885548,264.28928,2.0721252e-05 1503,1.1458952,12.739577,36.840313,73.58748,1.0446774e-07 1504,513.7718,221.22346,56.244263,133.5457,99.90407 1504,559.87506,229.75368,53.963867,127.86043,99.88372 1504,287.3668,219.115,43.9198,78.64174,99.65165 1504,591.99036,224.521,43.518127,124.71506,0.44028163 1504,548.35864,224.88693,36.956726,94.47061,0.12531608 1504,617.1686,218.47305,21.978088,59.417877,0.071909696 1504,530.59515,234.1112,25.51471,66.50223,0.02628243 1504,511.27637,171.43024,118.324524,251.03494,0.020699067 1504,574.2072,246.28777,28.142578,64.48073,0.01486439 1504,2.908913,164.24501,36.255623,86.222885,0.005479283 1504,2.8679624,106.31052,58.65579,206.13654,0.0038667924 1504,620.90594,275.19116,18.240723,57.21823,0.0031904983 1504,0.884397,120.58741,19.122429,82.28597,0.002241929 1504,529.30756,272.5715,27.150146,70.33212,0.0010720069 1504,1.0080721,192.58022,19.852589,136.31001,0.00029178924 1504,612.48004,372.06256,26.666626,126.648895,0.00012228472 1504,606.77405,0.69883466,32.37262,64.06091,9.7475495e-05 1504,258.79266,178.03574,95.74161,170.94907,5.1556373e-05 1504,610.5507,88.22284,28.595947,174.47153,4.0735937e-05 1504,0.8467896,335.0654,19.02599,132.37659,2.230154e-05 1504,3.2823,280.5207,57.350124,198.57062,1.0782552e-05 1504,2.1129835,423.03995,33.44358,76.28131,1.0514067e-05 1504,598.6647,0.0,40.481995,182.06677,2.4592919e-06 1504,1.1837126,27.257748,35.505436,147.20168,2.2490085e-06 1504,0.451923,9.939531,9.821391,87.531395,2.1959872e-07 1504,0.8502686,7.30653,29.94578,58.346516,5.7894916e-09 1505,222.67271,224.04108,52.042374,85.46411,99.8614 1505,13.997521,208.40872,37.228573,79.12961,96.90137 1505,251.565,233.43959,23.325317,46.53676,0.18787529 1505,4.3683367,164.61852,65.588135,156.278,0.049115367 1505,1.7711564,198.20383,18.54663,81.958954,0.0150411 1505,335.4407,129.42839,43.74063,145.53514,0.0089520505 1505,619.9609,237.58441,19.185791,54.00061,0.0075908587 1505,620.5488,161.21385,18.59784,58.584854,0.0070993803 1505,338.49106,184.46812,29.119507,62.328186,0.0049039745 1505,609.56,146.15312,29.58667,148.18718,0.0029147412 1505,1.0464503,93.7123,21.491655,159.81836,0.00279035 1505,621.5874,120.84495,17.559265,54.66253,0.0018170392 1505,350.4246,154.36957,28.801819,60.55208,0.0014118874 1505,611.042,247.00464,28.104675,152.68149,0.00089169946 1505,0.6159505,233.76079,19.992153,154.52776,0.00020941977 1505,314.45895,97.26911,110.34964,215.67688,0.00016233817 1505,584.1779,30.423178,54.96875,292.88885,0.00011332797 1505,195.04944,183.11714,98.83807,185.07167,8.1909784e-05 1505,606.5819,0.5885352,32.56476,63.544147,7.577889e-05 1505,612.379,369.92493,26.76764,132.18195,6.9341804e-05 1505,0.8638517,348.87173,18.524925,132.11182,3.391368e-05 1505,3.3701448,396.1262,57.360405,97.45294,1.3970197e-05 1505,0.8337582,19.265638,29.888178,132.75706,2.4668038e-06 1505,2.6491635,26.097794,82.119484,153.74301,4.6116892e-07 1505,0.3268986,7.576374,24.787367,57.309032,1.0671527e-07 1505,153.82646,0.0,51.049927,169.29886,7.4178814e-08 1505,66.37419,19.644245,123.61035,203.19371,3.8809045e-08 1505,88.840866,0.97451174,51.229874,144.56921,1.2055662e-08 1506,385.63272,220.02219,44.034943,88.523865,99.965096 1506,169.58577,198.30653,39.84108,76.97298,99.86448 1506,192.19847,197.6367,31.860992,60.04805,0.05135206 1506,110.93305,194.53694,25.262703,48.75734,0.033588637 1506,552.5662,184.4613,35.493042,64.342926,0.02958358 1506,546.2728,99.24218,59.60138,155.93423,0.0049800845 1506,0.6741488,148.278,19.609486,138.64684,0.0033116306 1506,620.67755,101.59076,18.469116,55.53351,0.0031808314 1506,620.9847,182.00224,18.161987,58.69258,0.0020908508 1506,0.50946695,70.69775,20.396498,138.5466,0.0018651587 1506,611.6146,159.97752,27.532043,148.15242,0.0016499043 1506,573.8341,117.08265,30.27362,63.33187,0.0013459553 1506,610.06226,79.778076,29.084412,145.6732,0.0008719029 1506,2.726032,90.707924,59.171013,212.58606,0.0004942821 1506,587.42084,191.37943,51.72583,242.18219,0.00016936938 1506,612.8666,380.1985,26.28009,118.832245,0.00016429719 1506,361.4329,181.50507,93.899414,173.20306,0.00015331895 1506,140.17722,156.1816,92.668365,167.03127,0.0001525771 1506,580.30994,0.0,58.83673,260.64142,5.8547845e-05 1506,607.3451,1.1115006,31.801575,63.85835,5.652841e-05 1506,0.88111496,377.82617,18.689192,119.70242,2.3985413e-05 1506,0.4174821,239.49026,19.89561,143.33792,1.9538462e-05 1506,3.1954362,398.87,57.400246,97.244446,1.108505e-05 1506,2.899232,201.7312,57.268578,231.43277,6.344759e-06 1506,1.029668,24.54931,30.073095,115.01916,5.1655984e-06 1506,0.6631995,14.57944,12.116596,78.73582,6.913939e-07 1506,1.839406,7.8010874,38.619312,46.383793,6.5052914e-09 1506,194.9824,2.2197316,44.708557,46.922394,1.0189899e-10 1506,254.59392,2.0307765,40.74861,47.401146,7.320337e-12 1506,311.62268,0.0,46.209137,66.38251,5.8954556e-12 1507,337.54352,219.40411,40.40158,94.96387,99.945244 1507,83.85436,191.42645,40.516266,85.58038,99.840805 1507,592.9147,95.67966,46.1427,149.64139,0.61243796 1507,495.72714,195.02966,36.23294,71.58313,0.22692268 1507,613.1473,124.18663,25.99939,73.28337,0.037479598 1507,359.81363,219.96693,32.079468,77.859604,0.02594532 1507,607.348,82.75436,31.798645,76.15749,0.019895595 1507,54.66651,155.23901,80.19868,152.3265,0.009071914 1507,617.736,192.59213,21.410645,60.07985,0.0060809217 1507,605.9687,169.17168,33.17798,147.97939,0.0053173057 1507,0.57822514,164.32039,18.638103,79.01045,0.003927043 1507,591.82404,178.1049,29.434631,72.640335,0.0031784722 1507,0.62263024,211.55731,18.712456,82.60104,0.0026647456 1507,620.12244,231.69104,19.024231,64.24277,0.0013881333 1507,1.1464648,136.05513,31.995464,169.69429,0.0010961985 1507,138.3464,169.67523,26.058594,45.723663,0.00044454646 1507,316.3352,192.13443,87.401245,160.80179,0.00029845367 1507,0.34368166,88.28099,19.330872,86.855896,0.0001516935 1507,603.14624,282.57312,36.000427,202.67294,7.0197e-05 1507,609.30676,440.05975,29.839905,65.93793,6.167566e-05 1507,613.0324,14.947686,26.114258,108.67114,4.830274e-05 1507,2.6606998,180.10188,57.666412,237.96126,2.6915317e-05 1507,0.42206544,260.7878,19.769379,143.21613,2.3597077e-05 1507,0.87625,350.5614,19.10718,129.92664,1.758124e-05 1507,1.8663656,423.42776,33.71801,76.210785,6.9897324e-06 1507,1.174974,26.82771,60.751984,243.91878,4.1938783e-06 1507,18.682304,86.46102,158.66754,266.58954,2.6780938e-06 1507,0.93613446,9.909467,37.652546,83.35577,1.6551097e-07 1507,227.59802,0.34235027,42.913116,48.261745,2.5419573e-12 1508,15.627549,206.5466,65.09914,121.12024,99.891075 1508,48.08416,206.52557,30.173943,64.666046,0.8649172 1508,299.73276,177.9513,38.14673,117.43204,0.20057885 1508,451.73386,41.55062,49.327667,150.85,0.038758326 1508,431.0513,77.73752,50.762817,178.71729,0.013278174 1508,483.52954,52.51002,30.068298,64.210144,0.013262724 1508,39.037792,247.03806,30.673786,66.43146,0.0058467076 1508,470.0465,82.119835,24.573975,51.16755,0.0036442375 1508,610.06476,212.38615,29.08191,130.03511,0.0031618746 1508,0.6793791,184.68141,19.134125,87.87984,0.0028034567 1508,620.6868,236.53534,18.459839,55.217896,0.0027638343 1508,599.2301,67.15794,39.916565,236.48543,0.00082219066 1508,312.2267,189.1374,24.226074,48.206116,0.000815948 1508,422.3155,93.061264,114.859924,246.18092,0.00063437765 1508,1.3910091,118.004715,32.7826,178.28307,0.00062697084 1508,7.8293915,138.23969,116.53207,256.70413,0.00053903455 1508,616.5615,114.95615,22.585144,88.3495,0.00039212027 1508,616.2281,49.025524,22.91858,90.06203,0.00022432946 1508,438.69308,178.7201,30.471039,69.4991,0.00021027813 1508,0.6186019,222.86505,20.322435,132.65121,0.00015611286 1508,612.75586,318.4041,26.390808,149.39954,0.00010672193 1508,609.6576,440.2148,29.489075,64.43994,6.3599895e-05 1508,607.63904,2.084131,31.50763,62.27388,5.0757695e-05 1508,0.4273812,289.24268,28.551142,155.14594,2.3952865e-05 1508,0.7611808,367.71097,19.192818,129.65149,1.905988e-05 1508,571.97565,358.45413,67.17102,133.75171,1.27260155e-05 1508,0.43748862,56.339825,18.951895,151.6853,5.4544503e-06 1508,3.388636,397.11057,57.24779,98.94272,3.5863316e-06 1508,1.9344565,25.493973,62.61728,210.98074,1.7937285e-07 1508,0.8637911,12.255244,12.417558,79.88441,1.14310495e-07 1508,1.352059,19.387625,27.6888,110.760704,1.13637896e-07 1508,58.687958,4.311992,67.77478,142.32614,1.0385581e-07 1508,55.062332,0.0,43.92943,53.587482,4.834403e-10 1508,85.42292,0.0,45.39791,55.532085,4.16621e-11 1509,604.04596,249.31161,33.94684,75.42734,0.04089858 1509,148.02235,68.2321,33.585938,64.308044,0.03628982 1509,621.32153,96.41333,17.825134,55.57553,0.018169058 1509,590.5309,247.66649,24.552368,50.340714,0.011143418 1509,126.776146,52.012028,43.136955,107.5137,0.0073023215 1509,137.29707,62.44122,23.221573,51.609318,0.004158801 1509,586.14374,104.19555,51.250183,230.36703,0.0028116389 1509,611.2072,64.253365,27.939453,132.6257,0.0028013561 1509,95.99669,69.785,63.42035,182.41156,0.002582937 1509,621.40094,297.69553,17.745728,56.848816,0.002457041 1509,0.6827523,62.4018,18.991823,81.14899,0.0023389247 1509,0.39323163,144.0493,14.108664,54.67302,0.0013128736 1509,135.92766,100.717125,23.5681,48.402916,0.0009849312 1509,0.5858431,97.12517,20.23779,141.69989,0.0007458658 1509,124.261566,81.385925,24.802979,52.89148,0.00065226475 1509,144.75198,40.9536,24.302094,56.514866,0.00038581065 1509,611.33234,268.11078,27.814331,161.34698,0.0002704262 1509,3.9343524,135.03545,59.5595,226.27174,0.00025772673 1509,612.5094,375.92023,26.637268,125.44046,0.00019546937 1509,0.560319,203.20999,18.563871,79.78308,0.00015740811 1509,352.00888,227.51277,27.526245,67.39604,0.00012651175 1509,117.62109,103.96753,23.294067,46.570587,8.403844e-05 1509,595.867,3.5077767,43.279663,89.15133,5.6321773e-05 1509,0.7273153,248.8311,18.167713,75.925064,3.6389825e-05 1509,0.417723,319.08038,18.811478,78.75711,3.0508672e-05 1509,1.0522233,254.31143,30.749067,174.58173,1.1198574e-05 1509,118.15724,8.974356,92.06091,172.52527,7.968713e-06 1509,1.0739388,16.705332,63.288143,213.84727,5.770913e-06 1509,0.68535155,349.46606,19.310438,131.45114,5.53117e-06 1509,0.9883496,442.06604,21.861027,62.557312,2.7887047e-06 1509,5.1308856,342.56332,78.67195,142.83795,1.096029e-06 1509,0.51787436,10.563819,9.708071,85.77657,2.0220202e-07 1509,0.9734652,11.804948,36.830925,76.33869,1.242091e-07 1510,567.52106,232.77162,44.873047,93.46541,99.96198 1510,449.54486,270.1125,22.674988,52.38849,0.026391836 1510,614.0896,227.5681,25.057068,120.0533,0.011194135 1510,577.38324,178.42511,58.69934,188.6099,0.0087865805 1510,620.60754,83.38263,18.539124,59.520966,0.004928108 1510,462.81107,265.65076,22.641327,52.58606,0.0024587286 1510,0.43842855,117.22029,14.079925,51.81859,0.002264048 1510,371.81216,248.95418,37.673615,78.7697,0.0015268455 1510,0.45089114,70.89375,14.078331,50.92637,0.0012794257 1510,0.31027588,73.8448,20.600555,141.376,0.0012711688 1510,3.001618,107.1244,60.34147,226.33884,0.0011316921 1510,0.47974855,171.96378,18.806112,83.18259,0.00088908937 1510,0.60781413,230.57616,19.05336,85.77608,0.00079331186 1510,617.8426,394.04333,21.304077,81.741516,0.00041242878 1510,617.86176,344.49225,21.284912,80.36688,0.00034636073 1510,610.028,53.36364,29.118652,156.93774,0.00031256198 1510,1.1430176,217.52165,33.46725,178.95961,0.0002016621 1510,609.18585,440.06198,29.960815,65.63742,9.004347e-05 1510,600.9158,267.5721,38.230896,207.22812,5.5608092e-05 1510,586.38715,9.369271,52.75952,121.12005,1.9842098e-05 1510,0.78431726,346.92657,18.599827,136.48312,1.7032296e-05 1510,0.87343264,440.20258,22.120562,63.93869,1.3928982e-05 1510,2.9870589,324.67917,57.855427,161.37714,2.8811269e-06 1510,0.7155355,21.54071,30.96363,114.252365,1.9502413e-06 1510,6.2554007,431.08447,77.05669,69.62387,1.370359e-06 1510,536.4225,426.7193,84.505005,74.67029,8.523615e-07 1510,0.4883781,10.726703,10.334003,85.19259,3.8565707e-07 1511,533.3456,243.88904,44.226074,107.743225,99.96789 1511,379.5154,247.14508,51.848206,115.848175,99.95485 1511,449.30573,244.25363,24.40799,49.660156,99.43279 1511,465.16492,245.33752,27.361877,49.83029,98.9954 1511,526.8938,246.93579,30.163147,61.41107,29.280954 1511,545.75305,253.42441,24.44342,48.238373,0.22427987 1511,620.3955,236.3898,18.75116,63.576294,0.010184705 1511,587.21796,282.5093,25.266724,53.56842,0.008462095 1511,0.8663949,81.93033,18.332905,78.26317,0.004973872 1511,436.0683,227.89656,47.585266,89.59703,0.0039621433 1511,599.51733,232.19688,37.99695,99.639694,0.0026922582 1511,0.7435205,110.177734,29.02133,158.73663,0.0013146626 1511,587.629,291.35535,51.49951,198.89664,0.0010321098 1511,151.57181,270.21692,44.726303,109.646576,0.00085126376 1511,336.9691,168.65195,139.24597,251.4143,0.0006963717 1511,614.8587,279.60117,24.287964,89.46051,0.00068461645 1511,490.20813,181.60747,140.96204,230.09807,0.00040105102 1511,1.1678565,376.42386,19.261753,122.53265,0.0003636072 1511,0.8310702,190.24477,19.81558,143.6385,0.0003116759 1511,610.4558,101.65589,28.690857,159.54343,0.00021790544 1511,609.17914,440.0016,29.96753,65.33072,0.00012591209 1511,2.3030794,391.12366,58.895874,101.6398,0.00011635076 1511,445.57883,207.34465,77.37674,153.51317,0.000112587484 1511,608.11597,0.85820967,31.0307,65.00885,6.6882676e-05 1511,2.6312404,152.92052,58.906246,240.45903,4.9984876e-05 1511,1.0452164,266.01343,27.964655,164.21527,2.500118e-05 1511,0.7069336,2.8533595,61.81535,249.3051,8.807768e-06 1511,0.48604575,10.579557,10.19201,87.03693,2.727623e-07 1511,0.780599,11.44777,37.49231,78.561844,1.3066501e-07 1512,418.85028,237.62016,48.091766,107.80296,99.981674 1512,168.80026,244.99907,63.58638,161.23973,99.897385 1512,328.49564,236.4561,28.667969,50.655624,98.9304 1512,304.36157,233.19131,27.879272,54.376892,97.63621 1512,291.16052,232.00253,25.330566,51.50766,0.35427612 1512,203.84152,289.4467,44.27841,98.821686,0.19888264 1512,433.94226,246.55193,25.898102,49.719894,0.17230839 1512,199.95818,238.56412,39.617554,86.79584,0.017409768 1512,130.5828,159.47859,128.92941,273.37885,0.014233193 1512,4.2825947,320.96338,57.36444,157.4184,0.0041489215 1512,176.86478,294.52866,24.736862,67.78525,0.0030988464 1512,179.43846,250.26448,34.54756,78.32558,0.0025151244 1512,32.18719,252.5839,85.949326,180.85825,0.002059355 1512,616.5152,219.72563,22.63147,81.693924,0.0020525828 1512,195.53325,301.26636,24.738007,75.11746,0.0014287451 1512,0.63994795,65.710526,20.212303,148.30981,0.0010861565 1512,1.1038241,327.56342,19.312595,144.58679,0.0008378297 1512,0.7205217,299.8685,18.471878,81.73071,0.0004819498 1512,600.5844,111.99443,38.13562,183.51653,0.00024055244 1512,603.443,207.75957,35.703674,184.28221,0.00021234676 1512,381.5317,169.555,130.18121,228.76724,0.00019431367 1512,1.6767042,412.19174,34.25023,81.6062,0.00014518855 1512,1.5998796,239.9264,34.009293,192.23158,0.00014460956 1512,607.79095,0.9920671,31.355713,62.85075,0.00014390434 1512,612.3972,358.43158,26.74945,139.63077,0.00013956429 1512,0.71404463,124.87435,31.191385,198.06516,0.00011549685 1512,306.62238,192.65562,79.414764,152.29283,0.00010248382 1512,1.5029558,10.470931,63.128887,198.57806,3.6370038e-06 1512,0.8203011,20.879786,30.5977,119.624245,1.9812328e-06 1512,0.7487565,6.3774157,20.345558,58.276737,7.488816e-09 1513,235.381,227.39728,29.32582,61.269684,99.966064 1513,350.2281,228.73367,44.86725,113.0459,99.96081 1513,208.88812,223.33292,27.806915,59.146667,99.90688 1513,193.1802,220.61629,23.675446,58.031326,0.3990436 1513,370.35226,230.01509,28.946777,57.47145,0.3193119 1513,191.00139,200.95512,62.57138,94.96654,0.03589398 1513,308.5939,206.9586,42.42978,71.420456,0.0041545792 1513,617.6792,220.81349,21.467468,81.73744,0.0029515065 1513,306.4515,179.77994,105.54755,190.246,0.0014371508 1513,0.5158163,149.87344,20.05563,89.96356,0.0012105559 1513,2.2967303,82.31534,57.312183,249.19385,0.0011891532 1513,3.3141472,315.01578,56.83777,170.37961,0.00080243434 1513,602.04407,207.0576,37.1026,181.37596,0.0006382741 1513,609.96454,66.58936,29.182129,151.94983,0.0004659063 1513,1.2893904,308.98813,21.474617,149.4862,0.00039144885 1513,586.5888,93.84128,52.369568,224.30035,0.00026365192 1513,202.68483,167.5881,86.95628,189.67285,0.000119474214 1513,0.6600765,191.6841,20.362917,164.50084,0.000115825 1513,612.80865,373.85095,26.338013,126.09662,0.0001139244 1513,607.8467,0.73014325,31.299988,62.4526,9.320169e-05 1513,0.9938729,419.24072,16.889923,83.608246,2.0117197e-05 1513,0.9929362,17.296816,59.3416,113.29079,7.94169e-06 1513,0.356687,40.152897,21.053467,158.03789,6.9128873e-06 1513,0.40946332,8.557103,10.765277,91.0355,8.3278013e-07 1513,0.65081054,7.7382846,31.445122,59.052692,5.8109123e-08 1514,193.57304,208.07854,35.64412,69.56331,99.968864 1514,369.3825,218.93076,50.439514,121.209045,99.963356 1514,226.1679,214.0805,35.300247,68.96298,99.90858 1514,389.69263,215.76624,31.641052,62.428955,3.8643508 1514,489.27408,200.65642,24.941742,48.259033,0.06279605 1514,610.66736,208.72694,28.22638,96.55907,0.0038525115 1514,320.2396,183.0927,47.06903,95.35033,0.0035563884 1514,73.07865,231.70276,25.312141,48.35434,0.0017898824 1514,331.97626,143.78894,134.85745,241.85416,0.0007442387 1514,610.22675,86.850044,28.919922,143.85507,0.0007252424 1514,203.52528,183.37317,76.68077,135.11908,0.00053525565 1514,584.14355,170.81079,54.62018,190.95068,0.00043540052 1514,0.711875,154.104,19.481058,140.9285,0.00023298227 1514,477.43304,293.9886,20.858429,45.901703,0.00021833021 1514,611.6451,250.06573,27.501587,161.04346,0.00018887596 1514,612.5333,376.83597,26.613342,122.706116,0.00015470518 1514,0.71757,76.16228,28.256395,157.02539,8.5689484e-05 1514,608.39557,1.5342416,30.751099,61.523155,6.860699e-05 1514,0.96263105,439.98755,21.482004,63.71231,3.151404e-05 1514,0.6472274,238.39578,19.808968,141.2171,1.887116e-05 1514,0.73383385,336.31314,19.297895,135.01196,1.7665645e-05 1514,2.459367,156.65215,58.36009,222.77248,8.627531e-06 1514,2.8595672,398.39413,56.823215,96.987946,3.5862015e-06 1514,1.3283057,11.159665,35.97378,75.29803,1.4498147e-08 1515,261.6473,210.67722,37.90265,81.33728,99.97113 1515,444.06085,221.98183,51.60907,130.34413,99.970345 1515,233.31943,204.95815,36.2883,78.81877,99.96834 1515,603.2856,327.39893,28.186157,61.974487,0.22852011 1515,446.69934,219.92673,29.925568,64.006195,0.1353615 1515,387.21445,195.54987,40.701935,67.648285,0.034447793 1515,622.65985,192.9388,16.486816,52.07379,0.008865618 1515,589.3547,158.3875,47.92639,230.90852,0.0027138286 1515,215.87276,182.65038,83.02586,135.83806,0.0022995672 1515,599.1419,302.4033,38.796997,182.64725,0.0017993831 1515,406.7379,152.48918,132.61475,241.70015,0.0012724302 1515,611.4428,102.72391,27.703857,150.71767,0.0009953919 1515,620.3078,296.42645,18.838867,61.761658,0.00075601996 1515,1.2281543,111.92826,28.483603,156.6276,0.0005110248 1515,373.9495,144.59552,91.25943,169.02103,0.0002409694 1515,0.9175749,185.91048,19.113895,132.39626,0.00010152196 1515,608.11035,0.39560872,31.036316,62.8933,9.4300325e-05 1515,609.82416,442.00662,29.32251,62.65631,6.2614345e-05 1515,2.7979395,125.04167,59.042217,221.42516,3.9271054e-05 1515,0.4667204,272.83786,20.978748,108.75409,1.1446868e-05 1515,0.78083414,369.61752,19.159254,127.16025,1.1147278e-05 1515,0.85004723,46.34991,20.346552,141.06706,7.854902e-06 1515,3.017256,395.84442,57.055805,99.90466,1.2875025e-06 1515,1.4379932,10.859395,62.103573,208.0579,8.291554e-07 1515,1.308706,11.8647175,37.24778,78.21322,1.6334576e-07 1516,513.5624,241.09897,57.464905,143.47214,99.96492 1516,262.43872,221.1781,39.08493,97.0076,99.96374 1516,233.05388,211.17387,39.191025,94.35005,99.94855 1516,529.2981,239.20477,28.100403,46.60556,0.39949962 1516,503.97433,214.18092,45.842316,108.4836,0.023572933 1516,608.6253,209.60066,30.159912,118.113785,0.0071956054 1516,535.97003,268.20154,27.620178,65.37384,0.005112394 1516,206.67769,188.89375,104.804214,159.69429,0.002324123 1516,476.41272,191.0028,138.1297,238.77106,0.0013508458 1516,598.47736,255.07245,40.199524,195.53397,0.00029803495 1516,0.8477995,146.2158,19.521275,132.57716,6.7947265e-05 1516,609.8539,439.5948,29.292786,66.272736,5.9393664e-05 1516,519.3023,271.08655,28.527649,84.70709,4.75415e-05 1516,609.05853,2.0497723,30.088135,59.9366,3.8587143e-05 1516,0.509218,251.01988,20.035173,133.42043,1.0308623e-05 1516,0.761154,349.8576,19.453913,130.22528,8.599815e-06 1516,2.806203,159.00134,57.82518,217.26993,4.179369e-06 1516,1.6016781,420.72992,34.360413,79.390656,1.4481137e-06 1516,1.0747738,51.197926,29.054243,149.8407,1.2963242e-06 1516,1.4419141,13.393395,34.79336,73.010124,5.47002e-08 1517,161.42325,210.42209,52.260986,139.64209,99.96172 1517,565.4179,244.83714,70.14685,188.85814,99.943535 1517,202.40636,235.1778,48.63243,123.8176,99.68458 1517,592.1828,250.44594,37.95459,74.55678,1.0503166 1517,569.1423,270.71658,36.745117,89.77951,0.3540294 1517,234.45808,245.11479,33.281357,80.45033,0.32350254 1517,599.2972,291.54504,26.623901,60.244415,0.112762615 1517,610.07776,254.2809,28.180664,156.04051,0.100806154 1517,595.7626,203.0157,30.230408,83.493484,0.010731805 1517,619.8239,205.90865,19.322754,64.605576,0.0063117803 1517,154.17868,167.71188,140.66937,251.84332,0.0030672876 1517,536.9455,211.6708,26.685608,58.396667,0.0014148877 1517,582.85364,360.39166,55.831177,130.87521,0.00011748293 1517,1.0512362,158.69402,18.706886,139.95216,0.00011224743 1517,597.60297,79.48063,41.5437,281.98703,6.5402164e-05 1517,609.3428,2.8172755,29.803894,58.12093,4.7329107e-05 1517,0.74164474,241.1296,20.105274,135.3474,2.940728e-05 1517,585.5892,300.26505,29.461243,81.27286,2.0410975e-05 1517,1.1482373,442.60052,21.28938,61.22693,4.164933e-06 1517,1.1205689,307.32516,32.46651,177.89484,3.3024971e-06 1517,0.6654354,47.866108,20.346739,147.42699,8.454993e-07 1517,1.3916147,12.541996,34.962727,73.60774,5.47289e-08 1518,29.457998,210.40155,77.48569,204.84833,99.91325 1518,81.523285,235.71458,61.64499,188.37349,98.43092 1518,176.58275,246.19576,24.582596,55.54515,0.24132678 1518,609.73114,206.19766,28.897644,64.29401,0.15257166 1518,188.87743,245.29152,35.441772,62.467087,0.11944871 1518,65.04331,246.12727,35.133247,103.86119,0.026246797 1518,103.75818,290.91013,33.057632,79.94867,0.024043303 1518,601.03284,120.4625,37.87738,183.31244,0.0045557553 1518,94.10656,229.58353,39.54284,91.03229,0.0034270226 1518,1.9116325,186.7648,29.03702,153.90808,0.0014149632 1518,38.294422,232.55493,44.574467,93.31583,0.0012819244 1518,206.10875,157.92958,59.75145,154.00752,0.0008956164 1518,611.89,221.11815,27.256653,168.27571,0.00027426338 1518,0.8321989,99.102974,19.948925,149.16168,9.4254836e-05 1518,1.0688721,264.0196,20.118973,140.39377,9.155727e-05 1518,60.976585,295.73163,24.93541,77.300995,7.8858684e-05 1518,602.9183,326.39084,36.228394,164.61365,4.6334604e-05 1518,609.87494,439.28845,29.271729,66.3761,3.690934e-05 1518,609.39453,2.8364062,29.752136,58.576565,2.9007577e-05 1518,426.83972,160.79776,94.504944,187.13766,2.2396513e-05 1518,3.1910841,42.436172,62.971504,312.9458,1.5938132e-05 1518,0.8688151,322.18585,31.993967,162.71515,1.0333348e-05 1518,1.0506877,441.3534,21.034382,61.99994,6.2884e-06 1518,0.80402833,22.999733,20.35658,126.93206,4.6951718e-07 1518,1.1740593,7.8277006,29.801725,56.226963,4.3846824e-09 1519,615.22797,242.66362,23.219055,45.856766,0.8906381 1519,127.595474,251.46298,36.156906,73.116394,0.09590814 1519,105.22691,225.34938,41.519165,107.069016,0.09237847 1519,186.9071,224.15875,36.072464,71.54913,0.025321575 1519,438.38315,198.90779,46.82498,88.864456,0.006839338 1519,612.7388,226.58435,26.407898,152.20337,0.0034075282 1519,624.49603,211.86237,14.650635,45.10843,0.002398654 1519,201.78194,166.58513,45.436325,122.24748,0.0023753373 1519,120.40389,166.9067,82.90748,179.91057,0.002287437 1519,130.75497,235.23561,22.540634,52.73979,0.0021951732 1519,539.3036,220.72018,22.124573,45.922028,0.0006747202 1519,0.4025057,75.02754,18.89658,81.46129,0.0006567839 1519,0.6579142,109.32586,19.870842,151.00018,0.00040460526 1519,588.4754,109.15519,50.563965,210.93149,0.00032870338 1519,617.38367,154.46313,21.763,93.272385,0.00016404636 1519,1.7428597,159.89201,32.88578,188.06181,0.00014133056 1519,612.6316,325.9083,26.515076,144.40073,9.515457e-05 1519,1.0029444,301.56866,18.00551,77.72894,7.224028e-05 1519,3.9312453,210.20805,59.503548,218.19322,4.3397682e-05 1519,614.25916,415.75134,24.887512,88.68585,4.158687e-05 1519,167.60635,142.93227,115.749664,205.76167,3.4427147e-05 1519,1.0564437,236.83209,18.185646,79.862335,2.660083e-05 1519,612.27936,37.895065,26.86731,154.30655,2.454756e-05 1519,0.61199874,361.42593,18.330748,75.27475,1.3895085e-05 1519,598.1514,4.9670606,40.99524,82.55299,1.1709016e-05 1519,435.9234,172.3682,88.457886,187.20636,1.1419717e-05 1519,1.700997,312.57733,31.876465,171.09753,1.0642103e-05 1519,1.1858903,442.32825,20.88162,61.146393,4.268568e-06 1519,1.5826173,19.516563,61.454636,252.56168,1.8573662e-06 1519,0.7974813,19.408249,22.102821,100.3207,7.6252036e-07 1520,449.10208,199.22226,26.662659,66.89789,15.909698 1520,599.61755,240.54584,25.162903,45.87677,0.40463245 1520,5.6596746,218.28107,71.96461,168.45145,0.035821322 1520,136.55484,176.74388,43.989975,147.1581,0.0259796 1520,1.1005396,244.61977,21.561121,58.536728,0.023363765 1520,9.029883,250.30052,37.492695,92.394424,0.021119474 1520,543.8723,233.61905,23.782532,46.669952,0.018234381 1520,611.45746,249.753,27.689209,56.119034,0.017824732 1520,1.2099284,259.36334,29.07478,155.71655,0.0042499076 1520,167.31996,194.74968,28.766937,56.436035,0.0032971445 1520,619.45276,200.1493,19.693909,54.732437,0.0027845069 1520,602.7127,216.96388,36.43396,198.54576,0.0018701814 1520,0.44235027,123.8267,14.048332,53.05845,0.0015990573 1520,0.6069824,304.03897,14.833403,59.274933,0.0012986404 1520,0.5192269,115.30714,35.26349,227.12271,0.0011892621 1520,0.44311523,68.76645,18.855122,79.807144,0.00082606537 1520,598.9578,99.440346,39.279663,202.5615,0.00057134137 1520,181.2967,187.66556,26.729736,51.33914,0.0004151204 1520,0.30313396,148.9588,19.483559,87.44873,0.00036476794 1520,108.101524,145.91382,123.00715,216.43582,0.0003460507 1520,133.98285,185.75256,29.464478,64.12483,0.0003293545 1520,554.393,224.14589,25.628235,49.135513,0.00029320014 1520,1.0271004,332.37164,19.611889,141.41144,0.000268546 1520,152.9185,184.72241,29.750427,56.486603,0.00019716518 1520,612.9026,329.2644,26.24408,142.233,7.2984556e-05 1520,430.4215,170.09299,87.72223,154.57974,5.9918897e-05 1520,609.6446,440.47928,29.502075,65.812775,4.6394027e-05 1520,587.09326,2.4797657,52.053406,138.53131,4.4420303e-05 1520,4.669346,338.3688,78.553345,144.5986,2.3667797e-05 1520,1.0917294,436.46686,20.873095,67.388794,1.2762123e-05 1520,585.8621,393.25424,53.284546,104.9003,1.0366711e-05 1520,1.1894304,18.077106,58.965076,112.41777,3.9535744e-06 1520,0.326757,37.620167,15.005665,56.468273,2.7121184e-06 1520,0.8640137,7.481299,30.922367,57.135887,3.2215585e-08 1521,472.45767,224.23001,21.190033,48.7912,98.315834 1521,459.707,223.81253,19.537598,48.327057,95.00937 1521,1.2717221,357.201,31.672297,76.62088,1.5246788 1521,429.9558,194.12767,31.651398,74.39818,0.07847015 1521,0.8183529,361.5241,13.37964,47.913727,0.006284466 1521,621.6211,159.4049,17.525574,52.388016,0.0059106317 1521,620.3258,196.96667,18.820862,63.86682,0.0052377093 1521,449.0345,201.0874,39.075745,89.87277,0.0043172883 1521,560.50836,230.42566,24.774841,52.61374,0.0033096953 1521,610.9151,122.77642,28.231567,147.0155,0.0029189053 1521,586.60004,240.6768,23.438232,47.433975,0.0020005968 1521,617.34375,245.35922,21.802917,79.212555,0.0019183431 1521,559.6244,179.17633,44.26013,117.39551,0.0015316027 1521,1.0653874,384.06284,15.720835,65.0712,0.0013779376 1521,0.95458823,83.12226,34.61069,187.4234,0.0011747322 1521,82.91167,184.87605,35.905617,77.3987,0.0010541137 1521,145.50484,181.73917,28.375916,49.308548,0.0009739282 1521,0.64083576,185.31262,18.943378,80.59485,0.0009249118 1521,0.5194116,130.221,14.134302,51.979324,0.0006599509 1521,600.85364,200.81728,38.29303,189.72337,0.00052445213 1521,87.988846,109.81821,82.99069,181.37628,0.0004942464 1521,1.4557765,331.7732,55.27458,153.66724,0.00039374514 1521,163.51204,124.9616,36.739105,81.115395,0.00021942692 1521,618.0741,327.55762,21.07257,80.62152,0.00021082288 1521,0.59756106,67.31607,19.133116,82.904236,0.000188241 1521,140.87459,153.07306,46.935913,130.87665,0.0001568414 1521,0.98157716,196.99963,33.11255,230.24506,0.00012267029 1521,98.12259,166.47508,39.14377,80.68198,0.00010984095 1521,0.91701746,414.651,14.985226,88.06708,7.514065e-05 1521,0.7193669,243.96634,18.50112,77.91171,7.2313065e-05 1521,612.8985,365.4336,26.248169,134.4497,7.052862e-05 1521,432.41168,177.55312,89.93091,150.3209,4.2697775e-05 1521,121.45349,104.80431,114.376724,219.8464,3.4838977e-05 1521,2.6021826,427.96082,45.98554,72.94092,1.6417645e-05 1521,597.23157,3.2479818,41.9151,85.04744,1.3219692e-05 1521,1.3616471,19.471762,59.736015,111.18891,3.3935542e-06 1521,0.5355705,40.134117,14.434733,52.140335,3.2271892e-06 1521,0.7899805,7.649717,30.276997,60.083355,1.4634785e-08 1522,500.37558,214.52432,20.96054,46.01483,99.11981 1522,486.91815,213.7037,20.304688,46.19522,98.34408 1522,596.0012,219.99133,33.37677,64.02301,15.159768 1522,144.5623,85.923256,42.236664,93.738655,0.17109767 1522,166.78316,212.19492,25.92543,53.88446,0.14046851 1522,468.4075,174.51775,32.096985,74.308014,0.013174367 1522,620.5247,261.30374,18.621948,58.516663,0.011403644 1522,608.4462,212.43076,30.380615,129.9302,0.010230512 1522,485.5359,187.89862,39.858948,98.10797,0.007320883 1522,126.47008,165.46971,29.734451,53.029877,0.0068247826 1522,621.2755,211.70891,17.871155,63.798508,0.0037601222 1522,110.97687,88.37515,86.60959,180.96616,0.0030850584 1522,0.95825684,170.68248,18.636726,79.36502,0.001792192 1522,621.4509,143.41641,17.69574,58.272675,0.00058642233 1522,598.49115,79.6219,40.152832,231.45613,0.0004655688 1522,1.699139,88.2358,32.574112,185.83658,0.00021346266 1522,0.641792,73.61985,18.910305,82.7687,0.00011538818 1522,470.63834,152.81029,83.50534,189.08989,9.9239754e-05 1522,1.1617049,201.35097,19.250961,141.09023,9.1812595e-05 1522,612.7995,366.40305,26.347168,134.0531,8.405214e-05 1522,3.8400164,156.58888,58.365818,216.01317,7.5324184e-05 1522,608.34125,1.8626237,30.80542,60.647404,5.092861e-05 1522,0.89740074,383.59692,18.478165,114.12341,1.5467594e-05 1522,1.6959343,274.71936,31.218925,176.54132,5.6265735e-06 1522,3.1743538,397.40765,57.63353,97.84372,3.6610857e-06 1522,1.6978581,17.115686,57.94818,111.0897,5.970679e-07 1522,0.63240194,11.073965,10.413912,84.12417,2.6401906e-07 1522,1.1839079,7.8743005,30.081808,58.056248,1.2848959e-08 1523,538.73645,214.31793,23.138794,49.93753,97.77531 1523,526.3359,215.15497,22.740051,47.336456,76.89803 1523,607.59686,226.35368,30.57782,69.880875,0.25021225 1523,519.01825,193.16434,43.48462,91.91666,0.04462969 1523,84.17418,90.81529,38.466537,99.54231,0.010922294 1523,135.80408,48.303776,23.976395,49.542713,0.00805394 1523,620.83344,261.71524,18.313232,60.2153,0.0030379605 1523,0.7219873,206.44514,18.889547,80.24397,0.0014925294 1523,108.97314,45.71912,40.09516,101.50806,0.0013857523 1523,0.60534835,60.020885,18.454437,82.52048,0.001115293 1523,0.9592204,87.12,32.84189,186.47833,0.0004000471 1523,621.37164,132.95918,17.775024,56.077377,0.00037721856 1523,589.82635,206.78055,49.320312,237.46426,0.00035797822 1523,53.152615,91.76765,87.17996,191.38617,0.00028332745 1523,0.8425782,189.60274,31.358665,178.70921,0.0002809157 1523,621.451,178.80841,17.695679,56.01654,0.00020126726 1523,599.76874,86.686874,38.976685,213.0717,0.0002009048 1523,0.38014975,115.41668,19.260485,86.026405,0.00014903626 1523,612.91223,370.07047,26.234436,128.07834,0.0001031387 1523,508.81195,165.64577,91.49725,174.38774,8.5787935e-05 1523,598.351,1.2522755,40.795654,96.05174,2.0193007e-05 1523,0.7867318,360.14734,20.652575,104.19122,1.14769055e-05 1523,0.7895207,423.09537,16.886724,79.58807,7.516818e-06 1523,0.7779305,299.27164,20.673225,108.55438,6.2496815e-06 1523,1.169629,14.991654,60.318256,114.41734,3.4910342e-06 1523,80.45446,12.750893,84.756355,179.67355,2.4431947e-06 1523,0.5638302,10.443705,9.533286,83.77569,2.3227728e-06 1523,3.09445,337.9941,57.759377,148.9512,1.7352095e-06 1523,127.81467,20.309587,48.195297,103.95513,1.3332714e-06 1523,1.0701172,7.7561364,31.2318,59.295116,5.40885e-08 1524,559.58777,228.77324,27.4646,57.120163,99.096306 1524,547.75757,233.08972,22.626953,49.81311,75.36818 1524,609.82385,265.3373,28.497864,63.64279,0.23333025 1524,605.6314,174.59657,31.86145,71.71825,0.22788881 1524,542.50714,201.74226,61.10663,103.35588,0.018911436 1524,623.1817,172.58658,15.964966,46.59372,0.016898885 1524,571.8246,116.01516,66.980774,187.27573,0.012998471 1524,620.9243,235.1669,18.222351,63.219482,0.00895883 1524,622.0654,203.54002,17.081238,49.063187,0.0053392407 1524,588.85034,202.92458,37.145325,79.64461,0.0052494197 1524,579.8757,232.45496,21.965454,46.50879,0.003261817 1524,624.2549,143.59888,14.891785,45.341003,0.0018598301 1524,600.5152,216.46454,38.63147,206.54868,0.0014660716 1524,0.8227653,160.74983,18.367544,76.80632,0.00060401624 1524,0.30586672,111.19982,14.19529,49.59928,0.00045755165 1524,617.38165,311.80222,21.765015,89.5387,0.00027381076 1524,618.35114,388.75247,20.795532,80.14346,0.00021034009 1524,0.5121232,68.8272,18.853235,76.18433,0.00011187892 1524,1.1692871,93.48523,32.60865,185.21838,6.051049e-05 1524,0.70178145,216.96623,18.259764,79.37581,5.7349764e-05 1524,611.62604,25.716185,27.52063,182.70447,4.4763914e-05 1524,609.93976,441.6685,29.20691,63.58673,3.6130332e-05 1524,0.6446314,248.17131,19.141884,137.00322,1.4251917e-05 1524,0.8484465,420.76248,13.812328,81.180176,9.361327e-06 1524,572.52765,358.91168,66.61902,132.69046,8.111605e-06 1524,0.8868319,330.0939,18.997297,127.50162,7.6203505e-06 1524,3.5195248,184.42061,58.44088,228.18697,4.125119e-06 1524,2.5697365,433.09485,45.55848,66.78845,2.740092e-06 1524,0.71239096,42.10976,14.139685,52.96767,1.1434676e-06 1524,5.492624,360.6413,80.03894,127.29318,1.1310364e-06 1524,1.5219108,20.962263,56.295578,102.376396,8.1570903e-07 1524,3.2347429,33.83578,79.925804,267.02652,2.8555326e-07 1525,537.11145,240.89677,26.55011,49.641678,0.29931828 1525,612.81494,230.91563,26.331726,60.91713,0.018819949 1525,547.45197,222.2187,28.118408,55.498856,0.0012296075 1525,615.46155,53.45461,23.68512,86.321335,0.00053150824 1525,611.32745,314.52072,27.819214,143.387,0.00048383055 1525,527.23834,205.10904,44.423035,105.634125,0.00029032477 1525,600.6701,147.16493,38.476562,184.82622,0.00027409187 1525,617.8333,271.27902,21.313354,90.69064,0.00018689263 1525,1.2718523,265.14236,29.629652,146.64478,6.503229e-05 1525,599.5724,8.772852,39.57428,74.30055,6.215813e-05 1525,616.6884,120.34063,22.458252,87.58198,4.6527843e-05 1525,0.67795247,355.62372,20.516712,114.85104,4.634848e-05 1525,575.3593,251.32056,63.787354,225.47092,4.5414494e-05 1525,614.0677,409.45477,25.07898,96.89926,4.384622e-05 1525,1.3167342,247.74823,19.191713,81.49887,3.7843038e-05 1525,0.8350098,68.7658,18.682499,147.51279,3.3818305e-05 1525,2.5405796,103.027336,55.918846,254.38943,2.9022132e-05 1525,2.6752346,318.49625,58.26414,161.20465,1.12784965e-05 1525,484.01508,18.515772,39.450012,68.92983,5.0117237e-06 1525,187.41423,111.47339,74.936325,190.79178,4.8555007e-06 1525,0.6389868,167.31657,18.581278,74.543015,4.3786044e-06 1525,496.89,134.95717,140.17883,237.07744,4.2040574e-06 1525,0.7474292,419.72375,14.153594,83.238434,3.012722e-06 1525,440.54703,25.074356,29.859558,66.97775,1.5957289e-06 1525,2.0361297,432.27206,45.8771,67.0744,1.2093952e-06 1525,454.3761,10.92292,40.55371,89.81527,5.966126e-07 1525,141.39746,427.23383,72.2119,73.74176,2.0100919e-07 1525,3.480407,27.722761,74.89442,126.03795,7.3338946e-08 1525,115.93827,19.693666,78.678566,143.91455,6.915729e-08 1525,2.337513,24.162035,27.426102,105.14674,2.038212e-08 1525,1.2537594,15.487182,10.8533125,74.10083,1.9184188e-08 1525,428.5747,2.292295,46.504303,47.041775,2.956825e-09 1525,469.90927,0.0,45.17148,47.864365,4.7002874e-11 1525,514.16046,0.0,49.866394,49.644844,1.2745351e-11 1526,620.5425,182.73546,18.604187,61.67572,0.009835906 1526,0.6751742,187.4944,13.333742,50.03621,0.0015366047 1526,608.8013,191.02193,30.345398,127.941696,0.0015018045 1526,564.5725,233.17274,25.81897,56.17311,0.0014993758 1526,608.4808,73.537544,30.665894,160.82883,0.0010769223 1526,1.1078638,201.52567,19.129213,132.26328,0.0006130841 1526,469.27365,212.5386,24.790588,51.572845,0.0004174472 1526,2.962448,156.73094,50.27958,172.2928,0.0004170803 1526,0.8872469,121.79761,19.981419,139.09622,0.00027596616 1526,618.3486,373.06323,20.798096,83.98157,0.00026789578 1526,160.82092,174.4823,25.352432,52.66185,0.00019189388 1526,617.679,261.84763,21.467651,86.02692,0.00018512776 1526,0.6369027,114.26105,13.853527,47.463104,0.00011359427 1526,553.1573,101.95672,80.769714,184.96552,9.473859e-05 1526,574.6588,174.0217,64.487854,237.09082,5.9427435e-05 1526,614.5191,415.39575,24.627563,90.03604,3.5602156e-05 1526,0.77220464,279.2763,16.11431,139.30801,3.263254e-05 1526,526.32745,195.70705,24.489014,53.699707,1.9301811e-05 1526,608.5523,8.183356,30.59436,106.76321,1.7606071e-05 1526,570.27155,23.49315,68.87512,132.89525,1.4152422e-05 1526,0.82856447,419.48267,13.737157,81.48093,1.2393633e-05 1526,588.1181,313.51376,51.028564,174.32541,1.170848e-05 1526,1.4683195,342.18002,28.276997,145.9737,7.3047795e-06 1526,522.76764,161.81439,42.90094,129.77036,7.289136e-06 1526,543.6261,204.95256,27.377197,52.13109,6.33366e-06 1526,0.6818758,59.202747,18.507963,74.69168,5.2129094e-06 1526,2.3428028,429.991,45.38642,69.51105,3.6088106e-06 1526,5.4942546,360.7448,78.886116,123.790924,2.7251854e-06 1526,2.7750945,36.34312,83.073425,242.49815,9.806392e-07 1526,93.75945,428.51093,74.25715,73.30121,1.8345432e-07 1526,1.3233496,27.493366,35.772728,180.68591,1.772344e-07 1526,0.6452983,13.231091,11.732276,76.04753,4.898854e-08 1527,620.7098,174.82758,18.43689,60.40654,0.06153322 1527,616.59796,127.018234,22.548706,82.81334,0.023547323 1527,427.03015,231.62576,28.395111,63.61389,0.021946443 1527,0.8975391,279.5129,19.009584,91.85159,0.011274609 1527,599.84344,79.09855,38.124756,180.88593,0.0057973843 1527,0.42644572,297.1922,11.13557,46.917206,0.0032447109 1527,1.3171012,190.61833,34.336937,190.18474,0.0025546772 1527,409.41754,238.81094,26.846771,56.88504,0.0017824965 1527,612.6932,170.8741,26.453491,148.33986,0.0014280395 1527,621.2377,72.31995,17.908997,55.890152,0.0014168753 1527,299.65463,260.4099,25.111511,50.082428,0.0012900517 1527,582.33685,0.0,56.48694,143.72597,0.00020049674 1527,0.6622331,234.48853,18.864578,83.967926,0.00017777944 1527,618.4359,375.2618,20.710754,80.578674,0.00017125245 1527,618.4715,320.95566,20.67517,80.31229,0.00017006876 1527,389.11823,98.256836,77.07568,190.51218,0.00015664227 1527,0.5214905,131.17691,13.628235,50.03589,0.00014280083 1527,0.72148925,68.54142,18.487982,78.621086,0.00014105976 1527,4.530446,172.7423,77.94716,267.39215,0.00012158966 1527,587.03613,184.21115,52.110535,249.14856,8.3209445e-05 1527,0.636757,119.19534,19.88757,145.8689,7.636238e-05 1527,508.8684,55.137695,26.276184,58.81408,3.328952e-05 1527,426.39062,62.72739,36.54901,84.7507,3.2490534e-05 1527,603.6111,309.02942,35.535583,182.41528,2.9988369e-05 1527,0.89287597,333.2469,15.956743,146.10422,1.4085018e-05 1527,581.8306,425.49777,57.31604,77.566986,5.169699e-06 1527,1.0980331,443.32596,21.518885,60.312347,2.7387337e-06 1527,530.6107,46.20115,25.481812,61.19651,1.9277045e-06 1527,3.2194939,392.16162,56.690437,100.15115,1.4931134e-06 1527,2.5965886,30.621004,83.78976,243.81088,5.416906e-07 1527,305.0495,425.6561,71.98636,74.9924,3.66093e-07 1527,462.02292,425.14615,72.2211,76.087524,3.6516968e-07 1527,421.19974,425.86728,71.98288,75.306885,3.2363167e-07 1527,195.71028,428.42017,71.55318,71.31668,3.0321016e-07 1527,1.7737843,17.062191,58.105526,109.77898,2.868886e-07 1527,380.22818,426.2573,72.65286,74.790436,2.731262e-07 1527,516.70166,428.7113,73.9032,73.01236,2.512416e-07 1527,374.2398,19.017145,39.960266,70.020096,2.055516e-07 1527,40.53879,430.7287,77.20206,70.25464,1.8462603e-07 1527,155.0658,428.81287,71.91182,71.64877,1.8321025e-07 1527,494.9881,34.819275,28.102844,67.829414,1.5371394e-07 1527,86.6546,428.9346,71.92563,72.02817,1.2924718e-07 1527,404.32153,0.0,130.4306,239.00787,8.482837e-08 1527,493.90387,0.8727279,49.95392,149.23715,6.149429e-08 1527,443.2914,3.0656836,46.74417,128.33769,3.488395e-08 1527,1.138903,7.493529,29.599922,57.012993,3.2266054e-09 1528,128.49887,223.55487,21.697739,47.84268,0.10898645 1528,213.54509,203.56076,38.821243,104.858246,0.05873868 1528,133.46953,195.2659,25.031372,58.72603,0.0077034957 1528,621.30255,203.49506,17.844116,60.102905,0.006313261 1528,600.99976,93.275764,37.56421,180.0145,0.0049916194 1528,116.22649,152.6929,43.054077,139.89706,0.0026138069 1528,125.611984,188.45901,19.546402,45.191772,0.0019431518 1528,616.1586,75.583534,22.988037,83.33825,0.0019306504 1528,257.1314,208.04391,22.916748,45.26805,0.0010260674 1528,617.2543,232.03905,21.892395,83.784195,0.00081390556 1528,0.63206303,128.53635,18.999481,82.482285,0.00062655954 1528,457.54266,156.28372,39.460205,82.53665,0.0004773472 1528,431.38687,97.80159,128.21994,224.0035,0.00029887632 1528,3.955459,196.00717,57.208046,241.73575,0.00029467995 1528,189.89096,85.41944,46.359283,131.9072,0.0002927059 1528,92.03453,91.89806,121.114075,264.95807,0.00028888803 1528,618.267,388.08588,20.879639,80.422455,0.00027976022 1528,618.355,345.49164,20.791687,77.059875,0.00020714113 1528,1.3971192,252.80063,28.103636,156.40149,0.00020297953 1528,144.0071,178.94731,43.449448,138.55449,0.00017484839 1528,1.0017391,330.01578,16.292522,133.99377,0.00015102718 1528,1.0639404,95.20391,31.785742,180.09686,0.00013528288 1528,602.7525,204.42743,36.394165,186.56177,0.00013182456 1528,0.79016036,188.51784,18.529266,80.49031,7.833072e-05 1528,0.6178776,68.941864,18.704302,82.64197,6.2568564e-05 1528,609.5555,438.92313,29.591187,67.730286,4.737752e-05 1528,451.55527,38.042526,62.30435,171.97978,2.2193291e-05 1528,5.543587,347.6651,78.997894,131.14038,1.7849829e-05 1528,587.5535,11.547006,51.24878,121.2217,1.4812357e-05 1528,572.37384,363.82303,66.77283,127.725586,9.28242e-06 1528,0.6464673,415.46878,16.753618,86.724396,7.696967e-06 1528,156.87518,51.819324,113.318665,264.0712,3.2225266e-06 1528,246.9271,30.62336,28.879395,75.33621,2.3032117e-06 1528,2.6615446,420.6217,53.22694,77.72757,1.1215584e-06 1528,1.2876514,17.384096,33.59773,157.49187,2.4233296e-07 1528,0.7841679,9.511458,11.000518,81.58391,1.4251972e-07 1528,339.49268,0.56437504,42.747345,47.493813,1.8788139e-08 1528,215.53275,2.5936263,84.337006,145.09035,1.4312413e-08 1528,1.5373356,6.1525717,30.226376,58.398956,1.2958086e-08 1528,250.76738,0.26074708,43.005722,50.181866,4.0330107e-11 1528,134.23833,0.0,43.83188,47.041176,1.5106406e-11 1529,608.6187,229.89125,29.900757,76.22359,0.8591913 1529,608.84863,157.69788,30.298035,55.72786,0.04226595 1529,77.558266,202.55383,39.577026,62.174805,0.037528668 1529,621.60065,216.99054,17.54602,46.16565,0.026272584 1529,0.54541665,154.57205,19.402897,80.09926,0.013352234 1529,622.5772,138.72328,16.569458,45.73027,0.0070049763 1529,620.9645,268.28934,18.18219,60.197876,0.006847013 1529,428.33133,98.475235,26.868927,59.926056,0.0061684595 1529,595.4949,120.57799,43.605103,146.7242,0.0053570764 1529,0.79115075,110.37568,34.759293,168.53351,0.0013921474 1529,611.5592,46.724262,27.048462,60.785976,0.001257894 1529,333.9008,205.9607,25.931,53.26941,0.0011242139 1529,490.32413,238.52937,22.628265,46.176376,0.00096262584 1529,553.1857,113.72337,36.444214,80.51854,0.0008916417 1529,445.58038,97.70334,28.578339,66.25552,0.00077098905 1529,0.49563804,204.84413,18.678526,78.35307,0.00053608377 1529,623.2464,186.75285,15.900269,48.500824,0.0003792085 1529,617.9331,298.27695,21.213562,88.99722,0.0001869527 1529,589.30896,198.02348,49.837708,244.61064,0.00017615454 1529,539.26196,75.708115,99.45776,241.81685,0.00014766098 1529,602.22845,10.888626,36.918213,153.32715,0.00014043413 1529,613.1441,376.60486,26.002563,120.25598,0.000116227435 1529,609.8448,4.9832554,29.30188,62.529182,0.00011042703 1529,261.74597,30.98517,125.96292,229.46332,4.6286907e-05 1529,2.404541,174.58932,58.30071,241.00912,1.9926103e-05 1529,0.39555502,248.3561,20.593813,115.77367,1.5954833e-05 1529,281.67575,12.790117,43.58914,163.7052,1.4572052e-05 1529,0.60241944,318.38266,18.220125,70.67084,1.014083e-05 1529,0.5342147,49.40773,19.61899,154.08647,9.088552e-06 1529,0.8005957,405.46823,18.17158,71.04346,8.85066e-06 1529,0.5981592,356.98026,18.310795,73.73575,7.660981e-06 1529,1.1347982,20.16831,58.854057,112.52427,2.51212e-06 1529,1.0627784,289.43906,32.485,172.6871,2.48553e-06 1529,290.3572,4.283932,41.83307,56.757423,1.3868323e-06 1529,2.3102508,431.28128,46.277336,70.22974,1.0106339e-06 1529,5.441898,355.07516,79.53748,133.41547,8.9508524e-07 1529,0.49374473,9.034352,10.850404,86.55401,4.682669e-07 1529,0.63008463,3.4701855,31.143862,67.33173,7.604108e-09 1529,252.04358,0.0,44.076935,54.455757,6.6952084e-09 1530,468.76776,191.3438,26.856262,48.469284,0.096600436 1530,404.34653,106.724915,27.536072,51.95343,0.0650349 1530,397.99396,97.9321,46.47177,126.55812,0.05512567 1530,87.438866,194.73149,29.439682,67.22209,0.038963854 1530,609.8238,155.61823,28.450989,59.342438,0.012965567 1530,419.99826,169.23941,40.42389,89.51669,0.0066774953 1530,312.03278,185.9783,23.908813,52.836807,0.004214484 1530,312.98447,223.98248,23.464905,49.90454,0.002941952 1530,619.6482,129.03247,19.498474,61.534363,0.0023027363 1530,384.77756,81.22957,41.17212,96.20723,0.0014612182 1530,430.6872,95.424355,76.98349,174.15045,0.0010191464 1530,618.10956,201.71643,21.03711,79.851074,0.00081975886 1530,598.1344,90.17089,40.967224,184.38025,0.00063138094 1530,621.2622,87.50606,17.88446,56.021713,0.00031773734 1530,0.712321,180.2628,18.7532,77.59529,9.963264e-05 1530,612.5114,240.94121,26.635254,141.7177,9.958714e-05 1530,218.80443,98.13164,72.30052,173.94789,6.5247106e-05 1530,612.8712,363.80972,26.275452,135.11789,6.353236e-05 1530,0.5050057,215.5965,19.986336,136.85764,6.340501e-05 1530,0.6474626,124.21467,18.705696,78.92068,5.627453e-05 1530,608.97327,0.715612,30.1734,130.47275,4.5786273e-05 1530,360.81668,22.19487,114.66574,241.67784,4.5726185e-05 1530,588.3096,175.78244,50.837097,258.29874,3.690596e-05 1530,1.0300472,136.04437,33.198624,177.30984,3.624332e-05 1530,0.5239616,10.08847,63.257664,121.02234,3.093782e-05 1530,0.5054183,303.6886,18.391153,72.42911,2.0866572e-05 1530,0.8111589,421.3724,14.393791,81.122345,1.133489e-05 1530,1.012596,360.62415,27.772326,133.70752,5.546372e-06 1530,468.3638,6.4560156,48.187225,127.91967,3.913414e-06 1530,86.7588,0.5914079,44.923958,48.99868,3.8427315e-06 1530,2.9278922,300.81195,57.631878,179.45544,1.9505799e-06 1530,436.80298,3.9615495,123.627625,223.26564,4.662456e-07 1530,0.8719849,18.28129,16.314737,123.81301,3.1739867e-07 1530,1.4303939,1.9551579,31.980602,45.800762,8.8035605e-08 1530,211.84944,4.8109603,43.852493,47.065147,3.5281488e-08 1530,183.25865,3.4658237,42.159927,46.356373,6.6595978e-09 1530,59.925274,3.4255242,45.739223,46.604027,4.9900732e-09 1530,29.80593,2.1204622,46.311516,50.669403,1.7318343e-09 1530,361.55176,2.2709749,42.751953,51.179497,1.282596e-09 1530,306.7026,4.657894,43.695038,47.759098,3.232986e-10 1531,516.7448,206.6195,41.14496,65.987946,0.4313328 1531,620.8291,213.42847,18.317566,53.286407,0.044781845 1531,622.5053,182.5398,16.641357,53.345764,0.0038489678 1531,139.16151,78.08513,51.8748,169.88188,0.0025083218 1531,612.5552,198.47733,26.591492,142.47345,0.0020482298 1531,1.1050115,203.32219,19.014116,77.576004,0.0011867718 1531,617.85614,87.485435,21.290527,80.33535,0.00041434797 1531,205.56693,63.57137,21.066254,45.772915,0.00036540788 1531,612.18713,107.11565,26.959534,152.71843,0.00035933952 1531,129.27803,99.33887,23.396896,55.087616,0.000349438 1531,1.0403601,253.70724,13.4232235,51.008453,0.00020430266 1531,118.30935,50.075653,44.966103,138.28165,0.00018813853 1531,138.3356,95.150955,128.05048,261.14032,0.00016742904 1531,192.5831,55.742165,21.477997,47.080276,0.00014863131 1531,0.90973145,234.89438,19.214241,140.3551,0.00014263803 1531,224.8711,39.521927,22.334274,50.149055,0.000117531796 1531,614.4154,412.16968,24.731262,89.26929,0.00010622914 1531,613.21625,318.71893,25.93042,139.84357,9.543103e-05 1531,616.3251,33.853714,22.821594,90.79082,8.312188e-05 1531,573.28687,106.347084,65.8598,254.48245,7.5785465e-05 1531,138.00905,106.9278,29.960968,72.781654,5.529935e-05 1531,2.194323,162.26233,48.153324,174.45471,4.5471355e-05 1531,0.77900964,145.48709,19.045149,87.22333,4.1613766e-05 1531,571.9039,363.6297,67.2428,126.75345,2.0277259e-05 1531,583.9954,15.259571,55.151245,205.57242,1.1623969e-05 1531,0.8620443,325.18146,18.083,135.80075,1.0905285e-05 1531,0.93422365,55.3869,18.322235,73.91774,9.432553e-06 1531,0.78325766,418.71335,14.203653,82.738495,6.7687656e-06 1531,183.24352,8.049199,48.858337,144.29044,5.6362405e-06 1531,87.71347,0.0,121.37955,270.1472,3.469064e-06 1531,3.374694,294.08228,57.230515,182.5416,2.7141675e-06 1531,427.31042,426.4798,73.33563,71.42767,2.356662e-06 1531,1.211276,43.211956,35.550476,207.5624,2.2659042e-06 1531,488.60266,426.28796,77.4129,72.12668,2.1470998e-06 1531,2.3591943,429.92026,45.765503,69.1712,1.9361905e-06 1531,1.0179936,9.96962,12.108127,76.12078,5.654456e-07 1531,4.3572755,23.181316,77.215836,130.90807,5.765098e-08 1531,2.5419793,3.4129949,31.351793,46.079292,5.6309424e-10 1532,173.82922,199.20062,43.696518,81.67975,5.4277534 1532,156.28691,133.32745,72.92413,173.46762,0.009514516 1532,0.70177734,141.57841,18.832623,83.16199,0.0011554374 1532,618.08954,267.5092,21.057129,84.006714,0.0006505613 1532,617.43866,97.06172,21.708008,80.77617,0.00028931428 1532,618.3756,379.91974,20.771057,80.74408,0.00022566521 1532,1.400944,101.86776,32.23222,174.64453,0.00017973721 1532,617.9436,192.95226,21.203064,85.0565,0.00015942862 1532,0.65175295,206.65253,18.303034,73.03708,0.00010777304 1532,614.95605,14.35276,24.190613,79.627335,9.008565e-05 1532,616.90265,143.88184,22.244019,79.699295,7.5934644e-05 1532,0.8719743,70.688156,18.880259,81.48952,7.07535e-05 1532,604.9623,281.48914,34.184387,161.0177,6.418521e-05 1532,601.66425,103.375755,37.48242,195.45587,5.1832005e-05 1532,609.7599,438.14532,29.38678,69.38458,4.1161366e-05 1532,0.57123375,246.7997,20.358126,104.64043,1.8969717e-05 1532,0.8547062,423.12964,15.023827,78.77606,1.6236529e-05 1532,4.1744795,53.109375,79.822945,259.68527,1.2485442e-05 1532,0.72483075,310.83493,17.43129,137.85336,1.1231386e-05 1532,573.04266,361.53247,66.104004,127.02536,7.889045e-06 1532,3.432435,397.9425,57.348454,96.689026,6.471478e-06 1532,2.9800081,217.28976,57.874695,225.49603,5.1860925e-06 1532,366.0974,387.14902,112.611206,106.865265,1.1234082e-06 1532,433.96008,425.66965,72.027954,74.34204,7.2797957e-07 1532,38.43896,427.6726,86.84001,72.042816,5.849391e-07 1532,2.3010514,17.465023,56.982777,114.739044,5.469022e-07 1532,332.16537,424.21677,72.16922,76.11252,3.719376e-07 1532,0.74779665,12.865739,12.81596,78.02114,2.692356e-07 1532,277.11182,427.21753,72.798004,73.69174,2.243168e-07 1532,230.29399,427.88892,71.225266,72.53833,2.1214083e-07 1532,1.4209131,6.6213737,37.270832,46.162113,1.3647313e-08 1533,416.20993,238.351,37.599518,96.67146,1.487609 1533,456.2331,98.138504,24.657227,47.246475,0.022141257 1533,621.21576,208.2101,17.930908,52.78264,0.013391785 1533,443.847,75.69393,50.481262,120.594826,0.008479455 1533,296.4082,44.457027,42.948273,92.66716,0.0070881923 1533,405.5248,140.49013,72.08832,198.38612,0.006874445 1533,610.8771,161.21101,28.269592,134.12361,0.004827488 1533,444.5283,108.3724,24.562439,50.31835,0.0041392357 1533,621.11383,246.32376,18.032837,56.593323,0.0034405296 1533,620.7346,138.03032,18.412048,58.11937,0.003254019 1533,470.26486,99.00573,24.018494,47.055367,0.0020212657 1533,621.34235,171.08313,17.804321,55.829742,0.0016917995 1533,433.42255,126.30568,41.43048,95.388855,0.00166733 1533,610.4122,72.90599,28.734497,153.12498,0.0011704116 1533,586.3927,233.36407,52.753967,247.64764,0.0005604612 1533,612.0324,375.10434,27.114258,124.000946,0.0003080671 1533,0.6832609,170.08914,20.771084,116.64984,0.00021674689 1533,617.24835,316.009,21.898315,83.56171,0.0002045565 1533,0.8394499,104.55558,18.47734,78.149925,0.00019425995 1533,469.8587,124.32541,23.516876,47.531723,0.00015512918 1533,2.9964795,99.18004,58.163124,222.0644,0.00013258558 1533,0.76704836,251.18724,18.354275,78.36763,0.00012426409 1533,1.4641715,202.88852,32.07768,170.30939,3.5371988e-05 1533,607.36456,1.4662988,31.782104,61.074993,2.5076017e-05 1533,584.666,7.650586,54.48065,119.317566,1.1028593e-05 1533,0.49899334,44.569866,19.325478,82.75783,9.513554e-06 1533,1.6149154,21.331638,57.38489,101.164246,8.553063e-06 1533,429.3558,26.262007,94.399445,232.35872,7.2717917e-06 1533,0.8558549,378.2014,15.950839,120.47226,6.1223063e-06 1533,2.3189747,433.71625,46.635036,65.98581,2.3566079e-06 1533,0.80041504,13.337793,25.150034,71.63656,1.1413844e-06 1533,4.7943554,359.52182,79.51654,128.0538,1.0785469e-06 1533,289.00488,3.6299024,87.02832,181.10625,3.8558278e-07 1533,459.54938,6.3498116,51.18741,142.83139,1.5626152e-07 1534,464.3495,205.51146,35.190796,59.693924,0.1712595 1534,621.37524,178.90883,17.771423,52.93701,0.018148592 1534,612.93744,173.2689,26.209229,125.91359,0.002311149 1534,80.93097,157.46577,36.38591,80.21719,0.0010461839 1534,0.76583254,93.74543,18.882051,82.77854,0.0007556098 1534,617.5037,374.98566,21.642944,85.19571,0.000552268 1534,133.14365,107.23717,28.562164,56.21727,0.00044385888 1534,617.74713,254.72328,21.399536,85.00322,0.000373233 1534,54.5959,98.13592,76.913864,214.39029,0.00035371454 1534,0.83349365,141.01991,18.497978,79.46704,0.0002827954 1534,1.186372,113.63961,33.28378,196.95154,0.00021022497 1534,617.9019,329.731,21.244751,82.32193,0.00019717797 1534,609.35223,444.07205,29.794434,63.32791,0.00019283277 1534,0.7120923,234.94797,18.573244,78.9039,0.00019266477 1534,601.1998,72.39648,37.74756,191.29364,0.00016361514 1534,0.77353317,287.4566,13.293684,49.405975,0.00013907973 1534,587.18915,163.91786,51.95752,227.4908,0.00013860306 1534,140.57927,75.249,26.243881,56.8666,0.00012852192 1534,72.42275,82.57346,28.217957,58.847054,0.000100560974 1534,85.48305,68.17932,29.27784,59.148415,5.160192e-05 1534,587.8354,314.93463,51.31128,178.66888,4.876439e-05 1534,131.92027,44.213615,43.653534,128.35596,3.8475253e-05 1534,596.39014,3.6123276,42.75653,81.97598,3.524928e-05 1534,60.827236,99.61828,26.550892,57.872063,3.3751185e-05 1534,5.32985,131.66116,79.48465,275.77417,2.7957782e-05 1534,0.87937015,422.26492,14.059198,79.355804,2.400972e-05 1534,0.69920003,285.15137,17.070267,139.59665,1.9476287e-05 1534,153.79393,69.10141,26.394363,51.64203,1.604036e-05 1534,3.5131626,399.2048,57.19017,95.59485,1.4133e-05 1534,556.9283,428.85913,81.81879,74.52844,1.6185472e-06 1534,1.0351075,22.41933,30.19238,128.31406,9.838279e-07 1534,117.34421,42.28231,21.802002,46.625618,8.1769986e-07 1534,166.63226,429.6679,74.50809,71.55414,6.668426e-07 1534,107.562874,431.01175,74.80239,70.90607,6.0650734e-07 1534,488.77396,427.90817,76.40329,73.94476,5.0168285e-07 1534,441.202,426.3631,72.51407,75.36154,3.7713667e-07 1534,400.8155,427.56537,73.47888,74.04709,3.089346e-07 1534,102.70923,0.0,128.773,245.87433,2.2078646e-07 1534,2.4701335,11.97681,87.06005,208.99565,2.1349254e-07 1534,150.63936,4.8585744,47.29001,123.31017,5.3782866e-08 1534,0.9689714,7.198916,30.638206,57.699352,8.194586e-09 1534,121.43348,14.586188,39.546547,95.57706,1.313766e-09 1535,609.6214,240.47855,28.503357,52.59015,0.6048419 1535,254.32314,187.17111,34.642685,60.85623,0.06535544 1535,441.57642,190.48978,26.627716,52.674683,0.015567271 1535,523.8059,228.44176,25.861572,45.639786,0.011304192 1535,0.36473715,114.06701,20.919981,143.75195,0.004475822 1535,0.19474854,151.221,14.789451,54.877274,0.002037997 1535,0.40260744,117.46745,14.412966,54.40497,0.0014941331 1535,602.0738,220.3164,37.072876,196.69226,0.001127351 1535,615.9862,188.62709,23.160461,80.17415,0.0010911772 1535,2.9827719,87.1313,58.267334,213.494,0.0010287552 1535,0.56101644,90.5741,13.928496,51.09955,0.00096438464 1535,0.8003573,231.80563,18.304754,78.17886,0.0007330807 1535,586.2925,93.68153,52.459167,226.08748,0.0003573472 1535,616.9514,102.541115,22.195251,87.866554,0.00026937475 1535,1.0216666,177.49226,32.414963,178.59486,0.000265664 1535,469.99573,78.305595,37.802094,68.13186,0.00021449338 1535,618.22644,328.30396,20.920227,79.77069,0.00019989417 1535,613.51166,421.0982,25.63501,82.56088,0.00013808352 1535,616.1871,39.53027,22.959595,87.12569,7.407842e-05 1535,587.0719,329.65637,52.074768,162.67157,5.6692643e-05 1535,597.3367,2.688799,41.809998,86.5917,5.2591582e-05 1535,0.8059603,420.3464,14.04118,80.22763,3.3462864e-05 1535,1.1333284,284.2135,28.354706,175.49374,2.1871272e-05 1535,2.5746827,431.95325,46.11073,68.100006,6.843801e-06 1535,0.72992355,17.417591,36.07623,175.91043,2.7351578e-06 1535,5.2363544,362.43356,79.435745,128.07571,2.3731436e-06 1535,537.1529,426.6341,85.32538,74.80847,1.0583781e-06 1535,0.5350403,9.668825,11.280914,86.42514,8.33729e-07 1535,0.68667805,5.141465,31.431593,62.05049,1.0937312e-07 1536,605.6012,229.67374,25.674377,54.513824,84.01065 1536,448.9293,229.30925,24.416748,50.77736,0.24119826 1536,393.22864,211.6546,24.114777,50.79358,0.2265861 1536,566.06976,225.67216,35.16571,68.309525,0.21657053 1536,620.3307,220.258,18.815979,56.89868,0.15639958 1536,590.8764,235.90793,27.445618,57.2135,0.05931632 1536,0.7014307,181.77563,18.910553,77.5231,0.012497304 1536,601.131,206.76863,37.488953,240.51738,0.009529517 1536,613.6032,51.034813,22.042297,45.73693,0.008001708 1536,1.0551693,96.23866,32.885174,178.47404,0.0040250956 1536,601.2786,49.671642,22.019531,47.847027,0.0033770124 1536,0.4419149,150.97655,14.348018,54.689896,0.0021708389 1536,600.33765,77.62689,37.775085,225.05603,0.0014898672 1536,624.22595,35.880047,14.920715,46.046566,0.0014543922 1536,0.56333256,62.492252,18.953175,78.87755,0.0011835359 1536,605.5858,61.070107,33.560852,82.26498,0.0010862674 1536,606.28864,438.65085,32.858032,67.82666,0.00078072614 1536,2.9757586,158.95125,58.339485,217.05745,0.00038988664 1536,617.6472,370.75262,21.49945,79.55499,0.00038250905 1536,0.73825115,231.50488,18.724962,81.120575,0.0003285426 1536,621.3508,127.43633,17.795837,60.053276,0.00025993297 1536,591.2604,3.0754688,47.88629,111.36021,0.0001958773 1536,0.8094059,420.3425,14.645133,80.9155,0.00015630205 1536,616.5079,279.4398,22.638794,93.15961,0.00013062592 1536,570.0912,370.09787,69.05548,122.93329,0.00011544311 1536,0.7304143,357.5871,20.756256,113.14703,8.3101906e-05 1536,0.99713707,258.30182,31.241049,191.39136,4.573848e-05 1536,2.3911865,430.55676,46.143795,69.44733,2.7843635e-05 1536,4.725111,359.97086,78.91111,132.26636,9.503488e-06 1536,0.98709965,20.258696,59.690636,110.08621,3.080639e-06 1536,0.48026246,10.818005,9.208552,85.66826,4.4513996e-07 1536,581.69696,26.226856,22.16626,54.65897,1.0568222e-07 1536,0.7551172,7.603913,30.375206,58.902588,1.3621255e-08 1537,387.12408,210.45096,26.71405,62.05185,1.4296643 1537,467.78705,239.75526,28.1427,52.71663,0.46617296 1537,602.9486,236.97891,36.19806,79.00113,0.28385726 1537,374.2786,195.30981,27.816772,60.721527,0.04049097 1537,300.6398,181.18987,34.44751,65.476395,0.02619015 1537,155.26575,196.503,25.618927,47.930756,0.007817638 1537,536.2971,225.9152,23.157227,45.30919,0.0047832024 1537,5.346198,104.02543,75.83802,177.57324,0.003173118 1537,0.6681242,211.16225,14.083621,57.86238,0.0030813601 1537,620.1628,276.3612,18.983887,65.73584,0.0014736226 1537,1.2015902,139.95218,20.496881,137.79251,0.0014502261 1537,0.98793787,146.51631,13.885368,51.5065,0.0011644039 1537,0.55524087,83.34685,14.006444,50.758728,0.0010664628 1537,590.0268,209.5434,49.040466,241.71344,0.0009825521 1537,621.6231,189.84918,17.52356,56.42273,0.0006878467 1537,612.19305,375.72864,26.953613,119.613464,0.00038613056 1537,617.11,104.26116,22.036682,85.717705,0.00027502296 1537,601.451,73.485634,37.69568,209.45233,0.0002721244 1537,0.8141154,420.65024,14.058505,80.380615,0.00013977168 1537,0.7055819,240.84975,18.66962,76.44673,0.00012451297 1537,1.2353874,195.1946,32.196297,176.76347,0.00012304218 1537,0.8454053,334.51672,19.226526,138.64813,9.658835e-05 1537,58.55396,90.89856,27.730846,53.07425,6.596285e-05 1537,3.1649969,269.9277,57.313408,216.76907,4.415502e-05 1537,2.7522576,433.0877,45.96949,65.710754,3.761578e-05 1537,597.161,4.4753222,41.985657,81.951126,2.7601147e-05 1537,0.77104735,50.349506,21.115082,145.11018,9.136714e-06 1537,1.36778,17.999483,59.42339,112.0863,1.108991e-06 1537,0.52936524,11.215797,10.291102,82.37452,5.2942704e-07 1537,1.0614926,8.25641,30.33061,56.626297,1.924741e-08 1538,415.75986,213.61969,33.94522,67.41843,1.1808752 1538,447.31766,220.93524,24.837097,51.667664,0.025458157 1538,1.0344206,208.82597,25.824347,79.517105,0.024640057 1538,327.75787,190.92302,24.674683,48.05568,0.008842467 1538,0.5487118,77.53656,14.126484,51.90541,0.007198887 1538,0.32077312,89.097206,30.604431,168.41919,0.006301334 1538,622.8384,213.40051,16.308289,53.391876,0.0051293005 1538,610.64124,199.70915,28.135437,124.94426,0.0037339013 1538,0.46001792,137.87852,18.990152,78.168884,0.0031688479 1538,2.2404656,127.44085,58.03729,218.01868,0.0011273382 1538,610.56085,59.07954,28.329895,58.29347,0.0009953673 1538,608.70325,106.22081,30.44342,152.705,0.00083255855 1538,588.9052,211.70113,49.50482,265.0746,0.00056062534 1538,620.92926,127.87927,18.217407,59.689407,0.00050891796 1538,608.9176,440.83157,30.229065,63.304474,0.00019535123 1538,404.26935,168.108,74.16638,152.09793,0.00010918028 1538,612.6685,280.59885,26.47815,149.16684,9.62877e-05 1538,1.1109042,440.90698,20.905186,60.375214,9.252985e-05 1538,0.81389487,333.33057,18.61853,137.66064,6.556959e-05 1538,3.191517,397.3757,58.03333,96.29166,4.22277e-05 1538,594.5642,12.548825,43.54413,79.9798,4.1784366e-05 1538,583.6563,23.562983,55.490356,290.18863,2.9796405e-05 1538,1.2080176,14.403829,84.70256,243.1079,1.9690238e-05 1538,0.63330895,25.806772,31.382664,116.16677,4.591522e-06 1538,0.45085043,11.576471,9.342538,85.30536,4.0796402e-07 1538,0.8815446,7.9078517,30.310383,58.144608,1.0779699e-08 1539,339.98877,205.00885,24.797272,46.05655,0.0873575 1539,611.123,220.86438,28.023682,130.98013,0.023078844 1539,366.32828,205.54967,24.670502,47.071594,0.020590175 1539,379.7567,209.94246,26.997833,52.718124,0.014548516 1539,544.65894,219.58553,22.177734,46.943863,0.009104394 1539,610.2282,96.17611,27.846375,50.449303,0.007707565 1539,488.5134,217.78154,38.556732,97.14473,0.0068532834 1539,620.0461,298.59897,19.100586,63.416107,0.005799529 1539,476.67944,221.32605,25.692719,51.030518,0.004766537 1539,621.944,204.83504,17.202698,49.352814,0.0039788787 1539,0.45470053,197.36012,14.116416,53.776505,0.003949611 1539,0.57383627,69.80701,14.068884,52.873398,0.0039369157 1539,441.30768,211.7831,22.925507,46.368423,0.0036526576 1539,339.86374,55.378204,43.37146,72.55331,0.0034987766 1539,507.7726,235.96967,25.03836,48.646942,0.0030345842 1539,0.6620573,146.04161,20.153713,136.12517,0.0023898997 1539,0.35488933,260.19293,19.274448,83.7854,0.00067483855 1539,599.8656,87.10756,38.65741,216.30452,0.00062460155 1539,490.22906,203.80904,24.893677,51.16397,0.0005585765 1539,2.7289243,118.0156,57.74932,211.30511,0.000547021 1539,0.22009684,101.26119,19.454832,84.56519,0.000527349 1539,588.2101,240.00266,50.936584,236.42508,0.00044318003 1539,514.45337,73.50375,29.288025,60.66948,0.00030921737 1539,507.75528,204.58401,25.566986,50.28656,0.00028617092 1539,612.21826,385.29932,26.928406,116.661255,0.00021909614 1539,0.8954102,422.4544,14.215692,77.71222,0.0001695536 1539,0.5715153,210.5336,32.30199,182.48459,0.00015394927 1539,615.679,129.41473,23.467651,97.41383,0.00013248927 1539,497.4083,194.25229,80.83017,156.08289,9.387197e-05 1539,0.8819328,342.13412,18.638361,137.55017,5.1215397e-05 1539,2.4883463,432.58127,45.405243,66.036255,3.827214e-05 1539,608.48254,0.0,30.664124,162.57344,2.3787503e-05 1539,4.809948,363.3758,78.70839,127.0524,3.4728373e-06 1539,537.0332,432.70572,81.6759,66.24274,3.4174836e-06 1539,0.7212923,23.880228,30.647202,116.8565,2.7636274e-06 1539,0.4182174,9.222914,9.015484,89.20697,4.541127e-07 1539,496.97104,33.064644,49.79355,147.2836,1.887622e-07 1539,473.53668,28.329584,123.83252,257.22882,1.8023638e-07 1540,511.4699,221.02594,31.756409,61.502167,0.15473092 1540,431.0668,225.14975,33.71106,74.106964,0.14803825 1540,364.96588,219.84732,22.143372,45.901978,0.08102032 1540,376.7107,214.91466,32.118652,56.748337,0.01422462 1540,612.3149,204.84848,26.831787,140.81964,0.0063303947 1540,418.22366,192.90784,35.433594,68.55194,0.0025312556 1540,621.0179,294.64426,18.128784,60.933075,0.0023903758 1540,0.46853843,119.510445,18.568304,78.256065,0.0012612081 1540,0.6552466,191.42755,18.327814,79.62082,0.00093131664 1540,615.54895,50.62471,23.597717,96.38939,0.00059676584 1540,0.41535565,70.7283,18.929049,76.3857,0.00053109985 1540,620.6155,119.65829,18.531189,59.6668,0.0005191177 1540,587.5496,220.73259,51.225403,222.42949,0.00041446256 1540,1.3467677,127.08059,33.922844,174.79285,0.00034864678 1540,608.6551,440.85706,30.491577,67.03015,0.000308249 1540,405.47314,162.52397,80.638336,163.24495,0.00020968837 1540,613.1091,327.1481,26.037598,156.68231,0.00010375766 1540,609.71387,82.11667,29.4328,156.52255,8.85504e-05 1540,0.7264738,258.6973,18.816566,141.5123,3.8738024e-05 1540,605.45245,2.1124642,33.694214,62.47355,3.5964393e-05 1540,3.551408,172.24005,57.77232,219.62216,2.3328612e-05 1540,1.0240991,348.71857,18.156141,130.24603,1.9031362e-05 1540,1.3070296,441.87427,20.720098,60.82245,1.1029582e-05 1540,583.991,5.0935483,55.15564,131.74843,1.0158098e-05 1540,3.4837549,394.7363,56.819504,98.83835,6.9603843e-06 1540,0.92024416,17.96575,31.365103,114.49079,4.631028e-07 1540,1.1830242,3.9511135,64.12271,211.45985,1.8148792e-07 1540,0.6515316,10.345078,10.522379,82.06069,1.6021936e-07 1541,509.05878,178.70596,40.542725,99.05548,2.1471803 1541,16.70788,194.96498,34.808205,67.95369,1.6495677 1541,600.74274,230.57623,36.461975,74.397064,0.35188258 1541,96.44211,210.46182,32.982758,57.51181,0.04511315 1541,413.33936,226.76436,23.567413,51.43187,0.023651524 1541,3.987946,102.96586,56.927315,211.72214,0.015019745 1541,522.27545,188.16751,23.17163,47.43338,0.010344917 1541,1.572968,203.0581,18.342762,78.55795,0.009799039 1541,396.58243,221.59543,25.145264,47.03662,0.009486233 1541,615.3259,259.58093,23.82074,89.24603,0.0046877223 1541,619.24725,212.16052,19.899414,59.776947,0.003988749 1541,507.10767,191.1741,76.184814,174.15771,0.0027881952 1541,588.8192,203.88766,49.703003,225.86618,0.0022402597 1541,394.83282,173.5117,38.16623,83.21477,0.0018621905 1541,0.74372154,151.01259,19.212025,80.74179,0.0015742788 1541,0.3658838,103.734406,19.141766,81.89342,0.0014983666 1541,609.1697,109.82748,29.97699,174.58554,0.0003702487 1541,616.60767,97.60235,22.539001,83.20165,0.00019158794 1541,609.0645,443.16818,30.082153,64.14761,0.00018530474 1541,612.3888,299.88177,26.757874,157.11981,0.00014647165 1541,1.0112199,233.7337,19.461645,148.63959,9.544267e-05 1541,608.76337,1.9550066,30.3833,60.95717,7.8892386e-05 1541,571.23737,354.5115,67.9093,140.00534,4.796937e-05 1541,3.635957,210.89091,56.605568,240.30077,4.5737874e-05 1541,0.8650269,336.23776,16.125439,136.87323,4.0632887e-05 1541,0.48659262,44.599438,19.837334,83.94083,1.813085e-05 1541,3.4331007,390.11432,56.44565,103.06845,7.5725657e-06 1541,1.2647347,441.8677,20.84735,61.533966,6.8314507e-06 1541,1.3522983,20.859383,58.211884,106.687744,9.87848e-07 1541,0.5497986,10.787823,9.976423,83.09569,2.4108314e-07 1541,0.8295524,7.049893,30.703724,58.913,2.1850053e-09 1542,526.50336,185.01854,38.040283,89.71303,5.561477 1542,401.65857,210.75961,24.339996,46.6026,0.10199232 1542,468.13797,157.21625,45.725494,110.33707,0.063399 1542,387.31757,208.71692,24.105286,49.39673,0.057442773 1542,0.90316325,226.40547,13.794263,52.054703,0.022959799 1542,487.23434,213.00676,24.608429,50.591965,0.012378889 1542,1.8772168,199.33054,36.25113,90.56119,0.009945348 1542,620.04266,79.00547,19.104004,55.378,0.0034511369 1542,478.8635,197.698,25.006256,46.74031,0.0030317614 1542,0.40808594,82.164635,14.502303,56.547707,0.0018084715 1542,3.0394728,126.34032,61.03566,198.42674,0.0013942068 1542,610.6441,97.32932,28.502563,151.36404,0.0013375345 1542,617.92786,210.63649,21.218811,79.0229,0.0013360939 1542,0.71380126,187.20767,14.279259,51.8067,0.0012238949 1542,0.8404655,246.86037,18.850414,78.18605,0.0009161675 1542,621.683,136.0311,17.463684,52.99727,0.0007283351 1542,441.76605,135.48613,123.11835,189.91716,0.0006325055 1542,521.991,50.341957,29.4068,59.379585,0.0003815374 1542,611.8533,384.83987,27.293396,114.671906,0.00030215207 1542,617.7205,312.06122,21.426147,81.85535,0.00029262804 1542,587.8969,195.38889,51.249756,251.77728,0.0002912896 1542,8.784695,166.87286,34.42105,76.635056,0.00025435907 1542,0.65586346,107.92794,20.241478,160.34521,0.00011409009 1542,608.1603,0.0,30.98639,161.9204,9.297425e-05 1542,1.3998666,232.52133,31.83296,169.94382,9.225178e-05 1542,337.27426,46.79998,28.67157,60.94056,7.178208e-05 1542,0.79109704,369.70505,17.261286,128.8469,5.8387042e-05 1542,3.2012777,397.90167,57.239037,97.09299,2.6126207e-05 1542,0.4089738,41.04733,14.848816,53.804493,3.5834805e-06 1542,0.71973795,21.833275,21.53392,138.21622,1.4011366e-06 1542,263.3821,427.28513,72.01065,75.522644,3.0032425e-07 1542,509.6511,11.230462,50.005768,132.81161,6.705973e-08 1542,0.87032557,6.697201,20.611662,57.278297,4.293859e-09 1543,615.25287,201.36852,23.893799,59.299637,1.1011373 1543,414.26382,207.91585,25.297272,49.00975,0.25060472 1543,531.32306,214.35135,24.269653,45.491882,0.047759358 1543,425.02924,213.30362,26.996246,61.78006,0.017443402 1543,450.33813,213.39705,26.994385,48.804123,0.013620857 1543,0.49697837,212.99702,14.00239,55.766983,0.0017331247 1543,0.5140926,123.49981,13.975176,50.538414,0.0009434293 1543,0.52957684,180.94858,13.782765,51.127945,0.000812488 1543,1.0130225,150.98105,28.323612,152.4201,0.00078791875 1543,620.52124,91.79098,18.625427,62.065178,0.00072751805 1543,603.06305,164.70781,36.08362,180.06001,0.00041723624 1543,612.3405,377.89706,26.806152,124.66614,0.0003784733 1543,0.5754053,65.48935,19.013681,79.49225,0.00029112937 1543,610.82886,55.421337,28.31781,172.1811,0.00015921437 1543,617.76135,277.57526,21.385315,84.010315,0.00015730831 1543,3.229857,178.97711,58.92113,225.69324,0.0001104817 1543,0.79961836,385.485,18.656216,76.064026,9.550422e-05 1543,0.6247388,241.0685,16.344555,146.58192,8.900896e-05 1543,1.1217872,440.9077,21.10423,61.567657,4.7948604e-05 1543,3.2703533,396.4758,57.388214,97.78177,3.4309713e-05 1543,614.7635,13.374281,24.383179,89.02765,3.3808017e-05 1543,1.5422624,281.17725,32.165184,185.5285,1.2856099e-05 1543,556.66,430.1115,82.486694,69.791565,8.091671e-06 1543,0.6730241,45.293144,35.490314,190.35403,7.910169e-06 1543,508.81012,429.4504,77.95294,71.02835,7.6791184e-07 1543,1.2989714,15.683711,59.324432,119.94874,6.9847596e-07 1543,461.31277,428.64413,74.874725,73.40433,4.2338937e-07 1543,0.40189984,7.5293036,8.038258,89.81968,3.2822314e-07 1543,1.0343051,5.08819,30.642368,59.87738,3.082211e-08 1544,404.23547,212.19305,22.485413,46.596283,82.9779 1544,492.39444,206.1418,39.00418,120.40987,0.014349379 1544,620.2153,147.34471,18.931396,58.752747,0.0061764293 1544,480.74872,209.0419,25.244354,47.79489,0.0025927592 1544,317.26886,193.26385,39.396088,71.34607,0.002309047 1544,621.4271,185.85767,17.719543,51.052124,0.0021818324 1544,611.0423,108.26051,28.10437,138.86002,0.0021099236 1544,0.3759481,83.03703,19.543991,79.85675,0.0019901444 1544,0.761399,232.23135,13.701758,50.782623,0.0014550762 1544,610.0219,37.01422,27.776917,62.48944,0.0013892495 1544,0.57305175,107.8895,28.421364,158.0611,0.00084972434 1544,3.4843686,147.63712,58.621433,208.61954,0.0005961958 1544,618.40015,219.94527,20.746521,85.00249,0.00053655123 1544,385.7129,171.9034,60.047546,111.489914,0.00037108257 1544,0.96080816,205.7484,19.259623,127.92772,0.00035170506 1544,603.4843,0.250306,35.662354,68.86894,0.00032884543 1544,0.747915,420.089,14.366259,81.6033,0.00030954165 1544,617.9649,286.29755,21.181763,79.81558,0.000243079 1544,3.250293,398.68686,57.6436,96.319824,0.00012920336 1544,587.958,177.57242,51.18866,222.89645,9.283762e-05 1544,465.35617,162.69962,117.80008,206.32642,8.99235e-05 1544,613.06805,326.25565,26.078613,146.20831,8.630261e-05 1544,0.7275366,359.857,18.427303,75.967865,7.918349e-05 1544,1.1959815,257.10364,32.075584,189.49496,7.449591e-05 1544,609.1767,442.71448,29.96997,64.70001,7.3203584e-05 1544,304.62122,149.7082,76.71884,160.57567,7.034571e-05 1544,354.7887,111.95336,145.22424,240.26083,2.5852285e-05 1544,580.96826,0.0,58.178406,215.46262,1.536376e-05 1544,585.699,390.9049,53.447693,109.97562,1.3619314e-05 1544,0.93428713,16.666368,59.82354,116.217026,8.887568e-07 1544,72.47398,430.7018,73.19739,71.18533,6.336617e-07 1544,0.47216472,8.374889,8.6595125,89.57681,4.6838124e-07 1544,412.84378,0.0,45.65863,50.637104,5.06486e-08 1544,1.3005779,4.427256,31.63928,63.085217,9.827898e-09 1545,412.75467,210.88242,22.503479,49.249146,98.31835 1545,447.11682,215.90681,32.320953,70.00279,0.16310953 1545,45.45188,213.82492,27.267105,47.37497,0.06986477 1545,425.29468,209.83508,36.269592,67.77875,0.019411726 1545,525.3188,173.77078,46.07379,98.616,0.018223744 1545,466.97922,223.10086,26.387665,52.605194,0.0071146293 1545,621.9539,157.37259,17.192749,51.24582,0.006238043 1545,246.06578,187.36496,45.203354,91.10968,0.0041181007 1545,622.2709,432.2378,16.875793,46.95227,0.0021183551 1545,0.4430192,118.391594,14.028907,50.639656,0.001986657 1545,621.2055,101.88492,17.941162,56.117218,0.0013414114 1545,618.40826,198.98927,20.738403,75.77205,0.0011630732 1545,0.48371828,71.92795,19.059982,76.78085,0.001116324 1545,0.6962305,172.81409,18.1201,76.80478,0.0009045608 1545,611.9887,104.22463,27.157959,138.025,0.0008245274 1545,0.80980635,389.7363,16.767418,109.58371,0.00037450014 1545,612.2705,392.18222,26.87616,109.701324,0.00031289185 1545,1.1012907,102.501595,33.042545,179.39148,0.00025691494 1545,392.09448,168.85237,83.89307,148.96071,0.00025387775 1545,612.1423,216.8408,27.004395,152.30455,0.00021994105 1545,513.01764,118.471016,92.14453,238.67047,0.00014646942 1545,3.2559507,397.80768,56.500862,96.4606,9.3439674e-05 1545,0.50522137,225.70235,18.253727,140.03929,5.3315245e-05 1545,3.290249,165.56113,58.830444,240.55319,3.0819912e-05 1545,1.1967952,268.01587,32.507233,181.383,2.5469595e-05 1545,238.21358,150.65411,89.63896,197.7496,2.3735067e-05 1545,608.1218,0.0,31.024841,151.41557,2.3019562e-05 1545,585.8891,47.1178,53.25757,239.69315,8.313347e-06 1545,1.2262745,30.137938,35.622536,139.06279,1.0317785e-06 1545,0.53107303,10.6628685,8.618007,84.01761,1.01292606e-07 1545,1.4337435,7.9424124,29.78495,54.57376,8.3844165e-10 1546,422.7623,210.46841,26.126007,58.296204,99.40565 1546,595.00885,205.85248,23.263,47.02919,93.40592 1546,161.76219,210.87022,24.572372,47.551163,0.44417408 1546,574.5482,184.68893,44.221252,101.90625,0.08429403 1546,525.4488,179.92053,36.807495,74.583405,0.02834385 1546,548.1146,212.70924,26.693176,51.462387,0.021722812 1546,583.1445,93.77097,51.88495,226.76596,0.018299663 1546,610.70215,117.256905,28.444519,139.3902,0.007258833 1546,619.74005,112.95572,19.406616,62.437958,0.0053175385 1546,618.4473,215.84126,20.69934,83.98366,0.0050163288 1546,406.84018,189.99084,56.96353,97.39154,0.0030411899 1546,0.6470101,170.0527,18.554846,80.45137,0.002067017 1546,566.3292,217.11217,25.491455,55.372787,0.0013467604 1546,583.4854,13.7844925,55.661255,118.59809,0.0012959435 1546,0.3338371,112.56091,18.988234,79.42047,0.0006371563 1546,616.9328,379.6069,22.213867,86.199005,0.0005463276 1546,1.1174446,123.42388,32.946827,180.75903,0.0003913686 1546,617.5688,277.13925,21.57788,82.18698,0.00028511314 1546,0.6520386,228.75858,18.707916,84.93326,0.00027112084 1546,588.094,307.9239,51.052673,184.98093,0.00016327284 1546,608.7618,441.22964,30.384888,64.98428,9.0895715e-05 1546,2.9634554,207.97827,57.020615,228.23337,7.247034e-05 1546,0.9029427,268.68033,19.330616,138.33752,5.0256138e-05 1546,0.8115332,362.70068,15.9398,132.61069,4.5834724e-05 1546,391.7984,145.17586,94.52655,199.3911,4.1947824e-05 1546,0.49909425,57.320732,18.952496,79.1097,3.6440528e-05 1546,3.5650537,394.42563,57.054153,98.278015,2.4697469e-05 1546,1.6506722,30.310743,60.372974,232.93248,5.5330693e-06 1546,0.48721275,8.1681385,11.828305,86.65952,8.547885e-08 1546,0.86886394,2.7863152,33.84345,47.51204,4.852623e-09 1546,353.3496,0.0,43.724945,50.88648,3.5407737e-09 1547,469.22852,217.52411,36.800232,78.50226,99.92794 1547,182.09961,214.53448,24.013336,46.39496,0.06886363 1547,425.91626,216.9544,33.859833,69.70233,0.018972049 1547,448.67694,227.41608,23.255737,57.940765,0.008174382 1547,493.51996,225.62871,23.891724,55.612076,0.0027245954 1547,622.431,208.69402,16.715637,50.50624,0.0023233339 1547,446.0151,197.04646,74.84396,134.45937,0.0020030192 1547,0.7470101,138.8914,34.53934,184.97707,0.0016101287 1547,0.4795052,96.820656,13.828385,53.509712,0.0013421945 1547,621.91315,279.27515,17.23352,56.24109,0.0013041212 1547,0.543794,193.71744,13.986238,51.705856,0.0012398743 1547,621.2343,142.44362,17.912354,55.72319,0.0010799128 1547,0.38818687,86.736786,20.130829,145.0086,0.000884563 1547,0.29091555,151.649,14.208008,52.722504,0.0006986693 1547,609.2326,443.61288,29.914062,60.550476,0.00060818205 1547,610.678,95.58952,28.468689,147.0937,0.00046578547 1547,611.5107,184.14523,27.635986,138.51862,0.0003935762 1547,4.740742,134.21695,77.98277,254.22684,0.00034141395 1547,604.749,0.0,34.397644,134.2203,0.00022597249 1547,0.45337242,233.08037,19.37114,89.93471,0.00022039417 1547,617.8547,315.50317,21.291992,85.53006,0.00020454793 1547,0.45004883,295.97617,18.985273,77.14444,0.00017851254 1547,586.82776,210.20183,52.31891,235.18553,0.00012725107 1547,1.1487988,312.03265,28.283585,141.10382,7.4314186e-05 1547,570.582,364.33636,68.5647,130.77646,5.442883e-05 1547,0.54178876,49.52876,19.050518,79.1113,3.775911e-05 1547,0.8555754,385.05936,15.562355,112.46503,2.8914828e-05 1547,567.63367,19.718704,71.513,211.35664,1.1131322e-05 1547,3.5409033,394.61627,56.965847,97.74347,8.810557e-06 1547,530.3412,430.66003,88.147644,68.40796,4.9969194e-06 1547,1.2148731,23.536583,63.288605,201.18286,3.554556e-06 1547,298.278,427.88892,72.38074,72.01782,1.6266339e-06 1547,202.86378,431.74997,78.30443,69.20203,4.7223492e-07 1547,0.5279037,10.884685,12.258797,83.83119,3.427561e-07 1547,141.59091,429.1844,72.59779,73.69879,2.7482977e-07 1547,0.99492025,3.7752311,39.436573,47.139973,9.5845e-09 1547,66.574905,2.2680812,44.379784,47.34733,9.508987e-09 1547,395.67697,0.0,42.835907,50.1911,7.239294e-11 1548,590.6346,216.16583,48.512085,124.70441,99.84702 1548,622.7573,222.27682,16.389343,45.92978,1.9097198 1548,605.14545,289.03632,24.36914,50.34436,0.393506 1548,622.6528,253.70245,16.493896,53.17285,0.3413799 1548,620.71814,310.80322,18.428528,57.289,0.017895289 1548,516.834,210.57802,34.733643,79.03252,0.005399192 1548,620.45874,47.7013,18.687927,55.18577,0.004413036 1548,621.2753,116.49591,17.871338,53.37805,0.0031877006 1548,0.55531657,171.75345,18.71162,79.09335,0.0012667808 1548,608.5077,74.61895,30.638977,165.19107,0.0012419311 1548,0.4802767,89.427444,14.080387,53.10881,0.0012283358 1548,542.46875,126.85977,96.67792,250.91168,0.0012073313 1548,606.328,0.0,32.818665,87.82026,0.0010640906 1548,0.29880697,110.20745,19.092325,80.12324,0.0008195556 1548,1.0315446,84.971275,33.26767,176.78046,0.00045949838 1548,618.0734,405.2954,21.073242,80.68341,0.00036297113 1548,611.18634,283.0689,27.960327,172.84839,0.0002860656 1548,3.2860842,431.0009,45.07852,67.34137,0.0002793459 1548,0.8378068,419.70703,13.991849,82.02283,0.00014156337 1548,495.2045,189.6624,70.87729,158.30464,0.00010945623 1548,0.4526709,217.24026,18.936922,140.50705,8.940207e-05 1548,2.7328403,128.98927,58.316795,222.5634,8.5771244e-05 1548,5.4025164,363.69833,77.64446,129.9736,5.188141e-05 1548,575.0961,428.81622,64.05054,71.679504,3.1531417e-05 1548,0.643772,344.47476,20.546453,113.20645,2.7754822e-05 1548,34.54627,429.53613,77.21228,69.01721,1.3628565e-05 1548,0.7676774,24.549826,29.966177,116.85401,2.3059633e-06 1548,0.536801,10.998024,10.743666,83.09887,3.9266084e-07 1548,0.74056804,3.7934914,39.870914,46.14418,1.3840775e-08 1548,536.5814,0.90991867,45.062134,49.844563,1.6956889e-10 1549,618.7852,181.36623,20.36145,64.31212,0.20224527 1549,1.7688005,434.4847,49.90756,65.928894,0.0021730945 1549,0.27937257,161.07465,18.845415,79.12224,0.0010591601 1549,0.33738852,88.57945,18.97852,81.34065,0.0008098068 1549,0.8523584,393.75085,19.380816,75.72583,0.0007169353 1549,602.88513,115.9537,36.261536,173.42792,0.0005439528 1549,617.78705,230.17508,21.35962,88.426544,0.00046237677 1549,0.5659668,204.07397,17.854557,130.75378,0.00045870594 1549,203.30858,223.37599,22.857437,46.79567,0.00037392025 1549,617.1166,100.68359,22.03009,82.63251,0.0002758262 1549,618.3439,356.09363,20.802795,79.6629,0.00021365982 1549,2.7853045,126.319145,59.435085,212.63837,0.00014818492 1549,609.36224,445.71448,29.784424,58.70169,0.00013526276 1549,617.95685,298.94943,21.18982,83.03357,0.00010536417 1549,1.1811947,320.32117,32.445637,171.78928,6.948923e-05 1549,606.65765,0.5428776,32.489014,62.248005,5.8377354e-05 1549,587.80914,194.60777,51.337524,255.47807,5.6161723e-05 1549,5.055983,218.40536,77.291885,260.04324,5.43701e-05 1549,616.5122,38.17813,22.63446,91.35989,3.4663462e-05 1549,0.36894205,276.8201,19.610775,144.462,1.755557e-05 1549,585.50684,396.94455,53.63983,103.94296,1.5714606e-05 1549,0.40196615,57.18606,35.81835,198.34613,1.18747175e-05 1549,460.81906,427.06772,74.398895,70.05005,1.6658978e-06 1549,61.42845,433.29016,76.28078,68.66736,1.5109672e-06 1549,568.5621,443.0854,45.29004,60.40869,1.0141987e-06 1549,568.43567,2.3263867,70.711,158.86794,7.275659e-07 1549,414.83234,425.27002,75.13397,72.34308,6.805684e-07 1549,508.97845,430.06003,73.499756,70.32327,6.487542e-07 1549,1.4852409,22.663786,58.327965,105.39627,5.8496363e-07 1549,107.73314,426.23862,72.86659,75.35556,4.4960865e-07 1549,0.8876986,32.577076,19.527683,74.4787,3.8262883e-07 1549,159.37262,428.06943,74.05617,73.56116,3.070079e-07 1549,338.79883,430.24768,71.662445,70.05896,2.1686573e-07 1549,250.88368,429.45544,71.49907,70.610504,2.061763e-07 1549,298.2806,429.31662,72.04782,70.30783,1.7693615e-07 1549,0.7486198,7.425635,29.972584,57.312675,4.573466e-09 1550,346.18265,216.93034,36.05255,67.54314,0.01164025 1550,159.58392,228.79617,25.731888,55.405212,0.0030544612 1550,177.74594,236.57571,24.697678,47.158478,0.0016690372 1550,0.41898274,208.12404,19.131792,144.1762,0.0010029884 1550,0.30834067,180.19708,19.003128,79.20975,0.0009874895 1550,621.1576,197.44778,17.989075,55.565735,0.00078738993 1550,0.31127605,71.67265,20.383223,145.01964,0.0006314015 1550,2.1580908,151.52884,47.348373,175.7078,0.00051192817 1550,611.5468,154.08524,27.599854,129.51413,0.00038543853 1550,0.49350995,125.68645,13.847867,52.249466,0.00035185736 1550,617.0506,56.729187,22.09607,82.900955,0.0002819146 1550,617.7916,235.5068,21.355042,81.47037,0.00018923257 1550,618.3356,288.8574,20.811096,79.34497,0.00011946532 1550,618.4796,347.16852,20.667053,79.80173,0.00011051784 1550,616.72687,103.71909,22.4198,84.91775,0.00010743614 1550,617.82996,405.38544,21.316711,79.402954,7.526616e-05 1550,574.93787,98.105446,64.2088,238.00665,6.7702305e-05 1550,0.49514,318.68787,18.510881,76.66989,4.1249386e-05 1550,5.657881,185.96725,77.84946,258.75363,2.583449e-05 1550,1.216014,275.8421,32.206676,175.73041,1.8060786e-05 1550,614.0177,13.032901,25.128967,83.68721,1.6813456e-05 1550,602.90826,243.67578,36.238403,200.23276,1.6203858e-05 1550,0.84163576,405.46585,18.209091,70.6124,9.82347e-06 1550,574.1951,431.839,64.95154,71.626495,9.751318e-06 1550,0.60560143,362.09656,18.2374,73.57654,8.053132e-06 1550,2.3645346,32.241604,83.72957,262.82208,7.2755647e-06 1550,596.99615,0.0,42.150513,210.4149,1.6089532e-06 1550,1.4511003,21.808634,58.61859,102.60681,1.5522486e-06 1550,2.2560775,432.17487,45.76587,68.88446,1.2819744e-06 1550,23.650255,433.84888,74.67673,68.6178,4.3696252e-07 1550,0.87684816,32.899464,19.372166,75.188934,2.1864666e-07 1550,517.62775,432.93448,79.940796,69.004425,2.0187214e-07 1550,65.36719,430.549,73.46159,71.54724,1.925638e-07 1550,107.34823,430.48874,71.51342,70.8844,1.6222242e-07 1550,469.11612,432.1217,71.18674,68.604034,1.5273025e-07 1550,155.07825,431.84787,71.1803,69.1087,1.5177454e-07 1550,332.7352,431.85965,71.03073,68.865204,1.4621958e-07 1550,291.79266,432.13776,70.9859,68.721375,1.4534785e-07 1550,380.2936,431.1886,71.024994,69.05731,1.4308354e-07 1550,0.87786055,6.495884,20.49285,55.818947,5.3165174e-09 1551,617.7782,227.71524,21.36847,81.755005,0.0017509437 1551,0.39112955,137.15282,19.014032,81.511765,0.00076996174 1551,0.85026777,225.42949,18.535433,77.869,0.00040747618 1551,622.4262,353.3435,16.720459,51.707245,0.00034730937 1551,1.2667464,136.51846,32.05773,174.44861,0.00034148883 1551,621.788,164.39291,17.358643,56.426865,0.00033691098 1551,618.27783,388.67825,20.868835,79.2475,0.00015327874 1551,618.2211,292.9794,20.925537,80.43109,0.00012539382 1551,617.65894,103.833046,21.487732,79.73513,0.00010089556 1551,5.212585,140.47948,77.79717,267.84314,9.939243e-05 1551,602.42456,182.08734,36.722107,171.9566,9.5542484e-05 1551,0.5211174,255.3108,19.359505,149.26134,8.558544e-05 1551,577.0408,231.00677,62.105896,233.72345,5.142369e-05 1551,0.71790445,81.015,18.937363,75.141495,4.213474e-05 1551,0.72325766,356.9506,18.521639,74.19684,4.0136296e-05 1551,610.1059,23.9516,29.040771,104.1913,2.2791508e-05 1551,0.47932944,302.87283,13.617866,50.948975,2.0895008e-05 1551,1.3298991,305.58994,32.0004,175.05746,1.87066e-05 1551,5.5428257,358.677,78.86906,127.438934,8.963396e-06 1551,0.84469974,418.1462,14.506351,83.734985,7.5270905e-06 1551,599.528,41.97844,39.618652,226.5071,5.0512717e-06 1551,586.01984,389.25192,53.12683,108.34433,4.0994864e-06 1551,1.6120899,42.999043,61.90227,222.80675,3.0002323e-06 1551,2.7164438,428.39877,45.558365,72.053894,1.6927775e-06 1551,62.452763,387.2638,136.82535,108.56256,7.492038e-07 1551,283.90805,426.68198,71.892426,72.63846,3.6389935e-07 1551,325.39532,426.36612,71.284424,73.80411,3.330633e-07 1551,223.54425,428.6342,70.82651,69.524994,2.532208e-07 1551,36.43223,423.27704,75.25069,78.52615,2.4961184e-07 1551,147.75427,431.69803,71.784164,67.00021,2.3911076e-07 1551,366.24374,428.55594,70.98901,72.20386,2.2621546e-07 1551,407.40482,430.74747,71.37656,69.87973,1.3933487e-07 1551,517.0365,432.97955,75.431946,68.4675,1.3154474e-07 1551,455.5062,432.19568,71.8168,68.617004,1.11384054e-07 1551,0.44587892,7.2173376,7.879526,92.21992,7.274587e-08 1551,1.6699414,8.526136,36.066402,82.579544,2.0062988e-08 1552,574.3259,207.18077,22.284485,45.94345,0.0402064 1552,622.21045,191.9636,16.936218,53.622086,0.002155312 1552,0.84799236,214.05524,18.115433,78.20624,0.0013378025 1552,611.9959,125.01464,27.150757,145.04874,0.0004824317 1552,0.45033365,101.96106,19.061863,82.47513,0.00038758002 1552,618.11584,233.66211,21.030823,84.92377,0.0003805551 1552,617.2923,55.6506,21.85437,85.35158,0.00023991277 1552,0.6586279,264.4902,13.588005,50.877594,0.0002021641 1552,618.1718,284.7477,20.974854,83.33771,0.00017385773 1552,618.32446,382.43262,20.822205,80.0961,0.00016093542 1552,1.182531,104.521736,32.74294,188.72934,0.00014502111 1552,0.5830469,152.46983,18.610413,76.81816,8.7384054e-05 1552,1.346198,211.29175,31.101114,166.88007,8.3854386e-05 1552,587.74744,181.93541,51.39923,240.3311,6.8074005e-05 1552,4.9687047,115.96869,79.065254,264.23926,3.9986455e-05 1552,0.6804167,281.06583,16.663445,144.69662,2.2783946e-05 1552,598.178,6.0386558,40.96869,78.46701,2.0393347e-05 1552,602.66144,323.8771,36.48523,166.24088,1.6559006e-05 1552,574.4415,55.05159,64.70514,254.058,1.5843265e-05 1552,0.9703451,392.21494,18.163424,71.57706,6.974338e-06 1552,1.0833195,439.24094,21.097515,64.77841,4.1451285e-06 1552,595.4701,442.97617,43.676575,62.13141,3.2534806e-06 1552,1.7390007,352.12622,31.276003,138.64166,2.5627521e-06 1552,4.019217,433.52246,67.061584,68.06561,8.616854e-07 1552,1.1703646,13.591149,59.79896,114.15047,6.0906467e-07 1552,149.1348,394.65277,110.56149,100.02985,5.859977e-07 1552,264.0398,426.33295,71.65637,74.55322,3.9913886e-07 1552,218.95543,426.46658,74.69704,70.34436,3.494437e-07 1552,317.88882,427.77643,72.6734,73.992584,2.178524e-07 1552,127.554146,431.40854,76.18131,69.74997,1.9412371e-07 1552,47.373543,429.3338,77.43037,72.76102,1.8893114e-07 1552,359.56107,430.8335,71.20621,70.23569,1.3201978e-07 1552,476.0521,432.30756,71.586334,68.6861,1.3038817e-07 1552,407.74396,432.87207,70.69595,67.73987,1.1994727e-07 1552,530.8564,433.32373,77.33972,68.14523,1.1375132e-07 1552,1.0123975,27.028364,19.801462,81.74616,1.19987495e-08 1552,1.2874968,6.5644693,32.136715,59.586082,2.0659927e-09 1552,245.89267,0.0,42.131104,48.171936,1.0523667e-11 1553,487.6857,221.68282,40.161102,84.920975,99.94548 1553,524.0657,217.78331,39.931274,88.136154,99.88617 1553,546.49286,223.84613,27.263428,60.181946,0.03803355 1553,0.7058887,200.3336,18.655117,81.638504,0.0045749024 1553,489.07883,191.51662,99.69614,155.58412,0.003057751 1553,0.28209636,111.00044,28.978294,162.19075,0.0014078697 1553,611.02185,159.61469,28.124817,137.88226,0.00079829886 1553,0.51601726,77.670494,14.00883,49.421684,0.0007059564 1553,611.6949,77.90136,27.451782,116.54545,0.000643479 1553,3.3689568,141.77792,57.477997,215.14703,0.00018681618 1553,618.29706,374.2568,20.84961,81.82117,0.00015751172 1553,0.8097868,254.78773,18.40181,78.280106,0.00014313131 1553,618.0569,276.183,21.089783,82.48862,0.000119783384 1553,587.1373,179.23155,52.00934,224.65437,4.4356297e-05 1553,1.1386874,230.81367,30.533697,175.36665,2.6864387e-05 1553,0.6855103,54.31902,21.063862,134.00708,1.6415233e-05 1553,596.37134,4.0683727,42.77533,84.60286,1.6265789e-05 1553,581.9008,0.0,57.24585,245.48547,1.6153528e-05 1553,588.3439,319.9897,50.802795,165.06845,7.234122e-06 1553,0.85894287,384.31262,16.147396,113.8165,4.7390804e-06 1553,3.565459,398.21844,57.230843,95.61377,1.6738861e-06 1553,0.5157308,11.363822,10.439479,86.23705,1.6308488e-07 1553,0.7245378,15.179623,60.86184,120.58934,9.741271e-08 1553,441.08115,0.0,48.902344,155.99997,8.71034e-09 1553,0.84169924,5.2780566,30.9945,60.36156,8.912169e-10 1554,495.6696,232.98373,47.48294,107.11569,99.97702 1554,537.1501,226.19902,48.335632,113.571976,99.953316 1554,365.83823,225.48506,24.743744,48.58281,2.1323757 1554,564.30304,225.73303,39.37903,96.133575,0.0046026288 1554,621.9492,251.98589,17.197449,55.47203,0.0035231176 1554,0.6533317,225.6613,18.467203,83.33174,0.0026881865 1554,488.1471,166.9576,140.5929,233.98997,0.0025274616 1554,611.1611,183.9334,27.985596,133.98479,0.0013683417 1554,621.25867,181.90846,17.888,55.310104,0.0012427747 1554,617.1299,68.8661,22.016785,85.416435,0.00036550127 1554,612.9525,267.01892,26.194153,149.34436,0.00026024252 1554,616.80176,132.3937,22.34491,84.93315,0.00019869262 1554,1.3613656,152.60623,32.337704,174.34549,0.00017700598 1554,1.0986679,96.26993,18.58357,77.475784,0.00013403542 1554,613.4779,380.9357,25.668762,120.12375,7.238e-05 1554,607.73737,2.1439617,31.409302,60.001053,4.427101e-05 1554,3.1523063,207.28459,56.879856,210.29994,1.828372e-05 1554,0.7947599,272.60046,17.76903,141.26093,1.2413625e-05 1554,585.0036,4.4829884,54.143066,121.75289,1.0615304e-05 1554,583.55426,34.30943,55.592407,284.44794,6.828715e-06 1554,1.4732308,53.624474,35.004322,184.46652,4.9813325e-06 1554,1.1390129,444.09747,20.935896,59.203003,2.5338518e-06 1554,3.362969,395.9845,56.722008,96.743225,1.3201482e-06 1554,1.5613118,17.401394,61.574574,126.49829,1.1527283e-06 1554,1.2931999,6.015498,29.756927,59.873264,9.187922e-09 1555,593.15656,240.22261,45.990112,160.19527,99.78956 1555,608.1855,237.08469,30.961182,73.958954,0.38156736 1555,617.2762,358.4286,21.870483,66.61844,0.05840058 1555,620.96814,301.0789,18.178528,54.467346,0.023934934 1555,368.80035,216.32819,23.820984,49.563324,0.01838943 1555,600.4776,266.821,28.540527,66.58191,0.013983087 1555,609.90375,325.04773,29.24292,172.17563,0.003527381 1555,620.5917,120.76594,18.554993,53.90461,0.0034069822 1555,605.831,302.18658,27.431885,72.742065,0.002348139 1555,621.649,80.64459,17.49768,52.426147,0.0015729431 1555,0.83224124,195.13179,19.918135,133.30586,0.00094699545 1555,609.16315,89.16813,29.98352,157.01343,0.00039160828 1555,538.2908,127.83292,100.855896,285.78592,0.00021147048 1555,2.8590543,124.816,58.602524,206.22623,7.814307e-05 1555,607.2481,2.329834,31.89856,62.73416,4.984801e-05 1555,0.971154,96.58554,28.949211,163.14145,3.4382036e-05 1555,0.86844486,276.56918,18.950577,137.48523,1.1250532e-05 1555,3.2763672,229.7685,56.796864,231.22559,5.825934e-06 1555,583.34534,0.0,55.80133,212.52715,5.6695353e-06 1555,1.1454737,444.8009,20.85203,58.571777,3.067552e-06 1555,0.9014185,27.887072,16.854702,115.25885,2.2201796e-06 1555,3.4205225,395.73,56.872425,97.517456,1.2145387e-06 1555,2.9875913,28.56417,54.780582,93.776825,5.805e-07 1556,237.49277,202.43803,24.28952,46.767654,0.024571503 1556,394.01193,222.38255,23.367767,52.068863,0.018181816 1556,381.06558,218.5804,24.020966,52.46251,0.004981277 1556,0.83421636,223.07759,17.815403,74.79469,0.0011801975 1556,609.79364,185.53091,29.353027,140.21619,0.00057969644 1556,621.711,275.84256,17.435669,54.93695,0.0005542921 1556,511.50006,236.84735,24.273193,49.77246,0.00037349365 1556,462.77225,223.98886,27.59552,53.34082,0.00029843318 1556,0.56555825,175.01376,18.40218,80.10368,0.00023274087 1556,616.4907,147.79985,22.655945,70.327805,0.000196343 1556,298.36725,166.78902,26.109802,54.541763,0.00015810889 1556,610.2605,57.765293,28.88617,146.78279,0.00010323907 1556,289.99695,128.80128,81.74371,147.79472,8.653832e-05 1556,613.26965,269.26398,25.877014,144.41144,4.6380585e-05 1556,613.0527,352.05902,26.093994,138.22937,4.1092804e-05 1556,577.77704,234.04883,27.568054,47.01001,3.9980278e-05 1556,1.317238,191.32233,32.283134,164.51038,3.4177516e-05 1556,572.0503,150.15543,67.096375,250.06522,3.0109215e-05 1556,615.6058,16.711674,23.540894,87.06212,2.1734913e-05 1556,0.6842277,270.77448,18.81676,138.89081,1.3909403e-05 1556,3.2202523,261.02808,56.86747,211.65897,6.877903e-06 1556,581.33905,421.96658,57.807617,79.21185,4.9412665e-06 1556,0.73152673,69.04928,18.849762,146.82864,3.8673343e-06 1556,0.8325277,368.27484,16.68694,128.79956,3.6471324e-06 1556,2.7032716,90.75736,59.9925,226.96796,3.138776e-06 1556,2.408662,433.84543,45.17421,66.452545,1.0179041e-06 1556,2.489585,22.901085,56.196198,104.60332,1.2391045e-07 1556,0.61625165,11.703868,9.800001,80.120384,1.0553598e-07 1557,325.68225,211.37573,24.173615,49.017334,2.9177737 1557,600.9442,215.64583,36.611206,90.80104,0.5762568 1557,575.926,245.03267,42.645996,90.65996,0.02724168 1557,619.815,254.6854,19.331665,58.677094,0.018504426 1557,583.0912,126.24194,55.10724,231.87537,0.010820493 1557,619.62524,199.75342,19.521423,57.61197,0.006442979 1557,411.8909,231.6614,32.947876,69.70825,0.0035723504 1557,560.6267,228.19907,36.55542,77.2142,0.0026085426 1557,616.73267,288.67358,22.414001,84.4187,0.0012096203 1557,0.6498527,146.22766,19.74183,139.15765,0.0003573758 1557,609.9281,92.4959,29.218567,176.76346,0.0003312672 1557,602.16266,280.07437,36.681213,195.23096,0.00017947546 1557,0.49857017,67.814255,19.913807,143.09369,0.00017443635 1557,0.5521696,206.79199,27.65985,147.35947,0.00010198211 1557,3.027969,135.76622,58.59825,209.89418,7.533567e-05 1557,609.3438,440.69492,29.802856,62.896454,4.9545168e-05 1557,607.9275,0.97275716,31.219177,61.499565,2.8926579e-05 1557,0.6317432,293.8821,19.039295,133.30447,2.3082832e-05 1557,184.24345,154.4955,94.989,193.32518,6.3602442e-06 1557,2.9885857,265.49844,57.240257,206.51645,5.691117e-06 1557,1.2134033,443.59866,20.7345,59.79724,2.919e-06 1557,1.3706869,17.40847,57.81076,119.96096,7.213768e-07 1557,0.9820866,6.9433107,30.173494,58.32929,3.3936416e-08 1558,182.3182,207.88948,27.740448,45.24199,15.922668 1558,363.5987,214.9592,22.867554,45.453888,3.4031556 1558,389.52386,219.41425,25.385132,48.68457,1.4540977 1558,609.541,323.3586,29.605652,110.650635,0.089561775 1558,166.1528,208.35475,28.505768,45.539246,0.07203556 1558,557.36163,223.03168,27.499146,60.58792,0.0375899 1558,587.4645,187.07805,50.71582,239.77373,0.015149833 1558,619.59674,181.80347,19.549927,61.798798,0.009941099 1558,346.92142,207.18607,22.880371,45.482193,0.007839452 1558,606.5898,259.5778,32.556885,79.6109,0.0044121863 1558,403.7259,197.39594,33.218384,65.885284,0.003561377 1558,621.5311,131.37514,17.61554,47.157562,0.003156774 1558,610.216,139.18579,28.930664,144.82404,0.0020541844 1558,622.6719,335.13348,16.474792,57.064484,0.0019988595 1558,619.8166,234.02022,19.330078,62.720993,0.0012546473 1558,1.1803727,141.70232,28.047434,151.93428,0.0004825661 1558,616.3131,72.650406,22.833557,85.1992,0.00028177592 1558,0.6640104,66.68797,19.936068,145.14531,0.00026660308 1558,2.7295866,53.059143,60.212837,233.14874,0.0001422479 1558,0.5914518,214.88483,18.700207,135.49158,0.00012191897 1558,572.3379,339.29666,65.66406,142.34763,0.000111847454 1558,608.81665,434.02628,30.330017,73.21854,7.125146e-05 1558,606.894,1.1153451,32.252686,63.08253,4.409804e-05 1558,584.1473,23.238626,54.99939,225.41156,2.2549493e-05 1558,3.197038,196.13449,57.38126,226.94812,1.8071432e-05 1558,157.42215,158.4587,94.155075,189.2148,1.0624215e-05 1558,1.4334261,310.7654,32.07962,173.54657,6.7783008e-06 1558,1.2161784,441.6196,21.064487,61.57364,6.7715036e-06 1558,5.055879,358.83115,79.61802,130.12411,2.132529e-06 1558,1.640905,12.3387375,35.301056,75.65362,1.6599658e-07 1559,141.61104,205.54562,23.407852,45.031525,2.3078828 1559,411.29028,209.63365,39.60196,79.42259,0.38482136 1559,346.69998,197.69672,34.253296,59.749115,0.08703682 1559,516.46765,254.40404,24.040527,49.775955,0.042426392 1559,621.12964,184.56372,18.017029,51.248,0.02745125 1559,430.9737,227.83235,37.774445,88.12822,0.025488805 1559,579.83136,221.68443,36.297913,67.082565,0.014423786 1559,426.9329,198.51712,25.912994,53.7957,0.013119733 1559,394.5774,218.66548,20.766296,47.336838,0.009591144 1559,610.9214,183.24222,28.22528,141.00134,0.007939785 1559,620.92316,83.20553,18.22351,50.541862,0.0015040949 1559,1.0819874,179.50159,18.24944,77.8862,0.0013182142 1559,612.8075,80.53483,26.339172,137.84207,0.0006369377 1559,621.77936,268.25903,17.36731,53.434692,0.00040460995 1559,585.1008,192.24506,52.707092,224.37796,0.0002960396 1559,608.6383,439.00528,30.508362,69.26886,0.00015020573 1559,1.406377,149.8131,33.403015,167.80998,9.247445e-05 1559,612.60693,323.19333,26.539734,139.31183,8.740848e-05 1559,123.74576,156.63478,79.73248,155.36464,7.397712e-05 1559,0.5907398,233.18805,18.595901,78.53839,6.769708e-05 1559,382.42398,169.2633,109.46149,186.9602,6.0705912e-05 1559,573.10675,357.89514,66.03992,132.19034,1.1375587e-05 1559,614.3584,10.566973,24.788269,111.15177,9.624412e-06 1559,2.947181,225.62454,57.03169,241.75452,6.4372543e-06 1559,0.886285,328.47455,19.032303,131.04608,4.975293e-06 1559,0.71386313,56.817425,18.77504,152.26825,4.8871652e-06 1559,1.2027222,442.87552,20.679266,60.728455,2.9317384e-06 1559,2.9632666,392.56595,57.560352,101.84781,1.1013769e-06 1559,2.20194,16.955143,56.93538,113.7937,8.898012e-08 1559,524.0428,8.449805,49.121643,138.26517,2.458239e-08 1559,1.2288395,6.9570055,29.889202,56.11245,2.0034001e-08 1559,443.9602,2.3774009,44.286407,47.829185,8.611275e-09 1559,478.0275,0.55385906,43.589203,50.9852,6.076223e-11 1560,451.45038,215.33038,24.882904,52.5054,86.18269 1560,111.5245,197.00093,36.709618,64.07094,18.286669 1560,352.62955,186.62961,32.69229,69.2682,5.5506024 1560,440.40094,210.8586,22.348907,47.113968,0.3445488 1560,428.50143,199.99164,23.287628,51.754227,0.024416111 1560,433.3571,181.30902,53.359375,108.04202,0.014549293 1560,603.3259,62.036148,35.550903,72.73746,0.0063503836 1560,621.9541,251.88495,17.192566,50.130554,0.0052098176 1560,0.9849447,205.31187,18.29716,71.214096,0.0015152786 1560,493.9208,70.71555,34.82199,82.88361,0.0010898244 1560,0.42509198,121.31898,19.149712,72.76612,0.00082726846 1560,372.8464,190.94797,34.655487,65.675934,0.00080909504 1560,609.8678,89.763275,29.27887,176.5877,0.0007652111 1560,0.9387696,128.69315,28.293922,142.02048,0.0007399804 1560,269.53793,151.86023,25.019165,47.49794,0.00044604126 1560,610.9491,197.8411,28.19757,132.06152,0.00037931735 1560,460.03012,179.43437,24.448486,55.37967,0.00028888803 1560,88.08473,153.00417,78.409256,156.05394,0.00013112265 1560,612.34515,308.60672,26.801514,145.3497,0.000102113976 1560,0.7388648,230.72995,19.623453,132.26569,9.255395e-05 1560,608.0042,0.0,31.142456,64.97814,7.363461e-05 1560,2.8388298,156.34422,58.51595,189.94594,5.7683144e-05 1560,587.29346,207.79028,51.85321,230.86417,4.4368397e-05 1560,609.6906,436.42517,29.456055,68.42319,3.221556e-05 1560,399.69144,136.31665,146.88748,224.61453,2.478567e-05 1560,586.5654,389.6106,52.55774,104.685455,1.2832799e-05 1560,0.68203044,344.48972,20.501617,103.99008,6.003111e-06 1560,1.1724683,442.90802,20.815367,60.44336,3.4974323e-06 1560,3.496097,282.22897,56.86014,192.53577,1.3466044e-06 1560,0.66900474,21.80892,19.096292,144.8865,3.4625373e-07 1560,488.47168,25.894287,26.38147,57.007187,3.253032e-07 1560,1.0547136,17.60894,58.02621,120.50707,3.227957e-07 1560,467.7612,0.0,65.9971,161.69858,1.5734358e-07 1560,0.94127446,5.4596357,31.19126,63.278255,3.104371e-08 1560,462.89105,18.884275,40.132202,86.36143,3.6121799e-09 1561,70.31723,208.32265,31.245285,70.61009,93.800575 1561,487.3791,212.39124,38.56372,76.65683,55.996056 1561,370.048,187.12415,30.14383,68.8513,0.968169 1561,403.42627,210.74974,24.421051,49.481033,0.09050519 1561,469.97626,156.5776,70.50238,159.81589,0.04458599 1561,92.05846,216.65396,27.95639,54.085358,0.01667402 1561,621.9051,230.90277,17.241577,52.264374,0.0022137573 1561,490.43216,174.90352,31.423737,71.1826,0.0018641698 1561,468.12268,171.66805,39.79483,85.109085,0.0013650181 1561,617.4788,158.67534,21.667847,87.0988,0.0006729466 1561,44.34872,165.14706,86.29518,159.1521,0.00032600889 1561,0.8597233,188.4443,17.99304,73.93591,0.0003170859 1561,617.0157,70.514404,22.130981,83.81914,0.00024837398 1561,617.2315,343.00192,21.915161,86.170746,0.00023104622 1561,617.43005,250.34985,21.716614,88.86438,0.0002049017 1561,0.68708336,138.97052,18.881836,81.83496,0.00014961201 1561,500.81418,255.98784,29.644379,67.20299,0.00012941423 1561,586.4671,93.91929,52.679565,233.137,0.00011559669 1561,602.4455,246.38193,36.70117,203.61761,7.542223e-05 1561,608.58563,1.4571322,30.561035,60.935177,5.369763e-05 1561,609.5447,437.64813,29.60199,66.806244,3.5874065e-05 1561,0.4604248,232.83084,19.670189,136.77219,2.5680716e-05 1561,1.5182374,136.59172,33.59366,171.51729,2.1303751e-05 1561,573.9724,359.05524,65.174255,126.108826,1.3457679e-05 1561,0.8689152,363.59814,15.0306425,127.48343,8.072309e-06 1561,3.4703126,201.59415,56.40646,215.53467,6.2608974e-06 1561,599.16766,0.0,39.979004,197.03745,4.6290875e-06 1561,1.6987842,423.99124,31.557297,73.91498,3.5472415e-06 1561,1.5204208,302.11325,31.726963,166.0192,1.7355073e-06 1561,1.1524137,31.1192,28.709747,145.58409,1.0158869e-06 1561,2.4714015,45.73118,60.87347,204.12079,8.7458585e-07 1561,0.71598595,13.941055,11.863049,76.68061,1.765468e-07 1561,434.75903,14.9885,41.011658,78.4305,5.3886883e-08 1561,469.47073,0.0,43.647247,47.02936,1.0626131e-11 1561,422.3477,0.0,43.407013,46.357376,4.171058e-12 1562,547.9644,182.35008,50.47827,117.66142,99.39707 1562,447.49423,178.53018,21.418915,48.635376,54.467575 1562,25.75029,188.04794,36.652855,64.02379,13.049963 1562,594.6699,226.58759,37.951538,73.345764,0.23566496 1562,544.0705,178.36064,31.508728,61.353485,0.05418241 1562,586.5258,177.63759,51.546753,208.83006,0.00062557386 1562,440.42044,164.63148,44.474365,94.98277,0.00049245 1562,621.40594,328.0489,17.740723,52.087982,0.0002593234 1562,50.423676,192.59612,26.027733,46.765274,0.00022107811 1562,611.31915,346.14865,27.827515,137.92542,0.00011133058 1562,611.5752,68.41782,27.571472,138.93857,8.083454e-05 1562,608.9809,10.150872,30.165771,118.547585,4.8056965e-05 1562,609.68835,282.85522,29.458313,123.584076,4.3976164e-05 1562,609.29926,437.1044,29.847412,69.36395,3.6726753e-05 1562,0.774751,207.51648,20.330307,135.19449,2.4354858e-05 1562,584.4925,0.0,54.450256,281.82407,2.3333996e-05 1562,463.73596,185.36629,26.474731,46.07715,2.0020772e-05 1562,7.3424025,150.03865,83.485405,168.0247,1.802606e-05 1562,501.93588,105.50597,136.12344,262.2575,1.2941791e-05 1562,1.6456047,124.991035,33.775356,172.72098,4.634609e-06 1562,0.9647559,382.82715,18.702467,115.9375,4.3909486e-06 1562,0.60645425,304.0824,20.809887,105.89926,4.19483e-06 1562,0.8915186,93.08637,20.576641,106.51389,2.0126554e-06 1562,422.47943,131.81953,94.87457,193.7751,1.2857749e-06 1562,3.5711656,398.15555,56.708664,98.20825,9.104719e-07 1562,1.3069743,23.634415,29.06112,125.729935,6.5800194e-08 1562,2.053081,19.282995,61.34646,215.91798,5.060795e-08 1562,1.2312305,7.417956,29.250992,57.066135,1.2835365e-08 1562,483.10132,0.9656153,44.68463,48.167114,2.9313732e-11 1563,499.7068,207.4118,31.31128,58.056152,67.49722 1563,464.17526,185.13893,63.844208,111.70329,0.29901904 1563,2.9730258,215.42828,22.764114,68.16287,0.13343939 1563,489.56366,213.10757,23.00232,50.586426,0.05181286 1563,444.69516,187.50043,43.78833,135.16208,0.007354287 1563,617.8786,165.81781,21.268066,80.97534,0.003984856 1563,1.1286002,150.45825,32.018353,179.10522,0.0033354172 1563,79.878235,193.05014,24.063713,47.3145,0.0033232695 1563,1.190039,166.86996,18.696047,80.89337,0.003072639 1563,527.74475,148.73068,41.820618,81.10344,0.0024981662 1563,620.9653,338.36728,18.181396,57.89679,0.0017006801 1563,624.0635,220.25711,15.083191,47.71942,0.0014582921 1563,429.51923,214.20377,23.243347,53.970978,0.0009283495 1563,620.9384,255.37183,18.208252,57.454468,0.0008130453 1563,600.70703,141.8002,37.690918,187.73734,0.00078048505 1563,611.76373,315.76242,27.382935,143.22348,0.0002809677 1563,275.8339,137.8904,26.045044,52.699524,0.0002668689 1563,612.54535,85.28935,26.601318,131.40683,0.00025913498 1563,3.828161,127.2212,77.66585,256.0806,0.00020327885 1563,0.6436491,251.59514,18.776863,92.07759,0.00015953371 1563,616.61084,274.7384,22.535828,96.26782,0.00014359645 1563,449.94543,131.99179,137.59998,224.66647,6.514825e-05 1563,616.69104,38.55719,22.455627,95.61183,6.2986925e-05 1563,609.8205,439.1449,29.326172,66.37521,2.2330183e-05 1563,0.4890251,310.89038,18.639877,77.56766,1.3620431e-05 1563,582.6556,0.0,56.49109,214.83566,6.1670057e-06 1563,0.7363867,356.8474,19.24776,136.47037,4.963502e-06 1563,0.55013186,52.075764,20.18121,146.75468,4.3972595e-06 1563,585.7213,383.30768,53.425354,111.42474,4.349007e-06 1563,2.9076629,314.55957,57.670662,170.56247,1.6307253e-06 1563,2.446613,433.5472,45.58243,66.724365,9.237978e-07 1563,1.42403,14.982643,58.25348,121.51827,4.645413e-07 1563,1.2247038,7.034281,30.083633,56.254387,3.738435e-08 1564,30.073454,187.382,29.321592,55.72888,0.061306152 1564,565.31555,44.03754,27.609497,60.463833,0.029191837 1564,604.14685,226.42758,34.809265,75.19614,0.02143902 1564,609.39417,279.06787,29.752502,81.193115,0.017198086 1564,11.734135,178.00482,25.870258,57.028366,0.011789289 1564,572.5583,157.71504,62.880737,178.61052,0.010799187 1564,623.8469,320.7636,15.299744,50.571808,0.006506328 1564,619.62555,263.58307,19.521118,54.062347,0.0063832793 1564,270.87878,126.90736,37.48346,66.49787,0.0031924096 1564,569.82587,194.86032,36.141968,90.57822,0.0030831525 1564,622.5864,116.2169,16.560242,48.35695,0.002373462 1564,607.34753,73.281906,31.799133,87.66803,0.0018990812 1564,562.79376,146.22852,34.99756,81.53183,0.0016804022 1564,530.27386,49.42525,27.319885,49.36865,0.0016603296 1564,1.5088696,171.72017,18.348055,78.47948,0.0014793028 1564,554.16187,42.377434,22.16095,45.851463,0.0014609479 1564,0.7897176,89.163925,20.835947,115.429276,0.00064437307 1564,1.6866472,128.06172,35.024986,172.93727,0.00038999377 1564,611.81244,331.12137,27.334229,152.87454,0.00035229622 1564,491.477,148.72133,77.99548,165.68922,0.00025775822 1564,615.9484,162.97202,23.198242,94.470245,8.268333e-05 1564,603.81165,2.0760744,35.335022,68.23053,7.650218e-05 1564,0.7432772,219.1708,18.62677,80.82382,7.453144e-05 1564,609.42163,436.6651,29.725037,67.81732,3.4226377e-05 1564,250.29366,98.46451,82.64165,152.01161,2.4113851e-05 1564,567.2276,2.9616864,71.91907,175.93907,8.299152e-06 1564,0.50720704,267.48328,20.82771,107.561035,8.1118205e-06 1564,0.8786841,387.47556,17.366974,111.515015,4.763421e-06 1564,1.4429208,313.873,32.472622,172.39511,2.6611735e-06 1564,1.5856999,18.349825,57.931396,126.47287,1.7154713e-06 1564,2.418685,433.7734,45.511517,66.88754,8.4708125e-07 1564,5.4281807,359.72742,79.41203,131.05713,6.9103135e-07 1564,578.23364,18.231485,38.79785,85.0727,5.445868e-08 1564,1.0832179,7.310308,29.247519,57.04485,1.0958732e-08 1564,566.34656,0.3676644,43.33545,53.240616,4.394691e-11 1564,471.54782,4.631452,43.219574,46.796925,1.754065e-12 1565,621.13257,126.43852,18.0141,56.497772,0.009946371 1565,573.0851,150.50389,64.82373,260.5583,0.0017371158 1565,619.63385,302.71735,19.512817,60.747498,0.0015558889 1565,251.39703,106.90895,41.867676,97.94179,0.001378921 1565,610.281,60.93772,28.865662,137.5563,0.0012372237 1565,617.4591,155.0771,21.687561,85.411865,0.0011218942 1565,594.2042,292.2514,35.268616,80.288025,0.00060854864 1565,615.7029,235.18912,23.443787,88.70239,0.0004340788 1565,609.60205,34.50488,28.667053,71.367874,0.0003187632 1565,610.6915,321.5572,28.45514,126.37869,0.0002398606 1565,266.38397,105.005455,21.724426,45.0216,0.00018870365 1565,0.7183476,185.63457,13.434869,52.847443,0.00014456501 1565,0.93064946,138.60562,18.438334,81.72902,4.3301934e-05 1565,609.673,437.58606,29.473694,67.57541,2.8517248e-05 1565,1.5928468,89.53439,32.00847,180.57886,2.4214649e-05 1565,0.8179973,180.82225,19.90323,133.18239,1.7889635e-05 1565,564.60364,0.0,74.54303,216.08118,1.3227107e-05 1565,238.94394,69.6769,80.25464,175.27087,1.2407682e-05 1565,0.5200582,241.4404,13.75462,47.39566,8.770368e-06 1565,543.1921,276.58395,79.82916,171.52097,8.3290115e-06 1565,586.07745,388.71753,53.069214,104.960815,7.2347016e-06 1565,0.6343921,266.44806,19.737844,135.08194,7.0912383e-06 1565,0.8190047,399.45123,18.198238,72.20087,6.0640346e-06 1565,0.6410604,358.033,18.361275,73.36249,3.9133843e-06 1565,1.1351237,442.5261,21.023516,61.027466,3.3876688e-06 1565,0.94556564,49.721844,19.617609,137.6895,2.7210926e-06 1565,4.556598,99.08201,79.522766,262.82275,2.1446112e-06 1565,1.2927376,335.72812,32.192715,154.0669,1.813555e-06 1565,2.9990332,230.57314,57.6309,220.0775,1.2057515e-06 1565,585.36865,0.98711914,43.85327,50.130623,1.361586e-07 1565,1.8694825,19.696795,57.59079,111.030914,1.2200081e-07 1565,1.1632797,7.3475084,29.633926,56.728733,1.689273e-08 1566,201.68953,137.98264,30.242035,64.21617,0.037757415 1566,217.8449,134.89012,23.548676,51.16635,0.0032491877 1566,210.45319,112.368416,45.232803,114.41389,0.0015332787 1566,220.77219,84.74663,28.124802,58.640106,0.0012376864 1566,621.23114,344.53278,17.915527,57.061035,0.0011220236 1566,1.1444906,166.90063,18.145565,77.06775,0.00087994046 1566,616.9265,138.9316,22.220154,72.57912,0.0007032148 1566,617.2742,289.28842,21.872498,89.33673,0.0004337544 1566,2.1934261,104.94122,48.98922,173.87802,0.00022967688 1566,0.7642066,77.21583,18.914463,74.45948,0.00021346632 1566,610.9491,52.252747,28.19757,114.65262,0.00020444184 1566,611.88525,320.31216,27.261414,139.94617,0.00017053017 1566,588.3509,149.77988,50.218994,237.88773,0.00013001668 1566,618.00037,226.47527,21.146301,86.68327,5.527262e-05 1566,597.26337,1.093304,41.8833,94.79112,4.7738587e-05 1566,0.46976808,221.44907,18.447578,77.517456,4.768558e-05 1566,614.60394,417.5324,24.542725,87.330505,2.087891e-05 1566,5.0946813,158.55025,78.64002,272.38385,1.3935281e-05 1566,1.029174,206.45581,33.295624,184.38669,9.699287e-06 1566,0.62604576,276.20413,18.433603,71.24417,8.30875e-06 1566,1.0522103,17.834545,59.452374,115.264145,6.843279e-06 1566,0.83930016,406.0194,18.182781,71.18347,6.590287e-06 1566,0.48988038,316.6605,18.471096,74.32687,4.0311443e-06 1566,0.6427442,359.01657,18.317547,71.57599,3.887302e-06 1566,1.1226277,346.92856,32.377342,143.55261,1.3622933e-06 1566,178.22357,62.449715,116.63797,228.0043,9.749212e-07 1566,0.41537598,8.804196,8.304029,88.72311,7.9741983e-07 1566,4.182388,434.7837,67.69193,66.321014,5.128467e-07 1566,1.0319352,7.0290136,30.466608,57.889038,7.573469e-08 1567,191.76375,87.29243,31.000061,69.967735,0.027648324 1567,612.7357,130.79732,25.481384,85.90405,0.021315789 1567,0.85805583,147.8018,18.24384,81.51961,0.0022605078 1567,200.85696,67.73624,27.133896,53.117012,0.0016772705 1567,579.6019,392.80527,59.54474,108.47345,0.0009747645 1567,622.24884,280.89352,16.897827,51.546753,0.00075629767 1567,167.82234,78.671425,80.98241,169.92587,0.00053274655 1567,191.74466,125.99616,22.04805,48.40925,0.00048162078 1567,0.6371574,78.67001,20.880438,115.777954,0.00033238617 1567,604.6,160.68433,34.54669,200.92438,0.00020241411 1567,1.1736931,116.26793,34.604744,167.05022,0.00019170145 1567,616.9177,388.78333,22.228943,84.39282,0.00014441992 1567,0.8397526,194.1056,18.254887,74.00621,0.00012957193 1567,612.30664,273.3927,26.840027,144.41498,6.465118e-05 1567,600.4502,47.95471,38.567017,195.08704,5.2234638e-05 1567,597.0627,0.5762663,42.083984,94.687126,1.8787123e-05 1567,85.107635,162.4419,41.975883,84.648895,1.7992159e-05 1567,0.77589357,306.32178,18.016563,72.44876,1.2437537e-05 1567,3.2269728,158.34749,57.29011,236.03612,1.1233915e-05 1567,0.89611495,359.63193,16.691229,130.92133,8.958029e-06 1567,0.39966148,261.83517,18.67669,79.460724,7.515986e-06 1567,1.6801043,19.357155,63.25311,214.01712,7.399702e-06 1567,1.3659921,252.27586,32.497208,173.08632,2.2062238e-06 1567,3.4241602,317.1036,57.980854,158.65817,1.3477376e-06 1567,2.5694873,432.09634,45.108704,66.51138,1.0196082e-06 1567,1.346255,10.039372,36.52622,81.34266,4.624329e-07 1567,0.56841636,9.290713,8.921769,90.18098,3.7667377e-07 1567,121.05828,423.9023,71.61031,74.950195,2.9702812e-07 1567,271.0534,423.6891,71.7742,75.417114,2.7595595e-07 1567,406.94678,423.24112,74.03287,76.73718,2.675269e-07 1568,616.6272,153.74998,22.51947,82.73279,0.0821108 1568,218.5497,148.56017,28.446869,57.086746,0.034792874 1568,45.181774,85.40477,82.232285,175.7708,0.009199046 1568,0.9846639,165.37885,18.273844,80.62897,0.0065770308 1568,0.6489885,147.39685,14.553199,52.07109,0.003334902 1568,66.26691,130.21333,42.388824,87.35838,0.002255039 1568,51.28375,137.99168,30.339504,74.70824,0.0020040586 1568,188.4762,65.008766,37.62996,80.809135,0.0018645965 1568,600.1874,119.301094,38.306885,163.9162,0.0010069985 1568,1.5991032,116.63344,51.949142,156.39323,0.0009048723 1568,60.952652,183.5403,35.770615,64.96677,0.0006387753 1568,616.8228,100.03477,22.323853,84.384605,0.00023609867 1568,617.6754,209.78,21.471252,85.737305,0.00023204763 1568,614.02625,413.80423,25.120422,88.48923,0.00015286752 1568,613.19086,347.57797,25.95581,109.14609,0.0001330894 1568,0.50661457,198.2798,19.594934,139.09032,6.1270955e-05 1568,617.4296,314.25534,21.717041,79.9389,6.0767372e-05 1568,587.1298,196.81767,52.016846,263.2025,4.4282588e-05 1568,596.74536,2.26111,42.401306,86.187744,3.7660935e-05 1568,0.67140627,392.51187,18.268698,74.66016,2.0494575e-05 1568,571.305,360.67413,67.841675,131.94916,1.906046e-05 1568,0.6711345,62.364857,21.362566,121.11731,1.8347475e-05 1568,1.1870801,442.223,21.05468,60.627136,1.3189519e-05 1568,304.61346,428.9436,79.065,68.84036,9.19993e-06 1568,0.5575016,345.6475,18.434175,73.58273,8.393137e-06 1568,1.2475163,322.9067,32.068108,165.33377,4.48575e-06 1568,2.6081347,213.74554,58.249348,246.33551,2.3078026e-06 1568,1.4208204,17.433313,57.12054,113.31533,3.212007e-07 1568,1.0803288,4.7520967,30.065454,63.70617,2.4142308e-08 1569,355.34335,203.51126,33.05005,61.872223,0.023138309 1569,171.17772,146.56151,40.866516,90.53514,0.018234694 1569,167.27501,236.10982,27.819626,51.9149,0.00926328 1569,2.0351954,202.82562,32.2407,80.83511,0.0081776185 1569,393.35712,186.21066,27.665375,46.836823,0.0037443563 1569,164.7016,98.67847,80.89465,192.20709,0.0036752047 1569,607.47656,213.27133,31.670105,75.16788,0.0024732738 1569,155.188,179.24936,45.082245,109.32315,0.0019474447 1569,2.524253,104.697716,57.58481,217.02588,0.0011946546 1569,616.0361,56.300632,23.110596,81.89859,0.00057510025 1569,618.1029,403.9137,21.043762,77.64612,0.00036107018 1569,586.9937,93.068565,51.898743,215.8157,0.00035744093 1569,0.45835042,89.37249,14.38141,52.849953,0.00029256832 1569,616.6652,154.08409,22.481445,84.951904,0.0002657058 1569,165.42647,174.59506,23.162384,58.5121,0.0002646732 1569,0.5624951,89.25893,20.742481,167.00078,0.00016488771 1569,337.4361,142.40024,81.24393,154.26398,0.00012383772 1569,617.8447,266.21127,21.30194,87.20099,0.00010910128 1569,0.68416506,144.87958,14.015572,53.707367,8.865002e-05 1569,0.7509009,225.93251,19.437918,142.30263,8.522349e-05 1569,612.5496,307.234,26.597046,140.11142,5.975364e-05 1569,584.407,4.512012,54.739685,125.14003,4.267819e-05 1569,588.3576,211.42479,50.789062,263.4275,2.9300458e-05 1569,574.6549,424.70776,64.49176,75.48239,9.837119e-06 1569,0.7806421,362.38943,19.101973,132.07877,8.04136e-06 1569,2.6394646,230.8663,57.052334,236.31647,7.4293575e-06 1569,0.62014,338.28854,18.305992,72.19,6.9256885e-06 1569,2.4126709,432.9545,46.529217,68.18576,1.7355404e-06 1569,1.1382959,20.84818,58.100384,110.35705,1.7326297e-06 1569,1.2933334,4.787741,30.536545,63.53295,2.0581512e-08 1569,489.67807,1.3001058,46.76346,49.747997,2.8306177e-09 1569,155.07207,0.054967448,46.224167,53.745125,9.333996e-10 1569,181.78224,0.0,46.362106,52.714752,1.2433689e-10 1570,420.01364,143.71494,40.75589,104.09534,0.23828004 1570,200.80844,216.49947,39.07782,68.87315,0.08541397 1570,570.2876,98.9232,36.271667,66.3024,0.06176526 1570,426.9237,177.4733,53.297546,146.0592,0.041945532 1570,388.4713,153.93515,63.3927,157.2124,0.028638572 1570,441.78198,164.84296,23.190125,52.062744,0.00677355 1570,561.01874,72.897316,62.677673,142.09933,0.0034346227 1570,64.677925,207.73964,24.520622,45.42914,0.002806608 1570,411.90314,238.8286,27.840576,68.53844,0.0019855734 1570,371.94565,112.89479,144.20535,233.56209,0.0013077775 1570,47.969723,206.30913,24.5676,47.1559,0.00070580293 1570,616.33246,83.5533,22.814209,78.288086,0.0004432933 1570,617.5037,186.62181,21.642944,79.80888,0.00031807506 1570,1.0619645,200.3125,18.251915,74.67792,0.00028718796 1570,582.5947,5.0687633,56.55194,132.88142,0.00016846452 1570,612.76056,222.02104,26.386108,138.61244,0.00012232928 1570,601.28485,71.002396,37.861816,166.49748,0.00010744957 1570,0.72819096,226.69673,19.758282,136.85786,8.2239785e-05 1570,612.9876,307.32208,26.159058,141.27032,6.6712775e-05 1570,0.81157064,98.69725,20.047153,139.1127,5.9164937e-05 1570,1.5356445,143.3314,34.19437,180.06682,5.6722336e-05 1570,586.22675,139.56958,52.91992,242.3386,3.4466735e-05 1570,609.89264,440.13162,29.254028,64.641205,2.2460554e-05 1570,0.8308521,323.33142,19.017159,133.20444,7.4563586e-06 1570,586.19604,391.72388,52.950623,105.20703,5.533428e-06 1570,1.2072958,442.35803,20.894514,61.204956,3.4855652e-06 1570,2.3654265,25.734936,61.47024,236.92125,3.0749504e-06 1570,3.0653615,236.47755,57.391033,230.86137,2.5457105e-06 1570,3.0735972,392.81497,57.561123,102.38812,1.3348845e-06 1570,0.7183789,20.982117,17.212055,129.65947,5.9583016e-07 1570,1.3839388,12.372351,35.920925,73.16981,1.5268773e-07 1570,389.01523,2.4860954,43.126556,49.909374,2.6501384e-08 1570,444.37445,2.4661443,43.286346,47.934227,2.033047e-09 1570,202.64917,0.6447331,43.476746,49.710087,8.6453217e-10 1571,107.12073,209.67767,27.632614,46.160034,99.19625 1571,206.83847,213.26569,32.805176,53.96402,26.649057 1571,272.6351,210.79454,38.48944,68.26134,0.0758317 1571,97.58089,183.07661,48.148438,97.571976,0.031910103 1571,465.25745,200.05951,42.497467,111.306946,0.005243351 1571,621.022,85.58828,18.124695,51.74276,0.003201391 1571,621.26715,294.69254,17.879517,63.05777,0.0026518195 1571,611.38403,181.44476,27.762634,156.66016,0.0014243905 1571,455.2768,195.18779,29.536133,60.93611,0.0010636857 1571,258.7897,143.19475,72.6387,159.84166,0.0008127313 1571,611.13995,90.73726,28.006714,144.8033,0.00075923227 1571,450.44528,67.12288,35.143158,74.406586,0.0006542602 1571,470.14804,188.09407,80.002106,178.42531,0.00034965438 1571,1.1506543,188.27608,18.12913,67.31932,0.00017900369 1571,611.701,292.79025,27.445679,151.70618,0.00015746997 1571,3.9343066,395.384,59.431423,99.321014,0.00012118587 1571,182.56534,165.8931,82.93616,149.26187,8.701915e-05 1571,0.8505241,372.6389,18.370705,79.57611,5.326879e-05 1571,1.314056,81.87954,27.901293,154.12537,5.0992476e-05 1571,584.5992,39.23335,54.547485,274.11694,4.4085045e-05 1571,614.2877,419.6482,24.858948,83.02359,3.512475e-05 1571,1.6470377,164.3898,32.609734,175.52957,2.770912e-05 1571,597.60376,2.0530567,41.542908,92.230804,2.6979564e-05 1571,85.47069,131.34094,91.55528,215.23016,1.9361249e-05 1571,1.2532601,271.6643,32.80617,185.0318,1.8735023e-05 1571,0.93791753,420.4893,14.265331,81.86417,1.3316541e-05 1571,572.1251,343.65445,67.021545,142.4791,6.5224335e-06 1571,2.0922787,16.318146,57.2587,123.68906,8.50328e-08 1571,319.93954,8.916856,48.943604,129.78748,6.89037e-08 1571,1.2447038,7.618044,29.361322,57.435852,3.1146914e-08 1572,281.59174,204.73187,26.716644,46.057877,99.71742 1572,387.81863,206.72087,26.403473,48.873276,58.47614 1572,606.3602,184.74069,32.618042,63.855896,0.054478366 1572,372.40643,172.37933,58.38156,108.74356,0.0024696938 1572,1.0174862,146.84595,18.692427,77.80275,0.0020160028 1572,619.5514,214.76823,19.595276,62.157516,0.0016866412 1572,501.38602,242.33995,26.329254,54.500473,0.0013923572 1572,38.974373,194.02484,23.896454,49.04973,0.0009995908 1572,268.16614,171.66507,56.485718,101.92926,0.0005128067 1572,601.2031,186.70506,37.913757,186.8503,0.00023987114 1572,0.85541505,205.4256,18.011297,76.085815,0.00020064287 1572,611.2143,67.38115,27.932373,161.82875,0.00018883217 1572,604.38654,0.0,34.76013,65.39206,0.0001542179 1572,1.5466895,106.68137,32.343975,171.48071,0.00013544863 1572,608.89453,438.40137,30.252136,67.588684,0.00012638634 1572,497.4773,138.858,42.47296,149.1803,7.510032e-05 1572,612.7056,299.502,26.44104,143.02649,4.7733487e-05 1572,0.9341374,386.82336,15.96159,111.04971,3.282991e-05 1572,2.907705,144.02855,57.75804,221.91719,2.3636536e-05 1572,615.62885,31.657465,23.517822,96.345436,1.9767644e-05 1572,344.67966,110.45503,133.26483,233.14555,1.6723487e-05 1572,3.613309,399.63742,57.31075,92.607056,1.2865788e-05 1572,1.6303939,308.11823,32.25188,167.43115,1.011456e-05 1572,0.5540829,275.48105,20.845388,108.91287,9.881726e-06 1572,504.3963,78.974594,76.673706,193.75032,8.999095e-06 1572,572.05365,360.49533,67.09302,131.29276,7.431965e-06 1572,239.4795,114.63605,137.70085,216.99677,2.4709668e-06 1572,0.618077,19.470697,17.619015,151.46387,4.5719358e-07 1572,1.6246957,14.291003,57.969147,125.86963,1.3091346e-07 1572,1.1822624,7.401361,29.556162,55.848507,1.8627995e-08 1573,360.75375,209.06003,24.459412,47.15915,99.11912 1573,488.0462,213.2472,25.762146,49.738678,98.14029 1573,326.2189,209.62794,22.195068,45.932144,0.3163813 1573,566.0786,236.70717,30.6875,64.278244,0.109919704 1573,350.74838,182.74165,42.16043,96.01616,0.0124799665 1573,225.95659,160.94302,30.837845,56.621902,0.005540638 1573,473.97293,181.2054,56.743744,106.19768,0.003434662 1573,621.95325,216.3239,17.19342,49.524643,0.0033982112 1573,537.54144,118.13791,74.15448,191.96219,0.0025190082 1573,619.95605,121.32635,19.190613,56.680107,0.0022278496 1573,621.0137,159.69766,18.132996,55.87912,0.0017719005 1573,610.3769,149.80237,28.769775,139.3039,0.0013920651 1573,0.6263672,149.37466,19.391718,138.77982,0.00080238923 1573,0.50933105,106.39648,18.764624,76.542885,0.0005000122 1573,530.9215,148.82689,26.068054,52.288544,0.0004563402 1573,621.257,73.15641,17.889648,56.47535,0.00037559282 1573,585.5001,159.75096,52.897034,228.06593,0.00032724306 1573,611.92993,308.20142,27.216736,146.41891,9.224334e-05 1573,609.4399,440.20648,29.706787,64.344574,7.3131574e-05 1573,609.5965,31.595047,29.55017,155.44153,6.149458e-05 1573,441.8455,124.632034,151.53494,229.90553,5.8104804e-05 1573,1.0767725,53.06203,35.59794,180.6411,2.5975009e-05 1573,0.3734131,242.18977,20.65946,107.22844,2.142976e-05 1573,596.43225,4.172604,42.714417,85.99846,1.6937181e-05 1573,2.6650586,152.6594,57.632614,222.93561,1.087135e-05 1573,336.32916,143.8542,90.35977,207.73842,7.4908835e-06 1573,1.2700359,443.01746,20.915125,59.793762,7.4812597e-06 1573,571.8881,352.90692,67.258545,137.92746,7.245804e-06 1573,1.058628,351.4276,17.983753,126.54431,6.956828e-06 1573,3.433384,399.1195,58.05273,93.16461,4.9630858e-06 1573,0.865114,17.833223,59.44127,117.82472,3.695195e-06 1573,1.0763835,282.64005,27.822136,146.19116,2.248202e-06 1573,0.5891178,20.40892,17.415289,123.35928,1.525734e-06 1573,1.1517367,6.453789,30.762789,59.11785,3.4712578e-08 1573,421.94156,0.73019534,44.38669,50.06682,1.4419859e-11 1574,401.3693,212.46156,29.67337,56.269608,99.902985 1574,564.8137,213.40343,23.242859,59.80269,99.43223 1574,577.74835,212.81331,24.286865,62.094345,35.808395 1574,516.40295,211.43057,23.138977,50.345306,0.20302239 1574,543.61584,194.72055,67.37915,97.89838,0.04822198 1574,612.1538,198.61853,26.992859,122.620056,0.008557288 1574,593.30035,223.03474,21.98877,49.350174,0.0077103237 1574,621.7333,223.53194,17.413391,51.237137,0.0076745106 1574,621.0963,193.21118,18.050354,51.214233,0.007071382 1574,252.09639,177.44292,23.81926,46.923523,0.0007364075 1574,617.5483,67.04378,21.598389,76.171616,0.00049548555 1574,0.5649471,165.66548,19.644556,140.79503,0.0002879973 1574,611.99066,110.06154,27.156006,148.32536,0.00019839649 1574,586.6199,202.95332,52.526794,265.0611,0.00012145245 1574,615.3316,21.271847,23.815063,77.87039,0.000101770594 1574,583.42145,25.197163,55.10559,259.34845,9.803906e-05 1574,380.9423,172.60918,71.79376,150.01875,9.444703e-05 1574,1.460809,89.92533,34.81812,176.73727,6.652656e-05 1574,612.34265,292.6974,26.804016,147.97144,6.39476e-05 1574,518.84656,137.77917,116.73987,225.11652,4.7470956e-05 1574,609.3437,436.72083,29.802979,67.77304,2.5557332e-05 1574,0.6962175,227.23055,28.304295,146.23817,1.750228e-05 1574,2.835,162.3774,57.63901,221.39452,1.4077914e-05 1574,0.88093346,345.78622,17.941284,130.33176,6.2281315e-06 1574,1.6102157,422.9492,33.6548,75.86365,1.9249046e-06 1574,1.0331852,23.274414,29.993904,145.00508,3.208358e-07 1574,1.2454687,5.7698665,30.129787,59.33059,1.5611604e-08 1575,447.12994,207.55757,33.897247,71.62471,99.90347 1575,27.265795,202.48386,26.191809,50.811386,11.938162 1575,404.08337,191.33469,28.17398,56.649307,0.7640785 1575,95.18767,197.99918,25.439003,55.113358,0.026972283 1575,465.63156,213.18568,24.872345,54.40236,0.013226831 1575,1.0904753,193.02744,19.269354,83.76254,0.010246933 1575,346.00735,184.72157,36.522797,67.70979,0.008414227 1575,591.25415,195.90968,37.94818,76.86543,0.00646346 1575,69.77103,199.27277,30.861656,52.454742,0.0040416117 1575,609.14764,158.07321,29.999023,143.1535,0.0036463232 1575,621.30225,163.0053,17.844421,54.931595,0.0031540624 1575,326.35312,195.5323,23.672668,48.312317,0.0025780743 1575,1.6793734,125.280624,33.31563,172.42845,0.0013128711 1575,620.834,200.38477,18.312683,57.43457,0.0010749614 1575,609.6744,72.522316,29.47229,152.98184,0.0003832722 1575,588.00446,188.14548,51.142212,231.10052,0.0003459428 1575,427.76794,179.28261,72.945984,143.98781,0.00019404886 1575,6.2247725,142.90543,94.576454,213.67392,0.00014546922 1575,0.99826664,71.55656,21.26605,115.2248,0.00013576704 1575,612.2914,301.27817,26.855286,140.84982,5.6526904e-05 1575,614.5438,35.3781,24.602844,93.82196,3.3592874e-05 1575,3.2978876,208.96483,56.9629,258.52368,3.3581604e-05 1575,609.33673,437.8672,29.809937,69.55008,2.8491913e-05 1575,590.00354,1.6281446,49.143127,86.10483,1.7902436e-05 1575,0.7028565,278.9702,19.371584,140.87979,1.5354268e-05 1575,572.1328,359.4902,67.013855,131.26944,7.3859255e-06 1575,1.4728191,366.64062,30.333563,123.853455,5.0608774e-06 1575,1.4158838,11.455033,62.581814,225.23412,2.4011727e-06 1575,1.2109864,6.150417,36.85799,85.518616,1.1051958e-07 1575,0.88497156,0.0,21.076208,46.556526,2.5934122e-09 1576,534.34784,213.00264,40.099915,93.01463,99.88838 1576,81.273125,207.79655,21.186638,49.354507,1.7884022 1576,102.95192,204.76552,22.407692,50.64511,0.45603085 1576,354.75043,197.88092,26.743958,47.82289,0.15475072 1576,154.59918,198.02267,26.63269,53.239777,0.13452093 1576,433.12408,194.7317,39.529663,69.23341,0.024534518 1576,26.93461,202.43211,25.916101,46.951492,0.022407427 1576,392.37177,191.57812,40.408295,74.78653,0.012983756 1576,620.0297,193.59132,19.116943,63.374924,0.0032056007 1576,372.47534,195.69531,25.136993,50.4411,0.00299304 1576,267.41446,161.20154,32.072174,58.064087,0.0018789049 1576,621.3536,156.8425,17.79309,51.28337,0.0010371915 1576,610.676,106.00883,28.470642,151.97906,0.00068796217 1576,506.42038,181.05876,90.18338,164.55199,0.0006009469 1576,612.3384,207.6432,26.808289,152.17104,0.00010864961 1576,415.74756,146.81407,84.88257,157.67842,9.344591e-05 1576,612.5836,382.98126,26.56305,121.131836,9.043745e-05 1576,1.1578743,138.22217,19.502941,130.01663,7.96666e-05 1576,606.17676,1.7413836,32.96991,60.53819,4.5034612e-05 1576,3.6426823,94.47125,57.694324,220.97433,4.3306805e-05 1576,0.5951538,213.11942,19.888231,134.53683,2.6930824e-05 1576,587.88824,259.00598,51.258423,225.89597,1.6205991e-05 1576,582.182,0.0,56.96466,243.23259,1.5477348e-05 1576,0.95530355,329.2771,18.387648,132.3375,8.785101e-06 1576,1.5935979,421.39798,33.769146,77.7377,5.5314017e-06 1576,3.7950652,228.34058,55.787083,237.04453,2.7785375e-06 1576,0.8652303,40.20506,21.038431,141.35735,1.5264325e-06 1576,1.3418913,9.025931,36.414837,81.419174,3.7099596e-07 1577,435.94376,207.92006,22.256348,49.18483,98.43687 1577,410.49246,203.58923,30.652924,53.8302,85.61139 1577,116.82133,193.5826,31.591484,53.27478,59.66837 1577,47.61775,199.3684,25.963375,53.025253,0.023833415 1577,466.3943,188.51257,37.921356,92.98157,0.018012036 1577,107.00497,157.2117,64.59673,107.44476,0.011931698 1577,413.79947,169.98401,63.37506,109.407166,0.010020064 1577,379.3399,199.62448,22.997345,45.617508,0.006199177 1577,621.24994,188.91682,17.896729,56.62082,0.005505456 1577,63.831226,194.24396,41.06815,69.89273,0.0011545386 1577,610.69025,147.43407,28.45642,127.50758,0.0009650995 1577,0.98073816,190.95859,20.304472,143.94635,0.0007241325 1577,387.39468,132.08623,135.88028,220.65611,0.00016039335 1577,2.8172705,97.19513,59.5442,226.88907,0.000154393 1577,0.8829688,130.21231,18.431297,79.99089,0.00014952414 1577,616.23444,43.656544,22.912231,89.88539,0.000116220566 1577,609.6761,442.19833,29.470581,61.94928,0.000111297246 1577,612.6749,316.76505,26.47174,144.3063,5.235668e-05 1577,82.162056,118.44357,137.01642,212.80112,3.5580022e-05 1577,607.7695,0.67449546,31.377197,64.19658,3.1779626e-05 1577,0.9632121,253.121,27.587507,158.36676,1.912521e-05 1577,587.11487,207.10863,52.0318,265.37598,1.6631047e-05 1577,599.42444,31.76116,39.72223,212.2933,1.5916716e-05 1577,1.0340927,345.2364,17.80688,132.19696,9.896778e-06 1577,1.487032,422.60056,34.06201,77.219604,2.678078e-06 1577,0.86069095,39.32006,20.380363,140.98444,1.4736589e-06 1577,1.5977247,16.974092,57.30646,118.02861,3.862688e-07 1577,1.2409619,4.761924,30.283342,62.232635,1.2999922e-08 1577,456.09854,0.30601564,45.57657,56.214287,1.4133611e-12 1578,521.3516,199.7946,25.07019,53.4272,99.172066 1578,480.13174,203.11256,23.97406,55.556717,97.56448 1578,498.47424,197.01544,22.513977,51.16211,93.127464 1578,463.2982,202.55788,27.153137,63.36891,18.941652 1578,43.816402,199.7516,26.822529,50.288635,12.5020685 1578,610.6956,202.57852,28.44226,78.82782,0.051759306 1578,30.824871,171.48709,49.819027,93.93155,0.024671271 1578,460.26968,187.06194,65.368195,96.198685,0.02369529 1578,498.51266,176.67888,57.35794,101.83873,0.018899791 1578,615.15106,272.2488,23.995605,78.41101,0.012693842 1578,361.82855,192.2215,20.799255,45.704193,0.012407962 1578,4.122844,197.63898,23.764826,59.307556,0.010727067 1578,589.61847,89.60685,49.04541,241.25076,0.009045239 1578,620.65027,175.56763,18.496399,61.479202,0.0049904385 1578,620.2034,51.71509,18.943237,57.959675,0.003773531 1578,284.38007,156.72182,25.933716,49.733963,0.0012796026 1578,1.1537907,136.88521,34.68179,168.40715,0.0011068492 1578,436.7505,128.9167,131.23077,222.89418,0.0006206707 1578,0.5789201,100.88908,22.507648,118.47468,0.0006117735 1578,586.4189,20.561676,52.51123,91.456894,0.0003797474 1578,611.4712,39.134415,27.675476,170.51761,0.00011897824 1578,602.10547,253.25581,37.0412,198.97487,0.00010247962 1578,0.65532714,212.82797,20.255238,149.70428,7.773931e-05 1578,15.966967,129.5297,95.073586,219.16931,7.557861e-05 1578,2.9771094,181.34746,56.876026,235.1653,1.6631968e-05 1578,585.16376,392.37415,53.98291,106.98941,7.710632e-06 1578,0.8988949,346.58994,17.774485,129.61023,5.796594e-06 1578,1.1882975,442.90625,20.778002,60.603516,2.850071e-06 1578,3.1813836,389.9838,57.5189,102.757416,1.645303e-06 1578,1.5909164,21.547846,61.527912,215.15398,7.9796604e-07 1578,0.6602458,8.499815,10.917219,84.04162,2.4023613e-08 1578,1.1594417,8.005016,37.092472,80.29997,4.0989874e-09 1578,509.96918,5.208654,46.981018,48.669254,7.376464e-10 1578,531.6884,0.0,48.47168,45.169518,1.4791916e-11 1579,548.7322,203.56686,27.906921,71.30063,99.31954 1579,530.849,204.30716,26.565979,67.386505,98.93861 1579,510.1997,204.49232,26.593445,68.69423,95.13306 1579,580.0147,210.14497,28.754395,57.245224,90.45342 1579,13.824987,197.27571,27.30086,64.95213,16.069592 1579,419.05948,201.21608,25.059814,51.621002,0.65553904 1579,23.604084,201.70648,37.714165,84.60431,0.6292642 1579,562.827,190.8424,63.90381,100.0885,0.047025543 1579,610.6365,215.43634,28.452332,133.01761,0.019678066 1579,3.0216131,128.72104,33.71019,177.40256,0.003919242 1579,510.59985,183.39485,77.36188,145.06001,0.00332691 1579,612.0553,303.4791,27.09137,148.0122,0.00036944024 1579,5.1858416,182.36526,53.417027,219.85742,0.00020703924 1579,606.5186,0.0,32.62805,67.814804,8.8903325e-05 1579,599.07623,71.45107,39.341187,234.69965,6.030574e-05 1579,0.9776913,234.05891,19.695118,140.94637,3.5646182e-05 1579,609.39624,435.9318,29.750427,69.726746,3.1742344e-05 1579,609.5947,25.387962,29.55194,146.02472,2.126206e-05 1579,1.7859977,10.378256,62.464436,265.70316,1.1958006e-05 1579,0.7872779,58.950157,21.055077,143.0098,7.2074577e-06 1579,66.853676,115.98905,100.7326,214.55441,7.0426063e-06 1579,0.7943262,327.7295,18.570787,131.83984,5.4840343e-06 1579,1.2128011,443.1911,20.799187,60.327087,2.9495973e-06 1579,3.2902052,393.2235,57.269028,99.50641,2.1292697e-06 1579,1.0740756,6.465749,37.307854,87.88287,5.1737175e-08 1579,360.23364,0.0,44.243835,54.70137,1.53775e-10 1580,576.19415,203.2968,41.978516,96.67415,99.77318 1580,413.49286,201.06813,23.327332,53.768463,93.440155 1580,567.0755,195.91888,26.736938,54.45584,33.7452 1580,86.49351,187.72841,28.858307,50.147736,0.7104806 1580,604.0114,191.97038,32.96045,82.455795,0.3093825 1580,620.47455,280.0674,18.67212,67.72278,0.07253547 1580,621.6006,233.84993,17.546082,61.502518,0.026844112 1580,550.3639,165.90573,81.631775,168.9112,0.007767138 1580,426.48224,205.35368,22.634705,46.8407,0.0064590233 1580,620.8376,174.6235,18.309082,54.613342,0.00364041 1580,604.48,225.37263,34.666687,160.84837,0.0032851177 1580,596.1689,65.26341,42.977783,232.77483,0.0021988607 1580,43.406715,169.58557,51.40059,89.131836,0.0014289496 1580,618.6072,121.91012,20.53949,64.07104,0.001037138 1580,398.48053,177.37367,57.951996,101.35664,0.0007564895 1580,619.7076,69.93192,19.439087,62.018105,0.0005116631 1580,611.31433,302.73083,27.832336,171.58023,0.00027020244 1580,0.80249596,114.167206,19.457352,139.79556,0.0001805932 1580,608.8149,441.316,30.331787,68.422485,0.00014243522 1580,606.6732,2.5935028,32.47345,63.85758,5.8496615e-05 1580,365.22726,121.73317,134.28586,236.56252,4.3726795e-05 1580,0.5643132,202.63306,18.3665,139.20999,4.0794213e-05 1580,2.830438,101.10353,59.542286,209.7126,1.981808e-05 1580,37.729256,119.28701,88.80179,211.60437,1.3029108e-05 1580,1.2296842,443.13522,20.932455,60.246033,4.7575195e-06 1580,1.2643611,257.6236,31.833204,170.88272,2.4227302e-06 1580,3.3950229,396.4456,57.27616,96.434784,2.3968394e-06 1580,0.86066735,21.949434,19.884846,119.625824,3.065749e-07 1580,0.99139816,6.335251,30.992353,56.295467,1.7582849e-09 1580,407.2873,0.0,47.649902,47.008106,3.1143138e-10 1581,452.85574,202.62267,28.875214,64.29784,99.68976 1581,433.47253,203.41359,28.07132,62.194534,99.22437 1581,27.184404,200.54784,29.291937,45.779877,36.523293 1581,616.4263,101.64764,22.720398,61.595604,0.05317792 1581,520.91785,204.3468,37.205994,65.895874,0.012360348 1581,99.70648,201.2405,23.308105,46.810577,0.0070935944 1581,16.74072,183.68939,51.368355,89.27194,0.0034384574 1581,624.06976,34.163372,15.076904,46.178555,0.0010283206 1581,602.9072,112.458885,36.07959,159.65067,0.0008984362 1581,431.42703,179.21579,75.080475,143.77563,0.00072112103 1581,0.9362289,216.0606,18.296068,82.29286,0.00059816294 1581,609.51483,18.268217,29.631836,114.204865,0.00054458703 1581,613.21045,212.92584,25.936218,115.33798,0.00044395757 1581,618.0557,353.94574,21.090942,80.19208,0.00014226661 1581,32.16843,139.10992,90.68375,168.48358,9.4511815e-05 1581,603.526,260.5424,35.442566,174.51111,5.379738e-05 1581,1.5895166,181.16364,32.3924,165.5574,5.091686e-05 1581,1.0900953,116.94706,19.353971,142.72198,4.161131e-05 1581,600.329,4.565124,38.817688,48.04006,1.0416499e-05 1581,599.2929,414.1156,39.85376,89.01401,7.9059155e-06 1581,0.6342741,277.67105,20.424677,110.49896,6.7665455e-06 1581,2.9846356,233.29741,57.239964,238.29793,4.1891212e-06 1581,0.9168351,355.26834,16.594707,127.21069,3.7944144e-06 1581,1.0983748,442.0746,20.904577,61.31122,2.611255e-06 1581,2.4369466,25.094597,60.775997,248.74146,1.8594786e-06 1581,1.0685425,22.753712,19.409338,123.203354,1.1971346e-07 1581,0.74796146,11.432308,9.749383,81.68742,2.6324154e-08 1581,566.2126,4.3360972,45.058777,47.856743,1.0313362e-09 1581,1.3959912,5.727025,30.64517,61.639927,1.9158829e-10 1582,472.6347,169.25087,37.78061,84.27161,99.81459 1582,449.37836,175.88428,37.174103,77.76482,99.70197 1582,21.865326,170.97166,23.21912,48.776154,73.59888 1582,102.66594,167.81541,26.85672,49.405655,0.81839806 1582,7.4294095,137.85336,46.34338,100.188644,0.17977974 1582,617.302,179.31337,21.844666,64.11624,0.11980817 1582,603.4399,180.84154,35.315918,143.81071,0.037397686 1582,37.40957,173.97498,26.107231,50.753387,0.022384109 1582,380.4492,165.70139,23.36621,49.697144,0.014389524 1582,1.8116301,139.4257,19.536877,80.06328,0.012379148 1582,443.45,136.14185,92.17676,182.98764,0.004301261 1582,622.32556,275.48877,16.821106,51.28888,0.0033610377 1582,6.6900945,105.12837,82.00455,202.35768,0.0016222631 1582,2.041395,159.1533,27.783344,149.61565,0.0010240176 1582,605.12384,5.208057,34.022827,59.956615,0.0006944776 1582,611.07983,248.40717,28.066833,149.57153,0.00022924316 1582,617.12177,337.39178,22.024902,84.9368,0.00014004734 1582,610.85114,53.16094,28.295532,181.09758,0.000102274586 1582,615.5701,28.908533,23.576538,94.05294,5.4657074e-05 1582,0.658064,240.71053,19.41442,139.8871,2.803227e-05 1582,0.7584131,43.689606,21.145493,143.62872,1.0754495e-05 1582,599.597,412.0423,39.549683,91.04208,6.857521e-06 1582,0.8737891,331.60687,19.159441,131.33438,6.762933e-06 1582,3.351639,219.0008,56.4249,237.59598,3.0420608e-06 1582,3.1971486,392.46356,57.599487,101.164825,1.4121583e-06 1582,0.35883832,8.661846,8.922253,90.96231,1.75885e-07 1582,0.8790267,10.289164,37.480106,80.283325,2.525907e-08 1583,507.7446,202.5967,34.56961,85.152054,99.802376 1583,472.5902,203.32037,34.725647,89.71738,99.75036 1583,63.556618,199.63113,24.448288,52.725723,0.13528119 1583,375.10797,201.17593,26.646088,50.16899,0.081786625 1583,1.2057455,138.85333,22.298134,145.68411,0.027375871 1583,621.5728,404.15152,17.573853,58.451263,0.022139166 1583,45.688263,197.13669,24.312798,49.00647,0.008291626 1583,621.2312,208.36697,17.915466,52.739685,0.0077995434 1583,488.38477,182.14459,74.17444,140.0686,0.0077157295 1583,0.76104575,218.41707,14.528662,62.352768,0.004637337 1583,610.68884,152.20874,28.457825,130.10059,0.002262578 1583,611.9224,321.63644,27.224243,158.5935,0.0017988288 1583,610.9061,63.78672,28.24054,149.0097,0.0011845918 1583,2.6039014,117.40354,56.355526,205.17627,0.000992005 1583,585.3407,172.94716,53.80597,266.25372,0.00044375012 1583,607.3353,428.20273,31.81134,79.609314,0.0002760259 1583,608.27277,8.32418,30.873901,114.55572,7.4048265e-05 1583,1.05257,206.30629,31.990868,195.27065,6.777123e-05 1583,1.1094824,71.94881,21.8356,110.62955,6.124328e-05 1583,45.058125,130.92535,103.91409,209.17749,6.050951e-05 1583,0.8554362,326.95142,19.336489,132.17902,1.6214926e-05 1583,128.47417,141.94212,96.36397,202.96236,8.856671e-06 1583,1.8750049,421.04208,33.602413,77.56726,2.6903913e-06 1583,1.3253548,8.814147,58.336014,133.10715,9.067887e-08 1583,1.4881088,1.7185628,33.901775,50.173504,9.671139e-09 1584,575.6009,208.7741,45.8739,105.956345,99.75765 1584,529.1438,212.55946,41.540222,104.01756,99.696144 1584,606.53076,206.17722,29.989319,72.93271,80.94339 1584,64.86802,202.48589,26.261574,51.54625,14.102644 1584,523.77435,213.45186,26.399109,59.651962,0.58238846 1584,28.65271,187.46204,51.350624,79.584076,0.08188889 1584,622.20306,261.9825,16.943604,52.203613,0.01031985 1584,525.755,152.90985,113.39166,213.39658,0.002763587 1584,0.9534139,156.18365,20.629461,129.09546,0.0015714137 1584,20.638538,149.27982,88.9035,163.60031,0.0009856763 1584,612.0063,239.15038,27.14038,155.43242,0.0005393364 1584,612.4038,337.96396,26.742859,139.28964,0.00014084832 1584,610.5288,68.517944,28.617859,162.2674,0.00010430004 1584,609.3191,439.12793,29.827576,66.55795,5.162949e-05 1584,0.6260368,228.73839,18.805801,134.26778,4.759998e-05 1584,582.3024,0.0,56.84424,312.71335,4.631503e-05 1584,607.80096,1.9531152,31.345703,61.93086,2.9994548e-05 1584,3.3379998,178.28674,58.31596,225.80142,2.5096066e-05 1584,1.2118555,15.609167,62.268417,247.98236,2.3159122e-05 1584,0.88159996,341.61304,19.273422,134.55035,1.7023138e-05 1584,1.2177962,440.9409,20.787472,61.57788,1.6986844e-05 1584,3.1426368,394.62683,57.80234,97.85397,6.0315974e-06 1584,0.8234017,55.95735,21.987608,143.73997,4.2701968e-06 1584,1.1772282,6.817907,38.63233,87.047714,3.174839e-08 1585,14.269724,214.21857,29.809858,46.226166,95.70009 1585,32.79958,211.62038,26.648392,45.01335,67.68891 1585,8.984674,187.00656,50.43035,94.260315,0.12398656 1585,616.6609,259.62265,21.92926,79.97882,0.063260786 1585,1.9575131,200.8011,22.486803,59.634933,0.03383506 1585,134.39932,199.09708,42.004807,70.36212,0.030690627 1585,590.61115,239.50264,37.70703,64.434555,0.027376968 1585,2.3191586,119.623375,29.06725,156.39236,0.0050250227 1585,598.2435,209.86717,39.193787,177.26485,0.004337385 1585,78.36369,211.52797,24.969788,46.478287,0.0037146546 1585,621.6362,304.95493,17.510437,54.873627,0.0018294504 1585,597.9978,64.900734,41.03662,234.5133,0.00061149005 1585,616.5265,61.908947,22.620178,87.43921,0.00036460586 1585,612.4615,374.80508,26.68518,126.59723,0.00028101457 1585,7.5088997,115.05676,119.71631,230.25052,0.00024712694 1585,616.28595,123.56918,22.860718,88.44034,0.00016869152 1585,587.3738,293.37643,51.77289,193.68805,8.226575e-05 1585,0.6855998,85.172295,18.83868,77.12336,6.854133e-05 1585,607.164,2.3960679,31.982666,61.78345,4.990776e-05 1585,121.376724,156.81221,80.64856,154.59206,4.289012e-05 1585,2.600249,430.00412,46.07436,68.56506,2.426907e-05 1585,0.7583594,225.36037,18.81607,155.33083,2.2494809e-05 1585,1.0164844,341.158,16.057852,132.02979,1.8639925e-05 1585,5.7430015,364.1487,79.65439,122.510376,1.1533654e-05 1585,380.05005,155.84216,101.07086,209.11044,9.556311e-06 1585,585.45703,7.8384376,53.689636,119.16878,7.283188e-06 1585,1.7868588,12.40291,57.452778,122.521164,1.8618628e-07 1585,0.4120626,4.994997,9.716293,91.21713,6.993927e-08 1585,0.94006187,1.671377,31.07485,67.2132,1.6740568e-08 1586,28.7178,198.30876,30.015953,60.04988,0.11059991 1586,55.712666,208.6712,24.787724,48.8284,0.024534421 1586,621.8338,256.44974,17.312866,51.024414,0.022843326 1586,609.1726,182.29611,29.97406,133.93109,0.0147729125 1586,0.9443335,198.0307,18.869837,80.29721,0.0050122594 1586,618.56335,73.09672,20.583313,65.36054,0.0030350734 1586,583.7752,85.24056,55.37146,252.12668,0.0024659988 1586,621.6097,136.74678,17.536987,55.585327,0.0024056844 1586,0.42513186,80.34129,19.663795,82.92058,0.0023013684 1586,0.20931397,162.63484,15.367034,59.71068,0.0015338741 1586,608.4475,64.77151,30.699158,160.1459,0.0013900142 1586,0.67614913,96.6269,29.901367,163.55536,0.0011750796 1586,497.2587,152.4634,36.13217,84.18518,0.0005446151 1586,298.23007,186.6998,28.944183,46.84459,0.0004605372 1586,104.864876,201.0099,46.75402,89.99034,0.00035864045 1586,608.43384,441.48798,30.71283,64.93048,0.00019342401 1586,601.768,235.72066,37.063965,195.22673,0.00018740416 1586,584.4271,12.415488,54.719543,115.266205,0.00017855459 1586,2.3472526,125.41275,60.360107,214.6337,0.00015582102 1586,0.28490153,229.9366,20.351452,142.76021,0.0001399639 1586,479.19824,106.872215,79.2381,188.19827,0.00012009944 1586,607.6785,2.2035124,31.46814,62.23841,3.30447e-05 1586,71.49626,121.8602,135.63011,237.54199,1.1526616e-05 1586,573.0717,357.0559,66.07495,135.98062,1.1516408e-05 1586,0.7971737,341.29523,16.846567,128.5549,6.3518305e-06 1586,2.8625555,238.45662,57.427334,232.9441,5.470558e-06 1586,1.1672274,442.48923,21.026436,60.443237,4.0737023e-06 1586,1.0753711,12.853776,59.95001,133.82831,1.7998054e-06 1586,1.0114095,2.7728972,31.043941,63.995033,1.1580291e-08 1587,163.84099,211.08278,26.154892,47.398666,0.30858493 1587,603.3664,145.51952,35.780273,87.52109,0.05427959 1587,403.71964,206.47282,41.948975,73.50362,0.021785535 1587,7.6337585,172.1943,36.35314,70.38982,0.015921721 1587,609.75385,263.096,29.392822,152.93591,0.00589744 1587,620.21155,124.65774,18.93512,51.943825,0.0058573503 1587,618.80646,262.57913,20.34021,61.397736,0.0047680647 1587,621.51544,210.35753,17.631226,51.718124,0.0038281465 1587,1.2897319,191.1572,13.949233,53.268173,0.0031214084 1587,0.8035531,219.50142,18.47286,85.497116,0.0029749302 1587,619.7276,331.57428,19.419067,67.33652,0.0025219356 1587,585.1394,88.08824,53.881714,243.9416,0.001112756 1587,1.0089039,136.586,19.945684,86.92296,0.0010243165 1587,42.88784,204.1481,51.30397,86.7569,0.0009486621 1587,623.17883,178.88025,15.967834,49.538513,0.00080150214 1587,621.6489,95.72646,17.497742,52.062187,0.0005617594 1587,1.6586899,90.14615,35.301765,193.43173,0.0004774742 1587,2.975036,167.18948,55.70007,206.55423,0.00011153067 1587,584.2299,4.4715886,54.916748,122.26289,5.5421573e-05 1587,0.89743656,56.935627,19.58401,88.26642,4.9195198e-05 1587,571.66254,340.25693,67.48413,152.01288,4.9148446e-05 1587,608.91614,440.87698,30.23053,68.696106,4.661062e-05 1587,389.16537,167.27092,84.754425,151.87587,4.0845953e-05 1587,0.34233317,275.88565,18.762268,79.1944,2.137771e-05 1587,13.363451,122.30943,138.76129,243.30391,1.4330625e-05 1587,1.1927547,318.90143,30.485804,163.36447,5.0410313e-06 1587,343.1787,21.19944,40.1279,116.65548,4.8907923e-06 1587,1.1817293,443.36172,20.982357,60.419647,2.8309894e-06 1587,1.4616423,14.825632,58.297337,119.32279,1.5603167e-06 1587,303.37903,0.0,92.17709,197.1101,1.417696e-06 1587,5.2605696,358.4756,79.58824,127.10181,1.0564781e-06 1587,0.600236,6.991846,8.382766,89.97088,8.8971336e-07 1587,1.2488021,4.3894367,30.776249,65.14861,9.9489874e-08 1587,448.32333,1.027137,43.979736,49.165752,2.4399496e-09 1587,413.09268,0.0,48.61795,50.45095,1.9444035e-09 1587,345.31985,0.0,45.64792,49.52443,2.7913585e-11 1588,428.98087,219.41821,24.284882,46.448242,38.375446 1588,167.44202,201.85011,27.111694,53.663956,7.962628 1588,151.13585,203.6952,28.071747,54.12413,1.1958288 1588,401.96054,218.88272,24.215576,50.694153,0.1050652 1588,0.18837078,211.67665,19.553204,51.738968,0.024894683 1588,151.40424,172.52654,55.02295,97.91911,0.013324787 1588,413.1622,207.87665,47.9899,90.425446,0.009428101 1588,483.87836,221.65823,28.732605,59.49872,0.008898668 1588,619.66254,172.18784,19.48413,59.491074,0.0059031686 1588,607.3385,140.29318,31.808167,147.24548,0.00330024 1588,621.9074,284.20428,17.239258,54.42151,0.00184744 1588,620.6729,124.536606,18.473755,59.747726,0.0018276367 1588,620.90704,229.6391,18.239624,51.786774,0.0017400705 1588,625.12463,106.63144,14.022034,45.42189,0.0013494423 1588,580.9154,113.89288,21.665222,45.008926,0.0010871659 1588,569.8321,118.71797,67.658264,251.88402,0.0007183946 1588,611.99176,233.3168,27.154907,134.95425,0.00063743227 1588,1.085,153.90256,27.355766,135.32965,0.0006262334 1588,610.25385,62.57243,28.892822,145.49333,0.0003419089 1588,0.70504963,125.40132,18.62086,77.83232,9.325806e-05 1588,585.3018,6.95903,53.685303,124.45557,6.555197e-05 1588,612.46606,333.19693,26.680603,149.76422,5.020258e-05 1588,3.0101092,105.103165,60.209267,214.51646,4.877527e-05 1588,383.22235,126.136406,137.5575,232.63257,4.574311e-05 1588,0.83999836,76.92431,18.663311,78.66369,4.1979758e-05 1588,121.8663,113.80133,148.10135,216.6911,2.549098e-05 1588,0.9150602,209.79802,31.585352,190.3694,1.1925606e-05 1588,0.7243335,325.56882,17.832949,131.38022,6.486035e-06 1588,581.9824,425.1459,57.164246,78.162384,5.4198026e-06 1588,1.1540976,443.42737,20.862812,60.21457,2.826894e-06 1588,3.2318897,393.0149,57.224815,99.413666,1.9398944e-06 1588,1.398488,37.049732,35.1499,199.99945,5.8724197e-07 1588,0.69265425,9.988691,9.636113,82.545044,3.8166962e-07 1588,1.4934375,8.301045,39.022953,79.26691,2.531242e-07 1588,1.0980339,0.9077881,20.774096,45.451237,1.2754659e-08 1588,378.68726,2.0868523,49.65692,52.407875,3.9357446e-09 1588,411.5495,2.034961,46.594513,50.903156,1.3219907e-09 1589,442.92236,209.26259,37.240356,69.69133,22.129192 1589,465.9901,209.8574,26.396454,48.33156,1.171215 1589,135.41643,192.9005,23.992783,46.111465,0.09296913 1589,471.91183,230.58752,27.231659,61.322296,0.023920698 1589,518.3873,221.36131,28.10138,48.628983,0.015074553 1589,610.52454,191.53651,28.622131,104.50084,0.0091828685 1589,146.1983,195.17456,27.57077,54.70912,0.006162151 1589,1.4310864,216.16513,20.99369,50.055206,0.004158436 1589,443.95523,150.18053,79.11105,170.30568,0.0037703987 1589,620.79944,184.13153,18.347229,56.21486,0.0029482606 1589,1.8234099,63.73112,35.52686,214.43736,0.0021312465 1589,623.05414,234.43819,16.09253,47.79857,0.0015037219 1589,0.7923568,113.36453,19.377851,79.26042,0.0011899155 1589,612.14764,310.61615,26.999023,147.00546,0.00040109074 1589,0.4864152,249.51628,18.688282,78.69798,0.00030138713 1589,620.619,140.82915,18.527649,57.191437,0.00029521916 1589,609.3064,78.1823,29.840271,163.28448,0.00029319286 1589,587.44165,162.68236,51.705017,226.95958,0.00026653495 1589,0.66473633,162.5454,19.430466,86.48677,0.00022224562 1589,608.3478,440.89517,30.79889,65.42941,0.00017797793 1589,1.4287224,200.22096,32.577404,172.2996,0.00010697351 1589,616.3505,48.58365,22.796143,88.0238,0.00010001171 1589,616.1219,255.36792,23.02478,101.14041,6.869538e-05 1589,0.64996177,292.30508,19.643053,138.04291,3.9170325e-05 1589,571.7032,355.0446,67.44348,136.3097,3.559326e-05 1589,114.06115,113.46698,145.8938,217.47458,1.7171024e-05 1589,3.1479037,247.23161,56.160217,219.02715,1.4620996e-05 1589,584.982,6.504186,54.164673,119.632324,1.176891e-05 1589,0.91257894,398.10226,20.315935,100.49863,8.750734e-06 1589,0.7584741,31.592096,20.964762,100.99009,3.797803e-06 1589,3.1508465,392.48465,57.5103,102.0199,1.9007741e-06 1589,6.658392,11.456374,46.5151,122.63431,4.677349e-07 1589,0.7821452,10.089131,10.384496,85.00432,3.369598e-07 1589,1.022845,4.948887,32.644005,62.28011,4.451964e-09 1590,471.9192,207.67671,25.289246,49.659897,98.53046 1590,145.59694,194.38226,25.416748,48.91725,15.63819 1590,618.3746,199.80106,20.772095,70.255005,0.011639318 1590,622.5319,301.89215,16.614746,45.7489,0.0065783863 1590,379.70227,214.98747,25.457031,56.42195,0.005663527 1590,454.08664,185.36165,60.326996,99.8224,0.0023845085 1590,602.3126,165.71448,36.834045,164.72458,0.002057594 1590,131.37355,174.57072,49.084015,87.13127,0.0009858334 1590,0.8412651,225.80815,13.4689,48.620163,0.0005718156 1590,612.21094,283.683,26.93573,108.05682,0.0005278411 1590,0.95320475,179.22935,18.83905,80.0497,0.0003275384 1590,587.1775,239.3085,51.470825,221.87146,0.00030634468 1590,0.6541195,158.26794,14.4266815,55.3683,0.00029700817 1590,0.65021485,95.74489,18.78818,78.07443,0.00024370989 1590,617.0033,84.60182,22.143372,80.98091,0.00021912495 1590,424.43323,130.96768,158.27942,222.24625,0.00016423923 1590,1.5820931,85.47412,34.2774,188.86658,0.00014192323 1590,608.96124,443.78705,30.185425,62.186096,0.0001077937 1590,0.7422648,211.24669,19.465124,133.57237,6.871602e-05 1590,0.7984668,397.97272,20.511074,101.00668,3.718456e-05 1590,0.9859766,20.495752,60.990326,109.672905,1.7763086e-05 1590,596.12036,3.4088216,43.026306,84.691444,1.7015898e-05 1590,2.9235597,153.33266,57.548603,218.14311,1.50900805e-05 1590,585.7428,390.81467,53.40387,107.3555,1.4955893e-05 1590,0.878335,318.586,27.488907,142.90564,1.2483775e-05 1590,601.9978,46.303932,37.148865,188.41379,7.2137846e-06 1590,117.70911,130.55606,98.953415,198.38913,7.0967862e-06 1590,4.7394958,362.37552,79.01119,126.63162,4.7821563e-06 1590,0.7204533,39.05002,20.088371,80.968,4.334432e-06 1590,306.59882,26.286661,38.88864,97.65946,7.4711004e-08 1590,0.97780436,4.820781,30.50538,64.996895,3.8169713e-08 1590,381.68924,1.2235173,44.36206,50.9647,1.9852331e-08 1591,524.2153,214.8137,20.72528,54.300217,99.20265 1591,510.15396,207.23352,21.966827,47.06433,10.592552 1591,507.93283,198.088,42.585175,92.22038,0.14379936 1591,604.19507,209.52946,27.129578,53.01027,0.053836282 1591,342.18378,196.07379,24.009766,52.3273,0.006489938 1591,608.91895,185.01772,30.227722,145.64937,0.00407402 1591,0.8398519,186.55609,13.623187,49.88925,0.00089927623 1591,1.0339804,202.58675,18.005844,78.433914,0.00052344974 1591,444.44318,189.568,32.59543,65.69647,0.00051704317 1591,609.85614,108.211365,29.290527,143.50435,0.00043003875 1591,360.11453,208.36835,23.057312,47.51021,0.00032091665 1591,114.21718,205.6036,26.980377,50.476593,0.00022768055 1591,612.85486,317.44424,26.29181,146.85498,0.00022451868 1591,0.8380265,140.06662,18.713192,79.32422,0.00016571296 1591,2.999476,101.69512,59.609653,211.19617,0.00016080303 1591,616.8174,60.17236,22.329285,88.056244,0.0001293687 1591,570.7765,114.48231,68.37018,263.94385,9.7455326e-05 1591,487.40042,161.0884,91.006805,179.30067,6.0415925e-05 1591,1.2398071,70.2347,19.31891,78.07252,5.82304e-05 1591,609.42725,443.2255,29.719421,62.68045,5.3689233e-05 1591,1.2330648,181.69446,32.579273,180.53958,3.9562758e-05 1591,584.1004,9.961813,54.263,105.432846,3.3449276e-05 1591,0.5109245,249.0015,18.473246,76.62714,1.940998e-05 1591,0.9519572,387.94263,18.617105,110.72284,7.913534e-06 1591,585.56866,389.207,53.578003,109.53607,6.861695e-06 1591,0.59683514,296.362,19.73241,136.65573,4.7898516e-06 1591,2.8757277,246.43105,57.52759,229.34392,2.9684702e-06 1591,2.390306,431.76187,45.872593,69.824646,1.7636246e-06 1591,2.065049,13.586172,57.585526,126.65003,2.500092e-07 1591,1.1935971,6.1355796,29.935707,58.05306,1.7901048e-08 1591,476.53247,4.547658,43.656616,48.017056,8.805588e-09 1591,450.27393,4.244935,42.860992,48.96691,1.9302178e-09 1592,604.995,197.02475,32.25836,86.15097,96.4895 1592,622.2013,201.46219,16.945374,49.46089,0.53210616 1592,406.6292,207.24188,23.338928,49.235382,0.05891032 1592,591.3227,119.36849,46.52771,214.69379,0.034321852 1592,0.8455656,197.85414,19.079933,81.41673,0.012807082 1592,620.45544,260.18274,18.691223,60.896545,0.00568784 1592,387.5614,208.08064,24.002533,49.190933,0.005278162 1592,619.9154,345.09888,19.231262,73.12561,0.004832684 1592,0.56456786,137.6279,21.365751,81.020615,0.0039458764 1592,607.84546,282.12164,31.301208,83.10651,0.0037608463 1592,620.94495,55.649715,18.201721,56.56695,0.00231898 1592,1.3382015,121.55894,34.06814,172.1152,0.0021367497 1592,289.69504,141.43967,27.81128,53.40416,0.0018480127 1592,623.97345,294.7301,15.173218,45.8757,0.00085007766 1592,0.6349903,81.362465,19.902393,87.52601,0.0003371874 1592,589.0923,308.52368,50.054382,170.25436,0.00017297624 1592,609.4728,56.08262,29.67389,166.63556,6.6842185e-05 1592,0.8994352,234.10893,28.217962,156.50768,3.0396197e-05 1592,596.1008,4.3606477,43.045837,86.30067,2.1379912e-05 1592,0.74695396,318.1003,18.235872,134.42111,1.9345227e-05 1592,84.567154,123.027306,102.15779,219.4617,1.062142e-05 1592,2.5906658,246.45312,56.884224,223.16516,1.0132671e-05 1592,0.6744051,417.48044,16.254562,84.75989,6.0970883e-06 1592,574.89056,423.36163,64.2561,76.22958,5.9896843e-06 1592,338.70578,50.95333,27.408905,64.36839,1.7784334e-06 1592,1.0238005,13.289278,58.180355,133.40839,6.3755454e-07 1592,0.71682864,6.2177086,20.353615,58.573803,3.9536516e-09 1592,326.7462,1.1773194,42.83423,50.157326,2.6849483e-09 1593,463.2447,211.24594,33.80313,78.53598,0.08691053 1593,621.60785,190.93683,17.538818,55.430237,0.027036905 1593,1.985306,161.36923,35.564095,99.85745,0.0063468004 1593,426.76892,229.76292,23.804413,45.780502,0.0048245513 1593,621.8981,306.84567,17.248596,53.74948,0.0029584223 1593,612.3599,123.73828,26.786743,125.195114,0.0022314643 1593,1.2638363,198.87685,18.27841,81.88234,0.001868937 1593,1.1887028,136.14815,19.06128,84.82335,0.0015635092 1593,611.8642,204.72295,27.28247,150.78319,0.0011061421 1593,45.528984,179.69412,49.50757,71.01013,0.0010978766 1593,617.5642,95.160416,21.582458,75.44476,0.00080599904 1593,0.9309424,66.81353,18.744215,81.31324,0.00029019965 1593,109.9695,154.05226,45.7872,93.67529,0.00025641025 1593,612.97046,314.14676,26.176208,145.89444,0.00012654711 1593,2.8250456,124.36079,59.044884,212.76205,0.00012524563 1593,63.093216,149.86592,65.57492,119.16838,6.347458e-05 1593,602.178,0.0,36.96869,72.858696,6.138724e-05 1593,609.49347,441.25095,29.653198,63.272125,4.5061683e-05 1593,0.9388485,211.32515,28.17065,153.59929,3.0453646e-05 1593,584.57806,43.202267,53.64099,237.4656,2.7705684e-05 1593,0.7309351,356.71008,18.961082,128.52716,2.4795836e-05 1593,0.8814258,441.57715,21.882547,61.615417,1.1756144e-05 1593,572.20056,347.49127,66.946106,141.8294,8.4649055e-06 1593,104.515274,112.253494,93.52812,205.1042,6.3235448e-06 1593,2.7438917,233.83073,57.025543,236.86662,4.717328e-06 1593,2.6992774,394.9815,57.286083,99.60852,4.2306024e-06 1593,1.1485351,13.551341,59.222923,127.55843,8.5027983e-07 1593,350.8176,10.702279,44.84015,123.23637,1.249576e-07 1593,0.9587468,5.528249,30.25876,62.92317,4.726239e-08 1594,46.491737,192.89381,24.977005,45.333252,94.22784 1594,566.7668,181.67656,29.365112,54.342926,13.724704 1594,620.425,177.64896,18.72168,60.694153,0.08423388 1594,13.30516,177.7162,54.126137,93.70378,0.02901736 1594,619.34235,271.81415,19.804321,61.09375,0.016972506 1594,610.1287,172.3307,29.017944,135.10237,0.015656527 1594,0.68972737,189.8809,13.645816,52.185715,0.0034496898 1594,429.0085,118.37433,44.18567,125.11922,0.0015074896 1594,1.1111556,170.66995,19.102797,126.0018,0.00074975035 1594,97.62903,162.85374,41.712723,70.9341,0.0007153359 1594,611.51154,260.8118,27.635132,150.3977,0.00069194037 1594,454.99173,103.01277,26.108337,57.77069,0.0004620726 1594,572.9536,161.72388,65.59314,238.17471,0.0003005384 1594,615.485,59.681564,23.661682,97.33833,0.00022912164 1594,6.303965,134.42247,88.09932,214.70427,0.00018845817 1594,452.30054,137.21683,29.301971,69.821884,0.00010760462 1594,0.6956502,90.544075,19.432528,83.80291,0.00010632907 1594,612.3891,364.62253,26.757568,133.83353,7.200436e-05 1594,584.3295,20.144558,54.52716,251.0492,3.6231086e-05 1594,0.54232913,244.9055,19.721981,134.56517,2.338287e-05 1594,82.65033,117.04427,83.13377,167.88644,1.4095513e-05 1594,595.12976,0.8821452,44.016907,90.71038,1.3621484e-05 1594,352.42914,113.056175,103.06784,208.16089,1.220193e-05 1594,0.7220915,324.7135,19.184437,130.80637,8.057357e-06 1594,1.4903158,54.61829,35.595528,185.23901,4.4079156e-06 1594,0.8440406,422.4356,15.628928,79.571655,2.8397612e-06 1594,2.784061,255.71214,57.740654,216.0525,2.4840372e-06 1594,2.0981104,19.328959,58.198544,115.30782,4.6648046e-07 1594,2.41605,431.23224,46.166798,68.854645,3.7051723e-07 1594,372.7189,1.7003841,86.77496,181.0534,2.749408e-08 1594,379.2531,1.4993035,47.601532,52.84514,1.8477603e-08 1594,1.0453044,7.1744795,29.918114,56.749634,1.8191342e-08 1595,14.772536,241.20245,23.827267,47.04959,97.4991 1595,597.13275,232.41823,18.624268,45.59114,5.643312 1595,606.06104,229.5679,32.112732,152.14496,1.4795433 1595,617.3054,315.01443,21.841248,67.934875,0.12133636 1595,617.00574,243.92595,22.14093,61.69371,0.057153463 1595,79.599495,209.43944,45.061264,72.42073,0.027061198 1595,547.9516,184.71391,80.23523,171.24858,0.0109586725 1595,620.24396,282.6797,18.90271,56.95804,0.009190655 1595,5.9044714,227.30649,43.789127,92.615906,0.008867707 1595,620.75116,130.95288,18.395508,57.06273,0.002584992 1595,619.60156,206.5014,19.545105,67.68616,0.0024896779 1595,610.0997,113.8899,29.046997,150.16443,0.0010802868 1595,1.859187,230.95164,19.470469,125.031784,0.0009406318 1595,603.79974,1.756569,35.346924,96.412575,0.00087723584 1595,373.0736,210.2375,42.70941,65.66231,0.00041717658 1595,585.55865,42.86241,53.418518,286.33563,0.0003090125 1595,517.4437,90.04358,71.6272,201.47684,0.0003082822 1595,614.3947,45.950058,24.751953,92.90018,0.00029524224 1595,587.7755,303.9651,51.019897,164.75153,0.0002797373 1595,538.9714,122.40446,33.21997,82.03191,0.0002220431 1595,616.74994,400.58066,22.396729,86.20654,0.00014234043 1595,1.9030713,82.719055,34.656414,213.60779,5.5197455e-05 1595,4.034948,184.61417,72.29452,209.44269,3.9100047e-05 1595,0.7056364,322.48434,19.309086,134.2015,1.01998e-05 1595,359.9537,169.67287,86.21677,154.56224,9.647368e-06 1595,60.55523,152.07031,97.27021,219.23615,8.6365535e-06 1595,1.1129493,51.529747,17.981396,137.5687,4.9573996e-06 1595,1.6628222,421.42722,33.3056,77.470856,1.6592957e-06 1595,591.59094,0.0,38.45514,46.030693,1.1942753e-06 1595,468.68484,8.168449,45.842194,52.370434,3.648021e-07 1595,2.5698144,15.898607,56.223843,120.954895,1.035591e-07 1595,1.335752,8.336672,29.667097,54.545845,3.287436e-08 1595,559.60974,3.669844,45.374878,52.16994,8.254069e-09 1596,61.553642,171.22067,34.13645,66.56741,0.84075856 1596,604.92236,160.43248,32.545837,106.438034,0.23513395 1596,619.9171,217.3923,19.229553,51.654602,0.013709948 1596,479.91147,183.20981,34.055084,63.05751,0.0035790305 1596,41.943645,119.60755,59.12038,133.54471,0.0025808194 1596,621.73517,118.742935,17.411499,56.2361,0.0023265246 1596,572.503,111.364876,65.96887,213.04706,0.001562132 1596,623.00824,79.07282,16.138428,47.140434,0.0012441253 1596,597.8768,0.0,41.269897,242.3318,0.00040549686 1596,382.72418,172.32323,41.964264,89.43562,0.00034560647 1596,601.832,204.28412,37.314697,234.57559,0.00026589364 1596,616.5979,240.34459,22.548767,86.91588,0.0002515775 1596,609.2491,375.91724,29.897583,125.48428,0.00024346224 1596,0.5788184,212.15688,18.266413,74.19588,0.00020098184 1596,607.07385,0.0,32.072815,88.97556,0.0001988018 1596,616.45105,333.44363,22.695618,88.035645,0.00011600585 1596,0.870284,162.58943,18.060095,75.84599,0.00010860134 1596,11.33991,91.52624,118.840324,230.91428,9.8856435e-05 1596,617.656,290.9442,21.490662,81.79135,8.832512e-05 1596,0.6792765,302.93692,18.473347,76.042816,5.3923635e-05 1596,0.62279296,102.94983,19.073841,81.72429,5.336255e-05 1596,1.308038,201.44476,32.60311,172.8573,3.062858e-05 1596,0.8974805,316.6505,28.357485,144.85553,1.1113884e-05 1596,370.95306,132.86041,90.407166,198.35995,7.689235e-06 1596,0.7917147,421.96725,16.58532,81.537506,3.4766217e-06 1596,5.203327,347.23328,78.952286,141.55554,1.2515802e-06 1596,2.186027,36.888935,61.467384,238.54967,1.1378393e-06 1596,1.2011231,22.294584,29.238586,132.96588,6.105092e-07 1596,3.0843978,430.4919,54.30255,70.49356,4.8553494e-07 1596,1.0299642,7.7263055,29.685013,55.697067,2.2343407e-08 1597,24.11667,168.11026,39.17491,76.560974,2.1873505 1597,610.39575,94.57753,28.750916,141.15758,0.0036219251 1597,620.85754,114.2834,18.289124,55.66455,0.0034524049 1597,622.004,76.17461,17.14264,49.902588,0.0030774132 1597,621.70416,210.21892,17.442505,49.514603,0.0023951929 1597,127.217636,192.11758,25.885834,52.012085,0.0023936015 1597,8.127298,115.99666,75.79821,172.7137,0.0022837054 1597,387.59122,185.7585,40.123413,65.89766,0.0008080987 1597,611.927,191.47809,27.219666,136.7703,0.00057539874 1597,0.8137089,208.07332,12.937048,46.48372,0.0005600738 1597,617.678,284.28262,21.468689,79.50769,0.0003037967 1597,0.9918181,158.1372,18.263754,79.238815,0.0002491008 1597,0.693903,189.95839,20.022161,133.59447,0.00012797459 1597,608.1644,10.46114,30.982239,131.08069,0.00011055179 1597,587.06573,193.68172,52.080933,240.12648,8.856061e-05 1597,583.0342,0.0,56.112488,262.89023,8.4060244e-05 1597,613.1083,353.15338,26.038391,110.24829,7.327958e-05 1597,3.720962,185.72063,58.780407,250.62474,6.897503e-05 1597,0.5263509,275.50134,18.676867,76.874176,6.51511e-05 1597,0.6530803,340.32364,19.807178,135.91196,5.00986e-05 1597,614.25745,417.78183,24.889221,85.00339,2.9278723e-05 1597,376.96002,137.3443,96.16885,200.99225,1.6175789e-05 1597,0.8847974,440.58786,21.901804,62.97882,1.028737e-05 1597,1.1579704,48.107044,29.941685,150.91356,5.967516e-06 1597,5.183825,356.12372,78.5141,131.8717,4.00686e-06 1597,2.267282,21.302872,56.82163,112.326965,3.216053e-07 1597,0.9927458,7.3494697,19.454178,56.21948,1.9365727e-08 1598,1.3719637,189.4389,14.637693,57.467514,0.012233104 1598,2.524284,155.75975,38.052025,110.872116,0.00909022 1598,607.0242,204.66948,32.122498,80.15578,0.0054677636 1598,623.96155,227.04048,15.18512,45.96071,0.0016743492 1598,610.2633,88.807846,28.883362,133.15198,0.0007320523 1598,585.3451,141.87599,53.801575,208.17793,0.0005336964 1598,618.067,390.38138,21.07965,78.289246,0.00044589496 1598,617.47705,313.21304,21.669617,81.6196,0.00028412676 1598,407.27982,190.56102,41.895203,83.399704,0.00017231767 1598,616.14276,246.76953,23.003906,88.55902,0.00016485123 1598,601.6865,259.78,37.460144,207.60242,7.735881e-05 1598,0.90887207,211.98143,18.754852,85.135025,7.20831e-05 1598,609.1306,438.25543,30.016052,66.42432,6.197618e-05 1598,3.2439325,124.29926,71.85544,210.15439,6.1207946e-05 1598,0.95230633,67.59952,20.005522,154.95921,4.110731e-05 1598,609.41046,6.7879887,29.736206,142.32286,2.3132237e-05 1598,372.56204,128.2805,148.04605,213.0197,1.9178102e-05 1598,0.7053752,343.59735,19.601675,130.56244,1.3729575e-05 1598,0.49036866,317.87424,18.506378,73.35416,7.0064443e-06 1598,0.7261312,421.20038,16.188221,81.267456,6.6623898e-06 1598,0.5007658,275.97864,18.49538,72.17612,4.5952893e-06 1598,2.8353777,294.16678,57.950645,184.52463,1.2396252e-06 1598,2.8782308,431.4445,53.9534,68.88141,6.5372024e-07 1598,2.1893523,13.52112,57.853813,133.39693,6.3354935e-07 1598,1.085293,7.390952,29.716652,56.128006,1.6418717e-08 1599,459.7912,212.19734,23.919739,53.774582,93.74557 1599,621.3408,195.3322,17.805847,51.0157,0.012077878 1599,388.82443,214.99109,24.550903,47.576874,0.0037846894 1599,612.0142,182.02322,27.132446,117.28705,0.0021846038 1599,121.86372,191.47151,43.352127,109.576004,0.0012076698 1599,442.59116,187.63475,56.595642,98.322556,0.00054740824 1599,618.1126,395.4604,21.034058,79.01047,0.00031215983 1599,617.74274,270.81253,21.40393,82.78049,0.00024978543 1599,389.5265,192.34192,45.816345,91.604675,0.00023039599 1599,135.1228,239.56982,22.495697,49.3024,0.00014868064 1599,617.16895,92.20471,21.977722,83.75238,0.000117982905 1599,587.4846,181.06465,51.66205,229.23622,8.261318e-05 1599,1.0126904,103.34121,18.08108,72.7188,7.7421544e-05 1599,612.63025,295.1548,26.516418,144.85605,6.0241364e-05 1599,609.4303,438.83865,29.71637,66.22385,4.701277e-05 1599,614.3387,11.470443,24.807983,79.87093,4.5659774e-05 1599,602.2557,82.72658,36.89099,181.02711,3.5043475e-05 1599,409.52188,131.9018,152.79495,230.61261,1.8811039e-05 1599,64.3947,254.44441,27.394554,57.19496,1.30863655e-05 1599,1.1099032,262.08856,18.19753,126.99524,1.136947e-05 1599,0.75261194,172.51251,13.769628,48.737564,1.0731545e-05 1599,4.4470572,143.20885,56.729527,215.6285,1.0058115e-05 1599,0.43144208,357.08694,18.489769,74.36615,9.833442e-06 1599,571.98486,361.97818,67.161804,129.05017,9.472181e-06 1599,1.425039,98.07032,28.541712,157.69623,8.507344e-06 1599,3.8244956,283.67108,56.06885,187.81534,7.1271174e-06 1599,0.7171672,405.72974,18.146889,72.16992,6.952822e-06 1599,0.75158286,199.97752,13.844797,51.94162,3.7577695e-06 1599,1.0490031,183.0057,19.137358,138.46054,2.1786539e-06 1599,1.4623259,23.917006,28.14744,132.87955,6.32195e-07 1599,3.055031,430.92572,53.410023,68.89975,3.297536e-07 1600,535.46136,208.81506,39.44159,82.543976,99.77751 1600,447.8372,198.86502,24.302002,48.223557,0.13922074 1600,410.8922,214.0529,32.135406,64.75267,0.07059354 1600,396.4222,219.04811,23.13919,47.027206,0.051488575 1600,420.77182,193.48907,50.8685,90.40573,0.03804991 1600,621.8828,182.98384,17.263855,50.802017,0.0048298873 1600,611.4516,167.96606,27.695068,123.88638,0.0006849495 1600,622.0363,232.88487,17.110352,54.951584,0.00044487388 1600,617.2978,74.4479,21.848877,79.748375,0.00036796977 1600,1.1886873,215.86548,17.765839,72.17337,0.00033339576 1600,511.25125,167.74858,91.32901,171.4843,0.00012596458 1600,612.6878,375.2107,26.458862,122.3985,0.00011855781 1600,570.2873,115.26469,68.859375,229.30399,0.000104074585 1600,389.58252,119.3963,149.10059,222.92892,6.134972e-05 1600,612.55634,285.32758,26.590332,139.98999,4.956823e-05 1600,0.6222461,237.55553,19.841997,138.12822,2.0943806e-05 1600,0.90592366,94.60697,19.844265,143.39685,1.8938592e-05 1600,3.194629,129.25352,59.07255,212.67589,1.14819195e-05 1600,601.2164,45.58248,37.930298,209.64764,1.1452818e-05 1600,0.743938,335.24576,18.981855,132.67346,1.11702e-05 1600,0.780271,421.12888,16.630127,80.66327,9.878861e-06 1600,595.67487,5.3893003,43.4718,79.01623,4.1354865e-06 1600,3.1170802,334.92563,57.894398,149.55219,2.273428e-06 1600,2.5290463,15.66569,57.39172,119.26174,2.9811446e-07 1600,1.3475082,7.386356,29.15416,56.13966,2.5850424e-08 1601,468.7123,208.33473,24.78125,47.31215,97.47307 1601,416.9643,192.82188,28.44925,55.056763,4.1158714 1601,483.27048,215.83214,26.66391,51.50322,0.13059145 1601,464.3295,192.06418,41.42459,104.69852,0.07645826 1601,565.9429,193.07365,37.4057,74.94176,0.015111958 1601,620.4615,161.46474,18.68518,60.12491,0.005323688 1601,0.429869,172.08488,14.210418,51.439133,0.0023817676 1601,616.93805,206.68878,22.208618,83.51889,0.0014010683 1601,610.41077,104.16597,28.7359,145.37961,0.0013280958 1601,586.83875,132.84402,51.494446,213.43878,0.0012714124 1601,0.9374837,124.30376,20.18412,135.04897,0.0009384491 1601,617.5929,309.11905,21.553772,85.049255,0.00050467445 1601,601.2951,237.56993,37.851562,193.4019,0.00039582487 1601,0.7659172,216.73677,18.303371,73.39455,0.00019458222 1601,423.38226,123.57373,150.80682,228.02597,0.00013534211 1601,396.15906,160.94235,81.41138,142.63992,0.00010999756 1601,616.862,65.95826,22.284668,76.29577,9.4821386e-05 1601,1.0125179,171.82982,31.589708,172.77187,8.805246e-05 1601,612.6763,335.66098,26.470398,153.9307,8.49698e-05 1601,472.1353,100.46278,30.241669,61.019333,5.3449894e-05 1601,609.83405,440.4699,29.312622,64.008484,1.9843157e-05 1601,459.27225,67.518936,60.576202,186.25095,1.5026361e-05 1601,0.34712648,264.27408,18.665636,78.23328,1.4885286e-05 1601,2.4883628,53.50013,58.656387,224.78879,1.4447692e-05 1601,0.66086674,318.15848,19.178154,132.51779,8.047129e-06 1601,584.25507,7.070742,54.8916,116.87265,6.691107e-06 1601,0.7758952,421.80106,16.443172,80.88449,2.8508105e-06 1601,3.0588005,230.16933,57.09507,236.46455,2.5857605e-06 1601,1.1359904,46.151226,20.801552,142.87166,1.7464455e-06 1601,2.7787404,393.561,56.798923,100.57089,5.636689e-07 1601,1.6932032,7.7607684,37.789646,88.015656,1.1847977e-07 1601,311.3553,2.9414845,46.646667,49.28492,2.1673738e-08 1601,558.1842,0.0,46.950012,50.18511,3.6793455e-12 1602,542.48535,206.81932,26.810242,59.76329,1.2899691 1602,432.17477,201.04013,27.614105,55.395325,1.0105015 1602,596.5117,181.27596,39.026306,74.41707,0.59715205 1602,382.47757,181.84048,31.417114,71.231445,0.15501463 1602,619.4604,207.11984,19.68628,59.874542,0.008241759 1602,583.2225,145.25317,54.78662,206.51474,0.0044595976 1602,610.46625,261.67978,28.68042,146.75485,0.0007478016 1602,621.0564,134.1875,18.090271,55.39238,0.0006061045 1602,1.0930403,282.32596,19.37441,139.37708,0.0001318599 1602,1.5205493,206.25389,21.057573,116.88533,0.00012606505 1602,1.0695313,168.90477,18.248537,75.79675,9.6416064e-05 1602,587.05066,321.91302,52.09601,159.59756,8.430968e-05 1602,2.8924496,247.08548,55.29576,212.58948,6.529828e-05 1602,609.7712,49.888504,29.375488,166.76334,6.45342e-05 1602,66.28094,149.33745,108.592186,204.98592,9.282243e-06 1602,0.6363721,375.46838,19.339977,120.96063,8.895849e-06 1602,0.9647241,63.98126,18.718136,148.63005,8.162262e-06 1602,423.98502,163.50505,97.44638,194.42891,5.25625e-06 1602,593.6306,2.664782,45.516052,78.49385,3.972464e-06 1602,2.7651954,390.65286,57.268257,102.94406,8.886161e-07 1602,2.4007356,27.18241,61.12832,305.70975,4.3901932e-07 1602,1.3660499,9.576238,36.444595,76.454926,1.974389e-07 1603,506.42685,215.5331,25.512299,50.94423,98.74716 1603,26.713526,223.58434,36.171234,71.998276,0.093519606 1603,610.7684,213.45903,24.721924,48.06682,0.007844447 1603,608.9319,106.550285,30.180481,146.96716,0.0026765042 1603,107.29854,217.02121,37.792114,90.18045,0.0023154465 1603,621.7602,89.68523,17.386475,48.42215,0.0022551294 1603,523.3249,216.78665,21.760742,46.338593,0.0017257589 1603,603.95416,198.03094,34.71704,134.9747,0.0016570584 1603,621.62115,291.9421,17.525513,50.465973,0.0010468765 1603,621.75964,145.59363,17.387024,53.069733,0.0006953922 1603,494.71982,186.02284,57.587128,104.57353,0.0003251488 1603,1.048396,231.31519,17.588512,72.01816,0.00021240082 1603,612.09576,298.24384,27.050903,149.83035,0.0001927096 1603,448.04492,48.14162,36.60083,72.92401,0.00013766787 1603,117.022934,251.60004,20.516876,47.63141,8.912592e-05 1603,3.7005436,135.91655,59.71947,214.04982,6.328648e-05 1603,0.82192224,90.8434,18.608088,76.35457,3.6366855e-05 1603,613.6466,411.3536,25.500061,93.95532,3.4184883e-05 1603,0.6884286,271.3921,19.5662,106.92636,2.8359136e-05 1603,571.7987,354.99365,67.34796,129.50531,2.379812e-05 1603,462.55792,140.09758,137.33667,224.71034,1.9379573e-05 1603,607.7755,2.10472,31.371155,143.88239,1.3170941e-05 1603,0.643033,333.7748,19.313515,134.06592,1.0493272e-05 1603,3.45237,286.19525,56.973965,191.63486,6.5664713e-06 1603,1.0513184,183.05824,18.597527,81.665665,6.339679e-06 1603,554.052,51.81316,80.91986,209.93697,4.9954997e-06 1603,0.9969556,443.8173,21.523302,59.184296,3.1780535e-06 1603,1.1299398,85.78937,29.358635,171.53366,3.0957772e-06 1603,448.4832,41.142982,81.15665,221.43927,4.0045353e-07 1603,1.2071567,23.609896,28.550655,120.163376,3.9239058e-07 1603,1.4054672,7.4977,28.785183,55.241444,7.311376e-09 1603,388.14352,2.4680698,43.864624,49.48655,4.827071e-09 1604,417.60657,41.09326,21.624054,48.92311,0.094916865 1604,489.09454,132.124,39.06543,149.3005,0.04992523 1604,394.39517,183.2057,26.244904,62.985245,0.04035889 1604,479.1451,231.1536,32.23239,66.86926,0.020223413 1604,405.86566,184.55568,33.909546,73.832565,0.017346904 1604,426.42358,30.773647,27.692719,69.26816,0.002103535 1604,77.20393,204.22356,33.814125,54.86238,0.0015882032 1604,27.326792,200.96161,43.93132,64.78375,0.0011767909 1604,610.9584,152.90663,28.188293,129.34047,0.00079340645 1604,485.3647,180.70023,26.943237,63.69423,0.00071403745 1604,620.07104,129.28273,19.075623,57.06183,0.0006958632 1604,621.73706,53.546272,17.409607,50.839684,0.00046820383 1604,485.7667,127.00519,29.143646,73.993774,0.0004603528 1604,617.1752,234.50357,21.971497,80.63248,0.00037748815 1604,453.80106,77.56777,108.60019,232.48328,0.00032824447 1604,0.43444744,224.8125,18.154613,76.9863,0.00019857916 1604,364.32397,79.46702,142.8005,256.19962,0.00015045103 1604,611.6806,313.69177,27.466064,140.61148,0.00013841338 1604,1.0490763,161.75726,19.530226,101.669495,0.000110393856 1604,14.09793,159.52823,83.24617,167.08932,3.8208942e-05 1604,608.93066,438.11932,30.216003,67.198395,3.717052e-05 1604,601.1771,198.30511,37.83081,187.78271,3.0235276e-05 1604,609.7571,32.222893,29.389587,158.32785,2.9804358e-05 1604,572.4161,353.96143,66.73059,135.13974,2.9115e-05 1604,585.14923,53.474,53.997437,249.23743,2.2119842e-05 1604,0.70680827,379.4839,18.993912,119.08853,2.0069405e-05 1604,1.5966382,190.01863,32.21063,160.55254,1.8191677e-05 1604,442.2956,28.107832,23.404572,58.338524,1.8167406e-05 1604,597.0947,5.593138,42.05194,81.10474,1.8142024e-05 1604,1.7397063,74.42918,28.562626,162.94135,1.325868e-05 1604,0.52462894,260.35547,19.272709,141.99554,9.712023e-06 1604,3.2255387,229.22433,56.530926,237.88516,7.508922e-06 1604,2.5340333,395.26453,56.960194,99.66882,2.8351017e-06 1604,0.93918294,19.374636,17.3768,133.26651,5.4747204e-07 1604,1.1392384,5.6938415,30.324978,62.406433,1.576132e-08 1604,360.82913,0.7195345,45.644867,52.34329,4.932271e-11 1604,386.9361,1.6261573,43.7778,53.411064,5.599876e-12 1605,441.83096,194.7566,30.94394,62.359085,0.2565236 1605,30.657433,212.1499,25.551327,46.59131,0.17226927 1605,546.05005,90.57805,29.578857,68.23076,0.043665394 1605,395.10693,205.84842,23.564209,45.300415,0.019431356 1605,376.31927,183.72946,31.40805,64.01091,0.012485322 1605,619.83636,147.71819,19.310303,60.972702,0.0052132914 1605,400.90234,191.38394,39.820007,72.746735,0.00457808 1605,529.27954,194.11719,26.715637,55.166992,0.0040976987 1605,610.765,155.23657,28.381653,134.34915,0.0021877664 1605,8.19955,203.92133,32.143764,61.84955,0.0020236864 1605,529.88586,67.235886,44.262512,149.08191,0.0018654966 1605,213.53589,212.48369,24.970856,49.46312,0.0012074902 1605,620.7378,46.177776,18.408875,50.72057,0.0011502351 1605,1.0034945,210.40712,13.6187525,52.762894,0.00028596818 1605,621.53827,417.723,17.608398,54.42685,0.00018395182 1605,1.3342074,124.78089,19.415714,146.77298,0.00016513636 1605,610.1725,43.80815,28.974182,171.64363,0.00013363593 1605,611.3148,333.25272,27.831848,141.64407,0.00012888413 1605,588.80817,165.74722,50.3385,258.0307,0.00011900639 1605,3.016237,147.5092,57.454742,203.78297,9.8624594e-05 1605,0.8979541,85.514885,18.726383,76.70942,7.739747e-05 1605,387.7654,156.56157,84.17474,149.03725,7.136939e-05 1605,0.53434736,224.07126,20.176142,144.94339,4.3494303e-05 1605,585.97437,18.26192,52.383667,95.9704,3.974966e-05 1605,0.8107772,341.1645,19.541927,130.47943,5.931001e-06 1605,1.1158944,442.60272,21.044947,61.397278,3.399177e-06 1605,3.0732293,279.18588,57.230213,197.1474,9.707389e-07 1605,1.5148683,14.288399,58.28458,124.71038,2.8744782e-07 1605,387.94946,0.94438803,48.915833,57.27752,2.5192298e-07 1605,1.1516179,6.474193,30.172523,58.236866,1.9115557e-08 1606,453.0249,206.29941,34.94751,66.222565,0.025572002 1606,621.13007,157.89305,18.016602,49.470657,0.019479569 1606,120.39349,209.56233,36.07074,65.01158,0.016763005 1606,610.7134,169.28426,28.433289,111.72478,0.0042688968 1606,427.15875,194.65633,42.17679,71.09624,0.0020145883 1606,0.8867167,160.45808,12.970005,52.040085,0.0013454511 1606,625.1286,333.01266,14.018066,45.25464,0.0009782464 1606,1.0606723,212.73254,17.993084,83.91196,0.0004412721 1606,588.2095,175.94896,50.937195,252.39189,0.000413541 1606,615.87665,325.27625,23.27002,95.105835,0.00036033196 1606,415.41602,147.24063,82.29474,158.70505,0.00031452178 1606,621.20996,80.74941,17.936707,56.13462,0.00020839814 1606,1.2423478,119.89005,18.809433,140.17886,0.00017183552 1606,1.8339844,188.71762,32.5051,173.91623,0.000109221095 1606,611.98804,75.8144,27.15863,141.35687,0.00010173741 1606,0.9147172,299.69614,13.953859,50.57483,7.297008e-05 1606,605.28925,369.41397,33.85742,125.776306,5.5894987e-05 1606,5.300925,146.92496,76.90988,262.97116,5.0120492e-05 1606,444.5972,132.56325,36.553802,82.35953,3.707426e-05 1606,0.9869442,279.1772,19.66874,137.60529,2.0901822e-05 1606,0.78253907,389.7741,18.489597,109.46594,7.9486e-06 1606,595.97876,2.721084,43.167908,84.90671,7.0344036e-06 1606,3.1348715,294.7084,56.584686,184.43463,5.1687516e-06 1606,2.2300425,431.8345,45.852753,68.9642,8.9649996e-07 1606,1.6188184,10.4520645,59.6382,123.06214,5.748674e-07 1606,290.76514,0.0,90.91962,219.61275,6.673436e-08 1606,0.9542798,7.8174353,9.732724,86.38767,5.524301e-08 1606,1.8445802,4.819541,33.18755,67.998726,7.45487e-09 1607,487.3648,171.1399,34.321472,67.501526,1.8939289 1607,475.79965,189.01695,29.659851,61.38826,0.11669175 1607,478.67984,129.93396,60.893402,138.32028,0.025711156 1607,318.15396,210.46332,25.742218,46.95941,0.0069482666 1607,492.82147,204.95395,22.668274,49.730194,0.003752474 1607,384.51056,193.23065,42.195923,72.400116,0.001341968 1607,1.2605371,189.45581,18.907108,82.47534,0.0009781206 1607,498.14783,155.1552,22.702515,46.737717,0.00085815135 1607,621.08405,132.7981,18.062622,60.913803,0.000814808 1607,618.29535,211.36029,20.851318,84.52411,0.0006063618 1607,611.1498,84.751526,27.996887,150.53348,0.0004429865 1607,1.505887,112.49005,32.998493,188.09998,0.0002731845 1607,610.29913,18.85754,28.847534,111.86287,0.00021292183 1607,611.9063,320.92062,27.240356,140.14703,0.00012823897 1607,426.30017,78.06854,151.41663,263.67725,0.00012725702 1607,370.1122,136.97047,83.77692,170.36266,8.067781e-05 1607,0.9685889,56.040367,19.257893,82.67631,6.792056e-05 1607,602.68365,179.79219,36.463013,186.68303,4.722518e-05 1607,609.05145,437.45825,30.095215,68.392395,2.8763341e-05 1607,3.1285923,171.52011,56.782085,203.61945,2.0593476e-05 1607,0.568571,243.68532,19.356447,140.19109,1.7180522e-05 1607,585.7692,385.7465,53.37744,108.44461,1.2195113e-05 1607,2.0901644,25.340508,61.06869,228.90915,8.180201e-06 1607,0.8048373,367.5985,19.074938,127.51599,6.075566e-06 1607,2.2818701,431.2776,46.44868,69.645294,9.918714e-07 1607,2.965109,336.59375,58.092136,148.36407,7.967494e-07 1607,1.3540316,7.6141734,36.681583,86.23026,2.2381037e-07 1607,333.9097,0.07847656,45.887146,50.88771,7.809682e-10 1607,511.90063,3.7786248,43.999878,53.16709,6.545202e-10 1608,526.1107,206.67122,21.516602,50.92192,97.823265 1608,401.70367,210.2732,24.34674,47.650238,23.324902 1608,511.1983,210.44913,18.641174,45.446106,15.2696905 1608,317.76007,203.90358,26.868805,48.72377,12.801656 1608,15.489522,220.4998,34.67969,56.975998,0.4970389 1608,1.8566797,218.11447,21.219446,61.922424,0.02257887 1608,620.73193,411.11545,18.414734,60.330963,0.017562997 1608,503.86502,175.7229,57.451813,103.11597,0.0052911746 1608,391.7031,189.64352,43.819763,94.74191,0.0041859974 1608,611.65436,171.42696,27.49231,111.24376,0.0032268064 1608,2.1527393,143.47018,35.800972,178.09,0.0018753642 1608,609.74585,438.39938,29.400818,66.63037,0.00081373483 1608,611.8998,329.93582,27.246887,153.06128,0.0005051059 1608,618.03094,248.30298,21.115723,82.2276,0.00033121603 1608,610.2084,70.49722,28.938293,149.40633,0.0003197448 1608,74.66509,170.043,38.178284,77.12396,0.00025800022 1608,0.616617,251.86243,18.72907,87.803375,0.00015917809 1608,586.1905,132.05261,52.956177,201.5957,9.448352e-05 1608,584.45276,22.070473,53.875244,92.81602,9.0283625e-05 1608,1.5528492,129.51302,19.654648,87.065094,5.9250313e-05 1608,374.5653,155.89523,95.23193,191.57886,2.9984994e-05 1608,604.42914,224.38307,34.71753,172.34346,1.9017465e-05 1608,468.98053,118.315834,138.21423,224.54599,1.5455093e-05 1608,2.9354868,224.31323,56.75252,246.20752,1.3636001e-05 1608,601.2213,12.338145,37.145935,52.115986,8.91494e-06 1608,96.45872,143.24847,85.49996,159.14749,8.490227e-06 1608,290.621,137.2269,97.82977,211.32755,5.9033277e-06 1608,0.57449055,325.52893,20.66095,108.64688,5.823545e-06 1608,1.195704,443.5722,21.516155,61.144226,3.3549265e-06 1608,3.1136265,395.68677,57.147713,102.37784,7.6051447e-07 1608,358.6548,36.07348,39.540405,86.061554,4.3310746e-07 1608,0.8891927,18.40974,17.945818,139.67262,1.7801091e-07 1608,1.8395313,13.409193,57.392178,131.58333,9.6127906e-08 1608,406.2053,27.722761,27.605072,69.84957,9.179554e-08 1608,461.14453,14.949552,27.771942,72.96167,1.0193636e-09 1609,613.9624,213.76463,23.198853,67.27101,97.361755 1609,322.96222,212.36526,23.532227,50.15091,5.449427 1609,602.78937,143.37039,36.3573,164.76453,0.06382855 1609,439.91434,208.12813,32.91501,63.155136,0.053702474 1609,621.6425,94.39602,17.50415,53.158455,0.0061214683 1609,618.4605,140.10141,20.686157,66.586075,0.0017745977 1609,619.985,40.210033,19.161682,61.68942,0.00130932 1609,55.072243,190.07289,52.188515,88.13646,0.0011649781 1609,13.884171,125.45089,78.34972,179.49252,0.00023841449 1609,612.7388,385.68457,26.407898,112.84915,0.00017925515 1609,582.0042,0.0,57.142456,247.49626,0.00017314838 1609,609.7739,27.067768,29.372742,141.70242,0.00016617507 1609,402.8931,153.00356,85.159454,164.53749,0.00012467362 1609,558.52203,105.57484,80.62463,267.51434,9.9909994e-05 1609,0.62964356,240.96999,18.411877,76.9716,9.7730626e-05 1609,1.7475692,153.06505,18.75232,133.64095,6.4361004e-05 1609,601.7408,254.95013,37.405884,215.16031,3.7632213e-05 1609,607.85565,7.717066,31.291016,56.093147,2.772482e-05 1609,1.8124561,62.20735,29.392754,169.51265,2.1246819e-05 1609,1.1310465,258.35526,32.756012,183.65454,1.5708538e-05 1609,0.83132815,382.16498,19.088373,115.75763,1.4262467e-05 1609,282.18964,125.4549,134.22589,221.0748,4.429052e-06 1609,2.5086882,432.43356,46.62799,68.172485,2.1633537e-06 1609,5.2178583,360.51138,79.024055,128.89478,1.5979278e-06 1609,1.5481576,7.115547,35.702072,88.477844,3.0341017e-08 1609,545.1563,3.2581658,45.231384,54.32014,2.4838342e-09 1609,516.2124,0.0,45.334717,51.148655,1.276818e-10 1610,339.00198,204.62624,24.161346,51.54805,0.4599567 1610,1.8676237,188.162,22.916128,54.421417,0.036614787 1610,620.456,180.4912,18.690674,50.5204,0.008896836 1610,609.4191,193.85524,29.72754,131.91942,0.003815987 1610,147.2928,173.70955,40.81749,101.71202,0.0020928956 1610,45.188255,192.7554,24.27871,49.403046,0.0018574407 1610,581.8671,99.80551,56.389038,243.00177,0.0017928826 1610,442.8859,177.98247,36.121735,66.57231,0.0017269262 1610,88.6258,196.6045,35.36403,68.85747,0.0015192317 1610,621.5415,88.543304,17.605164,50.964905,0.0009380321 1610,331.84818,179.41278,45.38974,98.007416,0.0007434967 1610,1.9013892,113.659676,29.583637,153.63855,0.00064637954 1610,457.05283,211.83423,32.429047,63.18692,0.00054418726 1610,616.71643,298.98718,22.430237,81.76245,0.00042109296 1610,609.9507,69.89629,29.195984,151.39633,0.0001948853 1610,1.4342864,81.977585,18.79365,76.61778,0.00018643193 1610,0.42142743,226.03844,14.282951,57.93849,0.00018399673 1610,585.8037,10.140645,53.23114,114.64566,0.00017462044 1610,620.7753,37.178284,18.371338,56.87484,0.00010406188 1610,18.527409,98.945526,77.71097,194.74121,7.947294e-05 1610,477.96924,119.53506,84.84375,180.08636,7.350285e-05 1610,0.4745394,217.43774,20.246437,151.29953,6.559561e-05 1610,612.8624,372.031,26.28424,128.42319,3.6668516e-05 1610,3.2205584,155.96284,55.885197,207.02715,2.0178528e-05 1610,313.16418,137.85487,94.862946,208.42458,8.450176e-06 1610,0.77850914,390.3831,18.773062,108.72272,4.8446495e-06 1610,0.7529688,313.94894,27.929832,140.88382,3.7163425e-06 1610,1.8701563,19.359278,58.064808,116.03501,1.0107092e-06 1610,2.9220362,393.04443,57.162952,101.47876,6.060332e-07 1610,429.60962,12.682937,45.563995,114.37022,5.3017658e-08 1610,360.6908,3.03674,44.681885,51.032818,1.9813745e-08 1610,386.58264,1.7453402,47.840454,49.474026,1.2061872e-08 1610,1.4393051,5.301758,29.867252,61.03086,1.1305968e-09 1611,345.46677,199.20508,30.094635,66.273224,99.67514 1611,482.73474,205.49829,24.497925,48.743256,99.632 1611,120.89539,200.0243,24.487526,45.80934,19.799482 1611,549.82874,185.32669,28.05896,47.82727,7.8656206 1611,567.2125,183.93759,21.952087,50.930435,4.483596 1611,35.424038,203.71266,25.173393,48.120865,0.7929103 1611,607.20325,186.59387,31.637634,131.51843,0.11180265 1611,565.5603,105.93257,58.670166,135.60748,0.027276559 1611,365.908,207.99997,23.167816,47.48311,0.01658693 1611,588.4435,127.6353,29.392822,71.53471,0.014998506 1611,621.54767,280.5614,17.598999,53.832336,0.009816977 1611,619.11456,177.19423,20.032104,54.652603,0.008126691 1611,15.128047,196.8236,34.81623,73.9594,0.0050904243 1611,619.86975,135.19038,19.276917,56.5513,0.003881008 1611,623.5464,223.40428,15.600281,47.188614,0.002361343 1611,610.0607,89.37462,29.085938,139.89336,0.0010316415 1611,2.6441293,109.708,33.699436,180.60864,0.0009896086 1611,466.40356,173.21071,56.581482,105.93193,0.00036310652 1611,611.5814,264.94937,27.565247,145.89444,0.00032554846 1611,0.95682865,207.37326,19.360323,141.65057,0.00019476247 1611,606.8801,8.827611,32.26654,143.48239,0.00012518615 1611,326.5924,165.25655,70.93182,153.5532,8.9192916e-05 1611,611.7628,349.7026,27.38385,143.79294,5.225811e-05 1611,433.65216,111.82134,154.1997,238.19537,2.8977107e-05 1611,3.7008758,174.1257,57.908176,236.2532,2.0521094e-05 1611,98.61033,138.70131,91.69691,209.55965,1.696573e-05 1611,23.042263,132.02785,95.90607,214.89748,1.3591729e-05 1611,0.51520836,307.2506,19.045683,135.78503,7.783732e-06 1611,0.89702153,60.891533,20.513731,143.60138,6.4031383e-06 1611,0.9487411,442.75763,21.707603,60.98456,2.7503022e-06 1611,3.046473,336.2079,57.53096,147.51291,6.563039e-07 1611,1.4204314,9.317907,35.976288,82.021194,8.558289e-09 1611,419.3432,0.39790365,50.407013,50.96908,6.382486e-09 1612,357.66104,203.69235,34.79773,72.28635,99.89762 1612,517.16327,201.61789,25.627686,54.37938,99.57569 1612,19.284512,202.19899,30.396503,64.092514,1.3967631 1612,155.58762,193.03453,24.717056,48.935684,0.094399296 1612,89.42859,195.62195,30.147263,58.06848,0.06362006 1612,378.71854,210.2198,23.122131,53.655624,0.0151420925 1612,620.80133,241.85495,18.345337,63.35269,0.0036274046 1612,611.0493,215.99796,28.097351,147.08777,0.0018373112 1612,621.4484,174.99245,17.698242,54.763412,0.0011539904 1612,502.75256,176.6454,56.245117,104.307724,0.0009439819 1612,611.0105,103.71926,28.13617,147.99985,0.00041382233 1612,4.462583,145.13768,56.561455,207.96513,0.00037424738 1612,1.3181983,206.74886,17.684086,78.31163,0.00035596287 1612,338.5418,173.41893,71.28494,138.19054,0.00026919832 1612,617.19684,69.90039,21.94983,81.865555,0.00025102697 1612,80.90518,169.57785,46.59809,128.06366,0.00020549251 1612,612.5656,323.41672,26.581055,151.05215,0.00018085931 1612,0.9084945,127.08063,18.759672,74.96863,0.00012554148 1612,0.8895679,70.69323,19.77307,85.95255,0.00010928038 1612,1.4204248,103.66332,29.306698,168.52438,8.2216655e-05 1612,609.61176,438.4226,29.534912,66.89166,6.711609e-05 1612,615.5113,20.293402,23.635376,79.45788,6.3222054e-05 1612,583.5081,47.080498,55.63855,279.32477,5.3214917e-05 1612,0.7940951,252.88516,20.228191,104.17752,4.5368608e-05 1612,379.62592,151.89961,77.17618,156.00362,4.460564e-05 1612,469.13937,127.28462,145.24673,238.75868,2.6140762e-05 1612,0.55950767,301.74585,19.198029,141.50397,5.5880287e-06 1612,0.94229007,389.18195,18.773413,109.4227,4.866237e-06 1612,1.5445085,18.338959,58.53634,118.53975,3.1658506e-06 1612,3.4177003,297.27658,57.049404,183.11374,2.701823e-06 1612,2.4817643,433.65244,45.70025,67.0553,1.038737e-06 1612,0.6016756,5.538962,9.550496,93.481415,8.250612e-08 1612,0.9893181,5.2030272,29.804106,64.931465,1.5181472e-08 1613,371.9858,206.62466,38.925934,84.98099,99.92586 1613,550.10547,204.18513,30.532288,68.50438,99.8738 1613,47.598095,196.65437,30.343983,55.974976,96.73763 1613,621.18176,209.9878,17.964905,58.7547,0.022962008 1613,400.1585,205.64537,30.161377,72.20012,0.017897181 1613,4.838464,211.89449,23.315926,58.56166,0.013061089 1613,27.17457,165.32716,67.04391,111.96565,0.0070232237 1613,491.00565,194.25078,23.20163,49.377502,0.0034066667 1613,0.7582072,225.0884,14.323974,58.356155,0.0020125336 1613,235.91185,182.40407,24.409927,46.49489,0.0014322951 1613,610.70605,136.56485,28.440613,141.03778,0.0011217154 1613,529.469,175.14896,72.64899,147.91324,0.00052686536 1613,347.75742,171.11456,94.178314,163.37198,0.00046233353 1613,1.7829866,139.3447,35.23146,173.48798,0.00041614508 1613,617.07465,237.35645,22.072021,89.392944,0.00039730666 1613,0.71995527,198.46394,12.203747,45.342026,0.0003186647 1613,398.76392,156.6404,74.41095,152.83498,0.0003005404 1613,600.72626,192.0622,38.42041,177.84882,0.00018854409 1613,612.3985,321.32434,26.748169,138.40973,0.00016334947 1613,616.5773,65.73192,22.569397,78.83331,0.00013457297 1613,594.6436,6.7893524,44.50305,84.28549,0.00012084289 1613,9.35276,113.61831,131.41058,253.3179,7.638904e-05 1613,608.93286,440.47964,30.213806,64.79657,6.87686e-05 1613,1.0838786,82.37249,19.927689,166.36633,4.400381e-05 1613,0.57699955,223.63121,20.377249,144.77437,3.577522e-05 1613,570.9396,358.80792,68.20709,133.47543,3.090244e-05 1613,93.04012,236.29607,27.612839,61.040543,2.9481695e-05 1613,3.1519954,187.36415,58.154358,235.06676,1.7185932e-05 1613,583.36255,0.0,55.78412,257.40787,1.6866677e-05 1613,0.7317985,352.44604,20.654453,103.73297,7.118952e-06 1613,1.0439119,441.95667,21.327377,61.773712,4.4465733e-06 1613,1.8148015,10.883952,63.579395,218.87411,1.6199308e-06 1613,3.0595882,393.92096,57.25767,100.606445,6.720176e-07 1613,1.2228329,22.482973,19.74567,113.05585,3.620778e-07 1613,1.2390105,7.8467484,30.331854,60.10726,7.9028135e-09 1613,320.09238,1.1816895,42.161865,46.09477,7.9841855e-10 1614,416.1343,209.26404,44.45929,100.864044,99.97696 1614,614.5173,202.2555,24.61377,75.546936,98.07232 1614,16.399727,210.23328,35.34943,54.479584,78.74912 1614,392.90463,207.77023,24.604736,59.517456,0.23612484 1614,169.58649,199.53506,23.609436,47.383667,0.07973018 1614,423.94046,214.74355,22.832245,47.37935,0.018005097 1614,479.6785,178.23581,41.481354,122.532166,0.014203637 1614,1.6561743,206.06792,18.321577,77.57793,0.011756487 1614,506.24033,184.42352,35.35617,65.230835,0.0064277234 1614,157.62003,196.49403,22.64598,46.114883,0.0049220026 1614,445.09,214.53044,29.5271,82.63054,0.0027793497 1614,4.140996,143.06183,55.912582,194.9422,0.0027749161 1614,605.09845,186.88873,34.048218,203.94196,0.0024915 1614,426.0787,103.1194,73.72739,195.41078,0.0017221059 1614,610.28937,1.4625684,28.8573,88.882324,0.000579791 1614,0.89577967,103.071594,21.106012,157.7167,0.00030097523 1614,609.40204,442.97903,29.744629,59.641174,0.00025974467 1614,611.7003,324.45325,27.44635,156.07217,0.00015043754 1614,442.7802,99.7193,39.119537,99.78105,0.000111747875 1614,1.0661589,386.58658,18.934063,109.83032,7.472175e-05 1614,601.34094,36.897633,37.805725,250.5652,3.62029e-05 1614,2.357632,429.24875,47.8204,71.023926,2.1005813e-05 1614,2.4862077,268.32117,55.714897,211.4451,1.9212519e-05 1614,1.6969751,213.01204,29.589724,183.28676,1.7698661e-05 1614,1.5000163,309.0495,20.930405,137.06213,1.5355776e-05 1614,0.79004234,21.248743,19.720062,139.2225,6.4941037e-07 1614,1.6952035,9.960065,35.962532,78.05076,4.60984e-08 1615,496.02893,218.93909,56.364197,149.01025,99.98523 1615,539.34375,187.57971,31.666138,61.982407,0.017848322 1615,498.03677,188.80283,36.668365,80.27609,0.005628922 1615,518.53876,286.18683,28.532532,65.8396,0.0039507113 1615,454.70615,148.63448,133.00778,246.49559,0.0010803877 1615,0.55944014,176.41058,18.798027,81.38461,0.0010525587 1615,0.4353182,132.04164,18.928461,80.01445,0.0009873067 1615,610.4348,170.3112,28.711853,126.76936,0.00090114254 1615,130.61333,182.80215,32.986877,67.98384,0.0006192423 1615,621.9592,291.9655,17.187439,51.57312,0.0005942035 1615,512.89374,244.43297,31.493835,68.30177,0.00045743337 1615,1.2104037,87.63098,32.65493,179.79681,0.00020047992 1615,609.3781,442.4197,29.768555,60.773987,0.00014902203 1615,587.1225,205.48506,51.42517,227.11324,0.00014695016 1615,615.99915,56.600742,23.147522,90.81906,0.000103933926 1615,612.1578,317.91113,26.988892,145.1081,8.382656e-05 1615,604.3472,0.0,34.79944,64.87312,4.6745332e-05 1615,0.47006023,215.17422,19.804695,137.58173,4.2520405e-05 1615,3.4472983,150.91885,57.102116,214.99496,1.0096749e-05 1615,1.1648487,441.4633,20.872616,61.128143,7.857089e-06 1615,571.9123,359.0872,67.234375,130.92715,7.122945e-06 1615,0.5681592,295.37955,19.58067,136.53302,6.042444e-06 1615,581.97107,0.0,57.1756,219.91498,2.3618277e-06 1615,0.5347884,21.46733,19.74951,152.49815,1.1980947e-06 1615,3.323628,396.29108,56.95985,96.88327,8.970695e-07 1615,1.3993669,12.042911,36.002,73.38212,4.360756e-08 1615,425.7647,0.0,49.286133,52.91358,4.3399823e-10 1615,490.41412,1.2237663,43.934875,48.346325,3.2944363e-11 1616,83.94713,205.12343,23.521484,50.421112,15.5566 1616,420.12564,202.02805,25.750977,50.242218,1.6766015 1616,98.95628,205.07837,24.457596,50.00351,0.025808781 1616,0.743973,143.5835,18.564465,82.35922,0.0005842542 1616,611.0409,144.86859,28.105774,113.20029,0.00046732233 1616,588.33325,149.41751,49.734863,213.17715,0.0003916195 1616,616.66943,334.0158,22.477234,87.54797,0.00034595962 1616,66.063,164.32286,62.683,114.74748,0.00029884613 1616,616.38446,277.7983,22.762207,93.56134,0.00020300609 1616,0.73276615,204.68028,18.232738,74.261826,0.00012631752 1616,394.02512,145.70204,79.5564,153.52235,0.00012188013 1616,0.71060383,64.04772,18.776701,81.84661,0.00011946282 1616,616.6572,223.05542,22.48944,83.52887,0.00010587454 1616,1.5239096,120.988335,34.585403,179.20776,7.555527e-05 1616,600.1901,289.78253,38.936707,189.55743,5.840887e-05 1616,612.67426,62.231426,26.472412,135.18294,4.665737e-05 1616,616.7603,25.49697,22.386353,72.76953,3.929593e-05 1616,456.0845,112.26357,26.398071,49.746178,3.909058e-05 1616,609.57666,439.82205,29.570007,65.19498,2.2748816e-05 1616,583.0604,16.750994,55.623596,103.2151,1.7026741e-05 1616,0.6784164,269.46036,18.0412,73.92474,1.650871e-05 1616,0.6516276,323.57996,18.95375,134.32855,1.1985739e-05 1616,1.4243083,230.09525,32.204163,174.83069,1.0370073e-05 1616,35.727528,106.249535,141.65488,251.6802,1.0280348e-05 1616,0.8067058,420.69128,14.891255,81.05267,4.7185877e-06 1616,3.3365724,299.62552,56.815395,177.37396,2.4140215e-06 1616,2.3186247,431.2805,46.119648,68.29645,8.3597104e-07 1616,557.0631,3.9036362,46.30847,53.527954,2.1438575e-07 1616,1.4732602,18.099272,58.369335,115.24515,1.490981e-07 1616,0.5375484,9.490899,9.155256,86.14563,4.5506624e-08 1616,529.58606,0.73901695,46.234863,54.76391,1.7006691e-08 1616,1.1223063,7.7632146,29.280266,55.398228,2.5331959e-09 1617,414.06546,201.70752,22.152924,46.5103,1.0882708 1617,436.0453,212.14088,33.925568,69.65715,0.20934041 1617,394.97034,214.38242,23.517548,50.9057,0.09299159 1617,341.1648,204.23692,27.071045,50.440063,0.043183275 1617,420.1791,215.14488,26.766052,51.11519,0.011319788 1617,0.7959497,193.52905,17.292198,80.19513,0.0069191735 1617,455.209,208.0328,24.838562,50.433655,0.0037115566 1617,410.90515,178.28796,47.56247,102.64084,0.0018263649 1617,41.65814,180.25117,33.562153,78.25542,0.0011420645 1617,481.23685,69.12563,28.381805,54.649406,0.00078972714 1617,558.5708,189.08849,24.973877,49.165268,0.00059267425 1617,622.00354,189.15028,17.143127,55.92621,0.00034353594 1617,1.9267384,144.24716,47.359447,176.11905,0.00020654875 1617,612.82654,125.943665,26.32013,131.70456,0.00019533557 1617,0.7857487,123.26759,18.843393,79.685135,0.00018111337 1617,618.01764,248.97209,21.129028,81.71742,0.0001509054 1617,614.8457,48.842674,24.300964,101.37115,8.804767e-05 1617,612.6256,346.29605,26.521057,136.95312,8.74908e-05 1617,390.7722,143.26825,103.76224,202.4169,6.729362e-05 1617,609.2312,441.64954,29.915466,62.938538,5.445167e-05 1617,544.6797,54.45117,26.613892,57.69184,3.6115933e-05 1617,0.5864917,248.79517,18.563211,76.026245,3.4865698e-05 1617,593.7206,0.0,45.426086,89.4782,2.6280793e-05 1617,587.70764,186.21854,51.439026,223.57413,2.6085774e-05 1617,1.1800765,250.97372,32.961655,185.4426,1.9819667e-05 1617,0.78719157,366.67313,18.917646,129.15387,1.133636e-05 1617,586.7494,34.90767,52.33539,247.52278,6.6032717e-06 1617,3.1034474,331.52783,58.04309,150.64633,2.8933853e-06 1617,0.85608727,30.538477,34.671474,207.1426,2.247859e-06 1617,2.9102476,430.45746,53.97545,69.65823,7.3132804e-07 1617,0.56445193,8.770121,9.000175,88.0786,7.066079e-08 1617,1.6934245,8.736758,35.637783,82.281364,4.2456822e-08 1618,165.39809,202.36281,29.265427,56.742447,96.250725 1618,384.22266,76.49233,39.024994,79.58755,0.03852895 1618,7.566686,168.87285,35.833584,79.9682,0.031961285 1618,404.82928,193.85818,40.157654,73.34915,0.02040132 1618,450.27057,224.69914,22.690735,52.494125,0.013705635 1618,526.09686,181.20819,35.863647,73.8409,0.012479193 1618,1.0801668,174.7708,14.470794,61.375275,0.0027643405 1618,1.447767,97.74749,20.507263,149.99911,0.0010140982 1618,612.0486,197.44577,27.098083,128.2496,0.00084824907 1618,622.18195,158.26624,16.964722,50.668427,0.00077388994 1618,591.8437,164.5093,24.170898,48.544342,0.00073797954 1618,613.5166,7.8176956,25.630066,98.27822,0.0003470902 1618,388.82526,149.40878,82.55325,156.38635,0.00030698164 1618,2.83299,124.78252,60.189407,201.90727,0.00023232774 1618,508.93918,144.58086,72.58658,155.93092,0.000138689 1618,1.0494938,67.16828,18.693758,77.98937,0.000117144824 1618,611.6797,113.51977,27.46698,141.93707,0.000110181194 1618,620.51984,85.06114,18.626831,54.858444,0.00010046905 1618,612.7095,359.3848,26.437195,139.86725,6.133048e-05 1618,0.95753825,209.25932,18.351723,79.12181,5.847932e-05 1618,0.72191,366.05548,20.474255,103.654205,5.4225937e-05 1618,148.31535,162.89493,74.025635,148.33298,4.1913838e-05 1618,1.6186296,203.39897,32.834305,189.00938,1.6733504e-05 1618,1.0071745,440.72897,21.505363,62.221924,1.4772351e-05 1618,2.74951,274.36975,57.532795,203.4827,4.746516e-06 1618,585.64795,39.538322,53.21814,262.03662,4.3699774e-06 1618,1.490944,15.291895,59.960575,115.1085,3.5713686e-06 1618,1.1289535,6.453835,29.993631,60.87638,1.4268093e-08 1619,474.70465,199.53986,21.124786,45.93132,92.9886 1619,20.59588,194.83827,49.799988,99.827194,25.88199 1619,88.632645,185.93242,25.437477,48.354767,9.548952 1619,25.419271,201.01126,26.870447,45.149445,0.27043754 1619,142.09239,189.0819,25.29396,45.860245,0.10594043 1619,458.4739,183.78719,43.65387,95.772446,0.030609159 1619,2.6173584,195.25073,34.404964,75.32541,0.009056475 1619,6.499707,166.4245,96.67174,183.04373,0.0020871975 1619,621.80206,284.38324,17.344604,55.640686,0.0019197925 1619,610.6313,197.12401,28.51538,139.18828,0.0010745842 1619,468.77216,39.80788,29.495209,75.5715,0.00070470927 1619,605.06433,0.0,34.082336,122.31782,0.0004372739 1619,1.172312,133.24808,21.726807,119.39688,0.0002593496 1619,445.28464,137.66875,92.37009,198.7643,0.00019883366 1619,611.93695,273.42136,27.209717,143.74146,0.00017661175 1619,1.0065333,226.64493,28.637384,152.71854,7.549059e-05 1619,610.6631,76.82225,28.483582,170.56177,6.700289e-05 1619,609.89825,437.4574,29.248413,66.8349,1.621369e-05 1619,3.3291082,240.72563,58.039043,234.44292,8.138073e-06 1619,585.1669,5.681888,53.979797,312.25916,8.071016e-06 1619,573.21985,353.61496,65.92682,134.1911,5.940013e-06 1619,0.8068726,373.95697,18.613134,121.8454,5.517977e-06 1619,2.1953142,430.14865,46.382187,70.27594,8.0471557e-07 1619,0.63644856,20.186237,18.803337,140.62434,4.5336145e-07 1619,446.8601,2.2449088,48.148438,55.103012,5.8952203e-08 1619,1.3526449,11.416403,35.538174,74.02651,1.6834191e-08 1619,497.23788,1.9264681,43.691742,48.006767,4.281576e-09 1620,560.3752,203.52321,29.449768,65.728806,99.72492 1620,535.07904,206.54552,30.282532,62.1082,99.52195 1620,485.6294,211.9698,22.817383,49.739365,95.75567 1620,539.8316,173.69844,79.269104,180.4695,0.005988833 1620,459.51074,87.78526,27.987701,70.22182,0.005444719 1620,474.91766,88.62442,28.991669,74.63364,0.0033446478 1620,609.5332,315.8616,29.613464,139.14673,0.0032994219 1620,620.5826,236.44707,18.564087,62.161087,0.0014783621 1620,604.99884,78.931564,34.147827,70.89885,0.0012701654 1620,466.36703,157.01303,57.60013,127.756805,0.0011399873 1620,1.2949495,90.41374,29.474968,151.81218,0.0009995946 1620,22.697605,189.5833,26.222046,51.332718,0.0009735939 1620,1.3456519,171.8314,18.30371,76.32988,0.0008759568 1620,584.4772,186.3095,53.414062,220.39537,0.00063916104 1620,610.1498,157.94902,28.996887,143.20036,0.00019312392 1620,0.6551929,214.15456,18.53055,82.35133,0.00017748942 1620,609.4424,443.50565,29.704285,59.00244,0.00014549821 1620,430.36307,119.1805,153.72537,232.01894,0.00014477887 1620,1.4324219,166.70255,33.837265,181.08499,0.0001053709 1620,584.76196,386.32663,54.079224,106.131775,7.903479e-05 1620,608.12006,1.8709506,31.026611,59.376854,4.0789702e-05 1620,0.64199543,262.3089,19.663788,137.66415,3.0786367e-05 1620,0.76174074,337.0308,18.900846,134.75488,1.4567286e-05 1620,0.80245364,420.29608,15.895779,80.163086,8.08092e-06 1620,2.85209,265.26984,57.326473,205.08185,7.295868e-06 1620,597.15924,0.0,41.987427,198.6393,4.30883e-06 1620,0.76894534,22.964708,19.504797,127.63817,4.0992182e-07 1620,1.5514193,17.726465,58.53624,116.985344,1.8241454e-07 1620,0.83559245,7.0578485,19.836971,55.691208,2.3102829e-09 1621,532.7254,217.27095,29.716736,61.12886,99.50949 1621,5.863303,201.82013,24.840103,57.763794,0.45395344 1621,507.93283,57.521915,38.1232,96.14801,0.22730497 1621,78.58037,200.95392,22.557503,46.95656,0.1253983 1621,434.76685,178.37968,40.483795,79.815506,0.06306045 1621,494.3979,70.721306,29.137573,75.31231,0.013064428 1621,2.349774,128.76894,41.6067,144.24327,0.0062144306 1621,608.8033,69.23521,30.343384,141.1539,0.0051853172 1621,477.58252,83.29729,30.57782,71.60379,0.0044505275 1621,1.0719239,175.47299,16.397495,70.422455,0.0032378666 1621,622.1571,228.5409,16.989563,51.683105,0.0018412981 1621,621.3284,179.31581,17.818237,62.615997,0.001713185 1621,612.52704,198.47516,26.619629,137.57266,0.000282112 1621,513.3711,178.96304,72.190735,148.17212,0.00021306078 1621,1.3399643,192.07443,20.851019,142.74387,0.0001826603 1621,613.01544,381.5259,26.131226,118.64801,8.533003e-05 1621,388.92676,134.02324,96.80481,206.79991,5.512412e-05 1621,595.30634,0.06626302,43.840332,100.90621,4.9221573e-05 1621,603.2389,252.9959,35.907776,195.65083,3.939664e-05 1621,0.77731204,421.89685,16.112236,79.550934,3.705217e-05 1621,2.7281528,176.2957,56.402603,221.52705,2.9798337e-05 1621,0.7742017,336.9074,19.445211,134.94974,2.8075132e-05 1621,3.0515203,396.34454,56.712387,96.98932,8.935044e-06 1621,1.0491122,44.641003,19.982115,140.72102,2.5583518e-06 1621,1.4926432,8.554915,37.660496,85.3306,7.18405e-08 1622,442.49585,202.138,22.464539,46.37172,99.58836 1622,605.2709,222.0599,32.23877,87.9144,99.34778 1622,99.31702,197.71762,24.169067,45.9953,6.912367 1622,58.063705,185.71883,46.021713,75.00041,0.0320091 1622,620.12415,46.82239,19.022522,68.653275,0.013819518 1622,527.1346,51.59055,23.144592,57.14928,0.013770505 1622,460.28986,184.08368,39.009308,76.98386,0.0120977275 1622,392.8943,187.41388,37.394623,76.646515,0.011042402 1622,606.9154,43.41827,32.231262,146.44951,0.0055742385 1622,545.1819,44.549828,28.881592,80.6504,0.0025324076 1622,1.867251,142.73672,29.861565,139.92978,0.0017717753 1622,483.10782,75.56375,27.294891,58.660995,0.0005647341 1622,422.65585,135.9885,85.495605,213.7656,0.0002074816 1622,37.65377,141.06033,90.880745,166.5629,0.00016763419 1622,577.2417,159.14113,61.90497,197.97292,0.00015310752 1622,374.73764,154.66458,82.44498,159.98819,0.00010186226 1622,0.71025556,420.31665,16.945581,81.846954,7.88453e-05 1622,558.0476,23.08015,40.859375,106.16568,6.235334e-05 1622,611.2197,265.7485,27.92694,166.19394,5.4844837e-05 1622,609.3792,440.46466,29.767456,64.68176,5.261175e-05 1622,0.9467131,205.04872,19.63832,134.4103,3.7762067e-05 1622,1.5841016,29.407188,61.40822,254.27698,3.1853968e-05 1622,605.86053,1.5192416,33.286133,72.525894,3.0121591e-05 1622,524.51154,0.0,114.21173,220.01997,1.9656769e-05 1622,0.6282406,316.1409,19.323883,138.79587,1.8937002e-05 1622,3.1141179,169.4503,56.83592,227.37837,1.2714006e-05 1622,585.0376,393.991,54.10907,102.602356,1.2381489e-05 1622,521.40796,27.357435,43.14081,113.95712,9.562984e-06 1622,2.5750978,399.9691,56.799164,94.39145,9.53912e-06 1622,0.9873592,48.377182,19.015665,130.52957,1.3175874e-06 1622,1.5509148,8.833385,36.890064,81.45976,1.742152e-08 1623,32.374355,206.66159,23.239857,48.239716,87.33928 1623,52.530426,203.15625,24.420471,47.076965,82.68299 1623,434.61935,213.5099,23.597015,51.620377,9.39111 1623,17.894545,207.31967,25.066206,51.504974,1.8878801 1623,66.95773,203.28723,24.098137,48.266205,0.2922812 1623,551.9602,59.08374,31.147217,64.018776,0.15934563 1623,609.2837,28.72348,28.880737,79.55262,0.0860286 1623,568.93665,48.128532,31.086487,70.61892,0.022014597 1623,17.461176,189.03488,48.699432,98.60925,0.016546698 1623,619.52515,131.53128,19.621521,58.31018,0.010134184 1623,2.193247,167.1718,28.346859,147.61372,0.0028252443 1623,506.47943,184.61563,42.576233,93.63843,0.0022072224 1623,602.9882,51.75069,36.056213,169.02635,0.002201479 1623,423.1887,177.39197,55.547455,108.85492,0.0013837477 1623,589.7619,32.527943,27.14862,72.7556,0.00075792643 1623,5.371543,143.22128,93.468925,219.32352,0.00018825519 1623,1.4335067,70.014656,19.900509,145.13702,6.812465e-05 1623,61.781845,154.88615,85.88945,167.70824,5.6191402e-05 1623,609.9295,444.4176,29.217163,60.700317,5.5907996e-05 1623,0.57937664,244.37292,19.884586,141.80954,5.1268853e-05 1623,491.45502,121.53193,89.344666,222.89334,3.5320518e-05 1623,613.0856,0.0,26.061096,46.891453,3.4897104e-05 1623,612.03186,206.71413,27.114807,136.02501,3.4329314e-05 1623,603.0749,335.70746,36.071777,154.19693,2.5619955e-05 1623,391.6625,127.54447,156.78293,218.50168,9.82006e-06 1623,0.5969133,324.3382,19.59771,136.5564,5.973939e-06 1623,3.1218214,268.61145,57.018543,210.09653,2.267054e-06 1623,1.8532895,421.67624,33.87772,76.871155,1.5291105e-06 1623,1.5790577,8.56251,37.532555,81.74444,4.428946e-08 1623,580.61664,0.0,44.22052,51.92405,1.8168587e-09 1624,78.65706,204.20557,27.35994,51.97516,99.70957 1624,597.5468,201.39648,36.653076,65.55618,99.534645 1624,580.54016,204.09073,23.006775,51.144073,99.07691 1624,507.73,208.24054,20.93814,48.24167,92.58691 1624,19.679966,183.11714,31.684933,71.84802,73.53274 1624,492.92136,165.44598,39.697723,108.94202,2.7194903 1624,6.9159,171.83287,26.40591,79.34865,1.6441805 1624,1.4950985,178.89447,14.685308,71.19824,0.2023968 1624,623.3825,205.76038,15.76416,57.43576,0.14191793 1624,101.5306,205.95604,21.445518,45.557922,0.102510795 1624,3.9617822,142.25008,62.42111,148.79353,0.06019954 1624,588.31793,173.6774,49.371155,171.90417,0.0016076476 1624,60.747757,176.51898,61.569046,104.358826,0.0010978882 1624,13.717506,115.28117,154.21246,254.66942,3.4938294e-05 1624,611.48926,265.12262,27.65741,143.28061,3.3854478e-05 1624,609.9366,439.4496,29.210083,66.1658,2.9261304e-05 1624,0.5901465,212.47762,19.770733,162.22615,2.8985176e-05 1624,602.8458,332.68787,36.300842,157.20877,2.1231748e-05 1624,608.7099,5.883114,30.436768,53.10663,2.0582402e-05 1624,475.48798,155.71313,87.76758,188.0004,1.4717188e-05 1624,610.8465,64.189606,28.30017,155.49832,8.820411e-06 1624,0.75804365,311.9536,19.362886,130.61697,6.540098e-06 1624,0.8066081,12.504297,38.10634,253.09222,2.451373e-06 1624,1.0599471,443.46527,21.930225,60.24463,1.6759818e-06 1624,3.0693865,394.76215,56.583298,98.684845,4.0452375e-07 1624,1.3955029,6.6561623,37.863995,83.43123,4.053639e-08 1625,560.2776,212.25674,28.299622,68.079315,98.49198 1625,548.9916,215.86922,22.535095,55.47896,79.817696 1625,50.808525,222.0354,29.318153,53.757965,1.2072885 1625,462.30063,266.9589,26.84137,64.660614,0.22291574 1625,620.51306,50.571754,18.633606,59.69484,0.0034996711 1625,0.8086068,191.4268,18.580364,81.339615,0.0033148695 1625,477.4274,276.8077,21.228455,52.495056,0.0012680668 1625,419.31265,198.51823,40.366486,68.02391,0.0012631809 1625,470.13965,237.50584,33.886444,79.41252,0.0011173338 1625,108.88129,197.69592,34.88234,59.947937,0.0008073176 1625,620.23303,87.27679,18.913635,55.115868,0.0007102295 1625,538.3877,182.28217,65.17291,159.09528,0.0006374432 1625,612.3935,189.46867,26.753174,122.96657,0.00038245434 1625,4.474336,136.09967,75.96985,174.14642,0.00034525563 1625,564.3318,61.568047,37.375854,72.06896,0.0003119792 1625,1.1560237,169.70868,33.16144,170.47131,0.0002762782 1625,606.6211,0.0,32.525574,129.59813,0.00020722412 1625,586.2344,106.40784,52.58783,223.3664,0.00018857107 1625,405.80032,147.61508,90.45911,168.25647,0.00017791039 1625,154.87616,66.226524,29.337357,62.330208,0.00012583946 1625,612.67615,305.11215,26.47052,145.81693,6.378612e-05 1625,0.76018476,86.91858,20.270874,156.32703,4.8236034e-05 1625,609.89197,441.19815,29.2547,65.47983,4.7830137e-05 1625,422.96085,81.19799,36.104584,68.801155,4.5053086e-05 1625,0.70605636,332.6108,19.733389,135.88629,3.9730865e-05 1625,3.009297,209.2261,58.13612,233.04556,3.0468289e-05 1625,0.5686084,241.38022,20.027927,148.50058,2.5380512e-05 1625,141.60553,51.767487,28.13211,62.955498,1.6992677e-05 1625,0.8082772,420.97775,15.404932,81.700226,1.3024189e-05 1625,585.8341,395.92026,53.31256,101.61679,8.583232e-06 1625,5.100358,356.80417,79.107185,131.83688,3.2335233e-06 1625,2.6539845,431.29407,45.92205,69.94031,2.4468695e-06 1625,1.4564681,13.08334,61.21733,124.41055,5.5725496e-07 1625,140.16356,21.135801,51.42183,135.09584,3.928324e-07 1625,1.1862468,3.5418718,21.017584,62.63192,9.295093e-09 1626,12.427193,168.91675,28.93666,56.818466,93.828064 1626,608.5049,175.87872,30.641785,83.018616,80.38993 1626,35.89062,163.96547,24.485798,52.018585,2.1787834 1626,606.84595,47.655342,31.144104,60.586143,0.16701378 1626,1.4865861,180.46538,23.177656,62.77452,0.12091156 1626,4.51492,145.36247,55.92727,105.1077,0.095600516 1626,518.4566,251.02579,31.617737,68.31561,0.04489772 1626,127.890564,52.536022,27.713577,55.9156,0.02575645 1626,592.73627,145.9333,46.4104,198.09264,0.0020370565 1626,136.53566,166.26714,21.678589,46.809082,0.0013081543 1626,422.5453,147.32816,45.956818,91.38956,0.00058995 1626,0.948051,91.312645,20.098492,79.77494,0.0004783087 1626,584.0416,2.3922722,55.10504,127.64908,0.0001837309 1626,0.57418704,212.89198,19.414366,86.54402,8.8071945e-05 1626,79.21834,86.51344,79.22803,180.01143,8.0033875e-05 1626,612.6477,317.72327,26.498962,137.53809,7.683267e-05 1626,431.8313,53.51841,27.836304,57.587013,7.280395e-05 1626,2.6574008,178.32207,56.626755,251.44518,4.2320633e-05 1626,1.7234701,52.41517,31.429556,166.02844,3.836478e-05 1626,610.0226,439.65195,29.124084,65.84979,3.1646796e-05 1626,0.65455407,321.3296,19.749063,131.64954,2.7297487e-05 1626,413.2021,100.003525,102.37335,219.12682,1.2008347e-05 1626,0.6844125,420.74094,16.379972,81.95178,8.638399e-06 1626,2.8713021,89.86353,107.86884,234.22226,7.4834866e-06 1626,586.0134,394.08618,53.13324,101.75629,7.139267e-06 1626,1.6237663,19.482533,59.04944,114.711624,1.7598811e-06 1626,4.6308856,357.48386,79.470215,130.81549,1.6728424e-06 1626,1.0210189,10.113119,14.617593,77.21383,5.4722737e-08 1626,1.5331446,3.9322836,36.046246,52.015633,1.9495283e-09 1627,1.5169939,181.15614,43.326397,90.92113,31.463179 1627,621.007,229.91336,18.139648,57.02527,0.03304393 1627,105.4127,212.85355,23.342216,49.770813,0.02522406 1627,1.3505461,192.0784,16.204868,58.149765,0.016536161 1627,622.0603,83.7186,17.086365,48.501984,0.012444102 1627,621.24457,181.1715,17.9021,51.465836,0.009656447 1627,440.77283,197.5442,43.61322,75.12944,0.0038116984 1627,603.00836,191.91716,35.39569,138.67397,0.0026676264 1627,612.01056,78.2422,27.136108,115.005295,0.0021495319 1627,568.5404,170.26657,67.58899,232.88348,0.0018007889 1627,0.985352,227.8125,13.707569,58.673126,0.0016473806 1627,438.1334,82.38387,28.92572,57.103783,0.0006403312 1627,52.641407,49.558132,25.407688,46.84679,0.0004961551 1627,617.5947,381.1702,21.55194,79.15643,0.00046460985 1627,620.99365,263.18423,18.153015,60.076447,0.00032364097 1627,611.01306,255.44376,28.133606,151.16345,0.00016275702 1627,2.9540138,153.5597,79.6458,191.36877,0.00013170618 1627,569.43945,340.31155,69.59241,144.4672,0.000107056585 1627,583.26587,26.229675,54.973877,206.48546,9.568838e-05 1627,0.9461947,220.1124,20.280113,143.91296,4.8628874e-05 1627,427.1032,157.54366,81.46945,148.6486,3.3922734e-05 1627,609.2945,435.71378,29.852173,68.818634,3.0695246e-05 1627,1.1221762,73.32987,18.59621,78.60964,2.4321249e-05 1627,0.87380534,119.7017,18.566788,83.14826,9.460156e-06 1627,597.92566,9.353437,41.17688,81.77323,8.268311e-06 1627,0.70539147,363.5156,18.852985,131.78821,6.5163654e-06 1627,0.660162,284.63086,28.41618,151.59235,3.232413e-06 1627,2.9433074,398.23383,56.676632,96.07211,9.966521e-07 1627,427.40747,41.177658,48.543488,146.61058,6.536081e-07 1627,60.46208,24.67853,23.85873,57.496696,5.460204e-07 1627,1.568055,13.333428,61.35592,112.17434,4.758924e-07 1627,1.5078093,37.477135,30.301899,163.63446,1.7361687e-07 1627,0.9563928,9.925355,10.574144,81.85921,3.155135e-08 1627,1.7084587,6.864466,31.853535,61.08298,1.8888808e-09 1627,54.186024,0.0,43.922703,49.489983,2.1566821e-11 1628,444.71454,194.01115,39.57428,73.484024,0.00515829 1628,1.1108268,157.34526,18.613176,83.46359,0.0010615991 1628,64.04252,187.40875,32.986137,66.26997,0.00076944946 1628,620.72906,98.97655,18.417603,54.786285,0.0006648085 1628,611.97095,174.93298,27.17572,136.30676,0.00029977667 1628,0.81081057,71.44882,18.833628,83.98764,0.0002844369 1628,617.8909,140.36508,21.255737,77.33026,0.0001684531 1628,618.37366,388.04968,20.77301,80.196625,0.00016775317 1628,1.6855046,99.706894,32.798405,184.86137,0.00016334045 1628,0.71778405,225.62207,13.2810755,50.54901,0.00016266221 1628,0.90189534,197.53453,19.272484,136.14531,0.00010721434 1628,617.9279,313.8078,21.21875,80.373535,8.950085e-05 1628,609.3862,4.2398047,29.760437,111.394066,3.9349405e-05 1628,602.91833,238.91292,36.228333,203.7046,3.3390566e-05 1628,426.331,57.362267,37.95694,76.73948,3.1335003e-05 1628,4.5940237,151.42636,79.23736,263.95157,2.8291928e-05 1628,0.5048043,280.34744,13.8287,50.63141,2.8029222e-05 1628,609.90234,440.64355,29.244324,63.90677,2.3678273e-05 1628,0.5214315,278.90164,19.488827,138.73569,1.41577675e-05 1628,430.65637,159.6715,82.2254,149.02818,1.3774178e-05 1628,0.37063193,336.07935,13.854069,48.33194,1.05341005e-05 1628,601.6218,52.230816,37.52484,198.17899,7.2449893e-06 1628,0.69131106,391.8153,18.329496,72.357666,6.9156963e-06 1628,585.9342,392.6599,53.212463,103.09552,4.4837057e-06 1628,1.1254444,340.91635,32.66079,149.42636,2.6041823e-06 1628,1.2587337,457.46646,28.181618,47.178436,1.7900962e-06 1628,1.4422494,13.602693,58.671646,113.52475,4.772167e-07 1628,2.9256659,430.72513,53.34615,69.34384,2.8447147e-07 1628,92.9956,428.8645,72.06249,71.76636,1.5747807e-07 1628,0.7098596,8.420479,10.028879,82.455605,3.422764e-08 1628,1.02076,4.8962502,31.460075,62.13264,7.688343e-09 1629,485.28882,215.96822,21.441498,50.19249,99.468864 1629,468.346,216.58359,24.606598,48.927917,0.52592057 1629,610.23505,176.89192,28.911621,50.979523,0.0739821 1629,454.32617,174.49011,57.730408,114.08432,0.014732426 1629,0.34572837,172.25836,14.794289,53.80185,0.011604298 1629,377.60083,105.149155,27.145569,57.933487,0.0020822447 1629,602.3884,135.36818,36.75824,136.42693,0.001774415 1629,617.7362,227.15657,21.410461,80.55867,0.0008865028 1629,0.58234215,179.28673,19.996395,137.32393,0.0008811775 1629,615.5745,56.51288,23.572144,88.40167,0.0006349448 1629,0.88731164,239.55704,13.049126,47.007874,0.0004816456 1629,453.79102,116.273926,27.494873,50.191284,0.00035663226 1629,618.53955,395.64447,20.607117,78.8042,0.00021446252 1629,0.7671973,93.71107,20.59092,143.47873,0.00016925213 1629,618.10315,328.5709,21.043518,78.867615,0.000102814025 1629,582.44403,6.6965365,56.702637,228.2565,6.261225e-05 1629,0.5907015,127.17511,13.9617815,49.700592,6.167313e-05 1629,2.9942253,97.60766,57.169617,219.6076,5.9133912e-05 1629,602.2542,196.64275,36.892456,215.22981,5.5440392e-05 1629,0.73868245,392.1775,18.445219,73.640594,3.2571632e-05 1629,610.0446,442.03088,29.10205,62.9057,2.8174316e-05 1629,603.5603,324.06662,35.586365,164.34549,2.1651538e-05 1629,596.2091,1.2668523,42.93756,88.57936,1.5753862e-05 1629,431.6823,128.63406,143.89978,220.30252,1.1821689e-05 1629,1.0656462,246.28604,27.664295,148.87918,1.1540498e-05 1629,0.7473804,332.47662,18.255657,71.550415,8.87375e-06 1629,3.0587893,283.0679,57.182346,191.9119,4.8482266e-06 1629,0.8820939,440.2107,22.134241,63.058014,4.659178e-06 1629,2.7631235,425.88928,53.745747,72.34119,1.2603767e-06 1629,1.4483106,8.258066,61.699295,124.81959,4.9490166e-07 1629,1.2819352,17.637754,18.998896,118.342316,6.2907205e-08 1629,1.5542904,2.173877,31.506714,68.01757,4.0865444e-09 1630,561.55884,212.29776,31.24939,68.41083,98.94844 1630,581.13983,219.11102,24.975891,63.46167,48.868073 1630,574.1359,50.313164,35.68567,79.15255,0.41172975 1630,554.0576,54.86772,33.288208,74.36737,0.09197435 1630,622.5333,227.3155,16.613342,50.72664,0.037301052 1630,567.32837,72.992645,68.30597,265.95154,0.033951 1630,609.8816,166.2869,29.265076,127.80847,0.008336707 1630,458.9716,30.872475,33.744354,80.808975,0.005532223 1630,596.70624,55.00854,27.384216,56.14951,0.004987513 1630,440.10522,36.051334,31.913788,80.828384,0.0024328853 1630,620.30865,176.0802,18.838013,56.08191,0.002379722 1630,618.02386,244.02316,21.122803,85.47525,0.0012218285 1630,620.2226,61.990795,18.924072,63.546238,0.001063346 1630,564.5715,19.909533,74.07599,131.69582,0.0010473658 1630,0.81290853,219.10667,18.11242,75.51216,0.00068061607 1630,609.28503,72.322784,29.861633,160.70975,0.00036991268 1630,0.54191977,158.08,18.663038,81.81836,0.00021772907 1630,606.98596,0.49818686,32.160706,62.911423,5.886687e-05 1630,1.0876644,164.97012,34.217213,172.09491,5.7759116e-05 1630,585.23425,217.25758,53.867004,258.5287,5.1178093e-05 1630,613.0989,380.38257,26.04779,118.86514,4.7381134e-05 1630,427.1881,13.05877,84.4581,138.31665,4.558277e-05 1630,0.38600424,255.13734,19.934517,142.09282,1.9475061e-05 1630,1.0320141,65.73996,19.986788,142.15445,1.873413e-05 1630,2.8548307,213.03386,57.378426,225.2462,6.714503e-06 1630,0.7493197,392.48373,18.647858,106.284454,4.235495e-06 1630,2.6850815,58.36728,61.12622,236.2669,1.3696404e-06 1630,1.4053255,16.76876,60.515854,111.58137,9.530078e-07 1630,3.0218377,397.11865,56.622433,96.95734,4.8335795e-07 1630,0.928984,10.425026,10.125927,80.35688,2.7141128e-08 1630,435.60925,1.2216895,47.89743,55.237457,5.635254e-09 1630,1.977378,5.8310647,32.014763,63.485737,1.8555362e-09 1630,523.4035,3.0609653,44.398438,45.527126,1.8153058e-10 1630,464.57892,0.0,71.046265,48.502365,1.13757004e-10 1631,384.77127,214.87451,21.894379,50.273895,99.40229 1631,400.15125,217.7649,20.002258,47.283295,98.07779 1631,8.608276,275.8289,42.50856,89.32272,0.035600223 1631,271.78058,263.67468,23.235718,47.67038,0.012732755 1631,382.8519,199.70267,41.5625,92.68576,0.006072409 1631,621.594,209.99982,17.552673,51.755493,0.0025045974 1631,191.3766,220.57394,33.676193,81.76349,0.0024296904 1631,264.79214,203.23372,35.920837,112.173965,0.0015309339 1631,1.4490535,210.08902,20.835836,156.22845,0.0013034969 1631,607.93085,437.11453,31.21582,68.184235,0.0012513683 1631,209.43698,263.919,20.690155,48.937134,0.00068318675 1631,621.388,404.59705,17.758667,62.506714,0.0006171864 1631,611.2171,305.5428,27.929565,158.33862,0.0005231164 1631,1.1294409,271.92303,14.807437,62.44565,0.00049926597 1631,44.056316,187.12506,41.959255,107.74158,0.00038115843 1631,622.18695,247.99107,16.959717,53.625504,0.00032814927 1631,3.270176,231.24777,77.24457,220.15036,0.0002526662 1631,1.4870695,176.57709,17.925056,74.08099,0.0002451362 1631,611.68304,172.67836,27.463623,125.20387,0.0002278291 1631,588.76624,167.71284,50.380432,272.8855,0.00011259296 1631,0.706604,239.49928,13.973477,56.31938,0.00011084517 1631,617.0799,74.34902,22.066772,87.42112,0.000104107145 1631,0.8689828,322.71893,19.185059,86.17746,9.886832e-05 1631,602.7283,87.08692,36.418396,162.87073,7.466078e-05 1631,617.7204,281.3246,21.42627,84.462036,7.0884926e-05 1631,1.8710091,134.5865,28.870817,155.5046,4.6280464e-05 1631,172.49762,178.57727,72.643326,152.67142,3.5119792e-05 1631,0.5075492,372.636,13.890188,50.65857,3.425766e-05 1631,159.97604,224.35963,26.425598,55.640335,3.1678923e-05 1631,572.8668,361.16827,66.05011,129.86954,2.1155509e-05 1631,0.9903475,67.47793,18.937906,149.897,1.6112112e-05 1631,597.8132,6.9187827,41.333496,77.18799,1.2741e-05 1631,0.7242879,395.01917,18.232716,74.83682,1.1996478e-05 1631,367.77283,160.6756,84.15103,197.98856,1.1652683e-05 1631,0.9699325,442.75693,21.748772,61.108856,2.2896422e-06 1631,2.8654606,386.61288,56.21415,106.455505,1.065583e-06 1631,2.0562875,35.436146,61.020973,270.0198,5.309571e-07 1631,0.53404135,10.177656,8.915061,83.255585,2.0308244e-07 1631,1.4379297,12.56712,35.769497,72.93785,1.1011285e-07 1632,410.90482,215.9049,24.361206,52.558685,99.76269 1632,427.0966,216.9634,23.348724,51.89293,99.69617 1632,1.0118376,240.84459,42.728333,110.5663,0.078843944 1632,14.057845,194.8255,29.976376,57.0455,0.07070329 1632,215.5537,218.6575,27.138733,59.148712,0.022264784 1632,270.40094,256.7583,22.367493,50.084473,0.015223045 1632,620.3422,204.74303,18.804443,56.31151,0.007678457 1632,286.93082,257.84406,23.226807,49.206635,0.0071024415 1632,6.0663557,166.83974,56.897068,150.43959,0.0063601406 1632,0.97713953,251.84853,17.111555,73.40694,0.0028131192 1632,1.7271037,192.41258,13.273443,53.94664,0.0017905177 1632,395.59393,190.72865,58.769165,103.7794,0.0015516988 1632,276.73682,193.23253,38.755432,127.42638,0.001170454 1632,1.4154037,226.99222,70.6959,228.46176,0.0004058029 1632,611.9832,176.01317,27.163452,138.4775,0.00030644695 1632,608.34784,437.03168,30.798828,68.411255,0.000295971 1632,1.9599504,148.55693,22.14862,161.78624,0.00026977295 1632,611.12067,97.53439,28.026001,125.34642,0.00017304752 1632,611.99,333.28958,27.156677,148.93512,0.00015574614 1632,0.45325318,371.21695,14.376585,52.703827,0.00010090144 1632,571.54877,103.28564,66.778076,263.11475,9.046419e-05 1632,0.66196454,265.31073,21.168808,183.225,6.695958e-05 1632,598.01276,6.9670544,41.13391,76.160866,4.1735857e-05 1632,1.110599,68.748634,19.312914,153.54175,2.6494597e-05 1632,201.68404,156.46362,72.0508,163.28891,2.4008892e-05 1632,0.79789066,393.08072,20.226608,104.673096,1.5262993e-05 1632,155.72116,210.71774,36.1904,77.09247,8.107769e-06 1632,378.6163,140.6184,134.53665,221.98915,3.709155e-06 1632,2.6421468,426.1689,53.30898,70.85074,1.1784045e-06 1632,2.087373,16.350801,56.940884,123.97536,1.4123056e-07 1632,1.0679623,8.226369,29.468376,54.616432,2.461204e-08 1633,415.24277,216.24696,24.823792,58.529312,99.837616 1633,430.13977,217.07,24.497803,55.93286,99.75824 1633,218.52634,216.67557,22.011765,58.062744,0.005556168 1633,404.44284,195.37659,52.918488,104.96942,0.004335863 1633,282.66153,204.75739,24.767578,54.411438,0.00427295 1633,328.12155,196.43214,22.509155,45.50589,0.0026125507 1633,617.7056,217.68478,21.44104,84.51456,0.0004211287 1633,616.94604,144.1725,22.200623,86.80344,0.00036289982 1633,56.530933,194.57137,39.014713,137.03859,0.00032228822 1633,0.97860026,220.37717,17.494177,72.88849,0.00012307972 1633,617.88574,278.3231,21.260925,82.1355,0.00010141367 1633,599.63666,95.0713,39.51001,178.97733,9.5687836e-05 1633,617.4316,56.74495,21.715088,87.9948,8.685913e-05 1633,608.4574,439.36386,30.68927,67.96985,7.6602206e-05 1633,112.57976,193.70648,41.342087,108.49005,7.135251e-05 1633,603.0208,204.282,36.125854,200.08961,6.054189e-05 1633,1.8412988,94.800026,28.833809,148.92386,5.8362548e-05 1633,613.4791,330.06317,25.667542,149.64767,4.698565e-05 1633,3.6686263,98.88671,58.188526,229.66669,1.958271e-05 1633,5.9079947,232.42142,78.098816,229.5003,1.5390597e-05 1633,597.05676,5.9479527,42.089905,78.72597,1.5037012e-05 1633,0.90701336,270.69598,18.440815,130.27725,1.3361523e-05 1633,31.624138,166.4287,109.95144,218.76073,9.246355e-06 1633,0.7583301,384.15988,18.316347,73.77872,8.263486e-06 1633,385.34515,152.48186,128.31647,221.95961,5.275001e-06 1633,554.9328,385.6327,83.73761,109.09857,4.900532e-06 1633,1.5115333,327.0588,32.067245,157.80887,4.06874e-06 1633,0.8407617,422.17435,16.691607,80.21146,3.0361193e-06 1633,508.2998,419.22446,77.5874,80.096344,6.137058e-07 1633,2.793024,428.9766,53.183815,70.08139,4.448064e-07 1633,0.7762533,18.087631,16.731247,142.53963,3.23615e-07 1633,0.49669963,10.211914,8.268623,84.67589,1.5699881e-07 1633,1.8010026,16.069492,57.09784,124.94389,1.3982793e-07 1633,1.0196371,8.103744,29.471523,55.01016,3.046831e-08 1634,431.20193,221.6052,26.737305,66.456024,99.90101 1634,447.32294,222.46959,23.715881,63.19142,99.77373 1634,222.05159,209.58017,23.147873,50.79886,0.052460708 1634,281.0097,210.40019,25.552795,54.814835,0.006037677 1634,1.46691,202.77716,17.704168,74.74768,0.0014212275 1634,497.27563,188.63431,23.906067,46.305496,0.00061191473 1634,0.5605811,250.82756,13.789216,49.808395,0.00057179766 1634,212.26132,192.14854,41.29715,105.689835,0.00052688754 1634,4.698529,193.98125,80.82975,179.42073,0.00047864093 1634,35.24809,261.02014,29.557919,60.79834,0.00039629627 1634,430.25818,185.7143,64.518555,170.0758,0.00035203525 1634,1.4363201,222.74829,28.239613,144.40842,0.0002208798 1634,611.8787,97.862404,27.267944,142.92133,0.00021128201 1634,617.63806,182.35097,21.508606,82.80821,0.00017233146 1634,612.82025,239.42657,26.326416,148.7655,0.00012261752 1634,611.96387,375.09174,27.1828,124.658264,7.851051e-05 1634,115.08787,201.67865,43.179955,127.73129,4.8400772e-05 1634,587.11646,132.24226,51.581665,220.4803,3.9084465e-05 1634,1.081215,139.37164,19.196566,85.0569,3.1379263e-05 1634,0.47615397,289.95636,20.165922,144.9375,3.035141e-05 1634,1.6593181,81.20502,34.347794,204.50427,2.7022876e-05 1634,148.31577,153.97383,77.798584,165.73808,2.3575749e-05 1634,0.8071224,398.5036,18.086,71.40057,2.089118e-05 1634,0.9421265,62.11816,20.741259,121.41351,1.1541675e-05 1634,0.58685386,377.1264,13.883826,49.490997,1.1180432e-05 1634,598.07404,7.1829624,41.07263,76.77786,9.689597e-06 1634,0.9050415,440.79443,21.725739,62.298615,5.231944e-06 1634,4.711351,341.61987,78.70097,142.94873,2.6601483e-06 1634,2.5761182,426.70322,53.253017,71.40857,8.701149e-07 1634,0.5942676,12.621713,9.633785,80.036156,3.439808e-07 1634,1.7555616,21.652052,56.572617,110.19833,3.2280866e-07 1634,0.9264453,9.593697,29.676208,54.661102,7.8877136e-08 1635,469.8977,216.66876,27.997528,75.06152,99.79055 1635,485.30112,217.19713,19.863953,49.238052,8.077743 1635,288.75732,207.0236,25.450562,57.617355,0.0055032093 1635,454.93137,178.83302,60.54117,154.23833,0.0034580822 1635,29.164965,265.10403,49.578323,94.78891,0.00077025854 1635,622.7251,178.10818,16.42157,48.76091,0.0006904255 1635,1.4887753,191.14487,17.654842,71.82761,0.0005681742 1635,611.8511,162.67998,27.295593,127.52791,0.000374292 1635,611.67773,96.08275,27.468933,108.60306,0.0002445979 1635,4.254401,133.00412,57.346355,225.74023,0.00013616864 1635,612.20105,376.6431,26.945618,121.0777,9.264066e-05 1635,1.3740772,220.3923,18.49488,139.94879,7.152733e-05 1635,573.2818,114.03244,65.64984,243.66397,6.933142e-05 1635,612.4286,233.53043,26.718079,148.52582,5.2846586e-05 1635,63.02639,209.8108,40.144516,128.66182,2.9010565e-05 1635,0.869624,88.72125,19.416609,149.47107,2.4190089e-05 1635,1.1254851,318.89285,17.930584,68.59866,2.3788636e-05 1635,425.2162,148.58731,137.17078,240.97711,2.3627881e-05 1635,597.86816,8.207041,41.278503,74.279396,1.32054665e-05 1635,0.8017814,398.88412,18.149721,72.38312,9.842524e-06 1635,2.015765,281.1969,33.29974,178.43384,8.774417e-06 1635,0.6630803,355.40982,18.489416,75.39191,7.88596e-06 1635,141.19008,159.8304,75.096466,173.25508,5.9144627e-06 1635,1.0179183,443.26923,21.754997,60.19632,2.7936774e-06 1635,5.181729,344.67157,79.09574,142.82178,1.3354475e-06 1635,221.32108,427.0733,72.44171,72.46619,7.764394e-07 1635,2.7994516,430.24033,53.21166,69.152405,4.731455e-07 1635,1.2162728,20.702143,28.054543,151.84969,4.1527946e-07 1635,262.38367,428.3418,72.43503,73.15552,4.1234495e-07 1635,0.58146936,10.710205,9.257082,82.52212,3.070243e-07 1635,181.41147,427.3804,72.66231,72.89087,2.3582164e-07 1635,1.0789405,8.756156,29.265825,55.099678,6.4614326e-08 1636,516.8551,217.82457,31.78302,93.74373,99.77135 1636,512.0173,220.16347,22.598633,51.32631,2.3970923 1636,530.58826,220.93845,21.117859,48.918854,0.7386697 1636,105.69908,203.78816,30.133713,50.446213,0.10955319 1636,7.5418897,207.46211,33.671146,77.08916,0.014588803 1636,212.689,163.08719,36.231506,81.68182,0.014320879 1636,621.4324,172.43253,17.714294,52.172714,0.008602837 1636,294.35464,208.1499,26.290161,59.06012,0.0073042014 1636,540.69055,215.95872,29.764465,86.07674,0.00545936 1636,81.31391,205.21013,40.55332,91.54564,0.0049915523 1636,611.51965,130.0903,27.627014,124.300766,0.0019033456 1636,489.24496,173.61093,89.67612,184.23526,0.00096341566 1636,2.3953338,197.0437,55.25399,223.30585,0.00067729637 1636,621.1397,87.22006,18.006958,57.94565,0.00061523006 1636,608.5202,441.39346,30.626465,63.72238,0.0006049472 1636,617.30804,216.31631,21.838623,86.20636,0.0005759702 1636,111.21537,198.0545,41.34896,108.481384,0.00053583126 1636,1.5920825,184.82785,20.583996,141.68524,0.0005011245 1636,616.6601,385.221,22.486572,87.84509,0.0003202196 1636,0.9927686,224.55537,14.374592,58.229202,0.00017429219 1636,587.38214,157.70087,51.57556,263.35272,0.00014870688 1636,587.6597,325.9715,51.280823,157.1192,0.000115841234 1636,1.0599186,277.30542,21.870718,149.5332,7.257242e-05 1636,610.03296,19.156517,29.113708,164.50851,5.4184165e-05 1636,1.3835474,160.30373,18.535582,77.37451,3.6773927e-05 1636,1.7318897,78.59186,32.87571,205.7457,2.4798388e-05 1636,0.5817936,367.53778,18.578928,80.65326,2.2422159e-05 1636,0.7595435,419.50778,16.809668,81.30347,5.185242e-06 1636,3.9346387,345.32117,79.022995,138.7024,2.252563e-06 1636,3.084126,424.76794,52.639496,72.80383,5.2769707e-07 1636,2.5300016,18.484896,56.3069,113.70534,9.340416e-08 1636,0.89605063,24.214676,17.522032,149.61288,8.601939e-08 1636,1.0942236,8.67432,29.223974,54.455845,2.0956165e-08 1637,571.89514,208.47539,55.671936,126.1617,99.895836 1637,598.4267,219.19246,27.879578,64.47832,25.661331 1637,579.51733,223.64084,24.430359,48.51709,1.8264581 1637,623.64685,225.53886,15.499817,60.13948,0.058175523 1637,609.27454,168.94797,28.766052,143.89694,0.03471862 1637,302.76804,209.98172,25.152618,56.587982,0.02239269 1637,622.04956,258.94998,17.097107,66.523346,0.014479099 1637,212.92963,162.41425,38.18257,83.38768,0.013422136 1637,1.8505127,219.5462,40.02476,122.987946,0.006098285 1637,41.839455,213.20654,35.83339,68.332214,0.0039364165 1637,536.9978,147.721,99.29993,259.14972,0.003716756 1637,0.9657365,243.68536,14.829307,61.12549,0.0023635982 1637,619.8733,178.01537,19.273376,64.8154,0.0013596681 1637,582.0152,253.25972,26.594666,76.62413,0.0013295505 1637,1.1459571,196.14816,18.503948,76.48981,0.00091114163 1637,1.5094889,276.13046,50.67104,134.2687,0.0007821465 1637,596.8191,198.269,41.450928,252.2242,0.0007648084 1637,1.0527515,282.09653,19.696861,97.77231,0.00033157822 1637,608.2485,438.92392,30.898193,66.69464,0.00023806412 1637,616.82025,312.87018,22.326416,88.61273,0.0002071854 1637,0.7366553,358.80356,18.73855,84.201294,9.0665606e-05 1637,584.8078,392.89157,54.338867,101.69125,5.649909e-05 1637,0.93672365,71.182236,18.974176,149.24915,3.576949e-05 1637,610.89886,42.9596,28.247803,170.1395,2.9054476e-05 1637,597.97473,9.547689,41.171936,73.202194,1.3941101e-05 1637,0.792535,394.19226,26.596767,104.592804,9.616925e-06 1637,3.5160613,332.19305,78.31885,152.89957,7.1478235e-06 1637,2.3484328,36.129623,61.513824,278.47632,3.6830147e-06 1637,2.6015203,20.225903,56.09934,108.0054,2.0194145e-07 1637,1.1424788,8.580591,29.661844,55.982445,5.063508e-08 1637,435.55112,2.5052996,44.01364,51.69508,1.6514353e-08 1638,61.18195,222.38344,30.1497,48.335587,9.239314 1638,77.66785,210.91302,27.908424,53.30136,0.045828275 1638,621.47473,167.97964,17.671936,46.458405,0.023868162 1638,214.645,150.23367,43.00261,86.71503,0.021867948 1638,235.23982,159.90791,21.821732,45.323532,0.013305438 1638,54.300777,194.90794,49.833065,102.78841,0.012999959 1638,313.92645,198.08455,26.83136,54.448013,0.0036099083 1638,0.97615117,192.57768,12.931664,51.32892,0.0024218392 1638,540.6596,191.3141,27.598328,47.610703,0.0018525866 1638,621.75446,124.23456,17.392212,59.06877,0.0018044093 1638,611.94855,143.44745,27.18982,118.33203,0.0011816492 1638,1.1527646,141.06476,19.130291,78.651505,0.00040123 1638,617.9206,365.49106,21.226074,81.80084,0.00026250788 1638,0.99253255,186.92834,19.92981,149.8104,0.0002339568 1638,618.09845,212.94937,21.048218,85.80054,0.00020552288 1638,3.021989,121.60465,55.464523,224.34537,0.00019309041 1638,587.95807,148.67062,50.122986,231.39291,0.00014406281 1638,618.2922,267.1711,20.854492,79.42172,0.00011388943 1638,617.22064,60.657932,21.926025,93.25255,9.661267e-05 1638,617.79266,312.19217,21.354004,81.947754,6.50612e-05 1638,0.8803614,247.88063,55.215,221.93861,6.1014634e-05 1638,0.5782642,243.31268,13.572225,55.260376,5.615873e-05 1638,613.9214,411.70477,25.22528,89.10025,4.609704e-05 1638,587.74915,307.26364,51.064026,167.09277,4.1998017e-05 1638,150.7371,175.23969,41.14804,131.13281,3.1345702e-05 1638,0.6741504,376.58093,18.612696,83.50482,3.102117e-05 1638,32.45699,163.59764,102.280304,209.66829,1.9766852e-05 1638,600.67224,33.824127,38.012512,193.06807,1.8957817e-05 1638,598.78705,12.694329,40.35962,71.083694,8.517638e-06 1638,352.0502,141.33836,76.47061,159.18184,6.785376e-06 1638,1.7217464,52.052574,32.69065,181.09375,6.174044e-06 1638,131.37904,146.75162,117.42409,205.62595,5.0651165e-06 1638,0.58321613,293.5246,20.719397,102.37491,4.698579e-06 1638,0.86757654,420.44513,16.314571,80.241455,3.7278792e-06 1638,2.8843343,426.51312,52.656677,70.46277,5.5470355e-07 1638,0.87369466,18.855463,16.42749,129.71793,2.2382658e-07 1638,2.7064779,17.969349,55.984592,117.99725,1.3687779e-07 1639,2.0714526,212.52736,26.462994,81.8199,1.155639 1639,613.9101,174.13918,23.867493,45.327286,0.016483394 1639,301.1758,200.26411,25.56784,52.66078,0.0079649305 1639,215.5445,194.74057,36.488144,82.11911,0.0060196947 1639,620.63586,216.16336,18.510803,59.151794,0.0041156276 1639,532.9941,190.81529,33.251343,55.75763,0.0017203859 1639,604.5348,146.53368,34.224792,130.68282,0.00085889315 1639,206.48846,161.86472,26.56073,59.301773,0.00080361904 1639,3.0128615,193.80263,45.29844,162.7213,0.0006081425 1639,612.5332,210.1511,26.613464,164.3598,0.00030837956 1639,617.0324,106.8599,22.114258,89.22303,0.00028639782 1639,292.50934,247.60233,21.97113,49.87332,0.00017315317 1639,617.8064,378.52335,21.340271,82.414276,0.00015914424 1639,617.96783,326.04465,21.178833,82.4397,7.8323996e-05 1639,617.45,42.35174,21.696655,81.64076,4.717445e-05 1639,95.60363,158.24324,62.55372,164.91698,4.361297e-05 1639,609.40717,435.29443,29.739502,69.68335,3.1417654e-05 1639,205.90944,154.23401,74.22688,154.23663,2.9917357e-05 1639,1.1753353,131.34142,18.659212,81.70973,2.9164745e-05 1639,0.83728844,84.065796,30.097847,189.73727,2.1692544e-05 1639,588.9327,312.74747,50.21399,166.64764,2.107685e-05 1639,571.05707,100.09627,68.0896,236.44453,2.0039608e-05 1639,1.4863591,259.8689,19.563503,147.15799,1.5380956e-05 1639,1.067874,269.9906,13.487877,52.20285,1.4135036e-05 1639,441.01715,162.53647,71.041504,162.05447,1.2824236e-05 1639,610.752,8.198846,28.394653,48.34847,1.157077e-05 1639,0.8246192,406.2496,18.106094,71.104675,9.522994e-06 1639,0.65693486,328.286,13.912249,49.87793,7.887887e-06 1639,340.3554,145.3186,78.06952,155.4602,6.012347e-06 1639,0.67542887,366.2354,18.30435,71.27814,5.1493867e-06 1639,571.1174,22.34114,68.0293,143.43686,4.4950516e-06 1639,0.96598715,46.383133,21.047726,126.67122,2.8747377e-06 1639,3.2520118,326.5831,56.951702,156.58514,1.489194e-06 1639,2.8415577,429.53864,52.983326,69.79956,4.756501e-07 1639,0.5447359,10.99683,8.562607,84.187775,3.7084175e-07 1639,1.9841732,18.352911,56.528915,118.256966,1.8344346e-07 1639,1.0319678,7.479144,29.747896,58.14565,4.206299e-08 1639,423.29468,3.7540057,42.69751,53.38826,1.4772392e-09 1640,620.62213,164.66457,18.524536,54.515,0.012482726 1640,200.2177,218.02946,27.25528,61.902206,0.0052861725 1640,620.3622,210.40031,18.784485,61.469254,0.0047936235 1640,277.99637,208.24258,35.47928,107.85965,0.0036041122 1640,611.9529,187.63602,27.193787,156.02347,0.001680891 1640,540.9679,204.80792,26.509094,52.26413,0.0007635854 1640,610.9317,86.33657,28.214966,142.57745,0.00066181517 1640,608.6135,436.8179,30.533142,68.21283,0.00062938506 1640,273.13605,192.65727,24.043518,52.442078,0.00049921457 1640,56.384514,165.76614,77.388115,188.23154,0.00033964633 1640,1.312063,158.55118,19.626736,127.95776,0.0002736596 1640,522.9291,180.75812,38.00177,116.4205,0.00024205422 1640,617.83704,370.03183,21.309631,84.38068,0.00017698083 1640,218.71263,264.39163,21.750656,50.160187,0.0001689277 1640,617.7565,304.29596,21.390198,91.539,0.0001674284 1640,487.93448,101.39274,114.56613,225.34656,0.000116299285 1640,2.7913997,169.88478,45.6077,175.41457,0.000110961715 1640,154.00034,111.175865,72.87152,185.57156,7.275772e-05 1640,587.9388,313.3117,50.93341,168.74002,5.608016e-05 1640,0.9637012,227.1716,19.826157,134.02374,3.641746e-05 1640,569.97186,88.65544,68.84442,240.7342,3.544679e-05 1640,0.87286055,68.137726,18.948439,150.56473,2.456953e-05 1640,3.4546144,259.71902,55.393852,208.16998,2.0605028e-05 1640,0.61388797,280.24863,13.535678,48.035156,1.685285e-05 1640,0.86345947,386.93182,17.858917,69.945435,1.5297002e-05 1640,587.36743,13.38974,51.779236,123.70662,1.2226718e-05 1640,253.66003,179.4004,98.24533,230.27803,1.200822e-05 1640,334.65558,157.02174,77.16684,154.958,6.699868e-06 1640,0.8477523,344.2253,18.149776,73.51813,5.116003e-06 1640,0.9814771,439.58878,21.646235,62.71759,3.5719002e-06 1640,467.98886,50.886127,81.60159,209.74055,1.3397947e-06 1640,2.81139,425.7887,52.870975,71.27704,7.3451247e-07 1640,2.408029,38.263725,60.46877,246.2992,6.453664e-07 1640,1.4533691,12.955589,35.658146,74.78278,6.603593e-08 1640,500.76917,1.8840251,43.28656,47.285942,1.5691363e-09 1640,466.31195,0.560638,42.92926,55.601303,4.3747223e-10 1641,177.23993,224.35583,34.525238,80.152954,0.015764445 1641,41.002796,282.67468,21.113548,46.99829,0.011858878 1641,275.0218,206.94374,39.459625,138.51112,0.004418982 1641,0.9227718,197.83656,18.283674,74.234726,0.003924516 1641,620.2658,292.75616,18.88086,66.468445,0.002829505 1641,2.270013,205.79709,34.357933,185.1355,0.0022398431 1641,289.9623,203.2957,24.00467,56.163742,0.0020714446 1641,538.45905,186.52077,33.914124,66.98122,0.0019008914 1641,1.6666342,286.80795,18.745213,86.15793,0.00082887465 1641,615.90015,385.7745,23.246521,89.92212,0.0007701821 1641,46.12028,183.58,36.519855,81.00984,0.0007051934 1641,610.6221,292.66418,28.524597,153.4226,0.000303598 1641,345.32098,182.64043,41.825043,91.169846,0.0002068125 1641,193.22441,280.11847,32.97267,64.352875,0.00014962126 1641,5.256631,195.08142,76.75332,259.3053,0.00011909926 1641,610.95886,182.26308,28.187805,170.6888,0.00011881679 1641,608.1947,434.17944,30.951965,71.08322,0.00011639937 1641,151.2458,129.32112,43.888504,157.90987,0.0001084434 1641,617.5195,68.20495,21.627197,79.28144,0.000102583275 1641,574.21906,223.43074,64.40668,241.31334,8.86326e-05 1641,1.0508033,319.09274,19.887194,141.4006,8.685516e-05 1641,617.6721,122.75388,21.474548,79.7358,7.942081e-05 1641,609.8904,9.494746,29.256287,102.06775,6.3696345e-05 1641,250.76385,162.83919,103.9476,197.79488,3.0581647e-05 1641,1.3589079,99.23383,32.58602,192.83142,1.2890794e-05 1641,0.6099862,369.0314,13.9191,49.438934,1.2219584e-05 1641,0.7978898,422.26123,16.659546,79.55908,4.6840114e-06 1641,587.3575,62.27534,51.789185,262.38834,4.560642e-06 1641,334.16455,151.06252,89.38608,196.2787,4.0141726e-06 1641,2.9593182,388.34793,56.16816,104.75647,1.3511686e-06 1641,0.7677376,55.621506,19.101547,154.702,1.1203226e-06 1641,0.52199304,8.700066,8.715257,86.12305,2.0152741e-07 1641,1.2369515,11.005765,36.099113,75.89436,1.3103588e-07 1641,529.73157,4.7961965,61.639343,47.219692,7.0982247e-09 1642,5.7193737,276.0881,25.559605,65.46689,0.032773487 1642,0.9663436,288.93286,14.410203,61.72513,0.03153034 1642,279.54633,307.0249,30.635803,55.276978,0.020047093 1642,620.2174,150.96423,18.92926,55.299423,0.012404436 1642,2.4991195,236.40009,42.288364,135.32379,0.0070601827 1642,547.80554,199.58568,27.283997,50.509766,0.0035744975 1642,1.4001603,200.5932,20.47058,87.846344,0.0030879786 1642,242.17537,308.05087,24.201492,46.452667,0.0024796436 1642,612.59503,163.8717,26.551636,136.64111,0.0012825002 1642,273.70834,191.35728,52.60605,163.92766,0.0012562468 1642,610.349,86.60373,28.797668,142.96179,0.0009949744 1642,3.3387144,116.88288,72.677505,281.05203,0.00069014775 1642,169.44315,306.03766,38.670334,68.42682,0.0003570025 1642,351.00174,183.80568,41.98694,90.00444,0.00031854957 1642,142.90924,261.93488,22.845978,52.706787,0.00024507285 1642,1.0807219,283.22324,20.001446,155.93713,0.00024002192 1642,608.9072,440.4982,30.23944,64.88937,0.0002328381 1642,617.7818,303.80893,21.364868,83.19278,0.0001578907 1642,1.4504232,80.07102,36.00415,210.02585,0.00014414114 1642,601.44165,232.87459,37.705017,208.07994,7.573345e-05 1642,1.0879729,131.59142,18.671247,79.535965,7.214643e-05 1642,612.6315,352.18323,26.515198,116.478,7.115815e-05 1642,616.87463,39.641716,22.272034,88.630974,5.1209583e-05 1642,283.5508,213.90903,26.9646,67.26947,4.663864e-05 1642,597.5965,6.694896,41.55017,77.78045,1.6507825e-05 1642,0.79698247,405.28085,18.102907,71.45209,7.724868e-06 1642,4.541901,333.2437,78.37965,150.32526,6.121512e-06 1642,337.90887,151.49335,91.42679,192.75967,4.041707e-06 1642,0.73901045,17.161022,17.059828,143.40549,6.8049576e-07 1642,2.6894841,427.27957,53.05307,71.44147,6.417784e-07 1642,1.8553841,16.791784,56.949173,126.28141,4.945818e-07 1642,0.52058715,9.620847,8.726036,85.36448,2.050652e-07 1642,1.214139,7.8689017,29.207905,55.41709,1.9319573e-08 1643,35.73965,273.982,50.441433,99.31726,0.03116356 1643,622.67365,160.93752,16.473022,47.267624,0.020003865 1643,282.48492,194.67389,39.74414,119.846985,0.019703938 1643,559.3131,178.57411,25.179504,51.267685,0.011692392 1643,1.1886141,167.9404,32.840176,106.05386,0.0043943315 1643,613.06067,157.4944,26.085999,121.893936,0.0019216463 1643,265.94492,337.34433,22.804016,51.876526,0.0015023416 1643,296.7508,197.82964,24.408508,53.02722,0.0005656127 1643,292.04303,226.55795,22.993378,59.465515,0.0004885869 1643,356.8032,178.98186,41.66269,89.15587,0.00048398742 1643,0.50003666,209.01622,16.27112,75.975815,0.00041354814 1643,616.76514,102.926125,22.38153,83.772835,0.00034919116 1643,617.7477,399.45865,21.398987,82.41162,0.00034556823 1643,617.5969,297.40198,21.549744,83.02634,0.00019251177 1643,258.14926,183.12396,96.71506,203.2757,0.00013396387 1643,0.5122738,160.87447,15.095938,66.5789,0.0001232517 1643,589.46234,174.16916,49.50952,233.85352,7.078238e-05 1643,1.8967806,124.39748,65.74469,208.51216,6.98732e-05 1643,0.9685482,265.9857,13.33406,52.634216,5.0468327e-05 1643,0.26336834,49.490253,19.951492,166.45168,3.8601498e-05 1643,3.5592465,275.7605,56.71599,192.59,3.3700948e-05 1643,1.2335751,211.99602,33.48062,188.59789,2.1527221e-05 1643,1.1442163,293.10556,18.252731,74.863495,1.5406016e-05 1643,1.1412224,336.4593,19.461016,133.65082,1.30080525e-05 1643,597.8623,7.2478127,41.284363,76.44977,1.2683826e-05 1643,574.1715,421.19226,64.97516,78.37665,1.2672631e-05 1643,599.9596,29.36562,39.095276,198.612,1.12093e-05 1643,0.82911134,420.6415,16.565231,79.51672,6.160869e-06 1643,343.35284,144.67795,89.54202,194.09119,5.9640797e-06 1643,0.66340905,384.899,13.615582,49.559967,5.306688e-06 1643,0.69545984,356.36096,14.02706,50.718018,5.0261688e-06 1643,1.9411817,16.392227,57.0261,117.179886,7.820843e-07 1643,2.6772869,426.11374,52.978188,70.97043,7.730111e-07 1643,528.60895,422.1085,77.238525,78.25409,3.3262273e-07 1643,0.92498374,7.536097,30.545221,58.02489,1.4068185e-07 1644,294.48724,208.34813,34.208954,91.18898,0.009776173 1644,621.21136,430.55093,17.935303,52.516327,0.00864167 1644,42.608192,276.3336,44.08458,106.438354,0.007883262 1644,621.5493,172.51125,17.597351,53.558105,0.004876636 1644,617.3233,198.58028,21.823364,81.7932,0.0022151847 1644,578.3673,188.57698,24.189453,50.920166,0.0018248744 1644,270.56558,189.24136,73.256836,199.52505,0.00097299606 1644,621.7061,368.83832,17.440552,54.890625,0.00058205187 1644,300.3155,202.40508,21.435638,45.39337,0.0005478459 1644,611.9678,120.73415,27.178894,129.87561,0.00041054282 1644,604.9633,379.6924,34.18335,112.34665,0.00039770166 1644,365.63208,180.80017,41.0549,87.92023,0.00023931041 1644,588.48126,252.0794,50.564514,228.04666,0.00022368452 1644,617.8125,293.9066,21.334167,86.133026,0.00016356584 1644,574.2359,124.31637,64.164185,242.0444,0.00010016997 1644,273.76157,386.53723,22.525543,48.307922,8.421397e-05 1644,616.90546,53.644733,22.24121,91.69083,7.327287e-05 1644,3.609787,283.33148,56.820103,187.47836,5.0077586e-05 1644,1.0432023,313.14197,18.27253,75.6705,4.2376047e-05 1644,597.29474,6.9397073,41.85193,78.50274,2.992038e-05 1644,1.14854,269.44913,17.817055,72.42102,2.7482056e-05 1644,14.215488,240.49138,114.35239,206.82066,1.4145836e-05 1644,0.65490645,82.81891,20.307526,105.79805,1.318259e-05 1644,1.2349528,221.9282,17.89834,75.23836,1.01040305e-05 1644,0.91855067,398.96295,17.87042,71.17148,9.80303e-06 1644,0.8997404,353.62823,18.471638,79.42044,8.689379e-06 1644,352.67664,149.37212,97.08896,192.50322,5.3355525e-06 1644,0.5870923,160.19832,18.539692,75.68596,4.6142604e-06 1644,1.3419108,146.30229,33.84626,194.10005,4.1284566e-06 1644,1.0701962,440.5781,21.438831,61.58081,4.031037e-06 1644,556.0698,423.17142,79.90863,75.63391,3.9890315e-06 1644,3.0016325,427.60553,52.942196,69.77396,5.6591495e-07 1644,2.1697233,19.692614,56.82109,110.12744,2.8933619e-07 1644,3.9021745,48.58331,80.696526,308.15536,2.8791038e-07 1644,1.3219662,8.09299,29.218933,54.240578,1.8947851e-08 1645,302.6117,217.2535,34.63846,98.622696,0.10832589 1645,621.99664,171.87868,17.150024,54.967636,0.005363107 1645,607.4555,188.25064,31.355286,67.80838,0.003121054 1645,284.98843,172.64769,64.30197,187.10991,0.0023043267 1645,585.0237,193.9247,25.173706,51.420258,0.001410407 1645,112.50037,152.51753,67.48009,194.33577,0.0011963969 1645,28.072325,268.63675,52.1893,139.8627,0.00097524154 1645,1.3005314,327.55423,18.691586,76.17444,0.0005357056 1645,598.9019,145.50452,38.823853,177.9159,0.00025372117 1645,2.8442335,291.75858,58.430996,177.83716,0.00024795887 1645,617.8388,291.02795,21.307861,81.11575,0.00021492115 1645,617.90546,392.15524,21.24121,82.15991,0.0001405971 1645,366.71124,178.54451,40.732086,91.05992,0.00013234177 1645,610.77454,56.808094,28.372131,160.18788,7.34915e-05 1645,1.0347794,275.3834,18.257156,79.06674,3.846138e-05 1645,602.6738,271.00934,36.47284,196.20834,3.5642242e-05 1645,609.39526,438.83865,29.751404,65.49313,3.4121498e-05 1645,0.9169686,360.77774,19.634254,134.11472,2.8737568e-05 1645,0.88697225,209.55786,13.468924,48.044586,1.4093214e-05 1645,279.21152,403.13727,22.955444,47.638428,1.2713981e-05 1645,0.555682,390.3918,13.932967,50.7045,1.16599085e-05 1645,597.0939,5.6736264,42.052795,78.84671,1.0703458e-05 1645,0.4339388,115.28559,18.538395,76.20237,1.0424609e-05 1645,352.90326,146.48125,87.38977,194.40416,7.450502e-06 1645,0.9264201,158.25682,19.744146,136.75777,4.9288133e-06 1645,1.2944434,74.58536,31.646772,176.95097,4.5789807e-06 1645,1.6067107,198.17935,34.44837,187.66714,3.864945e-06 1645,555.32965,382.57385,83.81702,110.410706,1.5314864e-06 1645,2.901185,426.5438,52.956505,71.58032,6.698153e-07 1645,0.89619064,24.479082,17.132814,131.93019,4.9737156e-07 1645,515.96014,420.72852,72.50995,76.04999,4.2497516e-07 1645,0.5198458,9.576404,8.824661,85.60155,3.2838153e-07 1645,2.3035629,20.609821,55.72658,107.53015,2.4385193e-07 1645,1.26264,8.062852,29.359089,55.33189,5.2891004e-08 1646,294.86572,202.67064,41.550354,124.89357,0.053134102 1646,621.372,207.65898,17.774658,52.863297,0.0052126055 1646,580.8848,187.70547,33.2276,62.06662,0.004002855 1646,28.00155,276.66403,53.449524,112.74414,0.0030320678 1646,618.09143,159.3795,21.055237,78.471985,0.0021553796 1646,306.6101,227.68417,21.559174,48.976135,0.0009452449 1646,300.48166,260.737,22.975342,53.532257,0.00058033696 1646,1.7961882,305.74872,30.375748,142.00021,0.000549643 1646,1.2048397,328.71143,13.406967,49.23819,0.00047808475 1646,611.29956,196.48187,27.847107,140.40607,0.00047488933 1646,263.70258,186.51375,96.07736,233.7386,0.0004001135 1646,617.8909,292.73053,21.255737,77.844025,0.0003095145 1646,365.79205,184.88252,39.980713,88.94624,0.00024061506 1646,572.4408,126.40903,65.04443,233.604,0.0001609434 1646,1.0852051,276.23148,18.56677,79.45276,9.481922e-05 1646,616.4516,59.613987,22.695068,94.52666,8.760017e-05 1646,600.58264,66.556526,38.514282,194.551,7.3210846e-05 1646,0.89021325,359.4298,14.288651,54.431763,7.2523224e-05 1646,3.096162,334.7894,78.97574,144.82056,4.8864662e-05 1646,612.4822,369.4577,26.66449,125.0462,3.8900023e-05 1646,598.58246,8.43459,40.56421,75.30813,2.6339254e-05 1646,0.39452475,109.93547,18.8333,79.7117,2.3952634e-05 1646,261.87158,418.12827,74.59192,76.49478,1.8778346e-05 1646,0.8002873,387.7825,18.342945,76.73016,1.8614806e-05 1646,0.9799984,242.79279,13.452296,47.311005,1.361099e-05 1646,354.91104,151.00575,86.55417,193.63136,7.7700115e-06 1646,2.9910173,168.3643,59.212475,234.72658,5.7977e-06 1646,1.0114095,70.52537,32.03386,182.65656,5.237206e-06 1646,0.9320557,182.22789,18.231771,76.19545,4.9112177e-06 1646,1.0630314,441.84402,21.12444,60.91745,3.47889e-06 1646,0.84375,26.269793,17.219862,133.35918,1.6477147e-06 1646,556.095,419.88083,75.753296,78.48245,8.0097305e-07 1646,1.9612794,20.223555,56.883564,110.233,6.3856464e-07 1646,1.3263575,7.5660043,29.31217,54.992474,2.3045454e-08 1647,300.4607,215.49617,34.705353,101.442795,0.06027282 1647,621.2813,209.33955,17.865356,52.079758,0.010180898 1647,281.67004,173.89868,65.485565,188.90842,0.003828997 1647,622.3156,172.47966,16.831055,56.01776,0.0030485303 1647,611.5201,175.45914,27.626587,121.71796,0.0016962033 1647,581.41864,190.10483,32.856873,59.07364,0.0012691146 1647,1.1240462,320.7107,13.713733,51.948578,0.00083010556 1647,1.7741033,308.61108,30.00677,150.88788,0.000548467 1647,364.5282,180.18521,39.958984,93.474365,0.0004993651 1647,295.9165,267.08685,20.219238,45.63434,0.0004910824 1647,30.096071,285.3969,45.735847,92.72055,0.00041024928 1647,616.9978,123.61974,22.148865,81.38206,0.00033495863 1647,617.9647,299.1334,21.181946,78.97449,0.00031697948 1647,588.20825,169.37802,50.426025,231.44153,0.00013310983 1647,617.6076,385.43384,21.539062,81.37775,0.00011769465 1647,0.9266382,275.31653,18.720749,79.34894,0.00011710686 1647,599.8243,83.35322,38.69507,178.85638,0.000105723404 1647,4.4396224,233.07936,77.7204,237.28392,7.3167015e-05 1647,617.07135,48.410397,22.075317,90.355835,6.112226e-05 1647,609.1707,438.73862,29.975952,66.311554,3.308781e-05 1647,0.98162925,374.4017,13.846143,53.847565,2.496968e-05 1647,588.3014,316.3364,50.845276,167.28821,2.082264e-05 1647,255.86217,418.1985,74.42259,76.38089,1.7336024e-05 1647,0.9471143,385.51175,20.492416,112.15759,1.5986816e-05 1647,0.42490643,112.515915,18.715374,78.225525,1.4206375e-05 1647,1.0580574,202.97052,17.930891,74.14328,1.2410109e-05 1647,597.13074,6.5665464,42.01593,77.64067,1.0663072e-05 1647,353.02414,147.74527,90.38373,199.45923,9.747283e-06 1647,1.1053222,108.48778,34.409203,204.28755,3.5233977e-06 1647,555.79846,419.55606,75.64569,78.49368,8.89162e-07 1647,516.0418,419.5241,72.9953,77.290955,6.583977e-07 1647,0.87026775,24.646738,16.961218,132.28958,5.4356593e-07 1647,1.4719532,12.185352,36.00405,75.18526,1.5994547e-07 1648,297.56732,202.39828,38.47107,120.773895,0.1609534 1648,306.46375,233.23724,23.288849,55.224762,0.0059870053 1648,27.864046,271.24557,51.845108,149.40189,0.0044660624 1648,622.79193,172.1786,16.354736,54.49669,0.003669556 1648,264.11368,196.4991,80.541016,222.36403,0.0019176004 1648,295.64676,257.44006,21.741882,49.73581,0.0015501471 1648,585.66656,199.06982,25.024414,49.98427,0.0009981466 1648,611.06433,170.5482,28.082336,121.72203,0.0009128785 1648,105.991486,146.8175,73.400055,203.87897,0.0007723106 1648,617.7246,299.34335,21.422058,80.53424,0.00031081005 1648,364.4494,186.17361,38.4523,70.446594,0.0003033115 1648,1.1938136,305.26947,20.214209,135.41907,0.00021393059 1648,2.7020297,284.44043,49.764004,180.86566,0.00019756271 1648,617.7868,392.29358,21.359863,80.8844,0.00018010233 1648,587.7188,169.75055,50.28961,227.99973,0.00016932252 1648,0.85997355,348.0471,13.943184,51.566437,0.00013043534 1648,0.88883424,305.9048,13.554004,51.22827,0.000102466336 1648,1.0424373,265.95453,18.123066,71.464874,7.871036e-05 1648,301.13898,295.4166,72.8569,184.45764,6.129159e-05 1648,602.7645,281.34625,36.38214,190.09448,5.0468232e-05 1648,610.8959,53.497448,28.250793,163.10388,4.9336755e-05 1648,609.1824,438.05365,29.964294,66.534485,3.1345764e-05 1648,348.5394,151.92532,76.854645,168.42749,2.4902713e-05 1648,0.43659344,112.425186,18.61831,77.840805,1.9149009e-05 1648,0.7746883,403.40668,18.244755,73.87802,1.4865738e-05 1648,596.6043,5.3152866,42.54236,81.098724,1.2309236e-05 1648,0.97339845,202.17589,18.14785,76.39409,1.11046875e-05 1648,1.7706373,207.61075,34.13986,179.99484,8.207597e-06 1648,1.2127084,70.62851,32.3847,185.5839,5.2147884e-06 1648,0.6251945,159.7325,18.60048,76.675705,4.528164e-06 1648,555.5979,382.0726,83.44556,110.94086,1.9659124e-06 1648,0.9200016,25.065899,17.5496,128.33476,1.7646407e-06 1648,2.826421,422.3394,53.09308,75.43579,1.3324477e-06 1648,0.5080355,8.670124,9.74188,89.27052,5.758134e-07 1648,2.1206527,21.2297,55.624012,107.226555,4.4000345e-07 1648,3.8540463,48.956577,81.023735,324.16397,1.9003164e-07 1648,0.9592953,7.2977247,30.273628,57.676563,5.3634224e-08 1649,299.9347,232.10678,30.993622,86.9129,0.07299498 1649,283.45248,207.89935,54.913727,167.06067,0.024078676 1649,303.1413,197.71173,24.704132,51.12033,0.011499915 1649,35.933575,286.0735,43.060543,86.546936,0.0053263493 1649,622.20825,172.1201,16.938416,57.016617,0.0044570724 1649,294.0471,263.72678,22.659271,50.649292,0.0018420971 1649,130.44698,266.12732,26.04425,53.11902,0.0017483642 1649,584.8547,201.0277,25.718872,51.40747,0.0016544797 1649,610.40814,171.11855,28.724121,123.55501,0.0012414361 1649,112.07935,145.81895,69.8915,205.95522,0.0011082973 1649,361.36163,186.80669,37.614258,68.985535,0.0005377505 1649,617.7675,300.00046,21.37915,80.10782,0.00046195716 1649,272.80038,225.40027,111.5618,240.18536,0.00044450743 1649,2.925918,295.11163,58.96524,176.13187,0.0003915631 1649,1.2228442,305.73468,20.667393,135.51495,0.00036839218 1649,0.70860636,280.58975,13.162595,51.016083,0.0002826859 1649,587.7788,168.02841,49.934814,231.62924,0.00026846843 1649,309.67908,271.38022,43.682373,167.94958,0.00023477034 1649,1.1597148,327.44104,13.33686,49.892365,0.00023279547 1649,617.5455,390.42307,21.601196,84.25778,0.00017069597 1649,610.6615,69.84359,28.485168,155.17609,8.821047e-05 1649,261.75333,416.12634,75.09216,77.157196,4.4829274e-05 1649,609.17926,438.8347,29.967407,66.32797,4.0783594e-05 1649,588.1344,319.47635,51.012268,165.29178,3.6434165e-05 1649,347.05844,149.27252,75.97479,170.58441,2.4696385e-05 1649,0.8301815,388.24158,18.335777,78.164276,2.3783692e-05 1649,0.35151204,120.03005,18.613062,78.23214,1.6254531e-05 1649,1.3636296,234.77686,27.926556,145.16086,1.335258e-05 1649,597.3229,5.209134,41.82379,78.99428,1.2378384e-05 1649,1.0472258,209.97743,17.934385,73.98027,9.276013e-06 1649,1.2204949,76.15307,32.01695,186.27005,6.255598e-06 1649,0.74178225,167.87268,18.422705,76.11308,3.9951688e-06 1649,1.3631706,417.30255,34.632473,79.44855,2.2236547e-06 1649,555.84973,419.7899,76.48682,78.51892,8.8741183e-07 1649,2.0262728,20.804714,56.24545,112.19623,5.2630986e-07 1649,0.800341,28.18711,18.053995,135.05103,3.075436e-07 1649,0.95118654,7.342155,30.39921,56.704147,3.168656e-08 1650,279.12378,203.78123,55.217377,149.2917,0.078472726 1650,1.0251026,200.28423,36.936714,107.14366,0.050819915 1650,301.4674,196.57259,26.504242,52.068466,0.013198584 1650,299.95172,259.3697,22.128387,53.897858,0.005038103 1650,29.879103,274.84174,52.70926,127.04318,0.0040389993 1650,591.4345,199.6193,24.595947,48.44014,0.0034669843 1650,1.4164934,242.30229,20.731041,97.160446,0.0019414774 1650,0.9578882,194.63916,17.058313,67.27887,0.0012917729 1650,610.33386,173.53629,28.731384,120.06186,0.0011535722 1650,0.99826133,232.56543,13.549131,48.59375,0.0010666591 1650,254.71524,164.8988,119.803894,278.35464,0.0005187426 1650,1.1223015,217.22963,57.675575,241.65935,0.00042092032 1650,299.49228,247.24973,44.246185,191.12299,0.00040884715 1650,617.6991,299.6727,21.44757,78.775665,0.00039710818 1650,588.4218,171.0542,49.590515,229.3339,0.0002437552 1650,1.1882496,302.49414,19.754179,138.00711,0.00010389806 1650,612.2482,348.373,26.898438,114.13925,9.7841235e-05 1650,601.146,55.95657,37.81494,195.41031,7.788141e-05 1650,267.7119,413.7514,74.6398,80.52542,4.7265148e-05 1650,609.0724,439.00568,30.07428,65.99237,3.788478e-05 1650,0.48136067,123.14458,20.598198,93.76175,3.214504e-05 1650,585.08264,388.74207,54.064026,105.95499,1.4290434e-05 1650,0.7033122,389.1454,18.311972,75.43503,1.3058939e-05 1650,597.43713,7.5719824,41.709534,77.438736,1.0745289e-05 1650,342.71216,142.0892,95.62662,221.06671,9.767121e-06 1650,1.3928158,40.213295,57.780064,270.1878,6.640581e-06 1650,3.3034506,382.9976,55.56401,107.2995,4.642262e-06 1650,0.8952865,21.084702,28.89605,156.71434,1.3665692e-06 1650,1.0341048,7.9500165,29.734251,57.3429,4.66838e-08 1651,293.37314,210.78766,40.527405,130.95935,0.07716663 1651,2.1221192,198.65446,28.989985,79.47139,0.009188876 1651,302.5241,207.23573,27.531311,58.99745,0.008602164 1651,175.48242,359.0725,27.451248,52.866272,0.0046962057 1651,17.352077,208.10835,26.93341,57.035355,0.0035218052 1651,581.6503,190.30336,31.782166,58.615295,0.003048199 1651,6.6786327,211.16106,44.701973,110.942764,0.0021687096 1651,272.0439,194.8447,90.62552,206.34064,0.0013887582 1651,0.59464926,277.39578,14.557327,59.373566,0.0010987711 1651,617.45435,205.83028,21.692322,80.17955,0.0009464655 1651,617.71454,299.39526,21.432129,78.46536,0.00036300646 1651,1.0910181,230.04495,14.162264,55.79361,0.0003585488 1651,611.6469,103.23592,27.444641,135.13644,0.00026479186 1651,587.1487,139.28206,49.8479,212.09596,0.00022070503 1651,1.231565,233.59927,21.00256,145.83688,0.00020300374 1651,4.0456448,176.46402,77.64222,254.38663,0.00017304439 1651,617.6235,391.78912,21.523193,82.135376,0.00015036626 1651,616.9368,56.168537,22.209839,91.92766,6.8805726e-05 1651,1.1193441,134.3124,18.554075,82.37222,5.702841e-05 1651,609.1821,439.4473,29.964539,65.163025,3.5919933e-05 1651,587.79004,316.75427,51.35663,166.78876,3.4750345e-05 1651,1.4487989,299.26843,33.3174,178.60281,9.696365e-06 1651,0.929812,390.97498,18.094109,73.77023,9.541467e-06 1651,597.307,6.012018,41.83966,81.26758,7.56154e-06 1651,340.16013,145.57748,98.29239,212.22845,6.7596575e-06 1651,1.0529273,346.55038,18.566978,76.78784,4.3271134e-06 1651,2.2308595,27.58741,61.481792,272.28317,1.7013034e-06 1651,1.5811003,419.49893,34.199078,77.89859,1.2747668e-06 1651,1.0712574,42.287994,20.875917,121.567505,8.9353136e-07 1651,556.0657,421.56448,75.31177,76.59424,8.865085e-07 1651,0.5404696,9.967748,8.869936,84.77543,2.1709499e-07 1651,1.5042416,12.47597,36.177853,74.27662,1.1787681e-07 1652,295.94678,196.18285,39.325897,110.194534,0.18957575 1652,305.3449,299.78937,31.30545,64.811646,0.042591747 1652,7.4099255,271.38382,33.154846,85.811005,0.012960947 1652,314.78207,205.67702,25.210083,52.604324,0.011858765 1652,621.62964,198.08563,17.517029,54.500122,0.0049022534 1652,306.5708,224.31831,22.130066,51.064438,0.0038271933 1652,1.3956828,289.25403,14.14348,61.638,0.003776955 1652,609.8822,172.81302,29.085266,129.8522,0.0024013524 1652,584.7176,180.21706,26.67517,55.614777,0.002222265 1652,186.36113,300.90106,32.925705,66.84073,0.0019248523 1652,592.2119,190.4571,36.553223,66.81499,0.0018400254 1652,4.3051696,227.01602,65.70828,173.8916,0.0018084715 1652,208.32726,218.15324,24.093643,61.163223,0.0014956628 1652,0.9006022,183.24129,18.485014,81.9019,0.0009984056 1652,177.82156,152.45381,37.63156,98.59018,0.00067956344 1652,292.84872,192.86212,24.72699,58.18216,0.0005522101 1652,174.88284,213.74583,37.778,155.83147,0.00047808298 1652,62.399612,183.74393,43.86435,119.866974,0.00043969048 1652,1.7997706,173.50575,29.397223,168.36464,0.00035921484 1652,617.1536,321.03564,21.993042,86.74359,0.0002673175 1652,270.27496,188.06908,98.089264,195.41856,0.00026500507 1652,571.5231,117.80719,65.753235,257.05078,0.00024781466 1652,2.0048811,289.9276,33.06478,186.94302,0.00024197805 1652,601.009,234.99391,38.137695,199.85204,0.0002239618 1652,617.5808,391.35953,21.565857,82.381165,0.00017738451 1652,0.84721684,342.7269,18.618362,77.91577,4.6362184e-05 1652,611.16675,60.015846,27.97992,162.08087,3.5464844e-05 1652,0.94238853,98.28488,20.859064,125.07231,2.9610635e-05 1652,609.51,438.8297,29.636658,65.45224,2.8669845e-05 1652,596.7684,5.3762436,42.378296,78.91861,2.0126177e-05 1652,0.6784424,390.3401,18.311005,74.92819,1.15148605e-05 1652,572.54816,358.69827,66.59851,129.38684,7.859893e-06 1652,1.0469385,442.13553,21.84789,60.60553,3.0703209e-06 1652,2.2328613,34.05672,61.42113,251.42085,3.4568956e-07 1652,1.3759506,11.352956,35.922764,76.95812,1.2327516e-07 1653,200.6305,210.07466,41.79698,93.97362,0.027971026 1653,311.35098,276.02042,27.009247,59.264038,0.012629922 1653,314.757,208.47934,25.61383,57.427124,0.011654467 1653,299.07062,185.46613,38.128174,150.8071,0.009353025 1653,608.33,163.53012,29.832642,68.74597,0.0051002204 1653,621.099,201.41275,18.047668,53.655075,0.0038928066 1653,593.6224,187.2429,35.079773,71.81438,0.0031378146 1653,224.27501,292.48663,24.53749,54.60016,0.0026484204 1653,90.43134,236.08151,31.015991,70.278534,0.0024886336 1653,279.1507,290.19348,22.476227,48.83731,0.0021688545 1653,1.6112288,199.0426,32.4318,78.151825,0.001786731 1653,46.310123,190.43805,86.476166,163.06653,0.0014478078 1653,622.3069,415.85114,16.839783,48.112885,0.001398316 1653,189.3558,142.25885,45.87683,125.890656,0.0011604354 1653,214.87312,220.07625,24.230652,47.260056,0.0010987805 1653,61.636494,277.8915,35.69939,82.63937,0.0005869707 1653,586.34534,135.40178,51.51465,222.79936,0.00050371716 1653,1.335328,149.88332,17.897394,75.80286,0.0003959823 1653,98.765434,200.20026,36.109734,87.31799,0.00038956405 1653,609.1244,434.8845,30.022278,67.42807,0.00029151887 1653,622.0802,357.3002,17.066467,49.5224,0.0001582433 1653,73.4013,196.27588,24.825417,52.427094,0.00011012382 1653,3.6478631,163.78265,55.922478,215.6268,0.000100252066 1653,611.4068,228.22238,27.739868,160.57657,8.1328806e-05 1653,1.1832854,217.457,19.9299,142.78967,7.468499e-05 1653,588.70197,344.09708,50.400146,139.54407,3.9388753e-05 1653,308.96173,195.12758,71.75598,168.03664,3.7609534e-05 1653,1.2274789,322.84015,20.307568,132.17767,1.1281594e-05 1653,609.8649,19.461596,29.281738,187.28871,1.0369321e-05 1653,597.41797,5.660277,41.7287,79.7887,8.352159e-06 1653,343.6561,155.2009,99.4187,197.50497,3.778216e-06 1653,0.7895899,422.38208,16.95789,79.67438,3.2840742e-06 1653,5.2062144,342.46295,77.81744,143.43243,2.4089618e-06 1653,1.4849317,43.20622,32.295834,203.94594,1.0160652e-06 1653,2.7889225,428.5067,53.145668,70.53403,4.034588e-07 1653,0.55435383,9.909066,8.773564,83.65143,2.7052147e-07 1653,2.440573,17.173367,57.037056,118.02327,2.3198585e-07 1653,1.307308,7.760031,29.252916,54.975163,2.8365644e-08 1654,107.71406,202.39253,35.85296,72.84801,0.25070453 1654,318.57217,196.76678,32.43463,76.573425,0.021228332 1654,93.03271,276.6575,25.31034,56.864807,0.008512573 1654,293.33487,285.7913,22.267181,45.79709,0.0063974904 1654,243.9962,279.9382,21.971634,53.091858,0.0022890258 1654,620.50555,179.02977,18.641113,59.851562,0.0021054372 1654,223.42172,212.29584,33.785828,80.11221,0.0019922976 1654,0.8737826,203.84595,18.715878,85.62207,0.0018808556 1654,602.1924,143.87897,35.73065,131.43887,0.0018233366 1654,313.54703,233.996,34.64917,94.835785,0.0014503656 1654,83.89188,204.51425,44.991898,143.10928,0.0007535172 1654,615.919,211.51822,23.227661,84.80258,0.0006611579 1654,621.7815,391.4356,17.365173,58.28592,0.00053240923 1654,228.87599,164.97331,25.141846,56.224686,0.00045295825 1654,206.17,151.90465,38.978134,90.96065,0.0004140635 1654,608.5592,434.4855,30.587463,67.840454,0.00039255506 1654,589.54443,201.82593,49.36786,255.64658,0.00028845307 1654,611.3961,336.87912,27.75055,135.9772,0.00019973489 1654,2.161818,166.07423,33.49123,175.35439,0.00012799924 1654,304.04266,188.72607,68.09491,164.8388,0.0001252079 1654,1.1820825,244.38431,19.853956,130.54865,5.59591e-05 1654,4.453112,130.43452,76.5661,263.00232,3.8042705e-05 1654,0.7401986,286.665,13.385736,48.54547,3.5857232e-05 1654,1.0350016,108.56602,21.150494,117.74114,3.0890034e-05 1654,610.0492,19.842768,29.097473,174.02165,2.6616814e-05 1654,60.90849,148.23428,135.74112,251.98938,1.9458837e-05 1654,3.507723,265.91043,55.58244,207.11542,1.6421465e-05 1654,0.981897,323.9381,20.196959,132.42795,1.2486514e-05 1654,597.0027,4.4261003,42.143982,82.26876,8.295401e-06 1654,0.7807251,421.5853,16.903898,80.6503,3.204696e-06 1654,355.3912,157.58536,96.872406,195.69366,3.18003e-06 1654,2.7795053,428.12878,53.140755,70.93622,3.797077e-07 1654,0.8792847,19.864792,16.772692,127.47255,2.1454323e-07 1654,2.6010108,18.185205,56.137627,118.17681,1.1564802e-07 1654,1.3191375,8.58556,29.063429,54.43242,1.8358653e-08 1655,315.2782,267.65637,28.890472,58.99118,0.76108414 1655,77.762344,285.35782,20.310318,46.528656,0.059018675 1655,309.60458,186.1602,40.74295,138.58214,0.015914422 1655,611.04047,182.41846,25.341064,48.74063,0.0034876699 1655,616.52997,213.36673,22.6167,81.74841,0.0009878747 1655,600.17633,111.51896,37.54059,166.35449,0.00091157015 1655,194.99045,147.7213,40.470627,97.358,0.000846678 1655,222.13339,205.78477,35.83432,84.99565,0.0007390825 1655,240.236,276.1013,28.989471,60.279236,0.00060116703 1655,617.11615,372.94403,22.030518,87.43811,0.0005934831 1655,0.82020104,229.44785,17.954967,81.13165,0.0005823472 1655,306.46103,196.3151,26.157288,59.326004,0.00045437214 1655,1.060979,148.37134,18.021084,74.49747,0.0004108405 1655,79.396164,214.34584,45.699753,130.31615,0.00033736718 1655,617.5482,96.46937,21.59845,79.93331,0.00031567027 1655,602.67706,201.0656,36.469604,205.03523,0.000194889 1655,609.6863,430.51666,29.460388,72.7294,0.00012377987 1655,283.15604,159.31506,103.4494,195.93503,7.763107e-05 1655,107.73834,203.19878,33.967697,74.291885,6.6085e-05 1655,1.6611223,172.49565,33.326267,176.53078,6.122844e-05 1655,588.1363,333.4383,50.927307,149.681,4.5823796e-05 1655,5.3914814,135.60522,76.31391,263.28635,3.4435223e-05 1655,3.4358187,277.7554,55.920986,197.5282,1.6930366e-05 1655,616.5287,31.65671,22.617981,89.42891,1.6095033e-05 1655,358.13306,151.08623,75.717865,159.4315,1.557956e-05 1655,0.95595545,284.25214,18.227173,74.407715,1.4221436e-05 1655,0.80868655,398.66293,18.180952,73.9151,1.12210655e-05 1655,0.9949032,336.1144,18.26734,74.6178,6.808413e-06 1655,1.0135685,441.63303,22.189335,60.54074,3.7719446e-06 1655,587.1583,6.354727,51.988342,137.77293,2.8347606e-06 1655,1.3688835,46.73909,32.322098,190.38602,1.9631357e-06 1655,6.475023,396.09268,90.21599,96.16489,8.2274687e-07 1655,2.199541,16.801334,56.7797,122.444016,3.6921352e-07 1655,0.52725387,9.518425,8.814413,85.30013,2.450226e-07 1655,1.0460662,7.5175557,29.747002,56.50556,3.5409915e-08 1656,318.4716,280.43103,28.93039,51.182068,0.7601199 1656,62.648197,248.69354,36.295834,86.40454,0.016196577 1656,621.23364,193.2707,17.913025,52.45523,0.00801531 1656,309.2661,212.5,42.446747,132.35153,0.007241907 1656,620.96313,416.3706,18.183533,60.832214,0.0057673533 1656,611.9825,128.7362,26.904175,122.16745,0.002913452 1656,207.17537,202.35283,37.564865,91.5587,0.0024755984 1656,191.69981,139.21152,40.06581,95.48245,0.0021529044 1656,1.3016391,218.20238,17.825693,81.203476,0.0020720316 1656,75.07106,174.87619,37.395256,93.55502,0.0014986453 1656,45.65171,196.63042,71.815926,151.00188,0.001105328 1656,229.96446,286.6159,24.077972,56.635193,0.0010214796 1656,35.499676,293.2295,41.49304,87.26639,0.0007963127 1656,4.5816684,196.97989,57.836555,220.7811,0.0003942764 1656,443.62817,108.826866,40.846252,123.161766,0.00031931876 1656,610.3234,282.9826,28.823242,150.17792,0.0002817321 1656,619.98676,321.9759,19.159912,64.033966,0.00025397487 1656,616.6014,84.3393,22.545288,88.18014,0.00021603616 1656,189.83823,167.11998,74.36847,172.81123,0.00020820068 1656,1.28851,149.07277,20.317627,110.88402,0.00019303794 1656,612.1432,192.68147,27.003479,158.17207,0.00018168565 1656,599.00836,401.22192,40.138306,97.37033,0.00014906227 1656,587.92303,95.499016,51.052246,227.89816,8.590337e-05 1656,1.8777572,255.18182,27.689482,138.17966,6.113334e-05 1656,68.47788,222.75803,23.263863,47.620117,4.5215573e-05 1656,1.0157707,326.34442,20.583736,135.14246,3.7082504e-05 1656,291.5269,173.81349,104.616394,212.37688,2.6155874e-05 1656,597.705,6.570046,41.44165,77.852135,1.0978077e-05 1656,0.6509042,412.39645,13.670929,47.537292,6.942115e-06 1656,4.6042676,328.65994,79.03853,157.67767,4.522752e-06 1656,0.9350204,442.40002,21.793282,60.79889,3.0619635e-06 1656,0.9672624,50.513493,19.146101,151.85358,1.4477823e-06 1656,2.5048325,35.70116,60.300247,251.56248,4.8312944e-07 1656,2.794328,429.19803,53.582737,69.99957,3.8580788e-07 1656,1.4073699,11.111387,35.486843,74.3019,5.5514253e-08 1657,309.3782,202.46878,35.14737,83.7738,0.05683446 1657,304.00873,299.55396,19.392426,45.72812,0.050170336 1657,621.3866,184.34459,17.76007,54.20784,0.021255227 1657,1.6932617,220.0419,29.689222,168.39117,0.018015934 1657,312.74783,292.29684,29.108856,56.952118,0.016464418 1657,190.05075,224.56032,25.262497,63.39479,0.013086174 1657,1.0924577,297.31982,14.580022,61.6727,0.006781512 1657,29.12944,202.27007,28.696194,65.63475,0.0025868022 1657,192.39227,198.40132,46.135727,113.56206,0.002185002 1657,216.49821,299.15924,24.717697,58.59311,0.0015412014 1657,0.98349124,187.61803,18.31274,80.33824,0.0015095294 1657,611.6969,107.20698,27.449768,143.34674,0.00122846 1657,49.422215,208.86253,25.903675,55.80861,0.0011745105 1657,319.47235,212.53943,38.968018,145.32874,0.0011705043 1657,5.0597267,125.12116,75.27937,275.23962,0.00069889985 1657,162.91338,130.53166,44.01219,153.65117,0.00062340306 1657,621.0511,137.30263,18.095581,60.099564,0.00055144285 1657,74.011536,265.21335,44.419678,112.46951,0.0004846728 1657,1.9719646,278.6194,54.987606,183.36755,0.00043673546 1657,1.2019507,302.29376,19.657927,153.22308,0.00042835527 1657,611.761,330.2317,27.385681,121.87161,0.00036282922 1657,361.15262,194.92935,38.999115,66.941986,0.0003587345 1657,612.47107,195.16841,26.675598,153.2953,0.0003279497 1657,201.82684,255.52834,26.5215,54.376877,0.0003156429 1657,587.97736,226.60251,51.065796,246.16861,0.000104098806 1657,35.687183,183.35765,46.5814,135.9598,8.944146e-05 1657,275.32574,165.62157,107.478485,205.2383,8.706356e-05 1657,1.1634204,135.05733,18.632303,77.86763,6.8119196e-05 1657,609.4131,431.446,29.733582,72.64346,6.718621e-05 1657,0.5466585,392.93552,14.052059,50.112244,4.629648e-05 1657,1.5433562,86.71805,35.500618,199.68787,3.5509278e-05 1657,573.9111,92.42163,65.142334,254.40085,3.1629836e-05 1657,350.82822,148.67422,76.93768,160.0062,1.6218159e-05 1657,597.834,5.861237,41.312683,77.44112,1.5403812e-05 1657,0.65912926,417.49088,16.992998,84.59967,5.679926e-06 1657,555.9265,419.93924,78.53186,78.74722,1.7442217e-06 1657,0.92359704,47.067024,20.960775,121.67097,1.1842719e-06 1657,2.5234196,425.3572,53.209396,73.590576,5.0779016e-07 1657,1.4521176,11.547018,35.888866,74.20817,1.5228287e-07 1658,299.22647,311.1034,22.023346,48.613556,0.08023359 1658,303.07056,205.0567,35.53534,84.38599,0.0464944 1658,621.0638,172.22551,18.082886,59.26538,0.022905003 1658,615.78253,201.7509,23.364136,56.792557,0.02001537 1658,301.6414,284.88092,42.26599,78.4877,0.016442576 1658,159.9435,220.64719,31.978653,79.01364,0.004514557 1658,612.5896,108.056366,26.557068,140.21341,0.003602772 1658,621.34576,416.95367,17.800903,55.336975,0.002232024 1658,279.7838,189.15308,71.035614,172.9382,0.0016430455 1658,42.49435,279.40875,42.74551,90.00232,0.0011689926 1658,621.85175,137.84532,17.294922,58.746475,0.0010755173 1658,176.6716,217.52852,41.7901,147.59914,0.00056030834 1658,611.92804,346.95694,27.218628,135.30463,0.00046759378 1658,198.2232,301.77264,34.413467,69.28378,0.00038779445 1658,1.112611,316.14096,13.445492,49.795685,0.00029190615 1658,612.83246,190.54456,26.314209,171.43393,0.00016235457 1658,356.03024,183.72493,42.96454,88.89009,0.00013411074 1658,1.2615951,300.5937,19.72303,129.88513,0.00012514868 1658,5.993314,275.0596,78.04089,187.49448,0.000109789835 1658,575.0041,414.4786,63.861267,82.219635,8.83616e-05 1658,0.88520753,348.51523,13.982189,52.13974,7.77798e-05 1658,572.8166,116.429146,65.88391,268.2736,5.8282734e-05 1658,1.1748755,264.45502,18.061241,78.24716,2.2798507e-05 1658,1.1485865,202.4857,17.934126,73.98717,1.4269121e-05 1658,0.77900475,388.35065,18.29414,76.66327,1.2941988e-05 1658,597.4711,5.6669955,41.675537,77.0604,1.2672679e-05 1658,1.7568783,217.25615,32.404457,174.48311,7.129986e-06 1658,343.69812,145.37659,93.46158,202.56561,7.0983156e-06 1658,0.45268148,115.7537,18.709042,78.038155,7.097152e-06 1658,1.2543294,72.41125,32.18507,187.75525,2.501143e-06 1658,2.9649267,386.72507,55.670345,105.059265,1.764193e-06 1658,0.84008545,49.78672,20.31047,106.386955,6.025685e-07 1658,2.0772185,19.975473,57.14109,105.132706,4.5693466e-07 1658,4.33583,57.262215,80.17457,296.27136,3.9501433e-07 1658,1.1216114,7.934515,29.65516,55.97165,3.9917218e-08 1659,297.5859,326.5904,19.838776,45.924286,0.03568784 1659,3.2829525,298.9688,38.42185,82.07541,0.021287516 1659,301.98242,307.2116,37.770447,69.79663,0.0046454454 1659,140.96611,232.3593,30.024734,77.764206,0.002240792 1659,293.01517,194.14125,54.838135,168.34877,0.0018071991 1659,618.11755,170.06868,21.029114,70.380646,0.0015947932 1659,613.2256,389.15985,25.921082,108.73996,0.00087842875 1659,1.3375635,307.23257,13.658624,52.794373,0.0008549305 1659,621.5374,347.94028,17.609253,55.713623,0.0005061426 1659,358.04504,194.94984,40.771698,68.0226,0.00044576914 1659,618.17163,218.30148,20.975037,84.661194,0.0003540223 1659,155.70547,223.36,35.73253,87.15657,0.00031382873 1659,187.5039,315.88913,32.069275,70.038574,0.00025019882 1659,611.4301,63.790966,27.716553,157.53229,0.00017319115 1659,610.4335,297.11057,28.713196,148.9383,0.00014390242 1659,588.59845,161.04187,50.30774,264.38422,9.3326926e-05 1659,1.9530209,245.62543,56.365692,197.82693,5.752625e-05 1659,117.56563,187.42847,106.06503,229.36124,3.444209e-05 1659,597.5502,7.246657,41.596497,77.684906,3.195413e-05 1659,346.43073,147.72247,76.15372,157.62888,2.655475e-05 1659,0.4368034,372.91864,19.368002,83.824646,2.6509812e-05 1659,556.23816,389.30005,81.54047,101.374695,2.5759406e-05 1659,1.8161467,256.33606,18.22466,76.274445,1.2185057e-05 1659,0.62190515,102.33997,18.562504,77.32006,1.0284074e-05 1659,1.0451465,196.10052,18.07595,75.676605,9.10705e-06 1659,0.747487,146.63222,18.546019,73.24396,5.2350388e-06 1659,0.6852759,417.97736,17.4546,84.49573,4.8927427e-06 1659,1.3972201,91.75122,33.80063,192.5267,2.88611e-06 1659,2.4421582,388.80002,55.60327,104.51947,1.5279793e-06 1659,0.22118369,354.23196,12.487162,49.20282,8.914698e-07 1659,5.029535,33.949154,80.03307,297.37875,7.00222e-07 1659,0.8385889,20.772194,16.65176,118.337,4.0227937e-07 1659,2.1749642,18.11164,57.04561,112.44433,3.1816904e-07 1659,1.1186898,7.4459767,29.528015,55.079475,3.5859724e-08 1660,294.58176,333.1541,19.97406,47.76062,0.033632886 1660,122.26485,266.47214,21.191498,54.568542,0.015759667 1660,621.4101,420.70737,17.736572,55.60269,0.0061526103 1660,301.96002,306.35703,39.74344,79.04993,0.0033358596 1660,299.51782,193.0614,41.90509,168.81357,0.0026529473 1660,621.9071,159.51573,17.239563,50.719345,0.0025443733 1660,83.23638,243.14258,33.686134,77.80838,0.0017389209 1660,356.2002,181.45813,38.021362,70.507034,0.0016919092 1660,611.7414,141.48613,27.405273,118.71541,0.00085124746 1660,0.7042554,140.99744,26.293856,71.66307,0.000659159 1660,80.74655,114.07645,80.882095,212.87772,0.00063168566 1660,5.886836,117.13472,77.78627,261.88226,0.0006231106 1660,0.8219483,85.63983,18.73897,78.777725,0.0005141235 1660,617.3169,211.37856,21.829773,86.08226,0.00048172555 1660,2.2489567,193.60144,32.54757,172.72906,0.0004246004 1660,112.60159,215.93175,38.886566,114.241745,0.00031457396 1660,611.8135,339.5222,27.33319,141.1081,0.00022704109 1660,320.4713,229.32083,40.244843,158.29688,0.00021403425 1660,617.4102,276.23203,21.73645,89.675964,0.00020257168 1660,1.1759042,232.52574,18.599058,82.821304,0.00015188356 1660,589.83496,175.721,49.099182,259.92096,0.000104603256 1660,1.3363518,314.28995,17.791838,70.65741,9.387877e-05 1660,41.58935,196.64404,86.02774,183.8739,6.693762e-05 1660,3.7728322,264.9822,56.739273,201.57974,4.4981905e-05 1660,575.0931,416.77805,63.990112,80.1788,4.4344626e-05 1660,599.86456,23.866192,39.282104,196.62056,3.7553626e-05 1660,295.1677,190.71721,111.24338,240.22078,2.2090919e-05 1660,346.00174,140.6541,75.48529,165.93864,2.1369679e-05 1660,597.38165,5.1091113,41.765015,79.11148,1.2338582e-05 1660,0.93934005,347.2965,19.323437,134.52023,1.1978505e-05 1660,0.6733464,425.96588,13.513101,46.861847,7.409474e-06 1660,0.8606446,59.606113,34.08381,204.69049,4.721631e-06 1660,0.91625243,442.40735,21.889683,61.072723,1.9169759e-06 1660,1.7406023,16.477415,57.798817,124.68204,4.001153e-07 1660,0.48373008,8.968897,9.13029,89.25886,2.0425483e-07 1660,1.0319222,7.0278907,30.41862,58.616848,3.7016807e-08 1661,99.478325,213.84343,24.873695,57.19191,0.023301719 1661,292.78702,208.88512,43.406677,116.24248,0.020910569 1661,619.0104,295.14026,20.136292,66.78757,0.007855069 1661,622.3815,419.04126,16.765198,50.829315,0.007132169 1661,620.6933,204.55914,18.45337,54.316833,0.0051705977 1661,75.3194,206.75497,41.750412,134.14716,0.0049761445 1661,26.555267,270.71426,40.628265,74.499146,0.0044726944 1661,611.2957,176.48485,27.850952,140.67403,0.003927062 1661,609.89124,280.32114,29.255432,161.25467,0.0018587556 1661,1.1699992,260.54578,20.42772,90.94452,0.0016961257 1661,294.28812,330.0901,34.336212,66.360504,0.0014028653 1661,1.5412223,197.31548,33.733433,192.42867,0.0008090286 1661,613.0956,382.87457,26.051086,112.525696,0.00040646052 1661,159.83633,323.08572,31.753693,73.549225,0.00038162654 1661,611.191,101.86815,27.955688,136.46005,0.00037237472 1661,0.6010002,89.92467,19.7922,82.61539,0.00036166018 1661,354.60803,181.1509,43.955475,89.24608,0.00030323054 1661,4.216185,153.03862,78.58746,263.79004,0.00019220267 1661,46.254353,167.56313,107.42822,217.32481,0.00016485578 1661,572.5447,197.29013,66.60199,268.41885,0.00015662212 1661,92.56703,276.70966,23.360443,57.730286,0.00014815878 1661,1.0527377,101.04398,28.799063,156.05597,9.949031e-05 1661,0.60238934,365.8297,18.969418,84.34961,9.3400384e-05 1661,276.4071,183.52594,102.903595,208.19641,8.898425e-05 1661,2.5757732,284.4616,55.222893,187.77414,6.870311e-05 1661,0.73700845,201.72212,13.889426,49.70233,5.87362e-05 1661,0.77141684,228.77386,13.8072195,51.843994,4.0657695e-05 1661,0.56300783,136.78467,14.210293,51.569427,3.5091805e-05 1661,596.7385,4.8180633,42.408142,78.58127,2.5985117e-05 1661,0.85592854,307.03564,20.007008,100.82727,1.940328e-05 1661,109.096825,234.6924,78.71987,189.71309,1.2809471e-05 1661,554.3878,413.27805,80.428894,81.32034,1.1715059e-05 1661,344.98007,144.2434,88.61578,201.3777,1.1191867e-05 1661,0.70441896,418.62302,16.99602,83.63211,3.2284327e-06 1661,1.2489926,13.927091,58.636395,129.64015,1.1134291e-06 1661,2.612417,425.08325,53.21579,73.24896,4.6007332e-07 1661,515.54785,418.18835,75.73706,78.192505,4.298567e-07 1661,0.46616903,8.8918495,8.7799015,91.09073,3.3077913e-07 1661,1.0813428,7.2782063,29.866236,58.202026,4.158674e-08 1662,294.1601,221.56787,39.44586,95.88614,0.2125762 1662,21.233776,302.4654,19.89204,53.071045,0.19759904 1662,4.8281627,241.13428,41.680904,117.357605,0.016389735 1662,303.32648,209.00066,26.428772,56.246506,0.006061319 1662,57.75784,219.17412,27.133923,63.36119,0.005457439 1662,22.342113,201.51639,72.5992,188.43335,0.0037346778 1662,6.738131,305.76968,25.532656,58.625305,0.0030161429 1662,0.5379297,190.65889,19.582096,84.96077,0.0014292984 1662,351.96783,182.0228,40.281403,73.553024,0.0012635327 1662,265.01465,194.24121,78.86801,180.36945,0.0012558731 1662,1.6796916,246.9637,19.500027,88.75874,0.0011511282 1662,609.97437,94.76314,29.081482,139.60632,0.0010651018 1662,0.70378256,130.85048,20.593666,82.263855,0.0003913798 1662,613.6224,384.63672,25.524292,113.21445,0.00036079963 1662,617.4342,218.67711,21.712463,84.46025,0.00026890633 1662,1.0862029,102.96901,36.07375,227.75496,0.00022598909 1662,611.2745,296.38425,27.872192,147.53946,0.00016027162 1662,1.7074829,294.0014,20.816696,140.45435,0.00015737418 1662,1.4885083,313.74307,13.855291,53.733704,0.00015673522 1662,588.00256,124.35016,50.397583,231.93088,0.00014949647 1662,297.7209,354.75235,23.629852,48.903687,7.346851e-05 1662,0.87626547,354.70746,14.056438,52.50937,1.8786479e-05 1662,0.65021974,45.756042,23.053818,120.1862,1.6723166e-05 1662,345.75876,148.16446,74.522095,162.84875,1.6358006e-05 1662,597.19995,6.381146,41.946716,77.34104,1.6079415e-05 1662,99.40087,235.47995,74.65508,193.69571,1.4975589e-05 1662,0.8545703,382.31662,18.276377,77.32538,9.492691e-06 1662,4.4528127,327.62036,78.28186,154.83127,8.000741e-06 1662,1.5785433,16.078217,56.294907,130.4709,2.3531222e-06 1662,1.2959261,417.97153,33.25747,79.61453,1.3405718e-06 1662,542.9062,420.8272,77.56207,75.06259,7.736453e-07 1662,1.074777,7.316309,29.666557,56.750465,2.3060402e-08 1663,304.8628,227.90074,29.003815,59.47307,0.12829682 1663,289.75864,201.1124,41.627777,129.27548,0.0055343816 1663,357.3453,186.04802,41.657013,72.44939,0.002515093 1663,1.9444044,180.66116,54.777733,245.76663,0.0023634878 1663,621.3348,351.02933,17.81189,60.922577,0.0023011863 1663,293.8358,225.54376,66.99417,204.02505,0.00098989 1663,610.86053,94.35491,28.286133,147.45575,0.0007912885 1663,1.535673,167.49483,19.197895,88.60243,0.0006098547 1663,610.53925,293.84048,28.607422,149.94421,0.0005900609 1663,0.29335937,348.4925,15.893694,67.799225,0.0005289537 1663,76.52306,214.28249,38.923218,67.21275,0.00048113283 1663,620.99036,146.53856,18.156311,60.807816,0.00042045853 1663,612.3831,176.64151,26.76355,135.71173,0.00027413655 1663,1.2253492,243.80103,20.57879,162.63385,0.0002638728 1663,613.8962,385.03577,25.250488,110.455505,0.00024749464 1663,587.95197,122.48673,50.918335,249.92786,0.00014733014 1663,1.7142725,88.47199,35.353905,206.31403,9.346793e-05 1663,67.58908,244.21164,85.28163,195.66452,7.6536926e-05 1663,0.50506103,378.25122,18.953556,83.128784,6.850644e-05 1663,0.54104656,307.79617,34.3471,177.67447,6.383189e-05 1663,346.35303,144.63672,75.40042,165.13083,2.622246e-05 1663,597.4406,6.016221,41.706055,79.4777,1.3805675e-05 1663,279.15695,196.6706,24.717499,52.133865,7.2503112e-06 1663,0.76007813,52.68481,21.233913,126.63965,6.240106e-06 1663,0.5844625,327.98093,12.385064,50.204865,4.613697e-06 1663,0.71899253,440.4593,22.099993,63.873444,2.5363372e-06 1663,2.4047625,425.00287,53.17024,74.75882,6.808008e-07 1663,1.9845068,18.528896,56.7636,116.00293,2.5851375e-07 1663,1.0527539,7.9732685,30.122606,57.394966,3.5597903e-08 1664,303.28433,229.85849,26.50824,58.557587,0.13990092 1664,55.80263,200.3982,37.331326,73.85266,0.01258885 1664,299.79504,200.93756,39.269836,143.79483,0.008261241 1664,620.89386,209.56432,18.252808,49.681137,0.005950129 1664,622.1997,158.45692,16.94696,55.3759,0.0054140724 1664,611.7836,128.36664,27.257874,126.15697,0.0021845975 1664,288.51044,382.41214,22.307983,46.681244,0.0011271737 1664,616.67926,374.75232,22.467407,88.2569,0.0010477564 1664,606.1024,207.27121,23.894043,45.394424,0.00073046365 1664,1.4671199,167.083,18.10025,76.17871,0.00066103303 1664,363.4023,190.42267,39.474,71.86188,0.00045306448 1664,41.44124,154.34628,81.70241,206.38559,0.00039973515 1664,269.8707,200.48886,98.937775,217.13687,0.00033654424 1664,79.65043,274.27585,36.083466,74.42618,0.00030675984 1664,277.5419,199.6118,40.1951,132.15068,0.0002796919 1664,616.7561,93.10613,22.390564,89.025566,0.0002554759 1664,587.0948,126.36779,51.155396,227.0863,0.00021335419 1664,612.5678,210.62561,26.578857,124.18158,0.00020483644 1664,609.5236,431.2329,29.623047,71.75342,0.00017122518 1664,589.75275,336.66724,48.571045,143.65555,0.00016989223 1664,4.956745,240.23605,77.407776,226.31104,7.561971e-05 1664,2.289502,143.46135,33.82899,186.98552,6.417505e-05 1664,57.999214,253.46849,79.69419,189.15614,5.4155542e-05 1664,1.0563884,321.2377,20.363087,131.9483,4.6408455e-05 1664,0.8971786,68.61214,18.515184,147.30516,4.259841e-05 1664,1.5876148,242.5214,27.104147,152.32498,1.4592814e-05 1664,351.78296,149.6188,75.844574,165.49109,1.2622586e-05 1664,279.66217,195.56902,26.043365,50.15834,1.1830589e-05 1664,610.38776,0.0,28.758911,159.22493,1.1311728e-05 1664,0.6668832,419.6643,16.968613,82.85593,3.6121578e-06 1664,2.9698749,386.0317,56.09009,106.05179,2.246196e-06 1664,1.323999,13.038503,36.24902,73.69102,1.938403e-07 1665,298.3881,224.11969,35.438324,93.256775,3.7074268 1665,286.42703,238.01053,25.366241,60.670776,0.014967104 1665,302.3547,225.22906,20.44751,46.419464,0.00940567 1665,612.3329,204.75256,25.052856,47.484573,0.009189288 1665,280.03424,207.76384,72.52112,181.97713,0.0020867675 1665,605.2243,143.13403,33.90863,128.33966,0.0008901429 1665,621.82996,130.10979,17.316711,59.787735,0.00075517903 1665,43.04715,226.18517,27.47393,62.65245,0.00073536957 1665,1.245726,199.19086,18.080267,78.77951,0.0006059704 1665,617.52155,389.73236,21.625122,81.5354,0.00052327703 1665,33.65491,208.13483,57.868137,176.29489,0.0005155331 1665,144.92061,214.70447,38.03267,128.67087,0.00043207977 1665,365.70682,189.86316,39.87741,70.53894,0.0003721472 1665,151.3037,402.50403,26.843826,53.79489,0.00018165514 1665,1.7208114,149.02173,34.00811,187.66324,0.00017976461 1665,1.0530404,246.97784,18.77891,83.68036,0.00017959088 1665,618.1066,274.0022,21.04004,78.89694,0.00017047976 1665,1.1919734,134.1026,18.541964,76.20186,0.00016912789 1665,588.304,194.76552,50.173462,230.33015,0.00013807982 1665,6.663848,246.21786,124.020035,229.42969,0.0001326349 1665,1.2652873,258.6268,28.494675,157.60934,8.635341e-05 1665,612.16486,292.83798,26.981812,146.85199,6.867626e-05 1665,0.771781,351.49158,14.438278,54.419067,6.7222805e-05 1665,274.86105,415.9438,72.8114,76.73273,5.3038195e-05 1665,0.94176924,334.8081,20.790407,144.09274,4.7737085e-05 1665,575.05084,415.36627,64.095825,80.479004,3.303191e-05 1665,353.89227,148.99501,76.141205,171.77364,1.8651057e-05 1665,610.73315,22.404512,28.413513,166.14952,1.8592627e-05 1665,597.11145,5.5683694,42.035217,79.242386,1.6963111e-05 1665,0.84876955,57.69308,20.876724,120.45557,7.1854415e-06 1665,2.6571257,387.44788,57.24154,103.85245,2.9945384e-06 1665,0.8289665,440.03876,21.873158,63.419678,2.4607418e-06 1665,1.9252589,17.960457,56.652893,117.21603,9.735829e-08 1665,1.1719288,8.471166,29.088827,54.288036,1.7877708e-08 1666,300.845,231.59665,31.043427,84.76489,1.7444029 1666,609.2817,166.95741,29.650757,69.06911,0.011727878 1666,279.36554,204.11975,67.17084,159.89337,0.008767857 1666,622.15436,380.46176,16.99231,53.798523,0.0017436801 1666,24.99136,219.75221,38.203194,81.99461,0.0013995902 1666,44.708538,217.67969,24.287739,53.973663,0.0013821479 1666,1.557391,133.74318,18.580914,74.45671,0.0008936917 1666,617.058,106.50594,22.088684,96.60172,0.00087139086 1666,5.2770314,225.14238,74.87124,246.87654,0.0005649173 1666,2.0975099,148.91704,28.329147,149.8874,0.00036012035 1666,362.9413,185.42714,40.55191,70.546906,0.00033826314 1666,612.07935,335.1259,27.067322,125.69745,0.00017722372 1666,597.0409,134.21063,42.105774,188.74588,0.00015775254 1666,320.3814,283.3311,41.526978,160.4299,0.00012895997 1666,614.02,410.9512,25.126648,88.35184,0.00012051695 1666,611.48395,235.35255,27.66272,167.6881,6.742087e-05 1666,2.76827,384.12018,57.074013,104.57068,6.529055e-05 1666,0.88228357,380.37845,18.64273,77.89447,5.2128245e-05 1666,1.203099,242.24458,17.970846,76.14064,4.865327e-05 1666,600.18225,22.183159,38.964417,202.76035,3.7424485e-05 1666,3.3589406,83.23659,60.875633,233.80888,3.7254948e-05 1666,0.97232264,271.57382,17.627998,144.25708,2.2286104e-05 1666,275.4467,417.13202,75.176025,77.28076,2.1077614e-05 1666,352.2581,145.37805,75.05521,167.22714,1.28398515e-05 1666,598.27014,7.298037,40.876526,77.41228,1.18046e-05 1666,233.9893,419.03482,72.83507,76.35202,1.1002519e-05 1666,66.029015,420.04086,69.0409,75.28894,9.652595e-06 1666,0.7684343,439.22626,22.186165,63.713287,7.4824875e-06 1666,1.3773844,23.2611,30.888744,166.88486,1.1949771e-06 1666,1.2191032,9.413744,29.098795,54.08934,4.405911e-08 1667,296.33014,227.41167,36.26407,103.093796,1.241555 1667,610.69055,155.65349,28.301208,70.94441,0.11743394 1667,45.093346,216.04997,23.942215,53.163986,0.0089005185 1667,620.97473,130.59479,18.171936,63.8096,0.0071077673 1667,620.90625,205.31482,18.240417,52.34015,0.0067351097 1667,271.34882,206.97185,81.271545,178.48521,0.004574793 1667,277.4479,204.26358,38.780365,99.61725,0.0022391044 1667,622.2496,384.57596,16.897095,54.44873,0.0015077484 1667,359.03052,184.609,40.48706,69.6201,0.001016863 1667,5.12599,238.84222,73.91815,231.01706,0.0008801789 1667,599.8236,105.302734,39.32306,174.6872,0.0008639462 1667,1.453702,133.01414,18.909386,78.90404,0.00076053303 1667,1.5532439,191.91183,18.27762,74.64011,0.00056824135 1667,29.024422,204.4722,42.548737,104.06314,0.0004858882 1667,611.44415,295.4821,27.702515,145.39062,0.00022164936 1667,2.0149431,94.99478,34.58286,179.33783,0.00021534481 1667,614.14514,406.93607,25.001526,93.36728,0.00014942151 1667,612.9033,199.34007,26.243347,168.9052,0.00010538667 1667,0.9278817,390.15298,18.387543,73.85004,7.199653e-05 1667,1.8175993,306.81824,29.678646,149.8046,5.447941e-05 1667,3.1031868,388.29987,56.727375,100.90869,5.0156825e-05 1667,610.2916,27.391348,28.855042,165.95506,4.82764e-05 1667,0.99938273,275.70758,13.349701,48.493988,4.6522695e-05 1667,302.8328,267.37567,78.646576,201.39236,3.7961814e-05 1667,113.463776,421.07993,72.171295,74.51276,2.4673549e-05 1667,572.1512,363.86615,66.8363,121.304596,2.1228467e-05 1667,348.42194,144.05156,78.165405,162.78941,1.618628e-05 1667,256.3508,384.26306,109.32016,109.578735,1.5425378e-05 1667,227.94498,416.48627,69.92697,76.7937,1.377787e-05 1667,1.2548535,242.16667,20.996677,116.42943,1.0855147e-05 1667,0.78719974,438.18646,22.290949,64.418304,9.949508e-06 1667,281.16907,436.22232,42.26996,64.23773,9.603178e-06 1667,71.589325,419.03995,70.74953,77.57959,7.3993633e-06 1667,597.8472,5.6980863,41.29944,80.29224,6.54494e-06 1667,0.8468026,34.246063,17.583826,152.69759,6.573512e-07 1667,1.9657667,17.685822,56.455654,117.811676,1.1275226e-07 1667,1.2218653,8.841433,29.07635,54.614433,1.8379325e-08 1668,296.78452,216.7357,41.052856,129.62794,2.2526913 1668,304.23453,232.83902,24.912231,62.498383,0.03350561 1668,275.88657,209.08195,41.715027,108.65987,0.0106959855 1668,621.0886,157.38269,18.058044,56.901947,0.0070587955 1668,612.8035,199.92989,24.406311,48.76642,0.006729742 1668,26.751352,214.61797,35.16358,74.24544,0.0013572816 1668,264.21887,198.46513,97.25784,211.89992,0.0011006526 1668,51.836376,219.40956,23.763798,49.496902,0.0010429365 1668,611.3689,92.87245,27.777771,148.48146,0.00089205167 1668,3.5866864,207.7379,56.778233,244.41728,0.0006352343 1668,1.3927791,196.8555,18.058203,80.08179,0.0006306221 1668,357.87042,178.37268,42.536835,90.30713,0.0002739285 1668,618.08905,362.50507,21.057617,79.63269,0.00022893336 1668,603.7434,176.43053,35.40326,204.83699,0.00019616632 1668,2.337116,148.74945,33.905846,183.00262,0.00019047355 1668,0.9229956,273.50388,13.570827,49.899963,0.00010537592 1668,0.8717294,405.74567,18.331682,69.71741,8.43491e-05 1668,609.1535,432.75522,29.993164,70.21036,7.8118625e-05 1668,1.8059587,304.14774,30.077175,153.7515,6.805284e-05 1668,1.0796525,294.18436,18.218197,87.50177,5.002632e-05 1668,305.02927,264.2457,82.652405,205.28134,4.9016067e-05 1668,3.0574691,387.3384,56.465626,101.155396,4.6742032e-05 1668,0.9580428,74.788536,18.830826,150.46466,3.262003e-05 1668,588.8835,341.35828,49.972595,143.17917,2.8188131e-05 1668,257.44757,382.40344,113.62631,110.53085,2.6766136e-05 1668,344.28683,142.92899,78.938385,168.08038,2.5937632e-05 1668,0.7727088,375.51547,14.042299,53.933655,2.3553324e-05 1668,107.65958,420.76047,73.318954,75.85211,2.0328918e-05 1668,597.15845,4.644053,41.98822,81.50447,1.7378203e-05 1668,289.94952,449.3408,41.178192,52.990204,1.5305628e-05 1668,229.08449,417.01297,69.09389,76.94043,1.3072508e-05 1668,47.122955,419.9607,75.7872,77.16547,8.951436e-06 1668,267.82883,436.68542,42.49704,63.460693,8.63634e-06 1668,1.6124072,13.8567095,35.17799,70.91879,1.280825e-07 1669,294.28806,226.71678,38.770508,104.26271,3.0199423 1669,25.823788,209.74171,36.992817,70.59459,0.027819034 1669,611.6455,195.72728,25.849792,50.824036,0.014193644 1669,275.5003,208.33823,39.896484,95.02695,0.014168182 1669,304.84464,224.97194,22.900543,45.558487,0.008311893 1669,274.85544,212.15105,78.80835,189.70671,0.0063987835 1669,621.4789,159.74681,17.667786,56.321777,0.005200054 1669,294.59674,270.97794,21.427826,47.171997,0.0048553366 1669,5.207985,236.22168,73.443306,233.48718,0.0013907992 1669,611.5525,93.888664,27.594177,145.05115,0.0012515523 1669,357.1173,187.59308,39.686493,68.645996,0.0010505832 1669,1.3904175,208.91925,17.748762,80.946594,0.0008975404 1669,618.186,364.3407,20.960693,77.460236,0.00027291238 1669,603.59076,175.07503,35.55591,202.24492,0.00021157214 1669,1.3936646,134.88173,18.468372,75.27533,0.00018424817 1669,2.3536036,146.24347,34.475567,187.82831,0.00018133978 1669,614.0615,409.54678,25.085144,91.54166,0.00012465235 1669,608.9152,2.4521484,30.231445,58.19624,6.394009e-05 1669,3.0297835,385.8437,57.01476,103.615845,6.134686e-05 1669,1.2352515,239.89081,20.073349,152.20276,5.6353365e-05 1669,305.4891,264.56223,81.09494,205.19342,3.97561e-05 1669,588.8961,338.33762,49.973938,145.54218,3.46116e-05 1669,113.6535,421.52795,71.91318,74.837616,3.312364e-05 1669,0.98383546,381.34265,18.478596,77.478516,3.2035965e-05 1669,343.92285,144.50482,77.78052,162.71664,2.1744036e-05 1669,264.2384,384.89117,113.258026,108.00076,1.9505582e-05 1669,287.71426,436.90552,42.616882,62.74298,1.2927702e-05 1669,227.71074,417.8729,70.60057,75.988525,9.362791e-06 1669,0.8174219,439.32242,22.28365,63.61328,8.438339e-06 1669,46.324562,420.28806,76.21844,76.45419,8.012088e-06 1669,1.2325146,34.8334,29.021496,160.91975,8.092794e-07 1669,1.4637436,13.497286,35.287506,71.9151,1.0918324e-07 1670,296.5766,225.99638,38.47574,103.68666,4.3210583 1670,38.05801,215.92189,25.441746,60.459732,0.1091674 1670,277.0964,210.1353,38.633545,96.745865,0.011696685 1670,621.54926,169.81277,17.597412,55.847412,0.007683137 1670,613.0331,199.10144,24.324951,45.823807,0.0069552423 1670,271.8851,209.79749,78.806274,172.97662,0.0063372683 1670,24.396353,180.3789,49.004204,124.454315,0.003526876 1670,611.1466,96.154854,28.000061,141.7128,0.0012627281 1670,1.665935,163.79535,18.160295,80.83179,0.00077443774 1670,3.8182764,201.89336,57.90308,251.29472,0.00068197603 1670,618.2575,364.07205,20.88916,78.454895,0.00024669696 1670,542.34485,118.31244,24.493164,46.82419,0.00015991315 1670,614.008,409.96304,25.138672,92.0376,0.00014993624 1670,1.2271346,218.19536,18.416498,85.70073,0.00014049401 1670,604.4683,177.10086,34.678345,203.48163,0.00013175745 1670,1.8675814,93.265564,36.46582,181.41055,0.00012937018 1670,0.9654289,390.2271,18.359507,74.02768,5.9580878e-05 1670,304.48895,263.0196,82.538025,206.72781,5.5989636e-05 1670,1.805586,305.5232,29.828907,151.82593,3.8501348e-05 1670,3.0803924,388.2441,56.58823,100.47012,3.7229198e-05 1670,589.1033,341.70505,49.659607,143.69516,3.324105e-05 1670,263.68845,384.0971,112.441284,108.849945,2.2960541e-05 1670,1.075651,295.9341,18.061909,84.48752,2.0932182e-05 1670,338.51825,142.93436,81.44733,168.28204,2.0299974e-05 1670,283.55057,449.60382,41.844574,53.215454,1.934176e-05 1670,91.78826,419.9529,77.75919,78.05679,1.5493077e-05 1670,0.827487,438.7835,22.277039,63.976807,1.0773527e-05 1670,217.94708,417.87128,67.92136,74.777435,1.0568212e-05 1670,47.106865,420.24512,75.78931,76.4762,7.913534e-06 1670,597.8749,5.3923306,41.27179,81.3228,6.2268136e-06 1670,0.9817554,42.910645,17.951923,149.38766,3.5186094e-06 1670,1.9697869,17.822233,56.657543,118.63597,1.0995712e-07 1670,1.0184456,7.878132,19.68677,53.916344,2.9071954e-08 1671,295.9418,219.1962,41.314972,121.3819,5.06767 1671,617.8122,156.95297,21.334473,58.761566,0.26489592 1671,304.32364,230.15779,23.948364,55.438614,0.08277024 1671,43.53844,197.96315,39.38187,74.01253,0.04081937 1671,276.63144,210.99785,39.604156,96.79936,0.028263327 1671,611.9083,191.32353,25.084106,51.221756,0.019179763 1671,38.517715,223.70264,19.892506,45.022705,0.00717018 1671,12.719214,176.70749,60.05271,152.68643,0.0018951518 1671,603.80286,152.05594,35.34381,129.56512,0.0015852705 1671,265.02426,201.36537,96.46634,206.50969,0.0013630916 1671,1.5537972,198.09862,18.23457,78.75978,0.0009129847 1671,4.305534,231.3014,74.48819,240.58485,0.00064869906 1671,618.0379,362.79272,21.108765,80.06662,0.0003187176 1671,613.95703,409.07153,25.189636,92.982635,0.00020005307 1671,589.91705,175.59174,49.227234,266.9543,0.0001469423 1671,586.09644,35.870865,53.050232,206.02849,0.00012897463 1671,321.197,291.92395,41.748962,153.53387,0.00011304819 1671,2.0444582,96.28808,34.011852,182.8995,0.00010522769 1671,0.9507227,390.67422,18.336205,72.85028,4.963095e-05 1671,1.5142058,226.6547,30.335993,176.77121,4.2888154e-05 1671,2.2022867,341.6953,32.349422,144.79883,3.165935e-05 1671,336.32623,141.66173,80.51953,170.44456,2.9049821e-05 1671,0.9614413,296.50732,18.356176,87.51059,2.3869356e-05 1671,1.1913818,255.44542,18.467672,78.1411,1.4640697e-05 1671,245.8534,436.04666,43.271576,62.3143,1.384218e-05 1671,256.4265,383.49335,110.27304,110.56625,1.3812759e-05 1671,597.92957,6.2777247,41.217102,79.77939,1.264537e-05 1671,281.21823,436.85782,42.218445,63.24286,1.2459299e-05 1671,46.96859,419.67007,76.42461,77.29401,1.00843545e-05 1671,91.40748,420.11423,77.563835,76.82114,9.951823e-06 1671,572.2828,362.67792,66.8371,125.312775,8.670009e-06 1671,0.86009115,439.41428,22.199892,63.431458,8.66905e-06 1671,196.74767,418.88052,71.34923,74.69418,4.0279624e-06 1671,0.8374252,32.229576,17.82354,151.49463,4.7320867e-07 1671,1.5790088,13.691488,35.513798,71.10104,1.9476533e-07 1672,294.35342,228.92912,38.55533,100.887436,3.3040092 1672,56.62181,213.5448,27.77729,52.765656,0.0270232 1672,621.01056,157.61778,18.136108,58.493927,0.01322905 1672,612.92664,197.611,24.26593,47.19745,0.0121794455 1672,276.29996,208.4016,40.015045,93.62465,0.007348552 1672,11.660046,214.971,36.485893,90.29802,0.006323071 1672,273.33224,207.80899,76.18411,175.88873,0.005308024 1672,611.4847,92.86702,27.661987,146.37543,0.0042770547 1672,43.868538,218.5888,20.850868,47.392,0.0017100644 1672,37.17835,185.10522,41.641148,98.962585,0.0016561784 1672,621.57855,121.271484,17.568115,59.61389,0.0014335194 1672,3.279131,201.16077,57.814613,251.88602,0.0012942846 1672,1.1482878,205.19669,13.676822,55.16974,0.000713433 1672,1.6518816,203.09047,21.76502,115.68553,0.00058655714 1672,1.4061149,133.39745,18.405018,72.2594,0.0005773803 1672,612.32904,173.977,26.817627,147.27873,0.00029323116 1672,589.6146,188.8129,48.998352,249.63702,0.00022229226 1672,617.1929,276.22598,21.953796,85.79385,0.00019301694 1672,613.00555,378.5016,26.141113,118.47998,0.00016456784 1672,300.03937,261.11624,79.322754,205.68387,0.00016177498 1672,1.9802735,86.378174,35.437424,194.25461,0.00015236074 1672,0.9017493,279.89282,13.639403,49.971924,0.00013295215 1672,2.8548193,385.0706,57.059803,103.78885,0.0001132001 1672,0.9594914,388.57254,18.391222,75.7767,7.782424e-05 1672,1.7805697,303.09927,30.22339,153.22281,7.3461226e-05 1672,1.0770419,326.59775,17.530554,80.17032,2.9980933e-05 1672,263.93042,382.8402,113.265564,109.86804,2.6235466e-05 1672,113.56627,421.20718,72.470215,74.03073,2.4440482e-05 1672,328.05823,135.59755,105.67743,219.3723,1.5302798e-05 1672,597.1895,4.9435644,41.957153,81.397766,1.5112215e-05 1672,300.0949,436.80624,42.805084,64.04266,1.48550525e-05 1672,0.80379313,438.4245,22.345367,64.18384,1.48147465e-05 1672,218.01819,417.07916,67.65491,74.65314,1.1911092e-05 1672,274.88214,437.06262,42.434418,63.14026,1.116643e-05 1672,45.820477,419.75003,76.861694,77.36359,8.305549e-06 1672,0.6868099,18.77446,16.93696,143.02322,4.9515285e-07 1672,1.4147038,13.397741,35.499928,71.45494,1.2806393e-07 1673,297.83142,228.0015,34.614014,91.526245,28.058758 1673,609.33215,174.55325,29.06958,62.33113,0.040094595 1673,310.29453,208.5233,40.878143,158.88838,0.0084589 1673,50.499146,221.13086,26.006561,48.31378,0.007471644 1673,308.78775,215.55894,26.016266,54.04457,0.006453089 1673,616.30066,107.2087,22.846008,104.801994,0.002146582 1673,8.676823,202.47177,33.091095,79.813385,0.0007658784 1673,1.5275741,194.8873,18.703114,79.40332,0.00062876835 1673,624.9307,134.60088,14.215942,45.63481,0.00060135225 1673,587.90204,98.15385,51.24463,202.63876,0.00039091648 1673,4.524271,230.06474,74.43465,250.356,0.0003589724 1673,255.38855,182.82909,125.11493,245.5933,0.00034674213 1673,618.3465,364.20554,20.80017,77.95172,0.00025563725 1673,1.2063493,134.67416,18.470129,75.46477,0.00023778118 1673,0.9765381,407.35428,18.244831,68.61517,0.00018551623 1673,612.31635,186.40544,26.830322,163.83705,0.00016850242 1673,1.2870753,241.17146,18.275862,81.43199,0.00013072736 1673,614.10077,410.34995,25.045898,91.11185,0.00011661737 1673,321.17715,290.00797,40.910614,157.65048,0.00010082351 1673,3.0014112,391.3578,57.24738,98.53726,9.775225e-05 1673,588.79425,232.18881,50.107788,249.20209,9.104485e-05 1673,1.9997494,86.495705,34.22003,186.76236,8.6829314e-05 1673,1.3273487,318.20724,20.735325,135.37338,5.416453e-05 1673,21.507645,198.64275,42.154877,146.13991,4.4886772e-05 1673,113.76664,421.0135,72.656944,74.819244,2.924546e-05 1673,263.49622,381.70068,112.40619,110.59595,2.1235432e-05 1673,217.97595,416.22702,67.67731,75.73331,1.2878212e-05 1673,287.6899,437.50885,42.111664,62.30481,1.1214219e-05 1673,598.2583,6.4609246,40.888367,82.26792,1.0830309e-05 1673,0.7757349,57.046173,21.09322,121.272064,1.0361888e-05 1673,44.07083,420.79758,78.40818,76.04224,8.518044e-06 1673,95.140884,436.9588,48.946686,64.33682,3.1128238e-06 1673,1.901473,21.312542,56.450714,112.08714,1.735288e-07 1673,0.86630213,7.505313,19.558954,55.96872,2.667701e-08 1674,296.2511,225.51665,36.11206,99.169785,2.9833083 1674,301.0436,224.2442,21.732971,45.90509,0.015513108 1674,614.36096,200.081,24.013184,46.542526,0.008002555 1674,271.0156,212.24425,80.20065,169.81349,0.0046444265 1674,621.4818,170.01767,17.664856,55.494522,0.0045580324 1674,42.449436,188.5504,41.660625,99.91225,0.0036495763 1674,537.86646,112.98107,32.385254,53.566902,0.00196393 1674,622.52637,379.82974,16.6203,56.02304,0.0010984254 1674,611.5368,91.19601,27.609863,145.46628,0.0007774459 1674,4.0416927,213.5569,56.507156,238.49873,0.0006681467 1674,603.5263,180.32867,35.62036,202.99866,0.00017619488 1674,612.4173,334.8452,26.72937,127.04605,0.00017270198 1674,23.992153,153.66458,80.26753,195.17368,0.00017205952 1674,1.4768538,204.3632,18.1836,78.813126,0.00014259886 1674,2.5725913,164.54868,33.07814,186.10791,0.000100338344 1674,2.570799,346.06543,38.847553,112.00046,9.164332e-05 1674,608.7395,433.03973,30.407166,72.32663,9.153719e-05 1674,0.9778939,390.09998,18.79371,105.90021,4.7002817e-05 1674,307.23224,273.77902,80.17786,198.28131,4.1690233e-05 1674,1.1831942,259.01675,18.389671,77.66083,4.077924e-05 1674,1.2668498,109.31847,20.104906,128.80501,3.0500763e-05 1674,107.674034,420.42642,73.409615,75.70889,2.7007056e-05 1674,256.54022,382.2277,114.57199,110.90347,2.6688545e-05 1674,1.0432805,318.43744,17.89283,83.690674,2.2507727e-05 1674,0.79340535,375.5098,14.276178,55.092957,2.104443e-05 1674,233.99355,436.50974,43.925278,59.846466,1.9172727e-05 1674,293.95203,437.10522,42.384125,63.011444,1.45730655e-05 1674,46.820866,419.9054,76.04297,77.29364,1.0855602e-05 1674,267.6548,437.49573,42.444214,62.649963,9.832354e-06 1674,571.45715,362.58997,67.45532,125.9516,8.406082e-06 1674,2.4238412,425.28256,54.01013,71.53244,7.6409015e-06 1674,597.9275,6.201836,41.219177,80.076866,7.2328257e-06 1674,182.92496,421.83575,70.48007,71.55368,1.8584718e-06 1674,0.8738233,16.044428,29.123007,171.03221,1.9760202e-07 1674,0.91233236,8.128782,30.049381,54.18577,6.245291e-08 1675,296.2345,229.11371,35.929565,93.528015,5.3772864 1675,305.65842,225.43568,21.408356,46.959244,0.0537113 1675,621.65686,159.20256,17.489807,55.27182,0.011030972 1675,50.17179,213.54181,27.538109,56.017242,0.010527958 1675,284.41776,238.74991,27.24759,66.92636,0.008329698 1675,270.90845,212.0608,79.157745,173.4615,0.0067339344 1675,620.9523,192.264,18.194397,53.455353,0.006695789 1675,611.4036,127.60805,27.743042,122.3876,0.004038198 1675,293.89154,272.2349,21.847412,46.336273,0.0039560646 1675,9.038606,208.46841,33.153595,79.04657,0.0010242735 1675,4.6984277,224.18683,74.8254,252.90637,0.00046418954 1675,25.183538,171.37471,60.809906,150.25175,0.00037866825 1675,1.4837174,135.55623,18.334293,69.83646,0.00030200227 1675,618.2127,363.97293,20.93396,78.34119,0.00024487192 1675,1.4113322,200.85406,18.399075,82.02283,0.00016342584 1675,2.6473405,345.09763,39.751503,112.74878,0.00013644746 1675,614.27625,409.3585,24.870422,90.96924,0.00013624124 1675,1.5987077,94.12049,29.909998,147.34283,0.00010002592 1675,612.026,252.7135,27.120667,157.71063,9.3271046e-05 1675,0.9821623,389.0854,18.434284,75.28128,8.838344e-05 1675,588.9639,133.307,49.940063,236.52374,8.6656095e-05 1675,299.36426,258.09512,80.69104,210.43915,7.485242e-05 1675,2.0085075,243.13272,29.71025,170.7157,4.8760296e-05 1675,600.19543,20.245157,38.951233,198.13783,4.4438693e-05 1675,1.1511313,327.07437,18.043486,82.15341,3.487215e-05 1675,589.21655,335.58493,49.69336,148.2055,3.1289976e-05 1675,113.42183,421.13687,72.723465,74.79236,2.627939e-05 1675,321.91483,135.73276,104.47592,219.53595,2.0634723e-05 1675,1.0833114,266.53854,18.36278,79.289246,1.9047777e-05 1675,290.1294,449.52423,41.326447,52.607697,1.7902745e-05 1675,1.4490592,414.97418,35.711685,81.30521,1.5102259e-05 1675,236.40927,385.18542,120.60043,108.84839,1.2290982e-05 1675,46.869133,420.2509,75.895645,76.63406,1.1646517e-05 1675,217.74449,417.9489,68.09526,74.2738,1.1161129e-05 1675,2.9431674,60.490925,60.196056,250.63158,6.5207546e-06 1675,0.8305127,33.97209,18.08593,150.9736,1.1495162e-06 1675,1.8092579,19.02915,56.92002,116.267525,2.404549e-07 1675,1.0611002,8.404649,29.699831,56.379074,4.1599595e-08 1676,297.0752,223.52118,35.986084,93.979645,2.2783318 1676,305.7026,225.73235,20.721344,45.867813,0.053211413 1676,621.3334,163.5899,17.813293,57.091812,0.034931634 1676,614.07025,193.63562,24.768677,48.505447,0.008739534 1676,271.16302,210.72284,79.3569,173.5026,0.0036562015 1676,612.3597,91.989296,26.786987,142.29932,0.0023656122 1676,301.05496,271.10318,21.021667,46.2623,0.0014842089 1676,622.20966,379.3138,16.937012,56.035797,0.0008717001 1676,4.009079,211.12578,56.539112,240.13432,0.0006712199 1676,621.88245,121.38843,17.264221,57.452988,0.0005605478 1676,321.5275,306.66016,42.994446,121.558624,0.00027856193 1676,1.3210392,135.65134,18.12921,70.35478,0.00022972639 1676,611.2885,292.24133,27.858154,148.24707,0.0001813083 1676,613.82336,409.9399,25.323303,91.84067,0.00014571818 1676,1.4654728,209.89954,18.454292,79.9711,0.00012930813 1676,2.0233498,133.1024,28.541,147.19533,0.0001281996 1676,612.81415,187.99977,26.33252,166.80467,8.544868e-05 1676,0.9542318,389.67346,18.488394,74.55832,7.4842705e-05 1676,2.8722477,385.29462,56.781403,102.73633,6.732944e-05 1676,33.831047,194.49864,43.438484,143.12242,6.298747e-05 1676,571.8547,102.32128,67.29199,243.00146,4.3443975e-05 1676,1.8812647,308.7761,30.296154,151.03012,3.1769505e-05 1676,1.0443066,304.88663,17.520027,83.154175,2.3162613e-05 1676,240.15314,435.9279,42.631165,60.73764,2.2373884e-05 1676,256.73166,381.2455,112.553955,112.08118,2.1683112e-05 1676,113.466484,421.43365,72.40876,73.22641,2.1072789e-05 1676,0.85606164,287.12454,13.46293,48.559357,1.855391e-05 1676,47.808468,419.71558,75.21414,77.34903,1.4203803e-05 1676,0.8020329,438.78516,22.24806,64.003235,1.3213604e-05 1676,3.2195377,83.479805,60.170815,235.5386,1.1690271e-05 1676,287.75354,436.61368,41.924866,63.111237,1.0412069e-05 1676,571.76874,361.00067,67.37793,126.855865,7.945068e-06 1676,0.79019046,55.3593,20.962704,123.92708,6.8600857e-06 1676,598.2637,5.8691473,40.882996,80.33438,6.4837345e-06 1676,198.62302,389.57385,104.9801,102.64621,4.941417e-06 1676,1.9725244,17.787441,56.64667,117.126816,9.507143e-08 1676,1.166875,8.071503,29.415941,56.218704,2.4115062e-08 1677,295.55417,227.85107,39.531097,103.97339,3.59402 1677,282.96677,234.34805,28.905579,70.936676,0.010829175 1677,293.8273,273.5264,22.359985,45.1886,0.009675639 1677,304.33713,224.8554,22.820343,46.901108,0.009013803 1677,621.1484,167.15842,17.998291,57.46425,0.0073043965 1677,50.30371,214.33867,26.96939,55.556747,0.006197994 1677,275.01978,217.57196,78.42102,186.24219,0.0035720775 1677,13.613576,215.63808,35.10137,83.67537,0.0013823153 1677,36.912724,166.42813,46.827038,136.2384,0.0011115173 1677,604.4202,121.57878,34.72644,138.55452,0.0011100702 1677,3.9133823,208.46643,57.046383,246.95013,0.00074544054 1677,31.907858,224.05113,25.441896,57.401535,0.00073615613 1677,1.527972,136.34094,18.255678,68.26117,0.0006744506 1677,618.18835,403.2175,20.958313,75.56085,0.00042104558 1677,133.60155,422.99094,26.374557,48.867004,0.00040656014 1677,2.0824935,157.65973,28.800346,152.96924,0.0002764888 1677,610.72565,288.78772,28.42102,149.62677,0.00022386998 1677,0.98698163,174.83629,13.4526415,52.791534,0.00015069514 1677,612.2491,196.6049,26.897583,164.24681,0.00011302729 1677,2.9057097,383.9901,56.850037,104.4762,0.00010722314 1677,1.0559168,204.47401,13.569695,54.67491,9.928121e-05 1677,320.80542,290.6825,41.570343,155.58011,9.671195e-05 1677,1.0568409,389.38846,18.420893,75.74448,8.35469e-05 1677,1.3371745,244.99248,18.51299,75.150406,7.748624e-05 1677,572.6801,104.20871,66.24225,250.45792,5.9692014e-05 1677,585.68463,393.63742,53.151917,100.628845,4.5292654e-05 1677,1.9266032,308.44562,30.79851,154.4299,3.866634e-05 1677,610.3829,10.643471,28.763794,168.64798,2.3083843e-05 1677,91.541275,420.0505,76.56604,78.08383,1.9289775e-05 1677,0.81254476,438.38324,22.323156,63.946472,1.5095132e-05 1677,256.94922,384.6707,110.31796,109.115265,1.4636117e-05 1677,0.9962793,297.59714,18.191975,86.26773,1.3580029e-05 1677,281.30475,436.0259,42.296783,63.988586,9.586653e-06 1677,45.042557,420.4272,77.5373,76.823395,9.239479e-06 1677,228.26706,416.87976,69.8183,76.90503,8.679771e-06 1677,3.236582,61.28254,58.892857,243.92224,8.260524e-06 1677,1.0456673,23.873613,28.8435,164.53764,5.5916934e-07 1677,0.5814681,11.294099,9.538256,80.7639,2.2418034e-07 1677,1.1348715,8.917572,29.423092,53.78394,3.6962483e-08 1678,606.4925,239.89006,31.908691,100.28142,41.416054 1678,294.98218,225.10446,37.82602,105.45993,3.761136 1678,299.89822,223.47815,23.619385,46.948334,0.03072652 1678,618.49786,218.38268,20.648804,73.37343,0.009911171 1678,272.31366,209.59998,79.72647,170.88913,0.007014763 1678,623.32074,203.2238,15.825928,46.313446,0.0067958897 1678,620.8011,165.4206,18.345581,57.23105,0.0062759076 1678,593.96326,214.0676,45.18341,243.76654,0.005143427 1678,50.63889,214.6802,27.566982,56.328125,0.0046702935 1678,283.48706,230.74973,29.108795,73.8873,0.0035196897 1678,610.85046,95.1882,28.296204,157.27983,0.0009821623 1678,4.949753,239.97736,73.12788,233.96213,0.0009013815 1678,622.748,296.09924,16.398682,50.499634,0.0008615134 1678,621.3034,120.63699,17.843262,60.93843,0.00071767415 1678,614.8992,286.9224,24.247498,121.54059,0.00059467624 1678,22.941217,227.06792,26.943762,57.43013,0.00040465625 1678,618.04285,362.0137,21.10382,81.442566,0.00034126712 1678,1.487159,203.71661,18.20262,80.85916,0.00023997821 1678,320.40915,291.31174,42.251648,159.4526,0.00017437182 1678,2.8077946,344.10504,40.23323,114.04767,0.00016541754 1678,613.5716,415.637,25.575073,85.9426,0.00014887276 1678,32.834007,185.15321,45.330643,140.06401,9.5992196e-05 1678,0.9389071,348.3381,13.715405,52.908813,6.3432344e-05 1678,0.9979875,380.0985,18.602427,78.32712,5.7435693e-05 1678,2.6177588,191.46605,34.58561,195.8094,4.5667308e-05 1678,1.1323942,279.99316,17.288055,145.07236,4.0535742e-05 1678,0.9718701,69.8984,18.548824,140.89551,3.7981656e-05 1678,256.902,383.42618,111.071045,109.237274,2.8781835e-05 1678,92.573425,420.98755,76.94591,76.75299,2.3758348e-05 1678,571.73285,362.37283,67.3006,123.590515,1.9518087e-05 1678,1.4986995,415.25974,35.963783,80.85663,1.4154946e-05 1678,281.1461,436.09296,42.236176,63.673737,1.261148e-05 1678,597.4706,4.365697,41.676086,82.069756,1.0602636e-05 1678,227.81573,418.1218,70.798096,75.94498,9.8149285e-06 1678,3.0432584,52.626225,59.3746,253.90213,3.0180477e-06 1678,1.9739779,18.610111,56.668056,113.11253,1.8549862e-07 1678,1.143789,8.290882,29.67122,55.205902,4.8218652e-08 1679,579.4097,217.15663,53.670044,126.363785,99.74055 1679,572.38995,227.1028,28.886047,66.7932,5.5602584 1679,298.5324,224.99394,38.281982,106.54997,1.1506131 1679,609.34863,208.11168,29.798035,86.528885,0.1836319 1679,594.30383,219.16805,22.08496,45.046677,0.05846881 1679,626.4448,228.14647,12.701843,45.91542,0.047161877 1679,596.7745,238.79323,26.278442,65.010666,0.018373024 1679,624.8253,255.04285,14.32135,51.760956,0.015034074 1679,50.40601,214.74562,27.15456,55.754013,0.004454004 1679,272.6748,208.62541,79.87451,173.39064,0.0041420115 1679,545.50354,154.8485,92.92609,268.6808,0.0018139072 1679,621.4082,159.54219,17.738464,53.63942,0.0012191909 1679,36.020107,168.31616,48.06332,136.11703,0.00083246885 1679,4.0748506,215.44296,56.434772,235.31226,0.00073480955 1679,613.28986,291.57513,25.856812,119.94003,0.0006357931 1679,1.4890853,203.64415,18.220009,81.76637,0.00018961844 1679,610.33527,90.625114,28.811401,157.49292,0.00017084791 1679,613.41565,415.91302,25.731018,85.98346,0.00014009597 1679,588.60376,309.019,49.755066,172.44006,8.34107e-05 1679,1.3544035,315.93323,20.882095,140.142,5.977952e-05 1679,0.9791569,70.14278,18.85042,140.02374,4.2406366e-05 1679,2.9636686,387.14395,56.7765,101.93814,4.0366383e-05 1679,2.2990625,123.19133,35.398132,191.7014,3.591651e-05 1679,0.81818604,420.46017,16.98259,78.6951,2.6448095e-05 1679,0.82648075,375.47906,14.125541,54.36914,2.2529544e-05 1679,1.2798259,275.69095,18.176315,84.426056,1.9128347e-05 1679,288.22656,417.3739,71.46533,78.67117,9.795778e-06 1679,597.3529,5.081709,41.793762,81.452225,8.923446e-06 1679,227.7248,417.26312,70.90808,76.74371,7.6716415e-06 1679,71.52103,419.51334,70.90474,76.97809,6.9812595e-06 1679,1.9717823,20.338585,56.370094,111.68192,1.8678881e-07 1679,1.1455078,8.989644,29.130291,54.463757,2.9918404e-08 1680,597.0362,222.79695,41.92816,115.47539,99.77238 1680,542.5763,219.52672,51.949463,103.35365,99.364716 1680,296.24997,220.97678,40.67859,121.134705,3.1174839 1680,619.74176,220.67471,19.404907,67.59363,0.48115993 1680,603.06616,225.38568,20.368347,49.53836,0.11728292 1680,305.33826,229.65175,22.556427,54.046555,0.060254987 1680,623.66895,271.19095,15.477722,46.79547,0.019682888 1680,541.4549,168.36386,93.03949,239.16449,0.0042370353 1680,4.147341,211.22168,56.735435,242.1105,0.0012300803 1680,264.79083,201.40651,96.22699,213.32777,0.0008761406 1680,22.928185,225.50099,27.199524,60.537125,0.0006401547 1680,612.2497,320.0222,26.896973,140.3623,0.00031126625 1680,1.9693197,159.13387,28.59906,153.90334,0.00018520969 1680,610.88,90.80822,28.266663,166.27762,0.00015806034 1680,1.0394906,80.386055,18.317436,135.73929,0.000108813125 1680,609.119,432.28397,30.027649,72.74335,0.00010304509 1680,3.0241375,386.86823,56.899864,102.18875,6.304684e-05 1680,609.2182,2.9992025,29.928467,56.957165,4.606171e-05 1680,1.2431551,316.22552,20.888884,138.53723,4.173705e-05 1680,0.795258,420.53177,16.891409,78.43799,2.9103452e-05 1680,0.80573165,360.61896,14.108738,54.43576,2.5573814e-05 1680,1.1564063,276.12317,18.083351,82.394135,1.45512895e-05 1680,275.60754,417.68787,74.27203,78.64346,1.0894682e-05 1680,571.3851,359.3447,67.63098,128.83282,6.334989e-06 1680,2.9355452,51.015377,59.6798,256.69693,3.806273e-06 1680,1.447557,12.36613,35.543095,72.1071,1.1346442e-07 1681,573.59955,222.85454,38.211975,101.24397,99.93015 1681,523.6515,216.1846,49.27643,108.78348,99.41661 1681,294.94742,227.83022,38.143036,105.7538,0.60031265 1681,587.0086,221.1405,20.476135,46.51883,0.07313252 1681,619.63055,153.95929,19.516113,61.645645,0.03336367 1681,621.46545,204.4598,17.681213,57.666397,0.019250188 1681,556.6907,222.83066,32.663147,96.306885,0.013673443 1681,545.10297,197.13528,86.33551,167.69519,0.0071541164 1681,611.0739,158.85722,28.072754,137.53792,0.005199678 1681,14.226419,217.00185,34.524902,83.25639,0.0022553015 1681,612.5061,238.69925,26.640564,174.91437,0.0021318384 1681,276.6736,215.33939,78.12146,198.32501,0.001307007 1681,611.00134,64.15127,28.145325,161.04916,0.0010375101 1681,4.163626,210.01974,56.213123,239.85391,0.00076921395 1681,617.9658,361.50095,21.180847,80.74527,0.00034797113 1681,2.21049,167.48328,28.391283,145.16873,0.00022471361 1681,33.74618,188.73605,44.58389,136.61597,0.00015615544 1681,609.1334,433.06656,30.013245,71.63461,0.00012359551 1681,0.9320248,386.99115,18.656948,77.250275,6.041454e-05 1681,2.3272786,340.86658,33.09612,145.68405,5.2718828e-05 1681,588.7576,327.2736,49.808716,156.2518,5.239964e-05 1681,307.58228,267.47354,78.68799,199.47461,3.9169467e-05 1681,0.8978931,348.27557,13.733574,53.357025,3.7466267e-05 1681,1.1989348,106.8767,20.187355,133.76001,3.3638466e-05 1681,1.0446452,287.41095,18.320456,146.37723,3.229243e-05 1681,610.90735,4.500692,28.239319,53.8962,1.8119754e-05 1681,233.68602,416.1616,71.34685,78.318115,1.413455e-05 1681,275.38446,416.2652,72.546844,80.13751,1.1045457e-05 1681,0.81389815,439.12564,22.211636,63.262756,1.05076515e-05 1681,3.2163038,58.953087,59.181587,250.09076,5.1655984e-06 1681,0.939598,21.157248,29.252838,163.75322,4.7404433e-07 1681,1.1117806,9.003966,29.70766,54.57478,6.9580416e-08 1682,547.5576,221.06392,36.174255,93.29152,99.936554 1682,512.08014,219.9012,39.671143,90.09276,99.54595 1682,293.7161,224.97763,38.12091,100.66254,5.584676 1682,620.8113,163.57047,18.335388,57.508987,0.03398926 1682,613.4559,191.10121,25.47583,53.359894,0.011512729 1682,269.82968,213.1742,79.06946,171.11298,0.009298858 1682,486.45258,197.21785,94.709656,159.09926,0.0014030606 1682,5.1442385,231.87392,73.929794,240.20766,0.00053540216 1682,1.5819874,209.38162,18.391394,80.89514,0.00033205544 1682,600.3667,102.94624,38.77997,180.97444,0.0003161294 1682,590.83026,195.52367,48.09729,242.47514,0.00023323057 1682,612.82904,378.86487,26.317627,119.25,0.00020168959 1682,2.6051059,169.44698,34.003906,181.27214,9.8679346e-05 1682,32.194557,186.29616,45.781548,142.5038,9.219655e-05 1682,0.95433676,389.2248,18.45534,74.9689,5.456666e-05 1682,3.1231136,385.62646,56.724716,103.24249,4.857214e-05 1682,609.229,3.2441635,29.917664,58.0068,4.263678e-05 1682,1.8930355,308.31927,30.09817,150.72751,3.0296174e-05 1682,1.5701221,93.5383,29.670628,150.38942,2.9730552e-05 1682,610.5446,13.171342,28.60205,167.59993,2.3867171e-05 1682,1.0905795,328.70078,17.6924,78.403656,2.1192218e-05 1682,288.64313,419.00388,72.16934,77.08719,1.2704527e-05 1682,227.78862,417.9096,70.58458,75.977295,9.56282e-06 1682,1.020319,276.64536,18.12327,81.94559,8.139812e-06 1682,0.86279297,439.84674,22.153072,62.811096,7.884531e-06 1682,71.87208,419.49628,69.9311,75.36899,6.220332e-06 1682,1.2686914,12.573965,35.745304,72.664925,1.6503276e-07 1683,525.24225,220.20355,32.66565,82.42978,99.850586 1683,504.07544,217.3562,33.570435,85.24835,99.717125 1683,297.24374,224.36017,36.204865,97.13693,6.8222685 1683,619.63654,153.8982,19.510132,62.38098,0.0423849 1683,610.6324,180.97548,28.345764,67.20288,0.019352254 1683,488.5084,184.91159,66.03317,148.54303,0.008038809 1683,271.52765,214.26727,79.30667,169.00668,0.008016563 1683,521.35004,257.01834,18.280762,46.07422,0.0059910826 1683,599.69073,101.61845,39.455933,179.18542,0.0012153345 1683,4.7011657,236.78923,73.195274,240.2903,0.0008480024 1683,22.388891,227.00774,27.42343,59.128555,0.0007601125 1683,2.076963,160.96138,28.441181,151.56248,0.00017819786 1683,611.356,294.01736,27.79065,144.42139,0.00014783966 1683,612.79944,378.02863,26.347229,118.72061,0.000134983 1683,33.968105,188.10448,44.364162,133.63521,0.00011895828 1683,1.056678,77.611885,18.504406,138.8858,8.627627e-05 1683,2.893037,382.4946,57.053867,105.74536,7.885914e-05 1683,608.8377,3.7665935,30.30896,55.20268,5.2154155e-05 1683,0.9983228,387.32617,18.538078,77.144196,4.950039e-05 1683,1.8991992,307.95053,30.351732,153.06808,3.800731e-05 1683,1.3135986,242.54204,20.159412,150.88838,3.013096e-05 1683,91.592384,420.07153,77.05244,78.349945,1.7918628e-05 1683,281.8138,416.87634,73.25452,79.36914,1.4246577e-05 1683,0.8945459,439.90674,22.117327,62.688477,6.991253e-06 1683,2.8956869,57.28284,59.51913,254.58774,4.311839e-06 1683,2.0108447,20.836582,56.73378,110.48309,3.317357e-07 1683,1.2723552,8.910449,29.283289,54.850086,3.897826e-08 1684,488.7948,218.83376,32.55774,77.54024,99.24055 1684,508.53986,222.40086,27.43219,70.41048,83.995575 1684,297.58765,226.28297,34.667816,99.49074,13.662749 1684,305.62,227.61433,21.27829,47.099472,0.038563892 1684,621.97864,169.62895,17.16803,54.770844,0.014985056 1684,51.029873,216.59569,27.68935,53.019974,0.008319268 1684,472.28568,169.16328,62.55551,157.74062,0.004111179 1684,272.12585,211.55836,77.76111,169.04912,0.00403682 1684,612.3588,102.36508,26.787842,134.61362,0.0017652521 1684,14.107141,218.22293,34.66383,80.263,0.0015416584 1684,4.066582,211.33485,56.347996,242.2053,0.00084679987 1684,618.0087,363.98337,21.13794,78.02106,0.00040111676 1684,1.5399342,203.38089,18.368599,81.55698,0.0002648141 1684,613.0547,187.11032,26.09198,151.91867,0.00016841583 1684,613.555,407.73474,25.591675,93.04562,0.00016224962 1684,588.9778,244.05173,50.042847,235.6536,8.523097e-05 1684,2.828441,384.8068,57.1544,104.202484,8.4783955e-05 1684,0.97150314,388.69974,18.398235,75.660736,8.4270854e-05 1684,2.0816097,162.42915,34.451843,188.26591,8.2637205e-05 1684,1.0622982,77.44639,18.192951,140.48224,5.3688007e-05 1684,1.7777148,307.74072,30.298052,152.5492,4.996138e-05 1684,308.79987,260.34546,77.74457,206.39832,3.7271682e-05 1684,283.55963,450.36908,41.46472,51.81729,1.8267825e-05 1684,256.71878,385.2744,108.05127,108.457275,1.6465281e-05 1684,0.8474528,439.04614,22.186062,63.644073,1.3693928e-05 1684,598.2626,7.463662,40.884094,76.35584,1.2734987e-05 1684,91.370094,420.31985,76.163246,76.62027,1.0423416e-05 1684,45.19657,419.94574,77.79675,77.28848,9.401302e-06 1684,217.88585,417.50525,68.081985,75.009705,9.1923175e-06 1684,1.1026303,275.3145,18.280863,85.87369,8.166435e-06 1684,3.2196567,59.02107,59.23947,245.47096,7.654292e-06 1684,2.2122998,20.13334,56.331036,114.04302,1.6000682e-07 1684,1.0988997,8.399219,29.066093,53.949097,1.3824786e-08 1685,494.2348,219.74727,28.515991,71.97029,99.317696 1685,472.3724,213.25319,35.7713,78.679,98.83312 1685,300.0566,229.38162,33.32309,95.53708,29.962202 1685,469.37408,161.43967,61.307556,159.60477,0.015630903 1685,621.12665,174.89243,18.02002,56.417343,0.009533442 1685,272.29028,214.98067,79.79239,163.04756,0.005782013 1685,612.24994,98.40728,26.896729,139.04434,0.0017096502 1685,23.112,226.59117,26.90884,58.068344,0.0011139303 1685,613.1018,183.97807,26.04486,111.10091,0.00072907726 1685,4.2732196,210.24213,56.429592,241.04337,0.0007222868 1685,1.5340691,203.88129,18.21028,80.97162,0.00026647243 1685,612.7444,380.04346,26.402283,115.58499,0.00015280454 1685,33.349686,189.02036,44.728455,133.74142,0.0001437957 1685,589.43945,145.27046,49.707214,249.49281,9.571959e-05 1685,2.991372,385.68826,57.009502,102.74051,9.278841e-05 1685,611.12335,286.8073,28.023315,150.31686,8.5147774e-05 1685,2.3126335,124.21875,35.303925,183.41913,8.402537e-05 1685,1.0502189,78.18158,18.625616,140.60202,7.008435e-05 1685,1.0443009,388.72253,18.428038,75.55591,6.472836e-05 1685,1.274008,250.04768,19.913279,148.42488,3.245826e-05 1685,264.71082,384.75955,115.86618,107.06827,2.3733119e-05 1685,224.31232,417.55417,67.14813,74.81125,1.5135103e-05 1685,598.0335,6.7413154,41.11316,78.92921,1.4723588e-05 1685,287.81873,436.93335,42.547943,61.944733,1.4207136e-05 1685,71.53724,419.16406,71.11187,77.28006,9.966336e-06 1685,0.8376384,438.8718,22.245657,63.662018,9.669216e-06 1685,2.0264113,19.683838,56.56172,113.796875,2.109308e-07 1685,1.1707699,9.384588,29.092785,53.26571,3.7610352e-08 1686,461.18985,215.65706,30.08783,70.88905,99.43361 1686,481.9659,219.5592,33.947662,68.58322,99.32265 1686,294.81235,225.68422,38.26013,106.10396,1.2920034 1686,300.55338,228.37073,23.19519,49.347565,0.03634823 1686,275.87433,208.76106,40.65628,93.64766,0.011281771 1686,621.3707,176.41618,17.77594,52.8833,0.008140762 1686,264.24646,213.00732,79.392395,181.96805,0.0025187728 1686,611.7022,137.18224,27.444458,118.39839,0.0019447203 1686,8.213185,208.04181,33.880074,80.45807,0.001395939 1686,4.043685,211.96008,56.630764,239.98395,0.0006984941 1686,444.01154,185.19362,71.20502,149.57466,0.00065075676 1686,1.482435,200.5247,18.57794,84.12462,0.00030328607 1686,603.49585,176.45407,35.650818,215.0217,0.00019629169 1686,37.906555,178.76553,46.38418,131.98389,0.00019007978 1686,612.8148,382.82935,26.331848,115.52759,0.0001555726 1686,306.14944,265.2043,80.33896,199.12076,5.9814072e-05 1686,3.1220622,386.54178,56.84398,102.57031,5.939729e-05 1686,1.0588119,78.833084,18.243887,139.53235,5.4259253e-05 1686,0.9558407,389.97867,18.3609,74.483215,4.5651937e-05 1686,1.2695663,249.49121,19.940584,147.99396,3.7795864e-05 1686,611.0848,15.193288,28.06189,164.23698,2.4816463e-05 1686,257.01938,383.384,110.61868,109.631226,1.7493867e-05 1686,588.1646,56.335403,50.982056,234.29155,1.6718286e-05 1686,3.3192415,83.88741,59.95775,237.59497,1.2797163e-05 1686,287.58997,436.50708,42.208252,63.248413,1.0626445e-05 1686,91.848015,421.193,76.05465,75.65518,9.989726e-06 1686,0.83548176,439.19693,22.180887,63.301636,9.863046e-06 1686,227.38086,417.96417,71.127716,75.72516,9.277889e-06 1686,45.87251,420.1523,76.794754,76.74753,6.9277226e-06 1686,1.9771208,17.21517,56.458714,116.79728,6.3324826e-08 1686,0.9195687,7.457432,20.005928,54.402676,1.5979934e-08 1687,450.56866,211.10635,32.95688,72.91812,99.75544 1687,474.087,216.95474,29.461761,67.70947,99.235756 1687,298.51028,226.61636,34.384247,92.82553,24.220667 1687,278.20215,215.61938,36.633057,90.51828,0.04304391 1687,621.14716,174.10461,17.999512,53.983566,0.01964878 1687,347.0927,203.84329,23.527527,46.021713,0.010761111 1687,50.980904,217.06279,27.188324,52.654556,0.010195521 1687,272.89606,210.78264,77.70123,165.51884,0.0064411988 1687,611.51245,128.64471,27.634216,123.18962,0.0057592853 1687,4.0741243,212.02348,56.324783,241.16612,0.0004601276 1687,459.16812,177.79787,64.473175,159.60768,0.00038047455 1687,612.81305,379.37827,26.333618,117.05228,0.00022529381 1687,2.0475326,160.39706,28.327936,150.72171,0.00013102767 1687,604.4655,173.08951,34.681152,209.6828,0.00011406529 1687,1.0810091,79.57561,18.492876,135.12206,0.0001100241 1687,33.937496,187.34354,44.386166,136.56934,0.00010864308 1687,612.05865,288.6333,27.088013,145.75803,9.039347e-05 1687,1.3689063,239.43282,18.44849,76.03285,8.0852195e-05 1687,0.99941003,390.13513,18.31391,74.167786,6.8398724e-05 1687,3.1252313,388.21222,56.889614,101.17221,4.6452733e-05 1687,307.0168,265.12375,80.30011,207.44559,3.8892602e-05 1687,0.92844605,348.83817,13.613926,52.560974,3.7895476e-05 1687,1.8058594,307.10712,29.960304,153.0232,3.436905e-05 1687,263.9433,384.6072,111.625885,108.56186,2.1535476e-05 1687,587.96545,56.134247,51.181213,232.19571,1.8059061e-05 1687,287.70895,437.58984,43.1456,61.845642,1.6270413e-05 1687,218.16476,418.03796,67.536835,74.2583,1.52205475e-05 1687,1.053785,289.73718,18.400784,87.24762,1.3637196e-05 1687,0.81368166,438.90408,22.221209,63.824463,9.232485e-06 1687,598.2118,7.8772006,40.934875,77.10109,8.865156e-06 1687,45.648853,420.56845,76.8607,76.34827,8.296462e-06 1687,3.149995,56.64461,58.85016,246.4576,5.60109e-06 1687,1.8410401,18.347298,56.66524,116.45896,2.3973732e-07 1687,1.0716455,8.253555,29.511389,54.780117,3.4385074e-08 1688,444.88736,213.32811,27.42566,65.04964,99.808716 1688,464.16876,219.48466,26.601868,61.722977,99.708435 1688,296.42804,224.386,36.26187,101.879745,15.112289 1688,304.92334,225.47708,22.594818,46.16986,0.029137116 1688,620.6645,165.35762,18.482178,59.184723,0.027587788 1688,274.73914,205.26761,41.704803,103.821655,0.01699299 1688,50.86772,215.49907,28.121681,53.998886,0.00887203 1688,260.05704,214.57164,79.85501,164.22981,0.0050569093 1688,611.5162,96.33781,27.630493,145.59122,0.0031687454 1688,14.374855,217.73428,34.2004,79.375824,0.0015228349 1688,4.1847396,213.20978,55.67374,235.263,0.0005478856 1688,446.90552,174.778,66.94562,161.93443,0.00033864434 1688,1.5402108,204.52214,18.26464,79.45949,0.00019746851 1688,612.7609,380.02466,26.385742,117.42212,0.0001470194 1688,603.9615,172.71332,35.18518,204.12769,0.00014557288 1688,33.459644,187.47214,44.78343,136.78604,0.0001127978 1688,611.7666,287.87756,27.380066,148.8623,6.224824e-05 1688,1.021136,390.31836,18.393908,74.05066,4.8482547e-05 1688,2.1877718,160.69058,33.822105,184.03802,4.8098464e-05 1688,1.3381926,250.99693,20.098068,149.59535,4.0980798e-05 1688,0.9466004,348.85458,13.549779,52.018036,3.8573307e-05 1688,2.371014,344.91602,32.775776,143.43002,3.7683854e-05 1688,256.81323,384.97717,113.55664,108.089294,2.4478317e-05 1688,1.004633,76.24338,17.918127,142.35303,2.2874821e-05 1688,597.7801,6.728262,41.366577,76.44097,1.8513963e-05 1688,91.79623,420.89798,76.56492,76.78259,1.5124124e-05 1688,0.83503824,438.91458,22.289206,63.713776,1.2474564e-05 1688,228.4232,417.03336,69.9406,76.27942,1.0886331e-05 1688,45.729755,420.91577,76.494354,75.89038,7.658235e-06 1688,2.1629996,18.328268,56.254013,111.94195,1.5170536e-07 1689,438.6574,211.85982,27.77884,65.37358,99.87243 1689,454.0462,215.93262,31.423035,61.95816,99.53909 1689,297.06656,226.06444,34.77826,98.804245,24.176296 1689,621.789,159.87424,17.357666,55.81166,0.051974617 1689,611.1097,182.50546,28.036987,65.63202,0.008774289 1689,271.5638,208.20198,80.68033,173.53209,0.0063993325 1689,40.248844,222.26404,24.95332,52.332275,0.002500564 1689,4.8284574,234.29845,74.346596,239.32079,0.00093415775 1689,2.533558,183.78621,36.127525,108.57442,0.0003966029 1689,617.9182,363.386,21.228455,80.025635,0.00029622598 1689,611.5958,54.71302,27.550842,163.43546,0.0002750833 1689,599.49963,131.0237,39.647034,184.08138,0.00020082205 1689,436.6474,180.67639,67.842834,154.05396,0.0001791222 1689,1.0424373,204.31143,13.661231,54.59256,0.0001541942 1689,32.191498,187.54901,46.25103,142.49072,0.000113651266 1689,1.4595703,223.79584,18.73461,79.315796,0.00010103257 1689,611.5991,241.21516,27.547546,166.00578,9.8435354e-05 1689,1.1535091,136.32045,18.237455,70.49771,8.748087e-05 1689,609.1605,432.693,29.986145,69.95453,7.078643e-05 1689,2.875179,384.81122,56.62145,103.212585,6.6240726e-05 1689,0.9884505,381.0376,18.58915,77.79324,6.58418e-05 1689,1.373265,260.11414,19.377947,148.30103,4.59147e-05 1689,589.39905,336.136,49.552307,147.04626,4.002583e-05 1689,257.1653,381.22827,111.25174,112.65784,2.6217109e-05 1689,91.076836,420.36646,77.96177,77.796844,1.568538e-05 1689,3.0977345,82.630135,60.686775,241.55414,1.3667116e-05 1689,598.0227,6.739844,41.123962,77.79381,1.3301906e-05 1689,287.61676,437.1247,42.527924,62.334106,1.29954415e-05 1689,0.7702596,438.12427,22.233559,64.28552,1.248074e-05 1689,229.0541,416.97742,69.497665,76.19083,1.1443527e-05 1689,47.549988,420.19464,75.11853,76.716675,1.0809425e-05 1689,1.5371045,51.877945,30.906824,175.37297,2.7294095e-06 1689,1.8712468,17.87627,56.67639,116.96835,1.4509442e-07 1689,1.1078842,8.426857,29.487785,54.761555,3.1294594e-08 1690,432.25006,208.15974,30.26651,67.46501,99.902954 1690,452.97495,215.56367,26.922424,59.557083,99.524635 1690,294.25418,225.60472,38.23633,99.737045,5.8184004 1690,620.50006,163.93002,18.646606,59.669876,0.033989847 1690,283.19925,233.28603,29.002777,71.38197,0.0077669895 1690,437.31308,194.87198,56.112885,97.967804,0.005519349 1690,294.14578,273.06476,21.796295,45.30612,0.005174697 1690,269.23105,213.03708,79.83389,166.43652,0.005073124 1690,621.4168,203.60378,17.729858,53.468826,0.004549252 1690,51.164337,218.34161,26.983253,52.38846,0.0031810985 1690,604.79126,132.0491,34.273743,128.42017,0.0030784816 1690,1.5383317,137.2838,18.362764,66.1028,0.00075868145 1690,4.950254,240.6275,74.00319,235.7203,0.0006251546 1690,1.3997698,202.68143,18.240814,82.82031,0.00021694748 1690,2.0884213,129.6386,28.729616,146.48317,0.00018598212 1690,611.45056,291.3584,27.696106,146.51645,0.00013350853 1690,612.9004,378.8428,26.246277,119.14075,0.0001264904 1690,2.9747853,388.4731,57.1351,101.54205,0.00011850423 1690,612.7488,196.44945,26.397888,167.83675,8.597517e-05 1690,33.005753,187.89165,45.238594,137.36418,7.79514e-05 1690,1.0796077,390.56387,18.43912,74.735504,6.989479e-05 1690,411.276,142.283,125.86023,223.62971,5.5004857e-05 1690,1.7669907,306.99777,30.35904,154.63562,2.8145902e-05 1690,610.8086,13.9171095,28.338074,172.34584,2.686152e-05 1690,308.04053,268.20953,79.52661,203.55591,2.573372e-05 1690,1.077168,265.16272,18.145971,75.38104,2.2466895e-05 1690,3.4184425,81.470764,60.48876,233.35675,1.592537e-05 1690,0.997675,326.49698,17.665697,80.47464,1.5542297e-05 1690,91.18878,420.1642,77.250946,78.39368,1.5341695e-05 1690,0.8882902,439.38632,22.432287,63.152588,1.5164217e-05 1690,263.73056,384.69458,111.69589,108.462036,1.480805e-05 1690,287.61392,438.0773,42.085297,61.608276,1.2631196e-05 1690,233.901,417.9341,71.457855,77.079956,1.2520415e-05 1690,571.0324,62.75728,68.11426,262.72614,1.2272535e-05 1690,43.863235,420.4456,78.881874,76.95447,1.0845151e-05 1690,1.3438249,12.392152,35.655636,71.948494,1.2085182e-07 1691,443.5697,215.6162,26.953735,55.97194,99.6278 1691,426.52325,210.00833,25.257263,61.04242,99.59462 1691,299.42215,225.25261,36.989777,106.823105,1.5278364 1691,613.9924,173.056,24.24469,53.54608,0.14843236 1691,305.62103,230.61575,21.7005,51.424805,0.046978254 1691,50.577835,214.09508,28.563019,55.0114,0.010942142 1691,624.66547,157.56828,14.481201,46.41617,0.008988962 1691,270.6856,211.64995,81.0665,171.73445,0.0036558565 1691,459.42783,220.49333,23.431732,47.262833,0.0031469215 1691,426.64612,193.071,56.339417,101.85164,0.0027037929 1691,605.27234,88.40684,33.579407,151.66724,0.0023516528 1691,617.4456,199.52243,21.70105,86.84985,0.0011206473 1691,37.949833,172.14261,46.2532,130.09457,0.0010310289 1691,621.5721,121.19697,17.574585,61.548485,0.000767064 1691,23.31716,226.24425,26.414892,57.920456,0.0006107184 1691,2.2404947,178.97824,36.445004,112.652374,0.00052333897 1691,4.979873,233.04292,73.87418,242.0096,0.00050411455 1691,1.3842692,134.99838,18.348528,69.987854,0.00047179405 1691,320.75732,292.5788,41.799194,159.44382,0.00034165627 1691,610.87775,290.2821,28.26892,149.22318,0.0002751919 1691,614.039,410.18286,25.107666,91.409485,0.00013314791 1691,1.4376554,226.01474,18.622711,75.48883,0.00010792167 1691,589.2339,153.39932,49.91278,264.17236,0.00010409226 1691,1.0428792,388.31726,18.476236,76.09088,9.7681426e-05 1691,2.9256022,385.87906,56.88167,102.07022,9.516292e-05 1691,401.40314,143.94272,130.24426,228.27374,4.7542497e-05 1691,1.8275017,309.66913,30.010885,151.75266,4.150691e-05 1691,257.38052,382.36804,115.17966,110.010315,3.585439e-05 1691,597.4993,6.8336754,41.64734,76.453415,2.3397815e-05 1691,3.2592075,83.65717,60.18164,234.49655,1.9968944e-05 1691,100.21335,420.49063,74.385025,77.062805,1.8618819e-05 1691,281.23398,436.35352,42.882294,63.107544,1.5489059e-05 1691,229.15215,416.51224,68.85292,76.993256,1.3775859e-05 1691,0.82031006,438.39917,22.159079,64.07449,1.1810545e-05 1691,58.042877,418.84088,70.64087,77.65042,1.0368925e-05 1691,571.6757,360.05075,67.35986,128.10123,6.9660955e-06 1691,1.0362281,283.01138,18.163599,85.28137,6.4269243e-06 1691,1.322334,44.160275,31.101917,179.07037,1.5879746e-06 1691,1.3873063,12.846429,35.695698,72.96631,1.0847976e-07 1692,420.1472,211.68498,24.61435,57.22957,99.76298 1692,438.6516,215.4493,26.800903,53.997696,99.097084 1692,297.08728,230.7364,35.56375,91.3802,27.63621 1692,301.1255,226.00146,21.87323,47.076935,0.071910344 1692,283.60986,232.78238,28.406555,69.44101,0.028571185 1692,621.1271,160.42363,18.019592,59.376404,0.02569817 1692,271.8924,212.20636,79.67337,168.3854,0.009302006 1692,611.8879,99.293175,27.25879,137.29321,0.006028455 1692,50.920334,215.59341,28.012901,54.54471,0.0047464115 1692,621.4041,205.77715,17.742554,52.21074,0.0042166226 1692,13.848112,216.81534,35.317863,84.49997,0.00086054445 1692,407.11203,191.16171,60.21219,95.77655,0.00075704296 1692,4.494948,230.99896,74.09869,243.57959,0.0006163623 1692,542.2699,118.73284,24.35962,46.231483,0.00046038616 1692,618.2978,365.2236,20.848877,77.13547,0.00025505282 1692,612.6585,171.47862,26.48816,145.95876,0.00021325388 1692,1.4452198,202.79742,18.356962,82.85327,0.00016634172 1692,613.7827,409.8009,25.363953,91.36386,0.00016532102 1692,1.3267668,135.3528,18.34111,71.8721,0.00012231074 1692,573.12555,108.11332,65.75519,247.36707,0.000101442594 1692,32.001175,184.25035,46.391823,141.7931,9.023448e-05 1692,2.5756495,168.74693,33.926735,185.64403,8.884239e-05 1692,1.0403687,388.53403,18.616375,75.502075,7.897956e-05 1692,2.943802,383.59088,56.649082,104.11969,7.8512e-05 1692,589.36035,241.90605,49.4541,240.50392,6.44288e-05 1692,306.00287,268.43234,80.78583,202.97382,6.314096e-05 1692,393.81262,144.14383,129.64227,227.64233,4.91432e-05 1692,1.6855258,305.69086,30.641161,157.34952,3.869504e-05 1692,256.55954,380.01697,112.13193,112.539185,2.4341483e-05 1692,0.90256757,349.45554,13.807199,54.19995,2.1135062e-05 1692,91.409615,420.5938,77.37351,77.54843,1.9118681e-05 1692,289.9939,449.6479,41.068176,52.040558,1.7093937e-05 1692,597.9284,6.2966604,41.21826,80.5041,1.1797093e-05 1692,1.1702743,281.52524,18.32235,85.874054,1.08364875e-05 1692,267.77774,437.47778,42.627197,62.48816,9.204845e-06 1692,47.660164,419.94485,75.028786,77.0488,8.925097e-06 1692,0.8434025,438.91406,22.102106,63.602264,7.99975e-06 1692,228.05995,416.703,71.11659,76.302124,7.595942e-06 1692,1.6621468,48.777813,30.921844,180.52074,5.0408485e-06 1692,0.6340853,12.739821,9.500225,77.52277,4.86449e-07 1692,2.0853891,21.011124,56.25179,109.59123,3.186282e-07 1692,1.2233399,9.841112,29.088684,54.56198,9.200028e-08 1693,416.63403,212.55249,23.068848,52.40039,99.116714 1693,429.59012,215.35715,23.414307,50.760468,98.68671 1693,295.6432,225.27716,36.2771,98.865814,4.512445 1693,620.3113,160.80342,18.835388,59.384872,0.10581083 1693,51.12789,215.18681,28.184593,55.007553,0.009745047 1693,611.64166,96.872505,27.505005,139.98145,0.0066446112 1693,272.1971,213.26688,78.179474,166.12411,0.0053090774 1693,14.583912,216.87312,34.40337,81.454025,0.0011280318 1693,4.315368,214.50558,56.889736,237.98645,0.00083309703 1693,407.00232,183.91512,53.914,105.01485,0.00034683637 1693,38.990913,182.55266,45.335335,129.77312,0.00024247865 1693,612.7847,378.82678,26.361938,118.033325,0.00016332205 1693,1.3708496,136.29932,18.132053,69.585236,0.00014529024 1693,604.1419,171.42537,35.00476,212.73512,0.0001418292 1693,320.99863,289.35373,41.39212,158.56815,0.000115971 1693,611.5819,292.43018,27.564758,147.29901,0.000109634995 1693,1.4532349,210.26598,18.569,80.67479,0.00010229079 1693,2.982715,386.9577,57.167526,102.2572,7.940657e-05 1693,1.0322306,381.3998,18.511143,77.38977,7.6024495e-05 1693,1.8328289,305.34845,30.19513,155.17673,5.7133257e-05 1693,1.188488,260.33652,18.294872,76.59604,4.44292e-05 1693,2.1955502,156.90996,33.005688,188.00993,4.2224525e-05 1693,1.024869,319.39938,17.515,82.18378,3.8289523e-05 1693,264.1588,383.33636,113.07922,109.79855,2.0455404e-05 1693,287.62543,437.37158,42.33365,62.412506,1.3705256e-05 1693,0.8430266,439.12814,22.278143,63.54953,1.2822561e-05 1693,597.90356,5.245687,41.243103,79.39966,1.1042717e-05 1693,91.28563,421.06195,76.73277,75.47394,9.509399e-06 1693,415.34448,157.95197,88.31653,203.74081,9.344023e-06 1693,234.51222,417.2311,71.14967,77.0076,9.261676e-06 1693,46.228474,421.3764,76.355225,76.24579,9.0698495e-06 1693,1.662334,52.470783,30.64547,176.71959,3.63928e-06 1693,1.5547234,13.656068,35.281162,71.52947,1.264706e-07 1694,413.23734,213.65312,21.112946,49.615524,96.405396 1694,425.7444,215.64062,19.028748,49.088165,83.06363 1694,297.85345,223.96536,35.57245,94.382324,3.7392516 1694,614.45874,167.83897,24.173218,48.794144,0.18920664 1694,349.919,199.02805,24.8508,46.739334,0.013764886 1694,50.298065,214.79948,28.366653,56.101578,0.009495518 1694,613.18195,197.33733,25.692627,53.649582,0.006181295 1694,278.6529,209.48029,72.83984,170.1713,0.0050418903 1694,605.3794,94.026245,33.593384,148.64197,0.0017126556 1694,5.188838,234.18378,74.168976,242.11337,0.0005652385 1694,618.16504,394.82785,20.981628,76.91077,0.00052762014 1694,400.66968,196.94649,41.328552,88.293686,0.0004392232 1694,2.2850766,183.90263,36.885498,112.21672,0.0003086626 1694,603.97815,171.73422,35.168518,215.1167,0.0002883216 1694,324.40964,317.08417,38.187836,91.44498,0.00027720165 1694,604.4079,313.56284,34.73877,151.87125,0.00014618725 1694,33.406166,187.33612,45.550323,140.32394,0.00013054248 1694,1.3494084,135.50128,18.276402,70.853745,0.0001293111 1694,1.518261,226.26344,18.535955,78.28551,0.00010448451 1694,306.92734,265.50677,80.505585,199.35907,7.179009e-05 1694,3.102425,384.99686,56.741978,103.12598,6.588395e-05 1694,1.3184106,175.44388,18.231613,79.78429,6.4041895e-05 1694,1.0137223,388.87164,18.396307,74.87576,5.830458e-05 1694,2.0472527,312.93777,30.174706,151.72037,5.285798e-05 1694,574.79474,419.3778,64.32318,78.18674,3.461939e-05 1694,1.4583927,252.06831,19.989178,149.15508,3.057902e-05 1694,113.69916,421.54684,73.09335,72.956024,2.2979204e-05 1694,256.66544,383.18903,111.8389,109.70917,2.1497555e-05 1694,281.21057,435.5203,41.93167,63.756134,1.4057575e-05 1694,395.45584,149.44872,78.126526,199.69615,1.1970775e-05 1694,598.6647,8.381488,40.481995,75.33846,1.1927869e-05 1694,227.67134,416.62625,70.607285,76.44818,1.0888823e-05 1694,0.8864478,439.8993,22.089048,62.601807,7.47564e-06 1694,47.292007,420.5783,75.11815,75.96857,6.985268e-06 1694,3.1512518,56.89289,59.287663,251.07849,6.4343326e-06 1694,0.80492353,21.60034,16.831867,150.16612,1.0466723e-06 1694,2.0961328,20.213715,56.490273,112.98892,1.2693701e-07 1694,1.1939746,8.519474,29.458857,55.60629,2.3270722e-08 1695,406.33862,210.30876,23.23587,51.239334,99.30368 1695,420.85144,212.00682,19.216705,47.295242,13.209253 1695,295.6033,227.74678,36.80066,104.32698,1.0618242 1695,50.875328,213.67105,29.05156,55.370422,0.02324294 1695,621.53174,163.88203,17.61493,56.261246,0.012062249 1695,271.4924,208.5084,79.07123,177.65895,0.0061542057 1695,621.033,197.64647,18.113647,54.551056,0.0054343753 1695,305.1172,224.31854,22.126617,45.060028,0.0042318986 1695,611.8278,96.44142,27.318848,136.69783,0.001505102 1695,14.465822,217.56763,33.97168,78.19794,0.0010258845 1695,4.3862762,303.54114,71.25321,173.75778,0.00042757083 1695,617.9681,364.1547,21.178589,78.63089,0.00035434385 1695,40.04495,183.2174,44.180958,126.694855,0.00026886424 1695,404.12427,178.17966,53.27896,106.33118,0.00022234442 1695,1.5042301,204.40654,18.1386,80.306595,0.00019050734 1695,613.4284,413.49747,25.718262,87.72281,0.00017619185 1695,603.73584,175.14932,35.410828,209.59018,0.00013472424 1695,1.0295076,389.2808,18.421883,75.08865,0.00010438033 1695,2.4032536,230.60196,33.30729,193.26859,8.444423e-05 1695,3.7134001,118.332504,58.95299,249.95885,5.7544577e-05 1695,588.82056,338.6823,50.09619,144.52603,3.965992e-05 1695,1.022006,76.94971,17.605835,141.05789,3.2519674e-05 1695,308.78476,269.88416,78.43118,200.70508,3.179806e-05 1695,1.1170695,327.56787,17.791933,81.96002,2.72182e-05 1695,597.8977,8.097838,41.248962,76.003555,2.679341e-05 1695,113.814896,420.83295,72.13245,73.77945,2.5976347e-05 1695,1.0792408,265.0273,18.147818,76.73581,2.4086547e-05 1695,263.4742,381.58362,111.300385,111.42175,1.8054481e-05 1695,283.51453,449.7712,41.877747,52.175934,1.7934015e-05 1695,1.5369922,415.92422,35.920086,81.047,1.5641448e-05 1695,71.349205,419.29678,71.00622,77.95932,1.1319226e-05 1695,228.66539,416.17752,69.72841,77.42108,1.0522634e-05 1695,355.14764,128.99051,136.242,233.76935,6.6822176e-06 1695,1.3768929,12.784011,35.801273,72.1723,1.6243979e-07 1696,401.10757,206.62741,23.083588,53.447205,99.50078 1696,417.0595,212.05228,21.15213,47.657898,97.87261 1696,298.64395,224.3687,36.945465,104.12807,3.8548057 1696,614.2961,168.7348,23.976929,52.457962,0.07710401 1696,302.1702,231.03032,22.411682,49.91539,0.060134027 1696,50.999496,217.68333,27.137604,53.74504,0.008201624 1696,278.37338,219.47246,75.26956,186.83235,0.0021365152 1696,15.5368595,210.70525,32.46775,76.902756,0.0020713615 1696,604.99023,114.90459,34.05188,135.81363,0.0011835573 1696,4.332269,300.77713,71.20652,175.79898,0.0005893349 1696,618.35736,363.6614,20.789307,79.741455,0.0002673139 1696,603.9509,172.89497,35.19574,203.47563,0.00024056574 1696,1.3688827,135.04393,18.254974,70.64519,0.00022961665 1696,1.487754,202.76942,18.361574,81.35637,0.00019089034 1696,613.89374,412.38748,25.25293,89.812225,0.0001869217 1696,398.49954,176.6222,53.831512,108.1561,0.00018094144 1696,13.013803,176.78987,76.43851,190.42708,0.00016721379 1696,2.3796647,231.00427,34.14498,193.72241,0.00013090177 1696,1.959611,85.22079,34.571457,181.70474,6.632062e-05 1696,1.1714877,320.70062,17.883856,82.4415,5.9195918e-05 1696,0.93988365,379.90417,18.582016,78.509796,4.1671035e-05 1696,589.4232,337.8616,49.320923,148.32544,3.6944133e-05 1696,108.01723,421.45282,73.356155,74.02933,3.6842797e-05 1696,611.4541,26.859024,27.692566,160.57684,3.277654e-05 1696,570.9743,69.42793,68.17236,250.08363,1.9196217e-05 1696,1.1497592,265.72513,18.298012,79.99396,1.8060613e-05 1696,287.56885,437.16367,42.597046,62.06537,1.6865582e-05 1696,598.818,9.127549,40.328674,75.24765,1.6345717e-05 1696,263.61536,383.82153,110.85672,109.62973,1.552316e-05 1696,217.89998,418.39377,67.79277,73.39603,1.21328885e-05 1696,1.5329981,416.07846,35.551117,80.04941,1.05919025e-05 1696,46.103916,421.0001,76.28543,75.59268,7.523401e-06 1696,380.30887,135.56189,129.46146,225.83566,7.3519677e-06 1696,1.9639844,19.30875,56.541134,114.16528,1.7628736e-07 1696,1.0379672,9.327247,29.52349,53.87325,5.0737647e-08 1697,411.53848,212.23563,22.549377,46.232513,96.776886 1697,397.43185,210.39934,20.49942,47.199173,96.238716 1697,296.7562,229.63719,34.81302,91.80821,12.128987 1697,621.37103,163.79588,17.775635,56.90027,0.013903924 1697,283.78864,235.88368,27.077332,65.59032,0.013395797 1697,51.494427,218.89032,26.548176,51.029602,0.0058946405 1697,620.6641,196.95995,18.482544,56.92241,0.0056673097 1697,13.613119,217.3993,34.48551,79.25093,0.0029510448 1697,272.10736,212.99011,79.040924,164.33328,0.0029131908 1697,612.133,96.202705,27.013672,138.27197,0.002188885 1697,396.7111,192.8243,42.704193,88.712296,0.0011315193 1697,621.58203,108.61989,17.564636,55.285065,0.00078135246 1697,4.3765006,210.42473,55.96949,237.97289,0.0006577116 1697,617.997,363.21872,21.149658,79.38571,0.00033879132 1697,1.4957609,203.0329,18.374931,82.6785,0.00025426666 1697,614.26025,409.50986,24.886414,91.69995,0.00018101581 1697,603.5386,172.89455,35.608093,206.14082,0.00015740855 1697,28.023726,200.53719,42.163857,145.23366,9.1744485e-05 1697,2.1853206,126.33685,35.1867,179.78552,8.943106e-05 1697,1.0335555,70.568115,17.610992,140.14227,8.056656e-05 1697,0.8868897,389.69464,18.361,73.8295,6.702015e-05 1697,589.24634,336.99283,49.606018,146.11902,4.7478203e-05 1697,306.80447,264.76657,80.85632,206.09067,4.0936895e-05 1697,3.1947463,385.17285,56.65757,103.822784,3.5225723e-05 1697,1.1932698,249.69066,19.8332,148.84285,3.1655276e-05 1697,263.9165,382.43427,116.82446,110.36951,2.3450135e-05 1697,381.53015,149.68904,84.47131,199.04103,2.0890106e-05 1697,91.3681,420.62286,77.30209,77.207825,1.5478397e-05 1697,293.93668,437.8324,42.83136,62.020264,1.5250246e-05 1697,217.818,418.00073,67.94333,73.64682,1.0232987e-05 1697,0.78683025,439.22028,22.092272,63.634796,7.8255025e-06 1697,570.53204,56.92521,68.614624,269.8521,7.1260565e-06 1697,598.0972,4.5261946,41.04944,81.921555,7.0495944e-06 1697,47.916744,421.2052,74.601364,75.750854,6.98944e-06 1697,1.3020508,14.070485,36.27651,72.469536,4.5897158e-07 1698,392.7896,209.44893,20.514893,46.279984,96.95632 1698,405.61426,210.46979,22.571045,46.24118,93.12901 1698,296.51633,228.93227,35.749725,98.95012,8.830225 1698,56.493237,217.3129,26.180325,51.69748,0.032801803 1698,621.45984,164.81497,17.686829,55.25035,0.019414835 1698,614.2311,195.26477,24.743408,51.12224,0.009012264 1698,270.94876,214.92448,79.61276,168.18266,0.004571261 1698,611.99695,98.61603,27.14972,138.11314,0.0027003477 1698,14.152576,216.34673,34.04417,80.43739,0.0022134741 1698,388.55615,192.36264,43.76248,89.61185,0.0008676311 1698,4.297302,215.94798,55.917023,239.74931,0.00057824753 1698,18.798473,181.43956,59.89295,152.73228,0.000264118 1698,618.11285,363.02756,21.033813,79.86417,0.00023854457 1698,1.5111898,203.437,18.299469,82.31322,0.00019357899 1698,604.0748,176.1547,35.07184,206.13123,0.00019239524 1698,1.3857064,136.37852,18.178556,69.02576,0.000137019 1698,0.94211674,389.33777,18.360226,74.408295,7.9068566e-05 1698,2.3796713,126.89735,35.297226,180.5242,6.6335044e-05 1698,2.9821746,386.8408,56.876396,102.338135,5.1016214e-05 1698,598.45874,406.38522,40.362183,91.28061,4.6880512e-05 1698,1.8175521,308.10864,30.003262,152.8472,3.4883324e-05 1698,113.90732,421.47845,71.62215,73.36313,3.16375e-05 1698,263.88776,382.233,114.20328,110.46051,2.5209525e-05 1698,1.0864966,264.812,18.234737,76.13931,2.5092859e-05 1698,375.05698,152.33307,83.64929,197.35837,1.561727e-05 1698,218.02989,417.02115,67.460434,74.43713,1.3499107e-05 1698,287.7076,436.22504,41.94278,63.44049,1.2902676e-05 1698,598.0994,6.8156514,41.04724,79.65179,1.2351839e-05 1698,0.78177005,438.01892,22.2745,64.513275,1.2263187e-05 1698,71.681175,419.07767,70.61338,77.197296,8.851269e-06 1698,0.7601734,18.604012,16.72805,128.71548,2.5764248e-07 1698,1.7896436,18.57612,56.742313,113.0205,1.5391109e-07 1698,1.0740918,7.879061,29.50865,55.326603,3.069498e-08 1699,389.99396,209.06128,21.216553,47.043945,92.20739 1699,403.44305,210.36212,21.772034,46.623077,89.313644 1699,297.13242,223.91183,34.125763,104.01062,1.9404527 1699,621.1993,159.85553,17.947388,55.721176,0.02082872 1699,610.647,184.52956,28.499695,63.981277,0.009879861 1699,292.93832,272.19882,24.06137,47.888794,0.0067317965 1699,271.3198,232.96642,47.302917,125.31938,0.0045319577 1699,14.823884,213.8024,32.800022,74.71991,0.0036389937 1699,41.798737,186.41365,42.540474,101.86922,0.0024427148 1699,3.8698244,210.42914,56.7482,241.62112,0.00070230605 1699,295.6339,209.38963,74.388245,183.32631,0.0005158773 1699,611.36163,62.04114,27.785034,160.65668,0.00037709414 1699,618.28925,365.4028,20.857422,77.55496,0.00025827295 1699,1.3743498,135.99919,18.34421,69.57875,0.0002456246 1699,1.5331486,203.19992,18.281826,81.56485,0.00019820283 1699,599.0385,132.58899,40.108154,184.19226,0.0001701291 1699,613.8106,410.72086,25.33606,91.26514,0.00015709798 1699,321.33817,293.85815,40.64035,152.97629,9.3638686e-05 1699,2.7403972,387.3403,57.24953,101.908936,8.952168e-05 1699,384.0852,175.21799,55.668396,106.50214,8.735956e-05 1699,1.735682,80.98353,35.116814,186.27231,8.0539445e-05 1699,589.06256,231.30656,50.032898,253.0059,8.049291e-05 1699,1.0613786,389.8508,18.55956,75.43683,7.877931e-05 1699,1.7885368,314.91464,30.712898,151.9136,5.240763e-05 1699,1.1706502,249.16232,20.292673,155.56104,2.9323823e-05 1699,0.8199927,438.24542,22.404781,64.21121,1.802881e-05 1699,218.32402,417.2601,67.4438,74.72876,1.6613387e-05 1699,598.521,8.168662,40.62567,75.3876,1.4041161e-05 1699,92.538124,421.0746,76.1518,75.357574,1.2931278e-05 1699,275.7138,416.6589,72.71417,79.37387,1.2650581e-05 1699,45.157604,421.3973,77.02084,75.611145,7.837542e-06 1699,340.58093,122.22826,134.99496,225.86131,4.8869415e-06 1699,0.76204264,19.790625,17.140553,127.27578,4.2519645e-07 1699,1.8525765,19.676346,56.789066,114.305145,2.7245187e-07 1699,0.98273605,8.100217,29.553898,56.304386,3.4966686e-08 1700,299.01645,227.38795,36.316925,100.33406,4.9834294 1700,302.25955,230.81128,21.602417,48.213684,0.058740333 1700,621.44794,165.5421,17.69873,53.608276,0.02793009 1700,50.936043,217.8635,26.90065,52.00757,0.008623601 1700,620.52814,198.2159,18.61853,55.213226,0.008501728 1700,14.150413,211.0645,33.643684,78.10646,0.004048362 1700,612.195,99.79995,26.95166,139.26144,0.0030762865 1700,272.14584,214.94965,78.539246,161.70276,0.0029733279 1700,34.10784,175.28511,44.790657,130.16264,0.000802785 1700,5.1172366,237.1374,72.82975,238.86885,0.00079509255 1700,1.5689746,203.43597,18.35024,81.39188,0.00024178799 1700,604.2725,175.28876,34.874146,202.49869,0.00023496343 1700,2.93577,338.7858,39.601685,114.76764,0.00014896564 1700,541.6844,116.27039,25.26477,48.93119,0.00014827115 1700,611.8607,292.31476,27.28595,145.96802,0.00014362576 1700,613.4825,409.98428,25.664185,91.8938,0.00013319644 1700,1.2786393,134.66049,18.36906,71.65445,9.853961e-05 1700,0.96930665,388.46234,18.532785,75.91672,7.2708615e-05 1700,372.98654,172.18599,55.979126,105.265915,7.084262e-05 1700,2.4497151,126.72422,35.88882,181.0333,5.52163e-05 1700,1.1315275,327.6785,17.980963,82.11685,3.520248e-05 1700,597.5443,6.7702475,41.602356,79.35163,2.63983e-05 1700,1.9225668,242.05042,28.931412,170.87564,2.519568e-05 1700,256.6474,382.9957,110.17343,110.15042,2.175092e-05 1700,91.769585,420.60638,77.45748,77.42383,2.0376978e-05 1700,1.0065771,264.98642,18.27901,78.78009,1.36633635e-05 1700,227.54985,417.661,70.86589,75.014984,1.116692e-05 1700,1.594069,416.09283,35.68759,80.038055,1.0478193e-05 1700,571.3385,69.74757,67.80817,255.34067,8.970476e-06 1700,571.57556,360.83994,67.53772,128.0635,7.5894254e-06 1700,339.18658,116.61687,135.08115,226.53242,6.4696396e-06 1700,47.34487,421.23517,75.37805,75.86853,6.208171e-06 1700,1.0448585,25.649174,28.425226,159.28302,6.3480854e-07 1700,0.91260666,7.955923,19.712927,54.031258,2.3056268e-08 1701,385.865,209.11732,20.239532,45.01158,99.474754 1701,296.84164,229.0235,35.176605,92.80856,25.764719 1701,620.6674,155.26729,18.479248,61.712387,0.030848684 1701,610.8305,181.53253,28.316162,65.80011,0.011805849 1701,51.391376,218.02672,26.468304,52.29277,0.009875906 1701,271.468,215.66693,79.6189,158.37512,0.0052696983 1701,14.9863,206.82167,33.055984,82.96413,0.0029825033 1701,611.2048,62.85418,27.941895,159.60837,0.001000973 1701,4.9809995,233.01271,73.29109,240.60875,0.0009202067 1701,382.9049,191.04848,41.747498,86.31438,0.0007345881 1701,1.4326555,201.41219,18.450607,82.88432,0.00035849752 1701,133.46434,422.9593,26.496048,49.41916,0.0003217772 1701,617.77637,361.18295,21.3703,81.65192,0.0002564983 1701,613.8369,411.41776,25.309753,89.86841,0.00017153655 1701,603.9548,170.63239,35.191895,218.93307,0.00014753234 1701,2.3677766,163.89833,34.317886,183.23897,0.00011791868 1701,32.633457,193.57144,44.51617,142.56403,9.949751e-05 1701,1.0716195,392.38147,18.22047,71.84775,5.468596e-05 1701,589.2743,339.8551,49.656494,144.72559,4.7851216e-05 1701,0.9907756,76.530365,17.77589,142.92027,4.0538445e-05 1701,108.124016,420.84903,72.88792,74.545105,3.901728e-05 1701,1.6965576,304.83633,29.915539,154.02576,3.379474e-05 1701,3.1112256,391.8337,57.049088,98.6073,3.2137068e-05 1701,309.39743,269.41898,78.5499,202.22739,2.868839e-05 1701,1.0542587,265.48383,18.391478,77.355286,2.6805628e-05 1701,366.2141,150.1851,84.81235,194.86565,2.4736128e-05 1701,263.80206,383.6584,113.3631,109.4285,2.0598898e-05 1701,597.4442,5.137051,41.702454,80.46342,1.5715146e-05 1701,232.84735,417.29404,72.20755,77.59427,1.3608862e-05 1701,281.3909,436.90186,42.033966,62.35211,1.343502e-05 1701,0.84997237,438.78616,22.189466,63.521088,1.2894175e-05 1701,46.1311,421.13617,76.213806,75.2453,6.2871995e-06 1701,1.9516748,17.805847,56.48433,116.04332,1.1824881e-07 1701,1.1604867,7.9693394,29.399117,54.59787,1.8746007e-08 1702,298.99353,226.73776,37.545227,103.19556,1.8386163 1702,615.40436,172.77582,23.389526,51.013947,0.1335659 1702,302.1788,230.48938,22.089172,49.14615,0.02973072 1702,56.381214,220.04712,25.24049,48.741547,0.017241627 1702,23.837719,218.71823,25.718544,57.816498,0.008208847 1702,271.58035,214.38261,80.29199,167.40724,0.004490323 1702,606.0795,114.68763,33.049194,139.72601,0.0033110213 1702,36.848118,195.09396,42.487278,99.305145,0.002069403 1702,372.22897,185.25078,38.872223,74.34538,0.0016301787 1702,4.058265,211.92381,56.604065,239.29338,0.0016179989 1702,621.5491,120.74307,17.597595,60.29944,0.00091575604 1702,1.5195353,134.59969,18.479345,70.158035,0.00040747155 1702,618.2195,363.22797,20.927185,79.22586,0.00027477546 1702,2.4626482,182.39435,37.138668,113.6008,0.00026237647 1702,612.7989,179.72292,26.347778,157.39384,0.00025523067 1702,19.436666,155.28354,79.22408,196.10114,0.00016700134 1702,613.8733,409.90677,25.273376,92.27612,0.0001555858 1702,1.5185051,226.57251,18.504145,75.35281,0.00011068354 1702,2.7902393,385.13,57.150734,103.546295,9.7088705e-05 1702,1.0039681,388.18198,18.600893,77.31198,7.2974675e-05 1702,589.24817,227.51794,49.8985,256.8728,6.005929e-05 1702,1.7897054,307.41348,30.43661,154.91269,4.8358692e-05 1702,571.89276,108.5678,67.25391,238.1478,2.9179379e-05 1702,1.0441765,296.79312,18.358885,90.42682,2.5767515e-05 1702,360.5887,162.26161,73.03021,159.87541,2.229401e-05 1702,263.68805,382.19305,113.12872,111.29263,1.8855728e-05 1702,597.6276,6.834772,41.519043,78.5631,1.7426897e-05 1702,283.46072,449.82257,41.927765,51.778748,1.5213016e-05 1702,0.7977515,438.0522,22.347483,64.42789,1.4886834e-05 1702,223.03072,417.9696,68.77394,74.71692,1.37967245e-05 1702,92.496216,420.93506,74.83595,75.15515,1.0004045e-05 1702,45.143044,421.17642,77.14098,75.52344,7.2644857e-06 1702,1.3923178,49.13365,30.677536,173.46606,2.222938e-06 1702,1.9978076,16.881693,56.709732,120.89803,9.433842e-08 1703,298.94507,225.08482,33.846313,87.38954,4.816122 1703,614.5713,171.36469,24.393005,54.18631,0.054629497 1703,278.31726,209.66553,67.29489,155.82,0.017983036 1703,51.166233,219.15977,25.221127,50.681717,0.0057399464 1703,283.81424,237.96597,27.849731,65.1676,0.004746751 1703,17.754955,224.41243,25.80869,56.187088,0.00178181 1703,369.84073,194.49312,41.7554,68.61351,0.0017147771 1703,622.3789,379.6203,16.767761,55.460114,0.001006697 1703,5.3020606,240.03844,73.469345,234.10075,0.00072640256 1703,611.3632,60.2328,27.783447,162.0553,0.000720769 1703,621.9033,122.2539,17.243347,56.220177,0.0005581974 1703,1.0348902,70.22336,18.23114,145.11453,0.00031048714 1703,2.5085614,177.08527,41.976723,134.6098,0.00023807798 1703,612.1699,332.6352,26.976746,128.76471,0.00019807888 1703,603.6161,172.82748,35.53058,215.20251,0.0001668568 1703,614.07184,408.88733,25.07483,92.39664,0.000151893 1703,1.4703801,203.56648,18.312033,81.06001,0.00011793363 1703,32.628357,189.67604,45.196144,136.46202,8.7809276e-05 1703,1.034642,390.5721,18.400648,73.68039,5.0767863e-05 1703,305.0664,265.23392,82.995026,202.2634,4.9412334e-05 1703,3.089113,390.095,56.660645,98.81662,4.0130708e-05 1703,1.7144743,308.46902,29.989317,152.12134,3.2185406e-05 1703,355.5092,156.05519,74.530365,163.64262,3.0018584e-05 1703,264.11856,381.4528,115.57675,111.09531,2.301671e-05 1703,598.0457,6.6674743,41.100952,79.845474,1.6153743e-05 1703,0.9176473,296.66028,18.152298,87.243835,1.4842761e-05 1703,218.08763,418.67676,67.56355,73.77405,1.4820569e-05 1703,0.83366704,438.86533,22.188383,63.68344,1.157184e-05 1703,91.69046,420.5217,76.30644,75.885345,1.0020468e-05 1703,45.830498,420.5173,76.88274,76.620636,8.971024e-06 1703,572.30194,362.4531,66.744995,125.159454,7.718681e-06 1703,1.9874659,23.43959,56.291054,112.03328,3.5111196e-07 1703,1.080516,8.572093,29.208267,57.238255,1.8745114e-08 1704,298.8636,226.31897,38.135925,104.0365,0.51037586 1704,621.2598,169.1581,17.88684,55.12068,0.01252527 1704,613.1387,198.0753,25.55304,49.48491,0.010481708 1704,305.75754,230.56116,21.701324,50.706543,0.0071269614 1704,269.4506,217.37509,82.24051,169.01227,0.003853173 1704,363.12622,187.57053,42.355988,70.58087,0.0018531804 1704,605.0109,124.51483,34.135742,137.72278,0.001701579 1704,41.62944,192.32361,41.639565,95.608215,0.0014434155 1704,5.212969,239.55977,73.29632,231.79836,0.0008780878 1704,2.5241294,178.98407,42.192726,133.91605,0.0002259962 1704,618.10754,362.4808,21.039124,79.3465,0.00020460761 1704,603.26654,206.41083,35.880127,211.10544,0.00014086995 1704,1.4995492,204.60146,18.197994,80.88649,0.00013132641 1704,614.1971,409.6099,24.949585,91.44418,0.00012341942 1704,1.2258911,133.46538,18.511854,71.57164,0.0001003929 1704,0.9847868,390.3128,18.284151,73.27945,6.962316e-05 1704,2.9731576,388.4363,57.208916,100.60016,4.9249138e-05 1704,1.6335824,92.804016,29.790766,149.15813,4.2878015e-05 1704,1.2660035,259.19604,18.03192,75.166565,4.1557614e-05 1704,2.0894337,244.53662,28.61502,165.00769,3.5517918e-05 1704,256.1012,379.28595,114.22281,113.07724,3.4935863e-05 1704,114.10313,420.848,71.751625,73.93643,3.4536948e-05 1704,589.15466,338.53412,49.66205,145.55981,3.24976e-05 1704,571.6139,111.53232,67.427185,244.97888,2.9131721e-05 1704,597.6236,6.895261,41.52307,76.38876,2.3814106e-05 1704,353.38812,152.8819,76.464264,160.24115,1.8774193e-05 1704,1.0879102,327.77484,17.678162,80.83975,1.7675924e-05 1704,290.03104,450.1171,41.10724,51.508484,1.2929861e-05 1704,0.7903109,438.44476,22.268246,64.26138,1.1448364e-05 1704,227.89438,415.75018,70.374054,77.51654,1.1341897e-05 1704,46.1417,420.14908,76.321335,76.770355,8.557633e-06 1704,267.7947,437.23788,42.42334,62.268433,8.338661e-06 1704,0.7436686,18.239115,16.666933,139.5335,4.5535296e-07 1704,1.8779541,17.520166,56.705475,119.06716,1.11753906e-07 1705,298.82855,219.5905,40.050415,118.393326,0.42133787 1705,621.0528,161.8683,18.093872,58.291626,0.017700048 1705,613.6622,195.25647,24.186646,48.261368,0.012086082 1705,611.2613,98.57022,27.885376,139.35625,0.007835805 1705,306.16205,230.30453,22.658936,51.651154,0.0046346355 1705,364.76453,185.52957,41.13507,71.640656,0.0033092725 1705,621.0585,109.12553,18.088196,59.780785,0.0015780304 1705,29.528337,233.44992,38.32325,80.06265,0.000575756 1705,5.6777964,230.92578,74.60381,240.99216,0.000442112 1705,264.24637,205.33891,99.38541,215.03386,0.00036633317 1705,8.377575,200.92122,34.367886,89.171646,0.00031816214 1705,1.4396908,202.68854,18.357347,83.61557,0.0002999065 1705,1.4780314,134.83313,18.438421,72.92601,0.00025008386 1705,618.26624,363.7816,20.880432,77.74634,0.0002438124 1705,603.86993,172.33224,35.276733,206.51703,0.00020019447 1705,614.0919,410.73187,25.054749,90.80948,0.00011535044 1705,1.027872,389.481,18.33079,75.04642,7.3736504e-05 1705,2.1476352,83.88554,34.61738,188.59045,5.451392e-05 1705,1.9247698,253.85608,27.173326,157.66342,5.4236643e-05 1705,2.9638999,387.58157,56.797794,101.77365,5.3148222e-05 1705,589.0662,339.0512,49.6593,145.4935,3.511249e-05 1705,361.7054,150.39966,73.92938,158.81888,2.232716e-05 1705,270.87057,382.89743,116.658966,108.80878,2.2260529e-05 1705,281.3595,436.16586,42.30945,63.335297,1.6439486e-05 1705,0.8094629,438.71042,22.3514,64.051636,1.5350255e-05 1705,306.89255,435.69806,42.354218,64.69592,1.4280937e-05 1705,597.7678,4.4436135,41.378845,82.14017,1.1904096e-05 1705,234.11165,417.52957,71.26347,76.85153,1.0494453e-05 1705,91.86953,420.76355,76.02126,75.58499,1.0420096e-05 1705,46.58498,420.1209,75.91751,76.73776,8.088769e-06 1705,0.8465381,33.24519,17.609554,149.52925,1.0517714e-06 1705,1.9503533,19.346113,56.49047,114.6861,2.2251851e-07 1705,0.50737387,9.80167,9.020708,87.14363,2.1462716e-07 1705,0.9789519,8.336491,29.562555,55.707333,2.9916123e-08 1706,299.51508,227.85852,37.37558,101.46936,0.55655766 1706,278.55557,255.73491,41.913635,88.15019,0.021931235 1706,621.0758,157.10146,18.070862,57.242477,0.0098715555 1706,295.03543,241.61084,23.513184,57.651733,0.008671239 1706,47.571392,227.15384,41.32535,80.49301,0.007403754 1706,613.6159,195.79585,25.365417,53.587097,0.0065067187 1706,268.97656,218.12587,80.464294,160.73122,0.0042084996 1706,26.505062,228.70706,37.070156,83.01929,0.0022539876 1706,605.1109,92.32093,33.9917,149.04053,0.0015353742 1706,621.6249,122.29625,17.52179,59.441055,0.0011578685 1706,369.5088,181.42699,42.449585,86.71626,0.001019261 1706,5.7523894,275.76077,84.6637,198.39246,0.0007716967 1706,618.2127,363.08267,20.93396,78.84964,0.000357059 1706,616.5177,279.23306,22.628967,77.99222,0.00024128765 1706,602.13556,210.52237,37.01111,200.61032,0.00024007799 1706,1.4563745,135.08261,18.335295,70.54686,0.00022062336 1706,1.5879452,240.46027,17.559011,76.1326,0.00015112098 1706,614.02905,408.87164,25.117615,93.59534,0.00014299515 1706,1.9770362,181.04675,37.43474,117.06543,0.00010510313 1706,2.6302376,338.76755,34.36438,145.59128,9.6273834e-05 1706,589.6569,334.0977,49.037292,149.95316,6.7216526e-05 1706,1.3454428,173.09091,18.581299,81.94386,6.2746985e-05 1706,1.0172453,395.99963,18.361786,74.0181,5.5830526e-05 1706,1.9236882,247.365,28.006706,160.36833,5.4666045e-05 1706,1.6357992,95.06036,29.79478,148.84923,3.684389e-05 1706,1.4443905,346.97247,18.736582,79.75241,3.3612683e-05 1706,3.6849318,120.31646,59.464664,252.67087,2.8634977e-05 1706,289.8627,448.58063,41.678284,52.719543,2.7246926e-05 1706,257.39807,385.19598,110.94495,108.41919,2.6783295e-05 1706,91.01727,420.4754,78.32988,77.41095,1.889104e-05 1706,229.03479,417.0296,69.31256,76.079895,1.3126752e-05 1706,356.11304,147.067,91.326416,196.3843,1.1501724e-05 1706,597.4118,3.7929754,41.734863,82.1192,1.1267401e-05 1706,267.9286,437.15158,43.394165,62.416595,1.1208787e-05 1706,48.096737,420.60184,74.61087,76.01874,1.1097615e-05 1706,0.86425537,439.32626,22.136673,63.18817,6.1212318e-06 1706,1.4752148,13.325358,36.368546,71.894554,1.7475008e-07 1707,375.42807,203.20045,24.225494,47.765884,3.2557611 1707,278.47916,232.62042,52.029297,110.87457,0.40856424 1707,304.1484,237.19449,24.83081,66.45636,0.04446744 1707,37.59134,221.78136,37.817383,81.26048,0.028279848 1707,611.00653,186.2168,28.113281,61.415558,0.01156579 1707,280.73965,279.6587,29.040741,49.358185,0.009965121 1707,284.99655,238.53374,25.304413,59.48604,0.0035954781 1707,254.74649,206.28229,100.74985,225.01465,0.0028991837 1707,298.91635,272.61453,22.756775,48.125946,0.00204151 1707,21.882118,208.47783,34.849438,82.43147,0.0012877238 1707,6.007604,233.47803,75.91994,241.875,0.00076011027 1707,84.38663,220.39958,30.939156,69.71217,0.0004675506 1707,617.3053,105.795364,21.84137,91.67288,0.0003886586 1707,1.5496249,181.46912,18.76806,78.22916,0.0003476978 1707,600.4992,104.18387,38.392944,177.58807,0.00029212836 1707,618.2049,363.94867,20.941772,78.010864,0.00024259408 1707,319.6168,293.28812,43.663452,158.15881,0.00019593486 1707,613.9524,410.3628,25.194275,90.76221,0.00013997658 1707,611.54315,253.59175,27.603516,159.48387,0.00013951279 1707,1.2204452,225.30486,17.995586,75.52962,9.2826114e-05 1707,0.97774416,397.7413,18.443361,72.7457,8.1953156e-05 1707,2.1398683,156.38312,33.080627,186.90948,7.067958e-05 1707,2.905433,390.7363,57.594555,100.065796,6.781481e-05 1707,274.84277,433.8906,44.472076,64.055664,6.328401e-05 1707,589.41016,335.43887,49.434937,148.45776,4.1912393e-05 1707,264.10187,385.4776,118.17554,107.24823,4.0302148e-05 1707,1.4529476,311.7464,29.790289,153.4299,2.8899447e-05 1707,1.0472397,70.08859,18.193975,144.22006,2.7979442e-05 1707,597.57306,4.6942577,41.57361,79.63071,2.7392256e-05 1707,100.50154,421.12817,73.83896,75.51538,2.7155613e-05 1707,217.34163,418.1774,69.83562,73.9223,2.2669074e-05 1707,353.3579,149.66402,77.996796,173.38298,1.8109355e-05 1707,0.96258223,270.08282,18.347889,77.48929,1.6350206e-05 1707,0.848903,438.41476,22.438122,63.77057,1.5065146e-05 1707,56.77551,420.04086,71.96944,75.596344,9.86013e-06 1707,1.4149626,12.430687,35.90007,75.210106,1.0966724e-07 1708,292.33832,225.37466,36.9812,92.80322,1.3176252 1708,614.0215,175.40775,24.091125,52.805725,0.037603118 1708,279.6927,237.331,30.099457,65.73276,0.01179255 1708,621.4613,347.5454,17.685364,57.868774,0.005302975 1708,281.82703,185.77605,67.30304,174.52998,0.0050944164 1708,616.2751,108.94899,22.871582,101.90239,0.004129537 1708,305.5911,417.8348,21.245758,45.131348,0.00267715 1708,42.07785,240.25685,62.005775,136.0738,0.0022792974 1708,287.342,271.25574,25.546722,49.81418,0.0018698587 1708,604.251,148.76225,34.89569,128.03304,0.0015637181 1708,362.5981,191.39601,43.59131,72.06148,0.0011832956 1708,140.70728,413.5282,26.0598,49.05661,0.0008316356 1708,56.403244,234.45769,33.658974,73.999954,0.00057638506 1708,4.68583,252.08618,77.40823,221.39752,0.00051717187 1708,611.2725,297.5389,27.874146,142.87195,0.0003853121 1708,275.66266,414.22644,74.490234,76.986786,0.0002897909 1708,0.9497754,229.16719,19.613277,90.25456,0.0002699325 1708,0.6840902,361.58765,14.03581,51.015167,0.00021155438 1708,614.02386,409.894,25.122803,92.17807,0.00019331685 1708,3.2631478,116.47042,58.262913,263.91135,0.0001118275 1708,1.162076,75.17771,18.306404,141.39893,0.00010012288 1708,572.56335,105.06165,66.52478,252.60257,6.68601e-05 1708,541.56775,113.84336,25.833923,52.42077,6.5823086e-05 1708,1.1388437,338.45966,20.02544,137.1016,6.006044e-05 1708,1.3248283,176.02174,18.609787,79.831055,5.433195e-05 1708,3.6512437,380.0409,57.585903,109.035065,2.831676e-05 1708,351.89273,145.13768,77.887146,176.73088,2.0402762e-05 1708,597.9863,4.866019,41.16034,80.05824,1.1758196e-05 1708,571.94684,361.70706,67.02734,126.41785,1.0229572e-05 1708,0.83114827,439.81616,21.952404,63.126923,2.4022997e-06 1708,1.9821013,15.659317,56.928616,119.732956,9.176754e-08 1708,1.1824073,7.010842,29.604513,56.624844,1.4196266e-08 1709,290.90366,210.09703,37.455505,90.62221,0.015770521 1709,72.248825,218.58334,44.70144,138.06226,0.011974189 1709,620.8864,154.08087,18.260254,57.840286,0.010395002 1709,73.812645,219.14806,24.849518,52.275894,0.0075769015 1709,611.03705,118.25248,28.10962,132.67001,0.004762752 1709,63.06077,246.14928,83.749,193.93584,0.0012740853 1709,279.2953,216.2966,73.22037,192.68741,0.0012685858 1709,83.59312,229.97037,26.473999,57.741943,0.000716252 1709,616.19574,85.923065,22.950928,89.72754,0.00043626092 1709,1.0758,173.74777,18.861288,83.11084,0.00028532394 1709,610.4903,288.17975,28.656372,151.69266,0.00026346894 1709,1.4280795,133.88567,18.67954,75.51906,0.00024392916 1709,614.192,411.89392,24.95465,88.22577,0.00024311889 1709,590.88416,138.99873,48.262512,257.5479,0.00023585562 1709,367.4064,189.94753,39.237305,74.00093,0.00022497434 1709,1.1550546,228.0436,17.695679,71.33049,0.00012098184 1709,283.1063,191.39111,27.977905,65.80899,0.00011770409 1709,1.9653533,136.45691,34.5813,182.45389,6.728521e-05 1709,163.49698,381.6687,24.869186,49.549133,6.242986e-05 1709,6.0136104,245.8686,77.937355,217.42436,2.5028854e-05 1709,0.96309245,265.1701,16.898134,130.9794,2.3317445e-05 1709,353.3257,149.24524,79.124725,177.49078,1.8491872e-05 1709,572.1487,366.47818,66.66846,121.445526,1.3964642e-05 1709,1.924458,303.03845,32.79381,169.8573,9.829055e-06 1709,0.65584964,389.93228,18.631702,107.367584,7.353244e-06 1709,0.90040123,349.29834,18.207483,74.861786,6.6720163e-06 1709,598.11523,4.8932195,41.031433,81.48354,6.1960336e-06 1709,1.398099,41.60413,30.910046,183.1552,2.2750025e-06 1709,2.5223145,426.15094,52.902996,71.794495,7.376011e-07 1709,2.2302785,19.389086,56.10937,112.02286,1.3105789e-07 1709,1.1346452,7.7286444,29.208141,56.68727,1.8988407e-08 1710,289.85754,226.91011,36.542023,86.570724,8.281966 1710,287.66293,339.41428,19.432007,45.606445,0.040618412 1710,178.39008,228.12326,40.74788,71.34561,0.026234988 1710,10.977103,223.07985,24.940609,51.2274,0.013987049 1710,120.1214,248.73198,41.24089,80.059525,0.013837187 1710,283.21356,210.68295,62.721344,183.73566,0.012734408 1710,2.4555633,152.4987,40.883522,140.70927,0.0044004964 1710,611.1121,194.89865,28.034546,62.301422,0.0043256124 1710,1.515971,133.94368,18.818457,73.55646,0.0020517805 1710,621.4215,120.49036,17.725159,59.63719,0.0011901789 1710,610.5974,92.0685,28.549255,148.44247,0.00081204023 1710,0.9304769,194.28102,14.534414,63.785873,0.0006699281 1710,621.8078,386.1273,17.338867,58.110443,0.0005173209 1710,609.0841,432.37375,30.062561,70.69122,0.00032384013 1710,539.19104,110.198235,31.891052,58.175117,0.0003164859 1710,165.66417,329.9432,34.319138,68.88739,0.00028502644 1710,611.8814,335.21695,27.265259,137.12369,0.00026576943 1710,1.4117529,205.02608,19.617847,147.8969,0.00018365383 1710,617.41046,281.89365,21.736206,82.59503,0.00017836399 1710,589.6718,212.06425,49.404663,238.08461,0.00013358037 1710,1.7524203,242.851,32.17826,201.69328,3.6257978e-05 1710,284.44846,196.65625,25.405762,53.545685,3.038582e-05 1710,597.28217,3.3186362,41.864502,84.279175,1.3513095e-05 1710,0.8082894,396.99582,18.070087,73.410126,1.3488117e-05 1710,1.1129493,323.6904,18.861185,83.977356,1.251656e-05 1710,359.14963,152.88339,75.41321,169.8576,1.0296322e-05 1710,0.9840332,442.20776,21.843994,60.663757,2.7644498e-06 1710,4.898018,352.14468,78.60459,131.97778,1.5817836e-06 1710,2.9222803,427.3571,52.49043,70.43329,6.2479637e-07 1710,1.2452849,17.837748,30.905197,162.75975,4.1183404e-07 1710,1.2188656,7.838179,28.89933,54.951923,1.0808358e-08 1711,294.11874,319.43622,20.327606,45.639984,0.3064425 1711,6.016462,213.04411,69.59444,199.43272,0.05350561 1711,196.68414,310.69763,34.988678,59.30847,0.027749656 1711,297.07806,220.42644,35.541046,82.513596,0.026996259 1711,10.308872,238.8879,39.5608,99.206436,0.019284414 1711,304.77917,310.88794,27.576172,57.56906,0.015694104 1711,208.36482,229.43454,28.623413,57.949585,0.01013458 1711,621.41675,177.03247,17.72992,57.053345,0.009059612 1711,1.4119809,302.33725,19.502598,93.14282,0.0080678845 1711,0.823914,226.36264,13.482439,52.999542,0.0050623277 1711,622.0454,212.16646,17.101257,53.54088,0.004614187 1711,621.1467,404.18143,17.999939,56.959564,0.0023765203 1711,371.06973,197.19734,41.767975,70.50325,0.0014441784 1711,611.92816,99.84182,27.218506,140.90765,0.0012585538 1711,284.84082,205.95923,64.84204,183.20343,0.0011681902 1711,1.5925195,271.51044,34.86332,191.35431,0.000857227 1711,39.578888,209.3761,36.75567,85.242004,0.0006568641 1711,611.7684,348.68652,27.378296,134.01834,0.00057033374 1711,1.0596175,190.764,19.926638,162.90283,0.00054936 1711,612.4867,194.32909,26.659973,145.81065,0.00034824267 1711,1.5790495,74.05231,34.324966,202.93549,0.00026399613 1711,0.8525684,254.90443,14.211276,60.707596,0.00018037065 1711,0.9112337,164.01668,18.500895,85.93411,0.00016639852 1711,0.9135653,365.09006,18.383766,86.20187,0.0001564655 1711,587.45154,245.01039,51.267273,230.84117,9.8146076e-05 1711,609.26855,2.724821,29.878113,57.724884,4.5926787e-05 1711,572.1544,92.67685,66.99225,242.50583,4.203248e-05 1711,574.5608,416.34305,64.49005,80.07623,4.0577743e-05 1711,0.7318433,54.642677,20.655884,122.89852,3.2390606e-05 1711,301.5728,269.46603,77.6026,195.2934,1.8772582e-05 1711,361.4161,154.45496,76.54465,163.11298,1.5528462e-05 1711,2.9549122,380.1261,55.408386,110.46896,1.48545705e-05 1711,0.6756071,415.7917,17.261063,85.66745,6.7953097e-06 1711,1.6865366,14.769902,57.319847,127.04929,2.6013066e-07 1711,1.0488786,7.630135,29.804176,55.785706,1.9123908e-08 1712,87.84477,220.66078,26.538437,60.524643,0.21862006 1712,307.51297,229.31482,25.720825,58.41989,0.19788966 1712,67.58837,222.12032,44.894142,107.740585,0.14240822 1712,386.3809,209.12468,26.297546,48.589798,0.096983284 1712,308.54398,298.4419,19.49524,45.60797,0.052084804 1712,273.5157,298.81674,27.569824,58.16919,0.03513445 1712,303.52588,210.7682,36.380127,142.19188,0.027580716 1712,222.4129,221.39958,27.94072,53.415726,0.023099823 1712,103.604576,221.16272,25.775032,52.770996,0.018405005 1712,187.64143,231.98209,33.229095,88.794586,0.0069881366 1712,621.4327,160.96944,17.71399,55.668503,0.005486483 1712,620.49316,392.6235,18.653503,62.36209,0.004954127 1712,202.0051,223.98853,24.33046,54.030212,0.0039573284 1712,617.6873,186.78912,21.45935,83.14734,0.0021324137 1712,3.8971257,150.27808,61.870636,237.80746,0.0015830843 1712,219.67162,296.2041,23.513412,53.732117,0.0015450639 1712,30.861032,320.31677,26.899836,48.914062,0.0014813893 1712,202.06113,224.14441,38.618546,126.4505,0.00086740946 1712,611.8167,102.35426,27.329956,133.3696,0.0008619012 1712,603.5918,338.60623,35.55487,146.07861,0.0007060655 1712,31.079977,192.77986,109.9313,223.22707,0.00059773185 1712,1.307614,181.8965,28.968777,156.2935,0.0005162711 1712,1.2258033,276.11722,18.51586,81.15851,0.00034056584 1712,350.07758,175.98482,32.57071,70.710495,0.00033863145 1712,1.326281,88.7484,29.57697,160.45578,0.00024615927 1712,0.962876,381.31848,18.760347,80.94891,0.00015421759 1712,589.30853,140.56017,49.526123,254.70815,0.000112516645 1712,3.2164097,297.7987,56.901924,175.07266,9.42409e-05 1712,282.6056,167.81271,92.95932,211.10254,8.597459e-05 1712,299.30164,198.32588,26.673035,60.974747,8.371648e-05 1712,608.257,1.9374349,30.889648,58.035534,6.512402e-05 1712,609.31055,429.46347,29.83612,73.02103,6.502844e-05 1712,1.2269402,326.6994,18.801184,80.26361,3.5848345e-05 1712,1.3786621,412.11957,35.47255,85.447205,3.5709875e-06 1712,1.3317611,14.008614,59.0297,131.85818,2.714613e-06 1712,0.769349,20.064669,18.203657,126.095566,2.1829467e-06 1712,0.7317204,6.6087337,31.082981,60.373795,6.512719e-08 1713,311.98926,227.44254,25.199615,57.80258,29.39789 1713,302.66486,245.34694,36.14212,83.363785,0.25861385 1713,228.57669,281.60168,22.951492,51.910156,0.078230664 1713,208.59053,236.59038,26.416382,56.811203,0.062506 1713,99.98406,232.6498,39.80645,88.28755,0.013164144 1713,621.63873,190.70332,17.507935,53.39218,0.009174973 1713,0.5188794,198.69003,19.315924,87.45633,0.0037300428 1713,218.80818,216.67276,39.011246,132.90622,0.0021715574 1713,611.60834,123.030624,27.53833,127.240814,0.001805375 1713,0.48635337,155.14113,14.469178,57.034943,0.0012082666 1713,2.0858123,224.83965,57.461197,229.16042,0.0010498799 1713,73.61995,202.28404,76.162766,171.16786,0.0009991485 1713,1.0019629,114.49957,32.974506,194.06717,0.0007104077 1713,252.80313,298.80032,63.360046,148.40906,0.0005111788 1713,278.11133,205.26996,81.47885,178.75415,0.00039841008 1713,1.234533,296.3928,21.895681,157.11057,0.00039196401 1713,617.9512,395.99716,21.195496,82.604095,0.00037081688 1713,624.34894,159.97258,14.7977295,46.820374,0.0003015119 1713,264.34283,355.80502,31.382233,60.22052,0.00017407807 1713,612.56964,226.01735,26.577026,144.68434,0.00014366329 1713,605.26855,313.69293,33.878113,144.01584,0.00013114793 1713,0.8096761,391.8917,18.634172,82.07211,0.0001030107 1713,1.0468214,254.14496,18.827862,84.558014,0.000102196 1713,195.94391,205.8713,103.996796,225.30807,7.2301766e-05 1713,588.52094,126.56767,50.243713,229.74995,6.776981e-05 1713,610.2402,24.202898,28.906494,159.3149,4.5520424e-05 1713,0.51943606,55.752106,19.414139,151.48946,2.720813e-05 1713,372.89075,152.00453,80.523834,162.3734,1.479968e-05 1713,1.8891227,378.21844,56.21184,112.12543,1.43336465e-05 1713,574.6381,418.34796,64.508545,78.517426,1.0094362e-05 1713,0.8532503,437.79,21.963884,65.90369,2.4778192e-06 1713,1.4224968,17.065664,58.081566,122.5028,1.3250926e-06 1713,0.97510743,7.3685646,29.775394,60.4556,3.2067778e-08 1714,316.3565,234.7271,22.143524,47.913315,97.05337 1714,126.12273,238.53206,40.143677,107.510544,0.09515342 1714,305.13242,211.54962,38.357788,110.17859,0.03731775 1714,301.71777,255.19438,22.012085,57.519363,0.00629183 1714,241.57066,271.89148,25.609116,49.90753,0.0062757162 1714,1.6092839,234.00891,26.993458,142.60364,0.003986308 1714,352.04382,194.24222,23.653961,52.308548,0.0037767175 1714,393.71103,198.3909,39.542664,68.63568,0.0037485787 1714,0.6802523,283.37567,14.145659,59.561768,0.0007682661 1714,2.9566195,113.712296,58.690777,246.98161,0.0005100647 1714,0.32096517,210.22025,19.282652,79.763,0.00043570125 1714,0.8742664,335.92935,13.033952,49.897858,0.0004092107 1714,0.49099773,187.617,14.261266,51.080765,0.00034056194 1714,616.1039,91.67347,23.042786,73.85883,0.00033886987 1714,218.85048,223.676,22.12822,54.07364,0.0002805473 1714,611.53955,331.30774,27.607117,133.91989,0.00023347807 1714,618.28015,194.8029,20.866516,77.32594,0.00022367087 1714,228.00851,207.27676,40.20218,131.22217,0.00021390693 1714,0.5388412,108.24261,29.218704,160.9603,0.00016221558 1714,299.89502,199.75404,29.002502,57.12773,0.0001427695 1714,612.6694,238.13191,26.477295,136.2372,9.55106e-05 1714,602.5355,135.87408,36.611145,189.81711,7.1734044e-05 1714,1.0200546,342.5027,20.686987,106.99643,5.6441793e-05 1714,3.3864162,307.18893,56.21168,167.00232,5.3931042e-05 1714,92.998375,203.96579,113.53483,189.42407,4.247112e-05 1714,609.0184,434.82397,30.128296,69.38803,3.6661662e-05 1714,601.7409,10.858848,37.40576,188.00903,1.8526045e-05 1714,288.09442,170.86732,89.63907,201.18822,1.7471926e-05 1714,376.406,162.1042,80.84537,147.20906,1.684247e-05 1714,0.45633423,402.71732,13.977524,50.009003,1.2353712e-05 1714,201.57825,186.42877,105.92471,239.0904,8.56547e-06 1714,0.6966577,419.82593,17.33975,82.659454,3.2300957e-06 1714,0.8664405,29.376934,31.075514,140.14575,1.7234441e-06 1714,281.4181,428.21912,73.72073,71.87439,8.868805e-07 1714,3.3312647,424.8453,60.57487,74.22211,3.838935e-07 1714,0.9190039,6.208399,29.819742,62.2574,2.1915927e-08 1714,278.18137,4.3587646,43.839172,46.924675,1.4684101e-09 1715,140.22655,220.386,35.740494,110.74855,0.017949425 1715,408.67828,181.56514,36.31317,90.687,0.011604563 1715,311.00635,261.3693,25.726227,49.161743,0.0100942645 1715,617.44226,380.99643,21.704407,86.87161,0.00059585366 1715,294.88525,187.29012,33.815887,67.07031,0.0004159974 1715,239.12141,224.17506,31.597153,77.90456,0.00033257357 1715,611.2623,56.31911,27.884338,134.60214,0.00020377807 1715,0.6655502,151.64685,18.64943,76.27945,0.00014435782 1715,617.4888,307.6178,21.657898,87.342224,0.00013893974 1715,1.2264812,96.08715,34.012123,184.64948,0.00010506384 1715,251.5786,262.68463,20.961441,49.42627,0.0001046309 1715,587.9085,320.9023,50.818787,157.4078,8.404934e-05 1715,608.4658,437.03442,30.680847,66.749756,8.347427e-05 1715,613.0562,171.17621,26.090454,130.49655,5.133745e-05 1715,0.5987012,199.23392,18.801006,79.0914,4.877704e-05 1715,1.065,324.6454,18.388056,67.51578,4.806155e-05 1715,589.1922,125.63792,49.638123,252.50122,4.261255e-05 1715,5.913529,142.6625,79.136566,274.95572,3.601543e-05 1715,404.45996,160.31906,102.379425,189.80502,3.0881696e-05 1715,0.9581478,256.84625,13.271991,47.2153,3.053892e-05 1715,297.76578,180.60004,70.10367,160.27493,2.759125e-05 1715,1.1901262,232.82962,27.963892,137.90045,2.2050212e-05 1715,587.7451,3.3155339,51.40155,142.98833,1.4803138e-05 1715,0.67725426,398.15152,18.194586,72.0289,1.4664033e-05 1715,1.4275782,300.66922,33.821705,162.39023,1.41496275e-05 1715,5.5555143,344.23053,77.89618,139.02261,6.3558055e-06 1715,0.746429,56.779957,19.179499,139.11324,5.213834e-06 1715,0.89810795,442.12875,21.994295,61.16214,2.0907478e-06 1715,1.6209164,18.714373,58.180573,117.818375,7.9855073e-07 1715,3.1260386,427.38083,52.66364,71.408875,5.3990203e-07 1715,1.0873551,6.396159,30.09176,58.662334,3.136104e-08 1716,437.60184,214.70801,23.339264,46.252014,11.020262 1716,156.78146,227.32774,35.31485,95.60719,0.071399495 1716,431.41992,182.67754,43.124664,100.39522,0.0017650163 1716,621.52325,358.83762,17.623413,57.89853,0.001530388 1716,617.2672,385.7959,21.879456,88.41412,0.00074458873 1716,615.92377,69.86857,23.2229,84.72668,0.00073011406 1716,304.64117,185.75652,27.469269,58.18109,0.0004655723 1716,617.8195,222.84157,21.327148,88.59767,0.0003453363 1716,617.7784,157.1746,21.368286,77.69818,0.00025248964 1716,602.67773,79.94861,36.468933,178.17624,0.0002106444 1716,611.4477,311.8985,27.698975,130.17676,0.00012674615 1716,602.8226,176.58568,36.324097,179.0425,4.6576853e-05 1716,1.1793734,225.60878,17.733274,70.101,3.716237e-05 1716,587.5283,9.002298,51.618347,139.43309,3.617084e-05 1716,609.0458,435.17776,30.100891,68.85916,3.5807683e-05 1716,1.2081088,271.54572,21.193201,99.20816,3.215467e-05 1716,572.79144,355.42474,66.355225,130.44366,2.1844256e-05 1716,0.891897,78.624374,19.74507,136.11101,1.6022013e-05 1716,1.048689,331.81973,18.49631,77.8638,1.1225497e-05 1716,5.9070315,139.8614,79.69599,264.12897,1.061587e-05 1716,1.5420834,291.566,33.905106,169.83527,9.3270355e-06 1716,414.5772,156.02786,91.15567,198.00583,6.711801e-06 1716,0.711193,399.21362,18.20858,70.88028,6.117952e-06 1716,0.5887752,200.38751,13.927178,52.53763,6.0404623e-06 1716,1.2127507,144.66666,28.368034,151.18967,5.7817983e-06 1716,1.0450741,443.4647,21.834942,59.356476,1.9999432e-06 1716,4.7837925,342.47,78.581924,143.26031,1.123931e-06 1716,1.920044,19.904982,57.11999,106.35085,5.28261e-07 1716,0.51653486,9.020635,8.481789,86.36837,4.1261242e-07 1716,3.0253208,428.58118,53.16038,70.01633,2.7522054e-07 1716,1.0173161,6.954131,29.96549,58.45906,4.7559816e-08 1716,421.57507,3.0359604,45.138702,49.46128,3.198357e-10 1716,447.6524,3.1894612,45.682617,46.700287,1.1654111e-10 1717,431.89755,186.6516,34.463654,79.14705,0.84651726 1717,620.6465,179.86623,18.500183,49.328934,0.023881774 1717,446.02448,236.37898,26.312408,59.848984,0.006141413 1717,150.07915,223.26904,37.062088,102.986694,0.0032993937 1717,133.84442,252.62605,23.700363,52.991226,0.002169415 1717,426.6961,129.38943,61.56964,171.53009,0.0021167637 1717,254.32333,204.3154,30.399689,73.6272,0.0017536475 1717,450.81714,216.8761,19.808441,47.821045,0.0015378641 1717,162.56117,247.90727,21.894165,47.531418,0.0011625044 1717,612.44293,179.72522,26.703735,141.3071,0.00046510453 1717,611.28906,110.921906,27.857605,126.4337,0.00035573548 1717,615.5165,84.45232,23.630188,76.166534,0.00033515546 1717,588.4895,22.214226,50.657166,117.59211,0.00028725015 1717,617.8161,391.24326,21.330566,83.151764,0.00017981761 1717,617.5355,312.5335,21.611145,73.06378,0.00010441229 1717,1.3214852,318.24283,18.23877,70.85013,6.1025683e-05 1717,609.2354,436.8977,29.911255,68.535065,3.2544183e-05 1717,587.84863,323.0687,51.2099,156.89105,2.3704573e-05 1717,1.2590039,225.69084,17.779139,70.6591,1.9121964e-05 1717,0.70651084,133.63344,13.609651,46.046066,1.8299841e-05 1717,3.16056,279.06686,56.409565,188.00092,1.1204256e-05 1717,0.9133106,348.9033,19.884645,132.60245,1.0807796e-05 1717,0.62614954,419.74222,13.581315,46.28415,8.26604e-06 1717,1.2182341,80.01814,33.59057,185.78133,6.9084585e-06 1717,602.6082,9.537277,36.538452,53.207737,6.008851e-06 1717,2.0173683,219.80508,30.924526,160.80109,4.9525324e-06 1717,0.6115381,193.5644,13.834825,50.615906,3.9868555e-06 1717,0.93781495,443.1605,21.909348,59.858154,2.189602e-06 1717,0.84476644,25.862825,16.767372,129.03639,1.0344841e-06 1717,1.9461459,22.345808,57.687138,104.34366,4.3584714e-07 1717,2.9038494,429.42737,53.287636,69.27817,3.9773448e-07 1717,1.2110091,7.864896,29.264677,57.15478,2.2993818e-08 1717,442.16397,5.244694,43.755768,49.574326,1.1299294e-11 1718,468.06,213.25691,28.931152,72.96428,99.57308 1718,484.5958,216.18587,27.374573,67.02681,95.84153 1718,157.51996,218.10056,35.08087,87.45157,0.02042261 1718,619.1425,83.69469,20.00415,76.612915,0.0074138218 1718,464.0568,182.10933,64.544586,153.11131,0.00079845724 1718,601.3265,54.56914,37.82019,225.54793,0.00051325926 1718,620.61664,240.23827,18.53003,59.92177,0.0005078029 1718,611.5922,346.65207,27.554443,118.869415,0.00045509113 1718,615.997,297.98273,23.149658,92.62372,0.0004114596 1718,278.3028,186.68571,25.889984,57.294342,0.0002346665 1718,613.7925,0.0,25.354187,45.69157,0.00018731499 1718,616.3398,178.45702,22.806885,90.64421,0.00016761724 1718,600.8019,205.68855,38.344788,195.67989,0.00011400265 1718,516.57227,61.70603,37.375427,78.90713,5.39332e-05 1718,609.65576,436.38263,29.490906,67.09561,3.2870637e-05 1718,596.42096,0.0,42.725708,98.2694,2.2897606e-05 1718,1.0491325,325.84177,20.088236,129.55893,1.6515793e-05 1718,0.71349937,133.39438,18.619665,71.5108,1.6149615e-05 1718,0.8513159,343.99432,13.645365,46.39319,1.2388175e-05 1718,1.3837508,224.14114,17.634703,71.96091,9.5046125e-06 1718,5.1828127,248.9292,77.26332,215.05957,8.179997e-06 1718,0.73967856,179.48383,18.472166,78.490295,6.606698e-06 1718,0.5590934,399.95462,13.671047,45.903717,6.120181e-06 1718,1.2034872,251.03084,18.570557,121.6172,4.2953893e-06 1718,1.1508716,87.85536,33.605553,184.98344,4.154413e-06 1718,0.7968148,423.02817,17.020924,78.55319,3.0873916e-06 1718,3.0884018,397.3017,55.988632,96.52603,6.8652133e-07 1718,1.561027,12.52601,34.693474,73.18292,1.5162034e-07 1718,0.71107584,27.434454,16.08304,134.97563,1.2576099e-07 1718,481.405,2.3689764,45.05014,49.97002,8.108043e-11 1719,537.05396,215.97218,38.47931,91.80748,98.959526 1719,558.9114,218.83788,26.260742,58.0811,19.195797 1719,614.00696,56.988102,25.13971,89.47824,0.009841393 1719,549.3756,205.61765,65.56006,121.88019,0.008274329 1719,282.00455,197.20335,29.877594,58.548767,0.0071996967 1719,154.33403,219.90565,32.676743,91.79237,0.006306023 1719,541.9023,251.69254,18.950745,54.018494,0.005774629 1719,587.17786,3.7460809,51.766663,125.48747,0.0010470563 1719,554.53326,257.5216,19.587341,48.401947,0.0010132928 1719,613.25226,206.39319,25.89441,131.55475,0.00035740784 1719,617.83215,397.636,21.314514,82.92987,0.0002636615 1719,494.299,140.7152,132.94513,238.66496,0.0002552908 1719,169.96597,260.49506,20.942749,54.013763,0.00023850566 1719,617.71356,306.45114,21.433105,83.4823,0.00013315745 1719,612.6085,121.4693,26.538147,147.49347,7.831638e-05 1719,601.22034,250.59875,37.92633,182.1308,3.596491e-05 1719,583.0751,39.01582,55.46765,248.63185,2.89644e-05 1719,572.8632,349.7844,66.28345,137.9111,1.7233559e-05 1719,0.80294925,337.92984,19.606506,133.28851,1.4609511e-05 1719,0.7962476,134.77928,18.47578,70.734726,1.3463146e-05 1719,0.642605,179.7081,13.797334,48.108627,1.2070117e-05 1719,0.73667645,343.4396,13.874851,47.46692,1.1578066e-05 1719,1.207592,217.10469,17.766546,72.54561,9.574135e-06 1719,1.1594076,87.24201,34.113132,185.93454,3.573222e-06 1719,0.7889852,423.37766,16.868284,78.47809,3.2823707e-06 1719,3.603895,268.60107,56.696396,204.0393,2.576436e-06 1719,1.6026717,265.98593,27.721632,134.28183,2.1395533e-06 1719,2.9205909,429.88327,53.32516,68.8804,4.1680389e-07 1719,1.8309815,20.445444,57.205776,102.72939,1.4685236e-07 1719,0.68481857,25.42519,16.482979,137.76912,7.922271e-08 1719,1.0661833,7.698236,29.713968,55.73751,3.3161722e-08 1719,550.2185,2.1568782,45.30658,51.08068,2.3501753e-10 1719,524.6348,1.3332357,45.767273,58.986668,1.757998e-11 1720,147.05022,236.35449,32.564804,86.02713,0.0075392933 1720,490.1457,220.30553,22.201538,45.015488,0.0036375222 1720,346.27466,190.0447,25.718994,49.49385,0.0027756148 1720,617.0382,58.53957,22.10846,76.312744,0.000484112 1720,622.23395,164.12332,16.91272,53.260117,0.00038352818 1720,272.68567,179.655,27.37732,54.17134,0.00033820703 1720,415.9471,235.44678,24.524567,52.695587,0.00033174333 1720,618.08624,399.7648,21.060425,81.22229,0.00018400059 1720,618.00415,340.31064,21.142517,79.07559,0.00015001977 1720,612.74176,185.49683,26.404907,125.17044,0.0001101586 1720,611.3531,109.72039,27.79358,137.14963,0.000105813175 1720,617.7428,287.5005,21.40387,79.81976,7.390138e-05 1720,428.28342,228.6066,23.967987,52.23227,7.007493e-05 1720,583.2978,5.5164585,54.7666,118.53141,6.269382e-05 1720,588.7332,190.57553,50.23883,217.96259,2.3733572e-05 1720,1.004222,341.8851,18.431936,74.94766,1.574506e-05 1720,0.6559009,138.82417,18.422602,73.0426,1.4308148e-05 1720,587.68243,321.6184,51.464233,162.84378,1.2880102e-05 1720,0.5153166,120.36037,13.795354,46.248016,8.959345e-06 1720,1.0490414,230.31584,17.745605,70.98717,8.664933e-06 1720,0.7157935,406.33853,18.064041,70.86392,6.6255516e-06 1720,0.61394125,179.71997,18.48284,76.62567,6.616459e-06 1720,1.5914307,331.59296,32.03961,155.69272,6.4293404e-06 1720,1.1243522,257.81192,18.8949,122.28433,4.99408e-06 1720,5.7880535,241.91771,76.141754,223.5847,4.412559e-06 1720,1.7983627,179.49985,32.53958,178.62894,2.5988927e-06 1720,0.7734628,48.67733,18.818531,128.18188,1.6154013e-06 1720,4.696774,34.577564,81.459305,279.0735,1.0165809e-06 1720,6.761211,396.45047,89.92896,96.79059,5.662119e-07 1720,1.3190382,11.99262,35.734627,75.001526,2.203901e-07 1720,159.90045,3.477365,59.42192,50.85658,8.942299e-08 1720,196.93855,8.618201,39.1978,46.868324,8.8524416e-08 1720,426.47403,0.20829754,63.384583,47.76231,3.1476444e-09 1721,120.19407,255.41206,31.541634,74.74248,0.49527097 1721,282.07797,215.05199,26.421692,59.047714,0.10958513 1721,591.1037,219.7378,26.006653,49.98755,0.0106960675 1721,620.71265,156.69229,18.434021,63.83185,0.009297573 1721,482.29037,247.53688,41.885468,99.98955,0.0045959353 1721,107.39816,257.57666,24.779099,62.790955,0.0036844234 1721,621.8709,376.45853,17.275757,55.93463,0.0021476056 1721,352.0,184.041,25.104218,49.62242,0.001993261 1721,229.90933,243.23256,20.939835,47.634872,0.001937179 1721,0.9261886,286.19858,13.554121,57.2352,0.0017168488 1721,107.06188,181.88194,55.869743,150.63707,0.0011497064 1721,1.9025147,236.0485,27.666553,148.39432,0.0011469851 1721,611.7684,81.4642,27.378296,151.58882,0.0009276078 1721,586.9612,187.35394,51.26941,239.4913,0.00074442825 1721,616.5093,200.94096,22.63739,84.928696,0.0005411206 1721,611.71826,364.10477,27.428406,130.32077,0.00051108084 1721,4.2232327,167.1096,58.14001,237.68187,0.000397894 1721,621.61646,328.651,17.530212,54.397034,0.0003975022 1721,0.58021814,125.32366,14.168643,52.480385,0.00020795698 1721,617.5044,253.95743,21.642273,83.04385,0.00015939213 1721,1.2508985,332.2709,17.629684,72.75726,0.00014533567 1721,0.7319019,207.23042,18.841368,83.97749,0.00013415972 1721,0.70093346,157.16295,18.828165,78.70346,0.00011913107 1721,180.81978,211.19186,25.318314,51.31482,9.485114e-05 1721,0.73428875,61.907085,20.791155,143.26515,6.781029e-05 1721,0.7831812,362.23666,19.621117,134.5599,2.2970966e-05 1721,586.3958,12.32961,52.750854,123.21969,2.1909058e-05 1721,609.5255,7.4191327,29.621155,50.443714,1.9675559e-05 1721,272.41217,174.63486,26.386902,51.982574,1.6210597e-05 1721,5.5428386,335.85828,77.788376,147.2544,1.46602015e-05 1721,0.48898315,404.21582,13.821595,48.473724,6.3374905e-06 1721,1.8586638,37.730255,60.36902,231.5975,2.4146893e-06 1721,3.31862,424.40073,60.01119,74.03085,3.9539194e-07 1721,0.43886313,9.735436,9.599313,89.48479,2.885602e-07 1721,0.765778,8.540456,37.09182,86.92143,1.4618361e-07 1721,536.1738,4.239945,43.788635,45.895763,1.1031581e-09 1721,511.67294,2.1134474,42.71707,59.226154,1.858063e-11 1722,604.5885,215.357,26.659058,53.690887,0.31547126 1722,215.57718,248.48897,22.256363,52.08174,0.034988694 1722,0.78025883,345.4628,14.594152,66.39755,0.01571943 1722,620.8396,204.68208,18.307068,52.92137,0.013026016 1722,278.21124,220.94962,32.26648,79.89215,0.009433641 1722,593.0758,176.48514,45.79236,110.424255,0.008394527 1722,100.12637,259.50735,34.53427,83.93918,0.003190176 1722,609.52576,113.116295,29.62091,129.76471,0.0017326982 1722,201.4952,203.8133,32.85945,80.10278,0.0011370708 1722,1.3186964,324.2066,37.876858,103.52899,0.000994925 1722,623.8174,141.55418,15.329285,46.158203,0.00060679857 1722,0.9502865,294.0246,19.899466,94.898865,0.0005888343 1722,2.9996405,201.475,59.058315,234.91037,0.0005768805 1722,610.16254,339.55862,28.98413,140.38062,0.00033428145 1722,615.368,226.02524,23.778687,92.30304,0.00030233827 1722,0.7730803,78.19929,20.911865,138.73566,0.00019402 1722,71.6708,207.22264,74.89565,169.20345,0.00012811014 1722,271.7505,167.53595,25.529663,59.480225,0.00012382191 1722,0.78257734,385.5259,18.263409,80.41687,9.942544e-05 1722,0.58637124,170.0356,18.767033,76.789536,7.711794e-05 1722,617.77655,281.15695,21.370117,82.54028,5.6468547e-05 1722,574.8035,246.82785,64.34314,234.46017,5.38022e-05 1722,1.0816773,256.84894,18.247347,74.82059,4.441183e-05 1722,610.17194,0.0,28.974731,161.47006,3.4501398e-05 1722,254.40123,177.34492,77.290726,171.0811,2.4628085e-05 1722,574.7089,422.82663,64.13135,74.83011,2.317786e-05 1722,1.1300651,178.89021,28.86166,161.42677,2.2077442e-05 1722,2.331605,374.90314,56.793606,114.90405,9.492547e-06 1722,3.102676,32.28535,83.02995,300.6442,4.3740806e-06 1722,1.819655,20.48529,57.571323,117.36354,2.2354425e-06 1722,0.8427165,439.67303,22.332111,63.164124,1.8608624e-06 1722,256.22256,423.77823,73.43884,75.89163,4.677652e-07 1722,201.74689,425.5852,73.24475,73.86304,4.5163105e-07 1722,0.4151941,7.7899613,9.221098,94.27021,1.694909e-07 1722,1.0028629,4.5848894,30.34484,66.93851,1.606051e-08 1723,278.61383,269.2102,26.23993,46.8107,0.3840916 1723,202.67078,266.13766,30.465927,58.897766,0.0401791 1723,99.51521,279.56454,32.45581,69.8147,0.0036687828 1723,621.2918,185.81346,17.854858,54.116226,0.0020197593 1723,5.8905926,345.72507,25.010319,68.199005,0.0018673583 1723,274.89038,208.20609,38.690277,123.99631,0.0012709652 1723,610.7706,108.86812,28.376038,142.74022,0.0010656221 1723,4.0812206,279.49258,73.377975,167.70743,0.0008681294 1723,617.0869,92.34982,22.059753,73.35455,0.00047324956 1723,617.14417,212.63307,22.002502,80.83528,0.0004005063 1723,1.0456519,367.92767,18.206255,77.97937,0.0002776472 1723,618.1304,381.5198,21.016296,79.78369,0.00015853529 1723,1.2816406,289.80038,18.590122,89.60727,0.00015213713 1723,618.02405,322.0276,21.12262,78.73334,0.00010432082 1723,573.10315,131.401,66.04352,224.98178,7.7099845e-05 1723,618.171,257.49384,20.975647,80.92984,7.6981116e-05 1723,179.97038,205.22456,75.65291,163.36836,7.39104e-05 1723,0.9854948,84.14482,20.259214,135.1612,4.0536434e-05 1723,602.6789,291.87653,36.467773,187.69598,2.7881259e-05 1723,609.7368,440.47705,29.409851,62.30359,2.4419143e-05 1723,2.5526433,376.70523,55.79279,114.28732,2.1170928e-05 1723,273.66812,180.33705,25.74411,54.07933,1.8532193e-05 1723,0.81137127,152.83032,13.816813,48.142593,1.7886736e-05 1723,0.7510718,173.2808,18.60789,74.94803,1.5904669e-05 1723,602.2599,18.323784,36.88678,171.04572,1.5571897e-05 1723,0.47565106,415.3297,17.276527,86.81958,1.2561857e-05 1723,248.41646,190.97151,98.06407,217.20744,1.1055384e-05 1723,0.82224774,222.45714,18.382994,76.69078,1.0832974e-05 1723,1.3154688,156.96204,35.0968,226.16125,6.893874e-06 1723,1.7033806,32.231438,62.503407,212.40875,2.2419288e-06 1723,0.9217155,5.2910156,37.2176,94.36403,5.921071e-08 1724,272.82187,266.06985,27.150085,49.89456,0.53398204 1724,105.81742,223.68683,38.56675,106.95004,0.081021436 1724,621.3109,152.29019,17.835754,54.473404,0.010839941 1724,193.61371,262.39825,26.921768,55.23593,0.0064050714 1724,612.06995,92.927086,27.076721,137.06754,0.0010210627 1724,189.40286,208.1237,27.087067,51.01631,0.0008437391 1724,175.52235,216.75903,38.78224,104.94733,0.0006623038 1724,621.81085,189.15947,17.335815,60.87622,0.0005733911 1724,1.3101043,263.59595,18.285498,77.44208,0.0004918773 1724,616.05804,228.66685,23.088623,84.22975,0.00023508491 1724,618.16113,387.93826,20.985535,79.109344,0.00019676922 1724,0.56405354,144.24377,19.291847,81.75949,0.00013298575 1724,601.3681,193.0466,37.778564,193.39975,0.00012988172 1724,1.6326661,203.35712,33.554646,181.98898,0.000110262125 1724,618.03577,330.27887,21.1109,77.094055,7.7369354e-05 1724,617.9785,287.64893,21.168152,77.88495,6.493338e-05 1724,77.808,95.23416,76.581055,220.2248,5.9308764e-05 1724,1.1617212,313.6112,17.346077,74.465515,5.6354656e-05 1724,0.9036955,72.09965,21.191113,115.36086,3.7880083e-05 1724,5.244821,167.71155,81.06145,265.40485,3.625459e-05 1724,610.2588,0.0,28.887878,157.19722,3.4156466e-05 1724,609.9247,439.09677,29.221985,64.9924,2.426208e-05 1724,250.70139,197.55373,74.40698,171.85197,2.3171186e-05 1724,0.814253,355.41614,18.204979,72.72797,1.5295807e-05 1724,282.01965,160.13133,33.694763,76.2173,1.4848976e-05 1724,1.6885091,313.381,32.51576,170.78348,1.3719013e-05 1724,0.64938235,205.03186,18.929642,85.889435,9.298793e-06 1724,0.6710091,405.23123,18.130245,71.55029,7.1506465e-06 1724,585.7568,392.4414,53.389893,100.80527,6.7532133e-06 1724,1.9874984,44.98384,60.70557,263.30542,1.3677086e-06 1724,2.7870085,429.03256,53.147587,69.52939,4.3719925e-07 1724,0.38777182,5.7968493,9.215071,95.428215,4.1219295e-08 1724,0.97125655,5.3627377,36.971012,93.202705,1.32775275e-08 1725,177.81174,228.82535,30.95543,65.0235,0.33998406 1725,274.11694,287.31686,25.119171,49.685577,0.07094489 1725,104.832954,232.84625,37.349358,100.51538,0.03395461 1725,190.05412,289.8169,31.482315,59.76953,0.010858604 1725,620.51495,118.37266,18.631714,59.066277,0.0017852082 1725,617.41614,246.54053,21.73053,84.70465,0.0012439153 1725,610.4353,129.4769,28.711365,145.71747,0.0010620732 1725,602.95245,243.15598,36.194214,198.97122,0.00040789688 1725,1.180446,93.61131,35.392776,198.97179,0.00019633437 1725,161.2395,211.29613,70.96796,153.43297,0.00018282655 1725,618.1399,395.65533,21.006775,77.308624,0.00017485338 1725,1.226849,224.35571,17.893942,75.252716,0.00015252121 1725,77.82607,107.45492,79.576805,224.86249,0.00012992235 1725,617.9599,314.72247,21.186768,78.82428,7.8550045e-05 1725,572.6082,97.83302,66.38214,226.43593,5.6796925e-05 1725,611.0088,20.250984,28.137878,173.7966,3.2813823e-05 1725,0.57450604,130.89445,19.08949,76.13333,3.2252512e-05 1725,609.82947,439.69565,29.3172,64.023315,2.7270582e-05 1725,0.9563086,317.39804,19.491499,128.55911,2.590327e-05 1725,237.73946,181.36717,130.8828,237.58171,1.8050212e-05 1725,0.91599774,286.78925,17.878698,73.11786,1.5485632e-05 1725,3.736491,171.04677,58.20458,210.25844,1.2649592e-05 1725,598.71326,5.5118914,40.43341,77.87189,7.8573e-06 1725,573.31415,363.70575,65.83252,123.97812,6.6101015e-06 1725,0.81181884,405.5338,20.134237,93.86224,4.431046e-06 1725,5.645801,345.23773,78.48661,139.03113,2.2067961e-06 1725,1.8689194,17.215345,57.276264,118.96767,3.3326475e-07 1725,22.089529,428.59958,74.39561,71.842896,3.2491502e-07 1725,0.73165125,29.296335,16.68188,135.00775,2.1117073e-07 1725,0.5400061,9.993594,8.731861,87.35295,1.8454085e-07 1725,1.0956218,7.6145186,29.839418,57.01999,3.1137766e-08 1726,118.03719,260.00916,24.007515,54.773956,1.3899404 1726,274.51324,296.61288,24.615814,45.63864,0.18801017 1726,180.48717,296.7418,26.213013,58.14557,0.020905823 1726,617.70984,152.8124,21.436829,66.69389,0.0031579635 1726,168.62303,228.88354,38.371964,136.34308,0.0013416328 1726,617.3655,249.15163,21.781189,81.197586,0.0010269828 1726,621.7421,111.629105,17.404541,51.991135,0.0005251577 1726,602.53876,250.53235,36.60791,201.19714,0.0004922875 1726,599.54785,120.75737,38.376465,169.34163,0.0004320052 1726,617.3945,184.90405,21.752197,90.4216,0.0002817313 1726,618.1931,387.8929,20.953552,80.43585,0.00025469842 1726,121.44529,216.88867,34.32087,81.98044,0.00022219731 1726,404.00146,159.9684,33.95923,74.81941,0.00019998019 1726,617.9734,328.2835,21.173279,79.83099,0.00010862691 1726,83.878525,102.1741,79.8492,214.08176,0.000104576415 1726,0.7121379,72.53517,18.499117,132.83624,2.7087535e-05 1726,609.9488,440.45486,29.197876,63.64087,2.6711768e-05 1726,1.0503117,323.15018,18.179289,70.83093,2.0528025e-05 1726,3.8884668,109.69218,57.917133,227.9476,1.998365e-05 1726,0.60678387,158.64246,18.48003,75.104965,1.3750238e-05 1726,0.8016667,201.71413,18.167393,75.84596,1.1146428e-05 1726,597.89935,3.025866,41.247314,85.64769,1.006247e-05 1726,245.77388,215.77338,97.51424,232.9491,1.00107645e-05 1726,0.7248316,399.80148,18.136623,70.473785,9.8531555e-06 1726,0.5891793,373.1703,13.566591,45.488525,7.579328e-06 1726,1.4841895,288.42755,33.080956,163.00684,7.54716e-06 1726,585.8985,392.63748,53.24817,101.796814,6.876775e-06 1726,1.1324031,263.71252,18.209791,72.27765,2.280633e-06 1726,5.5610876,351.10947,79.122665,134.15332,1.2078507e-06 1726,1.3883073,418.1277,35.017124,79.81973,9.11584e-07 1726,0.54335004,8.912666,9.237278,87.45557,4.741664e-07 1726,1.7028842,13.963279,56.32416,120.06393,4.2721337e-07 1726,1.1163086,7.658037,30.28338,55.8722,1.03928144e-07 1727,501.71625,240.78224,26.080444,46.748337,6.5921636 1727,131.9358,249.12714,25.035706,50.920227,0.11973412 1727,275.95746,306.58307,19.823212,47.609436,0.015635107 1727,419.7347,163.92645,40.64041,86.682144,0.012716035 1727,281.77258,290.07062,38.598938,68.37784,0.011821619 1727,400.26633,172.59744,38.598938,73.07774,0.004109626 1727,616.3485,84.02064,22.798157,73.2945,0.0025647148 1727,171.45877,210.29376,36.070343,72.7522,0.0020861127 1727,135.5747,206.80411,33.14833,78.77078,0.0017060733 1727,610.1749,134.52342,28.97174,144.52129,0.0012060218 1727,171.95589,297.28568,35.839844,67.33716,0.0007228919 1727,616.9417,245.79251,22.204956,83.240845,0.00022550428 1727,618.1504,381.07993,20.996277,81.04425,0.00017708601 1727,617.99207,321.1852,21.154602,80.25351,0.00010837579 1727,574.00635,163.62428,65.14032,238.41524,0.00010161116 1727,602.13556,259.6016,37.01111,210.5408,5.3451175e-05 1727,601.5646,8.06293,37.582092,180.43468,4.4911692e-05 1727,610.00305,440.3048,29.143616,63.61026,2.6235466e-05 1727,1.1937826,202.01411,17.984581,72.286545,1.766588e-05 1727,0.84087485,318.23312,18.302553,70.25409,1.2429345e-05 1727,0.6640527,72.86196,18.460634,138.44183,1.2117219e-05 1727,0.6768718,341.71234,19.70868,129.93225,1.0306146e-05 1727,585.91656,393.30777,53.230103,101.00491,6.7425576e-06 1727,1.6606632,108.73605,33.28822,184.09824,2.939757e-06 1727,3.5464683,257.6008,55.921913,208.96948,2.8983898e-06 1727,0.78434163,421.86115,17.344471,80.61554,2.3332875e-06 1727,2.8169434,426.5978,53.130245,72.16412,2.657804e-07 1727,5.9261556,75.12955,78.902405,254.18204,2.3653473e-07 1727,1.5283431,11.846693,35.80153,76.02288,1.5681236e-07 1728,278.48105,209.2308,34.787476,81.11398,0.098761454 1728,457.23364,205.81853,24.13913,45.152054,0.02344043 1728,410.834,189.88048,34.79007,60.547943,0.013811138 1728,139.26544,218.8737,34.1886,83.37334,0.008141592 1728,432.50882,172.098,41.25656,79.89,0.006130799 1728,281.88766,318.8315,20.205627,48.33261,0.0028023715 1728,288.4633,298.25723,39.465607,73.76938,0.0012587075 1728,350.36526,189.39807,33.10263,60.02095,0.0009414772 1728,612.19037,215.96579,26.956299,135.3735,0.0009153491 1728,176.06728,309.98685,37.08156,68.71915,0.0008824978 1728,621.0749,119.866875,18.071777,52.519478,0.0008657268 1728,275.31512,190.52173,66.69327,177.30734,0.0007571433 1728,611.0695,94.481705,27.83368,126.89455,0.00032520495 1728,618.12384,174.66165,21.022827,74.63963,0.00019128615 1728,618.1181,381.78427,21.028564,79.974915,0.00013663498 1728,587.6974,108.484634,49.6369,221.81578,8.525674e-05 1728,601.6716,270.73572,37.475098,195.84543,7.411481e-05 1728,0.82886153,280.8985,18.105453,71.82901,2.2227943e-05 1728,609.7347,440.8611,29.411987,63.36203,2.1599073e-05 1728,0.7473755,187.8897,18.092537,77.59465,2.0898553e-05 1728,1.0788697,234.42923,17.96597,72.96341,1.4271896e-05 1728,587.8281,0.0,51.318542,149.68718,1.1671323e-05 1728,0.7003565,71.38629,18.15395,139.57718,1.033187e-05 1728,0.70219,392.08017,18.31372,71.98489,8.362329e-06 1728,585.6544,391.67975,53.49225,102.73218,6.2333484e-06 1728,1.7498413,261.25146,31.608213,173.16974,6.0160637e-06 1728,1.4577254,133.75018,31.851753,180.47049,4.71785e-06 1728,0.59454024,338.31897,18.318182,71.46634,3.847044e-06 1728,5.2290106,98.93236,75.66798,257.29633,1.941275e-06 1728,1.339388,418.1956,34.155872,81.859375,1.1557885e-06 1728,5.724108,357.7838,79.37911,128.85443,6.1515317e-07 1728,2.5127344,18.942911,55.767776,113.806435,5.6560094e-07 1728,1.036066,7.8376517,29.866272,54.919422,3.7731784e-08 1729,448.68283,199.74901,35.193024,54.774384,0.038509063 1729,168.70541,218.32973,32.095352,72.72301,0.015139797 1729,292.3399,326.2997,26.443054,50.261047,0.006518823 1729,6.8011446,193.35664,34.97758,76.19347,0.004532321 1729,617.3869,196.37605,21.759766,92.43474,0.0024574813 1729,428.03937,169.62006,43.311462,92.29532,0.0017779178 1729,1.7346021,207.01979,18.734344,85.25575,0.0013115933 1729,619.7435,130.51541,19.403137,67.61293,0.0012636328 1729,617.0745,261.7764,22.072144,82.94449,0.000848326 1729,6.059211,127.25062,34.9025,95.94532,0.0004741549 1729,299.94022,300.75565,39.27939,79.42615,0.00041135369 1729,177.53369,315.316,36.595016,71.1647,0.0003963129 1729,603.257,116.130264,35.13513,154.213,0.00035435602 1729,2.194139,134.68456,55.24021,221.74529,0.00018118956 1729,618.3282,373.74713,20.818481,81.85516,0.00014790143 1729,604.26605,246.55464,34.880615,197.94344,0.00012370553 1729,295.0298,210.05641,71.68317,182.69579,0.00010671755 1729,0.7954289,265.49243,19.121853,87.3609,0.0001023795 1729,610.9329,22.756752,28.213745,172.50269,9.50888e-05 1729,0.8500285,250.45563,29.752914,196.45895,4.3570442e-05 1729,614.36383,417.02942,24.782837,85.3183,2.4855546e-05 1729,0.69964033,388.98,18.36124,76.28067,1.2304963e-05 1729,3.7825425,238.94958,76.81596,226.96335,8.7754215e-06 1729,572.5848,359.0621,66.56189,129.0336,5.369979e-06 1729,0.8761922,441.61313,22.230984,62.412445,2.2515708e-06 1729,0.98337,41.763294,17.155012,153.33241,1.5300208e-06 1729,2.877518,394.62305,55.71359,99.54791,8.87312e-07 1729,1.6612028,8.845834,57.41132,133.78989,2.3155526e-07 1729,0.72164226,7.5807343,30.437578,56.122765,4.0715232e-08 1730,508.25476,217.62555,23.99823,46.9227,0.16585173 1730,483.4988,220.2508,25.524445,45.50479,0.08276495 1730,1.1536442,320.1947,15.293806,65.54031,0.022632558 1730,181.16864,226.92891,34.075516,76.76442,0.0058647 1730,1.6069336,305.4429,40.053177,92.866,0.005218454 1730,609.0486,170.57588,29.300293,135.14455,0.0017401815 1730,617.14197,271.64398,22.0047,87.0791,0.0016339858 1730,620.2111,146.08316,18.935547,55.17726,0.0010809473 1730,174.61006,333.79337,32.14525,73.20227,0.0004968204 1730,3.1338608,126.89136,57.653645,233.27887,0.00046382847 1730,1.417137,350.39838,19.336744,81.25348,0.00040203516 1730,604.1615,264.58694,34.98517,190.72766,0.00038531283 1730,301.0759,349.98123,21.226715,51.411743,0.00034651338 1730,273.40536,205.85602,77.4989,175.91327,0.00022090803 1730,610.4844,69.66432,28.662292,136.07408,0.00017819158 1730,618.2191,379.77795,20.927551,81.48044,0.00015761841 1730,573.6054,146.18303,64.94763,231.82903,8.9382636e-05 1730,315.53076,351.08057,21.842346,47.922363,4.1929266e-05 1730,1.1990479,147.18869,18.647514,76.09805,4.1457304e-05 1730,0.92340416,243.0888,21.865965,120.72354,3.717669e-05 1730,1.4418921,196.39917,18.125156,70.04111,3.2209482e-05 1730,1.4994239,330.74976,78.065125,150.03302,2.3737059e-05 1730,609.81104,439.35397,29.335632,64.254944,2.1336975e-05 1730,585.1072,4.0743623,54.03949,137.8498,1.2800448e-05 1730,585.62695,389.97137,53.519714,103.464264,6.4365177e-06 1730,0.6183602,402.28638,18.381067,75.497955,6.1818446e-06 1730,1.2283887,456.5882,28.357706,48.355774,1.6153643e-06 1730,0.83573735,47.346302,15.347614,143.33788,9.754532e-07 1730,2.7657113,427.0355,52.8694,72.545044,3.8224516e-07 1730,0.53370935,9.287952,8.517916,84.50166,2.0672759e-07 1730,1.431709,11.838245,35.95254,72.94179,1.685891e-07 1731,467.7794,208.95543,25.418762,45.999603,5.197039 1731,187.75893,216.61691,25.617233,69.35629,0.0054123797 1731,464.87918,160.39154,44.48343,100.35394,0.0049036187 1731,608.61444,236.79735,29.912415,65.89708,0.0026758616 1731,622.439,164.09145,16.707642,50.224487,0.0019381696 1731,307.17502,204.19115,41.689117,135.21797,0.0005070141 1731,611.9244,141.99171,27.22229,142.84288,0.00044370486 1731,172.97858,129.75478,78.241684,189.08702,0.00022896197 1731,622.32275,360.61365,16.823914,50.735596,0.00019955021 1731,618.1936,381.61716,20.953064,79.76459,0.00014864861 1731,603.14,212.27211,36.006653,191.0804,0.00012806982 1731,617.63165,277.28387,21.515015,83.17871,0.00012496716 1731,616.20087,57.239586,22.9458,78.88584,0.00012096972 1731,1.2272762,214.954,18.111692,76.72423,5.9590202e-05 1731,585.3862,45.32923,53.050842,243.2601,2.543731e-05 1731,609.8822,441.44583,29.264465,62.477783,2.4942168e-05 1731,1.1588469,249.83302,19.289719,131.10695,2.4287547e-05 1731,170.35156,349.44592,26.355423,62.08011,2.0285304e-05 1731,5.807471,206.37091,79.48516,244.3793,1.8441538e-05 1731,442.56235,141.9302,106.63406,201.95172,1.6533759e-05 1731,582.344,5.688594,56.620667,125.98803,1.6225507e-05 1731,0.61093754,280.38797,13.610076,48.63968,1.1956672e-05 1731,370.88977,137.00034,97.06348,212.38004,1.1570604e-05 1731,1.808138,155.63016,34.734245,172.3588,1.0810064e-05 1731,0.9581812,68.434,20.604004,108.536766,7.966494e-06 1731,0.9649658,333.86795,19.371048,137.58499,6.2445943e-06 1731,585.59973,392.84958,53.546936,101.21246,6.229926e-06 1731,0.7585596,423.9041,17.077404,78.0686,3.6404952e-06 1731,0.8509774,132.64264,18.4943,79.94313,2.550853e-06 1731,2.9677815,396.42828,56.052834,97.57669,8.57099e-07 1731,2.0881348,16.76276,57.0321,121.05647,5.1683253e-07 1731,1.2235596,7.593532,29.141663,56.84062,3.8023945e-08 1732,190.52618,256.8153,26.460297,47.657776,0.1354288 1732,514.0904,216.1671,23.794434,45.67424,0.052938715 1732,474.33823,180.55771,39.22519,81.37161,0.0037146758 1732,621.7588,162.79117,17.387878,56.019547,0.0016138349 1732,1.5146843,242.29326,38.845467,124.363144,0.0013722726 1732,185.33466,209.97667,40.386032,117.5605,0.0013580249 1732,619.89374,51.149166,19.25293,53.962048,0.0010163918 1732,618.5804,205.22789,20.566284,72.61418,0.00066333864 1732,611.2019,101.31605,27.944763,135.84155,0.00046334614 1732,315.90436,362.95746,22.181366,49.52942,0.00036804346 1732,309.38022,228.76672,47.149597,108.95181,0.00032195367 1732,580.2684,231.08636,24.21399,50.247925,0.00018624765 1732,618.2199,381.84332,20.926758,80.31601,0.0001701653 1732,193.16849,217.53586,22.389648,58.232727,0.00015203153 1732,1.2440064,292.00867,21.250626,149.49863,0.00012813702 1732,606.7729,2.8964193,32.37378,118.69991,0.00012709753 1732,2.5865626,252.29358,77.64482,207.80914,0.00011670994 1732,618.07526,327.73087,21.071411,80.36963,0.000104094135 1732,612.85236,225.65573,26.294312,138.92291,7.3514486e-05 1732,1.0675033,213.87764,18.906511,89.403946,6.2901156e-05 1732,1.3238753,168.68246,18.565304,74.75798,5.2263487e-05 1732,172.62738,346.55533,34.727905,74.05783,3.8174887e-05 1732,587.8721,232.93503,51.274597,238.44034,3.7241127e-05 1732,0.60596925,391.1594,18.363522,78.99936,3.449554e-05 1732,159.14227,165.84401,96.945435,244.14336,2.8820179e-05 1732,609.8185,440.84286,29.328186,62.817993,2.857889e-05 1732,37.520657,177.1361,45.958874,157.39766,1.406432e-05 1732,378.3622,146.97696,100.18176,209.41104,1.2372352e-05 1732,1.8379818,88.4289,33.825592,198.81775,8.106531e-06 1732,585.6477,392.62903,53.498962,102.13614,6.871347e-06 1732,0.8879997,442.3338,21.979223,61.191254,2.2802897e-06 1732,2.5340252,388.763,55.828125,104.6015,2.1614892e-06 1732,2.1259472,11.737585,57.111088,126.708015,1.8280602e-07 1732,0.8682308,32.508713,15.443634,141.88731,3.805224e-08 1732,1.3371533,7.8447156,29.474398,55.535027,3.4123214e-08 1733,187.79149,232.44725,30.864487,69.77425,0.8227736 1733,564.864,208.14136,29.161804,56.687378,0.8112543 1733,573.14386,183.18207,28.707825,60.33455,0.025613043 1733,316.91592,233.09787,46.861755,110.23392,0.00090389856 1733,174.31615,133.30943,70.99155,191.52037,0.00075403624 1733,1.3384424,245.7436,18.513334,79.138626,0.000544918 1733,620.3875,49.43408,18.759155,55.158802,0.0004446571 1733,197.76286,209.89058,21.442902,57.43596,0.00034503217 1733,33.76075,107.32478,41.429817,175.31627,0.0003415859 1733,612.7563,195.21722,26.39038,122.016235,0.00033271287 1733,207.59955,222.51749,25.242752,57.774017,0.00031976218 1733,321.61014,371.37073,23.545929,52.948486,0.00021653532 1733,2.2717106,210.0615,35.212494,176.11874,0.00020649694 1733,618.2591,375.01297,20.887573,80.371216,0.00015998117 1733,611.8568,116.79378,27.289856,123.41284,0.00011203994 1733,618.1632,314.61102,20.98346,80.29083,0.000101939906 1733,5.350547,85.61999,111.581276,256.64487,0.000101140846 1733,607.3493,0.0,31.797363,114.25426,7.7510784e-05 1733,571.71906,148.49115,66.63739,212.92496,5.4211047e-05 1733,614.59753,419.12878,24.549133,83.437225,2.890981e-05 1733,603.47974,324.56158,35.66693,162.92499,2.7177062e-05 1733,1.2960498,295.1368,19.586851,136.04108,1.845593e-05 1733,0.7391439,404.31366,18.17257,72.37375,1.660018e-05 1733,3.004061,298.35916,56.375385,176.27081,1.1358925e-05 1733,376.39804,149.68391,108.194824,207.94469,9.363471e-06 1733,1.3534465,167.46198,18.45585,77.16222,8.610105e-06 1733,580.91864,2.6956446,58.228027,209.62149,4.3176487e-06 1733,1.9690723,84.27586,34.217293,205.20604,2.978469e-06 1733,2.5251563,427.54398,53.383957,70.95386,6.163523e-07 1733,1.7731576,10.351967,57.408215,131.23135,2.151887e-07 1733,0.83215743,25.753946,15.866043,142.5337,7.428968e-08 1733,1.0862077,7.9749513,29.715792,55.50709,4.0715538e-08 1734,557.1365,215.66618,23.230286,49.93776,0.07839678 1734,539.6425,215.48228,27.283508,53.06456,0.021481706 1734,623.01746,228.683,16.129211,49.09822,0.0062553473 1734,29.126818,191.34915,35.000023,88.0123,0.00528841 1734,525.3994,219.28276,22.110107,46.655716,0.0044474513 1734,189.64214,207.17703,35.75386,108.52246,0.0044284402 1734,321.8066,222.58975,42.654053,118.80994,0.0022851345 1734,6.3290205,106.93785,71.052315,204.81862,0.0013685923 1734,1.5385678,260.5552,27.14606,84.5177,0.001117516 1734,612.8553,203.70746,26.291382,118.81903,0.0005487479 1734,618.41064,396.14664,20.736023,78.39862,0.00024523697 1734,1.2404842,167.74265,19.356329,82.08609,0.00017848071 1734,616.3036,123.98155,22.843079,80.97792,0.00016610361 1734,588.32715,204.18013,50.729004,216.34972,0.00011102554 1734,618.1948,342.0994,20.951843,79.95706,0.00011003669 1734,1.1651571,214.15591,19.007652,90.26346,0.000108230764 1734,599.48285,76.964615,39.057373,183.47878,0.000102457045 1734,326.58832,380.3404,22.795715,50.298676,9.503586e-05 1734,596.2112,3.1799154,42.935486,97.36041,7.3767944e-05 1734,1.1163363,291.60968,19.88033,141.05453,4.7086265e-05 1734,609.92285,441.40256,29.223816,62.60489,3.3145952e-05 1734,0.8970923,67.18193,18.419577,147.60133,1.9774243e-05 1734,2.5823958,297.68762,56.65931,177.50537,1.50968735e-05 1734,0.64138836,401.78506,18.308617,75.09854,1.41227065e-05 1734,572.5887,363.56168,66.55798,126.96057,6.7761157e-06 1734,2.5928988,426.99097,53.040688,71.464935,4.8140475e-07 1734,1.8354005,7.9728713,57.69597,137.55188,1.7230454e-07 1734,1.2638786,7.3020153,29.403713,55.366226,1.3076966e-08 1735,195.65852,236.64719,32.021454,75.72455,0.080050945 1735,429.3588,231.83556,22.676514,47.56569,0.044683322 1735,328.22516,228.32417,42.88443,104.21086,0.03060315 1735,620.27,196.37863,18.876648,57.790436,0.015822938 1735,545.93365,219.81522,22.918884,46.834778,0.004457693 1735,182.32668,266.32428,25.231415,49.230927,0.0039474196 1735,610.03613,127.86701,29.110535,135.03867,0.0027481334 1735,558.6787,219.84824,24.568298,48.65143,0.002291354 1735,1.8234327,255.62363,36.59458,112.12256,0.000671106 1735,21.63113,101.42826,72.420166,202.17184,0.0006542708 1735,540.6457,119.61047,76.92029,160.1814,0.00037693558 1735,0.9790137,285.14606,14.214638,56.483124,0.00036820673 1735,617.2957,237.05545,21.850952,86.83273,0.00020780672 1735,334.71973,379.58414,24.086578,53.680847,0.00020038587 1735,618.2429,362.66656,20.903748,79.38422,0.00013335761 1735,618.0813,315.59512,21.065369,78.62341,7.466619e-05 1735,4.4870768,261.43896,77.75857,201.50824,7.377519e-05 1735,586.94214,168.8579,52.20453,205.4257,7.248513e-05 1735,1.4725188,308.0863,20.314526,93.56296,6.67222e-05 1735,1.0127637,220.0978,18.297878,82.894,4.5822486e-05 1735,610.0784,40.258068,29.068237,144.95749,4.1721378e-05 1735,1.1534547,165.7076,18.026196,73.825165,3.5618184e-05 1735,614.4793,418.9722,24.667358,83.38516,3.091252e-05 1735,0.6661092,379.14505,14.041613,53.443817,3.0719966e-05 1735,1.0419043,70.46943,17.66232,134.31686,1.1517243e-05 1735,2.0173242,102.908714,32.782825,188.85626,1.0995847e-05 1735,588.09015,323.59372,51.05652,161.93878,8.956679e-06 1735,595.7835,8.990895,43.36316,85.041016,7.0778206e-06 1735,1.2159343,346.2606,28.688822,146.66428,5.139006e-06 1735,348.57883,380.15796,19.916107,48.259247,4.9544406e-06 1735,0.70790446,419.27103,17.051907,82.994415,3.8530216e-06 1735,2.6965969,426.10068,52.8805,72.667816,3.6208195e-07 1735,1.9510092,9.000736,57.099964,134.69003,1.5706232e-07 1735,1.1713574,8.176841,29.87457,56.16073,3.9396973e-08 1736,43.31495,222.38911,34.828423,63.29036,0.23686588 1736,206.59384,221.7847,31.653763,68.511505,0.045343228 1736,610.072,217.20325,27.958435,53.496277,0.0131334 1736,545.01587,220.37761,22.401917,46.468063,0.007963472 1736,524.5522,217.35281,23.477417,48.108032,0.0049300534 1736,559.57733,217.97737,22.628357,49.79741,0.0035460053 1736,1.7789632,296.78622,40.952385,115.94388,0.0031975498 1736,590.93823,180.19057,42.145447,94.466415,0.0025034228 1736,208.89491,260.94614,25.151108,54.97879,0.0020691939 1736,572.27484,216.27213,26.08197,53.539,0.001998404 1736,1.0429143,260.31818,19.794353,95.50464,0.0005559914 1736,616.0685,153.1436,23.078186,88.09656,0.0004883364 1736,3.2010775,190.90225,78.73457,241.49487,0.00039835268 1736,321.02994,203.29543,76.651,172.78297,0.00035439592 1736,570.05804,126.69328,69.08862,207.11891,0.00024649518 1736,589.10754,220.12624,20.806519,45.17595,0.00022273492 1736,617.207,246.06094,21.939697,85.357025,0.00018994315 1736,617.85284,95.31667,21.293823,73.10612,0.00016196455 1736,618.1104,349.08105,21.036255,79.48392,9.792226e-05 1736,602.78217,232.6781,36.364502,209.06216,8.547434e-05 1736,346.8296,384.88104,25.395264,53.07135,6.409089e-05 1736,188.16432,196.30441,74.475815,178.9104,5.670995e-05 1736,0.75208336,386.4234,14.169374,51.66394,3.1174466e-05 1736,610.0158,439.37122,29.13086,64.62463,2.7865417e-05 1736,609.6533,10.620338,29.493347,132.36844,2.524157e-05 1736,1.2911198,170.72386,18.281643,76.86719,2.3262584e-05 1736,1.6937028,137.66466,34.199078,211.48738,1.2423206e-05 1736,1.1261841,339.3022,21.01262,157.21042,1.0890423e-05 1736,585.90533,393.0647,53.241333,100.81616,6.6674365e-06 1736,1.0535116,69.80868,17.923428,137.07217,5.3377103e-06 1736,2.0949073,24.981016,63.16943,260.7364,8.4988415e-07 1736,2.7157552,426.54758,52.70164,72.5094,3.340902e-07 1736,490.1112,2.8074985,44.12451,53.556267,6.5062004e-08 1736,1.8694011,11.005964,35.376995,77.80928,5.7564613e-08 1737,597.76154,186.90862,39.45575,81.39125,0.3212898 1737,215.13457,225.28345,27.272476,78.48056,0.1167514 1737,346.36026,231.81047,36.324768,83.12016,0.054238167 1737,531.70905,208.08807,34.575745,54.372223,0.007955412 1737,48.88059,191.06337,42.272564,88.28929,0.0057458943 1737,606.6821,230.18889,26.822021,50.51906,0.0038214384 1737,551.50397,217.60301,23.581238,47.734177,0.0028024034 1737,210.95702,269.34854,26.563385,53.108276,0.0016823618 1737,565.05316,220.41646,23.145142,46.469498,0.0013375932 1737,616.7185,154.53938,22.428162,83.50255,0.00078616233 1737,616.9449,62.93408,22.201782,71.440765,0.00041122426 1737,1.6123544,330.2197,18.620377,85.57788,0.0003746177 1737,616.94006,243.5825,22.206604,85.934494,0.0003598478 1737,2.4303777,242.32492,42.56898,153.65521,0.00017114374 1737,618.25665,402.65292,20.890015,77.98157,0.00014835686 1737,573.0633,134.76161,66.083374,210.40569,0.0001240912 1737,618.0552,355.661,21.091492,79.28677,0.00011342529 1737,1.1982715,266.69775,18.805712,88.900696,0.00011257546 1737,194.61665,191.78691,74.11006,178.75337,8.950427e-05 1737,602.5123,245.18639,36.63434,204.15935,7.5252814e-05 1737,1.1241204,171.95782,18.461208,73.2038,5.307048e-05 1737,1.613291,94.49496,33.575623,186.2222,2.2992926e-05 1737,0.7929566,373.68118,19.271513,124.83554,2.2564896e-05 1737,393.7586,143.37868,132.58203,227.67549,1.4209803e-05 1737,597.4284,20.544147,41.71826,190.11339,1.1952408e-05 1737,609.9976,4.805013,29.149048,98.940544,1.1117785e-05 1737,0.53429526,408.6245,13.951941,50.542908,1.0209923e-05 1737,4.26694,338.8832,78.51904,143.82617,6.8839668e-06 1737,572.5065,361.8773,66.6402,127.33783,6.406229e-06 1737,0.94725996,62.94299,18.389807,141.2083,2.526473e-06 1737,2.7590952,425.39047,52.96407,73.72974,3.3341797e-07 1737,1.8134148,11.768672,57.778603,130.51648,2.8710863e-07 1737,491.87262,2.6238103,44.49066,50.395065,1.4718353e-07 1737,1.1861947,8.388264,29.573229,54.448208,3.9297905e-08 1737,524.7559,0.0,46.2558,45.03683,2.0054264e-08 1737,340.1623,0.50043297,43.712738,49.502197,5.052748e-09 1738,604.7129,184.40604,33.292725,81.46271,0.08310073 1738,38.635075,104.05444,59.58066,171.25217,0.020581814 1738,3.6438656,290.08075,36.47197,116.00244,0.0088608265 1738,613.2444,229.82133,25.902283,51.726913,0.008228566 1738,222.38243,220.37766,24.589478,61.834656,0.0074875215 1738,536.77734,206.89516,32.128662,59.619736,0.0071733054 1738,1.447837,315.791,14.065268,59.538544,0.0024924125 1738,556.19147,219.81418,25.437927,48.447906,0.0019330899 1738,351.42737,227.36214,39.814667,103.66588,0.0014667023 1738,624.1345,208.4275,15.012146,45.553757,0.0013536015 1738,589.8398,115.76558,48.52411,192.80904,0.0010751602 1738,572.67334,223.3551,23.340393,46.37686,0.0006210188 1738,616.44385,64.20322,22.70282,71.71181,0.00053756946 1738,586.6124,220.29874,24.863098,51.118103,0.00036761168 1738,1.3111646,337.90533,18.730528,81.22342,0.00029180845 1738,64.09333,206.70357,32.626938,62.358566,0.00026968215 1738,1.4901888,261.86642,19.606009,87.09006,0.00021081182 1738,618.0911,395.28714,21.055542,78.331635,0.0002004673 1738,0.9185909,184.67609,13.640163,51.51387,0.00014674374 1738,617.93335,342.5222,21.213318,79.26721,0.000107592095 1738,617.0397,128.48785,22.106995,84.183945,9.199402e-05 1738,617.51196,276.6142,21.634705,82.34903,8.933474e-05 1738,2.9221957,102.697395,58.896725,277.28387,8.493497e-05 1738,587.86316,224.05891,51.28351,248.20955,7.810515e-05 1738,1.2667221,114.328125,19.518679,135.4963,3.0496778e-05 1738,609.8428,441.2025,29.303894,62.26053,2.1298387e-05 1738,3.8557065,327.05215,78.73763,153.03397,1.46593065e-05 1738,586.19086,7.5453973,52.95581,121.15523,1.3515106e-05 1738,0.5842554,384.2955,18.54198,78.86377,9.716543e-06 1738,0.90789634,443.01776,21.919552,60.118927,2.0782873e-06 1738,1.8275831,13.543549,58.02029,133.70033,5.943433e-07 1738,2.7141423,427.19208,53.09289,71.477875,2.7472495e-07 1738,497.10724,2.5505404,62.548157,47.012775,6.91536e-08 1738,0.8970191,26.809662,15.961474,141.68925,4.779908e-08 1738,544.33624,1.4149349,44.233276,49.74979,2.733267e-08 1738,1.255975,7.504774,28.86342,55.263695,1.0012526e-08 1738,364.2694,0.0,44.690674,48.036686,5.7418936e-10 1739,216.42879,221.4092,31.889526,80.968704,0.025132598 1739,352.63187,220.71602,45.920013,112.663895,0.013240864 1739,613.4987,234.51237,25.647522,48.74153,0.013021745 1739,13.5380945,291.20663,33.286743,84.38974,0.0050517274 1739,601.5796,107.19673,36.266785,180.55507,0.0032690358 1739,2.3446045,271.78873,28.68317,80.30325,0.0030168993 1739,616.8707,74.479935,22.27594,73.04111,0.0010458138 1739,1.2407349,303.4978,13.203351,52.296814,0.00086507644 1739,4.2544403,259.1581,76.094925,199.0394,0.00045399915 1739,1.1013737,255.70316,13.66636,55.391113,0.00031541116 1739,617.3383,269.76257,21.80835,87.53134,0.0002778347 1739,65.39883,210.23901,25.40725,56.947205,0.00023702499 1739,618.01166,381.3309,21.13501,80.431305,0.00015308315 1739,616.8118,125.69927,22.334839,87.2542,0.00010032112 1739,617.8575,331.7686,21.289185,82.34555,9.8859084e-05 1739,0.9709514,319.07748,18.799528,78.25,9.468882e-05 1739,602.5138,222.11877,36.632874,195.13477,6.9668524e-05 1739,269.22742,169.38495,25.037994,47.194122,3.5010307e-05 1739,609.79486,440.47458,29.351807,63.77231,2.7833064e-05 1739,1.7997234,95.68947,28.543062,149.19765,2.7032205e-05 1739,1.1468954,192.75667,18.424133,83.55818,1.5419848e-05 1739,588.0565,321.02048,51.09015,163.29886,1.0401451e-05 1739,567.2222,12.794382,71.68872,147.00941,9.392519e-06 1739,0.67888063,426.63257,13.437636,45.866364,7.747769e-06 1739,0.6612899,373.97653,19.709846,124.25186,6.292359e-06 1739,0.511285,383.47568,14.05713,49.001312,5.680338e-06 1739,2.7927296,55.447605,58.426533,275.33408,4.82233e-06 1739,3.202344,381.39133,56.04528,111.43909,1.0003489e-06 1739,1.69563,8.884525,57.62247,134.88728,4.769174e-07 1739,0.8084375,22.364317,14.987518,149.7294,6.494372e-08 1739,1.1919857,7.164743,29.459127,54.62524,3.3273803e-08 1739,522.0773,2.1000473,45.713745,48.414482,3.2391494e-08 1739,559.4679,1.4813558,43.68457,50.069893,1.507057e-08 1740,211.23729,229.57605,26.159363,69.0777,0.015518141 1740,354.9851,226.06917,40.513702,97.42265,0.01117351 1740,608.1237,216.66951,30.404358,64.1891,0.0057743704 1740,617.40314,67.81921,21.74353,73.236885,0.0012228448 1740,600.16486,99.44665,37.424072,186.10236,0.0005483477 1740,617.3111,244.34834,21.835571,88.173355,0.00025070447 1740,1.0061443,261.60022,13.263458,49.690887,0.00024084625 1740,1.1489234,92.65741,18.124191,68.38591,0.0001579835 1740,618.1692,402.65518,20.977478,76.99664,0.00014250111 1740,617.0665,140.32701,22.08014,81.40683,0.00012139871 1740,617.9384,315.48105,21.208252,77.33322,0.00010713605 1740,224.96564,225.13664,32.746857,75.623276,7.2453404e-05 1740,4.7917643,254.07756,76.63099,209.33235,6.87526e-05 1740,1.3263078,174.56558,18.005281,73.08156,5.83847e-05 1740,2.056967,80.79483,32.57464,184.65186,5.0976472e-05 1740,602.01794,213.47331,37.128723,197.92686,3.404391e-05 1740,1.7220997,184.96245,27.850908,152.25874,2.5091089e-05 1740,0.9110189,128.16385,18.335386,80.096405,1.731306e-05 1740,0.8026819,365.1525,13.831394,45.565826,1.3770554e-05 1740,610.38324,5.6125684,28.763428,88.593346,1.3705165e-05 1740,1.0309172,337.79724,20.371113,132.27335,1.1994682e-05 1740,1.3014739,267.7107,20.925283,103.423645,1.1721875e-05 1740,588.8899,332.55646,50.256775,153.48969,8.116062e-06 1740,359.9856,3.0595396,44.17453,45.532967,5.610777e-06 1740,567.3687,2.6362565,71.700195,165.0505,4.5593024e-06 1740,0.7265723,422.9151,16.898256,79.00748,2.820017e-06 1740,1.53931,15.425339,57.24129,126.04909,7.786313e-07 1740,2.8717968,387.95605,56.137543,104.50876,7.37092e-07 1740,535.6959,1.4773242,42.905823,47.967697,3.2695517e-08 1740,1.1032064,7.016045,29.952957,57.9412,2.700007e-08 1741,120.679245,274.4302,40.43463,78.22958,0.14158125 1741,332.90527,412.476,27.179749,46.78305,0.015085309 1741,209.6918,226.73274,25.675552,73.41435,0.00645632 1741,349.8552,224.13222,39.256897,122.4713,0.0016412605 1741,616.6251,218.3345,22.521545,75.83237,0.0010810123 1741,617.11127,55.887226,22.0354,74.50595,0.00047553336 1741,223.95407,416.32623,25.65599,48.633514,0.00046296185 1741,616.99725,164.80867,22.149414,72.911316,0.0004026844 1741,600.9551,153.73119,37.866516,168.1761,0.00029764412 1741,618.09515,380.83173,21.051514,80.550415,0.0001722917 1741,1.1952474,254.94975,18.328081,75.666,0.00012918413 1741,200.09326,236.07326,41.371567,135.26958,0.00011120941 1741,617.63824,265.6142,21.508423,82.20465,0.000110930385 1741,617.9546,335.74408,21.192078,78.21863,9.520686e-05 1741,616.9172,117.28617,22.229492,82.45818,7.878652e-05 1741,5.1421976,129.18118,77.48697,262.49286,5.1872204e-05 1741,585.63556,5.9738545,52.789795,123.7803,3.99847e-05 1741,609.65125,439.34268,29.495422,64.861694,2.4797819e-05 1741,1.1419662,191.3306,18.187958,73.66812,2.2606424e-05 1741,3.159144,289.99005,55.974834,182.99731,2.1812033e-05 1741,1.8171924,213.36006,33.053673,171.71114,2.1376976e-05 1741,602.0208,270.98334,37.125854,192.5748,1.9213838e-05 1741,1.4383398,78.71554,33.839832,195.19025,1.0758968e-05 1741,585.8824,391.50748,53.264282,102.3956,7.533597e-06 1741,0.8800374,364.80786,19.658043,130.91537,7.3870806e-06 1741,0.6638155,419.71133,13.504097,47.191895,6.5436543e-06 1741,0.69394696,364.2907,13.8227625,47.822174,6.444232e-06 1741,394.95267,3.67055,43.97397,49.466785,6.122248e-06 1741,1.0224496,129.35518,18.43715,77.65532,4.0918303e-06 1741,434.8674,3.2625685,42.877777,50.241646,2.2079794e-06 1741,2.0240104,16.983717,57.17971,122.132034,4.928294e-07 1741,2.8176336,429.2398,52.952538,69.84833,3.3287216e-07 1741,580.14343,2.0880241,44.93744,53.611053,2.3774194e-07 1741,0.8921745,30.365587,16.06431,132.80252,1.5293138e-07 1741,1.1213965,7.3972855,29.456465,57.505554,1.8689422e-08 1742,607.8142,219.6487,29.70514,57.02852,0.0032952966 1742,228.59816,409.50607,26.30658,51.954865,0.0024456752 1742,43.9291,261.352,42.889084,112.12848,0.0020477767 1742,620.4137,90.200714,18.732971,62.210342,0.0012643766 1742,609.1964,70.52213,29.950256,147.1265,0.00073311216 1742,327.227,404.55975,24.37558,45.910583,0.00049649825 1742,209.3575,216.54643,40.749542,104.416275,0.00036370917 1742,617.4498,254.47162,21.696838,85.09085,0.00022533446 1742,205.68533,230.57089,23.206177,59.898743,0.00017884056 1742,618.1314,380.15756,21.015259,81.13995,0.00017127108 1742,0.91785645,220.5074,18.263992,80.54707,0.00016701026 1742,618.03986,322.35812,21.106812,79.02905,0.00011158631 1742,599.7062,149.49469,38.95044,171.33853,9.959569e-05 1742,606.01697,3.2193165,33.1297,60.23902,6.314703e-05 1742,5.804805,130.52101,76.97447,260.82288,5.6116005e-05 1742,1.6159002,89.07169,28.405598,147.20111,4.2693257e-05 1742,1.0411264,173.29837,18.253006,75.71669,3.745941e-05 1742,585.37836,0.0,53.202087,130.91333,3.092331e-05 1742,1.0624577,255.60532,19.486986,130.58496,3.071891e-05 1742,192.83282,216.11253,77.56552,185.99696,2.8270404e-05 1742,609.72363,439.87213,29.423035,64.15094,2.5244122e-05 1742,2.953208,288.11676,56.80192,185.36243,2.1928876e-05 1742,587.5976,252.62474,51.549072,221.6184,1.575915e-05 1742,1.7965691,178.97641,33.82105,179.759,1.0730359e-05 1742,0.6650379,419.75476,13.552046,46.60623,8.516647e-06 1742,1.2246363,329.34515,20.07408,133.42657,6.2712948e-06 1742,0.9622575,443.3178,21.719715,59.916626,1.8077667e-06 1742,1.8645638,13.747507,57.51376,128.38707,5.663459e-07 1742,2.8343816,429.66983,52.646732,68.894196,3.288391e-07 1742,0.902308,29.513672,16.398884,137.36203,2.3364753e-07 1742,0.52075684,8.41221,9.061993,90.773155,9.4759855e-08 1742,1.0299805,7.557396,29.69947,57.173164,2.299202e-08 1743,205.1862,232.82845,24.246323,63.80754,0.04896029 1743,347.18182,206.46875,45.649567,118.941864,0.0066952026 1743,57.49769,297.98132,37.17636,83.19949,0.005855233 1743,402.2945,195.54857,34.85968,65.18114,0.003641042 1743,118.92313,273.11426,40.609344,75.534424,0.0032717555 1743,609.0636,226.32664,29.68097,56.21541,0.0015341359 1743,34.31248,253.18277,33.01608,70.65726,0.0008982597 1743,616.5322,62.508373,22.61444,76.21394,0.00087630935 1743,214.69281,217.49315,41.01071,103.84837,0.000777076 1743,352.0748,96.17261,43.380524,77.45746,0.0005862373 1743,611.1972,95.20406,27.949463,145.69952,0.00031694563 1743,5.152956,85.516304,73.89364,201.19797,0.00028710664 1743,617.47437,254.12883,21.672302,85.12575,0.00023936384 1743,0.80130905,214.46918,12.958975,51.05951,0.00021268865 1743,618.03265,380.40216,21.114014,79.6142,0.00015354253 1743,1.0713811,240.6005,18.1925,76.62311,0.0001275316 1743,617.87976,322.75418,21.266907,78.25653,0.00010437396 1743,601.98395,223.5898,37.16272,187.49995,7.145819e-05 1743,5.670176,247.03313,75.72187,214.1775,6.525682e-05 1743,599.5738,5.9603453,39.572876,168.56677,3.3268065e-05 1743,571.1768,71.19892,66.990906,238.15002,3.3004453e-05 1743,1.6990414,89.29166,29.02277,153.37619,2.5648409e-05 1743,609.65424,440.19266,29.492432,64.05731,2.0015696e-05 1743,1.2242985,169.24815,18.056807,73.21838,1.869226e-05 1743,1.7862215,217.75648,32.507107,172.47221,1.6605689e-05 1743,0.8962362,362.355,19.678658,132.57974,1.21822695e-05 1743,0.6603373,419.92557,13.54342,46.803925,7.346501e-06 1743,0.592994,375.33734,14.096724,49.952606,7.2328526e-06 1743,585.8495,390.9747,53.29718,102.42386,6.174067e-06 1743,1.1799601,303.73752,18.389103,72.60657,3.9713887e-06 1743,2.8047967,390.33167,56.02639,102.72235,9.099823e-07 1743,1.9747201,18.26487,57.357597,119.97886,7.56569e-07 1743,579.8848,0.67905277,44.878235,55.05098,2.5748184e-07 1743,0.85661626,29.451908,15.952975,134.35936,1.7106217e-07 1743,0.54873824,8.2684965,9.198355,90.55154,1.3625862e-07 1743,523.89813,2.8448682,43.514893,45.164173,1.15954826e-07 1743,1.1110091,7.418063,29.27781,57.147747,3.2576004e-08 1744,204.79951,231.5604,24.705185,68.47116,0.08010662 1744,341.14685,216.94415,39.069366,95.16632,0.038292676 1744,363.5464,216.57542,38.979156,80.8488,0.0012644633 1744,0.7724471,219.0981,13.734032,56.22252,0.0010177479 1744,608.97626,219.17906,29.587097,57.48256,0.0009859885 1744,385.06927,93.88937,41.433105,81.00511,0.0007291309 1744,395.204,204.41635,26.532745,55.082092,0.000705741 1744,616.8175,54.832333,22.329163,75.1871,0.00039542193 1744,4.774095,86.190125,74.23363,201.78586,0.00035066018 1744,223.96097,416.5125,25.574875,48.638855,0.00034474762 1744,1.27042,198.13652,20.49535,132.47658,0.00028186996 1744,610.2518,129.61778,28.883972,129.61739,0.00027583304 1744,90.9328,272.22852,33.963257,78.21362,0.00023696125 1744,339.81317,412.11703,22.181763,45.062103,0.00021144345 1744,617.55206,255.66248,21.594604,83.23868,0.00021094597 1744,618.10675,386.92084,21.039917,80.14319,0.00020872988 1744,347.96964,186.29597,75.93744,164.046,0.00018180697 1744,198.09064,226.2428,56.06671,140.37537,0.00012920311 1744,617.89014,329.56964,21.25653,78.46301,0.00011688325 1744,601.7277,187.12558,37.418945,174.05624,0.00010147946 1744,34.917297,247.53021,33.06344,76.40469,5.6351648e-05 1744,5.318275,246.99387,75.84516,218.20734,5.477072e-05 1744,1.4235971,84.0421,29.502382,163.04483,4.0252748e-05 1744,598.8417,2.8148699,40.304993,164.4258,3.3849567e-05 1744,0.8435938,362.44846,13.761036,48.124634,2.980703e-05 1744,602.0637,286.77634,37.082947,185.68582,2.6056487e-05 1744,609.72485,438.79532,29.421814,65.42343,2.3550268e-05 1744,347.27832,419.58014,73.07327,76.78726,2.1441496e-05 1744,1.2995452,336.32825,20.37862,131.00525,1.7406865e-05 1744,1.367063,254.03116,32.098,170.53598,1.5969184e-05 1744,0.62789065,419.2817,13.561278,47.018402,6.7946103e-06 1744,0.5150444,390.05215,13.955414,49.769745,5.471487e-06 1744,1.1591252,303.54663,18.42886,74.56152,4.789989e-06 1744,1.3603988,17.493204,58.333797,122.9457,2.7608032e-06 1744,0.89605224,443.08694,21.68934,60.34134,1.6209075e-06 1744,2.6716602,387.25034,56.084305,104.68442,1.1631838e-06 1744,0.89105797,31.900124,16.992006,131.21747,1.138638e-06 1744,579.905,0.77888024,44.988464,53.86349,2.9589043e-07 1744,1.040962,7.4005146,29.461369,58.03689,2.246164e-08 1745,614.2345,234.101,24.470154,56.79805,3.0478406 1745,210.80858,222.84917,33.422134,87.8141,0.024649149 1745,345.15,212.49026,46.384003,119.890015,0.0049125394 1745,333.268,414.4651,24.451508,45.68341,0.0026519205 1745,601.6424,151.81876,37.28766,174.41983,0.0012745726 1745,615.7748,80.93105,23.371887,92.11265,0.0007603967 1745,601.0838,221.89912,24.885254,55.92711,0.00068435795 1745,1.0314225,226.35722,18.602528,82.53786,0.0005859494 1745,125.15559,277.6502,39.020042,78.446655,0.0005601443 1745,618.0599,386.49304,21.086792,80.0018,0.00021095964 1745,196.25406,204.86763,72.76312,156.24239,0.00019533056 1745,617.2747,148.38948,21.871948,79.12537,0.00018616844 1745,617.5209,277.57635,21.625793,89.232574,0.00012293954 1745,349.1285,416.681,71.895935,80.05032,0.0001219085 1745,42.09821,246.87286,34.061924,76.16699,0.000114493174 1745,617.85944,329.96277,21.287231,77.64728,9.385362e-05 1745,1.2205583,185.37756,18.084236,70.70126,8.197348e-05 1745,5.209554,242.49173,77.00893,221.6979,5.289857e-05 1745,1.7953678,215.52771,32.60753,172.04523,4.614635e-05 1745,588.0226,255.4275,51.124084,220.39839,2.9622384e-05 1745,1.7660775,90.962616,28.04457,149.53786,2.6177386e-05 1745,594.3422,0.0,44.804443,99.90691,2.4326491e-05 1745,609.6918,439.36877,29.454895,64.79349,2.1951724e-05 1745,1.0351685,275.79816,18.381271,79.908325,1.6211896e-05 1745,0.8123511,362.7885,19.878206,132.58447,1.00939e-05 1745,0.68701375,362.97678,13.823954,48.772552,8.298788e-06 1745,0.6214038,419.48685,13.587375,46.93567,7.693886e-06 1745,2.8331869,67.462906,59.119846,249.3011,1.5729863e-06 1745,2.8349073,391.109,56.044952,101.957,8.382287e-07 1745,2.2049627,19.887302,56.56987,118.66588,5.7570134e-07 1745,523.6787,3.1178224,43.14496,46.81357,1.1111626e-07 1745,0.9404989,30.96207,16.35206,134.97208,1.03831255e-07 1745,573.22345,0.7993669,43.79004,50.825123,2.8690705e-08 1746,216.78534,227.9501,26.684433,68.69003,0.8522731 1746,345.91376,214.06493,45.53067,113.68773,0.054322265 1746,369.26938,226.41711,27.012787,60.47455,0.004699127 1746,210.67284,266.85345,28.946045,58.03781,0.0012330082 1746,617.57654,272.27438,21.57013,80.78494,0.0008059468 1746,616.4789,61.788113,22.667786,78.16075,0.0006309963 1746,1.0471119,216.27296,17.947958,83.58217,0.0002839683 1746,588.80597,259.09003,49.90558,206.29263,0.0002816295 1746,150.47043,270.72052,27.126144,52.009216,0.00025375673 1746,195.45746,210.10782,73.3515,183.89294,0.0002260587 1746,618.0486,379.1622,21.098083,81.6915,0.0001784831 1746,135.42587,266.28302,24.736664,54.376373,0.00016028844 1746,617.2162,123.70426,21.930481,81.33193,0.0001539356 1746,611.33417,201.72968,27.592163,118.828674,0.0001327812 1746,617.87537,324.75473,21.271301,77.080414,0.00011368823 1746,325.49716,185.34584,102.700745,219.68431,0.00010355796 1746,599.893,85.23513,38.92383,199.12402,9.4176394e-05 1746,1.5783277,178.2124,17.604418,71.44794,9.3721326e-05 1746,362.34122,393.44275,25.530579,55.550232,8.983144e-05 1746,1.7521436,85.8765,28.103098,153.30685,5.154344e-05 1746,0.89252365,272.1484,18.17292,73.51904,3.3635577e-05 1746,594.5555,0.0,44.591187,100.15392,2.9489232e-05 1746,609.7019,438.81323,29.444763,65.63168,2.436615e-05 1746,4.90433,113.31641,77.78652,272.57526,2.2401042e-05 1746,1.9309514,213.30856,34.074688,172.36115,2.025994e-05 1746,0.8962329,316.14145,20.091496,132.05194,1.2174057e-05 1746,3.2722836,268.27502,55.89135,203.92065,1.1383086e-05 1746,0.7832821,344.17654,13.3915615,46.297516,8.694352e-06 1746,0.66848594,426.3774,13.468595,45.98645,7.2261237e-06 1746,1.8428808,16.133053,57.698643,125.09633,3.1110371e-06 1746,0.9426644,406.08517,26.358381,92.27582,1.8112111e-06 1746,0.94984055,28.720821,16.892473,136.58968,4.4848835e-07 1746,1.1860889,7.0651827,29.966074,58.227962,4.7102567e-08 1747,225.0845,226.57664,33.1976,72.93236,0.09324898 1747,338.26025,231.03212,39.01068,87.60585,0.0062819673 1747,1.3324187,201.63963,19.648989,93.17641,0.0057519525 1747,352.7234,352.78867,30.371368,66.656555,0.0034471315 1747,397.75067,194.46986,36.012634,68.32332,0.0013244582 1747,617.1811,242.68896,21.965576,87.523346,0.00095828425 1747,615.2209,174.58249,23.742065,87.54782,0.00084502343 1747,616.837,58.67478,22.309692,79.58514,0.00039499224 1747,0.63585085,223.41605,11.730249,45.39148,0.00033477467 1747,2.2838185,174.76845,43.0829,143.21947,0.0002787578 1747,618.0605,379.65744,21.086182,81.11163,0.0002725841 1747,606.2047,0.15311198,32.941956,66.53037,0.00020935028 1747,161.5624,268.78284,25.397736,58.894073,0.00019011096 1747,335.98862,190.42963,72.299805,182.26105,0.00018222583 1747,617.12805,125.41183,22.018616,80.32191,0.00012864835 1747,588.6976,99.888,49.237793,202.52997,0.00011611155 1747,617.8603,308.7397,21.286377,79.62845,8.837214e-05 1747,1.4631836,84.30059,28.57887,166.60712,6.769947e-05 1747,0.90341395,253.16656,18.55116,80.53635,6.2607294e-05 1747,217.64996,271.04178,28.598816,46.755157,5.9544527e-05 1747,5.4568396,114.33852,74.10101,263.0229,5.459071e-05 1747,602.43567,301.7733,36.711,180.14255,3.537452e-05 1747,609.79376,437.70895,29.352905,67.17346,2.4048582e-05 1747,1.2013216,264.69226,31.731434,186.59988,2.0031544e-05 1747,0.7721704,406.61856,18.06021,70.345215,9.741112e-06 1747,1.159978,327.0695,18.291792,73.53433,7.69801e-06 1747,87.913506,182.74867,73.31278,179.65755,6.472441e-06 1747,1.812155,19.243477,57.44252,122.50623,2.4383157e-06 1747,565.142,0.0,74.00464,167.42186,2.2513645e-06 1747,0.797439,43.40467,17.589579,126.218056,1.8181128e-06 1747,5.7741833,352.8462,78.21418,133.85034,1.2361922e-06 1747,2.795246,429.486,52.971485,69.43204,4.06293e-07 1747,506.33557,4.89327,40.810974,48.111088,3.3416157e-07 1747,580.03186,0.4842399,44.77948,51.59072,2.4738372e-07 1747,531.17365,3.14563,43.35254,47.88018,1.0100168e-07 1747,0.9281429,7.731592,30.078272,58.841858,2.4920451e-08 1748,335.6106,220.7273,41.379883,97.81323,0.28625923 1748,19.429787,245.22037,22.129139,53.311188,0.14547588 1748,8.508014,247.66693,19.379208,53.825104,0.05284741 1748,5.2725506,212.45532,39.447403,106.810455,0.029377338 1748,123.38992,265.07047,35.546494,79.26517,0.02582752 1748,354.68488,224.65308,29.31189,54.268646,0.004873846 1748,1.3284367,240.26514,13.909913,61.702423,0.0043769507 1748,615.4101,189.89932,23.736572,83.75174,0.0026090676 1748,260.5282,349.06808,25.897888,47.163116,0.0018134972 1748,1.1081632,181.21451,19.294422,102.127594,0.00069628545 1748,230.57767,223.78532,23.544998,55.673965,0.0005630021 1748,352.06564,344.71478,24.738068,57.644226,0.00046141073 1748,622.49615,131.63277,16.650513,50.0605,0.00036048735 1748,566.1189,221.81334,21.50409,46.489,0.00032280746 1748,618.0123,377.80655,21.134338,78.95657,0.00028904734 1748,336.761,332.6218,40.24225,124.27811,0.0002662291 1748,227.01883,337.1286,32.384674,69.18817,0.00024953546 1748,4.528252,119.7555,72.94195,265.3478,0.00021420333 1748,341.29605,192.43411,71.22333,181.33041,0.00019123164 1748,617.1307,77.733536,22.015991,84.21159,0.000121766985 1748,617.7677,269.4457,21.378967,83.69821,9.459162e-05 1748,588.91003,101.58101,49.68335,208.77046,9.095954e-05 1748,606.86914,1.6217839,32.277527,63.967136,8.789355e-05 1748,609.73267,436.08072,29.414001,67.469086,6.560218e-05 1748,1.5206885,248.62334,18.22076,151.00224,4.2965035e-05 1748,602.7926,223.14993,36.354065,206.55487,2.6297439e-05 1748,586.19977,4.4140368,52.9469,129.05197,2.267539e-05 1748,3.2188315,267.271,55.19867,205.0813,1.29874625e-05 1748,573.3244,365.28262,65.822266,121.527374,1.10511455e-05 1748,0.70196944,330.6567,20.097816,140.43277,8.174429e-06 1748,0.6108842,412.80627,13.642935,46.986755,6.1164706e-06 1748,1.2729582,47.718483,31.597212,204.65857,4.5538795e-06 1748,1.0172176,443.52005,21.710993,59.969482,1.7243647e-06 1748,2.0302637,17.26966,56.462345,121.50053,4.6333432e-07 1748,2.8654866,428.60294,52.75707,70.290344,2.9707343e-07 1748,580.0184,2.2446404,44.706055,53.224808,2.4826528e-07 1748,0.80875003,26.603745,16.11641,140.9806,2.4305692e-07 1748,1.0749968,7.191003,29.999538,59.273964,2.6247045e-08 1749,333.39426,223.6066,39.944427,89.14041,0.17552468 1749,1.3326205,234.24298,14.000531,63.321075,0.025248868 1749,350.3332,337.55142,34.932373,69.1597,0.0062879305 1749,122.967804,262.19284,33.7968,80.72159,0.0062415116 1749,165.44228,266.16592,26.418518,67.62732,0.0044443095 1749,1.9049854,188.58914,33.853394,119.77347,0.0019394566 1749,256.51575,348.73346,24.765015,47.57315,0.00076539646 1749,617.79675,128.4442,21.349915,76.51268,0.00036998114 1749,571.94617,212.96785,25.781433,55.25441,0.00033763982 1749,1.4535824,257.4467,18.65451,86.97598,0.00029075285 1749,616.53326,174.48984,22.613403,90.98334,0.000262825 1749,600.2391,98.43901,38.333862,178.78395,0.00024237529 1749,102.33742,223.4087,40.99539,108.95116,0.00023969596 1749,335.6423,190.79446,70.99536,182.53949,0.00023333203 1749,617.8909,377.2228,21.255737,80.34305,0.00019315524 1749,617.15356,77.705025,21.993103,83.044,0.00017244459 1749,617.88055,235.01915,21.266113,80.35634,0.00015304315 1749,220.78142,338.18106,32.438507,68.745575,0.00011249057 1749,617.9276,314.77716,21.219055,79.519775,8.872275e-05 1749,613.95624,419.64688,25.19043,83.03137,8.72842e-05 1749,1.0591707,69.168045,18.866238,136.86603,6.936727e-05 1749,213.20418,259.33517,35.1622,63.05374,5.9981845e-05 1749,602.59534,237.71487,36.55133,204.74597,5.0347473e-05 1749,2.8952003,198.6761,59.185944,202.14357,4.6184385e-05 1749,587.1509,16.788496,51.838806,110.56769,3.2499524e-05 1749,0.9000041,313.89276,18.896488,80.7887,9.901234e-06 1749,572.6428,360.47385,66.503845,128.66751,8.957413e-06 1749,0.65299034,426.67163,13.533844,45.979584,6.6033217e-06 1749,1.8210075,37.810066,60.166924,254.50928,6.2769673e-06 1749,1.4804021,310.73538,33.37137,173.99698,6.172819e-06 1749,0.5149284,379.50018,13.718639,46.190796,4.526066e-06 1749,3.462108,427.50974,60.10238,71.4946,2.5310007e-07 1749,1.6301807,9.572592,35.049667,86.966965,1.1507808e-08 1750,330.0734,214.6945,41.44159,106.097885,0.80857223 1750,122.49924,270.55765,24.53012,57.43857,0.00958703 1750,350.1657,339.7835,31.401825,66.60553,0.0058271587 1750,622.4512,151.75278,16.695496,47.471603,0.0021233428 1750,1.0210612,220.5566,24.827244,83.85567,0.0018158352 1750,158.62532,263.57153,32.527924,75.252106,0.0014844354 1750,1.5685376,180.83899,25.227604,73.81229,0.00075412396 1750,617.96545,237.7793,21.181213,79.46869,0.00063173636 1750,95.47445,240.91696,34.95231,70.62271,0.0004878355 1750,307.61325,199.65495,91.42517,183.4345,0.00032701157 1750,617.35394,177.71318,21.792725,83.49477,0.00029666704 1750,611.91693,94.181526,27.229736,106.39605,0.00027095334 1750,102.079124,188.60097,28.324394,55.488907,0.00024105996 1750,617.9937,382.0536,21.152954,79.02948,0.00013908609 1750,573.6909,62.200016,64.441345,228.09134,0.00011610369 1750,219.55714,338.23553,33.332672,71.04263,0.000100633886 1750,1.075188,162.60448,13.702107,54.783966,9.9132114e-05 1750,617.8039,322.38208,21.342773,78.33884,8.7001885e-05 1750,1.6916912,102.1423,33.25304,199.81302,6.472799e-05 1750,596.8229,14.035899,42.18622,78.29447,6.452848e-05 1750,212.59808,256.07596,35.828506,66.45618,5.2416435e-05 1750,0.8767733,276.0644,13.655858,51.852234,5.029953e-05 1750,4.9660387,129.5384,75.733604,255.16481,4.386621e-05 1750,602.31,190.05957,36.83667,185.4769,3.079247e-05 1750,1.0216203,266.29803,18.454231,135.72858,2.6683863e-05 1750,386.55594,123.462845,73.22943,172.77342,2.4590629e-05 1750,1.0921477,84.51071,18.348309,71.892105,2.377172e-05 1750,609.78394,440.9396,29.362732,62.528442,2.268443e-05 1750,0.89849734,333.83243,13.885454,50.224976,1.3810876e-05 1750,3.2286704,289.42224,55.105976,186.12735,1.1147256e-05 1750,587.7557,327.56424,51.39099,157.86844,8.844416e-06 1750,0.6363835,356.30304,18.473387,74.38666,6.419427e-06 1750,0.68817794,399.2569,18.198584,71.39166,6.4043716e-06 1750,0.97131836,443.4108,21.959953,59.399933,1.6258493e-06 1750,2.2941961,23.053682,55.868057,107.84122,5.002314e-07 1750,2.8876433,428.5882,53.391617,70.16516,3.503707e-07 1750,1.2019255,5.5982,29.893888,61.41339,7.740933e-09 1751,329.47244,202.9712,41.53421,107.1747,0.29527515 1751,343.69382,346.79684,27.073914,51.874786,0.0037215904 1751,607.9661,114.109726,31.125122,148.39247,0.0032174718 1751,211.29408,238.26828,26.62436,53.513184,0.0029464727 1751,93.214714,249.30058,25.399796,55.44969,0.0017678533 1751,620.26886,145.96666,18.877808,68.24596,0.001619413 1751,1.1638672,183.59334,26.116638,82.869064,0.0011174413 1751,151.53214,257.9445,34.62491,75.20285,0.00052771927 1751,205.61638,203.27373,43.179565,134.87682,0.00034253323 1751,360.28766,348.18738,21.766998,46.79184,0.00034234935 1751,615.291,217.26207,23.855652,86.44679,0.0003384729 1751,305.9863,185.4253,96.24527,188.10461,0.0002467445 1751,617.91046,92.889885,21.236206,79.761284,0.00022142858 1751,1.426207,248.88516,17.389643,68.295135,0.00020390365 1751,212.90237,337.42413,33.18651,72.33035,0.0001866196 1751,617.95013,369.37088,21.196533,79.758545,0.00014612007 1751,617.83655,307.90955,21.31012,79.88574,0.0001171007 1751,2.910713,164.67741,47.50348,169.61467,9.5953576e-05 1751,610.3513,15.526378,28.79535,102.380844,5.99421e-05 1751,1.1649544,137.40569,19.111584,85.73828,4.0818304e-05 1751,602.2133,257.66827,36.93335,199.71555,3.3509685e-05 1751,614.06384,417.03177,25.082825,85.463776,2.799989e-05 1751,574.1629,104.51124,64.983765,244.53146,2.6360362e-05 1751,567.7391,26.007156,70.93866,125.32652,2.2041426e-05 1751,5.212767,226.3849,76.201744,229.9727,1.8184532e-05 1751,0.714021,305.4735,20.17001,138.31036,1.2114469e-05 1751,0.61875325,357.45615,13.863203,48.18335,7.837392e-06 1751,0.7672762,405.91547,18.06937,70.73648,7.510999e-06 1751,572.69116,360.71808,66.455505,128.93896,7.2981784e-06 1751,1.5577409,48.82465,31.090384,204.09865,4.176436e-06 1751,2.187409,22.015287,56.19684,102.152016,1.0722827e-06 1751,3.044406,396.57675,56.393425,96.629974,6.733443e-07 1751,0.9780005,21.636543,16.43473,116.83358,2.9884774e-07 1751,1.1166992,7.5594954,29.622936,61.204994,5.5315862e-08 1752,338.42352,212.87167,37.700592,87.21814,0.07835515 1752,217.0734,243.62198,21.98729,45.25345,0.010749829 1752,82.356,255.09344,24.434044,49.76715,0.0029696862 1752,612.2681,84.69054,26.87854,98.18402,0.0016129579 1752,1.270175,217.22592,17.696838,81.99902,0.0013253995 1752,153.0687,260.14545,35.71814,76.569305,0.0008785402 1752,200.59622,254.30899,33.852585,70.41995,0.00057303574 1752,330.93497,193.26935,76.910126,171.31686,0.00029617653 1752,620.97394,65.77107,18.17273,56.299088,0.00021076096 1752,0.60917723,272.65756,18.259459,76.136566,0.00015895357 1752,618.1128,402.811,21.033875,76.4801,0.00015257302 1752,1.3199227,168.18935,18.32622,75.46524,0.00015142352 1752,359.65268,368.01315,24.113281,53.852386,0.00014517416 1752,612.7495,152.70558,26.397156,111.83467,0.000103028775 1752,2.4246778,161.6328,34.060303,169.38234,9.8633995e-05 1752,617.67395,225.15053,21.472717,79.82454,9.845976e-05 1752,617.7934,301.79327,21.353271,78.00687,9.0870926e-05 1752,204.49297,207.94196,56.17363,138.62451,8.9229674e-05 1752,4.52307,120.674614,75.97348,256.92343,5.3182695e-05 1752,607.36346,2.5418947,31.783203,62.390373,4.4011027e-05 1752,602.2434,265.69373,36.90326,182.01541,2.3231149e-05 1752,587.3373,84.95849,51.809387,215.73969,1.4292614e-05 1752,1.000695,283.05115,28.533525,156.75626,1.3774861e-05 1752,586.99927,11.450039,52.087097,117.364624,1.3740511e-05 1752,394.4356,92.19034,76.30356,193.69305,1.3337932e-05 1752,0.6639657,75.63838,18.487305,85.37816,8.426661e-06 1752,5.1280665,272.47742,77.59328,198.93103,7.899947e-06 1752,0.59543824,419.82632,13.683182,46.22003,7.124576e-06 1752,572.59247,361.59033,66.5542,127.34415,6.1084493e-06 1752,0.5849121,364.89673,13.733887,46.981506,5.057355e-06 1752,0.6278296,367.48737,20.110712,128.47998,3.961735e-06 1752,1.2961702,457.29242,28.333687,47.152496,1.3739576e-06 1752,2.9515903,395.89755,56.432407,97.56204,5.587557e-07 1752,2.2818296,22.428001,55.80114,101.95737,4.579555e-07 1752,0.49444622,8.563819,8.473081,90.44239,3.87479e-07 1752,1.114235,7.47056,29.688608,58.05304,2.9733746e-08 1753,123.20094,257.65857,21.746399,48.57721,0.06377818 1753,610.8901,259.34103,23.127625,48.666534,0.006445708 1753,347.355,210.4628,42.40451,129.56442,0.0027068448 1753,1.7394198,247.0862,18.61823,72.6714,0.0010203688 1753,101.87095,254.36035,25.254135,53.86139,0.000926334 1753,157.1261,265.37228,34.641876,79.67636,0.0006827373 1753,615.5858,283.4584,23.560852,90.50372,0.00062342326 1753,117.941956,230.40686,39.701584,115.39307,0.00027626794 1753,618.0933,388.1151,21.053345,79.340485,0.00020110473 1753,618.19226,145.55414,20.954407,75.54509,0.00018581582 1753,81.618904,189.22922,27.996437,54.236313,0.00018481413 1753,370.269,217.46442,26.808899,55.88318,0.00018330666 1753,589.3855,265.45667,49.76117,208.28604,0.00017597959 1753,601.80914,214.82307,37.337524,133.42494,0.00015522478 1753,610.7105,60.398647,28.436157,141.71495,0.000122024474 1753,1.8131071,208.20512,35.62159,163.19914,6.758432e-05 1753,1.1627133,140.76562,19.998262,148.35513,5.1930318e-05 1753,597.03925,5.0753484,42.032043,87.08622,4.4940916e-05 1753,609.7684,440.04553,29.378296,63.578766,2.5677142e-05 1753,1.0477165,288.84158,20.090803,147.26599,2.4867257e-05 1753,401.10437,97.97416,77.03128,197.16833,1.707191e-05 1753,2.590197,288.29727,55.474457,190.2944,1.5763178e-05 1753,0.87899417,333.67072,14.058474,49.655457,1.4028139e-05 1753,4.376735,128.33273,78.24754,271.18588,1.1018144e-05 1753,0.6640621,426.9334,13.51571,45.92624,6.214296e-06 1753,0.65899414,385.40445,18.328854,72.23993,4.8768384e-06 1753,0.9491244,442.9969,22.098415,60.093903,1.7352988e-06 1753,1.2398958,47.98506,27.844933,143.15015,1.4831901e-06 1753,1.2252263,10.902627,35.87318,82.36591,5.563693e-07 1753,2.8050652,427.60193,53.134586,71.11798,3.6825494e-07 1754,333.61664,417.02173,23.259796,47.342957,0.074217044 1754,159.24217,254.84543,42.748642,101.65161,0.02104823 1754,8.821835,227.88542,31.768517,75.54646,0.011215963 1754,147.0749,251.62102,27.699677,60.729324,0.011169515 1754,34.15669,242.81006,22.420216,51.61902,0.009157657 1754,233.87425,422.33453,26.73378,49.84424,0.0037871476 1754,468.65002,215.24977,21.983154,50.946365,0.0030886207 1754,608.2156,238.90565,30.215393,68.342575,0.002690154 1754,354.1193,207.22763,41.51425,129.72809,0.0019694946 1754,23.38763,210.11061,42.01958,104.339645,0.0018530178 1754,543.0412,221.69041,33.83014,72.56856,0.0013874212 1754,561.3975,235.67018,26.509644,54.385178,0.00044546145 1754,612.0922,270.15735,27.054443,153.15479,0.0003471971 1754,1.881797,199.1587,20.040878,120.25203,0.00021544115 1754,621.5699,72.217094,17.576782,53.756775,0.00019809701 1754,617.9768,387.94528,21.16986,79.25879,0.0001578362 1754,362.4978,417.61624,71.45755,78.23154,9.576379e-05 1754,610.61316,61.468746,28.533508,136.80273,8.7506574e-05 1754,587.2293,166.08157,51.766235,199.22916,5.375512e-05 1754,0.6514901,298.38507,13.793603,50.42453,4.7436697e-05 1754,6.9848113,183.97987,97.74512,201.96175,4.4744575e-05 1754,1.7139584,94.1243,33.833107,212.00046,2.8250675e-05 1754,609.6945,440.1246,29.452148,63.778015,2.2738623e-05 1754,1.5440227,231.48537,32.83387,189.13933,2.1884753e-05 1754,600.66974,4.8004007,38.47693,66.917404,1.9803496e-05 1754,1.1254623,145.63818,18.305439,76.87138,1.4174371e-05 1754,161.60803,420.17438,68.83247,76.49658,1.2132321e-05 1754,587.7901,330.5025,51.356567,155.73547,1.095486e-05 1754,585.3774,18.308777,53.05011,248.70078,9.645453e-06 1754,0.7563021,392.14334,18.1869,72.63046,9.321026e-06 1754,528.6743,195.13338,87.09308,159.779,7.7496015e-06 1754,0.54036623,336.59265,18.487555,74.58563,3.712191e-06 1754,0.98963624,443.15338,21.79295,59.97574,2.1086173e-06 1754,0.72817385,49.302418,18.02619,146.61473,1.248545e-06 1754,5.8095837,355.89288,78.737785,131.22864,8.9922975e-07 1754,1.3172412,10.853259,35.97321,83.29382,4.2064613e-07 1754,3.0174806,429.135,52.79521,69.61459,3.6587662e-07 1755,66.074486,197.74136,25.51374,55.064117,0.14034832 1755,30.109442,246.71277,27.527311,54.003967,0.06573654 1755,43.542988,191.82162,46.746815,102.46243,0.023090927 1755,18.923754,259.9861,27.76898,55.435364,0.018919157 1755,185.48956,265.67673,36.347107,82.96265,0.009197301 1755,49.644035,197.71901,21.506058,50.379196,0.003862709 1755,23.304564,215.35013,46.580215,133.8829,0.0025204017 1755,462.98178,217.18819,22.557922,51.86171,0.0010075786 1755,2.1006982,254.54105,38.13039,114.82718,0.00067062234 1755,335.28683,203.47084,74.18646,157.07759,0.0005781009 1755,2.7865722,270.17282,73.64982,199.11813,0.00040057316 1755,613.33075,264.02002,25.815918,126.6149,0.00032797162 1755,1.5617286,305.13495,21.066856,152.31387,0.00028990977 1755,236.80334,409.2071,24.95224,50.65088,0.0002509157 1755,1.0463452,238.09097,19.32164,84.743866,0.0002141682 1755,618.0331,381.0214,21.113586,80.45819,0.00019680487 1755,616.8604,55.752254,22.286255,83.17566,0.00014674345 1755,509.83487,255.47894,22.975067,50.92148,0.0001384992 1755,182.94133,217.5923,76.052414,188.19322,0.00013321194 1755,618.0072,146.35612,21.139465,75.06085,0.00012789456 1755,597.3531,6.0404105,41.782288,85.97502,9.6647316e-05 1755,11.344945,147.42316,108.21757,212.9353,8.1975035e-05 1755,152.74722,235.1325,35.47322,69.652435,3.4360924e-05 1755,612.49255,172.33939,26.654114,138.21881,3.136269e-05 1755,0.4669991,414.0207,14.0151005,51.0336,2.5481111e-05 1755,609.68317,439.73132,29.463501,64.57681,2.5130217e-05 1755,406.57703,97.09972,81.30267,200.03053,2.3967534e-05 1755,599.24603,39.348896,39.900635,194.35176,2.1729813e-05 1755,602.2465,321.70636,36.900146,161.29611,1.6943062e-05 1755,1.4518938,170.81435,18.171711,71.96011,1.4893367e-05 1755,1.3460547,407.35977,34.63169,90.71112,8.663115e-06 1755,130.45537,183.01366,75.72185,170.20988,8.121187e-06 1755,1.8635026,103.4029,36.2925,211.94418,6.501493e-06 1755,1.1110401,121.47723,18.4613,78.72053,3.1481472e-06 1755,1.3035693,12.310599,35.83301,82.10494,4.5607092e-07 1755,0.53809,9.198597,9.710354,90.83632,4.196877e-07 1755,0.7056372,26.576212,16.924458,138.63725,1.9853023e-07 1756,198.76598,263.12247,32.21054,67.58276,0.14964838 1756,335.98218,224.12215,47.09024,107.685074,0.059693016 1756,64.42746,254.60954,38.80033,76.08583,0.015367035 1756,623.0643,246.15909,16.082397,47.18866,0.0022823687 1756,85.85071,235.18347,24.972054,55.08731,0.0008227711 1756,518.26263,241.18553,24.761475,45.20546,0.00053983094 1756,184.8287,208.86888,71.93732,186.8907,0.00032396027 1756,1.3876555,193.96887,18.504179,69.718475,0.00032327973 1756,1.5264331,223.25076,32.2203,193.44476,0.0002528318 1756,344.07825,197.35316,81.47348,164.85081,0.00022239913 1756,618.0303,381.56186,21.116394,79.80405,0.00020468101 1756,617.30725,121.18948,21.839417,81.33594,0.00019525364 1756,617.69086,273.07645,21.45581,78.410034,0.00016974549 1756,0.99698323,276.05508,19.202166,86.191956,0.00015972414 1756,611.22986,175.73323,27.91681,126.90413,0.00014969023 1756,78.71223,211.68459,42.585304,124.69652,0.00013097945 1756,616.9596,56.5797,22.187073,86.80917,8.865966e-05 1756,617.8221,337.3718,21.324585,76.75653,8.2549464e-05 1756,1.1083366,329.5566,19.795355,86.15927,6.617228e-05 1756,587.7624,244.44058,50.977173,223.7073,5.1836407e-05 1756,425.17505,83.34321,74.64111,215.35712,3.4006305e-05 1756,599.6938,43.727158,39.45288,190.88213,2.9916157e-05 1756,597.1014,7.6331806,41.949768,84.82507,2.7499831e-05 1756,3.881237,250.17323,80.71022,220.7487,2.5033722e-05 1756,609.832,440.03012,29.314697,63.797638,2.2354263e-05 1756,1.6604623,86.99397,32.49737,197.01796,2.028577e-05 1756,1.0281087,384.94513,18.230474,78.30435,1.35728815e-05 1756,0.99928224,442.9428,21.870312,60.42276,2.1170235e-06 1756,3.0809815,387.07202,55.682312,105.89282,1.8733122e-06 1756,0.77741456,54.497417,18.399572,150.4245,9.783375e-07 1756,2.1303647,20.376253,55.86981,104.44408,2.890218e-07 1756,0.5618172,9.093344,9.486888,87.62155,2.3163125e-07 1756,0.9500635,8.484976,30.00939,55.165504,6.3333886e-08 1757,202.03716,250.3342,33.00746,66.02017,0.34324357 1757,58.902176,196.65253,27.089424,46.86493,0.21175575 1757,332.05127,225.33302,46.239746,109.22197,0.018422704 1757,242.0656,391.1447,27.020645,55.99057,0.007743739 1757,6.8593965,241.42754,63.642258,176.84306,0.0057798293 1757,0.97829956,233.2367,13.237619,53.237213,0.004846991 1757,358.50162,206.90907,43.96457,131.19804,0.0012563332 1757,1.4817253,218.57079,20.126324,141.56505,0.00091328257 1757,78.422165,242.67267,37.197945,80.31619,0.0008796669 1757,1.2862753,331.5161,18.636585,79.86218,0.0007226809 1757,1.3319906,284.8318,33.86969,179.22641,0.00040235044 1757,618.03906,387.98273,21.107605,78.94452,0.00022924841 1757,617.55774,136.88321,21.588928,78.04283,0.00022052157 1757,190.87123,211.19302,72.45204,182.74728,0.00021088481 1757,621.0552,77.788994,18.091492,56.378883,0.00020871953 1757,617.6313,200.41393,21.51538,77.646805,0.00020187204 1757,617.8779,253.59552,21.268738,77.092255,0.00013627528 1757,330.3086,192.56535,105.13043,211.99641,0.00011517457 1757,617.78424,296.39746,21.362427,77.46896,9.588067e-05 1757,600.78094,113.64615,38.184204,174.34464,8.612157e-05 1757,25.637049,313.42426,34.22834,77.738495,6.0004044e-05 1757,609.5196,38.777233,29.627075,139.62157,5.1332358e-05 1757,602.14594,248.8799,37.000732,193.58788,5.084893e-05 1757,3.932803,116.3616,74.46561,213.781,3.64415e-05 1757,0.7921452,391.58844,18.451979,78.87491,3.494706e-05 1757,596.7915,3.7904983,42.355164,90.02679,3.2257863e-05 1757,609.6628,440.10406,29.483887,63.69583,2.4467581e-05 1757,3.0873032,376.48114,55.99366,114.57059,2.0210537e-05 1757,1.5303206,150.19502,29.734615,151.22719,2.0208417e-05 1757,585.72235,392.22455,53.424316,101.07568,7.940735e-06 1757,0.84398925,82.49143,19.365301,155.02075,7.503725e-06 1757,1.1091146,26.112585,27.723862,130.4036,2.7355787e-07 1757,0.8539909,8.137199,29.729803,56.68714,4.2331326e-08 1758,66.11296,196.39908,26.713776,50.48004,0.16842265 1758,96.08418,202.17293,37.980606,68.241135,0.07105789 1758,335.2092,227.78932,48.662567,104.54527,0.056411665 1758,202.3733,249.46071,32.19774,73.813614,0.03399022 1758,230.56253,415.49524,27.38623,50.434723,0.012578003 1758,363.32687,212.00967,39.677734,96.65405,0.0029985623 1758,0.7316195,239.86168,19.21177,85.571,0.0028427686 1758,66.90533,202.20901,43.692413,128.07144,0.0014729173 1758,518.00305,240.70215,25.326782,47.05478,0.0006452032 1758,352.66876,405.20453,22.281097,46.365417,0.00048690126 1758,0.98920536,215.1714,13.178498,49.025223,0.00048328267 1758,1.8394076,185.33781,33.69369,175.70802,0.00041758176 1758,617.5621,214.5126,21.584595,75.04004,0.0002889029 1758,609.8666,63.92937,29.28009,134.25209,0.00022876181 1758,618.0961,382.10886,21.050537,79.457306,0.00018465171 1758,336.5096,185.61417,106.523926,218.48856,0.00014964625 1758,617.87994,274.13562,21.266724,79.17636,0.00014075995 1758,180.80206,219.52016,71.77159,179.61003,0.00014051425 1758,3.688187,253.29053,77.932205,208.69177,0.00013003529 1758,617.7318,324.4702,21.414856,76.26276,0.000103931154 1758,79.88933,199.54425,74.52571,164.3099,0.000101876154 1758,602.20233,128.81003,36.492493,151.62708,8.762724e-05 1758,45.96077,246.51839,50.812836,142.2949,8.133074e-05 1758,602.1445,259.56094,37.002197,187.60913,6.9368725e-05 1758,0.75690675,280.12485,19.915865,135.06137,5.138565e-05 1758,596.7103,6.0036297,42.43634,85.94862,4.896001e-05 1758,520.7485,154.46451,26.817566,51.72473,3.7947517e-05 1758,418.9828,89.62317,76.95352,203.66516,3.0864034e-05 1758,609.79333,439.99234,29.353333,64.152405,2.6218559e-05 1758,0.8478671,372.73804,18.578318,78.48218,1.8892626e-05 1758,0.9803467,79.03967,19.243572,144.16408,1.7116186e-05 1758,0.668571,419.94046,13.598669,46.9718,8.603292e-06 1758,586.0876,392.87283,53.059082,101.07172,8.015955e-06 1758,3.268724,380.69583,55.2495,111.78409,3.4439588e-06 1758,1.1112524,443.12366,21.864794,59.657806,2.7440565e-06 1758,1.3651156,11.461907,35.581776,80.72978,2.7207955e-07 1758,2.4032536,26.676914,59.623062,267.51242,2.621849e-07 1759,61.313206,205.25568,30.282658,58.983246,2.2136972 1759,207.8635,247.38329,33.394608,62.55443,0.32372108 1759,48.733467,198.96039,49.16974,132.77957,0.13915627 1759,81.37984,211.57634,33.22307,73.44661,0.013619157 1759,622.3456,238.7839,16.801086,49.238068,0.0011939349 1759,0.9900114,248.62447,18.444609,76.48967,0.00068779284 1759,194.15366,237.57008,56.1427,128.65733,0.00062602316 1759,483.54385,237.196,22.610626,50.71678,0.00056244555 1759,618.07025,395.0952,21.076416,78.1774,0.00019719942 1759,345.1909,192.08888,71.768036,161.2376,0.00017166616 1759,612.04565,181.60359,27.101013,106.14543,0.00017095923 1759,617.92114,274.1875,21.225525,78.36902,0.00016851802 1759,3.1015854,185.11736,49.225674,174.32283,0.00015909476 1759,609.3843,70.67789,29.76239,135.9541,0.00013588776 1759,181.06683,212.73747,111.2861,228.56328,0.00010754153 1759,617.93616,343.546,21.21051,77.76013,9.956093e-05 1759,586.74615,92.35987,51.1521,218.52786,6.7851295e-05 1759,4.290596,239.78802,80.21023,225.2749,5.652518e-05 1759,1.1191252,190.28452,18.18597,73.63672,5.2911644e-05 1759,1.514803,272.36093,32.318855,171.59174,4.8543803e-05 1759,73.525444,191.24402,81.687035,180.93713,4.3047883e-05 1759,587.67535,214.70291,51.375366,210.71173,3.6308706e-05 1759,414.86108,110.35117,75.701935,189.35608,3.2752232e-05 1759,597.17474,5.266035,41.885803,86.77391,3.073573e-05 1759,609.78094,440.16147,29.365723,63.862915,2.485687e-05 1759,0.68501997,375.84482,14.208363,51.08014,1.988472e-05 1759,0.930507,367.8967,19.701231,128.67978,1.5771764e-05 1759,0.93393636,85.17334,19.050825,143.24355,1.0269648e-05 1759,573.03394,362.06982,66.11273,127.11435,6.5854615e-06 1759,0.6392737,404.41806,13.83865,50.48398,2.5223321e-06 1759,2.7570949,426.59012,53.19275,71.46521,4.7405968e-07 1759,1.6414828,12.347022,35.613796,79.278114,3.469783e-07 1759,2.2509735,21.086107,60.24029,279.39767,1.3322436e-07 1760,65.927414,206.23936,27.520905,51.582108,0.22042236 1760,52.53294,202.91821,47.325916,124.31177,0.09832105 1760,56.865723,267.28406,22.283958,45.07617,0.029491324 1760,106.99934,225.53835,26.625816,59.09575,0.010441874 1760,477.75397,229.86194,23.577515,50.826355,0.008120827 1760,215.81436,249.26039,24.901016,56.623642,0.0025414 1760,335.0882,399.4869,22.29779,45.67398,0.001656959 1760,517.9624,241.32715,27.141296,51.41565,0.0010794537 1760,198.81604,267.59338,35.941696,79.29028,0.0008161503 1760,243.13815,403.0533,25.566772,51.92981,0.00040637798 1760,84.16935,200.82524,42.91607,119.90962,0.0003203424 1760,584.5844,205.35066,24.696045,50.465485,0.00031536305 1760,548.5225,249.5916,24.494873,46.340286,0.000301917 1760,22.596693,198.95787,113.73511,224.71886,0.00023447233 1760,618.06244,273.81207,21.084229,77.73514,0.00022289257 1760,617.99036,382.8576,21.156311,78.114685,0.00021103008 1760,0.945424,228.80803,18.326664,81.41606,0.00021040789 1760,426.18365,95.069466,75.71146,199.82214,0.00020966957 1760,609.56696,69.7321,29.579712,135.5418,0.00017244426 1760,612.6104,176.28435,26.536255,104.26991,0.00016624783 1760,617.8433,236.70868,21.303345,69.24692,9.394137e-05 1760,181.06845,196.9226,111.80438,240.96213,8.08576e-05 1760,617.68195,324.89194,21.464722,75.63068,7.0456284e-05 1760,601.9952,258.39523,37.15149,188.62677,6.881563e-05 1760,586.13275,91.71398,51.588623,222.0513,6.589168e-05 1760,1.8666211,241.60011,27.909985,136.06529,6.466358e-05 1760,183.50186,235.29037,22.227356,48.682587,6.1999286e-05 1760,3.4985971,179.92967,57.96065,211.4705,5.4604243e-05 1760,597.11694,6.545563,41.98065,84.59639,4.9717833e-05 1760,609.70917,438.94125,29.4375,64.82434,2.6149042e-05 1760,2.0471697,311.55005,33.35737,170.7496,1.8724055e-05 1760,1.0784009,366.68704,18.525766,77.85785,1.6281216e-05 1760,0.7471883,83.47001,19.261398,153.51266,1.3393698e-05 1760,96.96937,199.14818,74.848854,159.92757,1.1219654e-05 1760,585.8061,392.95203,53.340576,100.33679,8.005978e-06 1760,2.7386084,425.18137,53.054153,72.42645,4.5269962e-07 1760,1.5790886,11.32724,35.156204,78.47243,1.9028263e-07 1761,60.042995,198.39261,44.176083,101.03168,0.14886212 1761,106.81209,223.06331,26.431396,56.87227,0.079182915 1761,206.8682,252.55022,37.789078,75.11568,0.010924035 1761,470.0369,227.37363,23.674011,57.450226,0.0020204142 1761,374.53513,378.9069,26.990234,60.610504,0.00058609137 1761,232.53313,221.4319,33.410294,70.92482,0.0002742283 1761,328.27005,202.03203,75.09064,179.91487,0.00023138027 1761,417.27548,118.96808,63.056244,167.9154,0.00019295343 1761,617.5636,212.6358,21.583069,78.88547,0.00017927807 1761,191.80647,206.68396,75.52229,189.55743,0.00017584219 1761,609.5768,69.52396,29.569885,135.23373,0.00016013243 1761,618.0508,382.1008,21.095886,79.179474,0.0001593067 1761,489.20642,235.25758,24.638184,50.43895,0.00015401065 1761,503.86844,237.47264,24.431427,49.587784,0.0001190795 1761,617.9174,337.03174,21.229248,76.84448,0.000110556946 1761,617.63666,273.50623,21.51001,80.644745,8.913374e-05 1761,436.33975,178.00687,21.750519,52.217148,8.8549124e-05 1761,601.33344,157.96417,37.813232,171.61517,6.371026e-05 1761,1.0381706,213.35532,13.615404,50.926178,5.9900733e-05 1761,0.971567,242.14415,13.538324,51.96254,5.8165067e-05 1761,1.5225489,209.84856,19.324438,130.99586,5.6163655e-05 1761,597.2212,7.1787696,41.745728,84.18579,4.322115e-05 1761,28.516804,156.02487,103.59833,234.11295,3.3856348e-05 1761,602.4062,267.9758,36.74048,187.45901,3.080375e-05 1761,3.5354168,213.27681,56.014618,211.43355,2.6045158e-05 1761,609.65814,440.1645,29.488525,63.997772,2.4199042e-05 1761,0.9808773,154.63261,13.61733,50.734024,2.1742333e-05 1761,0.98525065,355.7155,18.372374,75.465576,1.8167268e-05 1761,0.9409351,77.70478,18.912378,147.6441,1.7335495e-05 1761,1.8686393,321.14594,33.372967,160.64023,6.825121e-06 1761,585.78656,393.2059,53.360107,101.188385,6.712096e-06 1761,0.70560306,396.92538,18.212664,73.62097,5.9589183e-06 1761,2.822536,426.28177,52.773415,71.3837,4.37447e-07 1761,2.079336,22.352478,56.235916,100.78497,4.154015e-07 1761,0.55450195,9.65571,9.35565,89.25177,2.8216618e-07 1761,1.0572152,8.0443945,30.087383,58.1652,5.143217e-08 1762,68.71757,199.79314,26.074501,51.1828,0.0588822 1762,217.74939,247.50339,29.277176,63.87027,0.049174536 1762,450.91492,233.73886,23.434204,59.004883,0.041563142 1762,364.22006,357.4314,32.257538,65.472534,0.01899444 1762,0.8624146,240.57289,20.174868,91.733475,0.0089008575 1762,128.22935,225.17267,22.946274,47.87433,0.0037989758 1762,336.8617,236.10214,43.405304,100.78787,0.0021331662 1762,60.945927,215.93874,25.838543,61.07524,0.001052884 1762,621.95215,230.05612,17.194519,53.605988,0.00046382623 1762,77.63362,224.93344,40.891617,135.00497,0.00043346742 1762,428.2966,182.29562,41.65851,98.032074,0.00041790766 1762,436.1436,181.1293,21.713623,49.651382,0.00033055243 1762,618.04785,395.67645,21.098816,77.778656,0.00025700635 1762,609.6431,69.851555,29.50354,137.63617,0.00019822571 1762,617.56586,251.90146,21.58081,82.26077,0.0001362918 1762,1.328475,244.66983,33.07671,184.91333,0.00011463236 1762,1.2716666,174.75436,18.271317,78.25864,0.000108316475 1762,617.9711,337.02512,21.175537,77.209595,0.00010135585 1762,397.24817,116.22749,76.35043,184.02873,7.376422e-05 1762,4.1638412,152.81868,79.40907,264.7829,6.8737e-05 1762,602.5026,258.73068,36.644043,190.81491,5.0880557e-05 1762,600.5895,162.36493,38.55719,180.86636,4.7486577e-05 1762,597.3272,4.598545,41.759827,87.845505,4.2663138e-05 1762,609.7002,438.99997,29.446472,64.37274,2.9105948e-05 1762,1.3529216,94.575066,35.334175,208.41129,1.2395111e-05 1762,0.9138314,305.26703,18.251738,75.838196,1.1934537e-05 1762,0.8015796,348.56213,18.372192,76.596985,1.1714299e-05 1762,0.807557,405.79565,17.941929,71.243256,7.7488185e-06 1762,572.7715,362.68118,66.37518,125.93179,7.270266e-06 1762,0.7431242,60.384846,20.034246,114.87422,5.605814e-06 1762,6.6206317,348.27417,76.75352,135.18964,3.359242e-06 1762,2.7417188,427.91986,52.169415,69.49161,5.116859e-07 1762,2.3102767,22.962315,55.94241,101.56267,1.0873289e-07 1762,1.3385841,8.610236,29.311804,56.139,1.7544233e-08 1763,221.11832,248.59676,36.78656,62.413498,0.7445126 1763,64.16999,194.44733,27.677216,51.9169,0.033652212 1763,356.42392,343.6707,32.02841,63.220642,0.0066235196 1763,93.62229,228.63066,36.59292,75.17357,0.0062927175 1763,433.3698,210.94794,30.009247,67.43115,0.0058116755 1763,489.87003,222.62854,23.304535,45.398926,0.005661173 1763,448.63922,230.66417,23.717316,57.74431,0.0015545293 1763,470.43423,229.6772,26.474884,55.238846,0.0012780097 1763,134.75328,238.16454,24.02739,53.810043,0.0006434912 1763,332.55228,342.0836,23.021698,46.112274,0.00055468176 1763,419.96667,174.23268,56.68103,126.83687,0.00048770994 1763,0.9919442,219.6629,18.457602,75.37952,0.0004790455 1763,354.65326,204.73415,41.26831,128.58733,0.0003310695 1763,621.6384,79.62508,17.50824,54.374313,0.00030696028 1763,617.3994,243.52708,21.747253,82.24843,0.00028621865 1763,610.0007,68.103195,29.145996,144.50371,0.00022130994 1763,436.89352,182.6467,21.430328,48.005386,0.00019266845 1763,618.0641,381.2411,21.08258,80.70706,0.0001922529 1763,611.7897,169.05536,27.356995,127.33914,0.00018755239 1763,327.2166,219.30788,44.34146,132.31648,0.00015129994 1763,479.49835,202.45529,40.94458,97.21796,0.00013323544 1763,1.1524048,167.8898,18.042263,77.98299,0.00012277468 1763,617.9372,323.52386,21.209473,77.81366,0.000105438245 1763,602.2534,246.946,36.89325,204.45595,4.6722154e-05 1763,1.8619044,187.565,33.361427,164.695,3.620981e-05 1763,405.63293,92.022736,111.79199,237.30353,3.565768e-05 1763,609.6869,439.70047,29.459778,63.711304,2.6875969e-05 1763,0.97712487,269.50626,19.00463,133.40479,1.5638778e-05 1763,3.5687501,232.0985,56.621216,210.43077,1.29369655e-05 1763,0.83934575,346.72104,19.609943,131.45648,1.1988415e-05 1763,597.739,2.6983433,41.407654,90.30287,1.1000464e-05 1763,585.74506,393.7688,53.40161,100.480286,7.95972e-06 1763,1.0892009,68.94761,28.026985,161.57797,7.278522e-06 1763,0.96701497,441.68106,21.721153,60.605927,2.1738513e-06 1763,5.8859377,350.38474,78.176544,133.37778,1.6830742e-06 1763,2.800975,426.38177,52.888706,71.278564,3.965619e-07 1763,0.60898274,19.456707,16.293062,146.04381,3.7041968e-07 1763,1.1383203,11.203256,35.43685,78.713455,1.0064439e-07 1764,226.57848,244.74019,29.026138,58.356613,0.42108065 1764,145.21156,233.1013,26.14064,56.500717,0.41102123 1764,58.07957,198.47746,26.932095,46.734207,0.028891865 1764,620.8036,221.95917,18.343079,62.135193,0.012257462 1764,99.685524,224.26831,37.197945,78.37857,0.0059152395 1764,350.389,333.04382,31.909271,69.2168,0.0033633849 1764,232.6641,336.84802,33.68512,65.71161,0.0015028231 1764,0.8631535,252.47253,13.417771,52.57959,0.0012793366 1764,150.83525,218.84792,38.7464,95.73921,0.0009188369 1764,604.5428,190.35121,34.60388,132.14845,0.00085188175 1764,326.60822,334.22144,22.52185,46.056946,0.0004885259 1764,616.5708,262.52826,22.575867,90.67874,0.00047920636 1764,424.87677,181.48427,43.540894,123.32381,0.00040045552 1764,409.1066,221.95755,22.099579,46.747253,0.00035421413 1764,616.6899,63.152008,22.456787,83.31497,0.00032383826 1764,476.846,247.18864,21.966461,50.530777,0.0002808292 1764,618.10114,395.02933,21.045532,78.77969,0.00022000103 1764,1.6635686,210.89287,19.487648,126.21913,0.00020339014 1764,600.4426,60.15385,38.205566,207.45833,0.00015817102 1764,443.4231,182.18733,20.96875,47.601105,0.00014796687 1764,617.9854,336.91257,21.161255,77.58188,0.00010003947 1764,461.90463,207.74556,28.108551,62.418137,6.78425e-05 1764,602.4783,251.24734,36.668396,204.8085,6.7476256e-05 1764,3.3726661,202.618,56.26838,216.26747,5.1565225e-05 1764,0.7901123,294.2203,18.201595,71.33023,4.4688502e-05 1764,1.9521843,111.883255,34.471073,191.01775,4.1107698e-05 1764,414.4847,132.91214,115.1257,213.8323,3.6670546e-05 1764,1.1126075,135.8846,18.563314,78.99167,3.1928328e-05 1764,609.7506,441.2199,29.396057,62.51239,2.7857126e-05 1764,597.28906,2.5525718,41.857605,90.01452,2.7365882e-05 1764,0.8451107,332.677,18.498796,78.12637,1.5099264e-05 1764,1.4197868,290.13684,32.853157,177.06665,1.2103106e-05 1764,23.350866,159.44458,109.21487,222.0119,1.0381749e-05 1764,0.75995284,405.37576,18.007242,70.98752,7.422332e-06 1764,572.75757,362.73682,66.3891,127.41168,6.9451607e-06 1764,5.157012,348.67892,78.739784,136.18417,1.368147e-06 1764,2.7618425,425.7662,52.892216,72.20392,3.7637645e-07 1764,1.8447835,11.251852,35.82911,78.067184,2.1204009e-07 1764,0.84032637,20.019564,16.32735,137.98875,1.7921998e-07 1765,111.493416,235.68105,32.652916,69.329575,0.41251007 1765,144.92488,227.0713,33.003677,69.65666,0.022165274 1765,350.8218,333.96082,31.821472,66.43573,0.003176282 1765,262.6777,346.87656,26.324188,50.29138,0.0028349552 1765,608.023,158.96536,30.121704,130.54037,0.0014609451 1765,1.4312476,220.84532,17.56232,77.655045,0.0006430667 1765,621.61206,206.52733,17.534607,55.396774,0.000529316 1765,160.88838,218.47891,37.047882,96.11551,0.0005189138 1765,98.62239,212.12476,72.69719,145.47168,0.0003637841 1765,617.56616,60.049103,21.580505,76.49933,0.00029909934 1765,618.0972,381.33893,21.049438,80.855865,0.00017205854 1765,432.7333,146.12791,48.626434,151.48027,0.00016391453 1765,617.17426,246.63564,21.972412,84.21074,0.00013988423 1765,0.9831397,135.47224,18.829748,74.43529,0.00013344681 1765,449.9103,186.47787,22.692322,47.647125,0.00010647814 1765,617.7652,315.96262,21.38147,77.957184,9.117545e-05 1765,588.1457,194.2272,50.964478,235.01035,5.9305206e-05 1765,1.9485254,139.71837,32.659775,177.45787,4.092628e-05 1765,586.60364,19.351185,52.079773,243.06514,3.5491204e-05 1765,1.5132976,255.46138,27.331327,145.49776,3.4269753e-05 1765,597.60614,3.8904948,41.393555,88.730545,3.2020936e-05 1765,609.8013,439.62375,29.345398,64.22168,3.0270126e-05 1765,0.8503137,333.88855,13.933225,50.700012,1.7768372e-05 1765,0.7418018,405.7152,18.099855,70.33115,9.148835e-06 1765,585.86,392.916,53.286682,101.075745,7.83512e-06 1765,0.54201865,363.94415,13.851629,48.279938,6.014871e-06 1765,1.4057227,339.5309,32.208992,149.3742,5.219575e-06 1765,0.7865682,40.305683,18.495245,146.02646,1.532889e-06 1765,2.8460336,427.6523,52.56352,70.326355,4.4281379e-07 1765,2.3268132,30.350327,59.94813,243.44325,3.5713805e-07 1765,1.5774121,12.954584,36.079037,74.292656,2.3714955e-07 1766,2.1782496,213.50848,30.224384,106.58768,0.46732756 1766,263.74463,360.5328,29.280243,54.292175,0.040879294 1766,33.793594,194.06786,50.767006,82.25951,0.028346604 1766,37.253845,242.37787,30.08239,53.18741,0.010599549 1766,172.7883,230.37631,23.601013,50.159515,0.006959128 1766,431.09305,234.08105,26.358826,60.36316,0.005768338 1766,232.52547,223.06036,32.134842,76.738434,0.004043173 1766,176.48875,210.15718,39.65085,90.46529,0.003885063 1766,332.69095,348.89777,24.806,47.67093,0.002054598 1766,3.3197544,202.15038,68.39692,158.9334,0.0017262792 1766,536.44196,143.11417,25.273926,56.50508,0.0015382454 1766,458.64948,176.00482,29.498352,63.181152,0.0007140259 1766,611.0564,62.985764,27.956299,135.43427,0.00069370447 1766,433.2121,164.17839,62.14395,143.32793,0.0006156726 1766,226.88693,351.20923,36.02005,72.40759,0.00047092375 1766,1.3430876,180.58484,18.7203,83.96802,0.00037197935 1766,1.0848438,278.33875,18.829876,79.07883,0.0002737648 1766,617.6494,217.646,21.497253,79.25897,0.0002041714 1766,618.0674,381.3711,21.079285,80.42081,0.00019997465 1766,617.81305,322.55444,21.333618,78.459015,0.000102045546 1766,601.56976,142.71626,37.576904,172.41255,5.498813e-05 1766,0.9795834,128.41135,18.400293,77.56885,4.051116e-05 1766,602.2647,249.17693,36.881958,201.265,3.930369e-05 1766,155.35423,166.75096,105.65251,215.92287,3.267177e-05 1766,0.5411377,321.09637,18.777363,83.01083,2.9509598e-05 1766,609.69635,440.17538,29.450317,63.51712,2.5140622e-05 1766,12.243373,123.01839,134.49144,245.37083,2.088624e-05 1766,598.13806,2.8165138,41.008606,93.25726,1.3651524e-05 1766,1.1038493,83.21655,28.855742,168.12347,1.3235384e-05 1766,0.76698893,391.19324,18.15407,72.563446,8.036667e-06 1766,585.7918,392.61963,53.35486,101.54016,7.841116e-06 1766,3.2186556,323.88684,56.986294,159.70349,7.573057e-06 1766,1.0088184,443.06,21.770012,59.812927,1.7019526e-06 1766,1.4464128,12.574112,35.963875,75.32484,3.9317123e-07 1766,0.834563,26.492311,19.331486,138.7906,6.754547e-08 1767,40.856667,195.455,29.276627,53.635757,1.0447019 1767,428.15192,220.98279,27.442871,54.47708,0.37764734 1767,406.6343,212.84402,24.267548,48.78119,0.18879648 1767,534.1934,211.73389,26.651245,64.86542,0.054536473 1767,66.48176,235.86412,24.484764,46.4832,0.018734224 1767,141.50433,222.06389,34.81491,64.44197,0.013588493 1767,203.53656,212.52107,24.69629,45.389816,0.00992958 1767,446.70236,169.0673,51.39853,136.43672,0.0035659482 1767,604.5026,109.526344,33.74414,92.540535,0.003364999 1767,23.821077,175.72601,55.853386,103.79816,0.0027207686 1767,196.52327,253.18307,22.638977,49.886444,0.0018993221 1767,463.9963,180.41858,23.323547,52.086273,0.0009885239 1767,1.1681552,187.54677,17.673433,70.30162,0.00080047076 1767,621.82166,232.57573,17.325012,55.136276,0.0005148589 1767,419.1172,204.32332,54.343018,119.838455,0.00042998258 1767,617.29285,183.76248,21.85382,83.33618,0.0002961734 1767,622.25665,347.54327,16.890015,50.027466,0.0002635094 1767,468.00797,198.79205,27.06543,63.75522,0.00025426302 1767,619.9025,79.07432,19.24414,70.017296,0.00024319631 1767,352.807,227.97034,45.54892,141.44485,0.00018452777 1767,1.4132829,167.28505,33.360313,198.88554,0.00018084861 1767,438.2788,255.20131,19.011993,45.74733,0.00014756808 1767,0.53647625,308.33325,43.450935,134.4768,0.0001255858 1767,617.6191,287.78546,21.527588,79.35898,7.796999e-05 1767,602.33,171.32318,36.81665,185.3223,6.367029e-05 1767,612.1035,326.00497,27.043152,134.92914,5.869253e-05 1767,585.1374,24.518997,53.401367,220.08292,5.479141e-05 1767,1.2502197,96.14948,28.075497,149.71313,3.482921e-05 1767,10.72322,133.92723,101.5082,234.70503,3.4613648e-05 1767,609.72284,441.05292,29.423828,62.699738,2.3309842e-05 1767,0.85870284,241.61516,18.286928,79.209335,2.0433255e-05 1767,0.29397705,363.745,20.691397,105.117615,1.1102866e-05 1767,585.75323,393.5027,53.393433,100.53305,6.348282e-06 1767,416.59158,106.196594,145.65677,244.04013,4.1120943e-06 1767,598.4712,7.270677,40.675476,87.01651,1.4575937e-06 1767,2.3268263,32.08427,60.02953,241.72054,1.3067955e-06 1767,2.5204525,420.42142,52.685852,77.86224,8.4390103e-07 1767,0.7203019,49.941875,21.046238,116.23419,4.1444704e-07 1767,1.3434457,10.548483,35.22533,73.23326,7.6419724e-08 1768,425.04913,224.17998,27.372223,67.58153,0.33030593 1768,402.15488,219.49457,23.037842,55.70572,0.084279604 1768,209.56036,219.75906,24.949768,55.91751,0.021500064 1768,21.318224,200.52048,35.26658,77.567444,0.005212884 1768,212.83434,206.43694,41.071533,134.13145,0.0029309134 1768,1.23561,195.54231,12.963012,49.46353,0.0024635494 1768,178.28165,204.32112,34.56201,77.09419,0.0012833617 1768,33.99979,190.28754,29.481434,51.672546,0.0012307256 1768,609.76733,82.55116,29.256042,108.43956,0.0011733653 1768,621.8419,127.42128,17.304749,52.98271,0.0010335835 1768,1.4395744,177.46114,20.353107,133.24052,0.0009941378 1768,470.4898,181.31145,22.59842,48.312256,0.00071248726 1768,4.6572723,220.99059,58.06656,211.19621,0.0005697694 1768,399.80777,208.53188,75.77823,150.30159,0.0005174141 1768,439.8736,233.24121,25.57547,58.679688,0.00047980083 1768,465.94257,167.79845,46.50769,149.01265,0.00042138863 1768,617.9321,388.49078,21.214539,78.66083,0.0002244065 1768,610.10254,168.97957,29.044128,123.172104,0.0002086849 1768,193.59317,172.83672,103.56299,229.74751,0.0001418496 1768,0.78167564,104.21661,19.071918,77.94617,0.00013637266 1768,617.77856,336.62012,21.368103,77.73767,9.9456905e-05 1768,617.6907,289.2457,21.455994,77.43329,9.008247e-05 1768,4.426966,372.85446,54.699432,115.224365,8.053538e-05 1768,587.94116,205.66095,51.205505,234.32312,4.4248474e-05 1768,1.2081454,323.82956,17.50399,128.41519,3.5949717e-05 1768,585.5809,31.882656,52.740356,211.558,3.4209734e-05 1768,609.6824,440.85474,29.464294,62.558044,1.974929e-05 1768,1.6636345,77.69993,33.49663,200.89893,1.9694635e-05 1768,0.988549,275.97095,18.324438,84.33182,1.5939258e-05 1768,585.7325,392.76312,53.414185,100.907104,6.848241e-06 1768,597.3358,9.991667,41.810852,76.71381,3.0376718e-06 1768,0.7864087,421.87216,17.02024,80.53906,1.9991614e-06 1768,0.6430347,14.984089,19.369293,132.53427,2.5457192e-07 1768,0.4587952,7.4187436,9.5643215,85.92912,1.06310985e-07 1769,417.36865,215.04716,25.151398,57.360855,8.317538 1769,430.53766,216.12688,29.559235,67.43767,4.0950375 1769,25.424316,195.85565,30.925827,51.935837,0.56823844 1769,217.66536,239.74446,39.26323,94.4073,0.17605971 1769,470.08783,268.54874,21.860779,48.770996,0.13209644 1769,388.022,211.7553,31.311646,68.24596,0.038417086 1769,491.14886,203.0552,20.769531,48.784515,0.008488095 1769,472.77313,165.12312,43.642944,99.46492,0.007550302 1769,3.9620574,306.44647,52.288704,135.32516,0.006228229 1769,404.08047,208.18602,53.79007,118.617935,0.0041090464 1769,65.4489,232.80399,43.521896,122.680176,0.0022714422 1769,369.16757,203.77019,42.46164,128.28838,0.0013627212 1769,617.0569,103.581894,22.089783,84.40178,0.000594801 1769,610.9793,156.98306,28.167358,130.29318,0.00047190068 1769,1.3168873,221.89107,18.131374,82.34917,0.00022177833 1769,1.3298275,361.00272,19.994833,95.17709,0.00021494657 1769,26.08239,195.95045,119.43696,225.06288,0.00015253738 1769,2.279313,168.98883,36.41475,211.1326,0.00013853738 1769,457.4374,129.82518,111.88406,206.02977,0.00012310744 1769,587.982,171.85974,50.856506,217.13724,9.0007234e-05 1769,612.254,312.74374,26.89264,136.10773,6.419733e-05 1769,609.75775,12.467501,29.388916,136.64516,3.4350178e-05 1769,1.1213566,267.14417,19.427324,92.40387,2.7783633e-05 1769,1.4562086,121.47512,19.34316,143.92764,2.3287934e-05 1769,609.6775,441.2583,29.469177,61.938385,2.1110807e-05 1769,584.2544,25.8434,54.24048,233.8921,1.7333248e-05 1769,0.7158521,413.24606,17.2964,89.363434,9.75063e-06 1769,2.89507,41.289192,59.393845,237.58936,8.685335e-06 1769,572.7306,362.6625,66.41608,126.10812,7.4542827e-06 1769,0.64479333,14.480417,18.603498,118.703514,4.2053549e-07 1769,144.1477,2.882023,41.26503,47.406498,8.509831e-09 1770,435.51736,212.78677,28.84024,62.904236,3.9368882 1770,19.21578,184.6886,37.5616,56.447113,1.0395563 1770,385.86752,211.63535,26.664856,59.515625,0.39477313 1770,123.77258,221.59135,38.298187,66.44173,0.38907915 1770,479.69736,269.98453,23.481873,47.276215,0.3364653 1770,452.39282,211.27959,19.41504,45.2968,0.0101521155 1770,370.32526,202.8737,53.177643,122.77135,0.009365484 1770,469.4049,159.46513,52.143066,157.73763,0.004311487 1770,490.53726,175.81511,23.729156,48.266724,0.0042997845 1770,416.3888,208.06755,39.03116,127.15376,0.0033058757 1770,494.09094,179.27211,37.518677,84.18877,0.003157554 1770,455.97278,196.68423,37.949005,89.668945,0.0024005831 1770,617.3347,116.449844,21.81195,79.721146,0.0019433539 1770,0.85109985,197.92273,13.185422,51.563766,0.0012892634 1770,616.4925,213.73898,22.654175,76.37009,0.0011446509 1770,620.38513,79.83207,18.761536,67.30363,0.00094003987 1770,96.81801,202.38852,79.50432,146.7384,0.0006845152 1770,598.35803,74.47829,40.16034,189.42824,0.00040115273 1770,356.06387,177.36638,104.908844,211.19646,0.00030317964 1770,1.2845638,188.56935,19.930893,124.754196,9.966304e-05 1770,5.5750813,161.88766,55.876312,200.47299,9.1004316e-05 1770,612.2389,326.73416,26.907776,134.82715,6.506591e-05 1770,587.9043,187.71579,51.24237,239.27866,6.344517e-05 1770,608.7782,11.461921,30.36847,148.97583,5.995977e-05 1770,221.99532,193.04698,71.39632,175.37508,5.8114834e-05 1770,609.74084,440.80756,29.405823,62.63672,2.569272e-05 1770,0.9217269,360.36716,19.495874,129.50613,1.2745217e-05 1770,1.5838925,103.74,28.440248,154.77246,1.2097336e-05 1770,1.4586467,236.64305,33.04983,183.40816,8.185335e-06 1770,572.7034,362.765,66.44324,126.03943,7.744813e-06 1770,3.2709782,311.59253,55.553894,162.13461,7.096177e-06 1770,0.9679574,56.993523,19.563177,127.191246,8.861365e-07 1770,2.3272347,23.145828,55.576256,96.48029,5.996011e-08 1770,0.6181124,12.258392,13.388271,75.44659,5.502837e-08 1771,17.310558,189.09038,31.71019,49.033096,1.890818 1771,438.3119,205.93828,34.35785,71.27959,0.25394595 1771,268.95804,396.49518,26.033997,48.94055,0.0878483 1771,375.22263,195.46083,45.076263,138.12611,0.057381153 1771,485.41315,274.58035,23.582916,52.41678,0.04695851 1771,605.9182,215.68257,31.834656,65.46724,0.02632476 1771,492.00198,167.2965,43.799835,106.50548,0.0084487675 1771,156.00078,213.46635,23.842407,53.07515,0.00716761 1771,545.50757,186.68015,23.01294,50.993713,0.005179051 1771,492.39755,178.8424,23.273834,51.273773,0.0044306116 1771,441.06924,246.69948,24.757599,62.944107,0.0018058588 1771,234.06311,226.12526,33.03485,78.810776,0.0016530099 1771,459.26846,210.82889,21.031769,50.449432,0.0010811711 1771,441.23312,182.18962,62.536743,141.52855,0.00090504065 1771,504.1051,198.66669,23.31427,56.524857,0.0006722743 1771,345.5815,184.93646,109.16809,201.88898,0.00058426865 1771,1.3574276,197.39917,17.437433,72.10324,0.000495859 1771,616.52423,113.55113,22.622437,77.15677,0.00042409785 1771,465.23886,151.22734,98.96628,184.55144,0.00033975515 1771,585.36096,102.74074,52.994568,213.72148,0.00024219576 1771,617.95056,394.25674,21.196106,79.5188,0.00021630726 1771,617.8013,343.45422,21.345398,78.706604,0.00013425059 1771,1.0798088,149.37082,18.158754,80.89819,0.000118131415 1771,602.23505,223.21701,36.91162,205.11789,8.5702646e-05 1771,1.8705444,166.65462,34.087265,169.19511,3.7430338e-05 1771,0.8909245,297.40393,17.97007,70.259735,2.7999993e-05 1771,609.791,441.63354,29.355652,61.926727,2.1295544e-05 1771,610.50287,11.435397,28.643799,129.4866,1.3712615e-05 1771,3.425298,218.31773,56.68179,225.28416,1.1322488e-05 1771,0.729266,349.9405,20.707365,105.055725,8.1454655e-06 1771,572.91876,362.46042,66.227905,126.22824,7.989959e-06 1771,0.7040332,423.05402,17.027884,78.22516,3.784671e-06 1771,3.3206072,44.364994,57.178616,208.87871,1.3855315e-06 1771,5.2799153,354.37555,78.9404,131.27045,1.1655512e-06 1771,0.97260094,23.859001,19.11591,101.987045,3.1157742e-07 1771,2.2034295,14.865443,48.07125,60.26901,1.997509e-08 1772,429.06158,212.90797,34.474426,91.43501,0.22619805 1772,357.10776,207.34772,43.963867,132.75452,0.12284459 1772,491.01648,172.23248,44.849182,103.595184,0.03193345 1772,611.1054,229.5597,25.870056,56.023376,0.010783258 1772,3.2373593,186.63528,35.99212,104.347046,0.009865514 1772,504.4069,183.14317,22.27298,47.761642,0.009832286 1772,450.50912,204.61835,36.91214,82.21774,0.0077580633 1772,509.75058,203.44844,21.96988,52.913162,0.0029795554 1772,348.7682,382.60876,22.392548,46.825836,0.0024557805 1772,609.2078,121.87189,29.938843,74.39877,0.0013334424 1772,351.3216,182.44235,105.18799,210.7537,0.0012492458 1772,450.03854,147.14154,75.70401,180.7847,0.0010349703 1772,621.0698,194.5167,18.076843,56.377426,0.0008809985 1772,475.36325,253.92323,41.039703,87.80052,0.0005408992 1772,436.2842,271.31976,20.01941,46.356476,0.0003826119 1772,600.95544,133.3845,37.656677,181.07283,0.00036498648 1772,410.6076,194.7057,74.492004,153.47414,0.0002926738 1772,617.9778,395.03674,21.168884,78.75546,0.0002390987 1772,143.6979,211.88074,43.508667,131.8104,0.000106417734 1772,617.6592,289.50705,21.487488,84.14899,8.267505e-05 1772,1.7694556,123.43961,20.017307,141.14081,7.209677e-05 1772,1.5823047,221.60649,33.95822,187.67088,6.684378e-05 1772,602.0364,230.01393,37.11029,204.86635,5.4313095e-05 1772,1.0824944,289.64658,18.349297,72.45218,3.8462887e-05 1772,610.132,16.596355,29.014648,157.18674,2.7741904e-05 1772,609.766,440.87482,29.380676,62.655396,2.3482988e-05 1772,610.48456,6.2747073,28.66211,48.256683,1.2422352e-05 1772,0.7180656,328.2752,19.405153,137.68002,1.1835013e-05 1772,572.7958,360.58078,66.35089,128.23184,8.099839e-06 1772,0.7269198,422.99512,16.904293,78.6709,3.0069923e-06 1772,3.1465251,317.06973,56.4029,163.11923,2.3748191e-06 1772,3.1335776,42.40904,57.335655,213.17354,1.5320298e-06 1772,1.507194,28.472721,28.85087,132.68187,1.1408164e-06 1772,0.851259,13.123249,14.959991,74.84099,8.977795e-08 1772,2.176605,13.7533045,47.326145,64.06649,8.027974e-08 1773,230.61482,261.61707,32.599747,64.528595,0.8046971 1773,474.20825,281.39166,26.205872,59.06363,0.054626323 1773,258.12582,383.71832,23.292267,49.631134,0.031249842 1773,612.5062,199.52417,26.640442,96.602356,0.023386162 1773,344.83902,209.95178,44.250946,123.00076,0.023220744 1773,608.60114,114.32013,30.545532,81.3799,0.002403194 1773,371.25204,192.2273,37.83905,151.57495,0.0016069884 1773,129.47299,210.54883,34.271133,76.087036,0.0015765083 1773,445.34006,203.28319,45.414642,129.47194,0.001195172 1773,1.1976278,221.20036,13.520751,50.86653,0.0007861863 1773,584.8419,92.79661,53.841248,210.70688,0.00068016903 1773,494.22122,173.35454,40.361053,99.594406,0.0006468531 1773,347.0458,176.94493,105.33661,219.02974,0.0005539898 1773,411.19836,189.9515,58.77774,140.07309,0.0005247492 1773,620.20874,153.87518,18.937927,58.657654,0.0004946519 1773,473.082,147.66646,79.36044,184.44023,0.00037406076 1773,1.765608,198.27742,28.455214,97.632126,0.00019248093 1773,218.97833,197.63138,72.55969,158.77176,0.00012998642 1773,617.8203,295.7108,21.326355,85.50467,9.6957694e-05 1773,1.0723958,235.44527,18.2572,133.29152,6.105293e-05 1773,612.4012,360.5436,26.745483,134.36212,3.9926017e-05 1773,602.1671,225.26617,36.979553,209.64737,3.5868114e-05 1773,616.72003,30.520332,22.426636,84.16989,3.2244516e-05 1773,0.75246745,320.31992,18.346006,76.13077,1.8154555e-05 1773,1.3384994,110.65607,19.671532,149.58936,1.5857655e-05 1773,3.044432,165.75447,56.444084,197.22432,1.5216108e-05 1773,1.5664103,268.92755,33.045082,171.81781,1.246341e-05 1773,566.32983,20.865242,72.81683,167.53922,5.0368603e-06 1773,0.6033773,385.81525,19.653542,112.18518,4.102725e-06 1773,1.3431877,56.202255,21.632542,99.96658,2.8473653e-06 1773,3.3294663,26.766102,54.128345,95.1496,1.0796788e-06 1773,5.217614,354.0185,79.10506,131.66537,8.1161505e-07 1773,238.90305,9.484429,42.588562,48.064037,5.758265e-07 1773,213.5873,8.073732,43.91484,49.216774,1.8963553e-07 1773,266.14008,9.442046,42.331665,45.249023,1.8055708e-07 1773,1.215717,16.545773,26.211031,65.95079,9.700722e-08 1773,185.79607,7.770383,41.501465,45.532063,5.3998416e-08 1774,219.15982,247.2672,34.81537,73.53325,2.6521006 1774,438.1972,208.27519,31.273834,69.865616,0.92073 1774,339.44006,203.17062,41.579987,128.56528,0.035393897 1774,486.2912,145.62943,51.94342,130.30453,0.004756856 1774,414.87112,199.06604,42.006805,131.71967,0.004721802 1774,621.81366,244.0815,17.333008,54.76274,0.0020894995 1774,510.6134,172.45062,22.974915,50.35576,0.0019382715 1774,349.00812,182.73767,74.52609,179.51837,0.0016871335 1774,485.13538,296.01257,26.16037,55.17267,0.0016832957 1774,609.85565,182.55946,29.291016,121.85921,0.00055354723 1774,449.24594,111.762436,107.78531,225.39397,0.0004747168 1774,621.22473,122.891594,17.921936,50.319572,0.00037867908 1774,622.27185,165.68846,16.874817,46.847183,0.0002835837 1774,1.2338061,214.02875,17.826458,76.059265,0.0002611709 1774,207.48344,197.3967,71.464005,163.62137,0.00018674314 1774,621.03644,89.58553,18.11023,52.995415,0.00017863022 1774,617.9162,272.86462,21.230469,77.24921,0.00017657352 1774,391.99442,152.10953,98.739136,214.42377,0.00014193406 1774,612.4821,315.13614,26.66455,140.06653,9.733783e-05 1774,0.593195,68.08002,19.341103,150.77942,8.939526e-05 1774,610.14453,76.497,29.002136,135.17773,8.212324e-05 1774,1.8411573,135.84932,34.383003,168.98076,4.2602394e-05 1774,584.87115,60.540913,54.275513,248.17366,3.357715e-05 1774,615.7057,22.584536,23.440979,76.94669,2.6834889e-05 1774,609.7586,442.0507,29.388062,61.64447,2.0284957e-05 1774,0.8281958,258.2691,19.496737,129.99045,1.5344944e-05 1774,1.5297428,31.515366,29.575853,97.86801,1.1730375e-05 1774,572.78046,353.40588,66.36621,132.68536,9.711263e-06 1774,0.7260897,331.81625,19.771368,132.23257,8.828253e-06 1774,3.0113623,215.47766,57.96167,215.20895,8.5097145e-06 1774,582.9696,14.704564,56.177063,110.61887,7.332111e-06 1774,3.7873147,38.363567,80.21156,112.95062,4.191519e-06 1774,1.2765284,418.8342,34.339924,79.89572,9.2992514e-07 1774,5.2696,354.35846,78.87975,131.78162,7.961417e-07 1774,568.2802,8.742035,43.907593,45.939243,8.614873e-09 1775,433.78964,208.8174,33.501892,81.12843,2.7986522 1775,336.69373,204.72722,42.484253,124.614426,0.08041522 1775,124.571945,202.81425,34.448105,67.30971,0.013284266 1775,499.33112,165.29079,44.39148,103.62099,0.010034818 1775,216.89374,259.85028,36.93199,72.63513,0.0024889966 1775,604.28827,157.24332,34.02588,162.53986,0.0021156785 1775,535.11,294.9886,24.936462,48.29181,0.0011552633 1775,607.8061,84.83855,31.340576,137.86703,0.0007490921 1775,356.17725,182.96982,72.05914,173.74283,0.00074548746 1775,624.7918,213.9705,14.354858,45.798813,0.00067681074 1775,420.23434,159.99724,74.11795,172.76314,0.00054852554 1775,487.6303,135.70099,77.594604,205.83893,0.0003182571 1775,0.9910759,230.41115,13.780769,52.646194,0.00030920174 1775,618.01886,402.32242,21.127808,77.07727,0.00016305048 1775,110.1937,194.41776,79.52093,157.7692,0.00013460981 1775,506.6849,217.90709,20.891754,48.17546,0.00011070085 1775,612.27765,305.57047,26.869019,144.25308,9.779878e-05 1775,569.36816,25.41974,69.7785,147.34079,9.706095e-05 1775,216.98668,232.42076,25.152832,56.383377,8.6653774e-05 1775,429.43942,289.01407,21.047577,51.631866,8.557638e-05 1775,1.2635198,198.24638,20.121674,123.78444,6.1119106e-05 1775,573.12915,348.1023,65.89703,138.96918,3.873676e-05 1775,615.2706,45.983685,23.876038,95.7166,3.101108e-05 1775,206.3019,192.15883,78.927444,169.15837,2.6482621e-05 1775,605.5034,7.8052087,33.64325,53.819946,1.3040184e-05 1775,0.84952885,262.4257,19.485598,132.60892,1.2318242e-05 1775,0.8805363,74.013466,19.070948,137.33627,1.1294308e-05 1775,3.2702525,225.46797,58.224697,208.44814,7.498603e-06 1775,0.62892175,364.8572,18.265697,71.36316,5.9074955e-06 1775,1.1070207,314.0463,33.156864,168.01257,3.928386e-06 1775,0.69535893,421.73267,16.76863,79.89584,3.2110715e-06 1775,3.1137273,86.601555,57.6028,219.95844,3.197095e-06 1775,1.821543,37.1292,34.316742,120.43579,8.3234346e-07 1775,0.9747799,15.877054,15.617427,63.29631,2.9938384e-08 1775,2.5099137,19.037514,50.573395,58.92959,1.7041794e-08 1775,112.31943,4.9116406,64.169754,49.544624,1.3839031e-08 1775,86.82967,3.9370086,48.926414,55.24827,1.6347526e-09 1776,437.796,210.54848,30.091583,64.25392,6.0816584 1776,401.23425,205.68509,23.130066,46.38307,0.7015894 1776,350.94965,197.80267,39.003998,115.01453,0.04301852 1776,603.47205,94.92542,35.48163,73.76841,0.0149390325 1776,533.2716,288.0705,39.06958,69.89026,0.005098868 1776,133.50648,212.90652,25.840347,61.165894,0.004328406 1776,123.517944,206.16347,41.260544,137.62126,0.0017506264 1776,509.8993,151.63132,43.362915,120.52652,0.0015272022 1776,431.31726,199.60431,54.733215,139.29977,0.0015131572 1776,510.84323,256.92392,36.704376,84.43109,0.0011711629 1776,1.3219368,217.62187,17.953018,73.52727,0.0009574622 1776,518.064,74.15668,24.927612,49.230812,0.00085218163 1776,495.75198,262.416,30.752655,63.98535,0.00069890986 1776,360.762,183.7809,74.63974,177.23186,0.00066343794 1776,621.8684,197.92102,17.27826,52.07344,0.0005954469 1776,426.96307,289.17944,27.296265,66.60196,0.00053314294 1776,617.2697,229.4232,21.876953,85.47359,0.00040644928 1776,480.34448,199.49875,84.82019,180.7084,0.00023232642 1776,611.6885,323.6488,27.45819,136.87213,0.00020125556 1776,601.3849,105.502144,37.37732,204.59244,0.00014193865 1776,571.8848,27.396406,67.26184,142.81602,0.00013695486 1776,587.14734,196.98665,51.447937,220.54207,6.905625e-05 1776,400.73752,125.57102,131.35257,241.99103,6.466407e-05 1776,81.27296,293.79184,39.60399,87.408264,4.6059777e-05 1776,87.4327,187.90477,121.32996,201.85872,3.403901e-05 1776,1.805184,150.27753,36.029953,168.35837,2.6618136e-05 1776,609.65247,440.55695,29.494202,63.035828,2.1263968e-05 1776,607.731,7.809276,31.41565,51.81407,1.7965136e-05 1776,1.2645085,234.6932,33.68513,181.72806,1.7172202e-05 1776,585.5699,383.19794,53.576782,109.29828,1.6595526e-05 1776,0.7960124,71.590935,19.198742,151.18579,1.287971e-05 1776,0.7001872,347.28815,19.849247,129.48581,8.25709e-06 1776,0.8355705,303.4893,18.386131,71.7106,7.6913475e-06 1776,1.5377897,23.717833,27.01084,101.936584,3.37526e-06 1776,5.822588,351.8651,78.071846,133.04364,8.779302e-07 1776,1.3429021,418.5272,35.144634,79.61395,7.217057e-07 1776,4.238353,28.916706,81.85822,130.88347,5.5940404e-07 1776,1.405293,12.099941,39.40471,47.176285,8.512612e-08 1776,476.41617,3.5843165,44.652985,46.25911,8.744565e-09 1777,344.65424,202.8905,39.547394,125.7215,0.021952763 1777,450.63422,217.91907,34.45456,85.09747,0.016421739 1777,545.45,307.79883,27.927124,51.678192,0.0062062913 1777,619.7734,108.362785,19.373291,52.37107,0.003350343 1777,418.2525,286.6287,34.147247,82.877106,0.002109115 1777,603.92426,96.93306,35.222412,100.65199,0.0014435835 1777,523.5833,152.28778,44.21289,119.71054,0.0010902663 1777,615.8061,369.20123,23.340576,91.33264,0.0010711056 1777,621.83417,198.8373,17.3125,50.687378,0.0008505691 1777,118.20344,212.14745,39.236336,137.8589,0.00060605706 1777,609.92664,173.66342,29.220032,132.91058,0.00049475563 1777,365.35233,186.45305,72.13315,185.04637,0.0003623541 1777,572.46765,113.17604,65.49036,264.4088,0.0002695919 1777,427.61588,190.0325,80.86871,165.48688,0.00025357385 1777,537.87177,56.73979,26.46875,55.24804,0.00022368772 1777,545.07794,161.09506,46.43518,140.54755,0.00022326615 1777,617.44354,271.93976,21.703125,84.074066,0.00015126214 1777,214.91537,364.75272,33.41794,73.12485,0.00014523481 1777,587.46564,306.05356,51.461853,172.96124,0.000101634905 1777,502.4024,107.16013,108.322876,252.3952,9.909325e-05 1777,203.30789,193.98901,68.53366,174.41455,7.92208e-05 1777,469.5101,235.07657,76.55545,174.72531,7.334949e-05 1777,0.88515544,233.55247,13.211498,51.18077,7.32684e-05 1777,609.2583,16.752422,29.888367,135.7623,7.0753296e-05 1777,467.3763,99.54468,77.58646,199.43597,3.4270994e-05 1777,0.9884099,193.92365,19.80918,125.02557,2.6856651e-05 1777,609.70184,439.63007,29.444824,64.29636,2.4412575e-05 1777,608.79065,8.884397,30.356018,48.631817,9.131069e-06 1777,0.8256893,76.50339,19.06598,135.08154,8.592667e-06 1777,0.8987281,353.9007,19.697126,125.34805,8.485305e-06 1777,0.9018921,163.37909,18.127487,72.645966,6.707053e-06 1777,3.1038835,299.96454,56.266575,173.97662,6.1998876e-06 1777,3.7414975,55.408672,58.21366,233.57726,5.23396e-06 1777,1.2146509,24.721853,17.918764,109.32189,5.2073538e-06 1777,0.8349113,269.3191,19.009552,130.20752,4.73032e-06 1777,0.9828109,443.36444,21.603828,59.71167,2.0590014e-06 1777,3.3424268,24.442825,53.7972,96.01214,2.0352888e-06 1777,1.30691,13.853054,22.531776,49.057503,3.311465e-07 1777,458.07413,6.6883335,43.062286,48.99817,1.0323784e-07 1777,341.58234,7.3803973,39.692505,48.67882,2.5733687e-08 1778,343.10962,195.76115,39.53064,129.40297,0.06089572 1778,388.80573,201.12253,21.711182,46.800003,0.034966554 1778,590.5287,334.12442,24.866333,46.7558,0.017610218 1778,363.8712,200.87993,31.564423,77.8145,0.014471205 1778,103.04887,208.75742,33.17965,73.388275,0.008650113 1778,581.4433,305.25333,44.14026,90.45593,0.0027324592 1778,622.0375,235.95164,17.109192,52.136185,0.0023661854 1778,619.8661,128.98656,19.280579,54.461853,0.0013800694 1778,618.24664,325.09497,20.900024,72.69052,0.0012656022 1778,462.86392,245.26135,36.94568,87.95944,0.0008918245 1778,572.7013,347.56284,63.599792,132.4602,0.0007332848 1778,483.42523,259.64905,38.04419,67.51224,0.000536185 1778,611.07983,226.59009,28.066833,148.01581,0.00049454573 1778,4.3694644,198.15196,60.62051,227.52592,0.0004740346 1778,453.13434,208.31279,32.633423,75.7386,0.0004544163 1778,357.8334,183.29152,70.16156,191.76006,0.0004430334 1778,567.5136,160.02446,36.882996,78.506775,0.00039879742 1778,621.9257,198.54965,17.220947,55.052338,0.0003196332 1778,514.2258,264.27194,41.363953,153.91068,0.00029891342 1778,611.6878,129.94707,27.458862,143.85143,0.00024188716 1778,33.737286,307.63474,50.4371,97.55267,0.00019203521 1778,2.1094677,215.97272,28.2007,155.98572,0.00018889828 1778,617.4403,378.7815,21.70636,82.21414,0.00017717115 1778,434.69122,202.77751,81.698425,178.7036,0.00012270246 1778,1.0221632,179.45525,18.849323,82.59941,0.00010275893 1778,609.6979,31.443615,29.448792,150.04868,9.012027e-05 1778,620.54504,28.10347,18.601624,53.06958,8.38699e-05 1778,1.6199194,288.71487,18.938053,127.036316,8.284332e-05 1778,537.7862,87.02167,97.63385,263.84467,5.3911346e-05 1778,534.6384,354.69498,26.340027,66.56314,5.2446234e-05 1778,547.9304,125.664505,45.37024,147.28899,4.6465804e-05 1778,605.5063,8.17389,33.57605,51.53323,3.9007195e-05 1778,5.0798764,328.35135,80.07178,155.15231,2.683658e-05 1778,609.63245,439.5621,29.514221,64.655396,2.0852407e-05 1778,1.1081104,355.63174,19.71935,138.03442,1.7099219e-05 1778,486.1072,86.55879,82.67624,211.46965,1.12976695e-05 1778,0.8058358,74.53938,19.342237,148.60497,1.03353195e-05 1778,363.43787,4.6636167,41.078766,58.51054,2.5316008e-06 1778,526.37024,7.0319533,85.24487,70.94833,6.778259e-07 1778,448.12427,12.413731,116.76007,126.313126,6.4332994e-07 1778,418.27893,6.9311686,41.06717,47.745148,4.7186668e-07 1778,520.7469,2.4160335,47.61664,48.437386,3.1321002e-07 1778,2.6848454,18.84948,55.60345,108.29638,2.4793687e-07 1778,288.81766,5.3406396,38.91989,48.636772,1.5190632e-07 1778,313.6543,2.8757846,40.193848,53.944763,9.45728e-08 1778,1.1910515,9.347555,29.361849,53.368286,3.487038e-08 1778,550.5055,0.0,40.686035,47.54219,2.9413973e-08 1779,0.6363851,330.58047,39.319595,96.47156,0.08014385 1779,357.52145,198.13162,32.734924,86.96713,0.022543417 1779,0.7147998,356.60498,14.784488,53.7023,0.0214849 1779,587.685,147.3694,44.349243,119.085434,0.0109642325 1779,382.1077,201.65941,21.354156,45.80687,0.0075838994 1779,394.8614,204.36807,23.016083,48.192642,0.0054885927 1779,523.7428,114.28563,22.950928,46.400864,0.0032444692 1779,332.5596,204.84943,46.566742,139.04178,0.003189367 1779,454.36975,201.8082,32.379333,71.07889,0.0025738783 1779,205.5435,254.82068,22.117493,50.533722,0.00211764 1779,75.100624,200.95346,23.594505,48.40451,0.0015425319 1779,574.7199,385.2061,31.884705,77.66321,0.0015208347 1779,618.02686,247.54433,21.119812,77.88692,0.001466487 1779,617.61993,383.53546,21.526733,66.69461,0.0009523551 1779,621.88586,141.23918,17.260803,51.866653,0.000804632 1779,177.1212,247.39267,34.05121,84.386505,0.0007445554 1779,569.54254,198.00427,65.098694,274.0238,0.00070263166 1779,357.31677,180.88905,68.872406,194.45674,0.00059105316 1779,601.5541,314.847,36.332092,165.69125,0.0003168438 1779,611.57806,278.41367,27.568604,112.53247,0.00029060844 1779,1.1275488,218.85167,18.19185,75.53746,0.00026874326 1779,615.21625,172.82013,23.93042,95.14847,0.00017243209 1779,1.2070442,266.23044,74.19727,200.64029,0.00016829126 1779,609.06915,436.48602,30.077515,66.23715,0.00016542259 1779,545.8984,261.71173,50.579346,177.11563,8.888061e-05 1779,610.6868,71.752174,28.459839,153.74399,8.722737e-05 1779,1.3878582,178.9003,34.354214,210.40942,7.551276e-05 1779,620.8071,36.16695,18.339539,51.83038,5.9005244e-05 1779,0.78071046,256.69775,19.43418,94.42636,2.7964714e-05 1779,416.98083,137.34044,94.98044,244.84697,2.7255865e-05 1779,605.67035,5.92155,33.47632,54.230755,2.0707661e-05 1779,0.78221273,376.6516,19.511543,97.46112,1.9355304e-05 1779,1.1410743,115.311356,19.341463,148.93932,1.134459e-05 1779,582.5704,10.030911,56.576294,110.54809,3.4278307e-06 1779,1.0310954,443.0852,21.624863,60.240234,1.8799485e-06 1779,2.9852183,82.16831,58.918625,240.46384,1.4514154e-06 1779,2.4680405,19.808386,56.17342,108.33648,3.3876287e-07 1779,0.91512454,36.803646,17.35687,137.70961,1.8098703e-07 1779,1.0812224,8.958565,29.581083,53.63216,3.224257e-08 1779,502.9162,5.929432,44.16272,48.980255,8.320141e-09 1779,476.85205,4.987233,44.669495,50.74646,5.9593406e-09 1779,532.60504,4.108428,45.593323,49.872257,4.627439e-09 1779,291.95398,4.9821177,42.385193,46.08615,2.1238757e-09 1780,368.14618,201.41663,20.758759,45.73648,1.3607235 1780,339.20383,199.82698,36.687622,94.95253,0.11618967 1780,358.4951,190.74481,37.72531,103.38727,0.0418162 1780,388.2685,204.18787,21.938171,48.267395,0.038854454 1780,584.16504,385.07352,48.509827,105.77759,0.008637205 1780,450.60706,204.26973,23.71759,46.804077,0.0076950667 1780,600.8699,158.30847,37.46466,89.31055,0.005541928 1780,355.74615,352.20007,21.942383,51.42633,0.0026987002 1780,344.11594,181.39995,70.523315,192.01064,0.0023351246 1780,158.01698,228.65443,37.531494,85.745285,0.002168391 1780,460.48334,204.83534,32.394012,73.1172,0.0019832177 1780,589.80695,408.0894,24.873108,59.84912,0.0016093105 1780,561.077,263.4824,72.53302,205.4161,0.0014162079 1780,184.15189,245.83832,35.661316,76.429565,0.00074317626 1780,1.6025033,187.82077,18.114038,76.24942,0.0007358789 1780,585.32367,105.51479,52.600464,227.96457,0.00050523214 1780,605.7866,432.81973,33.360046,69.98663,0.00039058708 1780,611.53735,317.91962,27.609314,142.55768,0.00037281038 1780,220.61452,338.4871,34.269287,74.12665,0.0003141935 1780,621.6379,326.9882,17.50879,55.416443,0.00029605144 1780,620.6541,36.64044,18.492554,51.11084,0.00015879917 1780,616.06366,218.361,23.083008,78.47464,0.00013805742 1780,616.61084,123.865265,22.535828,87.05615,9.28417e-05 1780,369.21155,353.0191,18.94925,46.585876,6.383944e-05 1780,1.8313591,166.50807,33.325333,174.73534,6.206584e-05 1780,616.7665,76.80311,22.380188,83.019615,5.696797e-05 1780,417.28616,135.68881,93.17145,242.146,1.6828662e-05 1780,3.2020378,213.37949,57.08821,218.95279,1.5181392e-05 1780,7.8337827,343.44882,78.05551,140.4791,1.186143e-05 1780,0.8626693,79.6218,19.817497,157.29169,1.1392067e-05 1780,1.0407519,342.26102,19.21475,126.22244,1.0769152e-05 1780,1.128838,244.03558,19.384577,144.46695,9.627514e-06 1780,606.1444,6.7183547,33.00226,55.047337,8.183369e-06 1780,581.6574,15.423839,57.489258,100.49168,8.149801e-06 1780,0.7269206,420.5062,16.909843,81.44034,2.4154217e-06 1780,2.157334,19.331293,56.422356,109.37571,3.8697232e-07 1780,0.9984831,9.266788,29.298597,53.702854,4.598985e-08 1780,495.59793,6.501392,45.305023,51.385235,4.911641e-09 1780,470.21735,5.200825,44.43512,51.097225,3.7461567e-09 1781,593.65845,217.88081,26.01654,57.014572,1.9117991 1781,158.08992,224.40599,43.41626,86.94292,1.4565307 1781,337.7281,198.54872,41.221283,111.20534,0.18941198 1781,359.02853,203.25433,34.831512,78.22955,0.07862988 1781,347.0245,184.12347,70.16977,195.3522,0.0020775797 1781,1.438121,223.07439,19.86807,77.17381,0.0019375008 1781,455.09662,200.21065,32.14444,70.0244,0.0012748715 1781,325.8642,325.0851,22.944427,46.23932,0.0005722854 1781,574.67926,136.37315,61.55432,170.24916,0.00050958816 1781,617.1926,203.65355,21.95404,73.77098,0.0004937997 1781,12.357937,190.28079,80.06645,186.41614,0.00048059816 1781,621.2773,333.29062,17.869385,52.395874,0.0004708201 1781,470.3688,205.50131,34.037506,83.57413,0.00031339566 1781,611.8417,322.31003,27.304993,132.13284,0.00028184446 1781,580.91,221.71547,23.48413,47.653976,0.00026588756 1781,586.0834,240.70279,50.7984,229.99524,0.0002379697 1781,2.1186655,185.71483,35.078053,170.27046,0.00023137896 1781,234.6986,323.74927,33.579727,66.81088,0.00019175264 1781,609.1326,441.19308,30.014038,62.324432,0.00018207749 1781,620.3995,43.85974,18.747192,51.79557,0.00016917274 1781,612.0834,239.96928,27.063293,109.769485,0.00014058153 1781,353.11072,330.13498,23.173065,56.19101,0.0001102043 1781,566.91223,400.41028,25.363281,64.83374,9.99565e-05 1781,3.29806,247.18402,56.169193,220.45609,6.510918e-05 1781,616.4025,68.4405,22.74414,83.97436,5.954101e-05 1781,0.98378825,159.323,19.176765,86.96086,5.158018e-05 1781,451.8219,172.07495,79.41876,200.00845,4.251493e-05 1781,609.5516,90.31146,29.595093,149.68677,3.7973397e-05 1781,140.11998,191.94147,104.88359,186.06442,1.8497585e-05 1781,1.1995077,351.4727,19.143517,125.14523,1.7913262e-05 1781,447.3561,329.752,26.159485,70.06485,1.6898879e-05 1781,582.2147,12.210088,56.931946,103.34305,8.519962e-06 1781,0.903488,267.19156,18.789534,86.74292,5.7723437e-06 1781,1.8040365,39.568176,61.44971,272.42746,4.9546957e-06 1781,0.9983236,442.2021,21.779053,61.24594,1.3943279e-06 1781,0.79102784,43.624218,17.820208,144.68237,1.0845581e-06 1781,2.4513118,19.867983,56.159534,111.871796,3.0790923e-07 1781,495.6012,5.7595377,44.740356,50.69118,4.7165924e-09 1781,457.46164,3.3492253,42.633636,48.974995,4.117417e-09 1782,15.457374,210.22563,27.43253,56.256546,54.1813 1782,585.8493,213.09854,26.970032,63.30481,1.4298296 1782,45.928333,196.20105,42.57017,110.916626,0.05751145 1782,339.99658,200.9896,34.78839,88.94791,0.057457395 1782,29.948832,206.03781,28.45675,68.908905,0.05488699 1782,173.14688,218.07884,39.271286,86.22368,0.024741752 1782,603.28033,323.02554,35.332275,101.668976,0.014489706 1782,356.78024,193.59753,39.630432,116.772705,0.011171635 1782,278.06854,313.6514,22.598724,46.537476,0.0072235735 1782,617.83307,377.42896,21.313599,67.44977,0.004696152 1782,349.185,309.92218,23.255249,52.419525,0.0042976122 1782,460.30997,204.03154,34.711853,79.42345,0.0024350856 1782,252.2781,305.82346,35.972076,65.26358,0.002262587 1782,584.95856,148.16866,51.727722,229.58101,0.0019058902 1782,600.07635,220.41609,22.009705,46.652573,0.0015122872 1782,585.363,380.75504,53.35486,106.24106,0.0011296885 1782,8.402523,147.62196,98.07735,257.5559,0.00089348375 1782,615.04376,149.17874,24.102905,90.62399,0.0004312721 1782,1.4666244,218.57167,19.152706,82.37602,0.00036189237 1782,39.57669,247.85449,46.07689,149.97629,0.00022633203 1782,2.5171468,185.05592,35.670975,169.75331,0.0001625873 1782,615.0194,29.220114,24.127258,72.91612,6.386672e-05 1782,609.14246,436.11856,30.004211,67.759796,5.9984875e-05 1782,420.44193,141.4905,91.949554,233.45583,4.957584e-05 1782,598.1087,46.258675,41.037964,227.62628,3.461893e-05 1782,1.0367042,350.76337,18.855043,124.76529,1.3076523e-05 1782,3.9945607,326.36697,56.975166,153.9997,1.3051444e-05 1782,1.0773568,80.39505,19.467766,144.50883,2.903026e-06 1782,0.9250944,442.71835,21.78451,60.66922,1.3361632e-06 1782,1.5451465,12.2122755,36.33266,74.21868,1.2432119e-07 1782,488.9831,4.7721615,46.072083,53.293793,5.4434146e-09 1782,464.16068,3.3275244,43.04782,50.158257,2.9062572e-09 1782,291.33472,5.0860353,42.91696,45.583176,1.788643e-09 1783,39.143883,185.46199,40.407135,84.19093,47.96716 1783,565.2097,218.59378,25.433777,50.62558,2.1395702 1783,62.364494,204.98238,42.996384,121.026505,0.3168659 1783,457.48392,206.27118,49.0571,123.24982,0.16473328 1783,69.27889,212.78595,27.715569,53.114777,0.07826099 1783,264.7658,297.25107,38.973694,59.774536,0.02920375 1783,346.7528,301.75208,22.900818,46.254425,0.011856525 1783,354.80734,203.06227,34.481873,83.155685,0.009945708 1783,35.868885,185.03293,95.24048,200.53772,0.0050667133 1783,414.9788,303.11887,35.3468,87.24768,0.0044530192 1783,605.5119,153.64468,33.082214,132.68048,0.0042492067 1783,323.07013,303.49677,29.855988,55.504456,0.0038468982 1783,82.39477,187.75691,41.80294,114.63335,0.003182039 1783,183.87256,216.92268,36.863358,78.34126,0.00058211514 1783,0.83904296,231.48946,20.796362,161.5804,0.00043015234 1783,336.8468,182.60599,71.390564,177.71695,0.00041998443 1783,450.6597,205.3943,25.223267,51.7433,0.000258886 1783,585.93634,201.6616,52.137207,223.50246,0.00025784108 1783,435.9398,168.22813,100.63681,213.56337,0.00024109306 1783,1.1537509,161.21548,20.100513,137.34009,0.00022302015 1783,612.0184,286.88934,27.128296,130.3811,0.00022078166 1783,3.0222397,200.16891,55.792976,226.20554,0.00010838777 1783,611.7635,370.48157,27.383179,126.46881,9.349368e-05 1783,0.95723635,321.42514,28.511446,144.55081,4.1097588e-05 1783,615.17535,40.607967,23.971313,78.08331,3.720169e-05 1783,6.605124,342.23108,78.96123,141.57837,7.0970573e-06 1783,593.59564,9.894916,45.551025,79.42273,2.9314926e-06 1783,1.3908008,63.630894,33.905598,207.8534,2.3920213e-06 1783,582.2126,6.728073,56.934082,241.8061,2.1441858e-06 1783,1.057343,443.1118,21.754246,60.072174,1.4477492e-06 1783,1.5088803,12.792728,35.65988,72.3815,6.511092e-08 1783,483.20526,5.740083,45.30603,52.04254,3.21697e-09 1784,264.32654,290.1789,37.41797,68.856415,1.9824455 1784,61.523575,207.13112,25.886131,66.018906,0.3883683 1784,83.40324,232.49454,40.259537,92.07709,0.037802495 1784,458.11844,209.71503,34.538666,77.498474,0.022144487 1784,387.6573,297.96024,32.908386,79.991974,0.011488975 1784,72.93536,221.72859,27.615189,62.41484,0.0051780934 1784,7.6354785,304.56827,52.160233,135.6153,0.0042614006 1784,345.41888,179.41263,36.054108,151.72409,0.0032738964 1784,601.36725,159.01955,36.6792,144.64272,0.0031986998 1784,63.367165,189.72435,76.43789,165.66731,0.0026349097 1784,458.05453,245.93016,57.363007,169.23247,0.00055508554 1784,1.079965,170.80524,19.757782,131.03384,0.00052485586 1784,621.3129,310.90765,17.83374,50.22116,0.00024038777 1784,602.5633,248.18428,36.50995,150.71562,0.00023867268 1784,1.4784733,213.56438,31.157475,186.42903,0.00019895467 1784,1.7141187,316.25427,20.210133,148.01736,0.0001242039 1784,611.6568,365.68158,27.489868,128.16925,9.938277e-05 1784,616.2599,134.83855,22.88678,83.521164,9.0998234e-05 1784,615.5336,40.21734,23.613037,77.74824,5.657728e-05 1784,531.4891,148.79218,98.128845,221.42444,5.5768476e-05 1784,1.6489942,83.15011,32.50282,182.90298,1.9431945e-05 1784,0.7326595,414.08893,17.069113,87.00357,1.346185e-05 1784,581.9762,6.636563,57.17047,236.83495,2.738629e-06 1784,594.89215,12.383809,44.234985,74.41419,2.3097841e-06 1784,2.7644467,17.313519,56.10773,117.09943,1.809211e-07 1784,1.3220264,9.038583,29.159763,53.526646,2.0454793e-08 1784,482.85617,5.5886183,44.64676,50.45677,3.7541033e-09 1784,457.25443,3.1320965,42.599915,49.155178,3.268322e-09 1785,257.9509,290.2751,28.382019,69.67319,1.8713113 1785,608.8735,221.21724,29.710815,128.80919,0.059545074 1785,89.16872,203.00777,34.36876,81.8528,0.039132375 1785,59.55125,202.63425,24.51147,59.358673,0.011739994 1785,341.4244,198.20995,33.41867,80.17076,0.009952538 1785,621.08984,234.9387,18.056824,57.17119,0.009451722 1785,619.58575,294.44235,19.560913,58.37674,0.0065041683 1785,364.8752,301.9187,32.261627,78.19891,0.006254566 1785,614.3502,216.99283,23.186523,46.13452,0.0015078203 1785,62.56444,184.78505,60.11858,154.64726,0.0014152696 1785,4.0151563,197.1804,60.85043,243.76024,0.0013620508 1785,437.82397,260.1651,43.687073,160.52142,0.0011948779 1785,43.33241,214.8277,27.14973,51.7865,0.00089037395 1785,494.9709,330.9936,37.674377,67.05917,0.000862457 1785,22.197449,305.1411,50.86419,105.78198,0.0007755405 1785,449.40787,202.01874,25.208649,52.807022,0.0006019071 1785,1.5064299,209.42018,18.732496,78.0013,0.00042035384 1785,571.573,206.91254,66.946106,242.96689,0.0004148236 1785,620.5482,55.629818,18.59845,53.60641,0.0003094044 1785,612.0188,327.2908,27.127869,139.32864,0.00029551718 1785,1.7810344,259.06262,19.774118,142.26602,0.0002114612 1785,430.91104,259.15442,33.858612,64.31265,0.00019102384 1785,2.2002769,129.59113,28.749746,153.13718,0.00015702068 1785,440.69507,190.50085,38.56613,138.5404,7.968483e-05 1785,609.7903,112.09601,29.356384,147.02292,5.6230965e-05 1785,611.1229,13.832328,28.023743,77.69101,4.921472e-05 1785,584.3578,62.707294,54.78888,271.26373,3.5034955e-05 1785,2.42973,323.5068,34.145943,162.30884,2.6078413e-05 1785,354.66434,144.4041,100.55615,237.51778,2.5555675e-05 1785,609.4502,437.09622,29.696472,66.3439,2.4424497e-05 1785,2.7262957,50.6244,60.634045,256.97955,5.2601913e-06 1785,0.5953386,422.6835,17.277159,79.336914,2.7156796e-06 1785,0.87429935,63.386494,19.290112,148.96536,2.0161058e-06 1785,2.2050653,18.93777,56.513615,115.99098,3.5725117e-07 1785,450.82684,3.7605128,43.512268,51.65379,7.265649e-10 1786,245.16162,290.08676,28.914429,76.88849,0.5516974 1786,441.94653,198.61855,26.611755,51.297287,0.115754254 1786,621.60925,234.84836,17.537415,56.802185,0.034402225 1786,610.1911,228.06169,28.955566,128.92088,0.03213189 1786,330.66388,203.58875,32.577362,73.265564,0.023560438 1786,32.41233,208.10022,25.112148,55.96823,0.0076158517 1786,75.15246,201.14505,23.924568,55.196747,0.0064900313 1786,328.2416,291.2869,33.57785,75.369385,0.0013039147 1786,624.2824,282.61945,14.864258,47.48581,0.0009114815 1786,575.1973,231.82391,62.004333,184.23059,0.00087195623 1786,408.90833,252.2294,59.93814,175.39899,0.00081003 1786,59.264904,208.44713,24.25497,53.31932,0.000737473 1786,1.0223837,179.71812,18.843487,82.70451,0.0006180965 1786,87.00098,198.88174,58.925323,144.31027,0.00057368976 1786,617.0956,368.0432,22.051086,83.08368,0.0005258584 1786,401.9855,267.6911,23.537506,50.86255,0.00038873905 1786,617.1693,316.78992,21.977356,87.55347,0.0003755115 1786,622.17395,136.54953,16.972717,49.293564,0.0003116111 1786,417.0517,264.64294,33.64789,70.69241,0.00028220992 1786,326.59705,147.90622,77.10739,179.00983,0.00022135722 1786,0.72821045,131.51744,19.567106,80.29416,0.00021636212 1786,345.73187,300.61136,34.02188,89.32962,0.00015504252 1786,1.7506137,158.67146,33.39683,180.47005,0.00010287365 1786,611.7269,13.003901,27.419739,75.924675,8.6169464e-05 1786,611.4609,148.98567,27.685791,136.89107,6.7884044e-05 1786,572.8752,355.19476,65.12543,128.53098,6.237594e-05 1786,615.69275,65.57145,23.453918,85.76658,4.9808095e-05 1786,24.870016,265.89536,84.87829,186.15814,2.6916754e-05 1786,566.7669,27.326889,72.37976,124.93947,2.6915726e-05 1786,1.2052686,288.43448,20.694483,100.26828,2.3454695e-05 1786,609.5634,440.5321,29.583252,63.605988,2.0976906e-05 1786,584.48126,59.71147,54.112854,261.44543,1.8148427e-05 1786,1.0748227,346.61255,19.514585,129.78784,1.0584289e-05 1786,0.9469157,443.21594,21.685946,59.736053,1.9339946e-06 1786,2.964372,385.55783,56.272205,106.93118,1.292108e-06 1786,2.640114,19.314213,56.108418,110.766205,4.6360302e-07 1786,0.85903484,23.781023,17.191906,155.4056,1.4976075e-07 1786,431.3872,3.6766229,42.202484,47.408207,9.545289e-10 1787,348.2867,204.27235,20.993347,47.693817,0.15503618 1787,312.67453,289.77588,35.127045,80.007996,0.15156889 1787,622.098,234.19446,17.048645,49.549744,0.018294152 1787,297.31567,297.74338,23.828247,50.904083,0.015731802 1787,437.30023,199.76585,25.478363,46.805786,0.013374406 1787,402.50925,280.10513,24.001343,50.657074,0.005547946 1787,592.1146,336.6481,22.10254,50.53183,0.0053574694 1787,242.26227,290.7,23.433838,51.086,0.004151974 1787,390.0067,264.0993,44.36911,145.81985,0.002912363 1787,322.55243,200.1187,32.975433,79.58711,0.0021264635 1787,609.9364,210.79288,28.702026,109.48895,0.001974282 1787,387.7264,267.87262,29.044464,54.546997,0.00070075126 1787,448.19708,332.31903,36.141357,65.37875,0.00048221645 1787,618.0452,329.63535,21.10144,73.34683,0.0004511312 1787,86.124176,193.14294,58.958755,146.65045,0.00034520857 1787,586.1296,180.58133,51.4317,204.26334,0.000305512 1787,0.8581917,167.39122,18.72031,82.99191,0.00024038386 1787,611.82214,353.42715,27.324524,137.97928,0.00010261048 1787,616.4429,81.322205,22.703796,85.03725,5.0789316e-05 1787,4.6254687,118.05903,56.99519,230.63452,4.6053716e-05 1787,1.3544483,214.64511,17.594994,74.66028,4.0839957e-05 1787,611.1447,11.39545,28.001953,77.097176,3.89928e-05 1787,1.0612004,74.145676,20.012661,144.67172,3.4685618e-05 1787,597.58563,62.11646,41.202393,223.68506,3.2875152e-05 1787,567.5861,25.32748,71.51898,126.23334,2.1415706e-05 1787,174.61502,155.26456,75.25975,177.93369,1.8948636e-05 1787,1.5568628,266.19095,26.53154,140.99954,1.6859794e-05 1787,1.1375554,338.1264,19.907833,128.315,1.4797294e-05 1787,4.2209897,279.45554,54.972496,192.61823,1.0838224e-05 1787,0.7178923,423.09885,16.789923,78.04132,2.9619437e-06 1787,2.262609,20.4211,56.792816,107.150314,1.0252107e-06 1787,1.075752,9.169344,29.443115,56.308937,1.03293e-07 1787,430.51822,4.4770784,44.106415,52.310608,6.290103e-10 1788,620.88806,239.11578,18.258606,55.437866,0.05475947 1788,492.6495,107.42952,22.021576,46.077682,0.03770496 1788,322.433,196.58191,32.36203,61.308197,0.028592627 1788,429.1813,199.89813,23.069122,47.025604,0.025364684 1788,607.26,197.06496,31.626953,75.1212,0.019756462 1788,81.86301,214.93294,22.199844,47.913193,0.008129599 1788,621.1856,273.0812,17.96106,50.507812,0.0071989424 1788,312.46924,207.61842,25.51773,61.926163,0.0037094334 1788,620.6392,185.72368,18.507446,52.661743,0.002975557 1788,231.83353,286.5747,33.235596,63.431244,0.0018846765 1788,354.1254,248.81146,59.79071,184.23807,0.0018502189 1788,595.90533,105.243034,42.980347,208.32855,0.0015275388 1788,412.51474,337.00104,39.34662,65.60089,0.0012278768 1788,611.0358,227.54532,28.11084,127.61749,0.0010915323 1788,286.17776,292.45612,42.195953,128.84311,0.00097035343 1788,372.50262,271.06876,27.388458,59.95636,0.00056375156 1788,306.38544,288.8783,34.20279,88.12619,0.00031104963 1788,614.33466,111.56248,24.812012,100.71224,0.00013942833 1788,617.9532,347.85828,21.193481,80.69476,0.00013672674 1788,587.2945,253.90472,51.812622,214.612,0.00012634596 1788,0.9164234,172.51984,18.509,79.03168,9.5607196e-05 1788,609.6347,17.998465,29.511963,105.58517,5.9358674e-05 1788,1.3166342,222.48123,17.64148,71.727234,5.707988e-05 1788,609.5845,439.57422,29.562195,64.29083,2.9088358e-05 1788,1.0718896,345.56656,19.55191,126.62314,1.6515856e-05 1788,3.2126954,207.57642,56.917957,221.92313,1.0420175e-05 1788,1.8080518,85.41373,33.549767,189.44571,1.03480215e-05 1788,1.3924203,270.98114,26.777077,137.19818,7.982373e-06 1788,0.77819663,423.6251,16.866076,77.66586,2.5082707e-06 1788,6.622855,344.46667,77.870964,140.99005,2.0277678e-06 1788,2.111543,19.818138,56.41057,107.72153,3.9726137e-07 1788,429.94333,21.44409,80.112976,157.51318,3.1058178e-07 1788,0.8398755,27.720392,17.560745,141.91924,1.7314066e-07 1788,571.8938,8.663385,45.02063,46.39702,1.838739e-08 1788,417.87357,3.8908904,42.343536,48.800987,1.6806914e-09 1788,440.6888,6.2773323,46.831787,55.166912,6.7326617e-10 1788,469.63605,4.1715302,44.468445,51.7356,2.5342817e-10 1789,338.32016,195.14494,24.79425,51.75287,5.3312225 1789,496.4723,112.940315,23.231262,49.682945,0.8274735 1789,314.0968,198.51175,37.440674,96.84436,0.105802506 1789,361.15387,199.24913,20.569519,45.651917,0.01149336 1789,609.5202,184.38533,28.713562,130.34138,0.009747762 1789,417.55603,200.4911,22.462433,47.26242,0.007273342 1789,233.57199,285.9189,25.345825,50.055847,0.0066182665 1789,621.2202,246.92381,17.926453,62.665237,0.006070117 1789,606.7396,83.27245,32.407043,175.28857,0.0024405397 1789,282.4444,284.78918,28.805786,66.25641,0.0024113809 1789,618.7572,143.53677,20.389465,69.79103,0.0015387075 1789,429.62662,197.36563,24.962036,50.922318,0.0013330826 1789,344.44092,261.9587,27.491089,58.244263,0.00094989146 1789,300.36786,170.85182,70.915955,177.30266,0.00092408847 1789,620.6302,203.36815,18.51648,60.74202,0.0007938439 1789,624.43317,118.84585,14.713501,45.890938,0.0007470774 1789,617.3855,278.12253,21.76117,87.89905,0.0003068069 1789,388.9505,319.50803,33.28067,62.287018,0.00029010724 1789,617.9758,379.64755,21.170837,81.98642,0.00021894698 1789,602.7563,232.77995,36.39038,206.85179,0.00014040308 1789,587.0137,16.761215,51.72882,94.85217,8.716317e-05 1789,0.77752686,132.47177,19.099361,82.18399,3.6360543e-05 1789,1.4653784,177.21829,21.025465,113.66687,3.0638104e-05 1789,609.6325,439.8814,29.51416,63.190735,2.4330064e-05 1789,23.37645,275.09442,85.54074,176.92142,2.0349518e-05 1789,4.3277216,178.48515,57.899715,220.39876,1.5971502e-05 1789,1.9043262,278.65396,30.498125,163.02829,1.5512904e-05 1789,572.9866,352.60214,66.160095,132.05984,1.1232629e-05 1789,0.9820199,362.65573,18.297098,73.58325,9.863761e-06 1789,152.33023,165.26518,77.35425,167.42052,6.769618e-06 1789,1.3960954,48.940132,32.532364,182.43655,2.3543614e-06 1789,2.9250245,392.10376,56.376446,100.98355,8.2885185e-07 1789,2.2442985,20.944649,55.756226,105.77448,3.2953855e-07 1789,424.7263,18.092827,79.48544,161.87732,2.7226693e-07 1789,423.7388,5.47855,43.64023,51.426655,2.334584e-09 1789,455.26642,4.7361803,45.53073,52.670364,1.0085874e-09 1790,332.49765,192.81427,28.26181,59.079514,1.9985296 1790,316.0561,206.30443,25.75232,57.843765,0.7148005 1790,429.115,196.36798,22.796204,48.91095,0.1510264 1790,288.28177,199.9955,35.348022,80.97212,0.10967703 1790,247.73198,279.32388,43.419785,85.318085,0.038313966 1790,275.7047,287.94138,77.11478,194.22305,0.012454264 1790,59.254448,194.166,34.921272,81.26384,0.007322125 1790,502.51044,111.54836,25.38562,48.433434,0.004405081 1790,441.80667,198.06621,26.224182,53.024323,0.0014992943 1790,616.1034,212.91275,23.043274,81.77655,0.0010007507 1790,615.90405,165.97649,23.242615,74.62964,0.00076169 1790,620.7392,91.244774,18.40747,53.080666,0.0006232295 1790,304.42218,330.92807,38.804657,103.42511,0.0005942318 1790,342.65802,317.9646,39.416077,72.76019,0.00053322734 1790,2.8485856,298.6626,57.252827,151.50128,0.00040101385 1790,0.9989303,230.89081,13.150212,52.88275,0.00034128176 1790,615.9636,19.025942,23.183044,68.915726,0.00034093467 1790,1.0963355,169.89857,18.77092,82.08383,0.0003101072 1790,601.8093,201.74625,37.33734,197.37329,0.00026605648 1790,299.70096,149.48923,94.83423,237.53677,0.00026029267 1790,451.44885,200.92456,32.156982,79.055695,0.00019533241 1790,2.204743,194.95187,34.115456,209.68268,0.0001658665 1790,617.98645,402.11096,21.160217,77.76083,0.00015164519 1790,45.846222,180.78131,76.489105,182.51541,0.0001395056 1790,1.5302726,341.42786,19.14524,86.722534,7.789842e-05 1790,610.4671,34.924427,28.679565,152.08162,7.470999e-05 1790,2.0133579,85.558174,33.19571,193.01035,6.663781e-05 1790,0.73224694,247.0955,17.816849,83.222916,5.164717e-05 1790,434.47415,166.89282,73.875916,195.30453,3.9309685e-05 1790,587.7224,318.81616,51.424255,165.51123,1.3861096e-05 1790,146.38425,159.26488,75.26427,168.93697,1.2288603e-05 1790,1.044589,398.38077,26.393578,100.56299,4.2939964e-06 1790,2.3904655,19.368418,55.946632,111.27322,4.6073455e-07 1790,424.35193,19.927,80.66333,162.80826,3.9093982e-07 1790,0.82540774,27.089968,17.201647,146.10545,2.2279838e-07 1790,1.145319,8.670689,29.26075,54.286186,4.6001958e-08 1790,423.75388,5.9335713,43.449097,52.214172,1.5664571e-09 1790,448.4792,4.639538,45.79709,54.300926,6.7599926e-10 1791,30.100815,197.46759,25.929272,62.569946,3.161257 1791,330.68268,192.5901,24.449432,51.897644,0.58106834 1791,427.2047,196.89528,21.67572,47.234024,0.1568525 1791,42.899853,213.31277,27.318829,59.93283,0.049144514 1791,482.2272,98.801445,25.070557,52.316856,0.046314098 1791,27.852814,183.94994,47.87619,131.13518,0.037404742 1791,266.47803,267.12802,42.08911,134.0939,0.034773976 1791,476.58252,197.46916,21.68692,50.15184,0.030038599 1791,299.34674,190.09045,38.38138,108.17764,0.009232635 1791,230.2128,272.52203,27.988617,52.38675,0.0054413145 1791,447.44397,198.54855,32.23355,70.57016,0.005030623 1791,133.3408,220.67758,28.473892,60.927307,0.0011290379 1791,234.371,268.00793,46.14081,140.63962,0.001034256 1791,296.87775,308.23132,42.885895,75.22885,0.0008632536 1791,1.1764494,183.6129,18.024368,81.2834,0.00077452196 1791,621.4579,78.1439,17.688782,53.37858,0.00037940708 1791,4.116151,188.47025,58.327797,226.34937,0.00028354803 1791,617.1624,209.8464,21.984253,80.17236,0.00025980212 1791,617.76044,316.92477,21.38623,85.19772,0.00015787114 1791,608.98236,20.320576,30.164307,106.49007,0.0001076775 1791,1.3909376,226.01753,19.703865,141.08958,9.224492e-05 1791,1.7486808,131.83485,32.845886,180.14983,9.1013346e-05 1791,611.30365,120.3275,27.843018,142.05745,5.1416384e-05 1791,601.89526,209.77821,37.251404,193.36955,4.08083e-05 1791,612.3745,365.21622,26.772156,128.99191,3.9102586e-05 1791,0.8516097,305.22647,19.463196,136.52957,1.5886326e-05 1791,5.93097,336.7459,78.23451,146.21805,5.7917646e-06 1791,0.72034913,390.35092,18.886364,108.76102,4.2662564e-06 1791,0.6751009,57.302464,20.007118,159.79799,9.02646e-07 1791,1.9416602,18.244743,56.260643,109.328384,3.0866485e-07 1791,418.67847,12.375105,82.55789,174.34454,1.4843638e-07 1791,0.9717611,8.711607,29.789993,54.769753,4.2502034e-08 1791,416.435,4.149896,64.5296,52.650997,8.637743e-09 1791,461.49557,4.263034,46.677307,52.68631,5.9256183e-10 1792,470.59396,200.57635,24.29303,50.22032,15.563737 1792,228.15701,253.05232,46.922363,124.272446,2.2769737 1792,483.79474,194.7667,19.910858,46.88112,0.39893287 1792,331.1658,189.55586,23.581879,52.41748,0.09075942 1792,283.18073,194.58405,31.708832,76.942505,0.028125321 1792,427.71606,193.66014,21.391663,47.243195,0.022648685 1792,210.73134,226.89746,95.60652,209.97589,0.0151336035 1792,346.43323,198.39612,22.83609,48.070007,0.0070385844 1792,457.06366,202.53835,23.166656,52.973373,0.0045631817 1792,485.2645,96.90975,26.80008,62.622017,0.00376147 1792,455.98422,155.33911,59.524994,122.797455,0.0008071167 1792,620.79126,49.16184,18.355408,54.52754,0.0006540662 1792,616.60706,211.95125,22.539612,75.37218,0.00032552858 1792,326.2273,331.55188,87.29025,156.4924,0.00026126232 1792,2.3598437,166.3804,33.542694,195.5419,0.0002476977 1792,235.9204,196.81244,25.264511,55.15416,0.00020356324 1792,612.98676,330.3915,26.159912,143.58167,6.0910214e-05 1792,610.793,85.84986,28.353638,136.8418,5.4373108e-05 1792,1.8240951,261.87823,62.879784,183.92944,5.4013806e-05 1792,600.89685,12.684759,38.249817,110.06107,4.4815937e-05 1792,433.4473,109.17618,133.4993,227.88965,3.2592947e-05 1792,1.467225,305.67255,21.430796,150.33804,3.0495352e-05 1792,1.1833537,121.279564,20.122135,140.65414,3.0293924e-05 1792,609.679,439.2141,29.467651,64.79797,2.9335237e-05 1792,586.96826,101.50556,52.178406,228.76242,1.9917743e-05 1792,602.2393,231.92899,36.90735,191.29135,1.6539658e-05 1792,349.89938,116.59357,132.39734,220.90292,1.4575039e-05 1792,125.14659,148.23575,77.4917,177.4491,4.438913e-06 1792,0.7332007,422.23932,17.166803,79.04123,3.2899422e-06 1792,2.467378,386.42526,56.140022,104.18799,2.0833556e-06 1792,2.421123,19.006042,55.648636,107.21373,1.9320912e-07 1792,422.7223,4.3349495,44.450684,52.986958,1.5744158e-09 1792,461.46533,4.540106,46.121765,53.516,5.6201266e-10 1793,488.52432,202.45943,23.765533,48.672195,96.28418 1793,436.3857,196.77505,21.034607,48.598724,58.172302 1793,319.0543,198.65126,36.693054,74.657486,0.14660668 1793,344.81723,190.70378,23.67273,54.12961,0.104887344 1793,485.71005,185.6275,44.872223,95.20737,0.016123064 1793,620.2013,256.44928,18.945374,58.37259,0.005114642 1793,212.80576,233.55833,43.17569,144.72539,0.004650029 1793,359.8771,204.37839,22.953094,48.594696,0.00428272 1793,497.0835,94.815834,22.223022,47.870842,0.0030364776 1793,621.4917,308.41562,17.654968,52.393433,0.0025257098 1793,610.5501,197.99109,28.596558,140.40323,0.0018875942 1793,235.46387,237.27246,25.740814,58.946075,0.0017212358 1793,1.277587,226.64618,19.089432,78.87698,0.0014875133 1793,43.924534,213.30656,25.436382,47.95375,0.00088846893 1793,310.4859,155.96577,80.55078,161.4634,0.0005831565 1793,488.07953,88.33428,41.36084,106.07908,0.00037160917 1793,612.46936,281.4285,26.677307,139.33197,0.00016993727 1793,1.7917025,155.5064,33.1997,169.03548,0.00013553612 1793,608.9962,13.868086,30.150452,122.296936,9.232739e-05 1793,350.46762,216.77818,70.08276,197.10094,7.50019e-05 1793,610.9907,87.01995,28.155945,144.62225,6.9512564e-05 1793,612.8303,363.4572,26.316345,131.05832,4.5167002e-05 1793,395.5568,113.20924,138.98056,218.58281,4.4391334e-05 1793,0.23343424,324.82144,19.854723,146.30923,3.3698634e-05 1793,0.6315161,292.03085,17.9738,74.809875,3.0084042e-05 1793,0.3915434,337.86978,14.114774,56.45749,1.2317643e-05 1793,2.8863428,228.03787,55.23448,214.38892,1.08458335e-05 1793,113.67508,164.19373,81.18474,172.29266,7.558165e-06 1793,1.3359749,416.68127,34.112236,80.96164,1.3105645e-06 1793,0.92410725,61.916355,19.38353,143.73326,1.00373e-06 1793,4.723369,350.5809,79.566154,135.91656,7.913637e-07 1793,2.2128077,20.89777,55.7625,104.3201,4.0208144e-07 1793,429.4949,4.668107,63.299805,50.67519,3.218124e-09 1793,469.10013,4.3539615,45.595734,52.214085,3.1731648e-10 1794,515.2274,198.97083,21.802673,49.542435,98.944 1794,455.40475,195.63376,22.809052,49.26184,89.55946 1794,505.39664,202.67851,18.868134,47.181732,58.461983 1794,336.5986,205.15315,34.211975,92.52922,0.25166556 1794,266.197,199.76064,28.131348,54.580276,0.1969672 1794,90.86594,200.36317,33.97352,75.17024,0.022399846 1794,241.63159,248.39584,25.894165,52.74185,0.006345239 1794,491.91736,200.04199,21.282104,45.57187,0.00338313 1794,59.95422,212.55649,46.919918,117.83887,0.0026777298 1794,314.60126,196.71869,32.699646,78.34415,0.0012252682 1794,493.44543,168.6094,54.42444,104.23987,0.00039656015 1794,617.01416,55.98286,22.132507,87.866974,0.00033442496 1794,210.42459,219.75438,75.58432,178.19624,0.00033288362 1794,328.0637,343.08716,48.11734,139.02985,0.00024172595 1794,610.6851,131.85623,28.461548,150.4545,0.0001745625 1794,311.35532,149.73148,102.21274,214.09296,0.00016815551 1794,1.3083211,209.68011,17.96202,73.38959,0.00012334918 1794,588.60736,21.978952,49.05609,97.70801,0.000101066886 1794,105.82148,184.4738,44.93261,133.22826,9.6644e-05 1794,438.82974,162.35962,58.476562,104.81766,8.361976e-05 1794,1.0881852,274.1792,18.08824,72.106415,7.804298e-05 1794,612.6916,326.39624,26.455078,140.30954,7.48594e-05 1794,611.22,222.48212,27.926697,144.93137,6.468195e-05 1794,2.7657878,298.18912,55.06249,177.55408,4.5393626e-05 1794,1.9695109,211.6993,32.23922,170.38103,2.661316e-05 1794,609.9411,437.19678,29.205566,66.325745,2.2050885e-05 1794,460.9375,101.8884,144.42596,234.62994,2.10099e-05 1794,0.73183024,374.74686,14.360894,54.727295,1.8728057e-05 1794,1.3843424,337.13892,20.377369,135.2497,1.6721031e-05 1794,381.2911,105.97199,144.51138,219.94952,9.265651e-06 1794,1.1204013,112.59117,20.182848,143.7328,7.756552e-06 1794,585.8786,391.52557,53.268066,100.91965,7.0188444e-06 1794,2.8855681,80.43077,59.80886,240.49553,1.5768013e-06 1794,1.3454086,417.60474,34.852802,80.74542,1.3811252e-06 1794,2.128475,21.773169,56.426018,102.62819,4.4560124e-07 1794,437.25528,4.5588574,62.920715,49.396347,1.7359616e-09 1794,361.52054,6.872435,41.729675,45.443336,1.0418506e-09 1795,508.16428,202.86522,23.5383,51.424393,99.252556 1795,521.89606,201.15472,19.498108,50.18445,98.407974 1795,461.0584,201.28111,21.824524,49.683243,73.69173 1795,336.5528,207.8091,27.315948,63.452744,16.68359 1795,71.51149,210.4776,29.519325,52.28479,0.7004449 1795,366.73926,204.29988,21.553741,46.237488,0.08605525 1795,330.01187,192.55095,48.97867,123.2079,0.06569942 1795,619.7855,274.72424,19.361145,64.09219,0.00446344 1795,600.9967,133.38808,38.056824,201.01949,0.0010730103 1795,509.0375,83.15022,39.779205,91.61513,0.0007810716 1795,54.857918,199.8364,38.865395,104.07507,0.00062202045 1795,1.2906291,216.92764,21.59195,111.65878,0.00040229596 1795,1.2241553,327.1636,34.374893,88.4725,0.00034419607 1795,495.36008,169.52719,58.566742,107.20166,0.000312245 1795,612.38947,91.56618,26.757202,137.3048,0.00026183028 1795,2.6953614,227.42957,55.49839,211.1691,0.00021929052 1795,616.94855,198.2762,22.19812,87.138535,0.00019910008 1795,602.1931,253.79285,36.953552,189.12332,8.158338e-05 1795,610.9934,17.778816,28.15326,134.55194,8.142465e-05 1795,300.38574,139.48782,125.80087,232.83762,6.660649e-05 1795,609.79254,435.8885,29.354126,67.065735,3.5124012e-05 1795,420.94418,113.018105,133.74539,214.4148,2.9783192e-05 1795,1.1547738,386.14462,18.15014,78.47165,1.5979316e-05 1795,585.8796,390.30716,53.26709,101.75348,7.845858e-06 1795,1.3735702,140.43105,19.701468,128.7455,5.9208287e-06 1795,3.9542644,341.70602,80.11183,142.65466,4.88504e-06 1795,0.983702,442.5826,21.55548,60.684113,2.6157315e-06 1795,2.5151205,22.526283,55.30483,98.71767,6.114951e-07 1795,2.8688755,71.11901,58.474144,240.39862,6.107258e-07 1795,439.83643,4.6055503,41.79541,50.984447,1.2342585e-09 1795,502.95612,5.748109,46.34967,51.717754,4.3682682e-10 1795,461.31213,6.9591117,46.595947,49.10815,2.887255e-10 1796,510.87366,202.34483,23.373413,55.456955,98.25076 1796,524.76013,202.23393,19.917847,54.72667,98.20291 1796,464.95642,204.1851,23.686188,50.44803,40.824017 1796,335.2442,206.05217,24.228088,50.517258,7.0107074 1796,349.8957,205.6461,21.236542,46.28244,0.5560127 1796,326.4849,199.07295,39.322784,125.553085,0.17300466 1796,380.7964,205.4703,21.999054,46.831528,0.04929634 1796,321.67667,208.88339,24.492035,55.80069,0.019563423 1796,399.391,203.05946,32.792297,59.620956,0.0045785774 1796,7.5854573,216.35263,33.872414,85.130005,0.0017623822 1796,499.9913,168.63005,54.678314,110.31203,0.000739495 1796,1.6149756,200.47275,20.10677,86.39847,0.0006892243 1796,246.47798,214.743,31.897598,53.803116,0.00027930064 1796,611.9335,129.05121,27.213196,133.58139,0.00024806955 1796,302.45477,174.16565,102.147705,191.69333,0.00013548997 1796,617.45056,222.7389,21.696106,83.20494,0.00012614297 1796,612.475,323.0257,26.671692,140.19266,8.644577e-05 1796,1.4017887,232.69601,32.28901,214.69174,5.5783476e-05 1796,610.4267,16.609518,28.71997,134.76079,5.256842e-05 1796,3.8171387,150.63074,55.867252,206.53287,4.2549203e-05 1796,609.64667,439.08365,29.5,66.56586,2.9717963e-05 1796,422.36966,120.51313,135.99893,216.34464,2.0873855e-05 1796,600.72,171.90599,38.426697,189.78947,1.3513598e-05 1796,585.4275,390.01508,53.719177,103.92432,1.03812345e-05 1796,397.36526,148.60358,82.4346,158.67676,1.0329427e-05 1796,0.73863286,386.3278,18.978146,78.36661,8.291051e-06 1796,1.1209351,90.04629,30.196318,182.29333,2.792372e-06 1796,1.4438916,416.51102,34.043087,80.81427,1.472948e-06 1796,4.115134,349.86786,78.56647,136.83224,1.3268732e-06 1796,0.6624797,326.106,20.674799,94.22992,5.2730263e-07 1796,2.9277377,22.074162,54.813267,97.29581,4.348134e-07 1796,437.38428,4.8860416,62.536896,48.872795,3.6085441e-09 1796,510.82324,2.795031,47.028748,45.50597,2.145328e-09 1796,369.91086,5.357562,42.832367,49.57767,3.377784e-10 1797,534.8272,200.22409,23.888367,56.924133,99.36473 1797,521.90955,201.44513,21.889587,53.970444,98.45209 1797,483.02573,205.13428,22.42511,51.75064,37.3308 1797,336.8187,206.46205,22.317963,46.08792,14.974027 1797,473.84943,194.47366,19.029968,45.077072,1.0660334 1797,327.48795,199.1601,38.917236,137.22144,0.25804767 1797,434.3258,200.26682,23.287903,46.511597,0.014273721 1797,320.20322,215.2466,24.197449,60.845474,0.009585466 1797,361.52554,193.22371,32.28717,60.890305,0.00747811 1797,191.2538,260.35425,26.254166,52.992126,0.0024192627 1797,302.91135,174.28629,96.34973,196.5192,0.0007251414 1797,611.91327,119.75698,27.233398,127.845345,0.00053182873 1797,617.5867,211.73447,21.559998,84.43121,0.0004014765 1797,515.34906,172.23737,52.115356,105.978,0.0003782669 1797,617.1401,404.83966,22.006592,80.47305,0.0001745089 1797,185.77744,256.1303,45.447525,139.01416,0.0001289836 1797,609.6878,16.43833,29.458862,120.22062,0.0001225218 1797,1.0100391,218.15448,18.3813,80.51956,5.8652022e-05 1797,587.0304,133.46883,52.116272,206.52016,5.29595e-05 1797,438.27423,121.40529,132.79138,211.3373,3.437902e-05 1797,612.3418,274.57697,26.80487,143.87326,2.843171e-05 1797,0.90574056,288.2359,18.051413,72.111664,2.198944e-05 1797,586.98663,326.1909,52.160034,158.39658,1.4918356e-05 1797,1.7053167,176.61826,32.211758,168.3288,1.17586005e-05 1797,0.93604493,345.6936,19.410706,131.68646,1.0150138e-05 1797,1.2873935,93.55366,28.722494,151.67566,4.509504e-06 1797,3.392098,289.34805,56.552982,184.32983,4.480936e-06 1797,0.94750005,443.5686,21.587856,59.427307,3.0200515e-06 1797,2.5134375,19.84035,55.39443,104.67046,2.8474398e-07 1797,0.7198344,11.073978,11.61157,80.80682,1.4050781e-07 1797,522.6072,5.804074,45.598145,50.20886,2.5446387e-09 1797,450.3581,4.0028825,43.456543,51.416836,4.0793463e-10 1797,390.43436,3.5984035,42.414703,53.870667,2.1595811e-10 1797,415.0292,3.1526904,44.97107,48.62757,9.777219e-11 1798,542.778,203.64272,23.64032,58.067276,99.42489 1798,498.12387,202.64024,23.948334,59.73506,94.54672 1798,532.9438,205.73763,19.827087,51.777237,55.39034 1798,346.11523,210.95418,22.559692,46.045242,3.2890234 1798,331.96844,198.69592,36.04483,102.01285,0.13261347 1798,368.80396,212.22357,21.326904,45.81729,0.12646362 1798,439.15128,197.9079,31.1604,66.00061,0.0837868 1798,511.74646,197.58513,33.605347,60.88057,0.028150354 1798,312.20853,193.15204,37.00528,120.09787,0.0014587345 1798,188.05649,258.59085,44.366226,100.83328,0.0014311044 1798,521.6193,177.28152,54.92285,102.30185,0.001087811 1798,310.44595,176.72902,96.604095,202.2129,0.0005690211 1798,612.15643,117.480835,26.990234,125.57739,0.0002776599 1798,336.6765,237.33185,41.74356,166.21436,0.00011461061 1798,617.7665,231.92068,21.380188,80.86536,0.00011158887 1798,41.039318,83.499084,73.276215,192.95804,9.652609e-05 1798,0.91563314,181.65717,18.272295,72.34352,6.969716e-05 1798,461.4585,141.92938,104.40759,189.54916,6.601181e-05 1798,612.34015,316.3139,26.806519,141.23172,5.4880627e-05 1798,0.98576826,224.8123,17.97991,77.868515,4.170682e-05 1798,587.2523,132.7813,51.866272,214.98918,3.5096557e-05 1798,610.1013,14.121146,29.04535,130.58647,3.3012417e-05 1798,609.2567,437.10724,29.889954,67.683655,2.6628903e-05 1798,412.50174,140.27524,96.2652,208.48373,2.3902248e-05 1798,1.1622461,82.77129,29.108261,156.79385,1.412206e-05 1798,1.7137874,181.28876,32.912117,167.15042,1.0457229e-05 1798,585.3895,390.27875,53.75714,102.70297,1.0386681e-05 1798,3.178138,313.12778,56.41164,162.74905,8.646756e-06 1798,0.93310386,381.9074,18.498253,74.1026,6.0625894e-06 1798,0.685638,421.4674,16.601625,79.965,4.1912153e-06 1798,1.2241277,275.42548,18.842024,131.33084,3.3788474e-06 1798,1.6403598,11.146433,35.004074,78.496254,2.4325453e-07 1798,457.03595,3.1537127,44.247803,49.87863,5.833561e-10 1798,430.20703,3.054271,44.102203,56.42838,3.277414e-11 1799,547.0032,201.49672,21.424011,53.89328,99.203415 1799,515.74585,201.76604,22.803528,57.47853,15.981168 1799,350.44565,202.81758,23.465942,48.369583,5.796744 1799,396.97253,191.60258,22.249542,47.909866,0.72580767 1799,325.05838,187.50505,46.305756,121.65694,0.43532684 1799,372.96072,188.88399,29.355255,68.67775,0.06443439 1799,496.27753,191.1166,22.630493,46.812607,0.051859353 1799,1.3875481,250.7462,18.471977,79.65001,0.015394445 1799,303.7811,181.73238,39.38861,123.9283,0.002617254 1799,472.1605,194.56107,45.959686,134.21591,0.0022747177 1799,176.66866,277.70828,45.638535,156.81207,0.0019658653 1799,527.28186,174.47359,57.92511,101.55339,0.0012020121 1799,320.9378,145.9568,91.72992,215.71819,0.00064039713 1799,609.8046,78.775894,29.342041,133.56403,0.00051078695 1799,1.8834441,194.18893,33.90603,172.34903,0.00028175977 1799,617.383,179.5112,21.763672,79.9212,0.00022917517 1799,617.7542,236.73982,21.392456,82.424515,0.00013103092 1799,617.21655,405.7984,21.930115,80.97562,0.00012967132 1799,0.8796452,122.1275,18.771744,77.16585,9.5045005e-05 1799,617.9371,286.8514,21.209595,79.54431,9.4447576e-05 1799,0.9060336,163.35037,18.551842,81.12227,6.962602e-05 1799,612.5378,314.76184,26.608887,143.71329,6.889154e-05 1799,432.21487,146.70238,58.43051,120.43852,5.5329314e-05 1799,4.159131,300.14536,55.717175,174.27472,3.5535908e-05 1799,601.1288,142.11006,37.944275,186.36183,2.6495809e-05 1799,482.5918,95.776344,145.23688,246.80832,2.5587966e-05 1799,587.05664,14.8124485,51.472412,112.96598,2.3004639e-05 1799,336.47122,252.64183,30.196533,62.613968,1.9975916e-05 1799,0.97754234,380.9124,18.300783,72.74542,1.7328884e-05 1799,571.7332,355.07544,67.41345,130.62384,9.000846e-06 1799,0.6630656,418.74945,16.815672,83.669464,3.2346704e-06 1799,2.3707633,46.3953,61.6526,275.04816,1.7158966e-06 1799,403.96573,78.87592,147.08658,263.9744,1.2504779e-06 1799,0.92684734,33.431694,29.529325,160.24765,3.8669046e-07 1799,1.687181,9.57946,35.814056,80.702,6.37266e-08 1799,462.94012,2.2180877,46.376556,48.93126,7.242032e-10 1800,552.2786,207.9159,23.149292,56.330963,98.93528 1800,537.12274,206.9801,23.443665,57.103455,77.36973 1800,358.1115,207.32259,23.657104,48.1138,14.48889 1800,343.19138,192.42633,40.200348,107.41092,0.22244428 1800,567.3605,207.10199,22.90503,52.1373,0.07105338 1800,331.11136,213.82939,25.645386,61.732925,0.0466808 1800,373.8572,204.7934,22.83368,50.015198,0.020545462 1800,388.3526,203.26582,23.948883,51.261185,0.009634557 1800,452.17496,190.05173,40.328857,68.55798,0.005351531 1800,534.91187,174.3901,56.590637,111.3815,0.0040046657 1800,415.50302,209.32736,21.253876,45.465958,0.0032497332 1800,619.7109,99.75985,19.435791,57.84881,0.0013644638 1800,327.83792,151.60365,89.164,219.88448,0.0010197453 1800,185.90317,296.07254,42.13501,86.28729,0.0010145827 1800,163.54619,260.20407,74.39436,193.815,0.00083142065 1800,467.54266,103.759186,127.99689,238.86832,0.00032100605 1800,611.98145,108.12797,27.165222,141.89194,0.00024305885 1800,617.67975,235.92975,21.466919,83.10983,0.00023779114 1800,602.49457,193.84818,36.6521,182.42969,6.628243e-05 1800,611.7318,373.89023,27.414856,122.51306,4.3216452e-05 1800,1.384196,185.51035,20.925444,105.56833,2.961967e-05 1800,4.1848245,113.710754,57.711075,234.24646,2.8185226e-05 1800,609.07806,4.8181705,30.068604,145.46225,2.775932e-05 1800,433.4498,140.85907,83.702484,165.22995,2.0754796e-05 1800,1.6675587,92.59071,28.945127,152.17935,1.2392866e-05 1800,3.4450781,323.1841,55.910976,153.24152,1.2183837e-05 1800,1.1393726,365.30237,19.72043,128.83368,1.0009275e-05 1800,1.8008131,206.73401,31.278532,184.14581,7.784563e-06 1800,2.0073276,15.838415,56.442554,114.73142,5.42042e-07 1800,1.108597,8.240978,29.722858,56.445126,6.304558e-08 1800,550.4651,1.4629004,46.014893,52.151176,8.686574e-11 1800,525.3072,2.192749,45.191284,50.252163,1.6808306e-11 1801,460.492,208.15358,25.077393,46.66017,99.68432 1801,553.065,216.6166,22.922241,58.708603,97.61486 1801,517.77875,203.50789,19.859741,45.03499,96.290955 1801,531.6228,203.63992,21.987915,48.02852,84.286354 1801,566.86163,213.20673,19.686829,56.73651,59.23111 1801,349.45187,211.30627,37.37451,86.42505,54.392803 1801,370.77438,215.33548,24.639069,49.383026,1.6422855 1801,405.9941,208.22142,31.710266,65.06883,0.56077445 1801,563.1214,201.95447,45.20764,120.01654,0.37257808 1801,336.61826,190.46938,66.26294,177.49474,0.06385536 1801,387.14014,220.01358,21.47342,46.86209,0.062764555 1801,343.60916,249.28615,19.993835,48.600784,0.020284282 1801,621.3974,234.30467,17.749268,51.152542,0.0033625124 1801,181.16469,304.34366,44.550064,107.10004,0.00087587157 1801,581.26556,225.06818,57.426575,223.1925,0.00066996133 1801,515.5432,122.26715,119.75037,256.38702,0.00046187078 1801,445.757,179.59521,59.99048,96.707306,0.00041479076 1801,3.7805176,184.34836,56.378345,226.3942,0.0003602485 1801,610.5667,206.72409,28.579956,119.71503,0.0003244748 1801,616.8503,61.402073,22.296387,90.2233,0.00026499978 1801,1.7254004,167.1401,29.49227,161.51276,0.00018044066 1801,611.2808,351.72922,27.865845,134.4383,0.00014032864 1801,617.0916,283.27927,22.055054,76.54288,8.819146e-05 1801,1.4645207,249.77313,19.138105,131.57495,6.482121e-05 1801,582.3043,9.207689,56.29297,112.513214,6.206526e-05 1801,611.9123,120.46159,27.234375,147.84483,4.7743004e-05 1801,1.3915983,104.5486,20.221535,137.26175,2.8521601e-05 1801,412.19324,111.68995,144.82764,227.62378,1.6700727e-05 1801,1.1511207,365.45364,19.412254,128.71805,9.833198e-06 1801,3.1100245,384.92346,54.682087,104.47269,4.365862e-06 1801,1.6605371,10.220186,35.012703,80.45387,5.424906e-08 1801,577.6607,0.8923796,46.0979,49.3583,3.0332917e-08 1802,496.73038,206.07684,19.920807,47.64691,99.745674 1802,467.63205,207.98828,24.270508,49.060883,99.54797 1802,565.74316,214.42781,23.155334,60.13063,99.50085 1802,579.6177,216.4266,23.372742,62.954742,98.67872 1802,363.4293,213.42879,27.724762,51.943222,86.39437 1802,541.6888,204.37144,21.114014,45.095535,62.924046 1802,348.89676,208.67188,41.796417,133.63272,0.8170928 1802,551.2421,208.34686,24.460815,50.797638,0.552042 1802,422.02075,214.62918,24.216248,56.057404,0.024896747 1802,556.3739,195.69806,62.24463,96.29111,0.009891947 1802,389.59372,223.91708,22.503387,50.667603,0.0070077027 1802,328.37747,185.15207,93.698456,203.47104,0.0014110313 1802,180.32901,272.65704,58.143555,140.7128,0.001211243 1802,610.3641,178.39467,28.782593,112.809555,0.00083277136 1802,452.15042,183.29355,61.775482,94.66379,0.00036390068 1802,1.2713989,174.3447,18.636385,84.938385,0.00035334635 1802,198.95807,313.4815,28.767197,60.16992,0.0002555941 1802,585.10065,183.85208,53.20691,245.15527,0.0001423828 1802,507.0023,160.61295,82.88284,144.77197,0.00010752297 1802,611.53516,68.12804,27.611511,143.5972,9.142046e-05 1802,1.1344222,237.64478,18.050785,77.017914,6.0710023e-05 1802,1.880887,162.29234,35.02632,190.85094,5.4580607e-05 1802,612.4999,257.08682,26.64679,144.58157,5.396891e-05 1802,584.19055,10.496292,54.88434,108.58203,4.6380137e-05 1802,612.209,363.5968,26.937683,132.34332,3.9626648e-05 1802,1.5868343,74.380516,29.181942,163.57245,2.9363566e-05 1802,4.051465,334.9078,55.976643,140.68564,2.588475e-05 1802,423.76566,127.13779,140.69913,231.11102,1.5722731e-05 1802,1.1368595,380.56573,19.36318,115.14517,1.1220102e-05 1802,1.8742172,18.395317,56.195206,112.06515,1.6151365e-06 1802,1.1470947,9.092978,29.864092,56.484276,9.958916e-08 1802,341.94263,0.0,42.54947,47.295998,3.2707292e-09 1802,564.55457,1.6668669,45.760498,51.34714,5.8312445e-11 1803,568.2933,201.74869,24.932068,64.05231,99.77851 1803,536.69446,194.21774,22.3443,47.426254,99.676476 1803,361.66275,200.94049,26.744263,58.68091,99.60508 1803,503.04016,198.45186,24.493164,48.779144,99.43335 1803,605.7045,205.29082,32.34192,79.859695,99.03181 1803,472.12433,197.82587,26.07257,50.96109,98.05177 1803,549.41425,193.70486,21.177612,45.81688,96.079636 1803,432.33926,196.6949,23.603241,62.22145,12.614478 1803,581.4201,196.33876,31.296143,69.8419,8.227966 1803,414.151,200.11176,25.691406,64.22595,0.6144207 1803,622.2945,237.11858,16.852173,46.533585,0.027082264 1803,346.89468,176.11371,54.432312,108.55478,0.0070664333 1803,4.1966505,237.46063,56.689972,215.40442,0.0021916004 1803,580.95123,166.77338,58.06848,160.97775,0.0015939263 1803,1.0360807,269.00574,18.954018,85.85681,0.0012882837 1803,532.2207,182.4062,44.64923,82.445145,0.0009412285 1803,1.3354224,305.47958,19.971893,152.63782,0.0006427356 1803,0.8788754,133.7278,20.58218,136.81935,0.00038922316 1803,485.92737,170.90416,59.35504,96.304855,0.00031954056 1803,198.82288,211.07243,32.958633,74.636826,0.00024703785 1803,515.67096,144.7843,89.21649,177.52133,0.00018415121 1803,611.10175,230.68716,28.044922,162.7836,0.00016660558 1803,308.74707,133.72868,133.2345,231.6584,0.00013311923 1803,611.1938,76.947525,27.95288,156.7808,6.729246e-05 1803,423.28998,132.57709,140.81317,216.16266,5.5438646e-05 1803,608.6814,437.50037,30.465271,66.88391,4.1815456e-05 1803,605.8436,6.41806,33.30304,57.587685,3.7984988e-05 1803,602.04816,333.8676,37.09851,157.19272,2.4864601e-05 1803,2.5475929,376.47867,57.59241,113.51358,2.3244844e-05 1803,3.0887728,69.04184,58.617794,245.40613,7.846592e-06 1803,0.89079267,436.66898,21.80204,66.598694,4.7027206e-06 1803,1.5724187,8.059063,35.5431,84.55066,4.3851696e-08 1803,353.2624,0.9212663,43.669586,53.17774,1.1691213e-08 1804,363.7171,207.24844,26.526276,60.887085,99.84921 1804,546.27185,195.31638,22.435486,51.986572,99.34105 1804,518.6655,201.00658,21.744568,48.45302,99.19916 1804,576.2906,202.61957,29.807251,69.798706,99.07103 1804,477.39386,203.31897,23.74356,46.74875,98.51633 1804,560.89764,196.42905,20.860779,47.706604,91.339645 1804,599.6081,200.22093,22.479187,56.03624,48.26964 1804,440.26038,199.2424,22.771881,50.875473,0.4057173 1804,400.25266,207.5567,31.65622,73.12515,0.36383507 1804,347.55118,202.88303,22.516357,53.977203,0.14956397 1804,623.6983,213.23141,15.448364,55.310883,0.0073822653 1804,349.8632,185.19894,55.590027,102.66815,0.005412715 1804,599.95996,186.69896,36.904297,114.59325,0.0023969137 1804,531.68536,180.32162,61.55713,91.95706,0.00091296906 1804,455.93335,183.16629,60.250854,96.997894,0.0008795797 1804,1.4930745,165.10492,19.777254,131.36914,0.0003937834 1804,163.7728,301.34317,36.25476,77.39917,0.00021259516 1804,543.4541,161.82289,91.78998,165.50435,0.00019997885 1804,587.9498,199.54356,50.953613,242.04411,0.00013742821 1804,583.8927,18.827702,54.47101,100.12332,0.0001004658 1804,611.6376,78.49187,27.509094,146.5979,6.808361e-05 1804,612.5186,314.88858,26.628052,142.87701,5.8515474e-05 1804,3.4346175,115.29974,55.98972,218.3104,5.1843228e-05 1804,0.969729,334.40933,19.03742,137.24036,4.869055e-05 1804,315.8434,127.29039,133.65799,245.41069,4.827714e-05 1804,609.0209,438.4745,30.125793,66.06146,3.2312084e-05 1804,426.52023,134.32602,143.51028,211.22183,3.0509576e-05 1804,1.8985336,204.07698,33.699142,183.09697,2.5820402e-05 1804,605.48224,8.3116665,33.66443,56.85598,2.545075e-05 1804,2.973942,324.03845,56.94416,152.65338,1.6722019e-05 1804,1.3901514,54.97122,33.21613,186.08928,1.0385749e-05 1804,584.9073,386.48862,54.23938,106.48706,8.002832e-06 1804,2.042261,19.647305,56.774525,116.599365,9.480854e-07 1804,1.8169645,415.83752,34.359325,82.5499,8.883161e-07 1804,361.36084,0.7447982,44.74179,52.083305,4.794335e-08 1804,237.50354,4.8417645,44.81604,48.288696,8.214445e-09 1805,539.3473,197.14357,24.943237,52.34703,99.85704 1805,366.0474,204.1148,29.63736,68.59595,99.798645 1805,563.5608,190.84889,23.270874,56.355484,99.49615 1805,585.52997,200.90268,26.198914,69.58081,94.0495 1805,608.27563,201.46028,28.500793,59.48311,83.77317 1805,576.7424,192.18166,23.463562,52.808044,22.565811 1805,482.70496,196.53273,30.911499,67.92479,21.246664 1805,401.94696,209.08794,31.81195,74.80406,18.138018 1805,440.67636,198.42091,21.107971,51.42308,1.3221297 1805,424.3607,205.87268,34.68744,82.15787,0.0493307 1805,471.93143,197.53139,23.415619,57.519043,0.048611518 1805,601.7834,187.32481,37.050964,157.68172,0.005583155 1805,545.4056,174.91902,64.27002,92.90715,0.003959053 1805,306.04605,251.82584,33.307434,77.71918,0.0016736849 1805,154.9566,205.81381,38.1501,100.597534,0.0006891073 1805,347.59085,172.76996,70.64368,149.10303,0.00039247985 1805,531.9884,128.81549,100.9881,212.23633,0.00028880153 1805,2.6073568,314.62692,61.612354,163.97263,0.00022189319 1805,1.4284627,324.82336,21.886274,130.56659,0.0001532438 1805,611.7736,77.89084,27.373047,151.05325,5.424414e-05 1805,582.69495,16.711065,55.756226,101.61724,3.7007532e-05 1805,611.91864,366.8441,27.228027,129.75842,3.6851096e-05 1805,1.1045524,189.59955,18.96967,126.055695,3.330381e-05 1805,604.6721,7.8795934,34.47455,56.189865,1.4087785e-05 1805,1.4489795,120.74193,19.76456,128.84654,1.1332945e-05 1805,1.8101612,215.68454,33.948166,211.79062,9.350317e-06 1805,2.307557,409.73843,34.955166,86.32126,6.632821e-06 1805,2.6880584,77.26102,57.824856,229.26346,1.6811299e-06 1805,1.4499724,12.125612,36.568718,81.55684,1.2580705e-07 1805,236.8391,4.052671,42.47194,47.82996,2.2448607e-09 1806,376.55927,199.90784,31.900116,77.86151,99.90325 1806,410.55356,200.45181,34.1864,83.537506,99.86168 1806,575.2338,194.22972,23.577026,53.711273,99.57789 1806,605.33014,189.4543,31.010254,79.395096,98.88811 1806,513.7951,198.25906,23.180237,46.533646,98.87981 1806,594.6229,193.58537,22.744995,57.530212,83.99485 1806,490.8222,205.09412,24.728455,45.901413,1.8644203 1806,295.0334,264.3338,47.82773,123.18063,1.6829901 1806,51.68213,218.03581,35.065544,69.12346,0.15765686 1806,361.95294,198.58618,23.93747,58.899048,0.07717991 1806,558.5699,165.34004,65.66052,106.4521,0.011798307 1806,357.36816,175.95651,75.86105,144.5788,0.0012898968 1806,153.71275,212.52605,34.86281,77.94487,0.0010389369 1806,600.7938,159.96744,38.352844,260.8595,0.00068702985 1806,608.14825,15.815319,30.998413,119.35976,0.0005511842 1806,0.0,310.91226,49.07975,150.05258,0.00039239635 1806,490.2205,151.79028,85.99124,198.68506,0.00010488756 1806,1.1780193,195.91792,18.653694,135.4539,6.951071e-05 1806,612.06555,370.24786,27.081116,126.002045,6.171973e-05 1806,583.0643,0.0,56.082397,259.1415,5.563758e-05 1806,1.5067236,114.44469,19.624443,129.66957,1.2719293e-05 1806,1.2663876,441.891,21.686367,60.219116,2.0477141e-06 1806,3.1497152,74.18974,58.569427,222.84996,1.1650844e-06 1806,1.8402654,12.168617,36.07815,82.891174,5.0661452e-08 1806,486.89053,2.879157,42.902313,52.619442,2.2564899e-09 1806,509.13367,5.50875,47.55072,49.08758,7.738715e-10 1807,420.59436,195.7849,31.709198,87.43135,99.87011 1807,387.63794,196.43199,33.520844,82.80733,99.75414 1807,539.9903,194.51366,24.575195,52.17073,88.613815 1807,605.5763,189.15619,31.014404,77.79584,22.611223 1807,499.52158,196.91756,32.22287,59.75145,3.6328797 1807,36.116207,206.93555,34.823765,74.08176,0.8426075 1807,370.13403,188.87772,31.019775,73.775024,0.28297457 1807,439.15588,206.69171,25.825745,68.13849,0.26730898 1807,621.07556,180.12082,18.071106,55.51828,0.24055532 1807,592.7822,183.84409,21.286438,46.905685,0.036052972 1807,303.05164,234.76694,52.18634,152.85806,0.03315203 1807,600.4196,178.41084,38.72705,216.85088,0.025736665 1807,583.7895,155.21455,39.552734,97.423935,0.009777011 1807,227.55899,191.04462,24.186584,53.88437,0.009330808 1807,621.6855,221.29857,17.461182,53.05818,0.0056355335 1807,621.566,339.65384,17.580688,51.270935,0.0049673114 1807,372.37424,178.42879,72.395996,136.2758,0.0013401483 1807,612.4559,319.1221,26.690796,138.76443,0.00044239458 1807,493.05548,121.14187,144.08447,238.94275,0.0003376366 1807,610.64813,77.57669,28.498535,171.73157,0.00026845152 1807,16.94879,179.45703,78.468605,150.11688,0.0002259794 1807,615.1151,254.74947,24.031555,99.32909,0.00021562882 1807,1.1625253,233.29698,27.852877,164.36006,0.00017301137 1807,324.11365,133.76427,149.1571,237.41444,0.0001525458 1807,1.7467432,148.7253,28.12743,137.05183,7.564091e-05 1807,614.45685,25.262836,24.68982,97.91341,5.9926668e-05 1807,609.4287,437.4336,29.717957,66.73407,2.7555958e-05 1807,585.2385,378.05054,53.908142,113.40796,1.6933951e-05 1807,0.93463135,348.712,33.541283,140.45837,7.95406e-06 1807,1.0091391,441.24136,21.86382,61.575745,2.2918707e-06 1807,0.9153174,60.697697,19.003727,141.98663,4.2203484e-07 1807,1.8300228,12.754776,35.919815,82.07144,8.4959375e-08 1807,498.61865,2.9034572,43.25128,50.845486,2.5746671e-10 1808,569.49457,196.36768,25.831604,55.902023,99.907936 1808,433.5568,196.93643,34.112427,94.1095,99.897964 1808,403.50763,200.03246,36.771454,86.97774,99.64484 1808,617.6484,201.15016,20.2005,54.98314,61.17153 1808,385.9703,199.40894,21.249847,53.405624,21.214664 1808,306.70752,240.60661,55.082275,153.28975,0.07180927 1808,366.86337,197.23274,23.158783,54.8293,0.069814615 1808,443.6625,249.90376,20.109955,45.2686,0.030252773 1808,483.9437,213.38336,33.568146,72.685974,0.012332305 1808,22.107576,209.7231,36.88459,75.00978,0.008452732 1808,605.2415,183.6351,33.90515,169.92273,0.007562205 1808,317.93127,254.61923,26.228851,58.646667,0.0044112224 1808,620.03094,68.873085,19.115723,57.74666,0.0025026829 1808,398.81628,179.22113,93.89221,161.9559,0.001205925 1808,616.04803,289.66843,23.098633,88.21542,0.0010622898 1808,466.73526,193.35182,75.261444,141.02296,0.0004752876 1808,554.846,175.14745,61.899048,97.23912,0.00039225793 1808,585.7749,6.929798,53.371765,111.1196,0.00023045445 1808,134.13602,200.79704,40.972275,125.44133,0.00021743194 1808,562.26874,118.94055,74.47894,245.25467,0.00013337363 1808,6.6935353,184.44003,75.856155,154.9617,8.568426e-05 1808,610.40497,44.3744,28.7417,174.75476,6.937713e-05 1808,601.6578,320.35052,37.48889,169.18692,6.161363e-05 1808,1.9671363,186.46812,27.903711,136.41536,5.9284444e-05 1808,609.0651,437.96167,30.081543,65.577515,4.025018e-05 1808,0.43164715,322.51865,26.853798,153.14789,3.1381e-05 1808,0.9973991,252.50728,19.583937,134.30333,2.5601388e-05 1808,612.9061,0.28246745,26.24054,48.919228,1.2681335e-05 1808,1.578129,120.511475,20.027828,127.616974,1.2511009e-05 1808,0.5524703,410.0991,17.333698,90.299194,5.347126e-06 1808,2.0907748,18.088903,57.098923,114.39536,1.0136572e-06 1808,2.363055,393.5211,55.56288,99.77542,9.972416e-07 1809,464.6667,198.02342,34.868683,105.44585,99.92519 1809,421.58878,203.03874,38.88385,95.98192,99.848076 1809,587.81586,199.1191,29.17566,60.078537,93.73517 1809,417.54523,207.01427,20.48172,47.549515,6.024288 1809,540.41376,211.4352,30.24762,73.00987,0.99184215 1809,380.07022,197.84044,22.413544,51.488052,0.17910957 1809,482.78162,207.34038,32.414734,86.55696,0.020381916 1809,312.86377,256.76276,46.90741,147.72336,0.017574657 1809,6.495145,202.20317,35.042683,79.66179,0.016023811 1809,394.87387,201.29607,22.274597,54.684647,0.011814058 1809,536.56793,261.42392,28.60669,62.774414,0.0031642339 1809,618.8639,212.96179,20.282776,73.69983,0.0015864987 1809,518.0856,195.95833,73.33563,149.87267,0.001494059 1809,397.27377,176.6166,92.802704,164.25594,0.0008931047 1809,584.85565,178.52191,50.919617,185.02838,0.00072529353 1809,610.82025,111.01474,28.326416,133.11858,0.00036030004 1809,1.3427173,224.33139,22.257877,140.31815,0.00017502891 1809,612.20624,322.32407,26.94043,132.7995,0.000119078366 1809,2.581683,188.98326,57.540363,208.43257,6.208147e-05 1809,1.489983,141.69197,20.745337,144.92644,5.9302998e-05 1809,608.836,437.4222,30.310669,64.76276,4.2107262e-05 1809,609.93463,10.807617,29.212036,119.7755,4.077224e-05 1809,584.844,383.82205,54.302673,108.43161,1.4272632e-05 1809,0.56937337,338.20255,19.61255,135.93195,8.588504e-06 1809,3.0664616,333.1082,56.482735,149.5138,1.8298541e-06 1809,1.3526237,418.1193,34.772594,79.82852,8.1402743e-07 1809,2.5461183,18.773659,56.087234,111.51069,5.761902e-07 1809,0.8454354,65.63857,18.356644,145.12286,5.5506655e-07 1810,440.65408,201.83667,46.557343,110.90219,99.93518 1810,499.33725,198.49696,44.984406,119.866104,99.790985 1810,613.001,193.92958,26.130371,65.787704,92.09667 1810,434.42307,202.61293,24.861908,60.686325,2.065601 1810,613.1931,228.89175,25.953552,77.270966,0.0441057 1810,461.63138,256.0051,22.645355,52.877075,0.028042827 1810,411.2016,199.33298,32.499878,76.22897,0.012955002 1810,375.78708,192.00311,31.024689,68.85303,0.011539702 1810,597.84174,156.35562,41.30493,166.9404,0.008460667 1810,621.1724,269.4023,17.974243,57.055634,0.002038382 1810,1.4287435,198.23817,17.773426,74.85252,0.00036530822 1810,116.2762,198.63644,42.5681,137.16653,0.00028658798 1810,455.5179,155.27539,137.95242,211.85773,0.00012829696 1810,612.1712,286.7242,26.975464,152.16818,8.020892e-05 1810,610.893,75.34318,28.253662,172.8612,7.5817996e-05 1810,606.9482,4.0244923,32.198486,118.2033,5.343527e-05 1810,1.4146436,212.78728,27.503292,142.08629,4.6405446e-05 1810,608.6386,437.40677,30.508057,66.15662,4.476622e-05 1810,585.21124,388.4989,53.935425,103.70297,1.1836728e-05 1810,1.6232967,121.97243,32.884842,169.42915,1.067461e-05 1810,0.84759116,320.028,19.27708,131.76288,8.080135e-06 1810,2.4338331,14.8981905,56.107445,113.44969,2.586806e-06 1810,0.8647884,392.35944,28.492191,103.80481,2.347689e-06 1810,3.2962403,339.77063,56.362198,143.13208,8.113365e-07 1810,0.89382166,60.778217,17.877428,145.0889,6.741783e-07 1810,1.1738477,8.291621,29.956951,60.702038,6.4481114e-08 1810,225.89552,4.7263737,43.156906,45.216393,2.5359561e-09 1811,465.59357,193.6273,53.15454,135.29283,99.84016 1811,543.9381,194.95721,51.691467,154.06473,98.4977 1811,452.97064,191.99475,24.786041,72.91083,66.96739 1811,428.09955,195.03256,29.864166,74.3573,0.7843872 1811,107.77872,214.26875,28.046509,56.304886,0.1426787 1811,310.94705,254.78319,46.356964,137.04274,0.101288 1811,494.2017,262.02957,24.69748,59.348236,0.0127503 1811,384.49615,189.59082,31.797607,69.48184,0.011545667 1811,554.7848,226.07927,28.30597,70.354996,0.007022862 1811,102.61715,201.72354,41.259117,132.95386,0.0029424517 1811,436.83005,166.58537,124.140656,218.16875,0.00036015507 1811,610.2745,220.70537,28.872192,132.23552,0.00027097814 1811,501.6086,147.76285,128.14645,240.608,0.00020622065 1811,609.6979,84.92306,29.448792,131.99557,0.00013956682 1811,612.1497,317.52762,26.996948,137.15479,0.00010723131 1811,1.1226147,183.04306,20.215649,119.99634,9.53697e-05 1811,584.7232,5.9845247,54.423462,119.77605,2.8976609e-05 1811,1.7015023,213.05579,31.407171,171.29327,2.728078e-05 1811,0.91027266,110.19068,19.376417,130.82153,1.4190386e-05 1811,585.54004,384.12463,53.60663,108.25018,1.1680465e-05 1811,0.8878182,341.5825,19.304642,129.42737,6.2429144e-06 1811,3.485674,342.00067,56.64052,138.67169,1.5406742e-06 1811,1.3676139,418.11716,34.678303,79.862274,8.925502e-07 1811,2.8467073,71.23547,58.896458,227.10205,4.6625271e-07 1811,2.202876,11.943516,35.01453,80.65625,1.05623386e-07 1811,251.04594,5.840112,43.61125,46.515503,2.1509175e-08 1811,218.03888,2.7842693,44.227356,46.801666,1.7497046e-08 1811,427.79718,5.191496,46.15085,50.227776,4.859011e-10 1812,499.7297,194.49838,52.424286,152.5662,99.839455 1812,589.5087,189.81961,49.63794,183.52124,99.63316 1812,603.32733,268.15997,31.790161,83.72583,1.1365261 1812,611.4603,188.57745,27.482422,92.030365,0.22181123 1812,476.10538,198.93939,41.48178,115.6741,0.18060715 1812,381.5215,196.38414,23.648438,51.6425,0.14583437 1812,623.12384,245.24823,16.022827,46.490448,0.026989877 1812,403.4956,189.67345,32.783722,76.882126,0.02060968 1812,522.711,237.3702,24.664246,63.51143,0.015176202 1812,308.73654,248.78,55.920135,157.06046,0.0071403147 1812,507.33914,213.48755,27.936981,72.91745,0.006561158 1812,624.7907,290.49268,14.355957,46.420563,0.0039907806 1812,603.9028,234.75865,26.653442,67.74455,0.0039025268 1812,105.171394,216.36055,25.654213,55.92366,0.0018760406 1812,470.9344,176.43935,121.78644,225.1418,0.0008341614 1812,101.24065,244.7159,44.83316,143.55879,0.0007414624 1812,601.5127,313.48026,37.633972,180.28094,6.2202664e-05 1812,608.88055,83.81049,30.266113,157.94864,5.3076958e-05 1812,1.1643058,196.4806,18.875603,121.688,2.3915336e-05 1812,609.2683,437.29825,29.878357,66.54025,2.3062144e-05 1812,2.7638853,18.067814,54.40304,115.534515,1.2025996e-05 1812,1.0977498,360.35974,18.669933,126.2301,8.471495e-06 1812,586.62634,16.640287,52.520325,102.5147,7.918563e-06 1812,3.5860906,170.19986,56.15994,203.52667,6.89782e-06 1812,1.2273145,107.22456,18.472015,132.74237,6.49791e-06 1812,3.4423275,315.51202,55.88301,157.88861,6.024263e-06 1812,1.324069,9.338438,29.783184,58.067238,6.619659e-08 1812,212.5782,4.340015,43.178528,46.912403,4.6042516e-08 1812,251.31776,2.923789,45.392258,54.871212,2.0943618e-08 1812,501.57117,3.5999057,47.766785,51.843716,8.3913e-09 1812,461.58344,4.4771748,47.302094,52.482033,1.7905852e-09 1813,548.60516,199.66547,60.285095,185.05475,99.77306 1813,544.0445,208.2382,36.2865,107.6389,0.2359946 1813,412.54004,189.29643,31.35199,63.974716,0.2038683 1813,497.49033,219.26587,40.42697,95.70261,0.08333518 1813,572.4337,253.91795,25.0,60.19084,0.040307287 1813,312.23477,254.95152,45.572174,146.47182,0.035269435 1813,319.3736,253.69402,27.535675,64.55208,0.0010506532 1813,88.28402,203.9236,44.903465,138.10762,0.0005438532 1813,570.60034,283.04727,28.00061,74.374176,0.0003910806 1813,613.1103,246.87595,26.036377,120.535675,0.00036683385 1813,479.63898,82.10036,71.756226,224.61427,0.00028902967 1813,610.6338,78.3632,28.512878,142.25461,0.00010951983 1813,617.1885,47.702366,21.95819,79.751816,0.00010309866 1813,1.4796274,202.18213,18.543165,138.38785,5.446611e-05 1813,603.7516,321.9271,35.371216,160.70187,4.726767e-05 1813,1.0892415,329.22507,18.023275,134.75,3.9636474e-05 1813,609.6373,436.6194,29.509338,68.065735,2.4821196e-05 1813,585.9466,17.204287,52.539978,98.98809,2.376034e-05 1813,3.339865,148.43042,58.1252,214.82632,1.174141e-05 1813,3.694292,322.14734,57.627274,158.73495,9.460302e-06 1813,1.0335644,70.73298,17.7883,142.63849,7.5133207e-06 1813,1.9661369,132.7237,28.879942,153.53375,3.323147e-06 1813,1.9838884,414.40268,34.457066,82.57742,1.1641781e-06 1813,1.7828875,11.06432,35.64592,79.05992,2.8114334e-07 1813,319.17065,4.788815,44.555695,52.031036,3.692401e-08 1813,381.82953,1.3376839,45.409393,50.762005,8.80505e-09 1813,277.14694,4.6720214,45.884186,49.45735,5.108332e-09 1813,251.13904,1.1149235,46.536438,46.463097,2.6073392e-09 1813,470.19278,3.305145,45.21695,55.3537,1.6001696e-10 1814,536.4192,223.67297,28.903442,72.20996,9.056702 1814,498.31705,229.20773,42.557526,99.30118,1.7498487 1814,388.92697,195.4438,23.516449,51.858307,0.6293035 1814,510.03693,286.90588,27.063416,52.043396,0.18411198 1814,309.82858,264.02612,41.573395,112.680176,0.16977902 1814,542.80115,239.36024,45.48932,102.55504,0.088166416 1814,553.02673,294.10706,22.704346,46.835846,0.012355422 1814,63.806446,209.09332,44.64533,141.52701,0.0053789653 1814,70.76253,230.20438,26.701767,63.003235,0.0029379013 1814,170.63228,218.23262,23.201462,47.466385,0.0017194246 1814,317.9407,255.75294,24.083038,48.845383,0.0015362663 1814,1.10042,337.29584,40.670105,113.2189,0.00131298 1814,46.365646,219.52763,37.223442,80.82417,0.0013125506 1814,565.3196,284.04037,22.489197,51.394165,0.001184863 1814,612.8289,319.4965,26.317749,129.94946,0.0007884268 1814,508.2323,185.59743,109.88373,186.3998,0.00078545033 1814,421.6578,204.75787,34.457367,74.80847,0.00070046727 1814,3.7821224,195.4183,54.34537,243.91815,0.0006898148 1814,132.36978,290.65768,55.0708,142.80197,0.00068459427 1814,287.47137,219.57484,96.50818,226.02458,0.00049917697 1814,1.1524854,236.48495,18.159086,80.06091,0.0004635786 1814,622.3858,295.2558,16.760864,53.3468,0.000458951 1814,616.37164,51.115944,22.775024,78.28103,0.00035978464 1814,585.3763,217.46394,52.701843,204.88017,0.00022325508 1814,611.9339,85.782814,27.212769,140.54184,0.00019594457 1814,612.4268,182.397,26.719849,132.33722,4.3684107e-05 1814,583.4213,13.881309,55.638306,110.38213,3.0346666e-05 1814,0.8295638,286.10223,19.787092,99.34485,2.5267967e-05 1814,586.61536,65.58569,52.341248,253.53857,2.2907656e-05 1814,609.7043,437.86026,29.442383,66.6196,2.2411597e-05 1814,585.8359,380.85464,53.31079,109.39938,1.1494727e-05 1814,0.891757,408.73972,18.127556,94.17514,7.2819653e-06 1814,2.3579135,130.5744,34.191345,182.06723,4.8759366e-06 1814,2.9913704,16.937872,53.801704,119.20544,7.236161e-07 1814,539.3519,34.604103,44.44867,170.63852,3.1987955e-07 1814,1.1598047,8.925974,28.908512,55.96588,8.488729e-08 1814,434.89792,1.7665105,47.932556,59.27432,2.6269884e-08 1814,406.954,4.1707764,50.31375,52.182655,1.0525931e-08 1814,329.13474,0.1687386,42.80539,48.885513,3.235295e-09 1814,353.60193,0.13168783,45.77359,49.078976,2.4631328e-09 1814,461.8519,2.3059082,49.68466,57.039433,2.3928024e-09 1814,379.78802,2.6661654,45.916504,47.979122,1.4535964e-09 1814,547.5639,3.2158628,67.10242,50.76178,6.575405e-11 1814,503.67532,0.012779948,47.411835,65.14523,6.358651e-11 1815,557.72327,241.68422,51.979492,138.61241,6.768649 1815,174.08395,219.4422,24.205765,54.41925,1.4747697 1815,423.34177,197.73834,21.667725,46.916794,0.5406772 1815,612.5625,203.31235,26.506287,99.37439,0.32018852 1815,305.6391,257.28183,43.15152,132.42215,0.06792095 1815,575.7016,230.99884,30.75763,78.596405,0.05735986 1815,428.68805,194.04259,39.57489,88.4088,0.031581696 1815,620.50116,256.26044,18.645508,65.92276,0.021687917 1815,577.901,308.51288,28.216614,66.57681,0.020266227 1815,60.250908,225.01587,21.477173,49.10205,0.010600894 1815,591.9686,226.88785,39.3609,146.50192,0.007669149 1815,613.1011,276.72562,26.045593,109.23352,0.0037128667 1815,5.280319,254.35661,73.57564,191.96971,0.0036378384 1815,152.23257,211.6827,56.2343,146.64647,0.0027920376 1815,605.7617,78.1428,33.38495,81.17329,0.002532574 1815,406.5108,199.22942,23.757172,51.08281,0.0016013099 1815,615.2929,144.11732,23.85376,96.1095,0.0006117583 1815,1.1511679,305.93936,18.843037,96.33615,0.00053513265 1815,132.81941,272.2218,57.403275,159.44632,0.00029079363 1815,582.58685,6.164284,56.559814,323.1661,0.00019740564 1815,1.4216089,209.47504,30.862656,180.71298,0.00010600771 1815,1.4107438,106.9723,19.366978,135.26376,5.9443704e-05 1815,612.3881,365.53735,26.758545,131.10458,5.3365806e-05 1815,608.6035,4.931973,30.543152,97.85705,4.7547484e-05 1815,569.9,324.6785,69.24664,165.5459,3.4691504e-05 1815,364.78226,154.05785,83.41333,150.65926,2.894286e-05 1815,4.313226,384.05338,55.63507,105.38727,2.7700875e-05 1815,1.2004232,377.98483,19.08168,118.37601,1.563265e-05 1815,3.1416652,64.17547,59.418453,251.69391,1.0365836e-06 1815,2.609183,16.358595,55.00594,121.01434,2.4353352e-07 1815,577.1006,3.3863802,49.163086,57.5696,7.1077353e-09 1815,494.0823,0.0,48.096954,59.00465,8.7319894e-11 1815,532.0688,0.0,45.074768,61.5182,2.3719433e-11 1816,390.12854,196.67075,21.456726,46.227783,37.3972 1816,159.00958,215.76176,36.68576,74.25499,0.27579293 1816,44.865974,216.5749,23.554008,53.926254,0.0051382054 1816,306.67465,257.14148,42.856293,151.17395,0.00481636 1816,405.30963,191.9947,31.604706,67.290726,0.0028246678 1816,141.4447,208.99796,37.853394,147.93985,0.0019458594 1816,401.24335,170.68118,23.705963,51.82939,0.0018119068 1816,619.52014,79.73187,19.626526,61.434097,0.001471696 1816,621.8176,260.34378,17.32904,51.602203,0.0010597652 1816,291.7827,255.04344,37.49182,80.87813,0.0008652019 1816,126.75141,282.72906,55.28866,160.78668,0.00060421554 1816,609.93744,89.869026,29.209229,129.56775,0.00050175574 1816,606.65894,277.70078,32.487732,84.22632,0.00042165793 1816,586.07404,163.01099,51.351685,219.67978,0.0003788734 1816,2.5878403,209.63235,53.057224,241.96973,0.0002160069 1816,617.5188,357.65073,21.627869,85.76495,0.00020655566 1816,442.23547,184.34091,73.645935,151.54059,0.00020374618 1816,0.7837541,291.0673,19.428745,75.87692,0.0002004562 1816,611.49274,189.47495,27.65393,128.6171,0.000110910936 1816,584.48395,16.942179,54.66272,113.23402,0.00010993348 1816,1.9666733,198.52121,28.599207,137.06964,9.51601e-05 1816,126.010994,196.97406,105.877266,212.54855,7.349311e-05 1816,366.20975,148.7224,81.434265,148.00493,4.879835e-05 1816,0.89218426,317.4158,31.490082,170.76953,4.7711233e-05 1816,600.8747,293.30777,38.271973,187.4403,3.833925e-05 1816,609.4141,440.92667,29.732544,63.683228,2.572636e-05 1816,1.493466,124.64073,19.356087,137.71477,2.4019155e-05 1816,0.82334065,399.67233,15.718501,66.26642,1.6362997e-05 1816,3.519105,93.55004,56.627747,229.01578,1.0876992e-05 1816,607.4742,3.9386296,31.672485,62.067635,7.0044402e-06 1816,2.169992,418.4225,58.135387,78.20572,3.1616144e-06 1816,545.7948,3.4164193,44.78717,137.68921,1.5519872e-07 1816,362.62445,7.8110824,47.0755,47.48677,1.4164898e-07 1816,2.659821,16.744282,55.57848,119.13075,1.1786376e-07 1816,1.0945101,9.028073,29.336239,54.243114,5.8483174e-08 1816,326.46735,0.2927246,64.457245,46.71436,6.278072e-09 1816,472.38678,2.8254657,48.140747,55.2558,5.728419e-09 1816,394.0047,4.274686,44.789215,45.58736,4.456195e-09 1816,533.70026,0.5817204,44.542114,50.337322,1.5112992e-09 1816,441.9319,4.2312746,47.368134,48.43607,4.481012e-10 1816,570.37396,3.18716,45.480347,47.40303,3.0271376e-11 1817,432.23123,198.28177,24.569763,47.89064,20.787306 1817,286.24017,256.88565,40.29138,110.35739,0.123449214 1817,417.60257,193.64487,25.9003,51.958893,0.022733279 1817,620.00934,59.141537,19.13733,58.557415,0.013849212 1817,422.16705,178.96399,43.611603,96.68671,0.004244598 1817,489.99466,192.02162,27.44162,54.63063,0.0034228906 1817,605.85187,26.92825,33.2948,136.28688,0.0033232823 1817,385.11792,174.58495,42.862,92.70839,0.002629352 1817,141.16533,204.34758,44.93608,137.03343,0.001727511 1817,1.184908,217.02016,17.767302,71.196396,0.00075229513 1817,122.529144,260.13327,57.81549,150.07681,0.0007476091 1817,266.8645,223.74324,97.380066,212.1324,0.0005336496 1817,615.7469,105.50705,23.39978,83.93309,0.00035454903 1817,537.9861,28.293402,25.303406,55.250816,0.0002780961 1817,610.77606,176.53554,28.370605,129.08406,0.00021903616 1817,2.0140293,151.34471,33.398064,157.0894,0.00011406943 1817,617.72424,306.98785,21.422424,80.09683,9.0788984e-05 1817,414.06866,154.5671,26.813385,56.643433,7.144388e-05 1817,612.83887,330.85843,26.3078,137.58261,5.305019e-05 1817,370.18558,140.62968,91.80521,193.25328,3.7776328e-05 1817,575.4774,131.06686,63.66925,240.04382,3.7664056e-05 1817,1.568978,233.511,30.96172,183.19984,2.7182145e-05 1817,609.81116,438.30933,29.33551,66.1196,2.2700748e-05 1817,0.7089844,87.8357,18.448992,138.75659,1.5319763e-05 1817,607.5431,6.3970346,31.603577,56.90255,1.3440055e-05 1817,0.75842774,347.22333,19.245287,130.64023,8.3800205e-06 1817,585.9218,390.60962,53.224854,102.38794,7.786227e-06 1817,530.8997,17.042696,45.392822,117.12668,1.500828e-06 1817,1.3150343,418.94397,34.725468,79.326965,9.301841e-07 1817,5.500518,355.85312,79.09648,129.10959,6.218313e-07 1817,2.2768376,16.048555,55.78407,115.44202,3.045897e-07 1817,1.2770996,8.857168,29.321358,54.574554,9.4058485e-08 1817,387.06467,1.4599171,44.095856,47.012604,1.0754193e-08 1817,449.52423,2.9324024,43.562927,50.954895,6.5447807e-09 1817,496.35672,3.2898812,67.31351,50.621017,4.682093e-09 1817,577.36084,4.5401773,46.030396,48.305496,3.2691763e-09 1817,540.64514,5.2895885,50.07086,54.337517,2.8281786e-09 1817,298.28387,0.22538087,45.16037,53.801838,1.7398598e-09 1818,401.17252,200.93758,19.737488,45.458786,94.96373 1818,435.28903,193.08525,24.598633,50.9765,0.44224453 1818,243.59712,207.49002,24.387375,50.362335,0.18579264 1818,300.50278,259.53214,41.951538,138.85617,0.011717504 1818,439.57376,190.46251,38.235718,88.947495,0.008394544 1818,158.03183,215.51549,31.970886,76.82823,0.006837525 1818,68.18638,309.5646,27.964767,59.986115,0.0051591457 1818,609.2077,250.45746,29.938965,117.2272,0.003508888 1818,60.08294,222.73473,42.465485,147.25319,0.0031560846 1818,387.14532,175.35413,41.95041,95.6185,0.002726384 1818,527.56085,114.772606,58.406677,150.0214,0.002115731 1818,623.7908,84.17719,15.355896,49.038826,0.001380937 1818,621.5129,237.62027,17.63379,54.546204,0.0008955755 1818,611.23804,89.15456,27.90863,109.56462,0.0007579395 1818,284.89984,251.10863,37.888855,90.011795,0.00074146304 1818,613.09094,12.71947,26.055725,84.33739,0.0006137247 1818,112.08628,253.08865,27.54757,62.28,0.00055031176 1818,138.92238,272.31238,42.50377,111.37833,0.00037746114 1818,616.6031,147.236,22.54358,90.67471,0.00016129926 1818,611.4443,310.90274,27.702393,139.31909,0.00014821389 1818,1.5425481,190.03363,17.678251,71.302,0.00013971304 1818,276.61914,220.69618,104.59195,219.18623,6.382593e-05 1818,1.1299325,232.8063,17.593796,135.47952,3.852309e-05 1818,584.94006,48.775276,54.206604,280.06897,3.7724705e-05 1818,3.7487793,168.16231,57.209538,196.6198,2.839919e-05 1818,609.18115,437.34125,29.965515,67.70474,2.5261174e-05 1818,398.82355,135.3081,101.64804,194.5149,2.0796522e-05 1818,585.5352,378.64545,53.61145,112.86786,2.0701225e-05 1818,1.8728012,96.91081,32.938103,184.92226,1.328184e-05 1818,3.1332927,294.28864,56.12079,180.45956,1.2738752e-05 1818,0.97328615,339.13937,19.59435,132.55933,6.4611427e-06 1818,1.2468685,419.7356,34.57532,79.23337,1.2331261e-06 1818,2.6858106,17.790016,56.11669,108.208244,1.2980875e-07 1818,537.85126,9.660222,80.573425,223.89552,5.01452e-08 1818,507.88992,0.15996256,44.89969,50.95098,2.5167122e-08 1818,534.67413,3.7707407,48.23987,50.81864,7.379433e-10 1819,405.95667,196.04733,26.649536,65.76337,36.77747 1819,461.39166,199.2705,24.8497,50.387848,0.7816957 1819,471.445,196.5267,33.019836,68.4725,0.05752287 1819,84.62955,273.23877,35.33181,72.590454,0.018294325 1819,616.7975,39.393238,22.349182,76.58061,0.0065581677 1819,239.2462,208.52,25.492172,55.276962,0.0059223617 1819,300.574,261.37378,42.763153,137.60388,0.004597391 1819,15.097199,330.20593,36.352997,73.12045,0.003656205 1819,50.02419,221.96484,39.402287,71.99286,0.0022201126 1819,25.735106,211.86955,35.95986,73.535965,0.0012061747 1819,617.8774,202.33379,21.269287,82.74922,0.0011877002 1819,1.3559855,198.49364,18.459438,80.0551,0.00068810384 1819,620.2666,101.29705,18.880066,59.62699,0.0005579557 1819,4.2269483,242.78249,58.63235,206.377,0.0005426026 1819,420.23947,213.35713,24.098724,54.518204,0.00050861906 1819,428.6583,149.021,82.940094,155.11514,0.0002977032 1819,141.2669,194.6398,71.972626,164.85901,0.00028101486 1819,1.9789047,212.85597,27.768621,157.65016,0.0001811082 1819,67.35957,214.10492,77.78377,164.73593,0.00017310248 1819,387.36353,157.96411,77.87149,142.61298,0.00015116899 1819,138.21606,295.35672,35.97809,76.357025,0.00014910122 1819,582.3251,2.8977084,56.821594,124.7124,0.00012473285 1819,617.642,264.14426,21.504639,83.1391,0.00011716181 1819,610.7507,70.79578,28.395996,150.13564,0.000111182046 1819,1.2835149,293.17538,19.14228,138.8117,0.00010254981 1819,601.3762,161.85555,37.770447,170.44432,4.8750808e-05 1819,0.8275008,382.6149,18.385263,80.444214,4.340447e-05 1819,612.4101,368.79758,26.736572,126.188416,4.3145705e-05 1819,602.1905,249.02428,36.956177,202.77318,2.0128096e-05 1819,1.4715308,111.70539,28.615871,153.85251,1.2003847e-05 1819,613.7066,0.0,25.440063,47.45161,8.2034185e-06 1819,2.4546468,382.47366,55.657215,111.11301,4.909335e-06 1819,0.7182308,44.741165,16.017988,135.70454,3.9278518e-07 1819,2.3890886,17.058868,56.655464,110.01072,1.3990316e-07 1819,1.0666195,9.442613,29.163277,51.90024,5.6058504e-08 1819,574.4781,2.8478794,45.07196,52.82598,3.1561989e-09 1819,291.937,1.0445833,44.763245,58.687794,1.4325159e-09 1820,424.65155,199.33466,21.351532,51.72998,81.030655 1820,518.6189,183.99396,38.953125,80.204956,0.45498484 1820,496.24948,124.595665,72.03305,171.14517,0.009806012 1820,141.87845,204.78923,42.586746,126.18031,0.009117096 1820,299.23453,279.30673,34.931183,88.91333,0.006539407 1820,23.12375,245.5086,29.502691,56.075165,0.0036403686 1820,450.52823,181.59164,41.952087,89.09845,0.001863345 1820,407.9762,176.65326,54.843933,100.64514,0.0016983463 1820,12.4429655,213.30818,47.065166,131.01006,0.0016171287 1820,291.13007,230.6005,66.84503,193.18478,0.0006594677 1820,613.3125,9.805866,25.834167,96.74136,0.0004264542 1820,617.936,208.21953,21.210693,82.57356,0.0004186895 1820,510.35333,99.118965,37.548218,98.592705,0.0002123504 1820,114.43086,240.68459,74.00772,187.99571,0.00020057976 1820,134.4466,285.56918,39.56874,88.01831,0.00018260177 1820,610.8458,101.89538,28.300842,139.39331,0.00015224656 1820,1.177531,206.47696,19.747578,129.65439,0.00013054322 1820,617.8409,312.57117,21.305786,82.37628,0.00012455098 1820,612.1754,364.9422,26.971252,129.37671,5.7601454e-05 1820,437.15985,150.94933,79.83081,163.09526,5.252071e-05 1820,588.11237,131.41327,51.0343,211.34512,4.6046687e-05 1820,1.4076115,164.99062,18.169872,73.03337,3.700697e-05 1820,2.2887485,242.9478,34.003498,178.93126,2.7259139e-05 1820,1.0400822,286.66296,17.803322,78.01532,2.2311026e-05 1820,580.8508,7.4598765,58.295837,203.33896,1.870321e-05 1820,1.084865,344.9203,19.950766,132.71494,1.2464551e-05 1820,1.968667,123.087135,35.774525,180.96802,1.0521249e-05 1820,588.89575,3.484634,47.467285,52.8539,8.857179e-06 1820,4.672985,341.0374,77.6976,142.22906,6.717039e-06 1820,1.5176742,416.48245,34.741684,82.61203,1.1824798e-06 1820,2.4699821,17.992262,57.17007,112.830505,1.4782414e-07 1820,1.0442871,8.786218,29.588913,53.701176,2.9795514e-08 1820,299.01303,0.0,45.888794,52.277164,8.3019295e-12 1821,433.91864,202.33498,22.627045,50.4205,99.71935 1821,450.9313,200.07582,19.56366,48.80548,10.983897 1821,176.12627,210.66498,23.11052,51.76654,0.046665948 1821,606.5729,200.77417,31.477417,71.159,0.04327948 1821,127.44442,211.60188,46.38056,124.774,0.02644246 1821,16.562746,279.66995,49.43725,89.73572,0.0105471 1821,444.1211,184.77078,41.522522,105.647125,0.0052491897 1821,598.365,157.443,40.03961,198.71753,0.0013289144 1821,605.04755,120.94547,34.09912,91.206856,0.0010562873 1821,154.68346,204.1286,44.415802,111.39438,0.00096418406 1821,1.2221118,192.01962,17.664104,70.4447,0.0003909739 1821,616.3759,236.4676,22.770752,92.57622,0.00029719315 1821,299.66953,248.72977,71.43677,187.26508,0.00025228842 1821,611.81116,316.1604,27.33551,143.07233,0.00023151713 1821,615.27203,62.767307,23.874634,94.00426,0.0002298583 1821,583.2787,0.0,55.86798,253.4121,8.77736e-05 1821,1.8899398,241.54704,31.459951,171.35582,8.716632e-05 1821,5.002549,229.59427,75.87976,225.36777,8.261278e-05 1821,1.1215014,312.34183,18.177782,79.60135,7.333635e-05 1821,294.37637,272.29428,37.35788,90.09744,6.23052e-05 1821,612.9026,13.667061,26.24408,85.27013,4.3974655e-05 1821,412.95938,145.10443,85.57974,186.61423,3.9281058e-05 1821,613.6204,410.6849,25.526245,89.50241,3.9262442e-05 1821,1.6075147,162.48805,28.466684,151.36809,2.9008186e-05 1821,3.4546647,99.011955,58.53435,252.2109,2.475628e-05 1821,0.33747396,356.34912,18.371838,80.192444,1.3085916e-05 1821,1.1013778,76.94777,18.372766,139.41861,1.1586251e-05 1821,2.4083009,18.093292,57.1945,115.61838,1.3500531e-06 1821,1.3005437,417.60373,35.048683,81.136505,8.3602527e-07 1821,552.96545,12.850795,44.59619,125.33495,3.2574528e-07 1821,583.8484,4.0623064,47.68744,49.923866,5.5196768e-08 1821,1.0319206,8.390798,29.366096,54.023983,2.615205e-08 1821,316.53204,1.7887614,43.728912,47.485718,3.4666179e-09 1821,288.52863,0.14181316,44.08664,53.699505,7.620245e-11 1822,439.86246,201.05388,25.770111,55.827225,99.722466 1822,458.33377,196.91716,20.251495,50.614075,88.443634 1822,475.14044,195.85703,29.592224,62.736267,2.2515547 1822,317.4839,249.53644,42.476624,147.96597,0.023222646 1822,155.3732,209.6156,39.607437,131.04605,0.011849179 1822,222.88966,205.92097,33.88707,63.747543,0.0048045428 1822,331.0151,315.4998,26.981232,57.99832,0.0030561194 1822,67.1941,215.54399,25.131615,47.03264,0.002672082 1822,426.56146,177.99895,59.681244,97.701126,0.0023745445 1822,618.2425,211.34866,20.904175,78.038635,0.0015725382 1822,1.1493018,185.96004,17.839924,73.85805,0.0007994424 1822,131.41013,294.66663,40.974426,81.858765,0.0005143839 1822,612.1999,139.5779,26.946777,126.46071,0.00042807352 1822,329.83438,238.52281,25.621735,62.404587,0.00022428649 1822,617.64557,306.16296,21.501099,80.11554,0.00015424643 1822,617.7402,260.43076,21.406494,82.34894,0.000105782 1822,600.9214,187.72943,38.059692,171.55911,8.985937e-05 1822,432.60492,151.05225,91.15625,190.11429,7.4187796e-05 1822,612.0054,365.64835,27.141296,131.48233,4.8289472e-05 1822,1.3210979,212.23492,27.243238,144.36658,3.8372134e-05 1822,609.23004,4.560889,29.916626,52.27627,3.6393918e-05 1822,0.705258,300.2858,18.482363,76.66644,1.549293e-05 1822,1.7222428,106.35076,28.064442,146.29636,1.427078e-05 1822,611.4164,29.994604,27.730286,153.3785,8.00323e-06 1822,0.71418786,397.9574,18.258205,73.24179,6.7906713e-06 1822,1.2838688,280.92578,32.022804,175.26834,5.22968e-06 1822,1.291486,417.9534,35.119778,81.39462,8.415318e-07 1822,5.3867645,353.256,78.443924,133.2985,5.778245e-07 1822,2.2969434,18.969301,56.720165,111.03615,3.890534e-07 1822,1.0606169,9.10519,29.300756,53.940964,3.04879e-08 1822,264.41052,3.9925163,44.477905,49.783054,1.7148863e-09 1823,446.75772,199.69876,25.788239,60.627777,99.87374 1823,485.37662,198.99283,19.38736,48.205093,90.55773 1823,132.58829,210.5447,37.544525,73.03053,0.3752596 1823,203.58936,205.72736,42.139862,92.14667,0.08833463 1823,462.2982,198.93863,23.213593,54.305435,0.019957341 1823,8.042603,201.5653,39.66462,94.91748,0.013614702 1823,344.54758,290.80978,35.276886,76.70297,0.0021708389 1823,1.8071135,198.46552,20.195425,90.88068,0.001910336 1823,370.49084,197.8497,33.786926,67.07886,0.0017074633 1823,618.15546,204.65036,20.99121,78.03647,0.0015986488 1823,192.01587,237.88077,43.954865,147.54605,0.0008728014 1823,474.155,185.4964,40.943085,89.83121,0.0006520788 1823,611.5079,117.418594,27.466919,118.91576,0.0005607671 1823,3.8339975,244.24022,56.2202,223.45457,0.0002452351 1823,462.3844,151.53302,79.32532,168.091,0.00020263353 1823,601.865,167.88194,36.900574,168.8206,9.423434e-05 1823,200.1301,298.08978,28.238403,57.693756,7.047779e-05 1823,1.0527856,363.3661,18.40147,78.69162,6.661601e-05 1823,608.263,435.2809,30.883667,69.57114,5.8912134e-05 1823,612.79236,312.61066,26.35431,138.70587,4.603176e-05 1823,1.7429932,104.398636,29.323824,165.91664,2.756658e-05 1823,592.3218,2.6268783,44.746216,45.74164,1.411121e-05 1823,609.87384,19.809101,29.272827,160.85924,7.719771e-06 1823,571.6859,349.507,67.460754,141.887,5.7544366e-06 1823,1.4919353,410.1295,34.540943,88.901215,2.9049204e-06 1823,2.3208497,19.167253,56.86708,111.97009,2.3893344e-07 1823,0.91447514,8.082793,19.957167,53.79905,1.8050878e-08 1823,530.28186,1.1410856,47.353394,52.36823,4.5619876e-11 1824,488.98157,198.09764,24.982727,53.530807,99.89231 1824,452.37054,200.5886,26.058746,64.09235,99.873726 1824,505.64532,197.82777,20.328186,50.640793,99.3446 1824,102.629036,207.13704,23.469994,45.2424,1.6219556 1824,166.62738,232.64084,25.78563,56.04489,0.17457545 1824,367.83035,202.47934,28.9917,63.405914,0.16748251 1824,88.91327,208.22893,38.132095,92.53932,0.1531991 1824,608.948,136.28989,29.680847,109.45177,0.07389853 1824,622.4996,150.2071,16.647095,52.78415,0.013270846 1824,469.2258,199.70244,21.101288,53.40439,0.012683773 1824,226.70798,270.29764,37.312683,89.059296,0.0042216843 1824,345.81003,253.65031,26.02179,53.779892,0.003992699 1824,611.3903,318.46707,27.756348,133.81577,0.0017274482 1824,587.036,142.09592,51.632874,247.69116,0.0014825073 1824,474.51865,180.30016,56.394623,91.63844,0.0012106632 1824,4.5064993,190.66962,57.967278,218.2201,0.00036821267 1824,23.202589,310.88272,44.57625,81.908325,0.00032365395 1824,1.0389804,276.25705,19.003908,136.6434,0.00031834882 1824,216.48206,207.32214,69.56726,170.71902,0.00020511111 1824,336.82455,238.04105,40.53534,124.86127,0.00017945221 1824,616.39056,270.6374,22.756104,83.89459,0.00014695816 1824,607.1134,433.9265,32.033264,73.97876,0.00014288882 1824,1.4419874,163.20764,19.333721,128.84683,0.00014263381 1824,600.32446,0.0,38.822205,48.779976,0.00010732124 1824,432.52,170.69386,72.633606,144.4698,9.069379e-05 1824,585.6186,373.34952,53.528076,120.8905,8.0544356e-05 1824,0.6028101,346.39664,20.273733,144.90973,7.736686e-05 1824,439.70148,129.44499,140.10632,224.82146,6.115123e-05 1824,583.2792,15.992722,55.472168,228.00546,4.387433e-05 1824,608.8227,2.8529363,30.323975,141.0392,1.7685332e-05 1824,4.384639,335.3959,79.28821,148.76285,1.3108136e-05 1824,1.8604451,61.95623,32.745415,180.03204,3.7235232e-06 1824,423.36655,15.763971,46.503662,139.64473,5.6238207e-08 1824,1.4879818,7.898812,36.17418,87.45479,5.464806e-08 1824,574.7779,0.72775394,43.529297,56.998787,4.5107384e-08 1824,315.3659,5.2519727,44.891968,53.826336,7.971027e-09 1824,193.77277,6.2846484,39.950317,47.39546,6.9183875e-10 1824,481.02313,0.0,47.95337,47.641575,3.9405354e-10 1825,543.34705,195.53654,33.28766,70.93776,99.88512 1825,505.75323,199.1356,25.319336,59.81105,99.85873 1825,470.0961,203.86649,27.982605,68.91556,99.540565 1825,57.222572,207.29045,39.353447,100.529465,82.943306 1825,64.76447,211.91194,23.630669,48.871445,1.3545766 1825,351.08075,204.4012,47.395203,132.07536,0.8461047 1825,483.09912,195.73248,32.481384,64.9935,0.0987383 1825,345.00803,250.48349,32.43744,71.23468,0.083145685 1825,358.8149,201.33466,30.187866,55.12683,0.015301661 1825,619.798,154.17833,19.348694,66.59155,0.00791034 1825,7.2748327,278.76788,49.646973,140.34698,0.004916335 1825,142.14374,225.65706,41.524933,91.12077,0.0028872148 1825,610.6855,61.69252,28.461182,148.16954,0.0013059269 1825,621.04114,113.81978,18.10553,61.189697,0.0009896993 1825,448.34085,174.07578,70.84885,145.61572,0.0007820242 1825,16.273966,183.08487,100.61621,184.52191,0.00057805906 1825,604.02246,147.97987,35.124207,145.71147,0.0003049886 1825,485.44742,158.08026,73.863556,154.08658,0.00024100915 1825,608.242,433.46527,30.904663,73.28244,0.0001391341 1825,215.97319,292.6822,38.51822,89.131165,0.00013456975 1825,1.2690421,210.15193,20.04198,142.94969,0.00012042642 1825,1.2356706,311.0786,19.797607,156.48724,0.000118795586 1825,610.1214,2.7047884,29.025269,57.663105,8.390581e-05 1825,602.19916,285.64175,36.94751,186.04257,4.09842e-05 1825,1.6394174,126.318756,19.231592,130.65457,1.6582395e-05 1825,1.8857781,378.6987,56.141518,112.235016,1.3887653e-05 1825,0.86448,439.95938,22.029682,63.25293,2.182318e-06 1825,2.3160417,56.64655,60.49191,272.31705,1.1562713e-06 1825,554.693,1.2392644,51.676453,63.991043,7.387063e-07 1825,1.4676514,8.029287,35.6107,86.48371,4.5520686e-08 1825,453.77606,0.22143555,48.782898,53.105366,1.5640603e-08 1825,486.16818,1.0081006,46.002533,52.79343,5.239896e-09 1825,315.07126,3.097344,44.86499,57.43478,3.4755223e-09 1825,392.5636,3.224432,46.675262,50.265167,7.8864426e-10 1825,339.67075,3.7341635,48.853546,60.773502,4.771123e-10 1826,511.8828,199.37846,32.080017,78.997604,99.686424 1826,552.7692,194.51189,27.081055,69.537766,99.40355 1826,32.486427,207.16147,29.619629,60.78705,98.66889 1826,61.89779,207.08524,43.56353,98.20523,98.31308 1826,219.22758,288.8912,38.920334,87.62097,0.8280916 1826,579.566,194.96004,31.576965,56.83174,0.21522607 1826,537.39624,200.51035,23.644165,63.897217,0.055023573 1826,284.1676,219.62112,25.309631,46.30774,0.013197402 1826,217.04233,215.12444,41.644226,122.69072,0.0099650165 1826,89.74637,216.75322,43.261612,111.51134,0.009317053 1826,200.5941,244.62115,72.50011,167.84921,0.002511826 1826,32.6536,182.87029,100.140686,171.04323,0.00093454984 1826,0.29202312,298.22845,35.373856,116.74609,0.00077856105 1826,533.5184,162.19206,68.7074,157.32018,0.000686481 1826,610.93494,42.41032,28.211731,132.5913,0.00060638256 1826,612.0195,170.4302,27.127197,120.55322,0.00052883266 1826,4.1188297,193.3037,55.260796,207.15898,0.00027739868 1826,1.0595272,208.01323,21.054195,137.813,0.00019257731 1826,587.12646,202.36589,51.596497,229.23543,8.9976165e-05 1826,592.1891,11.132725,46.235046,88.00726,6.034245e-05 1826,609.3178,438.62283,29.828857,67.86844,3.6314803e-05 1826,1.7696371,108.35203,28.207355,147.82498,1.3219075e-05 1826,585.126,384.23825,54.02069,108.74631,8.554108e-06 1826,0.83487064,440.56485,21.940393,62.48349,2.6467364e-06 1826,1.9736915,385.16043,55.03088,106.760925,1.4774021e-06 1826,570.93774,3.7884963,50.763733,53.69828,3.0306217e-07 1826,1.457212,5.4123893,36.89572,88.64916,3.094546e-08 1826,415.6154,0.0,48.378387,48.820354,9.051897e-09 1826,374.4025,0.14155273,47.543518,61.4494,2.2489277e-09 1827,544.66675,204.10634,38.559143,91.51436,99.907555 1827,589.70337,197.27467,36.20172,76.972336,99.87664 1827,23.781803,213.47986,42.345013,114.637665,99.45781 1827,207.8294,252.233,44.695084,99.058105,4.093425 1827,5.9404373,208.70383,32.206238,85.02966,2.757702 1827,218.50352,253.32837,26.756454,47.825684,0.9744071 1827,612.72046,197.71458,26.426208,65.76161,0.38723803 1827,530.97534,202.8231,30.744019,68.71251,0.3538937 1827,120.551315,221.3894,42.24031,95.33374,0.014052822 1827,520.18945,205.21178,23.807922,57.53569,0.0051759207 1827,575.9751,125.41141,58.839844,217.2403,0.0018696197 1827,0.4768986,315.81464,33.81294,127.46063,0.0018199735 1827,183.41982,236.17014,89.883896,182.18509,0.0008381973 1827,5.9148993,142.6278,105.29155,245.92206,0.0005408863 1827,608.6154,68.56295,30.53125,150.79819,0.00044550648 1827,516.4073,172.44176,98.67505,158.11726,0.0003842787 1827,602.734,303.62338,36.41266,177.73215,0.00011736243 1827,608.70917,6.6690364,30.4375,93.91172,6.271307e-05 1827,608.9486,433.93143,30.19806,70.772125,3.3754954e-05 1827,1.4168531,127.048195,20.433985,154.31107,3.146413e-05 1827,0.1853947,367.12772,21.579258,138.376,8.721658e-06 1827,587.20483,2.6333203,46.75226,48.047626,8.9950765e-07 1827,0.66925865,52.92943,18.943363,146.82237,2.3592422e-07 1827,341.69266,8.135799,43.854584,46.776226,7.8965044e-08 1827,1.5118653,7.726094,36.4395,87.458374,5.5141207e-08 1827,366.74838,7.2476907,44.93802,50.50927,7.1812383e-09 1827,458.36523,3.2728908,48.97229,48.231907,2.002253e-09 1827,397.35345,1.3556869,44.397064,47.809196,1.4754623e-09 1827,429.61615,1.8580762,49.460846,53.483368,3.6827333e-10 1828,584.5951,203.17625,43.423035,103.385635,99.94162 1828,390.11832,205.57771,26.095428,49.314713,2.9769373 1828,403.9699,209.67073,26.930328,50.376877,0.14859162 1828,542.4054,206.68149,24.762085,45.199097,0.13219574 1828,1.3957373,205.66602,41.42212,118.29175,0.11630927 1828,622.22125,235.2166,16.925415,68.629745,0.090649314 1828,610.34576,208.10059,26.01593,71.997406,0.07065611 1828,190.66518,263.8653,29.56105,68.990845,0.02323306 1828,186.44258,234.68034,52.186935,150.77379,0.008815021 1828,0.10813477,327.99692,33.237007,102.88739,0.007593423 1828,0.0,245.55913,16.734617,86.01033,0.004906116 1828,535.90674,127.120865,102.00586,257.4663,0.0006820983 1828,271.01096,223.7261,24.570099,51.445557,0.0004969744 1828,598.1516,47.994896,40.25598,270.70267,0.0004925303 1828,0.598562,370.75928,17.576103,76.51016,0.0002870508 1828,1.4049968,199.76547,73.15733,256.7611,0.00022792169 1828,611.8517,263.50763,27.294983,159.98526,0.00011960052 1828,609.2091,21.931328,29.937561,104.194664,0.00011233609 1828,608.40875,436.12515,30.737915,69.54956,7.086228e-05 1828,602.38214,341.08487,36.764526,150.83853,3.694512e-05 1828,339.4598,227.1873,74.510864,206.72746,3.4486788e-05 1828,0.045360517,394.85626,36.207714,102.67563,2.718173e-05 1828,1.2376173,116.44065,20.852375,159.09659,2.023758e-05 1828,591.50653,4.0173993,46.36969,52.298473,8.823388e-06 1828,0.80596435,48.167645,18.105694,139.4003,4.694097e-07 1828,1.902321,15.907227,57.169582,113.34476,2.6128032e-07 1828,509.6182,1.6793555,46.85013,45.248913,5.948644e-09 1828,442.58298,0.39695314,46.829315,52.3972,3.2584688e-09 1828,374.13596,4.2967854,45.31732,49.62977,2.294684e-09 1829,0.07422038,362.57016,44.10147,120.72653,2.8604376 1829,280.8742,210.94183,23.145172,45.469727,0.10646051 1829,570.60333,203.43735,25.796875,50.406906,0.051023968 1829,497.17267,213.80115,42.882324,103.89203,0.038543697 1829,385.57437,199.44409,33.234528,54.3656,0.022939164 1829,0.3125993,388.63812,17.335638,59.39688,0.018625967 1829,607.9783,311.2099,31.168396,154.73132,0.008545302 1829,618.5756,337.85474,20.571045,65.6857,0.0072516995 1829,587.8465,181.52563,51.30017,240.81293,0.0015092415 1829,72.649734,216.34177,27.459732,53.26883,0.0012378069 1829,189.98933,275.4902,34.768585,85.7587,0.0012098232 1829,1.1710441,218.53691,13.6294365,53.426346,0.0007377987 1829,2.1491544,194.9002,28.660194,96.252106,0.00043348063 1829,2.9139552,255.22018,88.419495,230.16138,0.00041771404 1829,168.88075,233.6712,71.10521,178.0198,0.00037396836 1829,610.6712,127.98457,28.475464,137.73808,0.00020435257 1829,615.7016,233.6011,23.445068,80.4429,0.00016520912 1829,608.50256,434.6412,30.644104,69.350464,0.00016127128 1829,1.0557853,166.9801,18.62904,80.29118,7.888644e-05 1829,310.0434,226.08662,72.740326,191.46864,5.3895666e-05 1829,616.57056,38.70853,22.57611,84.666214,4.149393e-05 1829,605.23724,4.1833854,33.909424,56.31726,2.0714258e-05 1829,0.84472495,122.71615,18.65789,74.92329,1.7147098e-05 1829,3.9979022,146.42368,56.018486,231.0055,1.6253043e-05 1829,0.80809736,300.93283,19.142195,84.62204,1.2848843e-05 1829,600.4479,18.564772,38.69879,195.34541,5.995536e-06 1829,1.1246338,241.61813,31.412666,197.4784,5.2412433e-06 1829,3.736657,434.82147,46.20606,75.407196,3.318194e-06 1829,1.5704867,54.20013,33.869423,193.01003,4.4974416e-07 1829,2.0630567,15.210228,58.242165,117.693245,2.3788027e-07 1829,376.1516,2.6413054,42.71643,53.692726,1.741406e-10 1830,38.82277,319.07187,71.98937,168.04095,0.3449895 1830,295.47678,210.85646,26.928894,56.502518,0.13231938 1830,63.13246,369.25742,35.88056,82.30109,0.056530662 1830,538.7738,212.63187,36.977295,85.42636,0.048230946 1830,298.5983,212.74693,43.090057,117.02348,0.032860402 1830,577.8773,206.89746,28.911194,54.411682,0.008750066 1830,53.12531,280.98834,36.669514,89.691986,0.008650814 1830,560.13306,193.16534,32.481445,70.94586,0.0036827303 1830,180.38147,220.11516,58.818954,142.54439,0.0012482502 1830,617.41364,222.59396,21.733032,83.404175,0.00044455618 1830,1.3999748,214.20294,18.28709,77.727936,0.0002607901 1830,4.789183,317.93622,57.22618,173.17477,0.00018127926 1830,612.0716,136.15248,27.075073,121.47383,0.00012890957 1830,612.65015,328.27493,26.496521,136.32468,0.00011774359 1830,617.4387,64.01861,21.707947,81.16175,7.7477525e-05 1830,259.63098,160.39438,97.92581,199.75546,7.1988026e-05 1830,609.2626,439.16617,29.884094,66.714264,5.72574e-05 1830,1.884471,250.64548,32.606102,172.31293,5.2028867e-05 1830,12.702159,413.2683,83.25955,86.97681,4.5081022e-05 1830,600.5252,184.74277,38.62146,177.7045,3.919084e-05 1830,1.1284359,169.53873,18.344698,79.12068,3.422083e-05 1830,2.7162957,442.78824,42.44756,58.896088,2.9427762e-05 1830,582.425,0.0,56.72168,270.32486,2.1942515e-05 1830,585.3495,388.04056,53.79718,108.17767,2.0236419e-05 1830,1.4011743,346.34036,20.534302,111.2388,1.7598584e-05 1830,3.7833805,156.49023,57.85988,221.814,1.14938175e-05 1830,0.79896814,115.68412,18.628077,71.59174,9.758686e-06 1830,594.4385,8.685296,44.70819,77.01717,1.8471771e-06 1830,1.5618848,88.19417,34.390583,191.34068,1.829582e-06 1830,1.9368751,14.678816,58.206017,113.65254,1.6422922e-07 1830,389.60712,3.295547,42.450317,54.12593,7.4642806e-11 1831,280.3666,219.01985,32.67267,55.52089,39.655533 1831,431.72888,211.75766,32.45291,55.168427,0.035067335 1831,573.51776,197.08548,34.177124,66.58807,0.027781527 1831,548.7283,202.499,41.48401,107.404724,0.022000477 1831,81.16303,209.9746,33.63188,59.309433,0.0056409487 1831,561.0261,221.13521,20.623291,46.035934,0.0031640197 1831,62.80558,227.05672,47.043106,137.30525,0.002280389 1831,491.54245,177.64592,22.56137,45.28154,0.0017004564 1831,1.3675318,209.61555,18.125801,82.94026,0.0012817129 1831,134.05086,319.5434,50.18329,141.8613,0.001225037 1831,2.2205648,227.59938,41.111088,137.96611,0.0011162611 1831,616.5195,224.25917,22.627197,81.45137,0.0009407556 1831,1.2589136,258.0012,19.652702,87.13107,0.0006621308 1831,201.41975,225.45259,39.36447,99.23622,0.00048066553 1831,92.70945,252.19302,116.57676,221.20538,0.0002436755 1831,609.0783,440.83823,30.06836,65.628815,0.00016533678 1831,587.3692,184.3148,50.78003,211.74828,0.00013811182 1831,617.37317,71.90392,21.773499,78.83196,0.00012054603 1831,612.9993,322.2995,26.147339,137.2962,0.00011972651 1831,274.32782,193.47235,71.586395,147.97986,0.00011318282 1831,617.60004,270.70526,21.54663,82.909485,0.000108968394 1831,611.5889,141.26068,27.55774,126.7041,8.563247e-05 1831,584.51685,391.20688,54.518005,104.07312,5.5194927e-05 1831,3.0778744,277.7006,55.69675,190.05838,4.7505106e-05 1831,0.93033206,140.74452,18.40323,78.73631,2.387828e-05 1831,614.6018,18.991478,24.54486,79.5467,2.2586468e-05 1831,0.6090397,352.22797,18.584848,78.794586,2.2282024e-05 1831,582.19867,42.13556,55.8927,243.44962,2.0454858e-05 1831,1.5938249,93.81418,33.96924,196.59393,1.1167367e-05 1831,1.0998422,385.75336,26.963238,111.34473,7.512088e-06 1831,34.35351,425.12222,76.81569,75.20065,2.8059278e-06 1831,507.28293,413.11157,72.89902,80.888855,2.4854874e-06 1831,555.7463,35.108932,45.605286,118.85745,9.543484e-07 1831,0.9484717,51.11422,18.735458,136.52441,4.796404e-07 1831,2.021289,14.718894,58.33318,118.10905,2.2835613e-07 1831,396.0494,1.5125326,44.197937,55.648304,4.3311653e-11 1832,603.9886,224.75482,35.052917,86.488556,0.031469468 1832,574.43774,199.43471,62.283875,157.1917,0.019753223 1832,227.1443,310.65128,44.017166,104.9133,0.01949183 1832,411.9437,207.3497,23.453827,46.923996,0.010298037 1832,99.58789,336.7047,73.7491,155.79114,0.009584871 1832,280.4069,225.63947,22.785492,46.200867,0.009221768 1832,76.46963,295.36307,34.561653,76.148865,0.006605328 1832,585.0721,218.12993,27.818054,59.93074,0.0020233237 1832,207.02911,216.06813,34.856888,74.41603,0.0013456871 1832,397.12515,204.03816,25.357117,50.939194,0.0009930405 1832,610.23474,126.150055,28.911926,146.45093,0.00082591886 1832,1.1349887,216.35973,18.492796,78.87453,0.00066998176 1832,621.7957,117.74486,17.350952,53.22348,0.0003446395 1832,3.394144,256.38257,56.770073,224.76328,0.00031832515 1832,612.4548,372.80103,26.691895,129.66837,0.0003120914 1832,616.6331,308.40375,22.51355,84.010956,0.0002356816 1832,1.6722705,180.07323,34.53043,167.40364,0.00012774901 1832,1.2905535,335.69617,26.920238,146.11948,0.000107486776 1832,584.8342,10.96623,54.31244,113.0788,8.8009976e-05 1832,0.7057276,264.05246,18.826534,152.64667,7.2323346e-05 1832,616.7927,70.19671,22.353943,82.502174,6.455045e-05 1832,119.71836,419.0428,47.56568,83.213776,2.0954514e-05 1832,0.9034611,142.191,18.458212,81.48375,1.9560424e-05 1832,14.669281,422.81818,73.1607,69.711426,1.4298368e-05 1832,0.91256267,422.17548,16.748964,77.527466,1.2802876e-05 1832,64.19868,414.59906,79.64219,83.74313,3.3621138e-06 1832,509.26282,386.0408,118.90283,104.83737,1.795958e-06 1832,1.7150781,53.14672,33.053165,196.53342,5.951112e-07 1832,1.8876204,18.70323,56.82152,106.87393,1.3880543e-07 1832,0.6123303,7.164017,10.152227,89.21883,3.2570103e-08 1832,415.99838,2.454961,44.0347,54.17119,6.927178e-11 1833,421.92456,212.08545,23.664612,45.41388,0.08303441 1833,284.65018,233.74277,43.472595,151.51224,0.0041009746 1833,232.18315,239.77026,48.920853,187.17612,0.0035361107 1833,618.52985,228.36665,20.616821,74.09004,0.0034231322 1833,404.59576,180.05254,35.28769,70.51997,0.0030612962 1833,1.4087126,245.2849,28.429628,171.53096,0.0005929219 1833,622.59534,176.22012,16.55133,54.361267,0.0005035476 1833,0.97669846,222.77808,18.44579,81.98938,0.00043090002 1833,602.38025,209.63774,36.76642,168.76665,0.00039540682 1833,594.2261,13.702836,44.920593,79.987076,0.00037980243 1833,587.14404,89.040886,51.366882,204.57562,0.0001854897 1833,616.9551,69.14171,22.19159,84.39075,0.00016122128 1833,1.3011336,177.6456,17.537909,72.30977,0.00015675704 1833,489.4944,224.33144,26.798035,51.023758,0.00015374797 1833,618.3116,329.67206,20.835083,76.54532,0.00013863822 1833,4.258669,267.15326,77.01809,200.86649,0.00013827154 1833,253.42117,205.01407,114.30319,226.90952,0.00010318139 1833,0.6076864,395.1889,18.037506,73.75131,7.698801e-05 1833,398.3091,146.90341,83.38684,154.91309,5.2930016e-05 1833,0.7062008,147.57338,13.652276,47.392868,3.46397e-05 1833,613.5456,412.35672,25.601074,91.042725,3.3211323e-05 1833,1.6112224,144.00478,34.18251,187.03224,3.0119008e-05 1833,603.71387,316.7283,35.4328,168.73395,2.9983108e-05 1833,0.9537549,80.068306,19.952936,135.80606,1.3010694e-05 1833,133.3262,384.32217,110.606094,103.063416,6.991626e-06 1833,3.2277882,392.36966,54.622356,96.873535,6.642938e-06 1833,0.9522974,439.32028,21.93839,63.34494,2.8492668e-06 1833,108.56884,423.21274,76.04136,71.99295,2.1427754e-06 1833,528.03827,383.97174,110.07886,106.3226,1.5749407e-06 1833,0.74944746,19.151628,16.665756,117.97444,4.9297415e-07 1833,2.068628,28.083113,60.507618,240.00047,4.443333e-07 1833,474.07385,1.2254915,43.802612,46.524506,4.1126824e-10 1834,423.17572,210.32976,24.897308,46.65889,0.086430825 1834,310.40698,308.467,35.713287,73.93451,0.008044423 1834,520.39343,191.79245,33.37628,70.0405,0.006634038 1834,287.2547,225.93484,65.79172,167.99411,0.00620988 1834,536.9065,185.79413,24.096619,49.226456,0.005954391 1834,619.7655,48.68103,19.381165,55.51188,0.004197534 1834,4.0835843,222.93237,74.301506,257.52002,0.0018743882 1834,595.00183,14.525235,44.144836,81.95819,0.0013113369 1834,0.9972331,222.31516,13.810223,50.588135,0.0013109968 1834,8.357726,306.0708,39.787968,110.189575,0.000903049 1834,297.44647,223.60513,25.097717,57.978302,0.0006928463 1834,611.2143,177.29498,27.34375,111.78516,0.00055979454 1834,1.2459002,335.06146,13.509481,56.782654,0.0005482708 1834,1.9749203,198.24368,37.235725,102.70264,0.0005396034 1834,588.0635,87.706116,49.384216,210.22842,0.0004867592 1834,1.250743,325.68073,20.523111,140.3461,0.00035378942 1834,601.39734,220.7948,37.30371,189.44016,0.00026599586 1834,0.91770834,294.72333,13.576776,53.746643,0.00023497487 1834,609.2254,39.356224,29.921265,168.29337,0.00023389165 1834,616.34357,254.41441,22.8031,83.07594,0.00022296826 1834,1.1363851,223.4268,19.34906,153.19337,0.00018636313 1834,0.9416553,145.37526,19.088497,92.29636,9.622931e-05 1834,123.51035,266.66934,48.96067,137.84631,8.887731e-05 1834,608.54614,436.25882,30.600525,70.46353,4.6199057e-05 1834,0.49129558,407.76413,14.1138315,51.375763,3.9746246e-05 1834,3.3398602,86.72252,57.916367,248.88768,2.159211e-05 1834,2.572132,376.71152,55.622673,112.850525,2.0348702e-05 1834,571.0043,354.60242,68.142395,131.87561,1.4563201e-05 1834,191.40942,218.06519,34.381668,74.52872,6.8411255e-06 1834,394.85614,147.3156,102.09012,212.03297,6.714605e-06 1834,0.8041089,106.84967,18.651913,74.916916,4.4864e-06 1834,0.8580347,441.27246,21.73033,61.96042,2.728254e-06 1834,535.6721,419.11383,71.46893,76.46109,1.009871e-06 1834,0.6251339,8.673867,9.6137,87.02983,5.3759817e-07 1834,530.8416,5.135256,44.378723,46.025253,3.65231e-07 1834,1.243112,8.265319,36.575005,81.74923,3.6335214e-07 1835,286.09888,225.63766,23.687988,52.80313,0.007835013 1835,608.59344,183.20662,30.299011,152.05092,0.0019639316 1835,178.43658,249.44855,44.154068,109.34494,0.0012920859 1835,616.7289,148.63441,22.417786,73.03432,0.0009944583 1835,0.8068254,202.82298,12.975522,48.562286,0.0007828188 1835,614.52966,274.65442,24.617004,90.46854,0.0007600139 1835,621.0645,116.70201,18.082153,57.438324,0.0005578972 1835,594.7008,181.22385,34.97876,73.36429,0.00038461675 1835,572.9609,180.52664,65.93732,251.19037,0.00032988354 1835,0.59307617,230.53777,18.131418,72.73375,0.00020552718 1835,617.33765,391.05585,21.809021,85.78354,0.00018958644 1835,0.87985516,153.49776,18.365292,81.96272,0.0001463848 1835,615.8454,65.35403,23.30127,86.43932,0.00012724198 1835,607.99396,436.3369,31.15271,68.50644,8.619059e-05 1835,584.2659,35.313892,54.35437,233.46892,5.5128432e-05 1835,601.1688,319.81625,37.977844,175.08069,4.3745313e-05 1835,1.5610149,107.159645,32.96779,168.8161,3.0444411e-05 1835,158.24387,191.06895,104.37308,215.24767,2.2748469e-05 1835,598.373,10.347943,40.77368,79.384285,1.8830533e-05 1835,0.5151416,309.24146,18.537445,73.750305,1.4232278e-05 1835,1.2789013,206.79625,32.60935,169.09563,1.1475843e-05 1835,0.85793376,94.83647,18.38131,74.02699,1.0148783e-05 1835,395.49634,149.87065,106.0784,205.5012,8.951112e-06 1835,0.585686,412.2444,13.663872,47.777344,8.708226e-06 1835,0.61076784,289.65353,13.509743,47.14145,8.240947e-06 1835,0.5244247,364.42505,18.452436,73.746155,5.736848e-06 1835,554.8802,420.52072,73.95734,77.079956,3.9171478e-06 1835,4.4756966,139.45337,79.95615,254.03952,3.6271597e-06 1835,0.99126875,391.80524,27.038729,103.871185,2.1182434e-06 1835,2.9191244,279.1446,57.45026,194.00302,1.7600693e-06 1835,1.615752,12.6272135,58.033714,118.70706,7.94594e-08 1835,0.54466516,6.217233,9.524785,89.522026,4.6243706e-08 1836,277.91678,225.1435,23.99292,53.093567,0.08410336 1836,424.2253,183.8975,37.974426,68.33516,0.075991645 1836,19.405886,217.5759,31.282766,48.762665,0.016500155 1836,198.9921,218.08853,33.86499,72.74432,0.0063158814 1836,584.60254,327.2549,54.16736,173.76166,0.0031035433 1836,0.67865926,211.73819,12.834954,49.374878,0.0010502085 1836,620.762,113.912125,18.384644,60.63269,0.00058239396 1836,621.4396,420.88138,17.707092,54.139038,0.00045268962 1836,610.8624,67.023796,28.28424,151.61215,0.00040016463 1836,618.3014,201.85013,20.845276,81.35205,0.00029833557 1836,607.90894,438.21674,31.237732,69.93573,0.00015801482 1836,622.25555,277.03168,16.891113,54.847015,0.00014636079 1836,615.4264,366.50397,23.720276,95.214325,0.00013170268 1836,592.5181,1.1378956,42.86267,49.95008,0.00011421812 1836,0.80374026,183.66563,17.744186,124.38121,0.00011053249 1836,408.7384,153.18875,84.45889,150.16312,9.844606e-05 1836,0.99052656,152.10074,18.148113,78.64395,7.066489e-05 1836,615.7646,32.242973,23.38208,76.837364,6.097322e-05 1836,617.08154,302.49387,22.065125,88.92828,3.6738595e-05 1836,588.1466,136.65819,50.860962,250.32924,3.469402e-05 1836,182.21127,189.63744,75.61948,154.94527,2.890937e-05 1836,3.7970216,99.46732,58.302162,203.53732,2.050564e-05 1836,0.5671204,309.61816,13.719694,46.895355,1.4571037e-05 1836,587.11273,10.805846,52.033936,119.43637,1.4523756e-05 1836,0.6828007,426.31693,13.489613,46.169952,1.1452479e-05 1836,5.5877767,195.09451,76.520645,262.735,8.144999e-06 1836,0.89727783,94.86958,18.443533,74.08522,7.635657e-06 1836,0.718418,366.7986,20.767504,102.324524,7.350959e-06 1836,0.48009035,272.81815,19.992542,137.59534,6.81413e-06 1836,0.45324993,344.06357,13.85351,47.894043,5.195964e-06 1836,0.90349853,442.56567,21.856598,60.740997,2.6398595e-06 1836,3.0721533,397.69412,56.262585,95.41449,7.499802e-07 1836,1.2991228,59.674103,29.14468,159.40044,7.0602084e-07 1836,1.6032325,12.961126,58.611195,116.30891,2.04525e-07 1836,0.5095516,7.1146746,9.787515,88.005875,5.0280818e-08 1837,445.83252,188.7143,35.46353,75.07916,0.36551026 1837,271.36435,228.6962,23.389008,47.634308,0.21396543 1837,607.4477,253.80487,31.698975,90.722626,0.015685936 1837,200.72325,228.13306,34.351135,70.008606,0.01183967 1837,620.80176,322.5154,18.34491,57.674255,0.0023995026 1837,587.6086,238.51997,51.072815,217.75838,0.0008070544 1837,1.1557968,174.04286,18.32205,76.27408,0.00065449235 1837,212.44597,261.02386,20.15924,46.54065,0.00039205747 1837,0.7743327,230.5799,18.283077,74.99527,0.00036722937 1837,622.04865,130.0956,17.098022,52.975525,0.00035866577 1837,0.5537614,144.97192,14.225116,55.770584,0.00020540981 1837,618.0365,379.26028,21.110168,82.85901,0.00016774166 1837,611.72,71.26736,27.426697,138.02533,0.0001623668 1837,588.9322,112.26177,49.428955,227.4078,0.00015235694 1837,430.45532,161.8192,79.28906,146.10457,0.0001362741 1837,1.4696501,174.56485,33.467922,164.72003,9.966334e-05 1837,214.37506,183.00655,39.521774,100.72484,9.5147305e-05 1837,616.86804,50.749153,22.278625,74.23929,7.431681e-05 1837,0.65439373,270.8103,18.129421,76.96069,4.2389627e-05 1837,4.0876985,165.7096,78.78783,250.9289,3.1495892e-05 1837,0.7528589,82.162125,20.584797,142.39955,2.9495586e-05 1837,609.7144,439.8624,29.432251,64.335846,2.4333127e-05 1837,1.1911068,262.03326,32.179276,176.7945,1.7272587e-05 1837,0.5021338,322.6748,18.537369,72.8241,1.149931e-05 1837,585.47046,387.08127,53.67621,107.710785,7.971479e-06 1837,600.69116,2.4728646,38.455505,52.344116,7.2157386e-06 1837,0.6539128,426.5886,13.51915,45.960754,7.096989e-06 1837,177.81224,176.52786,104.509384,206.3306,5.596583e-06 1837,0.49422854,371.58893,18.45779,73.26083,4.8676666e-06 1837,586.2439,14.358165,52.90277,117.79577,3.3154422e-06 1837,0.9226107,442.96454,21.911085,60.34131,2.3572597e-06 1837,1.4832438,27.70832,62.35448,251.25427,1.1138411e-06 1837,5.1414423,354.09845,79.306816,133.3559,5.9421177e-07 1837,2.7663217,429.4848,53.05394,69.5184,3.6152298e-07 1837,1.3386964,7.05972,37.00698,80.01218,5.2484207e-08 1837,0.5107475,6.327891,9.281778,87.36062,4.1161865e-08 1838,207.38155,234.05438,36.127884,60.431915,0.010074867 1838,466.22318,202.16945,32.954437,67.16417,0.0068361564 1838,1.2494637,165.48047,19.272396,85.56282,0.0023935125 1838,617.85406,222.84901,21.292603,67.657486,0.001561164 1838,283.57578,240.29576,22.874146,46.114426,0.0011730676 1838,621.40454,95.66671,17.742126,52.582558,0.0005316938 1838,603.1246,216.72789,34.949097,134.67781,0.00044903313 1838,0.7483769,135.24919,13.403271,45.860336,0.00027362542 1838,618.1351,395.12427,21.011597,78.43231,0.0002087657 1838,447.26407,169.19116,91.0184,150.7669,0.00015689763 1838,1.0896444,228.91504,18.26286,75.66574,0.00014813038 1838,1.2117856,188.83128,33.39257,173.35716,0.00012694938 1838,617.97,334.62164,21.176697,79.84897,8.909022e-05 1838,610.2854,69.68355,28.861267,155.74042,7.7727665e-05 1838,620.8397,29.914618,18.306946,56.77089,2.5275005e-05 1838,609.6847,440.59286,29.461975,63.363464,2.5258283e-05 1838,0.41241008,281.58875,13.831611,48.096924,2.5011388e-05 1838,3.4932,131.92091,74.28973,167.20067,2.223668e-05 1838,0.6831999,108.17237,13.733658,48.532326,2.1840424e-05 1838,0.5526441,317.80502,20.069944,132.36942,1.27811245e-05 1838,0.56115156,425.45172,13.603455,46.536896,1.08524555e-05 1838,587.33307,306.1476,51.8136,173.67532,9.905445e-06 1838,460.11444,44.274338,27.270355,59.12285,4.6565037e-06 1838,2.9300587,271.72467,57.048706,201.89368,4.0300833e-06 1838,586.80493,8.70321,52.341736,120.69964,3.6510162e-06 1838,1.4191097,52.467728,35.41842,197.09119,3.3597485e-06 1838,1.0140495,392.0457,29.262451,103.52844,2.445582e-06 1838,34.97195,426.84384,75.914795,73.38284,2.9770646e-07 1838,1.6503549,12.628717,59.715908,126.62615,2.93487e-07 1838,0.67740804,17.628822,14.150711,124.82592,1.3855784e-07 1839,607.16907,237.41788,31.284851,60.955505,0.007600746 1839,471.4424,207.03415,43.51767,84.82117,0.002660962 1839,603.0441,234.0224,36.10254,200.69,0.0010873121 1839,1.1124032,197.58939,18.06471,76.98117,0.001052885 1839,532.00476,262.12253,24.535583,46.6102,0.0008800379 1839,622.1837,170.63226,16.962952,55.400345,0.0005387632 1839,612.46545,158.82703,26.402344,123.02011,0.0004375267 1839,621.3133,94.87997,17.833374,56.03324,0.00039446936 1839,616.11456,274.45538,23.032104,84.368256,0.0003905379 1839,618.15015,375.86206,20.996521,80.237335,0.00023337877 1839,0.613833,259.128,13.653721,50.67383,0.00020359003 1839,0.8538501,141.5058,18.955084,82.5504,0.00019309558 1839,617.8827,327.89322,21.263977,80.628235,0.00013391633 1839,1.321976,167.59926,34.974228,167.37267,0.00013351261 1839,457.88516,179.90495,86.187164,146.37404,0.00011750041 1839,588.5577,93.73112,49.674927,220.36816,0.00010407797 1839,611.16284,60.86411,27.983826,156.65257,9.001788e-05 1839,0.6740039,247.8705,20.00193,140.1071,6.78913e-05 1839,92.926216,78.400154,80.85375,190.99896,4.7884816e-05 1839,614.4195,417.62125,24.727173,84.366486,4.3607026e-05 1839,3.6680567,157.1319,77.14011,254.60635,3.345521e-05 1839,0.52738285,336.84616,18.491016,74.14517,1.5386913e-05 1839,0.55490804,390.9811,18.396479,72.61813,1.3198918e-05 1839,572.5773,358.16537,66.5694,131.69525,7.668715e-06 1839,596.3271,3.5378451,42.81958,86.32259,6.8345266e-06 1839,1.1597607,286.62494,33.13703,181.32257,6.01945e-06 1839,0.78297037,442.4164,21.891716,61.352234,2.4901185e-06 1839,0.83629805,75.23975,20.9949,110.02886,1.3031986e-06 1839,2.8092692,395.32285,56.274933,98.262695,7.0052664e-07 1839,34.789013,426.5777,75.95755,73.783356,2.9327995e-07 1839,1.8083464,9.63056,56.688145,126.61585,1.0218679e-07 1839,1.314764,2.7588706,36.6846,45.685253,1.7807194e-08 1839,0.5109473,2.182894,10.081908,97.983665,3.3128011e-09 1839,462.5252,3.0078256,45.579865,51.97605,2.5640573e-10 1840,505.01547,217.93993,21.40329,46.53047,88.93183 1840,622.1943,224.00316,16.952393,48.812485,0.037441295 1840,621.06244,85.13572,18.084229,56.103645,0.007470347 1840,493.39148,200.62128,44.521484,84.46918,0.0033655218 1840,609.7115,327.45828,29.43518,128.59515,0.003018163 1840,611.99365,197.51117,27.023926,124.70239,0.0017921579 1840,623.0282,278.85526,16.11847,49.56485,0.0017516133 1840,572.43097,136.34445,64.10339,216.00589,0.0015825834 1840,610.8557,77.07168,28.290955,147.63559,0.0011166743 1840,1.0148258,192.31511,18.025784,64.990585,0.0003849378 1840,622.5601,428.51962,16.586548,49.08789,0.00026634792 1840,0.6444515,167.18414,13.86648,53.486465,0.0002523187 1840,0.5770972,224.81204,19.596355,135.62369,0.00020054952 1840,584.4839,13.69097,54.66278,120.55764,4.9666938e-05 1840,0.5947477,400.2642,18.436443,70.16135,4.476246e-05 1840,0.38915733,280.97528,14.004674,53.271698,4.1560626e-05 1840,0.43143514,253.27052,13.925199,50.684586,3.6658374e-05 1840,1.5181055,141.43272,34.887085,163.21938,3.3524673e-05 1840,0.5479028,350.12894,13.822497,49.00943,2.9023571e-05 1840,481.584,160.31969,99.84183,188.56465,2.6069907e-05 1840,0.5507975,298.64835,20.245298,135.49442,1.98569e-05 1840,5.856693,222.08725,77.56312,239.28656,1.8187273e-05 1840,1.0572892,89.773544,18.41551,137.56566,1.3898239e-05 1840,585.11304,391.6503,54.03363,103.98035,7.645159e-06 1840,0.7778752,440.87622,21.93455,62.814117,6.418362e-06 1840,3.7716017,33.729637,79.62521,281.6155,2.4905937e-06 1840,2.7474577,398.1647,56.56981,95.53592,1.8592942e-06 1840,2.0616407,9.563698,58.753563,124.626945,9.3056036e-07 1840,509.65033,429.19073,77.316895,71.77942,7.208926e-07 1840,56.271786,428.13736,74.592804,72.23068,2.9517454e-07 1840,437.76398,1.1014209,43.92697,48.542873,1.861812e-08 1840,0.5813017,2.6269433,9.1475315,96.86104,1.4047316e-08 1841,531.4051,204.28459,27.436584,53.696457,97.09076 1841,619.6884,214.80527,19.458252,61.94574,0.09141571 1841,611.7617,123.94278,27.384949,140.07932,0.005012689 1841,620.24615,115.57707,18.900513,61.178757,0.0034478544 1841,520.4157,179.9871,55.5448,95.94743,0.0012262864 1841,618.3422,260.99445,20.804443,83.72949,0.00030482112 1841,0.812579,181.2174,18.02125,68.22867,0.00019583135 1841,617.99414,324.9824,21.152527,81.97815,0.0001604478 1841,0.73625654,133.80121,18.478563,77.797714,0.0001573994 1841,576.01514,129.55746,63.13153,224.90527,0.0001284544 1841,618.37384,400.95737,20.772827,78.897125,0.00011796277 1841,0.7982153,88.21316,18.865656,78.9278,8.4394065e-05 1841,1.8958546,78.71208,33.552864,178.00954,6.524039e-05 1841,0.62676513,391.35846,18.33586,72.26285,4.3566622e-05 1841,0.7235221,219.45154,19.81907,135.72101,4.2266183e-05 1841,601.66254,234.50008,37.48413,205.12337,3.577867e-05 1841,616.3867,47.63103,22.759949,89.46036,2.2137823e-05 1841,0.61270183,307.95544,18.53325,76.585724,2.2113894e-05 1841,3.523947,147.10767,56.631203,218.89578,1.9254303e-05 1841,583.5912,26.297096,55.55548,202.8475,9.7628745e-06 1841,1.1980339,343.92578,31.92999,144.59888,8.660588e-06 1841,0.66476154,440.16315,22.076126,63.097015,8.373167e-06 1841,572.045,350.6578,67.101685,137.57248,6.8896675e-06 1841,595.94366,5.431416,43.203003,83.10723,4.7552517e-06 1841,1.5684538,16.18381,59.49465,117.064285,1.3636138e-06 1841,83.03849,50.185555,78.80634,205.35834,1.2049629e-06 1841,34.090637,429.0752,76.95898,71.90524,4.396511e-07 1841,105.89797,431.1043,72.208534,69.172,3.2013344e-07 1841,209.27724,426.1149,71.85277,72.40268,2.7586543e-07 1841,0.5067493,7.8821845,8.1879015,90.94529,1.798113e-07 1841,537.01306,428.40112,75.060425,70.55243,1.4843866e-07 1841,0.9551433,6.531996,30.716896,60.248825,2.9149968e-08 1842,581.6736,208.24554,37.362305,72.2948,99.58277 1842,622.8259,209.60876,16.32074,54.753876,0.12255283 1842,602.5817,226.76756,25.837524,51.41057,0.038881354 1842,1.2118498,146.20378,18.246944,75.98747,0.004803929 1842,612.6917,208.17497,26.454956,134.29048,0.0023245176 1842,573.2951,150.86806,63.435913,196.74641,0.0018361534 1842,530.1793,208.74054,23.652527,46.105774,0.001438249 1842,0.73293704,191.87411,18.22876,76.61102,0.00033520628 1842,0.6495345,280.47168,13.739752,53.289703,0.000299823 1842,617.8994,366.67523,21.247253,84.41635,0.00028283073 1842,1.6719548,99.066086,34.762455,163.49751,0.0002762163 1842,617.8349,321.55594,21.311768,81.78906,0.00020396062 1842,616.1729,58.58576,22.973755,89.736465,0.00015603664 1842,0.5825472,223.06805,19.853542,141.82733,0.00014182039 1842,1.0742285,63.360516,21.322859,117.346054,0.00012952907 1842,611.69745,102.97367,27.449219,154.92099,5.229939e-05 1842,614.1399,413.2379,25.006775,89.70325,4.9732917e-05 1842,0.6364901,407.08997,18.318794,70.78723,4.5759207e-05 1842,602.37115,308.54584,36.775513,177.06104,3.8980717e-05 1842,0.48197755,333.2519,18.615465,79.07062,3.6295343e-05 1842,2.965529,150.35071,56.716377,218.75958,3.3602428e-05 1842,596.4827,5.1733823,42.66394,83.850716,3.1125863e-05 1842,0.8114746,264.4021,33.677647,180.01541,2.399745e-05 1842,56.276695,62.14324,92.09322,198.9036,4.8558527e-06 1842,2.8962305,399.53024,56.3168,94.08502,2.9024059e-06 1842,582.3548,0.0,56.79187,247.52792,9.932894e-07 1842,1.281875,14.299922,57.946728,121.02073,6.119128e-07 1842,0.5614172,10.869356,8.623685,86.16759,3.257956e-07 1842,0.98004395,5.6481967,31.690115,63.044598,3.5549252e-08 1843,455.52893,208.18408,32.31842,52.602234,0.035288088 1843,0.60560465,200.76553,13.845972,53.03453,0.0017597488 1843,621.71136,238.38557,17.435303,56.617874,0.0016455106 1843,612.9441,175.9595,26.202576,110.37988,0.0007107262 1843,0.8358789,191.1956,19.71032,128.48729,0.00027452246 1843,618.0064,268.9884,21.140259,82.58069,0.00022091769 1843,618.24884,380.92538,20.897827,81.323425,0.00020907892 1843,618.08374,319.65012,21.062927,81.72946,9.5023344e-05 1843,0.6586304,394.39355,18.343342,69.697815,9.0602494e-05 1843,617.1113,78.02189,22.03534,84.02543,7.2573945e-05 1843,587.3518,131.64026,51.79486,207.90747,6.8873414e-05 1843,0.9616854,101.104034,18.911444,78.72575,6.476108e-05 1843,612.72296,116.69301,26.423706,107.31114,6.435696e-05 1843,621.40173,36.820118,17.744934,54.19662,4.9400885e-05 1843,609.7757,441.4926,29.370972,64.24512,3.9633906e-05 1843,2.9823244,145.2388,58.5807,208.88617,3.5852718e-05 1843,0.7758073,148.1794,18.560196,78.23183,3.2398235e-05 1843,602.89874,314.27432,36.247925,172.12195,2.8980478e-05 1843,0.40720868,329.20068,18.626728,79.551575,2.4466368e-05 1843,0.67576826,274.54648,18.253784,74.04773,2.2892673e-05 1843,0.95047855,252.42235,32.734203,180.15318,1.6541268e-05 1843,596.0266,4.836725,43.120056,79.13095,1.0148821e-05 1843,0.7430461,441.02444,22.173098,62.752594,6.6245534e-06 1843,2.8925781,399.73438,56.049454,93.57178,3.506684e-06 1843,45.52898,54.55437,90.58046,200.14772,1.6727433e-06 1843,1.1761117,16.353157,28.567476,122.04626,1.4912576e-06 1843,556.66754,430.13705,78.44531,71.714325,8.746442e-07 1843,0.7190092,6.482282,11.804633,96.63521,5.3267235e-07 1843,62.68934,431.42627,75.20556,68.75464,5.250766e-07 1843,420.90558,0.0,45.9776,61.826992,2.169915e-07 1843,397.0575,0.6590853,43.684967,54.73873,1.7584107e-07 1843,322.408,1.1109587,45.665344,45.6208,1.03106586e-07 1843,2.0191276,20.908926,84.63194,141.8504,9.515125e-08 1843,0.88383305,1.9368896,39.103836,54.620014,1.1424396e-08 1844,487.3873,210.84875,31.856354,51.696075,0.33419028 1844,621.70636,182.22723,17.440308,53.05577,0.0076274956 1844,612.2655,130.8187,26.881165,130.1648,0.002162939 1844,621.447,124.45999,17.699646,57.283325,0.0019169202 1844,506.97205,216.15135,25.627075,46.417435,0.0017395994 1844,1.266062,170.28009,18.307213,70.09085,0.0007358291 1844,0.52640706,123.9271,14.341558,54.582497,0.00068037276 1844,612.0159,213.33456,27.130737,148.21469,0.0003373006 1844,0.5077254,215.3426,13.849921,51.38765,0.00031400356 1844,618.29156,388.4296,20.855103,80.08978,0.000239776 1844,618.15204,312.3344,20.994629,82.233826,0.00012368099 1844,1.4498527,74.64643,18.910006,72.11683,0.00011585582 1844,2.0763006,122.11162,35.20529,166.89595,9.749949e-05 1844,0.592758,212.84315,19.928663,141.87746,7.046569e-05 1844,572.18475,119.42611,66.961914,225.10046,5.2334115e-05 1844,603.03436,280.8304,36.112305,203.40637,3.4150667e-05 1844,609.9101,441.22934,29.236572,62.82553,3.159384e-05 1844,0.55498904,309.61096,13.847817,47.827423,2.371027e-05 1844,4.5578322,123.86825,80.69211,239.62582,2.3614904e-05 1844,0.61694986,392.61295,18.29871,71.70499,1.9752266e-05 1844,0.6212761,317.00085,20.936373,106.63379,1.06870975e-05 1844,0.5720744,275.4544,13.681654,48.431396,8.121621e-06 1844,616.4383,43.036003,22.708374,85.62493,7.697188e-06 1844,0.8658277,442.61554,21.904873,60.99823,6.2890713e-06 1844,2.8262777,289.1543,57.48867,188.87894,2.7505646e-06 1844,597.85315,6.632871,41.293518,80.89904,2.4371348e-06 1844,2.6159408,37.921265,62.756832,189.92104,6.3550755e-07 1844,403.018,2.397982,45.389282,55.049923,5.82685e-08 1844,0.9069352,10.022367,9.521236,93.83357,3.445716e-08 1844,1.4055403,10.509326,36.255966,78.67844,1.2283409e-08 1844,0.9702547,0.0,21.008883,47.026073,2.0735529e-09 1845,543.8198,187.81761,36.533997,93.59306,1.1085556 1845,476.7598,204.71782,33.70804,56.14482,0.0514948 1845,547.89233,241.91159,22.577759,46.99707,0.028639171 1845,585.5087,226.54112,28.15271,54.67723,0.010776372 1845,1.4242904,169.8804,17.318068,71.64447,0.00060835836 1845,610.8321,183.25806,28.314575,114.9538,0.00025225064 1845,618.3601,394.87448,20.78656,79.27945,0.0002051424 1845,571.82874,138.93161,66.9043,213.42883,0.00019439765 1845,0.6259855,216.49115,18.289776,77.6875,0.00014983247 1845,618.0061,334.17007,21.140564,80.58789,0.00011824458 1845,2.0633774,105.518005,27.456577,149.37173,0.00011656756 1845,616.51843,87.35733,22.628235,81.93828,9.417253e-05 1845,465.9958,154.94218,81.96405,158.76262,9.3976596e-05 1845,1.598226,66.625015,18.701267,69.89256,3.0172134e-05 1845,602.884,288.533,36.262695,194.52808,2.7610991e-05 1845,0.65345705,259.45007,18.337278,74.94495,2.6422078e-05 1845,609.95355,440.54016,29.193115,64.13455,2.6171494e-05 1845,615.1362,19.002842,24.010437,82.57596,2.2257684e-05 1845,1.0191114,111.870186,13.670187,46.323692,1.8957347e-05 1845,0.5660417,302.48923,18.496511,73.57547,1.8870369e-05 1845,1.7761215,202.55707,32.87599,177.04568,1.8857272e-05 1845,0.5962956,391.63605,18.308092,71.95395,1.244353e-05 1845,3.7600195,124.71248,80.62191,246.5862,1.02758e-05 1845,599.06506,37.54554,40.081604,221.93097,7.986516e-06 1845,0.8903923,311.7023,28.173502,143.16275,7.354212e-06 1845,17.978455,52.27257,92.82551,201.70638,4.4332105e-06 1845,2.8032894,251.18376,57.499107,219.4691,3.8473227e-06 1845,0.8268026,442.35397,22.052612,61.607178,2.8441086e-06 1845,2.6606967,427.97992,53.540382,71.48758,4.4671262e-07 1845,2.3778548,20.89696,58.10711,105.810875,4.3680419e-07 1845,1.0227718,10.550889,13.858705,80.40199,8.575074e-08 1845,1.4346077,4.276141,34.79807,46.536594,1.9542275e-08 1845,458.6412,2.2674496,42.48282,52.285374,9.712713e-09 1846,540.3557,221.78249,33.539795,58.6541,0.0036868486 1846,622.10077,181.74222,17.045898,50.516586,0.0020814806 1846,380.07016,197.00352,24.171814,47.105286,0.0017868484 1846,1.2646184,170.59697,17.688017,69.335724,0.0009228873 1846,617.9584,199.04843,21.188293,84.84073,0.00049168314 1846,612.0619,101.779724,27.084778,134.34247,0.00040482645 1846,618.37286,251.2281,20.773804,79.655716,0.00020964978 1846,618.2109,394.94293,20.935791,79.44098,0.00017039264 1846,0.59852946,212.35374,18.295107,79.03844,0.0001355453 1846,618.00415,77.00422,21.142517,77.182915,0.00013518537 1846,617.995,347.4897,21.151672,81.25641,0.000120493976 1846,0.6608993,147.89813,14.092581,56.33777,7.920267e-05 1846,587.0633,136.38057,52.083374,204.67436,7.115815e-05 1846,1.489917,137.0586,34.604343,158.74884,3.298963e-05 1846,609.9195,439.97464,29.227173,64.35382,2.4693134e-05 1846,602.1551,258.67377,36.991577,197.79922,2.2113261e-05 1846,616.36017,21.946573,22.786499,75.92059,2.2045586e-05 1846,0.41046387,251.18982,20.598778,138.10309,2.0477617e-05 1846,0.647382,398.46597,18.167706,71.44946,9.1177035e-06 1846,1.1671664,58.84854,13.679901,46.881798,8.717532e-06 1846,4.6031513,133.3116,81.01675,243.52394,6.5744425e-06 1846,0.4634611,358.0997,18.485523,73.28073,6.067043e-06 1846,572.71027,359.0826,66.4364,131.29114,5.8856767e-06 1846,1.216285,63.977306,20.4332,148.41972,4.3084187e-06 1846,0.8822917,442.188,21.945663,61.12973,2.927916e-06 1846,0.99876225,301.8981,33.190815,174.47849,2.7633744e-06 1846,587.19446,11.999919,51.95221,117.03129,1.8328791e-06 1846,2.9909847,37.666367,60.083076,212.35333,6.9035553e-07 1846,2.8819468,396.0838,56.417614,97.428345,5.8180797e-07 1846,1.3837337,12.981696,36.41195,75.018074,9.6033524e-08 1846,8.373102,0.7696159,45.498566,45.0353,1.13560485e-08 1846,505.77255,4.227526,42.614594,49.413998,7.53682e-09 1847,609.72266,222.45532,29.424011,76.46384,0.00821939 1847,386.96313,198.36896,24.132751,49.171722,0.004266862 1847,621.72363,55.162052,17.423035,49.125713,0.00414256 1847,623.67426,258.58057,15.472412,45.858093,0.002862112 1847,617.1871,171.26137,21.959595,75.75496,0.0010329912 1847,0.6878532,225.67151,13.698142,48.97412,0.0006893492 1847,589.23956,108.62178,48.198547,217.60103,0.0006830669 1847,607.6341,19.79617,31.512573,108.028076,0.0006752042 1847,1.0023763,182.69643,17.93473,72.34317,0.0006024244 1847,611.4367,74.517555,27.70996,151.85825,0.00031347878 1847,618.26025,388.6106,20.886414,79.425415,0.00016146271 1847,617.96686,292.9395,21.17981,87.285614,0.00013971038 1847,0.6713745,218.83868,19.659414,135.63629,9.006236e-05 1847,0.93026453,135.31134,18.440716,83.217514,7.5671356e-05 1847,602.88904,249.37598,36.25763,203.69351,5.602905e-05 1847,0.53596354,309.43268,13.644304,47.077423,2.9350404e-05 1847,610.04095,441.0049,29.105713,63.731354,2.417782e-05 1847,0.5328605,252.9111,13.744604,49.69931,2.3754405e-05 1847,1.7258415,118.8187,33.727943,167.9365,1.5660808e-05 1847,0.56765217,323.39478,19.855158,135.14774,1.0595277e-05 1847,0.56086266,419.23166,13.650879,46.89914,1.0025937e-05 1847,0.5780884,282.26562,13.602266,48.539886,9.826505e-06 1847,3.213602,203.88754,57.12182,222.41452,8.803116e-06 1847,598.135,8.406432,41.011658,48.41078,8.3237555e-06 1847,1.4840275,64.101364,18.264622,70.87305,6.7627525e-06 1847,573.32526,361.95163,65.82141,127.87488,5.5707037e-06 1847,0.8662459,442.32382,21.903372,61.140656,2.9887865e-06 1847,3.7177508,41.417,80.84733,220.50183,7.169148e-07 1847,5.3077116,355.86523,79.30097,132.1029,5.7350616e-07 1847,2.784642,429.172,53.28773,70.234375,4.1729783e-07 1847,1.000057,14.255378,14.137497,86.94597,3.757481e-07 1847,1.5961931,27.778458,29.968351,149.36841,1.6034899e-07 1847,1.8930974,8.67056,51.072033,69.68195,6.881912e-08 1847,491.32736,3.2420542,43.8403,51.553444,2.3276401e-08 1847,27.205803,0.0,42.442566,53.354744,8.821844e-09 1848,392.97452,199.86269,24.764893,47.42836,0.0028567316 1848,0.9727983,163.40135,13.1878805,51.16469,0.00045274055 1848,617.6702,201.613,21.47644,77.95352,0.00041141763 1848,1.5990243,126.96844,19.086569,123.82142,0.00019320278 1848,610.4928,73.07401,28.65387,147.2557,0.00015420582 1848,621.2329,136.5087,17.913757,56.013123,0.00015402945 1848,617.79395,164.5291,21.352722,69.008224,0.00014695198 1848,615.0523,17.490284,24.09436,79.80374,0.0001454448 1848,0.53495365,211.56313,18.33222,79.55992,0.00011828247 1848,618.15717,341.51712,20.989502,79.42267,9.724615e-05 1848,4.3516455,89.34858,69.999115,170.44095,6.8203175e-05 1848,612.48895,234.50404,26.657715,146.85793,6.282297e-05 1848,614.36304,415.57428,24.78363,87.38818,3.4256027e-05 1848,1.7047461,167.84575,33.660007,161.529,3.2983433e-05 1848,587.3024,150.30785,51.84424,200.63634,2.82427e-05 1848,603.2612,296.00027,35.885437,186.78427,2.404432e-05 1848,0.36037272,247.64957,20.418377,141.3356,1.9586856e-05 1848,0.40226644,274.7821,13.769048,48.328003,1.5954816e-05 1848,0.616377,398.71606,18.221489,70.863525,1.0080623e-05 1848,0.50519204,344.05704,18.477976,73.81979,8.560554e-06 1848,1.3038917,85.56484,18.614262,73.15545,7.669199e-06 1848,2.8812208,210.00182,57.092804,222.09068,6.39684e-06 1848,318.67218,177.28409,72.80472,169.26309,5.9712847e-06 1848,0.8662956,441.78403,22.01725,61.48114,2.5952568e-06 1848,1.1076173,322.28314,32.84267,163.39764,2.4381438e-06 1848,1.0788087,15.703405,15.3732195,101.85098,5.889627e-07 1848,2.759572,426.93747,53.672253,72.173676,3.6813626e-07 1848,488.935,424.90674,71.66052,74.44037,2.600349e-07 1848,1.4582406,21.928185,31.161774,156.47913,1.5456891e-07 1848,1.7525781,6.0725684,52.25574,78.50172,8.724993e-08 1848,535.5861,0.0,45.270447,59.523933,8.892731e-09 1848,26.109995,0.0,43.06398,53.501637,2.5652227e-09 1848,408.07486,0.0,44.340057,48.068733,2.0289515e-10 1849,44.437008,183.41524,26.412228,49.438126,0.007723053 1849,392.53705,196.04349,23.760162,49.200714,0.0075296653 1849,491.56247,260.18802,44.72525,152.89014,0.006686371 1849,524.0352,251.31798,71.14819,197.18105,0.0012985885 1849,622.0993,76.965164,17.047363,48.394035,0.0010354284 1849,1.1989437,151.95192,17.626635,73.96829,0.00092816533 1849,0.76380455,195.12436,13.625405,48.22815,0.00081589114 1849,80.62068,193.67456,41.01191,94.307526,0.00070688414 1849,621.64374,205.20976,17.50293,52.426193,0.00053321867 1849,611.7227,181.79367,27.42395,134.11734,0.000476583 1849,525.44635,246.04086,35.324585,64.33472,0.00043709466 1849,0.88781416,186.7926,20.247387,129.23996,0.00022049971 1849,610.5906,72.32618,28.556091,141.1553,0.00021381961 1849,576.9962,197.8935,60.265747,166.70944,0.00019672229 1849,617.5342,158.21634,21.612488,75.29724,0.00019028038 1849,612.3824,342.0744,26.764282,126.57208,0.00017592454 1849,616.9745,25.744614,22.17218,74.47959,8.631248e-05 1849,0.6310547,224.66318,13.760654,49.123108,7.261528e-05 1849,0.7371623,128.01138,13.792339,49.29103,3.6261157e-05 1849,610.1703,438.3562,28.97638,66.046844,2.762042e-05 1849,1.9007862,103.783646,33.4368,154.61525,1.9696286e-05 1849,0.62095624,267.56387,18.379269,74.46744,1.9496283e-05 1849,3.327469,155.6048,56.737785,202.66089,1.6590557e-05 1849,0.535992,309.04416,18.515205,73.94406,1.6457776e-05 1849,0.61257976,398.1097,18.234272,71.65875,1.2594569e-05 1849,568.9,28.32823,70.24664,115.21326,9.549714e-06 1849,0.48473552,351.36273,18.45456,72.93103,7.413108e-06 1849,0.97327965,238.30884,33.58898,182.9267,7.015096e-06 1849,146.34511,151.49573,76.48831,165.45432,4.6329033e-06 1849,0.80125654,441.96777,22.007603,61.70694,2.8738602e-06 1849,1.0525391,356.2005,32.504356,134.88852,2.0792072e-06 1849,0.9710856,67.11149,18.63329,72.4184,1.9606323e-06 1849,3.4042773,31.81043,81.82867,221.19827,6.297327e-07 1849,1.1510735,7.399636,22.379507,53.66955,1.353812e-07 1849,1.4666033,23.951849,30.11367,150.24825,9.06021e-08 1849,2.0948358,6.2013836,54.607365,74.17548,2.0694367e-08 1849,544.1291,0.93147135,45.57135,55.302982,2.4357647e-09 1850,442.56537,229.25995,42.538605,101.916504,0.027526103 1850,150.22441,213.06268,24.577362,49.51593,0.0044060177 1850,1.2473959,164.59903,17.922346,72.9014,0.0018119068 1850,0.7101131,208.2519,13.965069,51.457016,0.0010498799 1850,612.18317,182.45552,26.963501,117.64281,0.0005917514 1850,1.2680176,195.12003,28.459097,98.53079,0.0005083761 1850,393.4778,191.46283,24.8331,58.00557,0.00048644643 1850,64.80455,210.47267,32.565277,79.451004,0.00048251636 1850,383.82635,177.18143,38.281586,136.97025,0.00039946302 1850,622.40125,141.41069,16.745422,47.526993,0.0003910768 1850,618.22577,255.55917,20.920898,81.78299,0.00023821561 1850,618.3227,388.26355,20.823975,79.93448,0.00018204396 1850,616.9775,75.48957,22.16919,84.0864,0.00013481446 1850,621.3104,36.273464,17.836243,55.279743,0.00012376925 1850,618.0767,341.75616,21.069946,79.90146,0.00011599125 1850,603.9221,221.24147,35.22455,182.9876,6.0898714e-05 1850,609.30414,4.5240445,29.84253,55.14873,5.366067e-05 1850,0.46420738,227.21982,20.304514,146.02435,5.215162e-05 1850,600.8038,74.81998,38.299316,195.60294,4.190344e-05 1850,2.827194,162.88306,56.592373,196.23138,3.07033e-05 1850,0.83684164,127.32667,13.761629,49.82415,2.9631086e-05 1850,0.52733237,316.01288,13.841324,47.293365,2.750896e-05 1850,610.0157,440.3099,29.130981,64.25073,2.4370749e-05 1850,586.2643,14.566332,52.166016,98.73343,1.2674431e-05 1850,0.58725953,289.49786,13.6717615,47.360992,1.1982618e-05 1850,588.5099,328.13455,50.63678,157.8324,9.625844e-06 1850,50.722527,171.96063,75.57849,154.83423,9.2602795e-06 1850,0.6164779,339.181,19.749386,134.23502,9.024879e-06 1850,351.87277,165.07709,110.586395,201.19739,8.974926e-06 1850,0.517559,393.1289,13.695589,46.038452,8.16874e-06 1850,1.0692,79.812355,18.48158,72.16729,6.7881074e-06 1850,0.74024254,422.32712,17.173033,79.6767,3.8780004e-06 1850,1.4053833,68.48089,29.484451,157.63232,2.080818e-06 1850,2.7393978,294.1578,57.75647,182.68417,1.0200108e-06 1850,2.8920507,28.792917,82.06404,230.66151,6.772457e-07 1850,2.8635807,428.1406,53.736206,71.21182,3.806649e-07 1850,0.9078972,41.983406,19.14053,69.25885,2.0600453e-07 1850,373.5381,1.4898471,46.13394,49.515125,1.9098282e-08 1850,1.4331169,10.856882,38.51501,78.38558,1.799457e-08 1851,620.22955,185.59253,18.917114,52.708237,0.08260273 1851,621.972,256.40588,17.174683,47.636505,0.023538886 1851,612.28705,193.28592,26.85962,128.01205,0.013362831 1851,1.4919263,186.67407,17.904852,71.83853,0.00056925666 1851,20.115929,196.5956,42.34992,70.5576,0.0004974694 1851,143.86078,215.35289,24.382874,47.879745,0.00040701794 1851,618.09064,271.8684,21.05603,84.023254,0.0004064489 1851,621.82733,88.42019,17.319336,50.99491,0.00019446143 1851,618.23676,380.1741,20.909912,82.51944,0.00016042117 1851,617.9772,319.74948,21.169495,81.62616,0.0001216349 1851,616.8084,123.99115,22.338257,85.46826,8.143055e-05 1851,1.1949301,135.93007,18.317524,78.01303,7.040201e-05 1851,587.6004,89.68975,51.546265,213.95764,5.946837e-05 1851,1.5679957,197.67155,31.395487,174.79497,5.4940112e-05 1851,0.68112063,286.15427,18.670773,75.36145,3.947961e-05 1851,602.56146,287.98923,36.585205,196.8399,3.5868587e-05 1851,387.57428,204.88922,66.568756,179.84976,2.699866e-05 1851,610.0073,440.76437,29.139343,63.92929,2.469205e-05 1851,616.09174,19.69504,23.054932,87.59064,1.7956845e-05 1851,5.100863,195.15353,77.8214,238.89465,1.2252081e-05 1851,0.8230811,247.4023,18.649221,72.20976,1.22256115e-05 1851,0.5468652,330.18576,18.525288,73.77286,1.0351497e-05 1851,0.6588489,419.95053,13.505901,46.054474,9.185413e-06 1851,171.5242,116.71858,73.06206,188.45934,6.0677025e-06 1851,0.6725456,372.99234,18.292904,72.03049,6.049052e-06 1851,567.2122,14.816491,71.93445,138.11728,4.5336865e-06 1851,1.2269597,79.629166,18.440725,72.38245,4.0884606e-06 1851,1.1376432,393.66125,29.144886,102.348694,2.4138649e-06 1851,2.047479,76.68623,35.156414,184.64687,1.0131102e-06 1851,6.7272887,398.42856,91.16702,95.13495,6.0168185e-07 1851,509.53302,428.37088,73.345764,71.24054,3.7609658e-07 1851,0.78591555,45.499485,14.068333,47.10925,2.5776438e-07 1851,2.7360873,17.602858,82.7586,148.77379,7.1757924e-08 1851,0.951757,7.56814,21.804667,54.169212,4.300746e-08 1851,1.5973177,6.466397,54.485863,73.89715,7.3432966e-09 1852,149.07597,187.79314,38.195404,83.80098,0.006757974 1852,48.837566,225.0706,26.825779,52.100906,0.001476498 1852,620.45844,143.87398,18.688232,54.90773,0.00078494125 1852,609.70374,96.89923,29.442932,133.48161,0.00050805864 1852,617.85236,210.62135,21.294312,82.62773,0.00033957962 1852,0.9512264,179.5855,17.355984,74.413345,0.00031577353 1852,618.28217,394.57767,20.864502,79.86548,0.00019141682 1852,618.2903,270.3799,20.856384,80.72171,0.00015516173 1852,616.9154,59.305195,22.231262,74.50276,0.00015485633 1852,618.02795,334.4121,21.118713,80.720245,0.00011579418 1852,414.35464,200.57797,67.78119,174.09277,8.918093e-05 1852,1.1156803,277.3727,18.653118,77.14011,6.674091e-05 1852,1.1518954,122.508194,18.184948,75.35129,5.885519e-05 1852,584.38605,13.124278,53.817566,104.63265,4.4329357e-05 1852,2.3079689,245.43251,43.602562,132.63725,3.686002e-05 1852,602.75134,295.75937,36.395325,187.94766,2.992238e-05 1852,602.1853,154.69106,36.961365,171.70839,2.806876e-05 1852,1.4440626,186.35815,28.374655,137.33783,2.752229e-05 1852,609.95984,440.49527,29.186829,64.107666,2.3544833e-05 1852,5.251286,123.46211,76.539444,241.35945,1.0757532e-05 1852,0.5773547,419.62875,13.589598,46.27896,9.193457e-06 1852,0.48697105,351.16064,13.848646,47.89392,9.142764e-06 1852,1.1308651,78.504906,18.593767,73.312675,8.298788e-06 1852,0.666167,356.75458,19.675451,128.39548,4.344016e-06 1852,0.8706478,442.37875,21.946817,60.989502,2.8670331e-06 1852,1.4414241,63.227776,29.917679,154.53705,5.8427787e-07 1852,3.0172071,396.28992,56.23435,97.39447,5.4665816e-07 1852,2.6935546,17.266666,83.2128,147.10269,1.3294108e-07 1852,1.0089844,38.52211,19.193813,73.830444,6.3197525e-08 1852,370.42438,1.3678353,40.848297,46.88795,1.8347697e-08 1852,1.110402,7.1495023,21.788345,54.94985,1.4758854e-08 1852,6.5704446,1.1378418,44.448864,51.648857,6.4562394e-10 1853,617.26685,189.82823,21.879822,71.22084,0.0013524494 1853,608.8625,71.44113,30.28418,149.71065,0.0012372591 1853,44.530483,183.22734,33.818645,71.294846,0.00088372827 1853,1.1127474,167.81151,17.913338,71.13107,0.000624629 1853,620.96075,129.73209,18.185913,58.70497,0.00035066617 1853,618.26184,381.2315,20.884827,81.14673,0.00021469661 1853,28.908005,203.52391,44.102295,108.576065,0.00020040708 1853,618.21844,251.74289,20.928223,78.56247,0.00014556455 1853,583.5411,10.850781,54.956726,108.64983,0.0001353975 1853,0.67592937,262.23315,13.192029,45.888428,0.00010861148 1853,617.90375,319.80057,21.24292,81.058014,9.0039524e-05 1853,0.91204345,129.09027,13.687091,48.15927,8.894268e-05 1853,0.83703125,206.14194,20.647625,103.299774,8.266149e-05 1853,605.9478,4.8072658,33.198853,56.976334,8.25504e-05 1853,417.3169,188.4559,72.16843,167.73541,5.6527013e-05 1853,602.1342,155.26472,37.01245,167.8314,4.9724902e-05 1853,1.6880811,119.316956,34.096855,165.96988,3.977302e-05 1853,0.6888135,257.36707,20.297964,130.17749,3.304511e-05 1853,609.9314,438.3246,29.215271,66.65323,2.790946e-05 1853,5.5946584,120.63045,78.59335,239.34792,2.6351214e-05 1853,0.5001172,288.61172,13.826138,47.230377,1.6544958e-05 1853,587.2572,231.45729,51.889465,243.141,1.2312146e-05 1853,1.9133106,227.9921,49.380356,171.9776,1.05184e-05 1853,0.6398869,419.93588,13.515729,46.30371,8.479643e-06 1853,0.90618163,313.9006,28.312468,141.87851,5.7685575e-06 1853,1.0323186,78.50683,18.613028,76.113594,5.249067e-06 1853,0.5286845,379.56067,13.702666,46.214325,5.181782e-06 1853,0.9396997,443.26813,21.768915,59.999023,2.5493791e-06 1853,2.9957309,397.60626,56.194714,95.92355,5.605896e-07 1853,2.055249,17.720013,60.99483,231.17484,2.9736086e-07 1853,1.0225309,39.503925,19.034754,73.115295,9.706941e-08 1853,1.0411881,5.9436426,22.127615,56.958847,6.698035e-08 1853,376.65964,0.848431,41.886658,49.299416,2.5766301e-08 1853,6.471296,0.5406543,45.155243,53.113976,5.600184e-09 1854,135.97295,221.77951,25.5775,49.97644,0.0011346792 1854,609.6373,92.35917,29.509338,140.47961,0.00062157225 1854,617.0972,176.80379,22.049438,68.04323,0.00049586326 1854,620.90656,137.07559,18.240112,57.71414,0.0004054002 1854,1.4697893,163.87459,17.806974,68.30527,0.00035814557 1854,622.62585,428.3506,16.520813,49.85324,0.00023828285 1854,621.5052,47.94614,17.64148,50.262257,0.00023825742 1854,414.53604,164.85004,68.89896,177.87146,0.0002023261 1854,617.7975,222.97177,21.349182,81.46359,0.00017203622 1854,1.0209823,203.50363,17.900984,76.164276,0.0001320314 1854,618.12994,368.22446,21.016724,80.54755,0.000117956915 1854,618.4143,272.18338,20.73236,78.78427,0.000117355274 1854,617.9894,320.23398,21.157288,80.247284,0.0001072348 1854,607.0024,5.14903,32.144287,54.998055,8.1115715e-05 1854,583.87,12.811967,54.52234,104.5446,5.842826e-05 1854,25.550344,198.7348,45.81816,129.23032,5.6755613e-05 1854,1.9362973,156.67337,33.79199,159.70468,4.131482e-05 1854,1.0527905,114.8122,18.391218,79.34023,3.7918973e-05 1854,602.1091,157.18404,37.037598,167.31606,2.9026836e-05 1854,602.8368,298.7468,36.309875,184.21979,2.5537114e-05 1854,0.8676978,255.30873,17.838552,70.36006,2.5466194e-05 1854,152.14806,131.7644,73.52348,192.35638,1.7164015e-05 1854,0.59227294,295.33447,18.423338,72.808014,1.2850509e-05 1854,3.8389096,213.45872,56.86013,210.86232,1.2777554e-05 1854,0.5526628,344.4075,13.803478,47.510864,9.345449e-06 1854,0.65653974,426.80066,13.411476,45.89264,8.516663e-06 1854,0.69531333,326.22437,19.697886,133.24033,7.633618e-06 1854,1.0640259,67.181274,18.574585,72.115845,4.049454e-06 1854,575.16016,425.06842,63.98651,74.04559,3.260015e-06 1854,0.9438672,443.5047,21.7629,59.91339,2.8248942e-06 1854,2.8464453,71.27776,49.414246,180.70624,7.554501e-07 1854,2.9756773,398.25702,56.165546,95.61636,5.98758e-07 1854,0.81701136,13.076937,13.408724,81.45875,3.110632e-07 1854,2.855713,16.303314,83.27119,149.30495,1.0662331e-07 1854,1.7625602,5.277865,54.16462,75.73335,2.5173264e-08 1854,381.77222,1.0643978,42.4068,51.28669,2.0450502e-08 1855,620.8,144.48247,18.34668,55.17256,0.0006393055 1855,1.29809,158.60742,17.57538,69.694855,0.0005892062 1855,609.8211,88.84929,29.325562,138.93773,0.00041326822 1855,429.7935,195.18774,40.569183,146.8328,0.0003798604 1855,5.350807,342.78516,78.97446,142.40396,0.00032616284 1855,617.6653,198.97131,21.481384,78.25183,0.000233381 1855,435.2919,217.52342,24.875824,57.554092,0.00022004594 1855,616.47754,58.267372,22.669128,77.928535,0.00020022695 1855,618.17706,388.2767,20.969604,79.43512,0.0001757892 1855,0.76476645,198.58052,17.541483,77.47487,0.0001630575 1855,618.16205,251.85785,20.98462,78.56149,0.00015106668 1855,148.70882,203.26283,25.71466,56.813705,0.00014350102 1855,617.9919,341.0564,21.154785,80.492676,0.00010630413 1855,1.0957112,311.19324,17.932613,69.41983,9.223735e-05 1855,583.89886,11.374034,54.728455,106.18338,8.2728046e-05 1855,1.4103532,344.6525,17.95215,131.87631,8.170187e-05 1855,606.41254,4.8512793,32.73413,55.484634,7.9783305e-05 1855,2.8128304,154.32724,45.881275,172.22308,7.15998e-05 1855,27.423275,217.84587,42.96207,139.50117,6.696175e-05 1855,3.040791,416.37006,52.78481,77.50604,6.182717e-05 1855,45.979824,251.18011,34.970814,77.2016,4.9687595e-05 1855,0.6552987,284.0879,13.5907345,52.809814,3.942784e-05 1855,0.91845626,128.38385,13.5692835,48.363373,3.070169e-05 1855,601.7198,155.17123,37.42688,168.59537,2.8076254e-05 1855,45.143875,295.96954,25.226501,47.780243,2.6283351e-05 1855,609.9123,440.52573,29.234375,64.55237,2.4692145e-05 1855,602.7828,307.7094,36.36389,176.53986,2.4519017e-05 1855,9.003089,174.47955,102.33542,239.51535,2.0798665e-05 1855,405.8388,167.76532,108.01489,217.58017,1.8303923e-05 1855,1.0276799,435.53882,22.397236,68.00479,5.496444e-06 1855,1.0774113,67.2593,18.666164,72.35285,2.71111e-06 1855,1.753859,70.87153,29.257795,145.46509,1.9079587e-06 1855,0.7906983,45.94713,14.087431,45.54921,4.3884936e-07 1855,3.606963,35.0539,81.016335,218.75134,3.9848317e-07 1855,1.1716529,12.035616,26.396013,83.660484,7.511365e-08 1855,370.2248,1.5087012,41.3201,46.56586,2.339203e-08 1855,1.3142123,1.0492806,41.4261,46.087418,7.125435e-09 1856,54.203094,323.03726,36.129776,89.12393,0.0053219222 1856,608.6313,74.81635,30.51538,145.11118,0.0012338043 1856,442.09088,209.95915,23.737396,50.232834,0.001119782 1856,1.652509,184.5953,19.664171,136.80075,0.00063176284 1856,620.41113,136.91756,18.735535,59.09221,0.0006134912 1856,618.1701,176.06532,20.976562,69.08023,0.00042680572 1856,620.85657,92.29191,18.2901,55.589287,0.00039378827 1856,1.0172079,157.40579,18.139225,78.160904,0.0003131528 1856,117.43427,288.98645,26.534447,55.646606,0.00027535466 1856,617.87177,216.73932,21.274902,81.64081,0.0002515866 1856,111.9814,210.039,38.17987,139.89896,0.00019793236 1856,1.0385262,240.71115,13.3366785,57.52182,0.00019383781 1856,414.68594,168.4336,68.37543,175.82913,0.00017213765 1856,618.167,380.81097,20.979675,81.07446,0.0001273697 1856,13.822426,262.91925,106.27341,203.04404,0.000119200624 1856,50.85937,213.22868,26.335537,50.56044,0.000104406216 1856,4.1075797,156.43127,57.269337,214.06158,9.477077e-05 1856,618.1604,277.8505,20.986267,80.49527,8.8393965e-05 1856,583.5432,12.34001,55.04785,107.293465,8.474273e-05 1856,0.95886314,289.35138,18.295956,87.77829,6.9420545e-05 1856,1.0374911,114.92183,18.331669,76.56981,6.423861e-05 1856,1.5740918,293.64804,29.316704,170.40286,4.2861822e-05 1856,607.1831,5.688799,31.963562,54.508636,3.833691e-05 1856,602.83374,181.04372,36.312927,187.38191,3.509308e-05 1856,1.0117204,388.95474,19.3509,107.783356,2.6936474e-05 1856,610.01324,440.11932,29.133423,64.43924,2.5146519e-05 1856,118.82409,232.91608,76.53623,182.77896,7.944371e-06 1856,587.95856,327.66174,51.18811,158.30936,7.891845e-06 1856,1.0253589,65.957695,18.78463,74.37304,6.888945e-06 1856,2.3859832,420.90924,52.534473,77.17993,2.218736e-06 1856,1.8348291,74.0402,34.86268,195.23749,1.2081548e-06 1856,0.9773706,9.155183,18.849478,75.043686,1.2090348e-07 1856,2.7965267,14.780313,82.426865,152.72726,9.915664e-08 1856,370.4815,1.8360808,41.03482,47.358143,3.7909892e-08 1856,1.4825667,1.7081853,44.639427,50.288433,3.0592986e-08 1857,83.620995,318.9626,30.94307,74.93652,0.0027293286 1857,620.68915,54.585144,18.45752,50.971306,0.0010266656 1857,618.1943,199.54825,20.952393,77.55585,0.0004684709 1857,609.2114,86.22265,29.935242,137.96439,0.00046289916 1857,1.3222779,163.29248,18.04317,72.495575,0.0004194817 1857,133.85933,252.12495,26.911255,66.82329,0.00030762816 1857,46.588573,186.0497,25.034672,52.36229,0.0002951561 1857,583.3457,14.245456,54.93396,105.685684,0.00023585898 1857,411.76788,193.5411,70.77365,172.89664,0.00015767149 1857,1.5332552,201.67369,20.32174,105.645065,0.00015622754 1857,618.29913,402.32404,20.847534,78.239044,0.00015190082 1857,618.2734,257.9435,20.873291,79.58508,0.00013206693 1857,142.77116,214.02026,24.884552,53.341187,0.00011109597 1857,617.97394,341.58954,21.17273,79.644684,0.00010280774 1857,113.193634,181.13116,55.149765,159.54446,5.874595e-05 1857,129.31444,218.83427,25.68663,56.224228,5.1022147e-05 1857,3.4198096,147.90286,58.056263,196.11417,4.2985528e-05 1857,607.0582,6.0233936,32.08844,54.95185,3.813286e-05 1857,1.2178434,258.37015,18.051481,130.13339,2.8112212e-05 1857,80.5656,272.50378,79.78212,177.82404,2.800699e-05 1857,586.9751,141.60127,52.17157,206.60637,2.6571111e-05 1857,1.1207194,107.97982,18.283401,75.329735,2.6300802e-05 1857,602.76294,292.06244,36.383728,190.41064,2.4621744e-05 1857,0.5316736,418.60815,13.7042675,47.279266,1.655067e-05 1857,4.6404657,283.12524,77.39721,186.65741,1.19967635e-05 1857,0.86182296,378.96072,18.057299,70.74039,7.4818877e-06 1857,1.3737907,334.86566,33.663826,150.10773,4.9125483e-06 1857,44.30346,141.30211,76.19574,212.03032,4.83185e-06 1857,1.0545744,67.08455,18.693127,72.374374,3.458711e-06 1857,575.2345,425.37653,63.91217,73.56717,3.2008536e-06 1857,0.8695394,442.59897,21.826763,60.770782,2.8781062e-06 1857,2.040495,77.21459,34.88726,182.27167,7.582246e-07 1857,2.6357698,427.64874,53.392376,71.03195,5.103312e-07 1857,2.70875,16.731329,82.53765,150.08165,6.9529214e-08 1857,0.956757,6.4877214,22.702744,56.845066,6.306074e-08 1857,376.55585,1.1974659,41.83188,49.322388,1.8495586e-08 1857,12.30466,0.0,43.130707,51.41439,8.9912894e-10 1858,618.11334,206.14201,21.033325,80.63255,0.00042482888 1858,609.72546,88.92332,29.421204,139.7934,0.0003512526 1858,131.7234,205.69214,34.47496,74.516205,0.00031126567 1858,615.49493,63.709938,23.651733,79.99462,0.00026498485 1858,0.771154,193.44093,13.431912,49.82933,0.0002377975 1858,618.2497,395.0912,20.896973,78.96878,0.0001875182 1858,1.4573056,180.87816,18.999212,128.00212,0.00018371847 1858,618.20374,272.16397,20.942932,78.68631,0.00015626046 1858,1.1228435,150.72147,18.03271,70.83989,0.00014678769 1858,617.94336,340.9182,21.203308,80.75198,0.000115474155 1858,135.23996,247.98027,26.005417,60.892075,0.00011494019 1858,584.40533,14.8380995,54.292847,106.1202,0.000106405765 1858,124.69321,183.10722,61.866318,151.41585,0.00010246888 1858,414.40747,161.70827,68.80505,178.03044,9.766449e-05 1858,95.15568,318.74844,28.393417,63.70044,7.958162e-05 1858,602.9174,198.85832,36.229248,183.17824,6.396718e-05 1858,4.0674124,150.65565,55.526104,213.67207,4.1222884e-05 1858,607.45526,5.3183026,31.691406,54.983536,3.779179e-05 1858,1.1204436,252.16281,18.393948,128.4003,3.266813e-05 1858,610.00366,440.27698,29.143005,64.31314,2.4369265e-05 1858,88.97052,268.50992,81.09189,181.9325,1.759496e-05 1858,0.5003109,419.1503,13.643568,46.721497,1.3589006e-05 1858,588.1844,326.03296,50.96228,160.21689,8.936492e-06 1858,4.6567025,272.89096,78.13618,194.8006,8.146739e-06 1858,0.8933374,329.54465,18.613083,126.10318,7.029361e-06 1858,1.0029565,79.72253,18.474371,72.53457,5.3082067e-06 1858,0.8869857,442.56622,21.761639,60.67505,2.68443e-06 1858,2.9292204,393.23843,56.87712,99.308136,8.46248e-07 1858,2.0294125,72.84058,35.164097,184.64536,5.810539e-07 1858,1.0123893,41.037502,18.971146,71.315186,1.290083e-07 1858,2.7683399,16.134674,83.324745,150.05415,1.1998182e-07 1858,0.9531991,6.567546,22.285246,56.69344,5.5060916e-08 1858,370.15854,1.6405892,41.692474,47.02941,2.8901834e-08 1858,12.555477,0.2749463,43.0522,53.477592,9.1985447e-10 1859,442.30786,200.18991,23.308563,45.626663,0.038220648 1859,95.12888,320.62634,28.45086,63.1073,0.0005968688 1859,621.0374,144.15533,18.109253,55.882797,0.0004406703 1859,1.182758,175.09392,17.96531,71.26865,0.00042629885 1859,609.485,85.11579,29.661682,141.89148,0.00039735896 1859,616.2365,55.63362,22.910156,79.13536,0.0002604337 1859,134.79636,247.24432,27.322205,64.582184,0.0002175956 1859,618.0287,224.82303,21.117981,79.47293,0.00020425844 1859,1.2979004,200.09456,19.749702,132.42259,0.00018340739 1859,127.474915,187.04242,64.33101,153.9945,0.00013382225 1859,618.0885,381.1718,21.058167,80.12186,0.00012290753 1859,129.52359,218.77644,26.042542,54.854477,0.00010341525 1859,617.811,320.57648,21.335693,79.49896,8.917233e-05 1859,1.2021574,130.15186,18.123259,75.09567,8.425294e-05 1859,584.17017,14.520062,54.06305,102.95391,8.315376e-05 1859,0.67735434,219.3174,13.462311,50.448288,6.936092e-05 1859,0.98447514,248.15318,13.222254,48.262436,6.235275e-05 1859,415.00354,188.48816,74.60907,168.3313,5.448897e-05 1859,607.2348,5.968395,31.911865,54.520813,3.7997674e-05 1859,1.956281,111.136345,33.586655,166.13553,2.842244e-05 1859,609.8349,441.02844,29.311768,63.463287,2.2836197e-05 1859,602.06213,156.7656,37.084534,166.78165,2.1692998e-05 1859,571.0894,23.893217,67.37274,249.45871,1.4412257e-05 1859,0.51991785,419.1939,13.647456,46.601685,1.3950254e-05 1859,3.4416864,179.47318,55.403862,201.39929,1.27655685e-05 1859,0.9496045,287.1463,18.365131,76.25394,1.2028209e-05 1859,586.9567,238.6795,52.18994,235.44174,1.0761451e-05 1859,4.585062,278.81226,77.77859,187.74191,8.428172e-06 1859,0.98091227,329.48535,18.76015,125.991486,7.5204603e-06 1859,1.0398885,78.73445,18.792183,76.86954,3.596264e-06 1859,1.052793,391.1388,29.228119,104.20981,2.4657502e-06 1859,3.9339194,45.52103,80.814125,245.52121,8.774631e-07 1859,7.864642,430.54614,75.25022,68.82773,3.4118418e-07 1859,1.0621867,40.6945,18.896284,71.52649,8.856461e-08 1859,1.7106087,10.767383,60.640923,123.38307,6.077159e-08 1859,1.1423967,6.5372367,21.937262,55.98149,5.438747e-08 1859,369.9553,1.6177132,41.366943,47.07096,2.7370126e-08 1859,6.415192,1.348475,45.117714,52.53659,7.3995072e-09 1860,442.14542,204.68694,23.194183,49.690857,0.0015465678 1860,1.4405649,155.08253,17.898699,73.56914,0.00056294573 1860,609.0184,70.601654,30.128296,142.37727,0.0004772434 1860,1.2862297,201.16042,19.292152,135.20747,0.00031524847 1860,618.2535,387.58997,20.893188,80.56207,0.00021479164 1860,612.9513,184.50543,26.195374,122.60889,0.00018953366 1860,583.66473,13.151332,54.972473,106.89819,0.00015094022 1860,127.33284,234.1348,33.881866,79.69919,0.00015073267 1860,618.0039,340.5049,21.142761,81.94946,0.00014988221 1860,618.2808,271.33853,20.865845,80.73276,0.00012829585 1860,95.63397,319.28513,27.6409,62.740448,0.00012170242 1860,128.6018,181.90308,86.08023,174.0076,0.00010198395 1860,47.207394,191.09818,25.841732,56.01761,9.373992e-05 1860,416.39474,189.31917,73.07736,169.56178,7.241341e-05 1860,3.2112288,125.080345,46.885212,170.63843,6.937653e-05 1860,606.1388,4.7991242,33.007874,56.050888,6.244237e-05 1860,0.9403394,285.969,18.278362,77.56128,3.056584e-05 1860,602.8266,290.9551,36.32007,191.77713,3.0401821e-05 1860,1.2096281,108.236244,18.383846,77.734184,2.7076172e-05 1860,609.9812,440.50015,29.165466,64.07672,2.5227902e-05 1860,2.9948015,211.65175,57.47822,224.4861,2.2639564e-05 1860,587.32825,147.73949,51.81842,213.66887,1.8759838e-05 1860,0.561978,419.53946,13.613256,46.729767,1.3168417e-05 1860,89.21077,272.57812,80.80246,179.67981,1.14387485e-05 1860,0.94497156,328.50012,18.606695,127.03964,8.93796e-06 1860,5.842871,353.7321,77.87316,129.33606,3.8431567e-06 1860,0.931298,443.1218,21.720318,60.09555,2.8333716e-06 1860,1.0140991,58.80357,18.67129,72.03047,1.3633174e-06 1860,2.712108,429.60202,53.119442,69.21939,4.95961e-07 1860,1.687837,21.166466,35.5793,163.49942,1.1141338e-07 1860,1.0443034,7.1322575,22.223814,55.391106,9.133343e-08 1860,370.06186,1.6236036,41.364777,46.484417,2.9538844e-08 1860,1.7929102,5.791029,54.42435,75.34541,1.9566333e-08 1861,443.19388,206.35696,23.186768,46.85565,0.0059480467 1861,424.93796,203.2579,39.858826,150.418,0.00092530536 1861,1.2594662,157.56984,17.89526,71.97652,0.00035695278 1861,609.3893,84.332245,29.757385,143.27606,0.0003544118 1861,1.455083,201.59818,20.422207,106.84393,0.0003454839 1861,616.3187,58.644768,22.827942,76.00649,0.00027727545 1861,54.695667,202.95114,25.555164,53.796387,0.0002421438 1861,583.47046,11.856189,54.839478,105.9127,0.00023898426 1861,617.62463,209.51913,21.522034,82.23215,0.00020148582 1861,621.2239,130.45355,17.92279,57.24591,0.0001794647 1861,618.159,380.7594,20.98767,81.64078,0.00015747102 1861,135.00703,247.51646,26.56131,60.10338,0.00010956945 1861,618.1388,272.64664,21.007874,78.736145,0.00010169182 1861,617.8429,320.15985,21.303772,80.62637,0.000100054545 1861,606.17926,4.9260354,32.967407,55.24787,8.5239095e-05 1861,1.6572087,224.06349,31.447596,170.45793,4.4812605e-05 1861,3.4177198,146.43044,57.21207,193.50151,4.3660286e-05 1861,586.61835,145.53935,52.52832,196.56892,3.7303973e-05 1861,138.0724,213.30965,41.696365,115.264206,3.60718e-05 1861,0.96390873,284.59283,18.395327,77.73596,2.7823458e-05 1861,609.96735,440.27734,29.179321,64.16199,2.57402e-05 1861,113.75488,190.93636,40.49904,142.7152,2.3466466e-05 1861,400.3909,176.54642,106.31595,218.95483,2.12018e-05 1861,0.58316284,426.23663,13.44477,45.674255,1.3382527e-05 1861,4.308581,268.3588,78.26663,200.62247,9.567144e-06 1861,588.1263,328.20505,51.020386,158.26193,8.7907665e-06 1861,1.1925302,101.03879,18.446943,77.42203,8.655634e-06 1861,0.95522624,328.04596,18.999142,127.379364,7.217996e-06 1861,0.89383465,442.60834,21.750187,60.45044,2.6759085e-06 1861,2.1003745,66.07985,35.36431,185.70323,8.597548e-07 1861,2.980446,393.32315,56.749016,98.82065,7.775998e-07 1861,1.1125122,18.235264,21.431013,106.065186,1.9662004e-07 1861,2.7442155,12.950339,82.47894,158.01225,8.3493475e-08 1861,1.6691537,5.113034,54.38198,75.67789,6.046405e-08 1861,377.17264,1.1857015,41.304504,49.203598,3.853032e-08 1862,0.8721761,162.98769,13.33439,50.114914,0.00042919637 1862,610.0646,90.13628,29.082092,139.85483,0.00033278237 1862,618.1636,174.43925,20.983093,72.2612,0.0003236592 1862,1.5441586,179.38867,19.280516,130.81271,0.00030245652 1862,617.7416,219.16505,21.40509,84.67268,0.00026063446 1862,618.2459,395.34567,20.900757,78.588776,0.00017234347 1862,618.23645,277.1514,20.910217,80.27347,0.00015323066 1862,430.465,197.00725,40.63736,141.70808,0.00013878148 1862,608.5596,10.172729,30.587097,108.74583,0.00012242228 1862,617.9904,340.52267,21.15625,80.98999,0.000113148075 1862,135.25175,249.07376,26.453537,60.397552,0.00010465903 1862,0.70973474,209.35771,13.929948,55.28621,6.5671855e-05 1862,130.20912,201.7657,41.358505,141.19344,4.8082045e-05 1862,1.2521664,256.10062,18.777802,132.31973,3.493073e-05 1862,4.033742,152.8993,55.761585,208.3698,3.3020857e-05 1862,93.61155,303.99194,34.166862,74.49826,3.0732273e-05 1862,601.90125,258.62906,37.245422,195.3981,2.6885862e-05 1862,1.0453638,115.58118,18.240395,77.13431,2.6047144e-05 1862,609.9717,440.80237,29.174988,63.327637,2.4483359e-05 1862,602.8076,160.88339,36.33905,176.6698,2.2463466e-05 1862,49.54103,189.43874,33.346657,74.321884,2.0552588e-05 1862,405.95193,174.93083,109.31906,214.601,1.5886144e-05 1862,0.5635799,412.7956,13.6325245,46.764587,1.1399761e-05 1862,4.214033,268.83606,78.42039,200.2044,1.0527592e-05 1862,569.88153,17.387995,69.26514,237.57912,8.795027e-06 1862,0.8269719,373.0552,18.098967,70.0358,6.72373e-06 1862,573.0789,359.0976,66.06775,130.54529,6.052249e-06 1862,1.2360108,328.53406,33.082676,156.45776,3.6675715e-06 1862,0.93796146,443.1947,21.72357,59.976135,2.4736876e-06 1862,1.000555,59.866825,18.64293,71.512054,1.8518796e-06 1862,1.8956624,74.33147,35.154446,187.95702,8.650992e-07 1862,0.82020104,13.709251,13.813556,80.54472,5.7946903e-07 1862,2.7181365,429.66922,52.97722,68.96268,3.9087348e-07 1862,2.9327996,15.9278,82.64055,151.57173,7.5860605e-08 1862,370.1947,1.679139,41.68524,46.712814,3.5065934e-08 1862,1.6676286,5.958776,54.106754,75.72513,2.987769e-08 1863,442.37756,205.1574,22.671509,48.974976,0.004453078 1863,621.0922,53.64686,18.054443,50.669838,0.00087297783 1863,620.83344,138.97977,18.313232,58.916153,0.00074574916 1863,1.1322396,186.1869,18.198101,75.716354,0.0005999974 1863,609.81104,75.27631,29.335632,141.90524,0.000587561 1863,1.2020923,232.65146,18.03181,76.08856,0.00037017875 1863,618.13275,211.2493,21.013916,80.28598,0.00026467373 1863,617.952,340.49127,21.194641,81.73865,0.00017476603 1863,1.8790056,186.7795,32.415016,167.63918,0.00016776806 1863,618.3076,401.74167,20.83905,78.99484,0.0001669746 1863,617.6021,172.06046,21.544556,73.679214,0.0001605816 1863,135.23509,248.44118,26.934708,61.418655,0.00011713277 1863,618.18744,271.60968,20.959229,80.446014,0.000114243725 1863,414.42026,163.20815,69.13159,178.46312,0.00011205126 1863,584.2507,13.185332,54.2771,105.06166,9.519314e-05 1863,1.1173365,130.48302,18.105116,76.159805,7.754006e-05 1863,135.05263,194.22092,42.319122,144.77292,6.196891e-05 1863,587.0185,137.99823,52.128174,199.66473,5.721406e-05 1863,607.31244,5.0348763,31.834229,56.757942,5.4415854e-05 1863,113.78768,183.71252,40.601936,150.87872,3.0545736e-05 1863,602.6732,306.2709,36.47345,177.6861,2.9437417e-05 1863,5.244678,154.31848,78.17359,226.88876,2.240912e-05 1863,0.84554774,284.7417,18.451998,78.05887,1.93778e-05 1863,0.8569121,99.36134,13.686687,46.813705,1.7449813e-05 1863,0.620586,426.1883,13.446338,45.6875,1.5568019e-05 1863,48.22796,206.14977,23.736122,49.550217,1.3573814e-05 1863,0.9881413,328.67548,19.11177,127.00125,9.350441e-06 1863,96.815674,176.31836,111.27542,220.37857,9.079542e-06 1863,3.0275424,88.615395,47.722153,180.53561,8.674707e-06 1863,2.716019,321.07178,57.112263,156.6376,8.304868e-06 1863,575.1766,425.00247,63.970093,73.65427,3.520496e-06 1863,1.0519824,392.37112,28.52656,102.79242,2.9269445e-06 1863,1.2848747,50.040127,21.155647,132.22636,4.6471675e-07 1863,7.797015,430.5117,75.14132,68.5177,3.5354998e-07 1863,1.0414356,10.715541,18.829988,73.60243,7.1354215e-08 1863,2.920573,16.673204,82.69533,149.99228,6.023901e-08 1863,369.92337,1.5018295,41.875153,47.326115,2.467333e-08 1863,397.94302,0.8860254,43.325775,51.774704,1.4952606e-08 1863,24.48598,0.0,42.836235,49.368935,3.6104836e-10 1864,610.11926,87.976746,29.027405,135.7752,0.00045845486 1864,621.2548,128.93907,17.891846,57.357635,0.00041887566 1864,1.3533252,203.98978,19.339981,129.3389,0.00039878103 1864,0.79041344,213.81802,13.421525,49.561554,0.0003485158 1864,615.64777,59.431637,23.498901,79.257706,0.00034217277 1864,618.323,169.15744,20.82367,71.318665,0.00027412322 1864,618.116,223.97894,21.03064,80.52228,0.00019812271 1864,0.94255006,241.75146,13.257233,50.02603,0.00018345007 1864,92.25882,307.52567,34.67376,75.99295,0.00016428591 1864,618.19727,395.17126,20.949402,79.035095,0.00016348055 1864,584.0794,13.636384,54.515198,106.50577,0.00012139778 1864,617.88324,341.172,21.263428,80.15451,0.00011208888 1864,417.0458,188.37605,72.33847,170.6378,8.5493426e-05 1864,142.35005,211.94807,25.130173,55.186478,8.3661806e-05 1864,1.0593295,151.78224,18.111311,72.961975,5.590672e-05 1864,603.10364,170.66301,36.04303,177.25871,4.100308e-05 1864,135.29013,249.34172,25.650497,56.963486,3.8668706e-05 1864,1.9664747,124.4852,32.38242,170.80838,2.8880217e-05 1864,3.4273388,214.48625,57.361786,218.7209,2.749254e-05 1864,610.01965,439.66934,29.127014,64.5867,2.7448217e-05 1864,1.0421883,106.703896,18.346874,76.783455,2.3207585e-05 1864,0.9137704,285.79156,18.38939,77.23352,1.8711311e-05 1864,135.36911,201.85127,42.027267,140.87141,1.8616865e-05 1864,0.61629194,426.0189,13.43591,46.05847,1.4003358e-05 1864,587.18243,234.9422,51.964233,238.86041,1.3021084e-05 1864,0.7842033,385.28976,18.132843,70.88614,7.6609085e-06 1864,0.93727946,335.12656,18.197813,67.1821,4.9848963e-06 1864,6.0820055,354.2219,78.07402,128.89056,4.2508887e-06 1864,0.90271974,442.734,21.597471,60.49173,3.084684e-06 1864,1.0222982,59.73721,18.76287,71.25969,2.914438e-06 1864,4.005726,43.763622,80.73276,220.82957,3.4478282e-07 1864,0.9578573,11.197657,18.909435,74.36707,9.365141e-08 1864,2.0903678,14.16071,58.884087,117.24387,5.7313184e-08 1864,370.02908,1.7696599,41.433105,46.90878,2.8608522e-08 1864,1.2993832,2.615026,44.546394,48.95511,9.633306e-09 1865,91.47674,316.7004,28.957962,68.97943,0.0027476384 1865,620.5434,54.236053,18.603271,52.473793,0.0009438739 1865,0.907181,214.35954,13.351521,49.13527,0.0006867312 1865,1.3423536,204.85107,19.267693,128.0629,0.00036659252 1865,608.96027,63.10898,30.186401,146.57362,0.00029951092 1865,612.85565,184.74284,26.291016,121.949234,0.00022748693 1865,621.25525,137.10394,17.891418,55.543945,0.00021545881 1865,0.9904265,242.09613,13.13859,49.496338,0.00018109714 1865,618.1402,380.65933,21.00647,81.127716,0.0001394169 1865,584.3341,13.641113,54.079163,105.850815,0.00012720242 1865,618.2489,271.4635,20.897766,80.415405,0.00011365951 1865,617.8519,320.08322,21.294739,80.8483,9.826708e-05 1865,416.41013,187.37029,73.66446,171.2006,9.7022814e-05 1865,135.0799,249.78732,25.799652,59.078827,9.576032e-05 1865,1.0532227,157.33127,18.20455,73.623535,5.011791e-05 1865,135.77046,195.5536,42.879272,140.9192,4.80566e-05 1865,3.6398976,214.96512,56.857513,218.83969,3.3709242e-05 1865,1.1976327,115.00057,18.295849,76.81019,3.0258263e-05 1865,2.1167579,124.95016,32.608475,170.50204,2.7719798e-05 1865,603.05774,221.12064,36.08893,195.0163,2.6473583e-05 1865,609.9873,440.6588,29.159363,63.349,2.3845783e-05 1865,113.37737,189.37253,40.763145,145.67767,1.6356851e-05 1865,0.55811197,419.62808,13.578019,46.17926,1.5402124e-05 1865,0.9251913,286.5711,18.331268,76.18527,1.5307685e-05 1865,588.20087,328.24658,50.9458,157.59744,7.66911e-06 1865,0.9881901,321.27002,18.961163,127.881134,7.662004e-06 1865,5.95861,354.44614,77.95965,128.38715,3.5293506e-06 1865,0.8974553,442.991,21.599712,60.20166,2.7934589e-06 1865,1.0743425,59.88047,18.815199,72.19445,1.1070043e-06 1865,2.6670232,430.11432,52.782673,68.39096,4.501707e-07 1865,2.687246,35.984077,59.672874,214.34476,2.3185048e-07 1865,0.9664152,6.882956,22.135933,54.627304,8.744303e-08 1865,370.21298,1.9499301,41.744812,47.32133,4.9791325e-08 1865,1.4126465,5.8102117,54.880165,74.20178,1.4452923e-08 1865,24.814123,0.0,43.31974,49.93595,4.9836596e-10 1866,0.9343567,214.36147,13.383903,50.3687,0.0008335015 1866,6.2543516,210.96321,22.910267,47.06099,0.00055734196 1866,1.4412159,209.89331,19.038902,129.6936,0.00046330638 1866,609.3921,70.282524,29.754578,144.14932,0.00033848226 1866,618.103,218.90277,21.04364,78.42331,0.00022488319 1866,620.93445,136.94193,18.21222,55.8992,0.00017664983 1866,583.9484,12.079424,54.570557,108.09269,0.00015897964 1866,618.39844,267.16064,20.74823,76.24487,0.00013945693 1866,618.09296,381.68222,21.05371,79.60867,0.00013814041 1866,1.2450489,163.73209,18.140343,73.21286,0.00010883358 1866,1.0108024,141.85013,13.504172,50.73575,8.782526e-05 1866,4.0674205,150.68878,56.310127,205.90051,8.739389e-05 1866,617.7328,319.1507,21.41388,81.486145,7.471519e-05 1866,417.11584,186.79373,72.86542,170.63782,5.2620988e-05 1866,606.8779,5.28973,32.268738,55.675552,5.193492e-05 1866,587.022,148.24767,52.124695,194.77916,2.9226334e-05 1866,602.69,307.44437,36.456665,175.34683,2.3549954e-05 1866,609.94415,440.78656,29.202515,62.924652,2.2739143e-05 1866,126.33997,233.9739,33.048286,80.99417,1.9725876e-05 1866,0.60861087,426.2448,13.3565035,45.569366,1.5964617e-05 1866,135.60324,199.20659,43.542892,144.42455,1.433787e-05 1866,1.5887606,266.48547,27.019867,142.13626,1.1375478e-05 1866,4.6099873,270.5948,77.90405,198.21365,1.1176721e-05 1866,1.9380404,86.37828,29.001352,149.61003,7.637929e-06 1866,0.7948299,373.72537,18.014904,69.2887,6.6886314e-06 1866,0.88819504,442.74277,21.623983,60.266357,3.3327062e-06 1866,1.0281836,65.05797,18.756254,74.72893,2.0350521e-06 1866,3.0511312,393.11932,56.821266,99.3071,9.845019e-07 1866,0.85359216,13.824167,13.237834,79.85301,5.714457e-07 1866,3.9337404,43.75116,80.59763,225.25366,5.4235227e-07 1866,1.9887956,13.607429,59.424732,117.16778,9.5664596e-08 1866,376.9195,1.5614909,41.43631,48.65234,3.533496e-08 1867,437.23407,204.48619,23.42865,50.420944,0.0035790817 1867,621.2377,69.45221,17.908997,49.287483,0.00083348475 1867,0.8848104,214.43257,13.51488,49.60289,0.0004329245 1867,1.4692676,178.49454,19.541193,130.70074,0.0004258251 1867,1.247684,147.79219,18.204817,74.86592,0.00031953203 1867,609.6782,74.78087,29.468445,140.647,0.00031727648 1867,583.5299,13.63681,54.762573,109.69078,0.00024412581 1867,618.00006,223.32547,21.146606,81.50427,0.00021211602 1867,430.3141,194.29837,40.707916,144.12738,0.00019667641 1867,618.15344,388.69754,20.993225,78.91153,0.00019180331 1867,0.9690743,129.16599,13.565303,49.68831,0.00015664512 1867,67.45954,218.22408,27.626732,46.019485,0.00012197177 1867,617.9413,341.21808,21.205383,80.66455,0.00011027738 1867,54.048805,207.30121,22.999672,47.823303,9.74703e-05 1867,4.1825376,152.20937,55.99231,210.45265,5.9493777e-05 1867,1.4981666,240.95047,27.515278,139.48215,4.3032454e-05 1867,587.06146,143.51357,52.085205,199.03548,3.555445e-05 1867,612.6391,252.28545,26.507568,143.28343,3.3399996e-05 1867,135.58046,191.62975,42.61331,143.72307,2.9787654e-05 1867,607.5824,5.034274,31.56427,55.23774,2.5021598e-05 1867,609.9094,440.96094,29.237244,63.017914,2.3075874e-05 1867,0.5827112,419.62677,13.553611,46.116272,1.8624572e-05 1867,4.6502213,267.4213,77.746056,202.9498,1.0786665e-05 1867,588.1978,327.51978,50.948853,158.12143,8.59888e-06 1867,0.8424504,376.63354,19.327719,118.21167,8.401082e-06 1867,0.95977217,335.27826,18.133263,67.27664,4.4736935e-06 1867,1.1097916,65.07805,18.546497,75.76117,1.930858e-06 1867,3.1356626,393.1398,56.67852,99.1647,1.2379052e-06 1867,1.902194,79.09955,35.045708,181.30594,1.0812699e-06 1867,0.90759075,13.278887,13.929584,80.66453,2.7159163e-07 1867,2.8290722,15.446954,82.93003,152.69312,7.97847e-08 1867,376.69025,1.6238412,41.573395,48.944153,1.9211907e-08 1867,1.7388167,6.579681,53.455364,74.043594,1.6710198e-08 1868,448.44043,204.1951,23.093445,49.19597,0.0064736996 1868,1.3767464,212.49536,19.046831,128.75497,0.00057362515 1868,608.7556,72.30735,30.391052,146.93674,0.0005431348 1868,436.2999,211.97862,24.221619,53.211258,0.0005333301 1868,429.14975,197.09964,41.421143,149.68073,0.00052719103 1868,0.95142174,183.96599,18.379555,73.00218,0.00042165315 1868,612.1548,175.29813,26.991882,123.49304,0.0002722988 1868,621.10645,122.24513,18.040222,57.581223,0.00024314277 1868,622.0798,230.48975,17.066895,53.9039,0.0002347981 1868,617.94037,381.42645,21.206299,80.02423,0.00010796521 1868,584.49176,11.083995,53.919373,107.38739,0.00010769466 1868,618.2034,264.68814,20.943237,78.739716,9.713038e-05 1868,96.83752,322.09232,26.305756,56.095856,7.1224415e-05 1868,617.7388,320.56033,21.407898,79.41745,6.447896e-05 1868,3.9142206,155.5898,56.131145,203.43504,6.129457e-05 1868,607.3393,5.0956316,31.807373,54.68861,5.766285e-05 1868,135.20233,249.2142,26.082825,58.903687,4.9146194e-05 1868,135.28973,199.04126,43.035522,142.59729,3.810447e-05 1868,1.1998348,123.00932,18.382095,76.79167,3.2596305e-05 1868,609.82465,441.0621,29.322021,63.07312,2.6179381e-05 1868,603.0328,217.52657,36.11389,196.26021,2.1251275e-05 1868,1.4708439,280.16953,30.193825,170.36111,1.9260988e-05 1868,0.55562216,419.5094,13.530345,46.10794,1.707533e-05 1868,154.94872,227.37946,25.4776,54.95041,1.617696e-05 1868,4.4619436,267.57376,77.68516,201.27707,1.5324118e-05 1868,570.52136,21.873608,68.22113,254.10799,1.0534703e-05 1868,97.79516,177.28078,112.50886,220.3463,8.327535e-06 1868,588.49457,332.25906,50.6521,154.30469,6.7898945e-06 1868,0.8368156,366.6327,17.987,68.76114,6.7774217e-06 1868,0.91942143,327.7083,18.033787,68.663055,5.12193e-06 1868,0.902133,443.20236,21.634659,60.001495,3.0742176e-06 1868,1.1006144,79.94647,18.723219,74.616806,1.845677e-06 1868,3.0894744,392.8383,56.721386,99.47839,1.0637067e-06 1868,1.8605306,78.127144,35.498444,185.40933,6.053309e-07 1868,0.98060226,40.36392,19.114376,70.819595,7.3192766e-08 1868,0.9973397,6.961807,22.373098,55.613155,5.841138e-08 1868,2.63805,15.715859,83.02147,152.32558,4.059589e-08 1868,376.55905,1.6289372,41.82126,48.90622,3.944961e-08 1868,12.417902,0.21573405,43.249245,51.31934,5.8657273e-10 1869,620.37427,87.32724,18.7724,52.98352,0.00158897 1869,442.1384,203.85814,23.475525,51.44609,0.0013553593 1869,611.44934,182.79947,27.697327,124.592804,0.0011803538 1869,609.4908,92.70048,29.655884,143.6445,0.00097051816 1869,622.3944,201.34836,16.752258,51.519516,0.0008662372 1869,620.7319,143.80815,18.414795,57.487564,0.00045232236 1869,1.2739811,205.7683,19.256084,128.41264,0.0002599637 1869,0.84751916,214.60353,13.386075,49.048782,0.0002508518 1869,616.8069,254.2644,22.339783,81.357635,0.000240127 1869,618.13696,386.64572,21.009705,81.081635,0.00016619013 1869,1.0796126,164.97365,18.204351,71.32347,0.00010757507 1869,617.85925,311.50455,21.287415,82.20126,9.576872e-05 1869,414.88068,169.81534,68.5419,178.22223,9.393717e-05 1869,584.1365,15.538376,54.513245,106.3703,6.278614e-05 1869,0.8745301,142.3335,13.619619,48.867508,4.796471e-05 1869,135.21265,249.57977,25.834457,58.00775,4.141617e-05 1869,587.3954,226.77037,51.75128,239.71312,3.6738595e-05 1869,3.8384213,216.10217,56.786873,217.83884,3.0315772e-05 1869,1.9819678,123.83732,32.90316,171.28995,2.8043714e-05 1869,135.54659,197.03531,42.04123,144.28278,2.6004207e-05 1869,608.1339,5.955822,31.012756,52.742687,2.5168927e-05 1869,610.0521,439.6595,29.094543,64.161896,2.345474e-05 1869,0.54666626,419.49268,13.575805,46.17395,1.9624364e-05 1869,0.9470825,285.72385,18.342493,76.41458,1.8489296e-05 1869,1.1396916,101.40027,18.336643,75.26845,1.1428542e-05 1869,0.7794385,376.1397,19.311565,118.34509,9.135964e-06 1869,585.6953,391.98877,53.451355,101.25989,5.779262e-06 1869,0.96042645,335.29175,18.124203,67.37088,4.7379413e-06 1869,6.1952996,354.52188,77.9376,128.28323,3.7890193e-06 1869,1.2209798,457.90073,28.122162,46.167572,2.5195914e-06 1869,2.635285,429.23053,52.93766,69.00516,5.2495045e-07 1869,0.8435661,13.108646,13.74767,81.21898,3.4028795e-07 1869,2.858776,37.351856,59.16206,209.58351,2.76735e-07 1869,369.81332,1.7446029,42.16452,47.12871,4.3577376e-08 1869,394.1342,0.0,47.617188,45.5364,2.0218954e-08 1869,1.7594727,6.6389294,53.34088,73.57042,1.3409056e-08 1870,577.76483,262.09885,29.720337,64.93591,0.022658922 1870,468.73074,243.56735,36.304474,70.4834,0.006301881 1870,620.87555,66.182205,18.271118,50.418594,0.0018086835 1870,616.7458,190.18251,22.400879,70.495865,0.00092093716 1870,1.342478,206.56139,19.383465,124.88252,0.000615466 1870,457.8358,217.76396,71.27292,152.88475,0.0005603041 1870,609.1339,79.77876,30.012756,148.27458,0.0005314748 1870,471.2351,283.517,31.521301,64.13498,0.0004912984 1870,1.1008537,253.6749,12.872548,49.52765,0.00024938604 1870,54.590813,208.5879,23.127563,46.38919,0.00022409043 1870,618.4894,254.78514,20.657288,74.46962,0.00018495499 1870,617.89124,323.306,21.255432,75.97009,0.00014937505 1870,618.0312,381.20496,21.115479,80.81302,0.00014261504 1870,563.5308,190.37587,69.23999,171.08366,0.00014012805 1870,584.6476,13.793507,53.818237,105.60733,0.00011079718 1870,1.0144922,152.05309,18.404808,74.51921,8.287413e-05 1870,508.6185,187.7306,80.77988,153.59233,4.9981303e-05 1870,4.3062043,161.31305,56.61588,202.85696,4.9212842e-05 1870,131.7509,234.49138,33.673782,84.55653,3.339579e-05 1870,0.91268396,134.4481,13.637526,50.002487,3.2260017e-05 1870,609.97845,440.8187,29.168213,62.878754,2.5803907e-05 1870,601.20874,253.37927,37.937927,190.34424,2.3999462e-05 1870,1.0112289,285.0548,18.262405,76.890564,2.2412922e-05 1870,113.08752,179.08678,81.04209,182.32625,1.7871393e-05 1870,0.6092615,413.20895,13.606543,45.822144,1.3472292e-05 1870,1.2835336,281.82156,30.553532,169.11652,1.335886e-05 1870,4.578102,272.035,77.72298,196.54636,1.2341277e-05 1870,572.8452,354.58182,66.30145,131.33981,8.422452e-06 1870,1.0359343,86.8611,18.388748,72.47833,7.511658e-06 1870,0.8555534,373.77216,18.054377,69.681854,5.9256186e-06 1870,0.9261548,443.0728,21.636257,59.950012,2.9130822e-06 1870,3.1207488,393.91602,56.63919,98.50177,1.0843927e-06 1870,2.038392,79.73248,35.37992,185.95935,7.784293e-07 1870,0.78275675,13.362986,13.1835375,84.77878,3.0620438e-07 1870,376.2266,1.5589991,42.20572,49.255554,6.478166e-08 1870,3.1804948,16.830242,82.4101,150.57533,5.16713e-08 1870,1.4886117,2.4818099,32.765015,46.053017,1.604768e-08 1871,621.9449,173.1824,17.201782,48.3844,0.0026414788 1871,609.4841,68.60644,29.662598,153.68295,0.001273734 1871,620.47424,135.86351,18.672424,60.497925,0.0008280751 1871,617.7145,201.38962,21.43219,82.519226,0.0004723441 1871,1.3050985,205.4675,19.408337,128.87415,0.00033290265 1871,0.8618803,200.12386,13.32146,47.860367,0.00031851098 1871,618.22754,402.73517,20.919128,77.0011,0.00014431032 1871,617.9971,252.99965,21.149597,77.368576,0.00012279623 1871,584.6271,12.977283,54.049683,106.15339,0.00011849021 1871,617.808,341.77838,21.338684,79.509766,9.1646725e-05 1871,1.3494328,144.78839,18.056643,73.58156,7.5945216e-05 1871,603.4224,179.03168,35.724243,181.53427,6.784036e-05 1871,607.0283,4.81541,32.118347,57.411583,6.355406e-05 1871,136.16797,194.19986,43.70099,141.89124,5.7545236e-05 1871,2.1060238,124.16219,33.119316,169.97168,3.8390255e-05 1871,4.2174187,214.93669,56.652676,217.56389,2.8837445e-05 1871,602.64264,298.68658,36.50403,183.54071,2.6702446e-05 1871,0.6156653,426.0619,13.386441,45.63376,1.606591e-05 1871,1.6264967,266.66022,27.082748,142.07748,1.546699e-05 1871,1.0291626,100.22169,18.382946,76.25352,9.047525e-06 1871,0.8108586,385.05136,18.089725,70.65741,8.52331e-06 1871,90.674995,268.736,78.99363,185.43262,7.89591e-06 1871,0.9685653,348.65585,18.04327,67.77463,5.15488e-06 1871,6.4372168,353.60855,78.03875,129.74323,4.582895e-06 1871,575.0335,426.9015,64.11316,71.27582,3.2199707e-06 1871,0.90584475,442.74292,21.605692,60.312286,3.0461656e-06 1871,3.7731707,34.26349,81.6455,233.50244,3.37446e-07 1871,1.090953,20.326006,21.67717,104.451096,2.4362507e-07 1871,369.85013,1.771089,42.59143,48.957596,6.837806e-08 1871,1.680721,5.3764,53.962185,75.53578,1.8642284e-08 1871,393.6061,0.0,47.283264,45.55011,1.3862386e-08 1872,619.91394,150.35269,19.232727,58.0587,0.0021910113 1872,610.1572,94.432655,28.98944,144.69559,0.00085308973 1872,618.09735,203.72853,21.049316,80.77159,0.00042975057 1872,1.3383912,205.51917,19.327375,129.21307,0.0003548528 1872,0.88454634,199.83217,13.336421,49.35495,0.00031147382 1872,616.5859,57.579,22.560791,77.01471,0.00013807113 1872,618.09686,395.96347,21.049805,77.127106,0.00012817247 1872,618.11664,257.95645,21.03003,78.991516,0.00010674198 1872,1.4079492,145.4683,18.022015,72.3472,8.288093e-05 1872,617.82465,341.64362,21.322021,79.170105,8.185052e-05 1872,135.14291,248.30467,26.240082,59.74858,7.5506134e-05 1872,586.67,132.79149,52.476685,201.01433,6.864613e-05 1872,96.799995,319.22086,26.576935,59.72876,6.503613e-05 1872,418.0932,189.84229,71.54352,176.69073,6.238992e-05 1872,2.1618962,133.2019,33.453724,163.97809,5.390862e-05 1872,584.28503,13.446332,54.284058,104.057144,4.8659767e-05 1872,607.4322,5.0502133,31.714478,54.169945,3.7668477e-05 1872,112.501396,182.94696,57.12005,155.23624,3.4545843e-05 1872,1.909668,245.42946,31.549591,163.98457,2.4803592e-05 1872,609.8273,441.3096,29.319397,62.77713,2.2418097e-05 1872,602.7635,293.2055,36.38318,187.57394,2.1381746e-05 1872,0.79163086,399.6986,17.981771,70.76593,1.5663869e-05 1872,4.6591897,273.7436,77.67608,195.2482,1.5270258e-05 1872,5.969815,125.557465,76.74184,241.52402,8.445777e-06 1872,1.0237476,312.42993,18.296137,130.78409,6.647982e-06 1872,1.1058993,86.28783,18.606802,75.69682,4.701967e-06 1872,0.9307487,443.08328,21.614447,59.9476,2.7241254e-06 1872,3.1663818,393.38678,56.66586,98.86636,1.284912e-06 1872,376.3168,1.2054411,42.89322,50.206963,7.553748e-08 1872,2.1542284,23.632065,49.579273,177.42677,6.0334564e-08 1872,1.0987566,7.1468377,21.770752,55.126026,3.468769e-08 1872,7.03167,1.1749756,44.49398,52.01905,2.4551683e-09 1873,620.5956,72.29208,18.551086,54.596855,0.0025546628 1873,617.30676,189.89772,21.839905,70.79863,0.0010817652 1873,0.8726685,200.52814,13.292172,48.13333,0.00043535902 1873,610.3834,88.62402,28.763245,141.36682,0.00039414485 1873,1.1765894,205.03574,19.368732,130.22098,0.0003103196 1873,584.0379,14.953191,54.651184,106.413414,0.00024361275 1873,441.94772,213.69214,24.294464,53.640167,0.00024015449 1873,618.1512,388.0385,20.995483,79.699585,0.00019251379 1873,618.0578,252.32628,21.088867,77.383316,0.00013607321 1873,0.7797591,227.92389,13.7056465,52.27771,0.00012540269 1873,415.06277,161.83563,68.98218,179.12607,0.00011885928 1873,617.93134,341.61276,21.215332,79.92389,0.00010841486 1873,1.1730331,158.63766,18.05179,70.46927,0.00010055848 1873,606.6003,5.3432293,32.546387,56.71319,4.247655e-05 1873,603.0767,168.42868,36.069946,166.04126,3.718896e-05 1873,4.2764845,156.59875,56.21854,208.97012,2.9409244e-05 1873,123.11912,204.36026,40.086296,116.578186,2.5880257e-05 1873,609.9546,440.89325,29.192078,63.222656,2.5196787e-05 1873,602.6783,325.46384,36.468384,159.78723,2.063669e-05 1873,0.59261596,419.504,13.506489,46.065125,1.6129607e-05 1873,1.6176213,266.6289,26.928198,142.37814,1.483853e-05 1873,4.6978483,272.3034,77.74151,196.65735,1.2164135e-05 1873,0.85464925,373.91226,17.99003,69.582794,7.5007774e-06 1873,1.1194621,92.960846,18.310297,74.79373,5.661085e-06 1873,1.0247713,406.63077,26.077068,91.13086,3.0273068e-06 1873,0.88262695,44.280087,18.987595,73.41771,7.601142e-07 1873,1.9056413,77.100716,34.793728,182.2157,7.1361467e-07 1873,8.035114,430.8626,74.71213,68.1376,4.0020615e-07 1873,3.057207,17.637161,82.17214,148.15839,1.5618463e-07 1873,369.74887,1.9614551,42.260986,47.62823,4.007039e-08 1873,1.5135092,10.618701,38.276863,79.00802,3.669968e-08 1873,398.1013,0.7785791,44.038666,52.47385,2.2880421e-08 1874,476.29883,217.3934,46.10553,98.90524,69.31553 1874,493.19965,228.13461,26.070679,50.211243,1.0743582 1874,474.68793,240.01875,21.604736,55.2809,0.15388678 1874,503.0493,221.28452,31.614044,76.986786,0.053982273 1874,617.4892,194.88457,21.65747,75.32283,0.00060842215 1874,1.0402291,187.77493,13.3074,47.214783,0.00056610594 1874,142.00655,213.1471,25.413177,54.38907,0.00035591805 1874,1.3266284,181.01248,19.987715,123.84433,0.0002882078 1874,616.3435,59.014156,22.803162,76.53566,0.00024251123 1874,449.7275,199.92958,99.24118,165.95427,0.00020314979 1874,583.9465,13.268665,54.52118,106.24725,0.00017536557 1874,621.19525,136.89235,17.951416,55.167297,0.00017200965 1874,618.09595,251.96974,21.05072,78.55473,0.00015740436 1874,610.73944,96.38036,28.407227,140.6278,0.00015217398 1874,618.0045,381.68033,21.14215,79.46692,0.00012219578 1874,1.2651701,129.82819,18.154617,76.99078,0.00011037628 1874,0.9150484,241.14925,13.343985,50.531662,0.000109829634 1874,617.88794,297.98566,21.258728,82.44052,0.00010782464 1874,135.35017,196.2179,42.581894,138.15237,6.515707e-05 1874,607.16797,4.9777703,31.978699,55.12168,4.2204316e-05 1874,602.8335,211.88774,36.31317,196.1491,4.0029914e-05 1874,4.412593,151.93686,56.19897,209.09137,2.9687431e-05 1874,609.91046,441.24933,29.236206,62.794434,2.2591554e-05 1874,0.6018567,413.10663,13.565643,45.97693,1.4355493e-05 1874,1.9889632,244.36493,31.309532,167.23193,1.3929952e-05 1874,0.8261418,376.9991,19.25325,117.589966,8.351156e-06 1874,588.1681,327.53424,50.978577,158.09833,7.582336e-06 1874,2.8870785,309.28595,57.0092,167.03949,5.2766914e-06 1874,1.109952,86.76042,18.510044,76.55238,4.3774858e-06 1874,3.0336556,70.51009,49.485172,172.95227,1.6310612e-06 1874,2.6983123,430.07092,52.7719,68.33914,5.20212e-07 1874,0.83120894,13.655469,13.747515,80.37288,4.1331978e-07 1874,1.2277051,2.939165,33.4087,45.554108,4.8487397e-08 1874,376.31067,1.4395736,42.39322,49.67816,4.651883e-08 1874,1.9309359,11.840514,59.323612,121.48465,3.205029e-08 1874,17.970884,0.0,43.85138,50.26603,5.3602267e-10 1875,618.9303,195.02075,20.21637,84.063416,0.048584998 1875,449.12622,205.21674,22.531036,46.91916,0.005046268 1875,436.00345,207.98595,23.968811,52.041245,0.0011793458 1875,0.9108419,198.84668,13.461097,49.944473,0.0009534383 1875,603.53625,109.10401,35.610413,181.38666,0.00047443982 1875,1.2720248,183.90787,19.99546,127.424286,0.0003789883 1875,0.93521243,156.0979,13.31402,50.02971,0.00037749857 1875,620.8807,143.16087,18.265991,57.855057,0.00037436516 1875,616.5812,82.990425,22.56549,85.79856,0.00019099523 1875,618.1398,381.45166,21.006897,79.95825,0.00016518959 1875,618.09393,276.23267,21.052734,82.7858,8.762992e-05 1875,0.9626115,253.42087,13.048209,49.806824,6.825934e-05 1875,135.30168,249.04561,25.95137,59.07155,6.710918e-05 1875,584.4475,12.503125,54.039978,105.141716,6.116879e-05 1875,607.3703,5.397751,31.776367,55.066402,5.1990075e-05 1875,417.14972,186.66907,73.57077,171.46405,5.037936e-05 1875,1.9500228,110.24477,28.232172,138.7976,3.692592e-05 1875,119.10849,183.53323,59.359833,155.86676,3.3331962e-05 1875,3.5492969,213.72504,57.09926,221.0697,2.6770527e-05 1875,0.9782361,128.77092,13.470577,48.854355,2.6700613e-05 1875,609.8908,441.75336,29.25586,62.510406,2.0374608e-05 1875,587.3408,225.77156,51.805847,247.67662,1.7783766e-05 1875,0.56056845,419.89615,13.537713,45.873657,1.6292648e-05 1875,0.93068606,286.43085,18.338194,76.38956,1.415531e-05 1875,1.0251148,320.64636,18.894825,127.881714,8.31882e-06 1875,585.8078,393.93134,53.338867,100.37921,5.4456245e-06 1875,0.91760176,443.26443,21.58942,59.605835,3.4662196e-06 1875,6.043724,355.5654,78.20325,127.45288,3.3129324e-06 1875,1.1033187,79.56685,18.640863,75.79962,2.2448855e-06 1875,3.5892448,86.40067,58.055027,215.5701,1.4921909e-06 1875,2.679764,429.99384,52.915863,68.33124,5.287741e-07 1875,0.815022,13.262409,14.175495,80.9993,2.3811226e-07 1875,2.8174057,16.560137,82.95485,151.12238,7.925294e-08 1875,369.9853,2.0945606,41.96759,46.986717,3.1701614e-08 1875,1.3397396,2.9777899,33.022976,45.201885,2.6881628e-08 1875,18.214426,0.0,42.982765,51.05269,3.2296085e-10 1876,611.66254,206.22263,25.125183,74.05707,98.16899 1876,620.8218,59.443512,18.32489,51.21299,0.0014025869 1876,591.7013,102.083786,47.445374,211.8366,0.0011788375 1876,441.76813,208.07614,23.497833,52.004486,0.0011182388 1876,429.32553,198.56544,41.051422,148.15648,0.0007734553 1876,0.8129065,211.48619,13.466756,49.453323,0.00054357835 1876,72.539375,216.7253,25.60147,49.76619,0.00038027362 1876,1.0870036,171.1707,18.047604,70.04248,0.00032151153 1876,1.1401856,200.47868,19.33482,131.38872,0.000251066 1876,617.516,261.45087,21.630676,90.54407,0.00021336027 1876,608.44135,7.4861393,30.705322,106.94504,0.00020252401 1876,621.2139,145.57692,17.93274,54.852478,0.00019997885 1876,589.9871,205.97997,49.159546,263.386,0.00019691602 1876,617.9951,381.03043,21.15155,79.99426,0.00011702457 1876,95.71883,319.16272,27.621948,61.233734,0.00010570425 1876,54.27385,208.13243,25.852768,48.38954,8.3088045e-05 1876,0.9316236,253.51347,12.982469,49.75139,8.136022e-05 1876,617.8568,320.3046,21.289856,79.155,7.568074e-05 1876,135.33351,249.42365,25.530777,56.98642,7.535637e-05 1876,0.856554,141.78099,13.511322,50.23401,6.821021e-05 1876,615.92566,80.59192,23.221008,89.97177,3.9158484e-05 1876,2.0518181,129.64612,33.033276,163.926,3.2917633e-05 1876,3.9054933,211.49023,56.81774,222.389,2.5693504e-05 1876,609.9074,441.3178,29.239258,63.270782,2.5446287e-05 1876,118.9342,185.96812,55.840202,152.49681,2.3130428e-05 1876,405.922,180.09302,109.03772,214.08142,1.6408458e-05 1876,0.88723475,286.34003,18.338194,76.54419,1.5674823e-05 1876,0.5800541,419.6297,13.54606,46.17032,1.3169874e-05 1876,0.9914771,321.6034,19.04207,127.99158,6.881472e-06 1876,585.65137,394.193,53.4953,99.346436,6.219644e-06 1876,6.2133203,356.16843,77.85908,127.32617,3.4530356e-06 1876,1.0043018,443.45377,21.571756,59.541138,3.0435758e-06 1876,1.0940413,78.655624,18.54616,74.35625,2.7880985e-06 1876,3.9538672,40.938854,81.25163,241.72972,1.3575414e-06 1876,2.78403,429.91647,52.904285,68.61975,5.4943763e-07 1876,0.7926392,12.356153,13.9287615,82.821,3.0790923e-07 1876,2.0778043,13.370215,59.08566,119.351875,4.4579313e-08 1876,381.90076,1.1725342,41.870605,50.137634,1.1558446e-08 1877,433.44315,268.2724,38.960297,82.66455,0.9403595 1877,533.1052,299.7266,41.785522,138.71863,0.05446868 1877,523.007,310.84305,26.988464,74.97159,0.037752453 1877,513.93384,305.80505,23.448608,51.72815,0.0068477443 1877,1.4406877,186.50244,18.165224,71.62775,0.0023400222 1877,134.88907,245.98006,27.827728,64.925125,0.0014221319 1877,502.0822,258.6586,102.367615,214.03152,0.0011334289 1877,540.4431,345.12222,24.094116,65.30109,0.00065507495 1877,1.1032443,163.59914,13.233753,49.81456,0.0006419007 1877,527.25885,181.24686,31.161865,66.09903,0.0005075153 1877,0.79592854,223.72433,13.703727,51.610504,0.00031370696 1877,2.0649,183.14565,32.292866,168.65385,0.00028836288 1877,617.48987,298.02985,21.6568,84.38165,0.0002720247 1877,610.7364,350.30093,28.410278,112.1871,0.00021182976 1877,617.72107,205.1511,21.425598,79.197266,0.00017533464 1877,47.630188,204.7808,22.237968,48.985764,0.0001240796 1877,559.13025,361.02988,21.672913,56.811157,0.00010435007 1877,606.6817,4.5763283,32.464966,53.13771,7.8882076e-05 1877,584.9539,276.60916,53.979065,199.82346,7.547043e-05 1877,617.16516,144.24608,21.981506,83.90254,7.517233e-05 1877,120.33534,195.50049,54.67833,140.64478,7.4681e-05 1877,616.88776,47.30946,22.258911,80.70134,6.53288e-05 1877,609.0728,440.22653,30.073853,65.539276,3.7112364e-05 1877,0.8705241,135.58382,13.610156,50.07776,3.4089528e-05 1877,601.36554,130.47598,37.781128,188.46625,2.4635741e-05 1877,586.0901,10.080895,52.868835,103.930046,1.4605386e-05 1877,0.8584017,392.29495,18.02316,71.09552,1.458035e-05 1877,1.3431845,90.81316,20.343449,140.13815,1.1743852e-05 1877,1.5114112,280.9826,30.536558,171.68344,1.1676021e-05 1877,6.113099,355.6358,78.11892,127.682495,3.7870543e-06 1877,0.9320264,442.8885,21.584143,60.12143,3.2310077e-06 1877,1.1551807,66.31064,18.558632,73.434616,1.2152708e-06 1877,3.4774675,82.3668,58.375862,219.40552,6.239032e-07 1877,2.7551644,429.98343,52.84529,68.3468,5.8358626e-07 1877,0.8630843,13.065056,13.738634,80.34784,1.7099171e-07 1877,2.0485907,13.435046,59.540863,118.76726,5.3004513e-08 1877,376.51685,0.9254216,42.177338,49.445522,2.3266104e-08 1877,12.399453,0.26023763,44.638256,52.812134,1.0514409e-09 1878,584.06805,206.28026,30.5979,68.91402,97.613335 1878,471.9135,231.52414,31.98175,74.50656,0.011599121 1878,441.6535,238.17534,24.225006,56.50804,0.003751569 1878,129.71384,234.2238,33.84018,78.94881,0.0013171525 1878,142.3227,223.40598,23.586212,51.19983,0.0011884617 1878,2.2091398,191.986,31.927456,62.906693,0.0010741702 1878,621.0017,67.428024,18.144958,52.006676,0.0010122516 1878,155.158,217.91057,26.253159,53.44075,0.00058496784 1878,569.91864,174.27147,62.87317,141.2322,0.00042517018 1878,602.2904,115.68127,36.600952,154.01697,0.00033405583 1878,618.45825,246.37756,20.688416,78.53516,0.00031607904 1878,1.4600277,207.76659,19.328453,130.81593,0.0002728442 1878,616.26514,87.18072,22.88153,89.344536,0.00021586563 1878,618.0652,402.07382,21.081482,77.74661,0.00016878115 1878,622.14923,340.56888,16.997437,50.015778,0.00015828571 1878,456.6333,244.23045,22.330414,53.87651,0.0001563693 1878,1.0933086,157.14423,13.377217,49.21068,0.00014414087 1878,95.8307,319.5019,27.34645,59.987274,0.00012271217 1878,608.5909,7.8702607,30.555786,113.431145,0.00011619153 1878,585.8955,213.48228,51.99756,258.01917,8.631907e-05 1878,167.45988,228.83644,24.748215,57.813644,6.399549e-05 1878,425.2317,204.64714,75.70984,178.80156,5.813562e-05 1878,106.59797,187.87938,75.489815,173.97392,5.0138176e-05 1878,611.7633,287.26724,27.383362,142.2833,3.1522395e-05 1878,3.827282,135.70537,58.119698,196.7198,2.9906802e-05 1878,1.392181,88.90812,20.547396,137.97498,1.8564317e-05 1878,524.8607,169.68915,69.315186,161.3522,1.7461598e-05 1878,1.0036564,127.441864,13.704443,49.491455,1.6430708e-05 1878,1.6973398,265.89108,27.072445,142.4477,1.1437134e-05 1878,0.7714079,406.49158,18.03351,70.680725,1.0990731e-05 1878,2.989196,308.3167,57.087887,168.15909,5.8666233e-06 1878,1.012207,65.52728,18.73228,74.73059,2.8788638e-06 1878,2.7894938,430.01096,53.02235,68.52884,5.147027e-07 1878,0.79059976,13.555736,12.941674,79.63552,4.3156217e-07 1878,2.9714062,17.44123,82.15,149.07428,8.7477055e-08 1878,1.987697,10.1797695,38.58171,77.519005,1.2920919e-08 1878,381.7524,0.745752,41.8349,49.753937,9.285382e-09 1878,12.7093315,0.0,43.281307,51.47584,8.0067863e-10 1879,570.4173,208.42963,25.198364,61.963623,99.13132 1879,569.33325,200.44597,41.89325,151.88817,0.07383004 1879,140.60864,256.37976,25.567688,64.76636,0.017920027 1879,523.94495,294.40622,33.16736,65.46893,0.010959969 1879,533.8836,232.76447,75.494385,208.3479,0.0039816233 1879,538.5713,292.73807,39.39502,82.88318,0.0035986 1879,490.49377,283.56955,41.20459,91.537964,0.0027464675 1879,432.5488,234.41136,31.235077,66.36693,0.0023639523 1879,608.4794,91.745865,30.667297,145.23128,0.0011779249 1879,501.84875,191.10847,75.24457,172.72249,0.0011505773 1879,583.37885,300.1976,53.13037,170.46115,0.0008916374 1879,601.28986,207.31511,36.1297,183.25856,0.00086749217 1879,93.17132,304.5662,33.534477,76.30469,0.00074614683 1879,618.1188,376.13092,21.027893,75.82242,0.0006882561 1879,619.5627,133.4195,19.583984,62.531174,0.0006511311 1879,147.39207,235.79321,37.777252,106.95209,0.0006073022 1879,621.7331,64.057014,17.413574,47.70691,0.00058362936 1879,1.1807259,191.14378,17.87633,69.83516,0.00042616963 1879,616.12384,284.52032,23.022827,85.60339,0.00027115393 1879,117.4105,191.28433,56.212837,146.47949,0.00027022176 1879,0.9238208,154.02722,13.500457,49.51219,0.00014602116 1879,0.7925737,239.47833,13.431388,51.26239,0.000106660365 1879,0.9343221,225.33453,18.024094,134.13235,9.917486e-05 1879,583.17224,58.00193,55.665527,275.2351,6.90026e-05 1879,608.99316,11.42198,30.153503,107.948166,5.6145233e-05 1879,2.1931787,123.12623,32.800644,169.10593,4.5612167e-05 1879,609.4211,438.38995,29.725586,65.966736,3.1287585e-05 1879,0.9183777,113.80828,13.643216,48.487694,2.830445e-05 1879,3.4895296,215.14891,57.434067,217.21938,2.6008027e-05 1879,0.73868656,391.44873,18.12156,71.66681,9.005019e-06 1879,1.0183707,64.65939,18.474653,74.26097,6.2102076e-06 1879,6.142305,352.49393,78.04373,130.54263,3.6006018e-06 1879,0.91583174,443.03802,21.751469,59.953033,2.5848283e-06 1879,4.100495,43.6809,80.014175,229.82986,6.2719505e-07 1879,2.740791,429.12695,53.077797,69.455414,4.2387583e-07 1879,1.2995875,11.709372,25.81205,81.651474,5.1175984e-08 1879,2.485135,13.719258,58.379436,119.84481,3.2040386e-08 1879,381.2879,0.7205632,43.019867,51.90711,8.746366e-09 1879,7.2782197,1.0864062,43.501606,50.489887,2.1742295e-09 1880,560.3322,205.53426,25.228455,63.739456,99.46485 1880,577.59357,221.5792,19.50177,45.99765,0.017104866 1880,405.68292,270.22592,26.121826,66.912415,0.010324084 1880,105.45514,316.14465,25.77211,64.34424,0.0071692504 1880,620.32043,79.46,18.826233,54.482536,0.0018005349 1880,607.8451,90.2128,31.301575,147.89809,0.0011435042 1880,138.2158,231.95622,33.4478,81.51018,0.0011137296 1880,1.2233984,209.03345,18.141878,75.93445,0.0009782399 1880,619.77045,133.25494,19.37622,61.1942,0.000683007 1880,622.06213,202.5434,17.084534,51.97827,0.0004434853 1880,86.839676,219.37529,25.074532,52.046707,0.00038271627 1880,583.4261,15.362882,55.17511,107.92372,0.00032519284 1880,618.1007,224.13745,21.04596,79.20972,0.00023762543 1880,396.82883,189.67876,74.18628,162.80559,0.00023400632 1880,617.99176,374.83218,21.154907,81.056305,0.00012350161 1880,1.1875147,136.9355,18.099173,74.1263,0.00010352618 1880,617.80774,320.54938,21.338928,79.90106,9.514259e-05 1880,1.9733822,168.19583,33.889446,170.65536,8.717448e-05 1880,602.2524,165.13731,36.812683,177.90028,6.960888e-05 1880,177.4909,208.5283,67.26524,186.72166,5.541359e-05 1880,541.5855,174.23544,71.11438,149.4773,4.9117425e-05 1880,606.9908,5.7124987,32.155884,53.232388,4.6871883e-05 1880,0.981709,252.23047,19.31786,135.91794,3.681709e-05 1880,121.36615,178.3702,71.84863,171.96535,3.670151e-05 1880,614.6155,418.06522,24.531189,83.86197,2.7030916e-05 1880,78.04644,194.56882,41.60608,144.85126,2.555943e-05 1880,587.0207,226.30324,52.125977,245.9771,2.5407442e-05 1880,1.0569775,92.81909,18.371828,78.29608,1.4653101e-05 1880,0.72328043,399.53912,18.125912,70.606995,1.1528463e-05 1880,6.2069955,116.95198,77.78069,249.60316,7.936253e-06 1880,2.8554819,299.37268,56.97899,176.41193,3.7208251e-06 1880,0.9408252,442.9749,21.828747,59.782806,2.7293781e-06 1880,2.1109018,65.75421,35.307552,177.57803,1.368147e-06 1880,2.6929915,429.03543,53.122322,69.14261,5.078435e-07 1880,1.1862736,19.592377,21.72419,105.45234,2.1070483e-07 1880,3.0558758,16.237696,82.61957,152.37329,1.456548e-07 1880,368.41913,1.8313005,44.144318,52.208473,5.3861605e-08 1880,12.447717,0.0,43.40097,51.66214,5.103187e-10 1881,552.8534,204.80885,24.788574,63.42906,99.11377 1881,7.4017067,196.51508,33.01554,86.878235,0.05794662 1881,29.9392,231.83095,24.539476,52.767014,0.026456203 1881,1.3578272,197.27069,14.367613,57.493164,0.0064748116 1881,210.37633,223.05048,25.263855,55.524475,0.0017503693 1881,1.7988502,125.719376,21.007088,146.04,0.0014585842 1881,622.40186,202.69383,16.744812,52.996674,0.0013662658 1881,0.8934945,158.48666,14.240066,59.088287,0.00106511 1881,1.8720297,216.21838,19.541494,96.279816,0.00086099753 1881,609.012,88.32812,30.134644,145.99844,0.0006212842 1881,4.861403,172.12384,66.15858,158.0018,0.0005390778 1881,611.36896,176.21439,27.77771,121.615204,0.0005169983 1881,182.06595,221.42204,24.856857,53.842026,0.00042794045 1881,620.54407,129.61343,18.6026,61.045135,0.00041844446 1881,616.45856,63.395508,22.68811,80.222946,0.00023202019 1881,618.13226,379.96454,21.014404,81.9559,0.00019651723 1881,617.93005,249.25896,21.216614,80.70451,0.00012824753 1881,584.07855,11.441634,54.646606,107.27571,0.00012571411 1881,617.8946,320.45377,21.252075,81.24588,0.000106427186 1881,1.1215731,102.46696,18.495117,78.041725,7.6743105e-05 1881,536.23376,171.38057,72.12921,149.88176,6.238332e-05 1881,606.7086,5.519144,32.43805,55.91806,5.5768265e-05 1881,603.39246,218.05179,35.75421,198.3374,4.6587782e-05 1881,203.04909,200.84355,70.96092,175.3748,2.3863575e-05 1881,609.95306,440.61636,29.193604,63.044952,2.2793161e-05 1881,1.620534,254.61703,27.77518,158.75897,2.1109116e-05 1881,588.8668,332.2842,50.279846,154.45444,8.45403e-06 1881,0.7053174,392.52576,18.212523,71.83005,6.3978405e-06 1881,0.79125816,350.22382,18.42466,74.17236,4.500035e-06 1881,3.2320313,294.8898,55.88259,183.3035,3.4057966e-06 1881,1.021993,444.13422,21.687778,58.803467,1.9822912e-06 1881,1.1362948,59.55922,18.789688,74.93599,1.7360701e-06 1881,2.9247575,429.96252,53.114902,68.83322,3.6621873e-07 1881,0.86286783,12.544327,13.307621,85.22371,1.874784e-07 1881,1.6037859,21.665905,36.524837,192.72453,1.16534615e-07 1881,369.00388,2.004235,43.97119,50.44598,5.869214e-08 1881,6.419082,1.2613136,44.472645,51.85133,7.8569545e-10 1882,542.9032,209.37772,24.815002,60.704926,98.8367 1882,526.55115,209.04538,21.079773,53.442932,0.015926171 1882,1.9070175,195.15517,28.48373,72.51137,0.011884757 1882,213.02104,213.70833,31.599487,66.89894,0.006633873 1882,1.2571106,181.13464,13.538126,50.994034,0.004049729 1882,620.7944,80.40871,18.352295,51.23407,0.0030662522 1882,608.30994,72.419464,30.836731,143.65315,0.001690277 1882,617.0146,195.12428,22.13208,77.03102,0.0004096425 1882,589.6813,106.38021,49.207336,216.08545,0.0002576056 1882,584.03864,15.938721,54.549377,106.05956,0.00018276519 1882,618.0951,395.4027,21.051575,78.1449,0.00016635092 1882,618.07513,259.24698,21.071533,77.15164,0.00016313401 1882,1.4140991,124.35874,21.183184,112.34345,0.0001408048 1882,617.8685,341.6173,21.278137,79.94937,0.00011286334 1882,0.9586304,142.1575,13.329084,49.746994,9.5798496e-05 1882,521.6985,174.90652,68.2334,151.57,7.8486395e-05 1882,3.396242,114.456406,56.0641,203.0418,6.7466666e-05 1882,1.1861231,231.26721,29.592031,161.50772,5.8255944e-05 1882,238.21538,197.95857,41.391617,128.9629,5.019846e-05 1882,607.4049,5.5970216,31.74176,58.218,3.9981267e-05 1882,603.38995,224.92256,35.756714,190.54506,3.3754277e-05 1882,609.822,441.50116,29.324646,62.081726,2.2331717e-05 1882,0.8762598,248.5417,13.783587,57.71791,1.918725e-05 1882,0.62862796,313.7436,18.532347,75.12262,1.1338685e-05 1882,1.0555958,78.25294,18.853468,79.133675,1.0130275e-05 1882,588.63416,329.02615,50.512512,154.62567,6.8021573e-06 1882,0.5257251,365.11584,13.823731,47.27002,6.4064734e-06 1882,0.66893554,391.5215,18.225971,71.95111,6.2254126e-06 1882,1.098885,315.28183,33.41208,169.27481,3.6780445e-06 1882,1.0177693,443.60846,21.88089,59.356964,1.8923022e-06 1882,2.9411573,428.27338,53.22106,70.58246,3.4122968e-07 1882,1.7977881,25.954603,35.83646,160.88025,3.1651666e-07 1882,368.87885,2.211364,43.416443,50.832127,7.233646e-08 1882,6.8118052,0.8995443,44.224472,51.56032,2.0879831e-09 1883,535.1125,212.50334,21.05365,54.45146,98.65976 1883,545.404,217.89784,26.704163,59.80049,31.303125 1883,520.8297,212.59836,21.322205,51.71759,0.02159416 1883,40.379875,189.37029,26.454498,52.807556,0.0095079765 1883,1.1253512,182.94334,13.18874,51.17682,0.0022988655 1883,620.33014,66.62603,18.816528,51.047096,0.002055176 1883,347.83398,206.72969,25.684845,48.887222,0.00092725584 1883,1.5663958,202.6653,18.338448,75.55733,0.0008571012 1883,611.54956,183.15508,27.597107,118.5894,0.00058723724 1883,608.49866,66.90244,30.64801,154.3194,0.00039467745 1883,618.1127,395.04248,21.033997,78.68988,0.00018888965 1883,584.5643,14.730993,54.1416,105.594986,0.00013814277 1883,617.9471,341.92474,21.199585,79.51901,0.00010929789 1883,1.7155982,196.82996,33.08514,166.92181,7.251645e-05 1883,0.5356706,298.46878,14.103015,50.394318,6.54675e-05 1883,1.0757895,128.8954,18.429638,80.3795,5.6161833e-05 1883,522.4484,178.30789,72.555664,149.83209,4.37378e-05 1883,587.61847,242.12126,51.5282,228.1999,3.8611954e-05 1883,1.0076026,244.92607,19.004908,77.48265,2.5510872e-05 1883,609.9102,440.38083,29.23645,63.697266,2.4751227e-05 1883,0.70334554,295.29752,20.005362,142.15625,1.8757977e-05 1883,314.25494,157.2609,98.441284,209.77896,1.3071087e-05 1883,0.57496667,329.50638,13.850812,49.12091,1.0627661e-05 1883,5.7740855,191.10435,77.37816,264.1286,1.05343815e-05 1883,0.5453695,390.30103,18.326092,72.79324,8.965755e-06 1883,1.1246973,86.154785,18.286642,73.66173,4.075085e-06 1883,0.89129966,443.49365,21.989336,59.735565,1.7897514e-06 1883,1.9499837,73.4188,35.10627,190.24634,9.914893e-07 1883,2.984691,395.79935,56.307564,98.27167,5.474637e-07 1883,0.8260653,10.803676,14.182148,84.58104,2.663447e-07 1883,3.177409,15.009994,81.94479,152.59521,4.977433e-08 1883,375.80847,1.4149121,42.43405,50.795654,3.72811e-08 1883,6.4764376,0.872347,43.989426,51.589737,7.2561526e-09 1884,531.4455,214.93382,27.518188,57.966507,90.76922 1884,618.87354,45.942547,20.273132,56.20859,0.011095377 1884,462.4999,211.45186,22.741364,47.252457,0.0075136055 1884,401.12393,204.13203,24.720398,51.07959,0.0017020851 1884,585.8996,18.74181,52.151917,96.79373,0.0011472114 1884,617.82605,188.20906,21.320618,63.050842,0.00050241844 1884,0.8557215,213.26802,12.870291,48.948013,0.000490706 1884,609.52423,63.048218,29.622437,157.2425,0.0003190381 1884,618.1227,394.48615,21.023987,78.92731,0.00020852257 1884,0.3639547,382.43094,12.125918,45.536377,0.00019078607 1884,612.60693,214.50027,26.539734,111.84503,0.00018807431 1884,1.3419085,238.40344,28.920631,170.57608,0.00016122023 1884,0.9068478,175.76163,13.167025,48.5795,0.0001461485 1884,607.3372,5.6227574,31.809448,61.56063,0.00014474505 1884,617.9221,347.76328,21.224548,81.11148,9.256374e-05 1884,0.09916911,362.72763,27.724459,87.464294,8.6211454e-05 1884,148.18123,243.80763,23.173218,47.831833,6.4017586e-05 1884,587.0679,152.61852,52.078796,195.73354,4.6294143e-05 1884,1.4924967,157.19923,19.207417,126.9059,4.574651e-05 1884,514.73615,177.50146,79.35535,155.8884,3.7742768e-05 1884,1.1039779,295.44867,54.854,180.3031,3.696055e-05 1884,0.9731482,300.8028,13.8764925,49.888794,3.2666074e-05 1884,326.80264,213.58734,23.684174,49.599976,2.87685e-05 1884,4.201872,140.50032,57.154533,217.82951,2.6342823e-05 1884,602.45294,267.59756,36.693726,193.5476,2.4045741e-05 1884,609.93854,440.81955,29.20813,63.029053,2.1856093e-05 1884,1.1660783,114.56386,18.185152,78.55481,2.1190483e-05 1884,0.58571374,413.1861,14.133502,52.444916,1.9740479e-05 1884,66.557144,213.71095,35.887054,73.547714,1.9299454e-05 1884,0.99078536,98.43483,13.382701,50.78253,8.484108e-06 1884,1.1009734,409.23737,34.968407,89.05469,3.8028552e-06 1884,0.79386234,7.647722,13.99621,85.85272,2.3445419e-07 1884,1.788029,61.036427,34.66128,201.94029,2.3125604e-07 1884,3.0038445,12.981595,81.52646,154.87617,1.6378439e-07 1884,1.90799,3.9587305,52.38011,79.395615,2.9515073e-08 1884,370.274,1.6088688,42.155518,49.975025,2.5168175e-08 1885,540.1304,208.62152,24.308105,57.444946,99.58933 1885,552.7849,214.2976,25.281372,55.704132,1.0145139 1885,530.4843,209.94633,20.391235,47.26854,0.05333084 1885,478.3062,224.32101,22.449371,45.11093,0.012335388 1885,529.92145,191.79222,59.9823,98.272354,0.0056104492 1885,612.7119,184.56839,26.434753,117.46921,0.0042783767 1885,621.0742,95.43422,18.072449,56.800888,0.0027460326 1885,609.4836,75.643234,29.663086,147.23814,0.0009901071 1885,401.985,205.60974,23.68219,49.88182,0.0003281606 1885,586.85785,130.60594,51.400574,199.07771,0.00024117285 1885,617.9833,305.22437,21.163391,82.227875,0.00012875735 1885,618.0056,367.8065,21.141052,81.474396,0.00011379844 1885,1.3894581,180.53195,20.283192,138.23041,7.1753886e-05 1885,0.98125815,332.9527,19.212578,132.43997,6.038562e-05 1885,0.8493547,155.73943,13.550133,49.12947,5.1269933e-05 1885,587.4961,231.10472,51.650574,238.4467,5.114213e-05 1885,1.1963339,293.66846,17.930473,79.16708,4.472653e-05 1885,3.3040984,310.23758,57.64931,163.28534,4.2580625e-05 1885,1.7624463,231.5713,33.26513,172.10634,3.138052e-05 1885,614.44635,417.36975,24.700317,85.32349,3.0303054e-05 1885,494.23813,142.79144,141.45517,219.63953,2.3436227e-05 1885,584.112,5.4838934,55.034668,130.5707,1.890445e-05 1885,1.9955608,108.065674,28.701132,143.72304,8.82248e-06 1885,0.5890072,416.318,17.503292,86.120514,3.7619288e-06 1885,1.3236198,66.97043,18.43024,74.478226,1.7929564e-06 1885,3.4452083,87.17968,58.48282,229.85574,1.3711565e-06 1885,3.2071826,422.5422,60.345722,76.609375,4.0285832e-07 1885,1.8273324,12.93972,58.900776,121.919914,3.300221e-08 1885,0.85674196,9.55542,12.746091,88.239624,2.142765e-08 1885,381.29727,0.0,44.879944,47.16932,5.346322e-09 1886,581.114,208.39825,25.56482,63.441803,99.079315 1886,585.9745,202.94417,37.831238,113.33415,0.15406543 1886,623.3119,234.32462,15.834778,50.486237,0.03906884 1886,515.5491,302.02695,61.15857,146.48697,0.03375293 1886,604.6746,207.1543,30.37555,65.82071,0.020731343 1886,584.9694,225.4107,51.958923,235.31952,0.014389524 1886,414.39142,195.91437,28.974335,60.210876,0.009345841 1886,522.3071,313.82214,29.46344,74.08661,0.0068585994 1886,609.4346,227.39235,29.475464,125.67784,0.0065798224 1886,622.33997,197.98909,16.806702,48.97722,0.004027722 1886,0.91759115,173.18295,13.704712,54.239136,0.0016886337 1886,529.39246,159.76932,104.08649,241.56586,0.00037083242 1886,615.6121,303.52563,23.534546,88.67053,0.00029893336 1886,1.3338143,150.59042,19.674688,133.75525,0.0002888032 1886,610.9677,335.4712,28.178955,137.08862,0.00024266948 1886,1.0761238,124.156425,18.357994,76.658104,9.2739225e-05 1886,609.41174,8.387481,29.734924,116.95057,6.328974e-05 1886,0.4312614,375.40735,14.64494,60.796722,6.19886e-05 1886,4.1131268,151.41522,57.31241,233.0315,6.157821e-05 1886,609.29114,439.0978,29.85553,66.85309,4.2104373e-05 1886,2.156623,272.75015,35.005005,182.7583,3.2203305e-05 1886,611.18414,99.43725,27.962524,161.9255,2.83941e-05 1886,1.4863713,221.79834,19.34165,148.23413,2.7468797e-05 1886,0.61407226,414.63458,17.5359,87.79553,7.740797e-06 1886,4.4029784,342.4652,78.032585,141.30359,4.7166986e-06 1886,1.9906006,61.51187,33.76967,180.081,1.2169107e-06 1886,2.3243735,420.41748,53.25327,78.773926,7.407564e-07 1886,1.3912053,57.48241,18.540556,73.99278,7.171446e-07 1886,1.6856804,10.71664,58.694798,120.01663,8.018179e-08 1886,320.65536,4.6295004,41.329742,48.119076,3.1531435e-08 1886,0.99365234,10.827816,12.956716,82.960556,2.5970467e-08 1886,354.90286,3.0586672,43.975037,47.305157,1.9430948e-09 1887,426.09256,271.12863,32.3714,70.55997,0.3447001 1887,419.0797,246.83638,55.415253,142.77327,0.015360632 1887,463.67685,237.55984,29.013428,57.578583,0.010112705 1887,126.028275,236.14905,23.805786,51.74475,0.0041488865 1887,610.53876,202.50508,28.324158,128.82094,0.003684367 1887,120.13051,213.17764,24.788696,50.972443,0.0007104009 1887,456.67703,295.79797,77.64816,171.43866,0.00064125645 1887,483.51562,320.7939,36.446594,91.648865,0.00028270236 1887,622.0507,310.05215,17.095947,51.867645,0.0002810816 1887,617.8309,384.8328,21.315796,83.10541,0.00020014752 1887,95.27539,226.87901,35.797653,77.67528,0.00018098266 1887,421.0798,203.1893,33.36261,73.97562,0.00016942948 1887,611.703,127.50784,27.443665,118.099976,0.00016409675 1887,607.8461,4.856794,31.300537,56.58417,0.00012751494 1887,325.86227,211.78781,23.730957,49.48944,0.000117798525 1887,588.7912,289.17032,49.50836,181.2987,9.674562e-05 1887,1.0727654,259.60324,17.813429,71.09558,7.677656e-05 1887,1.1433724,141.05263,17.977016,75.39267,7.391083e-05 1887,1.0165805,298.8121,17.640127,126.548584,5.1314542e-05 1887,4.6510124,130.73477,56.36861,225.15619,4.3849228e-05 1887,1.3195899,190.90279,17.580132,73.61272,2.8896415e-05 1887,616.37164,54.300186,22.775024,86.59819,2.6913516e-05 1887,609.6746,439.57642,29.472046,64.302185,2.3684099e-05 1887,584.81104,10.067419,54.335632,104.059616,1.6894594e-05 1887,1.605612,327.536,33.695854,153.85446,1.6071228e-05 1887,585.9109,64.38355,53.23578,265.84778,1.3343212e-05 1887,5.1421227,275.8012,79.685875,190.57312,1.2374535e-05 1887,47.587124,262.53714,88.896805,187.15778,1.23267855e-05 1887,0.56394535,392.98825,18.421543,77.322174,9.514661e-06 1887,0.8465658,442.95206,21.836815,60.13681,2.1965081e-06 1887,2.3485157,23.091295,60.456688,209.31645,4.4817367e-07 1887,2.7098503,428.26352,53.32277,70.51404,3.306832e-07 1887,1.418007,16.194792,30.527964,133.68692,1.0911704e-07 1887,0.7301945,11.616881,11.94722,83.08413,8.7949175e-08 1887,392.11108,1.3136752,46.029907,49.077713,7.022195e-09 1887,0.0034798179,1.8604168,44.502586,52.689808,2.1096842e-09 1887,334.78653,4.329803,40.877777,45.020027,1.2454773e-09 1887,361.66287,1.4322397,41.904236,47.170967,6.678522e-10 1888,351.8491,251.42162,38.52826,113.960434,0.09108476 1888,379.51282,276.6686,39.66217,108.35748,0.024538632 1888,360.85342,230.16992,23.172302,52.662903,0.015010382 1888,497.8045,238.02638,56.654907,137.27513,0.0066988547 1888,111.60845,221.57683,26.251595,54.02339,0.0034373326 1888,351.70938,250.67625,83.19476,182.80345,0.001960281 1888,532.7149,299.599,27.960815,65.469604,0.0016728331 1888,377.23633,227.49243,36.053253,68.6243,0.0011621653 1888,395.35342,303.4978,21.37027,51.254303,0.0010677918 1888,115.774,221.00728,43.503296,97.659744,0.0008124446 1888,617.7076,198.31822,21.439087,79.47682,0.00046737673 1888,608.0901,5.2893558,31.05658,92.73541,0.00033769777 1888,617.4921,242.93465,21.654541,83.64128,0.00028222878 1888,618.12366,400.0535,21.02301,79.09781,0.0002612257 1888,1.3671362,105.986626,18.883377,78.37772,0.00014876717 1888,610.7751,73.491325,28.371582,159.50717,0.0001289151 1888,617.77893,348.50748,21.367737,80.17871,0.0001234724 1888,603.4748,218.7871,35.671875,195.61421,5.6242767e-05 1888,1.257098,239.4281,17.941843,75.45975,3.144928e-05 1888,1.8763517,109.24865,32.088924,171.17526,2.3591001e-05 1888,572.8988,362.9486,66.24786,124.13806,1.7184686e-05 1888,0.88036865,320.81656,19.543264,130.24393,1.3671419e-05 1888,0.61978436,405.93182,18.156075,70.78815,9.291383e-06 1888,1.6671933,228.5298,31.88318,164.30336,5.541159e-06 1888,1.374799,64.875404,18.88502,75.51797,3.4711554e-06 1888,2.9767334,310.18668,56.745937,166.04324,2.2137942e-06 1888,5.839261,152.02419,79.054474,250.00142,1.3090505e-06 1888,2.7297626,427.91293,53.129692,70.936035,3.732267e-07 1888,1.7276368,22.884668,33.9418,163.77516,2.973172e-07 1888,0.87345827,10.040954,11.919446,86.549904,2.8000974e-08 1889,447.28714,203.53397,27.351715,62.250153,0.012505409 1889,432.6266,186.41356,39.19467,140.95515,0.004049551 1889,328.54916,213.46751,25.533813,58.841293,0.0030636885 1889,303.78766,227.55928,43.770386,143.0525,0.00284179 1889,619.7758,46.558544,19.37085,61.1954,0.0017286877 1889,521.27795,213.82794,34.078003,64.58209,0.0014063775 1889,617.54144,150.98656,21.605225,69.21593,0.0009968253 1889,617.9842,201.0822,21.162476,83.650406,0.00061006646 1889,610.3995,50.29558,28.747192,162.16731,0.0003958294 1889,584.5441,12.786019,54.60254,104.189606,0.0001807131 1889,1.0266488,263.99408,18.189425,76.212585,0.00016937422 1889,448.69928,153.7606,24.698486,52.531815,0.00015508202 1889,1.460752,131.85912,18.072504,72.656555,0.0001489361 1889,146.47661,226.56607,36.767334,80.299194,0.00012099188 1889,389.43445,181.86566,104.92688,228.96426,0.00011596603 1889,618.2241,369.09683,20.922546,79.34943,0.000111459005 1889,617.72876,262.50177,21.417908,82.29855,0.00011058004 1889,47.282757,224.72264,23.298786,54.27748,9.054774e-05 1889,4.5731997,130.83469,57.61039,215.63864,5.3873573e-05 1889,614.47296,418.2285,24.673706,84.25714,4.2238462e-05 1889,0.58322185,320.66617,18.283161,74.84375,4.132838e-05 1889,603.0642,213.064,36.08246,202.49442,3.5952013e-05 1889,1.2929574,258.85043,33.932476,178.75397,3.4894176e-05 1889,307.75656,253.11404,24.92215,62.255066,3.0118948e-05 1889,0.47563967,388.43335,18.424994,74.25629,1.3465355e-05 1889,571.89087,365.18524,67.2558,123.28705,1.2124375e-05 1889,2.5019207,85.72121,33.857338,172.28514,5.4990023e-06 1889,1.4003704,81.36785,18.026718,76.52369,4.377085e-06 1889,0.84694743,442.63095,21.887419,60.76303,2.3566124e-06 1889,1.5397649,197.85703,20.92576,106.84024,2.2384975e-06 1889,2.5406284,389.5557,56.281082,103.50635,1.0454512e-06 1889,580.39764,4.4635696,45.506836,51.3585,4.706469e-07 1889,4.141657,17.196764,81.63142,157.9831,3.8107316e-07 1889,0.8335954,10.896645,11.92492,81.44754,4.069908e-08 1889,1.1168587,16.313066,28.949394,115.658264,3.4539145e-08 1889,414.3348,3.577155,43.233734,49.580677,5.0793275e-10 1890,621.17053,182.04529,17.976135,53.48294,0.010992897 1890,503.68732,201.13971,23.428589,50.1391,0.009205716 1890,70.96769,214.03308,38.884315,97.06677,0.0055918507 1890,356.76205,200.83397,22.095581,46.448486,0.004736333 1890,279.00598,244.76123,26.54007,63.49832,0.0044495724 1890,612.0113,184.14125,27.135376,126.54628,0.00211612 1890,87.27943,207.35075,24.305443,52.30739,0.001420344 1890,620.7219,125.03417,18.424744,63.044533,0.0011657682 1890,573.8472,220.14818,32.150757,65.28334,0.00097300997 1890,169.67407,211.595,25.69896,52.122528,0.00058755535 1890,287.94363,223.82404,45.099,95.33179,0.00055743346 1890,611.1178,84.10523,28.02887,145.86102,0.0004696832 1890,383.59924,208.0929,41.065887,128.19586,0.00039966384 1890,570.4606,130.6662,68.36786,227.63126,0.00017823135 1890,392.93478,203.11852,26.300385,59.65724,0.00015413892 1890,1.5700896,112.52557,19.434298,137.98238,0.0001506733 1890,617.7386,313.74396,21.408081,81.85516,0.00010626987 1890,612.56537,4.462165,26.581299,79.60297,6.2469466e-05 1890,613.34296,353.02856,25.80371,108.3681,5.839996e-05 1890,601.6188,246.59712,37.527893,194.53117,3.9121496e-05 1890,609.3916,437.9024,29.755066,66.67056,3.235399e-05 1890,1.6082138,156.9372,32.340878,184.5195,2.6638503e-05 1890,0.5835262,322.12732,13.921685,49.076233,2.1730022e-05 1890,0.7420215,247.92183,18.382858,81.501816,1.9276386e-05 1890,47.692215,170.83876,88.02396,156.89464,1.8194072e-05 1890,0.6682992,316.87112,19.749384,134.462,1.3074703e-05 1890,584.9959,392.98666,54.150757,99.98804,1.2810693e-05 1890,251.92928,191.02118,108.26784,209.87009,1.2656325e-05 1890,1.5323658,71.65366,19.419556,85.77897,1.0715142e-05 1890,0.50976604,418.8683,13.696744,47.267914,8.959038e-06 1890,3.2600815,221.91904,56.988937,214.38586,5.3681974e-06 1890,569.91833,10.487747,69.22833,159.60442,2.901963e-06 1890,0.82968915,442.99252,21.97859,60.393738,2.1514038e-06 1890,5.1500487,356.57397,79.27428,130.95114,5.773971e-07 1890,2.6743848,428.3948,52.962914,70.431305,3.5020233e-07 1890,1.9088396,18.391003,60.299026,238.58144,2.1805941e-07 1890,0.6713595,5.54986,11.397914,88.3734,5.906859e-08 1890,408.50183,5.1736493,61.656097,47.46972,2.8965284e-09 1891,351.4395,200.47247,43.12216,100.672455,0.018901197 1891,365.13586,199.4812,25.14267,50.251907,0.0115312105 1891,478.85406,195.76898,33.862732,63.68872,0.007056845 1891,620.7249,58.41817,18.421753,51.824055,0.003931693 1891,363.5554,252.23006,34.943787,87.309494,0.0026105682 1891,103.15758,221.9801,31.640701,73.30179,0.0010479792 1891,252.06644,210.92235,24.286835,52.710068,0.00082319963 1891,618.24786,183.13945,20.898804,73.13359,0.00079489534 1891,1.5064176,161.94412,17.706547,69.21416,0.0006274637 1891,609.9798,68.47984,29.16687,155.64404,0.00042329007 1891,617.8675,234.98676,21.279175,83.65503,0.0003688024 1891,618.11017,395.5112,21.036499,78.40933,0.00018812416 1891,358.76495,193.4752,73.232666,157.56804,0.00015065649 1891,608.24695,13.290937,30.89972,119.53645,0.00011816555 1891,617.9158,290.07047,21.230896,83.56763,0.00010575244 1891,602.2975,182.04012,36.849182,179.11949,8.5508094e-05 1891,0.88251793,134.0315,13.860741,54.435318,5.214908e-05 1891,1.1386255,185.81497,19.541752,131.77856,3.491581e-05 1891,609.89923,440.53018,29.247437,63.636017,2.5671608e-05 1891,604.849,297.1084,34.29767,158.69095,2.144489e-05 1891,0.45752686,224.43808,13.847416,50.26651,1.5352496e-05 1891,0.7135726,302.66083,18.476892,74.247375,1.4415967e-05 1891,1.7998178,95.1588,34.047905,166.9958,1.3232091e-05 1891,5.2316732,193.24635,77.845604,262.69482,1.0822813e-05 1891,0.6355851,391.38776,18.23436,71.696014,9.060098e-06 1891,0.60391194,343.47546,18.465588,74.62015,6.8624927e-06 1891,1.1255225,72.14211,18.424217,73.57917,6.3698835e-06 1891,1.1821371,242.11755,34.4043,180.62967,2.6913615e-06 1891,0.87851566,442.95517,21.857983,60.15854,2.2641932e-06 1891,3.0286183,395.92346,56.08632,97.4928,5.3290404e-07 1891,3.38862,34.776707,81.90068,234.5845,2.0878059e-07 1891,2.205215,15.803939,58.468704,110.048775,5.1926e-08 1891,0.5355717,7.304912,9.036975,88.14463,4.294238e-08 1891,1.2730892,5.0676565,28.851612,59.04328,3.2494074e-09 1891,425.33224,6.274317,63.33835,47.02697,6.5500727e-10 1892,330.2062,226.99149,41.253357,89.347534,1.4248714 1892,367.12845,199.58446,23.947235,50.31195,0.01481201 1892,345.2434,223.03088,23.660461,47.044525,0.00630888 1892,403.1033,201.90178,24.079315,48.17093,0.0032277668 1892,350.09393,207.19922,37.971527,90.9426,0.0025997958 1892,1.3228947,168.09741,17.947691,73.10217,0.0025958368 1892,312.94028,205.13107,73.663055,170.61127,0.0017767941 1892,339.73438,273.71783,32.127106,78.86478,0.0015095841 1892,239.36983,226.60191,32.503403,72.822556,0.00095969165 1892,564.8766,185.69397,23.230835,48.400803,0.0008152589 1892,611.8127,183.67839,27.333984,125.9478,0.00037113248 1892,617.49274,155.0258,21.65393,72.316284,0.00019124293 1892,618.0751,393.82703,21.071594,79.94449,0.0001693865 1892,617.57043,340.41922,21.576233,81.89813,0.00012540387 1892,617.73047,259.70328,21.416199,86.210754,0.00010286581 1892,616.3104,95.3639,22.836243,87.69193,9.926323e-05 1892,216.63756,217.9347,68.95351,158.19543,9.348611e-05 1892,0.75531983,139.4369,13.893216,52.674164,8.118459e-05 1892,0.6871151,210.69655,18.462862,81.34178,8.062736e-05 1892,0.8367888,112.44741,13.747367,48.339806,4.503556e-05 1892,600.83484,253.02531,38.31183,202.34798,3.2690383e-05 1892,1.5344906,134.67874,35.42798,162.35071,3.1132397e-05 1892,585.5671,41.620667,53.262634,229.93512,2.9168748e-05 1892,609.8065,439.6285,29.340149,64.64795,2.450387e-05 1892,1.0639087,72.28317,20.674353,145.02612,2.4085217e-05 1892,609.2336,4.7419467,29.913086,110.274414,2.0287898e-05 1892,0.6725297,309.4727,13.752413,47.653595,1.7832677e-05 1892,4.5645347,118.57974,81.37264,244.34744,1.2160353e-05 1892,0.7499341,315.5667,20.877275,106.13205,1.0200442e-05 1892,0.6651074,406.09692,18.1024,70.27783,7.3476785e-06 1892,572.80054,359.05072,66.34613,130.70566,6.793651e-06 1892,0.7268164,259.64478,18.120674,75.71564,5.93657e-06 1892,3.092806,228.42435,57.522804,232.14993,1.0457943e-06 1892,2.985861,395.82434,56.263958,97.58292,4.857425e-07 1892,0.63671553,8.954226,9.996156,81.53273,8.393193e-08 1892,1.887946,12.56319,58.730686,118.68457,4.612443e-08 1892,435.20187,6.6509314,83.0549,66.330124,8.9682695e-10 1892,425.08807,1.1385742,43.607605,57.024834,1.08155235e-10 1893,301.41827,231.90126,34.795685,70.81093,0.718961 1893,28.06071,171.58058,38.425816,64.318954,0.6934092 1893,208.64983,210.8543,28.366348,52.202774,0.044768337 1893,621.444,228.2763,17.702698,53.183655,0.0073233675 1893,204.40456,203.64479,44.760925,112.9944,0.0036158585 1893,587.80566,218.29005,39.30365,61.963333,0.0033179058 1893,282.87567,189.80193,75.10159,155.11086,0.0011671745 1893,610.0659,175.39137,28.67871,125.24333,0.0009752276 1893,1.2554712,160.34964,17.933258,71.8475,0.00077138696 1893,617.0433,133.09834,22.103394,74.666916,0.0005536148 1893,621.817,104.36074,17.32965,53.89538,0.00033748592 1893,617.67316,254.12938,21.47351,82.19533,0.00031909105 1893,573.5377,131.2729,64.5296,237.63509,0.00022771224 1893,618.06573,380.78763,21.080933,81.136536,0.00018400655 1893,617.7027,320.55057,21.44397,79.572815,0.00010307871 1893,601.0776,241.40201,38.06909,204.5044,8.697966e-05 1893,0.55780274,209.20853,13.761914,51.332977,5.764894e-05 1893,617.06525,49.94855,22.08142,85.44446,3.399732e-05 1893,1.2331364,186.27292,27.662659,149.41138,2.9149785e-05 1893,609.84375,439.93924,29.302917,64.19693,2.5933079e-05 1893,600.1705,40.21089,38.487427,196.54102,2.5637943e-05 1893,595.5408,4.5358825,43.605896,96.79569,2.4804538e-05 1893,3.2561655,108.800415,61.195137,192.461,1.9239178e-05 1893,0.5594141,314.21716,18.511133,74.26709,1.6377611e-05 1893,0.9996411,86.64068,18.457832,77.36181,1.5852062e-05 1893,0.74655277,268.12332,18.001728,74.239044,1.1396087e-05 1893,0.60421306,426.39758,13.547568,45.90988,7.1989675e-06 1893,572.6848,358.6134,66.46185,131.12787,6.585738e-06 1893,0.5828434,384.44193,18.319809,72.20755,5.889113e-06 1893,1.1072949,307.5603,33.273045,175.0091,3.1299098e-06 1893,0.894091,443.14783,21.964334,60.008423,2.2830138e-06 1893,2.7691553,428.49445,53.2771,70.35922,3.2786213e-07 1893,0.6946936,9.65239,10.526732,82.66075,1.527859e-07 1893,1.1218172,45.982735,18.777834,72.17297,9.0793435e-08 1893,313.83417,2.279795,45.234955,50.527462,7.99843e-08 1893,1.461115,21.49681,33.674366,155.02448,6.329668e-08 1893,344.5209,0.7685335,44.4317,52.570354,1.7182563e-08 1893,480.98413,3.4408252,44.49231,46.061096,1.2231353e-10 1893,448.62366,0.58203614,48.029175,53.355167,5.7499346e-11 1894,448.1126,205.10732,24.267365,45.053467,0.004987737 1894,417.14114,199.87776,22.784027,46.01329,0.002060341 1894,617.5621,147.88104,21.584595,75.5112,0.0008697877 1894,166.15529,222.23294,32.199875,72.64432,0.00062115386 1894,1.2512655,154.60878,18.009476,75.38214,0.0005155498 1894,617.6526,193.3203,21.49408,75.7816,0.00043216802 1894,264.58234,242.44371,24.972809,49.345566,0.00017032342 1894,617.9862,381.39673,21.160461,80.73474,0.00016702189 1894,617.8328,320.53564,21.313843,80.355896,0.00012677007 1894,0.6103182,126.74063,13.858881,50.890717,0.000120304285 1894,601.68036,154.42946,37.39984,166.0942,6.698781e-05 1894,0.6036031,210.34633,13.53058,49.388382,6.636833e-05 1894,612.4047,237.07811,26.741943,136.8709,5.8353642e-05 1894,1.145206,184.14125,19.73246,130.51576,4.4139317e-05 1894,1.7810352,110.41568,34.63858,158.237,3.56917e-05 1894,617.2498,56.011604,21.89685,86.52245,3.3159486e-05 1894,0.5734009,315.4197,13.730399,47.384064,2.8364382e-05 1894,411.50745,140.0569,80.69461,160.00862,2.6152933e-05 1894,608.5438,6.4289227,30.602844,52.545586,2.4365545e-05 1894,609.7511,440.23398,29.395569,63.706085,2.3947288e-05 1894,587.1711,241.25334,51.975586,231.53908,1.5716345e-05 1894,585.8209,15.217347,53.13672,112.838196,1.3742084e-05 1894,5.3652377,115.61938,78.557625,245.0062,1.2623296e-05 1894,148.94962,202.64445,71.469406,163.2805,1.0266474e-05 1894,0.60694253,283.97113,19.993628,130.1954,9.166231e-06 1894,0.61310303,426.00827,13.564785,46.08008,8.237333e-06 1894,0.9026473,75.866646,18.506882,71.02894,7.261466e-06 1894,0.59022623,384.70963,18.304384,72.23471,5.6298263e-06 1894,0.8833887,442.1187,21.975855,61.3248,2.2067372e-06 1894,2.7394955,298.5156,57.493683,178.81442,1.2223448e-06 1894,2.7603304,427.96182,53.29325,71.050385,3.3738937e-07 1894,0.7015019,11.467891,12.397681,78.29847,2.5303058e-07 1894,2.470892,14.789714,83.28743,154.85948,1.8639805e-07 1894,1.1004379,18.88056,29.161732,112.47364,1.3230313e-07 1894,388.71756,6.0348096,44.351562,45.245087,3.8215532e-08 1894,454.88565,7.061825,45.097534,49.33932,2.0927955e-09 1895,227.57391,220.12964,30.056244,58.670197,6.2366996 1895,428.1568,199.15704,27.87619,45.375977,0.82395685 1895,140.16031,202.26364,36.0224,66.64792,0.09207697 1895,1.7918946,293.38162,60.45611,201.93027,0.010089914 1895,1.7333423,347.7823,22.4657,107.95834,0.0072710807 1895,216.61029,200.13327,56.834076,107.66339,0.0030999135 1895,19.092327,192.12794,35.379898,71.612595,0.0025826956 1895,610.89575,175.64136,27.870544,121.93082,0.00089454436 1895,1.1442676,212.18549,14.089554,54.894012,0.00060495525 1895,1.1315788,179.05174,13.680329,53.453476,0.00047820472 1895,7.4596324,211.98376,35.068478,83.46228,0.00032534578 1895,4.3047657,157.9257,66.10447,179.0255,0.00028622797 1895,617.27966,245.78755,21.867004,76.42659,0.00022374745 1895,616.2238,60.100426,22.922852,84.03831,0.00020000155 1895,1.2877116,176.58649,20.584713,135.47314,0.00016478331 1895,618.2659,403.15234,20.880737,76.87216,0.00014572374 1895,1.4566675,230.77406,30.835268,189.38695,0.00012195362 1895,0.74150634,146.77205,14.6008835,57.031998,0.00010085409 1895,617.65765,321.17972,21.489014,78.38269,9.15578e-05 1895,587.3976,19.354675,51.449585,102.26091,6.5193744e-05 1895,1.3742204,410.52133,18.88191,90.46625,6.0405666e-05 1895,588.0031,205.74446,51.143555,205.72899,4.558694e-05 1895,1.1630257,283.23984,19.307682,83.53009,2.4464456e-05 1895,131.87001,179.4974,78.0461,153.15848,2.358866e-05 1895,1.165573,82.11243,21.586107,143.2968,1.8791747e-05 1895,606.312,7.70625,32.834656,58.702763,1.218701e-05 1895,588.17975,327.75827,50.96692,158.76779,6.659899e-06 1895,0.8081401,9.214486,12.663793,84.423386,6.371166e-08 1895,1.6526904,12.508483,59.511436,128.19444,4.717899e-08 1895,456.88803,9.548565,40.530365,79.75336,3.8830148e-08 1895,425.8931,6.6003404,43.268463,48.738697,2.2421092e-09 1895,494.26584,1.7632797,47.162323,46.417458,1.5875331e-09 1896,139.20984,223.5441,29.912827,56.031464,0.09298167 1896,218.43448,225.59373,31.188812,65.722336,0.091504775 1896,313.8101,231.81831,21.032959,45.661972,0.004408203 1896,497.4232,216.72238,25.47165,51.51245,0.003441219 1896,2.5728288,369.5153,47.27979,108.49695,0.0008381222 1896,1.6634628,198.7214,18.343431,71.13809,0.00046945483 1896,616.05334,19.540215,23.093323,67.031044,0.00025457624 1896,55.88845,248.44316,77.71673,187.39012,0.00020871316 1896,611.5241,186.0647,27.622559,132.07724,0.000204706 1896,618.20703,395.23712,20.939636,78.48007,0.00019760116 1896,616.32056,144.7919,22.82611,80.529465,0.00018663456 1896,617.8598,342.16327,21.286865,79.5853,0.00010441628 1896,617.67004,276.02393,21.476624,83.91843,8.8259694e-05 1896,0.77163416,141.4452,18.641548,84.14809,5.9109327e-05 1896,617.05115,70.36201,22.09552,77.704765,5.8431942e-05 1896,2.0728712,181.35555,32.66257,163.38951,5.841266e-05 1896,93.98651,224.93443,83.23453,184.64345,4.1222884e-05 1896,5.100716,158.11284,76.425705,273.36035,3.1076095e-05 1896,601.4672,261.7136,37.679443,194.18344,2.5972284e-05 1896,570.47485,27.315163,68.658936,127.77961,2.4765253e-05 1896,609.92004,440.4909,29.226624,63.36905,2.3176135e-05 1896,1.2716081,249.61906,18.30945,80.82106,1.6428326e-05 1896,1.608069,308.81665,19.732004,155.41992,1.5374137e-05 1896,1.443659,408.4071,20.250336,100.29193,1.1139181e-05 1896,1.1674145,105.773506,18.395782,67.35891,9.352778e-06 1896,573.03406,362.02484,66.11261,127.33188,6.0396787e-06 1896,2.6926286,53.256588,59.85205,230.95483,1.5086259e-06 1896,16.825125,420.9308,77.60575,79.61401,7.3684316e-07 1896,450.96945,9.365459,83.79312,70.62422,9.3585705e-08 1896,1.0970825,19.26601,18.505308,126.30409,5.3638725e-08 1897,195.99498,226.22371,24.848679,50.64055,0.033288468 1897,126.493416,229.82196,25.874763,53.47873,0.0302217 1897,437.03558,202.87498,28.945312,50.39189,0.02756636 1897,114.29797,231.0437,43.001053,116.57605,0.008452047 1897,311.5877,231.7934,22.06668,45.01999,0.006516834 1897,529.1605,204.53264,31.455688,74.191635,0.005200074 1897,622.2746,231.58266,16.87207,48.05101,0.004554365 1897,210.1336,225.37878,31.575562,65.93732,0.004099387 1897,611.96027,180.64563,27.186401,119.05322,0.00020214636 1897,618.03925,387.64853,21.107422,80.022095,0.00018363229 1897,0.95047367,222.4485,18.264753,89.464005,0.00014511547 1897,610.5168,17.629974,28.629883,109.21022,0.0001281303 1897,0.6001221,212.46654,13.506818,48.394516,0.000110317764 1897,617.7716,340.8203,21.375061,80.71393,0.000104286606 1897,617.6345,260.2523,21.512146,85.537384,9.436681e-05 1897,617.1995,80.85022,21.947144,81.53883,8.268309e-05 1897,121.95422,274.01172,23.308533,50.128693,7.3856776e-05 1897,2.3050766,183.3368,32.568512,193.25667,7.1551076e-05 1897,0.8771395,154.65347,18.018408,75.059235,6.772633e-05 1897,572.18225,154.3288,66.795654,219.8458,6.32153e-05 1897,94.67014,231.88428,40.179085,145.5252,5.674495e-05 1897,82.295135,203.32996,104.5117,214.73987,4.2659558e-05 1897,1.3545858,351.12805,17.311848,130.78519,3.670399e-05 1897,609.89087,440.89166,29.255798,62.963562,2.3048999e-05 1897,5.7299123,350.37625,80.65139,138.53317,2.2314814e-05 1897,601.41284,264.61188,37.733826,198.50528,1.9567029e-05 1897,3.4550295,87.03482,58.09926,239.32999,1.9126523e-05 1897,3.1549318,422.47977,53.581295,74.00357,9.31111e-06 1897,1.0174894,437.99188,22.269451,64.89682,7.040497e-06 1897,585.64886,391.6533,53.497803,102.28479,6.2910863e-06 1897,443.1322,12.680104,124.40442,109.18021,4.664673e-06 1897,586.6188,32.361897,52.527893,171.34467,3.0287274e-06 1897,2.8042545,21.187748,78.81553,136.79135,9.232835e-07 1897,1.2663087,70.96803,18.674223,124.68465,9.046591e-07 1897,477.65018,7.4681416,38.226776,89.01533,8.144405e-07 1897,1.419686,18.236382,28.86928,120.2075,5.5862966e-08 1897,452.45496,6.1570134,46.0589,54.446896,3.5240124e-08 1897,0.60072064,7.803825,11.24983,89.11386,1.8760602e-08 1897,494.03064,7.7208548,47.325195,51.165005,1.22205455e-08 1897,0.9043685,0.47439453,31.738678,48.398834,3.103671e-09 1898,519.038,202.15593,23.167847,49.0748,4.4244504 1898,75.40717,231.96654,46.876045,182.58583,0.03106875 1898,127.177826,217.25363,26.190903,54.678894,0.027786056 1898,312.54095,229.16904,22.954773,47.159546,0.0042668944 1898,124.67742,205.07793,42.473473,117.04979,0.002775657 1898,556.0191,112.198425,26.073975,57.959503,0.0017681835 1898,67.89963,219.72633,22.663918,45.954727,0.00090870756 1898,617.4823,409.95773,21.664368,76.79321,0.00031546204 1898,617.54034,69.71823,21.606323,83.036896,0.00019357054 1898,53.94125,220.2563,22.367321,45.58748,0.00014672443 1898,617.5348,321.76486,21.611877,79.02985,0.00013625839 1898,612.1523,102.7919,26.994385,134.1143,0.00012946187 1898,1.0478541,140.94925,18.19057,77.88365,0.00010697106 1898,0.97003746,201.7966,18.41385,72.2359,9.281019e-05 1898,617.93365,260.14822,21.213013,79.60544,7.86079e-05 1898,617.7568,198.38235,21.389893,81.28583,5.586195e-05 1898,0.90178794,248.04326,20.53418,105.57033,4.5093493e-05 1898,1.7747754,143.49202,33.259907,172.0092,3.4470842e-05 1898,4.0410566,224.82855,55.91071,206.5697,3.0654235e-05 1898,601.0729,275.32074,38.07379,188.45865,3.050911e-05 1898,601.8607,156.27223,37.28595,182.91127,2.0340554e-05 1898,615.3774,15.861195,23.769287,88.9229,1.9384379e-05 1898,0.98785484,385.58292,19.682909,109.574646,1.3257846e-05 1898,1.1785775,304.08582,18.040623,130.10663,1.1017807e-05 1898,584.55035,11.941498,54.395935,185.91893,5.738303e-06 1898,5.156966,355.3519,77.97623,126.58807,3.6041608e-06 1898,489.2648,126.86116,103.18576,223.76027,3.1413392e-06 1898,492.84247,16.403399,85.11957,157.89322,4.77468e-07 1898,2.1462712,13.195059,57.81692,122.7781,2.926597e-07 1898,1.187172,55.608646,19.238792,131.96165,1.196879e-07 1898,549.6755,5.631053,45.505188,48.583168,5.3550302e-08 1898,461.66193,4.667061,86.10907,82.95478,3.5232198e-08 1898,515.1274,5.6674643,48.147766,55.00553,2.1092708e-08 1898,452.2283,1.8235661,44.836975,50.140778,5.07324e-09 1898,1.4204135,0.5985938,30.771431,45.95749,1.3633075e-09 1898,496.89423,0.0,37.53894,49.165222,4.4172235e-10 1899,613.2655,234.5633,25.881165,55.525635,0.011513367 1899,609.2208,128.13297,29.925842,156.70334,0.0031016553 1899,442.80276,205.7631,26.691101,46.22403,0.0019177138 1899,617.638,100.9575,21.508667,75.047646,0.0013114882 1899,571.25824,62.123295,65.91174,200.74048,0.0008229147 1899,539.0475,203.96939,23.04419,46.454758,0.0004351838 1899,110.38917,211.99188,57.343407,160.88388,0.0004303526 1899,120.45423,225.97021,25.426735,52.56076,0.00033189397 1899,579.24304,8.910814,59.490112,124.38435,0.0002795538 1899,618.0617,383.4009,21.08496,79.04614,0.00018336471 1899,578.29346,205.29323,25.50647,55.483994,0.00017548152 1899,617.78625,282.22922,21.360413,83.71234,0.00012266175 1899,0.7055062,152.30647,13.8742695,52.226593,4.3266682e-05 1899,616.68634,35.59049,22.460327,91.97659,4.089163e-05 1899,1.1769491,240.08246,18.449282,76.541534,3.4745506e-05 1899,602.9131,300.72208,36.23358,183.05054,3.234621e-05 1899,609.7503,438.66278,29.396362,64.23755,3.1997555e-05 1899,2.0280461,238.70303,30.89989,164.68225,2.2133096e-05 1899,0.76283365,98.660324,13.736756,48.718735,1.671175e-05 1899,0.7550122,314.93698,17.967651,127.938354,1.379358e-05 1899,1.1934425,167.90843,20.576075,103.14998,9.247643e-06 1899,1.1186613,87.833176,20.764044,131.67676,7.825562e-06 1899,0.53610516,413.24707,13.55027,46.589508,6.8507225e-06 1899,1.0203938,383.48398,27.639929,111.50354,2.414307e-06 1899,3.4860206,94.86576,57.504635,234.29474,1.4767232e-06 1899,5.5533237,354.82578,78.00706,127.84158,1.4701582e-06 1899,513.48474,19.040546,85.62384,151.00235,1.3931741e-06 1899,447.98584,426.6407,71.67633,72.323975,3.173678e-07 1899,560.17395,3.8662908,67.46149,48.521133,2.662309e-07 1899,2.03035,12.256002,57.72701,118.10578,2.455157e-07 1899,0.6183305,7.1694336,8.929083,88.44652,2.2636986e-08 1899,464.85245,14.864473,79.351654,218.02866,2.0439739e-08 1899,528.839,7.143612,50.250732,54.202755,1.0484875e-08 1899,505.78387,3.5522754,38.63495,93.82343,9.818885e-09 1899,472.142,0.0,46.61429,53.080334,7.866041e-10 1900,601.1973,102.54262,32.393005,70.22861,0.06498921 1900,463.38278,210.25508,25.71286,48.165085,0.02307891 1900,119.9074,226.37378,25.747704,52.985718,0.0007541081 1900,615.46686,50.253445,23.67981,91.14572,0.0006505179 1900,443.41138,208.04074,25.668518,50.790558,0.00043373866 1900,562.96716,197.56712,39.935425,76.52641,0.00031790705 1900,586.84265,48.02537,51.358704,227.96361,0.00031265203 1900,615.87305,183.19699,23.27362,75.69229,0.00026717375 1900,112.09598,228.80255,57.32695,156.45627,0.00021975405 1900,623.4818,36.952503,15.664856,45.594616,0.00019703773 1900,1.6910913,206.61389,18.185078,73.25043,0.00016833715 1900,604.0057,4.793812,35.14099,65.399994,7.939082e-05 1900,617.571,267.71063,21.575684,80.851105,7.044594e-05 1900,1.2584571,245.10052,20.617432,101.63782,6.473096e-05 1900,1.9446924,163.78659,33.5471,166.90616,5.4319207e-05 1900,612.9504,352.38495,26.19629,109.80615,4.944368e-05 1900,0.97544354,175.78336,13.751581,53.425873,4.3274194e-05 1900,547.21014,148.08228,80.51758,179.6929,3.0914787e-05 1900,3.8384702,208.30753,54.680653,214.28564,2.875336e-05 1900,602.33386,194.9982,36.812805,189.72162,2.7170896e-05 1900,609.9874,439.8833,29.15924,63.614197,1.850549e-05 1900,0.7416423,297.17178,18.658028,131.00235,1.0797452e-05 1900,0.9658,109.8967,19.040133,82.74107,1.0760528e-05 1900,0.75775313,398.03763,18.102785,71.83145,8.3493405e-06 1900,585.76,391.84378,53.386658,99.856445,6.0802263e-06 1900,2.3056805,55.25586,51.212597,204.53067,1.979654e-06 1900,1.2819914,352.96356,32.594692,134.5441,1.920211e-06 1900,1.9538559,11.944785,57.61841,119.884315,3.5701956e-07 1900,1.0807699,20.540112,18.502193,130.9341,8.673755e-08 1900,0.61142457,6.7990465,9.391266,88.72853,3.6352528e-08 1900,471.87198,16.788914,81.895355,209.99226,9.64305e-09 1900,1.2109619,0.92790693,30.738218,45.458206,6.5460797e-09 1900,572.00354,3.2756152,45.379517,55.58673,4.1370583e-09 1900,516.0844,3.2608237,86.90167,77.92729,2.1928628e-09 1900,478.96173,1.4688314,43.55664,49.096596,3.8362066e-10 1900,537.86426,0.0,38.109375,45.897385,1.0492166e-10 1900,502.15204,0.0,49.16388,58.72422,1.42359406e-11 1901,600.49976,214.7895,23.322083,49.078995,33.504112 1901,613.4822,209.97243,21.86676,46.36064,0.08775899 1901,498.1511,205.49539,22.995392,49.210785,0.020281456 1901,592.44354,192.2282,42.216675,97.09419,0.005006302 1901,103.028496,238.93391,41.461723,163.27745,0.004099731 1901,114.546906,225.0716,24.827744,52.207123,0.0024023692 1901,615.3393,220.67732,23.807373,104.59175,0.000663862 1901,117.88795,218.45142,72.16013,174.95178,0.000644233 1901,610.6437,107.27933,28.50299,159.23892,0.00039689158 1901,463.42276,203.23933,25.51532,53.879257,0.00021703192 1901,617.61633,312.42764,21.530334,87.298676,0.00014746623 1901,618.1625,393.5536,20.984192,80.61163,0.00013154652 1901,1.2808635,221.16022,18.30899,78.48926,8.784864e-05 1901,581.806,10.83933,57.063354,123.01949,7.587109e-05 1901,616.8265,67.825966,22.32019,87.021095,6.241094e-05 1901,601.08606,248.93805,38.060608,194.84354,5.6674155e-05 1901,0.8677767,272.67657,18.040554,73.849945,5.0763843e-05 1901,2.0027297,158.10674,34.559383,171.02693,3.595726e-05 1901,609.3317,440.45755,29.814941,63.256622,2.8139892e-05 1901,551.7052,112.92454,87.44147,245.04568,2.3195904e-05 1901,1.3742359,161.58896,18.457178,77.95798,2.269997e-05 1901,3.9028354,210.51463,55.59952,203.98058,1.831454e-05 1901,379.94385,428.0439,78.3006,71.313385,1.2627679e-05 1901,0.95681643,399.81268,17.895578,69.91025,1.1625233e-05 1901,608.1049,1.548724,31.017517,62.05534,9.904388e-06 1901,572.41144,354.52002,66.73523,132.84995,8.415724e-06 1901,1.0115299,324.72794,27.342463,137.67395,6.659709e-06 1901,181.23131,429.1308,77.64354,67.3638,6.1405735e-06 1901,1.1928687,98.67942,18.573114,74.80494,6.0116136e-06 1901,0.78133386,439.92157,22.018236,62.254272,4.5075262e-06 1901,262.60205,430.5262,72.3425,69.96527,1.6718249e-06 1901,322.84726,429.16028,77.93912,68.78516,1.4471142e-06 1901,5.5613966,357.18817,77.98909,124.70325,1.3149437e-06 1901,112.719154,425.8295,74.847206,72.08078,5.8518685e-07 1901,3.2300944,34.803905,79.26218,265.03036,5.6992286e-07 1901,2.7279656,425.79398,53.264736,71.22928,5.416183e-07 1901,467.85214,425.6524,71.98917,72.567505,5.1677733e-07 1901,1.446906,62.403595,30.73372,159.03522,1.4158795e-07 1901,1.8895704,11.832312,58.63824,119.651726,8.9657135e-08 1901,477.2148,25.913008,127.6929,235.18532,5.3958882e-08 1901,484.067,0.0,45.937286,53.82452,5.5498557e-09 1901,577.246,3.2639682,43.95996,57.338806,3.4713354e-09 1901,498.36682,17.607176,45.63733,157.40163,1.4805199e-09 1901,1.479782,2.4148958,29.672293,62.78118,1.475575e-09 1901,537.56616,1.0211784,47.267273,59.675587,4.3162898e-10 1902,182.13531,225.2917,25.592148,50.686783,0.058548253 1902,117.54284,225.07297,35.47106,67.09424,0.009356202 1902,105.05772,211.8609,76.452995,178.82257,0.0006798629 1902,617.8896,242.86128,21.25708,81.84822,0.00024278616 1902,607.8297,25.467878,31.316956,142.06186,0.00023526838 1902,0.9717688,212.287,13.293276,47.702286,0.00020349839 1902,618.03644,388.20914,21.11023,79.98108,0.00015341635 1902,2.3538167,186.92639,36.106113,105.16098,0.00012542133 1902,612.3436,107.294586,26.80304,114.47716,0.000105659194 1902,617.83655,336.58527,21.31012,77.61163,9.441758e-05 1902,3.4433188,141.84724,58.482857,215.58464,8.601371e-05 1902,601.7694,142.88,37.37726,172.5752,7.776948e-05 1902,1.2365048,154.9843,18.12069,79.99509,7.5978394e-05 1902,1.2446606,220.8332,19.977972,130.80971,7.525956e-05 1902,609.0714,441.50897,30.075256,65.09418,5.8783502e-05 1902,602.24,246.5772,36.906677,203.43364,4.4977613e-05 1902,0.9076937,299.64532,20.214346,107.52869,2.4087007e-05 1902,0.7067147,371.80682,18.741922,121.98422,8.18173e-06 1902,585.55786,393.6033,53.588806,104.0376,7.498718e-06 1902,606.31726,0.0,32.829407,67.893814,3.8533008e-06 1902,1.174349,104.830185,18.56237,76.33345,3.7174484e-06 1902,5.015153,354.6263,78.410576,127.32355,2.734756e-06 1902,1.7590219,72.6299,30.10551,157.70766,2.3233224e-06 1902,372.57104,427.4422,72.48584,73.78845,5.71437e-07 1902,447.44547,425.46014,72.77896,75.67819,4.89401e-07 1902,2.5566342,426.66412,52.98286,71.6315,4.8213525e-07 1902,331.51993,425.96564,73.30307,75.48999,3.1167727e-07 1902,2.4335597,14.32306,57.986767,117.68103,3.0897644e-07 1902,494.96637,12.018126,136.10706,233.23625,1.3435431e-07 1902,501.0185,9.764349,44.800964,159.27087,1.2669561e-07 1902,538.0979,25.295542,45.2323,142.1683,8.8774996e-08 1902,1.2311662,20.937983,17.414326,123.20821,5.5976233e-08 1902,577.054,2.6568782,47.63263,58.22087,4.767325e-08 1902,0.6514335,8.905404,8.398081,81.68501,3.4179752e-08 1902,1.3828695,0.40023112,31.096989,46.15546,3.6363745e-09 1902,504.10965,0.0,45.86032,57.030354,1.3556918e-09 1902,550.4289,0.85680014,46.684143,56.522797,7.980074e-10 1903,593.2758,211.57521,21.772034,46.870163,0.070683 1903,188.71152,217.28026,25.572449,52.81682,0.049023744 1903,27.740473,210.26392,25.328741,51.355927,0.04657273 1903,622.54016,208.35774,16.606506,48.530167,0.038928106 1903,105.114235,217.21933,34.004295,64.81207,0.005422299 1903,94.14172,220.09721,23.045662,45.788284,0.00436269 1903,612.23175,173.97832,26.914917,110.33983,0.0014626627 1903,563.72565,217.85423,24.219604,48.429886,0.0011225278 1903,65.88227,211.39297,46.3629,145.7333,0.0007674357 1903,614.6321,55.150562,24.514587,92.47131,0.0007126463 1903,87.618164,209.01561,78.378265,178.81487,0.00054594426 1903,199.64923,230.10652,25.349258,54.9886,0.00033983713 1903,1.0728052,146.27986,18.52518,81.42308,0.0001855725 1903,618.14984,380.66864,20.996826,81.48407,0.00016091931 1903,587.98157,50.015182,50.374817,223.28679,0.00014834074 1903,0.7371371,295.76608,13.228566,47.94113,0.00013240716 1903,617.85547,335.167,21.291199,78.9386,0.00012999648 1903,617.6129,252.20396,21.533752,86.65605,0.0001065962 1903,1.0585352,244.08516,18.952152,129.25813,7.988998e-05 1903,3.885342,159.08778,57.470234,235.07762,7.4093325e-05 1903,1.1328378,215.00389,18.081472,73.949814,5.175915e-05 1903,587.7091,218.93668,51.43756,249.86057,4.9917755e-05 1903,609.90625,440.08267,29.240417,63.936554,2.561101e-05 1903,571.007,5.881984,68.13965,50.622307,2.53066e-05 1903,1.1263102,316.93808,18.167465,128.79968,2.0754875e-05 1903,0.93895674,103.82051,13.916273,51.062805,1.9590405e-05 1903,491.09167,224.75703,25.025757,50.712204,1.08173645e-05 1903,3.9809637,335.1889,56.693817,142.32715,5.950536e-06 1903,585.8516,391.30786,53.295044,103.356384,5.921122e-06 1903,0.76461834,420.342,16.859507,81.21692,4.9880064e-06 1903,2.254759,51.19156,36.75765,194.4415,1.4704077e-06 1903,506.51273,13.199037,131.15768,215.66992,9.067148e-07 1903,550.01215,19.17127,46.30603,136.83156,5.546253e-07 1903,513.8938,11.622871,45.228394,148.02374,1.4290244e-07 1903,1.678138,11.738177,58.28008,126.98134,1.0565804e-07 1903,1.3916049,3.1709082,30.41428,63.67039,4.386991e-09 1903,516.89374,0.0,48.16272,61.91091,4.1535492e-10 1904,106.13967,220.40532,30.803276,57.55928,8.53955 1904,186.70197,219.61526,26.874298,52.494904,0.15849681 1904,88.51028,216.46024,26.675133,53.14737,0.09081456 1904,622.63654,206.9247,16.510132,59.849472,0.039449584 1904,90.65417,206.43126,47.66532,131.33861,0.0117293205 1904,620.9059,104.24315,18.240784,54.44261,0.008346292 1904,321.55444,211.25409,33.628876,65.252594,0.005018989 1904,611.73065,144.02245,27.416016,125.61751,0.002379636 1904,110.18887,217.87709,76.0141,191.00432,0.0020572096 1904,1.1700675,251.33456,17.836021,74.27771,0.0008528677 1904,616.9976,230.70433,22.149048,82.10954,0.0006756062 1904,438.91068,207.1485,28.28012,62.706055,0.00051872974 1904,0.72570556,104.262215,19.725786,88.34322,0.00045168394 1904,602.7396,218.5231,36.407043,187.98926,0.00022931531 1904,618.10284,394.94528,21.043823,78.90817,0.00018074378 1904,617.90424,314.95593,21.242432,78.05591,0.00012149044 1904,608.54364,13.832943,30.603027,137.01265,0.00011759637 1904,3.542596,168.09966,56.289764,223.52486,0.00010623207 1904,1.0067424,293.2895,17.996979,78.524414,6.609628e-05 1904,584.9862,54.232136,53.66815,235.96693,5.7381272e-05 1904,1.2622608,89.46486,34.505943,213.4091,4.13149e-05 1904,609.87604,441.15396,29.27063,62.966156,2.4507048e-05 1904,1.6201497,280.33005,31.31991,169.1182,2.1135987e-05 1904,602.8008,329.12048,36.345886,157.75098,1.757544e-05 1904,0.869926,378.62213,19.085863,116.34946,9.260598e-06 1904,4.718311,352.98926,77.82098,129.03262,4.6957657e-06 1904,2.5733514,424.1584,52.787,73.632416,9.3177874e-07 1904,542.5064,19.09321,66.02081,127.955315,2.8717767e-07 1904,0.59707195,8.341458,58.06779,141.13057,1.5317018e-07 1904,1.3961182,0.707902,30.791336,46.42626,1.3065995e-08 1904,519.4009,0.87826174,43.93109,53.76591,2.0038158e-09 1904,548.0922,1.0969206,49.341797,53.632442,3.510297e-10 1905,623.1607,244.28584,15.985962,48.81633,0.12769823 1905,188.97006,220.64844,25.14479,50.312347,0.0072592893 1905,622.4658,208.25644,16.680847,52.49225,0.00666832 1905,109.9323,214.4983,47.619965,166.19673,0.004245116 1905,611.9531,223.59532,27.193542,132.52357,0.0017146299 1905,1.5463241,222.05725,18.882017,132.34192,0.00048037496 1905,621.7372,80.42748,17.409485,53.036278,0.0004198707 1905,89.098,234.60878,44.527443,179.82109,0.00033106256 1905,604.13666,122.00266,34.434265,177.70966,0.00030945486 1905,617.5637,376.73178,21.582947,83.02887,0.00026686612 1905,4.580298,210.99815,54.40985,215.15526,0.00024054784 1905,617.43726,119.79987,21.709412,76.055305,0.00022063473 1905,589.0439,221.35037,50.079773,247.63611,0.00019596773 1905,0.5957308,153.16966,13.841739,52.66815,0.00015877312 1905,613.402,421.109,25.74469,81.18271,0.00013293895 1905,617.8199,321.38776,21.326782,79.42999,0.00010666515 1905,132.22548,224.51456,80.32004,179.23471,0.00010075488 1905,1.2938322,135.96182,19.6716,135.50397,5.065088e-05 1905,607.99976,8.239668,31.146912,114.93025,4.3598873e-05 1905,1.0659823,308.20142,18.295612,131.79901,2.1865768e-05 1905,0.7315967,87.60726,19.43163,82.133965,9.1274305e-06 1905,5.5407877,351.34988,76.85855,131.87372,6.9063767e-06 1905,0.7756909,420.4613,16.76833,80.91174,5.205944e-06 1905,582.9137,13.158686,56.23297,225.52054,4.216778e-06 1905,2.6114225,424.58633,52.66484,72.89752,1.2993763e-06 1905,3.008965,34.441628,79.57213,263.70428,6.348122e-07 1905,1.0770589,11.227038,56.70322,131.16084,3.1548117e-07 1905,548.5782,10.962096,68.17462,130.7453,1.9289281e-07 1905,0.6572103,5.1289973,9.755314,90.15916,4.4826407e-08 1905,1.5988803,2.1661606,37.753876,47.404358,3.0600805e-08 1905,345.9808,1.7987354,42.949615,45.04963,4.2927453e-09 1905,530.1338,2.3724024,70.02661,58.39907,2.8704155e-09 1906,119.46021,227.23076,25.636086,54.149765,0.3448682 1906,184.92116,214.41347,24.449188,56.798843,0.33187222 1906,113.287415,215.42035,41.693237,115.394226,0.016381016 1906,622.1879,242.22585,16.95874,49.498,0.009798384 1906,201.19295,210.9452,24.793564,51.617783,0.0066866516 1906,617.34766,191.65775,21.799011,86.40143,0.00486986 1906,133.69733,222.02795,24.964355,52.497314,0.0028111695 1906,573.99756,238.99779,25.919739,45.68141,0.0015973352 1906,250.74272,199.28783,22.773026,55.75067,0.0012661021 1906,67.526665,210.80168,78.83393,199.47234,0.0009872785 1906,0.44614583,216.67674,13.580039,51.01558,0.0006440659 1906,617.82947,378.66583,21.3172,83.23901,0.0003875918 1906,617.9844,110.64589,21.162292,79.32182,0.00025910584 1906,588.7085,110.80813,49.974792,215.767,0.00025066792 1906,617.91284,256.8428,21.233826,87.193085,0.00024097445 1906,1.08146,159.50037,18.00209,72.27527,0.00013338076 1906,2.250752,165.34773,34.014973,171.1122,0.00013084336 1906,1.2573316,238.0109,19.067223,131.55472,0.000107785374 1906,4.291875,232.27974,58.287697,207.27007,8.918586e-05 1906,607.6842,10.810274,31.462463,120.934525,6.9632384e-05 1906,612.74146,301.62442,26.405212,114.33276,5.79979e-05 1906,0.5376774,246.94498,13.858833,53.77353,3.7454338e-05 1906,609.866,438.7295,29.28064,64.76453,3.2896103e-05 1906,1.3541464,306.14218,18.003601,143.39825,2.6503089e-05 1906,588.2812,240.64677,50.86548,236.75267,2.2205993e-05 1906,1.0373633,419.7399,16.820974,79.776794,9.563988e-06 1906,3.326621,394.89487,54.485157,94.446075,4.437102e-06 1906,1.115726,44.817116,32.801304,194.66058,4.6799724e-07 1906,1.9050261,10.646811,56.3951,126.9083,4.5221717e-07 1906,1.3903109,1.0057813,30.711,46.6758,1.7541053e-08 1906,0.7396004,1.9402865,13.151175,86.07915,1.4591748e-08 1906,553.7411,5.277248,69.28021,49.68262,5.299276e-09 1906,535.0598,2.1824236,41.591125,53.212364,5.998453e-10 1907,193.69693,214.77205,24.234406,46.44484,0.031728067 1907,622.632,77.69426,16.514648,52.843536,0.024438886 1907,105.028656,222.58797,43.25911,139.0125,0.012830283 1907,121.22064,223.2686,25.834595,53.72975,0.007974796 1907,74.48869,213.45946,24.530197,60.387802,0.007611248 1907,54.548782,232.52547,75.048584,211.2462,0.003837057 1907,399.08344,188.2789,28.449646,61.9003,0.0033007436 1907,622.1485,210.39847,16.998169,50.447693,0.0027746672 1907,1.3649325,246.89662,18.955324,83.95796,0.0022432958 1907,300.1954,239.29745,23.927063,45.09198,0.0021466352 1907,390.44617,252.44958,21.857117,47.554443,0.0016011051 1907,3.4731739,196.52612,57.16382,222.16049,0.00087578135 1907,250.26245,203.20334,23.151978,51.773438,0.0007264074 1907,617.617,226.03058,21.529663,82.64221,0.0005351286 1907,0.65025634,166.93231,13.780668,52.4178,0.00048716692 1907,0.9837525,197.25574,18.368256,73.3259,0.0004302952 1907,612.3757,87.06614,26.770996,131.34268,0.00040753293 1907,609.33496,17.761185,29.687256,115.62041,0.0002728741 1907,618.11304,392.2827,21.03363,81.60266,0.00020805103 1907,80.40379,187.66365,117.14598,219.11989,0.00018208617 1907,1.0184082,136.60751,29.63293,159.0116,9.2973365e-05 1907,617.7686,271.53732,21.378052,80.23056,8.2672996e-05 1907,571.8263,128.97545,67.32037,243.3697,5.128979e-05 1907,613.1533,324.557,25.993347,105.85388,4.7947055e-05 1907,2.103457,292.75793,30.33948,180.98032,4.1589487e-05 1907,609.6937,440.90427,29.452942,63.263336,2.9082645e-05 1907,360.19165,184.85315,77.4783,169.17957,2.4148463e-05 1907,5.8381314,344.40005,80.63011,143.26685,1.6170638e-05 1907,0.84118086,419.68625,17.114937,79.32333,1.5970252e-05 1907,587.9942,269.62207,51.152466,207.90732,1.2174267e-05 1907,3.0819793,423.02386,53.444626,72.178894,8.605903e-06 1907,573.17706,6.5028434,65.969604,46.12168,8.153237e-06 1907,0.8049813,62.241825,18.629745,139.88306,7.6062037e-07 1907,2.1248634,14.97056,53.95537,124.29255,2.2705319e-07 1907,1.6121843,3.077391,36.767715,45.54176,7.250715e-09 1907,0.5623698,2.5272658,10.083988,99.5772,7.0795383e-09 1907,471.9624,6.5938706,42.209778,52.837444,3.4161551e-09 1907,555.5914,2.1739829,41.216675,54.251244,1.0547753e-09 1907,314.21033,2.437736,42.355286,52.96147,6.195998e-10 1908,191.29726,217.89981,24.724625,61.18271,0.47470102 1908,110.3581,251.4672,30.095375,75.52426,0.054635435 1908,122.53504,224.84639,35.917778,87.515945,0.045466032 1908,530.7639,200.60255,27.171143,57.76152,0.02280659 1908,97.21604,222.58586,52.269356,166.11836,0.016157167 1908,205.62888,219.65517,25.70256,57.580734,0.00514691 1908,619.56067,204.07726,19.585999,59.025772,0.0038107755 1908,388.70587,233.58165,22.888031,54.044937,0.0036282109 1908,608.14233,89.91845,30.981934,143.27628,0.0025350095 1908,0.76092774,144.39735,18.942348,76.849655,0.0016650405 1908,258.53912,201.48436,21.052795,45.63591,0.0014217236 1908,548.3625,191.59747,24.53418,56.272873,0.0011305722 1908,401.81406,222.67714,23.468231,51.482254,0.0005925126 1908,1.7973258,167.09036,29.084232,157.58331,0.00040733707 1908,54.17474,166.71347,132.88997,278.28857,0.0003707649 1908,6.6311526,340.63248,79.16493,142.81848,0.0003175259 1908,617.2498,262.17685,21.89685,82.05054,0.00031089128 1908,78.26127,206.4278,45.804115,129.98056,0.00025449446 1908,599.93677,156.48839,39.041016,175.24684,0.00020017958 1908,119.984535,154.82341,80.47106,186.76216,0.00013201957 1908,1.292697,345.1304,19.254154,82.86975,0.00011558918 1908,1.60875,359.036,33.463055,129.21234,9.125896e-05 1908,604.17957,1.6121811,34.832703,121.55467,8.111023e-05 1908,613.02673,324.12674,26.119934,136.49026,6.2143314e-05 1908,613.38776,2.3794467,25.758911,48.46208,4.465723e-05 1908,614.13574,415.46295,25.010925,87.27811,2.7915155e-05 1908,1.1393343,419.13803,17.39347,80.37155,1.7635715e-05 1908,587.88104,230.59135,51.265625,218.8607,1.4576207e-05 1908,572.6783,362.8331,66.46838,123.933044,6.293211e-06 1908,1.134773,262.7734,22.873323,124.057526,6.149364e-06 1908,568.25543,3.2854216,65.99426,52.874603,2.611144e-07 1908,349.51743,1.6894044,47.024933,51.431873,1.5421729e-07 1908,1.4645134,5.187624,36.497932,87.52855,1.4773619e-07 1908,395.408,0.8906104,41.510345,53.889137,1.1989992e-07 1908,512.6399,2.1153224,43.75421,56.931606,8.7093476e-08 1908,526.3236,2.1819727,84.88013,84.20767,3.9306606e-08 1908,451.0726,0.9463021,43.799225,49.648994,3.6973695e-08 1908,0.6432292,35.11888,19.008825,159.64342,3.286947e-08 1908,0.7177914,2.9613216,10.415719,91.134605,1.38824685e-08 1909,409.6941,240.58958,22.661102,47.896408,0.027967235 1909,493.3988,252.53853,32.38379,75.10683,0.014116227 1909,185.51985,211.1123,34.76198,67.329834,0.0069950568 1909,2.9105763,248.4167,37.030403,223.79149,0.0056871288 1909,619.12756,168.62814,20.019104,71.38463,0.004202524 1909,109.685135,198.85052,42.484497,85.92557,0.0038146954 1909,75.85214,262.57803,45.486702,156.21307,0.0031873023 1909,401.12396,220.27557,24.090332,48.48999,0.00284014 1909,1.9369109,198.08247,36.978825,111.664474,0.0016850672 1909,332.18735,198.5467,24.292786,50.158813,0.0013103944 1909,1.728864,252.72673,18.296005,80.31056,0.0011767864 1909,621.7748,396.0659,17.371887,56.24005,0.0011223629 1909,600.1287,77.56394,39.017944,215.07358,0.0009648114 1909,1.5507797,359.7513,19.676336,96.158844,0.00087209174 1909,621.9534,102.96066,17.193237,50.18901,0.0004491967 1909,258.58484,197.42006,21.644867,48.842087,0.0004032997 1909,14.9443655,300.2133,81.34074,184.97058,0.00039071482 1909,438.6106,235.12386,41.514038,96.21294,0.00023380089 1909,507.03033,198.8406,20.953247,45.951996,0.0002307474 1909,608.9389,2.5606575,30.207764,138.82623,0.00020679651 1909,0.44991294,165.53975,14.316728,55.084137,0.00016371567 1909,1.1599569,309.75586,19.071709,91.87915,0.00016048667 1909,612.3721,325.78574,26.774597,143.00574,0.00015524033 1909,481.6502,174.81622,78.44763,180.71686,0.00013851743 1909,610.18353,437.79132,28.963135,65.119415,0.00013143303 1909,616.5875,226.57741,22.559143,85.26903,0.00011670371 1909,88.019875,148.21753,83.02784,198.95999,0.00010983623 1909,587.04663,187.88464,52.100037,235.71033,6.0583592e-05 1909,1.2075049,412.49557,18.805529,89.53891,5.2923304e-05 1909,3.7645054,90.48046,56.259666,246.1098,4.27808e-05 1909,1.1720223,132.65604,20.218893,143.04568,4.1265444e-05 1909,1.7879868,410.79327,61.574554,86.19336,3.6817368e-05 1909,585.85406,396.4116,53.292603,95.22937,2.5488256e-05 1909,0.82169026,49.162106,20.97963,125.00444,5.9781314e-07 1909,1.3399056,6.9480925,35.252655,79.5614,1.263833e-07 1909,0.6182727,4.372448,9.482841,87.705444,5.256856e-08 1909,0.7637346,1.0329509,20.491627,45.317345,2.2613381e-08 1909,399.64728,2.8897526,43.2359,47.761055,6.3961716e-09 1910,579.9049,194.9936,56.304382,188.4981,0.026517745 1910,328.4234,217.3472,21.217957,46.30905,0.011893633 1910,252.69975,188.78995,21.725632,51.296173,0.010698841 1910,379.45197,220.54243,30.546326,72.19313,0.006884515 1910,39.64414,262.7873,77.64656,196.55429,0.006600668 1910,621.944,159.0128,17.202698,48.619568,0.0037949136 1910,607.78986,158.32893,31.31781,146.796,0.0035466 1910,621.3462,209.48102,17.800476,51.445953,0.003021688 1910,618.1192,267.72864,21.027466,70.64114,0.002511287 1910,176.92215,205.89264,35.15425,69.23016,0.0024062532 1910,570.97626,345.91882,65.95026,137.65994,0.0012095348 1910,331.98492,196.11821,24.034058,48.206223,0.0011917257 1910,1.1483667,338.32767,19.486145,84.870605,0.00078662735 1910,608.60254,269.49945,30.544128,162.56937,0.0007485365 1910,3.6679363,187.18282,55.652687,253.52611,0.0005373793 1910,469.16885,212.81606,71.01688,154.16063,0.00051163824 1910,619.45703,51.01369,19.689636,64.27908,0.00044836555 1910,617.158,372.764,21.988647,84.04382,0.00042617854 1910,616.605,110.698364,22.541687,75.376526,0.00039111788 1910,395.5986,214.90442,35.18579,78.35065,0.00038383628 1910,498.36542,265.49017,34.818848,85.07791,0.00023161076 1910,1.1946371,181.79259,20.713799,130.7527,0.0001936307 1910,613.7465,422.5113,25.400146,79.72131,0.000105252686 1910,605.05457,1.0987468,34.092102,65.191536,0.00010119873 1910,598.2816,236.49683,27.273071,75.21225,9.2773014e-05 1910,1.272338,350.41486,32.77209,140.39297,8.200296e-05 1910,580.58044,0.515306,58.566223,137.16545,7.8626945e-05 1910,0.59853274,131.69029,19.066616,86.13599,3.674136e-05 1910,369.16,425.31876,73.83157,78.807495,2.0198591e-05 1910,322.64423,424.64276,73.09259,75.73865,1.986641e-05 1910,0.58194256,286.98343,18.844803,81.99176,1.9182165e-05 1910,263.9863,426.10617,77.48758,74.59488,1.4424975e-05 1910,5.3400164,377.24976,86.010254,115.2876,1.2837071e-05 1910,194.71608,423.7585,72.25572,76.08426,1.1906616e-05 1910,1.8277556,80.73317,34.203255,205.77406,1.040403e-05 1910,121.596146,422.43564,76.16521,77.27777,9.971165e-06 1910,77.71954,419.52167,76.69798,80.48053,4.414992e-06 1910,0.96818525,20.755085,17.418602,140.50899,7.195025e-07 1910,2.6123374,15.55058,57.790028,119.37048,4.10858e-07 1910,0.5673055,9.675202,8.4493685,83.75833,2.9435932e-07 1910,1.2727019,8.048155,29.082666,56.37081,7.292911e-08 1910,435.20206,1.3972038,43.901123,51.496502,1.1571851e-09 1911,562.99396,326.55063,46.744507,102.50018,0.106254876 1911,610.9056,163.18855,28.241089,116.05287,0.04084348 1911,369.28043,224.02591,23.558167,55.26837,0.019948702 1911,622.20166,211.26277,16.945007,52.609818,0.017497843 1911,9.6396,338.41736,77.56693,148.88129,0.016284367 1911,113.10928,233.2417,22.836288,51.241486,0.01553675 1911,34.271233,214.81648,33.91465,68.09157,0.011962115 1911,439.61646,246.77849,34.47336,80.0479,0.0053318893 1911,1.2442286,231.01389,13.243026,51.67102,0.002265342 1911,335.8943,204.48108,40.290833,113.33545,0.0020118773 1911,620.9077,292.84177,18.238953,59.227264,0.0019217414 1911,579.2599,324.18784,57.112244,157.88239,0.0018732264 1911,1.1577588,331.40387,18.94609,89.34955,0.0008561584 1911,327.90845,209.30077,24.003265,50.122635,0.0008324061 1911,585.5432,148.02202,51.97998,227.69826,0.00075114955 1911,1.7099594,274.5035,35.857674,200.64572,0.000665392 1911,615.6362,388.6738,23.510437,81.38397,0.0006015427 1911,1.3674895,196.67294,20.880314,129.83447,0.00040988403 1911,427.3486,223.16193,77.78708,174.87106,0.00032177658 1911,610.5177,240.70993,28.628967,157.93991,0.00029687618 1911,3.4294484,148.81705,60.963596,285.19113,0.00019816996 1911,5.42291,419.93185,54.194077,73.758514,0.0001657166 1911,615.46075,40.16939,23.685913,87.09094,0.00012066231 1911,608.7218,433.87418,30.424866,70.16287,0.00012045065 1911,0.6835995,142.83467,19.335098,94.566864,5.521335e-05 1911,593.8995,6.8488708,45.192017,82.18251,4.6264882e-05 1911,624.40894,365.11435,14.737732,46.49182,3.5647066e-05 1911,1.0707967,419.37952,16.733719,79.46744,1.8306437e-05 1911,581.96216,10.499127,57.18451,212.24864,1.0868364e-05 1911,1.6240772,61.529274,32.616,210.11108,6.2092367e-06 1911,446.44122,3.786883,45.485657,51.377666,6.8791337e-07 1911,1.5836687,9.350726,35.77313,76.3213,4.7042946e-08 1911,421.1333,1.8810335,46.601807,49.772194,4.3470124e-08 1912,331.91934,219.59326,34.237915,63.66577,0.91365093 1912,94.78212,234.79938,32.904846,76.52786,0.034485564 1912,413.28424,216.60385,24.375153,56.568176,0.026830602 1912,440.9355,262.1526,30.224579,71.1116,0.021587655 1912,620.71716,191.63678,18.429504,53.890884,0.0074016787 1912,390.2538,208.67128,36.11499,92.49132,0.0042749136 1912,351.18237,208.39247,24.008606,50.011642,0.003385538 1912,492.5487,223.92055,21.63794,47.417465,0.0026345628 1912,166.71877,227.47542,32.5336,69.31618,0.0024763397 1912,359.52768,216.67444,39.777985,95.09042,0.0018146218 1912,610.6522,108.20226,28.494446,144.8122,0.0018104422 1912,621.16644,99.65882,17.980225,52.25344,0.00062005065 1912,0.79925984,219.35464,13.537493,51.155273,0.0005829246 1912,617.1939,288.27853,21.952759,82.1134,0.00046417757 1912,610.8599,185.41911,28.286743,151.6273,0.00029029598 1912,346.4802,190.2829,85.68817,156.66675,0.0002651479 1912,460.96164,214.59763,72.54031,164.92087,0.0002448019 1912,69.98492,166.05688,76.738625,168.36395,0.00017971525 1912,419.52576,196.19887,74.88748,158.99037,0.00014729095 1912,479.74628,231.70241,21.25531,45.334793,0.0001386869 1912,1.1110368,103.45982,18.687927,76.21541,0.00011495433 1912,617.561,333.95535,21.585693,84.54761,0.00010241221 1912,1.0988729,193.85483,19.750381,125.103424,8.926397e-05 1912,582.7686,0.0,56.37805,266.50333,8.1402985e-05 1912,612.36444,376.78604,26.782227,121.02042,7.5891636e-05 1912,585.29144,239.71298,53.75531,236.4191,3.8131006e-05 1912,609.6247,20.206818,29.521973,143.92226,3.2628774e-05 1912,1.8647348,87.76573,33.760284,194.1414,2.1976231e-05 1912,0.43677002,348.97903,18.518475,76.57703,1.845723e-05 1912,0.47028646,388.6317,27.39813,113.56961,1.6690408e-05 1912,3.0770688,154.63083,57.845615,207.28189,1.4997572e-05 1912,0.89938235,261.0698,32.004913,188.95969,1.1241675e-05 1912,1.934922,13.989245,58.645576,121.38576,1.1505317e-06 1912,4.437608,396.2372,84.987114,99.059845,4.937232e-07 1912,1.2231348,6.597383,30.125124,58.97416,1.9798255e-08 1913,86.59516,223.40834,30.05989,55.413742,12.228452 1913,476.681,269.74463,37.54709,91.56015,0.15468185 1913,336.76834,218.86157,32.979156,74.30759,0.043387048 1913,160.18959,223.73605,32.78859,70.57355,0.018713195 1913,77.355255,204.62297,60.226852,118.52495,0.0034930792 1913,91.65581,247.67445,26.734589,66.551346,0.003058063 1913,490.6429,277.55557,21.795563,45.059143,0.0017212688 1913,513.2668,223.45364,32.142273,72.308685,0.0010446436 1913,621.25433,214.9183,17.892334,56.329773,0.00088022754 1913,471.1479,222.43855,74.85913,158.90428,0.0008472345 1913,442.33496,216.52953,27.964478,56.985184,0.0006705405 1913,621.5718,119.80455,17.57489,52.803925,0.0005957525 1913,611.67523,138.43315,27.471436,142.3191,0.0004716456 1913,615.5711,52.302917,23.575562,89.34236,0.00030942302 1913,1.5847706,190.4393,27.64374,138.40784,0.00021276978 1913,621.8064,248.09831,17.340271,53.18419,0.00020276595 1913,609.9603,441.25632,29.18634,63.358337,9.0989386e-05 1913,611.85785,237.17029,27.288818,136.52884,6.09137e-05 1913,583.45447,22.974005,55.6922,216.38297,6.0778613e-05 1913,1.1615877,90.55801,18.87471,81.714714,5.6465855e-05 1913,612.76074,324.75906,26.385925,139.23605,5.1464707e-05 1913,1.101272,162.37349,18.881868,93.962234,3.3143613e-05 1913,2.5881543,190.22272,58.25246,223.95908,2.69356e-05 1913,392.27713,102.39803,119.95041,244.88031,2.4659108e-05 1913,0.5987232,271.03613,20.15341,137.63614,2.0470508e-05 1913,585.5839,396.51157,53.562744,98.83954,1.570653e-05 1913,597.16974,9.061143,41.97693,81.092064,1.3783258e-05 1913,0.6356372,361.87497,19.720203,132.2366,5.445874e-06 1913,44.077965,40.34022,85.98235,243.6317,1.051655e-06 1913,3.116592,398.6701,56.500263,95.22861,9.330628e-07 1913,1.946167,26.380781,59.668118,260.54333,5.1829653e-07 1913,395.64713,0.32490396,45.745117,51.38509,1.1348866e-07 1913,1.4575146,8.826934,37.419167,80.04902,6.8691655e-08 1913,531.30023,0.0,45.77716,46.97324,2.0987445e-08 1914,595.7598,271.3871,41.924316,156.0776,0.40111393 1914,353.55338,199.74164,33.957306,72.57123,0.39174208 1914,609.0809,251.07378,30.065796,85.86339,0.121487506 1914,161.61732,240.04001,25.017258,57.042603,0.10469756 1914,479.32672,300.58023,27.136353,61.40097,0.09045272 1914,76.84996,224.37227,26.209885,55.393356,0.059825946 1914,613.1328,320.77872,21.823853,50.57968,0.03893954 1914,469.93808,233.21527,27.243011,52.554413,0.02498192 1914,583.0313,193.50887,54.94336,160.80339,0.020908335 1914,466.59836,232.02177,51.563812,134.22762,0.013225797 1914,622.49176,299.39365,16.654907,54.81662,0.004087403 1914,623.36426,338.3391,15.78241,49.950073,0.0026945134 1914,622.45605,234.64636,16.690613,52.399902,0.002683776 1914,1.3893352,206.40013,18.015036,75.99165,0.0023473643 1914,614.6726,374.01398,24.47406,86.78635,0.0023361268 1914,619.9371,188.76385,19.209595,65.739044,0.0011855683 1914,580.28046,230.62813,24.611877,52.942947,0.0009543389 1914,22.756075,203.46289,38.715538,61.308716,0.00074994843 1914,451.6863,252.9268,36.17572,83.70891,0.00062002166 1914,441.3498,172.46936,30.552612,62.793198,0.00054545247 1914,56.3662,144.17781,76.09297,182.66518,0.00046514274 1914,610.1494,95.04896,28.997253,180.01035,0.0002335297 1914,615.98944,56.200462,23.157227,84.13853,0.00014088539 1914,1.3484359,195.6313,33.737114,167.28557,9.002011e-05 1914,608.8426,434.6169,30.304077,68.85483,8.438892e-05 1914,423.8448,101.573456,79.4422,211.77618,5.2842453e-05 1914,1.7158464,100.844864,29.624607,166.3,3.120427e-05 1914,0.47253582,301.2427,21.084799,106.01074,9.887382e-06 1914,0.64664066,391.4802,19.341354,107.880066,4.555634e-06 1914,595.10547,0.95435876,44.0412,87.099785,3.4688653e-06 1914,2.754406,314.77115,57.80203,165.67282,8.26427e-07 1914,2.733369,427.20807,53.47196,72.22839,3.6721195e-07 1914,1.0508912,28.240847,18.559929,146.93648,1.07038375e-07 1914,385.05536,0.0,48.934692,151.6312,7.610829e-08 1914,1.6034408,6.3361263,37.858643,85.4423,6.782484e-08 1914,0.98965496,0.67943686,20.883272,45.245857,1.544704e-08 1914,393.18683,0.15909669,45.169067,54.84713,1.22152555e-08 1915,62.5159,224.22818,29.29242,74.651825,0.68683594 1915,491.3973,204.2292,43.09549,118.27751,0.47963434 1915,379.543,199.63263,25.121307,52.62436,0.104329154 1915,146.02708,218.20045,33.694748,74.142166,0.04415868 1915,403.1666,211.0575,38.334778,93.90042,0.02598956 1915,519.4926,209.3978,37.822388,116.12851,0.018442072 1915,566.7564,199.46428,34.796326,75.879105,0.017603202 1915,588.7556,223.42574,47.858276,220.06386,0.01503538 1915,472.66205,206.92676,37.46936,71.65585,0.014597416 1915,420.94705,214.50026,24.285095,50.04738,0.007272786 1915,620.01697,392.23477,19.1297,52.169098,0.0042314064 1915,526.4093,180.81267,71.87366,181.84123,0.0042152074 1915,459.74484,177.1817,105.56711,186.75049,0.0024883226 1915,76.0422,220.23006,38.84433,87.919754,0.0023570864 1915,609.59656,157.6765,29.55011,142.2671,0.0022075002 1915,621.75995,254.91957,17.386719,60.09114,0.0019962175 1915,621.0257,129.78052,18.120972,53.51758,0.00092302455 1915,612.54016,326.21628,26.606506,105.51929,0.0008905454 1915,0.9176823,215.84898,17.95997,68.48564,0.00064258854 1915,556.6708,159.5141,28.554932,58.640076,0.000607202 1915,609.96136,76.66279,29.185303,144.00623,0.00058520446 1915,397.476,198.5577,73.91055,182.88109,0.00032691553 1915,583.628,379.4274,55.216064,110.82251,0.00030431367 1915,0.8251839,90.77387,20.52804,151.44724,0.00016460929 1915,582.717,44.53547,56.429688,257.80096,9.238173e-05 1915,3.3000848,116.27651,58.838345,215.62854,8.753311e-05 1915,0.4825391,258.36838,18.202957,76.43704,8.0330334e-05 1915,43.784374,200.71565,84.75824,150.76817,8.001425e-05 1915,606.6139,0.91871095,32.532776,63.079075,4.5372504e-05 1915,1.6911117,209.14471,32.86148,165.56656,3.7746868e-05 1915,615.9187,36.96097,23.227966,91.67685,1.6406282e-05 1915,0.5762581,315.44495,19.974825,134.4531,1.1451748e-05 1915,0.710516,422.23914,17.338501,79.76654,3.0363278e-06 1915,2.725451,275.582,57.584457,197.44461,1.99207e-06 1915,1.6850407,14.754811,57.061836,117.79504,1.9328283e-07 1915,0.92952925,7.379203,10.562584,86.60122,4.166185e-08 1915,1.2830111,3.8118556,31.35806,67.30377,6.0856706e-09 1916,135.3545,228.56902,34.35341,73.6057,0.09497169 1916,535.1703,208.23357,45.73938,163.03087,0.032001227 1916,549.01404,207.07527,28.557983,62.57634,0.012693999 1916,620.17847,45.546673,18.9682,54.241833,0.009625117 1916,397.35886,195.6245,31.146362,61.19905,0.008310308 1916,571.9939,207.51047,26.122131,58.554047,0.007576194 1916,575.1477,191.10005,60.416565,131.96132,0.0068317642 1916,383.02032,200.72102,23.665741,50.76271,0.00601238 1916,52.096058,224.84714,26.071728,56.35074,0.004152045 1916,603.1885,224.18713,28.45813,68.22214,0.002716646 1916,584.10565,209.90152,30.106201,66.756256,0.0025368936 1916,540.4352,282.2712,29.611267,62.62848,0.0020488237 1916,620.91895,84.4794,18.227722,54.774277,0.00149569 1916,517.70166,208.94597,24.30371,50.811142,0.0014937884 1916,620.98145,209.48466,18.165222,59.11595,0.0014029563 1916,621.1104,261.04422,18.036255,58.404266,0.0011557041 1916,515.0688,267.83875,49.66266,139.98209,0.0011129968 1916,500.25485,217.27162,110.84958,212.68233,0.0008844567 1916,617.502,377.2498,21.644653,76.76471,0.0008500729 1916,1.192605,104.423134,18.587181,79.76273,0.00057813735 1916,610.12854,67.02897,29.018127,159.92584,0.00042290558 1916,621.316,133.98785,17.830688,53.419006,0.00040938015 1916,33.254868,164.46637,80.37328,170.20197,0.00036684712 1916,581.9677,15.496892,57.178955,103.53527,0.00029915926 1916,584.91895,286.3009,53.59784,189.97708,0.00023673786 1916,3.3039453,92.25464,60.881733,223.72159,0.00021455683 1916,59.87671,231.70694,33.262177,80.25552,0.00016731955 1916,0.7098682,268.99692,18.307455,71.3562,0.00015513421 1916,611.10516,247.6558,28.041504,152.39528,0.00015151799 1916,1.1235482,141.60771,20.337288,113.633514,9.759474e-05 1916,515.29114,46.256836,43.48822,85.37303,8.1803075e-05 1916,597.599,407.17984,41.54767,90.928406,5.2239575e-05 1916,1.249917,187.55965,28.192207,143.84569,4.8874357e-05 1916,1.4378264,58.064728,18.861742,74.65764,4.702712e-05 1916,0.5731307,299.00778,20.145239,137.88208,3.7735463e-05 1916,2.6808805,261.39236,57.729744,206.58463,2.4732022e-05 1916,0.70021325,386.39334,19.33608,111.282715,9.360006e-06 1916,1.7241162,28.20241,35.69378,153.8767,2.7872265e-06 1916,497.52203,1.3955795,83.76166,153.12007,1.4796356e-06 1916,2.727352,427.9652,53.2808,71.14166,5.520206e-07 1916,325.7931,5.2133317,60.09198,48.354576,1.3109464e-07 1916,1.2839632,9.560489,25.633495,78.45071,1.2539309e-07 1916,521.33307,2.3775294,47.648132,57.47244,6.033595e-08 1917,109.273415,229.78053,28.711143,65.145584,0.9026777 1917,416.5064,226.41623,36.25464,84.845795,0.3151427 1917,21.519506,216.12192,26.978178,64.564575,0.12135005 1917,595.30035,343.06937,21.101318,51.026123,0.072340734 1917,580.6572,285.96887,57.07489,167.81879,0.05091395 1917,539.48834,227.86032,23.2359,52.19095,0.019332852 1917,607.1335,336.10065,20.912964,58.957794,0.013151623 1917,3.628519,173.78923,44.040253,142.4973,0.013068729 1917,607.49304,122.726776,31.653625,131.7661,0.01277654 1917,619.672,119.9524,19.47467,57.35125,0.006573533 1917,510.62277,223.13985,23.932281,52.856644,0.0056189685 1917,1.464707,221.33958,18.516804,87.158615,0.004060584 1917,468.53485,266.3382,38.84604,100.33826,0.003606419 1917,617.10364,315.2432,22.04303,72.88608,0.0019423702 1917,31.323315,234.61678,30.128704,65.952255,0.0011708782 1917,403.80637,192.62924,33.49286,71.95389,0.0007706516 1917,622.5141,361.7533,16.632568,50.35498,0.00046253199 1917,0.825197,153.1757,20.014978,85.54849,0.0003718694 1917,616.3021,237.33415,22.844543,81.27608,0.0003504031 1917,609.80383,358.12646,29.342834,139.93573,0.00031098496 1917,452.82135,228.21948,77.70972,182.11606,0.0002122455 1917,0.7865666,262.21277,19.622982,145.3045,9.17004e-05 1917,0.45695233,101.82941,19.48084,90.73689,6.756943e-05 1917,568.71796,32.57561,69.618225,282.6196,4.979523e-05 1917,607.01294,0.0,32.133728,116.73503,4.918995e-05 1917,0.6306519,344.3825,19.722551,134.6802,1.8404746e-05 1917,2.9987907,271.78528,57.380142,208.08646,1.4952272e-05 1917,0.8630957,441.28906,21.934195,62.370483,5.4874563e-06 1917,2.9118443,428.44016,53.502846,70.631165,1.512305e-06 1917,1.7335482,25.624857,62.16463,208.71173,2.9794845e-07 1917,1.0701668,19.09644,19.840715,122.39102,2.5367908e-07 1917,579.01526,0.0,46.2818,60.094482,3.7429725e-08 1917,0.64954835,0.610625,20.92713,45.496815,1.9294829e-08 1917,367.6043,0.0,44.548553,48.77217,1.5639118e-11 1918,87.22449,244.74545,27.169266,63.093994,0.38648432 1918,453.10352,202.09308,44.14096,143.02386,0.031846862 1918,621.6663,186.56331,17.480347,49.00087,0.023005685 1918,1.5160352,208.51863,25.579424,88.22545,0.012830161 1918,449.58856,173.60669,38.043213,92.17093,0.012110654 1918,608.63275,199.48193,30.513916,126.160645,0.012079169 1918,471.07745,258.39722,24.158386,48.770905,0.008343053 1918,1.0310689,248.42699,11.737069,45.390305,0.0074351183 1918,620.57416,373.1704,18.57251,59.459747,0.0058422713 1918,624.04425,239.18413,15.102417,47.210556,0.00520721 1918,619.71014,46.082794,19.436523,56.441208,0.004925561 1918,431.15356,188.38716,39.79297,113.45567,0.0045603537 1918,621.9243,268.41583,17.222351,55.290527,0.0036682263 1918,2.5488298,162.69432,57.884,196.42232,0.0016651644 1918,571.2198,204.32712,65.11157,173.46066,0.0015989143 1918,5.2765512,259.861,24.57972,57.41873,0.0014205391 1918,449.84424,222.0654,23.93396,57.259674,0.0010509539 1918,0.65606123,147.58347,19.009352,84.40842,0.0006119276 1918,609.34076,67.0885,29.805908,166.91885,0.00039600272 1918,600.90674,0.0,38.23993,69.966576,0.00032643514 1918,596.62354,277.2886,41.9588,198.74527,0.00024888615 1918,1.2378451,253.69818,19.696619,148.3873,0.00010931458 1918,0.9247363,95.51723,18.296974,79.69174,6.9205846e-05 1918,609.6367,439.49908,29.509949,64.95175,3.926327e-05 1918,0.6355656,367.40018,19.22632,129.26477,2.5641904e-05 1918,2.9241164,331.61676,57.758553,153.82907,4.8142792e-06 1918,1.1265903,49.604076,36.22546,227.17482,2.2292093e-06 1918,1.131167,14.521944,21.280046,106.91422,1.3735901e-07 1918,522.12195,1.4341471,44.760986,52.062645,1.0099392e-08 1918,433.10803,0.6029395,45.865265,56.54064,5.9306665e-12 1919,508.4321,194.25476,43.927887,88.84805,10.722353 1919,504.65573,188.17133,24.143524,61.826157,0.88815826 1919,59.76581,226.2906,29.064423,67.71959,0.84968525 1919,68.54146,218.30205,42.70616,111.44707,0.46774694 1919,608.5109,233.22105,30.635742,164.8893,0.04424887 1919,569.8456,221.27985,27.730347,65.16116,0.021247244 1919,518.4349,191.15253,22.44226,50.332092,0.012423568 1919,570.46313,217.54892,65.68274,246.80057,0.010520481 1919,620.9913,332.06097,18.155396,60.910492,0.008784645 1919,532.59985,224.72906,27.060242,56.31958,0.007435025 1919,621.8143,280.75714,17.332397,53.262177,0.005352715 1919,495.6797,178.91219,89.361694,151.43346,0.0027940194 1919,70.1377,209.5128,27.369156,56.340256,0.0023625414 1919,552.5595,180.78966,35.26361,84.40614,0.0021716028 1919,530.8197,177.71841,36.238464,73.967575,0.0017443071 1919,394.64807,223.43997,22.494385,48.756897,0.001699944 1919,272.78323,190.16289,21.667725,49.765717,0.0016926063 1919,0.84744465,102.39556,19.197445,77.36242,0.0012170579 1919,1.2427311,164.95407,28.031534,157.20401,0.0010421411 1919,457.54153,225.78647,23.301239,45.249237,0.0010043973 1919,1.2393075,255.51901,18.594841,81.00653,0.00090416404 1919,621.9873,199.64365,17.159363,49.05246,0.00083073904 1919,0.5643433,147.17772,19.250309,85.88286,0.00078859075 1919,611.03143,348.40768,28.115234,153.00296,0.00034970505 1919,610.54846,127.55752,28.598206,142.32874,0.0002811124 1919,616.3618,69.17812,22.784851,85.742775,0.0001576058 1919,569.9332,416.97516,68.12897,80.52792,0.0001253527 1919,3.0375602,194.21672,57.017754,208.53572,9.291345e-05 1919,0.6045565,302.1124,18.668617,79.0387,5.4588207e-05 1919,1.2296582,290.35574,33.437748,188.77359,2.5308194e-05 1919,582.7653,32.72483,56.381348,294.50955,2.1609003e-05 1919,0.54968184,365.76627,18.498056,74.52609,1.713595e-05 1919,0.703763,421.92487,16.733364,79.92807,1.4032394e-05 1919,595.3193,1.7054265,43.827393,86.03555,1.14123795e-05 1919,2.957417,398.89612,56.274536,95.093414,2.3430277e-06 1919,1.6004883,31.40336,62.66358,238.44319,1.0915311e-06 1919,0.5849768,7.8786755,10.333353,92.61293,2.8521999e-08 1919,1.1807797,4.9100847,37.42586,91.24697,1.8190396e-09 1920,47.18451,230.95529,40.692764,93.846344,0.02362885 1920,75.46879,230.2636,35.797493,74.256454,0.0180335 1920,422.41257,219.61485,22.037537,45.011154,0.016694559 1920,622.91766,180.5913,16.229004,52.927017,0.008943945 1920,268.1776,207.78458,22.541016,46.514496,0.008063931 1920,621.7827,209.43846,17.363953,58.32054,0.006575488 1920,609.48914,205.21858,29.657532,156.85893,0.0061969003 1920,0.34540528,148.94206,13.782031,47.571854,0.001895065 1920,543.4072,203.65015,36.13855,90.89926,0.0009952838 1920,18.5608,211.07568,87.619095,152.73041,0.0008852297 1920,0.95852786,187.28754,20.136086,134.8714,0.0008344805 1920,572.4498,185.86278,66.06897,234.11964,0.0007203869 1920,0.9825252,270.75418,18.059654,77.84088,0.00066626957 1920,612.0476,121.53672,27.09906,116.35386,0.0006070011 1920,521.8314,139.25925,74.54443,184.75894,0.000604953 1920,617.8673,396.7761,21.279358,76.86334,0.00044747276 1920,602.45715,290.35745,36.689514,165.62454,0.0003880201 1920,1.3527849,261.39212,33.30344,178.41705,0.00029218214 1920,0.54491293,326.829,14.005282,48.126556,0.00021578041 1920,623.3575,297.95218,15.789185,54.411804,0.00021365329 1920,605.1872,0.0,33.959473,68.826584,0.00020940739 1920,615.80725,38.65568,23.339417,94.366455,0.00013046383 1920,2.69771,91.07175,58.110924,239.1814,9.890509e-05 1920,609.4338,439.74268,29.71289,64.786865,4.4267174e-05 1920,349.77264,90.01599,37.03705,72.929535,4.382206e-05 1920,0.53382814,361.87262,19.395178,135.16873,2.392857e-05 1920,582.3935,0.0,56.753174,270.68204,1.105182e-05 1920,1.1498893,70.458244,19.132326,132.00061,8.221479e-06 1920,4.6210904,342.3387,78.999596,145.91052,3.589192e-06 1920,2.859904,428.93372,53.24394,70.15079,1.1722195e-06 1920,2.0152996,8.375997,60.70879,138.77338,2.1539968e-08 1920,0.6556926,6.0494566,10.358135,94.66106,1.2373516e-08 1920,1.1723063,1.8012403,30.364498,68.11573,1.6880096e-09 1920,455.41855,0.0,44.789185,51.655052,3.987867e-10 1921,475.92532,210.8946,22.423859,45.53392,1.2346259 1921,39.775574,253.32344,26.825577,60.311295,0.023237355 1921,539.4856,196.14613,34.21637,74.16493,0.014099652 1921,621.0661,204.6945,18.080566,51.416397,0.003429785 1921,613.1732,58.771328,25.97345,87.966324,0.0030620205 1921,623.86505,33.6423,15.281616,46.64014,0.0029116631 1921,610.9235,176.86958,28.223145,129.73824,0.0011040575 1921,0.81115156,95.518,18.43099,75.76653,0.0007598313 1921,391.0594,54.17345,28.910675,70.90604,0.00040466935 1921,617.2849,149.9916,21.861755,76.18576,0.00029292624 1921,1.3501189,215.78267,18.28718,72.83717,0.0002086857 1921,3.0819206,107.6209,59.113426,233.52802,0.00019707043 1921,617.12994,391.4546,22.016724,83.22348,0.00019542465 1921,617.3531,258.35822,21.79358,89.17157,0.00017438545 1921,1.179834,264.42056,18.291065,71.07532,0.00015925703 1921,1.8952849,213.7131,33.518303,163.08853,0.0001476576 1921,0.6062183,135.06584,18.516537,82.73271,0.00014033534 1921,586.7525,209.64401,52.37207,266.16568,0.00012326462 1921,606.51337,0.0,32.6333,65.14523,0.00010798333 1921,0.8766223,180.73878,13.377613,50.613403,0.00010610238 1921,617.23004,339.9039,21.916626,84.08951,9.845836e-05 1921,528.32623,158.18105,73.56677,153.16054,6.793858e-05 1921,609.2759,440.80396,29.870789,61.658356,6.766487e-05 1921,0.6136548,298.5511,19.847733,139.62299,3.156514e-05 1921,585.5674,7.750026,53.579285,299.4268,3.0752504e-05 1921,0.61955243,406.59216,18.222153,70.53519,1.5133284e-05 1921,0.46707886,386.3154,13.698248,46.35724,1.426376e-05 1921,2.582998,283.85803,57.262188,192.24896,1.421829e-05 1921,0.46016195,336.84488,13.779558,47.38214,1.2679496e-05 1921,2.1170833,13.073946,81.20269,151.28406,7.856071e-06 1921,1.1596395,45.556255,18.835505,74.52443,3.84433e-06 1921,555.38586,427.78232,82.00806,71.16217,1.8053994e-06 1921,375.3596,16.050098,45.91751,154.43007,7.15093e-07 1921,2.6467123,429.4617,53.359146,69.75775,6.095737e-07 1921,1.1854573,4.471462,37.85152,92.46732,1.5315673e-07 1922,36.226227,231.98454,31.181961,80.56355,1.5730273 1922,570.1967,190.99075,32.316345,74.12335,0.44150758 1922,51.16875,207.41658,42.62273,113.087296,0.2503993 1922,406.44836,205.45149,33.301758,72.31615,0.063917436 1922,619.26575,186.81044,19.88092,62.98256,0.023209944 1922,426.51483,217.3672,24.808502,55.020157,0.00799685 1922,392.79263,212.69566,27.058655,61.720596,0.0069992077 1922,273.75684,197.24191,21.067535,49.49872,0.0042712423 1922,592.04095,195.58392,44.873474,135.30954,0.0027696472 1922,0.54269695,87.36284,20.637829,95.06831,0.0020868669 1922,621.3847,240.8576,17.761963,54.968597,0.001789043 1922,621.0322,114.81279,18.11444,54.34346,0.0006766824 1922,15.765899,185.1141,109.66205,197.77945,0.0005769124 1922,60.88319,207.71251,25.1087,50.142807,0.0005669022 1922,0.8544491,264.66507,17.982805,77.176025,0.00048580059 1922,1.4108797,186.0374,18.018473,80.77666,0.00038166877 1922,616.61237,321.88705,22.534302,86.424774,0.00030326756 1922,1.5379866,90.42816,34.061596,219.71466,0.000299944 1922,617.5996,383.096,21.547058,84.32089,0.0002476271 1922,599.6746,251.79709,38.911926,204.73953,0.00018024357 1922,608.8465,68.332794,30.30017,155.5706,0.00014176685 1922,2.1054997,229.86526,33.500034,180.3866,0.00013353731 1922,388.39432,187.80148,76.94977,156.68909,0.00010859771 1922,609.67035,439.13455,29.476318,66.986084,6.153348e-05 1922,608.78253,0.0,30.364136,88.445854,2.4482939e-05 1922,0.41784018,326.33548,18.728498,77.69202,2.3605133e-05 1922,0.92210615,51.241985,20.466467,74.414276,1.9569528e-05 1922,1.1544743,42.16411,48.57837,146.06209,1.5052221e-05 1922,0.7037647,385.30447,18.349197,72.283875,1.1961098e-05 1922,580.37805,0.0,58.768616,276.9921,6.6702605e-06 1922,0.7077832,422.03195,17.118538,80.467865,5.4649786e-06 1922,0.63851565,18.792683,94.62839,269.86743,2.060408e-06 1922,5.008799,346.9566,79.08735,140.99841,1.2163259e-06 1922,2.6749496,428.9602,53.1929,70.25876,6.341974e-07 1922,430.70416,0.0,46.559082,47.212955,5.0612e-08 1922,582.61285,1.439655,47.049805,55.20864,5.021526e-08 1922,0.6624105,3.133291,41.15204,98.0099,2.5383331e-08 1923,428.51483,224.25453,25.048096,51.34758,1.1038321 1923,563.6057,200.64195,36.118164,78.93758,0.24330437 1923,53.277267,213.98553,38.28689,90.240265,0.058401305 1923,265.75262,193.8085,25.008514,55.47679,0.033152852 1923,620.1657,187.0934,18.980957,49.89067,0.013645271 1923,388.64584,193.37262,22.950378,50.064392,0.010048856 1923,451.03564,224.57771,33.07248,65.159225,0.0060501033 1923,400.54318,200.03717,23.256104,53.032547,0.0046852916 1923,70.868256,207.16582,26.642479,53.94673,0.0018124114 1923,610.8053,192.38277,28.34137,137.14107,0.0016289727 1923,621.9403,131.3188,17.20636,50.94313,0.000593859 1923,1.3534497,226.52023,17.75922,76.469635,0.0002975499 1923,611.4901,111.19614,27.656555,134.28444,0.00027750424 1923,33.30681,147.82263,78.00653,167.67093,0.0002717276 1923,618.0354,398.70648,21.111267,81.8891,0.00022092172 1923,550.0393,152.86513,69.75464,165.58708,0.00021373377 1923,46.3546,202.76591,26.334625,53.7437,0.0001942127 1923,388.49374,166.17474,76.43204,153.40979,0.00018752286 1923,586.833,203.71819,51.711365,231.81343,0.00010768407 1923,511.58975,247.82118,77.07181,184.62004,7.656116e-05 1923,347.78915,197.96275,22.694366,46.24408,6.918248e-05 1923,1.219734,174.40793,17.908756,79.14383,6.419923e-05 1923,1.8242253,198.74826,34.06952,164.18323,5.968974e-05 1923,0.8698723,95.29798,13.654298,50.94274,5.8818157e-05 1923,617.4443,285.24023,21.702393,85.664764,5.6551595e-05 1923,616.3193,45.75252,22.827393,84.46861,5.29979e-05 1923,0.68861413,282.87354,18.370083,76.98938,4.3898017e-05 1923,608.72906,1.835599,30.417603,56.194897,3.282988e-05 1923,4.660547,176.73798,81.40102,251.08505,3.13588e-05 1923,0.6228695,405.95224,18.3,71.14783,2.0156795e-05 1923,0.51737386,328.69235,20.964863,107.71948,1.5039078e-05 1923,572.2278,360.03714,66.918884,125.987305,1.47750425e-05 1923,1.4896232,95.8365,29.526577,167.97844,1.4673419e-05 1923,582.91864,18.393255,56.111206,253.53165,7.3258484e-06 1923,2.7657454,331.88397,57.770714,152.98447,1.7725985e-06 1923,1.2715828,15.593842,20.73967,119.25792,6.5379004e-07 1923,1.8655404,10.243685,83.020805,269.08728,3.6193765e-07 1923,456.73944,0.17590658,42.979675,50.53869,1.87882e-09 1924,466.93954,266.63855,28.298004,64.1546,0.5317973 1924,483.48215,267.77777,24.869476,52.050476,0.19226146 1924,452.8687,272.70422,21.334991,55.446198,0.08589414 1924,622.8236,186.34407,16.32306,49.41179,0.04271401 1924,436.9593,232.74767,32.836304,88.28038,0.029651405 1924,504.83423,219.46687,41.788757,126.47246,0.012134351 1924,1.9138966,206.0959,27.423882,73.877304,0.012050018 1924,423.81857,209.11903,22.145966,46.693787,0.010487117 1924,448.1135,244.23543,60.737305,129.4565,0.008762926 1924,485.51532,262.1875,42.678833,126.07263,0.0024558508 1924,612.8039,122.734116,26.342773,115.21086,0.0018171153 1924,505.19122,269.86942,21.844666,45.990845,0.0015503155 1924,0.77621585,108.1399,18.847855,80.18716,0.00096610584 1924,1.2800326,171.01292,18.267149,76.07875,0.0008340008 1924,518.4513,266.93735,21.88208,50.66623,0.0007765634 1924,0.754856,84.364716,14.262661,50.685013,0.00067244493 1924,256.41174,197.01389,24.833069,54.767014,0.00065381295 1924,2.9252913,142.40274,57.513023,200.40222,0.00064389885 1924,0.9023649,250.41753,13.816444,53.961624,0.0006238574 1924,617.7766,215.8855,21.370056,87.48181,0.00046955596 1924,413.72897,192.82195,148.15256,236.44551,0.00036564912 1924,621.1831,108.64441,17.963562,56.351242,0.00030808002 1924,617.8191,384.09796,21.327576,84.74814,0.00024296358 1924,0.65344405,250.34433,20.00598,143.76144,0.00018422041 1924,587.23065,97.4773,51.916016,210.50058,8.301612e-05 1924,616.6877,48.983047,22.458984,83.87984,7.8927755e-05 1924,609.87427,440.29266,29.2724,64.27194,5.9414622e-05 1924,612.9684,263.45392,26.178284,114.14435,4.4900815e-05 1924,587.20215,240.61656,51.78186,235.59496,3.083126e-05 1924,0.48556316,348.06476,21.00934,106.28656,1.1202033e-05 1924,596.09766,0.8911393,43.04901,86.84007,1.0765392e-05 1924,2.8123486,268.16144,57.17912,203.23035,8.211716e-06 1924,0.69401205,422.1635,16.960281,80.3913,3.6327747e-06 1924,2.6701384,429.26923,53.052246,70.149475,4.0349738e-07 1924,0.67269534,17.427443,32.83449,155.1876,3.3491835e-07 1924,0.5661756,5.5523047,9.9945755,96.34888,6.0651864e-08 1924,1.0229915,2.6128614,31.176838,64.802124,2.532872e-09 1925,601.44586,309.56714,32.320007,72.76944,0.030387303 1925,622.47876,184.33784,16.667908,47.635284,0.024719257 1925,585.13947,295.41455,51.666138,177.55984,0.012081081 1925,486.99454,223.94899,37.319733,127.70488,0.0031463122 1925,0.537627,126.641685,14.197181,46.564888,0.0012197829 1925,616.94385,196.54536,22.20282,87.41957,0.0011150982 1925,374.78705,194.73784,24.40509,48.334717,0.0009789213 1925,615.14056,331.52423,24.006104,108.38394,0.0008891181 1925,0.91435796,208.4761,17.700111,69.288086,0.00064577087 1925,1.6120785,128.26459,28.517038,136.40353,0.00039408318 1925,616.579,256.27667,22.567688,93.717804,0.0003819382 1925,621.48676,124.04643,17.659912,57.57704,0.00032113952 1925,611.7232,99.66734,27.423462,138.36017,0.00030587995 1925,599.6371,161.69217,39.071655,220.40143,0.00029331062 1925,596.56433,399.26666,42.582336,100.84625,0.00022591346 1925,0.89053065,183.8475,13.154595,47.15143,0.00022546106 1925,617.1956,70.96664,21.95105,83.85264,7.205299e-05 1925,499.91867,214.26295,77.509125,160.704,6.5788074e-05 1925,621.5357,38.99731,17.610962,52.650852,6.140117e-05 1925,1.7202312,188.78328,33.647552,171.95787,3.384389e-05 1925,4.527432,152.31535,78.95436,252.26152,2.9657915e-05 1925,0.58632815,406.1367,18.30274,70.8353,1.190798e-05 1925,0.5219247,265.41544,18.464666,75.645325,1.1027099e-05 1925,0.5727108,366.33047,18.339565,70.77225,8.406691e-06 1925,609.62384,3.3442187,29.522827,117.372765,7.3306005e-06 1925,0.5596509,325.10526,18.332195,71.17444,6.7899464e-06 1925,339.11844,73.77094,73.3934,197.17303,2.7945462e-06 1925,0.9078272,283.6928,33.691555,180.04944,2.7945086e-06 1925,584.67,25.77711,54.476685,248.2729,2.02558e-06 1925,2.8087924,395.9733,56.66018,97.824585,6.821617e-07 1925,0.9948438,21.08504,28.478668,149.67284,1.1167081e-07 1925,1.0523552,6.55792,30.132126,61.72491,1.615523e-08 1926,377.4781,198.54697,23.509827,53.42932,0.04439783 1926,80.31232,219.57439,23.202286,47.55052,0.015324644 1926,481.67615,202.65315,26.266266,47.137894,0.014664087 1926,606.1892,203.17995,32.454285,75.43373,0.01002254 1926,618.84296,315.2874,20.30371,66.04962,0.0054566218 1926,622.0817,188.23357,17.064941,45.43535,0.0045927027 1926,618.43146,366.33063,20.71521,68.35318,0.0038889295 1926,585.9676,212.08594,51.718994,230.54437,0.0025335788 1926,378.70798,226.60394,24.544128,57.55661,0.001176406 1926,621.42786,242.08678,17.718811,54.04155,0.0010503777 1926,0.734362,206.56105,13.474364,51.895798,0.0009979905 1926,44.943913,181.10178,46.232822,114.32254,0.0006264132 1926,463.62695,218.95808,23.113007,47.34929,0.00046286295 1926,446.0913,236.21568,78.81421,178.76775,0.00016262979 1926,610.74304,69.28835,28.403625,161.27289,0.00014556095 1926,613.8223,411.20184,25.32434,90.38568,0.0001376155 1926,1.055988,177.86748,19.990774,124.71434,0.000116740215 1926,615.8128,47.311275,23.333862,83.12799,0.00011256816 1926,538.6874,234.50453,72.08545,179.36809,9.6765914e-05 1926,0.6249235,60.629944,13.840158,52.200348,9.0517526e-05 1926,341.16455,124.6161,67.430115,185.27808,3.891902e-05 1926,1.7201172,79.4394,33.16182,195.40784,3.2227977e-05 1926,0.5558834,253.11789,13.776956,50.834473,3.0296174e-05 1926,584.1107,8.625626,55.03595,114.38789,2.8857914e-05 1926,0.5491968,393.48633,18.414625,71.911865,2.0387863e-05 1926,0.58733237,252.37091,19.927591,135.58304,1.6655555e-05 1926,0.6613379,144.81721,14.034596,51.25026,1.646214e-05 1926,2.6049464,144.41675,58.1006,207.61273,1.4975332e-05 1926,196.05066,91.60963,75.61203,209.56985,1.0058076e-05 1926,0.70370686,441.55252,22.0255,62.84723,9.937332e-06 1926,0.54091716,353.2983,18.38286,70.787964,5.635961e-06 1926,2.6405177,398.7502,56.69975,95.63687,1.3115548e-06 1926,1.0474122,24.642702,29.718897,121.184555,5.5188167e-07 1926,278.22934,9.502429,78.44516,64.969185,9.250492e-08 1926,0.7523706,7.0524383,20.183784,56.106808,1.0017474e-08 1927,65.87898,220.09198,22.44931,48.739105,0.0043113963 1927,618.3852,257.23068,20.761475,76.130066,0.00031451817 1927,0.74426925,132.96063,18.924555,73.26932,0.00023871685 1927,618.0935,313.3119,21.053162,84.7312,0.00020583437 1927,618.28625,194.90988,20.860413,75.96219,0.00019576974 1927,617.786,397.20505,21.360657,85.148346,0.00017612011 1927,617.14734,55.02935,21.999329,83.04929,0.000101950885 1927,617.6195,151.85652,21.52716,71.93153,7.767209e-05 1927,0.6646989,174.53622,19.814682,135.17038,6.8295805e-05 1927,0.6432963,220.45905,13.469924,49.18091,6.593869e-05 1927,603.1061,281.0918,36.04059,188.89984,5.1323845e-05 1927,2.2222266,144.36821,47.852295,173.8748,4.5949393e-05 1927,37.00463,172.6596,82.397285,160.96326,3.4451878e-05 1927,377.30118,177.16016,71.22452,164.80585,2.3007053e-05 1927,0.45892987,268.55707,13.752809,48.312042,2.2368933e-05 1927,588.4929,149.83987,50.423096,213.19107,1.963361e-05 1927,0.59936035,393.04413,18.26706,71.09656,1.4072141e-05 1927,0.5836825,262.99707,19.73786,132.29144,1.3224938e-05 1927,0.4569389,315.65173,13.772475,48.054047,1.2367882e-05 1927,595.7882,3.3169305,43.35846,83.05331,8.079179e-06 1927,574.6057,422.41846,64.540955,77.438385,6.5270137e-06 1927,2.800215,243.16467,56.954655,219.37387,5.751397e-06 1927,0.510931,352.67004,18.389935,71.4599,5.7117354e-06 1927,181.58931,103.57262,71.43999,185.96709,4.565516e-06 1927,0.832356,442.43652,21.559172,61.075897,3.7210664e-06 1927,600.54846,26.666199,38.598206,212.15544,2.7590663e-06 1927,1.2016244,59.58333,32.594624,175.28079,1.8004407e-06 1927,2.8890593,397.5166,56.689705,96.03909,7.125402e-07 1927,0.86927897,45.113457,19.530228,84.03237,5.376495e-07 1927,2.1624155,16.02657,57.533142,116.05026,1.4277684e-07 1927,423.927,4.0248847,41.517487,50.03429,6.178715e-08 1927,0.6261467,9.981839,10.209958,81.95226,3.4841527e-08 1927,273.53534,4.070189,42.70761,49.298462,3.0312904e-08 1927,284.69385,12.181009,80.55432,61.55407,2.4768623e-08 1927,0.96373373,8.87798,29.478115,53.29307,7.598902e-09 1927,450.5999,2.274927,41.827026,48.213455,2.5310658e-09 1928,613.5419,290.7406,25.604797,58.546112,0.02032951 1928,2.1753109,316.0584,33.2466,167.42728,0.013239197 1928,619.5569,414.06232,19.589783,57.092896,0.007216676 1928,0.6299719,357.64508,11.93616,48.23529,0.005883498 1928,49.62193,209.6794,40.46107,84.80669,0.0018339203 1928,598.9132,292.69293,39.917603,195.57895,0.0018304867 1928,2.4284081,228.98102,76.167274,202.0834,0.0016619058 1928,411.02573,175.37373,39.959534,143.04277,0.0011519211 1928,604.4614,431.79907,34.68524,71.16577,0.0010725937 1928,1.1712244,308.58322,14.305667,60.52896,0.0009244303 1928,603.31604,220.2748,35.830627,155.46751,0.00030865258 1928,617.21594,200.77289,21.930725,88.79797,0.00027390136 1928,616.3059,316.0961,22.84076,95.383606,0.00024574876 1928,617.9392,157.68222,21.207458,68.50362,0.00020044015 1928,1.165704,234.12407,22.205679,161.61766,0.00013014098 1928,0.8237427,416.09576,14.222049,55.570435,0.00012588328 1928,610.91113,73.66117,28.235535,141.40292,0.00012191641 1928,0.98186606,160.92433,18.161001,75.05203,0.00010853631 1928,0.5889795,203.55386,18.794924,86.345856,8.086084e-05 1928,0.83336836,258.04782,13.885883,49.52884,7.012834e-05 1928,2.458174,419.30206,52.401844,76.70291,2.9280622e-05 1928,616.2974,37.217125,22.849243,85.119286,2.3472418e-05 1928,392.8067,123.9616,109.10889,222.81699,1.535853e-05 1928,0.96535563,440.6019,22.477705,63.745514,1.1675142e-05 1928,0.81171554,66.67747,19.173553,146.07657,1.0464451e-05 1928,596.17645,6.5240464,42.970215,80.43788,8.4497415e-06 1928,173.97665,126.57602,72.21796,180.31747,6.626626e-06 1928,2.3760288,83.82243,48.65154,217.90636,6.48329e-06 1928,583.52673,4.624909,55.619934,247.03302,5.284104e-06 1928,1.6993002,17.00043,57.745193,109.76519,1.5874497e-07 1928,287.1809,10.642653,81.16727,63.59262,3.2924312e-08 1928,0.5253528,9.799033,10.65603,82.89976,3.0402248e-08 1929,587.38696,321.49515,50.41266,166.0924,0.008330771 1929,34.74637,229.75511,39.841713,63.040146,0.0072309757 1929,614.084,277.72238,23.810242,46.542145,0.004723775 1929,623.99286,418.94296,15.153809,45.82361,0.0034312245 1929,616.3785,291.41364,22.768188,88.539,0.0017106872 1929,610.8573,195.45836,28.289368,136.99513,0.001661627 1929,425.9414,231.30545,25.802734,58.327026,0.0016460852 1929,609.79114,408.51404,29.35553,102.63263,0.0012399215 1929,134.92807,224.53613,38.136276,99.14215,0.000965614 1929,617.93866,173.40115,21.208008,72.08064,0.00033966286 1929,27.389265,269.0378,83.17745,184.76898,0.00028739974 1929,615.0333,350.67474,24.113342,103.84839,0.00023975906 1929,1.0811214,322.14267,20.067047,137.14432,0.00013929103 1929,3.1081057,255.10904,47.21447,191.7814,0.00011651855 1929,0.6472217,336.69882,14.048825,57.270233,8.725515e-05 1929,507.95224,326.75256,75.2991,154.57907,7.83001e-05 1929,410.28488,203.48578,74.03815,168.64337,7.054342e-05 1929,616.8185,56.490055,22.328186,82.00691,6.107052e-05 1929,0.9579842,206.90977,18.244577,78.584946,4.4990444e-05 1929,0.90296555,145.82326,18.325098,73.06253,3.5382414e-05 1929,0.7313835,261.73495,13.535048,48.30478,3.2939613e-05 1929,4.992207,112.2314,78.8512,304.82184,3.293264e-05 1929,0.61275554,287.99707,18.634413,83.34619,2.3243647e-05 1929,1.5541749,156.78564,33.393734,192.64987,1.9394734e-05 1929,6.905596,384.92773,84.100136,103.65732,1.8020113e-05 1929,1.205586,90.33641,18.503553,73.83482,1.7199933e-05 1929,168.88922,134.4812,71.67967,184.46182,7.6686565e-06 1929,586.8162,66.04516,52.304077,257.79724,7.591916e-06 1929,595.8768,5.250843,43.269897,79.9082,6.4070236e-06 1929,1.7432846,413.79077,34.993435,84.381744,2.840682e-06 1929,1.1175652,19.033216,29.24046,122.28169,3.056932e-07 1929,398.69794,54.656715,76.088104,206.89154,1.02089004e-07 1929,0.49996012,8.108613,10.447312,86.39122,2.3511012e-08 1929,288.52747,3.6266456,40.54425,50.058567,2.2632571e-09 1930,420.34656,223.47168,34.39966,78.51761,0.029006239 1930,140.76196,227.52092,36.363647,77.405106,0.020424148 1930,1.616958,315.04575,31.951374,162.58365,0.013419575 1930,0.93013185,366.9624,17.490812,74.3624,0.0067964275 1930,621.05347,291.7402,18.0932,59.095703,0.005679526 1930,586.79486,324.3256,50.925903,166.77759,0.0041166795 1930,3.9465497,209.36134,72.15253,269.1557,0.0040154033 1930,624.79663,398.69806,14.350037,47.56726,0.003639924 1930,514.2568,211.2114,32.66046,67.37039,0.0033532456 1930,623.57806,432.1699,15.5686035,46.549225,0.002756538 1930,609.68,266.45505,29.466675,160.35852,0.0010384723 1930,610.9417,194.05734,28.204956,132.95685,0.0009159097 1930,513.1697,328.76114,44.1911,134.30365,0.0008273836 1930,405.03168,195.97334,66.752045,164.73125,0.00081999344 1930,609.8096,411.69907,29.337097,99.4476,0.00078099413 1930,619.4358,114.75781,19.710876,58.69667,0.0007429311 1930,529.1802,234.16516,24.835876,52.888275,0.0007078764 1930,1.2280307,246.76053,18.6996,80.79608,0.0006280558 1930,620.88824,230.03401,18.258423,58.536667,0.0006104808 1930,2.33958,210.4241,32.117657,84.45422,0.00048556764 1930,621.27344,341.06845,17.87323,57.66678,0.00046126946 1930,620.6101,81.55553,18.53656,53.425735,0.00043490503 1930,615.6804,359.62888,23.466248,101.903076,0.00034172277 1930,42.752296,251.04712,84.0066,191.17981,0.0003024796 1930,609.06213,73.22797,30.084534,144.15208,0.00026584952 1930,575.3529,135.73773,62.814148,295.74942,0.0002369945 1930,492.68668,278.56372,114.43979,195.47473,0.00022243455 1930,0.6522673,297.10812,14.875801,62.21277,0.00014086027 1930,1.0586165,168.43118,18.491663,76.29442,0.00010157473 1930,1.0687647,406.54944,18.001648,93.14218,5.4660097e-05 1930,0.86969405,86.65977,19.44553,82.51597,3.702208e-05 1930,595.34106,3.955804,43.805603,86.31385,2.6242773e-05 1930,2.7158465,420.36453,71.86951,75.99063,1.00952075e-05 1930,2.4321063,34.074337,82.386955,319.4952,2.4690632e-06 1930,2.0963461,16.213959,57.32302,115.6891,1.9141983e-07 1930,0.5221366,8.018727,10.159769,87.31144,3.064163e-08 1930,1.1261052,7.4762306,29.282328,56.9007,4.5997632e-09 1931,395.38422,237.22542,36.216583,85.57167,0.026119929 1931,8.772765,233.17941,31.796051,78.278076,0.014974213 1931,587.57025,311.0004,49.90149,175.01535,0.012951481 1931,521.35876,213.70168,27.685852,53.679672,0.010047169 1931,132.3444,217.53459,34.108276,75.63423,0.008468869 1931,1.0984286,239.11888,13.626464,55.3658,0.005618652 1931,6.2338414,230.79118,76.22967,250.2058,0.004513609 1931,611.52997,267.81888,27.6167,105.46585,0.0043527866 1931,624.44714,398.10986,14.699524,47.611176,0.0030808314 1931,492.9084,205.38214,31.860413,72.80466,0.0030235613 1931,623.3206,438.007,15.82605,46.82486,0.002668303 1931,612.4639,395.46234,26.68274,100.393036,0.0015035871 1931,67.11149,219.8224,22.92102,46.18306,0.0013037107 1931,621.20416,217.55435,17.942505,58.097443,0.0011402395 1931,1.9970688,234.19478,31.730757,204.13524,0.00084689434 1931,618.91046,126.83289,20.236206,58.387688,0.0008250797 1931,620.54706,339.70706,18.59961,60.773956,0.0007955704 1931,611.7453,168.32066,27.401367,138.59923,0.00075218466 1931,621.11786,89.29887,18.028809,51.57891,0.00052504754 1931,1.2846184,175.97087,20.11602,139.4746,0.0005007996 1931,1.188217,334.11407,19.570452,135.7786,0.00047726117 1931,579.90186,273.07892,34.724792,65.54077,0.00044341933 1931,386.92523,176.80461,66.653046,176.2806,0.0004185171 1931,609.161,79.98388,29.985657,139.10828,0.0004170127 1931,587.8627,143.90839,50.377808,260.3168,0.0003465352 1931,0.83174074,262.7466,18.769705,95.45221,0.00025380368 1931,47.84716,233.08449,84.406715,205.33272,0.00023420325 1931,500.86273,297.1683,76.303406,174.28842,0.00015115601 1931,2.4511979,89.304665,48.89752,215.909,9.570024e-05 1931,0.67936933,138.47644,18.952913,78.27396,9.327532e-05 1931,122.61514,182.68314,74.35019,157.78894,8.960966e-05 1931,3.1655307,374.60483,57.027737,113.02164,7.445813e-05 1931,0.80475587,415.44287,17.267256,84.16324,5.1723175e-05 1931,0.0,309.8481,11.675891,48.652283,1.869376e-05 1931,584.5514,0.0,54.595276,135.39442,8.16793e-06 1931,390.34842,60.892353,77.83942,217.30653,9.860483e-07 1931,1.2442937,18.574518,30.789547,143.7568,1.8601163e-07 1931,0.56957763,7.6003714,10.296591,83.94897,4.4616062e-08 1931,1.1937972,6.9369597,29.476294,58.30561,1.6276843e-08 1932,383.48752,236.65079,33.9693,75.42685,20.802221 1932,398.50177,233.76616,22.922424,45.210648,0.08826584 1932,587.70703,309.7917,50.176575,176.98056,0.008129389 1932,611.73175,248.23495,26.498413,54.543488,0.007093588 1932,609.6,276.1939,29.546692,76.285,0.0044576502 1932,624.2535,411.23932,14.893188,47.65985,0.0033994496 1932,623.2449,438.2272,15.901794,46.381042,0.003387437 1932,492.7031,202.15118,31.932465,69.681335,0.0029718648 1932,65.26623,228.12584,58.251015,173.15147,0.0024387343 1932,514.0742,204.9842,32.084473,70.35451,0.002225399 1932,103.40451,230.39746,77.653275,161.24796,0.001783818 1932,621.3181,210.65723,17.828552,58.673615,0.0014969626 1932,613.4552,389.23737,25.691467,99.62753,0.0014229172 1932,620.8639,70.82621,18.282776,54.36818,0.00090671575 1932,600.20624,169.62541,38.29242,213.08128,0.0008170334 1932,620.0966,344.35544,19.050049,65.134766,0.0006580767 1932,374.73685,194.4089,69.08728,155.50696,0.0006146061 1932,611.3665,126.36461,27.780151,140.459,0.00025818922 1932,0.69272053,137.48695,19.33478,83.440216,0.00025177575 1932,0.59346354,232.50383,13.803663,53.4261,0.00021554063 1932,1.2238363,154.54935,29.025885,149.02853,0.0001317028 1932,607.60925,0.0,31.537415,119.29646,9.097854e-05 1932,1.201788,251.45366,20.044481,103.91261,8.643093e-05 1932,615.366,91.157814,23.78064,90.41213,6.258724e-05 1932,203.85063,157.40854,68.18138,181.68631,5.5534798e-05 1932,4.1807113,132.97122,57.174995,225.71146,4.8016154e-05 1932,0.6867497,403.28992,18.19684,70.782684,1.9684192e-05 1932,1.7572755,285.3996,29.999533,165.3801,1.5359086e-05 1932,582.5834,0.0,56.563293,242.5824,8.711898e-06 1932,5.0698795,343.44592,79.51278,139.85028,5.2324335e-06 1932,0.754362,441.1692,22.054335,62.295776,2.451008e-06 1932,2.2540772,423.46027,53.40897,74.98239,5.014504e-07 1932,1.1001676,16.233614,31.247587,150.13408,2.0732898e-07 1932,0.5090389,7.947969,9.608721,85.328064,3.8254548e-08 1932,0.9955729,6.733656,29.569656,58.929245,1.561926e-08 1933,373.0191,227.52399,39.662903,90.111694,99.74165 1933,393.24905,218.8668,24.763245,52.0645,0.02769563 1933,140.57602,255.85292,28.914398,79.718796,0.027076684 1933,619.11926,289.7905,20.027405,67.496155,0.010251937 1933,518.3522,214.65254,25.590454,52.33934,0.009155238 1933,587.5791,313.1163,50.354248,174.55283,0.007953061 1933,127.76852,208.60344,58.99169,143.2668,0.00727133 1933,620.1813,238.04839,18.965393,61.31276,0.0040077986 1933,500.06818,204.75221,30.552002,72.57765,0.002793838 1933,618.27014,405.00323,20.876526,70.90262,0.0014191607 1933,620.6956,79.69845,18.45105,52.444557,0.0012217188 1933,599.52185,267.85883,39.624817,125.44583,0.0010234943 1933,0.91315514,252.17946,13.34468,47.370102,0.000957296 1933,624.62537,380.24634,14.521301,46.13794,0.000859998 1933,605.5152,434.71783,33.63147,76.42883,0.0005412589 1933,609.30725,75.98266,29.839417,147.28345,0.00028087926 1933,349.0328,199.29626,85.779236,163.27399,0.00025058808 1933,1.0040251,204.6199,17.88447,79.698425,0.00024947216 1933,615.49677,335.14755,23.649902,106.92819,0.00018742183 1933,508.45135,321.0693,74.25635,159.94293,0.00017176884 1933,2.202632,137.87471,32.281914,180.90276,6.657118e-05 1933,0.8373194,138.9513,18.805725,77.31424,6.316468e-05 1933,95.47916,177.86247,126.85788,243.75368,5.34046e-05 1933,1.1069767,234.69743,18.972105,129.16093,4.3303175e-05 1933,584.18616,5.7348375,54.96051,126.498985,2.7636494e-05 1933,0.6729159,365.12906,19.717794,130.49872,1.1898489e-05 1933,2.6616359,278.20264,56.300983,194.77795,5.6621e-06 1933,2.6089258,429.02792,53.680626,70.278534,5.8711646e-07 1933,1.8130567,22.11935,63.183556,245.66498,8.2525474e-08 1933,1.1159343,11.678197,28.89822,124.80894,2.975678e-08 1933,0.5180302,5.804896,9.416051,87.64432,2.3007681e-08 1933,294.41812,2.5673811,40.95871,52.085667,2.5954547e-10 1934,374.9066,225.81691,35.259064,88.95503,99.40686 1934,615.72107,131.01799,23.425598,63.05107,0.017846772 1934,0.37082845,367.1857,13.499965,46.59897,0.012959858 1934,389.19244,209.61865,23.03363,48.27484,0.0059580836 1934,178.45499,224.56761,38.873184,107.51689,0.0041469955 1934,619.9549,65.74165,19.191772,57.916725,0.0028051846 1934,0.04640625,340.33502,39.50304,163.02985,0.0025188595 1934,622.22577,297.14688,16.920898,53.016296,0.0024398577 1934,394.7927,229.88243,34.93695,74.09267,0.0023399352 1934,358.0961,224.04207,31.37439,80.7484,0.0023215532 1934,525.21893,216.31169,34.28723,68.74815,0.001650131 1934,499.4274,205.48128,31.734955,73.21904,0.0016122474 1934,622.0656,226.37418,17.081055,51.182922,0.000755169 1934,610.4223,298.35782,28.724365,145.13043,0.00074687443 1934,600.3496,66.45231,38.79706,155.85623,0.00065690547 1934,57.745003,217.51344,39.56246,111.11046,0.0005534121 1934,344.78677,211.85785,25.074005,56.31717,0.00047237208 1934,2.64188,202.27925,37.160282,103.376785,0.00042796246 1934,611.9227,151.75629,27.223938,144.40411,0.0004069566 1934,617.6523,245.35724,21.494385,76.651794,0.00036094693 1934,621.3464,346.46295,17.800293,58.907227,0.00034268483 1934,3.5394304,203.58195,74.70563,267.88214,0.0002563667 1934,1.4125521,183.61526,18.743307,81.57886,0.00023898586 1934,348.08063,200.31784,87.65509,162.00626,0.00021651549 1934,569.7939,354.3951,67.65161,131.69885,0.00018428931 1934,587.33984,194.17625,50.566162,234.1974,0.00017252601 1934,0.5481592,442.9483,30.269655,63.87494,0.0001600117 1934,1.0379883,241.16656,30.917498,189.53107,0.00013099641 1934,0.8933016,139.41731,19.036865,74.307236,8.29661e-05 1934,1.0082479,268.9265,18.485018,80.3627,6.7212684e-05 1934,1.546237,86.95806,29.688435,174.54651,5.042363e-05 1934,583.10547,4.8765235,56.0412,129.79932,3.926001e-05 1934,0.62589437,314.66492,14.510529,58.71826,2.1754116e-05 1934,35.501995,171.85313,112.76146,228.06587,1.03967295e-05 1934,600.75555,411.13556,38.391113,85.38721,1.0391021e-05 1934,0.8000488,13.346797,18.81143,126.28292,1.570647e-07 1934,305.24255,3.7950897,43.14795,48.959038,1.549128e-10 1935,375.99564,227.99243,35.907043,83.29794,99.65725 1935,615.87897,367.99323,23.2677,91.999695,0.028721642 1935,395.90057,231.60094,34.094696,70.811356,0.025559522 1935,1.6283937,269.2158,33.5595,193.27173,0.016960697 1935,503.91714,207.94029,27.287506,56.343033,0.008697109 1935,6.7326612,243.53313,37.23919,81.34001,0.0040355804 1935,0.7484977,259.4854,14.396652,54.55789,0.0033359549 1935,325.71896,212.88768,23.00241,47.984604,0.002255366 1935,598.52716,297.38297,40.237488,191.24454,0.0017121136 1935,4.2104006,182.51802,75.33917,274.65875,0.0015400654 1935,358.0486,208.90784,78.01953,132.5904,0.0014822767 1935,539.646,222.29745,33.636536,66.3186,0.0014563255 1935,0.9326359,222.08177,21.481508,145.34636,0.001369382 1935,612.7361,181.29832,26.410583,107.34801,0.0012779002 1935,621.1484,290.60898,17.998291,60.10388,0.00094550644 1935,58.20482,268.56955,64.00088,145.22818,0.0005312873 1935,0.60734296,200.99428,13.909314,53.92021,0.0004969815 1935,608.4346,432.8247,30.712097,73.81995,0.0003672724 1935,611.124,90.70567,28.022644,145.10033,0.00030142046 1935,620.137,113.31139,19.009644,59.501274,0.00024444633 1935,194.01602,215.37088,36.481796,70.262695,0.00024258714 1935,1.2110832,395.08447,19.251541,86.364746,0.00022912907 1935,610.5406,236.65367,28.60608,154.5944,0.00019817316 1935,0.99826336,135.56245,29.213474,157.72343,0.00014065864 1935,616.37067,56.753445,22.776001,86.040985,0.000113578775 1935,2.236867,381.74496,54.609673,106.64197,0.00010827104 1935,606.0326,0.53935874,33.114075,66.236725,8.818624e-05 1935,0.6217513,72.068436,19.326212,152.82219,4.3931857e-05 1935,1.0859734,451.19922,28.091484,53.55365,2.379694e-05 1935,581.3551,0.0,57.791565,258.01584,1.8864755e-05 1935,0.57186484,8.5842285,8.42064,87.30595,1.18903344e-07 1935,1.759362,11.757729,63.596123,222.00903,8.989035e-08 1935,1.722155,10.608822,35.31896,75.32187,5.4336773e-08 1935,497.0966,4.4998374,43.858917,49.094513,9.072704e-10 1936,393.29987,211.98311,43.999146,103.9189,99.727936 1936,132.82095,225.00906,27.514648,60.84796,0.3079662 1936,415.40634,211.0747,34.836365,74.209015,0.04530257 1936,104.013275,255.0269,34.78827,99.893906,0.044122368 1936,623.8535,367.77808,15.293152,45.5571,0.00786251 1936,101.8681,223.3317,72.3499,163.24588,0.007026252 1936,358.72495,220.59021,26.087341,64.255615,0.0053619924 1936,375.19635,206.03,37.53293,117.89047,0.004251257 1936,310.93704,250.79012,28.167328,53.016098,0.0030478793 1936,619.2115,49.596508,19.93518,56.793674,0.0026362317 1936,611.3646,366.4635,27.782043,128.30603,0.0022922785 1936,619.8386,116.78792,19.308044,56.409027,0.0018327226 1936,620.3682,88.84479,18.778442,52.803207,0.0012792659 1936,609.5231,78.05144,29.623596,143.28706,0.0010813691 1936,617.17377,203.92088,21.9729,77.232315,0.0009609509 1936,618.27386,258.6331,20.872803,74.86203,0.000919177 1936,591.0013,4.2817807,45.224,46.41553,0.0006344242 1936,1.015044,197.82297,18.063883,69.75708,0.00025251252 1936,601.9591,237.968,36.732666,197.5247,0.00020802366 1936,345.33786,143.65872,149.65945,245.91452,0.00015832014 1936,0.54164714,130.71347,19.211267,82.21318,0.000111859605 1936,207.7893,189.17892,41.100693,96.83618,8.711472e-05 1936,1.9376303,96.186195,33.714676,184.73822,6.701414e-05 1936,0.7623226,252.87883,18.477509,135.88597,3.928409e-05 1936,583.0037,0.0,56.142944,286.40427,2.4844974e-05 1936,0.80213624,342.27393,18.983597,128.46594,1.1035179e-05 1936,3.7626026,169.93913,56.338406,216.60713,9.691224e-06 1936,5.9437337,349.83755,78.80917,132.52411,5.3631006e-06 1936,0.6109888,420.20782,17.075987,81.587555,5.3051294e-06 1936,0.8044426,39.38233,19.437891,138.77136,8.463448e-07 1936,2.4304786,425.99747,53.773373,73.18787,4.3966537e-07 1936,2.1405323,13.165886,57.179287,120.17289,3.341297e-07 1936,387.9861,7.538921,42.232513,48.69239,1.4818886e-07 1936,302.60034,2.2802637,45.04953,51.43572,8.490154e-08 1936,0.49775472,6.660495,10.400751,89.791756,8.207214e-08 1936,362.18924,7.9682293,40.753937,46.008987,3.3501145e-08 1936,0.96839035,6.3340983,29.734905,60.108574,2.2949303e-08 1937,419.3629,215.66458,55.055573,119.59628,99.88972 1937,148.12144,221.3097,44.76819,96.29672,0.08852345 1937,449.47412,213.22638,34.89093,75.070465,0.073923565 1937,619.84406,218.0656,19.302612,58.65117,0.05720837 1937,404.37936,211.32297,33.88376,93.07614,0.046135597 1937,312.17078,249.31186,30.133026,56.01129,0.03843798 1937,615.98785,345.32913,23.158813,91.10062,0.03828014 1937,582.09924,307.49088,55.539185,152.47205,0.036735833 1937,609.5734,248.26451,28.103455,54.865067,0.006370874 1937,607.4876,221.44087,31.659058,166.73967,0.005105865 1937,375.7775,223.86896,41.698517,120.058044,0.0027360208 1937,618.7257,299.31552,20.42096,73.48685,0.0015305601 1937,351.5331,199.19376,127.189514,192.58432,0.0005217154 1937,621.0614,94.45261,18.085266,53.457535,0.00035327423 1937,611.5468,130.71786,27.599854,143.75742,0.00031490685 1937,1.0419873,230.83441,19.295612,131.64618,0.0001180564 1937,127.0268,186.03246,96.46876,193.12431,0.000110252025 1937,3.743737,156.77727,57.89648,217.20256,0.00010862764 1937,0.44979492,332.46603,19.943491,134.35742,0.00010010313 1937,595.15405,400.8374,43.992615,110.309265,6.270291e-05 1937,1.72521,161.24026,28.1772,141.46033,5.0263134e-05 1937,606.16876,1.4993718,32.977905,61.604946,4.0180952e-05 1937,0.5715129,419.78708,17.05497,82.378815,1.50199285e-05 1937,615.9788,38.282665,23.167847,86.170944,1.1460837e-05 1937,0.97409916,68.30051,19.010818,150.43025,1.039209e-05 1937,2.6379101,285.1426,57.820724,191.87354,8.860659e-06 1937,583.3059,6.883086,55.84076,285.36496,3.8994954e-06 1937,2.5774755,428.45694,53.47685,70.509,1.2378225e-06 1937,2.1830697,14.830716,56.5949,121.91722,1.0718097e-07 1937,0.74277264,6.3455114,20.22388,58.69513,1.4856746e-08 1938,476.8749,220.69865,59.790863,142.01866,99.802086 1938,415.85428,226.04808,37.16739,89.810715,0.36925548 1938,507.22058,221.78162,36.09729,90.19705,0.19965626 1938,470.73804,231.4286,25.088837,71.018234,0.054879405 1938,327.1864,209.81177,21.41098,49.684967,0.052269194 1938,182.35785,224.6679,31.218765,59.446457,0.040933076 1938,413.1283,201.3235,26.534576,51.201218,0.011672094 1938,621.74927,209.96307,17.3974,45.471252,0.011596389 1938,455.635,187.68828,116.796936,252.68819,0.008198583 1938,445.45938,193.6579,60.318085,143.03107,0.0054555032 1938,315.19562,247.34798,28.19217,56.992813,0.0036164518 1938,295.91428,252.75266,22.037018,48.160492,0.003475518 1938,395.53345,199.9762,74.1127,153.5661,0.0027460274 1938,610.561,189.83131,28.585693,116.49553,0.0012415545 1938,611.44556,101.32864,27.70111,140.88235,0.00094728445 1938,620.4551,120.25375,18.69159,55.503983,0.00075261237 1938,611.9128,379.48325,27.233887,114.79822,0.00048070675 1938,616.74,56.668232,22.406677,85.9554,0.0002826487 1938,160.80525,188.92735,68.85011,142.87556,0.00022520103 1938,586.16974,172.98987,52.128418,217.96994,0.0001831169 1938,1.0246794,253.77977,18.988533,129.80046,0.00013821367 1938,490.89325,253.35982,28.83844,83.3698,0.00010493877 1938,2.912772,148.63857,59.346836,214.9178,9.0923466e-05 1938,0.8070231,130.95253,18.632936,77.349976,5.5256645e-05 1938,0.43247235,318.7872,20.142189,145.27426,5.23431e-05 1938,1.6642855,184.76738,26.991034,146.9694,4.831647e-05 1938,1.3932716,87.897865,29.492327,169.22977,3.0892184e-05 1938,583.62134,32.13332,55.52533,248.2643,1.5740885e-05 1938,0.64701986,420.94476,16.96411,81.349945,1.4273408e-05 1938,599.2641,6.091481,39.88257,61.72202,1.1829799e-05 1938,2.58931,333.87674,58.094727,153.11197,5.3760255e-06 1938,1.0979606,17.723398,29.714624,127.72463,2.495723e-07 1938,0.5337455,6.576615,9.515514,88.17987,4.2993683e-08 1938,420.5057,0.0,44.34091,52.678192,2.1577047e-09 1939,319.25183,242.69342,27.106384,55.85965,0.21949199 1939,599.2545,265.58618,39.15143,116.750885,0.15752383 1939,433.43414,196.75917,33.530457,51.722504,0.10485072 1939,624.33636,269.68253,14.810303,46.058594,0.030982025 1939,622.8648,326.15988,16.28186,50.530243,0.0070296284 1939,525.8409,311.47003,67.003784,139.87003,0.0068380074 1939,619.1615,369.64752,19.985168,66.24609,0.006006517 1939,610.745,101.31903,28.401672,54.41249,0.0047336323 1939,620.8706,231.35347,18.276062,58.80803,0.0035992896 1939,603.5797,319.41132,35.566956,165.45004,0.002769761 1939,426.76797,202.60515,79.13724,187.08308,0.001576367 1939,610.0176,181.46548,29.12909,156.7685,0.001493794 1939,622.3321,196.47421,16.814575,47.30934,0.0013088331 1939,512.92474,260.05643,44.235107,166.25348,0.0009910706 1939,573.8923,123.062996,63.942993,277.9446,0.000758011 1939,1.3045061,177.9406,18.39462,78.696335,0.0005863631 1939,621.3021,156.52795,17.844543,54.75699,0.00046251257 1939,2.5028272,210.13316,35.33558,106.60686,0.00022124324 1939,601.8118,72.33156,37.33484,166.11978,0.00016267633 1939,3.6884897,122.0755,57.025616,217.97275,0.00014568871 1939,0.5947103,133.5449,19.071466,81.19551,0.00010921453 1939,0.5511564,309.3951,18.535276,75.68149,4.546433e-05 1939,583.5134,4.323151,55.63324,126.81868,4.2887787e-05 1939,571.8816,423.61456,67.032776,73.5365,3.491022e-05 1939,0.6120866,384.58618,18.359,74.388824,2.7674312e-05 1939,3.664318,244.47327,56.56761,211.82684,2.6040789e-05 1939,368.8835,426.33975,73.37546,70.87094,1.7254742e-05 1939,1.0574666,269.01743,18.383593,74.56818,1.4783457e-05 1939,276.92715,424.31488,72.1922,72.80545,8.83821e-06 1939,0.8023633,441.51437,22.014704,62.28427,5.1365946e-06 1939,3.026286,396.48685,56.381886,97.06067,2.5209856e-06 1939,1.3464502,52.15025,32.04588,186.81303,2.1014066e-06 1939,0.8197087,18.790236,19.19558,131.22137,1.9259245e-07 1939,1.8640105,15.481944,59.640823,115.06408,1.801594e-07 1939,0.5605017,8.698734,8.960864,83.60162,8.925991e-08 1939,1.1250927,7.41634,29.827745,55.712013,1.0601671e-08 1940,430.435,208.9012,38.569855,85.598404,0.079044536 1940,583.2716,238.40819,32.430298,65.98009,0.025454028 1940,571.26184,159.54778,64.75824,171.8087,0.0046948716 1940,607.7681,242.87318,31.10846,68.33238,0.003298101 1940,619.7892,121.16964,19.357483,58.720055,0.0031198342 1940,621.12714,224.4974,18.019531,50.994812,0.0028616504 1940,462.73553,234.53386,80.893005,200.84789,0.001901089 1940,608.7567,69.29251,30.389954,141.59474,0.0013846677 1940,518.6906,243.80173,35.28003,91.25037,0.0013442505 1940,551.8417,246.05313,22.479065,47.748413,0.0012968187 1940,620.1908,73.53965,18.955872,56.29528,0.0012211901 1940,585.21533,268.22208,52.525696,218.57544,0.0006483694 1940,610.1681,358.38873,28.978577,142.8841,0.00046444774 1940,390.71417,219.68214,39.58304,123.79973,0.00037424383 1940,2.279717,86.04658,49.77985,198.83984,0.00028676732 1940,1.0341073,88.819275,19.249216,81.38101,0.00028172327 1940,0.7276294,232.3025,18.135555,76.075485,0.0001967891 1940,617.1809,281.15787,21.96576,89.16452,0.00015673015 1940,413.9629,159.20607,104.64398,230.17815,0.00014530685 1940,0.82158774,173.00508,18.17812,78.756226,0.00012243945 1940,584.583,9.121374,54.56366,119.37257,5.0324474e-05 1940,620.4284,28.308304,18.718262,58.292404,4.0115672e-05 1940,3.4511883,217.92703,57.656185,216.83734,3.7657486e-05 1940,0.8520549,282.9737,18.307312,73.546814,3.1574204e-05 1940,0.70471114,323.84744,19.729826,134.82986,2.966162e-05 1940,323.65018,424.76242,73.94058,76.543,2.3698289e-05 1940,0.695249,420.57425,16.912832,81.7164,1.0538562e-05 1940,2.909738,396.4005,56.228714,96.61038,2.2370846e-06 1940,1.8227441,16.573029,59.0877,123.69507,3.0784057e-07 1940,0.543138,7.568594,9.06756,88.13003,5.5407096e-08 1940,1.0734701,6.8430796,30.118141,57.232468,7.72776e-09 1941,373.10242,230.77008,33.583252,82.38754,0.12458753 1941,609.97296,209.12141,28.669617,50.205368,0.055797078 1941,614.7336,369.63092,24.413086,65.30905,0.04628651 1941,394.91415,248.08769,21.580719,53.189255,0.017702645 1941,453.26047,183.43723,37.477936,70.76729,0.0120245 1941,571.3536,360.7901,66.26416,123.54236,0.005909116 1941,600.89545,141.00468,38.22223,146.54549,0.0023004182 1941,244.85368,218.74089,23.084976,52.733963,0.001877988 1941,571.62244,156.46632,66.48157,275.39868,0.0010407586 1941,620.838,156.71104,18.308655,54.306747,0.0009217596 1941,585.31067,242.6329,25.885986,60.08716,0.00070953625 1941,406.1351,230.97287,39.457214,100.00192,0.0006221528 1941,620.8584,114.941666,18.288269,55.794357,0.00055372046 1941,1.595171,102.98628,28.628963,152.22768,0.00048079845 1941,356.36142,204.77722,80.477356,161.37418,0.00042255648 1941,449.29102,237.97229,80.65369,199.62573,0.00029599442 1941,608.84686,59.00468,30.299805,160.8461,0.0002777791 1941,0.6587769,144.74252,14.463385,52.974167,0.00027395936 1941,0.9558887,94.084724,18.829224,77.13064,0.00027219005 1941,0.8619792,214.52414,17.915035,72.88046,0.00024356443 1941,617.2075,253.25821,21.939148,86.49121,0.0002328099 1941,620.6789,318.17062,18.467773,62.23117,0.00022342078 1941,608.008,442.49527,31.138672,68.127075,6.4780295e-05 1941,3.0071502,132.97086,58.12535,205.65561,5.901695e-05 1941,0.5381958,397.86377,18.489769,74.305084,5.7588277e-05 1941,0.6045817,258.13168,18.302475,74.46567,3.6799396e-05 1941,594.6737,4.2060843,44.47296,85.52926,3.6612746e-05 1941,0.59433025,304.5697,19.696012,137.51593,1.961366e-05 1941,1.3916488,222.15135,32.056465,174.39043,1.7059541e-05 1941,311.96976,392.58487,116.49097,96.82971,1.11082045e-05 1941,2.593864,302.11932,57.85296,177.33054,8.76388e-06 1941,0.75879395,440.89386,22.06479,62.258545,8.426453e-06 1941,296.79315,423.51218,71.82501,72.00424,5.607942e-06 1941,1.3586279,18.61877,29.699734,122.60736,2.3379643e-07 1941,0.5411015,8.744551,9.145769,87.25956,9.7565746e-08 1941,454.95047,0.0,43.300262,50.757343,2.7048494e-10 1942,434.43546,270.64835,53.446075,113.77771,0.063752316 1942,379.44318,256.0398,30.862762,63.55609,0.020290047 1942,480.881,194.25581,39.87863,77.50337,0.010506465 1942,415.17844,237.13725,24.046265,55.143417,0.0052941525 1942,400.5767,243.18388,24.329315,56.61348,0.004703574 1942,619.47437,77.75742,19.672302,55.35543,0.0039997953 1942,413.57086,204.03935,108.4917,221.14153,0.0023966166 1942,621.63165,237.45212,17.515015,51.049225,0.0022834223 1942,608.5428,80.36299,30.603882,118.52371,0.0016917962 1942,620.80664,203.84666,18.340027,56.641403,0.0014533135 1942,572.9037,86.81305,65.652954,272.671,0.0011504961 1942,457.43164,297.683,21.746033,47.60846,0.000998736 1942,362.87335,219.08261,64.22931,124.82272,0.0009048852 1942,610.2141,185.14058,28.932556,129.38387,0.000855618 1942,621.0367,135.02397,18.109985,54.147263,0.00067566417 1942,611.211,326.75574,27.935669,140.27875,0.00046375103 1942,1.8253435,109.471985,28.1156,145.64612,0.00039720663 1942,1.0659709,92.375854,18.5325,73.35118,0.00023628269 1942,0.9462492,220.41805,18.150204,73.194565,0.00023131166 1942,617.2038,267.17493,21.942871,85.360016,0.00017536608 1942,0.8728312,187.47127,13.338477,50.42827,0.00017336203 1942,583.8843,387.9572,54.223877,103.17978,0.00011578204 1942,403.12268,56.025875,39.60196,79.34259,9.464684e-05 1942,0.6226298,267.78986,13.757214,47.614777,6.852075e-05 1942,0.6585181,398.03604,18.313028,73.44318,5.4545482e-05 1942,2.8779492,141.72136,58.497944,213.07585,4.987793e-05 1942,608.5791,4.921019,30.567566,109.39777,4.7460366e-05 1942,0.5852726,261.9362,19.672762,141.5257,3.9312123e-05 1942,0.54968345,372.01547,13.845011,49.22357,3.885701e-05 1942,530.7314,287.0861,81.31976,175.80313,2.6024401e-05 1942,1.3646908,308.787,33.635963,172.3298,1.4272986e-05 1942,284.93768,433.1083,81.37833,67.587494,8.955432e-06 1942,0.8892586,440.99963,21.733492,62.108307,8.541945e-06 1942,2.088851,41.510677,62.12468,194.51479,2.055964e-06 1942,0.49768475,7.323174,8.810164,94.959305,3.9295433e-08 1942,1.4261361,6.3633757,36.722687,89.55278,1.0120296e-08 1943,531.22876,208.62715,25.56549,54.448807,1.5413108 1943,460.43677,284.56244,55.521667,123.6254,0.029698595 1943,405.77982,217.38371,24.941223,51.730453,0.026963081 1943,607.263,250.61626,31.622559,71.70616,0.015118547 1943,443.63245,243.23631,42.00049,141.49321,0.014267245 1943,509.78558,182.00717,37.479797,82.498474,0.012367328 1943,577.5045,195.72209,25.371704,50.172363,0.01107188 1943,440.29865,248.99709,27.376465,66.25282,0.010245664 1943,465.93735,310.01193,22.184082,46.55371,0.006883215 1943,621.83374,282.79962,17.312927,49.067505,0.005143368 1943,477.76917,310.41574,22.593048,50.829315,0.0020061794 1943,420.12943,211.23979,113.16983,222.36562,0.0015282907 1943,0.68150634,127.40956,19.789837,85.23851,0.0013749738 1943,497.70703,121.78834,71.71576,178.93542,0.0010995175 1943,588.6855,268.57626,49.550964,205.62082,0.0007811461 1943,616.72906,382.4294,22.417603,84.786835,0.00056097883 1943,610.4385,141.36012,28.70819,152.09087,0.00025747958 1943,1.2760571,196.736,17.989145,69.37338,0.00024247424 1943,617.1086,300.41602,22.038086,89.31433,0.0002346101 1943,1.4996501,134.69885,34.59677,178.24774,0.00016243232 1943,616.68,76.48615,22.466675,85.3532,0.00015964222 1943,418.7051,49.80231,29.428802,63.27959,0.0001525675 1943,609.0435,436.6513,30.10315,66.95947,9.590783e-05 1943,0.83122075,234.7001,19.84013,139.60727,8.279892e-05 1943,614.7127,13.974401,24.43396,88.38035,2.8128301e-05 1943,0.7591675,322.0674,20.78236,104.775055,1.9969173e-05 1943,3.0210807,187.36653,57.22094,227.80327,1.7360213e-05 1943,583.91785,22.564949,55.22882,284.29007,8.781482e-06 1943,0.6375977,421.24182,17.034075,80.62219,6.470565e-06 1943,2.7004037,35.65578,81.0316,282.52505,3.931969e-06 1943,1.1613656,353.8579,32.16571,137.75189,3.6136184e-06 1943,0.95898926,15.015749,31.065485,171.22108,6.0744514e-07 1943,1.6932976,5.673167,30.161028,60.473034,4.0485702e-08 1944,565.32935,170.692,35.65149,81.88202,0.5946349 1944,600.0184,189.15268,36.61029,78.35217,0.11379431 1944,504.93323,227.69714,25.44934,55.661957,0.06649477 1944,529.6414,239.54758,23.495728,49.727936,0.01547728 1944,624.423,192.34842,14.723694,46.899704,0.015215468 1944,558.7374,108.084885,72.22662,172.36049,0.00545152 1944,587.60986,197.61803,19.509644,45.562103,0.002629618 1944,0.9009798,132.6833,19.189045,85.37361,0.0024465288 1944,619.721,155.1439,19.42566,59.398026,0.0024120894 1944,585.54987,315.71783,51.970215,173.84323,0.002135393 1944,621.58716,313.28705,17.55951,55.998077,0.0017162005 1944,620.94086,114.6011,18.20581,56.14509,0.0010680342 1944,609.7531,82.37817,29.393555,163.04773,0.0008504864 1944,0.5974056,204.34473,14.102027,54.427673,0.0008252448 1944,621.2968,55.08896,17.849854,52.819252,0.00079311297 1944,405.99426,180.92026,44.05899,106.08807,0.00077511603 1944,615.40106,228.03537,23.745605,104.05673,0.00054916093 1944,437.93173,242.9848,19.837616,45.093323,0.0003691212 1944,1.6143311,125.86062,34.573223,182.41934,0.00015085761 1944,0.6460775,221.45584,20.133228,143.32379,9.636882e-05 1944,0.7578182,385.91528,18.337309,72.26431,6.73825e-05 1944,608.37573,440.37762,30.770935,67.85458,4.690032e-05 1944,4.5932293,120.5009,78.00271,258.56586,4.4148073e-05 1944,1.076665,309.22565,28.602222,144.93466,2.5507126e-05 1944,390.58173,147.15802,98.88672,204.37515,1.8805802e-05 1944,595.11194,1.9544271,44.03473,89.372925,1.6439863e-05 1944,3.000923,395.5486,55.902607,96.127686,4.688874e-06 1944,0.8689673,439.72797,22.103853,64.17172,4.395809e-06 1944,1.1945133,11.814186,17.542112,139.53302,1.9689472e-07 1944,1.7337272,7.738054,58.10716,131.91856,3.0897215e-08 1945,427.20688,184.55144,38.718353,73.853195,0.049525145 1945,0.115224615,196.96416,15.162476,58.79799,0.01361952 1945,556.69415,264.47705,26.164917,59.259796,0.009254998 1945,620.70233,218.10219,18.444336,55.28215,0.003101321 1945,621.2431,87.04161,17.903564,53.423065,0.0018771554 1945,620.8394,176.47885,18.307251,56.790756,0.0018247318 1945,0.59148437,210.125,20.18406,144.48022,0.0014376758 1945,610.2719,177.59341,28.874756,128.3045,0.0013871962 1945,587.37573,234.24435,34.251648,65.85013,0.00082813995 1945,1.0201042,134.36148,28.930758,146.85916,0.00079090067 1945,618.05133,263.60257,21.095337,77.2005,0.00067273097 1945,1.0261434,84.838295,18.422619,74.469124,0.00056554686 1945,609.9639,63.41875,29.18274,145.95482,0.00048729382 1945,408.35355,154.62038,80.205536,161.96944,0.00015319692 1945,516.0386,186.49196,83.312195,173.41914,0.0001499577 1945,2.5325212,173.99979,58.028744,232.62823,9.790302e-05 1945,612.5712,383.73962,26.57544,115.406494,9.2677954e-05 1945,583.4143,50.824154,55.73236,268.67642,8.326938e-05 1945,607.90814,0.12766276,31.238525,121.84726,6.200343e-05 1945,0.5027368,389.66907,18.566917,75.909485,5.8249505e-05 1945,0.652487,292.56787,19.861149,140.58475,5.3934127e-05 1945,588.1009,250.09172,51.045776,223.37325,3.1540618e-05 1945,0.78915775,442.69122,22.17668,61.27707,7.749837e-06 1945,2.6400065,397.0671,56.094414,97.17328,2.4536087e-06 1945,1.9026693,34.86831,62.38277,208.44388,7.9886e-07 1945,1.4699463,23.614044,29.373772,121.74536,1.9884705e-07 1945,0.9204956,8.771689,11.639618,86.89696,1.8400618e-08 1945,1.5029705,3.4676645,33.45427,48.590054,2.122932e-09 1946,298.7915,237.6569,24.769531,53.68132,0.27128533 1946,404.98276,194.93034,31.995941,65.299576,0.12015678 1946,460.36453,194.92609,41.42148,87.80075,0.0042468 1946,621.1081,353.59082,18.038574,52.252136,0.0020918483 1946,209.60777,208.63582,23.120651,45.601456,0.0010884523 1946,1.4635612,186.92474,17.654055,61.555634,0.00046074364 1946,612.37506,338.09433,26.771606,126.68765,0.0003832883 1946,612.20715,159.25131,26.939514,107.628235,0.0003315387 1946,392.26108,123.369064,57.2446,152.89381,0.0003149798 1946,616.21155,59.602867,22.93512,85.69427,0.0003025148 1946,1.9289372,116.2706,28.509161,138.66939,0.00014158335 1946,617.0215,233.01996,22.125183,87.16934,0.00013051361 1946,585.0906,245.90347,53.15564,223.66968,0.00012637212 1946,0.6337427,382.58743,18.323334,73.750336,0.00012630597 1946,0.8775342,94.03975,18.006832,75.40773,8.163482e-05 1946,0.67180663,222.18074,20.007162,147.01115,6.524574e-05 1946,3.3671665,160.45107,57.354446,223.88972,5.6730612e-05 1946,0.6280005,315.44403,18.46172,81.18024,5.5130004e-05 1946,585.86584,72.227646,53.280823,256.30743,4.66309e-05 1946,613.7037,414.82513,25.442993,87.734406,4.5141296e-05 1946,457.48047,162.21194,86.74585,184.69894,3.625227e-05 1946,585.2289,3.3982227,53.917786,123.19215,1.926356e-05 1946,1.2991341,309.02448,34.137474,169.1854,1.4574665e-05 1946,0.7164331,440.0583,22.173939,64.0061,5.665752e-06 1946,3.162422,424.00244,53.10482,74.66144,2.619321e-06 1946,0.46125653,7.124642,10.298035,92.96884,2.6940603e-08 1946,407.9816,1.4503516,44.088257,48.321095,2.5008637e-08 1946,1.2554297,20.305286,29.238255,122.8911,2.3236039e-08 1947,523.567,207.10384,26.007324,57.962204,92.7819 1947,537.8393,210.68315,24.202637,49.40059,18.658506 1947,424.8205,206.05656,22.870026,45.873474,1.1188893 1947,440.53226,191.19162,24.179047,55.21231,0.105158985 1947,510.35938,182.12608,55.610718,102.37294,0.04967322 1947,296.2969,200.61127,22.683716,51.162277,0.02476091 1947,418.7762,154.57971,44.73053,112.06021,0.023571495 1947,618.0437,212.00906,21.102966,65.3407,0.021898871 1947,503.47256,222.65466,22.43814,50.955536,0.005013124 1947,608.1991,314.7617,30.94757,143.64957,0.002586812 1947,1.5440153,184.11243,17.876038,70.46875,0.0013020346 1947,0.7769206,84.68792,14.197939,58.757042,0.0008285695 1947,610.0791,112.66956,29.067566,166.24634,0.00069063436 1947,0.61497396,120.137344,20.130686,99.97568,0.00044930552 1947,587.89886,149.8897,51.032593,257.0871,0.00043556787 1947,616.1344,271.52142,23.012268,94.45117,0.00020736686 1947,1.351071,150.20468,33.775486,178.5018,0.00011656644 1947,608.8785,437.40662,30.268188,66.53708,0.00011502209 1947,583.6176,384.91687,55.461975,109.006256,0.00010609347 1947,0.40141684,236.34839,18.616209,79.62109,8.7743974e-05 1947,615.8079,46.733395,23.338745,88.76776,5.5512293e-05 1947,406.92334,141.29033,100.55499,184.67094,5.130877e-05 1947,476.4556,129.02281,136.46127,229.0732,3.5383528e-05 1947,0.55370283,336.1119,19.346441,135.71246,2.957513e-05 1947,0.54116213,308.57068,18.406199,76.44476,2.520116e-05 1947,594.7521,3.5305405,44.394592,85.73809,9.673089e-06 1947,2.9116554,226.0799,56.752983,227.51825,8.944285e-06 1947,0.6216577,420.94727,17.305315,81.42114,7.314581e-06 1947,2.5268734,394.15622,56.5732,99.22009,1.8202746e-06 1947,0.90172285,18.12189,21.705465,153.79109,1.2978037e-06 1947,1.779642,22.135963,60.56209,226.23483,1.0381982e-06 1948,460.63214,181.8333,41.757965,82.29634,0.03195379 1948,620.10754,189.52092,19.039124,57.821304,0.0032408019 1948,621.71924,152.64886,17.42743,50.853714,0.001240338 1948,610.41296,110.29529,28.733704,146.79645,0.0011942538 1948,612.3896,230.57318,26.75708,150.81796,0.0008864529 1948,434.16992,153.99449,90.80792,161.15105,0.00085508934 1948,524.9983,247.29665,23.091125,47.68184,0.0006587122 1948,611.4361,355.61407,27.710571,141.63312,0.000435105 1948,1.3291528,184.10873,17.220743,62.697372,0.00041031273 1948,384.32397,189.91728,80.65625,161.09901,0.00025417042 1948,621.2435,46.841656,17.903137,56.684193,0.00019828262 1948,616.04065,77.17232,23.106018,83.355835,0.000121289704 1948,0.68654215,345.3901,18.428976,74.03778,7.6239405e-05 1948,1.653755,127.21672,29.011505,137.37007,5.8972393e-05 1948,3.7858303,219.1035,57.498817,230.2213,5.3092695e-05 1948,581.2755,0.0,57.871155,282.83234,4.970679e-05 1948,0.4877352,234.1241,20.003098,144.06645,3.349799e-05 1948,0.6716439,389.95816,18.965979,108.37799,3.0163044e-05 1948,608.1755,0.26555339,30.971191,126.20808,2.4549201e-05 1948,1.0784839,91.88292,18.884102,80.14734,1.9830331e-05 1948,5.2087893,356.8709,79.45559,128.72592,4.6725186e-06 1948,3.369733,428.25317,52.49542,71.16257,1.3668584e-06 1948,2.1768782,31.553907,62.523262,224.93547,5.558029e-07 1948,0.85751224,6.7893915,13.089403,75.77443,9.593174e-08 1948,433.96057,0.0,85.79535,169.35278,7.92659e-09 1948,1.5286475,0.18504883,39.13867,52.88362,3.1684613e-09 1949,521.63806,203.65555,27.059937,62.209045,99.20996 1949,501.21432,206.73978,24.54544,52.090668,98.96395 1949,459.20303,209.58165,23.142181,48.45662,1.5159249 1949,538.42487,209.34972,27.636902,62.286057,0.38759947 1949,506.90085,170.39032,57.151703,112.474396,0.14535548 1949,484.1698,211.0635,21.491882,46.101288,0.0020590427 1949,621.2189,196.23149,17.927795,56.270935,0.0013862097 1949,453.06403,100.777725,46.995728,168.44432,0.0010043638 1949,610.7963,179.0511,28.350342,125.975174,0.0006449953 1949,0.86030114,239.18896,18.346798,75.48917,0.000436895 1949,617.28375,364.57324,21.862915,84.848236,0.00035341713 1949,469.42,102.16633,141.32663,247.46832,0.00018668403 1949,616.9095,82.78985,22.237183,79.664665,0.00016144884 1949,0.80648196,98.17836,13.716236,49.229263,0.00012113942 1949,1.3379338,155.08658,19.163967,79.81354,0.00010875244 1949,611.5096,245.2421,27.637085,157.06561,9.335132e-05 1949,1.5347428,158.12466,34.022835,166.1022,8.34488e-05 1949,609.8413,442.6159,29.305359,63.353424,7.6446246e-05 1949,588.0914,292.5521,50.87085,187.42548,6.1419334e-05 1949,584.48615,48.73284,54.449158,244.34967,4.401955e-05 1949,595.0537,252.94884,22.598877,48.672073,3.2102453e-05 1949,615.91437,29.954754,23.2323,80.14166,2.7358525e-05 1949,0.6174292,340.2923,19.729355,132.74939,2.1258937e-05 1949,459.91522,132.69579,30.050049,72.05934,1.8206152e-05 1949,1.0661564,85.01035,21.876009,115.810646,1.778777e-05 1949,0.66424155,419.70184,17.004152,82.824615,9.420904e-06 1949,4.42888,99.96055,85.943214,224.17688,7.0519213e-06 1949,2.7110987,290.73053,57.771526,186.04413,4.427515e-06 1949,2.546188,427.6318,53.37374,71.711426,1.0681104e-06 1949,1.3196354,10.379616,62.26332,127.96569,2.6883523e-08 1949,386.80835,0.50588703,43.581085,52.235794,3.0329776e-09 1949,1.4311581,2.315817,19.890339,61.29852,1.7962601e-09 1950,578.215,205.36436,26.857544,65.05812,99.74686 1950,604.0813,200.01646,29.360535,68.555466,99.69337 1950,621.8363,194.84915,17.310364,59.043854,4.987449 1950,517.9377,307.9418,52.537354,156.73257,0.1206654 1950,584.8847,168.3559,51.61548,247.89609,0.08967013 1950,564.436,209.89816,26.203613,63.06137,0.057791132 1950,572.9392,355.5575,64.08008,121.53726,0.021609256 1950,477.24344,211.86827,22.108032,47.391586,0.009028505 1950,137.71233,136.04926,32.529068,54.68483,0.008713621 1950,595.9502,202.82019,19.482178,45.59294,0.0067561953 1950,484.92773,186.73373,37.295166,74.35535,0.0063922526 1950,616.88477,351.1925,22.261902,75.84073,0.002660287 1950,526.71075,231.74399,23.222961,48.07959,0.0026370264 1950,615.26447,219.7927,23.882202,92.171234,0.0013073438 1950,1.4019629,196.62408,17.62397,66.284454,0.0005304894 1950,606.6896,431.4604,32.457092,76.79822,0.000395806 1950,475.07492,136.9964,98.20126,273.6035,9.4786126e-05 1950,620.7026,35.492382,18.444092,56.44502,9.325131e-05 1950,615.40875,123.29896,23.737915,115.69886,5.0932787e-05 1950,0.61281335,322.18542,19.676142,136.8663,3.3746168e-05 1950,0.55211264,230.95834,20.1087,137.84598,2.7742013e-05 1950,1.7274854,138.06895,36.295406,160.52849,2.603706e-05 1950,0.9518384,141.80806,18.463928,84.108246,2.5534775e-05 1950,0.6688013,420.26285,16.810047,81.671844,1.1246264e-05 1950,596.11017,3.8724773,43.0365,82.40809,1.0333545e-05 1950,3.4137354,202.51988,56.9578,223.78468,9.144595e-06 1950,110.791565,85.57623,86.91135,183.827,8.538979e-06 1950,609.97455,26.299772,29.17212,167.43372,5.2944956e-06 1950,2.6921713,397.96222,56.39755,95.35852,2.2280105e-06 1950,1.3127939,51.881447,18.772444,135.11041,1.2051738e-07 1950,1.3897754,6.2216797,58.6593,130.24236,5.800625e-08 1950,0.9217005,6.9322333,10.706477,90.50139,2.1415596e-08 1950,1.2828109,0.0,31.568897,74.691345,1.0496535e-09 1951,538.6841,207.66246,30.780334,57.33461,99.321594 1951,494.04706,217.87006,22.944214,49.50717,0.06194031 1951,621.67236,244.78488,17.474304,48.159668,0.04548825 1951,356.3498,200.19594,31.441711,73.67976,0.01248475 1951,594.466,203.12735,42.730896,93.03607,0.007981764 1951,572.2666,134.6703,65.66693,238.42146,0.003277489 1951,621.03046,206.88957,18.11621,54.540848,0.0023880405 1951,608.72296,365.3781,30.423706,142.66492,0.0016113436 1951,104.92888,128.93541,32.30725,57.166855,0.0013927516 1951,1.3921102,195.72751,17.887785,74.06442,0.00091065257 1951,608.41754,115.63539,30.729126,154.34969,0.0009013712 1951,620.81244,73.83819,18.334229,54.131645,0.00068069465 1951,611.2721,246.75652,27.874573,149.2741,0.00059544574 1951,520.71405,164.14647,84.66583,156.05559,0.00043192366 1951,1.1991976,149.18462,18.468744,81.58281,0.00019628945 1951,1.5892888,159.55888,33.985645,165.06078,5.6590874e-05 1951,0.66749185,227.61438,19.98345,140.74469,3.7999554e-05 1951,608.0509,1.7541081,31.095764,118.68582,1.9108e-05 1951,0.6709969,320.67792,19.805979,134.60449,1.6748576e-05 1951,2.8177605,233.30214,57.65647,228.05095,1.4577944e-05 1951,0.9821574,108.20694,18.356995,73.51247,1.235845e-05 1951,0.7342709,421.36703,16.82416,80.483826,8.1624485e-06 1951,3.0420296,397.2931,56.379665,95.88025,1.595735e-06 1951,1.733418,9.187064,57.94518,126.619576,2.0594794e-07 1951,1.2911085,44.318596,30.282433,166.61761,1.154074e-07 1951,1.6143001,1.1129884,30.882233,47.019978,1.538494e-08 1952,489.84692,210.36037,24.034912,45.71318,0.049799517 1952,620.6053,230.63667,18.541382,57.053574,0.008272419 1952,610.5606,167.36899,28.58606,142.40524,0.001517387 1952,616.6354,254.8968,22.511292,89.9818,0.0009206491 1952,616.7882,385.9945,22.35846,87.86154,0.0007668212 1952,511.66714,226.7774,23.815277,45.809723,0.00066687865 1952,621.20465,162.3115,17.942017,54.526062,0.00059113326 1952,66.55079,117.60134,36.215996,60.467354,0.0003693508 1952,569.5758,158.4987,69.300415,245.21996,0.00032448344 1952,601.75745,273.57745,37.38922,204.02283,0.00027504185 1952,1.3700961,180.20418,18.404984,71.63095,0.00014976732 1952,610.8872,76.28696,28.25946,119.677246,0.00014132516 1952,3.109253,90.96348,47.415665,174.4213,5.3798714e-05 1952,0.67905354,405.7394,18.434126,70.66153,4.812223e-05 1952,609.355,436.5857,29.791687,67.78183,3.774662e-05 1952,1.2151693,128.64928,19.22232,83.75217,3.5521305e-05 1952,317.06512,141.4893,83.89978,169.76164,3.3710883e-05 1952,0.6419621,372.67255,13.67268,48.187683,1.6482121e-05 1952,0.71953124,308.84027,19.899696,134.85275,1.5735077e-05 1952,615.4646,27.712523,23.682068,82.54348,1.1224876e-05 1952,0.602229,233.44025,20.175968,137.99994,1.090098e-05 1952,3.1780112,202.90378,57.03889,234.58801,5.691009e-06 1952,2.6017203,397.07864,56.623623,95.97565,2.3636212e-06 1952,1.9602491,10.749258,55.436886,124.43635,3.3609325e-07 1952,0.9328532,4.4463463,37.46316,47.100037,7.0311515e-08 1952,450.2985,0.38742188,43.85022,53.40763,1.4599852e-08 1952,0.69065595,3.172972,10.738204,96.94161,1.36614275e-08 1953,523.67334,200.9017,26.608643,55.63739,0.085032456 1953,607.5162,211.07616,31.630493,58.828506,0.06591725 1953,622.8675,196.88937,16.279175,48.201828,0.017586125 1953,487.15997,200.2452,33.18506,60.260117,0.016805159 1953,622.6996,254.72339,16.447083,46.421997,0.015483805 1953,65.450096,224.09985,24.687233,54.59259,0.012043137 1953,585.6668,211.31458,38.039734,77.881134,0.006911016 1953,619.35645,360.91125,19.790222,64.85724,0.0046165553 1953,597.1354,192.5761,41.861145,187.95583,0.0044059884 1953,510.32382,215.23215,26.299347,52.621857,0.0018917966 1953,537.2077,211.7287,25.094482,58.263794,0.0014877772 1953,615.4783,290.2699,23.668396,106.18991,0.0005130053 1953,603.83655,341.39984,35.31012,148.11392,0.00033776154 1953,616.7453,144.16414,22.401367,81.92961,0.00021076939 1953,1.0250546,226.64168,17.991426,69.56584,8.2755505e-05 1953,609.2075,439.052,29.939148,65.953735,5.643361e-05 1953,616.05426,63.106422,23.092407,80.697365,3.8547714e-05 1953,327.49945,148.17894,86.23953,173.5157,3.261891e-05 1953,3.4616618,119.75506,59.80968,211.44452,3.0832733e-05 1953,1.7932065,141.73872,19.471693,134.24278,2.364871e-05 1953,615.3873,17.720781,23.759338,82.51594,1.441381e-05 1953,0.59354657,398.65143,18.267036,71.64755,1.2161688e-05 1953,2.0488443,214.74612,32.938656,166.78873,1.1421438e-05 1953,0.541722,358.18765,18.441704,73.16226,7.645712e-06 1953,581.3534,12.85155,57.793274,264.28122,7.2404996e-06 1953,0.6537988,309.8887,18.36962,72.66312,6.921251e-06 1953,0.7714396,441.40762,21.916302,61.80829,2.3995244e-06 1953,1.0351067,344.33942,32.90616,144.15533,2.0681089e-06 1953,1.6722087,8.879682,32.22622,167.75102,6.531021e-07 1953,582.64044,0.5889112,46.17102,53.83698,7.1730284e-08 1953,0.95056075,5.1222754,20.864355,59.43119,7.166793e-08 1953,488.8976,2.0764258,44.554596,51.636635,4.0450177e-09 1953,463.38928,1.1794401,45.62375,51.357628,7.214899e-10 1954,5.3256674,234.73526,23.459179,54.255096,0.15001734 1954,609.40784,218.70276,29.73883,80.47781,0.12144626 1954,10.582224,206.74573,40.349922,81.50882,0.057467148 1954,436.7413,164.05554,34.770752,77.03558,0.04638892 1954,623.80676,260.6115,15.339905,46.530884,0.020237492 1954,619.52344,189.71617,19.62323,68.38463,0.00421174 1954,620.93835,137.2079,18.208313,55.164673,0.0012948588 1954,422.96838,193.87144,25.108917,52.393738,0.0012260537 1954,586.93317,112.39253,52.2135,208.59087,0.00081363623 1954,362.7033,154.35936,91.168945,155.10704,0.00026958986 1954,1.6739079,200.9547,34.32712,171.56004,0.00024874663 1954,1.2125098,148.99298,20.354338,141.3422,0.0001910415 1954,617.96265,357.86148,21.184021,80.58453,0.00013189197 1954,4.620641,182.62968,76.71037,265.01825,9.316632e-05 1954,616.1562,81.55771,22.990479,88.81894,8.2138205e-05 1954,0.6195785,259.88632,18.520979,86.830414,8.163303e-05 1954,613.8854,418.60843,25.261292,85.68039,8.137574e-05 1954,613.0671,279.8976,26.07959,127.37427,5.0571914e-05 1954,607.3626,1.8303288,31.784058,60.697426,4.0789193e-05 1954,588.47296,237.63719,50.673706,241.60783,2.683627e-05 1954,0.48682863,322.2276,13.885757,48.055817,2.451724e-05 1954,0.63816327,399.47653,18.293163,71.77985,2.2771956e-05 1954,1.2522551,118.187126,19.076359,77.680046,2.1552692e-05 1954,584.14294,7.072715,55.003723,118.23197,1.7448516e-05 1954,0.5582642,294.66403,28.761536,154.74149,8.826653e-06 1954,2.8145263,72.93798,58.55515,228.85031,7.1725976e-06 1954,0.7759945,441.56418,21.951267,62.112488,4.112401e-06 1954,2.9137452,398.30518,56.52813,95.5202,1.1229903e-06 1954,1.2537924,15.663959,31.845642,157.48149,1.3527229e-07 1954,0.66920656,6.7474937,9.750557,88.908615,5.4765547e-08 1954,1.2787501,7.0959444,29.390574,57.216793,3.5022754e-08 1955,194.40292,205.55914,25.646194,50.949768,0.041617278 1955,570.75183,216.78375,25.060852,52.62079,0.039343324 1955,503.44406,155.33966,26.777924,53.924667,0.03889285 1955,577.5047,164.09485,59.47052,123.43048,0.026217379 1955,597.0349,174.65385,28.195862,61.832947,0.018975595 1955,585.0339,208.83495,29.752014,59.18547,0.018947788 1955,611.4761,156.40987,26.933105,59.51297,0.011323395 1955,621.63885,260.77945,17.507812,56.62152,0.008361189 1955,612.94214,222.24889,26.046265,57.843643,0.0076266006 1955,323.1813,176.02446,35.633392,77.648254,0.005780386 1955,621.19415,194.06816,17.952515,58.58177,0.0036022123 1955,620.93945,131.83237,18.207214,55.2502,0.0020288168 1955,358.7571,222.755,23.207428,45.180725,0.0008655452 1955,307.2853,138.28719,74.14276,158.83202,0.00029418882 1955,0.9888184,166.34764,18.280333,75.68179,0.0002441109 1955,612.50055,383.9152,26.646118,114.80267,0.00010953978 1955,608.5113,31.03086,30.635376,168.94241,0.000102934304 1955,618.1689,327.7845,20.977783,80.24338,8.133726e-05 1955,586.38086,217.33308,52.76581,257.95477,7.132243e-05 1955,0.98011315,189.51108,27.713345,140.38275,6.79553e-05 1955,1.7739853,88.655685,29.565033,148.6826,4.633849e-05 1955,0.52680624,263.6394,14.162023,52.01996,4.1345647e-05 1955,593.1606,5.659593,45.986084,85.576996,3.4073502e-05 1955,0.55359536,268.8958,20.021046,138.91043,2.3581642e-05 1955,0.58980715,366.33615,20.917046,104.60205,1.3421331e-05 1955,2.1986833,189.84064,56.604767,222.57031,5.3529425e-06 1955,0.8311743,443.59985,22.042913,60.695312,5.022681e-06 1955,2.9551482,338.30392,57.713463,149.4636,1.812075e-06 1955,2.022129,9.065671,58.23855,139.7686,1.7685046e-07 1955,1.1410775,17.613894,18.739412,138.46327,1.4133107e-07 1955,1.2513232,6.436937,29.302732,58.35623,2.3684658e-08 1956,556.50555,221.52432,31.445068,55.029602,98.31579 1956,622.1573,225.22755,16.98938,50.11943,0.009366414 1956,543.2899,197.39284,64.28021,101.9789,0.0074005774 1956,617.1949,241.18105,21.951782,82.59218,0.0044421568 1956,618.433,73.042656,20.713684,65.66151,0.0024511057 1956,619.90955,140.32147,19.237122,56.2854,0.0017571632 1956,588.2431,79.70248,49.485962,225.89746,0.0012719885 1956,603.17285,0.0,35.973816,163.60266,0.00055334036 1956,340.62268,185.42085,33.38086,63.713898,0.00036601126 1956,592.5058,170.10278,35.88568,68.19302,0.00024051688 1956,1.687185,187.94316,18.162321,71.39073,0.00023949853 1956,618.15594,408.8471,20.990723,77.68228,0.00020758825 1956,603.4453,225.73595,35.55591,193.42165,0.00018385833 1956,0.8316203,239.07536,13.621492,48.61052,5.0934348e-05 1956,505.51294,141.67467,127.487,228.80327,4.3898184e-05 1956,1.6181128,199.3004,28.224056,134.91875,3.6064303e-05 1956,2.8877735,95.15356,56.796097,222.04477,3.5717785e-05 1956,370.65033,150.93196,81.585266,165.13737,2.9445224e-05 1956,572.83405,424.06842,66.31262,75.318054,2.2199556e-05 1956,0.74371666,363.0448,18.903467,129.5683,1.3164977e-05 1956,1.397775,84.61265,20.070028,149.76932,1.0075318e-05 1956,0.8392367,276.85895,19.438921,135.22574,9.281818e-06 1956,2.976981,248.30069,56.941353,222.21823,4.9778746e-06 1956,2.2790072,16.155788,56.337376,128.71062,3.1016284e-06 1956,2.4196143,426.61978,53.867428,72.188354,1.1571341e-06 1956,584.17725,0.9626839,45.795532,55.90172,4.6525068e-07 1956,560.80164,7.0567384,45.807922,147.77147,5.5677766e-08 1956,0.61558145,6.074154,9.666422,97.25894,5.3102063e-08 1956,1.1365951,6.3384314,29.50866,61.26934,9.8470165e-09 1956,532.08704,1.9917139,43.792603,48.06697,3.4266423e-09 1957,410.19177,201.42613,25.823029,49.994293,81.44641 1957,603.00885,221.30777,35.427612,73.89395,23.875198 1957,623.3278,253.16122,15.818848,46.60092,0.011948698 1957,619.11285,194.73923,20.033813,71.84119,0.0022456478 1957,520.1873,189.33273,41.91211,91.57898,0.0018633133 1957,392.25903,167.26407,59.02957,101.44214,0.0012503425 1957,589.23926,180.35077,49.90741,193.05014,0.0007227802 1957,360.11258,193.43912,25.262268,49.80977,0.00051010353 1957,1.3593075,169.69183,21.436056,122.46918,0.00043785898 1957,221.2318,196.3377,27.162735,55.303757,0.00034446007 1957,617.1545,82.588684,21.992188,74.75354,0.00032828233 1957,3.639157,174.15448,56.20112,232.17453,4.0847666e-05 1957,612.90234,305.57187,26.244324,141.74747,3.7901475e-05 1957,609.8369,440.2393,29.309753,64.12271,2.5582596e-05 1957,363.34924,106.546776,137.24948,227.33444,2.2676253e-05 1957,478.9893,117.51404,142.65262,221.77512,1.9207167e-05 1957,0.62215006,259.62808,18.299742,75.44702,1.4936836e-05 1957,0.86035156,324.53015,18.709188,133.54596,8.652679e-06 1957,595.78064,7.3098993,43.366028,80.073296,5.41348e-06 1957,585.43036,395.04007,53.71631,98.64102,5.2213873e-06 1957,1.3599317,64.6816,20.502327,160.80774,4.5668744e-06 1957,0.8131804,420.66333,16.540926,80.49188,4.0297145e-06 1957,601.8674,39.51371,37.279297,183.1384,3.6438576e-06 1957,2.9792953,395.98633,56.34041,96.55823,9.2008224e-07 1957,2.316932,22.501017,61.758423,248.23952,9.1236683e-07 1957,0.77802,6.419818,9.93483,91.822334,2.3200695e-08 1957,1.8671192,6.356406,36.253723,87.955505,7.2356294e-09 1958,453.87357,227.19957,24.56009,51.267563,98.785 1958,438.63065,224.01474,21.314209,50.720093,0.30557722 1958,609.67487,204.13196,29.471802,78.987885,0.07219665 1958,231.08928,215.3622,31.92598,56.248917,0.037172392 1958,468.0851,227.10321,26.425934,51.66693,0.03459281 1958,548.01135,188.77852,35.835693,74.09041,0.015438223 1958,622.6872,194.429,16.459473,50.476395,0.009660169 1958,621.3404,139.48372,17.806274,49.122955,0.006742783 1958,400.87445,228.49487,26.23236,50.033478,0.0044339844 1958,620.3188,242.54997,18.82788,57.253952,0.0035755374 1958,384.65356,138.62273,40.85263,138.22856,0.00092207437 1958,611.2232,86.43387,27.923462,143.45145,0.0008723255 1958,438.9842,198.45694,61.977234,99.1651,0.00069030706 1958,586.6068,149.76178,52.539856,189.32666,0.00045276992 1958,0.7872567,166.04001,14.084433,55.533676,0.00021538427 1958,616.5259,64.33966,22.620789,79.6299,0.00012988842 1958,1.1902491,199.2791,17.896755,73.95628,6.644717e-05 1958,612.79663,365.40604,26.350037,130.17014,6.541895e-05 1958,406.12018,146.26248,152.52911,219.45236,4.1042436e-05 1958,0.6655294,240.59511,13.605596,47.864304,3.490409e-05 1958,612.41046,259.15594,26.736206,158.28531,3.291292e-05 1958,2.5744386,102.03295,46.84718,193.52985,2.1237984e-05 1958,1.418165,212.48534,28.491451,139.78737,1.9295037e-05 1958,0.59767497,334.30585,19.806622,132.74265,1.17104455e-05 1958,1.1928207,88.73118,20.047577,147.23038,1.0509657e-05 1958,3.0274007,220.0403,58.16484,217.7491,1.0217831e-05 1958,0.5624113,297.29263,18.432777,71.48215,7.681525e-06 1958,0.6965365,423.16086,16.897257,79.37659,6.119107e-06 1958,1.8970981,14.696823,57.439785,114.60599,1.7284315e-06 1958,586.80096,10.615066,52.345703,124.23428,1.665523e-06 1958,2.7674692,397.65237,56.36674,96.043884,9.907463e-07 1958,0.76423097,7.0865726,9.994868,90.3033,4.2537962e-08 1958,1.3397461,6.3982553,30.173859,59.42733,1.7858964e-08 1959,545.14624,209.57077,37.348755,77.48309,99.63778 1959,572.27277,208.0414,31.84021,61.288864,95.022 1959,397.47495,213.29527,23.729736,48.02162,2.0451453 1959,246.99394,201.95692,36.38835,76.05788,0.10404786 1959,573.6672,250.97276,28.233582,62.50911,0.036071036 1959,438.72034,127.05776,40.693848,141.15378,0.0050700675 1959,484.99326,157.09949,20.463318,46.96953,0.0046862205 1959,12.902869,214.45726,34.039246,68.676895,0.002729214 1959,530.01056,187.69199,86.25275,140.5333,0.0017283399 1959,438.29855,190.34064,23.595734,56.69406,0.0017197 1959,450.42392,140.15445,21.729279,52.736786,0.0016087182 1959,622.1755,169.99023,16.971191,51.633774,0.0014561825 1959,459.0471,101.32172,45.232086,160.08539,0.0011882009 1959,612.22845,189.66704,26.918213,125.496445,0.000446794 1959,1.1744344,187.58055,29.136002,137.83382,0.00034346778 1959,609.8888,97.55713,29.257874,145.61606,0.00015872938 1959,612.1307,257.76434,27.015991,132.61862,9.00244e-05 1959,0.058815107,265.03,19.77777,80.76074,8.753436e-05 1959,612.6924,367.08963,26.454285,128.712,6.180519e-05 1959,2.9165463,196.1998,56.31179,211.11057,5.2589683e-05 1959,587.0671,225.60191,52.07959,234.65633,3.7201517e-05 1959,595.98645,5.4670963,43.160217,77.968285,3.32137e-05 1959,432.82755,74.13861,107.066376,231.86792,2.6313293e-05 1959,0.35716227,318.5601,20.129108,137.84659,2.0879907e-05 1959,0.68402916,421.52,16.614256,80.587585,4.699457e-06 1959,1.0145744,66.53627,20.734268,149.16245,3.4301393e-06 1959,117.18405,2.5674007,42.46454,50.854553,1.7164173e-06 1959,2.514751,327.19055,57.855354,155.00629,1.464217e-06 1959,2.208112,12.962439,57.058674,108.11315,1.1582999e-06 1959,387.73627,3.5123014,42.24478,50.274235,6.1755026e-07 1959,1.698711,4.3155503,30.916824,61.512527,9.780386e-08 1959,141.30898,4.9562535,46.005356,52.862953,7.314643e-08 1959,42.082436,0.0,50.459038,46.147015,5.4022724e-08 1959,195.1427,1.4711556,45.779648,48.570145,2.4609644e-08 1959,507.43262,5.045962,46.821594,49.953842,3.0829266e-09 1960,377.92197,81.93555,35.54251,53.78247,0.032028206 1960,603.55316,111.22977,35.593506,181.29974,0.024834467 1960,607.9435,105.97429,31.203186,64.20836,0.02208246 1960,493.95258,142.61938,45.228577,121.03546,0.006652892 1960,616.02747,134.67563,23.119202,71.1373,0.006387371 1960,620.6716,232.30022,18.475098,56.079697,0.0047859177 1960,517.22455,165.37224,22.567627,49.208527,0.001941933 1960,534.77295,108.12995,43.467712,162.23459,0.001580024 1960,618.75024,184.25954,20.396423,66.98633,0.0010880455 1960,552.5713,76.26963,81.54932,202.25916,0.0003881863 1960,255.76569,146.00154,31.38089,67.53722,0.00021451937 1960,477.61133,109.370094,115.6723,206.9404,0.00018292665 1960,598.7828,15.9258795,40.36389,179.82585,0.00017635121 1960,612.8262,348.03174,26.320496,132.8523,8.38611e-05 1960,611.22217,222.83725,27.9245,149.55533,7.406508e-05 1960,3.5148683,23.541235,54.829845,101.76163,6.3168416e-05 1960,1.1913794,110.179245,13.68368,50.466812,4.5972094e-05 1960,609.5672,438.28214,29.579468,64.93121,4.416151e-05 1960,607.5838,4.1235514,31.562866,50.583164,3.9838385e-05 1960,1.1748551,209.26721,17.703838,69.3226,3.4693956e-05 1960,2.122776,66.913246,18.711508,76.42338,2.1634944e-05 1960,4.2194743,50.002384,58.82477,220.87238,1.6876975e-05 1960,339.0209,140.961,97.68146,209.69415,1.5513036e-05 1960,0.65862226,244.17409,20.061357,131.42351,1.4526042e-05 1960,1.6749561,161.7357,34.008865,167.36263,1.3786163e-05 1960,0.5998836,327.23178,19.808414,132.88968,1.0135996e-05 1960,1.4272884,123.59865,20.765701,114.96864,7.93913e-06 1960,0.68022627,422.1773,16.973936,79.881775,5.449345e-06 1960,2.675936,247.03865,57.7529,222.347,3.4598788e-06 1960,1.9249471,12.929043,17.714487,80.39043,1.8638391e-06 1960,2.819891,396.769,56.413467,96.90427,1.0315897e-06 1960,2.3847916,8.759998,43.93513,45.019768,4.0103902e-07 1961,441.76538,205.10818,35.635254,64.787964,0.0006565297 1961,11.011973,186.58041,40.81636,98.56662,0.00026796223 1961,611.01276,152.92284,28.133911,105.91127,0.00022948245 1961,618.1997,372.08258,20.94696,83.05701,0.00022297975 1961,0.5608366,267.59442,14.003019,54.395294,0.00019373506 1961,1.0621794,223.72792,19.719765,133.36592,0.00019075714 1961,265.97195,149.24611,25.314606,53.251297,0.00015869744 1961,429.29413,204.91333,25.26532,52.892365,0.00010524617 1961,617.227,82.8844,21.919678,83.995285,0.000101768856 1961,617.1269,213.6813,22.019775,83.65683,9.3724906e-05 1961,617.7558,280.72723,21.39087,79.01764,9.302019e-05 1961,0.39121664,317.92902,18.5204,75.87921,4.2416475e-05 1961,616.082,21.932598,23.064697,75.5591,3.7517686e-05 1961,610.0097,437.5459,29.136963,66.569336,2.9228173e-05 1961,1.5556064,173.64084,18.586943,69.82643,2.7107382e-05 1961,586.4988,122.33376,52.64789,216.9176,2.6705706e-05 1961,602.63104,271.65454,36.515625,191.09875,1.874378e-05 1961,2.8570216,231.5734,56.74548,232.17746,1.58826e-05 1961,0.6246574,399.01407,18.216051,71.22058,1.03593575e-05 1961,1.8102368,67.982605,18.570337,68.14299,9.141055e-06 1961,586.10223,391.38315,53.044434,101.89188,6.674842e-06 1961,0.46043703,371.78976,13.809078,46.66806,6.638024e-06 1961,584.0439,20.447794,55.102783,197.03325,5.347126e-06 1961,4.23639,57.645195,57.716087,246.18329,2.7532835e-06 1961,0.8428996,442.58313,21.860447,60.756683,2.6118828e-06 1961,1.2538322,102.69852,18.614567,83.745834,1.8926777e-06 1961,2.6693587,20.095434,56.575516,106.96032,5.804601e-07 1961,2.8587565,395.1172,56.3251,98.2522,5.781464e-07 1961,0.9476705,11.382614,11.475284,77.410515,5.1680665e-08 1961,327.57596,4.150705,43.674408,45.656376,9.599337e-09 1961,402.98428,3.1510174,44.874054,45.443573,3.593694e-09 1961,447.26813,1.319209,44.58313,52.227974,3.0088467e-09 1961,353.53235,1.3100994,45.461334,45.38881,1.3474502e-09 1962,420.5563,196.94066,25.170685,49.85797,0.17166759 1962,504.88818,208.3797,21.809448,49.81366,0.018224543 1962,567.4053,105.55162,68.27496,200.54594,0.009223518 1962,401.14148,201.07358,23.814331,46.993332,0.008275544 1962,622.01215,205.35336,17.134521,54.944,0.006521223 1962,606.28784,120.88016,32.858826,87.4144,0.0058214716 1962,610.6121,203.65977,28.534546,123.74254,0.0033743018 1962,621.2517,270.59338,17.894958,60.003357,0.0031425727 1962,443.77505,180.49274,47.26651,109.40286,0.0021444845 1962,416.9475,168.92232,43.90329,100.24339,0.0020195204 1962,620.97186,80.74576,18.174805,56.808304,0.00064213644 1962,1.103422,212.24554,13.38666,51.98587,0.00037859817 1962,617.78015,295.2193,21.366516,81.38992,0.00020277503 1962,1.3052304,180.93483,20.55652,125.780045,0.00015100329 1962,586.4743,199.4699,52.14038,226.0771,0.00011094542 1962,279.64737,130.28152,34.746796,86.81261,0.00010871895 1962,612.7163,362.7383,26.430359,130.83826,6.345498e-05 1962,583.9257,14.926491,55.220947,117.8722,4.5992005e-05 1962,2.6491294,158.2395,57.504623,188.26437,4.3833174e-05 1962,0.5177962,256.7176,18.480509,80.800415,4.1153475e-05 1962,0.71904784,101.76737,14.150637,55.46296,3.9888302e-05 1962,402.4513,142.1101,109.8526,187.65335,3.979715e-05 1962,1.9496729,80.1136,32.92479,201.02812,2.98001e-05 1962,0.8419149,124.41175,19.071533,87.37606,2.3288867e-05 1962,0.40511638,315.0805,19.81238,135.798,1.1125846e-05 1962,0.7323674,422.80072,16.884697,79.092316,3.4437878e-06 1962,2.7555697,333.35178,57.544434,150.20245,8.3229264e-07 1962,328.67273,3.2920997,84.95639,76.38634,4.920686e-07 1962,1.4477938,21.208029,19.972454,116.46552,2.217119e-07 1962,381.68658,2.499253,46.239258,46.40601,6.434364e-08 1962,307.62503,1.6418865,43.070923,54.33657,1.2529785e-08 1962,428.62402,4.572178,45.859375,47.93711,8.088757e-09 1962,1.0370866,0.56720054,20.796389,45.17325,5.590749e-09 1963,503.31757,192.18515,33.259705,78.12537,0.32656112 1963,432.28516,206.64427,26.575256,55.28984,0.08456031 1963,490.7158,209.36047,26.09201,59.066986,0.02447447 1963,622.64514,184.48657,16.501526,46.86528,0.0032135376 1963,416.94226,212.51764,25.484253,55.431732,0.0018749781 1963,280.5632,122.95401,36.87274,92.73471,0.0006787267 1963,363.7781,184.29613,41.501556,75.594986,0.00067659136 1963,611.137,185.43004,28.009644,124.25334,0.0006428736 1963,461.41052,86.94832,73.939514,197.7632,0.0004081374 1963,490.18445,103.49397,37.208496,100.80794,0.00022436713 1963,1.2215406,208.18842,18.094742,65.764435,0.00016615241 1963,610.8669,73.407364,28.279785,141.75043,0.00015606105 1963,618.1296,315.3538,21.01709,77.66916,0.00011715108 1963,570.6124,122.67478,68.53424,233.60559,6.886763e-05 1963,0.77577555,226.24571,20.1189,132.75307,6.4053376e-05 1963,612.77344,369.15533,26.37323,127.20581,4.5057815e-05 1963,1.3165438,104.53777,19.879305,141.31448,4.0122366e-05 1963,602.1517,247.08568,36.994995,199.11406,2.8556766e-05 1963,0.581049,252.02406,14.08844,49.652573,2.2824483e-05 1963,337.84702,149.27414,85.97891,149.83746,2.245627e-05 1963,595.903,10.918047,43.243652,77.96618,1.1030761e-05 1963,1.8017546,152.148,35.919765,162.05467,9.853344e-06 1963,0.5601587,298.66437,19.964252,131.57611,9.439213e-06 1963,2.9951546,247.64365,56.82942,216.3623,6.1530122e-06 1963,0.6787809,380.88492,19.428162,116.09863,5.303248e-06 1963,267.56668,64.45509,81.99008,194.22636,4.597376e-06 1963,2.3850033,18.564493,57.08548,106.082115,1.5639279e-06 1963,2.972754,395.82056,56.274994,97.55539,4.8639515e-07 1963,1.4547274,25.943249,19.294785,116.252304,4.1693266e-07 1963,508.69412,3.9851823,46.15695,56.912098,1.15285516e-07 1963,482.72662,1.1356739,46.11084,62.476463,4.5455963e-08 1963,297.69937,3.5758626,42.679474,48.406086,2.4663874e-08 1963,260.5944,5.207751,43.1304,45.958565,1.931346e-08 1963,1.0586377,2.789712,32.158386,49.7682,3.1880598e-09 1963,553.41425,2.1853826,43.948975,50.36935,3.0822372e-10 1964,514.10144,213.16797,23.314636,46.157867,0.64311886 1964,471.94907,206.11826,35.169495,80.04428,0.023580214 1964,519.7611,191.55988,22.14502,48.28006,0.01934591 1964,621.36066,175.53096,17.78601,55.09938,0.014555581 1964,507.60294,159.77481,45.894684,117.394226,0.013619104 1964,460.1799,121.96159,71.04477,173.64766,0.0050832257 1964,621.47186,73.94829,17.674805,56.368866,0.0050355485 1964,610.98834,179.50087,28.158325,125.25023,0.0028368807 1964,383.60394,187.41148,47.00067,87.42381,0.0016525984 1964,429.48987,215.49051,24.990356,53.645874,0.000835801 1964,1.339935,181.13914,21.519424,124.102646,0.00056506164 1964,611.6163,84.16918,27.530396,151.8628,0.0004810021 1964,588.45404,194.92232,50.692627,222.01967,0.00041114035 1964,489.22382,118.03197,112.433044,197.2693,0.00037763108 1964,606.3288,3.9815104,32.81787,125.93925,0.00027142093 1964,612.31757,321.2259,26.829102,139.56812,0.00022506704 1964,3.157386,124.49808,57.224464,207.76303,0.00021851831 1964,289.5546,129.9327,42.082,104.88469,0.00016595983 1964,0.9866675,125.84477,19.636623,101.29521,0.00013885947 1964,349.58865,106.786865,145.95688,219.32422,4.7525496e-05 1964,583.4322,0.0,55.431335,268.2633,3.957151e-05 1964,0.46240643,264.10324,20.172161,139.91061,3.1903037e-05 1964,609.7223,438.73553,29.424377,66.44855,3.063115e-05 1964,585.80457,385.96103,53.342102,109.043945,8.511435e-06 1964,0.61305094,372.69778,19.472168,124.32495,7.605816e-06 1964,2.5819614,297.20755,57.72175,180.28867,1.7400216e-06 1964,1.5385051,21.154545,19.08502,121.66167,1.3966062e-06 1964,297.45105,0.0,45.479675,70.106995,8.1513053e-07 1964,271.5935,0.0,45.71347,68.68016,6.105418e-07 1964,284.91394,0.0,65.36383,184.6352,3.4314985e-07 1964,1.6850114,19.278393,36.19383,230.45624,3.148878e-07 1964,384.92197,0.0,86.058105,223.17195,2.191318e-07 1964,387.7592,1.1664844,43.629364,58.222656,1.7420332e-07 1964,486.8494,2.291452,48.158417,67.25613,1.6831119e-07 1964,583.7642,0.27740562,45.373108,54.229935,7.7462246e-08 1964,0.9109937,10.220387,9.921912,81.75843,7.442215e-08 1964,420.06134,3.2962923,47.92514,59.928905,1.08624425e-08 1964,447.60648,1.5752084,47.01053,63.989872,4.5846544e-09 1965,622.0538,215.36339,17.092896,55.245773,0.026609678 1965,621.1988,296.20767,17.947876,60.5867,0.02266156 1965,611.2264,220.25117,27.920288,140.41072,0.00655666 1965,611.34674,149.24487,27.799927,132.16644,0.005340845 1965,443.38956,205.61397,34.027374,77.694565,0.0043876027 1965,621.0416,109.312515,18.105042,51.16484,0.0031224594 1965,569.88245,159.50615,65.40234,177.31093,0.0019556747 1965,421.3237,118.53187,68.1398,175.28363,0.001193376 1965,621.0066,157.11111,18.140076,58.118835,0.0008596609 1965,564.8702,208.64569,27.62677,59.749573,0.0006018175 1965,610.15704,73.716774,28.989624,138.7286,0.0004642334 1965,0.7549707,112.15265,14.649084,58.562332,0.000291 1965,620.0196,40.188427,19.127075,59.404324,0.0002603314 1965,612.4434,297.1815,26.703247,147.22385,0.00020594746 1965,1.1611181,204.77367,18.020388,66.23256,0.00019895658 1965,1.2648755,69.27686,20.946404,81.24981,0.00018937881 1965,364.75037,174.5576,58.251312,108.90663,0.00016522488 1965,605.2856,0.3463965,33.861084,67.71343,0.00011168554 1965,1.7780844,83.40498,35.587162,186.72221,8.0143014e-05 1965,1.2247599,153.53873,18.590899,81.270004,3.216043e-05 1965,0.6039901,239.93787,19.72575,134.745,3.0881463e-05 1965,610.01575,437.4352,29.13092,66.58261,2.6194417e-05 1965,334.12662,123.03897,143.55048,218.64578,1.5515521e-05 1965,0.57563806,331.01895,19.858095,134.17758,1.3575212e-05 1965,3.224673,179.80898,56.627872,203.15947,1.2244945e-05 1965,573.1178,348.22583,66.02887,136.33511,1.02358945e-05 1965,0.6997722,421.51724,16.9625,80.98001,5.0612343e-06 1965,388.26538,0.0,122.559845,232.55719,1.8324668e-06 1965,2.8431463,326.73105,57.675728,156.38809,1.1615609e-06 1965,1.8262419,13.195222,57.84694,125.173645,1.1052638e-06 1965,2.6895769,428.5706,53.49236,70.79114,4.9387575e-07 1965,435.12582,0.0,45.09372,163.2355,1.55223e-07 1965,316.95328,2.6373243,44.900208,58.575214,1.3638186e-07 1965,460.93246,0.13666342,46.829987,61.186558,1.9687171e-08 1965,486.26245,0.0,47.568054,57.286922,1.42332475e-08 1965,503.46454,0.0,90.52106,94.32987,9.36185e-09 1965,578.63696,0.80416346,45.363586,50.591663,3.4514631e-09 1965,407.7907,0.0,47.737274,65.55559,1.9410649e-09 1965,1.7492871,2.559398,30.818634,68.66967,1.3830923e-09 1966,456.7048,220.20628,33.59012,71.71193,99.88673 1966,564.92786,216.17258,42.443542,96.355316,99.4069 1966,369.0103,207.51062,24.637085,51.838226,0.64774954 1966,622.74506,234.9199,16.401611,50.976456,0.060162432 1966,444.63443,66.26468,37.18338,66.71811,0.0023920042 1966,611.72723,182.50243,27.419434,119.83601,0.0023667673 1966,1.1918726,190.3821,13.245507,47.92668,0.0016266769 1966,585.32965,9.173255,52.03479,112.73379,0.0015504649 1966,298.72412,169.20702,26.107483,45.490555,0.0011175054 1966,439.102,193.64735,72.05533,141.63353,0.00032428856 1966,617.8581,400.44693,21.288574,79.181305,0.00028286144 1966,539.5981,183.12949,90.076904,171.30487,0.00017702693 1966,584.94476,48.86526,53.376953,266.84583,0.00016749771 1966,1.2746875,91.114784,19.831528,141.36252,0.0001664993 1966,586.8963,219.61902,52.2229,248.16641,0.00015241843 1966,1.0314063,179.92784,21.139822,122.49794,0.00010972682 1966,610.26556,58.123093,28.881104,144.54465,8.166815e-05 1966,296.43335,98.36942,44.104095,124.33225,2.5362266e-05 1966,3.6957715,119.9986,58.184864,197.9946,2.479172e-05 1966,0.61126953,347.0623,19.74863,132.15396,1.453387e-05 1966,0.5009676,281.63507,20.806963,103.62366,6.9409894e-06 1966,0.8468335,442.63434,22.091217,61.306366,4.4223493e-06 1966,2.9502246,281.86288,57.60574,192.43326,1.5257193e-06 1966,1.7555306,11.365658,59.073025,120.40965,7.2252936e-07 1966,2.724782,428.56372,53.500057,70.940094,6.6080815e-07 1966,1.1317782,19.823015,18.846624,136.54918,3.3994218e-07 1966,0.7445557,4.6324806,10.324231,93.03496,3.6734207e-08 1966,313.6127,3.2962127,44.077606,51.83953,1.4326123e-08 1966,1.1230828,4.0340886,31.403013,67.61597,7.7276265e-09 1966,568.46436,5.967702,44.996704,47.15602,6.4477144e-09 1966,530.7734,7.696003,44.459656,48.17323,4.547623e-09 1967,407.66138,205.32986,24.362549,59.30542,1.6433796 1967,510.52823,205.19846,34.3649,76.91092,0.08869716 1967,423.45203,211.91849,20.476898,46.70822,0.028270602 1967,6.288742,195.66698,22.181929,47.961914,0.008845723 1967,1.3127637,199.90225,13.103815,48.10208,0.004455551 1967,445.58667,217.4415,33.719025,60.230133,0.004209777 1967,434.2275,216.67151,24.648865,48.94928,0.003521694 1967,621.8799,183.5739,17.266785,52.82689,0.0013705252 1967,583.53186,6.280977,54.436157,124.3145,0.00052608614 1967,497.36658,144.16837,65.693054,167.8316,0.00048199896 1967,617.806,216.04774,21.340637,81.36476,0.00035781134 1967,1.5441496,140.27434,20.329418,131.18764,0.0002768231 1967,609.48303,58.927868,29.663635,150.08357,0.00024238316 1967,612.0154,241.5511,27.131287,137.78621,0.00014307113 1967,617.7536,327.16083,21.393066,81.01547,0.0001201841 1967,453.53262,116.32274,77.77261,181.05006,5.777289e-05 1967,1.0999455,65.23955,18.52165,78.38214,5.4133652e-05 1967,612.8103,369.57294,26.336365,123.40823,4.592954e-05 1967,0.54260176,227.67703,19.526333,138.43533,3.888081e-05 1967,3.4231691,123.23791,58.854294,195.38544,3.856264e-05 1967,585.98846,128.39072,53.147156,228.4259,3.5745896e-05 1967,0.4434953,323.00137,19.960167,134.46396,1.42656245e-05 1967,312.38058,22.724194,40.39676,114.061905,6.1955134e-06 1967,0.67504394,421.62854,16.898556,80.21326,4.2498996e-06 1967,2.7937028,265.94882,57.510155,203.37698,1.2623399e-06 1967,2.7020493,429.112,53.41522,69.94238,3.8056834e-07 1967,277.6166,0.0,122.632324,228.0075,3.6654438e-07 1967,350.73572,2.3019857,48.57321,62.12195,3.5124052e-07 1967,378.97964,2.9567416,47.38611,58.194893,1.7882695e-07 1967,0.901047,12.868396,11.571989,76.27921,1.4597659e-07 1967,1.7618978,18.106876,57.284485,108.30855,1.2831578e-07 1967,304.5795,3.2290723,45.903107,55.306103,8.210658e-08 1967,273.45673,0.0,44.54358,48.402645,2.3432745e-09 1968,491.87048,147.20143,46.880737,146.39677,0.28463885 1968,447.77814,202.23615,30.64801,57.05258,0.014978127 1968,0.9316838,129.30722,18.654575,83.57434,0.010364774 1968,479.95215,177.8453,36.79706,88.46146,0.006946769 1968,0.864882,191.58585,13.39411,53.12523,0.0018577453 1968,492.61453,224.73326,21.910614,48.563187,0.001290379 1968,611.87506,177.03252,27.271606,101.880875,0.0011831602 1968,502.87653,159.11932,27.987183,69.59906,0.0008568192 1968,575.5758,6.6127605,62.341064,80.04688,0.00030424463 1968,0.73489827,81.96523,18.816353,75.19872,0.00021294864 1968,1.4347006,128.19414,33.895527,175.04207,0.00016906371 1968,0.4886255,211.41188,18.540443,78.05611,8.3469255e-05 1968,612.70135,314.73306,26.445312,139.40668,5.7599045e-05 1968,586.1527,62.53392,52.70929,240.84004,4.526437e-05 1968,602.21106,204.59009,36.935608,193.31699,3.8774946e-05 1968,610.76526,38.793346,28.381409,160.20927,3.0674353e-05 1968,610.0656,435.62054,29.081055,67.795105,2.9099456e-05 1968,0.5235905,337.5739,19.843777,134.59833,1.3443287e-05 1968,0.5729907,267.92697,18.27579,74.18805,9.049839e-06 1968,585.87823,392.95648,53.268433,98.82614,7.4427753e-06 1968,3.2713053,194.45642,56.755955,227.77191,4.458761e-06 1968,0.6660221,420.5838,16.80829,81.3587,4.228642e-06 1968,360.5504,3.940194,44.699036,54.478058,1.4830007e-06 1968,5.130889,353.914,79.591354,132.75778,6.799443e-07 1968,2.7477002,427.8251,53.55633,71.27432,3.5871236e-07 1968,1.9058383,10.573041,59.372185,127.80118,3.1396365e-07 1968,331.94617,2.1552866,47.746857,58.801918,1.7438549e-07 1968,477.18787,2.978926,44.078735,50.38821,1.3283919e-07 1968,0.57853925,8.415534,9.395281,86.66052,4.2921418e-08 1968,519.03046,2.5982275,43.792725,49.194958,7.869287e-09 1968,551.37756,2.1280096,64.84204,49.31141,4.7282835e-09 1968,1.5486817,1.9093294,33.156944,46.83574,4.2859876e-09 1969,477.54642,205.13458,24.83078,49.25534,0.18737859 1969,565.2164,168.63419,42.973022,102.19983,0.08286305 1969,577.41797,188.40154,24.163269,46.780457,0.008933682 1969,622.2272,159.4998,16.919495,49.292114,0.0021232455 1969,617.25433,186.61745,21.892334,77.6638,0.0011741108 1969,1.0071021,156.70755,18.197048,79.923386,0.0006584346 1969,610.93384,105.231705,28.21283,132.65298,0.0002644073 1969,537.40326,125.15341,99.0567,182.32071,0.0001811462 1969,375.3149,32.793594,31.49884,66.62942,0.00015980308 1969,1.0240853,74.04476,13.662046,50.653656,0.00015625004 1969,400.25687,44.64714,27.14566,63.90895,0.00015278764 1969,567.69366,220.295,23.400818,51.51448,0.00013495698 1969,617.7063,249.64964,21.440369,80.69072,0.00012957132 1969,1.885363,89.92008,33.317696,183.37164,0.0001028154 1969,616.3459,59.19052,22.800781,78.66943,8.293676e-05 1969,0.7880892,102.91568,18.610846,83.23682,5.965798e-05 1969,601.7615,195.78465,37.385193,180.37675,4.178317e-05 1969,612.72076,328.71606,26.425903,139.06088,2.9262703e-05 1969,0.50018066,200.07793,19.98093,141.60796,2.3363922e-05 1969,609.7836,439.90002,29.363037,65.066284,2.2995382e-05 1969,585.71686,15.022764,53.149353,105.38916,1.1546178e-05 1969,0.5569141,283.9031,19.985624,133.35333,7.734421e-06 1969,0.68160075,362.6351,19.510769,130.69647,5.6257363e-06 1969,2.8294613,196.47078,57.620464,229.24495,5.2088735e-06 1969,585.442,390.67416,53.70465,103.4733,4.7506555e-06 1969,3.042793,343.23984,57.720722,142.401,5.759386e-07 1969,2.3293426,17.337666,57.541363,109.73416,4.9769227e-07 1969,1.4578475,23.431087,19.446291,121.91852,4.686529e-07 1969,420.46182,1.7050749,44.77594,55.89718,1.1023998e-07 1969,1.0619051,9.935332,10.495384,84.599686,4.658996e-08 1969,388.9635,1.0851009,44.536835,54.283077,8.289869e-09 1969,1.76493,3.4779754,30.479847,69.86419,2.2495197e-09 1970,354.9837,203.73883,23.287231,45.21573,0.12412965 1970,621.6195,169.60477,17.52716,55.91461,0.08208698 1970,526.32654,212.35995,33.821106,67.5217,0.034897223 1970,396.30084,209.45003,28.476074,48.19011,0.0143465875 1970,610.9692,106.487595,28.17749,137.26233,0.0059571685 1970,357.18744,181.99863,44.563477,74.88461,0.0032930847 1970,621.65466,203.77968,17.492004,55.310074,0.003289331 1970,428.2947,190.57559,22.1539,47.223145,0.0024815218 1970,0.8457471,147.05858,13.437082,49.86554,0.0014484761 1970,621.2019,100.189064,17.944763,53.84458,0.0010042882 1970,611.4701,183.4376,27.676575,142.6114,0.0004972721 1970,0.8877458,164.2514,18.056736,75.53923,0.0004908333 1970,1.0277597,69.08138,18.516024,79.40974,0.00021684532 1970,574.93,99.43464,63.8136,220.03784,0.00018586616 1970,1.5910319,82.479935,28.03252,144.42984,0.00018245833 1970,617.78986,337.18854,21.356812,82.159454,0.00012979766 1970,612.757,365.2159,26.389648,130.14056,7.9852645e-05 1970,0.61298585,209.10506,18.572937,76.65636,5.6796976e-05 1970,611.38245,14.689271,27.764221,120.67665,4.4331176e-05 1970,1.3035214,163.85286,31.814749,177.47667,3.4845292e-05 1970,300.0505,145.76402,33.957977,67.90143,3.158113e-05 1970,0.5446509,346.03983,19.645935,130.31232,2.0069176e-05 1970,0.68780273,272.36624,19.276281,133.19244,1.4404698e-05 1970,587.7046,253.1844,51.442078,219.69029,1.2850804e-05 1970,0.84418136,442.1985,21.940817,61.462677,3.0193605e-06 1970,2.9355047,302.21774,57.037712,172.09457,1.9428605e-06 1970,2.5344906,426.9315,53.48197,72.383514,4.5883857e-07 1970,585.73413,1.1012012,44.717346,45.88792,4.1714028e-07 1970,1.7544206,19.260328,58.373486,108.22745,1.4812726e-07 1970,0.70399415,13.760944,9.212471,80.20741,3.5643016e-08 1970,515.5982,1.6936198,47.714905,56.477856,1.6227125e-08 1971,367.33322,195.75777,25.950226,47.4917,1.5008544 1971,73.39562,202.5564,23.156845,45.816574,1.1753991 1971,447.0598,180.96912,31.533997,66.927216,0.921805 1971,607.14685,179.34258,31.874268,75.34244,0.01155481 1971,47.059746,183.4023,46.234673,76.308,0.0052439813 1971,413.97098,191.60097,42.79544,70.16109,0.0019232761 1971,620.26416,217.83159,18.882507,60.689377,0.0012425187 1971,586.9671,116.78524,51.828613,205.4278,0.00070408854 1971,1.0898576,183.05135,17.68281,67.912796,0.00041610101 1971,620.87695,121.05623,18.269714,56.820114,0.00026616154 1971,0.8139055,162.42401,13.706127,51.921494,0.00022092529 1971,616.97687,249.64578,22.1698,86.581055,0.00018175531 1971,308.42584,137.2349,32.70276,66.65468,0.0001737891 1971,609.726,68.365204,29.420654,159.54543,0.00013446971 1971,610.92426,6.981322,28.222412,85.98545,0.00011250462 1971,612.9356,366.97195,26.21106,130.50458,4.2248368e-05 1971,0.34886232,227.38394,18.45153,78.99786,3.9893057e-05 1971,612.3023,281.08868,26.84436,148.732,2.6910235e-05 1971,1.482885,174.20541,32.11393,162.4899,2.4836305e-05 1971,1.4361459,100.82683,28.16103,146.68861,2.043996e-05 1971,28.399132,135.69704,91.81996,166.56963,1.8188417e-05 1971,0.7951221,112.62415,13.854494,50.549477,1.122676e-05 1971,0.48323977,308.83636,19.872261,134.38568,9.85842e-06 1971,393.44394,141.36174,105.07446,204.04036,9.231394e-06 1971,0.7257568,85.47459,13.858366,48.676308,7.224139e-06 1971,584.9887,7.103208,45.554077,48.401314,7.084141e-06 1971,567.48737,11.7795315,71.6593,160.37175,5.6360145e-06 1971,0.68869877,422.3322,16.823757,80.00958,3.6451431e-06 1971,3.4447103,266.6401,56.932194,203.71518,1.0139008e-06 1971,2.683641,430.01337,52.97564,69.355774,3.878176e-07 1971,1.1760164,21.66584,20.548954,134.15442,3.8275294e-07 1971,1.3411459,6.278571,23.212719,55.70234,1.0780774e-07 1971,2.6821225,33.070724,59.811462,222.81467,9.865785e-08 1971,7.707515,1.3557016,45.397636,45.041782,9.979904e-09 1971,433.75372,5.2962046,44.355713,48.658806,5.636468e-09 1972,409.98517,178.62349,37.929993,80.78313,0.31098685 1972,606.95197,217.33176,30.997375,77.36902,0.18537748 1972,524.8281,219.57678,35.732178,64.68213,0.12635961 1972,28.248549,209.01266,28.452337,47.326477,0.017692672 1972,602.19165,220.4323,20.345154,47.668594,0.0074899136 1972,619.5625,106.20785,19.584167,56.20614,0.0015605625 1972,624.0102,258.56613,15.136475,52.591522,0.0005518352 1972,416.27838,218.84595,21.957977,48.871674,0.00046911245 1972,609.831,68.6668,29.315674,130.84702,0.0003848949 1972,588.3447,204.08635,50.313232,201.0403,0.00037478455 1972,7.2216425,177.50154,46.15972,88.09355,0.00036551035 1972,1.87945,58.216343,25.862392,70.69818,0.0003377957 1972,391.59406,148.48038,73.53647,145.02048,0.00030143425 1972,312.92752,144.52194,33.7453,64.849396,0.00011527445 1972,1.2032511,207.67735,17.48863,74.014694,8.5529304e-05 1972,616.08545,33.631298,23.061218,78.98538,5.878636e-05 1972,612.96576,300.4862,26.180908,147.98297,3.4614903e-05 1972,610.08905,439.16104,29.057617,65.71976,2.7443713e-05 1972,0.65380615,235.05246,19.121376,134.1513,2.3346061e-05 1972,567.3031,31.211088,71.84357,132.12329,2.0716867e-05 1972,5.6593003,129.41524,77.94731,183.39882,1.5317544e-05 1972,0.7304175,115.81353,13.812516,49.168022,1.52317e-05 1972,0.5062345,335.97156,19.625376,133.71237,1.5020673e-05 1972,1.8407114,92.20452,29.314837,170.79236,1.4610499e-05 1972,1.1208268,152.46198,18.611736,79.52254,6.5659206e-06 1972,586.0924,394.3829,53.05426,99.64728,4.8739466e-06 1972,0.6991073,421.78183,16.808435,80.092926,4.7588173e-06 1972,4.2766,201.92854,55.781395,233.70467,4.6894465e-06 1972,2.3554964,15.272354,58.749355,109.616554,1.9356034e-06 1972,4.8861656,352.11633,79.497894,133.7258,7.348769e-07 1972,364.94336,78.12052,139.72186,266.27612,5.936431e-07 1972,511.47528,27.447403,84.11505,205.78453,5.5807186e-07 1972,2.6799593,428.3613,53.06548,70.580475,4.7087318e-07 1972,422.46838,2.6842334,43.476624,53.314587,2.4627502e-07 1972,523.93555,5.318828,44.421326,56.131004,5.848819e-08 1972,419.1223,0.0,91.246704,179.75972,3.642943e-08 1972,1.7654965,3.7646484,30.496302,66.28706,3.1638354e-09 1972,387.97388,0.0,48.39624,46.853138,2.425089e-09 1973,422.488,208.59206,23.046387,46.085266,89.048164 1973,534.09546,222.74724,19.579895,46.0103,0.017322836 1973,547.60486,227.68181,22.180298,49.260056,0.0067526796 1973,528.4531,168.14848,44.605835,140.88002,0.0027078416 1973,513.88727,222.53128,35.18335,77.340485,0.0014952905 1973,401.15775,170.04118,62.89096,103.819565,0.00054011727 1973,621.9011,134.88022,17.245544,51.02585,0.0005137299 1973,0.817771,155.85083,13.898079,48.76129,0.00050122483 1973,2.5120687,71.1748,34.971035,71.35792,0.0003594362 1973,617.7721,243.45058,21.374573,81.583206,0.0002756545 1973,0.6053304,196.57155,18.103022,72.25743,0.00027093219 1973,504.20007,232.40396,24.451233,52.95819,0.00025728028 1973,1.135586,101.273476,20.400007,135.35019,0.00024185993 1973,0.6242041,109.564766,14.331329,53.39631,0.00019205974 1973,612.48254,167.75858,26.664124,126.912964,0.00015713694 1973,310.91953,154.79245,24.70459,47.223923,0.0001289102 1973,610.5624,69.68911,28.58429,149.1485,0.00011655844 1973,612.6788,361.9371,26.467896,132.2781,9.1742564e-05 1973,499.21466,136.19604,111.42499,211.2106,7.6131146e-05 1973,0.472015,225.1087,19.571774,140.39926,6.1437255e-05 1973,586.2695,106.05356,52.41217,232.20032,5.6461602e-05 1973,612.3077,270.50934,26.83899,145.30215,4.683127e-05 1973,0.36678955,341.23157,18.450537,74.0296,4.5849156e-05 1973,584.14636,11.600371,55.000305,128.18538,2.7328799e-05 1973,3.3356626,146.06386,57.26848,210.2566,2.3847831e-05 1973,0.47962728,382.19992,18.458178,74.00708,1.00356165e-05 1973,381.6002,128.68497,138.72098,208.30139,9.46337e-06 1973,1.0621485,295.8124,32.98572,170.8139,4.9183795e-06 1973,59.550217,56.598824,83.73479,188.39963,4.1239705e-06 1973,0.6887508,420.98395,16.988194,81.46118,4.083862e-06 1973,4.9133854,352.13318,79.124405,133.66797,1.2952318e-06 1973,2.5850716,38.537964,81.594864,222.05396,1.1213573e-06 1973,2.7093458,427.80502,53.395206,71.51196,4.2558673e-07 1973,1.0419642,6.682936,12.976716,80.09356,2.864304e-07 1973,322.84396,425.97525,72.41922,76.88873,2.6608572e-07 1973,1.6243018,2.3350523,38.039978,49.79975,2.6630733e-09 1974,415.22687,204.59705,20.494537,45.624573,99.08165 1974,449.8212,208.74825,23.67334,49.934097,72.13136 1974,445.51038,166.70592,29.891815,73.34758,4.93703 1974,604.93616,186.08258,34.21051,73.244965,0.004214146 1974,427.5831,203.61678,21.817902,47.046722,0.0037982077 1974,473.02148,178.40656,39.277466,81.43964,0.0016011602 1974,402.33804,179.25198,41.328278,96.43762,0.0013460619 1974,624.11346,174.16214,15.033203,47.482574,0.00081034296 1974,0.925118,166.41783,19.485863,136.08769,0.0004365964 1974,0.8290145,145.67058,14.0601425,52.618027,0.0004304142 1974,610.40314,75.48932,28.74353,156.20049,0.00036351432 1974,0.6762948,98.56241,14.123068,52.92224,0.0002618655 1974,293.66757,145.98029,32.98639,62.61473,0.00025946143 1974,1.0344479,186.08186,13.221989,48.67392,0.00025220352 1974,618.24384,395.53226,20.902832,78.40912,0.00022535099 1974,1.1999178,89.42436,20.060413,135.07962,0.00019214676 1974,617.79584,315.1079,21.35083,78.79993,0.000153328 1974,621.5976,95.89249,17.549072,52.73172,0.00014667098 1974,585.16675,121.95776,53.97992,201.48032,0.00013176825 1974,0.596569,247.20097,13.918659,49.91426,0.0001286194 1974,617.7708,241.58339,21.375854,83.54036,0.00010636721 1974,425.92105,161.63225,77.918915,151.54405,5.807317e-05 1974,0.54599446,266.19272,18.464045,76.07547,3.481566e-05 1974,609.7824,440.20605,29.364258,64.22302,2.6892581e-05 1974,3.0788574,169.49959,57.358154,218.94646,1.98222e-05 1974,602.50836,278.84412,36.638306,191.06589,1.8528553e-05 1974,0.5594499,386.00037,18.357208,72.50995,1.6902039e-05 1974,0.4274748,308.21225,18.532887,73.89551,1.4579071e-05 1974,614.9168,28.769691,24.229858,94.49505,6.289443e-06 1974,0.79550296,441.8043,22.11632,62.125824,4.539224e-06 1974,2.0107112,36.934006,62.31627,225.62996,4.1882586e-06 1974,1.1269922,330.36307,32.994488,158.07544,3.6357626e-06 1974,1.0915804,20.164186,30.743603,134.63991,1.2685616e-07 1974,0.6056763,8.179935,10.512572,84.974304,3.2889602e-08 1975,439.79297,215.09033,25.374908,61.444427,99.848564 1975,500.88116,221.58928,28.591187,63.312485,98.1644 1975,547.99603,216.90553,22.731506,52.71028,62.050396 1975,613.30383,226.66862,25.842834,61.270798,0.026203588 1975,423.45892,219.53258,22.184631,51.37651,0.0060851797 1975,424.66943,187.60919,57.05197,104.51865,0.0010945374 1975,1.2247299,166.94089,18.594004,79.966354,0.0006694287 1975,528.738,167.75616,60.289795,122.89096,0.00064147165 1975,391.64026,173.85599,35.085938,75.639435,0.00053356105 1975,0.9794739,218.70961,13.479929,48.72139,0.00036974478 1975,602.653,145.35664,36.493652,175.58897,0.00033730577 1975,621.45514,78.84706,17.691528,54.46434,0.0002345949 1975,482.87943,173.52687,70.30588,152.44945,0.00017567106 1975,1.2517546,162.23987,34.569927,170.78088,8.80858e-05 1975,610.46686,55.557873,28.67981,143.86362,7.93585e-05 1975,612.9289,331.7676,26.217773,137.2272,5.375312e-05 1975,0.48896077,241.31108,18.602402,77.843796,3.4077595e-05 1975,609.96484,441.28833,29.181824,63.21631,3.0974254e-05 1975,1.2108212,74.459984,18.397186,72.92481,2.8775634e-05 1975,387.7135,137.27422,143.81378,225.24492,2.8003838e-05 1975,492.79315,129.47064,142.07477,222.12872,2.7785041e-05 1975,0.6384408,348.54285,19.756609,130.81723,1.2321297e-05 1975,0.7377344,256.67413,28.473963,150.79727,9.896967e-06 1975,597.10065,6.5385256,42.04602,87.527466,7.3283354e-06 1975,585.71436,394.52203,53.432312,100.58502,6.2473696e-06 1975,0.8425383,442.47226,21.993034,61.161285,3.755054e-06 1975,2.5366278,235.61958,57.665554,235.7971,3.6319434e-06 1975,2.7606657,395.1308,56.30388,99.02353,9.0861914e-07 1975,1.4364926,48.539043,29.61259,155.77255,4.3280687e-07 1975,2.100039,11.799408,58.35845,118.95187,4.5375227e-08 1975,0.68445194,8.899329,11.327238,84.465385,2.7536537e-08 1975,301.33112,4.548506,42.75284,46.779617,1.7240767e-08 1976,500.15048,216.5731,37.30716,84.79433,99.82819 1976,519.8859,225.0588,26.497864,60.33142,0.0069918423 1976,609.55774,87.16191,29.588928,133.89037,0.0028788454 1976,620.3445,112.8005,18.802185,59.665398,0.002082366 1976,1.1050725,122.0732,18.6545,79.99963,0.001163455 1976,620.9105,74.21434,18.236145,61.18936,0.0007754814 1976,447.41943,205.37932,24.884064,52.80742,0.00075239275 1976,621.4264,151.36353,17.720276,56.890564,0.0006038106 1976,482.38116,184.30565,75.95068,146.39821,0.0005975084 1976,429.9496,224.7302,24.717499,57.44745,0.0004399317 1976,617.8087,181.00725,21.337952,77.8221,0.00039772558 1976,258.35178,168.68153,25.348328,46.26866,0.00025751177 1976,618.31616,387.38092,20.830505,80.43921,0.00023152884 1976,586.37897,108.83133,52.577454,242.37457,0.00020020823 1976,617.937,327.99408,21.209656,80.90848,0.00015129347 1976,617.4267,238.60709,21.71997,87.09564,0.00012960444 1976,567.7668,29.015236,70.748474,141.87518,8.277429e-05 1976,1.7447526,149.67343,35.15446,166.24847,7.163027e-05 1976,1.1168857,219.2238,18.07815,74.23427,5.960975e-05 1976,601.5672,236.8688,37.579468,199.65,3.6641497e-05 1976,606.80383,6.5507617,32.342834,56.042286,2.8766417e-05 1976,609.90155,439.20673,29.245117,65.4436,2.3461766e-05 1976,0.57922775,262.68942,19.453007,135.53516,1.4305132e-05 1976,0.41186523,356.7038,18.448162,72.7337,1.1360192e-05 1976,585.9921,392.94504,53.15454,102.002014,5.7745356e-06 1976,0.67838705,403.92438,20.523117,96.39111,3.823518e-06 1976,1.0085092,301.73572,33.163963,167.51096,2.616964e-06 1976,5.05556,353.5331,79.73516,133.07285,6.3084474e-07 1976,1.4627475,36.43162,36.036694,182.87364,5.431867e-07 1976,1.1618848,13.465059,38.05053,75.52282,5.1865623e-08 1976,570.0445,5.796745,45.62738,51.24392,4.2150532e-08 1976,11.194989,4.4125943,45.402298,49.033207,1.3441371e-08 1976,0.7590617,0.77500325,21.291508,46.537453,2.424178e-09 1976,533.1344,1.5438917,44.897095,53.48909,2.1445168e-10 1977,450.38892,180.78688,33.929443,75.66875,0.037833788 1977,388.0119,192.24193,24.740509,46.526016,0.03703378 1977,615.15173,136.28163,23.994934,90.77942,0.0011711373 1977,599.24677,139.69896,39.188538,188.25594,0.00083090866 1977,615.91046,248.0563,23.236206,89.53412,0.00026567717 1977,616.923,190.39311,22.223694,91.706894,0.00025565748 1977,244.34982,149.8034,25.073029,46.844757,0.0002296151 1977,606.702,7.4526043,32.44464,116.002556,0.00021608973 1977,618.236,368.26318,20.910645,80.530365,0.00012724866 1977,1.4086792,117.55872,18.118355,74.39037,4.236764e-05 1977,609.9696,438.9456,29.177063,66.046875,3.5499022e-05 1977,602.7403,305.1992,36.406372,180.95557,3.1722033e-05 1977,0.5794804,193.07137,13.769231,48.992447,1.8504432e-05 1977,0.76968104,153.2106,20.174074,133.30063,1.5242773e-05 1977,427.57516,125.95856,75.19229,162.18481,1.3628811e-05 1977,0.7218156,331.80396,17.871674,73.56244,1.31532925e-05 1977,0.7572233,378.6819,18.67244,116.69931,1.2135908e-05 1977,318.66925,66.79801,26.810425,56.919167,9.6280655e-06 1977,328.34158,130.52173,87.0029,162.78317,7.688032e-06 1977,1.6935971,74.72707,18.247074,71.78788,7.369939e-06 1977,0.5983659,276.6709,18.29149,74.24292,7.358814e-06 1977,587.01575,5.069346,46.292114,49.04954,4.2485053e-06 1977,1.2232707,292.4571,31.98912,166.57135,2.530925e-06 1977,3.4761295,111.12912,57.578156,214.03845,1.5680828e-06 1977,3.075524,394.01553,55.56231,96.48819,1.1412951e-06 1977,402.0814,4.2208724,43.423767,55.487568,1.8790082e-07 1977,360.68936,1.9401953,44.92148,55.650444,1.00938905e-07 1977,2.1561654,24.326706,31.899944,137.73569,5.4427534e-08 1977,544.7067,5.471494,47.197327,55.873676,3.0160134e-08 1977,0.9560958,10.557028,10.60354,79.0341,1.7606919e-08 1977,484.19388,3.4958172,46.915802,51.04093,3.1819183e-09 1977,1.6606007,5.5353746,30.819323,59.289692,2.0428268e-09 1977,516.9438,2.3934865,46.80127,57.148964,5.4788485e-10 1978,576.2442,110.84863,61.312622,181.33865,0.004082884 1978,242.76292,160.93364,25.252457,47.532913,0.002517692 1978,1.5875146,104.086525,21.520664,129.2327,0.0019635123 1978,0.95212483,130.23868,14.084019,52.80069,0.0016646944 1978,1.0433321,193.18951,13.233097,46.516174,0.0015420642 1978,442.49585,195.88235,32.52603,72.21188,0.0011097991 1978,332.11734,169.07863,43.599792,79.82442,0.0010259638 1978,620.9406,234.7853,18.206055,53.060684,0.00045677644 1978,614.1024,184.62883,24.785828,89.800156,0.00039501788 1978,614.6721,136.78116,24.474548,87.28856,0.00036998183 1978,617.4641,276.51648,21.682556,83.32068,0.000116255374 1978,0.8775895,173.33745,20.059927,130.75395,8.6248954e-05 1978,617.0777,57.25055,22.06897,79.574844,7.596535e-05 1978,312.00684,79.487686,77.3454,189.79808,6.8176385e-05 1978,429.85153,90.65282,44.05072,160.07797,6.328696e-05 1978,612.7355,306.03537,26.411194,140.01694,5.354413e-05 1978,314.83835,50.60849,19.848114,46.276268,5.1183848e-05 1978,330.50076,42.276455,29.250671,71.094986,4.418851e-05 1978,604.6269,5.1918783,34.519775,56.450237,4.4113604e-05 1978,620.4728,25.578236,18.67389,58.343014,2.639971e-05 1978,599.70544,185.47789,39.432556,208.60918,2.6147345e-05 1978,609.6765,436.58432,29.470154,68.11511,2.3039021e-05 1978,306.94617,47.564793,37.380493,97.112274,2.147768e-05 1978,3.5348244,133.11954,56.421673,204.8675,1.7704806e-05 1978,384.6509,28.659105,29.021393,68.27288,1.3187532e-05 1978,0.73698246,368.87,17.738224,128.8349,1.2780454e-05 1978,0.6517367,263.98828,19.703094,135.47104,1.17288755e-05 1978,583.6644,9.21543,55.452576,114.6224,7.4486543e-06 1978,572.9942,363.19345,66.152466,123.7262,6.996963e-06 1978,345.5055,33.080727,27.011383,66.89948,2.288747e-06 1978,2.8479004,393.30475,55.361893,98.93582,1.6421395e-06 1978,1.7830795,27.581297,35.06164,152.45387,3.2542113e-07 1978,286.7155,2.5771713,44.964172,57.916046,1.6801481e-07 1978,282.64148,1.1035677,84.464386,202.70432,5.35925e-08 1978,0.870518,9.841768,10.400697,81.1365,4.3352212e-08 1978,359.10248,5.2489567,45.72119,51.141716,2.0945935e-08 1978,313.6574,3.2015023,46.228638,49.993004,1.6279204e-08 1978,448.08502,3.1278322,43.886566,49.82651,1.5535592e-08 1978,574.37885,1.191198,46.714478,47.111233,8.288763e-09 1979,391.37592,217.95369,22.841919,49.829422,1.9592483 1979,493.26935,46.51887,30.558777,72.84236,0.0077417754 1979,240.4432,217.30537,30.460815,52.590714,0.005729168 1979,351.73923,51.4248,28.71457,55.438206,0.0044163205 1979,452.1299,209.6131,32.0141,68.43771,0.0029310922 1979,358.49518,197.7131,43.045807,68.134186,0.0010506172 1979,339.00958,69.06465,27.055573,56.77279,0.0006733613 1979,583.0066,0.0,55.974915,140.37755,0.00042836223 1979,379.05933,123.670395,81.183716,169.88914,0.00018714965 1979,347.0431,67.26201,39.466553,87.18141,0.00016427619 1979,610.82263,159.40654,28.324036,124.68663,0.0001594423 1979,617.54913,244.50214,21.597534,79.19229,0.0001583168 1979,596.893,3.3410661,42.253662,53.12294,0.0001492338 1979,0.66826093,208.19339,17.955984,70.12244,9.219409e-05 1979,1.3662248,129.09839,18.798868,83.002625,6.0074985e-05 1979,612.1878,333.9771,26.958862,137.47696,5.4190263e-05 1979,609.39233,436.17938,29.754333,68.51715,3.9992938e-05 1979,2.406364,91.90862,34.9417,167.66235,3.2447984e-05 1979,588.0492,183.33186,51.097473,218.06456,3.1543834e-05 1979,0.5007959,326.58786,18.659739,133.84558,1.7853916e-05 1979,0.8880192,212.34727,28.225412,140.74516,1.0738917e-05 1979,3.572998,143.01161,56.62221,208.25072,9.476754e-06 1979,0.46023276,417.08002,17.031717,84.74899,9.416376e-06 1979,477.5958,15.872175,39.45761,81.95985,5.5955798e-06 1979,2.8884897,317.68976,57.33109,160.14212,1.4369981e-06 1979,570.27673,84.751945,27.237427,58.510033,1.3680321e-06 1979,442.7569,3.4098308,45.131226,129.03528,4.8221705e-07 1979,2.1159692,55.60978,21.658587,107.51969,2.658235e-07 1979,346.44873,4.609961,48.95819,51.908527,1.7557565e-07 1979,2.5297136,15.097826,58.48081,118.83551,8.503021e-08 1979,467.13043,2.7736232,65.821045,49.153473,5.3744614e-08 1979,430.4757,2.3740268,46.587738,53.34997,3.035213e-08 1979,321.63483,3.9195182,44.248688,46.677868,2.7692018e-08 1979,0.9620162,11.032901,11.005424,80.96039,1.7081558e-08 1979,510.9057,2.9109392,45.140625,48.511044,5.665192e-09 1979,1.42007,2.5257862,31.149319,46.639217,2.6208762e-09 1980,502.9192,199.50662,42.843506,90.74063,5.186289 1980,438.0433,214.34964,25.258728,55.455353,0.71047455 1980,482.22397,209.05624,33.357086,81.72208,0.17189032 1980,353.1041,186.4086,23.654846,51.807922,0.023547728 1980,335.86816,176.55833,24.93695,56.282013,0.015259379 1980,338.28738,143.37578,46.258392,96.393295,0.011866818 1980,390.10333,182.41885,39.985107,70.57378,0.0043097436 1980,468.06778,193.81602,27.598755,62.062027,0.0025084654 1980,471.70346,125.407776,103.88852,206.16843,0.0017671959 1980,413.1264,47.68897,28.50064,59.473545,0.0013595773 1980,370.67938,100.02388,28.063751,60.206055,0.0012089409 1980,465.67737,102.16335,45.32547,179.08109,0.0007557857 1980,610.3291,129.15738,28.621826,131.2261,0.0003698083 1980,0.70542485,193.54391,17.960403,70.03726,0.00027538722 1980,617.86316,216.18845,21.283508,80.50589,0.00013615369 1980,435.90106,43.98777,37.64749,90.08039,0.00012695132 1980,498.85028,85.69956,45.99237,131.80063,9.380378e-05 1980,612.97437,347.44394,26.172302,138.5676,6.3715845e-05 1980,374.95987,118.77938,82.835236,178.41101,4.181211e-05 1980,1.4463412,101.24448,19.31423,131.71317,4.0427796e-05 1980,609.69556,438.23465,29.45111,66.387695,3.9762854e-05 1980,1.2985644,160.47087,32.48052,167.15712,1.8970333e-05 1980,603.11444,210.93207,36.032227,190.11386,1.8062094e-05 1980,608.1994,0.0,30.947266,166.59808,1.6379581e-05 1980,0.4325513,255.84691,20.21473,134.70457,8.445745e-06 1980,0.68693036,391.67368,18.711533,106.96924,5.5428927e-06 1980,488.19067,0.0,52.15033,130.44618,4.7900617e-06 1980,516.2147,15.891566,40.171753,89.11199,2.2450267e-06 1980,2.8915431,220.49078,57.471413,222.8273,2.077467e-06 1980,3.0462518,71.85573,58.63957,217.56657,6.1013554e-07 1980,2.9587224,395.41296,56.38182,97.98581,5.7600886e-07 1980,1.8802075,23.422781,20.007645,142.26003,3.355827e-07 1980,406.71063,1.8780566,45.32547,50.988575,2.2529743e-07 1980,2.6687272,13.829928,59.419567,123.433304,9.400397e-08 1980,478.096,0.16007161,47.99121,56.041855,9.291162e-08 1980,435.86127,0.39034668,47.061462,51.329254,6.518622e-08 1980,375.79837,0.63988936,43.048676,49.126534,5.4763255e-08 1980,1.27698,8.765362,13.580901,77.04811,1.6026757e-08 1980,2.0805647,2.987518,31.444483,46.801838,1.6460474e-09 1980,516.61615,0.0,49.066956,48.634277,7.7741613e-10 1981,431.78104,203.61691,24.095642,49.956894,99.1255 1981,396.9492,70.19177,37.299377,74.44237,0.19388756 1981,610.84015,233.23102,27.422974,53.67691,0.102962196 1981,386.2795,201.78114,22.953766,46.954147,0.08650701 1981,352.87265,172.20613,31.707794,72.382996,0.012747868 1981,544.62665,243.46472,24.273071,50.49991,0.0047559896 1981,364.7632,144.22217,41.61084,107.63075,0.0021956756 1981,0.7086963,130.82935,19.550348,89.30055,0.0018831854 1981,377.63306,182.55328,18.748016,45.317993,0.0017630884 1981,617.37885,165.20714,21.767822,89.03136,0.001224077 1981,412.70114,162.40459,61.605377,112.85234,0.0007706759 1981,599.1717,170.89923,39.54895,159.96307,0.00054873014 1981,0.6059111,208.09364,13.6805315,49.645187,0.00044291295 1981,617.1366,262.4478,22.01007,90.340515,0.00026916497 1981,280.00415,154.60406,24.940552,45.50096,0.00026038056 1981,0.9821159,155.22638,28.436537,135.90558,0.00022345659 1981,3.7611508,104.14832,57.70947,202.79712,5.7912457e-05 1981,612.3544,354.7189,26.792297,135.31992,5.7672474e-05 1981,616.53613,111.489235,22.610535,82.65325,5.4483564e-05 1981,616.3315,26.726273,22.815186,92.38791,2.0547259e-05 1981,381.75272,103.30935,135.35544,238.11081,1.8278177e-05 1981,0.43334392,236.27849,18.43772,77.68187,1.793675e-05 1981,0.5629248,326.34653,19.854008,131.70651,9.619328e-06 1981,0.48099366,289.0678,18.359325,72.56427,9.207198e-06 1981,0.6847168,421.7632,16.87366,80.44769,3.8024925e-06 1981,598.6616,0.0,40.485046,200.71405,2.674551e-06 1981,2.7702832,266.3075,57.558327,207.48883,1.3909544e-06 1981,2.7107763,429.3235,53.33313,70.05292,3.6831605e-07 1981,1.5074016,20.438366,20.452415,144.59013,3.3879388e-07 1981,2.0881803,11.164206,59.806286,127.62922,3.188446e-07 1981,320.3999,2.9518816,44.117584,45.997543,9.558152e-10 1982,509.16428,214.40541,25.859283,49.45015,99.728264 1982,463.21143,212.0819,22.43515,50.758133,0.30480945 1982,473.29047,48.344322,31.49112,64.203285,0.28779304 1982,485.46127,50.489315,41.089752,89.57556,0.009710096 1982,414.03314,194.85936,31.462128,66.700455,0.005169039 1982,621.7239,189.72362,17.42279,49.378784,0.0033218472 1982,617.09985,56.868282,22.046814,77.271515,0.0016120876 1982,395.77554,200.36478,22.427032,47.18271,0.0010067804 1982,611.3297,144.271,27.816956,129.82217,0.00027637993 1982,621.6623,240.27983,17.484375,54.254227,0.00024332808 1982,617.8791,315.16592,21.267578,78.618835,0.0001111567 1982,1.4072257,102.86736,18.804379,137.54846,0.00010232318 1982,493.8283,187.1825,62.586487,98.1124,9.518489e-05 1982,585.39764,13.798695,53.339844,102.29666,7.132998e-05 1982,612.5971,365.62863,26.54956,130.41003,4.46396e-05 1982,0.67772055,219.42175,18.200981,72.77426,2.8327835e-05 1982,604.57556,223.1024,34.571106,163.69185,2.3132237e-05 1982,4.0500813,101.934,56.41356,215.66684,1.4914232e-05 1982,0.50467205,303.79294,18.33123,72.08197,9.3650415e-06 1982,0.65573406,391.0426,18.896378,107.71527,5.851849e-06 1982,1.1466146,207.55656,33.78423,175.85982,5.636047e-06 1982,458.03552,115.37013,146.3227,246.61113,4.1923427e-06 1982,446.8419,23.48166,88.88956,165.9052,3.7622876e-06 1982,2.9484751,327.76822,57.61988,154.27493,8.226935e-07 1982,2.766932,16.689213,59.152527,120.77582,5.1837554e-07 1982,416.11264,39.501484,47.232178,175.84084,1.9794342e-07 1982,1.1381185,10.772465,14.376884,89.600876,5.0906028e-08 1982,1.0039324,3.2021143,41.79334,51.598377,7.984266e-09 1982,388.82953,5.446447,42.326355,47.70378,3.1759275e-09 1983,609.233,222.18782,29.913696,71.256454,0.20769078 1983,504.3683,196.036,32.29651,72.95265,0.14067098 1983,527.8146,206.0002,35.1109,71.613846,0.048258953 1983,430.61578,197.95673,23.003387,46.526062,0.011041643 1983,621.6029,191.5738,17.543762,57.37581,0.0067942115 1983,622.1649,253.34625,16.98175,57.23532,0.0038325808 1983,530.41876,49.690643,30.286743,72.06057,0.0037968606 1983,586.07874,113.466225,52.740417,209.7991,0.0020983275 1983,340.99432,151.03398,25.100128,48.662033,0.001132139 1983,469.0275,192.57799,23.604584,46.92476,0.0009035124 1983,420.85196,59.13612,29.304657,66.217636,0.00069057045 1983,542.38214,66.89416,38.057312,72.640114,0.0005845936 1983,1.3263363,75.06483,19.917337,148.88391,0.00030520975 1983,616.1326,58.28589,23.014038,72.09331,0.00025522214 1983,510.68054,174.4871,24.515686,54.300613,0.00023234946 1983,602.54706,220.9218,36.59961,219.74864,0.00019511813 1983,0.77703047,173.42604,18.421331,77.44301,0.00015748618 1983,621.27246,122.62792,17.874207,52.18914,0.00015273986 1983,391.80673,62.416767,39.948822,83.70271,0.00013292616 1983,617.7399,386.0975,21.406738,81.02985,9.910649e-05 1983,605.3114,0.2625228,33.835266,63.77006,7.197147e-05 1983,0.45070395,222.49435,18.252607,77.654755,4.692972e-05 1983,583.8538,5.9521875,54.96338,119.98529,2.5510044e-05 1983,609.64526,438.8643,29.501404,65.618286,2.4090867e-05 1983,493.11966,92.7722,44.353363,156.15541,1.4397089e-05 1983,0.6167196,339.22192,19.31425,130.80716,1.31042125e-05 1983,1.2506039,154.58086,33.628742,175.08092,1.0777289e-05 1983,0.49818605,275.0543,18.364624,74.07922,9.057748e-06 1983,572.3639,355.44528,66.782776,130.66281,6.9724365e-06 1983,475.59662,74.80034,25.958862,58.87137,5.2611545e-06 1983,0.66315347,420.9595,17.097599,81.253174,3.2961163e-06 1983,2.6504347,13.097923,58.2623,117.427895,2.3504804e-06 1983,3.0160792,241.82797,57.240063,220.14093,1.2237073e-06 1983,501.06622,6.3888674,79.2923,178.17856,7.99273e-07 1983,2.6429396,391.9284,56.255383,101.082245,7.430729e-07 1983,2.8701792,56.940205,58.852676,219.06636,6.6626285e-07 1983,1.117883,7.930384,14.491013,87.51817,1.8656878e-07 1983,541.66187,4.348825,47.601624,60.027122,1.1503336e-07 1983,490.98788,2.5178843,45.484344,53.226467,1.0273635e-07 1983,413.511,4.683314,42.112976,49.888947,7.494535e-08 1983,1.5319824,4.592497,44.105633,54.53965,5.274573e-08 1983,382.74164,2.9713118,43.523163,49.993877,2.0404682e-08 1983,25.047665,3.1856446,47.793736,57.354954,1.7569539e-09 1983,51.735386,1.954056,45.27992,53.941303,2.5498653e-10 1984,482.2031,202.56271,25.235718,53.559906,2.3552866 1984,533.65485,192.1443,35.64612,82.29808,0.14326225 1984,526.45734,108.73926,59.39258,170.10013,0.013844484 1984,553.4431,149.70067,20.689636,45.663055,0.004972758 1984,560.19275,154.11469,44.4209,114.82022,0.0034625437 1984,552.9371,230.7752,19.506714,45.651154,0.0015541927 1984,540.50134,135.5119,31.025024,90.65277,0.0008133501 1984,610.22266,146.69688,28.924011,132.00664,0.00054980343 1984,1.0367953,188.29337,18.128513,75.875275,0.00035377426 1984,592.8224,0.0,45.08362,92.96137,0.00017105872 1984,493.33023,42.80255,140.42776,268.33148,0.00016599229 1984,1.0010108,115.334404,13.725822,51.343758,0.00014988906 1984,1.0253687,113.537506,21.144234,123.19394,0.00014770296 1984,0.74840254,219.92227,19.812357,134.7771,0.00010890635 1984,611.6829,237.89293,27.463745,148.08635,9.412655e-05 1984,1.9311882,59.27913,18.903671,80.09755,9.3143404e-05 1984,617.6821,345.95294,21.464539,82.67044,7.809129e-05 1984,610.94354,48.564316,28.203125,157.1941,4.2347405e-05 1984,3.5115187,104.82657,57.138508,223.11029,3.3089607e-05 1984,378.1056,105.695885,141.20972,226.43167,2.6143107e-05 1984,609.92645,440.28006,29.220215,64.47366,2.3271949e-05 1984,0.44269776,333.91473,19.921951,136.95413,1.7025961e-05 1984,585.4341,391.4606,53.712585,102.73685,7.668788e-06 1984,2.3704526,12.341999,59.396618,120.782074,5.9405115e-06 1984,2.8874936,236.4986,56.759174,228.38684,4.4968606e-06 1984,0.7151408,421.57205,16.739664,80.528625,3.7918824e-06 1984,550.19806,0.0,88.94861,179.51282,2.2027255e-06 1984,1.2483215,7.5764747,12.442854,90.71631,1.1089486e-06 1984,2.7972608,391.2833,56.367363,101.76672,7.6323045e-07 1984,1.4991227,3.1310418,42.3036,59.84305,2.6216926e-08 1984,435.63937,1.6113656,44.687317,53.989796,1.3432554e-08 1984,570.98535,0.6334912,45.57306,51.193943,4.057721e-09 1984,39.049305,1.3849187,42.182888,52.1942,1.3843234e-11 1985,580.4154,166.84889,40.77533,112.94304,0.53303975 1985,488.6263,213.67278,26.04477,46.251144,0.1893561 1985,434.64706,193.35745,40.110962,68.36429,0.008798822 1985,621.7765,216.19493,17.370178,54.541397,0.006126801 1985,622.3608,178.52888,16.785889,49.62883,0.0053958055 1985,609.538,135.96146,29.608643,127.78995,0.0038132402 1985,620.21454,122.35249,18.932129,52.6474,0.0029762636 1985,545.423,80.47431,79.56433,201.54904,0.0014044837 1985,478.67725,162.58081,42.507202,111.565125,0.0009841773 1985,445.2957,51.18732,26.781311,59.59461,0.0009004329 1985,610.8152,202.5374,28.331482,135.2252,0.00088534696 1985,587.8737,231.2736,22.791626,53.019424,0.0005146675 1985,612.6796,6.070726,26.467041,89.84515,0.00033974965 1985,1.0741862,213.5022,18.280836,73.02423,0.00012618316 1985,1.3145622,100.06036,19.874668,144.13998,9.596931e-05 1985,617.7945,334.06146,21.352173,80.01367,9.260524e-05 1985,0.8406421,109.75761,13.957598,52.426903,7.488926e-05 1985,612.5905,365.38104,26.556152,130.66882,4.268332e-05 1985,601.4314,245.56194,37.71527,215.16563,4.0444338e-05 1985,1.7447461,60.62345,18.995394,77.087105,3.1877124e-05 1985,417.88263,154.66913,84.98926,152.81995,2.4401823e-05 1985,0.4415088,251.51776,19.366283,139.33517,2.3489796e-05 1985,1.5068116,175.87842,32.782375,163.29712,2.0605028e-05 1985,580.64954,0.0,58.49713,215.10365,1.3469581e-05 1985,0.5408594,360.25168,19.90186,133.60147,9.879746e-06 1985,2.7313917,36.30969,60.423786,239.44028,3.4460743e-06 1985,2.7397804,244.48116,57.31535,222.26115,3.2639473e-06 1985,2.9190202,395.0009,56.609444,97.91095,9.048143e-07 1985,1.985516,8.640069,39.366314,83.789246,4.5293626e-07 1985,566.0059,22.454985,38.384827,82.752335,1.04130336e-07 1985,490.52252,0.0,48.97821,144.9809,6.095118e-08 1985,523.52264,18.630775,39.67169,72.907364,3.799922e-08 1985,479.2407,1.3586166,42.676117,52.65483,1.4170025e-08 1985,1.1620224,0.0,21.603285,47.897617,7.723472e-09 1985,345.19876,2.2989535,62.868286,47.34076,4.8280286e-09 1985,502.09912,0.0,46.52649,52.809307,1.386653e-09 1986,489.02356,205.82022,23.620178,48.232758,99.41327 1986,607.8115,209.76251,30.82074,74.48105,4.998673 1986,620.65936,184.34326,18.487305,62.928925,0.0030775715 1986,599.78845,92.581604,39.358215,207.66388,0.002071982 1986,473.96002,171.80045,59.867737,102.20001,0.0014006543 1986,0.7263241,199.50467,13.7135,52.406723,0.0012843388 1986,621.3927,121.40431,17.753967,52.474518,0.00038857115 1986,0.7230599,189.64105,19.858065,126.79465,0.00014989049 1986,542.7618,25.899057,27.769653,82.27431,0.00011174818 1986,608.5784,16.12545,30.568237,113.52677,0.00010952474 1986,0.8074886,150.38286,18.564802,79.140015,8.633463e-05 1986,617.7634,321.44226,21.38324,78.47763,6.117754e-05 1986,604.4914,219.80498,34.655273,185.31154,5.914858e-05 1986,612.72516,366.0059,26.421509,130.07913,4.4067474e-05 1986,1.6354574,116.64172,33.86649,171.67883,3.694427e-05 1986,1.0898365,81.95925,19.366194,83.05804,2.8231767e-05 1986,1.2606169,221.20459,33.022835,177.14801,1.5075882e-05 1986,0.58170414,351.36697,20.89581,102.90982,7.808088e-06 1986,437.32928,113.59273,139.66199,237.7476,5.47443e-06 1986,0.6834725,421.6097,17.643648,81.00958,3.3837555e-06 1986,516.1008,12.739734,82.13855,135.99696,1.6370359e-06 1986,1.4797999,9.7966795,59.4455,121.61325,6.199956e-07 1986,2.8409457,395.01694,56.56674,99.11047,5.1930584e-07 1986,586.0827,3.4360206,46.500427,45.80967,2.4546372e-07 1986,1.2017261,6.106436,14.135303,95.703926,9.988555e-08 1986,563.1151,5.8740706,46.414368,51.878296,5.581312e-08 1986,522.7882,3.47882,65.44208,49.628178,2.4564436e-08 1986,417.8999,4.729287,43.11252,47.05312,9.028155e-09 1986,441.5507,3.3119142,45.387085,48.695366,3.7540886e-09 1986,23.965033,0.0,46.04361,59.94599,3.7094924e-11 1987,566.02905,194.559,35.036377,76.20082,99.74654 1987,442.54443,188.26743,33.615204,61.213852,0.7469936 1987,607.6306,208.78056,31.48523,81.14488,0.030749261 1987,603.7438,68.68926,35.402893,72.66927,0.009205997 1987,589.46356,193.23857,33.276306,74.30232,0.004130301 1987,620.6078,184.7404,18.53888,62.21588,0.0033615604 1987,619.7893,52.498867,19.35736,56.46578,0.0024579267 1987,318.18903,147.97357,26.371307,56.57701,0.0018807121 1987,583.9768,100.7551,55.16986,222.36188,0.001685408 1987,620.97327,120.918205,18.1734,55.36695,0.0013877943 1987,617.7127,16.674324,21.43396,62.484756,0.0012589861 1987,0.98161215,190.19612,17.568077,67.75981,0.0002489308 1987,583.389,9.638099,55.75769,113.270836,0.00014557538 1987,617.8373,341.46158,21.309387,78.94348,8.8115456e-05 1987,0.53251225,211.00655,19.668533,135.48189,6.899096e-05 1987,0.865944,127.965996,18.201403,78.934975,5.0779243e-05 1987,601.57,235.43288,37.57666,208.59306,3.7317353e-05 1987,612.6243,371.57416,26.522339,123.03558,3.299734e-05 1987,438.1113,102.99747,137.59042,231.09744,2.0183146e-05 1987,1.6213917,108.18023,33.378036,166.82224,1.6041062e-05 1987,0.4710555,322.77374,19.827845,134.05008,1.3719667e-05 1987,1.0406828,83.91166,18.610489,78.51714,1.3534286e-05 1987,0.6847534,422.0957,17.138857,80.099884,3.9335896e-06 1987,3.0115252,232.69756,57.073036,221.08775,2.056168e-06 1987,2.8895345,395.38083,56.44703,98.24008,5.52834e-07 1987,527.0282,0.0,49.759705,61.32322,2.992955e-07 1987,1.1769247,38.56134,19.489628,79.92133,9.1842836e-08 1987,581.8436,0.0,43.19989,54.56978,9.1597556e-08 1987,497.6534,0.07564453,48.313507,59.938625,4.0072837e-08 1987,1.5733919,11.834616,60.01305,117.79273,2.9395745e-08 1987,1.5181128,6.6997724,21.267132,56.683537,1.04173195e-08 1988,487.29834,189.71466,31.440918,73.07703,0.018173805 1988,621.5353,189.36629,17.61139,51.022934,0.0071196794 1988,509.4074,192.24995,25.58966,57.891724,0.004621276 1988,0.8789274,159.30608,18.417732,78.18205,0.0025559862 1988,524.2614,199.40433,22.993347,50.358383,0.0018965292 1988,610.9584,153.25392,28.188293,122.62889,0.0014409578 1988,610.85254,73.55307,28.294128,113.27309,0.00043715345 1988,0.53914714,213.7599,14.047944,54.12349,0.00031466698 1988,510.10687,230.0293,24.591919,48.197083,0.0002615236 1988,584.3902,97.26189,54.612976,222.98439,0.00024672569 1988,498.32352,131.8767,36.93802,86.4211,0.00021032727 1988,609.83984,5.7670836,29.306824,107.410385,0.00019405034 1988,1.5156022,131.23584,35.307972,171.3693,0.00014578419 1988,0.9249748,105.362526,19.188148,78.81992,0.0001299101 1988,617.792,254.00519,21.354675,83.70621,0.000118511 1988,302.49353,170.61432,27.065552,50.434204,0.000109051965 1988,0.64355797,204.90288,19.726007,141.34569,0.00010798683 1988,617.86084,320.02567,21.285828,79.536224,8.1995844e-05 1988,613.07886,371.20245,26.06781,126.070465,4.813609e-05 1988,0.38375488,328.72293,13.864025,47.89322,3.0278556e-05 1988,587.4034,213.52911,51.743286,256.22064,2.1184904e-05 1988,0.4748348,329.30817,19.937016,135.6806,1.6957772e-05 1988,2.8280356,181.2206,57.021145,222.7228,1.5680564e-05 1988,0.5038676,275.57187,13.696947,49.862396,1.29388045e-05 1988,0.43413004,385.1879,13.83954,47.10562,9.523123e-06 1988,0.7038851,422.15433,17.236538,80.15283,3.505032e-06 1988,2.7568686,332.96747,57.664303,151.07217,1.0644962e-06 1988,544.0649,9.803425,47.800354,113.29144,8.4928786e-07 1988,1.8744923,14.116485,57.15719,119.64281,3.559344e-07 1988,420.78525,3.3611574,42.33554,49.440895,1.7188242e-07 1988,470.55127,1.2309098,42.801636,50.099396,3.0600514e-08 1988,583.9157,0.0,44.918213,49.321667,1.2318837e-08 1988,381.34796,1.6667514,43.72879,49.08952,1.0809347e-08 1988,0.927653,5.5792904,12.749577,78.29023,2.4760864e-09 1988,557.06274,0.0,45.615295,56.158836,1.622939e-11 1989,459.13422,201.86479,34.21408,56.248917,86.49632 1989,551.0001,199.94977,25.538208,53.758698,0.016376799 1989,482.92023,200.16899,22.512817,47.645523,0.01153287 1989,601.2404,166.10495,32.930237,95.171814,0.010177889 1989,560.2729,182.70764,33.190002,80.45468,0.008999537 1989,537.0011,189.33502,26.69519,59.061554,0.008553455 1989,311.98776,219.8879,21.714783,49.397873,0.0071086353 1989,621.207,201.54437,17.939697,61.3367,0.004174779 1989,255.16884,197.28857,30.102036,60.679962,0.0026319462 1989,620.1929,105.6362,18.953796,58.54033,0.0011746247 1989,614.2916,152.25598,24.074707,55.533325,0.0011479645 1989,617.6315,264.92645,21.515198,84.64331,0.0008371811 1989,570.9036,131.36006,64.32977,172.28502,0.000615816 1989,0.90656006,154.09074,18.707613,82.5497,0.00037123158 1989,0.6955933,92.02757,19.277344,84.74806,0.00024310267 1989,388.6178,98.138,44.274323,144.78519,0.0002110969 1989,618.1431,386.21188,21.00354,81.66089,0.00018399673 1989,615.04584,47.447735,24.10083,87.66028,0.00012469241 1989,1.4380844,100.40426,34.82316,167.26349,0.000117742034 1989,438.26917,158.78906,78.53613,147.7493,9.152793e-05 1989,617.568,328.41962,21.578674,80.71228,7.19504e-05 1989,585.75104,179.49738,26.127136,65.32518,6.372982e-05 1989,0.42640787,204.25504,18.758049,80.93436,5.99057e-05 1989,602.2435,219.49756,36.903137,188.53787,5.730793e-05 1989,609.6968,438.91147,29.44989,65.71292,5.3345757e-05 1989,588.3333,325.3086,50.813354,158.52985,1.2387926e-05 1989,0.7519694,399.1933,18.05837,71.09024,1.0076164e-05 1989,0.3722583,245.61475,20.327559,139.83447,9.421406e-06 1989,0.525328,338.64508,18.354063,72.16492,6.093717e-06 1989,596.3368,7.9573474,42.809875,81.90529,4.42084e-06 1989,0.9642424,441.611,21.664215,61.154755,2.8313998e-06 1989,3.0031397,211.77034,57.218296,228.4958,2.2242614e-06 1989,1.0614258,334.48956,32.819584,151.57187,1.9279616e-06 1989,1.521049,47.468052,18.33236,74.4218,7.1359426e-07 1989,2.8893116,428.6815,53.15466,69.491486,4.703741e-07 1989,2.7898731,17.745913,80.93951,155.53957,2.398169e-07 1989,366.13446,4.375389,64.34674,47.157997,1.03890684e-07 1989,332.90927,2.7782114,44.07831,50.902573,3.091095e-08 1989,2.0140738,7.8413577,36.567173,88.508575,2.0459982e-08 1990,454.36166,208.12694,32.06143,64.55556,93.00529 1990,518.9261,211.78809,24.835876,47.41809,0.11653324 1990,446.8489,212.12283,18.978607,47.532684,0.09560812 1990,573.6765,245.06157,36.745117,71.37697,0.0951527 1990,563.81616,231.07433,27.717834,70.40819,0.026346428 1990,253.27173,221.77734,29.470581,60.630463,0.020840403 1990,474.62323,207.88077,22.832916,51.262512,0.011126623 1990,394.52322,192.30092,24.743927,55.615128,0.0026163456 1990,622.0068,199.1803,17.139893,53.911453,0.0018756147 1990,366.1247,46.02072,29.032288,67.50397,0.00046664808 1990,617.3781,235.85045,21.768555,78.10191,0.00046586726 1990,611.8493,152.23056,27.297363,129.20938,0.0003810803 1990,617.8944,92.04405,21.252258,74.65747,0.00020315095 1990,583.8206,166.46146,55.134583,187.32904,0.0001749156 1990,1.2862257,181.9191,17.726065,62.92955,0.00013377835 1990,440.05505,165.95871,75.68518,152.5989,0.0001233053 1990,617.96747,361.08508,21.1792,81.08716,0.0001038723 1990,614.73444,11.96058,24.412231,82.07695,6.873149e-05 1990,0.69462407,202.91454,19.395279,128.6375,5.0901326e-05 1990,612.87946,289.55386,26.267212,112.79654,4.487958e-05 1990,1.5958464,91.579926,20.16325,135.13748,3.8275357e-05 1990,613.9687,416.82208,25.177979,87.04022,3.766905e-05 1990,1.4266276,97.84704,13.414721,48.880043,3.2019412e-05 1990,1.6744857,138.83778,33.74547,155.86879,1.5945827e-05 1990,0.8841447,138.42899,13.839199,50.441956,1.1925924e-05 1990,0.62120444,326.70627,18.847021,130.98813,9.252723e-06 1990,571.99286,360.9949,67.15381,128.9111,7.9204665e-06 1990,599.4147,13.247826,39.731995,215.59732,5.0123544e-06 1990,589.6611,5.6030746,46.477417,50.38646,4.8054626e-06 1990,3.2754655,207.67648,56.694637,210.37952,3.7966877e-06 1990,0.69421226,420.90167,16.745008,81.44672,3.412481e-06 1990,2.9721942,342.51413,57.71345,140.85504,7.7522594e-07 1990,2.3335042,37.74788,60.75101,224.43596,3.2155504e-07 1990,2.4528565,26.591251,32.006393,130.39914,2.2993478e-07 1990,509.3022,2.0286818,45.340515,58.817177,2.6465521e-08 1990,1.0975114,10.923535,11.413197,81.37515,2.5039709e-08 1990,565.98096,3.6734002,43.354797,53.973274,1.739363e-08 1990,538.7036,1.275804,44.913452,56.950943,5.697147e-09 1990,375.1138,5.082515,43.295807,50.202454,4.251482e-09 1991,482.60632,212.34445,26.428894,58.566345,34.40803 1991,571.19543,222.85237,27.171875,48.776352,7.303095 1991,505.50543,220.5259,31.653748,85.732956,0.19883041 1991,621.7354,180.61453,17.411255,47.811874,0.0018209801 1991,620.2162,216.63106,18.930481,49.089706,0.0013020084 1991,190.48528,224.58247,30.837067,70.76213,0.0009893151 1991,610.66113,152.52159,28.485535,115.39775,0.0006076799 1991,217.60738,231.77847,22.914246,53.26587,0.0005479656 1991,0.7533309,144.48375,18.191116,79.28548,0.00023511496 1991,585.33124,92.177376,53.32202,214.48865,0.00019172046 1991,410.42734,178.15897,33.912354,76.610825,0.00017895931 1991,617.84656,257.1665,21.30011,82.00589,0.00014732649 1991,468.94174,183.21513,75.17258,164.29509,0.00014380831 1991,617.6777,352.595,21.468994,81.94769,0.00013042166 1991,618.37286,400.33276,20.773804,80.31885,0.0001236251 1991,329.19293,153.59842,32.53842,62.908646,7.459914e-05 1991,602.69635,220.55261,36.450317,200.09973,6.44904e-05 1991,463.44913,72.93442,38.94113,99.44849,5.6591954e-05 1991,609.6204,45.100758,29.526245,149.56691,4.782877e-05 1991,0.5388371,204.3522,18.3534,75.66135,3.005542e-05 1991,605.7428,4.635661,33.247864,55.974503,2.6088861e-05 1991,261.84317,151.05055,71.723755,164.51634,2.5792e-05 1991,1.502845,141.53389,32.759533,173.36238,2.3883336e-05 1991,0.5897925,318.54675,19.333832,131.57507,1.1385388e-05 1991,0.49766195,246.27324,18.340248,75.100784,1.0797906e-05 1991,457.80414,42.27759,79.42609,238.71317,8.34434e-06 1991,1.7912916,74.77649,20.781746,94.57893,6.124478e-06 1991,573.02527,359.9134,66.1214,128.36069,5.404576e-06 1991,0.7281714,422.29068,16.81012,79.809906,3.4426976e-06 1991,3.1964927,210.95201,57.104187,216.17946,1.9264621e-06 1991,4.86833,353.85162,79.713554,132.31052,7.5107386e-07 1991,4.378555,28.64534,78.21163,135.40433,5.57675e-07 1991,2.7005599,429.30573,53.106564,69.75906,3.9957914e-07 1991,4.3961067,99.53366,80.478546,232.50363,2.9316809e-07 1991,421.33563,4.65521,44.04239,51.265144,2.680847e-07 1991,449.3012,5.613597,45.81375,52.84313,9.824023e-08 1991,477.20117,5.526841,45.826477,46.249905,2.6258466e-08 1991,524.44586,4.729325,46.275696,51.01477,2.1722576e-08 1991,2.0697672,12.856136,37.845306,76.99896,1.6904657e-08 1991,572.9503,0.8781315,45.05774,50.045307,5.8634715e-09 1992,526.3369,205.7531,36.489624,80.2563,76.064156 1992,507.23672,209.55896,33.66507,68.32651,0.016792681 1992,125.89468,214.49706,32.78164,71.27367,0.0071974183 1992,621.4027,141.1176,17.743958,53.82016,0.00426017 1992,619.3112,309.8405,19.83545,73.42279,0.0031502573 1992,213.69702,149.02945,39.612183,159.5633,0.0015441594 1992,336.48035,143.41302,34.245117,74.75058,0.0011777116 1992,450.35345,143.74004,35.815735,99.94664,0.0010331045 1992,426.75992,93.28951,41.838806,109.03956,0.0008871312 1992,610.98816,203.46642,28.158508,167.65572,0.0008395934 1992,376.727,39.743294,28.227722,67.279305,0.0007779213 1992,1.2254077,119.15801,17.746191,75.044945,0.0004774865 1992,610.2812,73.79988,28.865479,141.09622,0.00041011476 1992,620.23114,49.266373,18.915527,57.1363,0.0003781933 1992,467.3043,156.76334,25.821228,57.33255,0.0003522025 1992,0.5428036,179.77637,17.982374,72.7209,0.00022224477 1992,602.725,0.44477215,36.42169,69.68092,0.00016060396 1992,382.4014,89.56881,44.02942,147.68066,0.00014249365 1992,616.9589,186.33798,22.187744,80.92673,0.000121652294 1992,493.9377,164.14279,99.16269,182.01785,7.584751e-05 1992,609.0122,438.22375,30.13446,66.370636,4.3111813e-05 1992,588.3448,278.63028,50.80188,189.61905,4.0908482e-05 1992,1.6167921,111.39266,32.65597,170.18869,3.551128e-05 1992,0.46007407,217.84862,19.903723,136.42451,3.0153438e-05 1992,0.6111068,317.06836,19.324772,132.76862,1.270769e-05 1992,3.8112695,155.33022,55.997612,210.99165,9.149253e-06 1992,401.84763,38.927788,82.251434,225.30975,7.5305657e-06 1992,0.69045573,400.1401,20.39468,98.81183,7.2444363e-06 1992,353.89734,24.559607,39.38144,92.7192,3.870825e-06 1992,390.2829,12.21696,45.42035,156.12198,8.8405335e-07 1992,5.085534,355.3053,79.28233,130.51544,7.537129e-07 1992,1.494362,17.932585,19.08901,128.94768,1.7970365e-07 1992,517.46704,0.0,44.59424,54.791473,9.598976e-08 1992,545.3499,0.0,45.658875,57.698425,7.569584e-08 1992,0.8732015,8.82696,10.134914,83.296455,2.9642916e-08 1992,572.71954,0.0,48.04059,49.463642,2.0358538e-08 1992,395.14728,1.7602003,45.39502,53.85917,1.651577e-08 1992,358.19455,0.9563981,47.67227,53.26645,1.5884394e-08 1992,490.06027,0.0,45.392853,49.640717,6.8564128e-09 1992,421.1025,1.4326384,43.955933,48.385395,9.974628e-10 1993,594.00586,226.34673,37.961792,66.74681,69.83868 1993,591.6836,115.85071,44.49884,196.5871,0.36941686 1993,605.66034,95.32335,33.217896,77.801895,0.14939614 1993,620.87463,234.87485,18.272034,56.9953,0.14305823 1993,71.68848,221.97018,34.04093,73.40433,0.10104453 1993,557.99884,54.652386,49.937195,142.45888,0.05472101 1993,173.61964,184.98807,43.19049,138.08542,0.01167155 1993,618.7932,140.87192,20.353455,73.90233,0.0027811765 1993,531.4653,0.0,107.6814,272.76965,0.0020221025 1993,368.53073,196.30275,24.105438,53.17285,0.0017865674 1993,425.8032,186.21617,32.117493,67.6611,0.0015541646 1993,618.4745,185.27988,20.67218,65.50104,0.001327655 1993,301.0662,110.61433,43.997284,130.36795,0.001226125 1993,440.3618,97.830055,44.253265,134.92679,0.00072802266 1993,392.31097,37.462143,42.575043,114.443405,0.0005712177 1993,600.8212,214.08597,38.15039,176.3964,0.00038521658 1993,1.3465023,120.339745,18.072552,74.58959,0.00027559846 1993,581.7979,11.617533,57.348755,121.8308,0.0001453081 1993,0.93844974,151.64415,19.812983,127.818405,9.0920345e-05 1993,368.8511,143.02617,35.246185,86.22618,7.122313e-05 1993,604.4431,0.045113932,34.703552,66.14787,4.4482324e-05 1993,610.04614,436.93423,29.100525,68.07739,2.4282868e-05 1993,3.190542,132.39151,59.150074,204.75589,2.1185673e-05 1993,604.4096,332.72552,34.73706,153.35126,2.0819938e-05 1993,0.6565682,227.655,19.972597,132.5806,2.0101088e-05 1993,0.49460775,317.02335,19.665386,133.62936,1.0332402e-05 1993,305.53882,107.08836,27.153687,63.11583,4.509934e-06 1993,0.7187858,422.08627,16.96145,79.87686,3.791463e-06 1993,379.48495,0.0,88.48468,206.89888,3.0028432e-06 1993,2.8858578,242.16397,57.357082,219.09045,2.8927122e-06 1993,366.86487,2.9585238,46.915802,55.148365,1.9402312e-06 1993,2.9223228,395.614,56.218044,97.52911,5.723216e-07 1993,413.60898,0.0,48.18457,59.218452,5.045492e-07 1993,2.0002003,65.234245,36.418076,188.4815,2.9970624e-07 1993,439.7205,0.05822754,45.153473,53.16191,8.429339e-08 1993,511.36215,0.0,47.105377,51.62524,5.720637e-08 1993,476.86523,2.5305274,42.973694,49.630188,2.0801968e-08 1993,1.817308,6.6526694,37.300446,82.566315,7.4115984e-09 1994,585.1063,136.37843,32.410522,72.70401,0.64208186 1994,191.5065,217.98448,26.323181,58.047318,0.4267711 1994,570.58936,58.78032,50.753418,174.07828,0.14116639 1994,45.80508,214.30406,36.883656,81.57356,0.07199235 1994,421.42947,117.550156,47.13141,122.43532,0.066223904 1994,335.89526,78.55245,31.672882,57.63114,0.05352675 1994,618.40265,159.12514,20.744019,56.193344,0.032501727 1994,615.8067,68.40574,23.339966,68.42036,0.019825453 1994,333.5959,177.86063,25.577026,48.720627,0.0066540213 1994,609.33514,163.61148,29.811523,133.1582,0.0064115864 1994,604.66907,69.51276,34.4776,158.07104,0.0038669324 1994,302.42273,80.21333,26.562134,58.86342,0.0030971798 1994,0.9131144,147.23665,19.384792,86.42789,0.0016168387 1994,575.2373,141.42142,22.516357,63.94017,0.0011655205 1994,3.7258725,86.02961,55.896133,222.28561,0.0008620673 1994,519.10785,7.3414717,116.45453,311.73364,0.00082783034 1994,1.5262085,100.112404,19.82228,88.133125,0.0007015095 1994,581.49164,2.943939,57.65503,134.93272,0.00045273837 1994,0.7186776,189.6892,19.527723,133.85887,0.0002887696 1994,612.6085,268.2359,26.538147,134.47137,0.00020606632 1994,583.95105,173.35995,54.046265,239.13217,7.841951e-05 1994,489.44522,0.0,47.040924,95.76025,6.698538e-05 1994,610.1572,436.6365,28.98944,68.47034,2.9370398e-05 1994,606.01416,0.0,33.132507,69.12428,2.6294281e-05 1994,0.56925786,287.5675,19.937956,134.96732,1.9789411e-05 1994,602.89954,339.1836,36.239807,147.37424,1.9524827e-05 1994,398.9444,50.039207,104.180145,232.69632,1.5848676e-05 1994,2.6516619,251.86238,58.066845,216.62877,1.1511577e-05 1994,0.64046633,421.0473,17.064901,81.16223,4.0717755e-06 1994,1.0257275,341.2895,32.50997,147.02286,2.9379967e-06 1994,477.9739,0.0,101.31656,172.65215,2.250244e-06 1994,349.60718,1.8442091,45.979736,61.01737,1.7795126e-06 1994,517.8864,0.0,45.659058,80.32323,1.3154931e-06 1994,461.11752,0.9209538,43.472015,82.84978,8.8699215e-07 1994,317.59357,2.931683,47.997833,59.595127,1.0491061e-07 1994,402.45093,0.92157227,44.55493,59.48107,7.969526e-08 1994,436.40543,0.0,47.250214,50.82739,1.57956e-08 1994,236.34436,2.1732602,46.78647,47.544125,1.3376256e-08 1994,1.9699594,5.886706,37.415623,87.19855,6.9179293e-09 1994,293.68277,1.1463476,45.548584,47.64195,2.5409332e-09 1995,204.17018,226.84157,24.647202,61.362656,1.0187073 1995,570.4405,71.52315,64.14514,202.55092,0.3506571 1995,602.22986,89.320526,36.91681,115.55171,0.07737357 1995,46.130478,220.53888,36.96425,80.35596,0.06746076 1995,581.8803,109.45651,31.53064,92.10971,0.021904716 1995,347.91882,169.56566,34.68985,72.25903,0.008306219 1995,326.87323,59.19125,29.606567,59.8521,0.005113672 1995,84.126015,218.78456,32.580276,77.48918,0.004438126 1995,1.3308513,159.80219,18.782051,80.092926,0.0032741583 1995,621.1528,86.92435,17.993896,62.07686,0.0026014477 1995,323.33224,71.141945,48.958527,158.26227,0.0020058618 1995,624.5421,192.78836,14.604553,46.249817,0.0020025056 1995,188.31303,190.17789,57.90721,121.03076,0.001966336 1995,428.50375,208.46759,23.272675,53.29071,0.0019587693 1995,617.1917,144.227,21.954956,76.041885,0.0012966197 1995,359.5425,89.01073,25.89563,58.12491,0.0011834649 1995,624.6475,222.13556,14.4991455,47.63864,0.0008423981 1995,618.08466,247.28514,21.062012,72.23842,0.00073738437 1995,5.6400557,87.05952,70.68011,197.82608,0.00068489334 1995,606.53754,180.25949,32.60913,101.097046,0.0005061069 1995,1.8238379,136.03055,33.892303,170.69147,0.00043442255 1995,326.87607,118.37984,29.33017,67.84787,0.0002784894 1995,449.2309,48.406185,37.96225,83.18808,0.0001670501 1995,0.8569206,127.54711,13.652193,49.93081,0.0001478718 1995,0.7354313,223.5936,17.738726,74.14517,0.0001302813 1995,612.20953,271.6691,26.937134,139.75558,0.00011178741 1995,1.2451746,56.26913,13.43044,49.48287,0.0001017768 1995,580.1922,0.078541666,58.954468,144.83206,4.7189707e-05 1995,3.1726742,182.44708,57.59246,217.45767,4.2179767e-05 1995,609.5102,436.1991,29.636475,68.75018,3.0713578e-05 1995,1.2148495,76.19254,18.60146,79.5523,3.003296e-05 1995,0.56662846,272.90906,20.098938,134.74576,1.859316e-05 1995,0.5883586,365.6356,19.657263,129.90573,1.0239976e-05 1995,585.6002,385.15527,53.546448,106.454895,7.856311e-06 1995,394.76328,25.117998,38.89633,71.21008,3.5157448e-06 1995,2.9239764,322.8448,57.59615,158.88177,1.3871181e-06 1995,1.4709929,8.117077,37.737564,188.89018,4.7013998e-07 1995,1.2696095,5.5839095,21.817865,62.67089,1.7599776e-07 1995,497.24127,0.0,50.62323,58.71377,2.9277445e-09 1995,339.92157,6.217479,43.97223,47.101696,4.4582163e-10 1995,526.5182,0.0,49.500183,56.911057,2.5571111e-11 1996,45.08037,222.6905,37.924587,82.38643,1.602611 1996,215.73207,244.02118,22.96965,45.12506,0.111003906 1996,527.15466,166.91089,34.92578,83.01489,0.02529185 1996,608.62964,237.34485,30.517029,182.92258,0.013728104 1996,82.798225,217.61133,33.342117,78.49838,0.0024196412 1996,613.37445,9.050381,25.772217,91.294205,0.0016959024 1996,618.366,337.04062,20.78064,78.35632,0.0009246014 1996,622.00323,182.50714,17.143433,51.539536,0.00082262524 1996,385.07394,196.16008,31.679718,57.232193,0.0004602619 1996,1.1346709,159.96991,13.446016,48.390472,0.0003596114 1996,355.90833,72.83118,39.568085,101.95476,0.00029314868 1996,611.8446,153.86931,27.302063,121.53606,0.000275553 1996,512.2098,134.3401,71.16022,180.01479,0.00025008956 1996,584.5335,52.298008,53.947754,271.18518,0.00016152307 1996,386.6731,75.22881,36.753204,91.16602,0.00015274336 1996,608.79895,42.799812,30.347717,150.16263,0.00013429478 1996,1.4500188,157.20972,19.923216,127.64444,0.00012519571 1996,3.8489585,110.05258,58.307594,203.29382,7.08156e-05 1996,608.9001,431.65222,30.246582,73.59512,6.175022e-05 1996,1.2153027,128.39938,13.678982,48.332764,5.658375e-05 1996,561.236,12.506485,77.628174,147.31187,5.4736312e-05 1996,555.40515,27.420353,29.934387,74.835464,4.8124344e-05 1996,341.2875,47.56825,81.62979,196.1275,4.3746728e-05 1996,573.65546,347.139,65.49121,137.065,4.0846924e-05 1996,0.77927494,266.30075,17.929066,73.07379,3.6824604e-05 1996,1.8879207,82.56342,21.069489,135.3732,2.7669512e-05 1996,270.81653,53.396236,43.355743,116.312546,2.0613676e-05 1996,435.50674,43.951645,26.398956,59.547966,1.6983731e-05 1996,1.5545427,213.46964,33.757893,170.9636,1.5053527e-05 1996,0.5650708,289.52985,19.971918,132.45282,1.0045442e-05 1996,0.66575116,367.93787,19.53316,127.57761,7.758594e-06 1996,2.877033,275.38925,57.555805,196.87982,4.807168e-06 1996,575.0134,3.3249643,49.523132,60.289074,3.4156978e-06 1996,518.24194,25.776703,36.019775,71.46787,6.8474543e-07 1996,4.159805,27.625801,79.94695,140.11536,5.2287e-07 1996,1.4522274,51.64741,18.786663,71.81459,5.103584e-07 1996,550.10565,5.123566,48.214417,53.41919,3.1930227e-07 1996,1.4337802,11.641592,27.50468,77.219955,7.841512e-08 1996,420.69827,4.899419,45.24237,46.77594,3.644041e-08 1996,449.2477,3.5527914,43.243958,45.733185,9.71477e-09 1996,328.73413,6.8135076,44.216034,47.850784,9.174439e-09 1996,477.8556,3.0691733,44.61975,47.73413,8.239426e-09 1996,393.686,5.7691245,46.874847,46.643005,8.130676e-09 1996,353.73624,7.2701564,45.64209,51.441803,1.5467196e-09 1997,39.7365,217.4949,40.327045,86.7435,0.20678669 1997,580.9342,198.20477,25.806824,47.16484,0.019579098 1997,211.3845,209.76205,38.87378,88.03265,0.014419908 1997,83.78972,220.94008,33.719948,80.437485,0.002056764 1997,621.74036,179.02104,17.406311,51.236237,0.0017664073 1997,1.0650871,172.39972,13.746645,52.241074,0.0016066236 1997,380.99704,69.33379,36.090515,92.55924,0.0013175947 1997,585.77435,192.26463,52.65222,241.93794,0.0010340745 1997,1.5740439,155.57169,20.393408,125.705444,0.0007884794 1997,4.107085,124.87456,56.4755,192.39568,0.0006065324 1997,389.7167,170.73878,33.679596,62.502808,0.00048923877 1997,617.46356,207.28503,21.683105,83.05209,0.00048082002 1997,621.40906,138.86082,17.73761,49.618027,0.0004470641 1997,444.63257,214.7816,33.606598,69.8098,0.00033956667 1997,611.0975,135.39685,28.049194,119.670105,0.00033394308 1997,442.37726,50.26739,36.648132,95.87932,0.00030842426 1997,620.3373,325.66858,18.809387,58.20642,0.00030085616 1997,65.97983,253.52751,23.753601,53.5504,0.00017276326 1997,611.49915,342.62747,27.647522,110.55124,0.00015217325 1997,1.3844604,118.24828,18.50832,75.335014,0.0001517074 1997,1.0949081,238.33969,17.75008,71.07062,0.00011899708 1997,613.00244,408.58197,26.144226,95.95007,5.9509555e-05 1997,1.4961361,194.54553,33.835304,178.40292,5.9063463e-05 1997,1.8258497,77.37128,31.377516,159.99756,5.175115e-05 1997,608.90704,9.071498,30.239624,120.44558,3.8799284e-05 1997,338.63315,13.505027,39.357605,76.98714,1.128634e-05 1997,584.42676,63.73077,54.553284,226.56372,1.0656567e-05 1997,0.59822595,304.48248,19.556583,132.52377,1.0563395e-05 1997,0.692465,392.47986,18.550243,105.991974,7.006337e-06 1997,369.07193,26.670963,22.560516,52.635685,5.400959e-06 1997,461.72308,3.7097983,47.037872,129.87135,3.7096995e-06 1997,361.78708,3.8994858,46.373993,144.28542,3.031166e-06 1997,2.9842432,333.23352,57.44173,148.4584,1.0042239e-06 1997,1.531989,17.928314,21.525007,128.32066,1.7811075e-07 1997,395.80365,17.906277,38.438995,77.65874,9.494675e-08 1997,418.24997,0.0,84.91879,222.52266,9.076833e-08 1997,351.59665,2.408024,47.53586,54.32753,6.178927e-08 1997,306.43393,0.93619955,45.460358,51.00315,2.7182988e-08 1997,467.95398,0.46404785,49.529114,50.427692,5.411572e-09 1997,239.36667,2.0356104,43.109985,46.340168,3.9816825e-09 1997,264.10364,0.6735889,47.413574,54.108986,3.2588914e-09 1997,441.54916,2.9753125,46.478027,48.979942,1.8895223e-09 1997,7.628368,0.38354167,45.032024,46.55996,1.030939e-09 1997,383.60028,0.0,46.923218,46.51745,6.039438e-10 1997,414.39627,3.3370492,46.254456,49.94512,5.742934e-10 1998,409.8279,191.92223,31.338806,57.86801,2.3488028 1998,24.288248,224.71167,42.186165,78.34845,0.37384504 1998,221.8024,205.11607,24.69902,60.75865,0.06940465 1998,530.4344,119.62266,41.774292,139.0426,0.028617203 1998,196.45541,192.0255,59.58902,121.87215,0.0014974124 1998,1.4296305,209.0717,18.72924,81.28325,0.0010120971 1998,2.345848,82.112,34.83513,205.47775,0.0006945888 1998,523.7918,164.00832,30.69934,73.25856,0.000560697 1998,513.8103,104.069595,115.54755,211.4087,0.00032765212 1998,617.4251,164.05861,21.721558,79.01767,0.00022714073 1998,618.06256,339.05798,21.084106,82.227936,0.00021648081 1998,618.1517,244.60667,20.994995,80.6364,0.00021127674 1998,617.2165,114.79603,21.930176,74.330376,0.00012330154 1998,1.4380974,127.12603,19.943134,91.82668,7.890187e-05 1998,583.0725,8.688529,56.074158,109.65625,7.7109995e-05 1998,600.3925,72.53874,38.75415,180.88199,5.0683833e-05 1998,585.64166,139.81032,52.823486,233.28429,4.8624235e-05 1998,1.55563,202.94424,34.10239,174.74023,4.6298912e-05 1998,609.2878,435.59067,29.858887,69.82712,3.9533188e-05 1998,21.01825,208.9616,84.20378,163.78828,3.7158326e-05 1998,168.12318,142.55449,137.0467,219.69563,3.0200808e-05 1998,601.5639,288.8379,37.582764,180.12036,1.7336983e-05 1998,406.14362,54.024452,26.985626,60.081017,1.5695556e-05 1998,0.6741821,312.22708,19.890882,133.86081,1.0402303e-05 1998,449.39172,3.1483984,40.71933,85.73323,5.503252e-06 1998,1.7860107,16.814526,31.415318,131.10779,4.7004432e-06 1998,0.72437584,422.19287,16.788267,80.037506,3.9794104e-06 1998,482.1749,0.0,47.528595,151.41501,3.267797e-06 1998,2.8914096,313.38223,57.48721,165.63419,1.4574936e-06 1998,2.7132015,429.41144,52.92782,69.71869,4.08863e-07 1998,1.4022291,5.6617093,23.375174,65.2646,1.3689397e-07 1998,365.84735,0.0,123.11636,263.5075,1.0225426e-07 1998,493.3831,2.522383,50.654327,53.42382,3.9735514e-08 1998,400.19138,8.666575,47.307434,185.79524,3.4915836e-08 1998,416.95844,1.7780404,44.389282,49.459827,1.297525e-08 1998,532.21173,4.64639,44.80249,55.865993,2.1266686e-09 1998,557.19385,3.5932505,45.656555,47.360607,1.8298444e-09 1999,205.32697,241.40271,23.17366,46.425537,4.254146 1999,1.0161548,223.528,32.34629,80.08745,0.31982502 1999,483.167,167.22144,36.81671,77.0632,0.05934312 1999,197.16692,201.95518,37.076767,108.86238,0.015463799 1999,470.63333,187.33746,27.84021,56.53363,0.015183598 1999,211.55598,207.65642,20.775406,48.350174,0.008514003 1999,426.86685,185.16208,25.148926,59.137985,0.0032391606 1999,411.63745,155.89787,32.54541,70.01445,0.0013688245 1999,459.4562,133.26862,74.26987,160.02692,0.00085298007 1999,0.82533246,257.9465,11.946428,46.525665,0.0006021567 1999,220.61008,197.99847,23.814987,45.499527,0.0006007086 1999,610.6896,76.17934,28.457092,135.85396,0.00030332597 1999,617.0529,196.60092,22.09375,87.02911,0.00019594195 1999,1.5755949,91.80974,17.713997,66.46936,0.00013420708 1999,618.12714,338.86182,21.019531,82.65579,0.00012711996 1999,0.9084278,252.69604,29.867855,173.88037,0.000113140515 1999,3.7678256,210.28372,77.87409,170.43774,0.000102859325 1999,612.90045,248.82431,26.246216,137.10696,6.984561e-05 1999,583.116,12.473533,56.03064,106.2358,6.6043795e-05 1999,11.158503,253.08011,35.816025,83.954926,5.781257e-05 1999,405.91644,136.1125,76.079834,157.9734,4.725956e-05 1999,609.0422,436.2243,30.104492,69.00156,3.0856732e-05 1999,586.9372,270.51385,52.066895,203.42386,2.8505448e-05 1999,0.9378231,295.07034,18.489902,80.583405,2.5883517e-05 1999,585.99097,130.04573,53.1557,239.82533,2.4491066e-05 1999,172.50677,180.2235,100.761505,201.10057,1.9194058e-05 1999,345.45297,71.86378,39.69809,94.51708,1.7552558e-05 1999,0.6832723,338.95007,19.990765,134.17117,1.4915513e-05 1999,0.94175947,139.28,19.378664,147.64426,1.4588641e-05 1999,0.7268937,421.7006,17.233006,80.52402,4.336847e-06 1999,3.485363,329.78693,57.34077,153.38583,2.1917372e-06 1999,383.83704,76.40132,37.18991,91.01514,1.6327388e-06 1999,1.9378972,19.075659,30.642975,123.66828,1.0154955e-06 1999,1.0498288,9.832061,14.162718,86.43674,6.5741636e-07 1999,1.7647494,0.0,60.373573,263.68808,3.3654487e-07 1999,467.75867,0.0,48.481262,166.17514,3.0018222e-07 1999,367.16705,4.0709863,44.634155,51.888474,7.320576e-08 1999,0.84465337,1.4152117,43.319,59.43474,2.2050772e-08 1999,355.24393,0.0,84.96326,222.82918,9.5792725e-09 1999,317.85004,1.1179346,64.22412,46.96952,2.068248e-09 1999,263.81015,4.3611183,44.664124,46.435497,7.489669e-10 2000,189.82385,244.95802,22.668411,51.22725,35.103085 2000,415.19006,213.39879,23.209625,55.563553,0.98797154 2000,193.74646,211.88942,26.007187,58.989822,0.76973295 2000,518.86017,140.67575,58.46057,132.80396,0.015506883 2000,149.84149,247.30806,30.05046,79.851364,0.007048525 2000,201.15118,197.32188,24.151031,45.08409,0.006760385 2000,435.98022,38.49015,23.577759,50.52494,0.004787364 2000,313.6452,89.67103,38.23642,80.97085,0.0042522955 2000,427.78815,207.33272,23.44812,49.39,0.002234143 2000,172.94873,198.32454,54.843964,119.1808,0.0019773801 2000,460.5785,188.7745,25.365631,54.85466,0.0016195427 2000,583.2243,138.46124,54.83429,270.6402,0.00092222734 2000,621.72107,182.9941,17.425598,50.01024,0.000680326 2000,485.70804,120.44934,43.298065,104.08507,0.00044403673 2000,610.20026,85.96754,28.946411,129.97394,0.0004252699 2000,617.3543,203.51694,21.792358,84.605194,0.0002800469 2000,610.328,294.17465,28.818665,141.22214,0.00027876577 2000,567.2375,338.02124,71.90918,145.89832,0.00010671348 2000,2.919349,221.2588,58.090458,214.67299,8.935085e-05 2000,461.646,91.03025,85.10913,185.0228,7.2137285e-05 2000,1.2720768,269.53464,20.755846,134.13193,6.933486e-05 2000,612.8064,413.67505,26.340271,91.34366,6.463608e-05 2000,0.86174643,352.29156,18.622086,79.76672,5.995182e-05 2000,1.3209465,214.36345,19.0078,83.12755,4.0305644e-05 2000,608.0688,3.0806966,31.07788,58.75711,3.6536396e-05 2000,140.56834,152.28276,137.5738,224.80663,1.970166e-05 2000,360.18076,125.09183,27.278564,62.500458,1.079424e-05 2000,1.4401807,90.70465,18.937748,127.3537,1.0790946e-05 2000,599.80554,5.543262,39.341125,156.67114,1.0066252e-05 2000,1.9325993,118.742645,34.12631,193.79776,8.334749e-06 2000,4.3688216,349.53015,78.478714,137.16412,4.308386e-06 2000,0.7155762,419.90396,17.114405,82.25656,4.1105027e-06 2000,385.1016,42.893883,40.282288,105.45722,3.4479679e-06 2000,2.7634554,426.94528,53.171646,72.191925,3.7781348e-07 2000,1.4240121,15.642507,30.069183,120.45335,2.6477247e-07 2000,434.89078,8.708158,47.429077,103.442894,2.4191317e-07 2000,1.6871746,17.112787,61.160923,244.09549,3.9250867e-08 2000,456.14532,3.3184245,43.60199,57.053375,3.2697514e-08 2000,0.91626835,7.294955,13.134978,90.20426,2.9768135e-08 2000,483.10553,0.87622726,45.470215,60.6097,2.1726926e-08 2000,372.30753,0.0,160.89175,251.38855,1.3550048e-08 2000,416.44617,3.4958317,43.745514,46.91277,9.336315e-09 2000,508.86667,2.6196778,83.60025,80.05702,4.079823e-09 2000,0.59541994,0.27079752,36.06877,55.574966,3.2103993e-09 2000,307.443,5.4092236,43.53949,45.198616,6.6668643e-10 2001,186.35089,200.83588,24.78334,52.651474,3.3564708 2001,524.09485,186.35739,39.8042,98.82211,0.92626464 2001,162.13046,220.59105,36.35199,105.94237,0.2472637 2001,532.16925,244.89748,21.611633,47.5298,0.16027199 2001,508.82758,177.71474,34.872375,84.524124,0.016380766 2001,37.949844,310.532,37.966515,87.371826,0.012895793 2001,621.3311,188.08253,17.815552,54.415726,0.003952056 2001,493.82455,138.18721,74.813385,180.4663,0.0029944244 2001,608.2346,266.33398,30.912048,178.99994,0.0019575853 2001,610.197,133.13321,28.949646,127.3082,0.00089298794 2001,617.56555,215.21655,21.581116,83.92639,0.0004910253 2001,587.7916,139.17978,51.35504,251.1607,0.00034469142 2001,607.8947,434.20206,31.251953,71.24075,0.00025687378 2001,319.34454,58.49059,38.65619,88.74866,0.0002438966 2001,152.5765,158.36589,88.31651,170.53462,0.00022067598 2001,402.4538,57.535927,24.216705,51.422615,0.00020971076 2001,22.377068,263.81714,73.968575,184.01584,0.00013129222 2001,584.8439,375.99808,54.302795,120.43213,0.00012879493 2001,1.9619036,268.29413,33.229492,177.77124,5.3133124e-05 2001,1.1890146,321.47708,18.73021,74.25589,3.849797e-05 2001,607.7284,4.6459017,31.418274,58.253006,3.6201727e-05 2001,3.874489,171.80193,54.053825,215.98375,3.1500156e-05 2001,583.2847,10.746621,55.86194,104.12482,2.5377267e-05 2001,610.99585,43.82163,28.150818,149.81648,2.165059e-05 2001,1.2602865,222.26978,19.396362,83.90915,1.7874323e-05 2001,1.0494125,386.39468,19.439804,112.84589,1.7200426e-05 2001,2.644751,127.204636,29.14331,142.26656,1.0520767e-05 2001,3.849318,420.8669,64.829994,77.390594,2.8812533e-06 2001,1.5770085,48.53743,20.396692,128.73874,2.580999e-07 2001,2.2283432,18.024456,58.170017,105.70735,6.106696e-08 2001,0.85561854,7.174261,13.935017,77.76674,3.0725847e-08 2001,306.18597,3.8524463,44.9653,48.89186,2.4322968e-09 2001,452.35083,0.24743979,63.42572,47.24115,2.0185882e-09 2001,332.61096,4.0625634,45.36917,50.663536,7.5951895e-10 2001,430.64185,2.8696926,43.323273,49.77446,5.4221694e-10 2001,511.4826,2.1282065,43.15796,51.505936,3.8716813e-10 2001,359.75293,6.946574,44.40448,48.836605,1.932512e-10 2001,558.8863,2.4650848,43.48065,50.38004,1.06402505e-10 2002,592.42535,167.52834,35.336975,90.60408,11.2461 2002,580.93427,175.62268,23.14325,53.312485,0.11903129 2002,440.37256,198.62903,35.51297,80.072754,0.030361878 2002,611.8189,149.78949,26.617126,97.751816,0.02828942 2002,623.1383,141.17441,16.008362,46.469147,0.009432779 2002,0.72789145,158.26904,21.650778,115.20123,0.0032682754 2002,423.28745,110.497345,58.389496,148.29993,0.0029066524 2002,461.27512,102.31986,24.678009,58.205086,0.0024971091 2002,0.6705322,149.1304,15.087434,58.33983,0.002255579 2002,439.6708,77.77782,39.943054,97.13339,0.000904033 2002,560.46405,129.26321,78.344604,180.2445,0.0007113473 2002,617.5908,232.97949,21.555847,84.19861,0.00064243167 2002,0.58809817,232.83069,18.11779,74.026825,0.00052389124 2002,108.880066,185.24786,69.29697,177.94543,0.0005227409 2002,597.98145,35.502586,40.36328,220.36972,0.00036744797 2002,2.903265,141.72174,59.675735,235.07056,0.00033923556 2002,0.9543775,254.7449,31.653238,188.04901,0.00030353345 2002,0.39499024,278.8339,18.613829,81.51346,0.00029489104 2002,114.13281,258.28137,37.48915,94.53348,0.00014538143 2002,130.10278,109.38801,75.51022,186.10025,9.9299585e-05 2002,607.0875,2.407002,32.059143,63.157284,7.5201155e-05 2002,612.5727,261.3221,26.573975,146.92813,3.740786e-05 2002,609.15326,437.4551,29.993408,67.92819,3.3182263e-05 2002,0.76655763,385.19077,18.429771,110.00711,1.6018193e-05 2002,449.37213,7.5791993,46.061005,138.65659,9.760902e-06 2002,570.7002,354.74353,68.44647,134.76367,6.099066e-06 2002,4.5121584,340.71683,77.6711,139.91501,3.4182135e-06 2002,0.9245744,38.47446,20.785128,145.28148,8.960623e-07 2002,318.02768,0.0,49.648346,137.78123,6.353803e-07 2002,2.7669044,423.41943,59.169037,74.175385,5.356208e-07 2002,474.1634,0.17415366,49.26886,164.56804,4.8133677e-07 2002,497.4265,1.5629655,44.1308,50.825123,1.6215436e-07 2002,0.694399,10.613695,11.831977,81.036156,1.1072826e-07 2002,304.19995,1.5004883,48.968628,56.8435,5.5713567e-08 2002,358.93958,0.0,48.4292,51.249905,2.067058e-08 2002,2.1770346,14.691433,59.193733,109.24196,1.9584702e-08 2002,436.72595,1.6207845,44.505096,56.02742,1.5775697e-08 2002,407.92706,1.132666,45.83493,59.258286,1.4667033e-08 2003,616.02496,60.99271,23.121704,67.85928,0.024813853 2003,621.9274,153.27138,17.219238,49.48297,0.01428783 2003,556.7681,169.96452,43.705994,117.35658,0.01029469 2003,435.14932,215.71599,24.392578,55.630875,0.008255587 2003,563.34863,159.2565,27.510925,61.42238,0.007799142 2003,0.0,290.2194,46.043255,174.15063,0.0061498284 2003,45.145046,190.96985,25.01514,53.7912,0.0057270387 2003,621.5951,257.14496,17.551575,58.112946,0.0050470666 2003,612.1368,157.0471,27.009888,110.58443,0.0021645357 2003,579.70386,122.602425,33.149963,86.21841,0.0016073072 2003,1.1204541,295.80554,21.725609,86.8472,0.0015431368 2003,585.3197,144.98077,52.504395,202.09845,0.0014342852 2003,576.5641,229.07545,26.534607,61.10234,0.0011234841 2003,139.24472,176.14647,40.70146,105.951706,0.00072409655 2003,4.091364,142.35045,56.548073,275.89142,0.00058338896 2003,581.8756,3.0204363,57.271057,127.85279,0.0004257317 2003,564.11694,73.4587,61.52893,181.65405,0.00040220734 2003,600.61633,54.807007,38.530334,178.38269,0.00026720637 2003,544.9772,113.440056,43.567688,124.750374,0.00024962972 2003,617.13885,21.418734,22.007812,71.840614,0.00015093102 2003,0.78240967,189.85838,18.17393,77.51381,0.00012904228 2003,0.84168947,119.18125,19.00545,88.19578,0.00012148929 2003,612.73035,282.4326,26.41632,145.18729,9.6055206e-05 2003,0.47172284,359.4214,21.491,142.44046,6.692906e-05 2003,1.3803092,167.13919,29.080238,166.3216,5.5052828e-05 2003,612.50494,365.7024,26.641724,130.23563,3.0750038e-05 2003,286.89572,150.80373,104.10593,202.05257,4.9547716e-06 2003,1.0597111,19.476074,20.724081,153.0435,1.8592411e-06 2003,382.10648,0.0,47.67807,131.18167,5.898733e-07 2003,556.16364,420.81265,77.84375,76.658295,5.5591414e-07 2003,1.8314258,8.524368,59.4502,132.48941,2.2766812e-07 2003,368.76996,0.27648765,46.58838,57.386375,7.283903e-08 2003,314.1762,7.5109196,43.79306,49.524956,5.9138927e-08 2003,530.97235,0.0,49.836548,156.7274,9.298656e-09 2003,399.95346,2.6612906,44.644196,49.45457,9.259702e-09 2003,475.4755,0.72127604,47.656464,174.04053,7.169086e-09 2003,512.26,1.8362142,43.231262,49.8484,5.6068745e-09 2003,441.5308,0.0,44.567047,45.604095,2.3406388e-09 2003,556.7203,3.5619533,44.365173,51.067707,6.941982e-10 2004,603.5606,176.24623,34.626892,81.64513,0.41570905 2004,566.83777,196.98378,28.849365,65.06465,0.088200025 2004,194.93256,231.87875,25.292236,60.65912,0.022337291 2004,619.0798,209.36113,20.066895,66.129684,0.020331295 2004,64.41945,210.8062,31.75093,72.547195,0.01661406 2004,596.2028,181.6364,19.912415,47.989883,0.013266543 2004,578.9044,196.57253,34.758972,89.559006,0.0095603075 2004,623.978,163.75142,15.16864,45.371445,0.0068886657 2004,573.2127,133.9023,63.358032,177.06163,0.0042959815 2004,46.030678,155.02682,45.9588,141.9383,0.0026332892 2004,303.451,189.17758,45.82135,88.86783,0.0005630542 2004,4.1481333,119.78716,57.523106,214.67267,0.00040892905 2004,1.7556152,191.62326,21.396627,104.52881,0.00018125921 2004,0.951416,130.22835,18.551289,77.66203,0.00016221621 2004,599.73663,216.29924,39.410034,214.99794,0.00012416411 2004,1.6061182,91.71198,30.560432,164.17438,0.00010330328 2004,612.77997,339.63458,26.3667,140.23178,4.7943304e-05 2004,1.6725049,54.4719,22.03194,112.27157,3.176363e-05 2004,609.36237,437.35303,29.784302,68.59262,2.8687296e-05 2004,1.792728,229.14381,32.563423,187.5854,2.4155877e-05 2004,608.216,2.6979687,30.930664,59.66227,2.293021e-05 2004,608.9198,38.234818,30.226868,159.82487,2.1533999e-05 2004,19.845219,56.46207,90.586945,231.02637,2.112829e-05 2004,300.14984,153.70193,89.29938,197.40833,1.2287478e-05 2004,0.4456006,316.57654,20.367733,138.70184,1.1580208e-05 2004,0.77331465,422.75308,17.67862,80.19812,3.2883925e-06 2004,1.7828223,15.427429,59.77589,119.17622,1.1266268e-06 2004,2.9974675,399.11984,55.830914,96.147156,8.281502e-07 2004,1.145472,7.0764356,15.663849,77.31813,4.997231e-07 2004,348.50906,4.178561,46.674408,153.71642,1.1911898e-07 2004,357.84726,0.0,47.707794,51.386833,9.643117e-10 2004,515.59186,0.0,46.076782,56.189,6.6023735e-11 2005,258.5682,208.736,35.19113,60.80728,0.16726586 2005,580.0888,218.56625,26.228577,57.346344,0.068676546 2005,98.7536,251.99149,48.37419,144.60806,0.049950585 2005,620.74756,241.28479,18.399109,57.57492,0.023936624 2005,129.69127,241.9519,45.584015,123.79843,0.012667976 2005,594.688,214.32625,20.171509,46.748795,0.010903895 2005,610.6111,225.5174,28.535583,156.19553,0.0061540357 2005,574.245,157.56926,62.57135,168.57335,0.0027453569 2005,609.89746,166.90291,29.249207,114.58501,0.0018283376 2005,315.09766,198.30264,46.060577,86.35846,0.0007064292 2005,56.59989,219.9519,118.83404,218.10822,0.0004413735 2005,1.0625293,191.89035,18.27099,80.543976,0.0003150345 2005,611.2309,88.669426,27.915771,135.9487,0.00019922372 2005,611.2008,309.80945,27.945862,159.12317,0.00019669383 2005,18.917036,86.28738,25.389353,54.296196,0.00019495423 2005,4.2523847,161.70163,56.070015,235.68701,0.00012277492 2005,609.5413,7.302995,29.605347,143.81993,7.123753e-05 2005,4.2295117,307.00073,55.87416,166.32568,6.0956474e-05 2005,317.9165,164.5055,86.85446,152.02515,5.0720002e-05 2005,608.3903,435.76547,30.756348,70.17047,4.0567375e-05 2005,2.409813,95.798645,36.403927,190.21304,2.690002e-05 2005,1.3121802,361.48227,19.528185,129.02899,1.9988378e-05 2005,1.3951905,269.48016,17.387583,136.42401,1.1945389e-05 2005,2.8827996,17.806355,58.551125,117.92345,5.2853716e-07 2005,2.6138427,424.56763,53.18297,74.25931,4.2666937e-07 2005,1.0260881,9.893193,12.408743,86.69519,7.7667295e-08 2005,420.79166,2.3726985,46.203033,55.386234,3.1464452e-08 2005,0.981447,3.230316,41.581985,54.78371,4.330393e-09 2005,393.664,4.8277183,45.9433,55.245747,3.4308734e-09 2006,321.5048,216.14894,25.246277,52.95314,99.8218 2006,352.2005,214.5593,24.180603,50.516663,99.75439 2006,613.47,220.29573,24.333069,46.84282,0.102818504 2006,476.3755,195.30023,40.707764,104.87073,0.08190407 2006,415.516,201.54562,21.832703,53.46103,0.03053396 2006,244.34001,226.49628,26.768387,60.479492,0.025512071 2006,21.407764,333.38776,31.028828,63.53711,0.022702085 2006,12.910734,298.93326,44.66548,151.84512,0.013242113 2006,258.2638,221.14412,32.3356,63.339798,0.008154498 2006,235.5379,213.38121,25.896667,51.012527,0.008014782 2006,444.3022,192.23795,76.56445,191.31482,0.006129741 2006,595.7074,216.98885,34.275818,80.688095,0.0051603373 2006,611.24744,125.01064,27.899231,135.5679,0.0013736972 2006,1.0560441,310.28964,23.994947,174.45422,0.0012874044 2006,3.133877,71.11287,33.484272,74.642136,0.0010843205 2006,587.6749,149.76689,50.438965,189.67455,0.00073740404 2006,620.1928,238.70436,18.953857,58.939774,0.00063898065 2006,611.99524,231.74472,27.151428,143.1146,0.0005233609 2006,1.0284017,281.4094,125.204544,195.999,0.00050767406 2006,304.2213,196.96877,64.706726,91.88982,0.00037987417 2006,0.61631024,151.44968,18.295631,81.27405,0.00030886312 2006,78.637115,285.92603,80.5919,165.49435,0.00022984056 2006,2.0898275,198.36594,35.30079,212.35501,0.00016532198 2006,1.7149073,102.03045,18.630928,76.04388,0.00014902999 2006,1.7012142,104.19722,29.187143,162.1522,0.00014447115 2006,608.66016,5.078724,30.486511,153.99191,4.289384e-05 2006,604.11316,340.0482,35.03351,150.94324,3.763738e-05 2006,609.2578,437.62344,29.888855,69.34302,3.111803e-05 2006,341.18457,167.29,85.83475,160.36281,2.3431132e-05 2006,0.3992741,410.3955,18.507301,100.59451,1.2467797e-05 2006,0.9617033,8.155033,12.949319,75.97911,6.502119e-08 2006,1.226971,2.2810645,31.446514,49.20785,1.0833827e-08 2006,475.88116,3.7750456,43.207153,46.341274,2.6169142e-10 2006,449.7957,2.2493978,44.093445,61.36972,2.653012e-11 2007,303.1047,203.8008,32.14084,69.18651,99.93125 2007,347.05994,204.84634,25.658783,57.375885,99.694855 2007,207.54324,229.81248,29.492798,66.25346,1.48775 2007,235.69662,203.83311,25.474731,50.848114,0.13702726 2007,293.6231,199.85983,25.546082,52.913406,0.076970614 2007,612.4944,221.00906,24.025024,50.486572,0.031102978 2007,323.07733,206.11136,24.18512,53.30771,0.013087123 2007,4.9805374,239.63594,85.37563,203.14668,0.00648536 2007,331.59854,185.22636,56.50357,96.19878,0.0012611287 2007,610.93634,128.00125,28.158386,133.28934,0.0010421331 2007,608.43634,0.0,30.710327,95.641235,0.00090617716 2007,1.395485,270.72037,32.7798,181.63214,0.00021762507 2007,0.68,358.20868,19.646582,80.542175,0.0001942922 2007,582.76196,20.14237,55.10681,237.70505,0.00013756589 2007,612.2773,244.03906,26.869385,118.2146,0.00012666326 2007,1.3572721,144.21648,18.442307,132.88487,9.72086e-05 2007,287.15176,172.58812,71.48822,143.92632,8.712884e-05 2007,609.2452,439.4295,29.90149,63.66873,4.0023995e-05 2007,4.008607,86.46484,58.970886,266.56064,3.9908584e-05 2007,588.1489,184.21555,50.99774,227.79208,3.840904e-05 2007,2.3998177,68.92403,29.370443,158.98035,3.8386337e-05 2007,294.8906,127.438324,141.29257,218.86029,2.1497268e-05 2007,611.9281,339.034,27.218567,139.92413,2.1162528e-05 2007,481.56058,221.14693,83.09067,234.27162,1.3042907e-05 2007,3.1244857,377.9571,57.397263,110.83359,8.643492e-06 2007,0.55973065,417.75513,17.030611,83.7052,4.8454813e-06 2007,2.6778076,18.947638,58.736946,120.08604,4.1171174e-06 2007,572.38855,415.1781,65.14972,81.621765,3.1219088e-06 2007,1.1829215,10.867986,13.331582,83.72449,2.1950157e-07 2007,558.51685,1.0513769,48.376648,46.43992,1.14695915e-08 2007,1.4875196,1.492365,39.4797,50.77449,5.1612767e-09 2007,223.88432,4.1749463,42.863174,47.850174,1.0987477e-10 2008,226.44974,202.22418,36.32733,82.68237,99.90177 2008,283.92557,203.70631,32.553528,73.70653,98.97909 2008,42.304707,188.75186,36.539776,58.94153,88.50718 2008,542.47705,220.9592,24.184875,47.52591,0.0012677913 2008,611.0024,168.89412,28.144287,113.58531,0.00073806895 2008,0.9145272,201.24007,18.137558,73.538895,0.00047610965 2008,160.17365,200.69814,23.773254,46.073273,0.00020448765 2008,1.1323714,112.85683,19.369268,132.05482,0.00013628919 2008,264.06235,175.24542,73.83264,143.79782,0.0001333777 2008,587.5943,200.85283,50.331787,229.32454,0.00012241598 2008,611.13885,371.67886,28.007812,120.644684,0.000120579956 2008,195.45335,168.40843,94.73311,166.7199,8.85754e-05 2008,3.1700847,90.1079,59.06308,218.90881,5.9050166e-05 2008,611.7891,19.27336,27.357544,128.07692,2.2798118e-05 2008,1.4159994,202.95201,32.84845,179.88762,2.2620356e-05 2008,1.2536523,4.946146,82.55621,179.30539,1.0064793e-05 2008,0.84620935,331.02182,19.322266,125.68536,9.7112825e-06 2008,586.39435,81.881485,52.466187,221.5131,8.072094e-06 2008,0.8035718,11.430424,21.527353,154.86253,7.634696e-06 2008,0.4488851,1.2637599,46.122097,64.1679,7.3247306e-06 2008,0.8494808,439.85184,21.812592,62.442535,2.8483105e-06 2008,3.2718816,260.08505,57.323334,206.80267,2.1662024e-06 2008,70.687744,2.429206,42.65145,48.66363,2.105674e-07 2008,95.46497,0.49541342,47.839592,63.650093,1.0774643e-08 2008,134.61755,3.7867043,43.84024,49.27208,1.0708538e-10 2009,92.7448,200.74843,55.1882,127.492905,99.85838 2009,184.23875,217.0538,41.087738,85.21747,51.549328 2009,263.05142,186.79347,34.917297,69.59056,0.26633823 2009,599.0348,232.44727,23.529602,49.184937,0.19821368 2009,205.98483,234.08618,25.004913,47.67517,0.18711604 2009,187.74509,255.41586,23.104065,56.103577,0.03543975 2009,612.4316,236.23677,26.047913,50.308548,0.03306318 2009,600.94336,189.15817,37.473145,137.8132,0.0021331988 2009,621.5376,130.5532,17.60907,52.65442,0.0013038972 2009,616.2553,145.7068,22.891357,89.37335,0.0001377443 2009,586.7754,233.92293,51.736267,232.0529,0.0001375491 2009,616.8877,78.6281,22.258972,83.599045,0.00013603584 2009,1.5335042,115.25123,29.51594,153.51276,7.416835e-05 2009,612.25037,365.58328,26.896301,129.93704,7.2501585e-05 2009,615.6584,325.43817,23.488281,84.201935,5.0244773e-05 2009,57.52056,126.4124,136.61188,275.44366,4.76354e-05 2009,586.16406,45.849754,52.35199,235.05551,4.70238e-05 2009,0.9490186,243.67764,18.847921,78.7695,3.068483e-05 2009,0.76847905,343.08505,19.529686,127.15683,8.71464e-06 2009,1.0049332,271.42648,27.958967,146.88486,6.2081235e-06 2009,587.13666,22.03035,52.01001,94.10727,3.400941e-06 2009,0.7343482,420.01782,16.66173,81.05536,3.0870208e-06 2009,2.4382243,174.98917,57.038456,231.31241,2.3410532e-06 2009,1.3715552,44.402195,20.493568,134.09984,2.0608204e-06 2009,5.611533,358.94415,78.96027,125.180664,7.2952525e-07 2009,1.5872803,11.657298,59.98668,127.44245,6.904214e-07 2009,0.75127894,6.7614813,12.9121475,92.30117,2.3752245e-08 2009,1.0802035,2.1014438,32.39107,50.44095,5.056605e-09 2009,552.5219,4.381525,45.18164,45.43142,4.283405e-09 2010,0.0,205.76193,45.812958,137.75928,90.158936 2010,70.3342,203.16306,35.224426,68.133514,29.319927 2010,374.52536,229.3861,28.902527,47.19899,9.72206 2010,415.4068,234.79001,23.919617,45.071716,1.567782 2010,13.319408,234.12334,27.572975,53.18657,0.052253418 2010,612.2599,143.57729,26.328857,56.065796,0.027121847 2010,0.46601972,242.42105,14.567044,54.339752,0.012986427 2010,8.509152,267.90637,25.844826,61.000916,0.008087849 2010,621.1805,206.14117,17.966187,51.82837,0.0052084806 2010,0.6519975,278.02356,14.624075,54.028687,0.0033105602 2010,623.80634,171.81241,15.340332,46.345627,0.0020961554 2010,0.71727055,183.28896,20.920044,98.94325,0.0012831315 2010,600.9025,92.90418,38.24414,166.46481,0.0007821942 2010,322.0869,196.20418,34.49298,52.11731,0.0005525219 2010,612.3268,374.17737,26.819885,119.28128,0.00037328602 2010,0.0,168.87355,91.08214,235.21236,0.00027249262 2010,611.3836,181.58762,27.763062,142.77597,0.00025952773 2010,0.69827396,298.41718,19.948467,95.206665,0.00014795418 2010,1.5765593,83.94055,29.7795,166.5755,9.281744e-05 2010,587.3727,183.74623,51.773987,268.91687,9.2289265e-05 2010,40.805763,158.80472,103.88758,198.68832,3.2608183e-05 2010,616.2389,55.09888,22.907776,92.88118,3.2196887e-05 2010,611.94556,263.9911,27.20111,149.7442,2.2083968e-05 2010,0.59473634,362.83054,19.557928,134.57837,4.4514445e-06 2010,587.0812,19.717884,52.06549,107.414276,4.3491896e-06 2010,2.3524952,332.65982,57.487144,152.5404,1.3780256e-06 2010,1.4392074,29.22459,20.572466,136.40457,6.7256514e-07 2010,2.1375132,20.141752,56.529057,110.26051,4.2003526e-07 2010,0.96102583,15.285736,13.456043,73.986176,5.078335e-08 2011,297.19016,233.73097,25.839844,48.442215,0.53479975 2011,618.49274,386.1981,20.65393,71.47394,0.0028125132 2011,622.8131,221.66331,16.333557,47.039536,0.0022870924 2011,602.6656,257.15878,36.48108,209.32935,0.0017090503 2011,511.827,260.22504,21.213898,46.14679,0.0005890039 2011,616.00287,237.84404,22.822937,74.239395,0.00056691247 2011,1.1104321,155.59409,18.024794,73.592606,0.00053240923 2011,172.74934,208.20222,31.258484,68.98329,0.00044997406 2011,0.7658504,197.42072,18.254955,73.1579,0.000361605 2011,192.61745,210.18959,31.234299,64.61742,0.00034165886 2011,587.44977,389.60132,51.6969,99.77301,0.00023416529 2011,616.9923,307.1521,22.154358,89.08768,0.00013981154 2011,612.3025,82.01745,26.844177,103.91328,0.00010842272 2011,0.9663143,103.357925,14.121248,52.69185,9.820244e-05 2011,2.1910563,97.45916,34.53976,174.87619,7.328796e-05 2011,0.7354232,411.3795,13.588912,51.80246,4.1139036e-05 2011,604.15656,116.88701,34.990112,160.58522,2.4180079e-05 2011,0.7884782,361.62823,19.869577,134.27408,2.0669031e-05 2011,63.53379,63.692783,36.383453,81.18892,2.031911e-05 2011,1.1442856,188.4368,33.483643,178.24313,2.005934e-05 2011,0.40035564,241.65477,18.599192,79.98616,1.9847283e-05 2011,610.7584,10.29573,28.388245,115.24744,1.949725e-05 2011,617.3805,150.07404,21.766174,75.08737,1.8802612e-05 2011,315.9245,178.00603,83.56137,166.10988,1.4931195e-05 2011,0.55521566,332.3074,18.134075,70.56564,1.0299818e-05 2011,5.6388154,146.5538,77.96791,271.9098,1.0146596e-05 2011,0.5834912,290.4918,18.285345,72.664795,6.417909e-06 2011,1.2141536,455.15872,28.122742,50.285156,6.2223016e-06 2011,2.687422,396.9681,56.068657,97.84512,4.3611676e-06 2011,579.382,1.1680453,46.184753,47.364464,1.7091061e-06 2011,1.379047,22.370775,19.649204,141.45999,3.0612964e-07 2011,2.8412013,17.515224,55.993526,115.064514,2.4211397e-07 2011,484.3287,7.002477,43.639984,46.659393,4.2879684e-08 2011,0.8390271,10.082846,10.707903,82.004135,3.016842e-08 2011,545.475,6.9062,48.58838,51.343918,2.4631058e-08 2011,518.93744,8.293346,43.756836,47.478172,1.7764112e-08 2011,1.483488,8.339977,29.779873,56.351192,8.2340845e-09 2011,95.66455,2.0893636,40.881622,47.62308,4.4736337e-10 2011,156.31148,0.5880518,42.281143,47.820217,1.9170089e-10 2012,203.4309,225.48419,37.579666,56.568634,0.97557455 2012,155.84549,220.7696,34.41835,56.382004,0.15147287 2012,0.68395346,163.49812,14.894049,59.81311,0.055513065 2012,2.1820085,154.2275,42.36704,94.40637,0.008883018 2012,90.11564,212.26828,41.823265,67.8703,0.008574647 2012,623.17773,233.66983,15.968933,52.28055,0.004537225 2012,0.90387535,197.03433,13.641895,55.400833,0.0026915804 2012,38.231308,176.29456,25.219643,53.770737,0.0019333147 2012,611.68896,202.67702,27.457703,112.946335,0.00025849868 2012,0.4671574,223.18326,18.359995,80.53128,0.00013113981 2012,618.0314,382.08014,21.115295,79.075195,0.000114791204 2012,604.9418,2.0608335,34.204895,62.028294,0.000104508625 2012,588.2315,245.45241,50.72406,225.06718,0.00010286452 2012,617.35645,92.1368,21.790222,77.36404,8.0109996e-05 2012,617.6327,304.72812,21.513977,76.217926,7.7980105e-05 2012,617.51196,156.24731,21.634705,81.28285,3.4986344e-05 2012,609.9127,441.16272,29.233948,63.199493,2.3380286e-05 2012,0.9993433,63.80431,21.286322,167.91359,2.3279274e-05 2012,616.1672,25.608831,22.979492,89.15186,1.8383309e-05 2012,0.55377686,397.22565,18.32482,72.34412,1.5294174e-05 2012,3.9555535,128.07718,79.12639,249.62173,1.3530065e-05 2012,409.01212,261.0243,30.568298,59.491608,1.2000288e-05 2012,0.6073096,323.50784,13.592934,47.06201,1.078428e-05 2012,0.6375944,282.55508,18.256466,72.75046,9.2414e-06 2012,601.82446,71.356064,37.322205,200.1291,7.291583e-06 2012,179.22292,160.59595,101.781204,214.16245,6.094519e-06 2012,0.9865007,216.90501,33.668037,197.61559,5.217246e-06 2012,0.7915894,441.79672,21.896412,61.6886,2.6870734e-06 2012,1.1306796,343.03516,32.91904,144.97427,2.2490299e-06 2012,482.13257,151.12468,83.05646,161.32268,2.0136845e-06 2012,2.583558,427.5386,52.96083,71.07361,4.466223e-07 2012,568.9121,11.62987,70.23456,140.71149,3.0879443e-07 2012,1.8944108,11.8546295,61.374954,120.422775,1.04510775e-07 2012,1.3589469,13.553932,22.213972,96.1237,7.2835e-08 2012,348.43512,6.596169,42.835266,45.388233,3.3372956e-08 2012,442.85132,8.899112,45.743958,45.145206,2.4543176e-08 2012,190.24825,3.2766292,43.850113,46.920265,1.6139337e-08 2012,476.88235,6.8233056,43.803192,49.98659,1.2775987e-08 2012,1.092238,2.9944565,36.218563,49.507626,9.260374e-09 2012,511.6241,4.9733934,41.329193,48.698822,1.5911486e-10 2013,620.1882,79.672424,18.958496,57.21054,0.00071762834 2013,617.8505,227.00552,21.296143,72.352875,0.0006294571 2013,1.2082675,192.41095,17.897388,73.883026,0.0005390027 2013,620.70215,193.88849,18.444519,51.894592,0.00028244418 2013,622.0433,298.9251,17.103394,50.794678,0.00021287838 2013,0.45269206,240.25076,13.989027,53.511993,0.00012461893 2013,618.19226,382.44296,20.954407,78.848145,0.00012173864 2013,617.9106,320.99054,21.236084,80.05191,0.000105958796 2013,610.5894,110.907135,28.557251,152.31287,8.5743435e-05 2013,0.8575277,85.24297,18.400368,74.338875,4.5661345e-05 2013,587.63257,244.58844,51.5141,228.77652,3.26824e-05 2013,2.9883854,86.582375,47.822514,188.6878,2.7639286e-05 2013,0.87921065,212.39807,28.058979,143.53549,2.6924607e-05 2013,0.8450326,126.468834,18.409946,75.306465,2.6391757e-05 2013,585.5763,21.12823,52.777893,104.49231,2.5435418e-05 2013,609.90326,441.5633,29.243408,62.538635,2.1553311e-05 2013,0.54203856,396.94183,18.301855,71.92798,1.4646184e-05 2013,607.87384,4.0680504,31.272827,56.779198,1.4414978e-05 2013,0.523186,378.2938,13.543326,46.3201,9.656314e-06 2013,574.39435,70.20802,64.0495,247.93413,8.3205805e-06 2013,0.6548462,332.02005,18.113537,70.85449,7.405194e-06 2013,5.4104495,209.87358,78.448074,252.93315,2.8289382e-06 2013,0.7132666,441.26205,22.03887,62.244934,2.6091743e-06 2013,1.0558448,346.56522,32.25555,140.41275,2.1763362e-06 2013,1.3294694,26.079096,29.94253,120.14466,5.172536e-07 2013,2.408475,426.8518,53.377613,71.88986,4.170862e-07 2013,255.00826,426.7822,73.524826,70.1051,4.0662323e-07 2013,174.82692,429.83844,71.21501,67.927246,3.587096e-07 2013,134.72752,428.14026,73.56012,71.3457,2.948977e-07 2013,475.69424,5.896483,45.713226,50.11581,2.0345891e-07 2013,503.91354,7.8570933,44.831207,48.082966,4.3144833e-08 2013,531.2657,7.030978,44.90802,50.429607,2.6160182e-08 2013,577.70245,4.5386996,47.025818,46.627045,1.582141e-08 2014,326.35226,223.48473,27.897278,55.953476,0.005137074 2014,621.49225,143.92274,17.654419,60.245544,0.001996368 2014,610.5151,77.836494,28.631592,142.78345,0.0009704126 2014,617.51086,179.73628,21.635803,77.02528,0.0008972477 2014,89.237686,187.14275,42.25351,75.32817,0.00026621486 2014,586.102,12.603665,52.2218,103.71824,0.00023155335 2014,617.8727,241.74326,21.273987,76.37314,0.00018574743 2014,298.4081,257.3241,30.092377,56.563385,0.00015641285 2014,618.2869,401.82538,20.859741,78.54953,0.0001494946 2014,618.10834,355.52823,21.03833,79.608185,0.00012424644 2014,602.97577,168.05855,36.1709,174.56245,0.00010047681 2014,0.55136925,199.7661,13.916931,53.300262,9.704743e-05 2014,617.96454,302.28204,21.182129,77.55905,9.3196366e-05 2014,600.2998,4.040663,38.846863,45.54847,8.62822e-05 2014,0.4660901,245.39154,13.817032,49.48526,3.4151843e-05 2014,0.79468346,159.5599,20.387138,129.35977,3.212892e-05 2014,602.53937,295.86362,36.6073,184.0242,2.4047025e-05 2014,0.5887752,242.23941,19.96313,134.14319,1.5881978e-05 2014,0.57610273,404.2625,18.242739,71.70166,1.22597385e-05 2014,0.7490967,126.81712,18.29042,74.4097,1.15996945e-05 2014,0.77521324,85.43674,18.338873,73.12433,9.897306e-06 2014,0.5900704,351.78055,13.668787,46.017487,7.5976814e-06 2014,332.4783,160.26804,79.49808,167.00406,5.0654353e-06 2014,1.0478915,302.6929,28.149805,137.6283,4.4385233e-06 2014,72.778015,144.75185,82.37253,166.4102,4.2899524e-06 2014,575.14197,425.13928,64.0047,73.65808,3.3014771e-06 2014,2.4426563,147.4138,48.331783,170.09193,2.7913443e-06 2014,1.5442164,55.987392,34.04605,174.73975,1.3823376e-06 2014,3.1011622,234.63217,57.550404,220.93369,1.2840202e-06 2014,2.7274237,391.90268,56.22042,99.82904,7.385161e-07 2014,320.30386,8.097227,43.517303,45.5698,3.5587874e-07 2014,0.79954064,14.040515,15.362288,72.51833,1.9446169e-07 2014,2.361123,23.354445,55.843864,93.16569,1.9058155e-07 2014,455.94138,3.3372607,43.03186,49.86306,6.624519e-09 2014,410.17133,5.163913,42.917267,50.86121,3.24073e-09 2015,581.7432,221.49704,34.59619,66.6658,99.738594 2015,191.99187,210.11565,28.757355,55.828964,0.009417409 2015,604.3623,228.17305,23.44928,50.865097,0.0036835484 2015,582.5163,189.95529,53.30365,183.63275,0.00079330656 2015,182.88414,230.17589,26.863861,57.83104,0.000507209 2015,617.68616,243.1844,21.46051,82.52727,0.0004676014 2015,618.1672,400.22922,20.979492,79.7771,0.000160092 2015,617.0178,320.14203,22.128845,78.83081,0.00013845114 2015,612.0328,149.37498,27.113892,139.22725,0.00013645306 2015,617.5386,53.864883,21.608093,83.48186,0.000110660745 2015,0.48471153,245.54443,13.827579,49.58777,8.4691266e-05 2015,202.36798,235.87447,25.54596,51.318222,7.6208446e-05 2015,0.8593498,202.7214,18.038464,70.744446,7.564841e-05 2015,0.8566911,114.982506,20.360783,136.39966,5.187013e-05 2015,0.6840918,180.87076,13.771651,50.176987,2.8758954e-05 2015,0.732522,154.404,13.933767,48.627777,2.7910577e-05 2015,0.5692554,253.14519,19.347773,136.16124,2.3310775e-05 2015,0.57488525,350.0337,20.105988,101.737,1.4397392e-05 2015,0.7144674,127.851555,13.92721,47.732826,1.4329273e-05 2015,588.08966,326.7131,51.057007,156.31601,1.2827894e-05 2015,0.7501864,71.00094,18.630383,77.217,1.2327327e-05 2015,586.96246,11.066091,52.184204,104.207985,1.0287841e-05 2015,3.075223,131.20816,58.043503,212.2894,6.9248963e-06 2015,0.55877197,418.03683,17.013287,83.872345,5.17547e-06 2015,3.3173828,261.1529,56.31143,204.96353,3.1593056e-06 2015,1.955376,23.93977,56.63185,99.50807,1.1260854e-06 2015,2.9584506,33.591778,82.3703,212.21877,5.9224294e-07 2015,2.247399,425.03937,53.12057,73.85928,5.6341844e-07 2015,0.8404932,14.02516,15.765817,79.65036,2.6931266e-07 2015,211.34,4.574092,44.17137,55.198368,3.4166634e-09 2016,501.6913,205.67839,37.24295,80.21486,99.49864 2016,414.022,215.0358,24.56546,51.591797,0.08432098 2016,447.66434,212.77795,23.978027,50.644897,0.006948983 2016,621.7687,196.66075,17.37799,55.200897,0.0015856078 2016,617.15674,147.77187,21.98993,81.51814,0.00033580718 2016,407.84027,152.47995,76.19437,156.15875,0.00029846732 2016,617.7194,234.17636,21.427246,84.13049,0.0002287147 2016,617.18835,338.21405,21.958313,84.03351,0.00016255784 2016,608.6432,2.9296322,30.503479,105.13692,0.00015091375 2016,487.0521,182.7344,72.29477,141.52542,7.332355e-05 2016,0.8126038,120.09507,13.5976305,45.95838,7.120085e-05 2016,0.8535173,153.30247,18.437572,77.97656,6.6038505e-05 2016,0.9435425,198.57439,18.347971,77.58931,5.787535e-05 2016,601.31635,229.04787,37.830322,209.28725,4.177871e-05 2016,601.4225,110.33709,37.724182,176.81406,3.7029848e-05 2016,0.7742676,228.9399,19.838884,135.05513,2.7534052e-05 2016,609.7251,438.42126,29.42157,64.750305,2.5998503e-05 2016,1.5761068,104.33393,33.585472,183.92532,2.0125255e-05 2016,0.5602816,84.74025,13.928752,51.31537,1.8613066e-05 2016,0.577885,317.8246,19.589956,131.63528,1.822321e-05 2016,585.81384,389.88602,53.332825,103.06128,8.951846e-06 2016,0.62880456,403.14465,20.629572,96.93967,4.3755153e-06 2016,3.463164,157.94876,57.000286,211.50153,4.110675e-06 2016,582.1307,4.1882095,57.01599,195.83066,3.0830254e-06 2016,0.6715528,36.671227,18.926954,71.048584,9.021571e-07 2016,4.949642,350.79504,79.77713,135.15704,8.609659e-07 2016,1.2865154,0.2906299,41.93781,46.26425,2.501237e-07 2016,2.0177069,13.168601,57.00664,111.09649,5.6880182e-08 2016,354.1554,2.8137078,43.592407,48.383804,6.5729284e-09 2016,306.24725,2.5675032,61.269775,45.321342,6.0608354e-09 2016,114.38725,0.0,45.184708,63.270782,8.134643e-10 2017,495.8284,200.0974,37.542084,89.87959,99.78363 2017,621.266,179.49919,17.880676,57.503525,0.0063021216 2017,381.79596,229.53456,25.578888,54.547684,0.005521518 2017,517.7272,204.8077,30.934387,75.637375,0.0024971517 2017,376.57913,185.61992,37.18573,76.01387,0.0012002732 2017,611.54395,102.54758,27.602722,142.65451,0.0007098259 2017,621.5633,220.69128,17.583374,55.387024,0.00069401815 2017,621.77136,115.2868,17.375305,51.54029,0.00043189485 2017,617.81396,282.87366,21.332703,86.21942,0.00016671255 2017,617.394,384.85672,21.752686,82.666565,0.0001521586 2017,472.16656,164.60428,90.315186,173.4667,9.715744e-05 2017,0.68753177,225.65503,18.209293,72.61963,9.5137155e-05 2017,0.740494,92.94614,19.761667,145.71931,8.1048594e-05 2017,587.1959,175.28842,51.950745,227.47906,3.980903e-05 2017,609.6472,438.56888,29.49945,65.5939,2.5929618e-05 2017,601.0008,319.11453,38.145874,165.94531,1.4193254e-05 2017,1.2808204,152.63568,34.160854,172.89255,1.2343348e-05 2017,0.5085059,331.3804,19.93415,132.58884,1.2040364e-05 2017,0.5485287,268.12018,20.524113,102.97278,1.1687518e-05 2017,610.13403,8.775814,29.012634,119.50879,8.634099e-06 2017,0.69075525,422.49997,16.943161,79.70352,3.5551934e-06 2017,3.0057993,224.09438,57.200916,216.88448,1.8346454e-06 2017,2.6140153,42.871777,59.310596,228.56584,1.2199878e-06 2017,5.033519,354.2087,79.69211,132.65005,6.29675e-07 2017,2.6830063,429.0981,53.053898,69.94644,3.69539e-07 2017,2.172435,27.748465,32.302097,132.04015,3.5664658e-07 2017,1.0876473,13.8297,15.20507,79.45833,6.725006e-08 2017,2.5395916,9.077829,54.35563,75.046974,3.4074173e-08 2017,22.550365,1.7757715,67.81308,56.846066,9.722828e-10 2018,580.002,194.98396,44.248047,95.156815,8.307435 2018,588.3319,195.58582,23.67157,45.71315,0.37438285 2018,622.0475,200.12894,17.099182,65.11682,0.12608917 2018,431.38437,233.94412,25.75174,49.29184,0.032837912 2018,610.14056,196.71425,29.006104,148.94933,0.008297955 2018,571.0883,159.59459,64.59863,244.23186,0.0029071267 2018,418.55743,202.50655,44.16696,100.741165,0.0010905949 2018,621.2563,298.85968,17.89038,59.053284,0.0005212499 2018,616.1529,327.28464,22.993774,87.13611,0.00043890244 2018,621.42786,52.521694,17.718811,51.30257,0.00024859817 2018,2.62347,17.348509,62.437237,105.98656,0.00015957402 2018,617.4469,404.83957,21.699768,80.42566,0.00015506943 2018,0.55917805,117.10521,13.75709,47.54094,0.00011739893 2018,483.40704,239.5025,25.335327,58.589325,0.00011182175 2018,1.4702612,55.723557,18.583992,77.45729,0.000101314516 2018,602.17816,89.51745,36.968506,183.4328,8.715652e-05 2018,616.9072,84.37788,22.23944,79.62148,8.113103e-05 2018,0.7263501,221.55148,18.345882,75.525635,7.960918e-05 2018,0.7159424,128.92506,20.444397,140.00099,6.529877e-05 2018,472.2523,173.90842,74.83566,166.61557,6.4045555e-05 2018,0.67175865,182.32701,13.940769,50.986176,4.3603366e-05 2018,600.6725,264.08255,38.474182,205.92474,3.890692e-05 2018,0.429681,145.09595,13.961483,48.388596,2.5720177e-05 2018,387.5023,140.86835,138.4094,229.16336,1.277831e-05 2018,601.3902,11.717195,37.75647,115.01768,1.1942337e-05 2018,0.6229785,392.1942,18.251406,71.15216,9.738233e-06 2018,3.0046241,72.77272,58.264088,239.39095,7.985633e-06 2018,1.1751953,192.96901,33.041996,166.84517,7.805915e-06 2018,0.62969404,276.0342,18.18427,71.29718,6.2832796e-06 2018,0.48129314,352.19617,18.396627,71.35104,5.7563907e-06 2018,0.8482194,442.6888,21.878788,60.90744,2.4386368e-06 2018,1.1263127,306.9898,32.7237,168.19324,2.137795e-06 2018,427.9337,36.90621,27.579193,60.27987,6.945158e-07 2018,5.1811037,358.1712,79.3662,128.64053,6.048484e-07 2018,2.6890886,429.26007,53.05878,69.72858,3.8668603e-07 2018,2.6574707,7.5677376,42.245186,54.54122,1.7925792e-07 2018,586.43274,2.5860646,42.929443,47.485424,1.4586303e-07 2018,47.03323,3.1143994,43.23048,56.382847,4.711851e-10 2018,415.35928,2.8471143,45.10797,48.59633,4.294823e-10 2018,389.47055,5.3469157,44.126404,51.227345,1.9414192e-10 2019,600.9501,6.2613025,36.486755,98.02238,0.02216836 2019,621.73895,55.017548,17.407715,58.96865,0.016870985 2019,580.2395,232.9212,43.498535,114.74402,0.016821943 2019,579.10095,61.04197,57.68805,276.92352,0.011132872 2019,621.56415,192.05145,17.58252,49.908478,0.0055029886 2019,622.4566,252.12057,16.690063,47.211334,0.004728101 2019,618.93866,148.61203,20.208008,56.594223,0.00405149 2019,621.1964,21.826757,17.950256,57.732826,0.0014724918 2019,611.2681,208.02768,27.87854,130.35242,0.0010033768 2019,197.2201,218.63191,22.57463,45.296127,0.0006774469 2019,609.12384,124.09339,30.022827,143.46011,0.00047602522 2019,617.4426,333.35614,21.70404,80.89011,0.00042777718 2019,624.44055,103.5561,14.706116,46.260475,0.00029276815 2019,596.0423,248.4111,42.768005,185.98657,0.00012007664 2019,528.6295,23.795235,39.691467,121.54493,0.00010118165 2019,1.1612183,91.269035,17.84962,65.9036,0.00010063235 2019,552.0585,220.81706,25.57251,50.40297,8.367975e-05 2019,0.8106112,125.42003,18.261742,73.5417,7.0169954e-05 2019,612.17676,366.5302,26.96991,132.11032,6.3860265e-05 2019,1.2066357,219.99841,18.119318,71.66235,5.583777e-05 2019,1.0668677,168.6382,18.078455,77.12811,3.3973174e-05 2019,1.9310751,150.71179,33.013683,167.25504,2.4139621e-05 2019,0.8134359,260.87805,19.464329,133.84314,1.4276144e-05 2019,412.93378,52.728645,29.555817,60.949966,1.364961e-05 2019,506.2376,0.0,130.39746,233.87411,9.805873e-06 2019,0.60067874,384.83716,18.323233,71.91931,8.638778e-06 2019,0.5600814,345.65897,18.34038,71.059906,7.2480993e-06 2019,5.7173147,39.150143,78.47274,268.75186,6.4322962e-06 2019,498.54776,8.390247,48.017487,140.62973,5.3798417e-06 2019,3.2091408,278.92422,56.60533,193.21506,4.2774845e-06 2019,2.4439552,17.164675,64.26331,113.825745,4.2100114e-06 2019,0.6910905,422.1532,16.925346,79.776184,3.550856e-06 2019,1.8320931,52.08509,29.543196,135.55533,8.859625e-07 2019,420.93488,0.465319,48.1528,134.47571,6.673694e-07 2019,2.6581185,428.63815,52.827785,70.216125,3.9289608e-07 2019,578.96405,1.0005046,47.900024,58.09951,2.682054e-07 2019,1.1375216,12.251185,15.232023,81.08417,1.9041768e-07 2019,440.0538,2.0470247,45.780273,49.822826,4.3506617e-08 2019,551.40753,0.90599775,45.72644,51.711124,3.451623e-08 2019,525.71313,2.3110516,44.414185,55.434296,2.3245612e-08 2019,38.55047,2.553916,44.39547,57.14743,1.3364512e-10 2020,547.0148,64.43173,37.397156,65.87431,0.010873235 2020,612.5904,53.699158,25.699707,81.0168,0.004398457 2020,582.53455,10.409903,56.61212,116.637115,0.0006164529 2020,0.7599854,166.15971,19.149435,84.13284,0.00061129354 2020,618.0398,237.65201,21.106873,80.09964,0.00055293733 2020,0.8838591,66.78316,12.976999,46.650856,0.0004354919 2020,617.40796,400.20187,21.738708,81.12607,0.00024400618 2020,0.5705607,218.62569,13.990924,52.532394,0.00018001888 2020,617.7201,297.79947,21.426575,83.00748,0.00016566225 2020,609.31323,77.805565,29.833435,161.61902,0.00015846877 2020,1.2665105,114.65203,32.840763,174.86774,0.00015203241 2020,0.84749025,98.40057,18.054789,72.8374,0.00015046938 2020,574.19336,100.6028,64.95331,279.15125,0.00014538171 2020,587.5857,315.946,51.560974,166.53406,3.4905424e-05 2020,0.5121452,244.91959,18.388529,75.23541,1.153251e-05 2020,5.2807946,100.79291,78.49821,256.49387,1.0995785e-05 2020,0.58820397,319.02563,19.764454,132.1838,9.5758705e-06 2020,0.49099123,288.49722,18.34591,73.04947,8.118384e-06 2020,0.48136395,399.2647,13.758646,46.90161,6.7456313e-06 2020,0.9751978,215.89314,32.982727,183.94453,3.9136376e-06 2020,0.71541834,422.20465,16.84425,79.925354,3.0472236e-06 2020,2.4642286,20.117773,61.718784,107.11387,2.7068936e-06 2020,2.9875603,330.167,57.67748,152.41656,6.9418866e-07 2020,1.4487126,22.95827,21.784843,91.40547,5.6259375e-07 2020,2.7650423,429.079,52.999954,69.93643,3.392685e-07 2020,449.21808,18.942747,49.240204,119.74751,1.9341707e-07 2020,417.4268,6.9136267,132.14719,216.83058,1.0304618e-08 2020,1.8325456,4.8283076,40.99654,59.75676,6.5394903e-09 2020,86.73335,0.64526695,44.936157,57.3847,9.3003016e-10 2020,422.46378,0.28359538,43.61029,48.013775,1.8676564e-11 2020,557.68317,1.89618,43.982056,47.963444,1.5486782e-11 2020,530.6968,1.8329346,46.205566,48.109447,2.3803353e-12 2021,98.67105,218.18939,36.37265,68.23895,0.030429691 2021,606.4948,37.520817,31.901001,71.503006,0.014356905 2021,0.534587,158.64896,11.972543,45.66992,0.014324471 2021,440.28235,210.32957,25.920532,50.142715,0.009413961 2021,0.92771405,149.14076,27.089684,86.86427,0.0026372024 2021,3.839655,92.05782,46.59816,193.81723,0.0016394394 2021,620.5699,99.668175,18.576782,55.57728,0.0010342165 2021,31.041609,219.61873,34.726494,65.2213,0.0006132081 2021,610.83453,94.291405,28.312134,142.63727,0.0004405257 2021,0.7289372,84.58576,13.521037,49.355797,0.0004385426 2021,0.6611865,97.44599,18.764252,88.67449,0.00035345284 2021,617.53937,177.28922,21.6073,82.674805,0.000248266 2021,617.66016,384.44177,21.486511,84.787506,0.00023739508 2021,617.4979,229.6718,21.648743,80.84944,0.00022779565 2021,592.3017,9.460808,46.84497,166.3689,0.000205586 2021,617.8559,314.5597,21.290771,81.79584,0.00012674482 2021,1.1727661,219.35376,17.524475,65.44403,0.0001017211 2021,0.91623294,186.03575,13.965844,58.602463,8.59545e-05 2021,0.41899985,259.2632,13.48977,48.343567,5.9869886e-05 2021,609.5301,438.3136,29.616577,66.29901,2.8349672e-05 2021,601.93665,239.31511,37.210022,201.46782,2.706884e-05 2021,572.77313,351.48328,66.373535,133.98975,1.5350623e-05 2021,1.4463501,200.89923,32.60515,174.34802,1.2648722e-05 2021,0.669738,406.2024,18.162611,71.03375,8.626823e-06 2021,0.5903084,320.22006,19.713032,131.42334,8.146646e-06 2021,3.0056837,267.9995,57.12697,204.28696,2.2173274e-06 2021,4.235036,16.515762,80.77227,147.06917,1.5672216e-06 2021,1.8626107,27.267807,28.666004,132.10718,9.814177e-07 2021,1.0513464,16.946238,13.582027,78.02752,5.981097e-07 2021,2.7613363,430.11588,53.00668,69.3631,3.633182e-07 2021,583.5604,1.9887859,46.36255,48.9711,7.582155e-08 2021,510.9716,1.2421582,44.47751,47.04345,1.3839486e-11 2022,525.2602,191.83769,28.212463,56.15143,0.006759321 2022,546.38586,246.76572,36.532715,77.430084,0.003768105 2022,620.4069,189.07367,18.739746,63.58673,0.0014185559 2022,606.57983,7.7298245,32.566833,117.354996,0.0008026954 2022,520.86334,165.72838,44.097473,128.74773,0.0005186664 2022,1.3546606,79.70471,19.517271,136.20724,0.0002955245 2022,617.3533,231.66487,21.793396,86.44182,0.00022837271 2022,618.1281,398.68234,21.018555,82.21927,0.00016692078 2022,611.2548,105.63143,27.891846,155.17368,0.00015231583 2022,0.6630363,168.89363,18.316559,74.05234,6.1030114e-05 2022,601.3341,184.80147,37.81256,185.25334,5.2603526e-05 2022,612.6726,287.9625,26.47406,141.12732,4.976945e-05 2022,0.7934766,112.36383,13.711966,48.406906,4.5491393e-05 2022,495.4525,129.70175,110.15674,224.5906,2.8240816e-05 2022,0.8170589,180.3829,28.437239,147.03424,1.3489198e-05 2022,1.6320662,44.904915,18.782602,75.62743,1.2242973e-05 2022,0.60385257,391.94528,18.265934,71.70935,9.354831e-06 2022,0.5632792,276.37994,13.733618,47.91275,9.123375e-06 2022,3.1483953,62.75961,58.641098,232.13983,8.803703e-06 2022,2.7797005,16.145319,59.279694,112.884575,8.543347e-06 2022,0.52849776,330.75613,18.421663,72.32382,7.326687e-06 2022,572.7506,356.0553,66.39606,130.08826,7.148124e-06 2022,540.2214,7.7445736,91.069275,71.09811,4.2214456e-06 2022,0.83795494,442.32632,21.878273,61.34619,2.6355228e-06 2022,0.9657683,262.31323,33.57103,172.85043,2.5524785e-06 2022,568.8225,13.126432,70.32416,208.59164,2.1807411e-06 2022,2.9749658,330.92886,57.470474,151.97552,6.754473e-07 2022,6.6886654,4.276696,47.118088,56.960976,1.6125007e-07 2022,524.1647,5.794595,47.24597,55.121178,1.4894091e-07 2022,475.96616,4.6227264,45.431488,53.00125,5.2927735e-08 2022,1.4088078,2.4930778,20.431313,45.137707,4.04121e-08 2022,573.7024,2.7641277,46.87903,46.310005,2.2468537e-08 2022,108.83589,2.682933,44.410477,51.922863,1.9678865e-09 2022,135.38913,2.1712434,42.84828,50.44482,3.4060363e-10 2023,541.33936,221.00912,31.71228,62.07666,0.0021204674 2023,616.37146,378.00266,22.775208,79.36783,0.00070669805 2023,611.9496,290.43484,27.197083,143.8222,0.00017943063 2023,617.6665,191.03311,21.480164,80.15625,0.00016935257 2023,617.43396,249.79709,21.712708,83.31955,0.00011119286 2023,617.7283,96.773346,21.418396,77.47476,0.00010444675 2023,615.76483,20.704493,23.381836,72.76669,4.702299e-05 2023,609.5197,436.62595,29.626953,68.54407,3.3596498e-05 2023,0.6468205,67.583084,18.376581,73.6313,3.1056956e-05 2023,574.1253,162.06268,65.02136,252.18082,2.153412e-05 2023,0.71151936,202.26277,18.177153,69.41493,2.1248805e-05 2023,586.5622,390.7376,52.584473,99.41339,2.0417829e-05 2023,602.58624,97.15054,36.560425,183.69318,1.631765e-05 2023,0.63225913,109.496956,20.410332,138.46649,1.4667053e-05 2023,0.6401197,399.2312,18.201984,71.19226,1.0580616e-05 2023,0.55556643,239.67542,18.348242,73.95737,8.874766e-06 2023,0.48050457,351.88736,13.694373,45.877747,6.9273e-06 2023,0.6031958,284.13037,18.224873,70.59427,6.5707823e-06 2023,0.89260095,317.4529,28.143559,137.56226,3.931609e-06 2023,1.2068962,164.7602,33.435165,169.96951,3.1569805e-06 2023,346.25922,150.90579,101.39987,210.97995,2.5626057e-06 2023,0.87530684,443.1012,21.799437,60.41693,2.3557584e-06 2023,5.5176272,99.5795,79.481415,255.29688,1.8001385e-06 2023,2.9934456,261.025,57.513287,208.9851,1.1352162e-06 2023,2.2719254,27.508322,54.73205,84.17526,9.618793e-07 2023,1.2225273,21.013975,15.073419,76.90488,8.7564905e-07 2023,566.56335,22.10879,72.58331,126.7255,5.344921e-07 2023,1.6228304,10.291989,37.25477,49.18604,2.3790422e-08 2023,82.14245,5.621476,44.10412,45.452362,3.3175813e-09 2023,571.8713,3.1798244,46.56317,46.04789,2.3312468e-09 2023,545.10675,0.72195315,44.044373,45.41347,1.9653836e-10 2024,134.35358,185.5278,25.260513,50.483322,0.018140078 2024,277.93137,188.73422,28.622925,57.288513,0.0054101343 2024,621.97363,104.985985,17.173035,48.806602,0.0010187887 2024,0.55418867,87.89838,18.528603,74.23691,0.0003274441 2024,290.82397,209.04211,23.581207,54.392487,0.00023691742 2024,612.02454,118.194534,27.122131,134.98924,0.00023558202 2024,617.90405,221.26178,21.242615,85.07074,0.00017114029 2024,0.9760417,117.0475,19.739346,131.34772,0.00016073328 2024,617.88763,380.59366,21.259033,80.539795,0.00012566175 2024,617.68066,284.13766,21.466003,81.97299,0.00010506855 2024,610.46,12.175915,28.686646,101.83409,5.80114e-05 2024,352.21906,159.91211,80.300995,154.29715,2.6242575e-05 2024,610.0475,440.78662,29.099182,63.580902,2.273732e-05 2024,0.7221322,193.01886,20.058565,131.76755,2.2513608e-05 2024,602.39984,225.23323,36.746826,197.76134,2.1202368e-05 2024,3.4030893,103.5309,58.65577,205.76277,1.9709365e-05 2024,0.6042489,225.39246,13.662727,48.029785,1.8378822e-05 2024,0.7930843,59.77504,13.665391,48.517113,1.5485455e-05 2024,0.67620116,399.56845,18.135172,70.391235,1.2015918e-05 2024,0.5774284,277.37177,18.248323,70.4928,7.5907137e-06 2024,572.639,33.56399,66.50769,205.32799,7.229956e-06 2024,573.482,363.8624,65.66467,123.79376,6.6897037e-06 2024,0.51653,379.62152,13.621814,45.7016,6.583879e-06 2024,0.5479045,331.89206,18.323935,70.999176,5.628377e-06 2024,1.0961165,271.4826,32.053078,170.14783,3.5201601e-06 2024,0.87739587,442.7261,21.854456,60.86142,2.6379118e-06 2024,1.5441846,41.21144,35.80695,149.02708,1.4206303e-06 2024,2.8276205,396.1173,56.193115,96.85239,6.821643e-07 2024,1.9484425,17.718767,37.189278,72.91588,3.8823483e-08 2024,530.9349,3.1757488,43.221436,45.187233,6.701136e-09 2024,102.13123,0.20477214,43.582268,56.747078,2.5957849e-11 2025,19.601866,191.3426,25.421846,54.578384,0.0129375225 2025,620.33514,85.62379,18.811523,52.853218,0.006206594 2025,120.24357,174.17279,46.373833,71.79587,0.006050807 2025,1.2516032,199.5003,12.751187,51.24153,0.005639442 2025,379.89407,182.16527,39.419373,78.83925,0.0033857704 2025,609.68365,75.365814,29.463013,138.6043,0.0022119211 2025,619.9622,43.108185,19.184448,62.940308,0.0012622176 2025,1.27483,127.24867,18.892736,135.226,0.00091424107 2025,0.56901044,111.46059,14.12248,49.184097,0.00056836056 2025,399.9938,162.16573,46.479553,112.737656,0.0005612003 2025,0.7751107,79.7313,13.702866,49.5055,0.00032515905 2025,616.8206,164.72386,22.32605,80.44034,0.00027959645 2025,617.8315,243.58282,21.315186,84.89557,0.0002186924 2025,585.66425,10.679636,53.012512,112.550606,0.00020584044 2025,304.90332,61.258327,26.640991,63.072796,0.00012982498 2025,617.1115,323.8593,22.035156,84.25394,0.000120724704 2025,0.55047286,218.37703,18.383205,77.768326,0.00012057236 2025,360.40173,140.25139,99.940216,204.57933,5.5452285e-05 2025,600.89264,247.3496,38.25403,199.58113,4.9729693e-05 2025,612.9211,372.2393,26.225586,125.60687,3.9122056e-05 2025,3.3067987,140.88174,58.458088,203.8519,3.8145008e-05 2025,410.73315,118.79365,73.0365,173.8377,2.8124492e-05 2025,110.0118,139.50836,83.85877,152.23746,1.5483696e-05 2025,423.40326,169.61345,20.984314,48.201782,1.2597103e-05 2025,0.644742,228.64763,28.242302,151.22694,1.24202315e-05 2025,0.6084888,319.76813,19.465603,130.68741,1.0832065e-05 2025,4.232041,35.329792,79.96176,221.25887,6.3310026e-06 2025,1.0550903,47.33832,20.469282,130.47122,4.328897e-06 2025,0.6845557,421.9874,16.91696,79.71857,4.11773e-06 2025,2.202868,20.879587,57.84031,105.55336,1.1746794e-06 2025,2.9603353,335.60147,57.586113,147.40417,8.1808054e-07 2025,1.0090593,13.108946,14.396405,79.25859,2.2873756e-07 2025,284.61746,0.0,85.572205,226.74918,7.914297e-08 2026,10.557951,201.39969,22.081385,50.282745,0.06182079 2026,621.0833,162.29973,18.063354,53.197388,0.008013507 2026,396.31506,178.87054,44.221313,99.804016,0.0077839997 2026,1.7371224,212.18997,21.289686,55.873016,0.0029123102 2026,610.59863,104.232124,28.548035,134.96439,0.002650467 2026,276.8278,186.09114,27.49759,61.147354,0.0014472473 2026,617.193,185.6477,21.953674,83.30313,0.0011295506 2026,620.2112,119.79385,18.935486,57.579514,0.0010524222 2026,1.8768327,89.97451,32.076046,188.71649,0.0004324063 2026,621.7356,248.11732,17.411072,55.34886,0.00040113897 2026,617.972,312.5237,21.174683,81.426025,0.0001764599 2026,618.06244,392.84576,21.084229,81.097534,0.00017122667 2026,612.0437,224.84668,27.102966,147.92966,0.00010633982 2026,0.9485384,64.00064,18.323517,73.7827,0.00010279352 2026,587.5419,124.20081,51.604797,216.84528,9.917428e-05 2026,616.07825,49.853516,23.06842,84.9281,7.410824e-05 2026,376.49066,134.59381,94.36014,207.53952,5.4978478e-05 2026,1.0859075,132.56558,19.16107,87.85098,4.582782e-05 2026,1.5562232,199.09294,32.03883,175.5756,3.554306e-05 2026,0.42763674,238.56381,18.544577,80.097046,3.101546e-05 2026,609.90594,440.43033,29.240723,63.923126,2.3611572e-05 2026,585.23987,7.8037696,53.9068,121.25363,1.5761616e-05 2026,587.2906,237.0158,51.85608,237.41911,1.48001445e-05 2026,0.6139535,319.31866,19.490768,131.22021,8.553553e-06 2026,321.06628,26.65658,36.29532,108.016426,7.925075e-06 2026,4.790612,123.12164,76.07383,248.05301,6.484279e-06 2026,2.5966456,239.90086,57.038902,230.00856,4.223733e-06 2026,0.7613924,422.89804,16.554888,79.27832,3.5436844e-06 2026,2.0441847,20.16121,58.155567,104.10174,1.0062831e-06 2026,317.2251,9.144147,85.33252,208.8363,7.2727875e-07 2026,2.9287858,397.12015,56.24398,96.69733,6.172605e-07 2026,1.1269352,7.283955,22.147886,58.403835,1.9643362e-08 2026,312.10895,2.83382,42.467896,53.525684,9.684318e-09 2026,288.11795,2.0417922,41.00482,45.941273,8.9208424e-10 2027,424.53305,207.87411,22.615814,46.900055,99.6235 2027,502.67856,207.18797,26.202362,66.63426,10.992549 2027,462.1337,203.26894,24.66336,46.928833,0.007931914 2027,416.9433,183.09581,41.483124,93.564865,0.007456354 2027,620.28937,249.14128,18.8573,58.860733,0.0072800997 2027,480.28964,100.90257,70.677155,182.46617,0.0030682061 2027,610.3986,212.85016,28.748047,135.3833,0.002928237 2027,505.17273,107.97767,38.392517,81.53733,0.0024832783 2027,620.22375,58.023483,18.922913,57.578346,0.0021595296 2027,621.12476,113.614296,18.021912,51.872368,0.0007646136 2027,621.6931,193.42873,17.453552,62.041595,0.0006411439 2027,1.1464307,190.19298,17.788391,67.251816,0.0003475907 2027,616.79974,295.40643,22.346924,91.42096,0.00031939492 2027,377.03192,94.301704,141.17181,238.98624,0.00022334495 2027,486.57678,134.29738,35.695618,90.962555,0.00020157345 2027,608.8724,58.164272,30.274292,168.88849,0.0001682935 2027,1.6416326,97.411255,28.287216,150.14375,8.143723e-05 2027,601.94275,259.33533,37.20392,200.63806,7.99299e-05 2027,583.25397,8.964726,55.822083,312.95493,6.6100765e-05 2027,612.92847,377.4686,26.2182,120.77136,4.2421616e-05 2027,0.6198324,216.72586,19.87619,134.1706,4.1046274e-05 2027,0.9656258,68.24639,18.510424,78.54606,2.2461452e-05 2027,592.853,2.8765562,46.29364,87.428925,1.5414216e-05 2027,0.6346664,341.37582,19.466276,130.89539,1.043169e-05 2027,3.3077345,164.33896,57.18646,200.65552,8.518646e-06 2027,98.46503,134.40952,101.21922,206.52634,5.721789e-06 2027,0.7250049,422.56122,16.71462,79.53378,4.1163316e-06 2027,0.879646,255.7159,32.55176,179.96608,3.4747522e-06 2027,2.897269,397.00128,56.202354,96.37195,6.916524e-07 2027,1.079865,13.538562,13.060841,73.432625,2.6860215e-07 2027,358.02365,5.6481757,48.740753,55.096287,2.1841282e-07 2027,2.1059067,16.664642,57.655937,109.12309,2.1058068e-07 2027,1.6780827,5.278991,38.537483,52.5351,4.0834063e-08 2028,543.4903,206.6091,30.503662,67.74832,99.58509 2028,441.9783,207.59135,29.000214,62.268234,99.23465 2028,602.4055,67.13906,36.54657,104.26351,0.047667712 2028,582.00696,89.32832,56.42871,196.93031,0.041168142 2028,606.65106,228.29675,32.495605,95.34042,0.025897153 2028,372.49588,190.65446,44.943604,76.35387,0.020638527 2028,623.11536,269.2879,16.031311,52.308807,0.006654821 2028,562.1453,207.58328,23.839111,54.6427,0.005601436 2028,618.64764,47.703472,20.499023,63.36085,0.0038366984 2028,619.01666,115.7109,20.130005,64.35375,0.0029657125 2028,619.256,206.7376,19.890686,61.37294,0.002885833 2028,612.3573,0.0,26.789368,45.29506,0.0007123161 2028,618.6183,163.31165,20.528381,66.02286,0.00071158685 2028,0.7947127,189.07765,17.834677,67.76451,0.0003507093 2028,496.97668,94.69292,141.50311,260.3971,0.00026266265 2028,422.55048,152.23387,74.76788,165.93419,0.00020110075 2028,595.8677,4.387458,43.27899,88.82237,0.00015672477 2028,588.2087,189.80872,50.93799,248.00525,0.00014119422 2028,0.700061,90.07141,19.865469,138.42747,5.9972524e-05 2028,354.6343,139.17854,81.55505,174.05098,4.1963987e-05 2028,609.83716,438.91705,29.30951,65.797424,3.8205442e-05 2028,1.1652328,150.60995,33.2421,160.19214,2.2641463e-05 2028,0.49133465,229.62495,19.704521,137.2372,1.5587942e-05 2028,0.62645674,341.324,19.51364,130.74606,1.0222763e-05 2028,585.43365,392.11606,53.713013,101.7876,6.6498715e-06 2028,3.7421713,209.85602,56.831905,218.12198,3.1694576e-06 2028,0.8574927,442.6081,21.732115,60.694458,3.027584e-06 2028,1.9024415,40.38024,59.947403,220.04495,1.491542e-06 2028,5.305726,358.62424,79.3118,128.21509,6.6487405e-07 2028,1.2287655,25.811726,18.851665,115.87909,5.871277e-07 2028,2.4573226,16.241163,50.136784,64.94057,5.3567362e-08 2028,414.50903,0.1599935,89.33145,75.60263,3.097646e-08 2029,487.00867,211.03888,33.695557,68.589874,99.5635 2029,400.47403,206.65085,23.264252,45.376587,99.03544 2029,414.65488,199.46448,23.06363,46.238083,0.08735233 2029,537.86975,184.03548,25.43628,49.716385,0.011063227 2029,507.31693,213.9068,24.17929,55.389618,0.0061973324 2029,393.9155,182.35422,47.598145,93.857574,0.004246436 2029,611.7225,143.90208,27.424194,125.080154,0.0004542014 2029,618.19794,241.24751,20.94873,85.44719,0.00044842367 2029,0.72009444,211.09605,13.442136,47.078415,0.0001943589 2029,617.25183,59.080853,21.894836,83.22806,0.000105301784 2029,468.31567,183.7861,72.664185,136.24152,9.6254735e-05 2029,0.9409155,157.58977,18.063652,75.02005,8.7484455e-05 2029,612.5514,370.16245,26.595276,126.80017,6.801714e-05 2029,0.8771175,184.43228,19.805965,125.02658,4.856084e-05 2029,602.8307,257.88818,36.31598,195.84546,3.222257e-05 2029,0.80802083,56.73506,13.470682,46.057983,2.362707e-05 2029,0.43027508,238.55574,13.896018,49.32646,1.50368405e-05 2029,584.6572,1.0958854,54.48944,231.98552,1.3772562e-05 2029,379.22888,131.04085,88.78583,213.82097,1.337875e-05 2029,0.680459,98.715935,13.766297,46.442375,1.2644839e-05 2029,0.65393394,320.26263,19.21928,130.98956,9.848628e-06 2029,1.1596582,68.87927,28.48865,162.911,8.808994e-06 2029,3.3941913,120.13283,58.675438,205.44154,8.650617e-06 2029,1.2493603,215.81755,31.988764,174.9358,6.8264358e-06 2029,0.5693018,275.82352,18.23568,71.383545,6.6322273e-06 2029,596.2786,7.9515724,42.868042,76.79115,5.7498614e-06 2029,0.7388867,422.09064,16.471043,79.69916,4.2326687e-06 2029,44.567764,126.66995,107.07022,223.39001,3.1005043e-06 2029,2.838047,275.69928,57.49355,198.96521,1.2261792e-06 2029,2.8518393,21.91478,56.267014,93.334816,6.3918486e-07 2029,2.7190723,429.38885,53.186707,69.52985,4.724818e-07 2029,1.6502198,14.912286,26.309242,57.75885,1.705188e-07 2029,19.079273,6.955899,42.683723,47.61752,1.618462e-08 2029,87.4857,2.235153,44.956207,56.211555,8.299876e-11 2029,114.36862,1.2904932,44.582077,51.571877,5.855094e-11 2030,575.58435,211.23997,43.86017,91.0573,99.82224 2030,433.42673,204.74852,26.931305,55.809616,99.383644 2030,44.601948,185.63048,31.594585,58.12973,0.40768814 2030,449.42944,204.90144,20.032074,46.506866,0.117235005 2030,593.56024,253.308,22.207336,48.906143,0.039529115 2030,610.6476,174.00912,28.499084,131.89587,0.007486664 2030,618.92865,161.68553,20.218018,59.345337,0.004538791 2030,419.86002,178.09532,58.20578,100.21385,0.0036289443 2030,621.86957,199.91275,17.2771,57.21216,0.0019521601 2030,619.0335,252.72685,20.11316,78.413925,0.0019192103 2030,1.0838094,166.09572,18.39932,76.90633,0.0015809239 2030,203.32155,204.48383,22.190826,46.325302,0.0009319848 2030,0.8120329,65.34441,20.237915,151.3675,0.00033661228 2030,606.2151,2.31528,32.93158,65.60483,0.00017043782 2030,0.7615381,70.82896,13.739907,51.026176,0.0001485531 2030,609.27905,66.42699,29.867615,158.9257,0.00013024278 2030,601.74744,230.04204,37.39923,198.16405,0.00011373247 2030,533.1655,132.11363,105.814514,245.21428,9.209338e-05 2030,3.3070135,93.03462,56.825085,206.1306,4.3422024e-05 2030,0.57282877,205.18329,19.921755,140.69022,4.258379e-05 2030,612.96216,367.95773,26.18451,128.20862,3.379074e-05 2030,581.1231,0.0,58.02356,284.40726,1.5076686e-05 2030,382.41705,120.033035,138.74854,234.88026,1.1755741e-05 2030,0.6353532,340.20346,19.187737,131.70285,9.87643e-06 2030,0.72650963,422.1699,16.86976,79.62537,3.893149e-06 2030,0.90978926,248.37363,32.76828,179.28497,3.4461273e-06 2030,2.9924886,24.90292,55.351315,106.01996,2.3169057e-06 2030,2.8568864,394.8354,56.394115,98.16046,6.149878e-07 2030,1.0123414,16.331207,14.903424,72.69129,4.946431e-07 2030,1.3722022,7.1186996,30.425982,45.85207,1.2961151e-08 2030,94.7812,2.1583579,43.3348,52.04597,1.745303e-10 2031,485.78824,201.83853,34.326508,76.497986,99.883385 2031,1.9172461,194.69186,23.564564,54.46135,2.5005138 2031,441.77298,212.05725,22.89447,45.588654,0.022918003 2031,338.4762,206.74167,34.577423,56.95401,0.012615672 2031,507.7847,212.76042,23.316498,55.875626,0.010300837 2031,620.31335,85.80903,18.833313,55.094444,0.004703215 2031,456.60104,211.7923,21.975647,46.821045,0.0028804492 2031,621.98975,237.25745,17.156921,49.234253,0.0018249337 2031,1.7527442,116.60947,31.65671,166.04922,0.0010397466 2031,609.4664,95.882195,29.680298,155.80197,0.0008081681 2031,620.9676,169.8507,18.179077,53.14981,0.00075244013 2031,466.6512,176.93433,71.061066,139.74231,0.00051723694 2031,1.0340072,73.88765,18.110252,70.03543,0.00017958214 2031,612.48663,224.25542,26.660034,109.354324,0.00017802886 2031,0.90818524,201.72227,20.320784,165.12251,0.00014916067 2031,617.6733,317.71176,21.473389,82.85126,0.00012322326 2031,0.5357487,111.07466,19.042227,86.99135,0.00011049328 2031,608.5686,6.251087,30.578064,133.79645,4.9163355e-05 2031,586.74884,178.51303,52.397827,220.6362,2.9957326e-05 2031,613.20013,370.23193,25.946533,124.19058,2.9322595e-05 2031,0.49375245,241.4272,14.035286,53.45433,2.3868628e-05 2031,3.0160255,192.14081,54.09119,231.8778,2.171784e-05 2031,0.45037436,399.4213,18.805452,77.230896,1.3655274e-05 2031,0.7485832,289.91537,31.610617,180.8624,1.2742165e-05 2031,0.6771867,42.49043,14.079024,54.45448,2.439102e-06 2031,2.1706934,30.390814,59.78423,210.08983,1.7849172e-06 2031,2.1635172,389.5626,55.181538,102.92221,8.673346e-07 2031,1.621185,11.012594,38.794136,85.8559,3.6223444e-08 2032,304.65836,206.44498,22.110992,51.36499,0.41553098 2032,613.6195,201.20673,24.393372,55.651672,0.029306 2032,535.0436,223.03123,20.305847,45.22786,0.01861645 2032,568.3139,188.90025,35.326904,69.807144,0.00399686 2032,540.1194,203.57649,33.493103,60.84041,0.003073237 2032,608.2371,118.89301,30.909546,152.23746,0.0026560156 2032,389.39096,142.02138,36.493774,86.1803,0.0018124529 2032,393.76508,228.28883,23.68399,49.888046,0.00067977473 2032,1.0536352,143.21251,18.050188,70.79785,0.0004898027 2032,372.66614,216.80725,24.036072,50.33902,0.0004365489 2032,568.87915,120.34495,70.26752,231.51529,0.00029871505 2032,1.1803614,182.66725,17.836851,74.02348,0.00025314908 2032,617.81616,307.82678,21.330505,80.22266,0.00018433605 2032,612.3965,214.84396,26.750183,155.63986,0.00017448295 2032,4.634681,259.26804,96.187836,208.30978,0.00015047341 2032,278.377,213.8507,22.127045,49.01799,0.0001392314 2032,616.4403,72.811516,22.70636,79.573265,0.0001227851 2032,358.90482,113.49883,74.15683,170.16492,0.000107552296 2032,1.4319092,290.07764,18.72532,81.12567,9.721797e-05 2032,612.169,332.4624,26.977661,143.92865,8.211118e-05 2032,3.1985157,277.97977,42.59867,129.21628,7.929714e-05 2032,0.959209,183.41728,28.608305,160.94576,3.5969915e-05 2032,609.3737,437.71475,29.77295,67.395935,2.1692998e-05 2032,3.183467,134.25319,58.60406,247.70009,1.8480658e-05 2032,615.21173,16.705173,23.934937,86.65263,1.729329e-05 2032,305.227,66.01875,37.82199,87.05307,1.7183113e-05 2032,0.86802083,53.9425,20.578077,142.1663,1.29113405e-05 2032,0.81759846,354.52737,19.262213,140.14441,1.1666393e-05 2032,0.5381942,99.087395,13.99645,49.62316,7.823383e-06 2032,3.6815627,380.21594,55.84942,113.40314,5.2219652e-06 2032,2.703828,23.686821,54.245575,91.900566,6.2903285e-07 2032,1.3883281,16.830883,15.500269,60.8913,8.136793e-08 2032,290.87265,27.497103,86.065186,205.67218,6.903051e-08 2032,80.56797,4.748071,45.550102,49.930305,4.486154e-09 2032,1.7513396,8.251091,35.08604,46.51395,4.459494e-09 2032,40.751865,7.5846047,44.037853,46.56885,3.272882e-09 2032,277.36316,4.4034114,43.073425,46.548267,1.4230634e-09 2032,334.18393,1.98986,44.27539,47.405796,4.626589e-10 2032,108.18483,1.1021615,43.04962,56.775185,1.7835924e-11 2033,382.67947,219.15047,25.47641,58.179916,4.9955425 2033,400.3103,222.38748,25.947083,62.2912,0.7600919 2033,366.10632,211.61407,23.052917,51.139465,0.07179932 2033,620.70514,251.61574,18.441528,47.414536,0.032509565 2033,620.3415,205.93741,18.805176,57.08014,0.0030350126 2033,611.4085,229.77884,27.73816,124.46277,0.0017197133 2033,383.5337,181.80011,55.64148,114.027954,0.001483885 2033,482.27716,231.10506,30.050842,66.57619,0.0011052111 2033,3.7970867,246.4722,61.142937,207.42703,0.00022283518 2033,610.5937,134.22485,28.552979,150.1966,0.000214653 2033,621.7427,46.48597,17.403992,50.33789,0.00015613965 2033,473.412,165.65028,57.27704,154.72191,0.00013984529 2033,617.3513,77.73627,21.79535,76.38776,0.00012246362 2033,612.36786,305.49146,26.778809,134.56741,0.000109863264 2033,1.2985693,222.14365,17.923212,85.68768,8.270541e-05 2033,1.1964811,369.83432,18.373096,80.30026,7.768187e-05 2033,574.4113,160.20015,64.69086,243.4936,5.2837015e-05 2033,571.8245,345.89966,67.054565,137.92499,4.6037952e-05 2033,1.7586344,264.95834,19.325075,145.08728,3.949445e-05 2033,613.7676,413.54092,25.37909,89.57477,2.1098369e-05 2033,0.8425513,69.14945,18.07056,70.68412,1.5980095e-05 2033,0.5585673,173.90996,13.795909,46.439713,1.33031635e-05 2033,0.6226982,207.50052,13.785754,51.19458,1.1986403e-05 2033,0.6821826,94.849464,20.277348,135.71655,1.05320105e-05 2033,1.662312,151.92413,33.841667,187.9306,1.0056081e-05 2033,585.80707,14.856638,53.31848,99.08501,9.82021e-06 2033,339.3307,128.99248,134.63583,228.86635,9.494393e-06 2033,0.6735173,415.2448,17.194178,87.04004,9.156691e-06 2033,0.5329887,139.65428,13.849287,46.695526,8.700789e-06 2033,478.80908,137.61143,118.59204,227.43742,4.9881396e-06 2033,2.298882,420.6458,53.57782,78.12613,8.0295547e-07 2033,329.33945,3.6990106,43.67578,104.81181,6.025501e-07 2033,2.4146323,24.923532,56.560356,89.05356,2.6135905e-07 2033,0.72375244,15.061491,12.696676,74.60194,1.7530058e-07 2033,288.392,0.0,121.288025,211.1277,1.4676603e-08 2033,74.9655,6.184881,44.490013,48.232124,7.907322e-09 2033,307.9256,2.6633692,41.326843,49.149952,1.9402728e-09 2033,100.80141,3.090511,44.919556,55.49385,1.7197857e-10 2034,272.15192,222.22685,23.69278,53.79271,0.011117734 2034,463.926,232.90436,28.679016,59.827118,0.0109265335 2034,402.94547,164.00221,41.980316,115.11519,0.005314365 2034,175.57483,203.6923,25.170319,50.44156,0.00037204818 2034,190.06679,198.98412,25.72351,55.15599,0.00034443248 2034,617.66254,222.50354,21.48413,83.51138,0.00023570494 2034,507.97263,161.6714,40.45224,111.016556,0.00017590543 2034,617.3661,147.35971,21.780579,77.82291,0.00016276538 2034,617.5669,320.44385,21.579773,79.61209,0.00013891351 2034,617.31995,97.65536,21.826721,77.301094,0.00010360806 2034,481.03653,242.03036,25.891144,52.12387,7.0368995e-05 2034,446.49893,188.61182,75.13406,156.1893,5.9841295e-05 2034,612.54785,366.47125,26.598816,130.76038,3.8565988e-05 2034,380.39706,122.97706,111.40274,203.87695,2.4818166e-05 2034,601.24713,102.01247,37.899536,189.2198,2.4112838e-05 2034,584.7075,15.362468,54.08893,101.054085,2.387928e-05 2034,499.3354,97.81698,74.134094,206.90564,1.7343598e-05 2034,1.0891951,207.82199,19.407728,130.20355,1.709697e-05 2034,1.2624601,281.2324,18.378119,125.3385,1.2350273e-05 2034,587.55145,240.97017,51.595215,235.42754,1.1805252e-05 2034,0.6703923,133.05194,18.321081,72.843445,1.0133173e-05 2034,0.8244336,62.002346,18.280254,72.861115,8.484755e-06 2034,0.685647,377.03165,18.269707,74.071075,7.4507007e-06 2034,2.9964063,287.9608,57.726265,184.16599,6.4072437e-06 2034,0.6479069,422.70605,16.887707,79.216156,5.074835e-06 2034,1.6395882,104.10876,33.59992,177.9082,1.6266031e-06 2034,2.698208,428.80276,53.324112,70.18338,4.7213766e-07 2034,2.7486265,20.055866,56.103992,93.18811,4.0969047e-07 2034,1.4683342,15.111162,26.68575,65.75783,1.7964196e-07 2034,357.9953,4.6832747,64.108765,48.11244,2.0128724e-08 2034,67.311325,7.4034815,44.802742,47.878983,9.60868e-09 2034,336.0842,2.8206902,44.47879,47.521038,2.0100936e-09 2034,94.01551,3.8885288,45.077843,55.184753,5.133548e-10 2034,121.658325,3.2522967,45.763275,53.433773,1.8728298e-10 2035,523.268,108.68465,65.720215,190.57732,0.12144198 2035,548.71344,131.14587,33.481445,79.8992,0.091128916 2035,491.67136,89.69641,60.70633,209.3818,0.07094912 2035,521.63007,94.99078,32.65448,79.10266,0.03707966 2035,121.57598,215.89265,37.22074,72.036026,0.01846597 2035,561.0641,114.03786,29.76825,66.49031,0.008143876 2035,536.45825,202.16093,29.919495,74.228745,0.0077997823 2035,512.5073,183.37975,21.78717,60.083984,0.0065697473 2035,518.4793,160.0753,22.186584,59.304474,0.0024687801 2035,608.09845,78.74802,31.048218,136.06793,0.0017951682 2035,0.6461678,137.87646,18.865616,82.0031,0.0015644102 2035,583.5197,112.63892,54.18341,228.27661,0.0014243511 2035,532.06354,56.773895,38.204712,97.088425,0.0010759799 2035,529.6993,142.22256,30.527588,85.58487,0.0008845267 2035,517.34125,204.17749,26.029419,68.11392,0.0008557829 2035,552.26276,51.913635,36.65088,84.54335,0.00067853904 2035,105.76442,196.50607,74.18985,161.58035,0.00029571226 2035,1.6935889,90.33796,34.30314,176.2067,0.00028335286 2035,458.66428,59.05289,151.78061,303.77274,0.0002627538 2035,1.1252686,173.843,19.984838,110.91316,0.000238677 2035,610.96826,157.9695,28.178406,135.98067,0.00022261345 2035,611.7195,256.40683,27.427185,130.66559,0.0001231274 2035,606.3422,1.9159116,32.804443,62.99654,8.035064e-05 2035,0.76599044,250.51491,17.52197,71.77818,5.188725e-05 2035,586.9463,308.04266,51.739746,168.24109,4.380843e-05 2035,608.7548,434.0861,30.391846,70.90622,2.4497933e-05 2035,0.7997868,47.180443,21.011625,144.14447,2.3542812e-05 2035,3.301771,159.03407,57.128513,219.69032,1.3347871e-05 2035,0.67309326,366.38428,18.760048,128.27817,1.151351e-05 2035,0.8126392,290.97232,18.987108,136.5557,7.701653e-06 2035,2.9583042,287.30942,56.246437,187.15045,2.1877859e-06 2035,1.3575847,14.371204,58.9745,120.84271,8.3840933e-07 2035,1.0361654,5.8099513,31.929468,64.02027,4.9849767e-08 2036,153.9498,217.9237,27.369186,54.565155,0.12270771 2036,399.73148,183.1153,26.399933,54.423172,0.0044764066 2036,138.0614,221.31493,39.7238,98.851364,0.0040219263 2036,453.97943,169.96188,25.278015,50.963852,0.0026773722 2036,621.0651,167.52245,18.081543,55.696,0.0017196836 2036,609.9474,119.59135,29.19928,136.88666,0.0014475303 2036,620.9113,129.862,18.235352,52.82257,0.0010953082 2036,443.02814,183.9928,33.76364,81.99649,0.0010913428 2036,621.7887,208.72421,17.357971,51.32547,0.0009408471 2036,621.08124,88.78728,18.06543,55.005737,0.00073141727 2036,617.57794,231.4049,21.568726,79.96738,0.00027763715 2036,432.35684,122.80615,75.00769,184.99957,0.0002763375 2036,376.21835,101.64559,80.859314,195.74768,0.0002453675 2036,618.0085,318.37317,21.138184,82.2164,0.00017371835 2036,1.1045883,192.84044,17.744007,79.98479,0.00012985361 2036,618.05615,380.51315,21.090515,82.2016,0.0001251901 2036,0.93349123,69.22732,18.398638,75.15218,0.000108747256 2036,0.5352995,146.24976,14.101769,55.444656,9.109549e-05 2036,1.4373617,85.32602,33.87304,199.52692,6.617721e-05 2036,5.8219957,106.71563,75.99132,264.7024,5.574476e-05 2036,0.89697105,266.33487,17.610237,75.6463,5.4499054e-05 2036,601.0663,190.56049,38.080383,196.27005,4.2537515e-05 2036,582.9074,0.75214845,56.239258,243.5589,3.6591242e-05 2036,0.62119955,315.23083,18.231733,74.54291,2.105455e-05 2036,587.42786,319.00882,51.71881,167.12057,1.867245e-05 2036,609.06793,436.31958,30.078735,66.37204,1.7137454e-05 2036,470.34872,5.3556514,88.07767,237.80482,1.51612085e-05 2036,1.6607292,218.79039,33.239254,174.1569,1.4826067e-05 2036,107.67465,196.05107,104.77179,195.52919,1.4513303e-05 2036,615.806,31.34142,23.340637,93.440704,1.0798729e-05 2036,0.51575524,359.39505,18.717058,132.69958,6.9491493e-06 2036,3.0900717,336.02396,57.36187,145.08386,1.9364934e-06 2036,1.1385596,454.89017,28.426727,49.977753,1.5728243e-06 2036,557.2199,422.9602,73.31903,75.85553,1.2085513e-06 2036,2.402736,20.857136,57.345844,110.12135,6.060448e-07 2036,0.83650064,6.8870707,21.109888,58.926544,1.74713e-08 2036,94.04679,2.858369,43.460304,52.896908,1.4668641e-10 2036,136.06612,3.1007211,40.82007,46.05005,1.4248872e-11 2037,172.64331,217.48329,26.81839,53.650314,0.13134442 2037,469.575,214.17102,36.68228,78.04639,0.034822743 2037,155.627,214.9313,40.460922,107.72031,0.007812415 2037,476.34726,196.41716,22.876465,49.073944,0.0014278652 2037,371.67838,213.91005,32.254242,56.28221,0.0013333852 2037,612.1659,346.76025,26.980774,113.25647,0.0012174294 2037,611.05725,117.075264,28.089417,134.22165,0.0008013484 2037,1.1721176,179.43306,18.02903,75.06793,0.000567191 2037,618.2799,207.38083,20.86676,75.06213,0.0005529605 2037,259.78073,90.18284,21.296082,45.222145,0.00035267475 2037,433.66653,130.75266,78.99423,178.88733,0.00022509473 2037,465.76382,185.88156,21.840515,49.66478,0.00019933528 2037,0.78330976,147.01958,13.866014,55.090164,0.00015802478 2037,616.638,65.71008,22.508667,80.123856,0.00013002474 2037,617.89087,262.91318,21.255798,83.77051,0.00012927558 2037,1.395179,93.07619,28.113728,158.01228,0.00012901878 2037,0.7393034,224.12592,13.572282,49.858276,0.00011136201 2037,0.7897225,97.1412,13.720867,48.52677,9.416786e-05 2037,587.3941,176.60777,51.752563,235.6957,3.6053505e-05 2037,3.188397,108.63491,58.64423,211.74094,3.287603e-05 2037,609.9346,437.78763,29.212097,66.88187,3.273418e-05 2037,0.98005617,189.47769,28.149982,144.14285,2.9557452e-05 2037,127.08089,182.93436,104.418594,189.5286,2.4054183e-05 2037,582.58716,0.0,56.55951,221.91902,2.129132e-05 2037,0.487441,252.01875,13.815687,49.029495,1.5651654e-05 2037,0.5999439,391.85632,18.30006,71.6629,1.1633907e-05 2037,294.0895,33.521408,46.309143,143.249,8.284065e-06 2037,0.489126,352.23135,18.385845,71.73935,6.8586323e-06 2037,0.50806886,311.32544,18.376717,71.54843,5.7146563e-06 2037,0.51725304,282.29807,13.78193,47.14456,5.622937e-06 2037,0.8509546,442.14783,21.97722,61.49655,2.9718922e-06 2037,1.1315674,22.0439,20.693123,129.29846,2.4790297e-06 2037,2.6689909,265.26807,57.47084,203.48346,1.8975284e-06 2037,2.7389796,428.61957,53.546535,70.715546,4.133576e-07 2037,1.2557226,8.298832,30.833744,61.301167,1.0820101e-07 2037,3.59028,20.820587,82.03462,139.18832,6.3498504e-08 2037,325.52582,2.2816243,45.997406,53.707127,1.8256334e-09 2037,115.14913,0.09614584,44.398323,52.509636,1.5057044e-11 2038,426.41235,221.83725,36.93927,68.54401,0.13927746 2038,112.03404,215.76123,24.285599,51.43524,0.019009097 2038,610.1754,91.614265,28.971252,143.01553,0.0010612449 2038,423.637,178.39177,37.074066,79.00365,0.00071291544 2038,255.14774,63.695644,27.907837,64.77193,0.0002540342 2038,0.83133996,194.30238,13.641045,49.532623,0.00018654451 2038,616.9064,192.88545,22.240295,77.63417,0.00017071371 2038,617.9819,250.58534,21.164795,79.494,0.00015373477 2038,618.076,327.59692,21.070679,80.36047,0.00011352345 2038,615.86523,49.72539,23.281433,85.631546,0.000112902635 2038,612.9468,354.0627,26.19989,138.92188,0.00010890335 2038,101.03538,236.63683,35.39599,84.72508,5.9071233e-05 2038,600.7856,152.47948,38.361084,185.19832,3.5140427e-05 2038,0.87180257,111.65343,20.11488,137.7953,3.359102e-05 2038,584.15955,6.149401,54.98712,119.9882,3.3575456e-05 2038,243.16508,31.450678,30.069077,75.3181,2.2925926e-05 2038,178.7372,222.18208,37.07509,80.214584,2.0308844e-05 2038,400.91153,170.69594,103.26886,198.83986,1.992633e-05 2038,0.59222984,223.67365,18.322252,77.40549,1.5734688e-05 2038,0.88068444,69.01555,18.165228,73.051834,1.5557067e-05 2038,0.6604887,139.96988,13.828362,48.08673,1.5497331e-05 2038,244.97736,35.059273,45.571014,147.97311,1.3458359e-05 2038,588.1836,240.38123,50.963074,238.37686,1.1724581e-05 2038,0.59680015,339.60965,19.403849,130.97177,1.1288148e-05 2038,0.6947917,283.3998,18.046572,72.23865,7.4575246e-06 2038,1.7815723,185.43445,32.7274,169.43286,4.361076e-06 2038,0.7289852,422.085,16.77938,79.947876,3.4930658e-06 2038,5.924831,92.27043,77.70892,262.25635,2.1675498e-06 2038,2.9808514,295.21457,57.358734,178.47491,1.1135055e-06 2038,2.68583,25.543144,57.100292,94.114204,9.60902e-07 2038,306.22263,6.6375914,85.03607,79.282326,6.5276083e-07 2038,1.1404306,17.651716,15.002392,69.16209,6.3619524e-07 2038,218.38864,17.990091,118.358154,230.4415,5.0995163e-07 2038,2.745708,429.29065,53.46519,69.946014,3.8814028e-07 2038,293.4705,7.689554,48.355103,48.053482,7.141712e-08 2038,153.56874,4.5705533,46.328033,47.230137,2.0827219e-08 2038,176.34724,10.180674,84.75392,71.15157,7.708579e-09 2038,94.31229,5.54194,48.136368,51.9193,7.390283e-09 2038,40.834953,6.829481,43.096443,47.300377,4.6691437e-09 2038,67.22516,6.471644,45.018867,47.529594,2.6758786e-09 2039,574.2684,88.23784,42.89563,112.65758,0.07942811 2039,591.5347,109.83749,23.59021,49.964638,0.05418848 2039,576.1783,55.286564,62.149048,320.79453,0.024331098 2039,619.10895,298.7495,20.03772,58.293243,0.02230088 2039,574.2237,0.0,64.92297,144.01726,0.0047366405 2039,618.22186,134.98492,20.924805,57.517944,0.0028621554 2039,620.77747,348.45273,18.369202,54.326996,0.0026240118 2039,619.32355,175.57722,19.82312,54.589447,0.0015848504 2039,609.6407,206.96844,29.505981,152.72568,0.0013673959 2039,619.1042,47.680923,20.04248,69.96403,0.0012932126 2039,606.93884,94.91385,32.207825,156.24457,0.0010604213 2039,620.87494,218.65404,18.271729,54.02385,0.0008424141 2039,412.29175,89.8596,73.647156,190.04968,0.00065753027 2039,611.8127,322.29578,27.333984,147.98975,0.00044472667 2039,113.9124,196.12259,38.878906,92.84943,0.0002883645 2039,1.1178321,103.33744,19.756588,136.35156,0.000111157875 2039,0.70079917,205.70685,13.408692,50.406982,0.000108430984 2039,0.8988127,91.15051,13.622422,46.684814,0.000104124425 2039,571.28705,0.0,50.267395,52.347687,8.383839e-05 2039,226.89568,54.52781,28.434128,56.2352,7.647053e-05 2039,0.41191855,237.75464,13.914624,50.300262,3.804441e-05 2039,0.60838544,198.23514,20.137905,134.10202,3.2067328e-05 2039,613.9059,414.25638,25.240784,89.16547,2.5792e-05 2039,0.7085872,335.16104,19.365295,131.39532,1.0830743e-05 2039,0.53353435,303.97418,18.399776,71.295685,1.0210857e-05 2039,0.79679203,421.2525,15.450179,79.10382,5.909028e-06 2039,1.3676043,14.479222,58.63035,110.10114,2.9194678e-06 2039,3.1371696,166.69185,57.13575,218.99278,2.808594e-06 2039,3.2226548,397.7253,56.016388,93.401825,6.5940566e-07 2039,1.217487,33.261356,19.710026,77.99075,4.246599e-07 2039,211.25136,0.0,126.19545,261.8004,2.2469105e-07 2039,1.3221159,5.7734704,32.806458,67.848656,6.656122e-08 2039,258.02588,0.2427832,43.612244,48.201374,9.084691e-09 2039,206.65144,7.085176,46.84395,144.67636,3.793063e-09 2039,230.32083,0.0,43.49298,46.291748,2.5137819e-11 2040,0.8760563,173.58585,15.205601,59.245667,0.004585228 2040,621.57385,229.58876,17.572815,53.72145,0.0033958072 2040,610.5429,139.45,28.60376,140.78365,0.0010337994 2040,621.22156,153.76643,17.92511,53.518677,0.0008062789 2040,83.753815,203.76277,24.002502,50.35028,0.00078430295 2040,616.22473,83.97307,22.921936,84.942245,0.00033924138 2040,617.8801,263.1258,21.26654,82.57666,0.00028607948 2040,611.7363,323.2223,27.41034,142.96179,0.00024490766 2040,1.0528182,187.81099,18.94819,129.98247,0.00023592851 2040,183.78084,212.16092,35.659637,62.055847,0.00012716287 2040,1.5396281,106.30397,28.784,154.44545,0.00011559425 2040,612.9879,413.5545,26.158752,90.8988,8.391182e-05 2040,0.75245607,90.6704,18.541393,80.61387,4.214736e-05 2040,0.53912276,257.49054,13.912001,50.038086,3.9271203e-05 2040,3.8982227,154.53792,78.76752,242.74815,1.520588e-05 2040,607.78595,0.0,31.360718,146.30568,1.3892686e-05 2040,0.56909263,391.50552,18.3375,71.900635,1.2201955e-05 2040,0.47159913,281.00327,18.321947,72.62756,1.0622311e-05 2040,235.56589,14.722946,44.115723,91.75595,8.835514e-06 2040,0.99076253,249.65714,32.714554,183.65607,8.487685e-06 2040,0.48655763,365.27045,13.752752,46.410492,8.3563655e-06 2040,0.51129884,324.13348,18.357286,71.41235,7.76976e-06 2040,0.76198816,441.46637,22.005226,62.145477,2.43549e-06 2040,215.77701,7.0867906,91.41217,172.9836,2.3977768e-06 2040,0.96340823,17.22845,20.977577,119.62657,6.500151e-07 2040,5.3171062,356.0129,79.645996,130.87631,5.9737545e-07 2040,2.7020802,428.06128,53.37667,71.130035,3.4681756e-07 2040,2.0177133,19.063665,60.21668,210.99721,2.0333673e-07 2040,1.5669451,8.481482,51.2041,73.6961,8.3300215e-08 2040,94.86961,0.0,43.545914,54.071358,1.293348e-10 2041,617.73175,186.35988,21.414917,58.11615,0.023077942 2041,377.6553,205.92183,34.32904,64.73006,0.005669698 2041,615.8338,372.02084,23.312866,91.00116,0.003995609 2041,1.8643881,208.08742,33.455116,67.52843,0.0020071554 2041,15.86583,193.58234,37.435062,63.356476,0.00096403144 2041,586.16425,196.45923,52.8974,244.58786,0.0008561159 2041,601.4669,125.40112,37.67975,149.34769,0.000793308 2041,0.6832475,239.54048,14.447998,54.161606,0.0005930214 2041,319.68564,90.49306,81.91193,180.38716,0.0004383106 2041,621.06335,99.49189,18.083313,55.166496,0.00036602104 2041,0.92935145,157.896,19.067778,81.74646,0.00030493335 2041,618.21454,274.9987,20.932129,77.45822,0.00025370493 2041,1.1149251,222.02026,28.223688,155.04413,0.000119686316 2041,574.04016,355.6824,65.10651,128.58105,9.4324074e-05 2041,2.7289486,120.14248,57.26799,197.82996,8.5012594e-05 2041,609.4836,433.62436,29.663086,71.340454,6.44647e-05 2041,608.2453,24.724709,30.901367,178.64621,5.388477e-05 2041,0.30621135,135.03752,13.950765,47.99037,4.921965e-05 2041,135.70766,229.86592,24.576263,54.51509,3.5143985e-05 2041,594.63837,2.290996,44.5083,87.31534,2.0698226e-05 2041,0.4402108,273.01932,13.917635,49.933716,1.16071315e-05 2041,0.51102054,384.55127,18.432858,73.45239,1.1337831e-05 2041,0.446838,365.1012,13.776902,47.0907,1.1156913e-05 2041,0.55777836,311.08975,18.318562,72.01553,6.729863e-06 2041,0.69589436,422.4949,17.003687,79.91739,5.1191273e-06 2041,414.69427,40.409607,26.390015,52.198433,4.0256277e-06 2041,2.4865642,260.0656,57.352505,211.5245,4.0192594e-06 2041,409.33344,38.041035,81.67517,200.26303,2.6338546e-06 2041,1.1978362,48.120945,29.92719,184.14662,1.5187163e-06 2041,2.8513103,429.97284,53.33468,69.71863,5.30869e-07 2041,3.5147526,21.983213,53.915043,101.07449,2.3663264e-07 2041,1.2933285,24.983385,18.284468,105.94974,1.9948523e-07 2041,229.66539,0.43863282,48.511032,137.1518,3.737323e-08 2041,61.02759,4.2801123,42.45207,47.844364,3.333553e-09 2041,101.74624,0.3830176,46.644234,55.768402,1.1675074e-09 2041,267.97968,2.3989975,45.860962,54.137676,2.5895946e-10 2042,492.03043,226.32207,37.92685,75.32155,0.045061424 2042,461.8457,69.21269,27.036133,50.606422,0.005510635 2042,375.31052,206.0267,24.667694,49.427734,0.0029793307 2042,391.68842,194.95789,26.065796,54.599884,0.0018993312 2042,621.34033,177.64828,17.806335,55.426743,0.001038922 2042,617.646,221.58888,21.500671,80.33116,0.0003668272 2042,612.44977,326.09085,26.6969,139.9324,0.000311571 2042,611.1785,140.02351,27.96814,131.82451,0.00025763924 2042,616.7362,62.966694,22.410461,81.420425,0.00015543959 2042,257.9528,45.575745,27.02182,62.03106,9.588131e-05 2042,0.7623918,210.82823,18.235662,67.08516,5.9900496e-05 2042,609.94055,435.78992,29.206116,69.64526,4.1961146e-05 2042,587.95026,207.03328,51.19641,232.36397,3.008846e-05 2042,585.47296,387.65073,53.673706,106.04654,2.2038606e-05 2042,0.49200848,241.78844,19.843891,134.19194,1.9009995e-05 2042,0.81037277,106.32546,20.508528,139.91788,1.7932818e-05 2042,0.64562464,126.29883,13.881798,47.14142,1.583162e-05 2042,0.51168054,327.44208,19.822012,130.97247,1.4917333e-05 2042,583.4063,16.558458,55.740356,216.93515,9.390548e-06 2042,0.8236719,78.9863,18.300896,70.68657,8.0698765e-06 2042,596.026,4.2906446,43.120667,85.48381,5.331219e-06 2042,0.64985925,420.13,16.598473,81.877045,4.534378e-06 2042,216.98747,21.348577,36.82831,65.23723,3.4563502e-06 2042,3.2075098,152.57162,57.966606,211.37506,2.7449203e-06 2042,287.63095,12.467904,82.53119,159.24983,1.9531674e-06 2042,2.9161768,277.14966,57.453056,195.4076,1.649913e-06 2042,2.7663705,428.32422,53.689453,71.10089,3.9592854e-07 2042,196.65907,6.174284,48.91234,127.344696,3.9457757e-07 2042,260.85095,4.3456316,44.517853,126.26771,2.7212573e-07 2042,0.8598605,13.574014,15.906419,71.17775,2.502783e-07 2042,2.053864,25.748667,34.51717,137.34702,1.6660434e-07 2042,3.6583042,25.461668,82.69003,254.16223,1.6640298e-07 2042,222.40498,0.0,123.754745,241.831,9.12422e-08 2042,245.37102,2.7418587,46.06813,52.01025,7.597601e-08 2042,172.48273,4.4701514,67.78067,49.97931,4.240349e-08 2042,299.0486,5.1922836,44.964325,53.31535,1.8399072e-08 2042,150.27922,0.9122022,44.9738,50.03135,5.3012955e-10 2043,621.13416,214.42795,18.012512,54.389374,0.001097462 2043,366.5173,185.41898,24.562622,49.63301,0.0010470162 2043,616.0496,83.59902,23.097046,75.43665,0.00061627536 2043,433.38562,187.6983,26.402618,55.494354,0.0005042617 2043,609.9836,150.56444,29.163086,136.17775,0.0003747288 2043,617.2716,234.90466,21.875061,81.08252,0.0002970696 2043,617.60767,381.79678,21.539001,85.90317,0.00028318644 2043,621.10504,148.64664,18.041626,55.68184,0.00027437432 2043,1.0556251,188.47784,17.803314,73.20273,0.00017596583 2043,0.99274415,70.310295,18.107964,72.82897,0.00017179587 2043,617.1746,320.98123,21.972046,88.82532,0.0001370032 2043,333.25946,41.808544,36.396362,96.26599,7.83665e-05 2043,0.8805062,116.424324,18.288248,77.55599,5.7095127e-05 2043,608.9295,2.4387372,30.217163,118.03104,5.58432e-05 2043,0.5184408,230.22227,13.564709,48.735367,5.432708e-05 2043,609.61346,437.57443,29.533203,68.08502,3.6827973e-05 2043,573.29034,130.96053,65.85632,266.18292,3.0213312e-05 2043,601.36957,252.33667,37.7771,200.87018,2.4179204e-05 2043,1.4696583,124.44522,33.209354,172.97754,2.1270782e-05 2043,0.6122217,385.07852,18.274456,72.055664,2.117311e-05 2043,584.0264,11.499968,55.12024,221.77055,1.8042538e-05 2043,0.44078287,247.16203,19.785822,136.68239,1.3721956e-05 2043,411.95532,127.138855,74.36786,176.66916,1.3268318e-05 2043,0.72943443,439.27188,21.985361,64.18713,3.4632524e-06 2043,3.250954,171.90065,57.372578,214.26173,3.2482722e-06 2043,0.9713762,308.04495,33.08463,168.75168,2.9821354e-06 2043,5.0945153,358.39557,80.03378,127.0159,8.5103756e-07 2043,1.4135889,15.627745,59.093014,110.20046,6.9363676e-07 2043,331.12405,3.612308,44.465454,56.93199,5.867068e-07 2043,2.536276,425.16757,53.54016,73.572235,5.4085854e-07 2043,319.72757,0.0,83.74353,214.70322,4.1385775e-07 2043,0.94654626,10.612129,27.212389,77.89963,2.4136335e-07 2043,301.0525,0.05527181,43.948486,54.40351,1.1664969e-09 2043,121.179924,0.0,43.85108,54.39302,3.0930174e-12 2044,363.71512,205.56909,32.319366,58.012756,0.004428837 2044,0.6788412,146.49838,19.421663,90.13246,0.002109091 2044,611.6963,310.69547,27.450378,145.22107,0.00027172655 2044,621.6733,101.72545,17.473389,51.01024,0.00026371732 2044,617.7784,395.8081,21.368286,84.423676,0.00026350713 2044,1.3899057,125.568886,33.36643,173.39941,0.00022762017 2044,611.3643,91.842606,27.782349,133.78186,0.00017090593 2044,617.45605,209.86673,21.690613,81.63638,0.00017042612 2044,0.3967342,224.69762,18.722712,83.590775,0.00010772207 2044,617.2776,257.58606,21.86908,84.0607,0.00010743829 2044,4.5581317,105.56706,78.06897,250.57423,8.930527e-05 2044,0.93086755,104.66193,18.457829,78.48416,6.5948254e-05 2044,616.7016,41.462193,22.445068,83.593,5.9389477e-05 2044,600.89233,141.64409,38.254333,194.34612,2.4838673e-05 2044,0.43976888,280.93124,18.355341,73.81372,1.3751512e-05 2044,572.66705,356.62576,66.479614,131.52017,1.3584743e-05 2044,0.52705896,317.69437,19.947248,133.16168,1.2536785e-05 2044,583.3519,1.7337631,55.79474,214.70107,4.5198717e-06 2044,0.6818677,421.41043,16.877798,80.96573,4.3248197e-06 2044,2.099694,26.037773,61.787014,201.71014,3.3734448e-06 2044,2.3800554,230.588,57.71607,240.93367,2.1316223e-06 2044,1.05344,44.287926,18.991756,81.762115,9.23236e-07 2044,2.8353696,394.53323,56.44107,98.86954,6.6036716e-07 2044,333.10736,1.0784099,62.6192,53.603245,3.1565452e-07 2044,1.6081723,7.057201,39.58544,86.24157,1.01659204e-07 2044,259.80896,3.565285,44.102234,46.416622,2.9693393e-08 2044,298.2793,0.49233237,46.106537,51.976177,2.2492378e-08 2045,431.88403,215.27914,36.038574,65.072205,0.012013761 2045,0.78569174,194.65555,13.6551075,51.571594,0.0010968824 2045,1.0524617,172.48836,19.950459,122.8282,0.00022813478 2045,617.91364,378.85443,21.233032,83.30652,0.00020531834 2045,617.33026,63.59327,21.816406,78.382835,0.00013028752 2045,617.5887,139.69833,21.557983,76.97487,0.00012753063 2045,617.4202,286.95084,21.72644,80.37262,0.00011124907 2045,611.9765,166.93343,27.170166,132.16393,9.0495596e-05 2045,0.8225895,88.90294,20.410538,141.4935,7.756639e-05 2045,2.9207554,118.89081,59.53453,205.66666,5.5551584e-05 2045,0.5078145,243.14633,13.73033,50.467957,3.5034955e-05 2045,0.72096926,106.48487,13.855138,47.88021,3.4738518e-05 2045,601.80457,322.59238,37.342102,162.52612,3.2031323e-05 2045,615.5033,17.98157,23.643372,83.268074,3.1222608e-05 2045,609.7509,440.08365,29.395752,64.59006,2.1230777e-05 2045,0.48690104,259.03165,19.994162,136.06213,1.2187509e-05 2045,0.62094563,398.7427,18.26151,71.29022,1.0291571e-05 2045,0.47493166,357.72156,18.467304,72.19476,7.2950606e-06 2045,0.8199162,442.2757,21.916466,61.37738,2.7939543e-06 2045,1.0677807,331.1017,32.723564,155.42133,2.1332125e-06 2045,586.19,56.661774,52.956665,250.63708,2.0716936e-06 2045,0.8949577,45.996933,18.776608,80.17188,9.2739754e-07 2045,2.6893961,429.06015,53.329315,70.314545,4.11436e-07 2045,2.1998389,14.949232,57.52214,113.49504,2.3507391e-07 2045,1.6392074,5.585765,40.33647,53.166306,1.9095634e-07 2045,100.44512,4.801175,46.134773,54.683006,2.637309e-09 2045,74.98712,6.7465706,43.56086,50.399845,1.1038905e-09 2045,428.24255,3.8084376,45.3132,47.055733,4.765502e-10 2045,397.2505,6.334084,42.288483,47.63858,4.5927215e-10 2045,134.25034,2.874445,45.541412,51.240395,4.352168e-10 2046,506.96378,176.77954,28.44571,56.513596,0.016528783 2046,409.97052,199.08594,23.47168,47.413025,0.012070095 2046,494.003,144.02684,44.810852,128.2643,0.0020588522 2046,0.7339803,187.60521,18.278244,68.903946,0.0018478876 2046,621.16113,142.75682,17.985535,59.48987,0.000790777 2046,610.7955,78.300285,28.351196,140.05847,0.00029558482 2046,617.6111,177.44539,21.535583,77.38077,0.00026303538 2046,0.502675,236.23915,18.333588,71.945755,0.00012256176 2046,617.3725,243.2461,21.77417,83.487,9.352419e-05 2046,1.1429281,132.39745,34.668346,159.51302,9.029542e-05 2046,612.3764,314.5375,26.770264,140.53583,7.5143944e-05 2046,0.56520104,144.90488,19.008469,74.282104,6.85482e-05 2046,609.9385,441.30002,29.20819,63.714478,3.5896785e-05 2046,608.07056,0.0,31.07611,139.17326,2.2202139e-05 2046,601.9722,151.21368,37.17444,187.41977,1.911241e-05 2046,0.61667484,85.54743,18.83646,78.43658,1.8845192e-05 2046,0.5417375,390.8567,18.34062,72.57941,1.3414165e-05 2046,0.528169,271.04974,19.616621,138.2139,1.2240589e-05 2046,0.4730367,310.61148,13.71108,46.58618,7.5820467e-06 2046,0.4280119,282.22604,13.7597065,47.17688,6.207022e-06 2046,572.83936,358.80472,66.30731,130.31305,5.839941e-06 2046,5.010544,162.50204,79.31762,244.45282,4.950681e-06 2046,0.78857505,441.6299,21.9816,62.170044,3.1310744e-06 2046,2.0659604,23.150814,55.14222,93.117874,1.8570189e-06 2046,0.9437801,50.36576,18.728756,65.43802,1.5235848e-06 2046,2.0610807,21.215353,82.56302,246.08504,9.5011285e-07 2046,2.8522575,393.75446,56.525608,99.91034,6.001094e-07 2046,4.6412044,8.331144,45.082485,47.32715,6.9753426e-08 2046,443.2578,0.84972495,44.11203,49.521393,5.8939245e-09 2046,156.4188,2.9342287,44.335052,48.76196,2.287491e-09 2047,441.6151,217.91441,25.186035,47.145706,0.003000988 2047,531.0733,165.10458,27.0484,54.470062,0.0015307121 2047,621.6334,212.72954,17.513245,49.371628,0.0010919726 2047,426.28568,178.69821,43.357788,100.71115,0.0006048007 2047,611.2252,201.60065,27.921448,120.01846,0.0005981299 2047,618.05774,280.25403,21.088928,77.08865,0.00023018979 2047,618.51263,381.05765,20.634033,80.83975,0.00016594687 2047,0.6135222,179.45604,13.857427,51.452377,0.00015764186 2047,617.1505,93.50189,21.996155,76.870926,0.00014997342 2047,572.4388,141.99149,66.707886,224.12973,0.00010559422 2047,0.9686947,125.05087,20.36866,134.6847,9.24696e-05 2047,616.78656,154.12105,22.360107,82.2926,7.234356e-05 2047,0.93094563,213.53587,18.074282,73.1317,7.087709e-05 2047,0.6590914,119.41349,13.71887,49.003593,6.559137e-05 2047,0.7246721,56.529545,18.318766,74.18439,6.025826e-05 2047,3.5140219,97.93393,57.40956,213.55206,3.958246e-05 2047,510.4674,115.73607,81.2973,175.22276,2.8522036e-05 2047,605.3795,288.38733,33.76715,158.24179,2.5871866e-05 2047,610.0072,439.4235,29.139465,65.1734,2.5051491e-05 2047,616.11206,25.333393,23.034607,83.21091,2.0372276e-05 2047,0.57260174,383.6134,18.403593,72.365875,1.3747602e-05 2047,0.55621743,268.14423,18.326977,72.857025,9.7186385e-06 2047,1.1202409,187.70609,33.205276,176.5961,9.10309e-06 2047,2.3026416,23.355528,57.783447,99.24911,8.187552e-06 2047,0.548326,338.5082,18.238293,71.910034,6.5552845e-06 2047,585.80475,392.38184,53.34192,101.81558,6.3590796e-06 2047,599.86584,34.46894,39.280823,218.18155,4.866348e-06 2047,0.6354281,419.58002,16.544252,82.682434,4.447218e-06 2047,1.0786076,340.43906,31.612707,146.24496,3.0181855e-06 2047,117.594795,127.58381,105.46943,213.03696,2.08557e-06 2047,1.1182967,16.505444,16.547792,71.08763,2.026484e-06 2047,2.9830828,250.30922,57.003246,217.50777,2.0084792e-06 2047,2.4966471,427.9875,53.166336,71.294464,4.543275e-07 2047,11.733381,7.757629,44.405617,52.13728,9.125856e-08 2047,382.00992,4.1620865,44.953278,51.57175,2.6593476e-09 2047,407.74985,3.8850114,44.834686,51.558273,1.9926525e-09 2048,443.72583,207.49873,24.543976,46.94867,0.06915695 2048,461.7483,193.07047,40.84552,74.67343,0.0022495016 2048,1.3483993,188.41133,18.128296,76.84642,0.0016453912 2048,612.0216,155.49353,27.125061,113.449036,0.0005211406 2048,85.83817,176.99529,47.992546,95.020004,0.00042860128 2048,0.8169857,237.19423,13.364043,47.40782,0.00036713484 2048,618.3326,387.47827,20.814087,80.10019,0.00033900817 2048,1.3640462,96.82546,28.726889,160.89584,0.00022188327 2048,617.4255,236.46901,21.721191,82.114,0.00016869136 2048,617.015,55.824734,22.131653,82.61342,0.00013010872 2048,617.74347,298.5373,21.403198,80.33505,9.597307e-05 2048,0.72781575,159.52563,13.892398,51.585464,9.4510826e-05 2048,587.33374,135.52759,51.812927,217.82086,5.8886406e-05 2048,0.5758114,228.73863,19.603498,139.80583,5.228961e-05 2048,1.0508504,92.9912,18.438887,74.80254,5.1180046e-05 2048,611.7496,10.56433,27.397095,80.10304,4.7466794e-05 2048,609.9593,435.51752,29.187378,69.54614,3.272775e-05 2048,603.0713,317.06223,36.07538,169.1352,3.204018e-05 2048,4.826452,141.71413,77.97027,256.53894,2.153531e-05 2048,0.8610681,58.10271,13.631735,47.868587,1.5457701e-05 2048,450.8335,153.72025,81.59033,162.64847,1.404802e-05 2048,567.63995,15.686661,71.506714,144.16165,1.0328324e-05 2048,0.646215,335.49442,18.958775,130.1842,9.566049e-06 2048,0.63341963,418.88928,16.526405,82.03546,5.923472e-06 2048,71.06043,135.10834,99.09492,215.79343,2.836838e-06 2048,2.7554624,392.04205,56.34247,98.83154,9.4634015e-07 2048,2.1704037,19.57103,62.897194,210.66653,4.8944764e-07 2048,1.552041,8.899655,38.454876,82.88315,2.047143e-07 2048,458.82178,1.5902946,65.79822,50.18552,1.5152088e-07 2048,518.02423,7.6225457,46.73004,46.872955,4.750442e-08 2048,95.0189,5.7200327,43.378853,51.081337,1.3309273e-08 2048,411.02994,2.1292937,39.75821,55.7077,2.536943e-09 2048,197.2867,2.0301595,42.67714,54.497025,6.162409e-10 2048,170.03067,0.6934505,44.652084,65.587204,4.9428003e-11 2049,20.718004,205.05923,31.229658,50.23494,46.131115 2049,607.4463,219.16032,31.700378,78.85396,0.03844416 2049,620.68024,262.7692,18.46643,55.8031,0.012513701 2049,482.62387,181.19237,24.565002,46.840744,0.009105055 2049,618.51544,109.89852,20.631226,63.528175,0.0040266854 2049,463.452,197.9257,23.586334,48.52678,0.002251064 2049,600.2093,67.908,38.937378,237.70471,0.0013195891 2049,620.0921,173.19911,19.054565,56.686203,0.0011897158 2049,0.80677575,212.10796,13.388996,49.65123,0.00019682666 2049,335.5852,153.74136,36.68979,73.99309,0.00017183388 2049,5.431924,168.66086,63.90152,109.90851,0.00015935047 2049,608.4992,7.933705,30.64746,152.9348,0.000101169484 2049,588.97974,207.35277,50.16693,223.95097,7.921189e-05 2049,612.818,277.33704,26.328674,124.22598,7.5853e-05 2049,0.8755396,178.48701,19.835491,125.83537,6.1130886e-05 2049,610.02405,441.005,29.12262,63.61502,2.4645093e-05 2049,0.95133793,75.90669,18.326618,77.59143,1.812791e-05 2049,0.78433514,134.0001,13.698289,47.487915,1.4992638e-05 2049,0.46135172,245.15126,14.127601,51.22249,1.4596323e-05 2049,1.3481698,82.48116,28.995588,154.30423,9.283058e-06 2049,0.71488935,363.64114,18.789467,129.09006,7.751671e-06 2049,0.54988444,325.51575,18.308651,71.71597,5.8302353e-06 2049,585.8067,394.32504,53.339966,100.23923,5.36486e-06 2049,1.3760767,220.79831,33.588703,185.57745,5.0593235e-06 2049,0.5602279,276.3164,18.368408,72.75577,4.616012e-06 2049,7.2692156,120.3378,113.08877,245.01355,3.3258736e-06 2049,3.0679152,395.5008,55.90637,94.99582,9.032039e-07 2049,1.5776042,20.55646,29.606684,116.671326,6.3962636e-07 2049,4.278249,27.483784,80.15374,131.99582,2.0969411e-07 2049,6.2521386,6.7252297,43.77704,47.178177,2.7976949e-08 2049,396.11646,4.693234,42.686523,45.368538,9.09381e-09 2049,491.84235,3.845075,42.91864,47.195755,7.493474e-09 2049,74.011986,8.638498,44.59606,49.29487,5.347097e-09 2049,129.13687,6.4491963,45.73137,54.12102,2.304377e-09 2049,40.633564,7.054663,44.798954,49.56625,2.2452804e-09 2049,169.1739,2.130127,45.729828,59.267994,1.8699278e-10 2050,478.34293,185.20802,33.22162,67.431305,0.03320308 2050,0.74253666,200.72583,14.056169,51.325745,0.00081437686 2050,621.8022,169.92148,17.344482,50.05275,0.0005195972 2050,0.80409586,155.3562,18.850508,74.88864,0.00034017174 2050,617.5623,223.7511,21.58435,82.18771,0.00017392274 2050,616.97253,65.317726,22.174133,79.436165,0.00017353537 2050,478.78766,152.86662,81.94653,157.74443,0.00014798225 2050,611.2402,90.1244,27.906494,138.89001,0.00012262327 2050,617.5283,282.7604,21.618347,84.29401,0.00011635076 2050,0.6936678,206.2857,20.362804,130.98578,0.0001012696 2050,617.6656,333.57993,21.48108,82.31979,6.8882604e-05 2050,1.5251139,104.862015,34.114376,166.48808,5.9180285e-05 2050,611.58704,372.9846,27.559631,131.09781,5.495426e-05 2050,0.7995687,94.921524,18.532717,75.84982,1.6439391e-05 2050,615.52576,16.893402,23.62091,86.09072,1.561818e-05 2050,601.6125,143.48161,37.53418,185.62132,1.5233094e-05 2050,586.52295,222.41058,52.62372,267.17984,1.1929155e-05 2050,0.5116032,260.31894,13.894989,48.353027,1.1284392e-05 2050,583.8652,0.0,55.281494,244.19553,6.645117e-06 2050,0.66052574,380.26147,18.075687,72.41141,6.300958e-06 2050,3.2051237,178.92195,57.14122,216.62321,5.912297e-06 2050,0.54550374,339.81067,18.269133,70.556335,5.28489e-06 2050,0.5521631,297.6257,18.31247,71.49603,4.7898975e-06 2050,433.79395,14.354404,40.200226,85.22826,2.5331753e-06 2050,1.1200163,285.33334,32.424633,172.81064,1.8353351e-06 2050,1.6854883,419.8398,34.307957,77.81998,1.1636187e-06 2050,0.64456546,49.85693,18.81696,74.85933,7.431991e-07 2050,5.6125326,361.90585,78.603516,123.50076,6.7213426e-07 2050,3.061859,41.313828,83.46481,200.94542,5.1752403e-07 2050,397.99243,0.0,90.71518,159.74777,1.9432005e-07 2050,0.5479163,13.009609,11.809058,74.85086,1.640639e-07 2050,1.9124675,18.595509,56.37615,111.91197,9.055701e-08 2050,114.95666,6.7005453,44.50715,52.082664,4.241069e-08 2050,410.92627,1.1433887,45.088593,55.340073,2.6780297e-08 2050,454.266,4.0296535,45.5795,56.152687,8.626811e-09 2050,142.22061,4.022321,44.365936,55.09906,1.6896557e-09 2050,169.54279,4.003503,43.695435,49.844944,7.8772266e-10 2051,457.90512,220.12386,23.356781,47.347244,0.19937427 2051,620.40826,154.66074,18.738403,52.81047,0.0018373217 2051,353.90463,185.94615,25.03888,54.243042,0.0012490696 2051,491.8917,208.87712,22.526703,46.359314,0.0006469697 2051,585.6239,161.04088,28.04535,53.372147,0.00054947735 2051,609.93524,122.02404,29.211426,132.35776,0.00051251234 2051,0.7429199,178.45264,13.623083,49.8264,0.00041461436 2051,617.0638,244.3905,22.082886,81.39719,0.00024942268 2051,618.35315,387.7079,20.793518,80.18729,0.00017481606 2051,572.0022,133.88097,67.14447,251.07716,0.00016513366 2051,618.06165,311.6051,21.085022,83.51901,0.00016142977 2051,1.3746965,153.6511,19.457655,126.11047,0.000117653806 2051,617.35864,59.542397,21.788025,78.80186,0.00010218237 2051,1.145446,125.87925,17.963217,69.88029,5.9582868e-05 2051,0.86734664,205.76375,13.602824,50.722397,4.9116767e-05 2051,603.00104,288.16672,36.14563,193.24078,2.9995175e-05 2051,609.9767,440.79105,29.169983,63.96823,2.3464137e-05 2051,598.4016,18.835886,40.745056,193.16772,1.4997042e-05 2051,0.6432357,237.20467,18.37857,75.68556,1.3261198e-05 2051,0.9145549,69.80401,18.652845,81.216225,9.787934e-06 2051,1.2583382,189.70946,32.98678,174.55043,8.904642e-06 2051,608.6834,2.970459,30.463257,56.27708,8.664189e-06 2051,0.55637616,321.37146,19.686247,131.0159,7.740309e-06 2051,0.47361696,372.27695,13.689437,46.52661,6.941625e-06 2051,0.7264852,406.45737,18.080372,71.05618,6.692307e-06 2051,0.5516911,282.70062,18.30276,72.03354,5.590161e-06 2051,6.027992,144.3726,77.64821,255.13219,4.3294085e-06 2051,1.7512907,67.49366,33.789543,182.96814,9.081548e-07 2051,3.1296403,334.50122,57.29146,147.36029,5.942004e-07 2051,0.7726514,9.219082,12.84332,80.95332,2.4319328e-07 2051,3.2081478,8.453737,81.012634,164.72847,1.11628005e-07 2051,1.5428858,5.155775,38.34025,49.325775,5.6305076e-08 2051,114.99714,3.0352638,45.30793,55.41606,3.3871213e-09 2051,518.03094,2.73861,42.828674,47.069397,3.2491472e-09 2051,169.15205,1.7966993,42.61206,54.30476,1.6497051e-10 2051,142.53726,0.92310226,45.103165,60.300575,1.00621206e-10 2052,607.3769,155.89452,31.769775,77.95302,0.03229595 2052,611.22754,205.01967,27.849426,62.814957,0.01502311 2052,621.5645,142.07068,17.582153,52.410583,0.0070077833 2052,355.6273,218.04388,21.979065,52.71527,0.003918637 2052,592.60455,159.38696,25.942078,50.79596,0.0017675668 2052,534.84235,193.5362,31.247742,61.712097,0.001299758 2052,586.1329,157.79013,52.747375,197.39749,0.00094011874 2052,364.9997,227.1247,23.44989,57.016235,0.00069581013 2052,1.2919677,169.07521,18.341078,75.30948,0.00052871567 2052,617.08307,244.26978,22.063599,85.8389,0.00052558514 2052,617.91693,312.51648,21.229736,81.29669,7.353174e-05 2052,572.4787,154.42627,26.609863,49.91046,5.438742e-05 2052,612.8963,360.82224,26.250366,135.75803,5.205393e-05 2052,0.93944585,217.17169,18.021454,73.79196,3.318087e-05 2052,616.6058,23.006771,22.540894,73.849976,2.7671675e-05 2052,1.8939502,105.1851,34.677055,173.70993,2.6630833e-05 2052,585.1039,41.510517,54.042786,210.37283,2.5912857e-05 2052,616.82684,73.55439,22.319824,81.33495,2.5760583e-05 2052,440.68835,45.557583,27.939514,63.476368,1.1859959e-05 2052,0.61176676,385.26584,18.333397,72.06381,8.58631e-06 2052,0.53972983,260.73285,18.35567,73.25568,8.3085915e-06 2052,0.4777181,345.32132,18.404861,72.20108,6.4970295e-06 2052,0.5041333,303.9119,18.382528,72.33234,6.084379e-06 2052,0.92477214,106.60542,18.634066,75.13411,5.8958003e-06 2052,1.0431519,65.62139,18.397627,73.50889,4.592521e-06 2052,1.2899837,207.69597,33.373734,179.00682,4.440844e-06 2052,4.5858073,129.29742,80.19173,250.83395,4.018064e-06 2052,0.9022323,441.33017,21.74516,62.51355,1.8907004e-06 2052,0.99756676,334.64474,32.78441,151.80469,1.8339003e-06 2052,2.8343816,428.38293,53.402412,70.75656,2.7653238e-07 2052,2.2423112,17.774202,56.829266,108.674355,1.8494958e-07 2052,416.97772,7.5167384,81.017914,173.70583,1.09058576e-07 2052,1.3369702,12.383604,26.24748,71.395775,9.968304e-08 2052,436.9633,2.7148683,42.615112,55.900883,4.129807e-08 2052,107.75486,12.142178,85.30566,72.3508,4.101187e-08 2052,55.05051,6.187214,45.008625,56.017353,2.4862622e-08 2052,81.82807,7.912062,44.099754,53.849747,3.6886965e-09 2052,129.59222,5.6366324,47.132996,46.480156,1.6924134e-09 2052,162.47745,5.597692,41.787872,46.43194,1.458067e-09 2053,446.50705,172.08714,28.382385,67.54198,0.041344497 2053,345.93253,198.78949,32.877686,72.42093,0.0133317765 2053,365.95602,197.90413,24.726135,59.029404,0.0049667475 2053,1.342749,167.53914,18.318127,74.427826,0.0017717821 2053,603.224,46.844833,30.057373,64.28184,0.0011011628 2053,621.65686,249.07484,17.489807,55.179794,0.00087505 2053,19.845617,192.85513,23.886026,48.13443,0.0006560502 2053,616.7538,71.59414,22.392883,85.14144,0.00059610035 2053,611.5873,207.99529,27.559387,130.1801,0.00042931674 2053,615.9832,121.395744,23.163452,92.75457,0.00021337453 2053,373.16043,223.25021,23.527588,52.43271,0.00019901083 2053,600.3247,85.72405,38.640137,215.45798,0.000183882 2053,617.47217,286.89978,21.6745,85.577545,0.00010935399 2053,618.1343,349.63422,21.01239,78.994415,0.00010644047 2053,0.7598324,214.58012,18.236437,78.00856,9.495332e-05 2053,1.4046973,97.833305,33.95146,182.37918,5.9001813e-05 2053,424.46838,164.12108,82.368195,165.63548,3.7999194e-05 2053,610.14526,440.32516,29.001404,64.55084,2.425537e-05 2053,588.0892,247.79443,51.057495,225.11761,1.9863e-05 2053,0.8265926,73.56102,19.2939,81.68579,1.823931e-05 2053,578.7604,8.791458,60.38629,149.32146,1.6328673e-05 2053,0.64980066,260.1395,18.095459,75.90399,1.1421569e-05 2053,0.5512036,398.77014,18.324871,71.79727,8.136381e-06 2053,0.6785531,306.17923,18.832006,129.38843,6.175104e-06 2053,1.0906274,220.78787,31.964666,179.98724,5.932495e-06 2053,5.128366,126.69824,78.77276,266.8314,3.224648e-06 2053,0.83580565,442.02838,22.01955,61.626465,1.9748193e-06 2053,1.3708383,15.680254,57.507862,120.81772,1.0814349e-06 2053,3.0193605,305.5117,57.451073,171.03796,8.9934974e-07 2053,2.6950667,428.26974,53.70253,71.232666,3.0248003e-07 2053,0.60935956,11.513135,13.824003,82.876595,1.1583412e-07 2053,115.11442,5.5502734,44.942024,55.522995,4.5926036e-08 2053,1.0417497,5.408301,36.97854,52.738823,2.748485e-08 2053,75.199066,5.5672364,41.529816,48.363,9.617297e-09 2053,141.06134,3.5516944,43.858383,54.93558,3.3750491e-09 2054,354.72675,194.8126,38.10367,80.054184,2.7933493 2054,481.6869,163.16396,36.791748,91.615326,0.28333542 2054,375.39703,179.02298,34.50476,90.43698,0.0077462564 2054,620.6299,222.50214,18.516785,60.16147,0.0065512666 2054,413.65875,248.23943,23.729645,52.06096,0.002003537 2054,611.1711,155.26949,27.975586,137.07927,0.001178253 2054,345.23615,163.11441,72.66443,149.1614,0.0010148595 2054,1.1529566,158.69937,18.235725,78.64824,0.00039048723 2054,429.9365,249.83722,22.556488,49.72354,0.00036113942 2054,616.7172,127.732635,22.429443,77.690155,0.0002539451 2054,443.1083,250.35269,23.313385,49.14029,0.00014395225 2054,617.4565,249.89868,21.690186,87.311035,0.00011148122 2054,618.1271,355.90268,21.019592,78.70404,0.00010815173 2054,393.79385,204.52425,44.06485,133.11739,0.00010206559 2054,571.09973,113.66019,68.046936,258.9483,7.225461e-05 2054,616.47723,79.981186,22.669434,79.33554,7.0502254e-05 2054,0.83627117,215.40977,17.873598,74.63869,6.196885e-05 2054,615.291,19.509005,23.855652,78.96279,4.1984484e-05 2054,2.348122,126.89995,34.408043,165.70909,3.2434313e-05 2054,473.6328,149.70009,73.4057,167.55116,3.2335203e-05 2054,610.01514,440.78824,29.13153,63.796356,2.2747297e-05 2054,602.0097,221.50706,37.136963,205.74043,2.2064474e-05 2054,600.4062,43.040718,38.472656,193.0798,2.0525675e-05 2054,0.8766773,99.29647,13.771022,48.91326,1.476469e-05 2054,0.583055,328.77618,19.4934,129.29684,9.289186e-06 2054,0.5487118,260.85825,18.283596,72.986176,7.2373787e-06 2054,585.9192,393.70166,53.227478,100.933105,5.096486e-06 2054,1.4386833,217.16959,31.791664,181.91403,5.076713e-06 2054,5.2705407,139.58762,78.34412,247.71979,4.3283185e-06 2054,0.678951,421.6869,16.800581,80.10077,4.150896e-06 2054,1.1381584,57.428875,21.064178,143.78792,1.4193952e-06 2054,2.868654,312.18802,57.48773,165.31293,9.4788106e-07 2054,2.825184,21.22874,56.430313,99.940384,4.6844016e-07 2054,2.6824088,429.3085,52.95844,69.63754,3.846954e-07 2054,1.1673177,36.29977,18.809587,63.727093,3.070899e-07 2054,580.3188,3.207383,42.916016,45.652805,9.005367e-09 2054,120.582466,2.1807163,44.92489,62.187286,1.2740089e-09 2055,369.50925,210.61723,23.82666,65.781235,0.4687412 2055,380.95908,199.9818,28.481049,79.752365,0.09281098 2055,356.5211,208.74008,22.764221,57.15512,0.07456281 2055,417.08655,165.31552,43.58441,138.45807,0.06817764 2055,364.55396,178.07642,59.848755,131.87921,0.038364746 2055,214.29172,214.47594,20.72293,47.86812,0.021862902 2055,534.9861,152.52852,41.62372,128.3839,0.012083513 2055,1.3963689,197.76082,17.644701,80.53084,0.0034518777 2055,455.5299,275.07596,24.738434,58.739838,0.0021755535 2055,106.59828,203.50777,24.365463,54.35887,0.00079055765 2055,2.041766,115.59081,34.25753,177.44937,0.00071384344 2055,0.71350425,173.0932,14.314812,60.404648,0.00067315326 2055,611.10785,160.4925,28.038818,131.5747,0.00050011236 2055,621.96387,143.73067,17.1828,53.12863,0.0004756059 2055,0.79338217,57.68983,13.688686,48.734715,0.00043980245 2055,82.71206,215.72806,26.274628,53.35376,0.0004301105 2055,465.30682,265.2274,35.38266,72.47394,0.00041725853 2055,385.7418,153.22287,109.22394,193.61734,0.0004070746 2055,1.0065829,76.07913,18.14031,75.26683,0.00023345581 2055,617.9284,267.62982,21.218262,76.40732,0.00013862038 2055,587.6679,190.7628,51.47876,225.18459,8.2062805e-05 2055,0.7989779,124.278114,18.753244,85.94038,5.6762325e-05 2055,515.2386,260.3677,31.6958,73.88724,5.3278745e-05 2055,432.44733,243.03654,42.749756,104.82173,5.306359e-05 2055,610.7363,78.487206,28.41034,145.3695,5.244073e-05 2055,612.33154,291.13293,26.815125,137.97235,4.7954967e-05 2055,612.8368,369.52377,26.309875,126.77994,4.2546973e-05 2055,0.5233415,222.98178,20.048973,150.9006,3.751493e-05 2055,596.257,3.4749024,42.58551,85.6456,2.8205179e-05 2055,3.1209424,175.86125,56.886894,202.09077,2.0241554e-05 2055,584.2161,0.0,54.930542,267.37122,8.598142e-06 2055,0.6355444,335.3174,19.33846,129.76285,8.02916e-06 2055,451.53146,210.70277,77.48978,173.97676,7.3598953e-06 2055,0.71290773,422.8834,17.243769,79.13074,4.1028497e-06 2055,1.8498861,17.019281,58.597275,109.68661,1.9299337e-06 2055,2.755332,292.1115,57.673588,183.49335,1.1537621e-06 2055,2.6885173,428.78934,53.21247,70.14572,3.8723294e-07 2055,0.98995364,7.348545,22.38154,59.82432,8.9318156e-08 2055,362.2637,4.474881,41.937805,48.82748,6.5077266e-08 2055,388.57166,3.7070818,42.86203,49.053253,1.5050462e-08 2056,435.0571,262.30176,25.017609,59.1174,1.4498606 2056,118.36838,210.01949,38.462585,80.109634,0.15910092 2056,190.63152,193.3774,33.788406,66.44273,0.05235202 2056,31.03673,187.72298,26.613192,51.87117,0.0015996493 2056,446.06934,272.46332,26.652863,64.38913,0.0009894086 2056,391.345,220.51631,31.704407,80.91795,0.0004405371 2056,611.2524,191.15584,27.894287,136.21635,0.00036608175 2056,616.99493,311.09842,22.151733,82.7966,0.00016601905 2056,1.1879606,217.95036,18.612587,66.501144,0.00016354246 2056,523.35004,276.82037,39.263855,98.753845,0.00014680561 2056,611.4945,75.96491,27.65216,132.67783,0.0001172736 2056,600.183,259.5863,38.963684,201.871,9.723957e-05 2056,419.39423,205.322,67.131714,175.62813,7.8954334e-05 2056,612.58984,372.83917,26.556824,126.80203,5.2793195e-05 2056,1.5529721,225.72691,27.622272,139.07152,4.2250063e-05 2056,488.239,131.7321,48.455566,157.13246,2.3983583e-05 2056,4.0243216,170.50308,59.870163,200.68445,2.1416277e-05 2056,608.9829,6.352303,30.163757,47.57412,8.1544495e-06 2056,0.7580143,399.03308,20.425995,98.437805,7.933045e-06 2056,508.70596,238.69722,76.13187,174.79729,7.639648e-06 2056,1.1358855,78.3247,18.283585,72.60978,7.356429e-06 2056,0.7020337,317.09372,19.280735,128.64014,7.050105e-06 2056,1.6281723,123.50248,28.575768,154.33359,4.4400817e-06 2056,569.84186,28.341967,69.30481,121.876816,1.6255578e-06 2056,460.05328,418.69833,74.276245,79.802826,1.2348537e-06 2056,499.93964,421.196,74.45819,79.116455,9.712835e-07 2056,3.2193782,346.75574,57.65218,136.14975,8.84023e-07 2056,2.8807862,23.111258,55.500217,96.66533,4.7758823e-07 2056,0.85339844,12.609867,15.242066,76.10167,2.5232498e-07 2056,99.575905,6.384162,61.5402,46.332603,6.962894e-10 2056,531.0959,3.7518425,45.604492,46.37789,1.7946669e-10 2057,430.37732,242.62642,29.810974,82.841385,3.1659088 2057,504.02042,290.7222,37.974335,87.57489,0.99351144 2057,582.6036,338.72382,42.574524,106.48016,0.002340962 2057,592.1601,215.66707,25.318298,45.17366,0.0016440802 2057,622.8872,341.88153,16.25946,49.222656,0.0010867409 2057,484.42017,246.4881,68.56354,168.93604,0.0010220916 2057,611.58655,322.46985,27.56012,135.15433,0.0009023533 2057,621.6132,211.74918,17.533447,52.070312,0.000526182 2057,1.0116366,195.16014,17.907166,67.783005,0.00042568217 2057,0.87380373,175.86078,13.454816,50.337296,0.00039649132 2057,609.18976,205.46664,29.95691,139.02734,0.00024909416 2057,543.8172,273.22012,91.66876,197.28714,0.00016819498 2057,416.74536,196.53313,64.493866,164.01942,0.00015615857 2057,616.2082,158.72816,22.938477,82.54877,0.00014934842 2057,0.99319583,105.60451,19.924171,136.57669,6.2453924e-05 2057,607.31573,438.35974,31.830933,67.19699,5.3986412e-05 2057,0.77119875,231.46974,19.690126,139.45049,2.5576937e-05 2057,584.978,95.82914,54.16864,240.03995,2.0118385e-05 2057,610.65063,54.179577,28.496033,141.89493,1.7384435e-05 2057,3.5293164,111.985405,58.23316,209.31781,1.713667e-05 2057,0.8102922,341.97702,19.308754,128.79977,1.3256305e-05 2057,0.7819084,59.290257,13.806038,47.196766,1.2505593e-05 2057,607.6595,5.349411,31.487183,52.392635,9.963884e-06 2057,0.91816247,80.67499,18.512468,74.717316,8.935334e-06 2057,556.238,418.83633,78.31842,80.12082,3.3920137e-06 2057,3.2127702,327.38614,56.616333,151.70258,1.2492239e-06 2057,1.3670557,417.901,34.547043,80.82449,1.001905e-06 2057,585.7887,16.812988,53.101135,94.93256,9.897566e-07 2057,1.7510986,19.836458,56.003162,111.62958,3.5431282e-07 2057,251.9068,0.0,45.846222,56.143948,1.7506592e-08 2057,573.48444,3.8212614,44.397522,45.38736,1.6680892e-09 2057,277.7409,0.0,44.125824,51.575836,9.8281e-10 2057,191.17079,3.5146747,40.713715,45.962654,7.657811e-10 2058,504.04736,287.35965,38.431458,84.69,13.656643 2058,129.40027,213.87534,22.235992,47.51367,0.005875324 2058,621.7118,245.75563,17.434875,54.35295,0.0016221547 2058,495.03604,254.5398,67.89542,163.51456,0.0009879209 2058,605.6009,14.505476,33.545776,100.34476,0.00077435654 2058,0.8829936,205.32355,13.395665,48.867813,0.00052500353 2058,610.6789,231.49464,28.467773,129.74532,0.00022787604 2058,617.4809,385.5061,21.665771,82.2059,0.00021520334 2058,472.0832,180.76271,70.51105,185.31047,0.00018107367 2058,611.45074,155.19545,27.695923,135.91649,0.00012415394 2058,0.69432294,149.55467,18.20934,75.96721,0.00010864816 2058,0.7039909,205.54308,20.260761,131.16563,7.593913e-05 2058,609.11926,437.71948,30.027405,68.807465,5.239674e-05 2058,0.7867456,71.06504,18.316923,74.25028,5.0118477e-05 2058,586.95917,304.92725,52.1875,174.32895,4.2776028e-05 2058,0.51130575,252.74704,13.962676,48.960266,1.8409099e-05 2058,586.34467,0.0,52.50177,279.03564,9.432374e-06 2058,0.58953047,352.06976,20.692875,101.03525,9.303512e-06 2058,0.6040137,298.26486,18.086636,70.49927,6.863147e-06 2058,5.3730273,153.71307,77.8302,248.04861,4.8546026e-06 2058,0.69882894,421.5166,17.097555,80.7121,4.0635823e-06 2058,1.6079412,73.59596,34.417255,191.70125,3.539402e-06 2058,169.77863,135.63701,96.96973,215.90285,3.3726212e-06 2058,2.9577084,293.0948,57.422363,181.25616,1.1009652e-06 2058,1.5612516,21.90283,29.085781,94.533134,8.81494e-07 2058,585.43384,1.6531576,44.98523,49.21296,4.5312115e-07 2058,2.689087,427.04782,53.29137,71.88052,4.002191e-07 2058,3.3916376,6.6903777,82.05948,266.63382,3.1615585e-07 2058,6.453796,8.60598,44.066105,47.321587,7.34141e-08 2058,33.48721,7.764055,42.87553,45.255424,1.6399094e-08 2058,252.70427,0.0,45.22963,55.006058,5.1392917e-09 2058,291.8991,0.0,43.7005,51.48267,1.4112675e-09 2058,81.66486,2.3091228,43.15972,50.848553,1.1771761e-09 2059,612.21375,214.52055,26.932922,79.96562,0.07029021 2059,623.1551,253.72726,15.991577,53.806305,0.02529021 2059,486.60303,216.58588,27.56128,51.18976,0.008235944 2059,571.0716,211.47493,24.569458,54.159073,0.0035694626 2059,620.93195,182.65251,18.214722,64.41348,0.0033743982 2059,2.0403206,232.85281,33.956596,70.18347,0.00161025 2059,602.6873,105.05977,36.45935,209.62529,0.0008946792 2059,1.1076579,256.30768,14.1805935,52.351685,0.00042811557 2059,52.01125,236.16441,23.69347,50.121017,0.00018539383 2059,1.094196,172.30937,18.983738,82.916855,0.00013268043 2059,613.72815,13.926709,25.418518,76.03439,0.00010715179 2059,616.3833,69.971146,22.763367,79.48201,8.406064e-05 2059,1.0608463,247.64612,32.521362,190.33914,8.09295e-05 2059,603.66644,220.84271,35.480225,195.29382,6.722217e-05 2059,612.7176,373.76593,26.429077,123.758575,5.710602e-05 2059,616.3929,124.0592,22.753784,92.18174,4.9412665e-05 2059,0.55690026,286.43994,18.543861,80.49075,4.801835e-05 2059,2.5783806,107.03405,47.620598,200.14252,3.299073e-05 2059,0.6938371,75.79911,20.627356,152.46396,2.9511397e-05 2059,4.1699286,191.90828,77.3434,247.68752,1.1069858e-05 2059,0.56578857,374.6261,19.112299,121.67328,7.1288164e-06 2059,0.497959,345.90533,18.338226,70.805115,6.8255504e-06 2059,528.2418,72.249016,81.66052,210.85498,4.920932e-06 2059,599.0664,8.236341,40.08026,166.11134,3.382297e-06 2059,0.74263835,46.98142,18.855648,79.77681,1.3383619e-06 2059,2.813794,395.72028,56.230667,96.952545,6.4850923e-07 2059,1.8016406,16.01697,57.052143,106.19912,1.3530375e-07 2059,1.2709717,5.7216783,37.527493,49.552307,1.0228782e-07 2059,254.3355,0.0,47.712296,45.44556,5.0015387e-08 2059,490.6197,4.022902,44.130066,51.73954,1.5959586e-08 2059,332.91885,3.3022103,62.198853,46.731194,1.5593393e-08 2059,523.76715,3.0258334,43.668762,54.34808,3.9512162e-09 2059,299.17856,0.0,44.16214,53.56225,2.7854048e-09 2059,74.01522,2.3177702,42.963036,46.698147,2.654275e-09 2059,171.59067,3.6506934,41.686905,49.63711,7.705517e-10 2060,60.126667,207.08629,44.80707,78.43138,0.014858918 2060,394.485,203.73708,24.985535,48.278687,0.0030958748 2060,599.3503,224.88535,24.114502,47.564972,0.0029961155 2060,617.21936,192.02763,21.927307,73.92531,0.00077658996 2060,617.7199,231.5451,21.426758,77.90765,0.00029861252 2060,1.1152873,215.39154,18.19427,70.70978,0.0002261191 2060,587.05817,229.37915,51.097107,228.48389,0.00012360823 2060,616.9592,104.83482,22.187439,86.61862,0.00012109023 2060,600.5616,165.6034,38.585083,166.63666,0.00010997186 2060,617.54,318.73196,21.60669,82.094574,9.157893e-05 2060,612.92505,364.26135,26.221619,131.42746,4.420689e-05 2060,0.6145858,243.7762,19.96054,136.2658,4.187188e-05 2060,42.033054,161.5868,91.62384,166.14134,2.092352e-05 2060,1.5423486,180.04636,35.253506,161.82803,2.070012e-05 2060,0.62272257,106.58749,13.737983,45.20057,1.8554512e-05 2060,616.54504,29.018936,22.601624,75.12106,1.6355634e-05 2060,0.8767009,112.94982,19.927774,142.12802,1.2653416e-05 2060,607.37134,5.1164,31.77533,52.69783,1.1880993e-05 2060,0.6493396,79.13334,13.798333,46.73265,8.869537e-06 2060,0.5295996,352.0282,20.768314,102.52176,7.225765e-06 2060,4.8040366,139.14226,82.67925,242.54662,6.705774e-06 2060,0.7162028,422.4649,17.243969,79.84317,3.4108932e-06 2060,600.1004,19.465723,39.046265,208.35461,1.9636527e-06 2060,2.9225912,302.91296,57.34252,175.86563,1.2060207e-06 2060,1.016508,46.155243,20.726921,126.66815,5.6212286e-07 2060,2.7236133,427.85077,53.456577,71.183624,3.729499e-07 2060,3.1104493,22.982164,56.104336,98.27705,1.8051989e-07 2060,1.2788917,15.186989,26.308693,67.03821,4.6999453e-08 2060,579.1324,4.372017,45.355164,47.753803,4.442771e-08 2060,6.889784,8.48877,43.796097,45.01333,1.35833265e-08 2060,251.27246,4.560389,47.995667,52.32239,7.247784e-09 2060,197.86284,7.8642936,43.6474,45.254616,4.576468e-09 2060,169.6335,4.893854,43.35956,52.60488,2.8842564e-09 2060,277.95782,1.6400326,46.941925,57.952168,2.8823315e-09 2060,136.87108,5.906169,43.554153,47.562984,1.0496035e-09 2060,306.2539,0.95297855,43.617493,51.671715,9.833874e-10 2060,60.451134,5.296221,45.276268,45.848274,3.3963188e-10 2061,10.882684,208.29968,21.532513,47.285187,75.77576 2061,92.38267,206.85606,22.537918,45.512253,39.159348 2061,421.86368,205.39691,23.864655,47.99025,0.0034834691 2061,621.0555,203.98047,18.091187,55.472046,0.0017413371 2061,615.34143,222.33922,23.805237,82.66695,0.001466652 2061,3.5414536,175.55511,42.268932,108.53195,0.0006772292 2061,601.14764,214.76721,37.999023,176.71667,0.00021486744 2061,603.39124,138.90028,35.755432,153.84877,0.00014911231 2061,617.27185,126.65758,21.874817,85.14902,0.00010306986 2061,0.81136316,219.19412,28.419952,164.35275,9.886445e-05 2061,0.96865565,112.777214,20.583233,148.59436,8.503627e-05 2061,617.39484,71.500755,21.751831,75.64175,7.0681e-05 2061,612.5414,320.6041,26.605286,134.48264,4.5668225e-05 2061,610.0758,441.09943,29.070862,63.47809,2.5255005e-05 2061,449.00906,13.416393,45.347412,122.850876,2.0775034e-05 2061,596.2008,4.201019,42.94586,78.19199,1.0538019e-05 2061,4.9791083,124.67525,98.641266,227.99553,8.625278e-06 2061,0.50779784,282.24194,18.376705,71.9393,6.3686934e-06 2061,0.5017847,373.00708,18.37747,71.42459,5.997252e-06 2061,585.93207,394.39468,53.2146,99.85904,5.7246707e-06 2061,452.723,8.628203,88.2988,194.70186,4.9302707e-06 2061,0.8921989,393.80887,27.48275,104.78824,3.0046535e-06 2061,70.605835,160.6894,79.61972,159.30345,2.6825617e-06 2061,585.2216,18.14739,53.92505,224.9328,1.764523e-06 2061,3.1052246,340.8974,57.4241,144.42969,6.833337e-07 2061,458.96387,0.8506055,44.862823,65.4708,4.866382e-07 2061,0.6066789,26.608646,19.992033,122.44173,3.2218614e-07 2061,229.00165,12.97401,81.591095,179.38391,9.777327e-08 2061,429.70294,0.0,48.87686,63.46345,1.5886274e-08 2061,0.7483919,9.902071,30.070154,59.09086,5.2212994e-09 2061,293.0023,0.07439616,43.459137,52.392147,1.149231e-10 2061,34.430214,3.2333138,37.086952,47.505104,2.9312711e-12 2062,29.365223,193.28104,39.165936,65.16974,13.822115 2062,483.14008,169.78813,30.99524,72.34065,0.16131634 2062,619.39343,172.07043,19.753235,61.339005,0.0053278888 2062,58.42376,205.40395,24.189545,46.623276,0.0017608264 2062,603.90155,142.22777,35.245117,141.3189,0.00056542497 2062,617.5634,225.95607,21.583252,83.992935,0.00033473445 2062,622.2432,283.72174,16.903442,51.47931,0.00024617615 2062,616.9188,57.4438,22.227844,80.71988,0.00020789633 2062,1.2030233,208.08209,17.410505,64.7287,0.00012800242 2062,616.139,103.777824,23.00769,93.26408,0.00010535995 2062,618.08545,336.03406,21.061218,77.81598,9.1608454e-05 2062,1.2133757,136.3262,17.839815,73.89488,8.619371e-05 2062,613.09595,368.1517,26.05072,128.17249,4.129245e-05 2062,0.6447746,225.66173,19.643017,131.02657,3.604601e-05 2062,1.8337615,158.57742,32.691265,151.70312,2.4962157e-05 2062,587.88696,193.52536,51.259705,255.5148,2.121758e-05 2062,8.250814,158.40521,94.47412,194.64087,1.9007965e-05 2062,0.52536094,252.42276,13.827429,48.476166,1.6401902e-05 2062,583.70667,0.0,55.440002,125.319664,1.529674e-05 2062,0.68452555,106.284355,13.913004,51.84887,1.1667951e-05 2062,0.60645425,391.80734,18.309242,71.21127,8.7650005e-06 2062,0.52097577,299.0479,19.687908,130.5473,6.953485e-06 2062,0.7640674,78.46528,13.694681,45.28389,6.3231587e-06 2062,0.89224124,442.0824,21.917568,61.65689,1.9604304e-06 2062,0.9271965,351.46387,32.503685,137.84906,1.8257683e-06 2062,1.6127377,57.31122,28.757702,155.15051,1.1988673e-06 2062,475.95,9.53166,46.531494,130.28784,8.737338e-07 2062,477.97375,10.604916,119.83545,220.82863,3.7027985e-07 2062,459.2397,0.0,39.161896,101.3224,2.1286837e-07 2062,526.3413,26.828754,21.818115,56.292767,2.0246442e-07 2062,1.0303719,17.38473,21.2832,87.83459,1.250458e-07 2062,487.88803,4.352741,46.542816,58.112118,9.1917315e-08 2062,245.72227,4.1027083,43.77278,53.80554,9.172834e-08 2062,3.489375,22.391577,80.23474,142.43063,5.4935036e-08 2062,439.5412,0.18376954,43.189087,57.769085,3.1432002e-08 2062,6.2920885,4.9473324,43.948433,51.389076,3.7571404e-09 2062,127.97438,4.23465,61.870148,49.153946,2.755549e-09 2062,313.44308,0.30031902,45.11496,57.766506,1.915415e-10 2062,339.26056,0.0,45.461914,57.469612,1.8904082e-10 2063,19.486748,197.60654,24.104927,53.941574,1.2237811 2063,604.3018,160.6398,34.84485,73.67926,0.0377502 2063,130.37344,168.70901,31.090057,65.20024,0.013428626 2063,281.00113,134.9435,22.733246,45.78943,0.009423499 2063,521.65674,199.38167,35.625427,68.57439,0.0079035545 2063,621.74536,137.989,17.401306,57.780533,0.005935807 2063,2.0347347,187.60388,27.098476,69.37094,0.0041845446 2063,585.2213,135.38458,53.925354,201.13977,0.0010044854 2063,612.26385,201.09471,26.882812,115.98952,0.0008994084 2063,0.74087405,221.0055,18.176346,74.68506,0.00019722687 2063,617.5283,273.9509,21.618347,84.18021,0.0001440554 2063,4.1963997,112.14893,56.99525,208.70798,7.699771e-05 2063,612.69354,314.49646,26.453125,140.34888,4.7902948e-05 2063,1.0397388,126.51282,18.79363,82.21727,4.1796757e-05 2063,615.44165,18.789637,23.705017,78.7306,3.325988e-05 2063,610.06244,440.6964,29.084229,63.8609,2.6227912e-05 2063,615.9446,68.24578,23.202087,93.11669,2.3542812e-05 2063,414.33203,145.33974,83.83188,160.5071,1.7846696e-05 2063,0.92568606,76.34405,18.72036,77.74955,1.735591e-05 2063,1.219668,223.93323,32.232384,185.36652,1.1963595e-05 2063,0.44345298,263.66458,18.351837,75.917786,1.1755483e-05 2063,0.6189673,333.65982,19.582926,131.62857,5.9517392e-06 2063,586.0123,392.7438,53.13434,102.039856,5.0900153e-06 2063,0.70565104,421.7895,17.152288,81.576355,3.191575e-06 2063,0.7833325,41.499233,31.408295,200.53706,7.2226203e-07 2063,3.1048472,343.95203,57.546646,140.806,5.1092724e-07 2063,477.93777,0.9067611,84.12894,84.381676,1.6397445e-07 2063,491.75854,0.0,36.194397,47.58135,1.1121847e-07 2063,387.83295,1.4875505,45.054596,54.609314,1.0221136e-07 2063,543.31934,4.151727,44.684265,50.943882,9.760112e-08 2063,466.14114,0.98527837,44.447205,53.625824,5.9401657e-08 2063,359.79196,1.3795232,45.711914,53.824905,5.1637805e-08 2063,251.73293,3.772002,44.54988,54.404,4.891114e-08 2063,0.8684099,10.12862,58.41356,122.60777,3.2810465e-08 2063,332.6789,2.7637615,46.922974,50.28444,1.5674052e-08 2063,0.877828,4.239847,21.32748,61.77128,1.0469228e-08 2063,133.63803,0.83612305,45.09355,62.28986,7.781338e-11 2064,135.97104,209.6411,23.171143,48.043015,0.06492011 2064,279.17664,125.39455,24.262756,54.51921,0.013136382 2064,518.8101,190.308,32.65265,63.709274,0.0038775492 2064,621.8875,182.9184,17.259155,51.8134,0.0017903981 2064,620.85895,113.67021,18.28772,55.769424,0.0011005391 2064,0.8879289,200.35818,13.897345,53.425644,0.0009673634 2064,611.2237,125.86503,27.922974,129.81274,0.00082033605 2064,612.3635,198.82953,26.783142,124.11398,0.00026091747 2064,0.890516,219.0923,18.281546,77.65352,0.00020113026 2064,617.7987,290.37115,21.347961,82.44913,0.00012197979 2064,1.024384,156.02147,18.313866,76.52174,9.0694484e-05 2064,609.4762,10.523842,29.670471,142.05292,5.799115e-05 2064,612.8096,361.2828,26.337097,134.61835,4.22441e-05 2064,587.1362,170.2602,52.010437,231.65424,3.191174e-05 2064,0.7143791,98.75003,13.822248,47.48935,2.4524348e-05 2064,1.2285669,195.85376,32.621597,168.92249,2.31423e-05 2064,0.8085173,111.26905,18.653887,79.45379,1.7461798e-05 2064,1.611045,88.49949,34.19681,185.23001,1.25255865e-05 2064,0.520035,263.70334,18.378693,76.21579,1.2292952e-05 2064,0.57979006,321.0556,19.863422,130.41702,7.0920364e-06 2064,0.91974366,393.15027,27.06747,104.14682,2.8993072e-06 2064,2.8612127,272.87943,57.112682,198.88116,1.1426412e-06 2064,249.48672,21.263294,77.03458,178.06552,3.4694855e-07 2064,106.40711,18.532236,40.188255,78.043976,2.9906667e-07 2064,1.0581706,18.794167,19.182251,133.70288,7.7880905e-08 2064,506.57706,11.839805,78.491425,70.986244,6.9755295e-08 2064,550.7247,9.15379,44.61963,47.011055,5.985134e-08 2064,243.7801,5.17494,64.265884,52.328537,3.838713e-08 2064,1.9233122,15.234027,57.61661,107.69841,3.4477146e-08 2064,352.89392,3.8464406,44.351074,48.16583,1.8732461e-08 2064,298.75583,6.524118,46.664642,49.633568,1.3640676e-08 2064,514.9855,4.987254,42.025024,47.377884,1.1484389e-08 2064,325.22092,3.6496208,46.97046,50.531586,5.2613673e-09 2064,133.73195,3.4936004,45.887665,55.441017,2.8680405e-09 2064,1.9840723,2.2890773,39.247635,47.435505,1.1551651e-09 2065,490.44815,211.75334,20.840393,46.403275,91.99705 2065,106.23027,214.43495,24.140518,53.12343,1.1815464 2065,275.20078,117.703156,27.086975,57.142212,0.06394616 2065,98.448105,153.28308,27.264153,50.569504,0.021496085 2065,621.5877,126.32745,17.55896,55.68846,0.0026705486 2065,501.6975,210.02821,22.867737,46.603226,0.0008433715 2065,612.1219,160.88055,27.02478,119.565094,0.0007660983 2065,610.99896,73.08141,28.147705,142.86905,0.00035696095 2065,82.45672,150.49469,79.995995,163.83057,9.9494675e-05 2065,1.0629004,211.10919,18.311146,75.03671,7.657942e-05 2065,470.29074,177.25568,60.797577,101.84836,4.4320943e-05 2065,602.4507,202.56944,36.695984,192.3076,4.3273205e-05 2065,585.23535,13.140613,53.390503,108.89117,4.228029e-05 2065,612.9428,368.2404,26.203857,127.83176,4.1805888e-05 2065,1.4819044,141.25877,20.551569,96.355606,2.2257047e-05 2065,1.9913672,162.70908,36.183323,157.71979,1.1701068e-05 2065,0.6888167,252.1105,18.486263,76.7189,8.566222e-06 2065,0.63994795,342.5273,19.763773,131.21005,5.2935866e-06 2065,0.8137224,85.08246,13.787234,45.483566,4.2825454e-06 2065,442.3747,131.73419,137.24323,223.97345,3.1478528e-06 2065,0.99371505,100.6156,18.409199,79.05409,2.7487815e-06 2065,0.8997477,264.10178,28.644186,147.60522,2.401924e-06 2065,3.2239373,219.81783,57.561493,227.54729,1.4789358e-06 2065,1.5226253,419.4725,34.44441,79.30911,8.645268e-07 2065,5.574157,360.47885,78.86141,126.412415,4.4204418e-07 2065,2.7993848,25.791862,58.943157,223.54132,8.6399886e-08 2065,191.38052,9.175712,43.813004,47.32972,7.849263e-08 2065,1.1456803,22.811909,19.492428,108.31232,7.826599e-08 2065,85.7209,2.550809,46.71443,49.68678,7.277626e-08 2065,257.10907,6.2922153,46.81723,52.414406,4.142461e-08 2065,311.8586,7.0777297,45.425415,50.151783,3.814511e-08 2065,285.29547,7.6159377,46.14926,48.659702,1.4239847e-08 2065,1.2246974,8.64938,23.157148,50.834774,1.1330973e-08 2066,524.6469,208.34601,28.988464,56.75107,99.781006 2066,46.578297,210.56436,34.796627,74.40988,15.665584 2066,513.09265,209.35199,22.952026,53.333923,0.2413766 2066,73.96083,138.5263,34.94848,66.40674,0.037837394 2066,31.790659,210.12305,28.962122,59.238953,0.028359309 2066,276.33704,124.36287,26.174377,56.273438,0.014781901 2066,541.41766,212.13521,25.571167,48.861893,0.0057903226 2066,511.9533,182.2013,58.85492,101.196655,0.0018372465 2066,617.3312,204.25168,21.81549,77.89447,0.0014866879 2066,2.580835,115.52917,28.260403,143.4184,0.0007222896 2066,621.1512,107.92853,17.995483,54.263397,0.0006006289 2066,550.07874,98.901184,38.944275,94.449615,0.00046354503 2066,610.5099,100.00049,28.63678,139.76639,0.00030391174 2066,616.56635,57.040325,22.580322,86.432724,8.2908045e-05 2066,586.6894,152.36537,52.457275,213.61275,7.978741e-05 2066,3.3611393,145.65889,56.78273,206.8625,6.9064416e-05 2066,481.22632,121.32481,136.02075,236.15146,6.121443e-05 2066,1.3890544,205.2285,18.114933,74.83711,5.7396268e-05 2066,612.9487,367.09598,26.197937,129.00433,3.7648006e-05 2066,0.9817147,91.08611,19.095194,88.43072,3.5275138e-05 2066,611.55396,254.2936,27.592712,146.57741,3.4488763e-05 2066,584.384,13.278191,54.752014,115.62998,1.2595733e-05 2066,0.4511491,260.79333,20.124878,138.09708,9.556638e-06 2066,0.5103703,361.63474,19.786348,133.29132,6.305526e-06 2066,2.6003532,259.78424,57.69349,213.71042,1.2642628e-06 2066,0.67464924,14.312103,18.898243,123.790634,1.7256107e-07 2066,237.66579,1.1174414,46.830032,53.56211,2.15764e-08 2066,270.80344,3.2873032,47.280853,54.773,8.707516e-09 2066,297.91226,4.308799,45.963196,54.304756,3.342135e-09 2067,571.9387,209.3868,31.010315,63.39531,99.7563 2067,25.204824,200.84761,29.550184,50.073883,5.302251 2067,617.2846,104.49215,21.86206,65.84435,0.026261812 2067,591.88776,216.52644,24.21991,51.87709,0.021949667 2067,609.3691,217.06787,29.37384,57.4256,0.015628384 2067,427.93997,213.51341,24.79123,56.559097,0.013288585 2067,4.9933286,200.67975,38.121674,77.1774,0.010953344 2067,620.7953,257.7602,18.35138,52.32077,0.008772239 2067,587.3276,101.49554,50.486572,224.78738,0.0030048944 2067,277.34738,114.22715,23.58493,53.40525,0.0025275145 2067,564.99097,86.16994,28.77008,64.74625,0.0011333424 2067,611.58636,246.661,27.560303,140.28215,0.0007307578 2067,1.568881,145.65445,19.183361,134.00772,0.0006504186 2067,54.291836,131.96844,35.315174,73.92552,0.00059562066 2067,620.8636,48.769924,18.283081,66.025314,0.0003962033 2067,600.9413,0.26425782,38.205383,72.469124,0.00038825627 2067,3.609341,102.34365,59.17198,212.70221,0.0003548613 2067,0.9518693,70.53102,19.099947,87.96071,0.0001424211 2067,0.78431726,216.12466,21.16949,154.11465,5.9807462e-05 2067,602.3084,29.494062,36.838257,183.81389,5.946893e-05 2067,612.7475,360.07587,26.39917,135.51962,3.3677177e-05 2067,2.959624,211.6175,57.477604,251.46024,1.9907375e-05 2067,0.53378826,310.2773,20.013016,137.3787,1.3031793e-05 2067,0.87921065,390.72134,27.486012,106.45975,3.209786e-06 2067,0.719668,9.463503,14.134422,94.13046,1.8596774e-06 2067,2.012329,11.946042,59.116512,135.5522,4.79196e-07 2067,565.9223,0.0,45.2818,62.198883,6.717853e-08 2067,332.4831,5.406068,46.019104,55.17586,2.7992803e-08 2067,305.18765,5.4468784,46.05301,52.207977,2.5342938e-08 2067,238.17995,2.312995,47.275314,57.871765,1.587113e-08 2067,277.50644,5.3961525,47.483276,51.95327,1.3321285e-08 2068,616.72504,201.66669,22.42163,76.70972,79.69934 2068,221.87971,214.72246,26.429321,58.385635,9.040902 2068,604.9838,98.91433,34.16284,201.00839,0.009790073 2068,276.83643,116.1217,23.884766,48.33895,0.007079039 2068,484.351,226.52725,21.897705,46.408264,0.0035218655 2068,231.74123,207.11348,40.594406,79.081894,0.002470495 2068,607.65936,71.371124,31.487305,96.291595,0.0023569334 2068,622.26733,146.77487,16.879333,51.21872,0.0022384424 2068,28.125418,58.766747,31.554468,63.23076,0.0016701788 2068,442.61386,213.45929,25.336609,49.246094,0.0013349783 2068,619.2666,33.64434,19.880066,69.47368,0.0010604174 2068,617.0618,244.21182,22.084839,95.703125,0.0007692851 2068,31.189486,121.887245,37.88981,78.09872,0.00075247174 2068,623.2316,96.3537,15.915039,48.002518,0.00064028846 2068,1.5356894,222.91771,18.278141,76.884964,0.00026363408 2068,2.0526774,191.27211,34.524067,156.75832,0.00013834106 2068,1.3350415,58.20245,18.423521,74.73689,0.000100565674 2068,601.39966,205.68137,37.74701,217.07367,8.3728286e-05 2068,0.8786442,269.91302,18.61419,138.85538,6.111596e-05 2068,612.64795,357.96536,26.498718,138.11172,3.6503272e-05 2068,1.5962728,71.76208,28.928373,162.42975,1.6825132e-05 2068,4.026587,61.115875,59.689747,257.33163,1.4071081e-05 2068,207.6778,151.8212,80.06973,166.50635,1.0282583e-05 2068,0.45520753,378.43396,19.984797,119.6221,5.779924e-06 2068,2.937448,287.34442,56.696514,187.482,3.950853e-06 2068,2.8061132,16.274206,59.51429,122.07499,1.4713503e-06 2068,466.80292,2.047871,46.43634,58.292458,2.601907e-07 2068,0.7433537,8.822809,15.616702,89.0142,2.332797e-07 2068,325.06464,6.781888,48.321564,52.50081,1.2786136e-07 2068,504.70126,4.501159,44.709564,60.272995,6.032007e-08 2068,359.69226,3.831107,49.294952,56.44767,4.0107093e-08 2068,1.4048634,4.2734313,39.382584,56.489197,3.817393e-08 2068,194.13214,5.742178,46.054825,57.084167,2.723229e-08 2068,299.1072,5.1756625,47.54193,51.528603,2.5282882e-08 2068,109.1809,7.3093443,42.5393,48.914707,1.4147206e-08 2068,387.16772,0.58844405,48.50009,60.69601,1.1288821e-08 2068,438.5571,0.0,46.2576,47.629665,1.0046903e-08 2068,528.98535,6.137878,45.97296,55.680103,9.756198e-09 2068,245.43712,5.28611,46.0114,57.151794,8.236724e-09 2068,142.87384,9.296888,44.261047,51.549805,5.1215023e-09 2068,271.95123,5.1523795,45.98001,55.78731,3.1033751e-09 2068,414.65564,0.0,44.880768,59.710114,2.1319402e-09 2069,223.28235,215.73549,22.667969,45.726456,34.979637 2069,455.8946,218.96779,23.237305,49.12297,18.440872 2069,270.09415,85.29339,30.5943,75.82363,0.013636882 2069,556.4093,121.49008,26.923584,67.16403,0.011776088 2069,438.02182,221.59381,28.749695,45.702087,0.006393106 2069,222.86526,210.92184,35.991943,112.95624,0.0025298633 2069,330.926,214.43207,27.005188,45.91916,0.00070408854 2069,616.68274,113.39766,22.463928,75.77965,0.0006848855 2069,2.1752849,225.59128,31.75755,70.334015,0.0006597898 2069,570.8425,221.1531,31.80243,59.279022,0.00041012687 2069,553.0447,73.758064,44.34857,141.23557,0.00031230607 2069,582.6873,48.713276,55.018616,198.51678,0.00025870732 2069,616.58203,198.59985,22.564636,76.61676,0.0002465013 2069,2.9754412,77.09825,35.746876,198.94237,0.00022808606 2069,616.66974,47.14779,22.476929,84.357704,0.00012339257 2069,617.06134,284.9886,22.085327,81.48758,0.00011060282 2069,291.846,57.845203,24.951813,55.889225,8.0505495e-05 2069,612.6275,374.90674,26.519165,120.21826,6.384054e-05 2069,3.7262762,25.804415,77.12037,144.70973,3.1070165e-05 2069,600.2843,194.80295,38.862366,187.00342,3.0081117e-05 2069,0.8133065,244.65662,21.130789,137.10959,2.6444513e-05 2069,599.7736,14.727175,39.35077,75.71479,1.7450044e-05 2069,198.52432,147.37576,86.14694,215.68945,9.6664135e-06 2069,0.5562272,346.67593,19.82392,130.27841,7.473559e-06 2069,358.94315,152.08934,80.473755,165.79698,6.0925777e-06 2069,2.9252248,209.33638,56.23794,220.24031,4.439777e-06 2069,2.631141,10.956787,41.26683,95.14318,2.636654e-06 2069,0.9003996,440.70895,22.448832,63.24225,2.0191305e-06 2069,1.8437085,35.368034,20.533518,142.90564,1.3901215e-06 2069,536.0208,13.978959,75.52063,68.876595,6.3179726e-07 2069,5.57112,356.27127,78.965195,130.50134,5.9507823e-07 2069,345.27798,6.705723,46.1593,48.974506,2.573429e-07 2069,1.2069849,2.841605,19.892866,45.753765,6.688804e-08 2069,317.22208,6.7544045,48.031097,51.867485,4.3085873e-08 2069,193.48161,5.608988,47.22107,56.639946,3.93243e-08 2069,380.77713,2.6348064,44.733337,54.756638,3.130086e-08 2069,28.739529,1.1327589,45.285275,46.514847,2.7762514e-08 2069,228.04617,1.796945,44.77835,47.07495,1.767374e-08 2069,287.1598,4.0235076,46.997467,47.454792,1.431487e-08 2069,527.8175,4.924155,42.45294,50.89586,1.4010124e-08 2069,166.3056,2.9605696,45.732025,49.72163,5.4322857e-09 2069,252.94202,3.4361835,47.030457,47.584812,4.9811253e-09 2069,420.91675,0.0,65.94623,56.303753,4.3301616e-09 2070,469.8408,224.97688,20.4747,46.75673,70.88907 2070,483.03516,219.93282,20.457245,50.024857,48.67089 2070,208.64404,215.42563,31.930618,64.59726,0.3060089 2070,607.0049,139.79282,32.024963,161.08737,0.00890461 2070,275.42526,106.57762,24.95874,53.690887,0.0058431625 2070,572.76447,91.12241,38.70697,96.727455,0.0035399906 2070,468.52518,199.33043,40.197906,98.46831,0.0032510164 2070,218.21146,213.35797,39.975006,134.09937,0.0010035663 2070,566.2628,28.988737,69.11212,136.41685,0.0008561094 2070,610.32874,72.915054,28.666992,135.80754,0.0007511159 2070,617.1046,251.51639,22.042053,82.80728,0.0004758554 2070,1.7089103,67.90989,21.439932,160.50815,0.00045228566 2070,399.30948,209.99551,39.47708,67.67612,0.00035910457 2070,611.19916,15.032604,27.94751,72.28325,0.00017543382 2070,600.67145,252.73618,38.47522,201.25421,0.0001101482 2070,617.2038,326.9317,21.942871,79.915375,8.355973e-05 2070,0.5768644,230.19096,18.29072,73.94969,4.3163072e-05 2070,612.3778,365.357,26.76886,130.3772,4.019682e-05 2070,1.8360693,9.366238,58.175045,238.53069,3.36223e-05 2070,584.03973,12.133966,46.722717,49.326103,3.0262507e-05 2070,178.69135,145.71863,87.51456,218.57187,1.860579e-05 2070,275.18512,280.05435,79.19696,182.39413,1.7710245e-05 2070,456.63547,148.62917,90.83261,209.7422,1.4915981e-05 2070,1.7037615,154.27892,29.5129,142.92824,1.1348129e-05 2070,1.6143311,7.1069403,39.21246,93.98891,1.0661343e-05 2070,0.6978711,335.66705,19.97613,131.6004,1.02348795e-05 2070,387.007,156.70422,78.66095,171.53531,7.0930646e-06 2070,0.7341325,250.68925,28.678394,147.59416,5.584331e-06 2070,3.0782943,266.88443,57.200798,209.45856,2.4892638e-06 2070,1.4406332,416.3018,35.665527,82.78891,1.3945246e-06 2070,1.2294345,2.5731575,21.439827,47.545067,2.577565e-07 2070,549.1827,7.7061653,57.134216,52.309807,1.4352605e-07 2070,345.4563,7.676436,46.449585,49.69425,1.04090226e-07 2070,157.89276,5.0999675,45.638306,56.39523,8.3683524e-08 2070,318.331,6.586299,47.943176,52.82026,3.018678e-08 2070,193.62607,4.5830436,48.14128,60.267216,2.849753e-08 2070,287.23166,3.9973145,46.99707,45.727085,1.966533e-08 2070,225.41457,5.151973,44.632095,55.332664,1.6394871e-08 2070,449.49554,2.8643653,45.881958,58.012707,8.4923474e-10 2071,485.4948,229.56764,17.877808,46.926712,46.422108 2071,498.6855,227.31604,18.753357,48.411835,22.05706 2071,209.24875,216.10872,35.36696,68.6411,0.14180554 2071,510.38428,227.48045,20.270569,48.130295,0.034663986 2071,269.66464,88.54607,33.22937,72.24684,0.011844366 2071,622.348,271.89804,16.798645,49.978912,0.009300321 2071,609.6507,185.736,29.306824,140.62927,0.0047056014 2071,303.04843,349.50366,41.175964,112.29578,0.0005168026 2071,428.1021,204.29915,36.90268,73.38109,0.00049783674 2071,607.55334,1.2468815,31.593323,116.81282,0.00033728353 2071,600.871,82.11567,38.154785,190.17194,0.0003349123 2071,1.0147884,80.77475,21.387833,139.13367,0.00019176655 2071,173.9856,191.22147,43.427002,96.056305,0.00018726426 2071,611.18414,267.65176,27.962524,162.55045,8.924423e-05 2071,611.69543,363.7056,27.451233,129.87039,3.703762e-05 2071,0.63648766,225.48506,18.289513,70.58171,3.4464138e-05 2071,475.22345,183.16376,75.39874,154.18817,2.15726e-05 2071,184.15451,139.8258,88.02222,232.22348,1.7960268e-05 2071,0.49634033,247.84967,20.176348,135.75479,1.0129966e-05 2071,0.6411548,359.24222,20.89182,102.72055,9.102639e-06 2071,1.4873438,144.55653,34.800274,173.9045,8.810607e-06 2071,412.2194,171.34917,81.44641,159.66551,3.684884e-06 2071,0.72790366,421.7031,17.521578,80.903534,3.1728202e-06 2071,1.7352377,27.44187,57.673058,209.53215,2.0058876e-06 2071,3.1253483,328.30386,57.500423,155.16507,9.1564596e-07 2071,0.78767496,11.589206,22.09356,116.69754,7.2928316e-07 2071,579.3674,3.0407846,47.417175,65.90619,6.7856325e-07 2071,95.70047,8.71366,42.173904,45.655647,6.9179194e-08 2071,123.65582,9.96242,42.64235,46.79514,5.146858e-08 2071,332.09747,7.7731757,46.471252,50.118656,4.3999318e-08 2071,257.20886,6.226543,48.329895,60.003498,3.7693734e-08 2071,232.09517,6.0148144,47.72621,53.37932,3.073511e-08 2071,162.86774,4.406032,45.149246,53.773636,2.761322e-08 2071,306.08908,6.590425,47.65683,52.818745,1.9758572e-08 2071,280.26474,3.8709896,47.524017,49.074387,1.1224133e-08 2071,202.43498,5.36467,45.48813,52.7073,7.4487008e-09 2071,483.48914,3.5237012,43.61133,57.865612,4.7816723e-10 2072,461.9922,217.47061,21.04367,50.28183,98.94558 2072,164.05537,214.31267,21.958954,46.696304,93.15845 2072,501.18344,225.24207,23.80716,62.07596,70.047455 2072,522.2101,221.48842,24.521606,58.684647,36.795883 2072,203.85654,212.9456,33.9774,86.20439,4.62034 2072,538.3336,227.63933,22.778137,46.535507,0.0037278598 2072,153.34486,195.67328,43.754913,87.169556,0.0024663936 2072,596.8091,142.35562,41.16101,160.44318,0.0023671577 2072,621.7111,241.78891,17.435547,56.877594,0.00098732 2072,453.83856,195.34845,41.060516,96.43384,0.0008093142 2072,177.24277,195.3548,75.45903,164.84164,0.00075778697 2072,601.0468,0.92911786,38.099854,71.802345,0.00033824958 2072,201.33049,262.3966,27.357086,59.42798,0.00023439563 2072,610.3514,243.50964,28.795288,146.27246,7.397909e-05 2072,0.7868856,118.31378,20.716896,131.21375,5.530009e-05 2072,610.2737,38.762825,28.872986,159.82309,4.9475522e-05 2072,612.2246,365.70465,26.922058,127.67078,3.6291673e-05 2072,477.71643,132.63925,137.57648,242.11304,3.3188084e-05 2072,295.49396,345.0099,77.96036,145.77313,2.5664216e-05 2072,0.7970296,202.2222,20.519873,128.07394,1.4884565e-05 2072,435.88757,154.66188,96.45557,207.5955,8.106006e-06 2072,0.7113941,321.48547,19.963987,130.73001,7.692095e-06 2072,2.912837,92.81396,56.987293,205.55496,4.8248967e-06 2072,1.4411068,23.982924,20.340807,124.50549,4.518113e-06 2072,582.33124,5.1063414,46.669373,138.72191,2.0708562e-06 2072,2.2630599,10.129832,37.62596,54.167515,1.1911495e-06 2072,3.1035857,253.07573,57.464157,217.19652,1.0197423e-06 2072,1.4276384,417.69827,34.7525,80.82568,9.3217335e-07 2072,4.78209,26.335983,77.8951,138.34233,8.6750003e-07 2072,291.53174,39.191402,25.153748,61.610493,3.0308124e-07 2072,297.46417,9.78057,89.567474,79.29368,4.346125e-08 2072,224.58037,6.0712175,46.129044,55.21169,1.6510793e-08 2072,271.6807,7.2263217,48.799927,58.31187,1.2544085e-08 2072,156.83673,6.2081656,44.838654,48.221962,1.1988339e-08 2072,194.92453,4.7372365,48.36888,55.516205,8.3592555e-09 2073,528.6967,224.74103,25.338135,61.74225,48.739536 2073,286.47696,213.19678,23.081238,50.059723,48.286243 2073,502.6383,220.61902,22.993713,47.756012,44.839024 2073,555.8723,218.51384,23.01532,55.93892,0.2641655 2073,195.1589,205.62128,38.609467,105.268036,0.022295075 2073,607.1517,142.20306,31.340393,123.4812,0.00444026 2073,270.68048,91.17688,25.602692,60.678024,0.0043252907 2073,544.7243,230.64516,24.946167,59.080124,0.003763117 2073,127.86363,196.39273,48.096558,85.352936,0.0009682818 2073,602.30536,1.0737891,36.84131,68.34318,0.0004872413 2073,1.0911491,77.63723,19.732967,129.74353,6.3622945e-05 2073,610.9644,252.74734,28.182251,141.08853,6.0462957e-05 2073,598.9839,0.0,40.16278,236.6272,3.4248285e-05 2073,0.6248674,157.08467,20.549604,134.83864,3.2399752e-05 2073,188.38005,139.75037,88.11125,222.449,2.4995552e-05 2073,609.5215,439.26974,29.625183,64.871826,2.4730323e-05 2073,487.82523,144.90115,132.8201,231.52011,2.3345257e-05 2073,247.64029,115.08615,129.2775,246.89108,1.7194849e-05 2073,585.524,392.6604,53.62268,99.616425,9.2594855e-06 2073,0.67370284,236.30261,20.191727,132.24152,8.69548e-06 2073,0.6696867,359.00208,20.901058,102.752686,7.1763743e-06 2073,116.948845,145.9031,89.743004,210.80527,6.4427445e-06 2073,1.9055144,26.981745,28.71253,123.78411,4.81788e-06 2073,2.8269842,157.36888,57.955753,222.83073,4.390748e-06 2073,0.7287956,422.0182,17.045101,80.721924,3.1622114e-06 2073,2.9850962,298.33926,57.643993,179.38779,1.0365796e-06 2073,4.675013,26.44123,78.48197,138.64825,9.329364e-07 2073,1.2433684,12.18776,18.75518,70.20065,3.8385105e-07 2073,576.76117,2.1440787,44.26703,52.33127,1.4042502e-07 2073,339.30838,8.343703,45.984375,49.0071,6.046035e-08 2073,225.11365,7.5091114,47.21338,53.49398,3.9716948e-08 2073,257.858,8.540635,47.96411,56.705963,3.014811e-08 2073,148.97888,6.1969337,46.098526,51.110332,1.8331992e-08 2073,284.64484,7.2201467,48.901093,57.35414,1.16507e-08 2073,312.16232,6.6645966,48.726562,52.847294,9.9839585e-09 2073,175.35194,6.285477,45.115875,50.434864,7.841777e-09 2073,551.63873,6.821633,45.143494,45.80926,4.1324286e-09 2073,518.08295,3.7277052,43.28131,56.321644,5.3096944e-10 2074,114.46639,214.5834,27.322426,46.28369,96.66161 2074,518.76086,224.41583,19.7359,46.29196,25.088474 2074,576.09143,219.99289,21.682983,57.40677,15.848083 2074,264.12115,216.67352,24.614716,48.6062,14.054097 2074,533.9903,228.27644,26.172241,64.76897,4.4151425 2074,555.7091,217.9606,29.712646,59.96225,0.097438216 2074,268.1995,79.76301,33.070892,73.69619,0.06862132 2074,203.48857,200.74783,39.472977,71.7431,0.0037529499 2074,607.46924,157.50925,31.137878,132.22403,0.0027975114 2074,380.4014,190.55205,24.535736,54.338165,0.00041455583 2074,602.0753,1.4564909,37.07135,68.932076,0.00020224972 2074,183.09203,249.60863,35.792664,87.87688,0.00015249083 2074,100.292015,180.18567,62.093834,105.08569,0.00011757495 2074,525.07965,130.72499,109.099915,235.32707,9.648377e-05 2074,610.4054,47.951714,28.741272,157.43503,7.519814e-05 2074,611.0549,250.20305,28.091797,143.23863,7.375282e-05 2074,341.12344,324.06674,36.88629,75.04776,7.302077e-05 2074,0.99793214,84.3934,19.582865,129.2822,7.1517636e-05 2074,188.96002,143.65617,77.20389,183.8431,4.2630436e-05 2074,0.56612796,163.17593,20.52701,134.34323,3.1815714e-05 2074,609.4415,440.06464,29.70514,64.81625,2.6747304e-05 2074,297.25937,456.9091,40.63687,48.199768,9.586251e-06 2074,585.4062,393.06738,53.74048,99.97522,8.489368e-06 2074,0.6928158,236.8818,20.148142,132.2627,7.3621977e-06 2074,0.6706242,340.97055,20.13619,131.89539,7.1832624e-06 2074,1.8202181,24.897884,29.192661,114.03639,6.642507e-06 2074,113.17995,154.08128,93.37448,222.03575,3.8030294e-06 2074,3.2809148,87.36667,57.33629,210.13577,3.781237e-06 2074,5.033558,28.842325,78.5396,135.39952,2.6050816e-06 2074,564.35004,11.318295,73.25281,155.41774,2.593713e-06 2074,3.2205486,319.6028,57.495155,162.11813,1.5124087e-06 2074,1.5185694,418.0796,35.086334,79.92084,9.490696e-07 2074,2.0208595,10.683128,37.748,49.17313,7.427739e-07 2074,576.73395,3.0314975,44.57434,50.08385,7.082217e-08 2074,339.10056,8.548483,45.314636,49.501534,6.6219826e-08 2074,149.08244,6.6527247,46.28801,50.080357,2.3308477e-08 2074,272.0075,7.877624,49.30246,57.47039,1.8203073e-08 2074,230.95735,7.8433905,48.743668,53.261253,1.3902049e-08 2074,175.10262,6.1021566,46.098145,50.027004,9.474409e-09 2074,298.6939,6.760752,48.037415,52.932163,5.001298e-09 2074,519.2506,3.7774935,41.352356,55.393147,1.1672625e-09 2075,232.39975,219.19818,28.609863,68.91757,99.953094 2075,43.223045,229.49852,66.84266,155.0981,99.86048 2075,212.74998,219.15651,30.5363,70.32466,99.75588 2075,13.380015,241.9662,59.13412,145.00533,99.6374 2075,423.1935,229.42224,28.32248,70.94028,98.68027 2075,408.94128,228.41753,24.894257,70.46193,65.81547 2075,482.1685,214.93584,23.87909,52.014023,0.16527748 2075,9.953884,155.85873,131.88107,283.7059,0.08473428 2075,36.09694,256.1707,28.350151,77.033966,0.007085401 2075,541.23883,329.66278,59.52588,156.86801,0.0061562015 2075,1.3690081,246.0068,21.013748,137.73492,0.006015929 2075,594.2143,406.3396,44.335938,90.12427,0.003201669 2075,401.10648,182.81071,67.6228,165.67033,0.0011425797 2075,196.27803,181.96904,68.88997,142.46385,0.0010558119 2075,371.07205,221.82484,56.84958,156.74083,0.0002785335 2075,598.5914,270.89432,40.06427,198.58829,0.00023506024 2075,2.1575553,113.891655,35.598915,253.77228,0.00019343765 2075,611.23694,62.298412,27.909729,131.57558,8.686492e-05 2075,601.58215,146.4568,37.564514,193.9243,7.7285506e-05 2075,60.90623,268.77512,26.022243,86.804565,3.638781e-05 2075,614.3354,0.22936524,24.81128,45.16194,2.9601653e-05 2075,1.4270394,66.860985,20.250317,132.54266,1.8017981e-05 2075,0.6285083,339.77002,19.68534,142.99759,9.412084e-06 2075,594.7516,6.636084,44.38147,79.293304,4.3618334e-06 2075,2.0664518,293.37015,60.11299,190.92606,3.2040666e-06 2075,1.4813526,415.45944,34.850197,82.86337,9.281567e-07 2075,1.9570305,15.471846,34.72387,73.55505,3.6989866e-07 2075,53.944775,3.353177,45.121464,52.328907,1.6941786e-07 2075,79.97287,3.433016,46.332787,55.474815,7.7709075e-08 2075,23.731758,5.515866,46.294617,52.633198,4.909256e-08 2075,449.33542,4.2730927,47.434906,55.451153,2.1490312e-08 2075,420.96765,6.8248343,48.890167,56.139973,9.534954e-10 2076,453.69043,231.20773,33.83542,84.64496,99.88583 2076,232.14221,214.624,29.378204,75.38992,99.83537 2076,17.029984,225.43985,79.99253,193.31711,99.820564 2076,216.07944,216.349,28.932526,75.03119,99.69282 2076,432.1649,229.55229,32.362732,85.245316,99.64862 2076,1.5936849,187.61475,46.404125,247.5199,5.6329327 2076,519.57153,188.27823,34.032776,88.05029,0.83861464 2076,506.4408,219.08638,21.903381,50.239487,0.15911531 2076,15.688859,252.95607,36.703167,108.90474,0.14503407 2076,410.52518,196.69357,73.66321,153.069,0.009352615 2076,433.22443,80.950264,53.03836,143.16351,0.0005031866 2076,47.116245,244.48943,39.730816,112.87233,0.00050021824 2076,1.478073,301.09042,22.68446,151.7915,0.00032575498 2076,199.60243,168.25797,83.24782,165.0109,0.00030141155 2076,1.657286,118.330475,21.946907,167.6402,0.00012472738 2076,600.81,126.311485,38.33667,195.25049,0.00012174654 2076,583.8947,394.85013,54.541016,95.46466,5.7603982e-05 2076,599.44617,17.309446,39.7005,140.89078,1.1275313e-05 2076,2.2241113,373.49872,56.55842,117.23041,6.414886e-06 2076,607.4911,5.396439,31.655579,55.729435,4.7987305e-06 2076,0.8680135,437.9002,21.902195,64.69986,1.4360061e-06 2076,1.6008903,4.7355895,37.087627,93.46352,2.854803e-07 2076,87.12042,3.527487,45.22307,49.236862,4.980596e-08 2076,52.774944,1.210389,44.006557,51.135414,2.1554271e-08 2076,462.10355,0.0,45.600952,62.13233,1.965362e-09 2076,522.80786,6.323796,46.480835,55.192783,1.7939046e-09 2076,427.8483,5.187373,48.21167,55.37037,1.5889802e-10 2076,404.92386,2.6926239,41.96689,57.306988,3.7786028e-11 2077,221.90761,212.03136,35.952103,84.591354,99.97683 2077,197.80612,216.86746,32.14833,82.27548,99.95265 2077,477.34595,237.13014,41.68164,109.025375,99.90676 2077,450.96173,230.72943,38.824524,114.02927,99.72642 2077,0.0,238.4031,46.130802,203.3227,96.81052 2077,532.8478,193.27017,30.55664,84.22385,56.309975 2077,426.74786,217.46841,21.528503,54.567047,19.632236 2077,367.111,199.19698,21.444885,46.910614,1.3546216 2077,429.07413,200.61566,95.28232,172.66248,0.011419445 2077,605.35,76.765114,32.721985,140.85034,0.008491543 2077,182.19412,180.16464,72.929016,140.39911,0.0024004823 2077,0.0,287.7182,16.152103,64.58966,0.001515718 2077,515.8469,158.01279,78.44653,176.38367,0.0012954664 2077,585.8476,93.87459,52.564636,266.773,0.00047782087 2077,0.0,337.37964,16.427433,65.41885,9.263244e-05 2077,610.952,294.1208,28.194641,138.74084,6.474744e-05 2077,0.01716634,364.93924,58.743954,121.8266,2.0652282e-05 2077,585.4755,389.8759,53.671143,103.05185,7.909234e-06 2077,609.5706,3.1282,29.57605,58.239235,6.6376183e-06 2077,0.61575276,432.17984,22.44303,71.04074,5.48003e-06 2077,2.1689324,5.444209,38.6689,88.56369,9.0183374e-07 2077,88.15767,3.423908,44.34047,47.029327,6.340434e-08 2077,53.920082,2.4478776,41.98848,49.321037,2.804266e-08 2077,114.4789,2.0594223,47.665314,51.709553,2.0125192e-08 2077,535.1448,5.8515887,48.25177,51.743607,1.0437845e-08 2077,456.56152,1.6686589,47.474365,60.91888,5.798775e-09 2077,428.37817,7.62766,47.28366,53.14876,4.1699807e-10 2078,221.54742,215.56001,39.035828,89.05974,99.98039 2078,183.6795,217.93855,37.214767,87.466415,99.97539 2078,491.16376,236.1084,52.456726,150.4136,99.835976 2078,531.4156,250.69568,51.30017,136.74606,99.82644 2078,422.44598,221.00604,25.36029,64.23892,24.636961 2078,547.7139,194.78491,44.32617,110.26126,5.9652305 2078,480.90674,173.26443,114.80176,243.45468,0.12357256 2078,456.69168,237.38351,22.535248,53.561707,0.10861384 2078,512.20953,177.09651,46.78662,174.02553,0.02303806 2078,508.82736,278.13828,25.408417,78.21796,0.017958274 2078,606.6961,139.37808,32.098206,143.70248,0.010099666 2078,165.84991,192.7067,83.0676,136.83832,0.0012027002 2078,375.19553,146.02092,137.50522,217.56517,0.00039783595 2078,2.8007991,160.09758,35.553745,181.60329,0.00036036773 2078,387.3756,229.2998,40.610413,131.01767,0.00021388345 2078,600.875,275.8028,38.271667,183.89206,8.603963e-05 2078,609.39764,439.85245,29.749023,63.0206,2.2906825e-05 2078,1.2230875,239.95808,18.83797,132.54915,1.377511e-05 2078,585.41095,391.26764,53.735718,102.122955,1.2415897e-05 2078,610.2379,2.8032846,28.908752,56.059414,3.505567e-06 2078,1.3882259,286.19257,31.886295,175.45993,2.088476e-06 2078,1.0323625,443.36804,21.734482,59.389587,1.0882403e-06 2078,3.0075228,394.0416,56.33314,98.56534,6.175974e-07 2078,2.172567,7.2472234,36.134647,90.61814,2.3001635e-07 2078,74.21699,5.510742,46.723038,46.50747,2.2806526e-08 2078,469.4083,3.177264,44.31729,54.47952,7.3835726e-10 2078,427.023,8.762437,47.58319,50.914852,4.3843787e-10 2079,175.44781,219.69435,38.95987,95.528336,99.98301 2079,212.46584,216.52048,43.383698,98.55075,99.97576 2079,269.49857,218.0919,21.228333,45.474472,98.47371 2079,258.3326,217.49797,19.417511,45.164017,86.549934 2079,603.86633,216.80446,34.10388,81.271286,85.99166 2079,427.22824,220.93225,28.042755,66.49777,68.48143 2079,556.1286,191.0956,36.092834,88.22276,66.19646 2079,601.73737,165.13734,37.4093,266.09808,55.991554 2079,589.2311,221.84666,29.458008,59.77495,25.400942 2079,610.4145,293.56354,27.615356,75.64316,0.06796812 2079,607.9501,338.61588,31.196594,104.65311,0.03201337 2079,620.08295,332.96945,19.06372,55.075104,0.02526958 2079,494.5114,216.21883,25.743286,50.16304,0.016813187 2079,587.9576,379.1903,51.189087,111.92758,0.0044758567 2079,615.3627,408.3497,23.783997,65.725586,0.0021832874 2079,303.37354,224.3797,34.415375,73.36047,0.002182486 2079,149.4615,184.11444,94.40814,163.06552,0.0006963571 2079,244.8769,180.5595,58.47902,108.9012,0.00031186827 2079,404.85034,177.64534,73.71393,161.04381,0.00022117067 2079,214.1276,143.4375,142.30753,202.20789,4.747132e-05 2079,0.94352543,260.8748,18.054436,121.66745,2.7185359e-05 2079,1.336272,296.4341,31.339167,168.75299,5.5323308e-06 2079,609.08075,3.6467838,30.065918,58.021255,3.6855376e-06 2079,1.0679647,443.34637,21.639885,59.205566,1.359407e-06 2079,2.391146,6.1638317,39.312584,89.83922,1.150602e-06 2079,2.8246665,390.09818,56.30167,102.56079,7.7463034e-07 2079,418.7727,5.1916504,48.42917,56.33925,8.327324e-11 2080,124.43283,218.1876,45.898926,111.54033,99.98534 2080,165.88493,211.94289,46.263016,115.51631,99.97536 2080,228.81105,215.68686,22.408875,49.382782,99.61511 2080,243.53279,215.07323,21.530167,50.504593,98.35536 2080,423.48465,220.22246,27.408081,76.99278,42.831787 2080,579.2185,193.81812,28.478882,56.469757,29.710123 2080,386.69812,224.94485,22.105408,46.207245,23.490038 2080,459.02762,231.56293,26.204437,61.46988,18.0865 2080,492.5621,214.28116,30.457794,72.99341,0.2802359 2080,603.7312,149.7127,35.154907,180.21783,0.0011421854 2080,279.97528,216.286,41.500977,123.20302,0.0010708175 2080,119.19792,151.47968,135.74782,224.83865,0.00083372806 2080,497.97366,189.62526,60.23465,114.506516,0.00042933843 2080,214.477,185.34271,58.300705,100.82913,0.00034801563 2080,1.8378866,152.18234,28.294373,168.60126,0.0003377538 2080,367.4377,169.23676,81.56198,169.22815,0.00030204002 2080,610.36,308.2074,28.786682,145.9714,0.000102912614 2080,1.16955,253.89363,19.093601,118.64476,3.5226727e-05 2080,609.11755,442.66882,30.029114,60.81671,2.7414677e-05 2080,585.457,392.8219,53.689697,101.88812,8.516208e-06 2080,0.63252527,348.4621,19.722189,130.38074,7.642184e-06 2080,611.26697,0.9133692,27.8797,55.560604,5.529862e-06 2080,3.3461866,319.8455,56.41302,160.75162,1.9210206e-06 2080,1.0469116,443.74844,21.654514,59.036835,1.0540608e-06 2080,1.9031755,7.4136686,37.31877,85.845726,2.1043963e-08 2080,496.92044,7.5201907,45.54886,47.321712,1.3310694e-08 2080,383.4611,6.0040855,67.42288,57.56188,3.848357e-10 2081,33.152405,213.84454,68.95099,142.85785,99.9781 2081,93.306145,211.90607,63.33251,139.05997,99.97677 2081,198.8548,214.31613,27.029526,59.594696,99.7374 2081,183.77951,214.62231,25.367004,58.21826,99.61721 2081,371.91382,223.39545,24.123627,54.114594,99.27077 2081,414.8013,222.57675,33.04413,90.06775,99.1193 2081,455.26044,231.99077,33.933258,82.58522,98.70091 2081,591.3902,199.08919,44.480286,135.2783,98.50217 2081,353.1055,223.14445,24.737,47.222153,83.7722 2081,398.78064,225.68503,25.363983,67.50235,74.23378 2081,499.60443,208.95917,29.183105,81.2496,14.330549 2081,602.58124,253.63947,26.552734,64.79303,0.046250567 2081,260.68256,213.0318,27.862,61.659058,0.012147272 2081,9.297188,146.9299,138.55045,270.22183,0.011227059 2081,539.75134,122.04302,99.242676,262.0919,0.0009744708 2081,322.89496,137.57968,132.91989,228.47018,0.00083087455 2081,156.77715,196.61115,23.86084,46.655502,0.0005826195 2081,403.83792,152.18402,142.44516,236.25018,0.00022857037 2081,599.1978,251.95699,39.933655,228.91673,8.61462e-05 2081,161.28972,163.76448,91.84323,172.6834,4.71893e-05 2081,2.2292824,161.52617,34.632034,184.39107,4.1010942e-05 2081,610.54266,2.9923797,28.604004,67.74329,3.7556492e-05 2081,609.3821,442.70944,29.764587,60.553497,2.2704427e-05 2081,1.1018523,279.44766,33.849102,185.06293,3.9889096e-06 2081,0.99542725,444.06943,21.783154,58.985992,1.2777172e-06 2081,3.1641748,395.8352,56.34446,97.87579,6.022284e-07 2081,55.271324,232.37927,31.891998,85.16824,2.0530162e-07 2081,408.30225,9.014271,46.38022,53.082058,7.248669e-09 2081,1.9457682,11.510277,39.46499,88.88996,6.3222814e-09 2081,380.882,10.415778,44.665375,46.63479,2.003942e-09 2082,13.255159,212.12117,91.85066,193.43773,99.95567 2082,164.00536,216.90611,32.535614,76.35747,99.94823 2082,429.10132,223.32881,44.328186,108.63258,99.880585 2082,142.24669,217.12955,30.856705,72.907684,99.86874 2082,357.6009,226.12094,30.656342,65.59387,99.76885 2082,479.9924,233.1924,41.993073,103.94057,99.72317 2082,382.8669,227.14401,28.168243,63.416046,99.49312 2082,529.26544,196.14151,49.700134,113.21625,65.47815 2082,0.8527466,222.27045,23.804907,121.7258,0.2985131 2082,230.75467,220.76768,32.64923,69.847275,0.07594213 2082,129.24518,201.18938,26.665268,54.42433,0.0487829 2082,248.39735,214.66385,24.693985,50.379974,0.02336548 2082,611.4376,188.5513,27.709045,95.57318,0.018772526 2082,455.08136,203.29161,99.90631,162.91606,0.0012297212 2082,111.36317,179.20332,88.166695,164.36034,0.0007109709 2082,33.7846,250.19272,26.0788,65.5585,0.00050148304 2082,329.77267,140.43024,139.32974,243.46603,0.00023887285 2082,1.562339,90.3258,37.38359,256.6234,8.657629e-05 2082,607.31036,7.234564,31.836304,57.75006,5.2272862e-05 2082,609.1822,442.24615,29.964478,61.309418,2.2727523e-05 2082,49.195015,232.79883,39.558487,126.856964,1.1471675e-05 2082,0.79572433,326.19165,33.329803,163.19543,7.888895e-06 2082,0.962548,443.1361,21.782427,59.806915,1.4744435e-06 2082,0.8018156,6.4405894,21.272411,64.06101,1.9561984e-10 2083,103.27371,222.83069,36.550934,89.1474,99.9363 2083,130.96715,220.563,35.815018,93.02449,99.903534 2083,469.2422,222.73676,49.051636,148.29675,99.88037 2083,542.09924,240.49011,48.176147,124.62891,99.860115 2083,394.41504,228.8894,34.5679,79.520355,99.674835 2083,419.01395,230.477,31.15387,72.90376,98.62201 2083,493.3099,229.40576,27.35025,71.98694,2.9347663 2083,556.6302,255.3237,27.454224,63.241577,0.32717752 2083,596.9676,299.45575,36.476013,71.47302,0.25454754 2083,2.1608927,209.18944,33.090744,81.22328,0.21619743 2083,592.31433,206.51128,45.49872,148.90337,0.2116946 2083,226.12561,227.27992,34.03415,68.327194,0.024252634 2083,545.9708,299.6427,26.602722,63.98413,0.015096014 2083,496.88657,171.75087,137.45029,247.55455,0.0048704175 2083,79.08017,184.98666,86.74774,168.62808,0.0014129272 2083,367.3079,184.03316,92.45419,173.53185,0.00010158403 2083,1.6001327,77.25053,33.03476,194.92075,9.187758e-05 2083,0.9301091,251.61006,19.880135,99.916245,6.302004e-05 2083,596.49243,15.977295,41.30243,77.225105,5.0867646e-05 2083,584.5304,385.18726,54.526367,105.28729,4.5825458e-05 2083,609.2108,439.8959,29.935852,63.815735,2.3376539e-05 2083,0.41371256,304.01688,19.994173,148.27377,1.1387157e-05 2083,2.7003663,229.09871,53.203403,230.2252,9.38192e-06 2083,0.814349,441.73172,21.869204,60.322296,1.4795961e-06 2083,2.7606544,392.13953,56.201015,99.61847,9.358397e-07 2083,1.6237565,12.109336,38.405212,81.39678,1.5642424e-08 2084,72.45022,212.66316,51.47361,139.65587,99.96329 2084,568.41266,221.97745,65.77338,229.82278,99.93982 2084,26.051409,221.97195,62.251694,125.02908,99.93144 2084,474.00595,232.90219,39.53055,104.19934,98.85068 2084,499.64505,226.94597,43.613495,106.843124,74.43338 2084,137.79468,205.49248,25.645248,59.090378,69.82651 2084,331.9134,193.10258,25.889893,57.323593,3.4909227 2084,592.7133,311.6839,27.392822,56.81436,0.1088258 2084,606.9603,270.7142,31.948914,159.4042,0.049997143 2084,246.06917,216.06268,31.570114,66.68753,0.019864695 2084,16.639402,156.44328,144.87447,259.60883,0.005529617 2084,580.3663,249.74889,38.7912,110.6313,0.004875967 2084,517.6061,275.18674,23.016113,57.513977,0.004134462 2084,599.72687,55.34094,39.4198,258.123,0.00016620629 2084,581.99744,358.26236,56.70862,130.36673,0.00014234247 2084,431.4016,141.78735,135.65607,252.74667,0.00012130452 2084,597.14557,11.88295,41.843994,82.49561,5.640423e-05 2084,608.8024,435.4068,30.344238,69.154785,3.5029043e-05 2084,1.7633545,205.26122,33.73305,151.17436,3.4932596e-05 2084,1.1320101,286.2272,32.97715,186.23938,5.6251893e-06 2084,0.72340333,440.99344,22.257994,61.161377,4.8450097e-06 2084,3.0883758,394.06943,55.88803,97.560486,1.2167853e-06 2084,1.5605925,13.787904,35.974693,188.5152,1.1373527e-07 2084,1.1942179,4.531882,22.730453,67.47446,3.018816e-08 2084,366.46857,0.0,50.08481,65.80728,1.0961971e-12 2085,163.42468,214.43631,27.069641,58.75537,99.15781 2085,604.15735,252.73245,34.98932,137.82156,82.1662 2085,361.7464,218.85847,22.911774,48.443527,65.82644 2085,342.32385,189.03242,29.33783,69.78703,0.92089 2085,0.0,249.66365,38.02281,150.5454,0.15814337 2085,255.85329,216.24245,26.374527,66.14284,0.07113252 2085,350.96942,200.55673,42.300568,104.29611,0.023670182 2085,616.3559,286.6759,22.790771,58.527252,0.015795788 2085,620.12897,258.97113,19.0177,53.68692,0.015466614 2085,151.63554,213.7202,22.825363,50.217422,0.0063309264 2085,0.9008643,321.99783,23.334467,60.570312,0.003231161 2085,242.37064,207.18665,50.9675,123.86432,0.0008505026 2085,0.08259847,276.9768,14.646308,51.00995,0.00033852033 2085,398.11407,84.44258,35.443024,91.804825,0.00020676259 2085,609.9076,345.92783,29.239075,150.35928,0.000104880346 2085,333.45242,159.0599,83.9509,200.41473,8.710882e-05 2085,563.56274,202.0982,75.58392,253.11353,7.742036e-05 2085,0.7297868,372.00797,19.137884,87.00021,4.58523e-05 2085,1.0966316,105.3056,18.547844,75.48979,2.8925093e-05 2085,611.09973,125.26042,28.046936,155.18379,2.7237675e-05 2085,2.7569532,171.85173,92.712616,265.91388,2.664089e-05 2085,0.5715975,159.8601,21.851576,174.39325,2.5888898e-05 2085,144.82812,179.19476,72.29413,142.09561,2.3811835e-05 2085,387.8897,60.851208,78.909,202.77727,1.9080395e-05 2085,585.34314,19.688852,52.063538,92.89524,1.302532e-05 2085,498.87195,50.989403,76.13312,213.5986,8.526025e-06 2085,2.9895444,344.61737,80.02523,138.47885,3.480098e-06 2085,1.1245443,407.94254,35.26886,90.686005,1.6688937e-06 2085,1.1352328,49.184746,30.809494,167.71121,6.177422e-07 2085,504.66797,8.007259,46.344727,51.288334,1.0050779e-07 2085,530.2618,7.1087227,45.47888,53.05813,5.7197102e-08 2085,466.75882,6.427832,64.308136,48.001705,2.8616762e-08 2085,559.08606,8.213962,44.3844,45.59477,7.040568e-09 2085,1.2368538,10.672091,37.097366,82.86372,6.5794885e-09 2085,436.37656,4.673109,44.393463,57.171165,1.1023399e-09 2085,398.10815,7.0892744,49.00592,53.08376,6.0387695e-10 2085,374.45612,2.1051302,48.70749,49.601513,1.488276e-11 2085,341.8386,3.2959604,45.727417,62.096672,2.9036597e-12 2086,123.82995,212.9949,31.135353,70.88849,99.35136 2086,145.03745,219.25365,25.15541,63.99968,99.33032 2086,376.42734,220.21613,25.886932,59.527985,99.2076 2086,355.07178,222.12831,24.798035,53.436203,18.551437 2086,265.55606,212.61673,25.743866,52.504486,0.20418698 2086,242.70691,220.28029,27.669098,65.601,0.09967255 2086,339.56876,191.3308,31.457672,69.25539,0.019873902 2086,398.87033,84.02767,31.878845,83.13171,0.018314656 2086,345.52908,208.45131,42.77536,117.70006,0.01012104 2086,87.51952,60.094326,36.85698,78.01697,0.00029440885 2086,1.303938,162.71466,19.620523,135.2807,0.00021174492 2086,102.09082,180.29526,75.88097,144.17584,0.00020106006 2086,393.74942,65.36422,58.84787,157.5073,0.00015003666 2086,0.47022706,304.19446,18.808025,74.058014,0.00014078076 2086,327.2906,158.92177,87.31088,204.96178,0.00010523763 2086,582.3756,64.16793,55.87213,275.6582,9.627861e-05 2086,609.50977,179.52185,29.636902,148.31342,7.7694756e-05 2086,609.91565,62.064228,29.231018,160.88495,7.628435e-05 2086,611.42255,328.3347,27.724121,131.71329,6.281938e-05 2086,3.6779087,107.644394,60.376846,222.69121,6.0535713e-05 2086,1.3112012,222.05855,28.485382,141.12477,3.2076015e-05 2086,351.65042,131.76756,25.456177,65.314285,3.0327456e-05 2086,609.22766,443.50345,29.919006,60.064575,2.8309092e-05 2086,0.93752444,328.37622,28.406746,144.2728,1.2229971e-05 2086,585.01575,392.65143,54.13092,102.02222,1.0420792e-05 2086,2.879694,245.14368,58.273605,203.76956,4.6571877e-06 2086,583.9082,0.0,54.67102,137.57771,2.7908065e-06 2086,0.77179366,422.55594,16.827322,79.361206,1.9110619e-06 2086,1.6930014,20.589308,57.781948,105.012085,8.2576213e-07 2086,452.59714,33.95284,81.38284,235.3767,7.5570375e-07 2086,3.1804981,397.0208,56.29396,96.68826,5.510171e-07 2086,1.2928694,56.79038,20.583426,141.5148,4.410016e-07 2086,443.91058,5.460493,46.64917,52.795616,3.362662e-08 2086,0.25439942,6.286196,40.401455,51.626617,2.9868403e-08 2086,415.6778,6.575295,46.463898,56.83742,5.2838817e-10 2086,388.59393,4.1798844,47.53363,48.41599,1.5272593e-10 2086,340.4707,3.462728,47.402863,61.128864,3.1160293e-11 2087,100.468765,218.43571,36.15158,80.15556,99.94623 2087,128.70279,224.27893,32.054382,74.18002,99.85508 2087,391.46506,223.39177,31.409882,71.734695,99.72867 2087,362.36395,224.526,32.454926,72.54355,94.56279 2087,259.59833,222.85951,21.590546,56.21678,2.820947 2087,401.47675,66.88537,38.76947,104.624794,1.0480052 2087,243.81927,225.37766,23.858643,56.63849,0.24830182 2087,229.92516,225.64047,21.709274,51.52359,0.154438 2087,342.56732,215.57193,35.159637,77.86307,0.022811137 2087,53.908855,46.170246,32.627705,77.41493,0.020670887 2087,70.30699,49.39917,33.24193,88.05974,0.0072335694 2087,240.99443,223.69214,47.452774,121.30615,0.004289791 2087,76.49141,197.22675,84.917694,135.25314,0.0005605922 2087,370.02466,195.48463,72.97296,146.42506,0.00031451398 2087,611.6886,341.80078,27.458069,139.16287,8.041818e-05 2087,611.5564,258.2391,27.590271,123.65906,7.8461104e-05 2087,1.1610425,184.89365,20.133326,136.74734,5.0312046e-05 2087,3.9548438,143.0457,59.8,209.90489,4.8119386e-05 2087,605.3689,0.08325195,33.77777,64.15799,4.219007e-05 2087,609.2569,442.31683,29.88977,61.257507,2.6696998e-05 2087,610.34357,21.81595,28.8031,158.85448,1.7374623e-05 2087,1.6676157,110.10555,27.317795,154.82477,1.2146085e-05 2087,408.5368,46.85359,81.100555,211.86827,9.530609e-06 2087,0.6745451,338.23178,20.058119,134.22827,9.5230125e-06 2087,600.3792,102.74186,38.42578,202.71524,8.291558e-06 2087,2.7997298,23.2821,56.17828,95.463455,4.8946094e-06 2087,19.818796,29.098587,111.03454,191.49246,2.1816022e-06 2087,0.9729696,443.51846,21.816963,59.554626,1.6332372e-06 2087,1.216211,58.47506,19.10405,133.29178,1.5364194e-06 2087,3.3731284,312.0122,56.931973,168.95972,1.4715357e-06 2087,1.0951099,13.443396,16.718311,74.12679,1.4006557e-06 2087,1.6233594,5.7059245,46.617294,48.042183,1.8870101e-07 2087,458.33856,2.9336507,46.298218,52.870914,2.4171691e-09 2087,430.3577,4.077622,44.92163,51.22149,1.4431815e-09 2087,380.74814,7.1624904,45.76416,50.394295,1.7544213e-10 2087,340.01978,6.512917,46.665833,53.339695,1.5869812e-10 2088,72.61348,213.48865,41.86113,89.0639,99.935776 2088,99.863075,219.56305,36.3619,81.14017,99.86052 2088,414.729,222.31339,33.83835,87.797516,99.7572 2088,390.03027,226.7737,36.058594,81.59813,98.32757 2088,203.21657,217.97758,21.445786,60.881577,73.214134 2088,216.77812,218.6855,23.435394,62.916733,68.77091 2088,239.8617,215.23532,22.875214,62.09424,15.406763 2088,255.65956,222.4611,24.022293,58.390488,0.0138298925 2088,415.29578,42.955494,39.974243,110.56326,0.0028510953 2088,12.410888,52.55464,23.13958,49.44165,0.001244993 2088,229.83107,214.79274,42.82866,139.86171,0.0008376348 2088,394.79526,205.78622,81.62048,138.46179,0.00069465645 2088,1.9656397,8.136908,61.242615,113.70831,0.0005373865 2088,35.619556,183.12729,105.547195,167.4317,0.00037968945 2088,28.089643,61.744358,20.072393,45.26192,0.00024391823 2088,612.0001,309.2129,27.146545,134.86243,5.729367e-05 2088,1.0344466,235.47586,20.063574,124.7038,5.0319675e-05 2088,609.0627,439.67688,30.083984,63.36682,2.9566449e-05 2088,158.34508,152.33107,130.30205,213.57631,2.5631194e-05 2088,1.3667481,155.29623,19.299242,128.1719,1.384041e-05 2088,0.788492,301.4904,20.039576,135.2604,1.2176368e-05 2088,584.9931,394.52863,54.153564,100.32312,1.0641941e-05 2088,602.96234,85.70929,36.184326,198.21762,8.181432e-06 2088,3.3787713,236.33302,57.982166,210.94063,6.4271208e-06 2088,608.7664,0.0,30.380249,64.19797,6.238618e-06 2088,0.8116602,385.70798,19.411598,111.381714,5.817683e-06 2088,408.628,17.133465,81.29666,206.60112,2.7420213e-06 2088,1.496036,10.271426,15.022772,84.308235,2.2399327e-06 2088,451.97214,11.311146,42.293182,118.72882,1.8869752e-06 2088,1.9714185,34.48125,29.821209,167.95839,1.2224918e-06 2088,3.3019922,395.6728,56.19621,98.03223,6.9676605e-07 2088,26.657516,8.3026905,48.13829,48.44754,1.2814212e-07 2088,430.79718,5.8188934,47.1586,56.470627,1.0465235e-08 2088,468.23953,4.5430827,44.337067,60.285667,3.7103733e-09 2088,351.6746,7.406138,47.79416,49.415165,8.7666047e-10 2089,23.40511,206.01303,55.654125,115.98471,99.91253 2089,64.57772,216.81105,41.842712,97.90712,99.912 2089,418.17838,230.60959,46.54123,107.33197,99.908485 2089,448.1591,230.02141,44.393585,105.910385,99.89588 2089,184.17805,211.40384,24.795837,72.05356,82.63462 2089,206.30635,212.05692,31.84996,70.490204,54.038757 2089,158.52045,215.67961,25.982803,66.80519,53.990356 2089,226.1543,212.97792,28.096756,71.60478,0.08014969 2089,202.91818,212.78986,56.027832,147.10718,0.0011409922 2089,402.3082,165.721,135.54068,247.57155,0.00077566184 2089,11.056237,150.3348,113.475746,232.4326,0.0006016218 2089,583.29065,392.73428,55.181763,96.97449,0.00010581963 2089,612.8428,0.0,26.303894,46.82953,3.3858352e-05 2089,1.3844426,211.23245,19.152855,116.34244,3.3858025e-05 2089,0.58032554,282.7212,19.996675,137.01184,1.5374811e-05 2089,607.90094,0.0,31.245728,151.38324,1.36180915e-05 2089,424.7743,2.6420898,51.84613,162.05809,7.881976e-06 2089,0.59390056,372.58487,20.001825,123.227844,5.173585e-06 2089,462.91788,0.0,38.011353,116.3393,1.224417e-06 2089,3.1165366,395.54633,56.167007,97.78519,5.167803e-07 2089,422.6314,0.0,129.60522,219.13321,2.4449741e-07 2089,2.1899529,25.322435,34.48265,164.81818,1.2288828e-07 2089,1.0972934,7.0681286,21.592945,58.672005,1.1503111e-08 2089,482.33282,1.0535352,47.231262,59.34036,6.6498242e-09 2089,355.77106,7.7025213,50.591614,48.062458,6.394537e-09 2089,423.12366,3.8031154,46.317383,55.667862,5.17879e-09 2089,321.21927,4.2024007,46.067993,53.911503,1.5283201e-10 2090,521.6947,235.66833,54.92621,166.79355,99.965 2090,6.752575,213.53629,57.243675,133.10342,99.92888 2090,475.61044,243.74263,59.515533,153.9229,99.86456 2090,124.677025,221.24823,37.336967,93.1308,99.837456 2090,45.810295,225.55354,51.04223,117.07234,99.76437 2090,163.70552,220.2256,32.3042,93.15047,98.46548 2090,191.64969,217.08022,36.40222,99.390274,81.403755 2090,232.66133,218.5475,25.378922,56.148666,24.834888 2090,497.07178,244.52626,30.290344,77.51048,0.6446233 2090,477.29935,204.68607,133.80978,240.21466,0.021508388 2090,135.11034,198.39761,87.98576,143.82343,0.004611459 2090,1.8445207,218.88885,18.713625,138.71426,0.0024223288 2090,7.5724125,169.5356,130.93707,253.5352,0.0015450639 2090,493.8164,283.8963,28.749207,79.7793,0.00012989795 2090,605.01697,0.0,34.1297,68.10569,3.9646155e-05 2090,1.570791,312.18686,33.47633,177.60504,7.922022e-06 2090,599.1339,407.38205,40.012756,92.15869,7.0529973e-06 2090,1.0160458,444.40094,21.814474,58.863342,1.5425795e-06 2090,484.38226,0.0,50.221436,159.05644,6.911642e-08 2090,2.0144434,17.140274,36.89186,79.36551,3.2009602e-08 2090,367.90604,1.894004,47.81961,60.32403,2.8208411e-09 2090,342.05777,5.3851924,46.672455,54.011005,6.346853e-10 2091,84.18214,218.37401,51.362755,115.73125,99.92065 2091,133.01125,216.83131,44.469177,123.101456,99.890305 2091,15.47475,223.82967,63.034473,147.4464,99.78119 2091,170.74467,206.55072,50.95439,136.62473,99.75937 2091,221.90683,214.57959,26.775833,70.75427,71.46777 2091,240.37704,213.72847,24.93753,64.8174,70.750244 2091,0.0,219.6966,28.512722,148.4974,24.118786 2091,161.87599,207.0325,26.742874,68.797516,7.160188 2091,610.5102,306.83594,28.064941,77.03183,6.291758 2091,259.77942,213.11559,29.743958,76.22011,0.5113263 2091,613.0973,391.47937,26.049377,90.93381,0.028752955 2091,196.23605,267.60312,23.727386,62.849,0.009520305 2091,593.59735,274.76538,45.032104,202.02396,0.008052328 2091,126.81561,163.0974,133.58432,233.43172,0.0008747906 2091,39.504025,176.8681,148.40948,245.49744,0.0005388701 2091,601.2725,0.0,37.874146,69.9013,0.00020399505 2091,36.98353,262.5552,29.090279,78.48755,0.00010002574 2091,550.08496,0.0,89.06171,177.38626,1.6049908e-05 2091,0.8368441,313.06683,33.73785,180.32834,3.9186725e-06 2091,1.4261019,53.14879,35.74643,234.12212,1.2481283e-06 2091,1.0872966,444.6706,21.815765,58.759735,1.2113853e-06 2091,2.611696,20.69845,37.06069,77.08521,5.2066656e-07 2091,361.9721,0.2924121,46.614075,63.92665,1.8824297e-08 2091,386.52902,0.0,48.970245,68.518585,7.100387e-10 2091,169.71725,0.37950847,51.82228,64.49138,1.7459624e-10 2092,3.6570394,223.75737,65.90324,176.28362,99.94347 2092,56.16271,214.42221,56.6497,182.44717,99.86417 2092,100.01056,212.45374,60.73401,171.6449,99.6691 2092,194.08057,221.30438,30.375275,69.8389,82.390144 2092,215.48224,215.74733,31.49266,69.245224,62.413223 2092,288.07275,217.33739,18.499084,45.405807,11.31293 2092,251.34935,216.71866,25.35704,59.26053,1.2428268 2092,128.01292,290.9549,33.955627,86.01697,0.9913899 2092,2.2968295,225.68214,20.56365,157.11089,0.15715072 2092,90.73908,289.06714,26.92553,84.954346,0.11319812 2092,10.779428,192.74393,149.94258,245.23984,0.08305637 2092,109.54011,255.85287,26.388313,74.17914,0.0052196686 2092,77.56819,254.6854,26.602852,74.39038,0.004554 2092,30.363008,274.17764,25.79946,75.17175,0.00034501703 2092,603.6482,6.7239714,35.498474,64.18911,0.00029002206 2092,282.26553,162.91087,89.899414,192.18071,6.896891e-05 2092,609.38477,440.92667,29.761902,62.794067,1.9277013e-05 2092,1.6849186,329.05392,33.786354,162.64978,2.5830393e-06 2092,0.96436447,443.62277,21.78348,59.516235,1.3475011e-06 2092,0.8385954,55.225613,36.3186,243.99289,1.3005194e-06 2092,2.1339111,26.247923,36.655354,68.1907,4.716327e-07 2092,359.3817,0.42467123,48.31909,62.136917,1.4082397e-09 2092,166.19778,0.0,49.61664,65.33477,6.886921e-10 2093,162.52606,217.66727,36.35634,77.57361,95.01681 2093,139.28026,222.88602,33.5963,80.28204,59.861267 2093,9.247688,210.58337,29.356289,65.95441,0.61112434 2093,27.482187,212.69644,25.895239,50.03534,0.062311098 2093,52.51143,218.60933,26.26458,51.9402,0.050093785 2093,336.7344,199.29263,24.581085,47.63542,0.044320345 2093,113.875824,226.41995,38.60161,80.5517,0.015739739 2093,130.7598,207.00308,71.697296,144.81833,0.014548571 2093,615.4012,146.69427,23.745483,108.63797,0.0033834626 2093,186.04579,228.91133,31.785522,82.271866,0.0026244372 2093,350.3257,143.6336,38.480194,75.98302,0.00254995 2093,212.76163,221.44324,30.724075,73.13672,0.0024250122 2093,598.5269,58.243828,40.190125,226.97256,0.0009910499 2093,605.80145,4.5509443,33.1698,124.91563,0.0005700574 2093,2.170205,197.67847,21.063103,129.34018,0.00029324432 2093,616.672,308.03787,22.47467,81.756714,0.00020095981 2093,4.0969744,183.26193,55.979916,188.97253,0.00019722535 2093,257.5439,154.31021,87.64203,205.17181,0.00016313682 2093,587.1883,168.46234,51.572083,230.29535,9.1190836e-05 2093,611.42676,362.53342,27.71991,131.82846,5.544848e-05 2093,0.6420353,370.88248,20.48887,123.5968,3.3924967e-05 2093,1.2339665,90.27756,21.108349,166.15073,1.0093321e-05 2093,1.1448349,281.09448,20.735378,145.89114,3.6385793e-06 2093,2.7201238,316.0479,55.32144,166.06802,3.487201e-06 2093,1.5075301,40.13271,18.876913,61.252094,2.4028036e-06 2093,2.160638,26.530706,56.386635,91.70328,7.8203806e-07 2093,579.131,4.705762,46.71112,57.0957,4.8047457e-07 2093,1.5307772,13.60806,23.45773,54.44804,5.5679152e-08 2093,285.67734,3.2663543,45.29416,56.643375,1.2523448e-09 2093,325.98682,2.064886,46.85788,58.165535,9.506027e-10 2093,390.9904,2.4387777,47.786713,55.033176,6.002813e-10 2093,131.28024,0.0,48.299713,65.159546,1.18735e-10 2093,357.83945,0.0,51.34674,66.44909,8.128249e-11 2094,120.87188,219.34607,39.38659,89.23343,63.258236 2094,87.232315,224.43384,38.649612,72.69449,2.801486 2094,288.84796,219.81552,31.667236,77.358795,0.1696828 2094,340.58365,193.85675,27.914856,59.04315,0.03176402 2094,1.2577816,214.66441,35.344597,64.757,0.031443793 2094,102.20702,204.02505,73.110695,168.2799,0.0138623305 2094,137.96446,260.36465,27.67241,66.00275,0.002466436 2094,620.67096,325.07648,18.475708,57.529297,0.0023430143 2094,449.21335,288.78662,28.826202,57.039673,0.001159818 2094,609.49805,278.74194,29.64862,131.21118,0.00077198294 2094,357.74396,132.77138,38.209076,84.364044,0.0006070161 2094,1.0491658,230.29518,19.33887,147.69151,0.00056226534 2094,250.58655,166.25311,81.1463,165.94391,0.0004525204 2094,608.4058,96.92839,30.740845,154.45688,0.0003892625 2094,584.5789,18.981329,53.72467,95.43848,0.00013245894 2094,586.5303,159.92517,52.59839,255.7941,9.332835e-05 2094,611.67834,361.59634,27.468323,133.82233,5.0014587e-05 2094,0.84005535,325.66702,18.405405,131.80518,2.5480966e-05 2094,2.6446128,199.8031,56.093513,204.44986,2.416929e-05 2094,607.2206,8.810141,31.926086,54.13658,1.4852743e-05 2094,0.7536312,74.11461,21.490164,153.14445,6.4959645e-06 2094,3.2798145,328.50256,57.17857,153.32681,4.327427e-06 2094,0.9596151,443.8315,21.67726,59.204163,1.3786671e-06 2094,2.9813755,57.724182,58.8475,244.67001,9.311e-07 2094,1.405747,22.605873,29.98572,113.492516,5.404398e-07 2094,383.48123,0.0,52.2771,64.03324,4.7587645e-09 2094,119.891525,0.33333984,49.402374,64.563515,1.2647481e-09 2094,271.25385,2.970498,44.47342,54.84085,7.8341933e-10 2094,318.0822,3.6633513,48.930725,54.488224,5.203263e-10 2094,344.06058,0.0,50.026154,58.526264,1.1128275e-11 2095,299.4827,221.05539,20.215332,46.6109,89.27868 2095,85.4813,219.8441,49.038963,95.64488,77.07088 2095,283.86276,222.69386,18.695679,45.32686,67.49457 2095,318.6092,221.86578,22.79309,48.138123,66.60403 2095,33.532448,226.28246,43.50918,91.90608,3.5082486 2095,333.73062,219.15436,22.697937,50.568024,0.106609896 2095,326.22256,219.3171,44.089478,109.91228,0.05010604 2095,284.84317,206.66794,39.602997,82.67825,0.039803263 2095,89.03003,197.99988,79.03609,189.20065,0.01796247 2095,16.15974,214.31834,79.46199,172.48112,0.0072940122 2095,385.106,195.44173,24.567108,57.252884,0.0038444956 2095,392.45062,132.44383,40.18927,87.51654,0.0016623782 2095,621.51965,241.86183,17.627014,51.08522,0.0013815772 2095,297.46863,169.1448,88.86133,220.50662,0.0007337815 2095,610.44745,174.50604,28.699219,124.95056,0.000600417 2095,6.6130276,338.6696,77.067,143.3135,0.00017424415 2095,611.0684,246.93996,28.078247,143.28099,9.6478514e-05 2095,611.5537,343.74747,27.592957,134.06982,9.3645926e-05 2095,1.6567432,317.6112,21.446795,134.40689,8.4784275e-05 2095,609.54926,439.07214,29.597412,63.683075,7.203898e-05 2095,610.6552,80.98724,28.491455,138.90363,6.2056366e-05 2095,608.4241,11.590834,30.722595,116.242256,5.1689694e-05 2095,508.14386,242.8647,87.841064,190.55412,4.1925185e-05 2095,1.6583358,225.72984,28.609186,145.6884,4.0550352e-05 2095,1.2359921,147.33992,19.434164,130.20598,1.15563125e-05 2095,0.76442546,419.17056,16.558357,81.39215,9.855111e-06 2095,0.9899227,14.488034,15.818292,74.14772,1.0419276e-06 2095,2.4022102,21.506712,56.672516,98.8124,7.5949833e-07 2095,1.0830112,42.24053,21.098455,137.43425,5.075587e-07 2095,1.1710792,8.205417,42.482197,46.5822,1.314785e-07 2095,339.1316,4.9678226,48.06198,52.97147,8.1306455e-09 2095,294.18765,2.9109359,44.65985,53.760807,5.6560903e-09 2095,413.0213,4.0127573,51.40091,58.12072,4.7204707e-09 2095,436.38034,4.191831,69.50702,54.653893,1.8168307e-09 2095,148.4046,0.9386166,51.104263,62.405693,1.7413305e-09 2095,366.7302,3.541312,48.02655,50.68044,4.111631e-10 2096,308.11188,221.03493,21.146423,48.77504,84.83125 2096,324.9371,220.57341,21.107086,48.8163,68.66403 2096,343.22644,223.65482,21.769196,49.089844,56.98683 2096,14.747608,220.37886,56.67915,85.72481,7.2711034 2096,297.78998,220.4654,38.862885,91.84485,0.06797512 2096,430.08554,123.54217,43.292816,91.31347,0.03038345 2096,361.95746,219.69406,31.603699,71.77557,0.022220928 2096,414.28247,195.81845,22.989319,52.12712,0.015572051 2096,323.14316,200.64494,42.139282,108.670364,0.011443535 2096,366.61508,218.89372,49.35898,151.87364,0.0062508043 2096,0.35412842,226.7025,13.426598,52.902145,0.003785808 2096,4.2265725,209.47585,58.80745,263.36145,0.0033417658 2096,2.450953,211.8398,28.77617,155.3289,0.0018512902 2096,608.3039,2.6889453,30.842773,110.45236,0.0006132631 2096,299.96188,145.89575,130.41803,238.1387,0.00027285123 2096,610.62305,327.13626,28.52362,146.95651,0.00025704337 2096,155.86803,137.12852,35.827347,91.99469,0.00023464522 2096,617.6423,298.4535,21.504395,74.22574,0.00022904387 2096,610.9439,188.03117,28.202759,143.8332,0.00015752253 2096,1.0603923,340.33478,36.988285,156.79712,0.00015202023 2096,136.5172,232.86969,57.046738,167.60162,7.509466e-05 2096,611.3394,78.66603,27.807251,151.10515,6.4475156e-05 2096,586.4806,230.32535,52.219177,225.02216,4.473694e-05 2096,0.218243,442.19485,30.354294,65.00418,4.2373456e-05 2096,608.7669,440.87772,30.37976,62.57547,3.366112e-05 2096,1.299532,146.39964,19.68552,131.73079,2.7773089e-05 2096,0.0,406.40616,15.924102,65.36282,1.6836431e-05 2096,3.295249,67.82754,59.717213,259.73615,4.169273e-06 2096,0.9924781,13.707409,15.830295,72.500534,2.9376606e-06 2096,1.7007959,15.350837,50.554417,63.643982,1.3091354e-06 2096,133.91615,57.093822,78.77942,204.21638,7.929471e-07 2096,1.5838574,25.328516,29.304585,125.90293,7.790799e-07 2096,559.2158,12.410467,45.118835,49.203827,5.5408395e-07 2096,524.37213,12.28826,44.423584,48.509457,1.3050162e-07 2096,475.54813,13.692283,84.804474,68.15227,7.3372526e-08 2096,445.3725,4.967689,52.526367,58.9889,6.489516e-09 2096,321.1582,3.0141473,43.967346,54.236485,3.8892316e-09 2096,366.7491,5.0833154,47.089203,52.986282,3.6796037e-09 2096,175.17212,0.27525717,50.384476,62.291542,6.9736067e-10 2096,420.99094,0.0,46.78073,55.109417,1.7330814e-11 2097,305.9699,211.93893,24.049377,61.940613,91.83393 2097,348.94397,221.8211,21.414062,52.578003,85.71432 2097,329.67548,218.75266,19.28418,51.967834,18.592197 2097,145.3,226.30258,28.76088,69.75528,0.14859904 2097,363.45935,223.13626,23.859985,49.231445,0.12390049 2097,120.65905,237.39584,43.930977,111.43283,0.04487132 2097,410.78598,193.65952,23.138184,55.989532,0.013695484 2097,290.68604,201.01001,48.821106,117.5376,0.0059062317 2097,427.35028,126.18637,40.094147,93.70384,0.002263394 2097,1.9729737,318.79688,35.449944,170.82315,0.0013290866 2097,0.9580469,315.3162,19.787647,99.96683,0.0011972894 2097,369.45193,243.22542,45.090942,172.58641,0.00073031604 2097,98.88092,211.67035,101.10013,212.91446,0.0006212628 2097,328.82217,183.70401,58.258057,120.86771,0.0005553185 2097,259.36136,148.58601,130.11316,242.7566,0.00046813683 2097,305.60968,342.67538,27.212524,52.380707,0.0002951167 2097,599.2582,255.15271,39.71643,186.79614,0.0002761183 2097,609.95325,186.71094,29.19342,137.38547,0.00021404692 2097,610.6091,6.830785,28.537598,90.057755,0.00018472972 2097,1.2923056,421.17136,17.019424,77.862305,0.0001803574 2097,616.67004,319.40634,22.476624,80.63977,0.00014037 2097,611.816,72.949554,27.330688,149.25648,9.5391624e-05 2097,611.9288,358.33856,27.217896,133.88644,5.7258167e-05 2097,1.3112729,198.34218,19.741642,130.6743,1.7239478e-05 2097,3.8072283,167.4006,60.49579,259.80063,1.2780052e-05 2097,1.0075594,80.82225,20.373991,134.84369,6.111304e-06 2097,1.1090381,22.873888,20.518433,114.672775,1.8268612e-07 2097,450.01346,3.6749089,52.55728,60.66643,6.37335e-09 2097,524.67725,11.46454,45.590637,46.585514,4.6359463e-09 2097,498.44376,8.807032,44.065216,51.72306,3.7141548e-09 2097,319.54764,2.144287,44.68811,58.026978,1.967909e-09 2097,353.91614,6.454834,46.92102,51.00074,9.928636e-10 2097,387.15396,3.2337778,47.230255,53.585575,2.0210067e-10 2097,412.7595,0.0,47.84668,58.701946,1.4898664e-11 2097,180.68129,0.0,46.34134,61.740444,9.742756e-12 2098,349.75085,217.66455,23.542145,57.964294,99.15487 2098,330.08664,217.44936,23.90799,60.421158,98.86246 2098,312.7447,216.11922,21.09198,53.477615,34.885925 2098,61.75663,226.8861,47.32341,98.777084,0.23728397 2098,38.037163,279.0274,33.579308,81.14697,0.009020431 2098,429.70547,111.02284,44.706665,108.911194,0.0064282874 2098,310.25342,196.62206,61.497528,107.17561,0.005178963 2098,33.026154,254.99454,110.33554,215.39267,0.0022279557 2098,358.6557,211.21092,41.25461,97.22627,0.0022260654 2098,329.56906,166.52245,73.34094,186.43785,0.0014445392 2098,614.4337,236.7078,24.712952,94.54297,0.00054297585 2098,607.82794,1.6283464,31.318726,120.52487,0.00041404695 2098,149.3835,136.73518,34.821533,75.34534,0.00012198852 2098,610.347,131.83556,28.799683,155.61504,0.00011646999 2098,0.7970663,289.1986,13.657329,50.393677,7.1219394e-05 2098,586.9305,169.17554,51.962097,230.4679,6.708953e-05 2098,611.56775,312.06552,27.578918,142.08871,6.107401e-05 2098,4.2693815,254.53503,57.139565,207.29645,4.5378907e-05 2098,0.8479517,306.77325,18.18768,73.47015,3.102901e-05 2098,609.22327,438.88464,29.9234,64.65662,3.093284e-05 2098,1.6989055,235.8496,29.313145,137.31047,2.1486283e-05 2098,1.1243978,322.67407,28.300798,144.76428,1.5946876e-05 2098,585.2627,395.91385,53.604492,95.5607,1.4706706e-05 2098,208.62445,72.97939,44.53189,135.6593,1.3251121e-05 2098,0.8593164,76.13723,20.301985,140.39557,1.0143577e-05 2098,0.96560144,182.04448,18.160969,72.90311,8.863027e-06 2098,3.322308,100.746254,59.2251,251.246,7.5382973e-06 2098,1.4264828,135.38174,28.604185,161.53378,2.7240735e-06 2098,0.8284343,422.2033,16.690159,79.847595,2.6040036e-06 2098,3.1471891,393.85556,56.509556,99.65878,8.27528e-07 2098,0.71823734,13.601608,14.735548,75.62588,6.584027e-07 2098,1.0778044,20.60597,29.910355,125.383514,4.2816447e-07 2098,3.636745,24.768106,80.47245,143.32062,2.3095099e-07 2098,1.9405339,7.59085,40.96402,46.39156,6.112126e-08 2098,441.02017,3.9844532,50.51541,60.055443,4.3915955e-09 2098,357.26773,11.474496,86.56052,74.086914,3.4473184e-09 2098,517.53656,8.533313,45.362915,50.649147,2.2178526e-09 2098,544.42676,9.858903,46.616577,46.944187,1.7394084e-09 2098,318.6451,2.0115137,45.819,59.09619,1.4128296e-09 2098,490.1184,5.664323,46.145935,53.89404,1.2487027e-09 2098,398.85208,5.2066083,67.66278,53.97095,1.1789962e-09 2098,181.9448,0.26560548,44.62027,58.063015,1.3317518e-13 2099,345.28793,214.4671,26.772583,68.44147,99.781006 2099,374.99896,216.75125,22.603912,57.020203,95.26993 2099,7.1344743,259.87976,56.690384,132.16373,26.88857 2099,337.06207,213.27043,20.004486,54.258987,2.5061646 2099,387.52612,221.96214,20.536163,47.48085,2.4196777 2099,2.1600049,228.28923,23.904785,139.37813,0.05160418 2099,378.5552,211.4633,41.181732,95.19646,0.038519204 2099,361.87228,215.61244,19.865936,54.60994,0.032599352 2099,299.432,212.88814,32.684845,81.074295,0.024012925 2099,268.9368,211.67621,23.87741,46.1369,0.010302428 2099,401.7059,226.5124,26.226288,58.524857,0.010247051 2099,327.4318,176.95303,71.07895,167.00253,0.0030543972 2099,451.1696,105.43261,44.898224,112.39448,0.0029583091 2099,378.7093,196.94542,76.966125,181.7004,0.0021658966 2099,1.4262354,305.737,19.428354,145.9129,0.0006330173 2099,608.4353,214.47557,30.711365,138.81047,0.0005328929 2099,3.4962924,200.70001,101.902916,252.11954,0.00031658856 2099,610.32416,17.110859,28.82251,106.805725,0.00015527631 2099,396.74652,270.00684,83.03699,199.83832,0.0001331144 2099,610.5501,128.54297,28.596558,154.23181,7.439474e-05 2099,611.5177,323.8201,27.628967,137.25845,6.709945e-05 2099,608.9101,441.3362,30.236572,62.856934,2.7266162e-05 2099,299.96957,251.64496,36.21335,91.91156,2.6267313e-05 2099,109.74386,246.31053,68.53828,184.57109,2.3953547e-05 2099,2.2088835,375.93024,54.946045,115.81488,1.9585288e-05 2099,0.7140967,77.03133,21.006378,149.17938,1.2050128e-05 2099,584.86847,392.4573,53.880432,100.62146,1.003489e-05 2099,0.70627445,418.3724,17.081203,84.14166,2.8686686e-06 2099,0.42330894,7.570036,23.458355,59.8703,1.5550846e-06 2099,0.557972,18.63129,30.48004,129.24985,1.2514895e-06 2099,1.0443702,18.188177,61.931927,262.96945,4.327802e-08 2099,565.6309,9.874131,45.93579,45.034492,7.490187e-09 2099,414.63693,7.793441,47.937622,53.112335,2.6765627e-09 2099,456.62064,2.7150066,47.643066,60.4814,1.4493883e-09 2099,531.1909,5.9178696,45.284363,52.203358,1.3939482e-09 2099,332.36157,1.0518262,45.517517,62.50121,1.2198185e-09 2099,495.40247,4.7093587,47.41632,57.86498,9.564388e-10 2099,389.69095,8.23252,45.9187,53.692833,7.099494e-10 2099,360.253,7.701766,47.755585,48.70498,1.5781461e-10 2099,169.59843,2.6580567,46.686554,55.024624,4.8010415e-12 2100,380.0345,214.1465,25.653442,71.89458,99.75721 2100,402.48123,217.38928,25.925995,65.8161,99.69865 2100,419.76538,222.13667,20.067749,54.140793,35.95998 2100,339.26276,214.48001,24.832306,53.78662,0.040283967 2100,410.86557,207.02594,38.246002,104.16876,0.021225132 2100,335.163,207.29195,58.608307,156.44164,0.004205202 2100,486.85855,119.05171,41.03415,92.46173,0.0034794714 2100,360.73495,180.41518,69.76663,164.68568,0.0031404546 2100,417.42615,202.90993,75.68518,179.69594,0.0026684762 2100,195.8035,136.64503,33.30693,67.29942,0.0017960346 2100,436.2207,234.07422,36.07669,94.90527,0.0009879444 2100,194.77617,266.42676,32.06865,70.94876,0.0008581137 2100,220.92581,247.76418,27.296875,56.11229,0.0007704326 2100,131.89703,252.00142,34.283295,71.133316,0.0005598057 2100,622.0717,196.9066,17.074951,51.838898,0.00041308458 2100,610.6855,273.65048,28.461182,134.12375,0.0002797944 2100,443.7838,75.44552,37.608185,92.06759,0.0002536065 2100,1.4488664,286.82703,18.387125,79.0238,0.00023103054 2100,611.8491,204.91023,27.297546,130.08275,0.0001941155 2100,621.23596,29.639137,17.910706,51.102386,0.00015346201 2100,612.65265,376.1939,26.494019,117.33908,0.00011891359 2100,1.7409725,195.28825,28.311682,150.36229,5.517166e-05 2100,612.306,111.18706,26.840637,138.21207,4.8845e-05 2100,605.3873,8.060757,33.75934,53.63181,4.1968793e-05 2100,1.747334,278.23135,31.422127,176.10803,2.4584626e-05 2100,0.30105633,346.01706,18.04162,85.33594,1.2305503e-05 2100,583.71,16.428507,54.90204,94.73819,1.1920512e-05 2100,1.1549251,86.0913,19.474693,135.48947,7.261341e-06 2100,0.6242179,420.22385,16.92934,81.30356,2.7106082e-06 2100,4.3548665,345.96136,79.670815,140.36676,1.1210707e-06 2100,3.1565073,70.12369,60.779186,273.91345,9.2746643e-07 2100,1.1773902,26.016582,20.705116,109.47775,2.9691935e-07 2100,3.9803646,25.542324,80.80573,141.74168,8.766731e-08 2100,529.22577,5.8230014,46.95874,57.236076,4.703718e-09 2100,448.38293,7.4313054,47.483,54.035378,2.305397e-09 2100,404.4177,12.62847,84.61853,75.536934,2.2839335e-09 2100,503.07043,3.6154428,48.75226,63.337185,2.1740056e-09 2100,371.00824,4.847961,67.675354,50.72611,1.0253404e-09 2100,418.9244,6.0623765,44.752533,47.89465,7.3166734e-10 2100,476.64,3.1635256,46.812805,59.926605,3.0293337e-10 2100,229.73607,0.0,44.95085,53.307495,1.1357234e-13 2101,407.41656,214.63663,30.275543,75.06198,99.45762 2101,432.96057,220.8736,26.45575,68.497345,99.37653 2101,448.22568,225.60287,20.978394,56.8179,42.296913 2101,404.08514,213.38948,17.561676,46.111954,4.6282535 2101,391.03638,210.11826,17.209259,45.27011,0.74509925 2101,385.47574,207.81932,40.114166,145.94539,0.026550047 2101,276.6731,239.41199,23.796783,55.86093,0.026197994 2101,476.47568,120.116905,25.081268,47.2911,0.0060602496 2101,415.082,185.87146,69.80063,162.56006,0.0027141005 2101,266.38986,232.92094,39.1398,118.24141,0.0024214832 2101,319.16367,222.71977,22.486115,45.703476,0.0021423749 2101,619.49927,219.26157,19.6474,57.407074,0.0018013971 2101,511.87772,95.82021,46.369354,127.04885,0.0011100003 2101,157.4544,253.53313,35.161713,73.85896,0.0010215926 2101,610.45935,201.65503,28.687317,158.68036,0.0007867601 2101,307.4487,227.1586,22.479004,47.55536,0.00062212965 2101,460.01184,216.44847,72.72394,203.1559,0.0004099837 2101,480.98444,194.56036,41.49701,128.39172,0.00039426814 2101,609.83234,310.44385,29.314331,148.40726,0.00020701555 2101,611.3296,111.31659,27.817078,146.38223,0.00012669587 2101,608.38336,439.2995,30.763306,65.322235,0.0001154703 2101,615.3716,19.114363,23.775085,77.16876,4.20419e-05 2101,0.91878825,329.65668,19.895977,136.99557,2.6546746e-05 2101,1.1727206,104.260605,20.598488,105.16768,2.5180598e-05 2101,475.79132,297.19656,29.488525,70.41562,2.1754902e-05 2101,1.189069,230.28574,20.07915,131.275,1.407802e-05 2101,582.90125,13.329486,56.245422,196.35858,8.481098e-06 2101,4.0856953,308.24747,57.0692,169.92484,8.037588e-06 2101,600.4542,5.064045,38.692444,45.107616,4.0787636e-06 2101,1.5897542,153.1877,28.21813,148.7842,4.0104687e-06 2101,4.1532993,101.06546,58.122055,250.00476,3.7238851e-06 2101,0.80131024,421.82318,16.345118,80.28168,2.2427969e-06 2101,0.6736133,18.810312,30.36642,130.07701,1.9311046e-06 2101,0.0,0.0,21.423624,45.241013,1.0043274e-06 2101,557.3572,7.4338737,46.587402,55.431324,9.912444e-09 2101,386.59918,4.0363183,63.517395,52.703403,2.1461344e-09 2101,530.9556,4.8639293,46.58258,57.10925,2.0207223e-09 2101,444.3907,8.196159,45.23636,53.07149,1.826274e-09 2101,482.62854,6.718571,46.300964,54.204945,8.106887e-10 2101,264.27576,0.0,44.208984,49.44242,3.5698034e-13 2102,438.54922,238.03772,28.56903,74.408966,99.599174 2102,424.45224,228.76935,21.630127,54.043457,92.549835 2102,458.62695,241.2854,23.28946,65.29657,81.91368 2102,473.7325,246.82774,22.051453,58.042496,0.7913275 2102,326.99854,239.53047,22.066132,46.88124,0.302079 2102,404.50772,219.03758,35.812714,79.51866,0.08784147 2102,159.93127,268.8984,39.084076,75.82315,0.019347277 2102,317.8869,230.83261,37.454315,116.02777,0.013832331 2102,620.15405,264.29086,18.992615,58.367126,0.0036950535 2102,405.7809,191.94174,75.087494,167.52695,0.0026778702 2102,506.89148,212.35187,41.595215,138.2692,0.0006038659 2102,484.44434,233.85654,74.83148,213.75195,0.00032184165 2102,553.7361,229.89967,51.062073,124.54814,0.00029432293 2102,610.25854,262.39764,28.888123,137.30563,0.00027560844 2102,607.57996,5.642311,31.566711,121.37163,0.00023873892 2102,610.24744,73.191605,28.899231,134.82845,0.00022695647 2102,611.69,175.56422,27.456665,143.99174,0.00018198669 2102,1.0553312,318.78818,19.935898,131.1706,7.4356794e-05 2102,603.03894,331.96344,36.107727,157.9935,5.6040113e-05 2102,609.2676,441.40897,29.87909,62.84906,4.770168e-05 2102,583.9821,19.114597,55.050964,260.06885,3.7677746e-05 2102,1.5917407,233.70375,28.33462,148.62611,2.4765726e-05 2102,3.836569,203.84373,57.861374,224.91936,1.665619e-05 2102,1.0950106,161.31168,20.095846,132.23932,8.1014305e-06 2102,613.3551,0.29160807,25.791565,48.876183,4.8728125e-06 2102,5.5201044,345.73532,78.341064,141.02194,3.663377e-06 2102,1.1843075,388.35632,28.926846,108.25281,3.2410437e-06 2102,1.1915634,53.534416,20.401878,134.20477,1.1564764e-06 2102,1.8436654,20.775255,56.55648,105.36621,1.672296e-07 2102,0.7469645,11.38903,13.740706,80.98938,4.8464095e-08 2102,576.197,4.151859,48.49182,58.80221,1.4665466e-08 2102,414.35938,3.9713233,61.128967,48.89504,5.8743748e-09 2102,509.887,5.074556,48.980194,55.48211,1.6703562e-09 2102,478.12396,7.617274,46.763855,50.188892,1.6293858e-09 2102,547.83875,0.35618654,49.38971,53.72231,4.1317805e-10 2103,452.4105,253.34367,37.480133,90.88359,99.850746 2103,430.90814,243.85014,25.245941,60.764633,71.65183 2103,482.97595,255.19487,29.47821,78.67824,71.57986 2103,335.2915,249.52292,31.956207,67.83554,0.039003678 2103,412.74863,225.96391,61.204987,113.35631,0.016978899 2103,460.68018,241.00485,87.4682,174.09375,0.0071183625 2103,151.03001,292.95526,40.899292,85.89563,0.0009331215 2103,602.95917,0.65335286,36.1875,125.55095,0.00080772577 2103,582.47614,318.7516,53.57245,170.67276,0.0007195451 2103,522.5105,228.38141,41.474854,109.673706,0.00070769957 2103,388.222,191.19711,129.1211,215.69803,0.0004506371 2103,610.25665,264.23715,28.890015,138.8541,0.00025987843 2103,611.33813,98.55101,27.808533,148.3215,0.00025664558 2103,542.3672,337.8375,42.73944,143.11456,0.00015905745 2103,1.2441984,268.84778,20.027407,137.40527,9.000569e-05 2103,612.65796,0.0,26.488708,49.843792,3.663762e-05 2103,0.9555396,370.19434,19.453556,123.846985,2.8577308e-05 2103,608.78107,443.74017,30.3656,61.64853,2.8203942e-05 2103,3.6817563,268.813,58.811787,198.34164,2.1535558e-05 2103,1.0840169,172.64444,20.009275,130.70221,1.4202164e-05 2103,1.0544474,80.2496,19.977455,137.47845,4.7436474e-06 2103,3.6653647,98.88895,59.03167,253.08063,1.5568444e-06 2103,575.92896,1.6781673,53.086853,66.502,6.4310177e-07 2103,1.1974674,24.883223,20.201416,107.273865,2.0796665e-07 2103,478.76636,7.868522,45.288025,50.43114,2.766355e-09 2103,504.39038,6.3393197,48.697266,55.029926,4.5252968e-10 2103,426.7036,0.9243522,48.29666,55.14879,2.9708602e-10 2103,265.70355,0.0,50.65216,63.000355,2.6127495e-10 2103,542.96515,0.0,49.44104,61.119095,3.26739e-11 2104,454.63,239.35617,40.796844,101.342316,99.88722 2104,478.92578,242.02641,29.668854,82.89104,97.25385 2104,425.9253,224.75203,30.496399,76.24971,90.38948 2104,275.45526,258.38943,29.495941,64.68338,0.7574419 2104,312.0689,223.45499,25.466827,51.17639,0.2381495 2104,420.2459,228.42586,20.862946,48.173172,0.04657473 2104,586.0276,324.1518,52.772278,171.57144,0.014696144 2104,14.436776,229.31053,41.260452,89.85771,0.010365792 2104,509.4972,220.22725,40.972473,129.51988,0.00948949 2104,410.48206,197.81598,74.803375,157.83939,0.0047576 2104,449.36804,214.01996,93.390625,169.4025,0.0024150189 2104,615.5346,401.53406,23.61206,78.48782,0.002047027 2104,221.73526,138.61334,26.472092,53.710068,0.0015930511 2104,610.466,79.4101,28.680664,143.20273,0.0008741659 2104,609.6228,228.84706,29.523865,154.90718,0.0008668603 2104,608.74445,12.65972,30.402222,128.45863,0.00045035573 2104,79.36361,237.70105,92.37531,152.52438,0.00031461776 2104,1.6265178,202.98218,30.403793,143.07977,0.000100107616 2104,105.592896,294.60242,39.54283,89.2388,9.756281e-05 2104,3.9354184,236.13074,56.392513,230.52719,3.177993e-05 2104,1.236394,267.98508,19.782103,139.00098,1.3103012e-05 2104,0.75229657,394.24393,19.337433,106.524536,1.29846885e-05 2104,589.26025,5.377803,49.769287,58.44315,8.143353e-06 2104,1.0971208,112.56732,20.449028,144.58481,7.029776e-06 2104,3.7708807,91.76513,58.822803,241.2182,4.719263e-06 2104,2.7100098,399.4371,56.44165,95.362335,2.112518e-06 2104,0.9715275,22.288269,20.524622,110.77615,1.8307539e-07 2104,4.4057584,28.013731,80.40147,139.98947,5.673965e-08 2104,401.9957,2.9970052,44.532135,55.76043,3.8292414e-09 2104,478.6697,8.646254,43.47458,49.980034,2.3721898e-09 2104,504.79495,9.716338,45.56021,47.932842,8.429057e-10 2104,551.888,4.9569044,49.366943,52.31141,2.24668e-10 2104,237.46724,3.860547,48.410538,53.586983,1.6617173e-11 2104,264.1478,0.0,45.1597,54.32967,4.122666e-13 2105,458.136,234.20639,56.120117,142.27704,99.968376 2105,283.29037,220.68953,24.295563,48.709763,0.29905444 2105,555.06036,293.23114,38.598328,77.52371,0.09842171 2105,371.30344,215.15074,32.14377,57.43483,0.055808302 2105,226.69037,236.07635,45.30124,140.01886,0.04753015 2105,598.72015,114.36586,39.32965,88.09364,0.030911982 2105,170.11053,276.54044,47.651596,147.85068,0.010738355 2105,342.11298,230.31386,32.67932,69.97859,0.010473336 2105,330.3528,259.47464,36.400513,88.371826,0.0061792927 2105,497.64032,242.79713,37.038757,130.93922,0.0043187873 2105,296.87134,219.778,24.808533,51.25258,0.0024076903 2105,582.90625,70.29997,54.51581,230.02931,0.0017577631 2105,174.40196,111.413635,40.665497,91.288315,0.0014099928 2105,414.32278,171.5909,131.69138,246.2624,0.0011025772 2105,608.2734,437.26324,30.873291,67.65793,0.00036109085 2105,600.7692,11.752904,38.333435,147.8325,0.0003340759 2105,583.4672,305.378,54.63855,177.93869,0.00019858275 2105,1.3393612,298.48215,20.816368,153.16833,0.00016114183 2105,611.92175,1.3698682,27.224915,46.749443,0.00012855783 2105,610.4541,235.3041,28.692566,143.52672,7.5791824e-05 2105,479.40887,261.00565,27.998016,80.091705,6.975708e-05 2105,2.0859375,229.86905,27.787868,147.55347,6.562666e-05 2105,2.9249446,287.35556,55.950916,183.96643,5.2476953e-05 2105,4.4217057,152.8007,57.78801,224.0742,3.368058e-05 2105,341.14664,143.29517,100.17645,222.89749,1.3795081e-05 2105,1.252509,150.42476,19.813164,135.87013,1.00143925e-05 2105,1.2285498,412.63943,35.07249,82.92984,3.1109303e-06 2105,482.60406,19.623972,76.526,162.18687,3.6866322e-07 2105,1.0767424,47.671074,19.834482,133.50128,8.130526e-08 2105,2.1410255,19.717703,55.866627,100.32222,6.636574e-08 2105,570.46045,5.570492,47.593445,57.783665,7.904005e-09 2105,380.18814,3.1849544,46.118286,57.410984,2.0591318e-09 2105,406.93094,8.561717,47.622192,45.333344,1.411448e-09 2105,545.03,4.0732718,45.605164,52.99081,1.0441543e-09 2106,508.2312,231.69305,69.216064,218.10681,99.82309 2106,485.37427,233.29321,52.48059,185.09268,98.80607 2106,360.13828,200.19798,20.656952,50.11606,21.09249 2106,484.36166,240.64131,30.439178,87.963455,20.905914 2106,250.17058,207.68648,20.747757,46.61473,2.5145485 2106,505.1092,336.6656,36.04059,98.70477,0.48126635 2106,347.81726,200.05247,21.577942,48.100677,0.42502922 2106,510.45172,272.698,24.4953,70.019196,0.22224846 2106,502.08417,296.1239,25.19397,75.49838,0.033991113 2106,583.68317,291.85477,53.896484,158.71951,0.029981006 2106,544.0279,280.8759,24.577148,61.5325,0.019254558 2106,55.101673,322.45114,82.35269,183.57013,0.010403698 2106,242.90553,200.86977,39.272415,99.65312,0.008579219 2106,525.2872,278.3169,24.968872,63.933167,0.007928421 2106,375.51788,204.11452,23.404114,47.342285,0.0059032473 2106,489.62448,194.52138,40.351227,97.37178,0.0026134204 2106,607.0336,70.21864,31.775208,143.55191,0.0009117336 2106,526.2258,324.71756,23.145203,73.44522,0.000589499 2106,535.7758,307.87125,26.062805,76.81964,0.00035659177 2106,597.52795,390.05423,41.618713,104.50015,0.00015966536 2106,2.8604655,392.12686,59.06895,104.3678,0.00015001235 2106,1.9180079,252.863,35.197327,195.85721,0.00013125804 2106,1.1598738,215.31758,19.423323,140.94368,8.250901e-05 2106,1.2310368,368.51468,20.649391,131.18793,6.312084e-05 2106,605.4333,5.12166,33.71338,56.03553,4.0960793e-05 2106,2.064787,116.192245,33.102554,183.51271,4.792328e-06 2106,0.97253096,24.726442,20.835781,109.264114,5.772296e-07 2106,1.3233985,11.721244,30.829628,55.76158,8.77702e-08 2106,478.3783,9.468742,47.558716,51.236122,2.0885418e-08 2106,359.47284,4.0863867,46.154633,56.3309,3.175714e-10 2107,503.34735,237.21686,77.081604,210.19711,99.89598 2107,570.06775,237.30766,68.5376,273.839,99.82101 2107,335.97504,194.7915,24.53598,53.649384,10.245464 2107,505.4346,217.42683,48.99112,112.7704,1.8434461 2107,207.96661,198.05927,23.21576,52.79283,0.6805729 2107,320.13748,191.41382,22.588043,47.979553,0.11522779 2107,558.46454,310.79333,37.19812,189.70541,0.041582298 2107,507.9072,300.26126,33.69052,123.6304,0.041271448 2107,327.89743,190.23862,40.971222,116.643616,0.03463885 2107,366.39758,188.80132,25.886017,49.72812,0.017756896 2107,609.47327,256.33917,29.6734,140.46219,0.015974032 2107,89.094086,251.33139,48.66136,145.01111,0.009606054 2107,587.8215,338.83728,22.95935,65.244354,0.008987085 2107,596.18756,381.53458,42.955322,124.09268,0.008266205 2107,526.317,310.66428,34.808838,126.12668,0.0054270886 2107,56.183796,236.55678,107.0867,236.7426,0.0037064278 2107,608.8939,456.67236,30.252747,54.399902,0.00255457 2107,599.1656,314.28217,24.873535,63.598694,0.0020607263 2107,116.55327,206.02892,64.83034,173.65343,0.0019964725 2107,1.276473,250.18396,31.748997,188.2211,0.0014202222 2107,585.88336,294.0247,26.066162,73.85959,0.0005947012 2107,598.9518,356.91617,25.189331,76.79019,0.00017781914 2107,606.0343,3.1455925,33.112366,59.951332,0.00010757916 2107,61.360138,46.63496,47.643013,145.67252,6.9860136e-05 2107,573.3378,429.84232,48.64435,76.950195,3.519275e-05 2107,1.9313803,385.7491,57.197384,110.87784,1.5147536e-05 2107,3.1845949,31.293718,37.583736,160.9324,7.834881e-06 2107,529.65344,282.02597,26.377625,70.211914,4.3273776e-06 2107,0.6931397,438.5851,22.684412,66.02533,2.5520987e-06 2107,0.86886966,8.389691,23.07905,56.573612,6.4949916e-08 2107,462.7486,7.0766587,48.56552,51.56878,6.3294965e-09 2108,317.31805,214.40851,20.255035,49.427643,21.549433 2108,301.37567,216.03825,20.84262,49.807755,5.429944 2108,153.1896,221.98521,35.73285,82.94588,2.1311724 2108,3.5353532,322.0845,34.087883,91.02969,0.58805054 2108,301.8193,213.62054,36.3826,110.70557,0.31729692 2108,5.6418133,281.23648,63.351166,177.0014,0.116631076 2108,289.27005,212.74902,19.867554,46.62079,0.05343943 2108,6.379595,65.65457,40.275375,84.18825,0.044407714 2108,46.61595,253.5916,48.139656,145.17125,0.011287367 2108,27.288952,337.14297,23.611946,64.94501,0.008609544 2108,1.0576018,382.2821,17.181074,74.21713,0.0032745146 2108,620.3068,414.074,18.839844,60.656006,0.0025221545 2108,606.1695,62.923496,32.650757,159.45024,0.0011635382 2108,610.9662,324.6659,28.180481,147.4325,0.00057065906 2108,22.040651,229.87997,131.11052,219.35779,0.0005345624 2108,172.17635,216.40361,41.721527,103.06514,0.0005138715 2108,1.321574,355.3808,31.539366,140.77838,0.00049722276 2108,607.56335,3.327552,31.583313,117.956604,0.00026284103 2108,2.050788,80.16446,20.119465,153.59247,0.00016528604 2108,603.7039,166.6237,35.44275,195.31416,4.857812e-05 2108,131.07643,186.40436,99.214615,196.25403,3.802486e-05 2108,286.13348,181.23901,92.03061,177.39871,3.798579e-05 2108,1.2563599,205.34769,21.434612,170.92908,3.3335968e-05 2108,2.2665071,48.952084,60.945045,320.42984,1.171698e-05 2108,0.84891033,435.48453,22.30503,67.78018,7.9868205e-06 2108,583.60394,4.3280306,47.643127,55.768093,4.356022e-06 2108,2.0002394,20.920542,22.813366,101.85304,6.2122194e-07 2108,96.16009,11.865918,77.695045,161.67291,3.288427e-08 2108,440.56293,10.012949,88.06445,70.11155,8.4104e-09 2108,504.3632,8.644736,46.0925,47.206177,7.7024636e-09 2108,545.71436,7.242072,45.502747,50.560207,4.862982e-09 2108,429.94785,5.349144,47.779205,53.36906,2.9164247e-09 2108,325.82712,7.396727,45.230835,46.232082,1.9296804e-09 2108,291.01724,0.122093104,46.32422,62.597122,1.012585e-09 2109,55.27814,211.99847,43.417995,106.38556,97.62147 2109,253.76285,213.51653,29.495148,67.76738,0.9712327 2109,80.29223,217.57867,36.586327,79.1337,0.16989292 2109,496.70135,209.91316,25.05243,78.98241,0.054628503 2109,501.24304,195.08139,40.461426,136.23526,0.0230434 2109,62.70326,259.94632,21.388142,50.223877,0.009753378 2109,239.73073,211.72563,23.314133,54.190933,0.0051217335 2109,471.3471,196.28256,40.476074,105.30243,0.00391308 2109,598.5557,45.71834,39.854187,240.17302,0.0016732685 2109,283.31522,222.12967,24.621826,52.203705,0.00084776385 2109,611.60583,55.872425,27.540833,105.7867,0.0007239481 2109,309.25192,216.3292,25.758423,50.708405,0.0005220519 2109,32.211372,192.09418,111.092384,198.27216,0.0003746781 2109,611.4693,261.1775,27.677368,119.216156,0.00024646227 2109,585.9042,20.973513,51.604248,107.692276,0.00017745337 2109,617.60724,223.11703,21.539429,79.74603,0.00014147972 2109,584.3451,165.76952,53.69995,251.34117,0.00011853067 2109,467.1218,171.51566,103.040924,194.13809,0.000109254426 2109,612.4313,324.9279,26.715393,138.48386,0.00010452716 2109,449.97174,212.00522,33.738525,74.57034,8.183296e-05 2109,480.56094,81.329994,29.267975,62.260033,6.6224115e-05 2109,3.486906,141.99117,56.125908,233.71925,2.7272765e-05 2109,609.5511,441.77475,29.595581,62.84384,2.1016273e-05 2109,0.9084115,295.3504,20.03751,130.1297,9.177532e-06 2109,1.5319092,122.10689,19.695433,134.62889,7.730852e-06 2109,585.5129,387.72922,53.118958,103.49756,6.639619e-06 2109,0.61481446,373.27115,19.891699,123.56476,5.745323e-06 2109,1.2618808,193.49516,19.519678,137.63927,5.243023e-06 2109,2.3939552,290.7211,57.108105,178.21335,4.0278087e-06 2109,112.104935,35.89245,47.16211,130.67358,2.1956869e-06 2109,584.09503,3.6062143,45.00299,53.516743,6.4287366e-07 2109,1.5680795,54.584305,29.749624,144.35547,4.8758034e-07 2109,2.7911751,429.30112,53.248795,70.35593,3.7165393e-07 2109,404.7595,12.5168295,88.39865,71.917336,1.8494147e-07 2109,1.2745557,15.412982,58.87965,120.10051,1.0756824e-07 2109,545.5951,4.7935286,46.419434,54.910275,1.0578911e-07 2109,470.4537,9.785538,44.977386,48.163807,3.792341e-08 2109,36.1558,4.855371,78.00728,169.59676,3.7584254e-08 2109,388.94684,4.77813,47.393707,52.0815,3.7561104e-08 2109,423.1615,6.7204866,46.015533,45.166813,9.424089e-09 2109,292.5506,6.8088756,43.14969,45.32524,7.4395574e-09 2109,0.97776204,6.23152,20.292135,57.571983,6.7862986e-09 2109,244.61412,0.0,44.346756,62.11069,3.6425507e-10 2109,107.635864,1.0758367,45.44359,56.68461,8.517677e-12 2110,177.48447,207.66576,26.757019,59.388718,0.16256604 2110,488.08008,178.13177,42.16626,119.23172,0.13145204 2110,469.4122,193.58089,33.877502,115.14476,0.030037513 2110,75.07757,251.58069,58.896004,155.77423,0.009696522 2110,106.81384,209.08295,23.216461,47.674286,0.009304152 2110,94.94291,210.65593,21.671364,50.021408,0.006655526 2110,256.02133,215.4118,25.235443,52.200317,0.0047306544 2110,167.06442,212.27751,38.234055,130.99223,0.0024051683 2110,85.27682,193.173,40.762627,113.26456,0.0010888531 2110,243.06477,208.33405,24.348862,47.06421,0.00087993883 2110,610.69104,43.636093,28.455627,151.26416,0.00033179237 2110,452.68765,175.55206,102.16751,191.77246,0.00028316915 2110,612.1043,4.3407845,27.042358,89.85252,0.0001466307 2110,612.728,321.62845,26.41864,131.65063,0.00010556723 2110,417.26785,235.40894,33.309753,66.524445,8.667493e-05 2110,1.4023299,102.75939,17.968386,70.24273,7.2306306e-05 2110,40.530476,64.47487,45.84892,152.17006,6.347943e-05 2110,609.92664,440.1183,29.220032,62.973236,5.570448e-05 2110,269.08032,213.67932,43.15036,136.40497,3.6162874e-05 2110,612.8561,207.89511,26.290588,135.42966,3.457168e-05 2110,2.002845,116.87615,33.12826,182.69016,2.3647945e-05 2110,0.8871533,336.98254,17.228981,123.28601,1.8909535e-05 2110,1.3869524,213.67818,17.818329,68.399185,1.7911043e-05 2110,1.1855973,266.5201,19.197786,133.16736,1.3250794e-05 2110,585.1091,399.71527,53.31903,92.20917,1.0057424e-05 2110,561.2521,8.460043,73.3418,66.34276,7.458165e-06 2110,1.2177621,401.39627,26.137102,94.41342,4.52245e-06 2110,3.2632487,342.5296,57.10544,135.6312,4.421135e-06 2110,394.2008,4.6072054,43.953796,54.366695,2.173957e-08 2110,1.5015869,26.515768,29.610994,141.24052,1.7717584e-08 2110,435.87277,5.790466,44.628174,50.324562,1.5695024e-08 2110,346.60574,4.7243214,44.756927,49.386414,1.26761295e-08 2110,0.69725466,14.411833,11.282358,82.76765,4.1907455e-09 2110,186.76184,2.7080421,63.552414,52.92841,3.3504305e-10 2110,32.009777,1.298239,45.88081,55.47646,1.1751239e-12 2111,155.5762,204.43149,22.329422,51.04135,0.19836982 2111,215.2292,210.06175,33.357346,69.04103,0.07936421 2111,146.58847,205.98148,18.288635,45.416367,0.023289215 2111,475.03976,174.46758,43.354584,114.87401,0.016738025 2111,168.15674,206.7023,21.067184,46.183487,0.016077453 2111,198.00293,210.79234,24.925491,47.628098,0.010905829 2111,125.15323,202.36751,38.987656,78.80827,0.003891697 2111,57.793427,180.35759,26.16948,50.543015,0.0038761406 2111,3.6315691,269.5521,75.57957,193.81738,0.0035737613 2111,500.16797,168.50717,83.290405,178.4318,0.0010176469 2111,101.45321,216.60564,58.182426,147.91335,0.000855463 2111,233.55592,223.4167,27.998795,62.846573,0.00073649676 2111,622.12885,299.9424,17.017822,50.34561,0.0005637645 2111,1.5978606,308.20746,20.239767,145.0698,0.00026062503 2111,239.10298,239.80118,36.747482,86.831604,0.0002287112 2111,611.9362,320.2444,27.21045,136.36136,0.0001729617 2111,609.77136,14.857022,29.375305,97.24183,0.00013849273 2111,617.6448,152.04358,21.501892,68.661865,0.00012607154 2111,611.9669,235.7436,27.179749,126.90776,0.00012127409 2111,1.9027588,193.51411,36.68233,219.85481,8.91079e-05 2111,2.1467578,379.42664,56.475872,117.2999,5.9790695e-05 2111,2.4003973,39.7637,60.91213,299.64932,5.015176e-05 2111,1.4147396,86.60928,19.40496,92.39023,4.6651094e-05 2111,600.23975,129.51794,38.90692,194.53918,4.5376313e-05 2111,617.01373,187.34003,22.132935,80.526306,3.92845e-05 2111,610.4179,72.34048,28.72876,136.26456,3.7665603e-05 2111,1.2276701,217.62526,18.468922,80.62773,3.350438e-05 2111,609.73694,437.7611,29.409729,64.144745,2.7832535e-05 2111,2.0665812,125.74972,31.724922,161.43481,2.4753212e-05 2111,0.9051156,269.94598,19.72495,92.70572,1.727997e-05 2111,585.90283,392.42633,53.243835,97.64432,8.725018e-06 2111,566.8712,19.25502,72.27545,141.20561,1.9657512e-06 2111,0.7845817,409.35043,19.898844,97.160736,6.502197e-07 2111,0.85823405,5.944551,48.242268,103.821,4.969941e-07 2111,367.03674,5.9959965,46.23108,47.422897,2.0498534e-08 2111,314.80768,5.07493,45.013733,45.30036,1.5697749e-08 2111,436.35745,6.9731383,44.70288,45.34855,8.827247e-09 2111,393.04068,8.239891,46.77713,45.78558,5.6128875e-09 2111,1.0421427,0.7397901,22.394293,47.217396,3.387457e-09 2111,525.62915,7.546436,44.84607,45.348274,1.8666468e-09 2111,196.3502,5.535609,44.73546,48.096245,4.861755e-10 2111,167.94795,0.0,45.79831,64.537674,2.8790884e-10 2111,16.620653,0.0,46.533966,57.663284,5.3958536e-13 2112,215.42126,213.17049,34.917694,76.702774,79.769066 2112,199.24106,209.975,24.528915,56.050354,34.35754 2112,146.53853,204.2123,22.813705,48.587555,0.6360556 2112,600.47754,188.2512,36.771484,166.80742,0.19135725 2112,535.58453,177.23184,38.696228,99.504456,0.09326822 2112,160.59444,202.33362,22.06659,51.60237,0.06964821 2112,203.45079,200.0717,75.39061,147.65315,0.013332183 2112,614.8763,286.2757,24.270386,83.951965,0.0077336067 2112,85.41711,239.70732,28.32882,64.28554,0.0009095954 2112,612.2649,50.66147,26.881775,99.9557,0.0003322455 2112,586.6914,313.23544,51.74463,169.94849,0.00018211552 2112,0.88586426,5.6469274,38.81628,135.45845,0.00017243323 2112,609.56934,93.07375,29.577332,151.85364,0.00017104943 2112,14.025902,244.90292,27.613667,52.37091,0.00010670432 2112,608.8668,441.94934,30.279846,61.88907,0.00010399184 2112,2.695799,62.45056,58.175972,255.80548,8.584015e-05 2112,110.895546,149.14287,80.76095,171.04262,7.644063e-05 2112,1.369904,91.35335,20.87103,164.98744,3.956502e-05 2112,1.3585726,226.02365,19.177742,137.46167,2.8089002e-05 2112,596.25555,14.225108,42.891113,87.8712,1.7173348e-05 2112,3.1283448,243.23544,56.831005,226.61426,8.623632e-06 2112,0.72810465,313.46835,20.043701,130.94296,6.5061818e-06 2112,1.0147184,392.23227,29.092287,102.83426,2.163473e-06 2112,82.257614,26.35726,50.912292,190.05939,9.963424e-07 2112,380.39856,5.9475703,47.983887,51.765896,4.4101984e-08 2112,333.77655,5.626439,44.876526,45.690105,2.0273983e-08 2112,1.1685238,2.8930306,22.73932,50.496677,2.0058051e-08 2112,545.0552,7.010573,43.775085,47.469784,3.0927447e-09 2112,489.20486,5.1384864,47.78061,51.268456,2.8520406e-09 2112,7.780485,1.9665984,50.33732,63.922165,1.1163365e-09 2112,186.7763,3.0850065,47.07904,56.70454,1.0013876e-09 2112,516.9851,5.0452833,46.938965,50.215786,7.854377e-10 2112,37.158756,0.0,45.213207,51.029606,5.5520415e-11 2113,233.90144,212.34134,29.744095,81.18817,90.94612 2113,254.11147,216.75018,32.07582,82.737305,84.54194 2113,157.41803,206.75801,21.84317,52.23802,13.499871 2113,170.94579,206.06702,24.028015,50.98416,1.6166421 2113,190.09816,204.65723,20.925842,53.209747,0.6303621 2113,204.83917,205.26984,35.894836,88.6243,0.07242171 2113,111.023674,196.01215,29.7817,64.894745,0.033991124 2113,604.4419,205.33542,33.427612,79.13965,0.00807338 2113,150.7482,181.45584,44.060562,102.83487,0.0077209836 2113,234.21811,195.05026,75.90076,157.56845,0.007155297 2113,87.934875,244.05327,33.12993,77.30922,0.00062338525 2113,604.2125,85.09684,34.824158,171.44998,0.00045029513 2113,1.673269,99.42005,28.688925,158.42789,0.00020445121 2113,608.5235,8.60666,30.623169,124.35014,0.00016903372 2113,1.5266398,200.32526,20.707882,124.279205,0.00012855024 2113,611.19525,360.42795,27.951416,135.5405,9.738128e-05 2113,127.87951,132.059,97.163414,204.7787,4.886802e-05 2113,611.49365,256.77487,27.653015,150.82986,4.8737515e-05 2113,3.4953094,139.0025,57.17692,217.75931,4.1611467e-05 2113,130.45674,48.73655,50.955612,148.33978,3.0458816e-05 2113,0.9813949,275.62192,19.400629,143.65485,1.9116895e-05 2113,0.7819255,381.56683,19.772997,112.973175,8.553717e-06 2113,36.280624,0.0,55.885773,175.27792,1.8131674e-06 2113,1.6358627,54.653336,19.0285,118.5049,1.7597403e-06 2113,3.2723308,340.42166,57.37581,141.66766,1.5603999e-06 2113,2.0840511,17.253536,59.81366,117.92543,9.161433e-08 2113,427.45557,5.6411266,47.215393,50.68251,1.5729427e-08 2113,265.0837,6.9504805,43.897186,45.126255,3.2717211e-09 2113,0.97467005,13.914245,13.888044,80.47606,2.164605e-09 2113,228.48233,2.8199513,46.509247,57.593704,6.018646e-10 2113,62.4886,0.0,48.6782,58.113686,1.5794099e-11 2114,188.92862,202.84276,29.94014,57.661148,99.194275 2114,288.51346,210.4453,34.12915,85.51134,96.91222 2114,307.83392,216.73701,35.092438,90.87355,95.730385 2114,230.77542,205.89888,22.756699,50.746933,70.434654 2114,165.7603,199.33179,22.525116,49.74884,2.237824 2114,245.01904,206.32991,21.597412,51.340805,1.7483113 2114,257.2488,204.34183,36.392975,93.95447,0.53696054 2114,284.00827,195.29279,82.27722,167.64792,0.032708682 2114,126.44844,181.87044,45.217285,143.59804,0.008260926 2114,605.91736,106.18727,31.09076,91.338806,0.0053598145 2114,173.89323,180.82625,57.179733,104.74544,0.0021111395 2114,585.2071,94.96375,52.21338,218.13596,0.0007548032 2114,614.8601,270.51883,24.28656,100.730774,0.0005714607 2114,616.2024,155.96785,22.944275,77.17583,0.00028157764 2114,209.13118,155.31412,81.4951,163.30533,0.00014762225 2114,1.4656291,218.50323,20.923998,125.58667,0.00014431555 2114,597.1067,212.78143,41.78192,202.54077,0.000115544106 2114,606.20184,3.172051,32.944824,149.27519,7.541287e-05 2114,608.78595,437.9512,30.360718,67.50351,6.1011844e-05 2114,610.851,317.71198,28.295654,153.07907,5.6218745e-05 2114,4.048659,147.99232,56.539875,215.29536,2.7236634e-05 2114,1.4885523,79.81801,29.325766,171.90744,1.6811051e-05 2114,1.0609546,290.5312,19.814693,138.44452,1.2078984e-05 2114,88.62101,0.0,56.641304,138.34091,1.0067422e-05 2114,0.6779598,386.9377,19.172663,109.77182,5.432015e-06 2114,3.4550002,20.442318,55.31886,105.96838,3.5551934e-06 2114,3.0914893,395.82724,56.51362,97.32065,7.5852836e-07 2114,583.5993,4.947702,48.08203,49.67859,6.9759056e-07 2114,0.8095744,13.303819,14.7611,76.475204,5.1915134e-07 2114,189.6715,34.13801,49.067993,174.23627,2.82374e-07 2114,0.8017676,4.8032813,31.712957,46.687683,5.0928268e-08 2114,320.0961,8.404211,44.19391,46.086082,1.850955e-09 2114,77.262535,1.3063982,49.90036,52.21216,7.909491e-10 2114,291.0119,5.720991,46.559967,52.146484,6.0872346e-10 2114,116.07545,0.0,50.083046,57.07697,2.7057358e-11 2115,314.31567,216.20627,31.042175,87.245605,98.34498 2115,334.07666,222.60631,34.84314,97.060715,97.20946 2115,205.2647,210.24493,27.016876,55.18625,96.09915 2115,184.92485,204.08624,30.218414,58.323944,49.443882 2115,253.82716,213.1692,19.376694,51.13533,10.4035225 2115,271.51044,205.65002,43.62381,110.486145,0.23673284 2115,264.72372,210.04749,21.87851,55.893616,0.08896247 2115,317.25327,203.18034,69.62839,175.2696,0.032475334 2115,133.15161,272.6617,26.57228,63.421814,0.024094246 2115,127.62468,200.6788,41.737946,150.93655,0.0052386182 2115,614.65,187.14665,24.496643,88.00548,0.0016387972 2115,597.0778,193.38641,41.14209,198.55743,0.0016106232 2115,187.80511,184.69829,55.9312,106.581985,0.000843127 2115,97.399635,202.0902,111.67928,214.87157,0.00047688128 2115,600.058,90.76415,39.088684,191.76883,0.00027841478 2115,131.83557,124.938126,42.963913,113.60199,0.00019043252 2115,605.15845,7.474222,33.98822,55.8563,0.00010988506 2115,1.2612566,223.56194,19.437422,137.93825,0.00010763264 2115,610.36676,351.878,28.779907,148.47495,7.5665805e-05 2115,3.9272413,303.9994,56.712025,170.23245,7.528368e-05 2115,619.805,29.07739,19.341675,61.767418,6.9295136e-05 2115,4.5396028,116.61335,55.22753,248.04755,6.29506e-05 2115,1.4447819,316.43372,19.537039,135.99396,5.5261182e-05 2115,156.99812,119.49029,136.016,242.59344,4.1128562e-05 2115,2.0612297,84.575386,29.417866,153.74966,2.4624702e-05 2115,596.93616,9.235098,42.21051,159.6303,8.506225e-06 2115,2.8585937,19.607357,56.482513,112.34357,2.5132704e-06 2115,101.11568,0.6510417,81.56009,196.36137,1.7451235e-06 2115,1.4252132,414.69922,35.132347,83.94742,8.2192645e-07 2115,209.91486,32.031315,48.426727,181.36276,1.4033344e-07 2115,110.75969,2.0676987,53.577103,68.93263,2.4714484e-09 2115,298.15106,3.1584961,45.569427,60.925,3.7682696e-10 2115,90.69362,5.2501936,44.918076,54.048634,3.2174963e-10 2115,145.11176,0.67051923,47.90512,54.06788,2.0633443e-11 2116,316.68973,219.90587,36.334564,108.41258,98.90506 2116,202.40378,212.61064,24.088135,53.124954,98.41179 2116,338.44092,225.48961,35.333893,105.157394,98.303535 2116,185.31033,210.54414,27.848251,53.36949,43.804752 2116,250.58928,215.1199,21.25267,50.335083,7.918799 2116,350.79248,280.3052,21.56195,52.47873,1.3694952 2116,63.33975,240.42868,48.46671,151.21194,0.097101815 2116,277.94467,209.59782,29.871796,78.099625,0.058462378 2116,0.94702315,302.22107,52.31792,167.31583,0.032579374 2116,264.39444,213.14146,22.60019,59.226944,0.02291713 2116,619.1902,132.4673,19.956482,74.44516,0.019340413 2116,309.12112,197.43735,85.37015,186.14221,0.016094342 2116,7.7856236,227.74406,35.93667,98.15346,0.014481833 2116,1.9356495,179.8586,20.653505,145.62831,0.002003048 2116,3.3968327,141.21669,56.29766,263.93134,0.00089319237 2116,604.5142,85.10701,34.632446,147.36508,0.0007749401 2116,22.994493,221.40009,120.199936,218.73734,0.00070752954 2116,610.45807,235.87115,28.688599,136.96872,0.00022656893 2116,176.78133,163.5279,74.80235,167.17465,9.660548e-05 2116,611.4822,365.33215,27.66449,130.96994,5.7497182e-05 2116,584.55896,12.149779,54.587708,108.974236,2.6923533e-05 2116,2.0326514,75.39338,29.723059,187.54465,7.4856566e-06 2116,3.3209896,19.857452,55.59783,107.20691,7.403132e-06 2116,137.3708,253.26352,43.36992,145.71924,7.3477204e-06 2116,1.4928174,397.85257,38.788986,97.88406,1.8105654e-06 2116,0.9043978,12.511615,15.440296,77.829704,2.58791e-07 2116,106.15474,1.3606803,52.893173,66.53375,1.0342833e-09 2116,298.01453,1.1814324,45.937622,65.34488,1.0124114e-09 2116,136.363,0.04496745,51.246124,58.082417,5.870683e-11 2117,333.74966,223.63972,37.29074,117.90767,99.890434 2117,360.27838,224.99724,39.599884,120.20784,99.6046 2117,286.45834,209.77715,33.227142,102.428116,87.00902 2117,213.45197,217.8393,26.702942,46.384613,51.557327 2117,198.21742,217.70851,21.579529,45.61882,18.710592 2117,264.40665,208.36111,33.459442,102.43063,7.73263 2117,262.38855,215.37593,19.993073,53.385056,0.3028195 2117,374.34674,289.16226,24.186096,59.72174,0.09804828 2117,228.7441,206.41386,23.558182,48.394974,0.01718171 2117,257.55026,180.43901,93.1846,186.4186,0.0032393553 2117,314.1316,162.88316,123.35028,249.54683,0.0020513227 2117,124.95194,167.0786,73.17211,180.0663,0.0020029198 2117,3.3333008,323.39804,79.49953,157.34058,0.0017917305 2117,1.8454623,365.1591,18.786037,88.300354,0.0016950647 2117,132.03122,261.54337,35.363846,69.283295,0.0008277988 2117,575.51556,212.92027,36.62378,83.73103,0.0005613652 2117,611.0673,316.03085,28.079346,138.10406,0.00039434372 2117,611.81836,243.40433,27.328308,135.89499,0.00019386204 2117,609.8239,61.459858,29.322754,142.6852,0.00018881868 2117,584.51807,234.1842,53.55902,234.62799,0.00014186394 2117,605.279,6.0324287,33.867676,57.34783,0.00012549457 2117,1.3778565,202.21532,19.416796,129.21196,0.000116401156 2117,4.2633953,125.29387,56.79464,238.64253,9.447172e-05 2117,2.3562744,219.7468,34.795605,222.19122,9.410843e-05 2117,582.7638,10.615625,56.382874,105.19404,7.210029e-05 2117,2.0254118,407.3632,36.84159,87.772095,3.6007226e-05 2117,172.87251,155.02206,90.994644,212.0314,2.5163217e-05 2117,608.3924,437.84143,30.754272,68.749054,2.4066847e-05 2117,1.4692155,92.14463,19.865856,154.75757,8.089973e-06 2117,3.1907358,20.210325,55.92898,104.48454,5.836889e-06 2117,215.37341,33.545982,67.82526,182.3599,3.6952936e-06 2117,0.90125084,12.853122,15.918571,76.32485,1.3927908e-07 2117,311.2887,1.1555078,46.06595,65.41733,8.373741e-10 2117,150.80905,0.0,49.827347,55.96357,8.912827e-11 2118,381.76163,226.9522,46.61145,141.38902,99.935165 2118,321.3542,219.37144,39.76822,98.50636,99.83857 2118,419.14337,228.25021,44.24997,148.64609,99.83212 2118,222.42415,217.37372,25.305313,49.78302,98.62048 2118,305.10284,222.0224,24.600708,65.41345,88.022354 2118,342.8277,223.04175,20.517792,57.698883,56.005024 2118,239.89761,217.37259,25.808868,50.631622,42.655457 2118,433.33923,312.24554,26.395111,59.7695,0.17906475 2118,255.80992,217.26108,21.743423,48.641235,0.17794591 2118,372.30862,185.49564,129.60175,250.2085,0.020307386 2118,0.0,239.95045,29.899506,102.681046,0.019061005 2118,297.39618,189.612,80.826355,181.37878,0.010555974 2118,0.9141032,231.77103,56.1724,185.14145,0.0021336728 2118,605.3614,226.61253,33.65851,159.03712,0.001967182 2118,313.83554,265.151,40.54297,108.98563,0.00041290733 2118,196.8242,163.80704,78.38716,175.21371,0.00021848956 2118,606.1434,437.17752,33.003296,71.80615,0.00018397639 2118,0.77764815,381.9523,54.626865,116.993195,0.00017906926 2118,1.0741919,76.12167,20.753103,141.41185,7.884883e-05 2118,599.8053,18.199337,39.18164,156.99829,5.743755e-05 2118,1.2353231,415.2573,20.369902,92.06979,6.6997904e-06 2118,2.6201432,19.286856,56.64397,112.51034,4.5574225e-07 2118,0.90839034,9.391684,15.835596,84.0026,6.142138e-08 2118,365.35468,5.6930895,46.986572,53.910767,1.3143024e-09 2119,403.73862,222.34631,59.38031,188.59329,99.92932 2119,454.4721,229.84105,66.38043,186.07396,99.89139 2119,351.72458,216.03673,37.823242,103.41484,99.8585 2119,316.01776,216.85573,31.032928,77.406296,99.41439 2119,340.8042,220.0811,24.6221,91.07521,98.98301 2119,220.89427,215.95654,24.478592,48.69583,98.35166 2119,235.356,214.2631,28.00209,49.31633,93.37489 2119,264.19516,216.21573,24.045532,52.19229,12.521155 2119,296.15045,219.49884,18.951263,51.379974,8.169228 2119,399.27435,240.70042,29.64215,94.30315,0.8923795 2119,436.20654,220.78305,49.979248,151.53946,0.10462168 2119,272.60703,218.03941,34.6073,82.60411,0.09480549 2119,466.85117,232.33752,31.200195,65.420044,0.014843186 2119,469.94376,311.9442,31.307983,96.72916,0.012980611 2119,326.4551,195.90839,95.3728,167.20203,0.0063602505 2119,584.0277,384.82974,53.546814,108.96762,0.001976049 2119,1.5269727,212.43643,29.450432,137.86288,0.0004097355 2119,607.73834,439.05725,31.408325,68.27615,0.00014023218 2119,598.3247,207.95602,40.82196,220.63403,7.002396e-05 2119,606.36847,8.072933,32.66339,51.252213,5.5497047e-05 2119,473.29745,268.08304,28.313171,72.657684,5.1031442e-05 2119,1.1544466,275.79877,20.463123,137.33145,4.5766235e-05 2119,425.8517,269.3521,28.256226,82.18234,1.4028113e-05 2119,258.67447,17.36036,69.526794,207.28757,3.4343684e-06 2119,2.4681592,22.028418,57.537567,103.175804,2.906095e-06 2119,1.2306446,349.54306,33.32457,142.38293,2.0854905e-06 2119,1.0198568,444.26147,21.705305,58.938385,1.3617504e-06 2119,1.7981722,39.69615,35.65091,210.17578,1.3135651e-06 2120,507.38516,229.8046,80.33066,249.9036,99.88888 2120,418.78827,222.65135,44.512146,111.02397,99.88022 2120,569.5709,247.33662,68.73944,236.04546,99.81092 2120,367.8343,225.01305,31.876953,82.59688,99.78941 2120,402.51807,224.96008,26.68518,96.37744,99.03233 2120,308.82104,215.5655,28.266083,75.543594,97.35531 2120,387.4048,217.76454,26.64029,94.46068,84.39451 2120,287.0078,222.26079,21.65274,51.740524,4.4829206 2120,258.81564,222.37152,20.28537,46.5,4.3145127 2120,579.96027,248.43263,33.603516,80.176346,1.7002722 2120,555.368,248.92139,45.781616,144.60678,0.3145441 2120,447.7942,232.9976,32.89212,97.91469,0.18854243 2120,607.7876,242.86232,31.255371,140.02592,0.016450232 2120,580.41364,304.68704,35.89337,106.069,0.0123901805 2120,598.1622,327.3866,24.973999,57.93521,0.00954962 2120,608.00055,325.62726,31.146118,139.38312,0.00944365 2120,529.45245,303.39786,38.161804,124.725464,0.0011465716 2120,375.35532,161.53354,130.02255,242.93079,0.0009002329 2120,267.47104,142.19427,129.21768,247.21799,0.00015615158 2120,605.106,426.7516,34.04065,73.97104,0.000120626195 2120,606.14374,6.5118313,33.00293,53.59368,5.8895843e-05 2120,1.072522,63.560352,21.384651,147.68036,2.7021018e-05 2120,177.22597,3.6220639,83.16551,131.27538,1.03025295e-05 2120,1.6420426,418.1074,34.83172,80.72214,6.6736686e-07 2120,1.7694336,13.905674,38.86934,84.948746,2.2352708e-07 2121,530.36914,217.00366,45.433655,135.51187,99.85371 2121,447.3794,217.65056,34.869263,101.169754,99.756004 2121,469.93164,222.10756,29.939087,93.05159,99.04015 2121,493.13065,224.29686,36.129242,114.20244,99.004524 2121,318.43918,214.07652,23.28833,46.626663,22.528069 2121,355.3105,210.65784,33.45117,61.4198,1.142779 2121,533.10504,276.3662,22.227478,73.030396,0.1548719 2121,374.75156,213.68445,28.763824,62.836548,0.119544044 2121,583.17,250.9242,53.76532,208.57172,0.02424038 2121,443.79944,199.57741,95.73334,160.7967,0.014750149 2121,545.0217,257.48895,22.965515,72.62906,0.009498217 2121,491.87772,193.86633,129.8923,215.83948,0.0038399012 2121,609.86505,209.80344,29.281616,158.47568,0.0018549836 2121,409.7063,159.9961,22.97934,47.253677,0.0009557598 2121,1.1018018,221.41273,19.778566,131.70781,0.00011972845 2121,596.8949,392.75015,42.25177,106.433716,9.132504e-05 2121,3.3043978,215.78706,59.441536,207.50899,8.0664584e-05 2121,1.2341585,278.9705,28.341545,139.04572,5.661921e-05 2121,298.158,157.27547,76.911194,165.96758,5.3328567e-05 2121,600.2922,74.702194,38.376038,204.74825,2.4233223e-05 2121,1.6707438,114.093544,33.260067,201.12158,2.2258575e-05 2121,1.1666602,20.880827,30.14044,141.67201,1.4615809e-05 2121,0.73100346,366.34787,20.106062,130.0798,1.0544392e-05 2121,585.0624,16.792511,54.01062,103.34422,8.286814e-06 2121,390.95093,40.297253,44.76407,148.65295,5.5340824e-06 2121,3.3417969,388.22043,55.91887,105.55548,1.7427386e-06 2121,0.7390365,9.281049,21.4622,53.722744,1.9072081e-07 2121,6.9786086,2.4107325,46.55124,51.405293,7.6814295e-08 2121,37.133125,2.2906642,50.81227,52.013134,6.6142793e-09 2121,157.52193,3.7415009,45.73268,46.929966,6.2530354e-09 2121,477.49277,1.3386524,45.618195,51.482746,1.8160409e-09 2121,264.71896,2.0441635,48.36493,60.107506,1.0480371e-09 2121,195.39703,5.3990984,44.370728,46.02835,1.9477506e-10 2122,572.9977,224.41852,59.847534,169.63571,99.94512 2122,458.83762,225.803,40.82129,118.94893,99.84981 2122,527.3356,225.04794,46.411377,143.20364,99.37377 2122,490.08752,228.79005,31.246643,123.228806,99.17027 2122,515.1967,217.60532,30.287537,129.11679,87.009 2122,295.82355,215.26422,28.687653,47.552612,4.8498387 2122,341.77826,207.76106,40.9812,72.07988,3.8006685 2122,577.92773,292.85754,28.513489,86.3638,0.41848895 2122,608.209,242.26944,30.937683,120.19382,0.32235596 2122,482.08688,265.68387,22.845734,76.13489,0.17463055 2122,592.7322,280.9886,27.59552,77.36777,0.0093199955 2122,443.99277,188.84996,137.76114,229.25157,0.007529435 2122,287.75937,208.33243,43.0419,112.9603,0.0031854636 2122,129.66783,281.03287,46.112778,158.6438,0.0008721824 2122,609.45276,326.347,29.693909,155.64215,0.00057499 2122,2.606854,175.63213,32.90538,180.40584,0.0002150372 2122,609.11035,437.51044,30.036316,66.125824,2.3240233e-05 2122,608.3244,8.238723,30.822266,49.8637,1.4715614e-05 2122,1.5866212,332.03607,32.490368,153.43811,1.1935994e-05 2122,0.98369795,441.87204,21.906715,61.128326,2.707446e-06 2122,1.6191081,36.501724,36.17725,200.8726,3.2767704e-07 2122,1.9917953,18.850208,37.28539,69.471985,6.21978e-08 2122,236.8104,0.0,87.76929,167.28203,1.0376646e-08 2122,32.45198,6.085757,46.52732,48.66345,7.940538e-10 2122,249.9811,0.0,50.678482,68.6001,7.8714446e-10 2122,481.9876,4.772469,46.701416,51.82411,4.3408765e-10 2123,471.27856,231.25504,67.447754,185.04376,99.95653 2123,579.4288,234.04332,58.614136,194.68095,99.883026 2123,511.22284,227.46803,66.21295,193.85692,99.8117 2123,262.528,214.70203,37.45941,90.71533,99.76977 2123,351.0882,216.21411,25.38031,56.62973,62.030006 2123,584.6937,240.8115,28.44574,82.823364,18.84752 2123,88.43697,202.11523,27.613419,67.49338,8.853889 2123,419.15912,211.60535,22.445282,47.113495,2.187695 2123,509.2415,310.74936,27.31131,106.77075,1.1037697 2123,613.32983,234.8987,25.816833,116.49333,0.027362986 2123,525.9462,307.7148,22.20288,74.74243,0.027311895 2123,432.45093,212.60025,23.387115,48.245575,0.024878286 2123,0.0,371.71887,59.797787,139.33807,0.024736563 2123,314.80292,216.5157,23.002777,51.15419,0.019451782 2123,539.8628,313.51233,22.330444,64.70282,0.016958835 2123,598.25275,271.7267,26.176086,70.54495,0.004222651 2123,240.06422,182.18945,73.238266,164.71518,0.004134036 2123,529.2969,221.3374,26.932129,62.374176,0.003009799 2123,1.9935368,427.9256,28.574856,83.22107,0.00032867864 2123,535.73224,270.94543,26.970825,76.08969,0.00024584276 2123,596.77814,405.6783,42.04779,93.30649,5.6201323e-05 2123,608.7566,7.856478,30.390076,50.130253,1.5167411e-05 2123,1.6586133,125.760574,33.89607,202.73335,1.3192714e-05 2123,488.29907,271.85968,27.560547,94.44055,1.8551135e-07 2123,1.103418,10.604535,38.05855,80.1945,1.1185883e-07 2124,229.70006,216.83481,43.997147,107.70184,99.753235 2124,533.5734,246.69615,70.37256,199.84377,99.44733 2124,280.4375,224.5824,35.41931,86.31369,99.02642 2124,572.4286,265.50458,66.71808,245.64209,98.79494 2124,374.514,214.60777,22.33023,48.644424,97.84012 2124,403.5483,212.3428,21.54773,50.249573,92.97686 2124,344.3879,215.82384,24.743652,57.068832,36.988434 2124,2.6075325,193.81479,39.869007,86.144226,4.7976847 2124,327.8787,216.67104,28.580292,61.32518,0.2250394 2124,387.64133,214.38496,21.994568,46.740524,0.15982814 2124,302.37146,226.70415,32.12207,77.43004,0.025014428 2124,545.26465,308.97714,25.597961,82.25458,0.013041029 2124,608.3285,223.2647,30.695312,150.31242,0.007896482 2124,251.98277,193.57483,80.184586,162.10199,0.0069843656 2124,558.66,330.7648,26.38855,75.03766,0.005096136 2124,3.2472298,391.88675,62.306168,113.37857,0.0016250442 2124,600.47546,419.89233,38.671204,85.35715,0.0013736972 2124,507.24503,190.41113,67.92703,195.09082,0.00061119616 2124,614.8401,464.17047,24.30658,46.881927,0.00025799577 2124,2.0326855,264.58307,35.80486,213.12695,4.9430007e-05 2124,1.8704574,435.76974,23.750252,72.81302,3.0527244e-05 2124,608.5564,8.592692,30.590271,49.719364,1.7135657e-05 2124,1.5128402,11.077113,38.76663,78.88523,2.2929363e-07 2124,454.29236,4.8812046,46.896545,55.466026,1.7697818e-09 2125,295.05338,214.22658,37.604797,94.61244,99.820114 2125,254.43155,227.90039,37.55072,94.585785,99.81694 2125,178.6793,223.40938,56.341278,144.98537,99.77723 2125,317.1186,219.55586,34.065186,81.5121,99.45675 2125,366.62723,215.99394,23.132812,51.235825,95.8469 2125,389.48654,213.30667,20.411713,50.835876,55.22313 2125,204.05902,244.26558,24.893036,54.587204,2.5568862 2125,402.037,216.24254,20.53778,47.455063,0.20866352 2125,276.715,218.0899,29.914856,86.44058,0.06426068 2125,266.53394,184.20349,88.15698,181.94296,0.011049848 2125,194.22076,260.3057,27.11464,67.86987,0.008924876 2125,151.09825,165.33356,127.85716,223.61606,0.0034160134 2125,610.29944,132.44107,28.847229,141.93259,0.0012709543 2125,351.07495,185.74582,61.568115,106.06326,0.00093440904 2125,435.98013,221.40941,44.480408,158.48933,0.000695696 2125,312.22302,134.34889,146.82312,234.25087,5.9804097e-05 2125,609.3808,8.888809,29.76587,129.94737,4.691683e-05 2125,1.2435685,185.7511,20.916874,132.12662,4.0994168e-05 2125,610.8424,252.0386,28.30426,140.57129,3.9012742e-05 2125,1.1095777,91.731155,20.459066,129.36932,3.3948818e-05 2125,602.1381,333.30774,37.008545,154.43799,1.829991e-05 2125,321.6941,18.785059,48.777985,206.35796,1.3401467e-05 2125,0.9972063,264.12814,20.115025,132.2352,6.9223875e-06 2125,0.7960653,362.0097,19.451458,131.81973,6.223892e-06 2125,3.5745428,147.66974,58.31413,222.7637,3.229098e-06 2125,3.0654314,397.77234,56.643353,96.52951,1.0214437e-06 2125,1.2316211,18.909786,30.09514,137.07812,5.740785e-07 2125,427.4382,1.3026367,46.660706,63.623627,1.4093523e-09 2126,221.44264,214.54094,40.182693,105.49989,99.934975 2126,248.77586,222.7699,37.50276,98.18945,99.92911 2126,168.81195,233.9337,51.8499,114.19902,99.84003 2126,23.4488,224.84834,99.42203,220.3796,99.764244 2126,348.6259,211.80138,25.899841,52.50737,42.632942 2126,272.21512,215.73706,24.899902,47.928284,5.3512754 2126,334.8153,210.7355,23.228241,55.42874,0.88232076 2126,192.22133,189.37566,101.59276,174.75462,0.03746093 2126,54.739063,294.05676,24.971851,69.440186,0.03699441 2126,320.24777,213.65544,24.035828,53.13701,0.023144267 2126,73.14924,277.81476,36.5951,109.48682,0.014223671 2126,410.7459,128.60378,29.375244,63.77469,0.0028032698 2126,393.50732,127.12426,26.669006,64.78701,0.0019383082 2126,2.7620833,379.6715,56.38741,105.40497,6.0106504e-05 2126,65.55504,269.44574,25.87011,72.45422,4.713236e-05 2126,606.82544,5.3766994,32.321228,56.4505,3.978599e-05 2126,1.8420427,257.4191,32.832726,170.55264,2.9880686e-05 2126,1.1223698,124.71899,19.688375,132.35458,2.3398976e-05 2126,609.63556,443.07562,29.511108,60.98761,2.0125448e-05 2126,598.08185,12.11681,41.06482,166.63335,1.0888034e-05 2126,600.4831,221.13094,38.663574,196.50148,6.0248603e-06 2126,585.6512,395.64413,53.495483,98.85687,5.1991165e-06 2126,0.8896965,441.64825,21.8007,61.6752,1.5384544e-06 2126,1.1715755,8.36271,22.188034,54.29737,5.491618e-08 2126,399.80637,6.7214503,48.76526,54.48662,4.194816e-09 2127,117.12013,209.09648,52.473557,132.9882,99.961975 2127,158.61256,225.45787,45.526993,110.76845,99.94119 2127,43.407524,239.85553,65.62571,144.93088,99.91223 2127,297.3184,213.63985,26.974976,53.682907,3.5691538 2127,282.86237,212.83769,26.367462,55.02327,1.9960515 2127,243.73766,214.31989,34.859238,73.612946,0.117578216 2127,336.68665,115.05232,33.914062,85.628174,0.010797663 2127,223.04819,175.36888,43.627075,116.6371,0.0071125533 2127,19.388348,167.29672,129.56584,272.2196,0.005362765 2127,109.89745,159.39154,128.82663,245.2724,0.005017132 2127,346.4082,92.70085,46.645813,135.88817,0.000842472 2127,68.66879,270.03708,29.702652,68.99808,0.00023626715 2127,2.951735,127.70913,60.109215,246.74545,0.00019799163 2127,584.0951,14.482344,54.770264,112.04706,0.00015760968 2127,233.6747,139.96411,36.894547,83.050186,0.00013681884 2127,205.07101,138.83406,95.17737,218.99834,0.00013468506 2127,0.5952026,88.069016,23.733229,156.66505,0.00012153935 2127,610.87805,279.73035,28.268616,140.71518,4.4794317e-05 2127,1.0657748,237.25844,20.306774,129.42198,2.86382e-05 2127,0.7931812,307.13922,20.039415,135.3309,9.673439e-06 2127,585.80066,394.3859,53.34601,99.94849,5.5938085e-06 2127,204.41257,0.0,64.75217,223.67175,5.3085305e-06 2127,0.9633374,444.05344,21.540098,59.260437,1.4670266e-06 2127,2.7806673,391.7663,56.68306,100.59137,1.1909633e-06 2127,357.80365,8.166053,47.824646,49.45557,3.8944595e-08 2127,1.0094792,8.640866,33.258797,146.88219,1.517435e-08 2127,1.1521534,5.987513,20.930798,59.87821,6.4086154e-09 2127,204.89258,0.0,54.750366,71.587395,6.365053e-09 2128,97.62762,215.86176,57.593056,148.93893,99.95621 2128,51.40764,205.95729,65.48752,164.93022,99.94282 2128,303.48077,210.3383,22.427826,45.846756,2.7545047 2128,232.95065,215.56532,35.72522,81.108444,0.2525911 2128,22.091208,135.3128,138.2437,297.9672,0.07353868 2128,77.4318,206.58083,30.59613,70.702286,0.056711406 2128,317.73657,213.40697,38.127655,83.01326,0.025166767 2128,339.9871,118.080185,24.635681,67.04883,0.005786834 2128,119.53775,239.62537,26.992813,62.740417,0.0022097095 2128,3.2699025,143.70462,58.39357,235.47485,0.0007190389 2128,611.1449,218.1004,28.00177,137.5173,0.0005813922 2128,1.407181,175.2934,22.252178,157.14886,0.00048466408 2128,207.55347,204.7493,68.376526,168.8826,0.0004662495 2128,345.92038,89.795135,41.805145,121.31033,0.0001998109 2128,607.27716,8.001641,31.869507,124.799904,0.00017961142 2128,343.39526,229.234,41.585693,141.01106,0.00016509162 2128,611.3005,128.61758,27.846191,133.06064,0.00015349934 2128,0.6310881,271.27277,19.641943,141.78973,7.720919e-05 2128,601.7214,286.39908,37.425293,195.95432,6.182411e-05 2128,76.87152,243.7926,28.054077,81.77557,3.6451438e-05 2128,609.6902,442.04907,29.456482,61.57776,1.8967836e-05 2128,16.914017,27.7975,93.15021,266.67365,7.785246e-06 2128,211.08388,19.702858,48.737503,179.18216,7.137551e-06 2128,0.54813886,384.88327,19.656454,113.373566,5.8000887e-06 2128,2.1178484,15.856833,59.18011,106.55068,5.2304376e-06 2128,2.8550115,394.73776,56.51546,99.42648,5.4904683e-07 2128,2.1620574,36.922306,30.533365,182.1802,4.365535e-07 2128,169.74835,0.0,119.42941,253.19821,2.787762e-07 2128,1.1488062,7.082442,24.9972,58.49421,1.1562774e-07 2128,363.4911,6.722451,48.696503,51.768364,9.52667e-09 2128,201.26697,0.0,52.176895,67.77351,3.1992984e-09 2128,161.92102,2.175013,47.31656,60.212833,1.574514e-10 2129,0.0,214.08246,59.15878,196.53067,99.88762 2129,34.62771,218.68881,82.8762,204.73166,99.88263 2129,355.46124,218.75224,34.18988,78.1776,99.86794 2129,383.40356,234.80913,30.905853,58.94078,1.257797 2129,247.18782,215.80846,21.994492,46.641617,0.089875676 2129,69.00675,217.73569,42.960922,105.78754,0.067163646 2129,135.02414,226.01245,22.569641,45.82547,0.032802742 2129,337.74188,186.81448,68.85568,157.06567,0.0055187657 2129,0.7461955,162.89015,24.508894,191.26268,0.0043986756 2129,609.6082,198.01659,29.538452,129.68193,0.0028781374 2129,24.137094,250.3417,24.556986,66.47394,0.0014995002 2129,48.738815,243.3544,42.9216,111.01749,0.001069499 2129,1.6233675,24.88528,49.69614,196.79565,0.00010487145 2129,599.4854,16.77761,39.661255,158.38315,8.8598295e-05 2129,7.040962,245.69516,26.450867,72.131805,4.847168e-05 2129,608.89044,440.00668,30.256226,64.80521,3.9858223e-05 2129,583.7461,394.21884,55.400574,101.41913,2.0397587e-05 2129,605.7076,6.0569663,33.439087,60.516956,1.020708e-05 2129,3.447059,379.14722,56.20117,113.4729,9.911474e-06 2129,1.2536467,315.47833,21.205475,160.35278,8.561878e-06 2129,18.77341,273.51,24.235195,83.1463,2.6630216e-06 2129,1.017391,3.9323828,27.942564,71.83892,2.1001763e-06 2129,0.91033936,441.23547,21.539183,62.402313,1.552139e-06 2129,197.61732,0.0,68.46623,193.75526,1.0915206e-06 2129,71.733055,276.09494,26.56076,87.4899,2.314259e-07 2129,364.90445,4.2674055,50.696228,57.747906,4.3860875e-09 2130,382.66147,225.37013,48.888397,110.61534,99.80999 2130,0.0,234.4233,56.711643,229.2289,99.76648 2130,312.76862,212.31123,27.03836,69.02629,94.359955 2130,298.33517,212.52019,26.032928,67.301834,60.779457 2130,292.15686,216.636,18.565521,45.597763,15.379342 2130,411.55038,238.91734,31.618286,75.493,1.6378971 2130,232.4952,216.51315,26.428574,47.09375,0.48052222 2130,20.24739,279.03314,31.413795,77.48175,0.28419986 2130,116.22374,233.3758,24.798447,52.8873,0.20772952 2130,0.0,285.8393,19.413675,89.4548,0.012153782 2130,66.44197,216.79857,33.990807,52.901627,0.008936544 2130,293.40045,185.52385,65.713745,163.20226,0.0011749901 2130,5.8634033,123.18114,46.18883,174.8394,0.0011704025 2130,607.2249,224.26082,31.921753,156.2412,0.0006475111 2130,355.74136,131.13126,34.510223,91.866516,0.0003934621 2130,1.4556731,157.63919,23.205261,171.91684,0.00038580847 2130,611.0507,317.54257,28.095947,134.45432,0.00025613996 2130,599.2044,13.038763,39.94226,172.28407,0.00020921814 2130,341.18323,140.08058,130.57721,246.364,0.0001614624 2130,182.28532,234.18323,44.50525,141.05411,0.00013697393 2130,584.78033,377.47388,54.300903,113.66281,5.1199862e-05 2130,605.4047,5.725355,33.741943,64.85195,2.274912e-05 2130,0.66804284,346.0517,21.525206,150.29904,2.1696642e-05 2130,6.7105365,325.78986,24.21779,82.851715,1.1119523e-05 2130,1.8369287,19.85891,57.96505,110.78231,2.6220753e-06 2130,209.4242,0.0,53.96631,210.69308,3.561945e-07 2130,363.91653,5.799232,84.34732,228.96396,2.821156e-07 2130,0.93935794,8.951436,23.92185,58.664005,9.655436e-09 2130,378.49155,4.5007067,49.687805,57.21272,1.3152753e-09 2130,406.66193,5.9792156,47.52475,50.00331,5.085231e-10 2131,420.1429,228.4896,60.36966,148.79388,99.94928 2131,302.00446,217.52222,28.3992,77.630585,99.527596 2131,318.17264,214.11131,25.80655,73.023056,98.46049 2131,205.35661,218.6023,24.689438,48.659058,0.650041 2131,18.845493,212.5525,42.672855,75.2245,0.05110669 2131,284.5223,213.88411,30.452087,71.39961,0.040121607 2131,332.8627,217.91805,20.149689,49.12239,0.030873632 2131,171.12698,217.07504,34.75992,76.33075,0.0076401704 2131,296.32346,188.30225,64.56195,163.29965,0.0044099228 2131,609.1088,167.02122,30.037842,147.47533,0.0021437341 2131,386.7418,170.3918,132.42288,251.51796,0.0014069785 2131,446.4641,278.56778,26.7984,70.50467,0.001133523 2131,0.6280005,260.1345,20.646349,140.52707,0.00092930795 2131,1.1517944,205.94684,17.64209,71.354675,0.00089486013 2131,1.1110401,121.50206,34.263863,215.00148,0.00081063434 2131,612.0063,323.06924,27.14038,132.16983,0.00059444946 2131,586.22034,182.54047,52.92633,248.35541,0.00033608815 2131,4.1394076,206.70717,59.908657,245.40306,0.00030164706 2131,609.1346,38.31727,30.012085,130.0835,0.00020987123 2131,615.9333,264.2735,23.213379,85.147766,0.00018087622 2131,156.30449,223.72194,57.45964,141.9363,8.852659e-05 2131,386.98798,88.89288,39.95572,93.32475,8.8090084e-05 2131,236.12993,164.05124,102.465744,205.9556,8.489156e-05 2131,609.3228,436.57758,29.823853,66.843414,7.572782e-05 2131,586.4085,386.51996,52.73816,100.62833,5.485598e-05 2131,0.6092562,315.6712,33.35797,162.85355,2.8322487e-05 2131,430.98972,262.06564,27.163116,88.203156,1.7440994e-05 2131,606.79834,10.507119,32.348328,53.125362,8.685435e-06 2131,1.5813135,19.499662,55.553974,113.883835,6.3781017e-06 2131,1.2693352,54.875866,21.772987,132.67291,5.7551724e-06 2131,0.87007,443.05908,21.898989,60.3627,1.8267366e-06 2131,207.8514,0.0,51.92482,206.91423,6.808787e-07 2131,0.6056885,10.679515,15.836548,86.205696,2.335308e-07 2131,371.90576,2.9301596,50.342102,62.78739,6.9146444e-09 2131,413.8638,6.0389667,46.761047,49.30668,1.8931658e-09 2131,218.62428,0.0,50.370834,59.851265,7.051608e-11 2132,516.2971,235.08733,75.98413,216.20107,99.87018 2132,114.66868,209.35085,47.656975,129.74269,99.869545 2132,319.20535,216.99576,32.8898,84.25891,99.763176 2132,337.50592,214.42805,30.52707,83.44942,99.29932 2132,154.84793,211.78639,44.99829,92.08989,80.42013 2132,531.0751,213.79988,38.94403,81.52074,4.4181647 2132,7.4254446,217.16278,37.78764,80.693146,1.3571184 2132,360.05386,217.69565,24.144135,60.668304,0.3976158 2132,527.51135,273.60983,35.268982,110.16214,0.010439633 2132,318.88162,189.35455,66.50366,154.24506,0.008502166 2132,94.10174,227.97589,22.544525,49.558685,0.0056981007 2132,548.5425,315.12643,28.761353,68.727875,0.0016783106 2132,408.9718,84.263725,36.887573,89.09545,0.00067731447 2132,69.598755,149.58946,135.78183,264.4776,0.00034729514 2132,1.2942611,229.33435,20.244389,146.04953,0.00024854124 2132,585.33405,389.9068,53.662292,102.27234,0.00011363793 2132,597.00525,202.15756,41.747437,193.85349,0.00010211495 2132,608.5779,439.23672,30.568787,64.63605,5.3917152e-05 2132,1.9933423,73.08513,35.351044,217.78542,4.8660324e-05 2132,594.97864,16.319378,43.330444,83.16809,2.9176039e-05 2132,1.0389104,351.13068,32.520878,139.20966,2.6529835e-06 2132,0.9232975,443.61777,21.79728,59.65448,1.7226453e-06 2132,2.0900211,19.484917,36.445633,75.508965,1.6249369e-07 2132,209.69836,0.0,66.09189,207.19254,8.975364e-08 2132,572.4748,9.183232,46.777344,51.418827,2.2513666e-08 2132,224.81213,0.18443686,46.238434,59.321228,2.8371905e-09 2132,406.1322,4.429616,47.15927,58.01166,1.2944519e-09 2133,64.06999,214.20499,62.571,182.86737,99.899574 2133,120.80198,226.8475,34.255424,113.53174,99.87585 2133,343.63916,215.51202,35.66382,94.447296,99.823524 2133,139.68324,228.89761,36.52867,107.17401,99.372604 2133,290.37976,215.99556,20.516022,47.217545,54.611702 2133,363.91745,214.81891,30.61206,83.65497,22.090185 2133,381.78442,223.26035,24.069244,63.450867,0.51493365 2133,320.30658,212.13889,22.709564,49.21402,0.122418895 2133,102.19665,201.98357,98.66302,182.33336,0.019864505 2133,433.6588,68.42941,45.776245,109.63922,0.01902451 2133,81.61803,212.41803,32.761414,72.867065,0.0022377186 2133,316.74588,189.02298,90.65912,169.95554,0.002010575 2133,90.92397,261.3535,27.010223,72.40375,0.0007999191 2133,496.05075,201.15414,40.517,90.29663,0.0007795002 2133,565.6587,226.80557,25.672913,55.74698,0.00064992375 2133,1.3864193,195.69879,33.458786,196.87851,0.00054970273 2133,598.9659,271.59457,39.91272,209.318,0.0004356689 2133,610.6074,96.14181,28.539246,147.6322,0.00015182696 2133,0.52035564,302.51132,20.332308,144.27634,0.00013027857 2133,1.4508708,98.25084,20.559635,140.39479,6.558186e-05 2133,608.92834,434.92206,30.218323,69.00104,5.9682792e-05 2133,608.2411,5.9954705,30.905579,55.21198,2.4129264e-05 2133,2.9031203,388.07767,56.375084,103.7977,2.1439732e-06 2133,0.9185295,443.0117,21.851793,60.130188,1.7716623e-06 2133,1.3866537,18.072058,29.656895,122.761665,5.077834e-07 2133,223.30159,0.0,66.83342,206.95828,2.0782664e-07 2133,439.51157,7.1814713,47.604797,55.69815,7.3966286e-09 2133,238.5347,0.42260092,47.233185,60.12673,2.8902978e-09 2133,401.18588,2.271657,49.586,58.325527,1.4110757e-10 2134,63.857853,231.0008,58.505352,166.32245,99.920395 2134,107.1318,235.88531,61.478355,156.70203,99.912544 2134,360.23877,217.18031,36.7695,101.24266,99.85221 2134,380.77338,216.33058,34.726593,98.40874,99.81266 2134,42.650463,240.47559,37.294575,75.12167,22.277843 2134,0.8824414,239.63425,57.260216,226.5859,11.700326 2134,334.51074,211.89717,22.56604,50.468613,0.5350263 2134,581.95386,258.82382,52.56659,135.09235,0.27369395 2134,551.9638,223.05605,34.701965,91.387924,0.08140688 2134,416.63785,226.24977,43.712585,151.2271,0.013822389 2134,52.633675,184.12335,139.5047,254.21082,0.013364667 2134,612.5691,278.92838,26.33545,95.434814,0.011775784 2134,349.3075,189.61792,92.03018,176.2789,0.0079481015 2134,458.9571,71.97697,40.93979,86.01307,0.0049069487 2134,1.3803679,175.5447,28.60116,192.24199,0.0006415145 2134,0.70360273,349.18097,24.563473,145.48608,0.00027490495 2134,1.4045988,102.753334,21.124731,133.22443,6.0932645e-05 2134,594.95996,10.7957325,43.849426,80.60315,4.7121124e-05 2134,598.2897,403.98105,40.856995,94.92432,4.038537e-05 2134,84.62277,262.50012,27.561218,86.99658,8.839728e-06 2134,1.6273601,23.504702,34.373417,149.15358,1.6820022e-06 2134,0.70368654,7.6711035,24.49342,63.853935,2.5886308e-07 2134,472.52408,9.449085,49.55252,48.607544,1.3516777e-08 2134,419.3185,3.6809247,51.59436,55.95415,8.364578e-10 2135,396.59485,211.57663,39.58072,110.221985,99.92811 2135,371.63492,213.15802,41.014557,109.82062,99.89612 2135,22.220238,247.86168,84.42277,238.92204,99.78424 2135,1.8013152,248.19157,39.98883,170.73354,70.72174 2135,53.4952,303.49533,24.161758,64.338165,0.05272656 2135,604.967,223.0594,32.73944,81.92616,0.049638197 2135,601.9923,33.732018,37.154358,100.99746,0.047490925 2135,70.12896,285.5061,31.234154,99.21567,0.03883246 2135,36.704475,289.20343,33.841385,108.08969,0.014663948 2135,454.96048,221.13396,56.334747,155.75734,0.0058237477 2135,471.08932,55.012104,46.342743,109.98297,0.0032128114 2135,0.6668213,328.9064,20.122643,150.47934,0.00059976 2135,467.89297,269.10898,28.302917,72.19852,0.00042873377 2135,353.46207,155.27014,126.007904,241.87616,0.00036626158 2135,1.4903972,367.32507,59.801838,119.67795,9.512499e-05 2135,585.7076,392.90417,53.108643,97.8302,9.00354e-05 2135,608.8949,439.1048,30.25177,66.00006,3.67592e-05 2135,1.9087061,50.73689,34.949543,194.05785,3.3842398e-06 2135,0.6058488,437.1975,22.16996,65.33948,3.2967953e-06 2135,1.9862809,18.15456,38.075333,75.46318,7.229591e-08 2135,463.04532,6.409922,47.69226,51.065228,1.0816933e-09 2135,415.8982,5.841924,47.8992,50.37716,2.3666796e-10 2136,417.18884,216.03145,35.549255,106.12868,99.78635 2136,392.0954,215.19193,40.71347,112.674286,99.76041 2136,311.98074,218.57767,31.297028,70.9288,29.175217 2136,552.3534,222.30376,24.025452,50.173996,6.20719 2136,575.54816,226.41829,22.641663,50.868942,5.077724 2136,395.84576,220.91476,23.173248,56.981476,2.3876355 2136,410.0683,219.28319,21.028412,52.466232,1.6667634 2136,533.0681,232.05641,26.260193,45.314255,0.4353808 2136,423.066,218.72638,21.227081,49.68921,0.09409824 2136,299.76428,216.01793,22.695465,48.12535,0.0582363 2136,574.9371,409.94217,59.64081,86.40915,0.023026554 2136,501.96033,399.0026,73.63104,92.877686,0.006939751 2136,610.2767,216.99498,28.313477,126.252365,0.0019143223 2136,610.2295,456.36548,28.917175,54.78119,0.0011713473 2136,504.20245,237.88795,46.07361,167.99275,0.000660844 2136,471.11127,272.8374,133.49017,222.30801,0.0005888365 2136,373.0259,160.19626,125.20468,240.94485,0.00031772585 2136,488.7261,57.222084,39.081573,85.94929,0.00026706012 2136,269.52222,144.6739,128.20044,223.35469,0.0001707199 2136,1.2464486,179.56543,19.261284,129.23871,7.02682e-05 2136,597.67377,11.144323,41.4729,83.89195,2.6091448e-05 2136,4.212074,203.58795,55.710464,231.02206,2.0024858e-05 2136,600.8032,35.27163,38.343445,214.73221,1.8503619e-05 2136,0.6520345,289.00555,19.617052,142.89157,1.6189493e-05 2136,1.2923592,69.48308,19.904972,136.69823,6.229569e-06 2136,1.4150082,365.24292,32.407402,127.50833,3.7142734e-06 2136,1.0582292,443.9696,22.100132,59.215942,1.7690218e-06 2136,2.714004,21.456573,55.610905,101.54998,7.4360173e-07 2136,510.3957,5.788446,46.53833,45.258827,2.1939861e-07 2136,0.93132854,15.426403,14.435453,72.70708,8.9204256e-08 2136,1.0366846,5.633003,31.867086,45.74892,1.814726e-08 2136,476.072,4.008887,48.66159,59.170013,1.3189689e-08 2136,269.6581,0.0,50.006104,64.45049,4.6708983e-09 2136,61.019596,6.11208,44.65343,50.602753,2.8876033e-09 2136,87.234634,5.7470884,44.659042,48.659668,1.2186044e-09 2136,423.6837,4.0923815,46.68689,51.583942,1.1608725e-09 2137,451.7046,215.49597,35.096893,115.69644,99.7514 2137,428.2635,218.7379,40.409973,114.511765,99.49579 2137,333.05246,220.26953,30.43097,72.30203,93.16335 2137,518.28046,239.45183,42.329224,114.03093,89.27968 2137,557.51984,227.20685,25.751465,59.18689,80.864975 2137,609.1275,228.30357,29.898682,63.549698,68.394966 2137,318.2391,221.85982,25.918121,68.12111,35.18856 2137,580.3447,229.21274,24.576721,57.6716,15.59693 2137,422.94473,220.43056,23.89798,48.739975,1.2009376 2137,531.0043,242.57053,22.77246,58.615936,0.34696534 2137,544.32623,236.21013,27.112305,71.97829,0.15544581 2137,602.5283,206.99623,35.85193,221.38005,0.013602414 2137,495.94345,213.6548,94.388336,194.11858,0.012637139 2137,569.9804,417.58057,68.0354,91.60574,0.0010705704 2137,313.20053,209.66272,65.45657,150.92975,0.000782668 2137,405.73068,149.1525,140.81436,256.88028,0.0005767386 2137,1.1205714,247.67514,19.959621,132.84897,4.4811066e-05 2137,1.9117432,84.85382,34.42863,193.91217,3.3094402e-05 2137,584.0529,13.714815,54.769897,111.61382,1.6426415e-05 2137,1.2729883,327.34476,32.956394,160.51016,5.1990673e-06 2137,2.6545086,23.869568,54.83435,102.93027,1.4199395e-06 2137,47.1326,7.3351693,45.69552,52.135666,1.4438629e-07 2137,450.23627,4.2334504,49.233704,60.243233,1.19614345e-08 2137,74.10384,7.7978387,45.16056,50.686485,9.59855e-09 2137,508.47787,4.711579,50.821198,59.92302,9.2088355e-09 2137,101.51468,7.398906,45.038177,51.25596,1.84984e-09 2137,485.69434,3.4940708,46.923645,51.966866,1.7006965e-10 2138,382.93732,222.34282,33.69742,79.29265,99.876236 2138,568.81775,247.74657,55.01538,162.16759,99.82924 2138,361.03268,222.91281,31.067871,77.75281,99.82525 2138,488.957,221.2156,37.574493,116.72232,99.78769 2138,509.0272,212.73903,40.016754,127.24312,24.454077 2138,602.83167,226.51285,35.437195,189.91464,12.79875 2138,583.2272,243.86087,30.122375,89.17139,1.1593585 2138,619.0353,228.49075,20.11139,98.2077,0.64537805 2138,598.1014,229.87907,27.571533,89.515884,0.13656853 2138,608.2187,361.0058,30.282104,102.43878,0.105382785 2138,448.2651,150.03671,129.78073,255.6572,0.0012104312 2138,344.73026,192.34827,72.16589,146.07535,0.0009946139 2138,578.2647,289.07846,28.017273,87.83896,0.00025597465 2138,601.6681,3.5038412,37.478577,64.65167,0.00013233192 2138,1.7573959,148.59062,33.411346,180.64937,3.6079582e-05 2138,0.8636784,257.82367,19.9926,130.8226,1.9676798e-05 2138,1.3064649,344.8764,32.94312,144.08606,5.4535244e-06 2138,1.0628638,442.50443,21.70498,61.16867,2.0686455e-06 2138,3.127204,27.604607,55.964764,100.848854,5.8379106e-07 2138,156.3235,6.07833,45.60315,50.78374,2.4314586e-08 2138,81.37751,8.501387,44.345108,49.17804,1.650944e-08 2138,116.220474,8.723743,44.669144,49.896187,1.36239064e-08 2138,1.4052832,13.342858,23.590775,52.669876,4.7107216e-09 2138,556.61127,5.131869,51.010193,57.30347,2.9752565e-09 2138,332.14328,0.0,47.752197,63.116238,4.6807686e-10 2138,531.2732,7.3078113,46.705933,54.315437,5.2981692e-11 2139,542.376,223.86844,48.744568,128.68817,99.86512 2139,396.60852,227.13933,34.122772,84.25203,99.69785 2139,417.7425,227.42905,35.14154,88.32254,99.53727 2139,524.3045,227.67781,34.577454,104.140915,28.42429 2139,440.1135,223.07396,21.686676,47.552505,0.60197717 2139,577.18494,234.92087,24.623169,61.65326,0.06931593 2139,376.19183,229.72673,30.496002,69.90953,0.03487665 2139,512.9032,119.72309,22.625305,52.56028,0.00680539 2139,585.7189,20.835417,53.427795,113.03192,0.0047151023 2139,494.49237,160.26898,134.35089,257.02985,0.002887606 2139,496.54663,214.1312,39.055115,70.6358,0.0012954491 2139,609.925,189.1338,29.22168,122.5063,0.0006195772 2139,391.16217,193.49208,91.395874,164.76927,0.00031428432 2139,587.32916,212.96524,51.71869,195.57968,0.00015946236 2139,614.6352,102.59889,24.511475,98.06207,6.7716384e-05 2139,1.9852824,135.14688,29.741625,139.22516,4.7396996e-05 2139,611.859,323.4986,27.287659,138.26932,4.4118526e-05 2139,609.5869,443.5268,29.559753,59.79712,1.9558223e-05 2139,0.8464974,278.73993,19.675442,129.56381,1.7001104e-05 2139,3.1334376,238.52711,58.67086,224.81892,9.949355e-06 2139,0.76690024,362.4022,19.725613,129.5014,6.287992e-06 2139,585.6373,396.03726,53.50934,98.13992,5.831615e-06 2139,3.114704,25.68104,55.981403,98.14087,1.9265353e-06 2139,3.124284,396.19397,56.098682,96.159546,1.5786972e-06 2139,1.6220915,56.73487,20.381184,142.20795,6.354494e-07 2139,584.83185,7.2824707,47.673767,51.706944,3.2062903e-07 2139,1.6705624,16.539656,16.274445,65.20453,1.3832548e-07 2139,315.6441,0.0,81.6861,206.15794,4.4768818e-08 2139,194.23245,6.110378,46.187714,54.019356,3.4175454e-08 2139,1.8464079,11.308542,42.553223,45.513924,1.5710658e-08 2139,355.4866,0.0,48.1326,65.40573,4.2527146e-09 2139,143.96788,6.6636624,42.586746,50.43683,3.6773726e-09 2139,530.5883,7.163763,48.399475,53.74521,3.1765135e-10 2139,382.7034,0.9329102,48.04889,53.04237,1.5942898e-10 2140,402.44174,222.93318,44.31125,111.37874,99.951645 2140,520.24915,221.9288,57.615967,153.43506,99.93741 2140,366.87656,226.24432,43.286346,108.052155,99.85354 2140,356.97076,233.12172,28.469727,73.87877,2.9455013 2140,515.9353,235.2511,28.26471,75.54608,1.5497134 2140,415.74133,226.16,21.961945,47.201416,0.085505486 2140,543.201,274.18552,24.769287,63.09143,0.011367512 2140,482.35318,166.14072,128.01633,253.84186,0.0012870976 2140,525.2205,262.9423,27.689087,71.166565,0.0008604541 2140,583.67096,17.36457,55.259033,115.879906,0.0008559902 2140,610.6339,205.68668,28.512756,114.549805,0.00042621678 2140,130.7103,285.68445,28.564346,50.43219,0.00029109273 2140,587.17456,204.99239,51.371765,219.23875,0.00015847634 2140,357.8778,168.6115,131.32883,222.3087,0.00015626181 2140,463.49548,170.54443,79.5506,167.21426,0.00011839578 2140,610.66315,303.89426,28.48352,145.64868,7.419289e-05 2140,609.44464,104.55491,29.702026,155.1535,4.999932e-05 2140,1.3784115,141.21266,19.52253,135.71703,3.4273213e-05 2140,608.99207,443.76923,30.154602,60.595947,3.0263835e-05 2140,1.3461744,216.38475,19.679464,134.37895,1.3127503e-05 2140,0.8687858,341.574,19.756748,131.57184,1.208297e-05 2140,585.49,396.8366,53.656677,98.27716,8.389456e-06 2140,3.2358317,337.53894,56.540596,146.21191,2.1494761e-06 2140,0.9153907,442.5406,21.722147,60.76178,1.8785004e-06 2140,0.9486906,56.07719,19.780073,136.31235,1.2960226e-06 2140,569.2223,6.437303,64.714905,50.87702,1.8937274e-07 2140,287.8842,0.0,80.54205,189.39214,1.00328144e-07 2140,1.616569,11.430286,36.68698,81.82149,1.1373303e-08 2140,210.29893,3.3214486,43.580475,48.559586,5.8941463e-10 2141,351.49936,227.53865,51.16922,129.96294,99.925644 2141,451.00122,235.3761,72.589966,180.83292,99.89977 2141,307.26932,230.45805,49.281403,133.4275,99.841606 2141,436.7382,229.1031,20.697144,46.0522,93.298515 2141,451.9319,231.89143,22.840424,48.044327,32.633324 2141,442.93872,222.1216,43.368744,121.3224,1.6955829 2141,483.5624,234.572,41.841278,93.321,0.9877448 2141,296.30353,245.87119,28.593628,78.435486,0.7646189 2141,353.57016,228.80113,26.422058,57.704514,0.26864022 2141,563.0771,272.87534,21.267334,45.28427,0.0035607591 2141,464.19638,286.16647,26.647797,66.556335,0.0014018061 2141,304.22226,187.09363,137.48984,228.2247,0.00081950636 2141,481.2003,305.52094,25.997437,72.44971,0.00045592256 2141,1.5670859,214.99959,20.084103,125.58101,0.00010427825 2141,600.7584,241.17444,37.97351,197.66046,7.26461e-05 2141,604.8453,2.110713,34.30139,65.589806,3.8245253e-05 2141,609.33655,442.9789,29.81012,60.971527,2.157005e-05 2141,606.49036,16.409376,32.65631,181.62721,2.0668913e-05 2141,2.0784945,120.77378,33.705803,193.70969,1.7970653e-05 2141,0.61739665,327.7302,19.913763,135.30597,1.753867e-05 2141,585.5405,395.57956,53.60614,99.3793,6.680293e-06 2141,0.9926115,444.7387,21.658106,58.68683,1.5376799e-06 2141,3.128947,394.94156,56.016804,99.02356,6.2794555e-07 2141,476.0545,16.299303,48.384705,157.10852,6.244806e-07 2141,0.90622807,17.513758,21.576347,123.591225,2.9394512e-08 2141,530.5535,4.177793,46.613953,56.767094,1.4545005e-09 2141,557.5987,4.628524,45.106873,47.384876,1.2468551e-10 2142,197.69348,217.89127,58.883118,154.49362,99.88943 2142,277.30518,208.02527,59.23346,202.0397,99.66275 2142,305.9499,210.40935,67.48184,235.25816,99.3652 2142,358.0408,210.95485,24.716003,51.94603,98.63174 2142,376.64203,213.20355,22.72052,49.956757,83.742004 2142,272.62503,206.79941,31.695465,75.677124,20.407671 2142,316.8137,229.89612,41.10608,110.563446,0.021074899 2142,295.8969,247.84816,27.35254,76.996994,0.014735658 2142,506.5751,247.44803,33.62851,69.37085,0.006185376 2142,307.37582,299.65594,38.294464,112.26483,0.0045767264 2142,158.3329,148.71713,131.166,269.46176,0.0012339032 2142,331.8274,318.7143,24.532806,68.06827,0.00087200524 2142,608.2926,47.11079,30.854065,135.41121,0.00034882769 2142,221.48784,251.34584,26.425812,73.428024,8.766184e-05 2142,606.529,6.9447236,32.57373,54.911526,5.2527623e-05 2142,609.4988,443.00595,29.647888,60.48474,2.3670551e-05 2142,1.352693,206.86969,31.08615,171.74823,5.1367224e-06 2142,1.0101693,334.36813,32.686497,152.59225,2.9007126e-06 2142,399.75424,9.100247,52.79837,128.40936,2.8967647e-06 2142,0.9791634,443.96292,21.730944,59.451324,1.741363e-06 2142,1.3174187,13.637025,39.20422,82.64199,4.1833226e-07 2142,469.17657,0.5414844,46.393433,60.67143,4.234253e-09 2142,389.1905,2.088763,48.211914,63.973103,3.4942933e-09 2143,38.781086,219.07732,90.38341,199.30385,99.78649 2143,194.20518,211.68892,27.929901,58.840683,93.013504 2143,216.49709,216.16675,24.34636,54.970306,58.480316 2143,43.532555,225.9662,38.972107,128.22371,32.037315 2143,2.269515,222.59323,51.34473,195.07437,7.806896 2143,98.71857,205.94203,34.56613,62.792862,0.13608438 2143,86.671585,198.95088,50.416336,154.27849,0.11611013 2143,361.31485,269.37595,27.914764,58.197327,0.048508506 2143,93.27845,266.85895,23.465668,55.319,0.02835947 2143,410.0919,223.88084,23.444763,49.376846,0.011005588 2143,63.398315,248.71638,35.845093,118.49147,0.008228785 2143,194.19908,70.321945,32.68358,86.02385,0.005053492 2143,23.341745,70.66852,39.136948,113.96202,0.0023922597 2143,1.5128369,377.6074,39.931957,109.265594,0.0015976429 2143,80.03688,264.5357,24.429787,68.72714,0.0009006133 2143,214.79984,148.8242,46.008698,132.22044,0.0007222786 2143,604.8226,0.0,34.324097,66.46243,0.00040082537 2143,600.7611,223.42448,38.38556,185.56178,8.873122e-05 2143,609.28046,75.42002,29.86621,169.0458,6.239475e-05 2143,1.7902572,172.1589,21.4528,144.56891,5.3524014e-05 2143,1.2803874,430.2993,25.208307,74.870514,3.29901e-05 2143,1.9337028,51.946976,19.827335,147.18933,2.7863714e-05 2143,86.50809,294.6582,23.731346,70.145935,2.681202e-05 2143,2.3373406,32.62241,79.62447,204.90372,2.2140694e-05 2143,609.6438,442.6123,29.502869,61.238373,2.190956e-05 2143,585.6539,394.74997,53.492798,99.71222,5.899861e-06 2143,2.2166944,9.443083,44.446648,96.889114,6.8010644e-07 2143,222.53047,0.0,89.20979,207.86304,1.4573621e-07 2143,327.63254,6.5911655,50.205536,160.07635,1.0866551e-07 2143,1.5305437,13.937211,15.9263525,80.22166,1.05082044e-07 2143,235.0329,2.8340626,51.9039,63.21311,5.94023e-09 2143,292.25967,3.6132812,47.53311,59.05187,3.3785912e-09 2143,318.87213,1.4193294,46.56552,62.94489,8.659861e-10 2144,478.9295,241.53018,60.108032,152.02206,99.93699 2144,150.14157,242.43039,38.479156,96.620544,0.03561307 2144,485.4744,243.79956,33.314056,64.619965,0.019611645 2144,4.905918,213.59828,49.08915,112.24025,0.016108405 2144,508.44794,272.14862,24.499756,65.055176,0.012854015 2144,515.438,269.1819,35.300537,100.831055,0.009286691 2144,594.31946,255.54057,40.78705,104.41304,0.0038943326 2144,621.7929,278.63953,17.35376,55.069702,0.0020069468 2144,616.6802,319.0945,22.466492,82.01947,0.0009792892 2144,1.290136,256.63623,19.788553,80.514496,0.00057403557 2144,1.7562956,160.74413,22.709143,151.77281,0.0005271599 2144,609.7184,186.49149,29.428284,139.56534,0.00052554056 2144,614.4687,14.147627,24.677979,76.25137,0.00015332685 2144,491.60324,275.66623,27.391022,79.90411,0.00012787846 2144,5.9168587,191.75029,94.4597,217.3365,0.00011723177 2144,1.6126628,236.70079,36.029503,208.0674,9.101629e-05 2144,616.735,162.11336,22.411682,84.45816,7.391238e-05 2144,611.3245,358.1828,27.822144,138.53607,5.6313183e-05 2144,617.1513,53.55089,21.995361,82.93974,5.484034e-05 2144,1.675752,68.21064,19.698978,89.0283,5.1136136e-05 2144,3.1804054,44.74293,60.470406,266.97507,3.1988522e-05 2144,361.9261,171.00877,74.85202,156.25343,1.8092642e-05 2144,1.8060955,13.3412695,59.485912,119.29887,1.2867028e-05 2144,0.5597144,329.6933,20.085552,138.79453,8.123092e-06 2144,585.6358,35.980976,53.510864,278.33636,6.8590643e-06 2144,1.418396,124.28305,19.5751,98.09503,4.725469e-06 2144,0.7777865,423.27283,16.59571,78.949585,2.4402048e-06 2144,1.524729,9.044138,15.477602,108.13954,1.6174671e-06 2144,85.88458,12.56114,64.76161,126.2536,1.4211968e-06 2144,5.314932,356.90488,79.48568,131.1214,7.38288e-07 2144,0.73104167,4.338034,40.881912,63.40374,3.7539064e-07 2144,103.4908,6.580049,50.62317,57.1296,4.3092857e-08 2144,181.78294,5.4248376,45.236954,50.394485,2.4434529e-08 2144,535.76825,3.9117954,47.546936,54.388985,1.3941562e-08 2144,134.00371,6.630804,48.87941,52.041977,1.3448961e-08 2144,23.971245,6.959883,48.24823,51.762188,4.4148503e-09 2145,300.63748,243.72401,64.40344,186.62065,99.878426 2145,327.88522,280.0695,33.023834,94.21518,0.14387529 2145,318.2508,282.90326,25.593231,60.57843,0.076103345 2145,143.5481,152.9742,29.168686,66.65062,0.011453383 2145,128.66928,151.75645,52.242508,164.63377,0.0074001183 2145,308.88135,298.0993,25.82492,76.14667,0.0028174634 2145,617.18243,243.2406,21.964233,73.390045,0.0017905313 2145,443.08344,325.6629,23.297424,53.291473,0.0014909134 2145,603.2843,1.2108562,35.862366,110.75607,0.00080538203 2145,0.84835535,139.5962,19.287888,84.94034,0.0005725452 2145,329.8575,332.7231,26.26184,65.27286,0.0005183021 2145,610.59454,154.4033,28.552124,145.34074,0.00047865187 2145,610.9013,294.02386,28.245361,146.39484,0.0004753202 2145,620.2783,52.94918,18.868347,57.255806,0.00045387406 2145,585.375,191.07321,51.98285,233.94345,0.00019222869 2145,1.7970427,152.41716,28.759703,146.54478,0.00013676823 2145,582.73047,0.0,56.4162,287.99734,0.000112660746 2145,1.0378507,269.495,19.995972,134.08856,6.9313835e-05 2145,570.7741,338.67102,67.193665,150.87317,4.4369917e-05 2145,3.7319012,194.98224,58.031677,209.5062,3.4786684e-05 2145,609.53925,442.0272,29.607422,61.53192,1.962324e-05 2145,617.1399,105.76059,22.006775,80.10605,1.5598323e-05 2145,0.75920576,344.08557,20.056145,131.95679,9.748026e-06 2145,0.8261035,84.86018,18.693047,80.76483,6.5690906e-06 2145,0.9872795,14.608359,17.928356,69.842125,3.7686941e-06 2145,0.9196371,39.602936,30.05182,170.87425,2.530751e-06 2145,0.7440031,423.12003,16.838852,79.44513,2.1945648e-06 2145,2.3499773,19.699108,56.80949,97.78267,1.4967002e-06 2145,5.3189683,352.0971,79.03042,135.71097,6.787613e-07 2145,5.9585176,6.96458,47.42453,47.452965,2.8086143e-07 2145,579.9965,3.1336508,47.007874,56.56679,2.0576734e-07 2145,45.44545,8.591636,44.081512,45.158672,1.0073503e-07 2145,493.05032,14.3640175,82.128815,167.82275,7.508184e-08 2145,504.59515,3.8752913,45.031555,51.248558,5.3396803e-08 2145,372.76117,5.961159,43.633392,50.74482,4.012232e-08 2146,13.033633,226.71483,100.76484,257.74402,88.60718 2146,26.340496,251.48802,49.8241,140.37144,15.62882 2146,55.322132,308.66187,20.386585,49.407623,0.09008555 2146,3.6772885,234.59038,41.44815,140.65666,0.073227994 2146,49.802185,285.51154,44.53344,156.37039,0.05271437 2146,26.629936,281.1574,25.857792,70.832214,0.043773856 2146,66.10737,332.13013,50.430603,146.43326,0.020464484 2146,44.020046,279.14697,26.006939,72.21094,0.012292671 2146,104.58787,259.2654,50.64486,120.120026,0.008671759 2146,42.365063,318.49487,20.173443,54.188385,0.00681389 2146,65.87424,264.32645,40.025482,104.91803,0.004109995 2146,73.625084,316.13596,21.864433,57.10028,0.0034784693 2146,60.02573,322.68262,23.321247,67.159515,0.001168783 2146,608.4183,115.81679,30.090027,143.14015,0.0010342718 2146,49.350815,350.28476,21.677422,65.21646,0.00084522896 2146,73.26468,384.76413,23.610619,54.74817,0.0007478886 2146,583.3648,11.33517,55.16913,112.47688,0.0006376998 2146,1.0474536,298.22388,21.277948,130.37003,0.00037546284 2146,67.520676,357.86823,22.29943,57.56607,0.00036617322 2146,2.110822,155.73691,28.985813,166.3371,0.00021343985 2146,610.83453,213.53337,28.312134,138.0259,0.00014875185 2146,604.8847,0.4586198,34.261963,68.10922,0.00012717914 2146,584.0553,137.33672,54.341553,247.2571,0.00011987092 2146,611.47144,307.85233,27.675232,141.513,6.122132e-05 2146,1.5353353,347.12167,33.687187,142.79575,3.46116e-05 2146,1.1166545,95.939156,19.826223,147.29138,3.2694996e-05 2146,609.6119,443.0325,29.53479,60.824066,1.879759e-05 2146,61.16397,394.32474,23.924469,64.29788,1.3278865e-05 2146,585.65643,395.1453,53.490234,99.42752,5.1667216e-06 2146,1.1148951,23.2122,20.148975,115.95192,3.1324064e-06 2146,0.9618514,441.25443,22.148006,61.503143,2.3468922e-06 2146,2.2074008,11.542657,61.941303,292.59195,5.3522456e-07 2146,318.27057,6.061354,45.651337,48.975983,4.7726655e-08 2147,577.91437,229.20818,48.283386,122.38771,99.93713 2147,613.3078,233.3156,25.774292,110.477585,56.961155 2147,597.7428,246.5901,24.699036,58.50969,0.16226952 2147,622.80646,295.33185,16.34021,45.909058,0.09820197 2147,523.5511,206.52649,23.369873,50.486633,0.047689326 2147,621.1623,235.95836,17.984375,45.80049,0.0051988144 2147,532.1029,219.09596,27.200012,53.072617,0.003240947 2147,4.6804347,317.26553,56.98518,157.87079,0.0027022536 2147,534.88416,127.72745,102.99597,272.1104,0.0021670144 2147,580.91345,247.91719,28.019348,59.520584,0.0019803506 2147,583.4596,105.97044,43.593445,100.41388,0.0011878067 2147,608.4332,64.046646,30.71344,156.42482,0.00089051144 2147,1.9414396,320.20102,19.432003,141.58765,0.0006890061 2147,229.28702,365.06433,81.65973,134.62411,0.0006058664 2147,559.0143,50.524982,76.4458,195.19925,0.00030745452 2147,615.45306,24.628849,23.693604,77.4176,9.442443e-05 2147,205.52158,432.72296,48.161133,65.26611,8.1129256e-05 2147,611.3519,317.36697,27.794739,158.1513,7.836538e-05 2147,239.36877,439.0459,45.13864,63.529907,2.0950836e-05 2147,609.6373,443.33786,29.509338,60.569336,2.0739837e-05 2147,1.127684,414.84457,17.632408,87.09003,2.0416348e-05 2147,583.38586,10.168406,55.760803,120.70037,1.7224917e-05 2147,1.0554273,236.6024,18.149748,72.61635,1.6954895e-05 2147,0.7393522,110.36403,18.727055,76.88417,1.1401284e-05 2147,1.0297396,144.62126,20.722876,139.63802,1.0668524e-05 2147,1.0090845,71.61326,18.473698,72.480156,8.903827e-06 2147,0.8184025,173.81563,14.142666,50.347183,6.5091485e-06 2147,1.928077,226.27715,28.27705,162.17259,6.186091e-06 2147,86.22789,421.512,70.604034,73.920044,4.04126e-06 2147,1.6222332,50.47281,35.57091,194.20233,4.8543035e-07 2147,0.8538611,10.001182,15.091357,82.37728,1.5372159e-07 2147,2.7593603,17.806787,56.223675,108.9565,8.232895e-08 2147,482.37735,1.2887045,49.962433,62.56833,7.175478e-08 2147,1.8560255,4.5534244,45.51897,46.62002,2.2222746e-08 2147,458.16742,0.0,43.404877,62.100132,1.6747298e-09 2147,520.68524,0.7968701,48.81964,53.756714,2.7146277e-10 2148,504.06912,227.79834,52.28604,124.97797,99.93189 2148,468.80798,227.25891,53.5307,127.52188,99.93015 2148,434.89142,217.78989,22.179047,46.60196,0.049923133 2148,601.3358,221.03293,36.58795,91.65985,0.016904011 2148,101.30292,424.14795,63.791016,86.99872,0.0043431423 2148,457.77042,155.32858,122.16531,252.87976,0.0032874085 2148,1.4462646,227.5901,27.914804,139.75063,0.0008548709 2148,584.41473,20.277061,53.926758,104.27355,0.00054333784 2148,610.3025,118.14353,28.844177,156.29373,0.0004353781 2148,567.62823,112.78209,33.611267,87.410416,0.0003228136 2148,485.67355,105.57495,40.461823,105.13748,0.00032025995 2148,588.1199,186.44211,51.026794,222.7002,0.00031602086 2148,605.6915,8.229525,33.269104,54.59247,0.00017130571 2148,3.612723,266.0639,55.07052,199.05084,0.00010743256 2148,1.0914388,306.72977,19.517725,126.04535,8.0099315e-05 2148,478.63086,206.50055,31.776184,77.417755,7.625264e-05 2148,1.7057048,110.04641,34.62371,200.92828,7.022311e-05 2148,611.82745,349.5994,27.319214,131.259,5.4031323e-05 2148,609.5113,442.9658,29.635376,60.867035,2.4054229e-05 2148,1.4051628,442.69073,22.034073,61.677094,6.3786856e-06 2148,59.11142,453.99112,42.8705,53.99716,4.443928e-06 2148,135.13286,417.80466,73.60507,80.56854,3.6603246e-06 2148,457.57684,47.34246,81.01697,219.82468,1.4065884e-06 2148,1.1745605,61.63646,20.964779,136.73857,1.3024506e-06 2148,1.8042253,12.449408,58.962585,131.95366,3.5424375e-08 2149,326.51755,230.56389,56.408875,128.06541,99.95206 2149,375.4479,234.31186,56.144775,121.491486,99.87885 2149,324.6736,227.86928,25.0029,57.662186,0.2386712 2149,599.3409,231.41951,38.35553,86.104904,0.082525946 2149,361.13577,227.64479,32.712555,109.55391,0.038112406 2149,483.9882,213.66348,26.488556,54.61258,0.011167864 2149,620.92285,208.43126,18.223816,57.640976,0.010521323 2149,298.27823,170.80511,135.55621,250.16803,0.0036012782 2149,588.1629,226.15282,50.501038,224.61919,0.0030669423 2149,108.71305,350.39017,66.41126,140.88531,0.0017415761 2149,395.85352,252.423,28.529602,64.64508,0.0013843813 2149,612.30707,267.81683,26.8396,104.741516,0.0012430153 2149,349.06552,259.60693,28.180115,74.4234,0.0007867654 2149,0.39049318,84.69954,19.948593,93.17799,0.0007136038 2149,174.62378,223.52641,84.68884,177.65346,0.0006555148 2149,0.9314291,241.27316,13.149017,49.36133,0.00039705515 2149,609.21716,105.155235,29.929504,163.518,0.00023056525 2149,1.2211605,81.23085,35.60921,207.23256,0.00017301385 2149,616.6748,78.52684,22.471863,77.261856,0.00013988637 2149,1.3796053,256.13135,19.510254,133.37982,8.364321e-05 2149,584.82587,10.007545,53.29364,114.16394,4.70203e-05 2149,611.9271,367.2311,27.219543,129.21109,3.7555346e-05 2149,3.2672462,224.80423,56.69169,211.84613,2.9777939e-05 2149,0.96707034,327.1612,18.594917,132.42142,2.6348502e-05 2149,0.78459394,420.9917,15.980385,80.00113,2.5321804e-06 2149,5.4218783,344.9898,78.627174,138.3823,1.8743309e-06 2149,588.16925,0.6160677,42.486084,54.08073,1.6054608e-07 2149,1.9331739,16.785456,57.85036,120.97295,1.2870697e-07 2149,0.5983142,9.326342,13.081909,87.404526,1.1710368e-07 2149,1.32014,5.5978026,38.114838,48.899426,2.0606809e-08 2149,288.50247,2.0797918,48.298462,57.131096,6.838529e-10 2150,239.28227,229.17853,56.959427,145.3648,99.893936 2150,190.85217,228.68225,61.93033,148.41827,99.833336 2150,200.7657,230.19037,27.724518,76.53885,0.43938318 2150,555.77527,223.47188,25.434204,58.023758,0.10527124 2150,387.46448,213.3372,32.411377,64.77171,0.01657 2150,179.26706,184.03728,130.27197,243.25694,0.014628812 2150,591.7292,315.75958,46.67737,130.24188,0.0071554678 2150,528.8834,277.48395,44.14447,102.14841,0.005029089 2150,370.66257,120.0161,27.438782,69.753784,0.0047848998 2150,214.69878,257.93988,25.830002,64.43411,0.0032213586 2150,617.6598,345.71606,21.486877,73.710754,0.0029355066 2150,621.231,179.73524,17.91565,60.47101,0.0028784394 2150,214.15408,222.41501,28.294312,66.397766,0.0019001066 2150,611.197,150.5357,27.949646,134.99854,0.0012193886 2150,600.5468,11.469643,38.599854,110.9813,0.00046705277 2150,1.418803,193.59172,18.967659,134.29692,0.00042481392 2150,585.8472,148.5845,51.371887,232.58554,0.0003735157 2150,621.0252,111.93913,18.12146,55.450653,0.0003619676 2150,55.787308,231.72357,83.6606,193.936,0.00033400807 2150,619.29297,26.09018,19.853699,58.23269,0.0001870451 2150,0.52646,417.6424,18.092155,85.56482,0.00015524965 2150,609.71356,57.51508,29.433105,157.64441,0.00013640063 2150,260.62106,273.78616,27.72284,75.29849,0.00013241878 2150,1.1610564,269.88184,20.616285,142.66779,0.00010200418 2150,2.7758236,230.69682,59.56717,242.86266,8.557458e-05 2150,1.2474024,339.70093,33.686348,158.7634,5.118268e-05 2150,608.81616,441.82523,30.330505,62.37271,3.3444747e-05 2150,1.6939389,103.633896,28.038395,158.35143,1.9930247e-05 2150,205.49368,278.03955,25.38379,78.06442,1.7164115e-05 2150,1.5696713,13.857513,59.512993,115.302444,1.2777024e-06 2150,394.3423,6.7929707,44.36133,47.167664,1.1726321e-08 2150,571.52997,8.978426,47.235413,46.62908,5.5967777e-09 2150,545.7357,9.929627,45.325256,47.57718,5.679763e-10 2150,160.76701,1.2191341,66.29036,53.12908,1.5571086e-10 2151,109.83466,221.75542,70.09971,190.6006,99.967445 2151,166.92656,234.8374,66.00827,174.36395,99.917244 2151,538.3867,232.79472,32.081665,63.856644,0.22105144 2151,153.9764,224.9811,27.25502,66.94832,0.09910729 2151,605.22186,249.81746,27.202759,58.355515,0.06326453 2151,111.317604,251.88089,37.10592,91.17883,0.013572964 2151,600.1954,178.8233,36.913574,160.15518,0.010699331 2151,557.00183,257.09503,73.53113,186.05405,0.009280282 2151,183.51334,224.36443,36.515884,68.87114,0.0049503497 2151,132.98352,245.29742,35.67943,102.11163,0.0022568137 2151,623.7176,254.28212,15.429077,50.637497,0.0014624506 2151,368.73813,223.74733,22.90158,50.39998,0.001353928 2151,177.79018,271.11005,25.48088,67.257996,0.0010131382 2151,607.9288,88.87558,31.217896,156.58757,0.00020739059 2151,611.12665,353.99854,28.02002,137.84543,0.00019699789 2151,139.99873,302.54993,24.624222,67.708984,0.00018203493 2151,607.2863,13.010378,31.860352,105.14688,0.000114679264 2151,0.90421224,222.3604,20.129112,129.67711,6.0766262e-05 2151,194.14763,301.9947,26.246933,74.862946,3.586879e-05 2151,0.8229948,320.6191,19.4598,137.01782,1.7368062e-05 2151,1.0520508,142.17754,19.947962,142.65962,1.4683988e-05 2151,3.426058,138.74696,58.95878,231.942,3.5962912e-06 2151,2.9477866,317.93048,57.53725,163.93765,2.5213942e-06 2151,1.7174757,419.73932,33.95331,79.089905,8.2398736e-07 2151,1.4782715,62.66466,20.18227,137.26733,4.4067536e-07 2151,2.0549626,17.261295,58.674088,113.15535,3.9492994e-07 2151,579.04333,7.2909293,46.60614,49.64337,3.7831807e-08 2151,551.333,9.002439,47.443054,46.44216,9.208621e-10 2152,60.197613,228.2756,85.170654,251.1839,99.83809 2152,2.8994305,233.6686,68.49733,237.94673,99.78059 2152,118.70778,228.93602,27.749008,63.68947,7.500225 2152,470.11948,285.12347,34.114197,76.83887,0.47421652 2152,68.013084,220.27502,45.23597,87.72275,0.36431643 2152,9.391993,232.59105,44.47895,95.29616,0.27193215 2152,104.97892,208.94237,43.812874,150.17589,0.19043465 2152,89.36455,217.0082,28.679619,55.389664,0.06370583 2152,1.6673479,263.80145,21.717995,199.28961,0.03073027 2152,107.05658,213.3765,22.575684,52.966705,0.011052915 2152,76.86616,283.42847,36.32364,96.341675,0.007924868 2152,129.4693,233.81563,39.225616,69.30345,0.007908079 2152,43.975533,213.91135,47.51216,189.39688,0.005088289 2152,15.832751,294.03986,36.34511,102.6951,0.0038565365 2152,607.5984,131.38817,31.306702,139.13356,0.0011007889 2152,543.5501,224.52191,26.002563,54.72592,0.001046563 2152,609.5325,211.44292,29.614197,139.6628,0.00046506064 2152,2.0522902,164.42813,35.88819,219.68478,0.00013864641 2152,100.45663,334.38525,23.7602,69.242004,0.00013048698 2152,583.0588,10.884636,55.809753,113.05645,0.00012578943 2152,33.24094,335.80136,22.780273,70.306885,8.200538e-05 2152,72.93318,26.462898,38.214935,124.29812,5.433185e-05 2152,105.87321,296.675,24.666115,66.4682,3.7402937e-05 2152,604.2403,7.224828,34.906372,55.49309,3.2244516e-05 2152,609.26434,441.22192,29.882324,62.81903,1.9599525e-05 2152,585.2086,385.0276,53.93805,110.10257,1.6363841e-05 2152,0.6129118,435.1516,23.008438,69.179596,1.4294018e-05 2152,40.73471,0.0,91.6499,205.15865,2.9697432e-07 2152,361.2628,2.9186866,48.344757,48.030857,2.1453044e-08 2153,60.612015,233.53151,37.17504,84.02678,61.88486 2153,39.66317,227.02097,31.89727,74.094086,1.2599101 2153,74.24811,229.32724,20.98896,47.376373,0.6144317 2153,556.7399,251.15572,27.377563,71.50865,0.1633669 2153,515.5527,322.20004,38.06543,96.61951,0.12611467 2153,537.2205,221.77547,42.645264,144.23979,0.006447122 2153,83.96095,246.79651,33.887054,69.70941,0.0050417604 2153,153.08266,158.13287,25.359253,55.15419,0.004842815 2153,4.615622,94.86633,59.986526,254.89655,0.0017659777 2153,558.64496,226.76927,48.049255,129.22191,0.0012017782 2153,615.0577,161.26373,24.08899,83.76866,0.0009075973 2153,353.2505,223.52698,32.46817,74.611786,0.0007526798 2153,585.4112,116.61759,52.523132,218.32559,0.00063885027 2153,1.1977711,187.79828,19.36637,137.10333,0.00023087992 2153,374.24612,227.18457,33.614136,75.54462,0.00022862005 2153,17.290827,150.21269,118.215904,228.13405,0.00021829046 2153,523.50214,211.9907,110.50635,190.64543,0.00017387995 2153,608.54297,64.1083,30.603699,156.40588,9.53697e-05 2153,614.58154,23.594236,24.565125,75.18185,9.023008e-05 2153,1.4737825,72.05904,18.97897,85.97896,8.484858e-05 2153,610.36194,251.92412,28.784729,137.30959,6.7677385e-05 2153,609.0572,441.44073,30.089478,61.22809,5.358438e-05 2153,601.5593,336.40033,37.58734,157.48547,4.3963122e-05 2153,1.5447819,234.25829,33.247223,174.08656,2.148067e-05 2153,0.6463501,327.0147,20.044897,138.51013,1.00018315e-05 2153,589.14417,8.322256,49.274048,47.7117,5.827234e-06 2153,566.42035,17.235039,72.72632,149.16245,4.3328614e-06 2153,0.773584,422.9089,16.50805,79.97339,2.2544025e-06 2153,93.231125,17.724304,79.88417,181.62482,2.1699823e-06 2153,5.3782587,347.625,78.9546,141.41492,6.316261e-07 2153,1.2239649,9.633047,61.15553,130.77306,6.02895e-07 2153,19.856869,8.731641,87.97209,261.89526,1.9449544e-07 2153,0.75505614,20.591019,20.341976,84.73817,8.757873e-08 2153,345.70447,0.0,49.240295,54.862385,7.401276e-08 2153,565.4396,6.4944906,46.297363,46.39662,1.7119256e-09 2153,60.12019,2.9995184,45.177906,60.05444,1.6786923e-09 2153,0.8690397,2.8864942,43.673214,51.93601,9.0275654e-10 2153,86.36754,5.5666227,46.081696,53.361996,6.0774663e-10 2153,31.926126,1.403309,45.335625,54.789738,1.3054922e-10 2154,0.9292318,225.94615,32.49246,98.08412,42.693855 2154,64.339165,215.61925,24.138428,51.107132,1.2892151 2154,19.717785,256.67307,32.593937,63.7276,1.0923475 2154,13.824766,224.99464,57.028114,129.1566,0.21441385 2154,382.08978,228.87636,40.3089,87.40611,0.1584676 2154,39.97698,215.1853,40.639034,80.20575,0.04990786 2154,156.91498,159.2594,29.163406,62.42209,0.004552507 2154,134.16711,158.91743,34.6839,70.530975,0.0041625905 2154,361.35544,216.72913,37.95865,76.54382,0.0029456608 2154,605.75354,232.72446,26.36499,47.037445,0.0020437678 2154,601.66296,238.09694,36.74591,201.46266,0.0012903053 2154,1.1104298,288.99506,19.014437,87.205414,0.0011238388 2154,526.0445,342.51645,40.400146,97.65976,0.0010061421 2154,124.82878,86.78954,59.243423,165.35568,0.0004239175 2154,616.27716,375.6644,22.869507,76.88666,0.00039273856 2154,5.568965,156.39993,118.95966,248.42096,0.0003754507 2154,615.74146,84.591446,23.405212,88.56302,0.00026578666 2154,501.70486,304.38007,83.36948,172.39188,0.00025241787 2154,404.41205,219.54576,41.763275,101.44969,0.00022727356 2154,610.01056,174.09232,29.136108,128.7565,0.00016837858 2154,586.10864,385.56335,52.09137,103.43375,0.00014959602 2154,48.31511,251.8741,40.270287,86.50682,0.00013500784 2154,607.42664,7.0088997,31.720032,130.839,0.00011649154 2154,0.8515072,260.95468,34.957756,221.9195,5.222393e-05 2154,609.5195,439.17282,29.627197,64.43103,4.5811168e-05 2154,1.462238,109.71654,18.350649,83.27391,3.2893277e-05 2154,582.8142,0.0,56.33246,275.02734,1.4721258e-05 2154,1.9592408,91.84237,29.30046,175.05228,8.678265e-06 2154,590.914,6.761584,47.19879,47.319904,7.548743e-06 2154,0.815739,423.17535,16.675982,79.364136,2.5603777e-06 2154,3.5004134,388.70648,55.8146,105.71713,6.777277e-07 2154,1.4724325,16.524239,20.851568,125.43734,4.629224e-08 2154,384.34882,0.30327475,44.25592,52.125866,3.867028e-08 2154,59.794342,5.967041,47.418243,57.72791,1.4990126e-08 2154,354.76935,0.0,45.41751,57.6245,2.4285094e-09 2154,557.72925,8.592644,47.745117,45.073875,5.587708e-10 2154,532.77405,8.444234,43.94098,50.324642,2.2103808e-10 2154,25.686972,0.0,43.32978,59.345413,5.3441758e-11 2155,30.877022,209.47197,40.67778,62.783127,1.9605438 2155,55.34105,213.68771,33.214737,58.08615,1.0681022 2155,606.297,381.86078,32.288086,94.25125,0.024321731 2155,1.7132748,150.12808,41.87116,147.44202,0.004319282 2155,399.85403,217.07445,25.498932,51.153824,0.004108169 2155,621.595,407.6062,17.551697,48.88803,0.0020246052 2155,610.2904,225.12183,28.300049,126.77829,0.001811772 2155,1.8744653,129.17058,21.691788,105.067764,0.001185808 2155,468.92325,254.11264,37.148315,88.67206,0.0008509878 2155,159.71309,98.12091,27.58197,56.996902,0.00084841903 2155,1.2939225,199.9113,20.116686,87.961105,0.0005274908 2155,592.25806,239.49454,46.655334,234.14328,0.00039383298 2155,621.9807,62.792397,17.165955,48.28102,0.0003246295 2155,612.018,145.70238,27.128662,138.72087,7.038819e-05 2155,616.7723,85.94592,22.37439,76.66234,5.6974e-05 2155,4.814642,155.90334,77.30868,277.19092,4.05772e-05 2155,608.65094,16.051224,30.495728,110.41033,3.681372e-05 2155,1.0705949,220.91425,29.35455,170.07712,3.0345276e-05 2155,0.9717554,250.61928,14.917729,55.038345,1.9102095e-05 2155,1.2029126,321.3509,31.88632,172.32199,1.0839525e-05 2155,1.5825431,441.65454,22.030172,62.252655,3.397291e-06 2155,1.9750066,19.69295,64.0354,228.36284,1.0098825e-06 2155,1.5749398,16.01418,20.976402,118.40474,2.1079649e-07 2155,425.77158,4.396245,45.178864,47.37493,1.7049473e-07 2155,205.76128,15.343262,86.06807,198.35905,2.6929095e-08 2155,580.2632,8.033682,45.49701,51.361855,8.941766e-09 2155,387.85468,1.7301661,63.47815,55.98007,8.678947e-09 2155,1.671447,5.28988,40.142445,57.13472,3.4469367e-09 2155,77.900024,0.7027539,46.47821,57.283726,2.6515579e-09 2155,135.45898,5.5785694,47.389496,53.35775,1.7695387e-09 2155,105.303406,3.7080047,49.44809,55.535404,1.4526208e-09 2155,238.40555,3.1395607,44.426086,56.693996,5.9493666e-10 2155,195.84373,3.5909002,46.87773,54.24606,5.026542e-10 2155,552.15546,8.882614,45.187866,47.797043,4.9990634e-10 2156,577.1768,332.35602,41.338013,97.60687,0.40351823 2156,606.01917,207.05618,33.127502,80.89581,0.009062472 2156,582.8874,336.02075,22.797058,50.626892,0.007306473 2156,399.28772,226.056,27.32904,55.189697,0.005001235 2156,555.50745,260.46588,79.38983,205.30896,0.0043694517 2156,139.42406,74.18413,28.153122,65.48151,0.0043046055 2156,623.2751,220.46388,15.871582,46.204727,0.00200608 2156,123.963646,71.69143,49.046104,137.195,0.001742824 2156,619.6856,397.07175,19.46106,60.902313,0.0014420163 2156,334.49368,193.42519,36.239838,60.47409,0.0010235255 2156,607.97174,319.07263,31.174927,148.64539,0.0009629968 2156,471.34387,229.42946,39.086456,79.96474,0.00073101005 2156,442.04935,116.39145,48.625305,115.82007,0.0006980046 2156,583.98914,137.86319,54.448486,251.82642,0.00044250177 2156,259.77127,99.44064,46.325867,135.9705,0.00028250183 2156,616.74567,247.3123,22.401001,89.18889,0.00018562877 2156,617.4253,91.65309,21.721375,76.66339,0.0001481537 2156,616.84546,153.56294,22.301208,90.57594,6.47971e-05 2156,0.6324276,373.17496,18.841412,78.27579,6.1882274e-05 2156,3.697383,111.305534,60.565166,264.63962,5.5884862e-05 2156,610.1551,15.539652,28.991577,115.06518,3.2074364e-05 2156,1.0010637,226.17401,13.801427,53.29782,3.0538453e-05 2156,608.80865,435.5413,30.338013,68.90454,2.6766136e-05 2156,1.2478061,201.52174,20.521475,139.35075,1.9742738e-05 2156,600.54803,51.06398,38.598633,205.34236,1.7954824e-05 2156,0.74155766,302.26245,18.44854,77.38858,1.7941918e-05 2156,1.0807976,333.80405,32.882782,152.8432,1.416059e-05 2156,0.8120288,131.26282,18.981619,85.40993,1.087639e-05 2156,416.31302,79.32352,108.93637,237.84952,9.569224e-06 2156,305.46814,147.30693,83.413574,160.52141,7.2598596e-06 2156,1.6356299,0.0,63.54125,141.85045,2.957123e-06 2156,0.76777834,420.09552,16.563192,83.001465,2.5004847e-06 2156,192.16507,26.12364,43.978317,145.8447,4.5419148e-07 2156,1.4509692,26.379597,20.280336,153.8695,1.9257702e-07 2156,404.34308,3.4081137,69.410736,52.825344,1.1298176e-07 2156,2.1797836,3.02569,31.5966,69.921974,8.6011354e-08 2156,1.2009916,5.548919,10.912617,96.088646,4.5579675e-08 2156,36.93532,3.5252247,45.850956,54.99594,1.7253566e-08 2156,127.77037,8.575853,45.054,48.361206,1.0091922e-08 2156,578.90326,6.7475863,46.242493,54.00862,3.9949337e-09 2156,102.98638,7.8799644,44.480186,48.080566,3.7794283e-09 2156,240.5719,0.9665674,47.373474,51.259148,1.9789752e-09 2156,266.79788,0.7996859,44.77185,45.278187,1.485351e-09 2156,209.78531,4.7627573,44.63022,51.192368,7.0005796e-10 2156,183.23987,6.023786,45.67076,50.049812,4.43557e-10 2157,64.12157,114.45104,34.81109,99.86971,0.03482171 2157,396.77032,223.87982,37.772797,68.664,0.005562355 2157,312.17734,202.93028,41.006226,67.34004,0.0012558562 2157,617.05505,231.57767,22.091614,77.93933,0.0006228302 2157,488.068,255.3304,30.65924,67.06444,0.0006186072 2157,537.6246,295.93292,28.0307,56.278748,0.00040161243 2157,35.330383,82.26935,84.55202,219.6759,0.00033581455 2157,249.86552,103.943,46.477493,134.6417,0.00024714295 2157,528.1096,113.14529,43.19745,143.5885,0.00022657239 2157,601.3666,1.6645671,37.78009,67.48166,0.00016021737 2157,617.29535,396.57877,21.851318,78.556915,0.00015925507 2157,610.99426,112.52763,28.152405,135.00371,0.000140695 2157,617.1207,88.05096,22.02594,74.379036,0.00014042409 2157,80.64212,56.989967,43.694916,120.72028,0.00013057186 2157,585.6334,315.75952,53.513245,173.16284,0.00010375568 2157,3.2829444,96.46715,58.94242,228.77968,9.571074e-05 2157,1.1155249,177.66937,18.246576,82.51904,9.1444876e-05 2157,610.0066,264.90005,29.140076,145.65622,7.205437e-05 2157,608.66656,443.56552,30.480103,61.01001,4.7624268e-05 2157,0.5189494,246.82414,18.5286,76.46004,3.0016123e-05 2157,1.5564405,81.93368,29.435091,159.67737,2.1442846e-05 2157,616.4683,39.402126,22.678345,82.5022,1.5826263e-05 2157,551.0372,236.25542,23.727966,54.44835,1.3395958e-05 2157,0.5855412,289.39673,13.753672,48.730896,1.1483628e-05 2157,297.2426,157.4904,80.952545,157.48543,8.188755e-06 2157,0.7829346,324.77908,19.56233,132.70844,7.702416e-06 2157,1.1470037,255.64058,28.16857,141.69737,7.647171e-06 2157,502.00427,40.266693,125.99921,264.50775,5.5528185e-06 2157,582.77795,2.5989194,56.368713,257.9946,3.8576686e-06 2157,3.404603,246.7713,57.182716,220.04562,2.41369e-06 2157,0.76735514,421.89038,16.185095,80.37094,2.263036e-06 2157,4.813187,25.920013,80.45971,132.88397,1.6207283e-06 2157,1.3027499,50.92936,21.22912,105.42219,9.399111e-07 2157,3.1032276,395.19696,56.599014,98.444,4.5067154e-07 2157,1.9220574,18.497725,36.30128,71.36604,1.5044012e-07 2157,418.4867,4.9972773,48.364502,49.858734,3.996628e-08 2157,219.12701,2.983034,46.447113,58.31384,5.498428e-09 2157,94.91095,5.862658,45.04297,48.93217,2.6840983e-09 2157,382.00647,3.8669531,44.356506,55.4787,2.2453017e-09 2157,256.4454,2.5964048,44.10785,54.859573,8.157203e-10 2157,196.52705,4.777583,44.479355,47.974476,7.104194e-10 2157,121.34361,6.085358,45.361267,49.02887,6.6979894e-10 2157,155.86787,6.1830554,46.211792,47.72251,1.5055904e-10 2158,0.0,71.72216,36.43561,150.28421,0.003375615 2158,73.84472,187.3429,25.082787,58.48378,0.0029050617 2158,231.00346,154.53316,38.12352,79.451355,0.0025724282 2158,318.40872,207.15768,40.786133,67.16995,0.0012200515 2158,616.40295,221.99173,22.743713,80.30902,0.0010547321 2158,549.07404,297.17627,35.65796,79.27667,0.00052585744 2158,621.84686,367.06628,17.299805,52.274323,0.00020983159 2158,599.52783,192.44565,39.618835,165.59961,0.0002092884 2158,1.083025,94.356735,16.69636,71.31694,0.00014171102 2158,1.0859832,189.47511,29.184519,165.96974,0.00013051037 2158,618.00525,403.30704,21.141418,77.41855,0.00011870601 2158,617.1489,136.72482,21.997742,77.77196,0.0001049569 2158,617.33374,85.49697,21.812927,77.74879,6.475546e-05 2158,557.6123,212.61485,40.856323,122.32826,6.2844185e-05 2158,617.1441,290.86026,22.002563,83.607666,5.8702382e-05 2158,581.0914,4.8766212,58.009155,118.94588,5.71971e-05 2158,586.071,272.80902,53.01056,206.41776,5.3253858e-05 2158,0.48073977,374.47754,18.676275,75.84683,2.1866226e-05 2158,557.02783,46.01086,76.4151,222.65909,2.0962467e-05 2158,0.5541105,268.37735,19.49147,141.35547,1.7609127e-05 2158,2.2785304,213.39287,58.31684,240.84459,9.555874e-06 2158,298.20612,156.56177,91.37247,188.72711,9.461023e-06 2158,0.9677881,324.10617,33.088203,159.02185,8.848803e-06 2158,220.85056,57.469025,72.57785,193.69963,4.7367757e-06 2158,124.067215,50.264885,78.81056,214.17386,4.6866207e-06 2158,0.71978354,421.75516,16.737179,80.69583,3.3593192e-06 2158,137.10191,12.247468,45.509354,147.212,1.61292e-06 2158,0.87956464,8.637937,13.244309,85.35722,1.1634189e-06 2158,1.2437338,13.480703,82.69584,297.4844,7.487338e-07 2158,2.641154,429.92053,53.214092,69.36386,4.531626e-07 2158,360.30078,11.175424,87.93555,76.05877,2.0990018e-07 2158,1.0210001,31.736986,23.089502,108.790955,1.389193e-07 2158,421.98874,6.962948,43.01413,51.6913,7.259299e-08 2158,564.64056,4.162344,45.966858,57.780525,6.631943e-08 2158,1.5122755,3.7673178,39.635075,58.93654,1.7347377e-08 2158,113.03436,3.7223048,47.999435,59.351513,1.2542269e-08 2158,304.95868,4.325845,42.693085,50.59208,3.4679204e-09 2158,205.82208,3.0562046,71.629486,57.741627,2.837012e-09 2158,140.65298,7.8616066,45.829163,53.27029,1.7834548e-09 2158,58.592907,2.3638997,47.489246,59.477386,1.3711517e-09 2158,249.27446,2.9269598,43.93199,51.220608,4.5635742e-10 2158,30.657272,2.1103485,44.120148,59.864304,3.5838763e-10 2158,356.44577,2.4361556,44.087646,57.83469,3.4015177e-10 2158,175.96396,5.552347,47.708344,52.089363,2.6512634e-10 2159,314.9563,221.39537,24.43451,56.84523,99.766624 2159,333.2656,222.40894,23.873413,53.81488,99.24636 2159,411.84763,228.33327,29.680206,56.186478,0.0064134574 2159,226.20436,136.7825,43.78621,113.24144,0.0014834295 2159,538.2567,236.68527,24.245667,55.10202,0.001119846 2159,617.0511,237.53444,22.095581,82.619156,0.0008199159 2159,551.92505,235.38885,25.835205,56.90506,0.00065931055 2159,305.16776,201.2787,56.984467,95.91078,0.0005423388 2159,410.4421,182.28612,42.12332,135.2227,0.00047056825 2159,584.84076,7.0282617,53.09967,114.11492,0.00017948986 2159,146.89459,109.87395,25.830185,56.346664,0.00017810256 2159,602.5523,251.51393,36.59436,181.94337,0.00017331242 2159,602.8881,139.31017,36.05255,158.73329,0.00015023138 2159,617.9662,395.7221,21.180481,78.712494,0.00014875269 2159,1.5361785,147.51968,21.129042,144.64798,0.00013386016 2159,617.4072,337.31488,21.73944,84.28406,0.00011702446 2159,610.1578,55.59127,28.988892,119.51923,0.000116900424 2159,0.9753166,113.413895,13.740943,49.68445,6.2282976e-05 2159,1.2027274,201.29625,14.058841,51.355194,5.6764053e-05 2159,289.44757,152.10368,134.04349,231.97316,4.707989e-05 2159,1.0948714,262.85754,17.988655,71.48782,4.6841724e-05 2159,605.4542,5.009754,33.465088,56.61984,4.1049563e-05 2159,570.62244,339.03677,68.52423,152.96521,2.5037783e-05 2159,3.4461963,143.40057,57.758648,212.10388,2.3664006e-05 2159,609.6842,442.56744,29.462463,61.388916,2.1949254e-05 2159,0.7216976,292.061,20.662386,107.21396,1.4149236e-05 2159,395.78708,151.00839,100.15378,211.46228,9.289469e-06 2159,1.5947355,72.46886,20.94642,139.02519,5.6966887e-06 2159,0.8797852,353.6159,19.477354,130.52448,4.0314985e-06 2159,3.4897869,287.0841,56.986996,188.1409,3.2217524e-06 2159,199.57251,78.11067,110.61838,200.52312,2.156745e-06 2159,0.9925944,443.45767,21.607515,60.270203,1.7305688e-06 2159,374.62967,14.183223,44.70642,123.55598,5.1082196e-07 2159,1.3045459,0.0,64.18602,230.94487,1.2455213e-07 2159,422.44006,6.995267,42.18509,50.575844,7.4622704e-08 2159,1.4693604,12.213906,31.843433,133.45778,4.0330093e-08 2159,355.33344,3.2228646,65.65054,57.32347,8.199262e-09 2159,147.85297,8.275975,45.977448,48.016697,4.979938e-09 2159,203.82445,2.56292,71.50343,58.596275,3.941499e-09 2159,94.61835,6.4977703,44.978806,48.653656,2.9737472e-09 2159,120.509766,6.412038,45.51454,51.301277,2.3743265e-09 2159,68.69808,2.3031235,46.420258,46.394222,1.875469e-09 2159,22.507702,2.3876936,67.07846,52.926666,3.4691097e-10 2159,177.4322,4.926011,46.190308,50.975224,2.759166e-10 2160,338.02768,213.3386,31.587616,72.561005,99.951256 2160,365.35135,217.23065,26.90741,68.1926,99.65396 2160,381.54742,226.22781,19.791504,51.084656,0.048901577 2160,237.90422,101.01209,46.080185,133.1614,0.0012701291 2160,621.28296,327.38818,17.863708,58.757477,0.0006694466 2160,346.1832,175.24951,72.75287,153.44077,0.00060418615 2160,401.4309,230.94902,23.670929,49.257675,0.0005200057 2160,616.70966,237.28058,22.437012,83.33865,0.00044124768 2160,0.118706875,299.46295,20.049675,81.9487,0.00024703055 2160,622.35504,209.08942,16.791626,51.552094,0.00017356251 2160,618.1789,395.67435,20.967773,78.62482,0.0001562256 2160,0.79789877,209.73647,17.93139,68.99449,0.00014734616 2160,610.2191,278.9346,28.927551,142.7124,0.00014332158 2160,600.9431,143.18864,38.184998,202.02751,0.00012243187 2160,610.72064,80.44458,28.426025,151.62288,9.7778924e-05 2160,611.11676,10.760286,28.029907,129.83185,8.704455e-05 2160,1.2401042,205.03748,33.41734,167.04529,5.430791e-05 2160,609.76294,442.11746,29.383728,61.809326,2.095899e-05 2160,1.8330193,261.7949,57.305954,202.17084,1.9054609e-05 2160,0.82608646,61.976986,19.269022,80.92436,1.602776e-05 2160,572.20636,349.4326,66.94031,140.14499,1.0596814e-05 2160,0.55157715,339.36465,19.941273,143.15973,9.01043e-06 2160,0.8063135,89.056946,20.96128,154.30801,4.2716547e-06 2160,0.90399987,443.17114,21.870735,60.61206,1.9989363e-06 2160,2.717155,70.99966,60.5673,231.55856,1.2024879e-06 2160,456.59818,5.826227,45.600677,48.284218,7.201547e-07 2160,3.0023894,395.87573,56.28867,98.41687,5.182164e-07 2160,373.66968,23.807774,76.36737,186.00967,4.6320173e-07 2160,0.83178955,8.356068,14.662191,88.948715,2.2592397e-07 2160,1.2632487,10.159538,58.582176,127.46708,1.5221404e-07 2160,418.34238,6.3321013,50.364105,54.803974,6.207265e-08 2160,41.20279,3.705324,42.32103,51.46249,2.2513493e-08 2160,305.8989,4.43381,60.607025,46.081028,4.014519e-09 2160,383.25867,4.4668818,47.231903,63.71595,3.8239865e-09 2160,132.90128,2.3665073,48.5495,55.54902,3.3458663e-09 2160,168.38142,4.82423,45.563934,50.619423,1.3080477e-09 2160,197.46623,5.4218297,47.383545,54.545776,9.607649e-10 2160,65.282684,1.4142188,66.68002,49.42555,7.846831e-10 2160,224.77307,2.1765332,70.398865,59.233223,3.8819148e-10 2160,106.713684,2.9876742,47.909134,52.72974,1.512977e-10 2161,382.86206,214.16776,36.013916,92.13089,99.95941 2161,412.70154,215.03043,31.042328,88.51123,99.74767 2161,605.485,273.01608,33.661682,79.77646,0.013030924 2161,453.7948,236.30132,33.01709,76.92174,0.005439327 2161,559.75665,254.48923,27.489685,61.59372,0.004884828 2161,432.87936,221.01591,30.338654,78.94908,0.002541429 2161,623.0999,286.73822,16.046753,47.023315,0.0020326786 2161,623.3034,314.2196,15.843262,48.135315,0.0010613096 2161,392.8897,188.13094,77.28467,145.0844,0.00097496534 2161,266.16745,84.05586,48.231415,138.89821,0.00054571003 2161,167.79628,137.90292,25.68721,56.741943,0.00033761212 2161,588.8907,146.9537,50.25598,253.0177,0.0002742524 2161,236.91667,189.3389,24.776627,54.036865,0.00022100135 2161,610.67267,98.05468,28.473999,139.35721,0.00010628588 2161,539.53784,293.1217,25.85846,48.952698,9.3484065e-05 2161,611.7959,313.48663,27.350769,156.47714,6.272013e-05 2161,0.7795361,199.70149,20.974674,107.93977,2.7613887e-05 2161,609.4179,441.23843,29.72876,63.152832,2.4222178e-05 2161,540.4053,192.13554,73.136536,184.64043,2.0822758e-05 2161,0.7038623,334.3933,19.242601,131.17007,7.872075e-06 2161,0.96548015,119.24375,19.421362,134.12796,7.743956e-06 2161,0.59561604,261.2204,19.073267,129.93344,6.6731495e-06 2161,585.7034,392.72437,53.443237,102.77649,5.5046376e-06 2161,610.4973,6.4156837,28.649353,147.73482,4.4250073e-06 2161,1.027395,73.42944,18.739786,80.69322,4.3395444e-06 2161,0.8039746,421.66095,16.532785,80.081085,2.962904e-06 2161,3.9167318,186.83797,57.968548,206.2259,1.8324249e-06 2161,5.674906,356.9768,79.27763,129.34851,6.5233024e-07 2161,0.8417155,10.577676,13.359813,88.24864,4.9836007e-07 2161,1.2828044,15.591628,34.19726,161.00365,1.8567773e-07 2161,374.67014,8.283021,43.91574,55.21168,9.82237e-09 2161,461.26584,6.871037,46.940002,46.2483,6.122578e-09 2161,1.6960287,3.8386166,40.426914,47.71658,4.403002e-09 2161,84.32555,4.4551563,49.21692,57.833794,2.0826652e-09 2161,412.95074,6.569605,68.131805,53.837112,2.012284e-09 2161,349.51266,5.582023,42.42386,50.683773,1.9957485e-09 2161,29.268393,2.9981918,51.195335,51.79295,1.8921766e-09 2161,189.24834,4.446245,45.6698,50.27835,7.415328e-10 2161,59.904507,2.3132293,46.107067,54.434345,7.009024e-10 2161,225.33961,5.0348163,47.45244,51.86842,4.1113488e-10 2161,161.49768,3.1791635,46.097107,55.19809,4.050497e-10 2161,114.3211,4.6107116,46.118965,55.27188,2.5889282e-10 2161,290.5892,3.9112353,42.819794,51.178955,1.2080417e-10 2161,250.0354,2.8358235,50.199524,59.534447,4.879999e-11 2162,443.13184,236.3378,47.764282,134.249,99.92195 2162,472.59283,244.01727,40.0235,120.33325,99.613464 2162,394.6382,240.87907,25.552917,49.34807,83.11365 2162,536.934,252.5601,44.63501,133.12614,0.046774786 2162,184.2697,237.63449,21.469727,51.07892,0.02877805 2162,415.8223,151.84264,23.000366,56.512344,0.006895212 2162,250.386,205.14993,25.168747,58.494232,0.00376776 2162,501.79132,259.35666,30.747986,83.611145,0.003314705 2162,198.75504,234.90222,20.612503,49.29178,0.002187491 2162,409.17664,155.3596,121.37659,257.995,0.0016560189 2162,173.06439,163.38733,25.59584,55.16838,0.0011911178 2162,516.6898,215.18558,105.41394,190.82324,0.0007445326 2162,599.6092,86.564995,38.91223,194.63647,0.00032299283 2162,611.64276,264.4717,27.503906,134.45538,0.000282119 2162,618.0435,210.91553,21.10315,74.36084,0.00019972766 2162,587.7665,306.08408,50.98474,173.12793,0.00015647327 2162,412.58142,125.095215,40.826508,116.30031,0.00015582786 2162,284.1392,100.01809,49.335327,145.79285,0.00013895273 2162,2.3308237,228.85738,32.836147,174.55025,5.336326e-05 2162,374.67917,185.76135,78.55527,155.69714,3.90709e-05 2162,0.86660486,341.1566,19.70078,129.14139,2.3042448e-05 2162,609.37555,440.27838,29.771118,63.86133,1.8431232e-05 2162,3.2115886,294.40527,56.949986,176.06683,1.4249457e-05 2162,585.4179,10.047484,53.244324,108.395515,8.0793025e-06 2162,1.1644702,187.69534,18.60914,121.793,7.848223e-06 2162,1.643322,91.27024,28.90151,169.09586,7.129252e-06 2162,0.8842798,440.56424,22.018732,62.67099,2.771186e-06 2162,3.3636653,74.58818,59.698105,258.23022,2.1800256e-06 2162,1.9083887,12.475905,61.74014,123.11563,1.2354119e-06 2162,44.97173,8.77571,85.688644,185.34044,2.0826154e-07 2162,1.1988982,38.67213,20.906805,129.83727,1.5897798e-07 2162,50.91043,4.1440334,49.052094,56.909157,1.723817e-08 2162,516.4152,6.504318,44.549988,46.39901,8.1167615e-09 2162,81.042755,4.707433,44.724472,54.35201,2.8307583e-09 2162,482.7196,6.5130925,45.985535,47.81389,2.3174194e-09 2162,25.73588,1.7284359,46.814934,54.432854,2.1096762e-09 2162,106.733955,4.6681757,46.810814,50.692635,1.1765724e-09 2162,204.06137,6.982212,44.842514,50.327045,7.3393724e-10 2162,175.97714,5.50576,45.81653,51.83372,5.061909e-10 2162,438.33505,3.7152247,45.555634,57.41932,2.6178126e-10 2162,256.05582,1.4696387,53.35504,62.964855,1.9655748e-10 2162,295.34512,2.1156023,45.439056,58.220978,2.3356282e-11 2163,558.3329,231.7037,79.78992,215.68756,99.90552 2163,417.39758,227.80646,29.130035,53.603638,99.28026 2163,328.81924,221.82492,24.786407,51.901,94.03276 2163,360.04922,224.01366,21.347107,48.73979,65.61617 2163,602.0125,244.90225,33.332336,114.20059,3.3825073 2163,582.20795,233.9686,29.924866,56.792725,0.17565918 2163,170.69856,220.78123,27.692581,62.81703,0.07547504 2163,563.19745,256.82443,35.944275,101.45999,0.036075134 2163,617.1347,240.57661,22.011963,62.267807,0.030792827 2163,433.4056,123.90079,27.291687,71.41916,0.020889323 2163,613.23236,332.69647,25.610718,106.59119,0.0063497 2163,257.93286,186.70683,31.647247,71.26503,0.0023644168 2163,589.48816,285.92917,37.301453,123.40698,0.0015699606 2163,608.72107,72.093056,30.425598,153.55219,0.0008341479 2163,582.28754,373.464,56.85913,113.255646,0.00031572505 2163,0.94834065,328.78702,19.860703,133.37946,0.0002118835 2163,430.58813,77.293205,45.38391,162.82785,0.00016351033 2163,400.587,166.3755,75.28833,156.60243,0.000107925676 2163,0.88953537,245.1617,19.779013,146.03197,0.00010374024 2163,581.2093,313.03564,23.404968,82.550446,8.8775574e-05 2163,607.79474,435.7707,31.351929,67.93146,8.781178e-05 2163,1.0611166,172.36133,19.613522,126.64035,2.6748527e-05 2163,584.08014,277.02942,26.961975,70.13846,1.6971817e-05 2163,311.20468,133.83081,146.20206,208.96689,1.4374686e-05 2163,607.863,0.29964843,31.283691,62.562443,1.0622412e-05 2163,2.9544191,386.62576,56.401924,101.53961,7.155831e-06 2163,1.1818075,78.960396,20.74144,139.18451,6.779982e-06 2163,2.3401108,25.64296,58.501663,104.110916,1.3114121e-06 2163,389.766,9.235602,43.822296,52.587315,7.564731e-09 2163,283.30453,2.3749902,50.064575,63.611584,7.391911e-11 2164,391.70407,234.57896,31.642975,60.020157,99.90439 2164,324.05432,226.70537,27.001404,55.45314,92.21719 2164,292.3985,223.42761,25.533112,59.72824,91.4294 2164,131.32097,219.43886,22.117065,51.710648,2.068371 2164,89.39728,227.28116,31.602585,80.08209,0.3121342 2164,112.72443,222.4944,28.031876,71.56557,0.17754348 2164,405.4544,115.549576,34.227997,86.41455,0.0118891895 2164,477.45135,263.77042,25.444397,55.03412,0.011168194 2164,164.91084,188.00873,40.14537,93.58963,0.005987382 2164,580.5442,240.87035,22.636108,45.537643,0.004743461 2164,610.3924,225.86891,28.754272,140.4536,0.0018762052 2164,394.1715,112.90616,71.61798,174.21552,0.0015997713 2164,616.61206,323.37247,22.534607,85.98917,0.00025344014 2164,221.94032,202.25427,25.849579,56.237457,0.00025233152 2164,602.11786,123.73047,36.781616,186.28546,0.00021433084 2164,309.9873,202.55101,57.251556,93.60289,0.0001082634 2164,436.60632,132.04968,46.4606,126.42096,9.032126e-05 2164,586.32855,307.38998,52.818115,176.78845,3.906244e-05 2164,2.3935142,128.22232,35.016514,192.11896,3.1659867e-05 2164,1.07379,335.74792,18.540592,134.6734,3.1152056e-05 2164,1.4045646,213.97948,19.208813,142.68028,2.7221316e-05 2164,101.503334,42.387913,36.21357,104.345795,2.5917108e-05 2164,609.56726,442.26126,29.579407,61.713135,2.171204e-05 2164,274.6,138.36504,140.98917,228.96773,2.1358635e-05 2164,597.86176,7.245117,41.00714,173.56503,1.43242305e-05 2164,608.1576,0.0,30.989075,63.406517,1.1268863e-05 2164,3.2748227,189.44939,58.734673,231.70811,9.453465e-06 2164,1.1743336,84.67666,18.264345,73.479164,8.09096e-06 2164,5.339717,356.35266,79.71755,126.11893,3.2630262e-06 2164,442.7845,48.78137,36.05838,93.20938,2.9410583e-06 2164,0.94971603,438.17953,21.52964,64.45346,2.7792742e-06 2164,1.1731869,12.860384,57.312023,116.302414,4.1432057e-07 2164,0.55902344,3.8222234,32.099197,67.05978,5.2893217e-08 2164,381.47333,10.660876,44.4747,50.99444,4.7914096e-08 2164,537.8675,4.6798115,42.151184,52.37735,2.3871498e-09 2164,161.7189,7.336522,45.961227,52.634624,2.1116446e-09 2164,356.10693,6.037375,43.283905,53.559475,1.305737e-09 2164,135.08539,6.0927916,45.36084,49.869854,2.2152345e-10 2164,290.61963,5.276846,42.12967,46.33996,5.3523977e-11 2164,252.46535,7.8623943,44.50673,49.814392,1.5539984e-11 2165,330.3824,230.9549,36.737732,68.234924,99.936226 2165,207.70763,216.84045,29.802841,78.5394,99.298615 2165,250.77141,222.31024,30.98735,68.29874,96.62739 2165,597.4773,236.03133,38.709595,73.59044,0.039035987 2165,350.91,110.29621,34.77942,86.474556,0.011112254 2165,574.77045,233.11032,22.800842,45.456482,0.0056072297 2165,611.9891,73.48929,27.157593,94.10147,0.0027229749 2165,621.01483,229.15251,18.131836,57.266006,0.0017956716 2165,585.7391,233.14232,28.304321,50.557602,0.0017853836 2165,610.93317,333.27673,28.213501,155.54306,0.0011641219 2165,621.2759,267.74677,17.870789,57.366943,0.0009859772 2165,1.5609905,187.70654,20.32006,86.61865,0.00088554126 2165,337.6216,103.41658,70.0896,179.19933,0.00073466444 2165,189.60104,169.22594,66.83307,160.55013,0.0005359693 2165,586.422,198.55869,51.2843,224.40082,0.00045492407 2165,3.4166863,136.36472,59.50558,220.49689,0.00039487664 2165,600.2922,80.59702,38.854492,229.35101,0.00032492407 2165,313.42896,187.79446,76.196045,147.37097,0.00023060573 2165,489.52115,233.64807,72.59738,168.2414,5.8652466e-05 2165,122.503075,155.01614,45.403603,109.38556,5.2316802e-05 2165,0.7082654,77.43206,13.650485,53.65206,4.964354e-05 2165,609.2218,437.83917,29.924866,66.64276,3.48425e-05 2165,218.66147,160.6927,96.86542,186.00066,2.8810866e-05 2165,1.6454167,217.0954,28.727339,145.68622,2.4436287e-05 2165,407.41934,118.66841,44.315887,132.82256,1.9130719e-05 2165,0.88215333,97.29931,18.215275,75.83262,1.1459975e-05 2165,607.34576,0.0,31.800903,66.92038,1.01959495e-05 2165,0.90334475,318.423,19.255774,132.43741,8.642931e-06 2165,3.943252,261.95718,57.078,209.54102,5.7280895e-06 2165,1.3014112,393.44324,28.408472,102.1564,3.0534138e-06 2165,1.6550293,75.42173,28.524307,169.41669,2.5850995e-06 2165,2.1597722,22.584232,58.1843,101.160385,3.21349e-07 2165,1.1648381,14.915193,14.539616,76.335526,1.1777388e-07 2165,331.3437,8.713796,48.373383,48.23389,2.2592385e-08 2165,374.71606,7.2727036,44.920258,50.517776,8.895835e-09 2165,307.11957,5.6578336,45.772644,51.871555,2.7418654e-09 2165,59.762962,6.388197,46.453957,50.781235,1.1754934e-09 2166,125.56904,195.83678,40.767708,113.41408,99.894104 2166,281.5472,216.2134,40.897034,86.37538,99.80513 2166,185.25299,205.31459,39.87332,94.545364,99.543884 2166,423.6369,206.131,27.475769,68.84041,73.40277 2166,581.98035,295.45932,56.967407,181.37683,0.022204723 2166,612.01904,309.399,27.050598,106.47696,0.0072458447 2166,321.46808,83.075455,39.74881,103.88396,0.00651477 2166,44.12648,117.932884,39.347977,67.67072,0.0047919275 2166,623.71405,226.36711,15.432617,48.27626,0.003304725 2166,623.9954,402.62112,15.151245,48.33664,0.0019225003 2166,411.6786,187.63857,62.671326,104.80156,0.00081596355 2166,150.6826,161.80972,97.68959,176.13327,0.00064716284 2166,610.5299,203.10078,28.61676,148.54921,0.0005465679 2166,613.4412,385.0544,25.705444,100.744965,0.00039379057 2166,258.591,163.56883,89.31967,175.94649,0.0002238894 2166,1.197212,156.8652,20.223866,137.88736,6.7492474e-05 2166,67.509224,120.24325,154.43073,261.22452,4.0105995e-05 2166,377.7862,123.65206,146.64685,243.46246,3.2263648e-05 2166,596.7325,2.4246387,42.414185,72.29479,2.9229564e-05 2166,0.806993,291.1005,19.25084,130.80194,1.57391e-05 2166,3.3569353,111.97479,60.276245,223.45898,1.4610944e-05 2166,1.2765145,81.11079,20.174854,136.19174,5.6917033e-06 2166,0.73519534,373.14667,19.268133,123.796875,5.0537005e-06 2166,3.5965788,292.6351,57.213017,181.83032,2.0096866e-06 2166,4.266605,25.660574,80.829,148.6524,1.6523852e-06 2166,351.9291,26.889063,77.700134,169.51921,1.1325777e-06 2166,1.6193522,24.939995,30.474901,116.95815,1.511393e-07 2166,1.011967,16.547617,16.197426,74.675735,3.713859e-08 2166,32.89899,5.769728,44.75989,48.219948,3.0754226e-08 2166,327.40433,10.742549,88.84012,76.16776,6.450495e-09 2166,380.37292,9.075793,45.75714,49.19264,4.2032493e-09 2166,478.07117,5.904899,43.953735,54.837902,3.605228e-09 2166,503.15167,8.0241585,44.114685,49.6443,1.2396801e-09 2166,291.1064,3.8062387,47.818542,51.133,1.1657585e-09 2166,320.90082,0.8604834,48.266724,52.156067,9.669931e-11 2166,155.82947,1.9453971,46.083435,59.362743,2.0113303e-11 2167,119.67176,218.79852,56.18052,131.87637,99.91092 2167,238.32031,230.6506,53.172424,105.71506,99.817276 2167,419.43185,229.19962,31.36914,64.92749,98.2894 2167,49.604843,222.60388,45.61039,99.45273,58.620483 2167,329.41605,100.61529,35.151398,90.42234,0.004408581 2167,303.06985,197.79019,38.369385,73.85074,0.0030633 2167,137.0763,231.48569,29.624466,59.101532,0.0028049224 2167,616.8673,390.34924,22.279358,82.634674,0.00096234126 2167,346.48407,88.84377,76.7453,188.70468,0.00034349758 2167,76.052635,140.84009,141.08862,266.64224,0.00027796457 2167,611.0967,282.10025,28.049988,153.60239,0.00016180878 2167,26.325193,189.71841,96.03598,189.824,0.00015375015 2167,203.50168,155.05438,136.2828,230.38889,0.00013371726 2167,1.3419051,108.07427,28.289326,145.72678,9.754235e-05 2167,284.47714,146.18358,79.28436,171.55983,9.1190755e-05 2167,609.28076,434.75305,29.865906,68.79468,5.5481752e-05 2167,401.15808,195.6194,73.63901,150.98302,4.5179582e-05 2167,612.35626,163.44412,26.790405,128.23624,3.8115337e-05 2167,0.94259036,213.0474,19.704575,142.50793,2.8401033e-05 2167,584.07513,13.04307,54.65277,108.59978,2.5668769e-05 2167,607.1909,3.9976695,31.95575,58.577488,1.13232e-05 2167,0.7692383,341.59027,19.34754,129.74637,1.0530082e-05 2167,3.6068263,163.71776,57.418774,225.0522,6.1204382e-06 2167,0.96116376,442.49283,21.778717,61.14511,2.3299788e-06 2167,3.2888494,337.08377,57.750854,145.44073,1.0450485e-06 2167,2.4975471,25.588255,59.532413,195.72969,3.9513642e-07 2167,1.0951759,15.969199,21.38451,131.7829,1.3094595e-07 2167,4.649269,5.4982457,46.12733,48.94936,3.7491603e-08 2167,109.52319,3.3413916,45.977478,50.76613,6.84032e-09 2167,388.12772,7.3005486,45.84796,50.357212,2.8521876e-09 2167,291.3267,6.3735857,48.14209,49.49242,1.6101448e-09 2167,530.62164,3.81153,46.616943,55.69713,1.3595967e-09 2167,318.53854,6.615137,48.368347,48.58219,3.544096e-10 2167,358.75168,7.0494795,49.191406,52.70531,1.4190513e-10 2167,154.86264,1.710765,47.36496,64.44175,1.07648127e-10 2168,177.18228,233.31834,59.806763,131.3955,99.92355 2168,3.1621842,218.65613,81.59237,202.40137,99.92326 2168,403.55096,224.57597,33.909058,74.65376,99.70895 2168,308.87985,215.34666,21.614838,46.416702,86.27545 2168,171.28622,234.28488,32.18216,84.22482,5.833895 2168,21.86018,284.17206,21.785542,59.80429,0.08301763 2168,2.44271,213.77458,23.697124,146.45314,0.054309063 2168,46.319572,285.78293,23.149094,54.80963,0.041880704 2168,495.9506,79.0426,22.082306,47.167908,0.016867174 2168,321.8924,89.63149,35.062622,98.81957,0.004115439 2168,140.98703,163.56693,131.6022,230.53015,0.0007338948 2168,32.036667,264.63715,35.63623,114.02814,0.0007035207 2168,0.99295413,281.24973,21.804037,174.1879,0.0004027224 2168,11.245315,233.76787,46.191452,95.967514,0.0003598955 2168,610.7924,227.36559,28.354248,139.25523,0.00022180477 2168,385.98773,191.49162,75.45651,153.42729,0.00010942242 2168,598.8768,414.93695,40.269897,84.082214,1.9782014e-05 2168,1.1303728,95.78884,20.738125,153.10007,1.33351205e-05 2168,418.5355,106.47153,45.6167,115.88873,1.3295908e-05 2168,607.7218,4.5466995,31.424866,56.331512,1.0368332e-05 2168,601.29333,39.871204,37.853333,201.12875,8.722722e-06 2168,295.4941,70.30275,110.53955,210.29646,7.1567724e-06 2168,3.0495167,381.3189,56.901276,111.8233,2.9431008e-06 2168,0.8963387,16.1545,20.311234,147.11215,1.9374198e-07 2168,1.0707878,5.7238135,36.573204,49.912167,5.4710945e-08 2168,277.38074,4.674771,47.529205,49.61802,2.1910147e-09 2168,358.70166,4.1121826,48.710785,52.924473,1.8119789e-09 2168,332.68784,3.5098307,45.854584,57.055836,3.8338e-10 2169,368.8766,213.05858,37.26407,84.49922,99.94041 2169,60.1622,224.54506,69.0663,160.70863,99.89477 2169,106.45698,234.75047,31.08294,78.75874,2.576096 2169,62.5208,237.02933,32.88046,80.61771,0.9010838 2169,26.200327,152.71533,135.96576,283.85464,0.0131773045 2169,301.92392,208.65726,21.972382,51.67737,0.0070835166 2169,293.87997,75.341606,37.85266,109.71244,0.0023279581 2169,92.45336,249.71307,24.620193,64.21277,0.0022743598 2169,610.89557,171.74615,28.251099,131.45142,0.00015065691 2169,224.36682,101.70358,33.249176,77.83182,0.0001478278 2169,503.11136,37.22638,37.273285,63.12018,0.0001171236 2169,611.67786,254.68945,27.468811,139.29382,6.760585e-05 2169,586.4168,17.523046,51.95331,91.54085,6.3111576e-05 2169,3.7134652,164.48853,56.834244,231.28171,5.39616e-05 2169,610.9749,76.5331,28.171753,159.49884,5.0028895e-05 2169,1.05396,281.44366,19.923353,134.06586,4.2939806e-05 2169,341.17297,172.30508,94.07492,176.03012,4.1987605e-05 2169,1.5671599,160.071,20.325546,131.47975,3.9109524e-05 2169,612.46576,360.7046,26.680908,134.83939,3.554553e-05 2169,281.9868,43.211132,73.914825,202.5484,1.6199192e-05 2169,1.2205542,103.2793,21.224102,107.613266,1.5901634e-05 2169,1.1107422,354.64987,32.78638,137.02661,4.3990717e-06 2169,0.9860222,443.4557,21.728952,60.185272,2.227322e-06 2169,74.44586,265.46255,28.152985,88.05762,1.0369395e-06 2169,3.0505192,39.00304,60.859295,206.33296,7.719562e-07 2169,106.76087,8.874603,80.97251,185.30571,6.071833e-07 2169,1.0329167,14.873529,16.41876,70.92814,2.705163e-07 2169,558.9638,6.104839,44.032288,47.718136,2.0567306e-08 2169,262.33533,4.822111,46.855835,52.979385,1.5143636e-09 2169,400.6302,1.9873601,46.44278,58.537094,7.120133e-10 2169,53.26312,4.276968,46.144886,48.034416,4.325471e-10 2169,231.33136,4.778905,46.913483,54.238422,3.1827055e-10 2170,318.4956,228.07173,41.796326,96.18306,99.90083 2170,243.25748,72.47669,43.196533,135.21832,0.0034474963 2170,19.093405,206.60793,42.94876,96.95897,0.0022325113 2170,621.474,298.308,17.672668,52.690033,0.0008715039 2170,259.79214,115.25422,22.72528,51.343422,0.0007587712 2170,176.34187,116.44735,35.875427,89.22013,0.00047719336 2170,1.0758077,226.8063,13.767953,54.87677,0.0002887261 2170,622.07874,338.9203,17.067932,51.64615,0.0002727794 2170,2.2476904,144.09709,36.36888,189.14229,0.00025427394 2170,611.3444,247.27284,27.802246,131.73485,0.00016978434 2170,293.76776,192.90222,92.91635,168.5058,0.0001378368 2170,617.38696,202.20662,21.759705,76.78276,0.00012762577 2170,1.1189941,122.99211,19.483822,76.459854,0.000101012156 2170,4.4290595,182.4836,74.875534,264.5332,6.0579776e-05 2170,612.18494,315.90756,26.961731,144.21063,4.7590627e-05 2170,617.0008,139.53452,22.145874,80.956116,4.4632874e-05 2170,89.637596,130.07033,34.97647,79.62099,3.643531e-05 2170,250.09784,67.23886,79.22476,212.84512,3.5425226e-05 2170,1.0493774,240.1506,19.500366,143.87985,3.0017438e-05 2170,600.66284,102.375084,38.483826,208.50882,2.0994277e-05 2170,609.59045,440.70084,29.556213,63.47757,1.941846e-05 2170,0.636873,320.1802,14.240178,50.337982,1.4589475e-05 2170,1.3363452,60.746754,19.272692,85.63959,1.1343909e-05 2170,1.4043587,282.28775,33.824554,188.65222,9.484982e-06 2170,609.9273,16.162773,29.21936,160.9914,7.684411e-06 2170,585.9443,396.29446,53.202393,97.10431,5.3302633e-06 2170,0.7701587,386.43942,19.255238,112.05328,3.4099437e-06 2170,319.58383,46.66474,45.82376,177.26462,9.380448e-07 2170,5.2383204,355.3247,79.04865,133.44156,7.5827086e-07 2170,58.10637,8.78362,64.92819,190.95064,4.4108322e-07 2170,3.0629883,432.79633,52.66991,67.03165,3.4050737e-07 2170,1.997845,13.623118,57.952972,121.029655,2.2009267e-07 2170,472.39136,7.9944468,80.196045,76.3272,1.6702685e-07 2170,0.41931316,6.33077,41.26953,52.22689,1.5622984e-08 2170,238.11398,4.0390005,45.51407,53.2629,3.1043697e-09 2170,207.5846,4.295085,47.83632,49.357082,2.5028237e-09 2170,175.405,1.7754232,48.45569,61.243706,8.734892e-10 2170,437.2122,9.84489,43.291626,46.403744,8.21524e-10 2170,86.28226,2.893584,42.934708,52.532196,6.156957e-10 2170,40.372032,5.996805,46.255074,51.695717,5.0942395e-10 2170,410.09668,8.530028,42.424835,49.20486,4.9081367e-10 2170,346.59677,1.4884669,45.934235,64.44128,2.6122166e-10 2170,264.91757,4.195062,44.64792,55.222244,1.173517e-10 2170,372.7746,3.295407,43.379333,56.1112,9.0388794e-11 2170,292.08377,2.1690626,44.032837,57.54447,2.9299757e-11 2171,394.5109,226.3954,48.31079,125.701065,99.9764 2171,20.898972,273.46518,37.22372,92.00043,0.006075137 2171,620.79144,411.5512,18.355225,58.89984,0.004047096 2171,610.9678,321.74072,28.178894,147.11032,0.0016817377 2171,1.3970109,100.389435,19.933975,92.8638,0.00064488826 2171,622.42413,301.3579,16.722534,50.057434,0.0006302127 2171,157.96704,171.74857,34.969315,88.8501,0.00061676576 2171,1.2660807,277.8584,18.937853,81.62222,0.0002950517 2171,3.8678663,168.3946,60.83129,249.4683,0.0002449058 2171,312.35666,63.65687,42.20999,124.712204,0.00024490463 2171,0.6494621,39.126373,15.507755,69.25617,0.00022904036 2171,585.7723,205.9971,53.2218,250.79828,0.00020076652 2171,0.9829635,227.25323,13.356796,52.064148,0.0001741674 2171,244.85457,114.280365,33.293655,80.03345,0.00015443203 2171,327.5111,211.94437,23.531586,51.812866,0.00014756217 2171,2.0444498,280.2901,33.855217,193.63803,0.00011100639 2171,610.42865,148.71928,28.718018,141.03548,0.0001017211 2171,609.0241,433.01312,30.122559,70.305786,0.00010052857 2171,431.1144,40.257298,33.23767,78.75021,8.636699e-05 2171,373.26813,172.03224,124.437836,246.25453,5.1803e-05 2171,1.4724952,152.38934,21.18216,124.00409,5.0773524e-05 2171,617.06494,105.789444,22.081726,81.051834,4.6206107e-05 2171,616.2017,238.80508,22.944946,84.61481,2.7828608e-05 2171,585.3529,24.2781,53.29486,245.72986,2.6057382e-05 2171,610.85443,6.3891344,28.292236,123.9869,2.5555042e-05 2171,135.79243,38.172207,47.712143,190.3948,1.6328298e-05 2171,0.7499748,344.7818,18.57279,78.36981,1.4894475e-05 2171,0.41034994,0.0,41.106403,104.11958,5.1132915e-06 2171,2.2635286,11.977787,83.62608,242.53935,4.1383664e-06 2171,0.73828125,421.29425,16.537893,81.45557,2.6406653e-06 2171,329.72598,16.553862,59.18228,178.08548,2.259646e-06 2171,2.9911377,394.60782,56.688927,99.73651,1.3356358e-06 2171,0.95317465,1.9177165,21.305231,46.30414,3.5912174e-07 2171,415.2419,11.907995,82.641846,71.50305,3.9741426e-08 2171,24.782833,3.2784603,45.916553,50.897472,1.3212653e-08 2171,463.08548,9.080149,43.840515,47.565376,1.0175343e-08 2171,284.52435,4.8678417,46.14386,55.223396,1.0170725e-08 2171,311.1355,2.2082293,66.22598,53.74831,2.1717261e-09 2171,116.13603,5.948363,47.54657,58.671104,1.9769493e-09 2171,232.11531,3.4865658,46.429184,57.476574,1.7480825e-09 2171,358.81567,3.3024123,46.8071,58.94648,3.6092027e-10 2171,154.52376,2.841898,42.942078,52.51175,3.5310063e-10 2171,403.58987,4.323841,45.246124,59.799244,3.5071251e-10 2172,569.24255,240.2581,69.90411,177.34663,99.94189 2172,584.0476,238.66545,30.03125,49.605637,0.1598553 2172,3.7966976,331.91934,63.398003,148.95255,0.024670895 2172,620.7541,260.5421,18.392578,68.24887,0.018047297 2172,595.9868,261.02338,36.94464,96.52408,0.015510966 2172,265.59802,176.88564,34.813416,78.831085,0.008425724 2172,570.7676,254.96407,39.085815,93.30864,0.005247808 2172,460.12006,183.28064,41.341522,111.058624,0.0028977492 2172,434.92697,101.29112,25.83133,60.90242,0.001665574 2172,617.96643,216.18094,21.180237,80.401886,0.000486304 2172,1.3434465,350.8257,19.08636,91.94476,0.00040508638 2172,592.255,321.5825,27.599548,66.78317,0.00022001282 2172,424.6639,60.261627,43.766296,143.06738,0.00021952236 2172,616.2643,345.64172,22.882385,79.419495,0.00021651054 2172,609.2851,7.818952,29.861572,112.56757,0.00017302706 2172,87.774605,206.62477,75.87821,166.84142,0.00012814814 2172,1.1524456,96.24726,21.078388,140.11911,7.112444e-05 2172,1.0524658,414.9243,16.756428,86.894226,6.964049e-05 2172,583.82007,374.10953,54.918884,121.45404,4.3664368e-05 2172,562.9562,0.0,75.273315,162.75069,4.2485506e-05 2172,610.21405,65.030106,28.932617,162.72139,3.143875e-05 2172,609.49536,442.08038,29.651306,62.278748,2.0116122e-05 2172,1.2861296,209.28084,20.903305,100.31981,1.7177083e-05 2172,46.438953,266.46277,89.60744,184.60931,1.5270607e-05 2172,453.35083,18.353731,81.77344,159.15567,1.4031764e-05 2172,2.192806,252.39493,33.299767,193.26294,1.2432901e-05 2172,569.3252,3.3161361,64.407776,54.946022,5.2969804e-06 2172,399.81558,20.289623,113.06418,261.63626,5.0535846e-06 2172,3.1561866,127.27602,58.701317,263.97412,4.6406685e-06 2172,0.884091,280.3414,18.67601,77.21042,3.43171e-06 2172,1.2295134,18.646439,30.601406,159.8823,6.418702e-07 2172,229.53201,11.093282,78.13864,201.94402,2.1095454e-07 2172,444.166,2.1487126,46.668335,54.54926,6.271505e-08 2172,394.1584,5.6718946,47.144012,59.206585,5.6015754e-08 2172,1.4276108,7.7345996,30.74867,61.490322,1.6328991e-08 2172,474.44913,3.886247,46.68582,61.685814,9.545149e-09 2172,365.9172,5.022946,47.693848,58.559803,3.3653424e-09 2172,341.7979,5.2480016,44.79059,53.789818,2.1722564e-09 2172,256.6064,3.203086,44.528687,56.71569,2.5748784e-10 2173,503.00168,229.38591,25.6893,49.82054,14.420984 2173,472.764,235.71446,25.2258,55.675125,0.07144014 2173,15.283018,66.389694,48.694695,182.14828,0.013664008 2173,263.58762,177.57314,34.140686,78.21466,0.0050161555 2173,487.99298,168.59016,59.42865,130.08354,0.002547262 2173,241.60045,212.6985,28.68129,63.18901,0.0022829107 2173,466.3436,84.927475,36.023407,76.26059,0.0009724191 2173,172.4636,224.22176,33.601547,65.0479,0.00061261596 2173,611.30963,59.255444,27.837036,132.63005,0.00059120875 2173,1.922675,78.17702,19.100979,143.23943,0.00035378 2173,4.8762207,127.02771,83.64727,233.59558,0.0002835691 2173,417.5129,104.204575,41.171844,107.70293,0.00022945533 2173,434.44626,99.58464,25.716553,56.43666,0.00016642074 2173,617.692,371.83792,21.45465,83.8121,0.00013623397 2173,603.8689,283.1074,35.27777,166.39511,9.246863e-05 2173,535.5507,237.99422,82.11713,177.83601,8.182047e-05 2173,464.37622,129.98436,131.6452,233.61946,7.141514e-05 2173,584.6848,9.551283,53.656433,105.06212,4.5610333e-05 2173,612.3482,211.38344,26.798462,131.23802,4.048853e-05 2173,1.7995297,9.123021,57.617996,128.00615,2.9070497e-05 2173,609.56915,441.66138,29.577515,62.354065,1.925342e-05 2173,571.37994,354.37674,67.76672,131.91644,1.6697286e-05 2173,1.1378582,300.04266,18.778204,125.260895,1.6512675e-05 2173,356.78326,160.30061,83.611786,159.41188,1.5724427e-05 2173,1.4492513,224.88484,20.504816,139.18474,1.4895823e-05 2173,397.70013,33.46194,112.91727,248.49057,4.5924767e-06 2173,2.5375147,281.43073,56.659527,190.02115,4.2098027e-06 2173,0.63537353,384.33636,19.537762,114.913635,3.1170891e-06 2173,587.5673,1.6491033,44.603638,45.66833,1.8201183e-06 2173,455.9453,18.728712,75.31836,159.72182,6.5083515e-07 2173,1.2605933,26.956188,19.784693,87.59819,5.3392756e-07 2173,420.27945,8.811511,49.328735,51.086613,2.6350088e-07 2173,223.11224,7.93349,64.88422,167.85777,2.2452096e-07 2173,454.13867,6.816703,42.66159,89.58851,1.5542565e-07 2173,0.54198897,5.620529,45.479095,50.332825,1.3082462e-07 2173,372.6104,12.957386,87.24948,70.26614,5.7430928e-08 2173,473.3503,1.8686687,44.461273,67.08933,1.3278923e-08 2173,340.49985,5.9546957,63.70999,51.159275,8.648228e-09 2173,565.6836,5.024188,45.04065,54.63377,6.0324865e-09 2173,496.57913,1.9859506,47.38553,54.21487,3.7582923e-10 2173,249.60144,3.2221193,44.228027,55.495617,1.6773405e-10 2174,394.69952,223.76347,29.56369,54.33705,47.323895 2174,383.75256,225.54462,20.135315,45.662018,13.983022 2174,596.98145,201.78012,39.596863,120.186554,0.82539636 2174,168.25677,242.87566,36.388306,72.36403,0.19782025 2174,625.67584,238.45319,13.470825,45.74707,0.018393883 2174,76.695595,150.95062,58.267952,175.76413,0.0059356317 2174,441.7239,78.41175,26.350006,57.583595,0.0027804312 2174,399.15475,83.31769,40.70761,93.90895,0.002598611 2174,613.6298,161.95009,25.516846,114.98009,0.002593061 2174,84.86106,232.02472,34.466064,78.28873,0.0020939077 2174,563.5743,202.64328,42.70398,131.23242,0.0015378728 2174,619.9187,306.54703,19.227966,63.9162,0.00060687604 2174,608.9277,20.551302,30.15802,115.55313,0.0005439694 2174,548.9146,150.30528,89.63165,263.528,0.000492496 2174,521.20557,215.30412,30.958069,59.0439,0.00023216582 2174,369.42725,182.94019,57.73239,109.57376,0.00018099752 2174,2.9622169,128.38686,59.944206,221.68724,0.0001244294 2174,598.79236,243.30162,40.223816,214.61205,0.00012238938 2174,617.73236,397.31973,21.414307,76.21216,9.81268e-05 2174,591.19885,9.682587,47.210876,50.540203,3.173674e-05 2174,1.0821729,239.47339,20.186058,129.23965,3.013159e-05 2174,479.02188,36.524017,36.155243,77.844894,2.7840022e-05 2174,609.5075,442.59515,29.63916,61.102295,2.2735325e-05 2174,1.2485898,194.73831,18.466888,77.486084,1.6475207e-05 2174,0.72607994,342.31116,20.937977,106.96677,1.0107924e-05 2174,1.0498642,89.45995,21.694515,127.102455,8.238181e-06 2174,2.6690269,14.647532,59.30177,112.64365,7.2130965e-06 2174,346.9663,116.6408,133.71085,241.12091,6.3188663e-06 2174,3.1636167,263.40988,57.637936,203.18695,5.8774203e-06 2174,0.76706463,422.53336,16.43131,79.84393,2.5572833e-06 2174,189.81116,6.200293,63.512283,146.06902,5.21991e-07 2174,0.7814494,12.701563,15.011259,77.29255,5.1429447e-07 2174,468.91403,24.15894,71.96561,171.49716,4.1577164e-07 2174,387.67917,26.800203,73.57434,183.30434,3.0494778e-07 2174,0.62357426,6.6251354,44.001423,53.500473,7.531607e-08 2174,449.7255,7.5448275,46.327698,54.47168,1.5794967e-08 2174,475.53976,7.0620475,48.170868,55.94836,7.491302e-09 2174,197.89192,4.090804,45.471527,58.792164,5.9980674e-09 2174,414.62286,9.654884,45.572205,45.86238,5.3081983e-09 2174,388.60202,8.392587,46.095367,46.21954,4.0692383e-09 2174,503.7946,6.0372396,43.150543,53.86398,4.6902776e-10 2174,360.36432,6.554813,47.170807,46.790096,4.1502232e-10 2174,222.05493,3.0470965,42.270203,52.233265,2.3493504e-10 2174,318.3718,4.1851416,64.862305,48.79379,2.101362e-10 2175,539.90674,234.50125,52.748474,131.79169,99.8801 2175,405.1939,226.0073,29.398193,59.30713,17.347908 2175,604.5322,247.16998,32.22815,60.843994,3.2465558 2175,436.2498,62.37715,21.158142,57.455353,0.033901237 2175,0.5154647,251.70204,23.68515,85.54686,0.011326527 2175,601.44305,240.14586,37.27478,204.31801,0.0040350957 2175,65.02392,260.9497,38.121803,84.50287,0.002674305 2175,1.8998706,74.78991,17.6862,131.52454,0.0021070202 2175,1.1295362,115.1739,36.87615,234.805,0.001582722 2175,449.49808,49.230812,31.937622,74.42057,0.0003685795 2175,51.343517,230.91074,91.28993,152.20584,0.00029978584 2175,585.2028,10.637451,53.198364,96.06485,0.0002812159 2175,0.7985791,255.55725,35.27008,188.36407,0.00015337628 2175,494.64026,177.89912,134.9643,239.36192,0.00012264735 2175,92.28054,258.26276,41.41442,92.43863,0.00011566119 2175,598.3146,65.3384,40.832092,245.91202,9.6428754e-05 2175,612.0587,368.56992,27.087952,126.61478,7.5863485e-05 2175,387.3512,193.6493,77.82294,147.9709,4.6281166e-05 2175,0.72928876,305.40753,18.41761,81.05136,4.194926e-05 2175,383.77518,67.294365,43.15387,144.32825,3.5343193e-05 2175,0.5512809,379.42783,19.88231,117.317505,7.684118e-06 2175,465.9607,23.986534,37.766754,76.88605,7.2484722e-06 2175,5.015733,351.6547,79.22106,134.42715,1.8304336e-06 2175,59.55979,54.860313,78.38665,244.80957,7.665714e-07 2175,523.97766,13.617865,89.10834,68.15383,3.7999027e-07 2175,361.69925,0.0,113.29257,263.0518,2.7887245e-07 2175,1.1049732,13.309226,15.071346,80.17575,8.5012054e-08 2175,1.7946941,9.666426,58.49798,125.22894,5.968467e-08 2175,474.78064,8.465209,47.779785,49.36389,3.598406e-09 2175,1.2298763,5.4480324,33.806786,47.37425,3.3635712e-09 2175,503.70074,7.5306234,47.692688,52.238705,3.276705e-09 2175,434.77856,6.593667,47.71759,53.552807,3.1325391e-09 2175,164.63774,5.576478,46.50206,57.846558,3.0647282e-09 2175,409.32755,7.982347,45.20529,46.40792,9.572583e-10 2175,294.19775,3.403589,45.131195,53.83587,7.16535e-10 2175,353.55875,7.083413,45.024475,48.311764,5.6721194e-10 2176,583.5984,208.03409,37.01416,78.88101,68.2792 2176,492.8372,226.11589,25.690582,60.712234,48.659534 2176,481.0291,223.90137,23.74704,50.16684,2.1929684 2176,316.26456,204.5241,25.82663,52.707565,0.031929307 2176,622.14154,216.56087,17.005127,52.54686,0.0078656 2176,582.6345,158.15814,53.078552,191.42117,0.0030571192 2176,476.20648,178.64555,49.812256,118.55745,0.002571376 2176,299.7411,210.27351,25.180939,51.204147,0.0015203764 2176,611.8064,177.66626,27.340271,121.03491,0.0013343317 2176,100.62785,210.10783,25.655937,53.047134,0.00055161107 2176,588.3434,252.15314,33.041138,69.57129,0.0005423171 2176,250.4418,225.90245,23.795258,48.194443,0.0005198758 2176,1.1926954,109.26577,19.415812,91.350945,0.0003312198 2176,13.695439,134.82704,43.316166,86.451324,0.00028464044 2176,616.88904,283.0293,22.25763,83.41388,0.00011702636 2176,616.903,77.25895,22.243652,80.56547,0.000107532185 2176,616.15485,24.904076,22.991821,73.571724,7.4106894e-05 2176,2.2924187,88.824265,35.755356,189.31313,7.208874e-05 2176,611.9587,343.7583,27.187988,131.0726,6.0683913e-05 2176,585.4975,248.38904,52.84442,228.0646,4.866311e-05 2176,470.56705,171.54872,97.03494,209.3755,3.593837e-05 2176,609.50665,442.18747,29.640015,61.559143,2.3339695e-05 2176,0.9716097,216.57368,18.170383,132.64198,2.1203663e-05 2176,616.3625,140.53305,22.78418,90.854034,2.1180258e-05 2176,0.70210695,295.99835,20.01695,134.11676,1.500707e-05 2176,3.5761523,220.34908,56.72248,228.43437,5.518293e-06 2176,0.92013025,356.21658,28.222181,135.67062,3.0265217e-06 2176,0.7218832,422.14578,16.731619,79.64053,2.808605e-06 2176,598.73346,21.962189,40.413208,220.20702,2.5612178e-06 2176,5.6244206,359.72806,78.865295,127.646484,7.021773e-07 2176,0.7474732,9.667839,22.180693,151.64963,1.5460016e-07 2176,16.982218,0.0,46.77761,47.95351,2.055051e-09 2176,412.6651,2.7058187,66.03021,53.386642,1.2147963e-09 2176,378.52356,0.0,48.95926,64.97749,3.5188777e-10 2176,125.49281,0.0,48.237442,62.152313,3.1743028e-10 2176,272.33768,3.8634963,44.908478,54.253265,2.943454e-10 2176,53.35465,0.0,45.492916,47.66592,1.8700241e-10 2176,352.74588,0.40270507,48.19922,60.30097,9.47772e-12 2176,94.61584,0.0,47.276085,60.917747,4.1943454e-12 2177,577.8771,230.50589,28.214478,50.76129,6.1045303 2177,587.75104,245.83266,31.55072,76.8622,0.032488775 2177,312.79202,205.83472,24.490143,47.67389,0.01579231 2177,110.10081,217.49542,26.68586,50.47705,0.009108111 2177,152.52783,159.035,27.462082,65.58974,0.003757448 2177,9.702459,215.11374,37.936844,71.17377,0.0026931441 2177,621.76556,229.46785,17.381104,51.817337,0.0025491721 2177,622.7552,263.9856,16.39148,51.37741,0.001882503 2177,355.8738,198.6651,22.470062,47.32527,0.001134441 2177,1.7648658,153.28331,22.072937,141.43877,0.0011079855 2177,620.7406,114.609924,18.406067,58.128555,0.00077539263 2177,610.75256,186.79776,28.394104,130.32306,0.00064846897 2177,531.57404,206.51128,25.430908,47.668625,0.00048889924 2177,475.98074,193.68527,26.154938,61.87851,0.0003818399 2177,69.29114,55.86948,33.50663,62.939846,0.00037352642 2177,620.92474,181.15681,18.221924,60.58116,0.00033524274 2177,617.40155,292.42148,21.745117,84.838806,0.0003133903 2177,583.7666,222.6726,52.67572,228.99792,0.00024122944 2177,3.1828468,155.44606,56.761818,220.79637,0.00021986682 2177,610.3845,96.6505,28.762146,152.16019,0.00019292308 2177,617.76385,392.02277,21.382812,81.23694,0.00018448097 2177,1.0848837,246.90244,18.868011,79.45114,0.00010353683 2177,1.3589112,119.51688,19.722652,86.82071,6.536095e-05 2177,616.62384,49.68967,22.522827,81.34422,6.244868e-05 2177,0.9343905,256.1623,29.045975,156.55557,2.6053356e-05 2177,609.2467,440.4483,29.899963,63.333313,2.077214e-05 2177,586.1652,17.447142,52.430115,101.035736,1.4322071e-05 2177,1.1671859,58.527397,18.788507,82.195,1.2677803e-05 2177,606.7485,8.609557,32.398193,52.655197,9.580949e-06 2177,0.78912437,400.38635,18.16784,70.80173,8.168943e-06 2177,0.6048332,358.99216,18.401546,72.07858,4.5040883e-06 2177,1.537378,419.128,34.922657,79.3674,8.8891784e-07 2177,2.2985759,20.170395,58.28263,108.3477,8.1960485e-07 2177,5.053392,356.73816,79.14898,130.42465,6.6485126e-07 2177,1.0005502,13.108637,15.780938,81.46868,8.899539e-08 2177,580.8537,8.501322,42.864746,45.421173,2.2840348e-08 2177,1.4357927,6.9750767,47.66052,47.588318,1.5597438e-08 2177,468.9735,6.388524,41.883118,45.91853,2.3567075e-09 2177,419.75546,2.7411866,65.38794,52.478325,1.1205475e-09 2177,123.651825,0.0,67.365005,60.799194,8.6536146e-11 2177,287.48914,4.164212,42.420013,51.50928,7.158039e-11 2177,312.77927,7.1429706,42.36908,45.479187,2.997079e-11 2177,393.34595,2.1462827,45.798035,56.25161,9.0259545e-12 2177,363.07367,4.5190578,41.782837,53.746502,6.517391e-12 2178,443.52423,220.30482,22.222809,48.87059,0.23884156 2178,134.20605,225.4044,21.420425,47.086136,0.013863626 2178,604.07336,109.84697,35.023132,150.66826,0.0024754659 2178,111.98732,227.06847,27.168564,53.570114,0.0010425149 2178,155.9693,158.60646,39.521286,71.32333,0.00073139643 2178,617.09686,216.59088,22.049805,76.04175,0.00046076474 2178,1.4964323,268.39023,12.594149,50.87863,0.00034762814 2178,616.9166,75.497635,22.230042,86.24617,0.00025879467 2178,622.1322,341.25537,17.014465,49.469025,0.00023819471 2178,17.242949,266.80548,23.432623,46.45453,0.00015953234 2178,617.879,404.06232,21.26764,75.586975,0.000108101 2178,2.1746435,200.12099,35.51535,173.28471,7.7618926e-05 2178,4.2089014,104.92236,55.509987,216.80695,7.457154e-05 2178,0.9667375,279.1275,19.449936,142.38605,6.605816e-05 2178,617.2812,278.54535,21.865479,81.44394,6.230306e-05 2178,66.80422,203.87177,24.894684,49.740875,6.0624967e-05 2178,601.11,202.81891,38.036682,186.89911,5.479883e-05 2178,418.6371,182.55444,61.237732,109.72464,2.0207068e-05 2178,1.679546,141.73746,20.195904,135.65863,1.6797812e-05 2178,604.35187,315.14987,34.7948,146.64307,1.4941409e-05 2178,586.18884,21.95685,52.23291,99.86085,1.1264726e-05 2178,0.5916089,366.74564,20.054396,128.8125,4.3093723e-06 2178,370.7661,151.60896,102.66394,209.02242,2.3743119e-06 2178,2.8380015,325.7367,57.184162,157.45187,1.3254162e-06 2178,2.0446143,15.555615,58.527264,107.98924,1.7686428e-07 2178,155.66112,0.0,49.512558,153.99855,6.990686e-08 2178,1.0477002,11.79557,14.170201,73.22919,4.3973223e-08 2178,46.372932,4.1031737,46.109337,55.815865,1.675277e-08 2178,1.0859245,5.850184,38.763386,47.943085,1.38781004e-08 2178,1.27448,20.489344,21.015022,152.12659,6.3221366e-09 2178,78.02837,6.4401546,46.00776,53.67971,7.682066e-10 2178,141.06671,0.0,51.07553,66.322876,5.895192e-10 2178,476.03464,2.5083854,43.27597,52.183628,3.4987466e-10 2178,449.66672,1.9991357,45.451263,53.141895,6.6422624e-11 2178,395.92862,3.4574447,44.875336,53.377987,2.589554e-11 2178,321.0555,6.4965677,42.680206,47.218494,1.9224011e-11 2178,419.8078,1.6320736,47.79648,53.295586,1.1646439e-11 2179,471.4083,219.71616,22.637543,54.41928,99.55243 2179,484.91772,219.5625,23.030426,53.990204,98.33125 2179,123.24827,212.90909,32.874992,62.528717,0.09384839 2179,598.6498,185.12404,38.3963,93.04414,0.03954564 2179,506.9414,219.82837,21.196655,53.689972,0.01331323 2179,259.39276,219.6073,25.169342,47.39212,0.0029799815 2179,117.72214,230.65517,20.061325,45.216507,0.0028932784 2179,620.9377,160.67465,18.208984,57.89882,0.001447547 2179,16.089453,117.79318,63.290977,181.20328,0.0013164706 2179,411.91336,193.37943,41.497528,91.80762,0.0008994084 2179,621.0224,128.05214,18.124268,58.283783,0.00040536496 2179,461.2087,203.49971,54.166046,93.36244,0.00039051555 2179,45.731197,149.77673,88.32143,178.40826,0.00030327044 2179,538.9176,216.10835,24.670044,53.471725,0.00018471653 2179,0.9517481,122.45516,17.894398,89.50727,0.00018037717 2179,611.8867,375.62555,27.259949,117.66312,0.000106998414 2179,609.38,65.75429,29.766663,169.72762,9.967189e-05 2179,610.28595,219.33984,28.860718,156.62433,9.435907e-05 2179,0.8881893,233.12016,19.59267,134.47734,4.8964677e-05 2179,36.13474,243.25363,28.75703,63.6492,4.758418e-05 2179,2.3507504,138.27954,35.04738,178.21094,4.6108384e-05 2179,584.779,15.9068,53.717712,105.54682,2.053617e-05 2179,351.66315,158.49234,76.987976,166.98068,8.048357e-06 2179,3.129175,275.43286,56.770947,199.47034,7.784178e-06 2179,0.579139,341.4769,19.977829,131.98917,7.671568e-06 2179,393.6179,153.77794,99.995605,190.03456,4.1673648e-06 2179,179.90094,118.115005,132.25494,223.31313,2.4786464e-06 2179,0.8179338,424.22614,17.03541,77.418884,2.2133468e-06 2179,0.656665,42.88748,22.510242,130.13562,3.2438373e-07 2179,0.79121745,13.597057,15.307543,74.78401,3.0816835e-07 2179,1.1960483,11.688027,58.55992,122.390205,1.5057792e-07 2179,476.50684,7.0747266,46.23706,119.43024,4.340384e-08 2179,59.72702,0.41251954,43.936264,57.66373,3.767332e-08 2179,0.56751955,6.9598246,42.887516,53.869118,9.1196215e-09 2179,139.25229,0.0,72.40761,61.32254,1.9239217e-09 2179,421.00595,1.1407243,64.00412,54.719513,8.645387e-10 2179,381.34497,7.356377,43.691803,47.31312,4.2810178e-10 2179,335.02335,6.7816634,41.698914,51.429237,1.5319683e-10 2179,462.5573,1.8213347,44.48584,55.331825,4.875022e-11 2179,188.23212,0.0,49.223938,45.990902,5.2193003e-12 2180,518.0613,224.6486,24.823853,60.87468,99.48863 2180,533.6668,225.74094,22.490417,57.53235,96.74107 2180,564.4735,218.31302,27.183899,58.792847,90.62324 2180,380.55573,219.9596,20.181824,47.24945,42.18059 2180,608.0246,218.55592,30.436707,70.0421,0.0068069347 2180,74.753494,217.17455,34.849617,77.64189,0.0025292097 2180,430.1464,198.18274,41.928925,90.63168,0.002495064 2180,620.51636,196.73463,18.63031,59.063034,0.0012476314 2180,70.73579,246.0479,21.331985,46.227097,0.0010074575 2180,1.4268165,268.6455,18.553675,80.190704,0.00058621436 2180,371.34024,200.44366,41.145386,89.96954,0.00015436782 2180,603.42816,248.43636,35.718506,184.46208,0.00014598439 2180,506.03375,190.77336,64.706055,150.25365,0.0001315814 2180,548.4471,203.95316,63.985718,93.62802,0.0001216957 2180,65.50689,128.22458,39.41166,100.93288,0.000117873926 2180,611.06433,102.60067,28.082336,151.70493,7.348364e-05 2180,2.0817018,244.15683,31.710402,168.50708,7.189087e-05 2180,611.93713,350.2874,27.209534,137.73099,3.8614682e-05 2180,3.7438104,155.24008,57.804684,216.5545,2.0910436e-05 2180,0.5436719,338.952,18.56064,131.38629,1.5291564e-05 2180,1.6028712,200.20763,21.696554,104.31297,1.3599923e-05 2180,610.9233,20.937767,28.223389,134.72595,1.1349568e-05 2180,415.78766,159.19357,84.89429,190.58728,7.297371e-06 2180,1.2586914,98.93313,21.306896,116.20391,4.705637e-06 2180,182.09116,146.18974,92.68713,208.77089,2.002646e-06 2180,3.1262176,339.87497,57.32907,142.18411,1.9632669e-06 2180,0.82704836,442.0286,22.09953,61.26584,1.8840083e-06 2180,354.60278,160.18654,95.279724,201.9746,1.7058003e-06 2180,1.1043091,17.167755,21.715027,95.42863,1.7790161e-07 2180,2.1335125,7.9362373,57.786682,125.06708,7.771027e-08 2180,476.3945,4.2647786,44.391632,55.316525,4.812525e-10 2180,173.65208,0.0,47.76613,54.850685,1.8346505e-12 2181,461.60745,215.81216,22.078766,50.957825,99.49018 2181,394.21417,213.94502,25.550262,61.01982,93.764404 2181,473.9501,214.3806,20.330536,49.09767,77.733955 2181,609.56696,213.42368,29.412048,80.06491,2.184168 2181,622.3788,250.89467,16.767883,49.207443,0.17852648 2181,30.897293,194.27817,28.559864,51.057312,0.00605799 2181,159.90033,214.92926,23.868301,45.24234,0.0047322605 2181,265.32324,211.6974,25.66922,48.51149,0.0020067878 2181,447.90408,190.15102,56.164886,97.157364,0.00045101592 2181,590.2767,121.15652,47.757324,225.59027,0.00034780524 2181,58.704678,200.76428,26.326649,47.107544,0.00027693476 2181,1.2142009,266.46646,18.458036,79.13495,0.00022382876 2181,4.771292,109.84472,57.747505,208.14752,0.00021987103 2181,380.19547,188.668,54.011444,102.10611,0.00021111903 2181,603.38275,227.28688,35.763916,214.83989,0.00020909667 2181,2.0756543,224.04384,33.9475,173.84395,6.174386e-05 2181,610.7574,101.77514,28.389282,132.60788,4.02683e-05 2181,1.6781852,177.98363,18.711151,128.67973,3.522276e-05 2181,1.507002,144.36516,18.4668,82.62215,3.5066147e-05 2181,572.1973,351.9927,66.94934,135.31653,3.352701e-05 2181,586.4557,11.238168,52.380737,103.64993,2.7374548e-05 2181,612.0832,48.598198,27.063477,107.47396,2.3166147e-05 2181,609.33234,440.35678,29.814331,63.27234,2.206115e-05 2181,0.50266194,324.4357,20.320076,135.47427,6.751514e-06 2181,412.7742,127.57279,136.45035,225.01065,4.226207e-06 2181,0.77468264,424.1383,17.225327,78.020874,2.3655923e-06 2181,143.43854,120.4564,137.96252,228.35638,2.3632967e-06 2181,3.0823064,399.0093,55.945858,94.639404,5.3685835e-07 2181,1.8295541,35.80581,35.180183,167.57779,3.7521386e-07 2181,0.9312207,15.968516,15.077982,70.76917,7.111888e-08 2181,2.2525065,15.134721,50.62976,66.63609,2.3908783e-08 2181,399.77994,2.1889355,47.342377,55.2609,2.4978017e-09 2181,467.1722,3.012601,46.65335,52.391445,2.3239572e-09 2181,442.8349,1.3934147,46.186676,62.217064,1.0946839e-09 2181,161.56985,0.3612272,47.353394,65.57608,5.7525453e-11 2181,353.46524,3.6315057,44.84601,52.40696,2.7947786e-11 2182,521.90094,218.26234,26.603271,60.296127,99.72596 2182,420.1385,216.74686,30.554016,75.86716,98.50828 2182,158.28194,218.85188,21.235779,54.128677,91.11027 2182,39.41921,202.57571,29.614407,53.44751,61.35135 2182,503.8976,218.44785,29.933075,60.829926,12.247257 2182,170.04749,221.75558,22.241333,50.24939,9.05841 2182,457.82898,207.70863,24.502594,45.02603,0.6164255 2182,137.04124,222.64105,24.312424,49.547974,0.07345756 2182,393.8835,222.57584,24.221924,56.576538,0.0028885948 2182,142.53235,192.63287,59.28116,98.41089,0.00036538768 2182,1.99952,144.98184,35.387787,174.82086,0.00018563126 2182,503.65497,180.47974,67.87103,152.53638,0.00018360549 2182,611.94507,198.17584,27.2016,120.67255,8.551005e-05 2182,1.3748405,217.3616,19.326141,132.06161,7.757704e-05 2182,402.01294,186.46233,70.48572,147.2498,5.559802e-05 2182,617.0298,163.83835,22.116882,76.783356,5.1427905e-05 2182,1.3557146,75.8403,20.17766,152.39948,4.83373e-05 2182,612.59045,368.35895,26.556213,128.00632,4.0824067e-05 2182,586.3943,11.39846,52.012207,107.777,4.063242e-05 2182,610.53394,69.360825,28.612732,143.41225,3.564469e-05 2182,602.37665,266.4138,36.77002,180.02957,2.2782164e-05 2182,0.47736737,297.48962,20.156094,147.66455,1.9007928e-05 2182,585.801,91.58146,53.345642,225.1297,1.3965361e-05 2182,11.247019,155.77704,98.667046,213.16132,1.0879689e-05 2182,3.0777605,218.59381,56.571903,220.71823,7.756966e-06 2182,0.7837435,387.81958,19.5713,110.39755,3.862469e-06 2182,112.52094,124.809105,138.18286,228.52554,2.3082075e-06 2182,2.9896665,42.859253,59.624332,223.47784,1.2659567e-06 2182,1.0197062,22.770359,19.574297,115.912415,7.01777e-07 2182,3.1486964,397.78247,56.256996,96.48505,4.6197886e-07 2182,398.56213,9.260297,92.39908,78.747986,2.7429756e-08 2182,454.5038,5.323955,48.8049,59.064037,2.6510888e-08 2182,460.93475,0.0,81.796265,173.37775,1.7695598e-08 2182,373.14304,3.791403,48.6752,55.900135,3.2675678e-09 2182,174.67735,0.61672854,44.658646,57.17068,8.899046e-12 2183,580.98004,218.42682,34.84082,73.91345,99.83631 2183,469.1497,214.765,40.02948,103.92995,99.73654 2183,122.62042,217.1831,31.734116,75.18863,99.552414 2183,602.253,222.15323,26.390686,65.67648,52.730328 2183,103.67541,229.96129,22.300133,53.963455,1.6724772 2183,140.91252,221.50272,26.910461,58.555267,0.46522123 2183,408.40176,70.48542,23.993591,50.07988,0.06620254 2183,626.91315,225.59764,12.2335205,47.88246,0.021661263 2183,397.4041,61.785797,23.09787,53.010468,0.017392034 2183,597.9441,184.49538,37.483276,187.83421,0.009388876 2183,504.70303,205.9085,23.488434,50.63469,0.00195893 2183,609.4206,125.65899,29.726074,157.677,0.001099423 2183,382.25388,219.80074,35.062653,75.5479,0.0006361582 2183,101.56183,186.71457,76.97801,143.36105,0.00015011051 2183,446.45023,189.6055,88.87302,166.0058,0.00012710177 2183,583.56726,10.898216,54.837402,301.06042,9.444018e-05 2183,609.5063,9.610222,29.64038,123.02424,4.0962746e-05 2183,612.49774,367.36935,26.648926,128.16931,3.573775e-05 2183,1.2578678,186.20433,19.18896,120.33208,2.8084878e-05 2183,0.61835206,255.23769,19.964838,131.42229,1.9669218e-05 2183,537.9124,203.65195,24.099365,52.75052,1.6771848e-05 2183,398.88702,34.33798,43.51877,94.86865,1.42349645e-05 2183,1.3056324,90.552155,20.308868,146.68678,1.3163206e-05 2183,57.959545,128.62122,154.80814,243.72446,1.0855602e-05 2183,220.61844,134.1899,79.796814,166.44856,7.3382103e-06 2183,3.5047786,151.80164,58.188892,205.0061,6.6846014e-06 2183,0.7332479,392.2293,18.936052,106.768616,3.4425532e-06 2183,1.3187842,291.71036,33.379246,177.42987,2.8073305e-06 2183,1.8327296,29.386303,28.439817,127.76552,5.426399e-07 2183,5.346989,359.3192,79.24015,128.60162,4.847817e-07 2183,3.0872152,42.41758,59.219845,201.66486,1.6496541e-07 2183,0.96885335,15.122188,14.581154,76.40973,9.7598495e-08 2183,1.4299724,8.620493,38.97142,50.740456,1.4790951e-08 2183,434.3211,4.360368,48.332306,54.82539,4.8009663e-09 2183,461.4912,8.160011,47.509674,51.472958,3.5354017e-09 2183,342.14008,2.7928483,43.48282,54.51608,2.478542e-10 2183,179.33228,0.0,45.866684,58.01869,1.8648657e-11 2184,40.437664,219.68732,42.0482,103.67148,99.769714 2184,592.5143,238.56068,46.632385,150.50392,99.57094 2184,67.00891,231.58618,32.818108,81.07626,91.61864 2184,15.447671,236.31068,34.27425,76.05437,30.914598 2184,514.95575,209.81673,29.14264,53.122208,1.6286542 2184,612.9438,234.2486,26.105713,65.745514,0.096400194 2184,621.5002,303.92392,17.646484,50.394897,0.052899167 2184,608.00555,271.3651,30.166626,67.783966,0.027872207 2184,549.9218,210.04222,29.954285,62.250412,0.010359625 2184,10.662146,196.06456,104.846985,173.53615,0.009449179 2184,412.68304,53.18231,20.755554,45.1554,0.005541812 2184,2.2592359,212.15323,31.152115,131.19763,0.00076728273 2184,610.57294,96.89196,28.57373,155.37714,0.00014180335 2184,609.19904,441.24252,29.947632,65.1749,3.976035e-05 2184,610.68506,13.594219,28.461609,139.01161,2.393204e-05 2184,1.4151262,113.958,20.431852,151.20657,1.4632154e-05 2184,0.8335197,296.48312,19.701424,142.0044,1.2525346e-05 2184,585.0899,390.10623,54.056763,106.500854,7.708633e-06 2184,406.6006,32.47981,41.622345,83.86363,2.0483508e-06 2184,1.4138575,419.33023,34.57387,79.593475,8.7236003e-07 2184,1.3403931,24.17834,20.73437,145.8984,2.5440104e-07 2184,517.73926,6.6147676,45.411865,49.04204,2.0621407e-07 2184,2.39486,17.492722,57.368523,119.96182,1.7291096e-07 2184,462.44705,7.2420216,47.796143,53.87787,9.6722275e-09 2184,127.05029,3.39112,48.039474,54.53547,1.3244035e-09 2184,425.7243,3.57674,49.567627,56.380226,1.2353606e-09 2184,100.80927,2.1436427,46.51484,57.564407,8.3431306e-10 2184,366.72412,4.254178,45.54767,51.420715,5.1228945e-11 2185,226.52254,213.23883,29.889969,56.215576,99.531075 2185,572.91705,208.16481,25.46814,55.230087,13.35463 2185,126.13235,43.575554,38.262215,99.40313,0.025737302 2185,612.44916,186.5797,26.69751,106.06047,0.000611553 2185,1.1504257,271.6742,13.824627,52.785187,0.0005467159 2185,620.98157,316.86566,18.1651,58.262512,0.00038886996 2185,585.1539,181.06578,52.973694,230.13512,0.00029698235 2185,616.26294,246.58574,22.883728,92.26466,0.00021630994 2185,479.78174,250.7501,42.622314,144.11354,0.00017927344 2185,1.3956373,251.20813,21.065323,132.42172,0.00013473361 2185,611.18146,330.58026,27.96521,137.98929,0.00010870848 2185,611.13605,99.91901,28.01062,136.95952,9.3672e-05 2185,617.14325,59.849976,22.003418,84.048416,6.4972526e-05 2185,0.9372302,117.14644,13.912077,54.842087,5.1772673e-05 2185,1.3608577,207.42746,18.443712,75.46234,3.9311148e-05 2185,2.6203923,218.19545,55.789207,210.86275,3.6205285e-05 2185,609.2555,440.40802,29.891174,63.616943,3.397324e-05 2185,206.72687,167.60336,73.67267,149.05942,2.5474405e-05 2185,2.3243132,137.8425,34.41391,189.12875,2.0789264e-05 2185,0.69933677,307.6642,28.695013,155.54935,1.1784286e-05 2185,1.5480233,67.2221,20.575542,149.87445,9.026446e-06 2185,0.76638514,406.09738,18.16328,71.558685,5.764499e-06 2185,584.0237,5.0915627,55.122986,242.48247,2.3044024e-06 2185,597.7238,7.573708,41.42285,78.3415,1.9225417e-06 2185,4.035928,25.35521,78.284706,305.2168,1.6855221e-06 2185,2.0732846,10.545104,58.55444,131.02338,7.29837e-07 2185,3.0537453,398.1493,56.290226,96.087555,5.511821e-07 2185,89.86112,5.584909,123.14063,221.60986,1.7746409e-07 2185,1.4276669,10.408763,16.944601,68.08668,6.6158215e-08 2185,131.93658,2.7761133,69.71956,57.286858,4.8526414e-09 2185,421.9709,3.040036,45.049286,55.63166,3.8175294e-09 2185,1.3362126,4.1751304,47.727676,49.114727,3.363353e-09 2185,381.2356,3.7323456,45.30945,49.45318,1.7854731e-09 2185,48.29333,0.56619954,42.175564,52.317825,1.4497588e-09 2185,101.48045,1.5168034,44.858765,56.396935,8.970835e-10 2185,71.61414,0.0,47.03038,60.072372,2.5761507e-10 2185,342.79153,3.298768,41.473755,53.774536,1.9859203e-10 2186,136.8657,216.12384,39.275665,73.03964,99.459465 2186,601.1438,206.74016,30.344055,62.91646,93.33247 2186,618.20197,220.41766,20.944702,55.495758,0.015255595 2186,592.451,172.96074,43.522827,165.23476,0.008434568 2186,108.784325,40.268284,36.164528,96.41344,0.0016096083 2186,4.4185257,85.366425,49.244854,201.27426,0.0010372233 2186,352.44852,72.99932,35.493988,67.87966,0.0007286769 2186,1.6727808,188.45865,18.123384,73.6398,0.0007217649 2186,48.98609,152.18959,30.32885,59.919678,0.0005483446 2186,610.40015,104.70301,28.746521,162.49472,0.00027540457 2186,441.50354,87.71928,44.862152,99.9676,0.00023217913 2186,617.9416,380.94186,21.205078,80.539246,0.00016870294 2186,1.0638664,147.381,13.3484125,51.384537,0.00015711955 2186,621.632,74.06613,17.514648,56.67444,0.00013538639 2186,119.79488,187.1126,74.58347,135.16078,0.00012660262 2186,612.13696,264.1777,27.009705,141.74792,6.428458e-05 2186,585.90045,316.791,52.82361,162.9368,4.3206022e-05 2186,606.95734,6.4038444,32.18933,52.1141,3.735246e-05 2186,609.34894,439.32657,29.79773,64.48715,2.243816e-05 2186,1.0868368,97.778984,18.328,84.916756,1.8691511e-05 2186,1.8893181,198.61513,28.226887,141.03636,1.6262531e-05 2186,616.0987,25.02004,23.047974,85.73408,1.4815976e-05 2186,0.8153207,83.669075,13.63313,51.564507,1.1960185e-05 2186,0.6998731,286.27585,18.451368,73.454315,1.03228085e-05 2186,0.67406005,317.73694,20.0775,134.46619,9.123584e-06 2186,3.2736378,189.87105,58.411766,240.39772,7.740531e-06 2186,87.761375,126.00864,140.71951,256.87506,3.1633697e-06 2186,1.0510067,45.33967,14.412627,53.73976,3.0958006e-06 2186,584.95844,8.212761,54.188232,128.83997,2.3269145e-06 2186,0.762216,423.01495,16.548506,79.178955,1.9820418e-06 2186,0.88720053,7.9989977,43.569088,89.58546,1.3316447e-06 2186,85.64628,14.2814455,78.77114,157.89662,1.0603159e-06 2186,5.437777,360.2972,79.30391,128.25644,4.5793453e-07 2186,2.871203,432.2229,52.91627,67.127625,2.51005e-07 2186,2.1097233,4.404961,85.22894,183.29413,1.0028739e-07 2186,0.8289933,0.9466488,22.224247,49.33068,6.686597e-08 2186,468.75302,2.8492057,45.108734,46.694714,1.3944885e-08 2186,127.0187,0.15502279,66.89768,58.612656,3.731936e-09 2186,94.259735,3.516792,46.80754,52.170006,2.245593e-09 2186,380.42447,7.843828,45.55838,47.114113,1.5699957e-09 2186,354.50165,4.501385,42.87744,54.344925,6.873746e-10 2187,2.5946355,218.10391,50.8639,103.17258,72.87556 2187,535.69165,156.78113,25.27417,55.39177,0.13296708 2187,463.50146,62.63575,25.607513,60.352837,0.039251614 2187,317.37903,219.19016,26.673218,50.31314,0.014412871 2187,599.65045,144.469,24.0484,45.151352,0.0121352775 2187,514.08606,151.7404,32.50592,66.54147,0.011013766 2187,28.273243,264.53195,25.726978,46.006195,0.0035376218 2187,467.40173,77.44131,41.059113,94.37986,0.0016665177 2187,10.178388,117.68972,41.253567,82.02584,0.001228221 2187,619.3846,45.3821,19.762085,66.68913,0.0006363475 2187,607.09973,10.358011,31.542053,54.088623,0.00063228 2187,612.00586,349.7979,27.140808,114.16086,0.00039642627 2187,2.8883367,125.48386,93.623726,271.07245,0.00039532993 2187,259.35187,217.1247,23.79013,49.640045,0.0003587082 2187,611.55853,137.65544,27.588135,123.7462,0.00026136675 2187,1.4176278,111.924446,21.960701,177.57214,0.00019494776 2187,585.33765,23.34711,53.80902,97.65451,0.00016549676 2187,587.2612,140.6548,50.29706,227.54439,0.0001624881 2187,611.32574,250.00636,27.820923,151.93968,7.569128e-05 2187,499.11105,87.41126,99.825165,239.26715,4.5772696e-05 2187,609.2052,435.34134,29.941467,69.19098,3.8523238e-05 2187,0.8679289,287.59677,18.618393,82.05658,1.6673896e-05 2187,0.780918,348.41888,19.771425,132.07312,5.8661753e-06 2187,85.35526,12.6039915,38.9162,122.69304,4.712292e-06 2187,2.7086654,302.85846,57.660454,179.8656,3.4046664e-06 2187,0.9956551,443.66568,21.707165,59.749695,1.5017731e-06 2187,1.9291415,39.96487,31.21746,159.4561,9.657048e-07 2187,40.439003,0.0,128.61111,214.6631,4.1586183e-08 2187,435.53915,6.782777,46.68811,48.823456,9.848539e-09 2187,1.4585369,10.931345,39.54699,84.31672,9.6493045e-09 2187,100.593445,2.2345443,46.739914,60.03952,8.730832e-09 2187,125.791954,0.0,48.904716,63.248535,1.0008855e-09 2187,326.89148,3.7725651,45.324768,48.712276,2.6527505e-10 2188,329.91898,214.65419,26.022827,56.719925,96.67975 2188,56.98,68.46919,38.785053,94.33099,0.12039188 2188,257.58026,214.53645,23.460724,47.23372,0.002435311 2188,617.22003,181.2352,21.926636,76.3678,0.0005696461 2188,313.01846,190.91664,60.318146,104.92839,0.00035535742 2188,501.09323,40.059937,39.86563,108.104385,0.0001610862 2188,617.9662,386.90878,21.180481,81.65024,0.00014838744 2188,1.2081388,59.945374,19.262972,91.44757,8.61822e-05 2188,610.9779,222.20224,28.168762,142.14255,7.841009e-05 2188,617.3487,85.01267,21.797974,80.108574,6.652047e-05 2188,601.6256,113.69267,37.521057,180.2672,6.165854e-05 2188,1.2882537,206.99207,18.185575,75.585815,5.812254e-05 2188,615.77,20.196762,23.376648,72.97713,5.759926e-05 2188,1.9677881,81.88139,31.359112,159.28786,5.299082e-05 2188,613.01935,316.33505,26.12732,107.171326,4.617263e-05 2188,609.6107,441.74448,29.53595,61.613556,2.0325002e-05 2188,586.7982,271.18024,52.34845,203.0657,1.7153183e-05 2188,228.70116,130.51385,39.61348,68.547165,1.1142495e-05 2188,569.431,20.810242,69.71564,139.39806,1.0974267e-05 2188,0.67398196,281.90836,18.414894,74.22391,7.667472e-06 2188,0.7928036,348.90585,19.3992,130.51709,6.668174e-06 2188,3.4072657,144.77821,58.33073,246.03584,6.6035736e-06 2188,527.8103,39.041862,110.19989,271.048,6.4000374e-06 2188,288.56125,128.62228,130.6383,250.21976,3.7288323e-06 2188,1.3569223,254.94965,32.94334,182.08868,2.6250775e-06 2188,0.8670549,442.49927,21.759024,60.902008,2.0384784e-06 2188,45.872204,0.27216145,77.19824,191.17004,1.0914978e-06 2188,462.8059,12.819974,122.82117,203.14479,8.9826636e-07 2188,3.1134489,397.45264,56.22027,95.684204,5.481512e-07 2188,1.863825,9.708841,58.839214,134.43642,1.4208112e-07 2188,0.7597469,9.662829,11.678899,87.02699,6.7561714e-08 2188,505.2858,3.5881202,49.50363,54.694225,3.2005328e-08 2188,99.49596,0.0,48.171646,59.177372,5.7665357e-09 2188,387.48242,6.0918245,47.03189,53.15495,4.2245483e-09 2188,361.66846,5.2314863,44.807465,52.38369,2.5287687e-09 2188,414.81763,5.4531674,44.73764,50.628265,8.3912965e-10 2188,125.86595,0.0,48.306976,61.640705,7.8848483e-10 2188,1.8507699,3.880962,38.477123,53.124695,5.6487887e-10 2188,448.89468,3.2184896,44.725494,51.908886,1.5832231e-10 2188,319.7198,4.2877083,44.903687,46.23305,1.0225138e-10 2189,357.72754,224.82039,23.239502,51.631393,99.32612 2189,463.8835,229.70438,21.772186,52.5708,1.4862708 2189,34.151466,47.75731,44.70704,110.3246,0.87355477 2189,473.1992,220.68816,26.588379,51.10869,0.008445175 2189,19.985622,94.85355,45.532192,120.25803,0.008163446 2189,616.5633,259.7987,22.583374,81.06036,0.0003097395 2189,611.0566,176.70226,28.090088,133.05144,0.00029516115 2189,264.96185,221.96133,24.682587,45.74823,0.00028053633 2189,609.6829,68.046486,29.463745,139.99222,0.00025351555 2189,343.8335,194.97835,56.962738,105.19325,0.00014678936 2189,224.38004,219.89381,22.702972,45.73842,0.00013019622 2189,611.77374,379.8157,27.372925,115.06061,0.0001147366 2189,583.9881,274.1758,53.589172,201.88019,8.7198256e-05 2189,585.2903,132.06168,53.41919,244.12173,7.547093e-05 2189,617.2802,337.01248,21.866455,76.40564,5.897284e-05 2189,2.3392994,100.32812,33.79613,204.3595,5.4632215e-05 2189,1.3456763,66.48965,18.150496,77.45814,4.9381008e-05 2189,1.2851416,239.4812,17.771965,78.40442,4.0216604e-05 2189,616.6357,146.75925,22.510986,86.9281,3.827218e-05 2189,242.37598,203.0989,38.164642,125.283325,3.7964855e-05 2189,616.83154,45.354942,22.315125,80.819595,2.1015872e-05 2189,0.6513477,283.5626,19.959578,140.08069,1.35658665e-05 2189,584.8762,11.716296,54.270447,114.34644,8.169223e-06 2189,540.0767,0.2011849,51.404358,123.45697,6.753343e-06 2189,3.0996811,2.8282552,114.616234,266.03586,5.105222e-06 2189,0.7641138,375.20868,19.653093,121.73331,3.5282267e-06 2189,3.1987402,220.58858,57.82182,228.3131,2.598873e-06 2189,309.91293,134.27286,137.0339,234.91919,2.2897298e-06 2189,1.7685515,20.812475,36.04217,148.20003,7.5251353e-07 2189,3.0413787,397.7052,56.436188,96.25769,5.0369533e-07 2189,584.02875,5.640713,46.946533,46.035213,2.3512816e-07 2189,0.71524984,10.226345,12.504448,87.01013,1.6106381e-07 2189,0.87922364,4.0728893,41.823734,51.6111,3.0456164e-08 2189,427.5486,5.191138,47.03891,53.541416,2.108961e-08 2189,401.08713,5.3562746,47.91461,53.904457,1.2114418e-08 2189,375.07492,6.4789405,45.701538,49.76101,5.659263e-09 2189,454.6435,4.270202,46.52542,51.25093,3.9134376e-09 2189,481.74084,2.0483692,44.532715,51.104057,2.2729214e-09 2189,321.19644,4.6086445,44.52536,48.05639,1.7342936e-09 2189,117.31274,0.0,66.33114,54.005196,1.2214061e-09 2189,75.78678,0.4641146,45.55497,53.93199,4.0371148e-10 2190,378.153,202.06667,26.92743,55.002884,59.09354 2190,513.20667,197.00716,29.01056,55.245605,4.3752365 2190,620.318,221.71812,18.828674,57.96794,0.0037819077 2190,542.61835,77.6768,47.22357,90.70364,0.0026864673 2190,613.79724,94.04168,25.349426,98.74024,0.0016163209 2190,421.19522,203.90987,25.62613,55.441483,0.0011361864 2190,611.1102,218.87526,28.036438,137.9182,0.00073984556 2190,362.72037,161.44914,60.14035,114.05278,0.00072571915 2190,1.2853866,126.15288,21.078989,92.86708,0.0006354294 2190,183.78825,185.67667,22.514038,46.011307,0.00061920687 2190,1.795861,77.43122,35.38806,216.30334,0.0006150758 2190,621.72015,294.82507,17.426514,52.901703,0.00035520867 2190,254.37172,196.28433,34.866623,68.23505,0.00025532977 2190,1.0036377,183.86017,14.653598,58.892075,0.00022672716 2190,1.2448633,180.42003,20.91751,146.58775,0.00015489238 2190,603.683,123.00412,35.463684,170.10815,0.000118094234 2190,599.47876,0.0,36.2948,46.677013,9.3641815e-05 2190,1.1222966,54.968243,14.780813,63.865574,8.17449e-05 2190,613.7517,7.032233,25.394958,95.131134,6.874846e-05 2190,588.7656,5.3536263,50.381042,198.38008,5.1610088e-05 2190,0.47191325,272.32666,18.70703,80.470245,3.7915503e-05 2190,612.5873,366.45593,26.559387,129.68918,3.6423153e-05 2190,24.250141,32.19627,37.59179,106.1163,2.0869795e-05 2190,1.230293,0.7769401,30.32365,106.74653,1.1036989e-05 2190,0.6200871,315.70132,20.157717,136.03833,9.7403135e-06 2190,0.6478239,371.7715,13.699217,47.419495,6.037525e-06 2190,0.7519979,406.2787,18.153921,71.76288,5.3691597e-06 2190,2.969829,199.69337,57.311825,240.8579,5.1226234e-06 2190,231.91667,164.11975,74.222855,162.56677,4.8783363e-06 2190,308.59525,180.67665,40.01239,124.947586,4.04254e-06 2190,339.5986,115.58822,136.45459,229.91199,4.0124964e-06 2190,3.2857814,24.404129,96.701164,220.89153,7.698829e-07 2190,3.1599789,398.3007,56.42354,96.17282,4.7074207e-07 2190,408.44333,7.977842,89.022095,75.03509,2.3002416e-08 2190,567.37115,2.764315,43.6427,51.483944,1.1059901e-08 2190,403.1193,1.3980079,50.101593,50.576424,2.2597848e-09 2190,380.4948,4.3735237,45.29959,53.62736,4.009879e-10 2190,462.5697,2.7030127,43.848022,49.620407,3.1248873e-10 2190,321.7393,2.296206,42.888336,51.89491,2.433994e-10 2190,139.74976,0.0,51.976166,60.951107,5.521943e-11 2190,352.38058,4.7580013,46.928345,56.69468,1.7396654e-11 2190,180.99245,0.0,44.209152,52.567482,8.820838e-12 2191,409.2586,227.13528,27.236572,57.085907,95.41317 2191,11.23837,130.66199,31.56541,72.586334,0.0049141184 2191,170.18732,204.65536,22.498703,48.793503,0.0029360722 2191,369.72885,87.48166,27.240417,58.88527,0.002321657 2191,461.63605,140.07378,45.857513,137.86235,0.0023178458 2191,394.05276,205.03061,56.757446,96.897705,0.0012419216 2191,619.79205,192.08495,19.354614,62.75197,0.0009230087 2191,621.5855,148.01749,17.561157,55.252457,0.00084539835 2191,608.6382,132.06573,30.508484,150.51547,0.00040582957 2191,617.8293,382.00797,21.317383,80.203094,0.00016175925 2191,621.70575,261.29694,17.440918,57.198334,0.00015888916 2191,617.6011,311.3458,21.545593,80.394226,0.00014420274 2191,244.77219,215.7156,38.306396,94.809296,0.00013664045 2191,285.1762,221.74919,24.072235,45.728653,0.00013456616 2191,182.28152,211.02054,23.473679,47.637695,0.00013003801 2191,2.1560133,84.67652,35.226284,197.16986,0.00012902531 2191,1.3864657,37.25153,23.213083,105.465256,0.00010925204 2191,615.33386,91.26172,23.812805,91.060165,6.953418e-05 2191,607.5204,0.0,31.626282,140.09824,6.537498e-05 2191,604.3704,224.417,34.776245,149.78966,5.247275e-05 2191,1.30917,185.26639,20.84941,116.45145,3.8642236e-05 2191,601.96735,328.83698,37.17932,157.6016,2.6607375e-05 2191,444.43167,135.40321,135.37698,230.87569,2.570566e-05 2191,609.7407,442.44403,29.405945,61.49463,2.1609785e-05 2191,0.6748771,266.74445,18.391436,72.39972,1.529563e-05 2191,377.37088,170.22136,99.315186,192.65187,1.4760944e-05 2191,584.745,11.757852,54.351746,288.1361,1.3289239e-05 2191,2.663011,20.92015,62.67534,160.0011,1.3052502e-05 2191,3.6303174,146.3582,56.702274,236.43797,7.641018e-06 2191,0.67697674,310.9752,20.1462,135.52097,7.029012e-06 2191,0.83494145,392.83694,18.804016,106.83795,4.03419e-06 2191,1.1373299,4.553877,25.713434,73.38029,7.826052e-07 2191,5.6512566,360.0555,79.04875,128.7421,6.1921327e-07 2191,2.8671436,431.44577,52.94774,68.2518,3.4172862e-07 2191,433.13074,7.527689,89.51941,78.813866,2.7614448e-07 2191,422.91147,2.3869255,51.388123,52.10783,5.1889966e-08 2191,13.075865,3.0677946,45.262894,45.065346,2.7330426e-08 2191,510.25684,6.1091537,45.99707,46.08752,1.7542625e-08 2191,481.58966,6.9388494,47.469055,49.518944,1.7441435e-08 2191,544.3382,2.8806705,43.97058,55.842163,4.64006e-09 2191,389.01758,6.7998652,44.4657,47.85403,2.7230198e-09 2191,342.5037,7.6129007,84.08136,78.22392,2.2520525e-09 2191,335.97763,2.7519922,43.413055,49.046474,1.083903e-09 2191,455.83948,0.0,39.606415,45.675835,4.4209156e-10 2191,122.73019,0.0,47.047142,49.93519,4.409275e-11 2191,166.81499,0.0,46.16075,59.045364,2.7724676e-12 2192,442.56116,219.21936,34.14514,78.89584,99.91903 2192,542.6998,227.85706,31.4693,51.18875,0.24935755 2192,404.96204,226.03352,27.294495,49.84752,0.054757267 2192,429.2432,219.97229,27.992218,58.52838,0.014608095 2192,306.20612,212.83165,25.447388,53.013657,0.0015971158 2192,620.3908,253.38586,18.75586,55.975586,0.001410407 2192,381.67392,72.230415,22.82483,45.619537,0.0013694292 2192,464.51694,224.6359,30.933441,74.66681,0.0008317181 2192,489.8668,137.51454,40.021942,90.06328,0.00040917288 2192,430.71518,203.84946,80.00745,138.27673,0.00037988974 2192,609.79254,224.18083,29.354126,135.05476,0.00033745696 2192,610.0428,73.24675,29.103882,150.35738,0.00028007978 2192,617.4314,187.70824,21.715271,82.083755,0.00027677504 2192,244.11269,226.6628,25.99678,54.89186,0.00019065675 2192,78.85983,167.07341,25.64608,61.69052,0.00018819631 2192,617.94293,402.0896,21.203735,78.46686,0.00015248603 2192,468.19424,98.88055,111.013885,222.30478,7.4686264e-05 2192,616.47644,26.489164,22.670227,79.50342,6.407317e-05 2192,2.30424,101.75574,34.34724,189.84003,6.026332e-05 2192,611.91766,307.1224,27.229004,140.91614,4.7203073e-05 2192,0.38422364,309.7564,18.525747,77.37625,3.3495337e-05 2192,1.051775,83.65793,17.81187,127.500626,2.2421218e-05 2192,584.7611,385.05554,54.38556,106.57681,1.7845063e-05 2192,583.779,8.174825,54.963318,114.62112,1.5471063e-05 2192,1.2945093,185.17702,19.48202,135.2878,8.790196e-06 2192,0.67160076,371.9455,18.430948,73.44696,5.286221e-06 2192,1.2620248,287.6776,33.550095,180.44272,4.0193363e-06 2192,2.8872333,170.0217,58.487675,237.05576,3.7488924e-06 2192,0.81485516,422.99847,16.58152,79.39264,2.6690118e-06 2192,5.224603,352.5084,79.26334,136.16397,5.65036e-07 2192,5.8083367,21.953093,78.27612,143.30115,4.9265077e-07 2192,1.188938,50.230446,18.337875,78.146126,4.53505e-07 2192,2.8359034,432.07864,52.636326,67.49466,3.112816e-07 2192,2.6121387,13.385963,52.524864,68.52529,2.0293376e-07 2192,519.85046,21.022924,78.23865,213.83011,4.5403798e-08 2192,469.4898,8.081224,84.15729,71.63261,6.8754273e-09 2192,456.35376,2.0039697,50.35199,51.499176,2.4992124e-09 2192,141.57079,0.0,49.131744,58.291214,1.3316224e-09 2192,349.7537,2.4262567,42.75894,51.84106,7.3290063e-10 2192,366.99875,2.1462402,66.314545,59.31861,5.258957e-10 2192,428.3438,3.1189063,46.312805,48.956837,5.2581545e-10 2192,172.09497,0.0,50.632324,71.60233,1.13245004e-10 2193,514.09644,231.10191,38.253235,82.99748,99.872665 2193,552.28357,222.89655,23.69342,57.49942,82.23597 2193,464.3461,235.25735,32.804108,69.4516,13.082586 2193,546.04926,213.07297,37.946777,133.15375,0.35942787 2193,112.89888,210.7047,26.673798,49.603317,0.20370686 2193,188.82474,226.48209,23.97168,54.036682,0.0066437875 2193,612.06525,215.5914,27.08142,96.801544,0.0044375383 2193,176.57193,78.89658,20.777664,46.428474,0.0021458534 2193,504.59286,122.31215,127.407074,249.92949,0.0018914449 2193,511.88934,158.79141,21.724304,48.363266,0.0009501579 2193,608.3485,99.57177,30.798157,135.46213,0.0005016112 2193,551.9768,288.80182,23.955383,54.28604,0.00040159907 2193,585.22876,220.12756,53.128113,216.42606,0.00025683068 2193,619.92505,270.4703,19.221619,66.899506,0.0002284117 2193,611.2435,335.44077,27.903137,145.06976,0.00016096089 2193,445.49734,191.30432,74.70261,141.09863,0.00015304124 2193,0.82675946,278.5289,20.767044,103.242065,5.7915764e-05 2193,609.55035,442.37146,29.596313,61.3862,2.1056878e-05 2193,1.5341097,194.97968,28.651432,140.73831,1.7979155e-05 2193,2.6948617,207.80191,58.333908,212.85892,1.4748013e-05 2193,1.2135848,123.15297,18.89535,132.26561,1.4287177e-05 2193,0.6380477,345.14908,19.877043,137.1412,1.3121546e-05 2193,609.98883,0.0,29.157837,64.39483,6.2530803e-06 2193,566.4184,8.578685,72.72827,219.73749,1.983388e-06 2193,0.9160832,443.4236,21.836119,60.051025,1.7335818e-06 2193,4.7850227,343.65558,79.37628,144.0987,1.3223557e-06 2193,1.5537875,57.068283,19.183727,121.06363,5.324875e-07 2193,406.386,23.908262,43.669952,116.887085,2.4579026e-07 2193,2.7232292,15.932389,57.400913,118.30647,8.414993e-08 2193,0.9676725,13.564375,15.209562,78.14008,4.7641617e-08 2193,1.8305746,6.280054,47.288345,46.890625,3.1978782e-08 2193,386.86807,0.0,126.64426,219.40063,1.5240861e-08 2193,467.87585,3.3549676,47.282898,54.453312,5.5207585e-09 2193,532.06,7.8338346,80.424805,70.196976,4.506694e-09 2193,496.22885,4.636631,48.83499,52.15574,1.9595154e-09 2193,391.05844,0.23798178,44.36438,59.741306,4.7809245e-10 2193,200.59328,0.0,48.850693,72.2179,1.0714416e-11 2194,593.9539,222.65157,39.792664,100.456406,99.83917 2194,513.5424,226.47336,38.496887,93.5278,98.42928 2194,587.74286,211.01971,27.911804,67.9252,15.852994 2194,406.41327,223.87212,24.119904,49.490494,3.4482527 2194,7.725124,115.77664,48.06882,126.182785,0.2485113 2194,620.756,230.01189,18.390686,72.852554,0.19881648 2194,285.81165,218.50964,24.198486,49.603424,0.07727893 2194,126.46174,52.020542,27.225746,63.29777,0.032071352 2194,414.80344,226.676,35.992157,80.091064,0.004208235 2194,617.01306,175.65012,22.133606,90.946014,0.0008533916 2194,540.6313,150.458,98.51538,229.51054,0.00022565185 2194,17.340303,87.56783,78.41751,213.22296,0.00019810136 2194,616.18243,283.8077,22.964233,90.99094,0.00018537157 2194,1.5252254,155.6121,29.669743,186.70595,0.00015091835 2194,2.0198722,99.89945,19.21363,147.41461,0.0001264149 2194,387.44464,167.7706,74.08017,162.1752,5.4743676e-05 2194,609.21246,82.20426,29.934204,164.33804,4.914076e-05 2194,611.54694,319.4418,27.599731,144.60071,4.445472e-05 2194,0.57671875,260.6599,20.136978,145.93054,4.1570216e-05 2194,485.29105,184.23094,96.968475,181.71303,2.5862199e-05 2194,606.2866,0.0,32.860046,72.714745,2.5741429e-05 2194,609.5125,442.4167,29.634155,61.378418,2.2460768e-05 2194,2.4402394,175.4503,58.032516,269.80383,1.8370622e-05 2194,0.4766081,356.8661,20.069162,139.88803,1.5780595e-05 2194,581.5569,0.0,57.589783,144.18428,1.562244e-05 2194,585.7119,395.34186,53.434753,99.68909,5.4046996e-06 2194,4.6739683,344.45868,79.56277,144.13861,1.339736e-06 2194,1.5353304,19.401901,30.907999,139.05869,2.1606472e-07 2194,0.85871017,13.004355,15.4258375,84.46332,3.306654e-08 2194,462.6981,3.624375,45.083008,52.362236,1.2818312e-08 2194,433.0962,3.288462,48.19925,54.168205,8.385061e-09 2194,198.72757,0.0,69.12686,66.65461,6.2885586e-09 2194,116.00223,5.7891197,45.285416,54.161896,2.6613827e-09 2194,550.4584,0.0,46.7782,57.71613,1.1048173e-09 2194,488.91907,2.841172,43.833374,52.44053,6.5083045e-10 2194,141.25537,3.4121356,46.189224,54.19415,5.0694066e-10 2194,397.03278,3.9634929,43.97296,54.1604,3.114504e-10 2195,611.4425,224.89655,27.124817,115.5249,30.1666 2195,114.014534,203.6522,23.648201,48.63733,0.035966925 2195,621.4278,216.7081,17.718872,50.79428,0.010280368 2195,31.041862,169.57542,45.815117,97.521286,0.0057332893 2195,621.2214,122.48688,17.925293,56.388733,0.002400345 2195,327.28458,213.66664,22.715424,47.46959,0.0018575151 2195,479.86148,294.57526,35.012726,69.322876,0.0014809938 2195,434.13507,233.8363,39.371124,105.51187,0.001047189 2195,585.8132,179.9825,53.15149,201.5331,0.00041525305 2195,620.3486,30.099953,18.798096,63.16549,0.00040205359 2195,610.80743,102.66257,28.339233,161.44604,0.00026311338 2195,1.5987793,167.66307,19.39297,138.35344,0.00017762897 2195,236.02435,218.67279,24.438232,51.0542,7.51696e-05 2195,612.10065,306.57114,27.04602,145.1193,6.667894e-05 2195,608.1086,0.0,31.038086,135.45209,4.9043654e-05 2195,426.77863,173.84818,103.1922,212.39545,4.1080737e-05 2195,609.4797,442.90518,29.666992,60.696716,1.9932222e-05 2195,572.7592,356.86774,66.38745,130.02411,1.8906108e-05 2195,3.7790625,111.027824,56.56504,227.27557,1.562867e-05 2195,0.58519614,353.11877,19.880499,128.42896,7.5635876e-06 2195,0.9071151,259.31067,19.402252,129.54105,5.8389714e-06 2195,587.42175,1.4073242,45.814514,46.43289,3.4270918e-06 2195,3.1319613,309.60123,57.040222,166.63086,2.1915196e-06 2195,0.93142253,442.9497,21.804865,60.458527,1.5507336e-06 2195,1.6431234,48.644794,29.077757,168.37422,3.7770107e-07 2195,2.509857,18.167135,56.7247,109.37938,1.9663614e-07 2195,0.83330405,12.269392,14.051518,81.179016,8.827571e-08 2195,140.98796,0.9088542,47.1026,57.474205,1.6998616e-08 2195,563.0313,4.543996,48.281433,52.38489,1.2319494e-08 2195,81.31198,5.3669615,45.49849,53.559666,2.073612e-09 2195,115.815796,2.3792188,44.56993,53.307858,1.7422042e-09 2195,433.8727,4.368962,45.460022,53.653072,1.2535899e-09 2195,202.32483,0.0,50.828766,67.45498,3.0772265e-10 2195,498.12225,1.6048633,42.039917,57.013485,2.5592986e-10 2195,396.44138,2.872085,43.625183,54.310703,1.6876645e-10 2196,586.37335,212.43048,30.906311,54.012268,99.390816 2196,52.480286,201.9174,23.291183,48.903442,13.452662 2196,606.4358,389.06226,32.710876,79.74609,0.10638144 2196,91.12411,197.02417,25.718239,53.412354,0.086029045 2196,451.76834,39.77295,28.537659,76.46583,0.046415064 2196,445.33948,227.30185,24.726624,45.75,0.029025603 2196,511.03372,332.9031,27.244232,58.3851,0.014253322 2196,38.378235,190.07811,43.75457,109.25246,0.004864588 2196,366.84167,206.48268,35.6951,73.17909,0.0031742922 2196,492.6011,208.29738,56.23459,157.3141,0.002135002 2196,571.3185,191.05278,59.3338,96.5179,0.0013651573 2196,611.8003,204.5127,27.346375,118.688416,0.00057860505 2196,599.94037,71.70138,37.784058,202.84717,0.0004983864 2196,614.9856,87.66237,24.161072,90.10205,0.00031110126 2196,2.4651139,143.11815,37.846416,168.8105,0.00020499591 2196,587.22656,296.32788,51.690247,183.80136,0.00014772353 2196,1.3838534,224.74977,18.90171,74.46382,0.000121920595 2196,536.5123,108.19888,100.27557,263.0628,9.87266e-05 2196,1.9996827,166.13245,19.036589,82.68417,7.400916e-05 2196,479.19104,236.47781,103.09558,227.23276,6.192395e-05 2196,607.2579,5.1683464,31.888794,139.92056,5.76529e-05 2196,8.939261,127.46422,134.83348,250.16902,2.1728321e-05 2196,0.8937785,256.0895,18.81942,143.51434,2.0739322e-05 2196,2.4910629,236.42253,57.97846,231.19478,1.37044835e-05 2196,0.58789307,362.17343,19.77312,133.41891,1.1942382e-05 2196,2.5726092,390.54297,56.848003,103.45627,1.0283816e-06 2196,1.3540162,26.091206,20.38756,135.49278,2.6611616e-07 2196,2.3823893,20.261427,56.680386,104.316696,1.402232e-07 2196,1.0024748,10.850396,23.565216,51.72195,3.4447304e-08 2196,48.101143,4.4163446,44.351868,51.26369,1.5170935e-08 2196,427.4935,5.5909667,65.05496,52.507133,3.6651533e-09 2196,73.13911,3.5552247,46.005234,57.701736,6.6407463e-10 2196,200.55952,0.0,67.59291,65.83375,5.610969e-10 2197,28.372107,196.96461,26.241282,50.3049,0.18193671 2197,596.1092,393.69965,38.667908,79.672455,0.055972643 2197,582.5997,179.60689,25.954163,59.36621,0.025421092 2197,455.84845,227.84427,25.60791,48.62381,0.01729953 2197,250.87842,217.4192,23.98941,51.614304,0.0040445807 2197,3.832334,186.3123,42.830593,76.7419,0.0038577535 2197,517.89264,220.69415,39.782288,74.86813,0.0031261002 2197,621.9607,408.49298,17.185974,61.01239,0.0023760418 2197,614.96326,357.3239,23.860962,91.56174,0.0019103324 2197,367.13882,212.5087,43.705353,156.93579,0.0015508095 2197,617.68896,203.63618,21.457703,73.939285,0.0014355716 2197,615.891,63.40737,23.255676,83.96957,0.00060420914 2197,1.7544166,193.99661,22.463408,47.857956,0.00057025434 2197,609.7169,227.94597,29.429749,156.08943,0.00052703574 2197,614.0273,462.80292,25.119385,47.005524,0.00044180773 2197,578.61646,333.42166,42.906128,142.82831,0.0004074094 2197,5.1256185,158.3279,54.3958,216.09511,0.00023812907 2197,428.9644,120.92598,24.70636,58.015396,0.00020026742 2197,586.7887,106.139534,51.299805,231.88568,0.00016114935 2197,512.78436,161.19394,68.86151,159.02725,7.9732265e-05 2197,65.642235,240.38933,28.214676,60.445633,5.1824743e-05 2197,0.962382,308.83572,18.271908,74.388855,4.1715808e-05 2197,1.1741773,219.38141,19.574978,139.62073,2.7080407e-05 2197,347.43237,181.72156,107.55252,235.14465,2.5450265e-05 2197,1.384497,107.247765,21.66922,117.20071,1.9755884e-05 2197,429.5697,60.118206,44.353333,146.54256,1.8368693e-05 2197,0.5019767,355.32108,19.60284,137.68744,1.2122096e-05 2197,1.5888363,260.44278,33.429966,178.56625,8.7135095e-06 2197,585.69403,10.731247,53.452637,113.3075,7.96534e-06 2197,450.6258,27.441507,34.209473,79.3745,3.514391e-06 2197,5.0404754,338.68896,80.1454,147.67694,1.3094701e-06 2197,1.5982438,4.150781,59.010742,135.44734,2.0029046e-07 2197,423.5176,12.230212,80.53729,70.35449,9.929556e-08 2197,13.227921,2.5724366,43.664463,55.539753,2.310196e-08 2197,185.9137,0.0,84.52969,75.87203,8.292432e-09 2197,37.70495,3.1073177,44.58677,59.10487,4.0447086e-09 2197,468.53256,5.649424,44.79483,49.684494,2.2436493e-09 2197,126.934654,4.2708025,45.23713,49.81504,1.4899816e-09 2197,410.46466,10.440261,44.63385,49.383358,2.0222404e-10 2197,229.57542,0.0,47.34642,45.93521,6.718967e-12 2198,460.57794,235.78459,22.691772,45.94606,0.12798521 2198,568.3501,153.01517,41.912292,94.13072,0.04332119 2198,446.70605,42.695675,28.083649,72.24832,0.0040192194 2198,198.19211,204.05258,36.314484,85.21918,0.0021746953 2198,1.8556706,199.39124,42.27857,161.59995,0.0018524311 2198,617.5124,208.44151,21.634277,80.932724,0.0018353218 2198,555.4877,127.7999,75.739136,178.60736,0.0017582645 2198,546.1652,230.42648,31.451172,79.65378,0.0016603486 2198,179.46652,221.96252,33.261322,77.20422,0.0015704265 2198,355.85217,212.07332,36.676666,80.55199,0.0014460514 2198,1.6684049,222.44287,20.667042,96.12979,0.0003810156 2198,453.0061,207.31213,39.108856,109.68402,0.00033133355 2198,2.992806,113.25399,41.61146,154.14194,0.00017278171 2198,617.8605,388.88925,21.286194,78.476685,0.00016313369 2198,1.857592,143.49281,19.83434,87.81987,0.00013242295 2198,583.761,285.86694,30.542236,62.96747,0.00012227295 2198,421.0941,126.84435,27.342743,59.95748,0.00011056634 2198,600.8209,199.8768,38.052246,182.61536,0.00010749385 2198,621.3466,58.687904,17.800049,53.399574,9.9984914e-05 2198,512.5,173.94737,74.60095,155.89095,9.137113e-05 2198,612.10565,122.39477,27.041016,114.898674,8.116028e-05 2198,1.1218091,296.359,21.803879,159.15549,7.2707786e-05 2198,347.3911,181.85661,74.21286,182.4258,5.9890157e-05 2198,0.38483968,341.00394,12.435456,48.176636,5.183245e-05 2198,601.56384,314.4069,37.582825,173.56088,3.676695e-05 2198,597.1085,9.632572,41.590637,75.44446,2.1064992e-05 2198,1.5874625,264.3414,65.5307,189.94022,2.0319692e-05 2198,609.693,441.6776,29.453674,62.45511,1.9968678e-05 2198,1.382854,90.06287,19.045876,85.98097,8.881098e-06 2198,583.5357,22.571947,55.231995,216.17426,7.830071e-06 2198,0.7106006,420.05777,16.98159,81.8385,3.9515317e-06 2198,432.93896,166.53627,99.86621,217.22307,2.9936477e-06 2198,2.5652068,390.7328,56.414364,102.614716,1.3048576e-06 2198,0.7675244,3.202165,15.329615,93.45916,2.1880184e-07 2198,416.41382,13.043484,80.792175,70.60025,2.020285e-07 2198,538.90295,6.038278,45.50995,49.47677,5.730619e-08 2198,1.5513477,3.984284,59.14035,134.24251,4.631061e-08 2198,172.34177,0.0,72.16986,63.939037,4.192233e-09 2198,88.06637,3.5345151,45.362465,47.50285,2.1938669e-09 2198,112.691536,2.35576,44.434746,45.460423,1.6593943e-09 2198,397.21198,9.012557,42.62085,48.532185,1.3862796e-10 2199,564.15015,147.86464,39.70569,106.09732,0.16201632 2199,258.26462,247.89053,45.241913,125.695435,0.007329907 2199,559.1251,184.40208,24.028137,55.128906,0.006086723 2199,573.11847,198.03117,21.04065,45.217712,0.0027284648 2199,430.05194,47.38324,34.683014,78.15986,0.0026632953 2199,0.78068364,213.72197,13.844307,46.660446,0.001600232 2199,435.62952,221.03415,37.640137,85.769775,0.0011561032 2199,617.77747,213.49475,21.369202,78.57327,0.0010922141 2199,535.8673,92.31312,95.87164,225.48651,0.0009200452 2199,615.5259,52.491276,23.620789,90.0229,0.00039033312 2199,536.4175,174.26073,40.166016,145.93532,0.00031106922 2199,603.91077,150.5909,34.953125,177.36662,0.00023047248 2199,1.0480729,177.84367,19.621912,122.38359,0.00022169395 2199,617.7818,395.46094,21.364868,77.8508,0.00012385969 2199,611.8848,272.1089,27.26184,130.61801,9.0307134e-05 2199,586.72687,24.31736,52.100098,97.67278,6.5821834e-05 2199,542.1194,260.29868,26.486572,63.67929,6.0126116e-05 2199,584.7685,217.95335,53.43268,243.22081,4.5753754e-05 2199,3.4061117,166.58821,58.43463,217.18529,3.0761978e-05 2199,1.1234554,129.22766,18.394182,78.90231,2.67369e-05 2199,608.30005,6.708389,30.846619,57.819504,2.668987e-05 2199,609.6054,442.27667,29.54126,61.86682,1.8943794e-05 2199,336.223,205.22519,76.32529,172.5715,1.8006886e-05 2199,1.4313852,262.93167,32.60403,180.27072,1.3278978e-05 2199,409.29706,69.314606,45.430817,148.57613,8.510234e-06 2199,0.8983708,354.22696,19.221258,128.30618,6.2882073e-06 2199,0.6619873,271.82986,18.505669,74.66089,4.3692276e-06 2199,2.4327116,79.56276,34.131573,187.6996,3.8305257e-06 2199,4.901374,349.35266,79.47644,134.10422,3.092897e-06 2199,410.58972,171.98648,102.5661,217.54935,2.0712987e-06 2199,0.92866373,442.66052,21.81301,60.968353,1.7698723e-06 2199,2.4949741,426.24677,53.02942,72.58981,5.748192e-07 2199,1.3302361,24.204285,19.983978,138.37796,8.276792e-08 2199,395.54843,12.444124,83.99304,71.68425,6.631639e-08 2199,0.9908228,13.816367,12.539716,75.43301,6.0472125e-08 2199,3.1377313,21.366247,55.380047,105.30516,5.5971753e-08 2199,531.9941,6.4511914,45.268005,50.114124,4.782899e-08 2199,156.76834,0.0,70.72562,64.47611,5.177012e-09 2199,439.62537,6.1412973,45.555054,50.118053,3.9424766e-09 2199,383.64728,9.733075,42.656464,48.43141,1.5132512e-10 2200,440.37003,239.11,21.772858,45.041794,0.8495737 2200,550.43475,163.34006,39.885376,90.89166,0.03566915 2200,86.5804,205.10426,23.57911,46.842514,0.0022098678 2200,565.72485,192.03539,21.781738,47.39366,0.00201177 2200,417.8867,46.98966,36.066254,77.16499,0.001832478 2200,239.06055,219.6269,45.207886,149.3076,0.001770404 2200,531.72577,251.36717,32.727295,78.605606,0.0010165934 2200,526.41895,168.81435,73.7807,164.23766,0.0005914326 2200,617.9015,216.16743,21.245178,72.89879,0.00055761635 2200,72.77214,198.91699,24.843163,49.663177,0.00040157762 2200,616.12354,126.63666,23.023132,76.26453,0.0003050817 2200,1.0788062,337.24124,18.612844,78.16675,0.00028775053 2200,603.77246,147.74413,34.911133,181.13985,0.00020370325 2200,617.6358,325.4541,21.510864,81.7695,0.0001312175 2200,617.7991,388.9263,21.347595,78.05701,0.00013078497 2200,2.2409425,148.91524,28.819736,140.7979,0.00011639937 2200,1.2208098,222.90802,18.529991,74.57016,0.00011291911 2200,616.61475,76.01658,22.531921,84.739845,9.119093e-05 2200,3.6050441,163.86722,57.379704,231.08035,8.043513e-05 2200,609.262,16.487995,29.884644,102.69003,6.4132226e-05 2200,1.5734571,130.4236,17.971962,71.34038,4.3036307e-05 2200,3.502785,331.62726,59.607426,149.32645,3.9730407e-05 2200,601.8625,267.74002,37.28418,176.73764,3.9477014e-05 2200,0.70361006,368.46933,19.61942,125.64606,3.3627173e-05 2200,584.57837,29.112194,54.356445,202.24112,2.0177065e-05 2200,609.4865,442.02768,29.660156,62.373535,1.8022518e-05 2200,403.27548,61.07112,45.80594,148.48566,1.262461e-05 2200,330.1502,203.05641,76.829926,169.3474,9.217319e-06 2200,571.7583,353.14297,67.38837,135.99146,9.1652e-06 2200,0.9989844,56.61329,18.553024,73.0566,5.2997493e-06 2200,0.75696373,295.66278,13.798942,49.46814,2.6174882e-06 2200,2.194598,424.4871,52.79453,73.16214,2.0094872e-06 2200,3.8737533,45.922867,58.27403,208.07686,3.5799056e-07 2200,1.1298592,18.453976,14.3913,69.3696,3.2911706e-07 2200,389.02695,11.810756,83.045105,72.36038,1.061663e-07 2200,581.21655,8.264162,42.756226,46.281647,9.2785534e-08 2200,524.4948,7.2352376,44.927856,49.848137,4.1374232e-08 2200,2.6737792,17.347445,49.71222,60.94055,3.307676e-08 2200,433.03305,6.112432,45.581696,49.286205,3.5337504e-09 2200,148.73894,0.0,70.344955,63.168438,1.9732422e-09 2200,376.81018,9.580848,42.789,49.750767,1.0541391e-10 2200,130.29654,2.2329705,45.42665,50.211647,5.1401e-11 2200,189.4122,0.0,46.78145,45.525295,4.9827616e-12 2201,436.69193,243.72272,20.01178,45.534485,0.052877143 2201,547.793,156.60603,42.388977,97.55072,0.023147136 2201,483.90106,378.5447,41.573425,91.53656,0.0029796008 2201,526.251,256.60812,37.866455,92.907104,0.0018044988 2201,417.37265,51.340286,33.617218,72.26009,0.0011750977 2201,622.74927,240.6981,16.3974,45.26567,0.0010243868 2201,621.6912,413.5144,17.455444,51.386383,0.00062560075 2201,469.50803,291.49356,71.242584,195.85925,0.00042872067 2201,615.8932,132.56851,23.253479,80.65137,0.00038938542 2201,509.8887,162.22699,76.82175,179.87787,0.00025728226 2201,519.95044,211.6889,33.21222,72.453705,0.00023450675 2201,601.23193,179.02977,37.781433,192.26091,0.0002217445 2201,616.4147,257.9171,22.731995,88.39685,0.00019591094 2201,617.0269,314.14078,22.119751,78.73547,0.00015685127 2201,24.461092,310.9346,43.634514,73.31561,0.00014688598 2201,0.97177166,342.68875,18.07612,82.417694,0.00014557372 2201,2.080337,143.47371,29.34073,145.81621,0.0001355793 2201,1.4428426,131.79842,18.27236,78.69379,0.00012669926 2201,621.3694,181.27232,17.777283,55.449615,0.00010747642 2201,621.8569,89.06202,17.289795,52.47233,9.611183e-05 2201,611.2203,373.40115,27.926392,123.385956,9.200094e-05 2201,490.68564,332.77115,41.672638,88.89697,6.243713e-05 2201,615.6671,24.967016,23.479553,77.85738,5.525855e-05 2201,3.0980356,163.65788,57.15776,238.19337,5.5105513e-05 2201,610.9814,57.474903,28.165283,128.74174,4.59006e-05 2201,0.51951903,416.52863,16.767717,84.27338,2.7594933e-05 2201,1.552692,346.86423,33.18765,140.4898,2.6893762e-05 2201,569.01733,24.282871,70.12933,136.54123,1.0799037e-05 2201,0.87169355,238.14516,20.757046,162.38823,6.9692587e-06 2201,312.486,161.43579,73.19028,177.30692,6.8082313e-06 2201,599.79193,5.470303,38.946655,50.72885,3.6521865e-06 2201,1.0141927,57.575325,18.390001,76.84136,2.727359e-06 2201,3.3102784,42.919025,58.249,216.14119,4.108392e-07 2201,0.96515626,16.004955,14.252787,71.53247,1.17695734e-07 2201,381.871,11.817601,84.1676,72.57375,7.600689e-08 2201,511.1325,7.1527348,44.878967,48.009804,1.7713766e-08 2201,2.1611345,15.13309,50.743916,64.150635,1.250269e-08 2201,78.79584,3.7939162,45.511513,45.54966,5.7083724e-09 2201,143.13913,0.0,70.04228,64.125244,5.5482996e-09 2201,421.222,4.325153,46.733765,47.42738,4.455685e-09 2201,369.91736,9.540598,42.773254,48.164894,1.2101173e-10 2201,187.95038,2.066535,42.364,50.685017,4.4802575e-11 2202,594.9537,219.67987,34.249146,66.613556,91.6079 2202,479.9632,150.1262,45.836548,102.35805,0.05240619 2202,597.50793,202.01535,39.17871,181.19788,0.020198321 2202,575.0309,80.340034,61.563843,205.51132,0.007271649 2202,489.76456,201.3036,25.360931,50.469574,0.0047846306 2202,352.49792,337.3242,28.79712,65.85959,0.0011437878 2202,625.3778,349.86282,13.76886,45.106018,0.0011301746 2202,616.30585,195.18971,22.693237,78.94731,0.0008218081 2202,122.16706,208.35023,76.12524,190.01125,0.000682882 2202,347.92456,47.21688,34.936676,76.63396,0.0005612325 2202,617.04724,365.41614,22.099426,90.14398,0.0002514259 2202,615.94824,243.38396,23.198425,92.91313,0.00017480405 2202,458.2824,105.29225,103.32239,211.78877,8.954183e-05 2202,614.86835,314.64313,24.27832,90.348175,8.652743e-05 2202,588.92804,122.7203,31.677185,76.619026,6.908274e-05 2202,587.6492,320.08252,51.497498,165.73495,5.0551855e-05 2202,0.8408472,220.20427,13.404689,47.29979,5.0431714e-05 2202,615.5572,42.525227,23.589478,95.53529,4.6905556e-05 2202,609.311,440.848,29.835693,63.57956,2.5029856e-05 2202,1.0213192,286.5168,17.8211,69.20154,2.2727523e-05 2202,320.6374,68.09713,43.643494,136.11545,2.0875726e-05 2202,1.2369092,185.12363,19.610933,127.36026,1.3985126e-05 2202,1.0581365,321.25677,18.442125,131.0075,1.16951105e-05 2202,1.3529493,101.00899,17.730219,72.650604,1.1305644e-05 2202,4.309173,138.59917,58.638836,215.07445,4.5609722e-06 2202,3.6815057,332.54013,56.403137,148.47568,3.411882e-06 2202,1.2038542,399.7972,26.695187,96.30771,3.3168399e-06 2202,2.5580795,99.64233,30.490135,174.22815,2.3431437e-06 2202,0.78836673,249.02597,13.840153,49.01123,2.313126e-06 2202,596.1655,7.8338447,42.98114,79.86354,1.9545014e-06 2202,1.5827214,24.757647,20.804245,96.08663,4.5903548e-07 2202,320.46848,11.208067,80.24243,69.29511,2.2449314e-07 2202,5.7021422,30.963907,79.09156,136.8125,7.989617e-08 2202,3.6249497,16.744698,51.04835,62.850143,4.1262638e-08 2202,463.4688,8.901605,43.08658,46.21535,3.7986688e-08 2202,437.38205,7.5150557,43.57791,45.46795,7.707651e-09 2202,366.04242,7.808552,44.37668,45.531178,4.143115e-09 2202,571.7301,2.6413999,44.685913,48.198906,3.1084104e-09 2202,64.21313,0.8275456,67.289055,60.209187,1.3059238e-09 2202,308.4221,10.607894,44.04782,49.842785,1.8303672e-10 2203,490.20413,216.93396,36.238983,58.825043,1.6519234 2203,160.2952,256.26678,35.91449,84.03415,0.010947695 2203,406.23328,197.89044,25.965271,52.086624,0.0009534019 2203,184.6869,243.98366,27.347,54.174515,0.00088026945 2203,12.010938,195.97968,35.106716,67.19769,0.0007679175 2203,382.75415,150.7622,43.40689,95.4328,0.00044661888 2203,621.80237,76.64261,17.3443,50.80565,0.00035806358 2203,617.966,281.29935,21.180664,73.49548,0.00028882138 2203,617.1837,97.70241,21.962952,79.32013,0.0001860623 2203,622.52167,232.82253,16.625,49.76213,0.00016254916 2203,162.90308,224.54668,69.90721,143.85973,9.630781e-05 2203,616.91895,151.93282,22.227722,82.18614,7.607859e-05 2203,1.5601856,196.29805,18.01442,76.878586,7.320505e-05 2203,2.51358,111.26672,34.07614,174.6607,7.2787014e-05 2203,612.744,316.85437,26.402649,141.68658,7.214479e-05 2203,601.57837,88.26544,37.5683,203.16751,5.3453005e-05 2203,0.4460848,346.87445,18.889004,82.3743,5.0008766e-05 2203,1.2883781,222.98769,33.84877,207.77101,4.977049e-05 2203,613.92395,414.26553,25.222717,88.0325,3.8585746e-05 2203,569.9939,360.8239,68.11969,124.85663,3.506775e-05 2203,601.8671,233.53157,37.27954,165.85097,2.9591834e-05 2203,0.86755615,246.2302,19.343073,87.68927,2.4867399e-05 2203,0.47876954,417.23254,17.104813,83.5744,1.6159567e-05 2203,4.3555307,154.62485,73.79868,186.41577,1.18664075e-05 2203,1.527238,147.18756,18.556534,76.26254,1.0199023e-05 2203,1.5666081,65.83997,17.674297,71.63378,5.1463035e-06 2203,584.2157,1.5539714,54.93097,124.98566,2.8769316e-06 2203,2.3985856,394.5276,56.08765,97.93497,1.4032923e-06 2203,220.79688,11.233177,82.61804,62.862152,5.486676e-08 2203,341.44608,6.6677327,61.972412,45.64365,4.7219316e-08 2203,0.90452886,14.48422,10.487779,76.62539,1.1895364e-08 2203,2.7138965,21.572458,56.1957,109.72164,1.13013385e-08 2203,489.39032,3.6772397,43.065613,47.734676,8.193508e-09 2203,387.72412,8.599943,44.21695,46.4187,5.1782267e-09 2203,449.75494,6.506838,44.816986,45.90158,4.856401e-09 2203,1.2430127,5.615332,38.133118,49.07079,9.376696e-10 2203,205.18091,7.448537,44.768936,53.640327,3.5120318e-10 2203,236.31563,0.0,39.853806,45.16607,4.3111043e-11 2204,580.9036,214.09232,45.01233,76.41589,77.34352 2204,516.9486,219.04636,29.029602,59.11328,0.1036223 2204,441.5958,203.91725,26.101715,52.954483,0.007517254 2204,3.3544989,189.71172,51.399857,97.01311,0.005201324 2204,159.66388,220.60973,38.322678,77.97334,0.0050090724 2204,584.8701,58.537617,26.881897,57.309963,0.0027772435 2204,272.03506,237.37956,33.302795,64.544235,0.0019209463 2204,582.44147,17.2761,54.415527,109.04008,0.0010814475 2204,596.1505,202.18037,41.989014,167.52095,0.0006972163 2204,617.36456,231.65753,21.782104,77.51752,0.0003661886 2204,582.19147,43.73422,53.534607,266.98593,0.00027959057 2204,479.44934,319.60245,71.428406,147.90985,0.000187097 2204,1.9792114,142.08817,20.60715,135.46228,0.00017625051 2204,1.1571937,218.59438,13.221157,54.317062,0.0001021093 2204,140.91328,187.33878,71.63779,161.29993,7.471762e-05 2204,621.4268,140.55058,17.719849,54.57834,7.4201525e-05 2204,612.1121,364.9918,27.034546,130.16074,7.108002e-05 2204,611.3126,136.39145,27.834045,144.02612,5.3267417e-05 2204,399.5746,271.8368,47.01953,159.21521,5.1872797e-05 2204,5.812028,127.67404,87.03964,222.78,3.546965e-05 2204,0.33470866,253.25464,18.438587,81.58902,2.680977e-05 2204,0.83453697,352.27103,20.77428,102.54883,8.026909e-06 2204,591.17535,6.6214147,45.066162,51.13589,6.195053e-06 2204,1.2863184,241.01492,34.25616,195.14499,6.0539805e-06 2204,0.59270835,309.94992,18.405167,72.726685,5.4478896e-06 2204,0.7772876,422.7196,16.968992,79.14935,2.8272605e-06 2204,3.1878386,341.28827,57.37659,143.65488,6.747315e-07 2204,240.10126,12.449108,81.33771,57.90758,2.1233595e-07 2204,2.83486,32.054638,59.697094,226.76537,1.8066008e-07 2204,1.9305079,25.966146,29.163591,134.73064,5.8918033e-08 2204,0.90901005,15.368382,10.671844,83.31689,8.466701e-09 2204,225.06097,6.625705,45.22751,52.14022,5.4221414e-09 2204,1.0971777,4.8240657,30.482622,47.11497,7.9550916e-10 2205,363.9362,244.909,23.06668,54.884277,0.17414843 2205,610.5965,217.54875,28.55017,83.88017,0.10394546 2205,221.76237,210.87497,36.35164,75.672,0.098322876 2205,531.7379,207.0059,27.855774,55.92241,0.033337 2205,622.77075,271.5802,16.375916,47.664185,0.019243544 2205,555.4067,329.16367,81.12909,157.73474,0.004932509 2205,586.2124,387.87497,25.90625,62.775665,0.0030498535 2205,501.8424,139.38823,44.516907,125.032486,0.0016314029 2205,85.51567,223.85918,22.906921,49.082413,0.0013820174 2205,600.228,240.15535,38.470093,217.3304,0.0010020075 2205,610.10614,368.14218,29.040527,122.42435,0.0007621668 2205,611.12067,12.273509,28.026001,133.30313,0.00017886052 2205,589.6816,97.91198,48.759033,244.99042,0.00016283589 2205,253.24826,121.87658,34.779022,70.3476,6.257865e-05 2205,1.4433504,184.70204,17.878008,69.90228,4.221671e-05 2205,0.49961022,280.39902,18.859898,79.94931,3.9637835e-05 2205,2.7218,152.56683,33.948692,174.45035,1.1992062e-05 2205,1.294541,267.21896,33.971348,183.5622,8.691102e-06 2205,1.262666,119.8417,18.281631,74.09588,8.317677e-06 2205,0.7810474,362.18213,19.840677,131.88516,4.5521597e-06 2205,4.1336656,39.112656,59.89447,255.21684,3.054474e-06 2205,2.3328288,77.19158,28.884768,154.84991,2.2536374e-06 2205,3.0792172,397.38492,56.380455,96.854095,6.361746e-07 2205,332.20096,4.068825,46.72107,56.19804,2.1033904e-07 2205,1.1453931,13.130525,22.719513,114.304115,1.5081449e-07 2205,0.250529,1.5615951,44.86416,62.250965,6.347949e-08 2205,357.71158,5.9474125,47.25946,47.579887,4.2705018e-08 2205,474.94122,0.99018234,48.190063,57.2982,4.1804807e-08 2205,306.6009,6.1097918,44.8183,50.86149,2.153241e-08 2205,387.5767,7.6850376,41.44815,48.205772,1.0499704e-08 2205,566.20447,5.2612743,46.901978,55.116875,5.4558367e-09 2205,416.22623,6.0486865,40.46176,49.891243,3.9401162e-09 2205,518.7084,4.5579967,44.526978,52.264038,2.7256075e-09 2205,32.336617,0.0,48.93479,57.76669,6.0027106e-10 2205,64.90776,2.839655,43.889572,48.06778,3.240479e-11 2206,246.99219,238.12375,33.09915,75.95578,0.04805633 2206,507.31802,138.08113,29.88205,66.26524,0.0070142685 2206,443.57687,200.74715,22.780731,45.39406,0.005408881 2206,258.53595,217.79266,36.657684,70.369934,0.005054831 2206,579.14484,74.149666,59.078552,177.58939,0.004403225 2206,585.66956,213.9771,27.988892,60.192245,0.0029528409 2206,615.94305,156.96927,23.203613,82.296265,0.00070494454 2206,619.765,74.72286,19.381653,65.94062,0.0002616885 2206,616.491,230.98438,22.65564,91.85434,0.00021437538 2206,621.0409,118.345604,18.105774,58.43505,0.00021214534 2206,427.10727,269.58774,24.706604,57.345337,0.0002005545 2206,617.6637,332.08194,21.482971,80.88553,0.00017738112 2206,404.57425,245.65012,40.66159,81.5361,0.00015870894 2206,585.2352,173.04802,53.418335,246.42241,0.000139627 2206,617.96826,395.16226,21.178406,78.88666,0.00013649197 2206,1.2418457,202.0365,17.918516,72.7406,6.0413506e-05 2206,0.45954347,283.27628,14.498354,52.261993,5.555678e-05 2206,607.30084,8.81806,31.845825,155.67435,5.2414936e-05 2206,0.9055876,112.30069,18.398186,70.84297,2.9847904e-05 2206,0.72915936,225.30034,19.048893,141.09511,2.6876176e-05 2206,587.4685,322.9825,51.67816,163.78162,2.5799429e-05 2206,609.4545,441.59943,29.692139,62.60486,2.1212196e-05 2206,0.53345704,307.06494,20.411205,139.92517,1.2518313e-05 2206,3.4617498,143.96982,58.783123,204.91296,1.043551e-05 2206,0.749668,406.4286,18.120886,72.031586,4.6266337e-06 2206,2.7359245,273.89862,57.268982,202.10388,2.7924732e-06 2206,1.399821,26.269121,19.118269,119.5611,1.835083e-06 2206,1.9489657,70.252655,33.71048,183.2675,7.2905647e-07 2206,2.5456755,14.680046,58.328583,119.91352,3.9917848e-07 2206,2.8508236,431.5319,52.815624,68.06171,2.954821e-07 2206,5.7769465,5.6891685,48.086376,54.398987,1.2333983e-07 2206,529.2769,0.053313803,46.7287,57.556953,3.7479165e-08 2206,379.1782,3.4134018,45.951813,53.070076,3.2521864e-08 2206,352.88297,5.39251,46.217865,50.113422,2.5560993e-09 2206,60.416924,0.0,46.004692,58.158127,1.1350862e-10 2206,93.25449,3.2500734,44.107704,48.336372,2.6439247e-11 2207,572.33374,148.78731,36.957764,94.52411,0.048391134 2207,476.1022,216.51305,33.094574,61.706528,0.009694738 2207,448.4091,201.22794,23.27774,47.7079,0.007647962 2207,449.9398,278.8722,43.03897,92.03781,0.0019480763 2207,550.94073,95.36403,42.188232,156.14256,0.0015604375 2207,317.59018,217.98419,25.243591,51.625885,0.0015087393 2207,603.0759,14.628079,36.07074,69.418564,0.0011205468 2207,1.3223861,202.59651,18.764688,78.13805,0.001115992 2207,241.0695,207.41139,31.202805,66.27159,0.00061112153 2207,441.21033,235.00334,28.223846,54.14308,0.00034526782 2207,611.60876,378.43646,27.537903,120.854004,0.00033295283 2207,275.3388,125.58297,38.175873,73.2907,0.0003102421 2207,233.47755,254.07756,32.93184,74.749985,0.00028815365 2207,617.5666,251.93436,21.580078,83.14438,0.0001928898 2207,395.2929,258.70398,28.170868,65.62018,0.00013885894 2207,615.7954,48.978733,23.351257,90.77423,0.00011991459 2207,1.3256202,211.7458,28.776854,153.5941,7.806337e-05 2207,582.59894,0.0,56.44635,260.49783,6.788107e-05 2207,3.2356853,131.70224,59.291527,202.32068,6.017901e-05 2207,612.01733,123.162735,27.129333,109.30165,5.8040285e-05 2207,601.7094,192.36876,37.437256,195.89671,4.8517468e-05 2207,108.99472,193.25267,24.878693,48.615097,3.3442004e-05 2207,26.190357,232.9392,30.194786,60.550705,3.2433913e-05 2207,1.7366471,139.58302,18.578037,92.60208,3.0162584e-05 2207,457.2516,140.02484,80.02576,198.40268,2.3195462e-05 2207,2.8216178,263.24588,57.24559,211.30133,1.0530102e-05 2207,0.48648766,291.81198,18.692198,79.37915,7.672651e-06 2207,0.5927307,385.4637,13.760234,47.02481,6.710597e-06 2207,0.6236784,341.96268,20.13928,132.05609,6.5581858e-06 2207,0.5613082,358.4602,13.767771,46.998596,6.169288e-06 2207,0.77999187,424.02805,16.753958,78.31348,2.373678e-06 2207,2.886748,431.318,52.757366,67.96811,2.9696014e-07 2207,1.1517961,12.89407,16.780418,107.775635,2.6950175e-07 2207,2.3517773,11.612162,84.49121,165.19768,2.3266959e-07 2207,565.4682,8.140217,46.97821,50.201588,1.794382e-07 2207,368.83633,0.48240235,46.454285,137.3148,9.50805e-08 2207,0.56088704,2.363439,34.431362,53.804142,3.643096e-08 2207,532.46545,8.886483,45.398804,45.663754,2.2813573e-08 2207,383.50833,3.8698244,46.04059,51.285908,1.0326064e-08 2207,353.75626,4.3174806,47.52188,52.71541,2.7472469e-09 2207,327.41257,5.3585205,43.48761,54.626175,1.120197e-09 2207,33.993973,0.71004885,42.983543,53.95244,3.1858984e-11 2208,612.7795,180.99388,25.92981,51.38292,0.0073601385 2208,527.9819,219.18063,31.395813,66.24448,0.0030957682 2208,570.8824,345.13898,65.06464,134.93042,0.0020311633 2208,621.7382,343.4257,17.408447,57.196198,0.00062557386 2208,362.4726,235.36943,33.16977,75.27205,0.0006079048 2208,617.81067,293.6349,21.335999,79.45334,0.00035860695 2208,617.1381,401.94427,22.008545,77.78064,0.00032883382 2208,124.20222,195.6701,33.300148,67.28351,0.000305332 2208,0.85498214,207.52463,13.820848,52.473236,0.00029002925 2208,0.68751955,206.4424,19.660118,132.65083,0.00019266809 2208,599.6761,247.45319,38.841248,195.20465,0.00017403257 2208,603.61066,137.88731,35.355286,132.36192,0.00016611913 2208,514.59985,310.57373,77.87366,165.81638,0.0001634634 2208,442.36075,224.80748,71.58176,186.16234,0.00015171694 2208,14.933987,231.0905,39.897877,63.80809,0.00010682487 2208,184.2643,212.15038,32.89781,67.75691,0.000105216066 2208,0.24474528,281.12567,14.224974,54.893463,9.862536e-05 2208,616.80585,96.63823,22.34082,85.12219,7.8092926e-05 2208,287.65045,129.72617,37.722473,70.77844,7.089595e-05 2208,615.8987,25.155434,23.247986,76.529015,5.486545e-05 2208,583.56525,23.221277,55.14209,220.16576,3.8355123e-05 2208,4.1706414,158.32817,76.9536,254.18974,2.5603978e-05 2208,1.7110368,103.71802,19.977003,138.31131,2.3136385e-05 2208,198.20468,76.81764,45.975113,115.49039,1.9005136e-05 2208,1.1499187,246.97928,33.916393,188.62808,1.5320977e-05 2208,0.71688724,398.96033,18.136549,71.6225,9.542578e-06 2208,0.5280461,315.9269,18.414194,73.38806,6.593354e-06 2208,0.61914307,359.09113,18.303661,71.07062,6.3759126e-06 2208,0.92336833,443.795,21.780235,59.404327,1.9505912e-06 2208,2.750402,17.113516,57.94382,108.11112,1.1055357e-06 2208,1.672107,21.388887,19.274523,117.72185,8.8159993e-07 2208,5.41723,360.61615,79.077995,126.91455,6.039815e-07 2208,392.42233,3.7827735,87.83014,77.03729,4.395119e-07 2208,2.8025944,430.561,52.779297,68.48276,3.2069812e-07 2208,426.5034,18.550905,27.38971,73.25512,9.654888e-08 2208,1.7707894,12.039247,24.404818,48.5962,5.543056e-08 2208,376.58484,0.0,81.58365,194.71555,2.8724765e-08 2208,512.26044,8.9264,44.121643,47.48443,6.692502e-09 2208,11.896645,6.112673,46.125023,48.9544,4.2590953e-09 2208,384.4099,2.2209783,46.93219,53.13948,3.790987e-09 2208,347.45633,3.696859,44.154602,57.75653,1.0556487e-09 2208,320.55283,3.6158042,46.469574,56.212368,4.0317496e-11 2209,573.1122,382.02744,66.034485,117.93634,0.053340696 2209,619.53046,404.379,19.61621,70.161224,0.003302973 2209,337.31305,221.6292,27.29544,51.538742,0.0029631825 2209,618.4275,339.49445,20.719177,59.135864,0.002604707 2209,606.1415,312.57703,32.76831,150.79459,0.002424085 2209,527.7623,221.77165,34.134277,79.64284,0.0016594037 2209,1.2985111,192.58203,13.499611,49.13086,0.0015675775 2209,345.81787,89.29328,23.969482,57.29464,0.0013770444 2209,183.73201,214.02205,22.86058,47.309128,0.00088201475 2209,21.481985,216.04333,39.457672,69.73682,0.00045283814 2209,615.917,229.7993,23.229675,85.481155,0.00042641192 2209,124.770744,227.77147,48.55361,144.36592,0.00039403813 2209,369.46594,180.28503,32.372894,66.0889,0.00029090568 2209,301.79633,124.63408,38.785034,71.72191,0.00023926841 2209,1.6371509,178.29388,20.086237,133.48026,0.00018978707 2209,101.244415,192.162,24.710663,48.169403,0.00017099983 2209,602.8564,156.03117,35.943665,142.49507,0.0001501904 2209,516.32306,160.38324,75.81067,171.67511,0.00010046311 2209,0.96417767,230.00282,13.70242,51.29802,6.96959e-05 2209,95.8569,196.8319,110.932724,217.36555,5.7021778e-05 2209,3.6013136,153.17615,58.25594,205.64584,5.6395736e-05 2209,212.01677,73.76084,46.041885,113.2093,5.21858e-05 2209,611.2968,68.69397,27.849854,148.23398,3.553316e-05 2209,137.47702,158.81807,35.574387,76.13933,3.5410165e-05 2209,301.7213,194.36743,69.797485,174.50827,2.9604675e-05 2209,442.32104,188.24217,76.03717,157.79625,2.6101452e-05 2209,584.7957,11.351726,54.171448,105.55093,2.5000656e-05 2209,89.16215,198.7479,23.730553,46.36438,2.3222066e-05 2209,1.1834334,93.880875,18.693195,76.70088,2.1572023e-05 2209,1.1505835,248.9547,19.861597,136.68059,1.962395e-05 2209,2.032326,85.527016,35.01383,186.87387,1.746666e-05 2209,0.7650798,336.37445,19.868378,136.24042,9.888815e-06 2209,1.0630583,140.53685,18.945774,84.93204,8.2035285e-06 2209,3.673939,290.09274,56.28088,187.20697,4.839699e-06 2209,2.9563153,18.618568,56.79342,106.99316,3.5935211e-06 2209,0.7698145,423.30963,16.930893,78.566895,2.4743624e-06 2209,410.33084,0.7119922,70.48917,63.76261,1.8412255e-06 2209,161.97319,26.688698,86.04553,192.03595,3.1221873e-07 2209,2.8072836,429.64114,52.80239,69.20349,2.8948136e-07 2209,1.3737813,13.740066,16.418518,75.11275,2.1113932e-07 2209,397.2756,0.0,83.80008,232.7278,1.4888184e-07 2209,1.9456397,9.054303,41.706543,50.823746,1.3307707e-07 2209,483.7108,2.6891782,45.784637,45.7069,1.4214582e-08 2209,344.85516,3.3552246,64.022766,56.82432,3.3507326e-09 2209,24.725288,4.381958,47.23139,53.240875,1.8635342e-09 2209,44.22608,2.7128663,64.01642,46.07611,8.324677e-10 2209,387.46103,2.253327,46.805878,59.977833,5.863591e-10 2209,321.4371,5.2546616,44.37216,54.507294,3.489516e-10 2210,587.11615,227.65813,43.591125,117.48796,0.025307842 2210,592.9034,269.8817,23.630737,52.780457,0.005462604 2210,217.79547,213.30815,28.265762,54.67238,0.0015508687 2210,144.28703,237.82185,21.805008,48.90297,0.0014942699 2210,550.5765,303.6179,25.234192,52.73517,0.0013638965 2210,616.49963,218.59047,22.647034,83.69612,0.00096406636 2210,387.00122,194.69287,24.12677,48.69243,0.0006070335 2210,617.11646,270.50702,22.030212,79.8743,0.00047457108 2210,373.19363,209.37898,35.3338,73.5833,0.00043520334 2210,1.0656413,234.20271,13.159235,52.156265,0.00040773352 2210,341.59222,224.59712,23.915924,47.970352,0.00033374887 2210,609.8461,126.95638,29.300537,150.01117,0.0002867777 2210,570.4386,144.79314,66.17377,263.39453,0.00026507687 2210,0.9943555,212.13362,19.422256,126.322495,0.0001991354 2210,617.5214,315.56848,21.625244,78.365265,0.00016737028 2210,308.08505,131.09787,37.719788,73.614944,0.000106264204 2210,617.3142,103.537285,21.832458,84.077934,0.00010043505 2210,616.4931,21.66339,22.653564,75.185455,7.739924e-05 2210,1.0523633,174.03745,19.2745,80.26918,4.3950087e-05 2210,612.37256,372.53793,26.774109,123.47989,3.823227e-05 2210,600.56726,264.0458,38.579407,200.1665,3.7389418e-05 2210,0.4555184,284.52747,14.06065,50.87451,2.8427698e-05 2210,396.81168,212.01834,69.752655,173.33182,2.2192868e-05 2210,3.742637,248.91254,55.62713,217.2041,1.8725092e-05 2210,345.39432,170.66756,81.08258,168.51402,1.6389831e-05 2210,2.0265462,132.64256,35.528736,169.23177,1.6322818e-05 2210,1.2482138,124.660866,19.099072,86.37876,1.3629124e-05 2210,0.62496907,311.76242,19.843517,132.25296,8.333318e-06 2210,0.61741537,345.62,13.569299,46.46158,6.2800573e-06 2210,585.8604,19.84793,53.131714,202.4927,4.871131e-06 2210,1.0042057,390.97644,27.210186,104.514404,2.7503916e-06 2210,585.768,8.065894,44.83893,48.42757,2.0118648e-06 2210,1.3598869,19.483204,22.750055,122.748245,1.5143197e-06 2210,435.07346,1.4463445,50.384888,63.221035,8.064319e-07 2210,1.3887467,19.697598,83.03974,140.76065,4.719396e-07 2210,421.52338,0.0,85.31381,157.08885,7.718998e-08 2210,480.6611,3.0559163,45.015778,55.717564,5.2729032e-08 2210,0.81849045,1.7154118,21.217073,46.535343,2.4166713e-09 2210,352.65143,5.7108073,48.786835,60.049065,2.0425854e-09 2210,44.488922,4.722025,44.256714,50.814445,9.683851e-10 2210,391.39938,4.2639456,69.41876,56.533802,7.567151e-10 2210,328.00208,5.350075,44.141296,57.383987,3.3436126e-10 2210,5.2117352,5.2780504,48.43633,60.10857,3.0620975e-10 2211,620.8252,220.01907,18.321472,55.60681,0.0035849328 2211,347.92468,224.75084,22.864288,52.62581,0.0032889391 2211,390.711,176.13123,32.077454,69.066956,0.0030116015 2211,52.31174,256.17947,35.621647,69.39902,0.0018451635 2211,91.2832,220.02959,27.037361,52.416092,0.0015309455 2211,608.99066,195.36424,30.156006,135.22404,0.00070631737 2211,357.2974,90.47751,26.167328,57.139496,0.00035471577 2211,617.2104,278.32516,21.93628,80.894745,0.00025914388 2211,387.54242,213.71056,37.770752,89.26088,0.00024344878 2211,585.26935,241.19673,52.869995,229.25514,0.00019853919 2211,616.8955,377.40442,22.25116,84.240906,0.00018482469 2211,513.51215,287.84866,31.83081,72.435455,0.00015834914 2211,610.0061,92.83092,29.140564,151.23917,0.00013540497 2211,593.1528,7.978513,43.763855,45.270733,0.000103035265 2211,557.5269,304.0051,27.063904,58.08365,0.00010168822 2211,355.96802,161.0375,24.39032,48.479782,9.779067e-05 2211,307.87335,135.64401,38.162506,74.89691,7.111711e-05 2211,1.1465365,199.89732,18.47199,76.63945,6.747175e-05 2211,609.1378,2.0850978,30.00885,134.45996,4.672634e-05 2211,0.5991113,285.92346,13.858044,49.32788,3.7739384e-05 2211,3.703817,104.821014,59.16232,208.999,2.8605993e-05 2211,609.4032,442.25513,29.74347,62.057953,2.842363e-05 2211,155.43936,215.9922,37.08737,94.52693,1.828428e-05 2211,0.97849774,245.40303,20.102999,129.07042,1.3654024e-05 2211,1.7746379,115.64917,17.759924,69.85205,1.07008045e-05 2211,3.1375017,273.1148,56.364487,197.31192,8.006099e-06 2211,0.76327556,386.24814,18.75655,109.07193,6.914259e-06 2211,2.282531,72.967834,29.341713,147.37842,2.21409e-06 2211,4.2479396,34.01868,77.21614,136.42625,1.8814479e-06 2211,522.6809,7.401473,46.237366,49.049614,2.4913763e-07 2211,431.17642,4.592217,83.74362,78.7086,2.1397561e-07 2211,161.09598,24.586752,85.58934,192.2535,1.7126848e-07 2211,420.46008,0.0,129.16724,246.6199,5.962369e-08 2211,496.67044,3.002282,47.206573,52.83416,2.1356735e-08 2211,424.3259,2.9223423,46.61551,48.328117,8.363562e-09 2211,0.9800114,12.247572,14.792724,84.69206,4.471128e-09 2211,366.0841,2.7012143,64.19858,59.83791,2.9294143e-09 2211,1.6870102,9.732198,52.220646,82.53273,1.08484e-09 2211,343.11526,2.816504,48.17093,50.4773,7.649096e-10 2211,26.25516,6.66993,42.94953,45.539074,4.2498582e-10 2211,314.19666,3.4703712,44.652924,50.70959,7.0907204e-11 2212,327.3033,216.0379,28.935516,69.66504,0.6323011 2212,530.936,269.34128,34.363586,73.83771,0.04650031 2212,126.36098,176.93965,25.02536,54.260696,0.003381343 2212,621.19324,85.48623,17.95343,56.345497,0.0016636117 2212,611.6872,364.0233,27.459473,132.04135,0.0004513937 2212,383.0378,268.13443,19.77237,45.986572,0.00034995528 2212,1.2076775,154.25194,13.093119,47.481796,0.0002119783 2212,621.8149,184.36128,17.331787,52.538666,0.00020968796 2212,616.66046,110.12149,22.486206,86.205505,0.00020643277 2212,616.6842,255.18561,22.462463,83.91199,0.00019774045 2212,602.6871,14.040417,36.1344,114.983185,0.00016521069 2212,611.4938,278.93768,27.652893,148.4292,0.00013809589 2212,610.28796,153.58206,28.858704,144.77829,0.000117506694 2212,285.4094,122.5912,39.415863,80.664505,0.0001066852 2212,1.2334188,171.24184,18.078081,74.51741,6.945134e-05 2212,309.82254,166.76483,73.67114,155.16342,6.250147e-05 2212,3.987163,98.17263,59.41269,234.12903,5.7681387e-05 2212,585.9843,31.98577,53.15045,239.2206,5.6012486e-05 2212,1.0510905,220.83243,13.066703,47.193756,5.5887205e-05 2212,1.2485702,80.45629,20.64692,111.99703,2.9223771e-05 2212,1.0984774,201.51845,20.340668,136.39552,2.8229184e-05 2212,508.9907,235.29605,88.66531,161.12634,2.5560601e-05 2212,0.85642904,294.14468,18.41311,76.7287,1.06851e-05 2212,0.7896452,398.34857,18.138916,72.15332,8.841043e-06 2212,3.306442,280.27783,59.305695,193.52646,6.229023e-06 2212,0.6538851,378.53513,13.859471,47.19348,5.645601e-06 2212,0.99629885,443.3957,21.73672,60.040558,1.5521895e-06 2212,5.0042057,36.009857,78.02696,129.65001,1.4581025e-06 2212,1.8529558,16.948044,37.008293,75.340004,6.7219065e-07 2212,2.8716016,428.56693,52.612442,70.38553,3.1546432e-07 2212,128.0965,19.970924,85.39671,183.4385,1.6895092e-07 2212,447.2642,2.8582814,66.456024,146.72713,1.6679732e-07 2212,311.60126,7.580111,91.98126,76.41766,3.208099e-08 2212,377.72928,5.512982,49.71109,55.38155,2.1410287e-08 2212,130.84703,6.278182,43.575195,52.595055,7.54286e-09 2212,491.16104,4.91958,43.685455,53.135826,5.3887885e-09 2212,407.71927,4.798981,47.53476,50.147923,3.8277297e-09 2212,435.29614,1.9517677,46.833405,55.350147,2.7049383e-09 2212,301.0554,5.593571,44.571045,54.36804,2.3649063e-10 2213,473.27542,218.314,24.626556,46.33954,3.4155145 2213,99.59441,226.33788,27.21399,52.459488,0.15197463 2213,381.85126,202.84581,39.626923,120.59816,0.030066477 2213,374.49182,66.5034,36.359955,86.21422,0.001953967 2213,616.99805,231.12558,22.14862,78.241455,0.0017086852 2213,389.862,261.66254,22.125732,54.8714,0.0008072383 2213,621.719,350.0613,17.427673,53.9942,0.0004919928 2213,376.84372,227.6757,26.219177,65.313065,0.00033438668 2213,425.31827,43.866985,28.045807,70.41193,0.00027429737 2213,621.964,289.2969,17.182678,53.369568,0.0002403497 2213,608.20593,4.1742578,30.940735,130.86147,0.0002037427 2213,327.47498,125.026825,40.30072,78.506134,0.00019660006 2213,1.2297982,194.03416,27.141508,68.21544,0.00018363683 2213,602.45337,158.20932,36.586,176.014,0.00016224374 2213,616.3078,110.861176,22.838867,87.317474,0.00013759581 2213,611.5191,315.38025,27.627563,139.11523,8.024711e-05 2213,617.28485,168.07024,21.861816,80.6398,6.9598136e-05 2213,0.99302495,228.03828,18.236181,83.3961,6.66558e-05 2213,455.28094,153.5686,80.72955,182.89957,6.166536e-05 2213,1.9110043,148.05902,37.105312,167.4584,5.5717443e-05 2213,356.15915,177.12743,100.92221,202.53749,3.374385e-05 2213,609.41595,441.05017,29.730713,64.171814,2.6763277e-05 2213,0.788466,275.7368,17.894083,72.349365,1.8850513e-05 2213,0.4656364,319.79044,19.761297,135.72974,1.3754527e-05 2213,6.113978,111.02166,78.58464,256.25226,1.0807135e-05 2213,1.5115796,98.87592,19.864605,141.40921,1.058217e-05 2213,599.04144,50.511505,40.105225,195.3905,1.05418185e-05 2213,1.5210962,238.791,32.391834,177.18886,8.312095e-06 2213,573.21484,356.22314,65.93182,133.5325,8.293203e-06 2213,390.17682,5.521348,64.60428,132.46548,3.1266165e-06 2213,0.7872494,423.2025,16.881756,78.73511,2.516844e-06 2213,568.432,5.5669613,66.086365,51.04708,2.4712965e-06 2213,1.762946,20.599522,57.027863,108.49802,1.6915253e-06 2213,2.906535,326.56763,57.32676,156.3841,1.2457403e-06 2213,357.84747,40.652676,78.32974,191.38693,9.360325e-07 2213,2.8419857,429.38474,52.88759,69.480225,3.2886294e-07 2213,1.2781315,25.16058,17.221312,131.00197,2.6245306e-07 2213,436.4536,4.078044,51.749207,55.182438,5.4891046e-08 2213,1.5006543,5.6056757,46.47073,47.568886,5.1710348e-08 2213,469.186,4.28008,46.47,50.299397,1.01244275e-08 2213,496.6833,1.7408919,48.279175,58.645386,8.767645e-09 2213,348.28555,4.5390563,43.70642,52.148083,5.1035765e-10 2213,409.8441,0.0,47.736664,55.917194,3.8525802e-10 2213,374.42365,4.4495378,48.85199,56.698242,2.8787644e-10 2214,443.01242,199.87471,26.262848,60.739212,0.023631373 2214,605.4172,251.85144,33.729492,77.30582,0.014680091 2214,28.704884,212.19302,42.055714,80.14075,0.007544861 2214,458.65726,215.62271,42.808075,138.57388,0.004445272 2214,602.072,363.16302,37.048767,112.06885,0.004222498 2214,593.78296,250.3892,27.962341,55.96849,0.004018583 2214,457.1099,262.6049,26.477875,67.71985,0.0032204527 2214,620.6313,342.9678,18.51538,64.75772,0.001911907 2214,135.78455,192.21082,37.09471,76.85062,0.001901368 2214,620.9541,95.70185,18.192566,56.80941,0.0007023395 2214,585.6216,130.82713,52.81122,251.0901,0.00064491166 2214,604.4485,0.0,34.69818,67.67396,0.0004999712 2214,522.6363,200.09161,37.955322,83.63779,0.0004710244 2214,620.98926,134.03078,18.15741,56.271637,0.0004194937 2214,419.32956,74.20664,28.916168,68.10113,0.00035633103 2214,616.5937,213.69391,22.552979,80.30292,0.00023527423 2214,0.8636149,239.99693,13.49168,47.604324,0.0001936658 2214,4.070866,113.41848,59.512913,218.13751,0.00015781047 2214,610.20013,91.83982,28.946533,145.5257,0.00013496098 2214,358.04398,117.7338,45.23636,100.20956,7.234769e-05 2214,608.2826,429.6557,30.864075,74.186035,6.6012944e-05 2214,1.1694353,217.49686,19.75734,121.890015,3.522149e-05 2214,1.2071607,74.130516,18.657473,74.251305,3.1278218e-05 2214,452.86414,0.0,49.036133,119.13714,2.5011388e-05 2214,508.42303,150.80362,84.38562,181.98547,1.823719e-05 2214,0.87345624,173.54044,13.596903,48.473816,1.8098615e-05 2214,1.5400888,263.3034,32.043026,171.96445,1.1276226e-05 2214,1.2625456,139.41412,19.89341,133.43173,1.11820955e-05 2214,0.6889844,344.8722,18.767393,130.84152,8.354899e-06 2214,615.8085,30.947731,23.338196,99.53957,4.7133253e-06 2214,583.6707,1.7819922,55.475952,213.21342,2.667251e-06 2214,1.3669076,416.8082,33.68621,79.874115,1.1018602e-06 2214,5.428659,351.275,78.44087,131.55597,7.291302e-07 2214,427.5387,0.0,119.65051,201.19928,7.036387e-07 2214,2.622995,23.44691,58.501637,111.8519,1.33949e-07 2214,479.47818,4.6770315,49.21988,53.82198,4.5064898e-08 2214,435.46753,2.1168978,48.16269,64.56603,2.3278444e-08 2214,0.8684335,8.789997,13.601124,77.58621,7.966893e-09 2214,406.98825,7.264045,49.890717,54.31776,2.604809e-09 2214,1.8383725,2.286473,34.421124,52.309006,6.607063e-10 2214,382.63455,5.8344274,44.083923,51.098732,3.385576e-10 2215,455.79324,215.64917,23.355103,48.724182,48.81929 2215,529.67926,306.1564,39.12201,86.99054,0.029259352 2215,144.5861,190.46544,22.731247,48.7554,0.011531343 2215,538.70245,213.19272,27.829773,48.164093,0.011382525 2215,478.9822,204.40274,30.355103,63.649628,0.007948724 2215,2.171727,193.90576,36.675556,90.219666,0.006385361 2215,589.4111,258.81442,48.520813,213.7958,0.0044786823 2215,450.00443,176.68765,38.578857,107.53201,0.0034452777 2215,83.98005,177.70311,35.70558,74.75569,0.003198407 2215,618.40356,379.00375,20.743103,75.59131,0.0018364388 2215,3.8156822,105.67933,54.80217,217.59818,0.0015302974 2215,615.4267,232.79277,23.71997,90.14894,0.0011122616 2215,548.71936,308.11093,25.593384,52.240112,0.001055534 2215,414.1823,67.33991,27.077026,67.00683,0.00072373066 2215,616.48584,113.70602,22.660828,85.260765,0.00033341354 2215,2.1777947,93.179756,21.508207,164.30334,0.000325343 2215,600.2382,141.64877,38.372253,200.28064,0.00016085811 2215,614.90283,303.5004,24.243835,117.02725,0.00015564132 2215,0.99895513,231.11763,18.620642,81.50069,0.00012787285 2215,472.99594,34.86952,41.67099,116.91901,0.00010960979 2215,598.59216,393.9728,40.554504,103.549286,9.8874065e-05 2215,529.16956,264.7251,78.00958,165.55301,9.212975e-05 2215,429.51862,140.97755,95.46417,209.14293,8.527291e-05 2215,607.94727,7.5494356,31.199402,53.360424,5.1354495e-05 2215,610.0412,16.307884,29.105469,144.81851,2.0030053e-05 2215,2.3470378,19.009838,55.37759,117.776886,1.3034378e-05 2215,0.6718856,324.67804,19.71702,131.64297,1.2826682e-05 2215,1.11653,245.81079,27.866259,152.05618,8.559984e-06 2215,447.8236,6.0975165,87.34949,82.44435,6.3909497e-06 2215,423.8027,0.0,128.03384,240.89313,4.091659e-06 2215,3.043773,279.90573,56.786148,193.17844,3.0496076e-06 2215,0.7126644,422.3496,17.053928,79.57492,2.493436e-06 2215,3.6439552,5.0193768,62.702755,48.408188,1.1082947e-07 2215,1.1200553,10.369053,17.264063,73.907166,8.3050196e-08 2215,489.41174,6.155825,69.008606,48.650455,3.197116e-08 2215,421.71857,5.6223764,49.502808,56.567223,7.306901e-09 2215,137.28058,6.2433286,41.185257,48.174057,3.6991736e-09 2215,393.87067,8.667602,47.464508,52.61524,3.421248e-09 2215,164.36073,5.9756217,41.917847,48.009953,2.050533e-09 2215,369.7525,7.465311,44.545105,49.136795,4.095289e-10 2215,196.76257,0.28893554,49.01396,64.28162,2.2232687e-10 2216,471.7696,221.4604,28.039795,57.086014,98.958694 2216,561.9881,222.56433,20.72406,48.640533,91.71305 2216,461.43048,218.95676,21.795013,46.08853,0.3289463 2216,573.21204,220.74503,23.502258,49.817688,0.16281325 2216,460.76953,185.21198,53.18524,113.18671,0.009910207 2216,1.0321932,195.5496,14.720193,60.08748,0.0043605515 2216,482.14224,79.212395,39.86685,92.90336,0.0026069237 2216,406.55222,48.88949,25.873138,56.373657,0.0024766515 2216,554.4564,206.16664,46.56134,88.290665,0.0010975436 2216,163.78273,175.51625,33.402527,66.14685,0.00044183343 2216,1.9647127,144.13571,29.643082,147.64774,0.0003563392 2216,610.519,374.0488,28.627686,118.61105,0.00031186646 2216,616.8615,236.08983,22.285156,84.61421,0.0002838115 2216,417.82028,124.03219,37.178375,93.10882,0.00024745945 2216,584.7302,251.31795,53.985535,225.87138,0.00015550363 2216,611.15753,107.894104,27.989136,142.44499,7.941399e-05 2216,1.1475228,228.62016,18.45073,83.340164,7.8693105e-05 2216,3.2976482,157.00357,59.18633,223.42026,4.7161633e-05 2216,427.1215,116.6907,139.10837,251.84033,3.9166927e-05 2216,610.582,11.90112,28.564697,114.26347,3.60357e-05 2216,1.0957911,83.59274,18.42289,76.540085,2.2805207e-05 2216,1.3836523,126.11847,18.99675,88.031204,2.0032538e-05 2216,544.00385,164.9049,80.75073,184.44333,9.910699e-06 2216,0.6553434,335.2565,20.105713,135.56433,8.017132e-06 2216,445.82147,25.14067,46.623596,132.8688,6.4921487e-06 2216,0.81018066,423.65027,16.7767,77.898895,2.7549645e-06 2216,2.5739372,30.047827,61.289658,232.98816,2.5039208e-06 2216,3.0129573,337.7882,57.50471,148.36978,7.75084e-07 2216,398.34058,20.152464,46.858856,108.791214,4.567848e-07 2216,0.9351587,17.915924,21.729935,97.80831,4.5375077e-07 2216,1.1242367,7.78695,38.581955,53.676826,1.0929263e-07 2216,527.98206,6.8193913,46.66626,49.23838,7.314337e-08 2216,405.72736,1.8807422,67.12137,55.88628,5.5100915e-09 2216,496.31055,4.189779,47.085815,52.962055,4.2697996e-09 2216,468.48642,4.1119175,46.509247,59.00711,3.4028305e-09 2216,168.2088,0.0,69.5305,55.745438,7.7075163e-10 2216,348.23438,9.402079,47.36075,53.4009,4.3411746e-10 2216,373.09515,5.9235563,47.029266,53.115005,3.2216105e-10 2217,523.71515,221.77777,25.781311,65.05176,99.786804 2217,513.12225,224.17235,20.956543,58.83943,97.39457 2217,608.9415,201.91368,29.74231,81.93837,0.051459227 2217,501.46564,202.85098,57.000366,100.930115,0.00808287 2217,554.66614,229.58347,22.630493,51.175568,0.004520679 2217,29.384119,199.86275,26.671755,45.526245,0.000534119 2217,576.41327,136.28076,61.8844,169.22461,0.00035388357 2217,617.70624,133.58298,21.44043,78.752914,0.00034390044 2217,134.01204,160.00623,26.672943,52.576157,0.00031911483 2217,0.8677893,218.1539,13.517114,50.62082,0.00017894087 2217,617.8558,388.95618,21.290894,78.17145,0.0001588007 2217,616.9036,65.93341,22.243042,83.42734,0.00011160782 2217,0.97525024,79.87494,13.648401,46.92772,6.768674e-05 2217,604.997,6.1953125,34.14966,55.594063,6.729677e-05 2217,617.4987,320.22867,21.64795,80.25482,6.011562e-05 2217,1.1940365,199.08305,19.95196,125.522385,3.44574e-05 2217,470.65854,129.69382,139.60489,260.69855,2.8293922e-05 2217,601.4589,279.04422,37.687744,196.07349,2.688284e-05 2217,609.7208,442.41626,29.425842,61.30728,2.1530836e-05 2217,2.111517,111.44407,33.738205,175.99301,1.6366213e-05 2217,5.0876336,161.84355,56.743435,211.62096,1.1330924e-05 2217,0.5957381,311.55542,20.242722,134.14673,1.0332598e-05 2217,1.2727174,105.46488,18.127277,72.785515,1.0078394e-05 2217,565.9264,13.307149,73.220276,153.46661,7.5795597e-06 2217,0.73075444,406.02676,18.092257,70.91086,6.721627e-06 2217,0.6823747,275.95816,18.232273,72.889984,6.7186543e-06 2217,401.9941,27.462955,39.254456,105.56027,5.1664456e-06 2217,406.0379,47.90778,78.15759,200.9412,4.6046775e-06 2217,2.8814828,280.24368,57.382282,194.4379,2.1943054e-06 2217,2.7918067,20.279646,57.45623,110.09038,1.8224041e-06 2217,475.2502,6.8655796,49.387115,129.67426,1.8921713e-07 2217,0.9746574,11.072956,16.775919,72.30061,5.7254184e-08 2217,448.2323,1.7989519,44.181458,58.50243,3.505871e-08 2217,563.55066,6.049157,47.49652,51.25373,3.4355836e-08 2217,1.5350847,6.334546,45.385456,46.737335,1.3964982e-08 2217,420.65872,3.270039,48.254303,55.038048,6.086112e-09 2217,395.77643,5.571799,43.603424,52.169365,6.0258283e-09 2217,322.45944,6.694009,63.06671,51.141853,1.6752953e-09 2217,88.957596,6.7408905,42.252472,46.86369,1.5739564e-09 2217,365.89844,5.4318457,46.985413,51.371395,2.6927527e-10 2217,136.39084,0.16526042,49.85663,58.65563,1.01745175e-10 2217,172.04295,0.0,46.045547,54.667866,2.8037912e-11 2218,612.23596,234.27542,26.910706,117.177246,0.01076456 2218,472.48016,67.79326,28.617188,64.18164,0.008393151 2218,623.9302,235.96819,15.216492,45.00966,0.004219125 2218,109.573166,208.7165,33.098465,64.50264,0.0023390695 2218,419.72748,196.5806,37.90143,78.84299,0.0021196809 2218,354.67538,227.61612,23.295837,45.733887,0.0006942842 2218,587.3776,207.33386,51.51587,226.57584,0.00032568668 2218,360.56293,121.15382,23.909576,52.07441,0.00031280296 2218,430.2877,74.28261,29.272003,65.69347,0.0002820711 2218,131.6187,85.878944,21.03096,45.657387,0.00024777497 2218,603.1712,104.80647,35.301758,208.51625,0.00024061734 2218,617.1131,371.25714,22.03357,83.77048,0.00020802763 2218,1.2789836,198.05228,19.237883,86.186554,0.00012524133 2218,621.2323,316.58118,17.914368,57.507965,0.000106011554 2218,0.57956135,289.09912,14.078916,53.657135,6.8975496e-05 2218,1.0309253,224.31802,29.965267,144.45941,4.6751127e-05 2218,615.35034,17.611406,23.796326,93.173965,4.508309e-05 2218,3.598615,143.28403,58.09148,226.85635,2.8861823e-05 2218,35.79095,224.63956,39.13046,79.38599,2.7840713e-05 2218,403.87622,156.63199,75.20276,177.37604,2.4562409e-05 2218,609.591,442.93756,29.555664,60.67395,2.2374652e-05 2218,1.561906,119.487686,18.441795,83.39006,1.9709665e-05 2218,0.65544844,286.07864,19.981075,146.80646,1.594686e-05 2218,143.18013,84.653885,21.685196,45.76735,1.5148375e-05 2218,572.739,356.4659,66.40765,132.21576,1.2967005e-05 2218,0.65953535,391.8262,18.261253,72.14093,9.37126e-06 2218,1.619275,72.72896,18.624184,78.94902,5.6059203e-06 2218,2.7474236,287.28497,57.0054,190.22873,4.510906e-06 2218,455.42105,40.951363,49.899384,161.15323,2.1227652e-06 2218,0.924659,443.8348,21.834944,59.499207,1.6627805e-06 2218,583.0944,0.0,56.052246,214.66881,1.288849e-06 2218,1.8323666,65.30257,36.15551,216.98213,6.073976e-07 2218,2.7763705,429.9744,52.667408,69.05823,3.259274e-07 2218,421.99768,12.258457,45.825806,150.85994,2.7362262e-07 2218,2.5535905,19.867188,56.678665,116.12834,1.6984754e-07 2218,0.6339632,11.38087,14.520625,83.74531,7.190631e-08 2218,477.55923,8.524525,81.71353,170.94687,3.021074e-08 2218,415.2249,2.7066343,46.14807,61.025112,5.3347504e-09 2218,502.22397,2.67646,44.737396,52.98925,2.6501676e-09 2218,476.71387,2.210285,45.66449,51.913883,1.1626674e-09 2218,387.92215,5.4563675,46.107117,55.156185,1.1392403e-09 2218,441.54688,5.393177,45.16751,51.53771,8.0222406e-10 2218,182.51836,3.379953,42.61696,48.412113,2.2882929e-10 2218,337.938,5.204486,66.3508,51.474335,2.2827307e-10 2218,130.9507,0.0,73.00993,58.561127,1.5337136e-10 2219,619.2958,252.9547,19.850891,66.98448,0.0035600732 2219,11.516584,231.78844,37.591736,79.05382,0.0008831452 2219,602.4748,199.96451,36.296326,138.21664,0.00062124035 2219,621.24115,202.14774,17.905518,58.631134,0.00043248548 2219,1.0792061,219.0379,13.3827305,54.39331,0.0004033824 2219,362.58472,238.14087,24.930511,52.660797,0.00033298996 2219,617.52264,301.72232,21.624023,83.561035,0.00026882737 2219,459.3276,53.945713,29.31601,59.616383,0.00022967206 2219,79.37084,138.24373,26.004288,54.379776,0.00018776246 2219,1.7292897,190.98987,19.724205,122.723206,0.00017770927 2219,23.982796,201.69717,26.0467,46.644867,0.00016597376 2219,570.09546,151.18457,68.75641,251.7753,0.00015165025 2219,4.9358125,174.4282,66.186134,162.29619,0.00014248467 2219,602.3146,281.56235,36.832092,197.9212,0.000104218205 2219,65.44992,106.58898,44.54982,109.001564,8.947234e-05 2219,617.5478,68.24203,21.598877,81.81248,7.256688e-05 2219,616.4604,145.01347,22.68628,88.92966,6.649041e-05 2219,2.0701125,220.27332,34.392838,178.25568,2.7785913e-05 2219,0.6053438,285.0684,13.916135,50.03311,2.4726032e-05 2219,609.56836,438.43344,29.578308,64.69537,2.298008e-05 2219,1.1774724,66.238045,18.24118,71.27619,7.91373e-06 2219,0.5681698,301.20374,20.393375,140.38895,7.829623e-06 2219,0.73256433,405.89685,18.115046,71.765045,6.998457e-06 2219,433.45792,123.42396,144.98166,240.94391,6.5001786e-06 2219,1.4455209,120.37577,18.884623,75.48405,4.451852e-06 2219,610.71875,0.94651693,28.427917,65.51418,3.7291948e-06 2219,599.1975,16.220657,39.949158,236.59859,3.252972e-06 2219,5.54541,359.17377,79.14471,128.64041,4.7515317e-07 2219,108.40674,30.883041,36.22348,90.66392,3.5430878e-07 2219,2.8460042,430.59326,52.869343,68.640594,3.1267103e-07 2219,3.6765854,35.620823,59.448193,234.85138,2.818209e-07 2219,502.37054,7.03153,46.493896,52.27405,1.3400368e-07 2219,443.25668,13.625371,47.25009,150.0353,7.8283904e-08 2219,1.1184156,18.121801,15.3366165,68.34662,7.321064e-08 2219,474.86273,4.4640527,47.20746,51.492508,3.6388393e-08 2219,3.5841978,18.677065,51.215164,61.92182,1.5091196e-08 2219,554.3935,1.4559945,64.875305,56.01078,1.1607824e-08 2219,534.8533,0.55328774,44.973022,47.839603,9.248053e-09 2219,409.79788,6.183156,46.305634,48.93965,5.026986e-09 2219,439.6687,2.167653,48.786774,60.657387,4.9965307e-09 2219,379.12,8.436993,47.964966,46.93221,1.0570067e-09 2219,338.37906,4.9424987,65.042816,47.35863,1.6566865e-10 2219,120.00947,0.0,51.40084,67.10559,6.317453e-11 2219,152.58946,0.0,47.60919,63.962845,2.3676446e-11 2220,536.4599,220.34753,31.56549,54.16516,10.540552 2220,20.959196,138.79007,32.03563,56.41072,0.0018080542 2220,570.6577,43.78897,34.659668,86.355896,0.0009444177 2220,616.3902,94.96835,22.75647,87.5603,0.0007301621 2220,1.2173169,124.90435,13.620219,59.31402,0.00065927656 2220,61.89664,193.78549,22.84756,47.761307,0.000573062 2220,599.90656,114.576126,38.421326,200.58794,0.0005112012 2220,525.94275,204.80565,63.76825,95.41188,0.000412816 2220,1.3074723,262.174,18.714468,83.33838,0.00032631966 2220,9.307616,233.49237,39.230446,81.12488,0.00031273195 2220,5.283558,149.09703,65.61574,187.35347,0.000296568 2220,612.29114,222.82053,26.85553,122.97418,0.00021913249 2220,405.63074,211.89835,33.131622,66.08243,0.00017207101 2220,0.92636234,167.60297,14.059721,52.780685,0.00015411174 2220,554.54395,6.0129104,81.47302,188.47061,0.00014158174 2220,2.1239047,89.405,30.902382,149.76186,8.545951e-05 2220,1.3494955,164.21893,21.050913,151.60678,6.722479e-05 2220,497.3736,133.88075,136.39978,260.3733,4.092003e-05 2220,0.8723975,277.78867,29.066275,167.15927,3.6923066e-05 2220,612.2759,332.88388,26.870789,133.00229,3.6094654e-05 2220,609.65295,440.94244,29.493713,62.96225,2.260539e-05 2220,614.0665,11.747491,25.08014,107.99077,1.3470519e-05 2220,567.7586,34.436474,22.56128,52.978413,9.460139e-06 2220,0.51607585,344.19794,18.611502,75.19443,7.5476487e-06 2220,585.6887,394.26135,53.457947,99.280426,6.5273616e-06 2220,0.6663916,398.35437,18.282743,73.17459,6.075821e-06 2220,1.2922714,57.776966,18.628115,87.79004,1.6034969e-06 2220,0.93363935,443.83432,21.724173,59.58606,1.5142562e-06 2220,5.168467,357.27322,79.62565,130.9786,4.496215e-07 2220,585.116,1.8077182,45.658447,59.093224,3.0025492e-07 2220,3.6444337,19.338959,81.4008,166.37738,2.4118572e-07 2220,509.5071,4.2967353,47.745087,51.35137,3.401301e-08 2220,540.0219,3.1991162,45.506958,54.087715,2.1917348e-08 2220,1.2160563,5.5358105,42.265194,46.029625,1.9057746e-08 2220,67.36363,3.255801,47.43963,57.440174,1.6500804e-09 2220,374.26566,5.9186053,44.24759,47.306755,2.410814e-10 2220,341.5179,4.7356186,42.17746,48.690125,3.0120247e-11 2220,152.8645,0.0,45.27083,57.57581,2.138445e-12 2221,475.0758,217.88217,21.85321,49.227844,85.94203 2221,451.43765,218.68483,21.075745,47.041916,50.620247 2221,494.42902,216.5688,22.49231,51.61464,1.9517956 2221,26.3538,190.63301,30.059092,60.901886,0.035110924 2221,433.18027,100.00186,26.778748,49.169556,0.030281112 2221,210.98463,216.40277,36.70305,90.15201,0.0071533797 2221,462.2942,204.7177,42.556915,96.71214,0.0062518 2221,392.89926,108.56248,26.198486,54.78916,0.0021891606 2221,157.97992,179.62347,35.96689,93.3129,0.0013846863 2221,11.669893,203.04497,26.032671,58.383865,0.0013632776 2221,620.9115,229.41943,18.235168,55.56775,0.00062852853 2221,620.22375,118.05052,18.922913,61.88855,0.0005972982 2221,608.72565,78.28146,30.42102,147.41708,0.00043663548 2221,621.34644,386.6809,17.800232,56.865234,0.00029442683 2221,610.3974,224.7047,28.749268,135.5136,0.0002886936 2221,4.053742,158.22581,57.205856,224.4171,0.00017830735 2221,610.7631,361.44662,28.383545,136.76984,0.00017496916 2221,430.21564,158.24326,74.852905,187.99518,0.00014839224 2221,1.7565031,189.7173,19.751957,120.8694,0.00014709035 2221,0.8321517,298.9903,19.900103,143.59335,0.00011263968 2221,1.6991073,119.71886,17.606386,74.08916,7.8327284e-05 2221,587.2671,240.85178,51.70935,225.51178,7.420789e-05 2221,53.189228,25.188793,37.815067,59.45946,6.928998e-05 2221,586.2099,95.07504,52.936768,254.07599,4.1514195e-05 2221,595.98584,8.864509,42.7937,82.536354,3.3994504e-05 2221,2.6251767,96.39491,32.684544,186.52748,2.8014685e-05 2221,451.20184,263.64972,80.5011,192.62659,2.4682631e-05 2221,0.7345402,421.06247,16.787962,79.15103,8.355155e-06 2221,2.9552279,344.50067,57.53441,136.68387,8.240193e-06 2221,4.9293456,29.243126,79.75487,139.79822,9.195225e-07 2221,1.4566154,30.798302,20.568096,133.86035,8.765782e-07 2221,504.47714,31.42847,86.144806,188.45367,2.1663749e-07 2221,34.77501,7.941597,46.534027,50.665344,1.9602341e-08 2221,73.1566,5.743288,45.980186,55.57968,1.0030264e-08 2221,1.1145321,10.476451,23.480814,53.593273,9.541636e-09 2221,102.20055,4.881722,49.05005,59.18496,1.1003779e-09 2221,373.9681,7.0824027,46.316162,50.26583,2.1416638e-10 2221,133.28217,3.4832456,46.13849,61.40181,1.514986e-11 2222,540.2052,212.95905,23.85791,54.923004,99.58026 2222,525.9014,214.14641,24.723206,56.85524,98.52903 2222,507.3045,212.50928,19.397156,48.977997,80.8042 2222,444.3018,74.41594,43.371338,105.44287,0.06868954 2222,62.62814,193.1453,41.160183,76.720245,0.023548402 2222,243.52719,212.58463,23.048767,50.011932,0.02142999 2222,452.43762,79.849945,25.53415,48.845016,0.0037879962 2222,42.033844,220.34784,51.63069,101.008514,0.0033498898 2222,508.77734,194.71388,67.40387,104.53203,0.003309793 2222,492.03464,216.99043,22.939728,48.86931,0.0021720584 2222,624.9505,180.6861,14.196167,46.573914,0.0011301853 2222,130.71793,196.3712,23.509888,47.947784,0.001044288 2222,197.18474,212.8591,21.772766,49.10742,0.00096884434 2222,576.6207,76.89919,37.843628,91.187096,0.00083135726 2222,583.03656,39.063198,55.23816,181.21368,0.0006024887 2222,615.99786,184.93849,23.148804,90.92265,0.0005479765 2222,620.2311,109.75271,18.915588,62.73925,0.0004277707 2222,1.1700286,150.82652,19.996984,85.03963,0.00040531476 2222,600.6885,117.30331,38.45819,197.61108,0.00014315602 2222,460.82065,141.07611,133.24185,231.97144,8.951895e-05 2222,3.2339454,118.659805,58.280373,215.10448,7.162597e-05 2222,612.15186,330.8361,26.994812,134.14355,6.0924158e-05 2222,612.0166,251.64917,27.130066,141.79776,4.4146724e-05 2222,0.5336971,269.9913,18.698368,75.93622,4.1328458e-05 2222,1.2620003,97.59487,18.113129,80.902,3.2292646e-05 2222,594.3802,17.525892,44.276672,82.83368,2.9604536e-05 2222,609.8728,440.30356,29.273865,63.527954,1.8729877e-05 2222,0.80219406,220.0046,18.34992,77.56941,1.837651e-05 2222,1.3817253,235.13586,33.609436,176.3872,1.1766745e-05 2222,585.5742,391.27747,53.57245,101.5477,7.909354e-06 2222,0.6906079,347.99597,19.965965,130.11499,6.1331057e-06 2222,1.0056405,444.76788,21.775318,58.52542,1.8695039e-06 2222,1.8245215,32.147514,29.47555,176.03833,6.535581e-07 2222,5.5510645,358.77808,78.87516,129.68387,4.874372e-07 2222,1.6876514,1.1107585,39.459686,54.5287,2.2040314e-07 2222,4.5032196,13.122429,81.86551,163.0747,9.654133e-08 2222,511.13797,6.8508644,47.570404,53.282417,9.606957e-09 2222,24.131966,6.2307634,46.294205,45.42472,5.2822418e-09 2222,67.36433,5.8788085,45.70189,49.12625,4.249488e-09 2222,549.2742,8.455715,48.072327,53.103096,2.706595e-09 2222,428.50885,7.839543,46.530945,51.875412,2.4128484e-09 2222,385.9171,7.851797,49.181763,56.101112,1.2815274e-09 2222,94.758545,7.335532,45.058746,49.841663,4.0477474e-10 2222,121.78427,4.6075797,45.000153,51.190437,1.5694769e-10 2222,340.7285,6.0854654,44.343597,56.075996,6.8574126e-11 2222,362.1527,5.0867386,47.309235,45.226284,3.120746e-11 2223,591.2039,221.52553,28.403809,62.94017,99.864426 2223,606.8252,217.85905,32.321472,67.87215,99.55309 2223,574.4388,223.58354,19.061523,61.13823,14.941812 2223,94.81332,210.34552,25.184341,49.10434,0.41005915 2223,334.84116,219.02328,23.277771,48.052856,0.10032772 2223,244.06761,215.18452,22.446945,47.176895,0.031499363 2223,476.5569,58.307808,40.26483,71.632225,0.023443202 2223,600.3984,202.42993,38.74829,234.7818,0.022188067 2223,382.1976,225.0071,35.766357,77.83467,0.0060242196 2223,415.1017,71.87756,35.48404,72.19786,0.0023374197 2223,619.4102,303.22174,19.73645,63.123688,0.0011870479 2223,540.33264,158.80975,96.88629,235.3818,0.0004196433 2223,409.01294,196.1891,24.348175,50.63655,0.00039288314 2223,605.89667,433.69565,33.25,74.83862,0.00029366382 2223,2.018099,152.50983,29.764942,147.24353,0.00015515878 2223,1.356054,197.48459,13.7746105,52.647064,0.00014625781 2223,495.75647,313.28287,37.3537,88.390594,0.00010946981 2223,615.9239,85.059166,23.222778,83.373375,9.121789e-05 2223,601.1791,12.7551565,37.821533,112.98021,7.4483694e-05 2223,167.59448,227.0269,23.662903,55.00676,6.504792e-05 2223,569.51666,337.00272,69.25989,161.1347,3.9005936e-05 2223,1.3043572,112.901566,18.566032,81.19862,2.311552e-05 2223,1.0709677,225.99881,19.250324,138.26312,1.6375237e-05 2223,2.468833,207.47047,57.765114,236.70137,5.3835365e-06 2223,0.5401652,334.62305,21.123472,106.240814,5.1480706e-06 2223,0.7356779,392.8407,19.066511,105.655304,4.855871e-06 2223,1.2107325,28.907442,20.292706,126.758575,8.3159443e-07 2223,5.120384,356.82364,79.59932,130.84033,5.8497255e-07 2223,2.9349935,43.05325,59.314514,194.4791,2.6813075e-07 2223,477.37814,9.610934,44.39023,46.781338,6.878802e-08 2223,504.7306,9.631566,43.33313,45.502426,4.3348162e-08 2223,405.84097,7.6920476,50.030914,57.3575,1.9621867e-08 2223,1.0652092,11.144908,22.936665,52.852547,1.6955354e-08 2223,448.83917,8.832406,46.39554,50.421764,8.992082e-09 2223,347.86127,6.584772,45.121765,57.46161,8.568689e-10 2223,373.0628,8.040458,46.237274,52.81341,4.1693923e-10 2223,134.59534,2.7977312,45.406418,51.171864,6.51814e-11 2224,337.07037,214.69673,28.511444,58.03325,10.1170225 2224,19.366411,178.57985,32.780296,68.02937,0.34139192 2224,85.64615,174.79317,36.863945,60.68486,0.08724885 2224,469.03122,328.53815,34.911713,79.40079,0.006870933 2224,427.8687,208.136,41.204437,77.48009,0.006644472 2224,618.6335,287.07446,20.513184,64.38806,0.004471718 2224,2.6749072,170.1307,26.922052,79.5656,0.0028066027 2224,570.36835,417.1591,68.77832,76.09622,0.0022224258 2224,68.86575,242.56433,38.553726,92.81436,0.0013907886 2224,28.82724,198.15448,37.24501,80.90228,0.0011405896 2224,229.05966,210.98375,24.214035,53.36824,0.00057809544 2224,602.07007,261.21985,37.0766,136.80087,0.0004562105 2224,1.1444694,205.5766,18.052214,84.79904,0.0003310714 2224,5.0899515,150.39172,78.45572,165.1849,0.0003195936 2224,621.6825,93.51478,17.464172,56.734596,0.00017558229 2224,176.89763,252.91284,27.700562,63.925537,0.00017066943 2224,530.8673,36.642464,31.237,68.04376,0.00016117257 2224,616.8859,227.57068,22.260742,95.437256,0.00014763043 2224,455.95892,286.33234,77.86163,180.40012,9.724329e-05 2224,611.03046,65.90828,28.11621,140.20319,8.475695e-05 2224,517.0876,27.67112,64.42505,130.69077,7.699301e-05 2224,439.33646,98.43894,74.18442,192.8432,3.9059276e-05 2224,612.4232,10.146726,26.72345,81.07055,3.541996e-05 2224,3.870516,211.78656,57.369003,251.89917,2.9844578e-05 2224,1.6488941,126.81563,18.511534,84.678696,1.8348666e-05 2224,0.53941894,260.21732,18.603523,81.70984,1.7995177e-05 2224,570.5784,29.104513,68.27179,130.7954,1.3797633e-05 2224,417.21597,8.167305,46.740906,126.2553,1.1945707e-05 2224,0.6703321,341.29974,19.504427,129.7673,9.929127e-06 2224,0.6732487,421.35318,16.740583,80.43579,3.8203766e-06 2224,1.1223308,72.351555,18.711184,80.53408,1.3127084e-06 2224,2.938846,395.85883,56.187424,96.469574,6.6377424e-07 2224,504.62912,8.249569,48.4758,50.892166,2.8063653e-07 2224,0.8637858,13.340055,15.370639,74.23602,1.00414866e-07 2224,2.194642,18.838932,57.825626,116.249725,6.90034e-08 2224,477.64938,9.442354,45.09677,46.01956,3.9941284e-08 2224,352.05414,4.925195,65.26056,52.864754,7.513252e-09 2224,439.41278,9.92439,48.072906,48.491314,7.1602986e-09 2224,402.35596,6.2802997,49.66031,57.53116,3.2993694e-09 2224,107.50429,4.7469907,45.487686,46.52567,1.0983837e-09 2224,134.76889,2.7417676,45.679977,45.25947,1.13073634e-10 2225,539.8383,221.72948,35.351257,63.11302,0.07848282 2225,345.41794,216.49574,34.729553,68.24922,0.07723376 2225,1.221276,354.38934,42.141914,114.9801,0.044718284 2225,189.72778,235.15828,29.180893,57.485275,0.038873535 2225,488.90533,137.698,41.352966,85.97107,0.0043299543 2225,214.63176,214.4467,31.146011,72.68181,0.0033295702 2225,610.0259,186.7817,29.120789,143.69154,0.0004362559 2225,447.57986,32.580776,40.697968,100.72096,0.00030286927 2225,3.1687827,191.02704,59.280407,259.03278,0.00029488065 2225,609.0184,440.2841,30.128296,64.17676,0.00016184227 2225,611.4249,319.14185,27.72174,143.46994,0.00013601872 2225,2.4174218,143.25694,28.646013,153.7794,0.00011912517 2225,47.07785,253.05095,117.61621,215.07478,0.00010955879 2225,77.5203,302.18555,49.471527,145.27643,7.891812e-05 2225,611.62054,66.789185,27.526123,142.49968,7.817922e-05 2225,71.38788,199.81178,27.09124,53.393555,7.111311e-05 2225,583.5438,394.32327,55.161987,100.79007,6.1149076e-05 2225,425.52386,143.68546,102.858765,228.33594,4.9580336e-05 2225,1.256202,258.77768,21.541805,169.35403,2.6605449e-05 2225,0.846438,395.29846,18.214579,107.34015,2.4966394e-05 2225,1.6112086,117.174576,18.42791,77.632126,1.9412128e-05 2225,586.0643,46.19314,52.62384,274.55557,1.3668837e-05 2225,583.4933,4.6066732,54.541016,115.37795,6.6357698e-06 2225,1.0477816,63.849415,19.016418,84.95955,2.6554337e-06 2225,421.72247,14.809691,81.701965,71.74223,1.698314e-06 2225,2.6936574,23.475286,60.13582,246.72473,1.9076012e-07 2225,0.82315755,13.3330145,14.7555275,75.14881,1.4541747e-07 2225,1.5689421,14.274287,50.89964,64.28201,1.03446574e-07 2225,572.19885,0.0,47.707764,60.14452,6.1933584e-08 2225,545.8139,6.524279,45.004272,50.041588,2.3208752e-08 2225,518.4132,8.137707,44.948242,47.62663,1.8399879e-08 2225,461.1605,10.884997,45.651978,46.864548,1.4586185e-08 2225,417.15372,5.605145,47.410828,48.445953,5.6438907e-09 2225,365.13434,3.8854673,64.959625,47.435642,3.0230902e-09 2225,95.57879,3.6243083,44.469933,47.17816,1.1626231e-09 2225,335.2479,4.1767955,44.601624,51.69178,9.649889e-10 2225,128.30235,0.29585612,44.840576,47.659595,9.080213e-11 2226,514.2282,223.60948,26.205261,61.3629,98.916046 2226,497.27512,223.2944,28.061066,64.533325,95.28179 2226,355.09302,220.8212,41.72061,70.49866,2.496526 2226,136.17088,272.46466,35.802048,91.27664,1.3457066 2226,489.6846,221.90263,20.671753,45.635605,0.63591486 2226,154.92621,293.8488,33.08531,67.75076,0.19854335 2226,101.80131,272.80252,40.69671,69.984436,0.011873112 2226,499.67664,200.7032,55.698303,108.29729,0.009328343 2226,607.3512,144.88127,31.795471,82.23599,0.007698729 2226,378.1217,239.10933,27.609863,73.594955,0.004042599 2226,2.522698,242.67732,36.84025,100.63823,0.0011958265 2226,124.37109,235.00777,75.96692,168.81075,0.0006920037 2226,617.1718,255.10785,21.974854,83.96341,0.000624822 2226,602.9607,166.65472,36.185974,188.79422,0.000591344 2226,1.3765577,209.59238,18.08643,75.0452,0.0001542592 2226,611.99255,316.22073,27.154114,145.28256,0.0001249729 2226,472.61594,144.33461,142.32492,259.43256,0.000113532646 2226,3.5932097,252.35696,54.44143,207.91837,6.187448e-05 2226,1.7263347,279.84317,20.509333,141.00967,3.18916e-05 2226,608.7719,437.4352,30.374756,67.489136,2.8392044e-05 2226,3.5636134,106.93193,56.529488,226.55104,1.8098512e-05 2226,585.2671,22.843985,53.447205,235.34843,1.5170552e-05 2226,569.66095,356.08508,69.48572,131.57025,1.4684239e-05 2226,0.7184546,378.83725,18.739418,116.447815,1.0657866e-05 2226,1.2529045,83.68653,20.34536,145.83414,6.2204385e-06 2226,595.6193,9.392028,43.19348,81.210106,4.6338937e-06 2226,0.75441164,55.093296,19.055046,81.81474,2.0556972e-06 2226,2.7451954,393.11288,55.87506,98.88962,1.317512e-06 2226,433.98346,8.142223,88.79913,79.32588,7.543198e-07 2226,1.7625635,19.004969,56.81473,104.49217,1.6468185e-07 2226,0.68837565,13.039362,15.07988,75.59146,8.7588255e-08 2226,0.76224124,8.153053,38.43658,46.30493,3.5525733e-08 2226,487.66278,7.4923925,45.685425,50.416008,1.7596646e-08 2226,421.275,6.9021683,48.00345,51.944668,4.404791e-09 2226,392.30392,5.761024,45.362274,48.4313,1.4520778e-09 2226,360.55704,3.6723666,47.491577,59.078922,9.46689e-10 2227,520.1008,226.92383,26.62024,59.99942,98.67866 2227,550.85425,232.50763,23.195618,55.636505,28.380463 2227,562.3433,235.24464,26.241943,59.415176,4.606027 2227,435.24924,273.8898,35.324738,93.99902,1.7724937 2227,386.79303,224.32999,26.972412,49.027283,0.09957823 2227,81.27585,119.50808,47.98314,104.56533,0.038702447 2227,381.099,216.92522,54.563995,111.094894,0.0034548321 2227,543.2542,218.7459,38.953186,121.02266,0.0027066797 2227,93.927765,133.3473,26.056519,48.873627,0.0023168158 2227,74.8317,278.60382,27.988274,53.276825,0.0015453026 2227,416.06046,226.98303,77.61194,161.36905,0.000912311 2227,617.4477,239.5601,21.698975,71.92705,0.0006528173 2227,583.17035,9.448014,55.69464,117.368576,0.00051821314 2227,601.27515,102.70448,36.84839,199.82268,0.00030504356 2227,611.979,262.67728,27.167664,140.64413,0.00016398286 2227,0.39015383,336.8262,21.885544,146.55453,0.00014978445 2227,509.50323,155.25563,123.7077,242.07802,0.00012582436 2227,1.279231,183.51271,19.771496,127.42534,5.8674395e-05 2227,605.73035,4.5150166,33.41632,62.18329,5.7362122e-05 2227,614.8148,53.089863,24.331848,92.45619,5.2219104e-05 2227,2.7940056,246.72113,55.480274,221.45108,4.767512e-05 2227,612.3478,374.39844,26.79889,123.00424,3.9827904e-05 2227,1.2912916,74.78618,20.278341,141.76247,1.7360575e-05 2227,0.7307723,262.28082,21.741087,127.5553,1.6427919e-05 2227,4.0725293,125.42473,56.84763,222.3661,1.1428542e-05 2227,0.66482913,440.2985,22.267975,62.47647,6.2335866e-06 2227,2.3791487,21.035824,55.7615,113.19766,7.230698e-07 2227,0.8446078,14.237712,14.385193,81.3508,2.6429515e-07 2227,506.14767,2.9172626,66.46036,56.545708,8.41753e-08 2227,474.68765,4.991198,48.95169,60.479183,7.27875e-08 2227,556.814,4.204686,47.503784,54.71563,3.3911824e-08 2227,434.3633,7.5259995,46.961853,49.804405,5.6684017e-09 2227,379.0279,4.540723,47.957886,57.36501,2.2238549e-09 2227,407.19424,4.209004,45.320465,53.971428,1.6968222e-09 2228,563.7441,194.84525,35.371582,68.68738,93.81814 2228,589.98285,194.46068,29.358704,65.0132,69.57965 2228,411.53195,191.10591,29.301758,75.7469,10.964625 2228,54.428486,57.079277,47.714306,108.32491,0.21034269 2228,427.0408,184.08852,21.744263,59.15912,0.057365216 2228,587.5983,141.98201,46.77771,204.62279,0.0036299615 2228,612.44006,161.4242,26.706604,107.99689,0.0028573854 2228,531.0607,312.88403,70.474915,147.64117,0.0015636046 2228,97.29678,149.83041,49.61583,150.82397,0.0014875361 2228,585.49634,308.6402,50.875,175.72012,0.0012734791 2228,1.1666512,129.34326,19.022018,88.23216,0.0008162421 2228,4.1230354,118.86887,57.401287,239.6539,0.00047851677 2228,399.09894,156.82321,64.512024,168.25983,0.0003951437 2228,0.8995947,304.81024,18.397776,87.40488,0.0003820311 2228,48.663185,114.372696,34.138702,96.83681,0.000332539 2228,614.35046,381.11682,24.796204,106.13965,0.00031593948 2228,451.5863,156.4925,43.54489,138.42282,0.00026057282 2228,0.91945845,238.91376,13.50701,53.413513,0.00024959544 2228,609.41895,248.18657,29.727722,154.11638,0.00023331291 2228,198.67737,150.31435,33.19774,68.805145,0.000102458514 2228,1.8362305,212.85388,29.755865,160.50143,7.720035e-05 2228,429.85217,120.88931,35.302826,86.25104,5.265532e-05 2228,3.168055,266.38846,57.061214,202.23947,4.8966547e-05 2228,2.1700993,63.422077,34.15766,181.56265,4.0106454e-05 2228,0.64201903,350.57053,19.783674,144.36511,3.9776052e-05 2228,6.4950523,23.803516,147.58762,290.40356,3.7677386e-05 2228,608.23047,1.8688347,30.916199,56.606186,1.1002813e-05 2228,610.139,27.292723,29.00769,168.69318,4.7937724e-06 2228,1.4214941,16.145157,58.554874,118.97464,2.8334298e-07 2228,0.85032105,10.001237,13.2818,89.12656,3.233427e-08 2228,366.5727,3.364857,45.625732,57.338646,1.0787722e-08 2228,135.30351,7.0609655,46.67775,51.687016,9.176661e-09 2228,161.73091,5.8429136,46.64818,54.991936,5.712247e-10 2228,189.55823,2.4440691,44.28073,54.900455,2.2190828e-10 2229,450.11362,211.99901,20.598572,56.21544,84.20762 2229,465.2676,212.84825,19.395782,52.697342,72.83149 2229,432.55338,210.8894,22.354248,52.103333,2.0408986 2229,589.3893,352.05588,46.44879,113.5509,0.7961859 2229,15.406593,83.092995,58.059227,141.56418,0.04501269 2229,497.91635,293.63293,54.908478,116.4263,0.017525125 2229,48.427933,91.194595,29.3415,65.68063,0.0074958936 2229,45.348568,192.18434,23.998943,45.608795,0.007365628 2229,618.16504,413.8148,20.981628,63.799957,0.0069523435 2229,440.848,200.66653,46.407745,86.41528,0.0067639323 2229,623.7019,386.44244,15.444763,53.71344,0.0016566729 2229,474.80298,213.33113,25.48413,46.512863,0.0011302176 2229,586.912,174.80498,51.100586,263.4568,0.0009217174 2229,1.6079899,139.44858,17.918957,79.42174,0.0008477267 2229,617.2556,215.14497,21.891052,77.97963,0.0005834429 2229,2.5309849,94.51713,33.900414,167.40027,0.00046686796 2229,91.07033,139.37354,27.873268,48.363663,0.00018371828 2229,604.4049,4.6899576,34.74176,58.872818,0.00015987411 2229,0.9783472,194.73451,18.566662,76.49431,0.00014520076 2229,332.76382,78.55892,37.210724,79.129036,0.00012903467 2229,190.57623,49.98393,45.74257,171.16048,9.119684e-05 2229,482.25714,260.33698,114.72046,208.10037,7.13325e-05 2229,610.8774,108.16335,28.269287,136.27744,6.894544e-05 2229,424.5575,161.36299,88.958374,187.67186,4.081418e-05 2229,513.312,282.23938,30.011719,66.51639,2.4719759e-05 2229,1.3821632,78.64797,18.977879,83.25115,1.572612e-05 2229,3.0513818,151.8021,58.233692,255.50851,1.02345675e-05 2229,610.1242,16.881855,29.02246,156.74144,8.6922955e-06 2229,0.7662818,348.0932,19.314768,128.90103,7.917324e-06 2229,0.76289225,240.80641,19.653622,137.85497,6.5609006e-06 2229,0.8462468,442.5748,21.830431,60.730225,2.508462e-06 2229,3.1611216,335.76862,57.287476,147.27243,7.8233205e-07 2229,2.1813657,13.326791,58.747967,131.46031,6.4014756e-07 2229,384.5981,4.119639,50.124695,57.31337,1.4171438e-07 2229,115.5617,4.587837,43.32061,47.33704,1.2440302e-07 2229,564.80884,7.168011,45.87213,52.321754,8.051328e-08 2229,0.9227531,10.961338,15.805512,86.588104,7.1689804e-08 2229,1.1322006,6.5492887,47.311028,50.873005,2.5774852e-08 2229,537.881,6.4394193,47.171875,52.57321,2.5516192e-08 2229,66.36824,4.9137955,45.04373,52.46052,1.0166884e-08 2229,511.02554,5.473158,47.582367,49.110336,9.05081e-09 2229,355.00305,1.7178972,44.714966,53.003662,4.35657e-10 2230,522.96356,214.41167,32.59442,78.53786,99.45991 2230,508.32068,220.20915,24.623535,55.553696,89.644615 2230,484.4414,217.18254,24.903503,53.076492,5.2286887 2230,367.09937,226.00563,25.699036,61.404526,2.0271626 2230,467.2724,218.232,25.409027,51.993286,0.08256017 2230,357.51578,220.80745,21.600586,45.64177,0.008956636 2230,159.30219,218.09991,35.96797,52.243164,0.0067046713 2230,492.21918,187.47667,67.68213,157.0042,0.006639309 2230,541.7153,214.94214,30.37793,68.62488,0.004559728 2230,24.107388,132.66377,24.444298,48.819733,0.003774492 2230,58.8141,131.49953,23.836643,53.619064,0.0037142755 2230,1.4311719,126.31745,33.534435,129.88016,0.00094824063 2230,1.9265544,188.07669,20.413462,52.165558,0.00045430148 2230,0.64070314,226.38033,18.845812,87.86369,0.0001869347 2230,617.43884,84.398636,21.707825,77.671936,0.00017149991 2230,611.7581,200.9572,27.38855,118.96721,0.0001310684 2230,611.30145,115.086334,27.845215,109.95917,9.0947055e-05 2230,615.8037,23.139835,23.342957,76.776215,8.942841e-05 2230,583.26587,80.95764,55.23578,233.56519,6.956582e-05 2230,612.3332,282.63736,26.813477,135.72562,4.164283e-05 2230,0.85269535,214.16014,33.104374,194.41368,3.1424184e-05 2230,609.76825,440.975,29.378418,64.14203,2.4338882e-05 2230,0.5869198,326.41574,20.132442,138.21432,7.853495e-06 2230,585.61365,393.7498,53.53302,100.11658,6.882969e-06 2230,4.5930667,27.959936,79.663956,139.75981,5.3154713e-06 2230,567.18835,23.78036,71.95831,142.48154,3.7044813e-06 2230,1.4755266,23.588842,20.51752,115.07351,3.454564e-06 2230,0.7253858,422.5126,16.856432,79.54648,2.8561335e-06 2230,522.995,62.734818,82.725525,240.6415,7.9004866e-07 2230,3.0200815,397.13486,56.222668,96.77182,5.0491116e-07 2230,142.93553,6.96875,42.411285,54.034683,1.6423863e-07 2230,398.71805,5.393392,47.35019,47.84137,1.2613224e-09 2231,541.2116,216.14844,26.410156,55.470062,98.013306 2231,596.52344,213.15881,38.600525,109.35077,55.4842 2231,526.2903,218.98909,24.413574,53.371597,28.644573 2231,454.57156,168.11469,44.9097,96.362,0.06982191 2231,619.7232,212.1557,19.423462,67.35657,0.03711874 2231,466.28574,162.04916,21.577728,49.76419,0.006253415 2231,520.99994,187.47546,61.803223,105.9288,0.0031045969 2231,611.0507,412.35867,28.095947,90.99899,0.0029231426 2231,569.39825,151.66135,68.881775,232.43549,0.0027958152 2231,587.7459,328.15228,50.701477,160.76361,0.00086328166 2231,616.11896,264.41187,23.02771,89.36047,0.0006915102 2231,156.43353,224.07841,26.845535,50.490097,0.00054609944 2231,0.35430503,263.5612,14.627469,56.964294,0.00051798334 2231,13.70277,58.550846,20.901604,48.193882,0.00043980122 2231,621.69135,130.83804,17.455322,53.11142,0.00030721945 2231,611.0998,121.267685,28.046875,134.83665,0.00022811044 2231,1.4053085,179.00526,19.996695,145.99596,0.00017707961 2231,434.19965,130.96443,40.74005,122.85274,0.00012214054 2231,431.29703,116.99185,102.94852,211.26907,9.966391e-05 2231,1.5461597,65.82947,19.792984,92.72275,6.768313e-05 2231,616.5643,67.03406,22.582397,82.13519,6.075746e-05 2231,3.8725781,133.60141,56.816162,228.08136,4.589443e-05 2231,370.31094,210.38432,81.90616,170.55235,4.572549e-05 2231,0.97654134,229.63521,33.797646,180.34383,3.6472233e-05 2231,615.6981,24.1185,23.448547,78.02306,1.9122037e-05 2231,7.428143,22.25279,35.508682,97.92969,1.5580661e-05 2231,1.2642831,114.73899,21.766567,114.75521,1.4636481e-05 2231,0.5940446,323.4644,19.98903,140.9115,9.6659705e-06 2231,0.77652425,422.7427,16.447763,79.34631,2.9867977e-06 2231,1.8574406,5.2161164,23.97722,65.52233,2.3151874e-06 2231,2.2756674,0.0,77.55729,215.00229,9.71554e-07 2231,3.0225472,396.07657,56.39119,97.58783,5.973481e-07 2231,17.150753,4.5986004,45.47378,59.486923,3.0570254e-07 2231,392.0716,4.3984785,45.83264,54.58052,8.875363e-09 2231,366.85056,2.365316,46.9028,54.408756,1.9060634e-10 2231,181.09978,0.9070378,44.062546,53.62244,1.09545414e-10 2231,343.00275,1.372811,43.106262,48.465744,4.0924684e-11 2232,4.5138235,173.314,42.660454,111.00821,0.03324971 2232,386.14697,213.13896,23.407288,48.87953,0.012434851 2232,620.28265,409.2006,18.864014,56.184692,0.00457925 2232,17.022419,261.7686,27.717789,63.12845,0.0026561322 2232,479.3085,200.33267,32.145355,66.92331,0.0022055013 2232,620.14105,358.75854,19.005615,67.282104,0.0022012377 2232,620.872,114.02612,18.274658,55.959305,0.0021857189 2232,607.12463,270.36288,32.022034,78.30124,0.0021011892 2232,610.61383,113.97253,28.532837,131.35995,0.0016597362 2232,1.1560328,202.15752,14.081845,58.817154,0.0010781811 2232,584.5431,289.67123,53.29535,193.89075,0.0008327443 2232,620.5282,160.25024,18.61847,56.49344,0.0007219522 2232,492.54825,259.06723,48.2175,154.26389,0.0007184213 2232,463.1196,242.70003,42.64572,140.57463,0.00045751236 2232,621.514,229.73392,17.63269,57.60721,0.00042739065 2232,1.1832463,194.06134,20.678848,150.78186,0.00041273725 2232,2.978397,180.38263,57.58258,275.0738,0.00036164085 2232,585.376,149.52908,52.917053,240.16101,0.00027122998 2232,608.6262,433.615,30.520447,70.17575,0.00020564208 2232,0.49240112,107.179,11.80617,46.69774,0.00020126613 2232,448.9324,212.6709,119.51694,226.3825,0.00010615156 2232,0.5760555,70.060326,20.909452,109.25051,0.00010225635 2232,1.3364738,138.58789,20.290894,98.52907,6.997049e-05 2232,0.5864315,294.38434,21.17566,118.15915,4.780287e-05 2232,609.8845,7.896006,29.262146,88.4226,4.4279375e-05 2232,1.2175146,22.057018,60.881165,262.48123,1.6058513e-05 2232,583.02655,24.158842,55.99762,192.73358,1.579029e-05 2232,0.7095825,363.04684,19.01873,129.90347,7.068835e-06 2232,1.1169401,3.9932945,54.903816,88.53005,2.6617267e-06 2232,110.82908,39.699245,43.599144,170.26654,1.4740244e-06 2232,3.0998144,394.6571,56.018963,97.695465,1.179997e-06 2232,0.8932764,5.988464,15.151342,95.817474,8.1214625e-07 2232,30.673412,3.7970476,46.678707,56.157078,4.6693089e-07 2232,423.59656,9.972858,83.58099,177.8709,1.8922724e-07 2232,80.86061,8.116598,44.59588,50.545578,4.605077e-08 2232,412.49384,2.077845,48.74341,60.480553,8.74093e-09 2232,141.86618,1.7772168,50.388382,64.286964,1.7007429e-09 2232,115.31287,5.803161,45.315735,55.271183,1.3449519e-09 2232,355.57916,0.1092806,43.76596,58.53525,2.9096262e-11 2232,174.87431,0.0,44.07036,53.487617,2.431107e-11 2233,129.23323,205.16194,31.763626,67.367905,0.07558326 2233,607.9664,208.45877,30.83966,71.01349,0.011942945 2233,524.62964,173.03867,34.750854,78.912766,0.0045256084 2233,619.187,96.43394,19.959656,55.633156,0.0023980064 2233,373.245,212.0449,33.545563,72.124466,0.0023798265 2233,585.1703,137.7788,52.805176,212.36034,0.0015024892 2233,622.02985,279.0934,17.116821,47.9787,0.00097024057 2233,610.20197,98.9852,28.944702,141.19838,0.0007273703 2233,392.24576,236.67389,24.06726,54.33142,0.0006655253 2233,617.4711,297.70435,21.675537,80.59125,0.0001891992 2233,510.66867,98.37641,75.71713,188.70978,0.0001385379 2233,607.65436,22.77985,31.49231,140.57971,0.000111526526 2233,0.93158,206.07225,13.734127,52.87117,0.00010330466 2233,287.8523,148.70143,36.244263,78.379196,0.00010110622 2233,617.7902,346.6433,21.356445,81.8114,8.720075e-05 2233,1.3583065,221.70105,28.467384,147.72745,6.874637e-05 2233,111.54576,134.74031,75.69479,164.3799,6.7967805e-05 2233,612.9417,378.64853,26.204956,118.948456,4.034191e-05 2233,1.0350986,103.69793,18.621891,71.56603,2.3908267e-05 2233,1.2667993,160.0324,19.995483,133.43901,2.0493362e-05 2233,2.9916766,146.53497,57.387947,213.60104,1.9790845e-05 2233,587.74164,295.65704,51.40503,186.80527,1.15989105e-05 2233,0.6911402,348.35297,19.58603,131.595,7.761613e-06 2233,0.8191642,441.4089,22.127613,62.825104,5.122975e-06 2233,1.5342969,5.954417,24.081463,64.445915,3.6072001e-06 2233,2.7589796,398.2564,56.213905,96.088745,1.0265061e-06 2233,1.8929477,8.505085,56.77571,131.46577,9.1190753e-07 2233,1.1349748,51.970543,30.461699,167.30505,9.0608364e-07 2233,578.7488,6.3005567,46.032715,50.220016,5.717466e-07 2233,135.34724,7.23222,63.194122,174.69218,3.292533e-07 2233,73.610405,2.912051,47.618713,66.3118,2.5247567e-07 2233,475.58646,7.452746,44.824677,45.34538,1.5809563e-07 2233,430.6138,4.8135676,68.73297,51.2816,6.8056025e-08 2233,46.903107,3.151797,46.80204,57.566387,3.8233907e-08 2233,383.75137,2.3010514,50.568756,59.125355,2.20718e-09 2233,100.33671,2.078327,47.34571,65.445206,9.724498e-10 2233,127.526695,0.88842124,49.615593,66.44169,8.996933e-10 2233,342.06857,3.0901613,43.235016,50.83182,2.4420296e-10 2233,181.97783,0.0,45.491867,55.01698,1.1967219e-10 2234,407.71524,206.39546,23.744476,51.397293,0.4147691 2234,402.58713,249.67928,24.951752,55.30916,0.034004964 2234,396.56128,215.83073,26.27893,65.86342,0.0056147845 2234,379.889,213.26685,24.08014,47.351868,0.0025654926 2234,24.354843,245.9152,40.799736,73.27208,0.0024930828 2234,79.90045,233.84013,25.122116,54.577072,0.0021944572 2234,553.73486,158.31296,78.98169,187.27185,0.0018060792 2234,617.67255,217.44481,21.474121,82.35115,0.0012714635 2234,0.25262207,264.31314,13.979362,62.49649,0.000976946 2234,131.0545,167.73303,41.569183,115.353546,0.0009628608 2234,587.42755,198.3652,36.694397,80.44388,0.00068990956 2234,434.5435,253.50847,34.66507,84.85301,0.00049850903 2234,421.19922,217.75972,24.259796,53.06575,0.00046000915 2234,601.7349,142.37268,36.6532,151.59302,0.00042176576 2234,585.6505,296.11563,51.809937,181.34985,0.00015611375 2234,47.771996,251.68288,21.914284,47.696396,0.00015181102 2234,1.1383756,204.49959,26.754044,140.50905,0.00013471254 2234,414.4574,194.04274,75.92038,170.61986,0.00011143149 2234,617.4587,98.88518,21.687988,76.944,8.850245e-05 2234,616.3174,377.43658,22.829285,83.04498,8.3568746e-05 2234,612.1082,278.9672,27.038452,116.00369,7.636107e-05 2234,609.94025,10.623445,29.20642,102.32022,6.1030114e-05 2234,1.1689681,189.35912,17.715479,72.24193,4.91461e-05 2234,2.936377,151.22299,58.155174,212.3591,3.1063708e-05 2234,0.2652718,289.14944,18.867558,84.26511,2.6701326e-05 2234,609.27374,434.96738,29.872925,69.18155,2.5195826e-05 2234,123.4668,14.934109,44.31894,136.64897,1.0654534e-05 2234,0.5730542,351.10947,20.85018,104.58362,5.777785e-06 2234,583.27856,16.602709,55.621765,220.00507,5.719105e-06 2234,1.104559,87.353455,19.15606,131.69919,3.8165526e-06 2234,82.51445,51.117516,122.4093,245.62463,3.3035305e-06 2234,0.737028,422.36224,17.00945,79.90485,2.463414e-06 2234,45.13829,3.4053288,48.57624,65.91684,1.8691007e-06 2234,2.8370736,332.93784,57.703865,153.77332,8.12622e-07 2234,35.43148,9.334525,81.25642,168.24895,7.347311e-07 2234,1.0869238,17.57742,19.624805,111.72307,6.69404e-07 2234,3.383698,16.603523,56.31467,118.00669,1.8091627e-07 2234,364.88168,10.791078,88.85208,73.857285,9.7736354e-08 2234,72.00904,2.67167,50.077667,64.34064,1.6836496e-09 2234,97.40897,1.8104037,71.330086,63.027924,8.588553e-10 2234,364.02115,3.6267629,46.467987,48.32117,2.2175765e-10 2234,174.52553,0.0,46.26805,57.308323,1.853716e-11 2235,556.2279,341.49292,50.975403,121.31796,0.93853164 2235,602.0841,143.03592,36.111145,96.44302,0.38454524 2235,428.39496,214.49144,22.113892,45.613235,0.14786673 2235,525.91675,255.3042,21.521362,50.94922,0.0118719125 2235,565.8717,375.4766,25.613342,69.58038,0.010231624 2235,620.30994,151.80917,18.836731,56.104523,0.009825781 2235,544.7202,310.19327,37.175415,103.33386,0.0074087395 2235,583.2185,303.83627,52.93091,178.27536,0.001430182 2235,118.4852,157.69661,42.985077,142.73323,0.0013260368 2235,567.6987,343.9146,19.816223,45.399323,0.0010252097 2235,622.3849,286.2999,16.76178,50.950165,0.0010058371 2235,520.9372,266.6143,98.185974,214.32037,0.0007801338 2235,0.87872154,201.99667,14.386722,55.220978,0.00045625574 2235,587.15906,115.98002,51.98761,274.2999,0.00034066327 2235,610.9464,386.95404,28.200256,109.273926,0.00033219287 2235,1.6265397,173.05962,20.226889,131.77812,0.00026141014 2235,610.7966,243.88892,28.350098,144.77017,0.0002264445 2235,616.9047,93.42479,22.241943,95.00577,0.00012780653 2235,587.268,387.65115,24.925781,61.014862,0.00010261908 2235,1.0783634,256.9097,18.541773,79.20279,4.4655357e-05 2235,1.2273031,8.401471,61.33175,128.24507,3.336027e-05 2235,608.6122,2.7502148,30.534485,119.541405,3.0998068e-05 2235,78.32226,138.94716,120.776436,209.90565,3.029115e-05 2235,3.2208154,141.83734,57.52889,207.25516,2.8358165e-05 2235,1.3104297,220.5886,33.11419,174.11526,2.0746602e-05 2235,1.6214803,77.62918,20.140877,151.03798,1.1997587e-05 2235,299.4926,72.30788,44.293915,151.45505,1.0859951e-05 2235,0.5811841,304.6326,20.000044,140.10278,8.278314e-06 2235,379.4276,152.99022,28.419525,59.664474,7.1279196e-06 2235,0.7329427,386.28525,19.357187,113.187256,4.258192e-06 2235,583.79816,0.0,55.34851,227.18068,4.1575836e-06 2235,55.688915,42.377567,87.30487,244.54126,2.246839e-06 2235,1.3434807,10.74531,17.161432,84.235344,6.8109824e-07 2235,0.89915043,3.8667595,41.81799,53.592213,4.8984737e-07 2235,2.939411,397.61182,56.315174,97.26907,4.7063256e-07 2235,407.0749,6.655658,79.84497,175.20692,1.5193704e-07 2235,487.87408,11.397354,85.851746,72.75298,1.392796e-07 2235,366.6899,6.07487,90.33832,76.80709,6.974784e-08 2235,426.04938,2.2142415,47.717316,63.413406,4.246395e-08 2235,29.205866,2.290355,48.272026,64.71523,3.7928622e-08 2235,476.57828,5.346211,47.279816,57.41746,8.811502e-09 2235,86.030426,2.1732585,48.096375,60.680557,5.7139493e-09 2235,357.69788,4.1370673,41.363495,54.8802,6.294268e-10 2235,148.58989,0.45751303,47.64714,66.179665,2.2864157e-11 2236,414.41544,209.86206,22.939209,47.558685,0.27846062 2236,561.7109,288.16382,75.51599,186.56009,0.019023638 2236,481.60995,206.71928,34.93155,80.86229,0.0018072214 2236,327.18408,221.16318,26.53775,52.762024,0.0017189214 2236,608.161,362.605,30.898682,135.96085,0.0010626039 2236,609.5617,206.61964,29.58496,148.0655,0.00046254523 2236,622.3961,69.20898,16.75055,52.43743,0.00045364644 2236,62.48676,240.19975,40.558636,87.40312,0.0004266877 2236,1.1390185,208.30634,18.13533,76.49878,0.0003582289 2236,615.93445,291.99283,23.21222,90.64407,0.00012354765 2236,610.4488,70.07473,28.697876,135.29947,7.652656e-05 2236,0.89507,250.99174,19.825388,134.9546,5.560873e-05 2236,0.674622,301.42978,13.738024,50.29001,4.8823484e-05 2236,1.3010515,132.97693,17.93062,79.1573,2.855682e-05 2236,582.257,19.151173,55.88977,96.90285,2.7841932e-05 2236,1.9729639,169.48459,34.73808,172.17953,2.7146083e-05 2236,3.7461085,75.33012,59.915592,231.00027,1.9963232e-05 2236,3.5491195,228.44391,56.802975,229.0488,1.1949855e-05 2236,0.6457772,337.6337,19.769604,135.00241,1.1067093e-05 2236,583.167,42.60418,55.97461,298.18854,1.1023799e-05 2236,606.56024,11.111605,32.586426,49.763237,9.1630845e-06 2236,2.3410823,16.342758,41.148853,74.22821,5.6116546e-06 2236,30.210218,46.208492,85.040955,227.47354,3.0009708e-06 2236,0.8228711,421.78345,16.775517,80.16464,2.7477172e-06 2236,348.593,125.524284,37.478485,65.640755,1.8417384e-06 2236,1.6657902,51.30286,30.518024,164.36421,1.3645038e-06 2236,368.80542,5.0616407,43.08304,87.88253,1.2582439e-06 2236,4.3943033,19.813353,82.315186,148.61969,8.6398614e-07 2236,390.45816,10.327995,84.96655,150.67868,4.989812e-07 2236,3.1239438,395.91077,56.10959,97.440186,4.6442966e-07 2236,439.04413,12.424083,77.63977,150.06673,3.6693189e-07 2236,410.5039,2.8894956,67.6543,61.742615,2.2515738e-07 2236,19.16945,7.386356,43.97442,53.303204,7.836219e-08 2236,577.00055,10.928872,48.11902,47.19126,4.5186432e-08 2236,482.42325,4.8892317,44.31241,54.138523,1.7749143e-08 2236,525.7012,6.886937,44.853027,51.729782,1.2908504e-08 2236,551.8982,9.237463,46.899353,45.831917,6.357349e-09 2236,106.35125,6.7135954,47.7331,52.875168,5.1306825e-09 2236,343.62625,3.150827,41.739014,55.622684,4.681057e-09 2236,46.139244,7.974201,46.20157,52.461834,4.101279e-09 2236,73.351944,7.7841263,48.544533,54.06455,4.6866466e-10 2236,155.65393,6.280972,43.661133,49.18754,1.2900096e-10 2237,367.8179,218.04695,26.594788,72.68373,1.1341791 2237,387.54483,219.44626,24.43689,59.664825,0.65121377 2237,400.72495,217.54073,23.400665,54.0063,0.18950847 2237,505.5338,263.5092,27.794556,52.03073,0.0042530573 2237,606.6356,109.27675,32.511047,154.5468,0.0020364407 2237,48.32105,200.39325,41.54764,80.88791,0.0008787412 2237,573.735,99.38649,40.261047,73.52969,0.0008648315 2237,1.027002,231.70438,14.325204,55.271057,0.0006355785 2237,616.3162,211.44432,22.830444,81.51097,0.00031045458 2237,311.26648,223.56253,26.069763,57.934998,0.00021965848 2237,616.63586,280.01453,22.510803,78.27432,0.00011164316 2237,1.4775977,170.74603,29.410173,142.31662,0.00010542056 2237,586.7147,202.45644,52.09784,231.2288,0.000103648475 2237,612.21564,302.1002,26.93103,146.57486,7.265601e-05 2237,0.6003589,250.44899,18.905651,82.60527,6.7727044e-05 2237,324.8884,129.45433,27.654114,58.14174,6.4246575e-05 2237,1.3683667,104.086266,19.890635,144.82584,3.3797634e-05 2237,566.5535,29.26509,70.976074,135.29277,2.5445655e-05 2237,256.44348,98.67274,29.939117,62.78344,2.3706516e-05 2237,609.8181,438.68027,29.328552,66.55209,1.9781184e-05 2237,248.90477,61.2771,51.087723,147.56198,1.6170483e-05 2237,356.6935,167.3717,99.49078,199.77457,1.4484085e-05 2237,2.6231527,196.5583,57.709217,219.07161,8.69757e-06 2237,0.659974,380.58646,19.109432,117.223206,7.4236345e-06 2237,0.5695068,294.50775,19.774889,137.2677,7.3361116e-06 2237,2.7924106,20.88902,59.365704,103.56391,7.060939e-06 2237,585.69556,391.52908,53.45111,102.31238,5.005027e-06 2237,576.26526,6.9811735,62.064392,49.420975,3.746148e-06 2237,1.2115715,47.643513,18.779806,78.43739,2.1102992e-06 2237,3.067741,345.2598,57.50967,139.89929,7.778831e-07 2237,335.57953,2.4702408,81.31818,73.44557,2.735078e-07 2237,424.46255,12.660183,75.74396,156.09857,2.6890666e-07 2237,1.6599072,16.319933,29.853,64.94934,1.9505752e-07 2237,421.56073,2.476875,48.438904,61.204884,1.5279844e-07 2237,24.652836,11.440296,87.194,69.82077,4.9389815e-08 2237,447.52856,3.9722593,47.104523,56.371822,3.7176292e-08 2237,395.73398,3.6953516,48.611023,47.379787,2.8940558e-08 2237,545.01306,7.441006,46.87445,52.462513,2.4055524e-08 2237,321.72708,1.7306495,42.993073,55.23391,5.628519e-09 2237,518.52893,4.3232555,44.69507,55.016693,9.967153e-10 2237,72.914055,6.362969,44.3142,46.019325,1.7783654e-10 2237,128.04703,5.4681935,42.29834,45.44988,8.646406e-11 2237,100.32282,4.4864273,43.248695,52.625717,3.7649684e-12 2238,344.2324,215.78822,35.16208,93.18193,0.8043243 2238,360.48972,218.4191,21.251648,49.31299,0.2999533 2238,331.49335,211.29942,23.724487,48.830856,0.1842963 2238,13.206415,217.13951,41.752678,90.331406,0.044323444 2238,122.71167,209.04825,53.51149,109.90198,0.0078568 2238,517.80347,278.9345,21.182861,45.317932,0.0051371474 2238,505.4587,279.1518,20.663727,46.31888,0.0011846437 2238,621.2336,292.46515,17.913086,54.47229,0.0010923559 2238,615.25916,216.8227,23.887512,96.100586,0.0009487571 2238,608.70654,105.62034,30.440125,148.47824,0.000573867 2238,336.3817,174.47519,74.25064,165.19403,0.0003566057 2238,614.2671,10.600648,24.879578,85.604225,0.000108940745 2238,600.54565,236.33855,38.601013,187.27797,9.041882e-05 2238,212.73381,75.8083,27.882706,60.27877,8.492201e-05 2238,0.99067384,215.25444,18.20626,75.97475,6.43445e-05 2238,0.8890389,249.51491,18.603142,128.6627,4.0928462e-05 2238,612.70294,368.30908,26.443726,128.3675,3.6941947e-05 2238,2.0920134,174.94359,35.061634,165.53831,3.405836e-05 2238,565.627,27.07957,71.96106,134.93018,3.073421e-05 2238,0.9958749,60.16406,18.465403,81.27315,1.6783753e-05 2238,0.6263184,324.8326,18.337107,131.83838,7.5558305e-06 2238,0.8791504,107.83865,20.240902,151.94394,6.6402017e-06 2238,485.08115,100.844826,35.28134,74.13651,4.0493537e-06 2238,0.7818783,423.7883,16.759956,78.33151,3.6936867e-06 2238,3.08563,315.05878,57.073215,164.55301,1.4310353e-06 2238,1.4774854,12.773819,37.333813,74.71276,1.098021e-06 2238,3.0506072,35.70728,59.937233,285.1816,9.679138e-07 2238,31.839455,12.85179,53.01467,116.67233,5.835406e-07 2238,197.0727,44.00174,48.81955,141.10866,4.7662726e-07 2238,389.1496,3.747601,46.994965,57.013252,9.766442e-08 2238,302.8918,0.0,68.31326,50.078876,6.03714e-08 2238,351.73785,6.7354007,46.69046,47.18619,2.8333794e-08 2238,427.69144,3.9574625,44.801636,49.726147,2.4843e-08 2238,550.8323,6.633306,47.02185,51.771748,1.5814623e-08 2238,525.9852,4.9865823,43.422913,55.326946,1.5166567e-08 2238,64.03045,2.0513737,46.222015,56.158447,3.616395e-11 2239,338.87106,208.59763,36.863617,111.23361,2.0388951 2239,368.27042,219.98997,22.803192,50.932358,0.05611789 2239,525.8154,277.01724,39.34314,72.68573,0.018027002 2239,318.65778,209.56755,23.401123,49.91765,0.01383357 2239,589.91205,97.23489,30.607605,46.662018,0.0024332476 2239,549.2484,283.94818,25.784302,56.25061,0.0014566409 2239,70.65671,211.73946,40.20053,92.15529,0.0008624645 2239,621.9325,227.79933,17.214172,52.746872,0.00058365054 2239,285.74286,117.442024,29.170288,59.456017,0.00042022084 2239,173.45761,53.78168,36.575806,74.53227,0.00035110826 2239,609.7408,85.23214,29.405884,144.19754,0.00026580287 2239,247.81047,217.63362,36.990555,78.99718,0.00025038837 2239,1.6888087,268.9633,38.57857,111.54788,0.00021517956 2239,323.53485,167.59172,91.91528,194.9582,0.0001153423 2239,2.024759,186.60678,20.534883,108.18173,0.00010926517 2239,610.3528,190.11133,28.793884,130.5599,0.00010863013 2239,50.762646,195.41933,84.56035,158.6231,7.820368e-05 2239,1.0098698,321.67813,18.561728,80.87247,7.088087e-05 2239,59.05937,248.13396,40.569294,94.149216,5.815902e-05 2239,610.0832,15.686214,29.063477,113.32733,5.6386376e-05 2239,1.4026693,11.446394,67.1402,115.135765,4.999084e-05 2239,612.96,343.23825,26.186646,107.86948,4.1768908e-05 2239,621.4494,31.798874,17.697266,51.32505,3.8249993e-05 2239,1.2415967,249.321,19.537935,85.95772,3.7188816e-05 2239,3.4614713,56.744415,60.275482,277.50168,3.329438e-05 2239,298.63986,120.71534,43.79132,87.33001,2.5473235e-05 2239,587.9346,238.24037,51.212097,230.66026,2.0063742e-05 2239,609.6742,440.74527,29.472473,62.982758,1.8185641e-05 2239,2.2438688,83.70485,28.930447,169.3206,1.569819e-05 2239,0.683252,378.42026,19.159142,118.52948,8.339488e-06 2239,2.4010367,314.22803,56.79049,166.79059,7.4294426e-06 2239,585.50244,394.13763,53.644226,100.23309,5.050771e-06 2239,491.83487,87.45812,35.61197,75.85444,3.1729353e-06 2239,1.9164397,16.08854,22.32931,91.67091,5.890211e-07 2239,519.4449,6.8431005,42.30847,53.689205,1.2521718e-07 2239,381.42154,1.3597543,61.99002,51.30299,9.2445305e-08 2239,168.39685,12.408125,82.016495,169.17328,7.793975e-08 2239,544.497,8.048727,44.37683,48.367043,1.7899955e-08 2239,23.41446,1.9636362,50.512466,63.92809,2.4526363e-09 2239,1.5398455,1.8028939,21.168255,47.128708,2.1699127e-09 2239,189.75136,2.9529445,43.91742,46.018066,1.2944962e-09 2240,405.22913,214.24113,23.001373,49.98137,82.93171 2240,45.45567,190.78674,32.284756,77.31772,1.498634 2240,24.501604,190.3099,52.45616,160.8591,0.44389373 2240,416.96817,213.70003,43.4021,142.50179,0.10242205 2240,101.58224,233.36707,23.244469,48.578613,0.014354169 2240,396.76886,197.09927,41.568848,100.35272,0.0073729074 2240,379.48636,214.00288,23.09909,45.950363,0.0014415804 2240,308.27197,222.63837,37.467255,86.76926,0.00071331806 2240,232.75835,52.645554,29.143906,60.102707,0.00040046775 2240,339.45255,97.44221,37.880524,80.72373,0.0003215833 2240,1.02521,218.94203,18.72249,79.93666,0.0002349547 2240,1.6727133,209.69626,35.321003,188.39673,0.00018674512 2240,611.75745,195.67203,27.389221,119.99631,0.00014098782 2240,616.7791,75.28026,22.367554,81.75957,0.00012753476 2240,1.4916073,306.62018,20.24419,140.0281,7.454801e-05 2240,612.1921,314.06152,26.95459,141.37793,6.897188e-05 2240,584.0712,10.608718,54.81024,112.16618,5.650707e-05 2240,586.4281,198.58655,52.31311,211.30054,3.919394e-05 2240,601.66547,91.33932,37.19159,186.68124,3.6138466e-05 2240,609.6537,439.16647,29.492981,65.16635,2.3287845e-05 2240,3.8617058,330.4088,78.248276,150.27832,2.2664017e-05 2240,379.4565,127.71362,136.49527,242.23737,1.674733e-05 2240,586.0235,391.12497,53.12317,103.08853,8.449483e-06 2240,1.1551937,115.870964,29.352163,166.17038,7.55351e-06 2240,0.9559961,378.877,28.907768,114.92737,6.0263887e-06 2240,300.63022,24.116621,82.65521,178.36531,7.586817e-07 2240,2.645954,14.052995,58.553356,107.01834,4.3625548e-07 2240,1.1499219,32.862267,21.183329,149.96622,3.837778e-07 2240,216.026,19.88239,51.4299,128.29004,3.5308773e-07 2240,1.3578182,7.476338,16.891558,72.34068,2.3163477e-07 2240,470.23898,3.1169662,44.075592,46.82628,7.490477e-08 2240,270.3918,7.234203,44.63629,46.618916,1.9393413e-08 2240,217.44621,3.7279656,62.986435,49.867146,1.3462744e-08 2240,4.9507847,3.0405273,65.84276,48.76608,1.2181635e-08 2240,497.44492,3.3514583,43.716217,47.147816,1.1483601e-08 2240,66.16178,4.495186,49.809456,58.55999,6.1582877e-09 2240,99.19605,1.8267009,48.57807,48.035316,1.8444132e-10 2241,479.7171,214.06285,22.075195,51.924393,91.960785 2241,464.82812,214.2095,22.727966,52.26828,83.450005 2241,367.47406,227.32167,43.721893,104.04469,0.018316038 2241,460.59512,204.1674,45.260162,90.160995,0.016127277 2241,500.75928,228.74388,32.598206,81.042404,0.013494567 2241,77.7635,194.4901,29.906517,63.928604,0.0055025425 2241,393.22256,101.631035,29.364868,70.97146,0.004834527 2241,29.120518,252.05646,38.86144,73.174866,0.0005348714 2241,405.7947,88.20017,40.524048,89.85888,0.00049495755 2241,611.595,373.7091,27.551697,115.61835,0.00044920016 2241,13.215033,268.92886,29.396536,65.19229,0.00044817742 2241,611.3896,154.59569,27.75708,119.93068,0.0003658005 2241,497.0222,161.5811,71.87045,172.96422,0.0003503373 2241,587.0553,220.39604,50.30011,237.99168,0.00023473811 2241,0.65660644,294.03494,19.60805,89.5314,0.00018411854 2241,415.0957,219.79456,24.99112,48.103302,0.00015723497 2241,621.26447,28.647839,17.882202,53.258907,0.00010881884 2241,2.0179322,167.85867,32.72697,189.74255,9.327016e-05 2241,0.5655575,136.91336,18.857763,85.93039,8.961957e-05 2241,415.8011,129.20888,23.033936,45.807434,6.611399e-05 2241,616.9633,250.48373,22.18335,83.85449,6.274514e-05 2241,374.47464,59.845764,63.176086,148.04837,5.7082223e-05 2241,609.53046,8.93433,29.61621,121.66385,5.2649695e-05 2241,264.77176,34.557465,34.644287,69.84327,4.0028426e-05 2241,344.8661,187.98094,106.63568,201.05348,3.6234538e-05 2241,0.8997005,290.9403,32.22483,186.75125,3.3530465e-05 2241,585.9367,44.82323,52.74115,227.49178,3.304161e-05 2241,616.8631,88.30924,22.28357,86.34191,2.6993564e-05 2241,1.4732674,205.73138,18.6081,86.58267,8.695712e-06 2241,0.65063316,382.58716,19.040699,113.543,7.2998214e-06 2241,5.0070705,352.54486,78.7685,131.1088,1.1013055e-06 2241,2.4461849,13.903737,58.067806,115.555214,3.6437305e-07 2241,0.7866732,10.734496,14.621937,80.51222,3.374975e-07 2241,0.82814616,35.39588,20.807764,153.20587,1.6190559e-07 2241,79.36755,6.114541,48.70398,55.516945,5.77149e-08 2241,321.8862,7.0779724,42.418457,51.758553,3.2579855e-08 2241,265.84436,6.432085,50.582184,49.231377,3.17318e-08 2241,512.1029,6.596006,44.877747,48.991726,1.7958946e-08 2241,537.4982,6.2585335,45.14691,48.029217,1.6843089e-08 2241,56.79467,3.6282423,44.16439,49.84139,1.1871701e-08 2241,346.10257,6.5313706,45.29187,53.498558,1.0002849e-08 2241,114.13042,2.8130796,49.809113,62.096222,2.5215445e-09 2241,233.74059,2.525638,43.530838,45.51694,1.0916834e-09 2242,557.5611,204.98117,24.033447,53.379395,99.04125 2242,541.746,210.45798,22.999878,48.73636,91.96435 2242,127.64675,249.75452,23.298576,50.43631,0.015502035 2242,531.3801,198.45598,45.069397,86.461685,0.0066917688 2242,454.39896,75.99124,36.656982,78.46185,0.002086869 2242,183.80067,225.08983,25.610794,47.817398,0.002057386 2242,621.443,220.3011,17.703674,53.856583,0.0019064229 2242,348.2625,173.06087,20.23706,45.65732,0.0017102112 2242,449.5762,217.23045,24.767975,53.48326,0.0011286483 2242,442.6219,224.94073,79.27197,158.5574,0.0005631782 2242,463.35773,205.10548,32.929108,62.29457,0.0003953103 2242,611.1345,200.75987,28.012146,124.73689,0.00026539076 2242,621.43207,168.49466,17.7146,58.986755,0.00021214211 2242,466.70917,89.623085,44.197266,109.40424,0.00020587206 2242,529.38495,166.4581,82.10596,169.34644,0.00013797187 2242,601.9381,242.98882,37.208557,199.08946,9.334758e-05 2242,0.43979087,86.9222,19.962059,111.24607,6.597669e-05 2242,79.48339,18.67222,39.795036,86.309296,5.698046e-05 2242,605.9326,5.600612,33.19055,52.65038,4.910787e-05 2242,585.1164,101.926994,53.95941,218.78247,4.6175886e-05 2242,612.4586,370.2926,26.68805,125.806946,4.400587e-05 2242,1.1742781,203.3018,20.403234,134.5714,4.029865e-05 2242,616.61426,117.07442,22.53241,89.24277,3.2246608e-05 2242,616.7179,36.420174,22.428772,82.86246,1.7797372e-05 2242,3.5260336,151.31653,58.933105,213.966,1.2666831e-05 2242,0.7180469,333.3052,19.171997,133.19043,1.2537705e-05 2242,585.2554,11.841169,53.861145,94.189865,1.2189008e-05 2242,451.13007,53.06661,79.35156,219.5942,6.0855746e-06 2242,0.77198166,422.76508,15.5985,77.70868,5.127844e-06 2242,3.2752101,307.33044,56.187668,169.0828,1.2159874e-06 2242,63.50559,5.437526,82.410034,155.89632,5.9097243e-07 2242,1.9531446,19.787016,57.53169,107.968895,2.7451858e-07 2242,458.30984,8.527321,86.6564,78.00321,2.2714504e-07 2242,0.76237875,13.6641865,15.11561,78.912994,1.477283e-07 2242,1.1684717,7.765749,39.648266,51.066566,2.2270056e-08 2242,515.85205,8.241213,46.392212,48.099625,1.0626066e-08 2242,76.342,3.2090073,70.76975,57.54662,9.052519e-09 2242,138.42828,0.0,70.28726,65.358505,1.981895e-09 2242,452.3586,3.1925147,42.65271,55.082493,1.3225859e-09 2242,182.32,0.0,46.90518,47.301964,2.946126e-11 2243,599.5387,218.01082,24.29303,52.009995,46.33913 2243,582.23944,221.37857,24.217712,54.963257,35.12713 2243,490.91522,211.62833,25.150818,54.205933,0.10106721 2243,580.31396,203.01218,53.62683,101.33365,0.051021688 2243,156.90854,217.86942,34.872513,73.2785,0.009234553 2243,622.9472,238.41399,16.199463,60.964523,0.002716058 2243,1.5150846,254.03452,37.126118,102.45218,0.002699256 2243,0.6690715,306.99484,14.5136175,64.69104,0.00073770236 2243,463.2911,87.99977,35.490845,91.49271,0.0005293807 2243,601.4119,234.43527,37.442078,224.06891,0.00040154392 2243,618.64197,380.70227,20.5047,62.423615,0.0002861657 2243,550.30054,134.4991,85.0863,260.51685,0.00026195718 2243,3.0683627,173.11009,57.095837,213.64006,0.00023789662 2243,1.8724089,230.098,18.596004,82.5703,0.00023554542 2243,612.02386,134.84816,27.122803,148.99715,0.0001480921 2243,616.9291,71.027794,22.21759,77.85697,0.00013935548 2243,427.07266,161.38193,26.938446,55.991623,0.00011663684 2243,612.81323,400.83066,26.333435,103.19577,0.00011018854 2243,451.59247,71.16119,75.77887,208.04245,9.318267e-05 2243,1.1747706,286.10968,33.99092,195.7042,6.54318e-05 2243,2.1862924,9.345645,61.69978,112.31647,5.4754008e-05 2243,583.5368,5.7693167,55.609863,113.38746,3.350911e-05 2243,0.5226689,103.752594,13.792696,49.77536,2.2439015e-05 2243,0.8661247,167.53186,18.286678,75.497025,1.1096429e-05 2243,573.2865,356.0944,65.86017,132.38715,1.02951435e-05 2243,1.0966569,61.834682,20.283367,138.82266,8.3872e-06 2243,1.4369987,122.78386,28.67619,168.66225,5.1556176e-06 2243,399.85077,37.030327,88.00003,226.55344,2.2077559e-06 2243,1.2714225,13.638711,14.294014,74.18771,2.0880618e-06 2243,2.8508756,427.52875,52.8774,71.078674,2.5325895e-07 2243,120.43208,0.0,79.969055,78.88839,5.0748294e-08 2243,464.5908,9.184857,86.81778,70.96688,4.658916e-08 2243,522.6697,9.228386,46.36664,50.777702,4.0819735e-08 2243,1.7816,4.353262,38.715393,57.689827,2.9321829e-08 2243,35.620163,4.5163217,48.69874,57.405994,1.9273493e-08 2243,71.87649,0.74931645,46.873734,64.332794,1.1476988e-08 2243,100.034225,0.077565104,46.50659,64.32131,1.5444616e-09 2243,458.9546,3.5314324,42.557495,55.25396,1.3635519e-09 2244,93.12213,206.756,27.107002,57.983322,0.17344639 2244,468.28824,201.6915,39.736816,82.29785,0.006743651 2244,57.789585,219.96527,38.711613,83.810486,0.004696752 2244,620.74585,216.33841,18.400818,58.678772,0.0023124276 2244,1.1069735,238.11967,19.678402,89.77144,0.0019259611 2244,598.13275,101.94839,39.839417,195.7012,0.0008815977 2244,620.9106,77.635155,18.236084,54.89892,0.00071884965 2244,466.00742,224.29997,20.238953,46.236862,0.0007053279 2244,551.6222,246.12828,27.601868,63.497665,0.00068001857 2244,304.5805,186.84138,23.647339,53.041794,0.00061223167 2244,2.1468735,187.39145,42.83297,144.28891,0.00057786505 2244,620.71027,120.88242,18.436401,56.134605,0.00024283295 2244,422.58344,148.95079,79.65396,166.03279,0.00021630622 2244,22.645027,200.12363,92.82604,164.41705,0.0001880535 2244,618.1071,389.39594,21.03955,78.0058,0.00016462029 2244,612.2094,233.86505,26.937256,142.08704,0.00010814049 2244,529.8283,185.15536,82.94794,169.63406,0.00010664094 2244,564.4367,241.31651,38.684814,86.49449,9.907673e-05 2244,0.6650399,273.91653,20.135908,144.68115,4.560342e-05 2244,609.2493,38.64093,29.897339,159.05629,3.2457952e-05 2244,443.85126,122.64897,136.2619,226.14473,3.1688713e-05 2244,0.0,3.4859636,46.167957,62.504898,2.4657553e-05 2244,2.6729705,233.76045,57.35554,226.00618,2.0829868e-05 2244,609.8237,441.40158,29.322937,62.302856,1.9387262e-05 2244,1.4958041,94.722824,29.32635,180.69505,1.8917615e-05 2244,586.3592,257.75226,52.787476,217.29443,1.6037455e-05 2244,394.45593,146.60292,24.87201,57.50334,1.386214e-05 2244,0.80855143,112.29909,18.727728,82.03726,1.0250313e-05 2244,595.5486,3.8187435,43.598083,87.25516,9.535681e-06 2244,0.60180664,380.3834,19.31389,116.864746,7.0466776e-06 2244,0.73786783,7.8952084,16.318792,86.18748,5.7658513e-06 2244,1.0608602,69.90251,18.28945,75.64685,4.468816e-06 2244,2.7697055,395.54205,56.218464,97.208466,7.988706e-07 2244,1.4895574,0.0,62.52779,237.88956,7.4018016e-07 2244,46.002007,1.02278,45.973183,61.957832,3.018419e-08 2244,538.0809,6.0032635,45.507874,50.579735,1.1112851e-08 2244,31.831837,0.0,91.693436,187.79399,5.505574e-09 2244,511.34705,4.757414,45.498657,47.650475,3.190292e-09 2244,463.27856,4.364131,63.431152,50.32557,2.6137923e-09 2244,67.98981,3.5456316,64.42229,52.298294,7.93642e-10 2245,521.6725,214.99167,25.28125,53.648926,99.44538 2245,505.33334,214.85103,24.401215,51.77507,98.97884 2245,417.4237,225.69571,28.183075,49.59668,0.32414788 2245,8.1224985,201.32697,34.86021,82.77472,0.1380851 2245,479.82346,59.059402,39.16635,98.73718,0.12593588 2245,471.96094,69.238655,26.059113,49.273666,0.029527955 2245,210.8721,219.03339,20.294907,46.450806,0.0061438447 2245,1.9001042,189.13835,19.27551,83.479965,0.0030312757 2245,486.71536,183.96414,61.549164,102.72778,0.0022727922 2245,299.18875,185.2551,21.341553,49.81752,0.0022390403 2245,358.5223,222.69266,27.068024,62.60724,0.0009234684 2245,4.1563444,145.99472,67.98634,168.33951,0.00069581805 2245,0.9956852,244.4442,13.833296,50.072006,0.00031944428 2245,610.8916,145.77849,28.255066,142.46657,0.0003155192 2245,463.03235,56.886395,79.59259,202.65648,7.943839e-05 2245,611.2486,232.20256,27.898071,136.59627,6.205957e-05 2245,612.19653,352.61505,26.950134,134.41428,5.2860047e-05 2245,0.88297856,78.89266,18.616657,74.19718,5.1086612e-05 2245,490.73648,147.6989,97.592255,202.82289,4.852052e-05 2245,1.674091,224.48418,28.071215,155.90489,3.9883624e-05 2245,616.8339,113.323235,22.312744,81.34048,3.7598347e-05 2245,609.5075,441.01434,29.63916,63.01709,2.2067841e-05 2245,584.58966,51.887047,54.249268,251.31711,2.11616e-05 2245,608.8792,7.652409,30.267456,138.37445,1.6158088e-05 2245,0.5735767,338.38098,18.951084,131.75388,1.2743163e-05 2245,0.6210433,420.05814,17.092232,81.707825,4.452599e-06 2245,3.0127263,328.52197,57.300915,151.87814,1.1149464e-06 2245,1.0977849,41.66655,30.03829,179.36794,1.00897e-06 2245,18.05291,0.0,66.97432,138.99203,2.900036e-07 2245,0.72201496,3.0583105,41.4661,99.35938,2.7567381e-08 2245,0.7979395,0.5674886,21.395077,47.528843,5.314865e-09 2245,509.54047,6.896651,46.17816,49.43512,5.0194746e-09 2245,14.070883,0.0,49.33985,55.544937,4.6543303e-09 2245,373.02045,2.5320525,42.841736,47.18104,2.6813147e-09 2245,486.7874,4.705026,42.078247,57.139324,1.86395e-09 2245,39.456055,1.3095833,50.83094,62.178642,8.8176844e-10 2245,72.357666,4.8833447,47.09343,46.244286,2.4209698e-10 2246,538.0702,213.3953,22.278809,48.28195,89.090256 2246,525.12024,216.51944,22.927673,45.038208,16.996979 2246,588.7656,215.5756,26.84491,53.95781,15.500005 2246,571.79407,215.34743,23.811829,53.46077,9.441783 2246,564.9788,203.2438,41.183044,115.72366,0.044326957 2246,523.24426,186.2831,42.172546,111.68086,0.028268505 2246,184.84572,227.89032,21.810272,52.46588,0.009929428 2246,1.2820094,190.02039,19.358173,78.291534,0.0034442332 2246,536.09595,46.071754,30.057251,62.012558,0.003282387 2246,393.79382,232.01375,31.985382,79.77486,0.0019028265 2246,448.73303,219.24089,24.523438,52.75862,0.0013863604 2246,611.273,221.13206,27.873657,145.3311,0.001092058 2246,491.80563,106.82455,138.38199,256.4539,0.000756807 2246,409.09616,112.69177,24.06485,58.75229,0.00059859036 2246,541.5898,151.037,39.107056,101.1503,0.00042493426 2246,620.41583,36.28075,18.730835,57.048878,0.00036669985 2246,610.18494,131.77823,28.961731,148.78494,0.00033288993 2246,585.6072,15.315235,52.839905,110.02849,0.00024540685 2246,1.809585,162.15045,33.987637,163.75165,0.00018589648 2246,417.13864,108.94133,35.01053,80.22954,0.00010870433 2246,197.1471,226.01971,21.50624,45.603455,9.616665e-05 2246,612.6731,345.91766,26.473572,143.06882,9.28603e-05 2246,473.46262,289.13058,26.119904,57.908875,2.4107045e-05 2246,0.7925228,130.82237,20.186779,92.62102,1.5132737e-05 2246,605.976,5.054434,33.170654,60.175827,1.0520225e-05 2246,3.8962402,210.87651,56.678955,234.02657,8.109965e-06 2246,0.7340438,346.0791,18.67431,129.77914,7.764871e-06 2246,0.8927474,255.98753,19.759502,132.72069,7.5189973e-06 2246,1.6360173,55.43701,37.211296,191.23695,3.7620869e-06 2246,0.935188,442.62726,21.512587,60.25479,3.104718e-06 2246,5.488978,348.0885,78.51033,136.05319,1.0933334e-06 2246,361.26492,11.375879,112.62747,120.36936,4.762783e-07 2246,507.1381,6.003942,41.817413,53.017807,1.9011613e-07 2246,2.0200553,22.792194,57.368904,100.05087,1.1954506e-07 2246,465.3141,6.1341214,41.524567,47.40556,9.543753e-08 2246,385.59003,5.1600165,47.650787,59.59885,9.255098e-08 2246,539.41693,6.45669,44.32135,56.993347,2.897845e-08 2246,364.08002,2.8433986,44.157867,51.097645,1.9121172e-08 2246,578.2124,6.7642903,46.060364,50.141552,9.56122e-09 2246,1.2107031,9.503623,21.163284,53.226288,2.9743825e-09 2247,587.9542,211.96855,27.39978,71.3282,78.652245 2247,607.56256,205.58118,31.584106,78.08005,1.2311248 2247,568.6928,187.88933,63.58905,124.912766,0.11958327 2247,572.9883,206.23186,28.781067,66.0789,0.09623157 2247,121.779,226.66399,31.975243,76.28926,0.012235506 2247,608.9841,230.83862,30.162598,150.03564,0.0013603087 2247,619.4971,265.47192,19.649597,60.564117,0.0008412035 2247,141.53802,224.20197,35.118835,74.75116,0.0005597732 2247,435.5275,252.42677,27.169434,59.137955,0.0005272233 2247,449.02783,296.51807,25.955292,60.27835,0.0004306371 2247,615.56104,134.92123,23.585632,92.456375,0.0002830563 2247,616.47656,56.61305,22.670105,83.62529,0.00025281467 2247,581.46704,23.494406,56.964355,105.95986,8.093135e-05 2247,590.33856,120.59841,42.637207,139.73956,6.253581e-05 2247,538.2557,72.42849,80.26312,226.13199,4.512068e-05 2247,612.47186,374.0868,26.674805,122.43863,4.081122e-05 2247,1.0250595,207.6381,17.906906,73.16536,2.0284067e-05 2247,0.6207959,263.7803,19.854544,131.93192,1.2933894e-05 2247,607.91534,8.313825,31.231323,54.374096,1.2524391e-05 2247,479.79953,239.6711,76.05783,193.7094,1.1778657e-05 2247,387.43106,111.093124,25.297699,52.173965,8.623074e-06 2247,0.6233838,342.78925,20.55563,104.363525,8.240193e-06 2247,0.74181074,422.58023,16.874437,79.35034,4.0023992e-06 2247,1.7246232,124.1133,27.475073,142.98497,3.673144e-06 2247,2.902085,292.531,57.347893,182.27936,1.6742885e-06 2247,3.697536,160.49129,58.117817,208.02803,1.3216901e-06 2247,383.19467,12.563047,67.038055,123.61192,1.1093377e-06 2247,2.7204297,428.18652,52.817165,70.59671,5.1568145e-07 2247,1.0095004,63.931465,19.79954,131.8107,2.1843948e-07 2247,2.7548633,25.427614,56.179657,90.338486,1.3203943e-07 2247,580.0933,8.799134,44.068542,47.458466,1.1064169e-07 2247,0.75101364,13.64709,12.453082,74.28173,4.2386265e-08 2247,382.45847,2.475879,49.502045,55.25045,2.4032456e-08 2248,414.87582,238.04543,38.498352,65.5414,0.37994352 2248,400.09097,245.08894,25.31723,61.275436,0.1386481 2248,568.774,399.7759,69.05774,90.11972,0.06049625 2248,3.8532145,241.05424,37.556362,106.527756,0.04429331 2248,557.8785,71.93807,27.548767,59.7723,0.029099803 2248,600.3998,422.82953,21.943665,49.84787,0.025975492 2248,280.32843,181.30879,22.124817,49.094498,0.010120335 2248,618.75653,415.25995,20.390137,64.49548,0.007634591 2248,391.25153,204.65416,45.51761,117.47658,0.0063779918 2248,0.9094336,265.42343,17.785418,71.34854,0.003734863 2248,588.17883,181.23889,31.307922,73.470276,0.0027368322 2248,587.39264,404.6436,25.634888,62.69821,0.0017997004 2248,608.938,179.91316,29.700073,134.1043,0.0012668497 2248,585.0166,180.13411,52.82843,286.5891,0.0009731687 2248,20.625412,223.51381,44.60444,133.54738,0.000755914 2248,1.6569979,196.14714,18.251938,84.76387,0.00064830075 2248,609.4815,100.55459,29.665161,142.70923,0.00036758606 2248,621.51276,72.41803,17.633911,58.353363,0.00034800795 2248,595.94104,461.49985,42.01245,49.64682,0.0002638919 2248,4.0260777,193.64264,96.329384,211.70331,0.00014171276 2248,390.87534,68.14995,38.30905,78.13612,0.0001238375 2248,609.3291,4.761699,29.817566,129.52267,7.6061624e-05 2248,616.97925,261.32495,22.16742,82.00491,7.194643e-05 2248,0.8977157,304.87265,19.34592,151.65445,2.0903059e-05 2248,1.7433586,102.79627,19.86859,149.57056,1.9716696e-05 2248,125.40886,80.35953,78.31294,200.7171,1.8841203e-05 2248,2.0265415,272.3125,56.7488,202.86768,1.3962298e-05 2248,0.7058195,422.4588,16.880938,79.89737,3.8322505e-06 2248,3.4035597,82.658905,57.077927,247.28387,1.7369941e-06 2248,371.25812,10.802481,123.71872,120.75138,1.051996e-06 2248,2.6099935,428.89816,52.89614,70.06644,4.9404434e-07 2248,433.19867,6.438021,46.070404,52.252193,4.930249e-07 2248,1.327933,28.30774,19.294855,116.046295,5.1048275e-08 2248,0.75879353,13.5011425,9.709083,80.22391,1.587022e-08 2248,390.21854,0.10840495,53.27179,70.198395,7.049275e-09 2248,363.11948,0.0,43.90674,55.42995,3.8788214e-10 2248,1.1895556,7.0254235,29.828766,64.33364,2.9683678e-10 2249,208.97179,213.02751,21.654465,47.26094,0.024341498 2249,279.73642,179.87666,24.03415,52.270706,0.0038003349 2249,620.75684,191.44598,18.389832,61.29991,0.0035318073 2249,460.51663,260.90814,40.46988,110.20206,0.002895216 2249,512.1199,242.73915,23.754883,46.585037,0.0013146613 2249,609.0468,10.244479,30.099854,110.504944,0.0011688699 2249,90.311646,179.18271,42.018127,93.50552,0.00081671553 2249,170.18495,212.77267,21.650345,47.780945,0.0007145995 2249,609.68646,79.72989,29.460205,179.08093,0.0005813052 2249,617.7996,225.58954,21.347046,78.683624,0.00030123486 2249,426.13916,174.14917,71.74686,189.5264,0.00029947722 2249,566.92285,33.68176,70.25952,138.96951,0.00027277967 2249,1.194965,199.04056,17.868359,73.98776,0.00022054932 2249,470.04892,281.6898,22.71759,49.873413,0.00014347448 2249,604.2219,234.65535,34.924744,148.70522,9.288988e-05 2249,612.6867,323.90402,26.45996,137.49457,3.760466e-05 2249,1.1690316,152.91129,18.070217,79.33525,3.6993417e-05 2249,608.9616,439.9459,30.185059,64.40619,3.101463e-05 2249,1.5393668,164.94096,32.365738,175.01881,3.0286068e-05 2249,0.6992481,242.11324,19.877144,137.74895,2.5218616e-05 2249,572.80707,356.3812,66.3396,131.80032,9.154629e-06 2249,0.6271338,322.95508,19.511515,135.2761,7.6483375e-06 2249,381.74344,5.399681,70.69882,126.074486,7.563573e-06 2249,2.5652978,243.77922,56.46957,225.25179,2.867848e-06 2249,0.7615047,423.12286,17.00123,79.54544,2.6844557e-06 2249,49.019577,99.40314,141.81155,245.69363,2.476893e-06 2249,1.8968465,50.7001,32.254692,180.08574,7.975248e-07 2249,579.73224,8.435166,49.59369,58.22467,7.09244e-07 2249,2.909274,395.4438,56.386574,99.07147,5.0379526e-07 2249,486.9094,17.991335,114.97366,111.273575,3.5516672e-07 2249,0.93120366,23.107853,17.949387,118.84924,1.4693362e-07 2249,411.6312,2.0514812,49.570587,64.00494,1.1408593e-07 2249,423.27625,9.575967,89.57666,70.92239,1.0623842e-07 2249,538.2584,8.565457,44.209167,49.097546,8.0726714e-08 2249,2.5238395,20.902002,55.348976,102.36019,2.1213829e-08 2249,380.14447,0.0,52.5979,58.132526,7.0831043e-09 2249,0.91461265,6.7294173,20.350492,52.98698,3.2948415e-09 2249,349.98355,0.0,42.686096,50.323875,1.57125e-10 2250,68.065544,200.80458,24.195763,45.314117,36.961502 2250,603.48474,348.78586,35.661926,82.14444,0.06410068 2250,275.69333,170.11035,21.666779,52.30948,0.018703954 2250,222.08316,214.50307,23.2415,52.82997,0.015399906 2250,128.83609,212.32016,27.81807,49.418365,0.0080097625 2250,439.8637,48.705288,28.0578,68.63393,0.004345798 2250,623.29504,406.85373,15.851624,47.06018,0.0026032245 2250,610.16766,10.306166,28.979004,124.103165,0.0014752537 2250,530.70764,245.57315,57.302734,173.38504,0.0013735688 2250,619.26636,249.87526,19.88031,53.118668,0.0011089222 2250,598.15344,390.79224,40.993225,96.68283,0.0008157628 2250,611.1034,166.5479,28.043274,130.33263,0.0008043068 2250,48.26214,175.02014,53.37416,95.93762,0.0006671343 2250,1.243243,144.25313,18.219555,78.06862,0.00024149069 2250,590.82477,187.19594,47.3963,245.33559,0.0002110502 2250,0.7673938,205.80475,13.548468,50.106354,0.00015082626 2250,617.2801,102.55907,21.866577,83.73042,0.00010491326 2250,0.755625,171.62675,20.223679,136.53221,4.6161138e-05 2250,0.9723511,90.37691,18.685211,84.08757,2.6817901e-05 2250,1.8344467,66.39251,33.91264,173.88174,1.4235264e-05 2250,0.7993937,333.69156,17.61542,127.52594,9.904519e-06 2250,3.6067936,137.01645,56.768585,216.19131,9.752602e-06 2250,17.39642,110.08269,141.32777,245.86217,5.8177498e-06 2250,0.6618701,420.06726,17.058344,81.578674,4.67935e-06 2250,0.91316247,252.48027,27.74749,142.22942,3.6977754e-06 2250,429.75052,13.512084,48.276886,145.98735,3.0428037e-06 2250,2.8050864,393.7622,56.074314,98.16391,1.0507327e-06 2250,405.83987,16.558224,123.759796,226.99281,1.0148372e-06 2250,1.355726,15.721,34.57122,69.29001,8.0695963e-07 2250,3.36265,23.966373,82.13794,134.9035,2.7394114e-07 2250,445.88303,5.211146,48.67917,57.76077,1.1233647e-07 2250,566.30225,4.9911995,45.860718,46.829643,1.1035065e-07 2250,419.8383,3.0229917,48.640747,62.828106,5.293177e-08 2250,383.3792,0.18410482,54.191742,68.56103,8.070158e-09 2250,356.15463,0.0,44.804993,54.969925,1.9977316e-10 2251,17.604939,196.33344,24.52412,51.922165,50.49096 2251,5.376898,162.23187,57.920113,108.50601,0.0030022506 2251,2.1710286,195.41937,27.783611,66.196686,0.0028171465 2251,447.2695,47.669594,25.889374,55.718613,0.0013802209 2251,617.93097,171.30994,21.215698,70.64015,0.0005371559 2251,343.90198,190.27776,33.599884,66.76433,0.00026469846 2251,621.2742,28.73241,17.872498,53.53883,0.00023636858 2251,612.0797,193.6105,27.066956,122.20325,0.0001795746 2251,48.079624,76.25592,45.356808,182.46936,0.00014692746 2251,1.2050709,134.57051,19.531622,87.64812,8.649525e-05 2251,6.2457943,101.179245,102.27581,260.98322,5.3545205e-05 2251,612.3756,323.11667,26.771057,136.7182,4.5334873e-05 2251,616.952,109.62645,22.194641,82.06645,4.5319743e-05 2251,609.96674,8.462377,29.179932,119.42786,4.3398923e-05 2251,600.0574,85.6528,38.38037,180.05283,3.832028e-05 2251,0.7214331,225.28088,18.692543,81.44867,2.7687354e-05 2251,1.0209001,76.645004,18.535658,82.83908,2.3113846e-05 2251,587.9054,211.24895,51.241272,219.48656,2.0695106e-05 2251,609.81067,439.06302,29.335999,65.05173,2.0649408e-05 2251,1.4445199,206.46954,33.71962,196.76202,1.7597913e-05 2251,0.70732015,322.2297,19.660627,134.50052,9.501785e-06 2251,0.48026857,275.61578,18.531925,74.07062,5.5317605e-06 2251,585.7541,391.69238,53.39258,102.3056,4.7685667e-06 2251,0.8108887,421.99948,16.395164,79.7746,4.0482496e-06 2251,432.2262,11.859056,46.545837,131.9653,1.6401801e-06 2251,413.1479,23.329597,118.11566,224.70624,1.126094e-06 2251,3.1349723,289.89548,56.991215,186.48761,1.0254454e-06 2251,580.898,5.455124,44.696716,52.62509,4.5547978e-07 2251,2.9756398,429.00238,52.36181,69.6546,3.9232845e-07 2251,1.0413558,0.0,64.314514,248.68292,3.7831535e-07 2251,518.52295,7.4978223,44.91632,48.028065,2.1911173e-07 2251,1.0445622,14.820834,22.491796,105.996254,2.1168853e-07 2251,437.10294,2.5945525,46.63156,49.235966,5.9446307e-08 2251,398.44604,4.2699513,47.920013,56.292656,4.315329e-09 2251,370.45,1.3886752,51.42282,62.171085,2.7357328e-09 2251,12.072779,0.0,43.021698,54.328796,1.9908127e-10 2251,342.5717,0.0,43.214752,55.038662,1.01713735e-10 2252,19.51877,93.00238,51.498795,178.39633,0.012625227 2252,260.15356,218.38565,25.122437,53.36905,0.0072682383 2252,22.119753,115.177376,21.395807,53.256844,0.0057184477 2252,229.9791,210.4608,24.045258,54.936264,0.0037715673 2252,32.63086,123.44969,22.594585,55.718704,0.0017194885 2252,1.0160214,130.97224,14.445782,59.389694,0.00094025146 2252,1.691661,186.04866,17.72204,76.16194,0.00044005841 2252,1.8535832,122.21059,29.04749,164.2567,0.00041190916 2252,620.57794,155.72847,18.568726,59.989532,0.00040562372 2252,610.6519,113.797165,28.494751,137.17268,0.00035118594 2252,617.36646,205.02417,21.780212,73.04129,0.00016992462 2252,616.0047,20.830486,23.141968,77.99919,0.00016027896 2252,616.88043,83.13178,22.266235,78.13314,0.00015134728 2252,618.2583,401.41687,20.888367,79.00336,0.00012730242 2252,1.4327433,71.8219,19.342201,91.52777,0.00011704299 2252,612.20636,231.78313,26.940308,141.1783,6.792621e-05 2252,0.65618086,234.91565,18.316082,77.02594,3.925795e-05 2252,445.51047,15.4339485,43.1369,87.19957,3.6575755e-05 2252,602.5489,321.59918,36.59778,165.03036,2.0795887e-05 2252,0.7088192,399.01376,18.223597,71.56198,1.04239325e-05 2252,3.0135841,153.16954,57.60621,251.79579,9.513427e-06 2252,566.7851,16.654766,72.36157,145.75227,8.5325655e-06 2252,0.4620382,289.3754,13.806484,47.300903,7.784474e-06 2252,0.5534652,358.78305,18.400019,72.99466,5.8701376e-06 2252,0.48694906,309.84344,18.472704,73.42099,5.580253e-06 2252,0.95808107,270.72086,33.243248,180.07864,3.2822893e-06 2252,0.8876823,441.6981,21.755026,61.601288,2.3047498e-06 2252,580.62854,8.17676,45.723206,48.470024,1.5384719e-06 2252,429.2493,14.716619,119.14279,112.775215,8.74851e-07 2252,2.9925375,395.85464,56.477943,97.32834,5.523598e-07 2252,425.0476,3.836706,47.814697,47.21374,2.1780171e-07 2252,1.6934342,7.079707,57.458687,135.5642,1.9924605e-07 2252,392.48187,6.105534,45.84836,48.03543,1.6442346e-08 2252,363.30484,3.5697885,51.046265,56.597267,3.1629546e-09 2252,1.6787435,2.7015007,29.714323,66.7823,5.6292027e-10 2252,322.09048,0.0,43.37256,53.686794,5.352462e-10 ================================================ FILE: evaluation_script/state_of_arts/CIAN_result.txt ================================================ 1,503.707,216.95691,19.568878,41.11145,35.526 1,602.8636,218.46642,19.378601,33.72847,10.066 1,-0.9738505,104.51169,29.597073,79.42081,7.042 1,-6.5216727,488.7634,19.230202,43.09311,6.859 1,-5.9653068,-18.289093,18.133245,43.464226,6.843 1,-12.748218,-39.79707,41.85882,98.51109,6.7 1,65.09642,213.185,33.48127,68.24692,6.479 1,611.7543,-47.844147,40.13916,103.32201,6.049 1,-9.548968,463.58804,38.091164,92.99295,5.981 1,626.73944,487.87567,20.374878,46.18225,5.919 1,627.4131,-17.813562,17.13092,46.20011,5.901 1,-10.552931,144.81638,28.987999,76.12886,5.769 1,200.03664,221.85191,23.874786,30.496048,5.736 1,185.5591,220.38681,20.612259,29.142822,5.732 1,612.85394,456.55542,39.3338,105.05994,5.631 1,162.56277,200.35426,19.554657,39.345276,5.577 1,-5.497508,165.063,19.351059,48.158234,5.508 1,36.734093,211.2532,30.7071,67.51172,5.302 1,579.214,212.3123,17.718506,37.263046,5.236 1,19.233606,204.89513,30.630457,68.52254,5.157 1,2.1043944,145.44489,32.692986,75.64699,5.156 1,530.2734,227.97249,19.143066,32.140213,5.141 1,583.59247,411.747,71.20343,176.2182,5.114 1,512.24927,220.06711,19.331482,38.760864,5.002 1,4.245901,205.3605,37.69809,94.62625,4.948 1,-72.86727,265.78104,200.88019,461.64462,4.925 1,608.6547,215.2192,20.99347,33.92073,4.923 1,-2.0294201,208.40201,27.738234,69.51022,4.919 1,83.964676,202.50084,39.05063,71.57393,4.906 1,617.40576,209.3034,20.371826,39.671448,4.827 1,522.87964,226.25789,19.487366,35.067825,4.82 1,-10.11841,342.36444,28.830343,78.62781,4.802 1,-22.294819,401.00104,78.96805,175.84143,4.793 1,536.3938,311.15027,143.96417,340.47052,4.77 1,-4.832712,183.56277,18.105824,44.38846,4.763 1,155.30058,209.7616,18.526611,33.3255,4.663 1,6.761771,-36.2512,28.656456,80.93524,4.647 1,587.26,214.25334,16.706848,33.893402,4.622 1,-11.736698,94.67908,31.21381,67.03284,4.618 1,-14.501456,153.20981,48.613182,140.28867,4.613 1,595.8582,214.75012,31.486206,51.918854,4.529 1,493.75372,228.13284,237.44592,514.5365,4.513 1,19.510368,-33.318798,31.502209,78.65324,4.404 1,-10.881167,376.65176,28.765,73.35602,4.399 1,170.50032,211.04799,19.002625,29.887207,4.377 1,14.076092,206.27425,50.400257,118.423355,4.301 1,-7.1816206,104.63326,20.932035,44.41282,4.265 1,-5.925607,390.76758,18.72837,47.41992,4.209 1,45.42162,220.4198,31.344082,68.28366,4.204 1,375.28827,207.2107,23.171814,46.366913,4.2 1,178.4943,219.41824,19.250732,28.924408,4.184 1,1.0369313,148.60876,21.4056,51.078903,4.137 1,-6.603676,222.18822,19.353415,45.28041,4.12 1,97.08594,211.34898,24.517166,42.572586,4.083 1,18.191181,116.70321,32.666897,70.57261,4.079 1,-5.839515,342.3883,19.52208,48.578796,4.069 1,-6.951288,218.65631,35.789124,96.24371,4.022 1,173.53677,200.04437,28.011139,45.280396,4.005 1,116.36882,136.27863,31.481659,90.07477,4.005 1,361.4309,368.3079,34.76706,53.053253,3.992 1,554.1852,227.2636,19.328247,30.236374,3.977 1,64.40948,206.72894,21.263985,38.587708,3.974 1,557.45087,384.1001,14.574036,23.805145,3.969 1,596.4787,216.93489,17.724121,33.431778,3.969 1,33.31964,231.80878,21.81269,40.996033,3.958 1,537.63855,228.36057,19.633728,30.554901,3.951 1,-11.8749695,197.89185,29.33602,66.934326,3.935 1,299.37793,185.73975,29.541779,51.983,3.923 1,585.9769,-100.81795,75.308716,234.18031,3.919 2,530.38293,225.45456,21.090515,49.173218,64.161 2,-2.724731,-33.115578,29.863384,78.63067,9.102 2,71.45659,214.33282,25.878769,48.737183,8.702 2,-6.1970606,-17.455093,20.437046,45.577312,7.45 2,-12.175701,478.25598,29.87162,62.544678,7.346 2,545.43115,228.04826,21.161804,47.60338,6.551 2,626.6909,487.87167,20.261047,46.58902,6.314 2,603.6977,-53.77688,52.833435,132.92409,6.148 2,612.8147,457.8883,38.795044,103.165405,6.134 2,-6.1781874,150.96585,19.478039,44.967865,6.048 2,3.2175386,106.212074,30.590963,84.04748,5.919 2,-17.681147,-61.213722,57.622444,137.83748,5.81 2,627.3626,-17.532494,16.94403,46.12499,5.788 2,554.107,230.08156,20.455688,44.362778,5.761 2,-10.1456585,-7.1518097,34.190994,71.546974,5.537 2,367.58032,211.58505,28.058167,57.445618,5.253 2,583.34705,412.64685,71.472595,176.38147,5.219 2,266.84064,217.97018,21.517548,31.369324,5.1 2,-3.5186481,228.46391,32.183975,71.85234,5.1 2,-72.99591,264.80084,200.96652,462.80048,5.073 2,329.82056,228.34839,22.740662,35.553925,4.984 2,618.2085,225.45625,18.527954,38.202774,4.893 2,-21.552809,402.397,78.81195,175.27121,4.865 2,623.43256,-34.644016,25.962097,75.844215,4.837 2,-11.6730385,120.24074,32.107285,73.73607,4.826 2,337.47342,232.24358,22.41098,37.279373,4.816 2,536.2894,311.5979,143.98895,339.9851,4.792 2,-40.341564,365.5921,110.876755,276.96814,4.775 2,618.4758,489.43982,20.225586,43.526917,4.715 2,557.537,176.4119,29.51654,83.477325,4.682 2,603.9248,226.31334,16.043274,33.552628,4.677 2,78.60265,224.53476,25.847534,47.019287,4.654 2,449.38275,208.82703,20.608826,42.682068,4.564 2,-5.6530867,183.79549,18.331604,43.75865,4.541 2,168.26491,229.25078,24.913528,32.218796,4.534 2,493.63754,227.66919,238.31668,514.6702,4.496 2,216.35373,226.22855,22.26474,42.5701,4.474 2,536.46497,236.19229,20.710938,40.793884,4.414 2,298.48468,222.86456,20.222717,30.45427,4.389 2,17.698574,158.73262,41.800854,88.88011,4.371 2,291.87198,193.70343,29.824219,51.537766,4.304 2,-14.280546,154.80531,48.382256,134.00786,4.303 2,533.14075,198.08258,30.622253,77.11673,4.302 2,3.6924922,207.27028,38.58224,83.14589,4.281 2,243.78467,214.21843,17.71585,31.814224,4.252 2,314.4755,223.59161,20.813782,30.365936,4.215 2,66.72286,221.36984,34.191,71.574585,4.169 2,595.0632,-46.823666,42.57721,100.179955,4.147 2,233.65508,213.97757,19.67482,34.669403,4.141 2,574.259,161.19696,26.75232,77.75302,4.119 2,-14.806768,217.8541,33.340313,70.06058,4.058 2,206.04773,222.1703,29.073044,56.20778,4.026 2,280.5139,215.96204,21.317352,33.870148,4.001 2,1.639812,-36.921566,43.504154,96.46846,3.975 2,11.206851,181.26033,54.641323,105.99132,3.959 2,585.7128,-100.26285,75.53009,232.78365,3.949 2,617.7002,238.66469,21.3172,43.628372,3.934 2,138.28583,210.80212,21.27353,38.119064,3.928 2,-6.7386675,140.58641,37.593636,98.07927,3.927 2,561.65564,224.83798,19.557251,45.149963,3.926 2,121.384476,185.0832,61.174118,98.70033,3.925 2,339.77933,486.22766,32.0253,55.711914,3.905 2,-9.226723,4.5066032,39.372902,103.075745,3.895 2,293.27466,487.0548,29.78012,55.173096,3.883 2,324.09824,485.65793,31.941559,56.810944,3.874 2,3.1216228,155.60814,39.533516,97.979385,3.869 2,-11.816397,156.77531,30.27173,67.51445,3.861 3,562.95886,235.8477,22.697449,52.498795,65.132 3,576.682,242.37546,21.212036,45.699768,9.872 3,32.236828,215.59926,23.883911,49.78154,7.681 3,2.580915,207.99118,18.74517,37.241867,6.636 3,-17.280636,-63.76586,56.090748,149.08926,6.6 3,449.55023,213.84334,21.976898,46.839493,6.314 3,626.97723,-17.946438,17.549011,46.304527,6.249 3,358.33356,218.73256,29.47754,60.738693,6.196 3,626.3381,487.40167,20.91504,47.025574,5.914 3,612.886,455.9699,39.64215,104.89392,5.833 3,320.85168,233.87856,23.824371,39.826157,5.787 3,623.62256,-34.875694,26.028992,77.34589,5.753 3,603.2442,-55.13832,52.94696,132.5536,5.692 3,-6.4184055,489.56787,19.37162,42.3891,5.644 3,313.66858,231.65479,23.252441,36.041412,5.506 3,-8.910273,465.8533,37.80722,90.72226,5.498 3,340.63156,224.60193,30.68982,56.318665,5.486 3,564.6561,200.6816,28.23114,88.41667,5.429 3,-73.49971,265.16412,201.69608,462.63702,5.28 3,63.202965,218.50201,25.619545,42.22937,5.226 3,582.8897,413.42447,71.96692,174.85806,5.166 3,-16.057032,191.65974,50.305122,122.94066,5.082 3,-5.5979943,-17.316917,17.030066,42.396885,5.05 3,-3.16221,204.68848,17.091038,38.889435,5.029 3,-11.46423,-32.574932,29.787281,72.78921,4.95 3,569.4211,252.07298,19.218384,37.471024,4.93 3,-4.057774,188.2796,17.620579,41.08136,4.919 3,536.2154,311.38623,144.24127,339.61182,4.907 3,265.601,222.24388,20.594177,33.177277,4.895 3,-21.65335,402.9842,79.27425,174.60779,4.893 3,51.476673,125.60007,32.18719,70.70801,4.814 3,-3.964503,89.325714,16.515392,45.61914,4.741 3,219.1874,217.30518,17.46222,27.744034,4.69 3,2.2700047,222.79512,40.571785,92.62425,4.654 3,-11.209476,118.81473,28.630457,69.41263,4.642 3,257.57047,222.86795,21.110321,32.772034,4.637 3,-1.2238121,156.49283,26.981075,74.17746,4.632 3,119.53955,214.07855,23.584595,41.053543,4.579 3,282.81042,223.10138,18.884583,28.438263,4.549 3,77.671165,126.76218,34.34635,75.152466,4.535 3,328.4613,238.98308,23.44284,40.78511,4.532 3,493.82452,228.02429,237.90204,514.36676,4.524 3,38.57397,121.68967,29.383152,71.19031,4.519 3,227.90962,215.74326,17.454285,28.352463,4.464 3,77.15196,211.07796,28.71669,52.590805,4.43 3,298.71487,229.8062,20.418,30.997787,4.395 3,305.7644,229.93402,22.61554,33.695526,4.387 3,-5.036579,122.32439,18.28195,42.022476,4.29 3,-15.112919,121.57135,50.305367,141.3895,4.246 3,121.034325,229.67249,34.75515,52.487823,4.217 3,274.46756,222.32788,19.825256,30.670303,4.204 3,7.55087,217.87679,23.481236,44.404312,4.201 3,597.38885,164.29987,28.228271,83.47339,4.178 3,-17.180376,232.46628,52.21311,153.12488,4.168 3,586.0719,-100.4446,75.13934,231.4437,4.083 3,268.95572,203.88179,30.329468,46.114136,4.061 3,427.7917,185.52873,56.692596,100.1866,4.058 3,2.8163748,191.30563,19.123932,39.80194,4.044 3,434.55103,226.36522,21.418152,35.715775,4.042 3,-9.205635,6.1254387,38.974953,108.31358,4.024 3,613.6035,479.79645,28.929504,62.50354,3.988 3,291.3146,224.78876,18.836884,27.474304,3.987 4,613.3105,18.165718,27.299805,93.252045,11.653 4,367.273,203.81732,33.618103,76.23761,8.652 4,65.132835,210.44153,24.344856,47.270782,7.07 4,92.91309,201.8859,30.430298,64.79175,6.8 4,17.946346,134.2542,34.18521,72.3006,6.561 4,626.73785,488.45258,20.43103,45.64447,6.508 4,-17.425797,-63.62551,56.23738,149.03444,6.402 4,617.5219,207.53903,23.154663,79.2099,5.864 4,75.65997,204.7232,31.804436,63.110443,5.827 4,612.9259,456.94946,39.326904,104.34686,5.747 4,-8.889984,465.67838,37.836983,90.47806,5.62 4,627.4436,-18.576645,17.33722,46.851517,5.618 4,88.48476,209.68704,24.046707,49.317474,5.563 4,610.6611,-47.26605,42.00586,99.596825,5.469 4,-1.4507306,159.84402,28.720018,75.625656,5.441 4,-6.2298255,489.53085,19.00817,42.0654,5.404 4,117.51389,200.86923,28.451012,65.35422,5.329 4,0.076988935,149.28528,23.402006,51.84041,5.306 4,-73.15803,264.97513,201.24423,463.14133,5.227 4,583.5653,413.515,71.23132,174.61841,5.211 4,-5.5818186,-17.470913,17.09026,42.86793,5.189 4,-11.192999,-32.951614,29.405424,73.17404,5.131 4,313.81702,236.5291,23.462097,39.191116,5.108 4,132.49663,207.98868,29.553177,53.886078,4.983 4,-21.447603,403.47003,78.93742,174.42767,4.946 4,-4.549437,121.93723,17.358015,41.94668,4.915 4,585.409,-99.79901,75.11725,234.165,4.766 4,535.964,311.0263,144.75635,340.82568,4.751 4,104.43122,210.3267,24.031792,50.115677,4.741 4,3.5857475,147.90697,32.263596,67.95915,4.731 4,441.5866,225.61722,22.167114,36.32483,4.726 4,267.93713,201.69354,29.987122,48.976715,4.581 4,-11.265331,116.01932,30.596155,73.498505,4.537 4,-4.863756,179.76428,18.76848,51.175446,4.523 4,493.7074,227.00864,237.68793,515.3064,4.501 4,-14.987698,152.4582,48.256077,134.34062,4.47 4,-6.1060357,143.24179,20.512943,49.70906,4.435 4,448.33112,216.10448,22.853577,40.778,4.405 4,19.077337,164.35953,32.32779,74.35008,4.399 4,97.409065,94.24182,34.499687,85.77109,4.387 4,340.66644,224.64174,30.075592,61.244217,4.295 4,36.34947,245.40793,33.801487,52.68164,4.287 4,512.5486,227.3137,22.854431,40.13829,4.283 4,434.69418,228.34364,20.595612,31.794235,4.254 4,620.6988,238.39577,18.656189,43.911972,4.169 4,-6.253347,230.1859,18.66564,41.67769,4.156 4,271.52377,193.99266,22.847595,36.375763,4.125 4,419.98755,231.67389,17.577698,28.680664,4.109 4,615.66156,115.15872,25.897156,84.172,4.07 4,248.52791,221.09071,23.24376,37.26927,4.05 4,264.9129,222.75755,21.473999,32.789886,4.005 4,242.09705,217.56772,22.782959,31.005249,4.0 4,274.30112,224.80931,20.646088,29.254974,3.985 4,488.86298,-176.26909,234.83325,415.53632,3.925 4,154.4963,229.77753,35.03018,59.762756,3.921 4,614.2313,482.88437,28.1969,59.35855,3.902 4,305.62708,234.0893,22.861816,38.33075,3.9 4,3.464582,169.86879,39.18982,89.851364,3.894 4,613.8593,168.8698,26.889038,90.13521,3.887 5,400.7637,209.69853,37.127228,81.6147,21.161 5,553.0014,221.81403,23.330078,52.203674,9.069 5,2.9954815,203.62425,32.557175,75.56981,7.804 5,-17.369434,-63.42164,56.077885,148.27876,6.5 5,276.9143,203.28172,30.662018,47.969254,6.4 5,622.8347,-34.473186,27.246216,78.87379,6.359 5,2.8228521,118.729416,35.31884,89.37366,6.163 5,626.9084,-20.313171,18.29419,49.516502,6.082 5,612.6467,456.69742,39.685486,104.6608,5.81 5,324.85995,230.61868,34.356506,62.83667,5.794 5,-8.695386,465.4817,37.36335,91.1463,5.73 5,603.21344,-56.67877,53.516663,131.58527,5.681 5,391.91132,205.47664,29.314636,75.653305,5.47 5,-6.1117525,489.28674,18.882835,41.865845,5.428 5,51.890327,216.4684,31.865128,62.038254,5.383 5,475.59473,210.23842,21.22174,43.149094,5.357 5,626.5438,487.3515,20.69812,47.096313,5.354 5,-11.44706,-32.52234,29.63814,72.62074,5.31 5,282.11078,222.68634,20.572723,32.950516,5.278 5,-73.028656,264.78088,200.98889,462.81122,5.162 5,582.85974,413.54218,71.95044,174.91351,5.159 5,15.601923,127.248,38.295174,82.705185,5.156 5,264.3292,219.89737,23.6456,39.13141,5.142 5,559.7068,216.26547,23.183899,49.648438,5.129 5,593.99164,-45.151775,44.6156,95.39831,5.098 5,16.910055,211.3898,34.04235,66.75287,5.056 5,585.80164,-98.09697,75.09064,229.10893,5.037 5,-5.6840982,-17.59274,17.05304,42.714874,5.035 5,258.08276,216.29756,23.493835,33.69597,4.956 5,-21.591742,402.9074,79.01893,175.5058,4.94 5,536.1284,310.9178,144.54797,340.61298,4.926 5,575.6909,214.56976,22.000671,45.092926,4.896 5,35.456715,215.4472,32.334866,65.32004,4.779 5,-14.577762,183.785,49.11852,139.42719,4.698 5,494.06897,228.11996,237.38788,513.56714,4.6 5,12.560671,206.32024,53.70845,111.485,4.565 5,545.1464,229.14174,22.755493,48.149765,4.515 5,-11.057934,114.33183,30.602493,77.4823,4.48 5,56.496033,232.13637,34.639557,67.159164,4.476 5,44.367516,147.85251,32.309433,75.28879,4.448 5,-0.58750033,222.96808,27.4668,68.47388,4.44 5,-8.970608,4.1286926,38.96143,107.883194,4.412 5,251.38329,214.08401,34.4019,52.482025,4.402 5,475.18903,218.6112,32.03961,61.43097,4.369 5,509.23648,225.76787,31.228973,53.13771,4.367 5,27.333263,232.45506,33.48389,62.938126,4.334 5,313.0695,231.08696,23.021484,41.303543,4.334 5,612.1338,-3.7492142,38.775696,108.39667,4.324 5,-10.477296,206.56088,29.573643,73.943085,4.303 5,397.9394,234.87329,30.499481,67.02643,4.302 5,-5.7951365,218.89494,19.882936,49.348373,4.272 5,542.20013,194.74283,52.00482,103.980316,4.225 5,19.586853,102.55003,32.37173,76.41324,4.162 6,479.1951,197.1199,27.704315,78.01593,7.71 6,-17.143871,-64.88507,55.817455,149.1848,6.702 6,3.4265113,105.55931,33.210785,78.28548,6.661 6,-6.26495,489.67795,19.033638,43.015656,6.518 6,627.0448,-17.12461,17.770386,46.379093,6.507 6,-8.619584,465.44907,37.3045,90.960236,6.46 6,622.54486,-34.215847,27.474304,77.84281,6.431 6,282.02228,223.20547,21.431732,32.229507,6.115 6,626.73346,487.57462,20.448914,46.65616,5.831 6,301.25476,204.60075,29.59845,47.81714,5.756 6,612.8553,456.5583,39.56366,104.835266,5.739 6,460.45178,206.12108,27.679443,81.914474,5.698 6,614.64307,212.35413,24.570557,72.407776,5.664 6,-11.396681,116.33011,30.156328,72.29666,5.657 6,590.08563,195.37987,28.674683,60.063477,5.648 6,602.5926,-55.718697,53.467285,135.11232,5.426 6,314.54868,224.4549,20.25827,30.336288,5.341 6,274.29074,225.32571,21.603119,30.36348,5.247 6,-11.51146,-32.519127,29.83294,72.71577,5.24 6,602.9235,28.8853,27.343567,71.68561,5.21 6,35.754284,117.74971,33.20766,75.16771,5.203 6,-5.8985667,-17.878681,17.341278,43.205395,5.162 6,356.91998,243.17393,33.903564,76.61473,5.095 6,585.9296,-100.213875,74.69562,232.75763,5.091 6,275.81216,213.80705,32.493134,49.568527,5.059 6,348.4042,232.76541,34.783295,69.35959,5.041 6,-72.98472,266.03506,200.42264,461.18185,5.026 6,582.9186,413.21487,71.974365,175.4194,5.012 6,-21.922302,402.707,78.93062,175.36258,5.011 6,471.82697,207.43004,27.765167,82.56618,4.945 6,297.33536,230.52988,21.408722,32.382935,4.917 6,536.22437,310.797,143.64734,340.3789,4.874 6,305.36395,223.8102,21.94043,30.810837,4.807 6,-3.387208,201.57224,28.994678,72.20816,4.806 6,613.7665,-18.444302,28.135254,75.43081,4.798 6,486.10184,225.09293,23.584106,55.730408,4.763 6,-1.3247442,66.35382,29.688034,75.29315,4.752 6,76.90024,214.33061,28.823715,49.600204,4.668 6,51.74097,148.61313,33.95164,81.67139,4.601 6,594.25433,-45.870525,44.511414,98.79687,4.57 6,18.550371,106.085464,33.683823,76.39482,4.546 6,82.79947,131.73267,34.893677,87.892334,4.531 6,489.9481,-179.35349,235.21213,421.60858,4.522 6,494.0238,228.45435,237.51642,512.79895,4.517 6,370.46002,242.80783,35.089874,69.79544,4.461 6,596.0909,176.50195,28.29657,66.606415,4.43 6,-5.604843,227.42639,18.871273,44.675964,4.42 6,420.76584,243.5058,27.639069,67.01489,4.42 6,289.30795,228.43416,21.408875,35.280167,4.36 6,-1.5004373,154.8653,52.763905,118.626465,4.33 6,287.95395,214.74539,22.901093,36.634583,4.327 6,330.9195,222.27101,17.897308,29.753906,4.302 6,310.4002,210.6014,28.502045,50.5157,4.279 6,-1.1869311,122.53543,29.214241,78.40341,4.255 6,483.58768,226.32173,37.207367,90.88585,4.241 6,3.139621,148.55185,32.17032,82.94925,4.224 6,109.86322,126.36705,31.518173,80.938446,4.22 6,-9.556102,54.219757,29.644073,68.33159,4.216 6,10.200963,121.9603,34.30191,77.92462,4.203 6,-6.5635395,119.55867,20.234264,46.7993,4.126 6,1.9586635,491.11673,19.47889,41.3696,4.105 6,52.933342,108.21677,29.809807,72.85275,4.104 6,626.4708,-1.3805275,19.548828,52.10477,4.08 6,344.20392,233.58224,24.388489,41.136383,4.019 7,289.85876,212.96408,22.363342,35.412125,7.12 7,615.55536,211.66104,25.0766,83.18698,6.914 7,621.81396,478.07178,29.142761,66.65851,6.526 7,612.98535,452.62332,39.632507,109.055756,6.35 7,-5.650854,-17.510742,17.383202,43.626083,6.32 7,282.56207,216.65456,20.895355,29.973175,6.208 7,-2.6253211,134.37108,28.512882,85.184875,6.154 7,309.2998,194.85669,31.634369,50.933823,5.995 7,-17.144943,-64.52939,55.858963,148.4078,5.977 7,616.0135,243.00879,23.896729,90.309204,5.871 7,611.5441,-50.150562,40.903442,106.201935,5.784 7,291.93112,199.46861,31.795319,51.828934,5.729 7,379.14508,233.46819,34.396545,67.37685,5.716 7,-5.988462,489.38852,18.590405,41.431488,5.545 7,-8.745569,465.42828,37.722122,91.62952,5.541 7,93.36755,171.14177,27.60534,68.35338,5.459 7,-11.228712,-31.86279,29.526484,72.4256,5.419 7,275.0185,217.47319,19.514465,26.757309,5.386 7,452.90613,215.37186,29.425537,74.45004,5.35 7,580.8871,201.83061,31.798218,75.670944,5.293 7,-11.666393,479.50052,29.392061,61.57321,5.216 7,-72.71256,266.32172,200.28307,460.7022,4.988 7,59.044205,162.69385,28.535645,75.399124,4.917 7,-21.449436,403.20883,78.70978,174.87448,4.88 7,536.55756,310.22562,143.1596,342.04538,4.874 7,627.21826,-17.772833,17.050598,47.558712,4.861 7,19.225254,128.74403,34.09368,80.82318,4.849 7,594.57385,194.52687,32.079224,72.56413,4.825 7,563.45404,192.62283,47.433655,129.07,4.761 7,585.5274,-102.29177,75.40527,239.54251,4.736 7,321.99466,212.92822,21.374329,33.96968,4.724 7,582.96967,411.4221,71.73773,177.33206,4.714 7,330.383,215.10326,19.931183,31.504547,4.66 7,57.845604,126.92076,33.70095,79.991394,4.659 7,-0.0741148,59.905243,27.301838,76.64113,4.646 7,595.75354,201.15782,42.749146,149.25966,4.579 7,362.3012,223.37036,21.22174,39.06067,4.507 7,616.46027,275.42355,24.995056,92.59573,4.414 7,411.21097,252.57703,33.73047,73.94983,4.413 7,615.1026,19.505844,25.056091,79.65956,4.368 7,493.91907,227.95343,237.88623,514.28577,4.352 7,-15.90317,150.65576,49.473717,136.05768,4.271 7,589.44763,-41.834534,52.793274,147.51787,4.243 7,354.3701,214.52295,19.07431,32.013443,4.241 7,304.0684,210.24345,22.508636,38.22902,4.198 7,617.9515,331.56018,21.916382,53.03238,4.181 7,346.05652,213.6885,18.786682,31.414017,4.171 7,339.07794,220.78076,19.483948,32.701492,4.135 7,296.9965,184.25854,20.832855,39.989243,4.119 7,74.39141,114.42786,31.573204,69.470795,4.114 7,268.7045,205.76273,15.193329,24.206345,4.092 7,-5.0167465,29.898882,18.504747,43.194496,4.067 7,364.44336,230.58577,35.23224,70.09355,4.013 7,252.61955,207.54898,14.338486,23.237091,3.955 7,260.83475,205.978,14.561737,23.743317,3.928 7,-10.965822,83.09242,30.748795,73.594986,3.923 7,2.4448204,33.718884,30.44815,79.99623,3.891 7,297.47607,215.84999,21.954193,41.084946,3.887 7,2.7988024,-14.652502,16.750587,39.72836,3.88 7,161.33598,211.42831,22.414719,32.71048,3.875 7,26.859495,171.57211,58.021248,109.79587,3.868 7,169.90724,219.96626,19.464401,27.99144,3.864 7,100.442,121.31578,31.026154,66.66551,3.853 8,612.25885,246.46457,27.65155,88.519745,9.419 8,1.1869478,201.16379,21.323078,56.01602,8.667 8,-5.5902576,-18.001312,17.434444,43.682064,6.683 8,5.3585124,111.90761,32.07653,71.83644,6.257 8,-4.8468204,208.67136,19.225721,49.454742,6.254 8,265.7235,206.70493,21.806183,31.316528,6.248 8,273.71738,205.91327,22.293793,33.485855,6.056 8,-11.268239,-32.07331,29.63898,71.61015,6.041 8,610.94257,-48.90885,41.777405,102.97077,5.737 8,613.0517,453.72388,39.200195,107.55591,5.693 8,330.16364,212.83606,20.640656,34.19986,5.655 8,626.7091,487.12668,20.919067,46.17325,5.648 8,-9.841405,93.36713,29.120983,71.23883,5.635 8,321.4994,206.60071,22.37091,35.58104,5.563 8,-4.228183,191.69012,18.025414,48.0401,5.452 8,1.2456536,97.388565,20.774239,47.595078,5.433 8,57.68217,101.9463,34.48534,85.11611,5.42 8,-5.1454473,96.93573,18.507336,45.194763,5.416 8,-6.1534696,146.41208,18.468073,41.15184,5.399 8,339.69843,217.49399,18.540588,36.278076,5.364 8,-8.775696,464.6595,37.539036,92.6015,5.362 8,-17.019209,-64.95208,55.49617,148.25446,5.357 8,626.9831,-19.640905,18.026672,48.20992,5.345 8,-72.908066,265.72067,200.49133,461.28397,5.239 8,579.1459,187.92746,50.638428,143.74881,5.239 8,-6.239383,489.11472,18.850538,42.668854,5.132 8,-11.009062,155.76384,31.129736,74.64732,5.117 8,396.39307,228.18927,32.91815,65.90759,5.083 8,-6.4822383,119.99437,19.189127,44.7731,4.996 8,536.57385,309.77777,143.33228,343.44366,4.962 8,597.5176,257.74622,38.733093,105.36267,4.955 8,585.3424,-101.161354,75.52765,236.0762,4.953 8,-21.47303,402.45328,78.85301,175.25034,4.883 8,73.982376,107.80866,33.789703,83.63302,4.866 8,369.47516,194.8879,21.250122,43.425003,4.85 8,347.66953,216.89456,19.16867,38.556183,4.849 8,582.7236,411.90643,71.91083,176.22382,4.841 8,10.918218,93.72529,31.85907,62.94906,4.833 8,1.8937993,230.20639,19.965048,41.350006,4.833 8,258.88,207.60648,19.522583,30.104172,4.833 8,20.118938,128.45918,33.883907,75.721664,4.785 8,-16.31674,158.58768,49.96978,129.00504,4.765 8,291.30954,192.08801,33.62671,50.007812,4.754 8,313.88843,209.38322,21.505066,37.4505,4.63 8,1.7569888,118.68779,22.460512,50.055862,4.585 8,493.5639,228.6531,237.93054,514.3037,4.573 8,236.89377,201.14188,14.121399,20.715591,4.567 8,236.22873,209.1304,15.910095,25.706802,4.543 8,304.91785,202.24866,23.71045,38.375412,4.537 8,483.50793,163.71396,33.296204,72.18553,4.524 8,44.052834,107.589676,35.089478,80.62895,4.502 8,252.71289,199.48415,15.430817,24.126785,4.424 8,-3.7949827,78.13689,15.817516,38.837402,4.416 8,498.78064,161.15451,32.714355,72.01112,4.393 8,-5.9281874,167.76683,19.631546,48.69966,4.338 8,469.27167,187.37726,26.93689,70.912476,4.315 8,351.29947,200.73132,26.305206,52.9393,4.29 8,280.1717,200.23558,24.328094,35.588745,4.29 8,244.86794,201.0862,13.88295,20.740143,4.201 8,599.38104,156.22891,36.31848,112.34427,4.196 8,345.0448,204.29594,21.24707,36.564407,4.182 8,8.217944,99.65643,22.700531,46.229523,4.179 8,379.6723,226.05289,33.780304,63.76596,4.174 8,-11.231907,123.96028,29.619722,66.42856,4.17 8,309.5549,192.61523,30.755219,49.576096,4.169 8,243.92499,208.79971,16.569153,27.636734,4.162 8,-5.4715605,233.67978,18.155693,43.08954,4.146 8,540.6813,173.18527,55.66382,129.67453,4.137 9,385.3032,212.08543,18.70993,46.850662,8.028 9,581.75977,221.209,27.65918,84.56621,6.66 9,-0.87681293,116.15936,27.971706,92.137054,6.642 9,613.2636,453.34186,39.608704,108.87097,6.508 9,611.1795,-47.748665,41.253113,100.47091,6.251 9,-5.935471,-16.649996,17.799948,44.06301,6.047 9,-5.206913,118.680084,19.969074,50.447357,5.716 9,-17.048677,-63.96177,55.942833,149.43541,5.679 9,626.8444,-19.887354,17.786865,49.39639,5.632 9,-11.082804,-32.9244,29.6986,76.84106,5.578 9,-8.766347,465.08102,37.601257,92.457794,5.502 9,-6.113677,489.80084,18.723644,41.13849,5.429 9,-72.880135,264.89148,200.80841,462.92535,5.383 9,345.40405,233.35938,22.19934,39.211456,5.364 9,186.0466,229.54263,19.834167,33.828705,5.333 9,253.21883,211.47838,14.914078,24.089249,5.325 9,286.43942,219.38528,25.756714,39.034332,5.318 9,596.27374,198.94722,31.373169,72.39348,5.182 9,137.58304,220.96233,20.338577,37.87892,5.136 9,264.84744,228.61766,22.969574,36.58293,5.092 9,-11.93775,479.61148,29.538342,61.478607,5.028 9,313.80466,227.7153,21.7677,36.335327,5.024 9,245.3315,212.34384,14.439865,23.354202,4.969 9,536.4535,310.14578,143.45789,342.14523,4.968 9,296.7342,227.06378,22.126862,37.490112,4.96 9,169.76056,226.78116,19.565765,33.76895,4.943 9,515.3784,239.45345,33.75763,69.73851,4.913 9,585.492,-98.94058,75.54755,230.83926,4.837 9,258.23843,216.80913,19.701996,28.886719,4.831 9,-21.412897,402.56366,78.719055,174.89203,4.825 9,41.41559,181.22194,62.149155,102.25136,4.799 9,582.9676,410.9653,71.97162,177.20041,4.792 9,576.56995,201.75304,43.295288,131.44429,4.788 9,329.10883,230.00085,22.740265,34.54593,4.788 9,163.27744,225.09232,17.913788,33.41092,4.735 9,532.39606,210.04427,41.750916,82.08534,4.685 9,281.03165,226.61687,22.561462,37.522354,4.66 9,113.11935,224.01688,22.129692,38.86902,4.64 9,626.1394,487.04993,21.54187,46.758728,4.596 9,129.82837,226.04301,20.863785,35.230606,4.595 9,-2.5594819,66.589035,28.37592,82.335526,4.587 9,408.29224,193.59456,23.573334,65.01018,4.579 9,527.32697,236.29575,25.541443,45.936768,4.553 9,442.4046,260.48557,35.227264,61.55316,4.529 9,339.22437,213.25565,41.657227,76.59735,4.489 9,356.53293,214.72025,28.193909,58.635834,4.489 9,292.80267,204.025,33.02176,50.829514,4.485 9,51.545998,168.40114,31.211586,72.51405,4.466 9,493.84308,227.75836,237.58038,514.03827,4.463 9,303.62656,219.89891,24.288635,38.09816,4.43 9,177.49564,227.73915,21.020813,34.863174,4.409 9,237.00356,212.33047,15.047562,23.164948,4.408 9,580.63617,197.07613,28.517761,73.910934,4.39 9,401.7818,248.94556,36.061584,67.44043,4.337 9,259.00598,208.75931,16.143707,26.870361,4.331 9,121.65664,225.6892,21.413902,36.932083,4.316 9,548.49866,222.24101,39.436462,96.39784,4.301 9,409.25888,178.30064,21.301758,45.212708,4.263 9,69.39038,194.2689,28.939255,65.30995,4.233 9,5.121422,145.91748,31.523438,85.3575,4.226 9,498.22797,211.68251,44.987427,81.129196,4.218 9,155.56903,226.9545,17.967316,32.37906,4.168 9,444.42303,170.49802,26.559967,65.5163,4.16 9,337.86758,230.133,23.52945,36.347504,4.155 9,10.380775,176.31546,58.971077,106.5759,4.151 9,370.20877,212.7272,41.36728,77.14191,4.126 9,268.24475,223.30312,31.221954,53.76805,4.069 9,499.2857,239.87628,33.8302,71.35974,4.061 9,-5.960163,70.391754,20.268242,50.048317,4.057 9,488.5579,-176.62291,236.08536,415.59235,4.045 9,483.61554,246.00082,32.369812,71.46213,4.02 9,321.1241,222.78253,22.929504,34.88089,4.014 9,3.1835127,76.96313,34.0198,90.967964,3.981 9,49.005093,220.42722,45.741,70.387115,3.969 10,12.889714,165.78156,30.499851,89.9908,8.902 10,-5.938887,-17.85026,18.441519,44.188698,6.925 10,94.35205,211.46733,25.673935,47.17302,6.857 10,622.0224,-33.58544,26.6333,79.46065,6.614 10,339.69482,215.6557,31.83966,59.121338,6.255 10,626.43854,-19.506752,17.897034,50.98744,6.207 10,-10.786986,-32.46418,29.699131,75.66586,6.203 10,112.69477,208.89412,23.133797,46.245087,6.181 10,602.6315,-54.748287,53.52124,137.32156,6.095 10,409.70505,204.38663,20.556854,50.436768,5.911 10,-6.128463,489.53146,18.833918,41.554413,5.822 10,613.13,453.75226,39.475098,108.26959,5.788 10,0.85077524,217.2517,22.509584,54.834885,5.763 10,455.11563,167.94328,29.200317,87.075806,5.731 10,129.22513,214.93681,23.237717,44.3871,5.696 10,-0.1892829,114.09597,26.469877,78.92484,5.652 10,542.576,276.11102,38.97577,66.668945,5.652 10,574.18164,-17.781158,53.624878,120.0069,5.648 10,386.78604,203.27077,20.031006,49.982895,5.608 10,585.5849,-97.28397,74.49762,231.3599,5.51 10,-11.862334,478.77682,29.826164,62.43045,5.483 10,35.263332,116.216095,33.413876,93.89438,5.406 10,-73.122604,265.04962,201.06174,463.06976,5.354 10,615.55676,25.886517,25.34375,88.01309,5.274 10,120.639305,213.97035,23.050941,44.38011,5.221 10,-16.959204,-63.881615,55.43592,148.34608,5.197 10,68.33682,200.68503,28.442078,60.49518,5.172 10,355.39496,203.63313,40.969055,77.61293,5.113 10,81.943855,215.94513,43.48002,68.98065,5.091 10,20.786123,101.63011,32.8993,78.800735,4.99 10,366.31345,200.70349,27.705658,54.48607,4.973 10,626.8139,488.47632,20.4953,44.753662,4.957 10,536.3006,309.8938,144.15424,342.96112,4.952 10,-21.437462,402.77185,78.77778,175.11267,4.83 10,-5.755675,128.65068,19.7115,46.776566,4.757 10,132.1705,207.42468,32.08606,62.273865,4.748 10,57.894333,221.87434,34.87726,50.531815,4.748 10,598.6578,26.934204,30.324402,90.52586,4.732 10,582.9146,411.8169,71.7937,176.16199,4.727 10,-0.17605186,163.827,26.25956,94.977844,4.681 10,256.53522,215.96239,22.481934,30.336716,4.674 10,300.4677,195.28442,31.78302,49.76581,4.666 10,493.97397,228.46466,237.19211,512.86786,4.627 10,321.09357,225.34259,22.071167,40.124634,4.606 10,322.6639,204.61176,42.79074,72.23422,4.599 10,113.99124,215.57777,43.063995,68.2083,4.592 10,331.61774,190.60828,55.923492,96.49884,4.571 10,58.124344,194.32085,26.22876,67.38814,4.559 10,511.45642,203.80464,46.730164,78.23714,4.493 10,347.86975,226.55763,32.054016,62.902878,4.483 10,418.09372,268.6428,35.841583,61.767303,4.482 10,372.87296,203.65962,38.826202,77.62547,4.451 10,563.6864,155.46246,27.442444,65.64249,4.441 10,489.4511,-179.13861,235.69879,422.2348,4.421 10,593.20593,-15.614929,47.817505,142.52086,4.419 10,472.50427,286.6132,37.914062,63.822266,4.416 10,471.21976,171.373,23.030762,60.0251,4.379 10,144.20622,220.70111,23.242935,45.61615,4.379 10,377.54382,206.8139,21.62851,46.465668,4.323 10,-0.20621061,81.672646,32.743256,87.354515,4.305 11,349.42795,221.32935,30.916107,62.373505,8.197 11,621.6117,475.06116,28.958374,69.26166,7.453 11,589.28296,207.29654,29.962952,79.32065,7.118 11,-5.855593,-17.691675,17.455082,42.674767,6.824 11,465.2615,184.95062,28.873962,87.5426,6.785 11,92.01369,214.195,32.27147,58.462463,6.725 11,499.4736,153.32663,30.172028,72.649536,6.532 11,622.4431,-33.415943,27.58136,76.59152,6.202 11,626.87476,-19.319962,17.924927,48.392933,6.116 11,598.8359,127.49608,36.320007,85.02644,5.945 11,4.753804,165.19937,28.540249,79.41756,5.628 11,588.0215,94.930626,31.969238,80.11857,5.576 11,-11.477485,-32.035236,29.748108,73.30413,5.527 11,-8.8439045,465.0946,37.710693,92.55029,5.438 11,-6.1706066,489.99017,18.946182,41.676147,5.347 11,-72.99499,265.59637,200.77713,462.00128,5.221 11,-17.052494,-64.725945,55.51544,147.56772,5.105 11,602.6218,-56.498455,53.71698,139.03879,5.061 11,603.46643,427.96716,56.396362,146.34729,5.056 11,536.4533,309.86646,143.84155,342.9558,5.017 11,355.16843,210.9362,40.079254,80.817825,4.974 11,523.30194,300.67453,33.19812,57.36841,4.945 11,-16.716549,185.76697,49.554657,131.11475,4.903 11,585.53845,-102.943214,76.22009,236.5162,4.897 11,-21.509068,402.8683,78.94935,175.13458,4.886 11,321.65863,214.22205,20.436646,32.6736,4.868 11,538.10046,300.732,36.37262,58.77289,4.855 11,390.39932,201.89131,36.866608,75.29076,4.82 11,77.02256,202.09033,29.571861,63.203613,4.79 11,345.97354,224.08875,23.829132,44.593018,4.744 11,329.6616,216.99759,19.82785,32.883377,4.648 11,300.05865,197.13322,31.289185,48.13179,4.641 11,280.33728,215.6543,24.789246,34.21718,4.622 11,541.6199,174.02759,52.678528,109.28931,4.593 11,446.21036,203.85295,29.120026,75.40279,4.589 11,493.73773,228.01242,237.6532,512.66785,4.567 11,489.47717,-180.3158,236.82275,422.4955,4.562 11,-6.9536514,230.22476,20.068542,43.686737,4.557 11,617.7976,486.2345,21.625732,45.85431,4.549 11,128.16061,219.09917,35.24742,55.36818,4.511 11,574.86566,188.58118,53.543274,140.521,4.498 11,511.02502,162.30237,22.98816,46.573685,4.491 11,-9.352364,200.75455,27.590637,70.47232,4.447 11,421.12582,201.59032,37.57431,77.2975,4.399 11,25.828064,205.28549,32.59721,63.283752,4.399 11,105.64015,214.59843,34.915543,59.705093,4.339 11,460.37958,250.25414,32.25183,61.51375,4.315 11,0.519644,179.96999,20.534386,58.010498,4.298 11,511.10336,161.88757,51.07962,116.33203,4.268 11,-16.34293,124.007866,52.08343,138.64078,4.259 11,251.45752,208.96996,17.974579,26.533096,4.228 11,317.06586,196.78679,29.281769,47.48059,4.208 11,12.380781,184.56335,54.26689,103.99512,4.169 11,602.0488,101.72708,33.864197,79.51807,4.149 11,64.939804,224.90497,44.286804,78.869934,4.094 11,618.91785,-19.203176,18.385376,45.689877,4.027 11,371.91034,210.11476,39.233307,83.435715,3.983 11,2.667654,-16.141476,16.635761,41.35485,3.976 12,53.027615,207.02556,29.921154,60.787918,8.744 12,18.822681,210.53592,34.0829,59.590454,7.718 12,627.03357,-16.780336,17.316406,45.588947,7.371 12,623.2609,-35.413567,26.349304,78.76095,6.607 12,613.81744,192.91483,25.871216,94.81235,6.568 12,-5.5735946,188.88216,18.623566,48.353226,6.086 12,33.483006,211.63478,35.784176,66.74617,5.922 12,613.039,454.87146,39.300354,106.838196,5.919 12,7.0204973,190.83281,28.967457,68.99318,5.91 12,3.434658,86.603195,30.774342,76.696,5.885 12,390.04413,201.98445,28.11493,61.593918,5.85 12,-10.70594,-33.51034,29.740181,76.32948,5.812 12,-6.085374,489.64777,18.674156,41.69232,5.803 12,-5.89159,-18.326303,18.184357,45.256416,5.746 12,559.1563,170.03973,52.034424,113.86206,5.745 12,11.309357,189.32315,57.640724,95.71597,5.727 12,-8.856725,464.71002,37.59768,92.97589,5.624 12,288.94574,214.2299,23.554688,34.12169,5.529 12,-11.81385,478.84235,29.116251,62.398376,5.529 12,2.3210323,187.93774,21.070517,50.802094,5.521 12,418.0689,247.76138,34.946686,70.52911,5.468 12,603.55365,-55.213356,52.439087,132.65678,5.456 12,-73.37054,265.01227,201.49237,462.59918,5.388 12,372.3653,219.79611,31.088959,66.960175,5.23 12,267.1568,202.36133,16.355164,24.94542,5.217 12,253.26514,208.94894,14.721558,22.968063,5.213 12,308.67184,198.71057,31.391754,45.186737,5.206 12,-8.936186,193.77127,37.95698,85.75302,5.148 12,78.79596,213.31717,26.850067,46.57776,5.127 12,-16.12934,125.91466,51.50815,136.53127,5.111 12,605.75183,174.68155,30.483398,81.632355,5.007 12,536.65125,310.19604,143.38647,342.0244,4.998 12,3.5158014,212.9124,41.551384,83.21547,4.991 12,-5.009925,169.1007,19.449574,43.73085,4.988 12,-17.736668,-64.889656,56.498127,149.54071,4.98 12,259.82425,208.97035,15.410431,23.319778,4.97 12,-2.6454341,127.29451,29.093554,83.24698,4.87 12,582.8379,411.6931,72.09021,176.78711,4.855 12,356.93744,224.48341,31.135712,67.48628,4.826 12,618.5963,-16.271805,17.623535,43.639362,4.787 12,61.944622,197.97398,28.764263,60.00331,4.785 12,626.6915,487.5135,20.66632,45.841614,4.767 12,-21.518068,402.29474,78.91898,175.25458,4.752 12,429.66473,227.90536,27.481598,57.085083,4.722 12,567.88666,196.23553,22.2406,51.43361,4.704 12,-9.9991665,164.338,29.423258,68.473694,4.696 12,294.93314,207.97034,25.397675,35.15074,4.562 12,266.3734,216.91263,18.577026,25.848267,4.547 12,57.215782,196.42168,21.974602,45.840775,4.539 12,-11.414412,64.99945,31.43872,74.89548,4.442 12,493.91678,226.96024,237.5018,514.73975,4.431 12,572.6275,197.28098,53.588196,152.72458,4.418 12,66.88683,213.21521,42.381126,73.59485,4.417 12,585.8938,-100.88634,75.404175,234.01334,4.415 12,584.087,172.10315,37.117188,94.08533,4.37 12,56.460514,139.13779,24.757061,48.08249,4.361 12,285.51868,184.4876,31.102234,57.248108,4.36 12,17.613878,171.92917,42.784744,80.938614,4.333 12,98.18134,208.05458,31.346748,60.57408,4.328 12,337.57825,220.40587,22.612366,37.639297,4.321 12,-6.320143,212.67056,19.699648,45.957794,4.287 13,471.31952,209.41872,22.089935,54.225784,8.78 13,2.20873,202.62733,32.556385,71.58882,8.208 13,626.80286,-17.771467,17.37146,48.395306,7.969 13,622.6242,-34.108257,26.08612,77.1841,7.644 13,458.90588,204.58257,21.08316,50.69078,6.687 13,19.3067,205.52475,31.285082,64.17441,6.201 13,370.34204,223.84251,33.845917,67.156784,6.17 13,-6.1627455,209.37498,21.232555,52.17305,6.099 13,-11.0406685,-33.931606,30.215227,77.84227,6.088 13,612.7204,453.85626,39.624573,108.196106,5.978 13,626.79205,489.00653,20.543823,44.34088,5.916 13,437.6784,208.2415,28.262115,76.70201,5.812 13,-6.0664787,489.72424,18.791119,41.438904,5.673 13,253.75322,204.8996,14.12825,21.330109,5.644 13,9.532215,185.73318,55.841892,101.059296,5.569 13,259.97662,204.12805,14.915375,21.954376,5.463 13,-8.766197,464.3472,37.71089,93.38437,5.447 13,513.85626,250.85945,35.38965,63.81993,5.444 13,602.92566,-56.655376,53.293945,133.26776,5.438 13,387.9702,205.3904,38.3631,80.70451,5.436 13,-5.772128,-17.954672,18.33031,45.096252,5.419 13,-18.220459,-62.644924,56.49452,145.40892,5.321 13,-73.27901,264.99463,201.53749,462.31262,5.308 13,28.750004,193.11179,28.353313,67.86801,5.053 13,466.2437,199.73991,20.717468,53.208115,5.025 13,506.70078,204.23267,21.380768,43.783188,4.979 13,536.1665,310.0276,144.15588,342.56897,4.979 13,422.1737,200.61777,35.894806,81.82486,4.917 13,44.47105,200.28577,29.026112,70.100464,4.909 13,-18.239023,434.51605,55.316162,143.31659,4.897 13,446.6631,201.31311,28.907593,67.047485,4.886 13,419.77615,189.39856,28.794098,62.100403,4.885 13,-9.472828,212.00131,39.196114,94.036194,4.872 13,296.2446,204.63655,23.312164,32.42372,4.818 13,515.7754,214.08777,41.37787,79.9556,4.785 13,582.9789,411.36435,71.77136,176.5961,4.773 13,618.67786,-17.078356,17.674622,46.170204,4.727 13,-40.159904,366.9697,110.41373,275.64774,4.638 13,-16.759369,124.543434,51.9686,138.62402,4.619 13,403.15723,206.54803,39.638184,88.0708,4.601 13,358.16653,223.3845,32.181427,62.38646,4.562 13,300.71643,195.46173,32.02533,44.79326,4.562 13,494.25735,227.94693,236.96762,513.6017,4.539 13,-9.721136,181.17604,28.044535,71.56964,4.504 13,267.23245,209.07791,17.025269,24.576202,4.47 13,547.1301,219.49113,43.086853,99.20912,4.356 13,289.47406,198.21303,23.588715,34.083923,4.351 13,501.83194,209.93173,39.29129,72.30289,4.327 13,312.5358,202.11119,22.085052,31.51735,4.282 13,312.93643,220.10443,22.924133,33.552155,4.275 13,259.7009,213.9451,17.909637,28.657043,4.219 13,-10.393188,141.9076,30.192074,68.70773,4.18 13,175.40479,204.11362,22.826645,32.80786,4.162 13,-5.909565,151.39258,19.013535,46.7843,4.157 13,455.5333,196.79227,35.434082,74.41446,4.132 14,487.6508,208.99284,24.064789,51.260544,32.331 14,23.919611,212.78693,21.59194,44.69156,18.413 14,579.47437,188.69804,30.028137,68.98384,12.199 14,598.138,189.30896,28.787964,62.38994,10.461 14,476.19125,192.99112,31.990143,65.45865,6.775 14,-4.128417,182.43896,18.032547,51.870102,6.684 14,33.760647,202.14636,22.74086,50.072113,6.356 14,575.0797,182.52298,51.61145,143.69012,6.318 14,612.9575,453.2161,39.588562,108.63229,6.225 14,623.323,-33.691666,26.453125,76.058556,6.063 14,-11.516445,-32.652893,30.09594,75.916046,6.029 14,602.8995,-55.902,53.479614,132.70946,5.882 14,627.30347,-18.81682,17.368164,47.85429,5.854 14,626.5914,487.71896,20.586304,46.04483,5.845 14,-6.2220907,489.36096,19.062876,42.236572,5.769 14,-18.635805,-66.16776,56.956573,152.14626,5.755 14,2.3420906,203.83841,19.043442,54.65558,5.686 14,-6.9284716,184.73058,25.890434,75.39458,5.674 14,-8.839399,464.90158,37.710747,92.4155,5.649 14,567.598,193.21098,28.38147,71.283615,5.61 14,-6.0496287,-17.51279,17.907244,44.829956,5.444 14,-73.332634,265.22974,201.33276,462.79236,5.18 14,60.986526,184.12466,29.163277,66.53186,5.173 14,438.38895,202.88025,32.664642,75.92499,5.108 14,535.9549,310.48047,144.41571,341.6936,4.979 14,612.0592,181.23837,27.306274,70.52081,4.946 14,-3.6651516,205.16974,17.309162,49.10501,4.908 14,453.575,193.07007,40.645416,71.67526,4.897 14,594.7097,-45.232815,43.712402,96.92726,4.875 14,582.54065,412.0835,72.19818,176.3595,4.86 14,-21.468546,402.87955,78.8744,174.98361,4.844 14,17.77303,200.92769,22.230701,52.603287,4.803 14,8.120068,189.41588,25.574032,73.70192,4.72 14,244.78516,208.8583,15.082214,23.525925,4.664 14,493.6698,229.02118,237.75146,512.4369,4.647 14,252.28964,208.38957,15.381897,23.864609,4.64 14,586.3791,-100.80871,74.46271,232.7272,4.625 14,-15.812501,122.84586,51.38817,138.77448,4.599 14,387.58795,247.81786,34.682068,72.07219,4.434 14,543.26306,178.06041,52.46936,111.50191,4.426 14,346.8192,205.19664,17.743835,31.36029,4.414 14,394.87573,208.1594,57.56134,125.775635,4.338 14,288.8064,204.87265,22.517212,32.398224,4.329 14,363.88025,218.8679,32.691406,61.602737,4.303 14,258.95328,204.26414,16.498993,22.412811,4.288 14,236.61246,208.34271,15.440094,24.41893,4.239 15,527.95544,210.64867,30.664062,73.709366,15.09 15,627.06024,-16.716543,17.62799,46.822674,8.075 15,623.03735,-33.752018,26.425537,77.32427,7.697 15,626.7779,487.56693,20.089172,46.015594,7.226 15,-6.207925,489.84396,18.651201,41.841034,6.25 15,-18.105097,-67.306816,56.357506,152.32083,6.042 15,-12.192463,479.63412,30.124933,62.87961,5.846 15,602.92645,-55.522896,53.153564,133.31805,5.832 15,612.66675,454.33337,39.770996,107.91553,5.792 15,426.31842,209.63297,22.023254,46.209152,5.705 15,-11.512672,-32.796326,29.865057,72.99797,5.254 15,499.05093,211.68188,18.210968,41.17737,5.212 15,-0.530076,153.98123,27.78313,80.74771,5.21 15,-5.838668,-17.903938,17.399601,42.24917,5.109 15,581.53186,199.47859,30.210327,75.26811,5.038 15,-72.89067,266.8534,200.03754,459.73376,4.895 15,313.886,213.5259,20.79831,29.732529,4.874 15,251.90703,209.20442,16.37358,23.37587,4.795 15,505.12875,220.6088,19.442352,39.80188,4.788 15,619.2307,-15.213732,17.059448,43.37884,4.779 15,-5.608003,184.6045,19.319296,45.879898,4.776 15,563.8872,196.72417,33.26349,69.22337,4.763 15,583.007,411.64502,71.613464,176.4198,4.754 15,536.4724,310.73767,143.57275,341.75378,4.692 15,522.3175,191.1813,49.119385,102.878815,4.66 15,483.08212,214.1563,40.712677,80.68132,4.656 15,-22.115921,402.48132,79.31622,174.3435,4.624 15,491.1241,208.8794,18.91977,43.626694,4.591 15,-15.070717,158.0881,48.799873,129.88187,4.59 15,613.9257,-16.727829,28.243408,70.39876,4.576 15,618.5645,489.3962,20.801208,43.354218,4.506 15,306.3873,213.75298,20.200104,28.495758,4.44 15,243.67464,208.28003,17.17244,25.083466,4.418 15,493.64838,228.39816,237.64423,514.33215,4.398 15,298.65274,214.53212,18.752014,28.267014,4.396 15,585.49146,-100.13383,75.325745,232.82431,4.369 15,422.35974,216.5148,30.335266,66.27377,4.312 15,575.6985,183.13896,48.744873,134.26765,4.31 15,627.8231,1.0479984,17.785034,48.96495,4.244 15,594.65955,-44.732388,43.604736,96.47946,4.196 15,364.1894,-16.46508,32.450287,69.25598,4.172 15,352.93542,208.44406,23.304535,38.181335,4.051 15,243.20563,216.57999,18.19336,27.479523,4.041 15,-5.5361624,153.05666,18.431675,42.857803,4.041 15,338.47052,212.28981,20.308105,33.171112,4.036 15,498.42413,218.82736,44.717834,88.55133,4.03 15,290.3152,205.87039,20.399658,29.78218,4.017 15,251.51598,218.46689,16.645218,24.988892,3.989 15,603.0013,25.551117,53.73181,147.12843,3.965 15,302.0644,192.60876,31.60611,46.881638,3.952 15,219.90848,208.23381,17.478928,25.367554,3.909 15,355.24213,207.46603,40.718994,66.20581,3.903 15,390.85272,229.77002,30.605103,61.569214,3.893 15,283.77966,208.58614,19.565094,26.005554,3.866 15,489.4495,335.83392,35.092255,65.929504,3.866 15,260.05435,211.33412,16.158386,22.024582,3.865 15,72.65929,232.72208,22.11235,33.080475,3.845 15,-6.1208954,168.54617,18.534485,45.40277,3.837 15,235.19565,216.33994,18.440964,28.197693,3.829 15,489.3878,-177.10909,235.56326,416.19888,3.825 15,537.5242,175.71088,57.885864,117.33243,3.823 15,267.61874,212.25583,17.032684,21.184006,3.801 15,-7.7275968,356.4752,37.282646,107.77576,3.797 15,21.377525,171.99791,28.151966,79.59529,3.795 15,66.09206,172.30302,21.264961,43.860413,3.788 15,71.857956,174.40662,64.131516,105.679016,3.784 15,-11.272486,136.23996,30.770702,72.94737,3.778 15,0.028048754,95.412315,23.103298,52.866203,3.764 15,361.81656,-18.503319,18.97464,43.29769,3.751 15,560.09015,213.0468,25.867126,49.819016,3.75 15,2.2908401,490.20926,19.420593,41.16617,3.749 15,2.5139828,204.30927,19.457432,52.55609,3.74 15,330.56573,214.7092,20.01941,30.578949,3.739 15,369.63605,-18.19062,19.841034,42.692936,3.714 15,371.57953,209.61777,40.921967,67.99094,3.682 15,260.006,219.18298,16.010864,23.373169,3.674 15,402.4033,229.40793,21.516815,39.126526,3.668 15,-11.151419,446.19153,39.763084,92.295044,3.654 15,345.74292,-17.928154,18.572296,41.069214,3.645 15,345.7109,211.50664,21.507385,34.335724,3.644 15,616.08746,32.458633,24.72528,77.93759,3.643 15,611.06934,-13.522019,16.996521,39.2989,3.639 15,153.75638,218.54216,19.988281,29.578583,3.634 15,-5.993,136.43109,20.022266,45.121002,3.634 15,11.052248,180.52911,56.583496,102.46396,3.614 16,574.63855,216.44847,28.551514,69.235916,36.86 16,439.82547,211.50516,22.819336,41.46483,8.209 16,623.0546,-33.7173,26.57312,76.13881,6.31 16,626.79407,488.75702,20.161377,44.308838,6.274 16,-17.702566,-65.086205,56.909027,151.25217,6.262 16,242.8757,217.2002,18.813263,30.984467,6.074 16,448.86835,212.10826,21.836914,40.66501,6.016 16,613.04285,454.14664,39.565918,107.37393,5.902 16,235.13043,217.03995,18.957932,31.028458,5.746 16,251.43593,217.21614,18.27095,30.777481,5.551 16,-6.3661423,489.73984,19.12005,42.187653,5.512 16,-8.855415,464.5907,37.68818,93.04144,5.452 16,-5.5807285,-17.82218,17.17302,43.160297,5.394 16,627.03033,-19.966616,17.510376,49.20037,5.348 16,445.37122,-12.537796,51.831604,119.120285,5.292 16,580.4284,230.16646,38.518433,101.76454,5.275 16,-72.71821,265.75037,199.97408,460.9994,5.208 16,28.723984,113.78568,37.712067,87.610374,5.182 16,603.07745,-54.98121,52.806396,135.04707,5.105 16,-11.431228,-32.350914,29.452301,73.57348,5.089 16,458.78842,-32.603477,56.022736,124.68082,4.93 16,582.90125,411.9191,71.90253,176.37387,4.916 16,-21.524744,402.60352,78.62845,174.9054,4.881 16,536.7051,310.08868,143.21387,341.48004,4.861 16,435.8322,205.67567,20.347626,37.42363,4.841 16,3.3871925,181.01115,30.252739,79.60991,4.839 16,618.73315,491.49268,20.133362,40.33081,4.751 16,585.8663,-99.70186,74.040405,232.55486,4.606 16,287.4452,189.89505,23.496246,36.405212,4.501 16,476.77548,-12.504715,52.834198,120.146866,4.436 16,491.46326,-28.342587,57.06891,122.71579,4.42 16,227.40976,215.9008,19.142273,32.352646,4.416 16,-5.674039,223.88177,19.946095,50.038635,4.404 16,494.29858,228.70016,237.07562,513.8251,4.401 16,468.9067,76.618546,30.06784,71.92006,4.372 16,490.2248,-178.71352,234.43341,421.2903,4.229 16,259.2605,199.32841,17.430939,25.474854,4.226 16,-0.2826774,212.93326,23.301247,57.80185,4.208 16,427.6181,-32.15909,55.631256,124.39752,4.197 16,597.4371,231.70679,38.157227,104.100586,4.182 16,24.07445,176.10313,61.380486,109.70729,4.097 16,616.8737,212.19418,22.049805,47.709625,4.094 16,301.23135,190.34439,31.141205,54.022858,4.045 16,83.077614,210.97044,33.266457,54.141586,4.043 16,456.39258,209.04774,20.219513,36.397156,3.978 16,494.17657,266.35916,31.280945,74.05057,3.971 16,523.9588,-28.515541,56.11621,127.75469,3.962 16,564.5576,245.46707,41.198242,107.93402,3.946 16,595.2943,-46.833115,42.90216,101.033676,3.941 16,236.16339,200.7719,16.822632,24.37465,3.931 16,266.24933,198.22353,18.046997,25.70073,3.924 16,453.4633,83.85249,30.14618,78.40544,3.914 16,-5.550351,117.566574,18.3228,44.24475,3.911 16,421.53424,207.85953,39.02893,76.513306,3.903 16,413.01578,-13.435905,53.177795,119.28174,3.891 16,227.85648,203.33344,16.686539,22.854233,3.784 16,412.1249,-4.8807354,28.164154,71.294754,3.782 16,2.958473,-15.210073,16.41423,39.48441,3.774 16,587.5854,214.13687,28.85669,55.235443,3.768 16,243.71161,200.62039,17.018402,24.512573,3.714 16,322.7568,202.90692,19.964203,32.99205,3.667 16,597.5846,460.64557,38.57715,99.507935,3.651 16,365.7149,201.89273,28.32965,49.36197,3.628 16,612.2965,266.53857,38.398315,108.29129,3.622 16,436.4313,210.0104,39.580536,76.69882,3.603 16,317.8036,197.6792,30.649506,48.332077,3.599 16,-38.28053,-123.86372,119.30362,286.20746,3.585 16,444.85345,190.66524,52.99582,108.20836,3.578 17,443.49155,204.4947,20.243073,46.24617,53.891 17,459.82114,206.42793,19.86316,44.173553,50.814 17,523.3003,205.47183,20.428589,46.980087,7.201 17,491.50223,207.9027,21.117035,41.840256,6.95 17,-17.563543,-66.96572,56.431427,153.50829,6.41 17,622.1291,-33.43719,27.327576,76.12136,6.196 17,613.0848,452.65515,39.489807,109.37109,6.144 17,235.2173,199.9605,17.24234,26.447617,6.126 17,3.538785,212.10335,31.006973,65.652084,6.079 17,-11.980341,479.36856,29.788084,62.279144,6.01 17,602.8573,-55.179703,53.22412,136.43529,5.976 17,626.7678,-18.158012,17.614746,47.341946,5.874 17,-6.1206017,489.86722,18.844555,40.99466,5.788 17,626.5424,488.0856,20.853455,45.8331,5.563 17,348.33856,199.65791,15.091064,27.604797,5.442 17,597.2392,212.7901,40.350037,146.53473,5.258 17,306.04175,206.08076,20.917358,30.720367,5.252 17,243.43336,201.02577,16.83934,25.212112,5.223 17,536.25665,309.1585,143.88226,342.97504,5.205 17,-5.642381,-17.52982,17.28604,42.277374,5.191 17,122.52577,201.56535,21.047714,38.32791,5.187 17,-72.98694,265.85938,200.66348,461.38806,5.165 17,613.5843,79.33899,27.35559,72.77365,5.049 17,-11.252708,-32.527996,29.597132,72.99769,5.039 17,452.29315,203.34811,30.03012,65.350464,5.016 17,297.85587,205.81653,21.186615,30.568558,4.99 17,282.3096,203.79033,19.583069,31.517838,4.96 17,-17.719242,436.7683,55.360153,140.79791,4.916 17,369.36447,206.34978,34.459686,51.86647,4.854 17,251.78424,203.33366,16.379272,23.788132,4.776 17,294.1814,188.0055,30.679565,47.944855,4.765 17,-39.73949,367.66977,109.76663,274.8649,4.762 17,582.74164,411.32022,72.04071,177.20163,4.751 17,614.9329,197.51653,26.00769,92.66463,4.738 17,-5.6381855,163.81892,19.24594,52.3089,4.726 17,470.16962,201.67737,22.513367,43.686462,4.694 17,556.6871,226.11533,32.345337,71.626465,4.613 17,615.32434,230.11258,25.53479,102.30029,4.601 17,493.4308,230.04947,238.39526,512.7378,4.592 17,203.83078,199.78235,18.123566,26.862488,4.56 17,1.0129333,157.56927,27.47542,82.18976,4.558 17,227.04134,198.56805,17.76381,28.042435,4.546 17,354.8747,198.49715,16.213013,29.191895,4.513 17,-1.7592728,112.35626,28.11874,84.15665,4.508 17,594.61835,-44.268692,44.494934,97.56573,4.477 17,145.3146,202.55191,23.529694,37.054016,4.442 17,361.1578,209.30833,23.743286,38.503098,4.385 17,585.9876,-102.63027,75.05542,236.58286,4.362 17,314.19946,206.1966,20.072998,30.704788,4.339 17,595.09973,95.87132,33.243774,76.312836,4.318 17,450.59454,201.66595,18.916199,44.410736,4.302 17,-14.339741,184.45139,49.320026,130.28348,4.298 17,-9.799625,153.01855,30.089582,75.15106,4.185 17,489.3423,-175.32861,235.74774,416.00085,4.082 17,218.29166,199.57263,18.126678,27.491302,4.071 17,411.60895,-15.139326,16.193207,38.014793,4.069 17,572.6193,252.2221,37.493652,80.26904,4.062 17,136.72545,201.45137,22.41568,37.532898,4.028 17,622.2169,92.630264,27.309326,77.596085,4.027 17,289.93665,204.40683,20.499298,32.153076,4.002 17,580.0884,215.60132,45.25598,130.1861,3.986 17,195.91183,200.28406,17.782227,26.808655,3.98 17,613.6447,120.65796,26.0,81.20651,3.978 17,9.664593,178.57193,58.474514,106.44113,3.934 17,250.97725,194.41698,17.15886,23.140533,3.92 17,574.2074,-16.644604,52.894287,120.23541,3.915 17,614.56714,26.802532,26.363342,81.95328,3.91 17,368.7716,200.01283,21.781189,41.010574,3.907 18,467.16638,216.60747,19.581055,48.41948,68.074 18,450.7454,218.2846,20.963654,47.68051,59.249 18,458.45078,216.44623,19.892914,46.276245,9.416 18,2.2975147,149.8995,31.566317,85.50911,9.051 18,621.8964,475.5321,28.929993,68.3764,7.384 18,505.60797,211.86978,23.131104,49.755127,6.964 18,613.28,-35.63243,28.294739,73.88286,6.718 18,597.5682,226.44687,30.079468,54.080566,6.428 18,571.5777,229.62267,28.386353,49.903152,6.062 18,370.11124,220.33698,33.224884,52.501556,6.051 18,-8.605658,465.81216,37.465294,90.90109,5.945 18,1.0366416,100.340225,31.41508,82.43822,5.722 18,235.28929,217.50995,16.802399,23.787338,5.715 18,-17.902643,-66.266884,56.349846,151.76038,5.7 18,218.57545,214.18784,18.475235,26.917633,5.466 18,361.91125,223.74834,23.48462,41.84883,5.416 18,100.51016,207.83434,31.541061,55.988785,5.313 18,129.28723,219.4369,22.660858,35.076645,5.283 18,226.51582,214.95824,17.877975,26.013535,5.26 18,-6.206653,489.43005,19.071547,41.937378,5.229 18,-73.098465,264.74475,200.68494,462.76697,5.204 18,536.4213,308.9455,144.2439,341.38202,5.195 18,593.64856,-47.885586,46.213013,91.84293,5.172 18,421.22556,210.97145,12.981262,29.899643,5.137 18,-5.2832274,216.35571,18.113716,44.532562,5.114 18,551.71423,224.59096,21.930908,42.314987,5.06 18,-5.6797943,-17.586216,17.320873,42.25799,5.053 18,-11.3085985,-32.652187,29.65435,73.23219,4.99 18,-21.3941,403.16608,78.79022,174.6159,4.932 18,517.5416,205.70798,28.221252,55.634247,4.889 18,626.9141,-20.59316,18.077698,47.567642,4.881 18,-9.577965,156.19308,31.741379,80.24115,4.863 18,582.8925,410.1538,71.97821,178.25146,4.829 18,603.61304,-58.299828,51.67694,129.80836,4.787 18,618.2007,486.54242,20.906067,45.6026,4.77 18,-10.090904,110.97322,31.419468,76.72008,4.71 18,186.94867,215.70676,20.0298,27.018661,4.706 18,297.94904,220.69345,21.369629,31.034973,4.658 18,121.3721,223.441,22.544922,34.72728,4.649 18,494.01135,228.50189,237.70618,513.818,4.538 18,243.13397,218.46623,17.218994,23.30719,4.468 18,-10.219474,203.2811,27.660019,65.5654,4.431 18,347.16278,210.74768,16.23996,32.732025,4.392 18,194.46729,214.32584,20.276993,27.151352,4.379 18,281.97046,220.76299,19.899963,30.476349,4.373 18,584.51746,228.28044,21.709229,38.617416,4.358 18,290.1294,221.65193,20.92154,29.978027,4.357 18,617.7782,-20.79588,20.289062,45.804718,4.247 18,331.71198,229.23953,17.956055,32.665558,4.227 18,323.02637,222.11583,18.726593,33.203217,4.222 18,-17.273293,186.33887,50.25048,129.5705,4.196 18,209.98233,213.69664,19.747345,28.185516,4.174 18,596.26447,234.91498,38.383484,77.97101,4.143 18,436.56467,216.441,17.189117,33.445297,4.135 18,178.60808,215.44812,19.763885,27.339325,4.113 18,21.226244,196.76978,28.209524,70.86072,4.077 18,301.37982,201.1036,29.452942,48.54802,4.077 18,554.52905,339.14014,33.781006,58.67871,4.073 18,366.73962,210.57907,25.44934,50.73282,4.073 18,-1.4664268,193.88425,53.303303,109.73331,4.072 19,464.33975,217.85121,21.477844,47.498062,88.673 19,484.45642,215.24266,20.434753,47.337997,86.425 19,472.62836,215.42278,20.666199,44.452133,22.277 19,374.437,220.27281,22.770386,45.828903,14.836 19,1.8174374,203.37677,24.106764,77.82886,11.952 19,362.29062,223.69,23.514008,46.599365,8.428 19,427.74734,205.65941,15.470062,32.801712,7.88 19,30.353498,201.13394,25.948923,60.290253,6.305 19,14.533579,199.82,26.079641,71.36984,6.289 19,378.1504,221.21262,31.77417,59.132935,5.981 19,627.41205,-17.752728,17.044617,45.832043,5.934 19,-17.837955,-65.877464,56.373207,151.3315,5.897 19,-8.686848,465.79547,37.568985,91.26111,5.755 19,420.55972,206.08865,15.3185425,31.911804,5.714 19,613.246,455.01086,39.684998,107.36609,5.65 19,228.24326,218.04108,16.152054,24.263779,5.609 19,593.1612,160.33081,27.018677,76.89424,5.572 19,219.95573,216.50381,16.347733,25.211243,5.5 19,258.77182,216.06543,20.230743,30.21025,5.493 19,626.8088,488.726,20.650452,45.02014,5.477 19,384.42593,216.50778,18.969147,36.19644,5.46 19,-6.050437,489.37558,18.819065,41.918976,5.377 19,178.09119,214.61627,21.283203,28.00557,5.267 19,-73.33714,264.73178,201.21088,462.57925,5.258 19,-5.7877913,-17.69292,17.349792,42.187397,5.215 19,413.77795,211.98112,13.352325,27.710327,5.203 19,623.52893,-35.022575,25.927734,75.20961,5.185 19,-11.516975,-32.776108,29.832762,73.09441,5.178 19,441.31494,219.77408,21.725891,35.208206,5.15 19,583.32684,412.1819,71.45471,176.07886,5.067 19,211.289,214.27751,17.570084,28.13382,4.972 19,536.17725,311.12744,144.53308,340.3015,4.949 19,-21.517921,402.89014,79.06995,175.02747,4.936 19,603.6033,-57.198986,52.831787,139.3644,4.923 19,235.89685,219.82642,16.525497,23.847366,4.901 19,297.64883,214.30096,22.162323,35.337463,4.86 19,522.7725,218.14642,33.185486,55.688965,4.852 19,38.872684,213.6088,23.175587,44.970642,4.841 19,-13.522665,183.2269,46.51429,128.17502,4.832 19,251.41708,223.93124,18.835175,29.045929,4.819 19,598.475,186.88031,26.276062,81.90555,4.743 19,289.93054,221.51201,21.081696,30.331512,4.705 19,-4.46505,215.46344,19.655024,56.531982,4.653 19,378.8016,213.7099,18.463165,33.721527,4.62 19,202.34686,214.18936,18.727982,28.410156,4.619 19,494.31827,227.53082,237.13364,514.24243,4.534 19,281.9895,222.32455,20.169067,28.776215,4.488 19,305.74338,219.92334,21.308624,34.402588,4.373 19,618.0895,113.53629,21.538025,57.295937,4.332 19,266.42795,222.47948,19.23642,28.579178,4.276 19,299.33813,228.95955,19.263916,31.1642,4.274 19,360.26117,208.98557,36.52661,67.56506,4.236 20,490.07013,221.92818,23.544434,52.096237,87.487 20,517.2176,218.60152,22.583252,51.038467,82.814 20,380.97296,214.06548,29.673767,62.962143,13.145 20,571.30786,204.71764,29.011719,66.07509,12.378 20,506.82816,220.81587,20.62497,45.91472,9.049 20,442.1863,208.58421,17.539337,38.474915,7.531 20,0.0631547,203.24226,26.954165,66.8611,7.125 20,618.9245,218.57532,21.600769,50.24121,6.629 20,626.896,488.53244,20.131287,45.919403,6.538 20,627.37964,-17.831295,17.10791,45.776093,5.949 20,-17.86898,-65.64891,56.42531,150.50783,5.803 20,-8.766999,465.6627,37.61977,90.92386,5.662 20,202.47467,214.38083,19.021454,28.505692,5.538 20,314.18463,229.36685,20.879456,40.861847,5.418 20,612.8407,455.21613,39.58606,106.52557,5.372 20,265.94733,215.97409,20.576538,31.701706,5.299 20,-73.256714,264.96765,200.931,462.76746,5.26 20,-6.0466695,489.80472,18.594574,41.50522,5.248 20,420.9868,211.31093,15.68866,33.343155,5.2 20,-5.755978,-17.602663,17.2914,42.06127,5.191 20,4.0490255,179.70215,28.97118,68.20361,5.187 20,623.4926,-35.011166,25.986023,75.14429,5.18 20,-11.481833,-32.793743,29.875103,73.015976,5.171 20,583.0389,412.70837,71.5639,175.51532,5.168 20,392.39438,213.83273,20.377075,41.985672,5.153 20,210.62865,214.68048,18.564621,27.990234,5.13 20,535.87823,309.72522,145.1076,340.69177,5.124 20,-21.348106,403.64752,78.888,174.46075,5.036 20,250.83838,224.21545,19.454407,30.222382,4.929 20,219.1519,216.9466,17.5215,25.9673,4.915 20,582.0794,210.70872,24.687988,52.479996,4.897 20,193.85168,213.20833,20.369522,30.09787,4.878 20,603.905,-57.077953,52.613037,139.2874,4.838 20,495.17358,229.00543,236.34344,514.58356,4.794 20,306.16602,224.29799,21.685974,37.51848,4.789 20,170.33205,215.6083,21.28769,30.081665,4.774 20,24.829418,217.87692,35.285156,61.73105,4.701 20,347.46338,209.12633,16.692932,36.319046,4.675 20,570.3683,199.24146,19.39746,46.294388,4.648 20,281.99808,222.32164,20.73175,29.547302,4.586 20,558.0112,218.85852,31.75769,55.473633,4.574 20,274.3484,222.66356,19.95456,28.831406,4.531 20,386.41125,211.18842,38.259277,81.04181,4.513 20,402.54544,211.64484,16.755127,34.0822,4.461 20,298.68442,220.60774,20.918396,35.284363,4.45 20,259.14667,224.6785,19.06903,29.359894,4.429 20,355.31754,208.85754,16.54419,37.78183,4.429 20,-5.9774036,218.02475,20.006485,47.316956,4.365 20,427.21942,210.18398,16.457703,34.888214,4.345 20,18.512539,197.82503,32.827343,62.919174,4.335 20,555.5256,205.65714,17.759827,45.132492,4.309 20,322.20435,230.75778,20.999329,41.7865,4.281 20,289.91574,222.02982,21.448364,31.557922,4.276 20,323.60873,203.49692,18.065948,41.783752,4.255 21,542.53296,217.21925,26.035278,61.52632,96.692 21,576.9142,215.56023,23.015991,61.210495,93.955 21,560.6927,217.09155,20.502075,51.247314,11.069 21,616.9602,203.04152,22.120544,47.3873,7.165 21,306.43768,213.7835,20.898682,34.817,6.135 21,-17.91648,-66.03573,56.53331,151.70058,5.956 21,627.37427,-17.791473,17.084045,45.878677,5.905 21,530.5122,211.61789,30.016602,64.30716,5.883 21,626.5076,488.3944,20.405945,46.04413,5.776 21,611.3224,201.01472,19.308105,42.552536,5.765 21,612.7709,455.9939,39.507324,105.82129,5.644 21,-8.951395,465.38965,37.836853,91.49194,5.642 21,-2.9181504,196.49713,27.453856,69.33658,5.588 21,607.61597,212.17154,27.130554,53.368317,5.438 21,-6.3229303,489.27118,19.151878,42.08734,5.437 21,298.48257,215.89113,21.3078,30.601791,5.376 21,-73.16598,264.8191,201.001,462.66272,5.271 21,623.5215,-35.018112,25.904724,75.25323,5.143 21,314.59998,224.01843,21.130463,40.3515,5.114 21,582.9219,413.29773,71.75159,174.93018,5.111 21,-11.446306,-32.81922,29.802183,73.23693,5.089 21,-5.764594,-17.679272,17.340778,42.15765,5.059 21,518.77,213.72249,29.274475,58.901657,5.02 21,-21.495396,403.13226,79.12334,174.78424,4.993 21,536.3471,309.02307,144.45001,342.20074,4.987 21,617.04144,226.2238,21.762207,43.55153,4.973 21,603.51294,-56.990173,52.903564,139.50188,4.894 21,58.71456,194.98694,29.802162,63.234802,4.835 21,406.87164,204.57193,30.767517,68.35202,4.784 21,322.20718,221.93294,21.217834,45.94487,4.751 21,571.775,210.61833,20.333069,54.556778,4.719 21,417.88498,161.40306,19.111603,36.958862,4.677 21,494.61774,228.80624,237.44171,513.9435,4.621 21,193.97812,211.40967,19.696579,30.477875,4.597 21,203.02826,212.7346,18.318512,28.731934,4.563 21,236.29976,218.95483,16.022552,23.72374,4.56 21,1.6465724,219.90263,34.39921,62.143814,4.554 21,-2.9441655,163.3552,28.710949,80.34877,4.538 21,604.69586,201.48933,15.544556,27.310516,4.487 21,219.86717,217.52766,16.371231,23.790634,4.469 21,497.81616,291.6611,34.773438,54.03595,4.452 21,282.2363,214.67126,20.189331,28.3152,4.428 21,615.25073,222.6131,35.22351,101.21588,4.391 21,186.04999,212.81284,19.629776,29.538422,4.27 21,418.5462,238.82828,33.205658,67.91107,4.242 21,564.3195,220.1178,39.102234,77.84149,4.221 21,623.4817,210.12947,27.144775,66.439865,4.208 21,418.26093,212.39587,30.004517,67.753235,4.146 21,211.27939,214.26567,17.595352,26.444489,4.127 21,342.31625,214.98477,27.150482,62.50464,4.097 21,289.82202,214.17151,20.793396,29.690521,4.043 21,330.23862,228.95103,20.185028,47.096237,4.038 21,169.9811,213.02678,20.536316,29.018143,4.027 21,618.6164,196.31212,16.598572,33.70114,4.021 21,228.09526,218.63516,16.171997,23.539536,4.017 21,552.13965,211.0815,21.251526,54.76329,3.987 21,355.48492,204.87656,17.534851,41.10396,3.952 21,578.39734,231.15247,39.505005,98.51184,3.927 21,425.68912,161.48529,19.745483,36.37393,3.911 21,258.04675,217.90515,20.058228,27.470184,3.887 21,595.2239,224.29861,38.269897,88.52997,3.874 21,388.21304,207.17627,29.670502,62.923157,3.869 22,454.13782,215.72159,21.548035,46.617523,33.858 22,447.21402,218.24112,27.999908,79.5238,8.723 22,434.98843,214.89655,20.778168,45.28653,7.04 22,315.30576,217.40874,19.826141,32.47014,6.919 22,169.13542,210.42468,21.870834,32.356476,6.888 22,333.7055,216.05435,30.730286,74.041565,6.351 22,450.86807,208.05173,38.14868,71.99155,6.264 22,370.93927,233.3255,30.899689,69.46869,6.181 22,356.31146,224.83203,31.855774,74.55548,6.038 22,612.69916,455.86588,40.029602,105.908905,5.998 22,-17.896938,-66.2495,56.507328,152.66283,5.903 22,626.49994,488.3635,20.475464,45.974274,5.878 22,511.06277,208.50795,28.434296,74.98918,5.577 22,298.06342,215.76126,20.601715,30.30606,5.572 22,307.22806,216.20685,20.460693,31.624466,5.558 22,485.59784,218.59212,38.298035,95.752426,5.497 22,-8.648492,465.46136,37.46382,91.44031,5.407 22,-6.2190204,489.72214,19.04728,41.92874,5.285 22,321.90994,221.6469,20.196136,36.34813,5.249 22,-73.212494,265.23505,200.7706,462.41156,5.225 22,603.5166,-55.609562,52.945312,133.129,5.192 22,234.88995,216.83182,18.63327,27.275635,5.177 22,256.3547,216.19714,23.656189,31.906403,5.114 22,459.04538,229.89175,31.381805,76.092804,5.106 22,-11.433672,-32.59617,29.810303,72.900024,5.098 22,-5.774849,-17.583168,17.353275,42.048477,5.091 22,627.1267,-17.744925,17.182373,46.0259,5.061 22,623.1267,-34.412365,26.24414,74.50187,5.039 22,-21.407383,403.1496,78.908165,175.08417,4.937 22,536.2077,310.90295,144.08862,341.11816,4.9 22,489.67563,191.58627,22.688934,49.53122,4.9 22,582.75885,412.57117,72.07257,176.05908,4.859 22,420.2953,221.01991,30.05246,78.067825,4.82 22,36.334984,188.96466,30.368965,67.70618,4.769 22,492.87228,180.07289,29.55252,68.436554,4.762 22,251.00166,219.3873,32.65898,55.536682,4.722 22,430.82687,215.6802,28.62912,75.7424,4.692 22,185.43268,211.14703,21.032852,32.955963,4.654 22,483.23117,200.35722,19.714355,45.162308,4.643 22,347.5374,218.26427,30.026245,71.23302,4.632 22,169.80908,199.5364,32.23123,49.788147,4.627 22,226.85825,216.45876,18.961777,26.518753,4.591 22,468.58337,220.11514,39.674072,91.628845,4.586 22,494.51495,228.16235,237.10608,513.405,4.586 22,469.46304,71.04883,29.42862,77.27777,4.581 22,289.8067,213.43294,20.69696,29.732178,4.538 22,330.28873,227.59772,22.289246,50.701538,4.439 22,180.04729,202.56506,16.677872,26.68518,4.432 22,4.3670273,114.12179,30.567848,89.406044,4.364 22,441.684,216.48961,22.079254,48.85945,4.355 22,242.28667,216.8123,20.088333,28.807037,4.33 22,284.73438,202.5078,29.935883,47.79225,4.316 22,1.4597571,91.53885,25.600348,85.41144,4.298 22,-5.3226414,171.82741,17.724771,46.8152,4.285 22,585.893,-100.184166,74.85962,234.52478,4.263 22,193.32666,210.94383,20.822113,32.464905,4.24 22,445.44696,88.49943,26.985352,63.549446,4.227 22,334.46625,195.24199,50.671326,107.9731,4.217 22,-16.073051,169.59491,49.833183,132.57507,4.183 22,436.17242,228.94432,41.350647,98.61351,4.169 22,508.99603,196.16653,52.384644,110.159454,4.114 22,83.18335,200.34341,31.329292,46.50917,4.072 23,522.2295,211.18758,28.765015,67.90578,94.061 23,495.2577,211.8952,24.767212,64.758484,13.726 23,481.66214,212.06934,21.472473,55.460083,13.694 23,503.98514,213.83987,21.421295,52.233734,10.325 23,166.9173,208.11293,23.774994,35.514847,7.677 23,626.6239,487.3588,20.536682,46.139496,7.67 23,612.7408,452.5331,40.282166,110.989105,6.883 23,611.6883,-49.04255,40.340454,103.69525,6.779 23,450.84763,209.57462,33.15555,71.91223,6.329 23,487.7343,200.7062,25.211792,69.29022,6.274 23,547.6722,216.85135,39.346985,96.564026,5.96 23,627.40125,-17.230066,16.773865,46.92802,5.951 23,483.53326,214.76869,38.366272,90.84398,5.926 23,9.621863,205.0578,24.235527,48.59929,5.808 23,-17.886713,-65.90602,56.51854,152.40994,5.738 23,461.28372,209.0982,29.530182,51.334625,5.731 23,436.60538,209.09796,39.233276,87.05243,5.6 23,-8.723718,465.47632,37.581345,91.56531,5.581 23,-6.118901,489.39514,18.990128,41.940002,5.446 23,469.1589,213.678,30.493958,74.734665,5.328 23,0.25465727,101.98651,22.609592,64.075714,5.328 23,551.68036,196.00401,27.512695,63.076584,5.148 23,-72.68684,265.7868,200.09616,461.34406,5.142 23,515.34937,216.71469,40.96344,107.151184,5.127 23,536.2784,309.65558,144.20892,341.8687,5.093 23,-5.65517,-17.573107,17.282608,42.208755,5.036 23,0.24160981,191.38173,27.678003,65.57524,5.035 23,-17.6011,436.66763,55.193153,139.36264,5.004 23,-11.279251,-32.61686,29.66711,73.1054,4.961 23,313.61572,214.4737,22.010803,31.836517,4.898 23,582.6142,411.48053,72.15662,176.78363,4.852 23,2.6355827,149.01558,31.011974,82.34166,4.817 23,192.9451,211.93825,20.829193,31.47078,4.766 23,-39.848225,368.88678,109.721954,274.27826,4.765 23,522.60864,201.61371,20.30371,45.358246,4.756 23,227.304,215.3388,18.659683,27.604462,4.737 23,421.71295,202.32893,36.766937,81.257614,4.733 23,420.10382,199.96277,27.381409,57.191406,4.708 23,382.84644,186.4257,25.65213,69.19121,4.705 23,494.34982,230.0149,237.14774,512.38715,4.704 23,234.85664,215.53105,18.950134,28.930923,4.665 23,210.03766,213.44429,19.992523,29.247131,4.665 23,537.0745,199.11835,21.807678,51.90901,4.651 23,546.1217,205.12817,22.149536,52.124268,4.634 23,618.0834,205.785,19.262817,39.356476,4.626 23,411.10114,262.0298,33.639954,66.67032,4.612 23,57.87522,206.76433,34.139557,49.88359,4.611 23,370.7738,206.83954,40.28009,89.09711,4.601 23,343.22858,210.92511,26.855408,54.967102,4.595 23,580.28516,222.83463,39.138184,96.74475,4.571 23,149.12735,203.33466,33.571167,46.729218,4.57 23,511.41403,215.96141,30.729034,70.9648,4.557 23,588.51794,210.17706,18.739502,30.779343,4.553 23,585.7517,-103.10751,75.65082,237.82436,4.483 24,547.84155,218.16525,25.436096,59.859375,71.985 24,570.3274,218.35745,29.203064,61.408203,59.62 24,615.37964,196.08025,22.400146,58.81871,40.401 24,557.7192,215.72067,26.846375,61.539917,8.39 24,390.97675,222.30086,24.781128,47.205826,8.158 24,416.87378,189.39328,28.74646,73.10428,7.906 24,409.36792,176.20084,27.755676,77.57837,7.272 24,312.88794,211.23158,23.096863,37.639313,6.333 24,621.96686,-35.80398,27.818848,78.25281,6.241 24,450.84042,213.91046,30.135193,72.5939,6.143 24,334.84726,221.26254,29.91037,55.800873,6.07 24,330.47638,216.66823,22.651337,42.29451,6.035 24,1.6389763,224.75229,20.375778,34.989105,5.995 24,-8.551998,466.0776,37.336243,90.40903,5.959 24,562.34534,244.74576,34.93811,83.20361,5.956 24,364.96396,37.788494,33.52536,74.332275,5.906 24,-6.2364254,489.3379,18.932056,42.13983,5.878 24,486.00122,213.76074,33.492004,70.01514,5.812 24,-18.05052,-65.38606,56.52424,151.20978,5.774 24,447.95743,200.87892,19.515991,47.80925,5.752 24,612.994,453.18677,39.56433,109.28693,5.733 24,46.675514,211.40096,24.845161,35.311386,5.466 24,625.06775,193.57112,19.434814,52.005997,5.42 24,216.91998,212.63031,21.23993,33.05432,5.271 24,626.89307,-19.98168,18.05841,48.80161,5.206 24,536.2205,309.47943,144.29193,342.12616,5.193 24,421.80038,206.63097,37.951508,78.39241,5.181 24,-72.81032,265.8378,200.32108,461.33017,5.16 24,496.8592,216.80013,23.313599,47.082535,5.148 24,23.022345,216.288,25.410997,38.772247,5.114 24,-5.6656427,-17.628508,17.324402,42.259598,5.087 24,602.5218,-54.767277,53.503906,131.9384,5.032 24,159.76997,213.79626,24.183456,33.82753,5.017 24,-21.34523,403.68286,78.72546,174.44812,5.008 24,578.29156,231.54483,40.812805,99.34039,4.938 24,-5.207349,205.04065,17.247776,39.600983,4.932 24,582.8036,411.67877,71.89581,176.1936,4.927 24,-11.327381,-32.73086,29.641665,73.23327,4.922 24,321.51807,212.16948,23.246887,39.315292,4.893 24,-4.9576383,187.80539,18.159729,42.587143,4.892 24,295.92935,211.41354,23.020996,35.16565,4.875 24,595.5429,224.33517,39.666687,92.27103,4.871 24,131.88399,205.89406,33.1212,55.225845,4.861 24,437.15976,198.87549,28.912079,69.45334,4.834 24,485.45193,112.91867,27.735077,66.32214,4.815 24,-4.9492707,220.62906,17.500832,36.371643,4.784 24,494.71045,227.98016,237.2121,514.24097,4.723 24,585.7311,-101.24408,75.19354,234.88943,4.718 24,300.91672,205.05215,30.078491,48.565033,4.686 24,621.5767,478.77817,29.30133,65.24051,4.672 25,327.8094,211.29126,21.757812,39.582153,25.732 25,423.8135,206.79968,26.572083,65.21106,9.824 25,545.40155,219.5785,42.200928,78.61186,9.458 25,356.69434,226.65242,31.44101,61.48494,8.202 25,155.41751,207.75032,18.395508,29.042923,8.137 25,-0.03425002,215.02686,24.143843,48.623413,7.996 25,217.4997,212.5376,22.923904,37.26355,7.531 25,200.19112,210.80045,24.580841,36.908447,7.147 25,622.6917,-32.329067,27.043762,75.255135,6.629 25,621.59906,477.34048,29.586365,66.813934,6.57 25,485.83148,140.01425,29.892029,98.160675,6.46 25,627.0582,-18.196276,17.770325,46.79218,6.408 25,-11.861514,481.24475,29.662529,60.03125,6.346 25,-8.572433,466.19812,37.524124,90.11261,6.138 25,419.301,221.63072,40.89279,83.16411,6.092 25,-6.15573,490.15704,18.754332,40.99713,6.056 25,550.1375,219.73418,26.41211,42.99849,6.034 25,602.564,-57.1154,52.957947,136.578,5.828 25,602.244,210.39043,17.731873,43.41542,5.546 25,-17.824198,-63.85981,56.228004,145.25377,5.487 25,336.12592,207.19545,20.783722,38.609085,5.481 25,603.3661,430.547,56.531982,144.06335,5.442 25,342.79965,222.49797,30.504974,59.528427,5.427 25,429.96875,228.25868,23.552734,50.27101,5.396 25,2.815063,196.96216,31.068924,63.08844,5.368 25,413.8461,230.764,30.099884,63.378174,5.324 25,372.0075,215.62897,38.789368,76.38129,5.279 25,-5.654398,-17.52901,17.278402,42.093132,5.213 25,-72.80773,265.63922,200.50464,462.1269,5.188 25,449.52423,227.66464,43.294525,80.12048,5.188 25,578.4528,220.93108,41.849304,89.98781,5.167 25,560.3524,220.53432,43.546875,89.4377,5.102 25,361.90616,218.35172,21.778992,41.952362,5.083 25,536.26215,310.19635,144.56763,341.76642,5.053 25,170.51964,207.06813,17.31363,28.50383,5.039 25,-11.344997,-32.7011,29.691067,73.138565,5.032 25,-21.238089,403.9272,78.60082,174.18372,4.988 25,149.34831,205.73459,29.895905,43.6687,4.926 25,536.3375,218.21355,61.150024,126.22624,4.914 25,617.86847,488.2708,21.415527,45.14966,4.837 25,203.15326,207.06068,32.327454,51.605698,4.813 25,594.7061,-47.434418,43.834167,100.22622,4.707 25,617.5915,149.60327,20.735779,51.589508,4.7 25,484.2824,218.1114,34.671326,83.938644,4.689 25,305.069,203.91478,23.100403,40.675827,4.667 25,494.61212,228.6217,236.8974,512.45526,4.646 25,450.1369,135.01532,35.44452,97.51669,4.545 25,386.09552,222.4444,41.19284,86.51495,4.514 25,478.05112,178.19937,29.670563,75.77475,4.472 25,225.09985,218.09375,21.908585,35.666702,4.437 25,468.96664,181.8,26.658386,73.05446,4.435 25,586.05035,-102.37054,75.116516,234.55731,4.422 25,596.5681,220.40079,39.37152,96.16885,4.389 25,618.1777,119.91113,20.622498,50.163544,4.316 25,459.09857,217.02505,19.379639,39.624237,4.306 25,-3.0368042,224.59975,30.402405,64.2744,4.303 25,618.9638,221.14397,20.151001,44.252335,4.294 25,606.19836,36.761986,24.806152,52.229424,4.277 26,312.87357,213.13528,23.84256,41.92946,52.651 26,500.753,195.90268,35.49652,101.62274,11.619 26,-1.540153,206.65045,25.864065,71.5759,9.046 26,493.41034,192.92596,29.516174,85.5148,7.46 26,621.8039,476.36914,29.071594,68.01062,7.433 26,365.34485,235.5062,34.231903,66.046326,6.994 26,514.0269,194.4302,30.597473,76.82132,6.681 26,426.57892,208.06729,29.788269,76.37448,6.547 26,-5.5940742,212.06773,19.545958,51.936905,6.232 26,347.9342,209.18591,30.34314,59.70758,6.046 26,307.6434,211.90295,32.969025,68.591064,6.015 26,15.591794,209.44771,33.204346,63.936447,5.971 26,472.32175,193.19339,35.110657,85.11838,5.854 26,622.98236,-34.425655,27.203125,76.33052,5.802 26,627.32764,-18.76069,17.411743,47.272083,5.657 26,132.66739,204.46378,32.63028,47.21698,5.635 26,372.9341,217.64432,31.110504,67.840546,5.627 26,453.8426,201.74586,37.993958,85.69719,5.568 26,-12.379966,479.7548,30.401066,61.00363,5.471 26,397.85306,223.903,29.885925,73.40053,5.47 26,328.13763,217.96112,23.539368,39.532257,5.402 26,436.80933,197.77437,30.708405,71.58797,5.394 26,-17.787613,-64.01229,56.11578,146.25378,5.347 26,-6.3582926,489.81683,19.025421,41.511475,5.342 26,345.37717,211.96347,22.600983,40.700058,5.305 26,6.3018966,194.86208,29.294561,67.30473,5.249 26,35.51958,210.53532,32.95828,58.671585,5.212 26,145.59341,204.99803,18.910507,33.85234,5.192 26,-72.9766,265.38095,200.63559,462.43985,5.171 26,-8.851074,465.10608,37.679596,91.91046,5.161 26,602.96606,-57.193398,53.580017,132.7562,5.151 26,-5.716274,-17.60102,17.372839,42.082912,5.133 26,482.6172,157.63158,28.620636,86.647064,5.132 26,603.75024,429.81012,55.219177,144.30725,5.103 26,536.4558,310.38492,143.87463,342.3801,5.088 26,333.89682,206.57288,28.578796,51.414917,5.086 26,452.4566,178.15038,26.845612,77.19063,5.026 26,-11.32893,-32.524887,29.632256,72.88255,4.987 26,532.03723,187.0317,32.74231,68.78108,4.969 26,-21.410534,402.94614,78.69855,174.88956,4.854 26,618.6527,487.9093,20.39862,43.842285,4.834 26,594.7298,-46.330624,43.63153,95.394325,4.769 26,481.22208,195.97913,50.393036,131.26978,4.757 26,418.47162,229.55388,41.44565,102.10875,4.686 26,493.6848,228.71863,237.77979,512.5769,4.639 26,154.88737,204.01195,17.769272,32.7202,4.566 26,523.7472,182.4926,50.67914,114.557236,4.529 26,397.24756,261.52603,32.192474,73.22833,4.508 27,290.369,221.08792,25.304047,42.632385,33.585 27,548.16565,201.80867,38.172546,101.44035,9.364 27,381.12677,210.98111,31.301666,62.562256,8.447 27,399.15433,209.81792,29.411285,68.29976,7.413 27,156.951,206.62233,28.432358,63.249313,7.25 27,550.4866,186.60744,29.704346,80.481,7.054 27,356.278,208.49985,32.9946,56.96805,6.989 27,375.8463,218.18825,23.650604,42.495956,6.566 27,361.98254,234.65363,34.923615,63.615112,6.535 27,499.84943,207.03558,39.297913,89.29599,6.36 27,621.76294,477.17438,29.351257,66.80463,6.357 27,-1.0075247,206.84805,29.18664,73.2251,6.341 27,579.9298,209.19798,40.43817,101.62221,6.273 27,394.7409,210.73257,23.141174,46.65692,6.081 27,622.38983,-33.537636,26.843262,77.50651,5.998 27,124.30788,215.27231,31.25531,58.239838,5.91 27,514.9916,204.63907,38.337585,94.387115,5.849 27,343.8742,213.52098,24.656921,36.95627,5.711 27,174.65909,209.93109,31.10794,66.69241,5.704 27,329.30234,218.65752,22.400696,35.970352,5.641 27,338.00534,224.16928,21.808624,37.618927,5.576 27,-17.779747,-64.69284,56.19757,147.83833,5.531 27,626.9955,-19.83274,17.52301,49.11439,5.511 27,602.22943,-57.46401,53.590576,135.59615,5.503 27,-8.683662,465.23355,37.604027,92.09555,5.335 27,412.89676,200.4985,28.346893,65.65662,5.328 27,-11.996679,479.40195,29.681429,62.15567,5.318 27,463.33398,200.31064,29.182129,76.36905,5.315 27,-5.640358,-17.540733,17.261013,42.084957,5.302 27,419.4252,210.00964,37.969055,86.40457,5.276 27,3.4454024,208.30487,38.0795,96.403564,5.24 27,603.16846,429.49017,56.309692,144.80524,5.218 27,351.1052,218.16562,25.279541,38.349396,5.216 27,-72.94409,265.5824,200.95009,462.68872,5.185 27,346.88065,240.23805,36.91388,62.558365,5.159 27,361.6764,206.75168,22.57315,39.52101,5.145 27,140.04091,216.30707,30.26236,60.254517,5.094 27,554.8788,186.15834,51.934204,128.66588,5.072 27,-6.1564817,490.10703,18.881466,41.375275,5.066 27,301.97525,217.99539,22.016571,39.524597,5.045 27,-11.323355,-32.55618,29.66811,72.97238,5.043 27,536.42926,309.6814,143.67365,343.05994,5.007 27,409.0965,202.25252,22.093872,45.62552,4.998 27,-6.3490796,224.17517,20.77112,51.334045,4.986 27,129.32425,211.85814,20.356003,36.605606,4.897 27,421.52716,135.83519,29.378906,73.66963,4.888 27,-5.0274687,155.55992,17.432251,42.23999,4.862 27,-21.522411,402.57104,78.83304,174.81421,4.785 27,563.02185,181.88507,28.412964,72.53656,4.765 27,417.5843,197.64801,20.622192,42.593964,4.735 27,109.58828,215.49721,32.724968,52.62944,4.722 27,322.54218,213.73375,20.666412,35.85753,4.714 27,186.28111,239.05516,33.989426,55.984695,4.667 27,324.21423,216.32306,32.052185,64.69946,4.652 28,250.1493,215.02866,30.28099,53.523895,45.095 28,426.46146,193.71097,33.587006,77.380035,10.366 28,103.24577,207.56754,24.714783,41.33928,9.798 28,449.69794,164.21701,30.686615,89.265076,8.361 28,585.8923,48.143566,31.912048,76.515015,7.866 28,593.1119,179.1691,44.102356,164.40424,7.31 28,581.00415,119.76745,27.673096,93.42921,7.213 28,349.86874,213.48122,26.347687,39.546295,7.011 28,368.387,202.59523,25.67337,43.645386,7.003 28,338.2928,213.0929,22.719147,36.734116,6.839 28,159.8161,210.12128,22.646286,39.923523,6.712 28,313.9929,201.91914,22.599396,37.63289,6.617 28,495.69308,147.51328,30.595306,72.00688,6.578 28,378.03348,237.60258,37.170746,63.7426,6.529 28,153.67801,202.1078,21.867157,44.71309,6.181 28,243.96623,213.53297,23.960007,45.959335,6.132 28,612.8264,453.8942,39.38739,107.78952,6.077 28,368.0204,208.85715,36.487335,58.005585,6.012 28,459.90924,178.07239,28.92514,78.03851,5.961 28,622.5982,-34.272034,27.334656,77.45098,5.905 28,438.82095,170.37299,29.597015,85.58063,5.789 28,470.01437,174.70444,28.754486,74.7393,5.73 28,626.9115,488.23495,20.312866,45.085663,5.704 28,29.168024,221.5676,32.78755,57.24466,5.55 28,-17.851332,-65.264694,56.155685,149.66057,5.493 28,353.5059,213.17812,44.43463,75.119675,5.439 28,-8.809127,465.00958,37.637844,92.58618,5.432 28,381.0708,204.11288,27.993988,46.11714,5.399 28,329.8039,211.57143,21.509857,35.043488,5.359 28,541.2916,176.44833,55.565613,110.57355,5.315 28,-73.05912,264.64612,201.21634,463.60583,5.292 28,305.97968,200.67546,21.581787,37.42485,5.236 28,578.12866,80.75717,32.368286,94.43765,5.155 28,626.8421,-19.996191,18.127258,48.99833,5.15 28,-5.670186,-17.685162,17.294155,42.33853,5.136 28,-6.22229,489.28412,18.887732,42.56555,5.113 28,-11.340702,-32.60842,29.751854,73.1772,5.058 28,603.0321,-57.389534,53.67102,135.16821,5.046 28,536.5786,309.6234,143.75128,342.87195,5.043 28,593.9989,-47.603058,44.816956,98.4811,4.991 28,168.71931,217.47743,21.189682,32.68091,4.989 28,356.2445,205.99768,33.471558,51.516357,4.976 28,163.62044,196.22765,28.462006,50.06218,4.952 28,385.3079,214.13112,42.821686,75.989426,4.937 28,298.12375,201.38737,20.632538,36.68831,4.904 28,572.6974,51.322784,32.655457,80.449326,4.896 28,582.8282,411.55994,71.925476,176.70935,4.895 28,-21.575394,402.2805,79.30817,175.51126,4.893 28,507.58185,148.5326,31.38733,70.09161,4.826 28,204.13573,202.48642,18.984558,29.815643,4.805 28,521.0233,148.41118,33.559814,66.37436,4.771 28,211.6785,205.5626,17.752808,28.84822,4.754 28,322.13293,209.09671,21.059662,34.862488,4.685 28,586.00653,-101.009796,75.262085,233.51064,4.682 28,290.56866,203.85248,21.079834,36.565445,4.666 28,219.9684,215.1353,16.663498,26.213364,4.646 28,177.43756,218.63107,20.46701,31.615631,4.618 29,186.71455,220.92047,32.699753,60.759827,86.914 29,76.37824,204.38765,31.300087,53.834213,10.87 29,484.28403,176.20694,40.33365,111.30026,9.787 29,494.188,163.35693,50.26056,133.20123,8.15 29,321.92398,202.9981,22.80426,37.516495,7.566 29,622.4921,-33.399857,27.64978,74.92911,7.324 29,517.95233,214.34222,31.763489,85.971985,6.931 29,-6.5706673,490.32462,19.08015,41.61313,6.5 29,306.79645,201.38272,20.433716,37.72371,6.236 29,-12.1627245,478.84103,29.944355,63.601288,6.231 29,613.19116,452.8361,39.188354,109.18637,6.159 29,178.96335,235.9118,34.261993,69.4115,6.054 29,626.74255,487.43735,20.425537,45.934723,5.874 29,191.05653,208.74988,23.882828,49.55481,5.863 29,540.9874,130.09464,29.64148,77.62735,5.721 29,283.32733,206.62395,20.334991,33.353928,5.673 29,-17.854727,-65.659096,56.28134,149.45787,5.513 29,39.63846,218.8189,26.30735,42.891373,5.473 29,402.30194,491.2403,19.179718,38.598145,5.409 29,134.99945,196.57574,26.509064,50.11693,5.38 29,394.8729,490.9168,19.620789,40.748962,5.335 29,602.7503,-54.613003,53.27643,133.05577,5.315 29,462.52225,187.61774,55.38199,139.0603,5.292 29,290.55737,204.01225,20.37793,36.61229,5.27 29,443.03864,157.57886,19.188873,48.036194,5.267 29,292.9345,190.15831,29.452087,54.537155,5.231 29,626.92865,-18.742247,18.064087,46.899967,5.205 29,-11.444033,-32.67316,29.815668,72.969025,5.181 29,310.6789,193.73766,29.226929,50.497055,5.161 29,110.5349,201.14363,25.056458,56.182114,5.151 29,355.4886,208.733,30.043457,50.93222,5.114 29,461.92355,156.87561,26.777618,78.22661,5.095 29,509.79474,157.93735,29.728943,85.58362,5.084 29,-5.780673,-17.778486,17.36145,42.17414,5.058 29,316.23203,212.0776,18.40866,32.222992,5.034 29,345.672,218.00366,23.053558,37.60016,4.966 29,-73.092026,265.72052,200.47635,461.44415,4.955 29,337.66812,207.94199,22.52945,35.82701,4.948 29,410.64072,492.55826,19.39914,37.59659,4.946 29,450.603,202.93863,44.214752,91.63748,4.937 29,433.65118,208.20834,43.246826,83.15921,4.893 29,400.67154,215.69359,44.879303,73.08745,4.867 29,536.4662,310.74677,143.36414,342.70868,4.866 29,379.09998,210.54701,32.411102,49.976547,4.834 29,130.31218,197.5499,20.924133,41.94934,4.826 29,582.8832,411.339,71.80444,176.83313,4.819 29,524.3961,130.01366,28.802795,83.29683,4.799 29,550.8958,142.95435,33.050964,74.10477,4.759 29,417.64896,211.72745,43.60898,78.240265,4.752 29,582.0991,195.53554,39.641968,75.82161,4.749 29,338.86334,197.3549,18.852692,33.25879,4.67 29,-39.99615,368.92664,110.00664,272.02783,4.633 29,329.5796,211.82196,20.980377,33.105408,4.606 29,137.00641,224.56989,22.083801,33.761383,4.587 29,-18.167423,435.3459,55.657585,141.05035,4.577 29,418.97092,492.7089,19.770294,37.86136,4.573 30,92.0884,211.24477,35.989662,87.46202,69.475 30,88.75308,216.83151,25.252625,58.401398,13.739 30,5.5635796,168.06213,26.252026,70.1452,7.188 30,626.85706,-19.034208,17.864319,48.312767,6.623 30,469.68964,164.25949,27.584229,70.004364,6.571 30,104.22405,209.46721,29.703377,66.75865,6.167 30,612.8439,453.92538,39.73053,107.842316,6.111 30,621.92883,478.52292,28.813477,65.99155,5.986 30,459.58557,177.41838,30.214264,63.58783,5.973 30,336.89835,194.85495,23.066498,44.662567,5.865 30,479.74643,160.53111,22.013794,61.174316,5.809 30,-17.825687,-65.72195,56.016937,150.52464,5.661 30,610.48486,-47.45349,42.081787,99.55566,5.591 30,69.11213,212.27419,31.38424,63.213486,5.586 30,503.33368,150.64816,28.583496,87.94653,5.555 30,371.8115,207.93973,31.662048,61.939056,5.309 30,199.87994,199.13501,22.435303,33.221893,5.282 30,-8.826935,464.88098,37.71911,92.47687,5.253 30,113.128784,194.16841,20.081238,48.18416,5.203 30,-72.81622,265.0637,200.15945,462.94144,5.192 30,64.64805,205.21666,22.138985,43.339508,5.144 30,-6.227728,489.19833,18.850723,42.279022,5.143 30,-5.7121716,-17.687447,17.342915,42.26594,5.093 30,-11.33275,-32.528793,29.708178,72.80222,5.056 30,551.3936,3.1268578,27.612549,76.24904,4.986 30,54.41042,198.05278,35.206142,77.64232,4.967 30,585.5773,-101.81116,75.40393,240.86708,4.962 30,582.7344,412.02914,71.92682,176.41837,4.914 30,-21.475143,402.46335,78.51347,174.95364,4.905 30,530.8425,140.32632,33.20276,76.74791,4.864 30,536.70526,310.57867,142.91534,342.09918,4.861 30,612.9832,93.01178,26.576965,89.272736,4.843 30,353.01318,210.00098,23.695343,42.536316,4.729 30,294.02148,180.7547,28.354065,60.230316,4.704 30,185.43318,196.79103,22.582275,34.419144,4.67 30,388.52307,198.88147,32.858154,65.067444,4.619 30,234.89793,216.61559,18.662933,31.395905,4.601 30,441.05667,191.4848,20.23288,37.112198,4.592 30,540.4353,-11.47419,29.79486,65.585045,4.437 30,493.83533,228.03662,238.07324,514.7672,4.396 30,459.62598,163.55156,18.845428,46.527145,4.32 30,278.83496,175.7781,31.186249,60.647263,4.287 30,494.38,169.86896,30.085388,65.95343,4.281 30,-7.8277802,173.05946,26.295147,74.760635,4.274 30,465.51904,165.43045,20.026855,52.883972,4.245 30,357.03384,210.52715,30.600769,57.281876,4.231 30,489.29065,-177.14258,236.9867,420.2563,4.193 30,226.86252,213.12901,19.473694,34.358887,4.189 30,250.85005,208.20073,18.161789,29.087769,4.16 30,542.5624,-17.126434,52.734436,120.20157,4.158 30,130.76543,190.52174,18.563263,40.51741,4.149 31,43.52578,201.29913,33.725426,62.978455,18.143 31,468.93735,168.10855,27.531769,67.89102,13.056 31,29.106054,204.83072,35.112167,59.27307,8.575 31,388.52057,195.63443,16.679474,44.001358,7.033 31,318.65427,191.81964,29.68695,51.612686,6.592 31,315.0073,202.23753,22.03003,38.045807,6.544 31,331.6297,189.7259,31.924835,51.22815,6.267 31,627.0985,488.9286,19.967163,44.36499,6.264 31,-18.032528,-64.88453,56.091534,149.77718,6.233 31,-6.287236,489.6892,18.8875,42.075745,6.018 31,72.181404,199.56316,24.478554,50.883484,5.967 31,-12.24977,478.45963,30.318405,61.5737,5.908 31,113.96716,183.53792,20.950562,48.85614,5.908 31,622.6223,-33.572678,27.242249,76.4438,5.789 31,306.51608,204.85359,21.045197,35.357956,5.776 31,612.99,457.04755,39.44159,105.110596,5.676 31,454.92377,194.49239,24.297577,40.709244,5.611 31,626.99316,-18.863838,17.690735,47.81879,5.516 31,59.64226,198.09595,31.731686,64.83954,5.458 31,602.6411,-55.07452,53.030823,136.24469,5.412 31,29.788675,186.28653,53.555534,92.785065,5.24 31,-73.44589,265.12555,201.16098,462.31708,5.206 31,297.8709,205.59921,20.826569,36.05623,5.203 31,-21.587387,402.58337,78.955246,175.26697,4.98 31,-11.377845,-32.554417,29.80223,73.026924,4.957 31,380.15344,220.1556,30.467407,59.856186,4.938 31,-5.7101464,-17.671356,17.232023,42.418884,4.927 31,-16.4876,178.60663,53.361244,121.95285,4.919 31,536.3978,310.08856,143.47919,342.41522,4.842 31,525.7735,155.40623,32.3136,81.331726,4.839 31,583.0135,411.24176,72.0733,177.17462,4.8 31,601.1486,122.091255,36.772766,80.770775,4.738 31,250.57913,202.03735,19.929321,31.704483,4.626 31,258.05206,201.58485,19.963562,33.345535,4.567 31,274.08887,207.8344,21.516968,34.770462,4.559 31,2.4233556,202.06602,42.266273,80.46715,4.546 31,493.7514,227.5911,237.65356,514.4247,4.498 31,502.84113,174.7644,26.269653,61.555542,4.45 31,93.35865,183.5955,26.460533,63.41942,4.423 31,474.15253,188.62741,32.933044,56.48369,4.359 31,-6.4378386,206.7782,19.201862,43.488052,4.351 31,417.79572,194.94405,32.896576,54.630875,4.342 31,265.06076,195.6335,21.168488,32.7614,4.315 31,15.900019,200.76122,54.367554,102.13063,4.295 31,68.67657,177.2815,39.9321,73.5199,4.26 31,18.936998,174.88281,43.65117,78.76991,4.25 31,54.64792,199.76134,24.251343,41.777603,4.217 31,619.08856,490.43716,19.995056,41.552826,4.192 31,585.7644,-101.113266,76.568665,234.53789,4.19 31,292.22226,189.44531,30.635681,55.4254,4.148 31,337.29312,216.8994,21.964966,38.274796,4.144 31,594.9205,-43.629215,44.196594,96.87464,4.109 31,-4.777722,299.47153,17.766872,39.239777,4.091 32,3.310386,211.72867,31.263237,63.88852,9.462 32,19.52374,213.95518,32.19583,66.3495,8.045 32,402.96097,210.31673,18.792023,43.87152,8.036 32,330.78918,203.26846,32.402008,53.006866,8.011 32,416.8639,213.68758,22.132233,46.99684,7.557 32,475.90454,172.1402,29.579712,70.32211,7.304 32,343.0559,209.70796,24.346313,38.757767,7.005 32,562.2761,158.82605,32.756165,79.30832,6.857 32,405.24878,214.33658,28.971619,70.428375,6.778 32,41.9197,215.16467,22.711197,56.456177,6.551 32,50.459137,196.28938,28.525734,68.239395,6.469 32,366.38538,207.75475,29.052002,66.36253,6.385 32,352.43335,208.6257,22.992615,41.747208,6.341 32,-12.043961,-41.245472,40.524178,102.95936,6.184 32,-8.628287,465.65363,37.55393,91.07587,5.861 32,611.14636,-47.795864,40.982544,100.21928,5.776 32,314.23535,208.98415,23.95575,41.92079,5.738 32,487.47974,180.12851,22.590576,52.71591,5.568 32,250.70074,210.87277,33.315857,53.459167,5.565 32,612.7516,455.44623,39.33423,106.35327,5.499 32,627.02094,-18.151281,17.616638,45.914448,5.429 32,11.329479,188.94687,55.3716,105.109406,5.341 32,-73.81031,264.6584,202.05804,463.68665,5.296 32,305.31247,208.7827,23.619904,41.41797,5.188 32,626.8088,488.07605,20.399414,46.259583,5.18 32,-6.272845,489.11737,19.2129,42.670105,5.177 32,-5.6651583,-17.318485,17.224747,42.178547,5.177 32,583.11304,412.79434,71.497925,175.26431,5.081 32,417.94095,221.6421,33.71216,67.84117,5.015 32,248.04166,214.36461,24.536896,37.614426,4.976 32,362.20242,208.62283,22.506775,44.22986,4.943 32,-9.812347,204.30205,30.755312,64.11421,4.938 32,-4.526815,188.88686,17.29896,40.354706,4.889 32,79.684685,188.74277,27.438416,60.417435,4.886 32,265.3988,203.92165,21.489044,32.4281,4.886 32,-21.346626,403.50446,78.896065,174.5777,4.88 32,209.915,213.88235,20.33928,30.968048,4.829 32,217.24069,216.29572,21.006454,30.56102,4.761 32,536.35126,310.39056,143.51575,342.60785,4.746 32,60.65335,196.63846,29.096725,64.591675,4.705 32,392.94202,201.80193,25.136719,61.59767,4.679 32,293.01398,194.215,28.643433,58.87526,4.679 32,348.3072,215.74191,31.217834,60.750275,4.579 32,272.01758,207.36699,24.482727,39.5356,4.577 32,-9.61124,213.59247,39.140423,91.86127,4.569 32,493.85297,228.43414,237.60541,514.31354,4.535 32,257.2728,208.74374,22.340668,36.182053,4.506 32,168.1482,210.32243,23.235413,37.361664,4.476 33,458.06766,212.49068,20.087097,43.482407,20.925 33,432.7373,209.17105,21.489227,51.44574,17.519 33,440.8653,212.37918,19.789886,45.957,10.357 33,462.99423,206.32098,21.973785,41.444992,8.742 33,385.96115,199.32864,19.572784,48.631668,7.768 33,362.53583,199.07448,18.299774,39.42708,7.417 33,423.00635,210.48299,35.783173,81.65471,7.391 33,341.04935,211.96295,33.2377,67.37427,6.881 33,345.03506,199.29654,21.324219,38.583298,6.847 33,315.978,197.08577,32.535187,56.546265,6.628 33,-12.203307,-40.316994,40.993443,101.216324,6.27 33,437.90497,213.15703,36.7536,78.74715,6.212 33,-8.462368,465.654,37.658333,91.31305,6.183 33,459.63873,209.74178,28.500946,71.124374,6.17 33,5.369135,194.76251,28.416079,70.4303,6.1 33,419.24115,205.13425,25.35791,59.51306,6.065 33,-5.5941143,-17.33754,16.857044,43.148113,6.064 33,626.91296,-18.186407,17.525879,45.77544,6.058 33,330.92572,200.15102,33.1427,56.60414,5.988 33,603.276,150.63385,31.654602,86.28665,5.953 33,623.213,-34.15422,26.273071,75.38395,5.715 33,-11.758961,481.01868,29.28726,60.87793,5.599 33,305.44614,199.3362,24.852692,47.6456,5.486 33,-15.024679,168.25974,49.821175,133.55447,5.475 33,612.8409,455.4949,39.523376,106.45676,5.463 33,-5.377673,184.38547,17.77004,46.779236,5.265 33,-9.294981,174.0945,28.45552,69.32292,5.224 33,-6.011917,490.34525,18.609087,41.244904,5.215 33,21.162361,179.1884,28.653297,70.05713,5.127 33,-73.13933,266.0905,200.48999,461.0359,5.095 33,451.23798,207.90996,19.917603,42.813446,5.09 33,352.97015,208.75644,22.684479,42.464188,5.035 33,13.39263,171.62537,52.999565,110.5004,5.015 33,626.42725,487.61353,20.940002,46.93451,5.009 33,582.83856,412.4292,71.956665,175.82275,5.002 33,536.4081,310.02045,143.72607,342.45526,4.953 33,251.03494,201.47176,19.95816,35.217636,4.91 33,-21.242233,403.78024,78.670586,174.56387,4.857 33,602.9724,-55.868496,52.803284,134.75706,4.839 33,356.72717,194.06602,28.987732,57.29216,4.817 33,389.24957,207.68839,37.201813,86.79077,4.79 33,294.80725,188.1085,28.494019,56.333755,4.776 33,406.58084,210.28958,37.046722,84.43616,4.736 33,465.87708,235.46216,35.838898,73.95929,4.724 33,452.13177,227.06296,32.370117,73.09747,4.709 33,493.9697,229.11125,236.91092,511.93726,4.65 33,31.676424,187.79816,27.893843,69.37845,4.588 33,168.37944,209.93352,20.946106,32.781937,4.542 33,336.79956,222.94788,24.42691,43.684082,4.511 33,185.4615,213.49683,20.127274,30.377731,4.503 33,217.44876,203.13068,20.325623,31.155548,4.488 33,381.88184,205.8673,28.575745,72.040085,4.433 34,462.90045,204.58276,28.809448,73.31448,16.136 34,361.96313,202.59145,21.069061,44.766953,13.372 34,486.81128,204.41345,27.663452,67.57013,12.468 34,472.41397,201.45175,21.512482,52.554916,8.387 34,434.5624,210.60745,30.780487,71.87448,8.275 34,479.6721,204.68153,23.353973,53.750656,8.074 34,35.13187,170.02771,29.21983,67.8761,7.94 34,528.1492,207.79068,21.814331,45.401993,7.632 34,324.4316,200.28258,30.410187,51.99254,7.554 34,-11.235073,-32.485218,29.971434,76.45541,6.621 34,-5.809888,-16.721584,17.789982,43.654232,6.558 34,612.8487,453.4126,39.726746,107.96332,6.293 34,448.20523,212.51016,22.715668,41.252228,5.925 34,626.68835,487.8163,20.642334,46.248993,5.774 34,-16.869087,-61.348156,56.380573,143.75491,5.698 34,355.90802,203.42447,31.317993,69.540924,5.629 34,308.19974,203.29834,32.31949,59.0383,5.555 34,-8.463818,465.20837,37.431847,91.94263,5.536 34,622.8922,-34.16326,26.79956,76.48316,5.444 34,614.79626,103.18112,24.4328,103.93637,5.422 34,457.18866,211.73581,24.326843,52.7536,5.373 34,298.39124,202.74245,23.119324,45.173416,5.326 34,-1.813575,178.1315,30.073486,73.95218,5.308 34,-6.1164427,489.97083,18.98412,41.318115,5.298 34,-72.98359,265.54828,200.65137,461.21405,5.292 34,627.3375,-19.150112,17.356018,47.986046,5.261 34,-11.916476,479.68408,30.034641,61.803345,5.234 34,402.6734,211.75414,30.290192,62.69487,5.229 34,12.868441,157.33736,55.49285,106.72026,5.225 34,109.49953,197.78204,29.236069,53.17836,5.078 34,379.89148,195.68239,31.343994,64.670334,5.015 34,272.70087,195.64659,24.066376,44.12741,5.001 34,20.629255,175.63791,31.213778,70.60631,4.933 34,-21.390305,402.91,78.79022,174.8887,4.881 34,602.6548,-56.94444,53.32306,139.30968,4.872 34,536.6044,309.15225,143.19696,343.56345,4.866 34,345.76514,200.08824,19.839874,38.566864,4.796 34,531.1786,190.12595,17.956482,39.71263,4.777 34,-14.225179,155.21292,49.657135,132.78293,4.752 34,490.46176,-184.05682,236.24417,423.84073,4.752 34,242.65521,203.69867,19.671051,33.00833,4.693 34,588.7899,110.65021,30.709656,94.64142,4.673 34,439.54105,213.18208,22.290924,39.068542,4.659 34,288.58554,201.82277,23.216675,46.323883,4.653 34,334.6846,209.1957,25.09085,39.40538,4.634 34,3.4818888,179.88293,40.305862,93.90933,4.616 34,345.78952,217.5148,36.14438,71.538055,4.608 34,582.9032,411.51385,71.712036,177.16852,4.602 35,557.6545,218.23674,24.471252,57.66777,87.094 35,522.50085,214.58905,31.581116,70.280334,55.605 35,370.7705,204.96933,23.48822,50.774673,32.831 35,328.51547,210.13895,24.856262,46.537292,9.96 35,439.50238,197.84158,28.90149,71.34018,8.333 35,585.741,121.825775,29.84198,93.84918,7.639 35,627.0728,489.89038,19.988892,43.271606,6.539 35,514.3109,227.54149,44.441772,92.40242,6.435 35,-17.402512,-63.48343,56.568443,147.18523,6.261 35,623.19653,-34.150536,26.37732,77.11836,6.117 35,483.66837,208.34116,37.977264,88.39972,5.808 35,605.8136,189.5693,29.808289,67.61191,5.666 35,627.3775,-19.234503,17.346008,48.860504,5.633 35,195.04488,208.7091,18.053299,29.308044,5.564 35,594.9096,170.05101,33.32196,84.153854,5.53 35,-12.348196,478.77682,30.252018,62.099518,5.497 35,612.78046,456.67444,39.31726,105.172485,5.495 35,384.5068,205.17493,19.51181,41.7787,5.493 35,334.84088,195.64467,29.453613,59.89856,5.433 35,471.4891,202.96826,36.644165,88.72717,5.429 35,393.50156,208.32573,20.582123,38.510193,5.403 35,-73.06463,265.50427,200.83914,461.8352,5.297 35,-5.5408883,-17.571354,16.825426,43.399166,5.253 35,83.56859,204.40079,28.844292,57.306793,5.208 35,-6.2567835,489.92157,18.9295,41.5567,5.195 35,536.1336,308.36993,144.45593,342.97662,5.173 35,602.3744,-56.25139,53.593628,136.94307,5.157 35,-11.256627,-33.434788,29.09534,74.5308,5.154 35,535.84766,211.63719,21.963135,49.435562,5.125 35,202.81177,209.72697,17.159302,27.1837,5.11 35,316.79187,210.37814,31.221405,56.36194,5.106 35,1.1555481,183.91386,25.425472,68.947525,5.0 35,582.9002,412.7599,72.0423,175.35962,4.998 35,187.01591,214.69902,18.392624,29.316345,4.993 35,-21.469202,402.90646,78.77023,174.86978,4.849 35,449.92444,211.73135,34.30725,65.35211,4.82 35,351.01425,199.89607,23.21576,48.799316,4.783 35,361.6896,212.7529,24.139252,40.941605,4.781 35,547.76715,223.44412,38.89679,74.58487,4.775 35,494.80048,229.35223,236.78735,513.63055,4.636 35,-4.9053144,209.97504,18.855827,47.328094,4.634 35,543.6648,213.10083,29.313599,64.763916,4.617 35,457.7496,202.33777,20.037384,46.07643,4.537 35,580.50836,150.14987,29.509338,90.84447,4.526 35,371.50983,197.03786,39.056732,65.5952,4.517 36,394.839,212.69688,23.424866,47.770615,55.908 36,545.90955,209.7049,42.882874,120.38953,14.778 36,340.61008,212.92645,28.803955,53.513123,11.523 36,617.858,170.87311,21.06195,64.47934,10.739 36,507.41522,222.86565,34.449707,51.07399,8.455 36,41.422615,211.16823,29.959312,58.107956,7.899 36,-5.921752,-16.039028,18.375664,43.961857,6.937 36,494.11072,214.02951,55.90265,95.43933,6.64 36,-17.561573,-62.23658,56.825726,144.84781,6.612 36,-11.305486,-31.48457,29.843155,74.09719,6.579 36,573.3991,191.14253,30.257996,74.38774,6.425 36,195.05191,203.636,17.761017,28.364395,6.1 36,476.44702,215.32458,30.839844,46.18805,6.014 36,507.73923,211.35184,58.14688,139.07767,5.688 36,325.13147,215.2637,30.514343,57.916718,5.653 36,349.30725,202.03246,30.227356,61.524826,5.573 36,541.202,207.96536,32.18048,72.44443,5.54 36,627.11536,-18.787397,17.5,47.5972,5.474 36,574.7944,195.69537,46.61133,124.11139,5.419 36,513.088,201.486,41.204712,79.72183,5.366 36,613.0659,454.32507,39.397583,107.44824,5.354 36,611.02563,-47.63244,41.149048,99.79578,5.323 36,-12.331602,477.84033,30.397694,62.97168,5.302 36,202.65344,217.22621,18.490356,28.843185,5.285 36,-6.2744713,489.04404,19.176544,42.520233,5.261 36,-73.496666,265.0597,201.38348,462.07983,5.252 36,515.4901,170.45865,18.645752,44.718018,5.224 36,582.7659,176.2474,37.244934,94.75131,5.159 36,556.08966,195.82935,31.651978,88.78818,5.142 36,417.1701,213.0825,21.943695,37.285202,5.114 36,582.9862,412.39703,71.66528,175.62982,5.06 36,-1.8227124,39.573242,27.648642,78.64131,5.05 36,592.16,226.60983,25.14441,39.454865,5.041 36,178.62526,200.49857,18.383286,34.274124,5.026 36,536.1753,308.86774,144.19647,343.17133,4.992 36,540.61285,182.76534,30.033691,71.53601,4.9 36,626.6431,488.67487,20.628845,45.158325,4.884 36,-21.675737,401.92664,79.01903,175.64026,4.848 36,482.05463,219.89206,45.170105,73.16818,4.818 36,2.0373154,214.27675,40.859226,80.80467,4.772 36,489.72906,206.38474,19.30841,35.52707,4.771 36,-15.410297,158.23947,49.330074,130.16483,4.704 36,188.05719,201.9549,17.93715,30.391754,4.696 36,558.7838,170.71371,52.951416,122.075745,4.687 36,-5.496802,195.87486,19.111563,47.584854,4.67 36,170.58595,198.01517,18.721695,37.217346,4.65 37,431.81674,214.63892,29.024689,58.495483,90.898 37,539.6481,148.79434,29.465454,79.17325,8.214 37,195.31145,203.24997,18.14862,31.755249,8.062 37,363.252,210.11626,30.230957,63.083755,7.865 37,402.93036,203.56691,32.617798,64.83678,7.852 37,-5.731803,-17.364662,17.27676,43.47028,6.826 37,-11.26164,-32.460022,29.326115,74.21999,6.502 37,449.15192,216.41385,21.390259,38.868195,6.466 37,545.2597,204.45193,31.805603,67.23093,6.339 37,-17.463789,-63.568893,56.8487,146.11163,6.339 37,627.0338,489.2627,19.93396,44.812134,6.153 37,597.04047,215.23949,31.936157,64.98244,6.098 37,457.7428,216.92651,21.728271,36.494797,6.04 37,613.06683,456.2383,38.511047,105.46048,5.98 37,543.41266,179.53769,26.82837,66.36746,5.866 37,0.49687028,204.80693,25.143885,73.02605,5.832 37,348.0835,220.41417,33.46765,57.885696,5.814 37,489.28156,215.164,20.87677,33.711838,5.794 37,626.32056,-22.083622,18.210632,54.997616,5.698 37,177.39804,210.76128,21.612183,33.87732,5.686 37,-12.059441,479.26556,30.089703,62.241394,5.62 37,604.76965,187.5318,31.23767,68.93494,5.447 37,594.01605,186.1232,19.567078,33.94699,5.438 37,-6.0961094,489.6717,18.852375,41.67383,5.43 37,611.52576,-49.64648,40.910217,103.3216,5.414 37,186.10815,213.09798,19.835052,30.564667,5.376 37,619.1956,187.78006,18.109741,39.885162,5.267 37,-73.34695,265.2962,201.64334,462.52533,5.262 37,202.38501,204.00226,17.166382,28.640793,5.125 37,212.0856,200.14297,15.125641,25.568207,5.111 37,6.5652857,197.51123,32.898796,76.66748,5.1 37,583.3933,412.2372,71.22766,175.9949,5.064 37,-5.6640434,215.88467,19.351238,51.794983,5.061 37,529.5058,208.82835,20.604126,37.962296,5.02 37,535.94116,308.98975,145.36304,342.60474,4.982 37,523.6607,201.31012,14.621033,26.65622,4.974 37,-21.406353,403.11523,78.801025,174.8971,4.966 37,165.35994,200.08218,29.863892,50.35971,4.889 37,243.14064,215.0249,17.833725,32.785873,4.867 37,250.09964,209.4085,20.09198,30.068787,4.834 37,386.36365,219.59991,42.005157,64.734436,4.803 37,306.47488,201.98772,42.157196,84.77751,4.732 37,-5.491543,192.03607,19.019215,51.952896,4.721 37,369.87503,216.79543,42.26535,68.50566,4.627 37,287.51114,195.62447,22.383759,37.97084,4.592 37,381.73706,202.02731,31.05957,62.26889,4.571 37,494.69684,229.23938,236.12689,513.21326,4.551 37,590.1788,186.6245,30.328186,66.08441,4.46 38,506.45157,224.34184,32.440277,78.60481,97.291 38,496.46347,222.69781,22.918915,50.067078,12.53 38,193.74118,212.70264,20.110687,33.155792,9.361 38,486.42407,224.21124,28.309204,64.57294,8.92 38,544.8026,233.85272,23.11499,39.975555,7.781 38,512.1613,221.6407,23.476746,49.53865,7.101 38,-17.52427,-64.61083,57.024292,149.66005,6.809 38,620.1546,219.6955,19.500916,46.608368,6.738 38,601.1476,233.89856,18.91211,33.53351,6.639 38,169.87375,218.0725,21.308502,34.06845,6.397 38,-5.177349,198.00342,19.20043,48.883743,6.297 38,220.83672,207.19266,13.4366455,23.980545,6.067 38,468.76196,223.50389,36.740326,78.87154,6.019 38,177.25752,214.17868,20.603806,35.591614,5.996 38,627.4609,-17.57542,17.033264,45.588043,5.97 38,381.15692,214.82016,28.502838,67.18579,5.909 38,-8.74134,466.03134,37.66739,90.3804,5.886 38,482.16187,221.771,21.958588,48.46292,5.871 38,620.23346,188.17303,17.053528,48.973663,5.813 38,186.26495,215.06792,20.299622,33.84546,5.785 38,621.7801,477.8549,28.955383,66.90048,5.738 38,531.1651,229.1561,40.82361,75.94989,5.607 38,551.8367,241.83093,22.747131,33.469543,5.592 38,-5.4138327,-17.53095,16.718643,43.10766,5.583 38,611.42694,-46.6681,41.20038,97.878876,5.52 38,535.80225,309.07477,145.05255,339.7774,5.417 38,-11.508012,-32.776886,29.546589,73.85303,5.344 38,623.51355,214.97614,25.100342,66.089264,5.32 38,-6.2468905,489.61926,19.14543,42.021973,5.288 38,582.77515,413.07254,72.08447,174.957,5.288 38,367.01675,217.83217,30.162506,65.81511,5.244 38,-73.193085,265.98795,201.41982,462.14682,5.224 38,6.8723297,189.73718,27.53888,70.42468,5.184 38,201.9026,218.83147,17.950974,31.684341,5.174 38,-9.935826,200.20514,28.3665,68.93787,5.116 38,214.15205,206.9274,14.62764,26.368729,5.036 38,-17.5998,437.36377,55.455975,138.57422,4.986 38,490.09766,219.02151,20.940613,39.89569,4.968 38,495.36716,232.92747,237.12741,508.4182,4.902 38,588.15625,221.82819,17.954285,34.084137,4.87 38,619.07104,138.77486,19.096008,50.17868,4.868 38,25.034801,273.59708,36.319942,61.0903,4.801 38,332.5489,217.41237,32.430847,54.883377,4.779 38,589.4199,132.23668,28.294434,71.872116,4.755 38,520.3469,224.54155,32.937744,58.12999,4.701 38,-40.286552,367.26868,110.59081,275.3376,4.701 38,579.12695,212.9739,17.538757,38.70134,4.657 38,-6.0234714,159.26685,17.667356,43.61885,4.616 38,296.57767,205.56618,22.159943,35.411728,4.557 38,405.154,213.14597,38.138824,78.70279,4.527 38,389.4259,211.16214,37.751038,80.19522,4.497 38,219.79713,218.31056,15.870865,26.09134,4.484 38,544.70636,238.42545,33.631836,55.468567,4.361 38,322.9744,206.8689,17.743073,34.008926,4.317 38,2.3382747,192.29884,22.88049,51.634216,4.314 39,183.61128,207.74011,21.663239,32.87439,8.677 39,622.3793,-33.946632,27.622803,74.06309,8.616 39,212.05217,200.11717,14.873093,27.744873,7.842 39,443.92026,207.44572,30.350922,79.2379,7.495 39,472.27112,212.25003,28.842651,71.57132,6.955 39,-6.217008,489.70554,19.103533,42.858185,6.766 39,-5.052469,195.67578,18.86273,50.91501,6.563 39,0.9606302,146.88654,24.454927,88.20558,6.515 39,-0.39934158,189.28767,25.64228,75.75774,6.442 39,542.8536,247.03113,34.77838,75.488525,6.433 39,-11.403718,479.2545,29.145756,62.480194,6.334 39,-17.70333,-66.43466,56.290367,152.04465,6.277 39,622.31244,476.0577,27.919373,67.85202,6.251 39,423.2832,203.33037,36.025696,84.56862,6.009 39,602.65326,-54.73044,53.275085,134.84976,5.82 39,52.014603,205.93675,34.683807,59.889114,5.488 39,626.63586,-19.071018,18.090393,47.752323,5.417 39,574.6482,-19.263264,53.202515,120.07985,5.36 39,411.30536,207.45297,31.996826,69.06064,5.34 39,371.76117,205.26837,20.870636,46.23166,5.289 39,541.31354,-21.104237,55.102783,124.0941,5.198 39,585.3793,-99.073,75.22284,232.47104,5.194 39,-11.410188,-32.571735,29.725822,72.660286,5.162 39,128.81316,208.53397,24.603912,40.654266,5.058 39,-4.760318,140.52666,18.777447,44.25154,5.054 39,597.0847,41.67373,39.247925,105.55659,5.002 39,-72.71643,266.64835,199.9233,460.3326,4.986 39,-5.816591,-17.675426,17.341297,42.067497,4.969 39,396.83517,218.7118,33.549774,65.07701,4.916 39,612.32153,-19.977282,29.88269,71.2721,4.856 39,536.5921,310.81207,143.38678,341.4572,4.838 39,304.60284,201.37271,22.167603,37.24739,4.83 39,-21.552553,403.26425,78.35283,174.31796,4.829 39,-4.662332,128.05283,17.013725,37.96747,4.799 39,583.0206,412.42453,71.81464,176.31265,4.79 39,566.06433,237.89362,26.327759,46.540344,4.748 39,-4.2698812,173.45059,18.750366,52.410812,4.693 39,431.77,187.304,23.691742,70.933,4.68 39,80.38051,202.88031,45.1774,70.29321,4.611 39,236.15746,230.50096,31.584366,55.79869,4.602 39,69.20407,189.17209,29.729538,62.51007,4.576 39,136.62686,215.40298,23.300537,37.216248,4.571 39,369.98294,211.91623,41.71878,79.458496,4.495 39,612.1246,29.841354,37.570374,104.89424,4.475 39,-13.989542,124.83135,48.440002,135.8258,4.466 39,618.0035,12.752283,22.756287,52.9178,4.445 39,225.92592,240.57887,21.060791,35.018936,4.425 39,-9.270021,121.29789,29.338053,70.83199,4.425 39,494.1795,228.75687,237.6535,512.9945,4.421 39,298.45493,197.13977,20.015106,32.21866,4.366 39,603.19604,58.477547,54.483887,147.05133,4.327 39,355.73502,206.95645,41.746307,68.02655,4.321 39,153.04056,214.3986,21.929382,38.554825,4.29 39,455.60406,199.79646,37.550262,79.99272,4.286 39,562.8834,-10.152924,41.188232,93.629265,4.281 39,186.92015,199.48662,17.436768,30.147171,4.265 39,597.2053,-1.7049904,39.93695,103.935,4.25 39,489.3626,-178.58865,236.31903,419.53604,4.217 39,2.2593975,142.58951,21.150774,47.812683,4.204 39,322.11188,196.7289,20.39441,36.35988,4.182 40,158.83315,212.53297,22.217636,40.340103,12.065 40,467.16516,213.20657,39.793274,100.05505,9.032 40,83.206116,212.38707,32.507492,54.568436,7.813 40,3.7989902,207.45972,36.69661,82.44812,7.592 40,612.83514,454.23083,39.542236,108.352905,6.287 40,528.6034,224.38394,36.444397,79.618774,6.255 40,0.6605315,180.42877,24.69366,67.70538,6.132 40,60.061226,200.77664,32.28002,57.710236,6.074 40,602.3992,-56.368362,54.050354,138.71931,5.935 40,68.91683,212.12958,34.150627,53.278625,5.894 40,626.53436,488.313,20.76361,45.2052,5.801 40,-6.0863876,490.6107,18.712662,40.564484,5.769 40,627.0315,-17.548458,16.910522,47.185482,5.739 40,-11.6051655,480.8963,29.343567,60.991516,5.709 40,46.124035,199.29306,30.801807,56.729706,5.625 40,-18.138723,-66.090385,56.28379,151.02538,5.52 40,622.06714,-33.455452,27.170471,76.660706,5.402 40,-8.787676,464.89297,37.61646,92.69284,5.379 40,295.96295,211.66426,23.623688,38.49002,5.33 40,-73.50691,265.1994,201.48177,462.4721,5.328 40,310.19107,200.86914,28.781464,51.603348,5.303 40,356.0078,230.73781,34.296265,56.436752,5.298 40,99.25575,207.7608,32.331482,60.699036,5.216 40,585.1939,-101.57437,76.17505,236.47757,5.138 40,132.29855,209.39746,29.785507,53.071777,5.113 40,392.09576,227.9931,37.394836,64.78241,5.042 40,76.415016,190.4223,29.983078,63.449097,5.021 40,-4.448601,201.0429,18.278164,44.09401,5.007 40,575.4197,-12.28706,51.86206,123.56244,4.994 40,-11.254461,-32.59102,29.697313,73.13519,4.96 40,536.1061,309.89594,143.70258,342.99762,4.957 40,582.88104,411.7948,71.91937,176.15906,4.954 40,-5.6222296,-17.510761,17.210566,42.159065,4.891 40,-9.206506,187.96594,28.532894,72.534485,4.871 40,598.8237,86.16689,36.386597,98.49445,4.856 40,381.58722,217.4707,31.565857,52.665833,4.82 40,272.32266,215.66933,22.246582,27.88211,4.795 40,498.54688,213.9658,42.521057,91.03215,4.792 40,-21.435066,402.35608,78.64575,175.18298,4.766 40,550.17096,-32.535603,28.862793,71.974365,4.733 40,418.2706,226.74434,43.276917,82.70598,4.721 40,598.77795,4.6756973,38.007996,107.00505,4.715 40,-6.5960145,216.53229,37.244045,91.30707,4.71 40,618.7411,490.40195,20.640137,42.189545,4.689 40,322.88623,212.61465,19.444702,33.955734,4.622 40,36.809105,205.09346,30.11277,59.121445,4.595 40,493.3325,229.19461,237.9495,511.91367,4.547 40,554.21,0.9553795,20.209595,33.556316,4.539 40,281.72488,205.13577,21.658508,30.493652,4.534 40,314.6197,215.90627,20.195953,32.994385,4.48 40,194.72171,210.72072,17.4664,32.319885,4.454 40,195.9832,198.19942,16.128387,33.09224,4.448 40,266.02792,210.45265,21.349884,26.957596,4.419 40,617.8037,106.25185,21.259094,53.27913,4.412 40,564.3065,5.8727036,41.103394,101.78659,4.392 40,8.833113,188.91135,56.190353,101.08478,4.362 40,186.93158,217.0048,19.546783,28.435364,4.337 40,540.56946,-12.952602,54.204224,117.82716,4.299 40,435.45197,221.18542,43.634888,83.15192,4.249 40,488.8193,-176.78119,238.04166,418.41583,4.241 41,116.891205,216.7471,25.343155,40.269257,14.432 41,102.36139,213.50362,30.850647,49.719803,7.63 41,-17.687908,-63.68576,56.54465,148.04285,6.968 41,413.96378,225.15381,26.073395,45.865448,6.732 41,602.38196,-56.679977,53.666748,138.97862,6.438 41,287.68628,201.02362,24.585022,38.6541,6.354 41,314.0591,222.42224,20.281677,33.080994,5.972 41,612.80707,453.87964,39.662354,108.31964,5.808 41,396.0877,213.24673,33.447235,59.866974,5.77 41,627.2126,-17.707066,16.851624,46.64668,5.738 41,626.5776,487.77878,20.923279,45.52304,5.712 41,4.5415926,218.18651,29.462032,63.697952,5.594 41,305.8765,222.43805,20.673798,34.277863,5.537 41,-8.694835,464.69128,37.60072,93.15216,5.453 41,373.33453,214.59348,29.516449,62.841827,5.423 41,-5.4105234,-17.243544,16.804806,42.83263,5.306 41,296.91385,213.83905,21.198181,35.124374,5.297 41,-11.923117,479.52344,29.875004,61.924194,5.288 41,623.28424,-32.859474,26.061768,75.28013,5.278 41,-73.06977,265.47058,200.96672,462.8639,5.259 41,258.05475,208.30173,20.464172,27.147583,5.165 41,-11.288111,-32.593655,29.504719,73.8963,5.134 41,250.4766,214.59753,19.560394,29.291504,5.119 41,162.11992,212.42467,20.058212,31.386154,5.117 41,-6.0802135,490.27542,18.751724,40.701508,5.047 41,265.07617,194.34038,20.87085,30.280182,4.942 41,10.425627,184.40689,57.44879,108.22354,4.931 41,317.10568,220.73935,32.562103,53.608124,4.927 41,-5.5662394,213.78915,19.375257,47.486053,4.867 41,585.19214,-98.892715,76.11328,233.14218,4.837 41,-21.530573,402.45782,78.783264,175.19836,4.811 41,583.10785,411.3739,71.533936,176.79565,4.793 41,329.81815,226.16464,22.515808,40.533417,4.757 41,536.78986,310.20724,143.37378,342.52835,4.735 41,339.99435,218.74951,29.907745,58.527924,4.676 41,281.05786,211.75375,22.955719,37.16771,4.668 41,38.8315,204.5031,30.658085,64.199814,4.584 41,305.34146,199.37688,22.086182,37.3815,4.547 41,169.64775,212.63113,19.846863,32.985245,4.513 41,293.0192,189.39789,30.470184,53.61032,4.45 41,363.4424,234.6713,32.302094,62.72534,4.437 41,441.28128,222.9086,21.428864,32.30249,4.436 41,493.9071,228.86703,237.4986,513.40625,4.414 41,419.89468,207.64885,31.027374,58.08705,4.374 41,539.01666,175.95085,57.958435,106.39754,4.271 41,124.85172,222.42233,25.918968,38.75656,4.171 41,-4.655963,130.59001,30.075169,74.84529,4.148 41,241.57121,213.43938,20.452377,29.38002,4.086 41,322.03534,222.48434,21.254211,34.673004,4.038 41,113.60779,214.411,41.840073,61.16484,4.016 41,-13.580199,188.2785,48.72648,129.25745,3.994 41,537.24634,219.86249,36.836426,59.6622,3.992 41,-10.066203,206.04585,29.957008,69.316635,3.951 41,-7.977977,324.75446,37.463398,111.49686,3.928 41,348.79605,234.59474,29.807495,61.79207,3.908 41,273.58762,207.23567,23.891388,30.676834,3.907 41,556.074,137.36053,29.767029,73.929,3.906 41,267.5314,203.35445,32.78839,52.77507,3.9 41,178.3126,213.32668,19.538864,33.468384,3.885 42,53.285088,217.56636,29.131157,45.503555,19.798 42,443.0235,208.37384,30.921753,74.43396,12.347 42,594.9321,185.13751,29.606995,72.048645,11.473 42,448.2827,230.64487,33.7619,67.783325,10.157 42,68.264534,213.33997,24.980469,45.058838,9.85 42,129.62267,202.51988,20.06491,45.72029,8.726 42,421.01038,198.78151,29.690887,81.57362,7.184 42,627.2478,-16.290285,17.322144,44.243946,7.023 42,381.8067,203.06735,28.832,69.50552,6.992 42,623.13666,-34.272575,26.356445,75.230064,6.844 42,-11.291763,-32.17494,29.835354,74.21806,6.374 42,430.62494,186.74951,30.365234,92.97293,6.355 42,122.0508,210.3821,21.938095,36.839493,6.16 42,-18.28554,-64.87136,56.984276,148.69206,5.981 42,603.5381,-55.820786,52.59784,135.35017,5.977 42,-6.0941176,-17.204514,17.742243,43.245052,5.973 42,436.79803,241.66478,33.893158,62.597305,5.922 42,283.7988,195.03699,31.793121,51.54825,5.859 42,325.77423,223.51334,31.781006,59.467224,5.834 42,-12.384066,477.68726,30.31057,63.479004,5.743 42,36.46736,208.2952,34.281174,56.6586,5.664 42,612.9229,454.51166,39.39496,107.28485,5.384 42,603.921,167.62396,30.169434,81.83061,5.367 42,626.83234,487.63538,20.58612,45.288208,5.355 42,-6.3282084,489.35483,19.078505,42.484406,5.335 42,234.35631,216.17499,19.508118,28.118042,5.24 42,583.1532,411.78198,71.58185,176.36316,5.107 42,-73.24205,265.14877,201.42412,462.72952,5.063 42,248.59619,193.99161,21.501831,30.611267,5.034 42,-5.5864663,184.66472,19.086023,43.461426,4.98 42,585.3754,-98.50433,75.30365,231.09795,4.98 42,-21.350998,403.4142,78.97513,174.73868,4.918 42,305.31952,209.66553,46.12259,76.2663,4.878 42,337.0306,210.32576,44.229614,86.03496,4.867 42,536.3511,310.2035,143.693,342.57935,4.857 42,297.1647,211.38403,23.492035,37.634857,4.775 42,365.0816,206.9254,30.734467,71.8354,4.754 42,32.62737,214.79555,23.2896,42.235336,4.716 42,587.3049,123.07297,32.570374,79.52118,4.683 42,-12.366325,74.96176,31.880621,69.20621,4.669 42,271.53778,206.73907,47.256134,69.63098,4.549 42,493.85968,227.3251,237.70001,514.63306,4.538 42,381.3405,197.98656,54.12552,108.08913,4.513 42,268.56732,195.69398,31.26538,49.17375,4.503 42,279.5213,210.43167,24.17392,38.342957,4.471 42,526.76154,164.94133,27.782776,65.75696,4.433 42,241.8418,209.4362,20.097778,26.321838,4.411 42,-4.9915714,228.32146,18.188694,48.392136,4.392 42,617.71027,189.61038,21.217163,57.023514,4.333 42,562.8809,34.732807,32.61261,80.82373,4.322 42,217.64224,214.38814,19.930603,28.432373,4.31 42,619.2525,-14.881271,17.02063,40.833096,4.306 42,-7.84731,86.98004,21.452047,46.0907,4.296 42,107.39037,200.92552,17.985283,37.580322,4.288 42,225.76971,214.49187,20.321655,28.706345,4.271 43,-5.8903313,233.13718,20.998055,52.667114,9.794 43,-1.0045409,223.15,28.852217,65.284454,9.39 43,540.6779,146.26854,32.486145,90.0966,7.946 43,398.22617,216.08977,27.861206,70.62706,6.916 43,554.39746,208.26244,31.955383,93.71504,6.232 43,571.955,187.13542,50.381348,148.37776,6.089 43,612.68805,455.52457,39.59192,106.75827,6.051 43,-6.3056335,490.03635,18.773376,41.770355,5.94 43,-10.766777,207.51424,29.80692,68.63725,5.931 43,623.09906,-33.778316,26.474365,75.46437,5.92 43,-12.183254,479.35437,29.80492,63.539246,5.867 43,289.16812,218.9652,22.865295,37.221207,5.757 43,-17.770115,-64.630745,56.29748,147.5036,5.665 43,235.30722,222.73274,18.454208,26.910614,5.349 43,626.9542,488.01315,20.456299,46.06064,5.346 43,-11.51129,-32.630547,29.85804,72.852745,5.211 43,-5.801753,-17.762009,17.334208,42.16178,5.196 43,627.0354,-19.875566,17.960938,48.634487,5.183 43,276.70132,197.31326,30.600922,54.52249,5.126 43,482.8805,221.04921,32.928894,72.6013,5.088 43,316.92685,228.6156,31.625732,65.57648,5.059 43,8.480568,218.53136,33.3943,62.138077,5.02 43,536.77795,311.3281,142.76514,340.38943,4.903 43,298.14288,220.09477,22.461945,38.704453,4.898 43,571.5382,112.08456,29.661255,92.38532,4.898 43,-73.541885,265.8396,200.46582,461.5614,4.847 43,448.1527,179.59749,26.068054,74.77425,4.809 43,582.82635,412.8373,72.05151,175.7042,4.802 43,614.0738,186.51407,26.04071,75.96805,4.77 43,384.4078,214.78273,23.214111,55.73842,4.767 43,271.43954,205.43448,24.265411,39.724518,4.756 43,547.32733,202.82541,48.881714,141.98929,4.744 43,504.53162,223.22864,22.473389,48.67108,4.729 43,526.52014,147.12115,30.917725,82.47801,4.717 43,602.52783,-57.477562,53.990417,137.6784,4.693 43,372.5318,202.24315,29.468445,62.78029,4.629 43,-18.527927,435.62805,55.95902,140.052,4.615 43,306.80545,225.75587,20.618683,38.340927,4.572 43,545.94446,173.46564,31.939331,83.397766,4.56 43,411.75714,216.91176,30.207214,75.00902,4.542 43,-39.863415,369.32843,109.72629,272.4126,4.538 43,515.7677,240.204,40.492126,87.32799,4.529 43,527.7824,57.008114,35.378662,95.48787,4.418 43,280.9791,218.02892,22.108246,36.530716,4.392 43,-6.0854235,218.09314,19.819078,45.753662,4.379 43,494.4719,227.6402,237.43411,513.81915,4.369 43,614.3894,75.62155,25.097778,76.229004,4.298 43,594.3485,-47.362514,44.42627,101.22305,4.241 43,488.9249,-180.9086,236.67398,419.56894,4.24 43,226.97992,221.69281,18.958984,27.920792,4.232 43,359.76804,206.36371,29.181366,68.417114,4.229 43,218.19214,221.06741,19.372925,28.459824,4.197 43,245.4704,189.91592,29.325806,50.0085,4.176 43,314.49252,227.55475,19.830841,38.417267,4.161 43,509.0131,156.04138,28.262604,77.17993,4.16 43,333.18848,235.92958,31.799957,66.836716,4.106 43,477.76434,200.60773,55.563416,115.607666,4.085 43,597.2016,200.07623,30.903198,72.34515,4.066 43,558.80176,232.51892,51.187195,139.55804,4.043 43,623.067,78.43306,26.51709,75.448044,4.011 43,242.32019,217.13768,19.23236,25.300232,3.972 43,585.8051,-104.41827,76.19006,239.04468,3.953 43,498.74158,215.4177,44.445007,87.80713,3.945 44,608.3062,136.09274,25.918701,71.43144,8.692 44,516.8378,195.00473,32.815796,83.2272,7.483 44,613.14844,453.95923,39.718018,108.47516,6.429 44,626.7826,488.88968,20.589783,45.093903,6.377 44,388.83618,212.33556,31.865662,74.37068,6.16 44,581.19977,126.49996,29.984375,72.510506,5.681 44,532.5629,179.42719,28.657898,74.30261,5.573 44,-8.564188,465.3086,37.416412,91.18396,5.572 44,-17.84936,-64.14998,56.34327,146.20511,5.492 44,610.7075,-47.869175,41.86499,100.27385,5.489 44,-6.3994956,489.31177,19.30061,42.336304,5.403 44,397.21072,194.58456,28.639313,62.701935,5.388 44,-12.320775,479.18768,30.372658,61.48889,5.286 44,282.11765,174.34781,35.130554,64.41394,5.25 44,-5.63622,-17.449377,17.226444,42.058598,5.223 44,386.90305,247.28137,34.296295,70.2829,5.208 44,269.1012,182.49495,31.451233,56.420746,5.11 44,536.4048,308.9703,143.66052,343.43973,5.075 44,-11.333849,-32.595573,29.711496,72.98706,5.073 44,-73.14971,265.35504,200.31894,461.66638,5.034 44,-21.488441,402.3967,78.73458,175.23587,4.948 44,581.3981,150.7253,40.472534,91.18399,4.928 44,626.6936,-19.545147,18.171204,49.142284,4.689 44,492.77496,228.47046,238.22571,514.06415,4.653 44,582.93463,409.22647,71.74664,178.2839,4.639 44,477.0158,182.81277,54.0307,110.44403,4.633 44,542.07996,83.26128,26.919312,74.517334,4.525 44,593.166,130.1502,23.127258,52.676636,4.496 44,458.7495,204.34883,32.59149,74.5341,4.479 44,390.17297,201.465,23.978302,55.27643,4.439 44,590.1253,142.67497,50.17108,122.20723,4.435 44,545.6107,206.62064,44.941223,77.62714,4.425 44,489.25446,-181.80536,236.58527,422.89832,4.423 44,511.3435,176.8103,25.296143,74.43097,4.42 44,533.49097,90.94272,30.86145,93.0715,4.33 44,404.07803,211.50952,32.259552,78.42102,4.312 44,256.23303,186.29001,22.438263,34.36209,4.217 44,508.2561,189.85754,55.71875,114.20398,4.136 44,586.3111,-104.76323,75.983765,238.48965,4.135 44,611.8006,142.02457,35.698914,99.3745,4.056 44,66.93822,201.44672,31.49115,57.35901,4.055 44,585.3043,221.99709,35.7771,61.750504,4.022 44,382.599,183.10718,55.04431,103.36713,4.004 44,419.95245,226.13426,29.926727,69.19328,3.997 44,412.33853,242.77742,31.64856,63.942307,3.979 44,413.78223,183.98076,54.32733,107.570724,3.969 44,332.36926,216.53088,31.733337,66.85202,3.965 44,297.69464,221.14244,21.64389,35.902634,3.96 44,402.38867,186.48979,43.838806,77.62981,3.939 44,597.3326,461.0497,39.241882,99.78958,3.914 44,603.0626,-28.686596,54.065918,139.14685,3.903 44,300.41263,176.8658,32.189453,65.62282,3.9 44,244.40482,170.81525,30.528442,54.649292,3.896 44,329.32562,224.25008,21.816162,41.0999,3.886 44,617.1304,172.41467,20.330444,42.915527,3.882 44,446.87622,182.58878,52.168427,112.53775,3.882 44,594.325,212.11621,42.92035,85.95972,3.879 44,585.43353,284.43784,64.336975,215.55344,3.85 44,526.7066,232.93561,48.79065,82.238525,3.844 44,295.72437,178.50952,23.870544,43.459366,3.82 45,445.19275,204.55927,22.902374,48.711105,51.046 45,436.43417,206.23595,38.209015,64.44978,8.368 45,161.62611,212.56573,21.055328,30.60234,7.111 45,539.57776,182.2652,58.56317,111.07721,6.701 45,537.69006,204.91797,34.91101,65.8685,6.361 45,612.8666,453.23273,40.005615,108.576355,6.337 45,621.9878,478.64133,28.966125,66.061066,6.104 45,-6.0193563,491.1374,18.350554,40.378967,5.773 45,54.622734,186.02011,28.282677,72.502594,5.714 45,611.8319,-48.68183,40.6568,103.132256,5.661 45,509.21814,182.56946,56.226135,114.72632,5.642 45,284.4057,187.61845,30.82071,51.021255,5.555 45,-11.776881,481.72122,29.029747,60.65207,5.555 45,522.01154,205.29486,34.76544,69.53314,5.472 45,-17.814125,-65.004524,56.116936,148.21854,5.465 45,627.2499,-17.961689,17.130615,45.834927,5.462 45,-8.881424,463.62848,37.691364,92.737366,5.247 45,297.0675,210.44965,22.597717,37.40561,5.246 45,579.76996,195.63081,43.09552,85.85286,5.203 45,434.7499,203.66087,22.2594,47.857224,5.184 45,-5.70572,-17.566345,17.345917,41.998486,5.085 45,-11.400431,-32.689907,29.712112,73.005585,5.028 45,613.79285,141.84824,24.622803,78.96658,4.951 45,-73.35071,266.5105,200.82738,460.318,4.948 45,-21.698103,402.41644,78.91004,175.07599,4.899 45,137.61717,209.18565,20.096237,37.057022,4.871 45,537.0334,310.96033,143.43536,341.18896,4.865 45,594.8037,189.77328,32.6756,72.560394,4.863 45,464.98193,212.11067,43.77478,78.64122,4.841 45,562.0868,199.00851,45.690186,87.958466,4.826 45,404.9187,204.69429,40.010315,72.392746,4.76 45,582.999,410.73706,71.81653,177.23413,4.729 45,176.90408,213.35875,21.785553,28.93837,4.647 45,268.13605,189.99852,32.175476,49.210983,4.626 45,437.80554,-6.9526806,29.79541,71.701675,4.626 45,615.5524,82.30649,24.39563,74.41022,4.625 45,305.648,211.34958,22.416992,38.559708,4.623 45,375.48962,194.94841,27.318878,59.270996,4.61 45,585.6458,-99.7835,74.991455,233.68512,4.564 45,339.66986,202.21657,32.762207,66.743,4.553 45,519.5475,208.1017,24.489807,44.792923,4.546 45,476.131,104.67256,31.352325,78.214325,4.474 45,264.94922,206.53241,23.502289,31.766266,4.459 45,391.86658,190.25749,26.656006,68.82701,4.446 45,494.02814,227.02405,237.51959,514.83453,4.425 45,499.20517,194.33786,44.91336,87.5748,4.422 45,248.34317,193.06187,20.901398,31.022293,4.378 45,471.08472,192.78612,30.520782,65.22362,4.357 45,411.50235,234.84898,32.336395,64.04472,4.288 45,-9.761604,149.7245,30.248207,79.65234,4.276 45,618.44916,490.34128,20.452332,42.90091,4.271 45,489.19305,-179.49567,235.64673,421.99557,4.268 45,617.86646,129.42136,20.60431,60.17415,4.236 45,2.5007253,492.81174,18.710297,38.09561,4.233 45,340.77618,226.52802,30.345367,69.81549,4.196 45,420.01926,207.5643,42.17209,78.5495,4.181 45,371.78656,199.88661,41.592896,78.47691,4.179 45,505.31693,222.31062,61.164215,131.98582,4.173 45,420.65967,197.09138,28.150604,66.71568,4.153 45,314.2779,212.39455,22.111542,38.647797,4.136 45,460.56604,-32.017815,57.10443,125.99531,4.111 45,355.14502,196.20021,41.250793,82.99617,4.091 45,321.21375,214.20041,22.672699,45.75357,4.058 45,179.64037,197.53067,31.499802,45.611557,4.057 46,499.59927,215.26054,19.834686,52.685806,93.311 46,480.37573,218.63457,20.496918,54.32225,60.528 46,491.63486,217.77296,20.254608,51.296158,36.72 46,474.39227,220.68697,19.827576,61.86821,11.764 46,487.90076,212.60692,32.746033,73.719894,9.012 46,381.91223,211.89954,27.290192,63.9776,8.151 46,611.5455,185.1423,27.100708,90.210144,7.044 46,363.10828,214.54758,32.80304,77.91043,6.382 46,602.7278,-55.111153,53.15515,134.98622,6.214 46,621.9137,-34.18473,27.908936,77.560005,6.197 46,626.9731,488.36786,20.141907,44.746338,5.957 46,283.60754,201.86867,32.285217,49.269684,5.871 46,119.90512,223.12436,22.055695,37.513794,5.838 46,-8.774149,465.5415,37.611755,91.57068,5.834 46,612.3506,70.57898,27.408264,106.04483,5.8 46,422.1842,205.77667,38.800323,82.462494,5.717 46,-6.227918,489.75458,19.06756,41.714783,5.715 46,613.1399,452.89813,39.459106,109.65033,5.672 46,296.59216,220.49222,22.469543,35.350037,5.586 46,2.82951,208.43442,30.829678,73.081696,5.565 46,-18.036444,-65.91491,56.351486,150.3035,5.46 46,-73.99153,264.53152,202.3808,463.70236,5.374 46,313.22177,225.37964,22.366913,41.413055,5.347 46,626.9683,-19.125284,18.113953,49.25108,5.241 46,-5.6556034,-17.493187,17.237507,41.959305,5.092 46,385.9784,213.54317,41.38025,84.23314,5.06 46,536.20087,309.989,144.37073,342.12366,4.988 46,-11.3572035,-32.702168,29.70285,73.02851,4.959 46,391.73486,216.6254,21.8284,49.95984,4.925 46,-21.462467,403.16785,78.92378,174.66101,4.922 46,585.9673,-100.35295,73.923706,235.20923,4.851 46,331.70105,221.8272,34.350098,74.869156,4.837 46,347.66132,225.66965,34.385742,73.61832,4.822 46,305.52832,221.00137,22.783112,36.91391,4.777 46,280.31726,211.16817,23.18805,35.433243,4.775 46,464.4281,222.30035,26.439209,75.88446,4.748 46,582.86523,410.7619,71.95361,177.5003,4.707 46,494.26273,229.42175,237.2944,512.2102,4.655 46,612.5249,151.80586,27.103027,85.360245,4.654 46,558.75006,182.4875,27.273987,67.245514,4.64 46,272.21313,204.71404,24.860718,39.559814,4.638 46,363.04462,205.68321,54.764465,127.48299,4.613 46,11.529493,189.1754,56.930695,108.34099,4.583 46,588.53,210.17435,29.190369,60.20633,4.533 46,490.2572,-181.87036,235.2677,424.8102,4.516 46,435.7164,83.03764,32.32895,67.388275,4.479 46,499.75226,205.2163,35.45697,75.758194,4.449 46,555.42395,212.3967,32.27881,55.57254,4.404 46,468.18195,195.00235,30.173096,70.60989,4.402 46,594.5425,-43.89388,43.825623,98.693245,4.388 47,396.2259,192.02205,31.61316,73.1158,9.869 47,3.8961625,206.62813,30.824984,74.96501,7.936 47,428.66797,211.68442,27.398285,60.12262,7.551 47,388.11505,204.73557,31.954102,76.247406,7.215 47,421.2104,220.30795,29.326233,68.31937,7.195 47,-18.189007,-66.377,56.88586,152.25642,6.46 47,280.57352,212.4175,22.24643,32.84778,6.232 47,351.69373,207.03328,46.840637,90.056656,6.102 47,447.99252,214.67027,22.673706,48.09337,6.092 47,612.8917,454.08548,40.233765,108.29227,6.07 47,273.43124,204.24802,24.601105,37.487,5.98 47,622.5194,-34.626713,26.570007,78.35345,5.892 47,627.02277,-17.967852,17.190796,47.666336,5.867 47,402.1133,225.10425,34.764862,78.97363,5.845 47,626.2659,487.46396,20.873352,46.830658,5.823 47,348.55054,221.48534,33.65216,63.89839,5.664 47,591.6538,183.35834,45.664856,178.62152,5.64 47,361.38977,202.73795,60.891968,121.093506,5.561 47,415.6351,204.40831,29.353302,67.185074,5.528 47,415.13156,192.29156,53.70279,99.11401,5.401 47,-8.903423,465.32773,37.68825,91.5311,5.391 47,11.127977,184.91232,56.76792,109.70798,5.372 47,602.33777,-54.617203,53.202454,135.29692,5.361 47,435.58762,218.92526,31.524231,62.81244,5.326 47,-73.819435,265.12805,202.23245,462.55658,5.219 47,-6.461494,489.37433,19.28254,42.220886,5.171 47,27.80806,184.9944,27.285255,69.768295,5.121 47,536.70465,309.61914,143.48517,342.802,5.107 47,573.4426,-17.726318,53.452698,129.0698,5.104 47,593.687,110.99356,33.59137,92.86548,5.089 47,-5.5942965,-17.444761,17.215477,42.20209,5.08 47,537.3642,239.44005,31.6568,74.28972,5.061 47,-11.24831,-32.555645,29.511862,73.100876,4.967 47,408.01117,206.26974,23.928833,54.65277,4.963 47,292.35257,203.46184,33.615295,48.204987,4.927 47,539.5397,207.84909,55.586975,123.01047,4.918 47,-21.59463,402.90564,79.08379,174.78735,4.909 47,582.7671,410.88712,72.22156,177.63571,4.884 47,19.885849,208.64568,31.600182,64.94066,4.857 47,445.19016,188.01619,54.69345,108.65279,4.856 47,385.1626,211.99643,23.343292,57.263275,4.843 47,394.13538,206.02686,57.526917,120.13696,4.84 47,296.18304,219.85951,23.570862,34.958252,4.8 47,400.1039,221.44298,22.69696,55.251358,4.781 47,587.7745,181.75525,31.249023,79.671265,4.77 47,265.75198,206.2769,22.258179,32.446793,4.762 47,396.2181,249.58649,33.986603,73.64819,4.706 47,585.8433,-104.84916,75.872375,240.71695,4.69 47,-15.946882,184.96213,49.495743,133.79178,4.632 47,380.0114,188.68033,56.458466,99.28601,4.597 47,462.3187,-33.81051,29.580994,76.10821,4.578 47,493.7645,228.0184,238.02579,513.8589,4.565 47,416.92517,224.39833,43.837524,104.22743,4.524 47,489.19696,-180.68593,236.94757,421.92245,4.519 47,466.40253,210.36618,41.322998,89.38208,4.515 47,369.63895,226.6099,33.767883,73.65277,4.488 47,564.1545,192.80435,41.62732,93.86221,4.485 47,588.8822,9.541767,30.456177,73.58118,4.477 47,299.57343,179.5585,33.06192,64.16269,4.417 47,614.228,-19.983517,27.171997,75.29418,4.396 47,253.87865,192.1819,27.34526,47.738327,4.389 48,445.54654,214.95547,30.645142,72.84766,9.499 48,626.8288,-18.222858,17.23883,48.96469,8.61 48,622.8915,-33.46489,25.96466,78.1248,8.035 48,441.7133,220.37897,23.59436,53.992188,6.706 48,0.5949223,233.83685,21.570166,54.723633,6.564 48,-18.230814,-66.179115,56.972496,152.4719,6.464 48,481.34143,223.67876,45.23828,86.55409,6.434 48,615.46027,-21.30749,25.515442,76.93533,6.182 48,613.2585,453.5585,39.460083,108.47543,6.022 48,369.73743,205.8905,42.375336,91.24768,5.812 48,456.97937,218.28716,34.73889,78.51869,5.707 48,626.4611,488.73145,21.172913,45.416748,5.67 48,299.85986,203.97368,32.409607,45.671814,5.669 48,429.6029,218.38406,29.873596,78.3855,5.626 48,394.12473,205.97409,56.37094,124.97589,5.61 48,-5.857774,233.8668,19.76989,48.985123,5.563 48,-12.293777,479.63928,30.669157,60.902954,5.517 48,619.27704,-5.876623,18.136414,44.813454,5.436 48,-73.42335,265.19086,201.46155,462.79315,5.21 48,496.59396,218.30733,44.447662,78.6078,5.157 48,613.5836,103.73477,27.379272,86.028046,5.132 48,-5.57122,-17.474726,17.126505,42.385048,5.13 48,258.0021,203.20256,18.592987,29.394455,5.092 48,603.84656,-55.342785,52.414185,134.1051,5.079 48,-11.206676,-32.559776,29.567394,73.42122,5.072 48,-10.835165,210.55911,29.72397,71.10266,5.028 48,442.42035,214.50546,58.736633,137.76822,4.996 48,536.01764,310.55695,144.63055,342.56537,4.996 48,551.05725,237.42125,41.10077,53.617264,4.951 48,-6.4303684,489.8336,19.223558,41.63974,4.921 48,495.7977,218.80437,22.605804,49.439163,4.91 48,386.59088,207.63834,42.359253,90.85095,4.905 48,-21.510714,402.8767,78.93476,174.87598,4.9 48,417.5763,226.02975,44.519043,106.15668,4.878 48,583.3208,409.0235,71.37439,178.46606,4.861 48,512.8937,219.09445,44.26233,75.00098,4.846 48,281.03903,213.5692,24.22583,31.255539,4.839 48,616.2684,162.57637,23.984253,53.68782,4.811 48,377.6676,174.68175,20.211761,56.34755,4.795 48,493.68256,227.67139,237.47113,513.1319,4.734 48,589.6747,359.8976,31.193542,75.357635,4.717 48,404.42908,215.49928,30.51361,72.80864,4.685 48,252.64343,202.73088,16.696533,25.42392,4.674 48,123.69758,224.81386,19.47033,33.668686,4.67 48,621.2184,381.2072,27.61554,84.49228,4.604 48,626.50885,-0.08459473,17.833252,49.060886,4.523 48,430.2066,192.58176,55.363007,98.25766,4.472 48,-4.906937,185.7988,18.302233,45.063995,4.469 48,617.6872,490.43582,21.641663,42.901093,4.464 48,363.27438,210.36705,17.642303,32.472244,4.462 48,451.88043,204.14908,28.056152,60.069305,4.452 48,586.49164,-99.78951,74.21503,233.80835,4.452 48,472.3495,219.99037,23.979279,46.070236,4.445 48,363.55334,235.61508,33.354034,71.441284,4.407 48,2.9037893,213.29834,32.186512,73.4061,4.386 48,402.985,186.63602,42.456604,78.53555,4.373 48,-15.465566,160.70877,50.264378,134.13217,4.331 48,475.64368,220.2172,32.72702,75.18918,4.331 48,534.70056,248.6533,40.381775,63.072342,4.307 48,458.59045,193.56387,57.885193,100.879395,4.298 48,-9.275381,174.55219,28.59478,69.40491,4.291 48,261.24017,195.39455,28.08664,47.50232,4.257 48,-5.171423,257.2758,18.747774,45.731842,4.25 48,338.52545,210.52676,43.289703,84.15314,4.239 48,558.81824,237.03163,26.5542,37.82878,4.234 48,234.49957,222.2609,18.997147,27.46138,4.183 48,434.59164,229.07236,43.63095,103.11417,4.159 48,425.15204,222.84035,21.739014,48.629776,4.128 49,428.97742,190.54797,28.563446,66.95102,12.073 49,64.2582,215.79843,23.490936,46.32077,9.071 49,622.5428,-33.03911,27.305359,74.24046,8.329 49,421.19836,205.316,31.832,76.606735,7.576 49,626.5136,488.4772,21.11267,45.5643,6.466 49,612.93024,452.93466,40.058777,109.15445,6.414 49,626.3154,-18.908484,18.082031,46.790504,6.23 49,72.94515,224.85622,20.964363,38.840256,6.116 49,282.56415,214.47232,21.636108,30.4693,6.059 49,562.0069,221.52231,44.890625,86.38934,6.044 49,89.947205,225.46472,21.324722,38.14389,5.992 49,-18.0868,-66.2843,56.45118,152.26852,5.866 49,572.5461,210.72714,52.949585,126.64093,5.808 49,243.71864,199.27278,17.023483,26.942429,5.667 49,252.05215,199.44943,16.339508,26.150177,5.557 49,-8.687508,465.68356,37.5238,90.551605,5.555 49,-6.0806603,488.95026,18.946959,42.37451,5.488 49,483.67358,206.19292,31.339417,66.52528,5.46 49,81.49832,225.71663,21.36531,38.56807,5.451 49,546.9032,223.70186,45.46472,98.794876,5.374 49,259.57465,197.8666,16.758728,27.202515,5.355 49,539.8517,210.1188,16.462036,30.18956,5.282 49,406.2041,200.15375,29.78363,72.2038,5.278 49,-73.130745,265.01434,200.9141,462.9002,5.209 49,305.85443,214.28581,21.845642,30.891266,5.162 49,618.9184,-18.856441,19.329834,44.012928,5.116 49,-5.5968003,-17.387825,17.201471,42.06292,4.973 49,546.819,209.33618,16.593323,33.24974,4.972 49,387.4747,212.7468,41.64502,84.032776,4.958 49,-11.242842,-32.631363,29.609468,73.22545,4.928 49,536.40515,309.5137,143.87402,342.49106,4.912 49,597.32324,223.16548,39.7063,107.52135,4.873 49,586.3022,-99.13691,74.097534,231.09903,4.872 49,397.5259,162.01482,27.445343,73.46477,4.853 49,582.8689,410.89258,71.960205,176.87463,4.851 49,438.4453,208.72084,23.768158,48.02217,4.851 49,-17.258821,436.74792,54.856712,138.79236,4.838 49,514.5446,203.55583,42.16638,69.01503,4.791 49,603.23834,-56.071526,53.026672,134.46294,4.776 49,612.19,239.09335,29.62793,75.26599,4.767 49,-39.921207,368.57764,109.88864,274.74377,4.716 49,291.94058,203.99298,32.188293,44.720123,4.642 49,251.56462,217.18854,16.377151,25.428055,4.638 49,574.7555,20.842514,38.166748,77.37351,4.597 49,493.81085,228.89255,237.10419,513.12354,4.594 49,530.2479,223.63112,44.586853,96.40361,4.579 49,489.61945,-182.01163,235.37787,423.21606,4.557 49,-2.0751774,207.32959,24.461267,61.42914,4.507 49,371.11514,213.6978,41.941162,81.337265,4.445 49,499.12744,202.69835,41.4328,68.571365,4.422 49,424.998,185.22131,53.465393,96.40381,4.421 49,560.2446,197.26465,26.20343,62.326965,4.416 49,514.11163,223.587,43.46643,92.06897,4.397 49,11.673061,190.31839,56.34692,106.95865,4.361 49,386.99072,221.44205,17.737122,31.328888,4.352 49,578.7646,204.24469,43.25348,78.932495,4.349 49,409.14545,180.52647,40.940765,79.81233,4.314 49,522.0389,191.16058,58.776917,98.84082,4.304 49,287.34122,207.39163,24.398071,33.17552,4.304 49,379.24524,220.64702,16.87201,31.283966,4.268 49,525.64545,-34.98479,29.688904,75.21417,4.244 49,462.43546,194.96417,27.144623,70.92764,4.242 49,435.71265,214.37326,28.89505,79.15878,4.235 49,104.96434,233.52473,21.721794,33.03679,4.223 49,265.73813,197.99884,18.43457,26.678741,4.22 49,312.73788,221.74767,22.454529,30.531479,4.212 49,354.75204,214.64209,42.430206,78.07959,4.211 49,46.838535,214.498,29.806973,55.80513,4.187 49,458.2362,205.08301,22.166138,46.52713,4.176 49,569.99756,-37.278748,60.55951,134.96907,4.164 49,430.9247,197.63,65.157196,161.29791,4.164 49,618.23975,491.03247,21.353027,42.467163,4.064 49,413.17517,201.24367,51.911438,114.9868,4.049 50,518.63837,212.82178,42.74762,87.436584,12.176 50,578.2264,204.08981,22.512695,44.007233,7.529 50,609.9553,-46.703693,42.14435,97.06443,6.802 50,626.6116,488.04926,20.591797,45.6745,6.724 50,314.04596,214.34302,20.80008,31.290314,6.569 50,617.8517,197.40291,23.342285,78.725204,6.535 50,524.7647,188.84503,27.00299,68.894165,6.408 50,535.58844,224.90642,36.793396,76.077225,6.336 50,613.0126,452.09195,39.907654,110.66586,6.32 50,296.82693,212.4025,21.19748,32.38852,6.299 50,542.0304,223.31187,25.927124,50.36476,6.248 50,581.47095,199.34354,36.33081,76.15442,6.177 50,282.07425,212.78821,20.489502,30.846695,5.985 50,259.71918,198.64978,17.457672,30.288925,5.971 50,-8.720264,465.35544,37.59272,91.25174,5.722 50,566.6251,202.4458,39.38324,79.00714,5.636 50,627.0403,-20.118696,18.24878,47.862408,5.607 50,322.08646,223.4739,20.987091,31.448502,5.472 50,442.16492,223.43552,20.376648,33.89331,5.467 50,-18.201141,-66.14791,56.32072,150.93687,5.437 50,-12.30003,479.39172,30.237698,61.499634,5.37 50,109.14794,202.06967,27.079979,60.79837,5.282 50,-6.4576344,490.0377,19.060055,41.622223,5.28 50,-73.46704,265.05,201.51315,462.7323,5.235 50,434.79553,232.23393,34.25415,68.497086,5.181 50,36.194603,219.21082,29.83628,57.702698,5.181 50,265.83228,196.00064,18.189606,30.660172,5.143 50,252.0149,199.88986,17.267578,28.18892,5.115 50,536.2342,309.60477,144.57709,342.69272,5.073 50,-17.408482,437.2177,55.11365,138.60162,5.065 50,305.12265,212.40962,22.086182,32.71115,4.993 50,-11.286994,-32.614048,29.664005,73.01667,4.967 50,-5.679087,-17.584198,17.302431,42.101463,4.952 50,582.7477,411.712,71.97974,176.173,4.902 50,274.6066,213.58435,19.64978,28.401855,4.901 50,494.11072,229.706,237.0539,512.7796,4.715 50,586.6405,-102.13571,73.881836,234.1058,4.683 50,-40.075146,367.85583,110.177795,274.891,4.681 50,532.7211,205.25179,25.498535,54.86769,4.634 50,590.2739,-25.126759,51.188232,132.7337,4.615 50,489.60968,-181.36082,236.02777,423.58923,4.593 50,433.78546,219.27353,20.41095,32.42061,4.561 50,544.28546,212.76413,44.696533,100.78125,4.544 50,592.6546,207.30797,20.421997,37.852432,4.495 50,599.66327,195.85515,35.71631,91.1125,4.457 50,528.9391,192.2204,43.57013,82.16461,4.424 50,482.03763,215.85146,43.466644,74.740005,4.422 50,3.8849008,216.2391,27.011328,66.44125,4.398 50,508.0824,208.80908,60.627808,144.04785,4.367 50,502.2365,213.97012,43.040222,77.79132,4.335 50,527.5903,219.70499,24.653625,56.920197,4.313 50,267.47308,216.39159,17.367676,24.62181,4.311 50,-8.2322035,203.10771,28.323463,71.75569,4.292 50,473.10962,86.45468,20.998352,52.96631,4.27 50,612.9266,10.17099,39.03882,113.403564,4.207 50,564.9132,-35.113354,31.051025,76.36689,4.205 50,450.90408,223.3582,42.55417,75.01802,4.195 50,417.04126,219.4752,44.376892,64.26988,4.177 50,401.37662,222.19925,44.924713,70.92279,4.113 50,261.63428,188.37106,27.382843,50.58725,4.112 50,11.585274,188.48315,57.017563,108.806335,4.099 51,484.2303,173.73074,44.080627,73.34601,23.267 51,297.40585,203.96016,21.961578,33.26262,7.57 51,329.46796,213.22676,19.439209,29.776657,6.788 51,313.9996,212.7448,20.84784,31.448502,6.453 51,551.16504,160.26321,23.816467,45.5679,6.365 51,586.5364,207.07779,32.020874,75.75241,6.237 51,283.27054,207.60138,18.260712,27.519669,6.19 51,266.7423,203.78064,16.555695,28.022125,6.145 51,581.3209,180.35054,29.63971,77.71248,6.043 51,613.32184,453.48132,39.434814,108.4538,6.032 51,268.18524,191.39574,17.640442,28.864822,6.005 51,626.84546,-20.226051,18.435242,49.220936,6.002 51,290.15967,205.54091,20.395721,31.305237,5.94 51,-8.525709,465.24557,37.517136,91.99716,5.909 51,-18.186882,-66.420685,56.396008,151.30688,5.698 51,622.6501,-33.74043,27.449951,76.90581,5.647 51,478.78235,227.61568,42.981934,62.53807,5.592 51,-12.133617,479.7625,29.929781,61.14453,5.538 51,-6.2241745,490.0838,18.733253,41.0094,5.499 51,303.02957,196.22842,24.43103,37.889908,5.442 51,602.2715,-55.689617,53.529846,140.48497,5.374 51,7.727977,228.16211,23.678303,48.132202,5.29 51,-73.50047,264.99872,201.60585,463.02612,5.258 51,535.99097,309.89807,144.7851,342.50586,5.204 51,575.15094,189.62048,51.48413,115.59381,5.143 51,269.43872,186.19011,28.091858,47.733185,5.121 51,372.54834,213.1142,29.929443,57.44754,5.021 51,-11.266462,-32.708366,29.705776,73.3105,4.986 51,503.7998,163.34914,59.697388,103.80553,4.953 51,-5.6591516,-17.671886,17.295214,42.366253,4.907 51,615.0167,105.08214,25.483215,98.27629,4.904 51,497.2778,161.33153,32.062897,64.82681,4.892 51,582.86316,411.5869,72.07733,176.34497,4.89 51,-21.414696,402.77673,78.80659,174.96063,4.858 51,259.92795,191.78078,17.812805,28.780502,4.839 51,626.7603,488.91983,20.698303,44.526947,4.816 51,322.80804,206.31737,21.27533,34.406586,4.811 51,493.95657,227.89178,237.65036,513.88806,4.742 51,-4.6302967,185.7324,18.582928,45.09514,4.697 51,282.03915,190.80086,20.037567,33.31961,4.662 51,260.69507,210.78839,15.636047,24.925812,4.645 51,274.47382,184.93185,17.730194,28.79216,4.64 51,236.06804,215.44408,16.441956,25.341003,4.576 51,397.13623,207.68048,27.379791,57.573303,4.517 51,305.4273,212.45772,20.083374,29.9982,4.471 51,494.31403,200.31041,37.247803,55.88289,4.455 51,561.24896,167.12964,56.401367,111.687744,4.45 51,447.39423,197.93515,46.286438,63.933044,4.309 51,-15.613431,160.4049,51.33021,134.36841,4.295 51,618.0877,-20.838482,19.759521,48.69082,4.294 51,615.1104,68.816414,25.982605,96.618034,4.253 51,268.82077,217.89337,15.25061,22.352753,4.241 51,556.1866,159.53386,32.004456,66.23314,4.233 51,3.9898825,198.40276,29.318077,72.50221,4.199 51,1.4867377,215.76286,40.534462,82.115524,4.171 51,276.02325,210.2478,16.787628,24.654877,4.122 51,250.57257,197.7215,17.437317,27.693909,4.109 51,-10.244398,215.16733,28.883144,64.95975,4.089 51,585.41876,-108.990875,77.214966,248.61404,4.068 51,462.54868,-34.197674,28.101685,73.6759,4.064 52,539.11646,154.96979,31.7323,80.655334,15.245 52,497.20416,208.37787,23.63208,40.32492,11.993 52,530.4296,184.30695,42.398926,66.509476,7.238 52,586.2545,199.0227,20.735718,40.222977,6.766 52,289.13968,196.15483,23.065186,36.868057,6.59 52,273.2037,186.27657,19.775513,32.284607,6.522 52,626.3026,-20.716417,18.312927,52.84944,6.47 52,266.36688,201.10126,17.695343,29.477478,6.209 52,297.26743,202.03262,22.048706,38.006607,5.954 52,308.73325,194.23453,29.974335,49.341156,5.871 52,330.975,212.81252,19.281525,30.235352,5.757 52,282.6405,205.45079,19.69043,31.135681,5.664 52,613.02686,455.30576,39.952576,106.51962,5.603 52,-17.997223,-65.65665,56.40329,150.34662,5.522 52,-8.823632,464.87354,37.66785,92.65515,5.41 52,-6.351209,489.20453,19.120594,42.275208,5.394 52,259.0425,202.68204,18.0484,28.699844,5.343 52,485.4881,205.36752,30.022339,53.36023,5.308 52,267.7068,183.36653,18.605072,30.416946,5.288 52,526.51074,193.53577,28.767517,54.921524,5.25 52,611.60645,-46.935116,40.733643,101.23158,5.241 52,303.87946,191.8702,23.637054,38.037094,5.153 52,-73.16755,265.367,201.30804,462.1181,5.119 52,-11.380171,-32.675285,29.773396,73.04868,5.116 52,277.08813,176.76991,29.321014,51.90132,5.104 52,536.316,310.16748,144.30414,342.3753,5.04 52,583.13354,411.42825,71.75903,176.57596,5.026 52,505.33502,189.88962,20.688843,42.244568,5.002 52,-2.1423626,193.79918,27.566196,85.9236,4.98 52,-5.768585,-17.633198,17.324068,42.103184,4.954 52,485.01706,88.739456,15.337097,26.975502,4.896 52,322.62317,202.18037,22.371521,37.618073,4.891 52,-17.86821,435.94925,55.210846,140.71365,4.859 52,621.93933,478.35306,28.761719,66.3508,4.832 52,-40.07006,367.45538,110.381966,274.61652,4.757 52,493.80664,228.40347,237.16797,513.52454,4.689 52,580.1484,130.6085,32.15576,73.069885,4.58 52,369.32935,239.33301,23.103577,42.650513,4.534 52,338.50867,201.90767,18.717651,35.087387,4.451 52,426.8724,213.02757,32.423798,70.061935,4.446 52,579.74445,208.39223,41.097473,70.01256,4.443 52,481.05148,208.03508,23.07901,39.732803,4.405 52,555.24646,184.7455,31.457764,62.270096,4.277 52,275.03268,207.38782,18.470795,27.974686,4.206 52,313.67023,211.90419,20.254608,32.35721,4.204 52,345.85596,202.24442,18.233551,35.13823,4.167 52,496.5527,206.11276,44.37741,61.552124,4.147 52,280.64648,185.5178,20.306244,32.24829,4.117 52,570.21094,190.66412,21.999695,42.539566,4.111 52,512.2713,197.34764,20.843994,38.79979,4.102 52,116.292725,204.0912,30.556732,62.26396,4.086 52,246.569,188.82425,26.983917,46.06433,4.058 52,458.0221,248.17697,35.063507,57.25583,4.055 52,467.55505,206.51175,43.295166,66.01587,4.053 52,251.35378,203.18,17.968338,29.745468,3.957 52,522.4806,196.72635,20.524658,39.131348,3.94 52,235.2622,215.27345,17.770645,25.058258,3.934 52,283.39145,197.676,31.857117,57.772934,3.931 52,350.50885,227.18912,31.84314,56.928497,3.901 52,326.8734,195.51035,28.277466,48.822174,3.892 53,597.34686,152.93411,38.404114,105.54117,19.141 53,279.94754,196.17451,24.246918,40.51738,8.202 53,558.1205,216.33072,25.588074,46.332764,7.752 53,457.1595,209.17198,19.08368,40.484344,7.641 53,331.2428,212.22672,19.688324,32.876724,7.514 53,627.0215,-16.528812,17.437683,44.872772,7.475 53,338.86142,210.56537,17.660522,32.916107,7.103 53,362.44806,210.85016,17.466156,34.40013,6.521 53,371.01813,207.00352,42.49948,89.24263,6.337 53,626.79724,488.19403,20.370605,45.844116,6.261 53,611.6825,-46.032867,40.85077,101.10357,6.201 53,296.68646,201.15242,23.559845,40.058533,6.049 53,1.060183,221.55104,22.528727,52.036575,5.857 53,266.58405,184.22942,18.79535,34.323807,5.839 53,612.82153,455.249,39.740845,106.85959,5.736 53,470.59113,213.3744,37.053253,73.24965,5.703 53,453.66013,212.46199,36.926086,71.781235,5.65 53,270.47974,180.2987,28.72873,53.02498,5.621 53,404.03406,226.3564,34.621643,70.81612,5.62 53,484.76617,216.2284,37.395447,71.786316,5.501 53,-6.264398,488.81583,19.043346,42.954865,5.49 53,-8.896546,464.94666,37.726074,92.15222,5.485 53,-17.8023,-64.793724,56.322754,148.42416,5.472 53,438.0646,211.27132,37.853516,72.341965,5.391 53,52.957264,220.27435,31.051052,59.809418,5.373 53,262.76526,174.3724,26.866333,54.2023,5.369 53,303.99875,192.74695,21.893433,38.048462,5.331 53,313.73132,206.89713,22.137054,38.238144,5.325 53,-73.50415,264.80743,201.89194,463.4809,5.301 53,323.19107,209.25832,20.44571,36.462387,5.253 53,417.71533,221.07469,41.96338,90.15938,5.189 53,252.73164,216.87418,15.845566,25.892517,5.161 53,257.84265,200.63446,18.904999,31.777802,5.11 53,259.6264,188.20258,18.615662,31.827728,5.078 53,-11.446172,-32.66992,29.836239,72.9655,5.058 53,494.14154,203.60768,25.224854,61.972305,5.045 53,538.1831,183.21783,59.67804,95.04071,5.04 53,547.8423,219.27165,32.45575,59.30104,5.003 53,-5.7790337,-17.649532,17.304808,41.97765,4.978 53,582.75415,413.26004,71.96228,175.3226,4.976 53,-16.80058,189.85812,51.265984,123.9512,4.971 53,536.1958,310.6688,144.36353,341.08438,4.97 53,613.4333,6.7797356,25.843567,67.72681,4.969 53,287.62292,202.2801,23.914276,39.66365,4.965 53,300.614,196.82704,30.963196,53.209854,4.959 53,-21.436222,403.23358,78.83325,174.70721,4.958 53,70.130035,202.17847,29.855202,66.9176,4.933 53,244.31831,215.99715,16.325302,26.518051,4.905 53,499.26028,221.18854,40.924896,73.80322,4.896 53,411.75555,201.33603,31.879211,73.125854,4.847 53,310.05862,181.33636,30.004211,59.949524,4.797 53,346.7421,207.05699,17.352478,31.116089,4.79 53,494.367,229.86517,236.59521,511.57898,4.761 53,-5.420649,215.3577,18.23386,46.445465,4.694 53,514.3443,223.12167,42.5943,71.23929,4.635 53,386.5186,202.9091,40.493134,78.17244,4.634 53,452.2414,216.92871,18.372986,38.119156,4.631 53,572.8948,198.38269,30.939575,60.859283,4.587 53,365.1216,235.26761,35.720398,70.96088,4.562 53,575.5686,171.40195,54.65979,111.93637,4.53 53,410.72974,251.32144,36.760773,67.80838,4.483 53,529.4935,218.99652,23.721802,38.79654,4.476 54,482.21713,216.85559,18.325653,40.05951,19.557 54,379.72855,205.22621,17.618225,40.62892,15.275 54,499.73404,217.00458,17.099518,43.10559,8.89 54,371.80087,210.51222,19.153107,35.193375,8.369 54,451.65955,199.76328,30.329346,56.633484,8.216 54,1.1557555,217.2917,23.479378,60.851913,7.576 54,490.94177,216.7428,17.38855,40.76367,7.361 54,497.402,230.59546,34.37216,80.73627,7.214 54,622.9756,-32.915985,26.850403,74.506516,6.845 54,24.932617,218.55576,35.993687,53.59677,6.543 54,271.1934,195.3508,25.539093,38.99478,6.424 54,-18.102507,-65.776245,56.824203,151.72931,6.111 54,258.33734,177.4646,18.539734,34.91983,6.033 54,385.83038,209.83467,17.986877,40.111557,6.012 54,288.3412,190.82817,24.050323,36.32321,5.989 54,622.0226,479.0275,28.879578,65.752655,5.909 54,250.58896,185.36177,19.701263,32.115204,5.863 54,476.72986,210.47179,18.448853,38.643066,5.813 54,466.1507,214.09145,20.263672,37.221237,5.789 54,603.32166,-55.214863,52.81494,138.03673,5.767 54,612.8929,453.497,39.759644,108.61713,5.733 54,-6.337948,488.82068,19.113132,43.198853,5.486 54,433.86932,213.9895,41.40506,78.349,5.44 54,626.8717,-18.502752,17.445557,47.125538,5.414 54,559.4403,218.66135,37.117065,73.377594,5.413 54,604.6134,129.85323,29.033813,73.82204,5.384 54,261.1883,175.07275,28.82666,53.465927,5.323 54,-8.819487,465.2447,37.57495,91.82117,5.315 54,529.94415,211.6911,21.683594,41.379272,5.279 54,332.07523,213.27103,17.235718,29.274658,5.275 54,242.27373,200.08871,19.69728,30.143402,5.182 54,600.30554,223.27869,23.764832,41.34729,5.173 54,536.284,309.1961,144.38947,342.48602,5.17 54,-5.644267,-17.548773,17.201038,42.19375,5.125 54,-73.16169,266.0379,200.95294,460.88196,5.075 54,564.2943,188.11713,41.047363,74.77368,5.068 54,582.3963,186.22292,39.35028,78.520004,5.067 54,452.27368,212.50415,38.635803,66.310394,4.978 54,-11.323788,-32.444885,29.62151,72.92335,4.949 54,79.30995,213.36137,26.24105,39.476776,4.929 54,-21.366701,403.06772,78.65269,174.90714,4.924 54,219.37059,215.76514,16.454758,25.784668,4.865 54,568.7524,70.78391,24.061523,49.35244,4.824 54,582.6666,412.10132,72.04962,176.10474,4.793 54,563.28186,74.05155,34.94226,73.08172,4.786 54,295.28055,196.75845,23.607178,37.97699,4.783 54,494.66528,229.16022,236.47534,513.23706,4.775 54,249.75842,199.68732,19.482208,30.148987,4.749 54,372.4632,199.95308,37.976257,69.171616,4.704 54,-11.572572,51.987823,31.916729,70.947845,4.684 54,9.567695,186.66864,59.781357,103.706604,4.681 54,487.02478,215.0956,36.525574,67.061386,4.659 54,458.34537,316.0293,37.76657,68.601685,4.589 54,612.3821,148.61705,26.38971,84.29802,4.578 54,584.5862,120.106415,22.988525,49.081207,4.577 54,469.76413,213.3619,37.283325,65.623825,4.572 54,418.1992,204.82947,34.08136,75.67682,4.571 54,234.01953,201.95497,19.644333,29.402359,4.557 54,305.2779,197.18697,23.612,39.8116,4.515 54,388.20053,254.8567,34.016205,62.627945,4.449 54,531.5467,212.98228,40.29669,78.03377,4.437 54,611.78467,204.47513,39.36963,100.870026,4.434 54,474.74152,222.43663,21.566833,44.27986,4.379 54,580.7943,131.62267,31.187317,76.37761,4.367 55,553.10596,218.83398,21.827759,49.02234,74.535 55,568.98804,218.13545,23.503906,49.956955,57.262 55,372.81387,209.09326,18.645721,43.60495,26.113 55,387.12854,216.85556,22.359436,40.689148,23.404 55,561.10693,221.56413,21.864319,48.508835,16.242 55,600.66345,209.5075,24.929993,54.665527,10.781 55,616.4314,216.66101,23.70398,52.37097,9.272 55,288.69733,188.68161,22.49762,32.371185,6.834 55,263.2771,190.15506,25.01175,39.117218,6.806 55,250.09657,173.88344,20.465714,37.08348,6.762 55,621.52045,475.34097,29.568665,69.211395,6.639 55,281.24323,193.94356,23.45279,38.82512,6.577 55,584.25085,212.76405,21.95935,45.50026,6.563 55,529.6344,226.1867,20.275269,39.74713,6.354 55,544.345,222.26266,27.109436,71.10266,6.313 55,602.8037,-56.462753,52.60559,138.50848,6.16 55,15.133734,220.52882,26.004587,39.63176,5.871 55,252.07338,172.15424,29.97554,52.451828,5.647 55,622.93036,-34.56252,26.393982,79.14653,5.576 55,1.39745,221.87587,22.875763,39.00438,5.537 55,627.1326,-17.450268,16.769104,47.982624,5.534 55,-17.96342,-65.73746,56.21699,150.37776,5.333 55,256.49258,197.20938,25.674103,38.520996,5.314 55,622.43884,197.90991,27.555786,68.622284,5.312 55,-8.76845,465.24466,37.750824,92.0123,5.279 55,-11.894033,480.39227,29.69342,61.376038,5.265 55,273.27213,187.77603,23.288818,34.786392,5.259 55,234.2799,206.67067,19.427856,30.460785,5.248 55,-5.577197,-17.430677,17.188038,42.059364,5.2 55,536.40454,308.73206,144.34991,343.16394,5.192 55,-6.206785,490.06567,19.016138,41.5896,5.184 55,2.211697,206.9779,41.6387,76.095825,5.181 55,-5.804473,217.5006,19.133049,39.66774,5.177 55,514.9561,220.76437,31.630249,77.92633,5.105 55,-72.9375,266.11346,200.55144,460.8105,5.092 55,551.08234,217.12863,35.55194,68.58969,5.036 55,209.14247,206.78944,20.316147,33.023407,5.026 55,-11.265874,-32.557808,29.620888,73.09266,4.998 55,603.2951,428.48157,55.897644,145.23676,4.951 55,521.9372,225.08537,20.643494,44.70137,4.919 55,546.95197,228.99495,41.548706,99.67247,4.888 55,323.34317,212.55173,18.108093,32.296448,4.871 55,224.07654,200.33162,22.617157,31.935226,4.867 55,-21.488579,402.76807,78.77316,174.96436,4.851 55,339.36597,213.24507,18.059814,31.652115,4.823 55,538.7716,227.56586,20.649597,39.24579,4.821 55,494.49902,229.2319,237.21906,512.8474,4.754 56,418.6551,222.3009,23.742676,44.44626,55.577 56,397.28278,217.53654,21.846191,51.487747,50.742 56,621.7106,476.4666,29.116455,68.02637,7.227 56,627.17773,-17.763424,17.224182,47.52388,7.054 56,-18.168,-65.96172,56.418827,150.67433,6.558 56,322.33655,211.72403,19.938171,37.62668,6.422 56,255.42133,183.26904,23.754272,36.445312,6.332 56,243.90631,166.133,30.445374,52.960526,6.229 56,622.82874,-33.009922,27.058655,75.714806,6.221 56,603.3644,-42.323303,53.418823,137.5552,5.777 56,281.16696,189.02487,23.036743,35.353165,5.619 56,403.17255,215.68863,39.89032,62.112244,5.521 56,-6.231161,489.53378,19.053165,41.68387,5.496 56,-8.771237,465.39337,37.654877,91.21997,5.435 56,1.4039528,214.90355,33.66563,53.73729,5.392 56,264.3474,185.552,23.865387,35.358612,5.322 56,525.28357,190.69844,29.41803,65.25821,5.297 56,390.81998,207.68378,37.61734,66.46039,5.293 56,-72.99495,265.64374,200.58882,461.61627,5.183 56,-5.6079254,-17.487541,17.19112,42.217712,5.094 56,574.0076,-12.790501,53.62616,124.13194,5.026 56,-11.273049,-32.528404,29.665733,72.96698,4.979 56,536.5342,310.18848,143.906,342.40796,4.946 56,603.6021,429.96017,55.224304,143.22311,4.872 56,-21.52103,402.67743,78.92557,175.13708,4.858 56,619.09,-17.102865,18.001648,43.72768,4.827 56,233.07274,204.58244,22.400131,33.755768,4.822 56,193.01399,203.83145,21.132217,35.996002,4.814 56,583.96814,126.81763,23.288086,46.002533,4.765 56,276.18884,187.73865,32.252808,57.895004,4.74 56,248.18704,196.46954,25.023773,36.74507,4.669 56,508.46832,185.63062,33.241333,72.82257,4.621 56,287.6742,194.25381,24.150635,41.024292,4.575 56,494.10956,228.97833,237.79901,514.17224,4.442 56,443.058,308.6113,35.253723,62.28006,4.355 56,614.01086,13.139023,37.07257,111.17798,4.331 56,594.54504,-42.347,44.394897,94.62545,4.309 56,9.348238,177.89752,61.845238,107.46481,4.281 56,239.94629,198.8742,24.128448,33.919174,4.262 56,529.57056,205.74654,43.041504,71.59105,4.201 56,598.47955,-0.46100616,39.583496,109.61913,4.193 56,615.6797,199.2999,24.27948,69.49191,4.152 56,570.8929,122.85856,31.579773,63.508263,4.093 56,540.63727,27.118748,29.39331,71.52286,4.089 56,271.9626,192.51624,25.310272,41.24356,4.034 56,582.0364,214.69653,29.646301,65.62247,4.015 56,574.26044,205.07138,51.584167,130.061,4.007 56,186.98683,210.69664,18.385666,32.742325,3.946 56,417.19876,209.62552,20.449402,42.728683,3.934 56,401.85742,207.7676,19.274231,45.233063,3.925 56,618.05994,487.7493,21.334595,44.604156,3.915 56,614.0638,-19.323856,27.743103,67.28722,3.903 56,25.792294,209.68085,34.893684,50.702393,3.897 56,410.607,213.97626,20.155182,44.622772,3.884 56,297.22852,197.09573,23.033966,39.53044,3.857 56,449.2763,220.40495,20.6026,29.943405,3.823 56,224.60837,199.94337,23.509232,32.47824,3.822 56,619.20953,134.69928,19.81836,48.474823,3.816 57,486.7908,223.54752,33.80301,76.40921,91.08 57,452.3228,221.33981,35.17694,83.48044,90.756 57,434.06195,217.54778,21.112335,39.01375,11.818 57,470.1081,219.91292,38.878784,85.58778,11.813 57,615.38367,164.3804,23.465515,90.93396,6.576 57,622.99097,-32.983627,26.524353,75.1292,6.06 57,-17.835693,-65.90474,56.251316,151.91568,6.018 57,74.8363,203.1082,32.76349,53.83406,6.017 57,271.29062,184.47873,25.033386,39.13864,6.003 57,281.7301,187.69276,22.850708,38.2585,5.948 57,613.0785,456.09595,39.191895,106.0611,5.851 57,244.33621,179.41423,31.435303,49.863052,5.81 57,627.2018,488.3813,19.909058,45.193604,5.728 57,285.94708,188.27708,30.841309,58.079025,5.558 57,-6.1884475,489.29572,18.967201,42.29126,5.524 57,-8.764953,465.2256,37.618523,91.66211,5.48 57,-73.082344,265.946,200.86856,461.52847,5.212 57,583.33185,412.43518,71.490234,175.83545,5.17 57,627.10376,-18.879673,17.47705,47.958363,5.157 57,225.06676,205.63144,22.946777,33.56653,5.157 57,603.3076,-55.181602,52.83441,135.63063,5.103 57,-5.759237,-17.595959,17.292646,42.11387,5.081 57,-11.430029,-32.618416,29.753693,72.93441,5.056 57,536.53516,310.79974,143.4779,341.63824,5.043 57,-21.552713,402.3025,78.98611,175.22852,4.918 57,241.25568,176.10474,21.527283,36.782776,4.74 57,372.0974,197.01315,17.785065,39.571198,4.689 57,494.54468,228.84598,236.6643,512.838,4.643 57,291.09183,187.02484,21.193085,39.800964,4.63 57,240.5069,197.53467,24.403046,36.24498,4.587 57,293.99597,198.84372,30.672852,58.686462,4.535 57,-1.0002208,205.43387,27.318964,62.828156,4.513 57,467.50787,226.78775,26.740295,56.765533,4.312 57,594.1926,-46.614265,44.85901,98.84462,4.296 57,260.1189,181.53879,32.649323,56.834442,4.262 57,421.92065,214.21109,37.22821,83.61777,4.254 57,444.3224,185.56743,55.68457,113.59242,4.247 57,322.36926,219.45357,20.342957,36.649124,4.232 57,255.60255,183.38469,24.6223,38.627457,4.198 57,438.5713,222.30075,29.689484,65.77289,4.136 57,585.7473,-101.02935,76.23096,234.19449,4.103 57,446.45816,218.15273,51.9653,139.97264,4.085 57,-6.6015244,214.49147,20.032358,44.381546,4.079 57,486.1079,207.88925,29.196533,63.95169,4.057 57,397.64954,209.87073,55.92578,123.150024,4.029 57,1.7243767,210.69548,41.48403,92.80629,3.999 57,105.09605,210.95265,22.553581,43.1799,3.983 58,470.52658,209.15083,22.280243,48.396866,31.618 58,233.37753,187.01445,20.992676,36.6026,6.873 58,-17.408768,-64.40265,56.553123,149.2781,6.773 58,626.34296,-20.65134,18.362305,51.894146,6.721 58,240.28317,173.78966,21.95575,38.614395,6.472 58,622.3861,-32.79261,26.86676,79.8527,6.373 58,626.5951,487.59952,20.59729,46.82492,5.954 58,228.98637,162.37537,29.78395,58.22531,5.782 58,-6.497898,488.8674,19.469788,43.03073,5.505 58,38.003876,178.88977,28.754013,78.962585,5.486 58,613.03467,455.09036,39.494934,106.86447,5.408 58,-12.56199,477.42453,30.482933,63.106293,5.408 58,273.46466,192.55005,35.151978,59.057297,5.345 58,602.7916,-55.926155,52.355408,136.3775,5.265 58,-5.4191494,-17.30633,16.788319,42.965042,5.231 58,474.90097,188.52057,30.106537,65.23503,5.182 58,583.26447,412.55212,71.338196,175.61609,5.103 58,323.03714,213.10802,21.575775,44.25789,5.096 58,-73.05775,265.76398,200.50925,461.39594,5.045 58,385.29965,186.20575,20.425598,46.388702,4.935 58,499.7517,-3.7478905,29.866943,73.53798,4.935 58,-11.361797,-33.036926,29.618309,75.292885,4.886 58,-21.539019,402.84125,78.57443,174.8722,4.861 58,520.2427,177.02666,27.854492,69.20064,4.861 58,220.89658,178.44661,31.376602,47.68927,4.775 58,536.5378,310.44656,143.55682,342.4919,4.772 58,288.78406,197.8836,23.897614,37.626328,4.74 58,298.55588,198.70117,21.994324,37.40393,4.731 58,5.61849,199.39537,30.942263,64.25795,4.578 58,493.4405,228.70529,237.85748,515.09863,4.569 58,585.4603,-99.448166,75.7511,231.78998,4.537 58,245.79944,174.28946,28.422333,47.494156,4.484 58,279.80487,184.49341,23.92694,35.805725,4.467 58,-6.2948723,40.33661,19.943308,43.070076,4.451 58,562.63855,149.11952,35.777832,80.413864,4.393 58,529.5435,188.37857,30.570984,68.55264,4.389 58,-11.369862,30.012253,30.76113,65.02042,4.252 58,266.61783,176.08702,33.22586,53.184875,4.231 58,612.7544,187.85658,38.47278,103.95003,4.158 58,290.97552,137.09082,32.08789,68.58885,4.132 58,19.739765,195.00545,31.812115,67.90791,4.119 58,508.1543,-13.718918,31.28241,72.67234,4.111 58,570.88403,142.67438,55.553223,129.57574,4.094 58,488.9189,-176.96916,235.72525,417.3454,4.092 58,505.55194,-17.750946,19.063293,47.96786,4.086 58,488.00806,195.45752,21.409363,50.94658,4.083 58,44.371876,212.82805,29.629261,55.906876,4.038 58,30.146877,176.93788,50.843838,107.72447,4.034 58,568.6083,86.64375,58.653625,142.13962,3.955 58,474.64328,-17.143667,17.632477,43.453327,3.936 58,370.07544,183.84787,19.769287,48.608658,3.922 58,506.94147,-11.084179,55.23413,113.949036,3.893 58,30.320827,158.721,31.49786,82.02907,3.89 58,256.27274,189.30003,23.346344,36.27382,3.886 58,225.7659,196.84447,21.593277,34.82686,3.829 58,258.45233,190.8052,35.266113,58.318985,3.811 58,0.40144324,103.25371,36.68655,77.30646,3.763 58,240.6894,193.78915,22.718216,38.33873,3.755 58,212.26163,150.58456,31.998291,64.065186,3.752 58,482.2888,-16.834517,18.230896,44.084198,3.749 59,529.5208,202.58353,29.68689,66.329865,88.571 59,615.4728,166.69392,24.999634,83.490555,10.253 59,327.22626,205.48166,28.699066,66.48355,7.562 59,225.05891,189.35199,21.119812,32.541046,7.249 59,-17.02585,-63.257904,56.105156,146.71777,6.652 59,273.3872,200.19452,37.396942,65.42529,6.604 59,-2.5524616,187.97772,27.872995,73.85034,6.195 59,229.34995,172.28099,29.24591,47.002014,6.152 59,626.7122,488.2978,20.467712,45.755493,6.051 59,391.30246,185.6958,27.690765,69.1956,6.036 59,627.0664,-19.408047,17.712646,48.476555,5.974 59,-8.677111,465.44003,37.71528,90.76944,5.97 59,233.29713,188.82022,21.19661,33.78766,5.966 59,622.5171,-34.137802,27.247803,76.31391,5.904 59,-11.027245,-32.692955,29.437248,75.251495,5.717 59,523.2406,185.05788,47.499146,93.78728,5.714 59,612.79504,455.42636,39.485535,106.83682,5.542 59,241.47128,188.21176,22.189545,36.28607,5.459 59,-5.41749,-17.056305,16.781216,43.096123,5.422 59,-6.180253,489.15192,19.105658,42.544678,5.415 59,294.1069,195.762,33.727875,60.925842,5.383 59,-73.36838,265.59222,201.23268,461.84943,5.347 59,583.08356,413.5515,71.54199,174.61493,5.27 59,84.264175,154.53168,29.34098,68.68939,5.214 59,285.99805,180.64677,31.509857,58.061157,5.165 59,258.00818,192.61526,33.59204,62.976334,5.061 59,602.90717,-56.848507,53.26178,135.63037,5.04 59,-21.223707,404.0866,78.73387,174.09283,5.037 59,536.2847,309.79916,144.22125,342.69766,4.967 59,586.1742,-100.05436,74.37195,233.41852,4.881 59,494.09784,229.37729,237.13007,514.2383,4.796 59,541.86896,191.46425,25.207092,55.683792,4.787 59,387.0851,196.37306,40.98694,84.38048,4.76 59,264.13998,182.70462,25.201813,35.93654,4.728 59,28.73471,206.7814,30.544922,57.91559,4.704 59,509.3363,167.61568,31.503479,72.629196,4.646 59,520.1908,184.95695,30.457336,72.60185,4.621 59,386.40775,188.67703,21.478485,49.819504,4.597 59,490.23077,-180.98123,235.07318,422.106,4.595 59,7.4076056,198.66306,23.899206,49.92868,4.588 59,221.04602,152.86864,31.06746,62.61847,4.564 59,242.01698,178.66675,33.028,56.269974,4.539 59,-6.061906,210.83421,20.906387,49.448074,4.529 59,594.12946,-44.54294,45.118713,96.38511,4.506 59,341.13153,181.6384,36.726105,81.75061,4.498 59,13.720179,179.17091,52.72831,106.77913,4.471 59,558.04785,194.84686,30.760803,69.47333,4.401 59,-9.853535,200.3481,38.487247,93.06807,4.297 60,423.61008,193.21109,21.41864,55.058884,37.986 60,323.84558,206.97313,32.093384,67.48393,10.429 60,422.35855,190.7853,34.504486,80.12059,9.884 60,-5.7704544,-15.176372,17.758347,41.606327,7.663 60,443.3743,197.88708,20.241486,49.559998,6.619 60,233.07036,162.11621,21.399124,35.772552,6.543 60,341.3824,185.08159,36.33734,87.20308,6.272 60,-11.01627,-31.994232,29.970705,75.30599,6.254 60,409.14914,185.4979,34.804718,84.22589,6.218 60,264.23553,203.68965,37.571167,57.249435,6.031 60,335.70407,204.4036,25.676819,51.510193,6.025 60,282.43527,194.61295,35.464355,54.8443,5.965 60,611.2518,-48.050335,41.31952,102.974945,5.901 60,218.29689,199.37074,19.326889,29.392014,5.736 60,311.50732,210.4241,30.941254,63.716278,5.736 60,397.72128,187.30956,25.500183,65.57933,5.724 60,-17.181591,-62.58703,56.19822,141.6791,5.7 60,-8.778711,465.65213,37.481323,90.84726,5.64 60,621.7215,478.4712,28.72052,66.17493,5.635 60,-6.461879,489.1559,19.521128,42.748383,5.563 60,356.45917,188.15231,27.62381,68.658295,5.496 60,227.58249,165.85608,31.86206,49.797745,5.316 60,210.31487,150.72186,34.056335,62.00412,5.235 60,-73.05467,266.1551,201.04999,461.44678,5.196 60,376.52533,181.68752,35.50244,80.6393,5.141 60,208.83072,192.6026,21.806168,30.445114,5.111 60,280.45663,206.71614,24.333954,37.17131,5.104 60,603.297,433.82944,55.41913,140.23514,5.094 60,533.27234,178.5218,27.404968,66.96907,5.089 60,435.9929,198.25626,38.595276,80.48624,5.054 60,-21.388325,403.37024,78.924126,174.88147,4.971 60,626.68286,-19.972809,17.92743,52.161575,4.934 60,301.73297,197.58907,32.496155,60.317886,4.92 60,288.6234,198.11987,23.75241,35.401794,4.915 60,539.52136,195.8032,31.155518,63.66951,4.888 60,451.3342,200.84866,39.620636,81.51022,4.86 60,536.29425,309.51193,143.98944,343.31827,4.859 60,586.3891,-99.82336,73.93439,232.6307,4.811 60,73.62218,180.34024,61.27266,96.36694,4.739 60,2.4329586,-13.064492,16.845495,39.147568,4.728 60,225.92914,196.434,20.857666,31.760086,4.725 60,538.49384,306.14557,33.972534,55.78247,4.691 60,493.83987,228.2898,237.31967,513.14813,4.642 60,489.56393,-180.66425,236.26645,423.04434,4.617 60,309.21436,185.30888,39.867676,73.21428,4.611 60,353.9488,196.79149,41.875122,98.50169,4.531 60,-5.8474903,121.004166,18.670507,47.55931,4.525 60,419.0147,190.38556,19.761597,45.252716,4.509 60,285.93747,179.4045,31.722595,49.322067,4.485 60,-9.865532,142.25066,28.08223,77.415985,4.482 60,385.8102,197.94807,41.969574,97.85545,4.448 60,352.5073,195.87039,21.47287,49.652588,4.402 60,411.07712,187.00737,19.57602,46.257706,4.351 60,324.9399,177.23528,39.942932,76.322205,4.333 60,510.83673,162.97673,53.843994,105.34105,4.312 60,19.94553,144.10065,28.142258,75.71452,4.294 60,314.97043,-14.3768215,16.683594,39.223026,4.291 61,455.63574,197.8751,36.99655,83.817276,47.05 61,-10.519648,-31.523136,29.613924,72.11822,8.108 61,-5.772081,-17.741863,18.128317,44.578182,8.07 61,463.57205,192.77759,23.441803,55.74893,7.732 61,445.2312,206.26666,55.021942,118.978516,7.71 61,447.48642,213.10373,31.9794,74.80615,7.105 61,480.18002,207.82626,44.295624,84.18622,7.014 61,612.8669,452.7758,39.51953,109.930145,6.838 61,626.2968,486.68607,20.910706,46.673798,6.567 61,321.86023,214.72989,34.10904,63.561127,6.404 61,475.45496,192.7015,29.337372,73.1113,6.052 61,342.14996,209.17947,33.14264,69.71103,6.039 61,610.6992,-48.336464,41.2359,100.16361,5.965 61,231.68562,172.91293,22.509506,40.02597,5.865 61,-18.084047,-62.8429,57.171806,138.66663,5.847 61,348.01233,190.8186,55.525208,133.14862,5.72 61,-6.053115,489.78006,18.933472,41.578705,5.66 61,-8.52833,465.66974,37.344696,91.127014,5.634 61,-4.910269,227.32562,18.21616,44.42923,5.581 61,626.89417,-19.81062,17.35321,51.270493,5.48 61,330.66168,201.72047,32.56436,59.891403,5.389 61,418.0031,200.07582,42.996643,97.51463,5.354 61,528.4882,199.83656,44.947205,75.38374,5.343 61,1.1502671,218.43356,20.386772,46.54715,5.317 61,488.5661,191.74014,20.745575,48.75174,5.314 61,2.5739467,-16.18475,18.443914,42.663254,5.305 61,427.7081,187.48148,28.052368,65.712006,5.293 61,495.90546,210.07016,45.52777,83.815094,5.207 61,-73.16943,265.79712,200.94316,461.86548,5.181 61,597.2251,165.81404,38.851196,80.392685,5.134 61,218.77408,178.49142,32.828705,48.236893,5.058 61,586.1745,-101.255684,74.66278,234.14157,5.037 61,536.3504,310.3891,143.68085,341.56793,5.018 61,309.06018,211.59782,35.852264,60.909164,5.014 61,-21.341707,403.3117,78.952774,175.08667,4.94 61,183.95715,195.7937,23.209671,33.55081,4.929 61,589.51575,186.07336,30.414795,64.02118,4.926 61,201.46666,138.39323,22.376022,34.059357,4.905 61,317.8822,190.08348,56.23816,137.5671,4.877 61,512.038,256.74826,22.71289,32.41562,4.871 61,508.28384,182.06659,54.37906,99.88928,4.844 61,474.8355,260.53137,32.366302,65.41287,4.833 61,582.8539,411.771,71.958496,176.24207,4.816 61,546.00214,279.19012,37.08435,67.46176,4.783 61,448.80865,264.44922,43.99115,95.17413,4.763 61,538.78107,176.7851,56.11914,101.05826,4.742 61,494.0916,229.45746,237.39832,512.0314,4.733 61,489.94843,-182.55391,235.87811,424.2384,4.719 61,96.232864,280.00284,24.729614,44.74539,4.701 61,468.61554,-31.474033,30.353699,69.54339,4.7 61,386.54544,201.56723,42.879425,98.72012,4.65 61,306.89,185.65227,43.994232,66.98256,4.641 61,373.17847,189.90875,30.798279,69.01276,4.602 61,523.2484,196.03902,33.035828,60.255447,4.587 61,264.7381,180.40189,24.992096,35.940872,4.485 61,505.53467,259.8369,36.461426,58.41983,4.472 61,572.79944,168.82352,52.723267,108.457794,4.448 61,413.59073,190.32715,31.883026,70.6488,4.445 62,521.0918,198.41718,39.708374,89.53265,93.227 62,612.9419,452.79346,39.95752,109.5589,7.583 62,264.77017,186.08348,25.092682,39.86032,7.149 62,-6.5083227,489.1004,19.333103,42.679626,6.882 62,510.41806,197.52243,56.96225,141.63843,6.866 62,605.1806,173.87378,30.438171,89.297424,6.519 62,-12.206069,478.66226,30.457558,63.23996,6.496 62,626.777,-19.181644,17.759094,48.044758,6.247 62,341.9491,190.33304,36.962982,78.41284,6.233 62,217.15889,203.71497,20.561966,32.966843,6.231 62,573.5776,169.07027,26.184326,61.044937,6.1 62,482.82593,205.07372,42.68689,94.80556,6.067 62,231.05226,179.65953,22.632065,41.978928,6.039 62,358.08118,194.96756,36.655487,87.29227,5.895 62,-17.212484,-62.867447,56.14972,141.09097,5.857 62,626.22675,485.95605,21.384216,47.65399,5.838 62,618.0083,486.64972,21.384155,46.43756,5.624 62,210.2169,200.66211,21.071,32.06967,5.603 62,389.6618,199.23618,36.750275,88.11386,5.571 62,220.08234,167.51035,31.461975,61.570007,5.458 62,353.79214,197.91496,21.24179,43.15187,5.457 62,194.87236,144.09842,20.55832,35.272766,5.426 62,590.5659,173.59546,56.303223,204.33215,5.396 62,-5.8585687,-16.76868,17.942307,43.43785,5.375 62,610.5558,-47.655003,42.002197,99.98089,5.362 62,500.9815,208.81897,45.004333,105.86432,5.343 62,374.74213,192.354,35.690765,81.84125,5.256 62,369.59845,186.53192,25.480713,65.00241,5.234 62,546.02606,209.88867,42.10077,101.17963,5.219 62,533.6142,79.88846,29.180908,76.99072,5.188 62,252.15166,187.26498,33.700363,53.84169,5.107 62,558.9204,172.46858,51.01544,107.36211,5.106 62,224.95135,198.25182,21.073273,33.392532,5.021 62,-15.927752,176.12439,51.149376,129.52661,4.945 62,536.27673,310.10895,144.11755,343.15997,4.938 62,582.6215,412.15704,72.05414,176.0921,4.921 62,324.68015,195.35063,39.36331,83.74403,4.84 62,-73.040016,267.74835,200.23022,460.23248,4.829 62,-18.441797,435.07285,56.035355,140.89316,4.781 62,1.9072044,194.92844,39.47109,86.072784,4.771 62,489.79285,-181.23682,236.92456,424.6524,4.714 62,-39.787582,369.8151,109.434814,272.76913,4.683 62,493.93448,230.97295,237.6434,511.70056,4.59 62,612.3436,232.40996,29.073547,99.01637,4.586 62,163.05183,207.75815,31.378159,51.40097,4.518 62,186.64874,141.68588,21.207474,35.32022,4.497 62,395.9176,198.73428,55.593475,137.23117,4.475 63,603.40936,151.1089,39.06732,125.77855,69.22 63,394.35907,165.23532,33.02234,75.396225,10.27 63,614.81696,151.1969,25.840332,76.66983,9.077 63,590.6963,151.83302,29.446777,68.888535,7.746 63,218.9437,158.58765,20.385162,34.288834,6.926 63,357.0724,150.09079,37.096344,74.56819,6.866 63,184.20326,162.15732,21.614075,30.706787,6.836 63,614.67584,197.14836,25.529297,83.69472,6.573 63,-5.548973,-18.734392,17.91827,43.51783,6.527 63,265.83554,151.77596,23.057343,36.989548,6.412 63,220.77682,133.37244,28.225021,57.084244,6.229 63,247.91855,152.3266,23.124603,34.579727,6.153 63,201.35876,160.95604,22.081879,33.384552,5.882 63,410.2097,167.42848,33.564575,75.97658,5.872 63,-8.631557,465.4513,37.57082,91.81116,5.861 63,-17.446827,-64.64937,55.81416,142.38797,5.782 63,486.3983,147.79007,39.115875,90.30823,5.671 63,626.6525,489.0845,20.740784,44.151093,5.585 63,113.23658,153.00667,22.34272,46.849014,5.583 63,587.31683,96.38525,58.70215,189.14041,5.54 63,429.561,138.63957,30.908173,74.33597,5.528 63,602.8994,-57.66626,53.475464,137.48694,5.42 63,341.74283,148.3403,39.422943,73.27779,5.386 63,2.4951124,55.543312,33.679462,85.760796,5.352 63,508.80432,230.46246,30.492798,67.10889,5.32 63,361.52972,145.11247,21.64862,49.84224,5.319 63,210.03517,159.75533,21.071884,34.25209,5.302 63,-10.815278,-30.825619,29.304111,68.73526,5.294 63,622.44775,-33.479004,27.271973,77.27099,5.251 63,565.98425,159.2192,37.60028,83.551285,5.233 63,613.0376,454.0919,39.549744,108.85336,5.162 63,536.41345,308.77985,143.48956,343.89728,5.107 63,-6.2413416,489.8029,18.81866,41.654266,5.092 63,-72.69484,266.9624,200.16493,459.07733,5.079 63,-21.32645,403.68246,78.89662,174.58707,5.018 63,162.64198,160.15327,18.883621,31.011292,5.006 63,557.8454,170.15366,56.30963,120.960815,5.001 63,627.10754,-19.958473,17.764954,49.368908,4.998 63,583.03,411.30765,71.389404,176.40134,4.991 63,479.54932,169.51195,55.76111,125.0905,4.886 63,596.52795,207.18611,40.100525,106.65605,4.873 63,489.40994,-180.45659,236.27219,424.47763,4.772 63,584.2503,143.05733,44.98639,122.46208,4.772 63,501.77914,142.26025,27.46286,79.9651,4.734 63,417.70557,178.16246,41.6792,82.71599,4.692 63,464.02258,144.68077,50.040222,118.07948,4.687 63,368.76437,158.22464,20.83023,38.496765,4.673 63,203.00764,111.908485,32.20439,63.964317,4.663 63,452.24716,145.31056,41.108276,87.31671,4.655 63,2.3999536,162.40257,20.248835,48.28633,4.649 63,493.72766,229.32245,237.43353,514.7871,4.573 63,477.80673,159.99612,28.621857,67.63435,4.56 63,547.43713,162.8108,31.695923,63.145493,4.557 63,232.60742,132.25035,21.64003,43.019287,4.519 64,437.7868,27.085625,30.666107,79.67731,8.644 64,375.47748,206.60594,23.220459,43.80626,8.49 64,394.06293,206.57993,21.603302,40.253754,8.046 64,249.46811,207.66139,21.499664,31.998901,7.852 64,612.7718,452.45517,39.971375,108.68503,7.006 64,402.36026,216.59424,42.48172,81.13599,6.648 64,2.3878586,224.7993,18.99054,44.882767,6.538 64,386.38748,213.21494,42.793427,81.55295,6.498 64,-5.8138757,-16.959963,18.153784,44.380726,6.416 64,439.75125,227.80249,34.23935,83.422,6.369 64,218.4446,215.27744,19.296524,32.857285,6.366 64,209.53833,213.4056,21.132462,35.37886,6.212 64,-10.944822,-33.111122,30.025896,77.22915,6.188 64,385.09384,204.41418,21.88498,42.5589,6.177 64,268.35666,201.79868,32.938538,53.88443,6.152 64,460.4446,173.63556,29.554169,92.022705,6.074 64,-8.552521,465.8338,37.38595,90.86725,5.989 64,184.78961,221.11832,22.440292,32.581665,5.987 64,-6.132159,489.99304,18.894773,41.592224,5.983 64,279.49042,209.7363,23.830505,37.845184,5.897 64,626.01996,485.49817,21.898254,48.167175,5.888 64,444.76334,191.22884,31.233246,91.699356,5.745 64,-17.224092,-63.73572,56.174553,144.21182,5.735 64,610.546,-47.36896,41.735962,99.60335,5.721 64,264.35754,211.59912,23.92926,37.681793,5.698 64,162.1965,217.50522,20.096603,28.362839,5.683 64,340.98544,206.4253,32.10379,55.75363,5.667 64,400.7605,213.16936,21.856232,37.135468,5.658 64,370.34998,212.13992,42.66382,80.88742,5.489 64,355.1756,202.55388,32.0083,60.02437,5.364 64,288.9788,217.14145,23.405365,35.952057,5.261 64,255.56229,212.82211,22.700989,34.265182,5.237 64,585.5982,-98.68155,74.9718,231.37695,5.212 64,-17.551699,438.07013,55.272865,138.18256,5.156 64,233.10135,193.16615,19.988342,37.794586,5.151 64,-73.29727,265.55157,200.7242,462.02875,5.065 64,417.88364,201.55064,53.584198,110.354416,5.05 64,251.12776,195.5125,17.190659,32.329712,5.036 64,617.819,486.91357,21.758911,45.642517,5.014 64,465.08435,216.79437,31.834229,89.492004,4.994 64,438.6002,59.93325,26.202332,75.52592,4.98 64,268.6893,189.93585,15.822113,30.008453,4.929 64,11.292049,177.0782,58.338734,115.65257,4.852 64,595.10626,208.24632,33.623108,68.03194,4.835 64,583.1968,409.74713,71.62567,177.9776,4.83 64,-39.739986,368.7503,109.70274,274.41608,4.793 64,596.98706,45.31309,40.476074,99.7798,4.775 64,266.25134,200.28636,21.064087,35.56668,4.771 64,-16.340376,173.10326,51.21031,132.35866,4.739 64,457.5853,103.64639,20.68338,48.95685,4.695 64,626.8959,-18.84875,17.641724,47.539387,4.678 64,258.5916,195.32036,17.88974,31.409683,4.673 64,536.5532,311.20917,143.73761,341.31378,4.654 64,201.54665,217.94571,21.806702,35.17122,4.631 64,581.91736,49.672543,39.46045,94.73277,4.593 64,489.6725,-179.5236,235.60767,423.5458,4.591 64,313.29004,218.3943,22.707031,38.314896,4.591 64,590.058,-21.978333,52.52832,124.89543,4.573 64,458.17508,89.51965,19.127441,41.654358,4.571 64,154.64275,220.87651,19.414856,29.445526,4.547 64,321.32446,205.99515,44.41095,68.6279,4.542 64,225.64603,215.1405,19.09639,32.040115,4.527 64,445.16037,194.95334,53.58255,123.08661,4.506 64,354.5417,219.60025,44.50482,94.71954,4.502 64,493.32394,228.0458,237.83939,514.4868,4.5 65,570.917,218.53575,54.430786,149.13722,11.16 65,372.71887,209.43437,30.456665,53.935287,10.436 65,468.21375,170.03564,27.761353,75.706436,9.313 65,582.1316,286.19427,31.465942,84.28854,8.901 65,539.2425,209.08163,56.574036,142.43945,8.413 65,349.3477,204.21248,30.47931,60.8116,7.893 65,362.40384,212.27057,22.76892,47.7276,7.634 65,409.58698,206.36436,23.274994,40.721313,7.594 65,-17.975157,-64.4747,56.30458,148.39247,7.44 65,626.4444,487.6468,21.269531,44.996338,6.628 65,167.81738,217.78091,25.189896,33.18242,6.397 65,280.21405,210.92722,24.072815,36.474854,6.199 65,613.1976,452.95517,39.435547,108.63394,6.122 65,-8.501515,465.49866,37.27468,91.96796,5.985 65,210.26726,215.7653,20.205643,32.095352,5.967 65,368.31317,224.01025,23.352203,39.33304,5.793 65,-5.242498,-16.839642,16.809065,41.68681,5.784 65,252.84946,188.17677,31.134949,56.32579,5.764 65,217.32184,218.46236,20.294128,32.014496,5.72 65,561.3195,221.79462,43.483276,110.9035,5.684 65,454.6901,185.11537,31.058868,69.23323,5.63 65,553.65015,229.69778,32.48694,99.45181,5.615 65,227.87967,179.89432,29.098114,61.375244,5.551 65,622.25085,-33.912,27.516663,77.13115,5.487 65,555.7938,140.97548,31.852722,80.755066,5.481 65,382.10242,196.67865,27.791565,58.625076,5.48 65,343.98618,211.41037,23.426819,49.51526,5.455 65,-5.935977,489.83905,18.591663,41.42688,5.396 65,402.05487,202.6407,22.271149,43.74739,5.365 65,266.81442,185.18723,18.868164,35.713562,5.337 65,393.77475,202.73366,21.170074,45.169754,5.337 65,-11.313668,-32.34216,29.514946,72.7253,5.29 65,510.0703,186.60478,28.63269,68.42421,5.269 65,-73.59088,265.32144,201.5812,462.28342,5.223 65,320.9795,222.48062,23.44104,41.19995,5.196 65,290.0655,216.98425,21.724976,36.015457,5.161 65,192.5287,213.97926,22.484436,33.888855,5.137 65,306.62335,217.53041,21.173157,39.351578,5.135 65,313.87744,219.27277,21.454254,41.55258,5.082 65,602.52637,-57.7443,53.395264,138.85535,5.082 65,536.27136,309.4359,144.0805,343.08252,5.009 65,154.25032,206.15921,19.095947,32.65393,5.001 65,-21.326881,403.52335,78.7771,174.93124,4.997 65,565.52075,156.75821,33.436096,85.68198,4.985 65,457.8264,165.58344,57.222687,100.19983,4.975 65,260.25604,200.81152,34.369934,53.109848,4.944 65,291.8494,152.452,30.781586,67.94238,4.869 65,180.6939,203.44785,30.64531,49.214874,4.808 65,582.9901,410.82922,72.08923,177.87628,4.808 65,298.36,212.0907,22.645844,40.624573,4.796 65,593.4608,287.22888,39.64685,110.76135,4.785 65,202.0295,218.74669,20.357422,32.587326,4.764 65,489.60007,-181.36632,236.3046,422.9197,4.668 65,585.7572,-104.98273,75.73016,241.69958,4.578 66,483.5893,170.91942,30.046692,82.3604,12.55 66,417.00055,212.24942,23.309875,44.56778,9.524 66,399.6228,212.03043,23.868439,47.594147,8.479 66,280.03726,215.46346,26.133484,44.71727,7.79 66,1.8884349,218.85544,20.029926,49.489014,7.439 66,622.2274,-33.864624,27.295288,78.90335,7.293 66,167.66592,221.39954,22.773956,36.623444,7.081 66,373.78046,215.88165,29.741425,61.88733,6.894 66,-18.330563,-65.867424,56.96237,151.31926,6.839 66,349.4366,202.77246,29.118347,69.07184,6.733 66,287.3462,212.26765,30.140259,56.812973,6.658 66,227.05031,205.18564,34.843643,48.399673,6.624 66,626.9683,-20.18256,17.889221,50.225,6.216 66,47.570835,211.69138,23.40887,48.943756,6.209 66,626.4142,488.1455,21.22528,45.416504,6.162 66,541.5092,190.99422,23.651611,47.72258,6.047 66,613.9379,122.35938,26.168518,90.68667,6.037 66,240.857,204.2773,37.503204,53.05034,6.027 66,270.0601,208.99077,26.967285,41.371918,5.968 66,151.84229,222.46451,25.368103,34.14505,5.964 66,177.99677,225.91023,20.404968,33.400406,5.934 66,217.11108,221.20044,20.984772,31.054596,5.841 66,210.49863,183.52194,30.039337,61.833664,5.817 66,210.0513,217.60333,19.897644,33.633347,5.783 66,-11.809427,479.29724,29.41579,61.911377,5.58 66,388.05524,215.19853,31.19873,61.985977,5.575 66,-6.1365175,489.77667,18.634918,41.308594,5.575 66,-8.940716,464.8304,37.86396,92.24344,5.563 66,224.77637,218.41174,22.676758,33.845016,5.546 66,-3.1506932,216.65652,18.08867,45.1362,5.517 66,203.46632,225.77808,17.949936,29.999146,5.493 66,585.85315,-98.41275,73.740234,234.10156,5.487 66,-5.4284716,-17.213188,17.024544,41.909588,5.383 66,186.6031,228.62491,18.71289,30.429932,5.372 66,602.4601,-56.332832,53.49762,135.83829,5.275 66,156.70065,211.36234,29.9514,48.279633,5.225 66,612.98755,453.94873,39.570435,108.04712,5.101 66,-11.228968,-32.442204,29.467085,72.72385,5.079 66,-73.37099,265.99728,201.28903,461.8483,5.063 66,-21.375042,403.4399,78.74695,174.72354,4.963 66,583.08966,412.67645,71.59265,174.47931,4.962 66,617.7323,-10.804321,22.255981,53.378353,4.96 66,536.05054,310.2916,145.06305,341.49393,4.819 66,212.20802,209.73753,30.57927,47.980515,4.797 66,493.67242,227.58325,237.01251,514.8436,4.748 66,106.357735,221.20787,20.956505,32.71765,4.679 66,369.7902,226.07573,43.734467,80.20082,4.673 66,114.05409,227.66905,20.023941,29.933731,4.662 66,490.20648,-181.48265,235.02228,424.84848,4.652 66,-16.666111,185.41913,50.56887,127.40558,4.639 66,65.02107,203.67676,23.236687,42.412018,4.621 66,483.6743,210.84201,31.902863,57.436523,4.616 66,282.63397,160.55766,33.38382,66.72334,4.606 66,272.76276,223.75679,23.603577,39.304184,4.59 66,476.0548,-16.321163,32.09677,70.29717,4.563 66,618.11566,489.57446,20.78955,43.6474,4.486 66,472.09293,182.41992,32.618195,72.305756,4.468 66,594.288,-45.094757,44.442932,99.04425,4.462 66,57.873848,198.75789,22.474419,41.408386,4.462 66,402.76172,189.7331,41.81253,75.36145,4.434 66,591.0935,212.69281,28.40625,61.932404,4.377 67,552.32477,181.72397,26.875366,62.376312,17.396 67,393.06583,208.86563,24.317047,50.395386,15.378 67,478.2581,168.26639,30.219574,79.63461,13.537 67,371.37653,214.67978,30.975922,75.14957,11.639 67,81.99725,227.0618,24.049988,38.746185,8.962 67,174.98961,220.03862,23.936005,35.79747,8.239 67,376.287,209.2645,21.898804,50.27777,7.773 67,349.01117,208.87012,29.591766,72.07153,7.738 67,177.35689,211.72134,36.447723,49.721436,7.528 67,255.90823,217.33441,30.0867,63.086884,7.339 67,56.9122,225.64474,22.447762,35.37854,6.907 67,162.01105,220.51126,22.510254,34.296967,6.677 67,334.50787,206.91081,29.132996,68.37523,6.657 67,622.4937,-33.84932,27.231995,76.09969,6.613 67,208.39343,211.06494,39.648697,55.025146,6.557 67,231.54987,216.58043,25.850006,41.74379,6.511 67,617.1,186.35205,20.271973,42.029877,6.457 67,468.53046,201.80972,36.337738,58.735046,6.419 67,323.28302,201.33379,29.791382,61.586502,6.332 67,73.589516,225.34557,23.684792,38.239944,6.276 67,122.713,219.72527,33.030075,47.37831,6.24 67,235.82257,211.84038,33.370667,55.180862,6.217 67,64.90653,222.05014,23.008156,39.20343,6.209 67,627.0319,-19.6005,17.676697,48.44793,6.124 67,191.44629,209.53073,40.429,54.63092,6.078 67,626.8981,488.41135,20.343811,45.41501,5.902 67,602.7232,-56.961243,53.24176,131.93857,5.798 67,-8.786941,465.43277,37.658123,91.805756,5.599 67,603.68274,435.1421,54.42639,139.31226,5.599 67,586.2444,-96.6387,73.602356,229.27046,5.563 67,168.43521,185.5463,33.084778,58.53769,5.506 67,353.98358,220.66992,43.34192,87.78668,5.479 67,-17.98691,-64.5955,56.16494,148.41127,5.467 67,146.8795,207.93129,35.941666,50.106216,5.403 67,-73.1557,264.98825,201.21774,462.61758,5.366 67,-5.435341,-17.22403,17.067081,41.84294,5.354 67,594.12573,-44.713543,44.35437,95.03105,5.13 67,-6.2139425,489.11523,18.992435,42.07013,5.121 68,566.05444,185.65439,27.6427,71.27124,39.315 68,363.73846,210.1241,26.728333,62.081833,29.513 68,312.91528,212.36647,20.766113,52.383408,25.425 68,343.96286,215.19824,34.980072,82.576355,12.791 68,344.02826,213.23145,22.71643,57.642975,10.071 68,622.6867,-33.28257,26.861572,75.12651,8.966 68,352.63004,212.84265,22.566559,54.410217,7.783 68,626.69244,-19.607594,18.182129,48.218334,7.084 68,310.59537,211.25319,34.79123,77.57231,6.861 68,129.89659,190.79027,31.75853,59.117935,6.745 68,287.86893,213.1308,23.583344,44.639618,6.492 68,176.02469,208.1702,39.424133,62.40744,6.088 68,119.516914,226.43053,23.801445,37.181534,6.012 68,471.71555,187.46658,29.501495,81.75049,5.957 68,-8.809615,465.614,37.577793,91.26526,5.928 68,323.72287,231.28119,43.595,93.31073,5.841 68,303.554,216.3881,27.025696,67.9518,5.738 68,626.583,488.41513,20.74884,45.402496,5.724 68,243.7468,211.06346,39.971527,85.99715,5.669 68,55.53125,235.73517,23.027802,33.49878,5.537 68,-17.928278,-64.53487,56.094887,147.84363,5.485 68,81.261246,209.39223,34.17383,52.111435,5.467 68,-73.7167,264.53265,202.28159,463.89886,5.413 68,-5.449444,-17.291676,17.09534,41.91095,5.403 68,-6.257592,489.21356,19.224678,42.490845,5.389 68,50.656075,212.56604,33.95748,57.105347,5.367 68,258.32617,217.14217,41.38675,94.15831,5.354 68,612.9712,455.36893,39.411865,107.15781,5.284 68,618.11487,-20.405117,19.49707,47.77443,5.265 68,169.42186,234.84402,37.849045,57.31079,5.214 68,602.89465,-57.02169,52.899963,134.70349,5.207 68,134.78262,220.35002,26.684357,40.564957,5.202 68,352.1698,227.37463,43.322754,92.51892,5.131 68,79.541916,220.54393,46.421867,67.20528,5.122 68,64.274216,234.60406,22.38263,33.47357,5.121 68,159.66608,212.55301,41.422867,55.970978,5.041 68,583.2475,412.81628,71.5119,175.50592,5.018 68,194.4571,210.72528,35.099136,59.81839,5.008 68,211.0408,210.5265,42.758606,82.70671,4.999 68,-11.241768,-32.538956,29.481026,72.8696,4.99 68,-21.328012,403.69263,78.79708,174.3341,4.939 68,614.2771,20.667324,25.227234,76.13545,4.931 68,104.316025,226.44862,22.664337,35.482803,4.926 68,97.56009,211.1368,35.093185,52.13774,4.923 68,327.05084,207.71173,36.30243,77.44214,4.923 68,122.69164,216.66154,33.56083,51.710464,4.859 68,553.3862,195.298,30.540466,65.04715,4.847 68,237.24655,214.12752,28.725525,70.11217,4.845 68,536.10297,310.64026,144.00745,341.8772,4.725 68,153.13611,229.27155,37.573456,52.359863,4.699 69,335.78976,208.44577,28.207916,66.91818,66.883 69,388.69684,209.60239,30.270203,76.89322,52.691 69,376.59348,204.62079,52.495605,133.64954,25.192 69,339.47614,201.77663,36.88797,100.92268,20.443 69,523.2169,181.9808,30.2193,86.616,11.084 69,315.32117,208.14102,29.92752,64.557465,9.298 69,0.8463216,284.74973,23.418522,39.682617,8.543 69,627.1569,-16.56398,16.977112,46.91769,8.355 69,622.953,-33.600903,26.612183,78.424904,7.911 69,354.36633,197.48491,46.834076,132.43098,7.683 69,40.113037,215.39603,24.705475,45.03183,7.545 69,508.53113,205.07513,35.555054,68.26523,6.661 69,282.6541,197.76372,31.853363,72.61696,6.492 69,-4.6654887,284.01144,18.96533,38.710297,6.296 69,373.14355,214.55421,32.651245,90.07738,6.248 69,28.987982,207.53102,31.896227,62.992477,6.172 69,613.2986,453.93323,39.324158,107.90204,6.165 69,261.41248,222.19565,30.353516,76.65753,6.051 69,520.8034,249.88962,38.06964,58.9805,6.028 69,-5.743709,214.1757,18.73844,46.529984,6.021 69,316.6214,201.07648,59.982605,144.98822,5.935 69,11.391143,207.23201,30.995087,63.59636,5.912 69,78.12645,211.01358,27.634888,67.26535,5.88 69,365.87064,202.79642,29.06128,85.86841,5.835 69,144.73347,179.65514,33.547302,57.05414,5.773 69,24.210327,219.30199,24.788284,48.386765,5.759 69,170.39133,188.52782,20.723175,36.88295,5.749 69,294.82486,204.10243,36.91989,73.51375,5.748 69,-8.776243,465.5107,37.533493,90.97641,5.745 69,602.4445,-55.565487,53.159424,133.58171,5.725 69,4.033533,268.8073,36.507835,84.082886,5.579 69,-0.22917628,208.48605,25.791224,70.09656,5.553 69,-17.877766,-64.746506,56.028767,148.31378,5.526 69,626.33594,486.529,20.847961,48.292664,5.473 69,-6.338177,489.4637,19.16281,42.052094,5.465 69,-72.99227,264.75595,201.75964,463.0613,5.4 69,-5.4648113,-17.31905,17.107307,41.917892,5.395 69,585.5484,-97.39514,74.34021,232.77863,5.36 69,94.74672,200.4165,29.957626,65.06067,5.273 70,391.54468,218.27908,22.91333,50.753265,72.129 70,438.81747,205.91939,23.266449,60.698654,39.789 70,413.89645,209.02739,26.663696,75.01073,24.706 70,378.26474,221.87306,20.739197,46.567673,11.918 70,439.18332,203.99495,34.28589,101.463974,11.267 70,423.4359,204.97893,33.244934,94.57356,10.892 70,364.7441,209.28145,27.943573,61.85472,9.93 70,597.667,179.65656,29.05243,85.92798,9.302 70,391.38922,209.09714,33.883575,82.91629,9.112 70,97.294426,215.23663,34.044548,49.323425,8.412 70,349.59583,216.65825,30.005371,75.94472,7.965 70,454.9381,196.87956,29.391907,93.54384,7.897 70,462.54825,296.27353,36.48648,84.74448,7.826 70,447.69006,225.8776,56.54428,145.47739,7.156 70,626.91846,-19.475245,17.840576,50.162178,6.916 70,622.52374,-33.21352,26.680481,78.7099,6.842 70,612.94855,452.1829,39.12207,109.05759,6.433 70,120.47476,214.27565,22.844315,42.24919,6.376 70,612.85596,101.033394,25.883606,102.96645,6.346 70,375.54205,209.16345,34.79608,81.867065,6.203 70,3.4789407,210.03223,34.686024,59.840057,5.953 70,331.028,206.91939,31.370697,76.35533,5.858 70,421.54657,243.58978,30.942871,86.423584,5.836 70,316.88098,211.37952,32.086548,73.43585,5.755 70,82.9519,216.33844,43.27896,67.493835,5.741 70,626.21094,485.03943,21.674744,49.02289,5.707 70,400.42902,204.40695,47.394745,124.77951,5.477 70,-17.926697,-64.74788,56.089275,148.52191,5.452 70,361.5099,226.05496,22.647583,53.19156,5.448 70,-5.4705215,-17.347616,17.125505,41.936813,5.419 70,-8.762908,465.22525,37.595173,91.58237,5.359 70,602.454,-56.155952,53.49823,139.37424,5.358 71,458.10046,217.44705,24.557587,54.84427,71.562 71,479.13052,211.6914,26.44461,60.21237,64.77 71,527.085,202.67877,66.20239,193.76703,35.699 71,433.19586,228.83775,23.108276,48.978867,11.482 71,166.8771,226.05417,23.231262,37.720703,9.221 71,139.51001,223.22224,28.17215,43.23964,8.791 71,489.50366,209.74402,29.583008,72.73053,8.399 71,440.7923,222.57037,20.978394,46.996277,8.145 71,354.58316,213.2197,44.196686,104.50427,8.058 71,406.95135,207.72636,27.01944,69.62898,7.781 71,227.2708,230.33797,34.426712,51.52043,7.446 71,249.29976,232.79129,37.024734,51.605713,7.334 71,613.4974,451.6268,39.56378,111.37149,7.177 71,536.8693,187.43881,40.415955,144.56198,6.953 71,447.72333,200.10582,29.14856,67.627,6.314 71,500.40875,282.12744,28.731873,79.07062,6.298 71,622.23883,-34.89357,27.414368,77.78725,6.274 71,368.66147,212.4901,41.81964,81.01375,6.017 71,389.26236,205.36203,32.696533,75.88089,5.979 71,-18.265415,-66.370316,56.300045,151.32356,5.784 71,-8.581449,465.2072,37.453693,91.53894,5.746 71,421.48303,210.30219,31.731049,66.33664,5.71 71,438.08896,214.00203,36.205017,74.40785,5.706 71,413.0855,222.3278,31.088654,76.6815,5.579 71,262.91013,230.87068,37.909454,57.128586,5.453 72,509.6364,211.80457,29.446411,67.0199,86.735 72,486.84818,218.0204,29.11258,60.908676,51.965 72,476.27832,221.31453,31.5961,72.2086,11.147 72,460.70737,215.63399,28.089691,70.21379,10.945 72,198.1671,236.18828,24.602371,40.234818,10.664 72,472.0799,225.59496,23.629395,54.21315,8.852 72,451.4843,207.53564,27.719421,74.3681,7.447 72,376.6721,218.34474,59.28128,143.27147,7.387 72,428.45966,193.6041,31.393005,76.79578,6.715 72,513.5787,214.92918,38.218445,89.24489,6.414 72,275.57828,234.82176,35.497192,50.23787,6.225 72,613.60535,450.6334,38.79236,109.212616,6.146 72,626.0277,484.34738,21.801147,48.455414,6.022 72,349.8365,213.4808,31.637543,69.58484,5.954 72,622.32367,-33.036922,27.681335,76.18425,5.755 72,-18.210499,-66.47111,56.379486,151.76218,5.743 72,443.8998,232.48198,31.099213,74.97774,5.686 72,-9.308906,465.31912,37.769352,92.34982,5.617 72,258.65573,182.7841,31.832428,63.471878,5.606 72,411.336,210.90675,30.747375,72.02641,5.528 72,615.2917,429.73666,24.757446,59.552246,5.452 72,575.6646,232.39496,51.374573,174.14362,5.433 72,395.4852,216.41684,52.619965,111.93503,5.421 72,-6.4189577,489.17447,19.777946,42.937836,5.376 72,602.21735,-55.24917,53.55487,142.8755,5.357 72,289.63412,236.89804,34.30594,49.790955,5.32 72,627.19836,-18.217001,17.483765,48.11552,5.304 72,419.1734,223.32205,40.997437,95.48227,5.28 72,-5.4797745,-17.316338,17.121433,41.82881,5.27 72,-73.133835,264.46915,202.29698,463.69174,5.206 72,498.90143,220.50449,42.082275,104.72406,5.067 72,304.89877,233.25177,33.07425,57.218994,5.025 73,532.2944,218.43785,31.017761,70.57408,66.58 73,249.61937,225.96794,32.87535,66.702774,15.19 73,192.64473,231.27965,22.341003,40.39885,11.109 73,184.7824,231.036,21.652725,41.514877,10.379 73,520.627,210.70547,32.035522,78.27957,10.196 73,171.12679,225.8039,31.217117,56.59619,9.943 73,211.02159,225.15332,32.772934,62.586487,9.862 73,201.16609,233.68073,22.420761,45.538208,9.842 73,227.67061,235.1977,35.45961,62.979797,9.59 73,208.18658,231.48444,24.326935,40.930542,9.556 73,155.19962,231.20056,34.79619,59.3302,9.48 73,544.8199,220.26721,29.827759,71.93408,9.146 73,515.56525,222.10316,44.192932,110.84471,6.935 73,160.52054,225.96964,23.820038,41.898193,6.918 73,261.7773,231.33705,25.302887,52.779373,6.914 73,445.46265,219.13426,57.536896,149.735,6.789 73,241.10771,227.00058,25.639511,51.041718,6.768 73,612.7021,450.6301,39.42755,109.410065,6.763 73,622.3494,-33.95877,27.463745,75.02563,6.689 73,137.67789,238.66391,35.669983,56.96292,6.634 73,490.71777,203.39508,31.021729,77.41727,6.244 73,475.2295,217.43024,32.178284,74.14011,6.23 73,313.04462,242.29749,37.363373,54.21161,6.166 73,-18.234262,-66.783516,56.307785,151.63074,6.1 73,224.1948,229.26006,23.548004,43.559982,6.063 73,625.7205,484.5519,21.834412,47.185516,6.039 73,477.8216,215.55453,51.51123,116.41034,5.99 73,279.42523,224.17476,22.706848,42.428116,5.936 73,497.3286,224.73761,44.11267,116.599304,5.919 73,416.76727,227.37848,25.035461,47.007446,5.831 73,565.0752,221.82178,38.72815,99.45117,5.822 73,626.6832,-19.162218,18.19226,47.04745,5.659 73,-6.3866453,489.85144,19.393726,42.058594,5.655 74,566.18176,225.48209,30.197754,78.47327,34.125 74,597.65814,218.57657,28.559448,65.668365,29.07 74,552.82544,224.0556,30.494995,84.69983,12.972 74,299.8286,230.62407,16.542084,40.834976,11.979 74,581.9291,220.54347,27.954773,66.70567,10.286 74,245.65222,234.56721,23.951172,41.51317,8.881 74,325.4845,235.98672,32.022095,67.33859,8.65 74,292.72772,232.54575,17.095856,40.888092,8.579 74,294.0407,220.62566,27.554993,61.566605,8.209 74,305.48242,231.15953,18.052277,38.589157,7.983 74,265.93677,235.66841,20.799133,38.900803,7.884 74,592.2048,219.31337,22.159912,50.671555,7.518 74,626.525,487.12924,20.846313,45.086823,6.823 74,622.6748,-33.24754,27.517761,75.04958,6.809 74,282.6928,233.47931,18.696411,39.182648,6.756 74,627.0716,-19.133324,17.884338,47.30227,6.269 74,267.8176,230.79262,29.915741,56.09453,6.261 74,-18.165108,-66.14998,56.39589,151.08775,6.249 74,460.64987,227.96065,57.96768,163.13823,5.951 74,507.73322,229.82281,31.395447,68.986206,5.908 74,483.58594,233.32318,40.412537,109.96045,5.825 74,-11.853747,479.83743,29.554913,61.3107,5.754 74,-6.0725284,489.5772,18.559273,41.638,5.732 74,516.10474,227.32257,38.10382,96.13104,5.73 74,557.0198,215.74129,45.02173,119.88304,5.688 74,338.37842,193.20424,31.474182,61.005386,5.669 74,491.16867,227.20592,54.417328,150.98128,5.584 74,597.136,227.21823,37.29303,109.16034,5.534 74,613.5066,452.25522,39.007324,111.30435,5.478 74,-72.94471,262.43674,202.04068,466.66592,5.372 74,338.34314,252.25473,30.404083,57.779724,5.341 74,-5.479452,-17.286404,17.134382,41.857525,5.339 74,535.2596,308.91376,144.42432,345.37213,5.294 74,602.4998,-56.83238,53.92932,134.73094,5.277 74,-8.647711,465.2552,37.43027,91.65393,5.249 74,314.05774,231.7605,20.048676,38.74881,5.247 74,542.3751,238.94131,31.776306,73.44513,5.169 74,26.879871,232.22235,31.241943,64.03693,5.165 74,610.3846,212.1575,27.794312,77.03018,5.141 74,469.67654,231.22539,40.918518,93.59068,5.124 74,583.73505,409.00894,70.71265,178.17532,5.066 74,355.32477,185.9592,32.124542,61.85164,5.018 74,375.54428,237.39775,27.06543,40.37932,5.008 74,352.26956,204.99174,22.717957,42.276077,5.003 74,256.22556,239.68776,23.074005,41.185898,4.996 74,-0.484097,233.65874,27.73896,70.84602,4.984 74,-11.285301,-32.440746,29.518064,72.78337,4.976 75,516.3034,224.94183,29.008911,68.02716,66.81 75,535.8538,231.7763,24.733887,58.360596,21.749 75,550.6817,232.27834,33.76776,90.84447,14.829 75,514.584,236.62206,42.03595,105.97505,9.141 75,178.4506,231.34721,33.22789,46.40129,8.55 75,501.9913,230.47903,40.122833,99.44388,7.834 75,532.70795,234.79129,39.559998,95.444336,7.326 75,581.7081,219.66748,30.44281,59.539,6.678 75,492.49097,220.0431,31.26294,79.17735,6.553 75,379.91745,230.38565,33.514557,66.77423,6.357 75,-18.025173,-66.52791,56.44165,152.91171,6.328 75,622.97095,-33.83093,26.258118,76.57972,6.316 75,613.34375,452.86316,39.219604,109.31702,6.09 75,542.3844,240.34543,24.343811,61.038513,5.972 75,627.0171,-18.942402,17.339966,47.665077,5.837 75,562.10236,225.57826,30.310852,81.38948,5.749 75,581.5633,229.03891,35.02417,98.0054,5.53 75,-6.1830397,489.3547,18.709255,42.07852,5.453 75,626.2904,486.24033,21.195618,47.114105,5.415 75,474.65973,227.63791,34.38983,71.44977,5.413 75,-73.14109,264.33612,201.53976,463.8946,5.374 75,-8.751453,465.3606,37.582134,91.81262,5.348 75,-5.513626,-17.346895,17.177994,41.97618,5.294 75,546.9905,260.47937,42.3515,102.40256,5.293 75,329.54135,230.27443,34.924744,57.641922,5.266 75,162.32205,234.75508,44.40973,65.00792,5.197 75,482.99524,243.06194,42.48517,101.956375,5.163 75,338.76938,193.83597,19.451141,33.131653,5.115 75,535.4332,309.29858,145.05072,342.1394,5.081 75,583.1748,410.47766,71.57324,177.4878,5.05 75,427.97375,227.96579,56.020203,147.33353,5.027 75,288.95496,217.62184,20.708221,33.693314,5.0 75,319.0671,-15.03516,35.524567,55.25134,4.975 75,-11.2688875,-32.48386,29.485031,72.8805,4.964 75,602.96356,-57.251644,53.22467,140.67392,4.944 75,370.23926,226.43306,23.598663,43.341873,4.934 75,3.5767388,231.91183,32.888187,67.59061,4.906 75,234.89764,236.97664,19.127457,32.59941,4.898 75,282.60364,187.3211,31.837646,58.377686,4.87 75,459.73026,229.8331,54.08365,137.7125,4.864 75,-21.558289,402.65442,79.02187,175.06677,4.805 75,450.96756,233.51431,41.758606,100.69687,4.767 75,493.87622,231.13702,237.39905,510.52106,4.747 75,378.61646,228.22395,23.80066,45.01143,4.743 75,427.98398,237.45488,34.37796,73.83046,4.728 75,210.75345,233.63196,20.271118,37.33551,4.718 75,363.94366,155.43129,31.935394,67.62596,4.7 75,541.0073,-16.109764,53.947815,123.27423,4.623 75,320.80917,-15.395914,21.051117,40.079014,4.571 75,618.37476,487.90594,20.92157,44.61664,4.558 75,218.55165,242.43481,17.926315,29.897827,4.554 76,499.67596,220.76257,30.77246,68.36206,92.681 76,546.2461,221.83804,30.809631,67.74747,90.079 76,526.1554,223.26155,27.816101,63.124466,80.925 76,129.31973,224.37128,32.689255,53.249207,8.86 76,613.10114,451.478,39.68811,110.26395,6.85 76,476.8425,224.05832,31.023468,76.37265,6.595 76,483.91803,224.72733,41.803955,100.80673,6.028 76,530.17773,225.73032,42.613464,95.88684,5.8 76,-7.265723,201.56503,19.346207,38.906097,5.651 76,-8.664895,465.81155,37.442993,90.52011,5.582 76,115.69992,228.31976,35.32527,50.17157,5.465 76,626.4286,486.3511,21.165466,46.96158,5.451 76,-6.264684,488.8394,18.97371,42.96756,5.437 76,-73.03345,264.50323,200.97481,464.2215,5.423 76,613.4513,292.43597,27.585327,89.44284,5.421 76,492.87335,220.87338,56.100403,136.73917,5.415 76,-5.44729,-17.320051,17.110327,41.839653,5.407 76,-18.006622,-64.52148,56.184982,148.11227,5.381 76,627.13385,-18.478882,17.360474,48.678703,5.337 76,593.9696,215.68008,44.4776,172.56781,5.306 76,602.45874,-55.41976,53.319336,139.5055,5.262 76,622.4769,-34.901173,26.80719,78.62704,5.228 76,535.9614,308.81677,144.61627,341.89062,5.207 76,-6.001596,185.1853,17.960604,41.646408,5.133 76,461.07162,234.9043,31.25711,73.4104,5.051 76,-11.31062,-32.5066,29.594597,72.8186,5.029 76,540.59186,215.45857,52.06909,120.329636,4.963 76,152.63388,228.30421,24.608093,43.06743,4.851 76,-21.376617,403.62012,78.79077,174.29236,4.781 76,460.67886,224.68192,54.650482,140.74466,4.743 76,513.44495,223.2274,42.672546,97.20528,4.734 76,494.86243,230.76529,236.91864,511.71384,4.718 76,582.81805,410.3132,71.81116,177.29684,4.679 76,161.94281,225.38907,23.113815,42.033386,4.672 76,98.60035,231.47122,45.723595,68.7561,4.666 76,359.2374,223.54517,23.479889,40.190155,4.627 76,139.49059,210.16309,30.33142,59.32837,4.607 76,498.1548,191.64484,43.782837,86.33014,4.604 77,586.54456,227.74545,27.70996,81.94678,60.357 77,568.45605,227.57231,36.435852,114.9142,10.734 77,576.062,215.03336,45.16693,148.83322,9.027 77,450.0597,224.09956,18.89505,39.00624,7.581 77,403.51566,142.45694,32.345398,68.214966,6.826 77,500.36075,221.5954,31.122894,101.32233,6.738 77,622.8165,-33.882088,26.958923,75.2685,6.606 77,236.01068,184.09991,30.568268,63.09343,5.973 77,232.29611,226.97244,22.249512,34.527832,5.684 77,612.99445,452.60226,39.195496,110.06082,5.671 77,626.5385,486.18182,20.75653,46.853638,5.657 77,549.03864,234.09848,35.92157,111.02814,5.636 77,355.58255,223.55367,28.278503,55.807144,5.606 77,593.3413,228.40878,35.984497,110.773315,5.515 77,627.08295,-17.98213,17.480957,46.449547,5.499 77,-73.27156,264.34,201.62039,464.2623,5.395 77,247.56609,207.89313,21.758438,37.518066,5.362 77,-8.548809,465.16287,37.58793,91.526215,5.29 77,-17.909765,-65.49939,56.100334,149.9857,5.289 77,583.54565,409.98444,71.19287,177.78436,5.25 77,-5.595358,-17.389767,17.196522,41.780712,5.131 77,97.21126,235.82248,34.508484,55.06958,5.075 77,-6.158557,490.07996,18.867956,41.43347,5.031 77,603.102,-56.886894,53.40039,135.98026,4.992 77,536.0183,310.88852,143.8233,341.5452,4.931 77,-11.37887,-32.592136,29.668987,72.847176,4.931 77,-21.647968,402.2739,79.1311,175.2443,4.847 77,385.10257,266.61798,34.893707,67.50757,4.843 77,-12.242853,479.63263,30.359446,61.30359,4.842 77,507.25208,262.03464,33.134888,81.74994,4.79 77,240.07751,213.98624,22.803314,37.142975,4.775 77,496.22632,234.5682,47.288635,134.31412,4.676 77,284.4432,193.64807,16.617157,32.47696,4.653 77,167.54448,227.09135,24.211685,41.186203,4.602 77,119.95538,214.14876,21.849442,52.45363,4.596 77,493.7271,227.39139,237.27838,513.604,4.576 77,-5.777174,186.87267,18.102158,40.77388,4.542 77,355.7794,131.72939,17.901276,32.531113,4.518 77,362.97504,131.43959,19.31076,33.675552,4.515 77,490.66376,-181.76123,234.94934,424.02295,4.489 77,585.92944,-100.88645,74.860596,232.39322,4.453 77,346.60007,152.50745,34.320374,72.19069,4.441 77,267.29785,190.79839,17.840668,36.935852,4.401 77,618.29456,487.3969,20.810913,44.360107,4.383 77,249.34084,191.06989,20.313828,39.20189,4.334 77,527.82446,233.89926,48.15393,136.7326,4.302 77,451.39206,228.04381,40.655487,89.00386,4.289 77,618.778,-17.474289,18.016968,42.820324,4.262 77,347.8277,132.24629,17.119965,31.316956,4.244 77,594.44495,-46.06661,44.658203,98.40176,4.219 77,614.1451,247.16147,36.35901,115.58673,4.207 77,347.2792,203.06049,57.50702,102.60196,4.196 77,196.1008,167.64622,33.35266,67.28462,4.189 77,410.4208,160.68205,31.931824,73.59956,4.153 77,325.20782,-32.487244,30.121796,70.499794,4.148 77,274.95172,191.79651,16.793304,35.34958,4.132 77,460.93854,227.72337,53.049744,130.85658,4.131 77,265.47192,285.59875,33.803253,63.714447,4.086 77,434.33987,228.10953,42.316284,85.09476,4.059 77,331.01483,133.10371,17.166656,32.30307,4.032 77,103.09564,205.39148,28.340515,66.79367,4.02 77,350.39978,131.49596,27.919617,54.221085,4.02 78,579.5281,227.74255,42.330566,101.635925,97.62 78,615.09515,239.4076,26.15863,77.19385,15.059 78,460.67383,222.03455,18.123322,41.094574,10.467 78,426.65125,-14.545672,19.252869,38.196606,6.515 78,602.7778,232.3359,45.898376,119.585754,6.416 78,93.24912,216.53831,28.412369,57.43315,6.401 78,-12.36306,-41.75838,40.980755,104.83784,6.401 78,613.3561,451.63348,39.45691,110.73132,6.35 78,217.4208,218.18468,22.475037,36.956345,6.211 78,434.30835,-11.468767,18.475128,37.542297,6.196 78,611.97534,203.95544,37.03412,104.17578,6.163 78,547.5612,223.67906,42.2666,91.540726,6.074 78,581.9628,223.49362,29.005554,71.0603,5.758 78,232.26566,200.80707,21.748947,38.337234,5.706 78,626.7022,486.88156,20.696716,46.054962,5.701 78,610.3843,-47.078747,42.285767,98.59346,5.611 78,-12.484488,478.38852,30.263983,62.95096,5.501 78,224.79857,211.69023,21.977936,37.488388,5.494 78,594.34607,219.74588,40.454712,98.93652,5.462 78,441.86588,-9.966289,17.727692,36.41195,5.434 78,535.81226,308.59653,145.10754,341.6238,5.383 78,183.99283,149.20918,23.674774,40.10234,5.377 78,296.4462,229.74097,23.740112,39.448364,5.24 78,-73.304535,265.32132,201.41084,463.01657,5.201 78,586.98334,244.9936,52.3537,164.09282,5.15 78,232.68546,219.4145,22.040924,34.149246,5.141 78,10.983707,216.22968,60.404675,96.857605,5.127 78,-6.393461,489.1291,19.194637,42.497437,5.112 78,423.85104,-31.86019,27.37259,65.92008,5.106 78,264.90958,238.52086,23.234467,35.197952,5.099 78,227.24792,173.94731,29.470947,63.983047,5.085 78,626.7591,-19.55434,18.311768,48.199936,5.073 78,-21.73515,402.17142,79.01033,175.21835,4.952 78,-5.5880747,-17.478157,17.169674,42.21258,4.949 78,460.98932,224.03078,27.951416,57.746933,4.946 78,583.1158,411.43536,71.62048,175.83002,4.932 78,492.8336,229.6318,238.49832,511.80118,4.898 78,357.4745,223.62764,26.615295,60.82463,4.832 78,585.6721,-100.66007,75.54199,233.35553,4.821 78,159.54286,140.47021,26.468307,49.134644,4.73 78,561.00854,234.60646,56.608948,146.11748,4.728 78,610.6184,238.17862,22.357605,57.738434,4.652 78,240.48938,200.01854,21.211578,38.286774,4.583 78,13.662016,217.972,68.66603,176.56523,4.56 78,585.1395,275.30643,33.11499,70.98279,4.506 78,330.37784,222.01703,21.208923,43.9252,4.437 78,526.8168,198.09123,55.36206,113.318436,4.421 78,618.51196,232.78275,19.079468,43.913116,4.396 78,210.59454,213.91835,21.644958,34.63794,4.375 78,50.030052,228.52194,36.406044,56.755493,4.358 78,241.5258,214.28569,20.675186,36.47139,4.346 79,77.73446,209.25954,24.69387,49.705612,22.831 79,478.7537,218.39185,19.8862,42.748352,16.461 79,59.364185,205.60541,31.109737,59.125183,11.838 79,125.32734,200.47687,24.273018,50.497467,10.635 79,-1.9546223,56.34928,26.177477,82.023796,8.971 79,234.0279,204.96587,20.004562,35.750595,6.596 79,-17.723269,-63.479557,56.816444,148.6681,6.285 79,627.02386,-19.182089,17.687561,48.8706,6.248 79,210.99623,165.66037,31.193832,63.75447,6.234 79,621.98016,-33.61894,27.646301,77.76175,6.23 79,602.63544,-57.04931,53.274902,132.71371,5.833 79,-11.616045,480.34952,29.164032,61.4805,5.808 79,-5.9132824,489.95108,18.455942,41.119965,5.788 79,349.229,212.65536,28.590363,65.49478,5.74 79,626.3888,487.38745,21.146362,45.575806,5.647 79,216.63191,192.6969,22.036942,37.809906,5.568 79,613.09906,453.3566,39.12561,108.87637,5.544 79,68.24646,196.75633,30.290085,55.812057,5.524 79,-8.617786,464.8305,37.443035,92.1311,5.507 79,224.98022,203.48392,21.612915,36.529816,5.423 79,201.13374,210.92563,22.737106,35.629974,5.373 79,-5.4704,-17.907166,17.07333,43.762016,5.316 79,4.6358576,187.85794,31.489494,79.27435,5.227 79,594.12256,-44.964523,44.14917,95.49587,5.213 79,585.74054,-97.102554,74.84778,227.80101,5.199 79,252.76822,219.70013,32.090973,52.965607,5.132 79,-73.38005,265.73474,200.99776,462.56055,5.127 79,383.10776,201.00151,28.221405,64.07863,5.108 79,63.89622,199.30122,23.016323,42.02542,5.047 79,583.199,411.1875,71.38245,176.56409,5.011 79,434.12015,214.08096,22.506866,38.845856,4.903 79,-11.278059,-33.272385,29.69022,74.75597,4.819 79,536.1471,310.77588,144.09949,341.40918,4.81 79,241.58342,214.18858,21.09517,35.67099,4.791 79,-21.745476,402.37073,79.0771,175.54718,4.778 79,589.8771,-24.55389,52.157837,128.59825,4.741 79,46.485046,190.3246,29.392448,60.93904,4.691 79,379.50076,203.07404,17.775696,47.093155,4.689 79,388.48053,220.59105,30.336334,60.218643,4.616 79,-9.454662,214.7728,27.37034,67.33566,4.589 79,494.19235,227.88065,237.2803,514.32263,4.548 79,234.00867,180.50024,20.725159,40.253235,4.514 79,578.692,-9.033295,44.065002,91.406944,4.493 79,320.4583,206.04329,28.172516,59.407272,4.449 79,394.7434,201.97993,31.590057,60.517685,4.377 79,-11.427502,33.22149,31.59748,70.69586,4.371 79,356.71994,196.84068,26.165466,65.47743,4.329 79,225.3102,174.05669,20.199814,39.207733,4.293 79,228.19748,202.95142,31.769684,52.61824,4.253 79,445.60486,202.13623,27.848358,50.845352,4.235 79,209.11583,203.76073,21.664383,37.609024,4.197 79,616.99207,261.1563,22.172607,40.24182,4.177 79,611.7083,27.54736,39.827637,107.33818,4.164 79,425.69257,219.4654,21.946167,38.21692,4.162 80,508.17764,201.87637,27.234589,66.13541,36.702 80,-5.4513254,-16.34551,17.15598,41.996944,7.562 80,311.28748,193.84888,32.680878,69.28824,7.183 80,27.895935,193.1438,29.692749,64.46857,6.903 80,610.23737,-47.164494,41.853455,97.09349,6.855 80,612.7636,455.30432,39.517212,106.46509,6.467 80,447.55475,208.21756,23.48352,39.84697,6.379 80,626.569,488.6124,20.486084,45.25638,6.311 80,244.36322,162.75592,15.063995,34.23198,6.183 80,-12.188668,-41.23599,40.76418,102.97294,6.096 80,-12.121918,479.5278,29.964466,62.14383,6.085 80,244.37933,210.81628,32.069183,54.15164,5.903 80,626.9959,-20.796217,18.348206,49.209248,5.812 80,201.43195,193.08746,21.164795,33.95668,5.651 80,-6.102133,489.2753,18.796396,41.855743,5.61 80,341.54883,195.36185,37.478516,86.81067,5.601 80,91.56557,185.92088,28.02237,59.6351,5.486 80,38.32897,200.94868,24.881477,51.22148,5.409 80,217.91916,186.37303,20.748108,36.70111,5.409 80,232.9132,212.36226,22.856033,37.41884,5.223 80,202.40994,159.19534,31.121368,60.067413,5.22 80,-21.349884,405.04926,78.69726,172.90771,5.189 80,-73.05534,267.149,200.64786,460.97437,5.067 80,365.0749,199.48988,27.92743,63.08168,5.015 80,582.9553,413.48184,71.74188,174.80191,5.012 80,15.21076,180.86172,31.306429,71.91214,4.906 80,-6.0984826,185.051,18.823088,44.21727,4.898 80,12.497713,179.35434,55.342567,106.09006,4.875 80,436.2515,200.9034,32.313293,54.63408,4.874 80,-16.002558,159.81569,48.86602,131.55278,4.839 80,536.03766,310.8098,144.28613,342.03052,4.798 80,448.28937,157.8004,21.713013,51.300415,4.785 80,242.79335,197.284,18.247696,31.29303,4.753 80,47.836033,198.17657,24.203358,48.90535,4.677 80,218.23148,204.59227,20.465729,35.31093,4.64 80,225.84349,206.34166,21.07483,37.56775,4.599 80,153.90527,128.0103,19.846619,35.72087,4.587 80,494.06528,229.25275,237.52316,514.01416,4.585 80,250.7763,198.46593,18.101532,28.35234,4.568 80,236.36635,163.50003,16.505478,34.513504,4.523 80,586.0886,-100.762695,75.15192,231.72432,4.507 80,208.84917,160.77165,20.321701,36.2352,4.475 80,333.65067,201.18204,31.50473,70.40451,4.473 80,193.83374,206.32668,21.080582,32.316544,4.47 80,209.8251,204.72305,20.434067,33.919296,4.468 80,356.43347,206.70033,30.572205,71.934555,4.464 80,618.5643,491.26355,20.754395,41.422485,4.428 80,251.19208,164.23036,15.062927,31.630356,4.414 80,226.74222,178.25464,18.64972,34.315323,4.364 80,227.50311,161.17238,17.488327,36.157974,4.345 80,518.03485,208.2513,22.246582,48.955612,4.342 80,208.25043,187.29964,21.801682,35.36508,4.33 80,376.133,102.1053,38.15143,69.63609,4.296 80,571.7608,-60.206314,57.078186,125.67277,4.287 80,146.12234,122.4754,21.507278,42.596283,4.276 80,147.7532,139.37518,32.78282,66.97244,4.268 80,2.9690342,-13.790234,16.309542,39.34839,4.259 80,374.8337,193.12473,27.106873,61.139694,4.258 80,405.81506,198.6904,29.48407,68.964874,4.225 80,321.8733,191.8229,24.451965,49.43625,4.208 80,558.25824,-35.67844,27.848267,67.145096,4.18 80,520.8269,184.47655,31.016724,71.52086,4.168 80,106.7123,225.85287,33.998512,61.82129,4.158 80,213.02065,201.137,30.655197,55.562103,4.152 81,576.8247,214.12788,25.86847,66.22029,25.334 81,58.764343,191.33093,33.2155,63.580353,15.473 81,6.467409,195.91528,30.334772,68.09717,11.359 81,241.38129,212.90634,36.258667,55.31714,11.186 81,318.12384,197.18196,30.61731,68.25487,10.675 81,226.27394,208.43832,21.937881,39.997406,10.094 81,410.04395,205.112,21.358185,51.039062,8.648 81,45.34072,188.18039,32.925476,64.30977,7.423 81,193.68208,205.59026,22.238297,35.607788,7.146 81,231.1402,213.38463,25.376892,43.093155,7.104 81,389.33105,205.44823,29.45166,76.44655,6.804 81,200.9506,212.80934,21.069992,32.969208,6.676 81,-5.2863483,-15.205698,17.158375,42.65453,6.506 81,-5.4275646,198.37268,19.029476,46.183945,6.43 81,-10.846915,-32.22969,29.649292,76.50368,6.059 81,-8.628749,465.5322,37.395878,90.808136,5.993 81,612.81525,455.57556,39.76233,106.72803,5.919 81,626.45807,487.73917,20.796082,47.174652,5.807 81,-16.967081,-62.68235,56.00022,144.49779,5.762 81,357.77014,195.58856,36.639282,87.811676,5.717 81,627.5088,-17.173203,16.806519,45.70194,5.695 81,256.52032,219.05981,36.369537,54.655396,5.666 81,17.3506,191.8446,33.396553,65.89313,5.509 81,450.12903,217.16336,33.551758,77.708374,5.469 81,343.00824,191.11887,36.173584,81.77963,5.464 81,269.4829,225.34363,28.51596,39.85309,5.357 81,-5.9198093,489.94257,18.631584,41.461304,5.323 81,30.187712,189.26831,31.75437,64.379166,5.319 81,-73.566635,265.6996,201.76202,462.42047,5.216 81,321.66766,134.19244,35.14734,68.52597,5.202 81,-10.308826,201.05981,30.049551,69.74719,5.202 81,602.64075,-55.7888,53.601013,137.50017,5.123 81,169.71997,199.62428,23.642029,31.689758,5.121 81,-21.305897,403.83105,78.795845,174.40991,5.043 81,71.94953,187.43178,32.231995,66.19711,5.037 81,582.8394,413.0546,71.88928,175.38773,4.947 81,220.4564,210.78569,32.35077,61.15242,4.943 81,-13.07242,173.84093,49.15631,129.80074,4.941 81,623.309,-33.232166,26.369019,75.92165,4.925 81,536.3198,310.40543,144.06763,341.79294,4.921 81,137.28142,121.405106,24.221268,45.603058,4.901 81,186.27519,143.31833,32.848618,58.901825,4.867 81,231.59119,199.33191,22.05133,36.120865,4.798 81,208.91228,219.18063,21.487473,36.572357,4.798 81,105.78006,100.84724,32.332947,67.08633,4.793 82,185.49274,211.63733,23.049713,36.691025,8.754 82,317.3382,194.78577,31.240448,76.19531,7.922 82,404.2956,202.46844,40.515167,92.85312,7.918 82,552.7827,175.0518,28.853271,85.82582,7.578 82,21.268948,195.7789,27.036888,48.59604,7.442 82,400.5014,202.7724,29.596313,64.26135,6.941 82,-6.1627417,-15.169199,18.223923,41.134182,6.561 82,613.03217,453.66058,39.751587,107.94403,6.474 82,364.98416,210.48537,30.516937,68.88957,6.385 82,-11.421142,-30.42366,29.491943,72.121414,6.184 82,381.0483,201.23865,55.46982,141.97003,6.124 82,177.01982,220.42874,22.68483,33.07663,6.06 82,411.33124,202.01831,58.66931,140.68915,5.907 82,160.84833,224.33203,21.788818,27.437714,5.902 82,388.67932,203.50645,30.758545,65.62477,5.849 82,209.22989,149.63051,20.846588,40.032684,5.842 82,-8.738107,465.39154,37.53083,91.46069,5.799 82,170.20326,210.847,21.157791,34.570236,5.797 82,626.7605,488.50452,20.474243,45.717896,5.742 82,372.5598,204.69446,39.201843,91.34607,5.685 82,602.2429,197.14862,33.218933,92.57742,5.635 82,-6.1837983,489.67072,18.922592,41.741333,5.599 82,602.6062,-56.568382,53.784058,139.64552,5.578 82,116.46353,115.57499,32.28459,62.916008,5.508 82,138.73991,194.19394,16.891357,25.341599,5.499 82,348.70908,229.91367,29.809937,72.3342,5.49 82,226.83372,149.70862,19.047028,39.713684,5.463 82,186.99821,207.62589,33.239975,51.23938,5.437 82,383.94952,208.87833,22.247131,51.920532,5.365 82,-17.404243,-62.816277,56.42879,145.7202,5.334 82,627.52203,-17.7774,17.234741,46.046917,5.33 82,144.33363,210.26184,24.855911,32.313385,5.305 82,534.11945,196.82184,29.167847,69.9718,5.27 82,482.82935,211.24054,33.393555,60.696045,5.237 82,172.84811,199.39394,30.332962,52.392258,5.22 82,413.8186,207.48036,26.195068,53.06328,5.159 82,152.431,216.71681,23.252808,30.133667,5.154 82,-72.93364,265.8255,200.79236,461.61444,5.115 82,426.91864,190.77582,54.84198,105.55856,5.108 82,3.7398136,188.28368,31.616556,66.60045,5.028 82,191.35263,201.1691,23.596115,39.86551,5.022 82,536.5639,309.77942,143.2024,342.86365,5.015 82,217.4299,155.33992,20.541016,36.232544,5.011 82,622.816,-33.836983,26.929016,75.23667,5.009 82,1.6771984,-13.787576,17.827791,38.075645,4.993 82,579.73914,173.63252,49.099365,155.61034,4.972 82,-21.269758,403.5725,78.83562,174.71533,4.929 82,136.52464,124.45375,23.50061,42.29828,4.907 82,418.11142,200.23834,41.443604,82.582275,4.891 82,326.4793,225.51942,30.418213,67.069565,4.89 82,582.765,411.15634,72.00867,177.38437,4.845 82,448.86963,208.76749,43.582092,91.58783,4.797 82,489.46838,-182.36829,235.67017,426.72195,4.748 82,356.81778,213.93048,39.73239,109.24255,4.729 82,147.08871,195.92145,15.811035,23.542114,4.712 82,207.9059,195.57469,22.666336,42.583496,4.595 82,441.77148,227.18152,34.549927,77.17645,4.58 82,169.82582,133.03989,33.672882,67.899,4.578 82,493.4097,228.25064,238.42563,514.5587,4.526 82,543.666,176.84604,51.969116,116.73245,4.5 83,417.7682,200.59776,21.060486,53.73114,17.751 83,532.61035,177.52948,27.158508,67.02202,11.533 83,438.34396,195.74902,28.038727,70.27716,10.127 83,408.98697,203.2302,26.398743,69.40256,7.521 83,113.49911,206.34311,20.987923,40.962006,7.245 83,-6.248932,489.84308,18.763718,41.885925,6.843 83,121.09473,207.20972,20.36084,36.922318,6.818 83,67.75466,200.0498,30.637962,65.39975,6.694 83,-18.066862,-65.49557,56.2079,150.40703,6.637 83,84.90697,203.36346,30.788307,65.93411,6.458 83,574.0249,198.4235,52.625122,123.70819,6.399 83,324.34082,197.17374,32.54071,73.13284,6.248 83,402.81866,206.6832,20.835815,55.516357,6.176 83,-11.686702,478.38297,29.193863,63.60727,5.955 83,340.44287,189.75658,35.879395,85.9167,5.773 83,475.32947,184.5976,55.58661,105.08734,5.764 83,610.62115,-47.83382,41.538757,101.2344,5.746 83,101.61571,204.59297,30.947067,61.38411,5.744 83,613.0804,454.00644,39.93622,107.59012,5.716 83,626.6163,488.38986,20.68103,45.16684,5.599 83,289.85303,191.324,41.124023,94.641754,5.592 83,154.59654,204.36542,18.63002,28.721268,5.553 83,203.13724,154.72758,17.685287,34.25316,5.541 83,421.8886,198.61703,35.17505,86.32431,5.494 83,523.9108,197.62848,34.299988,62.396667,5.193 83,389.61826,198.82478,37.326508,101.91969,5.192 83,81.19005,210.0375,22.51149,50.023163,5.167 83,467.17303,192.17563,42.096252,84.74283,5.098 83,115.17395,203.60075,29.956024,60.53044,5.059 83,219.8848,157.23888,17.682816,32.28125,5.056 83,307.11963,190.51059,39.736572,94.8934,5.04 83,129.71834,203.46526,18.681915,31.835388,5.026 83,310.89917,188.19547,28.953156,60.080948,5.011 83,582.7807,411.28888,72.1413,176.83289,5.009 83,42.077785,199.97247,33.884815,71.072754,5.006 83,210.93298,158.85063,17.810593,33.14795,4.992 83,-5.6142735,-17.449095,17.22342,42.165504,4.985 83,535.8433,310.1812,143.98383,342.89783,4.979 83,185.93842,204.0588,20.04927,30.938675,4.949 83,-11.234857,-32.56151,29.586647,72.98517,4.935 83,-72.8273,266.52112,200.0328,461.69885,4.926 83,338.07263,193.72466,19.183472,34.952347,4.921 83,397.1847,197.41216,51.914734,141.49336,4.908 83,585.6141,208.75941,31.939697,63.015366,4.869 83,146.85773,212.41924,19.051865,28.91423,4.802 83,178.37292,204.1739,19.37558,29.736496,4.781 83,618.6928,490.19623,20.611084,42.371643,4.774 83,374.9372,149.28995,28.599823,69.93152,4.739 83,627.39716,-18.090397,17.431091,46.49424,4.726 83,-17.630268,436.23273,55.020435,139.36469,4.726 83,315.77216,190.68477,19.546387,36.670624,4.722 83,267.10147,195.27574,55.784576,129.15327,4.646 83,154.42949,77.38017,19.435852,30.222542,4.635 83,520.0327,182.92816,59.78308,95.751495,4.619 83,586.3459,-102.870224,75.05658,237.992,4.603 83,493.8089,227.94458,237.99988,514.3534,4.587 83,329.8616,200.24086,23.36316,45.20642,4.569 83,361.92365,207.38243,20.370605,41.533432,4.558 83,-40.197876,368.29382,110.125015,274.9956,4.557 83,162.19101,204.21703,19.12143,29.531693,4.542 83,545.3556,251.85861,45.832947,95.64792,4.535 83,562.42,230.89145,45.980835,87.99155,4.503 83,452.09256,201.53134,40.59131,100.26285,4.5 83,265.24405,204.69263,35.54236,67.37854,4.498 83,2.355225,490.19763,19.148186,39.99292,4.492 83,445.09036,93.4774,26.75711,64.662796,4.478 83,488.2805,-179.22346,237.32285,422.80438,4.478 84,439.98737,234.81886,21.943817,43.365067,17.259 84,524.1143,227.56848,29.381958,93.40759,8.217 84,469.4541,227.25381,36.87378,82.76639,8.002 84,622.94684,-34.372627,26.67279,76.5448,7.801 84,437.74982,229.8173,36.507355,86.13957,7.368 84,627.0597,-16.382622,17.282104,44.86069,6.851 84,447.3459,237.0578,23.904266,50.32129,6.759 84,120.63519,240.33394,19.677277,35.82631,6.563 84,613.4948,452.87057,38.705627,109.59146,6.227 84,453.65146,228.10825,36.97769,89.26337,6.163 84,398.1337,169.7819,28.099548,73.83511,6.15 84,323.75922,230.89182,40.00952,99.78467,6.102 84,292.00494,114.43284,15.487854,30.718102,5.852 84,300.26617,115.89627,14.7673645,29.093964,5.768 84,137.86964,246.34872,19.859467,31.434082,5.673 84,626.82135,487.24475,20.588867,45.263916,5.524 84,430.2641,234.54965,30.05603,72.90311,5.428 84,-8.883554,464.3274,37.663967,93.40436,5.427 84,482.72925,219.35864,39.777588,82.689575,5.423 84,-17.914694,-64.98457,56.122475,148.47798,5.419 84,339.46384,231.91939,39.06729,98.61534,5.303 84,-12.140197,478.55615,29.814335,62.14624,5.301 84,602.5707,-55.207752,53.272095,133.48322,5.295 84,195.53845,195.21666,17.806152,35.078857,5.276 84,-6.242413,489.32162,18.844458,42.238495,5.218 84,-73.047935,264.80295,201.06473,463.4827,5.194 84,-5.601898,-17.43946,17.201756,41.813984,5.144 84,202.51823,197.22403,16.481094,33.14946,5.126 84,585.80945,-98.91096,74.43176,232.05386,5.092 84,111.09893,164.01474,25.421608,54.71759,5.071 84,107.71381,242.02585,30.310448,47.69342,5.068 84,583.62683,410.29022,71.12012,177.68689,5.064 84,92.51876,155.99121,30.763557,74.54239,5.014 84,84.14841,141.49136,32.841644,74.13292,4.996 84,372.01157,226.06581,17.668549,34.223892,4.948 84,472.51117,233.21834,24.281158,51.188156,4.915 84,308.50992,164.5816,31.675934,68.63077,4.866 84,-11.372879,-32.606792,29.69143,72.959625,4.853 84,129.8826,250.75757,21.310577,29.99469,4.811 84,536.3348,309.94397,143.67773,341.48322,4.803 84,306.20377,230.74074,41.110077,102.1743,4.79 84,-17.646894,434.35956,55.014633,142.78534,4.778 84,378.97986,223.23032,17.966919,33.828247,4.753 84,316.1279,230.53473,30.304565,58.79059,4.667 84,618.8705,-16.00521,17.394531,42.78926,4.635 84,-40.267532,366.6145,110.58162,275.5108,4.63 84,177.46645,242.72223,20.771255,31.436768,4.618 84,316.92392,156.06613,31.850342,64.01886,4.606 84,219.19562,198.3842,17.48529,33.858902,4.559 84,332.99344,156.45805,32.91501,67.267136,4.514 84,343.8739,158.56566,25.832184,48.992416,4.51 84,194.02382,206.74002,18.954178,37.019653,4.477 84,502.06494,70.62897,27.69983,75.01074,4.459 84,351.34723,211.29051,48.653564,113.0612,4.448 84,493.9826,229.04028,236.65399,512.8765,4.401 84,284.13263,114.10802,15.793396,29.558899,4.368 84,613.41705,187.72351,25.765137,72.67816,4.366 84,-6.7015543,296.3466,18.797806,37.33548,4.361 84,497.6094,223.44142,52.246857,136.82896,4.345 84,498.11578,233.00792,20.289124,40.463455,4.328 84,490.16486,-180.16249,235.03864,423.4628,4.32 84,211.62485,196.73796,16.41446,32.959427,4.289 84,252.75784,209.3647,32.509552,69.58998,4.268 84,371.10516,232.1214,40.62268,87.246765,4.257 84,8.26845,206.87291,60.33251,106.07948,4.247 84,393.0918,179.32288,23.77594,54.638596,4.222 84,517.5184,305.01904,31.463257,62.705994,4.208 84,146.53377,115.51717,19.036179,31.518074,4.184 85,438.77753,208.45432,39.05475,107.04059,12.831 85,471.24554,213.63776,22.13321,60.646973,9.547 85,337.67847,216.18858,22.144531,44.874252,8.235 85,612.90076,453.63406,40.005005,109.06564,6.628 85,602.2895,-56.556374,53.626953,135.91533,6.594 85,370.87326,207.03839,19.45047,34.392258,6.486 85,-17.923248,-67.02734,56.07978,151.7943,6.313 85,395.6176,212.51627,56.303925,124.90491,6.161 85,627.0815,488.66138,20.363464,44.194458,6.052 85,386.31058,215.52008,44.684753,94.96326,5.966 85,298.84753,136.93831,32.67859,73.28432,5.943 85,316.27063,94.236176,15.965576,33.31481,5.817 85,354.49557,206.24635,19.026337,38.09813,5.804 85,465.20676,208.5003,40.08618,94.29205,5.798 85,171.4123,94.065445,18.251587,31.02034,5.665 85,314.8983,134.26575,32.212494,69.45412,5.639 85,179.13559,92.56014,18.38295,31.987602,5.608 85,321.10626,216.41168,22.024597,44.8132,5.606 85,427.53964,104.689255,31.301178,72.56435,5.581 85,416.85126,219.32793,50.942688,127.55098,5.561 85,291.34418,162.99994,20.129578,43.48239,5.512 85,97.0704,222.1631,20.605705,35.480087,5.507 85,192.81023,176.70688,19.133041,33.105133,5.439 85,430.63934,213.90414,33.591248,75.607574,5.42 85,-8.549503,465.40717,37.39299,91.7334,5.418 85,369.16153,217.63414,45.70114,94.8705,5.363 85,627.4294,-17.266708,16.70111,47.36971,5.354 85,186.32468,93.60257,18.014755,30.681137,5.304 85,161.41241,166.25366,23.113586,39.668198,5.26 85,-73.23032,265.3872,200.7995,462.464,5.234 85,184.93394,175.2768,20.16043,35.13858,5.21 85,496.36798,215.99103,24.094543,44.70938,5.199 85,376.5776,196.11598,21.963165,41.57881,5.194 85,114.916885,90.91935,18.216476,34.34626,5.172 85,622.86755,-33.72213,26.678467,77.09624,5.145 85,583.8762,410.5714,70.96167,177.22272,5.14 85,123.158035,92.07645,17.94194,31.624092,5.128 85,105.91778,226.945,19.599648,29.204407,5.101 85,-6.2587447,489.48126,18.889141,42.257935,5.07 85,420.06702,216.95035,32.783142,65.33325,5.023 85,-5.5837812,-17.48137,17.218426,42.116386,4.986 85,308.32196,93.012314,16.994568,33.74797,4.98 85,139.30104,91.87021,17.83783,31.149345,4.966 85,165.35814,162.36862,30.4608,56.524338,4.928 85,155.22525,93.42285,18.04245,31.186981,4.915 85,-11.269064,-32.679,29.621164,73.21576,4.908 85,107.19374,90.95602,18.352112,35.553062,4.905 85,595.5179,-45.703407,42.97943,98.73952,4.89 85,-21.551273,402.79126,79.00954,175.29126,4.878 85,486.24103,212.16826,27.339478,62.406387,4.84 85,365.86304,177.27965,31.145996,65.83989,4.838 85,479.60452,218.74301,22.788818,56.58374,4.821 85,354.56616,222.00682,42.74997,108.21074,4.799 85,163.42271,92.58592,18.470749,32.37439,4.764 85,432.93726,197.94531,61.887115,162.31335,4.761 85,300.2878,92.307106,16.308838,28.576958,4.752 85,177.90714,190.37697,20.823563,38.367065,4.692 85,332.16992,125.48683,33.517,68.72397,4.687 85,146.99673,91.55639,18.569977,32.445694,4.682 85,586.3015,-100.06146,74.62042,235.52298,4.635 85,377.59735,170.79535,22.35611,45.331543,4.585 85,536.1801,310.6729,143.60999,342.32227,4.534 85,345.46533,206.4369,19.54477,40.751205,4.53 85,363.18726,207.78464,18.76477,35.13307,4.517 85,578.3204,212.78877,43.814636,88.78578,4.517 85,239.49896,179.5747,33.237732,69.464096,4.487 85,113.84353,224.60559,20.359047,31.951874,4.486 85,292.0179,92.393936,16.333374,28.916893,4.484 85,493.64883,227.1654,237.3516,515.49225,4.406 85,595.4251,208.23068,39.723328,97.10831,4.399 85,560.771,213.31047,44.843445,84.35588,4.378 85,425.33435,217.73285,21.3844,40.938324,4.364 85,401.6347,108.729416,19.940918,41.755188,4.36 85,203.5591,177.00665,17.964462,31.21045,4.36 85,284.2171,92.2289,16.199707,28.034462,4.349 86,477.47067,208.90895,26.438354,59.128586,94.668 86,502.03113,205.60722,27.881104,65.14528,86.488 86,516.02515,201.48167,30.036316,82.8795,15.609 86,457.54767,205.00885,22.215271,39.574127,7.906 86,283.5144,81.83636,17.258362,30.413475,7.133 86,-18.018576,-66.61725,56.4666,152.20511,6.968 86,498.8183,212.443,41.931152,89.19202,6.934 86,168.61371,162.98688,20.485092,38.249893,6.754 86,613.03503,453.2786,39.592773,108.85843,6.721 86,175.82045,171.59067,20.544601,37.973114,6.705 86,626.62085,487.3733,20.577393,45.009583,6.423 86,464.62054,198.91751,48.339355,90.13577,6.365 86,300.16782,81.535324,16.550476,29.863182,6.321 86,233.9902,177.64606,32.894226,70.62532,6.221 86,291.8969,81.180855,17.018188,30.945,6.134 86,520.5358,281.6321,35.936707,77.350525,6.13 86,164.24089,171.3423,28.3331,54.497086,6.098 86,610.8587,-48.611263,41.2666,102.59219,5.88 86,626.939,-18.56468,17.622864,47.864326,5.664 86,564.5247,197.2833,29.85907,69.00696,5.615 86,184.34875,174.83849,18.933868,33.136093,5.576 86,-6.328726,489.64557,18.960533,41.99652,5.545 86,375.93024,168.6773,27.38208,66.97119,5.532 86,458.07236,144.62051,31.164429,86.41092,5.447 86,71.8267,215.64235,22.942596,41.33461,5.423 86,467.93127,210.29233,21.621216,44.36734,5.407 86,484.9597,208.9846,39.15738,75.6454,5.396 86,338.22607,215.68224,22.289429,46.459366,5.318 86,129.46854,209.06664,22.838837,38.50151,5.288 86,-9.205004,464.45737,37.790344,92.77707,5.221 86,275.5761,80.68388,17.655151,31.744728,5.216 86,290.43973,119.30635,33.18985,74.44432,5.205 86,2.2654545,100.28989,33.554165,83.22806,5.151 86,316.1387,82.18296,16.856049,28.91838,5.105 86,-72.94432,265.9762,199.93286,461.62427,5.054 86,146.53201,158.85222,21.024567,38.81096,5.051 86,536.4187,311.06927,143.4776,340.21136,4.99 86,-5.6804204,-17.468155,17.261885,42.06494,4.989 86,-11.363721,-32.78004,29.666569,73.20022,4.982 86,308.18323,81.32046,16.708252,30.139885,4.96 86,582.50287,410.73456,72.62189,178.08966,4.951 86,154.38403,160.30746,20.841492,37.93103,4.946 86,353.25995,209.77104,18.949371,39.835693,4.943 86,509.39246,202.81038,49.947388,118.4832,4.927 86,204.29451,169.90472,16.904602,31.814072,4.905 86,-21.513744,402.94843,78.497986,175.21582,4.88 86,346.9322,209.19054,18.183716,42.731018,4.862 86,499.71472,34.624763,29.896057,79.44795,4.851 86,323.63397,81.34122,17.582092,29.806145,4.837 86,16.22245,234.40137,43.852585,101.57855,4.821 86,331.7136,82.36555,16.951141,28.362366,4.806 86,25.935411,190.96179,60.283127,96.95801,4.774 86,523.33813,43.693268,29.556152,82.68849,4.753 86,434.64594,210.80203,43.23053,78.958954,4.738 86,529.80396,208.79121,30.387207,72.61919,4.696 86,267.51385,80.38842,17.343903,30.413017,4.576 86,493.39157,227.7313,237.837,513.6266,4.572 87,586.7411,212.06734,39.853455,83.82323,93.08 87,547.1221,211.04453,39.382507,82.85635,90.271 87,561.4118,209.30328,42.93866,85.6579,10.529 87,338.1262,212.61606,21.182434,50.193817,10.405 87,622.4194,-33.828053,27.496277,70.03425,10.369 87,593.00146,238.8937,24.758972,58.092285,9.859 87,600.1304,208.1688,33.743042,63.091614,9.703 87,329.01477,209.74696,23.319336,52.338333,8.595 87,340.19568,110.099846,30.546051,63.13955,7.608 87,283.27722,81.50306,17.437897,32.023376,7.27 87,557.80365,251.53163,23.953003,48.226273,7.155 87,-5.9215574,489.30463,18.608093,41.392822,7.061 87,619.6985,470.85956,30.916443,72.83783,7.025 87,612.4244,-36.034084,27.860352,64.91959,6.989 87,-17.784746,-66.8849,56.574432,153.76695,6.969 87,275.09393,79.884735,18.355225,34.473495,6.726 87,608.62195,220.5789,38.283813,97.14894,6.611 87,167.67526,174.35144,21.76947,39.355423,6.506 87,-11.65637,480.11008,29.527657,61.27481,6.487 87,300.32068,82.587425,16.493164,29.259178,6.41 87,627.04645,-18.674335,18.235779,45.444584,6.357 87,603.49286,-58.384132,52.763,135.55879,6.26 87,291.88486,81.34014,17.14569,31.25991,6.234 87,154.94537,179.43726,30.077744,59.928894,6.042 87,345.3731,217.88022,20.542236,50.577515,6.024 87,362.22235,214.60345,18.282074,41.293533,5.838 87,614.8462,215.90854,24.050842,54.871857,5.709 87,308.4681,107.51108,30.836334,52.595093,5.659 87,372.42874,84.860634,15.665619,29.666374,5.643 87,533.7709,220.76956,35.91217,67.39816,5.603 87,603.09924,426.1734,57.001953,146.6087,5.59 87,565.83704,209.83731,24.98413,63.36383,5.564 87,316.97964,204.51466,29.816132,62.78734,5.559 87,226.7704,180.28635,34.316635,68.81378,5.449 87,32.68805,101.15567,34.350327,60.987946,5.425 87,387.40634,82.55308,16.919891,41.553413,5.417 87,380.0829,84.65837,15.903687,30.589645,5.391 87,313.7334,105.48348,21.738068,33.098717,5.369 87,536.27997,308.1341,144.8114,344.1136,5.327 87,543.62415,233.49553,93.40234,288.8847,5.318 87,153.1122,222.66759,21.255997,29.509491,5.303 87,308.4192,82.761856,16.59668,29.173515,5.268 87,582.58154,207.85535,30.45282,60.017883,5.264 87,-8.689504,465.06458,37.482876,91.7937,5.236 87,315.78986,84.634674,16.9292,28.062721,5.225 87,-5.715452,-17.520172,17.25407,42.17038,5.205 87,617.723,-19.693245,18.603455,42.652843,5.128 87,593.7597,-49.86615,44.923157,97.21091,5.116 87,-17.332973,188.19276,51.33318,124.20064,5.089 87,267.21432,80.09688,18.14743,32.50248,5.089 87,-11.48555,-32.70149,29.766624,73.06861,5.071 87,493.60565,229.69165,238.06494,512.28674,5.071 88,357.9206,211.40881,29.334991,66.826416,13.138 88,489.4252,225.04683,19.9805,29.80365,9.625 88,234.89478,179.12509,34.588898,67.83055,8.197 88,616.4171,94.11485,21.662048,56.087418,8.196 88,376.86386,214.19269,21.009247,47.8284,8.074 88,344.79132,203.646,24.917084,59.02954,7.407 88,177.75699,176.5191,18.93843,34.198868,7.334 88,626.96814,488.5738,19.981262,44.917725,7.177 88,2.8884745,218.17708,20.692657,50.14363,7.064 88,-17.860233,-65.87831,56.61393,152.14136,6.904 88,341.30334,85.66733,28.339264,72.44939,6.845 88,170.20662,175.20247,18.83046,36.84175,6.411 88,184.34676,179.84364,19.364761,31.609192,6.172 88,399.0252,184.63133,23.840118,50.426987,6.157 88,627.4855,-17.561184,16.91388,45.698826,5.836 88,130.41345,74.49253,19.95047,34.66735,5.806 88,161.812,163.48297,20.103165,36.63002,5.75 88,-8.699867,465.37476,37.487915,90.76288,5.711 88,120.49432,155.01024,23.871475,38.87349,5.644 88,138.1273,75.87698,19.366821,33.728905,5.522 88,441.51538,109.13578,38.226685,73.2777,5.518 88,321.88602,203.73509,42.70871,88.37221,5.513 88,612.9275,457.68933,38.968567,103.59625,5.5 88,-16.944653,191.05884,51.146175,121.090546,5.454 88,623.5355,-34.768677,25.983582,74.78111,5.419 88,-3.4289503,209.76949,18.309757,46.05919,5.344 88,-5.6728745,-17.632746,17.157038,42.394688,5.343 88,-73.69727,266.06207,201.78778,461.4776,5.285 88,112.26642,148.46492,23.214417,40.188934,5.274 88,-6.2350225,488.7409,18.941185,43.288086,5.237 88,583.49194,412.7989,71.27368,175.39673,5.226 88,103.4499,151.80302,25.440697,46.0914,5.109 88,-11.415894,-32.938175,29.603933,73.52876,5.104 88,-21.251638,404.13336,78.7154,174.31244,5.087 88,249.54886,185.02075,32.128967,60.490616,5.042 88,162.03592,180.63547,20.791199,40.323883,5.036 88,146.48672,75.77328,19.553635,34.39502,4.965 88,122.439316,75.83594,19.930283,32.640823,4.93 88,136.97444,160.86172,22.067337,34.286163,4.908 88,603.7127,-57.05726,53.056152,137.491,4.803 88,536.04297,311.02618,144.34595,341.11176,4.748 88,114.81896,74.91086,20.206017,33.409157,4.723 88,281.0065,225.86694,20.419342,32.143646,4.712 88,353.16086,84.18538,22.779358,57.825943,4.687 88,618.9391,491.1742,19.973206,40.95099,4.673 88,21.91725,205.00157,27.35954,66.07823,4.67 88,362.2755,202.60092,21.406311,49.62419,4.614 88,627.04236,90.8622,18.200562,46.75026,4.611 88,485.7004,201.20384,29.526459,58.726913,4.573 88,360.92627,91.358246,23.273865,57.349976,4.556 88,122.06814,197.58635,34.1547,58.411392,4.555 88,164.77263,161.09048,28.670181,55.297256,4.521 88,210.14601,178.58945,18.77623,30.190353,4.507 88,349.60425,185.98672,28.85553,72.723785,4.504 88,153.24179,191.31648,24.410065,42.59276,4.491 88,154.3723,76.68603,19.28563,32.836456,4.486 88,493.73978,228.35117,237.44931,514.3263,4.467 88,-6.9611826,191.2165,27.40945,71.32686,4.463 88,-4.6782055,189.71188,18.378258,42.86522,4.447 88,169.78279,74.99604,19.961716,34.86698,4.432 88,338.1684,204.4855,42.331177,86.19516,4.415 88,402.44186,218.06306,19.429321,37.70552,4.387 88,203.61172,179.78241,16.917725,29.768173,4.382 88,185.8925,75.80735,19.878387,35.590897,4.351 89,398.24353,201.4389,29.451447,77.83453,16.04 89,381.0165,201.15532,30.55716,75.45763,9.537 89,244.97383,176.81659,34.84224,74.0889,8.841 89,78.87196,212.89157,24.521889,51.22043,8.602 89,185.44025,175.18253,19.49504,35.573822,7.265 89,6.743922,208.14977,28.53926,68.815475,7.096 89,111.98342,209.93161,25.00985,46.720306,6.847 89,-17.76418,-65.37399,56.61536,151.76122,6.816 89,178.74161,167.71648,19.645004,37.954956,6.72 89,411.24893,208.58243,29.89215,82.40817,6.566 89,395.6207,174.48734,52.588867,120.07785,6.449 89,627.47705,-17.509172,16.97107,45.683582,5.99 89,355.26688,206.02702,33.177277,67.087204,5.986 89,125.70378,215.78374,28.201279,42.80214,5.803 89,621.6427,477.83096,28.692078,66.98312,5.748 89,146.51398,163.0184,19.582,34.039795,5.694 89,68.9993,134.63477,33.680115,70.423645,5.66 89,224.40285,227.7186,21.409622,30.167877,5.617 89,-8.98362,465.37323,37.854378,90.89984,5.571 89,-6.214691,211.48616,18.825293,49.55101,5.56 89,-6.265016,488.75674,19.136782,43.20456,5.559 89,337.59125,203.80423,40.789246,94.4765,5.542 89,485.68997,196.63605,28.44217,62.51529,5.486 89,623.4987,-34.817097,25.981995,74.8458,5.369 89,603.4989,435.0132,55.249268,139.41586,5.339 89,-5.526731,-17.677101,17.075888,42.427055,5.291 89,-73.534805,265.7333,201.70213,461.76767,5.248 89,348.93152,191.70871,51.325714,120.259,5.227 89,377.03763,198.31268,24.378448,56.260925,5.212 89,154.72154,162.0466,17.81166,34.76451,5.169 89,535.8577,219.64207,24.475891,37.650833,5.147 89,-11.367921,-32.84484,29.721329,73.062584,5.14 89,-4.8949127,193.50009,17.795223,46.88803,5.056 89,-21.405987,403.2077,78.85376,174.94,5.01 89,84.08408,139.1397,30.585564,63.408875,4.957 89,603.8728,-56.863388,53.09912,135.7342,4.901 89,98.63684,140.4397,31.676575,61.202316,4.828 89,536.47986,310.21875,143.74902,342.0183,4.812 89,187.07857,166.8221,29.372269,52.35594,4.807 89,218.43489,234.0331,20.50859,25.491348,4.755 89,171.47205,174.8954,19.433578,36.172287,4.729 89,273.5572,176.60155,20.406555,35.130554,4.68 89,164.44598,173.39159,29.96228,53.206177,4.652 89,193.3222,180.33952,18.305298,34.562744,4.615 89,10.837519,189.18646,56.752655,107.12503,4.588 89,493.6792,229.27856,237.58087,513.2451,4.582 89,324.13354,237.15414,33.991486,64.625305,4.499 90,257.2044,170.58807,34.27536,66.75624,9.288 90,381.28033,206.37695,29.786865,74.52124,8.151 90,368.79364,212.92047,46.83441,92.77045,7.553 90,4.5907345,204.83186,27.470934,56.693527,6.798 90,-17.702581,-64.292305,56.655136,149.37897,6.554 90,478.99115,163.4471,30.737122,97.43608,6.176 90,621.78613,477.08624,28.658142,67.93927,6.163 90,39.53037,206.60353,28.390308,58.369003,6.152 90,-8.746489,465.6325,37.547417,90.58319,6.1 90,147.61873,175.48189,29.709549,62.105682,6.022 90,66.91941,121.59491,32.05368,67.23312,6.008 90,616.85706,229.34032,20.575928,38.77278,5.946 90,627.4623,-17.607815,17.001343,45.89755,5.941 90,-4.804903,214.77548,19.837025,47.387024,5.923 90,315.69855,59.221767,14.486694,25.28777,5.913 90,603.4705,-55.72766,53.171204,137.64362,5.767 90,382.9829,222.50743,44.469727,107.87422,5.74 90,193.16902,170.31932,19.322296,35.351196,5.652 90,-11.326857,-32.659073,29.553253,72.62194,5.445 90,-6.267296,489.71805,18.978117,41.63498,5.393 90,395.2513,209.52121,30.272644,68.59708,5.347 90,306.9287,58.502567,19.02951,41.455868,5.305 90,623.5339,-34.703438,25.925476,74.84241,5.294 90,-73.35741,266.21448,201.12634,461.12622,5.181 90,504.1062,182.00873,34.81482,90.83124,5.144 90,-5.5898037,-17.593103,17.11483,42.778088,5.087 90,582.98474,413.1138,71.90674,175.39041,5.036 90,442.22418,164.8768,19.437439,38.158386,4.981 90,11.232553,188.23436,56.63418,103.26143,4.981 90,-21.268663,403.82922,78.61801,174.3219,4.968 90,293.99814,53.24025,29.512634,59.177246,4.933 90,376.17557,183.25888,59.472168,111.00101,4.926 90,146.20056,58.499016,19.357132,34.819572,4.908 90,539.64514,295.29987,32.877075,61.9758,4.895 90,164.22406,176.3034,29.715286,55.45015,4.891 90,398.73615,219.87177,44.739166,96.223145,4.852 90,419.502,225.1895,40.71817,90.345535,4.832 90,537.0378,310.91876,142.6297,340.7127,4.811 90,138.69513,59.474632,19.241318,33.752525,4.806 90,-5.2201786,185.86574,18.264591,45.909683,4.772 90,111.64315,192.90419,33.729927,63.27916,4.764 90,121.057526,226.4092,21.118866,35.14836,4.677 90,89.635666,126.19831,21.134758,38.755394,4.63 90,200.44019,224.81537,23.071503,31.867798,4.611 90,68.97851,198.57744,31.721558,66.86275,4.595 90,102.150116,129.76611,29.34961,55.361496,4.578 90,290.28894,179.35805,18.788605,32.320282,4.575 90,424.14963,232.08208,23.947632,48.963943,4.571 90,309.25305,56.313263,27.566223,58.2498,4.542 90,178.66718,173.42792,19.863312,37.178787,4.527 90,550.49,300.86646,24.941101,42.432922,4.5 90,523.77374,192.40956,32.18109,73.9521,4.492 90,138.12674,148.3071,20.174942,32.285553,4.482 90,-9.540249,191.86505,29.716644,66.34741,4.457 90,493.7719,229.53189,237.84375,513.38025,4.456 90,128.90031,226.63162,22.619354,34.772583,4.449 90,106.442856,130.71515,20.47303,34.755142,4.411 90,391.00702,203.84846,23.733215,51.41594,4.369 90,324.72824,59.1744,12.61618,24.01638,4.362 90,274.77615,173.6542,30.505615,55.49524,4.357 90,-14.865664,188.93954,49.179657,122.71799,4.356 90,106.52515,59.529373,18.85759,33.0549,4.347 90,122.84976,58.80715,19.247742,33.570793,4.325 90,130.0043,57.584373,20.150131,35.849052,4.302 90,127.791306,207.21347,45.43315,66.820984,4.297 90,202.63348,188.69954,19.002106,32.418564,4.281 90,-5.761695,170.56442,18.528675,43.41275,4.232 90,114.63653,58.457287,19.54235,33.803745,4.222 91,471.25586,221.15092,22.420837,58.09221,34.967 91,486.82312,219.64233,26.67102,75.46985,24.628 91,473.53284,215.98393,32.309723,83.65379,11.903 91,442.36783,227.2212,19.84671,40.7993,11.214 91,412.72586,208.61331,30.700806,70.865265,10.939 91,195.75009,177.03574,17.77893,33.219208,9.211 91,202.97354,190.80281,17.648499,29.86612,9.125 91,458.42047,214.28174,33.128143,80.36304,8.8 91,395.30347,202.70984,33.763428,77.78766,8.321 91,430.40256,217.40059,29.80896,61.55464,7.839 91,584.23315,226.36829,23.041565,43.026337,7.424 91,439.88733,214.63226,34.31378,84.509705,7.377 91,259.51862,174.59735,36.534485,69.26329,7.131 91,613.10034,452.21588,39.36267,109.548035,6.853 91,132.76001,179.91278,30.794662,65.93703,6.771 91,448.65674,230.7933,20.549133,45.275604,6.537 91,152.07127,184.1261,23.95485,46.3562,6.463 91,386.734,214.9749,43.047607,104.602005,6.447 91,121.34658,148.06725,23.46148,34.308746,6.326 91,-17.714388,-64.58902,56.554,149.29318,6.292 91,626.2812,485.46246,20.895996,48.12018,6.291 91,188.45496,171.30293,18.383728,32.787308,6.05 91,424.73816,216.08098,22.76062,50.593155,5.997 91,602.12836,-56.824753,53.791504,137.03957,5.964 91,228.01042,177.03795,16.057281,26.98848,5.896 91,394.6698,210.6789,55.459595,147.3092,5.879 91,47.28031,206.42145,29.047989,68.17615,5.745 91,-8.433407,465.203,37.242756,91.48901,5.736 91,496.2055,139.63187,34.27191,85.624115,5.44 91,-11.38179,-32.294727,29.38106,71.74634,5.392 91,460.0748,225.57228,21.07956,47.27849,5.381 91,-5.6637096,-17.958591,17.082394,42.961777,5.375 91,451.96536,230.42012,30.20755,80.4561,5.354 91,418.836,226.33012,42.41919,109.87605,5.318 91,2.276374,211.71811,38.550674,85.88022,5.311 91,105.81111,159.63495,21.030022,35.179794,5.279 91,-73.55051,265.8723,201.5391,462.45203,5.275 91,-6.2398906,489.7747,18.885906,41.650482,5.25 91,480.35876,224.26575,20.718384,56.844482,5.249 91,210.2233,181.29591,16.719177,27.744003,5.241 91,626.9251,-17.411076,17.16803,46.0465,5.238 91,497.11975,219.2068,39.933777,89.72615,5.238 91,536.1913,310.25858,144.04785,342.7081,5.189 91,462.9491,214.87283,51.737305,133.40921,5.165 91,622.4822,-33.34393,26.964478,74.14334,5.139 91,575.0341,196.88356,49.902954,117.33989,5.125 91,128.81635,180.18295,23.30371,49.257355,5.043 91,127.08559,211.60849,49.230392,62.36853,5.004 91,179.45474,176.63622,17.755356,32.09581,4.938 91,582.9758,410.61462,71.65729,176.44238,4.937 92,513.0862,214.96672,30.89093,72.30647,93.829 92,469.59387,198.79547,30.781738,67.757385,21.831 92,408.58066,210.09973,22.200012,57.13742,14.798 92,124.23102,167.44379,32.415817,69.23012,10.042 92,484.6741,203.60416,29.212372,67.868744,8.527 92,-0.3411162,222.51836,24.456202,47.30208,7.806 92,546.83026,220.68297,20.912659,42.96901,7.633 92,433.96228,207.08716,39.154297,91.95627,7.462 92,139.45428,168.21849,30.47293,59.033585,6.852 92,201.5731,179.26558,19.437729,31.459671,6.82 92,458.05112,223.99425,35.019623,75.2155,6.621 92,265.24777,164.36058,33.81598,70.98311,6.549 92,111.89263,165.30719,25.134346,49.64389,6.52 92,613.1436,452.0572,39.679993,110.52075,6.351 92,-10.304121,217.94437,29.053438,64.567474,6.339 92,514.3152,218.77213,41.968567,107.88745,6.323 92,611.213,-48.309925,40.74347,101.06658,6.296 92,626.52094,487.27194,20.970825,46.071625,6.244 92,191.73502,162.44975,20.584091,34.723618,6.2 92,-17.21554,-65.07979,56.228226,148.92232,6.154 92,107.83267,174.20386,34.054306,73.09607,6.085 92,627.45233,-17.901611,16.945557,45.74072,5.908 92,-8.772791,465.42148,37.597015,91.008575,5.478 92,420.73346,205.36195,27.971375,64.892746,5.465 92,-5.903264,-18.529682,17.738823,44.264996,5.431 92,-6.2648773,489.2553,19.153706,42.14392,5.417 92,82.50428,174.73985,41.24935,76.30324,5.407 92,353.98633,190.84595,19.993042,34.02133,5.348 92,618.34235,488.061,21.30542,44.76999,5.282 92,72.287766,191.87204,35.417885,66.20688,5.279 92,-5.73104,214.6586,20.066868,46.11795,5.275 92,536.0862,308.74756,144.64026,343.27844,5.273 92,195.0773,159.70032,28.822525,50.84424,5.204 92,-73.37777,266.1043,201.28201,461.71472,5.201 92,449.69446,235.18895,32.393066,78.90364,5.191 92,19.132147,218.66237,35.157997,52.412888,5.124 92,474.76456,211.23698,56.705902,146.73299,5.052 92,-17.98149,436.8847,55.53595,139.34906,4.97 92,495.1327,151.09473,28.486267,81.427734,4.956 92,419.52426,212.19313,41.864594,101.14278,4.949 92,497.15244,239.79846,45.336517,112.44678,4.927 92,151.62428,174.4419,24.47963,44.0101,4.919 92,546.59265,221.37527,41.147583,94.20294,4.9 93,580.6322,219.61987,29.056885,84.31555,97.884 93,605.98,220.99287,25.754578,61.435654,24.48 93,101.7931,162.2298,31.46627,68.34296,13.852 93,452.87534,196.56735,31.304321,80.95831,11.022 93,437.1499,197.08418,28.966919,73.469284,10.88 93,184.66826,169.00159,22.023758,37.990982,10.761 93,124.59227,162.5044,30.973053,60.837906,9.097 93,414.27792,195.54514,29.72754,62.776,9.007 93,529.2751,213.19902,39.009094,114.42903,8.609 93,545.9218,223.21936,21.703735,56.90448,7.77 93,419.98883,200.54582,39.026825,74.433,7.755 93,96.50291,163.79431,26.258736,52.059402,7.455 93,613.32043,222.77588,33.462524,97.22174,7.433 93,547.64343,217.18076,37.512817,101.151794,7.261 93,332.53818,30.706379,15.206146,27.19035,6.932 93,348.2214,29.601925,14.506592,22.94838,6.694 93,75.23906,165.62491,33.34252,66.30264,6.582 93,339.99933,30.789942,14.872192,26.414091,6.543 93,355.7375,29.224178,14.708832,24.072067,6.44 93,87.23035,165.57239,25.158676,48.517303,6.428 93,626.8974,488.62436,20.47345,44.773407,6.234 93,469.54224,194.47748,30.317139,82.55255,6.176 93,39.13853,198.70654,36.723164,62.291565,6.142 93,49.85913,172.82985,42.619774,82.155716,6.109 93,-4.920336,-17.405163,16.508284,42.752304,6.095 93,-17.089668,-63.58293,55.82975,146.77066,6.042 93,442.71588,212.56726,29.939331,86.16208,5.923 93,60.82781,180.40387,47.889828,86.34158,5.834 93,-10.842296,-31.603447,28.861721,70.35633,5.795 93,354.64392,200.07562,20.316895,33.567093,5.765 93,622.19275,-33.671043,27.10382,75.034874,5.73 93,613.2616,453.89252,39.221863,108.469055,5.699 93,-6.405354,489.28906,19.227026,42.222412,5.692 93,362.18738,198.59991,19.380768,33.975525,5.511 93,-12.305765,478.07062,30.370096,63.07129,5.409 93,274.01736,166.47266,30.793549,63.435135,5.375 93,355.5572,34.71923,18.221191,34.11759,5.373 93,117.65743,166.27202,26.217262,49.769623,5.348 93,363.8258,33.88337,17.096008,28.78962,5.348 93,303.6803,193.77655,20.843475,37.5132,5.345 93,563.5574,217.44357,48.730286,119.79013,5.289 94,539.0163,219.97575,29.711548,68.07466,94.474 94,558.13635,215.6793,32.43573,72.28276,93.207 94,168.20761,159.76859,23.482452,40.532883,24.149 94,434.71033,185.41107,40.77707,78.38617,19.434 94,576.9597,212.83711,36.25464,81.43721,9.168 94,304.00317,191.37337,21.418823,39.879333,8.082 94,331.47662,9.346359,17.542816,32.039772,7.657 94,368.85562,204.49516,22.730652,39.81183,7.488 94,76.85035,156.63643,32.570427,67.84918,7.242 94,-5.0554605,-16.405655,17.353235,41.295868,7.131 94,91.63105,152.58862,32.24591,65.138275,7.061 94,59.271103,156.43706,32.757935,64.26521,6.984 94,431.88278,201.47264,25.923676,58.776443,6.959 94,361.1055,205.23955,20.825165,35.364014,6.932 94,354.6555,5.7647886,17.441925,30.077225,6.876 94,162.53253,151.01524,40.124756,62.189804,6.849 94,450.99545,202.23798,30.894958,62.43225,6.813 94,527.17487,185.72192,56.32782,103.65033,6.753 94,42.066772,159.41699,35.08039,65.524506,6.658 94,339.0547,5.521145,16.975311,29.382317,6.655 94,553.5957,164.67285,33.99341,83.66235,6.453 94,-16.84593,-62.46485,55.811165,143.1025,6.428 94,203.46484,153.44879,18.593796,31.886581,6.41 94,347.48306,5.879219,16.737885,28.392761,6.391 94,482.59082,229.22386,22.163635,36.28087,6.371 94,591.6073,220.24022,22.706604,58.30818,6.137 94,622.61743,-33.89307,27.366089,74.47132,6.108 94,616.90784,156.74504,21.412354,61.938263,6.069 94,235.92474,156.43456,34.65869,61.84041,6.062 94,402.522,11.59429,18.139496,30.386461,6.058 94,1.5446758,231.6516,22.251429,38.978348,5.99 94,355.07434,17.407415,19.032349,35.03591,5.977 94,540.20685,209.2928,52.6474,120.81267,5.963 94,-12.317895,477.59393,30.451996,63.8844,5.953 94,613.2267,453.7545,39.43286,108.809845,5.943 94,11.292278,152.35446,56.366177,117.43756,5.93 94,522.45355,214.58397,38.950134,82.77449,5.887 94,-10.732157,-31.724848,29.576797,70.46624,5.839 94,338.28046,17.040447,19.592926,37.20469,5.809 94,473.90686,227.91869,21.21872,37.52675,5.79 94,331.6845,-10.139704,16.274536,36.848244,5.752 94,626.7432,489.22104,20.507263,44.91794,5.714 94,355.50958,-9.27249,16.263306,36.249775,5.671 94,452.6457,153.76303,29.220001,71.56595,5.636 94,491.37048,215.64423,30.731873,49.594025,5.626 94,361.70264,5.7788935,18.013397,29.425987,5.57 95,548.57825,223.30879,35.612183,75.081345,93.478 95,576.9019,218.56873,30.442566,78.42517,81.596 95,614.51587,227.78575,20.001709,47.607315,68.142 95,344.991,207.20631,21.670868,35.716904,33.154 95,116.91287,148.52708,26.358093,38.77527,23.843 95,359.52408,204.29366,22.455597,40.47963,22.908 95,273.17105,187.59367,21.175293,41.149612,13.982 95,329.41006,206.50818,22.328278,36.07582,13.471 95,414.596,199.331,29.727386,66.0285,9.481 95,626.5905,-19.892103,18.296936,50.388817,7.981 95,429.7494,197.50908,30.26593,66.74562,7.899 95,-4.7619586,-18.301699,16.90712,43.155407,7.671 95,443.54373,3.1193104,17.47232,28.893232,7.431 95,613.12726,451.62006,39.97461,111.41223,7.266 95,467.61047,-9.338347,16.084564,35.07691,6.905 95,336.74527,211.43242,23.791718,36.27098,6.836 95,459.5657,-9.177246,16.01065,34.218727,6.785 95,-17.013992,-66.32007,55.0714,147.70047,6.635 95,451.0759,-8.803118,16.108551,34.203167,6.583 95,112.73424,137.12965,43.391525,64.016495,6.552 95,455.65753,229.23355,23.674133,40.562347,6.519 95,106.828316,143.38675,25.40345,40.36107,6.444 95,-10.252147,-32.175175,28.440678,70.04572,6.431 95,626.43866,487.0043,20.986877,46.537262,6.186 95,279.21683,194.3404,20.982025,39.50476,6.099 95,475.28583,-9.937611,16.074066,35.17726,6.041 95,-12.212431,478.0834,30.204605,62.830963,5.95 95,298.86197,-0.7624092,19.379272,30.667847,5.834 95,80.11926,143.62807,21.337715,30.281815,5.804 95,27.816698,140.6788,34.85479,69.45265,5.79 95,347.7693,207.90012,32.163696,50.663025,5.769 95,-6.227907,165.71696,19.271738,44.682022,5.725 95,315.20685,-0.8259611,19.167847,30.476902,5.652 95,330.47665,0.5320692,19.029541,28.588547,5.551 95,610.8047,-47.885563,41.367493,100.98548,5.548 95,612.69525,214.88326,32.35431,89.446365,5.525 95,-6.270813,489.35593,19.160316,42.517426,5.512 96,510.35638,218.89944,44.11444,89.837585,96.279 96,589.15576,223.06812,22.14972,50.91156,90.096 96,544.68945,217.01141,36.621704,87.70032,81.829 96,279.8943,208.4314,22.253815,44.790665,50.741 96,296.7469,205.9648,22.513245,47.987503,49.885 96,262.92935,208.6114,25.076447,46.538895,16.926 96,14.343701,134.31265,27.80201,45.119736,12.061 96,363.44562,209.69104,30.550385,57.59442,9.248 96,581.263,211.45541,37.18872,73.423676,8.454 96,-5.3513074,-18.663239,17.805054,43.88417,8.015 96,198.871,188.7413,24.574982,46.19467,7.876 96,33.127365,137.0041,24.025375,33.176437,7.821 96,369.23663,192.88243,44.09436,76.27049,7.402 96,407.2398,230.93155,24.0755,39.576233,7.399 96,288.94208,211.01003,23.054504,44.865677,7.138 96,528.7624,215.14795,34.67975,80.81305,7.096 96,360.14868,230.93343,24.777191,41.37355,6.893 96,-18.072716,-65.15871,56.2399,146.7566,6.704 96,612.7954,454.07028,39.70569,107.19388,6.668 96,379.20642,140.01463,31.430939,71.627106,6.643 96,226.772,-19.949749,33.51297,64.801254,6.467 96,588.4986,269.0384,33.346436,64.33133,6.465 96,546.9012,264.82217,36.780396,64.950165,6.205 96,521.1898,252.58296,34.38269,66.722305,6.09 96,-10.583663,-31.114721,29.190884,69.51696,6.019 96,581.74365,224.50163,21.243042,48.314896,6.012 97,435.3558,216.53658,48.142365,98.06969,91.337 97,462.526,214.98495,43.727783,97.79266,86.638 97,527.5608,223.96031,25.687012,56.967453,85.653 97,215.87369,216.22249,24.084167,51.98552,49.886 97,193.49655,225.7444,25.600418,44.11531,21.488 97,288.70004,225.88779,24.42862,50.065887,16.488 97,174.64993,231.28218,26.088608,41.066635,16.442 97,302.95377,223.56082,22.796478,52.50284,9.482 97,589.05206,293.63956,31.275818,65.430695,8.392 97,97.76199,187.61043,31.18834,59.036285,8.251 97,344.42834,240.25537,21.915497,35.001953,7.814 97,275.79517,202.9971,41.198975,74.87503,7.751 97,571.281,292.74756,33.67993,63.13257,7.515 97,481.4878,218.48453,29.62915,70.97073,7.454 97,181.04266,218.2576,30.662842,55.70044,7.28 97,329.24393,232.91034,22.192596,43.5683,7.259 97,603.17236,-56.05932,53.115234,138.48895,7.18 97,626.7954,488.47354,20.14563,45.408234,6.875 97,288.81702,192.94601,42.849,79.23712,6.507 97,366.41208,-33.62441,28.418427,65.215965,6.412 97,353.1385,239.28537,21.024414,33.64737,6.398 98,381.75946,215.17361,51.112854,100.52783,95.01 98,346.52594,218.85815,53.377014,102.852295,94.809 98,466.67896,228.70753,22.836792,50.135605,74.981 98,213.8283,209.71962,31.398392,74.74107,66.561 98,119.49662,221.17894,32.033104,62.087723,33.507 98,142.65726,215.25955,36.948776,68.207794,26.23 98,97.19008,225.62193,32.57643,56.805008,22.653 98,4.811511,197.78534,30.738697,67.58963,18.027 98,398.57916,213.60081,32.829468,71.10109,8.458 98,418.6169,282.4118,36.128082,66.45737,8.4 98,627.3052,-15.358688,16.713684,43.157616,8.324 98,273.27344,240.9109,22.288055,39.46083,8.015 98,258.6777,237.54358,20.675537,42.657227,7.946 98,538.37463,303.03986,34.13562,60.364624,7.684 98,130.58313,231.56111,42.493073,65.59935,7.578 98,202.01689,178.24527,55.6024,109.313385,7.428 98,458.3826,290.88388,37.338684,63.8909,7.331 98,474.3564,289.85104,36.121216,64.80603,7.038 98,398.57608,285.58704,39.284607,66.71298,7.012 99,283.35434,214.6986,53.585175,108.175064,94.01 99,317.29736,213.32037,52.679382,103.83484,85.72 99,424.84836,229.31987,22.87918,48.564804,84.64 99,586.4915,232.72015,42.527283,106.58295,79.611 99,69.108475,217.46866,32.34661,66.657745,64.508 99,163.17819,208.51163,29.29631,76.54797,57.32 99,102.11074,217.14569,36.967873,69.00098,48.836 99,51.6252,220.24373,34.384415,65.9268,25.931 99,211.0563,239.45619,21.051453,46.104263,10.272 99,418.00647,221.61108,38.97809,69.42395,9.653 100,254.82327,216.75357,46.95862,95.29797,94.555 100,534.49365,227.23141,47.989502,108.8288,93.101 100,406.62964,228.65706,23.051025,49.12401,92.342 100,282.96707,212.65092,48.522125,101.54683,86.561 100,67.27098,214.6734,33.980743,73.8082,75.215 100,52.661816,223.05232,35.07616,68.449234,51.34 100,106.37063,216.9309,32.243126,73.997665,29.217 100,142.17586,214.26953,34.007034,71.356476,28.548 100,200.83054,240.52852,20.297546,47.15831,13.424 100,396.59186,230.61305,21.24234,43.785934,9.504 100,-4.8705187,-15.924954,16.771717,39.59401,9.163 101,501.06744,221.20541,45.77173,108.07684,97.331 101,240.62659,219.49655,43.579803,86.92273,85.012 101,260.53168,216.79463,44.356598,90.39775,80.737 101,407.7613,227.81934,24.173462,49.138275,80.317 101,66.04349,222.89851,44.78253,74.2455,55.02 101,84.24198,210.6073,36.686287,79.902405,45.831 101,125.18035,220.8861,30.543694,70.521225,22.463 101,144.80186,232.33138,24.792786,53.979355,13.428 101,200.84866,242.0338,21.226929,46.74684,11.983 101,152.76488,216.79843,31.349258,72.87726,11.184 101,-4.946423,-15.665668,16.951584,38.958122,9.188 101,152.03583,244.8363,23.779755,45.123535,7.96 102,537.5395,231.19003,71.65991,199.2821,95.918 102,242.1679,219.9123,42.22499,82.87012,81.364 102,225.69012,222.2722,43.335632,81.5605,76.095 102,476.25574,227.75388,39.825745,90.76431,74.031 102,108.099976,213.03532,34.440094,81.761856,62.79 102,149.56664,217.65092,33.063446,79.32362,58.441 102,87.59462,222.67221,41.691925,82.12836,40.782 102,134.64255,219.10709,30.094421,73.48624,18.482 102,423.89673,220.52682,22.545258,50.80426,17.058 102,216.53491,229.0009,34.764694,76.18208,12.56 102,158.92427,248.40147,24.49559,50.26384,10.74 102,122.49534,211.2262,32.72503,79.0571,10.312 103,466.53964,230.12357,66.948456,184.53784,97.4 103,163.79225,218.30132,36.860992,86.28725,92.918 103,201.16165,218.55112,32.083344,83.217224,84.368 103,115.01361,219.00449,42.638947,91.00073,75.521 103,436.76154,222.16396,43.910736,97.40437,75.468 103,217.6936,220.02731,33.003906,73.173615,39.857 103,104.03991,229.36447,35.944435,81.34119,29.933 103,179.96716,215.37689,38.989685,89.1485,17.651 103,446.10876,228.23889,57.013123,146.91827,10.202 103,229.36191,241.15773,25.260864,54.593002,9.618 103,133.45697,219.73592,33.662903,79.20067,9.272 103,128.09093,251.56999,25.420975,60.96846,9.191 103,-5.3457856,-16.46151,17.288578,40.68639,8.64 104,401.82034,226.84102,67.13229,178.21605,95.998 104,113.46722,212.59854,47.886086,105.24835,93.35 104,148.08372,215.37375,47.537613,99.451324,93.212 104,85.08175,217.14766,42.163185,101.07573,33.826 104,126.28516,245.29704,29.69696,75.07744,13.107 104,425.71628,219.14833,23.097137,58.581345,12.613 104,98.87511,254.403,30.10112,69.004105,8.399 104,135.02956,219.75056,37.588608,88.741165,8.252 104,422.37256,330.1234,30.118225,76.69,7.857 104,-5.1370263,-16.20324,17.091658,41.22849,7.735 104,82.308846,193.20139,71.44779,134.59073,7.062 104,401.55637,230.6156,34.282227,95.31067,7.055 104,313.43686,290.68466,38.395844,63.539673,6.575 104,603.44037,-54.794434,52.768494,136.31378,6.467 104,407.43573,226.36516,24.887817,61.71733,6.433 104,-10.977562,-32.936264,29.733006,71.609344,6.392 104,156.6473,253.9688,32.02632,61.666946,6.265 104,613.1456,454.46222,39.328125,105.919556,6.229 104,203.53043,133.96465,32.25879,62.084106,6.196 104,328.62704,297.80307,39.608612,62.38803,6.149 104,388.29962,242.98805,51.910004,125.9095,6.146 104,412.94803,218.82951,31.936646,77.73027,6.104 104,147.41853,120.58213,32.163284,71.39739,6.05 104,142.40384,189.85773,40.567383,70.21887,5.942 104,-17.546783,-66.01248,55.97116,148.78966,5.935 104,333.65106,232.40837,72.42096,176.30135,5.871 104,-9.007157,465.52878,37.916,89.97513,5.861 105,308.0452,229.3962,69.545074,167.28838,96.682 105,59.050022,209.7045,56.74683,126.9787,95.719 105,91.70487,214.97476,57.4141,116.93051,94.349 105,15.237079,219.43373,53.211163,122.75835,89.048 105,0.29195428,218.74994,29.79876,93.77051,10.94 105,-5.4780316,-16.576296,17.530481,41.268406,9.823 105,11.361323,254.14148,37.068172,77.98279,9.59 105,626.89685,488.3761,19.641235,44.759155,7.941 105,-11.083437,-32.657166,29.741308,69.72621,7.708 105,380.67062,204.46657,28.624725,62.13936,7.284 105,25.333618,261.71936,36.969143,76.496,7.176 105,139.60881,133.61389,32.903564,60.214935,6.937 105,82.55242,268.6877,33.841278,73.333435,6.922 105,200.45648,321.86642,37.924377,64.62909,6.864 105,104.68622,295.07608,37.359512,66.23999,6.818 105,2.9264212,-14.540264,16.968704,37.34641,6.604 105,88.08,286.64285,38.332733,67.512146,6.454 105,184.77216,320.8519,37.435013,65.28134,6.407 105,342.47806,221.61487,24.436768,50.484436,6.399 105,137.9875,317.82922,36.01007,66.378235,6.296 105,169.13466,320.90652,37.364975,65.03674,6.249 105,153.15143,320.84793,36.78676,65.601166,6.231 105,110.73938,220.76257,34.626038,86.96509,6.15 105,0.7777536,278.04083,23.162628,45.081543,6.123 105,185.32645,203.81314,63.95555,113.42053,6.075 105,-5.667548,192.55695,62.799503,163.60077,5.932 106,128.39731,228.45384,76.70676,200.94484,91.354 106,280.1588,220.82079,26.999084,58.205093,49.976 106,211.31761,218.35753,31.083221,64.70302,23.267 106,178.88406,232.25665,33.114822,54.715088,19.094 106,112.17522,240.10205,63.68416,168.98383,16.469 106,160.50865,233.14043,36.586105,66.44972,9.623 106,-5.830641,-18.006845,18.254057,43.608784,8.804 106,3.283894,245.36923,28.27261,64.81192,8.204 106,513.1988,207.57509,21.296814,39.470016,7.81 106,-1.151061,123.36578,28.5042,69.98105,7.289 106,155.86162,366.3311,30.968994,83.25293,7.05 106,-10.927689,-33.178337,29.341515,70.682686,7.011 106,567.4364,202.829,24.27771,39.369797,6.773 106,590.1979,212.81166,34.047913,60.82518,6.717 106,626.7544,488.45703,20.342773,45.91107,6.56 106,504.45633,212.60931,23.596527,45.11084,6.516 106,521.53314,209.5561,20.81549,37.05768,6.394 106,-6.6335797,488.97678,19.297298,43.097504,6.325 106,139.64082,362.84418,31.593246,82.26172,6.318 106,64.812836,362.51575,37.28775,67.26788,6.263 106,250.69339,343.79468,56.750122,134.81238,6.042 106,627.4176,-17.620972,17.015747,45.8678,5.984 106,329.31482,235.95854,22.131226,47.658768,5.954 106,0.26043415,264.76846,33.776447,77.208405,5.85 106,576.1243,200.08818,21.769165,33.608047,5.847 106,298.90176,347.34937,34.124237,64.71872,5.826 106,346.96857,358.92017,33.969604,63.540955,5.787 106,217.77383,344.70184,57.95407,136.19345,5.786 106,155.02625,230.25,77.40112,181.38,5.779 106,-75.155075,260.53308,204.81119,464.72144,5.776 106,76.26939,239.87517,31.63195,54.380905,5.709 106,187.29846,341.1378,55.53035,138.1854,5.632 106,32.517998,343.6717,36.98532,69.72095,5.579 106,57.627678,207.00662,61.75724,117.33322,5.569 106,618.1715,199.00224,20.457031,45.75058,5.564 106,96.149734,243.57146,24.819244,42.03456,5.557 106,605.67224,201.07904,31.2724,64.68735,5.532 106,496.5312,209.30156,23.32837,39.825806,5.5 106,7.9361176,212.77264,62.130806,111.67346,5.486 107,0.74067116,236.99548,22.778795,52.2063,9.512 107,13.267628,232.30185,31.835022,59.943604,8.53 107,123.987656,213.53055,30.84134,63.76584,8.26 107,564.05176,188.46202,16.903809,29.52362,7.625 107,477.30618,208.83957,32.862274,62.867462,7.531 107,-5.3479667,-16.83515,17.363245,42.06077,7.526 107,517.3701,201.4524,30.189941,67.957825,6.903 107,274.78217,199.55641,18.657043,36.29715,6.901 107,172.82938,231.79756,32.963104,61.108902,6.621 107,3.9349675,223.48918,32.22805,60.560196,6.531 107,603.3816,-55.067146,53.28711,138.04918,6.503 107,-5.081129,234.09349,19.260496,45.106064,6.392 107,371.0536,202.45145,31.534454,63.426147,6.209 107,376.10474,202.42455,23.514435,37.8945,6.15 107,-10.928762,-31.956047,29.173306,72.84411,6.041 107,627.44214,-17.491526,17.034485,45.86789,6.041 107,500.33722,208.76993,31.356262,67.465454,5.907 107,448.10883,202.98058,24.420319,38.752533,5.864 107,612.8232,456.51642,39.70331,105.64209,5.834 107,392.76074,208.27477,22.144592,41.38423,5.771 107,626.60474,488.00754,20.59613,46.654938,5.751 107,612.2489,155.146,26.605347,75.17906,5.743 107,511.7363,347.15607,39.315094,51.62384,5.705 107,-9.952676,218.16943,29.714516,66.35339,5.685 107,16.945906,209.46288,42.91442,83.20473,5.617 107,32.195087,216.28055,41.534595,80.75903,5.609 107,-12.023002,479.25034,29.62088,61.25583,5.603 107,525.21954,189.08418,30.847107,65.72908,5.502 107,113.62149,198.205,34.68924,69.9789,5.476 107,496.54382,350.3837,39.658203,54.846344,5.473 107,-6.4331903,489.83878,19.06408,41.964874,5.471 107,-4.327662,3.067957,16.834364,41.502808,5.392 107,544.84827,349.4327,23.06897,33.45627,5.263 107,498.3933,205.39386,19.38147,37.716125,5.235 107,623.47906,-34.672062,25.954407,74.99661,5.197 107,12.361719,357.94327,51.357704,122.722046,5.153 107,532.02545,172.05817,28.17096,62.19998,5.042 107,-74.380875,264.60458,202.47685,462.97916,5.0 107,-17.167027,-63.85073,55.357235,146.19872,4.936 107,555.9591,187.1101,17.63153,30.743668,4.926 107,582.73145,412.3228,72.40137,176.21722,4.862 107,536.10944,312.6079,144.06305,339.72668,4.82 107,-22.929811,399.68073,79.87607,176.13153,4.818 107,595.7293,163.65634,33.10956,64.16313,4.755 107,401.50955,210.84044,21.548462,39.62468,4.754 107,152.69705,182.68283,62.272263,106.94162,4.748 107,136.42442,218.22113,22.336578,44.375366,4.708 107,481.78186,347.1758,37.222473,56.553497,4.683 107,-37.836624,-125.63411,118.01781,273.47733,4.652 107,387.56067,211.59026,31.065735,63.792007,4.533 108,455.3526,210.67398,39.171783,74.89337,8.615 108,11.805387,196.9983,52.95541,106.51799,7.941 108,16.246992,213.01926,35.252853,62.362366,7.603 108,603.6771,-55.738384,52.44745,138.23135,7.437 108,-4.567365,-15.891579,16.568228,43.128635,6.984 108,626.9167,488.75525,20.342468,45.00702,6.828 108,618.1936,188.43358,23.273743,85.37007,6.424 108,-10.566039,-32.542175,29.655178,76.11727,6.235 108,353.67474,214.88593,21.779388,30.090042,6.179 108,288.2582,212.24876,23.204742,41.237305,6.142 108,613.0673,458.4428,39.09485,103.26984,5.992 108,383.2237,215.87177,23.735504,35.32451,5.971 108,627.38354,-16.882246,16.810669,45.6954,5.965 108,360.78546,214.03113,23.68872,33.517883,5.78 108,-9.15669,465.39517,38.124676,90.0632,5.684 108,3.9486718,212.32251,34.72709,67.97888,5.661 108,298.57394,216.84921,32.349457,69.38782,5.629 108,-11.655278,146.16708,31.641197,71.97272,5.615 108,375.5054,209.77252,23.718994,33.197098,5.557 108,618.7925,491.26282,20.04303,41.007996,5.52 108,-6.4767056,489.2779,19.645222,42.37903,5.467 108,470.51926,221.63449,26.98587,56.596893,5.446 108,345.8194,215.93085,19.959229,28.391617,5.363 108,-17.362679,-61.35486,56.462738,143.90132,5.325 108,279.91907,215.52794,24.21408,41.29988,5.237 108,-73.416534,264.82373,202.0411,463.21063,5.195 108,-21.27674,403.87198,78.77632,174.38858,5.147 108,583.24304,413.46304,71.976074,175.0546,5.145 108,393.0623,218.40202,20.91507,32.968887,5.135 108,32.202457,200.55887,37.46101,60.155518,5.107 108,172.00436,207.79495,30.4272,64.081085,5.097 108,3.3468037,-11.575438,15.105368,39.453075,5.071 108,56.32559,254.94907,34.38386,63.557068,4.994 108,623.3695,-34.560158,25.867676,76.310036,4.972 108,67.56463,-2.1678867,32.600937,63.09915,4.84 108,365.45526,209.72467,30.624939,54.095398,4.784 108,535.8033,312.50064,144.08618,339.8032,4.765 108,595.7887,-46.554356,43.01709,102.464264,4.734 108,492.39804,204.15765,15.314178,30.753876,4.702 108,338.33142,214.71347,19.76944,29.03775,4.698 108,-0.11205077,129.72478,29.97538,76.62576,4.666 108,176.84563,211.94864,21.826843,39.780914,4.634 108,436.24844,227.26266,34.17914,67.55426,4.634 108,-37.165413,-125.67172,117.31219,273.381,4.62 108,321.0241,230.88773,22.046936,46.23642,4.518 108,80.489105,0.8279228,24.870003,47.24736,4.475 108,312.8574,222.44572,22.99649,45.420303,4.471 108,0.45108438,226.10568,24.749298,56.039215,4.471 108,493.3142,227.6001,238.34973,514.53577,4.452 108,385.31793,211.58641,42.44165,67.28572,4.384 108,402.49213,220.45874,19.28009,32.004272,4.362 108,538.30005,392.61465,35.72467,61.50003,4.305 108,403.33707,206.69241,41.762573,68.84085,4.305 108,10.594339,-13.820946,15.85965,39.12444,4.291 108,284.137,218.03171,31.265778,66.40262,4.253 108,107.10672,236.50162,32.325912,62.820557,4.213 108,-9.737442,228.56471,29.366238,75.0222,4.207 108,51.474655,274.90466,32.76544,57.282867,4.15 108,376.46173,226.45378,23.65155,37.3647,4.146 108,446.266,212.23856,31.924896,67.84625,4.146 108,303.57425,211.88791,23.69809,40.154068,4.141 108,292.3965,210.35095,29.5047,54.50818,4.129 108,552.1689,191.15277,24.47052,47.37004,4.113 108,40.936813,183.43161,59.193817,105.2944,4.09 108,163.28078,5.249428,30.535599,65.52305,4.082 109,454.08444,204.51009,29.259857,68.451004,12.84 109,627.0403,-15.687056,17.021118,46.08632,8.354 109,622.3068,-33.38575,26.727844,78.34505,7.692 109,-5.5976686,-17.829672,18.238354,45.558514,7.647 109,-10.289632,-32.583374,29.106255,75.23282,7.577 109,313.70526,213.76996,20.455536,33.267014,7.397 109,321.78012,214.47481,20.976166,32.405746,7.028 109,-0.71418405,129.28023,26.826069,90.304214,6.409 109,626.739,487.8863,20.270142,46.487,6.376 109,262.71625,208.24191,24.966522,41.4263,6.343 109,336.57178,211.48001,24.163116,35.81198,6.144 109,-12.316448,478.38293,30.225014,62.415955,5.834 109,612.45294,457.18484,39.528015,104.40024,5.717 109,618.6243,139.63913,22.075256,61.304947,5.709 109,16.299513,200.02797,30.898104,63.196793,5.489 109,-6.3335857,488.96912,19.323479,42.764526,5.463 109,193.95079,201.2099,19.30252,42.06401,5.432 109,603.0421,-54.530327,52.65277,136.93874,5.391 109,33.01765,153.26216,23.062878,47.03743,5.333 109,627.01544,0.15993881,18.080872,52.857643,5.323 109,619.1881,-14.903265,16.872375,43.479595,5.276 109,-17.457993,-62.129288,56.29301,141.66281,5.213 109,583.0841,413.60645,71.5661,175.12048,5.201 109,466.33636,216.30087,32.919373,71.53708,5.159 109,252.4786,204.84906,30.178925,54.199768,5.125 109,-73.305214,265.9322,201.45282,461.39618,5.111 109,-21.597826,403.191,79.06802,174.91183,5.069 109,119.59525,194.7802,23.379875,44.155457,4.992 109,338.83978,209.07791,32.791046,54.004852,4.9 109,115.22693,197.17564,31.958206,67.930435,4.891 109,20.412855,142.36243,32.18238,70.06128,4.864 109,2.258172,-16.22615,18.393532,44.094196,4.851 109,-37.38971,-127.142,117.276726,277.70734,4.846 109,536.1702,311.14886,143.59015,341.0343,4.844 109,305.99973,212.69395,20.586884,34.903305,4.829 109,2.9274797,169.17047,31.46302,78.51251,4.8 109,428.2516,199.82835,17.687164,38.495743,4.748 109,446.45013,200.62144,53.123108,114.67116,4.702 109,11.511944,168.49017,55.86056,113.34662,4.672 109,338.85345,197.66656,18.842102,27.958862,4.661 109,324.63443,207.76938,31.143616,55.420746,4.657 109,342.58914,206.85158,25.100952,32.381454,4.647 109,493.79358,228.77097,237.63794,513.8832,4.639 109,266.56308,207.85579,32.740204,67.6732,4.632 109,360.0697,212.48936,22.64032,30.696411,4.597 109,330.0221,207.31711,22.566895,32.57379,4.571 109,428.0747,216.01535,32.29886,67.91568,4.524 109,614.8978,-15.317753,26.683838,72.50493,4.516 109,387.98822,211.52885,18.64444,34.56807,4.421 109,281.82803,238.39842,21.960358,41.366623,4.335 109,-5.6989536,52.075245,19.607798,49.78918,4.318 109,618.6108,489.80682,20.393616,42.47058,4.305 109,-4.8469887,146.8469,19.215046,54.929077,4.282 109,164.65015,-19.413662,30.562271,68.179306,4.248 109,2.7000022,-17.773438,48.207153,129.90451,4.24 109,-4.319549,329.76096,15.306517,37.303528,4.23 109,-6.207985,-0.82959175,19.951935,48.357086,4.22 109,117.74136,-33.48183,28.567139,78.14123,4.18 109,360.8554,224.40117,22.895752,32.254227,4.175 109,100.87968,162.4416,31.408073,69.21654,4.163 109,56.598644,213.76242,34.024326,55.90808,4.16 109,-9.315484,77.230194,29.839542,79.56937,4.14 109,123.82376,-15.118675,31.768616,67.70327,4.11 109,157.57635,175.55255,54.551956,106.323395,4.11 109,520.96783,175.54175,22.888977,44.788727,4.106 109,180.71715,180.83017,38.87027,79.32468,4.105 109,537.1304,172.37216,61.76642,110.16394,4.104 109,571.1193,159.9867,58.360535,123.32318,4.095 109,91.235344,175.18942,33.00231,64.260956,4.089 109,33.35423,190.75818,44.862812,80.647095,4.057 109,478.01263,233.89818,23.874512,46.84581,4.036 110,465.90747,213.94177,37.364655,87.86359,17.09 110,304.59778,212.66563,23.412903,36.837967,8.117 110,289.10486,214.40779,21.35019,33.8042,7.461 110,603.3435,-56.105625,53.057373,137.53516,7.366 110,185.16876,199.39122,23.181076,55.97444,7.276 110,281.38507,213.42987,20.05481,33.599823,7.254 110,217.22226,206.53282,23.23346,48.917923,7.048 110,456.77814,205.93124,31.729279,76.316864,6.99 110,-5.9412456,-17.64793,18.583967,46.076675,6.963 110,-10.749338,-32.308838,29.838247,76.85373,6.537 110,139.04512,7.198456,34.31302,68.6884,6.443 110,471.1206,212.74979,24.17221,60.544342,6.348 110,231.69507,211.5541,23.753922,47.174576,6.293 110,626.4894,487.45047,20.634521,46.917877,6.164 110,-12.166276,478.07965,30.493397,63.434753,5.866 110,627.74976,-16.471603,16.42389,44.622795,5.735 110,612.797,456.59503,39.29651,104.75818,5.664 110,623.5587,-34.5801,25.881897,73.447815,5.634 110,437.72385,172.20753,27.52182,72.66312,5.603 110,35.67658,185.82806,32.508556,72.4209,5.54 110,-17.159702,-62.34297,56.688736,141.86244,5.426 110,130.36383,207.14365,32.18817,58.349304,5.409 110,256.7094,210.42776,21.959656,39.921127,5.356 110,-6.116356,488.89148,19.138454,42.925232,5.35 110,372.9221,200.24521,38.423462,79.63693,5.293 110,265.7514,212.12279,21.002106,36.84929,5.108 110,307.9114,200.04445,17.687805,27.218842,5.098 110,-73.03245,266.14542,201.16217,460.8939,5.091 110,582.9081,413.6117,71.68268,174.73254,5.016 110,-21.572433,403.18396,78.76187,174.74402,4.919 110,366.93967,197.6662,27.367432,64.089905,4.912 110,536.2711,311.29407,143.26514,340.78998,4.822 110,299.49988,208.13615,20.551758,32.68953,4.762 110,226.42738,201.02307,19.795303,38.193054,4.746 110,513.3419,172.30453,33.383606,55.827225,4.743 110,1.9553638,-17.191929,17.997646,45.546986,4.702 110,10.430901,166.01743,57.561623,118.7767,4.701 110,-37.717144,-125.79601,117.756134,273.53604,4.679 110,319.07568,205.87257,23.920837,31.64067,4.66 110,494.0479,228.94635,237.09784,513.1166,4.569 110,334.99597,217.43002,24.796143,33.145905,4.508 110,-3.622352,217.97942,29.550316,54.369278,4.5 110,68.84182,-33.177982,29.231438,74.310005,4.484 110,248.71062,209.90692,21.533096,41.352005,4.466 110,448.3101,206.9075,52.392303,133.19504,4.465 110,292.72253,207.4182,31.263336,55.577194,4.432 110,326.56427,210.47655,25.121216,32.020386,4.425 110,486.8831,237.19225,24.160309,53.900955,4.424 110,-5.667787,219.88203,19.133003,36.96605,4.406 110,420.82352,203.09258,38.53824,84.601456,4.391 110,618.0738,489.0231,20.876648,43.8591,4.361 110,536.9164,175.50592,61.92047,106.40283,4.348 110,175.29144,184.42635,28.349274,64.323944,4.345 110,40.108116,175.62415,24.007248,46.012222,4.299 110,338.87885,206.30887,41.692383,73.74716,4.295 110,478.35193,214.47447,41.493164,93.748,4.263 110,4.6356416,151.2844,29.720568,74.50453,4.208 110,364.4723,204.74812,19.291687,36.21576,4.196 110,273.8122,208.81801,20.183624,31.294449,4.158 110,213.25212,200.2516,39.1028,68.0103,4.154 110,187.75772,171.46121,30.040817,62.39427,4.088 110,234.18988,206.13268,32.25528,68.7834,4.064 110,493.25385,203.23291,15.669189,32.48233,4.059 111,492.6335,216.22406,30.953949,88.11786,14.705 111,-0.7373047,166.1003,26.241985,89.35625,11.072 111,127.85004,190.95213,28.646606,67.79042,9.89 111,-6.011989,-17.969004,18.240559,44.55142,9.034 111,171.432,216.00566,32.04164,57.982437,9.011 111,430.8697,200.77625,26.48288,74.98871,8.922 111,-10.927139,-32.660282,29.713583,73.97678,7.458 111,501.24667,170.44197,32.108185,69.56148,7.153 111,603.5366,-55.14383,52.890625,136.46294,6.891 111,508.11673,229.29141,28.160858,77.46872,6.717 111,185.1103,216.59247,34.99919,60.882233,6.289 111,-12.024149,477.6831,29.537485,64.78851,6.228 111,256.2386,225.51474,24.300201,42.25174,6.116 111,627.5291,-17.48668,17.012756,45.811413,6.062 111,502.92017,224.55624,23.469727,60.251038,6.041 111,626.5941,487.2857,20.773193,47.19757,5.919 111,56.260624,215.93748,24.767986,43.35945,5.879 111,480.45834,222.62161,32.07419,78.57663,5.852 111,612.9219,454.4947,39.576904,107.66907,5.739 111,267.11508,216.36172,35.140656,58.02072,5.735 111,202.72081,215.35413,33.18834,55.944397,5.646 111,248.04771,219.59286,23.334488,38.11612,5.642 111,226.0849,208.28009,34.401062,49.33133,5.608 111,-17.896978,-63.50874,56.910904,139.98485,5.589 111,130.34735,212.63683,34.114166,66.366104,5.389 111,522.4443,165.26932,29.46466,64.09984,5.369 111,2.5970454,-17.259068,17.891266,43.901688,5.338 111,264.62714,221.35144,23.294342,38.597748,5.329 111,521.08954,243.53856,19.757751,50.218002,5.278 111,-73.04265,265.1954,201.32195,462.05093,5.268 111,138.6267,187.7368,30.97322,62.854202,5.134 111,274.40314,213.73293,21.717773,36.150894,5.067 111,217.52286,214.11414,34.474045,59.191498,4.98 111,623.4716,-34.608643,25.831238,74.748215,4.953 111,-21.259113,403.06677,78.19531,174.8852,4.945 111,-6.1850495,489.00644,18.834396,44.21591,4.91 111,536.43365,310.3747,143.20496,341.71393,4.878 111,-9.395799,-6.7582474,39.88106,97.989975,4.841 111,60.155262,205.18645,32.69093,60.32335,4.786 111,214.75218,217.4627,25.266968,41.7276,4.766 111,582.9827,411.7883,71.71637,176.83414,4.766 111,279.49832,218.94911,24.036194,40.49254,4.724 111,183.55232,214.25195,22.794556,46.71414,4.69 111,176.98734,207.82013,21.754578,48.247406,4.686 111,596.0513,-46.938576,42.052002,103.93388,4.683 111,46.00892,205.39008,30.391884,57.895233,4.59 112,101.66703,207.09598,29.809898,62.547974,11.227 112,201.92667,212.62297,21.901703,47.717453,10.786 112,0.8808267,203.13028,25.80367,77.223724,10.574 112,480.96664,216.47363,23.916412,67.14264,9.412 112,153.14095,222.6627,34.962967,59.502213,9.345 112,621.8788,-32.994156,26.986511,77.75238,8.858 112,626.39355,-16.357971,17.865417,47.708366,8.795 112,-11.811599,477.73026,29.893784,65.83438,7.415 112,614.5971,-16.280327,27.416931,70.47379,7.253 112,-6.353594,488.3493,19.143656,43.809326,7.214 112,612.7823,221.08983,25.64795,84.70732,7.152 112,-5.4574947,-18.898241,18.267658,44.575336,7.069 112,618.612,-16.837671,18.292236,47.202198,6.901 112,613.11224,453.60532,39.252014,108.37717,6.75 112,298.88193,220.47505,19.461548,29.48413,6.745 112,602.7565,-54.883717,52.764404,133.58049,6.714 112,-10.294405,-31.98016,28.989584,73.03203,6.531 112,283.25095,212.91727,16.967346,29.37941,6.478 112,626.8882,487.1675,20.344177,46.90445,6.351 112,2.4428499,176.97737,31.541292,80.74605,6.342 112,306.3291,221.67752,19.019348,27.90866,6.244 112,-17.613762,-64.67795,55.589737,143.4452,5.89 112,81.56585,219.42578,22.384575,44.93454,5.886 112,169.48904,224.93756,35.656067,61.74414,5.839 112,195.43365,220.52205,32.459503,57.092697,5.371 112,550.7876,182.3836,28.713501,61.108215,5.362 112,-73.60012,264.31836,202.07257,463.71277,5.308 112,250.29575,223.6444,33.887573,59.12477,5.277 112,267.68704,224.00906,34.53882,59.923065,5.257 112,248.50858,226.71191,22.5596,36.829346,5.172 112,290.4859,216.72064,18.820404,31.99228,5.043 112,100.86041,-0.33488846,32.786377,58.822624,5.036 112,339.33487,221.84036,35.82541,70.15027,5.016 112,85.93819,201.64526,40.42563,85.95941,4.985 112,256.81378,228.02043,22.483856,35.895706,4.98 112,582.98285,410.8559,71.82428,177.55109,4.954 112,273.73636,227.78275,22.563965,40.925995,4.937 112,-21.66858,402.35904,78.86789,175.29446,4.906 112,215.40015,216.3825,23.019974,41.865784,4.854 112,508.95294,222.42923,14.913757,30.328705,4.807 112,209.46718,220.42291,34.527267,59.095276,4.807 112,227.21754,213.88408,32.40703,50.488968,4.783 112,474.45712,220.9036,21.640442,54.570282,4.774 112,585.59546,-98.13749,74.78174,231.78946,4.77 112,536.5679,310.7309,142.69519,341.89044,4.752 112,354.20383,217.80853,20.679962,36.15175,4.715 112,613.30005,-1.5754166,36.928955,107.81424,4.69 112,339.81573,214.33504,20.23523,35.30104,4.653 112,625.75037,4.203972,19.097778,54.092896,4.64 112,2.4535918,-19.480433,18.38045,44.955982,4.605 112,612.68365,372.11145,28.105774,83.52756,4.593 112,-5.0772104,219.03214,18.626596,50.68921,4.564 112,69.99654,220.55324,29.96164,66.31773,4.537 113,564.3544,200.05551,35.67993,111.937256,18.877 113,603.3464,174.8631,30.824402,82.39322,8.506 113,-5.6962366,-17.279514,17.817272,42.40027,8.214 113,107.26508,236.51599,35.044548,62.71515,8.109 113,571.8047,168.01337,45.859863,147.72763,7.961 113,345.4326,225.38614,18.42453,29.604004,7.842 113,-11.836309,478.68677,30.476215,63.833374,7.497 113,626.89557,488.9658,20.09552,43.71176,7.446 113,46.51821,211.00705,29.453117,69.20889,7.368 113,-6.332867,489.13025,19.244526,43.32367,7.177 113,171.738,222.77151,31.584076,55.891357,7.089 113,615.8573,181.24493,23.750122,93.063354,6.965 113,611.2848,-47.07594,41.217957,100.16554,6.93 113,613.5436,453.07547,39.203552,108.36209,6.922 113,267.4045,229.14613,17.655853,33.146957,6.755 113,-10.790487,-31.55406,29.076628,71.30805,6.72 113,626.8736,-17.954796,17.831604,46.121944,6.519 113,569.4146,177.41617,21.374634,58.57585,6.341 113,154.98933,225.4956,34.004166,61.480774,6.062 113,217.56512,225.78255,22.485153,30.214325,5.997 113,571.8517,180.20001,30.778198,90.561615,5.911 113,556.7481,192.28664,31.07306,91.98793,5.83 113,589.4377,176.20699,32.844788,71.9706,5.829 113,557.4706,232.51459,32.710205,83.59784,5.703 113,-18.022253,-63.745747,57.007584,141.088,5.417 113,274.6422,230.26567,18.570404,34.3062,5.361 113,-16.916693,438.9344,54.55648,135.58295,5.29 113,204.34482,220.46349,30.123627,47.022537,5.273 113,29.429056,208.65953,27.922152,65.362625,5.272 113,619.0917,491.59647,19.93927,40.717987,5.242 113,299.35666,225.47812,14.892578,24.906586,5.231 113,-73.30907,264.34888,201.71039,463.59705,5.189 113,291.80847,224.47836,15.435272,28.224564,5.164 113,283.78882,231.71927,18.061798,32.866486,5.125 113,341.03348,230.95335,18.076141,30.725906,5.089 113,593.6777,163.61775,40.977966,149.29417,5.013 113,233.07878,230.14069,19.659576,29.764832,4.918 113,536.5423,310.69177,143.15375,339.7392,4.867 113,13.45393,197.7232,52.470226,111.3743,4.86 113,579.7366,165.38527,31.088135,68.97504,4.857 113,325.46982,224.4296,16.864105,28.778275,4.838 113,510.07764,212.53534,54.59912,107.73987,4.829 113,540.67957,199.88467,28.786133,69.846466,4.823 113,-9.472174,-7.563183,39.68,98.81972,4.797 113,308.74536,229.10504,14.838318,23.180588,4.716 113,-6.036747,186.8774,18.50894,41.465134,4.703 113,-5.9944525,171.58391,17.937645,39.509415,4.663 113,84.78963,223.53708,30.82473,69.32858,4.661 113,-40.180046,367.12024,110.27336,275.1698,4.651 113,189.54582,213.81537,29.137527,57.41696,4.619 113,583.0315,411.23843,72.012695,176.3251,4.611 113,12.859225,202.69199,29.563828,66.8483,4.604 114,329.44592,226.39474,18.483002,31.941101,9.513 114,0.86827636,230.03027,22.945543,48.305786,8.088 114,497.65958,225.32408,19.26828,46.897263,7.841 114,-5.4291587,-18.027035,17.780956,44.383987,7.691 114,613.03314,453.68298,39.88806,107.940735,7.106 114,-10.556343,-31.455294,29.365776,73.78742,7.104 114,627.38165,-18.161102,17.673523,45.802223,6.849 114,-6.145543,488.76514,18.960693,43.445496,6.846 114,623.20337,-33.7031,26.350159,74.170525,6.732 114,168.09302,228.09413,22.747864,41.749252,6.607 114,-11.6195965,477.2707,30.163229,65.20514,6.454 114,626.4914,487.3377,21.190186,45.598755,6.192 114,123.66315,226.23798,32.778473,61.444397,5.989 114,34.146305,266.3516,35.074543,57.24118,5.894 114,603.1098,-52.430862,52.390564,135.10176,5.784 114,195.07819,228.39226,19.00061,26.74858,5.727 114,3.502667,205.82233,38.544903,94.240906,5.695 114,538.1345,238.68709,20.651123,35.985764,5.676 114,11.064153,197.02417,56.288227,115.46887,5.641 114,614.8436,108.04521,26.068909,89.624405,5.63 114,43.12815,234.51016,34.354744,73.90527,5.562 114,564.6111,208.76431,31.566528,63.519135,5.506 114,2.475692,-0.42201805,20.249966,49.21324,5.484 114,186.57773,226.64146,19.68602,30.060196,5.48 114,-17.385664,-65.7336,55.510406,145.83931,5.413 114,380.36633,230.55525,16.350922,27.75386,5.361 114,-73.6551,264.47888,202.55618,463.7793,5.178 114,346.00845,225.48555,19.479858,31.633652,5.127 114,2.7769704,-16.420654,17.35936,42.651234,5.033 114,332.97897,216.21635,27.240417,47.072403,5.03 114,613.8572,366.32745,27.428833,73.11426,5.001 114,-21.416552,404.09616,78.52237,173.74673,4.924 114,549.73395,218.72112,30.84491,53.624374,4.924 114,535.6459,311.3891,144.35522,341.09137,4.898 114,309.30655,227.00246,17.970917,28.638672,4.897 114,-13.11061,185.92322,47.707237,137.4589,4.839 114,618.3341,-18.475494,18.139954,44.896008,4.782 114,582.91833,411.2506,72.1817,176.84589,4.782 114,-5.9012413,157.77243,18.600754,39.36682,4.771 114,499.87372,340.11392,32.33911,79.19809,4.708 114,324.43518,219.83203,18.82721,34.138123,4.683 114,-39.972908,367.78568,109.90825,276.13803,4.661 114,147.67134,227.8343,31.468658,53.327835,4.649 114,202.15475,228.47104,18.619385,24.923096,4.631 114,493.59512,227.86246,238.04788,513.8508,4.622 114,363.43533,229.32605,16.243591,28.323273,4.617 114,176.17189,225.3327,20.91713,35.697906,4.516 114,2.0834827,489.57367,19.71319,41.636658,4.5 114,137.05385,235.2696,36.10643,61.287277,4.492 114,528.2871,361.39038,38.457764,61.50006,4.488 114,48.51558,265.16473,35.69539,59.970978,4.48 114,353.9571,223.97577,18.908783,31.333069,4.425 114,611.3096,-21.880047,29.351807,71.17879,4.419 114,618.6583,489.6003,20.662415,42.896027,4.382 114,-4.574564,0.19721603,18.05276,45.325226,4.365 114,578.0679,200.5715,32.5979,70.98895,4.362 114,28.695435,241.69666,32.43526,69.82532,4.327 114,1.9114864,163.13248,27.45646,71.4371,4.319 114,372.0039,229.924,16.003754,28.298294,4.318 114,338.23672,230.12022,17.811218,30.09114,4.299 114,-37.62871,-127.51844,117.28369,278.92883,4.288 114,48.28026,197.16617,28.805382,69.81015,4.283 114,-5.660786,37.17579,19.06067,46.469,4.213 114,316.6988,230.22662,17.499176,29.381348,4.208 114,180.08093,219.59317,30.152374,44.384094,4.196 114,-10.444354,152.14853,29.31203,69.52756,4.194 114,521.72296,489.9659,20.872131,40.58725,4.176 114,284.90665,229.60371,13.947693,24.228806,4.136 114,597.0884,-33.770134,29.189026,83.22675,4.125 114,43.605534,230.0369,20.50011,41.58603,4.122 114,394.3671,254.96513,21.266937,39.288986,4.107 114,5.3345404,467.3055,37.502174,93.5231,4.089 114,35.01191,229.24777,19.965183,42.483673,4.087 114,555.10864,238.12585,19.610107,34.82611,4.083 114,570.91925,230.5473,19.345398,39.500153,4.069 114,562.8837,223.78293,21.396729,43.171356,4.065 115,65.29822,210.18005,40.37239,79.664276,37.173 115,-5.545269,-16.89918,17.715828,41.1126,7.986 115,315.57376,222.05765,18.958984,34.677673,7.052 115,-11.81757,476.6399,29.97715,66.08942,7.042 115,-11.447641,-30.127142,29.924833,68.21587,6.955 115,623.7035,-34.904655,26.259766,74.44389,6.831 115,627.31885,-19.066769,17.808105,46.974094,6.82 115,53.59503,212.57974,32.465546,71.0087,6.752 115,579.3453,242.61867,15.193909,34.988052,6.708 115,626.62,486.97574,20.53711,46.840424,6.084 115,603.4207,-55.16754,52.75763,131.99698,6.012 115,-6.326864,488.48032,19.020708,44.35849,6.01 115,613.0415,454.45197,39.64209,108.00458,5.743 115,80.73083,211.42694,23.29049,57.57556,5.263 115,617.4027,204.27805,21.776062,62.47696,5.181 115,337.58386,218.73625,19.956665,33.397766,5.163 115,-17.552647,-63.520763,56.508255,141.3439,5.159 115,2.9612064,-14.978419,16.841597,37.255077,5.132 115,-73.579285,265.5283,201.62175,462.7997,5.102 115,-14.353719,158.87695,47.29722,130.9544,5.09 115,1.5561473,225.50568,19.554564,42.434723,4.936 115,536.2063,310.67834,144.01862,340.9104,4.917 115,588.0884,243.68571,15.479004,30.99675,4.868 115,134.94875,224.67673,25.195602,43.747955,4.811 115,2.1947563,4.783821,21.25119,40.822952,4.792 115,-21.67099,402.1858,78.95048,175.5741,4.786 115,562.3994,245.3253,18.986267,44.382034,4.755 115,248.56293,216.72354,20.393524,36.277725,4.748 115,583.1605,411.8983,71.50873,176.67227,4.74 115,14.286854,180.1344,54.43075,107.91846,4.71 115,161.80794,293.6874,34.328354,63.881073,4.664 115,433.3298,216.00429,18.267365,34.28366,4.635 115,618.996,-19.157484,18.384949,44.955013,4.633 115,-37.996258,-123.30756,117.03032,275.1515,4.629 115,493.32703,228.27301,238.06512,513.43744,4.615 115,-4.4454556,186.55429,17.838715,44.85594,4.587 115,614.14874,-22.057068,27.935669,70.73484,4.58 115,-5.244107,215.29474,17.885181,43.820526,4.575 115,68.57224,196.38837,31.492088,65.65625,4.515 115,329.97327,224.09642,19.441986,32.755814,4.477 115,522.0681,215.03261,18.5943,49.037704,4.435 115,586.43896,-100.4176,74.50488,232.47714,4.394 115,7.454536,183.6057,28.078773,71.58142,4.366 115,499.4263,200.88696,19.377777,51.76216,4.363 115,3.3447552,198.21683,38.764908,91.41345,4.348 115,-9.424128,-6.349182,39.777847,97.50486,4.331 115,322.6825,227.54971,17.22699,32.11725,4.314 115,-5.679679,1.2687626,18.402248,41.777664,4.311 115,258.05832,216.89389,18.877594,32.65802,4.293 115,-5.0764465,169.99146,17.790607,44.76837,4.276 115,78.475,233.06653,26.799393,53.762695,4.26 115,35.64375,232.95647,36.202137,62.49205,4.26 115,324.61368,206.08292,29.027405,50.66324,4.228 115,346.00897,218.75627,19.098999,31.711533,4.22 115,-10.044409,215.21637,38.58932,95.267456,4.209 115,594.04315,-45.408775,43.14386,97.83753,4.18 115,628.6329,0.9208126,17.297974,45.031647,4.169 115,490.3376,-177.34998,234.28369,417.67,4.128 115,395.7516,223.26318,16.700989,24.490952,4.095 115,-17.103416,107.3607,53.822277,140.63232,4.094 115,36.297337,197.75401,41.648464,78.67134,4.031 115,2.1519542,488.52838,19.469814,43.38971,4.02 115,116.5143,229.40132,32.21547,52.89064,3.997 115,618.4679,488.1695,20.561157,44.8891,3.987 115,267.726,218.055,16.881226,27.818863,3.986 115,474.40546,-1.1694317,20.0672,37.060684,3.963 115,-5.7224894,23.396612,18.138374,43.493713,3.927 115,355.25507,223.80684,16.983643,28.153214,3.916 115,1.4328146,160.34254,19.921223,40.713257,3.906 116,5.6170044,213.39539,38.231117,100.63574,18.488 116,307.89624,222.75937,19.528442,37.265625,9.429 116,314.32162,227.31049,18.960724,35.20703,9.236 116,233.24103,218.57857,19.813705,35.83046,8.333 116,321.82227,226.62831,19.610718,36.85872,7.993 116,11.141493,192.22243,55.92791,114.6176,7.754 116,210.06897,219.57222,20.62674,37.021408,7.669 116,38.117603,212.726,22.485111,49.581497,7.413 116,241.71075,220.14185,18.808441,33.67212,6.936 116,622.1561,-32.843643,27.129639,76.17785,6.772 116,82.04441,208.70934,32.220566,61.448746,6.682 116,5.11065,205.01309,31.18785,68.40787,6.328 116,24.51698,213.07208,23.96111,52.927704,6.243 116,141.20927,208.28362,28.148666,62.930588,6.238 116,336.5158,220.05919,21.413086,37.10881,6.04 116,626.6987,487.19162,20.370361,47.079254,6.014 116,-5.8318043,-16.925873,18.063694,43.523403,5.96 116,626.5131,-19.923752,18.33606,50.2427,5.956 116,-11.213991,-32.35971,30.40976,74.5122,5.917 116,329.6672,226.96315,19.324799,36.46559,5.722 116,378.19556,221.39108,19.431396,31.599121,5.703 116,-6.321598,489.13043,19.136288,42.882202,5.683 116,98.401886,206.05681,31.507965,56.714035,5.682 116,250.16486,217.92764,18.58371,28.786667,5.613 116,612.80646,457.30032,39.270447,103.91531,5.569 116,13.195776,250.78061,33.12996,55.891052,5.544 116,-12.378332,477.41336,30.568705,64.90207,5.397 116,126.60774,205.05763,28.880798,66.110214,5.267 116,217.94128,227.46265,19.36531,34.99048,5.221 116,-13.595205,176.271,51.664726,136.8642,5.213 116,-17.380836,-62.921127,56.737675,140.67459,5.151 116,291.64105,222.4094,19.115051,33.09842,5.097 116,-73.40664,265.06378,201.94391,463.63354,5.033 116,0.6609583,226.21976,27.55088,79.0997,4.981 116,536.1327,311.53455,144.24268,339.48914,4.96 116,394.89243,230.95963,18.076172,28.597351,4.902 116,300.45184,227.6799,17.889374,32.62784,4.841 116,170.4986,211.45644,30.802841,60.311844,4.823 116,602.2551,-57.869987,54.037537,138.36867,4.767 116,-6.429125,153.31082,19.08126,43.518127,4.766 116,582.7997,412.795,72.24432,176.01675,4.766 116,-5.761812,216.43628,19.583122,46.26233,4.763 116,123.55274,240.68433,17.653282,30.663269,4.763 116,585.8096,-101.11165,75.40698,235.30406,4.741 116,-18.794651,434.38043,56.230114,140.78699,4.699 116,0.75582385,215.71371,22.878912,50.69693,4.696 116,138.49576,217.23868,18.799866,44.03128,4.686 116,285.36798,220.23698,18.351013,28.99472,4.674 116,387.51935,224.1984,19.002258,28.991226,4.626 116,113.4909,237.16206,19.65046,34.09648,4.609 116,-39.880737,366.92416,110.24212,275.54922,4.571 116,315.28864,209.68622,30.128998,49.13684,4.561 116,493.86807,228.35928,237.8165,512.09143,4.483 116,112.111015,213.49965,21.140465,47.39528,4.472 116,16.082542,219.38257,24.333153,57.422516,4.452 116,528.78546,79.730156,32.90149,67.56901,4.411 116,618.47955,-21.21751,19.035217,49.95527,4.384 116,63.43014,208.82942,28.222698,58.756973,4.379 116,69.85808,218.41083,32.84732,67.68616,4.378 116,-7.9768953,242.04126,38.91615,90.54303,4.373 116,226.43494,226.97183,19.004272,35.95871,4.371 117,45.612583,228.60428,45.38754,71.040344,16.629 117,20.011099,232.95816,43.013885,72.60776,10.038 117,232.31691,228.48732,21.558548,37.9662,9.756 117,544.2671,221.04071,19.858948,41.610626,8.586 117,4.1231036,219.61766,28.948132,62.57039,7.717 117,63.773575,230.8818,36.2418,62.56305,7.633 117,37.41964,224.13428,34.41295,61.57245,7.555 117,626.72394,487.80573,20.543762,46.643738,6.662 117,208.91437,234.9869,22.887466,37.39592,6.55 117,306.55658,235.45625,21.420868,37.002396,6.521 117,-5.987034,-16.312866,17.768923,41.5793,6.499 117,611.02405,-47.56254,41.269897,100.523125,5.995 117,240.51605,229.35849,21.118866,35.32431,5.724 117,-11.933073,478.46155,29.099728,63.774048,5.666 117,-6.0519753,489.1885,18.360813,43.19821,5.658 117,-8.882589,463.23532,37.757195,93.45688,5.649 117,6.9688845,232.13927,39.316933,82.17311,5.649 117,612.5077,457.70523,39.297424,103.33627,5.582 117,225.18555,233.24983,22.061462,40.16545,5.58 117,-17.80644,-63.15515,57.061142,146.30827,5.578 117,-73.50952,263.18738,202.70036,465.55206,5.378 117,314.64203,241.38412,19.461517,36.1239,5.364 117,627.28705,-18.457432,17.029724,48.75677,5.345 117,330.53708,226.95578,18.279114,31.875305,5.234 117,583.84814,198.27783,25.107483,73.41943,5.226 117,393.99875,234.71982,21.731812,34.57303,5.214 117,51.577106,212.03825,33.45593,64.78566,5.206 117,19.22972,221.44208,29.813967,55.369965,5.103 117,585.54474,-98.21513,75.297,230.42168,5.032 117,583.01447,413.82684,71.767944,175.32233,4.969 117,-11.229228,-33.17282,29.643188,72.67313,4.956 117,536.2477,311.78342,144.27979,339.12955,4.823 117,-21.19809,402.35428,78.1538,174.95029,4.793 117,338.3281,236.64192,18.800629,32.535965,4.782 117,618.99146,252.73566,20.102661,48.398132,4.759 117,-39.988407,365.13995,110.473404,277.19586,4.727 117,-9.549336,243.3567,38.486847,93.44524,4.68 117,574.6343,-16.680523,51.762512,120.97145,4.652 117,31.25285,233.04578,26.142323,53.180176,4.563 117,385.24225,227.83789,22.546936,36.578735,4.561 117,491.12912,-16.029583,16.944122,38.125748,4.51 117,494.27576,228.66711,236.7074,512.7987,4.487 117,614.1298,481.30502,27.822998,61.46884,4.449 117,-16.381548,157.29333,51.258156,136.40363,4.389 117,345.13312,236.4223,19.633362,32.32086,4.385 117,-4.7667084,201.87491,17.801598,45.073196,4.382 117,594.2389,231.49951,18.491333,45.49286,4.357 117,210.58855,225.2106,33.23732,51.34445,4.209 117,377.32617,231.94034,21.81723,38.20764,4.188 118,2.134571,240.58409,43.157333,77.89183,13.267 118,305.30362,225.54782,22.866241,43.584778,10.92 118,223.5272,220.27463,22.539764,40.339264,9.045 118,2.4164033,222.1384,26.190283,72.94388,8.665 118,200.48105,227.52122,23.075745,34.729477,8.378 118,-6.533536,488.45477,19.75016,44.010315,6.709 118,392.47757,225.2991,24.156189,38.157745,6.405 118,626.5175,488.28937,20.619019,45.934692,6.24 118,610.1567,-47.204403,42.035645,98.60726,6.199 118,4.6997356,211.27998,63.161064,105.310715,6.126 118,232.38312,226.86777,21.038956,36.66855,5.892 118,284.49023,218.48819,19.830383,36.012985,5.764 118,612.55865,457.61462,39.565002,103.48547,5.71 118,-73.64823,262.94073,203.13434,466.2447,5.54 118,-13.092138,477.85324,31.161388,63.013947,5.465 118,-18.099905,-64.951096,56.309746,149.34201,5.375 118,202.94579,221.98285,32.403168,50.24179,5.357 118,19.11559,220.59525,31.170357,62.554657,5.355 118,-5.574955,-17.44666,17.21466,42.009922,5.089 118,582.99475,414.148,71.74133,174.49115,5.072 118,-11.285179,-32.480553,29.674566,72.8286,5.039 118,585.73865,-98.85665,74.930786,231.0249,4.954 118,536.1555,311.46558,144.40308,339.97247,4.869 118,568.9904,221.30905,20.987488,38.49298,4.813 118,627.0259,-18.685184,17.2594,47.576164,4.789 118,-21.23198,402.65796,78.239555,174.6723,4.761 118,379.05652,213.97128,33.916626,54.724945,4.76 118,-39.86891,364.47614,110.417534,278.4665,4.728 118,407.77563,230.78064,23.05011,30.640411,4.716 118,312.63522,236.94504,22.395172,43.841125,4.692 118,315.09497,217.33049,29.944641,53.857224,4.602 118,494.213,228.68979,236.82031,513.0065,4.587 118,240.91386,223.11658,20.933792,34.751526,4.52 118,-4.3072147,225.01447,18.567482,45.90918,4.478 118,377.81763,224.19884,21.185547,38.344986,4.429 118,-13.310304,234.43478,52.675632,116.70752,4.423 118,279.38214,213.32841,30.488495,52.24785,4.378 118,515.6273,231.52629,17.24121,25.794846,4.336 118,249.21973,225.22527,20.318817,30.165695,4.305 118,194.97919,227.18462,32.61032,64.9604,4.303 118,590.42285,-23.67434,51.51465,130.80736,4.3 118,491.76944,242.22139,17.202606,24.110214,4.294 118,139.56113,229.70378,17.443024,25.268295,4.27 118,25.072813,237.12227,33.559204,66.33586,4.227 118,337.9339,243.22874,20.831635,34.378494,4.22 118,571.36334,208.0737,28.222351,53.29074,4.19 118,-5.6204605,152.2804,18.452675,45.46733,4.188 118,326.36887,213.5946,28.021759,56.099243,4.184 118,377.5915,182.44458,59.267517,104.68326,4.177 118,292.96048,210.26636,40.184357,66.13803,4.149 118,-11.8233795,393.8677,29.563211,77.651886,4.126 118,-10.941678,285.91776,40.46856,107.64017,4.087 118,37.788033,224.01276,62.93107,102.09241,4.086 118,-8.270698,231.20844,30.559437,74.95001,4.08 118,618.1278,489.90933,21.022156,43.121124,4.062 118,433.6105,232.06432,44.59372,75.9366,4.062 118,130.74121,227.9711,17.570053,27.230133,4.039 118,465.3342,233.35443,44.152527,72.99811,4.02 118,578.0767,230.55347,42.080627,79.40137,4.014 118,394.035,200.2979,59.34738,98.12688,3.991 118,506.89014,236.87971,17.625122,26.467087,3.982 118,499.45056,242.3272,17.141724,23.826859,3.969 119,308.83517,236.13528,25.895416,46.22293,10.473 119,215.49704,227.87852,24.225876,38.75261,10.01 119,200.78482,233.78244,22.7995,35.961517,8.228 119,603.51306,221.81424,21.711914,43.605194,8.048 119,2.325449,231.57912,22.29418,43.987656,7.458 119,217.88104,219.43933,33.18434,55.924164,7.017 119,616.22815,217.73117,20.924744,51.513245,6.675 119,626.6059,487.62842,20.455933,46.59839,6.296 119,-6.180916,488.7353,19.134287,43.364075,6.256 119,-2.4490917,262.36496,29.858381,62.668274,6.024 119,408.63263,236.5414,23.546783,34.062546,5.817 119,231.78098,229.55852,22.594727,38.182602,5.592 119,325.14984,223.50734,28.691254,55.86644,5.589 119,312.66565,235.30476,34.73166,61.018936,5.557 119,622.6318,-33.831913,26.73407,74.80573,5.542 119,612.79626,456.225,39.2182,105.39188,5.534 119,-12.186613,479.48633,30.232359,62.20044,5.524 119,258.0617,247.28665,37.40146,60.689392,5.517 119,203.66753,226.97571,32.200226,52.596313,5.414 119,417.54675,246.2669,20.856903,30.762756,5.398 119,-17.963907,-63.86591,56.387543,146.82689,5.369 119,167.37212,233.10985,25.67772,40.431778,5.339 119,-73.112625,263.71277,201.80553,464.42676,5.277 119,151.32336,234.38939,25.2323,40.764297,5.247 119,-5.60211,-17.418123,17.238214,42.011448,5.168 119,-11.29636,-32.53871,29.659218,72.9049,5.113 119,539.0203,242.98631,18.325134,29.222122,5.08 119,582.8602,414.0141,71.891235,174.9259,5.033 119,603.06036,-56.958282,53.306824,134.81326,4.955 119,129.3339,230.03932,20.443832,28.762741,4.899 119,536.2857,311.11176,144.43341,338.6302,4.891 119,-21.361742,402.56262,78.39191,174.99329,4.885 119,293.8879,231.56201,34.803345,58.49475,4.785 119,394.43384,226.63484,33.904846,51.52269,4.769 119,186.42682,234.77052,33.814255,66.64494,4.751 119,392.94922,234.47934,22.566376,36.361786,4.732 119,240.30724,230.64674,22.939621,36.52501,4.716 119,338.3824,230.51628,19.728607,38.940292,4.676 119,627.2359,-17.538412,17.075623,46.19874,4.672 119,332.90054,231.39445,31.10196,59.882706,4.626 119,585.575,-101.03357,75.481445,233.848,4.584 119,494.35034,229.21942,236.92767,512.3729,4.537 119,594.54407,-45.874672,44.20874,95.36619,4.515 119,342.662,221.4006,28.254425,54.822876,4.481 119,97.547035,212.61592,44.461693,65.56996,4.418 119,614.39154,480.59042,27.844177,61.36386,4.405 119,401.95798,244.535,21.309082,34.443848,4.38 119,223.99644,240.84866,23.572708,40.336426,4.356 119,121.20358,228.29788,19.930618,30.72232,4.346 119,185.01352,234.07288,23.120972,35.973206,4.337 119,17.444122,271.30325,37.141632,52.895905,4.306 119,-5.987506,271.73718,19.61737,44.725555,4.306 119,522.58734,251.0562,19.686157,27.505966,4.29 119,318.24072,231.85822,23.733124,43.4682,4.222 119,410.2749,256.05447,19.953857,30.660767,4.205 119,-11.310357,234.13815,30.97876,65.63373,4.174 119,283.96094,236.89174,32.955414,58.83867,4.142 119,394.13342,197.7236,59.092896,100.742004,4.077 119,-5.585247,410.49066,17.562439,44.210632,4.075 119,290.8758,224.7946,18.604187,35.364273,4.072 119,243.41003,240.46123,34.50009,60.475662,4.036 119,539.1698,-15.676448,17.212952,36.815254,4.009 119,193.94357,240.51157,21.577423,37.692627,3.978 119,442.85577,260.29956,18.830994,26.494598,3.974 119,139.38643,235.53033,19.845108,33.702698,3.971 119,233.90887,226.12907,33.101196,56.4272,3.965 119,595.5844,239.93878,41.270508,88.964966,3.965 119,143.90427,227.85208,22.940521,32.181152,3.952 119,458.12454,196.92757,57.94455,102.71721,3.95 120,313.85156,230.15381,34.10431,69.06061,8.395 120,593.40826,257.33643,18.47168,31.894287,7.208 120,200.37688,234.37854,23.207245,34.251038,7.199 120,626.70276,487.63232,20.242554,46.791016,6.724 120,216.24487,232.71536,23.695236,40.257782,6.335 120,622.60876,-33.61402,27.145569,72.79424,6.111 120,167.96802,233.72505,24.619781,39.110764,6.09 120,-6.25861,489.10843,19.291906,42.865692,5.823 120,612.63135,457.75137,39.384155,103.234344,5.581 120,602.7405,-57.599976,53.6828,128.2889,5.479 120,195.04651,230.17943,33.210464,59.147964,5.468 120,593.5589,-45.73539,44.898743,90.53894,5.382 120,-18.036324,-64.26292,56.435524,147.84894,5.327 120,-73.23836,264.00095,201.6829,464.04703,5.292 120,326.4035,232.15323,25.082123,51.384888,5.291 120,184.94162,235.79019,22.91542,33.962677,5.213 120,-12.277735,479.17044,30.207346,62.173798,5.174 120,586.5086,250.23334,20.925903,33.871826,5.159 120,536.22626,310.40247,144.40576,339.48315,5.089 120,-11.2779,-32.657074,29.65829,73.02464,5.064 120,223.12819,226.85854,23.865402,38.13478,5.062 120,-5.586272,-17.507029,17.205238,42.141994,5.061 120,231.7203,235.55421,23.363647,36.954147,4.961 120,-21.539593,402.3334,78.64528,175.24374,4.907 120,582.9474,412.9738,72.06482,176.1995,4.901 120,293.14273,234.56528,32.992676,62.568817,4.856 120,146.58278,229.43152,32.332306,54.79181,4.796 120,626.7432,-19.324549,18.060242,46.437714,4.784 120,582.3788,254.63602,37.148438,71.46683,4.737 120,211.20105,233.44739,32.781006,65.22113,4.704 120,209.43628,240.12837,22.540009,41.504288,4.664 120,328.8001,238.0352,34.6745,61.222153,4.598 120,618.63153,489.2608,20.17804,43.894043,4.582 120,381.06738,172.06703,31.178528,59.897293,4.56 120,601.45087,257.12527,15.977478,27.007233,4.556 120,494.14444,228.99149,237.76474,511.97604,4.536 120,336.56213,233.81615,43.369446,76.8806,4.519 120,612.7631,263.16605,14.753845,28.75879,4.48 120,427.03293,227.65823,31.374603,50.424988,4.462 120,620.77527,259.32092,14.617554,32.509003,4.378 120,585.96674,-99.90421,74.57501,231.50421,4.355 120,597.9763,251.5415,35.92572,81.21686,4.35 120,474.68045,278.61627,18.977997,26.131683,4.347 120,0.9849143,234.434,20.574903,40.762222,4.308 120,193.74571,242.362,21.46341,35.11914,4.282 120,358.99207,220.35097,28.185913,61.99623,4.275 120,264.7571,244.8107,39.791504,55.488464,4.273 120,587.1598,324.72186,18.614075,22.632935,4.256 120,613.5898,-23.67323,28.12439,67.61209,4.237 120,159.92525,235.74045,24.0766,44.832672,4.188 120,629.34753,254.0683,14.782654,38.09668,4.106 120,314.8214,214.09647,53.28656,102.6304,4.066 120,594.3507,314.8707,20.209167,25.545471,4.043 120,176.24829,239.23242,23.859528,38.941223,4.015 120,258.0529,258.6085,36.818176,54.04181,3.989 120,-3.9663386,218.88654,17.332727,38.88672,3.977 120,223.53583,241.04895,24.218552,41.31189,3.971 120,578.4125,333.0054,20.621826,29.868805,3.971 120,-11.143222,393.04886,29.740993,77.37302,3.953 120,178.04497,232.84616,34.429855,66.340454,3.928 120,593.8984,-18.31001,19.483643,41.468163,3.919 120,363.09045,272.8711,31.536499,54.6557,3.914 120,578.9637,-15.857783,17.893494,38.143925,3.906 120,442.14175,266.08118,20.259705,31.412231,3.886 120,347.1155,261.57666,32.760834,57.08441,3.884 120,-0.0071668625,402.16492,26.790806,76.965485,3.874 120,186.35129,247.01494,34.45398,63.391953,3.867 120,435.0502,235.06593,42.66458,71.46782,3.857 120,137.75562,228.97581,20.425583,29.287766,3.854 120,490.10532,-177.72316,234.54337,418.23846,3.835 120,395.285,173.97208,31.477234,58.925995,3.823 121,465.3868,220.60324,20.330017,41.68347,8.131 121,623.7395,-33.994938,25.901733,74.49553,7.812 121,162.07999,223.9332,34.951782,58.76767,7.335 121,218.06334,228.38266,34.87491,67.095276,6.841 121,627.21735,-16.908554,16.878967,44.94857,6.722 121,207.41,227.5209,24.232819,32.033234,6.42 121,-6.474699,488.9364,19.618084,43.52539,5.973 121,613.00574,456.9504,39.613953,103.92764,5.859 121,626.6757,488.6461,20.55951,45.47397,5.84 121,174.42664,232.14679,26.923172,41.896973,5.576 121,-18.096186,-65.97343,56.312813,150.93912,5.42 121,-9.3100605,463.49286,38.144722,92.41455,5.383 121,-5.520094,-17.476532,17.150274,42.155724,5.183 121,-73.418724,264.7858,201.44217,463.04697,5.162 121,146.47247,225.0531,32.31305,54.421387,5.147 121,-11.219131,-32.571564,29.567663,73.01848,5.088 121,536.2374,312.18652,144.09277,337.90448,5.027 121,407.16516,239.622,24.778687,47.59236,5.022 121,-5.5214167,217.68433,17.584953,35.822006,4.951 121,331.1822,219.23703,32.6828,68.39157,4.941 121,337.14935,235.82005,36.31494,71.98198,4.907 121,203.20952,224.73457,34.461533,53.9402,4.894 121,-21.653622,402.40717,78.86455,175.0268,4.893 121,192.00264,229.87892,23.261856,31.389297,4.881 121,183.7491,230.14224,23.043686,34.12375,4.875 121,603.1364,-57.26705,53.370667,133.3076,4.868 121,2.1763456,212.58957,21.976368,35.45723,4.862 121,582.5901,412.4497,72.62024,176.01892,4.86 121,585.7101,-99.691284,74.98486,232.2693,4.837 121,297.4204,224.20071,36.9628,59.76602,4.774 121,223.15614,227.20187,25.80162,38.770325,4.77 121,352.43555,222.94926,42.120453,92.27528,4.677 121,345.6714,254.26192,34.806274,62.99739,4.609 121,216.43192,234.3761,24.281525,38.90924,4.588 121,488.06073,192.41476,20.82306,38.242386,4.505 121,490.18765,-180.78831,234.78976,424.16443,4.48 121,619.54156,-16.527554,16.850403,41.211754,4.472 121,494.0891,228.16925,238.05475,512.15576,4.427 121,593.81415,-47.178318,44.98987,95.318474,4.403 121,348.83905,221.43567,30.08078,68.688354,4.394 121,476.17023,411.51147,17.326355,21.959656,4.337 121,376.74768,260.89343,36.80194,64.4314,4.244 121,332.35233,206.75203,55.34134,119.3087,4.24 121,490.22607,-17.73549,18.542236,39.065834,4.17 121,232.30496,228.61249,36.217346,64.90619,4.164 121,513.7814,77.06622,35.12677,60.382904,4.158 121,401.09473,211.60062,32.316223,66.303314,4.11 121,-0.87346077,186.16261,28.778131,64.05754,4.098 121,579.81116,242.5705,39.886597,89.14392,4.094 121,193.03122,231.0571,35.891083,58.79425,4.073 121,574.44324,194.74515,27.459473,70.45169,4.021 121,473.48935,-17.549402,18.988403,39.93441,3.991 121,393.81833,286.13852,35.46646,54.501556,3.983 121,314.70883,222.35635,37.269257,67.79401,3.982 121,493.72894,73.01951,32.68286,72.2358,3.967 121,618.0136,490.69366,21.212402,42.102173,3.947 121,506.4757,-16.939993,17.742493,38.43345,3.94 121,133.88556,227.7577,31.236084,47.682175,3.937 121,239.32559,217.70213,23.021637,36.38539,3.885 121,176.13818,224.22525,22.841995,32.668518,3.863 121,154.8252,208.37444,34.115814,55.865005,3.861 121,225.54309,215.96526,33.853058,57.475876,3.859 121,185.10294,225.23218,34.409775,50.78241,3.853 121,23.989414,180.45834,63.127514,101.07687,3.842 121,490.18845,-36.287857,60.154633,125.6784,3.827 121,483.47687,201.38193,42.011414,75.408966,3.809 121,380.98743,70.107216,32.472473,70.56539,3.794 121,457.69775,-18.191208,19.008972,41.46351,3.785 121,362.32135,210.62541,57.005463,114.8961,3.775 121,87.77792,187.69827,63.345688,97.54166,3.772 121,2.3859358,225.2648,40.538494,93.900085,3.77 121,598.20447,240.91418,37.02356,97.52252,3.754 121,185.61795,218.68001,20.110825,30.532654,3.753 121,-3.4734416,179.12878,57.813633,111.19299,3.747 122,470.25244,250.15854,29.120453,67.219025,9.745 122,216.24565,234.47293,24.34729,35.860535,8.274 122,446.25812,243.51575,26.979248,67.65204,6.232 122,-5.9861903,489.10672,18.305763,43.312958,6.122 122,-11.845282,477.90936,29.565731,65.44116,5.892 122,218.07922,243.91086,35.933914,69.14584,5.747 122,506.30844,225.32983,21.825897,48.72818,5.716 122,176.62498,233.48534,36.131226,52.32039,5.711 122,88.993546,229.06433,23.2566,38.8385,5.681 122,612.6223,455.64493,39.554565,105.478546,5.668 122,-18.325773,-65.91878,56.548843,150.76492,5.607 122,626.8383,488.19666,20.583252,45.04883,5.565 122,627.0051,-18.611763,17.568542,47.06532,5.424 122,611.07007,-48.751553,41.362732,102.35293,5.418 122,-73.52729,263.6538,201.62784,465.14673,5.286 122,-5.562091,-17.456696,17.206902,42.031883,5.187 122,585.53033,-98.776825,74.98529,231.31749,5.131 122,536.3292,311.4122,143.66272,338.27505,5.107 122,-11.226182,-32.542755,29.620731,72.90613,5.062 122,130.13243,235.96404,35.056488,56.97072,4.961 122,460.85718,237.29976,28.819794,77.14174,4.946 122,-21.61046,402.72455,78.614204,174.90881,4.829 122,582.709,412.55615,72.37097,176.22955,4.789 122,479.7681,268.81262,23.177917,50.409027,4.736 122,361.75845,417.99454,21.393158,25.256805,4.625 122,232.32745,233.20395,35.997375,69.48581,4.58 122,182.72067,230.57333,25.027191,35.678192,4.578 122,493.81436,227.47333,238.50497,512.4254,4.541 122,490.83124,-179.74237,234.43073,423.57648,4.488 122,397.4078,218.62685,51.207916,120.31712,4.347 122,161.22546,234.7986,37.285614,57.829697,4.322 122,528.13574,248.94157,23.817322,30.996384,4.292 122,-6.1657057,217.38603,19.44984,41.26204,4.262 122,554.414,254.80957,20.185059,26.827515,4.232 122,248.35661,228.95291,22.40181,38.90515,4.212 122,545.3182,253.80235,21.70288,27.11287,4.195 122,618.4603,490.60413,20.51294,41.65332,4.177 122,391.38544,272.9085,37.25299,65.65039,4.159 122,363.18008,233.66702,33.514496,72.35849,4.15 122,2.2160232,205.50343,22.260235,40.728455,4.137 122,500.37286,214.33006,40.21637,75.05733,4.121 122,367.1457,215.23671,51.992126,110.674576,4.076 122,562.586,254.76418,18.697693,27.351242,4.076 122,2.7391534,490.0919,18.419596,40.694,4.055 122,598.3302,-23.941397,39.135254,93.82198,4.042 122,619.14606,-7.8661594,20.135925,43.967514,4.024 122,449.89008,224.65569,47.785767,117.6805,4.022 122,412.77316,269.91092,30.499542,60.9151,4.02 122,73.21066,190.11874,60.125183,101.65463,4.008 122,531.3673,240.44302,41.094055,69.54266,3.979 122,3.6893976,198.26584,33.094555,60.677277,3.941 122,130.30542,226.9387,20.630188,30.698105,3.925 122,-5.8817263,195.60214,18.481213,40.266296,3.908 122,199.2353,235.92259,24.7583,35.278305,3.861 122,522.0907,239.80269,34.215393,48.04689,3.853 122,420.6159,236.39946,39.39972,98.33049,3.823 122,-17.209435,173.54678,53.202377,129.77832,3.814 122,578.48035,-12.574554,44.265503,96.48319,3.798 122,320.6806,242.51616,38.489136,67.72926,3.769 122,397.96753,228.20352,29.029358,69.15851,3.747 122,2.532456,228.11258,40.580032,88.65323,3.74 122,472.4847,241.5267,20.77945,47.824554,3.73 122,410.13367,228.25099,20.959442,42.019547,3.7 122,177.5812,235.44218,43.49547,89.11244,3.664 123,566.25024,221.16534,30.116394,72.22394,7.906 123,-11.550759,477.94788,29.867023,64.91016,7.569 123,-6.4034376,488.95834,19.160233,43.15512,7.397 123,215.81693,229.60358,23.193237,35.5141,7.143 123,556.524,220.08336,28.59491,65.67256,6.854 123,613.1262,453.549,39.610718,107.14844,6.605 123,578.8605,213.06058,32.540955,83.621185,6.002 123,467.43542,206.5539,30.479034,74.13556,5.942 123,455.8606,206.73938,29.222137,73.046814,5.724 123,-18.254301,-65.819565,56.313942,150.62044,5.614 123,613.0819,201.52042,25.77649,98.90933,5.5 123,626.5865,488.15897,20.994202,46.060944,5.402 123,610.9005,-47.58343,42.318787,100.45,5.356 123,627.15717,-18.81975,17.358154,46.463886,5.355 123,-73.65892,263.86453,201.79716,464.60483,5.337 123,-5.491927,-17.26939,17.115845,41.79908,5.257 123,462.99637,227.61871,27.601196,62.735474,5.216 123,-0.44430852,196.51674,29.19503,61.967056,5.19 123,536.3021,309.7022,143.30878,342.0739,5.036 123,-11.236784,-32.416893,29.51805,72.7002,4.96 123,546.1676,206.04033,48.97058,115.6183,4.896 123,594.83484,-2.0497246,31.240234,71.79324,4.892 123,-21.601967,403.20218,78.75471,174.66977,4.88 123,582.6665,410.15225,72.2583,178.34659,4.742 123,65.23209,228.63223,20.98626,35.554474,4.741 123,490.64572,-182.12564,235.30765,426.94803,4.721 123,584.958,-101.65026,75.27869,239.86972,4.712 123,479.9021,206.0087,21.696716,47.554123,4.687 123,-6.6812973,200.89684,20.89017,43.16237,4.672 123,404.2322,225.27567,32.954742,71.805756,4.591 123,159.35808,236.13846,38.801636,59.556488,4.577 123,489.09668,216.72722,20.868896,40.027054,4.577 123,593.42596,24.423618,34.084778,101.48561,4.553 123,618.2712,489.52945,21.250244,43.719696,4.522 123,596.5804,208.67491,31.737427,90.571915,4.457 123,1.7512214,489.44833,20.00341,42.765106,4.456 123,493.37933,228.32678,238.07098,513.14667,4.442 123,237.6196,171.19943,28.00827,69.7431,4.436 123,-5.3331537,222.89258,16.991306,37.75775,4.382 123,389.7446,235.80692,30.909576,69.13202,4.369 123,41.4761,188.24664,60.820004,100.110504,4.333 123,56.82933,213.6827,26.154564,53.57161,4.303 123,564.7744,312.5299,30.221802,65.33789,4.289 123,7.7854896,184.7082,61.619633,99.88521,4.239 123,593.05835,184.41527,43.03192,180.98146,4.217 123,539.7329,-10.734283,32.413086,61.793816,4.198 123,112.54663,229.50896,37.025116,64.72752,4.078 123,597.27734,459.65112,38.91687,100.2287,4.064 123,114.36331,226.79779,19.900467,29.940643,4.049 123,472.40338,231.83466,21.121094,45.77832,4.039 123,107.44953,225.10605,19.710815,30.468506,4.022 123,549.54565,280.3479,31.574707,66.85034,4.01 123,584.9992,212.2945,36.166626,122.54199,4.008 123,550.8228,236.23203,30.16681,71.27899,4.007 123,619.3697,-7.9861517,18.872559,43.975624,3.992 123,-6.054182,187.80646,18.896675,39.085297,3.967 123,592.4333,220.12279,24.156677,63.528824,3.962 123,199.8752,256.67337,39.69832,65.38156,3.96 123,9.142753,490.17285,20.862835,40.81378,3.944 123,613.005,238.80673,26.567688,102.29828,3.926 123,411.61682,224.86006,54.54727,140.81047,3.904 123,1.129806,217.09003,41.84728,81.027466,3.898 123,266.4164,250.17328,35.144836,61.864624,3.877 123,234.89978,257.48267,34.35849,63.728027,3.875 123,73.19229,190.92072,63.946686,100.89615,3.86 123,470.2707,239.25783,28.18872,59.63524,3.854 124,201.60205,230.24821,22.93782,37.226852,9.032 124,613.08057,453.31027,39.679077,108.29581,6.734 124,626.43536,488.73828,20.990845,44.5224,6.599 124,-8.716804,465.60815,37.46137,89.913086,6.047 124,618.39734,491.25024,20.38556,41.394897,5.886 124,627.28894,-17.615108,16.892212,46.923077,5.61 124,-17.803638,-64.8346,55.913612,149.17384,5.409 124,-73.939575,263.64767,202.6197,465.07645,5.396 124,-6.363914,488.8761,19.279419,43.006836,5.36 124,1.9490659,231.94156,21.211544,45.596344,5.303 124,-5.478065,-17.270369,17.118073,41.800613,5.29 124,1.3182211,211.42569,41.20283,81.5495,5.225 124,-3.6423068,230.91406,18.262243,44.196075,5.117 124,-17.182644,438.44812,54.778305,137.3899,4.993 124,-11.281986,-32.406254,29.565575,72.668625,4.986 124,8.157398,199.90308,60.998516,104.84186,4.978 124,-9.739386,204.62201,28.623018,68.50052,4.938 124,623.02954,-33.68743,26.542358,76.5722,4.832 124,572.60706,220.64731,32.449707,87.12781,4.82 124,548.2693,206.1826,49.43268,127.07204,4.739 124,536.507,310.5278,142.9411,340.4501,4.725 124,17.777275,210.97754,30.819168,59.659607,4.69 124,582.97455,410.1442,72.043884,177.57053,4.689 124,585.53235,-104.14361,76.078674,239.66187,4.678 124,511.9096,210.98402,21.84076,40.168823,4.671 124,247.91583,283.64786,22.479706,40.26944,4.64 124,602.8715,-56.15147,53.149353,140.58037,4.586 124,-40.47907,366.10028,110.98088,276.04974,4.545 124,226.62253,277.02316,33.090576,65.87656,4.527 124,511.84933,232.5718,23.882904,36.66072,4.486 124,493.5105,227.47049,237.96667,514.8673,4.438 124,73.98455,234.3277,21.50969,35.16339,4.368 124,544.94714,488.54352,21.987305,41.954712,4.276 124,472.6949,243.2576,35.478912,70.17609,4.272 124,64.7099,222.09421,21.522034,33.787872,4.244 124,402.7456,218.46008,21.014923,43.32544,4.244 124,39.802143,199.35625,63.06869,106.19661,4.219 124,59.980133,210.70253,30.124939,54.393448,4.21 124,216.8267,233.9632,21.829391,36.321136,4.121 124,375.5342,266.25116,39.95685,61.125824,4.069 124,507.69116,206.9241,55.03705,113.74829,4.06 124,66.629234,223.73892,32.86715,57.39099,4.041 124,-14.8799095,190.7321,50.28398,124.81569,4.037 124,532.9801,-182.47394,148.03467,422.4692,4.031 124,344.507,233.41551,61.54193,127.08595,4.012 124,489.58115,253.96155,37.38498,64.230286,3.985 124,575.46826,198.22327,46.519287,139.80945,3.975 124,320.0209,296.2375,24.07257,33.78778,3.97 124,74.07969,220.7358,20.170265,33.227966,3.969 124,194.55319,209.75122,41.673935,67.4321,3.921 124,5.592084,468.33368,38.06184,93.25781,3.869 124,128.64178,236.12761,36.038116,59.017105,3.853 124,611.0259,491.5278,19.514832,38.812347,3.848 124,500.103,213.36263,32.36496,59.655167,3.824 124,224.9567,230.40959,21.922089,36.273056,3.8 124,336.66092,239.93259,45.920197,89.70743,3.796 124,588.3467,221.44093,28.018372,87.9283,3.767 124,296.6621,288.6974,22.665619,31.849854,3.767 124,481.9943,208.707,44.093475,82.12961,3.759 124,401.64935,240.7873,35.31781,68.436584,3.756 124,31.30439,222.82468,47.98311,73.24469,3.747 124,360.86554,259.32928,39.688995,66.62155,3.739 124,574.33655,-20.40255,53.75006,138.94984,3.716 124,141.64545,251.04765,28.107986,40.927567,3.705 124,531.371,219.20233,42.77289,87.72223,3.692 124,264.71896,286.6581,21.646423,34.194946,3.655 124,546.9744,244.22675,17.678162,30.44635,3.647 124,288.73157,231.011,19.36621,31.227432,3.593 124,596.49,460.02872,39.803955,100.53757,3.582 124,256.04504,282.7001,23.14093,36.667145,3.567 124,59.9075,240.44025,34.128998,63.60956,3.565 125,178.12283,216.53319,22.270844,41.403152,8.88 125,626.4052,488.16672,21.267395,44.828217,6.67 125,613.1498,452.9687,39.27478,108.86371,6.332 125,-5.1719046,-17.213503,16.378056,42.77326,6.111 125,409.7374,200.71184,21.581818,52.500656,5.898 125,-12.449078,-38.373028,41.565445,98.31115,5.879 125,622.76666,-33.783066,26.86139,75.57094,5.844 125,-11.945866,477.6695,30.098446,63.92865,5.705 125,45.66136,217.8317,30.117538,73.56436,5.667 125,618.28064,490.80386,20.693481,41.51413,5.494 125,627.1527,-17.450369,17.230286,45.853424,5.456 125,79.855225,260.35468,26.47599,37.215363,5.35 125,170.9762,223.31863,20.984528,36.628906,5.311 125,300.4491,224.51659,16.849243,24.07753,5.257 125,-16.382153,173.82843,51.591297,131.18195,5.196 125,-73.40404,265.51926,201.53598,461.67618,5.15 125,10.739119,181.42319,58.159454,106.39432,5.007 125,-5.8046684,489.03848,18.083897,42.76779,4.92 125,-21.774769,402.3175,79.16496,175.35327,4.882 125,603.1085,-57.50126,53.813232,135.76752,4.861 125,583.5452,409.28546,71.04431,178.97034,4.743 125,515.73285,249.05421,30.657532,73.01161,4.727 125,163.2093,309.93484,34.183243,74.211334,4.692 125,3.4660113,226.10231,31.498821,71.35997,4.65 125,536.83356,311.2196,142.89368,340.12122,4.646 125,2.9916048,192.93793,40.845196,86.26828,4.618 125,-19.764904,-83.84328,71.69499,191.36761,4.568 125,619.8948,-4.082016,18.698853,40.15346,4.545 125,489.83655,-180.0387,235.72498,423.3641,4.458 125,-37.77575,-120.683464,118.11987,270.23663,4.449 125,585.9083,-102.307816,75.59509,235.91985,4.435 125,164.05898,206.77295,40.83693,63.873535,4.384 125,494.00513,227.79068,236.95563,515.2964,4.361 125,-5.1587105,200.99796,18.15347,44.317947,4.275 125,615.5933,-20.213873,26.86493,72.43762,4.257 125,58.40456,182.06094,59.082584,102.72006,4.252 125,34.093903,-11.152035,33.360153,69.21223,4.186 125,472.21634,227.3204,62.07071,125.06586,4.173 125,376.1784,298.0089,38.138733,59.82611,4.155 125,201.41138,310.61102,20.293488,45.090363,4.146 125,-10.282953,202.51215,28.169546,65.020874,4.121 125,594.6967,-46.88189,44.370422,97.514,4.119 125,1.8314648,208.41673,20.383505,45.782944,4.107 125,-11.0583,143.63515,30.85945,73.62309,4.097 125,563.5662,270.73737,33.5791,70.485596,4.084 125,89.44025,186.34314,60.048492,98.45517,4.067 125,-0.8249259,76.70928,25.760462,98.37919,3.987 125,533.13086,135.54213,29.61676,67.0092,3.931 125,69.6548,190.52516,30.303322,60.389526,3.917 125,489.38266,237.50536,22.837006,30.596176,3.858 125,411.45108,298.81912,34.816467,59.773285,3.854 125,412.46912,-12.910633,14.853577,35.486603,3.837 125,89.447845,239.9981,36.88172,56.594833,3.832 125,-1.1154914,247.26581,28.336756,77.51221,3.774 125,428.21423,-12.666312,14.604645,35.040897,3.772 125,480.4375,236.30591,23.221252,30.257416,3.75 125,33.88409,196.30118,44.439335,76.9335,3.744 125,208.52013,308.39865,21.668396,47.689636,3.735 125,22.394157,195.79703,29.586731,67.53879,3.681 125,313.71527,307.8509,32.889587,51.077515,3.669 125,-5.0778956,395.73453,15.322325,32.25061,3.668 125,50.926548,193.70901,42.716656,78.18164,3.664 125,401.22772,174.92307,26.296875,79.43817,3.663 125,444.5307,-11.986904,14.054749,34.04167,3.637 125,452.55096,-11.215697,14.047058,34.355213,3.632 125,41.927853,-14.40512,17.724705,40.99553,3.595 125,420.28894,-12.340762,14.8732605,35.18181,3.589 125,596.69,460.0203,39.19049,100.27042,3.585 125,2.6072252,491.32748,18.119884,39.953827,3.572 125,189.39099,306.9837,28.305725,64.78702,3.563 125,257.82153,306.76566,36.938538,47.85028,3.56 125,80.456276,207.21664,45.89367,72.693695,3.545 125,576.0668,229.98376,45.61194,132.164,3.544 125,38.00854,184.68425,28.853504,67.40575,3.537 125,-4.7057734,221.381,16.958504,43.24135,3.524 125,508.63498,239.57648,54.058258,125.315735,3.522 125,3.5891576,-14.732718,15.73642,38.965214,3.51 125,248.39418,317.7722,24.252731,35.47821,3.494 125,388.61118,180.6338,29.898499,74.08499,3.492 125,460.17212,-12.683052,14.557739,35.87339,3.452 125,64.86516,237.62128,36.228806,60.149475,3.431 125,379.63516,-13.316649,15.716949,35.117443,3.427 125,267.97754,222.67143,20.136108,35.11168,3.41 126,-11.444887,-32.56621,29.873777,76.61076,7.48 126,-9.005362,466.51953,37.811928,89.01172,6.55 126,613.49554,453.29175,39.56842,108.201904,6.49 126,-6.2774105,-16.797836,18.345764,44.281456,6.311 126,151.10208,230.62987,24.869415,46.47905,5.763 126,521.7266,364.0954,35.562378,70.8418,5.569 126,627.22546,-18.484674,17.014954,47.94875,5.536 126,132.49933,209.72412,42.13977,70.88226,5.443 126,-17.439342,-62.663403,56.37224,144.8259,5.41 126,-6.151677,489.07324,19.049902,42.791016,5.385 126,623.0699,-33.473087,26.015747,76.19954,5.145 126,-21.417137,405.3841,78.79909,172.71454,5.131 126,-73.069786,266.20575,200.59314,461.62006,4.949 126,534.5845,310.51605,146.1001,339.92828,4.945 126,626.37164,487.96173,21.040771,46.13678,4.902 126,493.39362,228.35114,237.96637,513.15814,4.748 126,603.3758,-55.40132,53.489075,136.31068,4.743 126,554.22656,373.97485,35.2807,62.246185,4.717 126,583.77094,189.38995,37.615112,87.71713,4.673 126,4.487846,226.15195,31.80561,87.64374,4.55 126,583.35565,410.2821,72.23859,177.7909,4.505 126,489.86285,-180.16635,235.4646,423.10968,4.424 126,419.81342,218.29822,21.811218,49.180786,4.383 126,586.15106,-101.33399,75.042786,235.27344,4.303 126,588.48663,170.22652,32.362366,70.819046,4.292 126,5.3865075,469.24597,37.976852,91.4209,4.291 126,584.2793,224.47983,23.128601,42.00699,4.232 126,-37.93639,-123.17583,117.31464,273.92346,4.179 126,536.9529,372.76993,37.14862,67.67261,4.16 126,602.63043,227.10153,19.029175,38.376434,4.133 126,11.14114,181.89236,56.55312,111.1102,4.127 126,475.6803,-15.79675,16.553589,39.008373,4.117 126,502.59402,361.31482,63.35556,136.15204,4.111 126,592.86584,226.2454,21.722534,38.646866,4.069 126,539.5092,-14.647498,16.215942,38.247864,4.053 126,443.30978,-13.73974,15.674225,34.466923,4.018 126,1.9362855,-15.373384,16.917953,42.688206,4.008 126,411.47363,-14.377259,16.324158,35.668327,3.98 126,451.67648,-12.976316,15.406006,34.566193,3.97 126,540.11597,0.67557526,18.047607,33.89138,3.96 126,569.64996,488.91864,21.838013,42.645264,3.957 126,539.2982,203.89743,59.18048,107.45038,3.943 126,459.50162,-13.930037,15.363007,35.863647,3.927 126,598.52106,196.74057,36.729126,93.00418,3.91 126,467.4024,-14.063749,15.938721,36.885025,3.827 126,495.99097,364.8976,50.273132,91.41098,3.821 126,419.2309,-13.50869,16.347443,34.83114,3.821 126,597.0007,459.6579,39.70294,100.57373,3.806 126,594.3308,-45.76798,44.716187,97.80073,3.801 126,471.5297,360.21335,67.07376,141.48715,3.776 126,471.69867,-33.45918,27.476715,72.97418,3.769 126,427.20645,-13.720484,16.059814,34.24284,3.76 126,585.8337,489.08087,21.047302,41.965576,3.754 126,563.3528,124.72019,30.759888,58.899223,3.754 126,572.90424,342.4291,56.186584,160.66992,3.705 126,-7.8255243,309.69345,20.703648,43.13211,3.7 126,536.79004,337.27234,60.37079,114.06564,3.692 126,508.45135,361.61935,34.442383,64.24362,3.67 126,558.4445,187.34445,55.995667,111.20532,3.652 126,1.9530708,490.64865,19.499191,40.528168,3.63 126,482.35797,135.43816,42.836792,97.03555,3.599 126,-9.656015,-5.616894,40.664406,101.22305,3.59 126,529.5852,489.2448,20.81842,41.68878,3.588 126,145.39429,225.10753,41.224487,64.74245,3.587 126,-4.4738054,-15.2205925,29.478153,71.28471,3.584 126,-5.36952,135.2691,18.540117,44.657455,3.565 126,-4.8661036,202.35378,17.590574,43.608414,3.524 126,628.80524,231.11398,17.019714,44.595306,3.524 126,-13.3033285,298.0568,31.64164,64.72977,3.523 126,555.9994,0.9394245,16.076782,32.21238,3.516 126,604.1296,157.13309,28.714172,78.442505,3.515 126,548.12885,0.8585968,16.919312,33.99983,3.502 126,615.16956,336.66214,26.80957,82.04993,3.496 126,435.25122,-13.056904,15.761963,33.875694,3.48 126,556.20557,110.572556,30.951904,61.852768,3.473 126,547.36365,-13.2287,16.000427,37.684063,3.47 126,486.70987,259.0507,26.211151,34.105988,3.467 126,534.595,366.26068,25.827148,49.306244,3.461 126,-0.12118697,304.11176,23.436861,48.54367,3.458 126,521.3953,283.2784,21.884766,25.111969,3.454 126,172.53812,156.65881,28.772614,79.24115,3.449 126,-14.940876,172.73776,50.340984,135.00702,3.438 126,572.66534,225.31445,32.119873,58.333252,3.435 126,58.821793,182.68024,57.590347,106.098755,3.417 126,534.79065,-33.223263,27.399841,71.8685,3.412 126,506.58105,192.28711,58.957764,108.70871,3.407 126,345.3421,360.95996,19.815247,23.711578,3.394 126,-69.67552,-185.42026,208.75511,448.40106,3.389 126,394.3375,149.14026,57.37909,126.13031,3.379 126,-9.531077,198.31863,29.158073,66.05615,3.376 126,531.0088,-14.322529,16.92694,38.338383,3.367 127,-12.013745,479.74185,30.639664,62.250214,7.64 127,1.0261393,193.61586,24.219162,63.36931,7.02 127,621.94794,477.87186,28.634949,66.00424,6.398 127,-17.273588,-63.1481,56.313316,146.18044,6.133 127,603.23584,436.21667,56.21692,138.85938,5.682 127,627.3683,-17.61188,17.093262,45.63869,5.365 127,622.7243,-33.43505,26.637756,74.989334,5.221 127,-16.754988,437.999,54.395714,137.3425,5.139 127,119.87762,217.2494,24.70539,49.27437,5.111 127,-72.944534,265.89395,200.49992,461.9586,5.086 127,-11.242279,-32.541496,29.930613,74.5396,5.037 127,113.32892,205.32468,41.292404,75.04761,4.989 127,-5.552743,-17.900463,17.352142,43.241558,4.951 127,489.75113,-179.83316,235.85098,425.8535,4.87 127,602.83563,-56.752235,53.342957,135.27138,4.861 127,585.7795,-99.61869,75.4483,232.07547,4.818 127,535.85944,312.04596,144.3327,339.01825,4.788 127,-39.82403,368.52567,109.59337,274.40097,4.778 127,493.6345,226.74527,238.19058,514.9238,4.395 127,501.6817,100.886154,37.005066,70.47153,4.363 127,-15.064396,157.82797,48.5835,132.37668,4.35 127,-38.43672,-125.444695,118.70047,273.7912,4.345 127,154.91606,141.09027,30.962631,79.800934,4.32 127,594.4713,215.71298,42.15277,84.05472,4.298 127,570.1867,285.83002,21.223083,30.96994,4.171 127,5.421628,467.24353,37.52214,94.75415,4.151 127,571.3639,176.41295,55.451843,112.0645,4.031 127,580.74396,89.884926,30.795471,60.35697,4.029 127,572.2964,0.054410934,29.399475,61.058975,4.009 127,594.1719,-45.672215,44.698303,97.44629,4.002 127,132.6204,-16.22495,30.112747,68.55455,3.967 127,619.94995,-3.2528324,17.94165,38.770294,3.949 127,1.4310372,489.71844,20.778635,43.06134,3.879 127,126.00414,229.90063,24.301598,42.77182,3.821 127,10.117872,166.06244,56.506844,111.18439,3.815 127,291.22714,222.33655,18.830261,29.272293,3.804 127,586.20264,287.775,21.218384,28.745667,3.773 127,568.21875,232.68324,22.747192,29.310593,3.77 127,-0.8459878,224.92578,27.69618,71.33746,3.769 127,618.0136,490.42056,21.381226,41.91269,3.765 127,597.1537,466.09857,38.934753,94.69763,3.733 127,494.92157,253.97688,25.27063,31.122421,3.718 127,560.8268,221.56274,45.165405,73.63757,3.707 127,497.38562,246.2691,37.09137,51.47461,3.697 127,537.5924,187.99284,58.315063,102.00459,3.692 127,3.3149683,200.46176,37.674053,85.93027,3.687 127,614.5373,-19.186184,27.29425,68.40987,3.679 127,563.1061,211.87968,32.191284,47.280838,3.659 127,612.77686,212.13235,39.44391,94.806915,3.643 127,101.31791,-18.541069,30.868843,68.35578,3.631 127,577.974,270.32266,35.361694,48.655975,3.626 127,-69.64596,-187.14595,210.41745,453.0207,3.617 127,363.4012,-2.46208,19.331146,37.377014,3.611 127,58.298508,181.798,59.94194,104.007965,3.6 127,17.544704,489.20828,21.91603,41.779938,3.597 127,362.88058,-15.249395,16.691742,36.597908,3.578 127,106.460434,-17.123995,17.524254,41.086903,3.552 127,472.96326,251.68182,37.544098,50.03595,3.544 127,596.7715,-0.47401237,16.957947,33.107353,3.534 127,586.0962,4.311323,20.519165,41.15606,3.53 127,142.11334,-35.051327,28.633942,78.667786,3.51 127,561.6778,271.3544,36.273804,48.849518,3.508 127,104.11208,209.69742,27.776588,58.682617,3.507 127,-3.9231336,197.91103,19.010479,49.05728,3.505 127,2.037942,220.44408,19.255157,49.998123,3.5 127,577.87915,287.39944,21.246338,29.304718,3.499 127,164.72925,209.24588,30.94107,58.855988,3.46 127,604.56506,-1.0380154,16.808594,32.628685,3.455 127,594.2809,95.107796,22.464172,44.95632,3.446 127,137.98116,-17.274294,17.504303,43.65714,3.437 127,505.25653,186.29715,58.881714,101.232056,3.43 127,2.984405,-15.882424,16.581709,40.9016,3.426 127,546.16327,417.5498,84.92145,162.34827,3.418 127,504.63983,246.32303,24.000793,29.759033,3.401 127,-13.775618,-11.196758,50.1752,141.59207,3.391 127,146.46252,-15.95039,17.42723,41.818718,3.354 127,598.35583,115.67691,39.113037,107.41446,3.353 127,143.45145,133.32962,26.739716,84.18944,3.344 127,100.55169,223.0594,42.79235,63.662857,3.337 127,233.18875,128.60013,34.096893,70.74483,3.313 128,-8.891737,466.22522,37.549675,88.833496,6.959 128,621.73596,477.36478,28.716614,67.551056,6.065 128,-12.2875,-40.956623,41.10485,101.68735,5.975 128,-6.2255564,489.23163,19.416328,42.916016,5.915 128,622.76624,-34.76802,27.041748,76.48711,5.788 128,69.37679,213.79095,28.596214,62.605804,5.76 128,627.31335,-18.546255,17.364136,46.817383,5.49 128,-5.1090674,-17.255293,16.393194,42.9885,5.301 128,603.50946,434.5886,55.37494,139.43643,5.28 128,-73.03586,265.1446,201.4666,463.20502,5.236 128,490.26395,-180.35374,235.01651,427.71835,5.038 128,-21.376894,404.24442,78.72137,173.67844,4.938 128,602.9176,-56.274857,53.455994,135.72476,4.924 128,536.10986,311.40344,143.87415,339.5061,4.819 128,298.1223,185.71616,17.994263,33.97409,4.758 128,82.62607,219.27283,41.873,76.17108,4.75 128,574.8681,208.93504,51.29254,105.1039,4.692 128,586.0392,-99.41343,74.76898,232.88324,4.66 128,537.8338,266.94507,21.208069,26.269287,4.514 128,493.93408,228.77704,237.5625,513.05365,4.472 128,594.03284,-45.731403,44.75409,99.318054,4.456 128,-19.740713,-86.501045,71.44195,193.7761,4.447 128,5.3972044,469.21542,37.781586,91.71365,4.444 128,28.530125,172.87292,56.31483,117.70953,4.43 128,-37.71468,-126.38432,118.03119,274.19772,4.365 128,53.9406,216.23294,31.725628,58.735626,4.362 128,43.25486,202.79047,32.485527,63.48456,4.272 128,-0.55648327,165.01053,51.159145,129.37375,4.266 128,520.63043,267.6372,24.152283,31.035156,4.127 128,1.6872704,490.14594,20.38527,41.51935,3.977 128,146.74162,228.88174,32.302963,54.871033,3.963 128,203.36867,224.20468,17.372116,25.462372,3.897 128,596.8756,196.03952,38.70813,85.60574,3.872 128,453.49255,72.432106,27.561249,72.88973,3.841 128,474.30457,71.97136,30.997437,67.91942,3.809 128,613.3769,-22.126614,29.04657,70.44487,3.797 128,-70.07191,-188.3018,210.90936,454.81085,3.778 128,471.4067,221.48734,27.374084,62.84915,3.764 128,544.1187,270.05008,24.117065,30.789246,3.73 128,3.665762,-15.143583,15.400747,40.56215,3.701 128,562.1877,233.75653,44.298523,78.729065,3.699 128,337.04178,-11.534988,45.2648,91.82196,3.623 128,96.85279,228.62376,42.704826,74.31862,3.61 128,525.1183,86.589905,35.927734,69.86978,3.607 128,594.5141,246.2871,19.69757,33.055252,3.585 128,60.602814,195.3573,57.56543,111.578735,3.565 128,117.48048,-34.919056,28.689552,78.162964,3.563 128,298.95914,237.7158,19.22757,30.366165,3.55 128,618.1507,489.22266,21.2193,43.912354,3.538 128,-9.639135,184.03151,38.637154,98.84154,3.506 128,131.78827,125.59688,29.159637,81.95526,3.487 128,596.2528,233.31468,40.488464,103.15654,3.486 128,537.4472,205.9044,60.265076,97.413284,3.438 128,114.80186,218.32037,40.97956,72.927124,3.435 128,618.5526,-6.966769,20.487732,43.20715,3.431 128,102.08984,-17.984741,30.83458,73.19759,3.425 128,411.9079,202.36874,29.62915,73.573456,3.397 128,250.76703,240.99509,21.427948,36.38434,3.388 128,538.98236,259.80115,18.39447,23.727722,3.37 128,628.37634,216.78064,17.62915,44.897552,3.363 128,597.43616,465.02243,38.29895,95.87735,3.361 128,589.0473,227.49301,30.859436,54.563843,3.34 128,290.487,229.26486,19.75647,32.05194,3.337 128,210.31609,224.91727,17.055511,25.597443,3.322 128,330.935,233.79648,31.992432,56.01935,3.315 128,367.96252,-10.833462,47.05713,93.88936,3.306 128,-8.686583,7.7921333,38.80807,101.45613,3.278 128,586.2524,241.35855,20.316223,30.159851,3.275 128,13.7079735,-20.643345,55.657177,124.26965,3.26 128,553.44116,266.76395,21.413147,25.757965,3.26 128,483.6388,59.415627,43.61792,92.808495,3.259 128,428.6841,30.448044,56.719574,132.36497,3.236 128,362.4283,-16.3238,17.16861,37.038166,3.234 129,-5.704758,-16.54273,17.804926,43.276466,8.09 129,-10.971443,-32.30248,29.953838,75.03209,7.561 129,-8.952102,465.43307,37.919067,89.4512,6.584 129,621.6904,477.57397,28.846375,67.80682,6.232 129,514.29083,58.701958,33.48999,77.56757,5.706 129,-17.114601,-62.532814,56.660156,141.33775,5.357 129,-6.3527346,489.5713,19.385628,42.122314,5.351 129,-73.33625,265.24585,202.14346,463.56775,5.319 129,490.77747,-181.88031,234.58252,429.41183,5.266 129,603.4915,434.4772,55.28601,140.13437,5.248 129,199.97147,214.84927,23.037567,30.207657,5.189 129,98.53743,256.96912,33.772644,59.392273,5.144 129,611.1884,-49.371002,41.629333,103.55641,5.111 129,627.20844,-17.758121,17.091187,46.59157,5.099 129,2.6713376,-15.356007,17.105543,41.466885,5.024 129,536.1461,311.0016,143.64948,339.36182,5.007 129,-21.339987,403.8855,78.665634,173.79474,4.867 129,193.7134,219.54729,21.549454,31.138336,4.863 129,521.87305,79.5331,34.56952,78.39891,4.838 129,-0.9116864,188.24075,52.695065,121.3876,4.798 129,585.86536,-99.135574,74.519226,233.04343,4.73 129,-40.041405,366.69028,110.41104,276.31754,4.647 129,493.8595,228.51126,237.8634,513.5526,4.579 129,306.78552,181.9549,17.423615,30.218475,4.377 129,18.85831,234.33044,32.54038,62.158264,4.282 129,-37.6883,-129.05144,117.48345,279.70267,4.172 129,-8.75269,-6.7372627,39.352474,98.79422,4.137 129,41.40458,196.35194,58.439552,116.76955,4.079 129,417.94662,205.0596,27.612793,65.40445,4.073 129,379.03122,-22.670818,57.72702,125.31134,3.999 129,-70.22462,-188.5627,211.6081,454.29474,3.991 129,120.4527,242.88664,35.65541,54.12532,3.988 129,5.2116656,194.56407,28.260925,74.36366,3.922 129,410.7794,-18.765678,57.96512,124.260666,3.913 129,-1.3254976,-16.685154,27.930462,72.26829,3.908 129,489.30322,-33.65919,59.96759,124.43944,3.903 129,1.2824368,491.1815,20.599316,39.99594,3.887 129,369.63406,-12.777325,44.572815,94.875,3.867 129,617.79407,489.1647,21.650269,44.28763,3.838 129,402.5221,204.58546,20.247803,44.154312,3.829 129,29.817247,206.8019,31.567316,65.952866,3.829 129,187.58487,206.79764,33.292694,47.929398,3.791 129,-5.4155393,1.4535866,18.629524,45.536743,3.788 129,92.922554,232.03569,30.014725,73.01146,3.767 129,5.5005836,468.1829,37.930058,91.54831,3.763 129,1.7399931,-40.455383,43.10107,96.61429,3.734 129,506.43073,-16.281862,17.643433,37.435787,3.727 129,75.51007,189.12854,57.15219,104.809845,3.714 129,348.3231,-23.539223,56.80313,124.13633,3.685 129,458.1997,-16.993164,59.649475,118.36536,3.67 129,522.11694,-32.442642,59.48413,123.852196,3.658 129,105.48813,198.26701,58.93985,104.78221,3.658 129,514.5928,-15.542263,17.400757,37.27986,3.651 129,98.81321,215.68913,42.09603,72.609665,3.627 129,498.25223,-15.918906,17.77774,37.552067,3.624 129,498.45575,-2.354887,19.64618,37.613716,3.618 129,69.1288,203.34038,29.651375,54.149094,3.586 129,522.41864,-16.526508,17.490479,38.534966,3.563 129,395.59937,233.44257,18.249084,32.80963,3.559 129,108.4453,115.53105,28.357208,71.89607,3.55 129,-0.5764985,251.37738,29.844418,66.22998,3.519 129,458.7578,199.18561,56.007324,112.79248,3.517 129,2.7074897,12.776045,20.70792,57.548477,3.512 129,13.22941,198.75317,70.44138,152.22711,3.512 129,-16.265234,208.15479,51.457268,136.99628,3.51 129,192.84103,184.04105,34.576202,59.322388,3.509 129,490.07626,-16.482334,17.67868,38.898014,3.485 129,4.0442314,234.44032,31.576855,62.760086,3.482 129,506.93637,-1.773468,19.636261,36.2846,3.479 129,2.7167106,256.43185,41.67355,87.79349,3.463 129,490.41504,-2.0012016,20.258667,37.622776,3.455 129,32.652733,246.12354,45.75994,71.056946,3.429 129,-13.838444,154.96402,47.86663,136.48434,3.408 129,-4.909642,23.32349,18.564148,53.149395,3.407 129,596.38965,233.95647,39.64618,86.85399,3.405 129,623.55707,-22.027416,26.426575,72.89292,3.404 129,463.37518,299.33896,24.803864,36.236603,3.396 129,106.17832,243.33244,36.403374,59.137802,3.391 129,620.39874,-3.9211044,17.607422,39.027195,3.382 129,-6.45409,254.1036,19.176472,41.829834,3.362 129,627.62146,226.06949,17.150208,43.197266,3.359 129,57.924213,235.72403,34.310123,64.54703,3.355 129,138.3352,227.91812,33.50937,56.280518,3.347 129,534.5199,230.20079,34.579346,66.48921,3.346 130,451.97266,192.17236,35.53717,88.062256,17.201 130,457.7115,215.96603,23.140228,60.552063,9.463 130,-5.5873446,-17.810371,17.947702,44.501095,7.902 130,-10.761555,-31.842724,29.155882,73.65156,7.358 130,613.00024,452.14993,39.48755,110.045074,7.0 130,597.3804,0.7676697,29.925415,66.012115,6.287 130,626.93555,-18.713352,17.63501,48.45054,5.973 130,-8.89081,465.8776,37.920723,89.95975,5.947 130,626.5191,486.88242,20.88684,46.822357,5.926 130,602.1187,-54.675697,53.653748,134.75443,5.455 130,-6.432353,489.9509,19.445906,41.87332,5.402 130,622.4585,-34.57911,27.31604,78.22454,5.354 130,490.175,-180.90834,235.19891,427.87222,5.267 130,612.60034,41.80783,27.859497,93.40193,5.267 130,585.9069,-98.30849,74.43695,231.48216,5.224 130,-72.624245,265.70502,200.88263,462.40137,5.187 130,-17.54997,-64.420876,56.22605,144.22859,5.119 130,536.48596,310.6274,142.87366,340.85684,4.9 130,-21.45214,403.39307,78.79914,174.58044,4.875 130,582.6596,411.0365,72.13928,177.4137,4.716 130,617.07074,-1.8323803,22.95575,55.60559,4.67 130,11.425567,178.51517,57.009033,113.979675,4.487 130,2.7081335,-16.08936,17.05302,41.793125,4.448 130,-6.185561,138.52899,18.527843,42.66046,4.39 130,4.7029295,249.0798,29.47752,76.34024,4.363 130,493.72128,228.44379,238.47842,513.48035,4.341 130,67.73423,86.355965,31.234192,76.189445,4.271 130,43.343918,200.30066,57.40497,105.871826,4.266 130,-71.27796,-187.3768,212.61743,453.8985,4.228 130,28.34095,176.19482,33.43921,67.04918,4.225 130,-37.72431,-131.49846,117.93751,285.60748,4.198 130,573.8117,-11.658222,54.642395,119.431076,4.156 130,2.7430403,221.64182,33.74753,78.6525,4.156 130,308.46503,169.22214,20.079437,37.154953,4.14 130,362.39697,-33.63012,59.851685,121.42884,4.127 130,76.80825,194.28442,54.583977,107.668945,4.091 130,593.7825,-41.86131,45.678406,95.32064,4.088 130,122.39157,232.1759,32.152267,63.433594,4.08 130,330.17505,0.24613953,22.151062,43.589176,4.064 130,23.673494,220.12465,61.056587,124.586136,4.021 130,617.9586,488.9703,21.336243,44.006195,4.019 130,-5.327151,-0.6075287,18.76671,46.488045,4.016 130,354.90533,231.88547,32.22174,61.89978,4.011 130,-10.178733,157.79767,28.856823,67.35274,4.009 130,352.65714,-5.7586784,47.052338,86.74031,4.006 130,539.2115,196.43736,54.226562,131.34584,4.005 130,42.58819,269.2649,34.379013,58.81784,3.987 130,-6.2326336,168.70451,19.229618,44.660446,3.986 130,191.50339,209.98154,23.323502,29.086472,3.948 130,332.04608,-13.5174885,31.902527,60.87169,3.939 130,330.85037,-34.34045,59.03705,120.71907,3.935 130,-11.319823,233.26846,30.34634,75.63861,3.85 130,68.507225,213.22075,39.99726,73.25575,3.837 130,596.91907,457.64908,38.93683,102.66562,3.836 130,27.106401,239.4338,32.461174,74.06799,3.823 130,170.17693,205.79509,33.7733,50.03421,3.812 130,419.66052,-0.04132843,31.453308,63.886063,3.798 130,580.7252,-3.2815323,32.674316,69.67235,3.796 130,573.30664,193.13315,52.073547,133.41104,3.774 130,411.75662,-16.458054,57.623413,121.662735,3.738 130,235.4567,5.0677166,16.616806,33.08114,3.717 130,-15.530949,91.62079,50.34335,139.9581,3.712 130,39.51981,170.02914,24.300854,50.47116,3.673 131,493.7044,207.62311,31.223328,78.34204,10.108 131,626.2129,486.31955,21.263794,46.134674,6.994 131,299.79,168.1979,18.997162,37.85901,6.906 131,-10.339891,-31.83076,29.556509,74.51271,6.898 131,612.86725,451.75668,40.226074,111.3071,6.807 131,-5.5876703,-17.773811,18.447735,44.54753,6.766 131,-8.920141,465.3746,37.839447,90.05008,6.006 131,627.30273,-17.361765,17.122314,45.416737,5.618 131,610.7179,-48.327957,41.66278,101.021065,5.431 131,-6.29243,489.83545,19.223026,42.093933,5.349 131,-17.557178,-63.088837,56.472664,141.49252,5.295 131,11.198341,-26.94365,57.921677,126.5291,5.207 131,585.53186,-99.510124,75.190186,233.32526,5.173 131,489.46436,-179.84793,236.14545,428.03122,5.166 131,-73.20854,266.0287,200.72183,461.95374,5.064 131,24.345083,195.83986,29.433886,70.821884,5.009 131,482.89783,182.1671,48.6333,116.696304,4.98 131,582.9169,410.44482,71.91559,176.56201,4.928 131,293.48615,148.14525,29.961548,59.584152,4.902 131,536.4893,310.0043,142.75476,342.32346,4.815 131,1.9681013,-15.314634,18.25428,41.963387,4.768 131,-21.539278,403.5188,78.76275,174.08124,4.765 131,-71.3873,-190.3293,213.05688,457.76,4.72 131,-36.788715,-129.36241,116.858154,279.40076,4.698 131,618.3299,488.0533,20.906433,43.277496,4.629 131,-5.6808634,-0.04143524,19.710194,46.790405,4.623 131,13.650267,181.39407,54.45977,112.39572,4.54 131,493.70898,228.84448,237.95325,514.6179,4.528 131,493.24286,155.50708,29.744995,79.70224,4.375 131,-8.663862,-6.1957474,39.418587,99.72411,4.327 131,27.278496,242.26038,34.197853,65.26019,4.311 131,476.73877,-2.4563675,31.179626,66.84516,4.144 131,572.20416,-20.418102,55.22583,126.194016,4.112 131,562.2713,477.63504,35.747498,61.67685,4.069 131,595.92535,459.9245,40.66986,100.91272,3.958 131,-1.8716359,-17.372038,27.731869,70.717384,3.935 131,38.33854,198.3471,28.054253,70.483734,3.916 131,572.84125,162.78236,52.99951,126.78044,3.872 131,1.4568686,-37.74604,44.32426,96.42959,3.862 131,363.1573,-0.83236694,19.033295,35.160343,3.861 131,26.233555,-10.571751,35.572826,59.82067,3.844 131,0.061416626,196.6706,25.662909,74.49841,3.831 131,545.0208,486.70197,22.084229,44.293213,3.827 131,91.942535,214.27336,34.62516,65.83937,3.811 131,372.48083,181.5658,32.72531,56.620667,3.798 131,-5.254168,102.169395,18.036852,46.993904,3.767 131,-12.907796,189.42407,48.48471,134.09167,3.749 131,539.1995,-22.12249,57.82263,126.5649,3.732 131,362.5461,243.37907,33.170288,69.71098,3.716 131,-0.52271366,241.04553,27.906967,67.449036,3.704 131,597.5398,-23.59604,39.734253,94.31666,3.688 131,138.68889,203.0146,32.673935,55.17726,3.684 131,284.4593,149.47806,55.64505,105.69591,3.668 131,84.398254,183.48105,41.18405,76.49393,3.661 131,32.42246,-6.29607,45.839146,91.49475,3.661 131,243.44766,-14.364073,15.748199,38.077076,3.622 131,-6.1165133,20.046097,19.48272,49.855156,3.619 131,603.4419,11.572411,54.255188,149.89062,3.618 131,1.6077065,491.88025,20.304575,39.69702,3.609 131,341.44922,-12.667095,30.448334,62.179348,3.603 131,114.95618,203.67186,33.01761,63.612747,3.6 131,410.7474,-16.87931,17.476196,39.103115,3.594 131,42.343655,-31.51525,58.817997,125.69729,3.568 131,3.476628,225.47491,38.87491,95.97479,3.559 131,362.71207,-14.489799,16.98352,36.540337,3.557 131,9.411788,-17.680592,18.664509,41.86538,3.556 131,346.8242,-1.9275913,19.531128,38.094772,3.52 131,5.655117,468.58356,37.831516,92.38989,3.505 131,530.8212,476.48746,34.130188,64.097015,3.502 131,235.45633,-15.971835,15.504791,40.327225,3.489 131,-10.0091,221.28934,28.72324,68.1308,3.488 131,4.356911,-5.909321,41.031406,114.20625,3.487 131,170.67964,-42.745583,57.936157,130.76152,3.486 131,479.20834,204.97775,31.522491,69.88867,3.461 131,572.84326,129.2673,29.26941,56.44931,3.454 131,41.42005,247.73749,35.531715,63.168457,3.449 131,130.33392,184.84984,32.68228,61.807373,3.448 131,619.2928,-16.637821,17.171875,41.76719,3.425 131,560.5427,486.30728,23.56012,45.580902,3.421 131,354.5543,-1.578846,19.1557,36.783485,3.419 131,-14.92402,124.583336,50.020058,140.1948,3.415 132,-9.1307335,466.23077,38.117245,89.211426,7.158 132,-5.937434,-16.787582,18.057323,41.69428,7.041 132,621.4547,474.5437,29.215576,68.21484,6.625 132,299.38907,159.61002,22.874878,42.680084,6.396 132,-11.129314,-31.775826,29.737778,71.74478,6.212 132,-6.468084,489.5599,19.551825,42.802887,6.066 132,593.91504,207.05142,37.997314,118.82825,5.664 132,627.1552,-18.679094,17.248413,47.609745,5.604 132,604.2812,430.33478,54.880554,144.08319,5.534 132,610.6037,-47.9428,41.78369,100.294556,5.497 132,585.7536,-99.52497,75.07538,233.02332,5.124 132,489.60162,-180.42471,235.79218,429.39417,5.065 132,-21.12389,405.2749,78.50571,172.65619,5.058 132,-73.06832,266.724,200.26547,460.37524,5.041 132,12.964878,167.99048,54.89008,108.370514,5.019 132,-17.1535,-64.06681,56.169548,144.85034,4.984 132,580.1921,150.63339,50.86444,163.68118,4.81 132,-6.055621,1.8103333,18.673122,42.63051,4.745 132,-37.14889,-130.27708,117.19142,283.34613,4.735 132,536.7817,311.06793,142.65125,341.20764,4.706 132,-71.22438,-190.85898,213.4825,457.82874,4.634 132,5.3902283,470.05124,38.22788,90.10916,4.564 132,33.55166,182.6751,42.84762,83.87392,4.452 132,493.157,228.27866,238.20169,514.5615,4.372 132,67.88108,182.54803,32.216568,65.75989,4.289 132,-4.7700305,195.87401,18.741467,50.1985,4.247 132,-5.641873,156.07852,18.138151,42.534103,4.224 132,618.3255,487.26617,21.390198,44.272278,4.222 132,0.16947389,192.62437,22.437906,57.80989,4.188 132,331.79593,212.9095,18.019714,34.31389,4.182 132,4.2521152,176.49994,39.11969,92.52844,4.174 132,614.6213,178.64816,25.304993,109.20517,4.128 132,-14.205463,159.00958,48.964058,132.66339,4.087 132,28.572351,182.0751,32.976868,61.45497,4.087 132,536.725,488.1996,22.5766,42.371338,4.045 132,107.37599,183.07036,32.854706,64.56035,4.042 132,2.796204,-14.856885,16.925648,38.082798,4.036 132,50.700623,181.28004,41.587585,83.0999,3.991 132,1.4943814,490.96567,20.877842,41.36789,3.965 132,539.9635,62.20578,56.68225,135.04623,3.956 132,610.48517,246.40314,38.04889,109.49304,3.948 132,135.87224,206.56656,25.117477,30.787247,3.936 132,-9.8787155,-6.972,40.7094,100.600945,3.881 132,10.728867,-33.49982,58.81906,133.05313,3.855 132,555.16,138.97803,33.49585,73.9899,3.852 132,580.39374,124.78166,32.049988,75.995804,3.838 132,50.686447,153.76021,44.028023,77.31886,3.815 132,170.11682,-41.382805,59.32988,132.66066,3.784 132,592.9711,110.010155,47.816284,167.32544,3.767 132,-15.627886,88.031395,50.878975,144.67584,3.767 132,59.303307,156.49751,56.952263,100.00923,3.765 132,596.26337,461.50058,39.68286,98.481476,3.72 132,570.8679,120.960205,31.074646,69.35391,3.718 132,-8.854262,173.60306,27.850319,69.377014,3.718 132,409.46222,277.25345,34.840485,64.5242,3.715 132,1.313678,2.4650097,22.118504,44.020187,3.714 132,528.24194,-11.460281,45.57263,96.40934,3.698 132,506.45233,-8.987358,58.714844,139.49576,3.692 132,562.10547,478.21988,34.807556,61.916412,3.664 132,-2.131089,238.53758,28.940338,75.790146,3.663 132,573.0338,230.08594,55.4057,153.87488,3.651 132,475.07355,-4.062439,57.593506,135.9961,3.643 132,484.66324,50.77882,41.088593,96.36998,3.596 132,314.50726,-16.041212,17.44339,36.194004,3.583 132,340.08163,215.07915,17.633759,30.875214,3.575 132,573.0174,-26.761616,54.295044,133.70415,3.57 132,316.4234,201.69566,15.902649,32.882507,3.542 132,41.682823,-36.648083,60.40622,130.05626,3.537 133,298.55972,163.39427,23.914581,46.212204,15.301 133,-5.7205224,-16.742886,17.926777,41.717907,7.44 133,626.1735,486.05994,21.461304,46.213684,7.116 133,-12.309484,478.05432,30.605251,64.16614,6.642 133,-6.548629,489.17703,19.450788,43.164337,6.167 133,-11.104703,-31.583622,29.726612,72.13616,6.111 133,613.1507,451.8168,39.326843,111.47519,5.78 133,-17.361223,-63.46786,56.36116,142.72119,5.249 133,91.46702,211.9708,33.491386,50.006958,5.248 133,73.796776,202.52826,34.109833,51.737915,5.204 133,627.26587,-17.04781,17.231873,44.65267,5.184 133,490.02472,-180.69366,235.49725,429.0896,5.184 133,586.0392,-98.699554,74.74097,231.21436,5.16 133,-17.28397,437.77887,54.68915,136.60095,5.138 133,26.868505,162.55273,33.562233,68.32092,5.137 133,610.5457,-47.249756,42.23883,98.887115,5.102 133,10.905912,-31.001482,57.705948,125.94053,5.065 133,-73.24966,265.6729,200.54523,461.46906,5.006 133,-6.220811,127.35595,18.669952,47.281807,4.962 133,-0.99202037,133.18944,28.740543,81.25287,4.945 133,-36.931236,-129.06572,117.50474,279.17535,4.937 133,37.877193,161.02956,24.406837,47.8546,4.89 133,583.1915,410.3554,71.56195,176.53882,4.888 133,102.110504,218.93138,26.741821,35.13701,4.846 133,536.6456,310.62933,142.64331,342.3498,4.742 133,-39.860977,368.73004,109.93747,273.88446,4.635 133,-71.13402,-190.75592,213.34935,457.4472,4.492 133,618.39124,488.29465,21.236877,43.53531,4.432 133,537.3857,487.88324,21.715393,43.109436,4.425 133,-10.49775,150.0647,29.583508,76.02136,4.407 133,4.781069,148.15573,35.563072,77.88788,4.376 133,493.52258,226.98026,237.74664,516.23376,4.36 133,-6.2195177,182.15277,19.915188,49.769775,4.329 133,-10.5017805,115.99437,28.813122,70.80647,4.285 133,6.249427,116.62079,32.731216,80.39554,4.277 133,1.7247379,490.18774,20.252449,41.51062,4.26 133,3.1381547,192.55942,38.658764,93.10385,4.244 133,2.6478868,-14.385457,16.957983,38.24604,4.237 133,80.379456,206.98892,22.400887,30.884079,4.227 133,-5.0711966,147.68718,19.45472,52.139343,4.221 133,545.76825,488.1142,21.329102,42.713745,4.215 133,-5.370335,23.53651,18.012844,43.833164,4.212 133,42.87751,-34.698277,59.002083,122.58522,4.201 133,529.79565,487.38422,20.933044,42.83789,4.149 133,32.232887,171.53528,45.200645,70.20183,4.145 133,74.703285,-35.343918,59.50283,122.96188,4.098 133,114.73797,-18.62233,42.24697,83.78736,4.077 133,10.24621,160.43826,58.645912,99.86206,4.054 133,-9.521742,-7.7406845,40.7722,100.748055,4.035 133,-1.3877511,192.28442,25.352152,71.33893,3.99 133,73.73151,202.22171,20.365623,34.12668,3.985 133,64.38893,-9.024326,47.30298,91.02127,3.958 133,87.27729,217.61716,26.34652,36.441895,3.928 133,88.88885,202.91216,20.439018,26.383087,3.909 133,96.70755,-8.646999,46.57428,90.230484,3.861 133,-14.340391,159.80437,49.39467,129.31758,3.847 133,31.764084,-9.044453,47.57412,92.92111,3.839 133,412.5918,183.23273,29.969727,65.59747,3.827 133,-5.553527,0.1712017,18.18914,44.371223,3.809 133,5.6623793,468.28812,37.625854,92.79605,3.749 133,48.53796,183.21541,44.88371,69.69626,3.715 133,2.065196,-38.880222,43.605953,96.417,3.703 133,-5.5583735,204.94241,18.208735,46.029007,3.686 133,276.224,-16.372833,32.346893,58.927517,3.684 133,41.911392,218.51917,34.69449,59.11493,3.671 133,434.08362,201.75479,32.272736,57.02774,3.644 133,66.7076,182.09038,19.51883,39.128006,3.629 133,1.702913,0.43408394,20.644388,45.403862,3.622 134,297.9334,183.37091,30.46347,66.60657,14.079 134,-10.732956,-31.883434,29.366076,73.19384,6.523 134,621.42523,474.16058,29.42749,70.08411,6.494 134,-5.682387,-17.009075,17.932037,42.55313,6.468 134,-12.172365,478.47614,30.276731,64.12213,6.456 134,-6.368531,489.67422,19.214241,42.90927,6.393 134,3.9179075,189.87503,29.5682,66.927826,6.092 134,2.046622,247.98325,34.00577,65.90588,5.751 134,-17.262741,-63.559357,56.105972,142.26352,5.652 134,39.349762,249.76688,25.50666,47.397156,5.553 134,490.34814,-180.88065,235.40381,428.9336,5.161 134,617.4107,485.96176,22.338074,45.86496,5.158 134,-36.811325,-127.91669,117.14103,276.28198,5.116 134,627.3092,-17.571339,17.02063,46.48989,5.076 134,585.7083,-99.01135,74.87738,232.4139,5.067 134,603.6446,431.916,55.398376,140.93185,5.027 134,-17.13612,437.6991,54.383373,136.08435,5.01 134,-73.30524,265.39807,201.13118,462.38025,4.996 134,137.27228,200.43753,20.963333,33.186844,4.955 134,26.761692,247.50487,33.20921,59.92491,4.899 134,602.7722,-56.775497,53.41223,138.79274,4.868 134,622.8233,-34.02499,26.848083,75.963684,4.787 134,11.640055,-33.665398,57.308495,129.06815,4.659 134,16.94277,196.33768,21.772982,46.129013,4.656 134,536.9392,311.89218,142.27887,339.63333,4.646 134,47.03399,247.68253,24.752403,38.01715,4.609 134,-39.881077,368.4709,109.836044,275.008,4.59 134,-9.295862,-7.331211,40.330387,99.74425,4.53 134,1.2445569,248.25374,21.99742,43.487473,4.523 134,-14.033653,156.88316,48.300343,134.20265,4.503 134,-6.5538445,262.55307,20.157902,44.11841,4.501 134,2.1290612,205.00528,40.066364,81.252686,4.487 134,-70.84917,-189.46236,212.44884,456.32184,4.388 134,-1.900295,110.52722,26.34613,90.8902,4.377 134,7.9328322,178.38852,59.871094,105.01535,4.319 134,40.904457,242.5437,23.408302,33.148132,4.308 134,3.2568872,-15.164152,17.244806,39.900406,4.297 134,493.8871,228.02756,237.56195,514.8237,4.291 134,212.2709,-12.797655,15.46994,36.613884,4.216 134,-5.4518423,1.3144875,18.559385,44.542564,4.199 134,219.87428,-13.954647,15.901596,37.492634,4.187 134,-4.516558,195.50797,18.548395,47.998856,4.179 134,-11.347637,250.41223,30.112926,67.65491,4.121 134,-5.3993998,91.170235,18.038998,41.660957,4.095 134,203.88638,1.6611767,16.630264,31.477877,4.021 134,1.9604272,490.50427,19.731287,40.885254,4.007 134,203.78798,-13.976472,15.652603,37.717094,3.994 134,1.8073726,-40.02007,43.780197,96.093864,3.979 134,79.64425,217.90448,46.36788,75.36566,3.909 134,110.83671,207.35287,48.33869,72.92612,3.909 134,292.49625,-17.151583,31.506561,58.034798,3.869 134,286.78552,167.63889,52.06781,106.8631,3.848 134,33.3042,224.29027,44.67283,70.6241,3.836 134,42.788197,-38.25038,58.400463,128.3742,3.822 134,143.15329,206.62732,48.707855,71.6091,3.807 134,24.153439,203.72437,20.445793,40.86003,3.797 134,-5.6967044,45.15762,18.69682,46.934956,3.784 134,419.2522,228.22243,41.79123,86.55498,3.762 134,-4.832906,231.06566,18.08316,43.274307,3.75 134,573.866,-17.367073,54.123657,126.92879,3.732 134,31.934841,-6.1986732,47.35722,90.63072,3.732 134,627.47974,477.9619,18.832458,43.90619,3.724 134,-9.539917,177.85413,28.062807,71.71469,3.705 134,594.37866,-45.145153,44.732178,97.70521,3.689 134,5.6437836,468.1641,38.082275,92.71701,3.673 134,363.87985,-14.522897,32.49585,59.44681,3.669 134,4.654019,-2.8465881,41.23171,107.94104,3.656 134,540.0865,-18.293686,56.624756,123.198364,3.629 134,126.83183,196.56937,48.68483,69.17929,3.623 134,60.268574,-59.79999,56.27148,129.23279,3.583 134,384.45038,-7.39114,47.642273,85.95239,3.58 134,403.8846,-13.816385,32.122314,60.676132,3.576 134,513.4945,487.74323,21.24237,42.149048,3.576 135,318.44073,178.78287,34.579468,82.73563,24.162 135,-6.090235,-19.244553,18.553663,43.15069,7.731 135,-5.9603305,489.16248,18.81274,42.424255,7.218 135,-11.843241,479.6959,30.305508,62.287994,6.672 135,-11.413338,-31.48004,29.725279,70.033356,6.026 135,626.571,488.41702,20.625732,45.426056,5.723 135,-17.292244,-64.39126,56.15429,143.2848,5.618 135,612.9812,454.22348,39.52881,107.9321,5.456 135,610.3681,-46.94537,42.618286,98.09426,5.245 135,559.3823,201.57962,71.05969,202.64905,5.145 135,585.89484,-96.7051,74.23706,228.20218,5.111 135,536.75696,309.50092,142.81116,342.3526,5.08 135,2.0854557,491.38602,19.382221,40.29019,5.053 135,2.4805527,-18.708683,17.918694,41.243504,4.995 135,2.3033304,227.55899,18.888447,37.365326,4.924 135,-73.38467,265.8984,201.06177,461.62796,4.904 135,531.90784,-180.57623,150.19244,420.13235,4.851 135,-36.918167,-128.34036,117.60605,275.92392,4.82 135,582.97266,410.04938,72.19226,178.29669,4.812 135,-21.923248,402.19388,79.30423,175.05057,4.744 135,-4.2285056,226.50546,16.7326,38.21048,4.743 135,627.3119,-18.10781,17.411743,45.1739,4.69 135,612.8742,187.9341,37.731506,116.236435,4.589 135,493.76337,226.3862,237.57605,515.8989,4.456 135,3.5952353,237.03572,29.48834,67.768906,4.314 135,134.36092,204.45929,26.260178,37.488617,4.238 135,-5.6218863,25.87319,17.934795,41.146545,4.203 135,295.32376,181.0375,41.26999,86.84311,4.195 135,-70.647675,-189.2312,211.90353,455.1662,4.194 135,-9.704849,-7.5749435,40.819016,100.54379,4.124 135,521.8434,487.93747,21.373901,43.321075,4.091 135,314.43903,178.80197,55.76825,131.30865,4.061 135,-16.60498,153.56291,50.995758,138.6332,4.005 135,10.898802,-35.475594,57.019897,131.17896,3.975 135,513.8976,487.60663,20.865051,43.652405,3.969 135,328.5576,160.82478,53.07434,118.61806,3.965 135,-5.0896177,184.48683,16.970768,45.23967,3.939 135,618.74,490.1255,20.31543,42.70276,3.928 135,2.0406532,-41.00806,43.866463,98.72955,3.922 135,529.8603,487.25897,21.232788,43.327576,3.874 135,301.9902,146.49017,58.752045,115.287476,3.85 135,572.3628,173.55933,54.763245,144.42542,3.848 135,-5.3858232,42.10431,17.725315,42.67932,3.792 135,537.35406,2.4956913,23.8479,41.58657,3.779 135,103.62759,177.7107,65.344154,105.8598,3.776 135,537.9674,487.6573,20.98346,43.074707,3.756 135,142.2141,193.37997,49.02266,73.64618,3.746 135,9.78581,492.41754,19.792948,39.497314,3.721 135,-14.963323,50.71173,49.33815,148.2928,3.679 135,412.09924,-12.38913,57.369415,115.36268,3.678 135,586.4506,190.56137,53.550537,168.0886,3.658 135,539.3842,-10.115692,33.442993,59.430717,3.605 135,-11.31595,89.320206,30.319464,73.76317,3.563 135,-9.500931,231.44025,38.303535,96.90076,3.554 135,284.08765,-1.0414829,17.520508,30.688093,3.54 135,-10.022517,136.98166,40.18892,100.39313,3.538 135,306.00967,194.15616,43.906647,103.46161,3.534 135,268.26535,-2.3698997,17.928558,32.841892,3.533 135,38.76576,223.88483,22.55907,33.76013,3.491 135,515.4809,293.63208,43.171143,88.2659,3.491 135,525.5411,267.56146,57.00659,126.9892,3.486 135,3.2440495,-3.2008858,42.50345,110.75864,3.476 135,212.14804,253.48203,17.420746,21.946716,3.454 135,354.39935,188.46736,42.68988,95.855576,3.43 135,-5.7109666,104.40557,18.212875,44.590523,3.419 135,380.1613,-14.2181015,57.973175,116.17203,3.413 135,2.321477,242.63762,20.5251,48.005875,3.41 135,-6.1066628,72.977646,19.13836,44.544693,3.397 136,-5.9045224,-18.477009,18.484962,43.581825,7.111 136,-11.372118,-31.758606,29.760351,69.748055,7.078 136,-6.484318,489.05728,19.244167,43.70279,6.661 136,0.26054382,242.18169,23.774622,41.09761,6.567 136,-12.243166,477.7448,30.627562,64.163025,6.417 136,2.8777218,-17.776785,17.565546,42.464905,6.128 136,-17.098213,-64.27893,55.53773,143.90337,5.722 136,114.97336,241.82954,19.75795,27.195175,5.517 136,-5.5316377,243.69397,20.072006,44.704346,5.462 136,585.601,-96.05136,74.93787,229.06142,5.366 136,626.63,489.56647,20.957764,43.777832,5.324 136,613.0479,455.67752,39.51007,105.64102,5.177 136,-17.83905,437.29156,55.51655,137.03894,5.137 136,627.1781,-18.746569,17.443237,46.533348,5.1 136,610.939,-48.62847,42.13263,101.29457,5.026 136,583.4808,410.1762,71.75299,177.57172,4.936 136,489.15665,-179.51178,236.04044,427.83615,4.926 136,-73.71559,265.12122,201.59918,462.3584,4.909 136,-36.6379,-127.39218,117.038734,275.21042,4.736 136,-40.175518,368.47485,110.35504,274.28503,4.612 136,536.4262,312.57593,142.80469,339.68762,4.587 136,122.1181,248.67155,18.229385,29.123123,4.452 136,-5.7125926,224.92252,19.647137,43.85138,4.402 136,137.66333,240.71675,20.922943,26.88298,4.305 136,493.5116,226.71921,238.29395,516.81116,4.262 136,-4.2354546,206.66528,16.909927,36.635956,4.221 136,-70.89018,-189.55424,212.32588,455.7564,4.208 136,2.9884636,219.69386,30.732655,59.899673,4.206 136,18.986446,224.04749,35.574654,51.078217,4.176 136,-16.259285,192.02257,50.5891,123.08168,4.137 136,-9.356018,-7.455677,39.219753,98.43317,4.091 136,40.333843,235.7584,23.053432,33.013412,4.075 136,135.45741,189.95993,64.45003,100.30136,3.997 136,24.17234,243.83873,22.86736,29.217209,3.94 136,2.1482325,489.47745,20.016968,43.91397,3.927 136,131.52606,217.33261,34.146057,48.96341,3.872 136,-0.77231526,201.67906,26.806038,58.157578,3.753 136,163.44327,-15.698524,16.399643,37.07235,3.743 136,102.61063,194.90823,65.68962,99.60217,3.735 136,513.93475,489.85846,20.946533,41.639465,3.724 136,490.52423,-17.319263,59.264893,117.137985,3.703 136,155.01195,-16.249758,17.095673,38.30537,3.697 136,129.90182,241.56592,20.76561,27.5065,3.686 136,-6.799662,137.62659,19.680065,44.064575,3.606 136,618.64453,492.1053,20.522156,40.79431,3.603 136,505.91617,490.49915,21.13272,41.55774,3.601 136,13.410999,-23.724915,56.218174,126.93723,3.554 136,32.67296,243.68967,22.595795,28.111206,3.517 136,347.52567,139.79315,59.97467,143.26575,3.515 136,119.163284,235.75215,22.097519,28.193588,3.448 136,-9.432014,176.23918,40.36984,90.83516,3.44 136,54.71337,234.36789,25.504768,35.476562,3.432 136,187.43117,-16.263708,16.13533,38.005127,3.419 136,127.74514,220.45636,47.95542,71.23901,3.411 136,195.52446,-16.390177,16.06842,38.08049,3.41 136,384.96545,151.39502,51.622223,132.70349,3.394 136,531.7211,-134.4338,114.95178,268.72897,3.379 136,39.33034,205.72552,61.97813,94.2059,3.367 136,2.1694374,259.1869,20.322111,35.896057,3.358 136,5.4487658,467.71487,38.236294,93.88223,3.352 136,2.1491885,-41.43487,42.809975,100.40464,3.341 136,522.6436,-32.83726,59.382263,123.43802,3.334 136,612.9668,59.13858,37.075684,113.88112,3.324 136,387.23727,143.15918,17.330444,27.231201,3.32 136,409.12714,154.90796,58.17447,142.70068,3.312 136,521.76654,488.96735,21.431152,42.330383,3.309 136,-5.3273635,86.20476,17.275171,41.65094,3.28 136,202.83388,-16.945112,16.728348,38.16504,3.273 136,303.3218,-38.30795,49.164215,88.98937,3.266 136,444.14764,-8.423122,58.056763,135.00218,3.265 136,10.268621,-18.121723,17.95175,43.0309,3.26 136,379.56027,-3.7846403,18.151031,33.988987,3.257 136,546.5658,411.88336,83.93115,168.17108,3.254 136,16.625368,236.87485,23.945772,35.68109,3.253 136,109.03649,229.42715,33.803307,45.212006,3.246 136,1.8871069,212.16095,19.474087,33.761307,3.228 136,9.922274,202.74733,58.021286,94.81651,3.216 136,-1.5932298,-19.608719,27.986298,67.139366,3.215 136,271.532,-37.943123,49.015472,87.52549,3.206 136,146.6813,-15.5269375,17.681702,38.657673,3.201 137,-5.933776,-17.366608,18.048655,43.704525,7.67 137,-11.058811,-31.840317,29.590126,73.85498,7.344 137,-6.130278,489.97656,18.688223,42.224854,6.358 137,-8.625383,465.23264,37.800446,91.5679,6.334 137,613.223,453.91202,39.136353,108.45938,5.551 137,-11.749849,481.1198,29.902369,60.742615,5.546 137,585.70605,-97.86658,75.11377,231.30069,5.302 137,-16.657812,-65.29274,55.54754,145.90788,5.261 137,622.06415,-34.121635,27.09906,77.59497,5.167 137,-73.45684,264.79218,201.97324,463.85602,5.106 137,626.02893,487.50937,21.873962,45.818268,5.051 137,602.4451,-57.021908,53.988525,138.67772,5.019 137,489.04138,-179.52222,235.97437,427.75592,4.988 137,627.0222,-17.966726,17.206787,47.503494,4.974 137,583.3874,409.88055,71.63696,177.82367,4.962 137,-36.15817,-127.237274,116.34068,274.16623,4.761 137,0.8782959,203.87088,19.786425,45.56311,4.645 137,-21.53189,403.50104,79.16399,174.05505,4.633 137,-40.704,366.97375,111.08423,275.69324,4.6 137,536.52185,312.39508,142.71124,340.05383,4.543 137,2.7166934,-17.779524,17.456877,43.31036,4.417 137,493.41174,227.27347,238.36145,516.12256,4.257 137,107.367744,254.83383,33.795036,60.072876,4.2 137,2.1745086,230.15953,31.861246,68.733444,4.194 137,614.4685,-20.274635,27.869629,75.05039,4.149 137,154.04054,239.26746,35.42183,51.95984,4.075 137,159.92758,244.98074,23.17308,34.63858,4.073 137,-70.62118,-188.79927,212.15091,454.12482,4.043 137,-5.810293,1.192112,18.6081,43.98908,4.002 137,619.1739,-5.054804,19.408875,44.49675,3.983 137,2.5410104,204.21933,28.738153,62.559814,3.965 137,88.39523,259.0778,23.743347,36.95523,3.92 137,594.2775,-45.002274,45.14618,98.38516,3.871 137,153.51974,187.71202,61.255875,109.4323,3.856 137,207.69896,-39.54397,47.71855,87.98081,3.797 137,573.54816,-17.125988,55.173706,121.90764,3.79 137,618.0233,488.66644,21.540833,44.336853,3.777 137,187.00229,-15.248323,17.011215,37.623505,3.757 137,298.94983,-15.67105,16.578308,34.961594,3.705 137,1.6964221,260.41528,20.663258,43.75641,3.676 137,-9.4206505,-8.146408,39.69959,101.36058,3.668 137,369.62924,-16.31324,44.148346,79.8359,3.648 137,401.85205,-15.120369,44.019257,79.20697,3.628 137,47.22609,260.10007,25.407219,34.70282,3.589 137,330.62433,-33.712265,60.197357,121.82382,3.543 137,121.69855,207.96092,60.44345,103.98949,3.505 137,89.387596,245.21214,33.846306,56.01033,3.492 137,410.92584,-16.121063,58.892426,117.224815,3.491 137,8.869371,201.33739,19.456247,38.461136,3.49 137,186.3492,184.98196,59.676224,110.17877,3.483 137,-4.835071,153.49658,16.59195,42.204422,3.478 137,5.4767895,468.28403,37.881363,93.78519,3.471 137,175.42221,218.4452,47.064728,76.615585,3.467 137,13.729434,-24.855904,55.900204,127.02176,3.444 137,90.36002,-16.786552,17.536026,39.13069,3.44 137,29.479437,247.00462,30.262728,52.332657,3.437 137,194.88,-14.984782,17.136978,36.71337,3.418 137,314.1217,104.68513,20.084534,34.65676,3.407 137,531.6572,-136.65552,115.815796,271.44208,3.406 137,2.2869039,-42.61134,42.350834,100.79842,3.394 137,104.25488,266.21237,23.458664,38.2753,3.375 137,426.30237,-14.715348,17.2883,35.653885,3.373 137,291.25485,-14.686999,16.583618,34.209328,3.354 137,379.73102,-56.60742,57.527466,121.9878,3.346 137,2.0156283,490.7272,19.580055,42.24118,3.313 137,199.12386,209.20758,23.087082,41.369354,3.306 137,179.04817,-14.954032,17.015182,37.264706,3.299 137,176.32922,-42.089752,47.249252,92.76571,3.296 137,184.05289,255.46475,22.225586,29.948486,3.295 137,538.33813,490.27997,20.660217,40.904724,3.291 137,574.97217,348.08575,52.48047,142.20639,3.291 137,454.7118,92.848854,27.207825,54.123283,3.289 137,-5.3216505,104.61302,17.934418,43.71306,3.285 137,268.04803,-2.738493,17.785522,30.997038,3.275 137,170.67526,-16.270668,17.453766,38.479446,3.266 137,64.57287,260.62427,23.29409,32.99286,3.266 137,218.16354,-16.537188,17.74498,36.850586,3.265 137,73.46851,263.07117,21.403908,31.206573,3.259 137,21.078262,230.98468,30.56083,60.47046,3.252 137,82.64012,-15.522434,17.689758,38.74765,3.245 137,546.8947,411.7936,83.63599,168.64133,3.244 137,613.1086,-2.6826324,37.41156,113.37037,3.233 137,298.5871,-33.442455,60.29016,124.99753,3.206 137,88.48121,217.00375,61.45066,100.44833,3.202 137,239.62344,-38.837276,48.271088,87.72536,3.201 137,426.7004,-1.5361252,19.495392,34.606285,3.199 137,-1.5324616,-20.316748,28.482594,75.079704,3.193 137,597.36456,462.90146,38.60083,97.579865,3.19 137,194.3207,264.88754,20.079773,27.028687,3.189 137,555.5069,-2.3118296,18.519958,33.509922,3.188 137,-4.1563015,192.02345,16.311243,37.485184,3.168 137,162.79315,-15.647163,17.531586,37.686783,3.162 137,457.00027,-33.4789,62.170197,130.66203,3.155 137,-15.832565,188.56775,49.33198,132.50977,3.142 138,-5.1365213,-16.75982,17.35234,42.147575,6.666 138,37.22383,248.88623,35.23951,78.958496,6.3 138,-6.3896866,489.70282,18.959599,43.20581,6.275 138,-8.709017,464.89075,37.608955,91.588806,6.106 138,-10.882454,-31.840023,29.405241,71.31046,5.849 138,627.56616,-17.055672,16.720703,44.170555,5.797 138,585.526,-94.41447,74.683716,226.54651,5.566 138,621.4043,477.17334,29.194397,66.34442,5.331 138,-17.439331,-63.596886,56.05539,143.06808,5.17 138,623.2437,-33.970985,26.30066,73.65745,5.115 138,489.6975,-180.37883,235.09546,428.2138,5.079 138,583.3451,410.91418,71.727844,176.74487,5.023 138,-72.81065,264.9688,201.46973,463.5327,5.002 138,-35.511913,-128.26028,116.252304,274.52087,5.001 138,602.5622,-56.368553,53.382324,135.72073,4.869 138,208.3288,2.6500378,24.307037,43.496117,4.845 138,-40.572506,365.09845,111.146194,276.7741,4.657 138,-21.668415,402.86664,79.386215,174.24646,4.65 138,58.083424,251.45987,35.92584,78.10187,4.551 138,536.58167,311.98206,142.53265,340.5536,4.52 138,108.98505,-18.935793,30.737518,66.42986,4.499 138,32.307438,239.58652,52.623974,118.57544,4.344 138,3.559357,-15.00098,16.320925,39.21996,4.325 138,-71.521996,-189.80725,212.47076,455.8516,4.287 138,493.50043,227.22104,238.1903,516.7556,4.217 138,202.19815,-18.099285,58.979828,112.84177,4.19 138,539.60156,-18.249283,58.47632,121.2033,4.161 138,594.2435,-43.71679,44.833313,95.879,4.099 138,195.40417,-8.8756485,33.31407,56.99173,4.065 138,619.5261,-16.634016,16.90503,39.838123,4.053 138,572.7351,-17.553005,55.534668,123.75865,3.997 138,14.129529,-17.617699,54.778614,120.19368,3.996 138,5.6751847,236.56577,30.844675,66.8049,3.985 138,42.0915,0.25998306,19.267353,33.91646,3.975 138,117.81205,-33.94168,28.92257,74.11774,3.944 138,457.93268,-12.590075,32.68747,60.615013,3.936 138,393.81238,-15.053131,59.34326,113.033,3.83 138,617.902,488.45316,21.487,44.188324,3.803 138,445.5235,-1.8899059,32.073486,58.39147,3.787 138,589.0621,-16.278646,30.618164,59.340363,3.773 138,180.94496,-13.1829815,31.084839,61.197365,3.771 138,2.2881956,490.09424,19.614872,42.776733,3.754 138,186.47852,0.6305275,19.793121,34.361176,3.74 138,170.60962,-16.183979,17.01236,38.07247,3.712 138,-5.72254,57.6628,18.17846,41.78642,3.702 138,-4.231905,158.31395,16.348562,38.777374,3.67 138,122.638306,-19.711304,17.745407,44.141685,3.659 138,234.33469,-15.738689,59.867615,110.44217,3.658 138,114.5016,-18.302395,18.476212,42.516884,3.657 138,172.04552,-20.955555,58.57895,120.16199,3.635 138,426.32196,-16.638008,59.62671,112.65489,3.6 138,627.5968,479.98166,18.903381,42.42514,3.589 138,223.91771,-6.2476196,47.332138,86.07897,3.571 138,178.89957,-13.259672,16.963333,36.296265,3.56 138,138.08897,-38.134735,58.7928,126.787895,3.557 138,82.29968,218.6377,31.234245,62.23929,3.556 138,112.68246,208.8113,45.0111,77.31294,3.542 138,107.12116,-40.735107,58.17652,128.84065,3.533 138,242.63583,200.0042,21.447083,42.13452,3.524 138,477.58392,-34.98588,29.463165,68.7653,3.522 138,531.5722,-133.3165,114.64514,266.83804,3.517 138,186.44218,-12.709099,17.150421,36.592854,3.505 138,578.8307,-15.220693,17.041504,36.29434,3.504 138,106.511246,-19.493622,18.716064,43.922592,3.494 138,528.9483,-8.468079,46.11444,91.83651,3.491 138,436.17474,-15.174196,32.913452,62.96026,3.489 138,612.8276,438.85736,39.91101,95.98987,3.489 138,13.893614,246.59598,55.215637,130.38824,3.481 138,-1.4127314,250.36807,29.081554,76.101654,3.454 138,490.28186,-34.9113,60.203003,122.69395,3.453 138,201.7742,1.6477814,20.980957,34.118523,3.446 138,4.035887,285.61017,33.307022,65.62732,3.439 138,58.697174,0.6651268,18.403587,33.538788,3.432 138,66.83342,-12.937056,16.888054,36.793266,3.431 138,200.67914,243.70256,21.400925,32.638565,3.422 138,129.27731,-11.618446,45.985733,93.74944,3.381 138,176.21773,-40.065414,47.359573,92.20219,3.369 138,208.12996,-38.600643,47.391357,90.534454,3.359 138,-8.603828,153.09361,38.18251,100.97963,3.354 138,42.639946,-13.517543,16.781181,37.153393,3.329 138,27.876549,-13.793877,32.910843,65.15347,3.329 138,363.2354,-14.226051,58.138214,113.99058,3.324 138,572.5472,-15.302298,30.599243,60.647064,3.321 138,546.51135,413.4322,83.94287,166.6623,3.31 138,266.21344,-16.10242,60.352478,115.40654,3.307 139,-1.2835145,230.68706,30.247032,65.947464,7.632 139,-6.350639,489.13358,18.790491,43.486786,6.528 139,-5.2315083,-16.50258,17.116302,41.599052,6.501 139,-12.209621,477.1197,29.864023,64.48944,5.996 139,-11.080416,-31.668606,29.465971,72.83041,5.669 139,585.59326,-95.46994,74.714905,227.77055,5.49 139,627.30707,-17.960808,17.139465,45.29315,5.247 139,-73.48868,264.1079,201.98613,464.38287,5.231 139,2.576536,227.8319,19.023878,33.873154,5.217 139,612.9272,453.6041,39.823914,108.45291,5.193 139,489.82703,-180.52495,235.34747,429.33044,5.184 139,610.7262,-48.00225,42.13507,100.34674,4.983 139,583.3721,409.73956,71.85571,177.93689,4.941 139,625.9354,487.01248,21.83136,46.64743,4.937 139,-17.091774,-64.08863,55.81359,145.30118,4.922 139,29.670809,217.90625,55.377014,97.74524,4.878 139,-21.832352,402.19397,79.1589,174.74023,4.739 139,17.186901,206.30884,43.745506,77.91998,4.608 139,536.4257,312.1123,142.7063,340.07483,4.519 139,-37.415325,-126.25252,117.26936,275.63556,4.379 139,235.03273,-29.329285,60.158157,120.72007,4.373 139,225.41258,-4.4950256,46.71727,87.88178,4.363 139,49.38916,219.68095,44.420975,72.10957,4.312 139,7.5507164,233.76059,37.55062,64.923706,4.252 139,493.53156,226.99496,238.38971,516.3552,4.205 139,202.86566,-32.056915,59.779724,122.7533,4.17 139,34.05906,226.70079,36.6744,55.1024,4.137 139,13.694031,217.43082,68.33385,174.47098,4.12 139,3.212067,215.7228,31.519665,56.090805,4.02 139,-9.03709,-5.951515,38.907608,100.03353,4.019 139,-4.461581,222.64536,17.022896,36.39499,4.013 139,-70.53794,-188.1505,211.39978,452.9701,3.991 139,3.4053154,-13.896017,16.145382,38.383385,3.928 139,256.29324,-6.930744,47.34665,89.40988,3.912 139,-4.503892,205.79108,16.148323,38.165253,3.858 139,617.49335,488.1549,22.300964,45.203064,3.839 139,154.37457,201.9119,59.07083,110.84808,3.835 139,-5.106532,3.0195694,17.70716,41.584007,3.813 139,249.25558,-0.6210108,21.142395,32.627167,3.79 139,2.2135735,489.85114,19.174585,43.052673,3.775 139,-15.81522,120.82286,51.216976,143.50612,3.746 139,58.06275,214.96707,56.96968,95.80527,3.742 139,168.49425,205.63689,35.013535,55.76967,3.694 139,24.439491,237.11035,35.535378,56.94403,3.668 139,-9.368832,190.78249,62.85599,167.30205,3.662 139,97.80229,234.00279,43.477295,72.76192,3.627 139,303.25082,186.82968,28.04898,63.879868,3.625 139,26.892967,-13.757424,16.893547,39.508446,3.562 139,-11.053789,216.30518,29.969362,65.6134,3.533 139,194.07654,-7.022476,45.78073,88.090775,3.506 139,266.62564,-30.95744,60.04019,119.486725,3.492 139,177.00041,232.99626,45.09453,79.33028,3.491 139,531.49304,-133.51392,114.99768,267.25247,3.471 139,5.1044073,-5.825302,28.936726,68.94501,3.467 139,-5.088109,53.630943,17.107649,44.849754,3.441 139,202.96387,-16.531721,17.565628,39.112297,3.431 139,2.9410493,6.0729485,19.33285,41.79316,3.423 139,40.727684,240.99564,36.795525,52.91754,3.422 139,-9.857502,102.25224,39.43518,104.486374,3.418 139,507.35486,4.0073185,19.083862,35.32586,3.411 139,303.60052,-38.089607,48.252808,89.27049,3.41 139,10.25095,222.45418,55.329792,106.0927,3.359 139,172.14597,-22.51509,58.096985,119.931885,3.347 139,138.3446,-17.404356,17.323303,39.216465,3.345 139,457.37637,-31.94253,61.90866,117.02774,3.332 139,249.68155,-14.529603,18.167633,35.75629,3.318 139,-4.455817,71.91475,16.292683,40.215088,3.293 139,5.7538233,465.36014,37.68814,97.92642,3.291 140,-0.27630925,232.89955,27.326477,64.27464,6.544 140,-6.1341343,489.48874,18.682896,43.30362,6.492 140,-8.411492,465.70346,37.55584,91.42172,6.459 140,-5.083291,-16.295618,17.01477,41.14013,5.83 140,78.764656,243.31482,26.94838,38.73517,5.801 140,613.24774,455.14734,39.468994,106.59485,5.773 140,626.51654,487.61163,21.236755,45.960815,5.561 140,-11.480988,-32.32927,30.458914,72.41906,5.483 140,2.934122,236.51686,38.949806,80.04271,5.429 140,129.28903,234.39224,44.51645,70.911865,5.404 140,-73.02781,265.536,201.9202,463.7019,5.254 140,627.4448,-16.627426,16.925354,44.03184,5.239 140,585.53394,-97.161865,75.131714,229.15802,5.228 140,489.6607,-179.4004,235.62616,427.4119,4.987 140,583.36334,410.86203,71.80707,177.1442,4.984 140,65.31201,242.44102,36.09568,56.936417,4.978 140,623.316,-33.561073,26.240295,73.82005,4.942 140,229.18211,212.06955,30.250687,51.028107,4.915 140,33.06701,239.63812,44.851784,67.85559,4.912 140,159.61041,247.72337,25.476685,35.01735,4.831 140,-16.509975,-63.102257,55.474815,143.94116,4.808 140,44.16038,228.53291,32.21336,49.700974,4.79 140,-21.38608,404.62372,79.16801,173.52472,4.715 140,-40.677223,367.4931,111.19277,275.99762,4.666 140,-0.21110654,256.57227,26.921665,71.55255,4.663 140,-11.328429,242.60097,30.22245,68.93089,4.603 140,603.11975,-56.574318,53.173706,138.14702,4.559 140,-4.422228,187.65489,16.519331,43.84503,4.502 140,96.52893,235.9573,45.08914,70.755615,4.465 140,172.37576,243.32047,31.789108,48.45288,4.455 140,536.54254,312.61304,142.60205,339.7823,4.437 140,94.30205,242.40056,27.389275,38.639297,4.431 140,19.479282,255.46573,31.657047,70.84793,4.362 140,56.837334,235.03745,36.03933,48.044556,4.319 140,-37.38756,-126.89842,117.09563,277.58228,4.318 140,80.47737,225.90791,46.22425,65.55443,4.272 140,143.03304,246.59381,25.763824,35.17975,4.237 140,-5.8391876,254.18909,19.165531,45.181396,4.226 140,138.356,214.39697,59.601273,95.7608,4.146 140,113.77071,241.16092,44.79441,80.433716,4.097 140,1.9736731,216.49588,22.547373,51.699493,4.089 140,493.46136,227.2023,238.28546,516.14355,4.077 140,48.693283,242.23366,44.4933,78.566574,4.044 140,364.35425,0.26568127,16.339355,31.339325,4.027 140,58.999367,221.96898,57.858086,91.69432,4.005 140,322.95364,-15.233263,16.989319,35.540462,3.998 140,3.5110326,-13.613504,15.859627,38.025665,3.946 140,151.28369,241.24509,24.594208,34.96692,3.936 140,85.94433,246.55972,28.54612,42.897217,3.93 140,331.95428,-2.5904322,17.992065,31.012619,3.87 140,618.32196,489.69888,20.911804,42.89743,3.869 140,13.765404,223.9352,66.61387,164.77776,3.864 140,-5.3211837,155.55826,17.81842,41.877014,3.852 140,594.3976,-45.452774,44.870483,99.00548,3.838 140,-16.70945,122.64691,52.149315,141.76028,3.837 140,10.294598,214.34868,58.34917,95.63698,3.825 140,50.418377,271.94086,32.27608,60.898407,3.823 140,476.25607,-1.813282,17.36023,32.529846,3.809 140,-8.07317,215.88632,60.335648,171.62616,3.79 140,-14.5521345,195.84738,50.66919,124.3909,3.77 140,-69.82472,-185.57185,210.21982,449.75568,3.767 140,492.23322,-2.0928574,17.15503,32.295235,3.755 140,-6.790028,120.2906,19.484774,42.69081,3.751 140,-11.238096,152.70023,28.92818,67.256546,3.729 140,-9.567065,180.72733,26.547272,75.74411,3.7 140,298.6942,-15.137347,17.484802,36.757652,3.7 140,176.86531,234.88597,45.248474,73.70256,3.699 140,396.83322,2.5304403,15.743408,25.673378,3.663 140,19.282001,228.88416,32.404675,51.86902,3.641 140,314.93558,-3.1621704,19.190521,33.25036,3.635 140,538.801,0.23156166,19.779663,32.70788,3.627 141,88.54718,242.93753,38.059875,66.20087,8.454 141,-5.3091326,-18.517368,17.273054,43.34406,6.603 141,-4.620449,230.68224,19.016396,48.388016,6.042 141,5.7242465,226.95053,30.32911,69.46182,6.018 141,-11.172136,-30.73859,29.117237,71.83319,5.897 141,48.494408,226.20422,45.866325,70.62463,5.69 141,-8.780178,466.02106,37.735672,90.820984,5.663 141,-9.260282,231.01753,28.641277,73.05299,5.654 141,612.68243,454.84305,39.917297,107.46719,5.624 141,142.51949,233.8255,49.408737,78.59137,5.588 141,-6.2478056,489.61926,18.58325,42.451904,5.551 141,102.01898,255.81834,27.477615,47.04091,5.451 141,58.47908,255.27174,34.55613,56.3192,5.389 141,72.55205,254.20172,36.630905,60.67688,5.377 141,2.364614,242.81775,40.739693,91.25452,5.363 141,-73.3759,265.1183,201.96815,463.4154,5.335 141,-17.246778,-65.317566,55.120293,145.4892,5.333 141,16.262884,245.84224,44.541,78.31584,5.31 141,121.60577,234.53471,36.758507,62.871964,5.293 141,626.4648,488.26016,21.194397,46.43222,5.288 141,623.3698,-33.9903,25.94757,75.058426,5.283 141,627.3794,-18.351929,17.149963,46.281498,5.218 141,585.5413,-99.191895,75.255554,234.5317,5.18 141,104.21249,213.12878,63.463753,89.44769,5.133 141,174.95242,233.15964,48.583664,77.49747,5.047 141,157.99294,229.47319,49.15889,67.38493,4.872 141,302.07858,195.54456,29.945953,52.259094,4.872 141,489.5549,-179.32695,235.54654,427.00354,4.854 141,583.02014,410.9297,71.94409,177.44897,4.849 141,-21.582489,403.58392,79.47566,174.30908,4.819 141,95.47143,225.6099,48.641197,65.95261,4.813 141,13.361158,212.87569,28.061033,67.27449,4.8 141,14.203484,224.3519,67.4297,163.18695,4.786 141,222.76682,230.17093,29.084381,52.19049,4.702 141,-15.156538,192.24185,49.65953,132.11115,4.642 141,1.717906,127.348885,22.69654,45.837578,4.598 141,536.8302,312.51492,142.26807,338.88364,4.584 141,-0.48051476,216.09679,26.717121,69.795,4.572 141,602.9435,-56.98535,53.68701,139.62299,4.519 141,318.49402,201.10416,23.164612,45.188004,4.417 141,113.729485,249.0551,35.47175,63.602646,4.402 141,0.8319533,153.949,28.684423,87.049545,4.392 141,20.774231,255.39563,28.634418,48.889587,4.371 141,87.22014,246.31853,25.966507,41.586502,4.371 141,232.7699,251.28818,24.524628,36.369873,4.367 141,35.905743,238.16911,44.20377,64.28102,4.341 141,72.407974,216.09236,63.952957,91.337875,4.341 141,185.74664,213.18079,58.786606,95.9281,4.266 141,493.52524,227.84045,238.15067,514.8894,4.246 141,-9.465054,198.5664,28.861216,73.42407,4.23 141,128.52925,240.8457,46.52028,87.59479,4.163 141,3.2598329,-16.893911,16.257303,40.092968,4.106 141,2.5396812,75.90381,25.902058,75.831726,4.092 141,89.66429,225.85439,35.729355,52.475357,4.052 141,44.854538,240.67865,55.26655,93.160645,4.05 142,-5.745578,-17.418785,17.837631,41.917435,7.129 142,-6.1599655,489.28976,18.775215,43.056488,6.525 142,-11.496132,-31.63221,29.377552,72.28266,6.501 142,160.82233,209.26239,36.0365,69.14932,6.136 142,-12.156757,478.83572,30.580109,62.796295,6.065 142,104.34119,223.85207,36.949112,60.75905,5.941 142,122.59785,194.26471,61.526756,93.41974,5.937 142,42.729664,226.58963,34.133297,57.03241,5.865 142,312.4831,194.66258,21.295319,44.49376,5.854 142,612.86615,454.2611,39.975952,107.07703,5.551 142,174.4779,210.09973,49.335037,67.83942,5.482 142,-3.6529305,218.60931,17.174997,40.964935,5.456 142,152.44179,193.8294,61.96335,90.93317,5.376 142,627.45514,-17.665659,17.091736,45.44802,5.319 142,377.81735,165.01376,35.01242,64.162,5.275 142,-16.423815,194.58917,51.624207,121.79086,5.229 142,111.651566,217.58884,48.930176,75.232574,5.169 142,18.106865,206.22603,42.787243,74.42351,5.139 142,-16.605757,-64.27529,55.398247,144.42145,5.118 142,-18.404877,436.90164,56.234856,138.92447,5.092 142,-74.05724,265.32123,202.27414,463.11945,5.085 142,88.102646,192.28978,63.17775,96.83598,5.06 142,489.5798,-180.33847,235.89322,427.76306,5.024 142,585.7765,-98.69955,75.02942,232.452,4.926 142,191.57545,214.48074,46.950104,74.05719,4.913 142,626.42926,488.47906,21.329224,45.758423,4.901 142,74.863884,207.02998,69.96444,149.43633,4.886 142,56.495308,226.1748,35.837242,56.808105,4.877 142,148.80373,258.25558,32.05565,66.17111,4.854 142,623.0701,-33.60415,26.58319,74.54413,4.841 142,108.02799,204.76959,72.28237,154.70044,4.751 142,12.825268,217.00237,69.83794,171.65529,4.717 142,79.147316,222.73001,49.307365,69.240234,4.691 142,-40.483265,367.40912,110.90288,274.10028,4.675 142,582.9633,410.24265,72.12213,177.92514,4.667 142,355.4015,171.83447,29.265228,58.243286,4.659 142,536.65625,311.91656,142.59436,340.35577,4.618 142,1.7350769,235.21375,40.509853,94.79077,4.615 142,-10.7296295,221.76599,28.269852,64.35687,4.604 142,138.90562,202.78079,70.587265,153.13574,4.552 142,603.3078,-56.828186,53.263367,136.24893,4.545 142,42.717056,207.12958,70.82409,145.52246,4.539 142,1.0218829,215.20822,19.305725,39.89717,4.523 142,63.15091,229.397,46.50879,72.81384,4.488 142,-2.4205458,243.21542,29.303566,73.86316,4.476 142,-37.744213,-129.37035,117.37636,280.33948,4.434 142,182.26862,216.81477,26.44194,43.411972,4.413 142,258.28006,211.72015,21.278717,35.811096,4.383 142,55.357964,192.43466,62.870377,98.20126,4.317 142,3.1250281,-16.06596,16.469261,40.091423,4.298 142,493.7123,226.94135,238.03903,515.48035,4.274 142,-15.263805,120.48484,50.149097,143.70822,4.218 142,2.3817039,202.93942,41.046383,81.13855,4.216 142,143.71289,193.37804,49.08229,69.548355,4.207 142,166.73676,206.48534,26.66655,40.144516,4.043 142,118.29764,234.85045,27.595474,42.793137,4.026 142,174.46579,210.67067,26.84198,43.214035,4.004 142,135.00536,205.72656,39.250473,59.73233,4.002 142,443.61618,-0.7248268,19.030945,33.658936,4.0 142,2.2942758,490.51205,19.172562,42.32437,3.963 142,-70.12109,-186.74739,211.70587,452.5905,3.938 142,81.96359,193.65074,20.602417,46.46048,3.934 142,176.11746,237.94006,37.84366,51.738037,3.933 142,16.87444,236.64427,43.845043,85.61076,3.929 143,-5.843072,-17.9,17.742735,43.562187,8.269 143,-6.648588,488.69125,19.670149,43.578156,8.262 143,-11.157581,-32.064095,29.291958,74.398766,7.243 143,3.20611,215.29037,39.54595,81.676544,6.122 143,-8.979633,464.43454,38.298912,90.73825,6.105 143,48.54818,232.28934,37.12149,57.665344,5.712 143,623.4239,-33.440693,25.928589,74.55849,5.638 143,17.228645,219.75348,45.543377,72.79187,5.62 143,613.36707,454.86523,39.392944,107.077515,5.617 143,77.83565,178.72096,28.316483,67.41931,5.575 143,64.907166,224.51129,34.65632,59.7778,5.569 143,627.3174,-18.116186,17.061523,46.52675,5.53 143,-0.8851862,207.31537,27.508034,66.781555,5.526 143,-18.03991,437.48242,56.147285,138.04535,5.493 143,160.10185,203.19153,38.926224,59.767395,5.331 143,626.4729,488.098,21.33435,45.359467,5.266 143,-11.055328,234.98679,29.051495,67.92221,5.218 143,406.2552,161.65948,27.16394,64.2491,5.19 143,-14.257248,192.96797,49.77556,125.07182,5.189 143,-17.122356,-64.55651,56.039093,145.02496,5.15 143,-73.4911,265.41296,201.97537,462.90942,5.09 143,585.8857,-99.58744,75.35162,232.83914,4.936 143,583.3628,409.93353,71.858765,178.06696,4.919 143,185.64072,203.09354,37.1196,61.795258,4.839 143,-4.8804674,102.835815,18.989475,47.52414,4.819 143,488.53296,-178.50041,236.68921,425.72482,4.77 143,375.76306,101.45625,23.830383,40.45288,4.733 143,145.69366,208.59174,44.457092,83.633606,4.731 143,153.73788,189.45447,59.723236,92.84308,4.708 143,-71.321205,-189.19524,213.02731,456.62567,4.695 143,-40.10252,368.33606,110.50696,273.81763,4.653 143,602.92737,-57.43296,53.694397,134.67058,4.644 143,32.40288,205.32382,45.021618,76.50021,4.628 143,185.71497,271.1949,35.104065,49.459106,4.624 143,-36.575005,-130.09354,116.91096,279.69254,4.61 143,-5.896117,81.42522,18.493023,45.08557,4.592 143,11.337962,-36.0052,57.27795,133.83878,4.587 143,58.59008,180.26071,59.08493,104.61572,4.506 143,289.21222,206.97296,22.402344,34.275192,4.495 143,-6.1855197,236.10452,19.667282,45.118042,4.484 143,-0.8322239,238.62187,29.72465,69.25456,4.476 143,536.7672,312.94574,142.14563,339.97473,4.454 143,90.850334,179.90334,59.499687,98.89293,4.422 143,92.07753,180.44775,28.780022,67.24985,4.397 143,185.85884,187.9541,59.040573,93.377686,4.377 143,292.7255,209.17256,31.090302,59.01631,4.293 143,112.63843,221.41995,37.510376,64.76108,4.264 143,41.197212,200.52206,61.326912,101.16049,4.233 143,2.8968656,-16.492012,16.74906,41.13883,4.185 143,-4.917178,216.79576,18.837746,43.985306,4.182 143,-6.8939724,260.35507,19.991837,44.4534,4.158 143,594.2368,-46.71251,44.620544,95.92629,4.147 143,-9.2860775,-8.190449,40.526066,100.412704,4.11 143,-0.57064056,119.11246,30.237177,90.28183,4.081 143,493.48233,227.14807,238.21024,516.4646,4.068 143,-15.920748,118.30697,50.83468,145.56165,4.022 143,18.58768,245.15846,33.861717,67.20662,4.01 143,106.54141,-44.548412,59.33258,136.19664,3.971 143,201.17505,200.14072,35.884033,56.167664,3.958 143,88.40109,255.27707,38.657967,59.72119,3.945 143,-9.098052,191.00775,29.924355,67.08389,3.94 143,181.798,205.61063,28.784729,42.620407,3.921 143,1.5240812,488.3462,21.35199,45.262512,3.919 144,94.1676,149.22894,28.66793,68.708435,8.712 144,-6.081343,-17.980362,18.53225,44.97804,7.859 144,16.085014,213.90002,44.50155,75.6543,7.706 144,-10.855949,-31.799335,29.770332,75.69619,7.557 144,3.6635947,211.56822,40.00034,84.33577,6.974 144,-1.3740981,202.7457,27.341337,74.63187,6.003 144,218.70282,169.42603,32.93631,57.760895,5.963 144,-12.16824,476.7664,30.719925,64.75308,5.778 144,33.095966,220.08105,44.205967,85.58624,5.668 144,-6.3892555,488.79205,19.173267,44.53601,5.576 144,12.323933,-19.031876,57.203304,120.13395,5.533 144,47.02102,181.50583,47.727135,77.25229,5.476 144,-0.6493187,-17.184048,28.489532,72.73615,5.464 144,231.28036,176.21748,24.521545,42.600143,5.375 144,25.951057,189.07742,59.925194,98.242096,5.359 144,612.9194,454.05124,39.91382,108.09061,5.344 144,203.35785,167.68266,34.61754,55.41617,5.293 144,626.0714,487.32977,21.760132,46.700195,5.254 144,168.27118,171.63075,60.970474,132.23283,5.241 144,177.8285,169.5954,36.74478,59.379135,5.179 144,-73.82115,265.81317,202.18306,461.79437,5.148 144,-17.201809,-63.581078,55.708275,142.11452,5.004 144,627.30585,-17.95615,17.082947,46.07341,4.947 144,9.699419,215.41684,60.931084,130.06125,4.943 144,2.2282739,-16.5297,18.507437,43.735367,4.889 144,583.1425,410.55206,71.9845,177.54816,4.842 144,201.74156,139.11237,61.03276,95.68179,4.791 144,-21.74751,402.54922,79.580734,175.20773,4.763 144,32.50426,-6.68816,47.687466,88.59453,4.758 144,622.9243,-34.59612,26.621338,76.23089,4.678 144,-15.205531,162.96751,51.503426,128.83376,4.666 144,585.33136,-101.501976,76.8064,236.10663,4.611 144,48.457756,217.1707,37.36155,54.28389,4.576 144,187.14566,153.05319,58.02826,98.227905,4.575 144,-36.992535,-129.7062,116.97798,284.18607,4.552 144,79.11484,153.67885,29.505424,75.46579,4.551 144,536.90564,312.205,142.08057,340.4885,4.539 144,-5.065183,212.80574,18.795946,50.509872,4.518 144,43.97174,-17.252129,32.06658,67.56268,4.512 144,602.728,-56.529034,53.35205,139.47563,4.466 144,487.78336,-176.49553,237.29385,422.87003,4.461 144,-9.549871,225.07858,39.33268,98.381165,4.429 144,121.24986,148.36664,57.314163,101.780334,4.423 144,-71.13521,-188.79372,213.58202,456.3576,4.417 144,160.0051,181.82397,47.861343,86.220245,4.415 144,64.54673,175.38342,46.749817,76.14842,4.328 144,49.1543,221.03458,44.37965,88.70288,4.292 144,43.86685,-20.291512,57.587387,116.11583,4.245 144,-10.729498,46.04188,30.921062,68.72267,4.23 144,-5.640789,-2.4735527,19.790676,49.811752,4.191 144,235.77939,161.84654,31.55661,54.637756,4.183 144,344.3256,183.50081,30.760468,65.15781,4.175 144,493.73322,226.98071,238.06561,516.81433,4.141 145,22.749968,209.40012,27.657679,60.8461,8.535 145,-5.688439,-16.810097,17.837275,42.16135,7.121 145,82.107155,179.5007,32.23832,83.745026,6.791 145,-10.985079,-32.12514,29.49276,73.01002,6.653 145,-6.609679,489.0361,19.595009,42.95163,6.622 145,101.738655,178.81116,30.825356,73.86633,6.474 145,51.72589,193.82747,41.560204,82.56941,6.174 145,17.656824,221.44281,41.68226,80.239624,6.132 145,-17.375391,-64.26877,56.500366,143.58505,6.018 145,-12.333042,479.31378,30.724487,60.914917,5.921 145,242.4318,203.58572,32.391693,67.14337,5.738 145,477.43774,146.9524,27.055542,61.50966,5.617 145,-18.060612,437.57413,55.747078,137.82584,5.613 145,-1.66991,220.32095,25.600767,75.1167,5.543 145,612.9884,453.90436,39.910217,108.57782,5.437 145,509.74048,216.33116,28.7995,68.79939,5.42 145,-15.216,187.09198,49.30026,134.01929,5.306 145,77.46272,175.90964,57.078323,107.22165,5.262 145,34.758217,197.25475,42.4936,81.42476,5.262 145,627.34863,-18.466879,17.127014,46.830017,5.104 145,-73.85673,266.30035,202.44757,461.9035,5.072 145,622.99005,-33.95659,26.763916,75.71848,5.035 145,5.1529145,207.60474,39.116817,87.220276,5.034 145,11.485416,-35.04822,57.64179,125.5847,4.985 145,583.04675,410.3385,71.91614,177.72986,4.974 145,61.005116,193.14883,56.123547,104.13327,4.972 145,-9.347942,207.0023,28.2174,68.67842,4.97 145,573.31396,117.44803,33.371582,81.214935,4.877 145,585.4028,-104.02957,76.56079,243.25401,4.867 145,626.36816,487.68304,21.513916,46.40692,4.863 145,-4.456265,235.7317,18.36788,48.868973,4.836 145,58.33649,223.85023,31.961094,67.13365,4.822 145,-71.51128,-188.9059,213.57759,456.53644,4.782 145,12.512705,171.51244,54.966423,116.37608,4.73 145,536.7419,312.11346,142.71375,339.48456,4.631 145,-40.53485,366.64713,111.0704,274.9752,4.628 145,602.5128,-56.743053,54.04474,141.70375,4.603 145,-36.979134,-129.48033,116.564995,281.95145,4.596 145,3.2807422,3.0086899,30.330475,69.55476,4.593 145,488.42126,-178.80191,237.82251,423.08466,4.555 145,105.16579,174.85141,58.48958,108.901306,4.551 145,42.647663,-38.61824,58.879246,123.68314,4.525 145,389.97504,203.88885,31.631104,76.264496,4.497 145,43.796024,205.60199,57.305805,106.9021,4.485 145,451.553,159.0924,41.699677,93.120636,4.435 145,10.962156,29.013893,32.805115,69.66815,4.434 145,484.68277,136.4133,38.567474,95.52716,4.428 145,-15.129683,123.8952,50.093567,139.67389,4.395 145,-5.572288,209.19785,18.818264,46.265533,4.369 145,-0.5650675,26.610504,25.994682,73.84725,4.358 145,468.1073,144.40526,39.370117,96.100815,4.34 145,493.53033,227.1257,238.11139,515.9856,4.316 145,265.22345,215.81526,22.027863,38.024857,4.287 145,3.128364,265.83563,40.040245,96.51526,4.273 145,3.0734587,-15.467949,16.67109,39.671753,4.246 145,217.73103,202.9031,35.66948,64.767975,4.243 145,547.47034,125.568405,40.710205,94.53761,4.167 145,225.02634,205.22824,44.076355,92.50491,4.167 145,200.6748,204.4685,36.93866,56.745728,4.157 145,231.59622,172.73772,61.915924,96.74983,4.155 145,576.95764,79.80174,47.772095,137.4943,4.137 146,30.590054,155.73358,43.968197,108.100464,10.152 146,11.072521,178.6426,61.376705,122.457565,8.38 146,84.92694,183.8368,29.521881,78.63872,7.643 146,-6.4142227,489.24448,19.08596,44.122833,6.939 146,-5.5412984,-17.596209,17.816847,43.16636,6.82 146,-8.9739,464.43182,37.567043,93.01898,5.871 146,-10.7964525,-32.384724,29.315868,73.47875,5.775 146,47.363873,161.21387,34.175037,80.48775,5.664 146,62.535378,165.05304,52.49861,116.25229,5.482 146,-0.86001277,201.02629,28.845734,66.943985,5.473 146,-0.51864386,256.45853,27.092463,69.905914,5.335 146,39.75142,169.35547,58.587265,123.262024,5.316 146,427.91687,181.91716,32.166443,72.28078,5.27 146,627.4132,-18.124172,17.178162,46.510757,5.242 146,90.440445,206.92429,32.39218,72.625,5.221 146,611.4377,-48.72468,41.513,104.7754,5.212 146,93.189964,156.44066,30.339714,81.42711,5.152 146,612.74963,453.56833,40.000977,108.44968,5.135 146,614.61255,85.94347,25.503906,80.46205,5.074 146,-73.059425,267.07642,201.2958,460.5326,5.02 146,-17.28087,-63.63101,56.276924,142.87738,4.941 146,626.1427,487.5235,21.478638,46.078674,4.839 146,20.894892,166.63379,34.86763,89.9353,4.79 146,-17.819807,434.69983,55.64234,141.17462,4.775 146,583.22125,409.77045,71.65851,178.35968,4.771 146,585.0817,-102.71179,76.95734,239.34674,4.723 146,193.65999,200.63335,36.064316,60.804947,4.675 146,537.0111,311.85883,142.53857,340.52325,4.632 146,-71.85423,-189.21356,213.67688,457.13943,4.61 146,2.4043536,199.63434,43.34963,104.472626,4.584 146,-40.45759,367.36646,110.69961,275.7417,4.576 146,-5.4262285,238.32942,18.959095,45.73024,4.572 146,-15.488915,129.15923,50.902958,138.28212,4.538 146,2.1960664,-16.331575,17.605658,41.26752,4.514 146,256.497,201.19507,34.543335,62.88565,4.506 146,488.21323,-179.05966,237.65952,423.16507,4.492 146,77.699776,143.53436,52.403465,117.07544,4.446 146,11.526551,245.82619,32.75087,66.60338,4.365 146,-37.89448,-128.85373,117.60989,285.0568,4.299 146,468.1,157.4414,40.703156,85.9955,4.283 146,484.85358,158.3244,40.772278,82.74373,4.279 146,220.40372,-22.92442,56.254547,127.97499,4.269 146,598.67914,100.98965,32.58728,77.98975,4.257 146,-5.800171,169.47028,18.570663,43.02501,4.246 146,234.6662,219.48634,35.144653,69.89,4.232 146,451.55408,158.93216,43.054565,86.92337,4.226 146,493.7226,228.16055,237.89056,515.18604,4.223 146,-9.698746,-7.6776886,40.109615,99.65431,4.222 146,-11.687738,217.27948,31.435358,68.7937,4.19 146,209.87225,206.6882,43.724167,86.37207,4.131 146,581.9605,89.542015,40.211975,91.71842,4.103 146,435.55423,168.84631,41.92459,91.93707,4.054 146,242.89719,201.24774,33.038116,70.948395,4.053 146,312.98254,219.49098,21.322876,32.093185,4.051 146,244.88217,-15.327675,30.157654,66.31998,4.047 146,612.2366,105.05362,37.889893,109.560455,4.037 146,91.168144,-19.024597,58.216957,121.57951,4.012 146,380.01086,-15.914204,56.251617,120.00067,3.978 146,272.44757,209.02034,23.368744,40.06932,3.975 146,-5.9045515,90.5772,18.84914,44.07769,3.953 146,178.29547,-20.544832,42.72734,84.3757,3.947 146,218.90364,179.81844,58.040115,104.62099,3.94 147,-0.8863938,213.9314,28.240097,75.68332,6.582 147,-6.172843,490.62424,18.69928,41.880524,6.44 147,-5.7530003,-16.30561,17.735727,41.690113,6.362 147,43.321564,233.4866,33.3267,67.74963,6.361 147,49.11267,171.8984,29.923294,73.83624,6.267 147,610.40063,-47.878716,42.13611,99.05044,6.033 147,257.24017,204.23405,34.854065,68.10939,5.918 147,15.318789,199.77531,36.434975,79.22844,5.881 147,-8.983018,465.26758,37.725098,90.50293,5.649 147,-11.065698,-32.113945,29.607552,74.73549,5.622 147,13.159639,-14.612499,55.929016,116.444534,5.486 147,612.6664,453.8862,40.04358,108.37277,5.458 147,12.236323,171.46309,55.63386,117.77437,5.39 147,3.6723268,189.86096,35.00413,93.650116,5.107 147,581.13763,153.67915,38.685486,88.391785,5.085 147,-73.66815,265.15842,201.64862,461.9407,5.025 147,583.2071,411.13272,71.74664,177.06418,5.021 147,-17.765785,436.42673,55.734493,138.47739,5.004 147,585.82074,-99.59799,75.20398,231.62662,5.0 147,-17.288359,-62.964153,55.885788,143.3732,4.959 147,253.487,-14.75684,55.254547,115.99289,4.919 147,33.506893,212.50311,36.53725,72.39197,4.908 147,22.825047,185.8821,23.499836,60.35199,4.883 147,627.11053,-18.113056,17.25586,47.150333,4.835 147,626.15295,487.08484,21.530884,47.460022,4.807 147,488.78656,-180.24875,236.57385,425.75952,4.783 147,536.3441,311.24176,143.47449,342.5558,4.711 147,40.594273,196.94055,59.195507,101.47806,4.696 147,219.93314,-18.87342,56.92575,121.028496,4.674 147,-40.185654,367.90527,110.33377,275.3423,4.672 147,103.50366,149.54315,27.751984,67.42665,4.64 147,-37.128937,-129.66508,117.42329,283.1217,4.575 147,-5.6826963,3.7028866,18.64185,42.154686,4.542 147,169.04022,224.8825,60.68463,141.78583,4.531 147,26.909317,181.82736,34.96308,80.75937,4.513 147,493.6703,228.54428,237.47931,513.7457,4.51 147,209.01338,212.1395,44.83989,90.23212,4.504 147,131.38057,119.22387,30.489883,76.764565,4.488 147,92.27317,153.79553,28.85537,63.372528,4.469 147,417.78046,71.966385,30.247772,80.293686,4.468 147,565.07587,158.49957,39.58484,84.197784,4.459 147,266.015,196.11559,55.513153,102.11363,4.439 147,-71.43701,-189.40495,213.01376,456.2096,4.438 147,-10.819703,188.75714,29.59652,80.215454,4.395 147,56.704865,251.87375,35.23065,63.90918,4.376 147,57.61633,179.88794,59.943943,105.34747,4.354 147,3.157922,-14.326795,16.383253,38.229572,4.293 147,598.0004,145.59895,35.75641,97.96274,4.276 147,-4.6041994,107.73051,16.995182,41.75904,4.274 147,312.36832,231.59908,22.274628,32.425644,4.256 147,301.61447,212.3164,31.243988,56.23633,4.253 147,47.22797,221.72366,25.642376,53.868256,4.252 147,285.2104,-14.497776,55.886475,117.916016,4.25 147,58.966553,162.17264,32.112488,70.04109,4.244 147,138.68042,130.77167,31.69365,82.07529,4.078 147,546.8418,151.19931,43.99536,79.89375,4.026 147,125.65964,139.49606,28.788239,85.6308,4.021 147,532.0877,167.43932,41.232056,75.39114,4.004 147,192.79427,219.89407,44.65384,95.81192,4.001 147,-6.5626087,227.73087,37.505203,94.76361,3.994 147,187.40465,-22.480213,57.93753,125.658676,3.977 147,-5.736141,151.3855,18.647808,46.23146,3.975 147,80.24956,173.23799,47.107605,88.26439,3.966 147,241.52765,211.72818,42.33612,90.38153,3.944 147,-6.4197874,21.424269,18.519415,46.103775,3.94 147,25.824966,228.755,34.77471,71.48401,3.932 148,357.63214,1.8333778,28.645477,65.18738,9.081 148,-6.243827,-18.77949,18.471058,44.38986,7.681 148,-12.263258,477.8635,30.542902,63.964386,7.005 148,-6.37353,488.78403,18.957806,44.68759,6.916 148,1.1545432,114.58026,27.500963,93.61365,6.301 148,610.58386,-47.781136,42.067566,99.749664,5.875 148,627.2261,-18.902775,17.6344,47.56405,5.872 148,-11.14087,-31.386116,29.332542,72.06778,5.84 148,625.9498,485.98752,21.503906,47.012054,5.648 148,-17.929976,-64.06184,56.63881,143.73627,5.547 148,-6.3048816,78.89676,19.6613,47.472977,5.476 148,613.08203,454.0172,38.918457,107.08502,5.236 148,-72.877464,264.1818,201.43213,463.48776,5.103 148,586.0242,-99.236,75.046936,230.45673,5.022 148,583.1868,412.0656,71.0036,175.44562,4.9 148,-35.832664,-129.84348,117.70077,278.98026,4.779 148,489.4083,-181.02916,235.96536,426.13748,4.77 148,536.2305,311.02423,144.11188,341.2116,4.709 148,186.89049,208.20824,56.861877,103.50606,4.696 148,-22.18007,401.0792,79.54801,175.30399,4.67 148,493.62134,228.74081,237.15784,512.9922,4.668 148,11.142633,114.432785,32.74048,81.28868,4.647 148,139.10207,53.33412,32.579514,69.94908,4.577 148,25.130714,120.70035,31.651672,77.8656,4.569 148,155.23761,296.02737,33.606003,57.566498,4.539 148,404.23163,202.59343,32.825256,67.63771,4.532 148,177.17589,229.88428,44.692474,81.979126,4.521 148,-71.53495,-188.837,212.76572,456.48257,4.485 148,616.5696,172.20193,22.960632,55.751587,4.472 148,189.8191,213.73502,30.179886,62.542603,4.468 148,378.1172,83.84683,31.034882,77.35161,4.466 148,349.7553,219.3064,28.566498,56.757812,4.379 148,10.411804,-32.622093,58.586647,128.99321,4.374 148,370.55417,-0.7049751,29.645721,63.552704,4.367 148,-10.575373,67.246735,30.38445,72.363556,4.354 148,0.77298164,60.34758,50.667862,137.27695,4.306 148,284.17072,-14.897356,31.959991,66.708954,4.268 148,201.53189,-15.019654,18.402023,37.221367,4.19 148,278.60938,151.55493,28.670227,90.6311,4.179 148,203.11554,215.42569,31.1315,62.68399,4.173 148,137.94644,-36.803696,60.17325,125.718544,4.171 148,97.364655,-17.462963,19.417755,41.595562,4.155 148,275.3685,269.41925,32.81259,64.52969,4.153 148,170.54483,-34.185722,59.434326,122.65202,4.135 148,617.4415,151.20012,23.44934,55.33972,4.132 148,155.12323,210.94656,59.03833,106.59781,4.093 148,384.84546,117.2757,33.658844,79.59896,4.077 148,-5.752739,109.83076,19.83123,51.182884,4.063 148,34.687492,81.985306,42.584305,100.00296,4.048 148,99.69795,-16.351004,33.976273,66.03006,4.04 148,283.80038,-17.227798,57.64035,117.252884,4.02 148,236.2619,203.20876,16.432205,31.522202,4.003 148,353.40213,205.28531,44.076538,67.64755,3.999 148,138.35045,298.22772,34.48906,58.339996,3.992 148,348.7811,-16.042889,55.125397,116.51425,3.946 148,-8.656522,111.39487,28.865772,81.15997,3.933 148,-9.73784,-4.6295853,41.14415,97.81719,3.929 148,194.04265,6.635536,32.8069,71.84905,3.926 148,22.599453,148.13995,37.51691,72.10196,3.869 148,82.43849,-21.589592,42.66378,84.7641,3.867 148,-6.2139244,0.7432213,19.26295,45.67806,3.867 148,316.16885,-15.598251,56.45685,113.843056,3.852 148,297.86084,-16.57733,18.151672,39.340397,3.838 148,105.7275,-38.98833,60.08413,126.57767,3.837 148,329.00305,203.2896,61.28351,95.91481,3.836 148,228.5062,210.81044,15.739243,29.208847,3.819 148,235.0765,237.3195,33.155426,63.98027,3.809 148,209.11078,212.70885,44.19597,74.21388,3.792 148,252.99301,-18.29279,56.911957,119.50876,3.789 148,200.75604,-0.28803253,21.539062,34.452805,3.778 148,262.30228,153.32742,28.348022,80.94522,3.773 148,572.3155,139.08838,56.36969,110.61594,3.762 148,499.1394,201.37088,31.363098,53.68289,3.723 148,305.6686,-4.3647537,21.273712,38.035286,3.717 148,10.626995,95.26859,57.241085,130.16779,3.716 149,-5.706934,-18.284985,18.288414,43.114502,7.875 149,-6.6124887,489.79733,19.3466,42.490997,6.154 149,178.63754,235.16106,34.674927,78.32893,6.061 149,610.81616,-47.58481,41.598694,98.33397,5.843 149,-12.787944,-40.71396,41.82822,99.78086,5.747 149,-12.700323,478.29593,31.393335,61.651703,5.725 149,195.4226,226.87555,33.300262,66.12128,5.7 149,627.3018,-18.56504,17.483704,46.625515,5.624 149,244.85626,213.27193,31.697357,55.5157,5.573 149,626.2133,487.09918,21.434143,47.064148,5.513 149,33.98335,174.39873,31.86803,78.8896,5.45 149,582.66095,413.82663,72.15582,174.34122,5.217 149,-73.291794,264.50275,202.05205,463.8487,5.2 149,200.50722,80.11029,34.604248,77.96448,5.175 149,146.00323,231.00734,36.21724,71.55913,5.118 149,-5.7152867,199.48703,18.376663,45.36882,5.021 149,161.13614,224.50897,45.654037,65.88464,5.002 149,612.36707,454.33826,39.65808,107.50928,4.989 149,-17.630716,437.00128,55.328445,139.18774,4.976 149,536.1878,312.54828,144.10516,338.9178,4.78 149,2.662003,-16.79888,17.322979,39.855824,4.71 149,489.70087,-180.2884,235.5274,423.9267,4.667 149,-40.5942,365.887,111.41336,276.18405,4.666 149,300.67694,231.21529,29.052216,58.939896,4.65 149,521.90314,211.45555,36.564026,54.733627,4.65 149,493.937,228.2214,237.69598,512.6853,4.648 149,65.568306,93.398056,30.935516,75.4707,4.62 149,586.12085,-100.86514,75.30066,232.37007,4.614 149,-20.222229,-89.15142,71.85736,199.15535,4.496 149,362.38116,224.4436,33.286743,58.51526,4.489 149,-71.3302,-189.0849,213.06094,456.19434,4.478 149,206.233,224.60516,47.78868,73.68268,4.465 149,276.36426,168.19203,29.697815,65.523544,4.375 149,72.59487,214.97177,62.259438,130.31476,4.366 149,-36.88492,-130.84868,117.7048,281.72043,4.353 149,34.25783,83.63843,30.851192,80.769104,4.337 149,-5.3151073,88.05777,18.388645,44.83467,4.318 149,127.769684,221.39505,46.879074,67.99106,4.263 149,-2.6662505,250.75302,29.88843,78.00061,4.242 149,79.87689,88.00256,22.897621,48.956482,4.219 149,14.72184,211.7179,47.60338,77.73761,4.198 149,-10.48045,187.87466,28.47639,66.75139,4.182 149,215.53693,186.46672,61.978363,103.136154,4.179 149,1.6699088,199.27907,19.902348,47.522446,4.174 149,111.78169,224.08923,46.675735,91.17279,4.163 149,210.47339,121.89665,32.773666,87.23085,4.151 149,83.61607,79.452995,30.933975,66.11991,4.139 149,175.38496,207.49245,48.0997,70.3008,4.133 149,553.5459,202.48474,36.094055,61.453125,4.109 149,144.74698,207.63684,47.569427,70.26367,4.098 149,-5.5273886,25.062628,18.029018,43.461945,4.094 149,528.86896,191.14758,33.690735,63.818542,4.09 149,201.61217,51.498867,31.451736,74.60251,4.09 149,264.9504,256.13196,37.436188,59.18509,4.069 149,90.60024,2.5137863,31.692299,53.737747,4.056 149,402.7467,226.90083,34.197083,60.494858,4.055 149,433.74417,216.49625,37.48633,61.190247,4.044 149,31.709553,223.85257,47.264805,77.206665,4.032 149,536.35004,216.22073,35.603638,61.43051,4.027 149,152.08646,225.16232,62.86316,124.433105,3.925 149,15.874352,238.6853,45.302933,93.05878,3.924 149,282.84064,243.84393,33.058655,52.76709,3.885 149,11.131935,-21.383415,60.65171,135.18716,3.86 149,3.1537688,178.52187,30.72999,74.29016,3.86 149,399.74747,204.3375,49.008575,69.21323,3.841 149,73.54573,157.54277,33.102303,89.074814,3.817 149,-13.244547,231.28056,30.916117,66.57265,3.816 149,415.75793,233.50339,47.196198,69.72641,3.807 149,239.30286,233.09488,47.309296,76.387726,3.79 149,14.78841,68.39717,54.645016,128.57397,3.787 149,96.83835,84.16034,22.633835,49.263428,3.777 149,71.70475,91.22691,22.860985,47.378937,3.774 150,-5.601159,-16.679497,17.810627,41.753693,8.625 150,-12.561246,476.9292,30.83361,63.897217,6.684 150,174.6077,243.76544,37.26198,65.76849,6.631 150,376.031,228.4891,24.226746,44.56888,6.296 150,626.3924,486.71057,21.188232,47.6922,6.252 150,-6.5044603,489.04456,19.038727,43.447388,5.977 150,-10.729718,-31.915638,29.252079,72.06401,5.928 150,610.98254,-49.36387,41.211792,103.15157,5.888 150,627.44806,-18.077152,17.051575,47.491207,5.706 150,-17.309456,-64.81995,56.14084,143.70227,5.607 150,592.80646,220.19826,23.140747,37.481033,5.546 150,582.6842,414.21808,72.02649,173.81018,5.269 150,2.9770427,-14.400331,16.994574,38.666615,5.192 150,612.2905,455.82224,39.739563,105.26376,5.19 150,333.8844,163.4408,29.202301,72.59088,5.122 150,-73.66912,264.34015,202.5375,463.88898,5.121 150,585.96906,-98.33769,74.591736,231.19849,5.077 150,436.30298,143.94867,29.778107,76.19159,5.05 150,536.1259,311.7748,144.25372,339.6622,4.88 150,245.17429,247.57434,31.269775,59.051514,4.837 150,164.35056,234.541,34.43309,60.720047,4.817 150,-21.983398,402.11948,80.09219,175.78781,4.803 150,-71.84684,-190.03348,213.33255,457.69745,4.799 150,578.56757,130.21852,36.728394,73.806595,4.798 150,-35.693516,-130.09604,116.50281,276.40927,4.794 150,490.043,-180.36227,234.9943,426.16498,4.763 150,494.04102,228.6926,237.34662,512.74304,4.748 150,24.850061,249.70645,36.208298,73.76318,4.58 150,307.14215,241.92244,33.753357,56.663193,4.543 150,480.73444,226.78802,37.984375,55.142944,4.535 150,369.96323,205.00012,45.598328,70.93097,4.52 150,-1.0936403,65.44086,27.450813,76.750595,4.497 150,11.273424,-22.984581,59.539444,123.47282,4.435 150,2.950331,2.4003906,19.426073,42.67916,4.398 150,601.0049,217.49446,20.63617,36.24077,4.394 150,364.28525,222.70247,31.383026,62.535843,4.27 150,464.08817,224.77446,38.084076,51.08766,4.208 150,-9.452547,-8.180492,40.36118,99.43056,4.204 150,29.791498,205.73851,34.310753,62.5269,4.154 150,312.1675,175.53552,62.375793,107.259186,4.144 150,41.10102,249.8296,36.578537,68.39751,4.108 150,90.93974,-16.08569,58.41539,116.55293,4.085 150,283.47418,239.29272,34.57007,61.80237,4.079 150,6.0217953,217.07909,31.711763,66.94716,4.069 150,408.97504,223.08934,37.089172,64.15883,4.065 150,-5.4922543,71.41565,18.021528,44.62404,4.02 150,347.15793,185.01167,61.773804,101.60924,3.991 150,258.20712,245.32854,33.521637,58.68428,3.974 150,617.8248,489.22952,21.431885,44.616486,3.952 150,527.1109,234.38527,24.26831,35.11055,3.939 150,-5.0788527,0.87012863,17.706936,42.355682,3.933 150,66.90681,248.18028,33.955658,64.75813,3.931 150,595.49817,210.29585,18.627869,30.17752,3.867 150,84.917595,214.26257,32.08928,63.06421,3.839 150,1.7842174,-40.582855,43.999187,97.47959,3.834 150,89.071724,-3.006752,33.402046,60.947533,3.83 150,449.5509,222.53194,37.27127,54.45323,3.828 150,361.52103,220.28455,21.51651,41.3002,3.808 150,32.059036,-9.060608,47.666924,91.761475,3.804 150,191.19127,210.62482,48.305283,72.757324,3.802 150,149.72234,-1.854023,31.3721,73.79686,3.796 150,130.06168,225.22224,36.568634,59.582993,3.749 150,279.4453,174.11185,65.130035,112.36804,3.74 150,609.6198,215.73894,21.393066,37.942093,3.736 150,60.295876,-16.648064,58.02208,117.45412,3.733 150,8.981325,227.3285,59.196335,125.341995,3.708 150,-5.818969,133.58063,18.992542,44.897995,3.68 150,123.957596,-16.929878,58.18364,116.718376,3.669 150,594.80066,190.9592,19.838135,32.802704,3.668 150,324.34973,194.64702,31.55606,68.59413,3.664 150,349.34204,155.00952,27.797913,70.57645,3.657 150,425.8026,218.93599,36.464996,63.62401,3.62 150,278.26837,186.77228,28.585022,62.268906,3.616 150,58.141956,-16.329613,17.918926,38.367477,3.61 151,560.31195,210.99078,22.908264,47.824463,8.912 151,-5.702085,-16.993021,17.726082,41.84167,7.243 151,-11.117754,-31.820091,29.386625,71.46917,6.365 151,617.42944,211.07605,20.70288,50.280212,6.362 151,52.183723,209.02036,31.526604,70.52881,6.055 151,195.01254,110.39662,33.631577,75.30476,5.924 151,147.97934,151.20615,30.744476,75.733444,5.875 151,-6.2625384,489.03342,18.810312,42.38034,5.866 151,200.70325,230.16989,23.274841,44.807556,5.815 151,626.22815,486.92245,21.464233,47.204254,5.668 151,386.5018,226.62234,32.71884,53.18045,5.471 151,-12.03637,477.67786,29.57328,63.25061,5.423 151,612.0606,455.0284,40.08716,106.34476,5.311 151,627.3135,-17.983978,17.049438,47.140472,5.216 151,276.5038,137.95303,27.924622,78.40666,5.198 151,202.34665,235.31491,31.136719,59.55301,5.187 151,-17.494604,-63.907627,56.73002,143.20726,5.18 151,582.52893,414.71225,72.14929,173.3948,5.148 151,434.61987,140.29318,34.076447,69.51752,5.142 151,272.71698,224.67767,21.793274,40.173645,5.14 151,-73.65761,265.08258,202.23296,463.01508,5.12 151,338.3461,232.43777,35.516357,58.372955,4.97 151,623.07587,-34.061245,26.197449,77.02334,4.895 151,-36.217762,-129.81044,116.8931,278.23987,4.89 151,208.30502,249.81741,37.529907,59.943787,4.88 151,11.401098,-31.384172,58.487007,124.29388,4.845 151,536.2378,311.92767,144.00745,339.21027,4.84 151,314.37823,245.07207,37.043518,49.683304,4.83 151,489.65942,-180.73047,235.33838,427.2122,4.824 151,182.52252,217.12122,31.064392,57.981873,4.804 151,124.29963,148.37267,31.359352,74.38522,4.781 151,-21.975372,401.52963,79.956436,175.83969,4.765 151,489.68292,224.3818,19.604736,28.619446,4.763 151,585.73004,-100.268875,75.23517,234.79819,4.753 151,-5.492936,200.93898,19.02117,44.4554,4.742 151,-71.84934,-190.00423,213.33969,457.53052,4.659 151,472.93738,236.5641,22.009064,32.156143,4.651 151,494.31677,228.64471,237.13983,513.6931,4.64 151,417.93524,137.52069,35.19095,68.61188,4.633 151,132.42708,164.6122,33.804474,73.49443,4.616 151,361.22632,224.55743,22.305847,34.18756,4.598 151,363.4891,225.85867,35.30478,62.618988,4.585 151,35.126595,204.98184,33.91385,69.6362,4.549 151,289.33862,223.2681,20.068542,33.36209,4.539 151,87.30915,223.93433,25.793678,40.104248,4.537 151,-5.452881,3.3698883,17.695747,40.935516,4.511 151,61.851425,219.74405,26.51857,50.48456,4.507 151,602.9773,-56.729652,53.655518,139.94447,4.482 151,474.1226,225.09155,19.204315,30.34082,4.471 151,-15.277197,150.54324,49.479492,147.06131,4.456 151,229.49695,215.2554,33.524017,58.95761,4.447 151,553.85443,222.74828,22.806091,40.111526,4.405 151,487.39032,236.05164,24.027985,32.894196,4.372 151,242.01393,221.52054,35.461136,56.524536,4.367 151,538.7005,223.40556,20.049866,33.11879,4.327 151,193.52312,212.1053,45.60698,73.63988,4.315 151,376.69266,214.4592,29.86728,64.36087,4.264 151,450.97385,134.298,34.96228,67.07347,4.239 151,599.1524,209.29346,36.227234,99.31604,4.229 151,8.706167,200.4194,59.917297,114.68991,4.223 151,226.49118,248.62352,36.53232,55.327377,4.187 151,164.16534,215.74617,32.57155,64.61461,4.178 151,562.86487,222.31313,41.60193,86.49864,4.178 151,215.0357,239.41183,22.896637,37.826294,4.176 151,-3.3851612,246.6755,32.55928,74.23746,4.156 151,476.57355,214.23965,30.192078,52.95981,4.103 151,208.34029,111.68935,34.129654,67.9684,4.097 151,580.7131,221.08888,40.556335,94.05495,4.081 151,157.54422,113.835594,56.177017,127.38065,4.08 151,281.64578,228.20714,20.95819,36.946243,4.069 151,171.79527,194.45453,60.075333,103.76648,4.055 151,479.7157,244.11862,22.761688,29.57129,4.025 152,490.57803,234.72736,19.057434,36.165344,14.252 152,482.42932,232.81604,18.937408,39.17386,13.85 152,600.19617,223.48529,35.069397,96.141846,9.95 152,-5.7797174,-17.74478,17.813725,42.53529,7.269 152,611.818,246.09474,29.005066,89.22102,7.105 152,127.812584,233.17638,24.32531,41.549362,6.831 152,537.88934,215.98997,18.786682,26.788559,6.325 152,-10.935194,-31.513672,29.315115,72.56635,6.195 152,627.24304,-18.212275,17.542664,46.479324,6.089 152,588.8355,224.3142,32.169617,70.89491,6.074 152,3.3632052,90.695724,31.143738,80.359116,5.871 152,-6.259088,489.50415,18.834633,42.05725,5.823 152,309.3714,163.2557,29.909637,70.6992,5.767 152,626.3052,486.90778,21.305542,47.31781,5.638 152,622.90356,-34.196106,26.847412,76.59269,5.541 152,-11.997399,477.61423,30.28543,63.464752,5.526 152,-6.3190384,74.07878,19.31719,43.578926,5.231 152,582.48883,414.394,72.08356,173.66568,5.215 152,-74.155174,264.30066,203.30038,464.1985,5.203 152,314.21127,139.98187,34.158936,72.14989,5.2 152,585.9412,-98.71753,74.45764,230.94586,5.12 152,473.37857,217.4947,24.30072,57.25157,5.097 152,612.205,454.56555,39.858704,107.240906,5.089 152,-0.09964347,240.06386,30.098452,70.01079,5.044 152,535.8674,311.62814,144.26874,339.355,5.037 152,497.2693,232.71085,18.288086,32.6174,4.978 152,490.4036,-180.92542,234.72202,428.17444,4.907 152,603.0221,-56.95901,53.35431,135.49953,4.893 152,493.92297,229.85333,237.25366,512.5028,4.822 152,-21.94211,401.30115,80.06257,176.57617,4.816 152,-17.682135,-64.671844,56.512093,146.11758,4.716 152,292.6211,163.34433,30.946472,71.64821,4.656 152,114.37952,123.4415,31.464264,79.209015,4.648 152,602.80347,230.05444,19.971558,27.347656,4.563 152,293.25757,-16.237188,30.705505,61.89982,4.554 152,105.44267,230.72047,23.482635,40.993088,4.539 152,123.06667,117.001495,30.95774,65.53946,4.511 152,-36.716076,-131.3559,118.4561,281.6669,4.484 152,-11.053398,72.86883,29.893713,65.67643,4.481 152,573.3297,224.87122,32.848938,66.99121,4.457 152,131.936,125.218124,32.220505,64.664474,4.452 152,3.1201844,-15.580062,16.592894,39.814167,4.344 152,-71.74826,-188.63869,213.58331,454.62646,4.342 152,389.29474,165.5716,28.671875,69.6203,4.301 152,17.701157,81.385666,33.339092,66.76216,4.297 152,267.2813,212.80496,30.19513,68.55316,4.288 152,594.4838,-45.758385,44.523438,96.695656,4.257 152,67.213066,221.9563,35.812263,54.325226,4.256 152,578.05396,220.88998,47.78601,129.74756,4.2 152,614.2359,223.35168,25.940857,65.88208,4.197 152,-6.3011875,212.95822,19.02952,51.4993,4.18 152,322.9389,167.30986,30.74887,70.08261,4.16 152,329.9435,131.59352,34.756348,69.67436,4.155 152,392.33078,149.77795,25.7482,45.726547,4.142 152,617.8687,227.46535,19.626465,38.305405,4.122 152,-5.824077,93.62244,19.300428,46.737274,4.109 152,184.78789,210.69464,61.703384,110.95935,4.063 152,585.2013,225.00812,24.944641,37.893616,4.05 152,-6.277281,165.08372,19.638159,49.27025,4.038 152,10.754173,-30.767632,59.502754,133.2625,4.019 152,-12.3512535,288.63907,31.63625,70.16461,4.018 152,10.485086,202.08368,60.733627,115.4447,4.017 152,-10.930235,246.98636,31.208109,70.83945,4.013 152,39.495285,140.538,24.943893,40.37697,3.998 152,2.132063,242.4086,44.620674,93.070465,3.958 152,3.2992887,135.95567,30.91492,74.00479,3.947 152,25.023335,196.39227,35.714268,68.7706,3.942 152,468.52612,226.87555,19.251038,42.113556,3.92 152,1.8787467,81.560356,23.191288,48.126396,3.917 153,408.68347,246.11826,23.420593,44.98633,74.754 153,420.30035,245.64009,23.266663,43.380783,12.233 153,535.7394,242.06586,25.341736,39.738647,8.453 153,601.03345,205.90524,34.8631,116.10083,7.708 153,-5.7417703,-17.01092,17.871937,41.979866,7.599 153,185.74252,118.05857,35.929535,72.48031,7.431 153,299.05658,248.32188,18.346436,25.559189,6.495 153,-11.093717,-32.153233,29.890968,73.05915,6.339 153,627.24945,-18.384918,17.132996,48.19464,6.074 153,-12.351245,477.8794,30.420204,62.475952,6.016 153,626.34406,486.88388,21.252441,47.45407,5.873 153,622.60406,-34.467102,26.720886,78.34315,5.619 153,-6.495158,490.0725,18.75376,41.693604,5.603 153,377.3426,245.12326,21.04187,41.0784,5.575 153,614.9433,233.70541,26.102234,90.98169,5.563 153,594.6798,194.43712,30.781067,70.16362,5.333 153,171.02817,124.072296,34.860367,74.3266,5.332 153,612.11505,455.5477,39.946716,105.64969,5.219 153,582.5109,414.6181,72.17322,173.54889,5.209 153,-74.22332,264.7695,202.90475,464.25198,5.146 153,615.14514,-19.40162,27.072021,74.42294,5.141 153,585.9337,-98.992424,74.36389,232.8461,5.092 153,-20.074764,-85.50425,72.006424,194.8677,5.087 153,2.4774158,-15.470364,17.106997,39.06491,5.031 153,536.29297,310.66882,143.91754,339.13647,5.029 153,-0.12806177,316.9884,26.63907,73.86481,5.01 153,490.90192,-183.40652,234.53278,429.42728,5.004 153,404.61398,245.15454,18.783295,36.48352,4.997 153,-41.151585,364.7751,112.44617,276.16608,4.902 153,602.72797,-56.654938,53.274963,136.07094,4.894 153,-35.60554,-127.31229,116.98039,273.09653,4.865 153,565.21204,229.79248,39.13611,91.778564,4.865 153,-17.95886,437.18738,55.8899,137.54187,4.845 153,396.40826,140.33525,31.73462,72.38078,4.842 153,508.14905,233.93724,31.791382,51.54332,4.744 153,404.36783,229.36882,38.099365,68.91823,4.722 153,583.5474,220.293,36.342773,100.9176,4.639 153,268.67432,243.78326,16.733276,26.26825,4.612 153,545.5786,240.12964,34.499268,56.339172,4.534 153,338.24567,-2.5373135,20.592407,40.281616,4.527 153,384.94073,250.631,21.624329,40.88701,4.526 153,494.16888,231.1146,237.47174,509.8063,4.526 153,-71.73101,-189.7878,212.97946,456.6786,4.511 153,395.9122,248.61241,20.561768,41.568405,4.501 153,186.74867,151.42065,32.336075,69.082245,4.456 153,348.96896,-18.169846,55.365143,117.502014,4.428 153,355.28134,-1.3948479,18.569702,35.968517,4.4 153,362.9466,-0.8447151,18.702728,34.86336,4.394 153,531.1042,240.13316,20.80194,28.496658,4.378 153,346.87262,-1.8864079,19.22342,37.283577,4.367 153,267.42975,276.4845,17.245178,26.5206,4.35 153,264.23578,99.8625,35.134064,58.1241,4.338 153,66.11861,-2.0572033,33.52951,67.98087,4.331 153,276.7071,245.71974,16.147125,24.265549,4.323 153,275.33856,275.23166,17.29538,28.140442,4.321 153,30.09429,309.9085,36.778053,59.294098,4.218 153,300.1573,255.8308,15.573761,28.524673,4.169 153,361.9281,160.64017,31.05487,78.05975,4.169 153,105.96534,216.048,30.250725,74.08835,4.077 153,213.1144,152.77524,30.594131,65.545425,4.054 153,424.89578,239.20715,19.241974,30.97171,4.053 153,395.08316,0.90385437,18.785095,33.376633,4.052 153,284.00714,275.67133,16.430298,27.938385,4.041 153,74.55727,-31.46921,59.896347,123.751976,4.036 153,594.57104,-46.270958,44.27307,98.58753,4.035 153,-9.19138,-19.963768,38.892696,98.8917,4.034 153,489.5951,213.28441,22.32962,36.76219,4.034 153,532.02466,236.96985,39.05652,70.678345,4.019 153,259.61118,240.61324,17.996765,28.319992,4.012 153,378.94238,-13.70864,16.114716,37.0028,4.009 153,380.95706,-11.509531,29.985199,59.379044,4.006 153,450.12146,223.28796,19.284607,27.09578,4.003 153,228.91365,155.31741,30.32582,66.22339,4.002 153,336.5349,183.13144,22.379028,38.820145,3.993 154,309.64832,253.46523,27.069244,57.285873,81.528 154,322.54596,255.78452,25.63733,51.4776,19.343 154,299.03818,251.81125,28.057709,62.012207,16.866 154,434.3622,255.31299,33.4122,51.815735,9.476 154,-6.1898828,-18.00277,18.420671,43.472523,7.286 154,627.4606,-19.263325,17.225464,48.52339,7.199 154,-11.103485,-31.232752,29.474613,70.417046,6.867 154,531.2818,242.55927,33.402344,57.205017,6.409 154,202.89848,245.11229,19.839066,36.236374,6.119 154,623.20746,-34.37175,26.33844,75.76926,6.092 154,590.2796,201.24635,50.5307,161.02794,5.75 154,-6.279832,490.2986,18.68144,40.82315,5.647 154,-12.355138,479.0852,30.501102,60.888428,5.644 154,626.39386,487.3463,21.213196,47.105835,5.601 154,612.23663,454.26297,40.074036,107.32413,5.154 154,-6.0977163,-1.1209316,18.865297,46.364212,5.153 154,504.1107,214.20633,28.22464,66.664795,5.042 154,582.5744,413.68115,72.12921,174.6438,5.039 154,321.7416,246.88762,18.148987,31.867844,5.022 154,-22.841856,399.9635,80.99014,177.32477,5.018 154,420.14716,256.01987,36.99182,55.37628,5.017 154,585.8405,-98.88229,74.682556,231.88495,5.016 154,539.1026,253.89273,34.13556,58.563538,4.996 154,385.96677,238.72437,20.33545,31.72351,4.981 154,536.33167,310.8829,143.71295,339.62943,4.973 154,-20.504269,-87.16133,72.41029,196.63928,4.968 154,490.71783,-181.55252,234.56903,428.17178,4.956 154,-73.817085,265.0675,201.86533,463.06738,4.945 154,394.83423,255.91487,34.240112,51.724594,4.937 154,602.69604,-57.709866,53.726807,137.29149,4.894 154,378.87836,239.88907,19.857422,29.005585,4.875 154,394.6649,241.18729,20.421417,31.137665,4.861 154,458.617,175.21843,19.756073,35.47783,4.859 154,2.6366324,-16.815512,17.577114,40.281605,4.841 154,236.446,99.28238,29.853409,64.46915,4.824 154,213.34303,243.2421,33.504745,75.6174,4.789 154,328.66296,250.47656,18.424103,36.219666,4.759 154,315.08917,248.60379,18.381134,31.129211,4.753 154,-36.120018,-129.24713,117.656044,276.09918,4.737 154,5.3011966,138.6207,29.258297,66.22385,4.695 154,494.003,229.9773,237.26013,511.94592,4.666 154,620.4615,-7.4556923,18.651733,42.870056,4.666 154,251.59366,-12.836834,15.886536,34.726177,4.655 154,594.9019,-46.689514,43.81842,98.228226,4.622 154,39.87347,228.75159,24.45876,42.58429,4.579 154,439.55264,251.92259,24.250397,35.792862,4.511 154,-6.5339665,239.50027,18.546227,41.62213,4.445 154,128.18121,304.0024,37.87935,55.535034,4.362 154,-0.65614104,62.207714,28.67105,72.87311,4.352 154,288.09055,256.5321,29.93045,59.459686,4.352 154,-71.954865,-188.576,212.78242,454.50366,4.348 154,221.41829,225.1209,28.198425,72.21376,4.256 154,581.9376,230.11478,39.387146,111.309906,4.249 154,19.562138,140.57602,32.004364,62.031418,4.232 154,1.3139796,94.00641,27.610561,80.58093,4.223 154,459.23154,253.16994,33.590485,55.400528,4.199 154,145.37138,244.95941,19.90448,28.568665,4.149 154,234.42673,265.58743,34.03949,64.96268,4.146 154,-10.310514,75.97788,30.356024,73.39672,4.144 154,124.38262,215.76566,54.377724,110.55646,4.142 154,547.1613,244.70245,41.210632,85.30829,4.136 155,168.16557,250.26678,35.8983,69.30371,83.822 155,153.7473,248.70631,34.933136,74.63823,12.499 155,181.73148,249.40536,34.66388,67.55835,10.617 155,626.96063,-17.589575,17.340637,48.061825,8.423 155,622.8887,-33.462833,26.229065,76.95417,7.325 155,-5.5019097,-16.868135,17.886694,42.89807,6.65 155,337.941,263.44476,36.6174,60.963654,6.456 155,313.56696,263.66077,36.049072,60.588837,6.223 155,-12.5027895,475.63773,30.071915,65.146515,5.958 155,-10.72966,-33.052387,29.246683,75.23735,5.833 155,444.02057,160.79712,28.039093,69.11395,5.758 155,6.408477,27.660095,32.641914,81.352905,5.628 155,619.172,-3.947094,18.457153,43.386024,5.577 155,626.2741,487.5149,21.489502,46.31067,5.548 155,-6.4396534,488.79303,18.643429,43.716614,5.495 155,-6.2030096,120.84735,18.412422,43.475006,5.464 155,612.5585,453.70807,39.934937,107.95117,5.459 155,18.756594,117.12221,32.04747,62.14279,5.439 155,544.8362,250.92783,36.270935,53.342194,5.423 155,-74.08135,265.0596,203.49002,464.11655,5.421 155,354.2587,259.53928,35.003387,60.817383,5.402 155,191.24847,260.007,43.94687,74.236084,5.317 155,370.968,146.20227,30.389984,80.507385,5.234 155,602.9472,-56.22303,53.218628,132.56953,5.146 155,538.3377,260.46082,34.98523,62.65921,5.111 155,582.56696,412.84583,72.19324,175.40228,5.078 155,136.2106,245.89969,41.34445,74.027374,5.076 155,-35.67901,-128.82608,117.31086,275.90616,4.895 155,25.007477,32.411755,35.035667,72.99858,4.879 155,-19.714268,-86.98386,71.81624,197.26521,4.874 155,-5.853407,137.38025,17.721304,43.771942,4.866 155,5.6541467,123.36044,30.536615,71.75351,4.856 155,394.6632,254.35861,34.24826,56.37961,4.851 155,536.31726,310.53793,143.65045,340.25748,4.834 155,418.8537,244.03712,35.99524,63.216415,4.813 155,-41.845177,362.49628,113.102104,278.19012,4.8 155,547.6058,256.56805,39.493286,90.19119,4.798 155,433.72635,256.84396,35.231354,55.85202,4.758 155,9.542826,253.186,73.95069,175.53638,4.75 155,490.3861,-180.56326,234.87402,426.65842,4.732 155,392.2998,283.84335,23.439362,35.66855,4.73 155,586.337,-98.61045,73.91199,230.5108,4.722 155,11.669316,-10.932301,59.110348,120.70531,4.675 155,396.6649,209.8046,27.654724,69.11713,4.651 155,154.70023,250.35278,57.44609,99.16724,4.579 155,-5.1410217,1.7581329,17.316555,44.01337,4.572 155,493.92065,228.78342,237.50647,513.0857,4.552 155,-11.434956,103.29112,28.765339,65.977646,4.525 155,368.43036,261.27283,35.361572,55.724976,4.523 155,170.60016,-16.040056,16.99202,37.651314,4.501 155,-9.845474,214.84683,29.036798,73.03311,4.483 155,383.46808,276.96262,24.368988,35.55728,4.469 155,328.21362,279.00708,38.249634,59.06421,4.466 155,596.9845,223.65378,40.6239,116.71988,4.444 155,589.62476,235.47285,30.265747,75.731125,4.438 155,26.057304,213.89195,31.358925,69.19026,4.425 155,249.4014,341.35883,21.930847,35.81906,4.421 155,-70.33754,-187.34497,211.79372,454.5563,4.402 155,594.25934,-45.14217,43.73285,96.19496,4.39 156,622.7195,-32.59885,27.04065,74.49539,6.547 156,627.4392,-17.928366,17.26184,47.032192,6.503 156,-5.3870273,-16.543772,16.967527,40.647823,6.251 156,613.8538,-20.157366,28.10736,72.08127,6.214 156,217.97833,372.49918,34.093643,60.90622,6.176 156,602.8789,-56.03289,53.490234,131.54056,5.985 156,201.24353,373.86713,33.68692,59.390472,5.89 156,230.8378,374.7517,26.173767,42.09781,5.84 156,-6.69478,489.52267,19.2926,42.402252,5.735 156,243.66718,204.1443,29.79419,78.66417,5.554 156,612.31866,454.59805,40.219055,107.241974,5.536 156,-12.555944,477.7893,30.099918,62.256714,5.463 156,178.05298,285.96176,36.009247,60.959595,5.269 156,-11.333893,-32.373768,29.79949,71.14688,5.216 156,316.34668,148.32324,28.622467,77.1676,5.17 156,618.8484,-5.8186846,19.269958,43.191986,5.119 156,228.69815,207.07408,33.530304,80.958694,5.109 156,-74.962,264.41702,203.36465,463.5859,5.076 156,-41.659874,363.51694,112.78468,276.79227,5.037 156,-0.094726086,285.47638,23.052235,49.24597,5.034 156,582.66644,411.98492,72.34747,176.37573,5.015 156,508.8989,238.66805,29.841705,63.560135,4.998 156,536.5084,311.15228,143.7262,338.4367,4.992 156,2.2706914,307.95483,30.577171,64.49573,4.985 156,-5.372939,214.88557,17.82518,43.400986,4.942 156,585.31274,-99.16587,74.91113,233.193,4.932 156,625.84875,486.91107,21.88446,47.53412,4.915 156,8.599033,333.40454,20.63229,34.766144,4.902 156,528.8978,244.82448,23.032227,52.452927,4.887 156,402.17746,269.44846,35.661316,63.47818,4.85 156,3.6849535,340.23038,18.956911,36.565063,4.847 156,505.13715,250.7295,22.563171,46.660812,4.833 156,-36.02566,-129.83163,117.08211,279.98853,4.783 156,-19.746906,-88.21268,71.59804,199.52084,4.779 156,353.21704,234.91183,43.804626,84.078735,4.744 156,494.06543,227.77148,237.33319,512.71405,4.708 156,306.74393,284.65802,33.996674,63.651855,4.66 156,216.95993,113.70813,32.231445,81.7652,4.542 156,153.17853,305.13675,37.381958,56.326782,4.489 156,274.0821,283.93723,34.530304,60.97409,4.457 156,183.1027,271.5043,24.487747,51.153046,4.416 156,473.8936,243.84991,60.210052,96.31976,4.414 156,-71.45056,-189.32663,212.76091,455.5252,4.349 156,594.8698,-45.951267,42.79657,97.56185,4.344 156,507.57077,229.6765,58.318573,102.54549,4.335 156,234.33093,365.55664,34.811462,58.88617,4.331 156,-4.6997237,329.49832,17.079342,40.092316,4.323 156,130.46054,275.1574,34.62085,59.73642,4.317 156,532.49664,-182.43172,148.15955,418.64716,4.301 156,613.8436,47.43033,35.195312,106.40628,4.269 156,135.5871,261.87125,61.860138,101.540955,4.191 156,291.84512,268.78772,33.671356,65.01114,4.188 156,528.7766,246.46753,45.164368,75.161865,4.155 156,598.3051,254.50288,36.897827,88.11638,4.147 156,555.8945,-1.0967293,17.184631,35.260624,4.134 156,582.7225,-16.50458,29.57843,68.79383,4.125 156,214.25948,376.84555,26.122665,42.31656,4.118 156,250.37337,286.6309,34.012802,56.006104,4.099 156,222.15147,209.30931,55.778885,107.863174,4.083 156,602.4395,-4.7641335,19.764526,43.7466,4.078 156,418.8039,263.29706,33.699097,58.740723,4.065 156,359.80405,221.41568,61.87384,111.77713,4.059 156,573.5693,-22.655975,52.551453,131.42607,4.041 156,281.7101,226.48108,58.87964,116.81793,4.04 156,321.01086,286.57217,35.012817,63.91971,4.037 156,142.37921,257.84158,37.803665,60.584045,4.036 156,40.788475,314.02,24.440392,37.61194,4.033 156,613.3235,-3.329445,36.46234,112.1936,4.032 156,137.03648,304.60718,36.212265,57.6828,4.032 156,3.861208,-13.362503,15.310976,35.8006,4.018 156,259.7483,243.92612,32.097443,66.485565,4.013 156,516.6067,261.41974,31.89087,55.004944,3.985 156,322.19733,219.13239,44.14023,88.47339,3.984 156,370.99167,242.3652,33.174103,70.14313,3.973 156,238.02298,229.43716,31.11264,67.7171,3.953 156,481.3356,269.62085,36.400787,56.34555,3.947 156,441.158,246.94281,62.535492,96.28412,3.915 156,-4.8780117,123.47269,16.953117,38.963562,3.912 157,-6.0476346,-17.277832,18.17654,43.09869,7.667 157,5.3382516,181.60426,33.96985,82.95329,7.423 157,-10.944593,-32.207912,29.52362,74.39153,6.254 157,-12.384019,478.7221,30.098217,62.23114,6.001 157,602.3066,-55.782917,53.835083,135.91537,5.957 157,626.666,487.54013,20.686646,45.50595,5.883 157,627.42444,-16.72972,16.881042,44.609806,5.552 157,242.77283,245.6462,34.72113,63.084427,5.487 157,85.3117,74.85164,34.185463,80.62398,5.476 157,585.4543,-99.45358,75.36182,235.5653,5.28 157,-9.687318,177.70123,30.113102,80.61505,5.271 157,40.482655,307.00912,38.05218,62.054382,5.21 157,-74.196815,265.75647,202.95828,461.7727,5.149 157,-6.4143276,489.99527,18.975391,41.77292,5.138 157,612.67444,452.2867,39.649902,110.214325,5.104 157,36.73287,285.63577,35.80911,65.99432,5.07 157,312.5031,332.80783,38.83139,58.06076,5.026 157,623.03455,-33.85361,26.042236,75.1024,4.971 157,-6.2464323,1.3676796,19.185055,44.866863,4.967 157,-17.552732,-64.46945,56.085358,144.61162,4.945 157,-22.28371,400.8219,80.48015,176.31348,4.908 157,15.685194,198.20737,36.298325,74.24246,4.881 157,184.99849,216.07018,33.7874,60.31276,4.754 157,536.317,310.54175,143.10309,340.58252,4.743 157,257.75568,266.703,34.29315,63.870758,4.735 157,582.9151,411.62274,71.2912,175.60394,4.711 157,-72.65832,-190.17422,213.51178,457.81967,4.695 157,36.50036,216.1185,34.202095,74.70468,4.687 157,198.42859,227.21982,26.438324,44.423676,4.648 157,-5.7387924,208.64278,20.403812,52.8658,4.644 157,493.69827,227.7131,237.77328,515.3727,4.507 157,105.75479,295.43042,35.405396,63.271942,4.469 157,7.8841543,110.01394,60.049683,148.50128,4.418 157,533.0219,-181.96088,147.40668,417.968,4.398 157,28.422024,260.681,56.73141,112.53061,4.372 157,41.169678,106.9979,59.948486,149.29352,4.368 157,2.641427,-15.915251,17.346817,40.46711,4.363 157,508.7293,-60.901962,53.971558,130.9671,4.353 157,207.00046,233.32986,25.338943,43.157257,4.322 157,595.5028,-45.013756,42.532654,99.51189,4.316 157,-36.80858,-128.60197,117.69701,279.53748,4.302 157,170.73059,227.40314,59.16765,114.899475,4.298 157,241.22084,249.48631,21.847092,36.6949,4.214 157,105.682495,-32.137604,61.08081,122.16476,4.213 157,247.18773,240.27452,60.724197,106.85664,4.212 157,-4.8302126,151.4843,37.14992,102.684204,4.209 157,270.61432,269.63834,47.960144,73.75052,4.205 157,25.73605,306.2264,38.90951,54.820343,4.185 157,243.40172,274.0682,34.675888,60.04892,4.167 157,613.66064,16.606468,35.61731,105.43674,4.153 157,-2.5433266,313.87292,31.068302,64.325165,4.137 157,3.9445865,292.22195,39.868866,91.6806,4.125 157,331.8332,-0.69595337,17.98877,34.113293,4.116 157,51.99619,138.33585,63.772167,170.83112,4.104 157,22.728365,177.68835,33.53105,70.71677,4.076 157,262.99542,251.73207,24.32129,38.90355,4.057 157,598.9291,83.08796,35.99951,101.72903,4.04 157,573.9387,-17.699635,51.585022,123.81877,4.026 157,401.1822,266.51587,34.274048,55.400543,4.017 157,476.6479,-60.75106,53.94879,130.67508,4.0 157,138.43376,228.78029,61.21292,118.27519,3.99 157,15.804365,142.27951,72.756195,202.66269,3.985 157,2.4457955,147.65347,47.037502,142.8375,3.984 157,323.41376,-1.1265507,18.285614,35.247513,3.958 157,219.36179,-3.2056923,18.404694,35.875294,3.945 157,540.1355,-60.509872,54.600098,128.94574,3.927 157,64.171364,286.53876,44.93087,90.98871,3.911 157,532.5529,-24.513489,38.166626,90.3199,3.91 157,498.15994,-45.288544,43.575714,97.70262,3.899 157,281.51355,240.78639,60.212463,104.3344,3.895 158,626.8305,487.7964,20.427856,45.14148,6.323 158,-5.8459625,-18.008987,18.092592,43.647224,6.26 158,46.505947,267.5979,46.613453,85.96332,5.895 158,-0.26503205,226.25455,27.597857,64.00922,5.845 158,-10.336852,-32.374714,28.979885,73.71136,5.726 158,-8.843402,466.0153,38.031406,90.07657,5.641 158,613.0802,455.1703,38.802185,106.94318,5.604 158,585.629,-97.39438,74.78223,232.60025,5.382 158,42.728306,300.62134,37.958324,60.686707,5.326 158,56.272415,312.1725,36.586945,54.91501,5.269 158,622.9526,-34.220963,26.678467,77.172935,5.242 158,627.4378,-17.894213,16.903564,46.863277,5.173 158,-6.2849045,489.9649,19.19423,41.80078,5.122 158,-73.88727,265.99463,202.63858,461.98315,5.076 158,371.41077,-32.164726,30.31659,69.86317,5.062 158,-17.23975,-63.774,56.119545,144.53616,4.968 158,425.93182,0.09508133,20.294678,35.905968,4.966 158,408.85712,-3.4066906,22.641937,39.97441,4.937 158,-41.24174,364.89972,111.96529,277.0243,4.875 158,583.2024,411.29944,71.57477,177.1864,4.872 158,602.834,-56.175987,53.377808,139.6167,4.831 158,536.6094,310.8374,142.39978,340.46265,4.781 158,164.24242,225.12929,32.547928,71.63118,4.755 158,-36.163803,-129.71844,117.70696,280.13226,4.725 158,240.18279,279.96033,46.816605,74.56595,4.71 158,389.2311,-31.333775,30.534332,69.81992,4.698 158,-6.80085,70.83321,20.040766,46.73461,4.688 158,262.6633,182.1286,23.309357,48.77475,4.662 158,237.9195,259.7107,50.209717,62.832,4.661 158,137.11847,230.11847,62.692337,117.6062,4.607 158,-0.49096107,265.4631,29.745195,70.83472,4.603 158,383.23547,-20.04518,22.300964,44.490368,4.603 158,532.0377,-182.64021,149.88788,423.6497,4.595 158,272.23163,279.21512,47.71225,77.97888,4.58 158,233.62756,205.52838,32.59796,59.59436,4.527 158,10.386052,239.5606,61.488537,121.69249,4.52 158,-71.82633,-189.50897,212.9711,456.95438,4.478 158,416.18716,6.8097687,23.629395,42.300743,4.443 158,172.89748,271.01926,33.40825,62.67447,4.386 158,404.98868,-32.01445,29.794342,71.50656,4.356 158,378.2759,-58.790718,59.671295,121.35227,4.355 158,-0.7816076,134.80061,29.360107,72.933365,4.318 158,279.29703,260.06345,62.93689,90.72171,4.316 158,233.4236,267.8959,33.70787,50.829132,4.293 158,493.47858,227.57544,238.03754,515.23883,4.287 158,12.074186,-13.791882,58.386337,121.16881,4.287 158,-6.1536703,245.10695,19.995806,43.25273,4.276 158,-1.4318168,84.29593,28.674309,72.20346,4.276 158,218.1037,273.05078,58.990143,104.21405,4.27 158,105.59165,-35.306343,60.7116,128.48824,4.239 158,410.09692,-57.825626,58.47876,123.22301,4.229 158,313.91293,253.49942,59.629547,96.18085,4.213 158,396.42297,-5.1346264,31.679565,54.651543,4.212 158,618.79895,489.50992,19.955017,42.805573,4.181 158,247.08765,262.42145,63.92575,86.38306,4.177 158,212.65547,204.75024,32.527634,67.359436,4.141 158,46.40168,237.47191,31.53511,68.979324,4.13 158,-11.517601,232.767,31.406609,68.01312,4.128 158,303.4515,273.04376,48.73648,73.62988,4.091 158,-6.334741,277.98596,19.898195,45.32489,4.078 158,58.646935,-12.542858,58.41143,115.786804,4.075 158,12.006187,105.04452,56.160965,128.85202,4.069 158,73.03531,249.63412,58.29158,112.80139,4.029 158,13.58429,292.3993,47.96701,82.99109,4.026 158,247.00523,216.80574,24.953964,45.568863,4.025 158,210.35205,269.83392,35.321594,49.84375,3.984 158,175.52805,243.19266,46.983932,76.21332,3.917 158,17.825935,278.80136,34.276897,58.47769,3.915 158,-6.317539,151.25865,19.77544,43.686356,3.909 158,594.4381,-45.436676,44.947327,100.37603,3.902 158,247.78006,261.19498,23.827637,39.5347,3.889 158,57.886856,210.3414,60.35707,122.01257,3.875 159,-2.0243084,177.44202,25.908686,87.63226,9.916 159,-6.0218325,-17.00203,17.962088,43.521664,7.73 159,378.8359,267.66373,19.115143,36.09024,6.679 159,613.1243,452.44528,38.85431,109.90347,6.637 159,625.93567,486.09064,21.230774,46.21588,6.415 159,-11.016901,-33.03157,29.420486,77.78935,6.144 159,-8.77325,466.16357,37.841557,90.64838,6.033 159,369.54913,265.14423,21.263367,38.689148,5.842 159,-6.4127455,489.70474,19.311209,41.69937,5.641 159,37.31555,179.74176,34.356308,82.21478,5.523 159,-18.217466,-63.912357,56.66143,141.57074,5.449 159,11.017706,156.90373,57.058037,143.22792,5.389 159,-8.064695,205.8554,28.641989,79.39046,5.313 159,-73.342445,265.51068,201.86902,462.67535,5.277 159,627.3221,-18.183517,17.159851,46.32456,5.257 159,23.432602,195.82805,60.053024,124.0421,5.193 159,585.69116,-98.82497,74.74939,232.80496,5.161 159,610.74335,-48.0433,42.31543,101.15384,5.051 159,54.711338,176.61256,33.139645,74.62683,5.05 159,0.20288944,210.95108,51.129475,132.87698,5.032 159,-21.661968,403.01318,79.52375,174.96887,5.016 159,490.19955,-180.14517,234.89017,427.5061,4.878 159,419.37198,-15.664016,16.44513,38.69794,4.871 159,-36.315617,-127.46149,116.60039,277.46674,4.857 159,386.24115,272.5902,19.507751,37.495605,4.854 159,12.994631,-16.703167,56.99671,118.38075,4.85 159,583.1197,410.73926,71.66614,177.81543,4.788 159,536.7241,311.02606,142.60022,339.94452,4.782 159,618.3387,487.359,20.625916,44.63568,4.747 159,2.0964646,172.93585,40.725983,121.77112,4.623 159,427.19785,-16.56467,16.674988,39.554157,4.608 159,20.097778,245.90952,28.636688,71.17853,4.567 159,27.689537,192.37779,34.14478,82.34938,4.551 159,54.829567,212.02954,61.45999,110.53076,4.448 159,-9.402058,-6.1663322,39.949596,98.59752,4.359 159,493.7323,227.38486,237.69989,514.9979,4.323 159,522.9543,-0.6045742,19.314026,34.686966,4.294 159,24.536404,185.87448,25.238869,62.903946,4.213 159,360.9242,324.208,21.41919,27.296661,4.175 159,335.23837,263.09042,24.550415,36.340942,4.175 159,37.37,225.06793,33.501705,71.051636,4.166 159,323.4648,254.0939,32.733185,51.436462,4.152 159,-5.042695,232.08493,19.0923,53.72473,4.145 159,352.54062,264.61835,24.04776,38.056427,4.116 159,361.38464,268.47897,23.273193,41.01474,4.111 159,373.28857,261.67313,29.680603,55.739807,4.109 159,1.2088323,1.5744534,21.192835,51.869118,4.104 159,-71.53265,-188.46048,211.79367,453.47363,4.086 159,42.123566,-31.04913,59.529785,124.80385,4.056 159,2.519774,-15.411831,17.179262,41.86927,4.051 159,4.2523313,-1.4341965,40.666386,106.860466,4.029 159,116.88103,266.4835,31.56401,50.64453,3.971 159,-17.262064,230.23848,51.317192,136.96892,3.956 159,-15.415945,126.21476,50.205566,150.53748,3.952 159,32.74811,-4.6611786,45.995457,90.01092,3.891 159,338.919,253.24625,33.674866,49.265045,3.873 159,81.40174,232.88278,44.84124,75.31311,3.867 159,10.352047,167.4755,35.773357,66.91724,3.827 159,16.952589,270.36346,42.4516,74.33075,3.822 159,49.367744,226.08237,44.506165,79.92206,3.821 159,86.9843,215.6379,62.58754,106.321945,3.819 159,58.074806,273.34995,34.067207,57.47406,3.808 159,1.724124,-40.811234,44.103878,96.79356,3.802 159,-5.5988913,136.22495,18.170998,46.30977,3.744 159,431.08063,-35.217155,27.544434,75.48121,3.708 160,-5.31577,-17.986427,17.611816,43.128445,7.303 160,280.33606,262.32187,23.701172,33.409485,6.964 160,-8.641319,465.8308,37.54946,90.34155,6.927 160,613.2619,453.4845,39.10266,107.968506,6.275 160,-11.021227,-33.3255,29.46227,73.66355,6.206 160,282.90665,254.14688,33.394043,48.938354,6.096 160,298.97784,252.6573,33.524536,53.529404,6.082 160,312.43243,261.98376,23.796387,38.38327,5.84 160,626.7646,488.76913,20.72229,44.978058,5.747 160,539.74677,5.15765,18.794006,38.592907,5.465 160,412.92282,-13.0321045,54.469604,113.7801,5.385 160,627.2897,-16.600267,16.880127,45.873936,5.377 160,264.68268,264.35913,23.672668,34.52664,5.361 160,-72.81854,266.18597,201.25964,461.58038,5.267 160,-6.122437,489.88678,18.880337,41.812317,5.245 160,-17.751677,-64.73456,55.997612,144.34575,5.181 160,287.7875,253.14993,23.160889,32.533997,5.178 160,585.31866,-99.17376,75.45636,233.44128,5.147 160,622.94794,-33.4209,26.362488,75.70004,5.131 160,618.54443,490.81558,20.373962,41.35739,5.038 160,444.24808,-13.03326,56.035553,113.9491,5.015 160,295.41245,256.2554,24.402374,35.91693,4.992 160,137.35913,255.70352,21.38382,35.68445,4.948 160,330.26874,265.03958,19.327362,34.058044,4.945 160,266.83057,251.71106,34.9635,52.021484,4.914 160,490.16785,-179.94432,234.86353,427.38107,4.874 160,-21.42368,403.85693,79.04309,174.03064,4.874 160,602.9214,-55.464592,53.10681,140.53409,4.775 160,524.25555,0.4729948,17.225037,31.3423,4.775 160,583.8201,408.73236,71.24042,179.12897,4.735 160,532.08203,4.1162643,18.721558,37.57642,4.728 160,0.08301377,92.48082,28.127699,78.15486,4.651 160,546.9679,6.555094,18.727966,36.911453,4.632 160,536.9311,312.15063,142.01837,340.02295,4.538 160,-4.9478617,55.804726,17.789272,45.103294,4.412 160,508.87842,-11.745655,55.904907,112.8728,4.391 160,572.9865,2.5174341,15.561462,28.419521,4.362 160,112.77994,256.0847,47.127243,63.125366,4.358 160,-36.901356,-126.77484,117.48688,275.3076,4.357 160,-5.598135,107.25813,19.167986,50.22278,4.322 160,-4.6302476,270.66766,17.385052,42.588226,4.293 160,-5.249634,75.56424,17.631817,42.234215,4.261 160,541.3697,-10.704403,54.73285,113.14436,4.258 160,476.78058,-12.197212,56.675964,114.56314,4.251 160,493.56857,226.5925,237.77634,516.81055,4.17 160,2.8102298,-15.980792,16.987722,39.643684,4.14 160,153.82011,255.9804,21.023605,33.272873,4.14 160,5.6366324,468.91046,37.55817,92.24902,4.072 160,561.63403,489.53143,20.770203,41.314392,4.061 160,145.35059,256.74384,21.92929,34.55011,3.98 160,507.45325,-0.44589806,17.825806,33.035744,3.927 160,247.71979,265.81735,24.398743,34.699768,3.913 160,434.43036,-5.713665,42.848694,87.619995,3.899 160,355.25485,-15.335136,17.0878,39.20175,3.892 160,565.36456,3.0222015,15.427002,29.25486,3.864 160,2.9682696,284.9674,32.15274,61.271942,3.858 160,525.6002,-11.507107,29.969666,58.127033,3.848 160,-5.2624655,230.6209,18.70984,45.569504,3.846 160,81.378334,254.91805,46.433365,63.93831,3.843 160,273.87738,267.8907,37.277893,52.940704,3.835 160,129.26775,243.41873,46.52443,65.47427,3.82 160,-10.64014,-6.6076202,41.001755,100.87472,3.819 160,556.6193,2.5652485,16.112488,30.32485,3.81 160,522.9538,-12.588251,16.01117,34.67425,3.796 160,553.727,489.66193,20.880676,41.560364,3.781 160,338.83588,267.42932,18.67395,33.523712,3.781 160,569.76587,489.4418,20.934387,41.499603,3.763 160,144.5564,252.48878,44.879715,63.631454,3.736 160,170.92657,256.02588,18.596558,28.071655,3.732 160,499.55505,-0.96245766,17.949768,35.118782,3.725 160,571.88727,-11.887165,14.539734,32.886253,3.672 160,161.3893,257.33603,21.183792,34.93936,3.67 160,506.74924,-13.133959,16.326569,35.502617,3.669 160,-16.234024,221.4006,50.04923,132.7695,3.664 160,442.81158,-15.871414,16.943207,37.7023,3.651 160,9.168146,230.44579,58.649887,107.39455,3.643 160,596.79877,462.07977,39.208557,97.44647,3.635 160,515.80676,-0.262949,17.39447,32.539642,3.633 160,-10.024889,41.141613,28.17946,74.15912,3.632 160,347.09406,269.0645,18.236786,32.76953,3.607 160,321.9893,258.31042,19.428009,34.43283,3.605 160,575.3885,-11.829372,52.454468,124.71469,3.604 160,581.15405,1.5365095,15.074951,29.318985,3.589 160,515.04156,-12.532912,16.04425,34.636333,3.579 160,500.40652,-13.575117,30.21634,60.58059,3.577 160,250.20291,251.64603,35.532288,57.070953,3.553 160,46.798958,215.02406,28.973808,68.837265,3.549 160,362.6097,-16.970238,17.60263,40.57061,3.498 160,-70.73541,-186.10385,210.56099,449.58926,3.491 160,530.35815,-2.0633316,43.07129,83.87565,3.484 160,-0.8536136,199.89934,28.291945,78.0074,3.48 161,-12.1100235,477.26257,30.36567,66.60919,8.915 161,-6.6308355,489.14127,19.738766,43.806,7.9 161,-5.907082,-17.454498,18.112116,43.334114,7.267 161,280.77527,249.4192,22.058777,34.23204,6.307 161,-11.099931,-31.746368,29.858746,72.21525,5.853 161,613.62427,455.42242,38.224243,106.38794,5.823 161,300.92252,246.53766,31.96811,53.68695,5.635 161,627.4324,-15.522335,16.329773,44.61568,5.631 161,-17.258904,-64.103905,55.912693,142.65106,5.581 161,2.032963,488.6189,20.056337,43.889282,5.479 161,585.2772,-99.04382,75.47937,233.21347,5.469 161,321.1441,255.29886,21.296448,40.10791,5.46 161,-73.38316,265.10873,202.0837,463.2985,5.343 161,65.362175,266.79965,21.870842,42.50232,5.252 161,611.7846,-49.902267,40.884827,105.621216,5.211 161,626.6135,487.63797,21.094727,45.959015,5.076 161,490.27332,-180.80643,234.92712,427.4517,4.979 161,583.6885,409.88257,71.286865,177.68433,4.969 161,337.92722,267.39145,20.61145,34.24945,4.91 161,-17.71835,434.9115,55.066097,140.53247,4.773 161,457.79156,1.7957802,22.47882,41.00608,4.689 161,-36.784985,-126.23122,116.98859,273.91614,4.673 161,274.4336,248.56378,34.377716,52.672607,4.656 161,120.805725,252.04619,22.387344,38.92073,4.655 161,313.3852,250.61595,20.816193,37.237778,4.633 161,475.79163,-13.288912,32.827454,59.322884,4.629 161,-40.78389,364.80176,111.3008,277.21423,4.623 161,4.1383767,254.48697,31.715189,68.03262,4.575 161,536.57886,312.0661,142.59656,340.03168,4.567 161,427.71228,-17.309227,57.053345,112.049225,4.544 161,329.7282,259.23428,20.4823,35.105408,4.524 161,9.124789,489.12833,21.22934,42.560883,4.385 161,449.96432,3.6549397,21.92743,38.556084,4.381 161,-14.664192,222.09329,48.225677,131.42548,4.348 161,156.78528,253.55736,14.865448,23.856705,4.336 161,460.12314,-15.98497,56.97641,111.475426,4.329 161,493.45587,226.61285,237.57062,515.5882,4.308 161,346.45325,269.34952,19.263306,31.181702,4.296 161,-5.9958944,87.86992,18.894375,44.368088,4.283 161,618.47906,489.38626,20.758179,43.514496,4.275 161,442.65814,4.91107,21.057861,36.2462,4.273 161,89.34055,260.25934,22.330551,36.500305,4.2 161,-2.438022,464.74988,28.805525,71.3186,4.183 161,473.16064,-0.53954315,23.501099,43.325466,4.183 161,492.28976,-12.930828,31.95755,60.986717,4.183 161,489.44318,-2.735857,21.748047,35.195274,4.155 161,490.9768,-34.47193,57.53705,122.4577,4.117 161,-5.8554864,230.83778,19.529997,46.016006,4.099 161,-6.311381,51.402466,19.668968,51.198456,4.06 161,274.2668,244.0969,21.994354,31.359985,4.026 161,-9.915484,-6.3543396,39.887657,100.27161,4.015 161,2.4024022,-16.368208,17.473473,41.352222,4.006 161,460.33533,-12.219578,32.67578,59.599663,4.002 161,417.95285,-9.483227,45.061615,87.959335,3.985 161,493.94983,67.79254,31.052063,57.71746,3.957 161,-6.1813917,144.91774,18.629198,43.301483,3.937 161,490.17563,-15.284014,18.092468,37.163097,3.929 161,-6.0807133,174.04709,18.856625,47.92697,3.908 161,474.51062,-14.722601,17.661133,36.381958,3.907 161,498.69153,-15.26288,17.73523,37.1109,3.903 161,449.6844,-6.92564,45.29187,83.92992,3.88 161,395.80505,-19.38279,57.6633,115.40725,3.87 161,227.79352,249.32639,17.253647,34.52234,3.83 161,290.57614,242.04614,17.281067,26.236603,3.82 161,513.5419,-8.076382,44.781006,88.37979,3.819 161,287.22174,255.94922,25.675995,41.16925,3.79 161,256.73633,249.84393,37.555267,56.464233,3.788 161,435.72513,-0.55239964,18.467133,32.991325,3.776 161,9.338982,216.67871,57.314476,109.75348,3.754 161,11.362472,245.26004,70.97374,182.9589,3.72 161,621.0447,0.23485184,15.817932,34.282604,3.717 161,295.99893,251.47736,24.830414,41.136597,3.715 161,-70.37434,-188.64679,210.33215,453.00693,3.71 161,485.2235,-32.35098,29.756897,69.44551,3.71 161,288.6445,249.05002,21.247437,31.123413,3.692 161,5.1793003,465.32788,38.404747,97.4823,3.686 161,138.3722,-0.13578415,33.160736,72.06235,3.686 161,148.11476,253.27908,16.45044,31.240479,3.677 161,427.8732,-1.5988998,18.3927,32.821365,3.657 161,481.9376,-5.6012955,45.25699,84.96265,3.656 161,114.3595,236.35979,43.039124,66.36018,3.645 161,33.86377,233.11176,43.024933,76.19769,3.629 161,-5.585867,16.31162,18.10558,45.197815,3.617 161,545.798,488.19827,21.22467,42.444427,3.577 161,482.2974,-14.444622,17.965668,36.38563,3.576 162,-6.476869,488.97766,19.33677,43.27655,7.676 162,-11.999449,478.61133,30.1281,64.399414,7.445 162,236.87485,253.77454,14.45755,29.845764,6.544 162,-6.0370736,-17.415186,18.696373,43.98842,6.484 162,296.46252,245.99446,22.876099,37.880814,5.81 162,613.24945,453.34772,38.972534,109.01135,5.699 162,623.4821,-33.142956,25.930237,73.41087,5.651 162,-17.200014,-64.40832,55.50688,142.99626,5.63 162,627.5486,-15.725365,16.524902,43.402935,5.566 162,-73.59974,264.76117,202.43063,463.6269,5.379 162,243.4277,250.34714,16.978607,31.262146,5.123 162,279.81458,244.57196,25.068115,37.351013,5.041 162,626.42444,487.27332,20.86206,45.744263,5.014 162,-10.70377,-31.341576,29.507456,74.173744,4.991 162,264.52625,244.54181,38.055206,64.63934,4.987 162,589.49896,3.549492,14.73938,27.851662,4.952 162,-21.677185,402.22772,79.12405,175.43207,4.946 162,583.7146,409.59628,71.075806,178.21799,4.923 162,597.69,3.3829641,14.093323,27.089577,4.882 162,-36.545532,-126.40706,116.62384,273.4248,4.824 162,490.6253,-180.586,234.97784,426.99402,4.824 162,585.69696,-101.280136,75.31622,235.26216,4.763 162,620.928,0.48805046,16.29541,32.191284,4.755 162,581.18176,3.1760159,14.908447,29.937983,4.732 162,573.0652,3.385972,15.656189,29.102734,4.575 162,536.8145,312.48523,142.4549,339.46704,4.55 162,611.43365,-50.084644,41.271362,104.05979,4.494 162,287.61087,249.43588,25.13446,39.910126,4.445 162,460.08197,7.8512955,17.773193,30.255077,4.412 162,229.70703,253.72858,13.7509,30.308289,4.369 162,493.20163,227.29022,237.85477,515.1667,4.284 162,164.37827,254.84094,14.501205,22.024658,4.243 162,428.0551,5.3049316,17.991638,34.174587,4.233 162,-14.739521,218.87184,48.01174,135.08238,4.225 162,0.21732807,213.53722,26.962704,84.45967,4.215 162,2.1281,488.75363,19.620024,43.388275,4.187 162,-4.12547,249.5819,17.701786,46.011154,4.153 162,565.4303,2.757578,15.321289,29.854414,4.152 162,555.6865,6.985317,17.592957,34.17562,4.124 162,309.75476,242.38725,29.944672,58.719894,4.102 162,262.55252,249.35283,26.829712,45.076675,4.061 162,156.60722,255.43703,15.946503,26.364578,4.034 162,605.6013,3.7009115,14.283081,25.58963,3.993 162,443.8171,6.5190926,18.144531,32.08327,3.917 162,612.9145,3.5734806,15.28418,27.129673,3.904 162,-0.22424221,257.46182,25.393078,69.58783,3.903 162,321.96948,250.03328,20.691101,38.53325,3.877 162,-10.003429,-5.7521896,39.972107,98.819885,3.867 162,-5.820537,154.94743,18.627611,42.583313,3.849 162,451.69647,7.9412785,18.122131,30.636091,3.836 162,139.09352,235.6276,17.7818,32.30661,3.827 162,507.01297,-12.559599,16.177643,35.70732,3.813 162,-70.34512,-188.81226,210.29214,453.84442,3.807 162,540.3197,1.4148407,16.427917,32.104725,3.795 162,618.416,488.5307,21.012207,43.92804,3.784 162,221.46634,257.8122,15.650375,33.879395,3.782 162,1.8795109,-16.503778,18.222174,43.13333,3.773 162,507.1682,1.7423782,17.461853,31.484955,3.769 162,28.167877,251.77917,30.746803,61.278503,3.768 162,250.59628,249.39182,19.658325,33.061584,3.767 162,288.3103,240.61203,21.578125,31.535767,3.718 162,499.2373,0.9707718,18.808899,32.83303,3.705 162,468.10336,6.375016,18.453033,30.28638,3.703 162,-5.6138506,471.73914,16.651966,41.72351,3.695 162,172.97772,255.41426,13.843399,21.393448,3.67 162,-14.190377,155.01398,48.744545,144.8367,3.651 162,148.98636,255.58652,15.715454,27.223145,3.639 162,475.79037,4.3113155,18.59201,33.210144,3.631 162,562.0461,489.54834,20.59845,40.539,3.631 162,205.27916,258.34906,15.41478,30.385956,3.615 162,338.34192,494.15063,19.57837,35.35028,3.614 162,339.1203,-15.056583,16.563416,38.73667,3.612 162,213.38528,259.21896,15.333221,32.60846,3.575 162,9.381562,489.34558,20.648804,43.077637,3.562 162,163.7868,266.83453,42.206482,104.2543,3.561 162,326.00397,485.82434,11.941467,21.191559,3.554 162,515.61505,-12.673361,15.6345825,34.51827,3.553 162,141.8073,-32.373306,28.686707,73.626144,3.54 162,-10.152173,208.52203,28.684479,74.79443,3.54 162,-5.4261346,230.07043,18.868362,48.96805,3.536 162,491.66092,-0.65291023,19.190643,33.13848,3.529 162,475.08255,-15.524748,16.690094,35.404648,3.523 162,330.5881,493.8826,19.563202,34.87973,3.503 162,5.024655,465.97812,38.06094,96.171844,3.5 162,322.8198,492.94208,19.14862,35.555725,3.486 162,141.2251,255.30516,15.243729,27.984604,3.475 162,-5.943815,136.29202,18.49664,43.675446,3.468 162,170.53804,248.78816,56.486588,136.87254,3.447 162,317.9233,254.7912,32.273834,57.055237,3.43 162,436.56552,0.5338974,16.303467,30.305338,3.417 162,91.4317,0.72504807,18.070892,33.19584,3.416 162,-5.633939,275.48233,18.8955,48.748505,3.41 162,1.7890704,6.7026386,21.622938,47.41349,3.41 162,-5.32542,0.7412052,19.16856,43.35376,3.409 162,-10.25547,446.27466,38.80543,91.65674,3.405 162,346.39767,494.30942,19.522858,35.581207,3.391 162,280.9256,255.68887,37.049774,58.158997,3.384 162,-6.077996,56.211685,18.741568,45.158813,3.378 162,3.608563,261.2315,37.64426,90.41104,3.363 162,613.73425,365.18054,36.034485,113.28363,3.358 162,9.231327,-90.15392,74.140625,205.52661,3.353 162,412.415,-0.9937973,16.535858,31.443115,3.352 163,-12.187174,477.10574,30.363071,66.40347,9.551 163,-0.616591,250.01012,22.119247,52.82054,9.245 163,-6.5973716,488.37973,19.847698,44.01169,8.175 163,-5.7713604,-17.43954,17.949879,43.12151,7.626 163,-10.771582,-31.870314,29.116846,72.492065,6.603 163,155.64157,250.82796,16.275269,26.512924,6.063 163,324.91956,240.11404,30.105316,60.59253,6.031 163,613.0932,452.73483,39.22516,109.41696,5.919 163,39.18493,258.18616,25.551552,41.7406,5.569 163,-73.22299,264.51648,201.8475,463.3955,5.414 163,-17.572363,-64.83775,55.975456,144.33063,5.377 163,1.9074941,488.21384,20.179823,44.04123,5.297 163,259.7355,228.11642,33.614746,58.166443,5.042 163,612.0271,-50.978283,40.658447,107.04766,4.968 163,-36.29,-128.67894,116.18591,277.9007,4.915 163,-17.411377,435.356,55.077034,139.28366,4.906 163,583.64343,408.35324,71.31433,179.1365,4.835 163,627.48706,-15.816749,16.471985,44.86662,4.806 163,46.375473,252.222,25.814758,41.866653,4.786 163,585.7451,-100.89076,75.37036,235.13007,4.726 163,490.37918,-180.59538,234.81845,426.8589,4.715 163,626.0684,486.98853,21.656555,47.09735,4.702 163,536.8511,312.2262,142.44519,339.67926,4.63 163,139.32945,252.61053,18.431168,31.213806,4.629 163,-40.23148,365.69507,110.61069,275.99072,4.597 163,149.01813,241.83157,17.557404,31.987183,4.584 163,347.453,252.25761,17.237701,32.41295,4.515 163,28.536037,248.76828,32.52364,57.749878,4.498 163,163.93005,250.39484,15.457062,24.398438,4.409 163,-10.418625,-7.1210747,40.988495,100.7184,4.291 163,-71.22862,-189.51659,212.10649,456.04553,4.277 163,493.63593,226.6629,237.4972,515.3815,4.263 163,-5.3016973,1.182127,17.930433,44.391594,4.25 163,-9.293199,54.774757,38.905476,100.67138,4.184 163,9.272777,488.8425,21.054222,43.50119,4.147 163,131.68478,252.22235,18.46959,33.972412,4.141 163,-5.092086,24.915268,16.939571,41.95201,4.092 163,265.22174,236.40532,23.684143,35.387222,4.078 163,338.14215,249.67421,20.02359,37.653183,4.053 163,555.71075,6.7915382,18.033508,36.43595,4.04 163,55.66509,257.961,24.703732,41.010742,4.037 163,460.2814,7.084791,17.334686,32.444626,3.978 163,62.59174,251.4899,26.337292,40.01648,3.956 163,493.4784,0.5503464,15.660156,29.413382,3.888 163,540.12573,8.8039875,18.003479,33.311676,3.865 163,41.015717,223.99469,36.84247,60.081635,3.84 163,-13.677945,214.53925,46.548824,135.03558,3.836 163,-8.983006,225.16171,28.436373,75.39111,3.835 163,-5.165862,52.578026,18.691248,47.323067,3.83 163,2.6026182,-16.358147,17.108143,40.59063,3.794 163,476.73297,0.090408325,16.570557,30.13467,3.781 163,33.159897,264.23972,21.768204,38.25067,3.766 163,11.770199,-36.266083,57.62595,134.8244,3.758 163,5.407239,466.8263,38.18706,95.109985,3.756 163,11.125872,45.881264,55.956085,139.41394,3.737 163,617.8283,488.46732,21.98462,44.959015,3.72 163,93.80105,-25.560307,53.853493,128.84927,3.69 163,444.27112,6.9967976,17.457703,33.865425,3.69 163,547.5704,7.939472,18.31427,34.549828,3.682 163,-4.496154,239.10275,18.442873,51.98755,3.671 163,-3.0358815,464.3871,28.824535,72.475464,3.642 163,-4.280158,264.5637,18.483324,49.7731,3.631 163,139.57388,237.85677,18.315948,34.6342,3.63 163,-10.04953,153.03995,39.738663,101.572586,3.621 163,271.35797,241.743,25.294983,39.495895,3.616 163,467.99728,6.951462,17.852295,32.244957,3.587 163,573.02,2.6532488,15.861023,31.411613,3.56 163,2.0851254,-41.54782,43.708836,97.68078,3.535 163,-14.682797,80.29962,48.044598,150.24994,3.497 163,3.4472454,250.2567,28.705595,66.11592,3.492 163,596.26764,460.42102,39.635437,99.48279,3.485 163,161.90842,-14.253947,18.841797,39.99202,3.482 163,89.8195,-18.33577,18.702232,42.64379,3.482 163,565.0048,2.3739548,15.760986,32.063713,3.48 163,-5.4477167,153.12991,18.217606,43.847916,3.42 163,501.3696,1.1975489,15.435333,30.312588,3.416 163,-9.273842,39.32317,28.85162,73.58232,3.406 163,252.31113,240.14378,17.69342,32.555496,3.402 163,553.8535,488.0928,21.263916,43.38858,3.393 164,-5.801172,-16.626682,17.720518,41.953403,7.162 164,-12.170743,479.4431,30.594093,62.749146,6.533 164,613.04034,453.83316,39.41089,107.752594,6.246 164,-17.137537,-64.00005,55.527878,142.61497,5.836 164,-6.231598,488.9943,19.33137,43.163788,5.77 164,626.0855,486.63153,21.583252,46.73224,5.499 164,-11.069876,-32.108086,29.842375,72.586426,5.378 164,-16.802256,438.97958,54.42211,135.86063,5.312 164,-73.23718,265.85968,201.76941,461.57758,5.264 164,585.7107,-98.73829,74.91101,231.5376,5.089 164,627.2629,-17.499031,17.10199,45.849968,5.0 164,489.66888,-179.59718,235.14056,426.33017,4.86 164,583.3836,409.44666,71.60364,178.03638,4.839 164,-36.599068,-127.76507,116.36616,275.11832,4.798 164,610.9321,-48.82262,41.83264,101.46828,4.773 164,347.97852,271.89713,32.3432,59.9032,4.753 164,536.40576,311.50446,142.97015,340.36664,4.684 164,-40.48996,366.3559,110.669106,276.3808,4.607 164,617.83545,488.39758,21.477173,44.191467,4.584 164,2.1553802,229.04082,29.827667,79.75862,4.526 164,88.468285,258.29425,22.986153,36.657684,4.456 164,493.7547,227.37134,237.24268,515.10236,4.378 164,333.1353,269.0374,33.26831,61.46402,4.344 164,-2.4886513,276.9195,28.973633,67.348694,4.194 164,323.02213,252.63391,33.934723,64.40967,4.088 164,1.8548024,490.60876,19.90143,40.929504,4.036 164,540.9208,-0.58797836,16.19928,28.996655,3.993 164,5.434766,468.23462,38.00321,92.99158,3.978 164,129.95853,279.0129,21.161285,31.660828,3.976 164,362.05624,270.33963,33.93921,65.36105,3.972 164,-70.96005,-189.39186,211.38077,455.13525,3.932 164,571.3166,-14.435127,15.902649,33.61359,3.82 164,10.322344,242.04364,55.35636,108.85101,3.808 164,68.49226,261.75598,30.565544,59.210205,3.797 164,-5.2983494,185.89449,17.466785,42.030396,3.794 164,571.3203,6.3063974,19.318115,31.75816,3.791 164,-9.793505,-6.978325,39.846794,99.09235,3.774 164,561.9069,489.40018,21.115479,41.619293,3.764 164,-6.572228,135.26364,18.781328,43.8358,3.764 164,2.6007934,-14.685279,16.992342,38.611507,3.746 164,533.31635,-0.6907387,15.644714,31.281357,3.717 164,297.4129,257.14935,23.265015,29.804443,3.712 164,554.0671,489.63998,20.924377,42.159027,3.697 164,303.4765,261.64725,23.635895,32.258636,3.67 164,596.36304,462.0817,39.848877,98.28854,3.67 164,585.52515,488.4187,21.591797,42.190063,3.666 164,27.467266,256.8767,32.19706,65.513,3.663 164,556.7423,-0.087114334,16.668762,28.62775,3.658 164,186.92717,267.88654,19.647354,28.929352,3.655 164,105.12576,281.08517,22.329498,36.771423,3.649 164,619.46606,-2.5911999,18.309143,37.425804,3.641 164,194.27069,270.62912,19.742676,27.487915,3.608 164,555.46686,-13.0532055,15.609375,32.807182,3.604 164,26.795498,482.20816,33.76386,59.44107,3.585 164,102.28729,-17.98694,29.923416,69.316505,3.583 164,11.9648,-38.10746,55.611427,131.061,3.546 164,-6.006361,170.39252,17.879778,40.912827,3.531 164,122.080795,278.9639,21.40918,33.3295,3.531 164,170.86438,269.90076,18.45935,28.32721,3.523 164,563.5801,-13.338335,15.8289795,32.91138,3.519 164,202.42752,271.56625,19.192184,25.907745,3.512 164,43.463028,-13.717643,16.101723,35.509163,3.508 164,137.7141,275.16937,20.466034,29.547455,3.502 164,-9.895358,35.93772,39.990784,103.48443,3.498 164,-14.910917,234.96835,49.82602,136.30557,3.481 164,411.16086,-17.557524,16.687592,41.507965,3.468 164,548.8956,-0.28753567,16.010376,28.758526,3.465 164,-5.3190155,38.696068,17.80307,44.945305,3.443 164,593.8742,488.78854,21.015015,41.355194,3.443 164,139.32158,267.4374,59.448227,119.018524,3.441 164,113.77507,270.2386,44.81862,70.59183,3.419 164,476.84293,-19.294464,56.56906,126.81134,3.416 164,508.51608,-2.7626572,17.024933,35.759644,3.414 164,524.82886,-0.63552666,16.102234,32.579094,3.408 164,73.70459,233.41037,58.489548,102.21295,3.406 164,280.9993,264.46866,21.194946,26.652588,3.389 164,-0.02503395,181.11996,26.481348,67.96356,3.388 164,577.90765,489.33755,21.063293,41.834442,3.367 164,278.4784,209.7675,62.071533,103.57619,3.367 164,304.43655,248.0631,20.856232,32.324783,3.365 164,-5.6467676,297.9432,19.179932,43.729706,3.363 164,145.57921,277.1361,20.072968,29.072998,3.361 164,-9.604523,237.25162,30.252811,74.648834,3.357 164,-5.255137,62.42271,18.366224,46.12354,3.356 164,179.33286,270.46893,19.161224,28.577179,3.335 164,546.1757,488.7675,20.54718,42.46585,3.333 164,587.9756,0.26102734,18.005371,30.683075,3.321 164,51.027813,262.57593,33.288883,62.625946,3.311 164,-12.149562,121.61311,29.579891,68.93222,3.311 164,444.08566,-58.437492,56.74344,126.35516,3.31 164,218.72672,279.37628,18.925247,33.44284,3.308 164,210.34796,278.08063,19.598618,31.934906,3.306 164,596.1706,-1.2598972,17.853943,33.048023,3.305 164,516.37573,-2.2260208,16.492981,35.673977,3.305 164,89.73848,280.08383,22.507599,38.73456,3.305 164,8.52818,202.11826,22.366768,42.60446,3.301 164,41.248814,489.81226,22.156818,41.761414,3.294 164,564.6245,0.11452484,16.61261,29.256163,3.294 164,-5.7553024,218.09183,17.83678,42.420074,3.29 164,-5.5945263,281.8241,18.284977,43.200684,3.285 164,427.58282,-36.038246,57.74597,125.24198,3.282 164,25.00107,490.63153,22.246824,40.78662,3.281 164,321.2539,249.38367,22.03714,32.38672,3.277 164,378.08136,274.78778,33.921783,63.7034,3.276 164,19.37714,242.45483,31.350788,70.91998,3.276 164,329.41043,338.3206,20.678864,25.546143,3.269 164,1.1230946,189.62575,50.369324,136.46239,3.263 164,162.20705,-13.996008,18.417969,40.277935,3.261 164,458.1464,-36.491074,59.083893,127.037674,3.261 164,-5.327852,201.94484,17.393883,42.528748,3.261 164,588.6821,-15.603718,31.345886,59.75317,3.259 164,129.24335,265.8681,45.62848,62.79312,3.258 164,-9.488737,85.63832,39.58012,102.24928,3.257 165,-5.756282,-17.02505,18.050587,41.973198,8.468 165,296.8265,263.10168,20.993042,30.075653,6.541 165,-8.782362,465.4545,37.496147,89.85892,6.498 165,-11.2276325,-31.326366,29.681597,71.54747,6.356 165,305.2968,261.73035,21.31726,32.295288,6.335 165,613.0096,453.3658,39.418274,107.85202,6.297 165,-6.1574373,489.30075,18.97116,43.03006,5.903 165,314.10577,260.33347,20.720917,34.054688,5.817 165,-17.828478,-65.25603,56.47679,143.8216,5.687 165,626.21436,487.01398,21.40216,46.487244,5.598 165,627.4338,-16.973097,16.61499,45.719143,5.476 165,-73.49029,265.3092,202.08685,462.69678,5.297 165,288.6977,250.19522,24.127136,33.78235,5.26 165,623.169,-33.48295,26.241394,75.6554,5.149 165,585.4206,-101.113205,75.49005,236.17552,4.993 165,316.63226,253.77853,30.872498,56.222992,4.967 165,-21.485096,402.88058,79.13301,174.73953,4.909 165,2.7393389,-15.25177,17.457039,39.416954,4.791 165,490.0385,-180.1605,235.13,427.18054,4.783 165,321.14777,255.20839,20.665741,34.807358,4.778 165,73.46478,291.92816,21.58165,36.463837,4.767 165,583.4034,408.99332,71.64337,178.82236,4.76 165,-36.460045,-127.11963,117.04941,276.6069,4.744 165,132.97032,-32.938908,30.198486,69.874985,4.728 165,536.87054,311.35028,142.61554,339.96698,4.685 165,-6.2590384,185.34425,18.532473,41.521072,4.636 165,-10.567736,-7.138138,41.321136,100.199165,4.52 165,602.72833,-55.99305,53.57318,140.42581,4.457 165,329.30426,262.1564,20.431702,34.690247,4.336 165,493.83893,227.4996,237.29584,514.5145,4.326 165,346.3705,271.50638,19.618439,36.69394,4.296 165,618.3672,489.42575,20.965881,43.882477,4.28 165,4.2037334,237.74574,30.617746,62.138718,4.261 165,148.2667,-31.410635,29.798004,70.60274,4.194 165,291.46243,246.06822,30.517426,49.66136,4.177 165,-6.020703,0.5535431,19.473362,44.11623,4.136 165,-6.3484917,247.45372,19.693138,41.878036,4.096 165,56.942726,293.01492,22.810143,39.221497,4.082 165,137.97011,166.40213,31.288132,75.28168,4.068 165,331.88693,256.7515,30.987488,59.03412,4.065 165,-4.9241776,92.64578,17.860723,39.9908,4.042 165,353.14606,279.29376,21.4234,37.50479,4.038 165,337.50946,269.69006,20.733032,36.956696,4.037 165,265.18048,262.27457,20.528076,26.742554,4.027 165,4.347985,288.96283,31.19585,61.891754,4.017 165,-11.529588,236.10204,30.933128,64.85402,4.017 165,532.415,201.29427,18.293518,31.60199,4.001 165,2.1734185,491.06174,19.326462,40.780792,3.975 165,508.44067,-16.822361,56.426636,118.12335,3.963 165,-71.22522,-189.10725,211.49475,453.3031,3.954 165,5.6944838,468.12637,37.524662,92.61038,3.936 165,221.12332,269.61734,13.655563,21.30661,3.931 165,1.886276,1.1066055,21.222216,46.17105,3.887 165,153.55507,270.73917,21.855087,32.090973,3.884 165,244.81601,267.05728,15.476593,23.719238,3.874 165,258.54837,262.92468,19.167145,26.706207,3.867 165,10.708375,-35.50277,59.360374,133.11197,3.861 165,-8.421787,89.41339,38.18267,97.28729,3.844 165,-10.237169,96.61973,28.01433,65.12997,3.835 165,-6.987486,295.10672,18.860632,41.181763,3.823 165,236.1741,274.98914,15.991669,25.988525,3.817 165,252.15834,265.9011,16.762161,25.216125,3.816 165,-5.388517,22.313911,18.679724,45.753,3.803 165,-10.210783,38.378357,40.47358,101.7339,3.795 165,9.743481,241.2985,56.29307,112.08258,3.789 165,281.0574,264.2194,21.067322,27.305328,3.788 165,540.4994,0.7390547,17.06897,30.280964,3.754 165,524.29144,200.47057,17.59314,30.003525,3.745 165,363.22943,273.13913,18.30072,34.132904,3.719 165,229.01831,269.12878,13.85434,21.37558,3.717 165,539.5844,202.44637,18.990967,31.65303,3.693 165,2.1038294,-40.758377,43.58478,96.302246,3.687 165,289.8343,272.1851,20.512207,27.775146,3.686 165,41.594826,490.11823,21.328346,40.926575,3.675 165,300.12054,255.51357,32.470978,51.57985,3.667 165,580.3834,1.4938297,16.698181,32.181145,3.63 165,490.3368,-34.077972,58.12372,124.601395,3.614 165,228.11882,275.39957,16.209015,25.782867,3.605 165,-6.312172,170.80545,18.048782,39.93666,3.587 165,1.027919,248.28548,22.358149,41.59288,3.571 165,596.56287,461.37704,39.497437,97.76901,3.564 165,145.425,-12.646561,19.651733,38.368347,3.564 165,-5.774337,111.63136,17.88839,42.507965,3.557 165,-5.76937,135.6285,18.537777,44.72577,3.552 165,548.35614,-0.55449104,16.673218,31.349234,3.535 165,4.2871857,96.32412,40.655457,105.19346,3.522 165,261.29297,218.84763,66.72937,93.66113,3.518 165,81.40788,291.72534,20.555618,32.812347,3.491 165,-9.382091,280.97906,37.86696,93.63541,3.485 165,620.69214,-2.3572311,16.922363,38.07818,3.482 165,530.59937,215.85513,20.641663,34.20659,3.477 165,-11.568837,172.56467,29.63861,66.00142,3.46 165,101.84643,243.55328,28.492012,62.239746,3.454 165,457.6571,-30.425222,58.732788,122.5819,3.453 165,597.5314,-16.72202,30.201965,62.803196,3.436 165,12.559714,62.798424,56.923157,138.87079,3.432 165,-15.705927,219.54347,50.03299,136.92674,3.415 165,363.75684,227.44101,55.254242,114.74609,3.412 165,49.038803,297.3091,23.392387,38.960938,3.404 165,0.7294977,276.1577,21.140642,37.507782,3.404 165,556.066,-0.6197853,16.636353,29.991278,3.401 166,113.38863,276.01193,21.133904,34.91751,9.037 166,287.75702,250.85184,24.007233,35.7912,7.719 166,-5.841625,-18.193228,18.055702,43.281216,6.441 166,613.27704,452.13837,39.21692,109.61499,6.351 166,-8.550837,464.9449,37.25641,90.976074,6.32 166,250.06598,249.86472,20.103638,30.150452,6.135 166,-11.240858,-31.469553,29.430086,71.43425,6.082 166,321.78864,260.762,20.671692,38.094696,6.044 166,250.73387,262.20642,18.969437,30.422302,5.965 166,-5.9388695,488.6519,18.649181,44.062714,5.944 166,-17.61698,-64.145226,56.63591,144.62292,5.909 166,627.4865,-15.533462,16.703552,43.906624,5.869 166,-73.458786,264.91516,202.21481,463.1936,5.52 166,313.9591,250.05997,20.67688,38.549255,5.467 166,329.62323,264.80893,19.946167,33.65689,5.426 166,623.1788,-33.099915,26.19043,74.52383,5.279 166,626.3699,486.77887,21.14441,46.51654,5.187 166,296.47174,257.7828,23.068726,36.379486,5.071 166,300.30753,246.0436,31.446564,58.235153,5.012 166,307.84335,255.34479,32.902924,59.73285,5.003 166,-36.861,-127.85086,117.02686,275.13605,4.996 166,536.75726,310.9098,142.61761,340.15637,4.89 166,-21.559782,402.77515,79.13739,174.80469,4.872 166,243.67995,262.52832,17.665817,29.766876,4.857 166,315.67755,278.97476,33.409973,52.065216,4.824 166,236.26814,264.26312,16.071152,27.228546,4.813 166,490.09235,-180.46909,235.04999,426.24313,4.776 166,68.57377,230.20044,32.990723,67.80133,4.77 166,271.4136,253.33708,24.864716,32.667313,4.766 166,-5.7611895,68.999,19.556839,48.73928,4.744 166,101.763626,269.28558,30.34195,52.4498,4.714 166,602.86633,-56.55155,53.04358,139.67603,4.685 166,583.04663,407.74863,72.24634,180.06192,4.656 166,585.84106,-101.91217,75.11481,236.91463,4.627 166,-9.494919,-6.4926643,40.456047,99.16124,4.613 166,10.842297,-36.064003,58.27902,129.97734,4.604 166,256.80048,254.57126,21.25888,32.108,4.575 166,-5.340143,1.9154854,18.451176,44.595818,4.561 166,-9.7046,71.024956,29.325298,73.50199,4.518 166,493.82236,227.90146,237.22989,514.0786,4.468 166,296.29947,303.32288,23.994904,27.880524,4.407 166,243.80424,252.14006,18.341873,27.871048,4.398 166,2.5797315,490.58636,18.560291,41.183105,4.307 166,577.5524,489.06143,20.881775,41.358124,4.262 166,330.45395,276.26526,32.773743,55.74524,4.255 166,145.98895,256.51337,43.531387,65.32922,4.191 166,3.4339237,-0.7855072,42.055176,107.5566,4.178 166,107.26767,280.28314,20.039368,34.69812,4.143 166,312.41763,301.27917,22.336334,30.531403,4.129 166,-71.39275,-188.77934,211.76755,455.63647,4.125 166,329.4843,298.4526,21.43045,33.758057,4.104 166,-0.06346464,54.815533,27.834278,79.056656,4.089 166,60.564007,244.42789,32.330906,61.76013,4.079 166,620.84204,0.5300846,16.465088,34.20881,4.07 166,263.71042,247.6039,23.473053,32.380936,4.057 166,-5.900063,37.166504,18.897001,48.65013,3.998 166,10.96203,251.305,72.0152,182.83392,3.995 166,475.5629,-16.80833,57.127167,121.08171,3.994 166,25.546532,211.71625,59.893364,114.453735,3.985 166,553.4228,487.82443,22.070068,44.50583,3.951 166,2.9418635,278.11337,30.792873,70.941925,3.947 166,1.5113211,-41.413834,44.49608,98.09564,3.934 166,58.352757,267.1649,20.805614,33.539795,3.897 166,98.95485,274.81995,20.096558,37.443512,3.892 166,596.66174,459.6163,39.637207,100.06961,3.887 166,244.57355,240.37518,30.33609,46.12079,3.876 166,329.09073,279.7879,22.028076,36.12079,3.871 166,56.73253,237.43501,23.378922,44.660995,3.868 166,-10.260431,250.09949,29.874472,70.78656,3.866 166,280.59738,243.23271,25.513275,34.43547,3.838 166,130.77356,237.48633,44.129272,73.13306,3.831 166,139.24956,-12.837946,16.016037,37.843254,3.826 166,92.73883,217.24057,32.33728,64.52316,3.819 166,585.5755,489.09442,21.339539,41.947266,3.808 166,161.85164,241.04837,44.893692,69.27692,3.805 166,275.20435,246.94075,34.099915,51.858658,3.804 166,618.32764,488.74796,21.206177,43.99466,3.8 166,170.1401,-13.668491,17.227768,38.20573,3.781 166,212.5575,267.16653,15.609467,22.865662,3.764 166,5.7760897,467.66678,37.168888,94.299774,3.762 166,177.24489,255.27185,44.88974,64.40167,3.756 166,444.63376,-18.58749,55.798004,122.725845,3.728 166,-5.1429677,101.143814,18.264086,45.740036,3.72 166,263.85617,261.25674,22.941132,30.94394,3.718 166,44.571846,231.34566,30.576935,57.353226,3.714 166,82.60288,228.71089,32.98931,67.9821,3.695 166,305.34732,246.53366,21.663116,36.420654,3.694 166,171.42822,39.404594,34.635605,77.117966,3.687 166,98.60505,232.27069,44.092186,74.61969,3.685 166,56.73086,229.6417,60.292164,99.32904,3.678 166,18.095047,62.46913,32.73482,72.91203,3.672 167,19.737432,275.88977,32.140434,66.69235,7.063 167,-8.857554,465.64294,37.60174,90.232544,6.786 167,-5.821125,-18.244308,18.312235,43.44798,6.761 167,5.491248,270.29852,28.325005,76.602875,6.568 167,-10.967281,-32.298363,29.527975,72.770355,6.332 167,31.095438,291.08893,25.078936,41.487305,5.855 167,68.34123,217.10263,30.336288,79.48663,5.785 167,-6.173438,489.582,19.012352,42.386444,5.771 167,613.5084,454.46936,38.626892,106.85669,5.655 167,-73.45088,265.00772,201.9616,463.38742,5.464 167,4.2401266,210.6517,28.754997,74.95566,5.37 167,611.4844,-49.13837,41.11139,103.95696,5.323 167,250.88013,247.92873,18.157928,30.579819,5.248 167,137.45302,267.74884,21.811707,36.990997,5.212 167,308.09622,234.3416,31.684235,60.755356,5.128 167,-17.827423,-64.88141,56.16964,146.5657,5.107 167,627.58826,-16.56096,16.648132,44.970318,5.043 167,125.10298,257.9004,30.088333,53.11377,5.025 167,585.56335,-100.2431,75.31799,233.9643,4.984 167,55.76622,216.65007,29.16851,70.383835,4.933 167,295.58923,236.66895,24.563843,38.847717,4.903 167,257.71387,249.45389,21.050903,32.909027,4.818 167,-21.478958,402.9519,79.1994,174.51202,4.81 167,626.3096,487.46356,21.39087,45.95404,4.758 167,490.45422,-180.23775,234.68347,425.37888,4.741 167,536.90283,311.7481,142.26343,339.88898,4.72 167,280.9005,235.38571,23.320099,33.55121,4.712 167,583.52893,407.9938,71.52161,180.30807,4.696 167,-6.0698814,244.88655,18.667044,47.433334,4.666 167,243.01434,258.65482,34.49649,62.09442,4.601 167,0.47566772,265.28964,23.205462,60.743896,4.515 167,304.12836,241.32812,23.645508,39.365723,4.51 167,-4.636079,293.61923,17.82212,46.24875,4.502 167,-71.66065,-188.68076,212.49997,456.08243,4.493 167,361.01413,368.3993,22.18991,31.463043,4.486 167,-37.51275,-131.02461,117.911194,280.72937,4.44 167,131.93123,238.60922,40.774887,73.196014,4.43 167,-6.192318,131.72041,19.342896,48.83203,4.369 167,219.96286,257.78403,16.015976,25.47406,4.329 167,411.75513,-13.86578,56.510376,115.149185,4.322 167,493.51807,227.31381,237.36694,514.95544,4.303 167,5.7574615,468.5365,37.54541,92.60828,4.289 167,235.86484,256.8636,16.73619,29.920807,4.282 167,147.78984,251.08751,40.648422,67.0287,4.262 167,-6.0267544,109.744576,19.477325,47.670586,4.208 167,243.59988,256.18634,18.650146,34.26065,4.195 167,248.79651,230.77463,20.610046,35.412872,4.176 167,-6.1556864,269.3152,19.562702,50.249573,4.168 167,212.3187,257.19525,16.450867,25.164642,4.166 167,164.00967,241.78746,41.17404,68.25221,4.158 167,2.0738614,491.58044,19.237787,39.672302,4.147 167,194.74896,247.30109,40.797516,67.825195,4.136 167,329.8178,246.73177,20.11737,35.09938,4.129 167,444.26654,-12.829578,54.690216,117.45331,4.116 167,319.28003,353.71967,38.564056,52.479553,4.107 167,178.9348,249.19627,41.11931,67.58565,4.094 167,-13.841434,187.58179,48.333893,138.92944,4.091 167,228.76364,253.39183,13.929459,23.170456,4.082 167,-1.3811767,228.91774,26.882004,74.26265,4.082 167,13.62788,216.56439,54.150913,117.639404,4.066 167,344.16287,364.53113,23.659973,34.07431,4.055 167,39.202454,284.39386,25.199715,40.277893,4.038 167,271.89285,240.20566,22.765076,33.16153,4.011 167,313.43274,236.61229,21.958801,37.95894,3.999 167,244.53871,247.81958,15.640121,28.038208,3.944 167,459.7948,130.40656,16.57611,28.625336,3.941 167,571.6361,8.537552,18.7771,33.72822,3.938 167,-9.410616,217.60011,29.008448,69.51402,3.924 167,-10.207071,271.67432,29.590128,74.47473,3.911 167,145.61327,267.6846,20.510223,33.621246,3.905 167,363.0911,-15.232857,16.487396,39.144176,3.899 167,76.280266,187.65201,55.748466,119.208374,3.881 167,355.27206,-13.884186,16.323944,37.85784,3.877 167,114.73618,-23.438274,42.990547,87.66788,3.857 167,620.8274,-1.0384941,16.471863,36.458183,3.848 167,-15.606289,248.27231,49.9203,132.98093,3.828 168,-5.6487274,-17.89902,18.066093,42.648056,7.577 168,4.4041944,193.14151,30.107353,74.6499,7.181 168,-12.273717,478.9414,30.791718,62.54132,6.92 168,612.8556,453.14368,39.578247,109.10559,6.59 168,235.61786,220.00761,18.106567,32.76149,6.488 168,-6.3404727,488.49417,19.373222,43.970123,5.988 168,-12.570793,-40.26414,42.08035,99.36645,5.774 168,13.761215,182.42284,54.670425,123.476456,5.66 168,9.205905,290.09488,20.905632,39.576813,5.567 168,-16.572685,439.16547,54.278244,135.9477,5.433 168,627.2883,-16.733229,16.811768,45.541214,5.424 168,-5.2851224,57.475487,17.988213,40.040993,5.402 168,-73.537224,265.6068,202.08832,462.91425,5.35 168,626.3318,487.16037,21.127258,46.76065,5.242 168,250.44394,231.67038,18.813538,32.415863,5.224 168,622.9334,-33.413857,26.466919,76.50178,5.082 168,1.5589607,284.07794,24.97719,62.910156,5.049 168,490.3212,-181.74936,235.3331,429.3636,5.031 168,24.905357,203.66602,34.391853,71.56897,4.956 168,281.25696,216.13605,22.86438,37.538208,4.899 168,585.76575,-102.51366,75.21875,240.07281,4.83 168,297.09036,228.7034,21.434235,35.59839,4.814 168,-71.42173,-189.50641,212.47635,456.89072,4.813 168,-19.787102,-87.189186,71.59137,196.45612,4.81 168,299.47382,219.72119,31.891602,62.446777,4.802 168,84.261826,250.74084,31.45285,54.899048,4.792 168,583.444,410.20245,71.28259,177.98059,4.761 168,27.545212,214.74445,55.1904,110.08734,4.76 168,289.1018,220.19849,23.248322,38.08841,4.756 168,292.41318,204.88753,31.447174,56.646774,4.747 168,-36.901638,-128.82231,116.770325,279.0753,4.739 168,536.9839,311.58746,142.30194,340.20618,4.648 168,313.55646,214.78082,22.05365,37.61197,4.599 168,-40.24565,366.87506,110.364815,275.97174,4.57 168,602.8296,-56.18622,53.14148,142.09515,4.548 168,272.65112,216.16106,21.962189,35.119446,4.493 168,11.055201,-33.508198,58.565895,129.4134,4.476 168,2.988422,-16.608715,17.060461,40.476887,4.429 168,493.68286,227.58398,237.22119,514.7015,4.329 168,-5.4569826,1.0032196,18.372372,43.673172,4.303 168,11.801095,231.32698,55.851677,111.705734,4.273 168,306.07712,219.24973,22.032501,38.93933,4.261 168,51.273956,244.45583,42.780533,71.63811,4.228 168,618.3117,488.30566,21.310791,44.552795,4.195 168,121.57383,208.56447,60.5102,98.71422,4.162 168,145.48586,223.21785,44.82344,67.14317,4.158 168,-0.8221495,121.69185,28.878742,74.762314,4.155 168,57.992325,218.4656,56.55687,99.33496,4.13 168,5.367831,469.0273,38.026527,91.52878,4.117 168,1.8920934,489.85074,19.92744,41.980804,4.116 168,-4.9939146,285.31583,16.691135,38.552765,4.116 168,572.3701,6.840313,17.370422,32.995617,4.103 168,243.37111,228.92981,16.997269,31.61499,4.089 168,459.4601,261.01266,17.504333,28.70642,4.046 168,74.31728,-39.22844,58.590584,128.36198,4.034 168,553.698,489.48135,21.229065,41.67978,4.03 168,-5.1832337,163.36636,17.848927,43.28032,4.011 168,561.7653,488.67883,21.249329,42.452026,4.009 168,563.98566,5.8018837,17.596985,32.736145,3.995 168,204.96008,238.60368,15.2838745,26.178665,3.975 168,-4.3576016,254.49359,15.479668,34.64734,3.932 168,556.0142,5.0982513,17.741882,33.479107,3.93 168,56.001526,263.2307,25.35202,44.404175,3.926 168,9.889651,-17.425623,18.05069,40.386475,3.923 168,459.82312,4.589079,17.989258,37.620407,3.906 168,34.338722,274.98822,32.392403,61.64618,3.894 168,315.3443,-3.1930122,18.65213,37.552246,3.87 168,-14.029294,157.23862,48.721123,141.76462,3.862 168,569.84906,488.72238,21.25409,42.75467,3.816 168,452.8021,-0.73789597,16.207245,33.202168,3.783 168,-10.774517,36.692307,28.953384,66.49321,3.773 168,113.86661,234.72588,44.018127,67.15532,3.771 168,90.45648,200.48343,58.137665,108.01172,3.768 168,23.900303,288.05582,24.133228,39.626373,3.757 168,596.2671,461.2537,39.88678,98.73007,3.748 168,39.39457,231.45935,23.93158,43.366516,3.745 168,107.32466,-43.052895,58.168045,129.82224,3.74 168,309.09473,212.47961,30.964172,60.3703,3.732 168,220.79185,234.43027,14.215393,25.504059,3.729 168,298.05048,286.83377,20.355011,28.234589,3.719 168,444.25418,5.619215,17.863892,36.245293,3.689 169,-12.379768,479.61893,30.859165,61.89322,7.215 169,-6.1151266,-17.845022,18.451984,43.81545,7.121 169,-10.8130665,-31.887627,29.123451,73.09972,6.422 169,-6.2634554,489.10696,19.174656,42.303802,6.362 169,-18.19702,437.3725,56.232468,138.09906,5.581 169,36.850822,179.98763,31.888863,76.34941,5.522 169,52.18949,192.22607,33.66092,70.34357,5.412 169,612.7513,453.6729,39.919006,107.92206,5.215 169,-73.75818,265.45135,202.41426,463.15668,5.213 169,283.90125,196.55193,31.315369,57.32007,5.188 169,626.21436,486.99408,21.604797,47.112,5.149 169,524.11523,6.9940414,17.36554,30.928638,5.138 169,627.5909,-16.30946,16.564697,44.022324,5.021 169,217.76443,211.40886,20.19136,35.940567,4.979 169,508.64514,9.410222,16.007812,31.167542,4.88 169,-17.313951,-64.15172,55.831207,144.93784,4.841 169,623.40564,-33.641335,26.004028,74.22027,4.833 169,585.603,-102.15747,75.790405,238.7472,4.772 169,71.99747,203.6735,62.124634,99.1539,4.754 169,66.49692,235.75479,33.569366,60.82022,4.746 169,583.2414,409.76367,71.55786,178.37402,4.74 169,-5.657321,0.7085819,19.3269,45.209946,4.716 169,489.55603,-179.96548,236.08301,426.87253,4.696 169,516.6218,8.593293,16.595642,29.960747,4.629 169,-71.27469,-189.83801,212.03346,457.59576,4.582 169,-40.065826,367.89923,110.251785,273.9809,4.58 169,589.1077,0.48234558,15.471863,28.508003,4.571 169,536.9077,311.2838,142.21283,340.56714,4.568 169,-36.453117,-130.08138,117.18862,280.87793,4.512 169,611.56287,-49.21144,41.38513,103.82431,4.511 169,1.816144,491.15662,19.713474,40.02893,4.479 169,50.462055,214.21356,43.521564,74.44974,4.447 169,296.9869,202.96388,22.928314,36.741333,4.357 169,302.04532,200.96674,29.66568,56.7695,4.346 169,-6.2280297,232.08418,18.890087,43.768204,4.272 169,10.743845,-32.998013,59.044907,137.27081,4.255 169,493.5146,227.1308,237.74286,515.3293,4.251 169,581.1875,0.4500389,15.78186,29.345377,4.247 169,556.5722,-0.57810307,16.698303,28.986065,4.206 169,121.80374,187.29556,58.94284,100.94806,4.194 169,98.4574,95.844666,33.744873,72.38406,4.167 169,-5.7733107,215.48248,18.345356,41.646698,4.161 169,540.2949,-0.93801117,17.341736,29.621105,4.15 169,312.67816,212.39941,20.791138,35.701324,4.089 169,1.252867,277.99686,22.063284,41.779114,4.089 169,411.01135,-0.56424046,18.81778,31.34729,4.085 169,380.4413,-13.097298,55.755127,113.92511,4.074 169,348.0932,-17.318363,55.099243,117.49419,4.031 169,27.116016,211.99472,57.065136,106.90216,4.013 169,-7.699684,58.791832,37.26803,98.28001,3.998 169,73.27162,208.55492,32.125107,59.38414,3.996 169,297.4798,220.13881,22.021301,36.452988,3.976 169,548.5499,-1.0722456,16.890503,29.981197,3.936 169,532.0428,-0.2128954,16.9281,30.079617,3.914 169,3.7053263,257.76385,39.135178,95.3013,3.889 169,573.1567,0.22053623,16.168152,28.436317,3.886 169,154.31264,190.59744,57.79872,96.49289,3.831 169,575.0023,93.63301,51.45862,148.29895,3.824 169,8.711063,491.76718,21.829216,40.18863,3.813 169,146.72769,203.66455,43.313354,69.07297,3.803 169,80.04859,250.3142,24.05378,36.74553,3.797 169,-15.172744,216.49657,48.950836,136.59126,3.79 169,16.3209,224.98349,43.122456,79.70264,3.76 169,241.93933,204.49,43.707886,69.25441,3.757 169,500.42343,10.045249,16.201202,31.743813,3.746 169,288.62613,218.08441,22.622314,38.94452,3.745 169,410.56726,-12.836145,16.825043,33.30104,3.715 169,2.2494423,-16.748343,17.830784,41.206635,3.711 169,-5.928044,249.22574,18.535265,42.525818,3.696 169,-6.1444387,273.8522,17.833202,38.381714,3.677 169,2.9041386,220.62137,33.05825,66.46402,3.674 169,-5.363228,70.15832,18.230873,44.592346,3.668 169,1.4467251,0.98703957,22.015303,49.196342,3.664 169,131.61581,160.79558,31.90207,79.239105,3.649 169,96.72107,217.04486,44.914383,68.13837,3.644 169,189.48372,85.86306,27.260727,49.495018,3.622 169,395.1681,1.5609016,19.063507,31.535374,3.622 169,597.3581,0.85671616,15.022339,28.145695,3.6 169,620.4794,-0.5910454,16.58429,34.09472,3.591 169,5.177393,466.50458,38.858902,94.42999,3.585 169,36.56694,-17.941616,32.336075,65.80412,3.581 169,223.07162,204.32509,21.685837,38.60263,3.579 169,403.1271,-0.04463768,18.841919,32.113403,3.57 169,-12.628504,267.6828,30.321707,64.47211,3.569 169,187.44476,216.90904,18.578934,31.090744,3.568 169,113.99112,199.7631,44.711166,72.141464,3.566 169,-9.598768,-5.0372467,40.83615,100.10461,3.555 169,-5.2403407,198.16948,18.650816,44.169586,3.537 170,-5.993476,-17.873486,18.580894,44.273552,7.359 170,-6.4744115,488.71143,19.64084,43.33435,6.669 170,-12.338648,476.42816,30.79202,66.11444,6.47 170,-11.030079,-31.902483,29.683655,74.19245,6.185 170,626.5053,488.1222,21.016968,44.40564,6.069 170,122.623024,186.25002,29.72631,66.627045,5.936 170,613.4907,453.7717,38.501953,108.39285,5.791 170,212.15973,186.38072,28.415344,54.34439,5.79 170,623.00793,-33.844078,26.352478,76.20196,5.513 170,-3.1023717,191.48972,28.826761,68.964386,5.357 170,627.2826,-17.606163,17.045288,46.215775,5.157 170,444.29523,1.6399708,17.036804,28.350527,5.134 170,-73.95219,264.9428,202.02704,463.2011,5.102 170,585.74084,-99.27583,74.9812,234.25006,5.062 170,489.7444,-180.52463,235.47375,428.62927,4.999 170,-22.334803,401.59073,80.03884,176.04752,4.972 170,282.3744,-13.445406,16.338348,37.638966,4.921 170,-20.003727,-87.80579,71.91838,196.73833,4.902 170,185.2298,222.53036,19.50624,29.856277,4.9 170,-0.024914742,72.32471,23.937588,58.626953,4.894 170,583.3679,409.68365,71.59619,178.13184,4.888 170,602.99725,-56.730392,53.317078,138.25705,4.755 170,618.5081,489.58307,20.598022,42.4657,4.641 170,34.638428,245.82681,34.502083,48.421875,4.636 170,536.8312,311.7705,142.46692,340.41425,4.63 170,10.161886,203.875,58.650276,103.5907,4.559 170,241.67305,197.43307,44.87941,71.82803,4.553 170,-70.9637,-189.35902,212.17793,457.4945,4.494 170,460.05997,2.7589006,17.718536,28.91082,4.488 170,-36.83545,-129.56274,117.14395,277.41037,4.469 170,0.6073475,200.02652,20.247816,41.828537,4.461 170,10.977985,-31.84547,58.964046,130.692,4.434 170,201.06482,214.5231,21.600052,34.263794,4.421 170,291.17456,-12.687203,15.9557495,37.375282,4.376 170,2.0226808,-16.819408,18.216732,42.783245,4.339 170,493.5106,226.85223,237.86765,515.952,4.326 170,192.18788,218.07747,21.951859,34.03401,4.248 170,473.76035,4.805374,22.407318,38.44866,4.248 170,-9.671956,-19.578695,39.637333,96.94147,4.224 170,-16.380512,191.05927,51.54765,129.4906,4.187 170,298.11462,223.4256,21.08606,33.89987,4.18 170,50.379772,214.38666,42.393093,74.87726,4.149 170,283.95398,199.694,33.062073,59.973053,4.131 170,467.83554,3.094757,18.575958,30.182732,4.085 170,-5.687398,239.79471,17.745163,40.66327,4.072 170,428.51596,1.8763008,16.609222,26.941128,4.029 170,459.5454,-10.977466,15.351166,32.602627,4.022 170,1.785413,488.51627,20.68437,43.065582,4.013 170,-5.4935455,69.33802,19.859922,49.47976,4.003 170,107.64816,-13.584622,15.853264,36.83856,3.986 170,299.3487,216.12746,32.408173,56.01735,3.96 170,451.86752,1.4605799,17.17041,29.932228,3.955 170,274.66333,-12.475856,17.44104,37.33214,3.952 170,99.08123,214.93802,30.300056,57.601685,3.951 170,133.61841,185.40984,28.780243,61.55194,3.887 170,477.45822,-12.625732,55.90341,115.01196,3.884 170,9.987136,-12.222605,34.732063,66.94791,3.872 170,115.22725,-12.336562,16.023895,35.486042,3.861 170,235.64827,186.00763,34.67433,59.29309,3.837 170,594.44727,-46.35565,44.561768,98.92593,3.821 170,139.24376,212.84299,32.80298,52.134888,3.821 170,146.66394,187.6193,43.94568,71.66983,3.801 170,180.25186,203.26323,29.177399,50.230362,3.794 170,265.19147,247.47179,21.375122,27.071182,3.788 170,436.68402,1.6441565,16.910095,27.953648,3.787 170,419.43665,-12.406042,15.6918335,32.360115,3.757 170,427.674,-12.757867,15.353058,32.1282,3.74 170,539.4448,478.98782,32.404175,61.597748,3.737 170,67.37897,199.35606,41.198746,78.47023,3.729 170,299.57095,-14.305771,15.45578,38.646843,3.717 170,160.53268,212.00041,23.437515,36.23665,3.689 170,265.71246,257.65027,19.714935,25.123901,3.685 170,522.24786,489.77267,20.574524,42.38742,3.676 170,537.8587,487.61182,21.478516,44.296143,3.669 170,-0.75938225,90.50811,27.992859,68.20234,3.649 170,223.53828,208.39757,24.299911,38.276474,3.641 170,110.72056,193.23184,30.638405,66.605255,3.634 170,306.39056,232.07225,20.374908,31.451767,3.63 170,122.82825,-13.68485,16.522125,36.80463,3.622 170,32.82588,239.5889,23.675282,31.967499,3.622 170,62.463867,160.0478,30.187424,85.01305,3.61 170,489.1954,3.0674381,22.170929,43.67057,3.598 170,264.998,168.54955,58.6438,97.5461,3.584 170,-6.9629216,278.22473,19.68364,43.851257,3.561 170,5.02215,466.86758,38.52021,96.22055,3.558 170,125.78094,35.38712,30.486015,65.72604,3.552 170,83.578094,198.64307,40.32025,77.795044,3.546 171,-5.4367294,-17.86922,17.949757,42.352142,8.189 171,-12.179171,476.5005,30.41901,66.6167,7.96 171,-6.2368035,488.93344,19.225294,43.207123,7.253 171,-10.852755,-31.936749,29.356981,70.82458,7.219 171,154.10414,231.44057,23.035461,36.21068,6.666 171,-18.025675,-63.777573,57.09369,142.4745,5.843 171,622.0394,476.11975,28.464478,67.29724,5.76 171,627.41113,-16.387604,16.578125,44.687473,5.286 171,11.192536,-31.259274,58.00834,124.52458,5.216 171,211.03351,189.5104,29.291351,57.73488,5.204 171,611.20496,-48.496956,41.357056,101.88303,5.186 171,585.48535,-98.5074,75.39209,231.618,5.147 171,217.1319,216.748,22.460693,41.081192,5.061 171,-73.15095,265.2379,201.09265,462.76953,5.059 171,-17.313604,436.05722,54.7909,138.40256,5.0 171,604.2083,430.89545,54.92328,141.5683,4.971 171,488.8239,-179.06447,236.05182,427.07965,4.914 171,-35.96242,-129.74931,116.819565,278.60437,4.862 171,100.30257,187.11047,30.333084,77.38776,4.849 171,235.36528,217.05823,33.292862,61.613403,4.782 171,241.75812,200.89337,43.648254,73.855774,4.71 171,257.29626,206.3446,44.253204,83.658264,4.703 171,-71.12033,-189.49776,212.50243,457.40814,4.696 171,209.09288,219.31714,22.19197,40.321686,4.655 171,-39.840508,368.3995,109.856674,274.7388,4.638 171,2.8649359,-16.359175,17.104801,39.52774,4.614 171,536.5784,311.7277,142.86005,341.43796,4.599 171,185.56602,228.46556,21.55397,37.86946,4.524 171,618.7354,488.21594,20.57257,43.4823,4.51 171,42.37581,-35.54969,59.31035,122.53799,4.405 171,219.80605,213.94055,31.65512,63.507355,4.381 171,493.3774,226.57162,237.77219,516.3331,4.329 171,308.2938,220.16026,31.996002,62.705673,4.31 171,129.62279,187.96613,32.3208,72.49664,4.282 171,201.1148,221.85861,21.827072,38.446167,4.278 171,2.019374,488.59036,19.901749,42.426727,4.264 171,193.56947,225.41827,21.281738,40.23059,4.23 171,74.03241,-36.90361,59.893814,123.83152,4.225 171,2.770455,238.4146,32.36988,64.66661,4.196 171,-9.43722,-4.537796,40.444626,97.615746,4.178 171,116.8067,186.90881,32.231964,73.71396,4.143 171,319.43985,195.3227,28.282928,57.074738,4.094 171,59.117355,-58.700474,57.873627,125.65904,4.08 171,10.113927,-16.96292,17.910984,39.627438,4.068 171,32.137886,-7.286312,47.898956,89.78995,4.058 171,105.750656,-37.09124,60.35019,123.87409,4.058 171,237.56609,128.88913,27.750565,70.41774,4.038 171,2.8908205,137.51195,40.509254,103.34903,4.035 171,282.99466,169.62082,56.690765,106.53488,4.013 171,428.2123,-0.039746284,16.6781,30.60397,4.011 171,168.2439,229.69073,21.373718,34.2218,3.926 171,137.92299,-39.531868,60.356064,126.55088,3.899 171,537.99304,488.33798,21.415466,43.41104,3.895 171,284.46005,197.55103,31.939423,62.384857,3.892 171,187.8363,217.86887,31.870743,61.14102,3.879 171,202.94818,217.78441,33.694397,63.04399,3.843 171,53.07537,84.76256,30.859558,63.391342,3.835 171,-5.782616,0.52471733,19.441298,43.273247,3.827 171,138.25894,169.17636,59.3927,106.53824,3.793 171,620.5142,-2.0322514,17.779785,35.317307,3.782 171,2.753408,-0.44742966,43.262066,108.41362,3.782 171,492.54266,7.690099,17.228516,31.849983,3.777 171,91.65913,-59.07978,57.350502,126.89195,3.774 171,1.5460253,-39.541542,44.50693,95.48059,3.773 171,573.9587,-19.222801,53.539246,121.966,3.77 171,-6.0002565,91.65116,19.80411,51.464592,3.761 171,177.23222,230.71103,21.686722,35.544098,3.751 171,2.3940575,163.356,25.020473,83.79846,3.728 171,57.85652,211.4991,58.450638,102.293655,3.727 171,10.675333,102.86689,56.45761,133.5911,3.711 171,274.03284,135.0711,32.658325,67.58682,3.709 171,1.3299966,0.9013901,21.81352,45.93569,3.708 171,-14.1153965,87.48915,48.949226,145.11874,3.707 171,75.86638,-17.178186,34.44204,66.384346,3.688 171,476.8829,-0.1346817,16.189758,30.909885,3.683 171,-8.390594,232.07904,37.818527,99.11182,3.673 171,123.94401,-59.642063,57.109688,126.494385,3.668 171,5.306728,467.14468,38.059303,94.06076,3.66 171,165.12146,200.21265,28.423218,61.471924,3.635 171,78.16127,181.6988,31.202583,63.558243,3.624 171,541.3475,-17.583153,53.742615,119.689255,3.599 171,-5.599781,153.65276,19.362577,42.710342,3.595 171,529.8806,488.74466,21.032227,42.825348,3.594 171,112.00782,190.05814,23.86164,58.771667,3.592 172,-12.1601715,477.07248,30.146103,65.789276,7.227 172,-5.9300733,-18.174557,18.381073,44.073387,7.189 172,-6.3795557,488.57455,19.525488,43.348907,6.839 172,93.82549,183.58136,35.609566,78.2966,6.62 172,622.99963,-33.556305,26.397644,74.50018,6.307 172,-10.8373375,-31.903267,30.065968,73.31237,6.159 172,613.21344,453.8593,38.961304,108.346375,6.142 172,627.3913,-16.193598,16.695068,44.55945,5.815 172,194.65912,220.7035,32.54692,61.176743,5.811 172,158.26259,233.60825,26.932892,45.222595,5.604 172,10.252859,-30.284977,59.678207,125.35007,5.595 172,-17.808628,-63.62359,56.9163,142.26344,5.412 172,64.050285,167.39142,54.278435,120.95053,5.265 172,-73.718765,265.15607,202.17126,463.59222,5.167 172,74.94124,176.28561,31.708862,81.89078,5.066 172,602.51086,-56.451054,53.648804,136.54424,5.032 172,626.4556,487.5484,21.10785,45.632874,5.024 172,-17.307714,436.9304,55.10103,137.73538,4.958 172,382.0686,149.89908,27.835419,78.52072,4.883 172,-71.23929,-188.56586,212.38403,458.49628,4.877 172,583.167,409.48917,71.731445,178.47934,4.868 172,585.53406,-101.35706,75.74805,235.78156,4.832 172,488.67935,-179.32071,236.37021,427.0019,4.817 172,-35.94873,-129.26141,116.30049,278.22922,4.796 172,179.65659,221.88002,32.142914,61.16957,4.77 172,536.79834,311.09662,142.6167,341.22284,4.762 172,107.48737,154.15584,52.770256,117.90245,4.704 172,226.47804,239.0222,34.651352,61.32634,4.628 172,119.693054,165.64378,32.571472,80.26282,4.62 172,-40.167522,367.72424,110.349945,275.14783,4.613 172,104.61773,196.40015,34.79914,76.088135,4.489 172,-5.637349,1.5394726,19.086239,44.81198,4.457 172,493.51437,226.77667,237.9993,516.2032,4.382 172,1.6176689,488.48288,20.402023,43.051544,4.318 172,148.29112,200.81271,41.691208,73.61636,4.251 172,-9.24334,-5.5404434,40.45313,98.73251,4.188 172,3.8264155,-1.4809494,42.052307,107.37694,4.156 172,2.288825,-17.737724,18.088623,42.781857,4.145 172,137.77736,-36.52473,60.137955,124.55388,4.082 172,330.062,-35.845627,59.287415,119.98984,4.078 172,130.8768,194.58398,42.20627,80.1272,4.07 172,161.60022,226.80635,42.928345,78.645615,4.053 172,59.12667,174.6312,34.194252,83.089325,4.049 172,152.48624,241.60225,24.446213,42.98192,4.03 172,218.26134,223.7285,34.51425,64.69896,3.991 172,1.3786077,-38.373295,44.469513,94.829155,3.983 172,42.72159,189.42764,58.8555,113.09009,3.912 172,164.00168,125.33446,31.359787,81.61824,3.907 172,292.6452,193.58865,30.423004,60.192154,3.906 172,202.20654,193.92816,31.073334,56.85016,3.889 172,-9.235556,35.374943,39.79481,103.09779,3.859 172,620.2988,-0.04717064,17.334534,34.26175,3.857 172,30.95264,-7.016018,48.229923,90.36139,3.846 172,127.900894,-8.553352,48.453766,90.99657,3.824 172,595.0924,-45.837746,43.42462,97.61088,3.819 172,207.80542,224.12117,24.236847,40.340317,3.815 172,41.315613,-36.604782,61.041794,125.466805,3.804 172,236.69974,114.64937,30.052582,70.54277,3.801 172,106.409065,-37.73695,60.248833,126.58342,3.799 172,405.67612,82.021286,27.273468,67.912186,3.795 172,32.06404,226.48074,45.647583,74.8259,3.78 172,91.44612,-6.7948456,59.45723,138.53973,3.739 172,-5.468419,154.21487,18.587223,43.102478,3.737 172,-6.2767572,113.15866,19.1292,42.97464,3.732 172,73.752266,-38.669388,60.8684,126.73585,3.727 173,-6.615641,488.1341,19.980528,43.98224,8.053 173,-5.7219357,-17.17495,17.746935,41.46811,6.72 173,627.55884,-16.434418,16.423096,46.017475,6.477 173,18.954988,180.28415,31.881407,76.62924,6.186 173,-11.108308,-31.65962,29.815716,70.20038,6.135 173,-9.188709,464.8438,37.96167,90.647705,5.878 173,611.4349,-49.131683,40.46051,103.65506,5.838 173,626.73047,489.12036,21.200806,44.142517,5.633 173,613.3395,454.536,39.01111,106.86279,5.613 173,201.29652,222.64642,34.97751,62.589325,5.525 173,568.74506,71.47437,23.169006,52.703598,5.45 173,-17.922928,-64.5522,56.74028,144.7763,5.408 173,13.475349,161.76297,53.110542,123.819855,5.333 173,88.75091,239.09422,36.26271,57.488693,5.242 173,-73.67033,265.65912,201.57834,463.6004,5.193 173,-71.47657,-189.12662,212.47662,458.76297,5.098 173,411.17273,179.84622,31.257263,74.902954,5.082 173,36.8478,175.37283,35.39985,83.9256,5.049 173,0.13146162,176.00647,27.031984,85.304504,5.035 173,187.03534,200.11838,30.053833,53.917328,5.031 173,583.5457,410.08896,71.13141,177.38638,4.91 173,138.4032,217.0856,34.113968,65.4234,4.828 173,585.2652,-100.08827,75.87482,233.38353,4.792 173,488.93997,-179.27512,235.80722,427.19385,4.789 173,12.300701,-15.298077,58.683018,119.03081,4.773 173,-21.814064,402.32114,79.5061,175.0253,4.709 173,115.1185,202.90096,41.851685,76.75212,4.651 173,-5.604493,2.7608128,17.833635,40.97345,4.627 173,333.29156,219.92114,31.416534,64.75433,4.617 173,97.5536,213.50714,44.185783,74.047485,4.568 173,26.700907,204.39392,34.072403,63.63849,4.565 173,536.7123,311.1429,142.49414,341.4042,4.551 173,183.8328,220.84134,37.888016,58.231964,4.508 173,0.855304,488.18893,21.711647,44.58371,4.442 173,74.44473,258.83624,33.822174,65.2999,4.438 173,251.75897,105.21343,31.315216,74.177315,4.414 173,292.24286,188.86069,29.635742,66.959,4.325 173,26.738655,200.5249,57.028427,110.630615,4.311 173,493.50723,226.89252,237.79526,516.79346,4.282 173,190.44803,0.7866726,29.07956,61.004585,4.277 173,398.4806,147.0453,29.467987,74.38808,4.272 173,540.55365,-11.315903,55.17572,119.04227,4.259 173,-37.11581,-128.2206,116.84027,279.4144,4.255 173,122.49442,201.54562,60.66958,96.51477,4.169 173,564.15533,44.47188,39.408264,92.14015,4.16 173,75.90924,176.45798,28.870316,85.84726,4.151 173,621.15405,-1.0373058,16.460205,36.824013,4.045 173,144.08098,225.23032,45.782455,82.12802,4.02 173,-14.461025,180.6568,50.26151,143.48627,3.98 173,344.52258,239.8649,22.187286,43.110657,3.955 173,4.106374,180.54018,40.293613,102.712234,3.95 173,44.58305,157.33646,54.687214,124.64288,3.947 173,2.9684615,-15.651171,16.565893,38.356754,3.932 173,75.63163,194.84885,57.664696,104.10062,3.913 173,-9.598131,-4.9338036,40.343483,96.66579,3.877 173,156.43774,-22.078903,56.62024,124.0101,3.864 173,218.79349,-13.924493,17.199326,37.39872,3.857 173,532.74084,42.469913,41.360535,92.372696,3.799 173,543.23553,40.2483,51.578186,117.5527,3.795 173,237.12177,104.75639,32.289856,71.21948,3.782 173,250.21939,227.78313,35.091766,56.427658,3.756 173,412.48077,-21.68303,56.2088,124.319725,3.735 173,58.879128,259.13715,33.89353,64.622284,3.706 174,-5.6145,-17.24603,17.837185,41.903587,6.177 174,627.3578,-17.242928,16.77832,46.144077,5.922 174,-8.508142,464.03036,37.573303,92.932526,5.901 174,-10.820845,-30.632324,29.557322,70.24357,5.835 174,151.60559,213.49884,26.098434,41.18866,5.665 174,623.2941,-33.367508,26.026917,75.27552,5.593 174,81.25175,204.53882,45.242073,69.483765,5.542 174,-17.96218,-63.546093,56.854897,142.41917,5.433 174,626.37805,487.17728,21.453857,46.79593,5.396 174,612.5436,453.499,40.0885,108.52237,5.374 174,562.4835,-131.44661,112.10455,286.21506,5.209 174,602.8824,-55.56935,53.79303,138.76558,5.178 174,-72.92049,265.05933,201.91968,463.6045,5.174 174,120.949524,217.01617,35.87404,69.62988,4.978 174,-6.303277,488.7992,19.16792,44.60858,4.969 174,-71.78878,-188.9946,212.91257,457.29156,4.925 174,14.200735,146.31793,54.884697,129.91187,4.904 174,10.274577,-28.331318,58.72018,126.23663,4.88 174,583.0742,410.92465,71.83594,177.10489,4.863 174,56.906013,196.76372,61.95057,103.43526,4.84 174,135.97134,208.18109,24.395157,42.71878,4.819 174,488.9922,-180.59088,236.98285,427.2135,4.767 174,96.35751,223.61182,48.938477,72.041626,4.752 174,-8.238478,150.8229,37.54007,104.29486,4.7 174,-21.496344,403.0762,79.17813,174.9111,4.695 174,371.35077,168.9963,30.430573,68.19623,4.641 174,-40.787735,365.39276,111.53377,277.331,4.637 174,-1.660502,85.81289,26.298306,85.79185,4.636 174,-5.809431,1.7900867,18.730335,43.38797,4.528 174,64.9807,183.10342,34.11602,75.39041,4.523 174,536.678,312.4589,142.74463,339.02036,4.488 174,75.13167,167.94513,33.481857,80.32083,4.42 174,362.77167,176.45741,28.60321,67.00961,4.393 174,137.70644,212.1084,34.646896,57.473938,4.379 174,-9.248814,-4.275585,40.50878,97.11705,4.338 174,493.63458,228.59802,237.8125,513.9955,4.316 174,46.109962,128.05096,55.320396,128.96112,4.31 174,413.51898,-12.674831,55.231964,123.16948,4.308 174,23.59538,146.60101,37.20359,80.76398,4.289 174,79.48897,231.28633,47.86548,79.40523,4.205 174,4.745126,127.306656,30.018085,80.76242,4.174 174,12.619428,149.07227,33.485325,87.737854,4.162 174,-37.35022,-128.57828,117.366356,282.2711,4.153 174,47.735485,211.69495,46.851215,73.17822,4.122 174,109.78362,6.1776123,30.69181,75.99832,4.111 174,-1.6945922,257.29855,33.213512,74.51807,4.108 174,574.31104,-16.14386,54.17035,142.62622,4.098 174,2.8663445,-15.282356,17.262564,38.73884,4.058 174,483.88058,147.33778,40.71347,99.94347,3.998 174,26.695301,181.79501,57.798153,114.43649,3.957 174,-14.75778,96.90919,49.33342,141.19348,3.948 174,114.19357,192.89369,45.66913,68.98335,3.944 174,226.97809,73.34846,33.2265,73.57531,3.939 174,108.95813,43.970867,31.659286,75.30388,3.937 174,152.77478,260.18152,36.995422,60.89557,3.933 174,-14.873124,180.57596,49.966984,142.26028,3.926 174,-4.6287427,228.75262,17.412508,49.98178,3.915 174,106.25271,-33.245987,59.53733,126.74051,3.903 174,89.45133,50.118797,33.903122,94.07737,3.901 174,-8.969215,214.9758,27.244757,71.654785,3.896 174,538.9527,-14.808657,17.09491,36.8424,3.884 174,33.2341,127.989456,43.91777,101.81067,3.882 174,380.57327,-13.85606,54.852478,114.12047,3.877 174,-10.378712,73.72555,29.688103,80.15333,3.869 174,510.17584,130.04921,53.937317,126.48076,3.853 174,-6.4761567,21.258036,19.531454,49.526787,3.841 174,-9.800654,112.99445,27.97903,78.0256,3.839 174,10.163074,197.26288,58.49867,115.7659,3.827 174,-11.39824,254.46727,30.388298,69.67116,3.808 174,139.04358,-34.26332,58.529633,122.65752,3.806 174,467.07526,143.6644,39.727142,105.94655,3.753 174,72.29029,223.84282,40.23668,59.10695,3.741 174,3.610928,0.3714409,42.274227,107.390274,3.738 175,-6.0737343,489.4418,18.375786,42.380524,6.667 175,70.17289,210.40764,31.034615,64.50105,6.558 175,-5.6898985,-16.615913,17.71769,43.781372,6.466 175,-10.5561075,-32.520496,28.769642,74.55646,6.177 175,-8.518549,464.92758,37.36531,91.91513,5.888 175,627.3536,-17.413803,17.382874,44.76061,5.737 175,-37.120457,-129.6664,117.83365,286.94333,5.341 175,5.2997613,180.85323,60.43204,131.74565,5.332 175,371.95148,202.90125,17.535553,28.745285,5.299 175,-17.588867,-63.314934,55.61247,146.537,5.285 175,81.32562,208.18579,44.882797,69.08801,5.265 175,612.45074,453.91544,39.901184,107.74185,5.261 175,626.1888,487.95358,21.527283,46.613068,5.232 175,479.21463,102.595505,53.035492,133.95041,5.226 175,-72.3384,-190.7779,212.83469,458.51834,5.212 175,500.57034,130.21957,40.067047,103.69327,5.204 175,1.4619446,187.79088,29.402729,90.4478,5.142 175,532.4329,-181.0037,148.04779,421.3269,5.136 175,111.00925,238.48132,26.60048,39.51648,5.097 175,583.2401,410.74976,71.59845,177.15906,4.999 175,511.55096,104.15913,51.940186,136.71545,4.994 175,623.114,-34.113445,26.58136,74.12373,4.956 175,-17.476938,436.4786,54.906296,139.07205,4.926 175,104.14227,86.048096,36.86342,72.76239,4.912 175,-6.2043486,212.64746,19.525976,47.800964,4.889 175,-73.18457,265.91925,200.79756,461.49713,4.861 175,60.189728,-16.335114,56.87401,115.63656,4.825 175,91.87622,-15.954582,57.60373,114.61212,4.821 175,540.0008,105.72233,49.877075,136.43042,4.785 175,557.4632,95.96148,51.46466,132.54395,4.76 175,-6.81962,41.31797,37.442608,124.33593,4.729 175,483.7309,91.188255,29.846497,89.499794,4.718 175,-10.011863,164.99495,28.663952,77.85016,4.675 175,-39.908276,368.44995,109.82178,274.11902,4.663 175,602.9467,-56.67853,53.257996,138.77771,4.586 175,537.03925,312.6475,142.07867,338.82077,4.562 175,56.8925,221.4372,60.065437,100.85443,4.55 175,613.8071,126.472824,34.917847,107.65752,4.503 175,462.20154,84.44815,53.939636,134.33267,4.488 175,1.5446854,-12.03891,47.736877,144.26492,4.478 175,98.10642,209.65237,45.56356,67.74188,4.396 175,585.96747,-105.169014,75.95215,240.33383,4.331 175,90.57152,-14.973558,17.470818,38.8735,4.317 175,527.7005,130.83511,51.013,140.92258,4.301 175,493.67303,227.54099,237.88342,514.9553,4.295 175,388.89056,172.48505,40.939026,98.392456,4.267 175,50.910202,210.81918,45.371323,78.43927,4.259 175,74.88061,33.186676,32.56575,76.10303,4.256 175,86.08242,124.74866,32.11834,89.33142,4.232 175,377.08148,197.50778,19.3443,33.910126,4.231 175,243.57063,-14.718174,32.42195,59.169704,4.205 175,598.21155,118.09114,36.422607,104.45238,4.198 175,-1.0312796,84.81052,26.573784,108.825134,4.186 175,-7.3869343,261.57886,21.69986,47.18686,4.175 175,614.1507,83.1824,34.725098,104.91409,4.17 175,101.846886,1.0225315,31.304512,59.50174,4.163 175,24.956467,200.46579,58.695877,116.43057,4.155 175,128.38953,-5.3015213,46.88719,88.90241,4.11 175,582.52954,120.24914,37.72162,102.386696,4.092 175,11.973545,-27.241257,56.67297,129.54747,4.074 175,542.042,135.77359,31.595154,93.173004,4.071 175,61.488014,-12.89555,31.131378,68.27322,3.992 175,516.6859,155.51538,39.648193,103.427246,3.984 175,-5.8240175,2.0430603,60.912746,224.91023,3.981 175,251.59119,-3.0454655,30.635742,60.82052,3.943 176,395.92798,217.08524,16.539062,38.08383,10.992 176,-5.591383,-16.45116,17.61399,43.07399,8.094 176,17.822397,224.42743,44.332962,85.84473,7.312 176,402.81827,218.42706,17.301117,37.381546,7.146 176,-11.165129,-31.818466,29.868052,74.08915,6.676 176,33.858215,247.9463,34.923035,67.7191,6.602 176,613.3749,452.5108,39.29065,108.958984,6.43 176,411.25928,215.10658,15.679169,33.806763,6.417 176,-6.484084,489.43607,19.477695,41.79245,6.376 176,-2.4141645,216.84854,32.060413,74.90485,6.267 176,-11.869772,478.7094,29.939402,62.41754,6.08 176,3.9018798,239.87807,40.11577,93.63078,5.821 176,405.46613,203.90848,13.668579,35.067398,5.742 176,626.06494,486.39377,21.991333,47.043,5.587 176,610.6257,-47.903877,41.822144,101.13626,5.562 176,390.36685,215.08084,16.030212,36.505035,5.471 176,627.14764,-18.45223,17.435547,46.97198,5.319 176,585.5711,-98.723625,75.056335,233.3436,5.301 176,-21.677475,403.43814,78.24466,174.34079,5.125 176,-0.80010533,28.943966,27.968513,81.73013,5.122 176,339.63074,203.287,14.446594,30.878052,5.064 176,573.087,-19.127193,55.782654,122.51575,4.921 176,583.58563,409.07227,71.6983,179.28003,4.919 176,-72.18421,-190.10977,212.77158,456.39386,4.874 176,-17.378069,-63.752052,55.64257,145.4425,4.856 176,6.4613295,87.23644,32.53392,89.91511,4.816 176,-72.91006,265.98108,200.40498,461.95398,4.77 176,489.3864,-179.63338,235.74023,424.7047,4.665 176,32.66371,207.29314,45.281265,80.83388,4.638 176,536.69385,311.6338,142.79462,340.86536,4.637 176,9.524612,36.690895,56.03804,172.89612,4.594 176,618.0915,487.63162,21.68274,45.787018,4.443 176,14.174552,217.7477,27.593464,49.337326,4.436 176,-36.52668,-128.57855,117.88343,285.66342,4.428 176,590.4115,-4.596382,52.838135,144.72327,4.375 176,-6.33878,222.6104,19.020088,44.092514,4.368 176,-5.3210664,1.9552898,17.568092,44.48725,4.319 176,-4.87263,67.72375,18.271229,48.94153,4.319 176,398.10135,204.83908,13.171509,33.956757,4.318 176,493.45215,226.90417,237.69507,516.0463,4.306 176,-7.681116,246.01746,37.795006,97.24011,4.302 176,373.8448,212.14462,14.002258,32.77568,4.298 176,148.02391,225.72284,30.709793,57.885254,4.22 176,-7.5390506,99.87361,38.659676,110.469315,4.206 176,234.40569,-12.896953,17.552109,38.544884,4.202 176,597.37524,112.724884,39.70166,104.57565,4.197 176,-12.004479,209.75436,31.81189,69.27768,4.196 176,10.577347,-31.592041,57.01528,135.92564,4.168 176,42.767212,212.35016,56.87039,97.793945,4.112 176,43.168175,-34.539448,58.096184,125.36484,4.057 176,67.70555,227.18047,30.609344,66.36723,4.029 176,539.4268,-19.457787,58.2807,120.71801,3.997 176,-8.477943,60.089405,39.23751,106.368576,3.988 176,604.1453,126.240425,52.46881,139.51962,3.981 176,3.363927,-15.324078,16.853298,42.617416,3.936 176,603.5597,60.759384,53.11731,139.78076,3.933 176,612.29425,-3.9509888,37.999695,113.28851,3.909 176,10.429281,30.736835,31.687868,84.32367,3.909 176,564.0176,142.81297,31.45221,81.323105,3.898 176,418.51678,215.07866,17.244629,33.74916,3.889 176,-0.24353266,-34.518475,27.666216,83.586395,3.885 176,581.42615,114.76074,40.270386,100.98682,3.867 176,97.20772,-5.5936966,45.71544,88.02968,3.846 177,376.99536,175.70004,18.117706,52.961853,9.084 177,-5.5880094,-17.956741,17.956316,43.473858,8.205 177,-12.185469,478.38986,30.09513,63.757355,7.215 177,-6.722479,488.39734,19.562496,43.66211,6.742 177,-12.505192,-40.22229,42.160088,98.76401,5.802 177,401.2593,178.95624,21.485413,58.037415,5.79 177,65.97607,196.23927,30.901375,71.242966,5.667 177,626.66583,487.7862,20.991333,45.224304,5.638 177,613.30164,455.2618,38.510864,105.63071,5.478 177,627.5963,-17.561022,16.72992,46.294834,5.24 177,622.52185,-33.92452,26.8573,75.69571,5.18 177,-73.58768,265.52466,201.57895,461.8335,5.111 177,584.1381,409.50598,70.72699,177.96313,5.061 177,10.7565,194.99046,55.39103,106.71376,4.988 177,585.4855,-100.304085,75.624756,234.72086,4.93 177,332.4141,169.77626,17.474945,40.320053,4.914 177,-21.33071,403.46844,78.28751,174.24896,4.89 177,-14.387374,186.63757,49.001343,131.6416,4.873 177,-19.982494,-87.49905,71.765755,197.84662,4.853 177,602.5682,-55.822624,53.589294,140.281,4.852 177,-37.196888,-129.54633,116.86482,282.72534,4.808 177,2.662053,212.73882,39.634724,88.41237,4.762 177,475.446,177.72406,32.628296,64.79437,4.709 177,-71.18081,-189.72508,211.99902,456.70526,4.607 177,12.221799,-16.466759,57.88428,119.67418,4.533 177,-5.621171,267.96695,16.090149,33.834137,4.524 177,536.63306,312.13483,142.69,341.3523,4.475 177,42.392918,-31.854124,59.0741,125.076904,4.449 177,339.21393,169.3843,17.056854,40.526855,4.432 177,139.57277,89.707275,33.478836,76.06723,4.379 177,455.38928,171.73874,29.153381,69.92529,4.359 177,74.71816,-33.71905,59.32955,125.8857,4.333 177,406.12698,166.35617,26.295929,62.36757,4.318 177,422.90958,176.94826,26.599823,66.28441,4.28 177,0.47941804,194.50638,27.723907,69.69113,4.27 177,493.13858,227.35446,237.9592,516.13525,4.261 177,-15.829244,124.999664,51.26878,138.89536,4.255 177,489.5746,-178.63812,235.61371,422.39136,4.254 177,2.1189737,488.0363,20.048534,43.835724,4.246 177,64.07327,-6.2221336,47.66098,90.341965,4.213 177,-5.2972374,281.3481,15.83015,34.71826,4.189 177,315.01743,262.41162,20.881134,35.81491,4.177 177,619.76514,-3.84437,18.275208,40.115295,4.156 177,53.708874,207.66647,31.350864,62.364532,4.074 177,347.16675,168.6575,17.131775,39.854156,3.99 177,35.876137,196.66864,42.263084,77.223145,3.988 177,540.64825,-15.191101,54.45038,122.46276,3.964 177,2.7444613,-15.477432,17.060223,40.360065,3.955 177,614.52704,-19.360697,27.20465,70.51812,3.94 177,240.26024,183.46281,23.662735,40.743057,3.938 177,-6.27672,204.0587,20.367962,48.448395,3.913 177,-9.487461,-5.7880173,40.54335,97.76322,3.904 177,425.78323,168.0404,20.040375,49.87918,3.861 177,4.1530414,281.1409,15.41843,31.099426,3.819 177,618.04913,488.16275,21.502563,43.928314,3.809 177,32.525944,-5.280716,47.62605,89.57504,3.801 177,106.440704,-39.3065,60.070084,127.298584,3.801 177,-8.154915,166.64503,28.215733,73.80565,3.766 177,306.13388,237.79567,20.951324,33.134964,3.749 177,333.75302,253.92958,29.802643,65.205734,3.739 177,43.57313,191.19183,56.58466,104.60657,3.734 177,285.2754,172.47745,27.370209,64.00119,3.727 177,226.16537,170.57414,34.833374,59.165817,3.693 177,325.25574,240.54865,31.657593,65.8374,3.65 177,428.59277,195.0152,30.049377,69.22983,3.647 177,-5.983627,47.57775,18.884129,45.373833,3.647 177,-4.48855,104.34845,18.224003,42.926743,3.613 177,355.40924,172.73965,15.571136,40.0083,3.608 177,314.02283,238.36412,20.80194,35.40773,3.594 177,574.8453,-17.685017,52.44104,126.62662,3.593 178,502.06516,152.45416,38.66147,86.68912,9.362 178,516.46295,165.65143,32.3974,74.897736,7.938 178,-5.5436096,-15.749735,18.102488,41.884384,7.678 178,402.59296,171.99498,20.512207,54.64081,7.672 178,448.51562,168.67514,25.658295,68.94652,7.634 178,625.6535,485.13812,21.97931,47.82306,7.46 178,372.51056,165.15158,18.222137,42.00638,7.391 178,613.08496,452.05646,39.033447,109.375854,6.89 178,-12.523302,478.23883,30.269754,63.69452,6.755 178,-10.482676,-32.208565,29.569563,74.26516,6.667 178,-6.8128405,488.54648,19.637444,43.892426,6.622 178,84.2294,184.92734,40.760674,76.225464,6.459 178,486.45654,167.2199,39.691833,104.39531,6.207 178,10.682537,-25.155083,58.63512,123.199036,6.145 178,-5.180484,1.8152275,19.115349,43.815857,6.127 178,188.53604,-33.29122,30.500092,63.974632,6.026 178,349.60486,153.65952,25.78122,63.096695,5.944 178,16.285149,211.9963,34.424458,61.784332,5.913 178,34.764896,204.5879,43.700527,78.81383,5.88 178,13.642893,214.4018,55.48076,116.7113,5.812 178,609.91156,-45.31775,42.640015,94.6107,5.77 178,-1.0743058,218.51233,27.222273,57.2359,5.71 178,-18.255209,-63.264484,56.95791,141.7429,5.68 178,-73.82909,264.43103,202.47758,463.84607,5.464 178,626.6776,-18.104704,17.26825,46.593117,5.413 178,451.44562,171.95772,35.994293,91.42894,5.337 178,-11.284737,210.89091,30.044481,74.52809,5.244 178,17.634687,232.13052,34.94216,77.6268,5.195 178,53.382767,213.2872,36.421585,64.45361,5.154 178,408.7495,168.4635,20.124054,47.878296,5.083 178,2.5792313,203.26532,40.954742,85.40158,5.023 178,-15.4331,196.03175,52.432182,127.444565,4.999 178,583.2124,410.37143,71.589966,175.93478,4.912 178,106.829956,191.73341,34.03662,62.69072,4.91 178,79.35091,184.17574,29.797333,61.28476,4.837 178,-21.606468,402.1955,78.75102,174.94379,4.776 178,536.8378,310.9525,142.69244,340.92932,4.771 178,-37.51429,-129.31778,117.09215,281.35254,4.701 178,-7.1085844,216.28165,20.515228,46.88034,4.692 178,586.1634,-100.00126,74.7215,230.4075,4.631 178,-40.278324,365.3408,110.840775,276.6636,4.593 178,2.6503348,-0.5880642,19.492504,39.521225,4.579 178,46.166706,219.84651,26.604992,42.272293,4.574 178,62.55021,185.96411,52.832108,103.009,4.571 178,378.25165,161.83043,17.592712,38.297867,4.561 178,425.0761,169.49965,21.24054,43.046387,4.555 178,489.3187,-181.00948,236.46445,422.47745,4.551 178,-71.38516,-189.51439,212.60231,455.55896,4.55 178,199.41252,-18.935379,22.818588,41.505768,4.547 179,403.70026,161.15956,21.142303,43.378494,12.577 179,450.51346,169.58394,19.329987,42.712494,9.677 179,460.7448,167.5149,27.469604,68.128006,9.676 179,457.79156,170.97626,20.117676,45.34523,9.345 179,444.126,171.87833,19.064575,37.438828,8.193 179,-5.576308,-16.23729,17.756178,42.24603,7.866 179,-11.364955,-31.753916,30.031704,72.516525,7.674 179,-12.37214,477.2176,30.647717,65.316956,7.214 179,-6.849284,488.8945,19.92394,44.023285,6.717 179,17.26292,2.2389488,33.849785,81.35248,6.506 179,438.91513,165.90056,28.360687,59.67125,6.194 179,375.14493,154.7553,25.376862,67.38353,6.104 179,610.70264,-47.854218,41.737427,98.81295,6.063 179,613.6608,454.60034,38.3255,107.48944,6.013 179,626.7107,488.0323,20.748108,45.23993,5.685 179,366.0669,165.46469,29.22467,70.25847,5.597 179,349.19745,185.9927,32.15564,67.522095,5.493 179,1.573981,4.263218,29.582087,74.82153,5.462 179,-6.4649653,2.301138,19.71039,42.853973,5.319 179,583.72876,411.0894,71.254456,176.88718,5.238 179,-17.934528,-61.357887,57.685844,140.80876,5.225 179,-73.35479,265.28033,201.74075,461.43414,5.134 179,-10.999764,-0.7208748,30.300247,68.712265,5.057 179,-18.527857,432.5747,55.949997,141.6308,4.963 179,434.5113,172.38838,21.67865,37.81743,4.91 179,465.76443,161.07678,18.196503,41.387238,4.828 179,518.1762,151.64377,36.514587,96.40073,4.731 179,627.0045,-19.118855,17.63733,47.581726,4.723 179,-39.698227,367.76712,109.821884,274.65842,4.718 179,370.82706,182.35391,33.03189,72.356995,4.681 179,488.64685,-180.033,237.11517,422.89294,4.648 179,2.6529646,-13.760199,16.912697,38.966972,4.636 179,421.10132,173.33923,38.82489,90.810425,4.615 179,536.4071,311.14417,143.03186,340.963,4.615 179,443.18976,73.7172,27.953705,77.04842,4.606 179,-15.997052,124.95051,50.214752,137.88828,4.599 179,618.5771,489.87677,20.697937,42.505493,4.588 179,-37.75727,-127.28365,117.8499,277.48483,4.568 179,586.16895,-105.7547,75.99988,243.52768,4.52 179,486.2537,164.28632,36.592255,90.29556,4.519 179,11.325855,-15.587036,57.62315,118.78959,4.492 179,1.2080181,489.21674,20.886423,43.45807,4.485 179,244.04005,214.01483,33.21193,52.6976,4.481 179,388.54306,172.85414,39.5654,89.63457,4.436 179,405.11792,167.83356,37.960327,77.83119,4.405 179,493.50903,228.3829,237.28864,514.9498,4.338 179,32.247437,11.062847,23.235054,65.63893,4.307 179,362.03558,161.16786,20.761658,48.89293,4.293 179,64.18421,204.55411,21.394363,29.751678,4.261 179,417.1965,162.54097,19.088898,36.21956,4.176 179,-4.650603,172.31189,16.05467,39.95421,4.089 179,339.8523,310.1789,35.183594,71.36731,4.088 179,411.67365,-61.505676,54.964508,127.89336,4.032 179,-0.9376383,151.71042,52.016148,121.49802,4.02 179,443.47607,-60.03469,55.529938,126.52429,3.996 179,51.70951,66.09517,32.006012,65.15837,3.99 179,-6.0758953,23.611153,19.125511,46.802452,3.97 179,478.04883,165.5644,30.20465,58.608994,3.934 179,5.028887,-11.4014435,32.85396,65.60307,3.906 179,58.744335,184.36958,30.932255,50.14781,3.9 180,559.6372,154.80333,22.2323,46.188644,11.977 180,464.13315,155.25037,25.572601,68.21411,11.202 180,-11.464115,477.18378,29.965052,65.892456,8.796 180,-5.891055,-15.203911,18.247768,41.683865,8.071 180,-6.4575033,488.63956,19.579403,43.82608,7.915 180,623.25964,-33.161915,26.181213,73.51875,7.548 180,627.42303,-17.205471,16.760986,45.361835,7.275 180,-10.774566,-32.901894,29.294193,73.959015,6.908 180,613.2422,454.46558,39.162354,107.40625,6.532 180,428.98834,150.84486,29.4859,72.21263,5.741 180,-16.95652,436.67596,54.72992,138.2511,5.403 180,1.6812944,489.16824,20.07383,42.683014,5.384 180,-73.35014,264.21027,201.73604,463.41327,5.279 180,594.32434,-47.473114,43.84082,93.94153,5.18 180,603.4657,-58.04944,52.85785,132.66978,5.166 180,583.51794,411.29663,71.38226,176.1275,5.077 180,467.91467,159.12102,37.84668,89.358475,4.976 180,454.672,160.20102,30.353668,84.61435,4.943 180,-18.128965,-63.505474,57.23094,141.7373,4.926 180,626.60754,487.8644,20.829529,46.06656,4.911 180,331.30542,175.16103,32.292908,66.90779,4.907 180,553.87134,28.638918,19.173645,48.269974,4.843 180,619.74316,-16.95703,16.71991,41.987736,4.832 180,-6.4449143,-0.16577148,19.732752,45.77971,4.83 180,556.0212,156.44849,32.561523,70.22542,4.806 180,436.88464,164.59862,30.146942,75.46297,4.789 180,-39.970154,365.45856,110.442474,277.62476,4.718 180,272.22345,229.8697,35.378296,63.761093,4.673 180,2.209946,-14.1526785,17.502625,39.845974,4.663 180,536.5246,311.58557,142.74902,340.60046,4.627 180,118.50353,218.12352,63.798622,123.83238,4.612 180,10.831802,150.69438,57.609962,109.784256,4.611 180,57.43122,151.24352,59.55007,105.49806,4.55 180,-14.716108,151.34026,49.18473,137.09645,4.508 180,3.2212424,7.899418,32.222218,76.44612,4.501 180,533.0913,-184.14157,147.4259,423.3355,4.493 180,-37.8092,-129.36293,117.985794,279.73987,4.46 180,2.1315813,-19.039097,51.18438,125.26198,4.451 180,47.552567,13.680069,25.502052,53.01348,4.403 180,585.93207,-104.37315,76.11481,243.4962,4.392 180,184.73174,284.5968,22.543976,28.980896,4.388 180,493.57666,227.90295,237.90051,515.242,4.342 180,-10.744007,433.60544,29.022709,75.65939,4.334 180,449.32712,158.3588,21.539154,53.249054,4.309 180,9.3035755,489.3114,21.092314,42.042603,4.281 180,580.3511,164.74854,32.76996,75.02594,4.24 180,483.54404,158.60701,39.633392,90.11623,4.176 180,151.56377,218.59981,62.563354,116.98125,4.152 180,561.37836,487.77667,21.76892,42.768982,4.105 180,597.0136,463.39954,38.97168,96.75726,4.085 180,5.2535963,467.82925,37.887123,93.36838,4.081 180,484.79462,153.69363,29.645386,60.686646,4.029 180,201.77563,293.3315,21.08368,28.182495,4.026 180,445.5177,178.13306,31.05951,81.338806,3.997 180,589.4079,148.01099,27.96753,60.01323,3.987 180,91.06911,145.3028,59.619766,107.10823,3.922 180,504.8299,163.48773,36.90741,64.99875,3.887 180,618.1851,489.9778,21.020142,43.010468,3.883 180,-2.541567,-15.997501,30.004307,68.29646,3.857 180,35.498653,165.54288,41.84505,78.46275,3.847 180,80.70662,176.64384,45.132965,75.52602,3.834 180,357.5137,-33.154457,28.94162,74.58611,3.823 180,406.9356,138.83783,37.97296,89.2728,3.815 180,-70.51015,-188.91113,211.58028,454.24554,3.812 180,297.33636,269.1452,20.731873,30.959778,3.808 180,17.69797,489.54666,20.563848,41.546356,3.808 180,-5.9891977,53.839603,19.38358,45.86761,3.791 180,612.4244,201.92033,39.229736,112.0349,3.781 181,627.48193,-16.364279,16.51947,45.549004,7.841 181,622.789,-33.242596,26.505066,75.49212,7.086 181,619.2834,-14.712589,16.369263,42.67249,6.719 181,626.742,487.1596,20.26947,45.499573,6.675 181,-11.060017,-32.251587,30.275183,73.419624,6.549 181,4.826556,29.73824,30.967491,75.18143,6.427 181,-5.939784,-18.40161,18.75093,44.655003,6.306 181,58.897358,189.14696,58.721798,98.71004,6.167 181,612.90186,453.83908,38.70752,109.122955,6.07 181,-18.047895,-63.401276,57.47075,139.12956,5.963 181,602.99243,-55.708496,53.037292,132.4718,5.934 181,618.6953,488.83212,20.016602,43.879486,5.915 181,-9.228915,465.42096,38.126514,90.259155,5.764 181,538.4324,170.9527,20.591736,44.647247,5.677 181,355.1353,-31.784557,32.48706,67.024025,5.607 181,27.638718,187.86679,57.966675,102.58731,5.519 181,47.50888,210.31425,48.12664,74.91719,5.347 181,168.69592,165.14546,28.684845,63.493546,5.324 181,596.79236,149.54352,32.603943,79.575226,5.296 181,-22.409391,401.6187,79.80334,175.23163,5.207 181,142.7127,202.94939,49.230072,80.28407,5.188 181,614.1957,-16.612526,26.66504,70.02563,5.085 181,227.97188,124.536194,28.309067,77.099915,5.078 181,87.9475,183.0333,61.897224,101.64395,5.042 181,-73.594826,265.29068,201.44254,461.48972,5.04 181,-6.6010356,489.29776,19.21642,42.764374,5.003 181,583.8268,410.17416,70.89575,177.08524,4.959 181,80.09301,209.90689,47.14643,73.07199,4.918 181,110.815544,207.47787,48.99221,74.99191,4.864 181,121.76006,177.17412,61.049416,107.187515,4.69 181,536.7949,311.31537,142.40454,340.75812,4.665 181,-37.05191,-129.29704,116.50909,277.66577,4.638 181,546.28906,176.78885,18.644348,41.746124,4.537 181,154.80832,173.05678,59.9467,108.55101,4.46 181,421.0544,-34.385765,29.274506,63.95137,4.454 181,1.5484142,34.178673,22.271423,56.078636,4.423 181,88.75034,220.42079,24.09208,38.46138,4.374 181,579.0454,125.94831,50.597717,143.0968,4.371 181,361.32724,296.51,35.755463,67.780945,4.361 181,585.76465,98.200455,32.56555,93.25571,4.342 181,10.554131,169.88097,57.3581,112.06117,4.335 181,532.52905,-182.1079,148.0686,423.20044,4.334 181,68.00872,202.35507,34.79624,57.484497,4.333 181,586.643,-102.002594,74.54718,240.04283,4.274 181,-71.190384,-188.72696,212.84926,456.1068,4.259 181,493.6296,227.26755,237.94559,515.3568,4.25 181,564.9847,161.81935,38.384705,95.23164,4.248 181,-9.478994,-5.8290787,40.145195,96.19021,4.143 181,594.8782,-44.711098,42.92151,96.76081,4.097 181,117.581635,331.05566,31.051605,75.99609,4.078 181,1.3132095,203.57999,42.07557,89.75601,4.077 181,506.23764,190.94072,31.380463,69.2762,4.065 181,103.00567,224.45164,23.184761,34.613907,4.056 181,-5.8174696,139.63841,17.403297,38.37155,4.054 181,192.31085,184.66493,46.39572,79.840805,4.041 181,-5.882243,123.86969,17.405937,35.990112,4.034 181,220.02655,5.536665,16.18396,27.73485,4.032 181,2.2125912,-40.189545,43.688942,93.42239,3.986 181,203.72665,6.177512,16.503586,26.785564,3.978 181,-5.582829,154.60779,16.70611,39.4032,3.974 181,42.0642,-36.697624,58.47268,119.08885,3.963 181,-15.577213,155.90723,50.23602,137.32404,3.957 181,137.94624,148.05309,61.739426,109.956894,3.933 181,10.804911,-34.89042,58.024834,123.393425,3.893 181,130.2979,332.29434,32.31392,68.89938,3.893 181,2.1967654,-19.023308,18.557259,45.118767,3.886 181,266.34668,263.84253,35.164124,61.604614,3.873 181,-1.089071,-18.441998,28.26299,70.95775,3.863 181,218.08762,142.12122,57.741608,106.56395,3.845 181,19.844744,200.7583,30.857588,61.110443,3.829 181,147.13255,332.46173,33.90773,63.24524,3.817 181,228.39264,166.94281,30.407776,67.9362,3.811 181,203.34586,-11.388433,15.514175,33.8369,3.807 182,627.3314,490.5618,19.651062,42.40799,7.626 182,-5.500624,-17.749771,18.026741,44.78163,7.586 182,-6.3898125,488.93237,19.34214,44.062866,7.243 182,-11.682534,478.84903,30.29168,63.399017,7.159 182,623.2125,-33.68204,25.938965,76.4271,6.914 182,619.6125,493.18787,18.688293,38.03662,6.607 182,-10.55036,-31.649313,29.57009,73.845505,6.578 182,-73.5086,264.5109,201.9849,464.1356,5.851 182,294.1766,135.46628,30.54187,81.33977,5.744 182,-18.058985,-63.933907,56.43215,142.29813,5.74 182,613.2853,457.63556,38.108032,105.18793,5.503 182,513.3142,305.50714,36.24005,74.71829,5.469 182,627.111,-18.443699,17.35846,47.959152,5.393 182,603.0538,-56.544262,53.23163,132.84479,5.189 182,584.0135,413.84988,71.06903,174.0134,5.173 182,18.810692,220.07956,113.16602,302.67667,5.074 182,172.88226,185.71468,30.208237,63.554047,4.956 182,-36.904873,-130.5337,116.92767,279.89276,4.811 182,72.332695,199.87868,61.419563,97.15263,4.785 182,-17.026867,436.88303,54.502014,138.68149,4.774 182,-39.21339,361.1968,109.98386,280.46054,4.768 182,82.2647,256.41226,20.27755,28.693756,4.746 182,-4.8397217,86.40766,17.30857,37.85553,4.741 182,492.99545,228.64078,237.91061,514.5408,4.733 182,302.66843,162.80862,29.369965,69.471725,4.64 182,585.46497,-99.07005,75.47803,233.15431,4.622 182,74.1405,255.20409,20.609062,31.189743,4.595 182,535.5365,311.80673,144.43762,340.62296,4.573 182,2.3444486,90.080475,19.314201,36.058952,4.528 182,342.18018,161.87128,29.938171,64.45647,4.517 182,-71.2569,-189.3146,213.06169,456.3681,4.481 182,112.84491,220.47278,45.53357,70.671936,4.479 182,186.35526,-3.477848,20.418243,35.984715,4.469 182,155.43878,176.53404,58.316895,105.808914,4.434 182,57.31491,214.71649,58.69223,98.96979,4.38 182,3.8727212,236.91357,29.165129,63.401794,4.377 182,96.4794,222.67252,45.55504,71.72751,4.347 182,189.94733,146.7084,53.756927,118.24713,4.345 182,121.62622,181.41333,58.419937,102.298615,4.324 182,1.7261845,489.8666,19.753536,42.72238,4.281 182,3.039571,-3.7074795,19.82911,42.901077,4.274 182,-10.31826,-8.3699,40.94721,102.06134,4.207 182,11.472487,-36.480247,58.266144,132.05246,4.189 182,155.54974,-18.981499,59.066315,117.69917,4.157 182,90.408485,256.6265,18.972237,25.78833,4.156 182,277.9058,185.04395,29.957855,64.00888,4.142 182,226.75272,170.83398,27.742004,64.48514,4.127 182,594.8139,-46.744934,43.523132,96.95945,4.122 182,143.59473,220.11427,47.634445,70.995834,4.08 182,482.89014,-16.34594,17.422302,39.015484,4.054 182,300.45285,107.47211,28.195343,87.58966,4.042 182,418.37158,217.81386,20.102692,30.516785,4.034 182,235.71619,-21.43748,58.402405,121.875275,4.022 182,3.9615715,193.15639,16.268398,32.93907,4.015 182,174.84846,217.83295,48.092697,75.812805,4.014 182,191.39224,200.95366,47.17305,79.27327,4.014 182,389.42438,136.57153,30.487488,63.56961,3.93 182,192.41655,-8.629841,47.41243,89.94621,3.889 182,169.92801,-15.3420105,18.331818,36.846058,3.884 182,439.8169,211.371,24.888,34.76445,3.881 182,47.987175,232.24225,46.04962,79.76123,3.878 182,121.84541,228.08913,22.506912,37.42842,3.864 182,490.59372,104.141785,34.049408,58.819,3.859 182,611.772,494.62537,18.256775,36.216675,3.854 182,603.2168,494.73648,18.8396,36.22879,3.847 182,25.025326,184.48344,59.013126,104.767044,3.846 182,-4.3647213,122.03232,14.68671,37.41559,3.843 182,9.1431675,490.16492,21.18544,42.647583,3.819 182,488.2068,-175.93758,235.34045,417.13486,3.806 182,123.21596,-20.250145,58.84253,121.92128,3.769 182,-0.77994466,-17.84732,28.50129,68.65924,3.766 182,1.7145133,-42.134895,44.346157,96.593735,3.762 182,-4.7618546,441.02127,16.648848,43.593994,3.739 182,5.611106,468.1074,37.533062,93.6608,3.735 182,3.82062,210.1767,16.45088,34.72191,3.732 182,528.8292,188.48015,21.257935,29.934982,3.725 182,162.23532,-14.555203,18.075745,36.167377,3.717 182,127.90104,230.67216,46.24169,75.46919,3.716 182,265.69638,-19.79795,60.74008,122.790245,3.708 182,616.1001,-22.18696,24.715637,74.80355,3.705 182,-5.8015766,0.8670349,18.577818,43.896812,3.698 182,165.74084,-32.6202,29.595596,70.06216,3.697 183,-5.6952715,-17.686356,18.0839,43.07529,8.468 183,-6.182599,488.6416,19.116177,43.620483,8.02 183,276.19357,117.57553,30.449127,94.076385,6.581 183,-8.740816,466.2879,37.734688,89.812195,6.533 183,-11.1297245,-30.93332,30.041317,69.22373,6.479 183,-18.129448,-64.60544,56.60613,140.99307,6.189 183,622.52734,-33.3355,26.73706,77.735825,6.187 183,627.0026,487.95325,20.119507,45.09308,6.109 183,612.76733,454.66052,39.384277,107.48572,6.017 183,626.8686,-20.487034,17.688782,51.292076,5.941 183,2.6628785,-15.79673,17.623426,39.858395,5.595 183,155.03322,167.24069,56.73137,113.16858,5.375 183,-73.95358,266.42395,202.24286,462.34338,5.234 183,244.716,196.00998,33.25943,67.83594,5.071 183,137.02483,276.24707,22.611359,28.220764,5.046 183,603.29755,-55.35343,52.967773,135.72874,5.04 183,129.53372,283.83893,20.859055,26.871338,4.892 183,-5.8114204,0.29520226,18.534159,41.672592,4.875 183,-21.313753,404.935,79.19373,173.09882,4.816 183,201.24905,-4.325794,22.830719,36.29727,4.793 183,583.38245,411.45563,71.47632,176.57709,4.785 183,-5.278108,108.37284,17.668303,36.68119,4.774 183,10.464784,252.20404,18.692173,33.949463,4.77 183,-37.094524,-130.21866,116.88211,280.03867,4.736 183,-40.396557,367.59402,110.73323,276.36728,4.736 183,-71.747314,-189.26656,213.30452,456.55164,4.734 183,121.78123,284.3486,20.79493,27.198608,4.668 183,546.9829,190.4108,17.878418,29.495422,4.66 183,536.55695,312.1298,143.4201,341.3763,4.554 183,217.62369,-2.4579887,22.352432,33.515858,4.492 183,113.672554,-13.900148,37.245323,60.115105,4.487 183,-15.417892,186.1593,49.41205,138.32141,4.432 183,177.97798,-4.1098547,22.044968,36.8565,4.344 183,618.82733,490.2928,20.501099,41.42041,4.338 183,75.48717,291.49753,17.538055,24.791595,4.337 183,475.018,213.74588,33.180573,52.326202,4.336 183,-5.9075904,24.853947,17.71491,41.564037,4.333 183,279.38974,160.59105,29.517303,73.40256,4.317 183,74.98247,212.60588,33.162064,63.54164,4.314 183,-5.187934,250.33894,17.006416,38.63777,4.312 183,90.37034,-1.5351171,21.256645,33.822876,4.301 183,456.31232,218.80493,25.552612,36.76581,4.268 183,5.336597,470.28708,38.227627,91.37857,4.236 183,172.89142,144.84813,52.69879,117.12999,4.234 183,115.590805,204.15315,35.3282,59.116226,4.214 183,493.75848,228.03711,237.84277,514.8629,4.207 183,152.97758,275.70108,22.59639,27.579071,4.172 183,256.98727,86.81212,51.358612,139.65579,4.168 183,186.95601,169.83015,57.14348,113.18205,4.153 183,270.3818,139.4272,51.54309,118.52461,4.133 183,28.835537,205.14023,54.393223,107.80185,4.133 183,58.77258,281.20303,19.1834,25.316101,4.116 183,-10.307841,-8.421398,40.454826,100.124176,4.106 183,120.83783,182.05188,61.80481,113.72949,4.089 183,585.76135,-100.20558,75.58679,235.68837,4.076 183,99.42221,1.7659664,34.056732,54.087402,4.072 183,144.70288,-14.986757,45.914566,79.77723,4.067 183,33.965744,283.77008,19.64265,24.303802,4.066 183,1.96347,490.86218,19.579819,40.653687,4.054 183,198.29027,160.34604,23.162552,52.869812,4.053 183,441.97095,225.63649,20.753357,32.996902,4.044 183,-5.028701,126.02828,15.987264,34.50132,4.024 183,-5.6546297,39.835342,17.890892,42.823845,4.012 183,41.705112,282.05792,20.619976,25.289886,4.01 183,364.16815,185.10843,32.89612,58.21756,4.007 183,3.0271273,276.7465,18.008224,30.768799,3.992 183,67.15819,281.84888,18.340027,24.908813,3.986 183,107.67348,302.4128,16.415863,19.939636,3.984 183,377.65137,198.71097,22.061096,36.500916,3.983 183,58.67169,-15.954826,59.98822,115.8385,3.959 183,80.500755,215.46188,43.168556,78.90106,3.956 183,146.24648,282.2043,19.975891,26.21222,3.949 183,11.682642,-35.669502,56.745712,125.30162,3.947 183,18.628141,279.29092,18.232859,25.387054,3.943 183,56.870895,326.91083,22.65783,27.123535,3.935 183,257.28046,189.32294,43.825714,92.85007,3.919 183,-4.1024003,201.51608,15.573271,42.207382,3.914 183,186.33308,-4.2503834,22.261765,35.837868,3.913 183,187.83006,-59.632816,56.723297,127.39316,3.908 183,239.35208,157.9985,53.293365,114.10568,3.908 183,90.48616,179.96524,59.38446,108.60898,3.905 183,60.08235,214.79184,34.30085,64.2471,3.895 183,15.0462055,253.14645,44.746193,75.24716,3.89 183,129.28561,192.92764,34.76201,66.1077,3.866 183,89.37344,-10.875351,61.677704,114.70548,3.853 183,75.39914,-12.70126,33.3788,57.703377,3.853 183,31.981203,252.3883,45.970497,75.16461,3.85 183,188.21552,153.80415,29.650421,72.13101,3.848 183,-5.423068,267.43384,17.259045,35.872223,3.848 183,123.63907,-1.6752586,36.863937,57.740547,3.841 183,504.0173,488.83856,23.987823,43.410156,3.829 183,154.56102,-57.232635,58.007523,124.36929,3.818 183,2.3168397,-40.67591,43.41434,94.12898,3.813 183,195.11633,-14.57393,34.19626,58.42332,3.81 183,170.40704,-36.7789,59.14183,125.1179,3.805 184,627.0722,-15.927597,17.094055,44.116905,7.236 184,-10.727324,-31.497992,29.47118,71.495026,7.151 184,-5.2660794,-16.503122,17.050669,41.79574,6.987 184,519.27985,205.51259,25.32605,29.957458,6.188 184,-12.783815,479.27744,30.995905,61.04654,6.085 184,-5.1406946,2.676239,18.105816,42.685577,6.049 184,611.7495,-46.61712,40.428772,101.03544,6.006 184,-6.7048845,489.12646,19.538713,42.941406,5.999 184,621.9615,478.20532,28.726257,66.564514,5.677 184,578.7392,205.09,21.04358,34.55658,5.254 184,-17.790142,-63.486008,56.352516,144.20523,5.243 184,603.6538,435.5929,54.57074,138.00507,5.203 184,4.3676844,200.1533,32.258057,67.27312,5.034 184,-73.94702,265.7001,201.77747,462.36972,5.011 184,-4.636028,28.711622,16.36028,39.073692,5.004 184,620.09973,1.7380657,16.499512,34.932953,4.924 184,-21.962143,402.12863,79.4613,175.28433,4.832 184,553.00793,207.40631,22.152527,30.926544,4.794 184,-71.97777,-190.49228,213.6681,457.90408,4.748 184,297.03528,252.23155,21.210968,34.735703,4.717 184,593.3445,205.35995,19.322876,35.90085,4.687 184,536.56635,311.21533,142.9721,341.0221,4.627 184,-5.6764026,43.61448,17.593496,39.840782,4.578 184,3.327607,-13.078498,15.91664,37.062466,4.555 184,-4.6534433,315.90247,14.978673,32.904755,4.462 184,-5.1615295,185.8213,16.125713,39.997253,4.456 184,2.9195213,6.7117996,20.164463,42.414017,4.449 184,4.6662273,1.881813,30.083567,65.00834,4.446 184,493.29208,227.47821,238.29391,515.3109,4.441 184,619.7838,-14.795263,16.38794,40.369488,4.419 184,586.0718,-97.92156,74.07416,230.70325,4.414 184,282.86234,255.97012,19.5878,31.208618,4.395 184,-37.567646,-131.56879,118.09125,288.949,4.393 184,538.63525,197.3457,33.56775,48.117004,4.393 184,321.32602,224.94576,35.56967,62.00917,4.352 184,536.288,207.0988,24.106384,30.791977,4.346 184,561.8052,206.09392,21.182373,32.22505,4.259 184,290.292,253.97676,20.272064,31.572739,4.236 184,505.0839,207.92792,22.396454,28.371002,4.215 184,-5.4871078,202.652,16.855082,40.50052,4.165 184,123.372635,-0.19140434,19.26509,32.277977,4.16 184,-10.360608,-1.525238,29.645115,69.73277,4.138 184,10.989718,181.63528,56.054348,114.364746,4.129 184,115.68759,-1.6501818,18.963226,34.81319,4.093 184,169.85391,-15.844784,18.444977,36.700108,4.08 184,555.9919,196.84695,32.34778,48.60898,4.073 184,60.601074,141.12526,53.026566,113.32039,4.045 184,400.889,202.43259,20.828949,31.671875,4.037 184,24.038391,0.66900444,24.57148,46.379967,4.013 184,-6.840191,231.54703,18.88841,42.058258,4.013 184,107.65594,-2.2993107,19.19355,36.7237,4.01 184,527.8576,200.44241,26.147156,30.823563,3.952 184,515.0558,195.98445,35.952576,47.35132,3.922 184,-14.270428,185.75914,49.013824,140.62355,3.905 184,130.7366,-0.4994068,19.617386,33.279655,3.897 184,9.893885,-27.69514,59.68495,133.36778,3.891 184,18.474897,193.71591,34.41237,64.94269,3.886 184,581.1129,195.16876,29.475403,51.753555,3.877 184,2.371844,240.7973,20.917173,39.34088,3.87 184,138.35345,-0.68273926,20.543152,33.911903,3.855 184,153.04617,3.3233376,23.855133,40.01267,3.843 184,-6.5245795,250.90868,18.11204,38.65233,3.835 184,338.81833,229.71214,34.008484,62.33571,3.798 184,147.32043,135.36293,41.74901,90.63841,3.794 184,187.72804,-61.42397,57.0132,127.82771,3.793 184,-0.7501793,224.52118,29.232588,67.549255,3.79 184,156.03043,-59.543095,56.367462,129.09009,3.788 184,52.168205,-1.8538208,31.757164,65.8788,3.784 184,570.773,208.06076,20.223755,34.31073,3.779 184,186.98407,-16.241648,17.197357,35.971287,3.766 184,216.86945,195.63658,24.517517,37.35028,3.76 184,178.75816,-15.263541,17.825516,35.469097,3.749 184,-3.969593,172.02805,15.156633,38.593323,3.748 184,618.51355,33.490612,19.16742,43.975285,3.737 184,-4.7848864,364.8727,16.151398,36.03241,3.703 184,3.9088452,283.2577,17.108873,33.53534,3.703 184,284.5477,209.92792,56.390076,114.32117,3.701 184,161.68039,-15.363609,18.915375,36.656967,3.682 184,204.39943,293.20612,15.853119,24.817871,3.679 184,-14.715867,123.39393,49.757004,142.1214,3.662 184,2.145412,177.51413,25.797173,74.15846,3.657 184,511.5701,201.63768,24.378876,28.831818,3.656 184,303.75256,248.26524,23.21759,38.120377,3.634 184,122.87804,-14.243408,16.930313,34.655315,3.631 184,304.34656,224.9349,43.60132,84.82886,3.611 184,611.3431,-12.099488,15.973633,37.519066,3.584 184,29.011763,165.03583,55.63884,112.426636,3.579 184,618.4061,489.98398,20.678223,43.069916,3.572 184,4.9965477,325.38095,13.6322975,26.454742,3.57 185,403.58292,295.3254,18.915802,25.948486,10.341 185,569.56274,301.9195,21.090271,44.58612,7.321 185,606.5193,294.4096,29.200806,65.80994,7.262 185,577.1183,302.9205,21.378479,41.05948,7.212 185,626.89026,488.41022,19.989136,45.181213,6.981 185,545.7612,290.67484,33.288086,67.23367,6.864 185,580.45703,298.46118,30.204834,60.917206,6.845 185,559.3909,297.4211,23.619568,43.422302,6.72 185,-12.19138,478.03287,30.264822,63.56241,6.15 185,627.47546,-17.141834,16.936646,44.949944,6.126 185,36.506153,267.8525,17.130547,25.561432,6.063 185,397.31357,295.08594,16.825256,24.41983,6.033 185,426.55972,295.1046,19.682007,26.441193,6.024 185,434.1463,296.18027,19.137756,25.050385,5.875 185,564.32495,187.81306,27.414612,57.810287,5.806 185,588.85004,285.96576,31.124146,65.17325,5.789 185,410.18573,291.01282,18.225525,23.87088,5.75 185,-6.138977,488.53333,19.048634,43.466675,5.667 185,612.33966,458.27997,39.407227,102.919556,5.636 185,623.4324,-34.84929,26.187683,74.36663,5.601 185,451.64838,296.968,17.23471,25.263092,5.524 185,44.61878,269.1722,16.518162,24.555664,5.519 185,3.8162792,260.0903,16.122099,28.585327,5.379 185,442.05975,290.59497,18.602814,26.378296,5.363 185,-11.547396,-33.170845,29.712164,72.85604,5.233 185,207.8787,277.5433,24.593918,29.919006,5.199 185,-21.508404,403.25778,78.868454,174.71866,5.171 185,404.7165,285.722,14.79834,21.878906,5.141 185,458.41693,289.31332,19.520203,28.808838,5.052 185,-17.74151,-64.48803,56.04313,148.60254,5.011 185,583.1099,411.46387,72.375854,178.53143,4.998 185,-73.004776,266.2586,201.07137,461.11444,4.937 185,-4.0045195,255.5006,15.084487,33.152786,4.91 185,-5.79468,-17.714533,17.248928,41.79541,4.876 185,615.4977,304.53067,24.804688,74.577515,4.856 185,417.45355,292.68463,20.123413,26.455078,4.793 185,603.85944,-56.12797,53.095764,133.49002,4.773 185,536.9295,312.98022,141.6026,334.29156,4.736 185,60.34862,276.587,15.788044,23.445038,4.713 185,593.0515,313.25458,22.262878,43.235474,4.664 185,389.0802,288.95633,14.910522,22.923187,4.581 185,-3.64634,349.1239,15.218296,36.847046,4.566 185,598.451,309.13953,31.012573,63.669983,4.562 185,27.247877,262.3735,17.675928,25.881104,4.542 185,217.20395,282.80804,23.210754,29.588348,4.535 185,461.14102,305.6189,15.957733,25.319061,4.528 185,292.27145,487.05832,30.570831,55.326813,4.493 185,11.187767,262.16306,17.458889,26.879883,4.476 185,618.68774,490.46143,19.75177,41.666992,4.457 185,225.82732,284.32196,22.64885,30.255554,4.454 185,396.40286,285.13135,14.143951,20.844788,4.4 185,-4.176523,332.7269,15.464205,37.07718,4.35 185,53.15222,275.5203,15.289017,23.472015,4.315 185,18.598173,261.00482,18.01079,27.29419,4.313 185,289.36194,282.0133,19.676025,35.146454,4.287 185,-4.9452934,269.67215,15.777002,34.70639,4.283 185,493.30164,227.99377,237.85626,513.3624,4.275 185,233.20107,273.90747,22.563766,30.209045,4.242 185,241.61629,272.4735,22.041122,31.920166,4.201 185,564.8829,280.3302,37.352417,83.3425,4.092 185,468.6673,305.154,17.800018,27.644012,4.092 185,309.29416,487.05472,29.826447,54.470856,4.081 185,192.19647,279.55942,23.91977,30.827087,4.059 185,533.5049,294.76828,33.201843,64.375824,4.058 185,-9.586793,169.12651,39.356167,101.62465,4.049 185,43.129105,257.1151,18.177788,26.410706,3.95 185,27.693123,273.20892,17.560303,26.720459,3.937 185,276.6,487.5217,31.604248,54.404083,3.93 186,602.5033,264.3949,31.443237,107.956116,14.858 186,323.15833,276.59985,18.230896,28.4346,8.047 186,592.095,271.21136,27.98584,67.785614,7.729 186,556.6389,259.1466,27.464844,67.02573,7.551 186,553.4982,269.34988,20.168701,46.64148,7.135 186,613.05695,293.89047,25.446472,84.884735,6.614 186,602.0411,286.84973,22.120544,55.56967,6.594 186,626.64874,487.81705,20.35254,46.112885,6.556 186,-5.271758,-17.554644,17.113699,44.38868,6.336 186,71.6915,275.72574,23.657455,33.65381,6.163 186,563.7997,297.79315,33.123047,61.05182,6.106 186,564.7292,265.16443,29.867432,69.04309,5.869 186,-12.293277,-39.145668,41.406017,99.511475,5.856 186,627.3383,-17.514,17.099548,46.09306,5.798 186,541.5493,261.45563,28.92633,61.50241,5.787 186,-12.362027,478.57455,30.06388,62.386322,5.667 186,96.35516,270.34683,24.510773,32.03604,5.666 186,603.4879,-54.074966,52.47339,140.44121,5.628 186,317.05188,278.00284,17.236572,26.697968,5.557 186,617.69543,276.60022,19.30603,55.053864,5.555 186,82.82432,263.61694,35.277092,48.677124,5.509 186,612.56396,457.53708,39.403687,103.77286,5.494 186,396.80334,280.46408,15.503326,26.53244,5.414 186,347.47134,276.9026,17.123657,27.37259,5.385 186,114.94851,257.95316,35.18392,47.306396,5.34 186,623.4348,-34.520447,25.91388,77.062584,5.253 186,-19.842014,-84.79742,71.6985,193.15315,5.206 186,-6.2063885,489.3722,18.942541,42.237305,5.191 186,546.8481,295.93185,33.928772,62.301025,5.158 186,78.59444,271.48138,24.580688,34.560913,5.122 186,-73.24665,265.91183,201.74371,462.38174,5.101 186,403.36917,280.91763,16.053131,27.884125,5.056 186,-21.527771,403.5624,79.16284,174.25839,4.915 186,323.6713,267.19696,16.380127,25.023499,4.91 186,-36.041294,-121.772026,116.65355,269.42065,4.907 186,371.34167,274.37903,16.895905,24.64392,4.893 186,64.879944,272.33463,23.59372,31.331055,4.873 186,354.7632,272.59933,17.951202,26.981812,4.864 186,582.9327,411.71823,72.29285,177.7504,4.841 186,536.64764,311.8905,142.55676,337.69995,4.838 186,329.797,273.0032,18.34848,26.119507,4.822 186,338.39307,273.88544,18.465302,28.781433,4.746 186,363.11374,274.24945,17.351044,24.95398,4.72 186,568.34644,314.88745,22.436707,37.372314,4.676 186,569.4553,300.37787,21.208313,37.965393,4.672 186,570.5393,266.9944,19.097595,42.487427,4.659 186,379.04202,267.95825,17.779541,26.45581,4.62 186,541.3341,259.358,49.866455,118.72977,4.579 186,615.4669,148.28949,24.081482,110.63571,4.518 186,105.19135,278.61374,21.857185,31.893005,4.512 186,111.54023,266.7835,24.91021,34.015137,4.497 186,307.90646,277.94638,17.478485,33.279297,4.46 186,605.0818,132.59717,28.56488,95.80917,4.451 186,-4.4120703,272.5941,15.042401,31.16742,4.448 186,2.8776407,-15.78054,48.0589,128.13277,4.447 186,4.2206044,284.4482,16.617405,25.740723,4.431 186,493.56796,230.39073,237.63785,510.83203,4.402 186,537.91156,271.7759,20.411743,43.01581,4.397 186,608.41583,279.73492,22.095581,50.58014,4.364 186,-5.133074,286.31583,16.073942,31.832794,4.342 186,614.95245,-22.17368,26.177856,78.01932,4.327 186,103.97363,264.38113,24.28276,30.590363,4.315 186,388.22906,274.63272,15.985596,25.958313,4.288 186,413.77914,287.31354,33.569366,55.267822,4.287 186,558.33887,268.6102,48.484863,120.634155,4.237 186,308.03485,265.72375,16.048828,25.407684,4.231 186,-8.003653,-3.8292122,38.01239,99.74765,4.16 187,-4.9523997,-16.406076,17.31517,44.253864,7.662 187,603.1625,-55.12234,52.99774,136.7268,7.536 187,394.89752,255.24545,17.4487,26.355438,6.727 187,-10.173391,-33.51541,29.120998,76.94378,6.723 187,387.9318,249.50446,17.027039,25.14978,6.681 187,168.44708,245.83502,24.648636,32.384888,6.492 187,-8.896749,465.7464,37.749306,89.79401,6.072 187,626.6399,488.01013,20.37561,46.27008,6.008 187,364.99902,244.89864,16.315338,25.407425,5.913 187,104.77965,267.67905,24.472672,33.86734,5.851 187,372.8728,244.8395,16.666412,25.711014,5.842 187,627.4459,-16.881058,16.935059,45.234104,5.828 187,372.81082,233.0848,15.490448,23.6577,5.778 187,380.6799,241.19196,15.913452,24.049652,5.726 187,-6.3400707,488.4061,19.353258,43.738678,5.658 187,365.22842,231.01805,14.9861145,24.188004,5.49 187,-16.621407,-61.897133,55.966206,141.98187,5.468 187,179.05197,241.31903,35.22371,48.0094,5.317 187,612.755,456.44086,39.282715,104.86798,5.197 187,451.33624,242.93773,17.294891,28.134354,5.184 187,11.769495,283.18982,16.429844,24.379486,5.144 187,-17.094717,437.71805,54.82177,137.5723,5.132 187,-73.48576,265.35437,202.24414,462.95117,5.127 187,396.60843,245.6775,14.87558,22.676193,5.125 187,2.9249012,-2.5659485,18.472012,43.999977,5.103 187,623.2305,-34.473274,26.078857,76.00431,5.057 187,402.63385,250.2891,16.389465,24.807098,5.043 187,583.02454,412.22726,71.996765,176.43301,5.0 187,41.749554,281.73508,21.45773,24.17514,4.95 187,460.16248,238.94002,15.787048,24.38472,4.93 187,419.67694,255.32555,16.597015,25.19963,4.889 187,364.7957,215.3563,14.757538,24.783737,4.861 187,442.82233,242.58449,17.79071,28.974014,4.857 187,177.15738,242.15768,23.590057,30.068817,4.8 187,-36.825745,-126.688324,116.948944,271.91107,4.795 187,536.15466,311.50156,143.53992,337.28104,4.792 187,199.87372,272.7567,22.691833,29.239319,4.779 187,-40.331543,367.12585,110.631836,275.8504,4.772 187,595.3895,-45.580647,43.10504,101.50357,4.764 187,119.15285,267.23163,23.03981,33.105988,4.746 187,3.6446488,280.68317,15.691634,26.415314,4.694 187,218.60938,272.9261,19.827835,29.580109,4.655 187,363.9148,204.59471,16.21753,27.521545,4.578 187,427.0777,254.71121,16.941711,24.713745,4.562 187,159.36986,251.07835,25.496658,32.065598,4.548 187,333.78058,268.22363,13.652588,19.721619,4.545 187,191.48434,253.2342,25.42575,32.42729,4.493 187,495.4389,229.43524,235.75244,511.21832,4.489 187,341.09546,267.4365,14.50531,19.52118,4.475 187,452.3463,256.47064,15.397156,23.293549,4.469 187,381.95203,251.6535,16.817963,25.883972,4.431 187,19.256174,283.8526,18.219969,23.911285,4.404 187,185.02301,269.7963,24.455963,29.503662,4.322 187,-4.177321,270.54306,15.096811,33.144653,4.313 187,411.53607,256.84067,15.9036255,23.607758,4.31 187,603.6462,324.42233,19.043701,30.705414,4.306 187,426.44495,236.78047,18.855377,28.4431,4.298 187,161.40044,240.88211,21.792282,30.073334,4.291 187,434.23273,235.98274,18.590149,29.912216,4.282 187,443.90683,256.3357,15.906708,22.015686,4.277 187,381.02344,226.81862,14.00769,22.801773,4.273 187,33.90816,282.75766,20.95987,23.740509,4.269 187,389.11105,237.24184,13.50647,21.681625,4.256 187,26.2303,283.08945,19.682323,23.753387,4.255 187,208.97423,272.1386,20.585037,29.686218,4.235 187,162.80334,248.72005,36.491425,47.609116,4.228 187,4.771624,292.67038,14.278456,24.131592,4.192 187,-1.1220956,-15.481365,26.781616,69.899506,4.187 187,192.86115,245.34898,36.4319,52.23958,4.174 187,199.79337,242.36032,22.864258,30.160187,4.146 187,128.21158,266.52832,22.166931,32.955902,4.137 187,4.608609,269.30865,14.04708,27.728516,4.128 187,259.59683,-11.747896,15.857544,38.548836,4.117 187,357.58795,229.29344,14.699799,25.553986,4.099 187,357.2162,214.94897,14.507385,25.554382,4.079 187,185.90599,236.9867,21.082062,28.207214,4.071 187,168.40163,264.9804,24.4169,31.971558,4.062 187,460.23914,250.20221,16.203583,24.64331,4.047 187,266.87894,-11.721863,15.866882,39.18417,4.03 187,226.00928,270.49246,20.561676,32.10797,4.006 187,0.88508964,70.466385,23.661034,56.302826,4.001 187,245.71085,-16.484564,29.245575,70.48541,3.988 187,325.75787,268.26642,13.138153,20.468842,3.987 187,372.64697,214.72372,14.770264,25.336319,3.971 187,618.3409,319.90994,19.663208,40.812836,3.964 187,251.02722,252.1419,18.639587,32.020874,3.962 187,-3.1358252,255.99008,13.912545,34.534607,3.95 187,434.3092,248.04083,17.949371,27.150513,3.944 187,468.2151,250.63792,16.898682,24.411331,3.922 187,251.32616,-0.1706028,17.863785,36.61618,3.916 187,-71.15951,-188.79373,211.06598,454.74792,3.903 187,627.12695,25.43581,18.334778,47.55296,3.895 187,227.8849,240.9599,31.740738,53.831116,3.878 187,618.36194,489.81128,20.601196,43.206055,3.864 187,348.19763,267.11142,15.1015625,19.355865,3.853 187,452.02698,232.20914,15.36499,25.983734,3.814 187,585.38416,-102.43819,76.49744,237.82982,3.808 187,152.72612,265.09457,23.054764,31.104065,3.807 187,5.618179,468.9771,37.96974,92.25659,3.805 187,419.24872,244.67477,18.270966,26.532867,3.79 187,398.0111,238.24573,13.035034,20.846802,3.789 187,-5.360036,377.5464,16.333694,37.661194,3.787 188,394.70273,233.76822,19.764435,31.339783,9.953 188,622.8762,-34.00509,26.204956,77.695366,7.534 188,424.5853,229.51869,20.651184,29.012161,7.084 188,627.0434,-15.41448,16.803894,44.658844,6.838 188,400.08362,229.13712,20.257507,30.804657,6.776 188,-5.148892,-16.791203,16.928926,41.934193,6.757 188,419.38046,235.82741,17.563263,27.566116,6.719 188,-11.023307,-31.956512,29.631031,70.82376,6.41 188,562.2237,84.54469,22.006958,42.802628,6.276 188,615.29,341.16177,26.01532,82.33609,5.997 188,460.57083,226.68622,16.897308,27.518906,5.986 188,626.72003,487.55536,20.473206,46.41333,5.962 188,-8.905688,466.07184,37.7281,89.60138,5.863 188,410.03207,232.72206,19.80362,28.263199,5.795 188,-6.4012156,488.66653,19.692774,43.72769,5.686 188,603.11676,-55.425484,52.661804,132.25122,5.412 188,111.37756,221.96602,24.56488,35.332443,5.4 188,612.5303,457.21442,39.63153,104.44708,5.381 188,-17.67759,-64.896095,55.870438,145.3977,5.377 188,372.2152,218.32845,18.748993,31.917862,5.285 188,467.1427,226.04886,17.20639,28.779861,5.207 188,-73.43228,265.05612,202.05179,463.72635,5.15 188,380.33246,233.87537,18.759277,29.385681,5.112 188,432.90802,229.58484,19.461945,28.646423,5.11 188,443.03693,231.31201,17.454468,26.38794,5.074 188,452.47067,232.12547,16.91745,25.189346,5.038 188,-21.356815,403.82275,78.98029,174.17896,4.991 188,619.26105,-14.083574,16.502136,40.95169,4.983 188,591.90173,250.25043,46.34619,167.8913,4.938 188,536.1637,310.6164,143.91052,340.58063,4.933 188,-4.5742664,3.9142838,16.71754,40.51525,4.921 188,72.87184,265.53476,20.67482,31.065887,4.884 188,-37.52258,-129.22597,117.25099,277.86462,4.867 188,364.74463,216.71524,17.858246,31.7836,4.832 188,426.4949,252.67703,19.152435,25.5047,4.829 188,583.01245,411.69424,71.6803,177.22916,4.809 188,615.03546,-16.062912,25.876099,69.52811,4.794 188,494.36032,228.97131,236.86826,513.1552,4.75 188,56.098732,257.2351,23.644676,37.14859,4.741 188,211.23569,237.41197,34.39856,58.55739,4.666 188,9.800793,272.1461,18.990301,27.512634,4.616 188,140.13321,225.03389,33.174866,49.83983,4.598 188,127.50447,227.75201,24.865128,36.939484,4.578 188,576.2626,90.19006,21.696777,49.93608,4.566 188,120.20714,260.21262,24.73877,37.35669,4.527 188,420.76096,217.66666,29.264801,46.268005,4.506 188,379.33777,219.68678,18.660095,30.387756,4.49 188,3.0621517,8.134186,18.307316,38.783794,4.461 188,388.80753,239.13818,18.171112,28.096832,4.45 188,88.49875,264.28403,22.496353,32.269104,4.436 188,615.4975,296.79755,26.821777,78.781006,4.39 188,27.105888,267.6207,19.572292,29.414215,4.374 188,78.63678,250.67223,24.823074,33.699997,4.361 188,104.99594,261.4361,22.995323,34.678986,4.352 188,33.672962,263.99615,22.14899,33.535797,4.341 188,431.11172,217.26624,22.24057,32.748383,4.338 188,336.36115,235.65018,45.33606,77.56207,4.314 188,160.32904,233.65987,24.0699,31.101974,4.295 188,314.49167,253.86142,19.741577,24.595581,4.282 188,-4.096145,255.34357,14.911955,33.379944,4.278 188,4.412491,259.82913,15.392288,28.983002,4.263 188,10.918431,-34.599625,58.42734,132.15387,4.226 188,355.75592,216.20796,17.797516,31.311264,4.218 188,65.179245,237.42676,35.94265,51.782898,4.163 188,162.93068,229.2355,32.96031,52.882263,4.161 188,411.60773,250.17807,16.894104,25.037048,4.159 188,372.59735,232.53418,18.357391,29.740479,4.153 188,114.55423,222.62962,36.706924,56.945175,4.143 188,451.27896,218.49736,18.086578,30.3788,4.134 188,-3.4207249,102.918045,14.38196,36.431213,4.133 188,-70.71196,-188.7204,211.68433,454.9888,4.131 188,434.63925,245.05894,18.055298,24.971512,4.127 188,402.58957,217.77791,17.815552,27.349075,4.101 188,568.0981,90.30699,21.67981,46.58673,4.087 188,3.4144723,272.0039,17.793804,29.387054,4.081 188,441.38852,217.68016,19.47055,31.252533,4.059 188,395.92224,219.1662,16.816437,25.952682,4.039 188,626.8551,295.09354,18.669067,49.87549,4.012 188,123.33825,256.0634,34.65966,48.6727,4.011 188,364.49475,180.90779,16.861206,28.651459,3.959 188,460.8573,237.52086,16.096588,25.878036,3.949 188,222.88423,246.01692,25.398773,39.549118,3.916 188,108.48337,251.29877,32.59453,50.884094,3.91 188,419.39084,250.85103,18.230804,25.756699,3.905 188,3.599354,-14.626999,15.799368,37.897427,3.893 188,51.281578,233.20944,34.22799,57.012085,3.88 188,217.63763,219.46317,57.347595,99.34354,3.868 188,323.073,252.92496,19.418793,25.200378,3.856 189,388.22678,222.35652,16.955261,27.47676,6.863 189,-5.531947,-16.25889,17.859365,41.446465,6.543 189,-5.077741,281.77512,17.476843,42.07318,6.46 189,81.683716,235.18524,36.44261,59.663452,6.288 189,-8.872748,465.80087,37.86483,89.977936,6.188 189,395.68207,223.86955,16.946472,27.894547,6.154 189,-6.4487705,488.822,19.656,42.9758,6.015 189,387.52835,209.3418,17.934631,30.667053,5.975 189,361.3086,220.42581,21.526154,29.301773,5.864 189,47.87397,227.9036,25.992271,45.79184,5.828 189,49.512924,255.18553,36.960243,61.742996,5.828 189,623.2976,-33.589664,26.220825,76.54612,5.826 189,507.35986,56.552696,20.927185,47.135773,5.672 189,627.2582,-18.93618,16.968262,48.238064,5.609 189,378.25433,214.54108,19.42633,29.76944,5.603 189,626.4193,487.30792,20.732117,47.257385,5.562 189,26.000523,220.55019,32.7079,55.37001,5.447 189,-17.228544,-62.703712,56.61953,141.64557,5.396 189,100.063995,246.02306,28.254333,40.462723,5.372 189,201.49797,255.10693,21.12413,29.383728,5.344 189,612.6055,456.34027,39.42212,105.58862,5.296 189,-11.263489,-32.06962,29.909771,74.43669,5.227 189,583.1855,412.6149,71.522156,175.728,5.223 189,315.43887,221.10846,19.345184,36.955658,5.197 189,232.87611,248.71878,22.130829,30.515259,5.176 189,354.55603,228.30579,19.496674,27.901367,5.15 189,417.89117,222.79779,20.161224,30.340454,5.12 189,-73.64675,265.18182,201.96976,462.91156,5.111 189,3.1436586,289.21277,16.994377,39.269775,5.082 189,345.6477,222.16031,20.061188,29.306396,5.052 189,395.823,209.0408,17.116486,30.514008,5.046 189,603.2787,-57.795223,53.640503,138.05219,4.992 189,186.01561,256.93536,21.060059,26.034515,4.981 189,471.03265,219.4333,23.488556,31.647003,4.979 189,411.22037,223.98975,18.718475,29.921722,4.947 189,192.79013,252.43936,23.105286,28.55841,4.943 189,-21.307693,404.1906,78.89102,173.99396,4.906 189,2.2719545,-14.799705,17.71788,40.275528,4.855 189,417.41147,242.247,21.918213,30.445145,4.826 189,536.33746,311.14243,143.74371,340.7427,4.793 189,241.64069,239.99222,22.375702,31.418793,4.726 189,-4.1852407,306.56458,15.055774,35.728363,4.684 189,494.0907,228.34772,237.09717,513.83685,4.682 189,216.98254,250.69579,22.967484,30.254257,4.68 189,40.874653,286.21262,22.569046,32.033752,4.635 189,39.479763,225.91357,25.874432,40.348328,4.58 189,120.19108,222.24942,61.36541,94.99924,4.551 189,367.7776,213.56544,22.228058,32.101807,4.547 189,410.19708,243.49345,20.212402,30.410751,4.545 189,136.4492,258.69736,23.54956,30.740143,4.528 189,586.17584,-101.181725,75.2395,234.84064,4.504 189,111.4592,248.23341,46.522095,74.82518,4.504 189,329.2306,225.54655,18.257751,31.138138,4.504 189,225.63931,254.39914,20.871292,29.394226,4.491 189,519.84485,64.12955,21.737976,48.421356,4.486 189,10.756526,289.11093,18.156384,38.25229,4.471 189,490.1446,-179.34375,235.55353,422.42352,4.47 189,322.17126,215.98949,19.366974,37.985153,4.445 189,271.2485,235.96991,47.13028,75.6853,4.43 189,403.18546,223.68388,17.822968,29.292953,4.429 189,-10.422068,274.06085,26.9163,66.6362,4.367 189,-37.66726,-128.64197,117.5438,275.35394,4.354 189,73.378456,251.97995,35.502235,59.14026,4.353 189,143.61357,250.42532,46.330826,73.86206,4.327 189,307.27844,221.55022,20.34909,35.77687,4.315 189,594.3656,-48.042675,44.5719,101.026146,4.312 189,209.63605,255.34288,21.30072,29.683914,4.309 189,87.00615,222.72543,62.86856,93.94537,4.248 189,209.17816,241.49823,22.254028,30.334473,4.229 189,66.82596,232.16008,36.27314,59.065933,4.207 189,169.67456,258.70358,21.35846,24.738007,4.197 189,240.19456,238.17935,46.283737,73.570465,4.177 189,338.0465,230.44121,18.118347,27.433273,4.166 189,403.4452,208.97694,16.936768,31.116364,4.116 189,23.49134,227.80896,24.43435,36.129974,4.081 189,118.415634,254.82687,26.585144,37.50116,4.062 189,406.67328,207.85025,27.653046,49.049377,4.053 189,324.5111,66.21882,35.36798,68.933586,4.033 189,153.25293,259.315,22.033157,27.07669,4.018 189,248.678,247.4434,21.601425,29.396622,4.017 189,201.04648,242.48769,21.988968,29.527908,4.017 189,303.89343,234.71158,46.17639,74.71405,4.017 189,281.44128,215.45001,59.431885,96.79761,4.003 189,177.80307,258.50223,21.226624,24.637756,3.995 189,152.57487,221.25436,60.670532,95.31775,3.978 189,54.33177,281.76273,26.347404,35.805817,3.976 189,211.89178,235.9831,33.168945,47.6911,3.971 189,200.1901,219.13696,62.5755,95.059326,3.968 189,175.97868,243.26851,46.877426,70.02959,3.946 190,475.60544,221.44307,18.005737,28.512268,7.694 190,311.65723,253.64423,25.073914,37.574768,7.629 190,296.44373,253.45232,25.67566,34.28932,7.068 190,584.17596,49.122448,25.145203,44.553425,6.923 190,174.48853,273.0599,26.223541,32.285004,6.891 190,483.24542,214.99197,18.781128,31.452255,6.881 190,622.9259,-32.678463,26.927673,74.40304,6.74 190,-11.461438,-31.668818,30.385963,72.2444,6.626 190,305.1509,259.10098,22.502869,35.478363,6.495 190,627.3312,-18.925396,17.169067,47.774445,6.451 190,177.77443,269.65112,34.30275,45.758972,6.199 190,320.07257,260.68304,22.39215,32.342834,6.107 190,457.6706,220.34312,21.054321,30.49382,6.099 190,-5.6845546,-16.73228,18.048473,42.375916,6.077 190,191.17622,274.08514,25.260178,32.29245,6.053 190,394.70016,229.84294,19.018524,35.50215,6.047 190,466.93,220.55653,19.29956,30.236511,6.043 190,626.4681,487.67963,20.676636,46.84131,5.949 190,490.53363,209.17867,18.414978,32.957092,5.911 190,474.58865,209.52007,20.298096,31.386505,5.897 190,-6.2244797,2.4605122,19.21514,41.836494,5.787 190,491.03012,221.77896,18.440155,30.8376,5.711 190,265.2582,268.35004,21.513824,29.20517,5.697 190,448.7155,220.2532,22.249481,31.380829,5.691 190,-8.872291,466.08615,37.9017,90.09506,5.65 190,168.75246,278.34055,23.719635,31.52652,5.622 190,-18.102139,-63.367924,56.804718,140.79503,5.527 190,-6.3765697,489.59167,19.401836,41.867798,5.498 190,612.7269,456.3664,39.17102,105.28882,5.411 190,250.81744,269.55353,19.831177,27.476257,5.399 190,203.8421,7.2638235,18.106537,31.717426,5.294 190,280.27844,263.9361,23.525818,33.2583,5.232 190,583.1641,413.52826,71.529785,174.80121,5.229 190,492.69272,208.06543,29.312042,49.474365,5.21 190,288.70206,260.872,23.8497,35.088226,5.084 190,491.80756,0.36193275,17.635834,31.614101,5.076 190,200.1062,278.63367,22.826233,30.088043,4.943 190,58.45516,235.29494,36.596348,68.86742,4.9 190,-73.73808,265.5663,201.45537,462.65085,4.895 190,73.930595,280.1839,34.836845,71.34039,4.881 190,528.68427,252.17757,23.025513,30.920425,4.877 190,-5.6861534,264.3479,17.759829,40.431915,4.863 190,536.18164,310.66833,144.5816,340.56195,4.851 190,427.05063,240.30113,17.364166,24.543625,4.843 190,400.6053,216.96948,20.277924,38.0988,4.83 190,490.96783,-181.71844,234.17163,425.71832,4.775 190,-21.684238,401.95447,79.59129,175.48761,4.729 190,126.188515,259.83923,36.558586,55.450104,4.71 190,494.4835,229.76566,236.52408,512.03064,4.693 190,314.09558,268.11908,18.7641,29.393616,4.683 190,475.06577,1.8952694,18.585602,31.936792,4.656 190,498.304,221.184,19.406708,32.287506,4.648 190,352.16626,243.51875,45.914825,65.732834,4.632 190,161.27206,268.91257,44.95401,71.46912,4.63 190,512.4419,244.19273,22.718872,31.098984,4.625 190,603.21893,-56.685715,53.534912,138.86798,4.612 190,440.98724,228.59644,20.895966,28.98352,4.599 190,585.87805,-100.20781,75.06714,233.11414,4.565 190,258.74728,272.34818,19.72107,27.485168,4.549 190,208.6778,278.7268,22.656723,29.088226,4.544 190,-5.864645,88.47391,18.346136,42.08902,4.536 190,401.72357,232.95117,17.726807,32.059875,4.535 190,433.87753,237.23618,19.426239,26.177063,4.534 190,467.22583,4.07308,20.015808,39.097206,4.534 190,242.79416,272.77344,19.505829,27.547363,4.504 190,194.45535,257.75415,35.15831,49.18808,4.491 190,-37.981686,-128.76028,118.39061,274.09265,4.486 190,217.55753,280.65723,21.17279,27.120941,4.47 190,386.60492,244.16533,20.468933,30.285843,4.464 190,74.18922,148.03024,20.311653,29.692932,4.461 190,184.60736,285.9188,22.376282,29.954315,4.445 190,297.86655,269.1446,20.561737,30.979126,4.434 190,-5.157904,74.28669,17.164122,40.271446,4.432 190,-1.8077719,-14.292955,28.370329,66.7936,4.405 190,459.38763,5.108053,20.07727,39.68905,4.403 190,483.38434,204.59305,18.1521,29.508316,4.377 190,620.362,-6.870228,18.5495,42.164677,4.348 190,44.173733,336.70352,16.05148,26.706482,4.338 190,433.2801,211.58018,20.118622,31.159103,4.329 191,425.44714,283.23553,34.5867,44.618256,7.232 191,623.1479,-33.05673,26.509216,73.25518,6.968 191,239.36617,278.75253,26.184006,41.18164,6.723 191,-6.34673,-18.034323,18.399136,44.112026,6.636 191,438.72543,289.98364,26.416412,32.94409,6.339 191,-11.058493,-32.67288,29.269243,74.28509,6.322 191,627.09406,-18.183144,17.136963,46.22683,6.302 191,241.7105,271.82074,34.01442,66.537384,6.232 191,69.02159,288.97513,32.33544,67.99646,5.967 191,626.4151,487.43738,20.747314,47.182617,5.902 191,566.56726,261.13074,26.095825,40.864563,5.88 191,-17.801334,-64.226364,57.42722,141.5619,5.563 191,-6.4464216,490.089,18.942528,41.46277,5.522 191,612.65985,455.6668,39.277527,106.29523,5.514 191,540.3544,258.7639,33.681213,52.344757,5.474 191,-9.378929,462.52606,38.100777,93.19513,5.399 191,176.27795,234.53836,36.998093,58.211243,5.393 191,226.58908,269.5052,35.87964,55.853577,5.334 191,-12.21795,479.84845,29.723064,61.810913,5.312 191,366.1409,281.666,36.27594,65.14926,5.304 191,448.73474,296.02863,22.118713,27.601715,5.222 191,455.05237,290.6231,24.71936,29.095276,5.102 191,-23.184958,397.787,81.22405,178.63037,5.095 191,536.4641,311.17392,143.47998,336.71048,5.071 191,-74.33575,265.25903,202.50491,463.03906,5.032 191,-35.25142,-127.2318,116.61609,272.67322,4.996 191,10.621219,-29.607552,59.994534,126.03363,4.942 191,488.78326,285.71295,23.025146,30.591705,4.941 191,441.0246,276.8615,36.290222,46.951935,4.939 191,603.4566,-57.310524,53.025635,131.50797,4.913 191,411.7349,281.57385,35.16577,47.7489,4.913 191,582.6069,412.84344,72.48761,176.0083,4.881 191,490.49057,-180.82143,234.59354,426.42606,4.819 191,444.01,0.56778526,17.592957,29.66093,4.801 191,593.6719,-46.92183,45.091553,92.059715,4.782 191,536.3099,275.92303,24.181335,35.00064,4.637 191,493.93192,227.7554,237.37271,511.7418,4.596 191,187.48071,277.28702,33.525925,55.838318,4.58 191,586.0686,-100.635826,74.97681,232.90152,4.569 191,511.00183,270.31296,26.41571,36.02527,4.551 191,504.3001,278.47748,23.870178,32.63159,4.513 191,242.74202,234.1612,34.5132,57.59497,4.5 191,472.7504,289.24792,22.736511,27.078674,4.487 191,179.66414,290.78818,33.668854,59.479218,4.272 191,300.5803,369.58182,15.374207,26.491364,4.252 191,436.42517,1.3471031,17.295776,29.77444,4.227 191,131.71968,278.1586,33.203842,58.77008,4.225 191,3.8421535,310.8248,29.72999,56.89447,4.211 191,463.17383,285.69443,24.147278,28.315979,4.204 191,2.3775058,379.1858,19.68565,31.675232,4.203 191,171.35873,275.61874,32.867035,55.69348,4.178 191,354.15063,-13.749443,17.704346,36.252068,4.176 191,431.62234,288.77097,46.500763,67.227936,4.16 191,378.82635,-12.85944,16.824158,35.330338,4.144 191,362.68085,-13.508257,17.102142,35.799435,4.134 191,51.64681,301.32712,35.259533,59.306885,4.123 191,155.07823,281.91257,32.574203,58.80179,4.109 191,154.96095,230.45088,35.3851,61.180466,4.107 191,595.5361,243.09476,30.950867,54.525024,4.104 191,41.354797,-30.738342,59.462646,120.76921,4.099 191,619.17035,-18.786839,17.920532,42.686577,4.079 191,447.75513,279.94467,45.630737,64.46054,4.064 191,-71.6334,-188.14397,212.17441,454.47534,4.032 191,185.08263,286.92673,23.290771,37.72513,4.025 191,58.385258,289.42236,22.886219,42.52191,4.025 191,519.857,277.39548,23.934998,31.969757,4.022 191,1.8444467,-39.24703,44.203125,97.035255,4.018 191,370.9411,-12.376571,16.924255,34.94443,4.008 191,552.7169,255.55539,25.335266,41.24695,4.008 191,224.61194,277.0054,24.160019,38.017944,4.0 191,-9.292992,-6.56242,40.427773,99.02425,3.984 191,-4.2522373,116.46844,14.859183,35.06034,3.981 191,464.25317,265.47855,44.899384,66.297455,3.98 192,-5.891733,-17.516968,18.44376,44.583797,6.305 192,613.3336,453.32855,39.30426,109.20856,6.225 192,622.0014,-33.52789,27.173523,78.67736,6.136 192,-20.357903,-83.68239,72.2871,192.62804,5.971 192,-12.264687,-40.17227,41.763687,98.68804,5.939 192,-12.668705,478.21774,31.07711,61.685028,5.857 192,-6.402006,489.60477,19.144032,42.76596,5.796 192,626.89886,488.45926,20.439514,44.829437,5.662 192,484.0494,304.18665,34.058075,72.160034,5.659 192,602.36115,-56.696068,53.648315,136.44868,5.594 192,-35.100723,-124.332924,115.62166,268.78088,5.51 192,581.3756,241.89668,29.867432,64.92705,5.45 192,585.1446,-99.306274,75.550354,232.52766,5.365 192,-1.0445213,11.109455,29.7002,83.130844,5.207 192,-23.442247,398.98785,81.47177,177.38458,5.185 192,626.8586,-18.584354,17.34729,48.88403,4.949 192,-6.0805464,67.4045,19.791893,48.51499,4.929 192,-74.15906,266.15906,201.90994,461.16528,4.884 192,583.05585,410.16217,72.09076,178.32074,4.846 192,69.96755,-16.19289,31.838623,66.008514,4.764 192,536.2519,312.3412,142.21313,338.76794,4.663 192,618.6008,490.76248,20.361206,41.712738,4.627 192,92.50957,-1.180542,29.364204,66.80025,4.594 192,418.1703,355.2952,35.32953,55.800323,4.584 192,594.64374,-45.813904,44.04132,98.96966,4.552 192,489.27213,-179.3305,235.09805,424.1818,4.551 192,12.866006,-14.945503,55.758583,116.440475,4.529 192,0.021210909,54.405926,23.743948,55.053547,4.526 192,33.985462,367.92914,34.995037,54.836,4.505 192,596.2078,238.23688,30.83075,61.93695,4.434 192,573.9664,-23.153076,53.724182,123.3557,4.399 192,496.84753,287.0979,22.79657,40.227356,4.347 192,-71.99049,-190.0781,211.90659,456.35318,4.343 192,593.0032,246.03168,21.364075,45.69751,4.318 192,616.49976,377.87717,24.636047,76.000916,4.244 192,137.80255,383.68024,20.870453,26.01892,4.151 192,493.298,226.19168,238.68747,516.4994,4.138 192,-5.9872236,101.008,20.25599,47.182106,4.136 192,-8.633144,35.99746,38.224678,101.78739,4.135 192,474.37238,299.6111,20.211517,36.066498,4.128 192,-5.8478904,154.6204,18.241852,41.084274,4.104 192,86.13838,297.9761,65.83148,111.244415,4.101 192,3.2553697,-7.892048,42.150505,99.220245,4.063 192,-4.977568,267.4129,16.769812,39.02899,4.041 192,-4.8151164,238.66048,15.649818,35.85463,4.004 192,597.63116,-4.02166,39.942383,108.80708,3.998 192,556.726,294.981,29.944824,55.271393,3.982 192,170.57843,373.85965,35.60466,51.580353,3.95 192,452.27615,-9.607906,40.768646,89.19327,3.916 192,541.3033,-15.460678,54.762512,120.11537,3.911 192,-4.3894773,254.0489,15.603962,36.875046,3.873 192,403.05273,349.31686,35.30316,52.92932,3.87 192,2.1977587,-16.365763,18.44989,43.885708,3.852 192,38.554672,345.97394,24.991707,33.228424,3.833 192,-5.7891483,169.88582,18.499022,43.127747,3.832 192,413.18423,-28.192036,55.082397,132.55513,3.826 192,79.12169,297.35056,49.08394,81.87329,3.816 192,24.688025,346.42526,22.926233,31.46936,3.813 192,2.6876974,258.31827,16.246887,33.631134,3.808 192,156.18817,62.635185,29.374405,73.41953,3.803 192,52.22227,-14.190571,31.017185,64.01513,3.797 192,54.498974,295.77765,65.76149,114.784454,3.792 192,223.06003,103.88535,28.526825,57.252815,3.777 192,619.39264,-6.1747684,19.383118,44.840744,3.735 192,564.0712,-19.082245,40.88556,88.12054,3.72 192,46.301285,314.27518,48.89689,87.07669,3.719 192,8.843575,302.57837,62.580284,115.88092,3.71 192,-6.8611712,15.325205,20.861141,47.337456,3.695 192,118.712685,302.3999,64.2268,108.96283,3.692 192,-4.9860168,286.3439,16.891586,42.21866,3.69 192,467.30167,301.9998,20.085419,35.15561,3.685 192,323.4233,-9.750366,42.1799,87.05063,3.684 192,208.71378,340.95123,45.646088,72.33386,3.673 192,489.44736,298.4452,22.118744,45.801147,3.666 192,564.9756,242.10513,31.462524,63.314087,3.664 192,250.72417,344.16183,56.87587,109.012085,3.651 192,385.78824,378.33203,21.70691,27.011505,3.638 192,597.1333,459.7772,39.06964,101.458405,3.634 193,-5.4523935,-16.576107,17.52079,40.784187,7.54 193,627.0778,-18.288517,17.650452,47.751377,7.067 193,419.12054,452.00427,36.848877,57.870728,6.739 193,623.68164,-33.900803,25.682983,76.41014,6.736 193,-13.55979,478.64594,32.209274,60.60974,6.423 193,-6.6999826,489.22946,19.429935,42.282806,6.116 193,-11.090165,-30.638979,29.744404,68.89297,5.835 193,-4.3425846,95.053665,15.970187,35.21704,5.672 193,613.35626,455.80334,38.729248,105.47632,5.576 193,-22.49369,401.14545,79.97124,175.71674,5.493 193,602.9402,-56.401276,53.69525,136.30872,5.42 193,585.6027,-98.627075,74.359985,235.16052,5.384 193,-17.906935,-64.95752,56.455673,147.1979,5.143 193,583.9043,409.7865,71.655945,178.36816,5.082 193,626.14453,486.93182,21.565674,46.86615,5.016 193,296.34424,443.6528,24.130249,32.20392,5.015 193,3.448757,-14.353305,16.716328,37.09687,4.931 193,532.2653,-181.24597,148.82465,417.44598,4.87 193,619.03076,-19.08027,17.855103,47.491257,4.838 193,68.70072,389.046,67.291695,106.29245,4.816 193,-73.84072,267.24084,201.55566,459.4513,4.778 193,262.9912,379.35837,63.724426,109.345856,4.773 193,37.23078,381.30072,67.0693,113.28403,4.719 193,322.03366,442.75208,32.690826,49.049683,4.716 193,-36.2893,-131.24184,117.53323,284.2184,4.638 193,430.99274,444.15005,26.075104,42.917175,4.58 193,338.16605,446.2472,34.636932,57.061768,4.489 193,536.13617,313.79413,142.82,338.97382,4.489 193,380.51868,-61.46407,55.12787,128.56197,4.447 193,-71.97156,-189.34654,213.70502,455.21246,4.443 193,407.78564,438.5447,24.070374,33.82907,4.438 193,311.92834,374.7066,25.083313,35.622528,4.383 193,575.58673,-28.969387,51.984314,143.23228,4.378 193,385.44513,444.9723,33.4646,51.898346,4.296 193,312.08258,443.69983,24.015625,37.31836,4.266 193,-5.5929337,360.61777,17.008654,38.718903,4.226 193,347.55524,-61.14781,55.248962,129.35876,4.21 193,230.97986,376.15594,63.192932,111.94263,4.207 193,347.7102,118.61405,57.074524,138.21362,4.171 193,126.07034,99.64861,53.789246,132.99432,4.169 193,158.6918,101.71846,52.206314,130.17816,4.166 193,438.72525,449.34195,25.800934,43.049927,4.161 193,29.303267,72.5585,54.216705,127.24533,4.146 193,249.70279,198.25154,22.42984,41.142334,4.145 193,101.74829,385.9508,65.739075,110.00647,4.139 193,106.46969,-29.493237,59.702156,123.98532,4.137 193,-6.6334963,426.12323,19.100924,38.373962,4.127 193,-5.4502892,1.4165096,18.367277,40.615715,4.111 193,492.6324,225.9537,239.13147,516.0277,4.089 193,328.2984,433.37433,21.763733,30.365112,4.087 193,372.1142,445.981,34.250977,56.408722,4.054 193,410.21683,192.81372,32.833282,70.50827,4.053 193,328.61636,376.5227,24.147156,32.12967,4.043 193,34.93179,357.90897,35.335506,51.2706,4.039 193,281.50885,444.20685,23.46344,29.95108,4.035 193,-5.738987,378.49796,16.914635,35.20508,4.026 193,-5.609103,155.51285,17.080715,38.388702,4.026 193,293.5265,385.38873,65.19629,106.076935,4.006 193,298.1302,-35.584152,58.543762,124.00438,4.004 193,338.77896,-22.847935,41.684418,86.33175,4.002 193,389.5152,398.3117,65.895325,100.91058,4.001 193,394.6775,103.42075,33.002502,70.16042,3.998 193,1.0661411,491.35437,20.826178,39.583923,3.987 193,371.03012,-23.928951,40.95044,88.34099,3.98 193,154.57971,4.0160847,21.255722,38.51149,3.98 193,-4.219794,78.57448,15.34971,34.97439,3.972 193,594.5903,-47.464314,43.715576,102.608795,3.97 193,93.2865,98.41289,55.348373,133.5765,3.962 193,428.6714,205.5955,32.029663,64.79698,3.949 193,304.7544,447.4573,37.192596,59.727844,3.939 193,581.39716,356.5045,39.533752,98.828064,3.926 193,428.2644,295.2075,30.88153,61.751373,3.925 193,198.17505,378.22592,63.89987,110.08612,3.922 193,265.4967,-35.17109,60.307922,125.39868,3.921 193,403.15414,-22.609158,40.721344,87.38867,3.921 193,466.35785,443.34662,33.26239,57.665863,3.917 193,502.50385,-34.541885,27.95282,73.15274,3.896 193,378.54474,115.64447,58.907104,140.9094,3.893 193,314.7848,433.52853,19.729065,26.976227,3.893 193,275.62396,367.87152,34.709473,55.713562,3.89 193,289.6317,440.0022,22.835266,27.595215,3.887 193,-10.061398,-4.0397224,41.331135,97.40791,3.877 193,424.2291,440.45645,24.628693,35.22711,3.866 193,357.92065,392.56332,64.58038,101.35077,3.856 193,370.8466,141.68878,42.292084,99.94638,3.847 193,321.3539,-12.704563,44.729156,93.141754,3.846 193,-1.6270769,204.61374,29.757427,73.83038,3.844 193,187.59482,328.06613,57.619995,118.35339,3.83 193,418.36758,-9.82299,43.81955,91.50552,3.829 193,75.80311,-12.173668,58.61074,114.58481,3.827 193,-4.4524255,60.85889,15.712191,38.123104,3.814 193,106.48958,-16.294806,17.273926,36.936897,3.81 193,123.3583,0.16804123,18.913322,33.247143,3.809 193,220.82782,69.379974,52.88434,129.28516,3.807 193,-1.2663722,415.05142,29.511229,59.996826,3.804 193,-11.91031,445.78113,41.38245,90.77319,3.801 193,386.73126,-11.147232,42.81006,92.815475,3.799 193,22.724133,330.86624,65.40906,115.454285,3.789 193,563.75653,371.35226,41.450623,96.11435,3.789 193,311.318,402.85583,63.926758,104.6185,3.777 193,289.10474,-8.023014,46.082306,89.85034,3.776 193,55.96839,426.57248,25.79007,36.916992,3.773 193,27.993057,169.08865,55.93569,133.7714,3.77 193,146.47562,4.4819565,20.993393,36.81926,3.769 193,169.208,2.406639,23.112427,40.15412,3.768 193,130.13431,375.89795,90.96512,155.24146,3.766 193,234.43637,-37.051575,59.318787,126.85454,3.756 193,-13.452611,186.24002,48.284275,141.03073,3.755 194,273.45462,254.0734,33.55014,96.695404,6.487 194,-5.706773,-16.85308,17.970402,41.81198,6.427 194,-10.86158,-31.703041,29.830559,72.236664,5.916 194,613.3759,455.16748,39.125305,105.668274,5.683 194,627.29785,-17.111433,17.068237,45.29756,5.542 194,626.3036,489.3896,21.26648,44.509583,5.46 194,81.27089,267.45917,42.305267,91.57663,5.457 194,-17.72949,-64.27678,56.783157,142.9403,5.412 194,611.6624,-50.15991,40.46234,105.44405,5.364 194,-6.509506,490.08435,19.231028,41.8631,5.344 194,-7.0889006,293.29367,19.27846,43.919647,5.298 194,-23.15968,398.953,81.2829,177.87512,5.194 194,-12.483388,478.42065,30.849949,61.8667,5.193 194,-74.09247,265.6609,202.47733,462.34412,5.147 194,585.5439,-100.93845,75.72986,235.36032,5.093 194,583.4882,410.78625,72.035706,177.48901,5.064 194,5.123894,286.09192,32.88378,68.04889,4.973 194,63.121117,-2.6779957,26.858528,45.656548,4.916 194,156.29022,-21.279629,56.26332,117.75311,4.895 194,-35.951904,-129.24832,116.65808,278.44254,4.881 194,488.34415,-178.62653,236.51907,425.39972,4.851 194,-72.20053,-190.32625,213.77725,457.52832,4.764 194,50.77593,-9.892277,33.107166,61.998917,4.743 194,61.422657,230.83345,55.25314,125.65947,4.739 194,179.01651,-18.231455,41.8537,81.305,4.729 194,381.44962,100.35714,54.27408,131.26392,4.688 194,11.860151,-20.037544,58.63896,121.778824,4.609 194,-5.516983,1.9061108,18.895483,43.501205,4.607 194,80.985176,-7.6597137,44.839645,91.65175,4.601 194,155.22699,320.95276,34.845932,48.126587,4.6 194,316.72845,-12.937237,54.8313,117.180405,4.597 194,467.1601,488.2717,33.409607,53.352814,4.591 194,536.0457,313.35098,143.59149,339.40024,4.546 194,348.24188,-12.272739,54.463043,114.271164,4.543 194,-5.4415655,278.75912,18.992887,42.916046,4.526 194,146.52145,-18.177374,42.092255,82.4895,4.518 194,530.1739,483.43008,35.1427,56.206085,4.481 194,69.41847,-0.81987,32.586243,61.430073,4.454 194,412.56833,100.95594,54.19104,133.08804,4.453 194,96.67653,269.85822,43.56096,91.73236,4.447 194,50.92781,259.02435,44.909225,91.58334,4.388 194,493.34976,226.8844,238.30948,515.4611,4.326 194,124.2357,-20.698166,55.917114,120.47651,4.302 194,89.13089,244.77733,31.611153,77.65822,4.292 194,114.629196,-16.62569,42.697525,82.53009,4.269 194,480.86316,492.37143,22.416138,37.78018,4.265 194,11.194832,232.83824,58.096992,127.41206,4.256 194,17.1298,291.49896,35.339775,60.482086,4.255 194,449.23813,490.28708,21.984589,41.50644,4.231 194,261.5085,-32.968025,28.605865,73.25489,4.214 194,-9.356974,-6.0081787,40.449318,97.63824,4.178 194,211.05536,-19.588112,41.58638,83.27514,4.157 194,83.909515,4.767046,31.26056,56.892838,4.15 194,528.4657,476.30905,24.465271,29.512634,4.147 194,348.82126,97.430824,54.332977,130.79276,4.141 194,187.21524,-59.65751,57.047607,123.64231,4.132 194,32.78465,261.67416,46.74203,91.89429,4.128 194,568.20905,472.61407,23.145264,28.921509,4.122 194,504.9013,480.76596,21.892883,26.366455,4.109 194,380.43484,-14.78418,55.3071,115.16939,4.105 194,586.60693,481.23212,18.310669,25.80075,4.103 194,89.12178,-0.6157322,21.78444,36.784424,4.099 194,571.0012,341.82724,58.489807,142.73178,4.091 194,-5.677505,169.06926,18.381554,45.228424,4.08 194,1.2582517,4.22707,21.408539,42.792137,4.079 194,250.64575,-22.653587,57.453552,125.60582,4.046 194,187.01755,176.57097,30.782196,69.512344,4.036 194,284.274,-18.019566,56.66794,123.028366,4.026 194,496.58588,481.6008,21.988647,25.558838,4.014 194,-5.9403253,119.26193,18.200523,45.914917,4.008 194,265.86057,-1.7842865,20.209686,37.089985,3.992 194,280.95868,223.02136,33.226532,86.14264,3.964 194,463.7738,180.49438,23.09021,45.341568,3.961 194,536.53625,458.54825,23.322449,28.779266,3.937 194,-6.9131956,360.8846,19.508085,37.276306,3.935 194,32.21347,-7.333519,47.160507,90.54235,3.934 194,464.96677,490.50034,22.37854,40.01346,3.931 195,-11.513877,479.39252,29.191269,62.86371,7.136 195,-6.16988,489.42194,18.89863,42.713074,6.953 195,-6.2387323,-17.49563,18.567059,43.31472,6.864 195,-11.417684,-31.36785,30.04005,71.50558,6.789 195,-16.423578,441.42035,54.00804,133.36359,6.177 195,627.129,-17.739155,17.200867,46.757065,5.584 195,-20.09291,-86.115814,72.1317,196.27611,5.567 195,622.81055,-34.22336,26.544983,77.62991,5.509 195,626.6981,488.28516,20.588867,44.34436,5.505 195,481.94687,315.40112,34.39279,58.4653,5.463 195,602.4834,-56.24066,53.92285,138.84909,5.42 195,341.10742,297.5033,31.88852,59.121063,5.411 195,613.0877,454.84012,39.052307,107.66806,5.399 195,12.417042,-17.624424,58.05125,117.34471,5.391 195,1.803894,-16.48789,17.959549,40.614132,5.346 195,459.1781,281.52444,34.491455,62.801575,5.28 195,-35.053432,-129.25832,115.80531,275.41068,5.223 195,585.62854,-100.62024,74.71112,236.58052,5.192 195,489.93506,-181.19037,235.30957,429.80325,5.154 195,137.07704,54.049385,33.448776,62.501167,5.033 195,411.85638,270.2007,56.853577,111.561615,5.026 195,-72.21217,-190.43106,213.68681,458.086,5.022 195,427.9812,286.11957,57.517456,112.7486,4.984 195,1.9996738,490.28168,19.362013,40.693665,4.975 195,-40.280235,369.92554,110.24021,274.84106,4.964 195,499.34198,314.54486,33.57788,62.22113,4.949 195,582.97003,409.8042,72.6012,179.25616,4.922 195,479.72906,310.60995,25.154358,41.99405,4.905 195,536.5621,312.83093,142.94183,337.45575,4.863 195,-73.18631,266.92957,200.55243,461.14996,4.805 195,523.9364,-11.948307,31.549072,60.070793,4.802 195,434.04584,295.99915,35.390167,54.97223,4.689 195,114.8447,48.117966,32.960487,69.76613,4.652 195,458.80096,291.2442,57.130737,113.56586,4.643 195,241.99445,481.98843,19.453033,25.682953,4.643 195,5.2609754,471.8394,38.29749,89.28903,4.582 195,443.8231,283.5593,33.97992,58.198334,4.566 195,431.2514,309.41415,25.932251,39.764435,4.561 195,354.8383,297.72452,33.37732,57.32257,4.504 195,42.09055,-34.239265,59.07269,120.89611,4.479 195,493.8684,227.78812,238.07483,512.9425,4.466 195,123.18191,-18.064018,59.023827,115.9184,4.456 195,458.17255,317.7426,34.77179,63.115845,4.42 195,494.36017,316.2893,27.382324,43.59836,4.411 195,-1.0869622,220.40683,27.94565,71.55704,4.381 195,450.5379,298.84247,34.774445,60.6203,4.322 195,35.468903,485.09076,32.48414,55.212402,4.295 195,443.76,-6.5230713,56.265625,146.39925,4.267 195,187.4035,-13.445011,58.378647,111.655136,4.246 195,362.59396,-17.706623,60.712067,117.147766,4.227 195,156.11766,-15.187622,57.686386,111.66683,4.208 195,233.87007,481.51453,19.600113,26.554565,4.202 195,491.23047,-16.100376,57.990173,117.77104,4.198 195,456.0561,292.3564,24.862366,40.782043,4.183 195,-5.979173,151.71378,18.690832,43.238556,4.18 195,225.50311,480.33856,20.097961,28.554626,4.179 195,513.53754,-9.222893,45.20819,90.6814,4.166 195,540.74133,261.259,56.029785,119.1503,4.158 195,267.58084,-1.1336832,19.817108,32.6045,4.158 195,-9.049131,-20.941753,38.70112,98.38568,4.154 195,145.90742,-14.816021,44.068832,79.25151,4.15 195,282.45242,-17.10922,17.454071,38.682983,4.129 195,466.56165,300.56174,33.548492,59.86685,4.12 195,105.53924,-34.937744,60.072365,119.26134,4.107 195,236.29633,487.7679,31.6958,53.068573,4.104 195,48.77449,477.49725,20.76905,33.236694,4.089 195,283.53293,-1.6895638,18.716034,33.98319,4.083 195,538.022,-3.9771013,20.95581,39.44833,4.082 195,443.86734,245.35826,54.961243,116.0739,4.069 195,419.7028,301.31598,33.72159,57.621063,4.067 195,253.256,-11.714264,56.556656,113.80587,4.056 195,220.09991,-10.254982,57.467407,113.75322,4.052 195,594.73987,-46.1062,44.174072,102.097,4.049 195,250.16125,483.48438,18.918396,24.139587,4.044 195,95.59071,319.0856,36.85112,52.54477,4.024 195,177.23174,-5.0750923,44.951965,84.71016,4.016 195,509.25015,-12.253492,30.863495,61.56646,3.998 195,299.75394,-14.455002,59.196503,113.53787,3.982 195,472.34167,293.03638,23.372559,42.32263,3.979 195,73.88734,-35.555824,59.96325,121.37744,3.975 195,-5.371969,56.53267,18.422106,44.633667,3.972 195,331.55826,-15.19656,59.12741,114.47632,3.971 195,396.2329,256.4835,55.18863,108.6138,3.969 196,2.9099941,266.99722,35.088676,54.385864,18.441 196,260.0854,218.86464,29.927246,84.68379,11.598 196,0.62674046,176.18585,24.521572,54.13597,10.202 196,-5.647822,-17.547657,18.197723,41.833637,9.294 196,366.4882,99.48352,43.298798,99.00867,9.292 196,232.95518,28.605968,35.054276,76.96637,8.093 196,252.53236,239.86182,31.110703,76.61139,8.025 196,158.48486,240.99747,39.339615,62.182343,7.351 196,-11.302765,-30.58615,29.544178,67.87422,7.331 196,375.61765,228.41948,26.46109,43.694595,7.322 196,149.30792,210.44914,40.91458,70.287735,7.304 196,274.69678,206.97966,35.41977,88.67561,7.032 196,481.98132,220.5585,33.112793,65.29312,6.671 196,361.1507,225.3052,37.72711,59.572113,6.664 196,252.66518,189.3785,51.373703,127.82347,6.633 196,-5.770824,265.70355,20.363012,44.717987,6.627 196,11.446783,-15.348587,57.81414,113.699295,6.434 196,-8.972961,466.0604,38.136818,89.34378,6.389 196,377.33826,222.74182,36.386536,65.46069,6.206 196,-17.928621,-64.069916,56.55143,143.25797,5.912 196,610.87354,-47.8958,41.958008,100.75106,5.856 196,622.10626,476.64984,28.179688,67.66199,5.854 196,107.76908,211.77371,35.179344,55.043945,5.735 196,236.50154,250.83588,31.70494,71.42059,5.682 196,-6.364566,489.47034,19.432098,42.661255,5.608 196,259.55774,109.657684,32.076263,79.01337,5.59 196,187.44492,204.52596,34.340546,64.362686,5.467 196,585.3128,-96.89003,75.19879,229.15228,5.427 196,390.12497,232.52838,26.602203,48.105286,5.404 196,130.27188,221.24214,37.3945,69.51549,5.392 196,265.58618,196.49036,32.57306,88.52869,5.295 196,357.15063,227.13113,28.79242,43.84204,5.212 196,138.8357,205.7864,35.662003,66.08243,5.185 196,168.44511,208.54028,35.179153,68.93826,5.168 196,223.29057,249.90182,29.555817,64.76822,5.153 196,291.17484,212.94751,41.919952,105.53412,5.146 196,-10.566399,267.5373,30.009686,71.52551,5.128 196,627.33966,-18.908049,17.7901,45.6609,5.089 196,-35.38275,-129.51941,116.71414,275.93552,5.07 196,-73.63031,264.9621,202.173,463.6468,5.056 196,138.00468,237.76366,40.741653,61.690628,5.035 196,445.85056,189.0662,40.49185,66.89282,5.032 197,77.94424,170.14485,37.48011,92.24913,38.698 197,62.17255,184.12308,34.363552,80.903534,14.189 197,299.35757,269.46915,34.099457,50.218536,7.542 197,-10.612909,-30.562202,29.939224,72.14754,7.45 197,442.75162,127.07442,31.086761,71.842026,7.234 197,586.43097,157.12546,32.195312,69.80029,6.949 197,124.91284,179.09204,32.262833,75.18317,6.728 197,-5.7791924,-17.151062,18.329693,43.154716,6.627 197,98.39293,172.74307,32.395584,83.09737,6.241 197,114.94232,163.83229,31.29869,85.291855,6.179 197,587.57776,208.0002,32.815063,77.92082,6.062 197,-8.750716,465.92905,37.71755,89.85318,6.044 197,91.15207,150.20404,30.149109,96.30159,5.948 197,379.9438,226.33177,32.31122,60.8582,5.884 197,431.51862,160.90233,35.52243,78.533585,5.877 197,274.01495,280.3542,19.563995,24.94397,5.784 197,626.4846,487.96332,20.754272,46.79901,5.777 197,56.11869,228.72948,38.017975,67.97612,5.717 197,626.9999,-18.265835,17.169983,46.958153,5.671 197,146.16737,194.79059,32.340195,65.20746,5.634 197,622.77704,-34.027092,26.503479,76.891624,5.609 197,74.85217,131.23091,58.41948,124.55264,5.592 197,1.1191082,0.34078407,24.21603,48.951324,5.534 197,613.1544,455.1184,38.99524,106.44299,5.534 197,439.29895,183.7601,35.905853,71.70735,5.508 197,281.32156,278.7191,20.746246,27.507538,5.482 197,121.97724,282.84714,20.839058,27.766937,5.438 197,494.52972,279.33838,29.922852,53.53418,5.413 197,585.5056,-97.31528,75.30298,229.59874,5.362 197,541.1289,288.12952,30.72052,66.13495,5.361 197,-5.5843267,-0.65522385,19.816284,46.18622,5.346 197,-17.742699,-63.000916,57.065247,139.95126,5.335 197,177.76309,283.96664,20.172104,26.36557,5.321 197,-74.74501,264.667,203.44772,464.2516,5.306 197,-6.3576055,489.19144,19.311432,42.479034,5.302 197,137.77322,283.03848,19.70311,26.644653,5.163 197,489.33215,-180.50154,236.05273,428.57587,5.119 197,11.377463,-14.912682,57.556732,112.90362,5.1 197,185.10751,283.64944,20.960068,28.035736,5.051 197,602.704,-56.327896,53.541992,136.98994,5.029 197,114.76368,199.24536,42.358467,80.377106,4.962 197,287.7554,279.69937,24.593414,33.937653,4.898 197,582.8957,411.26352,72.21265,177.11667,4.866 197,170.1129,284.28873,19.22145,25.942932,4.854 197,-21.60421,403.4042,79.211334,174.10263,4.852 197,250.42825,277.7626,19.988434,25.171783,4.85 197,536.7335,311.87756,142.9093,339.19995,4.836 197,200.32188,281.92783,23.208725,30.98404,4.805 197,508.20093,279.72275,30.463562,62.85852,4.794 197,420.49088,183.09027,34.674652,76.963715,4.772 198,326.1565,166.25204,34.10846,91.2518,49.628 198,339.59183,179.41861,28.007355,73.513535,14.706 198,317.6626,187.69199,32.120483,78.005585,11.563 198,466.35678,207.81192,28.85315,63.148804,7.638 198,318.6015,125.89829,52.609467,131.466,6.345 198,621.92053,477.37955,28.772522,67.367035,5.987 198,622.4444,-33.90694,27.349426,76.653755,5.926 198,-12.289745,479.1134,30.384811,62.51837,5.793 198,356.1296,136.2804,30.373413,100.229095,5.66 198,-6.4406753,489.3074,19.53418,42.43454,5.443 198,602.6833,-56.882088,53.633118,133.26617,5.319 198,390.14346,197.13742,31.187561,69.014984,5.182 198,-73.604645,265.39514,201.7674,462.3009,5.165 198,-18.762972,-61.46848,57.34275,142.51076,5.153 198,553.1328,300.89224,21.599976,29.642517,5.129 198,374.06186,164.1416,26.741974,84.830124,5.114 198,585.7825,-99.12761,75.086365,229.812,5.099 198,-21.356922,404.1418,78.84013,174.04129,5.052 198,-5.130705,-18.108011,17.341722,42.900505,4.997 198,536.6289,311.44446,143.45447,339.82898,4.993 198,-10.938048,-33.056004,28.959732,72.72505,4.958 198,582.7731,412.88104,72.200745,175.69281,4.955 198,481.63177,207.80067,32.990295,63.682602,4.895 198,627.0366,-20.68888,18.128235,49.212288,4.856 198,569.9618,-3.652008,19.873535,37.718235,4.835 198,489.2058,-180.42227,235.6142,424.8643,4.758 198,380.7326,148.00395,29.028595,90.97339,4.7 198,593.9431,-45.38515,44.775146,95.61174,4.695 198,585.5032,295.75986,20.971863,34.41275,4.644 198,493.58276,227.95853,237.99103,512.89343,4.615 198,275.21512,168.71277,41.742065,77.54314,4.543 198,-71.04745,-189.13046,212.42786,456.54535,4.532 198,364.46564,124.18835,51.312073,127.683784,4.498 198,122.75605,115.59407,58.852913,118.73204,4.479 198,137.15369,162.00774,25.066849,41.239624,4.435 198,323.16257,210.83899,32.01477,73.94461,4.429 198,346.39728,149.7055,30.411652,96.11133,4.408 198,579.5488,300.47632,19.919067,35.276398,4.405 198,569.9933,299.42862,20.45514,29.440948,4.399 198,426.54678,291.7941,18.820953,24.196838,4.369 198,589.9488,288.2876,29.226013,54.90439,4.364 198,258.02197,-3.2985115,35.248657,63.506878,4.251 198,589.38855,-24.530922,53.098694,135.17386,4.247 198,574.26,181.1001,51.025818,112.3313,4.197 198,234.28986,-33.238514,60.256775,122.387115,4.181 198,496.11206,210.02267,23.854431,50.23044,4.172 198,252.93214,179.36815,55.13524,100.78764,4.171 198,460.9615,192.6486,54.435547,109.72505,4.163 198,202.1769,162.30423,60.077194,104.21677,4.149 198,264.9896,-35.289,60.91559,122.24563,4.141 199,212.83511,136.50853,47.4032,123.0959,23.944 199,233.0113,168.23218,32.377304,80.49936,9.248 199,236.30136,124.157745,52.669373,123.21808,7.83 199,487.8859,313.95572,24.736847,37.797546,7.733 199,-5.1626053,-16.793278,17.377796,42.04646,7.672 199,511.464,309.81488,26.285889,38.225037,7.19 199,529.668,300.5211,36.24005,53.926575,6.754 199,259.29218,149.8365,32.55545,93.261734,6.632 199,402.0895,206.70815,31.626617,63.62285,6.545 199,270.80515,157.443,32.864014,88.79253,6.4 199,285.73236,157.8339,29.731628,86.95137,6.274 199,-8.748451,465.8558,37.765156,89.724335,6.212 199,201.14357,161.59338,43.779495,101.10297,6.115 199,621.8285,476.88544,28.688232,67.90442,6.077 199,550.646,211.98302,27.475952,58.294846,5.871 199,156.90666,151.64304,57.04277,111.0285,5.859 199,498.4662,302.80798,33.103455,50.142212,5.852 199,-11.1716385,-32.186916,30.049776,71.52691,5.814 199,226.28868,301.89294,20.584396,28.364899,5.768 199,622.5216,-33.674835,27.388428,75.572235,5.729 199,389.48605,218.27351,29.776947,65.50664,5.541 199,585.65405,-98.48465,74.87012,229.8022,5.469 199,267.84094,114.86074,33.751984,97.58289,5.397 199,288.27426,122.10426,33.495758,97.31517,5.319 199,232.33221,107.743805,34.954163,101.66794,5.31 199,-6.3830304,489.17712,19.350084,42.975098,5.301 199,490.28714,-182.41356,234.97049,428.96155,5.294 199,-73.39936,264.88074,201.68701,462.76978,5.26 199,3.4833984,-14.051534,16.2411,38.24086,5.256 199,602.51227,-57.603325,53.52765,135.745,5.174 199,301.977,168.94522,28.332642,82.28812,5.134 199,545.72656,299.96817,36.57898,57.029633,5.108 199,627.0875,-19.034687,17.725464,47.259544,5.099 199,-19.819817,-88.17259,71.6857,198.53415,5.092 199,-21.526873,403.86603,79.262794,174.04901,5.048 199,181.33406,171.29517,45.346558,90.18823,5.025 199,389.35306,196.76022,31.855072,62.5477,5.008 199,594.03296,-45.92524,44.769714,98.238,4.984 199,-36.377434,-130.76913,116.95957,280.52887,4.964 199,218.36359,91.00916,56.16803,141.76645,4.905 199,582.8486,412.47754,72.11572,176.09375,4.838 199,255.26666,172.34369,24.583984,60.440018,4.821 199,239.57909,96.666275,24.174973,65.84584,4.777 199,355.3034,300.4936,33.098938,52.417908,4.763 199,515.6264,302.02435,34.3797,51.94983,4.756 199,536.58075,311.3496,143.1347,339.57678,4.735 199,366.42267,124.792816,24.77002,61.826782,4.701 199,-71.62431,-189.61795,214.14323,457.0852,4.642 199,425.39557,39.326324,33.47534,77.1333,4.63 199,261.38718,90.24507,28.788239,91.12746,4.603 199,355.46402,121.97681,30.855316,82.76715,4.579 199,347.086,312.53958,18.812683,25.873016,4.558 199,331.57452,311.11203,18.460236,26.808716,4.541 200,249.75847,171.46565,22.950912,45.634857,8.708 200,394.2174,149.86728,31.59085,74.39011,8.076 200,-6.104584,-18.36818,18.854998,43.56384,7.232 200,-11.486297,-31.044498,30.129036,70.88493,6.657 200,451.8002,64.009895,34.357452,84.17245,6.37 200,626.31415,486.8823,20.674438,47.7471,6.269 200,589.58594,201.68158,31.421387,66.80078,6.252 200,380.69382,146.78654,31.286804,73.04289,6.024 200,405.0783,153.8578,31.90924,77.398834,5.991 200,529.7217,179.66167,35.125854,63.099792,5.938 200,458.60046,185.60432,31.456726,81.58977,5.919 200,622.47644,-33.141064,27.161133,74.85295,5.843 200,-11.686005,480.1181,29.579216,61.703186,5.823 200,-6.4188814,489.28055,19.485817,41.95047,5.81 200,457.44275,91.92963,33.85074,83.068695,5.748 200,612.60455,456.64877,39.201965,104.612885,5.67 200,-0.8277285,147.90326,28.577543,86.15402,5.647 200,585.4148,-96.843285,75.14368,228.27487,5.514 200,281.79504,46.99872,35.067993,73.04228,5.502 200,-18.049603,-63.91907,57.280945,141.65508,5.418 200,90.207794,331.6906,35.77404,56.440613,5.4 200,489.19153,-180.63622,236.11328,429.78854,5.338 200,263.78812,307.53937,37.721344,55.387543,5.296 200,2.0873327,-16.747866,18.739796,41.210564,5.264 200,-0.6729007,33.47356,23.824528,52.17558,5.248 200,603.36237,-57.09313,53.148254,134.78091,5.199 200,627.0439,-19.082329,18.059021,47.483658,5.171 200,112.56629,179.4053,36.3151,61.11438,5.128 200,-22.327911,402.2174,80.187,175.35712,5.057 200,593.30273,175.48718,33.40631,74.01074,5.028 200,-37.1675,-129.302,117.94202,280.32922,5.022 200,119.313805,177.57729,25.49865,40.09726,5.015 200,582.96814,413.19492,71.727356,174.60281,4.995 200,452.29395,-3.5209618,33.233124,69.55377,4.966 200,309.61804,193.17686,28.45523,59.975754,4.947 200,235.34833,314.34695,33.76468,53.863037,4.925 200,139.70726,38.167976,33.751205,65.73952,4.857 200,11.195717,119.749405,54.834908,115.720566,4.807 200,419.21997,167.46236,32.249146,71.31726,4.807 200,12.074343,146.30869,31.589216,71.417816,4.802 200,-6.1470976,-1.7076836,19.745247,45.40967,4.769 200,536.7755,312.15994,142.74866,339.34738,4.765 200,519.0517,2.402134,25.926819,46.417553,4.741 200,594.02136,-45.707058,44.519043,95.953766,4.737 200,-73.8536,266.3808,201.43657,461.42035,4.729 200,249.2624,316.61603,36.52031,62.344025,4.724 200,10.726624,-16.20781,58.37275,119.37841,4.675 200,264.9508,-36.963707,60.519775,125.236725,4.621 200,-71.924164,-189.73112,213.75061,456.95868,4.598 200,87.72274,155.61111,23.910408,43.961792,4.582 200,269.02615,49.925583,33.6279,70.78981,4.578 200,470.45306,71.43965,24.595917,57.65645,4.567 200,57.49642,-1.5385456,21.665253,36.873756,4.559 200,201.11234,297.02887,36.828857,67.83621,4.541 200,226.6601,161.14479,31.190674,57.49788,4.532 200,615.15826,160.88855,27.015503,77.0647,4.523 200,473.44086,81.43446,34.337006,75.41551,4.47 200,410.53845,5.283184,32.67566,65.97482,4.446 200,521.91736,-28.492294,59.56891,121.278206,4.438 200,545.38885,186.966,37.46698,64.9303,4.408 200,298.11896,77.93454,33.371704,71.02791,4.348 200,74.292305,205.23245,35.742363,75.19107,4.346 200,494.2534,227.43356,237.69089,514.5332,4.339 200,89.9512,150.98438,32.005157,63.66388,4.337 200,234.40657,-33.141705,59.378098,120.245285,4.301 201,387.88882,133.86479,31.985931,72.5083,20.981 201,395.84854,175.4664,30.973206,66.96689,7.303 201,-5.622194,-17.581257,18.013937,43.245422,7.255 201,114.77158,127.961,34.539314,71.21936,6.885 201,363.60626,156.70633,32.88907,66.87988,6.719 201,373.09933,127.66011,33.870575,71.68892,6.668 201,380.51965,164.8764,31.72467,69.94461,6.635 201,184.9285,96.43288,39.27516,70.28961,6.246 201,622.7265,-32.808556,27.05133,75.51727,6.241 201,626.63794,487.3489,20.327026,46.368927,6.126 201,-9.295561,466.4747,38.02034,87.93277,6.047 201,346.12384,176.68878,33.072205,64.35159,5.894 201,627.02985,-17.992542,17.344849,45.864452,5.882 201,75.00101,126.79657,33.499886,58.85318,5.818 201,613.14294,454.29602,39.427185,106.80286,5.8 201,42.464546,72.61188,34.2595,66.8602,5.734 201,407.4927,183.46303,22.539032,49.66696,5.64 201,2.2776933,-17.130886,17.668097,42.17382,5.575 201,380.14572,109.941376,50.13629,119.337524,5.548 201,-6.2017517,489.6128,19.054878,41.978638,5.521 201,-17.807938,439.67422,55.518974,134.8594,5.517 201,99.196335,122.74268,35.058792,68.37377,5.448 201,-12.41426,-41.158524,41.8297,99.72829,5.419 201,489.45142,-180.87238,235.2409,429.9139,5.39 201,585.57153,-97.48596,74.813354,230.7359,5.314 201,5.008054,135.73016,30.74245,73.19325,5.299 201,179.0185,159.05093,38.56726,76.10484,5.21 201,165.76834,13.075851,36.04843,79.19633,5.192 201,425.29187,181.8566,23.388245,42.38315,5.177 201,161.12608,45.34848,36.358124,92.30588,5.157 201,257.9544,145.9454,36.114716,70.86679,5.141 201,3.4867978,185.26337,34.507965,63.937866,5.137 201,248.65625,276.10904,38.162262,58.151154,5.128 201,602.58185,-55.781414,53.950623,134.54288,5.026 201,288.62033,260.84625,37.128815,55.763306,5.003 201,231.86974,265.86734,39.605453,59.115112,4.994 201,-20.281048,-86.74636,72.18075,196.033,4.994 201,265.22327,277.4051,37.461426,57.295258,4.928 201,357.67697,168.22374,26.277985,50.1633,4.916 201,-73.34178,266.93933,201.06113,460.49768,4.901 201,582.8935,411.29822,72.28363,176.156,4.887 201,277.85312,155.46869,38.981293,61.14981,4.868 201,536.46014,311.91464,143.65338,339.8528,4.867 201,522.31555,186.40051,31.830627,56.270905,4.86 201,-71.46461,-189.9175,212.87866,457.98657,4.853 201,303.02136,274.7536,25.783539,37.006134,4.819 201,11.362198,-18.481224,60.19745,121.32928,4.786 201,428.2642,171.67996,32.662964,62.918808,4.786 201,-5.126066,40.624184,18.94625,45.684547,4.767 201,-36.31531,-129.85466,117.54982,277.64996,4.758 201,509.28638,180.15381,30.391602,63.68344,4.715 201,1.0337842,140.50949,23.774345,56.20485,4.681 201,-40.34428,369.74634,110.42157,273.48328,4.634 201,112.60474,-13.8258705,46.002426,81.13461,4.614 201,620.7319,183.70023,17.73169,49.461365,4.594 201,389.44272,188.95059,30.204865,67.69409,4.577 201,521.8239,160.26164,34.848694,64.13753,4.547 201,146.4249,-10.8189945,35.502808,64.8175,4.541 201,393.36472,164.33878,24.809692,55.486237,4.537 201,-5.645484,138.04843,18.75666,45.07773,4.511 201,507.2127,-20.492065,58.717102,118.64853,4.509 201,58.01865,77.95192,37.73637,58.32492,4.489 201,172.07556,31.450935,39.550247,79.7809,4.469 201,491.58432,176.64708,30.62796,67.882034,4.467 201,173.32178,118.86261,38.361343,85.962616,4.453 202,247.94617,138.38867,23.13382,46.812546,7.45 202,-6.106434,-17.563547,18.376715,42.726467,7.197 202,234.64801,82.16119,31.815369,71.91761,6.792 202,-11.088259,-31.130884,29.052471,70.09606,6.536 202,626.51636,489.25842,20.720886,45.2016,6.529 202,622.06305,-33.223476,27.793518,75.21047,6.484 202,179.02757,116.955414,30.978928,64.46875,6.364 202,88.5471,73.721344,35.46859,74.05664,6.225 202,218.3946,121.11306,32.788696,73.74848,6.113 202,-12.352884,477.7765,30.644035,63.15448,6.066 202,204.23775,112.62343,34.221878,67.261856,6.039 202,602.232,-55.039055,53.942688,131.74791,5.746 202,626.7382,-18.35531,18.03656,46.152145,5.712 202,502.99127,139.29779,23.149109,40.483093,5.666 202,249.8748,138.04851,31.46312,68.15016,5.639 202,-6.5453963,488.70514,19.60308,42.770935,5.575 202,612.75244,457.00284,39.774353,104.323944,5.45 202,266.18704,138.81335,20.854736,39.13324,5.437 202,544.484,128.70528,29.502197,65.024155,5.397 202,11.232715,-16.573177,58.72286,119.8024,5.372 202,392.49823,3.488428,23.190674,45.166245,5.355 202,185.18907,131.16469,34.14029,65.61867,5.321 202,491.57965,222.18616,35.400574,60.613525,5.23 202,-17.733492,-64.877304,56.969704,144.54993,5.2 202,-17.712582,437.36798,55.697025,136.69647,5.17 202,525.6654,0.23842621,28.309143,82.21555,5.136 202,2.999928,105.58844,30.21762,69.151306,5.131 202,225.67354,100.569954,42.66954,91.34023,5.128 202,582.93146,412.34357,72.13129,175.51453,5.114 202,218.63843,79.914154,35.148575,71.3882,5.103 202,172.05977,139.1732,33.55043,65.001236,5.045 202,513.7993,186.77274,20.512573,40.255707,5.025 202,522.84534,-20.887558,55.166687,125.71299,5.009 202,39.222103,114.99218,36.262074,63.340202,4.996 202,585.2053,-98.99819,75.914734,230.04602,4.995 202,-10.542192,106.81157,29.683983,69.66148,4.991 202,28.398455,103.08528,31.659216,68.16969,4.983 202,586.43176,224.0381,35.906372,64.211136,4.92 202,602.8625,107.92561,35.070374,72.43628,4.92 202,493.71436,122.28996,30.785889,60.73738,4.904 202,100.175545,-17.052853,31.575844,70.098465,4.904 202,180.77954,-31.050125,29.738617,69.05916,4.898 202,-72.80522,266.8188,200.40613,460.5761,4.888 202,478.60004,-8.1599045,52.165894,118.67719,4.855 202,-36.208305,-129.60274,117.72494,277.6622,4.827 202,536.24274,311.61957,143.80658,340.14722,4.78 202,522.31226,238.70984,36.124878,53.218018,4.778 202,488.75195,-178.65227,236.23608,424.92294,4.773 202,-39.756752,370.07822,109.79096,273.43033,4.687 202,41.56054,-29.390923,58.911987,121.37283,4.685 202,355.58362,133.53967,30.8815,62.65219,4.662 202,127.031204,248.3088,26.026901,38.274414,4.642 202,596.44867,144.76878,31.334412,69.461655,4.641 202,497.43332,3.0290604,32.151825,79.12182,4.624 202,179.1246,90.96011,33.227173,67.346924,4.587 202,-5.8890686,1.3781357,18.753162,45.20236,4.585 202,329.37473,255.08406,21.122406,29.458206,4.584 202,-71.94501,-189.38184,213.49521,455.25433,4.567 202,112.99983,240.57462,36.558823,55.398285,4.528 202,241.22713,60.899994,31.867142,77.55745,4.517 202,260.4584,-33.452652,29.970703,71.07245,4.516 202,614.4687,141.71346,26.206604,82.52803,4.506 202,292.60162,101.19429,31.338318,66.04448,4.504 202,242.11336,88.96454,41.294296,93.585175,4.502 202,353.90503,239.36935,36.797028,51.96399,4.49 202,-6.1694193,26.62179,19.737492,42.28666,4.489 202,522.212,139.9769,19.707031,36.99533,4.487 202,618.3709,491.47943,20.962036,41.169556,4.481 202,196.67477,-30.940722,30.07875,66.38381,4.474 202,32.046844,-4.9929085,48.521255,88.08545,4.47 202,88.935745,232.16216,38.110123,55.382065,4.461 202,1.5766561,38.187008,28.204472,73.2357,4.424 202,493.88248,227.91132,237.97653,513.67633,4.414 202,104.028435,116.61049,37.88398,58.71422,4.408 203,-5.7041397,-16.95967,18.371447,44.416294,8.468 203,225.6531,8.014992,33.963074,82.74445,8.076 203,-18.630245,-63.404877,57.132984,141.65784,6.733 203,256.4664,118.67071,23.354065,41.661705,6.673 203,5.6233835,94.86314,31.33931,74.63561,6.625 203,217.2174,109.5463,34.481445,68.00283,6.522 203,-10.620433,-32.46241,29.65313,76.190346,6.334 203,-8.88065,466.28787,37.905823,89.463715,6.286 203,627.1229,-17.3641,17.060669,46.269302,6.286 203,-1.6757822,90.07074,28.191425,67.9657,6.193 203,11.966494,-10.531471,57.92656,114.30355,5.918 203,240.00763,111.049194,24.322235,49.30182,5.917 203,281.98627,107.26403,22.770874,48.423347,5.871 203,626.3251,487.76788,20.70282,45.61316,5.861 203,242.44888,51.99821,31.985504,78.05298,5.767 203,103.75311,105.12279,38.339783,57.055435,5.707 203,-5.7098107,1.0679569,19.982529,46.823967,5.663 203,386.40765,153.18991,19.667755,41.144592,5.649 203,259.89764,129.61086,28.991089,69.077866,5.631 203,285.95236,97.29489,28.783539,65.973724,5.565 203,-6.2645845,489.0803,19.2006,42.77121,5.457 203,308.95337,122.78908,30.792297,68.056015,5.421 203,1.2024105,3.004383,22.939236,48.45707,5.42 203,612.5583,456.64404,39.568787,104.89996,5.403 203,602.59357,-55.337257,53.0318,136.7042,5.366 203,91.953964,34.30726,32.734238,63.50585,5.296 203,-11.025281,99.16286,28.944702,67.02252,5.279 203,346.43314,258.34363,18.917236,26.165375,5.262 203,185.52512,126.33588,35.360367,62.62326,5.18 203,-21.353928,405.01212,78.71135,173.22922,5.108 203,24.92479,104.226746,36.81845,68.230774,5.1 203,277.13367,241.90146,31.965027,54.648743,5.079 203,89.85763,102.29785,35.993385,58.29062,5.068 203,583.0191,412.32892,71.93024,175.76276,5.054 203,120.18166,111.3383,26.007774,40.703156,5.009 203,338.25848,258.89398,18.617188,26.144958,5.006 203,203.81741,107.64801,35.828003,62.168915,4.969 203,585.1318,-99.53813,76.164,231.56392,4.969 203,333.02557,82.305046,30.104858,69.12064,4.96 203,269.70895,49.91232,30.223877,74.61972,4.959 203,314.62045,84.23948,32.814545,66.457115,4.948 203,-9.995756,7.2847366,30.534857,75.60032,4.915 203,488.54858,-178.9743,236.6134,426.6021,4.905 203,361.66095,257.06696,21.327393,29.165283,4.892 203,-72.588135,266.61615,199.72604,460.56818,4.864 203,618.937,78.02216,20.65686,60.28762,4.851 203,178.72763,70.19059,34.789307,66.37005,4.812 203,622.41223,-34.06736,27.084717,76.59547,4.777 203,368.728,143.49686,21.420258,44.79979,4.77 203,536.36383,311.716,143.59772,340.18768,4.76 203,299.83203,104.36985,32.539673,69.55984,4.758 203,617.6473,157.22327,21.42627,55.120697,4.757 203,59.736694,-9.130978,57.74671,109.14537,4.755 203,584.6526,5.6782475,22.488892,44.197144,4.749 203,-36.28454,-130.37123,118.27791,278.18924,4.748 203,70.85006,59.76496,36.4747,75.21145,4.741 203,209.23395,248.55318,20.804428,23.365402,4.734 203,42.64837,62.13636,36.665207,73.68688,4.717 203,228.33542,52.984173,34.230133,73.808014,4.71 203,274.07462,119.566124,20.845398,41.842262,4.688 203,230.30856,102.72279,25.955383,54.095474,4.679 203,296.1718,242.97961,22.865356,39.75714,4.656 203,570.6454,220.66907,37.89502,61.37503,4.654 203,246.35727,107.68365,30.795471,62.97175,4.637 203,393.45142,156.56447,19.639893,38.236618,4.635 203,-6.3614693,135.44424,19.955809,47.26915,4.626 203,187.09642,104.04342,32.45459,62.51124,4.603 203,221.78831,247.13507,28.571045,34.17627,4.6 203,91.852234,-11.470886,58.70627,110.419266,4.557 203,358.62534,142.46014,26.580017,65.46211,4.551 203,-71.72929,-189.64606,213.11926,455.33368,4.538 203,326.02963,134.3645,30.272125,67.16333,4.53 203,-6.014082,92.04387,20.025782,42.539825,4.506 203,235.9656,120.181244,32.649536,71.94574,4.5 203,2.7947724,-15.654992,17.387756,42.25252,4.464 203,120.026054,241.86064,38.78701,52.176407,4.449 203,313.18524,117.66748,22.996277,44.561035,4.431 204,71.225815,33.617783,104.86635,290.69794,21.896 204,26.206852,163.64671,35.275024,69.98677,8.503 204,488.97433,144.54478,32.659943,75.3329,6.721 204,-6.042348,-17.956493,18.257275,43.04785,6.586 204,-12.645977,478.67203,31.197319,62.75064,6.538 204,416.89694,164.32,36.190155,67.35391,6.388 204,458.04266,195.46547,34.115265,67.368576,6.311 204,621.8904,-33.2699,27.853027,74.864975,6.295 204,-10.90678,-31.412197,29.189528,71.87103,6.202 204,-6.665987,488.5843,19.74564,43.04895,6.196 204,602.3235,-56.397133,53.55249,130.15308,6.065 204,514.37036,143.48845,31.835144,72.772995,6.062 204,621.92145,477.05237,28.621033,67.3302,5.971 204,532.24164,194.06122,31.754822,62.523773,5.842 204,614.6887,222.75447,25.434204,69.419815,5.741 204,590.06177,186.66425,31.234558,71.329346,5.687 204,-72.201744,-187.22928,213.68802,458.60367,5.657 204,585.6164,-98.2319,74.94299,230.46292,5.613 204,260.48087,192.13258,30.401917,67.54454,5.561 204,426.39728,218.04039,34.04193,67.75725,5.555 204,473.89105,207.10231,35.050873,64.83333,5.504 204,129.08897,234.83171,34.955093,76.635635,5.445 204,507.1601,233.31952,30.528992,67.01904,5.43 204,91.29227,142.70674,67.724365,176.82512,5.425 204,2.5734127,283.62827,32.012707,64.75476,5.387 204,488.80664,-180.92879,236.651,429.5366,5.354 204,500.50946,142.4761,33.98053,74.15024,5.301 204,11.392891,158.89114,34.32274,70.7771,5.235 204,-73.58522,265.74323,201.75749,463.0952,5.215 204,-17.659863,-65.305244,56.53044,145.89517,5.191 204,512.7529,220.45348,22.025085,36.04698,5.14 204,159.59341,-7.3242035,49.334503,90.41516,5.075 204,617.9686,-7.6933184,21.536926,45.24304,5.062 204,626.81976,-19.148441,17.969116,47.2827,5.043 204,461.403,106.97778,55.54132,127.99344,5.041 204,594.12683,-43.152374,44.352722,91.86358,5.038 204,384.84015,-18.367462,20.843628,43.271324,4.985 204,515.61346,186.60385,42.601868,89.18466,4.966 204,496.92123,216.10994,23.90683,40.719803,4.931 204,465.58224,95.27161,35.055267,80.37222,4.919 204,583.2345,411.824,72.21753,176.41562,4.916 204,530.06354,212.26863,21.914124,41.575485,4.902 204,548.1153,199.03825,31.712463,66.65794,4.847 204,81.349266,-3.8886948,67.32427,159.58151,4.836 204,573.2978,-19.612518,53.009888,116.760925,4.819 204,243.96225,198.32057,31.730774,63.82228,4.793 204,133.8104,268.98062,27.627594,52.460938,4.787 204,251.56494,29.497498,33.083374,73.59389,4.786 204,416.68713,-9.779762,45.833282,88.19405,4.781 204,468.20508,151.05658,33.613007,70.49426,4.741 204,92.15103,7.03059,41.463455,93.971924,4.722 204,-22.104721,401.69232,79.86141,175.09723,4.721 204,485.99493,134.34062,26.82605,61.863815,4.695 204,368.29834,214.7504,25.15506,40.40895,4.67 204,480.9279,366.8938,38.28647,58.927307,4.643 204,475.23953,166.13733,55.34958,123.916504,4.631 204,265.24625,37.049156,22.328857,57.209496,4.613 204,283.8221,-21.582172,57.78479,123.51868,4.601 204,506.08478,-2.7494125,20.970215,34.56036,4.594 204,330.71753,1.0666008,34.248016,59.471863,4.594 204,314.9322,1.6784191,33.23752,60.78865,4.586 204,0.31422734,146.73175,27.060253,72.69263,4.577 204,40.593662,162.36209,37.182987,67.412674,4.571 204,154.38922,-10.653921,34.877502,59.578445,4.569 204,78.62591,-34.39026,28.967995,76.01519,4.515 204,548.426,0.18754387,32.916077,60.119415,4.502 204,500.8652,373.10303,29.410004,38.964996,4.5 204,312.88818,145.09111,34.136414,70.103836,4.483 204,536.3555,313.0996,142.84113,338.78955,4.479 204,426.3168,79.947296,33.21814,72.50192,4.479 204,124.199295,-7.989998,57.667007,114.92374,4.463 204,73.096954,-20.220613,20.769844,44.09031,4.449 205,355.2776,24.498016,103.7312,331.2213,16.812 205,207.94916,239.76088,33.358948,69.48323,10.004 205,315.42374,178.96362,32.932526,68.31517,9.883 205,252.35298,199.77396,30.46428,56.489777,8.561 205,-0.2850902,6.7226143,24.076136,44.674995,7.444 205,193.78798,207.75012,53.09726,109.905334,7.428 205,370.17795,-11.28434,65.675995,173.9465,6.448 205,585.28864,171.99036,34.47888,74.33995,6.443 205,163.46939,203.08261,41.42708,91.6875,6.422 205,-5.7235613,-16.258583,18.034836,42.30597,6.224 205,179.2163,209.52138,32.165604,74.34697,6.157 205,-12.688478,-38.216873,42.062447,98.21374,6.127 205,-11.608716,478.13196,29.811295,63.51416,6.092 205,621.78394,475.54272,29.024475,69.171326,6.075 205,49.72868,4.5442657,36.743702,78.508095,5.921 205,389.15817,4.2614098,39.183746,80.03813,5.874 205,524.52075,221.57964,31.262878,65.44469,5.847 205,-6.2528367,489.46814,19.31614,42.31598,5.78 205,314.65506,-18.63979,18.13382,40.4217,5.602 205,585.15027,-98.0208,75.5766,231.75299,5.541 205,611.1395,-48.918407,41.387634,103.55638,5.493 205,11.264253,-23.408585,59.205803,121.631805,5.492 205,218.49274,196.34204,55.06201,114.0741,5.433 205,572.8376,181.31915,33.85547,77.258575,5.424 205,198.47208,217.53564,30.965393,76.36871,5.411 205,257.24612,199.36214,39.939697,80.17876,5.394 205,243.2949,203.62561,40.933243,91.05472,5.331 205,489.57953,-182.405,236.21368,431.7156,5.303 205,-20.273798,-85.336525,72.349976,195.48692,5.303 205,376.77078,0.96806335,38.006012,69.8166,5.225 205,383.88824,150.53024,78.370514,210.36508,5.218 205,-73.116745,264.27963,200.93329,463.39688,5.218 205,64.31767,11.402023,36.757828,72.755554,5.212 205,627.0796,-19.790913,17.84845,48.522568,5.206 205,400.32007,-10.641228,46.883545,86.70404,5.16 205,322.56537,-18.003021,18.250977,39.823677,5.097 205,-35.95713,-128.35475,116.90621,275.95596,5.053 205,-17.420876,437.55084,55.47535,136.67072,5.027 205,556.71765,145.07115,32.619568,77.12712,4.966 205,536.5245,312.7737,142.69525,338.90646,4.963 205,548.2093,217.45407,32.208252,71.094696,4.931 205,309.83844,-33.409058,28.462189,65.80671,4.927 205,187.0357,-18.025154,58.15692,115.33993,4.909 205,1.163888,15.338192,32.472504,69.64731,4.902 205,42.070374,-25.938042,59.98848,119.47995,4.847 205,220.08801,-19.047325,57.424347,117.232376,4.794 205,-71.10907,-189.97429,211.96187,458.25244,4.788 205,272.73456,198.02408,42.676697,81.38797,4.777 205,582.6008,410.90674,72.73578,177.42627,4.759 205,405.03506,91.16318,36.595215,85.196045,4.754 205,171.06874,77.6313,33.092148,65.91205,4.73 205,-40.0636,368.4486,110.31142,275.23975,4.723 205,220.35742,254.62105,27.301697,50.309464,4.674 206,404.28522,187.97781,37.428223,103.43924,10.156 206,395.4352,201.38782,29.576233,78.026886,8.889 206,476.06967,194.70206,28.471405,69.27841,8.766 206,444.20383,231.75436,32.131683,83.254,8.236 206,-6.0541744,-17.792694,18.603912,43.26213,7.985 206,-11.027517,-31.34127,29.442568,71.72976,7.125 206,622.01654,478.01874,28.861023,67.09888,6.861 206,384.0599,190.71478,52.187286,129.85986,6.663 206,381.91125,190.5591,30.184052,70.25273,6.51 206,-12.668057,480.7556,31.17595,60.52881,6.229 206,531.5847,199.11865,31.944397,64.3573,6.216 206,421.9093,216.73268,40.594666,95.19139,6.085 206,-5.6341863,1.7679825,18.954157,45.14614,6.044 206,-6.488185,489.92603,19.610771,41.518433,5.961 206,430.79767,207.3082,52.581085,117.83377,5.946 206,-18.22645,-63.545074,57.17044,140.29451,5.919 206,4.6296215,-1.7236023,40.873657,104.066414,5.806 206,10.707598,-26.231602,58.706985,121.20987,5.657 206,451.00797,41.287365,33.309357,65.320435,5.593 206,622.5107,-34.048542,26.9375,75.93232,5.376 206,-17.844507,439.15903,55.65274,136.07901,5.296 206,627.04114,-18.392694,17.2948,46.627457,5.262 206,603.3128,433.94495,55.63495,140.35187,5.191 206,616.95435,487.17477,23.032288,45.72647,5.183 206,578.6091,476.47742,34.67865,63.649597,5.074 206,462.61533,198.46489,30.316986,79.38396,5.055 206,419.35406,188.74129,31.163818,80.03627,5.048 206,-35.345787,-129.22879,116.246956,274.92172,5.041 206,489.46442,-180.2519,236.41754,426.31937,5.033 206,-73.38411,265.7589,201.44348,462.58905,5.011 206,404.5008,193.65839,26.66211,57.663788,4.935 206,585.50793,-101.167786,75.75073,234.71242,4.925 206,603.0326,-56.513145,53.226624,135.55603,4.917 206,457.4886,257.56335,31.731232,68.63803,4.907 206,433.5226,254.64668,34.472443,71.109055,4.888 206,394.3329,-33.206375,58.859406,122.64571,4.873 206,458.168,205.26205,53.631927,122.74567,4.85 206,536.6512,311.07224,142.90985,340.5458,4.823 206,257.21954,-4.7742157,45.729004,88.20113,4.809 206,396.15555,-12.926594,33.269684,63.81555,4.805 206,-6.0733485,35.177254,18.652199,47.628807,4.791 206,-71.44107,-189.5907,212.39857,457.23776,4.737 206,236.05095,-14.529427,56.73146,111.408516,4.726 206,437.5145,204.89696,29.93634,92.97035,4.7 206,266.66705,-33.706505,58.67688,123.00663,4.692 206,436.3776,71.27755,30.674225,74.43763,4.588 206,225.7701,-4.6673965,45.86824,85.98739,4.587 206,75.26076,-8.276997,59.66217,111.599365,4.559 206,-40.101925,369.58356,110.41815,273.25574,4.554 206,211.63948,210.37238,15.331985,25.662018,4.55 206,-10.427006,23.090782,28.706064,69.69771,4.538 206,228.81271,203.92465,15.715271,29.292953,4.532 206,546.65717,175.44693,34.765625,66.72455,4.531 206,367.44458,170.08769,51.427643,131.62941,4.525 206,426.65622,-36.03827,58.654083,121.81494,4.521 206,451.4706,193.12279,29.358856,89.184525,4.521 207,564.1755,239.39104,37.28949,100.44011,25.153 207,559.2112,189.65398,25.877075,85.546524,10.861 207,550.3588,258.4186,32.447083,72.676056,8.668 207,609.49884,235.29639,31.63147,98.02069,7.896 207,510.85962,265.9917,25.894287,46.03769,6.968 207,626.8023,-18.431154,17.445007,47.9961,6.701 207,-5.8413754,-17.601976,18.15943,43.65312,6.592 207,612.3384,455.75934,39.65924,105.39319,6.404 207,598.16034,256.9931,38.04303,103.92157,6.403 207,524.5861,257.3616,33.096375,62.267334,6.338 207,626.0075,486.94998,21.332642,46.66031,6.335 207,614.44073,171.45476,25.664612,84.132935,6.241 207,532.2556,242.72017,41.407043,85.57356,6.116 207,477.95398,12.342957,30.188599,73.16273,6.017 207,490.80408,14.3092575,30.603943,77.51345,5.804 207,-10.996995,-32.54951,29.52837,75.08667,5.79 207,513.36237,261.94843,35.237854,79.23596,5.703 207,611.01416,-48.360153,41.401917,102.37302,5.7 207,-12.028722,478.54074,29.66402,62.827667,5.655 207,477.05603,204.52612,54.7995,121.01257,5.52 207,571.8141,225.43202,47.746826,124.05855,5.473 207,-20.327835,-85.90469,72.29588,195.94922,5.445 207,484.52365,189.21848,39.31491,96.177,5.399 207,-6.2195387,489.2564,18.828709,42.47809,5.363 207,514.14343,195.51028,30.723022,69.25653,5.313 207,-35.042732,-128.94917,115.95445,275.3567,5.129 207,463.5459,185.22423,52.62085,122.50197,5.079 207,582.98535,412.72955,71.70392,175.39789,5.046 207,-73.0461,265.8542,200.80899,462.3778,5.034 207,501.18134,259.3509,30.340576,63.971405,5.001 207,617.40247,487.91968,22.089294,44.62262,4.998 207,11.6723175,-17.754715,57.989555,118.25483,4.972 207,509.42938,217.13913,53.8089,111.55963,4.945 207,536.77405,312.3951,142.7727,338.39066,4.942 207,-21.94469,402.6975,79.73691,174.6867,4.922 207,505.38058,19.614847,22.776886,59.458473,4.906 207,571.5063,181.94669,28.882812,86.84357,4.83 207,560.17896,218.10284,29.216675,89.8598,4.753 207,555.0914,-26.964886,57.9693,129.41539,4.743 207,-71.85302,-189.99777,212.83017,456.53354,4.709 207,555.8553,193.61493,21.167603,58.098038,4.649 207,90.043884,-17.001469,60.225464,115.50461,4.647 207,316.96097,-17.621334,54.92978,116.52844,4.643 207,585.6216,-104.26744,76.17963,238.63559,4.634 207,454.71643,164.18195,29.798523,73.55405,4.609 207,489.2838,-180.36073,236.57678,424.31387,4.587 207,31.736116,-5.985752,47.951767,87.78775,4.578 207,595.0345,6.607067,30.934998,77.86163,4.575 207,498.21667,264.69037,23.052246,44.218536,4.565 207,589.30475,-34.56131,52.0589,142.97318,4.559 207,493.6285,231.04704,238.16629,511.57355,4.538 208,536.831,181.30133,35.160034,106.4194,52.946 208,484.81165,172.3021,32.755188,91.522064,29.577 208,529.79895,189.54077,32.295105,75.71103,10.034 208,459.64236,155.75897,29.756592,96.882355,9.138 208,544.9064,192.07124,32.84381,66.050766,8.613 208,-5.6605816,-17.90889,18.122269,43.55959,7.43 208,525.47705,189.5228,55.343628,152.13342,7.329 208,622.09186,477.3408,28.621643,67.118195,7.176 208,-8.936356,465.86185,37.740482,89.52792,6.712 208,465.16727,189.94647,34.793213,77.93152,6.43 208,555.6771,289.23016,30.192627,63.744415,6.169 208,482.02704,191.9667,42.422363,109.32495,6.053 208,-6.2117887,489.51663,18.980764,42.065216,6.049 208,-11.226417,-31.74461,29.924839,72.98148,5.784 208,9.690533,-23.175385,59.001293,125.52667,5.717 208,451.116,194.35129,42.54373,107.81125,5.574 208,517.1653,196.33871,44.494995,110.391174,5.568 208,68.34883,145.1629,34.193222,69.173615,5.483 208,603.43286,432.75366,56.123657,143.0,5.388 208,545.00995,296.44702,33.71228,79.015594,5.369 208,602.485,-56.247147,53.7312,139.67805,5.295 208,422.87872,154.9532,29.01001,82.76216,5.293 208,622.7679,-34.200443,26.97522,76.761795,5.21 208,-19.960188,-87.52063,71.989815,197.79485,5.114 208,434.96375,150.56,47.439484,117.07666,5.094 208,476.0721,215.31339,33.483917,70.91409,5.032 208,563.4374,188.20628,40.003357,109.08705,4.971 208,489.21838,-180.43391,236.19226,425.16516,4.97 208,-72.76315,266.93246,200.27011,461.28006,4.942 208,563.4102,297.388,31.833862,71.227234,4.897 208,-21.17857,405.30273,78.74399,172.73291,4.823 208,-35.71544,-128.59663,116.979485,276.9592,4.794 208,537.20526,311.7657,142.36865,340.61432,4.786 208,348.17896,-17.587345,57.01184,119.73094,4.739 208,488.5414,194.92514,58.98477,148.61447,4.737 208,596.0416,294.415,33.062744,77.06467,4.713 208,-40.084305,369.07654,110.126335,275.29724,4.703 208,-6.1129403,48.096558,19.615036,52.884216,4.608 208,-9.476862,-18.116295,40.232162,98.26503,4.601 208,482.46857,140.86082,41.695984,94.05287,4.589 209,516.76587,199.2296,29.3573,69.454025,74.738 209,483.49194,196.49176,34.722595,95.16339,32.785 209,466.4422,92.791466,68.76361,201.19589,9.979 209,498.56903,200.59024,33.02411,77.13663,8.648 209,475.6338,0.017829895,28.131012,68.01158,7.784 209,-6.085428,-17.757402,18.03356,42.119823,7.095 209,513.27155,206.51608,41.576843,99.57645,6.873 209,613.1478,455.70538,39.87921,106.05151,6.597 209,487.06128,236.74753,36.45526,75.106415,6.426 209,364.75998,193.55911,32.194183,68.295135,6.344 209,428.9527,149.24713,30.464447,103.29611,6.321 209,423.5022,106.25809,57.90088,154.00635,6.293 209,-11.76156,478.2933,29.59636,63.433563,6.214 209,99.51927,181.94572,35.049973,71.54048,5.942 209,-12.542509,-41.216763,42.052635,99.45544,5.935 209,-6.18997,489.24936,19.249617,42.611908,5.906 209,477.01862,202.61234,54.458374,128.45123,5.576 209,439.9491,157.62344,32.751984,95.254135,5.561 209,627.22986,-18.808998,17.47052,46.793907,5.438 209,389.06964,174.2322,39.001465,85.23332,5.372 209,623.1719,-34.396137,26.362732,74.65094,5.35 209,380.04523,186.998,30.746643,68.48285,5.349 209,582.94855,410.35275,72.42938,177.3068,5.129 209,-19.929966,-87.213036,71.793564,196.94392,5.114 209,490.59943,-179.97406,235.49115,427.09952,5.05 209,626.12115,487.46274,21.486816,46.033478,5.006 209,548.4498,208.52898,38.887573,90.60683,5.0 209,536.52057,311.7449,143.26544,339.89914,4.972 209,-72.60814,266.4455,200.32016,461.55078,4.967 209,435.45203,197.58337,38.726013,86.79614,4.898 209,-21.523865,403.8427,78.96379,173.64111,4.837 209,-35.818398,-128.49493,116.3483,276.86502,4.816 209,581.6443,212.71432,40.243652,100.68683,4.816 209,602.87085,-57.699554,53.29724,137.00089,4.798 209,-71.41678,-190.2904,212.40448,457.8061,4.654 209,586.2599,-101.93737,75.12866,234.63681,4.62 209,192.47495,-7.6319046,47.078064,90.15177,4.568 209,412.7682,-14.444962,55.832764,117.6606,4.541 209,617.49884,487.90607,22.22351,44.879517,4.514 209,529.1763,205.88974,39.00287,86.98709,4.497 209,159.84561,-5.4773064,47.702988,87.95268,4.476 209,475.41763,73.37926,30.226318,106.97591,4.471 209,494.03528,229.23651,237.86755,513.836,4.418 210,530.991,221.90182,37.405212,79.4267,79.94 210,593.301,305.42746,34.610474,88.84027,11.893 210,588.33295,201.08185,50.01117,191.35272,11.062 210,550.1962,-12.089462,87.04248,353.00507,9.391 210,-8.954441,466.0513,37.863358,89.04996,6.688 210,-5.5219755,-16.726387,17.324436,41.88495,6.481 210,331.8499,216.78209,32.337524,63.599777,6.302 210,565.0304,2.3937607,31.377563,87.0058,6.21 210,347.7376,222.4669,35.15674,58.225693,6.191 210,533.57404,-181.25679,149.05487,425.432,6.184 210,612.6391,456.26865,40.071716,104.54056,6.161 210,446.62665,188.55655,48.581604,125.2142,6.049 210,-11.141466,-31.05399,29.292751,70.41419,6.022 210,627.0121,489.44403,20.19336,43.91504,5.926 210,610.7415,-47.286713,42.17993,100.57979,5.73 210,432.06702,188.54425,28.381775,85.39276,5.675 210,-17.261587,-64.556076,56.339523,143.61038,5.628 210,-6.4767275,489.4613,19.623577,42.200317,5.569 210,361.73495,210.97041,34.189087,61.83165,5.489 210,627.2462,-18.474865,17.339478,47.537525,5.466 210,535.2549,205.87129,49.607727,112.73155,5.369 210,536.35205,308.54636,143.50873,342.88992,5.353 210,343.2532,227.74501,24.553528,45.519974,5.165 210,-36.084793,-129.16908,116.08365,279.03882,5.082 210,-72.84033,265.87485,200.72208,462.3417,5.058 210,59.890614,212.37206,57.16728,107.09691,5.019 210,582.54895,412.9722,72.21149,175.07614,4.905 210,11.97289,-22.980553,57.991207,121.2046,4.883 210,459.01465,-30.282852,58.50708,121.85894,4.828 210,-21.587067,404.19855,79.25716,173.10187,4.751 210,583.9338,2.3808289,36.02771,80.93484,4.75 210,387.1944,-1.7585373,30.243652,66.34357,4.729 210,519.6796,217.23376,36.196716,75.95447,4.728 210,-71.769104,-190.60902,213.50592,457.37115,4.707 210,447.13226,124.26457,35.11154,92.49965,4.699 210,444.7198,180.3063,33.14737,100.16843,4.68 210,578.6454,275.3082,51.43158,146.42316,4.648 210,585.38245,-99.1628,73.67828,244.81808,4.62 210,481.48984,-4.389492,45.111786,88.39775,4.571 210,494.04187,229.75223,238.25946,513.26416,4.552 210,82.11142,-20.435709,43.15657,82.586395,4.539 210,509.303,204.34946,33.63205,67.4017,4.484 210,-4.3650627,282.83347,15.466232,36.84442,4.418 210,-4.7174983,125.077255,16.529173,39.4915,4.416 210,-10.370451,54.360973,39.92271,102.98152,4.374 210,395.71967,197.66168,55.31073,106.4516,4.368 211,419.0276,219.7083,26.350677,61.212418,13.085 211,458.51044,224.85548,38.04834,97.07512,9.258 211,405.94928,226.03897,40.88846,84.36267,8.79 211,627.1093,487.9559,19.594116,45.852814,6.771 211,383.49637,229.66179,25.265198,42.420425,6.68 211,-5.720427,-17.237078,17.63636,41.047768,6.39 211,612.5039,454.94412,39.930664,106.86386,6.383 211,-11.512701,-31.727833,29.90191,70.50656,6.378 211,418.9279,233.18593,40.636658,97.67961,6.036 211,-9.004679,465.52106,37.69893,90.37793,6.012 211,243.83531,213.5459,34.92064,72.99881,5.754 211,565.7764,227.98721,28.723938,79.76755,5.721 211,368.47446,227.26862,44.550507,80.86432,5.467 211,437.93024,214.44853,40.47821,87.908585,5.466 211,386.24823,232.98883,44.88501,95.83081,5.371 211,627.43054,-17.707436,17.01825,46.356567,5.299 211,401.0711,231.41151,23.786194,40.45952,5.159 211,-6.618577,488.7147,19.84822,43.610626,5.115 211,470.33524,206.58075,33.73758,85.58301,5.079 211,602.45355,-57.387306,53.836243,143.82332,5.069 211,622.9699,-34.422848,26.562561,77.0596,5.052 211,490.2304,-182.24327,236.41864,426.781,5.038 211,479.46112,246.72845,43.767517,97.02893,5.031 211,409.99823,195.86887,55.07129,108.160736,5.031 211,-17.4656,-62.876373,56.644424,142.65854,5.029 211,-17.406122,437.01096,55.330505,137.70663,5.017 211,-73.509895,266.04865,201.47812,461.78033,4.996 211,-36.505527,-130.39954,116.637665,279.4484,4.886 211,563.3819,301.47702,41.74469,88.44919,4.758 211,537.1819,311.77832,142.5191,338.4046,4.746 211,219.0357,-14.070446,57.230927,108.968185,4.742 211,211.98914,17.943073,29.259018,61.948696,4.729 211,582.9486,410.05304,72.12561,178.26117,4.693 211,329.52826,255.15237,37.40988,55.37204,4.665 211,-40.584682,367.19165,111.04494,275.2694,4.594 211,468.69412,187.55013,55.768402,133.7058,4.592 211,476.80682,141.45752,53.474976,138.04822,4.577 211,-72.01222,-190.29437,212.85646,456.21912,4.574 211,580.834,317.76566,39.089966,85.43317,4.518 211,494.24982,229.13678,236.96423,513.17883,4.503 211,585.5901,-105.79979,76.24469,244.9462,4.426 211,458.9129,158.2157,28.025726,94.478485,4.417 211,325.70316,207.2106,31.268127,75.221375,4.39 211,591.3974,54.125282,46.04706,187.33026,4.385 211,387.15073,208.80096,43.44043,72.32312,4.319 211,442.12683,269.2382,32.268005,68.53671,4.294 211,235.72134,12.388908,30.698608,58.0887,4.286 211,3.201338,-14.960867,16.444221,37.102196,4.273 211,568.966,271.9543,30.562866,80.61777,4.271 211,355.8213,218.42654,43.309692,68.76877,4.267 211,429.5741,227.97177,54.697083,136.55618,4.195 211,458.81567,243.59534,24.250732,58.08191,4.166 212,487.7387,231.99306,39.391968,89.16115,32.21 212,-6.0159054,-17.73914,17.729721,42.28719,7.06 212,-11.259703,-32.76145,29.813524,71.72245,6.45 212,510.31314,254.91757,46.376984,98.92224,6.416 212,-8.837959,466.43256,37.769688,88.86792,6.3 212,416.2552,232.62514,25.472687,55.07643,6.295 212,489.6727,250.46538,59.05606,144.7322,5.867 212,563.92474,291.5851,42.02765,102.93176,5.829 212,613.10065,455.6663,39.184265,106.05832,5.81 212,-6.186197,490.33807,18.63256,41.055237,5.778 212,539.302,284.38123,56.174744,131.3598,5.756 212,533.3745,-181.92834,147.63385,424.16614,5.455 212,622.6031,-34.357033,27.116089,76.54864,5.411 212,506.26407,190.33153,36.099762,87.56563,5.358 212,-20.447273,-86.06,72.61101,194.46516,5.318 212,417.4327,204.20428,32.27188,77.13934,5.239 212,530.62994,276.79047,43.41626,100.092834,5.209 212,500.1657,224.95363,25.94751,65.45616,5.175 212,-36.365494,-128.3603,116.516106,275.16168,5.166 212,419.9945,245.24654,40.12903,82.51442,5.063 212,585.2981,-105.33141,75.52002,249.22214,5.023 212,449.48376,247.70503,43.718872,80.18486,5.012 212,536.5878,310.97992,143.17584,338.39996,4.97 212,478.17108,184.56569,56.102356,126.85274,4.956 212,-21.466251,404.27887,78.96759,173.44739,4.956 212,-73.133316,266.08542,201.01382,461.29764,4.938 212,583.2029,411.25513,72.23279,176.83228,4.936 212,379.21536,163.60199,27.66684,81.12012,4.896 212,470.24188,48.417454,31.514679,82.044754,4.736 212,496.92072,265.61853,35.49115,77.031494,4.715 212,626.9063,-19.317215,17.79071,47.8685,4.585 212,340.20847,229.00725,32.561646,78.20381,4.581 212,348.8483,206.84715,55.957733,114.92238,4.575 212,602.41644,-56.57188,54.041687,145.54509,4.538 212,404.68826,225.18684,40.423096,79.91405,4.526 212,434.34796,242.75964,42.624634,75.44141,4.491 212,494.12195,230.8443,237.04108,510.4204,4.489 212,375.60117,130.04886,26.152954,87.14076,4.449 212,582.778,282.62753,38.75226,99.789795,4.432 212,-71.49991,-191.20049,212.45354,457.2329,4.432 212,562.96265,480.3694,34.37317,59.932495,4.426 212,561.34283,236.60378,32.30896,79.03749,4.422 212,626.59247,487.75653,21.161133,45.85559,4.399 212,509.02188,283.15292,54.548615,158.02036,4.388 212,493.28693,-16.878878,31.803467,68.01481,4.388 212,3.2699947,-15.117406,16.412333,37.248882,4.366 212,587.8786,112.78572,31.220459,86.7802,4.356 212,258.26038,-16.370775,18.92514,35.54806,4.249 212,396.5123,271.98145,33.06534,76.710205,4.216 212,2.3115218,492.54544,18.863605,38.233307,4.2 212,563.78326,262.34576,42.23999,86.34906,4.149 212,-9.337271,-20.773777,38.78878,98.28027,4.105 212,574.5876,234.86287,23.75769,57.085587,4.038 212,-6.104462,307.88895,17.521519,35.528564,4.015 212,468.78308,-12.813309,31.487488,67.35835,4.012 212,368.80237,249.5265,33.994873,70.604996,4.009 213,482.04037,231.53937,36.48416,96.4491,30.983 213,-5.6140165,-17.808472,17.742962,42.40955,7.466 213,626.2305,487.7127,21.57013,46.319336,5.965 213,-10.91776,-31.604698,29.181332,71.216354,5.843 213,612.923,455.81558,39.231567,105.74802,5.816 213,-12.817932,478.59668,31.281807,62.182617,5.805 213,-6.169023,489.3714,18.852018,42.61682,5.798 213,397.78937,110.946144,27.101837,72.213005,5.786 213,584.55927,203.17468,34.886963,76.65912,5.659 213,553.0125,183.32747,33.64386,79.24449,5.355 213,-17.332005,-64.06575,56.36629,143.24197,5.173 213,-73.458405,265.70935,201.47203,461.6377,5.142 213,583.0516,409.61426,72.38837,177.76868,5.113 213,622.7625,-34.745884,26.484009,75.78713,5.029 213,-17.695086,437.35907,55.627,137.58691,5.01 213,585.70337,-100.28579,75.27893,233.58255,4.949 213,627.104,-18.647104,17.348267,46.784122,4.923 213,490.00943,-181.0427,235.85599,427.30035,4.868 213,-36.757935,-128.39307,116.656876,275.99045,4.842 213,536.7195,312.2341,142.57263,338.68765,4.717 213,458.78647,0.512249,34.374237,83.29503,4.667 213,617.11053,487.30304,22.332336,45.891724,4.646 213,2.9480453,-15.883635,16.633224,39.34387,4.622 213,-40.456787,365.96692,110.96291,275.1001,4.609 213,476.48358,183.41081,54.0506,131.25697,4.573 213,436.66974,195.24286,29.15625,74.81348,4.541 213,452.22272,238.53255,41.70575,91.63542,4.527 213,602.8181,-56.792915,53.414795,137.38599,4.526 213,393.63388,84.69586,22.464905,52.818466,4.492 213,382.6036,176.27888,29.012115,69.12138,4.38 213,539.1143,180.57892,32.615967,80.545715,4.367 213,493.28644,226.91779,238.30524,514.141,4.366 213,596.62585,315.09357,39.817383,91.56967,4.326 213,404.9796,205.98587,28.505524,65.84067,4.222 213,570.67084,359.51743,33.50116,59.92453,4.218 213,-71.304115,-190.33463,212.03033,456.05963,4.145 213,585.3751,467.82138,22.027893,41.03961,4.134 213,443.11374,-7.312809,58.50827,124.11351,4.128 213,450.79065,190.22086,32.431427,72.28323,4.109 213,338.2472,483.5959,35.57605,56.81079,4.055 213,593.79626,469.0807,22.801697,40.75479,4.004 213,435.92136,210.98958,41.785248,83.98427,3.996 213,612.9145,290.2122,36.878723,104.11801,3.994 213,395.99567,208.6543,53.79065,110.22308,3.992 213,461.42285,211.02649,31.018097,67.00897,3.986 213,597.0259,367.78903,41.677795,105.0069,3.986 213,402.64886,164.70375,29.201874,85.65721,3.943 213,595.42737,477.88596,33.779358,61.791656,3.922 213,537.71686,487.8988,21.233826,42.51703,3.918 213,410.72665,219.26913,58.235443,141.47842,3.893 213,594.48846,-45.104538,44.4693,98.45432,3.834 213,-9.263868,-8.013699,40.0791,99.954605,3.826 213,613.18414,94.873116,37.410706,109.823326,3.825 213,544.94727,331.28937,45.229675,86.759674,3.813 213,539.01337,231.78278,56.857178,123.86743,3.784 213,612.96875,240.25214,37.2511,108.325745,3.768 213,346.7023,204.33049,30.830078,57.05931,3.754 213,572.9795,162.67444,56.06018,150.7265,3.705 213,545.7289,486.64365,21.183167,43.552032,3.682 213,11.347473,-32.453453,58.04615,126.34554,3.67 213,603.8097,355.28604,54.392883,137.28574,3.666 213,513.0468,261.20807,44.39087,87.70862,3.666 213,493.95087,252.99146,43.92456,89.58563,3.664 213,521.7821,-34.41649,60.499695,127.78597,3.651 213,572.2546,192.37546,33.754272,72.73462,3.65 213,572.12836,329.44922,56.35211,124.69385,3.63 213,474.7748,-10.565544,58.12961,128.07047,3.618 214,438.35516,216.67162,39.520813,111.52696,8.042 214,437.61682,111.99847,30.8768,76.34913,6.961 214,429.7749,231.89378,30.828064,82.10005,6.389 214,613.2464,452.21732,39.826843,109.909515,6.297 214,-5.7068944,-17.939623,17.695238,43.53413,6.083 214,442.68692,183.97943,31.053436,97.224365,5.985 214,-10.848603,-32.10005,29.26456,72.98401,5.941 214,-8.578301,465.15924,37.38225,91.744995,5.647 214,626.3265,487.1802,21.212097,46.369476,5.645 214,610.9251,-47.972115,42.0437,100.68276,5.575 214,-6.324937,489.53928,18.638474,42.81906,5.515 214,585.39905,-98.431984,74.98071,232.93365,5.35 214,356.7657,233.8387,27.609253,59.103683,5.251 214,-17.454689,-63.529835,56.968075,144.16,5.109 214,-73.04199,265.52405,201.15964,461.61084,5.047 214,490.4228,-181.83002,234.84296,429.4181,4.997 214,429.01202,49.46236,30.988525,76.643616,4.926 214,596.1732,335.20352,40.37213,100.49545,4.914 214,582.8636,409.09027,72.579285,179.13593,4.885 214,627.4392,-17.822992,17.120178,44.86791,4.874 214,-36.43952,-127.25361,116.62153,275.9994,4.856 214,536.4404,310.72003,143.20752,341.11273,4.829 214,592.5399,59.526546,34.420288,84.292404,4.824 214,-21.809021,402.52307,79.633026,175.35376,4.778 214,449.3012,114.710106,34.470734,71.83787,4.525 214,493.38165,226.17947,238.53436,515.19934,4.451 214,506.88052,185.15579,31.169037,72.07715,4.442 214,538.9767,-15.598713,58.51349,119.96506,4.388 214,579.8867,337.9245,41.874695,95.834656,4.336 214,509.01227,255.37442,27.124329,70.583466,4.281 214,417.66455,220.3469,51.237183,128.82986,4.252 214,458.22574,210.54288,52.90753,127.20764,4.183 214,426.10974,-16.37892,17.640839,44.236336,4.161 214,377.93124,-17.123522,18.194977,42.97671,4.156 214,565.3714,207.93886,30.045227,72.876816,4.082 214,612.1553,350.23257,38.542603,103.10852,4.075 214,369.6549,-15.30632,18.095886,43.551598,4.07 214,-70.96381,-189.76367,211.52084,455.061,4.069 214,2.92248,-16.292444,16.497284,40.465588,4.066 214,578.4389,196.63573,31.166931,71.508286,4.02 214,308.53723,246.27217,16.225403,27.120071,4.018 214,575.2454,165.27774,53.410217,143.97647,3.989 214,447.67838,250.33858,43.10132,94.244125,3.907 214,434.08017,-15.868303,17.256989,41.90687,3.845 214,571.4495,-13.159363,56.331726,121.54093,3.838 214,618.30066,489.08768,21.170288,44.142487,3.828 214,349.41455,-21.149677,53.818512,126.9953,3.824 214,500.12424,368.22412,34.32901,64.0018,3.812 214,440.89233,135.13152,33.99124,90.59912,3.806 214,-9.863109,-7.108612,40.73639,99.71902,3.801 214,381.24173,-18.531498,54.48517,121.79326,3.791 214,422.50708,218.1157,30.01416,79.14934,3.789 214,507.73187,-16.91521,57.88318,120.16467,3.776 214,522.64417,-13.41287,32.910522,66.683014,3.77 214,466.80676,270.84726,41.822815,95.023865,3.767 214,300.9296,248.8077,15.678925,23.60643,3.757 214,434.17822,71.709076,31.969543,84.66354,3.741 214,487.16443,217.75368,28.51361,71.679276,3.738 214,619.75653,-3.6898642,18.796814,38.343685,3.728 214,414.12152,-17.021263,29.311035,66.86047,3.713 214,334.26974,235.3464,27.668488,58.282776,3.701 214,589.9215,186.74385,49.82141,168.62627,3.693 214,492.59186,-15.1705475,30.772034,66.16184,3.691 214,1.9594717,-39.755848,43.73381,97.12721,3.686 215,507.09155,31.013927,30.411438,83.18291,8.404 215,513.61066,80.55841,32.38391,87.046326,8.345 215,525.87964,268.20697,30.581116,79.2699,7.996 215,-5.6580696,-17.210333,17.938028,41.45334,7.165 215,626.0775,488.14243,21.437805,44.91281,6.865 215,309.65262,225.50987,14.767517,28.037521,6.51 215,613.36127,452.9065,39.44171,108.563354,6.448 215,-11.105863,-31.5823,29.62355,70.59561,6.264 215,501.61572,10.134693,32.85132,78.406784,6.174 215,-12.489699,477.8288,30.711063,62.95337,6.121 215,622.51227,-33.675728,27.20575,75.03544,6.116 215,617.8798,489.2002,21.366455,43.36377,6.024 215,627.16907,-18.511894,17.584595,46.826275,5.988 215,340.01294,224.72073,31.402832,56.511353,5.87 215,402.42923,102.41043,31.954071,78.33914,5.84 215,602.2416,-55.646397,53.749146,132.95103,5.58 215,316.32742,225.00748,14.855621,29.729156,5.539 215,585.35895,-98.30526,75.07245,230.78055,5.478 215,538.2741,203.01433,33.232178,74.837845,5.378 215,514.732,-2.916502,31.143372,67.80377,5.364 215,-6.2543516,489.6546,18.72602,42.485657,5.345 215,379.98804,215.27501,28.947205,59.393143,5.336 215,302.169,223.70508,14.107269,27.140259,5.334 215,618.487,-6.0693455,20.44757,41.67061,5.272 215,293.30447,225.88399,15.645142,25.835587,5.161 215,489.76407,-180.5813,235.64963,427.92352,5.096 215,-73.279335,265.58792,201.34366,462.1506,5.027 215,536.689,310.8321,143.3266,340.9936,4.967 215,586.6103,412.85788,57.651062,132.81064,4.91 215,-17.687372,-63.18391,56.950867,143.1119,4.907 215,573.33466,-19.347267,54.77069,119.195595,4.856 215,-21.898548,402.2902,79.7397,175.35263,4.841 215,392.8984,221.01062,22.267303,42.73108,4.81 215,-36.667225,-129.00963,117.34674,278.24612,4.769 215,2.910853,-14.687706,16.791592,37.482094,4.755 215,520.18317,137.49312,33.080322,102.83974,4.463 215,493.51935,226.60068,237.78339,514.5796,4.415 215,514.2367,223.75334,48.487366,131.03743,4.406 215,596.44147,-3.2181702,41.702026,105.69201,4.402 215,593.8416,-43.47791,44.910156,94.87731,4.363 215,603.5308,27.570053,53.696472,141.72034,4.313 215,300.25647,9.026203,34.251434,70.548676,4.281 215,353.74402,224.81555,22.303925,44.481323,4.187 215,10.665383,-31.157867,59.86763,129.4887,4.179 215,519.2538,23.327541,23.43518,58.41538,4.158 215,573.40356,180.79105,52.5354,146.52103,4.128 215,510.00897,263.78552,32.275818,72.47037,4.119 215,523.8947,6.223507,31.84491,78.155685,4.07 215,522.56635,-29.798723,59.16089,123.44025,4.068 215,-5.5298448,281.66843,16.214788,37.66861,4.033 215,-70.90806,-189.11285,211.54575,454.75906,4.026 215,417.8456,206.731,33.07846,78.136856,4.021 215,495.16782,-32.8336,28.267914,76.050285,4.007 215,504.56998,344.41772,38.15793,62.250427,3.984 215,612.42535,11.251137,38.92749,109.97905,3.967 215,282.46124,-16.30472,17.80658,38.452274,3.965 215,523.6284,218.99889,29.82666,97.268845,3.953 215,616.724,203.07668,23.064941,60.742416,3.951 215,362.9743,233.81494,34.542053,66.874695,3.937 215,345.41394,222.72333,20.879944,39.06958,3.934 215,532.65924,-3.625864,29.717041,65.08975,3.931 215,491.60464,-24.902493,58.554108,123.149536,3.906 215,606.57263,188.57741,29.67981,83.36296,3.904 215,335.16412,201.52777,27.327515,65.125916,3.895 215,474.7987,-13.266515,16.22754,36.173424,3.894 215,483.04352,253.80077,43.691895,79.40883,3.857 215,501.14746,205.94789,32.26465,71.612595,3.845 216,626.67175,488.081,20.143982,44.940857,7.248 216,-10.21515,-32.580093,29.157032,77.602516,6.765 216,-4.820692,-16.642254,16.79039,43.830864,6.704 216,-8.980806,466.19757,37.92227,90.19147,6.479 216,613.02686,454.696,39.379395,107.875824,5.498 216,610.918,-48.871048,42.104065,101.395035,5.49 216,627.18195,-18.17284,17.382202,45.99843,5.473 216,-6.4366584,490.1272,19.098793,41.088013,5.265 216,433.22296,-2.157158,33.297546,79.07675,5.246 216,585.6821,-100.17428,75.31995,233.20392,5.157 216,-73.05325,265.10333,201.41234,462.64655,5.131 216,489.94464,-181.72289,235.64136,428.39877,5.096 216,-17.597763,-62.588272,56.41973,144.5903,5.028 216,-4.1891627,0.3004818,17.588383,47.776222,5.026 216,618.60205,488.1433,20.20465,43.371826,5.016 216,-36.742905,-128.66992,116.92505,276.75098,4.852 216,-22.076237,402.00998,79.9297,175.33237,4.761 216,11.838343,-32.77123,58.14985,128.75185,4.707 216,355.52017,221.55348,32.588623,68.24617,4.655 216,583.2529,410.3448,71.700806,177.52545,4.652 216,456.50616,241.2908,29.779785,72.57568,4.623 216,536.96313,311.15015,142.37128,341.00183,4.62 216,587.5343,195.44304,32.698303,73.91237,4.59 216,383.17795,241.62592,24.718323,43.461304,4.492 216,537.906,488.04797,20.866516,42.44281,4.465 216,490.56686,-32.29548,58.71512,122.05254,4.37 216,493.52567,227.31802,238.16513,515.2008,4.309 216,443.6848,49.967407,29.90561,86.1458,4.287 216,574.3005,184.30312,52.638428,141.85765,4.271 216,371.58374,228.40363,34.3656,70.045654,4.268 216,491.55392,142.32567,56.592804,132.47401,4.263 216,546.26843,488.5074,20.555786,41.67401,4.262 216,317.51947,225.12253,14.487732,30.044998,4.229 216,381.20792,212.58588,27.004395,62.85974,4.224 216,522.0907,-35.955883,59.71997,126.45598,4.187 216,427.0142,-25.933605,57.78546,129.56784,4.149 216,597.4601,78.71088,40.158325,111.572266,4.137 216,483.7998,119.499916,32.131165,69.97387,4.119 216,538.1412,367.11935,34.393982,65.60327,4.108 216,251.75342,229.30023,32.213043,57.033447,4.049 216,448.70926,78.79211,31.255707,86.76038,4.035 216,250.98346,231.51529,20.937439,37.217346,3.935 216,-0.07706761,-15.155266,25.483696,73.85444,3.907 216,1.8047321,492.2814,19.658487,38.301544,3.879 216,-70.799965,-189.49002,211.08984,454.33945,3.877 216,613.5177,237.35199,37.269165,111.797424,3.861 216,530.177,488.70694,20.013672,41.403656,3.858 216,539.1309,-59.235954,57.865967,128.04839,3.857 216,445.5391,102.482574,29.189606,98.52127,3.839 216,-9.338321,-5.678768,39.879272,99.20987,3.837 216,572.0849,54.420616,57.05121,148.06958,3.778 216,367.69055,214.31514,28.942291,64.88594,3.778 216,574.2403,203.76686,31.296936,65.58647,3.758 216,5.520315,469.09344,38.435333,92.2901,3.734 216,458.8773,198.14389,30.274475,101.14548,3.714 216,395.6052,251.1156,33.781464,67.97858,3.71 216,403.30103,234.62465,42.318237,77.25322,3.692 216,481.5062,-16.675907,19.470856,42.151913,3.681 216,570.6342,-42.515114,60.277954,138.97713,3.673 216,397.5839,213.82031,27.124115,59.78128,3.663 216,603.09644,45.437378,53.757935,141.82367,3.646 216,-5.0248833,103.37372,16.69004,41.416885,3.643 216,514.4431,173.99829,43.227844,101.93967,3.614 216,597.81415,-26.64408,40.454407,98.99202,3.613 216,460.3006,-28.702885,57.574646,122.50783,3.613 216,564.6768,97.69643,42.15027,99.12976,3.61 216,507.42212,-57.595062,57.571045,126.48965,3.609 216,530.7994,196.89493,32.1521,69.85724,3.607 216,347.05356,-16.99773,16.92337,39.40148,3.606 216,434.5304,246.76471,20.320068,45.53546,3.602 216,618.95685,-5.440361,20.186584,41.353786,3.601 216,474.34512,186.57048,53.96579,134.16231,3.59 216,593.87854,367.21506,34.62909,61.932465,3.586 216,503.85168,138.12392,23.348328,44.28653,3.577 216,616.5442,371.1497,23.894897,51.12735,3.566 216,1.5620923,-38.936623,43.834454,97.790634,3.56 216,618.88904,332.5642,19.16101,42.353577,3.556 216,522.4695,366.74405,35.462524,66.671936,3.55 216,593.9829,123.50986,22.308105,52.891907,3.54 216,436.7664,-32.83059,28.761414,75.51057,3.519 216,560.503,-43.46047,47.088745,93.42248,3.507 216,42.791336,-37.811348,58.030807,128.73972,3.506 216,465.76038,-17.310291,19.315002,42.251915,3.501 216,507.90848,119.51674,57.805023,134.67819,3.498 216,286.6371,-36.78572,28.059784,75.32483,3.495 216,460.27936,-14.891573,32.37268,65.69535,3.495 216,603.08655,-30.278324,53.33252,141.0069,3.488 217,-5.4394836,-16.539879,17.357391,41.652122,8.562 217,626.59106,489.58942,20.02124,43.53949,7.421 217,401.20093,220.7993,25.28302,62.71425,6.841 217,-8.988951,466.2194,37.791924,89.30649,6.191 217,627.04126,-17.6671,16.992432,46.56471,6.076 217,618.6828,490.33987,19.661499,40.516327,5.701 217,-11.04967,-32.91801,29.504787,72.22471,5.695 217,612.84143,456.4697,39.018616,105.700714,5.637 217,490.38702,-182.35086,235.30194,427.35397,5.552 217,610.4442,-46.40015,41.79065,98.236176,5.416 217,-6.2085485,489.41696,18.922234,42.31772,5.405 217,546.3472,259.15512,41.365112,107.84686,5.275 217,-17.387545,-63.520687,56.61419,144.13889,5.177 217,-73.11715,265.48462,201.332,462.28528,5.113 217,3.6313045,-13.077734,15.611033,37.434593,5.082 217,245.455,229.87314,29.778091,59.45172,5.033 217,596.6469,148.82185,31.849182,74.70845,4.999 217,499.46182,320.58572,35.39383,72.84155,4.952 217,-22.052212,401.8215,79.75789,175.1514,4.912 217,376.3118,227.43105,22.088226,51.11226,4.854 217,582.929,412.26868,71.91162,176.15979,4.853 217,537.07434,310.47784,142.29968,340.64166,4.759 217,-37.075607,-128.44177,117.05166,278.18164,4.749 217,364.6251,234.84686,32.99356,64.991516,4.44 217,606.6634,159.22723,29.15094,76.191376,4.431 217,572.1916,-15.058182,53.219788,121.28292,4.372 217,573.2409,241.33682,48.414734,139.32797,4.339 217,493.94638,227.90207,237.65768,513.96106,4.315 217,259.02728,232.33826,32.598022,62.03662,4.296 217,537.60034,489.03156,20.827393,40.824524,4.293 217,477.70554,204.53793,29.584808,72.32416,4.247 217,387.5766,232.74881,33.553314,70.449066,4.217 217,572.7362,135.72789,30.69934,75.705215,4.204 217,545.80145,488.61224,20.950256,41.21765,4.191 217,529.95776,489.00812,20.206787,40.98297,4.188 217,586.0472,-101.74981,74.73743,232.79382,4.126 217,580.9331,485.4949,31.66687,55.615265,4.125 217,575.40234,138.30388,50.758667,154.78633,4.103 217,411.52112,214.70203,27.09961,60.73474,4.071 217,3.5650086,284.4326,16.04545,28.855103,3.99 217,527.9709,47.22681,35.3089,101.94884,3.972 217,619.4251,-16.21414,17.256714,42.140606,3.968 217,536.7498,-21.452154,20.44403,47.714783,3.967 217,530.9462,356.80322,33.858704,75.7905,3.956 217,11.8095875,-34.42956,57.900383,129.60126,3.951 217,-5.5070834,0.26928902,17.370087,41.142952,3.926 217,513.0324,311.46747,37.766907,77.21173,3.898 217,10.251448,-13.781967,16.657068,36.399914,3.896 217,318.05038,219.01874,14.833588,31.888062,3.875 217,611.09955,493.35718,19.424988,37.12329,3.842 217,604.8729,377.34937,29.773438,69.12875,3.834 217,11.008353,0.01755333,18.390945,32.61007,3.833 217,-70.53079,-188.89423,210.78476,453.15833,3.807 217,380.36176,221.86221,30.19989,68.181305,3.801 217,5.4784465,468.68393,38.477623,92.36899,3.789 217,351.11237,204.05373,51.755005,113.014786,3.786 217,404.2376,224.72241,39.737915,87.17761,3.757 217,349.57,-25.87788,55.1604,125.22093,3.714 217,586.86835,140.9114,31.540405,73.293304,3.708 217,-4.9989586,284.87778,15.626936,34.731476,3.706 217,492.77478,-15.912117,30.76477,74.8935,3.695 217,589.2089,-36.27341,52.149597,134.71286,3.69 217,602.9347,-12.896641,54.385315,143.00734,3.632 217,554.3492,489.0634,20.596252,41.546295,3.63 217,613.2791,236.31667,35.491577,112.46968,3.615 217,265.3648,232.92403,20.093994,34.316727,3.608 217,617.28534,366.83997,22.848938,48.516693,3.602 217,298.31653,227.27472,18.554749,33.678284,3.601 217,-4.7857685,27.7374,15.89431,36.899776,3.595 217,522.0746,488.87637,20.42212,42.217377,3.528 217,388.70233,-33.01039,28.297363,73.44558,3.523 217,-9.383982,-6.3637466,40.348785,98.59585,3.512 217,1.7240578,490.4605,19.974197,41.36914,3.492 218,-5.4971046,-17.14835,17.402212,41.871723,8.339 218,419.37808,222.63872,19.143646,41.708084,7.429 218,437.57202,152.82394,29.545258,90.7663,7.243 218,444.72763,223.80763,28.483795,73.98613,7.174 218,626.5733,488.60312,20.125977,43.8096,6.855 218,-8.711425,465.8121,37.289173,89.78873,6.502 218,-10.904043,-32.01257,29.446438,71.59562,6.48 218,613.1634,454.15372,39.77118,108.48105,6.311 218,425.79227,228.3639,19.533325,43.506332,5.733 218,-6.2619376,489.0,19.195978,42.92987,5.54 218,618.17834,488.90036,20.804932,42.261932,5.477 218,627.346,-17.870504,17.096436,45.960213,5.439 218,-17.511822,-63.760784,56.694317,142.78029,5.413 218,387.3872,240.85684,32.36615,66.23926,5.37 218,433.54068,224.0464,27.074371,63.75978,5.212 218,-73.24815,265.15265,201.60509,462.86115,5.168 218,-17.435402,438.65674,55.228527,136.01581,5.154 218,585.29047,-99.266815,75.47333,234.46828,5.14 218,548.8071,2.428608,33.49292,64.76495,5.128 218,506.66583,-15.288067,58.227234,116.07211,5.089 218,489.91754,-181.19424,236.12054,427.96832,5.01 218,3.2123363,-14.731365,16.100716,37.80357,4.958 218,573.7971,219.76497,54.459778,132.63829,4.886 218,583.2288,411.2107,71.510864,176.26843,4.864 218,540.7561,-14.554592,56.815796,115.8318,4.849 218,611.09216,-49.036446,41.687927,102.654724,4.843 218,237.28027,231.31721,31.583588,64.19298,4.702 218,317.41156,219.6413,16.18158,32.79669,4.698 218,-37.014347,-127.94273,116.96777,275.74466,4.691 218,11.067815,-31.802183,58.71571,124.947975,4.674 218,536.8134,311.16397,142.75739,340.97202,4.668 218,412.4582,-11.415958,56.00769,116.06372,4.612 218,387.62207,169.81406,29.586853,79.58157,4.588 218,618.28186,406.65436,22.073303,56.10443,4.569 218,567.54144,1.5144005,22.326782,48.896477,4.563 218,-40.59267,366.79175,110.94348,275.30505,4.523 218,-4.9047275,2.1395626,17.146063,41.256958,4.514 218,415.05933,229.63022,27.058167,61.73822,4.468 218,595.0083,208.7252,32.381775,79.45314,4.445 218,396.4085,-11.279633,30.875397,61.283726,4.36 218,493.5951,227.74918,237.74243,514.9099,4.328 218,410.37234,-2.7345314,19.36554,37.940514,4.316 218,10.435715,-14.668355,17.187313,36.9338,4.296 218,379.7436,-17.116302,56.950134,119.42445,4.178 218,545.5154,487.66522,20.83191,41.681946,4.158 218,220.59586,229.1058,32.603897,58.677826,4.138 218,459.45987,92.46725,32.162933,81.911934,4.126 218,299.58783,218.0062,17.25174,32.90686,4.114 218,402.68893,-4.8984985,42.8049,88.77273,4.105 218,596.9612,402.42477,29.23639,73.813965,4.052 218,499.40613,215.23608,31.64801,61.11499,4.04 218,617.6374,176.40482,21.19989,58.1819,4.034 218,537.52893,488.27567,20.94342,41.5054,4.033 218,5.6776476,469.23828,37.674004,91.93616,4.009 218,522.8196,360.06235,33.010498,69.886444,3.998 218,405.32593,201.98499,38.806274,79.200195,3.952 218,375.34848,168.75624,27.12561,80.03534,3.937 218,1.7681062,490.63824,20.082994,40.4823,3.931 218,453.90833,143.50563,29.859802,82.44768,3.912 218,427.0584,1.6647072,19.97644,35.39267,3.91 218,-70.48196,-189.47058,210.74557,454.23267,3.907 218,402.3764,-13.704898,17.64328,38.36918,3.894 218,3.4326553,-7.814953,42.845467,96.50433,3.892 218,378.29156,-16.325535,18.237518,41.927246,3.87 218,418.6632,-0.079818726,19.430023,36.548164,3.861 218,579.5184,477.46698,33.54889,61.00299,3.83 218,554.03577,487.40924,20.803223,42.078796,3.828 218,585.7012,68.53179,33.127563,69.0109,3.827 218,421.88727,206.17572,28.259064,60.880554,3.815 218,370.61823,-9.246113,42.595093,90.29433,3.804 218,614.2473,107.46815,25.202515,79.901024,3.797 218,249.91385,226.8731,31.32779,67.75569,3.776 218,595.67236,482.45038,31.823547,59.040527,3.768 218,445.69495,208.19577,47.88098,118.065155,3.765 218,596.64844,250.24384,40.48468,104.9079,3.765 218,234.43762,237.58066,22.931396,44.152954,3.726 219,473.39297,227.61932,22.326294,49.882385,92.18 219,458.4301,226.0643,18.592834,46.623352,40.748 219,468.1905,221.04077,36.726044,72.80133,8.188 219,428.16785,239.84424,33.254944,72.53125,7.319 219,-5.936291,-17.852205,18.075703,42.857586,6.733 219,323.92148,226.35081,17.10202,34.382797,6.241 219,622.52155,-34.12229,27.288147,76.21748,6.087 219,621.79236,477.42834,28.87146,67.08118,6.033 219,-8.815522,465.57877,37.644787,90.66678,5.758 219,-12.333487,-39.98436,41.723385,98.31978,5.706 219,356.058,225.70714,31.263733,60.9178,5.675 219,-6.550718,488.91812,19.74097,42.950897,5.561 219,602.7239,-57.680832,53.380554,134.7311,5.552 219,490.66928,-33.978065,59.002045,123.581856,5.296 219,458.26953,-29.739506,58.414795,122.1366,5.238 219,353.66772,173.85695,31.672485,80.91873,5.211 219,453.78162,209.40929,39.98642,75.42851,5.149 219,490.6922,-182.70609,235.51715,427.90588,5.104 219,-73.053444,265.47696,201.22324,462.38437,5.061 219,537.0543,310.12665,142.86414,340.4051,5.045 219,404.94635,2.62471,31.776703,79.26608,5.028 219,626.9494,-19.638838,17.87854,48.066517,4.986 219,551.70264,88.88842,33.35504,92.14887,4.918 219,583.1089,411.2855,71.85425,176.87234,4.915 219,-20.158834,-87.28783,71.90348,195.91539,4.893 219,412.8558,-13.025101,56.401947,113.310074,4.878 219,12.507358,-17.363033,58.2608,116.14169,4.86 219,585.728,-100.24215,74.7713,235.08807,4.859 219,451.2171,7.284668,34.401306,83.02478,4.835 219,236.29234,236.08205,31.93843,69.746994,4.831 219,443.77866,231.58423,31.735199,64.14966,4.805 219,-36.749302,-127.01045,116.98018,275.43408,4.778 219,594.79486,-45.9088,44.10028,95.643326,4.755 219,428.40607,193.80592,27.748718,80.52931,4.716 219,-21.935772,401.97528,79.57747,174.81134,4.701 219,523.97034,-36.246918,59.034546,127.60998,4.647 219,494.74817,229.63849,236.50989,511.51807,4.58 219,468.2794,-0.26106453,29.314178,58.6622,4.55 219,437.35995,249.3475,37.20044,73.75662,4.526 219,523.1573,118.60054,30.571716,79.95134,4.479 219,413.14935,190.10063,31.41684,80.27409,4.478 219,475.08896,-13.438801,32.89865,60.924503,4.442 219,501.26834,290.04184,25.196014,33.266968,4.423 219,202.7426,247.44852,35.209045,66.26199,4.393 219,412.31564,18.802887,31.515045,82.11885,4.383 219,433.68466,11.079971,33.56076,80.03929,4.318 219,411.70038,236.67804,33.58969,66.70325,4.296 219,553.5249,24.960552,31.51294,83.556595,4.251 219,466.43774,224.53752,21.541656,46.12242,4.248 219,-5.554434,0.8382206,17.909306,43.386505,4.219 219,549.5353,130.8496,34.600952,102.23329,4.196 219,421.53946,152.43935,28.279114,81.209335,4.146 219,380.94516,-20.607208,56.72113,120.52975,4.137 219,373.7636,224.94284,30.61731,64.979645,4.115 219,481.1889,234.65707,40.119934,74.37732,4.106 219,538.8649,126.81494,33.18091,96.91815,4.1 219,450.09885,232.52197,42.562286,89.2536,4.08 219,251.61841,240.20052,31.77655,67.60817,4.06 219,387.24078,229.21765,41.026062,82.2265,4.044 219,3.2669687,-6.254448,43.390778,94.117455,4.014 219,308.46347,226.00435,17.944885,33.764877,4.003 220,466.33618,229.87477,31.670288,80.650894,14.387 220,515.2763,187.166,54.88501,142.84486,11.744 220,539.05347,226.06844,31.246338,79.55061,8.922 220,324.55652,226.24744,16.667053,35.610626,8.295 220,-5.9120216,-18.305489,18.278246,43.139282,8.131 220,510.93585,124.99809,34.428772,83.51277,7.092 220,-6.668027,489.80725,19.674225,41.51642,6.49 220,-10.990402,-31.860483,29.244322,69.89692,6.323 220,-12.589855,480.81702,30.648052,60.56482,6.248 220,626.2088,486.89752,21.026184,46.615417,6.244 220,612.8634,453.37265,39.934692,109.07193,6.142 220,471.79565,258.32294,28.717499,65.323975,5.971 220,-17.782661,-64.74984,56.605442,143.838,5.843 220,627.35504,-18.938015,17.254456,46.965046,5.785 220,622.744,-34.449047,26.89856,76.823044,5.699 220,370.6612,227.27316,32.851807,66.92511,5.313 220,-18.066395,438.959,55.730034,136.58377,5.221 220,-73.32379,264.83368,201.54488,462.70184,5.085 220,617.3667,190.2435,22.303589,56.102356,5.053 220,489.62262,-179.9702,236.23737,426.0506,5.046 220,582.9998,412.22144,72.0025,175.26709,4.906 220,536.53,310.6514,143.06128,341.67014,4.906 220,585.2562,-100.821266,75.565186,234.24991,4.901 220,-36.636578,-128.46068,116.71394,276.89984,4.861 220,602.91345,-56.80459,53.06732,135.73439,4.75 220,494.3778,228.7203,236.83972,512.44995,4.608 220,219.3136,240.43759,35.162277,68.31882,4.601 220,499.41785,159.67987,59.1485,127.56171,4.584 220,561.6837,210.96526,36.26117,65.69881,4.576 220,-40.393085,368.41522,111.02171,273.2077,4.573 220,2.8647006,-17.10521,17.294617,40.18436,4.566 220,1.3944376,491.21344,20.55342,38.82483,4.533 220,476.3867,-10.132584,55.948456,121.60744,4.528 220,296.52695,234.88187,20.554169,32.316467,4.378 220,451.79633,228.20212,48.848785,116.55679,4.327 220,473.8893,158.43173,59.742584,137.97186,4.296 220,480.94205,239.47253,42.105133,88.41852,4.256 220,532.994,225.57504,59.553345,130.59583,4.23 220,612.0735,236.97665,38.66571,106.005646,4.207 220,10.619454,-35.281082,59.388435,127.59618,4.174 220,-5.7496786,0.56482124,17.869282,42.240685,4.169 220,317.06805,232.71019,17.873291,34.465775,4.149 220,455.3769,238.77783,29.316284,74.02496,4.138 220,349.94012,-22.063698,54.054077,121.48517,4.121 220,553.5367,488.74832,21.207825,41.374237,4.116 220,575.2794,170.61752,52.774536,140.664,4.095 220,316.48926,-16.994743,54.484497,115.940834,4.076 220,597.7392,184.10213,38.05597,109.84712,4.071 220,412.88367,148.17026,29.158295,76.578384,4.064 220,545.58234,488.89062,20.674927,40.928833,4.056 220,618.00024,488.23465,21.425415,45.05435,4.031 220,474.37576,213.7257,30.1716,77.06615,4.03 220,250.2347,235.94548,21.036942,32.63301,4.006 220,454.99158,156.14185,29.069519,69.8598,3.996 220,515.94885,246.09636,45.740845,99.082596,3.994 220,522.3013,-29.957401,60.651367,125.819855,3.986 220,594.42535,-45.483986,44.637207,97.375175,3.964 220,-4.9172707,29.16579,16.34105,37.628124,3.954 220,387.1431,214.5003,34.935516,62.59845,3.945 220,444.32574,-13.496315,55.791504,120.42204,3.936 220,-70.959305,-189.4407,211.17183,453.858,3.934 220,236.61339,233.25558,33.573776,69.31464,3.932 220,42.55237,482.3076,33.603897,59.050446,3.932 220,588.19354,-18.37513,31.648315,66.28645,3.918 221,324.86026,236.90295,15.6091,37.602264,11.174 221,-5.6311283,-16.855137,17.77735,42.52399,7.984 221,506.26175,278.72266,35.037567,83.81781,7.778 221,409.78745,257.7333,36.093933,69.51633,6.928 221,-10.852917,-31.964615,29.65822,74.21362,6.813 221,612.91144,453.0579,40.328003,109.88901,6.605 221,330.59006,234.74553,15.776276,41.77388,6.44 221,500.21274,240.01855,32.92386,90.46356,6.364 221,316.6065,242.15166,17.260834,34.464188,6.039 221,392.19965,240.68184,35.828766,67.674484,5.947 221,610.27783,-46.14378,42.19287,97.100105,5.904 221,626.5156,488.4558,20.759033,45.87091,5.81 221,405.14563,249.4653,27.327362,49.294617,5.581 221,-12.600748,478.40625,30.688889,62.45935,5.579 221,482.1991,132.33882,32.641235,87.75653,5.489 221,487.2417,221.13812,32.08966,80.18622,5.489 221,-6.5282383,489.61765,19.339493,42.382843,5.176 221,627.14404,-19.37913,18.099426,46.941013,5.168 221,381.85016,229.47188,31.475494,64.1693,5.162 221,-17.482857,-64.166466,56.51748,144.05714,5.148 221,585.45667,-98.55171,75.34076,230.92046,5.13 221,575.9015,195.62788,51.569946,129.39098,5.037 221,-72.79407,265.56226,200.97533,461.70056,4.983 221,-36.671356,-127.2896,116.94364,274.67096,4.951 221,489.91357,-180.91809,234.96619,427.26535,4.905 221,2.918301,-14.096655,16.767136,39.099888,4.903 221,-21.876738,402.4101,79.13817,174.55157,4.874 221,583.0296,409.29773,71.97595,178.53015,4.851 221,4.489929,241.6773,14.638882,25.079346,4.757 221,509.2203,-15.456985,56.40689,114.649826,4.751 221,536.94775,312.047,143.05823,339.57825,4.682 221,571.52094,219.53937,32.879333,68.90939,4.68 221,598.6869,342.79346,38.313843,96.650085,4.677 221,319.82877,229.18298,24.996368,54.33667,4.645 221,475.05133,261.26596,34.358826,70.043396,4.633 221,11.165695,-31.850922,58.66028,127.16518,4.563 221,505.55322,0.7461815,22.412964,49.545597,4.544 221,561.8493,489.00226,20.795288,41.508606,4.515 221,418.82245,244.0634,33.266907,63.676163,4.512 221,493.83112,228.41116,237.25812,513.0055,4.486 221,553.7757,489.26425,20.925354,41.25943,4.401 221,528.55853,2.6421318,22.245728,46.416077,4.347 221,595.6367,459.91998,41.078857,100.131775,4.325 221,474.55994,287.16827,36.5448,81.5423,4.308 221,458.31018,-26.481041,58.00293,125.1447,4.303 221,545.9437,488.6278,20.403076,42.11261,4.256 221,577.2668,-7.9892426,45.90692,94.00465,4.244 221,-5.106226,1.5411186,18.018034,44.88257,4.224 221,361.17432,235.00676,21.850128,42.104294,4.212 221,563.615,233.88905,43.6438,90.18083,4.189 221,493.6838,0.48085403,30.377167,63.00483,4.181 221,467.64923,6.103573,31.067963,68.12633,4.124 221,507.4889,5.328949,29.059326,68.40903,4.099 221,540.975,199.61981,54.926697,118.58441,4.071 221,477.97888,-10.045807,54.750732,115.22012,4.061 221,587.78577,-38.89465,53.556946,137.12134,4.037 221,557.66406,221.98897,30.900818,71.16283,3.991 221,554.9565,-32.10888,59.17755,123.99314,3.971 221,545.4876,-6.40197,45.182007,90.45003,3.936 221,570.0634,489.43298,20.608276,41.290405,3.926 221,575.151,326.35876,54.356384,125.769135,3.921 221,394.55273,-17.557983,17.764221,40.711803,3.914 221,538.1077,488.76733,20.61621,42.45282,3.899 221,-9.662945,-6.108059,41.169968,97.86832,3.87 221,604.23193,-13.114361,53.18921,137.91083,3.87 221,-70.91805,-188.95518,210.99411,453.27576,3.849 221,11.145258,284.70917,16.702452,28.8497,3.835 222,329.4619,240.74115,18.65329,44.553284,9.927 222,-5.7787075,-17.579649,17.857437,42.955475,7.515 222,626.149,486.2353,21.414795,47.26465,6.715 222,613.00037,452.53903,40.23169,110.68356,6.448 222,-11.018763,-32.409508,29.46518,74.22188,6.313 222,-12.492709,479.28183,30.498081,61.04361,6.056 222,627.2643,-18.938908,17.482422,49.242912,6.011 222,610.3573,-46.380978,42.01361,98.46188,5.754 222,-6.3622046,490.63022,18.883484,41.094635,5.526 222,612.22046,381.7952,27.83081,84.61191,5.519 222,321.94217,-15.631918,32.16385,62.754044,5.514 222,389.5052,232.02863,29.37384,65.33435,5.449 222,585.7655,-97.24048,74.492065,228.78027,5.439 222,-20.412384,-85.67227,72.3998,193.46014,5.306 222,490.73486,-181.73093,234.12512,429.58368,5.299 222,-73.61957,264.63803,202.2806,463.55582,5.267 222,-17.96722,438.02866,55.207577,136.98172,5.154 222,-36.5333,-126.75362,116.20232,273.1384,5.022 222,593.9491,382.44675,35.94458,76.249695,4.953 222,-5.0542116,58.50645,17.084515,38.53313,4.86 222,536.62933,310.49634,143.1576,341.9928,4.809 222,573.60815,184.00912,52.532593,139.93594,4.779 222,582.9902,409.4447,72.00702,177.9956,4.689 222,2.9202752,-15.629399,16.640293,40.352608,4.676 222,489.84167,-36.543518,59.935547,123.396614,4.615 222,521.71747,329.95584,36.924744,73.141205,4.582 222,577.9979,-9.469425,44.772583,94.88464,4.573 222,340.12616,-33.144966,29.524536,71.002884,4.542 222,-41.030937,366.55197,111.95718,274.61954,4.528 222,493.56042,228.45712,237.84656,514.33264,4.512 222,-5.475614,74.691376,17.215448,36.345444,4.499 222,448.8269,235.5452,33.388428,68.378174,4.494 222,522.3133,-34.351677,59.515686,123.113075,4.402 222,540.6362,202.78453,31.179138,71.65419,4.381 222,603.13153,-26.249062,53.18445,131.73347,4.348 222,617.76215,486.7945,21.865356,46.077515,4.338 222,458.7108,-39.193687,59.14261,125.95135,4.314 222,364.6817,239.50072,31.509155,60.16072,4.258 222,-5.5688534,41.096924,17.78415,42.40203,4.249 222,540.57166,188.581,55.989014,131.29404,4.208 222,-9.498715,-20.329151,39.217995,96.45068,4.114 222,346.6414,248.23827,19.306671,40.01213,4.111 222,577.61664,379.50574,36.191284,74.91531,4.072 222,484.87018,-2.1832848,29.976868,67.17137,4.068 222,558.4833,158.53293,54.274414,127.17575,4.046 222,561.5215,488.91052,20.806152,41.508484,4.033 222,569.62103,489.3744,21.082458,41.36566,4.028 222,544.8518,-9.07058,46.60376,93.5136,4.017 222,512.15784,-8.521408,47.892456,91.63398,4.017 222,-5.194525,89.905716,16.612282,38.058205,4.013 222,11.052406,-32.45715,58.218796,125.48747,4.009 222,361.5749,249.28008,22.61676,41.850082,4.007 222,595.63806,-13.54216,40.668457,100.736534,4.004 222,553.7743,489.03665,20.66333,41.928802,3.977 222,435.7863,79.62866,30.6008,75.27078,3.946 222,362.40738,-19.423578,18.228668,43.139496,3.935 222,1.9671369,-39.288456,44.260098,96.513405,3.926 222,573.2457,194.59256,30.959412,71.99765,3.923 222,391.31732,-35.366856,26.835815,78.71832,3.909 222,493.1535,28.574444,31.50531,75.359314,3.886 222,-5.7167253,0.8632641,18.23883,45.70163,3.884 222,-70.90596,-188.89612,210.93643,452.98862,3.879 222,412.56677,-34.246918,28.955414,78.94179,3.874 222,522.95087,139.37706,59.433533,131.42372,3.845 222,-9.589101,263.69016,37.96326,97.15262,3.825 222,356.0991,247.46921,32.18332,69.959015,3.823 222,619.1711,-18.714912,18.137634,46.282005,3.799 222,564.65,11.4879875,30.066345,70.26196,3.797 222,603.70966,26.54956,53.910217,145.22864,3.764 222,242.86119,-13.811488,16.734634,35.236454,3.752 222,595.9823,461.4303,40.32245,98.94763,3.743 222,597.95,187.24593,37.73114,109.59697,3.716 222,588.6005,195.62402,29.906616,67.16116,3.703 222,555.4957,-32.8674,57.869812,124.02117,3.703 223,543.76056,41.858673,91.97595,336.80603,9.562 223,573.5731,174.07874,59.44983,190.22797,9.307 223,-5.607461,-18.070515,18.016098,43.137627,8.139 223,251.35248,278.8127,17.401306,37.169342,8.017 223,259.2532,276.92526,17.781555,38.385284,7.622 223,266.52216,276.25027,17.524658,37.547455,6.861 223,381.82324,257.96146,30.614258,66.03766,6.792 223,-10.8242035,-31.154308,29.02409,70.24575,6.773 223,244.0735,278.3374,17.34224,35.890594,6.557 223,626.3693,487.1761,20.962769,47.387268,6.223 223,612.98755,455.66437,39.672485,105.94867,6.127 223,-11.913385,480.99316,29.827497,61.06897,6.117 223,622.3479,-33.78917,28.040588,75.82587,5.985 223,626.78735,-19.583984,18.248291,47.46554,5.881 223,236.92848,279.77356,15.93541,32.617798,5.773 223,-6.285633,490.05853,19.052326,41.101685,5.737 223,602.30865,-55.465706,53.49243,135.79253,5.705 223,306.45303,274.83325,20.595154,36.385864,5.675 223,594.1552,244.96567,37.99231,129.0014,5.517 223,531.66486,-180.35913,151.36017,422.70416,5.343 223,-17.674232,-64.20551,56.06476,143.1994,5.321 223,540.9269,-1.5475616,30.291504,82.2166,5.314 223,471.88754,260.38052,22.907806,43.286255,5.288 223,298.971,276.36,20.10205,36.595245,5.215 223,3.0301332,-16.035336,17.296825,39.388847,5.157 223,-73.2272,265.75177,201.38351,461.60736,5.101 223,469.74576,158.45346,30.352203,70.73291,5.094 223,536.61816,309.18823,142.93213,341.72754,5.019 223,430.53198,253.3717,33.77481,71.19171,4.906 223,-21.927048,402.68118,79.85084,175.2601,4.869 223,538.94025,4.9640045,57.75702,150.24422,4.843 223,582.65924,411.8334,72.36774,177.14218,4.777 223,274.67575,276.5106,18.418213,34.09326,4.766 223,521.53064,203.39264,62.736084,128.67596,4.749 223,516.4477,7.9207916,32.332092,77.94514,4.715 223,513.32404,266.62634,35.10797,64.94049,4.632 223,220.78821,284.12427,14.770859,25.416168,4.541 223,283.4873,276.79907,18.610718,32.961517,4.537 223,283.45862,-12.318832,31.660522,58.591915,4.493 223,586.0449,-96.868225,73.84216,229.75586,4.446 223,528.3824,224.46294,34.9964,76.55208,4.402 223,356.8252,7.8666153,29.264648,72.677124,4.381 223,564.6656,246.91376,32.072327,90.85144,4.366 223,-37.265907,-127.09287,116.97399,276.76926,4.355 223,459.20007,228.0798,31.904388,66.10147,4.331 223,494.18198,228.74792,237.26614,513.30365,4.287 223,395.01575,251.17798,32.57596,71.154785,4.262 223,617.9937,-9.654313,21.906982,46.23615,4.256 223,291.22318,275.4747,19.207458,35.884552,4.251 223,594.0335,-43.24519,45.371155,97.418274,4.248 223,551.8832,47.38805,22.844238,54.74705,4.241 223,10.074182,-18.014822,18.214012,40.458534,4.23 223,460.6759,255.75519,31.592957,62.13855,4.222 223,400.83072,246.68443,20.929047,47.31938,4.218 223,540.8633,255.293,55.760315,126.23773,4.155 223,612.41565,313.8389,36.67639,108.35388,4.141 223,282.33685,-0.10114479,20.369476,36.758392,4.137 223,314.16467,282.04407,20.10498,37.663208,4.111 223,-5.0209785,0.19207191,17.689362,43.227997,4.105 223,440.9886,211.28636,61.268127,111.064804,4.09 223,480.5626,159.45178,23.85315,48.371384,4.08 223,300.82123,269.6366,29.396545,59.69394,4.055 223,576.07886,257.67047,50.768433,151.63531,4.051 223,228.67319,281.43204,15.540619,29.042053,4.008 223,553.5435,489.72253,21.023254,40.609436,3.97 223,506.9841,232.43483,58.871246,116.96858,3.963 223,441.8105,243.5961,31.629883,66.70291,3.938 223,475.15292,256.3434,32.12802,61.615997,3.917 223,492.21423,339.5745,31.146912,61.4198,3.903 223,524.897,44.890636,31.442322,80.986496,3.896 223,-10.608246,-7.1736107,41.507027,98.80763,3.871 224,444.10315,226.95497,27.346313,72.994705,7.626 224,-5.7862673,-17.60388,17.93957,42.99561,7.005 224,298.9246,258.6145,18.615417,32.179047,6.927 224,612.89435,454.35562,40.410706,107.40164,6.792 224,-10.915049,-31.629164,29.291077,71.44285,6.538 224,625.31274,486.59314,22.843506,47.164795,6.153 224,-8.973196,465.8306,37.74845,90.22232,5.868 224,-6.435735,489.25818,19.168337,42.194946,5.675 224,610.35944,-47.149166,42.250427,99.03967,5.638 224,-17.565859,-63.642372,56.7108,142.06651,5.449 224,379.60876,256.51697,32.04883,64.40198,5.313 224,573.3115,208.40668,51.9881,124.98993,5.243 224,627.12225,-18.572721,17.497498,46.6366,5.23 224,2.6845746,-16.091646,17.019367,40.738285,5.156 224,585.42224,-98.31813,75.28174,230.27092,5.138 224,554.79846,80.6494,35.030334,80.233505,5.09 224,571.6564,240.60022,32.453674,81.45691,5.062 224,-72.8424,265.639,201.23074,462.0231,5.026 224,-37.37632,-125.06748,116.56718,274.50397,5.005 224,536.5045,309.3039,143.5379,342.13904,4.942 224,251.18376,265.44843,17.866104,41.72873,4.931 224,582.8484,411.56195,72.03381,176.22052,4.856 224,612.686,478.89465,29.478455,63.94464,4.776 224,-21.64141,402.98492,79.385956,174.45941,4.75 224,490.0918,-180.5651,235.16058,425.86456,4.736 224,243.45956,266.601,18.364746,42.012024,4.655 224,460.92505,220.83719,30.335938,66.69241,4.614 224,493.86234,228.84525,236.89749,512.4574,4.523 224,553.50476,487.94427,21.587402,43.502075,4.426 224,419.68677,268.63016,31.774841,79.46301,4.379 224,415.25122,228.39435,26.32611,74.29059,4.372 224,-5.70472,-0.10692406,18.489883,42.859116,4.349 224,559.6235,102.65162,33.574707,93.5714,4.337 224,364.2358,252.08287,14.071869,31.76619,4.322 224,347.4052,259.35336,15.47995,29.96112,4.318 224,398.73053,250.56717,27.026733,62.69409,4.284 224,235.7349,267.1219,18.244461,39.591705,4.252 224,545.76416,488.73596,20.70581,42.60315,4.222 224,11.336608,-33.87651,58.190758,124.29345,4.182 224,590.28253,-21.76463,51.76837,136.64334,4.176 224,562.339,144.02489,32.29364,90.879684,4.17 224,362.529,259.56717,19.214844,35.39688,4.144 224,453.506,190.72691,29.755768,73.784775,4.064 224,316.02838,255.8911,18.745789,35.592056,4.047 224,-9.7668495,-8.42535,40.56921,98.98016,4.042 224,345.35413,268.0431,21.051147,35.943024,4.035 224,595.052,182.77838,32.810852,75.23279,4.029 224,259.68164,264.02524,16.937347,31.664917,4.018 224,453.8483,232.58823,24.12564,55.95526,3.98 224,547.5725,-4.8300705,32.104187,70.34841,3.977 224,389.06665,-3.7196808,28.271912,65.63432,3.958 224,-5.3490458,155.80995,17.110153,38.06079,3.949 224,521.78516,213.48218,58.078064,122.23584,3.93 224,564.11615,210.5098,43.703186,87.92154,3.898 224,268.0759,264.28476,16.66809,31.609741,3.868 224,317.87323,240.58798,26.004944,56.624878,3.855 224,540.76166,-32.414574,29.802856,78.066536,3.822 224,485.06116,215.76038,31.245972,65.84772,3.817 224,185.12988,242.93001,21.337006,41.395035,3.814 224,428.72556,236.73143,30.397736,73.52992,3.811 224,538.10657,489.36548,20.33435,42.03174,3.81 224,597.96985,201.09196,38.81781,97.528885,3.805 224,547.5523,237.98706,34.23633,69.32672,3.797 224,1.880486,-39.554695,43.976913,95.27105,3.782 224,612.8232,247.49214,37.315002,114.53816,3.777 224,340.0182,258.21454,16.751251,34.006073,3.774 224,596.16583,462.88715,40.61145,97.47119,3.739 224,394.49875,-14.871889,17.318726,41.956905,3.723 224,391.92914,270.26974,24.46759,48.516083,3.703 224,364.78748,257.05252,27.19345,52.664886,3.7 224,451.0342,-13.84551,16.401398,38.431053,3.699 224,609.1529,487.5327,22.683716,44.46765,3.696 224,-5.3674173,170.84677,16.651426,38.395782,3.69 224,403.61462,247.03078,40.137512,75.293076,3.646 224,459.29865,-14.974904,16.505615,38.599613,3.635 224,563.33527,-2.0848427,30.976929,71.539215,3.632 224,1.6093838,490.28577,20.287159,40.79663,3.614 225,530.8456,244.4684,32.1994,82.82243,8.872 225,422.58328,209.61186,25.019867,70.791214,8.241 225,293.23203,239.4716,17.189545,31.922195,7.958 225,626.4159,488.49203,20.820984,44.97818,7.184 225,479.64215,241.52847,51.74469,109.991455,7.161 225,617.7916,488.35617,21.37445,44.490143,7.122 225,-5.809305,-17.493275,17.620962,43.03544,7.076 225,490.92365,227.73386,30.057861,84.21359,6.6 225,-10.98675,-32.125683,29.442616,73.10303,6.529 225,612.8157,455.73428,39.832336,106.63284,6.43 225,-8.852917,465.66818,37.628296,90.29489,6.275 225,378.24344,206.98032,21.18393,55.203094,5.719 225,610.75916,-46.915386,41.967773,99.64534,5.614 225,627.17523,-18.05672,17.446228,46.844612,5.578 225,614.3127,261.30365,24.808533,85.73151,5.55 225,-6.5528545,488.97256,19.479424,42.78659,5.444 225,532.36523,299.33496,33.372986,72.1839,5.317 225,365.02307,241.00728,30.34674,60.066055,5.223 225,-73.15181,264.5063,201.62408,463.72058,5.138 225,-17.572393,-64.47742,56.27791,145.52443,5.107 225,451.5729,259.128,41.99716,86.850494,5.089 225,585.52094,-100.91367,75.93756,234.7445,4.982 225,341.52765,243.81895,29.061401,55.53389,4.968 225,536.8441,310.41998,143.28052,341.20746,4.936 225,614.05145,302.04507,27.27301,78.339294,4.932 225,-17.556305,437.26904,55.58718,136.74414,4.931 225,523.6953,258.8266,53.525574,124.20175,4.911 225,582.6675,411.59988,72.28833,176.754,4.85 225,-36.9028,-126.79946,117.21244,276.3825,4.763 225,428.7979,197.67873,29.01538,77.66777,4.752 225,614.1841,164.56866,26.506104,85.12036,4.689 225,489.8062,-180.6426,235.63641,424.7486,4.643 225,419.81836,257.97302,30.605988,70.05774,4.615 225,494.01697,228.72607,236.97949,512.34393,4.573 225,360.47772,243.42587,21.254211,41.18744,4.529 225,11.689796,-16.36425,59.295647,120.45926,4.523 225,478.36148,232.21793,31.371552,78.05661,4.507 225,-40.610664,366.22443,111.06797,276.03412,4.494 225,498.4526,273.11737,41.12802,92.679504,4.473 225,589.0739,-36.096367,52.6286,141.54366,4.434 225,545.34064,488.2218,21.242798,42.61084,4.413 225,597.5617,120.61051,38.848816,93.77102,4.234 225,596.55225,464.16052,39.7619,97.221924,4.195 225,2.8935277,-15.521004,16.61352,40.13795,4.151 225,290.98538,226.26823,19.72873,35.38008,4.148 225,522.3408,-31.951984,59.740906,126.10864,4.146 225,463.01117,231.27591,52.607605,106.44891,4.112 225,563.9957,211.27768,41.299683,100.35828,4.094 225,458.99768,-29.648075,59.09961,122.32219,4.08 225,575.5234,192.40271,53.202454,155.45038,4.07 225,490.7785,-30.88815,59.592224,124.80032,4.057 225,357.8671,202.48541,27.200775,74.82849,4.038 225,418.0819,284.66742,33.01828,68.48755,4.031 225,564.64,167.5905,42.364136,100.48549,4.024 225,293.02618,224.34923,27.644958,50.503708,4.008 225,553.5717,488.50128,21.678955,42.91681,4.007 225,-5.331153,0.8002529,17.900082,44.03102,3.986 225,610.1803,489.42136,20.798584,42.64853,3.966 225,-14.562033,19.171898,48.81034,148.95425,3.939 225,498.27335,228.06403,40.907806,89.6615,3.911 225,377.03342,222.56088,26.750214,68.558014,3.903 225,508.3832,74.00773,57.17166,129.9256,3.894 225,-9.54941,-5.5576744,40.82451,98.68346,3.887 225,435.06808,252.29938,42.42215,77.325195,3.838 226,526.6019,231.32452,30.968994,94.91675,15.495 226,418.05417,170.04778,32.87903,100.61333,13.32 226,417.10834,148.913,30.411316,80.69978,11.075 226,295.857,230.36465,19.34668,41.47473,10.328 226,522.42487,171.93088,29.875488,90.44339,9.574 226,-5.876599,-18.03408,18.095024,42.87446,7.934 226,375.62943,130.81496,25.329468,70.842545,6.728 226,613.3866,450.76776,39.56726,112.32086,6.667 226,-11.71288,478.50427,30.202297,63.11615,6.629 226,-6.373298,488.63535,19.45316,43.910004,6.448 226,626.7192,487.4543,20.510986,45.703583,6.372 226,-11.040181,-31.778372,29.281536,71.03661,6.249 226,514.8975,178.99132,49.28656,138.5801,6.236 226,526.7819,297.5905,35.366272,70.21997,5.926 226,612.8449,51.543022,26.297668,88.81815,5.817 226,602.4743,-56.230198,52.93268,134.87502,5.524 226,627.2943,-17.435513,17.006775,46.556103,5.423 226,314.98462,233.15373,19.968872,42.165268,5.334 226,-17.568293,-63.028763,56.44207,142.4771,5.289 226,490.12115,-182.05122,235.73322,430.67374,5.285 226,-73.35869,265.06732,201.67014,463.15442,5.185 226,517.1181,118.63388,27.853333,81.20932,5.157 226,611.6079,20.756199,27.309265,83.33092,5.047 226,585.3698,-100.15395,74.84961,236.18329,5.045 226,292.64743,204.31006,28.928802,62.773376,5.035 226,622.4403,-33.01016,27.276855,74.59676,4.971 226,-17.243587,436.12085,54.93587,138.32428,4.918 226,545.4513,488.5173,20.917114,42.27365,4.835 226,536.7884,309.9851,142.83228,341.45044,4.811 226,582.9798,410.58783,72.000305,176.81201,4.728 226,541.5859,242.37968,24.674194,58.08998,4.715 226,619.0658,-4.1165485,18.611755,41.9535,4.694 226,267.1878,243.77356,18.415619,33.727844,4.62 226,-37.17189,-126.51186,116.78519,276.2548,4.611 226,-40.663857,365.61505,111.102684,275.98627,4.544 226,476.8299,163.85507,52.68036,129.77045,4.529 226,493.4944,228.87894,237.91846,514.07336,4.521 226,575.64325,149.5651,55.059204,165.2427,4.513 226,537.41016,488.97815,21.070435,41.93518,4.501 226,618.6003,488.55777,20.6958,43.954742,4.403 226,348.47803,235.14742,32.10132,66.54747,4.398 226,554.0534,488.78046,20.65863,42.26013,4.386 226,485.35648,-14.734419,30.289764,65.37475,4.368 226,515.2433,245.01726,51.137085,124.902054,4.292 226,578.0057,224.57463,33.93402,70.77086,4.272 226,604.232,-0.20443344,30.317322,63.52643,4.26 226,447.74738,204.94751,27.989166,75.45752,4.26 226,593.93335,-42.428253,45.00476,93.75924,4.243 226,612.8751,-17.879593,28.963135,70.2354,4.214 226,562.69885,224.82782,35.424866,73.9765,4.21 226,-9.641198,-6.908573,40.594376,99.08786,4.151 226,382.78488,193.40271,27.18814,76.79736,4.149 226,2.0785685,489.70566,19.625816,42.08261,4.11 226,298.9887,0.23558807,18.358734,34.29814,4.103 226,274.56354,242.26616,19.174805,34.41484,4.071 226,415.13293,193.35263,48.86554,119.59781,4.052 226,2.9112935,-16.316154,16.824327,39.396553,4.048 227,520.70624,166.56097,46.97711,172.72522,60.991 227,410.01532,87.21579,31.828583,82.48828,12.991 227,524.832,168.03835,33.116272,106.326706,12.208 227,297.2365,232.76231,17.540894,35.640854,8.731 227,516.6355,89.13664,33.01654,87.73459,8.197 227,-5.846816,-17.510038,18.032557,41.196224,7.31 227,-6.573428,489.33627,19.730204,43.05899,7.147 227,-12.113316,478.85938,31.171125,62.41754,7.106 227,261.52197,248.05893,14.564453,27.167664,6.889 227,622.6816,-33.466087,27.14508,72.18402,6.686 227,266.33444,239.67662,16.35141,31.34172,6.343 227,530.21313,208.86105,33.267456,105.88266,6.329 227,612.7744,453.64014,40.14856,108.684814,6.024 227,627.444,-16.197083,17.105286,42.58041,5.888 227,493.5656,-3.9633522,31.97522,72.39163,5.881 227,579.5295,-2.8419876,42.50769,105.73075,5.845 227,413.4795,229.0969,31.668213,67.1398,5.808 227,621.98114,478.1651,28.59491,65.803894,5.701 227,316.07135,233.43445,16.46051,33.003967,5.698 227,508.99216,-1.897068,29.49588,67.054474,5.675 227,-11.43325,-31.973997,29.91212,68.35567,5.579 227,602.35284,-54.89526,53.721985,132.23138,5.499 227,585.4054,-98.9025,75.302124,231.84373,5.323 227,489.40262,-179.6927,236.17508,426.7736,5.176 227,483.53885,177.53467,39.92801,117.61276,5.141 227,-73.28337,265.25726,201.37315,463.02533,5.14 227,-17.739307,-63.036163,56.058098,143.85066,5.135 227,-17.606243,436.14966,55.19395,139.01282,5.101 227,619.5742,-1.6919956,19.106934,36.191757,5.074 227,477.3636,-14.411766,53.804443,118.50256,4.99 227,425.49158,213.74792,32.048157,68.68375,4.951 227,541.23505,-13.248646,54.41339,116.00017,4.923 227,409.7067,-5.386738,22.510742,42.717224,4.908 227,582.8055,411.3188,72.1734,176.73444,4.904 227,252.76358,250.57079,15.324738,26.368912,4.87 227,536.6379,310.43304,142.83545,342.1184,4.868 227,526.91254,84.38195,23.729248,60.560005,4.822 227,596.4094,-2.2834244,40.972534,108.51414,4.789 227,411.13797,-14.526955,32.93274,66.35932,4.752 227,410.62726,235.17517,23.249756,49.314087,4.654 227,510.7923,112.99222,53.387085,147.37775,4.651 227,520.87427,127.94358,33.318665,77.72207,4.541 227,494.4721,228.86783,236.6842,513.8628,4.53 227,501.4499,159.08064,52.192383,156.85985,4.529 227,516.7868,7.487076,30.554016,68.91445,4.519 227,-40.481792,366.46094,110.74548,275.25024,4.458 227,509.19278,-12.444946,52.651398,117.3942,4.45 227,244.32573,249.11111,16.018936,28.351074,4.408 227,445.51215,-3.1453705,30.808899,72.749344,4.372 227,467.26355,-16.278095,32.02536,67.68987,4.368 227,3.377853,-14.895254,16.969007,36.92951,4.354 227,306.21652,235.95438,18.377167,33.180664,4.351 227,396.15677,-13.59663,32.523285,63.771503,4.338 227,594.34705,-41.999317,44.63617,93.519226,4.298 227,292.80707,211.83043,25.62976,58.17311,4.257 228,495.07916,231.41449,36.889038,96.64392,44.289 228,446.08395,130.33554,29.736115,60.37796,8.545 228,484.70792,13.380108,31.202728,100.84982,8.39 228,-5.6079907,-17.394596,17.222172,41.501717,7.926 228,621.1295,474.00977,29.29419,69.77203,7.675 228,489.06183,85.868484,30.46875,107.33157,7.675 228,337.72345,224.77603,18.37735,36.593353,7.419 228,47.32719,214.41342,37.66656,69.98163,7.01 228,-6.3453555,490.10736,18.815376,41.876953,6.536 228,34.481827,225.88152,41.644173,76.57698,6.183 228,480.81354,89.79981,46.762085,171.89093,6.035 228,-11.043134,-32.347218,29.26144,70.606476,6.033 228,331.3577,230.82722,19.52774,41.334732,5.971 228,34.918484,191.23099,20.538776,48.724945,5.831 228,627.22925,-17.199188,17.21045,45.065037,5.79 228,36.59063,196.48854,31.60418,79.98924,5.752 228,13.934264,212.63806,56.09749,108.3504,5.672 228,-11.640376,480.2418,29.331833,61.528473,5.629 228,603.7208,429.31036,55.3938,145.17462,5.522 228,42.20592,195.8235,19.959599,49.270706,5.46 228,315.58463,222.62262,18.373077,40.770233,5.402 228,617.5833,485.20718,21.923462,47.824493,5.386 228,66.87855,214.159,41.013794,77.854706,5.348 228,622.7279,-33.857033,27.068237,74.889694,5.325 228,-17.746841,-64.05027,56.145718,143.53127,5.26 228,106.195076,241.58432,18.806366,30.542786,5.202 228,602.7363,-56.152763,53.34778,132.74408,5.149 228,-73.26265,266.11603,201.66232,462.77692,5.127 228,536.7073,310.94778,142.78033,339.96774,5.121 228,-15.3104725,217.52768,49.28566,133.7402,5.011 228,91.19855,251.15723,34.855873,60.6864,4.923 228,403.7912,65.71201,28.384705,77.33889,4.854 228,-22.02259,402.16098,79.49677,174.60349,4.816 228,21.074324,193.85469,39.163483,92.809616,4.779 228,1.1507773,225.47353,50.54025,112.833786,4.766 228,489.80798,-179.10988,236.07635,423.92776,4.757 228,79.90279,248.69182,23.259659,37.53029,4.712 228,452.761,242.1897,41.405823,79.62622,4.703 228,502.65903,211.84557,32.08615,86.371414,4.686 228,493.78717,229.60762,237.59314,510.9461,4.639 228,470.27637,239.47311,39.76541,83.59204,4.601 228,451.80383,213.88744,30.562927,63.803543,4.589 228,322.88556,205.71078,41.760406,67.72266,4.552 228,514.9901,214.79526,31.117737,75.478546,4.551 228,23.68179,189.42186,25.385014,65.68678,4.54 228,73.27309,245.77266,35.175873,58.595993,4.54 228,322.27234,231.27153,19.928436,39.96028,4.52 228,-7.1094236,187.94354,36.54462,99.2439,4.444 228,504.34705,209.93073,50.561584,128.41467,4.426 228,45.981987,184.93106,27.153702,58.937836,4.424 228,89.573204,236.63884,21.150291,33.63771,4.398 228,372.01532,224.74332,31.6792,67.36304,4.381 228,476.77313,0.020500183,54.091736,130.04358,4.379 228,536.00226,308.9943,25.542786,45.9606,4.374 228,585.6573,-102.21918,75.61786,235.70985,4.351 228,108.33914,194.70226,30.673721,65.06746,4.346 228,-5.396243,184.03394,18.974907,46.992477,4.335 229,464.52228,66.399666,31.648438,103.84197,10.281 229,459.30878,82.177055,47.57019,164.67758,9.061 229,345.05548,206.59471,23.506989,43.2735,8.115 229,-6.1208353,-17.439892,18.241617,42.415718,8.014 229,82.16507,196.32027,35.39987,77.104294,7.656 229,454.28177,2.5241432,35.960175,92.08327,7.525 229,626.97894,487.32947,20.233276,47.020935,7.351 229,319.3901,190.20651,22.080688,50.920517,6.597 229,-10.999078,-32.223694,29.580387,71.541916,6.536 229,373.30963,176.37596,29.22696,74.79707,6.395 229,-17.757471,-64.36058,56.682213,141.80466,6.359 229,349.13242,174.41571,29.88382,67.31946,6.311 229,-9.724769,463.2835,38.68623,92.901,6.261 229,-6.6909766,488.8583,19.210897,43.41812,6.034 229,612.58325,453.9842,39.805542,109.052124,6.009 229,211.19789,210.28096,31.897797,62.341263,5.922 229,363.04437,171.0021,30.761597,69.6351,5.526 229,-73.45505,264.8319,202.27686,463.495,5.311 229,96.53682,115.85458,33.267715,73.96057,5.121 229,627.3595,-17.581253,16.949524,45.929966,5.117 229,374.0097,100.23004,30.639496,96.51514,5.065 229,585.57263,-99.18858,75.621826,231.0727,5.027 229,489.50623,-179.21074,235.8393,427.63968,5.013 229,2.7147877,-16.77259,17.136034,40.636642,4.988 229,153.87238,178.12039,60.594635,103.58389,4.959 229,452.7555,-30.779495,29.735046,78.27911,4.933 229,611.00214,-47.604412,41.931458,101.124954,4.884 229,286.1811,194.83896,27.902344,58.258484,4.842 229,334.4653,202.25082,29.78302,63.27127,4.833 229,-22.011845,401.64813,79.452126,175.57855,4.783 229,537.051,311.04767,142.68652,341.04462,4.745 229,582.91345,411.3751,71.7926,176.96445,4.736 229,509.36462,57.584995,29.606445,73.83908,4.73 229,-37.33236,-129.38959,117.403885,281.80008,4.711 229,379.87415,208.88205,31.715057,67.082275,4.708 229,96.42822,196.44012,33.142,70.71924,4.646 229,368.5594,0.39880753,32.23816,79.21701,4.635 229,464.12744,-18.047297,20.010498,45.659256,4.633 229,335.66165,179.42462,27.656555,63.249313,4.615 229,11.926966,-39.071655,56.76908,128.12663,4.559 229,184.48367,231.21161,23.333649,33.62561,4.531 229,-9.745565,-8.679497,40.46591,99.46321,4.528 229,493.7738,227.80072,237.35382,516.0473,4.486 229,-6.2775564,-0.24798203,19.399273,43.33651,4.479 229,19.267265,165.98961,29.075588,55.771103,4.417 229,2.051487,-40.91055,43.792614,94.23236,4.394 229,27.369633,-60.542946,56.605297,129.29565,4.377 229,-71.12552,-189.16205,213.13742,455.56195,4.364 229,58.176292,211.6324,58.725143,102.89665,4.351 229,60.073242,-61.30023,56.019936,129.7658,4.258 229,12.355854,138.32141,53.38927,119.79474,4.226 229,110.438,113.20016,25.124298,55.88691,4.219 229,377.21613,200.8284,21.825623,42.47754,4.093 229,449.89532,19.828903,53.229706,154.02185,4.086 229,307.47833,185.2227,40.016632,72.45204,4.063 230,48.049973,240.25238,42.0699,82.09784,20.088 230,376.84106,248.90764,23.302643,45.790085,16.465 230,373.40665,217.57065,32.6781,73.63135,11.037 230,414.2883,0.037433624,32.81311,80.46979,9.877 230,0.036780834,176.80438,32.46079,83.606476,8.62 230,-6.585244,489.56348,19.493088,43.17737,7.712 230,-5.7653465,-17.907091,18.136686,42.79464,7.384 230,-12.026878,478.58755,30.646183,63.979095,7.37 230,625.6304,489.1139,22.047302,43.763428,7.311 230,427.14236,83.3721,30.85614,83.930786,7.091 230,-11.034697,-31.373251,29.709711,72.0074,6.901 230,617.5083,490.051,21.56543,41.64981,6.594 230,443.77286,230.63622,30.841248,93.24721,6.424 230,327.58762,223.59134,26.590485,59.10501,5.953 230,356.98492,250.12659,33.000732,69.91907,5.848 230,617.28815,203.45082,22.324219,49.302414,5.705 230,36.338333,243.32857,36.5915,77.376755,5.638 230,-17.419708,-64.30489,56.303913,143.86105,5.56 230,602.54694,-56.074448,53.646973,132.3843,5.49 230,613.11,453.20667,39.458496,109.82892,5.395 230,-18.151224,436.96826,55.927353,137.53308,5.32 230,585.99945,-98.2062,74.60388,229.48624,5.244 230,622.3386,-34.194614,27.063782,76.60562,5.239 230,490.04242,-182.25534,235.32892,429.32587,5.215 230,-73.66878,264.59296,202.7654,462.92523,5.177 230,471.87527,143.94572,22.80304,53.158554,5.14 230,626.73413,-19.14595,17.6958,47.44692,5.107 230,-5.9253955,31.096615,18.577875,44.63309,4.942 230,-37.187828,-127.96296,117.63274,276.87823,4.831 230,-5.953541,2.4262848,18.792795,42.115623,4.788 230,583.1192,409.6895,71.99603,177.47235,4.779 230,513.2019,-7.0931664,46.002502,87.34961,4.728 230,536.8473,311.67688,142.44379,339.89197,4.727 230,-39.994884,366.14624,110.709595,275.21106,4.63 230,461.50586,138.76158,29.405762,72.37033,4.618 230,520.8354,-33.708305,60.586243,123.207985,4.616 230,153.59999,257.6163,36.156036,50.577393,4.592 230,538.0857,-6.065752,22.05304,41.98741,4.537 230,64.93866,253.88728,31.406845,63.314102,4.494 230,493.3615,227.80856,237.72162,514.38525,4.476 230,170.87297,227.38304,58.952225,102.01424,4.44 230,-5.80745,107.117645,18.129875,41.834473,4.432 230,-9.712639,-7.773033,40.65158,99.52601,4.385 230,413.28027,-31.914879,29.62851,85.044136,4.32 230,582.296,191.72284,38.657227,107.30594,4.314 230,74.079956,224.46356,56.88806,108.99225,4.256 230,2.390604,-27.56607,49.80739,133.2997,4.25 231,410.6718,247.53755,29.691803,62.40123,40.812 231,518.33936,-10.841705,95.290344,345.6619,11.18 231,382.09863,239.29324,32.31604,67.6958,8.201 231,-5.1082745,-14.409426,17.432507,40.019726,7.727 231,625.8937,487.07175,21.576538,45.95926,6.959 231,524.6305,1.4067764,56.57361,167.95248,6.861 231,-2.4398506,267.66614,29.55743,71.16232,6.823 231,362.07886,197.33183,33.408813,73.05028,6.744 231,617.26025,487.64044,22.19397,44.83496,6.685 231,488.82816,-184.92853,235.97897,431.32922,6.444 231,-10.565214,-30.767086,29.595465,74.34834,6.259 231,613.2062,453.43823,39.860535,109.02887,5.994 231,610.27124,-46.795467,42.15277,100.29195,5.966 231,339.85785,217.41504,30.075348,66.78113,5.872 231,-12.444705,477.5298,30.05537,63.44995,5.532 231,456.2547,260.30786,20.465424,39.43567,5.507 231,-17.319386,-62.5118,56.21954,142.42093,5.4 231,2.968721,-11.2802305,16.709879,36.554127,5.298 231,476.90997,65.76628,31.120117,87.88786,5.296 231,404.94836,222.75095,31.746887,72.01453,5.25 231,408.3701,270.31055,35.604492,72.91101,5.241 231,-73.79319,265.38995,202.55176,462.7113,5.169 231,378.20892,201.17831,35.133057,78.51709,5.127 231,-6.077537,489.10452,18.59568,42.602203,5.125 231,386.99033,254.04416,32.437225,78.130066,5.103 231,536.4152,309.08545,142.96637,341.6908,5.019 231,348.72913,196.18889,33.034454,65.60957,4.962 231,-21.91465,402.58414,79.59994,174.79996,4.92 231,489.1859,64.32912,33.282593,82.60791,4.865 231,534.97565,-4.4972725,35.523804,77.081635,4.854 231,460.7871,71.16005,31.543213,84.545944,4.853 231,445.50067,243.61511,29.151978,60.603027,4.773 231,583.08813,411.1927,71.78137,176.65729,4.737 231,450.91458,266.4948,18.804626,33.952057,4.679 231,626.9552,-18.622578,17.395386,46.685173,4.672 231,362.17084,172.10974,57.907654,118.95819,4.631 231,546.90137,225.2447,52.796265,158.63072,4.62 231,154.70226,287.9331,35.570038,65.41171,4.583 231,574.6752,-11.631737,52.668335,120.43981,4.534 231,-1.8846881,-13.075098,28.74562,66.41648,4.485 231,494.68335,229.0028,236.75024,512.20337,4.468 231,476.9136,32.87995,54.334198,130.7262,4.453 231,-10.657186,251.81499,30.804531,73.36299,4.431 231,-37.27565,-126.48118,118.30347,272.0969,4.416 231,368.59448,232.48018,24.541046,48.686935,4.315 231,354.78064,219.73036,33.426605,64.93837,4.199 231,597.0783,-19.860931,40.531006,92.25818,4.19 231,598.34766,224.5123,38.71515,110.976135,4.18 231,418.2944,178.7317,33.52533,75.82849,4.18 231,425.73514,247.09502,32.05536,57.88649,4.165 232,473.69055,246.29614,32.4899,80.10657,94.598 232,436.2404,239.6579,34.54254,85.45923,44.551 232,626.45715,487.5302,20.926025,46.172363,6.699 232,-5.9762244,489.08862,18.133589,42.906555,6.699 232,-5.9966955,-18.832575,18.254452,44.137566,6.509 232,612.96234,453.24164,40.405518,110.07489,6.47 232,-17.616638,-64.52032,55.644028,143.07329,6.312 232,463.51965,242.1201,31.167725,76.01051,5.989 232,426.59897,201.18996,54.011536,122.94432,5.948 232,618.2064,487.6593,21.078918,44.617065,5.946 232,-12.087823,478.74365,30.185707,62.53589,5.911 232,173.52939,128.6657,32.13977,74.89879,5.667 232,411.0061,226.08157,32.95514,62.14801,5.537 232,557.9176,104.52974,30.29425,70.59831,5.525 232,186.52744,139.27834,30.568481,72.65903,5.512 232,458.09982,219.64726,55.991486,106.782364,5.509 232,427.74866,62.218956,32.893707,75.906746,5.449 232,307.8285,66.3616,29.544434,70.65341,5.375 232,-11.501956,-31.92147,29.937443,71.70464,5.3 232,362.29083,212.34218,32.85437,65.58519,5.291 232,-73.89534,265.14258,203.04993,462.90253,5.289 232,622.89966,-34.545174,26.524231,76.4786,5.259 232,434.57306,127.785736,32.503937,92.78,5.214 232,585.29144,-96.85313,75.659424,228.40009,5.168 232,627.3631,-18.559994,17.364014,46.127884,5.127 232,496.2409,255.13196,41.96765,88.44208,5.058 232,250.77072,258.6105,18.168854,35.78891,5.039 232,536.5989,311.95166,142.95306,338.67456,5.031 232,9.334741,240.67188,31.440102,69.25275,5.014 232,602.9592,-56.723312,53.261475,138.30934,4.998 232,1.30602,239.80142,26.269888,73.76477,4.991 232,128.01176,239.31435,47.517273,77.17723,4.989 232,266.8767,257.66638,16.360504,34.48468,4.887 232,489.2772,-178.62685,236.04416,425.4435,4.881 232,-21.896439,401.9057,79.697105,175.29059,4.824 232,-40.681313,362.9522,111.840614,279.4583,4.809 232,-14.749083,216.0879,49.195564,135.62218,4.743 232,583.2246,411.2159,72.070496,176.7468,4.721 232,494.2786,230.21619,237.14279,509.73273,4.667 232,11.049876,222.83377,56.97376,109.59195,4.654 232,66.40176,237.41492,43.09391,79.72949,4.63 232,386.55493,171.2178,32.465576,83.82851,4.61 232,-72.01272,-189.88376,213.73645,457.1594,4.605 232,546.844,374.83212,31.488892,71.34497,4.582 232,35.403027,237.32831,42.552082,80.2926,4.502 232,145.03722,223.83804,46.16255,78.80112,4.473 232,-10.094924,-9.186359,40.26444,102.99678,4.431 232,394.1532,-30.670012,60.236176,124.787506,4.416 232,442.1115,267.58752,33.519226,71.25653,4.404 232,43.303284,221.52287,58.81189,108.51128,4.397 232,545.5502,487.7572,21.098022,43.58838,4.395 232,-36.82904,-130.80363,117.02319,279.4838,4.385 232,455.38773,238.2879,23.727203,55.81665,4.382 232,-5.8028865,258.22137,18.60648,47.27185,4.379 232,195.64972,244.83435,33.886322,58.352234,4.379 232,96.46422,239.60942,45.92894,77.69734,4.344 232,456.51596,155.15219,32.74005,84.27699,4.325 232,153.69002,204.71393,59.200897,108.4137,4.313 232,466.71466,145.18237,31.548737,72.97374,4.282 233,-5.884328,-17.248623,18.012905,41.822334,6.946 233,-12.047009,478.22302,29.625458,64.30066,6.885 233,626.0732,486.9323,21.18695,45.92749,6.86 233,388.12006,211.00208,31.573883,85.03702,6.834 233,210.23567,92.75824,32.75972,78.736084,6.708 233,-5.943307,489.18393,18.06435,41.852386,6.417 233,613.2234,451.62262,38.817017,110.98773,6.327 233,363.8956,-0.6080437,31.957123,67.77568,6.103 233,602.31757,-53.425728,53.7713,134.54114,6.044 233,622.3475,-33.547073,27.565308,75.172714,6.044 233,181.1155,81.2059,32.362366,67.21278,6.041 233,371.58838,39.22525,30.417572,76.68648,6.036 233,488.92426,222.16374,22.610352,43.213577,5.784 233,-12.204325,-40.103848,41.586563,98.98393,5.709 233,614.43896,223.69975,25.220093,93.09001,5.676 233,196.63394,85.697266,34.419144,76.87781,5.657 233,59.93522,205.02766,56.590446,106.818344,5.596 233,534.76917,2.0610104,25.774658,57.599953,5.564 233,-73.77328,263.70465,202.71301,464.5005,5.466 233,618.12354,488.6527,21.047546,43.454834,5.328 233,488.98065,-180.91544,236.53009,430.8942,5.259 233,473.3855,202.12572,33.785217,68.10448,5.233 233,363.39343,-9.11264,55.013184,111.85757,5.211 233,585.3536,-98.9067,74.900635,233.11234,5.188 233,292.82,122.408615,40.31183,88.49361,5.052 233,626.8075,-18.63082,17.984009,47.084965,5.035 233,585.9027,91.19033,59.379944,230.66586,5.013 233,-20.1058,-87.48284,72.095215,196.70699,4.993 233,536.37384,310.232,143.0733,341.41486,4.977 233,377.16278,-1.0712986,33.760376,64.34856,4.905 233,277.18945,121.65959,38.756653,90.875656,4.898 233,-0.23406982,221.68604,27.992855,81.88068,4.898 233,11.918669,203.0216,54.65518,114.984436,4.894 233,429.68503,196.48767,27.148926,74.8302,4.868 233,-22.355688,401.0539,79.74137,176.4002,4.83 233,-71.87834,-190.01335,213.42738,457.41058,4.828 233,11.113251,-15.92548,59.811905,120.83333,4.808 233,538.6206,-10.774345,55.973877,113.87067,4.793 233,91.6738,204.58647,58.382446,108.76112,4.787 233,582.6813,411.18845,72.131714,176.95413,4.763 233,588.1968,0.35588837,30.425781,61.113262,4.759 233,570.9413,67.661285,22.034912,50.705276,4.745 233,403.4535,101.24242,31.101868,86.40993,4.743 233,307.6637,119.587814,40.03479,89.62874,4.701 233,-36.662357,-130.1672,117.09616,278.17038,4.656 233,546.5347,0.13394356,31.687378,59.94165,4.617 233,564.37506,117.897644,32.29669,83.770874,4.589 233,493.783,228.37628,238.17587,513.6728,4.523 233,536.4269,119.98035,59.687744,147.7717,4.518 233,191.17441,53.292545,53.418976,120.74289,4.513 233,128.15164,-7.8538284,47.22583,89.80076,4.507 233,2.480474,-15.70792,17.335857,39.621403,4.491 233,224.0341,111.781136,35.909195,74.34472,4.488 233,153.74225,199.9633,59.78322,113.33693,4.487 233,80.61337,229.20627,46.22741,84.5047,4.47 233,370.50677,184.37747,53.186096,123.28064,4.45 233,24.090368,241.8508,36.756226,69.00885,4.418 233,4.3274918,220.62904,39.651306,104.70744,4.369 233,33.05622,217.72954,44.280052,84.81612,4.367 233,573.4043,-7.00811,54.534058,143.51044,4.334 233,374.58328,209.05486,32.97101,76.07747,4.286 233,213.94257,82.49542,24.829575,49.318085,4.277 233,589.07336,-30.498337,52.401245,138.74905,4.276 233,466.8544,161.33647,31.75357,84.08748,4.27 233,381.30597,115.72158,30.743225,79.015785,4.266 233,394.67667,-28.341713,58.614014,127.390785,4.265 233,515.15393,-15.51412,34.009155,67.80981,4.26 233,542.0269,192.87491,37.941895,66.89108,4.251 233,154.00499,-16.91053,59.552002,120.36526,4.235 233,128.16985,207.04997,45.64052,77.85988,4.226 234,546.25,138.74188,32.82007,80.451035,8.414 234,259.37616,29.357449,32.740845,81.31714,7.663 234,76.37237,16.35651,30.188087,93.41962,7.549 234,-5.784708,-17.87508,18.00636,43.252197,6.794 234,564.0642,33.222057,30.506409,94.262405,6.446 234,209.8772,223.40457,23.314621,36.24173,6.177 234,626.6682,488.45532,20.689636,45.52356,6.059 234,-12.116337,-39.934727,41.62784,99.90114,5.783 234,602.5994,-55.432007,53.310852,139.41808,5.756 234,-6.24228,489.55197,18.85419,42.707916,5.715 234,-12.216181,477.78302,30.30362,63.427246,5.637 234,626.8879,-18.824272,17.68805,48.0204,5.619 234,299.4041,132.72426,28.264679,77.28923,5.594 234,622.41174,-34.083786,26.901306,76.83793,5.532 234,589.23694,-30.61576,51.393616,149.43408,5.512 234,612.92676,456.13892,39.504883,105.612915,5.45 234,216.25613,209.08755,20.859665,41.54834,5.355 234,414.09042,-11.661587,53.9682,116.798096,5.303 234,585.13934,-98.22769,75.2959,233.4845,5.231 234,488.5727,-179.28406,236.75189,427.16238,5.21 234,-73.11478,265.6485,201.06381,462.3365,5.174 234,-20.151102,-87.6392,72.26154,196.99643,5.16 234,612.97766,-19.558264,29.016907,77.12497,5.093 234,542.9774,-14.288937,54.788208,126.04651,5.07 234,-39.89265,364.18857,110.19151,277.57156,4.988 234,551.6216,-3.6757088,28.70929,65.228355,4.966 234,-6.360635,219.09766,18.907846,38.730164,4.965 234,582.9229,412.60742,71.8017,175.91486,4.916 234,267.79395,17.440037,30.10727,71.35695,4.909 234,523.18335,-33.358505,57.72223,127.75633,4.835 234,549.8583,183.18227,37.256226,91.65221,4.821 234,-71.76237,-190.12407,213.17725,457.5036,4.819 234,307.90244,192.7782,29.352661,74.34311,4.817 234,558.8163,140.85312,35.431885,73.934906,4.8 234,536.7006,310.92883,142.73816,340.4546,4.779 234,0.6539893,226.67421,23.805323,46.794113,4.757 234,573.00525,-5.67424,30.501404,80.837425,4.754 234,-35.982162,-130.09056,116.82175,277.37155,4.75 234,388.07007,89.97423,40.231506,89.137985,4.704 234,23.41573,78.50975,34.692924,76.122665,4.699 234,-1.1605752,62.058144,27.111341,78.25237,4.694 234,10.03161,-17.707005,59.11715,119.682526,4.643 234,549.9871,42.31323,29.398376,91.48294,4.616 234,458.24802,-32.171196,59.30545,121.12971,4.6 234,372.97107,89.66959,39.03482,89.88323,4.525 234,490.87958,-34.431885,58.3974,122.931564,4.471 234,538.4796,146.02872,55.185425,164.63928,4.469 234,494.1837,229.19623,237.33426,512.28217,4.45 234,-17.36748,435.60535,55.276802,139.2428,4.41 234,451.0928,222.91261,20.11319,41.860275,4.326 234,588.3661,-14.984331,31.079956,76.17398,4.321 234,82.26277,77.66316,32.239723,88.92204,4.305 234,476.0052,-4.224945,57.26715,136.81113,4.281 234,403.66046,88.72119,40.390564,88.92651,4.246 234,437.70676,183.24686,30.929993,70.03949,4.24 234,212.99797,183.22566,29.655075,63.033264,4.239 234,450.0441,194.2346,22.402649,51.471756,4.228 234,2.7129614,-16.491657,16.745188,40.468754,4.179 234,219.39868,-13.910618,59.215942,115.91469,4.167 234,299.33017,64.382774,32.94461,69.67823,4.154 234,547.19507,99.4293,32.941162,92.01595,4.126 234,228.01028,70.70216,32.38498,74.43527,4.121 234,-5.601367,2.0225353,17.925797,43.343422,4.105 234,232.43982,225.68207,22.661499,35.57614,4.096 234,265.23724,-28.29924,61.06189,125.87074,4.063 234,617.1072,138.87875,23.31018,59.718582,4.055 234,449.35254,-2.415268,45.023834,86.3261,4.034 234,507.0287,-58.93626,57.57556,129.16399,4.005 234,286.5324,178.65971,30.121704,70.33409,3.995 235,595.6577,36.113403,32.152344,81.27969,12.902 235,338.82397,225.5414,19.968506,39.331192,9.611 235,468.4419,104.513374,31.237915,95.10482,8.982 235,-5.7020783,-16.43353,17.745485,43.244236,7.85 235,176.57071,-3.9396172,35.03041,75.391266,7.72 235,-10.5286455,-31.829893,29.23468,74.472336,6.829 235,590.34155,0.9520416,33.939636,78.75842,6.427 235,606.05273,149.79173,26.90979,78.86662,6.32 235,428.33286,187.32335,29.64505,68.49431,6.196 235,623.37836,-33.87482,26.750122,74.28414,6.135 235,44.873753,217.64436,30.904026,62.20009,6.117 235,9.988049,-25.846973,59.481373,124.5518,6.057 235,-17.797905,-62.72204,56.407646,142.6061,5.898 235,-8.865252,465.62604,37.84197,90.795166,5.706 235,627.3496,-18.128593,17.261597,46.336052,5.619 235,621.7086,477.21436,28.920715,67.295044,5.597 235,-6.299143,489.04077,18.813087,42.922607,5.51 235,602.5176,-53.24434,53.190125,133.87505,5.495 235,618.93317,278.1582,19.685974,51.29236,5.344 235,584.8433,-98.91546,75.97833,232.17365,5.335 235,-5.447913,1.7491817,18.590252,44.441658,5.303 235,185.64943,42.57758,32.882965,90.18222,5.266 235,362.2197,229.85707,18.632812,38.010696,5.157 235,605.76544,60.631397,24.941406,57.85365,5.108 235,-74.00603,264.72626,202.20013,463.12946,5.099 235,404.07947,181.88333,31.021057,68.110504,5.0 235,488.81665,-180.27551,236.64648,428.1024,4.967 235,299.02032,274.53174,19.08783,25.699127,4.948 235,582.8316,412.23654,71.99597,176.2803,4.897 235,-71.76877,-189.76111,212.69916,457.65057,4.895 235,536.5589,310.7259,143.08392,340.3039,4.833 235,-21.819653,402.2479,79.52099,175.42484,4.821 235,-36.385483,-130.47507,117.3342,278.27667,4.819 235,618.45374,145.19601,20.475647,63.929672,4.789 235,-1.4290118,-15.5017185,28.309975,71.24408,4.786 235,413.59204,190.37662,30.601562,67.460144,4.732 235,440.28745,17.441296,25.013458,45.954468,4.684 235,2.5528371,-0.5669365,19.645626,38.932907,4.628 235,2.8287845,-14.6365185,16.75497,40.161816,4.592 235,362.9672,-33.98227,59.158417,124.638435,4.488 235,306.60117,274.7445,19.71814,24.486359,4.474 235,493.7987,228.48096,237.86078,512.9165,4.46 235,124.5012,118.948044,30.471016,74.939224,4.415 235,187.56279,-30.870262,30.871368,74.63234,4.408 235,-5.600561,81.77026,17.789484,42.194443,4.397 235,339.74973,209.98314,17.168762,35.667816,4.391 235,42.17445,-26.01305,60.17613,121.20691,4.342 235,404.3717,217.26927,31.32019,60.292892,4.323 235,597.3449,61.24553,39.64453,103.94025,4.288 235,290.7411,272.72928,19.919922,26.964996,4.26 235,-5.408335,218.01015,17.67535,43.312607,4.245 235,282.52225,271.40857,20.82193,27.473938,4.231 235,411.31168,-15.437122,58.001984,117.12352,4.229 235,316.40836,-3.7091637,32.106903,60.792587,4.187 235,444.64423,-12.483299,57.196106,117.15071,4.162 235,331.76025,-6.1900024,30.897644,62.619373,4.155 235,354.95468,234.75145,33.188354,52.33107,4.153 235,73.95551,-32.365726,59.736824,121.0004,4.144 235,5.891547,213.97552,30.330814,65.8949,4.142 235,3.2001781,4.714958,41.912125,99.911606,4.112 235,-13.775978,157.9188,49.698692,136.38062,4.107 235,613.0344,-19.039207,29.26233,67.78188,4.088 235,106.64082,-33.670017,59.826584,122.21701,4.087 235,428.91876,9.579086,31.612091,63.516075,4.08 235,28.143867,175.21837,56.7369,115.7603,4.065 235,283.31775,172.83545,56.752625,117.40164,4.064 235,63.813736,-2.8790627,47.047714,87.194275,4.043 235,192.7796,-16.812284,19.681915,43.773075,4.04 235,313.65186,274.55048,21.322235,24.036865,4.032 235,379.6309,28.982368,30.986023,71.89172,4.031 236,-5.6052113,-17.8047,17.841286,42.323418,8.147 236,560.5272,243.90768,22.335815,41.37201,7.593 236,377.0011,192.99142,32.617462,85.33392,7.055 236,-10.878792,-31.729362,29.371136,70.6593,6.269 236,134.52531,244.19293,28.147232,44.5177,6.225 236,567.4256,237.08435,22.886047,41.18152,6.211 236,626.64374,487.46796,20.441284,47.159607,6.096 236,622.6895,-33.67397,26.57367,74.599976,6.012 236,360.82318,2.7919464,36.313965,76.77347,5.911 236,239.4055,210.94858,26.547012,68.03519,5.834 236,627.22424,-17.712883,17.113647,45.26048,5.601 236,-8.724823,465.3727,37.809185,90.99875,5.599 236,585.7405,-98.71674,74.75281,232.22751,5.54 236,174.63426,159.46472,56.13324,124.32425,5.418 236,34.399315,121.42471,31.101143,91.30643,5.38 236,612.791,455.65457,39.466553,106.09927,5.379 236,602.611,-56.765858,53.61725,134.22095,5.348 236,-6.261563,488.6134,19.228798,42.901367,5.336 236,368.49948,-14.580582,19.6875,42.62719,5.333 236,-10.616976,114.09798,29.473536,73.00421,5.295 236,-73.422,265.07343,201.64285,462.91046,5.282 236,250.81221,111.653404,31.462051,74.06788,5.281 236,489.8744,-181.85085,235.22156,429.22177,5.25 236,187.05411,182.01376,31.861877,75.87024,5.239 236,551.6213,234.77835,28.670715,60.875977,5.186 236,582.687,413.39453,72.15881,175.07239,4.975 236,536.45435,311.56506,143.46777,339.49658,4.952 236,251.41345,-16.739601,56.276794,116.670975,4.93 236,377.47287,243.59991,35.464813,67.5918,4.924 236,364.2935,-29.813549,29.850128,74.00407,4.916 236,-21.414433,403.75912,78.8097,173.94461,4.909 236,-17.349836,-64.91417,56.122498,147.13977,4.9 236,594.2134,-44.830597,44.661194,96.17119,4.795 236,376.91095,-15.668697,19.279663,40.029926,4.791 236,-0.044505596,104.9857,27.40062,78.72575,4.771 236,532.1525,329.53378,31.56427,65.6087,4.765 236,181.57799,6.788986,29.512192,89.35152,4.693 236,589.7816,-33.393414,29.422058,66.425766,4.674 236,467.05585,228.65472,19.383392,38.41156,4.61 236,219.49037,76.93443,33.076065,71.8407,4.591 236,-6.051731,119.06883,19.724812,48.015167,4.585 236,349.77435,-3.9737968,35.98535,73.00165,4.58 236,-71.02049,-189.04216,212.50616,456.33887,4.551 236,494.03204,228.328,237.56085,513.01556,4.542 236,-6.550993,147.70512,20.181911,49.967545,4.514 236,194.96909,235.32263,34.612335,59.155212,4.496 236,559.6504,220.29256,25.155762,39.05406,4.489 236,171.32947,-24.858234,57.969604,126.965805,4.473 236,-14.715933,90.31817,48.422333,145.47626,4.45 236,619.24475,-4.6785746,19.460754,40.500275,4.443 236,-36.775288,-131.232,117.428055,284.62558,4.435 236,36.25182,153.55498,33.34483,93.47937,4.425 236,375.01874,141.48183,33.651367,83.83255,4.412 236,569.80585,253.33917,20.590576,37.632446,4.384 236,375.50858,205.88809,55.080536,113.963745,4.382 236,172.6384,86.62715,32.280884,81.15242,4.366 236,284.46112,-17.18145,56.498962,119.644455,4.35 236,251.06635,243.11789,33.220306,62.179565,4.326 236,159.31383,142.60335,53.882492,127.5172,4.313 236,426.88684,-19.163536,60.03192,116.858284,4.27 236,248.24785,221.35625,22.075699,46.51506,4.223 236,573.67065,-32.255844,29.846436,64.65777,4.199 236,324.53912,-16.313332,32.845398,65.55526,4.189 236,572.51263,203.72687,54.864746,116.59784,4.182 236,546.49646,331.78918,32.855347,70.629944,4.177 236,538.94995,213.22745,58.191833,107.34207,4.17 236,241.90485,-7.305374,43.05713,88.08253,4.166 236,175.00055,111.27621,33.48886,96.39088,4.163 236,490.4825,-37.831055,59.97763,124.803345,4.162 236,594.2905,-15.973727,18.250671,38.350906,4.127 236,457.9759,-34.230453,60.657288,123.83767,4.125 236,553.9159,228.48315,23.648804,39.885162,4.123 236,419.11145,257.38934,33.967316,62.211273,4.107 236,362.26276,97.27223,34.67975,90.1033,4.106 237,-0.88302374,230.5218,23.35308,45.11406,12.621 237,119.81698,217.89886,27.267815,44.685303,9.88 237,-5.483284,-18.148426,17.510124,43.082733,8.268 237,38.919006,207.5423,26.814293,40.51352,6.529 237,-11.06183,-32.33957,29.397842,70.97487,6.454 237,391.52466,162.7105,34.147095,82.94223,6.33 237,385.27472,163.31628,51.38681,133.14224,6.086 237,52.602634,83.15405,33.000614,65.55992,5.875 237,-17.573933,-64.908485,56.001205,144.2494,5.838 237,621.75494,477.00998,28.819946,67.6539,5.792 237,-8.653681,465.66586,37.62247,90.08017,5.767 237,610.7526,-48.667263,41.679016,102.706505,5.757 237,400.28735,210.8726,42.63275,92.94417,5.748 237,63.53557,211.65546,24.179993,38.779495,5.738 237,-0.12099028,217.72429,43.391026,76.77632,5.649 237,112.302124,212.51799,46.694153,63.85063,5.548 237,66.78684,192.7837,33.680916,59.425827,5.464 237,585.4275,-98.66423,75.37427,230.5724,5.452 237,-73.69593,264.06592,202.14087,464.14697,5.436 237,-6.374441,489.1222,19.460266,43.008118,5.413 237,383.2132,81.74328,33.11325,94.66059,5.382 237,-16.38401,158.80663,51.28415,129.47878,5.278 237,509.2783,-14.559906,54.80435,117.49565,5.27 237,627.1912,-19.26787,17.388855,48.770405,5.21 237,546.44476,92.93283,31.446838,74.941284,5.064 237,489.36517,-181.01878,236.17487,428.06393,5.028 237,429.56024,-4.5288734,30.792389,71.54393,5.021 237,203.86336,67.10986,33.377182,73.70256,4.991 237,-21.397633,403.81818,78.88394,173.92719,4.986 237,81.378525,215.12418,21.289215,32.803085,4.955 237,-5.2292986,225.453,19.506516,43.111084,4.935 237,582.75464,413.13196,71.97308,175.36584,4.909 237,536.5563,311.07318,143.2984,341.04742,4.827 237,477.28778,-17.597275,53.672363,117.22201,4.743 237,393.1743,198.90105,33.95581,79.70302,4.693 237,114.252716,169.66924,44.178345,83.73544,4.624 237,410.40753,169.12158,53.821533,132.28516,4.608 237,9.23855,191.34901,63.397606,89.963425,4.58 237,127.30287,188.14589,47.078766,75.39122,4.567 237,237.9692,73.25397,32.827347,63.299866,4.565 237,33.664497,207.48874,45.038307,65.60025,4.562 237,440.13156,54.77218,24.200104,52.45791,4.555 237,427.59567,-29.012835,56.73935,122.01716,4.529 237,493.96582,228.87079,237.65674,512.7118,4.518 237,541.5314,-14.66563,55.229126,119.79115,4.496 237,-1.8659508,161.9675,27.361423,78.71495,4.462 237,481.99512,34.041283,32.840027,72.38498,4.458 237,-70.869125,-189.75137,212.82455,456.6244,4.418 237,-37.255863,-130.50598,117.2899,281.08908,4.39 237,458.5202,-32.154297,55.96289,122.35997,4.379 237,588.655,208.39485,31.283264,68.81755,4.378 237,368.69977,151.08064,52.4115,122.609726,4.373 237,73.81102,175.985,62.585495,95.585434,4.354 237,344.64066,2.5652542,24.47113,41.475533,4.343 237,207.60576,113.6111,34.715103,82.236404,4.332 237,40.86203,86.94337,35.367096,72.77126,4.328 237,403.90857,-2.7755203,32.743652,75.68567,4.32 237,3.1533277,-17.98853,16.604355,42.304806,4.317 237,37.676247,179.02634,64.75274,90.34308,4.317 237,466.67383,114.80919,29.81305,97.496994,4.314 237,-5.7620325,244.45361,19.861652,40.5437,4.311 237,377.6842,58.396027,33.289032,82.19719,4.291 237,209.04114,147.34064,34.910583,82.08801,4.278 238,312.31943,203.33147,33.586884,74.28786,13.24 238,380.85757,16.84732,31.271973,73.15631,10.21 238,238.99231,208.52162,24.080536,45.622284,8.227 238,-10.244054,-32.821857,29.428276,73.20289,6.786 238,433.02368,58.067963,33.355957,84.88385,6.697 238,-5.7710047,-17.943665,18.436768,44.787846,6.38 238,421.47476,15.9767,31.823425,75.77952,6.229 238,-17.98653,-63.812584,56.69754,141.20775,6.081 238,103.81465,187.30028,33.350677,68.44292,6.036 238,137.80956,242.99068,34.81305,45.17067,6.025 238,-8.768348,465.60654,37.638706,90.2316,5.786 238,621.62305,476.45523,28.838623,67.89041,5.69 238,627.4572,-17.252113,16.77362,46.22789,5.592 238,-6.255646,489.15845,19.302397,42.490723,5.544 238,12.072945,-19.873405,57.24996,121.47606,5.507 238,623.27356,-33.474148,26.27118,75.78115,5.505 238,-73.71845,265.0164,202.32376,464.0765,5.499 238,127.130585,246.06317,26.629608,36.49536,5.459 238,438.9676,56.16297,23.76178,53.112328,5.384 238,152.94438,210.21664,20.98468,47.182922,5.325 238,176.2904,242.53423,22.67694,34.860947,5.281 238,172.5214,219.86891,30.813568,57.891342,5.173 238,379.41846,-2.4470062,55.672424,110.85211,5.166 238,183.10112,230.54619,23.168137,42.205795,5.159 238,602.4909,-56.9809,53.67859,138.44258,5.114 238,585.5608,-99.73015,75.65967,233.13641,5.077 238,96.64039,209.62509,45.740303,67.120636,5.018 238,262.54276,208.52632,23.931671,40.736786,5.003 238,381.80908,247.14093,32.65039,59.22278,4.998 238,135.61769,201.63072,62.707794,92.11513,4.993 238,-17.323025,437.0062,55.111534,137.90341,4.987 238,-36.5015,-128.71571,116.273895,277.30298,4.945 238,582.70483,412.61432,72.05621,175.81158,4.926 238,536.43915,311.02142,143.01428,340.02997,4.915 238,390.6408,6.7980328,24.76709,56.876404,4.85 238,131.89246,223.6211,33.44423,58.90216,4.83 238,169.58212,201.29828,60.597687,92.57428,4.776 238,-40.182785,367.8742,110.5384,275.08948,4.774 238,1.265024,-0.14772415,21.267582,45.89826,4.761 238,155.91647,198.72925,29.247864,67.32733,4.76 238,105.49097,175.01837,58.40361,106.88843,4.737 238,490.36377,-179.29288,235.10162,425.67807,4.722 238,185.7905,98.56654,32.77379,71.64653,4.722 238,350.34326,-8.646275,54.325897,115.29013,4.715 238,150.98238,253.26016,24.803482,32.394165,4.695 238,-70.654945,-188.64348,212.01312,456.77625,4.666 238,431.78143,5.2174416,23.582153,44.52419,4.631 238,236.39357,52.616516,31.819595,62.380417,4.614 238,347.04413,197.80768,29.695404,66.14288,4.568 238,441.0776,6.987549,21.751404,40.354424,4.488 238,272.96887,208.7594,22.188354,42.795563,4.459 238,493.609,228.61993,238.25043,513.59766,4.44 238,392.80673,17.78378,30.713104,69.03465,4.433 238,131.10765,186.28348,42.59404,80.94937,4.411 238,336.41028,212.84154,23.486511,49.59047,4.39 238,-16.189463,153.6477,51.049835,134.10663,4.385 238,392.99146,272.3166,23.79834,33.20929,4.382 238,176.15294,238.44235,46.633835,84.56564,4.377 239,-6.0795364,-17.64448,18.706642,43.36248,7.265 239,291.75922,207.81624,32.55136,74.17125,7.006 239,287.49426,217.27863,24.129395,50.270905,6.821 239,-11.044201,-31.717098,30.057226,73.30084,6.515 239,428.55884,223.06673,27.491943,51.216537,6.234 239,348.3916,193.54514,28.681,62.434525,6.142 239,-5.8999515,170.89767,18.375319,44.983047,6.119 239,-5.21586,192.69447,18.163376,46.05542,6.063 239,0.82333326,193.52934,25.819408,72.93996,6.005 239,351.29358,196.50601,50.912994,105.82321,5.853 239,621.79767,475.80707,28.772156,68.76367,5.813 239,307.60587,200.73975,40.774536,79.13336,5.813 239,6.8353963,171.88513,28.371498,76.77559,5.708 239,-8.633851,465.60556,37.644756,91.03061,5.648 239,575.82043,254.75386,28.997375,74.99663,5.607 239,-14.93788,173.11365,49.203186,129.98077,5.585 239,122.284996,224.69092,36.25097,54.734406,5.549 239,3.143338,222.78168,39.32344,91.392334,5.539 239,580.7512,210.91241,33.651306,83.37799,5.518 239,-6.1567507,155.579,18.218075,41.133987,5.504 239,232.64285,249.99123,24.18576,37.203995,5.491 239,-10.115107,194.00769,27.913418,67.536194,5.488 239,-73.95894,263.74713,202.22047,464.64923,5.448 239,622.68915,-32.91797,27.155945,75.93364,5.319 239,-6.4013267,489.55182,19.357304,42.177795,5.299 239,371.30402,220.2423,41.10327,76.97862,5.276 239,50.944347,235.36511,34.105503,57.17914,5.259 239,627.0327,-18.78887,17.729187,48.358692,5.256 239,281.65057,217.95316,58.333588,105.882935,5.255 239,339.02612,215.72208,42.574463,84.252655,5.208 239,10.443387,183.639,56.31699,107.69296,5.191 239,17.588623,233.42824,34.509747,57.002304,5.19 239,275.69543,216.71611,31.12561,67.94765,5.184 239,490.57083,-184.33243,234.90903,430.6001,5.173 239,311.6308,228.39545,61.75641,111.842285,5.158 239,512.37476,231.00641,43.689148,72.27283,5.124 239,-71.18161,-188.99829,212.73781,456.80142,5.06 239,-17.441252,-64.2395,57.027054,143.3949,5.023 239,527.86334,234.8395,44.341614,72.49754,4.943 239,536.2122,310.30493,144.33148,340.9784,4.943 239,582.7005,412.63226,72.03247,175.87738,4.933 239,83.65494,204.23515,41.13147,75.80278,4.931 239,573.6504,227.94711,52.230957,121.25757,4.91 239,317.9803,188.65028,52.68994,107.297775,4.907 239,481.56165,324.9752,35.789673,59.9765,4.889 239,10.642183,-29.266064,59.22969,124.79077,4.887 239,-17.362507,436.99652,55.377228,137.7492,4.858 239,90.631744,240.6814,34.794594,54.282715,4.848 239,-1.7114663,319.65564,28.196548,84.927216,4.82 239,-16.481188,109.783165,53.516975,140.2402,4.811 239,585.84875,-101.58507,74.7395,238.73375,4.796 239,-37.099945,-128.63492,116.5878,280.82965,4.794 239,-39.801464,366.52252,110.12631,276.44354,4.763 239,602.87067,-56.431137,53.305115,137.43822,4.742 239,261.99002,222.41718,30.588654,63.34912,4.73 239,496.93414,328.7613,36.51471,55.148468,4.708 239,442.7742,218.31656,34.18811,61.89673,4.69 239,377.96902,490.79675,20.498352,40.10486,4.677 239,386.24387,230.57178,43.384613,77.055115,4.661 239,27.646317,199.47604,56.017334,100.29584,4.645 239,226.45035,219.79489,34.26352,62.82657,4.645 239,-10.908808,160.1064,28.3973,70.8177,4.639 239,494.58856,228.8539,237.21918,511.42242,4.625 239,316.51578,187.5113,28.379272,64.9203,4.616 239,526.58374,230.62419,26.942993,52.941483,4.592 239,285.0968,235.72342,32.651306,72.50311,4.531 239,571.7292,118.647736,32.43451,103.273224,4.493 239,34.446583,234.92401,35.262707,55.21118,4.48 239,113.017006,240.24706,37.881798,53.637222,4.474 240,553.00854,178.868,35.92108,76.94185,8.441 240,533.2115,194.74756,28.368103,70.72464,8.183 240,168.967,244.22473,36.90512,61.616455,7.207 240,559.02795,173.5814,25.141113,51.69261,6.942 240,-5.642761,-17.104284,17.918228,43.53868,6.873 240,539.7612,189.62369,56.360107,112.07651,6.831 240,282.3572,251.56685,34.849,56.015823,6.587 240,125.472946,182.40851,29.593307,64.44655,6.198 240,-5.8240724,233.16226,18.859299,43.915863,5.96 240,621.9441,475.34268,28.429443,68.793,5.899 240,-12.607607,-39.673637,41.96929,98.73858,5.866 240,-6.1410084,489.81546,19.151035,41.470978,5.805 240,155.00745,248.68582,36.85634,55.223694,5.709 240,141.14122,185.62292,28.227188,69.2986,5.617 240,-12.021874,480.8092,29.89389,59.44165,5.597 240,42.017967,246.46085,36.49855,51.03656,5.462 240,214.16206,217.64061,29.482162,64.85823,5.372 240,-73.518936,265.78973,202.04106,463.07672,5.354 240,500.94684,30.66858,30.114624,86.7513,5.322 240,59.40937,243.76572,36.419716,52.767883,5.249 240,509.2553,199.75226,55.480774,105.660706,5.237 240,610.62445,-47.884266,41.64557,100.682594,5.233 240,228.26016,215.56375,40.10446,75.85721,5.231 240,546.42377,194.77394,32.386658,77.92735,5.211 240,486.82904,210.30377,34.019897,72.83246,5.183 240,431.3202,223.6898,46.141296,72.9344,5.167 240,-20.076086,-87.99638,72.04187,197.70583,5.132 240,626.9628,-19.113792,17.660645,47.48029,5.11 240,473.8243,219.37778,59.354218,108.97235,5.017 240,490.5397,-183.24771,234.98856,426.80646,5.016 240,72.45316,176.52791,61.495018,107.39488,4.991 240,0.7376504,235.91707,21.445154,47.78624,4.959 240,536.0847,309.6256,144.40039,342.69568,4.955 240,-70.73346,-188.57971,212.27838,456.29752,4.925 240,409.8833,191.84772,59.256653,98.576935,4.923 240,297.131,255.45866,35.829468,60.17241,4.9 240,202.88586,247.2419,34.738953,57.78871,4.877 240,-36.526085,-129.43524,116.6871,278.80402,4.874 240,73.394775,251.88437,34.65277,54.652466,4.867 240,-9.214927,465.0353,38.20902,91.11087,4.847 240,18.337639,-0.31533432,33.368073,66.8302,4.846 240,555.4967,206.78804,56.969482,109.3412,4.842 240,57.69289,204.11607,58.471905,100.7339,4.808 240,-40.099087,365.47687,110.431366,277.29633,4.806 240,225.73795,246.48418,44.5701,75.93938,4.775 240,565.1413,187.97943,39.39441,91.55383,4.77 240,139.25928,199.86182,57.32132,103.21805,4.752 240,604.1563,431.35944,54.77948,142.35315,4.748 240,90.77286,193.09955,32.04751,70.834045,4.735 240,494.16074,229.19656,236.99802,512.3041,4.734 240,278.27234,268.2214,26.241974,37.455963,4.73 240,529.19183,225.95177,43.905945,75.13463,4.666 240,176.44406,241.23637,44.17531,81.871414,4.664 240,357.76465,237.80627,28.311127,68.230225,4.647 240,107.4284,190.61887,57.276268,106.13455,4.574 240,586.1249,-103.96165,75.138,237.159,4.565 240,294.24554,265.4041,28.012634,39.500305,4.547 240,440.8151,215.17867,59.44275,104.49669,4.52 240,192.71272,244.31993,23.354507,44.544724,4.503 240,206.30118,202.45041,54.401917,103.751434,4.494 240,479.2127,96.3015,34.52417,82.22316,4.487 240,321.1029,-5.678932,45.26941,87.64448,4.432 240,-5.8236594,110.56789,19.222889,44.886017,4.408 240,401.7842,202.83853,44.338837,74.01123,4.401 241,10.967764,211.79077,33.39707,61.386353,18.957 241,101.18736,234.99313,33.462204,63.443176,12.076 241,1.7410254,217.29253,28.520338,59.144516,8.129 241,30.920267,207.56903,35.88501,63.057983,7.839 241,513.13684,321.67566,38.083313,59.317535,7.65 241,-5.836766,-17.423395,18.48924,44.725765,7.429 241,20.139866,198.0455,34.652378,66.06052,7.079 241,8.730047,190.62015,54.984917,98.44797,6.608 241,200.79199,272.62988,36.338425,53.813354,6.405 241,-12.728207,477.5016,31.166414,62.638916,6.369 241,622.865,-33.587444,26.873474,75.7794,6.292 241,184.90608,267.10892,37.4843,51.342712,6.251 241,-6.436426,489.3339,19.080208,42.800446,6.231 241,626.5915,487.80182,20.649231,45.64789,6.196 241,-6.3755918,220.58702,19.51895,44.979996,6.186 241,-12.457846,-39.421844,42.002335,97.32016,6.118 241,613.0701,454.3913,38.692444,107.412476,5.953 241,627.2383,-18.477024,17.365723,47.38924,5.921 241,10.186958,-27.70074,60.226265,124.91983,5.789 241,84.65201,239.62285,34.42887,58.281296,5.735 241,91.16207,205.86064,52.76252,106.657394,5.705 241,-5.769145,202.4568,18.172314,42.153214,5.681 241,387.7919,241.48566,41.163788,92.17883,5.567 241,298.7138,188.72443,30.331879,78.85333,5.425 241,113.44356,224.91283,32.82582,61.791428,5.409 241,602.7192,-54.769554,53.78119,133.49649,5.374 241,-74.42259,263.72992,203.22485,465.1905,5.347 241,416.32446,225.26985,47.6326,117.68053,5.327 241,585.46643,-99.2408,75.03961,233.09209,5.257 241,116.14788,1.7521706,33.19616,66.79248,5.171 241,145.4237,212.28288,23.379822,43.86989,5.153 241,536.3589,310.3686,143.91852,340.15717,5.128 241,75.74199,193.45236,34.767654,71.30673,5.087 241,-20.001545,-86.95988,71.87323,196.78958,5.073 241,490.72067,-183.10649,234.73642,429.25735,5.02 241,-71.144104,-188.99826,212.4385,457.6552,5.008 241,-17.616762,438.80435,55.68496,136.59995,5.006 241,170.23943,266.30774,36.577362,52.188293,4.939 241,85.1091,198.8787,41.856476,82.2962,4.9 241,2.8863442,-16.868507,17.73497,43.427963,4.871 241,-14.358116,162.2422,51.785236,124.626236,4.87 241,571.778,-12.568436,55.46283,123.34177,4.855 241,501.30463,316.92908,34.171326,58.40988,4.836 241,582.96045,410.48544,72.237976,178.18832,4.834 241,574.18414,181.53033,52.935913,126.78516,4.827 241,-40.680473,366.29163,111.30002,276.19788,4.786 241,-36.837303,-128.75111,116.732086,279.34888,4.779 241,148.84406,203.45473,31.361542,60.376907,4.738 242,448.93433,205.82896,23.377838,53.185593,7.547 242,-5.79142,-17.662268,18.186401,42.97817,6.808 242,261.88696,231.30623,29.861542,74.65489,6.504 242,153.42209,222.3382,36.88092,53.58319,6.457 242,-12.548744,478.08337,30.41871,62.29297,6.368 242,494.5843,202.30685,28.826477,69.86105,6.172 242,-17.685125,-64.28364,56.28811,141.29747,6.007 242,267.63745,254.63634,34.695984,63.92418,5.904 242,613.24927,454.0343,39.558838,107.29321,5.897 242,-10.960264,-31.869328,29.77344,72.413956,5.819 242,627.2931,-18.537998,17.499756,46.426163,5.649 242,230.53194,213.63968,34.953415,66.44159,5.636 242,171.37393,219.41933,34.654846,58.975113,5.588 242,170.08008,24.262074,32.57303,81.040405,5.572 242,220.26364,207.89294,54.74698,106.59491,5.501 242,-16.858067,439.25912,54.501904,135.07541,5.448 242,183.8518,30.93198,25.146637,56.094036,5.349 242,-6.712795,489.89386,19.154163,42.17511,5.335 242,522.2101,-0.77417755,21.790894,39.783825,5.248 242,622.1614,478.66412,28.934265,65.94208,5.238 242,140.59396,24.422398,31.53186,79.19266,5.236 242,419.11395,213.0438,42.771576,77.95566,5.144 242,380.1737,208.05632,35.567993,72.58327,5.125 242,436.40894,197.34204,38.48456,73.91638,5.058 242,611.0479,-49.06904,41.586426,102.89118,5.049 242,536.1334,311.24268,143.54132,340.56946,5.043 242,193.34749,216.37929,44.924576,77.85527,4.989 242,488.56494,-181.17645,235.7713,425.09482,4.966 242,503.62125,222.72656,22.084381,47.516968,4.928 242,521.8419,-12.635122,31.244263,63.38205,4.9 242,-73.26822,265.9796,201.42001,462.13464,4.885 242,582.91156,409.69708,72.364685,178.52362,4.876 242,-40.21305,368.9947,110.410614,273.50873,4.829 242,508.89795,-13.669167,55.068726,113.618454,4.809 242,154.03894,-13.656513,60.339264,113.69148,4.801 242,252.71701,229.48859,53.985413,110.5625,4.772 242,-36.04052,-129.26193,116.066444,274.15747,4.768 242,-70.859604,-189.26567,211.82387,457.68353,4.746 242,66.8123,26.874481,33.602432,66.73831,4.724 242,203.53522,203.14343,33.083984,62.87018,4.722 242,191.3932,25.241385,25.290924,52.778305,4.699 242,434.02542,209.15155,22.572723,47.83255,4.684 242,403.41843,207.53105,42.284515,75.55342,4.577 242,586.2774,-98.234406,74.00604,232.25407,4.559 242,377.7324,314.2546,34.68524,57.993652,4.552 242,493.72986,227.12006,238.39062,513.8511,4.529 242,83.113846,31.300274,32.971703,65.620056,4.489 242,477.44727,187.72377,52.558655,107.13966,4.41 242,123.89778,-14.056614,58.56938,114.966965,4.383 242,331.35178,216.09528,33.575287,60.41266,4.378 242,2.3595018,-16.524052,17.778206,41.07673,4.368 242,168.83737,190.3161,61.19612,97.81464,4.325 242,449.31003,216.07974,43.14731,73.54907,4.324 242,194.96133,21.698471,34.05957,78.16941,4.323 242,234.56953,-27.85551,58.93242,128.19946,4.32 242,352.30292,219.77977,35.96173,59.209274,4.315 242,186.68774,-15.423668,60.51938,117.35994,4.297 242,381.5573,195.08838,54.22882,104.62515,4.283 242,208.34698,-14.521328,45.525986,83.968216,4.249 242,145.43352,-12.059116,44.93312,79.04178,4.242 242,212.10834,203.98566,42.88788,71.83258,4.215 242,540.69464,-15.028793,56.61328,114.14903,4.209 242,74.199554,-17.81749,59.006943,118.03476,4.199 242,413.14526,-24.019463,53.795715,124.29869,4.189 243,458.7277,200.80838,54.274933,142.63138,17.348 243,-5.1205673,-16.322588,17.049143,41.157562,7.15 243,403.378,12.973766,32.009308,72.4709,6.51 243,305.84482,243.7441,33.624023,58.795822,6.072 243,-10.716873,-31.495487,29.324236,70.134186,6.021 243,-9.370509,463.26334,38.21146,93.09885,5.898 243,622.8272,-33.182537,27.397095,74.1495,5.897 243,602.3127,-55.379974,53.70343,132.68358,5.694 243,-6.083364,488.87366,18.638771,43.0979,5.675 243,613.2888,453.709,39.20233,108.10513,5.64 243,3.68856,-12.9912195,15.734703,35.995087,5.606 243,477.07556,206.09781,44.601807,105.09546,5.561 243,621.94025,476.68768,28.162598,66.72778,5.544 243,471.29492,210.94008,34.85797,77.97801,5.539 243,627.20483,-18.590288,17.761902,46.27309,5.451 243,586.0212,-98.06362,74.158875,230.39209,5.267 243,344.5706,230.02106,21.852997,44.465332,5.162 243,583.34595,409.49637,71.82922,178.40646,5.132 243,335.41293,215.12875,22.801117,45.295258,5.124 243,387.56927,42.158955,30.19345,75.624466,5.11 243,490.3891,-181.69405,235.12354,429.2901,5.098 243,-17.680952,-63.55417,56.49774,144.01025,5.094 243,411.406,-9.122322,56.249084,111.732056,5.079 243,417.68054,213.83734,44.02185,91.323364,5.067 243,-73.70179,265.52246,201.81998,462.83093,5.045 243,325.35925,25.78917,30.124573,86.184235,5.039 243,-36.3692,-130.01923,117.08388,276.16397,5.019 243,536.0938,310.94885,143.80536,341.70374,5.017 243,332.39337,217.2018,31.921326,69.35289,4.928 243,265.9918,-4.706115,21.233246,38.41851,4.893 243,497.1423,217.67133,43.88089,110.27301,4.885 243,400.8813,212.94061,44.702393,85.447266,4.874 243,598.14075,189.32735,36.472656,85.36919,4.834 243,136.20242,239.98734,23.607193,34.260742,4.827 243,130.82227,235.71082,33.896652,56.949463,4.763 243,356.04895,27.724361,33.28482,76.33301,4.736 243,-71.46289,-189.87505,212.59995,456.75085,4.716 243,-18.495634,432.2537,56.067093,142.75668,4.714 243,380.31494,-14.24633,57.470062,115.98614,4.681 243,395.92282,25.162426,31.515778,76.22148,4.675 243,596.7022,-11.914074,39.59088,100.47525,4.648 243,493.7765,228.36469,237.21625,513.1551,4.647 243,-40.438213,365.85046,111.2719,276.15363,4.642 243,573.4283,-23.107937,54.56256,126.4893,4.627 243,443.31537,-8.4902,54.86432,114.70831,4.593 243,-4.2544146,1.7585278,16.454056,40.160416,4.577 243,378.39026,26.469524,32.04834,80.43576,4.549 243,432.56894,209.54153,58.50473,141.11096,4.469 243,618.2635,487.78925,20.935852,45.10724,4.457 243,594.12976,-44.089314,44.460815,96.36571,4.436 243,447.00726,-4.5372543,33.576996,69.33348,4.42 243,443.10547,21.931873,35.617004,72.455826,4.393 243,572.9023,194.92929,53.438904,125.33646,4.38 243,10.609924,-13.799406,16.319664,35.348473,4.378 243,395.3219,0.41996002,33.424774,67.57264,4.372 243,315.04013,210.51895,55.501923,122.66858,4.37 243,380.1387,185.62587,56.61331,101.528366,4.367 243,416.99664,9.061771,33.936768,71.700165,4.364 243,433.29944,7.620819,34.950043,72.11565,4.345 243,530.5203,207.35526,32.071777,66.246735,4.326 243,103.461365,268.37872,25.72322,29.167328,4.276 243,89.01198,264.85007,37.43624,47.158264,4.268 243,357.2937,-17.338776,31.978882,66.69198,4.209 243,352.1978,232.93643,22.314514,41.925293,4.192 243,589.9812,7.616848,27.177734,71.05826,4.189 243,136.76775,222.42809,22.096222,28.271225,4.181 244,-4.6585803,-15.394614,16.118258,40.31921,6.643 244,610.4108,-46.00797,41.6958,97.76365,6.266 244,-11.142792,-31.923891,29.65469,72.07872,6.133 244,613.042,453.7297,39.44348,110.19992,6.063 244,626.68616,488.03946,20.422852,45.52475,6.028 244,-6.577488,488.60263,19.348637,43.601227,5.804 244,505.69763,221.7145,35.512024,61.403214,5.496 244,516.9522,340.09674,35.08496,65.00577,5.459 244,586.09564,-97.97216,73.74457,229.21518,5.376 244,-9.288715,464.3987,38.07981,93.01657,5.365 244,491.14224,-183.53398,233.63956,429.84286,5.274 244,627.06384,-20.060194,17.900696,48.082962,5.266 244,578.34467,-7.3314705,44.526184,90.29059,5.185 244,-74.13118,266.7063,202.49179,461.2705,4.986 244,582.9514,409.96075,72.2262,178.47711,4.952 244,487.36536,191.61024,29.972107,64.77403,4.903 244,536.43994,311.2813,143.25623,341.11554,4.9 244,-41.290215,365.29523,112.24077,276.67413,4.863 244,4.1941853,-11.349158,14.465132,34.92284,4.806 244,-36.999836,-130.6545,117.30525,278.45468,4.736 244,-18.01869,-62.385193,56.08439,144.06438,4.73 244,590.35333,-21.488796,51.623596,124.38097,4.723 244,451.39844,225.19928,41.184723,100.62714,4.693 244,475.3678,215.43999,55.42682,110.86635,4.684 244,-18.656399,432.7379,56.720028,142.42145,4.631 244,581.9521,214.06943,39.838562,79.62741,4.614 244,493.79947,227.4314,237.65933,515.04816,4.566 244,-71.617935,-190.07245,213.05072,456.5717,4.556 244,236.29915,-16.476517,31.507645,65.307556,4.526 244,538.27844,189.58975,56.966187,102.454285,4.508 244,339.98303,205.76926,40.790924,73.48224,4.483 244,201.9946,-30.170938,59.412415,120.34438,4.468 244,541.2585,-20.459915,56.08844,118.61839,4.429 244,203.58435,-12.827826,31.234985,63.039528,4.403 244,515.71625,205.35205,42.03955,69.46768,4.377 244,331.68726,49.857327,30.98346,72.415924,4.364 244,236.16273,-15.352276,58.63417,115.74301,4.35 244,4.8828692,2.634038,13.9799595,30.649834,4.334 244,345.30826,54.25874,22.269897,48.46506,4.332 244,-3.7814364,4.4830723,15.066544,37.88903,4.311 244,192.0733,-5.1548767,47.55246,84.66618,4.269 244,531.60187,203.85326,42.312073,71.66011,4.248 244,562.3508,-7.6552696,42.94275,90.15971,4.232 244,268.09412,-16.0326,58.500275,117.35173,4.232 244,618.40466,489.74597,20.166931,41.993164,4.231 244,508.5868,-20.068054,56.05298,119.82234,4.224 244,574.2072,220.92072,52.442566,133.4649,4.208 244,12.514267,4.1005106,15.02718,27.956314,4.173 244,537.6271,223.1431,21.105408,41.236877,4.17 244,355.84174,210.65572,39.52536,79.33278,4.162 244,74.09284,1.6226902,20.964592,32.957336,4.15 244,59.22859,4.0567055,19.97968,33.012524,4.124 244,476.09857,3.3652115,31.717438,76.13386,4.12 244,587.5673,-15.977997,33.320007,65.46477,4.115 244,490.71133,225.76706,34.668793,61.85016,4.102 244,431.32797,204.56909,66.22568,164.20813,4.096 244,257.32852,-4.0428696,46.572205,88.70043,4.081 244,612.6873,11.963028,39.124207,108.08804,4.065 244,393.20984,241.98433,21.768341,41.577225,4.051 244,171.19159,-31.533367,58.905365,117.92268,4.041 244,348.6612,52.601746,29.901428,67.133804,4.031 244,322.15286,56.13044,22.75766,53.141228,4.024 244,562.46765,229.90564,34.648743,59.24579,4.021 244,224.36261,235.56885,24.244446,29.702545,4.019 244,419.60464,220.97404,42.091644,89.155045,4.017 244,466.3474,212.8672,43.02365,78.18376,3.984 244,551.43945,208.35326,26.087463,61.768356,3.977 244,508.6939,215.53114,53.68091,101.357376,3.975 244,530.0697,215.53334,22.041687,46.007828,3.958 244,324.04865,-13.874958,31.400696,64.88122,3.938 244,458.26862,-15.308453,58.385498,120.74341,3.937 244,598.287,214.89365,37.007812,94.368805,3.907 244,490.2258,191.49152,57.525116,98.69653,3.904 244,224.4549,-4.271137,46.92151,88.00931,3.899 244,123.51184,-14.413023,33.200317,58.067062,3.899 244,465.74347,231.77827,43.034668,111.00194,3.891 244,546.22656,226.43604,42.923523,81.51575,3.886 244,442.63232,340.41083,33.903015,65.36316,3.882 244,541.0955,-4.2750187,30.062927,60.53952,3.88 244,594.97864,301.8365,42.31543,100.5733,3.865 245,-12.727972,479.51352,31.747831,60.755524,7.37 245,-6.6401772,488.97296,19.855268,43.25592,7.181 245,-5.0026464,-15.582997,16.19165,39.821354,7.031 245,613.36145,451.33463,39.324463,111.46512,6.429 245,388.9433,42.111687,31.039276,82.423355,6.23 245,-11.336115,-31.651428,29.506727,69.70261,6.224 245,579.056,236.45605,41.111267,81.2854,6.074 245,561.8993,236.72389,43.19818,83.406784,5.858 245,621.94226,-33.37654,28.106323,74.22138,5.795 245,626.6376,487.35138,20.633667,46.00708,5.748 245,596.5565,234.15694,38.038696,83.96175,5.61 245,602.3435,-56.093967,53.77069,133.63928,5.523 245,316.5276,-4.4635773,29.017181,62.998833,5.521 245,380.90793,-12.894634,54.543243,113.90875,5.49 245,545.86066,234.20593,42.900208,89.128845,5.421 245,-17.989288,439.6041,56.2532,136.79617,5.385 245,354.63763,-4.276039,42.65207,84.42169,5.382 245,490.02057,-183.444,234.21039,430.26752,5.32 245,339.10822,-7.1799774,41.52658,86.13507,5.23 245,362.42154,-30.433376,57.052673,120.07927,5.133 245,536.30927,309.6129,144.18646,340.76587,5.13 245,627.1371,-19.064344,17.866272,46.981163,5.12 245,587.97626,-7.559599,31.957764,72.14803,5.025 245,4.9721837,2.7636967,13.812204,28.817543,4.992 245,475.11856,-2.535246,30.49762,69.03529,4.942 245,4.1739964,-12.325876,14.415606,35.177227,4.923 245,583.16406,409.8549,71.6275,177.54733,4.905 245,585.92114,-98.71535,74.056885,230.95416,4.884 245,-17.619257,-62.33186,56.040955,145.70367,4.771 245,-39.56115,369.52393,109.70237,272.7135,4.764 245,537.4706,1.7308083,32.349915,81.32263,4.733 245,-73.17108,267.33307,200.97461,459.4699,4.691 245,493.87396,228.56824,237.25995,513.2585,4.677 245,362.44156,103.361496,33.501495,73.075,4.664 245,-36.857254,-131.42598,117.555885,282.66425,4.655 245,491.53674,-11.437473,57.15735,119.45059,4.586 245,483.7593,-16.770967,32.50479,64.03014,4.553 245,531.4481,217.52701,42.50757,80.07434,4.537 245,473.6416,-2.9717636,21.555847,39.438656,4.518 245,593.96,-44.17057,45.0766,97.213684,4.504 245,-71.53989,-189.6988,213.24265,456.74103,4.503 245,522.3156,-26.465042,58.51007,130.77187,4.495 245,597.5295,196.2692,38.726257,88.28064,4.486 245,387.82742,228.05708,39.88553,80.39122,4.464 245,12.546131,3.40246,14.413324,27.485905,4.437 245,302.40424,-3.9686737,30.62033,65.85873,4.42 245,324.17426,-16.56357,31.611206,66.98793,4.418 245,526.50525,227.43082,54.561462,119.36386,4.39 245,442.0465,-1.4051743,21.77353,36.047558,4.377 245,420.51633,234.38843,38.921844,87.11078,4.366 245,489.50983,-6.1853266,21.56076,41.320618,4.364 245,427.43253,-28.999332,57.350037,119.039215,4.354 245,458.8623,-28.498913,57.83789,121.83806,4.323 245,474.34708,-14.538929,17.961853,37.755585,4.289 245,581.81555,222.91457,29.582275,62.95125,4.279 245,613.1345,242.74702,37.92804,97.40105,4.274 245,595.2853,-10.280315,41.3291,99.462524,4.265 245,613.26953,401.9497,27.439697,81.89499,4.206 245,549.4502,373.02475,32.037354,68.48218,4.163 245,411.28693,-6.7073517,57.363953,138.89723,4.16 245,573.13434,-19.709728,54.699097,125.61188,4.15 245,372.897,-1.5955887,29.463654,69.49596,4.129 245,457.6611,-2.7821102,21.484344,38.14174,4.119 245,155.85492,-2.0722408,17.677765,31.727934,4.109 245,460.13678,-9.137678,32.19464,61.924652,4.104 245,545.7395,488.47577,20.638062,41.860718,4.076 245,537.74677,487.96564,20.869324,42.613525,4.065 245,11.640567,-12.567546,14.548936,33.90244,4.043 245,427.03952,22.938858,32.82077,64.714005,4.041 245,281.75616,262.6378,37.49518,52.45227,4.034 245,587.3542,226.96837,20.639038,35.356033,4.026 245,345.99808,-57.12168,58.045654,126.09217,4.026 245,337.90802,-6.456542,21.976257,44.470917,4.021 245,402.5865,-3.1649399,41.73236,84.789185,4.021 245,318.18835,-20.205349,54.01468,118.59987,4.013 246,540.3078,236.55603,29.911682,95.19562,7.727 246,-5.185511,-16.448856,16.839487,40.219585,7.218 246,620.88245,477.20752,29.882202,66.612305,7.121 246,581.89874,215.40817,40.836914,86.3761,6.886 246,-12.381699,477.37915,30.654348,63.51996,6.152 246,601.7995,-53.714516,54.10553,133.1648,6.066 246,527.33514,224.52083,51.583984,128.85222,5.925 246,591.06866,187.74863,35.532776,82.1611,5.916 246,570.698,205.99924,35.24652,71.69693,5.75 246,622.20526,-34.06664,27.77185,74.985306,5.677 246,-6.098419,488.9835,18.437916,43.859406,5.613 246,617.0269,486.2888,22.777893,46.154877,5.569 246,597.0006,-5.5197716,30.598328,69.712265,5.558 246,585.4494,-98.448654,75.27698,230.64967,5.502 246,4.021482,-13.645492,15.2457485,35.616425,5.474 246,-11.158677,-31.345133,29.269978,68.10327,5.421 246,603.2997,429.81387,56.40619,144.7203,5.39 246,563.70557,224.00385,43.09308,102.588684,5.376 246,444.8654,273.5263,32.21472,69.2847,5.364 246,553.93304,184.6677,35.198547,88.315735,5.351 246,406.53558,9.960594,30.705322,78.089714,5.228 246,596.3784,227.1336,32.582764,66.43695,5.213 246,586.01514,-13.865778,33.77356,61.754623,5.21 246,612.95447,-18.821518,29.687195,67.790794,5.186 246,626.9878,-17.642614,17.814697,45.024097,5.176 246,141.55911,254.3442,51.279816,75.55092,5.167 246,413.70145,240.7378,29.836578,57.159973,5.151 246,-16.935299,436.8618,54.7734,136.82938,5.145 246,434.58835,2.3291016,31.749817,67.55777,5.141 246,110.91757,254.37437,50.129257,76.95839,5.124 246,596.7271,85.68289,39.49182,98.84396,5.112 246,-74.34282,265.35666,203.09352,462.76175,5.088 246,489.88327,-182.10216,235.43094,427.4588,5.051 246,412.4402,-9.551006,54.96997,115.989075,5.012 246,507.77008,243.3504,55.188232,142.78162,4.96 246,-41.526855,365.3105,112.78202,275.96393,4.929 246,-17.648224,-62.760475,56.6313,142.41153,4.921 246,536.2173,311.16565,143.94165,340.1554,4.912 246,11.486025,-14.150483,15.655207,34.514297,4.887 246,612.4492,65.78939,37.41443,104.71244,4.856 246,399.21783,235.0597,52.617462,107.87659,4.836 246,380.4501,-11.885738,56.1575,115.33937,4.832 246,603.61694,-2.3781204,52.69214,139.1771,4.812 246,424.10352,11.121704,24.150543,62.07486,4.768 246,436.24207,242.94266,40.55713,81.14868,4.751 246,484.13824,89.98242,31.300476,69.922455,4.747 246,462.73486,296.25427,37.61032,65.94998,4.726 246,588.8693,206.68176,47.615234,136.41876,4.673 246,267.65027,247.31079,53.06714,69.80188,4.632 246,493.71344,227.63257,237.24335,512.27795,4.628 246,579.15247,-3.6100159,44.11847,91.13366,4.603 246,420.59222,242.3532,40.08676,80.93193,4.581 246,562.06134,488.86884,20.567322,42.087463,4.554 246,-37.021286,-131.75905,117.50003,280.405,4.49 246,458.74783,-28.709286,59.14804,121.63313,4.485 246,543.64874,226.31104,35.429077,71.420044,4.454 246,-5.3289785,3.052412,16.702042,38.01542,4.417 246,493.27057,223.82921,53.16931,122.76033,4.41 246,26.96598,-14.587847,16.540382,34.5809,4.406 246,474.8657,246.22322,58.15042,140.21867,4.403 246,617.0818,7.8205814,22.318542,54.47367,4.4 246,613.9358,237.12952,28.05304,74.90515,4.366 246,348.73035,-17.606022,56.316467,118.29857,4.344 246,125.391815,243.24197,51.7818,72.64563,4.337 246,490.435,12.865547,57.024292,134.3995,4.325 246,512.1473,-4.7901115,46.760315,90.06348,4.324 246,448.68588,267.52994,44.04831,93.99133,4.323 246,522.6743,-32.769066,57.9104,121.775154,4.303 246,-71.51976,-188.51476,212.83797,454.54816,4.288 246,554.0976,489.37152,20.61145,41.81732,4.266 247,587.373,224.15137,51.868835,195.73218,8.233 247,542.9959,-28.681732,90.20361,359.2036,7.448 247,-4.7387953,-15.325331,16.423355,40.280422,6.912 247,626.2755,488.7855,21.326721,44.20163,6.578 247,609.7545,207.04108,22.057129,60.57013,6.377 247,-12.753141,478.25958,30.806135,62.43512,6.278 247,-10.878364,-31.677153,29.463745,72.15304,6.232 247,532.0959,-179.3426,149.87915,423.45578,6.114 247,613.0755,452.18875,38.551086,109.65872,5.908 247,627.26965,-17.99437,17.130432,45.54852,5.739 247,484.50714,233.66771,28.900513,64.11781,5.689 247,436.0833,243.90314,40.598816,81.33679,5.671 247,536.5659,308.37677,142.9447,341.07355,5.635 247,-6.9160614,489.5959,19.679766,42.329895,5.562 247,587.7306,328.51398,52.3407,183.77643,5.472 247,548.3886,229.61142,38.7099,98.642914,5.419 247,622.80164,-33.65645,26.648743,74.11765,5.38 247,451.67416,240.9378,39.803467,82.94086,5.365 247,577.9696,189.31229,45.845215,157.95193,5.266 247,598.6874,343.16602,36.178284,81.253845,5.208 247,493.42075,228.40103,237.83426,513.3706,5.189 247,552.9895,252.85875,85.847046,264.66797,5.16 247,468.84955,239.55862,39.880157,84.87576,5.152 247,-18.132269,-62.53264,56.14411,147.22964,5.14 247,-22.456955,402.31348,79.80914,174.04663,4.97 247,395.13303,-3.4369926,31.841217,67.68617,4.929 247,613.05615,210.90073,36.05774,129.58792,4.921 247,484.09885,243.28284,39.977142,92.56616,4.843 247,618.34344,489.86487,21.169006,42.665344,4.777 247,602.6145,-56.599243,53.545288,135.85548,4.773 247,525.037,215.50961,53.600464,112.65411,4.771 247,597.0798,201.55019,31.088928,81.7115,4.694 247,3.7622209,-11.571877,14.944805,35.718525,4.626 247,133.1238,-32.047215,29.449997,70.31605,4.621 247,-73.589264,266.4431,200.98428,460.8006,4.616 247,516.89404,236.5976,39.588745,91.03552,4.501 247,-71.51415,-188.71184,212.73672,455.1964,4.481 247,419.46072,-13.367033,33.24594,65.957726,4.468 247,435.56464,252.27867,21.06894,35.58345,4.463 247,582.7918,212.50659,32.187744,95.87958,4.446 247,474.64493,242.06952,21.480988,49.545105,4.421 247,583.34344,405.10944,70.93646,180.30878,4.416 247,554.47314,231.13971,19.320312,38.586365,4.397 247,539.1306,-8.878891,57.933167,147.41354,4.36 247,500.34857,238.33679,39.99182,88.992615,4.352 247,268.25067,-36.35543,56.75009,123.56098,4.286 247,-38.17535,-130.97073,119.10248,285.4552,4.285 247,421.0283,245.44498,39.87729,77.48627,4.263 247,4.547223,2.3558102,15.639525,32.409973,4.195 247,476.99786,252.52045,52.64453,140.52814,4.149 247,403.12836,6.569813,31.656189,75.862946,4.148 247,328.11255,480.2248,22.407501,27.30185,4.138 247,-7.200304,56.27242,35.62671,106.25592,4.123 247,596.69904,21.762226,41.912476,118.93524,4.095 247,188.47925,0.74820995,16.198578,25.034954,4.073 247,-4.154177,2.667904,16.157806,40.457478,4.054 247,531.2981,267.8724,31.447449,64.88565,4.052 247,586.1138,-99.17362,73.87622,231.80545,3.999 247,432.845,-10.143295,43.94803,90.41792,3.991 247,617.2339,225.19815,22.202148,58.91046,3.989 247,318.92487,249.43602,48.90387,66.4579,3.988 247,447.02026,260.76337,24.947632,50.39447,3.981 247,497.62546,-3.5879173,44.92044,93.442154,3.98 247,75.000755,1.5333223,18.879326,31.472431,3.973 248,618.22736,221.60663,19.098633,52.573853,6.799 248,-4.832987,-16.056353,16.567543,40.50644,6.604 248,612.7267,454.09955,40.044983,108.00879,6.309 248,-8.387842,464.8539,37.43743,92.072174,6.199 248,531.31946,221.24756,18.225525,31.419983,6.145 248,-6.065995,489.2936,18.686035,43.583405,6.092 248,480.1268,210.13588,43.790314,112.37715,6.015 248,514.1095,232.42296,44.782166,108.723434,6.009 248,-10.777888,-31.136166,29.302063,69.4648,5.939 248,546.00946,248.91946,42.7807,108.32684,5.919 248,626.4721,488.66406,21.19867,44.64618,5.675 248,610.9524,-47.28528,41.87671,101.348305,5.559 248,524.97705,223.53696,17.496765,28.853241,5.548 248,449.08527,198.47244,53.037903,133.1294,5.518 248,580.7527,231.0923,36.731873,94.98668,5.508 248,528.7111,243.39102,44.17108,113.601746,5.297 248,530.9734,228.85257,31.620361,64.40057,5.281 248,488.85968,208.99425,58.55603,139.529,5.257 248,4.7720523,0.9929457,15.341833,31.689804,5.223 248,627.16907,-17.851664,17.265259,46.113632,5.153 248,536.2732,309.9649,143.68219,341.86322,5.15 248,466.96106,202.2296,41.83551,96.28572,5.063 248,412.13007,-13.08902,54.847717,117.03759,4.995 248,619.1377,490.71912,20.096985,42.57312,4.964 248,581.0088,203.76624,29.754211,84.89279,4.928 248,537.2262,231.92041,21.89862,36.81732,4.923 248,583.0504,410.93964,71.911255,177.32233,4.907 248,489.3161,-182.0787,235.23596,425.91956,4.887 248,-17.72783,-61.94828,55.873665,143.84418,4.873 248,-72.926315,266.02246,200.61877,461.2036,4.868 248,-21.292927,404.5353,78.843994,173.76456,4.864 248,565.542,240.39188,39.337646,98.105896,4.837 248,567.1712,223.40205,28.14502,68.69612,4.823 248,458.7901,216.65764,33.128296,78.30205,4.817 248,516.8998,228.61673,30.10376,63.871033,4.816 248,428.72552,188.44606,57.673096,110.079636,4.815 248,576.2031,24.218586,32.661133,80.344086,4.811 248,529.7074,230.70485,21.137207,35.739426,4.763 248,403.58258,-6.8829308,40.67923,91.06781,4.668 248,493.9827,228.81995,237.53867,514.9546,4.655 248,557.0188,265.97238,31.011597,65.778564,4.646 248,563.7649,40.896233,32.738403,69.178375,4.643 248,-37.472244,-130.11757,118.37517,280.79953,4.583 248,3.755511,-12.16969,15.270518,35.18618,4.526 248,-71.47533,-189.31674,212.8718,455.98312,4.522 248,583.6463,-3.5113354,34.743835,68.66089,4.506 248,-4.3154044,1.562851,16.667423,38.934017,4.495 248,537.52484,213.71292,19.009521,35.561203,4.491 248,496.73584,235.5087,22.65039,44.7211,4.471 248,573.3448,-9.104553,53.36975,123.20037,4.389 248,442.78827,-6.4785414,21.031616,39.983646,4.376 248,614.6766,165.91388,24.7677,91.37323,4.308 248,531.71735,201.50322,18.803162,36.80504,4.283 248,434.80496,3.523243,42.430298,99.3755,4.271 248,419.18582,207.5982,42.721344,80.16266,4.255 248,597.0304,233.9829,36.65619,108.44502,4.24 248,602.61285,225.53123,20.098938,46.853104,4.226 248,460.58514,212.93994,69.2608,171.6026,4.224 248,561.9756,210.7865,17.666748,36.77359,4.214 248,586.0104,-102.78821,74.83728,239.41116,4.208 248,562.16895,251.64708,21.173218,41.63533,4.168 248,300.45633,-36.7116,56.86438,125.21738,4.164 248,504.34872,233.18666,22.739227,40.332413,4.152 249,621.2036,474.27728,29.719727,69.70978,7.208 249,611.5703,-47.49534,40.391052,101.1629,6.637 249,-8.5352335,464.9461,37.39128,91.72015,6.322 249,-5.826676,-17.31552,17.760866,41.717896,6.238 249,613.1008,261.70868,27.302002,80.94592,6.156 249,-11.466972,-31.558723,29.789509,70.53705,6.124 249,627.3036,-15.693799,16.692017,43.203766,6.0 249,-6.3226914,489.52908,18.836802,43.031036,5.941 249,555.6369,258.71744,16.204895,28.740692,5.798 249,627.41895,477.532,18.863647,45.70865,5.24 249,617.4869,485.90845,21.631042,46.196533,5.09 249,-73.151085,265.48553,201.889,462.0735,5.061 249,536.02704,310.07944,143.75507,340.97696,4.978 249,-20.330872,-86.08145,72.320114,195.19458,4.963 249,585.75055,-100.86504,75.086,234.74966,4.955 249,546.5239,257.03287,18.747742,32.1615,4.88 249,515.75934,259.66608,42.293213,106.20276,4.879 249,-21.568079,403.7044,79.63495,174.60443,4.851 249,483.86002,189.40181,30.689178,95.85149,4.844 249,619.80035,-0.5221348,18.296326,36.137093,4.827 249,-41.02739,365.927,111.80735,276.67896,4.817 249,-35.994057,-129.42554,117.58982,274.40762,4.776 249,563.83105,259.73978,15.185425,26.951569,4.773 249,573.7851,-17.915844,51.410522,117.83394,4.758 249,529.9208,256.11328,41.794983,84.50922,4.753 249,583.3374,409.18616,71.54175,178.2453,4.715 249,604.3065,-26.09203,52.045105,127.5202,4.708 249,490.1468,-179.19934,234.46619,425.35406,4.635 249,593.13025,209.53195,43.906372,129.76468,4.629 249,597.5911,3.9225235,39.008484,99.24402,4.616 249,-72.19882,-189.3882,213.63799,455.54968,4.584 249,432.64032,241.31908,43.708435,71.02559,4.537 249,571.8849,259.43964,14.981079,26.843842,4.527 249,493.8955,229.50748,237.98926,512.18787,4.513 249,619.4379,257.6404,20.24646,52.008087,4.268 249,359.3628,215.08318,64.94513,100.42589,4.266 249,546.5713,257.07672,40.839783,83.839264,4.158 249,597.5673,266.10513,32.647156,72.21933,4.138 249,417.0021,238.94711,45.28232,63.263367,4.127 249,444.86588,206.84499,55.08426,103.65965,4.105 249,617.974,459.16254,20.575195,49.725708,4.073 249,400.50476,250.67004,45.96585,72.8385,4.033 249,459.7838,250.59917,31.198517,60.36104,4.017 249,3.2712042,-14.92469,16.418692,37.72404,4.014 249,-9.331718,-19.955776,38.943424,98.79506,4.005 249,509.3384,35.587112,53.51828,133.22621,3.993 249,615.7282,218.3418,24.88739,83.2702,3.933 249,589.0557,-60.73904,53.44153,135.18143,3.918 249,564.9531,256.81146,39.254578,87.44696,3.915 249,412.53693,-21.8345,53.738037,122.83238,3.914 249,317.97595,-21.586239,53.23346,122.847626,3.898 249,541.36755,-19.949974,53.15631,120.51415,3.891 249,622.8439,232.25616,25.710571,77.01831,3.889 249,542.94275,265.03815,25.48706,44.51413,3.888 249,611.6234,435.0193,39.722534,99.749756,3.877 249,450.1565,-6.2140503,43.235992,91.16331,3.875 249,368.07834,262.1755,47.39496,75.37146,3.865 249,622.6852,267.43607,27.03601,78.19516,3.821 249,500.26007,67.46829,40.35132,98.86453,3.807 249,492.29425,-36.648876,55.965515,128.11865,3.782 249,627.0657,246.36447,17.602905,50.412354,3.771 249,578.5737,-13.44519,17.869202,37.412857,3.769 249,587.93756,-11.324436,30.354797,59.076195,3.765 249,302.65387,259.41873,48.137604,67.438324,3.763 249,572.547,-10.951761,31.710754,59.33587,3.761 249,336.16367,264.83084,47.325104,74.904785,3.754 249,583.0835,250.07121,36.37152,83.84389,3.748 249,425.6328,297.60132,36.0679,49.89508,3.738 249,614.5222,-15.913681,27.323853,64.6512,3.736 249,434.55408,-8.752621,41.093994,92.482574,3.731 249,613.72485,16.5831,37.05548,106.37399,3.716 249,524.7189,255.65884,30.302124,59.27658,3.7 249,498.51764,260.43973,42.85547,110.85098,3.664 249,256.51523,-7.494877,47.15387,92.46382,3.654 249,325.83432,205.12369,66.96457,107.87097,3.652 249,604.60657,260.7884,17.765991,33.4628,3.646 249,484.46265,81.725555,41.048767,100.85663,3.644 249,139.52682,-12.654655,60.078247,104.34843,3.639 249,595.0491,1.3045368,18.509338,32.3245,3.615 249,234.83731,-18.27393,59.52838,120.026825,3.602 249,603.9713,32.022636,52.628296,139.8114,3.597 249,403.33127,239.43166,31.81491,49.03514,3.59 250,612.86993,260.5801,15.087769,33.78018,7.985 250,-8.57749,465.4455,37.489403,91.37018,6.486 250,627.0832,489.8087,20.175781,42.978973,6.337 250,-5.599966,-18.138527,17.734177,42.656685,6.31 250,627.77875,-16.096455,16.390015,43.61745,6.255 250,618.78455,256.79608,15.904846,35.938416,6.177 250,611.28546,-48.71443,40.486145,102.53816,6.1 250,-6.5304813,489.3021,19.202904,43.24649,5.587 250,490.97113,-179.99333,233.71747,426.14365,5.447 250,-12.435091,-38.943157,41.678703,98.58611,5.414 250,613.13574,456.48248,39.009888,105.31793,5.347 250,398.72668,231.13165,26.381348,37.76413,5.238 250,618.4263,268.68506,19.801636,41.80771,5.137 250,583.21094,411.44574,71.91626,176.57257,5.123 250,498.94928,134.09975,71.07916,203.48534,5.121 250,-20.300768,-86.92081,72.11372,196.02914,5.02 250,-73.07724,265.41528,201.64816,461.77136,5.007 250,510.0036,231.33496,51.9433,127.02423,4.994 250,432.26837,244.1773,36.983337,57.492615,4.974 250,627.4394,253.6319,16.73413,41.469177,4.92 250,585.67773,-100.160576,74.71564,233.15619,4.809 250,-21.42429,404.3781,79.299164,173.97772,4.756 250,540.0044,249.52466,29.25879,68.64966,4.727 250,-40.91465,367.1269,111.50053,275.84076,4.72 250,-36.13594,-129.78308,117.41933,275.77597,4.706 250,619.1474,492.13257,19.60028,39.22986,4.689 250,573.21484,-19.376682,52.30188,125.525314,4.676 250,613.4487,14.234074,36.629272,107.79732,4.652 250,536.3549,312.0064,143.09845,338.79596,4.574 250,507.6402,-10.534664,54.28064,128.1079,4.571 250,-71.926254,-189.98122,213.44978,456.61218,4.539 250,620.645,-0.9070511,17.13971,34.00889,4.439 250,494.3709,228.14563,238.08441,514.609,4.404 250,439.78308,256.04688,24.506958,35.55728,4.388 250,512.68695,266.2896,35.158813,73.270325,4.365 250,416.06458,229.34383,47.00061,63.84636,4.357 250,522.7442,243.76994,34.312134,79.89592,4.335 250,513.89825,4.3926353,33.24225,87.21797,4.33 250,507.8026,240.69925,32.906677,76.10132,4.301 250,448.37903,228.51962,45.338135,81.02582,4.297 250,612.88824,95.67958,37.351074,106.15755,4.289 250,603.7239,29.489494,53.350586,138.9714,4.282 250,479.50104,226.79729,53.89563,121.45415,4.246 250,448.33105,267.60562,23.634827,32.920258,4.24 250,465.58765,228.4639,43.491333,85.46591,4.188 250,604.0408,-27.877052,51.857544,132.0528,4.177 250,597.0428,85.97056,39.75641,99.645805,4.172 250,2.9593868,-16.577377,16.697908,38.87373,4.137 250,542.0341,-13.409779,52.80725,120.77983,4.107 250,516.6811,213.72087,31.23883,91.85414,4.091 250,541.4198,-0.72104645,30.411316,70.10729,4.085 250,582.5803,249.8948,35.717346,87.74017,4.019 250,441.1411,255.84964,36.81375,56.194397,4.009 250,401.11304,229.83165,46.8266,76.78462,4.009 250,390.27747,237.08017,65.862366,129.57507,4.008 250,495.06302,228.0664,28.736115,68.10144,4.007 250,538.55286,285.2616,20.90857,40.099,3.984 250,411.4253,-60.47993,56.501617,130.613,3.979 250,597.45013,254.22406,37.282104,98.16907,3.954 250,385.95398,222.60243,36.051056,51.561386,3.95 250,267.34464,-39.61403,57.20459,126.47643,3.935 250,299.19635,-43.47002,57.117737,132.44203,3.903 250,394.92517,-34.192284,56.369324,121.59263,3.903 250,235.30258,-35.97326,58.3649,125.90023,3.885 250,623.54755,-20.15287,26.344116,67.94942,3.864 250,548.4389,255.0958,38.548462,91.46445,3.834 250,431.52634,245.22934,24.851593,36.12018,3.813 250,358.11243,238.64832,66.946594,129.44946,3.812 250,598.2632,-24.655563,38.2193,93.43425,3.806 250,349.08157,-24.249763,53.55545,125.12564,3.802 250,562.4199,-9.433823,41.698364,94.860504,3.799 250,312.48123,212.55603,62.955933,101.77588,3.787 250,283.75177,-59.5374,55.730896,129.96626,3.787 250,427.5839,-37.517746,56.105316,122.34232,3.744 250,378.9007,-59.840515,56.676056,131.69882,3.742 250,591.25525,238.905,25.497192,63.81134,3.735 250,425.21725,274.40582,22.220001,31.325043,3.711 251,607.4255,240.61752,21.99237,43.770447,15.755 251,-5.0550084,-15.850247,16.869602,39.115013,8.588 251,622.581,-33.356915,26.824036,76.12477,7.733 251,602.2818,-57.34188,53.539124,134.32584,6.356 251,627.056,-17.675064,17.3219,47.5935,6.348 251,-8.591579,465.35852,37.59359,91.66589,6.268 251,-11.220272,-31.339596,29.696547,68.18063,5.913 251,431.85553,204.64188,46.817993,67.947205,5.753 251,621.84064,477.8643,29.433777,66.833954,5.69 251,619.14667,-3.2355747,19.034973,41.86969,5.313 251,4.493074,-11.740156,14.751558,33.02878,5.307 251,585.64996,-100.15413,75.21063,233.00732,5.236 251,-17.65975,-63.082703,56.041824,144.5151,5.105 251,-6.3509073,489.25693,18.911713,43.144684,5.086 251,-73.31366,265.8333,201.77281,461.91193,5.071 251,583.94855,411.4437,71.06555,176.01407,5.029 251,595.34656,-45.65547,43.33557,97.01639,5.021 251,613.4691,0.65309906,35.03943,106.89309,5.019 251,469.93585,256.87354,29.229523,43.445404,5.005 251,617.0886,88.3646,21.850586,59.483833,4.946 251,597.79486,51.798073,37.69879,100.20071,4.869 251,-21.522213,403.96344,79.21019,174.18628,4.86 251,457.51117,254.63881,35.879578,57.56993,4.846 251,11.973968,-7.383774,57.981964,114.61766,4.834 251,614.9645,-18.593655,26.69049,71.50244,4.82 251,598.40753,5.2565002,37.96338,98.11402,4.774 251,-40.803825,367.02615,111.37476,276.01315,4.772 251,503.50418,242.18039,35.667206,54.107178,4.761 251,468.0122,-15.058161,31.126312,63.81639,4.706 251,-4.956586,2.4620113,16.855013,37.771255,4.705 251,327.362,213.9025,25.321045,37.86656,4.685 251,617.9871,28.075504,20.708923,57.967297,4.672 251,-36.217445,-131.20749,117.95902,279.97177,4.663 251,489.39307,-179.18141,235.16858,424.3829,4.611 251,573.6215,-20.389893,51.41443,119.83217,4.61 251,469.10303,104.63983,30.060669,68.30176,4.516 251,536.128,311.72882,144.23016,339.67047,4.5 251,11.197702,-11.976101,15.310865,32.28873,4.467 251,43.11463,-7.3921127,58.191414,109.611786,4.433 251,-71.928894,-188.62389,213.11673,454.8683,4.336 251,563.4553,-4.1948357,39.695618,88.3647,4.325 251,493.4994,228.05585,238.25415,514.55835,4.324 251,157.02797,-13.274139,57.217453,113.82299,4.307 251,124.61613,-9.4530945,57.238365,112.154655,4.304 251,613.66296,48.41359,35.88971,105.784424,4.299 251,4.9254966,0.9815264,15.630476,29.466389,4.185 251,442.90253,196.3889,19.899323,30.263062,4.141 251,598.5516,229.55139,34.79431,84.841125,4.095 251,411.19998,-14.149111,31.589325,60.97838,4.089 251,541.2289,-18.949718,52.698425,119.8183,4.075 251,474.16016,-3.1570625,20.81668,41.457165,4.074 251,117.14321,4.3363266,15.077675,27.560856,4.07 251,124.3501,12.09248,16.353256,28.067432,4.059 251,613.34894,441.42227,39.12201,93.61221,4.015 251,464.35764,107.364174,23.968842,46.951256,4.013 251,11.883085,2.0287514,16.616306,27.692467,4.007 251,582.3943,52.11645,37.6593,99.370026,4.005 251,617.74786,489.82382,22.213318,44.082123,3.999 251,458.13696,117.07706,22.345673,43.588165,3.936 251,476.85834,-20.258167,54.374817,122.511,3.93 251,92.65893,-8.674915,56.89344,109.05025,3.925 251,108.94922,3.72964,16.075027,28.06694,3.909 251,585.95514,232.67635,20.88385,42.713028,3.834 251,492.97806,-14.276405,29.32138,64.78056,3.832 251,563.1202,221.23143,32.05487,68.17735,3.785 251,614.6096,241.52145,22.650024,48.562164,3.779 251,132.11581,12.381306,16.589203,27.897968,3.762 251,399.84906,208.95522,47.624725,79.39421,3.729 251,359.20944,-2.9061623,25.325043,53.196148,3.724 251,617.7832,67.52324,19.817627,50.76877,3.714 251,626.8915,239.56493,19.092163,47.01671,3.711 251,140.30037,2.8587217,16.427444,28.302803,3.7 252,625.1232,232.96786,20.260925,54.216858,9.696 252,442.7649,252.22638,35.039124,65.053955,6.491 252,-13.17936,478.98093,31.474522,62.113922,6.407 252,391.1063,187.9007,24.544617,38.67758,6.209 252,257.58502,201.94534,36.445465,58.045258,6.118 252,-5.0571327,-16.099068,16.459137,40.706543,6.032 252,-8.699781,465.28137,37.895203,91.49756,5.961 252,623.0055,-33.66537,26.571655,75.447044,5.932 252,602.3028,-55.91295,53.701904,133.83995,5.916 252,-6.458833,489.46283,19.22415,43.006653,5.798 252,627.62994,-16.755177,16.775513,44.9383,5.708 252,613.0413,456.18378,39.913696,104.75061,5.683 252,-11.2775755,-32.05176,29.875206,71.89904,5.613 252,585.5016,-101.337234,75.52637,234.82683,5.209 252,620.24506,221.59084,16.441833,40.43956,5.178 252,385.49405,190.50546,36.483,68.26337,5.015 252,582.6096,412.19812,72.55084,176.22058,4.988 252,627.15656,219.73376,17.37445,44.490173,4.973 252,626.5566,488.4975,21.11969,45.238586,4.956 252,501.96173,226.6457,28.693054,66.91368,4.925 252,-73.28953,265.17294,201.67633,462.28177,4.923 252,536.5594,311.9641,143.3548,338.20483,4.874 252,-21.757526,403.3172,79.40783,174.37915,4.846 252,-17.631725,-62.973305,55.777935,146.64748,4.749 252,-36.315155,-131.38733,117.667,280.7583,4.706 252,540.3517,-19.406887,56.060303,120.115234,4.661 252,489.34845,-179.35399,235.13336,424.04398,4.58 252,431.7116,180.13805,23.87732,37.367416,4.507 252,434.29062,144.48479,34.41031,65.96001,4.497 252,493.7735,227.86685,238.38745,513.19543,4.462 252,449.7826,254.15535,42.385315,87.122086,4.418 252,613.0988,-0.8836479,35.956055,108.098495,4.384 252,599.762,222.5855,35.130676,96.73427,4.36 252,573.81934,-19.948006,53.21039,121.00835,4.352 252,594.967,-45.67197,43.20038,96.953735,4.345 252,3.858952,-13.139471,14.934551,36.0461,4.339 252,505.68454,86.05124,22.308563,51.723846,4.284 252,564.7634,214.43225,33.097595,67.182526,4.276 252,426.66278,0.390625,19.128876,33.133965,4.271 252,328.79205,231.66307,22.707764,29.431747,4.27 252,-71.43262,-188.99045,212.30963,456.10623,4.254 252,249.2793,220.63531,21.530365,31.644485,4.247 252,264.3828,217.19688,23.582825,34.01619,4.201 252,619.98914,-2.4365864,17.483948,38.447266,4.181 252,272.573,195.31134,36.344574,56.463226,4.177 252,459.5976,227.22913,55.03003,109.57898,4.143 252,429.93405,246.67027,31.701721,62.88307,4.135 252,475.4945,-60.964413,55.56665,130.73161,4.129 252,604.96655,242.75113,51.2843,125.700165,4.115 252,443.63208,-60.17211,55.224487,130.58775,4.101 252,523.07385,-36.85735,55.48236,121.80202,4.053 252,563.7112,-7.3325386,39.908813,88.21921,4.031 252,286.2095,-34.933075,28.030548,61.274242,4.03 252,400.59784,198.91576,43.946503,75.67253,4.003 252,414.13895,-6.370491,50.397766,137.60696,3.984 252,279.35352,215.48534,24.931183,35.151474,3.97 252,290.30975,-17.067009,19.362854,38.751762,3.97 252,12.249201,-13.571922,58.292046,125.69014,3.968 252,614.4974,-18.508913,27.642578,68.53486,3.965 252,493.4946,204.9109,53.683502,116.18248,3.965 252,336.81125,239.68474,22.99524,31.120834,3.957 252,580.9767,-12.501926,29.975952,68.828354,3.938 252,389.67493,158.40923,30.706726,70.070206,3.928 252,444.3158,-3.1809769,52.683594,135.3352,3.924 252,507.82516,-59.194275,55.626495,128.58461,3.919 252,411.16928,-58.092056,55.61615,129.56277,3.918 252,-4.0821457,3.487854,15.45113,39.26822,3.905 252,603.7353,30.195877,52.792297,139.61935,3.888 252,345.01358,-17.194836,35.60913,60.04849,3.887 252,585.5198,54.34958,21.758728,52.642975,3.879 252,443.45703,-12.797895,15.9157715,37.263912,3.851 252,470.18298,93.35297,29.975037,67.61719,3.834 252,597.5985,46.7355,38.44525,104.56221,3.828 252,418.9757,-12.806327,17.082794,37.595104,3.82 252,361.6396,-18.36645,20.005615,39.867115,3.818 252,5.024571,0.8626137,14.181164,32.486004,3.817 252,541.97626,61.288273,26.891907,72.53348,3.815 252,430.05127,-31.718683,28.671814,70.298485,3.791 252,512.81836,89.55707,21.654297,55.70346,3.783 252,586.93616,0.33807564,19.092407,38.334915,3.78 252,435.21075,-12.139357,16.311432,36.037964,3.769 253,-5.767912,-17.77458,17.721533,42.852272,7.586 253,320.7732,187.22137,19.7529,40.717102,6.62 253,602.35065,-54.490364,53.2146,135.08867,6.225 253,627.0028,488.9095,20.21814,44.298645,6.201 253,-12.505822,478.2905,30.777153,62.893158,6.2 253,100.9842,214.29948,32.27923,68.004776,6.114 253,-11.158434,-31.708452,29.467087,72.244896,5.748 253,478.25183,202.6878,32.34735,75.77582,5.698 253,569.21454,201.46027,23.45819,43.99698,5.568 253,-6.23715,489.79865,18.640299,42.58197,5.469 253,113.8446,213.04962,32.85125,66.37741,5.396 253,627.0977,-16.099499,16.91388,45.47564,5.354 253,613.02405,457.03473,39.104004,104.78607,5.351 253,-16.796743,437.97177,54.62504,136.0668,5.325 253,622.3254,-34.17545,26.697449,76.13082,5.265 253,585.6599,-98.65394,74.79718,231.75171,5.234 253,-72.997734,265.44177,201.2663,462.90057,5.189 253,615.77277,9.157742,22.794128,60.00539,5.07 253,576.1592,-13.406097,50.16211,116.591125,5.033 253,547.12726,-15.266716,32.451782,64.17837,4.982 253,582.8152,412.50494,72.17029,176.05609,4.912 253,-17.636305,-63.508423,55.997253,144.6333,4.906 253,-36.614243,-127.9967,116.691444,276.39062,4.836 253,536.43646,311.73862,142.87415,339.30972,4.735 253,-40.50205,367.59576,110.95781,275.7453,4.729 253,489.74115,-178.35481,234.89087,424.20764,4.66 253,174.07257,209.02657,42.075775,61.119003,4.655 253,611.62683,214.66562,18.433289,31.485107,4.648 253,81.7993,224.10876,43.843613,85.282776,4.566 253,613.49756,62.469097,25.07074,81.519104,4.558 253,66.516464,226.58199,42.81707,84.31038,4.5 253,199.0614,195.00954,26.901855,37.23114,4.498 253,557.0381,-33.97431,30.239685,73.20503,4.482 253,598.26196,-5.340027,36.603027,94.18964,4.479 253,542.62195,-14.770092,52.438416,120.98357,4.411 253,491.89948,192.89273,29.575073,72.45633,4.4 253,469.16287,220.86354,30.989868,76.99754,4.366 253,619.12836,491.47327,19.192017,40.513733,4.315 253,612.9056,-0.43844986,35.35663,106.586365,4.309 253,594.92596,-41.85822,43.62805,96.5386,4.294 253,393.03912,184.62079,21.406006,34.480377,4.23 253,493.2713,226.88547,238.06744,515.07776,4.22 253,199.46674,217.83704,39.09041,60.28723,4.205 253,191.37283,200.36113,40.50467,63.14131,4.195 253,351.89014,193.57889,25.764893,44.03415,4.184 253,93.02092,202.58217,54.6678,101.39464,4.125 253,585.1849,314.56982,23.739075,40.87726,4.099 253,385.77887,179.88022,34.26352,59.96924,4.058 253,492.30252,187.36862,54.791412,114.51163,4.047 253,-4.8512073,106.750656,16.919453,39.342056,4.003 253,509.32144,-19.560917,53.915497,126.52455,3.997 253,566.2717,207.28789,30.109741,68.35646,3.983 253,490.26517,-13.848878,17.764496,40.966003,3.965 253,179.58005,190.54373,33.298508,46.790955,3.95 253,603.9818,86.43645,51.164795,149.98776,3.945 253,-70.08408,-187.98805,210.20547,454.82385,3.943 253,521.6389,213.86604,57.04901,114.10564,3.919 253,508.3263,199.21474,31.833313,66.32704,3.91 253,496.13586,229.08662,21.800781,51.76271,3.872 253,540.97687,-32.843407,29.6427,73.984825,3.86 253,555.8273,221.67789,34.14563,70.04785,3.844 253,12.25265,-32.81266,56.6767,130.89165,3.831 253,484.3841,-14.1605835,29.340393,68.29657,3.822 253,408.72525,153.53656,59.338043,100.11284,3.813 253,621.7325,56.081436,27.910217,76.845,3.806 253,-5.625758,1.2267151,17.73394,42.422985,3.789 253,410.82043,179.8472,34.167603,55.403473,3.744 253,3.2931952,-14.967106,16.131605,39.735973,3.737 253,514.38324,213.7576,43.07733,87.32178,3.719 253,444.52917,220.80722,53.600525,139.86984,3.717 253,482.88086,-14.671928,18.076538,42.75459,3.713 253,553.79297,-18.800596,18.787354,43.4295,3.701 254,569.19855,204.1073,23.629944,50.849823,10.446 254,256.88013,191.56879,19.687317,40.4003,9.707 254,442.32013,233.16225,57.783356,154.92918,9.156 254,394.6199,179.49277,20.674042,33.300278,8.083 254,622.43665,-32.581573,27.29248,75.683815,7.287 254,-17.579224,-65.592316,56.007736,142.17307,7.232 254,-6.0054026,-17.008413,18.258196,42.143692,6.889 254,626.9861,488.23392,20.266418,44.670746,6.547 254,616.4846,203.82368,21.043457,46.684525,6.525 254,-10.898385,-31.113718,29.774002,71.227486,6.401 254,597.25323,207.90543,38.09674,89.75455,6.261 254,-12.5434265,477.95312,30.502882,62.996155,6.06 254,602.93524,-56.95357,53.093323,132.03435,5.903 254,626.9063,-20.494577,18.20996,50.012608,5.827 254,296.72406,191.59003,22.573273,39.465317,5.818 254,362.71716,202.41238,17.577148,25.710632,5.749 254,489.23584,221.62018,20.603394,42.806763,5.666 254,458.7583,203.75021,67.90558,173.24973,5.596 254,481.20084,242.10297,42.10623,114.38037,5.554 254,337.93243,210.0791,20.021057,25.788696,5.54 254,386.9867,182.31247,19.961426,29.828354,5.52 254,613.16626,456.7638,39.24646,104.9032,5.5 254,563.97437,204.17139,40.380493,73.94058,5.479 254,354.62982,197.1027,19.131317,25.638153,5.462 254,-6.3149548,490.03964,18.584972,42.318756,5.424 254,578.462,210.5549,41.20807,82.60797,5.044 254,586.38086,-99.14848,73.71527,231.01392,5.041 254,594.76373,-45.414486,43.34857,94.985306,4.987 254,462.57574,230.00003,46.896606,111.78134,4.979 254,-17.039322,438.6378,54.816597,136.15604,4.97 254,417.92117,182.3993,21.762207,35.214737,4.958 254,378.95505,191.05714,18.965027,27.68686,4.939 254,-73.204834,264.7548,200.90167,462.5211,4.917 254,345.64517,208.78407,19.197998,25.46379,4.909 254,584.11487,409.49585,70.631226,178.59839,4.893 254,-5.8108444,1.2510204,18.319378,42.824318,4.774 254,396.39264,-37.41883,55.456146,124.56166,4.77 254,-40.191704,368.38824,110.57297,273.85468,4.733 254,536.60547,311.8236,142.84973,342.48132,4.699 254,10.8966255,-39.123306,55.7824,126.11797,4.68 254,2.657206,-16.310461,17.58019,40.311806,4.638 254,338.941,201.44888,18.069733,24.340454,4.595 254,489.73108,-181.67514,234.84216,424.36084,4.553 254,371.0929,192.73833,18.513702,26.418686,4.531 254,1.7184949,-42.673866,43.39299,95.25111,4.528 254,397.1658,170.07716,29.119598,50.486008,4.512 254,494.15668,227.25952,236.02411,516.31946,4.479 254,619.0118,489.9104,19.183899,41.896545,4.466 254,378.0321,154.59872,59.768494,93.64638,4.437 254,599.5411,181.63605,36.70508,81.05133,4.429 254,430.3899,209.25447,57.878387,126.34767,4.384 254,-36.751472,-125.678474,115.86404,278.1793,4.353 254,-9.205854,-10.210533,39.590157,98.71824,4.347 254,483.6892,222.56181,31.430908,74.300735,4.335 254,455.20758,239.6376,35.476044,90.60422,4.308 254,423.85492,205.14224,87.945435,228.5458,4.218 254,425.188,196.11584,20.417816,35.06363,4.207 254,544.28766,182.29826,54.325745,102.69707,4.174 254,379.19284,201.47859,18.48233,28.028564,4.086 254,391.8465,180.98218,60.845093,131.44626,4.07 254,401.37894,157.51726,44.934814,71.26216,4.068 254,617.83105,-20.847391,19.853638,49.360546,4.019 254,322.71887,-17.760317,17.107025,42.150715,4.019 254,387.81696,-8.043961,42.16266,87.92123,4.015 254,614.06714,366.65076,26.986267,75.5578,4.011 255,618.5485,193.89462,20.505188,57.60643,13.021 255,401.92853,177.3183,23.970764,41.790085,7.711 255,417.36798,179.10242,22.219238,42.165176,7.01 255,346.12625,166.39198,18.84143,33.066452,7.0 255,621.6132,476.24786,29.10382,67.833435,6.252 255,627.2737,-18.099337,17.22406,47.333492,6.231 255,570.49115,197.88077,51.61847,148.73111,6.197 255,611.0814,-47.55241,41.007812,99.98264,6.067 255,-6.046092,488.9071,18.539124,44.032654,5.902 255,-17.987926,-65.14527,56.165443,149.89996,5.89 255,-8.31421,464.2531,37.300415,92.746704,5.862 255,177.98407,185.83403,22.829132,42.98517,5.758 255,511.19064,210.57414,29.654205,76.6263,5.57 255,117.50871,231.4705,40.83127,56.32646,5.564 255,573.72003,179.35391,31.757385,77.42496,5.489 255,-5.4569364,-17.119173,17.110336,41.53463,5.472 255,306.81586,185.09677,18.13559,25.383926,5.448 255,425.29425,183.45963,22.195557,41.593887,5.407 255,572.94885,-18.831032,52.675964,133.72997,5.269 255,309.5281,3.1004543,28.6716,63.92546,5.221 255,602.85345,429.74228,56.84198,143.36276,5.055 255,536.14716,309.91034,143.56665,343.69836,5.035 255,-11.343174,-32.26721,29.555363,72.23603,4.997 255,-73.38954,266.4513,201.28156,460.53174,4.977 255,-21.471016,403.56677,79.20879,174.5155,4.876 255,300.04657,187.39644,17.586975,24.996262,4.817 255,58.462715,154.64346,61.612434,110.39444,4.789 255,489.3499,-181.75374,236.54852,425.20755,4.773 255,-2.2465873,173.67142,30.571022,62.97838,4.762 255,613.541,165.88904,33.180054,100.38165,4.717 255,493.02252,226.2724,237.92236,517.5876,4.711 255,314.80704,185.0916,18.691742,26.100357,4.709 255,450.50848,191.24658,43.976074,72.95056,4.691 255,354.0193,174.45819,19.966187,32.350235,4.679 255,437.48425,193.02425,28.84726,59.882126,4.655 255,428.13025,77.00952,31.268494,70.49985,4.538 255,378.34015,182.81856,21.304352,30.902435,4.531 255,563.28516,274.41013,30.518555,71.953766,4.489 255,586.1582,-103.34222,74.90082,238.34232,4.472 255,103.98155,230.74492,40.386124,65.46361,4.465 255,595.4614,207.01419,38.707886,112.400085,4.445 255,529.6214,223.21527,43.56195,96.46167,4.418 255,9.668693,176.03186,33.490547,52.343887,4.416 255,613.28546,217.51971,37.622803,117.00311,4.409 255,494.36526,105.95589,31.382294,68.267654,4.406 255,480.97894,239.76352,44.055298,118.22711,4.398 255,554.08075,489.12375,20.644653,41.27408,4.38 255,498.57425,241.42142,43.358673,114.87506,4.362 255,442.5797,208.429,32.477173,65.02229,4.354 255,571.14795,243.64972,35.3739,88.29669,4.324 255,484.9447,201.69833,42.970703,76.13541,4.312 255,362.00415,176.33922,21.501984,30.902512,4.308 255,442.81897,200.27087,57.989624,135.09491,4.296 255,562.2857,489.17828,20.466248,41.200806,4.236 255,25.824835,158.22093,59.985497,101.07814,4.213 255,258.59418,199.29651,34.700684,59.632294,4.206 255,385.78198,179.24655,19.811432,30.291412,4.201 255,88.06523,155.01703,62.74051,108.4538,4.193 255,466.92352,200.57019,42.39032,75.30316,4.181 255,476.26492,-14.013557,33.2601,66.64986,4.177 255,419.48868,186.53845,32.142548,64.28201,4.174 255,506.73737,97.30188,29.881714,70.52368,4.103 255,403.02173,180.78685,42.11389,81.16664,4.095 255,507.60474,193.33917,51.41754,118.387695,4.074 255,393.0614,183.97235,24.02475,39.47522,4.056 255,103.68828,182.4278,63.10022,98.86319,4.049 255,545.8546,488.76248,20.387878,41.98062,4.025 255,68.73135,179.31903,34.038544,65.267365,4.025 255,294.70392,-4.6953926,28.659454,63.460117,4.015 255,607.81805,183.66557,26.590637,66.894485,4.009 256,299.34888,192.192,17.971191,34.459763,11.114 256,432.82312,208.97992,22.30597,56.33008,7.482 256,-17.969372,-64.40341,56.3307,149.22334,6.806 256,307.50272,196.89555,16.147186,30.256165,6.791 256,621.42456,476.16156,29.306091,67.863525,6.612 256,-11.663486,478.77402,29.618664,62.15274,6.429 256,408.5281,211.09209,21.999298,40.955475,6.295 256,233.23776,235.03508,20.18512,27.05922,6.253 256,611.5087,-48.99591,40.629578,103.99332,6.214 256,-6.123895,489.23038,18.56375,41.698883,6.176 256,627.1943,-18.050674,17.34613,47.872017,5.681 256,2.4383926,292.19778,32.694332,64.30383,5.582 256,301.27377,204.2778,14.141113,29.670105,5.507 256,316.3209,193.19258,16.360962,31.449814,5.471 256,585.30206,-98.91724,75.26044,232.54977,5.444 256,-5.4964104,-17.219378,17.23024,42.265976,5.385 256,323.5796,199.43927,16.841858,30.14772,5.361 256,-4.806976,172.78741,18.38253,40.156403,5.336 256,293.95703,200.07219,16.560577,28.597092,5.272 256,105.312584,219.72488,24.49366,46.50876,5.244 256,603.0209,429.12244,56.981323,144.9419,5.241 256,618.38367,488.63956,20.681335,43.100677,5.174 256,-73.24664,264.98676,201.48105,463.28815,5.146 256,429.0668,0.63528824,28.986725,70.84126,5.054 256,587.2623,70.94028,32.658752,76.42355,5.054 256,-11.261997,-32.375523,29.595268,73.28816,5.039 256,490.62476,-181.2539,234.2605,426.78796,4.903 256,353.79013,201.22244,18.429077,30.913345,4.873 256,-21.538425,402.8857,79.1658,175.00577,4.861 256,-6.911395,217.36642,19.222923,36.77411,4.837 256,394.15607,201.53517,33.184174,56.843246,4.806 256,536.35956,311.19983,143.5799,342.35034,4.639 256,492.87384,228.20914,237.44348,514.08826,4.615 256,219.95941,203.51288,15.620483,27.247665,4.574 256,580.7818,226.7612,39.314514,103.372284,4.57 256,8.610129,188.39302,61.142593,99.24028,4.57 256,1.3117659,187.24124,20.69282,41.590942,4.564 256,187.94989,227.25351,32.4489,58.494537,4.519 256,553.6366,489.686,21.140137,40.957306,4.517 256,538.0371,490.18475,20.083374,40.187073,4.514 256,545.8214,490.1243,20.356201,40.398956,4.494 256,554.7227,257.84442,33.792664,63.056335,4.469 256,561.7364,487.7081,21.539612,43.226105,4.467 256,242.05243,226.00027,17.364502,24.30159,4.467 256,347.70605,-31.644201,30.848755,63.06078,4.455 256,530.34814,489.52698,19.81482,41.07367,4.42 256,459.5194,-32.157333,57.479736,126.41402,4.385 256,322.97116,181.77985,17.58908,32.061493,4.355 256,427.0651,-27.272495,57.338867,124.78383,4.288 256,260.3816,210.44263,16.529999,25.385254,4.285 256,456.91348,270.44836,32.140747,79.94122,4.249 256,-6.769814,232.41,18.253702,38.270172,4.232 256,565.33044,231.79619,40.880432,97.42317,4.212 256,569.4033,486.40524,22.169434,45.710907,4.099 256,211.92923,213.54065,16.881287,27.375061,4.066 256,-6.1187277,273.028,18.755402,41.534637,4.063 256,398.13086,-13.103172,54.21884,111.44952,4.036 256,3.24831,255.81961,33.542175,61.552734,4.027 256,589.3059,-60.532753,53.491455,141.85881,4.024 256,597.9357,225.95415,37.6958,107.47749,4.017 256,2.2510028,207.55455,42.21532,83.497055,4.015 256,-8.327737,40.37008,38.38723,102.33082,4.006 256,539.5136,-20.657642,55.46924,124.98514,3.999 256,-5.482168,201.82526,17.885248,38.680023,3.995 256,482.4754,-5.372608,44.576294,90.657425,3.993 256,379.79266,184.79971,54.78766,94.71884,3.982 256,347.50787,198.07887,17.006958,27.557495,3.978 256,228.26389,203.68533,15.194183,26.11441,3.976 256,-5.01955,155.23987,17.923662,40.13788,3.927 256,581.9436,29.211697,27.204834,65.44969,3.923 256,301.9765,182.89442,25.81186,50.099915,3.918 256,569.652,116.77704,32.264282,71.181915,3.916 256,513.8311,-8.877716,44.845398,92.21419,3.903 256,267.21585,209.36351,16.352325,25.411682,3.892 256,602.84924,374.12277,32.10797,70.873505,3.884 256,414.27643,-34.349606,28.650879,74.8454,3.864 256,574.45123,332.4906,53.602844,149.24619,3.839 256,574.42865,-9.415779,52.717896,151.64386,3.827 256,395.63477,6.3573036,30.249023,55.862206,3.824 256,235.11075,227.86665,17.360794,23.993805,3.822 256,-15.463352,157.6688,50.2084,133.29544,3.822 256,615.7977,247.06651,27.090454,81.97438,3.822 256,585.3241,404.20758,58.93982,143.21161,3.819 256,31.981312,279.11835,37.516056,55.67047,3.81 256,252.10953,222.8316,16.201416,23.628906,3.809 256,316.93182,207.1892,15.613312,31.068909,3.798 256,159.96776,197.2193,29.3441,59.515533,3.795 256,450.86206,-3.2557373,42.600708,91.78968,3.792 256,9.541328,229.33786,59.88233,124.74432,3.79 257,-0.82315564,197.76955,24.335009,59.071915,7.612 257,546.13043,195.00137,53.398315,146.53888,7.105 257,622.9335,-33.713,26.615479,77.78645,6.986 257,626.5066,487.37347,20.839233,46.231934,6.938 257,612.9703,454.25226,39.995728,106.79761,6.636 257,473.7406,263.4416,32.401215,65.52838,6.388 257,561.60944,201.98697,31.857544,89.631744,6.351 257,314.94138,183.52667,18.276123,29.633453,6.216 257,-17.105368,-62.96399,56.073593,146.79443,6.138 257,-8.846969,466.4445,37.550472,89.407196,6.087 257,627.12085,-20.15858,17.184631,50.13886,5.977 257,-5.3881855,-16.688833,16.706724,42.9485,5.881 257,-11.443493,-33.22814,30.016975,76.09558,5.838 257,1.729666,257.1394,34.223743,70.88483,5.644 257,568.32355,193.0593,51.073975,137.3693,5.307 257,-6.3487725,488.7561,19.344402,42.785217,5.223 257,602.87164,-57.220642,53.143433,135.78966,5.198 257,554.9274,288.93283,33.661377,93.5903,5.16 257,618.17725,487.81262,21.113892,43.696167,5.149 257,490.42218,-183.6015,234.92206,427.68323,5.071 257,308.0057,184.13701,17.957397,28.05806,5.035 257,586.27484,-101.212036,74.62579,233.23483,5.033 257,536.23566,309.42126,143.706,343.79498,5.03 257,583.41614,411.34686,71.02203,175.91254,5.014 257,-73.14169,265.68152,201.29073,462.0056,4.972 257,-17.307648,439.25922,54.967197,136.53326,4.85 257,493.60852,228.8617,237.14148,513.8948,4.829 257,267.79834,182.0773,16.487885,29.422226,4.811 257,259.8817,181.78296,17.385315,30.184937,4.787 257,299.5302,186.38332,17.143646,25.894989,4.768 257,284.85757,185.77824,15.623138,25.934769,4.759 257,252.33278,184.1,17.017868,29.370804,4.679 257,573.1852,-22.220123,54.75708,126.159164,4.642 257,292.35785,187.3511,17.165802,25.453278,4.599 257,482.0514,252.48532,43.26007,101.87851,4.586 257,-40.422134,366.98486,110.67175,275.90076,4.569 257,469.2557,25.346527,30.23767,75.79342,4.553 257,459.97577,261.00098,34.348938,81.08029,4.538 257,594.1362,-45.898376,44.699036,97.674355,4.533 257,550.55994,197.456,31.130005,74.91763,4.512 257,372.6373,184.39607,30.188324,58.545013,4.498 257,596.7511,234.47816,38.658997,108.85503,4.478 257,275.86243,175.81017,16.3779,30.19983,4.456 257,-15.432864,182.53168,49.68803,124.661224,4.402 257,545.78613,488.19525,20.542847,43.164,4.284 257,582.1025,178.95332,38.797607,95.38582,4.238 257,355.44415,192.41423,32.307953,56.389557,4.207 257,569.6185,488.78763,21.3219,42.645782,4.189 257,5.654433,468.64648,37.75067,92.992676,4.188 257,553.4809,489.09564,20.961914,42.411987,4.187 257,247.33534,161.23204,28.71022,54.18132,4.147 257,467.37442,-15.705078,31.990967,71.95411,4.144 257,0.5599165,201.36967,39.80879,77.7036,4.12 257,618.46326,-20.437914,18.157166,48.342766,4.103 257,561.5235,488.56125,21.091248,42.38028,4.092 257,527.6527,217.913,58.552673,147.9559,4.054 257,320.81885,180.88889,20.133575,31.51123,4.04 257,-0.19967198,128.65446,27.981836,79.53381,3.97 257,531.25714,195.7567,43.776123,98.42442,3.963 257,577.6583,487.7546,21.408325,43.921722,3.96 257,115.98011,219.88191,33.984352,62.69557,3.924 257,162.88704,185.65016,18.37912,26.660263,3.909 257,24.599174,183.42552,59.24575,101.32234,3.895 257,508.5187,205.48596,57.93808,121.06238,3.893 257,459.04205,240.13815,59.584778,134.86984,3.89 257,596.01843,463.4789,40.330994,95.39487,3.876 257,152.97614,125.24724,35.971954,69.787476,3.852 257,340.94,192.1058,31.84436,51.73755,3.848 257,433.09464,239.67381,45.54129,78.86095,3.843 257,492.93207,257.92932,28.733582,64.18359,3.838 257,593.5583,486.6497,21.618164,44.086823,3.837 257,211.90598,192.60849,16.388947,26.44371,3.829 257,598.5003,191.85786,37.54492,103.89879,3.828 257,9.959369,150.32808,58.35066,114.377884,3.826 257,491.56985,-38.785057,57.760468,129.33205,3.822 257,321.89807,195.2692,43.87033,104.62045,3.815 257,449.81873,-8.66991,45.129242,92.12814,3.8 257,428.20667,-35.841713,57.740265,125.50676,3.792 258,537.09985,156.16714,20.76947,39.90123,8.171 258,612.8138,453.1593,40.23297,109.18231,6.583 258,-16.96899,-63.581947,55.89408,148.3986,6.564 258,-5.6590424,489.46024,18.032658,42.55246,6.352 258,-8.777417,466.49774,37.38906,88.93921,6.309 258,557.94574,295.8552,47.472107,80.90668,6.126 258,-11.131911,-32.452087,29.48217,74.89658,6.099 258,283.99072,179.94727,18.084259,30.88095,6.034 258,-5.619362,-17.27302,17.106005,43.20655,6.034 258,235.03632,172.88261,18.687714,31.29396,6.003 258,227.15137,173.23833,19.840393,30.680878,5.948 258,617.7328,187.54865,23.656494,82.71301,5.875 258,259.91275,179.60394,19.163147,27.804382,5.848 258,504.86804,189.02185,21.42688,41.08014,5.679 258,364.75433,178.70872,29.102814,53.426605,5.673 258,627.18195,-18.259352,17.388977,47.338013,5.396 258,626.3696,486.44882,20.912231,47.59549,5.377 258,267.65085,176.97418,17.855255,27.666962,5.344 258,536.1925,310.52444,143.49683,340.35214,5.3 258,611.03314,-47.921597,41.741455,101.42961,5.287 258,290.53555,175.00557,19.624695,30.282867,5.19 258,169.07437,183.18813,20.600006,30.165894,5.181 258,369.22388,172.97076,19.402771,38.53578,5.146 258,-72.80643,266.47147,200.55939,460.2866,5.087 258,566.2478,286.95056,59.486572,131.23999,5.03 258,243.1227,174.02966,18.016556,29.960419,5.024 258,550.87427,312.7996,39.18866,75.888245,5.017 258,585.4323,-102.933426,76.34076,237.50699,5.007 258,-21.31915,404.0949,78.49047,174.33734,5.005 258,492.73956,229.72696,238.7268,510.6743,4.854 258,582.93066,411.34637,72.04663,176.65466,4.785 258,405.84833,-11.38962,28.395386,63.336983,4.73 258,541.5333,149.43207,23.604553,40.684387,4.716 258,545.41583,173.7783,21.845398,35.646774,4.686 258,252.40637,176.85326,17.231812,27.917374,4.552 258,573.8692,289.14212,46.462402,72.25601,4.529 258,589.56586,11.196358,29.977356,75.53188,4.521 258,274.94885,173.52953,18.776855,29.912094,4.515 258,617.81555,487.81332,21.503845,45.000275,4.513 258,574.2776,-18.549946,54.159363,129.0513,4.51 258,614.6681,294.16266,25.992432,78.32559,4.497 258,511.4566,183.55331,21.752075,39.127335,4.484 258,398.67792,-0.13452911,26.690735,58.45011,4.459 258,220.13028,174.3075,19.204437,28.956635,4.432 258,494.13214,183.54951,27.312988,66.194824,4.43 258,603.17816,343.94922,32.297607,82.27042,4.39 258,120.86455,175.22406,21.27359,29.793808,4.366 258,298.1751,181.32812,18.954681,28.539383,4.315 258,363.0785,246.06075,33.712006,62.82219,4.299 258,469.5305,167.82571,27.471771,66.4906,4.287 258,410.9009,1.4297543,18.78479,37.15171,4.241 258,488.7358,-179.74564,237.54996,420.8782,4.23 258,-2.1966577,186.38776,26.400023,73.15259,4.215 258,554.2236,160.91745,20.877808,39.5912,4.2 258,457.90588,282.4395,33.908966,68.354675,4.192 258,595.0266,291.17883,41.598083,91.49234,4.188 258,603.5539,-25.45325,51.902954,137.77925,4.166 258,596.38654,460.2309,40.37744,99.65485,4.132 258,419.56104,176.56757,17.72052,34.550262,4.12 258,545.44904,489.00528,20.800049,42.181793,4.118 258,-38.348213,-126.3889,118.67585,275.8457,4.107 258,552.63416,183.42155,23.153992,38.15822,4.089 258,420.86197,-13.871033,28.662903,68.05051,4.089 258,540.67126,287.33374,59.606445,144.77646,4.083 258,385.54932,189.82425,45.789948,73.15878,4.061 258,526.02936,77.83294,28.019897,74.766884,4.06 258,105.79149,174.96191,21.31285,31.558868,4.04 258,538.44244,173.0769,19.193604,35.30214,4.034 258,522.12244,-33.39824,58.947388,124.33249,4.026 258,553.01935,135.76431,21.439087,44.732452,4.019 258,587.88403,-15.79166,33.465454,67.80816,4.008 258,530.2367,146.62692,21.257324,38.791077,3.989 258,431.70087,172.6097,26.718384,58.218185,3.968 258,2.646042,490.64267,18.338108,40.88211,3.949 258,562.89233,155.4929,18.807556,36.862473,3.925 258,162.43507,172.98508,22.142426,33.414825,3.924 258,492.58685,31.292656,30.284729,70.80397,3.893 258,136.32736,136.82812,63.14148,98.22931,3.884 258,228.89883,159.32018,29.005402,47.3217,3.883 258,-5.2717543,186.48587,18.513508,45.658447,3.88 259,452.41074,183.18138,19.938446,38.80977,7.229 259,613.4614,449.5203,38.92871,113.90286,6.969 259,233.89786,187.76254,19.928131,31.646606,6.748 259,626.7064,487.77878,20.653503,46.1846,6.609 259,285.01367,192.45406,15.306091,28.704697,6.487 259,622.22235,-32.595936,27.829468,74.820915,6.447 259,242.27675,184.70352,19.442581,33.14995,6.124 259,-8.775019,465.90863,37.458576,89.40735,6.074 259,252.30421,187.60962,16.533035,29.77739,5.945 259,-16.90585,-62.78603,56.121716,145.92796,5.867 259,372.7813,195.59465,32.54184,56.548904,5.804 259,267.6469,200.93231,15.664581,25.75827,5.671 259,-5.7434206,488.85916,18.497799,43.404083,5.638 259,225.15488,181.11476,22.504364,36.300674,5.56 259,-11.377654,-33.23505,29.523197,76.13914,5.552 259,260.82605,195.16408,16.593689,27.848465,5.463 259,-5.476248,-17.743048,16.897873,43.73227,5.4 259,105.12793,190.91492,21.279655,28.9142,5.375 259,377.81223,195.76653,21.622833,36.500107,5.358 259,152.96907,199.74854,20.563034,31.907272,5.297 259,626.3367,-20.572256,18.636597,48.854248,5.272 259,145.50346,187.82431,22.745773,35.665146,5.255 259,-72.77349,265.45407,200.96042,461.9832,5.164 259,315.71426,202.04529,30.907806,49.644928,5.149 259,277.45645,191.95717,15.095306,27.54741,5.139 259,390.0783,215.19292,25.832764,38.67151,5.132 259,366.7241,219.72916,26.789642,34.356384,5.056 259,589.6138,177.45401,27.198242,65.718765,5.053 259,-21.278358,404.34616,78.641426,174.1398,5.007 259,147.63155,171.66846,30.281418,55.09201,4.963 259,583.8801,409.99402,70.65167,177.0639,4.934 259,2.979263,217.78964,17.512436,32.726944,4.912 259,602.68317,-56.827156,52.779846,132.97105,4.9 259,97.78042,186.64505,21.186554,32.468765,4.89 259,78.82165,192.50922,47.500908,69.38837,4.842 259,492.69345,230.07944,237.98679,513.55457,4.803 259,535.5867,309.77612,144.47485,343.2323,4.778 259,291.22363,192.87827,15.552155,28.414612,4.771 259,120.207794,154.88687,62.857758,97.975525,4.67 259,228.65913,175.8842,29.019943,50.687897,4.656 259,218.98009,189.18419,19.882858,31.045364,4.644 259,323.6203,198.4772,17.986938,27.986633,4.489 259,381.09927,182.43248,27.09259,52.64505,4.481 259,46.857243,187.08678,49.089657,68.08444,4.454 259,86.69842,155.55644,63.287025,97.62007,4.449 259,253.15614,200.11888,16.255844,28.665298,4.391 259,152.72647,152.17912,61.645767,99.86539,4.338 259,114.08932,187.56609,19.576042,31.183975,4.307 259,594.3587,430.5186,43.396423,100.1478,4.22 259,54.70601,154.7578,62.62867,101.68379,4.22 259,213.37497,176.06438,29.897705,50.521576,4.21 259,89.164505,191.13808,22.455948,31.135468,4.208 259,120.89841,189.12688,20.71614,31.20465,4.173 259,86.192764,174.7527,30.390427,52.16649,4.159 259,300.06174,191.40784,14.703033,24.143707,4.159 259,415.68286,0.39487267,25.750885,58.820724,4.139 259,211.35855,191.35738,19.242584,30.787048,4.112 259,-10.776385,231.46194,39.57375,96.35974,4.108 259,604.0032,-20.098911,32.578186,65.94718,4.101 259,111.39189,192.21812,47.501755,66.64046,4.091 259,546.00995,489.0487,20.706299,41.36499,4.066 259,268.94388,189.77432,16.354095,28.194046,4.064 259,227.71118,196.46841,17.403595,28.488556,4.057 259,441.21964,11.004457,20.133392,48.035416,4.037 259,138.54524,189.43454,21.092758,32.26715,4.022 259,436.01773,18.510374,18.58255,44.319664,4.018 259,106.19121,170.5427,20.235214,37.139755,4.016 259,330.7082,164.27948,17.298584,31.114182,4.004 259,419.1719,-11.402068,16.426544,38.546345,3.994 259,-38.68568,-126.709724,118.87218,276.85028,3.979 259,618.5063,490.1787,20.996887,42.563354,3.963 259,15.263886,185.19467,48.124435,71.57721,3.939 259,598.7615,157.80878,34.308167,96.765076,3.9 259,-16.52714,158.05025,51.358047,129.86656,3.899 259,-11.311278,28.515942,30.260925,69.785065,3.889 259,203.30879,192.09454,18.675705,31.797943,3.884 259,492.28696,265.5159,30.898895,57.700714,3.867 259,244.42453,196.51231,16.601685,30.804108,3.861 259,10.768437,189.90265,73.42664,167.01099,3.853 259,427.13135,-11.228329,15.991669,39.14241,3.849 259,561.4193,487.7334,21.573425,43.455505,3.83 259,302.5797,141.74213,28.846313,58.298264,3.817 260,569.3864,196.28888,21.737122,47.658127,8.447 260,601.556,218.13274,22.779297,39.13228,7.213 260,626.91266,488.5149,19.878235,45.271973,7.085 260,153.98923,206.44115,22.810852,46.636032,6.869 260,289.96783,226.64,19.273956,39.551437,6.615 260,482.67914,216.89499,19.575256,37.76129,6.575 260,-16.987324,-63.08841,55.97491,146.8009,6.137 260,587.77045,226.0954,32.40979,57.67462,6.08 260,-11.76725,477.13104,29.850113,64.665344,6.008 260,590.3774,248.8175,24.02771,37.599487,5.986 260,581.06573,205.41075,28.884949,60.543716,5.978 260,366.40887,249.89632,26.488525,41.43248,5.938 260,627.35486,-17.874207,17.090881,45.819218,5.848 260,211.61237,207.41354,32.780792,53.423706,5.732 260,282.36102,226.99525,20.090118,41.271927,5.627 260,-5.2160826,-16.611649,16.507862,43.19903,5.488 260,576.6086,201.1957,22.012695,48.705322,5.482 260,606.36615,194.48328,28.059998,59.792053,5.434 260,612.7114,456.41248,39.111023,106.02832,5.382 260,-11.273103,-32.630863,29.62815,75.30905,5.277 260,623.3857,-35.013496,26.140015,75.21368,5.247 260,-73.07783,265.3659,201.14227,462.49896,5.241 260,583.5643,412.88293,71.05914,175.64856,5.234 260,-5.871451,488.53397,18.601597,42.951996,5.138 260,594.25555,228.61694,21.586365,38.562805,5.137 260,-21.701143,403.16666,78.86476,175.22726,5.069 260,-3.5045028,218.87207,15.370911,39.8862,4.983 260,232.63333,220.01826,22.249557,34.43846,4.971 260,604.0322,-56.846016,52.939697,134.44344,4.809 260,603.47314,218.74367,30.615967,57.241013,4.789 260,217.27348,226.5781,21.735184,33.664978,4.778 260,535.8628,310.39825,144.56433,341.88678,4.739 260,618.755,490.4927,19.626892,42.542145,4.635 260,493.6757,227.93427,237.72842,514.8935,4.599 260,359.11462,243.97258,26.136047,37.301224,4.567 260,225.3441,225.6818,22.108582,33.87668,4.559 260,3.2239084,221.37958,16.326584,38.4317,4.555 260,266.41446,226.4607,18.419159,33.438934,4.519 260,-5.942813,85.568085,19.311405,42.884277,4.468 260,146.54129,201.19537,40.908432,68.913086,4.43 260,396.99054,221.66754,27.595978,61.871796,4.415 260,66.93322,213.024,33.35607,49.5092,4.412 260,80.10209,221.85744,46.17862,70.32478,4.393 260,97.513466,224.38101,21.219994,31.34729,4.361 260,615.5337,226.09212,23.527405,44.824142,4.36 260,563.2107,203.78546,20.954346,44.732117,4.344 260,241.34035,223.08334,20.799118,33.76297,4.335 260,80.83566,224.53459,23.141632,31.749313,4.323 260,56.099716,183.77948,61.97815,101.90137,4.243 260,589.2219,188.8923,29.39917,60.820892,4.222 260,104.878235,224.48,22.38655,32.88179,4.199 260,89.74826,187.2371,61.62198,98.93346,4.195 260,64.41502,218.06204,24.02295,36.169067,4.191 260,112.49063,220.76907,45.710846,69.80377,4.167 260,24.309366,180.96924,61.35309,103.85144,4.138 260,51.70307,142.87431,33.502777,73.224915,4.073 260,393.9084,258.7402,22.833282,34.603424,4.072 260,89.80548,228.49745,20.490913,30.349197,4.01 260,595.00073,-46.64058,43.747253,97.48184,4.0 260,72.347305,231.2035,22.826202,30.285263,3.989 260,123.09706,188.3138,59.067673,98.34892,3.983 260,259.49017,235.89395,32.60968,56.665283,3.973 260,-38.157867,-123.0333,118.90337,274.57864,3.955 260,375.8917,258.31137,22.853973,36.24472,3.889 260,3.3963501,-13.208504,15.32129,38.983475,3.873 261,426.5979,225.6853,19.150879,48.227814,18.201 261,296.53668,229.85136,21.24405,42.765396,12.797 261,202.52332,213.11845,33.842056,58.930984,9.601 261,-5.0646734,-16.211803,17.044382,42.140625,7.776 261,-0.5843401,192.4717,25.505562,70.75813,7.758 261,58.36017,233.30891,20.19873,31.54271,7.708 261,422.61725,223.64304,27.186523,76.566345,7.633 261,250.25339,232.03882,19.6474,35.798798,7.083 261,411.91647,225.27782,18.37436,43.76332,6.576 261,-11.701623,476.4283,29.935337,66.254,6.27 261,-10.691599,-32.58605,29.688519,73.796776,6.194 261,626.9673,488.11414,19.936646,45.828064,6.14 261,8.525421,207.223,23.285595,48.78334,6.053 261,224.68396,219.77673,21.739212,40.557373,6.002 261,186.44272,215.0896,35.990967,57.249542,6.0 261,-17.296373,-64.27783,55.994965,142.8573,5.946 261,258.6969,226.60883,16.073914,34.19037,5.897 261,627.39246,-17.661072,17.04602,45.6601,5.821 261,-6.040683,488.4057,18.98906,43.290527,5.781 261,50.127125,230.87566,20.687992,31.791824,5.757 261,611.30554,-46.43546,41.31903,97.812195,5.603 261,420.72116,222.74763,18.285767,40.56099,5.451 261,299.9193,226.5696,15.80484,26.089325,5.445 261,612.94806,456.55713,38.884155,105.088806,5.443 261,-21.628319,403.82166,78.63498,174.67273,5.297 261,229.34843,222.21265,29.941208,55.40143,5.213 261,-73.2816,265.35318,201.13141,462.34396,5.191 261,583.3335,412.86578,71.41327,175.80914,5.137 261,362.50198,220.81462,16.431488,28.911255,5.112 261,208.53972,201.00229,22.791245,46.796616,5.102 261,36.922203,211.76593,31.106796,53.233093,5.089 261,347.21014,230.74274,18.091217,31.448914,5.068 261,355.60104,228.90857,17.052216,32.067688,5.057 261,5.7365904,182.14102,29.277973,65.73656,5.02 261,66.198746,233.29683,19.875626,33.817215,4.974 261,363.4193,232.14264,16.88034,29.181732,4.93 261,307.41687,226.70595,14.77124,23.144943,4.909 261,41.81864,230.29034,21.258217,31.673187,4.859 261,17.837183,205.37056,34.4273,58.433884,4.835 261,330.70682,230.41264,19.003021,31.494766,4.787 261,24.01226,220.38829,24.264442,37.093674,4.737 261,536.1314,310.46796,144.02399,340.6789,4.736 261,-4.7345643,187.72769,18.530483,47.0381,4.632 261,3.3124475,107.74206,17.583328,48.881813,4.586 261,338.66837,230.61832,19.41571,32.523773,4.53 261,493.7226,227.49579,237.54498,514.1469,4.516 261,246.83417,232.66179,27.506592,57.538834,4.446 261,215.9445,223.72131,23.971481,42.24539,4.399 261,378.5614,243.74023,32.904602,57.834778,4.396 261,-11.017078,215.83679,39.439316,93.91321,4.393 261,294.18375,225.09877,16.627716,34.294632,4.363 261,385.6313,264.24213,35.189056,60.275604,4.352 261,2.6715164,-14.176216,16.679,39.92291,4.347 261,347.93024,203.02078,17.778992,33.52104,4.336 261,-4.144739,93.83674,15.998669,42.269066,4.324 261,404.6264,220.62643,17.53543,38.064423,4.289 261,-15.355146,90.49673,50.49279,144.525,4.245 261,-9.224618,168.14792,27.594193,72.38913,4.232 261,406.6826,225.01724,26.678162,69.99176,4.201 261,268.68475,224.89653,14.668396,34.391525,4.2 261,276.1562,223.06107,14.062073,35.68097,4.17 261,362.66208,206.40434,18.2128,30.692627,4.135 261,-3.5809312,120.56761,16.068613,43.74884,4.128 261,-4.0256567,175.11743,15.344511,39.185043,4.097 262,461.8302,225.43544,27.254211,69.84813,24.83 262,297.78967,232.37074,20.381683,43.103256,20.318 262,192.86858,212.95236,36.329285,57.303894,9.743 262,-4.448237,-15.663734,16.617207,40.318348,8.271 262,211.98105,213.77603,33.83307,59.39856,7.734 262,448.44806,232.17253,20.6268,50.081253,6.788 262,223.759,218.89235,24.823914,41.0338,6.667 262,252.00528,223.90567,17.919678,35.460052,6.597 262,-8.9774685,466.81558,37.560066,89.06033,6.358 262,305.90915,226.86838,16.780823,31.170929,6.103 262,626.7317,487.99338,20.407532,46.052094,6.102 262,-10.747385,-31.74902,30.158518,70.8395,6.062 262,228.03601,220.40918,31.425385,56.37433,5.826 262,627.33435,-17.901901,17.127197,46.259266,5.759 262,477.70618,-16.000555,28.411346,69.57438,5.682 262,-6.315772,488.38303,19.19513,43.010956,5.656 262,603.966,-55.63147,52.26886,137.84268,5.642 262,185.26517,227.3451,35.83734,60.85443,5.606 262,612.9367,456.67215,39.02527,105.33505,5.535 262,3.9672005,-11.465077,15.904466,35.46098,5.477 262,474.3199,213.86787,20.669983,43.54271,5.23 262,441.86124,226.257,18.894379,36.87303,5.178 262,-5.0484586,231.40637,17.806736,43.15451,5.174 262,-21.318851,404.88254,78.507355,173.2811,5.138 262,-73.16301,265.87143,201.44392,462.33768,5.122 262,93.07588,199.25414,29.299011,60.027695,5.033 262,-18.374493,-64.333015,57.500683,144.27534,5.017 262,583.1079,412.95007,71.86102,175.87415,5.014 262,238.12009,226.29013,31.81427,63.318146,5.011 262,218.27979,226.50499,34.743195,68.31105,4.884 262,452.3799,232.2408,40.17862,94.51393,4.845 262,301.30103,226.25386,13.8020935,26.535004,4.832 262,205.94238,212.1489,27.285294,44.578735,4.76 262,623.326,-34.928436,26.151428,75.56209,4.755 262,536.48694,310.9767,143.03632,340.3801,4.75 262,480.77124,209.55066,20.932709,41.7323,4.679 262,1.0732436,209.13937,24.845957,69.776764,4.624 262,471.24542,-3.8061523,25.990265,68.828804,4.576 262,244.14279,221.66687,18.890625,36.53058,4.567 262,445.65265,228.97081,28.89447,84.39046,4.551 262,166.58739,228.83524,27.492844,39.648224,4.504 262,337.51157,232.66245,21.603973,38.052002,4.465 262,255.84064,238.78142,19.497467,38.182632,4.465 262,493.15424,227.42908,238.49182,514.75183,4.432 262,5.4131007,469.5627,37.788795,92.01138,4.418 262,258.16284,220.89105,16.361542,33.33763,4.375 262,182.98386,218.2484,28.16536,41.89644,4.316 262,309.40524,221.47125,12.000214,22.052307,4.306 262,493.26355,-13.813564,29.78003,70.22401,4.233 262,422.08258,233.24773,14.260986,25.538742,4.224 262,-15.144873,159.46826,49.45411,137.49194,4.183 262,404.4516,232.72144,15.995819,27.815918,4.164 262,-10.035933,215.65985,27.897707,71.67261,4.12 262,585.12585,-99.818405,75.5163,235.2518,4.111 262,-5.063714,82.705246,16.338224,41.29255,4.107 262,18.387623,208.42126,40.48452,80.032745,4.088 262,9.974913,-12.686843,16.940187,35.788242,4.073 262,490.0165,-178.654,235.21634,421.5236,4.047 262,429.3488,227.00648,15.302246,29.656448,4.023 263,524.98865,231.9744,28.46051,69.92462,80.184 263,497.53387,236.02573,26.771484,65.73691,71.255 263,510.30743,233.06458,26.070557,68.53137,56.02 263,39.536266,207.41063,29.618671,56.99901,27.699 263,257.748,233.02557,21.079498,36.04898,9.776 263,298.27982,232.21729,19.58551,38.94763,7.919 263,622.2185,-33.106,27.124817,76.04466,7.759 263,627.1095,-16.865946,17.62268,45.731884,7.064 263,258.85837,221.3568,16.909119,33.698273,6.919 263,-5.676188,-16.620983,17.903425,41.065334,6.792 263,559.20447,300.85474,49.583923,69.61517,6.75 263,-11.00719,-32.170635,29.711067,71.57203,6.687 263,613.30817,-15.51092,28.203003,70.64653,6.337 263,53.863464,215.72365,23.188416,48.393784,6.309 263,612.67847,452.96936,39.853638,108.67297,6.188 263,-9.00034,466.5501,37.690784,89.378845,6.064 263,264.89874,223.86168,16.52829,34.73848,5.998 263,603.1794,-54.790073,52.874756,134.22882,5.866 263,626.7788,487.49255,20.455933,46.790405,5.853 263,345.98618,227.47287,21.574432,40.443054,5.807 263,-6.01956,489.27872,18.70259,42.22409,5.473 263,252.43918,232.59238,30.738098,57.944824,5.45 263,178.45029,216.37125,35.605316,52.69571,5.441 263,-17.60801,-63.542267,56.172127,142.3125,5.339 263,337.69315,227.22777,21.552338,39.631393,5.252 263,353.87225,225.37732,21.51825,43.143433,5.247 263,500.1353,210.22261,40.81433,81.015854,5.235 263,536.23334,311.70093,143.43616,339.40295,5.095 263,-73.47877,265.44684,201.80527,463.19598,5.078 263,-21.23592,405.07422,78.714096,173.19409,5.004 263,211.80402,224.9896,32.9476,66.322784,4.859 263,582.27264,411.2326,72.820496,177.45892,4.805 263,234.4953,222.97334,19.38733,36.840256,4.8 263,-40.17042,369.05145,110.31499,274.99896,4.796 263,618.7241,-17.225983,17.77356,45.501827,4.792 263,228.65134,225.53452,31.00888,69.800476,4.769 263,69.99488,189.54796,28.594093,58.35309,4.767 263,-8.59606,4.657955,38.611195,107.79149,4.671 263,585.7124,-98.982155,74.96173,231.65704,4.655 263,113.8451,206.58267,21.053001,38.93985,4.587 263,362.69495,219.93394,19.859802,40.166824,4.531 263,419.4237,-15.223684,16.3703,36.896843,4.529 263,276.52383,219.06909,14.098816,33.353043,4.489 263,93.45502,190.817,27.894196,55.17592,4.485 264,543.0946,184.74011,29.192322,67.50055,20.355 264,604.0982,222.22496,36.4494,132.3655,19.905 264,328.0467,221.29445,21.840942,45.321976,10.119 264,291.38074,222.0384,18.992126,39.45027,9.41 264,353.3524,224.76743,22.01184,43.59787,9.025 264,531.72076,198.52626,33.716125,63.708206,8.378 264,613.4587,224.30292,28.030823,81.18622,8.366 264,516.65265,198.0387,32.889343,64.09845,7.719 264,623.2875,-34.75389,26.45929,76.09934,7.597 264,627.04456,488.0957,20.086792,45.883118,7.433 264,-12.106928,-41.96618,40.413292,103.752594,7.063 264,627.01245,-17.764027,17.758728,45.615303,6.898 264,525.33514,184.21448,30.71643,66.72058,6.644 264,252.29698,220.58305,17.88478,35.04834,6.434 264,315.02243,225.8721,20.143219,40.595,6.37 264,336.38983,223.34497,22.694794,45.030823,6.215 264,37.637684,193.6004,28.711514,66.99359,6.172 264,625.45337,222.27484,20.40747,53.200623,6.129 264,-12.090845,475.1444,30.638504,66.45044,5.922 264,612.7874,455.47028,39.01483,106.950745,5.916 264,591.92664,203.00203,55.81134,202.90611,5.899 264,619.1216,489.17868,20.059448,43.095062,5.583 264,-6.261163,488.19687,19.37239,44.04959,5.58 264,-5.3737836,-16.974886,16.792582,42.37398,5.563 264,322.04272,228.11972,21.269928,43.017334,5.544 264,78.390366,221.51031,27.552002,58.753418,5.537 264,341.41586,222.10786,29.60202,54.872055,5.445 264,477.04242,225.18959,13.587006,28.352066,5.361 264,90.6853,231.87582,19.19918,40.591858,5.331 264,52.98647,194.61026,26.48833,68.14743,5.273 264,-73.537445,264.937,202.4531,464.2671,5.114 264,535.88257,309.3333,144.49005,343.21246,5.109 264,492.52643,229.07452,238.52643,514.53534,5.051 264,603.1172,-55.361584,53.16394,134.17061,4.995 264,618.9137,-17.431318,17.662537,43.222816,4.937 264,582.6017,412.86536,71.19922,173.9331,4.886 264,-22.178158,401.2815,79.77515,175.75507,4.875 264,545.15845,197.6617,39.354065,78.659836,4.838 264,203.87515,231.57928,32.595062,75.53772,4.724 264,-15.435376,185.23325,49.240578,138.19525,4.64 265,614.039,196.00912,26.718933,79.66437,7.591 265,322.0642,233.328,19.495667,41.216095,7.478 265,626.9505,488.52338,19.91034,45.24115,7.446 265,0.9937835,193.56812,24.588541,81.5025,7.33 265,549.091,208.21484,30.024048,71.57379,7.034 265,585.3402,244.44748,21.530396,39.791473,6.686 265,586.23865,230.30156,18.830261,37.48961,6.613 265,-18.113525,-64.25249,56.48657,149.91214,6.51 265,605.0395,222.49718,30.91632,69.23872,6.427 265,288.13358,233.30748,19.238708,38.943314,6.329 265,316.1599,236.6611,17.860016,36.4133,6.223 265,328.37405,234.47525,22.084595,46.213623,6.103 265,616.5512,250.56691,20.248047,40.373123,6.094 265,594.0058,232.44864,19.255249,35.819824,5.987 265,279.94165,189.9895,20.579193,37.547363,5.893 265,608.727,254.09267,20.969788,36.986923,5.892 265,217.15643,232.87228,21.641312,29.572418,5.818 265,603.1919,249.61122,20.379517,35.66478,5.788 265,569.5173,216.23676,20.680359,48.21112,5.785 265,308.1666,235.63898,18.204102,35.01526,5.776 265,50.381847,225.58446,21.074253,35.34691,5.685 265,533.5226,212.48656,29.257324,68.66936,5.682 265,225.82684,234.67426,20.24353,28.851837,5.674 265,627.2617,-18.154285,17.120605,47.79668,5.673 265,594.2387,247.53712,21.195068,36.50078,5.665 265,352.52856,230.28122,22.06308,51.73639,5.658 265,75.036934,226.55095,31.016876,48.94957,5.642 265,339.8498,236.81325,32.977203,55.813095,5.632 265,52.039715,196.64761,30.881962,67.30649,5.627 265,-11.930181,477.3759,30.29359,62.9852,5.591 265,244.08081,238.8141,19.071594,30.070969,5.564 265,618.925,489.51306,19.309753,42.407593,5.554 265,259.16226,177.1095,34.88263,58.53636,5.526 265,612.5592,457.3229,39.009766,103.88687,5.482 265,-5.4193506,-16.962345,16.792946,42.09394,5.467 265,97.687775,236.68013,22.16095,35.428757,5.421 265,235.25604,238.4845,20.013763,34.862244,5.344 265,-11.474131,-32.60272,29.646646,73.91147,5.264 265,583.15674,413.56506,71.53998,175.02838,5.215 265,244.23393,231.14745,15.121445,27.133804,5.209 265,610.7095,-48.016705,41.666504,100.848656,5.204 265,577.15753,220.08255,19.90094,43.910767,5.201 265,-73.339226,264.88916,202.29657,463.57715,5.191 265,251.20541,235.00958,16.007751,30.792114,5.18 265,-5.8602657,489.03693,18.043903,41.91095,5.173 265,565.28815,226.53006,30.926086,65.87192,5.158 265,466.25226,232.83252,18.338318,34.61624,5.079 265,560.35345,217.7788,21.981873,50.784103,5.068 265,603.3549,231.50134,19.597229,36.961853,5.043 265,208.89337,229.27211,22.982758,33.514664,4.975 265,356.9962,228.32077,29.434418,61.559753,4.935 265,582.5405,198.85971,39.03546,83.56116,4.93 265,580.59753,251.72525,30.081116,48.178436,4.902 265,150.29126,213.877,26.428284,66.72856,4.87 265,506.78516,240.82726,18.880249,34.11122,4.865 265,491.07184,-182.86613,234.29938,425.8493,4.839 265,-22.168598,400.66476,79.776665,176.57419,4.8 265,535.8949,311.0813,144.77429,340.4928,4.787 265,60.782387,184.76971,32.05259,73.24359,4.776 265,402.9483,-16.38124,17.095001,39.682068,4.748 265,235.69846,230.73631,16.11499,26.406784,4.738 265,88.648254,236.25816,22.868912,34.663406,4.71 265,459.31396,232.42262,18.457367,32.59413,4.701 265,476.64594,243.33627,15.539246,26.746277,4.669 265,-16.297138,212.79744,48.49888,134.54149,4.665 265,493.86105,228.27304,237.14041,513.57275,4.604 265,586.1779,-101.52311,74.22687,235.06448,4.568 265,572.65515,197.39368,27.62024,62.415436,4.557 265,243.83527,238.0804,29.696655,60.497513,4.518 265,124.45441,235.08405,30.119385,62.023865,4.486 265,285.87225,232.03949,14.420837,28.17163,4.443 265,12.409554,206.3572,52.659805,108.6924,4.401 265,395.11075,-16.575832,16.57956,38.5525,4.344 265,133.75368,217.99084,28.818802,66.828735,4.331 265,19.105267,203.60318,30.220303,68.572296,4.326 265,260.93518,228.90996,13.063416,29.484726,4.313 265,59.886917,229.11032,30.88353,49.602417,4.309 266,603.3824,203.21532,32.866028,75.69838,11.35 266,52.41831,203.84447,30.99725,71.96901,9.086 266,356.61816,221.5563,30.819885,75.775696,8.475 266,5.0045214,223.26912,31.240803,74.70274,8.167 266,37.852917,207.33571,28.759556,71.85896,8.031 266,237.01028,231.0057,16.727066,30.552612,7.87 266,434.41107,226.3747,18.700531,28.386887,7.507 266,427.43118,225.6589,17.481537,28.541626,7.48 266,365.38654,215.6058,27.639557,60.610962,7.402 266,249.90332,236.41821,18.896729,28.770142,7.223 266,63.593765,210.97003,23.018066,52.937317,7.221 266,281.31265,231.83057,23.181732,38.86078,7.085 266,76.60428,215.03517,32.581497,64.37746,7.052 266,93.012985,220.98645,32.49128,60.213806,6.915 266,33.684345,213.93378,21.119461,48.626892,6.864 266,626.6741,487.69348,20.305237,46.740234,6.718 266,615.78937,196.1244,22.58075,65.618454,6.666 266,460.34186,228.7738,16.279541,26.294388,6.506 266,-12.330237,476.92288,30.68734,65.11563,6.445 266,589.4641,189.1221,31.900574,78.91885,6.431 266,-6.376326,488.95538,19.065626,43.131287,6.397 266,246.10849,229.26736,14.23938,27.535004,6.377 266,562.1998,247.85252,21.492859,36.92546,6.306 266,49.152725,210.00955,22.675896,55.542633,6.176 266,587.19055,307.18372,34.977722,67.80716,5.99 266,539.0748,201.57825,57.04883,111.549805,5.816 266,219.83305,226.09306,16.580246,25.374771,5.794 266,498.31262,230.43849,19.601196,38.42247,5.595 266,627.51886,-17.238005,16.831665,46.91166,5.568 266,25.189016,218.19382,20.989191,42.44162,5.548 266,15.083293,222.60196,22.535496,48.023834,5.493 266,-5.4922476,-17.279364,17.141388,41.73918,5.424 266,-17.87514,-64.047714,56.148033,147.08261,5.373 266,612.77576,456.6059,39.087585,104.8902,5.37 266,419.33594,219.66891,18.703857,29.803085,5.348 266,130.87567,230.58427,18.414001,34.245865,5.266 266,-6.7709885,236.67795,19.741438,45.776,5.237 266,329.73578,219.64336,20.522766,42.909195,5.171 266,-73.50677,263.72522,202.31723,464.94873,5.168 266,210.68694,225.8143,17.891266,28.33519,5.157 266,451.7307,227.5588,17.427551,27.010925,5.154 266,623.14417,-33.14718,26.643677,76.317116,5.115 266,611.8781,178.49136,33.540466,104.99106,5.076 266,401.28912,222.6617,22.880981,42.754166,5.067 266,-11.355579,-32.276398,29.598738,72.33088,5.027 266,583.0663,413.0946,71.68176,175.63068,5.021 266,316.82797,222.1874,16.179047,29.69722,5.006 266,-5.4396267,218.88538,17.713503,41.687927,4.958 266,228.57791,228.69489,16.39206,28.511597,4.951 266,535.7711,310.17847,144.99365,341.1781,4.931 266,170.6499,216.8718,21.297256,37.266876,4.916 266,442.37512,227.16685,18.354889,27.095749,4.879 266,602.80493,-56.327084,53.341003,141.9765,4.872 266,226.8724,216.14131,15.124802,27.9449,4.865 266,544.1618,202.80266,35.334106,72.732895,4.854 266,154.08955,214.22148,20.152634,40.777313,4.842 266,1.6106105,231.98048,23.001724,52.507828,4.829 266,-21.831135,401.76263,79.25684,175.99646,4.824 266,321.59988,226.2981,21.433594,44.578583,4.805 266,202.51312,223.70593,20.099564,31.921494,4.8 267,297.3109,237.39471,21.569641,36.792908,10.743 267,384.5032,222.065,22.915588,56.966064,9.456 267,409.48285,219.27135,20.359802,50.746902,9.33 267,372.11523,224.67256,39.85077,82.99776,8.31 267,457.2033,221.65276,20.41629,47.92061,7.511 267,-11.937096,478.11768,30.759724,64.164734,7.033 267,401.26703,224.58942,39.566284,93.70032,6.842 267,-6.0801077,488.6731,18.711319,43.099,6.836 267,606.4701,183.55753,28.701904,64.461044,6.482 267,627.00616,488.24356,19.830261,45.72885,6.441 267,251.60393,233.1943,17.844437,30.505157,6.11 267,266.32263,238.70813,18.878265,30.386475,5.808 267,304.58752,230.7285,19.677338,35.585373,5.73 267,398.90857,220.4229,26.966919,70.731766,5.605 267,622.5233,-33.32607,26.689087,75.58512,5.571 267,627.1113,-18.436514,17.118652,47.217133,5.443 267,-17.908926,-64.598175,56.22155,148.13309,5.44 267,613.0261,457.10486,38.665466,104.73926,5.427 267,-5.4916663,-17.394896,17.132847,42.01487,5.408 267,244.19023,233.57716,17.813126,36.8676,5.188 267,582.60486,191.73856,39.585938,88.06027,5.176 267,474.4971,226.21219,20.683899,41.63849,5.118 267,144.79651,214.68878,23.460754,39.924774,5.098 267,-72.96846,264.8553,201.14334,463.3288,5.076 267,-11.305819,-32.416183,29.552633,72.5876,5.044 267,582.8855,413.04822,72.167114,175.62195,5.013 267,258.2586,233.57233,19.03009,31.032135,4.985 267,536.22516,310.66382,143.6922,340.68408,4.952 267,522.44,203.9438,20.67694,38.79567,4.88 267,-21.699154,402.53894,78.92714,175.1471,4.835 267,-3.8685484,212.57045,15.431206,42.16716,4.83 267,358.2478,232.13257,31.501099,69.85278,4.798 267,220.1055,230.99512,15.841995,28.5271,4.739 267,578.6154,244.1007,20.306458,41.41133,4.724 267,1.8095934,234.90857,32.80432,63.656494,4.724 267,603.2119,-57.415657,53.20282,136.94174,4.712 267,470.02454,228.18008,28.95514,63.407837,4.681 267,323.9187,234.5233,17.563568,30.917953,4.523 267,493.84534,227.43811,238.01996,513.2979,4.503 267,276.4121,220.04512,14.6666565,29.314682,4.473 267,540.88367,207.96603,55.71173,101.491516,4.47 267,585.894,-101.53123,75.77362,235.34464,4.441 267,338.15643,232.39977,18.73294,34.514694,4.425 267,162.59921,223.92105,19.12297,37.930267,4.419 267,236.56464,232.71059,16.891327,35.431015,4.366 267,153.87617,224.47438,19.661484,39.55168,4.366 267,266.0369,163.30675,19.489227,31.469513,4.315 267,459.54562,226.39534,28.728912,67.58867,4.272 267,164.53052,210.87956,27.543945,52.998856,4.262 267,464.9015,221.2302,20.115417,43.428314,4.248 267,489.34662,-178.65195,235.79749,418.43085,4.24 267,483.18732,-15.264269,16.939636,36.948112,4.233 267,510.3423,-34.87989,27.86316,73.992325,4.224 267,391.61435,218.44098,20.131622,47.608032,4.195 267,-1.0994375,221.06403,24.821342,65.82321,4.194 267,235.10059,217.04916,15.8647,27.496063,4.184 267,129.94165,162.42996,35.792007,74.91321,4.175 267,-4.606696,229.86417,17.704897,45.619263,4.17 267,314.58707,228.42871,16.714966,30.63794,4.154 267,20.085987,218.53893,30.967777,57.421402,4.154 267,-5.809844,324.12744,16.405529,33.107788,4.143 267,-8.517257,102.65209,37.908497,103.570564,4.139 267,40.575302,239.38347,22.73674,31.526382,4.135 267,282.72153,174.73717,21.220856,37.045258,4.119 267,55.616512,205.21942,62.076878,105.51648,4.119 267,278.4955,155.4729,31.236328,58.556458,4.104 267,512.611,294.17175,37.386963,61.82675,4.091 267,23.888062,205.98729,60.484085,108.12398,4.082 267,267.06015,226.3354,17.011871,32.20079,4.076 268,431.82785,215.36035,20.929169,41.990112,11.88 268,417.64746,254.77344,33.906372,65.30145,8.286 268,612.9642,452.85287,40.366882,109.96121,7.395 268,376.02393,204.94034,21.758636,51.887238,6.612 268,598.27997,186.41386,31.579895,72.82741,6.437 268,626.15454,486.8302,21.300049,47.37561,6.361 268,493.4095,219.73444,27.936096,77.98126,6.277 268,-8.864935,465.55856,37.532394,89.73074,6.235 268,627.28815,-16.825432,16.8266,46.248272,6.225 268,506.3469,222.77084,20.092682,51.659576,6.165 268,240.30072,231.29745,23.27124,44.749603,5.876 268,-6.0233955,488.79782,18.64637,43.14145,5.691 268,622.4369,-33.386387,26.857483,75.49211,5.601 268,137.04846,217.2476,22.81958,40.56404,5.572 268,602.48535,-55.12644,53.338257,135.02019,5.516 268,-17.714865,-64.8315,56.123184,148.37108,5.437 268,-5.575247,-17.62216,17.27399,42.404762,5.383 268,248.8103,233.05832,22.79181,41.49698,5.322 268,-73.040344,264.98804,200.99707,462.83716,5.137 268,-11.245468,-32.417084,29.476858,72.82362,5.089 268,585.0356,-98.991295,76.47748,231.81848,5.057 268,410.3156,229.92577,19.928528,41.506027,5.0 268,618.06616,488.16104,21.403687,45.025055,4.939 268,228.32278,221.73636,30.713379,74.958984,4.935 268,404.98572,225.1528,39.723114,78.79251,4.901 268,-21.664368,402.91406,78.884254,174.95978,4.888 268,416.801,239.62569,21.224548,46.4413,4.878 268,619.29364,-3.2611237,18.37915,39.967056,4.878 268,583.54016,410.3427,71.38428,177.3338,4.798 268,614.44904,-17.540522,27.667786,68.42568,4.764 268,536.36975,311.34967,143.47998,341.00665,4.624 268,305.17175,216.69756,22.216736,39.959793,4.617 268,489.0009,217.00204,20.644348,52.37741,4.59 268,264.58316,234.0773,21.659271,32.410645,4.572 268,493.24274,227.31888,238.3919,514.76086,4.482 268,554.427,2.8259258,20.406067,41.618355,4.477 268,429.20044,221.95045,28.404877,61.558884,4.386 268,612.5252,208.13618,26.35675,71.98778,4.334 268,477.60962,281.77286,52.8396,116.33731,4.276 268,425.30472,242.10019,21.317963,47.052734,4.242 268,392.65863,207.4632,25.371948,66.87744,4.225 268,52.54348,209.94632,31.84066,64.320984,4.211 268,276.6735,209.91959,15.259308,32.285324,4.21 268,594.4247,198.52264,20.661682,45.727905,4.199 268,485.46313,242.79843,59.809204,137.77463,4.197 268,592.1476,-18.74704,49.43512,129.91995,4.162 268,617.86505,389.82196,20.617554,44.598297,4.157 268,201.24605,225.6307,20.546158,40.685455,4.146 268,495.11044,314.7391,35.431,62.669556,4.124 268,190.63184,192.18056,51.86,103.0569,4.101 268,411.20386,220.34425,51.58142,113.64842,4.081 268,573.2058,186.53432,52.723022,127.43602,4.078 268,595.8892,459.0971,40.901855,100.546814,4.056 268,406.96475,202.76898,24.990814,61.611115,4.024 268,594.6617,-42.573647,44.361267,94.264565,3.991 268,290.8839,142.4731,30.153564,56.43869,3.972 268,607.6095,181.47789,24.549072,47.752426,3.94 268,555.6762,150.47331,59.72119,114.976456,3.882 268,261.4309,210.48094,37.09494,67.76878,3.864 268,266.6135,142.74222,33.351746,56.19664,3.86 268,571.289,-33.373753,58.371277,128.53549,3.858 268,5.4296484,468.1484,37.83114,93.78714,3.851 268,538.9131,-13.297716,16.609192,35.599987,3.844 268,473.49045,297.53436,35.695526,73.09738,3.838 268,297.3968,173.85036,20.136505,34.843185,3.835 268,589.5891,388.36996,29.948303,61.771942,3.834 268,259.6174,208.56685,16.236725,35.013184,3.819 268,546.6743,3.828701,20.936157,38.054817,3.81 268,545.7337,489.24557,20.736572,41.10495,3.785 268,325.42938,222.36609,30.280945,62.55481,3.778 268,603.7237,0.26156425,17.539185,35.47287,3.77 268,418.1963,224.32552,18.643341,41.24846,3.767 269,422.2182,201.38672,22.14624,57.63916,14.598 269,258.63553,224.16261,19.904602,36.548203,8.903 269,180.0979,209.29518,32.74359,63.565292,8.846 269,235.78076,225.48552,33.991333,73.27168,8.484 269,353.86157,207.26306,20.700165,48.428986,8.101 269,266.49777,223.10593,17.652618,32.850998,7.764 269,588.26074,158.50082,34.95587,82.76756,7.479 269,396.69174,230.50612,28.039276,70.974625,7.289 269,251.75882,222.52896,19.290955,38.754974,7.195 269,-11.889239,477.43497,30.794342,64.534454,7.069 269,613.0003,453.46753,40.314026,109.65735,6.945 269,-6.301177,488.70456,19.071499,43.44809,6.582 269,447.77582,209.07417,28.163788,80.85802,6.55 269,626.2848,486.86493,21.119934,46.815002,6.514 269,262.39777,212.93585,14.072632,29.463348,6.232 269,2.5798655,213.89745,31.943493,61.163162,6.1 269,-18.026937,-66.07857,56.332687,150.9378,6.038 269,621.5626,-33.27999,28.458008,76.09186,6.016 269,247.3744,207.57663,34.54991,73.84387,5.999 269,415.57294,207.23994,25.2323,74.69548,5.895 269,268.3215,212.85788,14.359375,29.597275,5.762 269,210.90361,207.76163,18.741089,36.674377,5.704 269,396.15564,212.17316,17.309082,52.12198,5.675 269,215.43289,207.5693,35.625626,75.73898,5.577 269,260.89972,209.16142,34.920105,71.63338,5.574 269,399.88348,200.38208,22.202362,72.9845,5.504 269,234.68051,210.9424,17.50174,38.001038,5.492 269,-5.584239,-17.715528,17.300724,42.56583,5.478 269,212.29453,236.77657,33.280365,71.36476,5.432 269,218.4447,202.71455,19.196762,36.31659,5.358 269,-72.71012,265.01,201.06549,463.6797,5.328 269,602.58044,-55.384193,53.600647,132.49826,5.271 269,357.6366,203.76875,33.320618,87.44078,5.205 269,-11.197136,-32.321983,29.394691,72.687706,5.126 269,411.32614,214.97592,18.978668,54.890656,4.977 269,626.6013,-18.501219,17.91925,47.48861,4.93 269,192.36572,209.7022,22.715439,40.51465,4.875 269,535.85175,195.27719,24.096008,42.288452,4.852 269,-21.382107,403.5171,78.52556,174.47388,4.838 269,202.10559,209.55696,19.964691,34.748276,4.827 269,617.8851,487.74442,21.407715,44.3226,4.808 269,499.72568,168.91757,33.188385,66.2276,4.725 269,612.8193,-18.698261,30.073181,72.537025,4.72 269,344.3991,208.91989,25.443848,66.68527,4.706 269,197.0276,209.30643,37.188644,73.98425,4.693 269,585.67163,-98.98942,75.27014,233.33423,4.632 269,453.0074,190.0812,29.8172,76.929474,4.623 269,583.58923,411.09598,71.20801,176.24673,4.616 269,506.9209,176.92249,58.54883,121.26337,4.6 269,253.50674,212.09099,14.138977,30.924805,4.578 269,370.50543,214.15276,17.966187,50.69777,4.556 269,74.19186,218.00061,23.614693,43.88968,4.536 269,242.77199,219.75412,20.351242,39.363586,4.517 269,536.04016,310.9582,144.11902,341.76422,4.502 269,493.5058,228.16031,237.73883,514.30005,4.486 269,227.34518,201.81676,16.580109,30.279327,4.468 269,131.10696,212.91718,31.932251,65.125854,4.442 269,594.08954,-43.453033,44.75653,95.182014,4.44 269,539.42145,188.3756,32.942932,57.695328,4.408 269,299.11664,181.91667,17.551422,28.921387,4.399 269,571.38354,230.33083,18.284851,40.350937,4.377 269,521.88885,307.33716,35.138,59.589874,4.348 270,363.15738,207.91507,19.980682,55.578033,30.58 270,447.53876,216.47885,26.71048,80.71469,11.941 270,495.37695,209.21051,27.237793,71.717896,8.575 270,357.14664,204.67146,35.430695,92.86623,8.083 270,-11.714211,477.2161,30.229023,64.56607,7.274 270,618.61426,248.16418,19.650879,44.580017,7.069 270,-6.315687,487.7512,19.146217,44.29074,6.988 270,572.3945,193.38281,34.07068,72.37631,6.56 270,-17.79963,-65.15152,56.420692,150.29898,6.522 270,622.9264,-34.08147,26.809021,73.6346,6.26 270,170.29782,200.6651,23.096786,41.671448,6.26 270,613.37225,453.99847,39.419373,107.61865,6.057 270,-5.1377172,214.65105,17.371616,45.976273,5.782 270,390.32745,205.53813,32.932983,85.41847,5.731 270,627.49945,-17.527481,16.996521,46.009163,5.71 270,392.14526,215.26031,21.146912,49.207092,5.431 270,444.04395,223.1713,20.534576,56.57675,5.416 270,626.6956,488.03796,20.193542,47.262634,5.374 270,457.00577,217.45935,19.988892,57.142,5.37 270,355.30048,205.0887,19.544434,43.16591,5.327 270,571.5545,188.04417,52.697327,121.66026,5.308 270,-72.54735,264.92822,200.97781,463.79968,5.192 270,-11.3091135,-32.346867,29.679684,73.0514,5.147 270,-5.7275724,-17.971424,17.466139,43.068924,5.132 270,12.25465,204.53929,26.960335,64.599686,5.097 270,587.0747,348.1359,38.34143,68.24051,4.969 270,299.55164,223.74811,18.46405,32.915985,4.952 270,427.03638,225.10645,18.04721,41.863647,4.871 270,-21.235018,403.16748,78.35644,174.62744,4.868 270,196.28986,209.23526,39.42816,67.39145,4.849 270,179.96338,201.66919,39.986877,66.02289,4.833 270,236.05095,223.48068,31.587845,73.83368,4.833 270,536.537,311.56927,142.80884,340.1153,4.832 270,110.38922,200.87643,29.520752,67.17862,4.824 270,582.6069,410.8952,72.51526,177.9815,4.782 270,-40.08885,365.31772,110.46338,277.22427,4.779 270,603.8929,-55.225544,52.087646,135.08945,4.688 270,459.80536,226.07428,28.122314,72.776245,4.682 270,514.91394,-10.636036,16.328186,32.70981,4.669 270,373.97504,206.83435,36.15622,90.464966,4.638 270,348.29248,205.07655,18.999664,39.46408,4.628 270,266.69827,216.48563,18.6044,35.986404,4.601 270,416.0722,218.8688,26.345642,60.35672,4.558 270,234.03525,231.43687,21.441772,48.344437,4.527 270,162.96008,206.70969,33.638123,50.3179,4.501 270,610.55676,229.61343,20.058594,36.92755,4.488 270,537.2601,489.51328,21.612793,41.544464,4.466 270,1.6810858,488.0488,20.034145,44.611847,4.419 270,585.0125,211.41913,31.027466,64.07553,4.417 270,493.67557,226.7955,238.01816,514.2958,4.401 270,435.2676,225.1061,19.381104,47.398636,4.357 270,623.7392,219.76424,26.228699,71.38042,4.302 270,586.86426,114.04736,29.506592,79.332245,4.301 270,420.99335,222.63756,16.961426,35.827103,4.246 270,203.18713,199.64012,17.54248,30.788193,4.236 270,212.21909,230.0983,32.835114,72.775085,4.227 270,212.18054,201.68828,15.430237,28.499344,4.179 270,618.93164,226.28117,19.352478,41.784622,4.172 271,556.8961,199.96109,38.29364,97.48837,50.099 271,498.4466,199.99715,37.877014,100.533646,42.902 271,149.91397,185.17714,22.669312,47.98204,18.807 271,390.2258,188.93065,25.946869,74.71138,17.526 271,368.49136,195.23807,22.691956,54.71855,15.347 271,588.6864,209.06532,32.631897,85.85344,9.789 271,375.17825,195.31596,24.5997,68.436356,9.289 271,626.7756,-16.903976,17.683044,45.699783,7.559 271,622.4205,-35.393646,26.766296,78.17881,7.368 271,504.7723,233.30188,23.772491,63.030457,7.349 271,-6.466232,488.4031,19.387163,42.758514,7.153 271,297.55264,220.32864,21.274414,33.85634,6.699 271,-12.073889,477.97128,30.25786,63.509552,6.577 271,598.7075,187.46658,34.501648,115.894745,6.485 271,388.04904,197.12674,38.3006,99.34848,6.264 271,626.7927,487.6995,19.972473,46.645294,6.262 271,252.88708,198.04192,13.882019,24.688583,6.252 271,-17.890274,-66.58423,56.00304,150.8199,6.154 271,612.9355,454.71228,39.983154,107.38928,6.042 271,570.0709,205.94986,33.958862,75.91287,6.016 271,48.362484,210.60677,25.113155,51.188034,5.914 271,358.1229,191.44058,36.606445,95.36511,5.859 271,258.43494,192.07005,15.217438,25.0289,5.758 271,494.56384,197.51176,29.001099,67.14311,5.621 271,-5.6419954,-17.851715,17.342863,42.62552,5.558 271,613.8664,-17.185469,27.256104,73.1038,5.459 271,211.39621,203.7695,18.806107,38.53824,5.434 271,602.7108,-54.179653,52.85443,134.24254,5.414 271,245.14961,200.13402,15.0412445,25.989777,5.338 271,-11.297831,-32.432022,29.585331,72.806885,5.27 271,371.799,197.0424,40.88141,102.08858,5.229 271,351.02005,189.69208,30.38971,65.55673,5.224 271,-73.65171,265.53696,201.63992,462.21426,5.218 271,203.94714,196.37459,16.920242,39.40483,5.145 271,250.5242,211.21269,17.907837,29.448303,5.138 271,4.6053576,201.22014,29.165676,62.445267,5.075 271,384.77676,193.24193,24.264069,53.256042,5.032 271,360.89606,188.20418,24.26477,46.125107,4.989 271,536.65173,309.82062,142.91687,342.62958,4.917 271,329.9569,196.89359,20.672546,32.07315,4.914 272,381.4322,214.03868,28.269043,62.38405,67.253 272,574.75934,215.5422,49.752747,167.60345,56.897 272,165.50717,226.06923,31.484741,67.01402,10.378 272,579.10535,230.3246,31.320496,90.29784,9.481 272,108.23753,207.90782,32.699448,68.49922,8.502 272,428.2327,213.17963,27.65747,91.65491,8.176 272,-12.075353,476.685,30.611217,65.7121,7.999 272,131.3252,212.96927,30.669098,58.42697,7.233 272,594.6809,213.07884,38.30591,133.64192,7.112 272,-6.518883,487.71613,19.757214,44.53888,7.107 272,73.718994,218.2973,36.173935,73.79663,6.905 272,93.41403,217.18109,26.2247,51.796295,6.806 272,377.7494,203.68364,23.978333,53.18483,6.783 272,-18.141445,-66.53865,56.433357,151.50002,6.265 272,613.26917,452.61993,39.497803,109.13776,6.186 272,104.876724,212.34935,23.498993,46.083878,6.111 272,603.6553,-55.3975,52.57953,138.40187,5.946 272,367.91632,210.46948,30.607666,68.47781,5.909 272,626.52356,488.37943,20.517212,45.07138,5.8 272,150.61975,221.62883,31.02829,58.83818,5.616 272,13.282988,180.76877,56.664284,122.30011,5.509 272,627.17004,-18.07049,17.399963,46.499157,5.488 272,-5.6735897,-17.813654,17.37471,42.64454,5.445 272,566.18945,233.90977,31.027222,81.795944,5.231 272,587.20154,266.0349,32.13147,95.67865,5.141 272,586.5365,225.60904,57.66626,206.19736,5.135 272,-73.221725,264.4914,201.83157,464.7677,5.134 272,536.1677,309.7137,143.79987,342.99356,5.132 272,-11.239156,-32.438694,29.473965,72.855255,5.089 272,67.71943,208.90004,33.754578,57.043167,4.925 272,371.51752,196.44516,42.43576,95.25049,4.831 272,-21.972023,401.67108,79.47336,175.47162,4.831 273,399.70676,178.3669,37.455048,103.519455,53.141 273,134.0547,211.17635,22.618408,42.80229,6.777 273,626.6745,487.43637,20.615051,46.293243,6.714 273,612.66174,453.58502,40.203247,108.986145,6.609 273,407.58173,219.07327,27.228333,79.61359,6.6 273,502.8404,200.66191,37.018738,117.75975,6.56 273,133.45953,220.05754,31.823547,58.715805,5.892 273,-6.3272424,489.05374,18.903776,43.563934,5.866 273,627.3219,-17.749252,17.086304,45.737152,5.849 273,-12.33323,477.33798,30.134468,63.95938,5.605 273,590.8157,182.2604,30.378235,68.613785,5.504 273,351.62115,183.9105,53.146423,103.16222,5.465 273,-5.6305895,-17.823914,17.330162,42.673576,5.465 273,-17.600016,-64.71785,56.125183,148.08333,5.449 273,618.162,488.67795,21.294495,44.189117,5.4 273,-73.460785,264.97003,201.79942,463.16412,5.262 273,-11.235735,-32.40194,29.515438,72.75172,5.237 273,623.4409,-34.987755,25.973083,74.917046,5.162 273,281.45428,238.3651,21.752136,30.507889,5.104 273,603.47144,-56.010876,54.10132,135.31825,4.979 273,11.990161,182.86618,54.060284,104.90262,4.958 273,166.86037,204.28743,25.502289,61.40239,4.933 273,-15.875574,173.40657,50.89154,131.80211,4.927 273,536.5375,311.1577,143.22089,340.79236,4.91 273,346.25705,216.17207,18.827484,28.375458,4.903 273,315.63757,231.10556,18.01706,30.495483,4.902 273,-21.56155,402.09473,78.83691,175.48273,4.824 273,582.4948,411.02167,72.473816,177.50195,4.822 273,598.0537,191.88905,38.090088,97.17345,4.768 273,164.25636,197.4549,17.683868,32.796677,4.675 273,475.41748,-11.968355,32.35257,65.512825,4.615 273,170.60355,199.82448,17.555557,31.048706,4.611 273,434.86188,189.3858,39.230713,98.00308,4.588 273,485.14215,-4.540264,30.737976,69.93439,4.531 273,384.8069,182.24178,51.29944,153.55302,4.459 273,290.26923,208.47905,19.603455,34.597916,4.448 273,67.32718,220.18056,33.54532,50.2166,4.412 273,493.42902,227.49329,238.53497,514.31946,4.357 273,377.33765,214.72472,23.55951,47.091354,4.299 273,529.1267,353.26767,35.16382,61.600647,4.221 273,-5.6122756,154.96933,16.98597,41.066513,4.192 273,390.7967,196.77078,30.15924,81.32007,4.171 273,353.79175,215.39917,19.155365,30.109802,4.158 273,516.39856,-6.17894,29.85492,93.15726,4.152 273,346.50327,208.00438,19.914093,24.999771,4.149 273,144.51292,210.39131,18.932678,35.62552,4.129 273,548.538,229.8418,30.625488,65.109375,4.127 273,220.07492,195.68578,15.5234375,34.45279,4.124 273,283.95496,191.05151,16.698212,26.649643,4.118 273,163.02075,217.1697,18.96083,42.30345,4.108 273,52.526962,208.7607,29.49437,49.98964,4.08 273,126.20009,191.75595,50.962296,97.03088,4.072 273,595.3242,272.37732,41.022522,90.80463,4.07 273,338.88675,208.04936,42.709015,73.82063,4.051 273,338.73538,207.45322,19.612823,25.126862,4.05 273,596.14856,460.335,39.99878,100.48123,4.014 273,105.6816,200.35939,21.136719,36.567368,4.011 273,416.7052,233.61223,20.965698,55.89241,4.0 273,6.0681477,189.34319,29.068304,62.18254,3.995 273,171.31427,226.05962,17.38469,37.451187,3.975 273,-4.6141963,173.14883,16.35385,39.971344,3.974 273,582.47107,195.86925,38.55713,94.14201,3.96 273,586.8256,-101.96375,75.51721,239.11728,3.948 274,118.23513,201.61417,30.301674,63.043427,12.329 274,378.3835,193.61597,20.756622,35.227814,11.99 274,0.3243351,184.32161,24.76705,65.71164,9.482 274,457.3488,210.38513,26.183899,86.12262,9.418 274,471.6382,149.04872,28.119904,77.74483,9.298 274,98.88035,194.22156,33.04029,61.882263,7.974 274,120.594604,194.36754,22.905151,47.1313,7.551 274,75.71023,185.1862,34.908882,62.639664,7.305 274,613.5176,452.51437,39.18628,110.09677,6.654 274,626.68555,487.94568,20.36267,46.070312,6.556 274,418.11346,226.29994,19.925476,49.241165,6.535 274,159.62086,183.84915,21.876877,40.579086,6.317 274,33.852303,191.0502,32.68956,55.910965,6.005 274,627.3373,-17.890142,17.078613,45.966293,5.967 274,573.7048,230.30363,30.98346,58.439407,5.948 274,401.38477,203.62334,26.366547,71.64714,5.919 274,-9.339384,463.52438,38.0427,93.089264,5.826 274,442.86237,211.25388,32.518158,101.59024,5.796 274,379.6428,193.13356,28.990082,54.89943,5.741 274,87.34189,182.64366,25.07048,44.96631,5.718 274,-17.733124,-65.723854,56.111183,149.66829,5.621 274,22.370626,185.20401,29.882162,56.27246,5.487 274,-5.6525445,-17.873865,17.37966,42.763027,5.483 274,407.1914,202.7185,36.76892,86.07599,5.432 274,440.39734,245.17474,27.034546,76.37036,5.427 274,259.49255,206.16342,15.504761,22.506348,5.403 274,-6.1536274,488.5577,18.957506,44.15732,5.4 274,422.97522,206.36925,34.396667,88.43068,5.331 274,-3.897897,191.847,18.879938,47.370117,5.255 274,468.62244,205.78754,27.875854,85.17374,5.255 274,-11.236824,-32.38063,29.512592,72.986824,5.231 274,623.4939,-35.1373,25.970459,75.52431,5.219 274,603.67175,-56.81832,52.697815,138.6327,5.215 274,-73.060974,265.2589,201.33366,462.69592,5.137 274,379.1375,184.48058,18.236755,28.936142,4.994 274,568.1439,228.4361,24.877136,41.677643,4.989 274,385.5783,202.02142,18.444275,35.81183,4.935 274,58.690857,194.66576,35.097664,63.039536,4.895 274,-21.803953,402.055,78.98787,175.3648,4.885 274,-9.925323,167.37445,28.919724,69.62904,4.867 274,424.38266,234.43433,21.286316,45.86432,4.849 274,583.2766,412.14026,71.424805,175.80707,4.823 274,347.70108,181.1241,18.105652,25.557663,4.773 274,82.85907,201.47025,35.03202,71.006714,4.763 274,267.58826,203.9284,14.49942,22.362549,4.733 274,-10.636754,195.08623,29.97868,68.72432,4.606 274,41.678486,201.7398,35.421185,62.41104,4.599 274,137.89148,187.37003,18.131088,36.148987,4.585 274,561.26996,224.43294,23.039612,32.891556,4.578 274,-15.3699875,158.64868,48.5493,128.14252,4.537 275,489.8457,199.62042,42.08136,103.0394,85.228 275,104.404594,198.95813,31.309181,64.36615,75.958 275,471.48926,199.85669,38.50006,99.1785,11.8 275,621.9324,-33.99147,27.398071,76.14595,9.425 275,0.31894803,176.88214,25.75186,74.92526,8.486 275,449.17294,184.08058,20.703033,35.063797,8.262 275,502.9369,204.49213,23.414001,63.507996,7.609 275,626.68787,-20.447363,17.90857,51.235397,7.533 275,612.45966,-22.393538,28.034119,75.84537,7.093 275,187.39365,193.63362,16.03366,28.234741,6.544 275,94.34526,180.28317,50.38307,91.51071,6.508 275,486.53644,235.18152,29.958557,78.38611,6.288 275,-5.986614,488.728,18.555368,44.048065,6.288 275,613.1924,453.13776,39.82422,109.36932,6.242 275,456.4661,196.23953,39.429565,98.47574,6.095 275,478.63327,245.5251,26.681244,72.16518,6.061 275,626.71063,488.16513,20.605774,45.85208,5.991 275,-17.791111,-65.86509,55.95908,150.2417,5.878 275,-11.903581,476.3554,29.511982,66.00134,5.83 275,178.29741,192.2728,17.465149,32.290802,5.71 275,27.168367,188.25961,34.461555,58.767197,5.7 275,74.625046,179.67993,31.513908,53.655396,5.601 275,-5.618559,-17.856302,17.329964,42.74139,5.527 275,563.4168,-31.975502,31.712708,68.195946,5.486 275,461.7254,231.76228,28.10254,69.9138,5.303 275,334.02713,200.54814,23.111816,31.113815,5.259 275,-11.189075,-32.32014,29.490683,72.77136,5.247 275,166.94383,181.53133,25.468033,51.109177,5.205 275,-73.51348,265.627,201.29214,461.75073,5.177 275,601.6204,-54.398277,53.48285,133.32729,5.113 275,613.395,8.830002,26.924194,100.80444,5.103 275,257.3097,194.3316,19.30069,27.744797,5.047 275,-21.612629,402.16336,78.56703,175.68967,4.998 275,16.413458,208.55348,37.28614,56.587875,4.905 275,625.4507,19.026646,20.57129,55.469433,4.846 275,488.336,197.74284,21.66803,59.771896,4.836 275,504.77048,197.47942,20.234772,33.30081,4.821 275,538.36786,-17.523108,18.208618,41.541042,4.757 275,196.97293,188.59822,14.925247,27.447784,4.755 275,498.3289,240.34024,32.680267,73.73328,4.75 276,71.151306,196.0086,42.106102,79.92963,70.394 276,593.78595,188.25456,44.977295,186.37318,53.055 276,529.8713,178.26907,21.223694,34.15747,27.36 276,610.8536,207.13388,29.052795,104.59189,12.422 276,614.8689,-20.02526,25.99292,79.6177,7.911 276,621.79236,-32.73607,27.228577,79.38166,7.769 276,77.67953,196.64516,25.046303,58.86281,7.513 276,614.3351,265.77722,27.862793,93.66904,7.212 276,626.638,-19.91212,18.002197,52.640926,6.887 276,63.95782,203.76448,32.170452,61.291977,6.842 276,-6.677061,489.31754,19.607662,42.749847,6.192 276,-17.807243,-64.76207,56.062267,149.7902,6.186 276,-9.308797,464.51605,37.98357,90.683044,6.086 276,118.11923,170.47,30.565033,54.858276,6.072 276,572.79877,179.84418,82.03772,243.95276,6.038 276,531.73474,171.7842,16.127075,27.809982,5.959 276,612.79065,454.243,40.027466,108.63693,5.95 276,557.2116,194.53738,57.28772,157.99521,5.736 276,626.765,487.77182,20.104553,45.84201,5.666 276,401.5528,187.34993,36.917725,46.22075,5.531 276,-5.627248,-17.91227,17.295902,42.90063,5.499 276,618.239,7.6780663,21.832642,72.74069,5.469 276,603.11914,-54.747147,52.56299,133.19064,5.327 276,-11.240993,-32.359886,29.556114,72.883026,5.291 276,2.5860305,189.21167,18.116152,39.26361,5.246 276,534.29376,306.609,146.11017,348.96887,5.237 276,-73.86078,265.11224,201.97052,461.81006,5.157 276,492.2025,230.93594,237.83014,512.9785,5.062 276,328.66055,240.73648,38.881714,55.576233,4.96 276,-21.716042,402.33484,78.97297,175.14563,4.919 276,538.51306,171.16548,15.843872,27.437912,4.912 276,82.14154,221.01596,34.01242,63.164032,4.878 276,109.75422,202.9909,48.120323,73.36276,4.733 276,-4.614077,171.71036,16.81507,39.6485,4.71 276,583.07776,413.62085,72.09979,174.54419,4.696 276,246.64505,194.65523,27.14502,50.475006,4.677 276,538.28235,210.31335,57.400146,153.86676,4.635 276,172.0065,200.59889,17.67453,23.854279,4.609 276,480.31665,191.4984,99.78082,295.21185,4.596 276,415.19138,196.68524,25.189636,31.621078,4.575 276,252.51524,192.99146,15.617508,26.647598,4.547 276,605.89087,-33.620354,28.442139,85.03656,4.535 276,126.28338,203.76727,24.832466,31.762054,4.533 277,559.67566,185.8777,20.674683,42.368546,31.814 277,43.43402,194.80968,30.558472,62.35646,9.851 277,626.43396,488.11057,20.83496,46.34207,7.65 277,42.136497,288.90128,37.891388,55.2883,6.32 277,-17.839678,-66.36826,56.387863,151.95375,6.278 277,-8.721018,465.58057,37.509285,90.26831,6.215 277,55.093502,192.16205,22.89037,49.72444,6.172 277,617.57434,490.3222,21.27893,42.762756,6.162 277,70.06738,199.78603,28.412338,59.549545,6.138 277,32.15646,193.43784,31.10442,53.34456,6.022 277,224.52542,189.29163,22.525513,36.8071,5.878 277,627.34393,-17.931728,17.065308,45.915646,5.878 277,106.23478,289.40668,36.017906,63.470703,5.837 277,612.4845,457.2511,39.571716,104.435486,5.824 277,75.78105,195.55899,17.936287,43.345886,5.812 277,90.58502,288.127,35.90895,62.536407,5.714 277,16.955416,290.02737,37.757256,56.952057,5.571 277,297.77942,182.4973,21.477783,31.062042,5.548 277,-6.1352434,488.87674,18.881659,42.33023,5.544 277,223.36775,215.72528,25.072357,34.959183,5.514 277,619.8574,170.62726,18.375122,42.37857,5.48 277,-73.81545,265.752,201.91266,461.98102,5.31 277,-16.9038,162.33656,50.84939,122.34325,5.3 277,39.27299,294.91464,26.244022,40.61328,5.285 277,623.5518,-35.03784,25.940125,75.46372,5.224 277,-5.7006254,-17.713345,17.32164,42.63377,5.191 277,4.48269,175.97171,29.541855,69.11673,5.184 277,583.50195,411.91995,71.21338,177.08084,5.168 277,315.67957,175.68488,20.724243,32.686554,5.122 277,219.89185,291.22433,33.47264,67.953705,5.116 277,-11.274972,-32.517265,29.572521,73.1077,5.112 277,86.60512,294.42282,27.737846,43.48993,5.084 277,57.565773,291.76474,36.6093,58.67459,5.07 277,603.59674,-57.420074,52.87494,139.49179,5.042 277,-21.228151,404.19617,78.53174,174.23523,4.998 277,122.37408,289.03967,34.842842,66.59067,4.995 277,28.773365,186.09856,53.92445,91.39827,4.981 277,353.79654,201.48912,37.127594,47.7079,4.977 277,82.94119,199.64955,32.292023,59.444748,4.969 277,83.74217,195.4803,16.954727,33.131104,4.953 277,186.83891,289.6794,33.783768,65.28415,4.904 277,171.84573,290.68494,33.83893,65.92883,4.886 277,61.5283,192.35657,27.348972,59.315033,4.882 277,80.63205,203.25114,21.644447,40.103195,4.826 277,74.510544,289.99216,36.117752,60.927887,4.813 277,212.9286,194.98792,33.442078,54.563156,4.771 277,0.2936554,213.54199,43.438293,83.228516,4.736 277,97.410774,207.41652,34.73194,58.347702,4.711 277,200.01625,216.47238,24.504654,33.704605,4.66 277,289.08133,196.51466,45.54834,88.49086,4.575 277,315.87344,148.46085,57.273865,101.6104,4.495 277,155.25189,290.04395,34.13214,62.28528,4.469 277,537.25854,311.5653,141.99982,340.2011,4.423 277,525.27313,194.30658,15.41095,24.211655,4.407 277,139.2377,289.2439,34.372208,63.638763,4.389 277,-4.8686123,130.08282,16.863525,40.916824,4.352 277,315.95227,169.92607,32.43338,51.9075,4.333 277,493.6776,228.40585,237.45862,515.2732,4.259 277,336.77112,205.29564,38.536987,49.93489,4.258 277,305.91364,182.4663,22.47406,31.447021,4.249 278,595.7282,193.75204,20.841919,45.105423,24.296 278,7.93669,172.87282,28.018675,75.04961,7.018 278,626.8238,488.14215,19.937134,45.717834,6.857 278,-17.534565,-65.434135,56.2978,151.14053,6.252 278,627.3716,-17.722301,17.050415,45.688522,5.938 278,612.289,456.61462,39.53833,105.29248,5.938 278,-6.0607905,488.30518,18.744263,43.823853,5.901 278,160.04053,78.33067,22.00531,36.174873,5.701 278,224.00633,184.4495,24.035172,34.139313,5.551 278,-4.0448756,197.5902,17.47206,48.22493,5.503 278,209.50487,166.822,34.85074,51.022903,5.417 278,232.66373,187.36783,23.297943,33.06009,5.416 278,306.71643,209.88713,36.491394,46.127884,5.324 278,583.7238,412.7098,70.92023,175.55478,5.259 278,603.45715,-56.570442,52.905273,139.5929,5.212 278,623.5075,-34.98153,26.050476,75.22362,5.189 278,-11.266748,-32.60258,29.605162,73.244896,5.169 278,-5.6300535,-17.62373,17.25358,42.579273,5.151 278,146.97707,186.4142,21.0206,40.909973,5.079 278,-74.39384,264.99615,201.70242,462.1474,5.029 278,1.0155833,182.63782,24.05463,71.7549,4.992 278,-12.027676,477.44476,29.901648,63.549316,4.964 278,608.5344,198.66246,21.466797,41.11194,4.936 278,-5.032769,140.56999,17.564457,40.873978,4.921 278,152.81465,69.75137,21.947678,36.818665,4.85 278,-22.90595,398.8087,80.41484,177.42447,4.732 278,119.8307,223.76442,24.669403,34.881454,4.718 278,618.7867,489.45166,19.97174,42.729797,4.677 278,161.19942,65.4151,19.110199,32.53763,4.626 278,536.01086,311.78583,143.99677,341.64044,4.597 278,-4.6878285,155.09663,17.368673,45.09178,4.59 278,594.201,183.2939,20.33197,37.578903,4.565 278,288.8827,215.14357,37.26419,48.934128,4.563 278,493.19177,229.25366,237.81592,514.36,4.562 278,195.33737,161.6932,35.75003,56.68474,4.541 278,539.0105,170.63727,21.74292,44.903244,4.508 278,87.12975,222.15268,25.494652,35.92856,4.468 278,614.13416,203.06055,38.374084,103.05603,4.448 278,-4.6051397,177.78366,17.322254,45.34305,4.44 278,499.81168,199.11433,16.11557,25.971893,4.426 278,146.48805,82.00958,35.2249,57.764557,4.413 278,-8.096134,171.65646,27.532356,73.70207,4.409 278,103.32592,222.17265,25.785378,35.605545,4.366 278,184.48611,209.15205,38.328735,48.141495,4.337 278,202.4194,147.47163,60.0925,100.82063,4.263 278,137.2655,161.94228,60.542755,100.020035,4.26 278,548.5589,161.3376,28.807068,59.26474,4.247 278,595.2816,201.02814,41.04718,98.49228,4.233 278,-5.540128,122.06214,17.738853,41.247078,4.202 278,-9.899415,126.80762,28.777534,69.539825,4.183 278,312.86832,207.82751,23.529144,31.558823,4.163 278,151.074,225.2555,25.024841,31.783417,4.122 278,209.0062,156.48883,22.812729,39.560623,4.105 278,215.27777,193.92082,24.546265,33.443115,4.085 278,297.5205,189.99544,21.878113,31.469574,4.065 278,241.1784,187.87297,22.942474,34.78763,4.058 278,-38.06002,-128.42883,118.2721,280.99768,4.054 278,616.9693,201.49667,21.290955,42.92929,4.044 278,256.22034,178.64555,23.388672,38.32968,4.035 278,17.29057,170.24422,29.933117,66.7354,4.001 278,12.598414,317.17072,52.168415,131.32678,3.99 278,289.06946,188.78206,22.650177,33.60054,3.949 278,205.219,-14.71962,30.574097,65.20261,3.935 278,136.41379,224.41754,23.815994,33.944305,3.925 278,138.95264,69.29754,33.380875,55.533783,3.909 278,268.90796,161.13435,15.964691,26.890717,3.894 278,169.04044,161.15045,62.13289,103.99921,3.863 278,122.149414,211.96861,34.820877,50.633224,3.859 278,112.46826,230.71289,23.320724,31.915009,3.857 278,168.7431,80.18986,19.978546,33.81115,3.85 278,52.02099,150.67224,31.16906,64.9492,3.836 278,129.36136,190.49545,45.698837,71.21228,3.823 279,-17.516258,-64.02026,56.24533,149.02289,7.02 279,-12.323594,478.4198,30.66933,63.538086,6.641 279,621.7777,477.85956,28.798523,67.18463,6.118 279,627.38696,-17.550594,17.013428,45.871307,5.938 279,-5.603222,182.8909,18.462782,47.428604,5.647 279,211.05814,161.11105,31.548553,53.077515,5.603 279,-6.120851,488.85992,19.086817,42.7782,5.576 279,-11.108432,-32.525276,29.379593,74.47008,5.56 279,586.88214,182.20851,18.828491,42.215897,5.524 279,-16.873772,441.59454,54.29611,134.3341,5.52 279,603.36475,-56.652992,53.07263,139.15126,5.314 279,583.3179,412.66284,71.45288,175.86926,5.286 279,-5.4876924,-17.546753,17.071144,43.39333,5.139 279,-9.584447,97.800674,29.43568,81.455215,5.119 279,223.22014,171.0384,25.037613,39.646194,5.112 279,623.49677,-34.882034,25.945312,75.311104,5.09 279,539.4957,196.35197,16.9458,30.142334,5.0 279,-73.44392,265.80978,201.21416,460.77676,4.99 279,204.75508,148.99673,31.18396,50.63292,4.987 279,-39.415913,369.646,109.33588,273.44617,4.941 279,-5.535283,101.92421,19.285383,53.264023,4.922 279,535.9948,311.39825,144.331,341.29962,4.812 279,56.101624,224.71208,37.36772,48.81981,4.772 279,329.82593,208.25726,20.512451,27.217407,4.741 279,183.42278,215.6285,40.61548,51.688828,4.729 279,-9.022277,147.02124,27.290535,72.89024,4.704 279,493.47488,229.05817,237.79373,513.2989,4.674 279,269.32486,156.08868,28.454285,60.336884,4.668 279,111.918686,234.47156,25.118729,33.262634,4.664 279,313.90213,190.64125,21.664124,32.854324,4.557 279,440.6159,219.0914,23.959656,31.873718,4.545 279,232.5969,182.40123,23.831665,35.247604,4.517 279,241.35872,176.01054,22.447311,37.47966,4.516 279,-15.997186,125.666115,50.98768,137.34756,4.457 279,117.47458,146.27985,32.181473,66.618835,4.404 279,503.92657,207.98871,24.452393,31.456055,4.354 279,304.2535,221.52365,38.212463,43.566956,4.349 279,227.97064,159.59573,32.30551,52.7399,4.34 279,564.6685,182.40436,15.449524,30.182037,4.337 279,244.35785,180.73776,33.765533,57.584717,4.304 279,135.33786,174.51093,28.218262,59.661224,4.303 279,272.85663,218.98825,36.906067,50.45642,4.27 279,287.7148,219.91644,38.135742,50.46991,4.268 279,97.63612,224.16223,36.59929,49.09088,4.258 279,202.10724,157.46808,60.015686,107.87088,4.257 279,170.41812,210.7105,36.164032,52.706223,4.216 279,454.05444,220.53474,26.790771,33.33397,4.187 279,-38.30093,-128.40524,119.82832,279.9794,4.187 279,5.5746055,471.40808,38.096363,88.86182,4.185 279,182.73929,231.6707,27.100037,35.36989,4.181 279,218.33551,-16.478159,18.291168,40.45225,4.173 279,613.4171,182.18462,37.917114,90.646255,4.144 279,305.4637,188.34935,22.28421,33.965775,4.142 279,329.744,191.23096,19.537323,30.07193,4.072 279,337.60638,206.48671,20.783936,30.882126,4.046 279,153.01302,77.95267,37.22351,64.61926,4.029 279,80.27412,223.92532,37.26113,48.34012,4.011 279,122.54773,158.41614,58.893127,103.56006,3.998 279,4.8412538,169.1839,29.580416,77.24101,3.989 279,220.3205,144.49075,56.77118,102.94235,3.988 279,1.7518836,490.52725,19.928352,40.150238,3.982 279,494.75342,215.25856,26.411682,33.43814,3.978 279,315.0334,206.30765,19.500763,27.513092,3.977 279,143.07942,55.8234,25.17836,44.78187,3.975 279,250.80557,176.85565,21.597137,39.832886,3.945 279,-5.419407,141.75871,18.815899,52.024704,3.945 279,595.97845,201.65503,41.10913,99.88992,3.941 279,332.43863,210.23563,34.12787,47.789032,3.938 279,617.9945,489.5265,21.411682,43.87274,3.918 279,361.87698,170.0225,29.81607,57.55783,3.918 279,343.6256,179.2808,62.37979,98.302536,3.897 279,265.1092,170.19385,23.351532,41.72798,3.895 279,503.96713,220.61673,24.459381,32.181503,3.894 279,154.75932,53.655228,32.74051,58.351746,3.888 279,-2.0679283,159.57074,26.776075,76.584885,3.887 279,95.7598,232.82281,25.69326,33.196472,3.883 279,258.2153,218.55508,34.4382,51.572235,3.871 280,66.55549,190.52162,29.726463,78.05083,6.744 280,626.72815,487.86792,20.245422,46.240356,6.68 280,446.55576,259.1276,40.257324,48.025665,6.614 280,-17.826527,-65.176125,56.441204,150.34363,6.405 280,603.50055,-55.55719,53.167603,138.29637,6.096 280,346.97333,187.66258,32.90924,51.6987,6.079 280,-8.793848,465.84726,37.77726,89.910736,5.973 280,618.22534,201.18207,17.822266,46.29445,5.972 280,627.3537,-17.869694,17.143982,45.986103,5.83 280,612.82056,457.42972,38.74286,103.82242,5.7 280,254.53146,166.83707,28.536652,71.820175,5.687 280,167.2368,277.3246,26.52623,32.276,5.674 280,-6.047361,488.6491,19.014763,43.52307,5.649 280,91.74061,159.06328,30.875862,69.70279,5.544 280,153.97203,270.53745,35.962418,43.190094,5.525 280,-5.305155,267.05045,16.398987,34.74463,5.358 280,-5.5414367,-17.55281,17.182316,42.543633,5.274 280,583.4375,413.40768,71.35718,175.3245,5.262 280,-73.878105,265.03778,202.61215,463.0119,5.227 280,61.531887,167.15869,31.061665,74.57507,5.185 280,623.54785,-34.953094,25.967834,75.39711,5.15 280,626.5527,88.4432,18.25299,48.275368,5.118 280,294.2257,112.48839,26.52539,43.7527,5.083 280,-21.423195,404.1842,78.91113,173.92157,5.067 280,-11.156942,-32.429317,29.398617,72.90781,5.061 280,359.34494,198.54425,25.104065,34.878952,5.029 280,10.371609,267.34265,18.99504,29.580597,5.028 280,223.48482,274.5243,25.919952,32.74054,5.018 280,-4.826632,252.9132,15.7284565,35.585037,4.941 280,23.87735,265.88736,23.072968,30.860687,4.872 280,280.30164,77.25467,24.843445,40.64836,4.82 280,45.82794,178.4587,30.516594,68.10147,4.791 280,78.1253,185.3636,24.676994,57.969193,4.791 280,279.22003,271.6165,25.324615,28.707916,4.775 280,535.87537,312.0417,144.35022,339.78534,4.758 280,393.22403,230.28064,36.283844,51.874023,4.75 280,473.96796,236.73907,20.616333,29.979126,4.74 280,369.00708,219.61966,22.926788,29.48494,4.726 280,332.50397,179.79292,32.059875,51.693634,4.649 280,182.4119,271.99942,26.504898,31.60138,4.646 280,262.83084,197.0323,27.192108,64.32283,4.638 280,3.38629,262.14117,18.053041,32.717163,4.615 280,377.5792,219.7544,23.238556,31.556412,4.581 280,152.75923,281.41418,22.861954,27.511292,4.553 280,618.5389,489.17145,20.247498,43.436646,4.549 280,82.76776,173.2133,32.007057,74.622055,4.548 280,199.26709,274.82928,25.890396,32.28662,4.518 280,217.1199,278.93097,23.281158,31.681488,4.506 280,493.72665,228.76865,237.45773,514.0115,4.498 280,552.20026,250.57152,24.20111,34.80861,4.458 280,192.16977,278.85004,23.912857,30.979492,4.449 280,201.79578,263.69547,36.940094,46.461,4.428 280,388.972,190.03958,34.920166,58.247635,4.425 280,-4.4089656,223.59296,14.825293,33.298096,4.404 280,391.27283,226.914,25.89392,34.042053,4.379 280,460.56628,264.60742,30.464478,35.60318,4.344 280,432.63037,257.24564,37.72046,50.03015,4.334 280,-4.984059,238.50824,15.949818,34.677948,4.321 280,287.43018,278.56763,23.758118,26.97583,4.298 280,202.36429,232.91881,19.211517,24.995468,4.297 280,29.153452,162.36273,56.91214,118.55655,4.291 280,326.23328,256.91577,41.23059,49.62372,4.276 280,101.94536,181.28519,28.996841,68.65697,4.272 280,310.64056,246.24849,41.64749,55.832016,4.259 280,296.07837,276.90677,23.928345,27.01706,4.225 280,402.0194,179.17125,32.147827,63.71707,4.192 280,572.2433,201.31372,53.378174,105.06772,4.191 280,367.37952,206.80768,48.59903,72.32065,4.186 280,57.969894,206.02307,57.594986,100.07703,4.181 281,275.90775,181.8633,31.19696,82.87877,7.993 281,291.8285,185.54907,28.960815,80.20746,7.616 281,626.8831,488.70474,20.040588,44.75186,7.383 281,438.9649,305.00015,27.494812,36.122772,7.094 281,608.72406,198.36382,24.42981,43.36943,7.052 281,618.3851,193.45418,20.569946,44.436264,6.88 281,627.3288,-16.184221,16.66809,45.485973,6.817 281,423.79156,305.41525,24.715637,30.126404,6.416 281,449.10416,303.08154,38.011383,47.272736,6.35 281,-17.860014,-63.44171,56.36245,147.69588,6.312 281,353.8471,202.56345,20.727142,39.153183,6.291 281,599.0644,199.07071,24.63556,38.136658,6.054 281,383.67468,314.61847,24.818817,30.776672,5.888 281,-8.7867365,466.2508,37.621365,89.57825,5.862 281,603.76697,-54.52276,52.65625,133.28914,5.779 281,406.81024,307.92972,25.374268,30.211517,5.651 281,612.5476,458.00452,38.978027,103.19635,5.584 281,391.117,311.00342,27.079407,31.38556,5.465 281,623.6935,-34.374855,25.534058,78.593895,5.328 281,-6.1916947,488.86063,19.16718,42.994354,5.29 281,-73.3493,264.71164,201.83398,463.47574,5.247 281,583.0254,414.00854,71.88861,174.7362,5.198 281,3.4344947,219.43164,32.624588,66.30121,5.169 281,432.8041,309.81406,23.60965,33.374634,5.109 281,308.78506,158.69455,29.025269,75.157715,5.108 281,-21.229029,404.68683,78.54459,173.75183,5.076 281,132.59654,224.43584,34.23436,67.78395,5.072 281,262.55548,182.1199,29.62732,71.06592,5.058 281,-5.549677,-17.25929,17.087898,42.008045,5.044 281,468.958,313.32437,29.46164,34.909027,5.04 281,131.61485,201.54913,33.37828,65.89252,5.036 281,259.0848,155.34387,29.29898,65.027115,5.015 281,618.80164,490.6862,19.646973,41.56076,4.937 281,299.95612,170.77768,28.64856,79.7498,4.931 281,168.82407,190.7301,36.462555,65.73459,4.897 281,77.04879,181.22139,58.19187,113.22093,4.866 281,-11.439928,-32.390694,29.816452,73.099174,4.858 281,99.76163,199.79001,41.127274,79.13745,4.809 281,464.03607,295.34058,39.705048,49.03595,4.799 281,503.0685,314.4603,25.053497,30.795837,4.798 281,17.588669,233.76552,34.88373,56.886765,4.797 281,519.8252,313.26797,25.053406,26.198486,4.781 281,347.05847,206.58417,20.321106,36.26425,4.761 281,536.17737,312.25424,144.10168,337.757,4.751 281,543.96204,302.51828,25.053772,31.926025,4.694 281,371.0418,303.25693,34.584747,43.169617,4.68 281,68.69338,210.21495,30.538597,61.0356,4.582 281,477.67236,301.04724,28.95224,33.976654,4.57 281,394.20795,300.29312,35.16443,44.9429,4.533 281,485.92798,313.6525,27.031189,32.65085,4.465 281,368.63916,313.22308,22.955719,28.524933,4.454 281,570.4841,198.48605,57.60089,116.984314,4.452 281,493.55316,228.45853,237.79315,512.69775,4.443 281,275.94592,203.45737,40.872864,88.75821,4.439 281,544.1351,288.57574,39.7182,55.402374,4.436 281,387.76392,164.58066,18.113281,25.720474,4.411 281,-5.9227824,240.05511,18.706776,41.454834,4.402 281,110.641266,229.15712,33.499207,63.296585,4.39 281,285.12042,166.23619,28.49884,77.48724,4.347 281,75.80272,204.28687,30.976105,51.66266,4.334 281,416.59653,311.27795,23.39328,29.27536,4.319 281,460.23096,254.90965,16.214935,22.772324,4.313 282,8.530493,215.38577,25.14897,39.35591,17.69 282,233.34009,272.42957,21.765167,28.811615,6.879 282,626.5829,488.0914,20.359375,46.001007,6.271 282,307.8935,213.1059,41.217407,80.77783,6.216 282,100.697205,206.70732,32.17717,71.500626,6.178 282,263.6218,287.35806,24.757172,29.815796,6.172 282,518.9869,214.33244,28.774231,88.738785,6.01 282,3.2067335,189.90683,31.54821,61.246857,5.945 282,622.9689,-33.492683,27.196838,76.33119,5.808 282,225.25217,270.56787,22.07837,31.07315,5.756 282,-11.751436,478.4701,29.592876,63.215332,5.753 282,86.55929,212.50577,30.087349,60.645386,5.743 282,612.6358,456.6567,39.572327,104.500336,5.529 282,278.6677,287.22644,25.536987,34.341064,5.455 282,-5.441531,-17.188461,17.098312,41.531742,5.443 282,-5.693063,213.4351,18.664478,40.504196,5.402 282,-6.145427,489.05658,18.771456,42.579285,5.334 282,81.13556,205.8335,24.928589,41.55786,5.312 282,-18.023783,-64.655914,56.217598,148.31694,5.251 282,-73.23525,265.51776,201.39465,462.80988,5.198 282,-11.376093,-32.316353,29.608429,72.2863,5.029 282,602.99365,-57.57187,53.778503,137.63754,5.003 282,579.6373,227.07733,31.5531,72.56128,4.995 282,286.0456,210.7992,28.307556,63.208527,4.911 282,-21.491098,403.29044,78.578636,174.43686,4.9 282,2.3914778,206.54626,39.726818,69.203,4.895 282,627.1935,-20.161623,17.673706,49.951466,4.895 282,585.6852,-100.06463,75.387085,231.89407,4.883 282,582.8683,412.90753,72.14337,175.98761,4.88 282,330.4578,229.19669,31.155487,65.09131,4.844 282,265.2177,283.12552,34.995667,43.324493,4.836 282,218.98486,262.56308,33.114975,47.896973,4.803 282,240.71762,279.91412,21.973297,26.259735,4.727 282,536.6741,311.7895,142.96918,339.49847,4.707 282,257.60602,228.07205,22.563232,42.299835,4.668 282,22.637012,215.69647,24.926662,32.519928,4.599 282,-1.1160564,189.97925,22.37792,40.793808,4.598 282,471.63806,305.9355,24.230408,33.970764,4.546 282,249.68079,273.65143,21.019653,28.237915,4.505 282,266.66714,221.68356,33.97113,65.25198,4.486 282,489.7268,-178.14716,234.79333,421.28082,4.481 282,317.6006,238.40002,34.959778,72.31207,4.46 282,57.928345,223.40643,21.661354,32.16588,4.449 282,284.63007,214.42685,58.18799,105.81375,4.404 282,141.57089,220.79831,32.715515,62.925262,4.381 282,494.09427,228.02203,237.26962,513.56586,4.348 282,390.3488,225.1211,26.066772,43.77533,4.325 282,594.36847,-47.91809,44.233093,101.94245,4.314 282,218.04404,276.4507,21.1828,28.687866,4.275 282,155.95839,228.63632,32.805267,63.61444,4.265 282,293.71948,204.5593,41.365784,77.69223,4.264 282,269.9529,194.25348,55.014435,110.70233,4.24 282,314.3924,208.0016,54.84796,110.179214,4.219 282,66.83373,223.86745,20.774948,32.42772,4.209 282,3.3662634,227.01793,19.584175,32.143845,4.2 282,170.32614,237.72952,32.813507,60.961365,4.192 282,528.2207,284.47433,33.88678,71.98462,4.162 282,252.10413,279.53,33.743988,44.327667,4.15 282,-5.4904175,181.37747,19.742203,39.435394,4.139 282,398.982,235.66913,22.586365,37.80777,4.133 282,49.063972,230.58963,22.494186,32.531586,4.12 282,74.24653,200.84396,23.357376,33.875275,4.113 282,235.81311,179.6109,58.067383,111.85159,4.101 282,618.447,489.45776,20.371826,43.45862,4.072 282,293.95743,71.67253,32.394012,81.10773,4.048 282,525.83246,200.7644,30.304993,85.849884,4.041 282,124.92261,204.82701,56.660324,108.939255,4.029 283,216.96967,212.5079,19.585785,35.416946,21.057 283,38.890972,201.22961,26.011799,39.349594,9.852 283,224.06868,211.52237,18.35318,32.4709,8.967 283,286.79752,194.24634,28.052277,76.17059,8.395 283,330.6998,213.53986,32.519165,67.83194,8.133 283,627.09436,-17.68105,17.472412,46.321945,8.124 283,623.20404,-33.597137,26.065308,75.59909,7.428 283,626.80963,487.67038,20.100647,46.35733,6.352 283,558.60645,194.18431,53.35974,112.23802,6.283 283,603.5106,-55.174126,52.682922,132.33415,5.836 283,-8.88368,466.7269,37.6391,89.22031,5.735 283,233.74966,213.04358,16.89824,28.716095,5.711 283,612.65814,456.68295,39.40924,104.798676,5.688 283,548.0578,202.27786,43.896362,77.85092,5.638 283,-6.095739,488.4308,19.018202,43.26996,5.493 283,-5.4518294,-17.135448,17.107248,41.61883,5.457 283,537.07837,224.70825,63.044983,117.532166,5.422 283,279.03745,185.42903,29.03778,63.10237,5.407 283,-18.056227,-64.60408,56.25544,148.58026,5.364 283,147.10306,200.2963,17.417068,27.718506,5.318 283,34.191566,209.69879,20.538464,34.442276,5.303 283,357.8563,156.3407,29.732025,84.59366,5.3 283,225.76407,225.37825,20.108444,33.69774,5.262 283,480.59555,303.35327,38.344208,54.09195,5.231 283,212.81735,208.24713,17.39032,31.888992,5.219 283,423.85065,287.81284,25.49411,34.67337,5.208 283,-21.217222,404.66956,78.44308,173.74597,5.206 283,455.7954,297.01343,24.413696,32.68579,5.192 283,439.89166,288.44937,24.060516,28.348816,5.149 283,273.54245,195.9805,22.025543,45.85472,5.136 283,-73.06381,265.96844,200.70416,461.78778,5.096 283,234.39554,229.6825,19.653702,33.3721,5.091 283,618.89575,-18.477684,17.581238,45.406483,5.077 283,-11.312407,-32.233788,29.565954,72.302025,5.074 283,536.1322,311.14246,144.15051,339.95947,5.021 283,218.77164,225.78987,18.689697,31.15831,5.01 283,586.12994,-98.38294,73.74896,230.67282,4.975 283,48.629875,210.7135,22.852486,34.50406,4.937 283,489.15668,197.66765,59.842896,100.10588,4.937 283,571.9506,207.01537,55.92566,146.80312,4.932 283,582.7394,413.32825,72.136475,175.88965,4.92 283,-5.1338673,213.85571,17.274773,39.069046,4.874 283,459.234,195.8284,58.13318,104.407074,4.851 283,479.04068,298.33554,25.171478,34.595764,4.841 283,531.6425,200.18799,44.08429,72.94623,4.755 283,2.720319,211.30708,18.71364,36.615585,4.72 283,522.20166,208.80603,62.22522,105.68799,4.679 283,510.57034,232.06348,48.37961,75.826416,4.657 283,450.54883,229.81294,20.908813,38.78087,4.579 283,490.47083,-180.3826,234.15198,423.56744,4.551 283,493.95056,227.34827,237.82526,513.6562,4.534 283,56.590477,206.45737,25.063187,37.707397,4.527 283,320.78534,208.15263,29.536774,74.87825,4.524 283,479.42743,222.34671,47.337646,73.021515,4.506 283,447.349,218.6142,47.3638,76.96234,4.506 283,9.765055,211.05544,18.613657,32.98668,4.498 283,-16.681038,159.03632,50.036297,128.08163,4.462 283,296.61627,187.3178,20.891266,52.91127,4.446 283,505.92462,220.31337,20.259644,34.422684,4.437 283,-4.220894,190.11043,16.312151,36.73088,4.428 283,432.64706,203.75253,45.929962,82.63519,4.393 283,432.6276,283.9382,22.957397,28.491089,4.378 283,579.2723,200.61151,41.26709,87.83591,4.321 283,580.0439,306.0418,33.01233,64.03992,4.316 283,471.11,291.8789,24.973083,33.211975,4.314 283,594.55475,-45.615055,43.115845,95.90352,4.296 284,329.34033,212.79585,20.60904,40.615402,26.402 284,622.88446,-33.24452,27.176086,76.86014,7.404 284,242.45758,211.86125,19.66571,38.184402,7.279 284,-18.28262,-65.984276,56.59595,151.16864,6.697 284,626.7447,487.57028,20.328796,46.291107,6.518 284,491.6556,209.33798,31.944244,67.511444,6.454 284,-8.9969225,466.04044,37.68324,88.97238,6.295 284,-3.9767792,191.03227,15.471835,35.5943,5.981 284,26.662083,199.68741,18.189354,30.883377,5.956 284,268.31152,216.95566,16.806091,35.028336,5.866 284,602.5701,-57.29181,53.433167,134.01765,5.832 284,626.9925,-19.407719,17.489075,49.433174,5.776 284,612.73706,456.20285,39.67206,105.10928,5.769 284,260.2394,215.80643,17.397797,36.365875,5.519 284,-6.2518215,488.4074,19.193459,43.86444,5.492 284,26.397001,211.25797,19.758589,33.136444,5.472 284,3.9780772,195.50612,17.127527,31.407318,5.463 284,12.0647545,206.70152,17.340187,36.454086,5.312 284,-5.4822454,-17.363453,17.164522,41.72388,5.294 284,-73.031975,265.487,200.56522,462.1513,5.213 284,492.64554,206.84503,54.906647,128.26306,5.076 284,299.0724,212.30127,15.528229,31.684265,5.07 284,-17.592781,437.3124,55.14827,137.67343,5.061 284,-11.476847,-32.73923,29.646276,72.5035,5.02 284,594.67456,-46.41952,43.809814,97.176895,4.993 284,138.25508,215.9966,19.902084,29.024826,4.984 284,499.30112,200.63907,41.044525,82.058624,4.924 284,586.40906,-99.407005,74.10889,231.75595,4.923 284,146.12375,215.26309,20.075104,29.403305,4.904 284,582.89813,412.82455,71.79266,175.96268,4.904 284,276.04794,213.80438,16.181854,34.41696,4.904 284,395.14178,212.17006,18.80429,37.267838,4.85 284,353.86523,236.36185,34.836365,60.59424,4.81 284,251.1774,216.38051,18.024231,35.419724,4.81 284,536.25836,311.1692,143.59918,341.92242,4.808 284,-39.629173,369.53253,109.48412,273.78973,4.791 284,501.9829,231.75572,26.023071,52.13887,4.758 284,122.89544,216.15662,18.45237,28.053787,4.741 284,490.2515,-181.26276,235.26053,423.8326,4.7 284,4.2859263,209.04967,16.468117,34.656326,4.635 284,578.74677,219.40814,20.424377,37.73752,4.529 284,493.89072,227.79391,237.32602,514.20386,4.517 284,413.28455,188.04094,25.688812,60.59352,4.48 284,-11.013126,183.9216,27.560516,62.61612,4.461 284,162.85764,212.4288,33.17383,55.241028,4.436 284,469.72122,201.27765,41.82251,87.37085,4.395 284,587.3638,329.12427,32.138306,51.00406,4.382 284,-4.9888473,209.7604,15.837601,36.81613,4.369 284,481.79715,220.94992,43.667694,93.13559,4.354 284,510.27234,213.28287,53.5011,143.289,4.318 284,131.12308,221.81216,18.335678,28.89711,4.305 284,571.8962,322.0468,31.73352,57.115234,4.298 284,515.67255,204.2647,42.402527,82.962204,4.296 284,573.471,-26.23808,54.000977,133.6347,4.28 284,338.8122,230.90079,33.78958,63.036346,4.277 284,201.39159,225.51938,21.15512,33.48233,4.271 284,418.67072,-16.952026,17.502625,40.87852,4.265 284,615.1449,-22.095613,26.77069,74.24356,4.221 284,533.048,221.32297,30.352112,80.59982,4.208 284,542.9333,133.28854,27.534973,88.39107,4.183 284,426.65027,-18.49868,17.402222,42.4087,4.177 284,336.3943,224.32758,20.933044,34.671356,4.149 284,330.8052,214.17078,30.640228,53.63794,4.134 284,267.57947,200.82533,14.968018,29.383636,4.1 284,422.21988,-33.133102,28.330719,72.04695,4.078 284,-4.381263,163.2301,15.230655,37.60504,4.075 284,259.35648,203.81218,17.322052,33.838867,4.07 284,-17.48721,173.35876,51.595516,124.97333,4.065 284,410.97742,-16.847265,17.372528,39.31618,4.057 284,217.07903,227.20969,20.675507,33.37552,4.003 284,163.57037,222.55626,20.05774,35.362045,3.983 284,33.299515,212.10112,22.099236,34.077026,3.954 284,235.95505,219.08815,19.270935,32.67395,3.953 284,443.96594,-60.317036,55.85309,126.25749,3.951 284,585.31323,345.73035,21.428223,34.224823,3.947 284,403.1656,-16.070827,16.997345,38.368637,3.928 284,292.80704,210.5563,15.402985,33.89044,3.916 285,393.2248,218.54755,22.95102,39.534058,18.611 285,203.27788,219.87909,19.008408,35.146378,7.763 285,486.74512,189.51782,27.755127,65.86153,7.512 285,217.2185,220.58585,21.099426,31.939987,7.111 285,626.89435,488.01245,19.952454,45.953552,7.047 285,-17.987999,-65.41939,56.47625,150.80325,6.76 285,234.16853,225.25095,22.307236,36.68451,6.58 285,167.3101,219.61032,23.08432,32.364655,6.478 285,346.17313,209.13559,18.627258,40.04457,6.387 285,476.7658,229.36139,15.134888,26.9104,6.357 285,380.13214,209.76416,16.816772,34.836487,6.351 285,255.77332,223.18452,24.554565,39.69484,6.285 285,-11.652868,478.9369,29.490688,63.130005,6.0 285,590.828,212.20366,32.801697,87.803024,5.977 285,475.33258,206.67712,18.934113,40.197693,5.869 285,481.846,195.25461,20.934326,48.976364,5.701 285,496.2279,195.08954,20.947937,47.499252,5.622 285,612.8227,456.05704,39.197266,105.487946,5.586 285,197.66786,214.83322,29.048218,56.08432,5.478 285,-5.46304,-17.435549,17.06489,41.89594,5.469 285,416.98108,248.7465,37.75418,64.7415,5.45 285,-5.9508886,489.459,18.83015,43.086823,5.444 285,622.2156,-33.835365,27.579102,75.985054,5.366 285,627.03125,-18.770582,17.720703,47.943684,5.19 285,-72.997505,265.2395,200.68875,462.41504,5.134 285,578.80115,194.94928,50.264038,143.11426,5.108 285,-11.368823,-32.46866,29.487934,72.10679,5.019 285,291.20364,212.49835,20.69397,42.222,4.984 285,-21.33769,403.83032,78.50083,174.4303,4.958 285,583.0124,413.13712,71.56915,175.58182,4.924 285,330.69858,217.82266,17.20169,37.93074,4.868 285,490.4923,213.11877,19.06839,41.431274,4.8 285,536.217,310.90027,143.8722,341.8894,4.797 285,503.76898,203.00833,25.343018,68.063354,4.716 285,602.65186,-57.1933,53.73938,139.1616,4.716 285,316.04532,216.97543,17.352356,40.032257,4.693 285,225.65147,221.03268,22.055817,34.78128,4.645 285,542.08716,187.82759,52.98645,114.41713,4.644 285,155.11185,221.54747,20.435669,31.482529,4.592 285,493.912,228.39691,237.2569,514.2618,4.591 285,618.895,489.56195,19.858643,43.227417,4.577 285,175.15085,212.57327,23.154678,38.08084,4.571 285,323.8465,218.12975,17.536926,39.685074,4.514 285,57.715446,197.26521,21.68267,31.669601,4.492 285,386.81982,210.65231,18.794983,37.843857,4.413 285,466.7125,198.17752,19.856903,42.242096,4.389 285,585.947,-105.022446,76.17523,241.31175,4.362 285,505.77344,266.42996,34.578064,68.59311,4.305 285,451.7247,223.69533,20.379639,33.087692,4.28 285,491.59827,266.97034,33.226746,65.752106,4.264 285,243.22388,217.92972,32.765625,58.42682,4.14 285,532.00824,180.85913,41.095642,78.291565,4.126 285,195.9773,223.3995,18.86409,39.67456,4.106 285,203.46783,202.42401,28.84935,51.34091,4.087 285,482.44434,217.09563,18.129578,36.335754,4.083 285,619.02704,-7.607402,20.43573,44.443024,4.079 285,298.43103,222.61366,18.633759,35.652237,4.072 285,440.14496,254.73738,38.73059,61.39537,4.068 285,489.4952,-178.49667,235.53958,418.01474,4.053 285,475.10883,-14.211248,16.427734,38.57564,4.051 285,210.14685,226.02267,20.248978,35.982117,4.04 285,354.55634,220.52524,16.15857,32.601166,4.039 285,474.65582,0.5720444,18.305298,35.374428,4.008 285,500.3987,179.7916,38.461273,82.62921,3.95 285,504.77087,198.83289,19.39209,45.13034,3.945 285,564.5421,180.3868,40.86548,82.695175,3.927 285,459.33536,198.84354,19.729858,40.103424,3.913 285,59.43164,212.9843,19.794746,34.843506,3.907 285,566.3374,314.25882,27.601318,66.45145,3.906 285,623.68243,222.73505,26.158325,78.33087,3.864 285,471.00906,183.85988,28.252594,64.30664,3.857 285,372.76974,202.29001,16.110626,37.143326,3.853 285,500.47366,-15.585101,15.629181,40.29167,3.847 285,547.6859,169.02806,41.60431,80.78606,3.828 285,187.10916,219.5191,19.200668,33.591385,3.828 285,594.7806,-46.830326,44.092773,100.98828,3.815 286,453.47925,222.23138,23.322815,51.16681,53.761 286,511.68262,224.6336,21.593384,43.75479,15.43 286,418.46222,209.30579,17.49585,38.658752,10.633 286,563.68097,223.40831,18.61139,39.154373,9.106 286,538.7341,208.19092,18.112366,41.22574,9.088 286,208.19092,223.81723,22.768768,42.137543,9.013 286,539.3538,232.58427,16.947266,29.956009,8.618 286,627.36743,-15.741218,16.606323,44.335037,8.448 286,531.53613,213.34468,18.345825,43.130417,7.667 286,-17.632767,-64.15641,56.26719,148.25401,6.962 286,546.76575,207.54597,18.585815,41.676285,6.871 286,623.7275,-34.023964,25.498535,76.52549,6.807 286,521.9723,215.22212,19.214355,42.992447,6.623 286,569.67035,231.86942,18.961426,37.419983,6.477 286,202.67775,222.47034,32.444992,66.94089,6.349 286,554.8868,206.47025,17.96399,40.50653,6.097 286,234.93172,220.30463,16.09665,31.88919,5.967 286,-6.117462,489.5371,18.997269,42.30945,5.963 286,178.50502,229.29556,20.442215,32.459137,5.884 286,584.86316,305.53616,22.960999,45.258423,5.88 286,316.6438,216.33902,28.861603,51.061676,5.87 286,603.25824,-54.947018,52.90271,137.16177,5.838 286,626.70996,488.0237,20.519287,46.55258,5.782 286,170.11894,230.7884,19.914993,30.785812,5.731 286,613.0129,453.86893,39.220154,108.50467,5.641 286,564.6869,294.2801,31.130127,56.411285,5.571 286,60.79355,208.9204,29.74202,59.421402,5.44 286,548.3914,196.29205,15.523315,37.21988,5.423 286,-8.823687,464.3916,37.69172,92.16077,5.387 286,569.83234,214.20082,19.560791,41.52054,5.221 286,-72.992714,265.09702,200.97607,462.99576,5.209 286,413.28976,204.25325,16.626648,37.293304,5.162 286,339.26926,207.13232,17.650543,33.155884,5.143 286,186.12234,228.69379,20.985031,35.251587,5.134 286,275.2781,223.23128,32.507812,56.745438,5.06 286,555.76544,222.7973,17.789246,37.164093,5.04 286,-21.412952,403.1713,78.59706,174.83884,4.987 286,536.0887,310.2771,144.6294,341.6524,4.927 286,449.33896,195.10147,42.981567,75.033875,4.924 286,583.4046,411.7442,71.1048,176.7904,4.921 286,-11.388569,-33.116856,29.844688,74.81779,4.882 286,545.66705,223.44806,17.98346,38.599304,4.767 286,-5.652403,-18.246786,17.500252,43.491184,4.738 286,539.81726,196.08223,15.578064,38.80928,4.732 286,561.42725,294.73227,22.753906,42.79825,4.724 286,620.3656,-15.957384,15.927856,40.873184,4.702 286,216.20935,231.97049,22.912018,40.870697,4.691 286,494.3869,227.67288,236.90247,514.3541,4.654 286,425.18887,213.76773,17.637177,36.364517,4.546 286,385.97226,225.04631,18.979767,37.647537,4.529 286,589.0802,303.27988,31.552124,62.911163,4.509 286,576.9142,298.9494,21.084106,39.387726,4.423 286,569.26935,180.06818,19.883728,43.609467,4.409 286,603.23413,186.70923,28.762817,61.970963,4.357 286,446.0469,222.31467,21.976288,43.648895,4.331 286,472.54623,265.88123,38.57303,66.38571,4.277 286,576.5819,210.71652,20.623047,42.93109,4.27 286,250.63737,227.13466,22.48378,45.809982,4.264 286,552.828,294.33337,23.352905,40.982788,4.241 286,616.65,194.41306,21.016602,53.417526,4.237 287,547.3451,218.2969,30.11969,75.83948,86.803 287,585.424,211.81775,27.730408,71.965,11.586 287,-5.3723817,-15.670267,17.034842,42.017963,7.182 287,627.16064,-16.37782,17.245605,45.0182,7.059 287,622.99646,-33.93672,26.738892,76.78022,6.983 287,450.97955,207.61496,16.727478,39.811646,6.754 287,616.1266,193.93652,23.32782,82.98489,6.432 287,560.6806,223.56465,29.520447,68.089066,6.134 287,595.7186,207.58815,29.45874,69.70177,6.004 287,331.42657,224.32376,34.158264,59.48044,5.991 287,626.66187,487.50955,20.417358,46.60257,5.894 287,445.00217,207.02502,15.754181,40.24005,5.753 287,-17.52285,-63.3055,56.341072,143.94249,5.679 287,612.84705,454.78177,39.197693,107.482635,5.642 287,-6.474573,488.66574,19.311317,43.043915,5.521 287,-11.002705,-32.01316,29.023727,74.33153,5.501 287,-12.589743,477.85776,30.6513,63.720123,5.365 287,-73.142,265.1725,201.16905,463.3258,5.281 287,439.7967,251.5903,25.296509,36.14923,5.192 287,602.7988,-56.00136,53.615356,133.0774,5.185 287,618.66486,-16.279652,17.249023,43.42783,5.174 287,583.31195,412.94556,71.129944,175.22937,5.079 287,12.203479,182.0429,54.484234,108.34703,5.074 287,527.6301,187.42938,55.41687,105.446014,5.073 287,458.21484,218.38002,19.34497,36.1093,5.06 287,536.06165,309.81305,144.49939,342.22778,4.977 287,-21.288643,403.25732,78.33275,174.42017,4.888 287,173.34502,221.26064,29.798172,57.166794,4.698 287,37.80043,212.2888,30.558167,61.0515,4.601 287,494.4714,228.43225,237.2941,514.8001,4.582 287,522.1728,268.70892,36.278503,62.30423,4.552 287,498.5265,265.48404,35.07141,54.82544,4.467 287,2.9212296,-12.594368,15.846057,37.921345,4.386 287,574.2235,224.07214,29.842773,62.41272,4.335 287,594.35364,-45.153324,44.43811,96.6389,4.306 287,-5.0890837,208.79921,17.663761,42.64792,4.294 287,442.1239,250.92128,35.21576,51.996292,4.274 287,180.94612,210.56117,37.52304,73.1805,4.243 287,208.04161,209.18318,23.237076,43.6463,4.217 287,457.79034,204.57211,17.639465,36.17325,4.174 287,613.89154,-17.619555,26.967957,69.64883,4.17 287,580.1151,213.9613,20.40747,55.155273,4.157 287,250.8834,217.0985,34.627487,67.833786,4.141 287,586.4731,-100.93529,75.101746,233.19878,4.111 287,-5.4967546,94.01912,18.383896,48.703735,4.092 287,523.27,-15.662079,16.365967,38.371754,4.089 287,-15.815425,172.86575,50.47098,134.15817,4.088 287,587.99286,294.85385,33.65277,63.54361,4.057 287,-0.43088555,193.30133,26.000397,73.13989,4.039 287,235.06796,205.87004,16.963715,30.59871,4.039 287,564.5435,194.73694,40.313965,81.00012,4.009 287,569.02814,285.01886,37.191284,63.006256,4.002 288,480.05554,188.63823,26.811829,77.06923,16.124 288,17.730541,206.49007,20.415176,42.416885,9.235 288,4.4008055,207.27649,38.11301,91.89258,8.046 288,-5.388442,-15.942434,16.952478,41.396484,6.808 288,-17.48796,-63.45516,56.0098,147.63696,6.762 288,623.0726,-33.583237,26.809387,73.35571,6.638 288,-4.3600254,203.39351,15.788109,40.959976,6.574 288,17.331482,211.22336,42.382637,76.63223,6.539 288,626.72266,487.54852,20.399658,46.285767,6.408 288,23.455944,214.05052,22.70113,47.03325,6.063 288,542.0296,277.10855,26.474915,43.62552,6.047 288,555.23724,280.81506,33.79138,54.916992,5.979 288,-6.187532,488.671,18.975504,43.304596,5.924 288,-11.195487,-31.345816,28.997799,71.65671,5.806 288,612.9764,456.0434,38.89447,105.056885,5.758 288,43.35075,225.6945,34.49676,62.61519,5.697 288,-5.3688507,187.34392,17.074978,41.766113,5.69 288,626.8533,-17.501163,17.949219,45.395035,5.651 288,58.34278,233.40569,34.771088,55.71031,5.594 288,553.62897,195.79158,21.286926,32.64908,5.578 288,265.36053,221.28778,22.569305,42.50653,5.568 288,-12.320961,477.68927,30.257978,63.81311,5.494 288,-73.118195,264.44287,201.81934,464.5058,5.302 288,602.6324,-54.966644,53.513977,130.57541,5.159 288,583.4817,412.7954,71.058105,175.9336,5.139 288,3.7209911,198.84111,17.594461,40.055054,5.096 288,569.4471,286.67078,35.44525,54.776794,5.03 288,9.304485,190.78842,26.398064,64.22151,5.007 288,0.42247534,218.26178,49.88255,134.24762,4.886 288,241.9653,225.6491,21.145386,37.184433,4.847 288,-21.368856,402.68817,78.64537,174.83563,4.768 288,-40.412376,365.18884,110.93468,277.24487,4.763 288,36.071735,216.00052,31.033306,61.14563,4.746 288,0.44917583,207.53326,26.045605,67.770294,4.726 288,32.819088,217.99033,22.820759,43.377777,4.709 288,536.25806,310.60938,143.92072,342.15796,4.704 288,493.97812,228.13245,237.28256,514.16473,4.475 288,25.642128,215.89316,58.45189,131.33038,4.445 288,-5.3660865,172.98999,17.232069,39.69957,4.427 288,-10.300175,183.01903,28.001501,66.22273,4.427 288,547.01086,297.18588,32.86664,60.54178,4.427 288,-13.531495,176.76903,49.705093,129.85286,4.405 288,234.86732,227.37567,19.493958,35.8768,4.389 288,235.68457,216.35782,31.067719,58.818542,4.348 288,520.1395,271.6579,38.631775,53.586334,4.334 288,585.8267,-99.10541,74.87366,232.16931,4.278 288,-15.515447,231.56256,50.584717,150.7185,4.232 288,234.12622,217.69951,19.245743,30.436157,4.231 288,618.5798,489.26447,20.416748,43.39612,4.199 288,588.9764,290.6271,32.22815,59.882782,4.163 288,244.73993,210.75044,39.29825,83.87993,4.156 288,593.8712,-43.478096,44.320374,95.00242,4.145 288,227.33672,218.60541,18.378677,29.52002,4.132 288,383.4212,196.9637,27.552246,61.58348,4.074 288,275.07214,209.93904,40.650238,86.265854,4.063 288,219.17468,219.2636,18.071625,28.78125,4.044 288,547.159,188.98477,20.887146,34.300674,4.036 288,490.4168,165.83426,29.622131,74.63043,4.027 288,213.9891,211.2465,38.736176,69.93843,4.019 288,341.37994,201.62286,38.105072,81.36777,3.999 288,249.5853,223.85938,21.54181,38.378296,3.971 288,67.21721,204.79868,41.720657,70.27243,3.964 289,526.80536,205.3272,24.32727,55.165146,82.009 289,627.55164,-15.673267,16.40216,44.28493,8.563 289,517.13684,202.66785,37.48346,82.02252,8.428 289,623.61017,-34.901047,25.763245,77.6989,7.159 289,626.88544,488.59155,19.912964,44.978577,6.69 289,-5.7824473,-15.536877,17.851171,41.544334,6.594 289,86.53998,196.43349,29.019394,65.99919,6.303 289,-11.431816,-30.82413,29.974718,71.07869,6.249 289,612.84766,454.73077,39.14319,107.7027,5.936 289,39.582485,205.33327,22.125881,41.63141,5.851 289,-12.404424,477.60556,30.738903,63.381134,5.819 289,-17.222546,-62.31607,56.346134,142.70364,5.66 289,35.87587,206.78288,29.292107,71.525406,5.636 289,-6.3255014,488.712,19.203934,42.816742,5.523 289,620.10626,-14.988221,15.578552,41.332565,5.459 289,603.26056,-55.68466,52.79254,133.3534,5.395 289,19.620977,206.81107,39.422646,86.61862,5.365 289,176.3468,220.21759,23.820053,37.631958,5.309 289,-73.25575,265.76483,201.82741,463.34705,5.253 289,467.92847,256.31888,34.697754,58.198456,5.223 289,515.9844,205.67142,22.102356,52.777893,4.94 289,583.09766,412.30133,71.58893,176.48431,4.938 289,78.890594,208.1312,28.506874,63.284576,4.907 289,533.3726,200.07747,24.288391,44.73915,4.906 289,-21.746449,402.4646,79.189415,175.25311,4.857 289,536.16724,310.37524,144.06213,341.82666,4.853 289,226.31836,221.43098,33.62198,61.804886,4.813 289,194.26598,222.57358,20.84645,32.52118,4.722 289,615.7264,-19.846375,25.309326,71.604774,4.664 289,546.4598,218.87018,42.247437,89.47131,4.634 289,259.09277,219.11417,33.377655,62.10312,4.609 289,582.7509,207.65617,30.36908,71.47298,4.576 289,628.0352,5.0849266,16.825073,42.154377,4.539 289,485.33887,204.67947,36.390503,78.5983,4.52 289,137.67671,200.84026,21.764893,35.963974,4.492 289,494.0896,229.29141,237.3551,513.20044,4.489 289,398.54077,193.5615,26.948975,62.89612,4.437 289,2.9368353,262.45737,19.383865,38.514343,4.418 289,-12.46143,210.27138,29.383232,72.52446,4.414 289,419.69098,188.35262,30.222809,70.8994,4.406 289,589.4727,281.77963,32.522156,58.751007,4.393 289,528.5349,192.40326,39.490173,72.92157,4.376 289,51.463894,209.08447,39.793667,78.32385,4.362 289,69.199615,213.5598,28.672516,62.03145,4.273 289,2.3842824,-13.22439,16.803484,38.05041,4.259 289,569.38214,289.17288,21.751953,33.63037,4.251 289,-4.486775,173.3877,15.8174,38.99347,4.239 289,209.52002,221.34776,21.036469,34.09964,4.183 289,490.02448,-180.06902,236.18268,419.6688,4.18 289,586.7373,-102.53127,74.38269,235.19958,4.174 289,618.9325,490.59027,19.794067,41.377686,4.144 289,203.10233,223.1033,32.74655,59.40045,4.119 289,163.65797,209.84007,40.332687,70.03999,4.112 289,494.343,202.2363,54.1976,118.40173,4.096 289,578.367,172.04593,45.8692,123.065155,4.073 289,-14.57136,156.92389,48.209312,139.42691,4.065 289,561.0923,288.56497,21.959778,33.59491,4.052 289,-5.0350943,152.9488,16.165918,42.78839,4.036 289,525.1814,-35.052597,29.785583,76.323166,4.019 289,612.14844,-12.5246525,14.922241,38.736862,3.996 289,130.39832,194.00743,33.206894,58.13669,3.984 289,517.1461,106.659744,32.845764,70.5641,3.956 289,-6.373446,216.22275,19.106594,42.080994,3.925 289,28.658897,184.60193,52.942696,110.73132,3.922 289,180.64514,208.52496,39.4281,70.57214,3.912 289,333.70856,220.39972,30.231873,60.336426,3.911 289,202.17268,223.68832,20.787003,31.174652,3.891 289,504.84543,-20.389458,35.785736,69.82398,3.867 290,590.99054,203.87737,29.454285,72.70601,91.988 290,551.6314,197.16042,35.059387,94.95143,8.86 290,-5.6244755,-15.540155,17.948044,41.854355,7.785 290,10.750845,132.70676,37.459213,75.000916,7.738 290,100.09301,229.03448,33.467613,55.117493,7.043 290,-10.793114,-31.257505,30.066412,72.925964,6.915 290,575.74426,199.28127,29.95581,81.1815,6.825 290,572.2089,204.73755,55.043945,128.54572,6.801 290,437.00497,193.61945,26.66632,70.06177,6.654 290,622.9052,-33.1876,26.895874,74.52235,6.592 290,622.0133,477.98575,28.821045,66.00125,6.332 290,121.02835,210.97389,20.287552,32.260437,6.199 290,612.73975,453.9317,39.608154,108.64099,6.082 290,5.354035,197.67194,33.519917,77.196686,6.038 290,11.259459,168.9513,55.51967,111.17105,5.859 290,565.153,190.80186,29.006287,85.701004,5.769 290,-17.149643,-62.66434,56.3868,142.01949,5.64 290,389.61057,222.3563,28.153381,62.495636,5.453 290,29.55133,140.84904,26.541561,52.433212,5.392 290,-5.587529,121.71192,17.651321,40.613182,5.343 290,-12.54838,477.4392,30.817781,63.70117,5.288 290,240.74426,207.02449,23.047974,38.760544,5.258 290,-72.94112,265.48828,201.45854,462.51514,5.254 290,-6.5312757,489.06445,19.466824,42.569946,5.113 290,162.5564,224.69017,32.355698,55.983994,5.087 290,582.692,412.6933,72.076294,175.758,5.077 290,535.9689,309.84106,144.23315,342.3725,5.029 290,-4.5200987,189.16011,16.929361,39.74675,4.947 290,3.930086,124.39852,20.430065,40.337074,4.936 290,244.61066,208.92809,30.678162,54.816788,4.93 290,622.73016,199.42497,27.470581,73.36601,4.929 290,-21.414717,402.92096,78.70335,174.56158,4.863 290,82.30569,227.4011,35.362312,52.98105,4.851 290,602.74316,-56.3426,53.386353,134.10411,4.837 290,627.11536,-19.593998,17.766174,47.441277,4.819 290,5.7193184,151.2498,32.57812,73.13478,4.818 290,486.9302,187.86327,37.038177,92.98439,4.768 290,494.38095,229.46344,237.41464,512.66046,4.687 290,-5.8576393,136.08112,18.52692,44.375473,4.675 290,2.4448752,-12.85206,17.510733,39.601543,4.652 290,-5.543088,1.2373676,19.012674,44.97953,4.634 290,610.14343,205.54535,35.494507,95.42493,4.634 290,-6.202918,161.90741,18.44994,43.38205,4.547 290,112.04779,240.10855,24.433868,39.56787,4.519 290,587.8669,177.9575,47.12146,106.53902,4.514 290,396.94626,229.34496,31.525543,65.2867,4.5 290,108.18839,209.57619,18.109688,29.96466,4.475 290,452.32324,193.2356,37.44876,82.82437,4.445 290,115.17961,217.64897,32.63095,57.95491,4.437 291,474.8272,204.1268,17.33368,44.20279,8.788 291,5.583354,201.37657,31.58751,70.95262,6.627 291,621.8597,475.60806,29.110718,68.46109,6.472 291,611.081,-46.07174,40.940247,99.06367,6.358 291,-16.996918,-63.151237,55.810394,145.22208,6.163 291,627.14746,-18.05814,17.325806,46.271206,6.133 291,0.857743,202.72128,21.634933,49.639557,6.119 291,-5.1195216,-16.700592,16.23295,43.08265,5.943 291,-6.4091682,489.40576,19.138794,41.68219,5.891 291,25.07104,220.03966,33.79287,74.23128,5.828 291,447.79047,198.79562,23.978027,63.246002,5.746 291,-6.071845,213.013,18.940384,46.443115,5.697 291,469.56345,206.07043,27.303864,67.37512,5.437 291,-12.150047,479.27338,30.18436,61.254272,5.426 291,-11.196365,-33.496933,29.118032,76.01764,5.335 291,-72.93914,265.06168,201.34229,463.4653,5.268 291,535.98627,309.9017,143.87897,342.53262,5.099 291,128.1891,189.06451,26.422897,58.248505,5.064 291,603.70746,429.07135,55.16754,144.13373,4.937 291,234.82712,207.16484,17.433945,31.708298,4.849 291,-21.320156,403.01382,78.7727,174.68112,4.813 291,185.53076,202.4756,20.267822,35.884766,4.788 291,50.8434,187.44385,31.475365,55.317856,4.759 291,494.021,229.01126,237.09747,512.87317,4.696 291,16.778217,187.22473,43.33048,77.815125,4.624 291,242.2795,211.86584,21.007004,38.000412,4.589 291,228.17702,206.89156,16.905807,32.15732,4.578 291,485.77338,197.79785,35.825317,80.64679,4.565 291,229.14711,212.36584,29.847824,50.80011,4.494 291,-10.972044,201.2016,29.377783,71.7663,4.48 291,490.3871,-181.80832,236.46008,424.1735,4.468 291,387.6129,201.67508,16.506592,36.422287,4.443 291,586.7862,-103.0915,73.93451,235.05313,4.41 291,575.5787,197.7971,46.903015,130.70595,4.385 291,40.45659,208.74594,36.239967,69.486145,4.38 291,211.7493,213.27635,32.354065,58.976456,4.379 291,576.7529,186.6397,19.39038,50.944153,4.364 291,519.71075,160.23495,26.981384,80.20584,4.331 291,154.44235,217.42503,20.74733,39.734818,4.303 291,619.0079,-18.431902,17.159668,44.48402,4.218 291,-0.47678947,205.36922,51.825066,138.42747,4.191 291,-14.711802,121.775444,49.97384,143.12158,4.166 291,-5.5844593,247.70639,18.806114,46.30304,4.16 291,592.71313,173.11389,25.687927,81.260895,4.158 291,34.70423,229.55524,35.244858,79.059326,4.13 291,429.7754,197.99033,29.483978,69.04434,4.116 291,513.47833,243.71217,37.19458,73.092026,4.105 291,-9.558199,246.1174,27.604696,76.852295,4.099 291,345.84048,-12.110311,17.744751,34.40277,4.09 291,599.02734,186.93909,33.885376,97.6615,4.069 291,454.27185,204.98651,36.042206,80.94968,4.032 291,528.64124,237.17004,35.536865,72.24658,4.012 291,618.5344,488.16467,21.207275,44.213074,3.993 291,573.5965,196.98557,16.493652,48.45157,3.945 291,401.91046,234.32693,34.397766,71.07443,3.934 291,-4.5567613,187.38484,17.801554,43.860428,3.893 291,1.2644947,87.429306,21.247284,57.498627,3.863 291,439.17114,-34.508884,27.962463,69.24865,3.862 291,-5.37039,151.91246,17.656494,43.756973,3.855 291,566.58746,205.70561,37.261047,91.71776,3.854 291,13.461467,188.3999,29.393513,60.215836,3.846 291,570.6555,333.52063,18.39856,27.091217,3.845 291,225.07631,226.38974,23.203949,38.288605,3.832 291,-8.849312,82.98465,38.298065,108.897675,3.823 292,418.71045,194.08249,19.143677,38.88794,12.35 292,210.29417,201.56395,20.434372,34.222443,7.392 292,460.43427,199.06647,30.137268,76.46335,6.506 292,622.0354,475.3122,28.518494,69.01715,6.429 292,23.042961,179.42722,27.45311,58.278275,6.344 292,234.0046,201.17807,18.260544,32.775665,6.337 292,218.22281,203.7518,18.030334,30.469055,6.278 292,-6.0161095,490.32608,18.505924,40.407257,6.229 292,425.85373,201.36472,19.256256,36.9859,6.193 292,622.43536,-33.45349,27.327515,73.746284,6.167 292,-5.8590593,-18.188026,18.054272,44.57183,5.931 292,260.69376,207.40141,29.650421,54.261765,5.737 292,412.61478,191.52716,18.856415,36.923935,5.728 292,192.72873,198.0999,22.376328,32.470245,5.546 292,602.63745,-57.717117,53.549072,132.11656,5.528 292,-10.735338,-32.695595,29.649464,74.263145,5.39 292,13.638716,166.2273,53.042557,102.410614,5.317 292,7.789382,173.6445,26.259953,67.2785,5.165 292,-9.218132,463.83926,38.17883,92.74472,5.146 292,-16.65721,-63.949474,55.314476,142.76509,5.132 292,-73.524734,265.71515,201.15175,461.87762,5.13 292,227.56151,199.51627,17.89534,29.090637,5.106 292,2.668357,190.89769,41.147118,95.4471,5.077 292,493.0356,190.3203,32.225067,85.01155,5.064 292,393.08987,193.42366,19.046417,35.43901,5.025 292,536.2092,310.03778,143.86194,342.21954,4.915 292,213.03001,199.08238,30.01744,54.85556,4.912 292,594.02155,-45.369137,44.47754,93.67803,4.908 292,24.038189,198.4185,38.731808,61.87819,4.869 292,583.0895,410.56,71.48602,177.27081,4.824 292,627.03723,-18.888304,17.683533,47.07755,4.822 292,-22.296318,400.91772,79.873795,176.01013,4.768 292,424.34863,188.45186,20.177612,35.86656,4.736 292,406.02573,187.76639,37.45758,66.410706,4.726 292,490.2129,-182.6075,236.04858,423.26334,4.689 292,517.50116,6.691086,29.789795,71.61227,4.686 292,202.13744,202.5544,20.796844,32.91002,4.685 292,-11.656947,481.45663,29.007156,59.920563,4.669 292,-4.76705,198.58435,17.660147,44.391342,4.668 292,-8.749974,161.77876,27.153263,72.18196,4.645 292,45.158195,57.14496,33.299057,80.06781,4.611 292,-15.782454,156.34247,50.294548,130.08026,4.554 292,-4.418342,167.66731,17.39014,47.876846,4.528 292,586.353,-101.94338,74.832886,233.99854,4.525 292,419.9794,195.40141,38.86609,70.93892,4.462 292,494.3008,228.08841,236.4545,513.3729,4.461 292,-0.616591,188.68156,26.585379,67.132645,4.399 292,2.173748,-17.40916,17.946453,44.388664,4.378 292,519.4326,155.5929,28.51239,63.153152,4.34 292,530.3865,27.480312,31.736816,74.23309,4.34 292,524.674,-16.815699,29.484375,70.92992,4.332 292,548.6274,249.68965,30.062866,63.836105,4.313 292,300.40173,192.62065,31.825317,57.043655,4.295 292,42.22088,192.19234,36.13591,62.043304,4.207 292,589.7317,-23.55724,52.108643,127.410706,4.2 292,505.4799,186.74228,19.543915,52.479263,4.178 292,432.93604,187.72047,19.322632,35.67491,4.172 292,477.96634,204.29372,53.984344,105.35936,4.168 292,-15.857782,90.04918,51.319847,141.53867,4.137 292,402.53128,-17.354414,17.652771,42.38008,4.124 292,404.2792,203.70253,17.067871,31.729889,4.124 292,283.2882,202.53406,29.386719,58.93228,4.117 292,38.3197,202.26106,27.234867,42.122314,4.109 292,459.39883,212.75273,55.574066,116.83357,4.102 292,25.540895,170.38667,21.408625,40.306625,4.098 292,229.57823,199.1876,28.200516,50.678665,4.078 293,450.15222,211.19382,23.706573,43.918777,28.541 293,-3.9305682,188.34398,17.31993,42.256393,7.322 293,186.40195,211.23465,20.243591,33.683197,7.197 293,528.6706,207.58633,21.056396,49.9946,6.572 293,0.19065142,200.82079,20.655514,49.26767,6.565 293,612.7467,454.2176,39.351074,107.68561,6.065 293,456.7366,224.04022,19.717407,34.648376,6.034 293,626.6589,487.20438,20.427795,45.98636,5.871 293,622.4353,-33.74729,26.862793,76.610306,5.849 293,-11.918044,-40.30329,40.781708,102.05866,5.718 293,627.0652,-18.141886,17.177673,47.89746,5.603 293,596.6013,19.366924,35.02765,73.26509,5.549 293,-12.289099,478.6663,30.25549,62.75418,5.507 293,-6.446968,489.4119,19.327707,42.336517,5.455 293,-5.6565757,-16.050398,17.838478,44.916283,5.151 293,170.84663,221.53973,34.880463,62.381195,5.125 293,-72.82609,265.55673,200.09625,461.74625,5.084 293,-21.4646,403.0698,78.59013,174.89194,5.048 293,475.25955,214.14426,19.455963,35.063232,5.037 293,493.39752,217.51843,15.259399,29.76007,5.028 293,444.6094,219.54666,20.810852,34.742767,5.014 293,465.23267,210.48149,20.019714,36.378754,4.947 293,484.83292,216.5647,16.598297,31.167526,4.904 293,583.2272,410.6677,71.41449,178.28659,4.85 293,536.3372,309.3105,143.92279,342.88995,4.844 293,91.43895,209.24252,32.506706,55.90564,4.801 293,187.96944,223.50813,33.040726,63.081406,4.782 293,619.0418,-6.451005,18.896484,44.759388,4.776 293,-3.6188736,175.44405,16.721272,38.291824,4.748 293,-5.600353,210.98053,18.628319,45.23633,4.747 293,573.38794,2.5894442,15.339539,27.726582,4.724 293,603.1846,-56.542633,53.175842,141.18437,4.689 293,499.2773,212.44379,16.052948,31.765854,4.661 293,454.32114,-34.19802,28.08667,74.230095,4.589 293,494.63577,227.51138,236.25766,515.75757,4.585 293,-15.221387,158.23085,48.595226,128.52733,4.519 293,612.1609,19.925201,27.975159,82.39629,4.517 293,104.41937,221.84479,22.547028,36.917236,4.488 293,346.83383,220.164,17.10025,31.763672,4.481 293,268.61395,219.12445,30.41095,71.90881,4.47 293,-8.438491,175.76363,27.254211,64.873276,4.422 293,180.8023,208.81648,30.840149,55.8239,4.422 293,439.12268,-35.03691,27.033478,72.66114,4.384 293,464.9574,228.39551,20.065002,32.96338,4.353 293,491.66873,-183.26161,233.98361,419.84232,4.328 293,557.1427,2.0026379,15.514526,29.176186,4.303 293,62.25958,197.6317,27.229282,56.03186,4.294 293,-5.845323,230.86739,17.667723,42.35051,4.285 293,411.80402,219.40024,16.041443,28.92659,4.224 293,451.26935,214.91333,39.804565,99.247986,4.212 293,1.9445825,185.56125,19.427763,38.768982,4.202 293,-4.2476935,156.6087,16.6826,39.872284,4.183 293,3.5761583,201.81018,36.98764,86.77487,4.165 293,565.4208,2.72536,15.294434,28.695164,4.163 293,614.8905,184.37108,24.84491,88.30589,4.075 293,130.84894,223.8999,32.618607,56.16086,4.06 293,613.6652,-20.367346,28.216003,70.47827,3.991 293,495.13623,-35.7546,27.870056,74.54402,3.983 293,419.81323,220.51633,15.21225,28.550415,3.969 293,580.64954,0.6043129,15.824951,29.805416,3.954 293,437.9159,210.68211,37.28488,78.992355,3.919 293,586.6717,-107.169106,75.16559,243.50577,3.919 293,154.33272,224.29745,35.60408,57.579315,3.916 293,618.8394,489.74734,20.402649,41.99362,3.878 293,105.907684,202.5905,20.36895,35.565445,3.865 293,-10.807909,198.31964,28.024776,68.897766,3.854 293,576.9651,196.24817,48.629578,141.70795,3.818 293,107.37752,222.84668,31.84671,55.01526,3.815 293,-8.223772,37.791363,38.142868,106.07678,3.8 293,427.99292,223.84448,15.741699,28.403214,3.794 293,490.40707,242.4518,20.243805,30.82463,3.789 293,584.3468,179.4525,21.742188,48.102005,3.766 294,554.6323,189.9465,28.211731,63.649063,44.718 294,472.3901,191.81071,22.046387,49.89415,39.618 294,489.55948,191.60912,23.702972,54.58783,20.715 294,290.04065,204.75574,19.896545,40.0477,9.716 294,478.2823,191.12697,27.544006,59.50052,8.945 294,116.715256,195.63148,30.274017,62.806473,7.443 294,-6.0445733,-16.68293,17.43893,43.562687,6.296 294,-11.198316,-32.674625,29.52644,75.150055,6.279 294,627.54626,-15.190791,16.349487,43.205673,6.103 294,-8.734245,465.53287,37.64318,90.42148,5.905 294,626.5198,487.32596,20.623291,47.30777,5.862 294,604.3026,210.8993,14.782776,35.316025,5.727 294,-6.095266,489.53116,18.846195,41.899445,5.561 294,109.138145,217.43079,32.301857,53.64023,5.481 294,-17.010693,-61.92286,55.97403,143.13092,5.459 294,623.339,-33.36171,25.805786,73.883255,5.309 294,612.91064,456.04538,39.014343,105.9877,5.239 294,-73.03929,266.06738,201.06667,461.35223,5.212 294,-21.227165,404.09973,78.53583,174.38507,5.206 294,583.55646,412.14923,71.152466,176.44354,5.121 294,28.572372,171.30914,53.544403,111.99512,5.033 294,220.1605,201.79956,16.786728,30.7547,4.901 294,597.9437,205.18425,14.201416,34.706146,4.876 294,-6.455395,215.674,19.266823,43.5486,4.843 294,535.8973,310.40698,144.62164,342.55853,4.781 294,226.92276,205.83961,18.32901,30.75914,4.767 294,589.5356,5.0775566,14.590454,26.022537,4.746 294,494.2683,228.51465,236.62451,514.59436,4.702 294,130.24097,193.23648,31.62976,59.26013,4.686 294,126.89397,193.01164,22.037094,43.837357,4.685 294,567.89374,192.17374,19.500122,42.711395,4.658 294,296.2351,210.1245,20.875977,36.390137,4.654 294,235.04263,200.119,19.290543,29.378387,4.652 294,602.9998,-55.1513,52.793518,137.04832,4.597 294,225.02362,206.29166,35.009583,63.827606,4.488 294,511.2289,193.6738,25.972504,55.587967,4.456 294,435.1911,204.2515,17.060516,38.241577,4.451 294,266.1289,201.8442,21.526398,39.583267,4.439 294,305.92395,202.08432,20.111633,36.420517,4.432 294,59.62942,171.61249,56.15717,108.08743,4.424 294,579.3489,193.91463,16.286194,37.653595,4.407 294,179.82541,198.86688,38.012695,71.24463,4.372 294,581.0176,202.21075,37.43341,80.81125,4.331 294,597.2453,4.028385,14.427856,26.40255,4.325 294,489.9907,-182.34225,236.1354,418.77402,4.303 294,1.1249661,185.93271,48.871,117.742065,4.268 294,589.66956,201.9125,14.973572,35.945465,4.261 294,174.85947,197.49625,28.864807,56.777878,4.252 294,114.29435,189.82373,22.918633,49.78192,4.237 294,481.67938,209.04079,43.19922,76.6494,4.208 294,418.9737,-16.304539,16.98819,39.63555,4.175 294,460.191,204.15314,17.897827,35.808548,4.172 294,547.7165,210.87668,34.942932,66.05084,4.135 294,241.75473,205.02045,35.705536,63.176147,4.13 294,-14.758625,158.49051,49.27933,134.31912,4.128 294,574.0429,7.404957,13.843811,24.29176,4.12 295,497.2848,206.60661,22.451538,50.571762,61.221 295,476.51825,198.09317,14.4534,29.40355,9.463 295,340.69147,222.87825,32.161438,75.65175,7.384 295,612.09625,127.91334,26.717407,97.41421,6.597 295,626.6299,488.6863,20.46167,45.21115,6.539 295,576.77515,59.45988,34.19226,89.736664,6.319 295,-5.8704376,489.01755,18.470581,41.56314,6.239 295,-11.391841,477.87466,29.238342,63.438995,6.204 295,-17.445599,-65.438446,56.060253,151.7451,6.051 295,34.25328,245.2187,21.455727,42.2249,5.792 295,612.68384,456.71237,39.427246,105.2977,5.659 295,626.93243,-18.528765,17.635681,47.52576,5.657 295,571.62103,41.053955,53.328552,187.77399,5.526 295,351.2984,220.0589,34.532745,66.79813,5.443 295,623.2644,-33.936543,26.133484,76.516785,5.427 295,603.6359,-54.59709,52.439514,138.37195,5.359 295,-5.9048676,-17.982876,17.475266,43.22686,5.182 295,21.40187,240.5946,29.83886,59.44934,5.174 295,583.3767,412.8208,71.2193,175.85028,5.168 295,336.71973,226.01224,24.513672,51.837585,5.153 295,-21.394722,404.62103,78.86794,174.08319,5.14 295,597.89294,186.77939,29.355347,68.64917,5.061 295,-11.491747,-32.863266,29.998083,74.384865,5.048 295,485.29578,192.05867,13.552002,25.371323,5.035 295,94.07663,190.9613,27.49456,62.090332,5.033 295,-72.54731,265.4409,201.05243,462.67386,4.985 295,368.0521,227.94987,37.536346,64.931076,4.734 295,59.485153,219.56088,20.475853,38.572815,4.675 295,8.257266,234.52534,29.653706,63.564926,4.586 295,615.6501,166.48161,25.111877,81.51045,4.571 295,588.2855,136.64502,31.912048,84.61726,4.569 295,65.69386,234.48125,21.378296,42.604507,4.546 295,323.01392,225.20255,33.468475,66.624756,4.512 295,582.21655,55.88996,24.417236,58.349762,4.487 295,86.76487,220.43689,32.306854,59.71283,4.478 295,500.1447,196.95827,16.52008,32.19995,4.455 295,596.91583,116.48882,32.214417,79.82255,4.387 295,33.421394,84.27983,36.175133,69.48509,4.344 295,618.4966,490.76053,20.238525,42.012726,4.339 295,225.72234,202.3971,41.36003,72.812195,4.335 295,482.0996,231.45392,44.298218,98.79541,4.33 295,536.47577,311.00848,141.99384,340.7166,4.319 295,412.13437,208.59547,15.906525,33.141174,4.273 295,470.07758,198.92467,14.6944275,29.416412,4.207 295,-12.045846,96.57541,30.701672,71.80621,4.196 295,383.925,229.72598,24.063019,40.44171,4.157 295,405.36667,200.99986,15.626801,35.311066,4.146 295,617.17053,116.62737,23.260681,71.6858,4.1 295,5.158608,468.91592,38.17373,93.85959,4.073 295,492.23148,215.01659,32.422577,67.66667,4.032 295,537.70703,266.08624,21.927307,37.389282,4.026 295,493.00482,227.72806,238.72382,515.1349,4.025 295,260.57123,484.96036,31.117035,57.81253,4.022 295,369.94022,209.28465,21.280426,37.508286,4.02 295,72.228615,229.40625,21.108398,39.924927,3.976 295,-4.30904,380.30588,14.850307,36.988617,3.963 295,426.25836,222.58261,35.527954,61.297974,3.951 295,60.686893,201.43326,29.450245,60.313354,3.947 295,311.06113,221.56233,34.885193,63.06572,3.945 295,355.85144,482.98535,32.42755,59.48816,3.945 295,102.15344,197.35342,29.29718,62.376495,3.943 295,-4.118888,396.71,14.969141,35.957123,3.927 295,419.20178,210.59882,17.830872,33.253677,3.925 295,595.6321,-48.013355,42.343323,105.79741,3.92 295,291.49823,484.2959,33.15094,58.794067,3.916 295,-15.059952,263.09543,50.18451,157.20401,3.904 295,75.49635,230.30489,30.300041,55.806503,3.897 295,54.69765,218.6724,30.153484,59.958466,3.893 295,371.55197,484.71313,32.03067,56.86035,3.863 295,4.3113556,253.00375,38.858257,102.98758,3.859 295,193.42604,209.78107,43.68666,85.13959,3.852 295,207.47101,195.5653,55.960114,109.09235,3.828 296,543.9592,204.9221,25.387146,55.242294,48.844 296,-17.829376,-64.763626,56.63208,149.56638,7.139 296,244.14961,196.56454,31.886337,78.448456,7.138 296,627.03064,-19.497242,17.662354,50.470417,6.873 296,-12.778004,478.40787,31.817331,62.181183,6.343 296,622.29266,-34.72892,27.146362,79.11482,6.25 296,-6.8491735,489.76764,19.609772,42.9682,6.237 296,-5.5477266,-17.618317,16.884895,43.57416,5.582 296,75.09739,138.83142,32.75654,77.20323,5.381 296,621.73193,476.64374,29.485474,67.87378,5.351 296,369.24484,227.04257,36.21042,59.019714,5.322 296,382.30463,242.17773,40.451233,62.891907,5.232 296,461.52893,212.87866,30.109192,67.83884,5.13 296,257.72104,199.09601,29.643707,68.24713,5.096 296,593.1413,30.02449,42.05316,187.73349,5.03 296,-72.76799,265.21918,200.97388,462.8886,4.997 296,615.9475,123.02916,23.669434,92.316315,4.994 296,582.58307,414.31616,71.90802,173.41626,4.971 296,451.8015,233.32442,31.146362,64.70622,4.938 296,42.44762,240.32515,32.483364,58.604477,4.926 296,249.73709,236.73698,34.055603,64.545364,4.91 296,603.83496,40.24698,31.638062,99.686935,4.886 296,602.7168,-57.119617,53.348938,141.4116,4.834 296,101.941315,154.58707,27.295273,71.27997,4.82 296,-1.808542,142.2135,26.82023,77.66777,4.813 296,21.652046,196.8123,30.110382,61.429245,4.804 296,85.76169,152.6646,29.702637,74.28517,4.785 296,-22.192673,402.02753,79.839905,174.0882,4.744 296,-11.44618,-33.053978,29.519203,74.16344,4.672 296,234.8567,236.32703,33.779343,70.31433,4.65 296,353.22604,228.7966,37.47522,72.54651,4.628 296,50.614773,203.71039,32.50111,68.854126,4.601 296,361.52606,241.96394,38.659515,77.13289,4.591 296,33.34534,212.93483,22.580868,41.733917,4.51 296,536.3811,311.03308,142.48297,340.11578,4.502 296,346.54785,193.59726,18.484802,38.196426,4.409 296,441.8372,202.42406,19.08371,38.914597,4.232 296,3.6988604,243.69695,28.659218,63.798355,4.185 296,427.15976,195.02722,18.337372,38.728302,4.134 296,493.55484,229.02774,238.32016,513.85767,4.118 296,618.36316,-20.668896,17.93335,51.81731,4.089 296,203.66281,204.80327,33.39514,63.633835,4.084 296,409.94873,248.34045,34.829254,61.654053,4.058 296,220.04137,76.2043,30.719772,82.33037,4.003 296,329.79126,230.00412,35.037354,70.464966,3.936 296,3.5811186,114.44719,30.966667,82.258606,3.9 296,435.77817,203.70428,39.63336,77.55731,3.856 296,-5.348282,231.10135,17.628212,42.129974,3.824 296,-10.84778,78.339035,28.76635,76.42598,3.747 296,60.377266,197.53891,33.454475,66.26959,3.737 296,-9.050708,164.90987,28.42197,76.1716,3.705 296,617.6801,191.02573,23.06366,48.69626,3.691 296,97.96207,165.08723,21.563911,50.52321,3.686 296,435.93475,243.53592,31.107056,62.76956,3.683 296,76.17446,172.69952,30.742393,67.00963,3.679 296,2.8917599,-15.57275,16.107271,40.427456,3.647 296,43.111412,110.890755,39.479546,74.06747,3.634 296,-11.1551895,235.96382,29.68376,69.7527,3.629 296,76.17125,200.11862,32.673317,62.223022,3.622 296,617.31494,10.800364,21.698608,60.18077,3.594 297,587.7472,251.90149,24.957703,60.50067,77.78 297,391.25156,248.62823,35.68329,73.81036,8.646 297,248.45412,238.08337,30.863205,82.58478,7.988 297,432.4945,229.86128,18.822083,41.35579,7.827 297,-6.2451625,488.77768,18.81175,43.637115,7.757 297,-11.821398,476.06952,30.091219,65.12811,7.665 297,627.1675,489.20267,19.755127,43.9075,6.64 297,490.82565,268.08493,32.59787,76.86273,6.285 297,-17.95113,-66.015564,56.596317,150.77058,6.022 297,226.34753,242.45332,36.934143,85.25581,5.818 297,627.1638,-18.155174,17.416199,46.121387,5.732 297,603.4482,-55.130707,52.65851,139.97762,5.52 297,179.46693,256.61868,33.237305,64.037384,5.432 297,-11.440797,-32.669754,29.714867,73.12906,5.377 297,356.97906,258.60916,33.294098,64.15384,5.356 297,612.7766,455.833,39.543823,105.50818,5.342 297,-4.6376314,213.0953,18.037422,46.313263,5.336 297,-2.7897084,185.59756,28.489506,82.73996,5.311 297,583.1124,413.12057,71.93756,175.76077,5.241 297,-5.982363,-18.227686,17.627079,42.911804,5.206 297,-22.53206,401.09232,79.79042,176.26376,5.105 297,164.45113,265.02448,33.330093,64.35361,5.104 297,623.16547,-33.96604,26.190735,75.43772,5.013 297,107.02938,269.9039,17.531181,33.049774,5.006 297,379.75104,252.08197,56.841003,97.276,4.811 297,466.9479,237.51915,18.415833,37.12932,4.793 297,536.78094,309.98334,142.43225,338.46942,4.77 297,-72.07001,267.0197,200.02246,460.0556,4.766 297,2.0501328,488.46765,19.281048,43.36383,4.707 297,382.1076,245.03157,32.88562,66.57475,4.675 297,451.25522,242.5596,17.042694,34.5672,4.674 297,384.97623,285.58624,36.83911,63.244385,4.64 297,194.691,244.94167,35.14879,69.02092,4.626 297,619.40326,491.34027,19.05951,40.893494,4.48 297,123.20022,270.06915,17.605309,29.791565,4.479 297,323.21228,484.49637,33.14447,57.68582,4.479 297,300.49292,483.7279,31.357025,58.40393,4.417 297,444.0905,243.5441,16.128876,33.207123,4.414 297,209.01859,254.17659,44.668976,82.64195,4.408 297,50.21236,159.37248,35.267567,78.610245,4.394 297,475.89795,227.66805,16.725525,33.83394,4.365 297,474.8695,492.5297,19.417969,39.071808,4.304 297,371.84262,480.55478,31.367065,61.071686,4.278 297,-4.2042675,444.7544,15.596609,35.76071,4.275 297,503.36636,275.70782,23.55655,57.036835,4.261 297,36.16732,242.4834,39.19448,86.84448,4.256 297,146.702,266.50223,19.392502,39.7417,4.238 297,31.454268,153.03064,38.60257,84.09488,4.234 297,356.67264,481.54962,31.318054,60.077698,4.217 297,480.10156,280.11835,25.412384,46.000183,4.201 297,-5.5859685,105.800415,18.209913,42.642273,4.19 297,493.27972,233.06003,238.30566,507.9274,4.174 297,-2.8207684,151.99034,28.173409,72.24086,4.152 297,129.78029,270.73495,17.49849,29.04477,4.142 297,468.10803,240.98837,39.5813,82.87787,4.126 297,468.1807,225.7136,16.314972,34.917816,4.124 297,613.8652,133.61014,24.960083,96.01578,4.087 297,-6.054642,189.79758,20.304474,54.147675,4.073 297,459.4029,245.95972,16.77658,32.445007,4.072 297,-10.24658,94.300865,28.642975,67.350044,4.063 297,114.61743,269.0795,17.542511,30.913452,4.01 297,68.37699,176.25742,30.058998,73.97606,3.996 297,285.0003,484.86835,31.28064,58.15686,3.981 297,323.34955,240.9572,20.825562,44.39656,3.981 298,228.46175,192.123,29.39708,83.46788,19.722 298,36.924583,194.53003,25.74955,51.393982,19.159 298,57.420204,193.89249,21.500267,50.495407,10.806 298,432.18976,180.96115,19.319794,43.02945,7.187 298,513.39453,226.72403,35.203796,77.503235,6.987 298,626.73346,488.82922,20.221191,44.561646,6.884 298,46.116043,190.4732,27.865692,66.885925,6.676 298,501.8961,190.16345,16.432587,40.504242,6.205 298,-16.91931,-65.937485,55.850876,149.8957,6.196 298,626.75433,211.49672,19.799927,50.762527,6.1 298,-9.51192,462.22708,38.053246,95.918304,6.082 298,202.8439,215.38095,34.190002,83.45154,6.061 298,483.9178,190.61853,15.222046,31.32254,5.855 298,-6.1799183,488.85767,18.514359,43.44397,5.849 298,-5.843791,-17.700584,17.653992,42.50639,5.682 298,626.55115,-21.591375,18.292969,53.889236,5.657 298,621.55505,-33.692047,27.540466,80.413185,5.568 298,24.76099,112.23698,34.333897,80.467705,5.501 298,502.8886,194.43442,25.915344,62.87027,5.466 298,612.801,456.9196,38.98578,104.62784,5.449 298,583.5781,413.85608,71.03009,174.5055,5.373 298,-11.633938,-33.281765,29.957886,73.45981,5.339 298,-9.806572,73.97012,30.425892,72.194275,5.291 298,226.20872,243.52475,32.73787,69.22778,5.183 298,513.8533,211.04738,20.342346,46.648666,5.144 298,482.96118,211.56929,42.706055,89.421524,5.111 298,65.606804,229.9962,18.248802,36.828262,5.048 298,-72.19937,266.27402,200.0261,462.4025,4.996 298,-21.874195,402.85455,78.79204,175.4303,4.995 298,451.10382,193.39343,17.267517,33.777344,4.949 298,458.41052,196.85443,17.621643,31.5047,4.883 298,475.48572,241.22551,34.392517,65.61864,4.858 298,346.5509,190.40535,18.0083,38.195267,4.853 298,498.8642,206.35217,42.665466,83.66904,4.832 298,-10.648909,103.72778,32.42301,73.33148,4.802 298,602.3287,-56.045513,52.69568,144.45403,4.797 298,204.33464,196.53903,50.42244,118.71582,4.736 298,618.6464,489.19354,19.828186,42.860596,4.647 298,363.5646,240.80652,34.05435,66.07483,4.636 298,362.68,261.82126,33.156067,74.55002,4.606 298,492.56232,191.52496,18.591492,36.807327,4.606 298,477.74542,188.46529,14.559326,30.640594,4.604 298,449.36676,220.46524,44.89093,95.769104,4.475 298,516.5254,203.26132,29.479004,69.28134,4.457 298,85.58336,227.76984,16.950928,31.86264,4.446 298,64.114655,209.7381,19.13115,40.45279,4.351 298,24.249825,190.36302,30.417706,58.246216,4.339 298,458.3167,201.64291,58.71704,130.73663,4.327 298,11.255339,105.66777,36.250366,86.93552,4.245 298,162.02429,235.96976,44.91266,89.851776,4.241 298,500.04797,236.66557,35.464355,72.0854,4.211 298,536.56885,311.14053,142.4118,340.90134,4.2 298,621.3992,209.52281,17.618164,43.280304,4.157 298,-8.793698,6.897434,38.893234,106.95714,4.155 298,511.87408,186.60944,50.58716,126.89325,4.14 298,501.55725,180.64525,14.574341,34.225296,4.114 299,508.77078,199.13342,17.75351,43.42534,52.584 299,21.417616,205.59276,27.150873,75.182144,15.694 299,2.6813245,215.24248,20.366362,62.449966,11.846 299,4.8737535,211.55812,29.63684,83.505295,10.071 299,39.758286,208.04955,24.309013,57.982986,8.752 299,-11.492233,-34.41105,29.206055,73.08639,7.522 299,431.64368,267.2227,50.43454,87.76108,7.1 299,-7.036855,-19.394379,19.557362,45.441982,7.055 299,-12.004723,479.00427,29.819271,62.502502,6.777 299,-9.103374,461.65128,38.116264,96.035736,6.532 299,-6.492949,490.06555,19.075583,42.04535,6.411 299,-2.1964502,105.60103,28.510593,81.96733,6.266 299,514.7015,194.74342,14.935547,37.085297,6.084 299,221.27151,-34.09477,28.598343,72.265884,5.992 299,-12.607716,202.65878,46.201668,144.26483,5.977 299,204.83131,-34.973938,29.647903,73.212036,5.759 299,237.53532,-34.470737,28.660965,73.783615,5.693 299,-0.2835548,132.50974,25.502575,92.60263,5.646 299,476.6937,186.63582,15.487457,34.38231,5.645 299,501.95923,195.72684,34.716003,71.953186,5.617 299,553.2981,265.52368,37.88379,71.04593,5.577 299,613.8523,453.95682,39.058167,108.445465,5.488 299,-16.43114,-65.32463,54.489124,148.24312,5.463 299,626.79456,-20.938839,18.031128,52.722862,5.427 299,495.8772,196.32706,28.48529,54.483322,5.396 299,602.10034,-56.9235,52.384583,148.13751,5.334 299,492.76035,199.74567,17.396332,36.954086,5.31 299,621.7847,-33.688965,27.353088,80.85679,5.27 299,626.511,487.50784,20.761108,46.415253,5.265 299,509.11182,194.60577,13.585022,28.7332,5.189 299,43.41526,170.76701,28.564781,77.73752,5.123 299,-7.5853834,220.8967,27.824802,80.20105,5.093 299,-18.420408,430.1018,55.211037,148.11707,4.997 299,-4.8599424,132.4541,19.362486,54.825745,4.976 299,484.68994,195.7553,14.789612,29.890732,4.933 299,583.48785,413.07007,71.42236,174.72144,4.842 299,-41.60368,364.9651,112.07875,278.33826,4.73 299,524.2825,188.13336,15.22522,32.651962,4.723 299,499.88098,252.48929,33.71753,51.56189,4.604 299,249.55045,-21.191463,19.404724,47.210583,4.514 299,-72.48977,270.37445,200.30989,457.328,4.496 299,190.07208,-37.985683,28.52829,76.230995,4.431 299,434.37088,192.44464,18.303497,48.508667,4.412 299,502.78323,199.00653,15.808746,36.761307,4.393 299,227.32018,-7.3632145,33.716537,70.81099,4.384 299,233.73285,-22.624126,19.555588,47.17891,4.336 299,538.49023,254.53966,34.465942,71.0804,4.296 299,365.33078,250.28104,30.044952,60.038208,4.273 299,11.173769,132.25449,31.653158,77.746826,4.249 299,34.826263,202.06131,21.296154,53.629654,4.242 299,128.7887,274.70343,44.373383,88.35895,4.224 299,40.318905,164.92982,23.413418,59.090805,4.187 299,1.7449152,491.4798,19.62007,39.300537,4.169 300,519.9736,199.97513,19.807373,45.4561,12.91 300,-10.939241,-34.493107,29.683722,75.60196,8.513 300,448.47827,193.25496,20.156311,46.794266,8.154 300,-6.8349447,-19.636854,19.64034,46.74389,7.635 300,493.56625,198.52457,13.645813,29.406097,7.214 300,626.6289,-21.857147,18.34961,53.418552,6.397 300,229.34975,-34.450584,28.769241,75.3572,6.247 300,-17.821617,-64.88833,56.619305,148.38235,6.068 300,346.80524,206.04897,18.369171,37.320175,5.946 300,614.69257,-24.819052,27.51947,80.129265,5.918 300,626.2761,486.82373,21.43512,47.85785,5.879 300,603.4736,-54.46182,52.32605,137.68037,5.78 300,188.58447,271.5505,32.16945,82.86612,5.769 300,514.9273,201.53448,28.564392,69.09607,5.74 300,-9.141342,465.05832,37.700104,91.65823,5.71 300,292.50348,212.86609,30.936127,73.23898,5.646 300,-6.596186,490.18866,19.341488,42.171875,5.59 300,612.1511,454.6309,40.43091,106.76877,5.561 300,-18.076231,435.6529,55.92343,139.96576,5.535 300,501.57855,198.49469,13.012268,29.091064,5.362 300,245.42473,-35.10531,28.952652,77.906136,5.35 300,168.66321,253.33607,28.860321,83.10426,5.289 300,485.67105,196.82387,13.88858,32.62564,5.273 300,189.05365,-34.216698,29.89418,73.09676,5.221 300,509.94504,199.45204,12.591217,29.546295,5.194 300,142.45209,244.46878,50.48912,115.28088,5.108 300,1.3140309,-20.776628,20.080263,48.291218,5.053 300,205.01764,-33.204422,29.737946,70.061,5.012 300,521.7356,259.548,34.82544,69.51431,4.989 300,582.71277,414.92545,72.77295,172.94113,4.985 300,218.20992,-19.728811,18.313965,43.948635,4.932 300,-72.57464,266.60956,200.89954,461.01178,4.932 300,201.88611,-20.997408,19.361893,44.35184,4.906 300,205.51059,223.87524,30.719864,79.97693,4.86 300,175.97723,243.10869,48.86055,131.727,4.78 300,185.26918,-22.713427,20.360107,47.0333,4.777 300,524.4996,195.28392,13.135681,26.718567,4.759 300,218.05771,233.91179,31.761017,67.67052,4.743 300,608.9526,151.62875,27.432983,78.8387,4.704 300,-40.784092,365.36588,112.36807,274.36472,4.697 300,233.90771,-21.729805,19.088333,47.816254,4.673 300,289.51733,203.9162,20.5708,48.6566,4.667 300,5.3643513,-31.94682,28.862642,73.805244,4.657 300,225.93309,-20.322348,18.559692,45.703648,4.581 300,141.28758,-35.02236,28.84291,74.94189,4.562 300,568.6825,270.36487,22.543457,40.59384,4.561 300,242.02536,-21.231745,18.95465,49.161507,4.559 300,317.63828,213.13046,28.998535,66.98172,4.558 300,517.7898,200.38536,13.044434,31.198868,4.534 300,-36.901443,-125.49888,115.644035,284.68292,4.52 300,597.09515,279.54437,32.382874,78.21576,4.478 300,-10.594245,336.42825,28.840988,71.273834,4.379 300,536.1814,311.6684,142.87769,339.48505,4.348 300,210.22162,-19.348038,18.527283,42.951466,4.334 300,554.20355,260.11426,34.273254,57.51172,4.312 300,492.68854,229.92407,239.30249,513.36993,4.268 300,193.66132,-21.53991,20.020035,45.60985,4.257 300,108.86616,248.97897,52.96569,114.32306,4.237 300,243.2746,0.11705017,32.584564,86.468735,4.212 300,2.96152,377.343,31.946245,88.94626,4.21 300,155.25058,-26.041681,32.667984,73.3801,4.203 300,-10.672846,132.06042,31.051592,68.16208,4.19 300,227.51874,5.252495,31.652283,87.14783,4.171 300,249.58682,-21.440933,19.557617,49.93997,4.158 300,260.5093,202.61736,30.17273,65.52791,4.134 300,21.829288,-33.607635,28.270256,72.43401,4.117 300,53.934444,-34.155563,28.58083,69.94471,4.101 300,538.4342,259.14453,35.10376,60.891663,4.077 300,553.9396,194.17593,20.757019,39.038727,4.058 300,27.324095,154.41408,32.966805,61.029114,3.992 300,439.33688,182.71558,26.518402,64.994064,3.932 300,-5.29183,137.87828,19.415766,44.23555,3.909 300,340.19977,202.25304,18.069336,36.850647,3.906 300,218.92973,-7.654579,34.118988,73.10647,3.873 300,172.83401,-34.957184,29.449127,72.289986,3.869 300,165.8735,276.71545,40.107925,107.95056,3.863 300,70.00106,-35.73362,29.443932,76.37225,3.842 300,83.36035,276.88376,41.841522,78.839264,3.831 300,597.74225,152.0339,27.220886,79.79976,3.812 300,-69.899055,-187.76993,210.29736,452.39282,3.795 300,126.40077,257.64343,52.189194,128.02863,3.787 301,527.9725,230.75127,19.458252,42.408676,43.193 301,140.85509,303.6868,28.389221,97.03555,9.292 301,-11.69853,477.00238,30.375317,63.640686,7.517 301,403.55005,239.73737,18.558838,35.33777,7.493 301,482.7515,220.43747,15.690704,40.999786,7.486 301,172.7079,306.4533,28.42537,75.99078,7.108 301,419.24222,238.34311,16.016144,33.99594,6.741 301,-10.456989,-31.570686,29.20495,70.97,6.707 301,164.71829,316.91592,29.492432,83.391846,6.491 301,613.3308,450.96896,39.37317,109.8226,6.437 301,145.67107,298.0949,47.16417,152.25168,6.352 301,237.54195,-34.296074,28.88887,77.27715,6.259 301,156.10963,252.99255,31.6622,90.21472,6.189 301,-6.2941003,-18.291595,18.840229,44.59243,6.122 301,13.654823,296.23636,53.832596,123.720825,5.874 301,626.5408,486.96738,21.212036,45.774628,5.792 301,622.6864,-33.48974,27.174683,69.09565,5.75 301,607.4316,182.55997,26.555176,76.24295,5.743 301,4.017643,277.72836,15.65041,40.604706,5.726 301,-3.8775897,273.92172,16.031387,44.039032,5.704 301,123.7332,-35.139763,31.70491,74.47235,5.692 301,181.29163,-33.853188,29.152542,73.78189,5.678 301,115.038025,301.12332,46.557587,145.98822,5.651 301,603.5842,-54.348427,52.774048,136.30983,5.618 301,-17.416397,-63.259712,56.093517,148.74068,5.604 301,352.80188,237.95874,20.610321,37.232117,5.559 301,159.90729,285.96613,48.800674,140.20526,5.506 301,-38.873123,367.43094,108.48146,271.86496,5.439 301,146.24217,271.18295,40.56012,105.204834,5.402 301,535.94556,231.16817,16.939514,37.90193,5.348 301,576.90015,219.74086,21.819702,57.080246,5.137 301,407.0608,309.98535,29.136139,71.19745,5.091 301,-72.49594,266.05496,200.66434,458.51694,5.069 301,295.92303,235.21938,19.753448,38.590836,4.997 301,-18.735882,431.97678,56.34598,145.80746,4.941 301,-3.8237622,252.21541,16.105915,43.029007,4.922 301,219.9241,-21.213713,31.888412,69.3374,4.901 301,477.95483,227.24948,14.56839,36.633453,4.894 301,518.74194,233.32812,16.306458,35.65915,4.866 301,189.35387,303.6134,31.718842,83.66821,4.863 301,130.10222,276.92624,45.602005,136.45285,4.815 301,127.27874,305.78873,31.504738,88.892914,4.803 301,195.6968,-22.532385,31.459732,72.79682,4.776 301,193.32602,275.13403,32.59192,86.53018,4.751 301,136.11346,338.1923,27.229553,85.426025,4.75 301,-5.2069044,294.16107,18.100386,47.923218,4.74 301,411.37164,235.70624,17.459381,34.54065,4.724 301,233.76276,-22.507448,19.793686,49.15956,4.706 301,583.79785,407.60547,71.07367,179.41003,4.697 301,193.70685,-22.201271,19.23146,49.001877,4.694 301,1.848427,487.34842,20.25879,46.733368,4.689 301,-10.575142,288.53888,27.267727,72.61786,4.651 301,-4.346053,236.47057,16.537262,41.21721,4.602 301,165.56488,282.55664,29.74884,80.38806,4.601 301,44.057278,292.3515,54.214245,122.00751,4.582 301,162.11456,316.91446,20.989288,55.822327,4.524 301,536.2812,310.1332,142.75659,340.21054,4.494 301,152.64362,311.6879,21.641785,63.357697,4.493 301,508.5701,226.27129,14.975555,34.36531,4.478 301,-4.880338,391.74982,16.866243,43.57617,4.475 301,-36.346397,-126.67018,115.900345,285.65076,4.44 301,165.07912,-33.94017,29.630539,72.64641,4.43 301,170.12657,-22.904413,19.499985,47.394875,4.411 301,136.7019,-23.821562,21.188278,49.73206,4.388 301,617.9322,488.34317,21.460999,43.23465,4.387 301,-4.99793,361.07773,17.46691,44.43463,4.375 302,529.743,185.57324,19.743347,45.112335,79.711 302,419.0755,182.54126,17.790833,42.417603,13.534 302,343.89194,183.58856,20.40924,41.852203,9.941 302,-12.484235,476.87128,31.168892,63.301086,8.911 302,-6.351802,487.85858,19.373062,43.925903,7.835 302,421.235,271.02756,29.330475,73.00787,7.614 302,626.9734,-18.787994,17.790955,48.118977,7.089 302,613.13367,454.83658,39.85193,106.54013,6.891 302,12.864842,236.31421,49.38857,165.68433,6.859 302,622.9522,-33.790565,26.854187,76.69829,6.639 302,626.1241,486.62512,21.492554,47.690308,6.571 302,-17.43172,-64.91938,55.948208,145.2279,6.544 302,228.3064,485.27628,30.96289,57.905,6.126 302,315.03577,485.1438,33.246246,58.548706,6.076 302,252.16003,487.6836,31.926208,56.429077,6.037 302,617.67847,487.6663,22.1734,46.26944,6.002 302,282.95206,482.63553,34.95685,59.558197,5.978 302,603.4136,-53.677048,52.549316,135.4839,5.9 302,363.46603,484.3777,31.951477,59.67798,5.733 302,-10.991007,-33.84993,29.323605,73.63164,5.695 302,203.32602,484.06033,32.437622,58.983734,5.641 302,-72.49547,266.93573,200.63385,460.58014,5.524 302,298.88916,483.15564,33.7771,58.56128,5.504 302,1.7751598,487.76892,20.185482,43.41327,5.487 302,616.0529,132.655,23.823547,81.88133,5.469 302,53.167805,247.16069,30.886974,77.38759,5.465 302,508.54843,180.03943,14.950287,32.986755,5.461 302,505.58228,201.61572,17.916138,29.639603,5.397 302,620.4193,123.184944,18.325134,59.570366,5.314 302,397.2107,490.5548,30.100952,52.759888,5.28 302,266.91904,485.05936,33.448242,58.20169,5.247 302,-6.1042633,-19.995966,18.387556,45.879837,5.21 302,379.6593,488.06473,32.352356,55.95224,5.125 302,410.74194,493.02225,19.837097,38.631805,5.055 302,48.795853,227.27325,30.59536,73.61377,5.044 302,582.7511,413.03143,72.12268,174.73389,4.928 302,-22.469282,399.5674,79.306366,177.59756,4.857 302,410.46277,185.10866,19.792908,39.616486,4.843 302,147.20752,270.68765,40.064545,118.30304,4.796 302,44.02114,262.56763,32.31945,82.11737,4.754 302,528.4661,185.92395,32.651306,63.831192,4.716 302,418.09238,267.8224,24.372253,46.23282,4.609 302,537.07794,310.01056,142.15619,340.6198,4.604 302,330.9299,483.6024,34.050842,60.031586,4.599 302,107.95762,203.72672,27.535088,66.405975,4.539 302,346.8451,481.3722,33.280304,62.11914,4.52 302,-6.5530024,360.92554,36.47447,102.64569,4.494 302,88.10561,209.5716,26.513412,70.24875,4.479 302,418.16467,493.01184,20.306854,38.98828,4.411 302,-5.1016064,474.36215,16.37349,37.565826,4.407 302,-5.9605083,247.50926,35.241325,113.16527,4.383 302,102.69539,221.8687,28.859451,64.4756,4.361 302,392.3061,210.7156,62.330627,128.84744,4.335 302,188.10638,484.50543,32.318146,58.51355,4.328 302,9.292246,488.29,21.320042,43.750336,4.302 302,618.99066,174.50537,20.163757,46.949493,4.29 302,90.04074,321.40125,34.46827,83.40256,4.26 302,332.7023,181.45293,18.079803,38.468155,4.243 303,546.9413,227.89845,17.096985,40.344467,32.522 303,435.82486,233.64047,18.523743,40.73114,12.967 303,467.27298,345.13477,30.740814,63.552612,11.27 303,-5.5227585,488.91275,17.557053,42.149994,7.911 303,426.96375,238.41238,19.422058,39.164978,7.179 303,613.7642,453.00974,39.28546,108.14603,7.143 303,353.4992,232.90283,21.314026,44.638184,6.805 303,603.604,-55.473698,52.692505,139.84084,6.296 303,541.43274,231.58797,27.404907,60.72606,5.943 303,627.5031,-17.387632,16.97998,45.67427,5.918 303,-5.660082,-18.157303,17.665928,42.696774,5.893 303,-11.460949,-33.321785,29.826471,72.34542,5.88 303,-11.805422,476.62442,29.787016,64.457306,5.859 303,442.1317,239.22603,17.932373,37.7697,5.785 303,626.74664,486.62857,21.179382,48.225494,5.598 303,69.34082,300.23074,86.84218,199.76129,5.576 303,-73.30811,264.17017,201.50592,460.8219,5.411 303,-18.146572,-65.3258,56.643993,149.04718,5.17 303,584.40356,408.96335,71.46405,179.39139,5.057 303,-5.8933916,308.28845,35.46569,104.00476,5.023 303,506.5778,222.88692,16.616852,39.675095,4.944 303,-40.74935,362.10648,111.558754,279.62277,4.933 303,524.3742,225.49289,16.169067,34.592316,4.881 303,2.524556,489.88522,18.250568,39.077972,4.869 303,623.5279,-34.66416,25.812927,74.87697,4.863 303,-17.539762,437.8755,54.827896,138.04987,4.816 303,456.62225,343.7147,31.572876,74.35736,4.797 303,-3.7679148,233.13629,15.777139,45.616943,4.725 303,299.86786,487.825,31.672363,55.19519,4.693 303,5.47676,462.31863,13.65578,32.74646,4.674 303,59.479057,269.5063,16.118454,29.03122,4.641 303,471.39868,208.98985,25.79599,65.460526,4.608 303,497.8009,201.15001,22.319458,67.60823,4.607 303,284.31326,486.39,31.438873,56.33606,4.49 303,532.92676,236.95663,18.598328,36.884064,4.464 303,283.00665,471.08008,19.687653,32.762634,4.45 303,532.54596,224.83507,15.974976,35.114853,4.422 303,-6.338767,229.52557,36.03664,108.121826,4.418 303,133.11421,312.2868,33.646286,71.789,4.373 303,12.491874,290.9073,31.064762,86.74597,4.336 303,552.9651,227.18744,16.122986,34.777893,4.321 303,597.30707,458.85638,39.244446,101.38275,4.272 303,535.82825,312.69244,142.64374,337.2384,4.254 303,-15.446829,235.19089,49.524414,163.54855,4.198 303,552.63855,489.20132,22.962463,43.04953,4.161 303,35.07875,324.81683,32.77176,79.49979,4.101 303,494.16824,227.67831,237.1608,516.9535,4.09 303,-2.4009113,455.66623,13.621219,36.4368,4.087 303,-7.053505,137.04526,19.974897,41.416153,4.078 303,6.753148,324.59198,26.840046,75.35632,4.07 303,299.5123,475.11707,16.879791,27.410034,4.052 303,284.61563,227.4262,27.340363,63.881393,4.048 303,93.19638,295.682,55.14154,136.4148,3.985 303,10.855114,274.46948,55.592373,147.48535,3.971 303,104.418976,296.96445,33.790924,90.03616,3.965 303,537.8166,486.9043,21.95282,45.15912,3.955 303,618.3298,488.28943,21.466492,45.082153,3.927 303,291.51028,480.16537,17.898254,29.078888,3.92 303,147.88011,217.22162,28.408401,67.645386,3.916 303,-8.837229,218.07318,26.11991,71.902405,3.866 303,612.9386,144.55902,36.05188,105.160645,3.862 303,65.27028,303.4962,45.048393,103.7081,3.858 303,524.6996,209.9882,16.505981,38.869278,3.819 303,527.2532,232.76703,28.530579,59.649536,3.815 304,556.602,187.17154,18.794006,43.309708,41.988 304,456.93738,189.73988,19.173767,43.64238,27.553 304,615.5512,436.26398,24.631042,78.55353,11.329 304,440.51788,193.84418,20.832458,40.621323,8.782 304,540.3923,176.48274,16.349731,39.500534,7.818 304,621.1585,472.85168,29.211975,70.07892,7.468 304,-6.1914296,489.18463,18.457197,42.342712,7.369 304,626.9676,-18.19523,17.482239,46.81342,6.566 304,603.3294,-54.355713,52.722168,135.66002,6.444 304,79.18558,191.15413,20.857376,37.102905,6.44 304,-17.309721,-61.452736,56.758324,142.7008,6.324 304,-12.665509,477.562,31.026672,62.48181,6.23 304,562.14136,180.22813,17.03888,37.692795,5.858 304,506.90466,183.59961,16.901855,40.769638,5.831 304,622.9814,-34.246716,26.373169,77.17126,5.74 304,486.89447,165.61478,25.970032,67.10307,5.6 304,523.9929,185.57243,15.112244,35.53244,5.559 304,586.9885,186.10867,17.5141,35.251312,5.525 304,114.62745,293.935,34.269142,74.58557,5.437 304,-1.7176104,121.46277,28.894733,74.43146,5.43 304,498.80252,181.02444,18.566864,48.200027,5.282 304,-11.192686,-32.991077,29.468803,74.496,5.252 304,548.1286,177.85344,16.621643,38.889282,5.241 304,-5.727458,-18.805214,17.53343,44.45826,5.167 304,605.2024,434.8326,52.683594,134.67874,5.147 304,451.13864,183.70384,18.921814,44.511932,5.123 304,360.24814,186.58879,21.94458,44.663284,5.112 304,555.77216,176.98067,15.571228,34.20587,5.109 304,-1.9184625,414.21124,25.408262,75.53891,5.089 304,618.0354,484.44525,21.558777,47.03058,5.081 304,511.6277,349.7605,31.639954,69.152405,5.0 304,1.832034,490.19196,19.502275,39.989563,4.902 304,573.89386,358.96252,98.72833,269.6454,4.816 304,505.17407,163.30276,23.220093,67.08551,4.736 304,516.30347,184.2986,15.592407,37.605698,4.726 304,-72.77128,267.09357,200.90948,460.3548,4.711 304,-40.155865,363.7905,111.94791,273.76456,4.644 304,24.820312,149.57497,23.746384,47.955765,4.606 304,3.448745,140.73412,31.77343,86.09111,4.514 304,-18.357653,431.607,55.393005,142.99744,4.454 304,598.6364,455.9316,36.023132,102.30368,4.38 304,102.66553,289.20883,30.507935,74.57449,4.345 304,561.381,200.679,19.051636,31.704453,4.307 304,-12.276169,395.14124,31.29235,75.286194,4.115 304,-9.912555,103.33554,30.443123,67.6062,4.093 304,-4.289734,435.86618,18.018877,47.516144,4.078 304,-11.508135,144.22482,30.925295,74.791824,4.065 304,492.8277,227.6229,238.89862,515.9375,4.056 304,532.7166,174.34111,15.815186,40.8237,4.056 304,568.6877,193.2927,19.819763,35.336945,4.011 304,128.99971,297.76385,34.288177,63.13324,4.01 304,579.2783,194.56271,39.763855,86.93811,3.981 304,-9.170789,6.329506,38.14066,106.70061,3.922 304,579.30505,187.3216,19.250366,38.15245,3.917 304,18.737476,123.351456,34.841633,70.85451,3.907 304,187.09206,197.19257,17.97499,32.7529,3.89 304,2.4227202,105.23097,32.78712,68.42819,3.865 304,563.1412,199.8067,42.14508,101.650665,3.865 304,58.34101,295.24332,32.422462,95.591675,3.859 304,512.10803,153.96568,24.29419,71.17073,3.781 305,474.06757,208.77994,19.27713,46.410492,31.328 305,557.48956,207.51814,18.965271,45.253372,29.538 305,1.6138268,209.94221,20.77179,53.287094,24.628 305,457.95184,214.78302,18.378387,41.94458,13.319 305,603.65106,207.45842,16.887878,38.028503,8.04 305,3.660016,182.94632,29.047867,73.86084,7.776 305,-4.288857,205.651,19.891628,49.67453,7.346 305,-1.002171,134.61108,27.939014,71.5829,7.338 305,-5.800002,487.5033,19.386845,46.833435,7.251 305,556.43616,194.95639,17.682007,41.398254,6.99 305,613.72046,452.5755,39.75525,110.145935,6.894 305,603.282,-54.414864,52.85504,137.28413,6.646 305,626.73456,488.40552,20.706482,43.73535,6.548 305,-10.962972,473.6437,30.226112,66.83505,6.51 305,627.5384,-17.463324,16.936157,45.338894,6.49 305,-17.343004,-62.310997,56.544212,145.27689,6.419 305,567.8661,210.71118,18.091064,39.248962,6.184 305,587.86615,329.5628,17.292725,24.868683,5.918 305,-9.402355,180.10294,30.664837,74.464096,5.807 305,623.6138,-34.654644,25.750244,75.50724,5.646 305,-18.163239,418.9952,57.009563,155.03885,5.588 305,-35.776173,368.78986,106.73067,264.4018,5.53 305,617.92267,199.78339,19.595886,43.42758,5.368 305,90.519905,335.40894,35.286438,75.43002,5.328 305,0.90201974,350.18652,29.020386,95.66049,5.29 305,-11.390523,-32.85253,29.807583,73.33255,5.262 305,573.17566,360.70178,98.21985,267.07666,5.166 305,598.5815,351.08322,35.709473,108.47858,5.155 305,-5.806225,-18.070227,17.536936,43.069427,5.099 305,561.80444,222.26369,19.670105,32.21161,5.063 305,597.66327,210.93643,16.853516,34.97232,5.019 305,578.817,211.87479,16.37909,34.48764,4.891 305,610.3791,204.6778,17.802979,39.56775,4.804 305,528.51263,178.49924,23.70465,70.90097,4.779 305,1.2671757,484.16782,20.938543,48.569,4.757 305,99.69467,313.98367,29.824402,72.02713,4.7 305,-14.752015,160.00348,48.724197,126.25009,4.643 305,-73.03514,268.49274,200.0584,458.14337,4.641 305,507.11926,324.647,19.175781,30.213287,4.583 305,476.51044,188.76364,27.152924,64.604065,4.539 305,579.72314,329.819,18.10913,25.917358,4.528 305,467.3465,214.95123,18.806091,39.422867,4.5 305,21.06797,316.37442,29.78926,73.46146,4.466 305,-9.814158,367.21442,32.207344,83.47635,4.46 305,598.84283,202.72128,27.024353,58.55899,4.459 305,449.34476,197.24683,26.321716,63.616364,4.4 305,538.9341,201.27441,16.649658,42.478455,4.36 305,578.84436,210.46143,39.520386,84.725586,4.359 305,225.86546,220.10902,23.245895,37.07045,4.355 305,73.098595,210.34259,21.944145,42.337097,4.326 305,523.78424,328.34235,18.109497,26.915009,4.324 305,515.4111,326.39682,18.977905,28.751617,4.29 305,-6.1064553,312.4926,62.213528,178.65866,4.281 305,-5.0101137,124.6817,17.899918,40.762665,4.258 305,596.4441,209.31679,37.427673,93.493576,4.244 305,85.92101,320.95844,28.76577,72.54291,4.177 305,555.15063,320.36295,17.985046,25.371216,4.175 305,578.9236,363.66528,44.648376,130.49686,4.152 305,-0.45386553,392.48633,30.592354,90.200745,4.151 305,-5.0285234,138.09506,19.838879,44.12932,4.136 305,539.67065,320.7804,17.01178,24.4151,4.112 305,493.45853,226.95331,237.92416,518.28796,4.094 306,484.94135,216.48547,18.744629,42.61081,52.931 306,467.32193,215.1302,19.86148,41.707687,22.526 306,549.07495,205.73978,18.52948,46.926163,18.135 306,-4.0559964,208.4924,18.255339,45.521454,10.054 306,113.226006,216.94768,22.83564,45.91487,9.341 306,627.3638,487.7871,19.777466,44.09265,7.724 306,57.1135,211.83571,19.40247,38.90782,7.338 306,474.3631,221.74658,19.264221,35.8544,6.995 306,603.27026,-54.53974,53.003235,137.02739,6.785 306,-12.556055,478.10684,31.06404,62.980927,6.414 306,-12.039456,-40.83231,40.88699,101.00938,6.364 306,587.18335,216.62827,16.797302,32.216507,6.35 306,627.5628,-17.560625,16.911804,45.344532,6.348 306,-6.521531,488.99313,19.370806,44.30887,6.036 306,37.489548,351.83722,31.72966,75.429474,5.937 306,613.32227,455.54013,38.359802,106.66629,5.868 306,1.5939188,177.80014,20.668888,45.45523,5.784 306,-5.667042,-18.024721,17.366339,43.130516,5.597 306,2.209773,123.53139,32.918587,70.721146,5.589 306,623.56604,-34.532776,25.822632,74.94632,5.517 306,-36.061142,371.87155,106.48388,263.126,5.362 306,4.1152215,183.41438,28.166979,65.39598,5.34 306,552.4986,221.33984,19.403137,35.97397,5.316 306,202.38828,226.01233,20.988419,35.87201,5.254 306,49.792564,346.62762,31.656334,68.0939,5.209 306,583.86584,410.7816,71.03375,177.94803,5.183 306,619.6798,489.5083,18.288086,41.32959,5.146 306,226.69585,227.83438,21.142776,39.151093,5.034 306,571.6879,196.38531,15.616028,35.531143,4.854 306,15.9649,365.3656,35.603035,79.11496,4.853 306,218.05016,228.13565,21.423248,36.074738,4.814 306,-19.935146,428.16437,57.674675,148.54865,4.757 306,536.4864,310.88275,143.68561,340.25665,4.744 306,554.65466,199.31943,17.677551,46.48221,4.698 306,203.7453,220.56238,30.26419,61.298737,4.609 306,186.72453,226.09431,18.845062,34.803116,4.603 306,-8.340927,124.888,29.216076,68.69934,4.574 306,-72.54196,268.64276,199.35213,457.02057,4.559 306,-10.776114,171.29668,30.41204,70.94737,4.52 306,518.59796,185.50107,26.016357,67.48532,4.516 306,493.8339,227.52731,237.26535,515.2761,4.507 306,6.131028,348.70227,28.135735,85.13327,4.495 306,220.16269,222.0417,31.91803,60.235214,4.348 306,300.96762,203.04727,27.773865,50.96634,4.346 306,43.640495,214.24568,21.085487,40.18405,4.315 306,-3.2227588,155.84178,30.460037,74.86632,4.231 306,-10.194952,351.0131,29.418308,77.15872,4.222 306,-7.6873326,364.52582,37.196945,98.020935,4.211 306,324.7952,215.17921,15.244049,31.036972,4.135 306,617.5017,201.68611,19.136353,40.61116,4.131 306,564.1526,201.39537,16.211548,39.988632,4.125 306,195.05821,226.8931,20.012192,35.08249,4.074 306,50.205917,223.70001,19.82901,36.62613,4.07 306,364.508,208.05205,29.535522,55.956314,4.063 306,19.47786,335.52072,39.955864,82.202576,4.057 306,603.87946,212.64154,18.230103,35.977417,4.055 306,-6.084866,167.88655,19.110502,43.77188,4.041 306,-5.533833,186.59344,18.643269,42.948196,4.018 306,486.08618,195.03244,26.55951,58.89467,4.01 307,498.42007,211.2836,17.38974,48.49112,53.182 307,476.8631,216.71974,20.89508,44.84648,51.94 307,539.8014,207.64444,19.990356,51.836395,27.745 307,358.27777,196.02464,27.587555,59.33905,9.192 307,595.7553,217.37793,16.295898,31.44899,8.686 307,-10.549925,-32.13416,30.30205,74.9231,8.51 307,618.8877,205.0297,18.37915,37.627625,7.805 307,-5.8702664,-18.02642,19.07827,44.59216,7.684 307,-5.485693,488.67307,17.93074,41.233673,7.556 307,81.69632,205.87321,23.097092,49.291046,7.105 307,626.96155,488.59232,20.210205,45.09085,7.095 307,3.0252366,390.35324,17.738369,38.622955,6.933 307,603.5632,-54.107304,52.884094,133.97795,6.568 307,-10.613327,478.30673,28.192041,62.315826,6.49 307,627.39087,-17.555311,17.163574,45.608475,6.27 307,491.547,221.29054,18.39502,36.50795,6.236 307,536.0283,174.1887,26.131409,75.83406,5.892 307,612.8657,457.00427,38.901794,104.850525,5.837 307,-17.646431,-62.196224,57.190903,138.96002,5.77 307,-9.081245,462.60413,37.778427,95.81836,5.607 307,584.16504,411.26672,70.71417,177.539,5.376 307,4.1300163,-34.56231,29.888203,80.92936,5.34 307,-1.1783612,302.67902,21.230753,46.041077,5.334 307,478.91382,195.4155,26.491608,62.05008,5.314 307,159.4,219.06987,24.900696,43.78566,5.269 307,623.3233,-34.281143,25.975891,76.042564,5.254 307,494.92706,189.65579,26.55011,65.943756,4.995 307,308.8137,216.18884,16.857208,31.207153,4.944 307,590.3736,218.63963,15.505493,28.228256,4.877 307,316.56708,217.47002,16.438751,30.11641,4.86 307,4.9337997,150.53474,30.420948,76.36368,4.858 307,1.673798,-17.048553,19.955078,45.421436,4.847 307,-22.036133,401.77664,78.61503,175.82303,4.839 307,300.71118,217.08794,17.015015,31.164536,4.823 307,533.1326,209.27206,18.969482,48.244354,4.819 307,2.9609995,490.4791,17.904472,38.712616,4.724 307,618.74335,491.01556,19.996643,41.184875,4.72 307,536.4688,312.2838,143.54083,339.28296,4.631 307,-72.48479,267.24402,199.47974,459.50403,4.624 307,-3.468251,391.4097,16.914103,39.52487,4.589 307,538.23676,324.49255,19.991638,26.57132,4.536 307,595.1148,-45.525204,43.098022,100.4528,4.533 307,504.44977,215.0836,17.953064,42.566177,4.504 307,512.08636,189.17943,25.881714,67.113754,4.484 307,91.24867,124.329544,32.095825,82.22386,4.475 307,530.72015,322.14413,19.991089,28.252686,4.472 307,493.5062,227.8176,237.5427,516.4459,4.458 307,573.0,213.0522,15.432556,31.618073,4.426 307,331.71616,218.4773,19.730927,40.909912,4.379 307,437.51437,199.5495,29.340149,55.251205,4.27 307,164.40681,189.9385,27.434341,70.14926,4.266 307,-9.199931,171.6582,28.416222,69.177734,4.227 307,603.1482,215.24884,14.801147,29.478622,4.223 307,522.7496,208.09457,18.36206,47.999237,4.177 307,5.100252,474.14056,13.84115,31.612518,4.162 307,-10.604895,345.60657,29.943125,74.86688,4.068 307,612.3613,212.19403,16.90979,32.216614,4.042 307,546.1931,324.37198,19.772522,27.092651,4.041 308,509.65268,235.49551,20.20694,45.77655,60.244 308,553.8512,219.9178,20.24231,59.16234,57.008 308,537.7328,222.12363,19.158752,55.7146,42.249 308,542.81714,199.49162,28.41632,79.83275,24.848 308,532.0497,235.65108,19.383972,44.255356,9.796 308,360.19733,203.43307,26.090485,66.83206,9.454 308,54.77602,210.90091,27.017483,57.232697,9.088 308,521.365,234.99399,19.856018,43.896423,8.443 308,-11.047588,-31.8833,29.91031,73.289665,7.892 308,-6.5924554,-17.670563,19.679237,45.59047,7.11 308,-11.454552,481.90448,29.630068,59.167053,7.044 308,502.40707,220.7179,35.703583,67.415436,6.98 308,622.00977,478.63293,28.580444,65.6723,6.518 308,603.7109,-54.875416,53.257263,133.36357,6.335 308,-18.064411,-62.725094,57.0233,143.76411,6.197 308,547.8417,99.45683,32.427612,80.13068,6.158 308,355.1791,216.59354,20.430817,48.667755,6.093 308,479.34656,162.57455,26.331238,79.724915,5.893 308,539.8883,129.11179,33.41107,78.97536,5.679 308,627.3505,-17.010555,17.056885,45.50298,5.528 308,507.5644,227.41606,18.394348,38.409378,5.44 308,603.44104,435.79187,55.570923,138.70337,5.414 308,-18.231329,441.85916,55.405937,133.81247,5.362 308,300.09546,487.55438,30.950043,56.29773,5.147 308,251.31055,487.6635,33.516846,56.190063,5.11 308,559.8211,233.24796,20.156433,44.10733,5.086 308,-39.38981,370.35992,108.936325,274.92487,5.016 308,604.63025,222.69449,15.05896,34.03647,4.883 308,545.8743,232.63283,20.234924,45.691605,4.853 308,-72.27008,267.37994,199.69893,459.96588,4.778 308,554.9902,149.02391,30.731628,68.18466,4.776 308,535.90643,312.88214,144.2666,338.45013,4.735 308,2.0792036,490.86807,19.92894,40.00583,4.728 308,235.54941,487.17255,33.21161,56.9093,4.713 308,623.3375,-34.420025,26.052124,75.71745,4.696 308,324.76556,484.56058,30.61969,57.753754,4.573 308,267.67276,488.03006,32.710693,55.396576,4.565 308,618.8514,219.58664,17.072632,39.186005,4.513 308,546.97437,304.91245,18.532349,30.021088,4.512 308,219.63896,487.31168,32.805206,56.73001,4.503 308,594.64905,-46.819454,43.170227,99.52326,4.452 308,-14.636311,155.44762,48.130848,133.06526,4.437 308,-4.7662935,479.77524,15.751643,32.563812,4.436 308,494.0255,228.56122,237.88458,515.07263,4.381 308,-10.431383,148.96558,28.225664,70.80429,4.361 308,283.70435,488.37952,31.9823,55.11963,4.36 308,1.0546166,-15.876364,19.099768,43.923595,4.358 309,584.4849,227.24864,25.275757,60.057327,52.534 309,610.635,217.55875,24.763489,68.393036,27.979 309,382.14557,203.42844,30.263428,65.51535,14.0 309,5.2805767,141.56085,33.963547,80.23001,9.322 309,580.0472,231.77573,20.676208,46.83435,9.012 309,623.2877,-34.237644,26.460815,73.578705,8.649 309,627.07184,-17.394379,17.601562,44.503544,8.146 309,-11.335697,478.48996,29.453888,62.810944,7.292 309,376.55286,210.16974,23.653778,56.005554,6.981 309,-6.027623,489.1571,18.967138,41.507935,6.909 309,587.9835,205.57648,32.16577,84.48819,6.872 309,-17.183239,-64.21704,55.99888,147.926,6.85 309,19.473776,149.0282,32.903015,76.050156,6.693 309,605.4176,186.00441,30.441223,80.99327,6.676 309,621.89935,477.80908,28.542786,66.52069,6.225 309,610.13965,111.13081,29.37732,86.73845,6.197 309,168.6461,217.25803,22.105087,34.855743,5.906 309,595.21484,56.269897,34.802307,86.75734,5.767 309,618.38513,-17.141644,18.371582,41.304058,5.648 309,154.23984,192.32486,20.122803,46.900574,5.6 309,618.34625,252.89145,18.318054,44.93817,5.56 309,604.334,435.85614,53.737,137.73114,5.521 309,-11.483486,-32.45857,29.8625,73.20922,5.446 309,-17.411655,440.12576,55.22166,135.92612,5.36 309,-5.659888,-17.900764,17.310637,43.2011,5.212 309,602.5315,-57.17003,53.29364,131.27689,5.189 309,364.8691,215.09413,32.134644,66.96599,5.15 309,611.4358,223.28271,34.070496,94.838806,5.099 309,-39.71159,369.57092,109.392975,274.93872,4.929 309,-72.66301,265.90723,200.18811,461.89374,4.925 309,186.52332,222.07956,20.02501,34.195923,4.84 309,-3.582273,429.18356,14.84197,38.863556,4.676 309,615.18396,-17.80145,26.772156,63.798607,4.673 309,436.71106,138.77032,28.065521,87.0764,4.666 309,4.851384,470.04547,38.638508,92.60962,4.641 309,536.1799,312.99353,143.54218,338.09412,4.61 309,170.85837,198.45009,18.764359,39.446228,4.572 309,6.64732,187.12897,27.71793,66.902084,4.562 309,308.08185,485.9269,31.675293,56.783173,4.541 309,-10.542557,123.03779,31.150953,70.11233,4.532 309,458.42224,220.42987,35.21106,57.709076,4.496 309,369.97668,213.11314,20.805481,46.391617,4.446 309,-0.014463663,150.35025,24.949675,57.481033,4.426 309,601.0132,88.45149,33.0932,81.80742,4.392 309,-5.5319557,266.31348,17.515903,42.547607,4.364 309,492.90747,74.67902,27.057617,79.61407,4.339 309,493.42087,228.18213,237.978,514.35657,4.337 309,606.37067,-34.578773,28.39093,71.73081,4.25 310,417.5307,196.50613,32.04834,82.97348,22.608 310,554.5017,213.72069,30.192749,59.205612,10.11 310,537.3309,209.92062,22.786072,50.508972,8.43 310,-17.108475,-64.33895,55.801666,147.68295,6.839 310,-11.81254,479.3462,29.528257,62.192383,6.736 310,622.6023,-34.70424,26.851135,78.145905,6.728 310,267.6233,481.7904,32.253693,60.629883,6.673 310,626.6511,487.7065,20.41748,46.446075,6.649 310,612.92303,457.60825,38.683105,103.63461,6.127 310,571.39215,174.0972,21.354553,44.43744,6.055 310,-6.081485,489.5329,18.736094,41.395935,5.882 310,541.11835,153.40771,28.271118,76.9182,5.52 310,602.97296,-56.970272,53.283386,130.30908,5.443 310,543.7245,218.61945,23.801086,51.67737,5.443 310,-11.3792515,-32.133816,29.870028,72.22767,5.416 310,626.79626,-20.296452,18.79889,49.105946,5.311 310,283.48364,484.7299,32.33258,58.52121,5.258 310,-5.6647243,-17.933165,17.267727,43.362045,5.252 310,153.61835,181.87604,21.730698,54.71132,5.243 310,-2.926619,142.44951,29.154541,82.74364,5.223 310,583.8165,412.71848,70.7959,176.06754,5.22 310,-21.115465,404.916,78.27899,173.91678,5.124 310,100.608025,126.818825,31.53608,89.552666,5.101 310,35.417736,145.02524,33.279026,81.10338,5.046 310,300.35,485.03998,30.99881,58.85681,5.008 310,558.2114,161.67017,29.776794,64.81523,4.972 310,617.95215,-22.429913,20.5802,50.393593,4.967 310,-72.371925,266.5794,199.81454,459.81342,4.936 310,593.8622,-45.670925,44.404297,94.67458,4.886 310,526.62115,217.57553,31.084229,58.257233,4.846 310,234.97388,217.27399,17.855042,30.034073,4.698 310,536.10785,310.79242,143.98865,341.82697,4.587 310,11.3189125,151.52553,32.96533,74.25786,4.511 310,251.94763,480.845,32.315796,62.242523,4.401 310,400.5791,203.30453,26.990845,67.53171,4.395 310,472.66046,222.35197,35.68341,61.18135,4.392 310,5.33725,469.135,37.91086,94.06494,4.38 310,585.9359,-99.23836,75.4035,229.76021,4.353 310,51.862503,153.06734,31.816742,80.1974,4.345 310,618.3358,488.58478,20.701477,44.20691,4.328 310,493.70834,227.07846,237.49539,514.75586,4.273 310,545.0851,204.73904,19.719482,43.880264,4.253 310,425.60214,185.7132,20.486359,54.317444,4.228 310,393.07214,209.33533,19.554657,47.34546,4.221 310,-12.1868305,135.2919,30.979647,72.45549,4.182 310,332.87537,221.2773,15.636322,27.826492,4.155 310,316.39493,485.70523,31.014252,56.875153,4.123 310,349.49243,213.30943,13.674622,27.093735,4.011 310,243.97052,224.65677,18.172546,31.50412,3.995 310,323.98166,219.00618,16.574951,29.199768,3.963 310,302.33533,199.0445,28.929626,54.426315,3.961 310,536.5308,178.28844,27.668274,71.17958,3.941 310,26.660433,158.54422,56.06791,121.57907,3.931 310,-8.3628,7.1630898,38.026325,105.27283,3.928 311,477.88477,207.89156,28.802216,87.060196,7.921 311,-11.442354,478.7864,29.528345,63.08011,7.086 311,-17.249266,-64.22172,56.01027,146.97491,6.997 311,598.16705,223.81499,29.783203,64.137314,6.982 311,-6.1315207,489.3558,18.784294,41.66873,6.709 311,611.30536,-46.435753,40.744568,99.612335,6.581 311,626.5183,487.31467,20.407104,47.16562,6.425 311,627.5469,-16.782621,16.732178,44.66324,6.377 311,612.6505,457.18842,39.372253,103.2887,5.967 311,100.08172,143.16328,34.11715,90.075714,5.625 311,-11.460617,-32.025135,29.920979,72.160225,5.521 311,-17.527527,440.26746,55.03302,136.38647,5.447 311,486.3816,200.77747,27.253052,76.59137,5.441 311,308.5003,486.2523,30.73761,56.852753,5.413 311,-5.673304,-18.05737,17.260735,43.372753,5.383 311,396.8001,236.25363,30.864838,63.6362,5.326 311,583.57214,413.8202,70.90369,174.94415,5.309 311,460.62433,204.62166,30.72522,90.302505,5.2 311,-39.410313,370.0111,108.6772,274.66394,5.131 311,76.4291,151.57614,32.658485,87.09621,5.002 311,592.0791,207.6329,28.622864,68.74786,4.99 311,136.23082,193.71675,25.962143,61.512817,4.961 311,323.73337,486.29507,32.20935,56.145966,4.957 311,469.88315,143.96712,27.61322,71.1418,4.922 311,-72.42051,267.06696,199.7651,460.4217,4.887 311,144.2871,184.25577,20.880386,54.926544,4.667 311,292.45316,486.4824,30.852264,57.24655,4.639 311,615.6744,238.49083,22.65094,50.808273,4.594 311,5.1557064,470.21848,38.006615,91.92856,4.579 311,535.925,311.75143,143.3305,340.13626,4.536 311,330.97217,232.58812,19.251587,32.195786,4.521 311,87.59945,200.3478,20.659737,53.986313,4.487 311,497.0957,201.4583,20.174133,52.322372,4.433 311,91.25284,180.68753,28.236954,73.2307,4.433 311,-12.488659,98.647125,32.47013,69.046875,4.418 311,394.42383,210.71933,19.854431,45.760315,4.417 311,585.79987,-99.550674,74.91058,230.36786,4.408 311,580.41943,-8.797384,29.443787,62.03103,4.39 311,46.43483,152.25394,29.389694,73.86322,4.379 311,628.56024,3.7201385,16.533203,41.521103,4.375 311,493.22537,228.34412,238.0618,514.7826,4.368 311,582.93164,189.44547,27.893433,68.99426,4.365 311,594.39874,-44.210674,43.00403,95.50925,4.345 311,557.3522,-15.501659,28.805481,64.85701,4.338 311,618.062,488.35574,20.628052,45.094025,4.316 311,562.23895,-16.513973,18.334656,45.281635,4.291 311,1.1857307,236.25075,22.5051,43.65898,4.28 311,315.30432,216.1811,16.918396,32.841446,4.252 311,588.0741,125.08821,27.856567,88.52667,4.234 311,570.55597,-15.66436,17.864075,44.748375,4.216 311,309.77362,204.96161,28.76825,54.7995,4.183 311,116.156784,147.09473,31.348083,89.53589,4.167 311,620.14746,-16.268894,16.134521,40.735332,4.164 311,2.3181148,490.485,19.053793,40.117188,4.145 311,60.93571,131.76959,31.912617,74.80357,4.127 311,-9.949513,342.3273,39.279324,107.51688,4.122 311,59.65755,84.050186,33.473362,74.370895,4.103 311,539.65936,171.70557,55.675415,111.21097,4.067 311,549.81134,-34.04841,27.979858,79.6561,4.061 311,474.16492,203.38202,22.577057,72.55408,4.053 311,3.7996805,225.2874,32.850105,60.04503,4.041 311,276.3705,485.9079,31.41806,57.073486,4.039 311,95.639305,160.10445,24.035378,58.422684,4.029 311,586.38684,-11.878507,16.555359,42.297848,4.022 311,574.15106,-31.014412,28.352173,78.07237,4.016 311,465.05054,140.83626,22.41452,53.169952,4.012 311,-8.45949,6.1723022,38.180862,105.39893,4.006 311,153.23282,215.66078,21.218506,37.895462,3.986 311,-4.488489,313.49878,15.938406,40.245605,3.963 311,-4.7440352,298.1598,16.088972,39.37497,3.956 311,364.59338,216.93195,16.208069,31.320755,3.918 311,579.0372,222.28763,41.597046,87.08676,3.906 311,17.412764,229.14319,34.453217,53.703888,3.894 311,305.60556,217.48204,19.051392,34.784103,3.889 311,349.13266,221.99883,15.202637,25.92714,3.88 311,478.92468,149.97023,28.14154,72.021515,3.872 311,260.40472,485.7442,31.599945,56.834717,3.872 311,413.3574,230.2682,29.383972,68.72728,3.856 311,417.3361,215.84671,20.716919,51.89087,3.83 312,612.79083,180.89359,27.508728,104.636566,13.693 312,65.894775,145.65585,32.87838,87.45419,11.492 312,424.36996,214.22092,21.199463,49.92981,10.434 312,20.156212,121.864365,33.317127,87.73247,8.244 312,378.53052,205.6749,16.741333,37.553528,7.651 312,4.7214723,129.25966,31.170053,93.80092,7.182 312,615.6321,241.3424,24.255493,94.00403,7.036 312,621.9651,-33.715878,27.745544,78.51267,6.941 312,-6.0290003,489.3435,18.391565,42.246216,6.917 312,621.7751,478.41287,28.661926,65.84506,6.909 312,92.496185,164.30757,28.593246,80.29628,6.782 312,587.37775,91.89809,29.597229,76.79997,6.656 312,-5.6710644,-17.944805,16.855824,43.837513,6.579 312,-17.10178,-64.199554,56.241055,145.4239,6.532 312,-8.868111,463.61996,37.365685,93.25076,6.528 312,626.6903,-20.184647,18.224976,50.66073,6.233 312,604.52856,139.94275,31.918396,98.72687,5.866 312,44.259956,163.82419,29.430534,82.77341,5.621 312,-11.381121,-32.571095,29.153658,72.74218,5.617 312,561.1182,190.28485,48.73175,127.58081,5.559 312,602.39087,-56.885124,53.737183,136.14098,5.33 312,604.2196,435.8673,53.618652,137.77289,5.26 312,33.34886,137.66196,33.674538,88.58768,4.956 312,118.729675,173.2981,27.697433,74.076416,4.953 312,595.5692,94.52535,44.217834,175.17624,4.941 312,617.9641,-22.077274,20.236572,50.994526,4.911 312,-72.54447,266.2644,199.89355,460.94238,4.845 312,-21.602169,402.88254,78.57459,174.98904,4.812 312,292.19077,484.74088,31.280914,58.890594,4.786 312,617.882,488.65558,20.948303,45.18048,4.763 312,605.71704,-33.607037,29.08667,75.19743,4.67 312,331.6127,217.57675,16.791107,29.283325,4.651 312,536.5587,311.2558,142.96448,341.16217,4.645 312,585.70886,-106.08027,75.67737,247.89798,4.609 312,250.94205,483.42096,33.148834,59.240723,4.567 312,-11.078096,77.023994,32.967247,67.81463,4.56 312,53.44487,132.40633,34.241783,85.82913,4.53 312,-11.730004,101.928024,33.112637,78.24904,4.463 312,581.20624,-33.393085,29.302551,70.21815,4.458 312,567.57294,92.84056,27.85785,76.10484,4.441 312,597.59106,182.48318,41.58838,168.01584,4.412 312,36.283264,175.24364,26.307545,76.020004,4.378 312,307.89484,485.02945,31.976746,57.049835,4.366 312,24.173332,169.19455,28.985397,77.01643,4.362 312,588.5031,-18.88718,31.218567,63.41018,4.356 312,6.4101753,169.32184,28.17006,76.94737,4.344 312,465.53317,212.60919,28.710785,66.531555,4.291 312,318.09085,201.00024,28.7742,52.094986,4.242 312,2.4568295,490.7328,18.808086,40.59204,4.22 312,494.06796,227.44904,237.52383,515.61194,4.199 312,373.6118,188.17595,24.863678,60.450012,4.182 312,614.2595,120.56395,24.874146,88.84645,4.174 312,614.01074,10.353531,25.436768,91.92043,4.147 312,421.6983,209.71909,37.321777,84.1496,4.134 312,43.83966,95.400154,36.5373,77.23998,4.134 312,308.17294,204.45929,30.559357,60.573486,4.115 312,597.094,82.53732,30.833801,79.408875,4.114 312,614.63916,77.62994,24.233765,90.58335,4.103 313,455.19516,201.4949,25.384674,64.60773,11.735 313,627.2835,490.54025,19.856384,42.152313,8.593 313,451.32178,204.92717,19.323486,46.91011,8.585 313,564.09485,213.50719,36.906555,110.92842,7.989 313,623.40106,-34.241093,26.533386,77.96047,7.148 313,106.71608,120.501015,32.623245,88.31286,6.813 313,-5.6699777,-18.124464,17.606745,43.406307,6.71 313,-5.590901,489.4827,17.795595,40.34268,6.657 313,-11.016262,479.10803,28.839252,62.092102,6.144 313,619.68085,494.0982,18.644836,37.71521,6.082 313,617.32794,142.58508,21.260986,61.380722,6.054 313,-11.146001,-31.356808,29.36768,70.53725,6.036 313,627.61304,-19.41903,17.370972,49.60414,5.974 313,393.76477,190.9879,18.866486,49.64583,5.77 313,77.20741,163.80505,30.217957,78.21399,5.675 313,-17.124155,-63.65878,55.977806,144.07033,5.578 313,603.1915,433.0797,55.206238,142.51282,5.568 313,44.578186,151.4972,30.391731,78.33951,5.38 313,38.90804,166.0782,27.880207,80.49013,5.251 313,603.58203,-54.74332,52.531372,135.15038,5.229 313,-72.33321,266.6247,199.71521,459.07086,4.921 313,383.85876,175.26646,25.663055,67.97914,4.89 313,-21.442911,403.24734,78.64793,174.65524,4.842 313,331.5411,215.82288,18.772125,31.757843,4.818 313,560.13605,189.56029,26.505127,64.17763,4.754 313,52.982574,165.79036,28.468956,78.88652,4.592 313,2.8687544,-16.166843,16.737022,40.72542,4.574 313,93.06389,122.56449,34.554245,85.73315,4.489 313,355.77716,210.25002,17.249146,31.33107,4.471 313,50.97874,49.240902,36.05369,93.48575,4.453 313,378.99585,195.18156,18.494446,45.26686,4.409 313,536.7546,311.04285,142.5711,341.92242,4.39 313,1.6778886,104.96358,33.486557,94.65239,4.386 313,622.1072,136.15434,26.297302,75.97742,4.332 313,619.2987,-18.9445,17.952576,46.969547,4.304 313,338.94666,214.83682,19.036499,31.588669,4.282 313,619.98737,352.29034,18.511292,49.87314,4.267 313,323.43573,214.32999,18.430542,34.436172,4.25 313,494.0178,228.88498,237.31699,515.6045,4.207 313,605.668,195.77289,26.020996,59.178223,4.201 313,33.767834,49.143627,36.270725,85.910675,4.175 313,-8.995376,115.4474,32.63238,80.06755,4.126 313,585.7927,-101.131836,74.99335,235.53244,4.121 313,610.2235,143.33752,20.909851,50.241043,4.064 313,441.2409,197.38847,35.1774,84.967026,4.028 313,628.78076,479.83765,14.791992,34.650024,3.991 313,35.443764,102.1311,33.467255,79.172424,3.911 313,313.66882,216.54681,19.501892,33.660004,3.872 313,3.1443386,490.7488,17.400803,39.21225,3.872 313,308.7255,199.95712,29.8154,54.36133,3.854 313,-9.58291,43.6182,30.428623,69.44806,3.838 313,615.9705,-23.688526,25.851929,79.296295,3.81 313,-7.9547024,183.88382,37.012093,97.95181,3.752 313,-8.740331,355.20087,37.509365,110.878845,3.744 313,33.964046,130.09294,33.273083,84.268234,3.739 313,453.5636,204.1926,37.398956,91.87167,3.733 313,435.28262,203.04483,16.847443,40.88794,3.702 313,621.45996,484.2254,13.631714,27.822449,3.69 313,-37.419163,-122.959885,119.2478,280.06415,3.682 313,575.3327,169.58801,45.95099,125.98355,3.672 313,347.30017,207.91618,17.83258,27.31636,3.658 313,540.3515,2.8857746,16.943054,31.22441,3.657 313,-3.9601474,32.276253,15.780912,35.227455,3.649 313,427.1446,-16.944916,17.626587,40.25295,3.634 314,480.9943,224.16556,23.509552,50.43637,88.081 314,389.10925,214.387,17.0065,45.507812,10.542 314,484.32733,223.10939,28.732239,76.71275,9.146 314,626.5083,489.25842,20.925232,44.651123,7.456 314,-5.9219975,489.54297,18.068356,41.27191,6.417 314,626.93536,-18.202717,17.267212,50.575798,6.335 314,623.15424,-33.17584,25.622925,79.526825,6.282 314,-8.923582,462.9904,37.836304,94.99167,6.126 314,-17.030848,-63.53649,55.794586,146.69461,6.123 314,603.1634,-54.33777,52.62201,136.53888,5.837 314,613.471,454.15744,38.54126,106.194,5.81 314,0.13123631,231.74878,21.319502,55.260864,5.753 314,472.43457,224.46292,28.028015,70.221375,5.531 314,-5.773942,-18.090578,17.237347,43.629433,5.447 314,-11.520596,-32.513332,29.383724,73.20871,5.402 314,-11.301254,478.2432,28.910934,62.38095,5.323 314,618.9026,491.5724,19.47406,40.88159,5.272 314,331.579,229.67404,19.148102,34.654022,5.185 314,-72.75944,265.57104,200.83673,461.23804,5.135 314,583.3938,413.4646,71.20764,175.3841,5.103 314,464.48718,216.21686,27.917786,58.96393,5.029 314,371.4701,214.37187,17.417786,38.522644,4.928 314,-21.731998,401.87494,78.94928,175.66425,4.9 314,574.7526,190.24977,27.206543,67.38008,4.784 314,452.38702,241.7746,32.17865,73.4256,4.679 314,541.1747,193.7733,29.489868,71.17091,4.66 314,380.52557,212.75877,17.930084,42.458862,4.627 314,620.355,464.47617,15.515686,38.55768,4.62 314,589.9777,206.34053,27.234863,55.080948,4.573 314,628.0474,461.54117,15.545105,41.06537,4.47 314,382.51187,187.4796,26.724274,70.3932,4.46 314,536.5388,311.081,143.3504,340.21124,4.456 314,409.9621,143.25409,33.420746,81.574066,4.447 314,339.0892,229.53697,20.110382,35.284256,4.44 314,202.78906,215.19899,19.646332,33.46141,4.403 314,141.49652,172.04013,29.520416,72.33867,4.374 314,323.8485,223.42395,18.266235,33.94455,4.329 314,494.90424,229.34192,236.29694,515.17065,4.144 314,547.4906,246.57101,29.729614,69.94296,4.094 314,-2.397765,95.19854,30.253704,77.17597,4.016 314,491.02127,238.971,32.485138,76.370255,4.003 314,-9.188988,180.74825,28.190527,76.794785,3.969 314,577.33673,161.53438,47.33899,132.04399,3.953 314,499.2264,224.83879,38.36252,85.213455,3.924 314,526.1585,187.7843,27.506836,60.98018,3.894 314,586.122,-101.07764,75.14801,235.58821,3.89 314,363.62506,216.68228,17.204071,34.432983,3.887 314,24.017128,199.8772,27.805515,80.052246,3.877 314,209.61732,217.63382,19.639633,33.279816,3.859 314,1.0650051,164.97292,20.730074,58.12877,3.781 314,347.57153,231.35992,18.842834,33.883728,3.774 314,414.69803,189.5024,23.91452,68.89925,3.764 314,610.1444,215.86258,20.974976,36.873627,3.761 314,-4.5711145,256.36148,18.074585,47.507263,3.743 314,584.6244,202.86415,20.618774,43.572983,3.74 314,399.33447,192.53432,27.064758,69.810776,3.734 314,-9.965587,216.67607,38.528793,94.04851,3.723 314,10.491198,95.18168,58.503815,137.0037,3.647 314,544.74066,170.13751,48.841064,126.72748,3.638 314,444.7731,230.55075,32.25055,59.872803,3.634 314,556.6951,196.11479,29.606506,71.93025,3.599 314,-7.770474,120.31203,37.476696,101.80516,3.592 314,516.54913,222.556,38.8172,92.96521,3.583 315,524.9078,210.5635,32.564087,66.49704,96.867 315,622.8479,-33.415165,26.777466,75.44258,7.714 315,-5.8372283,-16.454693,18.375813,42.96433,7.684 315,384.00363,202.24835,18.94748,43.893692,7.021 315,-6.0091267,489.55402,18.414711,40.494263,7.009 315,627.268,-15.564546,16.900574,44.79258,6.849 315,-11.277604,-32.038914,30.267063,73.70352,6.769 315,-18.523972,-61.161636,59.080517,140.0102,6.405 315,-0.6927967,47.60506,27.573383,106.710464,6.275 315,613.43555,453.26483,39.416504,107.75702,6.226 315,626.6158,488.1798,20.745789,46.2063,6.199 315,-11.6009,477.85632,29.480938,62.590332,6.092 315,602.63525,-56.611263,53.47583,134.13474,5.823 315,-3.2619417,7.632633,33.05923,109.67209,5.814 315,5.857091,168.92374,27.827408,81.528564,5.727 315,614.12244,71.41109,26.497192,81.8127,5.616 315,437.62994,143.70728,30.458374,77.17374,5.536 315,1.794455,-15.508486,18.324793,41.749504,5.277 315,-72.73561,265.9024,200.46646,461.44476,5.186 315,454.40576,170.48093,27.64746,81.126434,5.125 315,-21.606169,402.21655,78.86791,175.42603,4.894 315,345.74896,224.55759,22.001404,41.02362,4.879 315,3.5483086,-14.801628,33.264175,69.32561,4.851 315,330.26587,219.60788,21.177002,40.376923,4.835 315,536.3689,309.33337,143.94757,343.66455,4.81 315,572.9453,92.60915,32.10089,87.93531,4.782 315,583.0674,410.93762,71.40436,177.38733,4.75 315,484.687,207.8408,38.50421,88.02162,4.741 315,322.44156,213.71089,19.831085,37.266068,4.7 315,546.5652,218.71707,39.87329,90.51639,4.594 315,585.9299,-99.728455,74.61145,230.82307,4.576 315,613.7932,-14.638454,28.128113,66.23112,4.565 315,339.3208,207.32733,19.794495,35.47429,4.529 315,337.9956,224.92546,21.557861,42.128006,4.496 315,314.51825,213.61887,19.318878,36.677658,4.487 315,362.46002,201.85884,19.476166,34.395782,4.485 315,494.3728,229.25558,237.18982,514.5094,4.471 315,-8.774937,170.60126,28.302065,77.217255,4.462 315,345.842,203.49849,20.787476,32.913635,4.29 315,594.7606,-45.62645,43.481018,96.381355,4.277 315,0.32768965,140.51035,27.044064,92.37479,4.134 315,0.3921032,180.13779,51.51687,119.14255,4.092 315,440.95825,168.15002,29.170197,80.67029,4.078 315,579.8069,124.306725,30.145569,71.15324,4.074 315,-36.904194,-116.42426,118.492325,272.90692,4.062 315,-8.234631,186.93117,37.322357,93.55672,4.046 315,514.8267,179.20485,43.772278,82.51274,4.044 315,540.7235,215.78067,23.71753,47.995636,4.041 315,618.25964,490.63632,20.803528,43.25009,4.04 315,612.1188,32.652252,27.188232,88.05994,4.03 315,353.8826,220.52783,21.296906,37.256775,4.026 315,619.11304,-14.371011,16.844666,41.176178,4.022 315,514.7712,221.21187,43.53766,100.25798,4.012 315,406.76196,170.20883,35.073395,76.84122,3.982 315,410.59546,186.89488,18.898895,49.605453,3.981 315,169.3724,213.50763,23.406845,46.96753,3.974 315,3.1168246,-6.4697304,51.36699,135.1396,3.955 315,-11.205166,0.86442566,34.45069,78.68231,3.94 315,547.7299,158.61368,27.64862,62.77127,3.912 315,628.53613,353.1786,16.192566,42.47177,3.894 316,21.486607,158.79973,27.902966,79.38966,10.322 316,4.821273,158.36224,28.552097,86.08876,9.955 316,0.87180495,93.37646,26.06834,101.312294,9.935 316,-6.10847,-16.573,18.099087,43.30316,8.254 316,622.4342,-33.50575,27.546875,77.872375,7.469 316,-6.016409,489.3302,18.299221,40.8974,6.849 316,567.0395,140.1572,34.15753,90.60672,6.704 316,626.6908,-20.501068,18.363281,50.704296,6.628 316,404.84705,189.62991,24.177643,66.74304,6.432 316,546.9673,103.795975,35.495605,76.083206,6.262 316,626.77594,488.585,20.605408,45.16446,6.194 316,-9.179368,464.02316,37.957214,93.181366,6.184 316,-11.177742,-32.186802,29.437372,74.80944,6.114 316,602.8388,-56.751644,52.953186,134.06407,5.46 316,453.1418,163.1549,31.486206,86.32045,5.293 316,0.8617461,165.94502,21.908335,67.4937,5.209 316,16.31914,97.30993,35.478622,85.684395,5.195 316,613.2053,453.82123,39.839844,108.24982,5.117 316,-72.86043,265.88498,200.46777,461.40836,5.031 316,-5.227108,157.47145,18.278648,53.712082,4.9 316,582.73535,411.25195,71.80786,177.50903,4.885 316,-16.795294,-62.35897,56.098457,148.62524,4.847 316,501.77887,162.07501,26.164185,71.31796,4.83 316,-18.133646,432.4735,54.960976,144.38043,4.822 316,361.73233,226.16452,36.545227,70.33899,4.817 316,536.28424,310.04913,143.42303,343.45306,4.807 316,-9.187842,144.43044,27.358551,81.179886,4.803 316,572.88336,-34.588036,29.941833,75.64485,4.796 316,-40.314564,367.78174,110.51932,274.53577,4.728 316,594.9393,-47.164677,43.264038,97.26501,4.674 316,1.7631763,-15.608334,17.565346,41.825512,4.599 316,585.6382,-102.49555,76.18646,235.35681,4.577 316,448.1386,188.00354,24.930084,69.76196,4.522 316,493.4682,228.0842,237.93164,514.50354,4.511 316,46.57776,193.28905,27.027206,67.3546,4.473 316,616.513,331.14874,26.526917,72.30057,4.454 316,618.0068,-20.97749,20.2099,49.281006,4.448 316,328.8998,215.67133,22.809418,43.78253,4.439 316,28.70523,174.01904,28.217224,77.32202,4.411 316,572.41705,196.40622,29.537354,73.73065,4.403 316,348.15936,217.56512,32.745483,69.90692,4.377 316,539.00226,66.64807,30.780579,83.31976,4.282 316,-9.492536,27.28791,30.212894,87.90059,4.216 316,91.50508,212.64243,21.481293,46.40384,4.213 316,487.66095,158.36284,28.053467,76.761475,4.173 316,489.40094,-178.53693,236.10931,418.82462,4.162 316,-7.6886883,186.32204,36.696083,95.27409,4.136 316,13.650231,130.11061,30.703651,98.58092,4.064 316,559.25354,-36.131695,28.29486,78.64414,4.05 316,13.987079,143.11429,52.33096,123.55203,4.038 316,332.05563,213.21718,32.472687,71.78233,4.027 316,579.1199,268.50146,35.216003,76.17145,4.005 316,503.81592,272.4703,24.054138,39.84323,3.951 316,-4.2638545,127.49729,19.453884,59.168602,3.909 316,547.0701,153.61096,34.866577,80.21164,3.891 317,432.33838,210.73018,19.508911,48.722946,64.584 317,418.60437,205.19951,20.962738,52.332687,17.558 317,613.79865,190.65457,26.010193,91.76935,10.334 317,623.5475,-33.128143,25.820312,73.55496,8.772 317,598.4688,164.65625,34.51239,98.2818,8.123 317,-10.816489,-32.830956,30.164715,77.88278,7.152 317,-5.8380194,489.24844,18.215134,41.052032,7.131 317,626.61035,489.429,20.875366,44.164825,6.737 317,627.46075,-16.37242,16.576721,45.86085,6.663 317,423.23807,201.84363,32.4263,69.13757,6.636 317,603.8925,-57.020027,52.761414,133.9806,6.35 317,-9.054609,463.31943,37.873962,94.96768,6.156 317,5.973439,114.07437,31.159046,93.2818,6.057 317,-6.067708,-17.794525,18.676968,45.52827,6.04 317,456.2488,203.3312,25.186188,66.564606,5.68 317,-17.418514,-62.5076,56.754276,146.00018,5.62 317,-5.601305,148.46384,19.5762,52.809814,5.468 317,3.548404,403.1284,16.979813,32.769226,5.33 317,-4.6478443,196.5151,18.734941,49.92993,5.323 317,-3.297787,398.98358,15.558468,35.85846,5.279 317,331.79562,212.14587,16.913788,30.025742,5.164 317,6.564808,153.6925,28.647419,86.45941,5.162 317,545.86755,63.199112,32.161133,71.25853,5.138 317,-0.7614064,194.37854,22.973995,69.637146,5.022 317,583.011,412.11465,71.7251,175.94724,5.005 317,-21.610823,402.09888,78.58462,175.28809,4.954 317,595.26434,-48.127438,42.421448,98.65168,4.936 317,558.7614,178.1403,26.393677,70.61891,4.925 317,536.21106,309.73016,144.15698,342.9981,4.894 317,-72.72922,266.75436,199.97125,460.25858,4.835 317,613.07733,453.54855,39.73639,109.447845,4.793 317,620.412,-16.445679,16.328186,41.465824,4.691 317,566.32434,166.47662,39.2558,81.36647,4.537 317,494.07623,227.68286,237.41547,514.4862,4.531 317,336.2982,219.93262,22.360413,39.589417,4.493 317,348.68167,215.55876,14.900543,27.61795,4.476 317,618.85846,492.60965,19.79779,40.241425,4.439 317,331.89813,213.64143,32.263733,71.64299,4.435 317,235.2042,217.30276,17.645386,30.617264,4.316 317,-0.69389224,133.431,28.137377,90.00055,4.274 317,361.7299,224.0896,21.955566,43.887787,4.261 317,620.21375,172.74326,27.743896,85.10898,4.259 317,355.1086,217.5946,33.466217,67.4429,4.208 317,582.6325,155.17902,40.238525,91.12955,4.14 317,338.83945,213.29398,15.838867,28.200272,4.127 317,-14.248954,169.70251,48.733208,133.71259,4.104 317,545.01984,170.68027,50.846985,105.29764,4.095 317,-5.2757597,171.59,18.378304,53.310028,4.064 317,91.572296,235.82217,31.441887,61.009155,4.028 317,9.015057,121.556625,57.780933,132.47513,3.988 317,11.977924,101.49698,31.524296,72.724,3.97 317,62.855473,206.8849,27.449856,58.72441,3.952 317,25.752048,107.51709,35.16079,65.8266,3.951 317,18.2438,120.59849,35.221832,78.282005,3.93 317,1.4897597,-17.097672,18.69193,45.89027,3.918 317,345.57983,219.32852,21.198273,39.576508,3.868 318,458.00656,206.8738,20.175842,46.920853,79.243 318,441.88654,201.49776,21.062256,51.16243,32.695 318,447.37762,196.46959,25.869293,54.479233,9.827 318,626.8949,-17.189438,17.439697,47.227497,8.379 318,3.4850323,205.62517,30.791136,66.89589,8.224 318,622.94867,-33.61308,26.111938,76.10316,8.104 318,-6.110178,489.62888,18.443556,40.55197,7.546 318,420.60605,188.89505,29.189636,62.731613,7.532 318,455.37958,198.77701,31.997559,67.54468,7.349 318,-11.531768,477.9111,29.468132,63.011017,6.204 318,432.32806,197.87955,27.88324,73.56497,6.131 318,626.6898,489.1531,21.02478,44.742462,6.061 318,522.53406,234.25502,34.453613,66.25258,5.966 318,-17.967083,-66.62578,56.56226,152.40854,5.906 318,-11.529963,-32.027466,30.191763,73.73549,5.789 318,472.4869,195.38339,27.248627,68.30963,5.716 318,-5.886841,-17.5062,17.661184,44.54245,5.567 318,618.87256,-15.920259,17.541626,43.51946,5.403 318,602.997,-56.069355,52.838562,133.7279,5.353 318,-73.3879,265.7456,201.44562,461.65295,5.22 318,-18.13005,431.437,54.92538,145.81482,5.189 318,235.65733,215.58842,18.095795,29.40155,5.18 318,616.347,185.47849,23.484436,68.33583,5.136 318,613.2874,453.2668,39.941223,109.67752,4.981 318,364.18777,206.78221,16.760834,30.345825,4.921 318,583.0248,411.13446,71.75037,177.1831,4.907 318,536.20087,310.9242,143.69019,342.39136,4.841 318,-6.0513725,202.27533,19.596256,50.35637,4.785 318,236.72556,203.44647,14.398788,25.194748,4.705 318,-40.074696,367.38644,110.40146,274.41678,4.66 318,244.16458,217.04254,16.983063,30.081268,4.607 318,370.6941,205.76813,17.046112,34.259796,4.601 318,79.388725,174.24356,27.265945,68.611786,4.483 318,494.03387,227.47183,237.47113,514.7084,4.482 318,253.54591,204.50375,13.759506,26.866882,4.472 318,-5.335108,181.19156,18.543177,49.950424,4.443 318,-15.014176,161.10892,49.566692,128.1951,4.441 318,11.089292,173.92348,54.383892,107.70332,4.425 318,357.77185,213.22202,30.730988,60.7153,4.357 318,244.65254,203.74391,14.320511,26.654404,4.352 318,-9.535042,213.24097,38.517662,97.83435,4.246 318,603.3715,-14.954672,16.357666,39.22629,4.218 318,92.332,175.29523,28.206207,72.1653,4.163 318,2.3297703,490.6562,18.816145,39.321594,4.139 318,544.3859,251.6228,22.271912,38.8963,4.128 318,128.72083,192.6673,20.145233,49.755493,4.101 318,615.11224,29.45573,26.16986,82.35686,4.096 318,261.08093,202.10583,13.562012,23.293747,4.089 318,281.89066,203.17627,19.610168,34.460297,4.058 318,186.86485,214.16563,19.129593,26.54634,3.98 318,227.39424,214.72067,18.59816,29.25801,3.966 318,2.5550783,-15.679432,16.53104,41.409836,3.929 318,444.3503,235.77231,32.149048,63.849792,3.902 318,618.97516,492.48953,20.021667,41.40811,3.874 318,-9.364384,139.89423,29.869331,83.37274,3.871 318,558.5313,183.5281,27.543823,60.18416,3.868 318,18.513535,205.72302,31.136715,59.34912,3.865 318,616.60657,-17.356133,25.300537,67.2127,3.856 318,606.73816,-35.33594,27.552673,78.1025,3.85 318,269.53656,206.63824,15.35553,28.542114,3.848 318,178.41577,211.40129,19.843384,28.760284,3.822 319,479.9995,197.711,39.339417,65.93442,33.507 319,469.87347,202.35251,32.7782,70.37619,8.601 319,-6.1969643,489.24066,18.666138,41.06244,6.992 319,611.0023,186.34819,26.790466,80.53291,6.472 319,598.8073,178.25769,32.757507,105.73886,6.354 319,-11.640286,477.80557,29.37362,63.13864,6.184 319,50.052776,200.38892,21.358997,49.008224,6.092 319,2.0641274,185.12463,19.29061,63.757645,6.078 319,-17.865656,-66.941864,56.15473,151.44223,5.967 319,626.78455,488.72586,20.442566,45.128387,5.94 319,610.97437,-48.083424,41.333008,100.42349,5.922 319,627.0713,-19.184074,17.313538,48.58573,5.827 319,388.50064,209.3951,17.361938,37.064545,5.554 319,456.2723,202.25948,29.286285,75.0406,5.483 319,42.01756,202.87022,22.897556,53.817337,5.458 319,-5.745239,-17.8016,17.407816,42.50161,5.427 319,461.52164,193.77048,55.745758,128.57898,5.355 319,613.20667,453.8624,39.931458,107.92062,5.234 319,-11.36682,-32.531185,29.63554,72.81111,5.169 319,235.39049,215.98898,17.708572,28.903046,5.159 319,585.1085,178.93307,34.50769,87.594635,5.118 319,582.62744,412.10287,72.0249,176.33517,5.015 319,535.7337,310.3595,144.4588,343.69647,4.992 319,219.93095,215.31416,16.745163,28.741547,4.938 319,202.94014,213.03973,18.289948,30.435654,4.933 319,608.79565,176.99081,22.315186,53.79361,4.827 319,565.1867,177.5672,35.022827,83.61456,4.8 319,400.53635,100.0386,22.792389,56.054085,4.787 319,-12.661087,156.12823,46.73226,133.43878,4.763 319,227.38477,215.09917,17.471436,28.46318,4.726 319,-21.45095,403.5787,78.86143,174.08163,4.715 319,-72.96591,266.76764,200.3324,460.53058,4.706 319,-40.61241,367.4146,110.722115,276.36346,4.705 319,514.44836,206.56613,42.401672,85.248566,4.702 319,282.22345,207.15991,20.490234,34.153564,4.702 319,445.16986,202.56882,29.406677,73.38895,4.701 319,370.026,212.37302,18.946136,34.30493,4.686 319,6.6370096,176.3245,26.390793,75.59816,4.65 319,30.924797,190.97993,27.4617,70.85292,4.575 319,493.35626,227.90436,238.04633,513.34406,4.524 319,243.9154,216.73302,17.590607,30.255219,4.487 319,545.9472,176.47055,46.817932,108.95865,4.408 319,363.98624,216.67569,32.448456,62.18112,4.393 319,251.97107,218.34456,17.140076,28.808975,4.381 319,612.1669,296.6206,38.546875,111.76193,4.365 319,147.23372,190.24982,30.918533,54.237366,4.324 319,383.6356,210.0414,26.621094,53.754135,4.304 319,2.201327,211.4198,22.200953,55.209656,4.301 319,211.31927,213.92361,17.740753,29.72757,4.297 319,-4.3019013,175.60771,18.214024,48.99289,4.286 319,274.6609,204.6586,21.30191,32.062668,4.246 319,22.056652,181.32962,25.649792,71.402725,4.221 319,245.1254,206.81055,14.597137,26.78505,4.189 319,621.3418,183.60645,27.669312,76.814545,4.129 320,516.645,207.961,32.795227,72.861694,93.621 320,540.50494,208.67249,33.113586,79.25952,47.221 320,17.263866,206.74452,19.82209,47.188385,9.747 320,435.26382,101.11982,19.13559,54.9739,7.891 320,627.3058,-15.871826,17.223389,42.61656,7.535 320,2.5399327,204.3953,20.396732,52.88025,7.418 320,-4.7468553,198.50189,17.705336,49.081543,6.762 320,8.282051,179.80469,29.638763,76.49356,6.674 320,623.30304,-34.804626,26.539368,74.30508,6.526 320,602.7488,-55.194847,53.843994,131.29906,6.275 320,-17.884357,-67.005455,56.32732,151.90594,6.192 320,-6.647011,489.64267,19.190008,43.2493,5.77 320,397.35913,210.72757,14.960358,28.85344,5.743 320,-8.725502,464.57556,37.393105,92.625854,5.681 320,0.05320549,166.02582,28.509459,80.09717,5.675 320,-9.331283,187.31184,28.059685,69.6382,5.673 320,621.8008,477.46484,29.500122,67.09119,5.655 320,618.8776,-14.707365,17.072021,38.674553,5.444 320,549.48126,228.69514,29.923645,82.72557,5.413 320,-11.377934,-32.55825,29.720093,72.90974,5.305 320,-17.850197,435.28305,55.834095,140.54855,5.292 320,-5.8078575,-17.9276,17.478844,42.691307,5.291 320,603.19055,430.72324,55.858032,145.0303,5.041 320,282.44052,205.19395,20.919342,35.570114,4.954 320,-73.194214,266.3114,200.4786,461.0056,4.853 320,612.40814,-17.133251,29.373169,67.01779,4.85 320,429.65073,68.717636,30.657654,73.28722,4.78 320,536.10394,309.01993,144.2268,342.30075,4.779 320,-6.2675614,175.97847,19.302551,48.529343,4.735 320,594.72705,-43.006397,43.190125,93.19794,4.713 320,484.77963,209.23123,38.046356,85.06503,4.702 320,502.93198,207.65552,33.690765,79.137054,4.702 320,20.83763,198.50911,25.493998,61.0811,4.669 320,547.5582,116.91986,31.687988,90.87161,4.66 320,-39.52124,369.86343,109.66457,272.0029,4.629 320,219.36348,215.9635,18.577957,28.852905,4.522 320,244.06271,210.42615,16.371124,29.05664,4.387 320,252.0886,209.7702,16.53949,29.149597,4.369 320,235.21649,217.94652,18.71637,31.163834,4.338 320,186.60966,210.47137,19.78273,34.05771,4.327 320,494.72424,229.77097,237.80432,514.51416,4.319 320,6.231436,153.69643,29.94528,75.22212,4.298 320,-14.2080765,127.08857,50.186913,137.69229,4.292 320,612.5337,193.81947,28.034607,94.03679,4.281 320,582.2407,201.66205,40.20984,104.26422,4.274 320,3.9879084,204.8594,36.480576,79.45322,4.243 320,410.69278,235.31088,22.626556,37.001984,4.217 320,621.25116,348.58063,16.953247,43.275635,4.203 320,211.10954,215.29128,18.457382,29.818115,4.178 320,617.1781,154.26486,22.430847,50.728653,4.089 320,3.8419223,228.22119,40.033066,115.55347,4.07 320,378.7338,206.5638,17.510864,31.617569,4.057 321,576.6273,190.3966,33.326843,84.418396,91.175 321,606.6505,190.24399,30.481262,83.71002,67.999 321,619.2551,185.84863,26.336426,79.61322,8.526 321,466.20636,173.70384,17.687988,40.92105,7.194 321,-5.9882946,489.41556,18.313717,40.66159,7.109 321,622.50555,-33.985558,27.495728,76.45589,6.97 321,626.8958,488.6539,20.253601,44.293854,6.639 321,-17.638956,-64.875626,57.02069,150.62126,6.39 321,-8.673248,464.72543,37.34928,92.5148,5.992 321,626.68555,-20.039152,18.685547,48.707207,5.959 321,313.30417,178.90051,20.737152,40.46695,5.717 321,16.558168,94.39761,38.35105,79.88025,5.496 321,448.48798,222.2544,19.49292,37.43341,5.449 321,404.78735,179.89595,15.473267,30.772263,5.434 321,602.7669,-56.066776,52.799988,136.16878,5.101 321,-5.9555626,-18.30632,17.862762,42.024807,5.087 321,582.9582,411.9135,71.763794,176.27106,5.07 321,-11.647935,-31.87213,29.892658,70.180565,5.06 321,-17.264343,435.75153,54.28132,141.66473,5.034 321,613.2992,453.9309,39.507446,107.72815,5.012 321,595.33514,207.66235,39.995605,108.31848,4.938 321,-72.43074,267.39246,199.45375,458.63953,4.918 321,536.1158,309.33063,143.10968,344.67352,4.838 321,-39.871872,368.63443,109.85729,273.71896,4.808 321,598.4035,184.13367,30.155212,73.534424,4.758 321,570.2346,196.68655,57.78528,153.66696,4.74 321,612.2036,-23.709291,29.591553,77.88513,4.641 321,411.0141,180.22668,14.879639,29.28653,4.544 321,-11.114986,103.607315,31.3856,74.23448,4.468 321,493.09912,229.70203,238.51147,514.1614,4.327 321,444.026,211.23917,29.521118,61.28412,4.325 321,-6.203267,102.65399,20.846756,47.01149,4.253 321,451.4229,228.86176,31.147125,67.07056,4.229 321,503.42255,153.94601,25.49231,71.26155,4.223 321,604.11993,206.0305,50.154114,135.95247,4.193 321,3.907535,72.69525,34.3103,91.43466,4.104 321,0.65116525,109.40221,29.411705,78.49361,4.102 321,243.4107,184.27034,18.912354,36.416534,4.081 321,235.41472,183.67708,18.818588,36.542892,4.025 321,601.25824,148.37704,47.543335,121.30167,4.017 321,482.3087,165.42381,19.25821,45.491364,3.991 321,337.99646,181.82764,19.38327,37.777863,3.97 321,522.9669,-11.535621,15.84198,37.740734,3.95 321,596.5903,300.66415,31.496948,65.115204,3.925 321,614.08154,213.75754,25.609802,77.22543,3.923 321,618.8734,490.595,19.58435,41.355316,3.881 321,507.99786,168.5501,28.120544,82.56004,3.853 321,586.9102,-103.72056,74.15051,239.17868,3.852 321,488.68475,-175.47266,236.50824,413.86676,3.813 322,472.04242,211.37767,20.75174,45.452072,40.872 322,384.48074,215.35919,22.790741,42.735962,8.234 322,539.5077,189.42075,25.684082,67.668,7.406 322,418.30585,213.41351,18.832825,34.867294,7.182 322,-5.739882,489.86954,17.778109,39.759308,6.888 322,622.3154,-34.61164,27.498901,75.68126,6.265 322,626.3177,487.72125,21.537415,46.149902,6.169 322,-17.778687,-67.21004,56.34413,152.40178,6.158 322,531.27985,151.115,31.013489,76.86421,5.858 322,210.01038,214.9997,19.798798,30.342682,5.757 322,-9.2313795,463.7234,37.83625,93.88446,5.745 322,-5.7217145,-17.816002,17.410688,42.622997,5.395 322,602.92505,-54.858353,52.653564,132.97229,5.284 322,-11.099037,478.31287,28.387936,62.00238,5.271 322,614.8898,188.49255,25.692993,99.29016,5.25 322,243.40152,215.78242,17.971222,32.108444,5.221 322,578.82916,-5.2668266,31.40039,64.36033,5.212 322,626.65704,-20.100758,18.170837,48.111115,5.199 322,226.63297,216.39584,18.822906,30.362213,5.186 322,-11.310691,-32.531075,29.570164,72.95475,5.126 322,615.375,248.47437,24.860352,94.921936,5.102 322,-72.62657,265.61792,200.40254,461.3313,5.099 322,235.51767,217.35493,17.689331,29.728851,5.095 322,582.9666,412.1093,71.844666,176.00458,5.092 322,203.40446,216.05832,17.924057,30.015228,4.994 322,425.89648,209.7281,18.326508,35.303345,4.93 322,251.68079,217.55792,17.363739,30.511414,4.926 322,-21.55806,402.606,78.831345,175.15366,4.914 322,218.17722,216.26831,18.793335,29.323364,4.91 322,613.5278,453.37296,39.359436,108.02121,4.835 322,536.4281,310.06396,142.79706,342.99225,4.799 322,544.29803,222.33101,21.877686,38.79454,4.581 322,612.3125,-23.297768,29.414429,72.204384,4.501 322,370.18512,219.84898,21.55371,38.356125,4.495 322,557.44806,174.96863,54.663696,115.54587,4.492 322,578.57983,200.12016,49.79474,139.5724,4.408 322,390.5354,223.14087,23.675415,40.187653,4.378 322,618.1322,489.92822,21.062744,43.25775,4.362 322,432.66724,214.15897,19.51065,35.542374,4.319 322,415.524,192.71062,26.307037,56.666412,4.303 322,259.68835,216.80692,17.444855,31.025269,4.253 322,493.212,228.74564,238.1661,513.91626,4.226 322,518.76074,-32.45459,28.271301,75.283356,4.189 322,202.97049,210.75293,31.603165,56.08539,4.136 322,593.96375,-44.689423,43.845398,98.03917,4.121 322,1.3676798,166.60092,21.659454,57.719543,4.103 322,612.9905,260.63593,37.288452,119.37555,4.078 322,586.12305,-102.68057,75.00244,237.47821,4.063 322,-0.037509203,133.51503,27.447002,81.49483,4.039 322,405.53024,209.60884,30.852997,54.026047,3.98 322,596.73346,168.49304,42.68805,166.7464,3.937 322,605.172,165.73459,30.26538,83.58263,3.933 322,-5.4754086,170.58757,18.830265,51.5726,3.929 322,592.2309,234.58679,49.08191,157.42664,3.901 322,616.88916,163.93149,20.956787,56.97545,3.865 322,521.8191,-14.86152,18.69226,42.91143,3.854 322,512.9979,225.3974,21.025635,39.387604,3.846 322,585.51044,-19.426693,19.448425,48.146828,3.802 322,266.81482,217.85614,18.052094,29.987915,3.784 322,266.24823,206.0428,17.665527,30.659225,3.768 322,109.23486,203.34271,27.593124,57.391968,3.734 322,418.0622,213.44197,32.47751,54.03926,3.73 322,567.2384,-34.433937,27.674927,81.06317,3.729 322,612.38684,315.8031,37.980713,106.24658,3.711 322,518.176,198.81497,27.087097,59.993347,3.702 323,484.87195,213.72084,22.529785,43.7527,55.88 323,435.15103,212.38286,17.615265,37.894653,31.947 323,592.27264,182.8439,26.390442,77.1994,10.725 323,392.3334,217.22926,24.241364,43.82332,9.454 323,441.75507,210.00171,17.867493,36.802032,9.406 323,4.70306,177.80286,27.840256,79.13678,7.13 323,-6.018994,489.7175,18.300383,40.604218,6.762 323,-9.170041,463.25253,37.78775,94.5867,6.288 323,534.00134,208.56876,26.370605,45.337555,6.058 323,-17.781116,-66.82026,56.647453,152.19194,6.005 323,627.4505,-17.598867,16.965881,45.599712,5.864 323,-11.287642,478.23166,28.808681,62.4805,5.464 323,-5.8073826,-17.791433,17.422304,42.361267,5.335 323,-11.455866,-32.563927,29.747631,72.70028,5.293 323,626.4063,487.0321,21.237976,47.23346,5.282 323,623.3684,-34.586227,26.103027,74.38597,5.271 323,10.092887,99.02103,36.91078,75.48718,5.254 323,12.609944,162.80054,30.001259,81.11786,5.137 323,582.63617,414.1436,71.92383,174.14462,5.116 323,234.80478,217.57072,18.274506,29.453644,5.028 323,-73.22013,266.39847,200.75534,461.40305,4.953 323,612.58716,454.4981,40.11432,107.279724,4.911 323,210.54675,213.25455,19.852142,29.746414,4.88 323,242.71666,216.55344,18.247147,31.045578,4.879 323,-21.629955,402.8164,78.995125,175.15686,4.812 323,449.51788,208.6657,17.159668,35.943634,4.762 323,603.7545,-56.697372,52.691772,138.41597,4.758 323,-4.665944,197.06152,18.032074,48.15593,4.739 323,536.0188,310.4433,144.45331,341.77496,4.675 323,585.7363,161.8087,26.165344,78.623276,4.623 323,409.38928,209.16277,17.04071,35.125168,4.621 323,-1.8952978,235.99144,27.74517,73.02434,4.541 323,-1.0908103,94.75276,28.391409,75.288345,4.533 323,482.41483,218.32803,32.001617,62.237732,4.376 323,494.15286,228.52405,236.92917,514.6499,4.376 323,-10.459475,152.7215,30.272093,77.74939,4.371 323,227.1885,223.54323,19.588623,31.950623,4.362 323,398.98465,229.8685,24.580688,39.46927,4.329 323,-5.290638,115.16635,19.7448,50.814484,4.304 323,203.06241,213.39479,19.689453,30.661896,4.278 323,28.06072,168.07076,29.757769,72.00127,4.266 323,251.13095,218.12047,18.10553,29.702408,4.2 323,424.46985,210.11769,27.04956,54.074753,4.184 323,194.0328,213.37228,19.643112,31.219437,4.174 323,-5.760975,151.01825,18.615067,46.535065,4.132 323,-15.086293,171.22388,50.440865,133.96411,4.121 323,79.44422,191.87549,27.693108,62.697784,4.113 323,565.21826,176.56664,25.807251,66.842255,4.032 323,399.92108,209.1995,20.890839,45.11429,4.008 323,519.60693,193.64168,32.23352,62.10492,3.977 323,403.3114,212.11473,28.726868,58.251205,3.927 323,219.11957,221.81706,18.733154,30.672623,3.911 323,25.296972,133.65463,35.343277,80.560394,3.909 323,259.59003,217.97548,17.948456,29.725815,3.852 323,387.34076,225.29391,33.21408,58.128784,3.843 323,-8.802982,183.621,28.549635,71.35347,3.812 323,3.9024746,244.67096,39.201015,114.77075,3.807 323,387.58887,211.88474,20.727753,43.01381,3.781 323,-11.35167,118.09419,30.227524,75.5511,3.754 323,508.78354,189.26596,28.564667,60.692535,3.747 324,515.74774,218.25346,19.939392,47.6689,75.595 324,465.84195,216.11548,18.73471,40.487244,38.865 324,420.52127,210.10117,19.203766,53.547516,37.084 324,590.69403,201.4909,29.320068,61.811707,20.524 324,472.03064,211.89641,19.047546,42.13719,14.166 324,535.4369,213.6402,21.386108,43.74945,12.285 324,600.78784,196.73877,21.799744,50.920105,10.127 324,588.1207,199.11205,19.375061,47.589676,8.785 324,460.17676,221.9611,18.386108,40.005447,7.731 324,2.2535455,121.69328,32.275234,89.46269,7.66 324,-5.977884,489.37402,18.264112,40.870605,6.457 324,344.65564,227.87485,21.158997,39.54608,6.317 324,626.51056,487.57132,21.176758,46.012787,6.224 324,6.2587333,206.7091,30.636244,75.645935,6.184 324,-17.66279,-66.903656,56.72937,152.68459,6.015 324,627.42804,-17.58619,16.969666,45.54373,5.924 324,-9.157868,464.59207,37.88684,92.5574,5.91 324,424.05856,225.49405,22.578949,48.90445,5.766 324,-11.455731,-32.578773,29.773727,72.770164,5.494 324,605.06494,190.75697,27.53247,64.79335,5.394 324,614.5866,177.5585,23.740234,71.20798,5.386 324,529.8092,219.26431,20.340332,43.16693,5.358 324,623.37866,-34.69319,26.089417,74.527695,5.325 324,-5.849983,-17.88417,17.508108,42.50926,5.309 324,452.8753,221.22751,30.33908,63.314972,5.271 324,583.1289,411.67444,71.62695,176.38245,5.177 324,-72.8512,265.628,200.48363,461.485,5.062 324,535.9673,308.59402,145.0871,342.92026,5.006 324,22.328686,199.97052,29.929699,75.51727,4.999 324,-21.602573,402.66623,78.790855,175.41745,4.938 324,618.46735,489.51416,20.293274,43.0979,4.877 324,210.46649,212.83154,21.305573,33.21399,4.856 324,613.19635,454.1286,39.358948,107.20398,4.852 324,579.0725,198.99222,19.213745,44.420013,4.849 324,603.80304,-56.763107,52.661682,137.38638,4.709 324,494.5897,228.521,236.37656,514.78076,4.701 324,89.719376,221.44977,35.81452,59.911133,4.665 324,33.786118,208.03787,31.115425,70.38583,4.525 324,107.78279,207.73875,20.312363,39.272964,4.486 324,73.33122,218.51407,21.699463,41.059753,4.456 324,595.1625,195.78955,16.698853,38.881058,4.452 324,65.0302,216.9698,22.189514,44.990097,4.428 324,234.97168,221.95651,18.3096,30.10669,4.406 324,427.8167,232.46658,33.266083,59.86612,4.392 324,434.72702,209.19498,15.674622,38.666443,4.392 324,144.66602,206.98082,23.328644,43.04515,4.32 324,-11.438279,101.23491,34.330643,76.0367,4.315 324,-6.6154003,197.27914,36.255676,98.98819,4.26 325,568.82074,218.29819,27.23175,58.817963,77.659 325,498.75385,214.6267,21.251404,52.774734,44.13 325,513.3694,214.18602,19.317383,49.12068,32.334 325,609.18427,204.21368,19.740356,57.385376,11.446 325,620.7897,189.0926,15.707153,43.7258,9.278 325,457.75244,215.14195,17.814636,40.164825,8.25 325,503.50467,204.38678,25.249542,57.833313,7.659 325,481.00378,210.99677,24.272339,66.042786,6.904 325,-6.0190926,489.29047,18.566826,40.734314,6.44 325,-17.798054,-66.77203,56.85601,153.31044,6.308 325,380.4205,231.21732,17.32077,35.413666,5.99 325,627.4499,-17.5821,16.953674,45.63999,5.922 325,616.44293,166.41824,23.467407,72.47591,5.901 325,489.4043,210.0055,26.48169,68.84271,5.87 325,-11.765497,478.21472,30.043627,62.22223,5.853 325,626.7263,488.45975,20.603394,45.20926,5.565 325,-11.339209,-32.34004,29.654945,72.69793,5.4 325,-5.824079,-18.00276,17.497093,42.7913,5.31 325,544.35065,127.429565,37.251892,75.9321,5.284 325,623.411,-34.755527,26.056885,74.64671,5.267 325,617.00635,199.89488,18.764465,54.91223,5.261 325,519.0606,219.79082,21.526672,48.98268,5.251 325,583.18384,412.25854,71.66382,176.10474,5.108 325,-72.787895,265.84442,200.65121,461.659,5.078 325,536.0539,309.1231,144.62408,341.42334,5.055 325,-21.412949,403.634,78.55476,174.5972,5.051 325,453.7195,218.51526,27.116333,60.59372,5.012 325,613.2482,454.62372,39.185852,107.431946,5.008 325,340.0039,212.53189,16.641357,32.195786,4.963 325,489.78143,157.15202,17.565521,42.49794,4.96 325,450.93704,210.67357,17.307251,42.626038,4.915 325,603.7376,-56.413998,52.562744,138.56609,4.838 325,430.8533,247.00449,23.344543,43.391174,4.788 325,493.4882,224.1228,29.014618,78.6344,4.758 325,482.50748,155.26332,17.667236,46.733643,4.747 325,494.5514,228.85193,237.3274,514.0527,4.686 325,371.18646,234.8767,21.76056,40.704727,4.685 325,436.90442,215.67482,16.186981,39.76523,4.684 325,625.7783,179.56941,17.334473,47.60312,4.622 325,552.3327,211.17711,30.536194,65.57979,4.598 325,531.3368,135.04198,34.828003,86.32732,4.558 325,88.30534,212.66068,20.98674,40.08899,4.55 325,0.97501993,178.43704,51.442123,120.04086,4.532 325,507.2215,228.62212,30.595764,73.7903,4.332 325,469.92496,158.57126,27.414276,69.9675,4.286 325,385.24838,236.1622,18.820496,38.791138,4.268 325,470.12244,230.74722,30.06131,65.73306,4.241 325,-4.4221554,411.09937,15.947514,37.933014,4.185 326,545.6719,217.25435,22.624939,53.550858,77.77 326,480.3299,213.83939,23.059113,63.937927,47.211 326,560.78937,209.12172,21.94049,56.432236,12.89 326,568.938,200.54863,22.009766,59.40068,12.506 326,488.35284,210.41533,20.317017,48.87169,11.74 326,609.8685,212.46014,20.923645,53.02655,9.515 326,445.88516,210.5102,27.075348,71.472534,8.109 326,549.13916,196.57051,28.146057,68.6599,7.545 326,463.06534,210.2433,26.731476,72.44878,7.415 326,574.6129,185.45648,24.430725,67.4243,7.35 326,50.172153,208.50772,21.148968,43.647705,7.345 326,491.36063,212.99492,27.712677,68.12544,7.157 326,627.3138,-15.798271,16.888,44.878586,7.149 326,623.58844,-33.884766,25.859192,76.50756,6.686 326,421.26648,213.03874,29.67871,69.47508,6.65 326,-17.668068,-65.02072,56.987305,150.01427,6.637 326,574.0721,122.36978,28.400208,70.206665,6.575 326,-5.8923483,489.83105,18.198704,40.427185,6.496 326,457.47577,215.43208,20.776367,55.559525,6.466 326,-9.057813,465.05002,37.737793,92.18533,6.219 326,522.9664,202.6753,16.613281,36.411728,6.176 326,603.1116,-53.923595,52.765137,133.06752,6.125 326,413.3227,231.92192,35.056976,69.04625,5.783 326,626.4664,487.39453,20.997986,46.065002,5.535 326,496.5836,207.16037,18.509796,47.826828,5.485 326,-11.361076,-32.362263,29.68243,73.455925,5.321 326,448.80853,203.69173,20.167572,50.296906,5.3 326,-5.7981052,-18.129967,17.538576,43.195156,5.187 326,612.7399,455.7302,40.012695,106.71951,5.178 326,583.4258,204.63422,33.234863,86.41461,5.112 326,-17.67823,435.563,54.374363,142.3186,5.092 326,582.79663,412.98038,72.25836,175.32224,5.074 326,535.9385,310.19235,144.35266,341.32608,4.995 326,-72.728966,265.85376,200.42015,461.0326,4.99 326,541.938,224.31859,30.276123,72.69801,4.986 326,503.0185,203.92805,31.83545,85.540695,4.94 326,608.9179,199.17752,20.575562,43.385864,4.903 326,-40.202377,367.64026,110.36165,274.89075,4.821 326,593.4273,143.3236,20.871582,43.4543,4.748 326,434.64633,219.31932,30.92154,71.03737,4.726 326,585.8822,140.52412,20.24469,45.32509,4.684 327,608.5685,219.85324,21.883606,52.939697,87.158 327,517.47107,210.14806,26.784729,60.66957,85.587 327,592.3508,218.97809,21.371948,53.271637,73.191 327,498.03186,215.42357,20.371155,41.017838,8.322 327,574.6925,213.2326,31.788452,69.46533,8.22 327,505.46783,216.19064,21.71289,45.070557,7.892 327,515.75226,207.75014,37.58191,97.33424,7.673 327,586.35925,209.44064,20.751892,53.607056,7.574 327,613.06836,453.093,39.669006,108.88602,7.33 327,602.79425,214.02556,20.62976,52.100815,7.161 327,-11.5861225,478.37988,29.731531,61.905396,7.133 327,-6.187176,489.0728,18.869438,41.570618,7.069 327,550.76245,209.90341,35.558105,84.935974,7.044 327,596.9719,211.57787,35.62549,97.47359,6.939 327,622.92505,-32.808826,26.854492,75.46654,6.753 327,586.9999,212.08913,32.620422,77.74663,6.643 327,-17.709166,-65.870316,56.60607,152.7392,6.569 327,454.2233,129.07195,30.576172,80.91098,6.536 327,627.1382,-18.103722,17.91455,47.57213,6.471 327,494.0186,219.54602,29.28415,71.236145,6.311 327,563.8958,220.699,30.701294,79.97009,6.301 327,447.99405,205.89597,24.170685,62.820587,6.188 327,423.1924,192.47183,27.631805,65.24045,6.078 327,538.95337,242.44975,35.4032,72.18385,5.968 327,602.78906,-56.841278,52.965576,133.69293,5.82 327,626.2733,221.58759,19.41687,48.05722,5.761 327,442.25632,200.43309,19.973663,49.597992,5.599 327,616.33984,210.6904,19.868164,49.313873,5.524 327,433.45996,182.69188,23.274536,70.905136,5.5 327,371.01498,218.6106,21.190369,36.376938,5.382 327,626.2141,487.35153,21.268066,46.838165,5.374 327,-5.7857876,-17.958883,17.45367,42.916363,5.336 327,556.61536,244.91238,30.915161,77.09604,5.318 327,-11.359848,-32.231377,29.572487,72.66489,5.22 327,565.51483,102.84587,31.97821,73.12535,5.18 327,-72.523415,265.69165,199.87787,461.99756,5.072 327,412.0266,193.9966,26.549408,61.779617,5.046 327,515.29626,97.52526,29.325806,72.4625,5.014 327,-17.63154,438.64532,55.085632,138.80206,4.947 327,578.272,110.00859,34.096924,84.148865,4.887 327,583.11926,413.27808,71.89691,174.5498,4.873 327,345.9308,213.89812,21.035004,32.56938,4.86 327,587.21265,233.3592,20.366455,49.166885,4.849 327,268.33926,212.10295,15.2968445,28.983246,4.833 327,535.6573,309.52704,144.49896,342.69983,4.746 327,530.49536,208.94897,37.43152,85.236176,4.735 327,-40.07267,369.3439,109.91067,274.02658,4.728 328,558.8051,210.16402,32.213196,66.461655,97.505 328,458.27875,183.53247,24.210846,73.1543,59.563 328,420.92554,191.14569,24.215302,70.185,12.533 328,620.0884,194.6459,19.893555,68.89557,12.011 328,534.1706,206.02634,28.459534,68.966095,10.163 328,508.0168,218.575,18.246307,34.03665,7.189 328,447.52063,165.843,28.013885,84.41635,7.16 328,626.9373,-16.893436,17.671509,44.005035,7.075 328,451.99988,198.95459,21.377747,61.97174,7.067 328,430.92834,169.15822,28.020355,76.48897,6.832 328,622.7043,-34.390427,27.111267,75.45797,6.68 328,492.72845,214.3293,16.213928,35.75566,6.509 328,455.40723,212.67712,27.11615,69.26251,6.495 328,500.84247,216.94519,16.622253,34.39055,6.476 328,-5.5588202,488.77417,17.83139,41.725952,6.356 328,512.9812,218.59413,21.190125,39.533005,6.197 328,626.81287,488.38303,20.615662,45.00595,6.035 328,-17.903662,-65.75246,56.579697,151.41556,6.031 328,602.76807,-55.374622,53.271973,133.03603,5.698 328,-10.924691,474.81436,28.379662,66.53616,5.667 328,626.03436,192.1437,18.283752,52.792465,5.349 328,-5.8265276,-17.900066,17.514435,42.47499,5.283 328,-11.392403,-32.568558,29.718391,72.900925,5.219 328,582.93164,412.34384,71.67352,175.63449,5.201 328,613.2043,-15.892145,29.438477,69.40387,5.188 328,465.48236,200.2911,26.856201,67.447815,5.178 328,536.07404,308.97052,144.47394,344.3637,5.151 328,443.4943,196.3002,19.200348,53.871277,5.149 328,536.3616,8.003544,21.72992,47.48703,5.106 328,-2.4801922,62.740353,25.853577,94.234985,5.022 328,-21.831516,402.53226,78.994156,175.59549,4.988 328,1.980874,219.83034,18.79626,39.56987,4.961 328,-72.37509,266.18335,199.54501,460.4182,4.958 328,618.72424,-15.675662,18.005615,40.323154,4.942 328,445.6844,101.737854,30.710815,87.17078,4.888 328,613.33875,453.9934,39.62567,108.276245,4.871 328,361.93295,224.08281,21.608154,38.86,4.83 328,494.42505,229.00128,236.83868,514.217,4.744 328,48.504234,226.93512,22.444366,36.783203,4.73 328,-0.12189388,198.28905,21.28513,49.57869,4.651 328,524.37366,126.497665,33.291626,86.02431,4.624 328,73.468,226.95952,21.438461,37.029373,4.615 329,480.82626,208.86804,19.469513,43.117996,21.416 329,544.361,218.04083,24.743652,68.98248,13.156 329,455.2464,179.5877,28.03479,72.77141,9.951 329,508.8086,164.78947,28.700195,89.092316,8.745 329,590.6087,187.0763,24.568848,63.617554,8.044 329,506.9602,136.86581,32.45996,83.39256,7.258 329,-5.6426706,489.4017,18.0946,41.91159,7.054 329,436.88434,189.80302,26.330261,78.71236,6.908 329,603.65784,149.77948,33.460144,75.89671,6.859 329,622.71545,-34.804672,26.647095,73.554214,6.755 329,424.2818,190.77545,27.861816,74.134155,6.463 329,626.51276,488.50937,21.289612,45.42929,6.361 329,513.8309,197.3334,28.753235,71.85083,6.354 329,596.27386,131.99297,34.617004,71.61952,6.343 329,570.96655,114.78772,33.076355,79.58093,6.335 329,490.2521,216.49875,18.432129,45.26581,6.307 329,469.35754,183.77805,27.520233,64.01152,6.196 329,-9.109488,464.4627,37.79827,91.840515,5.974 329,603.7184,-54.95303,52.720337,133.88667,5.932 329,466.8272,209.17433,19.065094,46.99919,5.929 329,615.76447,131.16173,22.826538,52.638885,5.879 329,-17.570568,-63.946857,56.16477,145.70364,5.594 329,164.2482,199.94736,32.040253,54.313187,5.515 329,465.06525,178.9363,20.094025,53.797073,5.444 329,444.42023,175.37666,28.439941,83.797775,5.351 329,618.8253,211.64018,21.41571,53.106094,5.347 329,348.90344,219.33197,31.866028,62.372925,5.316 329,176.48119,210.47365,22.771667,37.301437,5.298 329,-5.7727547,-17.870644,17.466738,42.590694,5.277 329,-11.374912,-32.57992,29.683838,73.02847,5.25 329,582.97754,412.7148,71.79822,175.76285,5.204 329,627.45996,-18.99292,17.219238,48.01764,5.183 329,612.9872,454.8963,39.71631,107.01233,5.156 329,588.4504,155.48103,33.160828,77.766556,5.133 329,588.17194,108.55147,31.599304,65.59268,5.088 329,-72.751076,266.42493,200.3747,460.18176,5.059 329,-21.907282,402.2926,79.139206,175.31018,5.042 329,-6.0478697,208.333,19.659313,41.394333,4.974 329,536.5294,310.3601,143.2428,342.55652,4.962 329,12.1778345,198.48717,31.680573,55.743195,4.958 329,110.220215,203.37645,31.491806,58.482162,4.796 329,331.4414,213.90569,32.414856,70.313736,4.741 329,584.72644,128.1259,23.600647,54.347076,4.609 329,472.42902,208.04504,25.733643,63.97809,4.586 329,494.12512,228.62051,237.14624,514.4121,4.517 330,526.55206,208.4085,23.420593,53.228348,61.297 330,464.12817,206.75879,23.197327,49.804688,21.468 330,623.76917,-32.97392,26.495605,73.44454,7.652 330,516.1498,209.55916,37.32257,78.2621,7.546 330,504.73578,206.5187,22.40326,51.372955,7.354 330,611.63574,94.04364,27.804932,77.27673,7.182 330,619.1494,224.42514,18.43097,44.600555,6.629 330,626.98004,-19.77577,17.665283,47.676533,6.518 330,513.211,205.22801,28.380066,59.952225,6.25 330,-12.475829,478.1957,30.041328,63.104584,5.753 330,-6.4382668,489.20316,18.776375,43.325287,5.594 330,-17.592518,-64.076744,56.15625,146.48672,5.541 330,314.2364,213.71962,37.39096,69.41673,5.514 330,-8.864363,464.14526,37.594635,92.93561,5.501 330,489.56,169.31041,29.742493,78.52205,5.472 330,453.49707,200.67409,37.858154,76.42558,5.418 330,-5.748946,-17.75427,17.409634,42.402115,5.285 330,626.5738,487.77496,21.088867,46.281677,5.233 330,-11.400251,-32.5332,29.689034,72.9017,5.172 330,540.40234,145.80911,31.813354,69.52286,5.161 330,613.10614,454.4824,39.691772,107.160065,5.143 330,-72.56929,267.2139,199.9603,459.56503,5.079 330,616.4108,80.96907,22.68518,47.962082,5.035 330,412.90656,158.69199,28.197906,66.56207,4.965 330,582.86,411.9322,71.88403,176.31683,4.956 330,536.21423,309.93896,144.07642,342.89307,4.947 330,147.93045,199.50893,34.59282,54.59308,4.901 330,-21.793922,402.1069,79.02011,175.35452,4.879 330,603.371,-56.604485,53.2807,131.1413,4.878 330,493.9024,212.67787,29.79065,75.68959,4.818 330,472.25714,220.15338,20.592163,50.364502,4.816 330,593.9013,-47.107563,44.666077,94.720085,4.752 330,354.8739,224.68005,34.664215,68.38629,4.718 330,494.03864,229.33011,237.37921,513.34375,4.635 330,477.30493,202.9239,28.578552,64.69316,4.445 330,202.56879,217.3197,35.222977,61.914673,4.43 330,339.01062,209.27191,40.8125,87.25876,4.424 330,611.67285,48.76382,29.659485,76.30992,4.313 330,624.1384,213.54073,24.338135,66.67934,4.312 330,535.70276,205.69858,20.37262,45.942963,4.308 330,592.6405,87.9825,47.341675,141.93652,4.306 330,621.19763,77.976395,28.457886,71.586075,4.279 330,466.75427,183.1425,28.70874,79.00426,4.211 330,605.25256,220.47299,17.137512,40.09897,4.205 330,403.21637,161.83627,22.07962,48.39897,4.115 330,521.43774,197.26099,22.211914,45.686554,4.09 330,162.57735,198.3022,32.465607,50.92755,4.057 330,501.52704,235.89066,32.016907,65.5376,4.047 330,115.82482,198.28212,41.873344,82.714096,4.003 330,557.8712,101.86449,34.141907,65.40517,3.99 330,202.41118,214.36804,19.366776,30.031174,3.983 330,210.82782,214.06775,19.58464,30.687897,3.949 330,618.5732,-20.314411,18.636475,44.774586,3.927 331,617.0553,207.75505,23.247131,66.16597,85.45 331,535.73926,212.61996,23.442932,57.97278,70.358 331,443.03064,198.95518,28.127197,65.687,13.153 331,410.67535,206.4676,23.643219,50.284836,10.349 331,532.8751,181.8049,29.22583,73.84335,7.762 331,-5.852838,488.63205,18.597317,42.483673,7.24 331,622.84296,-32.969425,26.605042,76.92237,6.761 331,548.6855,183.36172,27.785828,78.99332,6.74 331,602.41437,187.33069,34.81659,85.22925,6.598 331,506.76,219.30167,32.35309,70.02991,6.565 331,436.847,174.94083,29.994415,77.373825,6.43 331,627.1528,-18.37745,17.460022,48.00234,6.197 331,445.9923,215.89435,30.115509,73.42221,6.04 331,626.21295,488.2944,21.734192,45.71292,5.979 331,531.99,213.97583,38.230713,93.05646,5.975 331,599.11127,210.70297,37.544373,103.55487,5.819 331,-9.461707,461.7684,38.009964,95.11832,5.807 331,368.82858,231.17126,35.764038,73.536804,5.687 331,-17.599743,-64.32443,56.153442,146.70302,5.591 331,602.99146,-56.956657,53.45984,132.25613,5.568 331,613.1887,229.07144,37.49231,111.62439,5.511 331,626.8062,194.78183,17.803406,48.70604,5.506 331,361.43518,220.15906,21.257843,38.85846,5.384 331,-5.7393637,-17.86151,17.433407,42.60664,5.358 331,-11.383686,-32.554325,29.693016,72.92444,5.285 331,18.997334,138.55441,34.586918,78.08275,5.107 331,385.19458,202.0408,32.68045,58.479492,5.105 331,552.4655,212.30907,19.546082,48.150314,5.064 331,339.46652,221.48787,34.472504,71.34715,5.056 331,-73.009026,266.07697,200.47748,460.14978,5.047 331,536.11664,309.06052,143.73969,343.82645,5.041 331,419.0335,195.89594,30.756836,64.24332,5.0 331,582.7961,412.13824,71.88623,176.07379,4.988 331,346.85565,230.01343,21.587616,36.3515,4.856 331,-21.792244,401.9889,79.001205,175.2356,4.809 331,415.7701,191.67924,21.419373,50.358215,4.784 331,594.4007,-46.10939,44.4823,93.62615,4.724 331,613.16345,454.52054,39.873657,107.16293,4.713 331,494.01065,230.37875,237.41019,513.13794,4.702 331,515.9544,223.59026,41.4563,106.70061,4.602 332,502.70145,209.18756,21.949738,52.283295,86.892 332,520.7949,209.41096,23.112244,49.70671,64.408 332,444.54684,196.30922,29.080048,70.04433,37.363 332,378.49823,209.4325,23.883087,38.215088,14.735 332,509.5672,207.36583,26.059692,56.363052,10.926 332,572.8093,52.79484,28.947632,72.616974,10.168 332,491.2896,200.39261,17.490173,41.557297,7.975 332,420.1923,199.0723,30.481384,66.781494,7.856 332,-6.137413,490.08768,18.31964,40.357635,7.315 332,74.2228,218.64197,21.106071,31.48468,6.74 332,621.89636,-34.072853,27.689087,77.7224,6.721 332,586.7789,51.837452,30.632935,74.46088,6.29 332,436.25766,151.9546,29.700867,78.244156,6.253 332,-9.07276,463.9875,38.02108,93.3772,6.173 332,572.22864,132.28665,28.9469,86.84198,6.041 332,626.6281,488.83295,21.158386,45.360107,5.676 332,-17.570194,-64.99648,56.06947,148.17044,5.602 332,485.00598,201.4099,16.941528,39.031845,5.553 332,451.7495,156.21962,31.510864,83.056274,5.482 332,546.5543,115.97843,32.714355,79.3308,5.419 332,-5.6903934,-17.772745,17.37275,42.510082,5.385 332,354.96735,199.86893,33.26767,57.09549,5.381 332,613.4119,-21.16732,28.920288,74.95037,5.314 332,602.49097,-56.451347,53.70221,139.02223,5.304 332,559.4695,50.60367,30.9292,80.94098,5.275 332,9.536936,215.05962,17.478294,33.243546,5.219 332,626.9186,-19.718033,18.352173,48.649704,5.205 332,-11.339865,-32.496872,29.586061,72.80455,5.11 332,384.17035,219.09712,21.71344,35.749985,5.07 332,613.1298,453.67932,39.96277,108.55774,5.004 332,428.15475,159.78317,29.947937,89.1781,4.959 332,536.3317,309.0825,144.01215,343.23245,4.919 332,314.0962,210.34966,20.516052,34.371567,4.91 332,563.25793,82.691925,32.365417,98.08899,4.898 332,582.8927,411.56284,71.892456,177.22678,4.888 332,573.8209,68.69449,30.865723,97.59497,4.886 332,-21.470604,402.85315,78.90628,174.35303,4.861 332,584.7606,50.110428,23.478027,49.678146,4.781 332,472.12958,199.7051,27.052246,62.416946,4.651 332,557.31396,132.75677,30.559204,79.698685,4.649 332,-72.6602,267.54828,199.38895,458.69806,4.594 332,494.68695,230.16977,236.62988,514.03625,4.574 332,587.22314,172.20013,31.494324,88.72919,4.551 332,498.8014,200.36055,18.052795,45.23802,4.515 332,595.0838,-22.57915,33.2558,71.60268,4.401 332,449.2151,151.28473,22.97168,53.87912,4.344 332,501.6477,217.9783,29.10315,73.316345,4.342 333,599.9438,207.98834,24.936462,69.45264,44.663 333,540.13824,201.56088,21.459717,51.79657,36.563 333,396.75735,214.78223,24.149872,41.013,16.923 333,583.57996,205.47212,26.951172,68.11461,16.917 333,616.6936,162.87126,23.128906,83.95366,8.79 333,494.62012,194.75548,39.64203,97.979385,8.733 333,515.3439,88.806145,31.229858,87.70408,7.844 333,445.1043,140.31628,30.012604,70.830826,7.055 333,622.691,-34.07397,26.722412,77.993416,6.726 333,511.60577,226.2107,28.513,72.922424,6.09 333,612.6043,453.8302,40.12671,108.18762,6.04 333,534.35596,195.54698,33.826843,76.57094,5.983 333,26.919317,170.76619,29.816973,62.13936,5.928 333,-6.671027,489.74786,19.21125,43.231873,5.909 333,615.15186,194.99924,23.488525,80.50879,5.76 333,-8.819284,464.88318,37.459717,91.753174,5.703 333,-17.571661,-65.58832,56.11402,149.39188,5.57 333,497.00293,234.3938,21.810486,54.718018,5.521 333,626.3947,487.11993,21.19159,47.36371,5.509 333,347.19586,192.4915,17.559326,39.445984,5.507 333,307.83038,203.14157,19.444214,36.741425,5.448 333,-17.93184,436.07272,56.04242,139.1265,5.427 333,-11.432682,-32.606834,29.806042,72.85841,5.316 333,626.8949,-19.925817,17.960571,49.39048,5.316 333,-5.819535,-17.95651,17.485785,42.551483,5.241 333,513.3398,141.04858,35.36328,92.10681,5.099 333,602.8814,-54.88292,53.410156,135.40588,4.974 333,121.10317,193.52238,21.27015,43.046463,4.837 333,582.6777,413.40207,71.91962,174.56924,4.821 333,622.65643,188.90393,25.21466,80.15396,4.766 333,-73.11795,266.8635,200.02658,460.68497,4.751 333,4.261862,157.28769,29.925993,76.50319,4.741 333,536.2765,310.64807,143.4104,341.62378,4.628 333,-40.21439,369.25555,110.57077,272.57562,4.592 333,425.68546,248.64735,36.4169,58.767624,4.531 333,547.1153,184.43544,29.723206,65.042404,4.521 333,530.04376,163.5112,34.189697,80.07512,4.521 333,97.58472,188.48586,19.60878,40.950775,4.516 333,14.105112,166.01408,52.00579,112.58717,4.421 333,322.27615,204.43512,18.888824,32.843246,4.389 333,315.04507,204.45058,19.203888,33.946686,4.348 333,-0.59274673,175.27043,24.923527,77.21614,4.316 334,551.4765,235.20944,38.695496,89.82391,77.602 334,408.47528,223.94896,33.5271,64.12642,12.327 334,585.8472,120.036255,31.437683,71.693726,8.376 334,-5.609701,488.47702,18.02563,41.505463,7.853 334,622.87897,-34.905273,27.275146,78.558784,6.831 334,-10.749172,477.1912,28.385534,63.11685,6.537 334,626.48834,488.6581,21.20465,44.34433,6.33 334,-4.6417155,185.97812,17.842474,43.78105,6.094 334,602.8364,-57.354153,53.323547,132.24614,5.512 334,613.0926,453.9718,39.285828,107.09064,5.445 334,-17.623598,-65.06064,56.215538,148.38962,5.433 334,-11.408023,-32.550858,29.768894,72.9514,5.352 334,-5.8183565,-17.904493,17.487553,42.567295,5.279 334,6.3370943,207.44785,26.351421,71.76001,5.247 334,618.2937,-23.076015,20.042236,51.943726,5.175 334,579.88257,247.75893,40.948242,98.86885,5.082 334,582.8141,412.67517,71.845215,175.78516,5.067 334,-21.70073,402.80847,78.578476,175.38428,5.054 334,536.71674,310.18982,142.8294,341.04028,5.013 334,-72.1951,266.4604,199.38829,461.53888,4.982 334,88.38085,109.69661,33.012573,75.96536,4.909 334,593.8552,-46.492493,44.824463,96.2243,4.866 334,-4.7822356,206.88057,17.900032,47.99077,4.746 334,619.0581,492.0359,19.94757,40.176514,4.666 334,355.473,223.15503,18.927307,48.109375,4.626 334,11.585808,207.52477,53.807503,113.354416,4.585 334,574.6843,116.47433,33.05304,85.11277,4.492 334,549.45215,215.46628,30.417175,77.47812,4.488 334,499.783,-22.764084,34.072113,75.94284,4.467 334,102.836,221.82623,25.784622,56.535156,4.386 334,547.609,279.86966,33.958435,86.57721,4.353 334,495.08063,229.87204,236.74463,513.1111,4.346 334,586.2336,-102.988884,75.4306,239.92935,4.299 334,369.18842,216.3871,20.51471,50.567795,4.282 334,613.94336,-26.65432,28.020996,84.44024,4.271 334,370.67914,230.82695,31.508636,66.850174,4.243 334,361.47342,233.19774,22.038269,49.107925,4.238 334,397.37625,216.56332,33.350616,63.86667,4.226 334,143.24767,237.75871,24.556366,45.572586,4.213 334,-8.844441,196.22255,27.866547,68.89873,4.184 334,22.824938,151.44548,29.481092,66.73831,4.111 334,1.9021213,171.18858,25.451376,74.091965,4.101 334,2.6141949,488.60303,18.098349,40.260864,4.093 334,576.6392,105.077675,47.291138,144.84735,4.074 334,509.2111,229.19662,56.741547,126.17157,4.032 334,373.78293,212.86946,27.060211,60.9377,3.98 334,-3.6037283,459.76608,15.817783,39.762543,3.979 334,532.96,-185.26839,148.13977,430.72037,3.963 334,611.8329,133.37881,27.949951,82.58867,3.93 334,470.896,-33.221783,28.216309,76.69994,3.928 334,242.74391,233.05054,18.229904,38.29712,3.881 334,481.5177,-17.356878,19.756287,44.275837,3.805 334,484.4663,299.0229,33.2713,59.713165,3.774 334,568.4704,233.91711,33.467834,81.66205,3.745 335,612.83154,211.73676,31.238586,113.324036,13.947 335,427.08557,210.87537,32.512573,59.64908,9.279 335,121.60803,200.81839,20.349197,48.89543,8.647 335,618.2944,217.63794,21.935974,64.813995,8.256 335,626.7647,490.195,20.607239,43.72693,6.988 335,-5.5472918,490.70615,17.734268,39.260162,6.922 335,98.42056,206.20848,19.851028,37.79222,6.712 335,-8.668043,465.17462,37.75605,91.14703,6.683 335,34.745598,215.90805,33.998947,66.939606,6.579 335,80.54948,207.13809,21.926338,36.97844,5.989 335,589.05566,48.765255,31.923218,70.347046,5.855 335,603.70245,148.57123,30.942566,75.71225,5.797 335,-17.72416,-65.88183,56.096874,151.40536,5.776 335,70.26885,211.57655,30.65213,59.785904,5.704 335,106.186516,199.58203,19.686249,39.90451,5.634 335,32.11486,218.50891,23.991852,38.547363,5.624 335,603.17633,-55.918594,52.39978,137.29079,5.559 335,622.5554,-35.369827,26.996338,78.99188,5.557 335,613.14606,454.6954,39.174255,105.77341,5.44 335,17.99889,218.98119,34.193687,64.5977,5.332 335,-10.783591,480.93878,28.319927,59.5542,5.29 335,-11.413801,-32.50699,29.768522,72.84989,5.29 335,626.86536,-19.61191,18.299133,49.115376,5.249 335,-5.812679,-17.846504,17.439543,42.511982,5.237 335,388.05588,210.32602,31.747559,75.989655,5.001 335,583.5418,414.0845,70.85077,173.74826,4.982 335,598.6765,210.99066,39.8927,147.2799,4.963 335,366.78882,210.79283,27.426575,57.462204,4.941 335,-72.57257,265.23114,200.06628,464.0891,4.928 335,618.7097,492.43588,19.946533,40.719757,4.877 335,559.2998,206.48984,52.44049,133.1763,4.87 335,616.7316,145.31534,21.19757,60.003326,4.842 335,-21.524017,403.6404,78.82595,173.6973,4.775 335,2.8326273,492.11615,17.560265,38.04596,4.772 335,85.116356,201.1906,29.278297,54.216125,4.703 335,115.59628,210.33221,30.594345,66.37201,4.663 335,567.0204,135.82101,36.63141,73.568924,4.661 335,4.056356,216.5763,32.294014,69.15747,4.508 335,536.7062,311.5381,143.08069,342.29846,4.373 335,578.4662,206.41502,47.258545,155.30684,4.35 335,404.1132,198.20418,30.662018,62.374924,4.337 335,386.66357,205.9115,19.352203,47.875153,4.328 335,46.664536,218.56133,26.398438,39.80748,4.309 335,-4.91447,204.72946,16.739029,39.342728,4.208 335,391.0599,191.8567,23.93332,62.363495,4.196 335,-5.0006394,330.97723,16.252342,36.17047,4.105 335,613.0488,252.29599,35.57727,128.30008,4.079 335,5.3233967,479.48495,14.489248,27.54535,4.065 335,494.57312,229.65872,237.13599,516.0393,4.041 335,618.6672,-21.086166,18.824646,47.671036,4.012 335,0.85929155,92.78301,25.834768,80.51029,3.96 336,399.6483,207.81967,22.842804,47.334244,28.799 336,96.70972,189.86455,24.524094,50.796707,8.757 336,78.98099,187.02824,28.488678,59.813065,8.033 336,375.7988,210.16454,22.92096,49.955185,7.316 336,-5.869935,489.59943,18.234646,40.537415,6.378 336,626.70886,488.18915,20.899658,45.06653,6.242 336,626.9132,-19.328032,18.45996,48.290993,6.212 336,-12.074241,-41.100346,40.651253,102.85173,6.055 336,-8.942074,464.62503,37.660995,93.30386,5.965 336,406.97208,203.36626,22.381714,42.687454,5.94 336,602.3571,138.65575,33.4787,79.22591,5.672 336,328.775,211.04837,23.328918,38.536743,5.638 336,602.945,-55.61494,52.665466,135.86047,5.564 336,216.27368,212.84923,23.604477,36.56981,5.545 336,315.95047,207.11325,32.637115,56.23047,5.528 336,593.32324,105.89873,32.767395,72.406815,5.464 336,622.46576,-34.28529,27.451233,77.653534,5.443 336,60.411728,194.8522,28.133255,59.60237,5.427 336,37.38469,187.15681,27.929352,67.38417,5.416 336,396.26038,213.22087,30.890686,80.856674,5.324 336,380.6572,207.74281,27.480988,65.032364,5.286 336,583.1301,411.87646,71.699585,176.10754,5.182 336,241.35477,206.24431,21.456268,35.22165,5.146 336,338.95047,210.74753,32.519196,57.09961,5.107 336,417.59912,234.8258,37.41263,71.68878,5.075 336,313.99103,217.97401,22.51059,39.99205,5.05 336,-5.7797337,-17.942356,17.445017,42.904606,5.042 336,-73.03619,266.35468,200.93414,461.12958,5.023 336,-21.594124,402.62503,78.930435,175.55472,4.951 336,324.18338,219.91528,32.33319,62.142883,4.914 336,536.2022,310.1327,143.92627,342.37537,4.909 336,336.85712,227.55481,23.0672,38.46469,4.874 336,615.77783,123.925446,24.03424,60.174927,4.872 336,218.06656,210.93411,32.49756,56.684113,4.719 336,613.0448,454.7869,39.757202,106.79343,4.705 336,493.98624,228.07025,237.15475,515.4941,4.662 336,618.5134,-20.027735,18.648499,46.964565,4.416 336,-5.589202,216.02872,18.201256,42.78598,4.415 336,268.41006,197.09344,30.181763,58.842575,4.366 336,89.31733,185.91617,22.022194,46.452972,4.359 336,595.26086,-45.771046,43.021545,97.922646,4.359 336,306.6872,214.124,21.884827,38.591644,4.292 336,232.56233,206.53352,22.358154,36.308975,4.269 336,343.98987,204.12221,23.190643,42.21556,4.259 336,345.8584,233.45854,22.391663,44.067245,4.198 336,618.73596,491.02927,20.142517,41.54129,4.195 336,284.8541,192.0298,28.915985,59.364334,4.19 336,204.8605,208.90924,31.316238,54.340607,4.145 336,89.83493,206.82399,22.838982,45.683502,4.139 336,416.50882,200.08585,21.470764,42.90616,4.104 336,249.94449,212.09975,21.04596,35.97638,4.103 336,557.235,157.36356,29.244019,76.91194,4.101 336,266.50116,213.11966,21.048218,39.91942,4.082 336,616.6987,204.6849,21.133057,44.405075,4.069 336,385.98743,203.52252,20.528015,43.412766,4.029 336,-5.555788,262.21588,17.31303,38.639496,4.023 337,423.53925,204.77505,23.898315,53.141296,23.228 337,53.56369,179.26443,26.624786,67.07301,13.217 337,402.14563,204.01694,19.039612,45.34001,12.067 337,410.66486,206.5161,17.420135,38.49144,9.672 337,65.16231,180.5917,22.70108,53.264633,8.525 337,379.44507,203.63435,20.02179,45.1725,8.187 337,470.80814,160.57144,24.882843,49.574722,7.776 337,-18.134277,-64.24712,56.578285,146.95584,7.482 337,73.128365,181.83635,23.550575,50.334,7.441 337,331.2424,219.65204,34.180542,68.46747,6.902 337,382.2955,204.6141,27.35846,67.15213,6.87 337,-6.0802054,489.39478,18.477829,40.97467,6.74 337,-11.617942,477.6467,29.445583,63.19754,6.479 337,393.13263,206.68427,22.095764,50.614532,6.386 337,622.7573,-34.084347,27.293945,76.23061,6.296 337,415.19543,207.15405,27.159058,73.085144,6.064 337,626.85236,-19.878159,18.386292,47.963593,5.839 337,406.70163,203.09991,26.673187,69.07236,5.72 337,584.06445,151.67659,37.451355,91.339096,5.711 337,434.27405,200.62866,17.2547,40.1203,5.582 337,626.83295,488.4667,20.309326,45.85977,5.487 337,-5.5107355,-17.378967,16.846783,42.915188,5.382 337,-13.735385,158.97986,47.801506,132.27777,5.352 337,200.04193,213.77039,24.177567,34.92041,5.308 337,602.56604,-55.685577,52.61731,132.81194,5.16 337,582.9458,412.17578,71.86987,175.90857,5.135 337,619.55884,192.3234,19.093384,52.63327,5.089 337,316.4432,197.87163,31.618744,59.9048,5.072 337,-11.37093,-32.70889,29.508677,73.81161,5.054 337,-17.446066,435.4617,54.692886,141.26413,4.973 337,-73.03967,266.50476,200.42401,460.48914,4.964 337,612.8715,454.6948,40.28589,107.303314,4.961 337,536.3685,309.78525,143.84314,342.73135,4.921 337,618.3108,-19.680103,19.14325,45.556824,4.902 337,419.71634,203.14114,38.50299,87.3226,4.883 337,594.55133,-45.539238,44.138367,95.27988,4.852 337,-39.78482,368.23865,109.76868,274.88928,4.804 337,260.37195,190.92065,29.811066,62.372467,4.744 337,41.451576,184.84335,29.413986,72.96652,4.665 337,493.8116,228.78674,237.47922,513.349,4.638 337,397.041,201.02806,16.198273,38.56932,4.625 337,216.24081,215.42155,23.832245,35.171295,4.575 337,20.83065,194.82451,26.843605,63.331284,4.522 337,345.17746,231.55498,23.56784,46.85115,4.361 337,-5.4502745,182.6633,18.351189,46.73941,4.309 337,331.17682,201.4501,31.897247,58.70703,4.303 337,515.8389,128.57036,32.588562,59.105576,4.253 337,245.49835,212.2799,30.673706,60.26465,4.242 337,29.339405,183.54561,27.89539,66.06239,4.24 337,257.6182,216.21712,23.049194,48.405838,4.228 337,420.7887,201.0387,15.906067,41.499786,4.19 338,431.45,208.49129,22.803497,43.790955,31.075 338,382.8504,209.2085,25.027985,48.733093,11.437 338,513.80273,216.47356,35.60431,64.786514,9.846 338,447.87225,209.90718,24.926666,48.544296,9.181 338,405.15002,206.5128,24.04071,51.895065,7.573 338,622.4171,-33.692062,27.154297,76.124306,7.191 338,626.63043,487.94833,20.751831,45.547577,6.586 338,-6.021604,488.7682,18.477594,41.967834,6.386 338,-5.821162,-18.181076,17.57996,44.874794,6.358 338,440.9405,208.76584,20.91269,38.366165,6.242 338,627.02386,-20.219452,18.144836,49.171783,6.216 338,-11.348958,476.9657,28.99247,63.869934,6.028 338,-12.016659,-39.773476,40.840874,101.728806,6.027 338,244.31195,190.59547,29.52771,62.41823,5.88 338,436.16998,209.35968,28.66568,72.49756,5.869 338,373.31757,207.66434,31.545715,71.66977,5.765 338,420.41284,206.17787,37.900696,84.23024,5.724 338,339.8215,226.47827,33.005707,75.07672,5.681 338,453.70663,209.6976,29.203094,69.304596,5.607 338,44.319847,177.69504,27.21685,54.858154,5.595 338,613.10016,454.4479,39.36969,107.40701,5.426 338,389.20712,210.5311,30.278107,73.332275,5.405 338,456.6708,203.19647,20.419495,42.921967,5.325 338,601.88916,-57.166267,53.68164,139.038,5.21 338,530.2857,115.99524,20.473816,31.581696,5.12 338,308.5162,204.67511,30.700684,63.168365,5.11 338,-72.861694,266.2429,200.36148,460.6603,5.108 338,536.57275,309.4732,143.37463,342.81622,5.083 338,427.75113,201.3029,18.029541,39.97084,5.041 338,366.9511,198.31549,29.162903,63.22293,5.001 338,-21.740925,402.07373,78.85489,175.80286,4.976 338,-14.732379,155.29727,48.91231,132.45596,4.957 338,526.28,-35.978207,28.055359,72.2673,4.924 338,582.86945,411.44574,71.86572,177.2251,4.88 338,329.4074,215.54861,36.555298,67.25784,4.865 338,0.14916062,209.53703,21.621542,51.267532,4.789 338,404.29865,206.20715,39.240417,83.434875,4.739 338,3.486607,186.92075,31.83442,72.50174,4.723 338,201.21564,205.42169,20.763367,33.500595,4.7 338,21.205803,182.2485,30.13021,69.02118,4.623 338,28.710838,170.96661,31.174397,63.518555,4.612 338,523.0734,118.353516,19.60431,28.832214,4.573 338,494.41278,228.96713,236.82245,513.7959,4.568 338,618.35406,-21.357697,19.243774,48.91008,4.551 338,558.3587,160.2611,28.695312,77.29573,4.54 338,-6.2239866,203.7147,19.304764,50.833405,4.512 338,316.31046,218.04926,32.523956,69.60748,4.509 338,476.84415,149.38737,15.583649,35.9691,4.498 338,586.5273,-107.164856,76.03223,242.53305,4.493 338,501.3285,210.53928,32.64435,61.079773,4.422 338,466.4677,194.78629,18.72998,42.803024,4.406 338,541.984,-35.13979,29.138367,73.77949,4.405 338,587.0184,-18.615711,32.84198,68.1957,4.388 338,618.6428,489.30112,20.299255,43.27365,4.35 338,424.7069,262.11172,39.20056,62.304443,4.342 338,574.972,237.50464,31.035034,83.254944,4.341 338,539.6426,-19.893482,56.800232,125.35425,4.327 338,-5.2024803,170.37143,18.312775,45.377075,4.298 338,489.7136,-182.20837,236.56033,420.57684,4.288 338,-9.791405,171.65295,28.939056,69.77136,4.257 338,279.2257,186.31308,22.464355,44.18994,4.239 338,225.72064,206.71986,21.41742,34.74376,4.221 338,12.705957,153.82175,54.10106,107.68463,4.202 338,194.29736,215.77979,34.160126,63.757507,4.184 338,413.9826,-36.258564,28.553741,75.78441,4.176 339,495.40616,215.65257,23.274933,47.49034,59.678 339,472.07703,211.47496,24.387451,50.55629,40.761 339,430.73468,209.61322,23.170074,49.276306,40.603 339,599.92303,199.31088,42.95508,139.92041,33.284 339,617.7398,186.72453,20.634277,52.20961,15.543 339,416.34888,218.61305,24.608948,48.45302,15.421 339,400.81464,214.70169,24.543823,46.41815,15.07 339,450.0792,202.72244,22.089233,50.954285,9.706 339,419.77032,216.52995,31.045776,70.767166,8.278 339,405.1787,217.45883,30.676392,70.94757,7.929 339,454.01703,194.04501,29.698944,64.45914,7.827 339,612.9821,189.67122,26.982117,82.22606,7.784 339,-17.610538,-64.44931,56.27495,148.4756,7.484 339,613.14276,241.21902,26.899048,88.29697,7.141 339,578.7359,197.99686,50.50824,139.0726,7.025 339,559.94653,190.94072,53.69507,119.33302,6.723 339,613.41583,453.2986,39.365784,107.13699,6.699 339,324.729,204.29367,31.240784,63.733093,6.394 339,626.57007,489.45776,20.827637,42.999634,6.389 339,622.08685,-33.6382,26.956604,80.52817,6.229 339,387.73514,218.6813,34.888885,72.47034,6.148 339,-6.1547904,490.3676,18.352694,41.01935,6.043 339,437.25845,206.7763,30.473358,69.42511,5.873 339,-11.6042795,479.05743,29.18885,61.657654,5.758 339,-5.68522,-17.299465,16.958588,42.568176,5.664 339,271.5137,191.0733,29.945282,66.72232,5.582 339,-11.634405,-32.93643,29.950651,74.0962,5.457 339,596.95715,254.06808,40.51239,106.31897,5.362 339,612.2186,260.3595,36.65985,109.602844,5.34 339,462.18774,-35.617744,28.023712,70.539925,5.299 339,335.94437,211.96141,25.51297,50.240067,5.223 340,465.17096,213.53781,27.352081,57.801422,65.655 340,435.32092,214.1233,30.306793,60.29225,29.323 340,531.1508,198.36826,35.19098,75.46231,21.859 340,571.4279,220.25354,32.029785,70.302124,17.216 340,446.6474,211.78926,24.143036,50.210526,10.404 340,542.93756,195.2966,34.109924,96.98639,9.445 340,626.51526,488.24646,20.893677,44.155884,7.111 340,-5.2126813,-15.765181,17.158133,43.748795,6.928 340,560.58435,169.41843,51.10974,119.45572,6.918 340,622.5104,-32.65063,26.881165,76.27327,6.788 340,613.3794,453.30817,39.368896,107.05347,6.777 340,626.957,-18.851425,17.742126,48.613037,6.674 340,-17.212042,-63.096546,56.446793,145.63141,6.593 340,-10.310049,-33.00069,29.321089,77.97493,6.332 340,-6.0475535,490.29294,18.044634,40.43698,5.944 340,-9.19128,464.00717,38.005733,92.766205,5.673 340,602.82886,-57.32644,53.68872,136.78412,5.612 340,619.02136,489.99808,19.967224,42.65457,5.511 340,412.91644,206.65622,32.309967,60.153534,5.501 340,519.3834,205.23706,34.17578,65.035095,5.446 340,389.41498,194.79239,30.078796,66.23819,5.299 340,-11.565201,478.3379,29.134104,61.624268,5.277 340,563.62695,154.78465,31.357544,83.81691,5.249 340,549.0701,176.84473,29.895569,81.19891,5.245 340,525.63666,221.7605,31.826355,69.6543,5.215 340,281.2574,191.00304,20.96634,36.479202,5.182 340,406.94702,214.41354,22.521393,37.52771,5.054 340,620.2097,367.38885,18.236267,52.1019,4.979 340,-72.96612,266.6655,200.36053,460.29654,4.972 340,522.82477,160.06418,56.851807,120.58502,4.947 340,594.8151,-47.627945,43.688843,100.86639,4.938 340,2.385788,193.95422,40.314438,89.22064,4.935 340,552.15857,210.52942,35.200806,92.3725,4.918 340,536.3483,309.25854,143.90668,343.43726,4.869 340,453.34518,214.98994,30.588348,61.218338,4.86 340,-21.757975,402.2999,78.87658,175.66043,4.86 340,583.167,411.1658,71.44043,177.19626,4.849 340,187.21468,214.14084,17.493057,26.983536,4.83 340,-5.722017,181.98175,19.906237,47.669098,4.822 340,330.89716,207.8065,32.44638,64.68852,4.732 340,349.996,202.52309,29.809631,57.224777,4.668 340,307.86,202.399,30.905518,76.85158,4.638 340,267.40466,202.58694,18.525879,33.72928,4.611 340,305.97348,204.17831,21.44284,47.411346,4.604 340,228.38797,201.7712,31.434662,63.920395,4.603 340,-9.61749,184.52095,38.34715,94.41524,4.547 340,586.3994,-106.24502,75.68945,242.70572,4.498 340,-5.3750076,153.80542,18.34785,43.39209,4.447 340,618.6866,-19.570978,19.204163,48.361713,4.406 340,544.26935,234.85567,32.96344,89.74788,4.378 340,494.9892,229.7536,236.38214,513.62164,4.357 340,60.2099,195.65485,31.356506,62.87378,4.332 341,481.72836,221.18922,33.01236,75.49025,83.48 341,526.4723,213.77133,32.690796,83.286896,74.235 341,498.29156,220.31604,34.142212,77.138794,38.315 341,619.26465,184.35133,17.54663,44.080612,9.271 341,-17.602222,-64.58857,56.817112,147.73555,7.233 341,-5.8552933,489.18622,17.917824,42.303467,6.674 341,-0.37010312,191.03662,26.581709,73.62988,6.604 341,-5.3440084,-17.365997,16.6376,43.11194,6.474 341,626.55304,-22.976236,18.910217,54.824486,6.276 341,626.6959,488.8234,20.906006,44.70633,6.158 341,46.41766,180.12537,26.949215,66.955215,6.113 341,611.72845,-49.446976,40.851624,106.98496,6.083 341,-8.509854,203.06366,28.200466,72.42212,5.817 341,-11.349603,-32.206413,29.051346,72.96954,5.799 341,-9.295673,463.67413,37.8729,92.65051,5.574 341,69.1986,187.29794,28.72152,65.98178,5.255 341,-5.9302845,242.84975,18.783443,46.66661,5.139 341,583.4761,412.5323,71.0979,175.0827,5.131 341,-73.530815,265.81406,201.37276,461.77127,5.116 341,529.3957,151.5289,30.097595,71.675644,5.096 341,-21.872078,401.6224,79.24773,175.93289,5.074 341,504.90594,214.45581,22.620667,54.72235,5.019 341,617.66223,-25.496988,20.6109,58.36918,4.973 341,186.49152,218.73747,20.864426,35.034622,4.97 341,1.6524279,225.22368,22.288364,55.47438,4.882 341,612.95917,187.01166,16.955017,38.97194,4.874 341,65.53562,185.41255,22.4458,49.70572,4.802 341,536.0616,309.45868,144.43103,342.25128,4.802 341,461.22708,225.40129,32.73166,61.85048,4.795 341,336.43002,217.51012,35.90869,73.51369,4.778 341,178.26028,219.16853,20.071655,32.8407,4.774 341,613.2209,453.96786,39.96515,107.54959,4.749 341,417.97427,206.46175,20.955536,45.39125,4.708 341,398.00052,194.5387,29.375275,66.025696,4.621 341,281.34924,195.14297,20.429596,37.085037,4.463 341,193.92502,210.65114,22.420197,40.249435,4.453 341,80.91002,187.77478,21.804321,45.252625,4.446 341,169.95795,209.36026,21.11763,35.09134,4.41 341,590.5962,-57.723133,53.045654,150.55228,4.341 341,19.25734,171.36401,39.237186,85.64105,4.309 341,605.0964,184.2711,17.30603,39.466614,4.255 341,510.50104,201.8667,13.343445,23.950455,4.243 341,495.47803,231.89703,235.95697,512.1722,4.196 341,-4.9438386,171.15878,17.198387,44.394028,4.181 341,309.17422,159.42609,29.732056,72.14249,4.122 341,-8.862649,215.11284,37.960598,91.63579,4.114 341,349.13956,200.6923,29.944061,67.24794,4.098 341,266.2463,200.46095,19.497131,34.977005,4.059 342,603.6089,228.64757,34.894165,124.40108,31.39 342,-18.149252,-65.276886,57.226814,150.23305,7.336 342,-5.91851,489.54755,18.233292,40.773926,7.303 342,563.1567,159.56918,31.320312,71.793884,7.039 342,-11.342438,478.03845,29.271057,62.871216,6.36 342,627.4369,-17.51699,16.960754,45.50917,5.772 342,626.85144,488.2694,20.597656,45.364136,5.718 342,-11.449385,-32.14097,29.535055,72.337364,5.625 342,-5.515996,-17.44,16.953308,42.723694,5.552 342,315.27985,163.68811,31.39862,73.58273,5.415 342,619.034,230.01675,29.007751,86.522644,5.355 342,619.9189,219.39508,16.981262,39.21927,5.342 342,613.24255,454.77368,39.66815,106.85358,5.27 342,623.3538,-34.86873,26.088257,74.68708,5.258 342,365.1765,215.14912,32.48108,67.56084,5.256 342,-17.593126,438.37387,54.733673,139.58951,5.199 342,582.7434,413.0763,71.90344,174.97858,5.17 342,591.42896,242.7097,32.405823,64.58675,5.145 342,321.0286,175.67213,21.335663,47.718796,5.142 342,535.9376,308.58447,144.53021,343.2318,5.118 342,316.24643,212.19402,31.231964,63.516617,5.053 342,586.579,211.61969,17.29834,32.634125,4.967 342,-72.7744,266.8772,200.69473,461.20453,4.957 342,-39.608788,368.03485,109.708115,275.35028,4.915 342,4.6162105,183.83049,28.48418,69.00815,4.732 342,604.0497,-56.273087,52.575806,133.67633,4.695 342,549.6728,161.78258,32.50836,74.736496,4.676 342,592.1929,211.3579,55.98462,190.12526,4.62 342,493.0238,229.36035,238.64124,513.1613,4.593 342,131.4601,207.27739,30.527206,53.363083,4.425 342,617.5933,227.25574,21.674744,57.36844,4.416 342,628.3428,218.5951,17.904541,43.431732,4.376 342,-5.5470996,155.36107,17.036837,38.626266,4.351 342,288.2072,203.5148,19.950012,36.018433,4.337 342,406.46317,192.97765,23.983795,68.25777,4.334 342,-6.314289,286.10568,18.346064,45.381836,4.256 342,155.0459,224.08817,33.44777,51.55661,4.228 342,80.55382,226.66147,46.01158,85.19324,4.207 342,60.275406,279.7047,31.852875,59.20291,4.205 342,563.0294,240.1188,41.934204,93.293335,4.189 342,3.3443654,279.84943,30.298655,68.61609,4.072 342,258.9391,218.34045,19.640442,32.15001,4.063 342,96.21974,219.14084,46.399414,72.8353,4.051 342,576.2668,164.49487,23.008545,52.217987,4.024 342,250.58485,218.53206,19.101486,31.735916,4.017 342,51.38975,232.88226,41.869946,95.93817,3.964 342,619.901,186.79024,17.769653,45.830353,3.948 342,583.8573,239.89563,40.732056,114.87909,3.904 342,620.42224,136.72128,18.100342,51.62372,3.901 342,570.31793,209.35678,21.043884,37.405014,3.882 342,-9.023558,192.78714,27.553133,72.42981,3.874 342,-4.636256,192.80296,18.15086,47.406082,3.87 342,611.495,270.33182,36.90332,121.59653,3.862 342,2.85104,490.84558,18.297739,39.26593,3.857 342,626.7335,177.7537,18.717041,49.268723,3.851 342,376.7522,206.38005,21.201965,42.219894,3.85 342,-4.3964777,392.97018,16.390839,42.984528,3.838 342,112.89089,226.64594,44.74723,83.46777,3.833 342,43.687172,280.89008,32.452644,55.675873,3.821 342,103.09846,192.13026,27.014778,55.991913,3.807 342,-5.235609,178.47003,18.063412,43.5007,3.803 342,-4.3063126,476.4797,15.403749,35.896393,3.791 342,76.62282,279.47592,31.407516,60.598602,3.786 342,285.5645,211.083,28.908722,59.117233,3.781 342,591.762,186.8657,48.470886,128.11635,3.781 342,243.21883,218.16379,18.77153,33.81613,3.781 342,169.4379,235.44577,36.18103,70.98047,3.748 342,595.1214,-46.512127,43.34326,97.73556,3.745 342,306.98367,200.6553,18.79602,34.462997,3.739 342,-4.3683186,459.43634,16.546875,39.88672,3.734 342,604.4384,217.683,15.778381,29.783417,3.7 342,130.7754,230.18849,42.46736,97.48027,3.693 342,5.448475,468.66925,38.065815,93.656494,3.68 342,348.5387,207.42635,32.39142,62.866104,3.679 343,410.65903,188.98337,31.253632,66.57414,16.782 343,510.77457,214.81207,23.27835,50.0802,10.548 343,454.20468,193.49036,27.22815,76.30194,8.75 343,621.4484,473.41016,28.947083,69.14636,7.36 343,108.00906,209.08604,17.777557,40.158905,7.239 343,425.02286,185.02116,21.310638,47.914352,6.793 343,623.17035,-34.404556,26.965271,73.66465,6.676 343,419.60968,197.92831,31.416748,80.074615,6.372 343,-17.74315,-65.83842,56.071434,150.71176,6.279 343,420.60712,174.88559,38.54605,78.36725,6.274 343,399.85904,189.20688,30.17508,61.73137,6.246 343,161.23903,201.87955,20.610931,42.252655,6.196 343,-4.771988,133.83516,18.37543,40.62674,6.153 343,99.634735,209.68875,19.008698,41.316772,6.015 343,110.53242,199.95517,26.525017,57.967407,6.006 343,-6.391284,489.32153,18.774422,43.983337,5.869 343,331.10254,218.29532,33.23221,71.84689,5.766 343,-0.11811972,134.12837,26.50848,68.53284,5.761 343,-9.388762,463.97366,37.966087,93.12729,5.749 343,603.47314,-56.182793,52.544678,132.82094,5.738 343,323.8756,150.181,31.539368,73.567444,5.431 343,-11.361816,-32.38583,29.685038,72.88982,5.323 343,627.5469,-17.766424,17.698486,45.275196,5.304 343,52.960278,190.7977,27.996357,60.367844,5.221 343,437.7789,174.16962,38.071564,82.36066,5.164 343,-5.853034,-17.97866,17.527927,42.772106,5.162 343,169.33943,210.22025,20.842941,39.4384,5.126 343,444.84787,113.59357,28.305756,60.92633,5.119 343,44.57334,216.97955,33.538033,63.334473,5.045 343,145.57117,199.09222,20.135742,45.248978,4.997 343,-22.042164,402.21588,78.71126,175.15839,4.963 343,186.69763,205.94757,18.863068,33.861526,4.922 343,448.82513,115.72011,20.945526,35.36113,4.919 343,-72.89573,266.7345,200.29443,460.5227,4.908 343,586.09564,-99.86437,74.106384,233.36093,4.815 343,490.583,216.03706,19.878601,40.609238,4.788 343,618.5926,485.58984,20.959473,46.17816,4.773 343,583.4147,410.95987,71.3291,177.1948,4.742 343,536.24536,310.1894,143.43274,342.74542,4.74 343,389.30484,199.38857,40.394104,96.62712,4.737 343,135.88202,193.2096,25.766068,61.298996,4.663 343,485.41833,211.24707,39.252686,83.429016,4.621 343,-4.065605,118.59259,16.211079,37.5347,4.595 343,288.1161,198.00462,21.12796,33.698837,4.58 343,-9.542505,122.8307,29.235075,65.59596,4.554 343,-9.591942,145.40842,29.766922,72.39615,4.552 343,2.3776107,130.52429,19.578135,35.418106,4.507 343,4.2365837,190.62988,37.42309,94.58234,4.507 343,595.0329,-47.6401,42.576294,99.360504,4.499 343,178.06886,211.81306,20.248093,38.887405,4.474 343,193.84315,216.7066,20.309906,31.899918,4.457 343,-12.981959,156.21887,46.801727,132.74414,4.454 343,361.30844,212.68982,34.310333,66.78424,4.387 343,628.1753,476.6576,17.508423,45.342773,4.382 343,339.55023,180.87825,18.042664,43.63994,4.362 343,131.12761,202.01636,18.33368,42.17488,4.329 343,493.81042,228.56,237.91577,513.91516,4.308 343,202.30803,220.47992,19.842987,29.338348,4.281 343,218.68689,221.9063,19.50859,28.623093,4.275 344,613.6445,221.8969,25.044128,75.24367,24.582 344,595.61646,217.09595,33.826965,84.07294,8.873 344,550.7573,24.153389,29.825806,66.57781,7.754 344,625.97675,487.3682,21.452393,44.922028,7.715 344,417.90866,205.21677,16.79071,40.068466,7.629 344,605.88904,178.59132,29.732727,87.6678,7.534 344,578.8487,199.27138,35.20508,87.92024,7.362 344,-5.8640676,489.3143,18.472633,41.177277,7.029 344,623.9125,232.52753,20.949097,57.273132,6.158 344,622.4796,-33.81023,27.287292,75.503075,6.084 344,-11.609222,477.88504,29.880182,62.70273,5.992 344,602.70544,-57.625526,53.561523,137.80617,5.955 344,613.2517,453.16107,39.345337,107.12671,5.886 344,627.1327,-19.795305,18.585754,47.628937,5.819 344,1.435169,207.11272,21.839275,58.336227,5.801 344,-17.897764,-65.81629,56.114197,150.59895,5.792 344,564.33167,27.657692,28.140625,63.74739,5.655 344,625.9447,217.59795,19.171326,48.84474,5.627 344,561.9463,-21.822897,19.659546,45.526897,5.582 344,614.0488,132.54721,25.331299,96.31799,5.56 344,570.05084,-22.39614,19.923767,44.544308,5.517 344,587.7747,173.83192,32.164734,85.99126,5.351 344,66.69551,219.37271,34.62728,49.68698,5.326 344,363.45782,211.15913,33.18524,58.470505,5.285 344,-73.63893,266.0855,201.53764,461.43463,5.278 344,-5.726919,-17.84232,17.416918,42.751904,5.193 344,575.636,205.87576,50.496277,145.84894,5.156 344,-11.263346,-32.436653,29.593922,73.04226,5.096 344,585.6703,-103.33177,75.84454,237.74522,5.035 344,536.31824,308.97867,143.32037,343.5527,4.959 344,349.0317,212.5381,30.574738,60.149216,4.953 344,-18.013224,436.20743,55.87049,141.2333,4.93 344,-3.4324348,199.5051,17.37673,48.421463,4.833 344,582.9408,411.1214,71.73724,176.99207,4.827 344,576.7842,28.385303,22.943237,53.21551,4.82 344,289.21747,204.69702,19.892212,32.82988,4.79 344,499.15756,217.0023,34.77591,71.577835,4.753 344,-39.68026,368.2094,109.862305,273.8836,4.753 344,130.48773,207.37354,19.674896,39.77922,4.699 344,177.8667,212.22751,21.826065,30.363419,4.671 344,170.00378,211.6733,21.076157,29.734482,4.638 344,566.1034,-34.34037,29.147095,71.52459,4.629 344,474.89246,201.10933,29.869171,74.04491,4.612 344,469.28046,-35.42913,29.893799,69.900055,4.563 344,514.24915,-8.399357,44.180176,90.43271,4.554 344,489.43408,-179.51247,236.97754,422.55368,4.545 344,-14.648371,184.63214,48.98738,130.90271,4.542 344,574.42505,178.14236,31.136353,73.81296,4.525 344,493.2385,228.52725,238.05997,515.19604,4.522 344,621.305,156.39502,26.756165,85.353714,4.502 344,473.53473,153.68951,20.507599,52.52672,4.43 344,595.14166,-46.965107,43.262695,100.9192,4.4 344,554.0034,-22.929596,19.392822,47.179016,4.392 344,589.5155,-34.003384,28.740662,69.78622,4.39 344,208.56683,214.75421,21.499008,33.577515,4.349 344,-3.35815,174.55856,16.141676,40.006195,4.332 344,627.36444,471.0512,18.456482,42.617737,4.316 344,549.486,-34.829704,29.818542,72.88434,4.277 344,45.461967,205.3681,31.046265,56.89502,4.271 344,618.92114,476.69922,19.178467,42.109314,4.258 344,-15.981485,125.55636,51.769844,137.13464,4.256 344,499.43127,-19.629438,42.628662,81.884766,4.249 344,3.7576175,200.87936,36.58931,84.61313,4.214 345,437.43573,204.18239,17.78891,39.523285,17.133 345,-17.75121,-64.65633,56.204166,148.64252,7.195 345,-5.747136,489.46304,18.15706,40.812042,6.764 345,622.91364,-33.393826,26.615417,77.48397,6.618 345,627.331,-19.476648,17.940552,48.728252,6.615 345,363.99478,207.51668,33.611755,70.77605,5.874 345,602.1245,-57.906387,54.1734,147.41629,5.858 345,-9.275972,464.5876,37.8842,92.35089,5.734 345,612.5697,453.72455,40.080444,107.84601,5.67 345,563.3597,-130.07263,111.45502,283.2241,5.51 345,333.32135,218.24544,30.511597,67.958664,5.392 345,626.1949,487.15277,21.460266,46.164246,5.355 345,-73.28729,265.56805,201.22903,461.8576,5.181 345,-5.54315,-17.735168,16.943466,43.137836,5.029 345,-11.578484,-32.557785,29.694387,73.53829,4.969 345,194.0975,214.69803,19.79692,32.19951,4.948 345,0.8564639,228.22087,35.239536,66.92415,4.927 345,-21.861506,401.50638,79.40462,175.83395,4.925 345,493.78308,-35.457237,27.76123,74.238815,4.902 345,582.7296,412.0818,72.04614,176.54486,4.799 345,619.1572,-20.434448,18.732422,47.246147,4.714 345,306.45206,190.80603,21.424866,39.53528,4.647 345,99.54159,199.84563,20.924637,46.485718,4.633 345,30.729025,169.80371,52.374565,117.75293,4.626 345,249.0703,203.76921,23.14238,36.150238,4.625 345,185.64825,225.4578,36.544662,60.431732,4.556 345,536.69366,310.21338,142.13824,342.5736,4.545 345,-9.7612095,170.23318,29.312605,70.72406,4.541 345,347.1901,223.46016,34.895966,66.75984,4.54 345,-5.632336,181.31827,18.840511,48.111465,4.465 345,387.63782,216.75554,33.59082,61.546677,4.45 345,121.457306,201.67207,19.36499,36.865387,4.357 345,153.54628,212.02509,22.892166,30.711197,4.316 345,178.31789,214.93907,21.232056,32.294876,4.314 345,112.52486,207.0584,23.17981,42.263992,4.286 345,318.37695,220.11641,30.475616,64.260635,4.265 345,201.55083,215.71472,20.357681,31.939407,4.263 345,298.33493,215.73752,19.795258,36.933777,4.235 345,283.1242,199.30162,18.50003,31.102585,4.204 345,493.81345,228.27908,238.43643,515.68884,4.185 345,314.53375,215.5268,20.222961,39.22348,4.169 345,130.35718,205.30814,41.973633,87.74283,4.148 345,186.70139,215.46817,19.643387,32.191864,4.137 345,402.3633,218.72577,31.542267,56.573273,4.121 345,235.66153,198.16284,31.330933,48.022537,4.091 345,-6.8814826,226.94196,19.748146,45.860382,4.087 345,282.8232,214.3702,19.780548,35.75322,4.056 345,145.93723,206.66638,42.467087,86.446106,4.006 345,78.26059,195.20479,27.383438,61.64061,4.004 345,300.05847,195.85785,19.278809,35.95485,3.958 345,291.62708,198.55896,41.18509,77.684326,3.944 345,383.44086,195.81041,31.12561,66.38521,3.875 345,-12.940416,224.97906,31.51645,66.781006,3.854 345,193.29059,212.5951,34.728394,55.401672,3.822 345,307.34174,215.02437,19.46759,38.487503,3.82 345,309.48392,212.34433,29.622711,63.785248,3.807 345,178.24083,210.75623,33.203445,57.457825,3.8 345,162.44809,208.40768,19.84085,29.190765,3.794 345,217.06671,223.50024,35.924698,62.981445,3.793 345,106.66848,197.6015,19.895027,42.139923,3.778 345,-8.31724,41.88082,37.603653,99.719124,3.764 345,596.58704,-21.85697,29.55719,69.93069,3.75 345,1.527847,203.17455,19.511438,40.968155,3.749 345,606.0584,-33.312073,28.040833,73.41363,3.744 345,264.33536,192.23853,20.825043,34.996414,3.736 345,577.00006,190.23486,47.951843,157.95117,3.735 345,614.64734,135.11,24.278809,81.0289,3.731 345,137.13866,209.30106,21.603027,32.41803,3.731 345,2.5344253,-41.53804,41.8137,102.340034,3.712 345,171.26611,190.9621,16.416672,36.895004,3.695 345,510.906,-38.00236,27.754028,77.80552,3.695 345,612.8522,62.204426,27.71759,85.64862,3.688 345,202.51343,226.42021,35.732727,59.761368,3.684 345,-7.539443,340.5115,36.436993,108.808716,3.681 345,489.03134,-174.00742,235.78104,412.57666,3.674 345,12.431286,177.47931,53.127712,121.77231,3.659 345,586.72003,152.84723,21.439636,44.09056,3.651 345,51.841125,193.07393,39.631424,88.15465,3.605 345,162.29413,207.02628,41.78798,85.97943,3.603 345,-5.674312,202.89084,17.876404,40.50331,3.598 345,46.561607,196.20709,29.257446,66.917725,3.567 345,49.70287,187.2394,21.155888,44.692566,3.563 346,470.65576,204.47517,21.04956,46.4599,14.633 346,78.98461,207.87157,23.349693,40.468735,10.858 346,422.20782,191.83194,37.83078,84.65091,8.795 346,603.67834,-55.230835,52.803955,135.33388,7.139 346,-17.528355,-64.50344,56.3941,149.4284,6.467 346,145.97414,210.02303,19.685135,31.660614,6.137 346,314.91943,195.85732,18.161316,34.26834,5.911 346,-5.225065,-17.528625,16.808731,42.75078,5.798 346,-12.556835,477.54193,30.643715,62.92389,5.714 346,627.099,-17.365265,17.380127,45.653248,5.564 346,-6.5013227,489.40286,18.905952,43.052216,5.476 346,-11.250733,-32.774025,29.259552,73.16234,5.351 346,612.8482,454.11432,40.168884,107.579895,5.29 346,434.21634,218.05646,32.87854,71.23239,5.287 346,63.65676,199.83423,29.617096,54.016388,5.266 346,537.90936,177.20786,22.782776,40.64087,5.247 346,626.3495,487.34634,21.340698,46.90805,5.067 346,446.85117,142.07631,30.572296,85.9344,5.061 346,170.17773,221.69925,19.893738,30.576035,5.021 346,516.64764,-33.547504,29.379639,75.02285,4.958 346,3.0469723,212.33308,18.665638,52.06688,4.946 346,573.941,177.36304,26.194397,70.25821,4.917 346,582.9203,412.31018,71.772644,175.61584,4.914 346,-73.241165,265.0984,200.9524,462.1443,4.911 346,-22.019249,402.0849,79.27936,175.40228,4.881 346,283.7134,200.80885,17.733398,30.601746,4.875 346,-5.1288934,182.79758,18.62278,47.877716,4.864 346,623.169,-34.219044,26.230652,74.763374,4.853 346,307.38098,191.32753,19.452515,36.413406,4.85 346,306.8585,206.22409,42.893982,77.160645,4.76 346,595.07837,-46.248848,43.07898,101.715614,4.742 346,536.7437,310.73987,142.73456,342.04126,4.673 346,309.7731,206.82613,16.117645,29.87436,4.608 346,249.40955,205.02597,23.273682,37.093582,4.6 346,-9.53129,170.18506,28.595594,74.27716,4.599 346,177.6892,221.18858,20.285797,31.38881,4.589 346,552.0055,-18.00699,20.956116,44.68348,4.589 346,541.03705,-32.22527,30.61145,75.091675,4.577 346,300.7467,199.323,17.893402,32.16281,4.56 346,162.07658,221.07054,20.20308,31.444138,4.537 346,153.38939,219.5659,20.66011,31.05185,4.512 346,-3.5127137,219.02237,16.733513,47.362457,4.474 346,106.36649,204.77176,34.568657,52.80356,4.441 346,391.9626,179.12183,25.689362,74.789276,4.373 346,251.371,208.70966,32.355286,57.29019,4.373 346,493.52322,228.23181,238.66232,515.33746,4.372 346,322.65408,197.61852,15.703308,32.228012,4.324 346,178.91995,218.41881,33.453796,57.65242,4.316 346,112.04735,212.85005,45.57509,78.44615,4.287 346,324.6978,220.9524,31.016907,70.31586,4.206 346,1.4838314,178.72537,25.005423,79.80066,4.196 346,586.5379,-99.28664,74.38861,234.7521,4.147 346,79.96491,210.81755,45.091988,78.98012,4.144 346,86.34075,212.44933,24.998825,40.825027,4.133 346,301.06906,221.20201,30.525543,63.345627,4.114 346,575.5179,173.88074,49.78174,126.41644,4.088 346,113.91773,207.53409,21.979408,36.349792,4.064 346,406.9484,150.12003,30.91214,91.49782,4.059 346,427.09723,239.53094,36.89389,67.48505,4.009 346,10.133329,211.61842,19.62541,52.027756,3.983 346,580.29315,171.50768,37.409546,77.17172,3.948 346,3.1576471,-15.005922,15.96543,38.98984,3.939 346,172.20093,207.94286,15.754852,33.36931,3.9 346,428.24673,141.10835,29.34842,91.25331,3.89 347,521.76825,206.06381,22.544739,51.481598,71.459 347,41.747494,206.74226,21.421566,44.707428,29.696 347,487.44443,201.10138,35.992706,98.65039,19.89 347,621.5034,-33.73895,27.833801,75.94215,8.771 347,407.6631,195.81384,22.834412,57.948837,8.184 347,509.4463,202.27058,31.998901,71.84224,8.078 347,30.631514,202.6363,27.906153,52.68013,7.535 347,-6.011073,488.88342,18.50506,41.211914,7.155 347,131.07835,205.4238,19.330795,43.09337,6.373 347,601.9094,-58.78164,53.048218,130.30617,6.21 347,49.071434,213.64067,21.33184,38.35698,6.024 347,-11.656063,477.50903,29.581533,62.421814,5.957 347,616.93335,-23.6751,21.777588,53.515263,5.915 347,479.5761,203.92365,30.768768,81.73248,5.877 347,569.3623,134.78537,29.23462,73.563385,5.827 347,500.21246,224.6451,33.424072,80.91435,5.631 347,-17.575447,-64.479065,56.13802,147.13547,5.619 347,626.6771,488.15332,20.992432,45.418945,5.595 347,613.2011,453.26517,39.792603,108.677704,5.498 347,593.5816,-44.721626,44.530457,91.58714,5.486 347,587.17017,110.8788,31.825623,78.6862,5.447 347,290.49924,206.70776,19.126343,32.941635,5.414 347,-5.73557,-17.768305,17.39377,42.486782,5.395 347,308.80942,208.7529,18.402252,34.7182,5.347 347,317.7149,215.5694,28.88971,62.860687,5.319 347,-11.377684,-32.60878,29.682037,72.88511,5.311 347,577.4298,116.74587,32.48889,87.26792,5.258 347,-17.963875,435.8479,55.21265,141.22302,5.191 347,537.2584,312.18814,37.498596,59.479065,5.117 347,582.93317,411.55002,71.92438,176.7424,5.038 347,404.60675,190.72784,36.757355,80.89542,4.906 347,522.08386,318.26175,36.50067,63.133514,4.881 347,315.6873,215.9239,19.891052,38.35388,4.865 347,536.1739,310.05927,143.29437,342.44348,4.852 347,586.9399,-99.496765,72.85083,231.81595,4.781 347,-40.260757,368.5301,110.30479,273.63727,4.762 347,186.05363,214.56856,19.492447,28.627792,4.72 347,355.01498,239.3613,33.006836,73.5379,4.672 347,398.07684,138.05432,27.69989,92.92108,4.651 347,-4.974725,185.70119,17.62501,40.961456,4.647 347,-73.009186,266.9162,199.87521,460.75507,4.626 347,553.0245,309.90198,37.656372,61.180115,4.597 347,493.553,244.67618,30.685211,73.32037,4.556 347,439.0979,185.31851,36.80545,82.214294,4.539 347,420.7677,203.83633,31.413055,76.37167,4.528 347,381.13342,199.85089,29.042358,71.37155,4.507 347,178.10434,213.9562,19.951416,30.449402,4.488 347,490.19995,-179.47563,236.23468,421.69443,4.469 347,338.56433,223.81607,34.54004,74.93536,4.464 347,494.04404,229.49326,237.87888,513.0343,4.434 347,507.8967,253.69218,31.574188,65.95314,4.42 347,298.99185,213.8934,19.688538,38.25354,4.417 347,499.02832,194.7803,31.039673,82.55676,4.388 347,505.17328,192.72792,50.324036,112.715805,4.358 347,618.49414,489.63593,20.672485,43.553772,4.286 348,4.0465574,214.67468,19.109241,53.610657,29.451 348,591.56995,170.89224,43.679993,183.9154,11.845 348,589.0003,208.32504,30.296326,96.37326,8.955 348,603.4487,29.605389,30.879639,92.47516,7.846 348,418.40564,199.81642,22.085236,46.426956,7.377 348,322.82227,218.86485,21.911743,43.742844,6.889 348,602.3609,-56.516464,54.048157,140.22322,6.828 348,613.8402,450.9264,38.704895,110.81091,6.819 348,609.96497,139.34174,28.781128,104.10782,6.769 348,110.87605,208.13887,24.43747,50.572525,6.375 348,627.14935,-18.859844,17.424377,50.092773,6.276 348,511.44397,209.77998,22.498047,46.843704,6.257 348,626.2193,485.00388,21.611267,47.928314,6.04 348,-8.6,465.50638,37.4754,91.8923,5.857 348,315.0601,218.40218,20.509949,43.07115,5.725 348,490.6403,111.352165,32.74826,72.70237,5.683 348,289.71643,212.52107,20.560425,35.255417,5.606 348,-17.629606,-64.79164,56.144257,148.31444,5.549 348,306.1392,218.13823,21.010956,42.52504,5.474 348,-5.743518,-17.816635,17.435364,42.481113,5.458 348,414.1351,151.01988,28.657806,80.36049,5.282 348,516.9303,204.15921,28.30481,55.84146,5.268 348,-11.3490505,-32.372105,29.613092,72.676476,5.24 348,-2.1373515,215.91571,17.727589,46.284058,5.234 348,297.3094,213.77887,20.878845,35.68483,5.203 348,-6.9003963,489.98758,19.534355,42.435028,5.115 348,622.6142,-33.06008,26.909363,77.7324,5.112 348,420.39862,201.44609,29.506195,73.38243,4.977 348,532.0513,201.85548,39.403442,87.20314,4.934 348,536.8729,310.88617,142.46985,341.5827,4.882 348,596.0279,271.36975,40.10144,104.07797,4.862 348,-73.173645,266.2221,200.4167,461.4115,4.859 348,611.60815,103.03726,27.117249,91.248474,4.831 348,463.06348,180.34286,29.439758,76.61026,4.816 348,-21.874786,403.54523,79.22266,173.5451,4.809 348,588.5754,-37.548973,52.17389,151.48923,4.716 348,582.78,411.73724,72.21155,176.14142,4.688 348,283.64734,207.57668,19.705505,31.045547,4.647 348,501.4825,202.80418,37.544525,82.50581,4.616 348,329.85437,225.11105,20.715424,43.28409,4.533 348,306.88254,202.09961,21.047272,37.14862,4.479 348,610.49207,278.83612,37.15674,106.9191,4.386 348,475.78525,121.261566,32.356476,81.43649,4.375 348,493.13998,229.53278,238.66531,513.65295,4.363 348,563.17084,186.4073,50.569458,141.55907,4.324 348,584.6162,-104.866234,76.47809,246.8772,4.314 348,177.15723,215.32664,21.199692,35.208115,4.244 348,266.56146,197.94989,18.267334,29.434204,4.224 348,580.9629,249.65189,34.4823,83.874756,4.222 348,160.2466,195.28702,26.482254,57.86528,4.099 348,555.58765,141.75987,28.367981,78.17282,4.076 348,542.96326,193.55325,50.575806,124.705475,4.048 348,186.38004,231.2794,18.67366,25.321487,4.044 348,515.70703,207.0626,40.61731,90.4084,4.039 348,618.06195,98.3788,19.356262,54.32567,4.028 348,275.01276,202.01988,18.54837,33.13794,4.022 348,395.57767,209.77429,31.40979,75.28305,4.005 349,-5.6069746,488.68063,18.174824,41.52658,7.8 349,626.66614,487.66406,20.593872,44.657898,7.18 349,407.04892,206.3789,23.077179,51.279694,6.915 349,-11.065676,477.45657,28.885244,63.19876,6.823 349,622.89746,-35.11594,27.100037,77.95301,5.801 349,-17.708618,-64.60718,56.323524,148.01881,5.619 349,627.4734,-20.142242,17.439453,49.83874,5.595 349,613.7405,453.3719,38.689026,107.49298,5.593 349,618.8972,488.64676,20.290771,43.234222,5.348 349,-11.347327,-32.5108,29.66586,72.8669,5.178 349,-5.7983756,-17.825722,17.481764,42.51674,5.14 349,420.2934,217.48683,32.066864,75.2849,5.112 349,602.81067,-57.991745,53.83966,139.84143,4.975 349,-17.764614,437.26797,54.986076,140.07413,4.972 349,542.71277,-36.577007,28.262085,72.31406,4.942 349,-72.46932,266.1662,199.53319,460.91815,4.939 349,-39.897747,369.0268,109.59308,274.14093,4.889 349,536.68195,310.22214,142.68866,343.38492,4.769 349,323.61453,217.34949,32.518433,59.007477,4.726 349,537.10516,170.53845,34.548767,83.06381,4.72 349,314.63672,216.39917,20.411499,35.312073,4.65 349,583.35895,409.50992,71.16937,178.61526,4.631 349,3.106299,489.43536,17.94236,39.338196,4.553 349,566.29706,-33.698547,28.553894,66.0942,4.369 349,493.13263,228.11346,238.638,515.9869,4.336 349,422.5629,188.3198,27.927826,65.39842,4.309 349,429.4137,163.06676,30.07013,76.914215,4.301 349,614.0209,134.51077,24.95874,79.44974,4.245 349,615.9809,335.141,26.77533,85.79782,4.161 349,436.68457,219.47754,30.721771,76.39807,4.146 349,412.77652,192.96573,27.48285,64.74106,4.138 349,488.80743,-178.55417,236.31757,418.34015,4.029 349,375.7686,188.85611,24.839935,60.99916,4.026 349,329.946,218.99043,22.672028,37.484604,4.024 349,526.61206,-34.39968,27.79132,74.81584,4.017 349,5.295602,467.81946,38.00013,95.96594,3.931 349,586.46857,-104.64009,75.37164,242.31656,3.908 349,453.63507,-15.948883,29.813416,67.40202,3.837 349,260.97403,175.23315,29.784088,53.96498,3.784 349,619.0946,-10.782066,20.10498,47.950073,3.756 349,250.23505,212.29164,20.32721,39.58548,3.736 349,-4.653726,315.04916,15.425573,37.95096,3.726 349,571.8331,172.66609,29.797607,71.45766,3.719 349,266.47626,190.9255,18.829865,30.495926,3.716 349,606.0679,-38.1821,28.129883,77.641266,3.699 349,444.14197,83.539604,28.025757,90.62324,3.673 349,521.75037,143.08122,31.913574,84.38582,3.657 349,385.24353,193.65294,21.22226,49.27408,3.652 349,484.31796,100.993744,32.519867,87.36456,3.651 349,478.26187,176.45279,51.286163,115.91559,3.636 349,308.38754,211.4976,31.278442,55.85823,3.631 349,298.8178,199.78748,18.60373,32.866745,3.629 349,152.12941,210.08156,23.948318,35.944763,3.623 349,527.2296,182.8357,30.720459,70.61963,3.622 349,322.49683,217.30942,21.773804,36.887634,3.607 349,581.8418,-34.830853,29.031128,70.03535,3.598 349,88.40478,168.13731,20.763916,55.13315,3.584 349,-38.898632,-121.41181,119.36029,285.97604,3.575 349,-8.699913,341.8454,37.08715,107.62247,3.55 349,132.20996,200.37822,31.853027,52.099503,3.546 349,598.8464,134.72202,36.445557,100.36458,3.532 349,291.83728,481.32303,32.829956,61.043976,3.53 349,-4.6897597,331.5184,16.341394,39.99228,3.514 349,581.85004,143.11693,27.017761,75.15729,3.51 349,292.43823,197.48615,18.40097,33.077286,3.506 349,399.68353,185.87823,25.550354,66.09236,3.506 349,-4.155484,443.99612,15.4278145,37.18564,3.462 349,592.76263,148.3912,27.563782,81.380646,3.434 349,475.98264,-15.408632,30.95874,67.981476,3.415 349,306.5228,214.14627,20.191528,35.432037,3.413 349,168.34497,200.54018,22.788742,38.840546,3.41 349,187.62527,224.55759,32.003204,64.642,3.408 349,402.3097,223.21841,34.039368,71.611694,3.406 349,0.5173409,220.29927,23.128845,39.231308,3.38 349,-4.922214,346.26657,16.797176,41.52301,3.374 349,476.99646,-23.524822,54.64337,140.1745,3.363 349,10.473438,489.9858,19.086288,39.921967,3.362 349,597.7723,459.96918,38.345154,98.863525,3.36 349,2.8702478,-15.933767,16.533627,39.455585,3.357 349,-11.347562,186.39027,30.871922,66.99066,3.354 349,446.21036,-33.179756,28.291138,76.66571,3.353 349,572.8527,156.23709,51.677063,132.25928,3.353 349,522.7243,-18.550516,17.470947,42.837467,3.35 349,227.04333,202.00905,32.711426,61.84514,3.331 349,561.74506,-22.575346,20.42743,45.52625,3.303 349,530.18,-20.090414,18.619324,45.00842,3.281 349,-9.119202,146.44025,28.769361,75.22972,3.271 349,-4.610281,427.66367,15.569273,38.24057,3.267 349,515.31396,-16.00539,16.681458,40.083637,3.266 350,405.94394,198.54388,28.967804,61.929565,8.82 350,626.5363,486.4932,21.353943,45.44284,6.814 350,591.37164,184.2437,27.983948,73.063736,6.763 350,622.7041,-33.65725,26.996338,79.15727,6.647 350,613.1036,452.16852,38.51703,109.24078,6.199 350,60.46118,196.8535,29.168442,63.496597,6.075 350,-5.8821344,489.36972,18.252174,41.05008,6.069 350,314.29083,214.55328,20.61737,35.198914,6.065 350,-9.513087,464.81995,37.999634,91.413025,6.06 350,332.92627,218.53491,31.299774,66.852356,5.747 350,601.80426,-55.52652,53.327454,135.90578,5.653 350,330.70648,219.45497,21.603241,40.894333,5.622 350,-17.669771,-64.38522,56.159996,146.84985,5.541 350,618.8691,488.242,20.648193,43.37964,5.433 350,627.02185,-20.41889,18.235168,51.352467,5.39 350,-5.7006054,-17.714344,17.394777,42.49039,5.389 350,283.53552,196.2124,19.050293,29.651901,5.316 350,573.07776,194.71768,29.216003,63.82434,5.269 350,83.77919,195.07907,30.242027,61.43976,5.187 350,-11.326842,-32.466026,29.615448,72.91487,5.153 350,-18.011145,435.04456,55.25408,142.24493,5.053 350,313.54443,200.50418,20.97641,34.09503,5.046 350,-72.86266,265.92084,199.98703,461.43488,4.904 350,586.2287,-99.45291,73.456116,234.26787,4.89 350,-39.59573,368.81085,109.34964,273.3958,4.885 350,250.364,206.18536,18.720505,32.460434,4.862 350,536.68604,309.80206,142.82983,343.61078,4.814 350,582.96497,411.42703,71.71338,176.84628,4.793 350,421.9602,206.81886,30.002838,65.82329,4.766 350,510.22345,5.135704,39.07245,76.08981,4.72 350,516.7616,183.98973,37.453064,80.09972,4.718 350,344.4038,225.01242,23.983673,47.49167,4.655 350,305.60623,190.82135,21.929169,37.56201,4.591 350,520.44836,166.91281,24.999207,70.80902,4.566 350,316.20862,211.76794,31.41043,62.93097,4.511 350,265.82324,193.23196,19.3154,29.362366,4.467 350,362.41855,180.90022,17.87732,44.36548,4.452 350,477.74884,182.9474,29.175018,72.946106,4.432 350,128.5681,219.52095,25.918869,41.231186,4.397 350,493.58002,228.07541,238.10016,515.6632,4.345 350,515.70154,214.3796,32.47052,66.42326,4.341 350,299.73737,194.1722,19.245667,32.99742,4.333 350,451.243,176.28159,34.21341,64.69557,4.314 350,412.02252,221.94737,32.637146,72.500656,4.311 350,389.97748,193.43219,28.868164,58.607056,4.298 350,211.79628,209.4764,32.74893,59.128494,4.276 350,600.9333,207.53351,20.99231,45.87393,4.258 350,441.18436,24.461315,32.194977,78.333694,4.254 350,508.94708,-32.73266,30.518677,75.19035,4.242 350,290.43637,199.83202,18.051422,29.024033,4.241 350,399.07394,-33.594128,27.399261,71.7011,4.222 350,529.56824,197.8186,42.83783,81.39896,4.178 350,425.9615,219.68694,32.59308,77.99147,4.162 350,258.6265,208.09296,18.741333,29.54248,4.153 350,357.05246,202.67502,31.180939,62.250244,4.118 350,322.40582,218.97388,21.285706,40.850586,4.118 350,489.1507,-178.05063,235.28009,418.8722,4.106 350,242.9052,204.001,19.533463,35.824707,4.075 350,108.585815,201.53523,28.525879,55.353165,4.068 350,409.76227,-15.706848,18.846619,40.381367,3.995 350,584.57446,201.71765,23.932373,51.51744,3.994 350,385.33606,190.37726,19.378357,41.308945,3.991 350,614.9995,-13.307028,24.332153,80.737976,3.948 350,499.18628,3.2948608,35.1734,91.448265,3.946 350,616.019,134.59668,23.492493,89.51697,3.921 350,433.6931,201.16702,40.612885,76.43967,3.879 350,545.952,200.77756,43.00818,78.93799,3.873 350,501.06506,45.98635,32.827026,88.886024,3.86 350,-8.130444,357.9007,37.775017,107.30823,3.812 350,618.29474,-21.590841,19.733337,51.821594,3.81 350,217.77261,213.19089,20.392761,35.133728,3.805 351,553.43774,191.64703,31.265137,78.660736,8.623 351,395.95,203.41786,19.116028,46.99315,8.567 351,52.668472,204.87941,30.560287,67.79329,8.106 351,627.42584,-16.309679,16.63147,44.131695,7.722 351,35.964565,207.50809,30.572643,65.94083,7.393 351,623.77246,-34.711693,25.588135,76.02394,7.204 351,427.27704,196.16664,30.297455,61.914932,6.312 351,49.406704,210.4089,22.447582,49.44223,6.188 351,603.00256,-55.31732,53.105835,133.08958,6.022 351,619.8197,-17.084959,16.419434,41.85104,5.922 351,68.76401,215.45584,30.069626,64.87509,5.85 351,307.04645,209.92073,20.340302,34.56505,5.787 351,243.13089,213.62042,16.367584,30.54892,5.785 351,19.375002,207.47313,31.807516,70.19826,5.727 351,-9.201604,464.20532,37.846226,92.79236,5.722 351,626.26855,487.26913,21.378235,45.572296,5.698 351,-17.638273,-64.9124,56.11167,148.48459,5.549 351,-6.147129,490.4792,18.240646,40.57959,5.517 351,235.96239,211.08678,16.970444,32.19168,5.499 351,470.91547,114.778114,23.572815,51.2069,5.485 351,410.70468,208.28403,21.038818,47.113464,5.427 351,-5.744161,-17.845861,17.403221,42.596386,5.366 351,613.51764,452.45932,39.09619,108.5748,5.363 351,-11.373725,-32.526524,29.696362,72.87014,5.275 351,-73.14006,264.97455,201.35307,463.1004,5.245 351,251.30707,216.40944,16.655457,28.701721,5.234 351,-18.440428,434.62555,55.84761,142.75629,5.045 351,331.1975,234.2387,32.47348,68.61018,4.995 351,32.7574,211.99013,22.991531,48.25609,4.927 351,555.0074,100.51038,30.33722,103.72375,4.897 351,-0.2971208,203.64801,25.559029,78.91461,4.838 351,586.0414,-96.49865,73.79047,229.82812,4.821 351,284.78564,204.14597,17.367828,29.06839,4.802 351,135.8824,199.02243,22.384628,51.54236,4.79 351,178.22462,229.24876,19.484879,31.37999,4.762 351,-40.143818,366.67078,110.55879,275.65894,4.719 351,186.79893,230.50343,18.349136,30.521835,4.718 351,525.6155,-33.69773,28.670288,72.98867,4.685 351,536.4624,309.94434,143.31042,343.80542,4.684 351,1.0821974,144.36389,26.23086,80.532,4.665 351,397.62006,203.03503,28.0708,67.20795,4.654 351,583.342,409.93942,71.3443,178.10074,4.641 351,316.12036,226.80978,31.403137,66.82623,4.634 351,276.10443,203.17929,18.034485,30.54152,4.586 351,368.75146,168.91959,20.661957,53.30063,4.574 351,574.6343,187.31895,50.304688,141.4131,4.565 351,413.14282,207.40628,28.013672,68.102325,4.533 351,445.74152,191.04852,32.065796,68.63342,4.49 351,572.359,-33.50389,28.739258,73.12203,4.472 351,-9.675709,155.77559,28.654978,79.73198,4.465 351,581.15125,204.02284,30.026184,56.395096,4.422 351,92.26965,219.6293,28.74907,61.429565,4.407 351,594.76965,-46.055286,43.14392,97.885895,4.395 351,547.8011,163.85762,32.096985,79.1443,4.376 351,493.8415,228.0726,237.2088,515.2855,4.373 351,151.57574,194.84615,26.798508,57.34822,4.343 351,614.2095,203.58887,26.53363,73.24234,4.318 351,419.0315,210.34357,41.182587,80.74878,4.301 351,169.63742,229.33676,20.258041,30.389374,4.245 351,314.01556,226.21223,20.841797,41.159134,4.214 351,370.7218,202.36131,31.672974,74.86577,4.213 351,461.1358,113.995224,31.23526,74.78949,4.166 351,437.55505,112.13295,28.222473,68.21683,4.155 351,357.17258,155.56555,30.242157,71.46373,4.105 351,559.76733,-38.148685,28.095215,81.03596,4.078 351,535.93207,189.13542,30.92743,67.379745,4.073 351,341.9348,207.31827,29.146484,62.447357,4.068 351,542.6002,177.15489,49.60492,119.78029,4.064 351,290.8578,213.02612,18.516663,30.780548,4.059 351,284.08255,215.76163,16.981628,26.690857,4.046 351,-5.3550773,188.09833,17.955103,49.1568,4.038 351,259.4269,216.83418,16.913849,26.93895,4.027 351,509.7673,-35.689575,28.67575,73.73512,4.024 351,506.91284,284.31274,37.256836,67.871796,3.998 352,53.172565,214.12697,27.969921,61.85762,7.398 352,622.03687,-35.028587,27.98175,76.9982,7.304 352,626.65314,-19.679379,18.50592,47.699024,6.919 352,-6.2477775,489.39325,18.921251,40.774414,6.573 352,-12.0248995,478.20807,30.24794,62.11023,6.448 352,626.6387,488.90997,21.241028,44.637695,6.193 352,348.21942,208.02725,31.762512,68.86185,6.188 352,372.76422,196.95258,29.624939,64.08954,5.936 352,612.6972,455.86472,39.72827,105.88541,5.921 352,-17.831347,-66.05915,56.15673,150.60774,5.905 352,605.2257,184.08745,28.062012,78.58043,5.857 352,532.56213,136.4237,29.481506,80.95062,5.814 352,399.64917,194.70148,27.661346,68.172485,5.794 352,618.8414,490.42416,20.12738,41.99521,5.747 352,302.94894,214.67294,24.094452,37.831482,5.557 352,-5.7338877,-17.72491,17.376984,42.345966,5.446 352,602.72705,-56.80068,53.341125,134.00697,5.257 352,-11.357369,-32.42801,29.656673,72.63172,5.244 352,617.66486,-21.196095,19.833252,47.95315,5.222 352,-73.62769,265.38052,201.8699,462.65805,5.174 352,540.6876,-32.498436,30.260742,72.978836,5.164 352,543.1306,130.77893,33.862366,79.74988,5.147 352,613.09515,-21.814255,29.206543,74.429085,5.106 352,537.81104,233.07129,32.232056,83.70221,5.038 352,235.30089,222.75076,17.252289,29.901138,4.975 352,-21.460905,403.61343,78.75958,174.5369,4.965 352,38.95332,211.57986,29.375217,67.46286,4.951 352,242.93661,225.70435,17.959991,27.385986,4.916 352,363.31592,206.4739,32.28723,75.87695,4.908 352,582.6414,412.84924,72.120056,175.59027,4.881 352,536.6532,310.23694,142.9638,341.3849,4.863 352,-10.404419,166.82947,28.411165,76.333405,4.828 352,537.6647,-15.724068,19.933533,42.423588,4.8 352,-15.209508,188.12523,47.771805,131.23738,4.782 352,312.0124,228.04065,23.438019,38.79898,4.78 352,-5.413034,166.11511,19.141134,49.5623,4.524 352,493.6966,229.23096,238.03912,513.31976,4.522 352,227.16032,229.37573,18.471481,32.787994,4.516 352,219.6031,230.28242,18.095566,31.771072,4.506 352,293.74115,184.89374,32.48163,64.666595,4.395 352,298.5387,205.38821,22.611023,39.52478,4.383 352,396.97177,234.82797,33.013855,76.41998,4.373 352,403.9947,169.04872,29.529907,74.72713,4.369 352,211.03214,229.47108,18.720367,30.872543,4.364 352,488.75534,-178.09299,237.3544,418.9048,4.357 352,-12.522106,89.88698,31.692047,63.854828,4.34 352,328.9418,232.3447,23.37204,46.381683,4.335 352,586.60913,-101.699554,74.38245,234.6309,4.327 352,203.0018,229.94421,18.812393,29.484985,4.268 352,451.3783,219.32217,41.664734,97.75485,4.266 352,251.14935,225.71152,17.777771,26.507202,4.265 352,-4.915658,207.657,17.41892,47.41089,4.26 352,594.49084,-46.71451,44.80719,97.12775,4.224 352,13.244386,185.1063,52.896774,109.9592,4.208 352,20.24252,209.53006,28.537205,69.39114,4.176 352,352.98248,185.47144,20.500366,50.03624,4.135 352,6.2212825,149.58041,27.842873,79.39053,4.116 352,41.57951,194.65634,20.770046,49.87607,4.056 352,493.99994,-38.335495,28.23523,68.87502,4.053 352,-4.6066566,140.30806,17.150345,42.504395,4.044 352,409.86957,208.68336,22.378326,55.601334,4.043 352,97.18547,199.11041,27.484467,67.02655,4.038 352,555.7091,-14.456125,33.192566,62.315804,3.984 352,550.4951,127.40686,23.244873,51.05536,3.948 352,576.89,157.01636,48.373108,132.44586,3.9 352,-16.517544,123.78027,51.61913,143.13391,3.881 352,63.46773,207.57513,28.146542,59.244568,3.88 353,621.47516,-32.151745,27.194397,74.46453,8.875 353,303.89362,214.3318,22.232666,37.898163,8.747 353,-1.0720289,212.64157,26.733711,69.387726,8.161 353,626.55505,488.46487,20.902588,46.07846,6.558 353,-17.874088,-66.66803,56.314926,151.74438,6.357 353,601.7173,-58.521217,52.72229,130.6918,6.065 353,613.42053,453.49295,39.443787,107.483246,6.023 353,-11.555412,477.48154,29.365692,63.609467,5.861 353,-5.9257298,489.18347,18.588417,41.75708,5.819 353,593.6056,-45.973732,44.51538,92.88503,5.704 353,368.99213,179.84413,20.658112,56.164474,5.683 353,-5.436368,218.24516,19.579292,50.636,5.544 353,52.561043,210.10416,31.053467,64.201385,5.537 353,1.7895162,138.84448,22.934086,51.553314,5.441 353,618.7258,490.12793,20.29248,43.289734,5.177 353,-73.343765,265.68237,201.42278,462.29352,5.166 353,-5.751487,-17.866539,17.423866,42.75615,5.107 353,-11.3004675,-32.464657,29.617054,73.15438,5.073 353,11.087432,181.2218,56.900734,109.93863,5.056 353,617.73566,-23.781446,21.766785,53.884846,5.052 353,427.14725,212.60104,20.172241,48.76303,5.041 353,25.264225,214.62482,30.59386,62.748474,4.98 353,-5.963204,177.95995,19.504057,46.79918,4.932 353,-21.647976,402.2094,78.883286,175.45251,4.845 353,583.3606,410.18735,71.46277,178.16104,4.843 353,365.95456,207.55295,28.89212,71.506195,4.822 353,589.1249,-35.421124,29.153809,75.65513,4.754 353,586.1945,-98.741295,74.28827,231.28809,4.753 353,397.1892,209.75546,28.30075,63.946564,4.735 353,-9.298746,181.12845,28.469402,75.1915,4.7 353,-15.442873,159.37648,50.17447,135.72508,4.675 353,514.1398,240.53606,35.206726,65.99553,4.674 353,536.62396,310.9255,142.93146,342.8494,4.648 353,529.7088,240.54483,35.174805,64.70996,4.559 353,459.9451,147.85289,27.445923,77.88893,4.51 353,439.6272,218.78807,24.485535,51.133682,4.395 353,265.88156,204.42073,20.84668,33.466217,4.389 353,493.35925,227.17776,237.9779,516.3102,4.357 353,441.36166,196.49239,21.036682,46.859573,4.338 353,13.274468,169.31339,31.314766,73.31476,4.332 353,499.83667,243.16577,33.23175,70.52899,4.29 353,462.86603,210.73016,29.5737,71.12372,4.236 353,4.285222,131.86584,34.73772,80.23076,4.233 353,560.6804,220.57806,20.10791,38.905823,4.22 353,162.11185,235.37376,19.644562,30.95906,4.186 353,458.55957,-11.990717,16.987762,37.993134,4.179 353,332.76935,233.24692,31.8349,69.68402,4.134 353,-5.6439157,160.83238,18.760118,44.155823,4.127 353,281.86594,205.49205,20.278961,34.693375,4.066 353,429.38297,216.55667,28.928314,68.136536,4.057 353,413.7652,211.38081,29.109436,63.233994,4.045 353,186.94531,228.05902,19.108612,30.157867,4.026 353,25.480337,179.44821,32.309494,75.3452,3.985 353,275.86996,209.11748,18.85147,31.987564,3.981 353,137.20064,211.44438,20.506744,42.409073,3.96 353,-4.4594336,362.54285,15.649437,40.154877,3.955 353,380.0211,210.17255,30.10086,71.70532,3.955 353,451.02554,-11.462647,16.579681,36.695026,3.945 353,-8.56482,323.5788,38.046745,106.47043,3.922 353,6.671921,180.08704,28.283482,80.4321,3.904 353,-10.52074,231.77385,39.548046,93.39357,3.901 353,555.3331,218.41267,29.449707,60.968246,3.899 353,194.33687,227.73402,18.9785,30.137009,3.883 353,563.2856,204.81502,17.420898,38.775345,3.869 353,1.0988915,245.07213,20.758827,48.427322,3.838 353,243.17142,224.9257,18.246979,29.302383,3.835 353,381.96033,174.54807,26.710083,72.55658,3.823 353,235.09705,222.90797,17.98912,30.343353,3.809 353,474.38678,-11.9444475,17.015778,39.035007,3.808 353,41.55934,182.38654,60.32115,107.400635,3.784 353,312.45508,228.68094,22.500305,34.885498,3.773 353,-4.9991913,242.28168,18.091476,47.580566,3.768 353,291.81677,209.38078,40.80072,65.426834,3.76 354,418.35037,161.74481,29.535706,84.060104,19.902 354,453.0381,202.54881,26.352814,72.0143,12.174 354,305.62427,212.72961,21.908875,37.43094,8.733 354,399.3613,177.85255,26.154907,81.99187,8.705 354,407.18024,165.2455,30.575043,85.23836,7.182 354,621.83466,-35.229404,27.788086,75.27162,6.599 354,613.1393,452.94974,40.004883,108.55252,6.546 354,626.81647,488.71802,21.010803,44.841553,6.28 354,463.88135,203.93892,21.090332,59.793594,6.265 354,-8.890213,465.22644,37.638462,91.424805,6.06 354,-17.951117,-66.35254,56.184914,151.3786,6.051 354,283.16745,204.65805,19.36081,35.708755,5.995 354,467.12805,196.45775,37.015686,79.75673,5.994 354,431.2471,157.67667,23.441376,61.128265,5.984 354,514.9198,213.65024,43.86615,82.76425,5.764 354,-6.0758724,489.46652,18.46352,40.911285,5.625 354,276.0673,205.13657,18.66629,33.944473,5.582 354,-5.7003164,-17.765202,17.418755,42.50979,5.424 354,266.4826,200.83386,19.95221,35.21736,5.383 354,453.49353,171.26129,37.371033,86.69556,5.314 354,471.75125,193.86938,22.129944,50.369064,5.313 354,602.60614,-57.087173,53.85254,133.94162,5.265 354,517.44135,198.6156,28.389221,53.48938,5.168 354,-72.89529,265.78326,200.68811,462.39362,5.137 354,508.552,212.62608,34.351807,64.07753,5.111 354,437.69275,161.93053,29.543,78.21657,5.111 354,426.5822,185.18486,30.230652,82.35991,5.092 354,615.33026,145.32578,26.279907,95.50336,5.07 354,-11.282747,-32.393536,29.515339,72.83379,5.069 354,392.2366,165.65558,26.148224,79.050964,5.046 354,342.6213,207.5333,28.291443,56.015472,5.036 354,536.3772,310.25696,143.66095,342.2213,4.937 354,-21.328396,403.76984,78.60336,174.27289,4.91 354,626.3021,-20.689568,18.881042,48.650112,4.896 354,582.55316,411.62268,72.21503,176.87598,4.797 354,586.50256,-100.35244,73.76593,234.33707,4.781 354,546.80786,221.35883,41.481323,92.98657,4.727 354,243.39359,224.5642,18.474823,30.30896,4.644 354,544.2957,194.42207,26.774353,68.103714,4.607 354,-9.748165,217.95088,38.373253,96.19386,4.589 354,530.97906,209.55737,42.224365,78.68234,4.588 354,493.76785,228.92346,237.6932,513.1518,4.544 354,594.35144,-47.26098,44.28705,99.49304,4.498 354,388.292,206.10515,39.588745,87.56102,4.481 354,387.54407,-11.456234,32.016785,64.353905,4.44 354,356.15298,211.90143,40.01175,82.69849,4.429 354,235.38187,223.3582,18.004074,31.24199,4.418 354,618.7452,491.7177,20.448608,41.522095,4.412 354,311.33844,220.13225,22.790894,36.472702,4.408 354,257.88745,201.22227,19.092804,33.36676,4.4 354,340.17175,212.81003,39.84723,82.26926,4.366 354,65.0855,182.13898,32.11165,75.1861,4.348 354,483.01556,211.26323,41.72406,81.88716,4.316 354,410.73828,-12.561012,17.202362,38.56976,4.283 355,514.10803,207.58797,30.654907,66.621445,75.907 355,504.84674,200.90945,28.6391,65.99963,11.938 355,-5.925699,489.4986,18.28323,40.30133,7.762 355,312.34076,210.52563,21.520508,36.6465,7.658 355,-11.658758,479.65576,29.352444,60.949585,6.741 355,622.73816,-34.339043,27.190979,77.12712,6.635 355,2.0071661,109.48311,21.121058,55.050934,6.389 355,513.12427,184.79855,30.128967,64.60211,6.24 355,289.2953,196.01273,21.49176,36.27231,6.164 355,602.6377,-56.577526,53.128662,134.40463,5.951 355,-8.863085,465.2081,37.782753,92.111115,5.922 355,626.53516,487.75912,21.124084,45.957245,5.92 355,274.68707,198.5225,20.339722,35.2827,5.835 355,-17.862331,-65.907684,56.109272,150.52509,5.706 355,250.56314,194.36476,19.425018,31.841217,5.642 355,264.72775,193.16168,22.578247,37.380066,5.641 355,-5.715437,-17.755627,17.406063,42.523346,5.415 355,627.1977,-20.229387,17.914246,49.645107,5.293 355,-73.293365,266.3026,201.1748,461.78033,5.162 355,613.15955,453.13766,39.826782,107.89615,5.151 355,43.163334,199.69528,27.32278,63.380707,5.118 355,-11.298124,-32.403114,29.539602,72.85509,5.101 355,536.3592,308.7615,143.6134,343.21262,4.936 355,-21.48055,402.83716,78.95946,175.18896,4.9 355,499.46747,212.67896,41.751648,96.18732,4.889 355,299.48096,211.89,18.684753,33.05272,4.881 355,251.20578,217.37761,17.535645,26.726746,4.821 355,595.1991,-44.164948,43.135376,94.6991,4.671 355,283.55582,206.51353,18.681091,31.245499,4.659 355,582.9214,411.4063,71.743774,176.5672,4.617 355,478.78046,140.04999,22.805847,44.63452,4.608 355,509.8277,192.99356,45.75354,104.864105,4.563 355,493.6325,229.16055,237.53723,514.40234,4.556 355,611.40497,259.21872,37.650085,119.34082,4.534 355,489.4677,-180.74608,236.32452,420.9556,4.422 355,319.91803,220.8195,22.457947,36.11815,4.393 355,385.18692,211.2739,43.89023,69.688385,4.357 355,252.48323,184.34262,29.822372,51.606018,4.349 355,365.2731,206.1467,26.537933,55.20865,4.324 355,452.86407,184.43701,27.521362,78.12131,4.323 355,499.76288,205.95102,21.487183,52.644257,4.322 355,585.967,-104.10761,74.67816,241.22781,4.282 355,291.65393,211.55887,17.028198,31.2939,4.281 355,2.7836413,491.6455,18.405266,37.89386,4.27 355,427.84924,133.16428,35.43457,79.223785,4.269 355,392.69006,186.55289,61.299774,102.30054,4.263 355,501.01242,-33.49479,30.821014,73.80419,4.234 355,564.50977,113.98167,33.278137,88.65185,4.23 355,483.2698,217.25421,41.890594,95.61365,4.189 355,0.101377964,209.26096,26.644064,69.006744,4.182 355,447.70328,98.68736,22.789856,48.15645,4.177 355,110.73732,193.60532,25.598648,65.95041,4.125 355,618.8063,-21.583778,18.634583,48.55188,4.095 355,576.07654,201.78476,51.026733,161.76132,4.045 355,267.0161,208.26616,18.98767,27.924683,4.018 355,419.10358,209.95607,43.098877,74.31886,3.995 355,450.77246,118.89528,31.87323,73.40202,3.991 355,379.26062,-12.906023,15.6910095,36.31127,3.987 355,363.44818,-12.355454,15.541199,35.211365,3.982 355,243.6444,215.97523,17.87645,28.840881,3.959 355,371.54102,-11.64613,15.514923,35.202766,3.915 355,573.78925,-15.2887,50.776306,127.47841,3.894 355,485.86346,-33.124294,30.179016,72.697525,3.888 355,226.57593,214.24763,18.565231,31.557632,3.886 356,574.45605,193.54309,33.39081,71.45938,14.697 356,485.65842,160.19937,34.980743,80.51932,13.449 356,323.69904,206.90822,19.162415,36.483963,7.989 356,622.29895,-33.08682,27.709595,78.51354,7.339 356,5.230917,225.1122,25.872221,46.85771,6.86 356,626.5737,-20.847298,18.343628,51.57273,6.563 356,328.4477,213.86656,19.111572,35.350647,6.131 356,282.374,191.1837,21.019318,34.675262,6.006 356,-5.9290433,490.19656,18.11477,40.925873,5.921 356,573.9443,164.75125,27.815857,78.51666,5.908 356,601.56,-56.247112,53.66217,138.08139,5.839 356,-17.76263,-65.61024,56.23115,150.7114,5.827 356,618.1106,-21.414715,19.599121,51.51265,5.82 356,251.83109,217.26505,17.50473,27.055908,5.622 356,612.692,454.40497,39.7713,107.51361,5.483 356,-9.370522,195.18045,30.079025,68.46597,5.48 356,77.863815,210.66058,25.120758,47.345856,5.452 356,243.72224,216.38408,17.338974,27.59349,5.408 356,235.78616,217.08002,16.932648,27.25058,5.387 356,273.9291,191.66891,20.758453,35.432404,5.314 356,-5.733966,-17.80611,17.393974,42.638256,5.286 356,381.0878,206.7835,30.880768,57.3188,5.274 356,-8.879663,463.88947,37.69477,93.246216,5.242 356,-73.571945,265.411,201.52945,462.31903,5.217 356,626.4025,487.19662,21.22113,46.937103,5.203 356,2.3251092,192.43408,31.566057,67.05957,5.175 356,298.21613,193.26881,20.235596,34.080368,5.144 356,-11.298016,-32.483078,29.565498,72.979034,5.123 356,259.26547,215.84734,17.952698,28.204971,5.102 356,228.4783,216.77052,16.783112,27.851242,5.057 356,479.05963,169.92242,53.543762,98.00836,4.97 356,444.35864,127.16933,29.758606,72.710266,4.939 356,-21.82101,401.37927,79.22293,175.95361,4.924 356,582.9644,411.88336,71.958435,176.1521,4.902 356,306.74588,206.13083,19.272614,32.094406,4.898 356,548.06024,152.7352,31.195068,66.07257,4.868 356,536.1044,310.2486,143.82397,342.88318,4.857 356,316.68362,205.31416,19.592499,34.617767,4.798 356,-5.2662563,220.59029,19.803286,44.985306,4.782 356,259.3414,188.43092,18.302856,31.04364,4.73 356,520.73615,208.68994,21.733093,33.77719,4.723 356,478.29556,-33.109768,28.093628,74.21026,4.631 356,570.8889,16.4081,32.549988,68.55983,4.611 356,220.01096,218.00566,17.063644,27.411179,4.584 356,575.0156,-32.38291,58.12433,126.92407,4.532 356,493.602,227.77783,238.15204,514.47485,4.456 356,462.0515,-35.73636,28.613129,75.58203,4.451 356,529.8567,191.44571,43.759888,72.62686,4.436 356,482.04608,-19.280485,19.426392,46.051865,4.402 356,290.91333,198.18312,19.090576,32.485214,4.322 356,614.0933,197.9524,25.295654,83.07825,4.319 356,266.337,210.64226,18.66397,26.365738,4.317 356,260.24094,186.44563,29.211823,50.564804,4.233 356,512.5491,203.91019,45.690063,72.12143,4.23 356,363.9756,208.00061,32.390106,64.965515,4.223 356,560.4506,161.09004,29.149109,77.4187,4.191 356,153.09949,227.79243,21.54132,30.014206,4.188 356,257.8055,202.90685,18.934631,30.412521,4.173 356,528.79156,207.19582,20.830688,33.880295,4.143 356,70.39761,178.887,30.2518,78.267914,4.126 356,209.12576,221.15001,35.877365,57.207993,4.101 356,234.04268,231.45912,20.539673,33.98668,4.096 356,515.8662,186.00526,32.382874,62.32979,4.096 356,612.9429,240.06956,29.280396,84.41579,4.063 356,395.83276,204.43965,29.425049,55.03444,4.058 356,585.93964,-106.74703,75.56909,247.24658,4.043 357,542.1715,150.95537,31.85913,85.43471,21.823 357,337.11978,208.96155,18.404999,33.665375,11.305 357,626.5381,-20.490475,18.24231,49.396336,7.206 357,-5.854294,489.271,18.041763,41.371033,6.654 357,626.9422,489.1079,20.55774,45.04254,6.494 357,282.03366,189.61652,21.2547,36.903183,6.431 357,252.17003,216.9305,16.727066,27.777817,6.298 357,603.21436,-54.17695,52.799194,135.40527,6.123 357,-11.670637,477.476,29.770185,62.911682,6.04 357,235.95107,214.61609,16.932175,28.306671,5.863 357,493.4044,169.04689,30.297516,69.17409,5.764 357,331.77747,208.1673,32.23285,59.67914,5.752 357,527.38,159.55246,55.334595,98.631165,5.748 357,-17.756357,-64.9894,56.245125,148.98207,5.715 357,259.0592,186.63893,18.371552,31.76184,5.692 357,243.76434,215.47748,16.967194,28.78534,5.68 357,227.92702,213.55675,16.983185,28.250702,5.501 357,1.3174474,198.28304,29.228935,73.18825,5.435 357,-11.397481,-32.578415,29.716389,72.84384,5.394 357,-5.7809157,-17.844234,17.435724,42.501076,5.394 357,265.24396,188.89058,19.64566,34.485992,5.352 357,551.45734,146.49165,58.993225,107.81477,5.278 357,602.5354,432.51422,56.506836,144.48492,5.229 357,427.64557,209.3036,30.310028,72.43349,5.18 357,186.6489,204.2537,17.457077,30.83722,5.177 357,-73.38743,266.00745,201.46347,461.4751,5.086 357,259.68625,215.13489,17.37674,29.261368,5.062 357,-18.112803,435.34564,55.12372,142.03278,4.995 357,561.86444,156.95212,32.117554,72.16112,4.945 357,-39.965443,367.81912,110.259705,274.20822,4.83 357,494.37515,90.36675,12.981415,24.129204,4.822 357,536.4562,310.05536,143.63538,343.22626,4.773 357,579.359,148.88922,31.482971,66.78873,4.744 357,500.3259,200.22893,29.99936,55.9243,4.736 357,486.13132,88.629875,13.964447,25.252144,4.719 357,261.54608,174.25165,29.000854,54.750732,4.685 357,-9.536978,191.77696,30.573042,75.8604,4.606 357,290.1128,191.34772,21.295593,35.026855,4.589 357,2.5509322,250.129,20.30071,41.70099,4.539 357,493.74194,229.5766,237.32404,513.64044,4.535 357,-1.4172673,165.10367,28.538471,87.26181,4.509 357,534.3598,184.43843,33.770203,63.77144,4.331 357,316.00156,203.3566,19.486176,35.970566,4.303 357,100.59757,197.63257,28.327888,59.890625,4.285 357,258.82758,203.02959,18.080017,29.828537,4.271 357,615.26483,-36.989613,26.896301,74.81967,4.249 357,-10.775943,88.030426,29.260193,66.47902,4.248 357,-6.4983726,247.21301,18.550179,41.3042,4.224 357,220.35387,215.39671,16.65422,26.762772,4.198 357,266.63678,208.7902,17.628296,28.022186,4.161 357,272.99066,184.81021,20.52594,37.398956,4.161 357,404.87976,198.88272,27.361176,60.048737,4.133 357,507.48715,169.98447,30.646149,70.75685,4.12 357,595.545,-43.111046,43.056335,99.298805,4.118 357,369.92337,205.47362,34.961212,62.272507,4.1 357,414.83545,197.62914,28.319183,66.81203,4.097 357,1.9576049,228.24736,41.04869,90.59566,4.018 357,535.2221,142.04347,30.325745,70.32475,3.994 357,116.56826,206.075,29.894432,55.404373,3.941 357,179.00916,208.53677,20.13507,30.646637,3.94 357,619.66547,-20.961056,18.125244,46.24122,3.93 357,618.9515,493.1146,20.046997,40.119415,3.909 357,465.82538,202.28036,43.717102,73.399506,3.909 357,340.08057,217.53215,31.663757,66.26329,3.903 357,345.2566,174.66153,19.413544,37.842987,3.891 357,570.498,161.61772,55.135193,113.97829,3.888 357,-12.313084,224.05898,30.392439,66.18376,3.869 358,338.18448,208.38544,20.554535,38.480804,30.573 358,258.88705,186.03156,19.088684,31.118881,7.323 358,557.2609,162.10529,29.401794,81.259735,7.107 358,281.36646,190.61049,22.351196,34.750946,6.999 358,622.61584,-32.46065,27.075195,75.21953,6.865 358,627.096,-15.549967,17.34253,43.74654,6.617 358,614.10474,89.310265,25.369202,75.1359,6.386 358,614.67267,126.07045,25.436218,89.21849,6.209 358,526.8043,174.68471,26.273682,79.129456,6.123 358,614.0643,3.020321,27.369446,76.51068,5.861 358,-5.742178,490.11636,18.035383,39.971344,5.828 358,626.5794,487.8459,20.763245,46.238464,5.787 358,-8.992355,464.9527,37.798046,92.31268,5.71 358,-17.701141,-64.864365,56.32315,148.40282,5.568 358,418.85535,208.17851,30.431274,66.21089,5.501 358,395.55194,201.65079,32.609436,68.28876,5.457 358,274.00992,200.79846,20.668854,30.300568,5.441 358,20.315922,210.8263,30.392353,51.95819,5.438 358,343.70517,212.71808,21.468903,41.89232,5.431 358,-5.7830615,-17.84139,17.443533,42.47081,5.336 358,-11.401899,-32.580883,29.683475,72.88872,5.3 358,613.01324,454.36096,39.806213,107.77948,5.286 358,4.1501927,205.88138,28.480515,58.72052,5.279 358,-4.52735,207.07913,18.758614,45.148117,5.196 358,602.85443,-55.000343,52.932007,134.45154,5.172 358,-73.35521,266.3758,201.58673,461.56256,5.101 358,582.7073,412.60382,71.982666,175.77344,5.009 358,345.76776,204.65808,16.98642,34.209076,4.956 358,618.5619,-15.167078,17.205688,42.672226,4.905 358,-21.573925,403.03842,78.925934,174.85324,4.904 358,265.10837,191.59114,19.979034,34.952988,4.875 358,273.6851,184.32469,21.193665,37.363174,4.845 358,536.3196,310.69702,143.30872,341.95538,4.826 358,585.6022,139.53467,32.56372,97.36725,4.817 358,484.9457,212.25046,39.68698,85.759125,4.8 358,441.39178,202.84796,26.890106,61.66638,4.778 358,482.95367,98.619064,31.415527,70.07378,4.777 358,244.21555,217.18233,16.441467,26.259384,4.744 358,235.4355,215.5491,16.896591,27.150558,4.698 358,2.0998013,229.54321,21.180513,46.25006,4.68 358,252.38498,217.70421,16.30487,26.555466,4.594 358,365.88138,200.05652,14.372711,27.078613,4.589 358,516.8694,91.766525,30.671143,65.55199,4.552 358,493.25525,228.77899,237.93732,513.9894,4.529 358,567.6141,145.66104,35.822754,91.60135,4.525 358,-8.862413,203.05927,28.377094,67.96686,4.515 358,62.943153,183.54489,28.166069,65.885086,4.465 358,258.16156,201.73654,18.864166,30.22937,4.459 358,37.042976,212.48247,30.136002,56.58287,4.449 358,550.3466,142.26573,27.153625,63.41945,4.443 358,405.44733,-32.685986,30.233673,72.18239,4.419 358,265.76773,179.83658,19.602142,31.712524,4.397 358,425.61456,255.94507,36.668762,60.083862,4.36 358,421.05435,-33.01914,29.873505,72.004036,4.349 358,560.8686,149.25473,23.887024,54.638184,4.317 358,170.13823,201.87825,19.385101,33.55037,4.31 358,616.70984,169.51062,23.812927,84.66669,4.306 358,227.4359,213.19336,17.655182,28.312958,4.299 358,1.4551532,193.84874,20.919168,50.04268,4.288 358,380.05936,219.46317,34.334503,63.602875,4.286 358,243.33069,225.70953,17.780212,30.939575,4.253 358,289.3771,186.72472,22.921509,36.43524,4.233 358,-15.9874935,177.31865,51.43837,122.76723,4.183 358,546.56604,95.723526,21.250244,39.733414,4.156 358,250.37376,231.94998,19.758926,36.058136,4.14 358,540.636,160.43864,28.53357,78.24049,4.138 358,265.28867,223.25807,20.65213,35.508774,4.135 358,468.37344,212.92831,39.979584,82.95273,4.129 358,300.23495,484.9465,32.5018,57.17343,4.118 358,10.552351,184.80899,56.69246,99.50824,4.116 358,451.61127,218.81113,40.596344,91.9538,4.106 359,344.97864,207.04723,20.578918,37.4019,32.709 359,3.3737266,191.92628,27.635653,70.01247,9.458 359,416.3911,191.71606,22.908142,51.260254,7.733 359,626.7502,489.92035,20.566223,43.437195,7.316 359,498.96878,56.887005,31.038422,67.93036,7.21 359,24.639698,210.24178,34.861984,56.001877,7.177 359,623.7098,-34.76551,25.854187,75.49549,7.134 359,280.34814,188.36774,23.650757,37.638885,6.649 359,-17.974098,-64.112625,56.772995,150.11269,6.609 359,627.0973,-17.404469,16.953735,44.637993,6.585 359,43.74559,212.41512,32.531578,49.384872,6.12 359,12.080013,205.2601,31.90377,63.05197,5.939 359,-6.17188,489.75922,18.411884,40.52057,5.904 359,25.703287,195.04556,22.780523,49.14792,5.781 359,-9.04614,464.42184,37.755417,92.450836,5.737 359,-11.632879,478.03644,29.023817,62.04535,5.641 359,603.50116,-55.133507,52.444763,130.84076,5.483 359,272.61124,180.51158,23.524536,39.672775,5.465 359,613.2669,454.1686,39.632874,107.60513,5.446 359,589.2294,140.11798,29.324036,69.39911,5.36 359,-5.440426,-17.486973,17.003395,42.91018,5.253 359,519.4715,58.428745,24.670715,52.55943,5.182 359,155.82721,203.5606,18.270203,29.81134,5.158 359,0.38878202,223.44887,23.158298,54.413315,5.133 359,-73.18429,266.18896,201.11496,460.73773,5.126 359,287.78033,181.5581,24.801453,40.0679,5.093 359,533.1496,133.04964,27.982971,69.47148,5.073 359,256.69885,186.84041,21.46167,33.843597,5.059 359,-11.451336,-32.65371,29.880611,73.804985,5.012 359,82.39809,219.47017,19.856781,28.145676,4.981 359,-21.738472,401.76965,78.9467,176.10828,4.883 359,618.8728,492.83133,19.996094,40.002533,4.875 359,617.8891,187.68771,22.22821,59.99922,4.855 359,583.1581,411.1071,71.48462,177.38113,4.842 359,536.68195,310.02832,143.13287,343.3346,4.833 359,-3.6881757,208.85645,18.194885,50.232178,4.812 359,597.5998,160.77278,29.242004,77.93239,4.711 359,351.9933,216.40652,21.836792,37.491745,4.707 359,251.24103,206.24998,17.774902,28.052124,4.619 359,619.5462,-16.525219,16.361328,40.985703,4.612 359,518.49335,184.08252,26.767761,66.91664,4.582 359,219.42468,192.88603,17.756226,34.587997,4.545 359,483.68457,196.70183,39.619568,81.79463,4.508 359,65.13024,219.67136,20.86444,31.50003,4.504 359,493.5158,228.49527,237.69025,514.672,4.488 359,3.1724918,216.54404,38.881966,99.14874,4.469 359,-14.128668,185.72571,48.42012,124.99548,4.462 359,55.49504,215.96303,22.41404,33.598877,4.458 359,12.3401165,189.32188,51.72603,98.133194,4.441 359,365.479,197.0652,13.023468,27.04123,4.396 359,591.13715,130.97691,23.723022,47.96086,4.382 359,491.08435,204.60614,18.92633,35.586807,4.378 359,235.70706,214.6066,17.393768,28.846863,4.369 359,443.6914,182.07495,31.577484,64.957306,4.366 359,501.1588,105.921875,31.717651,66.59244,4.356 359,414.07056,198.57169,29.008728,74.819824,4.311 359,264.90176,183.94186,21.685883,35.050674,4.295 359,139.40892,202.8532,18.13916,29.008942,4.264 359,-6.047139,239.13597,19.242622,48.74205,4.245 360,351.74393,208.63945,22.0531,42.722794,27.692 360,435.66937,209.68433,16.763153,38.61873,24.119 360,442.921,208.92915,16.449371,38.996994,13.245 360,623.5715,-34.168232,26.169434,76.86279,6.93 360,279.3452,190.39514,25.459778,36.26581,6.858 360,627.245,-17.18724,16.905273,46.222878,6.714 360,9.578114,219.66713,20.241589,36.40837,6.621 360,626.7819,489.27798,20.376953,44.661102,6.518 360,-4.277226,204.66553,16.025772,37.8683,6.395 360,-6.1084766,489.14618,18.608427,41.552856,6.309 360,449.7623,203.71855,17.118805,42.12471,6.165 360,429.63037,204.47119,16.145538,33.27977,6.14 360,603.09845,-54.574017,52.921753,134.89401,5.751 360,-9.229942,463.20923,37.888134,93.96912,5.728 360,-17.758705,-65.2453,56.03766,149.85449,5.56 360,613.2111,454.5468,39.44403,107.256836,5.458 360,257.327,178.51773,21.66748,32.05017,5.415 360,422.30957,207.89915,17.95343,34.91504,5.395 360,-5.6926775,-17.776402,17.362162,42.568424,5.361 360,32.395096,224.65625,22.154724,31.639069,5.324 360,-4.924424,218.82462,16.87334,37.746704,5.315 360,287.7212,182.7443,25.085266,38.24176,5.31 360,2.0736647,214.00269,40.59006,84.77588,5.222 360,-11.312506,-32.516693,29.622694,72.95952,5.206 360,273.21613,198.41907,24.129883,34.629074,5.174 360,597.0855,67.87649,33.668335,75.04084,5.141 360,272.3332,181.84259,23.330505,37.122925,5.115 360,-72.86947,266.1908,200.88977,461.2149,5.062 360,-21.611864,401.90686,78.737595,175.90869,4.902 360,582.9769,411.56653,71.65161,177.19592,4.888 360,580.6362,141.85593,31.034668,62.35521,4.885 360,-4.4062715,189.37128,15.6271,36.438904,4.847 360,264.97845,199.97049,22.742065,32.72763,4.84 360,7.489593,187.11176,60.532013,99.91321,4.814 360,536.4067,310.8686,143.20636,342.23883,4.81 360,503.1823,-33.658203,28.626404,72.28628,4.748 360,335.25092,192.26491,27.963501,59.873306,4.647 360,618.92175,43.089027,19.19989,42.26162,4.578 360,340.7262,193.6904,39.750366,68.11813,4.567 360,370.9103,193.50041,16.641449,33.47438,4.564 360,403.7216,205.08154,16.971436,29.418,4.544 360,576.9149,71.64952,22.23053,42.179306,4.504 360,618.8796,491.22415,19.72937,41.88968,4.484 360,517.3411,-32.086296,29.989685,68.7508,4.436 360,493.83307,227.5513,237.77411,515.0311,4.428 360,424.4018,203.71918,27.96759,52.497284,4.386 360,-15.374706,191.83105,50.820084,123.41199,4.358 360,449.34613,209.94052,42.896606,79.61261,4.358 360,255.3841,193.42932,22.767029,33.394226,4.356 360,-10.751659,201.10251,28.874046,62.434174,4.345 360,3.861322,224.0404,19.880096,38.037292,4.313 360,466.10114,213.5462,42.63434,78.83862,4.306 360,538.8868,109.53818,32.899963,76.00635,4.293 360,32.2368,213.38086,45.142258,66.35251,4.278 360,295.2116,187.57442,24.23581,40.107056,4.275 360,163.52655,198.27762,16.118683,30.558289,4.253 360,363.0267,192.32678,17.71167,38.15074,4.207 360,410.8704,204.32555,16.835754,30.13713,4.204 360,546.66406,72.09027,33.289185,63.53766,4.198 360,553.0352,109.44495,23.362,52.715363,4.185 360,259.53253,163.12509,32.37259,52.74933,4.159 360,520.07275,131.4672,23.709106,53.854904,4.151 360,91.2905,183.17744,56.275482,97.33702,4.141 360,593.81445,69.27106,25.677612,47.337975,4.091 360,528.355,-16.744738,20.742798,41.524426,4.082 360,24.75658,229.94492,22.011448,32.28482,4.077 360,490.22363,-18.154408,18.450806,42.53955,4.074 360,612.52515,47.183933,28.130737,83.188034,4.073 360,532.64795,-34.52179,30.403076,72.8678,4.058 360,560.71967,106.169,23.477966,43.2974,4.02 360,433.24518,206.83907,42.7677,77.98125,4.011 360,145.16982,201.49365,18.884323,30.5094,3.989 360,319.72232,190.03392,28.70694,57.64055,3.969 360,264.73697,183.96434,21.505157,34.774963,3.957 361,358.94067,213.18132,25.00061,46.74437,32.81 361,450.98822,217.62921,21.62738,40.44513,31.03 361,465.5754,215.42488,21.314087,40.139862,18.353 361,488.69705,216.65651,19.518219,39.90248,16.818 361,627.5728,-17.79585,16.922485,46.333748,8.085 361,454.65857,202.94797,29.731506,57.025604,7.524 361,356.49823,197.93755,36.891724,71.399,6.863 361,-9.52272,462.57526,38.460056,95.37537,6.35 361,623.2857,-33.99855,26.024292,75.481186,6.317 361,-17.842516,-66.25339,56.18609,151.16492,6.252 361,-5.899023,490.21707,18.29145,40.76468,6.217 361,626.8733,488.6691,20.344727,45.17807,6.086 361,-5.346349,220.63042,17.394445,36.715164,6.082 361,-11.363868,478.95218,29.031834,61.862274,5.843 361,613.2061,453.63965,39.693665,107.355896,5.716 361,88.47386,201.4261,19.440987,37.97766,5.502 361,259.03262,172.95041,33.02594,54.857605,5.424 361,122.04896,208.0421,19.581764,31.4711,5.327 361,2.7556996,240.71577,18.1468,30.712387,5.262 361,603.26605,-55.441284,52.742554,134.9596,5.251 361,620.92676,-2.7317,16.103638,35.7044,5.211 361,-11.337997,-32.478306,29.713938,73.11348,5.158 361,483.37146,225.6779,19.058838,31.755447,5.125 361,-5.8194256,-18.052605,17.504759,42.94629,5.122 361,-73.16403,266.26654,200.91513,460.8979,5.001 361,583.0743,411.0016,71.487,176.98407,4.933 361,271.75882,180.57867,23.391998,38.70015,4.898 361,-21.831593,401.65726,79.17357,176.1019,4.886 361,540.44446,205.0426,32.441772,54.741577,4.809 361,536.7194,310.14694,143.26935,342.15274,4.774 361,352.62253,192.49571,27.217224,60.16646,4.705 361,264.13303,205.61371,24.801483,34.490738,4.7 361,387.48325,193.88739,17.738983,31.672089,4.645 361,379.17783,192.32376,18.19748,34.747787,4.59 361,473.3165,226.02707,19.189117,31.468475,4.584 361,280.36975,187.90324,24.15503,39.053192,4.581 361,139.46715,202.49237,16.377441,34.05371,4.541 361,255.7034,185.72417,23.462738,35.34366,4.495 361,1.7435992,223.40895,18.981342,33.47203,4.488 361,271.20218,198.93427,25.953735,37.007065,4.471 361,493.92645,227.6672,237.37854,515.93506,4.468 361,5.151907,145.26663,31.879221,83.43201,4.446 361,275.81836,170.74245,34.00537,61.672455,4.273 361,255.58052,199.85529,23.671158,34.150894,4.268 361,335.4129,208.9395,28.111511,50.75627,4.157 361,-5.5528173,240.15233,16.944191,35.397385,4.101 361,209.41446,209.87767,21.458588,35.945908,4.087 361,614.401,481.3727,27.957031,61.668304,4.055 361,418.52515,200.94168,20.21756,37.642593,3.989 361,117.67577,203.00473,17.5485,32.53102,3.966 361,394.98032,195.09996,17.779083,30.695892,3.903 361,226.30484,209.32097,19.680908,34.23294,3.883 361,248.22076,193.29308,22.886536,34.421143,3.856 361,178.90582,188.53014,17.193329,42.350433,3.836 361,-17.439566,155.3151,51.410133,132.40158,3.824 361,130.54814,209.0728,17.971588,30.136658,3.817 361,234.606,212.00446,18.863358,31.38301,3.798 361,597.52374,114.188614,31.00055,86.152084,3.794 361,-11.6675625,208.01218,28.98653,62.371918,3.791 361,273.5922,194.43004,35.249817,55.39563,3.763 362,491.45218,219.58801,21.26474,47.67157,59.831 362,510.19928,219.25934,21.83612,48.626495,48.352 362,560.6365,220.22595,25.668884,47.201813,27.191 362,369.36334,218.36737,23.12201,42.895935,12.158 362,622.1369,-33.93712,27.832703,76.64058,6.656 362,495.04514,199.0316,28.289886,67.61195,6.289 362,-18.094997,-64.73973,56.556015,150.71619,6.266 362,435.23022,200.70921,19.15149,38.488068,5.911 362,-9.289278,462.82172,37.896866,94.38422,5.647 362,626.72485,487.72104,20.503479,45.627106,5.609 362,-6.088234,488.882,18.38174,42.315887,5.608 362,613.46564,454.01486,39.124573,107.741,5.594 362,475.68677,210.82574,18.251251,35.657623,5.56 362,287.14032,179.39764,24.94342,42.23404,5.534 362,368.44763,190.23059,27.24881,60.825806,5.362 362,264.75665,191.41989,22.144623,34.26819,5.357 362,280.67828,188.0741,24.213104,39.40091,5.289 362,-5.721438,-17.676159,17.293789,42.679115,5.285 362,-11.465593,-32.565468,29.880875,73.570206,5.264 362,626.7756,-20.837051,18.641785,50.27535,5.201 362,583.41547,411.46124,71.262146,176.80011,5.185 362,602.87836,-53.029587,53.26593,130.77162,5.136 362,-73.052475,266.45694,200.94293,460.88168,5.068 362,259.43915,174.02106,32.674774,50.79988,4.973 362,-21.889532,401.64145,79.04993,176.21487,4.945 362,536.5138,310.53424,143.47021,341.3208,4.82 362,617.82513,-22.646227,20.52826,51.27256,4.808 362,488.24374,190.71342,25.748444,63.789658,4.798 362,272.924,182.79547,22.11554,35.83882,4.772 362,97.38274,207.63661,20.25521,33.682816,4.741 362,443.51566,212.77489,18.58316,31.412552,4.688 362,248.0411,202.37933,23.161804,31.271423,4.669 362,106.9164,213.94304,19.349213,33.989426,4.668 362,256.5504,186.75977,21.4469,32.469345,4.548 362,115.457504,212.83546,20.494156,38.286377,4.545 362,568.63513,211.63986,32.286987,55.82498,4.5 362,122.13535,219.40765,20.999916,35.298157,4.492 362,5.309415,135.66618,29.884281,73.58478,4.486 362,120.40538,162.56151,22.49022,52.837326,4.482 362,-4.6263714,205.04323,16.178755,36.345016,4.482 362,493.98224,228.56729,237.7669,515.67065,4.461 362,604.71606,-34.22915,29.276794,71.3489,4.289 362,450.28192,213.6052,19.685974,32.776154,4.133 362,243.51514,179.98776,32.440765,46.344604,4.095 362,40.6245,182.50606,30.033108,62.3096,4.065 362,299.5836,170.45187,33.65207,63.78981,4.039 362,249.2621,185.87257,21.462753,28.786545,4.031 362,294.56027,185.04753,24.984772,45.656937,4.004 362,562.6076,-0.011047363,18.667053,35.775925,3.985 362,543.4869,64.43143,35.081604,72.90411,3.968 362,601.1645,-22.251976,20.894897,46.854225,3.963 362,10.674927,181.54903,57.930176,103.89546,3.952 362,586.1431,-101.164406,75.689026,235.69745,3.876 362,507.00375,204.76518,20.468414,46.282013,3.844 362,554.4464,-0.5096493,18.749573,35.58966,3.836 363,563.9055,222.3767,30.4422,66.34236,60.217 363,582.31177,216.85449,31.321167,74.13483,59.694 363,482.30334,205.39322,20.534485,43.836792,32.186 363,465.0957,204.46712,21.916748,41.993927,29.802 363,371.61346,212.7978,28.518555,57.82747,8.518 363,390.64926,196.58553,28.925323,63.698013,7.275 363,-12.146932,477.55557,29.48972,64.17459,6.783 363,279.22452,179.43695,26.228088,42.647644,6.416 363,-17.394815,-64.10979,56.30165,149.17836,6.364 363,469.8805,190.92883,26.497345,58.78517,6.352 363,264.8556,182.08662,22.217407,35.4933,6.305 363,66.96164,164.06888,29.349274,80.26041,6.268 363,591.3095,206.86691,33.16278,70.88077,6.082 363,-6.3523884,489.41895,18.695019,42.468994,5.809 363,257.9362,187.80424,20.985657,36.556564,5.782 363,626.4867,487.79968,20.764587,46.336975,5.729 363,531.5418,-17.27602,32.27289,73.11104,5.717 363,627.4585,-17.99185,17.295776,46.88366,5.544 363,613.1196,454.73422,39.75061,106.37985,5.529 363,400.0835,178.74681,22.543823,51.024246,5.452 363,273.3821,186.68115,23.13028,39.44214,5.368 363,384.16113,206.70555,23.182129,49.36589,5.275 363,553.1935,72.56035,29.807129,83.91347,5.242 363,255.70877,172.77159,22.550812,38.08853,5.205 363,603.2405,-54.381104,52.610962,133.26862,5.204 363,583.3413,412.27753,71.40405,176.01422,5.1 363,-21.938423,402.1823,78.72291,175.88629,5.087 363,-5.638976,-17.8026,17.260555,43.227856,5.077 363,143.8476,166.38506,25.177734,69.83624,5.046 363,401.59448,187.56143,31.64746,66.12869,5.02 363,-72.940475,266.19818,200.47348,460.8827,4.988 363,623.05286,-33.724262,26.945251,75.58789,4.928 363,536.6826,310.55548,143.53638,342.6988,4.915 363,612.2523,224.71268,38.263428,95.877106,4.785 363,560.2465,206.50955,51.224976,97.499664,4.784 363,-11.394023,-33.201904,29.878315,74.73825,4.638 363,259.69333,168.38396,31.895752,56.441147,4.627 363,586.1842,-99.3905,74.50128,234.2576,4.608 363,394.68246,184.52171,20.283844,51.315674,4.591 363,600.3929,53.612106,33.74951,68.56717,4.587 363,494.07288,228.88287,237.80835,515.2521,4.474 363,349.44485,206.62196,29.243652,58.304153,4.413 363,248.7283,197.81213,22.744446,35.159866,4.398 364,541.602,202.7936,25.156555,59.743454,71.838 364,517.1138,204.63138,22.505737,49.15941,45.505 364,375.58804,218.7017,22.842682,48.743057,19.547 364,13.038286,191.30937,29.50797,72.277725,10.678 364,264.96936,182.90842,21.945435,35.5533,7.814 364,279.55457,178.48532,25.147614,43.40129,7.546 364,-5.6266584,-16.741259,16.877731,42.391205,7.338 364,248.99368,190.1793,22.474854,34.821365,7.168 364,546.8438,187.86841,30.707825,68.38229,6.876 364,313.52972,198.65013,21.258026,42.125717,6.723 364,282.13922,176.52196,34.0748,67.763824,6.551 364,247.3703,173.05725,23.598541,36.292557,6.485 364,-4.735855,184.17618,34.017036,95.72687,6.459 364,-17.345312,-64.17531,56.517937,145.75479,6.432 364,622.53674,-33.85065,27.147217,76.23944,6.401 364,110.27146,151.15517,27.165886,69.794174,6.381 364,322.00262,199.32555,21.448639,40.970352,6.081 364,626.84863,488.7919,20.319946,44.805206,6.032 364,-6.1121054,489.2904,18.799423,41.135498,6.026 364,308.84503,190.69313,31.842865,69.29521,5.98 364,257.82404,191.45316,22.059692,34.652695,5.903 364,-9.137422,465.61252,37.867523,90.46951,5.841 364,-11.6560755,-31.606886,29.694523,72.82432,5.763 364,562.9283,185.76306,31.255615,60.396988,5.753 364,326.0005,203.54092,31.804626,65.157196,5.618 364,296.65567,173.57516,24.545685,43.986786,5.576 364,258.68304,178.52951,33.588898,57.19406,5.554 364,372.9053,181.27434,37.043304,85.22157,5.54 364,22.917961,194.97987,22.591927,49.85504,5.537 364,602.9811,-56.19023,53.187622,133.4641,5.505 364,304.94952,189.5652,23.158325,41.93141,5.426 364,-8.985876,179.90944,27.01514,73.107605,5.354 364,583.3145,412.64047,71.380615,175.6785,5.268 364,612.96313,455.70648,39.350403,106.28534,5.225 364,13.205263,176.9631,46.326363,104.63373,5.145 364,120.72284,160.35368,20.169357,49.722397,5.121 364,-73.505165,266.16458,201.54486,461.26608,5.121 364,359.63232,209.8144,29.884247,68.67052,5.119 364,-21.52544,403.37827,78.81003,174.98099,5.088 364,406.196,186.22926,27.241455,69.37831,5.079 364,626.9923,-19.911386,17.96875,48.292118,5.067 364,527.54974,190.52347,28.067383,64.54318,5.047 364,349.94543,196.99129,31.27481,69.652695,4.93 364,586.4287,-98.7708,73.92828,231.91206,4.911 364,536.05707,310.38394,144.06793,342.3032,4.895 364,29.546535,204.8315,24.186565,52.34227,4.816 364,594.77057,-44.88758,43.640747,95.63291,4.799 365,387.2915,213.28133,28.858429,64.31987,39.041 365,618.22076,207.24283,20.825317,57.071075,9.369 365,500.43884,155.2366,29.08374,89.921005,9.164 365,375.90298,205.92404,30.473907,71.953094,8.636 365,414.2862,195.19987,30.2583,63.512894,8.628 365,364.42627,202.61792,31.3172,69.94556,8.371 365,103.14788,180.21669,20.152092,50.643616,7.758 365,-5.613693,-17.496368,17.581036,43.740612,6.823 365,61.072216,132.36676,29.735325,80.67705,6.684 365,257.3435,182.60176,21.622498,35.65712,6.647 365,626.8859,488.52972,20.080994,45.177124,6.606 365,-6.1654425,489.4145,19.01519,41.59845,6.513 365,-11.83097,477.87405,30.304222,62.433563,6.352 365,401.9128,214.61142,32.065704,66.926544,6.245 365,239.38217,175.40282,22.334656,35.112976,6.167 365,250.20819,182.69737,19.921783,33.872528,6.057 365,626.6912,-19.825024,17.437439,52.656116,6.007 365,453.70865,179.10445,38.72998,78.81847,5.955 365,-16.811789,-62.54332,56.044655,141.55298,5.732 365,611.39294,-48.61153,40.904114,103.967125,5.719 365,-11.025777,-31.690962,29.1386,72.46545,5.698 365,259.19302,170.24863,32.346222,61.27507,5.644 365,241.02518,191.11919,21.185791,34.07672,5.622 365,612.87244,456.42725,39.536865,105.0636,5.571 365,278.2777,177.1115,25.947784,44.605194,5.567 365,485.3628,123.98386,30.326355,87.296906,5.262 365,232.66733,184.65451,21.717148,32.754852,5.259 365,419.7204,182.776,20.399902,50.96295,5.185 365,-72.938,266.54004,200.97957,461.69922,5.131 365,583.2683,413.3065,71.65051,174.98343,5.129 365,-21.648575,403.1588,78.90752,174.93073,5.093 365,243.67857,167.85358,32.678513,51.845215,5.055 365,317.374,205.40196,31.878754,66.7841,5.043 365,535.863,310.30493,143.98883,342.45557,4.83 365,291.2437,166.15863,35.222687,58.105865,4.819 365,510.36334,-36.609444,28.953125,76.69124,4.803 365,489.3434,175.7684,37.366302,88.49881,4.77 365,-1.6639805,213.05959,29.193014,65.466965,4.698 365,227.73749,152.35063,33.623352,58.980637,4.679 365,211.63663,225.5267,34.035187,70.469635,4.625 365,208.03894,185.2456,46.354553,75.79498,4.616 365,493.39996,228.62656,238.06744,513.5403,4.582 365,468.66162,176.89032,38.11148,84.96301,4.576 365,306.03403,180.66835,44.672577,77.416916,4.572 365,420.2127,186.69424,37.240234,82.93317,4.563 365,177.01247,189.01358,45.174515,71.80917,4.556 365,348.67996,203.5355,32.447906,76.47084,4.541 365,586.9238,-101.03325,73.03235,234.31668,4.539 366,422.48334,220.05637,29.657135,81.6149,23.676 366,414.68747,204.77441,27.070526,74.9256,12.229 366,410.60825,198.84462,21.39038,59.627945,11.356 366,0.7579112,213.76083,20.766462,48.802765,8.426 366,380.88992,201.26993,31.1044,70.5163,7.571 366,249.36705,189.17365,21.63704,34.697464,7.14 366,-5.9920473,-17.30576,18.855583,44.621002,7.009 366,475.65448,219.10579,30.281036,67.62221,6.814 366,405.88086,199.36665,46.956116,116.70326,6.677 366,-11.710848,478.19455,29.887545,62.992218,6.54 366,-6.173911,488.56778,19.22279,42.54294,6.492 366,-10.742989,-32.487934,29.740944,75.74746,6.39 366,622.8359,-34.038357,26.955505,77.31304,6.383 366,626.53754,488.18127,20.531494,45.917114,6.371 366,419.73975,185.1207,39.887817,94.632935,6.271 366,256.56604,189.9005,23.436554,36.626343,6.269 366,232.74916,198.81177,21.460052,31.19844,6.255 366,242.96251,179.77452,32.543777,54.62709,6.119 366,367.9121,190.38188,50.873016,119.94908,6.09 366,241.204,197.20499,21.860825,34.297806,6.088 366,239.51018,175.52237,24.550308,37.71248,5.978 366,-17.55072,-62.78885,56.58432,138.39702,5.938 366,225.71384,156.97816,36.112854,61.696503,5.934 366,-4.8529167,88.522194,17.945866,47.20527,5.905 366,273.81448,172.76196,33.76895,66.07852,5.876 366,398.41376,200.52826,28.144653,70.45944,5.791 366,627.1447,-19.242798,18.085388,47.897278,5.709 366,258.08884,178.92293,33.817688,58.41957,5.681 366,612.6238,456.3627,39.780884,104.893036,5.678 366,346.165,196.96744,19.27707,35.954193,5.246 366,-73.41163,265.39053,201.43411,462.70187,5.137 366,-1.2518477,91.919586,27.877645,80.77667,5.132 366,223.71207,192.85678,24.159882,32.023254,5.128 366,145.72626,178.96262,19.599792,36.05626,5.085 366,339.2127,186.86295,41.070496,73.31189,5.077 366,602.49365,-56.27116,53.61267,142.02238,5.07 366,618.94464,-20.037104,18.847717,45.899796,5.052 366,573.77936,174.80899,49.761597,106.75516,5.048 366,231.85785,183.4725,23.503784,33.931473,5.003 366,451.03766,233.57758,42.122925,96.16376,4.981 366,582.8073,413.57675,71.890564,175.09048,4.969 366,290.3739,175.78828,36.22168,58.449356,4.937 366,529.15717,199.54645,44.685608,76.20361,4.871 366,1.9180202,-16.992363,19.122004,45.008163,4.868 366,540.53345,181.09554,53.66382,97.6364,4.855 366,-10.584557,212.56822,39.06949,96.71599,4.845 366,536.17706,309.75327,143.84552,342.4175,4.835 366,-21.407454,403.5838,78.95896,174.7254,4.831 366,225.75131,195.55437,34.243256,54.86406,4.799 366,590.4254,192.4957,30.262817,56.07956,4.793 366,314.54993,181.36377,20.583435,38.799072,4.79 366,557.4629,-36.620987,29.162903,67.57356,4.776 366,-40.577896,366.48114,110.89964,277.0125,4.755 366,505.45355,287.0989,36.46643,58.41211,4.739 366,564.6415,188.88658,41.03955,67.30574,4.721 366,-10.628171,205.21295,29.14722,67.79236,4.721 366,144.94972,201.4668,46.381454,75.766785,4.707 366,586.45215,-103.93959,74.99805,239.20798,4.698 366,318.1409,180.39754,51.950928,111.63658,4.671 366,138.86867,179.3855,18.872131,34.69095,4.652 366,-8.085829,49.175426,27.850672,83.16116,4.627 366,472.2421,268.6194,37.696075,69.884094,4.621 367,445.36603,219.1898,42.160553,105.34651,91.966 367,398.36,194.37022,28.849121,64.22621,15.074 367,448.60873,190.70636,20.59085,54.15123,9.495 367,-5.853094,-17.975338,18.439796,44.171272,8.516 367,-10.774331,-31.464561,29.512432,71.624886,7.834 367,0.77735186,78.76016,28.89135,75.332184,7.715 367,-8.649444,464.2017,37.701744,92.18881,7.435 367,462.31537,228.34076,32.464874,90.87677,6.887 367,353.49744,195.07083,23.638855,38.557648,6.711 367,538.6759,196.04878,32.113464,54.545074,6.618 367,622.52,-32.796993,27.324402,76.923744,6.563 367,596.5549,199.10255,34.01648,83.52498,6.479 367,-18.773561,-63.66199,57.599785,137.86446,6.448 367,440.13007,206.40883,29.564331,86.98625,6.417 367,514.95245,206.89691,34.88391,64.35016,6.412 367,601.15283,225.81514,33.08844,78.65648,6.335 367,1.1888283,237.82288,19.223692,41.164,6.316 367,-5.5578403,489.5708,17.959066,40.262817,6.211 367,626.2496,487.9949,21.405518,46.674103,5.978 367,340.93866,188.60054,41.39447,66.642456,5.826 367,627.0918,-18.95643,18.317017,47.96063,5.631 367,546.91156,-0.08711624,33.87268,61.712536,5.54 367,602.573,-56.31201,53.640503,138.83955,5.512 367,258.93484,178.53374,33.644226,60.544205,5.472 367,243.4686,180.531,33.282806,53.697815,5.418 367,294.90085,187.75195,26.321838,46.275177,5.403 367,1.9875664,-17.900536,19.186787,43.173313,5.363 367,-5.917205,84.24676,20.780422,51.8843,5.36 367,281.01733,180.49045,34.774445,66.550156,5.329 367,612.6379,455.29303,39.72876,105.807434,5.293 367,530.4385,206.4566,36.801575,73.783295,5.268 367,256.88474,196.96924,22.402405,37.016907,5.193 367,225.26176,161.55956,35.063553,64.945755,5.094 367,424.1794,219.66156,39.860535,101.32678,5.084 367,442.89066,183.77692,20.170746,53.08026,5.078 367,536.2124,310.63782,143.57495,341.55847,5.067 367,582.6629,413.11768,72.138855,174.83472,5.044 367,250.16145,198.3324,20.422592,34.639343,5.03 367,514.7541,217.35817,42.486816,97.68797,5.027 367,411.07242,197.70569,31.15918,81.237976,4.968 367,348.0194,221.34354,33.846863,67.3013,4.946 367,-5.0281315,245.44975,17.52605,41.653732,4.941 367,546.72406,208.48813,41.21466,86.15579,4.935 367,-0.49110055,-20.839554,28.807041,66.38503,4.934 367,463.93433,110.910034,24.910004,46.102203,4.928 367,-73.17028,267.77972,199.99463,460.58112,4.888 367,355.4505,193.97234,40.6463,69.46065,4.856 367,-21.359184,404.95908,78.785095,173.55685,4.843 367,482.2034,109.444534,21.35373,37.80124,4.831 367,551.9729,-2.727579,24.27356,39.986595,4.793 368,467.9143,262.679,42.0903,118.21417,85.71 368,463.60168,277.3244,31.897339,86.800446,16.053 368,431.8408,231.53577,29.040985,71.550476,9.889 368,411.9377,238.72086,17.285034,34.7052,9.443 368,-11.749545,478.43567,29.838085,64.39691,7.259 368,-4.413359,233.99503,17.426043,44.00168,7.171 368,22.528477,230.91428,28.069248,65.37036,7.094 368,-6.4886136,489.31046,18.957275,42.52292,6.959 368,1.8654978,233.08257,20.918701,47.009537,6.697 368,576.5327,70.81452,22.529724,49.674187,6.553 368,626.63,-20.485224,18.16626,50.929375,6.52 368,613.3711,453.37854,39.729797,107.71039,6.492 368,250.64864,237.05475,19.689896,35.1037,6.433 368,282.66385,218.5098,33.349884,64.062195,6.422 368,-5.299807,-16.957958,17.638466,43.610405,6.265 368,258.24548,237.45297,20.489258,36.80951,6.21 368,-12.018952,-41.314835,40.68121,99.38821,6.206 368,626.3907,488.47906,21.10553,44.79883,6.15 368,16.488478,230.23492,23.612413,51.101624,5.768 368,602.2684,-56.708565,54.0979,139.68987,5.712 368,-9.82262,216.90674,27.490818,65.07083,5.707 368,264.28464,230.67793,21.917877,37.29988,5.644 368,356.7118,227.68982,30.223663,52.519592,5.559 368,266.9377,218.80655,34.326385,58.41873,5.546 368,556.2853,77.781784,34.13391,68.88124,5.532 368,621.99927,-33.547752,26.967102,78.919945,5.498 368,232.49652,239.58458,21.839111,32.27324,5.478 368,-16.350605,216.04718,49.950203,129.57544,5.374 368,389.79803,237.17508,37.51422,71.672424,5.353 368,-73.20004,263.80945,201.7551,465.02087,5.281 368,474.31186,311.20914,32.156708,81.37152,5.22 368,536.3238,310.3308,143.94366,341.1963,5.177 368,585.78784,-99.90737,75.18335,232.13467,5.128 368,447.7398,235.83905,22.311188,59.26947,5.105 368,368.18597,243.64384,22.129547,33.838516,5.063 368,251.03682,225.57924,32.553513,58.011703,5.06 368,516.04785,228.69441,30.166382,79.24138,5.018 368,434.81888,256.26495,31.041687,72.60516,4.945 368,517.8681,256.38556,33.894226,82.3978,4.872 368,-4.164571,214.55496,16.17012,38.93599,4.858 368,583.0929,409.21985,71.87659,179.71289,4.857 368,241.7135,238.78906,19.980255,33.180695,4.843 368,13.214443,213.36588,50.30433,105.634766,4.83 368,-21.553463,402.1129,78.7028,175.49817,4.791 368,589.0278,86.91719,34.242798,70.10666,4.756 368,577.59576,74.11928,32.270447,71.56293,4.737 368,-40.56218,364.86932,111.029205,277.12457,4.721 368,547.2129,70.57329,32.999207,64.428635,4.712 368,494.31302,229.22437,237.45932,512.1493,4.691 368,248.68448,221.28583,21.8768,38.678894,4.623 368,372.23145,232.6922,40.5531,65.887085,4.62 369,491.79782,225.11548,57.10202,134.07434,87.046 369,427.2855,206.2987,20.888977,36.94339,22.329 369,0.5219853,213.97684,21.055878,55.37326,8.105 369,285.6976,187.99689,25.23703,42.318527,8.084 369,562.3281,204.73732,33.94818,65.3336,7.241 369,622.8001,-33.100727,26.744202,76.05391,6.972 369,-6.0314655,-17.270031,18.28645,41.471478,6.941 369,626.66864,487.53595,21.112976,46.43268,6.445 369,-6.307795,489.01984,18.686823,42.712708,6.405 369,626.9848,-18.858192,18.209778,47.539375,6.322 369,-11.249942,-31.766237,30.1195,70.2844,6.174 369,-18.322245,-62.270626,57.22728,137.46234,6.14 369,-11.883202,478.04318,29.225967,63.672028,6.127 369,1.9311506,201.46901,19.304594,44.55835,5.836 369,581.1114,201.75714,39.114014,88.67139,5.827 369,496.91595,232.72943,34.503723,88.74823,5.748 369,250.30144,216.21387,20.20781,33.927353,5.661 369,-3.8351796,206.0107,16.991108,46.167053,5.639 369,546.4533,205.01144,35.32837,67.37219,5.566 369,470.9053,195.88718,33.387573,85.395905,5.544 369,582.84845,412.6803,72.59503,175.07568,5.417 369,469.21924,171.72212,26.07782,69.98276,5.405 369,562.6407,-130.85913,111.67316,282.94397,5.384 369,244.25403,177.8616,31.778381,59.600098,5.364 369,602.4517,-56.590927,53.83966,141.0461,5.323 369,1.7710626,104.21451,22.411673,46.49797,5.32 369,613.1167,454.22162,39.861755,106.82977,5.247 369,519.5458,212.24738,54.806396,126.76984,5.247 369,-73.303024,266.16205,201.15317,461.4007,5.168 369,4.001073,196.87492,27.521584,59.691483,5.024 369,536.2672,310.62424,143.91278,341.53384,4.992 369,339.41818,196.05795,31.18692,52.503143,4.949 369,618.6367,-20.634617,18.943665,47.67643,4.915 369,241.9417,214.30028,20.927292,35.620895,4.911 369,377.8821,211.3637,20.482758,38.277313,4.903 369,-21.43944,402.62814,78.53717,175.0723,4.867 369,265.19177,207.58841,20.956573,32.14003,4.805 369,288.70578,198.9397,36.369415,62.996094,4.8 369,268.09348,187.94858,34.786835,55.78424,4.699 369,2.5870104,183.30904,19.251244,41.085358,4.687 369,575.72314,206.67838,25.383362,50.11667,4.658 369,493.8945,229.91818,237.13058,512.2407,4.655 369,250.03946,197.209,20.883423,34.994064,4.593 369,595.1476,212.73184,33.238647,66.47049,4.581 369,-4.48371,180.52646,16.929838,40.922928,4.559 369,618.37427,490.11865,20.7901,42.834106,4.552 369,475.6833,88.4735,30.542725,84.23975,4.546 369,485.62128,234.9464,32.28778,87.087296,4.541 369,257.96964,207.63097,19.135956,32.049484,4.514 369,274.6812,198.86386,35.93335,59.536163,4.425 369,597.8371,-33.882336,29.207703,72.254944,4.376 369,592.8754,1.1135406,47.051575,151.68382,4.373 369,-15.635696,173.91785,50.66665,129.40585,4.357 369,489.51935,-181.20253,236.51428,422.64932,4.327 369,366.27383,199.33913,27.94223,53.697937,4.326 369,582.7471,21.828087,38.956482,105.2417,4.324 369,419.7618,178.01788,40.382385,72.85451,4.319 369,233.7753,213.62534,20.601776,34.162415,4.317 369,-1.0798633,178.03229,27.834875,66.328445,4.313 369,419.17322,207.55496,40.282013,81.32129,4.3 369,312.47867,205.87128,23.714386,39.496445,4.297 369,496.95673,208.77461,32.779663,72.66185,4.295 369,559.72644,225.03741,25.308289,43.836975,4.279 369,2.1107972,-16.814692,18.250267,40.246788,4.268 370,536.9496,245.93904,56.031555,141.2495,89.551 370,446.4923,204.54996,23.095978,42.14093,43.495 370,500.3875,204.74556,20.073608,46.417862,42.797 370,531.7993,258.35522,32.56604,73.70032,9.863 370,622.1559,-33.90598,27.89624,75.68812,9.46 370,282.7516,199.26962,35.07199,60.97867,7.698 370,550.3163,220.86253,64.20264,179.3445,7.652 370,-6.5032682,-20.753902,19.820713,48.1545,7.0 370,322.7948,193.65456,32.378906,56.656418,6.805 370,-10.093451,-32.758083,29.287989,75.233406,6.776 370,232.4205,210.67506,21.37967,33.059082,6.601 370,561.81384,244.64485,42.488342,120.05727,6.567 370,-17.725191,-65.10381,56.283226,140.30951,6.531 370,-12.077113,477.4787,29.511505,63.66449,6.074 370,296.82654,198.44806,37.48709,59.593872,6.057 370,5.9198427,199.75754,25.18156,66.35864,6.024 370,-9.1535225,463.05078,37.92852,94.77826,5.936 370,266.64835,203.35019,34.1593,56.026367,5.629 370,266.27753,216.58853,19.570404,30.658707,5.618 370,4.592252,-35.704323,30.196106,79.90332,5.616 370,279.97467,204.01454,24.999756,38.842148,5.589 370,201.26807,215.52225,22.976395,31.280731,5.529 370,0.6310916,-22.633455,21.15745,50.07278,5.487 370,254.65094,196.70348,22.990967,37.631424,5.467 370,626.36896,487.45102,21.35785,47.201263,5.459 370,375.39996,204.60667,30.488525,59.39302,5.364 370,-5.341421,187.62866,19.145208,44.124588,5.356 370,-6.331949,489.59387,18.738848,42.126648,5.307 370,-73.774124,265.5813,202.07109,461.91797,5.197 370,-15.246889,174.62653,49.344948,130.51843,5.195 370,612.81635,453.95715,40.36847,108.09534,5.154 370,535.4984,308.16864,143.97552,345.94733,5.134 370,537.9273,287.04407,37.885437,93.69449,5.071 370,-5.2733016,118.62216,18.079304,43.900665,5.057 370,602.31775,-55.507217,53.196106,133.77208,5.051 370,306.2399,189.46721,39.22165,55.60402,4.984 370,583.0351,412.65543,72.27814,176.59567,4.966 370,288.14847,211.50285,24.442657,38.321823,4.949 370,340.6909,198.80534,30.605225,50.586685,4.887 370,-10.166377,176.34648,29.05967,69.80835,4.879 370,586.5115,-101.29664,74.14685,235.42068,4.873 370,292.3537,196.03877,29.953125,44.53073,4.86 370,484.56027,-29.852962,30.663666,67.347305,4.842 370,216.89276,215.29573,22.255173,31.85025,4.839 370,-21.756023,402.1278,78.95711,175.281,4.805 370,543.8853,246.20087,35.279785,89.18408,4.803 370,323.66382,145.53949,33.36267,71.01782,4.765 370,273.3625,214.67891,21.882202,33.58104,4.744 370,258.9693,215.96158,18.723022,30.965134,4.678 370,494.30026,171.9209,25.006012,70.38219,4.67 371,535.29407,205.23532,24.071167,52.709595,79.164 371,472.97144,205.27985,22.898743,50.140594,45.051 371,517.6169,183.20175,26.390442,65.90805,19.488 371,569.3313,190.85608,23.997375,49.126907,10.177 371,621.8547,-35.19586,27.91034,77.08271,7.615 371,233.37125,222.12752,20.952011,31.582413,6.91 371,281.7471,205.38983,35.822357,58.0849,6.799 371,-11.822414,-42.300488,40.37258,100.96979,6.51 371,254.54614,196.74057,22.813538,41.152557,6.429 371,613.07196,-28.282032,27.14502,81.46081,6.281 371,602.19104,-57.897858,53.346436,130.68277,6.204 371,322.55573,200.60373,35.72882,52.342422,6.151 371,-9.285401,464.08588,37.966396,92.357605,6.141 371,295.40027,202.76253,38.28305,57.570694,6.068 371,553.82733,193.66989,21.325317,45.166855,5.625 371,250.44104,221.42007,20.053467,32.98456,5.568 371,258.5704,223.21208,19.504974,30.909119,5.568 371,413.17093,201.32196,31.239746,63.89325,5.487 371,505.77142,189.9702,27.354492,60.92079,5.422 371,-6.235924,489.22562,18.651299,43.403473,5.361 371,-5.557151,-17.937777,18.177904,45.725563,5.35 371,598.78784,-36.48276,28.065552,81.32299,5.308 371,613.3497,454.28918,39.361755,107.881836,5.303 371,529.86017,195.06972,20.259766,53.520157,5.246 371,-73.49258,265.7323,201.79193,462.8275,5.232 371,458.68576,196.08386,21.218994,42.492767,5.131 371,428.3243,215.66025,32.50653,56.46634,5.097 371,575.42303,207.31381,22.812805,38.14569,5.071 371,626.5176,487.48706,21.050781,46.026794,5.04 371,584.9421,211.74658,22.934448,36.09099,5.008 371,266.44513,223.21986,19.869751,30.668076,4.991 371,586.7095,-97.07096,72.83972,228.268,4.98 371,281.22504,220.84947,22.99121,35.540543,4.98 371,398.7577,203.08948,30.724548,63.625122,4.968 371,-18.313923,435.06073,55.60452,141.76593,4.921 371,453.99896,200.20642,31.512878,58.918182,4.898 371,225.0041,222.86705,22.148148,32.445053,4.884 371,-17.443993,184.05621,51.033962,128.93463,4.855 371,1.6728354,229.74332,41.95013,89.215576,4.854 371,583.23645,410.72986,71.372314,177.70514,4.837 371,562.838,202.17754,21.537537,39.828613,4.831 371,192.32828,228.36987,24.168915,31.357422,4.721 371,467.59976,202.99821,39.742767,65.87108,4.721 371,536.5321,309.72162,143.66101,343.1319,4.714 371,-40.14026,367.621,110.501526,274.3774,4.678 371,371.62927,203.1038,31.671448,62.689957,4.61 371,-0.13279319,103.48401,27.79963,71.66577,4.532 371,310.62332,217.68555,26.69281,40.461304,4.518 371,494.16315,229.67792,236.74664,513.66815,4.498 371,274.03714,222.69652,21.675629,32.074493,4.469 372,589.65607,213.42184,28.679993,65.628784,95.218 372,506.0933,212.573,25.983368,56.238647,60.055 372,563.4492,189.14432,26.441162,72.86081,14.62 372,273.33133,210.74348,37.700684,59.081223,8.517 372,574.8949,205.52652,31.272278,66.7536,7.451 372,-4.9334407,-14.252334,17.848965,42.06408,7.396 372,-6.2099833,488.45184,18.710636,43.530334,7.139 372,21.94761,213.08018,32.73275,63.535873,7.047 372,622.8152,-33.72669,26.347961,74.97768,7.039 372,438.40488,210.33899,26.73526,66.59473,6.901 372,626.9642,-15.960436,16.822937,44.518566,6.845 372,418.02057,204.72972,23.6026,51.711014,6.351 372,626.4115,487.57016,21.273438,46.375824,6.349 372,-10.197721,-32.20562,29.94469,75.88616,6.335 372,305.53024,213.21129,37.691498,53.545853,6.287 372,263.24887,221.93002,26.007843,37.996582,6.155 372,-12.648011,475.26526,30.998974,64.908325,5.988 372,339.6198,225.35484,32.956512,67.85957,5.949 372,-17.170881,-62.04685,56.388863,143.14792,5.929 372,602.77075,-55.54054,53.260864,130.95583,5.9 372,243.28113,191.12424,30.860138,59.769653,5.885 372,178.04594,220.72757,34.766342,50.227142,5.884 372,271.39035,224.693,26.315887,42.5618,5.815 372,473.6999,221.3028,32.87314,70.851135,5.795 372,248.2831,221.6243,22.695114,36.033325,5.595 372,396.8153,198.4763,30.596375,72.46956,5.587 372,5.5998564,193.28284,31.802776,70.56033,5.555 372,323.52893,226.36226,34.17975,64.14546,5.451 372,614.83594,-17.225147,26.296265,66.01071,5.4 372,614.6166,37.939037,26.511108,84.857635,5.399 372,619.2101,-3.4668236,18.530151,38.961937,5.251 372,583.64453,410.50586,71.452515,177.36865,5.231 372,573.94055,-33.35036,28.422607,75.41237,5.177 372,613.4936,454.55048,39.47284,105.78766,5.145 372,-73.6314,265.65823,201.87451,462.38547,5.132 372,447.0406,209.80026,21.781738,45.184967,5.127 372,256.4569,228.54352,23.39392,38.057922,5.071 372,224.21457,229.03006,22.711914,35.098602,5.061 372,-21.711823,402.552,78.85009,175.1908,4.996 372,535.67535,310.19836,144.88373,342.01038,4.99 372,421.40347,190.37566,39.140778,78.39482,4.987 372,468.98425,158.01268,28.133942,81.956055,4.935 373,552.6442,210.8664,35.08185,102.40808,28.62 373,322.2857,222.73607,35.490204,58.787857,7.388 373,272.3766,207.01279,39.059418,62.54666,6.949 373,558.1452,214.45927,24.892029,58.847214,6.859 373,451.63724,197.5942,29.058014,77.44289,6.613 373,-6.232838,489.60858,18.62054,41.683533,6.601 373,544.916,216.87097,29.4729,73.173096,6.581 373,622.30383,-33.532585,27.440552,75.78249,6.573 373,236.8614,193.74844,24.861038,45.97853,6.506 373,-5.121356,-16.865604,16.469673,42.078106,6.482 373,573.037,199.17918,45.58673,127.77193,6.401 373,-12.407219,-41.576706,41.01675,103.6264,6.35 373,233.51929,221.59013,21.432037,36.607803,6.305 373,621.6836,477.58453,28.970764,66.95679,6.216 373,562.8383,240.07983,32.03003,81.9942,6.135 373,256.8362,209.76167,39.66568,60.083725,6.127 373,626.8371,-18.984982,18.66632,47.116596,6.062 373,289.48895,222.96571,37.636353,57.76393,6.039 373,-12.098755,477.37543,30.25924,62.703796,5.991 373,51.875843,187.79492,30.85426,62.723297,5.985 373,211.24554,207.50494,31.869553,60.613556,5.84 373,566.10315,220.10196,36.76703,77.09613,5.726 373,578.653,210.22397,33.540466,73.89194,5.721 373,1.9909239,208.97359,24.158855,70.44606,5.666 373,618.4105,-19.889929,19.466553,46.124027,5.484 373,517.4137,202.0297,36.871094,93.091736,5.465 373,265.258,227.65631,37.52301,56.794006,5.451 373,100.610565,211.59497,31.939041,56.36206,5.445 373,-1.665628,90.42967,24.387184,58.543777,5.329 373,541.9091,-35.68977,29.037537,73.63777,5.294 373,225.0292,220.1647,21.987167,38.412354,5.207 373,582.78973,414.27054,71.78265,174.1943,5.16 373,-73.31077,265.5165,201.38544,462.68417,5.088 373,306.32443,223.1269,35.707672,58.896103,5.074 373,338.73273,222.76395,33.785828,58.123413,5.03 373,-21.525194,403.27603,78.822845,174.78818,5.005 373,163.14613,217.32063,33.6429,51.332504,4.976 373,579.8399,-16.328028,33.425354,67.809135,4.933 373,470.60315,199.55919,37.548035,87.72551,4.928 373,178.2045,212.87057,40.913086,77.34207,4.923 373,227.42241,204.23889,33.06996,53.001343,4.919 373,1.9231784,171.07181,30.07797,68.76636,4.865 373,-8.882142,214.32033,27.228558,70.44087,4.823 373,239.33072,213.6502,23.47229,38.432007,4.813 373,352.96497,231.42915,23.710327,41.036636,4.809 373,207.53798,218.71817,24.264679,41.12213,4.765 373,199.14377,227.18085,24.255554,37.294098,4.764 373,3.558783,-13.617764,15.417604,36.881123,4.761 373,335.59863,227.09363,24.416473,41.647766,4.749 373,536.1343,310.82578,143.73975,341.16068,4.739 373,139.11406,218.89862,35.34218,57.463074,4.705 373,278.5003,200.57358,25.985352,45.055984,4.701 373,429.2085,205.41086,31.669067,77.68381,4.668 373,175.35728,232.90619,25.2529,36.295685,4.663 373,585.3435,-106.402504,76.245544,248.2344,4.645 373,542.16315,83.56381,29.9859,75.739716,4.587 374,397.35904,231.21498,16.33371,40.07985,13.162 374,417.4434,230.28217,18.489838,40.656616,8.863 374,228.91716,204.18758,23.967453,43.580612,8.752 374,322.40323,228.63356,35.557587,65.617966,8.096 374,370.92706,165.86465,34.797363,71.0726,7.514 374,495.77588,143.87595,28.354736,80.64198,7.463 374,412.35867,234.75844,16.527588,37.20128,7.351 374,224.51254,228.18416,23.392853,40.608963,6.836 374,-18.14756,-66.1409,56.46946,151.31082,6.824 374,217.01541,230.3353,22.0112,38.07962,6.806 374,209.62576,227.74176,21.520935,39.182495,6.668 374,259.64886,210.7983,34.91333,61.102127,6.486 374,469.0517,231.27872,30.902344,69.15613,6.325 374,622.3091,-33.649292,27.047485,76.51433,6.278 374,79.95568,218.7486,25.956123,46.336914,6.254 374,602.9404,-57.22587,53.568726,134.29964,6.233 374,336.98236,229.17648,34.37906,62.753174,6.036 374,436.67773,221.54059,32.86798,72.80829,5.978 374,231.62286,220.30655,23.721588,40.66223,5.892 374,626.4842,488.4448,20.881409,45.563873,5.89 374,-12.015688,477.9626,29.482008,63.996582,5.768 374,613.1267,454.32602,39.983765,106.895905,5.452 374,-6.323638,489.9948,18.470905,41.689453,5.43 374,626.7549,-20.11306,18.643555,49.41574,5.403 374,384.21677,162.47023,32.95584,72.90524,5.398 374,179.72934,161.53328,35.713135,66.34372,5.357 374,-5.644479,-17.638607,17.3293,42.50082,5.35 374,402.8155,225.56407,17.20819,42.86522,5.192 374,-72.98547,264.84943,200.91951,462.87335,5.166 374,2.489183,129.78615,32.84611,80.10048,5.122 374,271.74686,205.34395,37.14981,68.94154,5.084 374,307.592,228.15472,35.358734,66.34259,5.054 374,522.47205,220.39542,33.07257,85.34146,5.041 374,-11.237236,-32.432587,29.424541,72.952065,5.022 374,-1.3846493,219.25873,27.185415,70.7793,5.019 374,421.09067,220.224,37.60208,75.50195,5.012 374,211.319,216.1884,32.245636,60.465134,5.009 374,594.3573,-46.740677,44.230103,98.01594,4.976 374,536.5517,309.77484,143.24445,342.82623,4.961 374,583.0582,410.6252,71.629944,178.02457,4.945 374,452.11328,223.06483,31.89624,72.63545,4.918 374,586.31903,-99.965126,73.90625,233.54138,4.904 374,446.095,160.46077,28.222351,61.80777,4.889 374,172.59238,207.90677,29.388336,56.34192,4.883 374,-21.913933,401.66788,79.01473,175.67758,4.872 374,146.51797,220.91641,33.39383,58.472504,4.756 374,405.24765,238.53293,30.675995,62.91382,4.744 374,184.36185,155.35788,24.905258,44.121887,4.743 374,346.54425,157.25983,33.31067,75.11713,4.736 374,196.65738,216.19128,31.848251,58.088623,4.702 374,190.58159,163.74773,25.492447,43.057343,4.679 374,618.4885,-22.10519,19.779053,49.860287,4.661 374,332.8664,157.02332,31.570923,74.247894,4.646 374,517.9503,-33.001026,29.054749,72.52977,4.609 374,390.40225,235.78282,31.233978,63.709244,4.517 374,519.91504,130.78558,29.138855,86.624115,4.507 374,72.05382,226.48373,38.105255,68.986206,4.499 374,493.89648,227.96423,237.49884,513.8344,4.481 374,243.94101,204.61685,41.81836,90.7449,4.48 374,-4.139239,210.30946,17.238556,46.66765,4.462 374,304.0243,222.64165,25.748016,47.94832,4.434 374,356.5924,147.9804,33.352905,65.97928,4.428 374,291.3574,210.4841,42.189423,88.75363,4.409 375,424.73508,223.97581,21.181915,40.94017,52.845 375,410.38818,225.17555,20.326813,41.868668,49.27 375,415.99298,217.9865,24.344604,49.285385,10.68 375,222.54758,197.41713,23.33075,40.766983,7.597 375,257.05386,207.83955,35.958557,63.0717,7.095 375,622.5069,-32.82366,27.275879,74.95826,6.868 375,44.39398,209.64787,30.281101,56.55809,6.432 375,-11.903529,478.02307,29.263393,63.58966,6.188 375,150.59277,194.85612,28.537384,61.05162,6.174 375,162.09097,125.20111,34.325165,70.0329,6.173 375,417.917,211.35982,40.33252,67.750656,6.003 375,626.7644,488.32526,20.371338,45.47461,5.925 375,-9.081186,463.2592,37.8925,94.20029,5.844 375,626.8292,-20.56437,18.438782,49.76603,5.689 375,514.44116,300.34106,32.90619,61.06241,5.66 375,612.7154,454.5568,39.818848,107.36093,5.636 375,-17.798822,-65.26711,56.132576,149.53969,5.468 375,-5.588249,-17.624622,17.285833,42.437725,5.417 375,-6.13091,489.71536,18.588524,41.56485,5.338 375,602.7735,-56.800797,53.198242,132.99237,5.327 375,216.57928,220.7999,23.374634,36.38867,5.27 375,-72.957275,265.79782,200.71568,462.33987,5.196 375,-11.216411,-32.38686,29.42305,72.86536,5.074 375,430.90222,230.70425,22.495056,43.1232,5.028 375,338.90195,128.05072,18.118805,35.422913,4.991 375,376.35016,133.56409,36.248688,74.99834,4.983 375,493.68515,187.74492,28.269562,80.619125,4.948 375,582.77246,412.85098,71.8988,175.71573,4.923 375,322.85184,135.64964,33.600006,71.446884,4.917 375,-21.61774,402.9043,78.76368,175.02612,4.917 375,347.1361,128.43356,18.704285,35.53264,4.888 375,210.56807,205.30426,20.172867,35.517914,4.854 375,536.39966,310.02277,143.5409,342.59125,4.827 375,524.3291,120.76766,20.732483,44.323875,4.783 375,493.01672,215.4661,31.632446,90.96945,4.763 375,66.16919,213.1467,42.665382,81.770386,4.738 375,403.87762,235.52452,32.829193,65.2849,4.722 375,594.09125,-45.152683,44.948547,93.77345,4.721 375,618.6338,-21.222494,19.31482,47.78879,4.713 375,339.98303,138.38037,34.602173,72.43645,4.646 375,219.31375,202.41277,32.600708,53.84279,4.623 375,355.90634,213.62166,39.886047,84.85005,4.6 375,331.0905,129.89618,17.874573,33.91469,4.591 375,91.54982,215.87675,34.499878,59.402542,4.589 375,524.89856,107.415115,29.559692,66.69249,4.579 375,586.1758,-102.02449,75.43158,234.01653,4.546 375,49.143898,210.61758,42.22605,83.6824,4.543 375,107.815025,217.01534,31.367073,59.238052,4.507 375,268.45856,197.52298,54.7641,137.69452,4.507 375,350.2536,128.5065,29.6167,60.752808,4.446 375,494.30115,229.14996,236.78094,513.2213,4.404 375,56.693466,221.88669,23.045319,45.90741,4.381 375,324.7394,205.33606,40.146484,98.53891,4.358 375,340.07205,209.00217,39.618988,91.73251,4.344 375,23.424683,234.40204,40.362022,63.635254,4.272 375,11.421902,183.78354,60.33788,107.63223,4.264 375,243.33992,208.44144,36.16945,60.893066,4.254 375,3.0580533,244.62772,32.654907,77.922,4.229 375,161.72824,210.30345,30.914581,53.79152,4.228 375,442.50226,257.85452,34.195282,61.493317,4.209 376,446.16602,224.60785,23.160217,45.893707,72.39 376,429.89282,227.54286,22.592102,40.71498,52.547 376,622.5388,-33.717743,26.663513,76.72144,7.685 376,416.84027,148.33315,33.40448,82.20514,7.175 376,626.85706,-20.104204,18.046448,48.720993,6.322 376,549.1166,7.805668,31.437866,66.56003,6.015 376,4.288106,200.96667,19.429363,46.769135,5.977 376,-12.462425,-40.875084,40.952686,103.16474,5.943 376,626.5703,488.09973,21.2547,46.031616,5.931 376,406.46417,214.29306,29.006744,56.025024,5.918 376,210.45671,197.63739,20.176468,36.056854,5.872 376,378.99533,204.77213,27.778076,63.92978,5.858 376,204.2127,169.57605,31.214157,62.75746,5.538 376,-9.27621,463.0223,38.001526,94.84085,5.52 376,250.54315,195.42422,34.854614,60.83719,5.436 376,-6.5110493,489.31384,19.04116,42.45984,5.433 376,555.793,-14.257553,16.565063,38.82597,5.397 376,618.9049,-20.387665,18.936768,46.60222,5.381 376,571.5998,-3.6714096,55.064575,128.67297,5.316 376,578.29706,8.380146,33.397278,83.0959,5.298 376,215.74129,190.00284,21.469131,40.558105,5.21 376,562.5784,6.255356,31.441284,68.17129,5.156 376,-5.638015,-17.962961,17.315277,43.053337,5.114 376,521.8977,-24.03014,58.574097,121.10126,5.111 376,563.47906,-13.6829605,16.864685,38.031796,5.109 376,613.7559,453.37152,39.10431,107.369934,5.108 376,561.82056,-0.19343948,19.514404,37.205746,5.065 376,584.7501,-98.508575,76.11542,233.9831,5.058 376,602.2871,-55.35432,53.92743,137.32796,5.005 376,536.2619,310.05313,144.33868,341.6478,4.991 376,-73.052055,266.3324,200.72472,460.9839,4.948 376,561.72754,9.814659,43.889404,105.99548,4.931 376,583.23175,410.6585,71.69104,177.55804,4.924 376,-12.541801,477.03363,30.348589,62.907227,4.9 376,61.145103,194.694,31.152733,71.61868,4.882 376,-21.925955,401.62704,78.958405,175.78348,4.879 376,571.437,-14.932421,16.203125,37.774307,4.849 376,2.878399,210.25943,40.459995,98.047485,4.847 376,558.6066,-33.278103,28.28778,69.79227,4.685 376,8.247007,211.51216,20.34384,45.468796,4.676 376,-3.9294744,195.2234,17.120506,43.043396,4.652 376,567.4877,317.3872,25.36438,39.88147,4.544 376,412.0894,221.53345,57.78363,137.72815,4.525 376,421.896,214.00229,38.63855,63.47293,4.513 376,-4.9927645,212.18834,17.697603,46.052536,4.51 376,386.3315,194.84897,29.958405,66.4646,4.505 376,-10.463495,87.3582,29.546705,69.9102,4.489 376,570.34735,-1.3711319,18.974854,35.425407,4.478 376,362.0659,201.89445,18.813965,47.132828,4.473 376,494.49847,226.89847,236.82489,513.8446,4.458 376,474.9651,265.6699,34.173065,61.123566,4.445 376,539.5351,-14.970646,16.213928,39.072292,4.436 376,400.88422,217.91978,23.264679,46.07643,4.414 376,248.8115,205.34111,24.248291,42.56613,4.39 376,583.74567,319.92432,24.663391,39.13501,4.383 376,217.13716,214.04773,22.649185,35.44551,4.374 376,588.57874,-29.529053,53.03003,141.17996,4.353 376,136.61546,190.35751,26.586151,59.871063,4.347 376,588.7178,-18.332996,29.086426,62.51017,4.346 376,259.1831,185.90979,41.87912,100.33118,4.345 376,598.01434,-34.7683,27.825195,69.12363,4.336 376,202.66463,199.96783,19.52652,34.49788,4.323 376,548.01843,-14.229475,15.953186,39.227703,4.315 376,-5.1124563,313.88153,15.872349,39.47049,4.263 376,594.7574,-4.619282,19.03601,37.893005,4.219 376,28.625835,203.77023,54.848515,110.81012,4.218 376,617.8887,490.90372,21.778564,42.951874,4.215 377,477.6877,218.39507,24.534454,58.233444,82.516 377,455.71182,215.90398,29.027283,58.37169,82.457 377,100.582306,187.79118,28.074509,62.40712,8.387 377,-0.5440092,188.19977,24.188854,78.31708,7.784 377,64.509995,202.34982,21.321373,45.378494,7.103 377,602.00006,-56.38273,53.737976,131.14864,6.794 377,242.01541,191.16707,35.89746,63.730072,6.311 377,622.1943,-33.69784,27.715271,76.89959,6.166 377,397.14166,200.59235,28.983643,73.45227,6.094 377,626.5606,487.38864,21.313599,47.278046,5.987 377,-11.071913,-31.989841,29.548872,71.45698,5.858 377,-5.473176,-17.36683,17.336926,42.242714,5.838 377,-8.526641,464.51508,37.672493,93.43286,5.761 377,597.7603,-23.420177,39.264343,86.80743,5.605 377,186.32089,155.19974,33.859314,69.55521,5.517 377,465.88782,198.12222,41.57071,76.03964,5.516 377,437.4555,205.07643,34.18402,67.742386,5.487 377,-17.444437,-63.216026,56.708138,146.45973,5.482 377,36.162304,196.24707,29.20232,59.094116,5.363 377,-6.286484,489.64825,18.660448,41.391113,5.361 377,121.17381,184.37752,31.55635,60.899536,5.215 377,384.96136,110.68589,22.05069,40.629753,5.201 377,612.9373,453.90872,39.796753,107.30667,5.075 377,201.92146,167.87112,32.831284,62.88257,5.002 377,586.40674,-97.929565,74.32013,229.25249,4.978 377,-21.981878,402.6949,79.27658,174.89746,4.954 377,200.0278,188.36801,24.841797,37.053864,4.933 377,-12.360344,476.7882,30.191856,63.561707,4.922 377,583.34546,411.9194,71.32739,176.6495,4.895 377,536.5844,310.9266,143.45319,341.38687,4.801 377,-72.954575,267.01654,199.71857,460.55475,4.795 377,87.95743,189.12885,29.425316,65.982056,4.765 377,573.38684,-33.927933,29.764954,74.88877,4.76 377,626.5216,-20.154198,18.642822,49.688877,4.718 377,432.71732,167.31361,21.837128,50.325592,4.634 377,426.44498,204.94652,31.664001,63.823746,4.531 377,23.756866,182.94359,29.507252,63.278183,4.526 377,305.0433,134.76111,36.07025,64.87906,4.518 377,-14.486785,175.20885,46.951843,137.73994,4.48 377,126.004295,118.43117,27.985802,42.977097,4.448 377,250.90756,179.66965,35.551147,62.13243,4.394 377,494.7135,229.0318,236.69098,514.63464,4.31 377,580.13666,-7.9266777,42.77954,83.63104,4.291 377,571.6945,-56.461147,58.019043,122.61316,4.274 377,153.93958,200.06256,35.583115,59.226105,4.269 378,531.28613,221.72638,29.576172,70.34631,97.54 378,507.22043,223.0975,29.245636,73.05536,96.908 378,50.06749,198.27249,22.859016,48.832123,11.95 378,291.77142,205.94609,32.076813,63.058395,8.89 378,515.7307,212.01797,32.353333,78.1503,8.358 378,-17.707264,-64.64625,56.206055,147.93967,7.566 378,622.3565,-33.771988,27.558044,76.1678,7.338 378,393.42868,187.80191,25.376434,64.59332,6.966 378,498.25458,212.58487,29.434021,73.67062,6.914 378,315.92102,197.25157,18.940369,29.160904,6.392 378,626.457,-19.495405,18.414917,48.643196,6.3 378,-9.009927,465.42288,37.80801,91.306854,6.197 378,332.84003,212.5951,32.027557,63.294434,6.195 378,-5.999305,488.85092,18.567825,41.77475,6.179 378,63.14827,198.86304,22.18045,51.038742,6.114 378,231.86697,192.31325,37.1987,63.58737,5.936 378,602.2853,-57.43217,53.738342,130.50774,5.841 378,621.8158,478.8992,29.076538,65.48782,5.838 378,25.4632,200.431,20.08134,42.60388,5.739 378,-5.095149,-16.564184,16.502895,41.904465,5.672 378,323.0927,198.82655,17.971313,28.321426,5.669 378,612.5846,454.99872,40.26239,106.71423,5.477 378,593.78546,-45.23531,44.70874,91.08402,5.413 378,183.32465,192.7007,24.7359,36.398926,5.401 378,303.129,213.95918,25.68692,48.71962,5.329 378,275.6573,207.30931,34.792267,62.17726,5.318 378,582.9301,413.14392,71.85089,175.07892,5.203 378,535.75836,309.06622,145.09784,341.7862,5.197 378,-21.550112,403.8147,78.960945,174.66772,5.164 378,-11.422163,-32.06919,29.412725,72.60613,5.154 378,-73.114845,266.74646,201.125,461.16272,5.097 378,107.200226,199.36801,17.168182,33.263153,4.976 378,495.5522,231.39062,236.73651,512.7013,4.712 378,242.9222,179.23407,36.937973,60.30635,4.683 378,413.07373,198.54181,28.914856,68.72473,4.641 378,38.973446,200.16089,30.80193,64.06329,4.601 378,443.92017,168.586,29.696472,83.26305,4.562 378,417.74292,73.7503,22.809937,47.14692,4.533 379,568.79974,212.08955,31.973389,72.72771,87.46 379,610.735,224.06406,29.697876,95.96002,76.842 379,-0.48766017,187.16725,21.245827,63.518158,16.046 379,602.7729,235.51163,47.781433,132.72363,7.927 379,-10.8743515,-31.831995,30.496408,74.755356,7.614 379,-5.4940996,-15.007563,18.127548,41.613968,7.547 379,397.56415,186.1583,30.891113,63.260254,7.434 379,612.05054,210.1491,27.976196,63.461777,7.353 379,433.16626,195.37027,32.098755,65.70303,7.318 379,-11.749632,478.82217,30.025328,62.67148,7.234 379,-6.149378,489.25885,19.128412,41.345154,7.038 379,-2.9498935,12.089096,27.121141,54.466476,6.827 379,174.29892,181.46413,27.658966,37.796463,6.62 379,374.41064,197.24968,29.539307,69.990524,6.603 379,508.3353,-33.508785,30.131256,74.13667,6.539 379,557.8933,204.53491,32.098083,72.457825,6.435 379,241.42014,172.77446,37.650146,56.95363,6.328 379,159.08324,188.44109,24.985657,36.580536,6.272 379,138.32259,195.292,20.760208,27.141907,6.147 379,411.02686,207.13373,31.820984,72.930664,6.082 379,-5.38643,167.58499,34.98119,96.660614,6.038 379,-17.661465,-61.797382,56.83839,140.66092,6.01 379,622.12103,479.4629,28.640808,64.97357,5.986 379,622.46375,-33.447227,26.957275,75.36679,5.976 379,472.70602,196.06883,21.658295,43.100296,5.91 379,602.50586,185.37018,47.571167,120.082886,5.818 379,540.6651,203.23499,30.309204,74.8519,5.742 379,549.189,213.35135,31.393494,78.86508,5.729 379,627.0063,-19.512682,18.247131,47.340057,5.664 379,613.03534,454.3055,40.06555,108.10159,5.663 379,577.8517,212.36716,37.25476,85.761444,5.609 379,29.351215,158.77719,28.103115,72.32019,5.59 379,512.7073,203.71255,50.20337,111.9397,5.58 379,322.70947,189.9908,18.43695,30.716522,5.577 379,90.21511,105.575195,37.932625,69.325165,5.535 379,602.8038,-56.14306,53.157593,138.06664,5.466 379,299.42044,212.11075,34.378937,68.34421,5.36 379,625.06226,218.79079,20.13794,46.492783,5.338 379,145.70235,193.32922,22.723831,30.320892,5.324 379,514.01544,184.08548,29.314392,82.49698,5.319 379,475.92892,177.39296,27.97232,66.812454,5.198 379,536.1205,309.22485,144.02332,343.13684,5.193 379,547.7977,241.93738,32.14142,88.652405,5.143 380,399.54865,199.1744,27.712402,61.928238,15.612 380,243.3151,168.2173,36.21884,59.353683,8.46 380,506.34232,158.48763,33.016083,81.52962,7.501 380,136.98593,200.56038,21.336761,34.59059,7.039 380,404.2638,192.54466,38.085632,85.62587,6.878 380,-17.892979,-65.536705,56.069748,150.57753,6.735 380,622.50903,-34.363422,27.425598,77.09128,6.377 380,613.4393,453.06616,40.05243,109.85718,6.248 380,2.1642864,196.90385,22.10547,53.661545,6.145 380,346.5891,197.99644,19.6586,27.606018,6.093 380,192.7899,151.27075,21.737381,37.485992,6.014 380,621.55396,478.26248,29.531555,65.273285,5.863 380,-11.547656,476.18964,29.298878,64.785706,5.834 380,-5.974807,489.4058,18.473877,41.689056,5.795 380,464.6775,199.29745,44.146973,83.338776,5.652 380,626.8181,-20.634645,18.51123,49.145912,5.624 380,-5.4759617,-17.144346,17.103737,41.648373,5.455 380,418.95,193.08899,39.553375,85.03198,5.42 380,-4.270157,184.84709,18.537376,44.507385,5.417 380,380.7226,-33.19481,30.466919,67.81204,5.128 380,414.2081,-33.658916,29.0448,68.44911,5.091 380,365.48386,-32.452114,29.755981,68.74674,5.079 380,602.3469,-56.450943,53.848816,132.81042,5.055 380,106.96219,205.54456,18.624168,28.67926,5.052 380,426.7901,124.063156,28.934753,66.0939,5.028 380,-11.317139,-32.188023,29.497025,72.203865,5.002 380,-7.6986494,357.594,36.50914,107.115265,4.974 380,-18.009047,434.00067,55.19426,143.06921,4.863 380,-40.170593,367.9497,110.09788,274.46857,4.853 380,499.9077,134.29141,31.35431,86.72493,4.841 380,492.0285,190.48906,33.24463,61.10292,4.811 380,583.1251,410.17206,71.86786,178.05908,4.776 380,513.01483,212.99068,36.0119,77.31114,4.771 380,586.78296,-98.873184,73.4881,232.92485,4.749 380,144.26508,135.8186,35.62184,69.448395,4.724 380,619.17163,490.511,20.256165,42.828857,4.718 380,450.33737,203.28543,43.239044,97.948456,4.705 380,224.6628,175.57196,46.615402,91.507385,4.7 380,536.42596,310.7938,142.7381,342.6155,4.68 380,-0.16236424,210.12537,27.0239,69.725525,4.657 380,-5.684176,227.7631,18.754139,46.907333,4.628 380,397.72742,-33.89334,29.986755,68.40857,4.608 380,430.0308,-33.648525,28.284363,67.51567,4.592 380,413.18515,-61.932575,54.89035,130.45372,4.549 380,-72.50238,268.37653,198.92055,458.32123,4.549 380,329.30453,195.58037,20.662659,30.729752,4.54 380,131.1823,198.08661,19.991135,32.76155,4.512 380,390.00153,200.98099,29.394226,72.866516,4.51 380,380.7776,-59.24879,55.184814,126.79259,4.506 380,489.29074,-178.37074,236.43362,422.52863,4.484 380,-8.141967,174.15256,27.878693,66.730774,4.476 380,202.43442,153.68108,18.114273,33.138977,4.473 380,388.75546,106.72603,30.593658,63.358383,4.462 380,171.82507,147.7173,33.75708,61.28479,4.456 380,298.90826,132.20117,34.07724,73.98947,4.441 380,424.89526,115.7769,22.93396,46.535095,4.423 380,328.60236,131.00937,22.846893,40.862167,4.419 380,402.0554,195.42496,19.600952,38.155716,4.397 380,493.4629,227.70532,237.98108,515.02844,4.348 380,594.5495,-46.269066,44.025513,98.22337,4.344 380,434.77405,203.52818,42.14807,96.05736,4.329 380,396.8603,-42.761627,56.00714,128.95485,4.282 380,414.21738,105.81612,29.53067,67.377045,4.28 380,-0.25250793,157.76675,26.206545,74.29007,4.268 381,437.45407,195.91994,26.775238,61.315292,59.008 381,622.534,-33.096344,27.310303,76.5969,8.748 381,92.01354,196.63213,17.153297,34.246353,8.179 381,107.77718,200.53008,17.410454,35.369522,7.298 381,627.0452,488.65515,20.530457,43.962463,7.285 381,601.07764,-57.154896,54.79358,133.06271,6.869 381,-17.755339,-65.911835,56.036736,151.28642,6.406 381,435.5813,196.66817,37.7995,95.081314,6.403 381,485.91388,195.06961,29.602966,76.16312,6.323 381,613.1856,453.9571,39.50641,107.385376,6.162 381,563.3,166.2701,30.350769,71.15819,6.051 381,626.87616,-18.591991,17.929016,48.589344,5.996 381,165.49261,169.47849,30.667984,63.30246,5.967 381,339.2879,135.7511,33.7157,70.27013,5.924 381,611.0586,4.14542,28.84961,74.159134,5.878 381,305.10214,130.67363,35.79236,79.782684,5.857 381,619.5898,491.06903,19.20575,40.59607,5.83 381,-8.798275,465.4669,37.646645,90.95853,5.697 381,99.001656,197.63467,17.784142,33.918808,5.622 381,250.61646,176.55638,34.645386,55.885925,5.516 381,598.5898,-19.30777,38.78607,84.257835,5.473 381,585.8009,-97.78519,74.48584,231.51584,5.365 381,-5.546804,-17.3255,17.196108,41.877647,5.282 381,193.09929,161.08484,19.488571,36.483032,5.163 381,-17.730682,436.94434,55.665527,137.89026,5.159 381,558.04956,191.84254,31.049316,53.52501,5.133 381,-6.67142,489.23563,19.524527,43.371124,5.108 381,85.643394,206.11469,16.421227,30.148254,5.066 381,471.12604,207.25887,29.83432,76.86339,5.041 381,123.63777,129.58401,34.251328,70.378204,5.031 381,-11.295471,-32.256886,29.546015,72.60877,4.996 381,389.3251,141.48975,30.074432,68.6673,4.932 381,583.1177,411.7602,71.862915,176.79352,4.863 381,-72.86945,267.23785,199.6886,461.09125,4.836 381,361.12015,195.48065,20.581482,28.73079,4.803 381,181.29376,157.36223,28.314621,60.55179,4.753 381,529.40497,206.28912,44.370117,94.02521,4.729 381,450.40207,202.43192,39.559784,89.89865,4.72 381,562.1601,209.53738,42.297974,91.32822,4.67 381,624.4733,25.793726,21.85907,51.84263,4.632 381,-40.102444,370.29034,110.1154,272.81537,4.615 381,401.89105,143.54108,19.996399,43.334747,4.586 381,581.82745,-34.0851,29.236328,74.95363,4.568 381,91.9408,214.52863,16.74604,26.601074,4.551 381,578.76587,211.39156,41.35327,92.353806,4.515 381,463.14578,182.92337,50.321747,107.126495,4.491 381,366.12454,144.2107,54.107086,115.65396,4.489 381,405.4754,191.91174,36.957092,91.092896,4.488 381,571.5964,-59.071877,59.81018,127.41661,4.485 381,536.43414,311.08157,142.97382,342.52975,4.427 381,628.45123,474.70505,16.23993,40.413605,4.348 381,66.26081,196.87743,17.623276,31.465042,4.244 381,339.0224,193.25964,39.618958,81.496216,4.234 381,421.0602,199.32047,31.168121,76.00156,4.219 381,138.71706,212.56718,18.653824,28.226074,4.166 381,538.73254,194.73428,32.324524,57.311066,4.153 381,3.3318043,188.83562,32.726936,65.74164,4.149 381,324.96432,192.47781,38.754913,94.509674,4.141 381,493.63034,227.8327,237.91965,515.0918,4.12 381,478.87903,179.42523,30.857239,66.76468,4.067 381,595.8381,206.83107,40.364075,101.01619,4.057 381,489.32816,-178.27254,236.11856,419.93698,4.054 381,618.2572,-5.9742603,20.327637,45.298378,4.036 381,354.49826,193.50812,40.01358,81.109314,4.023 382,478.31732,168.80104,33.371826,78.017944,86.814 382,73.39038,165.78192,23.975586,44.637695,12.684 382,436.48465,155.90875,35.414734,92.20038,12.377 382,155.05121,136.18866,33.10263,62.83983,7.932 382,617.6549,76.77016,22.145447,95.516556,7.628 382,462.03275,164.8228,32.37445,73.66101,7.278 382,596.8795,146.83846,41.892395,163.11046,7.233 382,622.8256,-33.28999,26.31311,79.571846,7.193 382,545.584,169.25179,42.72052,82.992386,7.163 382,173.46327,124.81597,28.865921,60.378944,6.673 382,311.42758,89.62413,38.69815,80.962265,6.37 382,-5.183661,-16.572374,16.583021,41.281742,6.228 382,487.88757,168.65771,20.561462,42.581436,6.067 382,-8.693542,464.67093,37.442913,92.37326,6.002 382,615.71216,189.51097,26.963684,93.932205,5.965 382,626.9345,-19.582672,17.774353,51.078796,5.951 382,553.91345,155.45978,56.182007,104.40784,5.91 382,602.0704,-55.84102,53.9317,138.26443,5.682 382,514.763,168.3644,41.104675,94.82933,5.623 382,-17.0439,-63.12081,56.099564,146.36409,5.618 382,451.945,85.72109,17.66388,36.815025,5.611 382,614.624,138.32693,25.06311,86.31215,5.603 382,576.3013,149.24751,51.56891,123.6364,5.559 382,-11.434668,-32.85428,29.109453,73.09891,5.451 382,612.3657,453.92844,40.44873,107.76749,5.427 382,245.5973,135.14412,34.972794,60.936813,5.333 382,423.52463,171.47621,31.52356,78.41301,5.331 382,442.74002,83.5076,17.989105,36.614265,5.319 382,-6.517034,489.28604,19.01596,43.124176,5.154 382,438.71674,137.65604,26.356873,76.80339,5.113 382,626.3783,488.05206,21.350891,46.172607,5.029 382,403.39633,116.87562,30.508575,76.2929,4.998 382,115.327,90.61603,36.245598,73.94627,4.971 382,425.98813,73.200424,19.602692,42.023216,4.96 382,529.57776,171.03503,43.11432,95.93042,4.949 382,-21.670008,403.19403,79.33412,175.24994,4.946 382,258.53055,169.01576,18.69696,28.817337,4.943 382,582.629,412.53625,72.1062,175.66425,4.912 382,-72.43687,266.9116,199.74744,460.03775,4.91 382,540.087,168.43286,33.830444,54.209076,4.904 382,578.98047,164.8302,30.48883,56.185837,4.85 382,44.876785,159.17603,28.665169,50.773193,4.759 382,515.36,162.84909,17.84259,32.299866,4.748 382,67.46016,145.6302,40.824432,72.69316,4.738 382,490.73193,-12.742056,17.15747,37.923252,4.725 382,404.62845,162.63899,29.57782,62.42105,4.722 382,536.40826,310.93582,142.70618,342.27902,4.703 383,537.71405,212.16959,38.67993,95.58981,95.919 383,462.23993,198.3964,22.66748,48.16588,67.804 383,491.77222,207.24329,31.060486,97.36206,11.562 383,620.29926,-3.5574284,16.817566,36.88768,10.036 383,41.23265,215.06451,23.248665,48.733215,9.464 383,626.81024,-16.940666,17.201233,45.115776,9.321 383,507.04004,203.40765,29.248474,88.801575,8.808 383,454.99945,186.64851,35.389587,71.93498,8.38 383,541.26086,248.40375,32.31299,78.26257,8.296 383,467.043,176.44524,32.941925,74.1237,8.236 383,535.99066,204.93625,29.057434,71.47739,8.068 383,623.0647,-32.450333,25.451172,73.607895,7.706 383,486.70944,187.6611,27.648468,79.99133,7.295 383,375.75467,208.63068,20.11502,34.572464,7.289 383,320.8222,130.81676,37.596497,79.285324,7.19 383,-5.947714,489.77338,18.206348,40.733765,7.01 383,-11.620827,478.55743,29.655563,61.671265,6.712 383,-17.653687,-65.99314,55.998734,151.32298,6.562 383,181.08112,172.85977,28.57016,61.71196,6.358 383,517.8722,198.5552,27.527649,65.67935,6.233 383,49.729454,208.64737,20.602234,50.17621,5.858 383,478.9604,164.7539,30.123047,80.872314,5.807 383,520.14185,208.75221,46.72229,113.11635,5.659 383,626.48865,487.45016,21.24945,46.909576,5.57 383,451.69623,205.23889,42.759155,109.10693,5.413 383,-5.665391,-17.680689,17.351234,42.52229,5.405 383,492.71786,207.9126,51.55954,126.439514,5.229 383,65.249855,207.00423,19.626945,39.94783,5.17 383,57.643284,207.20099,20.129353,42.36284,5.064 383,-11.2445965,-32.373093,29.433392,72.82187,5.018 383,-21.643581,402.9753,78.95943,174.8937,4.991 383,582.8982,412.25525,71.89276,175.7547,4.949 383,536.621,309.04315,143.56836,343.23157,4.938 383,613.09155,454.4052,40.121643,107.46735,4.921 383,-73.00765,266.51648,200.70166,460.31824,4.898 384,494.09436,213.50735,20.252625,44.329712,60.79 384,384.273,215.10675,20.791351,35.72896,9.386 384,40.673325,214.27176,19.4175,39.078156,8.402 384,252.1683,183.03267,35.87674,58.783813,7.82 384,3.357507,224.8119,17.801878,39.26796,7.794 384,626.3012,-19.943018,18.394226,50.536133,7.681 384,513.7312,211.40747,18.275696,39.405685,7.458 384,530.19885,219.24849,33.562134,55.96077,7.426 384,621.74994,-33.323174,27.34198,76.28994,7.034 384,485.8879,189.83423,30.378815,64.05113,6.927 384,-17.667524,-66.23835,56.05709,151.27391,6.542 384,-12.01145,477.92957,28.988438,62.44934,6.09 384,27.07478,212.9318,20.079792,41.299347,5.935 384,-6.319988,489.99265,18.70633,41.222748,5.885 384,-8.7536125,462.7501,37.379707,95.03171,5.788 384,481.38245,146.72322,30.18164,89.31343,5.76 384,574.15295,200.41159,54.338135,165.9487,5.722 384,602.1842,-54.108273,53.305786,135.52824,5.564 384,504.4715,214.71692,19.981628,40.37561,5.553 384,483.67447,210.96623,40.72928,75.00462,5.439 384,604.66296,43.021202,29.28003,74.98309,5.415 384,338.90366,121.25011,34.111755,66.172806,5.383 384,618.3197,-21.301325,20.057007,50.781216,5.279 384,-5.708189,-17.728542,17.376062,42.56755,5.243 384,587.513,192.14255,37.033386,76.32764,5.172 384,626.3889,487.3149,21.387817,46.659332,5.16 384,359.76688,130.92345,25.260132,50.301163,5.115 384,322.2774,120.28136,34.935883,69.42734,5.089 384,369.98328,217.52693,20.55185,38.88109,5.076 384,-11.27963,-32.463722,29.526558,72.90886,5.058 384,-2.773534,212.02988,17.17806,40.260345,5.055 384,613.4712,452.83844,39.754517,110.16681,5.003 384,353.44943,214.54942,22.715607,44.398087,4.966 384,583.34875,410.6232,71.8587,178.07016,4.9 384,66.174675,118.5385,33.553726,67.792206,4.892 384,-21.641624,402.6858,78.45752,175.81958,4.864 384,532.5661,212.88425,16.954285,31.319946,4.841 384,536.12067,309.35843,143.74359,343.06406,4.821 384,-16.474249,190.05574,49.584625,124.75267,4.819 384,561.58655,215.28673,42.03662,88.48082,4.818 384,362.4096,223.39949,19.94284,38.485947,4.811 384,-72.718124,267.73578,199.74489,459.61664,4.805 384,538.4798,214.6011,17.910217,29.814133,4.795 384,588.57263,-32.272728,52.743164,138.5936,4.789 384,-4.310188,228.70206,17.073273,40.61493,4.668 384,486.15237,208.41576,20.072754,42.20285,4.638 384,357.59094,189.28285,28.343018,61.50392,4.634 384,330.32867,133.48682,34.73474,82.183945,4.619 384,604.2514,4.890812,31.564575,86.457306,4.576 384,585.58746,-101.20065,75.14618,237.44034,4.446 384,482.75436,-17.74738,17.857758,40.115547,4.43 384,545.2549,212.6283,19.293396,32.000427,4.402 384,593.44086,211.4383,35.665955,84.22327,4.373 384,427.75607,123.27728,35.94925,68.387054,4.333 384,493.08276,227.61227,238.33508,515.1343,4.269 384,589.62683,206.39981,59.494324,201.61102,4.257 384,98.719986,237.02155,43.458054,96.116516,4.241 384,-9.463767,162.73396,39.266907,89.64584,4.241 384,545.66644,213.65039,42.93573,81.72009,4.226 384,107.9025,294.8864,31.559692,66.81448,4.204 384,475.099,211.86581,20.58258,37.17079,4.155 384,104.67462,210.9379,22.37558,43.782562,4.129 384,490.5783,-19.438587,18.069,42.302876,4.126 385,549.0838,215.66818,26.389282,56.03421,82.22 385,392.76828,214.41183,22.4346,39.344177,31.613 385,382.12216,209.81602,27.87912,54.687424,9.615 385,184.59032,170.92345,23.004211,41.781784,9.187 385,252.02089,182.22133,35.066147,59.177185,8.939 385,78.63959,209.5958,27.129776,66.94754,8.12 385,-3.8105965,205.65274,17.69884,41.28221,7.606 385,580.459,215.19283,14.288879,28.168686,7.182 385,481.13116,208.32034,20.466492,36.818024,7.092 385,-0.043393373,211.91196,19.12115,46.838867,6.816 385,-18.069845,-66.1027,56.7614,151.74757,6.672 385,442.4042,115.228,36.122437,67.09537,6.516 385,573.07825,212.85002,15.371521,31.543549,6.177 385,626.29285,487.13522,21.780151,47.615204,5.995 385,617.3947,229.2026,23.203918,54.541626,5.916 385,627.41113,-17.522879,16.997803,45.621056,5.885 385,621.396,406.44577,26.105713,75.32904,5.846 385,616.8953,99.99965,19.638245,47.852966,5.78 385,377.7847,211.4087,21.488708,42.820953,5.722 385,365.56006,194.60165,28.303162,65.12219,5.705 385,-6.168399,489.65604,18.579212,42.106476,5.622 385,-4.853987,170.64565,16.895723,39.792496,5.595 385,174.29391,172.48708,31.6427,60.412598,5.527 385,613.8832,452.5053,39.04193,110.1452,5.48 385,503.14673,195.95695,25.564087,57.423065,5.366 385,-11.417197,-32.522213,29.765656,72.93849,5.321 385,-8.641091,463.781,37.504807,94.35376,5.312 385,483.24582,110.91577,28.997711,77.03171,5.276 385,-5.8365784,-17.97992,17.486122,42.783203,5.157 385,623.3789,-34.81073,26.00415,74.851105,5.144 385,113.42076,225.07974,21.132858,38.499756,4.952 385,-12.392509,477.5067,30.258232,63.06006,4.938 385,-73.12891,266.15726,200.26363,461.71848,4.902 385,561.1039,209.47284,18.783264,38.1026,4.837 385,605.6832,218.32541,28.907959,66.79666,4.819 385,61.67991,213.6879,29.093773,67.272064,4.79 385,70.739624,109.57822,26.912552,39.582733,4.777 385,-21.94562,402.25735,79.01754,175.46164,4.735 385,603.69556,-56.278862,52.805603,137.59299,4.693 385,513.9085,179.2124,20.781311,45.18857,4.669 385,583.60614,409.12903,71.12189,178.21924,4.666 385,408.13287,216.14769,19.694458,33.744278,4.594 385,626.82166,99.81949,18.060486,45.849945,4.583 385,536.7355,310.34155,143.06104,341.54248,4.571 385,378.93488,229.90735,19.96045,44.717926,4.545 385,465.84906,210.92264,19.682922,37.768265,4.412 385,582.2106,206.9434,35.29248,70.76161,4.336 385,622.7271,210.91965,26.17096,73.199066,4.322 385,85.64952,221.783,28.90989,62.77809,4.321 385,63.582096,109.875244,39.537884,60.784607,4.311 385,-4.2625594,221.68254,17.165133,43.017105,4.307 385,75.14017,223.93585,19.03891,45.394012,4.263 385,491.32825,133.1814,30.56726,91.45729,4.224 386,413.25607,205.83102,29.86316,64.33829,29.374 386,250.95207,185.14339,37.871323,61.835327,11.366 386,397.60693,205.04662,29.110168,67.781845,11.194 386,481.96356,207.63144,20.341248,44.625595,8.807 386,-18.012218,-65.99272,56.882977,151.53328,6.942 386,192.75034,177.66602,18.051727,32.545227,6.741 386,626.555,487.19382,20.474304,47.19986,6.506 386,-11.420477,477.90128,29.34659,63.196503,6.23 386,-5.938213,489.0696,18.619326,41.707306,6.171 386,612.65955,456.63474,39.178894,104.68747,6.004 386,627.304,92.34319,16.638367,45.984596,5.9 386,627.4708,-17.341566,16.922363,45.40486,5.87 386,39.166492,107.68254,40.418705,63.804657,5.59 386,366.5912,212.99216,25.9599,61.789337,5.476 386,429.63913,166.15634,29.231445,69.3775,5.443 386,583.615,412.76276,71.006226,175.66351,5.341 386,353.83685,93.53093,39.98929,70.80702,5.3 386,6.547695,198.98851,28.011692,65.87245,5.289 386,-11.38954,-32.505276,29.726667,73.38256,5.279 386,384.8386,205.31593,27.7471,68.6107,5.276 386,36.587566,207.96407,28.51389,64.68376,5.216 386,406.20636,219.27637,29.222229,67.92236,5.201 386,107.32016,191.88475,32.794937,65.61568,5.188 386,623.40283,-34.74384,26.014893,74.69522,5.174 386,-5.7689962,-17.959188,17.404137,42.92088,5.151 386,-21.327665,404.65637,78.48566,173.99475,5.118 386,-73.49799,266.30676,201.1452,460.9712,5.055 386,131.02403,152.06549,33.87285,71.61688,4.987 386,144.3657,155.51349,23.577255,42.054047,4.879 386,-4.626343,198.86043,17.413692,44.794296,4.876 386,240.77788,206.85802,25.431961,41.369476,4.853 386,322.90765,84.58649,34.22232,59.41162,4.76 386,522.4197,226.45502,20.741943,32.774536,4.755 386,-16.756346,185.90637,50.136192,128.81525,4.716 386,235.51654,236.36996,19.75856,35.249664,4.674 386,536.3548,310.44666,143.86627,341.53143,4.666 386,457.25818,107.15542,36.93927,72.78568,4.665 386,247.2485,197.39795,27.623596,45.71382,4.664 386,603.8098,-56.11501,52.77893,136.61922,4.642 386,117.0137,148.7194,31.913574,58.00992,4.632 386,212.00714,177.4437,16.348434,29.851685,4.614 386,377.30563,77.53382,22.234436,40.91992,4.597 386,621.1692,98.30142,16.195435,45.306366,4.568 386,508.74945,132.58061,30.046814,82.60338,4.528 386,336.24295,111.94307,40.18866,75.587326,4.49 386,99.85907,156.34927,33.879883,64.31209,4.485 386,185.69131,173.61974,19.274902,34.62387,4.439 386,219.53447,176.90015,16.591904,28.49228,4.428 386,614.1532,478.83405,27.567993,63.27942,4.425 386,493.44153,228.54562,237.56055,515.2744,4.41 386,202.47061,178.76035,17.227188,29.194183,4.369 386,615.8212,161.32814,26.731567,74.55359,4.292 386,1.2088382,183.08011,25.049736,67.67966,4.288 386,146.7865,190.94884,34.539,66.25227,4.25 387,6.739559,170.8612,27.95383,80.97958,14.395 387,257.51825,174.53268,38.50348,70.25452,12.905 387,464.248,122.244804,38.844116,80.56599,8.512 387,483.4581,183.05351,35.234283,85.71773,8.487 387,93.48039,215.70319,29.783066,62.366913,8.057 387,389.49124,197.2042,30.293762,71.59927,7.901 387,193.37256,172.77257,19.237488,30.835144,7.603 387,178.96828,173.70213,20.872131,38.23593,7.394 387,598.60956,220.17682,22.968262,41.16928,7.075 387,-17.85128,-64.35842,57.014793,148.70067,6.911 387,-11.797013,477.69656,29.59291,63.553314,6.688 387,0.6635225,207.1198,25.39598,71.30003,6.681 387,-4.6967473,168.74199,18.673168,51.470078,6.586 387,97.47905,135.82014,32.944748,66.28621,6.551 387,17.983137,168.98317,29.90425,65.09033,6.492 387,401.15656,205.77019,22.704376,50.67845,6.463 387,84.044334,132.99126,33.30522,65.435715,6.286 387,-6.072738,489.06512,18.92681,42.346375,6.255 387,68.06786,130.56857,35.04397,66.23804,6.054 387,67.11458,219.12611,32.776688,58.229416,5.983 387,627.4544,-17.294987,16.948608,45.557957,5.963 387,626.40063,487.67404,20.728638,46.408783,5.832 387,155.32236,173.8046,30.924454,66.17877,5.789 387,614.2605,172.44177,25.126953,71.46245,5.776 387,489.0498,-2.2632408,36.08258,61.678265,5.758 387,612.7732,456.2448,39.350586,105.328674,5.686 387,-5.3707957,-17.237709,16.79403,42.704174,5.605 387,188.28123,168.13301,30.001389,46.233994,5.579 387,-7.785421,175.67659,27.580912,79.196304,5.459 387,141.13254,178.79787,33.677094,72.5195,5.414 387,-11.357907,-32.942753,29.372581,73.967064,5.41 387,341.19708,137.35568,34.001312,71.28883,5.371 387,-13.976095,180.18866,47.35116,131.83875,5.32 387,-4.0094132,195.27196,18.142134,54.045044,5.291 387,-73.15399,266.10956,201.45721,461.5061,5.191 387,200.82623,172.72188,18.624756,28.961868,5.18 387,616.7292,207.29248,22.025269,50.167786,5.16 387,583.4521,413.8421,71.15546,174.435,5.149 387,623.45496,-34.725212,25.949097,74.80645,5.139 387,108.96882,215.34721,29.575127,63.00081,5.127 387,51.3998,133.03821,33.755116,63.925613,5.091 387,130.4244,221.15668,33.996567,54.655,5.061 387,333.24344,174.86954,16.452759,31.454193,5.052 387,-21.288652,404.55243,78.50251,173.79315,5.035 387,531.0727,208.8814,20.12854,44.178528,5.021 387,410.2885,200.08456,20.198273,48.62085,4.797 387,516.6963,159.923,29.295532,80.50159,4.795 387,595.4511,192.641,34.200623,69.46257,4.762 387,155.27122,153.9795,19.607132,35.243713,4.753 387,362.5523,90.484474,36.03012,71.39202,4.716 388,515.57025,219.27956,29.328796,64.13377,49.989 388,471.07275,213.90363,22.280762,45.364563,18.503 388,501.94577,215.3384,30.734955,68.853836,15.863 388,492.58215,207.15779,29.099854,67.409256,13.224 388,422.51407,178.82355,26.599274,77.04585,11.611 388,622.4157,-32.771687,26.979065,76.67101,9.063 388,257.62836,171.47147,39.73526,72.159836,8.944 388,626.5472,-19.967964,18.28247,50.15365,8.051 388,59.295647,151.58182,33.21176,72.45001,7.645 388,426.28955,202.67853,30.381592,69.25214,7.595 388,478.44467,197.2976,28.738922,66.038086,7.535 388,404.8331,183.744,30.276398,79.5374,7.489 388,186.93643,166.11447,18.630768,30.813477,7.172 388,461.01038,215.55624,31.412903,71.791016,6.972 388,464.16217,183.91623,27.33142,69.75635,6.819 388,613.0566,453.79214,39.762512,107.76547,6.687 388,514.81134,222.38582,40.200928,104.116806,6.676 388,192.73474,168.56946,19.765167,33.798187,6.657 388,626.5203,487.97275,20.603577,46.352753,6.547 388,459.9638,217.2968,21.589386,42.68672,6.505 388,65.22101,168.58698,33.73207,80.695786,6.295 388,-12.022966,478.40735,30.038591,62.737305,6.231 388,0.7409978,235.45473,22.774921,43.33345,6.124 388,-17.652472,-63.689423,56.854668,145.94191,6.06 388,248.80133,206.2154,26.032806,42.667465,6.029 388,-6.2580037,488.97635,19.017284,42.061005,5.941 388,88.24568,161.45543,36.148018,73.254196,5.751 388,372.70972,167.90182,29.004608,87.17502,5.695 388,412.87244,208.07019,31.457092,73.91431,5.688 388,449.79022,226.27853,35.581818,75.29169,5.679 388,-5.245221,-17.340609,16.767342,42.619823,5.568 388,444.19067,212.90678,31.554504,59.6902,5.551 388,483.28525,225.28773,42.57773,102.87779,5.432 388,59.5817,114.33453,33.57539,66.10632,5.323 389,593.0821,221.78793,40.44989,108.695496,83.959 389,515.06903,210.7055,22.47937,49.224335,27.091 389,493.3748,199.04391,27.147552,75.013855,25.774 389,415.28363,189.8047,25.164612,76.313065,20.669 389,502.44855,202.26286,29.012573,63.159195,13.362 389,248.72643,207.92818,24.158737,39.58612,11.735 389,184.40915,157.0826,21.447662,33.20288,10.551 389,544.7985,218.70502,22.787292,49.71518,9.085 389,582.4289,223.8167,38.437866,78.30086,8.208 389,4.742751,203.81163,31.526001,66.35268,8.112 389,100.03897,201.78156,35.974274,60.022614,7.791 389,33.85029,128.22946,36.296684,65.69386,7.443 389,1.4317715,112.667946,31.347006,85.307,7.406 389,-11.524987,479.68518,29.639915,61.49402,7.314 389,394.48428,174.83896,32.590027,76.021194,7.287 389,602.2277,-56.780567,53.611816,133.57498,7.188 389,-6.005373,489.04395,18.832436,41.05725,7.094 389,514.26,211.2557,39.11145,83.10043,7.005 389,608.12213,227.97733,36.539734,114.25543,6.821 389,626.71436,488.7944,20.337585,45.234467,6.726 389,79.64444,205.52914,35.738556,53.498444,6.488 389,238.88023,171.97992,51.770218,74.65448,6.47 389,258.01828,159.54802,37.09909,73.91638,6.452 389,531.24963,221.18338,32.83496,67.92081,6.445 389,575.5602,216.47119,54.101196,169.54321,6.313 389,612.72656,455.12213,39.431946,106.10278,6.213 389,627.1675,-17.047644,17.234375,46.25055,6.16 389,25.37033,82.358154,37.519447,67.32507,6.075 389,622.87646,-33.427494,26.323853,76.92609,6.066 389,-6.0612383,-18.972092,18.03553,43.921886,6.06 389,-17.202742,-64.57027,56.328133,144.9911,5.997 389,525.0759,204.07964,29.103271,55.25969,5.987 389,53.862648,141.88591,25.602531,40.37462,5.898 389,218.5212,162.5131,16.644287,26.4514,5.768 389,485.97275,177.94873,27.46164,81.93054,5.754 389,155.33308,157.95285,32.479782,50.841217,5.748 389,-10.02384,204.02348,28.552876,70.812454,5.697 389,25.711573,151.33304,33.12465,70.330536,5.666 389,620.98987,223.97801,28.95697,79.11336,5.583 389,46.980244,123.476944,38.387005,64.3521,5.562 389,483.60687,204.49017,20.615845,48.37726,5.496 390,609.10144,214.50522,22.61731,51.93033,31.814 390,580.3364,208.33768,27.233887,65.06897,26.99 390,569.2371,204.02435,27.285034,64.656494,17.907 390,248.1575,213.79285,23.438263,37.296753,13.7 390,179.37698,156.83385,19.28743,30.35765,9.628 390,431.39096,190.42604,27.415314,66.090836,9.574 390,413.3969,179.65768,31.28833,72.598816,8.484 390,589.3598,207.3125,28.700317,61.052216,7.551 390,132.64594,152.78331,32.045456,61.5851,7.548 390,622.8989,-33.424076,26.547424,74.86081,7.312 390,420.58258,166.92566,16.183716,29.56514,7.259 390,621.57825,477.48154,29.411438,66.1655,7.159 390,627.39136,-16.748516,17.23938,45.361275,7.074 390,447.8117,167.2764,22.707977,48.692505,6.889 390,600.04083,189.52101,34.077576,77.94301,6.864 390,215.57645,213.2183,26.542465,37.894882,6.843 390,92.200165,157.91086,32.52236,64.60979,6.742 390,414.34558,164.30478,12.973175,22.143997,6.656 390,-8.839886,464.42712,37.734394,92.918945,6.369 390,-4.909998,-17.235373,16.843304,42.201622,6.28 390,75.04755,197.5525,34.824142,63.22911,6.196 390,87.66887,164.0098,24.326668,47.413254,6.134 390,280.85968,118.53804,23.735382,34.985077,6.102 390,479.9842,213.24411,30.053192,63.05362,5.966 390,106.806786,160.3118,29.247963,59.228943,5.906 390,357.62714,160.53317,12.5095825,23.889328,5.854 390,-6.2349358,490.17108,18.582874,40.326782,5.847 390,-17.146698,-63.82012,55.873917,145.00906,5.818 390,-10.302978,-31.261507,28.547508,68.02738,5.798 390,153.89734,156.65529,19.027252,31.301102,5.783 390,364.7727,157.98674,13.366364,25.588928,5.781 390,-5.830705,103.27184,19.249922,42.725624,5.695 390,349.79407,159.03613,13.179291,24.499725,5.663 390,595.7482,230.34985,40.60553,98.452515,5.547 390,496.4749,34.779778,24.066345,51.091515,5.515 390,-11.847851,479.81543,29.987015,60.352234,5.508 390,458.26566,233.60565,20.631592,44.69232,5.501 390,540.73663,70.55727,31.883362,75.7751,5.326 390,120.29494,160.388,22.625336,44.07054,5.298 390,68.52914,153.80423,32.34099,53.216766,5.267 390,602.62274,-54.662407,53.067505,132.81169,5.209 390,-73.34214,265.3433,201.42178,460.35666,5.181 390,604.1277,206.69252,19.975464,45.902847,5.149 390,380.70923,155.1073,27.189697,55.498856,5.145 390,145.75085,148.90579,30.967133,57.01718,5.104 390,-0.89502215,67.332596,25.265219,69.62718,5.092 390,486.07327,-31.541862,28.321198,72.76708,5.085 390,-21.653784,402.85175,78.79241,175.37537,5.072 390,475.21356,224.8323,18.746826,37.613037,5.051 390,536.62775,309.30814,143.07172,342.44577,5.032 390,466.34912,229.20454,18.29425,32.701797,5.028 390,625.40826,208.23236,19.310974,50.003418,5.014 391,449.47455,198.77786,29.393097,64.98337,25.825 391,615.98883,173.93057,23.186707,84.88791,15.689 391,233.97163,216.57092,23.58876,38.341278,14.536 391,429.96506,203.82043,25.389252,53.69629,11.849 391,612.88965,124.292114,27.708984,102.01761,9.496 391,2.6609242,225.95401,20.03935,36.059204,9.163 391,483.4741,225.03308,18.114075,32.6315,8.747 391,458.88736,150.06984,29.593353,66.047714,8.367 391,513.63477,218.45473,20.164429,43.991592,8.266 391,350.72693,155.97713,11.63385,20.559402,7.731 391,622.1952,476.29102,28.32965,67.59277,7.525 391,-10.606996,-31.99659,29.617706,68.20653,7.452 391,204.67223,210.8494,27.23677,44.4299,7.382 391,474.93195,223.8371,19.714813,33.857666,7.223 391,11.333895,139.43932,57.993896,119.70155,7.194 391,623.34546,-33.10914,25.83612,71.29754,7.183 391,98.68123,145.59657,35.141922,62.38066,7.147 391,507.15918,220.40376,18.855957,41.489426,7.145 391,358.35284,156.27892,11.291962,20.74559,7.113 391,160.5371,148.72925,21.297104,30.515594,7.064 391,-5.7923865,-19.587933,19.19409,44.35756,6.953 391,589.0255,168.09946,32.384888,81.25548,6.571 391,395.0554,-14.52514,33.284607,56.67346,6.423 391,380.27478,152.72624,16.547424,28.531174,6.412 391,436.8369,171.70448,39.606537,82.779526,6.363 391,-11.464869,477.53415,29.414906,63.5029,6.263 391,514.9764,165.94724,31.044373,69.649155,6.262 391,-17.482271,-61.773388,57.273804,136.82294,6.199 391,-5.901724,489.62848,18.554241,41.125,6.138 391,51.16228,151.36873,33.7447,64.929,6.035 391,-4.8862762,49.24814,18.99451,53.12668,6.026 391,129.55801,150.54225,19.469467,27.555649,5.891 391,365.69904,155.40259,12.186676,21.295303,5.871 391,618.80774,487.50894,20.143555,44.26425,5.851 391,499.85233,221.84456,18.053009,36.53865,5.837 391,491.2341,224.79956,17.32785,32.895203,5.794 391,342.50485,152.89047,12.367249,23.476166,5.686 391,463.92642,223.29222,20.753754,39.212997,5.652 391,457.58325,183.77545,33.913666,75.049835,5.646 391,445.28394,154.80344,32.10898,62.473633,5.544 391,-5.0553756,282.95242,16.490978,38.519836,5.526 391,28.539127,200.38171,32.843605,63.824432,5.516 391,-21.569801,403.47626,78.30373,175.20587,5.516 391,82.98027,150.83723,32.653625,61.815582,5.512 391,195.52428,150.76486,17.628326,26.563171,5.504 391,1.9272482,-19.636797,20.101297,43.040325,5.485 391,427.93573,158.21248,18.06073,29.601456,5.485 391,-5.252882,141.18561,18.62281,36.539078,5.485 391,0.07542491,41.860786,25.124756,84.42592,5.47 391,563.4607,94.85629,30.435791,79.38388,5.466 391,610.23694,-47.69332,41.970703,97.92441,5.444 391,485.07092,156.21042,29.622192,60.61728,5.376 391,371.0928,-19.509542,32.712128,59.485367,5.375 391,456.38278,221.57523,20.426727,42.050354,5.365 391,-4.6477823,230.69888,17.853462,38.464325,5.329 391,35.328175,142.82428,32.35654,56.388977,5.275 391,66.795784,150.23491,33.8686,65.12366,5.263 391,600.5416,106.64508,37.752808,155.82993,5.222 391,410.84958,-14.326151,34.33307,59.45475,5.203 391,41.35177,144.53076,59.048813,109.24498,5.144 391,116.374054,149.02676,17.617615,27.944077,5.143 392,448.7774,218.82854,23.398468,49.275955,95.31 392,407.92038,211.16727,26.045929,50.379547,42.73 392,474.99722,220.96097,19.870056,42.432343,14.033 392,435.24426,145.72592,30.353302,71.8416,9.883 392,489.04312,226.45235,19.841705,34.63936,9.277 392,419.90057,189.7984,32.41452,65.52629,9.11 392,481.47916,227.30637,19.345673,37.456726,8.864 392,496.67334,228.09651,20.900574,32.087234,8.403 392,626.473,488.4421,20.483704,45.252655,8.028 392,626.6605,-18.068544,17.528625,48.15721,7.827 392,465.69476,220.54417,20.43869,44.215256,7.523 392,623.3071,-33.873405,24.975586,76.54628,7.397 392,-9.68475,-33.05662,28.799765,71.02559,6.835 392,438.58182,199.9631,30.413666,64.46103,6.775 392,308.71075,146.20236,13.785706,22.657288,6.608 392,-11.981002,477.2084,30.259884,63.647797,6.541 392,-5.307379,-21.155071,18.476326,46.697723,6.48 392,614.66187,121.19154,27.315552,90.66208,6.456 392,-4.6639566,35.136456,19.000717,51.65848,6.314 392,317.19,146.40346,13.175537,21.908539,6.28 392,297.43588,164.90674,22.112488,32.946976,6.165 392,-6.2934294,488.9299,19.167065,42.18344,6.093 392,104.50286,140.68877,23.68148,29.975647,6.047 392,188.70638,-34.95569,29.995804,62.71611,5.998 392,-8.415972,37.447105,27.753065,81.30467,5.962 392,192.70522,146.37839,37.342407,76.29962,5.935 392,504.87054,229.5589,20.534668,30.490753,5.929 392,514.229,230.17256,19.58191,28.884995,5.884 392,614.9282,43.601955,25.520447,92.55655,5.882 392,-16.832022,-64.96603,54.715714,143.6986,5.869 392,405.32047,178.18759,31.324738,70.17264,5.86 392,298.5871,-18.572495,18.707886,40.324085,5.779 392,285.8397,-34.36914,28.766327,63.792995,5.736 392,26.32821,134.87753,33.762573,66.86708,5.632 392,301.16214,143.88103,13.979095,24.728027,5.625 392,422.0779,147.64883,32.081696,68.51683,5.617 392,435.8194,220.1196,21.726196,44.41806,5.604 392,530.45764,229.67357,18.08551,26.599869,5.58 392,603.4318,-54.856377,52.37982,131.65161,5.556 392,612.9365,454.64218,39.362,106.895294,5.554 392,-4.109004,107.77882,16.417034,39.71853,5.537 392,451.24414,143.81772,31.500946,65.285065,5.527 392,396.59927,120.79177,15.601807,25.058357,5.52 392,538.614,229.81139,17.113464,25.421585,5.466 392,447.54028,150.30865,22.093384,51.585785,5.39 392,269.5333,-35.726944,29.507568,66.51425,5.387 392,-17.726439,439.2787,55.5047,137.07178,5.363 392,290.51923,-18.804348,18.979431,40.93111,5.313 392,618.8868,489.80594,19.847168,42.712982,5.302 392,217.58437,144.93054,35.056137,64.06326,5.301 392,-1.3919783,23.52121,25.544563,76.91763,5.245 392,475.45474,151.56992,33.17517,60.218628,5.214 392,5.1495004,133.45406,31.028357,59.654694,5.169 392,333.5176,-34.143074,29.789764,59.68115,5.154 392,522.9465,230.6712,18.93103,27.416962,5.151 392,361.54752,-8.348914,21.723999,36.241882,5.127 392,395.39352,150.01086,20.36258,28.869293,5.122 392,201.2104,134.08336,37.715393,65.61113,5.108 392,2.4440045,-21.319662,18.61531,45.45565,5.035 392,314.08566,-9.183726,20.87149,36.118923,5.031 392,-6.863514,248.40773,19.939312,35.701797,4.991 392,317.13885,-33.657883,29.43689,60.007713,4.991 392,282.97296,-19.752443,19.01532,42.400257,4.99 392,-38.981743,370.55917,108.6147,272.07083,4.983 393,434.1594,213.59013,25.144196,60.607956,92.844 393,371.84473,205.92908,30.930817,59.068604,32.186 393,416.82043,220.3411,20.677368,54.135742,31.021 393,427.47952,223.71208,20.646423,51.68495,24.052 393,122.72149,221.51593,24.28933,45.464478,21.582 393,615.2941,129.04613,24.898254,101.73833,9.088 393,626.7534,485.6441,20.117676,46.263123,8.371 393,380.75806,225.04607,25.386688,45.23204,8.23 393,-5.254592,-19.852825,18.32005,46.620403,7.825 393,-5.7325277,488.06512,18.496834,42.36261,7.79 393,-10.805788,479.2629,28.229033,62.310455,7.544 393,-8.926351,-32.797028,27.555119,73.11927,7.495 393,396.82776,141.0859,31.051544,70.83827,7.23 393,556.3953,228.95946,17.102722,25.316544,6.727 393,411.64984,234.37376,19.415161,40.862625,6.652 393,259.75085,143.67949,16.31073,25.598679,6.536 393,249.33917,161.4054,22.946777,35.37271,6.46 393,268.66388,144.83151,14.397461,23.470413,6.421 393,617.1355,182.17676,22.73944,69.48773,6.371 393,474.5262,234.71323,19.947357,30.04123,6.351 393,388.22696,198.85625,30.24588,64.269485,6.233 393,618.6907,487.18106,20.50415,44.114838,6.198 393,619.46124,212.63824,18.132996,42.319168,6.174 393,451.45648,154.6259,31.661621,54.788956,6.143 393,603.8274,-55.308125,53.155945,130.76778,6.044 393,-21.27595,405.21384,77.93738,174.26828,5.991 393,393.81366,-19.499529,19.960632,41.32305,5.969 393,299.25272,118.55482,18.146454,29.862267,5.929 393,220.33731,286.58942,15.9049835,26.22171,5.879 393,41.452347,135.92836,23.219551,33.010696,5.859 393,-18.977596,-63.117634,57.503994,144.61986,5.858 393,315.7305,292.26184,16.636261,21.990845,5.841 393,401.91696,-17.25242,18.977844,39.33836,5.837 393,445.47662,224.96758,21.013672,43.078293,5.79 393,563.3165,229.20903,16.147522,25.26503,5.763 393,613.0597,452.19855,39.122803,108.61963,5.684 393,467.56433,234.08058,19.019073,30.517044,5.683 393,627.18866,-17.330742,17.146301,46.423153,5.68 393,1.1847985,35.195892,21.420395,52.290283,5.671 393,365.7085,-33.68437,29.687866,58.469715,5.629 393,538.77856,228.36224,18.684326,27.606903,5.609 393,307.578,291.69965,17.002838,22.84665,5.563 393,323.1412,290.43277,16.883545,23.524597,5.538 393,211.76755,286.36124,16.671692,27.220154,5.53 393,348.73782,-33.99851,29.977112,58.26059,5.515 393,76.17885,122.35712,76.79219,148.28394,5.509 393,129.4354,144.92194,36.82115,79.311035,5.489 393,2.2678912,-20.609648,19.095167,47.782257,5.363 393,407.9228,161.7046,21.742493,51.690277,5.351 393,362.59686,146.66441,32.108704,52.77925,5.323 393,40.892834,291.9932,21.528587,32.738434,5.307 393,2.5234203,131.18472,18.647465,29.572495,5.26 393,382.31555,-32.459965,28.912537,58.917603,5.202 394,398.6633,219.32173,30.031586,68.77464,98.209 394,325.621,210.7317,30.57434,60.89531,25.113 394,190.39108,153.39473,25.03569,39.496597,11.725 394,357.1594,148.13817,29.38858,72.0685,11.061 394,343.53055,231.93355,23.938446,46.5858,10.513 394,370.65125,239.31642,21.294067,35.21971,10.304 394,283.71915,303.1295,16.556305,25.032959,9.034 394,588.7545,284.46262,33.576477,68.67917,9.024 394,291.76306,303.0697,17.309326,25.756989,8.206 394,380.19528,221.96391,32.38452,56.97499,8.152 394,-1.1188245,220.57947,36.71494,66.921326,8.137 394,276.15924,302.48782,16.367035,26.563019,7.842 394,-9.358222,-32.92816,28.135937,73.77501,7.825 394,-2.8644977,93.674934,15.379232,38.255302,7.772 394,-5.522886,-19.91149,18.61468,47.041344,7.478 394,-2.8078628,156.6036,61.36107,129.42819,7.431 394,584.0114,283.706,24.687988,45.484375,7.276 394,268.39038,303.67694,16.262451,26.323334,6.989 394,412.76398,228.27328,22.290955,46.31839,6.987 394,299.44272,303.51074,17.614105,25.817017,6.93 394,571.0891,283.26077,35.77722,62.662415,6.911 394,443.07617,236.26794,19.912384,31.901337,6.871 394,65.28283,146.56776,36.329834,81.1001,6.861 394,612.2338,-48.384354,40.432556,104.517166,6.855 394,0.4401946,20.284817,26.291788,82.11273,6.8 394,-11.622145,477.06155,29.284023,63.95584,6.511 394,362.8604,238.76135,21.086243,36.447693,6.443 394,434.82532,234.1591,19.787445,33.88423,6.356 394,424.462,233.16174,20.60608,37.769684,6.276 394,627.5306,-17.174236,16.955444,45.76996,6.269 394,54.780216,128.72401,64.349045,103.95747,6.151 394,155.65605,302.61362,18.059082,30.585938,6.144 394,626.51434,486.86243,20.65802,46.76239,6.121 394,350.17673,133.71371,30.62674,70.27051,6.103 394,568.96985,283.8475,24.69403,42.491486,6.09 394,539.29395,230.31871,15.468201,25.429657,6.068 394,-4.8217864,33.33869,19.336796,54.24366,5.927 394,531.7898,229.94836,17.100647,26.633575,5.916 394,-21.204811,405.52414,77.85588,173.72,5.877 394,349.63037,-32.89779,28.901459,59.74605,5.856 394,-6.1122093,488.29407,19.07132,43.664124,5.823 394,457.4008,233.703,21.472961,34.321686,5.808 394,554.03577,276.57697,36.368042,56.386414,5.75 394,386.6927,197.602,44.889496,79.919205,5.728 394,-3.5910585,109.16085,15.583074,37.190956,5.722 394,346.62784,-8.987344,20.143707,35.20345,5.687 394,612.8411,456.17038,39.4256,105.48288,5.672 394,373.13766,-32.462025,29.327545,58.38251,5.66 394,162.94771,303.65018,18.206985,29.957672,5.639 395,336.82132,217.21542,36.20923,75.42178,95.016 395,253.64128,210.54276,32.291153,65.34183,47.482 395,225.87904,215.08594,35.379593,70.489655,27.214 395,263.1801,220.25183,31.860962,64.32324,13.53 395,416.06967,236.38454,21.613403,31.35353,9.599 395,506.56876,286.57416,36.047333,62.066925,8.689 395,304.9578,241.4057,22.865997,42.439453,8.639 395,290.61862,141.03287,32.762115,68.82721,8.569 395,386.58078,240.33025,20.711273,32.09984,7.837 395,581.20526,298.03543,30.39038,60.98465,7.715 395,-10.689299,-31.979977,28.993525,70.88181,7.456 395,521.54706,288.63544,36.193542,60.838837,7.414 395,248.73795,225.20312,23.876434,55.246643,7.391 395,99.900475,140.91678,27.21502,42.59372,7.271 395,-5.807029,-19.645624,19.0271,46.133644,7.238 395,-11.042085,478.26746,28.752735,63.51892,7.168 395,603.43744,-54.771072,52.80658,136.27086,7.122 395,-5.8126235,488.6057,18.694328,41.995483,7.071 395,401.8207,233.73561,21.34851,33.744003,7.028 395,378.95178,234.40674,21.601074,34.727448,6.924 395,457.75085,282.50348,38.077576,65.36331,6.883 395,473.5409,284.02493,36.910614,62.897675,6.81 395,276.7542,140.25372,34.30066,65.58481,6.74 395,596.76306,295.25403,31.043701,74.36502,6.735 395,490.53378,286.6457,36.195587,59.87265,6.52 395,562.22473,295.05347,34.854614,60.97,6.51 395,392.62543,234.10275,21.880127,33.609283,6.393 395,441.4026,283.83972,37.81369,64.05658,6.292 395,538.1202,293.33347,36.32373,63.048187,6.185 395,369.28003,231.11433,21.748749,38.705673,6.111 395,627.30176,-17.034336,17.245972,45.42075,6.108 395,-18.313637,-62.080727,57.465523,139.04446,6.045 395,613.27905,291.47998,27.108765,79.25726,5.796 396,265.0119,216.50478,42.774048,91.57579,93.503 396,50.656418,218.31848,52.461548,73.1904,40.385 396,153.44484,211.19603,37.679276,72.52467,37.147 396,269.78775,253.3037,32.276306,62.46541,11.561 396,627.37445,489.9071,19.62799,42.265747,10.517 396,-4.610827,-17.07671,16.657278,44.272274,9.552 396,143.05643,202.1809,34.73111,63.706406,8.919 396,305.4096,231.8909,23.088745,46.42679,7.66 396,-10.115654,-32.03813,29.473505,72.63253,7.587 396,197.38687,138.93726,29.12558,72.42427,7.517 396,603.23303,-55.38797,53.220764,135.2871,7.484 396,619.9848,492.3179,18.40802,38.94162,7.42 396,207.0178,242.3259,23.849182,41.774475,6.96 396,45.941433,-33.815243,28.58994,68.331795,6.924 396,261.5679,148.36403,27.81778,49.342438,6.901 396,408.2102,325.0681,37.97467,76.333984,6.838 396,168.34235,228.21053,32.73282,58.129868,6.693 396,-9.052955,466.0381,37.69475,89.84009,6.631 396,530.6751,302.77002,34.809143,78.57861,6.62 396,4.792855,100.35884,15.047079,31.884628,6.525 396,-18.451612,-62.092545,56.950684,143.91467,6.489 396,57.807995,-20.135538,19.556095,42.930614,6.484 396,-5.8537903,489.1937,18.785957,42.112457,6.442 396,3.563027,-15.183875,16.233921,41.356133,6.426 396,41.768223,-20.270119,19.511703,44.277405,6.396 396,393.4422,323.2222,38.24881,75.97443,6.282 396,359.6023,314.3694,37.997925,71.47107,6.241 396,11.924352,104.03992,15.149566,27.528503,6.173 396,424.23737,326.60745,36.66104,77.49942,6.165 396,160.58276,198.126,35.7995,62.535492,6.155 396,49.944374,-19.310322,19.683907,43.275936,6.076 396,281.62744,282.94147,34.319244,68.636444,6.044 396,284.73907,227.74649,24.337006,56.84616,6.042 396,-21.183392,405.52948,77.48088,173.88434,5.96 396,502.66064,287.52008,40.17859,80.67389,5.926 396,4.780452,117.048,13.09216,26.934807,5.914 396,555.6973,314.7644,32.24591,66.864685,5.907 396,-2.562963,94.24879,14.939926,37.578453,5.846 396,627.39246,-17.072227,17.04718,46.07535,5.781 396,-4.8002434,18.829887,18.520058,51.3517,5.779 396,-2.9118032,78.88942,14.974231,38.416855,5.641 396,3.131278,352.0863,17.100925,34.122955,5.629 396,29.688171,-34.577457,29.060154,67.27313,5.628 396,-4.2611675,3.5714207,16.86279,43.27044,5.595 396,61.93626,-33.04067,28.855534,65.146576,5.588 396,-4.0763,349.1675,16.086672,37.08966,5.582 396,613.6488,454.7492,38.815308,106.432434,5.558 397,149.00977,219.1734,57.995605,108.01245,84.582 397,19.447706,205.09999,38.91703,72.581894,13.536 397,627.3504,489.30728,18.937073,42.599457,12.47 397,-5.0052547,-18.470966,17.47519,45.51135,11.003 397,74.04162,114.78994,35.059677,79.87171,9.358 397,-10.455165,-32.063892,28.987167,73.078285,8.94 397,570.7284,190.70673,30.033813,63.382538,8.885 397,620.2032,490.5773,17.614746,39.26938,7.644 397,166.52432,225.48914,35.925323,74.52637,7.488 397,404.04755,320.02866,33.61081,61.716522,7.321 397,2.9886322,-16.955814,17.613174,42.786522,7.132 397,267.77637,296.1464,33.24182,64.43436,7.105 397,43.26929,235.1363,34.136417,60.74449,6.964 397,10.386765,-19.50011,18.700903,43.70006,6.941 397,-4.355812,18.856998,18.324993,52.502056,6.845 397,-11.736248,477.9095,29.486916,63.477722,6.67 397,-1.1114252,12.061581,24.209522,69.92934,6.622 397,543.1931,203.49352,27.402344,62.908646,6.516 397,603.0122,192.75835,17.55249,32.640213,6.49 397,557.8352,201.55843,29.252014,66.32875,6.471 397,339.57822,307.361,33.92932,60.13971,6.422 397,29.752213,-34.56223,29.079575,72.265785,6.134 397,-6.16219,488.74896,18.814243,42.938965,6.084 397,5.776806,206.17549,41.945164,91.942795,6.046 397,306.49597,303.08328,36.009583,63.6037,6.008 397,156.88036,214.47713,36.354523,64.5316,5.969 397,216.13898,252.34016,38.61566,65.62785,5.966 397,627.4715,-17.327707,16.930908,45.58159,5.951 397,562.19916,191.74048,21.246826,48.67401,5.897 397,88.11,242.65895,23.833115,51.186905,5.893 397,546.8279,196.8183,18.754883,40.653046,5.846 397,157.39641,251.17807,36.349457,81.33942,5.773 397,283.48004,299.0835,34.436676,62.296722,5.766 397,-18.57454,-63.060547,56.7329,145.65894,5.761 397,450.2303,326.50275,32.987915,68.48764,5.757 397,618.1509,191.96666,19.035522,40.633774,5.714 397,-17.125198,441.12155,54.69001,135.2034,5.707 397,201.59462,235.95197,23.46733,41.873596,5.695 397,182.27477,239.55247,25.198456,49.206284,5.684 397,41.574345,-22.091906,20.104763,46.94331,5.678 397,168.08215,298.1605,36.499893,67.5889,5.661 397,45.511547,-34.533943,28.904125,72.61844,5.649 397,621.0084,483.62964,14.0224,30.393982,5.618 397,14.041753,-35.05164,28.876743,70.90026,5.613 397,417.93384,324.08572,33.8757,59.993134,5.613 397,25.611835,-21.372364,19.852375,46.015903,5.572 397,491.50275,336.29843,33.483704,66.96881,5.569 397,553.50885,194.26662,19.959106,44.006454,5.524 397,51.514244,128.80637,33.815712,67.26674,5.467 397,33.74543,-21.26418,19.816284,46.123585,5.394 397,612.6305,492.20657,17.160889,37.124054,5.393 397,251.71948,294.72867,33.40039,64.3725,5.336 397,61.295815,116.1275,34.82241,72.203735,5.327 397,217.6665,240.86177,22.251465,36.86046,5.32 397,-2.3950024,97.24517,14.60585,34.704796,5.312 397,-4.2788568,4.1651554,17.072735,44.63395,5.272 398,1.1538005,219.4271,50.635483,134.52966,26.918 398,203.37195,322.80142,34.74643,64.463776,9.879 398,617.0084,161.69086,21.060059,71.40747,9.441 398,-9.897919,-35.074047,28.740862,77.36313,9.374 398,-5.85452,-20.425224,18.902424,49.270687,8.811 398,15.399817,226.91382,38.522152,66.5542,8.582 398,299.23346,344.67447,33.641846,63.343384,7.754 398,-0.2280426,243.38971,29.229841,95.56134,7.102 398,122.36932,306.6567,35.177795,63.987305,6.95 398,79.61417,243.19914,23.862892,40.91127,6.946 398,-6.387694,488.48773,19.536955,44.39673,6.862 398,315.19836,348.7956,32.495056,62.99817,6.798 398,219.31079,324.57285,33.409973,64.63269,6.778 398,-12.100005,477.8192,30.773876,64.086,6.773 398,29.607891,233.49017,35.9527,62.824524,6.444 398,627.5209,489.76346,20.008728,42.93051,6.438 398,283.41,338.398,34.40799,73.923004,6.436 398,6.976583,232.86296,72.52656,191.24,6.393 398,170.11197,317.72958,35.44867,60.50354,6.392 398,138.12857,312.1826,35.91484,58.100616,6.33 398,0.55705786,130.11815,36.192463,64.34924,6.278 398,-1.2887299,209.6737,32.199265,67.646484,6.108 398,613.45184,453.30493,39.17511,109.12317,6.053 398,442.93015,197.92682,17.158325,36.70366,6.034 398,107.41815,305.21667,34.51776,63.352417,5.997 398,627.46136,-17.307917,16.936707,45.5886,5.938 398,28.255262,214.9399,27.648485,36.50293,5.924 398,-9.462722,272.95078,29.005577,80.178955,5.685 398,236.08481,328.85468,32.202423,62.760345,5.681 398,186.32886,323.8898,35.98369,72.884125,5.597 398,330.9694,352.08496,34.574707,65.36557,5.567 398,153.40944,315.33597,35.69159,56.171143,5.526 398,-11.439601,124.57848,31.371552,67.56379,5.422 398,63.60332,272.04092,40.117855,67.873566,5.409 398,-74.08757,264.0701,201.91669,464.32187,5.369 398,345.1952,169.54031,20.776825,51.908844,5.316 398,614.98517,192.48459,23.291565,71.38785,5.312 398,4.1256056,279.05197,30.82204,79.62088,5.297 398,232.26326,337.12573,62.80107,145.78992,5.291 398,19.897577,215.78052,61.16607,116.75891,5.278 398,623.4586,-34.76678,25.954895,74.84666,5.196 398,4.221182,-35.964752,28.999685,75.48392,5.183 398,136.67546,241.88945,22.267273,31.246048,5.179 398,264.4054,214.43318,21.785278,48.253952,5.177 398,90.33894,306.9962,35.197624,60.761536,5.123 398,625.6426,167.34866,18.90387,53.155334,5.081 398,51.490597,295.02844,36.310757,67.25601,5.078 398,619.9854,492.86078,18.969604,39.06311,5.04 398,3.5087097,328.46936,30.997692,92.491,5.039 398,-18.693014,-61.610085,57.43199,144.21976,5.037 398,584.66064,409.45084,70.480225,177.87546,5.023 398,146.1894,234.7247,20.906311,30.13266,4.934 398,-8.805173,59.46116,28.92593,82.20837,4.922 399,605.47144,158.85547,32.827637,88.15367,11.137 399,466.58478,175.18848,31.119568,59.534225,8.141 399,603.71405,-55.91598,52.745667,136.24629,7.945 399,-6.512165,489.09406,18.531086,43.107605,6.78 399,545.2296,149.52026,36.631775,69.722015,6.263 399,626.65216,487.75888,20.483398,46.556305,6.232 399,297.57138,201.15642,20.585754,36.15831,6.131 399,-11.233789,-33.13347,30.144627,75.81329,6.039 399,627.3312,-17.01293,17.161255,45.986088,5.993 399,155.24779,159.2709,30.283554,64.62787,5.953 399,612.68225,457.70694,39.26184,103.69833,5.664 399,-17.247189,-61.814068,56.39076,139.20016,5.652 399,-6.5737534,-19.062305,19.52232,46.17767,5.639 399,236.97365,197.62216,13.288467,25.744736,5.488 399,321.78296,199.29645,21.704773,33.942734,5.439 399,-23.039618,399.15167,79.287766,177.78229,5.417 399,583.3851,413.61377,71.338806,175.61371,5.247 399,304.24445,198.40544,21.359741,36.272552,5.243 399,595.74146,-47.29867,42.57776,102.67042,5.14 399,-11.409353,478.32773,28.463531,63.665558,5.105 399,244.64354,194.80551,14.440018,26.185028,4.968 399,623.3402,-34.10991,25.945923,75.53948,4.815 399,461.55795,192.04922,32.157806,66.91266,4.803 399,252.98828,196.22826,15.285767,32.414856,4.76 399,228.04176,195.82419,14.614212,28.66774,4.751 399,205.72157,190.26901,28.069702,62.578842,4.75 399,-73.57801,266.71045,200.84427,459.9402,4.704 399,338.7574,202.02016,22.23285,36.57808,4.699 399,616.8453,192.54785,23.249817,78.388245,4.693 399,71.39915,119.49043,28.11966,80.184616,4.688 399,124.03698,147.50087,30.087318,80.926834,4.67 399,329.60834,201.41156,21.828094,35.138687,4.656 399,142.13304,151.86165,30.13832,75.81621,4.636 399,-4.9653025,219.49823,17.127941,38.998383,4.58 399,34.154285,139.5548,23.593246,49.954117,4.569 399,533.09216,161.20874,33.54065,63.76216,4.535 399,116.17917,209.31886,18.271515,33.21878,4.513 399,536.501,312.1855,142.35675,340.16327,4.475 399,-36.250484,-122.226036,115.94943,270.4568,4.454 399,77.335526,384.2498,29.89943,64.36978,4.449 399,2.4779801,228.65622,18.446012,38.107025,4.445 399,211.10553,193.98462,20.123856,38.365433,4.443 399,289.96503,195.36295,19.753296,42.330627,4.354 399,614.37067,480.49786,27.29895,61.531555,4.304 399,219.81381,193.02727,16.930634,32.731125,4.286 399,267.69315,193.0712,15.0980835,32.635696,4.284 399,603.0289,76.081314,32.79657,76.786575,4.258 399,345.58536,196.26736,22.389069,38.64836,4.243 399,493.13116,228.28198,238.41656,515.043,4.222 399,377.76303,490.4016,21.628021,41.553345,4.158 399,363.25778,482.74426,33.238342,57.34784,4.151 399,2.1990597,489.68573,18.741138,41.25824,4.146 399,-8.602296,-6.854309,39.555847,98.95644,4.128 399,-5.5201054,360.58603,34.975853,104.046844,4.119 399,51.836884,378.99622,40.07521,101.23157,4.099 399,620.75085,152.84898,29.203003,81.4973,4.09 399,36.31842,186.16348,33.50663,68.36742,4.029 399,557.08514,128.26157,30.582886,66.54013,4.028 399,323.24432,210.48499,18.349579,34.596848,4.027 399,627.6548,45.702473,16.7854,41.68147,4.023 399,313.78574,204.06615,20.114838,34.143066,4.021 399,184.26736,174.56876,21.056366,39.408264,4.011 399,601.94635,158.83649,24.223938,59.40338,3.982 399,507.26596,178.3781,19.949738,40.294266,3.948 399,83.84716,384.3707,39.78328,95.49594,3.931 399,114.90842,334.60147,17.841415,31.558044,3.92 399,107.198,334.17648,17.727127,31.72049,3.9 399,1.6585922,-40.240936,42.740437,98.38143,3.875 399,585.9188,164.3274,37.523438,94.05884,3.871 399,37.227005,370.3349,37.27384,101.288025,3.829 399,592.43097,79.717224,48.74646,179.449,3.801 399,361.25595,196.26387,21.334839,38.21837,3.796 399,447.18726,173.95955,27.84964,63.691574,3.796 399,478.2724,173.93114,22.951324,45.42784,3.794 399,615.7286,149.81735,23.42981,63.59149,3.79 399,562.9711,167.93538,41.413635,84.61195,3.79 399,151.80518,157.81444,23.241058,46.92044,3.776 400,2.8994656,178.52954,28.499079,72.00656,8.05 400,-5.5100975,-16.898773,17.6902,42.7525,7.863 400,111.313995,186.75089,28.695847,67.94559,7.861 400,489.4232,164.38005,33.17154,78.401596,7.435 400,491.28738,228.77872,32.718964,69.54053,7.32 400,603.29254,-54.98654,53.374695,136.31487,7.03 400,-10.799022,-32.647957,29.517086,73.11067,6.906 400,-11.677486,477.37494,29.487423,64.48407,6.604 400,32.411415,201.95868,18.953209,39.33484,6.533 400,613.5752,453.06888,38.85669,108.562164,6.45 400,322.97726,205.97614,31.029724,64.95532,6.345 400,-6.013569,488.69043,18.815166,43.358948,5.803 400,67.19924,205.0986,16.538895,35.476715,5.733 400,-20.992907,405.45663,77.89461,174.16995,5.696 400,371.56946,391.99548,34.285767,61.91333,5.576 400,-17.60986,-60.960068,56.764065,140.5372,5.523 400,627.29175,-17.869421,17.380249,46.263042,5.407 400,84.699615,201.40593,19.327454,42.345337,5.335 400,626.5536,487.69614,21.11554,46.267914,5.333 400,61.15673,205.64612,16.05806,35.822235,5.248 400,583.4234,411.4213,71.35254,176.32199,5.046 400,-72.69232,266.2727,200.22922,460.61646,4.949 400,2.4875784,137.1064,31.202358,79.97014,4.939 400,122.644844,186.71349,29.315117,56.61583,4.916 400,409.22253,157.72237,36.264374,73.54277,4.79 400,615.16156,194.88141,25.334595,79.89288,4.705 400,623.1289,-34.564842,26.308228,74.91672,4.59 400,536.08856,312.39368,143.48969,340.22363,4.566 400,-10.509362,10.940044,30.991436,73.29457,4.558 400,595.21185,-45.398796,43.1615,100.94718,4.545 400,394.71008,164.15845,36.316254,68.519775,4.532 400,387.34894,387.9293,31.968994,59.12497,4.483 400,-13.395393,156.26004,48.182808,141.53217,4.479 400,3.139761,-14.521999,16.578274,39.78251,4.321 400,94.88084,183.03728,27.044205,60.20761,4.266 400,5.1028547,470.1883,38.100872,91.79309,4.263 400,493.09058,226.88364,238.85596,515.62244,4.241 400,-37.326553,-122.14752,117.724106,274.2117,4.238 400,-5.493759,1.0153008,18.500578,43.978924,4.178 400,421.01733,131.92917,30.396423,71.123535,4.163 400,427.5202,146.91821,32.20288,72.8405,4.154 400,417.60822,130.964,22.943237,52.726868,4.137 400,393.1084,337.66354,22.1904,36.200897,4.125 400,1.9465888,12.826584,27.826384,79.55302,4.108 400,495.3171,159.2988,23.320343,50.242584,4.088 400,-3.512921,425.19144,15.410957,46.311462,4.086 400,496.623,194.967,34.378296,72.14943,4.034 400,556.507,176.04572,59.570007,118.23718,3.998 400,475.21594,78.38182,33.671722,97.50459,3.951 400,617.9561,488.79202,21.236633,44.00467,3.946 400,52.81533,204.52979,16.669258,36.18985,3.912 400,597.63934,459.05118,38.737732,101.43576,3.88 400,593.97705,491.71045,20.467468,39.666992,3.873 400,282.92346,228.49518,30.913605,62.51355,3.866 400,2.2943301,490.06808,19.27224,41.35373,3.866 400,310.90536,152.00061,29.821503,76.12764,3.848 400,368.09116,390.93353,25.186707,47.558533,3.844 400,-3.9561124,402.33594,15.231981,41.959137,3.841 400,586.3081,491.34592,20.417603,41.252655,3.84 400,21.240765,118.51875,31.868984,80.489395,3.823 400,514.27905,205.3585,43.3974,80.6689,3.803 400,3.8322873,435.58237,16.561962,45.61154,3.776 400,115.413376,162.155,31.400192,66.42497,3.775 400,505.93604,236.0844,35.223083,70.702286,3.765 400,275.71234,379.3775,17.49936,28.537506,3.764 400,310.64764,209.58534,31.123016,65.328995,3.751 401,617.1769,207.72633,18.76477,50.853897,12.052 401,356.63306,150.27066,32.8031,84.72232,11.336 401,0.6440103,185.26907,21.94855,48.43109,10.579 401,-11.269819,479.8566,28.866886,62.243256,7.433 401,152.26715,200.8877,35.944794,67.73218,6.994 401,-3.3003745,378.5392,15.440729,39.33307,6.808 401,147.2424,143.76585,32.38983,78.07094,6.8 401,273.48126,148.91599,35.19272,73.41049,6.666 401,-5.824449,488.972,18.538532,42.572754,6.435 401,360.70868,180.5425,32.71707,85.20763,6.396 401,3.6175518,383.3594,16.147478,34.244843,6.267 401,603.5248,-54.67852,53.11194,137.80261,6.226 401,163.88031,153.83456,30.63562,70.04068,6.083 401,-20.930466,406.35135,77.53584,173.11813,5.993 401,627.4784,-17.569199,17.057007,45.7773,5.957 401,626.844,487.51147,20.570679,46.435547,5.692 401,-17.726158,-65.31092,56.154713,149.46921,5.593 401,507.5935,206.61118,33.338318,75.1293,5.58 401,612.51215,249.18292,23.730103,69.18341,5.516 401,612.8987,457.4983,38.914673,103.5307,5.506 401,3.832509,360.10544,15.571681,34.181152,5.38 401,583.7268,413.06555,70.9126,175.47852,5.371 401,-4.0802245,419.03122,16.66885,42.92627,5.351 401,188.0075,183.12933,18.453094,33.56317,5.238 401,-11.3550625,-32.546127,29.734194,72.967476,5.23 401,-3.0561738,443.56094,14.786261,39.56543,5.2 401,-5.767138,-17.904226,17.418789,42.530228,5.195 401,144.9733,420.24667,22.794067,37.94632,5.163 401,362.81763,218.12979,32.44702,65.88101,5.144 401,2.8704686,177.95857,19.982452,34.958405,5.039 401,148.99823,413.23215,29.129333,53.805206,5.006 401,236.41646,155.36221,33.904312,70.14082,4.945 401,-72.504234,267.7299,199.68213,458.87167,4.945 401,5.0540066,471.18237,37.929398,90.84338,4.926 401,623.34973,-34.69422,26.019226,74.7814,4.875 401,626.2333,214.11926,18.042847,49.589783,4.862 401,-4.0330772,179.6298,18.384102,40.252243,4.851 401,-3.3976862,348.21,14.331132,38.57263,4.729 401,2.6724463,490.44583,18.727951,40.381866,4.7 401,-4.029438,393.9361,15.777804,39.4657,4.671 401,153.57439,167.4101,32.932083,64.00903,4.617 401,536.0946,311.47162,143.24146,340.9897,4.56 401,120.90066,400.8365,22.766777,35.411377,4.541 401,190.13617,388.81116,29.827393,59.79666,4.513 401,10.851716,384.76917,18.29253,34.34677,4.509 401,97.995285,406.65555,19.908585,33.87213,4.505 401,366.0099,153.55771,24.058197,50.075714,4.5 401,34.474083,393.70758,34.20948,59.25482,4.499 401,105.544525,406.41437,20.056221,33.57303,4.498 401,33.241806,197.11232,24.265396,37.383377,4.477 401,99.48854,217.29388,33.40776,61.61325,4.469 401,393.33084,212.2201,36.14975,63.953796,4.452 401,277.70737,112.13994,28.649048,66.132416,4.371 401,4.2300057,187.84616,38.296497,100.175995,4.353 401,134.86743,173.9574,39.2381,85.86969,4.34 401,11.756287,353.2751,15.03677,29.953522,4.332 401,493.3871,228.46194,238.22192,515.98596,4.331 401,4.845598,344.2257,13.996031,33.03546,4.331 401,-3.3040051,316.58817,14.579306,38.454346,4.316 401,621.631,245.71434,26.881958,70.679886,4.301 401,273.06915,110.760826,22.423004,52.497505,4.28 401,378.45325,234.73581,34.400146,69.54129,4.262 401,340.87653,143.62161,34.338165,82.69444,4.243 401,359.3007,175.90875,60.398407,106.86929,4.206 401,113.33266,398.75717,21.793655,36.6593,4.152 401,194.09482,178.93985,18.105286,35.88774,4.151 402,606.0877,232.03629,27.926636,69.21954,8.5 402,-11.962809,479.1943,30.209503,61.667267,8.353 402,627.029,-17.637327,17.376282,47.388046,8.133 402,104.58528,135.63295,38.26819,75.463394,7.643 402,623.26953,-33.65737,26.115967,78.8268,7.23 402,597.86444,220.61368,30.156311,62.894775,6.763 402,-17.054586,-63.8457,56.0811,147.07005,6.69 402,434.0844,257.414,31.628113,72.87125,6.25 402,626.71387,487.80157,20.33014,46.25476,6.24 402,-17.4858,442.17044,55.158516,132.55417,6.005 402,603.5856,-55.278736,52.54016,135.18257,5.99 402,616.32806,227.76517,21.371521,53.51651,5.636 402,-5.4728727,104.09806,17.952148,42.96035,5.386 402,612.8658,457.07156,39.06549,104.286285,5.354 402,-5.43408,-17.233965,16.93089,43.342155,5.318 402,5.0634813,470.335,38.706554,91.38156,5.309 402,-5.094969,394.07336,17.99489,41.260925,5.287 402,584.3029,413.09003,70.5213,175.51788,5.121 402,120.686935,212.57465,33.980133,56.01526,5.082 402,15.461813,131.18053,38.53,78.0334,5.057 402,-11.321379,-32.881927,29.512308,74.70735,5.038 402,-39.37117,370.64603,108.79978,275.10812,4.997 402,2.086801,397.29855,19.850533,38.481262,4.877 402,614.41125,168.57748,25.741333,81.662125,4.831 402,618.0271,488.99005,20.67627,43.91736,4.81 402,118.199585,128.33098,25.61174,46.41887,4.726 402,-10.970203,396.94135,29.698807,68.54755,4.699 402,9.269086,396.85413,21.62011,36.347443,4.699 402,620.43085,-16.779404,16.334045,43.56552,4.681 402,3.0549586,408.4499,32.968456,63.063385,4.647 402,-72.42593,267.91653,199.45682,459.42184,4.621 402,17.157423,94.31543,31.838411,68.49637,4.609 402,355.49414,487.01654,33.04834,55.73047,4.574 402,314.82004,485.10794,34.257782,56.867462,4.566 402,1.334058,489.86148,20.885183,41.274628,4.565 402,-8.735887,170.37662,38.650513,94.02469,4.479 402,-0.8805716,392.17365,27.629595,65.06198,4.459 402,152.8306,230.92714,33.85315,59.497025,4.455 402,8.596062,83.35811,29.684235,72.79964,4.365 402,-8.369888,7.763214,37.840103,102.50735,4.349 402,141.6121,228.01039,32.50038,63.706314,4.322 402,331.0289,485.59232,33.617126,56.02133,4.314 402,592.16724,235.0238,28.369019,61.76056,4.291 402,133.06311,224.98708,28.729187,49.8665,4.288 402,-4.545352,451.73627,17.472809,39.549164,4.279 402,7.526386,136.04053,60.60419,117.43947,4.265 402,17.026834,396.047,22.020983,34.974304,4.255 402,618.5916,251.93112,18.847229,55.548462,4.208 402,109.43432,217.04166,30.524925,66.58951,4.204 402,127.339485,168.43304,23.784782,46.076447,4.203 402,50.866783,388.31766,33.495186,54.450256,4.178 402,3.2478762,435.02115,33.16724,60.16986,4.146 402,-5.231667,417.3795,18.346968,42.584778,4.136 402,621.93555,236.62506,25.504395,77.9469,4.13 402,8.550592,409.50757,22.63809,39.953613,4.123 402,489.2179,218.70747,23.193604,37.21228,4.119 402,575.24506,211.95337,50.002075,140.11792,4.096 402,113.30494,189.39044,35.797935,70.09326,4.093 402,595.731,-45.69868,42.928284,99.36647,4.092 402,99.48429,116.97789,33.961662,72.034424,4.071 402,2.3458028,463.85803,19.788876,34.972504,4.066 402,-5.3472366,121.238846,17.864796,40.85019,4.039 402,-38.25933,-125.45019,118.86852,276.3509,4.028 402,-5.311351,80.19342,18.335148,45.239983,4.025 402,618.02783,155.85352,20.420776,51.611282,4.016 402,4.4497514,141.22443,36.743427,79.02164,4.015 402,203.2647,85.50261,33.698975,63.928146,3.989 402,8.028015,456.5088,22.336412,33.931488,3.981 402,-5.530285,475.769,16.722141,35.884796,3.953 402,298.83426,485.57776,34.209717,56.813477,3.945 403,404.6489,232.03534,29.83197,63.5838,9.872 403,621.0699,351.83774,13.288269,34.6875,8.031 403,-12.047634,478.54767,30.438744,62.784668,7.145 403,-6.3183117,488.6394,19.180792,42.985596,6.873 403,-5.3190374,-16.924637,17.434698,41.184013,6.603 403,601.87067,-56.10879,54.048767,133.54865,6.562 403,622.5078,-34.25361,27.0625,76.61428,6.313 403,-17.619003,-63.62265,55.592796,142.08229,6.081 403,585.7265,-95.63617,72.995056,229.8161,5.926 403,595.5952,-19.577047,41.20587,89.580894,5.71 403,626.93085,-19.574108,17.635132,48.567272,5.675 403,-17.616573,441.26236,55.767506,134.99667,5.587 403,187.66649,269.73074,32.30414,75.56906,5.567 403,612.31775,454.79312,39.84143,106.47745,5.291 403,626.0717,487.0483,21.87091,47.365936,5.222 403,23.709698,158.46376,35.85387,78.367294,5.123 403,617.0664,124.746254,24.217468,60.009132,5.085 403,-11.090263,-31.993725,29.80558,70.52793,5.021 403,582.89496,413.0851,71.85016,175.4653,4.954 403,627.98285,355.11786,15.17511,39.164673,4.916 403,-40.82953,367.48325,111.12804,275.98135,4.875 403,571.7589,-35.242554,59.668213,124.473694,4.782 403,-10.748,182.97284,29.097073,75.03589,4.771 403,-73.14147,266.58704,200.28003,461.2248,4.763 403,395.13962,212.97093,54.09909,106.7242,4.728 403,489.7174,-182.31822,235.45032,427.2442,4.681 403,536.2922,312.03827,143.52985,339.15485,4.669 403,557.6339,-33.929623,30.149963,77.79147,4.635 403,369.97455,219.64444,19.871277,38.121185,4.584 403,4.617696,470.52884,38.960766,91.34567,4.488 403,615.7624,354.94305,12.755859,29.613953,4.474 403,617.81775,41.573524,22.61383,62.92656,4.424 403,361.66278,220.43234,20.347961,38.63452,4.407 403,550.7224,42.619305,29.483154,72.96384,4.331 403,3.2143414,-15.240141,16.48329,38.465607,4.284 403,493.32095,226.80853,238.37924,513.70337,4.283 403,605.3219,-35.316227,30.013306,78.01381,4.173 403,235.00378,484.3885,33.423218,57.161255,4.163 403,542.331,169.1395,53.77423,123.16354,4.157 403,369.09973,251.1785,36.109467,66.909424,4.153 403,1.4754057,489.89816,20.531712,41.495697,4.152 403,540.42474,209.42159,32.00598,63.250137,4.148 403,416.79785,142.87296,22.293182,49.54773,4.125 403,-5.507016,187.01762,18.74324,51.045685,4.11 403,572.4346,173.61905,29.796509,62.17679,4.1 403,327.94113,210.85602,28.14621,58.111908,4.083 403,200.29619,201.8256,25.152298,38.822586,4.069 403,516.342,180.86661,40.48224,79.79849,4.052 403,11.840818,145.44606,56.354797,111.75322,3.973 403,433.71527,169.017,19.372131,34.875732,3.958 403,-15.809744,126.387924,51.130844,135.79738,3.956 403,591.3453,35.33696,49.658203,175.50249,3.948 403,528.36536,199.65665,21.523743,38.835953,3.909 403,594.373,14.623207,34.224365,68.93824,3.908 403,432.8925,148.47777,19.931305,40.58905,3.904 403,563.6191,-15.976866,42.61841,83.15054,3.899 403,420.1611,251.95805,31.653442,61.428574,3.873 403,-4.071228,171.83955,16.820015,42.568924,3.865 403,-38.8219,-129.79614,118.50343,281.65402,3.792 403,532.4308,199.4898,31.228027,58.146973,3.792 403,267.87585,483.41803,32.41794,57.466187,3.789 403,-10.110396,-7.557564,39.376247,103.17258,3.777 403,-15.334821,196.76054,49.94866,147.32607,3.775 403,389.91022,242.3747,33.434174,64.75311,3.773 403,356.9452,203.68738,30.759521,58.767487,3.764 403,1.10672,159.59067,52.03662,135.70132,3.764 403,283.63913,484.57486,32.122528,55.91519,3.711 404,367.6578,129.77138,23.712433,52.007812,12.12 404,-6.444813,487.568,19.70556,45.59253,7.801 404,-5.299856,-16.715523,17.495277,41.20324,7.694 404,598.0723,171.83052,27.111023,71.22978,7.645 404,276.65698,206.24629,30.178436,70.59856,7.332 404,357.18326,134.54858,33.205383,73.29773,7.222 404,-11.72397,475.3702,30.818357,65.41531,7.121 404,-11.328636,-32.253746,29.994194,69.974205,6.764 404,373.10147,251.71405,29.608917,61.73297,6.715 404,-17.486132,-64.65137,55.101135,143.5419,6.57 404,204.58427,210.34247,34.82399,52.779358,6.547 404,182.62527,206.82831,27.172272,37.287445,6.415 404,610.7773,-48.540947,40.963318,100.42761,5.905 404,3.2754219,-15.404662,16.854828,38.60206,5.885 404,612.7773,454.71716,39.90973,107.12787,5.855 404,88.45361,241.66745,24.948349,48.933655,5.636 404,186.95801,209.56393,34.883957,52.812927,5.61 404,626.18634,487.79095,21.693909,46.185913,5.528 404,83.42471,181.69983,36.40976,73.27855,5.339 404,448.51288,209.31001,24.210266,48.90352,5.306 404,627.0298,-20.450607,17.548767,49.91383,5.261 404,612.4108,241.06227,26.133118,85.554245,5.153 404,586.1499,-99.78645,74.15564,231.88968,5.151 404,552.2891,207.21672,24.131836,47.834183,5.003 404,-18.031956,431.86707,56.054726,145.0896,4.991 404,1.2713683,487.40958,20.683535,45.076996,4.975 404,282.3354,-13.881932,17.606873,39.757668,4.928 404,536.6674,311.4505,142.80475,339.80865,4.889 404,265.92657,208.17758,60.102966,127.13809,4.832 404,582.47205,410.089,72.45404,178.46985,4.784 404,469.20056,202.91248,29.932587,66.444275,4.78 404,70.67725,295.7525,36.47699,83.12918,4.772 404,351.97208,136.45038,25.01474,54.617615,4.691 404,198.01141,203.84328,31.094849,48.771194,4.635 404,568.78076,181.00975,33.435608,60.262817,4.619 404,484.56732,198.26973,30.00592,65.2133,4.608 404,-72.261024,266.9903,199.9996,460.21246,4.591 404,266.34027,-14.606965,17.700073,39.871964,4.56 404,400.6371,185.71101,46.15158,89.164505,4.552 404,575.00507,162.51146,51.151245,124.887955,4.528 404,257.6089,223.01216,44.190796,93.38225,4.515 404,78.066055,243.82721,31.66365,74.88611,4.509 404,493.9599,227.07501,237.6759,513.97394,4.509 404,452.25354,196.91345,40.09192,88.20325,4.509 404,-39.597443,367.45056,110.28999,273.06335,4.48 404,296.54498,216.402,23.020996,48.23918,4.447 404,224.25398,209.25931,33.734848,59.115356,4.433 404,368.28363,223.44559,45.362183,85.427246,4.416 404,558.49396,-37.45659,27.653992,81.53737,4.388 404,-2.1551406,450.05286,28.67151,71.050415,4.382 404,506.97626,207.70886,31.801697,64.96881,4.375 404,543.1841,169.80789,54.9599,114.027435,4.37 404,589.9787,241.65582,51.45758,157.78076,4.349 404,241.61835,223.98749,44.04602,88.87738,4.341 404,288.4836,221.61267,44.649048,97.88629,4.329 404,533.24054,-183.09846,147.99109,421.5759,4.234 404,449.58615,-18.654465,19.270294,43.654297,4.232 405,431.61755,101.51787,29.805115,65.86925,30.079 405,233.11403,212.32074,25.750595,46.9144,26.414 405,473.02344,276.5133,23.794373,51.69989,14.471 405,245.96048,214.54236,25.78775,44.696075,13.408 405,443.6874,271.38806,30.321198,73.67331,9.275 405,622.3907,-33.539986,27.408813,75.90184,7.525 405,556.6562,195.21109,30.576782,69.39499,7.062 405,626.56683,-19.589483,18.311157,48.638424,6.887 405,-5.7939267,489.98026,18.169344,40.974213,6.592 405,-5.432227,-17.733826,17.50183,42.137196,6.497 405,-17.608982,-64.48671,55.22774,144.32956,6.462 405,111.552765,181.32672,38.223633,68.62277,6.369 405,621.48834,475.03833,29.668945,68.29761,6.357 405,616.4872,179.71532,22.685059,52.839523,6.146 405,-0.5977726,353.0246,30.498503,76.372925,6.138 405,211.66434,206.1561,33.919785,58.739807,6.118 405,-11.11941,479.488,29.234455,62.019684,6.08 405,256.0291,211.2776,23.999908,36.94409,5.98 405,-11.154784,-31.946632,29.825897,69.38803,5.764 405,227.8163,198.19513,41.55699,68.454254,5.582 405,580.863,181.56415,39.948425,96.05255,5.423 405,506.47986,270.16855,32.167053,58.33316,5.364 405,243.21806,203.57018,37.085373,69.99788,5.255 405,457.82605,250.04799,54.78723,109.85231,5.245 405,602.76825,-56.278862,52.930664,135.65556,5.151 405,75.50838,272.26132,30.073212,63.95984,5.137 405,462.37045,273.60165,29.442566,67.704895,5.122 405,524.7091,271.5138,34.581177,70.0636,5.08 405,209.20654,206.3356,24.211395,38.511276,5.066 405,-11.335785,347.18738,30.580963,71.21771,5.059 405,603.2901,430.64578,56.72882,141.6063,5.018 405,119.03518,212.25458,36.983406,66.29181,4.92 405,590.1404,175.57903,28.267944,62.369858,4.908 405,536.53754,310.75198,143.50037,341.23837,4.889 405,540.2342,190.47305,58.720276,129.51242,4.881 405,-39.78134,365.57852,110.38146,273.77036,4.862 405,-72.915634,266.5405,200.8515,460.98196,4.838 405,596.8822,182.81073,39.96173,113.930084,4.785 405,91.14861,255.76837,18.905357,39.539673,4.732 405,343.9228,218.24074,25.645569,45.643387,4.652 405,333.19547,213.47119,31.743378,67.15756,4.624 405,97.731064,253.74658,19.630264,41.013367,4.616 405,422.63666,111.45981,30.433044,73.6463,4.615 405,493.197,226.97076,238.1232,513.9238,4.554 405,168.02176,210.43991,24.156204,32.83235,4.542 405,617.6386,486.3478,21.632202,45.034637,4.523 405,612.8639,-21.452581,28.638428,70.27393,4.492 406,279.31244,215.10345,29.820648,54.266144,34.082 406,299.55457,215.048,29.932373,59.99756,18.589 406,-4.703885,-17.222322,16.831085,43.766525,7.748 406,115.098305,273.39273,31.698143,65.45535,7.491 406,611.8787,-50.65743,39.269836,105.78135,6.904 406,-10.775984,-33.232162,29.77286,75.27055,6.639 406,-11.5604725,477.4426,29.95392,64.144806,6.552 406,420.65097,223.8617,39.944,80.454956,6.389 406,-6.0774364,488.86023,18.990578,42.417297,6.386 406,436.43802,237.39323,31.954742,65.46034,6.281 406,128.5807,269.8703,34.599213,65.78711,6.255 406,621.3128,475.34235,29.546875,68.31317,6.211 406,404.87073,222.89331,39.754883,84.08502,6.193 406,417.46597,216.03033,22.714874,53.547913,6.082 406,540.197,162.06029,29.912598,78.78389,5.985 406,469.68866,219.482,31.258942,62.411926,5.934 406,274.0808,217.57751,41.255463,83.43579,5.709 406,626.5362,-19.39565,18.165405,50.572002,5.704 406,129.72069,263.2197,20.971329,41.322662,5.665 406,595.6518,-47.56469,41.538513,101.4115,5.657 406,139.07045,257.58957,31.962112,60.30127,5.548 406,451.85846,215.61978,40.354614,77.62973,5.455 406,224.04364,215.92865,25.49646,31.972977,5.448 406,91.00064,286.21796,30.411194,60.516724,5.381 406,110.365105,283.33154,24.658699,46.88858,5.361 406,306.91928,205.16383,38.425537,74.53685,5.292 406,259.4041,214.86151,35.73529,66.504456,5.253 406,525.3386,175.26476,31.519287,76.11391,5.233 406,585.46735,-97.37678,74.51929,228.32056,5.222 406,-17.624207,-64.338135,55.610657,145.40703,5.167 406,-22.008162,400.67575,79.93637,176.09457,5.003 406,536.684,311.4707,143.25244,340.735,4.931 406,602.96423,429.9691,57.17743,143.57755,4.929 406,451.78067,243.81491,32.418,62.53235,4.915 406,616.8888,249.02663,22.737244,55.982407,4.751 406,-72.92282,267.00854,200.62253,461.47906,4.723 406,146.30347,246.25082,31.871338,58.28003,4.72 406,35.445923,130.84625,34.399666,62.638535,4.711 406,546.41547,209.8433,32.893127,64.87282,4.667 406,370.6632,233.61766,42.834717,93.44527,4.66 406,429.89008,201.63257,52.044098,107.520996,4.655 406,334.151,111.19583,25.108978,41.132324,4.653 406,586.8363,142.97588,31.283508,63.00096,4.637 406,387.59375,224.26192,42.468018,86.41023,4.608 406,617.7341,486.037,22.346252,46.49347,4.578 406,178.0481,194.53134,36.16075,54.716278,4.568 406,571.8613,-15.596037,15.950623,41.305447,4.52 406,490.18286,-181.18053,235.43445,426.61774,4.519 406,449.35483,245.22736,23.400635,43.013123,4.514 406,356.23276,107.90999,32.7883,64.33156,4.502 406,494.22852,227.88885,236.68896,513.3561,4.481 406,537.6924,242.25778,34.750427,70.98462,4.476 406,349.49692,230.07776,52.555695,134.26495,4.462 407,327.1726,213.70769,28.093384,63.78508,95.645 407,353.11615,223.14064,23.244904,55.42943,66.005 407,623.4172,-33.743164,26.972717,75.44438,9.666 407,-5.2383966,-18.150417,17.322659,43.255066,7.911 407,621.44543,476.0884,29.324585,67.6575,7.181 407,392.61014,223.18825,33.722626,78.74162,7.052 407,97.433556,315.11008,33.468636,71.15872,6.978 407,-11.06854,-32.658638,29.733208,71.03301,6.839 407,570.83954,314.57455,31.304626,64.74454,6.506 407,-6.38417,489.79056,19.38452,42.07303,6.325 407,4.229095,200.28685,30.283352,53.875473,6.229 407,602.5771,-58.38599,53.343628,133.00562,6.042 407,0.095357895,90.7418,23.212954,58.95237,5.841 407,626.8214,-20.333193,18.546692,48.788113,5.713 407,355.65594,214.35089,35.538635,72.06726,5.706 407,593.4266,-46.584488,44.59503,93.57483,5.693 407,-12.045687,478.7253,30.305624,62.94333,5.683 407,618.58453,487.08636,20.920532,45.65802,5.639 407,345.66504,220.74582,22.11908,54.43918,5.635 407,179.59886,261.00137,31.739624,56.066864,5.452 407,-18.239336,-65.02902,56.64521,145.39009,5.24 407,-38.71676,369.97858,108.95576,267.4217,5.22 407,617.10284,-22.90044,20.514832,49.578625,5.137 407,30.722767,207.42273,23.08308,35.742905,5.072 407,144.64766,284.20212,22.347092,50.170868,5.011 407,372.5149,219.7822,32.44391,51.372192,4.956 407,536.4178,311.38538,143.81427,340.53174,4.955 407,521.11163,-3.5369396,22.44635,38.71068,4.855 407,491.03168,-182.10841,235.09247,427.89035,4.845 407,586.4911,-100.126114,74.19702,230.47374,4.806 407,558.9422,312.16147,31.732483,76.15256,4.784 407,517.5543,-32.14162,29.506104,68.49315,4.771 407,-5.5044174,168.56247,17.746288,42.170227,4.731 407,453.4883,101.23003,29.093292,70.96727,4.728 407,313.78076,208.71414,31.088928,65.40738,4.704 407,493.72656,-33.555992,28.532593,67.730576,4.701 407,583.5136,406.6696,71.89563,181.70413,4.696 407,508.32825,-13.844379,32.968628,62.58483,4.687 407,168.12494,269.57224,21.72078,42.12372,4.683 407,519.4481,298.9075,29.574768,69.60785,4.662 407,2.2419727,55.771072,31.29452,71.495346,4.662 407,211.19568,182.98969,35.722183,63.662033,4.656 407,3.2705188,-17.360672,16.49194,42.728207,4.649 407,586.0442,318.46637,35.562622,75.223785,4.643 407,493.4991,225.58566,237.69772,514.7833,4.448 407,380.80823,226.9109,31.306091,70.05791,4.439 407,-18.219316,434.09183,55.80088,142.02103,4.399 407,-37.91783,-132.9337,118.29579,284.27716,4.35 407,-73.3274,269.99078,199.93845,458.2293,4.342 407,362.72485,251.5981,33.2063,79.53917,4.327 407,491.51465,-4.3987036,19.15271,35.706562,4.284 407,-70.52116,-187.63704,212.30878,454.05267,4.276 407,506.13733,-16.473944,17.848267,37.791573,4.27 407,396.20773,217.89014,26.286346,45.65103,4.254 407,536.45667,297.31802,21.775757,56.80362,4.25 407,-6.598464,131.43665,19.721767,48.145325,4.233 407,301.94943,208.62967,29.65213,59.04538,4.209 408,358.00226,216.57109,32.775665,84.496445,95.212 408,383.47256,227.6283,32.434357,72.48151,74.236 408,370.88464,223.77249,31.235565,74.29486,17.337 408,233.17879,179.15541,36.75734,68.89572,9.014 408,-5.141326,-18.472326,17.053328,43.960922,8.583 408,-10.830907,-31.159304,28.954807,69.81236,6.893 408,621.211,474.13617,29.504578,67.84454,6.466 408,302.6467,226.20819,22.740204,33.001617,6.342 408,-12.027218,477.22357,29.518625,64.21112,6.126 408,622.9517,-33.6611,26.581055,76.7265,5.866 408,144.76797,299.7554,30.360947,64.1416,5.821 408,469.0086,194.15771,36.747803,82.70209,5.788 408,617.80835,486.0009,21.30597,45.00827,5.787 408,627.15344,-18.93339,17.75653,47.556034,5.761 408,-6.431082,489.708,18.538544,43.07434,5.605 408,178.90236,279.33432,30.893814,64.74332,5.597 408,3.1796813,207.59323,32.68498,58.6792,5.503 408,344.7986,213.2536,33.859222,74.00104,5.447 408,90.37728,349.483,35.70759,65.23236,5.394 408,183.26108,282.3428,21.457672,39.86795,5.351 408,3.798699,-16.399822,16.440239,41.092667,5.275 408,15.139756,212.18527,24.870285,39.802948,5.19 408,-23.159351,400.35696,81.07929,176.52432,5.169 408,-17.876478,-64.52455,56.259956,144.31313,5.158 408,348.9999,190.29184,54.293518,106.04422,5.044 408,535.9899,310.16187,144.92084,341.24585,4.991 408,602.62244,-56.276833,53.50641,137.95721,4.958 408,19.681467,204.9061,33.073044,49.31404,4.944 408,583.2529,410.24677,71.453125,177.50385,4.868 408,493.61038,229.84328,237.72263,509.88843,4.824 408,491.08002,-182.07834,234.95941,425.53333,4.798 408,586.37537,-103.10084,74.861694,237.25256,4.783 408,621.1976,226.2171,14.971008,36.156433,4.645 408,161.5191,293.40765,34.672302,71.24423,4.63 408,9.873827,-35.232292,60.02642,131.81743,4.619 408,435.4787,239.74731,20.071045,35.533936,4.614 408,325.98495,224.33008,40.130585,78.20349,4.513 408,-70.61044,-187.27393,212.59637,455.1133,4.502 408,-37.160774,-132.09752,117.55197,282.09738,4.502 408,-4.844209,171.40514,17.359085,40.200317,4.494 408,-74.18795,266.40222,200.99121,460.26025,4.49 408,543.3297,233.80319,49.744263,132.75217,4.48 408,619.10156,-19.858032,17.952087,45.543926,4.456 408,41.300247,214.54941,22.876686,38.730698,4.448 408,251.7384,189.98192,27.375214,49.481186,4.421 408,597.68555,238.64868,13.777649,26.11679,4.405 408,209.5155,232.95377,19.77626,27.723694,4.402 408,538.0448,-4.583192,21.897034,38.4511,4.394 408,-4.654705,2.2649078,16.332323,39.06253,4.354 409,432.83115,230.82498,42.0036,99.91095,96.128 409,389.6109,213.79947,50.607788,119.620544,92.593 409,571.46423,192.14651,33.25659,71.76669,10.333 409,-12.256859,474.9069,30.507132,66.19748,7.956 409,622.0337,473.99887,28.817444,69.85489,7.641 409,-6.512204,488.18152,19.600681,44.52594,7.406 409,-5.1057615,-16.914028,17.713608,42.274105,7.315 409,1.6050231,193.68027,32.6781,61.793472,6.947 409,552.17255,197.05486,40.52423,88.393265,6.596 409,240.91455,168.31207,37.226593,70.62967,6.513 409,-10.612908,-32.16551,29.712227,72.31673,6.249 409,595.37,200.26512,39.823364,99.22472,6.189 409,610.88574,-46.99904,41.530273,98.04236,6.08 409,8.162193,-25.661102,61.881165,126.026726,5.942 409,224.22952,234.28955,22.494278,31.150604,5.908 409,419.9608,234.31247,32.78134,92.66885,5.868 409,571.16223,188.35603,52.282166,120.132126,5.854 409,-18.036749,-63.096027,56.55127,144.69176,5.437 409,381.9051,212.83716,35.8024,82.8786,5.387 409,536.03156,308.3603,144.64154,343.8001,5.369 409,466.3153,234.27733,40.38925,99.62752,5.353 409,210.74057,230.60793,19.879059,28.446915,5.346 409,-4.7689157,2.0199127,18.419744,44.36214,5.243 409,-23.657146,399.7445,80.915146,177.00171,5.202 409,626.36444,-18.18985,18.046204,45.274185,5.16 409,581.12354,173.49345,38.812378,83.82088,5.116 409,557.05945,22.81154,27.44342,62.431946,5.114 409,616.08154,153.30902,24.211792,83.107635,5.113 409,499.11588,197.77614,41.14023,79.45793,5.064 409,603.6929,426.38638,55.67395,147.36557,5.036 409,39.80558,204.712,22.702232,36.742157,4.997 409,-3.6657963,55.642006,17.182915,47.830368,4.979 409,98.447296,129.01184,35.367508,64.25978,4.909 409,63.465622,365.01202,35.23828,67.96924,4.872 409,531.71356,208.21338,41.88336,92.94763,4.846 409,472.31277,234.04045,23.537079,34.73735,4.842 409,542.1123,190.65665,57.532837,148.92029,4.817 409,618.5236,485.6001,20.864075,46.926086,4.809 410,451.84088,214.36263,80.37018,193.62718,99.538 410,538.8007,241.88683,67.52545,160.36903,93.927 410,-11.492155,478.648,29.443174,62.97937,8.852 410,530.66003,302.66202,150.00128,355.08932,8.646 410,-6.147733,489.56473,19.25698,42.46115,8.268 410,503.0329,238.51273,63.036926,160.85431,8.05 410,476.17072,212.08632,36.43982,63.357376,7.707 410,412.80695,211.64867,34.367615,59.995132,7.394 410,613.39453,200.56256,24.845581,84.59491,7.227 410,-0.3603971,216.23227,23.273977,46.23578,7.004 410,497.12775,227.49686,233.11102,523.94604,6.992 410,-5.8292823,-18.691942,18.450125,45.33133,6.686 410,-10.744268,-31.866337,29.628546,74.96931,6.603 410,392.5692,215.89188,35.769165,56.176483,6.599 410,613.2881,452.43658,39.05774,110.54816,6.233 410,622.96063,-33.18714,26.595154,75.01984,6.19 410,548.16284,250.53197,35.748352,105.60344,6.029 410,627.3664,-17.457058,17.347046,45.552177,6.004 410,253.83348,173.59988,39.955215,74.5452,5.679 410,626.4178,487.3289,21.105164,45.386993,5.676 410,8.820267,-26.634777,61.815125,125.791794,5.672 410,582.911,408.6338,71.87976,178.43616,5.65 410,-18.003834,-63.853577,56.612854,143.04256,5.519 410,-18.117508,433.86084,55.43198,141.47656,5.485 410,30.514545,207.88593,24.387379,44.579147,5.474 410,580.8509,245.0151,55.65674,156.50644,5.448 410,612.73883,281.59396,38.799316,114.80539,5.43 410,1.4519656,489.9831,20.386242,42.21692,5.347 410,4.3967485,201.54306,29.662567,57.19812,5.135 410,537.93036,309.4265,33.52014,90.49002,5.112 410,559.59174,248.2628,34.87976,81.89842,5.105 410,402.72015,190.27884,66.550476,101.22745,5.038 410,427.07047,218.39847,32.279358,63.882782,4.983 410,467.26056,148.01306,131.70886,317.10706,4.972 410,619.2452,-17.539366,17.34668,41.79657,4.902 410,210.20361,240.81998,22.557343,30.621704,4.85 411,435.7053,218.09619,34.960175,58.402588,8.291 411,-5.9352264,-17.7962,18.648998,45.58131,6.955 411,617.2945,73.130974,21.783997,61.560875,6.776 411,619.5825,111.379196,20.535645,51.273483,6.638 411,-10.784386,-32.635452,29.836214,76.79478,6.525 411,627.514,235.3091,16.964905,44.802444,6.429 411,3.054533,209.32721,18.683096,52.085876,6.427 411,235.33546,157.55872,62.166733,118.18402,6.333 411,-5.7788515,489.7872,18.162888,40.70511,6.205 411,497.7348,172.26129,33.9563,70.013306,6.143 411,-4.0400558,202.76524,17.494211,43.407883,6.129 411,626.7261,487.9699,20.484741,45.843567,6.005 411,581.5908,209.04504,32.141785,70.434814,5.865 411,602.7356,-56.69211,53.37378,140.63263,5.859 411,-11.234817,478.37543,29.25798,62.484314,5.852 411,622.3578,-34.417973,27.150757,77.47904,5.807 411,620.35284,235.44537,17.81543,43.359863,5.723 411,8.277138,-28.243729,61.30593,128.4822,5.68 411,-18.025097,-63.484932,56.469807,144.03453,5.663 411,503.50586,258.13217,26.525574,38.154205,5.662 411,436.08014,164.95247,67.51654,98.77144,5.515 411,208.77512,252.79947,23.233154,33.99225,5.502 411,156.25783,229.40782,16.338013,25.29042,5.402 411,612.99615,455.77325,39.124573,106.84534,5.397 411,618.2793,255.13423,19.77008,35.281723,5.38 411,622.7375,97.34473,26.305603,69.20355,5.301 411,410.1669,219.77386,34.47528,59.167236,5.291 411,448.60904,221.67905,34.321564,62.31955,5.285 411,16.120474,213.06592,22.895922,43.464996,5.282 411,627.13275,-18.20805,17.687256,46.782845,5.177 411,583.3198,412.3614,71.5553,176.17682,5.153 411,422.57996,192.32907,61.940613,96.35684,5.128 411,536.0221,311.15442,144.70392,339.6908,5.114 411,204.69926,236.20773,32.09453,46.94464,5.094 411,545.70276,0.2527094,18.607788,29.215557,5.054 411,236.08727,11.996765,35.057785,67.68659,5.052 411,-73.276054,265.0016,200.81445,463.16797,5.008 411,227.13896,259.76984,18.864548,31.740143,4.911 411,-21.670498,402.8255,79.01251,174.89954,4.865 411,370.21695,95.138214,22.21817,49.82312,4.856 411,-70.89726,-187.49391,212.81584,455.54614,4.776 411,222.28233,245.99532,24.614975,37.761154,4.742 411,233.27747,-15.1406555,36.4057,66.623665,4.718 411,446.49408,-33.25139,28.125214,61.6078,4.711 411,111.77727,229.31064,22.216904,32.262115,4.69 411,248.39844,160.03253,36.2825,67.69696,4.673 411,105.35966,214.62576,35.472435,52.144623,4.653 411,163.15622,230.317,16.463089,25.253723,4.612 411,454.2485,196.50351,24.18689,40.41568,4.596 411,136.85245,-32.132706,61.497284,124.38738,4.558 411,146.76912,233.36613,19.103104,27.883041,4.541 411,494.05667,229.46521,237.39572,511.84033,4.534 411,261.6019,184.52882,61.910828,108.87407,4.532 411,599.9083,236.18059,21.008972,41.954483,4.527 411,-36.790447,-132.05975,117.27527,281.57474,4.503 411,2.036333,-18.08713,17.993166,45.625355,4.5 411,67.30712,219.65163,33.84366,49.187027,4.489 411,121.49373,237.94673,20.647247,31.310837,4.487 411,476.61896,160.26817,53.32318,70.748535,4.484 411,40.831738,-28.412483,62.096653,123.71315,4.48 411,430.6258,187.39212,36.717773,73.07541,4.476 411,498.43216,233.54892,34.87906,60.103607,4.474 411,50.112373,222.56528,21.811752,36.040375,4.468 411,205.69348,225.36566,47.12947,68.25983,4.458 411,585.3217,-102.41756,76.035095,238.75208,4.415 411,114.67099,-4.076537,20.953644,38.78102,4.399 411,458.8653,-15.119435,17.56195,35.036915,4.371 412,-5.031007,-16.626852,17.405571,42.09161,8.256 412,-12.09903,480.71738,30.092546,61.206818,6.461 412,148.55014,243.02675,32.01352,44.252823,6.453 412,-18.467983,-63.21436,56.660168,144.47229,6.319 412,-10.612852,-31.395767,29.429491,71.42329,6.292 412,8.882971,-24.09153,60.254204,123.62739,6.029 412,490.29602,159.26047,32.54834,68.621994,5.965 412,-3.9312024,41.03933,16.341705,44.58988,5.929 412,131.41895,228.09369,16.947144,25.872543,5.884 412,504.53113,259.83673,34.890747,52.205597,5.784 412,622.0045,476.51154,28.525574,68.34509,5.769 412,3.1705296,-13.733786,16.527353,37.83743,5.689 412,124.449615,228.98315,17.469208,25.472565,5.671 412,412.5128,204.61179,34.333282,73.256134,5.562 412,622.71313,-34.856747,27.623108,73.55243,5.535 412,176.35516,234.34677,34.424637,52.796265,5.531 412,290.30182,211.91776,44.8981,69.05246,5.498 412,-6.0900593,489.46945,18.622011,42.007782,5.481 412,587.7361,224.99445,33.756165,63.473022,5.457 412,603.2274,-55.57199,53.43268,135.75676,5.401 412,170.80457,1.0188341,19.700775,30.549809,5.338 412,536.3189,310.68372,144.43683,340.14276,5.215 412,-1.8021643,211.96259,28.210077,57.947296,5.192 412,618.21783,270.91342,19.0401,31.924042,5.162 412,593.66943,-44.695076,45.273926,97.318344,5.14 412,582.8998,412.06647,71.91443,176.27533,5.107 412,420.79285,157.40349,66.56467,105.62108,5.073 412,-73.539505,264.73767,201.75789,463.2799,5.069 412,462.56192,144.67789,51.676117,66.00627,5.041 412,170.92223,-13.466681,16.927475,34.47994,5.011 412,594.54785,256.7938,21.998474,33.448242,4.961 412,156.64474,222.6016,30.430069,55.035126,4.947 412,336.23407,63.67693,29.94223,64.54132,4.905 412,-21.567558,402.51654,78.923416,175.23724,4.873 412,599.4981,218.26314,22.235046,44.768967,4.799 412,572.8399,206.82399,36.06848,72.11992,4.791 412,186.96251,-14.320554,16.947632,34.986736,4.78 412,1.5334862,122.24335,19.706072,50.756958,4.764 412,138.95337,-1.0605545,19.604996,33.409245,4.717 412,40.558475,-25.670502,60.53005,116.90814,4.7 412,388.3386,207.89017,32.917847,67.7023,4.699 412,179.24063,-0.07227898,19.774902,31.352295,4.675 412,187.03333,-0.17597008,20.171082,32.647865,4.672 412,494.16956,230.48952,237.18817,510.1848,4.667 412,-71.036224,-187.88158,212.15797,455.75208,4.667 412,-8.863823,105.8271,38.285713,105.00958,4.662 412,-37.36108,-132.23073,118.0831,284.83896,4.644 412,74.025665,-27.538887,59.9617,119.403854,4.63 412,159.6437,251.01723,25.378876,33.316177,4.615 412,2.8482003,55.888626,17.681507,43.434616,4.605 412,137.77362,222.15755,18.447937,26.615768,4.589 412,155.28928,220.74344,19.444763,28.35527,4.575 412,396.37433,192.19342,58.87851,101.73572,4.512 412,-4.7209473,2.8905487,17.8498,42.274235,4.499 412,-9.136784,21.480392,27.00884,69.947754,4.49 412,155.05685,-13.601931,17.286865,34.69628,4.453 412,174.18231,256.3402,24.962463,32.78824,4.441 412,617.9166,254.52452,20.185486,37.975418,4.428 412,155.2025,-0.15252686,19.98352,32.123814,4.418 412,285.856,228.95882,34.296295,56.76909,4.391 412,162.06097,212.48215,20.525116,30.096848,4.384 412,106.13397,223.29167,19.485092,27.488312,4.365 412,0.5854511,-0.06428528,49.96888,134.19768,4.359 412,162.8145,-13.063265,17.357742,34.594547,4.359 412,3.189816,-0.20934677,18.30252,37.248306,4.35 412,106.309875,-27.692211,59.794067,119.6691,4.349 412,-15.788639,118.89705,51.16928,143.37816,4.337 412,179.37965,-13.975769,16.607422,34.302994,4.3 412,154.95193,233.97621,20.435913,31.045242,4.289 412,42.84388,-0.78566074,20.502121,33.156364,4.286 412,251.57005,213.6872,30.11943,59.93048,4.265 412,627.5797,243.2516,17.61737,44.22618,4.257 412,488.94592,-175.90694,236.68433,420.3465,4.254 412,115.28844,227.07959,18.495163,26.91809,4.243 412,130.99875,-1.7209091,19.833115,36.04796,4.242 412,196.40445,-1.4585533,32.414062,59.354393,4.239 412,122.490585,-2.5092716,20.377747,38.137054,4.234 412,431.9644,201.08821,36.549255,70.93919,4.222 412,26.859495,-0.24071312,20.073267,32.914818,4.209 412,195.47955,225.44695,34.07451,56.77913,4.18 412,568.7503,207.21405,61.1463,107.8089,4.175 412,169.72688,211.33607,20.02443,31.428192,4.175 412,-5.4775467,215.94812,18.587494,41.113434,4.162 412,99.120094,224.11066,18.90821,27.189972,4.15 412,34.824245,-1.2924461,19.96688,33.28502,4.125 412,198.37198,170.38084,63.30301,111.62572,4.115 412,183.06073,-33.480427,28.475983,70.382256,4.114 413,-5.3075037,-18.2333,17.515766,43.834988,8.027 413,71.52931,256.32193,26.234192,40.33908,7.636 413,-10.81758,-31.89263,29.633297,71.138245,6.508 413,340.46658,209.97226,33.80188,76.4079,6.501 413,626.4709,488.10083,20.388245,46.23889,6.495 413,226.86914,220.8882,43.589203,71.155685,6.3 413,-11.860882,479.5345,29.877642,62.07611,6.267 413,627.2263,-18.376507,17.793457,47.590534,6.035 413,622.9812,-33.393745,26.680542,76.25685,5.973 413,383.03784,240.10309,24.993347,50.93866,5.973 413,-6.349552,489.673,19.225563,41.707123,5.967 413,585.40094,231.3386,22.572021,49.415466,5.837 413,370.75253,209.66116,44.604797,85.50577,5.559 413,106.935486,124.418045,61.937683,127.80049,5.436 413,-17.895977,-63.805157,56.136253,144.73343,5.413 413,612.67114,456.32773,39.549316,104.84097,5.409 413,257.81714,210.642,18.282227,30.566177,5.404 413,407.81506,142.50635,65.56665,111.55133,5.239 413,-73.08102,265.2728,201.6933,463.8306,5.234 413,536.856,311.36102,143.35913,338.75433,5.122 413,582.9365,412.62512,72.14557,175.92596,5.033 413,565.60187,193.94753,32.936462,72.16951,5.019 413,603.40247,-56.063496,52.892944,137.49217,5.006 413,555.62714,-16.660664,31.70758,67.062935,5.003 413,617.8737,280.10855,18.521912,32.15036,4.983 413,-17.184616,437.5159,54.894615,137.3068,4.967 413,597.22986,261.758,32.030212,50.914764,4.942 413,-4.450527,1.8620033,17.192661,42.372894,4.918 413,3.5947466,-15.858838,16.41602,40.143944,4.914 413,90.74254,2.8705673,19.852234,30.997398,4.854 413,10.270126,-25.230755,58.60022,127.88873,4.838 413,388.58038,159.80345,65.660706,118.765945,4.77 413,63.173508,261.34073,26.354874,39.54886,4.766 413,-40.288635,368.49927,110.43503,274.69788,4.755 413,90.93324,-11.054249,16.599625,32.381287,4.741 413,103.99461,1.2730408,25.346237,39.293144,4.722 413,431.47824,140.82718,49.239594,79.40668,4.702 413,539.6343,-18.018757,31.617065,68.586586,4.662 413,-37.07483,-131.07176,117.75124,282.1973,4.647 413,619.23145,-5.7102175,19.539978,42.75294,4.611 413,100.704254,137.09775,36.015244,63.486755,4.586 413,74.34376,217.71216,20.309242,31.693878,4.571 413,35.670685,255.23537,34.262787,50.672714,4.525 413,554.0939,-18.147488,18.30304,42.561813,4.511 413,538.2245,-18.902555,18.324951,43.803055,4.511 413,493.98105,230.01746,236.94089,509.49316,4.509 413,565.7265,-32.762928,28.205872,73.73116,4.508 413,50.02755,220.98529,19.352707,28.717133,4.506 413,143.81833,143.79668,37.306396,68.69623,4.5 413,614.0869,-20.966923,27.626953,72.88892,4.499 413,-71.85078,-187.06958,213.48358,454.70697,4.493 413,48.590263,254.9928,23.43016,33.409546,4.489 413,562.3756,-16.936731,18.356445,40.81953,4.475 413,116.31153,158.81519,64.89063,132.04419,4.462 413,353.28793,213.4973,33.852905,70.463486,4.457 413,459.06857,-17.404322,17.464996,38.952045,4.436 413,564.45807,173.02542,31.942627,62.51677,4.384 413,459.74258,154.90056,31.679901,68.48331,4.383 413,19.405878,-13.292967,33.07016,62.32232,4.359 413,98.83026,1.8111553,19.757004,32.00348,4.357 413,602.5135,271.75272,21.673706,33.554626,4.353 413,26.410011,-1.7531548,20.993126,37.11999,4.353 413,52.72811,236.31564,32.187202,57.792114,4.351 413,570.27356,-18.183447,18.432068,41.50596,4.349 413,122.54793,-11.989725,35.589798,59.464012,4.346 413,57.99667,219.11505,19.162876,29.052261,4.344 413,442.7747,-17.881058,17.7706,39.10897,4.318 413,488.1902,-177.08127,237.43152,420.93405,4.318 413,41.41558,246.86566,21.234638,29.657715,4.304 413,525.9673,-35.516174,28.740295,77.035225,4.299 413,451.04416,-17.116238,17.724823,38.73198,4.28 413,111.11222,245.45952,26.782127,40.368576,4.272 413,530.25824,-17.849539,18.27124,42.462925,4.269 413,475.10687,-17.231747,17.589111,38.790688,4.254 413,195.52512,217.4058,41.952225,70.0099,4.25 413,489.14417,273.63773,34.84497,54.4028,4.229 413,362.50623,-19.343014,18.253662,40.61076,4.221 413,80.74156,221.79971,21.238647,36.893005,4.18 413,119.40445,250.7809,25.461624,39.98207,4.178 413,-10.120263,137.23071,39.339046,101.844376,4.164 413,50.836983,233.55376,18.341316,27.426193,4.153 413,281.1261,43.780502,30.570038,72.85521,4.143 413,359.16016,174.68047,66.8808,110.42787,4.14 413,57.54778,254.05013,23.131176,35.176956,4.14 413,-15.161932,153.73279,50.14895,139.1466,4.124 413,98.77733,-10.698868,16.680443,32.333366,4.123 413,10.631175,-16.767656,17.540306,40.204582,4.113 414,-5.445117,-15.704892,17.487696,42.058834,8.77 414,428.3592,174.6825,67.254395,124.38602,8.64 414,-10.637276,-32.407375,29.153713,73.68248,7.263 414,108.10589,-0.49783325,16.992683,28.571728,6.141 414,-18.578032,-63.603485,56.935074,145.66846,6.118 414,627.1286,-17.644194,16.956482,48.38827,6.117 414,-4.9128556,2.5447845,17.669216,43.260365,6.106 414,-11.79152,478.43774,30.01315,63.4209,6.001 414,9.880093,-29.079311,60.003475,131.73473,5.872 414,-6.2773724,489.46854,19.426111,41.58737,5.828 414,622.43475,-33.205658,26.336731,78.523544,5.707 414,621.87415,476.65555,28.691101,68.59628,5.624 414,99.78039,-0.8112898,17.646858,30.256248,5.357 414,2.680354,-13.602234,16.699417,39.36419,5.346 414,450.4938,239.93747,32.97223,75.72687,5.162 414,-3.6345985,28.700815,15.6305685,42.37359,5.126 414,536.6771,310.51935,142.94995,342.27673,5.068 414,-72.42057,265.98138,201.31161,462.27863,5.047 414,470.68127,137.82602,63.265198,129.57388,4.973 414,80.546295,259.3655,24.680847,40.08548,4.96 414,-21.655645,404.0191,79.26762,173.37604,4.946 414,582.8745,412.25427,71.88916,176.04565,4.935 414,120.79538,137.35849,33.540924,66.12399,4.895 414,602.88934,-55.45956,53.040955,136.93488,4.844 414,408.8831,188.67386,60.130524,126.27539,4.807 414,319.73877,13.627262,32.294464,73.99626,4.767 414,557.9137,226.84822,34.082275,62.98314,4.742 414,90.5358,-14.318266,17.514694,35.839558,4.673 414,68.72028,257.8197,31.249565,52.637848,4.621 414,-36.86645,-133.1693,117.80623,284.3882,4.579 414,3.823378,241.94154,15.997347,30.48613,4.573 414,420.73148,194.6944,29.973602,80.07706,4.556 414,410.64148,220.36194,33.07605,71.72937,4.554 414,570.8837,0.9945221,53.961365,130.49185,4.543 414,585.1,-97.062325,76.01526,227.67245,4.475 414,494.10974,228.56354,237.3899,512.3131,4.469 414,-15.982685,153.88976,50.70494,140.20369,4.463 414,-10.041503,135.78659,39.795685,102.37721,4.455 414,-72.21564,-187.67911,213.55103,455.73975,4.443 414,620.22705,-16.280924,16.29303,43.834805,4.432 414,111.85745,218.97797,23.754868,40.88498,4.391 414,488.47723,-179.23552,237.68604,423.6561,4.381 414,65.05874,263.564,23.335732,35.757233,4.373 414,85.89268,-31.244192,28.747429,66.453415,4.343 414,125.069855,1.7678652,15.449127,27.453571,4.324 414,260.1685,219.03047,40.54239,76.465744,4.265 414,116.69353,0.63199806,15.565338,28.754238,4.247 414,522.8215,128.57816,34.82135,60.150787,4.245 414,557.91235,135.06033,38.09912,70.77768,4.23 414,502.88956,127.54545,65.78989,123.93612,4.23 414,295.29156,-35.852364,27.795288,76.045525,4.201 414,2.3014843,38.76658,17.47975,46.06304,4.185 414,82.65911,-15.2008705,18.041145,37.290516,4.157 414,66.085846,480.25732,34.94764,61.189514,4.15 414,501.25626,-6.4231625,30.783417,57.316444,4.089 414,290.11728,207.73299,19.918884,35.345993,4.069 414,537.5321,-2.3541565,61.645508,102.85732,4.055 414,548.32196,144.18918,33.695923,71.40323,4.028 414,553.4606,300.49097,33.23236,65.19208,4.013 414,566.9663,115.610245,61.05304,125.484955,3.995 414,73.40736,258.4318,21.85083,31.740784,3.965 414,154.89565,-14.321625,16.48587,35.09384,3.957 414,245.39697,238.3275,32.238495,64.574875,3.951 414,2.1724744,4.421343,18.74049,43.9318,3.947 414,42.245453,-25.446686,59.19906,124.4062,3.939 414,529.91113,-1.2760315,20.379272,34.368114,3.929 414,164.52435,130.19412,32.700546,74.318726,3.91 414,521.808,0.36743355,19.74707,32.935005,3.906 414,34.533516,222.83109,19.42936,29.68303,3.889 414,94.90526,258.06027,24.753952,40.460632,3.876 414,282.31488,-17.255096,17.36383,38.80816,3.859 414,119.742676,130.53908,27.349426,44.413986,3.831 414,-7.8210855,21.966434,24.963648,69.18323,3.827 415,-5.7230005,-17.839294,18.811188,45.157993,8.066 415,186.8519,219.23643,17.63794,23.190628,7.466 415,626.4182,488.32367,20.447144,45.894775,6.551 415,-10.525428,-31.978518,29.269985,72.54816,6.386 415,-11.506009,479.5751,29.76585,61.732086,6.295 415,-0.3324473,176.47249,25.146957,74.360886,6.206 415,-6.0767403,489.53107,18.932571,41.391785,6.084 415,269.5351,0.21556854,15.971313,31.16958,5.916 415,241.06415,249.061,22.278595,32.539978,5.888 415,180.51883,222.47395,18.206451,24.032425,5.874 415,8.953993,-25.130764,60.471558,126.61363,5.76 415,194.57475,223.15889,17.325089,24.983063,5.752 415,626.80975,-19.67083,17.723816,49.722473,5.67 415,2.2333264,-16.907196,19.091568,43.676537,5.596 415,622.9784,-33.651474,26.291382,75.43391,5.581 415,233.17126,252.71228,34.83676,51.93097,5.497 415,203.09204,222.04669,16.687805,26.21994,5.433 415,94.3421,8.216341,30.732506,59.27295,5.429 415,612.3852,456.53018,39.646667,104.36185,5.409 415,-18.021801,-64.02939,57.302532,141.28305,5.397 415,16.988617,181.77081,21.28519,52.218063,5.284 415,226.34796,250.67024,20.584747,29.123093,5.281 415,36.802307,-1.8527012,29.076965,49.074944,5.248 415,603.37085,-57.048466,52.290527,136.97006,5.042 415,582.8733,413.789,71.76849,174.30597,5.04 415,280.85272,273.95435,23.314087,32.0802,5.038 415,277.1623,1.1284018,16.158905,31.351406,4.985 415,218.89136,249.6733,19.893188,28.641312,4.959 415,536.0971,310.1175,143.88898,341.51324,4.955 415,-4.8141904,183.48053,17.813784,46.461502,4.954 415,-21.319086,404.0832,79.02043,173.66638,4.88 415,-73.13675,266.12823,201.0353,463.0622,4.857 415,-6.0753593,-1.6142769,20.857414,47.31759,4.824 415,4.6302176,168.83475,30.37529,67.63339,4.805 415,496.22925,-11.54216,34.47455,62.526688,4.779 415,-0.35754323,-6.836029,28.34859,68.4426,4.737 415,300.61703,4.5230865,16.437561,26.458408,4.718 415,-40.665405,367.37756,111.10111,275.97742,4.7 415,284.75986,2.587883,16.625824,28.991772,4.658 415,257.0912,245.71582,22.305511,36.61328,4.563 415,490.3175,-181.21674,236.36285,426.53253,4.559 415,264.7459,220.1655,22.46228,37.595917,4.543 415,494.04388,227.76654,237.47467,514.1855,4.536 415,234.9861,245.39735,18.756897,26.508316,4.507 415,-37.12141,-130.94537,117.49278,281.75507,4.498 415,251.70941,-0.08139801,16.692139,32.30008,4.497 415,188.53294,235.98544,15.772156,24.217499,4.474 415,-70.65787,-186.33087,212.60242,453.49805,4.465 415,260.53683,-0.29764366,16.180817,32.155956,4.439 415,148.32501,-0.36611176,18.489243,32.283585,4.418 415,585.60974,-101.9559,76.2652,235.69055,4.402 415,458.97247,200.31778,18.033447,28.727203,4.394 415,8.959469,-17.75558,20.31604,44.23275,4.368 415,140.02155,0.26251698,18.292831,30.984982,4.357 415,445.79822,197.85608,15.306244,29.88379,4.352 415,171.81482,218.321,16.523834,22.663055,4.33 415,124.00669,2.513342,17.668709,30.097841,4.297 415,131.92589,1.3382607,17.541565,30.829697,4.292 415,431.85764,223.10454,46.07083,77.60579,4.264 415,82.50951,209.94713,34.5997,49.510483,4.237 415,107.24101,3.5719948,18.485657,32.040455,4.217 415,483.14948,-3.9476433,35.790222,62.002815,4.196 415,24.84421,184.20464,21.41728,46.259018,4.182 415,17.07996,-12.790274,36.78627,61.347412,4.181 415,441.85156,248.52081,40.958862,63.82141,4.17 415,155.66286,0.43646908,18.470688,31.134018,4.165 415,292.8834,4.204816,16.023987,27.495594,4.162 415,163.84879,215.90439,16.61174,25.265411,4.148 415,243.2178,-0.6309223,17.597992,34.558838,4.135 415,4.919591,-34.13184,30.386272,77.5793,4.129 415,115.56533,3.0897865,17.441383,31.393627,4.128 415,257.7508,127.89848,23.454803,34.705475,4.076 415,486.4928,-32.611298,29.355347,74.232376,4.065 415,265.90433,134.63445,22.703522,43.098724,4.058 415,618.0383,490.19873,20.981628,42.446777,4.052 415,513.0372,173.00748,31.384094,67.453,4.048 415,214.4018,-32.98062,28.964539,69.709885,4.046 415,259.9499,-12.6343155,15.099457,32.639614,4.031 415,219.08545,-12.07415,33.183807,62.40502,4.02 415,68.66028,73.2659,32.499985,61.836426,4.02 415,172.41742,1.6590223,17.319855,28.665157,4.015 415,204.23923,240.21532,16.19986,24.069809,4.006 415,509.27048,-32.57599,29.571869,72.0967,4.002 415,611.3646,209.99365,36.71765,129.18451,3.999 415,234.44426,-1.3714676,19.875443,35.607548,3.995 415,250.93301,234.9949,18.86441,28.765259,3.992 415,227.7088,236.5432,17.185776,25.89531,3.989 415,216.6702,260.75333,36.97606,51.029266,3.973 415,1.8651026,490.22592,19.9427,40.470917,3.966 415,271.66702,113.44222,25.455444,43.401253,3.949 415,188.61493,-0.45316982,17.01413,29.193031,3.943 415,251.39911,-13.689247,15.353577,33.882553,3.94 415,268.65118,-13.339708,14.8836975,33.311855,3.925 416,260.57202,211.87195,31.68634,52.72003,9.121 416,-5.45027,-17.313335,18.139788,45.894478,7.452 416,-10.417031,-33.267967,29.845387,78.707016,7.207 416,476.39917,235.8406,14.988922,23.336212,6.756 416,258.65237,209.56334,21.904083,33.5383,6.695 416,-6.30355,490.2521,19.110126,41.726593,6.681 416,-12.528691,480.7744,31.336159,59.457153,6.579 416,626.4707,488.00415,20.514465,46.183228,6.306 416,307.55542,7.793949,33.21411,66.71321,6.286 416,278.6196,207.33911,24.289062,43.58928,6.256 416,139.20264,2.4237556,19.032166,30.241592,6.073 416,514.7785,269.54184,34.62903,55.512238,5.989 416,123.78472,-0.3078785,18.709267,31.94274,5.948 416,588.58606,2.7651796,16.809326,28.03621,5.768 416,227.82729,196.58496,15.148193,24.434662,5.73 416,580.6183,2.780735,17.098083,29.419373,5.669 416,220.62889,195.15375,15.728455,25.189728,5.653 416,267.3626,-1.1432533,19.766266,34.389263,5.65 416,322.81955,6.976528,32.762238,72.33646,5.622 416,89.80691,-1.7638063,20.445473,35.463043,5.596 416,612.5325,456.55298,39.490723,104.79028,5.501 416,627.40686,-16.656609,16.843994,45.517365,5.385 416,10.549688,-25.389065,58.66514,130.96088,5.382 416,-17.926184,-62.903324,56.453384,145.6277,5.292 416,245.85751,214.78745,34.606537,53.354095,5.256 416,-1.1541927,6.624569,27.931273,68.543396,5.245 416,219.48566,182.89696,17.117493,25.444214,5.223 416,556.1616,1.6926708,17.880005,30.447412,5.181 416,571.9314,2.3342142,17.911316,29.901203,5.169 416,602.8525,-55.62861,53.128906,140.34827,5.169 416,132.05432,1.3883028,17.963242,31.249245,5.164 416,521.1511,268.0105,22.404114,28.458801,5.164 416,444.3069,232.07747,15.891205,23.647552,5.123 416,460.6095,231.87384,15.363373,23.342422,5.123 416,483.64844,230.93678,15.4296875,25.857773,5.112 416,115.19458,-1.8044481,19.294342,34.427948,5.089 416,299.15106,-25.670471,57.385864,122.94317,5.073 416,283.3443,-3.1061468,20.13556,35.08317,5.072 416,576.6242,83.33735,52.0506,135.11954,5.064 416,582.73364,413.22418,72.408936,175.06305,5.049 416,540.2595,0.9206257,17.68457,31.130384,5.005 416,596.55347,3.265975,15.835266,27.391228,4.991 416,536.4878,310.83032,143.34045,335.864,4.956 416,305.52478,204.35533,19.647095,38.088455,4.955 416,-5.0092945,1.4703922,18.972736,47.40561,4.938 416,499.1054,228.94232,16.697998,27.079346,4.935 416,-73.37329,265.23346,200.89987,461.40643,4.926 416,469.42386,235.61418,14.738281,22.670944,4.919 416,-21.558842,402.21002,78.94719,174.83832,4.919 416,275.78836,-2.7027664,19.594635,35.49525,4.905 416,543.2056,266.1054,23.937256,39.555725,4.888 416,146.6585,1.63274,19.590988,30.91951,4.886 416,283.20874,199.08939,32.489075,53.98506,4.886 416,451.8768,232.02725,15.79071,23.351318,4.856 416,428.48853,0.3806858,17.457458,30.167696,4.841 416,265.91937,205.4171,21.292969,32.80562,4.836 416,74.703896,-2.8555498,19.958809,35.92755,4.832 416,311.01483,2.3070812,24.583344,43.101936,4.817 416,563.6608,1.7855873,18.036621,31.239388,4.791 416,492.6187,230.66896,15.816223,24.884811,4.76 416,460.24844,0.0983448,18.214142,29.67934,4.757 416,2.2803485,-17.137936,18.043768,46.476284,4.743 416,622.7535,-32.888874,26.72229,76.02691,4.741 416,154.13237,-0.4908247,20.62378,31.183441,4.716 416,106.60549,-2.4308672,20.313797,35.754333,4.715 416,-35.979088,-131.32245,117.442024,281.43402,4.705 416,217.65042,35.906387,23.762512,36.521698,4.694 416,511.78748,271.1661,24.86438,34.073273,4.671 416,211.70209,187.24059,17.928528,28.10933,4.662 416,523.1246,0.6273613,18.84674,33.65572,4.651 416,613.89276,34.103703,27.71405,75.576324,4.641 416,458.34964,-29.90399,58.567963,122.61814,4.636 416,530.36926,263.2747,33.35486,54.348877,4.613 416,415.5267,229.57503,21.330963,30.269424,4.598 416,533.4423,-182.9294,147.70807,426.1546,4.585 416,297.93668,198.17273,21.655487,38.147964,4.58 416,585.76215,-101.888756,75.61536,238.12222,4.579 416,557.26337,-0.62288857,29.534424,55.278313,4.564 416,142.23306,-31.057178,28.520737,65.42442,4.554 416,539.7745,-12.823018,15.752197,33.35157,4.551 416,548.46,1.4760704,17.145813,30.705383,4.545 416,553.09216,233.72649,20.863892,38.582504,4.543 416,475.78748,-2.0850363,19.727661,34.331688,4.537 416,-71.61795,-188.82205,212.85974,455.9353,4.534 416,154.41057,-14.521868,17.74794,34.5455,4.527 416,139.24861,-11.868662,16.43863,33.24108,4.525 416,426.14337,-28.90118,58.456512,122.1376,4.521 416,476.55518,-10.49604,56.76654,115.624565,4.52 416,382.05316,17.42477,30.671783,67.132996,4.515 416,226.87401,224.52962,19.833939,29.01477,4.51 416,242.19556,317.98,34.586243,56.829437,4.506 416,123.44197,-13.378671,16.58638,34.031654,4.5 416,273.2475,203.89691,22.277557,35.549652,4.497 416,505.96082,268.30075,21.441406,27.000366,4.492 416,146.64836,-12.235936,17.279846,33.302277,4.48 416,494.5652,229.08252,236.87732,510.64197,4.47 416,131.67365,-11.799074,16.12326,33.25366,4.451 416,379.3546,-0.6294136,19.8927,32.554733,4.431 416,226.72151,183.9425,15.934509,24.265717,4.425 416,106.58627,-15.101098,17.675926,35.61531,4.41 416,327.08722,-0.18162918,25.302368,50.549885,4.404 417,-5.2290273,-16.912369,17.600115,42.260044,8.487 417,-11.017547,-30.440788,29.352402,68.8186,6.947 417,0.2819085,155.5227,21.084055,55.523773,6.884 417,626.8237,488.23123,20.04602,45.012787,6.563 417,622.47034,-33.91567,27.048462,76.89005,6.365 417,627.0798,-18.353287,17.626709,47.194378,6.318 417,396.37466,-10.842236,15.124725,32.160637,6.236 417,-6.130987,489.049,19.04552,42.689453,6.111 417,-11.911305,478.84875,30.184093,62.87146,6.069 417,-5.2743187,22.475826,18.585133,47.58678,5.81 417,612.9296,454.9034,39.408875,106.61276,5.679 417,379.0324,-16.36914,16.979889,38.633385,5.554 417,3.122315,-14.726983,16.600487,37.883152,5.519 417,540.5866,4.091958,16.728577,29.080738,5.515 417,387.7676,-12.777848,15.643463,34.504494,5.497 417,556.7353,6.192011,15.539856,27.095861,5.466 417,548.7222,5.9731236,15.886414,28.400259,5.395 417,9.713175,-21.15971,60.169273,123.44122,5.386 417,162.20425,-6.1761894,35.50354,66.147385,5.287 417,571.3339,-11.863634,15.954651,32.54467,5.261 417,556.30634,-8.715909,14.733948,31.489243,5.223 417,-20.348137,-87.39356,72.45364,197.87242,5.206 417,571.6801,4.0509396,17.496887,28.562922,5.182 417,-4.9859457,3.336769,17.6862,41.77397,5.077 417,583.40564,411.47678,71.364746,176.3508,5.045 417,-73.36063,266.02124,201.3787,461.30017,5.036 417,540.0459,-10.808134,15.216736,32.678978,5.006 417,564.01514,5.40051,16.112915,27.923676,4.977 417,489.1927,-179.98802,236.27496,426.30914,4.959 417,602.75793,-55.642918,53.257385,138.85847,4.953 417,68.746635,-33.322952,29.932457,66.943825,4.924 417,-21.659092,402.40833,79.46365,175.30713,4.917 417,-71.88538,-189.91965,213.65561,457.38336,4.869 417,585.5928,-100.69396,75.881226,234.26898,4.867 417,404.29733,-10.724992,15.028503,31.83208,4.86 417,-35.989384,-130.43097,117.65378,277.31372,4.86 417,563.6197,-9.40888,15.392212,31.491566,4.849 417,507.0072,-1.3984356,19.795532,35.548782,4.824 417,25.971485,-5.0778036,20.728786,35.067944,4.78 417,523.27997,0.86984825,17.763672,32.82817,4.753 417,178.19934,-6.913864,35.185028,62.831726,4.749 417,548.4181,-8.8947115,14.704956,31.75695,4.716 417,536.60657,310.84528,142.5708,342.0418,4.693 417,432.5915,273.6404,23.284973,35.670807,4.645 417,139.33041,-2.479538,33.495728,64.72293,4.621 417,186.36862,206.25082,22.276642,46.549194,4.607 417,449.01508,273.6822,22.400269,35.840027,4.538 417,-9.934019,11.298698,29.144888,71.08505,4.508 417,523.0374,-13.258978,16.258911,35.161568,4.503 417,75.683846,-17.4716,32.792107,62.10094,4.442 417,153.29709,-18.597721,20.12912,40.849293,4.424 417,1.7796195,490.4136,20.1269,41.04904,4.389 417,493.79,227.74896,238.10709,515.66943,4.33 417,157.2098,-32.44865,29.889816,69.754524,4.327 417,531.78455,-11.481619,15.6901245,33.062344,4.306 417,172.15991,-32.5227,30.728485,68.25226,4.298 417,579.83185,2.3040085,18.062805,30.009441,4.29 417,517.0154,41.651104,31.973328,72.780426,4.267 417,619.27625,-18.111954,17.779175,43.678375,4.251 417,146.68333,117.91098,35.50206,63.246124,4.229 417,113.74095,-10.735218,45.535538,78.1575,4.227 417,81.77853,299.35226,20.744362,32.812378,4.225 417,41.162674,-26.797878,61.365494,118.04582,4.211 417,458.20477,-0.77646065,21.040527,37.782127,4.21 417,-6.320306,215.62314,19.561352,39.650726,4.187 417,90.5771,306.57047,19.610626,32.313293,4.174 417,1.1429477,6.551878,20.07668,39.07537,4.161 417,169.73251,-30.151203,61.066116,117.32712,4.16 417,73.31533,-29.555819,61.074623,119.49836,4.159 417,579.58655,-12.225996,16.1734,32.58477,4.154 417,-5.7056713,357.75763,18.358803,42.23593,4.146 417,18.474424,-15.730907,17.958979,35.810253,4.135 417,-5.867462,43.044167,20.375853,49.788963,4.13 417,532.1317,2.5056162,16.949402,31.465504,4.129 417,136.73766,-25.618408,60.79042,113.56527,4.123 417,2.5889874,21.706097,32.710213,69.614624,4.116 417,515.28467,-0.6013737,18.370178,35.052513,4.111 417,0.8225024,213.08743,22.31018,39.19255,4.098 417,370.40887,-17.714733,18.471558,40.42911,4.096 417,354.09094,-18.346447,19.673767,41.65716,4.068 417,-6.074709,231.75003,18.579372,39.69113,4.049 417,119.074135,14.15435,35.28971,70.913704,4.041 417,140.84068,-32.892864,30.587662,74.04952,4.02 417,106.290825,-16.95707,18.242218,39.885536,4.003 417,10.006022,-15.295927,17.542137,36.360962,3.988 417,-3.5362196,188.01883,31.349339,66.12836,3.987 417,220.1084,163.03116,31.19223,63.1651,3.97 417,194.41415,-17.48953,34.072495,62.439102,3.964 417,474.80206,-3.3681622,21.417969,39.596092,3.957 417,45.114285,-32.43843,30.007076,65.75783,3.948 417,477.03873,-7.0284348,55.168427,120.24887,3.945 417,411.4194,-12.056649,15.848907,34.122776,3.931 417,57.853054,-19.445435,19.51601,40.71538,3.927 417,73.45958,-7.114641,22.97525,38.36567,3.924 417,437.87427,142.97835,31.869324,66.517334,3.909 417,411.9667,2.8859005,17.032776,28.855541,3.906 417,241.71732,-12.930767,45.966217,81.26868,3.903 417,587.90894,1.5717907,18.711182,30.536615,3.901 417,515.2593,-13.496329,16.563904,35.54952,3.881 417,442.14297,97.07033,34.204987,66.85745,3.851 417,483.54007,92.210724,34.435333,61.235443,3.846 417,-6.271678,70.95812,20.782785,46.538246,3.844 417,137.36812,-18.360817,19.809616,43.118637,3.839 417,362.13742,-19.520622,19.718079,42.01915,3.837 417,460.58862,0.16532707,30.966522,58.43683,3.816 417,502.49908,-32.517292,28.554932,69.27553,3.801 418,60.867657,141.18372,28.874226,66.26581,9.469 418,37.357162,140.3274,30.60189,80.4093,8.399 418,-5.377058,-17.435925,18.058638,44.830498,8.042 418,-10.620622,-32.43499,29.706532,76.50056,7.644 418,36.91753,7.6309814,32.43162,77.34406,7.027 418,145.58429,176.08183,39.169876,66.71443,6.863 418,53.75092,1.4972801,27.664677,64.74315,6.458 418,19.503763,-6.634035,32.14508,62.972855,6.401 418,-2.1224809,-16.554235,29.143805,71.86753,6.296 418,626.65015,488.21884,20.343567,46.01761,6.261 418,136.39429,159.18344,38.45883,63.48233,6.196 418,622.6836,-33.762825,26.885498,75.63766,6.189 418,77.68378,145.64369,29.293068,60.062103,6.085 418,90.59632,2.3144789,19.213394,31.850918,5.997 418,121.24622,153.25882,36.727882,67.91135,5.98 418,-11.818881,477.5961,29.776356,64.46762,5.963 418,627.10785,-18.38885,17.930542,46.546795,5.949 418,-6.1738396,488.25757,19.335526,43.128357,5.846 418,2.4175346,-15.832866,18.210546,43.089497,5.828 418,27.823782,156.88559,32.819565,72.927185,5.814 418,-5.0119343,73.86305,16.778856,40.99121,5.714 418,-4.793343,36.384377,17.729616,43.308052,5.709 418,14.270091,119.40546,54.197903,110.94806,5.704 418,-4.5162926,57.528343,16.91187,40.010315,5.624 418,71.96994,150.30768,21.117256,42.171814,5.557 418,-4.633084,90.8915,17.078398,40.970802,5.547 418,612.82935,455.2525,39.196777,106.98132,5.493 418,56.346268,143.58852,22.416779,50.961823,5.489 418,585.4882,-97.472664,75.26099,231.91965,5.377 418,498.6728,-5.7143,34.17578,63.481308,5.369 418,488.7526,-180.5302,236.67697,429.31,5.265 418,619.0371,-17.993803,18.025146,43.13063,5.232 418,35.75528,-12.468143,33.412895,63.332047,5.228 418,602.43945,-56.28195,53.52765,136.62605,5.21 418,-16.911919,-61.215458,55.335426,141.42267,5.17 418,98.60298,-1.112956,19.271889,33.343212,5.142 418,219.18237,-2.8202972,18.931488,32.210686,5.108 418,-73.11673,265.80396,200.81174,461.09875,5.054 418,614.8424,124.944824,26.562683,83.421234,5.028 418,98.76298,147.29453,33.609673,60.448395,5.024 418,521.6961,11.9509735,37.764404,64.912796,5.017 418,292.6839,197.86887,29.225311,77.94107,4.995 418,583.21436,411.8751,71.51697,176.064,4.984 418,42.291813,-1.9944801,21.274662,40.090305,4.974 418,47.188965,136.63487,22.1167,55.423523,4.965 418,109.38618,154.68015,33.461784,70.54642,4.927 418,163.0657,148.93703,34.207886,60.017838,4.898 418,202.90033,-4.5502605,21.26062,37.432007,4.876 418,83.44314,2.1921482,18.779106,32.90898,4.874 418,-21.626701,402.85956,79.02028,174.97571,4.872 418,12.75146,-8.634537,56.49934,120.546295,4.869 418,83.97673,133.81049,39.52294,74.97618,4.867 418,187.28677,162.43295,34.29738,57.928802,4.813 418,203.69348,-13.570795,30.769257,56.409866,4.788 418,537.5829,11.689571,36.21289,65.687195,4.785 418,9.452326,-17.522257,19.286709,42.692657,4.764 418,536.49084,311.23022,143.01385,341.29492,4.728 418,505.47052,-18.918602,19.4906,41.588387,4.663 418,571.2933,-14.581903,32.86377,64.92033,4.649 418,-37.455605,-131.25879,118.79513,287.56354,4.629 418,244.19461,139.79253,33.774933,57.794083,4.618 418,586.20386,-17.151726,18.501831,41.187416,4.614 418,200.31334,87.68781,39.58217,60.094093,4.612 418,259.40097,199.29611,31.62738,65.08438,4.607 418,495.7095,16.623192,37.855255,67.099,4.604 418,577.3794,-2.9389877,21.80243,39.91132,4.572 418,74.28135,6.1544685,20.649986,40.449966,4.566 418,-71.79135,-190.27885,214.17102,456.70947,4.551 418,70.64821,322.5982,23.657455,28.813751,4.545 418,193.5567,141.56049,44.27771,83.33078,4.544 418,33.71838,-5.2023296,22.266804,40.71608,4.534 418,523.73,-20.049778,34.192017,65.759796,4.509 418,149.65585,161.31575,27.279175,44.28299,4.503 418,488.857,-24.40121,61.720154,120.770386,4.501 418,23.295841,175.32242,24.54853,43.876724,4.493 419,311.0108,143.45256,28.704468,76.808395,12.066 419,-5.3073883,-17.772438,18.146141,43.019592,7.828 419,391.1955,328.66144,22.64563,30.921753,7.64 419,495.47693,2.3466682,30.56842,80.29524,7.342 419,516.4652,150.57118,32.679077,71.75888,7.236 419,289.31726,82.14044,34.623047,67.96564,7.067 419,626.57434,488.37317,20.225708,46.097046,6.957 419,-4.822136,41.79593,18.334045,45.796005,6.735 419,385.17633,332.5328,22.133698,34.545563,6.628 419,293.2773,73.97255,27.27243,44.249886,6.571 419,627.178,-18.470291,17.899902,46.76003,6.543 419,244.54338,146.88527,32.04988,69.89998,6.536 419,622.59204,-33.568233,26.967285,74.6471,6.447 419,137.47652,25.327333,38.69864,59.265152,6.365 419,-10.442207,-32.23546,28.951632,71.08424,6.18 419,549.31964,144.01462,28.116333,63.547455,6.026 419,134.05832,-32.709908,28.658386,66.30549,5.963 419,429.12622,5.0588064,14.970581,25.736576,5.95 419,311.3528,84.64161,23.712433,39.53203,5.934 419,0.05709529,31.572979,27.191303,71.49562,5.91 419,554.21027,147.77359,19.083557,39.952164,5.909 419,467.5491,86.24774,29.8862,71.69273,5.893 419,5.1170444,49.189896,28.773981,78.076126,5.888 419,171.50412,17.888716,35.742294,61.22937,5.836 419,-17.936644,-63.891823,55.98974,144.74283,5.792 419,507.10666,5.4513855,31.207428,70.30723,5.785 419,-11.958734,477.96185,29.85157,63.09674,5.78 419,512.6493,-3.8445053,21.961975,44.188046,5.777 419,316.48517,169.2032,28.731232,71.79352,5.734 419,316.93817,198.04962,31.98523,63.1391,5.711 419,612.7882,456.63193,39.00653,104.44498,5.698 419,129.53766,-19.097473,20.147614,40.408108,5.647 419,169.7319,37.686604,34.288086,64.65819,5.644 419,137.28793,-19.993368,20.21289,41.40869,5.619 419,264.51645,4.1555557,24.20166,39.65049,5.619 419,-6.1249275,86.57841,19.389404,46.98017,5.556 419,256.0368,151.44836,23.011047,46.86418,5.544 419,-5.9724436,104.60226,19.63575,45.92585,5.509 419,470.1292,323.313,26.892517,41.529846,5.502 419,19.892395,111.84454,33.370697,68.94119,5.501 419,485.58414,7.6776276,30.086517,84.16601,5.493 419,120.778946,110.32793,34.304733,67.88449,5.487 419,549.69434,344.18,30.31549,62.25644,5.484 419,587.94446,26.583183,33.611816,66.8575,5.464 419,149.68214,-32.446705,29.494736,67.10232,5.451 419,-6.3061056,488.70142,19.188213,42.52484,5.386 419,6.4729414,110.37013,31.453472,74.04973,5.356 419,296.397,135.62758,22.505157,49.336075,5.346 419,618.7201,-19.075895,18.612549,44.09608,5.32 419,57.119453,168.49614,33.479378,74.86948,5.285 419,413.05966,3.616291,15.54361,26.79924,5.244 419,458.03174,96.04645,55.231323,102.82202,5.236 419,436.8949,4.827998,14.407532,26.734959,5.216 419,602.8632,-55.56611,53.28247,136.51494,5.205 419,1.2603092,110.52918,23.101786,50.047966,5.175 419,2.8664474,-16.761408,17.590958,40.55963,5.168 419,293.95483,147.82724,29.845703,59.113464,5.15 419,42.75962,168.13698,34.15663,72.490555,5.13 419,301.56995,125.45444,32.07318,77.06833,5.091 419,302.83072,69.423645,25.19577,39.97547,5.065 419,-73.69913,265.8345,201.17387,461.55807,5.064 419,399.71143,329.82135,23.563354,30.13565,5.059 419,532.77637,148.78728,30.771729,75.289764,5.044 419,526.2613,143.10448,23.218384,52.889664,5.036 419,273.95416,56.659676,35.602997,53.83384,5.02 419,-72.638535,-190.13884,214.59102,456.98737,5.018 419,570.6631,147.70361,19.2453,34.71579,5.016 419,444.91275,4.1823235,14.823639,26.225449,4.995 419,257.57898,146.36398,43.006104,87.86305,4.988 419,-21.768269,402.7062,79.480865,175.17282,4.973 419,479.42133,143.66411,37.488342,69.95915,4.971 419,121.32527,-20.095894,20.384857,40.58392,4.965 419,476.54938,-1.7918282,56.116577,129.26498,4.948 419,583.23065,412.0022,71.65924,176.70801,4.947 419,19.61536,48.554302,30.118183,71.95392,4.929 419,154.60034,-1.4544144,58.973145,112.97768,4.922 419,467.92914,16.129711,31.117188,87.543274,4.886 419,487.72083,-179.45438,237.89081,427.5192,4.875 419,300.41855,140.18546,49.49356,106.74359,4.859 419,396.2907,-0.16342545,17.793304,31.273922,4.858 420,-4.527821,-16.211878,16.25227,41.090183,9.05 420,480.96585,62.44557,23.154755,59.1015,7.558 420,622.0656,477.12708,28.49585,67.528625,6.64 420,-12.124205,478.62042,30.779524,62.693787,6.624 420,-3.4765725,6.235718,14.995508,35.479435,6.587 420,4.1445613,-11.773016,15.035337,35.10718,6.549 420,4.777644,19.72776,16.127338,30.245644,6.529 420,-10.961363,-31.31731,29.539038,69.33401,6.419 420,545.1209,334.78595,21.496155,32.59964,6.238 420,622.5412,-33.479084,27.088928,74.01876,6.204 420,148.31543,169.72382,35.022705,59.086105,6.16 420,524.5185,-33.243427,29.968811,67.01752,6.141 420,-6.496645,488.98154,19.897669,42.67447,5.916 420,4.9330378,2.2297058,14.795947,30.227371,5.755 420,626.80963,-19.9052,18.17517,47.878178,5.602 420,602.42487,-58.156715,53.672913,139.73521,5.431 420,491.4505,55.85786,31.278503,64.483185,5.429 420,292.42285,197.84389,32.446045,70.88072,5.356 420,537.2105,-17.216349,20.262268,38.201447,5.261 420,509.7025,-32.24823,29.37622,69.14312,5.247 420,504.6704,66.26886,23.175049,48.188087,5.246 420,161.94374,176.23703,34.757935,57.185028,5.194 420,-74.21445,264.97034,202.40134,462.97913,5.165 420,488.92545,-180.46973,236.7294,429.21613,5.151 420,545.24896,167.77953,32.761536,74.41374,5.107 420,-18.22201,-61.786415,56.330284,143.92865,5.092 420,125.55802,188.89575,31.5234,72.282104,5.049 420,585.60645,-100.62819,75.694275,234.69583,5.024 420,482.02594,-18.310585,18.56717,41.772675,5.023 420,184.46532,205.49,23.826523,35.004074,5.018 420,11.486013,-12.325597,15.413288,34.600845,5.018 420,604.0705,435.4174,53.774475,137.93173,4.986 420,11.410921,26.690193,17.0309,32.814568,4.981 420,461.00986,57.738255,30.840668,68.82327,4.969 420,-21.697634,402.44128,79.51004,175.36029,4.939 420,486.45462,-32.927567,28.217377,69.56658,4.874 420,-37.18168,-129.73296,116.8777,283.90018,4.856 420,71.61933,169.77786,36.597824,62.224823,4.852 420,589.42993,105.841965,30.67981,73.92351,4.829 420,139.06085,185.56151,31.098724,69.06642,4.812 420,444.22662,47.111984,31.971954,63.372864,4.799 420,618.2992,-19.551327,18.888977,44.045464,4.76 420,536.5972,311.19788,142.75592,341.2787,4.729 420,-4.086976,27.047998,15.101418,34.969833,4.724 420,533.9884,88.19146,29.840271,63.633064,4.706 420,4.5635347,294.0148,15.148032,28.468903,4.681 420,178.0545,185.87228,35.022644,54.33107,4.607 420,574.8028,86.754486,51.102722,146.06964,4.59 420,317.46332,175.3143,33.531097,66.505005,4.59 420,12.092102,2.6651068,15.855249,29.564354,4.583 420,474.3407,-19.579302,18.384705,41.997234,4.578 420,276.8759,188.97513,15.6032715,35.127823,4.552 420,546.17426,-17.008152,19.583618,38.045704,4.536 420,-3.825215,289.66983,14.399548,32.448914,4.534 420,446.2169,-33.735996,28.680847,68.52075,4.522 420,12.465612,230.06569,15.84947,27.110275,4.469 420,617.8708,488.21298,21.677124,45.485992,4.462 420,521.54126,76.636696,22.760803,44.338036,4.443 420,541.4889,-32.856117,29.739807,66.66497,4.429 420,455.52765,56.750473,24.924652,43.32669,4.422 420,313.28342,120.28564,22.420624,46.767113,4.42 420,414.5171,113.10613,26.73413,62.12571,4.419 420,203.81708,179.19148,32.342987,59.302597,4.384 420,489.5465,-17.828705,18.536499,42.204887,4.381 420,529.32086,-15.478566,20.77246,37.478466,4.371 420,458.61353,-30.920921,58.7959,123.5149,4.365 420,458.3707,73.81813,21.253387,39.891678,4.361 420,594.92456,-47.086445,43.88867,100.795685,4.308 420,-4.0522346,222.64578,14.952467,33.021484,4.3 420,513.1989,74.57034,22.67035,46.368477,4.298 420,493.30743,226.30576,238.27466,515.2012,4.285 420,429.09534,-31.935192,29.603088,68.400505,4.275 420,573.2444,109.418335,29.485962,70.138916,4.272 420,3.5499148,303.3198,16.295713,31.90686,4.267 420,587.73584,226.40381,31.816956,70.19678,4.266 420,485.6508,66.75246,27.231232,77.86372,4.253 420,308.25787,102.671425,33.071594,72.206505,4.249 420,538.9991,340.88428,21.48944,30.251984,4.235 420,535.35266,0.3223343,23.036438,43.18862,4.2 420,304.3185,128.32382,22.869965,44.410767,4.164 420,250.10301,208.3186,19.329453,34.00206,4.144 420,365.25436,66.87961,29.422607,69.65683,4.113 420,13.310914,-6.8190804,55.517426,117.070435,4.109 420,-71.05394,-187.52231,211.18385,453.7877,4.097 420,36.339523,214.66612,34.160286,52.95015,4.095 420,92.67,183.35765,33.368904,65.10649,4.095 420,462.98434,-34.408203,27.91507,70.94277,4.081 421,54.80988,227.77524,40.530506,76.49002,86.241 421,20.56807,228.95903,32.151093,69.794815,61.948 421,219.81398,254.43285,17.548065,29.74385,21.642 421,243.88492,250.6151,16.956207,27.985031,15.075 421,267.2607,238.48897,18.966583,34.13463,14.364 421,7.096199,230.11153,39.108055,97.40727,14.219 421,35.28023,228.0803,31.573574,69.92403,14.038 421,2.499417,291.95404,26.336233,48.794952,13.939 421,261.63873,240.56335,16.818146,31.045166,12.057 421,347.79822,212.66553,33.982117,72.586975,10.984 421,273.2032,234.74165,20.591187,34.63405,10.013 421,351.06082,210.46509,26.062012,43.562393,9.709 421,69.43815,242.87791,36.053047,66.772415,9.068 421,368.3905,201.14424,35.397797,66.03935,8.769 421,252.22571,244.05438,15.867157,27.798584,8.365 421,213.8299,249.81387,16.829147,29.570618,8.126 421,195.51651,258.79108,18.751495,29.469635,7.765 421,491.32037,85.63498,18.519989,25.166779,7.761 421,203.59398,249.73665,16.859894,27.784683,7.216 421,498.375,84.93571,18.584473,26.059914,6.982 421,327.47815,211.28485,63.716583,123.895325,6.893 421,58.120235,244.74988,24.047726,55.497925,6.872 421,461.04007,22.17766,29.98169,63.675842,6.794 421,224.73344,249.92152,17.06215,28.398422,6.78 421,556.4241,-4.2156677,18.8125,33.11643,6.751 421,10.342932,253.82664,20.477003,47.874344,6.61 421,484.42786,84.09997,18.085724,27.255615,6.436 421,-12.377009,-40.496506,40.917492,101.68052,6.163 421,2.069931,256.292,30.039864,76.73688,6.135 421,-5.2296295,-16.541655,16.593624,42.12617,6.113 421,-4.179698,259.49612,16.115795,40.76767,6.029 421,627.3493,-16.07011,17.037354,44.566418,6.005 421,237.15654,250.51093,16.431747,27.633362,5.982 421,-6.0892477,489.91544,19.040867,41.036102,5.964 422,342.99,225.05139,41.499207,81.74298,93.812 422,319.37598,229.21005,34.147278,77.11279,73.762 422,271.43085,312.4018,23.518127,50.716064,19.272 422,329.80774,225.24934,37.929413,75.277176,10.135 422,530.56494,246.45609,16.921082,28.68164,10.078 422,508.7932,260.5874,15.2005005,23.685425,9.705 422,524.9312,240.85342,16.84436,32.702667,9.395 422,627.3513,-16.600998,17.03711,44.93286,8.222 422,515.42145,258.04544,14.767212,23.373993,8.192 422,490.30182,261.30682,16.378052,27.126709,7.924 422,538.0862,244.64725,17.669617,29.515198,7.905 422,-5.766735,-15.897873,18.283178,43.40384,7.479 422,4.6531653,225.5396,15.850605,37.073685,7.416 422,623.49243,-34.71061,26.036316,77.858154,6.986 422,-4.2787666,218.77774,16.190346,39.8721,6.968 422,459.42236,273.47125,19.578247,30.695618,6.839 422,596.16876,212.97168,43.976624,142.995,6.634 422,484.3304,263.8166,16.908417,27.114044,6.619 422,612.8059,455.0313,40.07794,106.3349,6.526 422,310.31512,225.19998,32.071533,65.33896,6.49 422,-10.927038,-33.643112,29.43918,77.13942,6.262 422,-5.9788995,489.22318,18.567274,41.814545,6.185 422,-11.845136,477.41742,29.77404,63.64746,6.181 422,10.61678,222.82913,18.162937,35.378387,5.995 422,602.8276,-53.841724,53.143005,135.04625,5.958 422,3.3421552,214.15247,18.28776,34.273865,5.938 422,626.3281,487.62457,21.130493,46.433838,5.815 422,516.7826,242.42401,16.334412,32.718628,5.791 422,249.61281,227.16188,22.724716,39.05513,5.762 422,264.73642,225.96323,23.494415,38.39798,5.735 422,544.4246,235.53197,20.854553,35.103195,5.722 422,417.2503,277.63235,23.101318,40.548157,5.692 422,209.2352,216.07666,22.044266,46.096893,5.556 422,606.9612,231.83708,32.19342,85.76247,5.525 422,261.61908,304.06018,38.893433,68.19537,5.443 422,499.69366,261.37558,16.200745,25.255371,5.433 422,-73.578255,265.4141,201.93195,462.24716,5.321 422,619.0366,214.12378,21.216553,50.580627,5.301 422,118.45836,230.8181,29.886353,70.00276,5.296 422,466.4748,263.0224,17.786224,27.265076,5.234 422,-20.264578,-84.13318,71.590385,191.46315,5.124 422,8.706669,304.52307,21.186834,32.404816,5.099 422,-36.90405,-121.51013,116.26396,269.51758,5.096 422,-13.65123,189.9236,47.340794,136.62321,5.074 422,536.30383,309.575,143.6828,340.50946,5.031 422,253.36877,223.61974,29.785034,57.62764,4.966 422,459.67902,262.98117,17.751984,27.079437,4.96 422,582.8428,413.52747,71.60858,174.59827,4.947 423,349.44492,214.03503,41.83362,93.19342,91.372 423,324.60254,226.88037,34.510986,82.197876,91.071 423,480.6906,271.8617,20.495026,34.731964,13.185 423,293.5829,214.91286,28.994202,67.4113,11.686 423,546.224,240.48471,18.457642,28.99289,11.152 423,439.48154,289.66003,20.813843,42.207886,9.861 423,552.4791,238.42918,19.851562,30.935196,9.458 423,540.9939,250.00099,15.443115,25.167343,9.348 423,524.0861,259.11664,15.887146,25.933228,8.486 423,547.2899,252.23753,18.062195,34.062088,8.213 423,-5.767399,-16.881086,17.579056,41.46627,7.462 423,-6.1579895,489.2787,18.590805,41.03711,6.936 423,531.826,253.87651,15.833069,23.802444,6.893 423,505.85272,264.39917,18.155823,29.935974,6.526 423,626.5647,488.47528,20.497314,45.396423,6.478 423,498.57684,263.48584,31.727112,60.13376,6.453 423,497.92874,269.3282,22.275604,36.944336,6.264 423,338.4451,225.95412,37.33377,80.071945,6.253 423,477.2905,272.97354,30.041016,53.368652,6.251 423,-13.161477,-39.031315,42.570446,98.00521,6.136 423,-11.510132,477.70395,29.202873,62.90384,6.098 423,627.4491,-17.377544,16.969238,45.657555,5.974 423,562.24384,245.44995,19.107666,36.04248,5.907 423,318.4421,215.76431,31.066223,69.42609,5.688 423,487.65378,276.48383,21.970734,36.212463,5.679 423,612.7819,456.25507,39.418396,105.35297,5.546 423,84.49574,276.22046,31.891113,62.738953,5.532 423,555.3088,251.6702,18.631409,37.0755,5.448 423,39.009872,214.92474,35.31372,66.168945,5.388 423,3.5640156,300.76376,29.625544,54.7782,5.298 423,623.47833,-34.65771,25.93695,74.69158,5.296 423,-20.349255,-84.793655,72.03784,194.37381,5.254 423,3.4154534,-16.971104,17.108315,40.337116,5.25 423,365.14252,221.9349,37.54785,76.9317,5.155 423,-21.65474,403.09082,79.440254,175.51892,5.124 423,-3.0184472,188.16441,14.673057,37.241913,5.119 423,583.15466,411.9315,71.88806,176.363,5.066 423,132.18497,282.15976,33.045105,45.87732,5.029 423,312.9632,236.92548,32.149414,67.7301,5.005 423,152.36446,290.4097,21.277954,29.366974,4.987 423,128.38379,298.01477,22.949966,29.007935,4.938 423,145.0658,296.16376,21.345673,27.437103,4.934 423,536.5888,310.7361,143.91583,338.38608,4.915 423,1.4371479,310.902,19.82147,39.46042,4.909 423,163.70563,210.04366,31.086563,68.05574,4.859 423,-37.134396,-123.21778,118.05095,270.1408,4.858 423,435.145,276.03143,38.561707,67.33386,4.856 424,171.19856,212.27838,56.71649,119.75476,96.998 424,126.805916,227.55212,49.82624,101.51276,86.531 424,599.72314,198.57594,35.778015,66.262924,15.692 424,410.24835,255.45975,18.16446,29.693298,11.95 424,396.26175,266.17084,16.835968,29.054535,10.373 424,403.23645,259.81406,17.706879,28.596191,8.15 424,408.4596,237.98506,23.115234,39.098984,7.53 424,118.90659,250.54984,34.67385,78.16437,7.079 424,626.87616,488.08243,20.283508,45.500824,6.906 424,-17.663599,-65.190636,55.457176,143.71533,6.711 424,343.33438,292.1585,22.43982,44.157745,6.608 424,388.09167,272.33405,31.29245,63.799896,6.378 424,-10.554233,-32.71631,29.585835,71.877975,6.365 424,151.30396,231.70969,34.39035,91.036194,6.279 424,164.29887,244.411,36.004684,89.73924,6.216 424,5.365896,170.02478,12.25654,29.571732,6.212 424,622.42426,-33.830494,27.615906,75.58237,6.155 424,-5.174994,-18.556124,17.864906,44.797966,6.145 424,190.03976,211.24333,64.75203,129.49257,6.13 424,372.20264,274.48264,29.299866,54.438232,5.979 424,410.1013,242.64876,30.140594,52.798325,5.927 424,-13.250023,477.425,31.95885,62.002014,5.878 424,-6.818528,489.1026,19.678946,43.12854,5.789 424,179.33533,212.15604,34.613724,56.869476,5.752 424,377.47662,275.87457,18.420258,30.92154,5.704 424,398.9137,223.2981,31.223389,64.43109,5.693 424,369.65515,279.4598,19.770264,37.393585,5.68 424,388.01025,269.07257,17.087585,29.105225,5.657 424,612.6899,455.4354,39.420715,106.47763,5.497 424,414.56943,247.71692,21.490631,32.839417,5.494 424,-17.110065,437.3293,55.19564,136.67715,5.472 424,206.6997,232.17607,36.14258,74.19722,5.354 424,602.4822,-57.98574,53.040283,133.43388,5.292 424,433.53653,242.32887,35.298492,65.50255,5.216 424,346.15448,288.1199,33.118256,58.173065,5.18 424,588.9969,197.72481,50.7218,173.0255,5.064 424,-41.246357,365.4449,112.055466,275.6176,5.042 424,397.22855,256.40207,28.75943,51.68634,5.025 424,583.4182,412.09042,71.05676,175.73557,5.009 424,79.893265,281.53644,25.831451,40.150055,4.979 424,535.5256,308.40692,144.18219,344.1214,4.94 424,594.4662,-46.733223,43.794434,96.923004,4.938 424,387.59644,204.63535,18.773773,29.604279,4.904 424,395.67786,247.8193,19.831024,34.619965,4.901 425,0.46661377,207.52386,48.02871,158.81274,80.886 425,529.7531,183.09915,41.416992,108.3898,15.106 425,177.63155,318.9038,32.367706,61.81537,12.551 425,283.3203,261.28772,18.467285,29.774597,12.052 425,289.35666,257.98422,19.188599,31.42633,9.913 425,276.5163,265.60425,17.628815,29.466522,8.516 425,223.30753,293.64297,22.644745,50.62213,8.385 425,250.17297,281.42273,20.118439,35.904633,8.297 425,610.6278,194.63817,20.10675,52.548553,7.875 425,-12.199772,480.0789,30.399055,60.964203,7.071 425,621.53296,474.69067,29.29889,68.76721,7.06 425,618.04364,-9.770357,21.834839,50.96457,6.874 425,621.114,-32.10399,27.072693,75.8423,6.722 425,295.28445,254.69473,20.761597,32.440857,6.718 425,-17.784502,-65.284805,56.163437,150.7532,6.376 425,-8.227402,267.56033,30.122662,80.72247,6.325 425,-6.440089,489.45377,19.013447,41.432587,6.318 425,-4.870896,207.87378,19.159275,46.330414,6.196 425,244.55164,280.6964,28.58252,58.684326,6.068 425,268.7279,268.4361,17.747803,29.652496,5.895 425,-9.094581,464.39413,38.0477,92.34128,5.676 425,614.94196,184.27303,23.325378,77.83476,5.668 425,602.0661,-57.531197,53.129333,133.47942,5.664 425,335.65125,227.218,37.212524,63.8524,5.574 425,525.456,-34.595963,29.499023,74.158775,5.556 425,593.8786,-45.938408,44.34552,95.77333,5.439 425,563.4242,192.51242,40.913696,97.10452,5.435 425,257.08102,276.1455,18.642212,30.937378,5.407 425,0.42240858,198.01898,26.754154,65.477295,5.388 425,342.29886,218.95251,25.395111,33.56343,5.373 425,-5.517382,-17.260296,17.14292,41.87282,5.335 425,457.48694,-20.613377,61.662292,128.51352,5.33 425,-9.025507,184.92268,27.834541,67.5524,5.249 425,401.19656,210.20966,20.342896,36.185165,5.223 425,346.22992,297.57104,24.48944,43.41864,5.208 425,549.5937,-34.03102,30.350708,75.47779,5.185 425,192.36697,314.30765,34.71866,68.41913,5.165 425,-5.004375,268.78836,19.495287,52.726532,5.146 425,583.8219,409.98495,70.59302,177.23154,5.055 425,-11.33925,-32.356857,29.553215,72.60816,5.006 425,-73.84243,265.18042,201.27261,461.5022,4.972 425,586.2713,205.61235,18.935364,41.849472,4.967 425,-4.3134527,188.88939,17.671608,41.40605,4.961 425,586.4739,-100.29961,74.03711,235.58893,4.939 425,31.191448,222.38367,23.602512,51.733643,4.937 425,6.554663,229.60286,70.659676,188.52464,4.925 425,212.8046,300.27664,31.59819,68.625275,4.925 425,577.7918,204.36441,21.176514,43.522064,4.92 425,9.422007,212.41037,36.582024,92.62439,4.881 425,260.4876,276.06122,30.09674,58.96866,4.863 425,112.7203,190.46982,22.301811,41.38002,4.861 425,-22.03048,401.8448,79.18492,176.2608,4.846 425,-6.9991407,206.78653,40.919884,112.605316,4.822 425,297.4052,241.41742,31.056244,52.331177,4.819 425,274.14038,276.8366,19.49289,33.96454,4.774 425,623.3523,176.44023,26.09845,77.41362,4.737 425,545.42896,-20.902136,21.201416,47.618225,4.731 425,536.3641,310.59766,143.30505,342.3037,4.717 425,586.70294,383.1526,33.44409,76.74228,4.696 426,212.36606,271.4419,18.507446,35.80014,15.446 426,193.30493,279.3625,22.032288,43.055298,11.707 426,97.148125,339.1964,35.739937,72.683044,10.866 426,217.6957,266.22,19.676758,34.57434,9.776 426,226.1141,262.7965,20.526825,35.82422,9.516 426,622.8264,-33.638206,27.023987,77.74058,7.841 426,468.59167,-34.13699,31.432678,74.06535,7.381 426,-6.2588587,488.66357,18.7446,43.724487,7.211 426,621.2617,475.282,29.95105,68.35367,7.1 426,-5.194816,-15.5670805,17.190073,41.391113,6.947 426,452.45374,-32.912567,30.24878,75.411415,6.804 426,109.56097,333.867,36.53054,68.9924,6.797 426,626.8696,-19.282227,18.102173,48.46793,6.416 426,156.3227,303.13776,30.579163,57.718903,6.323 426,541.45105,154.16748,28.944214,80.30348,6.319 426,602.51154,430.3366,58.11151,144.29486,5.863 426,-4.302649,103.70975,17.09364,45.99695,5.825 426,-9.2639475,462.29233,38.09778,95.588715,5.801 426,602.0663,-56.261204,53.32257,135.33273,5.737 426,-11.153349,-33.123672,30.210224,73.60147,5.674 426,-22.672977,397.4353,79.297104,178.79144,5.59 426,-17.235256,-63.470036,56.05243,142.12935,5.565 426,585.73126,-97.54328,74.94263,232.5857,5.465 426,187.34018,216.86453,33.29428,60.752655,5.418 426,-5.7121935,215.98683,17.95679,43.13939,5.348 426,472.1944,-23.426208,22.111206,46.959385,5.22 426,542.25494,94.697784,30.439392,102.26712,5.134 426,128.63025,239.42908,21.838196,34.243347,5.133 426,439.05258,-35.139507,28.87558,69.91977,5.025 426,618.0152,-18.536188,18.79309,46.442207,5.003 426,597.84174,-23.87463,39.648804,94.889145,4.963 426,-4.846424,182.59683,18.006744,46.808456,4.951 426,230.82405,240.11722,36.830826,57.558655,4.896 426,233.4955,268.23288,18.407288,33.533722,4.875 426,463.71454,-22.31023,22.231476,47.302284,4.856 426,617.297,485.9369,22.27716,46.93634,4.853 426,536.7803,311.588,142.54456,340.2495,4.802 426,194.75676,189.44948,20.735855,30.94455,4.742 426,163.89091,211.60837,35.319412,55.35495,4.74 426,201.82181,277.0887,19.139267,37.33551,4.695 426,448.37695,-4.5472775,27.187561,50.4672,4.62 426,412.25613,224.54114,30.991669,62.742462,4.615 426,555.29474,90.14171,30.49701,93.80266,4.601 426,356.8971,224.05794,31.807068,60.192093,4.538 426,548.3069,205.40547,30.635742,78.06648,4.533 426,176.78879,202.54962,20.49353,32.791885,4.504 426,284.477,243.02097,31.602722,61.312683,4.468 426,-11.71987,392.5548,31.247135,73.72604,4.464 426,168.48177,292.28833,33.40033,63.37979,4.461 426,-73.67065,267.69257,201.36856,458.00574,4.442 426,193.2409,238.9995,22.557678,37.067703,4.429 426,378.35452,218.30054,19.636047,34.041687,4.413 426,492.89703,227.68423,238.6673,514.27527,4.413 426,228.13408,257.96667,28.382462,49.69583,4.379 426,2.609828,-13.949301,16.626896,39.6274,4.358 426,-10.965574,185.9104,29.61176,68.33882,4.355 426,484.09238,-34.96594,30.986847,77.12875,4.341 426,350.09158,186.59525,26.904694,61.226364,4.326 426,475.5915,-10.401855,35.928528,65.18533,4.321 426,293.70844,353.92337,36.548096,64.968475,4.286 426,365.1468,191.38446,30.484497,70.15857,4.284 426,556.0401,171.42686,33.721497,81.63002,4.237 426,498.33298,-11.013536,41.92343,77.12231,4.233 426,602.00464,-16.62431,18.876038,43.857246,4.228 426,2.323513,489.66608,19.27046,41.862,4.216 426,480.29333,-22.010849,22.50653,47.45698,4.216 426,14.427175,399.82013,36.73516,78.16037,4.214 426,488.214,-175.84485,236.237,416.78357,4.214 426,239.09654,231.16138,24.799484,34.67804,4.213 426,385.7063,184.38712,20.315125,45.16983,4.206 426,397.23056,244.74527,30.369476,65.93866,4.181 426,58.96392,228.14856,59.04914,115.306885,4.18 427,160.00043,290.6839,21.85878,43.89633,17.215 427,185.61507,275.06555,21.629425,43.35309,11.475 427,277.9044,362.75693,34.708374,78.145294,11.104 427,165.19392,204.19969,24.466324,35.83876,10.462 427,121.993095,209.35004,34.320473,62.355988,8.783 427,120.853546,314.593,31.837814,57.664886,8.77 427,580.7356,191.5568,30.297607,65.49838,8.455 427,547.12537,186.33582,32.592407,72.4845,8.266 427,160.01823,206.76253,36.54779,63.619797,7.53 427,-6.010759,-15.969624,18.294832,43.231277,7.281 427,621.53613,475.62396,29.46045,67.723145,7.119 427,565.0226,189.09604,31.436523,66.27843,6.948 427,-11.063924,-32.173008,29.812866,74.70753,6.794 427,194.99603,267.7182,29.898865,52.081055,6.449 427,-11.878435,477.54425,29.64473,63.648987,6.298 427,176.0015,280.34598,28.677017,53.016144,6.264 427,622.7564,-34.644257,26.629028,79.63647,6.23 427,60.68943,231.25781,31.225739,53.995544,6.211 427,80.48703,243.33998,21.853333,35.55406,6.169 427,87.64421,238.10432,22.158905,34.14839,6.117 427,148.5312,272.86533,41.08185,70.27707,6.086 427,-6.00881,488.80963,18.807579,43.63141,6.082 427,601.8816,-53.75644,53.308533,134.3085,6.043 427,324.64368,199.0262,32.305115,55.66313,5.974 427,614.0011,57.89749,24.416382,85.81398,5.831 427,347.09558,198.30371,32.665314,66.81262,5.739 427,313.7305,200.01929,21.17868,32.814835,5.598 427,364.97192,193.4165,29.784973,64.79285,5.589 427,-17.062914,-61.354183,56.16358,143.72238,5.518 427,560.35913,190.72063,23.833862,52.074432,5.505 427,178.3944,256.54025,42.79387,74.95703,5.487 427,177.72429,231.93445,35.67421,65.84515,5.451 427,138.98444,301.03125,34.766296,66.044556,5.323 427,612.5149,9.492428,27.170105,97.96275,5.321 427,627.09875,-17.65273,17.384888,47.615166,5.318 427,592.6028,199.00089,24.120483,49.48526,5.25 427,11.957946,368.58643,56.40291,117.88199,5.235 427,-38.612877,368.64062,109.66767,269.65942,5.167 427,96.4203,245.35083,22.334618,33.39734,5.148 427,440.42358,231.22092,21.401672,31.392975,5.079 427,614.0185,-16.345188,27.412415,74.671326,5.077 427,603.1791,433.35416,56.170166,139.38846,5.075 427,301.00748,197.80324,29.154816,51.934387,4.996 427,71.53327,234.50407,23.183662,39.10872,4.961 427,48.108295,366.15018,35.20416,78.595,4.954 427,219.79713,255.26428,33.427994,54.415222,4.929 427,111.480934,218.86877,46.14898,80.927734,4.922 427,598.0,194.62991,30.890625,64.073,4.92 427,184.45938,246.36563,23.411835,36.230957,4.859 427,319.60712,202.25685,26.414612,41.131317,4.834 427,-73.692276,266.2772,201.82779,460.32095,4.825 427,426.16855,228.25737,21.875,33.168503,4.745 428,627.1985,-20.642765,17.961731,50.134285,7.76 428,90.8024,334.4923,32.914963,65.504974,7.445 428,621.4265,474.67145,29.686157,68.83234,6.981 428,364.3718,230.93033,51.097443,92.07257,6.693 428,-11.746149,476.11554,29.432318,65.17084,6.234 428,-5.2486234,-17.340586,16.844091,42.61554,6.158 428,74.83565,343.53323,35.35515,72.10956,6.122 428,-5.9496064,487.90768,18.883945,44.136078,6.037 428,31.813745,248.2132,24.072866,39.42639,5.986 428,603.3317,-55.57148,52.756653,138.58157,5.914 428,141.63875,297.65222,29.356201,58.852295,5.826 428,-12.67261,-39.901154,41.489807,99.350746,5.761 428,26.15063,126.32908,32.491,70.00329,5.551 428,442.69238,247.66652,18.733276,28.173355,5.432 428,356.1615,172.48727,29.173431,58.193222,5.383 428,153.70248,296.5362,31.666931,57.083954,5.276 428,375.10278,220.63258,61.12451,122.83348,5.182 428,10.325138,220.44824,57.507732,98.66321,5.179 428,-22.35411,400.6776,79.970764,176.97485,5.177 428,603.00146,431.5159,56.918335,141.75082,5.157 428,40.500027,232.94492,22.677391,34.416687,5.076 428,620.6749,136.58737,16.592285,42.8835,5.058 428,460.96686,189.52702,31.267609,67.972244,5.034 428,304.8611,203.99535,22.47528,37.772675,4.982 428,-74.029816,265.25635,202.6287,461.35913,4.963 428,59.265553,153.60724,32.28821,65.03755,4.899 428,267.24033,207.39958,33.47119,58.270554,4.799 428,537.1061,312.28503,142.39618,338.64172,4.798 428,280.21246,204.11871,22.347717,37.866043,4.788 428,233.3303,206.09555,21.638199,38.51561,4.785 428,46.662598,248.34067,48.10856,77.420166,4.708 428,434.50363,246.1261,18.67978,28.606995,4.694 428,5.2125273,238.4019,30.594494,60.098373,4.685 428,105.25076,325.63608,34.379242,65.90262,4.629 428,-4.2698426,222.6069,16.465685,38.98288,4.627 428,-0.9420538,403.85663,33.934536,73.63733,4.626 428,-17.408094,218.9272,51.719955,126.62511,4.625 428,322.17218,204.43869,19.948242,30.971252,4.618 428,-6.5079346,258.94873,18.801788,45.60562,4.601 428,40.087505,245.91698,22.33622,36.965805,4.481 428,450.34283,247.9279,20.526459,34.115067,4.48 428,617.2918,485.59628,22.04663,47.765717,4.449 428,307.5985,207.48846,32.941803,59.772583,4.431 428,619.7157,-21.425808,18.124939,47.612793,4.422 428,31.625368,232.79541,44.231033,69.55151,4.405 428,150.68909,216.4866,40.38434,56.673004,4.397 428,493.10013,228.47699,238.36111,512.71027,4.388 428,292.87015,195.6797,31.0961,54.167786,4.38 428,538.5346,249.24364,21.174988,41.392105,4.349 428,219.96051,216.91985,32.49965,59.899155,4.338 428,167.52943,223.60922,37.54814,55.896393,4.336 428,329.5437,236.24422,64.63013,120.02312,4.3 428,-20.298414,-86.91846,71.20318,194.52173,4.294 428,20.012241,238.92044,31.82146,57.157867,4.285 428,387.72955,178.84244,32.87851,71.917435,4.257 428,615.60864,-37.293304,26.4292,78.48023,4.234 428,0.7922149,249.76595,21.909742,44.81633,4.181 428,47.976143,253.18077,22.64183,34.109604,4.179 428,176.96667,206.10573,46.984756,77.35976,4.17 428,314.3801,203.09888,19.651917,31.39914,4.164 428,-16.432837,156.78113,51.894096,137.66547,4.162 428,57.324562,217.18243,60.16899,104.51849,4.159 428,541.4321,110.89406,29.511108,62.984787,4.148 428,185.96855,199.40593,58.035126,119.372696,4.077 428,282.06384,209.6729,34.56546,57.175583,4.067 429,431.63025,199.39291,27.53772,48.725586,32.77 429,394.65063,193.99954,22.250244,40.81122,14.172 429,153.00507,202.42938,25.085983,38.9283,8.509 429,-11.578327,476.0383,29.785845,66.31326,7.429 429,-5.881891,488.2686,18.755493,43.92685,7.077 429,603.3979,-54.19853,53.135803,135.5341,6.878 429,-5.5555625,-16.554165,17.830576,43.21855,6.73 429,621.4436,476.0421,29.67041,68.05945,6.59 429,73.68656,197.32423,35.417747,53.83435,6.438 429,-17.449234,-63.00377,56.66265,143.87807,6.424 429,627.41943,-17.997559,17.155823,46.135845,5.925 429,56.53074,207.02275,36.616524,60.693893,5.899 429,2.880361,128.6265,32.837967,72.35794,5.866 429,2.0333695,260.4104,18.326303,37.50006,5.782 429,620.68896,260.80783,18.387512,41.914764,5.693 429,417.15692,231.13307,70.997314,148.13719,5.665 429,8.644108,261.77054,19.20719,34.559845,5.621 429,-22.553925,398.70776,78.63984,177.29077,5.578 429,226.25711,221.65536,35.83127,62.000732,5.526 429,-11.728926,-31.249802,30.09652,72.386246,5.509 429,7.3354363,218.34238,63.61981,105.50116,5.446 429,11.61397,371.102,55.024017,129.25574,5.446 429,395.50357,192.8784,31.054962,65.62669,5.332 429,88.54501,208.8467,21.737434,32.67897,5.319 429,64.780075,189.31908,23.123917,37.327408,5.249 429,43.743256,379.14032,35.645195,74.23291,5.239 429,441.0632,193.74722,32.97238,69.8284,5.161 429,6.473105,404.14688,34.89101,68.566345,5.111 429,446.5137,241.80258,50.402313,107.11206,5.096 429,408.1811,196.38528,21.35904,38.9216,5.027 429,-73.07547,265.89816,201.274,459.84854,5.006 429,583.52106,408.58676,71.56427,179.44876,4.989 429,105.27843,218.8573,20.302773,29.540527,4.95 429,81.78924,193.40746,23.10897,41.537735,4.818 429,454.45612,245.47823,63.338013,138.35558,4.806 429,146.36633,195.12538,43.898438,64.84746,4.768 429,241.42775,220.07469,35.777786,61.215134,4.746 429,623.2875,-34.788555,26.167236,75.19398,4.736 429,536.06793,312.55206,143.37598,339.93842,4.713 429,2.644161,-15.406627,17.353567,41.926758,4.642 429,346.44464,179.04889,17.89441,28.134521,4.58 429,617.3372,374.43295,21.769775,50.90338,4.571 429,493.02435,226.78409,237.97711,515.2604,4.541 429,184.60489,226.99924,36.51532,57.803375,4.536 429,368.33765,321.26468,46.61136,93.4888,4.511 429,282.40515,213.11478,20.327972,36.31041,4.488 429,492.69617,229.99005,55.135864,122.609924,4.475 429,241.28137,210.828,21.388123,29.610611,4.449 429,315.72055,173.75673,15.468384,29.50061,4.429 429,365.47482,167.23537,26.762115,52.99225,4.415 429,163.4227,190.69025,30.663437,52.060745,4.407 429,-4.7279987,346.9502,15.151345,34.23224,4.377 429,418.56323,196.73691,20.917633,41.94391,4.37 429,51.99411,186.63034,33.664352,57.722504,4.359 429,79.41023,199.74213,46.61802,77.307495,4.343 429,-2.1631622,406.37555,28.250254,63.802216,4.295 429,347.11084,196.9486,17.98468,25.92836,4.288 429,1.9068313,488.69772,19.741446,42.657013,4.287 429,2.3232436,246.4804,17.413996,35.823715,4.282 429,-5.306227,262.9838,17.080986,39.174164,4.282 429,170.24239,230.7681,35.83229,57.28589,4.252 429,379.15063,276.94025,62.901306,123.68939,4.227 429,96.89351,210.14008,20.930061,32.55916,4.209 429,341.00192,190.22136,15.737122,24.842224,4.182 430,465.87366,202.79495,23.765656,49.718323,71.696 430,439.19006,196.20319,29.95758,62.58081,59.769 430,145.10258,199.74696,24.9402,39.690536,19.887 430,394.47968,191.36615,22.774231,40.50775,13.463 430,459.12845,205.55888,21.407928,49.62033,9.55 430,612.9298,452.1151,40.21991,109.47284,8.17 430,626.5497,487.54092,21.190918,45.516693,7.949 430,-5.9707427,-17.833061,17.920597,44.669243,7.349 430,603.3109,-54.907753,53.265747,135.84894,7.152 430,3.7446368,197.43546,29.881428,74.215485,6.937 430,295.33377,205.80367,22.651825,34.098618,6.906 430,617.93555,488.0718,22.04663,43.495575,6.852 430,452.01968,187.91217,36.58847,69.09967,6.652 430,-6.4216185,488.82828,19.153494,43.834564,6.41 430,-5.535762,204.5642,19.099396,52.039352,6.398 430,66.28512,195.78989,19.02063,32.268814,6.106 430,531.6131,193.32585,15.594971,33.113434,6.016 430,232.47102,205.23125,22.107193,33.656113,5.985 430,-17.52674,-63.658535,56.362434,142.02336,5.86 430,-5.1251783,186.29353,18.514088,43.12761,5.839 430,19.254276,201.27444,30.766468,58.41867,5.826 430,489.511,189.47899,20.476929,37.367294,5.823 430,443.1944,291.06625,19.196991,26.446533,5.722 430,369.22845,164.65143,20.027802,39.342377,5.704 430,580.8239,310.13235,29.907104,76.08023,5.691 430,419.22092,176.34143,17.689453,34.232697,5.521 430,618.98267,151.38766,19.417725,49.700974,5.52 430,564.82916,312.8427,30.62976,73.59534,5.503 430,-11.278034,-31.843445,29.780228,74.03826,5.46 430,627.27014,-18.009136,17.51593,46.613876,5.448 430,-21.343012,404.2499,78.149315,174.51389,5.322 430,370.63156,182.36179,20.34314,37.746338,5.245 430,-9.357898,464.9605,38.104343,91.088745,5.237 430,394.65247,191.59964,31.369751,64.763275,5.188 430,12.505766,191.46516,27.558935,57.258026,5.177 430,-9.496613,183.02509,27.895832,65.40524,5.176 430,598.2458,145.43658,12.40802,24.917175,5.041 430,548.8934,312.01114,30.159607,85.5387,4.974 430,-72.993744,266.39825,200.88168,460.61652,4.952 430,620.6751,146.20189,13.868347,32.4971,4.939 430,13.3181,207.79558,31.837124,80.97649,4.926 430,10.483522,186.1224,54.630257,105.12332,4.916 430,590.7457,144.23643,12.233948,25.180847,4.909 430,523.3666,192.38115,17.110413,34.925156,4.893 430,535.4914,311.31262,144.90778,341.50818,4.848 430,493.1158,229.37045,237.52048,512.5801,4.846 430,-5.1252756,165.23851,17.659645,40.940216,4.794 430,443.0875,218.22864,19.58017,41.205017,4.792 430,504.65668,311.4007,61.622498,118.87634,4.754 430,177.20847,204.25746,43.78293,73.14055,4.747 430,601.66693,486.56897,21.642578,44.83954,4.743 430,-7.614515,212.34402,37.407063,97.83154,4.701 430,508.58905,322.30804,32.186462,78.40271,4.693 430,142.93185,173.94225,31.637634,61.682022,4.676 431,426.57077,204.34749,34.207245,68.97322,83.474 431,367.4723,193.80046,23.640259,45.468094,42.172 431,112.75582,205.6066,24.066704,45.942932,41.675 431,13.342182,187.9729,24.394379,44.292282,7.94 431,621.58325,476.98682,28.768188,67.33148,7.541 431,-12.031649,478.4513,30.339886,63.958496,7.434 431,2.9305494,188.3862,20.555763,46.09709,7.21 431,598.67834,156.66579,10.856323,21.246796,6.966 431,346.5411,180.06819,18.080048,34.953506,6.858 431,-6.0946665,488.76993,18.960583,42.65573,6.85 431,603.35925,-54.665024,53.41028,135.03796,6.813 431,-17.492636,-64.080154,56.35518,149.19197,6.729 431,434.98227,220.68265,32.84088,64.93536,6.641 431,590.2941,160.77809,11.62854,22.65532,6.145 431,-5.298848,182.42955,18.786983,44.810654,6.061 431,619.3519,152.35725,17.822937,43.244553,5.929 431,305.3931,210.07333,22.585663,36.491104,5.806 431,522.69116,198.92389,17.218628,36.092087,5.796 431,475.45883,204.07129,17.950653,32.90883,5.629 431,263.00076,211.98354,22.749542,33.067673,5.589 431,-11.249762,-32.652885,29.705057,73.78489,5.538 431,604.41766,435.71353,54.279358,137.76828,5.535 431,618.17163,489.3199,21.128662,43.504944,5.525 431,-21.19616,404.7317,78.14335,174.23328,5.489 431,627.29156,-18.007164,17.478699,46.36128,5.488 431,402.5418,184.34796,19.082306,40.453705,5.422 431,606.83093,156.45766,10.916443,20.908829,5.414 431,620.27454,145.74997,13.029541,31.373444,5.31 431,3.1024659,109.56504,33.34252,78.524895,5.296 431,614.082,152.29982,11.7473755,24.491165,5.267 431,606.9842,147.00429,11.692749,23.96643,5.248 431,2.6738393,155.4547,18.369923,41.1895,5.229 431,-5.9841733,-18.253084,17.671658,43.488785,5.196 431,1.5684628,191.48892,42.033604,93.69101,5.152 431,574.07684,163.38708,12.334961,22.946426,5.146 431,11.184179,201.53168,18.85681,36.95508,5.103 431,530.98517,199.59537,16.439575,33.253662,5.085 431,-73.0961,265.07452,200.95131,462.1949,5.053 431,470.73056,186.56512,27.131744,53.932266,5.037 431,483.90576,207.18199,19.378418,35.427353,4.934 431,582.1952,161.88611,11.78656,22.707794,4.92 431,409.31155,192.69225,21.408417,38.590836,4.834 431,590.49854,146.23927,11.890442,24.062836,4.816 431,410.42484,207.1066,21.688385,36.74141,4.79 431,6.049905,155.11197,29.317543,64.05145,4.767 431,612.59717,156.35515,17.05603,35.999588,4.722 431,-0.39637804,137.07265,25.85278,75.214355,4.682 431,-4.5735064,161.75743,17.369774,41.75081,4.681 431,562.6542,353.81506,19.387573,27.323395,4.676 431,-2.9293075,349.60733,13.537138,35.190918,4.675 432,386.20068,207.44887,38.616516,82.5009,69.359 432,93.74188,205.33505,25.464043,47.53105,21.699 432,321.05756,198.44905,20.21994,39.59961,15.897 432,153.20093,215.10855,22.151154,41.164032,8.524 432,317.6198,172.96739,25.755157,59.351074,7.598 432,395.24866,232.39676,32.943176,77.86499,7.337 432,-12.164118,478.439,30.38281,63.44693,7.253 432,-17.774689,-65.14675,56.45701,150.73137,6.888 432,621.85254,477.35925,28.452759,67.72302,6.831 432,-6.234356,488.39954,19.321648,43.4115,6.582 432,-4.532218,172.67574,17.449017,37.58246,6.04 432,603.479,-54.62907,53.059143,135.3063,6.034 432,102.81892,203.47672,22.1399,34.907272,5.924 432,627.43665,-18.045862,17.221191,46.373775,5.885 432,597.24097,168.84248,31.241638,56.344757,5.883 432,618.3116,168.85464,19.873962,44.505936,5.795 432,590.47253,163.18918,11.075684,21.242249,5.771 432,85.01784,203.79616,40.26438,69.0363,5.688 432,465.59308,211.38353,22.515991,36.93016,5.642 432,-17.006199,442.52222,54.567917,133.69763,5.61 432,452.38254,191.1194,30.509888,52.212097,5.515 432,-11.366888,-32.418385,29.5335,72.64566,5.452 432,515.5366,209.54164,15.967407,32.140854,5.422 432,604.24915,437.47046,53.92273,136.7392,5.411 432,381.17798,187.03658,27.6315,61.57454,5.399 432,383.1286,237.02357,32.63629,75.27629,5.388 432,471.67966,229.01244,39.375153,63.221085,5.354 432,402.66833,196.38805,30.352448,71.92717,5.318 432,201.09714,334.36072,23.282623,33.34497,5.276 432,449.98608,207.54472,20.43805,36.77774,5.256 432,-5.306373,187.72781,17.650106,37.370148,5.222 432,-5.8218822,-18.086847,17.419064,43.123886,5.217 432,601.87146,178.73187,21.761108,36.028824,5.209 432,594.30786,178.24452,20.483032,33.7016,5.189 432,507.67346,208.0938,16.080017,34.446487,5.168 432,570.357,449.50513,20.499695,29.055084,5.157 432,-39.97723,370.19592,109.80826,274.3828,5.067 432,273.2804,206.56952,21.085785,33.560104,5.067 432,-73.25343,265.90186,200.98203,462.6228,5.053 432,523.66705,202.68112,15.213013,29.911148,5.031 432,473.9735,424.33688,20.440521,28.515839,5.014 432,329.60272,210.47716,18.61267,35.68573,5.011 432,375.7465,210.09764,33.61258,66.643875,4.991 432,363.47385,417.7997,18.519012,28.144562,4.946 432,610.4409,172.24995,21.495056,39.2388,4.945 432,562.1453,433.72998,20.994446,25.786499,4.939 432,187.60461,328.2058,32.89662,45.914276,4.919 432,553.87103,434.40717,21.679138,26.49524,4.906 432,575.04364,163.28381,11.530029,21.976105,4.882 432,598.31287,157.24297,11.657593,20.676392,4.868 432,587.3083,179.5146,18.629272,31.303848,4.836 432,561.4576,449.12836,21.360474,29.589386,4.825 432,597.2605,165.71626,15.192993,30.012436,4.804 432,3.075511,148.86143,15.450513,32.261536,4.802 432,617.8441,488.06985,21.183472,45.337555,4.782 432,378.44333,183.00566,19.850159,37.16716,4.752 432,-3.3697643,158.76324,15.292214,36.327713,4.733 432,466.67938,432.9168,19.605347,27.846344,4.704 432,3.4655662,163.95296,16.011097,32.77289,4.701 432,582.05005,165.74936,11.853394,24.243088,4.663 432,4.080079,130.36116,13.738719,28.947083,4.656 432,363.8484,434.4824,18.147522,27.625458,4.653 432,334.60645,358.57693,11.860779,21.608704,4.593 432,479.35547,250.90532,40.65686,59.25557,4.576 432,547.67523,422.1634,17.34845,22.570953,4.575 432,203.35564,328.12537,32.902115,46.79071,4.569 432,458.91412,423.73996,19.17456,28.109344,4.558 432,572.9166,363.61444,98.048645,266.1706,4.55 432,370.26068,416.6302,19.996613,29.729797,4.537 433,355.68182,218.1943,42.593994,79.54855,88.619 433,283.35574,208.05507,21.786102,43.882614,82.019 433,38.733757,172.80507,31.13758,56.601685,7.88 433,-11.8073225,479.25305,29.938557,63.040955,7.206 433,621.6472,476.4243,28.681824,68.924774,6.645 433,-18.220537,-65.34002,57.019676,151.8111,6.63 433,297.2179,208.51366,19.562927,37.29843,6.617 433,-6.1890736,488.79575,19.205387,43.06784,6.278 433,603.49695,-54.515774,52.95453,135.97542,6.185 433,573.13763,175.91339,13.720154,23.70256,6.096 433,153.28584,359.72357,21.980942,31.88736,5.953 433,305.36618,203.48087,19.31491,35.768066,5.931 433,627.4058,-17.888582,17.227295,46.092075,5.9 433,565.2043,176.60191,14.282349,23.390213,5.846 433,-17.206398,442.2613,54.54299,134.35413,5.662 433,183.56712,360.2004,25.473251,36.277008,5.653 433,617.2835,173.77075,21.85675,47.371994,5.628 433,363.21985,249.69418,35.487274,80.44931,5.587 433,377.14105,192.52141,33.37686,64.63225,5.57 433,590.6615,169.14,12.197998,22.570358,5.562 433,463.04034,245.16078,42.660034,66.78639,5.52 433,604.20746,436.5119,53.71826,137.51129,5.517 433,284.38345,203.01126,15.067474,26.496902,5.508 433,-11.468377,-32.515644,29.706837,72.81964,5.492 433,514.9608,216.5656,16.793701,34.13716,5.472 433,277.34726,207.20279,38.065613,65.31595,5.451 433,307.0162,215.79027,42.023468,76.33949,5.404 433,557.8293,178.25499,13.894409,22.180786,5.401 433,168.49394,360.6011,23.49031,31.755981,5.344 433,242.32181,422.59406,20.403381,30.117188,5.336 433,-5.900054,-18.12431,17.499842,43.008877,5.329 433,507.0031,216.58644,16.803589,35.193573,5.323 433,72.7768,207.9043,19.7333,31.864197,5.294 433,329.85794,215.48634,21.319244,33.318314,5.253 433,249.51729,430.83524,22.083572,30.35019,5.222 433,111.28872,194.14459,25.770393,65.65442,5.093 433,-39.470592,370.44556,109.38193,273.70898,5.021 433,307.95892,185.26967,17.15033,34.5123,5.009 433,498.81314,213.53629,18.274933,39.661194,4.997 433,256.18018,439.7552,23.070526,30.201355,4.917 433,28.382137,174.50195,57.494556,106.11304,4.895 433,-73.33764,266.01846,200.80002,462.06723,4.867 433,490.72388,214.44012,19.374146,38.650696,4.839 433,473.58444,233.71385,33.93341,57.568863,4.823 433,477.83246,257.37277,42.583252,61.231598,4.809 433,284.21088,194.60425,14.699188,23.981354,4.781 433,115.82528,200.21056,17.024788,43.00482,4.781 433,105.19896,367.16788,22.443924,28.389465,4.767 433,540.9475,203.45114,14.382019,29.623993,4.762 433,623.31775,-34.844887,26.12384,75.414635,4.751 433,396.69833,432.47208,16.954498,27.24582,4.746 433,22.073711,168.97618,33.736588,58.919647,4.701 433,-4.3705688,156.99617,16.242935,38.083496,4.699 433,108.33295,201.38898,17.02771,42.617416,4.696 433,314.44638,185.88063,16.476898,31.998108,4.69 433,259.49066,200.25244,16.653564,29.166412,4.683 433,366.06763,189.97034,28.915863,64.46422,4.672 433,498.9524,194.82507,18.370056,33.601654,4.669 433,290.58145,216.51553,41.694122,93.41083,4.63 433,595.1967,181.03941,18.723633,29.2966,4.63 433,2.227673,185.48683,19.133774,37.752823,4.582 433,324.50494,217.71588,42.745087,78.698364,4.572 433,376.89038,254.89368,33.26712,74.04547,4.549 433,536.04376,312.90607,143.7207,339.69995,4.549 434,325.13217,212.9307,41.992584,91.150635,94.179 434,251.293,207.182,24.115814,42.711365,65.577 434,153.61166,212.91727,22.37912,38.584534,40.041 434,155.57172,207.99945,17.139694,28.879684,11.171 434,326.91284,204.65227,30.196228,67.80257,8.399 434,33.530838,169.8518,31.004929,55.20607,8.373 434,99.39485,206.09853,19.471481,43.491776,7.184 434,-11.806865,479.86484,30.015236,61.898895,7.119 434,138.45859,209.82811,21.130264,40.969803,7.037 434,-18.300243,-65.37999,56.99383,151.37212,6.924 434,332.85278,251.4623,32.49164,75.77858,6.693 434,100.38161,193.63986,28.387833,66.57724,6.672 434,-6.0164747,488.82797,19.016933,42.46994,6.589 434,58.58287,384.7082,19.244781,25.589355,6.289 434,603.49646,-54.50751,52.94458,135.83998,6.266 434,626.2951,486.6343,20.81659,47.876984,6.049 434,627.40436,-17.93385,17.195251,46.204987,5.994 434,467.26932,228.12735,19.216095,31.036835,5.938 434,141.0094,202.91241,16.013184,30.706802,5.86 434,-17.266119,442.08896,54.8658,133.853,5.621 434,125.32821,206.28981,31.31327,59.134598,5.567 434,-11.386107,-32.61072,29.74155,73.67024,5.532 434,612.93396,457.07028,38.708984,103.92673,5.523 434,105.06125,199.7451,19.337051,42.353485,5.448 434,506.35352,216.13127,17.32367,35.19583,5.421 434,573.46796,178.39713,13.489563,22.843277,5.355 434,595.566,181.2637,17.847046,29.207535,5.276 434,-5.8868036,-18.152372,17.550785,43.504932,5.225 434,366.88156,186.71638,26.535797,56.091095,5.221 434,128.84122,373.593,22.101181,31.413574,5.21 434,299.94055,199.25513,18.001099,31.423492,5.202 434,244.45894,204.79163,38.948685,69.0387,5.149 434,583.6504,413.3703,70.871826,175.87518,5.088 434,470.6467,263.38602,42.948334,64.246,5.073 434,275.59424,210.08571,42.25049,89.81181,5.02 434,-39.28974,370.20697,109.04538,273.2824,5.012 434,341.04437,215.66318,24.141296,47.675934,5.012 434,85.80794,195.12665,30.850838,59.731873,5.002 434,484.26852,260.27444,44.51895,59.775055,4.994 434,-4.7723584,140.3776,18.219555,41.10771,4.939 434,330.4375,201.76839,20.169952,37.158646,4.938 434,323.37024,190.42006,16.562805,29.36322,4.914 434,514.5177,216.63617,17.676392,33.16835,4.914 434,135.75114,367.37405,23.444168,34.902527,4.908 434,-72.82554,265.39008,200.34103,462.45172,4.875 434,565.8566,177.20331,13.763855,23.60791,4.848 434,65.20641,382.19623,20.184914,27.073425,4.786 434,161.8678,202.40506,15.975143,25.533157,4.776 434,305.86206,197.52724,20.256775,32.465515,4.767 434,108.35747,202.75827,31.2081,61.247437,4.713 434,623.32574,-34.86144,26.070862,75.414696,4.705 434,257.4259,196.97232,17.677277,32.538773,4.664 435,289.55798,224.1128,32.790497,83.385376,75.68 435,222.80481,207.99133,18.510834,43.246628,37.066 435,195.60164,211.11566,24.258316,41.86676,14.27 435,128.26395,217.16495,33.880432,59.643524,7.421 435,-12.022932,478.93585,29.78142,62.914368,7.236 435,466.22922,229.30804,20.238861,33.51657,7.085 435,220.72495,206.63785,27.57721,68.04071,6.956 435,188.90268,214.35995,32.216125,79.740265,6.935 435,301.04355,229.76495,24.96579,59.717896,6.886 435,-18.325846,-65.67523,56.99112,151.69836,6.865 435,603.4875,-54.349556,52.88275,136.12404,6.185 435,-6.083615,488.6734,18.894236,42.830627,6.176 435,30.762325,175.94449,30.71362,56.151,6.113 435,621.83704,476.26227,28.533325,69.44415,6.107 435,627.3923,-18.001516,17.225159,46.172558,5.931 435,338.7842,211.6849,20.622375,41.012695,5.874 435,1.5987754,180.56448,19.914629,46.019135,5.634 435,-17.099886,442.04437,54.635345,133.70526,5.527 435,-11.435602,-32.498817,29.736631,73.104454,5.5 435,574.0437,178.60959,13.069458,23.754501,5.462 435,162.91959,212.86899,33.36299,67.27365,5.384 435,13.285098,171.70584,32.371174,61.094025,5.296 435,514.93823,216.42297,16.96228,33.495636,5.192 435,301.15076,257.80548,31.075256,74.412476,5.174 435,-5.903666,-18.100704,17.555296,43.100986,5.162 435,583.9341,413.12433,70.546265,176.12921,5.138 435,315.06293,186.80328,18.04718,39.685577,5.129 435,204.12329,229.86005,32.24315,75.06909,5.123 435,-39.877167,369.07108,109.982056,274.6832,4.989 435,-72.96559,264.486,201.14876,463.28928,4.97 435,145.22614,215.338,34.35936,62.95024,4.957 435,594.8719,189.11102,18.872498,28.603271,4.949 435,280.78546,220.66545,32.07315,69.20665,4.938 435,-5.0259295,156.30037,17.25621,39.520813,4.913 435,272.98822,221.72151,53.241486,115.97093,4.899 435,450.66187,226.01924,19.459045,32.51216,4.886 435,485.01175,260.6222,45.30661,60.986816,4.856 435,623.3472,-34.839268,26.115784,75.29866,4.828 435,618.1096,176.04782,20.671753,42.880722,4.825 435,130.00146,373.88004,21.257156,36.425232,4.798 435,141.27275,221.92596,27.199661,44.983948,4.794 435,506.4812,215.5069,17.526306,36.81337,4.786 435,209.6958,247.17993,22.60199,47.42273,4.709 435,50.97977,205.49146,35.432278,49.298492,4.705 435,189.0851,310.13394,15.060577,24.048218,4.692 435,470.62137,254.66446,42.85672,65.94656,4.688 435,345.24112,201.4421,21.267181,42.44232,4.656 435,4.963032,471.42038,38.35232,89.38101,4.633 435,444.83063,217.34402,30.776825,50.746246,4.617 435,565.6043,183.08711,13.533936,25.050797,4.606 435,384.47922,214.8674,45.376923,85.007965,4.595 435,523.13885,217.91063,16.172913,31.706726,4.594 435,2.0145166,489.25974,19.495821,41.317047,4.58 435,299.99762,410.98315,17.836914,30.861023,4.547 435,515.5543,413.49808,17.426514,27.250244,4.543 435,86.78214,378.3747,24.706383,34.329742,4.519 435,581.31824,177.65936,13.264343,24.313492,4.502 436,241.12328,220.98204,38.55165,85.485214,89.424 436,234.83853,210.18588,20.648682,50.884277,23.778 436,191.69574,208.17818,19.260193,41.00995,19.806 436,322.16132,185.21016,17.98941,37.997208,9.028 436,0.5894387,265.97626,25.286682,72.83426,7.859 436,-11.7873,479.74048,29.763523,62.500732,7.157 436,482.00702,256.2386,35.012146,71.926025,6.899 436,34.252895,172.67862,30.885914,56.58519,6.875 436,-18.43554,-65.58414,57.05764,151.50209,6.866 436,338.2201,223.04443,30.88739,68.4693,6.76 436,603.4817,-54.4215,52.873596,136.18524,6.237 436,50.580765,400.10623,19.75496,26.53009,6.193 436,621.78986,476.18164,28.424683,68.92993,6.188 436,-6.0489826,489.00714,19.034523,42.453003,6.167 436,58.174507,400.31705,20.512894,26.482544,6.061 436,7.9803133,275.49942,21.113838,41.76953,6.034 436,440.8269,200.45784,22.749146,45.970474,6.033 436,627.37463,-18.002897,17.229614,46.213604,5.953 436,435.89636,215.34117,31.958832,59.104263,5.83 436,307.47852,195.70206,18.614624,35.35962,5.741 436,314.75247,196.28065,18.658752,37.568817,5.699 436,-11.376166,-32.40341,29.713459,72.91298,5.647 436,187.7452,216.31117,57.697525,125.48552,5.614 436,468.67755,249.39055,32.25522,68.56276,5.613 436,565.53357,183.08661,13.369751,24.428314,5.507 436,573.994,179.14021,12.683044,23.14775,5.505 436,348.5707,234.47716,30.627838,64.861404,5.493 436,-21.643877,404.1129,78.6983,174.58557,5.449 436,152.77847,374.2308,22.55603,34.335968,5.432 436,395.32822,224.6561,34.926666,68.865234,5.422 436,137.05919,372.4557,21.937714,37.044556,5.359 436,452.32755,242.94191,32.624054,69.22795,5.331 436,2.032609,176.10449,19.125778,43.409134,5.292 436,42.377934,213.93285,37.172497,56.87001,5.283 436,262.45496,261.893,23.317657,55.979767,5.246 436,248.40866,218.10898,21.37088,47.6893,5.231 436,43.97385,400.94885,18.763126,24.930206,5.178 436,443.74615,226.78572,31.797394,59.131973,5.157 436,-5.855062,-18.105507,17.561138,43.152153,5.155 436,604.6356,436.55444,52.97455,137.40112,5.144 436,323.63284,218.38647,34.911163,66.30963,5.14 436,155.40457,365.69666,31.824661,48.28647,5.114 436,140.5929,363.22583,30.10608,48.36374,5.027 436,-4.6130857,155.85736,17.264425,41.481796,5.005 436,307.04187,414.854,18.92633,29.815979,4.93 436,456.3393,213.2953,21.497803,37.760864,4.894 436,361.84995,233.31839,35.20041,58.531372,4.848 436,467.4085,231.57834,17.771545,34.81961,4.838 436,-73.00775,264.8791,200.86996,462.5031,4.825 436,-4.9060087,140.46893,18.430313,41.747055,4.823 436,617.83704,175.46439,21.238525,43.14479,4.803 436,409.1547,224.91414,34.3403,73.51448,4.802 436,623.33276,-34.828217,26.116943,75.32757,4.776 436,602.9402,181.48622,18.83606,29.648026,4.768 436,65.80834,384.60016,20.892784,27.846008,4.753 436,315.92728,417.9579,17.552032,27.098846,4.718 436,255.15633,220.26459,33.737534,70.40216,4.714 436,514.27167,215.37567,18.145996,34.9498,4.671 437,274.4722,215.48637,21.152863,43.79036,87.247 437,184.37561,224.19724,47.260757,92.103455,79.326 437,159.08582,206.71034,22.60144,50.284927,20.531 437,148.8907,209.42706,35.973007,79.85834,11.214 437,321.97144,189.18364,18.750244,36.917908,8.158 437,132.38776,214.97997,33.722183,69.77077,7.838 437,101.46072,198.33415,29.555382,63.72902,7.655 437,276.83173,213.10837,14.577942,22.360596,7.076 437,-18.354124,-65.71055,56.980156,151.60411,6.871 437,-11.666731,478.56113,29.454786,63.919403,6.8 437,195.90503,256.15808,32.829773,78.88641,6.467 437,99.14172,203.76541,20.797989,41.532715,6.409 437,336.8023,212.59625,23.013794,39.57222,6.386 437,621.7588,476.18015,28.741028,69.105316,6.338 437,603.5119,-54.52504,52.898376,136.10568,6.233 437,177.36143,225.74133,34.909714,75.34235,6.201 437,286.5225,220.39574,20.608917,38.029495,6.167 437,-5.816174,488.64587,18.641432,42.972046,6.148 437,315.80212,198.59879,17.381897,34.615692,6.067 437,280.29584,216.58191,17.060303,27.09407,6.048 437,627.3988,-17.947197,17.20691,46.13859,5.93 437,1.2897396,187.4596,20.283724,46.466675,5.883 437,-16.884815,441.33948,54.743088,133.64703,5.831 437,128.10657,217.62048,24.75029,47.141144,5.807 437,72.955765,373.53955,23.786316,30.200134,5.747 437,21.398542,175.08713,33.669846,63.029266,5.707 437,70.05177,223.98587,24.541992,35.477722,5.703 437,210.95712,263.5912,33.554413,71.300934,5.696 437,32.98369,181.45206,25.368118,46.291046,5.594 437,-11.486313,-32.621445,29.79087,73.28584,5.519 437,176.62173,377.97836,24.09848,35.076355,5.472 437,63.589905,222.60214,35.598473,55.26416,5.448 437,-5.907934,-18.209166,17.520157,43.094063,5.361 437,111.80028,215.60858,24.338196,47.16754,5.36 437,91.06566,207.46896,20.429398,37.7735,5.326 437,115.64445,208.32802,38.948326,89.52623,5.318 437,51.580948,401.9384,17.849854,24.331604,5.228 437,59.18653,384.7983,18.367683,26.533752,5.198 437,603.06696,182.04007,18.151001,29.190445,5.174 437,604.3229,436.73413,53.487244,137.13074,5.167 437,-73.55095,263.5357,202.42981,465.50195,5.103 437,58.589,408.26834,17.766148,22.601532,5.086 437,573.5549,183.86374,12.863586,23.377472,5.08 437,-40.466133,367.4618,110.977905,275.35645,5.029 437,66.01665,381.3859,20.345291,28.104034,5.006 437,565.52783,184.61754,13.4470215,24.641586,4.969 437,144.16986,214.25835,25.853027,52.17122,4.959 437,514.7576,215.63748,16.881165,34.25688,4.928 437,477.09772,257.16745,43.380066,63.556824,4.914 437,2.0810175,182.49205,33.680553,70.28471,4.892 437,60.474545,208.40364,58.099216,125.405106,4.886 438,120.48387,210.96631,41.29149,106.99231,89.728 438,126.54064,203.14055,26.54795,74.107956,15.377 438,137.15704,221.41983,31.88028,79.20627,11.335 438,307.38177,212.01326,30.43686,60.625137,10.864 438,313.70947,207.51569,19.774261,33.69835,8.402 438,34.55607,172.69751,30.929482,57.986862,7.792 438,324.44995,229.22049,34.6727,71.6716,7.273 438,-11.994955,477.88065,29.903429,63.70041,7.082 438,-18.364298,-65.605774,57.002,151.39417,6.869 438,314.95532,221.61888,32.29074,70.493576,6.662 438,336.03946,213.88916,44.102295,86.10248,6.542 438,58.11994,207.62865,59.616554,113.688644,6.483 438,514.55133,216.8638,17.324036,33.753464,6.359 438,603.5058,-54.48471,52.917908,136.07797,6.304 438,146.06697,213.88254,31.12564,59.798065,6.276 438,621.8766,476.4727,28.398682,68.940765,6.243 438,-6.2288785,488.66254,19.199121,43.0437,6.05 438,627.3921,-18.000828,17.23999,46.221943,5.94 438,322.93542,191.80614,17.34137,35.200897,5.901 438,466.25247,229.34555,19.930725,32.941864,5.817 438,506.11615,215.57533,18.00592,36.848557,5.795 438,95.4478,216.36331,59.52704,134.46628,5.74 438,522.79156,218.02628,16.820923,32.271423,5.691 438,602.886,181.77716,18.418152,29.1259,5.586 438,565.6693,184.3163,12.978577,23.243439,5.541 438,128.70525,374.435,22.761383,33.869354,5.537 438,-11.433024,-32.63516,29.739365,73.52491,5.537 438,154.16066,221.89279,30.842987,71.03131,5.533 438,1.7914677,178.16151,20.036272,46.44594,5.516 438,617.8124,175.78384,21.294312,42.699158,5.41 438,331.10028,188.29453,16.59613,29.478027,5.367 438,-21.797226,403.70325,79.105774,174.45532,5.257 438,248.76877,205.40045,35.397552,66.299225,5.256 438,13.190336,171.05861,32.267296,60.773712,5.242 438,282.15503,205.34607,34.11978,65.216095,5.228 438,604.59235,436.8168,53.2193,137.5997,5.19 438,144.88847,373.9706,22.696732,33.16855,5.171 438,-5.876047,-18.205465,17.577423,43.417877,5.152 438,574.01324,178.70691,12.740356,22.766296,5.143 438,-73.21956,263.97696,201.65318,464.35214,5.107 438,266.88535,201.1677,33.48358,60.24875,5.077 438,366.93494,215.49036,46.17035,81.60321,5.068 438,595.3759,189.26273,18.579285,27.244873,5.011 438,50.538925,208.30228,35.262352,46.917007,5.002 438,87.77671,378.9372,24.615639,32.173157,4.954 438,-5.0778847,155.92091,17.462156,41.412933,4.928 438,340.30576,194.37634,16.859192,29.972855,4.91 438,152.78365,216.92035,20.991669,37.617477,4.886 438,154.09915,381.8376,20.707962,29.854675,4.873 438,623.34155,-34.89155,26.122253,75.40122,4.83 438,129.17944,199.60962,20.55899,44.133987,4.787 439,82.89048,220.3422,49.993904,94.615265,84.875 439,60.501892,222.22676,51.218224,93.781845,60.379 439,339.53946,217.69272,23.895844,47.081024,42.138 439,510.60388,255.0846,26.628662,42.309204,8.04 439,505.95374,222.95514,33.585327,64.61917,7.9 439,29.504366,173.70085,31.429071,58.407974,7.691 439,-11.910573,480.278,29.895279,62.151855,7.608 439,-18.284748,-66.03931,56.907463,151.90128,6.956 439,491.0925,223.15361,32.879364,64.553085,6.908 439,-6.062622,489.06497,19.012363,42.42453,6.694 439,120.84781,377.60098,24.492325,37.178192,6.416 439,621.8429,476.7515,28.544983,68.60867,6.379 439,603.49023,-54.41582,52.845825,136.1307,6.217 439,539.8689,209.46614,16.819397,35.9691,6.106 439,528.98706,231.2091,22.610168,39.148865,5.979 439,442.75305,224.09637,21.230957,39.336,5.962 439,627.384,-17.899681,17.186401,45.985165,5.959 439,444.34485,214.56622,30.957336,61.24359,5.931 439,428.45612,206.18884,31.511108,63.55371,5.769 439,487.64786,228.60815,24.050323,45.12079,5.72 439,566.2509,184.53424,12.159058,23.972809,5.683 439,574.5416,184.3519,12.152832,23.156998,5.509 439,571.3134,368.36066,17.611877,26.087036,5.493 439,449.4104,231.47491,19.96112,39.1951,5.477 439,-11.412048,-32.39225,29.65248,72.4564,5.477 439,604.03015,435.48428,53.96753,138.77158,5.433 439,136.68338,380.75113,22.663864,34.512085,5.386 439,73.44331,212.35138,33.852203,72.9068,5.378 439,618.32056,176.08473,20.468262,42.861603,5.349 439,457.8436,233.09294,20.285553,36.896317,5.341 439,-21.497221,404.37592,78.57488,173.74908,5.329 439,461.27173,231.61784,30.640778,71.34151,5.323 439,-5.8309584,-17.949844,17.4878,42.761623,5.293 439,530.46857,216.82648,18.9906,37.382217,5.128 439,522.76465,217.90063,33.34082,63.990448,5.096 439,2.2025895,490.67188,19.513239,40.20813,5.084 439,-73.11425,264.16333,201.79062,463.88287,5.056 439,589.78815,178.01927,12.459534,21.990982,5.037 439,332.8167,194.83354,15.295471,30.297958,5.023 439,-4.8574615,397.08804,16.222216,34.48645,4.982 439,522.0391,218.57654,19.120483,37.534393,4.946 439,504.71603,219.39665,22.279266,46.32155,4.938 439,603.3996,181.47989,17.46637,30.042358,4.924 439,370.8039,191.97708,17.315125,34.979233,4.915 439,473.55392,232.27695,20.954468,38.572052,4.896 439,547.8202,207.53635,16.461365,37.148773,4.862 440,366.75867,230.29013,26.43393,43.555634,82.085 440,3.2174993,223.91528,44.26805,99.93347,70.981 440,44.20852,217.6688,51.551003,95.2074,59.217 440,49.545692,209.9906,35.987846,70.80945,10.627 440,0.92490077,248.85553,30.12913,76.76984,8.953 440,-6.865636,227.11475,29.687538,82.09326,8.759 440,368.37683,216.96803,23.758026,40.75453,8.373 440,590.905,179.1022,11.938721,20.950287,8.045 440,55.94438,252.0206,35.4859,73.37561,7.969 440,-12.736971,479.7115,31.07711,61.756897,7.244 440,10.021548,263.96545,33.45033,65.39801,7.239 440,71.92735,240.58723,36.5177,80.7263,7.176 440,106.521065,392.37427,20.84404,35.36203,6.926 440,-6.5035305,488.9496,19.55042,42.90985,6.887 440,356.95477,214.68344,39.834045,66.03415,6.835 440,626.3153,486.85086,20.598694,47.60965,6.625 440,35.460796,211.7516,37.726673,82.62459,6.62 440,332.37106,192.98022,16.619476,31.332962,6.601 440,-18.468004,-65.87902,57.213036,151.51854,6.592 440,323.86145,192.28122,16.99414,33.419952,6.23 440,597.31226,177.90735,12.736511,22.399368,6.22 440,574.51013,180.75233,11.882507,20.743774,6.157 440,603.512,-54.33734,52.847534,136.10374,6.14 440,627.3741,-17.933792,17.194763,46.089413,5.953 440,18.994684,209.64787,66.61773,148.32954,5.832 440,33.040794,256.55035,34.70131,73.26709,5.789 440,540.3489,208.41566,15.906921,32.82956,5.778 440,612.6001,457.36246,38.906494,103.213104,5.775 440,15.086093,207.72809,45.915363,91.145935,5.763 440,506.24417,224.07594,17.640533,36.38112,5.613 440,-17.818626,441.52646,56.01035,133.72092,5.583 440,113.31157,390.1767,22.508072,38.5914,5.58 440,-5.6406617,434.83167,17.191736,35.69574,5.555 440,582.4377,180.03342,11.898682,20.744125,5.542 440,98.71764,393.22488,20.569496,32.559357,5.518 440,339.74542,193.56154,16.044312,31.705292,5.485 440,-11.409392,-32.636517,29.649433,73.37103,5.442 440,566.12225,185.1636,12.522339,22.907532,5.406 440,52.373352,223.71042,62.87329,123.891815,5.298 440,347.7718,194.2007,16.76065,30.372772,5.219 440,-6.083765,167.09476,18.29671,45.837204,5.215 440,316.15802,190.84888,18.319092,35.361465,5.197 440,465.72473,232.48694,20.404236,34.464935,5.171 440,-5.860443,-18.088028,17.507328,43.11199,5.17 441,171.84,228.6448,65.71167,106.30664,86.452 441,390.02744,222.84715,23.10614,47.78917,57.459 441,398.63492,226.80685,19.29776,38.87372,10.211 441,-11.466565,481.07623,30.129917,60.667664,8.57 441,190.33112,227.74377,38.508377,68.51428,8.21 441,0.85294247,205.70172,25.051884,40.622116,7.826 441,141.48975,223.01587,67.23096,120.37848,7.532 441,51.44639,404.7607,34.532158,53.669098,7.473 441,177.01996,257.49466,39.9012,78.70508,7.171 441,376.3489,214.37744,40.475372,60.90924,6.788 441,25.577625,414.4376,22.462246,31.659668,6.744 441,344.37732,186.95251,19.817566,41.205307,6.564 441,379.01706,225.88496,25.695465,42.79274,6.522 441,-17.928467,-65.52287,56.880524,151.59605,6.392 441,120.64659,207.57732,62.606308,118.48302,6.346 441,32.9574,411.449,23.955738,34.07263,6.269 441,17.762077,414.9168,21.073654,31.45874,6.16 441,48.001587,409.05838,25.85286,38.63376,6.143 441,621.79285,477.03638,28.776001,68.27283,6.14 441,307.31595,187.65315,19.05066,39.59343,6.055 441,627.38806,-17.711906,17.111816,45.810596,5.913 441,427.61716,226.60846,17.234406,26.888382,5.862 441,313.62158,202.28275,20.166016,36.273056,5.811 441,603.74634,-54.496693,52.6615,135.83932,5.692 441,283.53424,196.62062,16.866272,33.159027,5.662 441,-11.499544,-32.480873,29.847845,72.31484,5.63 441,1.6575825,490.31375,20.559147,40.79825,5.571 441,40.564804,405.88766,24.667175,35.882233,5.512 441,179.43443,224.7199,37.24823,59.251694,5.499 441,-21.569101,404.1997,78.63995,173.94696,5.442 441,-6.612616,214.00572,19.704178,39.078217,5.429 441,-5.965804,-17.877258,17.532764,42.58703,5.403 441,588.1867,180.71346,16.304565,26.295929,5.394 441,307.87653,206.93982,19.495361,39.162933,5.383 441,299.73907,187.6879,18.996216,39.916794,5.344 441,290.7754,185.57425,19.453217,41.588425,5.324 441,604.0131,437.25598,53.63916,137.04016,5.308 441,20.363644,402.85687,33.664837,50.367493,5.248 441,611.67834,181.47723,19.49646,34.622208,5.169 441,618.8707,173.91217,18.366455,36.420074,5.102 441,205.73389,242.83499,37.21962,76.67847,5.042 441,196.6594,258.88864,39.030014,76.90347,5.038 441,178.18445,176.15968,20.406403,42.568924,5.022 441,426.28372,208.19455,21.487732,33.27733,5.016 441,623.4024,-34.778095,26.087708,75.05232,5.011 441,557.6372,183.37503,13.445923,24.018723,4.977 442,403.02005,224.3281,23.003876,49.04663,70.379 442,342.55154,239.42322,74.11362,114.08783,60.736 442,364.59814,274.04468,43.59967,74.655945,10.07 442,-12.316032,479.48196,31.02432,61.309296,7.765 442,395.3168,233.51205,33.221954,63.782776,7.442 442,-6.540727,488.94113,19.599308,43.041107,7.372 442,324.09137,185.51042,16.035553,33.72081,7.338 442,347.09332,255.65474,37.87921,86.117905,7.059 442,283.94824,181.98416,19.044342,35.81372,7.047 442,397.26245,197.8801,32.567535,65.23978,6.693 442,621.8787,477.39078,28.639221,67.966034,6.542 442,4.2160654,146.35196,29.69252,73.79509,6.481 442,313.66052,225.30293,71.74817,127.22658,6.101 442,-18.02153,-66.587204,56.304226,151.07118,5.942 442,627.3956,-17.676304,17.036804,45.738636,5.911 442,363.83572,238.21918,40.788483,75.286255,5.906 442,419.13544,220.69627,16.68338,33.194336,5.836 442,151.84724,170.57751,20.757431,47.094025,5.783 442,-21.274996,404.61774,78.32677,174.05115,5.657 442,473.49454,215.20705,19.201233,35.707016,5.61 442,-11.406102,-32.548084,29.726097,72.59797,5.467 442,-5.7668233,-17.855965,17.397469,42.584045,5.425 442,26.068096,176.55424,21.329472,46.94397,5.41 442,604.4805,437.3379,53.131775,136.9342,5.395 442,376.52948,225.1303,59.796448,93.10216,5.273 442,173.62663,159.69699,26.211014,55.541336,5.187 442,289.5232,198.44913,20.443756,38.457306,5.179 442,603.8013,-54.92131,52.562805,136.63629,5.153 442,290.71262,178.31413,18.02185,31.369415,5.117 442,623.356,-34.692665,26.090088,74.80446,5.112 442,595.38464,181.7585,19.057556,31.978683,5.076 442,602.7856,174.38174,17.59076,30.922943,4.92 442,330.3039,216.44455,19.095398,29.251831,4.865 442,-73.110275,266.69092,200.04749,459.17578,4.8 442,322.3211,197.92288,19.595703,38.64087,4.787 442,-4.9910836,432.43253,16.924482,45.085114,4.744 442,-4.7551055,180.60934,17.011663,43.654175,4.736 442,251.0552,171.05597,18.277313,40.503036,4.707 442,428.86133,229.88568,15.939331,31.181824,4.641 442,1.3949597,490.12305,20.355436,41.70056,4.633 442,283.80423,204.08478,20.116547,41.666504,4.614 442,356.55005,217.05772,35.05182,60.42256,4.581 442,536.1564,312.017,143.7052,338.84872,4.573 442,532.1095,180.38284,15.452209,26.715378,4.552 442,298.09088,208.74118,61.046234,116.8956,4.546 442,397.95105,217.63722,43.61667,64.35573,4.507 442,523.95544,202.50392,15.949341,29.00241,4.496 442,570.8366,182.79408,17.778748,24.951614,4.492 442,258.69943,188.87836,19.066498,36.46109,4.492 442,332.67108,260.949,34.306335,83.80899,4.462 442,380.6317,269.99075,43.373688,74.618225,4.457 442,597.12354,182.43896,30.463928,60.01367,4.444 442,401.773,207.26825,23.402466,40.68126,4.434 442,493.92242,228.56033,237.77985,512.5206,4.413 442,14.590787,158.97942,30.176434,66.387985,4.378 443,441.14398,233.391,63.277252,118.47197,95.522 443,385.72742,214.73987,25.382538,63.986847,86.649 443,277.33792,177.7968,13.675201,30.682037,8.189 443,270.35617,176.87483,14.232727,31.80484,7.656 443,-12.076275,478.8954,30.210764,63.558228,7.313 443,621.8739,476.78897,28.31195,68.59012,6.707 443,-18.066904,-66.74767,56.371483,151.76653,6.671 443,-6.126107,488.77975,19.233067,43.328033,6.59 443,463.92035,237.40173,38.074127,72.353516,6.35 443,261.35013,176.00206,15.123627,32.26895,6.117 443,-16.861187,440.4117,54.73282,134.49655,6.073 443,273.24518,204.70099,21.173584,33.701782,6.023 443,627.41156,-17.492432,16.99707,45.613148,5.975 443,235.95355,173.1834,18.172256,34.314636,5.631 443,437.43237,266.78903,36.893616,80.69269,5.585 443,-11.403566,-32.57216,29.719086,72.781166,5.499 443,409.37213,217.30255,18.999634,39.417236,5.489 443,274.53088,185.143,17.626984,37.465134,5.446 443,604.5762,436.72903,53.162537,137.2125,5.444 443,-5.773278,-17.915134,17.406986,42.660995,5.384 443,620.306,150.29483,17.96045,45.46112,5.371 443,427.52368,218.20918,16.488617,31.46025,5.362 443,242.95935,175.13971,16.78894,31.455063,5.348 443,-38.3905,372.12946,107.46095,273.18597,5.268 443,569.0731,190.99239,21.295288,32.439056,5.256 443,202.74615,179.8461,18.863663,34.3537,5.256 443,-6.5341988,193.17946,19.099037,40.939224,5.236 443,523.7118,174.8118,16.943604,24.445465,5.215 443,623.37756,-34.73376,26.019287,74.83232,5.122 443,535.8526,312.05145,144.1048,338.8072,5.118 443,227.70769,167.31296,19.109848,35.40889,5.071 443,418.47626,216.8259,17.968262,35.47101,5.051 443,234.02478,188.39912,21.260986,41.793488,5.017 443,284.78687,180.83536,12.581024,26.327316,5.016 443,409.6222,-14.336306,18.330536,39.381763,4.975 443,252.5956,172.79515,15.548965,28.802185,4.941 443,564.3093,187.43538,30.950195,54.341293,4.936 443,495.16025,230.28833,236.36935,511.65356,4.93 443,232.85078,209.28706,20.521027,35.854324,4.885 443,456.789,262.01233,34.07663,85.1969,4.847 443,372.28836,217.70538,16.719147,30.05481,4.845 443,196.2346,149.48462,27.192093,57.83287,4.797 443,530.9626,173.1707,17.970154,25.880005,4.796 443,-72.870285,267.6524,199.71512,458.33722,4.784 443,507.59384,404.8561,17.229279,23.184052,4.78 443,475.04196,197.07246,17.195038,29.466187,4.746 443,618.04333,487.52075,20.921143,45.900085,4.68 443,385.1439,236.7802,35.34485,67.4305,4.639 443,603.8131,-55.566902,52.47705,136.0096,4.612 443,-3.0315251,396.2186,14.986992,39.963287,4.575 443,1.0218,201.72095,21.326714,37.620865,4.573 443,389.30573,-15.767771,30.383057,64.37034,4.529 443,5.0751057,468.90976,38.47499,92.25687,4.508 443,363.58688,225.97864,17.387573,30.005096,4.496 443,-3.8854215,145.6544,15.748798,41.759064,4.486 443,397.31442,224.8374,21.375916,46.67746,4.473 443,383.64856,189.92555,28.147888,67.357254,4.465 443,1.9386935,489.64377,19.892189,42.23703,4.444 443,421.94434,240.00677,47.95703,101.37335,4.404 443,271.2547,172.60535,11.354034,22.613342,4.399 443,267.95477,192.33928,31.003021,52.70703,4.342 443,125.62801,150.95483,26.851326,53.86702,4.333 443,368.30917,183.41754,52.291687,102.92923,4.286 443,394.0609,-15.619324,17.506042,38.94773,4.271 444,368.22876,212.37845,26.927216,67.41589,90.42 444,531.1367,245.83054,54.05365,97.19684,40.76 444,210.32622,163.2148,20.578903,43.317505,14.265 444,44.3648,143.12888,26.60569,56.264633,7.923 444,-11.745242,479.45193,30.126259,63.049957,7.193 444,561.13904,261.79407,37.7724,72.40936,6.543 444,-6.0168304,488.79398,19.05125,43.12564,6.485 444,626.5122,487.77023,20.607239,46.5726,6.418 444,205.55997,162.3521,18.186829,35.17453,6.224 444,-17.947168,-65.23649,56.369812,150.8054,6.222 444,394.20056,210.70543,16.668396,27.828018,6.085 444,14.926711,151.94525,28.770092,55.170486,5.994 444,627.43665,-17.374704,16.97107,45.501354,5.936 444,177.1532,177.4191,22.843735,44.009995,5.909 444,371.55377,215.71753,18.970093,35.42006,5.875 444,180.58836,154.33817,28.270798,54.573364,5.867 444,540.5324,270.40555,32.754883,74.028534,5.864 444,612.828,457.4819,38.751892,103.51596,5.849 444,-16.664534,440.11102,54.257935,134.21631,5.73 444,338.00723,224.69543,17.190643,28.871094,5.59 444,1.4673078,155.4238,22.266022,49.505676,5.542 444,171.0869,158.46225,22.01445,43.137634,5.335 444,-11.387194,-32.39772,29.703835,72.80973,5.323 444,-5.758172,-17.921734,17.352657,42.65266,5.285 444,402.9386,205.24506,17.372253,29.567383,5.216 444,623.4255,-34.716297,26.012451,74.86092,5.188 444,-38.964172,370.0667,108.26869,273.75702,5.173 444,582.8431,415.4195,71.83551,173.91443,5.167 444,603.7082,-56.306587,52.898926,138.27489,5.055 444,332.4629,219.79291,17.034607,28.208893,5.033 444,60.42025,141.4085,29.417091,58.21599,4.96 444,-16.59282,125.39339,49.246204,127.60036,4.934 444,365.15686,166.55899,30.47052,58.81143,4.903 444,-0.48870206,303.24973,25.223524,70.68109,4.893 444,503.0878,205.04865,76.53885,128.79071,4.837 444,-3.050025,288.10864,14.693866,37.546722,4.834 444,514.71014,157.94188,18.848938,31.990067,4.76 444,536.2753,313.07556,143.68341,337.72424,4.756 444,-72.9265,267.77676,199.73763,457.60666,4.755 444,555.1269,191.82648,19.375977,32.09465,4.715 444,377.49936,208.17834,17.659576,29.367035,4.653 444,345.45953,215.93661,18.220245,31.966415,4.647 444,384.47784,213.41782,18.276825,30.540253,4.634 444,411.5196,202.9488,17.34256,30.507523,4.621 444,167.1591,171.45741,29.496506,59.879288,4.598 444,-6.0155163,151.63417,19.749714,44.855392,4.591 444,360.2679,-16.636734,20.426636,41.26915,4.557 444,532.53064,180.43488,29.648254,56.302246,4.555 444,350.3284,208.14574,28.23294,56.85817,4.542 444,-3.4320333,429.68066,14.48731,38.21869,4.519 444,74.18773,150.91478,20.432716,38.773483,4.513 444,5.1974273,469.43738,38.069633,92.65967,4.501 444,455.65845,299.42892,37.486115,53.89441,4.458 444,-3.1414962,270.62042,14.423769,37.164886,4.44 444,194.90146,159.93518,19.456512,36.839447,4.424 444,323.47134,-17.295137,16.779022,38.928993,4.413 444,618.25525,489.3325,20.545715,43.994476,4.384 445,438.2814,222.45844,29.517609,67.53467,66.524 445,202.73071,180.4232,21.766342,43.84149,11.037 445,239.18658,165.53633,21.804016,45.623016,8.427 445,-11.796724,479.77795,30.425615,62.953735,7.883 445,-6.174848,488.71417,19.457323,43.595703,6.984 445,621.88367,476.77545,28.41565,68.2334,6.437 445,194.31291,156.1813,21.100311,39.223984,6.312 445,-17.868235,-65.78792,56.383568,151.15825,6.178 445,362.76596,225.56319,19.363922,29.0598,6.043 445,627.43384,-17.45398,16.988525,45.550545,5.942 445,74.69196,144.02496,28.694344,56.67511,5.853 445,40.246834,152.7736,24.412743,47.790787,5.692 445,-3.7852225,153.23978,15.765238,42.638046,5.642 445,-11.482672,-32.56544,29.85013,72.89115,5.477 445,418.91565,227.81773,17.822021,31.738419,5.475 445,-17.027409,441.33884,54.66166,133.71548,5.353 445,208.94492,164.8256,20.067368,36.632843,5.337 445,97.082565,154.36465,21.27237,42.624527,5.331 445,419.46567,215.31764,16.3945,30.10727,5.317 445,-5.839033,-17.935163,17.471134,42.62162,5.289 445,604.5332,436.6758,52.916077,137.07608,5.28 445,-39.024536,370.54034,108.45001,272.52386,5.19 445,-7.850319,108.279785,26.89893,83.46927,5.129 445,623.38684,-34.73731,26.02533,74.82561,5.107 445,419.4189,238.32817,35.63211,63.117355,5.06 445,185.16241,162.30765,22.283264,40.074905,4.978 445,359.60107,-34.081818,27.068542,72.02999,4.96 445,-73.49189,266.29187,200.61444,459.54736,4.958 445,2.0167804,490.3025,19.871567,41.4953,4.944 445,381.618,-33.19857,29.933167,74.04472,4.876 445,391.66602,-17.8139,21.170746,43.02006,4.756 445,536.448,311.776,143.83789,339.40753,4.755 445,-3.923586,127.70625,17.27235,49.437546,4.75 445,354.9423,-18.411127,17.470917,40.11576,4.713 445,-4.1231503,284.89124,15.95034,39.89035,4.683 445,426.81274,203.40448,54.280457,99.6225,4.649 445,603.6829,-55.467827,52.69867,136.36934,4.642 445,193.43173,212.31244,21.776886,36.679718,4.639 445,-18.079128,120.67634,51.809444,131.55206,4.612 445,491.44055,183.19696,17.807312,26.807297,4.573 445,397.26392,166.75815,29.714691,53.49243,4.571 445,595.55457,192.78787,20.782654,30.903168,4.553 445,571.87463,182.20932,30.485046,55.27542,4.527 445,427.6742,228.4367,18.347809,33.191742,4.486 445,494.70758,228.36575,236.54169,514.0558,4.465 445,509.30905,147.80188,13.672699,22.415894,4.429 445,192.93251,179.43335,27.533112,57.052246,4.417 445,104.002075,152.2463,21.163338,34.690628,4.37 445,202.9051,157.89108,19.801987,36.179504,4.343 445,447.04633,218.63889,22.084503,48.988983,4.343 445,418.46307,239.79866,19.668518,32.564835,4.338 445,627.99243,116.55899,17.860718,41.223816,4.331 445,402.2751,233.86105,33.703888,53.395325,4.318 445,523.7334,166.97723,16.927002,25.56044,4.307 445,2.6319695,190.55368,18.900604,32.800568,4.297 445,4.8706126,470.68814,38.36568,91.10666,4.276 445,0.6042266,178.98854,41.566814,88.34169,4.218 445,618.11456,487.48398,20.793762,45.86972,4.214 445,412.59625,232.8329,17.398804,31.375412,4.2 445,408.85022,244.76324,22.744171,34.680542,4.19 445,356.0562,224.31381,18.833038,29.22168,4.188 445,475.0557,-13.640097,16.483063,37.802586,4.175 445,347.36444,-18.01399,16.771332,40.180614,4.127 445,346.759,213.85112,18.568024,27.308594,4.116 445,490.6629,-13.498188,16.405334,37.807423,4.068 445,169.94196,181.92715,20.204926,33.435608,4.052 445,201.01767,216.15509,21.455246,37.96048,4.045 445,165.76729,150.78053,27.142548,56.047302,4.043 445,546.3836,157.58612,18.678589,30.106888,4.034 445,217.60596,164.63637,19.874374,37.382095,4.009 445,427.6407,216.80513,16.432007,28.274185,4.007 445,427.74918,191.04242,15.764435,26.93222,3.994 445,324.07556,187.00977,33.296326,59.23143,3.965 446,522.9154,220.48947,45.767334,90.2215,79.948 446,233.12848,177.48804,21.17746,47.420303,19.67 446,266.3196,166.40146,22.361755,44.00473,12.316 446,274.68042,167.2317,16.611877,32.327255,9.578 446,-6.0894117,488.29044,19.218643,44.976288,7.961 446,258.74625,164.2814,22.0177,40.511215,7.704 446,-3.0961313,294.90482,15.905342,46.652588,6.553 446,226.67752,156.70146,20.6922,38.384888,6.455 446,272.53833,177.58354,21.609955,42.48665,6.444 446,-18.033478,-66.18365,56.404327,151.29875,6.258 446,527.50073,187.19714,66.97998,115.935486,6.238 446,621.8619,476.7653,28.379456,68.32742,6.19 446,239.88055,164.65103,22.762512,38.790207,6.091 446,401.59637,230.56119,21.406708,32.90854,5.902 446,627.4105,-17.550882,17.036133,45.668095,5.887 446,68.98448,147.41077,27.667557,58.108154,5.796 446,-3.2457998,134.1095,16.114532,44.94156,5.508 446,-11.4012575,-32.412354,29.708897,72.55202,5.485 446,230.32402,157.86597,27.995712,57.59955,5.483 446,249.36212,165.7437,21.733093,38.320343,5.387 446,-5.7685785,-17.88243,17.40458,42.595478,5.35 446,-8.503432,464.89874,37.135834,91.27716,5.335 446,612.179,-48.72626,40.51996,103.781,5.321 446,-22.389185,400.69617,79.27239,178.11035,5.298 446,536.4503,310.0587,143.74225,341.49002,5.184 446,386.67508,-17.407528,17.725067,38.972473,5.182 446,-73.55014,265.43204,200.70865,459.70956,5.173 446,604.5887,434.56482,53.21826,138.93921,5.124 446,506.7506,196.37663,17.614197,29.43341,4.867 446,211.55792,209.86804,33.0278,55.60565,4.802 446,499.3056,158.55669,17.195557,29.639526,4.713 446,491.45706,196.15533,18.244171,32.664093,4.677 446,570.4371,187.97733,57.70581,128.81784,4.67 446,101.571976,140.65845,28.406235,58.97336,4.669 446,522.8445,181.16722,18.45044,27.467316,4.561 446,494.53845,228.12488,237.04187,513.73804,4.554 446,506.95715,-14.761364,16.662415,39.345333,4.544 446,2.0716572,490.19897,19.577515,43.012207,4.496 446,572.24036,156.45972,17.806946,29.501495,4.494 446,499.55286,-14.220966,16.301575,39.67692,4.486 446,498.746,196.47853,18.073639,31.466064,4.481 446,490.50238,160.03859,17.698639,30.19664,4.478 446,379.31152,-17.265093,16.941833,38.85648,4.464 446,203.67422,148.98494,27.556381,54.926758,4.418 446,618.1141,487.90073,20.735107,45.412933,4.399 446,514.8832,190.00204,18.137695,27.449295,4.396 446,483.10654,161.29645,17.62268,30.401932,4.358 446,611.59216,191.30582,38.947937,103.50162,4.281 446,217.65578,157.10712,21.504135,39.063538,4.27 446,-18.22829,118.00951,51.353596,134.77365,4.26 446,535.0639,233.2386,25.577637,70.743,4.207 446,391.16245,-35.09584,27.418243,73.63667,4.202 446,105.14044,348.4911,61.352722,154.24347,4.201 446,-0.044037104,432.15167,24.705177,79.34042,4.188 446,508.30017,154.94844,17.151367,27.3284,4.165 446,458.91626,233.40912,18.546783,31.79123,4.159 446,382.58856,-18.115623,29.927948,63.764614,4.149 446,413.82675,-33.64822,28.970856,72.93357,4.141 446,333.23682,178.0557,32.871124,64.3466,4.129 446,6.4755764,122.05771,27.861551,71.43652,4.12 446,-4.6456556,439.60663,16.972424,48.008118,4.116 446,-6.1340566,215.15623,17.804142,39.24994,4.103 446,386.83423,214.22179,17.80774,26.19519,4.1 446,440.89706,178.25197,22.307861,36.784485,4.092 446,579.5143,160.53033,18.39215,30.483994,4.077 446,499.73712,217.92441,45.24579,87.27057,4.072 446,394.484,201.16977,18.822754,33.01541,4.058 447,-5.3793454,201.50755,73.026375,218.9958,65.168 447,249.34114,175.57193,22.571976,57.02208,38.744 447,290.56415,170.98419,18.340332,35.98738,10.287 447,283.1509,170.09163,21.352936,45.701004,8.393 447,-11.871794,477.30127,30.597315,64.91028,8.2 447,-1.5647185,335.05884,26.48327,89.50812,8.067 447,254.8945,171.18375,21.640259,42.824158,7.158 447,-72.32838,262.9748,199.8021,468.5323,6.891 447,-6.479547,488.69818,19.983797,43.25952,6.787 447,-32.794106,160.70203,140.28114,368.9452,6.494 447,276.3835,168.29012,19.189514,36.003082,6.386 447,611.76404,-48.245216,40.8656,103.90364,6.244 447,6.6442013,134.94682,26.234007,58.684708,6.198 447,265.44846,171.3111,20.254547,39.00235,6.094 447,4.52104,205.68321,36.48256,79.23955,6.065 447,613.2131,452.85754,38.848816,108.05859,6.048 447,-18.02177,-66.37887,56.434055,151.39075,5.974 447,0.51560163,270.3069,50.229057,181.3093,5.897 447,626.38403,486.39325,20.74524,48.103333,5.824 447,627.4185,-17.938293,17.24237,46.598957,5.735 447,-11.409664,-32.607613,29.751417,72.59635,5.544 447,243.05885,158.7662,19.12941,36.939224,5.472 447,-5.811981,-17.88298,17.45466,42.448296,5.317 447,-40.608807,356.34332,112.30188,286.91193,5.196 447,-7.6793203,247.80377,43.759422,126.8642,5.156 447,80.97076,154.50185,23.446701,55.24141,5.029 447,3.738968,139.91673,18.029991,43.24788,4.995 447,290.57175,176.46404,28.9133,50.675766,4.995 447,-3.1268077,132.24524,16.159569,41.92604,4.959 447,536.4784,310.01187,143.29816,342.81894,4.918 447,403.17722,-16.862984,17.309998,38.865997,4.916 447,451.70914,166.4231,32.541016,56.84633,4.892 447,-18.210304,436.57516,56.69187,138.69888,4.873 447,430.45364,-32.505817,28.365906,72.434364,4.813 447,604.60034,157.88683,16.415771,27.378418,4.809 447,426.7111,232.01923,17.363068,31.307343,4.792 447,523.30676,-16.453066,16.678223,41.52621,4.764 447,0.18300295,210.94142,47.943913,138.94994,4.745 447,-3.8037024,151.89021,15.75676,40.519577,4.739 447,1.1968839,489.5918,21.025822,41.75641,4.726 447,407.15308,-34.749886,27.639648,72.310326,4.671 447,582.9238,411.8006,71.84363,176.58575,4.602 447,489.6872,214.87836,19.815247,37.747772,4.6 447,16.957104,146.07454,20.281223,42.65303,4.579 447,-12.113572,197.97388,30.84019,69.49817,4.485 447,420.40076,227.59727,16.279419,28.215637,4.454 447,258.46365,160.2751,17.406677,34.48735,4.443 447,515.50635,-15.83177,16.449707,41.115833,4.443 447,218.3825,177.4505,19.817886,39.644333,4.44 447,475.33646,233.7789,18.598053,31.667511,4.427 447,490.05847,249.15042,19.598022,27.793213,4.419 447,211.95619,113.691246,31.372131,78.233315,4.409 447,513.5262,201.04594,20.740845,34.75705,4.407 447,297.13068,172.08125,17.443604,31.45401,4.403 447,457.69928,-14.157574,17.752441,38.37709,4.393 447,494.1955,227.23026,237.34595,514.2926,4.361 447,-10.159451,207.60657,45.116177,104.365906,4.356 447,-12.27887,313.28125,49.19523,164.39474,4.341 448,27.656403,195.0592,93.339226,215.1623,97.559 448,267.41144,173.24507,21.123535,53.55153,29.517 448,4.9607277,207.18971,80.57248,183.87389,12.326 448,24.272482,206.3328,39.054955,59.162872,9.254 448,305.5664,167.64456,22.154785,46.487213,9.112 448,-6.2733603,487.59235,19.869453,43.75641,7.228 448,300.8174,165.07211,17.380493,33.73497,7.112 448,-70.37158,259.5592,199.76083,465.9541,6.755 448,-28.89842,163.48157,139.75864,357.84265,6.711 448,626.6921,486.66934,20.316345,46.666107,6.355 448,435.21216,216.67018,17.150543,26.36702,6.197 448,627.079,-17.310932,17.248535,46.19589,6.141 448,613.20044,453.77234,38.52716,107.874756,6.136 448,611.5391,-48.17791,40.556213,102.4452,6.062 448,13.812439,276.9027,60.74771,140.62656,5.946 448,1.5210938,222.93164,49.47783,130.50824,5.932 448,-17.785837,-65.8381,56.305626,150.83006,5.885 448,427.43646,216.92628,17.790955,25.418625,5.84 448,272.13632,166.88168,21.351044,38.59424,5.806 448,18.943233,141.03116,140.92151,318.4168,5.793 448,29.402737,298.8804,36.207905,99.677734,5.674 448,423.66116,-33.55416,27.428436,72.53555,5.608 448,530.0186,150.45091,20.332397,35.235947,5.528 448,-11.43558,-32.62362,29.760601,72.821335,5.499 448,499.3695,235.84068,18.301758,30.926071,5.389 448,59.046143,207.3829,41.132042,79.0892,5.388 448,-5.7953854,-17.926197,17.429115,42.600807,5.368 448,507.07275,236.7634,17.54712,30.143494,5.35 448,426.59244,-18.484533,17.861725,40.79139,5.222 448,2.7746975,195.55412,32.822628,54.352203,5.202 448,449.56384,233.0283,20.454315,33.82582,5.169 448,419.5316,-16.719986,17.040314,38.329826,5.155 448,538.49835,148.76251,19.46051,36.220856,5.146 448,454.20178,-31.754719,29.05783,70.532814,5.137 448,-9.388129,466.43512,37.611538,88.82355,5.054 448,15.128996,205.53436,54.864548,101.185,5.032 448,538.3099,194.7121,20.723206,34.98294,5.012 448,292.0001,163.76083,17.378601,32.508133,4.98 448,133.69006,142.38441,26.195175,57.940964,4.959 448,-6.411889,231.0478,18.931992,45.277695,4.952 448,545.8766,194.23956,20.38623,39.06549,4.923 448,234.91461,136.3269,29.165314,62.856262,4.906 448,2.5140762,268.59174,35.365906,75.66095,4.902 448,-4.065064,137.53265,16.888634,46.226624,4.89 448,1.4983118,488.35873,20.548811,43.401947,4.841 448,240.84814,164.50706,20.462646,45.98387,4.828 448,522.90375,152.71324,19.90863,32.774643,4.826 448,155.03986,167.96509,19.390808,42.148987,4.807 448,311.84225,180.03583,22.736176,42.361862,4.79 448,418.44864,214.04988,19.021515,29.181824,4.755 448,514.8773,236.889,18.508057,30.966187,4.751 448,96.35227,148.75009,21.611855,54.000122,4.735 448,-42.848274,359.1443,113.15437,280.12305,4.729 448,583.5687,412.12704,71.12488,175.77225,4.723 448,536.57025,311.24585,142.90094,342.23303,4.674 448,618.89825,488.6403,20.132874,43.943268,4.661 448,522.56885,182.48047,18.932251,27.614334,4.631 449,91.41841,192.6543,88.95683,214.44421,95.458 449,284.02618,172.47748,22.487457,53.625397,24.13 449,623.1415,-33.17876,26.152039,73.32256,10.2 449,627.20483,-17.345106,17.178345,45.465527,9.196 449,316.69012,167.50848,18.861267,39.47696,8.936 449,330.59534,167.09659,16.746033,36.05902,8.435 449,324.99902,167.79353,15.497253,30.879898,8.377 449,74.34494,243.5368,69.29985,164.0639,7.377 449,-12.391229,478.7713,30.874428,62.613342,6.9 449,-18.017633,-65.05831,56.799797,150.33333,6.683 449,612.97626,453.20847,38.990906,110.08121,6.421 449,622.21686,476.41733,28.157837,66.62344,6.322 449,257.8729,165.8948,19.65207,44.97693,6.156 449,-72.035736,261.33282,201.29738,464.0738,6.093 449,-6.450734,488.86264,19.610023,42.69815,5.956 449,-11.398984,-32.48931,29.58797,72.458275,5.75 449,86.90195,161.78114,136.7948,310.3125,5.633 449,599.308,68.82907,28.758362,89.74396,5.58 449,-21.475294,402.75934,78.82091,175.32947,5.576 449,447.15805,-34.741516,27.610657,74.31563,5.547 449,564.28284,147.2555,15.393372,28.507675,5.532 449,-4.2231197,329.22397,15.780498,43.420868,5.498 449,265.88562,168.77686,19.688446,44.661713,5.423 449,442.60406,-18.4985,17.963684,40.97122,5.328 449,35.01349,170.72641,132.92413,305.74805,5.313 449,-5.8016205,-17.95825,17.377254,43.01224,5.309 449,308.85953,164.38046,16.615356,31.02887,5.241 449,474.12848,234.54579,19.628601,34.893234,5.235 449,330.20047,363.2457,20.739136,30.276855,5.207 449,450.5152,216.03642,18.749298,26.627075,5.193 449,618.86035,-16.830397,17.610474,42.022793,5.19 449,-6.375786,209.18538,18.819048,39.198822,5.174 449,603.49084,-56.065865,52.543335,132.63606,5.15 449,-3.8097014,346.40155,15.728775,42.972076,5.119 449,522.5582,233.1401,18.96875,33.45401,5.08 449,291.50998,162.80843,29.723053,54.886,5.053 449,-40.584396,365.13025,111.032326,277.73926,5.036 449,0.8225739,205.225,21.864246,34.724457,5.022 449,123.68801,237.685,52.024727,146.11719,5.006 449,-3.3632288,362.0667,15.729944,46.118225,5.003 449,3.0908382,148.90523,15.735795,39.966446,5.001 449,347.58823,366.0062,18.98996,28.724731,4.947 449,458.8599,215.86238,17.790161,27.351578,4.938 449,107.37398,152.27606,21.028915,48.99843,4.912 449,-3.3814254,312.94,15.152052,44.112732,4.896 449,329.09335,180.5492,20.61673,39.661255,4.873 449,583.5575,412.57855,70.91858,175.23627,4.86 449,196.02922,151.82593,15.581375,25.891998,4.801 449,316.5844,163.15158,14.876312,27.127686,4.758 449,435.30896,-16.326635,17.048279,38.326305,4.747 449,613.29407,75.72683,25.16272,92.99241,4.739 449,276.98874,169.9072,20.761566,52.786804,4.727 449,531.03467,233.99394,18.494751,32.711502,4.727 449,251.46466,164.04282,18.341522,40.83304,4.72 449,104.80321,197.30327,37.3994,66.58147,4.696 449,321.63205,364.18985,21.090393,29.348602,4.683 449,536.1878,311.79636,143.28693,341.19974,4.66 449,556.5735,148.57576,15.663574,28.083206,4.609 449,450.08722,-18.099934,18.673737,41.196716,4.582 449,299.6582,162.02727,16.929993,31.962479,4.575 449,275.05792,161.06966,19.714172,37.925613,4.573 449,-3.5386362,139.84807,15.564988,42.118683,4.57 449,262.82373,215.57312,26.531128,45.424866,4.566 449,1.1819744,192.12366,35.817657,54.668488,4.55 449,619.1928,489.17715,19.81659,43.758636,4.529 449,170.87236,150.40671,18.959335,38.11006,4.502 449,402.94003,177.0122,32.782776,70.537994,4.5 449,-3.9426756,429.65808,15.981855,38.41681,4.485 449,338.71228,362.90082,20.174805,30.369537,4.482 449,243.48662,178.69193,18.739456,33.24997,4.432 450,175.33128,190.31491,86.14314,220.19894,96.383 450,313.14417,172.19905,22.324646,53.877518,34.777 450,352.44196,165.89906,22.127075,51.2005,13.007 450,210.43713,234.22809,61.379242,160.58215,11.86 450,-12.189468,479.40643,30.282995,62.8432,7.375 450,-17.696836,-64.11121,56.490753,148.27496,7.194 450,175.92744,280.12283,47.755447,122.30353,6.7 450,626.7306,487.7919,20.44983,46.453094,6.276 450,-6.340369,488.94424,19.337673,43.119354,6.199 450,347.89844,163.43253,18.768402,37.32408,6.185 450,131.0721,149.04732,22.123993,54.073395,6.05 450,-17.194778,440.76678,54.87402,134.29022,6.019 450,3.137703,169.23376,15.980629,35.47148,5.892 450,612.94403,456.96985,38.525635,104.6911,5.839 450,340.11295,161.01883,18.4617,36.62776,5.655 450,362.27045,165.51096,16.897339,32.284332,5.573 450,-2.686756,156.12625,14.952424,38.676376,5.553 450,623.4499,-33.70689,26.033997,78.370926,5.547 450,-11.289871,-32.789795,29.7229,74.71395,5.49 450,83.50238,169.80193,18.792526,41.3752,5.468 450,320.29077,164.28609,20.281158,40.94899,5.427 450,-3.069097,308.60553,14.7128315,40.04886,5.349 450,-5.4425125,-17.411228,16.997347,43.25008,5.325 450,-38.517723,371.9796,107.79777,272.37866,5.324 450,474.22153,-19.269308,18.31845,41.64386,5.319 450,627.1665,-19.175516,17.411194,49.865456,5.211 450,490.0307,226.25812,18.571655,31.657745,5.204 450,471.73874,-33.92578,27.596466,72.38387,5.192 450,-3.4164062,378.20114,14.759771,43.28891,5.157 450,39.4966,207.61317,24.787807,31.832336,5.137 450,583.3894,414.56384,70.90509,174.64166,5.096 450,284.38425,212.59254,31.57486,56.110764,5.041 450,-73.895805,266.15506,201.45164,458.22787,4.993 450,613.3849,83.094986,25.843018,87.474945,4.992 450,467.16922,-16.884665,17.40683,38.198376,4.975 450,602.9797,-57.05461,53.678284,137.78745,4.916 450,-3.294916,426.99762,14.636761,37.927094,4.874 450,2.435164,152.55042,16.354517,37.680344,4.83 450,483.88214,218.73503,16.653412,25.158524,4.745 450,492.61694,217.82596,15.846863,25.234879,4.689 450,307.609,149.68968,18.483643,37.678955,4.68 450,288.98853,163.87997,20.386261,51.022705,4.665 450,511.85153,235.74887,20.910248,36.06668,4.663 450,4.957389,469.2311,38.65759,92.08261,4.552 450,157.73904,210.38919,73.41084,172.82785,4.518 450,588.0291,149.61673,17.707458,30.245987,4.518 450,-2.9410048,139.80798,15.011832,40.763306,4.499 450,216.53546,231.34055,38.274124,101.26196,4.481 450,596.19305,149.51889,15.749573,26.137695,4.461 450,-2.923913,395.3044,14.190191,40.800537,4.453 450,570.39514,233.64012,18.897705,34.555557,4.445 450,296.29095,223.17647,23.018555,43.61342,4.435 450,-2.7193544,411.87692,14.156549,38.473022,4.428 450,536.0983,312.52917,143.2796,339.68408,4.418 450,371.84204,166.87273,14.858673,27.71695,4.368 450,493.8443,229.03311,237.08008,514.4238,4.347 450,481.88354,-20.2426,18.790894,43.783978,4.342 450,486.27792,-35.227993,28.433258,76.163216,4.335 450,-3.4994092,444.99298,15.259209,37.201385,4.329 450,1.9525695,490.20062,19.867573,41.597717,4.32 450,4.4537907,381.49863,14.051399,41.815826,4.301 451,315.65936,214.17854,89.38507,212.56096,96.565 451,426.8427,178.72108,17.388092,42.295822,18.678 451,147.12932,184.73181,17.76007,44.06523,7.929 451,-11.889187,479.0083,30.031273,63.5531,7.6 451,623.0901,-34.664856,26.791748,73.61575,7.16 451,4.0204563,169.72069,30.198637,63.8992,7.002 451,1.0387516,180.47502,20.772858,46.86667,6.837 451,-17.500187,-64.00794,56.43613,148.75868,6.756 451,627.11835,-17.51913,17.537292,44.02252,6.61 451,-6.1394987,488.63574,19.363857,43.504883,6.602 451,621.8346,477.0535,28.556274,68.5715,6.46 451,-16.67658,439.90213,54.452347,135.05777,6.149 451,435.45013,179.29837,15.006531,32.783005,5.869 451,422.05804,177.87195,15.868744,37.88542,5.791 451,604.2302,437.04053,53.906067,137.55194,5.643 451,412.30176,175.11447,16.361603,38.41948,5.459 451,-38.42521,373.0146,107.4895,272.2437,5.365 451,-5.27509,-17.711426,16.511925,43.22399,5.237 451,-3.1412067,394.47183,15.279693,40.60724,5.216 451,-11.402506,-33.052193,29.551716,73.948814,5.194 451,603.2176,-57.45751,52.81781,132.83363,5.128 451,-4.165819,349.35712,15.141626,36.716766,5.079 451,339.20355,126.95369,30.712463,79.48103,4.961 451,618.41113,-17.249134,18.191772,41.125076,4.917 451,-72.53647,266.7508,199.82712,459.23633,4.913 451,444.83044,180.49432,13.278107,29.68248,4.885 451,197.91559,160.95467,27.11438,60.275726,4.869 451,5.0760746,468.79352,38.137535,93.44403,4.834 451,594.03253,-47.236946,44.20453,96.2622,4.73 451,561.8046,235.30978,19.951172,35.86801,4.717 451,611.1825,161.85645,29.197266,77.71985,4.701 451,586.82043,254.16568,19.19696,34.05493,4.689 451,423.04523,182.46431,25.182861,57.220123,4.668 451,536.2473,311.27423,143.88397,341.00433,4.623 451,1.8327713,489.28336,20.236624,42.527496,4.62 451,-10.5795145,25.379166,31.31615,65.028465,4.611 451,384.3813,174.26074,21.901245,50.151596,4.518 451,554.29016,228.38522,20.018494,33.463867,4.513 451,370.60986,170.11415,21.006775,43.584335,4.505 451,-3.7536788,378.1653,15.41954,42.89148,4.498 451,-4.236495,362.75183,16.046444,42.36261,4.477 451,328.69095,305.44916,61.700165,126.35245,4.47 451,538.6694,-16.77503,18.099792,37.98125,4.455 451,-4.9482937,27.98568,17.82767,40.59571,4.447 451,336.73053,170.15314,20.463806,46.677902,4.43 451,-5.716741,175.67572,18.27674,45.4189,4.425 451,395.82108,171.98288,16.469269,34.494186,4.365 451,494.93973,229.23355,236.40616,512.2081,4.334 451,-0.069595575,199.32634,22.829195,46.69664,4.258 451,404.4847,174.48601,16.720398,38.524246,4.239 451,617.8581,488.08893,21.237366,45.300476,4.225 451,613.28516,-19.662724,28.724854,66.21408,4.206 451,-9.931693,163.5897,27.976158,69.83104,4.171 451,332.5005,327.03464,33.60486,91.87976,4.147 451,10.175786,396.2129,17.898182,38.336487,4.117 451,106.97625,417.50885,19.309792,33.738953,4.115 451,153.26384,196.8254,18.649368,35.794342,4.099 451,546.0536,-16.867947,18.473755,39.065464,4.067 451,291.93576,485.77237,32.109375,57.326324,4.046 451,149.26917,165.52672,25.921906,58.003677,3.995 451,-9.873535,183.92883,38.473434,94.566895,3.988 451,4.4537063,397.04254,15.289404,37.711212,3.983 451,164.34271,415.2768,31.210419,55.08847,3.973 451,618.9662,245.60985,18.699463,43.235336,3.942 451,586.6311,-101.73438,75.54901,235.55844,3.94 451,616.3956,20.629305,22.263367,50.25775,3.903 451,-4.7228174,153.11594,17.4278,44.60553,3.858 451,105.06819,226.4251,22.413483,28.401993,3.851 452,532.82416,206.7609,88.925964,255.3386,77.162 452,532.62085,191.40814,16.037842,39.74269,10.281 452,-11.825995,479.69107,29.95216,62.41269,7.991 452,544.0475,280.62418,56.051147,188.91306,7.279 452,621.7087,476.26657,28.945679,68.87125,6.344 452,484.3068,169.75916,125.275055,323.58502,6.229 452,-16.984943,-64.245,54.829376,146.97392,6.138 452,627.36707,-17.879547,17.098206,45.970695,6.117 452,251.65704,198.5457,17.430511,41.43477,5.974 452,302.3047,172.54475,24.574554,63.16954,5.924 452,603.71857,-56.363842,52.587524,139.04512,5.855 452,-16.673723,441.087,54.275734,133.71677,5.836 452,549.38055,349.7125,30.869629,98.97537,5.74 452,-5.3084445,-16.1759,17.001024,41.04463,5.712 452,484.8557,177.4387,237.17499,482.36298,5.594 452,465.2423,244.8586,34.3031,63.902878,5.582 452,458.99323,449.67188,19.100006,33.436676,5.355 452,516.48737,186.47546,14.939514,34.99173,5.257 452,623.3982,-34.87294,26.005615,75.19226,5.233 452,-38.80352,371.4524,107.90888,274.79077,5.165 452,604.3023,433.48322,54.576782,141.08368,5.082 452,368.7036,201.87645,22.1669,39.975677,5.076 452,-73.125275,266.7454,201.02353,460.40036,5.043 452,-11.341351,-32.133755,29.709145,71.861046,4.997 452,5.2400503,469.45813,38.21389,91.63989,4.963 452,532.5352,228.81654,146.41705,318.33203,4.833 452,525.46906,188.76344,14.734863,34.091934,4.806 452,489.32544,195.239,24.041016,69.24977,4.801 452,450.99918,245.08192,35.046906,70.28288,4.753 452,-4.434877,426.59378,16.28402,40.852356,4.713 452,1.6552579,489.46573,20.332066,42.670868,4.665 452,18.592302,185.26389,30.567656,60.856247,4.655 452,225.73737,266.5236,20.629196,29.675903,4.628 452,217.39006,267.03928,21.089996,29.60254,4.598 452,539.9497,191.40804,14.775452,31.62735,4.573 452,2.5840979,254.98053,19.523838,34.813477,4.508 452,9.534464,176.25919,28.782446,65.51573,4.433 452,3.4915555,-14.888417,15.555034,39.416344,4.419 452,-5.055964,167.49069,18.002707,45.92227,4.394 452,437.3961,129.25648,28.667145,77.74811,4.353 452,627.05,57.284756,17.575012,46.383213,4.288 452,-5.820408,254.90987,17.730991,38.99391,4.264 452,509.55847,183.73544,16.076965,36.759766,4.239 452,209.72665,265.7867,21.104263,29.799438,4.235 452,535.84717,194.69365,20.256714,44.15825,4.231 452,418.5108,254.35309,36.588745,65.63977,4.212 452,478.47577,250.10635,26.326752,44.708466,4.185 452,-3.5974545,47.941998,14.887167,34.61855,4.12 452,467.29477,447.6215,15.881348,28.12436,4.108 452,441.40012,197.19269,22.296051,43.123795,4.061 452,452.00812,447.20392,18.871704,36.279053,4.061 452,78.18829,190.61722,28.8434,61.47827,4.054 452,-9.998697,-7.9392433,39.597717,103.55133,4.037 452,7.8051996,166.78609,60.897682,112.85057,4.015 452,146.90366,171.71771,21.123978,44.161346,4.011 452,-10.539425,154.90475,29.155113,69.618454,3.983 452,348.91757,174.21417,25.721985,58.61194,3.983 452,-3.8376637,411.03445,15.660038,38.203888,3.964 452,4.7460513,52.100212,14.481892,30.858498,3.952 452,201.40364,257.82187,21.09755,30.80249,3.941 452,617.4726,487.31186,21.946655,46.504242,3.919 452,24.173079,253.12048,23.023443,28.10022,3.908 452,2.4619174,240.21716,18.457903,32.868835,3.894 452,-2.865572,463.462,14.675806,35.105865,3.891 452,199.61288,242.49481,24.107956,30.054443,3.887 452,-3.0136385,395.18127,13.965792,36.94049,3.887 452,460.16666,440.1524,16.974274,30.348358,3.863 452,612.91425,311.50684,37.990417,117.25012,3.835 452,-0.3176093,-40.400707,50.83759,144.2624,3.831 452,-4.8450913,238.4475,16.38662,35.589584,3.828 452,436.867,182.85431,19.662476,44.347687,3.809 452,384.4547,204.17538,22.554321,36.04805,3.783 453,513.36975,254.28102,34.85608,73.65062,7.937 453,545.87085,204.367,19.095703,54.57965,7.691 453,514.6493,196.5387,19.876709,48.23474,7.675 453,-11.84499,479.13724,29.587393,63.366974,7.461 453,176.33359,166.31616,26.582993,74.17459,6.955 453,-6.144456,489.08228,19.13412,43.252747,6.665 453,621.8548,476.42188,28.462036,69.06433,6.211 453,-16.885601,439.29144,54.391953,135.38727,6.025 453,282.35486,202.97394,17.701416,44.627655,5.953 453,627.3417,-17.910923,17.114136,45.904713,5.951 453,77.95089,195.5842,31.45269,62.9252,5.89 453,-5.207472,-17.306948,17.203272,42.554222,5.799 453,-12.438992,-42.407215,41.207382,103.118866,5.758 453,23.154694,180.48077,33.50266,69.16016,5.596 453,332.18323,180.93607,20.87735,53.252,5.478 453,604.4085,436.28723,53.199463,137.78613,5.302 453,522.72015,205.00018,17.677246,41.52826,5.284 453,66.33613,77.08411,31.611015,67.514725,5.278 453,623.35364,-34.947384,26.108398,75.12428,5.253 453,3.728397,270.18454,16.857353,28.967743,5.11 453,-38.942337,370.63184,108.20964,275.75085,5.029 453,-72.7441,266.56616,200.49594,460.58472,4.969 453,575.4977,189.15387,23.027954,65.570496,4.924 453,604.07623,-56.54418,52.59247,135.12282,4.821 453,232.91977,281.5268,22.052551,31.292877,4.606 453,249.47714,257.19095,21.508423,29.470123,4.564 453,5.216693,467.3774,37.88573,94.15878,4.521 453,264.34088,281.90793,22.799591,31.401093,4.439 453,536.32227,311.88983,143.16931,340.46295,4.433 453,10.604873,169.9644,59.182556,112.17296,4.432 453,507.36118,204.88835,18.690521,41.60341,4.376 453,2.2763686,490.2428,19.729113,41.791626,4.375 453,528.8548,258.4418,34.987244,68.710144,4.322 453,493.52267,228.068,238.12186,516.6641,4.231 453,530.28064,200.8194,25.942627,66.20227,4.215 453,248.06143,280.91812,23.53299,33.06958,4.203 453,348.16144,273.55487,33.009277,62.553925,4.191 453,617.7566,487.4356,21.306152,46.403625,4.151 453,594.16406,225.72377,20.187988,34.43187,4.11 453,518.6707,183.7362,24.69629,58.24977,4.109 453,469.0469,135.88281,28.366302,80.40842,4.037 453,249.67009,264.5664,36.330948,49.067657,4.001 453,299.91367,487.22375,32.353455,55.74951,4.0 453,217.37018,282.2338,21.18103,29.434021,3.967 453,-4.1596303,364.39267,14.970497,37.4429,3.962 453,3.1838918,-15.985526,16.379292,39.695606,3.944 453,160.16699,172.6196,28.704254,64.8851,3.943 453,177.90363,283.79288,20.486694,27.037231,3.916 453,108.59542,432.48914,16.939522,29.16397,3.897 453,138.40727,272.49185,20.125565,31.733337,3.894 453,-3.4853039,428.54266,14.934986,40.993744,3.883 453,586.4899,226.20258,19.821655,33.337036,3.873 453,85.399,175.26712,29.514023,70.17743,3.872 453,152.7972,176.43283,21.589417,45.788605,3.857 453,622.0499,118.09662,25.329224,68.84952,3.857 453,525.5308,258.81284,26.374939,43.292755,3.855 453,267.86133,178.2594,18.1409,43.006317,3.84 453,-4.737863,107.986145,16.099655,40.91513,3.839 453,79.43732,80.727394,29.86354,69.908165,3.824 453,375.04034,174.52773,25.096008,59.785645,3.823 453,-37.950954,-129.39543,117.73517,285.37967,3.799 453,418.68683,181.62715,17.770966,30.021637,3.784 453,256.90018,273.7167,22.942749,33.359375,3.784 454,325.45892,177.63202,24.664185,69.25755,17.151 454,265.03775,202.49329,20.118896,53.773743,9.49 454,-11.867275,479.38547,29.941956,63.013763,7.328 454,-6.062256,488.67593,19.05355,42.999115,6.89 454,537.9717,268.2216,33.96765,80.541565,6.868 454,626.45685,487.36758,20.776672,47.405,6.175 454,509.1529,187.46658,27.196228,64.19675,6.084 454,627.3368,-17.910603,17.102783,45.9283,6.002 454,462.78717,137.71693,27.89273,86.01247,6.001 454,46.939503,157.32861,27.329884,71.802826,5.885 454,-16.954931,-64.59361,54.828903,146.034,5.852 454,521.0393,201.47852,19.91101,44.07596,5.832 454,612.85925,456.95822,38.889343,104.55893,5.799 454,-5.328021,-15.905832,16.964699,40.25474,5.773 454,-16.98939,440.84918,54.51159,134.05829,5.702 454,623.3744,-34.95532,26.06189,75.15528,5.246 454,123.64529,53.688118,31.404778,60.70484,5.195 454,583.4491,414.04504,70.82446,175.10065,5.17 454,347.93002,292.39337,32.404877,61.33365,5.024 454,-11.363689,-32.03566,30.22299,70.95679,5.019 454,-73.004234,266.2509,200.7106,462.55905,5.001 454,547.17804,215.45367,19.570923,37.54933,4.986 454,588.02356,181.76144,18.63562,46.196564,4.982 454,529.6143,195.8227,19.94403,42.079697,4.929 454,299.39874,201.06007,16.556671,32.58104,4.871 454,82.31429,189.90057,20.693886,34.80072,4.821 454,-39.78699,369.4334,109.35481,276.98798,4.813 454,499.29916,199.73897,31.479584,60.097183,4.799 454,332.3637,289.88248,31.10254,61.049408,4.759 454,313.4383,299.83307,23.239868,42.370544,4.756 454,411.83224,184.37016,15.2361145,27.191422,4.696 454,2.0000362,489.3745,20.078613,42.298462,4.683 454,-5.157489,49.994087,17.225523,45.04602,4.644 454,603.90497,-55.781128,52.566895,137.02548,4.642 454,1.1486566,185.01007,18.081076,47.464203,4.614 454,272.8285,205.19324,18.392548,43.44919,4.561 454,539.2727,184.5989,17.611145,33.929214,4.468 454,523.0144,269.4918,34.81189,79.513794,4.439 454,536.43207,311.79593,143.00946,340.54453,4.428 454,5.052558,469.6893,38.45405,91.49069,4.426 454,617.89374,488.4238,21.142029,44.608185,4.405 454,251.3841,172.77434,17.849579,42.060577,4.404 454,499.13773,276.96356,34.60977,78.20801,4.376 454,508.61356,180.13158,16.233246,35.79741,4.354 454,105.29209,185.65407,22.26062,34.281174,4.342 454,44.592934,204.83853,31.20752,69.07196,4.33 454,401.4404,188.04503,18.053131,41.00847,4.319 454,621.75806,120.85454,24.629272,74.97981,4.274 454,230.13686,183.41666,28.263687,66.054794,4.27 454,1.8608403,228.68079,19.592005,45.372253,4.261 454,238.52582,160.26178,28.046906,67.11955,4.247 454,493.75748,229.14871,237.84286,515.6637,4.221 454,363.75217,294.28955,32.3396,61.1752,4.182 454,316.73068,295.60382,32.108307,60.79831,4.124 454,251.16524,265.35718,18.193527,30.260864,4.079 454,251.45831,293.1454,32.8154,62.91736,4.069 454,514.4193,181.23915,16.647522,35.327866,4.068 454,89.68872,270.34818,21.781296,32.97415,4.067 454,584.7958,183.76027,24.07727,75.52861,4.056 454,395.96744,183.99005,18.189362,38.80774,4.05 454,-37.668762,-127.12713,117.46471,278.59647,4.049 454,136.03152,255.63109,37.13893,54.869827,4.048 454,288.79614,308.0162,23.06488,41.318756,4.046 454,97.55998,190.68561,22.339798,34.40277,4.042 454,429.4725,195.40636,15.069733,25.754059,3.997 454,75.59005,190.63008,18.717468,34.381485,3.996 454,296.45825,301.42874,23.308533,42.90918,3.982 454,147.48169,179.40814,27.184326,65.15874,3.977 454,-3.2948446,462.41675,15.290292,36.33847,3.914 454,381.64142,174.93372,26.65332,59.923798,3.91 454,315.75793,486.62415,32.557495,56.600708,3.901 454,90.25359,274.40225,33.390266,56.861176,3.892 454,171.2904,298.00504,33.590332,59.408142,3.884 454,436.4455,195.26581,15.068848,26.104034,3.854 454,374.18307,179.93852,24.912415,61.69084,3.852 455,304.891,172.13751,26.5336,74.20964,35.071 455,232.0237,194.98189,26.20665,73.35503,19.765 455,505.70633,204.93283,20.457794,45.365143,10.87 455,566.4025,221.04276,30.543823,70.13583,10.015 455,-11.710209,480.30084,29.818495,61.95862,7.194 455,-5.5235476,-16.164059,17.361431,41.73318,7.05 455,347.96344,197.48149,20.44928,47.920944,6.962 455,-6.2206383,489.29526,19.185078,42.179596,6.632 455,228.60852,196.91588,20.513428,54.85614,6.632 455,512.8607,196.336,20.499207,47.99872,6.072 455,626.4226,487.66095,20.591248,46.959717,5.903 455,314.71936,178.39893,27.295135,66.75079,5.834 455,627.3796,-17.850403,17.17389,45.992043,5.822 455,599.24915,190.775,25.19806,82.593445,5.735 455,453.5536,185.82726,18.270752,44.14621,5.697 455,211.12225,184.92894,18.312027,45.014786,5.634 455,521.27496,207.27612,20.818665,39.007996,5.63 455,-4.5731883,271.5885,16.140047,32.205444,5.582 455,240.84734,204.74619,20.840927,54.439453,5.572 455,-16.599752,-64.00093,54.924843,144.99754,5.548 455,-4.486457,172.63924,16.779564,37.166763,5.517 455,613.4413,457.174,38.496643,104.125,5.445 455,-11.207621,-31.022312,29.492258,71.62699,5.421 455,205.33699,164.5309,28.402466,59.96498,5.38 455,218.65015,189.82742,19.6315,48.47351,5.356 455,-73.925186,264.19986,202.15448,464.34384,5.314 455,603.7467,-55.30629,52.529297,137.63275,5.102 455,2.3780913,279.96243,18.050829,30.22638,5.08 455,2.8208792,-12.989591,16.846294,38.71701,5.025 455,623.37683,-34.932247,26.062988,75.29109,4.993 455,583.3037,412.92297,71.10181,175.54266,4.977 455,536.988,310.88422,142.67297,342.28485,4.811 455,207.06612,188.20746,27.488007,63.036575,4.797 455,10.15049,184.51126,19.066315,39.08322,4.728 455,365.36606,182.00827,26.565216,56.546753,4.717 455,-21.936779,401.89673,79.561066,175.93298,4.713 455,618.3619,488.71057,20.452087,44.47345,4.571 455,42.708885,332.33078,33.61168,69.41882,4.479 455,2.2411895,490.54315,19.729643,40.636536,4.477 455,3.4928517,175.55978,18.495823,35.083237,4.47 455,201.30797,172.31595,19.933273,44.2097,4.466 455,-6.1026783,282.27032,17.187243,35.70691,4.457 455,497.88135,193.9244,20.708862,51.985107,4.428 455,-4.567005,157.49121,16.13185,37.344437,4.418 455,493.63947,227.96185,237.83563,515.1452,4.397 455,2.5076537,161.52946,17.216497,33.800995,4.394 455,551.5482,206.66794,38.723267,90.15616,4.389 455,-37.259754,-125.49629,116.89644,275.8375,4.381 455,585.7022,296.2093,35.0047,72.82678,4.376 455,193.75604,168.87482,19.967407,48.13452,4.338 455,617.2764,114.8479,20.424927,60.835815,4.335 455,105.16331,175.43018,29.283989,68.4704,4.303 455,514.6716,218.11362,17.971924,34.688034,4.243 455,227.06786,179.7346,18.902878,43.048096,4.238 455,301.09103,220.02808,30.669281,59.243042,4.23 455,231.83011,168.4331,27.014282,71.5529,4.224 455,529.8087,205.74701,21.086914,38.411972,4.22 455,539.27124,199.74902,28.320923,56.261963,4.22 455,-4.725691,186.02136,16.698723,38.48448,4.19 455,-10.542182,160.43929,29.163944,61.935623,4.181 455,-4.700105,255.05363,16.553543,34.271866,4.171 455,387.00464,188.37064,18.703247,40.005722,4.126 455,622.72003,109.100334,25.560059,70.469154,4.066 456,230.95047,168.30095,28.94461,76.93492,45.014 456,140.55069,188.761,31.80661,85.73927,18.225 456,474.52405,207.94814,20.009583,45.267334,14.138 456,283.3302,199.43134,20.778564,47.655716,13.053 456,466.60812,206.71243,20.021088,47.38217,8.911 456,458.74417,197.37062,19.368439,47.01123,7.554 456,488.84955,198.82202,22.1232,45.751633,7.382 456,10.011436,199.12775,19.533373,46.845932,7.101 456,481.24762,201.08359,21.305847,46.34543,7.083 456,-5.9852176,-17.816275,18.225801,43.79302,7.019 456,626.3402,487.4275,20.38733,46.844116,7.002 456,153.54926,197.86691,32.66365,71.23004,6.971 456,-11.020955,-32.474125,29.573189,73.13414,6.734 456,441.22168,191.04211,20.42804,49.461945,6.516 456,-6.4760404,490.0151,18.744783,41.458405,6.449 456,289.0743,186.3073,20.87259,47.23767,6.413 456,-11.903219,479.80984,29.199657,62.0596,6.212 456,560.5297,213.24918,41.199463,104.47009,6.01 456,243.68935,171.42581,26.980911,71.63339,5.894 456,-4.200474,171.27058,16.283188,43.14862,5.859 456,627.4287,-17.763233,17.167236,46.183098,5.743 456,612.55164,456.636,39.786255,104.25519,5.614 456,397.99316,188.7651,16.30188,39.773743,5.608 456,548.06116,227.48839,31.823547,72.68361,5.557 456,296.9769,190.33188,20.10019,48.852097,5.55 456,-18.053709,-63.93597,56.932037,141.1707,5.542 456,590.5835,186.84644,25.415588,89.29489,5.485 456,603.79663,-54.730515,52.22821,134.64273,5.36 456,403.45923,197.41263,18.891083,38.783783,5.298 456,2.5100212,-17.60096,17.832699,43.045704,5.267 456,583.405,413.91968,70.95404,174.06372,5.232 456,127.91885,188.69278,31.003128,77.70035,5.212 456,459.29974,185.96573,16.535706,35.54486,5.171 456,-4.6704807,140.42897,16.142002,41.545715,5.102 456,-9.151591,165.87778,26.52454,69.14679,4.96 456,572.90735,202.46603,49.36554,132.69888,4.941 456,4.235833,186.39954,18.114246,48.23224,4.927 456,-9.340645,463.09854,37.743553,93.69992,4.902 456,-73.09123,265.34784,200.3759,462.37445,4.872 456,-22.144962,401.47552,78.7825,175.75494,4.826 456,623.35706,-34.86587,25.960266,75.325165,4.738 456,535.7517,311.27112,143.62817,342.4724,4.713 456,587.91895,182.1211,17.306763,52.040466,4.633 456,618.4803,487.5516,20.309998,45.235992,4.628 456,580.84467,194.16557,30.268616,104.75865,4.617 456,418.60834,194.0655,18.354218,42.24283,4.573 456,120.121086,175.47345,21.501411,46.995224,4.552 456,331.2119,190.72276,17.937103,35.106735,4.548 456,448.61862,191.68895,26.042938,63.969772,4.53 457,116.166245,153.34518,32.29634,87.290985,17.459 457,384.61502,205.06921,22.569458,47.75943,16.128 457,-5.2417707,-16.02633,17.27521,42.310307,8.295 457,627.257,-16.012665,16.88446,43.71272,7.666 457,570.7903,195.0661,50.997498,135.04315,7.17 457,201.77199,184.96738,22.673935,52.499573,7.112 457,-0.06296992,202.42815,24.2005,77.25746,6.957 457,401.84668,203.77705,19.969177,43.95793,6.876 457,-12.129735,478.21332,30.355137,63.613953,6.876 457,370.32794,189.31996,20.90741,46.764175,6.866 457,-6.357233,488.34262,19.456116,43.225372,6.849 457,-12.2003,-42.294502,40.551636,103.90041,6.828 457,379.82184,198.36467,20.961517,45.73764,6.462 457,611.9421,-48.316048,40.602478,104.14099,6.362 457,392.24878,196.4509,20.998566,43.687256,6.315 457,622.004,477.1854,28.116333,67.66513,6.135 457,420.29178,228.18034,15.188812,33.19667,5.877 457,410.26898,201.02063,18.762268,46.08087,5.797 457,587.87415,245.34259,35.481018,78.5105,5.794 457,191.48453,179.09808,27.024368,61.202835,5.781 457,221.61047,174.8885,27.860199,57.57579,5.721 457,404.10114,226.06747,17.043549,38.63504,5.716 457,328.43033,191.28319,25.690521,59.607925,5.615 457,419.06885,208.05313,17.736694,46.882156,5.607 457,186.08704,198.25961,22.039337,50.110703,5.571 457,566.2521,243.9379,33.502808,78.91608,5.498 457,620.55176,-1.0050526,16.89093,36.35975,5.443 457,347.93378,194.69109,17.361633,44.515335,5.402 457,385.68314,190.74203,20.42865,43.932648,5.346 457,104.005745,154.00064,32.45002,78.24806,5.284 457,393.9898,215.2416,19.293427,46.076126,5.249 457,604.32874,435.53485,53.444946,138.14539,5.217 457,426.75165,207.71225,19.311615,44.823914,5.199 457,544.02124,186.62527,53.974243,139.14413,5.145 457,-73.47419,265.15814,201.55331,463.25763,5.055 457,2.7577991,-1.6369877,19.016924,40.40821,5.003 457,-21.07919,404.51544,78.00778,173.66058,4.974 457,130.12325,155.7688,30.86345,70.46736,4.931 457,-1.1512923,-17.117237,26.50827,66.273994,4.89 457,549.2134,179.61607,31.000793,92.57179,4.865 457,182.72565,101.35661,26.891235,87.79945,4.782 457,-39.898438,367.60776,109.825966,276.70108,4.751 457,338.88232,200.69525,20.30362,42.251877,4.716 457,411.6136,228.20493,15.551636,34.714447,4.711 457,536.0941,312.01883,142.61182,340.62192,4.689 457,324.4374,195.9184,18.420685,39.158997,4.676 457,403.13794,193.52014,17.55484,36.609207,4.56 457,242.23848,188.69807,19.459457,39.718033,4.548 457,426.8515,226.56133,16.363464,33.560776,4.432 457,379.72324,217.49184,21.589447,40.432358,4.405 458,596.7086,196.45605,41.28662,186.30542,11.945 458,260.25348,223.09894,29.956146,67.00922,10.103 458,614.8467,171.14084,25.657715,89.2576,8.376 458,251.86887,206.62979,31.219421,67.935,7.459 458,290.37045,186.77194,18.72696,43.16266,7.353 458,518.74023,169.76334,41.309875,120.29117,6.972 458,-5.596202,-17.017487,17.617378,42.039513,6.816 458,626.71857,488.0641,20.497559,45.93329,6.737 458,616.4861,124.86438,23.479004,95.43506,6.711 458,-11.8554325,478.90833,30.166204,63.96228,6.711 458,615.1268,84.9294,24.440857,104.0959,6.523 458,621.8954,-33.47307,27.745422,78.04379,6.453 458,100.10431,174.46663,26.657158,61.137817,6.451 458,-11.129829,-32.74305,29.267511,71.41604,6.344 458,46.541107,197.37082,29.254211,72.49637,6.327 458,613.5809,265.757,24.262634,101.717285,6.189 458,-17.175314,-63.869804,56.06157,145.20534,6.141 458,247.89676,207.88329,23.689514,47.541534,6.137 458,-6.3155403,489.4984,19.021786,42.063477,6.078 458,626.5973,-19.487568,18.26587,50.515682,6.029 458,613.27545,456.37262,38.723816,105.786194,6.011 458,308.03534,182.11232,17.796936,42.715683,5.89 458,338.6708,245.74194,20.170807,36.566956,5.701 458,264.2744,216.77536,23.707703,47.155853,5.65 458,29.27843,202.07697,30.557537,72.263245,5.573 458,370.97946,236.37001,16.52774,29.99437,5.559 458,602.3742,-56.478657,53.32013,135.91049,5.535 458,614.9995,205.02185,24.802185,86.537445,5.364 458,355.7632,241.1479,16.733704,32.178513,5.204 458,236.0811,194.10413,18.424728,40.42079,5.199 458,243.17244,195.90865,18.61702,42.18376,5.171 458,-73.17621,265.0705,200.85736,463.5218,5.07 458,-21.063839,404.89453,78.35039,174.23853,4.945 458,237.73827,210.18849,32.439316,72.463486,4.945 458,140.41528,174.4602,32.554962,52.718185,4.906 458,331.1592,212.9776,20.113037,39.99312,4.855 458,127.19171,175.55096,28.902176,59.86557,4.829 458,583.0883,413.3125,71.578674,176.1828,4.815 458,-40.27989,367.7691,109.9534,276.36713,4.811 458,535.5169,311.20587,143.29993,343.07758,4.763 458,322.7144,210.55716,19.922913,37.2843,4.715 458,337.54727,196.93556,21.791687,43.133987,4.715 458,332.26788,199.19308,30.678741,67.622894,4.71 458,363.00082,241.99646,15.671051,29.82782,4.687 458,-3.3657908,430.35016,14.720013,36.988434,4.662 458,482.78284,-11.502459,16.384888,34.53097,4.641 458,232.43121,197.55258,29.953796,64.8815,4.604 458,507.79523,204.82027,20.337952,60.101547,4.586 458,585.94794,-101.24212,74.79669,237.61404,4.584 458,542.1013,187.51279,52.964172,160.72733,4.579 458,257.21567,206.63463,22.110077,40.21373,4.568 458,88.312836,173.88908,27.347404,68.62747,4.565 458,551.028,210.22726,29.435913,77.34567,4.564 458,526.9849,162.97134,33.33545,70.611115,4.523 458,493.32544,230.22778,237.15253,513.48236,4.517 458,314.63196,179.62155,16.72226,36.994385,4.5 458,559.8301,214.50394,52.518616,157.94055,4.496 458,474.93115,-11.550587,16.112793,33.436974,4.452 458,616.5625,24.58208,23.774353,101.74733,4.429 458,54.90938,203.63887,21.02776,43.393005,4.405 458,178.89085,193.83354,20.152023,34.29541,4.401 458,501.48773,201.45111,29.940735,93.88483,4.368 458,291.84164,485.48776,31.718842,57.95981,4.331 458,611.25165,211.17584,34.735535,138.57355,4.301 458,-4.0996866,171.22932,15.922803,42.933945,4.274 458,490.80417,175.5769,54.11319,146.20856,4.263 459,201.67609,185.53053,18.490692,51.91127,21.277 459,291.9482,245.15807,17.621307,40.349564,11.762 459,284.01358,251.18721,16.715607,40.432236,10.278 459,277.4071,256.31976,18.053741,43.35672,8.921 459,593.2503,148.8217,42.118896,191.74483,8.75 459,235.48895,187.48392,15.881821,34.807953,8.665 459,158.30905,185.49034,26.4066,67.43022,8.232 459,592.06976,205.05107,27.234436,70.75191,8.131 459,219.97238,187.64825,16.066864,40.548706,7.622 459,-11.881972,478.93152,30.029598,62.555786,7.453 459,466.81842,192.57028,20.535095,59.570145,7.072 459,-10.415066,-32.866207,29.020239,77.255486,7.053 459,612.3777,455.62778,40.33728,105.43167,7.048 459,-5.579787,-17.07295,17.871855,44.54913,6.82 459,297.67642,240.85379,18.93695,39.16974,6.564 459,144.37033,187.57765,30.086365,70.831406,6.375 459,-6.040702,489.54822,18.817343,41.56775,6.366 459,626.9131,-18.449928,17.404846,48.29964,6.007 459,626.2954,487.43082,20.768799,46.59433,6.006 459,596.8319,162.03249,31.214478,99.18138,5.937 459,167.87971,192.86438,20.91011,52.4393,5.882 459,581.9313,17.37706,27.452637,94.92624,5.85 459,613.1749,0.586174,26.105286,88.71153,5.753 459,611.25134,-48.894424,41.56909,105.60149,5.509 459,251.36172,214.33386,18.379578,34.459976,5.482 459,591.0615,-15.511688,49.347473,159.8455,5.462 459,613.8598,47.911217,23.653442,100.06205,5.241 459,267.9189,194.71048,15.067871,30.808014,5.2 459,-16.820642,-64.33378,56.164406,143.90106,5.184 459,0.70426345,184.74715,20.536419,45.767075,5.133 459,-72.90335,265.18402,200.92914,463.2019,5.053 459,-17.008287,439.2026,54.777588,135.62668,5.016 459,618.0791,489.69977,21.084656,43.586426,4.995 459,580.64465,171.80472,31.448364,86.24988,4.983 459,583.0248,413.65356,71.82782,174.66156,4.908 459,596.4182,259.79865,30.733643,83.47809,4.905 459,144.07744,171.80925,21.924728,56.459946,4.856 459,592.9858,78.51636,44.772156,187.56192,4.743 459,277.14468,257.07224,28.920654,62.649414,4.739 459,-40.132175,366.98438,110.11914,277.70996,4.73 459,228.44247,186.82532,15.989624,36.016357,4.673 459,96.37549,254.07507,23.01081,33.00409,4.603 459,536.1898,311.94348,142.65308,341.35413,4.601 459,258.6485,213.347,18.672485,35.183548,4.581 459,236.14159,199.64555,16.039627,35.835495,4.542 459,585.3335,-103.57268,76.36218,243.82124,4.522 459,596.30396,463.53186,40.013123,95.427734,4.522 459,134.03273,203.76234,32.16487,62.871872,4.504 459,98.35479,248.845,33.61103,52.40808,4.478 459,541.17053,151.25623,53.062683,141.43304,4.464 459,243.21059,211.9286,19.7061,34.8219,4.44 459,5.81228,467.9961,37.294113,94.198,4.413 459,493.0221,230.72684,237.72583,513.90955,4.4 459,593.7971,490.32623,20.924194,40.687927,4.396 459,576.7855,219.34521,51.28247,173.29712,4.385 459,304.46164,239.78116,20.088379,37.713898,4.375 459,175.5591,188.76572,20.122177,53.83351,4.299 460,233.40056,269.47324,21.901947,49.52008,9.202 460,214.03125,272.22845,27.30214,62.117065,7.238 460,-12.006033,478.99817,30.081451,62.920227,7.091 460,515.19196,176.9408,30.314087,86.02423,6.932 460,627.34467,-18.38332,17.67865,46.96937,6.854 460,613.12415,453.0407,39.732178,108.444214,6.788 460,622.60803,-34.0256,27.162537,76.04123,6.626 460,-6.475337,488.90906,19.27296,43.14099,6.614 460,525.0721,206.32483,27.487305,80.22003,6.605 460,44.586014,200.21613,28.85669,66.21716,6.395 460,-12.25518,-41.21077,40.879013,103.17758,6.055 460,626.4564,486.21637,20.505188,48.036377,5.762 460,56.108192,43.341457,35.86045,72.16313,5.691 460,602.5909,-55.5921,53.7583,134.39574,5.6 460,619.35443,-18.851091,18.340881,44.412727,5.422 460,127.85834,197.26352,25.417175,54.84445,5.282 460,436.30548,204.8801,28.841675,66.98117,5.251 460,-74.24051,264.85968,202.30074,464.12213,5.193 460,299.43192,217.9573,17.345917,28.7417,5.181 460,70.060745,188.41751,26.69571,72.92645,5.13 460,202.57944,211.0494,18.965515,39.711548,5.115 460,291.60236,216.38498,17.397186,30.422745,5.032 460,-5.7682776,-17.993809,17.363499,42.960976,5.025 460,307.5029,216.99854,17.66742,28.947388,4.942 460,110.74097,193.66325,25.504318,60.510544,4.8 460,283.7068,216.75372,16.861328,28.611588,4.781 460,183.72046,297.7383,31.938995,61.64868,4.775 460,222.92392,268.23257,26.336258,57.859528,4.771 460,211.69485,211.66644,16.961136,36.723114,4.734 460,583.20294,409.9563,71.704895,177.56781,4.698 460,536.8652,310.84412,141.98895,342.0996,4.689 460,136.6932,197.65077,20.405807,39.741776,4.689 460,-41.1473,365.93176,111.87415,276.04236,4.668 460,532.4421,176.08022,31.141357,83.41814,4.592 460,-5.3337646,201.52414,17.978598,39.62259,4.582 460,-18.99292,433.14398,55.927944,143.2608,4.473 460,594.69916,-45.60799,44.25232,97.050644,4.463 460,151.36226,194.724,27.022629,54.603165,4.432 460,585.88354,-100.71719,75.45221,235.55525,4.397 460,410.5808,204.93506,16.476837,34.046524,4.394 460,513.90826,42.40368,29.072144,88.4564,4.378 460,524.66547,136.5876,29.936646,85.02823,4.366 460,514.94635,-15.549847,16.737305,40.980186,4.288 460,1.8257153,490.27884,19.738638,41.482635,4.278 460,618.21027,486.94022,21.246338,46.417755,4.23 460,219.90709,212.8698,15.275742,35.044235,4.23 460,493.58374,226.89334,237.41162,516.0027,4.218 460,614.4828,308.10007,25.849731,78.32901,4.196 460,506.81445,-16.01587,16.795654,42.235588,4.174 460,163.69092,214.56824,41.332504,85.59412,4.157 460,522.7788,-16.712654,16.83429,40.51314,4.151 460,180.37186,218.99376,40.20027,85.353134,4.144 460,577.9053,487.9649,21.187805,42.963135,4.098 460,614.28357,-19.290749,28.340576,71.18898,4.09 460,146.22476,211.2044,20.261108,39.85257,4.082 460,37.365307,217.19531,30.30341,68.331055,4.037 460,538.9717,140.50569,32.3089,82.99565,4.015 460,617.2762,253.35547,22.494629,58.307495,3.972 460,405.12122,206.32048,15.725342,33.3871,3.908 460,532.1017,-181.77556,149.38513,423.67166,3.894 460,21.816792,214.77498,32.184948,62.136765,3.882 460,596.47876,459.946,39.864502,99.94003,3.88 460,316.66144,212.96606,14.76236,28.678802,3.879 460,2.9651213,197.49445,19.502811,38.668045,3.841 460,610.9518,-3.0831833,20.648132,38.39505,3.839 460,-9.25547,202.20995,38.002995,93.14116,3.834 460,205.53246,283.59586,30.478226,62.390015,3.776 461,87.87277,208.90143,26.140137,59.51883,8.386 461,-6.513443,488.83493,19.55614,43.21866,8.336 461,178.21829,223.66228,18.372726,41.49254,8.279 461,626.8206,488.03235,20.503967,44.90332,8.136 461,-11.678276,477.4724,30.3425,64.31268,7.454 461,-17.877098,-64.811676,56.759525,149.07155,7.452 461,100.55998,207.51562,25.89991,57.084564,7.322 461,170.96246,225.4625,17.65094,40.432587,7.207 461,372.69287,218.55919,16.650665,44.106094,7.2 461,2.5127637,217.16458,19.14402,55.00107,7.089 461,397.37518,219.755,17.065796,48.659973,6.895 461,34.589035,218.10709,20.719479,62.094574,6.877 461,626.98,-18.286457,17.740417,47.93801,6.849 461,437.93765,223.56711,29.710846,86.27191,6.704 461,613.2327,453.42636,39.293884,108.71982,6.579 461,580.2316,61.218746,28.981384,87.13626,6.57 461,14.396077,201.27652,28.667389,75.4556,6.392 461,622.8733,-34.069862,27.11438,77.80258,6.386 461,589.1277,219.18721,31.388367,88.515,6.357 461,595.16223,131.3717,41.2218,190.57034,6.336 461,163.20895,223.48328,18.877228,42.72873,6.193 461,379.25064,217.35043,16.239166,43.719055,6.069 461,598.6756,173.61606,28.342163,96.023285,5.945 461,355.53592,220.8239,17.766357,44.93843,5.829 461,-11.425755,-32.75517,29.362137,73.80379,5.763 461,-5.433241,-17.43693,16.849964,43.129375,5.678 461,594.9784,57.181015,43.381714,177.9201,5.676 461,-4.3282123,224.74625,17.95794,49.261597,5.412 461,614.02625,133.46486,25.427368,94.51042,5.378 461,579.6354,37.434383,28.286377,74.185715,5.211 461,572.74164,176.57437,29.316406,77.124466,5.155 461,-72.84697,265.40155,200.8856,462.7741,5.089 461,5.913689,215.06665,26.746029,69.78125,5.051 461,364.31714,220.95416,16.675476,43.14218,4.988 461,-21.447697,403.94055,78.69329,174.36407,4.963 461,557.0777,176.96976,29.00415,78.6537,4.957 461,185.60907,224.83328,18.385803,39.885834,4.917 461,-1.8698323,41.265648,27.040174,74.2439,4.841 461,602.8285,-57.0563,53.605103,140.4738,4.792 461,586.0106,78.6622,30.910828,91.5314,4.751 461,583.22015,411.06982,71.512024,176.83435,4.694 461,542.4655,168.35318,52.029907,116.42908,4.676 461,618.83966,489.93402,20.377502,42.555054,4.63 461,490.0039,-181.79721,235.16235,423.42566,4.623 461,619.1137,253.92165,18.920898,64.48726,4.616 461,546.58496,488.69528,20.038574,41.83188,4.615 461,536.26685,310.67633,143.34283,342.63214,4.586 461,-0.10449231,96.637474,19.990187,58.61091,4.54 461,442.21802,227.66815,19.91571,54.75827,4.508 461,27.209415,221.6613,20.84486,62.19078,4.501 461,-5.2047634,198.60373,34.258545,102.31967,4.493 461,616.2934,267.31598,23.762817,84.18506,4.473 461,591.72675,62.457993,21.61792,52.120346,4.446 461,573.8073,20.117832,28.514648,71.24274,4.4 461,492.9459,228.40182,238.30563,514.7046,4.389 461,154.42876,224.22906,21.25798,45.81897,4.376 461,582.42285,144.04324,29.30017,76.25644,4.337 461,422.3427,219.57335,28.980865,86.45387,4.307 461,397.5165,200.17946,25.582611,61.837357,4.274 461,390.80673,157.23276,29.82077,82.550964,4.243 461,585.83636,-105.07623,76.035034,241.80801,4.241 462,64.14119,194.36588,22.876038,59.288147,14.805 462,371.69934,203.50546,18.082733,47.37755,12.151 462,79.30621,189.66968,21.418617,53.29677,11.856 462,626.7538,487.67075,20.565857,45.353058,7.468 462,378.28076,201.65706,17.360565,45.547348,6.888 462,-6.106163,488.7269,19.027103,42.057953,6.852 462,627.1842,-16.761673,17.081604,45.650974,6.724 462,-17.612291,-63.90963,56.176277,147.45319,6.707 462,612.7555,454.66055,39.689453,107.73361,6.634 462,622.36395,-33.37318,27.416016,75.05023,6.601 462,462.5429,86.08309,28.720856,92.36695,6.346 462,420.5661,138.22713,27.713776,92.21112,6.044 462,-11.522106,478.28653,29.496029,63.21042,5.983 462,71.73137,192.26956,24.619766,67.60794,5.884 462,618.81537,488.7279,20.257935,43.245056,5.717 462,411.37802,204.16727,18.163544,51.350754,5.504 462,-5.3936205,-17.840746,17.132856,43.583324,5.504 462,354.4571,205.02081,17.931488,54.653564,5.451 462,426.5053,206.06004,19.909119,41.694626,5.409 462,4.6212187,124.25104,32.679836,95.37103,5.386 462,507.60748,125.31015,29.500793,72.14285,5.239 462,363.55515,205.21204,17.750824,46.67154,5.2 462,418.291,206.49466,18.5495,50.32788,5.131 462,322.21146,205.22397,18.65976,46.010956,5.079 462,602.6319,-55.417698,53.44507,134.93015,5.007 462,-18.804777,435.44272,56.24112,139.20547,4.998 462,-38.956215,368.76544,109.06086,273.53143,4.896 462,108.30434,301.86942,30.050125,90.53305,4.88 462,-11.247119,-33.04034,29.21915,74.50892,4.863 462,-72.82388,266.48508,200.35387,461.69205,4.809 462,479.4904,215.68538,27.352814,84.7498,4.789 462,583.361,413.12595,71.23822,175.69107,4.779 462,440.2545,226.41696,28.381805,80.20239,4.752 462,47.353264,189.96779,29.166794,61.730698,4.747 462,619.6154,-15.911956,17.344482,40.884953,4.719 462,54.110035,191.57413,38.113514,88.47385,4.679 462,358.02872,205.57297,26.3508,74.65399,4.666 462,66.82941,199.93259,40.76573,96.87253,4.589 462,493.2223,228.6777,237.93604,514.41675,4.513 462,536.0834,311.857,143.50537,340.15973,4.498 462,324.25537,202.27003,13.37085,28.255203,4.495 462,387.99667,199.32527,15.286591,38.77527,4.493 462,573.07025,171.93394,29.617859,66.704346,4.482 462,489.868,-180.58334,236.14163,422.25177,4.406 462,585.85986,-104.23415,76.29883,238.19046,4.392 462,-9.830062,127.75239,30.454868,79.086815,4.373 462,111.45271,186.09879,23.661362,57.8452,4.324 462,83.35796,190.82693,26.370056,67.460236,4.317 462,82.32199,202.14366,41.2713,98.284225,4.301 462,1.8978411,220.31842,19.037157,47.96698,4.295 462,495.22333,124.5365,29.109924,82.12805,4.265 462,540.2319,183.81667,56.122375,115.04372,4.242 462,432.95343,198.3038,19.96753,39.596146,4.21 462,235.66052,213.3377,17.893555,32.56221,4.209 462,343.57477,201.41226,28.2305,78.85684,4.205 462,96.29208,257.61914,52.051086,148.77338,4.204 462,437.2091,143.20178,28.108612,81.0159,4.149 462,245.45717,187.87617,13.511673,28.238297,4.144 462,4.0296545,387.02338,30.224075,68.677704,4.144 462,618.1777,235.4918,19.712097,46.223434,4.134 462,526.62164,192.11285,28.087036,67.252075,4.127 462,578.5673,187.99765,33.54132,68.88327,4.094 462,-2.0773172,414.71252,27.931286,77.98932,4.087 462,162.49367,206.46187,18.76622,39.98178,4.075 462,13.015065,168.50314,52.842182,117.33353,4.036 462,99.29521,199.12569,30.845001,64.89378,4.014 462,-5.4339666,359.83536,16.80209,40.3302,3.98 463,423.6297,218.30402,25.435974,63.311066,41.842 463,300.65244,214.24474,18.47348,40.985962,13.988 463,347.9931,215.1064,19.472534,54.788864,12.511 463,379.0089,215.38847,18.375702,45.674942,11.608 463,137.84113,214.6431,18.843704,44.934967,10.778 463,144.86394,215.7322,19.472153,44.94908,9.384 463,361.93954,214.1246,19.498444,49.984955,8.194 463,530.7521,205.14908,34.075134,95.02792,8.149 463,548.666,144.06027,29.81659,89.22798,8.067 463,-6.070938,487.5985,18.93729,44.9234,7.624 463,131.17204,209.231,19.570099,48.25331,7.591 463,626.8003,487.3952,20.580078,46.4881,7.039 463,370.9534,213.29942,19.332275,48.417496,6.982 463,364.38037,212.54596,28.584106,78.24817,6.778 463,-11.815603,477.21155,29.680807,64.60004,6.752 463,353.83954,210.534,19.924072,50.864685,6.693 463,-11.865368,-41.78362,40.612392,101.232956,6.652 463,439.1142,218.46228,20.343353,53.706055,6.633 463,54.965134,195.67648,28.176086,67.818634,6.403 463,73.75138,205.01416,23.359978,54.87799,6.147 463,124.64198,215.71088,19.336655,43.650024,5.96 463,152.26192,216.52094,19.867691,42.85034,5.944 463,622.6518,-33.087753,27.088867,73.80242,5.907 463,612.8959,454.169,39.72058,108.85742,5.853 463,-5.5220942,-17.909082,17.077768,43.55623,5.805 463,402.5262,222.29271,17.445648,40.894302,5.763 463,381.77005,214.70332,24.326782,64.07243,5.523 463,29.299465,205.82617,23.623962,48.638916,5.506 463,603.5204,190.93036,31.914856,70.98883,5.482 463,603.0335,117.02318,31.761047,88.02438,5.459 463,300.427,212.14922,28.011383,61.54042,5.412 463,6.2648973,209.0063,25.748596,64.83836,5.398 463,627.37866,-20.156963,17.485107,48.715828,5.217 463,603.0682,-58.491318,53.70868,137.01723,5.065 463,-4.6026196,213.48666,17.145247,48.295013,5.062 463,618.23615,489.21527,21.314514,44.06604,5.003 463,-21.283726,403.67102,78.178085,174.80627,4.991 463,539.6326,157.54387,30.328247,93.40761,4.9 463,616.1874,119.37247,22.646484,64.67856,4.899 463,416.0773,224.78683,26.483185,81.098206,4.896 463,523.98126,170.72662,31.638,88.526276,4.894 463,-72.65997,266.06726,200.08183,461.2306,4.888 463,302.8967,209.97783,14.105438,30.247513,4.878 463,582.67584,412.85434,72.026306,175.60611,4.786 463,-4.8666887,408.79678,18.159384,48.93759,4.724 463,490.3505,-180.98576,235.37045,424.0652,4.597 463,536.69257,311.60992,142.71857,340.21234,4.582 464,284.69116,217.9222,18.451965,42.48369,49.922 464,466.7575,213.94936,33.576477,95.49577,37.05 464,52.50296,201.53517,27.70076,73.88591,22.656 464,456.03146,218.83002,31.709076,84.081604,14.865 464,390.78546,214.12598,27.222473,71.86209,12.875 464,37.776318,199.79337,29.279194,73.12137,11.875 464,121.39446,212.48505,20.840736,50.557434,11.341 464,138.22409,217.21437,18.851624,48.56285,10.57 464,369.93542,225.08655,17.89209,46.269287,10.179 464,480.04407,219.30219,22.262695,71.74933,9.325 464,-12.006987,474.86716,30.502281,67.401276,7.925 464,-6.1180615,486.97098,19.161448,45.542206,7.795 464,399.95145,216.75089,21.62558,51.707153,7.06 464,613.1988,451.6144,39.568054,110.831635,6.765 464,145.06377,221.11412,19.931473,46.163773,6.519 464,130.6402,218.46399,19.406067,51.32849,6.336 464,-17.122072,-63.506737,56.0987,146.14696,6.244 464,622.0488,476.806,28.339905,67.641266,6.189 464,315.13034,221.32004,18.98056,40.404877,6.126 464,627.2831,-18.945175,17.621033,48.27954,6.126 464,622.5266,-33.114597,27.245117,76.09508,5.762 464,-5.7700357,-17.555271,17.876286,43.994705,5.72 464,284.1518,220.08958,28.906555,59.501633,5.652 464,-10.67758,-32.907387,29.306852,74.16522,5.427 464,153.63669,222.60759,20.468307,42.429276,5.413 464,290.1847,215.72235,14.837006,31.26352,5.288 464,110.476074,215.28094,29.889984,65.43625,5.251 464,602.3179,-55.326553,53.363586,139.87001,5.158 464,296.97992,222.23091,19.558777,37.8282,5.125 464,-21.604343,403.92853,78.39496,174.85004,5.072 464,467.91904,134.88948,28.423706,87.8289,5.002 464,308.6697,486.3244,30.781555,56.894897,4.991 464,-72.39278,265.7417,199.90381,461.38293,4.963 464,-4.879612,217.07895,17.279062,46.140167,4.951 464,22.939167,211.19885,28.416798,69.94061,4.889 464,404.89865,217.26129,27.37973,82.91052,4.869 464,273.51947,212.91336,27.825104,57.857025,4.773 464,585.9037,-101.64523,75.0094,236.55159,4.769 464,357.26193,227.46826,18.356415,43.115234,4.721 465,270.77988,218.45776,20.347168,42.871674,51.118 465,108.89878,208.00693,22.767693,60.776764,19.776 465,393.14926,215.6668,21.78305,52.725266,17.098 465,139.49335,214.20909,19.350845,49.608902,11.473 465,277.94003,224.7341,22.694519,41.11084,10.834 465,0.53013086,198.2724,22.708748,92.34671,7.948 465,-5.9081197,489.02728,18.911484,41.867493,6.87 465,612.9768,452.78012,39.862,108.75223,6.586 465,348.21988,216.09924,30.642914,64.48944,6.544 465,-8.991337,466.98068,37.788055,88.527435,6.52 465,621.91345,476.40735,28.855957,67.186584,6.475 465,329.37592,218.74875,20.958221,41.127808,6.296 465,-12.016086,-41.60158,40.846268,100.17009,6.18 465,622.3943,-34.074116,27.240173,76.95281,6.142 465,402.4513,214.41501,18.812714,45.701874,6.077 465,487.7862,230.1539,24.471375,48.664856,5.915 465,387.09308,213.97833,18.932617,48.01367,5.855 465,119.131996,207.2895,23.590202,65.112076,5.8 465,627.0354,-19.973097,17.910889,49.65877,5.678 465,594.3521,64.51307,35.535034,84.00475,5.639 465,379.13852,215.93896,19.950806,47.80719,5.558 465,-5.5179663,-16.451729,17.614445,43.05136,5.489 465,131.83438,212.47357,19.014847,53.118805,5.399 465,435.41852,224.18143,31.779297,76.91025,5.395 465,566.70844,217.293,29.397827,89.64545,5.328 465,418.7099,267.32822,32.885437,78.50119,5.323 465,388.6742,209.31662,37.31189,88.20828,5.293 465,411.60648,211.85732,16.718353,36.662216,5.175 465,-72.91648,265.02942,200.6026,462.25354,5.151 465,-20.954666,405.6225,78.28137,173.26923,5.015 465,602.67896,-54.977505,53.740356,138.31714,4.844 465,583.2559,411.32394,71.4798,176.76895,4.833 465,367.31226,213.59544,27.592285,57.179764,4.814 465,-39.74846,369.2771,109.54558,275.34448,4.787 465,325.91495,213.3165,30.996643,62.772125,4.783 465,419.5821,215.44395,15.950928,37.129196,4.626 465,-13.781729,199.93073,46.702873,151.14386,4.613 465,40.168823,193.59816,26.262947,66.19545,4.563 465,616.7711,65.0966,22.436707,60.44394,4.557 465,585.37915,-101.08285,75.83777,235.69952,4.508 465,536.92053,311.91858,141.95068,340.5683,4.443 465,574.23816,129.67513,29.921448,90.74675,4.39 465,618.4234,-20.470558,19.123718,47.964893,4.366 465,546.05133,490.96112,20.470642,39.965637,4.364 465,2.488898,490.31317,19.230215,39.957703,4.339 465,151.47902,214.81938,21.377289,52.19313,4.337 465,352.30923,216.12769,21.656189,37.39737,4.282 465,5.3356276,470.06827,37.816547,91.437225,4.267 465,558.43665,213.02162,49.59796,160.09007,4.267 465,372.7205,215.13797,40.269928,101.38431,4.259 465,144.15341,224.89114,22.850052,50.087128,4.258 466,248.06638,222.14929,21.307709,49.298218,56.12 466,425.3148,216.15726,24.15982,70.76193,25.427 466,138.44211,222.642,20.102524,49.865936,23.973 466,359.00275,225.4169,22.922485,50.075928,21.225 466,402.33893,219.36673,17.384125,48.707977,13.228 466,123.106384,223.55862,20.610031,54.369965,11.472 466,396.3068,221.9856,17.016571,44.027588,8.268 466,613.3263,452.33273,39.453735,108.88284,7.705 466,153.12166,219.27853,21.693924,44.656433,7.612 466,420.42996,222.68698,19.920746,55.635376,7.534 466,129.7552,216.84732,22.186798,52.38266,7.148 466,-11.703157,477.37524,29.741034,64.59674,7.119 466,-5.1327477,-15.6121,16.88786,42.758396,6.987 466,366.87573,223.75327,20.855255,42.805878,6.973 466,509.3945,141.44661,28.35904,83.27254,6.743 466,-6.1000214,488.9553,18.915936,42.30179,6.674 466,387.88788,220.88385,17.175323,38.716278,6.553 466,338.89755,224.09454,19.084167,40.898956,6.482 466,517.5043,236.7971,29.661194,74.158554,6.439 466,-10.596466,-33.053078,29.179531,76.62755,6.175 466,433.65707,222.66562,27.387115,63.937927,6.112 466,610.93256,-46.861202,41.886597,100.65063,6.068 466,627.38873,-16.507936,17.044556,46.071224,5.946 466,-17.009892,-62.774933,55.58537,145.06764,5.904 466,89.68381,222.54843,20.787125,52.257324,5.86 466,94.33197,210.10228,26.493439,63.15892,5.724 466,626.25525,486.9669,21.115723,47.821686,5.582 466,379.52728,222.69722,17.624176,37.40947,5.574 466,111.8639,214.66858,25.804802,62.01776,5.497 466,-17.184593,441.97992,54.918983,134.07507,5.468 466,13.467018,-15.124397,54.51378,126.721794,5.323 466,-72.67304,264.84503,200.39716,463.22418,5.176 466,28.460346,199.47583,27.7038,66.10187,5.082 466,131.0351,230.76297,40.724426,94.90973,4.909 466,409.78757,218.2716,18.67392,45.644775,4.874 466,-39.932285,369.2692,109.74562,275.27573,4.804 466,106.53102,212.1766,19.186386,43.95822,4.8 466,141.8965,224.82253,27.315979,64.166885,4.751 466,160.40344,228.16805,21.718369,45.943832,4.724 466,583.64954,410.25052,70.99005,177.275,4.697 466,168.12514,229.40625,22.716248,43.305664,4.694 466,5.0462923,470.6952,38.358932,91.28113,4.656 466,484.32245,304.95026,32.734436,75.301056,4.651 467,324.4054,219.5141,24.921753,49.00952,42.105 467,435.79208,216.69463,18.827942,48.867874,29.818 467,203.46674,222.79192,18.839142,48.952194,24.501 467,134.3331,214.00224,25.49498,52.9532,22.758 467,417.17075,216.47476,18.626526,50.408966,15.369 467,78.82463,210.26329,29.311775,74.03981,12.985 467,122.26849,215.20993,21.018509,48.679993,9.714 467,387.9124,218.80031,16.06781,31.978027,8.494 467,-5.88698,488.30167,18.899242,42.543793,7.866 467,372.00714,220.16478,15.466156,31.287292,7.529 467,-11.634693,477.541,29.582352,64.215485,7.452 467,-5.700929,-19.07325,18.28667,47.818424,7.299 467,621.7755,476.6845,30.01941,66.89844,7.295 467,328.87646,223.82938,31.343567,55.106384,7.021 467,-10.073254,-33.074062,28.94963,78.751686,6.738 467,622.5259,-33.36659,26.662292,76.18757,6.703 467,626.8339,-19.461203,17.913025,48.773903,6.669 467,310.37018,218.57251,31.002563,59.8985,6.286 467,380.8769,221.61185,14.853149,29.86026,6.153 467,52.471752,204.20331,31.776875,69.78369,6.045 467,603.2864,430.04773,57.28357,144.1261,6.039 467,469.9326,223.68495,28.242401,81.81792,5.832 467,-16.55144,-64.09733,55.02304,144.12369,5.815 467,617.4477,489.06497,22.021606,44.306793,5.812 467,106.487816,207.54448,20.226677,52.066452,5.811 467,67.94013,237.7338,31.559883,67.95819,5.653 467,423.84766,212.98184,25.67746,66.99069,5.575 467,92.277115,207.33551,26.654068,66.23834,5.526 467,406.1225,217.59566,16.72647,40.97081,5.416 467,112.201225,205.81796,25.429283,60.32495,5.325 467,603.37195,-58.58998,53.496277,133.64203,5.261 467,364.37268,223.90387,17.867737,35.916565,5.204 467,437.0256,215.38782,27.929169,80.19647,5.084 467,-72.29503,265.36703,199.7974,461.9644,5.083 467,99.65389,228.50044,40.582893,103.10948,5.081 467,-21.145966,405.13327,78.54575,173.29788,4.985 467,394.49643,215.66736,16.10849,31.172882,4.956 467,594.38745,-48.42708,44.33484,95.89978,4.893 467,455.0454,221.30814,28.019623,82.57724,4.735 467,451.1784,223.77444,20.378876,53.35739,4.733 467,32.411655,196.98871,34.63911,66.516785,4.659 467,366.3719,215.43771,15.398102,30.664291,4.627 467,-8.305462,-7.572529,38.79487,99.977066,4.617 467,548.08496,40.81553,31.252747,65.013535,4.613 467,535.6715,311.4272,144.34973,341.42108,4.61 467,2.1235962,489.11646,19.78463,41.22406,4.608 467,126.14659,218.0944,28.846481,69.377335,4.548 467,602.4702,488.88464,20.31073,41.579224,4.523 467,555.5044,228.07607,32.325684,52.607803,4.523 468,272.33322,216.47691,28.712616,59.095383,87.314 468,125.72105,220.49803,27.320015,61.11357,62.397 468,449.89407,216.65909,20.055206,56.421448,36.028 468,112.010666,217.16336,20.097305,48.512573,24.945 468,403.04153,215.28093,16.619263,35.003708,12.804 468,457.30896,216.72496,17.318268,46.614883,11.266 468,440.47958,209.66385,26.077118,75.34149,11.014 468,279.85986,220.33966,32.936707,63.77948,9.675 468,90.75636,213.23279,19.049538,53.638855,9.569 468,388.16312,215.64368,15.659271,32.502182,9.371 468,420.5812,216.16112,15.927765,36.07759,8.273 468,73.062195,215.09613,20.118439,52.84619,8.115 468,-5.9106135,489.17953,18.752094,41.96176,7.415 468,571.11017,15.751106,19.798096,53.176712,7.324 468,379.75827,212.63171,16.796936,33.53911,7.174 468,-11.355076,478.0163,29.077007,63.646973,6.828 468,0.01830101,207.25839,24.107027,86.80783,6.728 468,611.8055,229.46399,27.33783,62.63495,6.663 468,621.7811,477.5358,28.735718,66.907196,6.65 468,-10.836996,-32.419434,29.083433,75.809906,6.619 468,396.89276,216.38405,16.445068,31.05722,6.435 468,344.02045,213.67041,22.919891,45.59488,6.37 468,-6.0974317,-17.553528,17.766697,44.858074,6.331 468,372.26038,210.61479,16.965942,34.506042,6.132 468,435.19476,217.05348,20.693634,55.821823,6.003 468,120.53209,217.76123,21.899551,53.92108,5.921 468,564.1753,128.71582,30.133118,78.89365,5.914 468,451.8463,216.25058,28.035583,83.66995,5.904 468,6.466502,148.46927,28.104733,89.778946,5.81 468,-17.430088,438.95682,54.61508,137.99973,5.498 468,622.2953,-33.79511,27.62854,76.06837,5.469 468,613.286,110.62219,24.970947,72.748505,5.421 468,428.21423,217.06949,17.003052,45.213257,5.329 468,163.54175,231.49767,31.821732,54.025253,5.327 468,444.7009,217.03589,18.661957,42.430542,5.309 468,586.79865,-14.924067,32.8562,69.455444,5.285 468,-16.742838,-63.677837,55.796356,146.72101,5.271 468,-4.3839464,212.84164,17.966785,53.43924,5.205 468,-72.41425,264.4401,200.20084,463.71054,5.151 469,206.0187,218.35567,32.975647,64.47298,86.168 469,463.06464,214.79274,21.699036,50.827957,78.003 469,70.76476,207.24228,27.205978,61.11432,68.847 469,52.750454,209.44867,27.858814,57.028564,41.797 469,429.07922,214.49527,19.083435,39.399338,36.18 469,29.7855,211.54,28.671654,64.41411,32.627 469,409.4373,213.14226,17.494812,38.204773,29.982 469,395.69687,214.0434,16.920166,35.930466,18.062 469,6.24768,212.6408,31.489967,81.08855,18.042 469,217.48215,224.2454,34.50351,71.47951,11.547 469,38.50224,203.74399,31.44672,66.75278,10.899 469,511.0686,239.43909,26.755676,69.18927,8.799 469,388.14297,214.45502,16.730957,35.05545,8.172 469,518.7293,227.73883,29.450623,70.99939,7.538 469,18.138298,209.5362,32.68076,78.86023,7.425 469,-6.107463,488.94302,18.981731,41.935883,7.419 469,380.3061,214.19638,16.662872,34.46376,7.363 469,-11.7153845,478.73138,29.830612,63.22467,7.166 469,-12.212017,-41.753227,40.59059,103.82,6.965 469,458.3005,203.1695,21.797424,51.54503,6.714 469,612.31934,455.05032,40.445312,105.982025,6.69 469,-5.5734835,-17.41137,16.973568,43.238487,6.625 469,622.5432,-33.366123,27.155518,78.38097,5.992 469,626.03,486.47195,21.399231,47.126434,5.963 469,627.024,-17.252464,16.945984,47.96679,5.962 470,485.18265,214.1911,26.287262,67.285095,91.267 470,88.59719,217.37198,43.515755,92.544495,88.441 470,438.56064,217.45177,21.420807,42.85637,73.292 470,417.7118,215.86874,18.422363,41.41519,53.264 470,11.311449,202.72696,31.796213,71.74075,34.948 470,-0.368706,204.41939,27.527275,80.82179,16.598 470,404.5487,213.54556,16.963898,40.421326,10.208 470,612.8889,453.97302,39.913452,106.739746,7.375 470,380.7451,219.25195,16.623932,34.305725,6.881 470,-12.1656685,478.5492,30.335396,62.50403,6.733 470,625.9284,486.7182,21.581299,47.604675,6.539 470,626.8867,-17.978828,17.558838,46.69285,6.293 470,622.30383,-33.871502,27.257935,75.822174,6.211 470,52.09232,220.0494,42.537365,93.88878,6.118 470,-8.973296,191.07524,30.144627,73.34395,6.009 470,-6.2914014,489.14536,19.129496,42.253326,5.981 470,106.626396,253.38919,32.0366,64.65079,5.964 470,-17.71243,-65.23321,56.4714,149.38817,5.795 470,76.98417,232.47815,37.162254,79.889404,5.55 470,586.52673,-14.253302,17.70819,38.161087,5.446 470,506.81393,219.26114,16.573456,35.154648,5.29 470,-72.32854,264.72754,200.16266,463.17712,5.193 470,-11.093459,-32.26377,29.17287,72.3623,5.082 470,-4.561823,214.35973,20.256403,57.388504,5.044 470,-21.055256,405.1,78.30397,172.91989,5.002 470,536.46277,311.5561,143.87854,340.78156,4.97 470,35.63445,217.92105,41.147686,95.65823,4.924 470,463.66528,181.91403,27.257996,67.97159,4.919 470,587.0525,-13.521017,31.748596,58.788757,4.865 470,-39.51999,367.82642,109.63653,276.47156,4.83 470,583.0101,411.45123,72.08386,177.3653,4.805 471,434.6637,222.62488,20.416565,42.976288,88.588 471,528.91016,221.74913,32.53833,79.11226,87.563 471,465.45386,222.60477,21.386963,48.68033,84.623 471,386.26117,222.83379,19.052277,42.73433,54.85 471,411.79596,222.44339,17.41449,42.57199,35.165 471,522.7414,215.28589,26.856384,70.89502,13.669 471,-5.619002,488.86148,17.934357,41.96109,7.215 471,-11.644569,478.32242,29.632883,63.094635,6.531 471,626.7117,487.1442,20.531616,46.84964,6.383 471,-12.507863,-42.07303,41.09335,104.443756,6.255 471,459.6949,200.87329,31.859833,66.61017,6.088 471,627.46625,-17.72257,17.18695,47.716515,6.042 471,450.93478,217.26437,19.295502,39.601074,5.964 471,613.2026,451.1741,38.852173,111.624725,5.927 471,611.38074,-47.9937,41.572754,103.72841,5.346 471,536.27997,309.16357,144.90564,341.60193,5.116 471,-72.54777,265.65384,200.2168,460.504,5.045 471,583.2946,411.84702,71.25592,175.5563,5.019 471,1.7235333,274.24866,19.874655,44.284637,4.831 471,-5.8844237,-18.097885,17.640152,43.1189,4.808 471,306.90375,227.69885,19.944397,36.755737,4.776 471,-5.732129,278.12344,17.884148,42.79431,4.698 471,584.94196,-103.71433,76.20459,240.02505,4.672 471,-21.98739,401.33356,79.34,175.88226,4.669 471,-0.51178217,132.96172,24.805288,85.71367,4.644 471,283.91907,228.4406,18.688202,33.237045,4.61 471,495.03873,229.8333,236.4089,511.26068,4.605 471,4.880019,210.00212,29.734024,74.271805,4.507 471,468.92056,140.07932,29.580261,77.337265,4.428 471,314.9548,230.58205,18.397675,35.195908,4.415 471,491.60242,-179.72739,234.34436,422.63092,4.402 471,34.518845,203.19281,30.616188,67.20233,4.38 471,299.40414,225.50906,18.647125,34.05481,4.37 471,520.8789,184.42049,57.97754,112.59413,4.342 471,618.61255,489.0861,21.078735,44.391876,4.315 471,501.06543,191.5485,30.560608,71.529144,4.253 471,-4.97612,229.09988,18.346191,46.916595,4.229 471,380.85425,215.25089,18.703827,44.031982,4.216 471,476.78177,191.78462,30.403412,68.08501,4.207 471,427.63126,211.2922,18.866913,39.967163,4.099 471,103.46864,181.1294,28.663696,82.15338,4.095 472,516.13257,213.38602,25.977905,66.21924,84.308 472,431.2066,218.98892,24.753296,53.108917,81.779 472,460.8808,219.70453,22.661987,54.519226,80.659 472,599.3783,220.32713,25.885437,63.066483,67.806 472,399.00482,218.44995,22.244751,56.313446,43.975 472,415.98416,214.58629,27.21878,62.32753,15.389 472,405.95654,214.78004,25.590057,59.819473,12.055 472,615.24915,231.66963,21.042969,53.670547,8.295 472,-6.1097975,489.21268,18.84617,41.971893,6.932 472,523.0402,201.8505,29.186462,75.22403,6.58 472,-9.139142,466.6892,37.860428,88.94684,6.437 472,626.88556,-18.27403,17.550354,46.57578,6.264 472,-6.089443,-16.419542,17.927883,41.557785,6.16 472,626.5387,487.92844,20.479431,46.46042,5.989 472,621.90704,-34.047626,27.288757,75.874825,5.775 472,-17.826063,-65.64954,56.41352,149.55722,5.739 472,420.52264,196.44133,37.952393,72.423386,5.577 472,469.7496,221.24979,20.167816,47.32315,5.536 472,612.60156,456.64398,39.419373,104.676575,5.503 472,306.29816,227.85736,22.664795,41.700623,5.442 472,-11.109411,-32.121807,28.89388,71.49458,5.311 472,290.19318,229.72545,20.154572,34.998825,5.267 472,451.61755,198.5569,39.821167,71.84764,5.261 472,602.12115,-56.63412,53.617676,135.58812,5.256 472,595.12036,212.70575,20.820679,48.242004,5.226 472,536.14075,310.32162,145.30518,339.5375,5.201 472,583.0293,414.35498,71.45691,174.48975,5.188 472,-17.712172,439.17603,55.131096,136.30634,5.124 472,-72.31766,265.63934,200.20767,460.96313,5.034 472,495.1616,231.22621,236.09586,511.73413,4.985 472,619.03125,-18.506851,18.61499,44.594063,4.956 472,609.5768,221.72139,20.205627,49.08937,4.868 472,5.2687073,212.8205,30.564938,77.98303,4.844 473,501.24365,220.12944,27.143372,67.174576,94.726 473,470.3376,215.56305,30.370789,81.6037,90.145 473,429.00943,215.33401,32.812958,77.47287,87.046 473,607.6603,205.34705,28.303406,78.66382,24.511 473,593.83124,104.51868,43.362366,192.4415,12.937 473,605.7633,77.22101,30.867554,88.714874,9.368 473,487.4406,213.31392,32.87274,78.71062,8.044 473,556.3074,49.308304,30.021301,73.49516,7.751 473,76.80387,171.16702,30.968803,80.14555,7.59 473,616.6636,228.38478,20.36139,62.337265,7.54 473,-6.009155,488.71115,18.906326,42.168854,7.302 473,-11.544525,477.8777,29.467377,63.88672,7.098 473,622.5383,-33.854694,26.623047,76.79251,6.705 473,627.1839,-17.056198,16.741577,47.0741,6.629 473,621.7233,477.57422,28.719116,67.3667,6.518 473,551.4596,51.604744,23.322144,58.62535,6.324 473,535.7918,52.274406,30.74762,75.63327,5.844 473,-17.699799,-65.33917,56.39935,149.79791,5.793 473,-17.50425,440.71484,55.018814,135.57782,5.548 473,604.09546,436.53534,53.864502,137.30927,5.536 473,-5.736498,-17.833164,17.440174,42.557842,5.398 473,454.16302,209.77835,31.248718,73.98941,5.381 473,602.4436,-55.492577,53.502747,141.78651,5.317 473,617.4793,66.62692,20.649536,62.167816,5.247 473,-11.30847,-32.34365,29.556665,72.71916,5.135 473,-72.34596,265.49304,200.08447,461.06805,5.05 473,310.2842,215.38342,27.707184,65.06021,5.004 473,536.27673,310.82556,143.88837,340.83813,4.943 473,-40.01261,369.1297,109.739525,275.8376,4.815 473,498.39786,192.55125,42.02823,85.74812,4.808 474,511.99945,209.57446,47.377747,118.54407,86.244 474,567.1418,216.16904,41.743225,105.83377,71.736 474,588.91644,211.6502,40.995483,135.72589,45.02 474,376.84924,203.57022,20.814087,46.44467,7.913 474,622.6328,-33.15159,27.047241,76.00622,6.996 474,-17.894009,-65.35826,56.49047,150.27321,6.859 474,8.098152,202.64127,27.284927,79.663605,6.832 474,48.371964,157.19772,31.500885,82.74359,6.766 474,626.97595,-18.641682,17.611938,47.698906,6.458 474,-8.957306,466.0732,37.59507,89.323395,6.421 474,-6.075346,489.9945,18.678188,40.960205,6.201 474,5.424246,173.83871,29.350962,67.34238,6.154 474,622.0135,476.70755,28.400818,67.968414,6.141 474,369.56458,194.21649,22.705688,49.450943,5.867 474,516.2496,207.00087,30.764465,76.98198,5.725 474,-5.5851736,203.96455,18.31984,50.125153,5.55 474,544.4191,212.94107,52.984802,122.341675,5.475 474,604.24536,434.4602,54.5708,139.65417,5.405 474,235.19885,243.64505,34.632935,57.803345,5.378 474,506.95663,209.10905,19.829376,47.49498,5.321 474,614.5187,70.40433,25.668945,81.221634,5.241 474,-17.304241,438.50668,54.71943,137.26279,5.198 474,535.89343,310.18372,144.29095,341.4159,5.148 474,608.47424,222.96896,36.239563,129.11261,5.085 474,-11.297892,-32.42755,29.698124,73.56266,4.968 474,-72.30849,265.89038,199.95055,460.938,4.968 474,-5.782262,-18.147278,17.546612,43.20153,4.869 474,499.68777,153.361,29.483124,72.70807,4.855 474,-39.61956,369.39868,109.38853,274.11853,4.763 474,587.97217,14.169411,33.194702,75.36055,4.719 474,602.48706,-56.023872,53.596985,140.75421,4.708 474,-10.394364,192.37997,28.071198,75.405304,4.687 474,47.028984,205.0357,27.186455,54.345886,4.579 474,224.85455,243.29596,23.44905,40.927246,4.536 474,585.5343,-103.904785,76.17993,238.48338,4.462 474,618.96313,-18.440712,18.314758,45.683594,4.441 474,561.2146,222.88951,33.924133,72.708206,4.437 474,494.50867,230.90358,237.00775,511.81506,4.435 474,517.4546,-34.589195,29.714478,72.76352,4.4 474,602.8277,231.08275,29.796753,86.885544,4.399 475,377.51367,203.76064,20.96582,44.468124,12.512 475,1.2778342,211.25162,20.419367,61.30902,8.804 475,544.55084,145.06932,28.102905,85.298035,8.453 475,0.82344055,112.34059,27.112818,81.900894,7.184 475,402.34622,208.87894,20.539825,55.062744,7.062 475,-6.0079613,489.3476,18.34052,42.339355,6.496 475,626.5669,487.297,20.534546,46.820984,6.184 475,622.7984,-33.715954,26.853027,77.164,6.159 475,613.0132,455.7473,39.01599,105.914734,6.036 475,627.2445,-18.714724,17.16156,49.001965,5.828 475,220.87752,234.2708,11.157074,24.42598,5.771 475,-17.824436,-65.972824,56.206486,150.588,5.713 475,7.334876,133.44147,29.505444,92.73364,5.704 475,-9.513842,462.8976,37.9955,94.61246,5.622 475,6.7341375,203.10071,25.932629,69.13016,5.458 475,-5.735079,-17.821474,17.449715,42.54156,5.369 475,602.36444,-56.899773,53.713684,140.87114,5.293 475,-11.296865,-32.333893,29.597082,72.60905,5.126 475,539.82135,119.32491,20.974792,50.26937,5.029 475,-8.94627,120.215256,28.628078,80.79726,4.995 475,549.91327,169.93109,28.646484,90.013245,4.928 475,375.91293,200.04025,34.435272,91.55643,4.914 475,372.0958,209.63501,19.687103,46.78528,4.887 475,-72.16114,265.8692,200.49731,461.23645,4.879 475,408.1756,213.90013,22.17517,57.60176,4.875 475,542.54266,121.242325,27.235657,69.0827,4.835 475,-21.718845,402.86182,78.818954,174.4895,4.828 475,585.4943,-102.0455,76.15784,235.37152,4.761 475,583.2172,413.31094,71.275696,175.42099,4.685 475,536.44464,311.57602,142.9707,340.55362,4.553 475,-8.766213,172.90366,28.24559,83.01828,4.549 475,-4.4542103,221.64655,18.976418,55.69751,4.457 475,489.7157,-179.35864,235.65387,422.12482,4.45 475,475.15002,-14.868177,15.9435425,39.25834,4.441 475,454.09973,221.38506,27.99115,71.66872,4.428 475,493.73035,229.51599,237.38794,514.01886,4.353 475,-3.9464748,199.9635,16.840174,50.56711,4.27 475,555.28375,223.2708,19.671814,43.024307,4.264 475,164.02731,240.46402,16.809235,29.854767,4.238 475,618.58624,488.84393,20.332092,44.743042,4.233 475,414.7536,206.6572,28.080505,66.98639,4.212 475,459.6378,-14.68556,15.677429,39.848297,4.194 475,172.46356,239.16302,16.237167,29.944916,4.176 475,2.5379622,490.08926,18.461359,40.244293,4.129 475,13.250162,212.84753,28.835676,67.7384,4.126 475,527.03503,-35.857853,26.582397,68.5382,4.12 475,483.22516,-14.044045,16.163513,38.6988,4.116 475,147.28987,243.8853,17.393448,32.66887,4.115 475,339.11285,196.99446,17.325104,43.132187,4.093 475,227.22458,246.93546,18.481735,35.756348,4.077 475,491.01962,-14.277072,15.98645,38.370773,4.045 475,-15.468936,188.28137,49.226536,135.23914,4.004 475,213.40157,231.12048,14.8607025,30.553955,4.003 475,155.93416,239.3898,17.09259,31.029053,3.993 475,419.02957,-13.922937,17.076385,37.96981,3.976 475,437.20322,94.42026,29.695312,79.821594,3.963 475,180.25055,237.147,16.617126,31.669159,3.96 475,535.44885,160.34721,28.4859,83.590515,3.949 475,-5.4625034,145.83307,19.38054,52.77034,3.916 475,379.99374,182.25137,28.204803,64.05852,3.903 475,387.8676,201.75307,37.641296,98.39696,3.889 475,451.64056,218.1113,20.340485,47.730743,3.869 475,619.6383,-18.354801,17.391235,45.44202,3.819 475,139.40656,244.69547,16.929214,33.71515,3.807 475,385.0028,208.91266,20.292755,48.15515,3.803 475,-9.784887,82.153244,30.449265,69.54909,3.788 475,467.21542,-14.256482,15.70282,38.95581,3.775 475,229.88818,235.45454,10.501297,23.222061,3.774 476,606.6926,140.11987,26.571167,95.49974,31.641 476,382.5902,204.17418,25.425293,50.70865,7.619 476,599.22064,122.39984,38.16571,161.68274,7.342 476,425.95184,212.0462,20.663757,56.027527,7.084 476,-11.432867,477.5075,29.253826,63.857727,7.018 476,622.4132,-33.230835,27.50122,75.47062,6.932 476,-12.386584,-42.01016,40.829105,104.26939,6.56 476,-5.907258,488.71582,18.764378,41.885315,6.516 476,613.35156,454.80484,38.982056,107.23129,6.506 476,627.1786,-17.488808,17.643555,46.214558,6.457 476,411.17645,211.88924,20.427979,60.301376,6.265 476,626.65546,487.0641,20.540283,47.067932,6.247 476,211.97107,240.2857,15.776657,27.217041,6.117 476,613.7225,56.68171,25.579834,81.41732,5.89 476,618.835,228.65494,18.513367,48.381805,5.786 476,615.29364,171.62035,24.85254,96.46278,5.612 476,617.69934,143.07431,19.212952,69.81064,5.326 476,613.1281,-17.991997,29.109558,69.58797,5.198 476,-5.7620745,-18.014137,17.505405,43.00644,5.112 476,553.6419,5.0303516,20.96283,40.534172,5.084 476,391.12656,206.60031,24.69571,55.909332,5.036 476,547.21344,14.79187,31.23346,67.44803,5.011 476,204.2581,240.06541,16.745789,28.22548,5.008 476,-72.35458,265.73535,199.7959,462.2937,4.94 476,602.0635,-54.16501,53.63684,139.40091,4.909 476,439.50806,202.04034,33.733368,93.14023,4.889 476,604.4791,109.379715,29.840698,92.510544,4.876 476,433.97403,217.15143,19.619873,54.26651,4.807 476,597.75256,80.07041,29.744812,82.16137,4.803 476,-9.923651,168.64174,28.033394,75.49211,4.802 476,407.0251,198.29633,34.90204,100.029205,4.798 476,-21.48201,403.71368,78.9787,174.68658,4.767 476,580.8345,34.748585,29.742859,75.19493,4.759 476,482.40817,226.38988,19.174408,56.899063,4.74 476,620.49023,144.98694,26.453186,87.250916,4.695 476,490.1019,-182.39886,235.73276,425.1746,4.695 476,590.2493,42.15384,32.1203,77.315384,4.677 476,541.39984,-32.253082,28.295471,76.456924,4.674 476,583.0901,411.81567,71.7995,176.76984,4.623 476,220.14282,249.12155,15.587326,26.643799,4.616 476,536.8176,311.49918,142.22192,341.24667,4.549 476,589.6736,146.79521,33.248657,89.515884,4.513 476,619.09174,-17.68782,18.06311,44.581825,4.495 476,585.89453,-104.09907,75.92407,239.33319,4.475 476,424.07788,200.35252,33.79474,94.11595,4.431 476,375.81854,196.81873,35.613403,99.408264,4.429 476,-5.0494437,154.31927,16.812744,43.05896,4.407 476,398.89786,205.56042,28.069153,68.828125,4.404 476,570.2509,7.280815,19.762451,38.432514,4.389 476,319.59558,203.01775,24.36676,60.654587,4.375 476,605.9054,-31.377922,28.494202,71.02807,4.337 476,-3.9193535,444.088,14.787799,37.590637,4.314 476,315.7319,232.62404,19.048096,33.78392,4.302 476,367.81622,202.8315,27.774933,68.821396,4.288 476,493.29303,228.3103,238.11371,514.3774,4.23 476,579.2777,137.82675,32.182007,82.290665,4.189 476,603.7959,44.032505,29.054565,80.15323,4.178 476,562.96747,18.588491,19.937317,39.136223,4.16 476,540.28674,48.059002,32.69214,83.10579,4.106 476,384.1684,184.83092,45.837128,126.42522,4.072 476,-4.9071794,189.72266,18.343561,48.457962,4.064 476,477.76532,252.15411,28.707886,76.51788,4.055 476,0.65832734,173.90773,25.613436,79.8345,4.051 477,473.58588,212.00151,25.813263,71.07762,44.966 477,485.97577,213.30737,25.751465,72.25787,14.164 477,426.16788,216.63531,19.109375,54.42218,13.733 477,496.7342,220.28568,19.490417,59.1409,9.14 477,434.6667,217.56783,18.785583,53.317978,8.88 477,612.92236,454.39932,40.501465,106.31827,6.772 477,626.7873,-20.105965,17.796082,51.80656,6.475 477,-5.8782206,490.2654,18.154285,41.230133,6.345 477,621.53284,478.80008,29.559021,64.97806,6.341 477,461.5838,215.27472,28.07129,74.003174,6.252 477,622.0834,-33.357876,27.3349,79.486664,6.188 477,602.10205,-55.853832,53.278076,141.64891,5.966 477,-12.308634,478.59924,30.443617,62.338867,5.632 477,619.1599,225.72125,17.63379,45.32727,5.454 477,-5.593109,-17.917648,17.127018,41.652725,5.343 477,613.1883,311.95587,25.247131,78.93558,5.311 477,-17.752897,-63.317932,56.54474,144.49467,5.272 477,319.38956,216.61765,28.405975,55.127197,5.236 477,614.4467,235.52473,25.214111,85.59114,5.19 477,385.95523,181.36806,29.808197,70.33754,5.151 477,490.74954,-183.71983,235.21481,426.93933,5.08 477,590.9257,0.17335892,28.972168,69.54111,4.982 477,-22.033215,402.17477,79.012405,174.6868,4.949 477,586.0325,-104.90043,74.66449,244.60413,4.921 477,536.73047,309.9644,142.43286,342.53,4.916 477,-72.53426,265.8462,199.91014,460.94495,4.89 477,397.73358,209.79742,25.779633,66.37726,4.88 477,441.9731,220.24739,18.800385,50.901627,4.714 477,300.6117,216.32378,30.100647,51.325027,4.714 477,-11.497751,-32.523643,29.492834,72.06763,4.702 477,580.8904,8.738846,30.916748,77.01837,4.65 477,582.7116,410.51782,72.31549,178.58716,4.625 477,476.4716,131.25171,27.396973,77.198,4.549 477,236.3201,246.81572,17.78888,35.59575,4.513 477,416.18396,196.24765,44.84662,133.46185,4.447 477,614.3766,-20.637781,27.62146,81.51273,4.432 477,420.27176,210.59645,19.994293,48.50215,4.398 477,375.85294,188.3641,29.63794,67.57884,4.384 477,493.8025,228.75778,237.7221,513.9951,4.349 477,387.78873,203.33829,38.1286,101.1077,4.342 477,617.9564,490.0638,21.634949,43.82895,4.329 477,595.9562,261.2567,34.48712,91.38287,4.305 477,461.99796,121.85933,30.133423,81.28487,4.289 477,243.56064,243.63272,18.196991,31.312134,4.247 477,501.94635,206.78912,31.408508,85.38013,4.184 477,211.17448,240.94516,17.137375,28.451385,4.174 477,586.006,489.36835,21.223755,41.947876,4.139 477,581.62274,-15.257835,31.6557,68.80042,4.079 477,614.7783,151.39232,25.924194,89.90448,4.079 477,-4.8079066,229.2508,17.543991,46.370605,4.069 477,2.1581154,492.07678,19.187119,38.920837,4.069 477,611.61145,72.69649,26.522095,104.146774,4.057 477,460.08313,80.41064,22.035065,58.521675,4.032 478,481.03314,222.82822,25.759583,80.622894,18.859 478,486.42584,124.40694,28.030273,79.17378,11.144 478,120.21867,217.8976,20.15976,44.847946,8.495 478,-6.05011,488.50555,19.118736,41.663574,7.702 478,-11.598331,478.43234,29.779627,63.008392,7.395 478,491.7462,210.91768,25.839325,78.78084,7.349 478,430.16016,224.41725,50.536713,122.63579,7.145 478,326.5842,213.08757,27.858429,60.18953,7.095 478,613.05566,454.23773,40.511353,106.53662,6.828 478,470.34125,229.35666,29.240479,89.75711,6.663 478,390.64575,204.4179,26.40747,70.840866,6.626 478,501.193,196.63678,28.304321,79.67334,6.441 478,626.542,487.53088,20.743713,46.457153,6.147 478,617.43823,217.9454,22.86084,85.17001,5.905 478,569.44714,91.60173,32.66455,88.79581,5.807 478,449.72235,239.11469,41.37906,115.87781,5.779 478,622.6584,-34.152164,26.9693,78.31104,5.771 478,387.61053,228.49423,31.22171,76.104126,5.764 478,627.2152,-18.721205,17.248169,48.688484,5.715 478,508.99957,158.39362,29.880981,77.80136,5.663 478,-11.247233,-32.40345,29.544373,73.18531,5.663 478,-17.329535,-64.63119,55.983192,148.44771,5.579 478,461.5083,229.4693,52.28058,136.09253,5.501 478,421.4592,232.45789,41.075134,97.70941,5.459 478,212.48834,248.05052,16.486496,32.006516,5.379 478,-5.548082,-17.932384,17.26364,43.0687,5.328 478,482.21268,123.29079,22.912476,59.077576,5.282 478,529.11346,209.84813,24.030151,69.68837,5.253 478,-17.688469,439.95752,55.53124,135.58044,5.152 478,580.2662,213.60571,31.101318,77.63898,5.075 478,-0.1920557,259.3811,26.955303,69.395935,5.034 478,-72.166985,265.59848,199.89896,462.6393,5.027 478,330.76813,230.48416,19.70993,38.03604,4.993 478,539.5931,144.67584,31.141418,81.35399,4.934 478,602.68134,-54.977585,53.1344,139.17328,4.912 478,352.55325,218.07324,24.783752,56.985138,4.896 478,336.28754,218.13876,20.266663,41.35141,4.87 478,565.35034,266.78632,29.681091,79.43213,4.832 478,500.66205,139.88101,28.983582,81.17784,4.783 478,-39.85268,369.30704,109.68408,274.62033,4.766 478,536.49146,310.1897,143.14929,342.72357,4.745 478,478.97607,137.33978,30.49887,89.086334,4.714 478,322.95926,216.35934,21.583221,45.552124,4.668 478,63.569923,208.13936,29.607658,65.7755,4.613 478,423.1123,224.15633,27.651093,70.05412,4.579 478,308.3572,213.29813,31.415497,60.169647,4.554 478,413.35492,197.91684,29.467072,70.12796,4.512 478,583.5384,411.08557,71.11163,176.80664,4.502 478,5.324943,469.7195,38.215954,92.20395,4.488 478,493.49225,229.99939,237.53589,512.6531,4.424 478,489.82446,-180.25333,235.93835,420.12125,4.423 478,218.6167,245.8511,15.4534,28.852142,4.402 478,204.66643,248.26974,16.914688,30.414856,4.398 479,467.46436,226.87537,19.16278,54.081787,11.584 479,612.3144,135.8878,26.806335,92.64966,8.859 479,566.8173,210.78621,29.831299,96.7101,7.581 479,564.2928,141.82,29.737,92.33063,7.425 479,474.0736,229.4162,19.325073,55.73285,7.009 479,612.7764,454.05243,40.230896,107.01044,6.846 479,219.67683,247.93369,15.113113,27.999817,6.827 479,-6.152953,489.4487,18.869785,41.63333,6.787 479,594.3086,93.398544,45.22455,154.49298,6.326 479,-12.5390625,-41.161263,40.92333,103.27593,6.168 479,-11.445727,479.06442,29.41547,61.689545,6.158 479,566.39124,105.87346,28.203125,74.70749,6.119 479,626.3775,487.3071,21.108704,46.117584,5.945 479,622.5552,-33.594936,27.548218,76.47431,5.902 479,455.9193,227.60788,25.850983,68.95697,5.793 479,1.6210616,238.00308,20.425915,56.17462,5.578 479,333.54974,213.2922,30.630493,61.482086,5.434 479,304.8709,242.08873,24.605042,42.066147,5.396 479,417.28583,219.86804,20.98825,54.203003,5.319 479,419.0617,188.53944,30.917053,82.11296,5.315 479,212.80052,246.54422,16.045273,30.38559,5.265 479,627.1013,-19.868778,17.874634,48.698414,5.238 479,71.85045,215.98853,22.94043,51.44333,5.175 479,571.1987,125.66017,30.44989,85.670074,5.092 479,-72.24366,265.28027,200.24442,462.6939,5.09 479,572.849,212.28969,49.808533,160.81566,5.007 479,406.9555,204.25638,27.441925,73.35785,4.998 479,579.6797,303.08606,31.651855,74.24896,4.995 479,602.7259,-57.73936,53.61023,138.29742,4.96 479,-17.649544,437.99832,55.054996,137.73093,4.955 479,577.998,187.87619,32.127197,89.75641,4.831 479,6.34861,233.388,27.201931,68.72052,4.796 479,155.58926,234.14888,31.0905,51.833237,4.796 479,344.9487,221.4735,20.899078,43.18947,4.709 479,579.0697,152.01973,31.048462,78.734024,4.708 479,-4.00031,219.17247,16.8079,38.468887,4.707 479,-5.8505774,-18.175457,17.557968,43.279854,4.704 479,-6.774988,245.26082,35.790886,102.01555,4.692 479,-40.14995,368.0528,110.269104,275.1291,4.675 479,536.48016,310.85693,142.7193,342.12073,4.66 479,590.4625,145.23363,30.970337,77.23976,4.627 479,33.01001,194.55849,31.928986,76.228836,4.584 479,-5.3453493,230.8407,18.289371,45.57843,4.548 479,323.21957,233.13928,35.10132,61.878845,4.54 479,583.144,410.55865,71.78204,177.85895,4.524 479,292.26788,242.79707,33.57962,54.584244,4.523 479,576.10175,309.34692,22.844482,53.131287,4.402 479,580.30817,111.167206,29.151611,76.60239,4.391 479,567.81744,20.564835,27.532654,85.50534,4.39 479,585.8051,489.1471,20.964844,42.043213,4.318 479,597.9804,299.87024,31.292786,75.95041,4.279 479,493.47437,228.80966,237.7619,513.06335,4.276 479,2.2062194,490.66864,19.267532,39.485535,4.254 479,602.5156,489.79453,20.136902,41.006805,4.244 479,594.9314,-47.772118,43.750793,101.20997,4.227 479,618.0868,489.06842,21.02478,43.97058,4.214 479,204.52701,247.10445,16.55339,31.02858,4.209 479,524.6538,111.741,31.670715,75.39191,4.192 479,577.8199,489.87256,20.690125,40.76581,4.179 479,540.85974,101.508095,29.99768,68.516716,4.156 479,348.88324,202.84528,24.86737,59.36325,4.146 479,594.0779,488.82526,20.679504,42.686157,4.142 479,542.4724,224.46729,53.34778,162.76587,4.125 480,448.64447,227.34158,20.49121,55.83493,14.753 480,605.3356,119.32225,29.71576,83.19025,9.714 480,6.806535,203.04501,26.388813,73.93808,9.567 480,613.22437,453.12885,40.0,107.88867,8.035 480,616.30383,212.43466,21.924438,73.101166,7.711 480,526.1647,230.64534,27.306152,85.16832,7.614 480,616.2134,121.319626,21.518127,61.26245,6.583 480,-5.8826404,489.03116,18.376015,41.04831,6.557 480,-11.477791,478.7299,28.846762,61.717926,6.506 480,510.23083,246.72507,29.20404,82.847046,6.496 480,610.8992,-48.41835,41.571655,100.72606,6.471 480,-4.9684176,205.3523,19.177399,53.138153,6.274 480,601.60864,119.83769,22.419067,53.78328,6.236 480,627.49677,-19.78213,17.196167,48.704113,6.12 480,593.131,107.00721,45.949585,163.9013,5.977 480,626.20575,487.36234,21.396484,46.281097,5.882 480,-17.781242,-65.14453,56.25199,148.67218,5.738 480,412.3443,224.54433,27.739655,60.99269,5.545 480,433.64807,225.7543,27.22992,64.54489,5.48 480,-9.435238,209.83206,29.159094,75.804535,5.458 480,301.8954,242.86194,29.862762,58.796936,5.445 480,461.3831,218.57819,28.064423,58.624786,5.411 480,-5.788236,-17.952724,17.498394,42.58613,5.379 480,392.59442,218.1112,25.785095,63.986145,5.35 480,1.2782645,208.24837,22.785025,59.216537,5.264 480,437.30627,223.89198,35.548523,94.96861,5.251 480,390.29407,215.64598,36.93689,100.054,5.239 480,-11.385069,-32.597515,29.686039,72.908356,5.237 480,-21.350698,404.70013,78.84425,173.42157,4.94 480,-71.871605,265.89114,199.68442,461.16977,4.932 480,211.52963,243.76718,16.41684,31.244202,4.879 480,374.49673,217.7219,37.951508,96.77368,4.853 480,421.43762,221.20357,36.86133,97.281784,4.849 480,333.54272,227.51816,32.367554,59.12906,4.814 480,453.26996,225.98463,26.556885,78.08595,4.794 480,325.00858,240.22345,32.15341,58.866516,4.757 480,311.37546,241.14493,23.174835,41.49292,4.723 480,571.96844,118.13225,29.007019,70.37874,4.7 480,583.2534,411.0305,71.507324,177.29654,4.672 480,319.87103,244.16101,23.613281,44.412354,4.633 480,536.40784,311.38284,143.13025,341.24936,4.564 480,337.49768,244.44348,21.713928,35.770264,4.516 480,121.954834,260.88324,36.64058,54.739502,4.474 480,345.22534,204.83273,22.45871,45.548996,4.412 480,597.64484,229.25668,37.73517,106.10791,4.35 480,596.05884,458.74103,40.25409,101.27191,4.312 480,617.9446,488.5594,21.118286,44.53955,4.304 480,493.56976,229.71912,237.49683,512.5035,4.289 480,267.99173,486.1327,31.865234,57.377808,4.278 480,283.97534,485.41644,32.080566,57.89087,4.277 480,477.8384,234.5108,28.28949,74.39307,4.274 480,452.79636,201.65608,30.628387,66.99663,4.25 480,581.2466,112.18212,29.26294,70.10404,4.232 480,548.1322,223.71252,36.786377,98.57776,4.217 480,594.0233,488.6795,20.472534,42.43048,4.212 480,619.3431,-20.766994,17.756165,47.28751,4.21 480,569.87756,490.47473,20.703857,40.456665,4.208 481,493.48785,222.06825,29.49762,78.7762,31.003 481,425.0052,224.21887,18.94345,51.52777,11.26 481,341.02628,233.66104,33.393433,71.48273,8.983 481,323.33194,232.5266,32.878845,67.19527,8.487 481,-11.95702,478.85117,29.90974,62.257477,7.559 481,538.7972,102.68651,31.26007,71.86032,7.5 481,293.89032,232.98567,32.07071,60.093674,7.396 481,612.45557,454.74664,40.488403,106.243225,7.046 481,588.1907,85.38893,32.3313,70.06506,6.598 481,393.69412,232.79196,20.440643,52.8414,6.582 481,-6.342213,488.48486,18.93325,42.343628,6.559 481,626.17334,487.63403,21.23877,46.17688,6.426 481,389.35315,218.48964,36.663086,96.86583,6.326 481,332.2902,222.03648,32.004395,65.290115,6.166 481,627.25134,-17.771921,17.43396,46.779007,6.055 481,196.96367,238.4876,16.481827,30.185257,6.025 481,397.9629,213.34073,26.643738,63.657806,6.023 481,306.52216,235.0008,35.054382,70.94739,5.982 481,-12.897979,-40.997864,41.36432,103.263245,5.926 481,203.2889,239.34752,16.10318,27.698685,5.816 481,481.1165,225.41714,29.246613,80.384094,5.763 481,622.4495,-34.444843,27.179993,76.75717,5.664 481,597.7649,234.421,14.066406,33.057938,5.426 481,285.85828,249.095,33.979187,65.23224,5.394 481,-17.503176,440.67834,54.963013,135.78711,5.354 481,617.7514,488.114,21.418396,45.3584,5.277 481,602.61084,-56.07348,53.68524,141.02722,5.235 481,-5.6717405,-18.092289,17.36302,43.153076,5.065 481,570.95526,36.547256,19.031433,37.015114,4.993 481,-71.88788,265.8014,199.60698,461.87842,4.991 481,434.19403,232.12016,18.213257,44.944168,4.858 481,5.166417,469.461,38.235996,92.28601,4.841 481,567.1894,66.07236,23.362915,43.660362,4.789 481,-39.923336,369.37012,109.68608,274.8681,4.771 481,546.1245,-12.378826,31.87622,69.571495,4.714 481,354.4727,223.8938,40.658905,84.42999,4.706 481,536.54974,311.08844,143.01477,341.1839,4.655 481,583.0014,411.73737,71.59607,176.52466,4.647 481,555.7739,210.14728,30.720276,61.280945,4.642 481,379.8083,232.39142,19.28897,49.585266,4.618 481,545.61206,111.87242,32.843628,85.641815,4.61 481,251.55652,257.23288,32.79071,57.498962,4.61 481,-4.74218,182.26611,17.805683,46.75255,4.574 481,585.3028,-102.27965,76.34088,236.43578,4.525 481,535.4876,222.8264,25.631104,68.57765,4.522 481,386.63623,229.5323,20.269928,51.354233,4.465 481,515.2821,228.35951,39.385986,99.33449,4.463 481,577.45026,489.99814,21.17096,40.806,4.439 481,550.3737,104.861694,23.999573,49.285065,4.435 481,-1.0956752,173.36667,25.091623,76.13295,4.414 481,587.2912,33.171295,19.663635,34.59912,4.394 482,398.5524,231.70406,23.232452,56.460922,25.521 482,470.7443,229.24086,24.332977,62.541733,15.098 482,612.97723,454.36102,40.192627,106.6991,7.348 482,354.93842,228.35635,41.874664,86.27124,7.263 482,-6.132678,489.22293,18.848309,41.70688,7.212 482,-11.710793,478.64655,29.685831,62.435364,7.009 482,626.8363,489.07587,20.676575,44.54425,6.723 482,187.85754,237.38168,15.986084,31.07132,6.605 482,171.56754,246.45862,17.434235,30.71637,6.251 482,179.50058,246.18134,16.878967,30.813232,6.217 482,419.26028,254.89935,32.775665,75.15741,6.121 482,499.18,223.31032,39.051758,95.04234,5.926 482,627.1177,-19.028563,17.780334,49.81749,5.808 482,292.6111,229.43329,30.56314,59.156616,5.762 482,383.70563,226.29977,29.502808,63.279877,5.733 482,484.2876,223.68217,38.16559,96.46797,5.73 482,435.08295,243.11258,17.906494,30.617981,5.69 482,502.96848,210.21364,29.182343,72.611465,5.656 482,-17.601194,-63.89317,56.19996,145.23111,5.655 482,615.8109,232.71805,24.896729,92.3595,5.565 482,-5.760745,-17.940075,17.494179,42.70502,5.456 482,372.9738,222.00623,29.424255,64.41754,5.419 482,622.30524,-33.023098,27.461975,78.50699,5.378 482,616.9304,-0.22401047,22.535156,68.21684,5.34 482,601.64514,-54.814537,53.24951,135.80104,5.292 482,-11.363525,-32.45986,29.67871,72.86175,5.287 482,-71.90734,265.29407,200.08731,461.91345,5.169 482,618.6182,492.09296,19.854614,41.00171,5.064 482,347.7272,229.97232,30.177612,63.973816,5.054 482,617.92676,216.3854,19.450684,66.30856,5.04 482,-17.498121,438.349,54.792183,138.10675,4.976 482,181.41864,238.42134,36.9926,72.850815,4.917 482,146.9568,244.00815,19.069992,34.449036,4.822 482,577.9315,489.62524,20.456299,41.365356,4.751 482,-40.14812,367.30814,110.49547,275.89218,4.722 482,469.51105,225.62953,38.07437,97.47298,4.714 482,312.63376,243.64354,22.54831,42.98616,4.666 482,187.3953,251.82611,17.647827,32.988586,4.663 482,583.30164,411.2428,71.612976,177.4375,4.65 482,536.6342,310.62708,142.97394,340.94177,4.649 482,304.2776,244.37396,21.983337,42.914,4.607 482,561.7931,490.7575,20.743225,40.34308,4.601 482,585.8546,-102.33469,74.81952,236.18268,4.591 482,219.37753,237.06512,17.641235,27.745483,4.586 482,129.13196,257.2351,37.454285,65.56018,4.566 482,384.1709,232.47685,43.395447,93.10863,4.56 482,291.3113,238.80461,21.236877,39.215683,4.539 482,403.3118,246.88177,43.419464,97.8808,4.477 482,203.60333,246.33768,17.150421,31.555176,4.468 482,195.08003,245.36664,16.786652,31.85846,4.403 482,479.2252,226.88408,21.957916,55.03328,4.403 482,490.1324,-181.76685,234.48846,422.02448,4.398 482,323.36102,225.85384,40.92047,90.41734,4.37 482,138.5421,244.1488,19.787186,35.08954,4.358 482,571.7766,234.63579,31.571777,66.10988,4.352 482,618.67114,-20.413403,18.574646,50.75712,4.35 482,569.6081,490.51862,21.057068,40.056274,4.343 482,196.54951,238.73944,37.584244,74.91791,4.322 482,343.9058,237.45844,25.484833,43.13739,4.298 482,486.61652,197.79942,28.188599,78.593704,4.298 482,275.63385,231.2188,40.53891,88.361404,4.295 482,2.2756946,279.1772,35.654198,71.55615,4.29 482,493.79514,230.2719,237.1719,511.5271,4.289 482,166.03522,239.72632,36.985687,70.689026,4.274 482,586.18695,489.3823,20.39746,42.09494,4.273 482,307.32727,227.66518,41.168213,91.413925,4.245 482,514.7764,223.38792,39.54773,95.59206,4.234 482,2.1179776,489.8702,19.629196,40.451263,4.192 482,558.443,200.16254,49.877014,118.77838,4.177 482,219.3536,248.31276,18.368881,31.077103,4.168 482,333.19574,226.01993,57.333313,135.32877,4.157 483,423.79428,225.9162,29.95282,73.06171,38.733 483,583.76514,224.29913,37.114136,126.129395,11.002 483,547.26587,206.1184,28.101929,74.76524,7.696 483,612.9864,453.3648,39.988464,108.060486,7.181 483,170.97908,236.24454,18.732193,35.135468,6.927 483,425.64728,220.83945,22.657928,48.95752,6.905 483,-6.2655687,489.4096,18.939043,41.67755,6.558 483,626.1181,487.02408,21.314697,46.884186,6.526 483,549.7617,231.75726,30.647888,88.052246,6.348 483,-12.043934,478.3542,30.198881,63.083923,6.344 483,177.19759,232.32994,19.793213,35.215836,6.116 483,626.9806,-19.257113,17.756836,48.5833,5.896 483,473.55557,247.5944,19.462189,37.679794,5.842 483,622.10364,-34.54479,27.806152,77.688965,5.802 483,-17.624401,-64.15535,56.197247,145.90799,5.709 483,154.87964,238.04074,19.945038,34.865448,5.693 483,163.45305,243.77245,18.349136,33.818344,5.554 483,407.3251,227.701,29.275818,68.220566,5.523 483,529.1507,208.3957,52.999817,117.30238,5.485 483,-5.7393904,-17.866543,17.45131,42.541744,5.411 483,-11.366709,-32.470066,29.65924,72.73835,5.258 483,558.03516,216.51764,27.140442,72.48361,5.219 483,335.6566,235.43993,26.0997,38.87654,5.195 483,561.12616,216.31052,52.512756,161.80508,5.184 483,121.76446,241.56874,22.171227,37.13298,5.136 483,-72.09248,265.22302,199.9588,462.4137,5.044 483,378.10046,221.05719,57.347595,135.55011,5.013 483,-21.343063,404.1355,78.79689,173.8794,4.923 483,536.2056,309.79608,143.53424,342.2287,4.911 483,586.1023,488.60117,21.095398,43.036163,4.854 483,355.27203,223.12575,41.675873,90.62517,4.854 483,588.7202,227.16376,46.2547,175.4082,4.836 483,350.6557,235.45294,26.42514,47.12201,4.826 483,602.78534,-56.06435,53.186096,140.371,4.7 483,583.1352,411.08447,71.7135,176.84827,4.635 483,146.20212,238.36726,21.334885,35.526382,4.531 483,597.11475,289.8184,31.63861,92.482574,4.504 483,585.3158,-101.46055,76.24298,236.905,4.438 483,493.70813,230.08461,237.69946,511.9563,4.418 483,593.2743,240.54535,33.966797,84.41608,4.399 483,596.2388,460.2934,40.277405,99.34265,4.243 483,415.4505,177.0722,26.966217,79.58618,4.217 483,553.4962,-12.932314,33.331726,71.956696,4.21 483,163.00948,236.24094,40.83516,72.89081,4.2 483,561.65674,490.1688,21.05603,40.5278,4.188 483,412.66284,219.93439,53.552643,121.39337,4.168 483,556.7334,12.538784,28.736755,82.29451,4.165 483,572.72546,232.58488,31.935669,86.33498,4.158 483,526.2044,-35.421474,28.903381,77.08333,4.144 483,286.37695,225.90485,30.351501,51.79373,4.143 483,34.243923,232.47044,22.626942,32.406693,4.133 483,569.5434,489.36813,21.176453,41.919525,4.132 483,577.7012,488.46967,21.04596,43.072998,4.12 484,507.55792,247.58965,29.38086,73.47719,27.857 484,493.8067,245.49191,32.223083,81.11447,18.604 484,162.78622,228.29445,19.687057,35.396194,11.216 484,120.41062,225.42474,20.691978,43.440735,10.948 484,499.0473,210.75284,21.357056,56.57071,10.591 484,604.4301,188.12596,31.248962,88.17134,10.503 484,592.0731,115.50652,44.75287,179.41519,8.85 484,155.8779,229.58255,18.684494,33.39972,8.301 484,169.24023,223.38217,19.420532,37.512543,7.973 484,470.11072,253.86577,28.966675,77.429214,7.952 484,-5.793601,488.7561,18.438072,41.892395,7.54 484,499.0296,216.89981,29.60315,81.3371,7.426 484,416.53476,222.94424,21.528778,53.213226,7.367 484,627.13043,489.04553,19.827637,44.386353,6.81 484,-11.128223,478.83847,28.70696,62.98587,6.627 484,516.667,247.43137,24.10083,52.009308,6.498 484,420.17365,174.8549,26.681396,81.39229,6.203 484,613.02515,456.775,38.663574,104.663055,6.198 484,622.6909,-33.79688,27.065857,77.04143,6.186 484,489.5743,211.28685,26.7258,78.8,6.069 484,148.57,229.36432,17.803436,34.092773,5.968 484,113.106995,232.1541,22.792557,41.17137,5.905 484,602.43115,-56.614777,54.016663,138.79991,5.854 484,397.38214,226.64096,29.467468,59.655518,5.837 484,-17.598577,-64.08603,56.194923,145.96411,5.744 484,627.1642,-18.71106,17.432983,48.251163,5.579 484,24.341873,228.17946,20.330986,29.016373,5.441 484,438.6128,229.43727,26.597961,79.64778,5.428 484,428.45746,185.5624,28.891357,74.03288,5.427 484,438.33377,97.95245,27.965912,76.01108,5.423 484,-5.765115,-17.880445,17.467258,42.548744,5.411 484,462.48492,242.26852,28.500183,76.268005,5.399 484,-11.376087,-32.422913,29.717567,72.640175,5.323 484,372.76974,241.68822,35.82553,66.23195,5.128 484,-72.5746,265.0025,199.91081,463.49945,5.105 484,536.5084,309.9231,143.41339,341.41553,4.992 484,401.20477,225.64752,42.482544,85.74902,4.976 484,330.32224,230.12984,20.570374,33.23381,4.965 484,240.70273,218.80339,22.339508,41.607346,4.925 484,583.37665,413.12378,71.4964,175.66412,4.925 484,324.462,228.30257,34.04828,52.97966,4.919 484,473.74515,261.81055,20.01242,50.335358,4.867 484,490.66342,272.31793,22.651276,51.48517,4.775 484,482.74463,211.51834,18.124512,44.582886,4.757 484,-40.385506,368.0854,110.46438,273.78204,4.735 484,585.77673,-101.735405,75.1189,238.39145,4.7 484,419.0778,232.05753,41.51413,97.835266,4.697 484,377.94388,221.39671,58.726715,122.96358,4.669 484,386.2005,233.43353,30.211517,70.59839,4.651 484,235.0566,222.69237,32.615463,57.585587,4.623 484,479.60016,243.04135,28.206665,80.802795,4.604 484,493.82413,230.69559,237.69254,511.29636,4.56 484,458.61435,249.1482,19.238739,52.004333,4.543 484,597.4729,149.13583,29.17694,94.13016,4.499 484,475.5041,223.80081,16.400208,36.035248,4.495 484,-4.762649,221.58104,16.827564,35.29387,4.486 484,-17.433165,435.87747,54.707977,140.79477,4.476 485,162.0727,230.38954,19.566223,42.34468,14.08 485,131.39465,236.82787,18.250488,38.68547,11.955 485,477.99298,241.21693,27.6474,71.902145,11.354 485,138.57094,235.607,18.392593,38.1651,9.658 485,146.59274,235.07515,19.10675,38.897842,9.336 485,345.75934,238.91968,19.432434,35.155945,8.185 485,154.73515,235.17155,20.149277,39.497208,7.885 485,524.8711,-1.3449631,30.388428,72.86255,7.674 485,-11.627367,478.93295,29.679813,62.695282,7.581 485,-6.2941236,488.86185,19.035513,41.83145,7.571 485,627.35455,-19.525225,17.693909,48.497543,6.899 485,562.0908,254.51926,37.09491,68.92731,6.448 485,623.0664,-34.177452,26.619873,76.450516,6.293 485,613.15106,453.50854,39.942932,107.485596,6.06 485,602.2381,-57.939407,53.562622,137.26215,5.967 485,-17.568739,-63.947563,56.24682,144.85768,5.802 485,402.85342,243.81393,34.014435,74.872955,5.795 485,626.29266,486.93924,21.08136,48.25949,5.795 485,83.08972,226.0786,29.750313,59.763412,5.616 485,-5.765486,-17.827862,17.446724,42.464462,5.463 485,-11.403751,-32.390053,29.730165,72.637215,5.318 485,-17.533352,439.22064,55.32621,136.9154,5.174 485,124.17991,236.87549,18.362679,39.770203,5.167 485,302.50897,222.17007,23.574554,48.117645,5.139 485,339.9777,236.11537,18.21286,33.72368,5.098 485,169.89337,240.55476,18.764786,34.01912,5.085 485,-72.51733,265.2978,200.07867,463.74005,5.032 485,242.95374,224.19598,20.65982,37.563843,4.984 485,361.62592,244.4014,22.81372,37.64795,4.977 485,585.4972,-99.14025,75.318726,233.00137,4.925 485,618.76074,-21.171227,18.700134,47.99912,4.912 485,179.06409,236.77884,17.484772,33.167633,4.903 485,-39.58411,370.0027,109.31477,274.1333,4.876 485,-4.49963,221.01851,16.425648,37.721664,4.833 485,363.02362,249.31802,30.707031,51.474976,4.805 485,594.83435,-47.540962,43.43927,100.70096,4.676 485,540.05865,-0.26171875,29.939697,65.052986,4.665 485,613.1745,47.19807,38.23114,104.2401,4.626 485,426.65466,244.78766,32.173706,67.34863,4.609 485,536.25775,310.641,143.28723,340.9485,4.578 485,583.0706,411.17014,71.68884,176.89621,4.573 485,69.191696,224.4778,30.625793,60.53682,4.554 485,505.9464,211.22267,19.026428,45.335373,4.546 485,388.66003,247.36084,35.533997,69.370056,4.543 485,563.094,235.76343,19.426697,36.419464,4.45 485,451.1484,170.61145,32.561188,71.81523,4.334 485,618.2931,221.65508,20.654907,45.63066,4.293 485,5.226269,468.99026,38.56912,92.90231,4.287 485,493.1754,230.06778,238.05994,512.78735,4.285 485,494.6353,192.61195,28.721436,65.34776,4.273 485,618.3598,488.14777,21.42926,45.93402,4.253 485,411.21356,232.85776,18.937744,37.151398,4.243 485,354.90216,239.79878,18.553925,34.136612,4.204 485,1.9811344,490.461,19.501299,40.057434,4.198 485,4.0357738,224.66898,17.914062,32.86728,4.175 485,617.6326,75.63684,22.995178,59.96074,4.167 485,555.9146,-32.764324,56.940735,126.44345,4.152 485,616.1646,190.17113,23.046448,49.469772,4.078 485,115.79716,236.72617,19.353477,41.20685,4.063 485,492.17847,245.71661,29.11615,72.620605,4.008 485,203.84799,228.41908,17.443497,30.54631,3.965 485,465.51575,252.74237,23.28247,58.673096,3.96 485,364.01202,169.12538,30.83023,66.27005,3.958 485,546.3341,490.88348,20.204712,39.752563,3.952 485,132.26935,233.59644,30.747757,55.916687,3.951 486,146.83295,227.80716,19.529175,41.435547,25.503 486,162.37718,227.57552,19.852875,39.142746,19.518 486,169.66968,230.71222,18.701324,37.989075,8.488 486,153.66579,231.80705,19.351013,37.038986,8.286 486,622.63605,-33.504803,26.785034,79.27945,7.407 486,401.7649,249.1279,21.748291,37.731995,6.764 486,177.12927,228.07518,19.388199,38.1678,6.618 486,613.10956,454.1855,40.199646,106.21759,6.566 486,626.83234,-19.258154,17.744995,49.70427,6.476 486,-6.040722,490.2112,18.605156,41.02646,6.226 486,602.8689,-57.0726,52.853027,138.37683,5.904 486,626.2856,486.86926,21.045654,47.17395,5.843 486,-17.55233,-64.271225,56.19529,146.29007,5.71 486,50.542713,223.71634,32.36514,65.20572,5.669 486,116.14312,227.81723,32.338722,58.418945,5.578 486,-11.678408,478.8839,29.636103,62.231445,5.568 486,-5.7659807,-17.926395,17.454433,42.56783,5.453 486,-11.374521,-32.467384,29.720362,72.576096,5.359 486,395.90668,260.37592,33.042328,51.892517,5.217 486,-4.3850956,222.13866,16.655745,36.210648,5.07 486,-21.603117,403.17102,78.55683,175.02875,5.057 486,-72.598274,265.87274,200.52187,463.05573,5.043 486,251.11142,220.09692,19.124237,38.591156,4.802 486,361.862,231.16461,20.66043,35.75647,4.784 486,583.0027,410.54965,71.898315,178.19449,4.651 486,134.8168,227.91644,29.377457,54.783722,4.642 486,536.4971,311.39264,142.91455,340.09552,4.612 486,458.6538,308.14548,35.677124,71.88187,4.582 486,617.77405,488.8268,21.69812,44.294403,4.55 486,378.20703,239.0191,20.630219,33.658783,4.476 486,596.29553,227.18747,32.273804,62.2406,4.449 486,585.42456,-101.529686,76.0824,238.2102,4.429 486,616.43134,86.87096,23.997375,74.784164,4.312 486,47.74623,217.12804,25.031319,48.791824,4.234 486,541.8225,-33.72124,28.456299,71.31354,4.23 486,519.17523,238.04042,23.735596,42.878983,4.225 486,493.38007,229.10468,237.48676,513.05,4.207 486,409.87332,230.88373,19.758057,35.267303,4.2 486,614.2916,-20.426178,27.981018,75.70459,4.146 486,585.6896,489.30344,20.923706,42.23471,4.143 486,594.1689,489.04,20.562012,42.106537,4.12 486,130.68083,230.25954,20.46016,41.291153,4.098 486,113.80227,231.99661,21.613213,40.398407,4.091 486,618.5493,-18.529095,18.746033,48.783566,4.073 486,436.55304,234.25183,40.187134,79.670044,4.055 486,145.7944,232.10178,32.35208,57.17572,4.052 486,402.66464,274.67813,32.70346,53.385223,4.043 486,172.5206,226.69072,29.587067,55.83461,4.023 486,508.9254,-17.59618,28.470581,65.240776,3.984 486,562.16956,489.37506,20.333618,42.204407,3.967 486,122.06285,223.07553,18.132431,37.865112,3.956 486,338.41995,228.39027,30.762207,55.68663,3.948 486,377.56384,159.70332,34.184387,74.70198,3.942 486,465.43793,253.45148,32.818573,71.0874,3.936 486,596.3702,460.97824,40.154602,97.90579,3.905 486,-5.7693377,297.94547,15.993698,37.84195,3.903 486,141.11334,223.9914,18.954132,40.660034,3.875 486,2.0114648,490.95612,19.511353,39.51776,3.869 486,547.4667,226.60916,42.01062,93.20776,3.831 486,450.9732,261.839,33.6792,75.949554,3.811 486,569.8744,490.1057,20.687866,41.413086,3.807 486,441.7389,238.35591,21.45868,39.03087,3.801 486,557.6507,-33.08018,29.11145,74.074104,3.784 486,517.21246,-34.839603,29.046936,73.086136,3.758 486,577.82697,489.48334,20.563904,41.907043,3.732 486,524.3979,94.730576,29.726685,70.449936,3.719 486,356.62616,172.60085,29.899902,75.79025,3.717 486,492.11298,0.41285324,17.594543,32.853836,3.709 486,-38.9169,-123.93845,118.34892,290.18967,3.702 486,507.03467,-2.3874798,18.045837,36.91311,3.688 486,482.57568,166.38817,34.62433,64.62294,3.633 486,63.846474,234.2297,34.66314,56.378235,3.632 486,612.92096,-1.4660835,36.57788,108.95282,3.626 486,4.493121,230.4304,38.123955,86.71513,3.621 486,378.26013,252.0259,35.509064,57.27629,3.598 487,155.1108,217.1677,19.121048,46.71936,16.1 487,622.2971,-34.000145,27.17334,76.2235,9.038 487,626.49164,-16.932804,17.712158,46.54217,8.012 487,613.26135,451.90744,39.60608,110.032135,7.363 487,-5.9014506,489.1354,18.451231,41.131683,6.992 487,147.96616,224.35275,19.068161,38.81714,6.971 487,-11.46121,479.54715,29.192373,62.1998,6.879 487,162.45409,210.78937,18.883041,49.245728,6.67 487,3.1566954,204.06328,30.708004,74.42824,6.667 487,626.3949,487.14868,21.052368,45.535095,6.651 487,170.20557,215.01978,17.295532,46.401398,6.566 487,560.79443,213.36029,21.762268,40.44632,6.511 487,178.64616,222.20673,18.591766,40.525238,6.33 487,149.1997,224.70996,30.23677,64.65448,6.094 487,618.74243,-17.59506,18.648987,44.56766,5.868 487,-17.513508,-63.65613,56.514496,145.49828,5.654 487,-17.876013,439.4482,55.351814,137.4158,5.502 487,329.22787,194.99352,30.078491,68.900955,5.445 487,-11.420441,-32.46688,29.78033,72.62996,5.435 487,-5.868244,-18.156689,17.54203,42.776733,5.306 487,602.6681,-56.608025,53.472656,136.64992,5.228 487,185.96384,225.71713,18.688843,36.752716,5.174 487,518.3092,250.92522,25.242981,41.399826,5.116 487,617.70386,488.432,21.742188,43.782043,5.055 487,-72.89425,265.37076,200.6206,463.10287,5.035 487,-39.5906,369.92072,109.482445,274.0042,4.986 487,23.664389,206.04385,29.150705,68.25284,4.878 487,141.16922,225.2861,18.28923,37.490875,4.818 487,401.41943,232.28047,23.1698,35.4095,4.757 487,536.3577,311.30292,143.66461,340.2486,4.737 487,343.5648,214.34192,23.327606,45.496094,4.632 487,355.9644,240.30138,30.323608,56.56743,4.57 487,442.37918,205.87885,19.142761,41.052856,4.563 487,619.4312,190.54018,18.731262,46.703323,4.554 487,493.95996,228.15964,237.21808,513.6466,4.381 487,360.1041,231.23186,22.945374,40.418472,4.371 487,583.20215,409.0705,71.662964,179.51733,4.358 487,616.2037,146.65536,24.130798,83.52135,4.328 487,513.52057,260.5544,35.384094,56.416046,4.316 487,134.65549,222.25005,29.402359,56.663193,4.29 487,581.59216,209.88939,37.74292,79.87367,4.282 487,380.29312,224.93564,17.529602,32.805634,4.236 487,4.8903837,469.27594,38.542606,92.20032,4.22 487,505.18283,248.94968,23.367035,42.8291,4.195 487,596.7411,457.22717,39.77356,105.23535,4.191 487,-4.608383,411.00888,16.163284,40.062836,4.173 487,164.33618,217.41072,29.054749,62.19545,4.144 487,522.26196,273.53903,33.403625,71.964264,4.026 487,355.2832,209.12042,19.716522,44.462357,3.998 487,113.694374,225.42607,19.077248,37.526047,3.953 487,-7.2268724,206.24352,27.021759,75.05025,3.95 487,-4.810444,427.01785,16.536232,40.85547,3.878 487,576.26514,293.66357,53.199707,144.30576,3.869 487,597.2088,233.61159,40.416016,112.56596,3.854 487,178.70421,217.41168,29.94722,59.874695,3.831 487,588.3242,204.30396,15.500366,33.75894,3.822 487,99.81698,228.76677,33.116463,63.92314,3.8 487,434.97974,204.9909,19.072968,40.75226,3.787 487,259.766,200.44763,29.751404,54.543655,3.771 487,610.95325,-16.129192,18.18219,41.774345,3.767 487,467.8443,278.22223,31.917603,53.18933,3.754 487,485.66748,165.08739,29.029724,75.313,3.743 487,425.85095,212.89697,19.583282,37.446625,3.729 487,-38.96537,-122.780396,118.191536,286.97284,3.713 487,482.0976,225.14812,31.228394,69.69002,3.711 487,385.13583,230.48831,19.85141,31.188477,3.672 487,-14.395477,202.44574,47.628155,148.4295,3.667 487,362.78186,252.37305,33.73349,56.145996,3.648 487,436.98837,210.13153,39.372528,82.25406,3.643 487,623.4451,172.8959,24.861084,71.10353,3.624 487,607.4261,-34.207657,27.726929,73.28895,3.623 487,571.761,214.03914,56.294067,153.31023,3.615 488,168.11813,215.5941,21.163101,49.83568,38.429 488,175.83336,222.11542,20.754654,43.740997,8.388 488,145.61435,225.11082,20.875183,38.058853,7.629 488,603.54193,-55.758156,53.098633,137.496,7.334 488,621.6135,475.17657,29.496582,67.78735,6.96 488,-6.147771,489.21747,18.889269,41.65149,6.835 488,377.47296,214.26343,23.776154,42.918213,6.794 488,465.41602,224.62674,18.051392,36.444122,6.495 488,365.9688,203.98,31.902832,60.999557,6.432 488,258.76123,211.19482,21.642517,42.79988,6.292 488,-11.796714,478.1815,29.682316,63.26346,6.215 488,154.25986,225.82655,20.735794,38.23143,6.184 488,458.32462,220.33156,20.171906,35.18483,5.9 488,627.39355,-18.002388,17.263062,46.291367,5.853 488,209.08278,211.64053,18.725815,35.17395,5.841 488,-17.616886,-63.954582,56.50523,144.39545,5.773 488,-11.526325,-32.629833,29.836124,72.66434,5.637 488,514.30383,154.96625,33.191833,83.736465,5.621 488,-5.9133377,-18.103302,17.563393,42.6034,5.524 488,616.04736,174.47644,23.197266,79.30377,5.414 488,605.98346,218.83456,26.495422,55.93979,5.294 488,-21.163677,405.25452,78.30937,173.22571,5.221 488,603.5181,429.521,55.763977,144.27374,5.134 488,-72.77113,265.07208,200.73593,463.92297,5.09 488,491.3199,214.57242,20.242859,45.364655,5.043 488,105.05477,228.47627,21.104523,34.26912,4.996 488,424.49982,234.55362,34.01828,56.864197,4.973 488,368.77072,156.48903,24.527496,46.916855,4.955 488,2.400475,218.65735,19.32256,47.65979,4.89 488,536.4712,310.92453,143.47235,340.18265,4.788 488,618.1282,486.7707,21.33496,45.298157,4.747 488,135.49908,216.63152,28.55893,52.883347,4.686 488,625.0374,181.48978,18.467712,55.79637,4.681 488,623.2257,-34.658875,26.085266,75.04774,4.617 488,364.933,164.24458,31.93341,69.05049,4.616 488,182.2216,201.4924,27.547012,55.9429,4.572 488,114.05994,243.30788,21.134674,39.033035,4.571 488,185.91693,226.20488,18.56839,37.83342,4.534 488,552.9252,315.92145,34.126343,61.10092,4.469 488,211.63373,232.1681,16.121231,27.021622,4.453 488,389.0649,261.864,30.457153,65.775696,4.431 488,194.39085,204.99297,18.217468,32.222717,4.39 488,482.46185,227.7857,42.819885,81.45801,4.349 488,494.15024,228.4123,237.49197,513.37384,4.327 488,580.0607,240.48709,41.888245,101.4393,4.3 488,345.87598,201.32356,32.7406,67.570175,4.242 488,610.19714,487.3517,20.695679,44.278046,4.24 488,555.7296,159.79544,31.623962,61.52945,4.202 488,571.90045,310.07285,34.13556,54.840515,4.079 488,508.1032,204.96352,55.39502,116.84627,4.01 488,570.43787,205.79744,20.70874,34.859024,3.985 488,5.1538982,469.5235,38.283607,93.02136,3.98 488,406.0428,290.14047,26.994995,42.22409,3.956 488,499.10077,230.55661,44.072754,84.01053,3.889 489,488.1786,225.37042,30.766602,65.256836,45.627 489,200.33197,219.19775,21.58516,47.251587,27.263 489,561.17633,228.47476,21.373108,47.48413,15.574 489,540.1013,235.85747,15.019531,35.00438,8.117 489,-11.735174,479.60373,29.987377,61.793488,7.521 489,32.59822,220.07059,21.124725,41.144836,7.468 489,-6.142862,489.3316,19.029366,41.40741,7.126 489,611.4369,-47.55535,41.134155,101.8042,6.953 489,612.927,453.6644,40.230408,107.17673,6.493 489,567.8461,222.84996,21.265991,46.541885,6.477 489,614.50916,142.76204,26.635498,90.52185,6.44 489,210.23532,227.78787,18.402298,39.05072,6.396 489,491.6756,216.43057,19.302795,40.044647,6.268 489,495.8955,219.43433,22.897888,47.720825,6.159 489,239.79515,210.13092,20.848495,36.83687,5.97 489,2.7823925,207.2197,30.177504,67.318634,5.853 489,625.89886,485.97522,21.648071,47.874023,5.813 489,469.0882,213.26607,28.461792,61.242294,5.786 489,-17.67924,-64.07738,56.319946,145.3097,5.771 489,627.41345,-16.411081,16.726013,44.06202,5.691 489,-11.457009,-32.58052,29.762398,72.63348,5.53 489,-5.810473,-17.92176,17.462542,42.478546,5.462 489,512.6098,228.00394,20.565247,44.301025,5.427 489,-17.691368,438.3723,55.086063,138.11261,5.374 489,175.07774,207.41809,25.568146,59.16446,5.36 489,576.28046,221.53351,21.290955,46.82852,5.225 489,204.6626,203.48387,27.987701,58.88359,5.098 489,378.2643,188.2124,31.081573,75.88379,5.089 489,22.895695,224.35013,27.307392,59.52643,5.065 489,536.2114,309.78778,143.92676,341.86847,4.976 489,169.4613,227.01329,21.79663,39.31935,4.965 489,-73.0965,265.13458,200.76985,463.84686,4.933 489,460.57477,230.07397,29.673035,60.892883,4.837 489,-16.098934,198.94566,50.783764,132.61604,4.801 489,533.7865,232.506,15.423645,37.79033,4.791 489,-39.805458,367.7209,109.62179,276.09406,4.789 489,547.3363,235.86548,16.572937,37.750763,4.685 489,462.4028,296.25943,32.106506,69.64337,4.621 489,582.85675,410.9571,72.16583,177.60016,4.594 489,1.6220987,490.59332,20.022821,40.12964,4.499 489,467.79364,276.0874,32.15094,68.11957,4.489 489,292.5436,194.47902,29.008484,64.31242,4.487 489,130.13025,226.47762,20.78917,36.546738,4.424 489,494.18106,228.26779,237.62039,512.9669,4.42 489,499.908,216.03102,16.638824,31.405304,4.398 489,587.1404,138.1891,32.97058,90.66423,4.301 489,457.32242,240.93655,23.455902,39.4971,4.232 489,157.26956,223.4876,30.36287,52.510178,4.176 489,417.91333,225.29152,42.89984,80.183334,4.173 489,55.981556,245.37625,35.428143,66.87546,4.142 490,239.6832,219.7279,19.771698,47.0726,75.001 490,548.6875,238.32654,33.696777,58.14044,12.057 490,218.42857,214.67406,19.523087,49.905594,9.742 490,265.6113,211.72333,19.431946,35.92537,8.339 490,226.58252,223.51181,19.87004,41.94113,7.383 490,324.71393,202.5632,27.328308,64.57254,7.193 490,-5.713274,489.14017,18.034422,41.356598,7.037 490,622.24084,-33.98475,27.717163,77.72328,6.992 490,613.2051,453.33173,40.272583,107.88507,6.733 490,626.9445,-20.515686,18.279785,50.981632,6.436 490,615.9941,210.23607,25.27948,67.65993,6.306 490,-11.248698,477.8011,29.341763,62.995056,6.188 490,5.201354,210.23068,27.999107,62.448395,6.116 490,530.0738,228.3005,44.976807,78.82031,5.98 490,-17.576946,-64.486145,56.322556,146.98274,5.66 490,539.1187,219.23576,31.150208,61.112686,5.547 490,520.6962,248.921,38.591614,56.831314,5.54 490,-11.426659,-32.657677,29.736446,72.88845,5.439 490,-5.7940817,-17.943787,17.46608,42.628674,5.418 490,626.63416,487.62924,20.648193,47.137177,5.388 490,563.5808,220.17278,17.2594,32.11374,5.27 490,617.845,-21.047308,19.75647,50.944202,5.164 490,162.87576,224.80283,19.513672,38.051422,5.133 490,602.68225,-55.661907,52.879395,134.70534,5.115 490,-73.34422,265.21033,201.1065,464.2649,5.035 490,594.2125,220.71475,20.40802,39.647095,4.954 490,-21.496197,403.32996,78.74872,174.68054,4.889 490,-15.866755,190.18948,48.319504,128.47903,4.849 490,497.24292,229.37831,46.298706,79.5197,4.829 490,558.52655,232.74612,24.436462,43.327026,4.737 490,536.2444,310.54346,143.95087,341.7489,4.734 490,229.71063,216.71614,34.572144,63.090073,4.671 490,247.11433,224.15045,19.727829,41.89035,4.642 490,582.99414,411.17883,71.94855,177.30261,4.637 490,561.1594,229.44846,42.685913,82.93411,4.607 490,538.67914,-15.079722,16.952515,37.82121,4.534 490,550.33734,-32.739014,29.065247,72.07232,4.43 490,618.4283,240.28357,19.48175,55.31781,4.405 490,31.711826,219.4145,25.733376,59.51555,4.36 490,615.68494,171.13094,24.834106,86.773605,4.353 490,545.44226,246.88214,43.956116,94.54651,4.276 490,594.1901,-45.306328,44.692505,97.49637,4.242 490,199.02579,203.65823,25.343658,62.02365,4.238 490,614.96454,314.77002,26.385803,79.37375,4.236 490,236.31827,212.24521,18.654861,39.860703,4.208 490,493.36365,229.46017,238.48053,513.7844,4.207 490,615.64435,104.98088,24.375244,84.2955,4.131 490,586.1341,488.6179,20.548767,43.29898,4.13 490,193.8228,214.8582,20.61052,48.45366,4.122 490,1.07077,209.939,20.839882,46.0475,4.097 490,584.4607,248.42984,21.581299,44.560913,4.091 490,554.886,218.71901,18.149048,32.583176,4.083 490,321.86826,189.16211,21.729645,45.47699,4.047 490,474.2173,268.47256,21.588348,32.42511,4.038 490,465.4179,228.5456,44.60147,79.83099,4.026 490,154.98383,226.96727,19.858887,35.93004,4.012 491,256.56256,216.70166,20.074585,49.83319,89.302 491,233.4085,217.0103,19.293,46.7614,10.47 491,626.6704,488.70462,20.454834,45.53067,7.733 491,612.8196,454.80536,39.83246,107.55231,6.563 491,283.11176,205.9332,17.761047,33.95433,6.241 491,1.4966148,211.85371,19.5281,41.474197,6.044 491,-6.134705,488.93262,18.897572,42.280334,6.007 491,-11.817806,475.85236,30.176588,65.70624,5.973 491,627.40015,-17.609182,17.012085,45.754807,5.966 491,-17.689869,-65.11224,56.311672,149.40872,5.932 491,171.16724,206.34401,19.562134,52.327316,5.802 491,603.53973,-56.550354,52.901,138.9317,5.684 491,542.37573,201.00214,29.10199,58.254456,5.388 491,-11.342816,-32.564972,29.61573,72.920944,5.354 491,-5.7977266,-17.987022,17.494682,42.85074,5.236 491,623.4208,-34.741432,25.985657,74.776054,5.189 491,-14.471052,189.20715,48.073753,130.3938,5.185 491,258.7725,197.2733,18.756195,32.957962,5.15 491,242.25629,218.94576,19.35791,44.611526,5.114 491,-73.55754,265.23325,201.51968,462.9528,5.108 491,255.12549,196.21745,26.362701,54.34529,4.975 491,-21.502201,403.14392,78.5897,174.67657,4.93 491,583.08295,411.81165,71.76288,177.25507,4.876 491,618.4238,490.6535,20.279663,42.450134,4.779 491,585.72003,124.39606,35.782776,80.65485,4.741 491,-3.9803648,206.38167,16.916096,37.83342,4.714 491,536.3511,311.40186,143.40125,340.91443,4.675 491,349.22388,183.35213,28.104645,73.095474,4.637 491,-0.22370577,216.78502,24.925959,65.76985,4.527 491,566.2477,216.01987,31.250061,53.60666,4.458 491,187.46,222.77214,17.980225,41.53911,4.366 491,493.4225,229.51181,238.0863,514.0123,4.329 491,346.38208,183.62325,20.968964,52.97682,4.321 491,563.3334,226.36366,41.978943,85.56908,4.315 491,265.29224,202.40869,18.17096,34.83786,4.291 491,191.49643,204.3193,25.894653,62.865906,4.235 491,6.1285553,213.11403,36.123703,88.90495,4.232 491,149.14786,221.87769,30.878326,58.277924,4.217 491,3.1872773,203.99103,16.626444,33.298096,4.188 491,43.745773,243.79207,34.43988,60.512863,4.162 491,580.3474,236.69058,41.451416,96.95328,4.145 491,246.7207,210.6612,35.180206,65.98645,4.126 491,627.124,68.38881,17.501831,44.579178,4.125 491,598.1461,223.98502,36.674316,96.02197,4.044 491,556.9409,208.02164,30.918274,56.44272,4.035 491,18.86099,216.07942,20.616724,40.757187,3.997 491,18.564516,244.79356,34.095055,59.7845,3.948 491,596.8817,214.84033,16.167297,29.199524,3.885 491,448.0055,186.71872,53.456024,108.61954,3.877 491,-9.751219,208.11978,27.437065,64.570465,3.866 491,253.097,209.16699,18.844406,43.050888,3.864 491,605.4089,214.87944,15.930786,28.721283,3.839 491,483.4819,326.57428,30.444916,64.89972,3.834 491,359.29846,194.38808,21.017975,46.475357,3.785 491,21.017204,206.60931,35.67611,79.050354,3.762 491,571.2421,206.79248,19.50885,39.325455,3.738 491,597.0794,460.69714,38.922302,100.370605,3.664 491,-39.09256,-119.71071,118.62397,282.54614,3.649 491,160.26941,203.09381,25.657318,59.830505,3.623 491,-0.4750085,252.58028,28.22096,65.18919,3.599 491,529.8782,490.5835,20.84143,40.380066,3.594 491,500.84976,215.18666,30.035614,60.60942,3.584 492,255.84999,219.75465,23.004105,52.23787,85.674 492,232.9062,221.04024,22.232056,52.423264,14.202 492,359.1652,175.06169,28.496918,75.50528,7.565 492,545.8572,208.22095,36.149292,78.59412,7.33 492,-5.944582,489.76923,18.334938,40.58899,6.439 492,289.19327,209.63338,20.353607,39.275436,6.386 492,558.6425,196.18538,26.356506,54.74901,6.166 492,-11.773312,479.3526,29.982738,61.470886,6.075 492,612.5039,455.38812,40.08484,105.52081,6.029 492,627.4116,-17.695648,17.126343,45.910194,5.924 492,626.6364,486.8763,20.579407,47.09543,5.773 492,-17.623604,-64.15754,56.32315,146.05841,5.656 492,-11.422291,-32.65787,29.749538,72.857796,5.521 492,-5.8264375,-17.930706,17.516533,42.55837,5.367 492,603.67883,-54.615128,52.624268,137.27669,5.271 492,582.9641,412.998,71.747925,174.89752,5.162 492,374.27026,182.5966,23.03302,50.534424,5.133 492,-73.14155,265.16998,201.33902,463.13348,5.037 492,593.7652,204.79845,18.159912,40.908554,4.96 492,-21.484127,403.52762,78.77707,174.88779,4.928 492,623.34607,-34.753582,26.018005,75.13115,4.906 492,572.70575,200.59718,31.059021,58.27156,4.855 492,66.80729,238.85895,35.501762,61.002563,4.855 492,535.985,311.24893,143.90051,341.07956,4.768 492,529.8577,194.31604,34.697083,93.64514,4.756 492,244.7689,194.90428,39.854782,77.53215,4.517 492,-1.9550037,227.9291,26.87905,64.52751,4.501 492,493.70703,229.09848,237.83643,513.3882,4.451 492,477.4152,186.0763,29.163239,72.90076,4.437 492,612.8361,132.1452,27.80304,83.57182,4.432 492,369.32715,193.79498,29.74707,71.17059,4.407 492,355.15753,177.24284,23.014008,55.64186,4.256 492,237.48978,205.81017,28.370178,65.79552,4.14 492,-4.311099,347.1569,15.670558,39.53717,4.064 492,192.47128,205.3363,25.482208,62.744446,4.039 492,-15.418121,188.20778,49.020744,132.4929,4.039 492,588.86816,321.35016,32.966797,60.225098,4.01 492,64.649284,244.69107,24.809013,43.05484,4.001 492,40.11548,220.57768,34.516815,62.31038,3.979 492,140.55861,226.66008,31.150375,66.49971,3.853 492,619.30963,214.19492,16.204163,35.977997,3.833 492,205.6234,202.98239,26.148941,61.72522,3.832 492,596.21313,228.75862,39.84955,84.52217,3.826 492,628.80273,204.54288,15.708008,41.275604,3.818 492,585.51184,-100.611855,75.15436,237.79199,3.817 492,597.08545,463.45728,39.00818,96.632996,3.752 492,-5.103716,361.41696,16.806854,43.27591,3.751 492,508.08472,184.21423,32.703552,92.87659,3.746 492,283.73013,205.78548,18.647552,35.556793,3.743 492,598.80334,161.50008,31.039795,77.159805,3.71 492,-5.7401896,298.23578,16.401476,37.18097,3.695 492,516.2281,30.386318,31.119873,80.91426,3.695 492,613.8216,478.5062,28.213867,64.19864,3.682 493,290.2011,221.73563,25.09085,57.54663,83.51 493,262.02054,208.52531,27.497833,68.19212,12.214 493,621.92456,-33.298317,27.941162,77.67396,8.74 493,569.1512,175.74411,33.199158,79.436584,7.713 493,328.5953,209.09044,21.540558,49.251785,7.527 493,612.8134,-18.993208,28.947815,75.6393,7.492 493,626.67395,-19.76546,18.71936,50.105118,7.466 493,-5.9988556,489.8452,18.597467,40.92688,6.234 493,601.7473,-55.316933,53.4657,130.81006,6.158 493,-9.279752,466.00262,37.968204,90.114075,6.156 493,229.01468,211.05246,18.476639,53.18402,6.028 493,621.83234,477.76367,28.919373,66.774475,5.884 493,615.4829,86.28643,24.247986,87.317635,5.755 493,-17.608135,-64.39433,56.1621,147.24736,5.579 493,172.30518,230.6066,31.005539,70.40274,5.422 493,-11.374893,-32.54637,29.727049,72.96776,5.404 493,-5.780618,-17.912008,17.474186,42.69289,5.393 493,617.85236,-21.661335,19.777893,52.13755,5.308 493,-3.0780416,204.92216,14.351427,37.959885,5.12 493,593.59033,-42.167866,44.74121,93.47606,5.097 493,-73.0858,264.02063,201.26003,464.85114,5.092 493,582.8632,412.37778,71.80896,176.11746,4.983 493,-17.678589,437.94174,55.071278,138.7178,4.967 493,586.47894,-96.32852,73.38336,229.48195,4.948 493,-39.82059,368.18915,109.926575,275.51703,4.864 493,170.20448,238.22142,20.227829,41.104385,4.842 493,536.2158,310.88092,143.67157,341.02594,4.757 493,280.16965,206.48856,29.161652,64.97537,4.725 493,574.9897,-21.32085,52.55774,123.61156,4.722 493,56.689457,238.85783,23.090664,41.53743,4.713 493,41.40379,230.60078,34.432026,61.949142,4.555 493,195.30258,215.45703,18.21402,51.191315,4.361 493,-14.492307,211.73964,47.94254,137.70421,4.332 493,493.90457,227.73447,237.71011,514.48535,4.284 493,289.50046,197.32135,41.83322,76.416504,4.255 493,205.43741,247.5845,31.455383,59.919525,4.219 493,621.0481,0.71936417,26.870361,74.9875,4.188 493,64.51972,247.19484,23.05381,42.423508,4.183 493,427.30084,30.490322,28.492249,80.00067,4.147 493,593.8358,145.09055,44.39038,149.84811,4.127 493,-2.0643349,192.9856,13.963444,35.001404,4.102 493,67.09874,246.70247,34.752243,61.572586,4.095 493,5.487165,206.19002,13.97047,29.910965,4.034 493,177.404,234.67136,21.123978,45.0047,4.011 493,585.87964,174.70102,34.689453,84.57483,4.005 493,619.56757,272.4516,19.921875,46.607635,3.998 493,145.95804,247.30814,21.552002,33.357178,3.986 493,5.0644264,469.1538,38.412395,94.34155,3.97 493,289.44077,205.54823,22.249725,45.706406,3.917 493,532.21356,-182.95082,148.57074,425.37204,3.903 493,606.0395,-2.4500122,29.94629,84.513054,3.854 493,2.2755914,491.07486,19.214058,39.4205,3.799 493,580.71405,-33.36316,29.794983,76.4654,3.773 494,337.03262,222.65909,30.504974,59.191498,73.805 494,308.6104,211.47528,30.495483,74.937744,13.295 494,273.34805,215.77977,18.114227,52.491074,9.469 494,-6.042532,489.2663,18.760456,40.706116,7.931 494,622.28937,-33.188248,26.6792,77.09888,7.623 494,-11.240802,480.185,29.231113,61.255676,7.37 494,236.03471,222.25735,17.424637,52.213562,6.402 494,276.98837,199.88106,26.792877,64.22752,6.277 494,385.6612,204.40266,21.21103,46.735733,6.231 494,4.652624,209.29184,30.421751,75.89755,6.175 494,621.8034,477.60098,28.949097,67.17026,6.025 494,-17.770927,-65.90232,56.143238,150.12143,5.92 494,-5.6976385,-17.755125,17.38956,42.56917,5.562 494,388.64792,207.79262,25.48706,62.167953,5.449 494,227.4582,215.39024,18.57164,48.95436,5.373 494,-11.311845,-32.398373,29.566284,72.78942,5.288 494,-21.049831,404.52878,78.515175,174.12967,5.081 494,-73.67212,265.0218,201.7377,463.4261,5.074 494,24.404911,213.84991,32.596592,69.20813,5.03 494,-40.109962,367.6584,110.242775,276.0479,4.949 494,582.8651,412.74542,71.992004,175.89789,4.939 494,239.24362,218.08264,23.220703,67.77985,4.932 494,104.96498,222.2351,23.37648,35.622986,4.901 494,603.00586,-56.144474,53.078613,134.6267,4.854 494,618.6597,-20.144583,19.02185,48.961918,4.85 494,505.5521,-0.9315529,32.778107,79.78671,4.794 494,536.35095,310.69006,143.51514,341.23315,4.749 494,-3.9252017,203.37488,15.828638,40.78575,4.726 494,-8.404757,230.05762,37.48532,99.25812,4.594 494,127.61223,209.97363,23.271225,40.5222,4.575 494,13.199776,195.22214,48.863182,110.1803,4.574 494,-4.771716,121.32631,16.241108,41.459167,4.446 494,90.10434,231.24353,21.319824,30.629425,4.369 494,-4.4843826,477.66177,15.39883,34.04431,4.319 494,586.5974,-98.27504,74.0199,236.07129,4.284 494,494.1206,227.29507,237.48712,514.8181,4.254 494,293.5535,184.74352,28.491455,67.590164,4.233 494,337.36133,193.73663,42.667633,83.36987,4.213 494,293.0287,223.51755,40.687378,82.23694,4.206 494,2.5523353,490.9218,18.993435,39.389893,4.123 494,5.0961437,469.94925,38.225517,92.909454,4.095 494,-3.4571986,190.77997,14.673468,37.629257,4.089 494,289.31757,199.91924,22.94101,47.97191,4.054 494,1.6070199,211.04309,47.596516,124.010864,4.044 494,492.9438,-8.79007,33.26648,76.336555,4.032 494,112.466415,215.69632,23.818588,40.613617,3.983 494,99.18532,218.67538,41.870193,93.07468,3.972 495,390.67426,208.32555,43.02841,93.220566,87.377 495,331.17944,208.22311,21.188171,58.080048,33.367 495,281.45068,210.64198,20.924927,50.949295,12.076 495,400.22217,212.65883,28.781158,61.650925,9.655 495,616.57404,161.02344,24.890564,97.15289,8.339 495,373.09048,185.48895,30.471252,76.60846,8.099 495,379.52936,203.39743,33.582184,82.053955,7.589 495,284.2605,210.8884,28.800995,71.85263,7.148 495,621.7682,-33.28945,27.55194,78.13896,6.454 495,612.9065,455.06415,39.375366,106.77307,6.432 495,626.99976,488.19608,20.099182,45.881927,6.342 495,-17.79844,-65.8992,56.227264,151.32487,6.268 495,-6.0022593,489.0271,18.51368,42.04187,6.127 495,-11.708919,478.44455,29.851788,62.03061,5.936 495,326.65253,198.97311,32.11664,86.787384,5.874 495,602.35504,-57.13569,53.473206,132.3497,5.78 495,616.83154,210.34875,24.25708,77.62433,5.76 495,626.79865,-21.192118,18.241943,52.567028,5.623 495,368.63846,210.75882,56.193848,118.63992,5.506 495,297.4666,216.89,19.248108,50.221085,5.474 495,-5.7197485,-17.767845,17.396008,42.557865,5.343 495,585.9409,-98.18721,73.99951,230.90344,5.297 495,358.61688,209.05276,39.92383,90.88147,5.27 495,-11.313239,-32.451664,29.54398,72.81296,5.182 495,374.73682,236.4412,34.144104,73.60968,5.108 495,-73.69605,264.62033,202.05005,463.45206,5.087 495,343.65262,210.78766,20.201904,49.84955,5.045 495,594.43225,-44.167576,44.39148,94.60752,4.995 495,582.8775,412.42474,71.92096,176.27637,4.94 495,536.5416,310.14423,143.54517,342.21985,4.887 495,107.30232,215.88802,32.12169,57.4713,4.843 495,-21.825369,402.3268,78.93732,175.89536,4.795 495,414.1469,218.64343,44.891327,88.707214,4.75 495,584.9619,112.93306,35.909546,74.44992,4.582 495,358.7048,181.21559,29.459229,67.891464,4.577 495,613.3944,129.20311,27.0542,91.64322,4.524 495,60.08326,194.15128,32.338158,66.29999,4.477 495,618.1464,-22.40263,19.852478,53.84278,4.417 495,148.1483,204.31166,33.32512,52.061325,4.41 495,410.65057,-17.207666,17.508972,42.501297,4.381 495,494.44788,228.02594,237.21356,513.31476,4.368 495,3.7128663,134.45975,26.606884,75.41867,4.271 496,468.62625,208.93329,41.15335,96.522156,88.18 496,339.98798,212.56421,29.050049,67.33072,24.296 496,406.55463,208.49678,30.915436,96.84981,18.351 496,330.17276,211.75294,27.021912,69.09114,8.026 496,613.3001,452.32712,39.81903,109.91495,7.875 496,622.65125,-34.222176,26.839233,75.729546,6.96 496,464.44424,208.5719,62.113922,157.44537,6.954 496,626.40204,-19.011337,18.643372,47.656776,6.861 496,434.97208,215.30356,40.115814,95.978485,6.701 496,-6.022258,489.12973,18.597736,40.742157,6.513 496,-11.833252,477.4404,29.711731,63.43448,6.165 496,347.4107,222.86314,27.863647,76.2303,6.163 496,571.4178,197.44347,29.95929,78.43947,6.013 496,-17.63947,-66.11614,55.76607,151.10565,5.963 496,448.5031,200.42729,34.518982,73.970474,5.789 496,602.69476,-57.840954,52.997986,133.0514,5.636 496,495.30002,207.69283,41.14798,102.97276,5.609 496,-5.251131,212.41197,18.126434,50.941177,5.591 496,-5.7035904,-17.877865,17.419327,42.749832,5.434 496,621.7142,477.27994,29.568909,66.598785,5.432 496,415.67725,204.65518,30.623657,81.980835,5.372 496,536.2617,311.14636,143.38312,341.11133,5.326 496,397.66617,244.45892,29.233398,78.342834,5.235 496,-11.283413,-32.373707,29.477482,72.79766,5.143 496,594.17413,-45.712303,43.90332,94.985214,5.114 496,479.5788,182.96277,23.378174,48.01097,5.108 496,586.9533,-98.5272,72.625305,229.33289,5.006 496,144.58887,222.92502,32.525208,60.7258,5.003 496,4.81398,190.20503,29.204037,73.823166,5.003 496,452.03555,215.6716,44.943054,113.16684,4.997 496,-73.44756,265.78864,201.6589,462.70038,4.981 496,582.77454,410.57855,72.57178,177.98792,4.908 496,-21.569256,403.3303,78.84221,174.24576,4.855 496,614.00116,-20.495098,28.097961,72.578636,4.772 496,617.97473,-20.036041,19.451172,46.485847,4.742 496,519.54156,302.64883,34.937134,69.44925,4.647 496,97.98978,209.28975,19.697006,44.529343,4.604 496,3.3594341,202.28732,19.311768,54.55258,4.578 496,319.12265,219.22118,27.367554,68.58327,4.467 496,301.43042,239.57016,29.40744,58.1994,4.465 496,494.31726,229.3103,237.97278,512.4634,4.463 496,596.3937,457.98193,40.508728,103.29993,4.376 496,566.1724,183.91608,28.373535,68.078,4.359 497,551.9738,189.3769,55.46826,177.64061,75.58 497,404.83014,203.07649,30.977997,84.674576,13.847 497,532.838,194.24432,54.43878,160.25677,12.352 497,564.66223,192.77533,32.53479,88.26276,8.272 497,548.4673,199.44852,33.14563,93.571106,8.002 497,517.1028,210.3189,40.333862,122.383286,7.67 497,627.1764,489.3766,20.425903,44.30774,7.257 497,126.09265,191.90172,29.860184,68.046585,7.145 497,623.0657,-33.535595,26.577026,74.86137,6.772 497,627.09357,-17.537016,17.218506,46.565205,6.704 497,-6.06682,489.22925,18.503487,40.961548,6.667 497,619.2849,492.30374,19.601807,40.055084,6.629 497,97.75917,199.66873,20.631165,50.23033,6.585 497,81.41959,193.5423,21.25866,42.094513,6.552 497,105.622955,196.99445,19.633926,45.082626,6.52 497,613.2676,455.4766,39.08142,106.46445,6.079 497,-9.006725,465.4013,37.678337,91.81976,5.983 497,602.3169,-57.710007,53.63806,134.22487,5.978 497,398.36902,195.64621,50.00226,128.54382,5.911 497,1.4653301,192.88098,18.46389,42.92807,5.866 497,-17.666338,-65.95676,55.691856,150.72076,5.837 497,145.15184,205.82295,33.13553,68.55159,5.821 497,71.24597,186.97305,28.649673,61.83867,5.816 497,531.32404,197.78235,34.14984,87.320465,5.736 497,89.0384,198.8767,21.52243,49.20111,5.707 497,499.72833,219.3794,41.530273,107.20148,5.62 497,594.01056,185.60544,19.051758,32.802124,5.476 497,110.45917,189.19415,28.341934,63.991333,5.473 497,-5.62387,-17.667301,17.301311,42.417255,5.419 497,123.468735,202.5265,20.901825,48.61487,5.35 497,414.53198,197.93492,22.33374,54.913116,5.321 497,-73.20049,266.0395,201.71854,462.61554,5.144 497,-4.5890913,200.21146,17.179031,43.89586,5.127 497,20.277555,192.66466,19.214731,37.586502,5.071 497,-11.257834,-32.45695,29.467232,72.71222,5.071 497,482.50598,221.71118,41.30017,98.55603,5.012 497,583.3319,413.2306,71.43176,174.95844,4.952 497,526.6617,198.09077,85.540955,240.92534,4.925 497,-21.103363,403.72943,78.50783,174.31812,4.9 497,536.0497,308.83627,143.38885,345.64737,4.869 497,-40.222645,366.59552,110.527374,276.48035,4.846 497,574.36554,202.62744,42.815674,133.96289,4.833 497,594.56586,-46.193424,43.85028,96.726585,4.797 497,556.1388,304.89554,31.09729,78.470856,4.75 497,422.92508,213.51071,20.854187,49.46988,4.565 498,509.21524,199.66986,31.619965,93.20581,12.732 498,168.52174,200.18242,20.564377,44.259018,10.131 498,508.91504,195.72285,48.013123,157.99199,9.251 498,623.54663,-33.809048,25.3031,73.3315,7.717 498,627.04736,-15.085306,16.369934,41.694008,7.446 498,626.1911,487.02545,21.37854,46.929382,6.752 498,613.062,452.71155,39.798157,109.317505,6.614 498,172.137,206.96391,30.523773,55.49318,6.155 498,-11.577534,476.13657,29.040707,64.95914,6.016 498,33.138306,219.42313,20.605812,45.703888,5.965 498,3.3087153,220.16641,19.018171,42.772797,5.944 498,-5.922911,489.46417,18.19404,42.412903,5.728 498,-17.392756,-65.57887,56.017784,150.13196,5.72 498,521.31146,205.02266,32.94098,82.6768,5.561 498,-5.7640924,221.99805,18.040787,42.58548,5.496 498,-5.713618,-17.84366,17.407648,42.61619,5.495 498,161.7981,208.40367,22.751938,46.263504,5.348 498,-73.4275,264.45056,202.11429,465.1814,5.306 498,-3.32158,183.73686,15.105399,38.08017,5.281 498,-3.5825138,204.88655,14.9178295,36.00374,5.222 498,603.24414,-54.599876,52.64154,135.35233,5.193 498,-11.299434,-32.34527,29.455536,72.65805,5.146 498,27.054443,213.03032,18.583649,42.769913,4.944 498,-41.009514,363.40067,112.133125,278.4996,4.935 498,279.9133,218.99075,23.588867,45.14853,4.894 498,-21.66837,401.82462,79.39,175.8945,4.865 498,22.918837,247.53549,31.628817,74.5419,4.849 498,12.097096,219.63573,17.2388,38.473984,4.801 498,620.2291,-1.3195677,16.267517,31.558006,4.779 498,28.735424,220.79767,29.87035,71.78888,4.728 498,422.31,185.577,24.30542,68.39015,4.688 498,536.7688,310.5433,142.6427,342.96255,4.677 498,582.72925,410.25323,72.0863,178.6117,4.645 498,216.33202,227.87012,24.049149,33.848602,4.605 498,207.22891,218.78723,25.51889,34.968216,4.549 498,3.673212,209.10593,15.882364,34.16977,4.53 498,19.945187,214.01538,17.732891,41.267624,4.504 498,-11.465329,216.94302,29.071053,71.38199,4.458 498,6.053096,249.61096,37.58034,106.42694,4.419 498,149.11282,198.02022,38.303864,83.01961,4.356 498,263.45477,190.69154,27.226013,63.45125,4.35 498,133.62502,197.32501,37.87126,84.14044,4.329 498,487.06067,203.57231,39.25409,117.666916,4.275 498,-4.1180177,166.16263,15.414413,39.04535,4.269 498,3.689475,190.49286,15.6736765,33.962463,4.229 498,493.54053,228.71164,237.83386,514.2965,4.186 498,519.27734,196.02834,23.582764,51.01758,4.164 498,614.1682,222.84984,25.499207,79.37196,4.115 498,288.2082,225.60771,21.552917,39.477554,4.093 498,15.165381,212.76794,49.41237,126.64087,4.075 498,6.820689,213.76135,27.21112,61.476868,4.068 498,-14.85944,189.1633,49.315132,136.86755,4.057 498,145.31828,198.3153,20.664246,43.172195,4.049 498,178.12634,225.87964,20.18689,36.097717,4.015 498,258.8846,190.43082,21.418518,48.29445,3.969 498,493.4219,92.33714,31.498383,98.075516,3.944 498,184.82538,217.1017,22.573273,37.399567,3.935 498,446.75482,176.34,26.019379,75.98416,3.877 498,176.76729,196.72507,18.562515,35.649597,3.858 499,175.53955,200.63942,22.909683,45.17415,10.037 499,613.346,453.26636,39.101624,108.88031,6.867 499,603.15356,-55.72428,53.28601,138.32306,6.705 499,-6.4549737,488.7188,19.226845,43.030884,6.193 499,-8.877393,463.8171,38.138447,93.944,5.995 499,627.3515,-17.815031,17.106995,45.945976,5.908 499,461.53912,192.4476,25.503357,67.13907,5.77 499,625.95166,485.9559,21.217407,47.556488,5.745 499,-17.540247,-65.22508,56.211807,148.75348,5.684 499,471.80573,1.3462524,28.782776,68.116875,5.671 499,-5.7630844,-17.882044,17.463383,42.743362,5.561 499,-11.23501,-32.279915,29.464113,72.430916,5.506 499,185.04446,208.08987,21.220367,44.267517,5.425 499,623.36975,-34.790524,26.083923,75.04661,5.121 499,561.6749,302.02676,34.684875,76.66037,4.994 499,-21.626225,403.4914,79.118866,173.9953,4.953 499,549.05493,200.89514,29.381348,56.3179,4.803 499,583.8976,411.73346,71.025024,176.35553,4.802 499,271.40106,193.39854,27.722382,65.833115,4.723 499,535.99207,310.01172,144.2168,343.77844,4.673 499,-72.96055,267.4133,199.97551,460.42923,4.659 499,148.45915,202.6746,39.140045,85.80678,4.569 499,492.65134,228.79645,238.15543,515.99426,4.513 499,-4.633177,203.97107,16.706219,39.643097,4.495 499,547.1021,308.46823,35.80243,72.2305,4.415 499,286.72452,213.86012,28.83667,55.711777,4.291 499,446.80066,-35.166283,27.430267,82.333145,4.287 499,212.15686,216.31238,31.016724,49.60376,4.251 499,150.51237,194.86478,27.184525,59.071686,4.211 499,297.14197,228.90729,22.85733,42.07663,4.198 499,192.22,215.50035,23.452988,41.040634,4.167 499,278.3294,172.32153,28.416077,67.3044,4.155 499,581.4759,193.25421,38.193542,79.50757,4.141 499,-3.724868,191.25447,15.119417,37.27986,4.08 499,600.46674,239.9419,23.201965,34.57251,4.063 499,158.14691,190.65947,51.557526,107.36861,4.052 499,269.92032,153.8866,28.857391,69.88187,4.02 499,-9.237695,101.54372,38.93147,108.94176,3.989 499,172.81267,210.51259,31.207184,61.709366,3.931 499,-15.474283,184.58704,49.258278,136.4263,3.924 499,267.84064,201.56622,20.721313,48.818237,3.914 499,469.31107,-34.890606,29.03241,83.83709,3.892 499,545.40466,212.83191,43.898926,82.63495,3.846 499,527.7956,299.0648,24.182495,37.479187,3.844 499,586.27924,234.07294,34.707825,55.900024,3.832 499,264.75043,176.90471,28.059052,60.881958,3.83 499,505.6856,488.94275,21.357483,41.9256,3.812 499,469.12054,184.13336,28.567139,70.77696,3.775 499,597.23395,460.54745,38.71283,101.28525,3.753 499,563.2563,205.5409,41.688843,78.41638,3.707 499,552.87524,282.37854,22.225952,35.291565,3.702 499,628.30493,61.72696,16.200195,40.774246,3.687 499,480.04645,190.59038,28.640533,68.55202,3.68 499,492.00177,190.33273,27.668884,71.02347,3.663 499,426.41962,-19.002083,17.912384,43.981018,3.662 499,620.3057,459.25458,18.009216,41.106567,3.603 499,569.3091,215.66838,21.514282,36.90039,3.601 499,595.3437,199.10257,31.52185,62.651398,3.592 499,-4.8245425,219.73819,15.891468,39.206146,3.586 499,2.822258,-15.759999,16.471642,39.213924,3.586 499,-9.66449,291.56482,38.606445,105.3262,3.585 499,-1.2139821,249.38208,28.687363,70.152405,3.584 499,627.86383,457.26038,18.075134,44.019928,3.567 499,131.24683,214.76427,16.732422,36.26613,3.552 499,490.0172,-15.921895,16.899628,45.094227,3.54 499,588.03937,285.0677,32.446533,73.23236,3.54 500,455.369,186.75569,26.71817,79.9489,9.151 500,126.712654,192.08615,26.494804,56.31105,8.251 500,603.23816,-56.101585,53.366394,136.99522,7.451 500,121.597664,206.62509,21.807777,50.060028,7.399 500,86.65971,207.06342,27.94146,59.55539,6.38 500,109.0264,192.51997,31.717972,66.62523,6.375 500,-5.600775,489.1624,17.700163,41.775696,6.007 500,-11.379597,476.1578,29.366325,64.40323,5.96 500,-17.757801,-64.77433,56.18053,149.34464,5.95 500,627.44556,-17.985353,17.129883,46.16805,5.914 500,613.07324,457.14502,38.223755,103.61029,5.732 500,512.04675,311.32205,39.55121,66.563934,5.731 500,626.8229,487.75604,20.334656,46.34674,5.73 500,570.0725,293.57626,37.25482,61.88495,5.728 500,553.24615,287.7271,36.39081,54.17566,5.703 500,518.5998,204.90356,27.699585,55.423126,5.643 500,-4.5992002,217.93419,16.423859,38.93373,5.595 500,115.86754,217.5534,30.563522,62.61844,5.593 500,488.49442,194.6967,26.63852,68.96504,5.543 500,587.3067,291.7778,35.51654,65.60196,5.538 500,528.0899,309.58813,39.458008,68.94629,5.533 500,500.48538,199.35121,27.78659,66.25993,5.447 500,244.16231,151.08316,30.168594,83.7944,5.396 500,598.115,195.38867,30.315857,61.93466,5.372 500,-5.7495575,-17.867012,17.386608,42.62295,5.333 500,-11.388836,-32.605316,29.676544,73.02576,5.268 500,404.58582,-32.339012,30.12909,73.24667,5.263 500,613.8778,184.0523,26.505432,75.014404,5.259 500,497.4252,312.06363,38.12436,65.33438,5.155 500,64.95001,208.57,25.713425,60.727905,5.109 500,3.426158,211.0314,17.988903,38.885696,5.108 500,-73.114845,265.6292,201.23508,462.8537,5.09 500,343.96735,216.43996,23.910126,36.736343,5.082 500,583.4227,413.91275,71.09082,175.68527,5.063 500,-21.309658,404.19864,78.599396,174.00656,5.044 500,544.06836,306.99268,39.203125,71.141235,4.969 500,554.73474,327.27734,34.979065,71.54068,4.904 500,589.91205,322.28107,30.563354,82.203125,4.898 500,585.3913,226.56415,20.62793,33.44037,4.838 500,623.2928,-34.73206,26.119446,75.19664,4.822 500,61.380596,214.8298,17.770855,39.836655,4.772 500,528.5837,210.08087,21.272827,42.096893,4.755 500,131.85014,173.2348,38.518295,80.0737,4.752 500,0.37741184,193.60948,24.66262,63.283188,4.744 500,11.584186,211.76385,18.630573,37.362946,4.678 500,618.617,489.30994,20.06372,43.59149,4.657 500,627.74603,45.384212,16.973267,41.943714,4.65 500,589.48846,184.65878,31.648254,57.231476,4.596 500,-11.3286915,197.23212,28.512655,66.73749,4.592 500,536.382,311.53,143.48706,340.50858,4.566 500,-5.2409887,201.36684,16.26049,40.359695,4.506 500,560.8985,305.4229,37.96753,71.67694,4.467 500,570.75024,226.14357,20.266052,34.425858,4.453 500,543.8035,291.24707,25.127258,36.343445,4.452 500,409.3536,-5.6053925,32.572937,60.047047,4.416 500,252.14403,202.27834,28.344223,61.23915,4.404 500,480.35547,-20.78035,20.888855,46.533157,4.4 500,512.4825,211.56238,22.29358,50.04355,4.388 500,81.85062,216.30574,22.078636,45.547623,4.388 500,584.0018,199.19888,23.75299,38.575867,4.379 500,579.1773,302.6241,33.910828,76.839874,4.359 501,615.1075,177.27402,26.209717,75.85875,7.755 501,603.4502,-54.449806,52.812317,135.994,7.078 501,435.80322,185.46866,30.12378,57.838776,6.971 501,611.2408,83.21202,28.03186,108.756775,6.681 501,407.9779,283.4776,39.92978,63.53177,6.226 501,491.59857,187.29405,30.421936,51.767685,6.193 501,425.36374,277.87976,36.887787,62.31726,6.175 501,-6.009757,489.61728,18.616451,41.433807,6.135 501,-5.8084526,-16.740948,17.35611,43.58724,6.131 501,344.00702,284.51974,39.52368,56.173065,6.029 501,474.69315,283.25244,36.608673,62.079254,6.018 501,613.47723,453.54495,38.80841,107.420746,6.014 501,627.45996,-17.301537,17.274536,45.77115,5.989 501,-11.651499,478.45706,29.567636,62.49417,5.906 501,375.9541,279.08972,39.72345,59.267426,5.883 501,392.2385,275.45425,39.41559,63.13086,5.87 501,627.0889,489.3356,20.23053,44.29355,5.826 501,311.7737,293.43875,39.775543,58.47281,5.781 501,-17.263529,-62.17271,55.88018,143.63454,5.643 501,360.7603,300.25668,38.566223,71.40683,5.634 501,458.26016,282.19855,36.442047,59.77408,5.612 501,504.80615,282.20645,37.733154,61.59384,5.596 501,296.5357,290.74734,38.45102,61.703888,5.581 501,365.0417,165.12857,28.449585,81.947464,5.523 501,441.90097,279.9313,37.002808,60.652008,5.486 501,335.73248,294.6884,39.99997,68.061615,5.452 501,328.49408,285.21622,38.58432,54.730225,5.393 501,-11.592803,-31.630783,29.852509,73.580956,5.339 501,359.83972,282.43518,39.875885,57.711517,5.336 501,-4.1343384,157.98839,17.289001,39.295334,5.312 501,-21.323608,404.58133,78.032455,174.73349,5.306 501,487.95685,282.11826,37.98053,61.481934,5.153 501,376.00052,300.17886,38.769623,70.28635,5.15 501,85.624115,169.61249,30.719887,60.032074,5.125 501,391.2309,301.10034,39.216614,70.13406,5.095 501,511.8307,193.25005,24.47107,43.311905,5.077 501,157.66049,182.18417,27.748413,54.551895,5.058 501,420.16333,176.0598,30.42044,70.797745,5.039 501,0.9356308,172.96523,20.575293,49.633514,5.025 501,536.3231,310.58807,143.81635,341.19055,5.024 501,577.4282,302.32968,34.20575,72.62018,5.018 501,-72.640465,267.18674,200.29346,458.53238,4.838 501,623.3511,-34.868664,25.904419,76.30774,4.835 501,-4.684855,180.43616,18.265291,45.72998,4.826 501,281.85483,288.72375,37.15216,66.82556,4.82 501,432.42264,289.76355,38.361298,74.428406,4.731 501,544.1471,293.51837,38.05194,73.84021,4.711 501,266.2201,281.73117,36.249268,62.362427,4.694 501,96.03532,185.6491,23.706924,47.544937,4.692 501,470.87207,185.4133,28.406616,56.28418,4.676 501,248.73848,284.53473,22.589676,36.800903,4.658 501,2.0999563,160.77086,18.91997,38.974594,4.632 501,-4.350303,140.63887,17.55084,40.92752,4.619 501,583.0375,410.84637,72.15283,177.42303,4.614 501,303.94778,196.76056,29.619263,53.211243,4.601 501,352.06982,168.76627,48.635742,106.65219,4.599 502,572.4723,195.82954,26.935608,68.64543,40.35 502,560.55566,194.1539,28.254211,66.27188,11.858 502,627.57904,489.36267,18.834167,42.59491,8.71 502,-6.0721245,-17.818651,18.301367,42.78413,8.272 502,-11.1722555,-32.799397,29.566353,72.98482,7.028 502,-6.3022738,488.42758,19.126366,43.41153,6.904 502,553.12384,195.40015,23.927124,56.734253,6.595 502,-11.821114,478.16095,29.274696,64.0625,6.542 502,2.8898108,352.99673,32.186253,83.88132,6.36 502,-18.495125,-63.776276,57.388344,139.7385,6.292 502,627.4466,-17.302048,17.094482,45.849266,6.162 502,209.58147,310.19382,37.632217,62.399353,6.02 502,602.30597,209.69089,21.439087,44.932495,5.952 502,613.445,454.23074,38.412292,107.400665,5.928 502,612.3194,-49.15194,40.159546,103.50336,5.911 502,484.65094,218.51617,33.022156,68.57214,5.883 502,249.10162,324.04376,36.982635,64.75864,5.8 502,243.0548,206.28865,30.949142,63.4373,5.761 502,2.2249193,-18.618952,18.554722,42.455795,5.751 502,214.8906,211.27768,31.561707,71.32495,5.604 502,616.4824,207.9267,22.685059,46.551544,5.516 502,31.403818,354.99854,38.849968,66.001434,5.5 502,577.6927,48.85884,31.975403,78.99272,5.441 502,586.7954,201.34265,33.09326,61.18695,5.421 502,610.0895,205.15765,21.015808,40.652206,5.378 502,547.8153,208.98257,32.479675,64.320404,5.375 502,152.17007,308.0478,39.83287,61.045837,5.291 502,2.2088652,488.78143,19.279755,41.981567,5.278 502,620.0976,492.7646,18.227661,37.816467,5.268 502,161.72563,205.24359,33.320526,74.72388,5.252 502,135.67216,317.7964,40.11177,70.44327,5.196 502,168.17767,308.31363,39.275543,61.525787,5.174 502,-74.22518,264.34842,202.75345,463.1478,5.168 502,17.053194,360.08954,34.825546,72.753845,5.097 502,184.96376,307.25916,37.536118,63.580994,5.093 502,21.226053,-34.921127,29.93128,73.681854,5.073 502,536.1363,309.66553,143.91937,342.24792,5.069 502,605.6802,210.08606,28.95044,61.760406,5.061 502,566.40857,179.08688,28.750366,64.25514,4.953 502,118.95377,311.7553,41.704735,67.53818,4.944 502,342.87967,214.84973,27.895782,44.812164,4.909 502,583.1117,411.4585,71.81494,176.92798,4.888 502,233.24182,317.4553,38.265778,72.07443,4.784 502,47.86823,354.58545,38.367542,66.164185,4.712 502,56.02497,307.7793,39.358803,61.395172,4.702 502,616.81586,144.9035,24.834778,91.73811,4.617 502,-4.89744,134.98965,17.417685,45.27951,4.609 502,282.0652,328.65216,36.523956,73.28204,4.6 502,-9.894014,-6.473423,40.308144,98.799805,4.599 502,308.24622,209.38535,32.10855,61.44702,4.596 502,-71.09822,-189.08554,212.27312,458.51443,4.576 502,493.2393,228.43823,238.63638,513.1428,4.551 502,72.037384,306.40436,39.6102,62.85443,4.538 502,6.580042,-34.23334,29.09627,76.96043,4.529 502,-23.110697,399.30035,80.75722,176.8634,4.525 502,149.29225,209.93852,32.491028,72.96529,4.493 503,400.29636,195.21497,33.70926,72.282104,44.594 503,-4.955849,-17.209957,16.978884,43.053173,8.283 503,392.11026,204.89389,30.602081,70.162476,8.047 503,598.6158,211.58473,31.150818,53.46068,8.014 503,393.3073,195.60356,57.75824,96.91557,7.574 503,414.17862,200.49515,36.349884,57.452637,6.99 503,-6.1540737,488.3387,18.97814,43.296356,6.856 503,-10.784005,-32.23385,29.362629,70.21517,6.502 503,502.00146,176.4685,29.50946,68.56142,6.368 503,412.48184,195.64519,25.478943,45.48108,6.27 503,-11.325377,475.908,29.468426,65.151215,6.075 503,627.4574,-17.452314,17.012146,45.84213,5.963 503,371.7996,198.76872,30.025787,68.00862,5.677 503,-17.75583,-63.42916,55.856155,142.97275,5.609 503,115.085754,492.92657,19.072113,36.512024,5.448 503,603.56244,-55.247704,52.81659,139.27069,5.307 503,432.39502,207.72647,46.19983,83.62991,5.271 503,349.71204,213.03558,30.80069,69.00397,5.255 503,614.9544,213.65105,22.617737,41.062347,5.238 503,623.4844,-34.66567,25.950989,75.0206,5.154 503,516.16943,155.29486,30.471619,68.2464,5.153 503,422.53842,197.9897,23.217926,38.907608,5.115 503,536.03546,309.42273,144.78418,342.91418,5.066 503,91.69505,184.54794,56.255615,106.687225,4.996 503,-73.4167,265.4688,201.24689,462.41364,4.992 503,84.1246,209.51718,31.096619,50.859406,4.99 503,583.0401,410.89923,71.80133,177.29211,4.984 503,608.90295,206.72958,22.167236,41.162796,4.942 503,626.5572,488.70966,20.999084,45.438416,4.921 503,107.28346,493.2532,18.663849,36.08304,4.915 503,613.01227,454.38977,40.150696,107.06775,4.909 503,307.76077,222.96277,32.6828,68.796814,4.861 503,494.21494,229.58232,236.85,511.6441,4.823 503,-22.098022,400.56372,78.90579,176.14563,4.819 503,380.58777,220.01279,31.236816,63.962433,4.811 503,122.918304,493.36795,19.516312,35.638885,4.809 503,360.2098,271.16864,38.60959,57.728912,4.79 503,627.7602,202.36781,17.93689,41.933807,4.782 503,3.5344477,-15.492085,16.298782,41.215782,4.769 503,114.78244,199.35133,42.13243,86.95854,4.743 503,130.85727,493.03528,19.619629,35.98059,4.738 503,3.441074,412.90265,32.2246,77.169556,4.734 503,444.4024,178.71388,58.18048,101.097244,4.727 503,322.36853,243.59055,33.74286,62.525726,4.723 503,155.58002,195.94658,32.468002,62.341995,4.695 503,593.72,206.75464,22.34314,40.213867,4.693 503,457.46765,217.75327,37.177673,66.71744,4.655 503,516.79926,187.26016,28.499695,61.618103,4.625 503,505.39658,179.61644,59.696503,99.310196,4.596 503,83.66447,200.82796,41.05728,88.39824,4.572 503,417.72253,490.86438,20.8208,39.0188,4.568 503,497.01828,203.90503,46.44577,71.51697,4.549 503,-38.674843,-128.31804,117.734665,277.8169,4.535 503,408.7759,40.805428,35.569183,76.5092,4.519 503,529.58203,209.65964,45.03723,67.98489,4.517 503,583.4633,207.15297,23.096191,37.34752,4.506 503,473.4118,171.79292,60.75531,104.107864,4.416 503,139.0227,493.0027,19.445465,36.274414,4.415 503,407.98648,251.80714,37.751587,58.265152,4.403 503,108.28125,483.91083,15.013306,22.284546,4.398 503,99.74263,480.67795,16.975143,25.67987,4.365 503,-5.168144,365.46844,16.43817,37.632324,4.337 503,307.48535,486.64325,32.288055,54.997253,4.318 503,131.38882,197.5294,40.98195,87.259476,4.293 503,366.58673,192.39366,57.1969,107.55089,4.284 504,174.05028,180.09335,31.65776,73.86359,19.778 504,164.72195,192.351,30.96225,74.7383,8.316 504,188.91426,184.56276,25.335236,46.778275,7.363 504,157.10861,178.40932,55.572433,101.17351,7.229 504,192.49359,188.37312,33.47139,54.58934,7.058 504,149.20409,185.77756,28.65242,72.66147,7.041 504,-5.655061,488.89694,18.076923,42.353302,6.948 504,209.01619,203.80795,22.18576,36.07161,6.277 504,603.7103,-53.964752,52.93689,138.10966,6.227 504,-12.239442,-40.379875,41.489532,99.55947,6.152 504,-11.162143,475.638,29.219528,64.44122,6.008 504,507.26825,212.10283,17.625427,30.874222,5.781 504,133.18257,170.7718,28.56076,65.261566,5.772 504,295.3593,164.67276,28.055023,66.50754,5.751 504,618.9054,207.56464,19.594482,50.033234,5.747 504,181.93732,194.96236,35.616684,62.44316,5.658 504,189.57787,198.33688,47.878952,76.98428,5.628 504,627.4146,-17.556778,17.118591,45.762688,5.621 504,148.41272,215.34381,31.822952,69.92084,5.502 504,626.1897,487.4062,21.7854,47.283997,5.421 504,140.23795,196.87971,30.789429,76.99434,5.416 504,-5.796999,-18.024046,17.932804,43.144672,5.369 504,514.9187,210.78146,18.269592,31.89618,5.16 504,206.93956,199.75475,48.517532,77.98903,5.084 504,151.5186,178.20427,23.593063,49.502975,5.073 504,-73.494484,265.90717,201.50201,462.01587,5.066 504,583.14764,410.90747,71.85205,176.99152,5.057 504,536.45337,309.7236,143.48572,343.0342,4.952 504,-17.75013,433.5028,54.645077,143.13629,4.95 504,64.28422,243.10536,35.93544,65.75362,4.867 504,144.99207,174.53032,22.082214,44.375854,4.845 504,623.1788,-34.751816,26.102722,75.1874,4.817 504,198.90268,183.27113,23.039093,36.86168,4.809 504,183.93883,256.5127,37.58116,54.02841,4.79 504,613.257,454.12323,39.54596,108.06702,4.781 504,-40.29693,366.4926,110.62908,275.7688,4.758 504,493.844,228.3028,237.4076,514.72845,4.659 504,209.18759,188.35272,20.03891,31.078552,4.651 504,522.2225,209.2729,19.259216,33.98619,4.644 504,239.45682,196.53656,48.30429,77.77673,4.614 504,316.71307,163.11293,30.378265,69.834885,4.558 504,326.42548,187.8412,27.691925,57.497787,4.496 504,-10.290694,114.82549,30.076534,78.591194,4.477 504,490.21344,206.74213,20.782623,37.296585,4.458 504,304.18063,201.43947,47.367493,74.630325,4.431 504,243.52911,173.6634,35.25699,63.488144,4.419 504,-37.208427,-122.69903,116.74971,274.51697,4.407 504,0.2440238,180.71118,28.300924,71.22211,4.371 504,259.20465,197.21848,33.848602,60.77542,4.369 504,160.06912,174.48225,24.46724,42.775314,4.309 504,594.01526,218.72235,19.818604,33.285034,4.298 504,-19.615074,-84.77542,70.54448,192.92554,4.262 504,99.79244,201.30078,32.477287,76.676636,4.237 505,615.6593,241.14594,22.35791,50.26477,15.987 505,595.1908,224.37573,16.78601,37.230225,11.674 505,37.8161,168.96349,31.702858,67.61514,7.765 505,314.1243,227.5967,19.620972,29.499405,7.563 505,618.5128,230.46764,17.54065,42.3976,7.082 505,-5.739944,490.16977,18.223616,40.272736,6.981 505,449.1058,225.24782,34.22879,60.082077,6.832 505,298.8296,227.98944,18.263062,29.244202,6.634 505,603.9158,-54.163242,52.530518,137.3243,6.443 505,-17.750057,-64.04016,56.637367,150.04022,6.345 505,626.3349,488.30334,21.456116,44.907654,6.219 505,-10.058247,179.35698,31.243984,73.62799,6.179 505,-9.301848,463.75287,37.987408,93.71576,6.131 505,289.96292,226.70114,18.774353,30.797058,6.027 505,602.5858,227.44617,15.941223,34.601257,5.934 505,67.47293,208.50714,35.687737,56.99298,5.831 505,627.46136,-17.747038,17.167786,45.964237,5.789 505,308.1323,232.52185,17.243866,27.871918,5.742 505,43.652344,134.78372,34.039772,69.42236,5.74 505,282.4242,226.05531,19.690521,30.299362,5.577 505,507.77295,223.52783,15.671936,35.10907,5.517 505,611.77026,473.1758,16.338806,29.69934,5.497 505,28.743372,153.27592,31.817274,75.156906,5.441 505,618.31805,490.71317,20.476746,41.509125,5.373 505,-11.308086,-32.450127,29.640787,74.04111,5.369 505,49.293194,209.15994,34.444683,58.226166,5.303 505,583.3942,412.00253,71.4895,175.7178,5.28 505,-6.0382967,212.36197,19.078335,45.473114,5.258 505,-5.6482863,-18.064611,17.51887,43.38302,5.178 505,411.70697,235.56488,19.088928,31.918488,5.159 505,48.207935,180.50183,23.528355,44.796814,5.137 505,57.16417,181.21698,62.35878,96.56207,5.121 505,51.946735,173.81781,30.863537,65.50569,5.077 505,79.65994,206.14594,47.578598,70.00311,5.073 505,-21.684065,402.2032,79.158676,175.60889,5.048 505,-73.463936,266.41168,201.63516,460.63416,5.009 505,535.6374,309.1098,145.43341,341.12592,4.89 505,315.8597,238.30717,16.105743,25.874954,4.882 505,24.832336,179.10532,61.774246,103.5184,4.838 505,-1.2217855,156.86696,30.3441,84.644714,4.793 505,623.14777,-34.477707,26.12091,74.70176,4.742 505,494.85138,230.13843,236.02728,513.2745,4.741 505,414.9433,215.52272,27.950531,53.852036,4.74 505,611.80396,228.35896,16.987122,38.29329,4.715 505,104.71702,186.7701,34.013084,57.906815,4.693 505,588.0726,227.80063,28.662048,57.717224,4.687 505,9.147681,149.88873,35.504795,74.38039,4.659 505,588.48553,219.44069,17.045532,37.33058,4.656 505,446.94434,208.0548,27.584137,61.33528,4.627 505,516.072,215.77428,14.203369,27.59932,4.587 505,599.9856,215.58011,34.914307,77.35388,4.516 505,74.478165,188.82697,30.661987,60.80211,4.514 505,331.84357,136.23492,32.00244,66.965744,4.509 505,343.8435,142.02522,24.037537,50.96901,4.487 505,299.13846,241.54155,16.88443,25.443771,4.461 505,330.11737,224.83025,19.99121,29.436478,4.461 505,501.32236,223.28258,14.399445,31.149994,4.459 505,613.3082,454.6217,39.02588,107.05817,4.431 505,284.52246,208.68826,29.319092,55.244568,4.413 505,33.751034,174.46997,22.751041,45.94078,4.403 505,72.38771,185.56406,22.624786,38.876083,4.384 505,298.7138,491.70615,19.914856,38.652008,4.38 505,211.07848,200.25113,18.964462,34.323456,4.365 505,274.05194,222.01721,22.081879,33.80066,4.349 505,322.39948,231.59802,17.956177,27.561462,4.327 505,-14.455053,169.40373,50.109978,133.8503,4.322 505,619.30414,466.81247,15.840454,33.623688,4.287 505,36.171875,209.78212,33.141327,57.762985,4.276 505,620.4951,224.36656,26.528687,66.2108,4.271 505,306.81445,492.19995,19.813324,38.694153,4.269 505,-9.689136,144.00044,32.421925,75.61339,4.26 505,-5.7615137,177.39626,20.862366,52.204544,4.253 505,424.83444,226.6254,22.475098,40.413177,4.242 505,597.43787,240.84207,37.60144,85.698,4.239 505,563.7245,218.3597,17.386719,33.342712,4.219 506,465.16986,220.48874,20.443268,40.689056,18.071 506,486.73425,232.80244,29.603455,58.67137,9.186 506,603.0474,150.3765,32.123047,63.930237,8.676 506,-5.718982,489.5012,18.051403,41.0856,8.076 506,105.77453,229.33905,20.987091,28.383942,7.463 506,471.94562,224.17131,21.998444,43.04988,7.304 506,300.14044,204.67561,28.820251,69.03429,7.099 506,-11.24317,478.2939,29.24196,61.586884,6.99 506,578.3074,243.75499,33.73419,55.830093,6.61 506,627.62646,-15.823214,16.663818,43.92814,6.596 506,626.6812,487.2599,20.783508,45.3067,6.372 506,97.83165,226.08789,22.418655,29.573914,6.212 506,-17.029137,-66.51306,55.449455,150.22871,6.207 506,623.4767,-34.5363,26.187256,76.58331,5.968 506,459.29398,213.26512,17.722351,38.08261,5.837 506,357.1489,221.84105,15.023651,29.233917,5.602 506,476.48923,220.99432,29.208221,60.395813,5.551 506,-5.8909936,-18.44533,17.583258,44.150475,5.488 506,-4.6058455,172.10739,18.111265,42.985504,5.488 506,462.05856,222.27121,29.104614,60.642242,5.452 506,369.7614,221.52644,21.032776,38.761948,5.438 506,603.447,-54.951824,52.791443,132.9229,5.402 506,520.24664,245.03575,22.370972,41.782547,5.393 506,508.49353,222.25684,29.119873,67.48889,5.331 506,539.68787,225.11632,32.111267,60.964127,5.306 506,586.7688,148.77719,37.57245,70.69356,5.283 506,143.51279,219.96277,23.857437,33.966125,5.257 506,583.21844,413.37616,71.60913,174.4013,5.206 506,437.00314,209.69757,15.680328,34.849106,5.175 506,252.92313,213.06895,31.270477,58.38521,5.142 506,-21.77776,402.20404,79.18361,175.68536,5.091 506,-11.050181,-32.027737,29.066341,72.21597,5.077 506,2.2986598,490.17157,19.089771,40.061035,5.025 506,386.37958,217.80357,19.277924,38.345963,5.014 506,-72.865616,266.8359,200.53773,459.92386,4.976 506,490.1065,224.94719,19.241272,40.603073,4.939 506,452.68643,211.40955,16.43106,37.185104,4.84 506,613.2906,453.66998,39.62152,108.28967,4.79 506,444.59265,211.0311,15.438721,34.60959,4.778 506,361.3754,223.35861,20.500702,38.91092,4.726 506,536.15027,311.297,144.84064,339.5381,4.706 506,523.6092,231.65547,31.290588,58.913986,4.696 506,294.09256,190.48718,26.768341,66.70087,4.613 506,147.09952,204.72037,31.154053,53.81479,4.557 506,250.2319,227.21713,20.666046,37.598846,4.551 506,145.60153,118.77827,34.807434,62.689354,4.551 506,2.094003,179.7373,19.434778,45.876083,4.542 506,494.32712,229.58868,236.70181,513.0375,4.468 506,122.28635,220.35152,18.513031,30.53038,4.46 506,481.22192,222.18222,19.840118,39.912537,4.458 506,564.258,212.2439,30.481995,63.989532,4.415 506,619.89087,-14.772197,16.125916,39.993412,4.39 506,-5.254953,197.88101,17.17422,43.070404,4.376 506,615.08167,151.09747,24.161865,47.163345,4.343 506,-4.7490087,120.54135,17.806265,40.04596,4.257 506,349.35532,221.43004,15.475494,28.476013,4.228 506,161.6453,123.42049,35.569366,72.20726,4.227 506,338.67102,240.38956,36.394287,57.61493,4.218 506,611.4362,182.82954,27.084534,76.061935,4.18 506,284.59293,205.66727,31.642975,66.84476,4.16 506,432.08746,194.53442,24.69107,54.293625,4.12 506,21.570913,177.84009,30.571173,56.131683,4.072 507,147.16347,212.40045,32.55516,66.7222,9.53 507,377.85046,245.95831,24.557983,50.41516,9.144 507,-5.6426597,489.60815,17.950972,40.81079,7.073 507,408.39923,251.99452,23.111084,44.22505,6.957 507,603.49054,-55.455757,53.290955,135.36322,6.834 507,627.12683,491.0257,20.247498,41.981445,6.826 507,387.83856,239.28488,29.721313,61.647003,6.359 507,-11.134043,478.32745,28.944435,62.251526,6.214 507,-5.431211,-18.165339,17.206133,43.062458,5.984 507,627.4678,-16.96006,16.900513,45.163094,5.697 507,-11.18091,-32.56396,29.383617,70.301895,5.673 507,150.1383,237.56104,36.98085,58.82831,5.521 507,485.32376,150.43579,33.414764,70.433624,5.504 507,-73.334915,265.99603,201.65843,462.5725,5.284 507,583.24304,414.23685,71.47644,173.01279,5.229 507,268.1088,211.42331,16.54602,30.7975,5.215 507,355.9348,233.58652,31.586517,66.98184,5.157 507,2.5866628,107.528244,33.935143,68.443115,5.07 507,-17.115591,-66.11206,55.457558,149.47458,4.993 507,-21.957722,401.64154,79.36985,175.70245,4.904 507,623.3159,-34.32843,26.000732,75.243,4.89 507,226.0426,227.64804,19.745483,40.94922,4.866 507,251.93536,217.11726,16.3042,39.712418,4.835 507,612.81396,455.1507,39.736694,107.19122,4.785 507,488.43854,252.96613,33.75287,60.974426,4.72 507,142.2149,197.03561,30.218338,65.84393,4.65 507,595.30914,-46.240982,42.577698,99.75865,4.621 507,-4.884387,219.57385,15.929414,36.94388,4.519 507,275.6512,210.82018,17.288269,32.283295,4.511 507,619.4088,495.05072,19.273132,37.26123,4.508 507,216.35497,232.31897,21.209656,39.230286,4.489 507,-6.0329485,40.389023,18.866604,44.54187,4.459 507,131.61046,207.82307,32.687958,65.30467,4.431 507,-11.260685,107.499466,29.861374,71.07039,4.422 507,535.97833,310.7845,144.16693,337.72565,4.366 507,159.37262,238.35574,46.350677,67.31943,4.338 507,-4.3777914,203.94879,16.34188,38.567627,4.32 507,427.09998,243.65353,32.462097,64.200775,4.308 507,493.95447,231.78284,236.95917,511.8974,4.246 507,113.17574,230.80975,44.96267,74.69849,4.209 507,411.84512,242.02528,32.24997,56.61174,4.193 507,401.21643,221.58661,19.718597,41.81659,4.172 507,410.3795,239.92099,19.42215,36.037354,4.16 507,2.760065,491.41046,18.262035,38.827576,4.156 507,-4.8914804,106.78865,18.32692,43.533417,4.113 507,283.37305,211.35707,17.324615,32.184143,4.103 507,503.74408,161.49449,22.430115,43.870102,4.102 507,410.54364,226.53418,18.536102,35.373474,4.095 507,369.58228,241.36891,24.286774,48.08629,4.08 507,404.49725,222.25682,30.27707,61.043076,4.054 507,373.47873,224.85416,37.87915,75.69113,4.045 507,236.16081,223.65773,16.302704,40.120224,4.042 507,583.0197,228.2664,26.030884,69.4366,4.031 507,-5.130673,235.319,15.693256,33.430878,4.02 507,591.7042,152.85927,25.991333,42.77191,4.003 507,236.229,211.64188,14.378815,34.053528,3.996 507,139.20169,211.35258,58.768555,88.71779,3.969 507,259.06702,216.50958,17.611908,41.379272,3.959 507,232.88414,107.16458,35.646103,62.70749,3.898 507,-1.8195736,116.7944,29.474512,85.09735,3.872 507,203.53299,220.91931,17.385834,31.573639,3.869 507,619.8986,-17.183716,16.621521,41.811306,3.811 507,497.58185,146.59581,32.51593,67.65509,3.808 507,-4.2684917,476.19196,14.9679165,35.439117,3.803 507,97.58007,228.9752,43.38218,77.16942,3.786 507,271.7487,206.00815,25.801971,55.469757,3.784 507,99.31332,204.4595,41.278236,69.31076,3.76 507,570.418,152.51993,34.190857,64.54056,3.755 507,212.23425,221.40067,16.41156,31.651031,3.739 507,585.7373,-105.011345,76.07825,238.60995,3.731 507,162.66333,208.3016,42.35205,71.52579,3.72 507,155.66621,196.2327,29.486206,67.4086,3.719 507,192.26016,236.87689,44.41928,72.0871,3.692 508,40.771603,231.62491,39.488712,68.15277,9.056 508,325.92493,240.01181,23.7417,52.927246,8.677 508,-5.8711786,-19.153124,18.908203,46.758896,7.481 508,-10.8509445,-32.59217,30.024988,74.75928,6.922 508,359.41898,245.84204,21.813293,50.078064,6.864 508,-5.813856,490.52484,18.06202,39.995544,6.804 508,-9.032915,463.96555,37.893456,93.75583,6.31 508,611.74976,-47.630558,40.129578,100.47403,6.175 508,44.143864,194.29704,31.86494,63.525284,5.977 508,48.14907,210.48254,43.97354,66.2912,5.888 508,211.06857,-12.408319,17.237762,32.815376,5.864 508,-18.011105,-62.153877,57.396397,141.92548,5.84 508,6.2668896,194.71768,28.02146,71.977356,5.836 508,364.5702,-9.571389,13.8302,32.701878,5.817 508,219.13641,-13.398089,16.590454,33.36842,5.75 508,357.1695,5.3060017,14.153137,25.551155,5.737 508,-73.555405,264.74933,202.3347,463.57428,5.701 508,627.24097,-16.85289,17.110107,44.78489,5.668 508,356.4827,-9.639739,14.246246,33.044773,5.66 508,365.12372,5.867298,13.166229,24.258102,5.633 508,379.94504,244.6624,29.680481,65.67549,5.594 508,227.45615,-13.202445,16.25412,32.896523,5.532 508,612.37964,454.4249,40.07373,107.15787,5.442 508,626.1089,487.20383,21.702637,47.5679,5.434 508,202.87773,-14.453108,17.498413,34.02369,5.407 508,316.85156,207.01933,30.18451,74.072464,5.351 508,301.0518,229.83965,30.104889,60.98607,5.204 508,39.485447,214.97379,61.15147,100.06589,5.182 508,582.5899,413.27222,72.38873,175.14087,5.124 508,104.376434,231.62204,25.448914,41.65155,4.962 508,348.14713,-10.261527,14.438873,33.434353,4.927 508,235.02495,-14.324795,16.729874,34.173054,4.924 508,-21.64175,402.54236,78.93761,174.38477,4.882 508,106.94707,-20.089941,17.760078,38.258595,4.869 508,372.76157,-9.158102,13.666199,31.824667,4.869 508,1.3265562,221.68504,42.441853,91.146194,4.863 508,90.5332,-20.517595,17.800621,38.824314,4.86 508,230.9952,-32.330376,27.245193,61.234325,4.828 508,101.55517,-34.898197,28.905998,65.040825,4.812 508,82.321014,-19.60582,18.167404,38.566723,4.801 508,186.74332,-15.595737,17.891754,35.36088,4.77 508,331.818,227.07059,29.41153,67.04492,4.77 508,98.86825,-19.790012,17.871315,37.845356,4.768 508,536.34515,310.8171,143.4043,340.059,4.762 508,74.13505,-20.601624,18.59916,39.774918,4.755 508,64.94409,208.88438,45.653595,66.20647,4.707 508,380.83585,-10.322578,13.912384,32.166557,4.69 508,1.872679,-18.550228,19.400887,45.71349,4.669 508,194.67474,-15.040176,18.003159,34.618195,4.655 508,82.54017,207.97807,44.62626,68.724075,4.581 508,446.5369,-32.46013,27.481934,70.19664,4.561 508,76.75908,-34.72245,29.444504,65.24154,4.523 508,114.8764,-18.730658,17.944946,38.082516,4.469 508,170.604,-15.466554,18.004852,36.201767,4.468 508,339.96854,-9.876831,14.693665,32.734577,4.466 508,72.76546,217.05237,62.75612,108.65466,4.456 508,494.32437,229.87643,237.16074,512.20056,4.422 508,12.760551,213.22525,58.43582,111.08292,4.419 508,348.9406,5.0090837,14.687683,25.926125,4.393 508,178.68208,-14.830133,18.02707,35.150326,4.37 508,194.77502,205.77068,18.512726,35.32057,4.353 508,313.77124,231.87956,22.662323,48.52147,4.315 508,60.804382,-34.218372,29.9422,64.5659,4.306 508,105.486465,224.58922,20.383347,32.436386,4.298 508,-15.519919,189.0204,51.137505,125.455,4.278 508,28.48331,223.19566,34.879475,60.39125,4.276 508,122.80892,-18.884838,17.78762,38.87083,4.271 508,185.65218,207.852,20.201157,43.87242,4.24 508,331.7241,-10.490017,14.783051,33.028137,4.216 508,563.3306,203.36765,30.078003,80.084015,4.211 508,159.70583,196.79079,24.888168,62.190628,4.209 508,154.4528,-16.99115,18.066788,38.31744,4.184 508,206.58188,-32.93582,27.889633,62.51462,4.182 508,163.11151,-3.6794882,18.882233,32.87543,4.154 508,594.8005,-44.858772,42.650696,95.84963,4.153 508,127.42171,216.33128,45.215393,75.5287,4.137 508,368.35696,247.40016,23.210266,47.186905,4.133 508,373.4813,6.6138973,12.683929,24.036373,4.129 508,97.78251,217.16795,44.600365,68.91182,4.067 508,-70.717865,-185.00372,211.93352,447.19214,4.067 508,559.42224,133.92937,25.792542,46.50554,4.059 508,119.96365,224.90663,23.515182,39.625687,4.047 508,242.828,-14.554937,17.316467,34.247955,4.043 508,178.67265,201.67506,19.058746,39.460495,4.028 509,436.7361,249.63818,30.852661,60.201965,9.468 509,127.80616,239.55283,37.215538,74.43683,8.399 509,-10.729121,-31.58704,30.224651,72.04839,7.756 509,627.4601,-16.080238,16.714478,43.89976,7.482 509,420.1642,242.9043,33.65738,59.89557,7.436 509,-5.5781736,-17.423035,18.548922,44.47375,7.334 509,615.39874,250.98323,22.829346,50.031845,7.208 509,-5.990634,-0.24635887,21.332363,46.462288,6.822 509,-11.208028,477.23944,29.495506,63.617065,6.669 509,-5.9700155,489.68814,18.52874,41.909393,6.572 509,623.7833,-33.64426,25.82721,75.23955,6.541 509,119.27093,227.20352,64.65882,110.05023,6.214 509,281.67038,-18.746403,19.704346,39.604008,6.151 509,301.6587,-33.41662,29.452698,65.59306,6.113 509,300.00125,208.27939,17.096039,31.858597,6.078 509,-17.736355,-61.115135,57.17258,141.64528,6.034 509,4.002356,241.4317,19.13106,32.363464,6.023 509,16.67223,230.78523,22.504604,36.637283,5.833 509,289.4926,-18.479923,19.898224,38.798214,5.821 509,-12.782101,89.0058,32.210037,68.887146,5.763 509,297.60236,-20.144302,19.523254,40.06022,5.738 509,284.98865,-32.582344,30.200592,64.207855,5.594 509,333.24036,-33.41815,29.736816,61.919067,5.544 509,282.681,215.6252,17.847137,42.191544,5.417 509,316.72147,-33.809345,30.119537,63.821465,5.392 509,153.69128,220.23114,21.515549,34.343903,5.364 509,507.25803,212.245,16.575104,34.870987,5.347 509,-73.51304,264.33917,202.37079,464.0805,5.344 509,329.9062,-19.502417,19.165924,38.23129,5.311 509,142.00835,222.37,49.43535,66.976685,5.307 509,603.284,-55.84541,52.978333,134.4504,5.307 509,584.89374,179.72424,22.637207,41.022964,5.303 509,488.08652,249.17735,33.904205,70.23891,5.274 509,321.997,-18.113956,19.174927,37.42402,5.231 509,109.13315,201.47618,30.537521,69.45418,5.228 509,265.74597,-19.098686,19.121124,40.295174,5.21 509,534.99854,-33.592224,27.786438,67.84556,5.189 509,306.95874,209.34587,19.030182,41.65262,5.154 509,273.81503,-18.152237,19.520203,39.160446,5.146 509,582.77356,412.57062,72.29205,175.19098,5.124 509,536.2573,309.44006,144.25,341.41296,5.114 509,158.97446,224.99252,49.85904,73.945435,5.098 509,305.88556,-18.627533,19.34488,38.547375,5.081 509,149.50522,225.76369,66.909,121.52757,5.056 509,269.01157,-32.240406,30.377197,64.48773,5.049 509,626.4352,488.17294,21.41687,46.279083,5.035 509,314.0255,-18.766594,18.932098,38.704433,5.027 509,-5.0298967,229.18263,16.455067,36.832993,5.017 509,442.45633,230.47917,34.02469,71.92479,4.956 509,290.46875,-19.192303,35.162384,60.46275,4.927 509,-21.748617,402.40125,79.16923,175.18744,4.914 509,245.27518,-33.25585,30.1846,66.70114,4.906 509,299.30356,215.5935,19.08789,43.213074,4.905 509,5.901784,220.08438,28.057125,59.793915,4.889 509,245.30342,200.0076,37.33989,79.34866,4.885 509,307.38242,198.59114,17.384766,28.505173,4.872 509,228.79071,203.73598,40.210907,75.29808,4.864 509,338.07153,-18.916945,19.153198,37.40137,4.844 509,257.92426,-18.911777,19.08139,39.730804,4.842 509,315.8687,198.23532,18.5708,31.781189,4.84 509,465.50244,242.93628,35.04706,73.036255,4.819 509,613.125,453.70358,39.9718,108.19266,4.808 509,250.2578,-19.550354,18.649796,41.137688,4.782 509,11.807241,-8.280941,56.52005,120.26378,4.781 509,291.5338,231.36583,18.178284,38.177902,4.732 509,194.45386,219.99797,44.327637,69.3517,4.719 509,589.5777,280.97308,32.463867,72.80194,4.682 509,275.7837,210.23775,15.736023,37.637177,4.674 509,268.12268,215.39484,16.629791,43.29608,4.659 509,212.27477,206.17955,41.32074,74.21315,4.638 509,405.66168,244.8308,34.333405,60.672348,4.635 509,493.88382,230.67564,236.96042,510.13812,4.632 509,185.72878,-18.864613,19.529327,39.25465,4.622 509,201.93204,-18.460625,19.27983,39.329094,4.621 509,62.067078,225.43481,26.32927,46.387817,4.62 509,0.86785436,82.677246,35.467075,80.14981,4.579 509,612.078,204.953,27.578247,78.3736,4.565 509,204.34846,-33.43287,30.788345,67.04397,4.538 509,128.26428,210.0663,46.366455,69.52373,4.49 509,597.1028,189.764,38.41028,86.73093,4.489 509,-2.315979,-0.99751663,27.445868,67.94028,4.485 509,20.46791,-3.397644,33.016644,65.686226,4.484 509,188.392,-33.457577,30.956207,66.24157,4.467 509,515.9343,255.69775,33.49646,74.58844,4.465 509,1.8131083,-17.14589,18.850878,42.47162,4.443 509,194.24677,-17.796444,19.108795,38.356083,4.423 510,-10.7584915,-31.123268,29.47222,74.33237,8.323 510,-5.6329346,-18.287144,18.435135,46.131916,7.329 510,314.28928,234.39076,21.400085,30.83812,7.278 510,-5.905113,490.23572,18.33641,39.96753,6.932 510,-9.226522,465.4588,37.802307,90.90674,6.368 510,-17.719402,-61.29561,56.527164,143.46036,6.358 510,415.74692,231.04433,50.264862,71.55217,6.213 510,627.1277,-18.989983,17.918152,47.038647,6.034 510,306.21524,238.33347,20.711487,30.6344,6.006 510,499.6283,220.84476,17.803467,34.321518,5.973 510,114.40947,13.275084,32.812683,59.608704,5.847 510,322.32452,86.053894,33.413086,60.21379,5.777 510,-4.541677,107.574295,18.046276,40.268173,5.701 510,622.59393,-34.26826,27.047302,75.881676,5.653 510,492.66492,240.71031,32.47876,64.69667,5.652 510,626.6999,488.09338,20.1828,45.5567,5.651 510,435.912,229.84315,69.57373,121.145584,5.589 510,258.35352,236.27298,21.089142,33.462067,5.558 510,2.109456,-18.64192,19.2374,45.73204,5.548 510,603.18994,-55.286644,53.13202,138.79475,5.491 510,69.34674,192.44809,31.288704,64.99924,5.428 510,483.1583,212.91768,17.441101,40.23665,5.402 510,11.221611,9.019627,56.774643,116.32628,5.389 510,251.62186,211.09299,16.90976,29.215805,5.368 510,259.2141,215.15518,16.429108,26.322403,5.366 510,612.7679,455.38757,39.4364,107.099304,5.293 510,455.1376,188.25038,26.17633,69.237656,5.283 510,-10.066711,102.67473,27.005262,60.663254,5.27 510,-73.52222,265.4215,202.36588,462.06433,5.264 510,178.1832,5.961588,35.522278,61.21878,5.239 510,12.759653,-32.93977,30.60399,71.53285,5.216 510,232.05026,232.62914,21.278763,30.022446,5.214 510,-21.372719,403.69757,78.433334,174.42004,5.183 510,476.18164,211.9629,17.130707,41.894424,5.153 510,2.5593364,199.50581,19.064075,48.35518,5.153 510,305.92294,93.82463,35.04837,60.936096,5.108 510,36.476368,100.57078,31.107502,52.264,5.083 510,571.68524,231.2792,17.934875,40.726837,5.056 510,535.67755,311.08194,144.5727,340.36227,5.051 510,432.06976,220.36568,47.568024,69.56575,5.05 510,582.7686,413.49176,72.13483,174.60852,5.038 510,446.56836,228.40607,49.52942,71.30737,5.003 510,315.33398,228.89354,33.71573,46.960495,4.959 510,2.5357544,113.06652,20.189894,39.62397,4.939 510,497.2311,222.90552,44.59268,69.22864,4.934 510,466.74103,203.5949,17.78717,45.685806,4.919 510,25.466286,-18.398727,20.315277,41.31384,4.909 510,185.08801,231.56186,22.547867,31.094757,4.903 510,68.99657,-32.93919,30.224487,74.54613,4.866 510,406.98825,236.12642,66.869965,117.929245,4.857 510,493.52625,229.5957,237.50494,511.10303,4.856 510,299.27118,240.96167,19.873169,27.771332,4.848 510,219.43597,223.01038,31.439453,48.572845,4.837 510,29.147942,-32.173363,30.174957,69.339325,4.83 510,154.08089,167.62563,37.345474,62.546402,4.819 510,201.83328,223.89221,20.962524,33.59424,4.797 510,-11.861916,174.10556,29.710665,66.20764,4.777 510,139.8358,172.20012,33.64363,59.113754,4.764 510,579.61414,230.35916,18.16919,41.193634,4.752 510,49.217896,92.1863,36.904694,57.67443,4.742 510,224.96973,227.29562,21.331772,32.00467,4.706 510,540.48267,-34.427822,31.121826,66.4846,4.702 510,-5.3760457,199.31079,17.138311,46.38925,4.657 510,246.57349,223.01776,29.420105,50.42157,4.643 510,282.82788,224.57117,18.433899,28.957077,4.639 510,10.953524,95.388756,60.128876,111.20985,4.624 510,56.198242,175.02617,23.769394,36.036682,4.611 510,33.66592,-17.507858,20.386585,39.67495,4.604 510,-2.0007014,-19.49661,29.211615,75.71588,4.581 510,428.27652,248.40437,35.909576,77.250534,4.58 510,98.549255,14.370338,34.726288,59.46601,4.571 510,73.89229,-17.546711,19.623657,42.13228,4.563 510,326.87622,233.39432,24.976654,33.843475,4.541 510,372.68793,198.62297,16.395142,30.333893,4.534 510,-5.272642,296.7675,16.70179,38.069305,4.53 510,45.283096,-31.783146,29.766579,70.95948,4.524 510,290.91867,224.72208,18.47934,29.682007,4.49 510,463.6507,230.68842,49.756042,83.57263,4.49 510,185.38795,201.87372,22.212814,40.26834,4.485 510,258.8204,226.7586,18.28299,30.480347,4.472 510,41.810303,-18.155594,20.176613,41.006207,4.454 510,298.4003,225.15306,19.131622,30.527756,4.406 510,400.68042,215.93901,46.6297,70.15755,4.399 510,217.95561,246.09854,20.805374,27.701416,4.374 510,379.20303,202.43613,16.72873,34.508087,4.363 510,555.7337,-34.755745,31.772217,65.245926,4.355 510,57.494144,157.97906,60.840626,106.8291,4.346 510,2.3261046,491.51202,18.954134,38.773865,4.346 510,512.2651,228.88829,46.10919,66.90028,4.34 511,307.19357,183.28247,45.359222,83.556946,66.431 511,283.84827,203.7085,31.20752,64.015594,14.345 511,312.8293,203.28758,26.20517,58.505844,13.001 511,272.40747,202.35716,24.309784,40.57158,8.956 511,170.2479,192.42603,39.262665,69.27295,7.918 511,344.0158,198.66011,25.036469,49.837326,7.604 511,268.15735,206.03204,34.191315,58.827576,7.364 511,153.78107,202.161,35.945328,66.35036,7.008 511,516.3329,193.19487,29.593506,62.82512,6.817 511,328.4516,189.46448,36.1799,67.3844,6.67 511,-6.160867,489.38434,18.800865,41.987854,6.586 511,-11.429181,477.9755,29.669891,62.89322,6.458 511,292.2578,193.04686,45.721344,78.835526,6.162 511,-17.899593,-65.82832,56.148643,150.6569,6.035 511,626.8713,-17.989122,18.073303,47.086815,5.981 511,498.9104,207.3211,18.218872,42.863037,5.973 511,626.5365,488.20966,20.655945,45.98236,5.964 511,602.86487,-54.35985,52.984863,133.31673,5.85 511,622.64594,-33.72233,26.993286,77.60975,5.75 511,285.8266,196.38737,24.604492,43.58432,5.638 511,283.45926,225.9868,33.849274,65.57024,5.478 511,492.33505,209.49031,16.736359,39.01425,5.389 511,477.54028,-34.398113,30.154755,71.03427,5.366 511,282.66223,97.73249,37.233093,65.136406,5.327 511,270.46323,187.26164,53.942596,95.94612,5.32 511,-5.7237797,-17.781624,17.388638,42.496582,5.32 511,-11.342051,-32.472176,29.684498,72.847664,5.315 511,583.0511,413.1425,71.843445,175.19754,5.303 511,612.9696,455.25824,39.556946,106.662415,5.28 511,4.628133,189.45634,30.026928,61.864243,5.226 511,536.0978,310.7448,144.74304,340.6789,5.217 511,-4.405368,188.62709,16.65785,40.544205,5.209 511,351.0614,193.92433,24.569275,44.918488,5.185 511,-73.531685,265.31244,202.07355,461.99323,5.14 511,183.13525,202.88245,39.679764,67.43533,5.071 511,493.7839,228.58588,237.10721,513.42645,4.898 511,-21.537123,402.64993,78.83892,175.3292,4.849 511,184.2145,183.8538,59.16301,119.166214,4.823 511,492.65277,-34.314598,30.792114,75.60592,4.796 511,594.69934,-14.386213,17.466736,39.028774,4.698 511,484.4659,213.15155,16.662079,36.578613,4.648 511,348.46576,121.28255,31.787384,77.856384,4.643 511,535.9562,209.69273,25.03772,45.189667,4.635 511,266.1458,199.98415,20.738464,36.837173,4.61 511,594.5124,-42.403767,44.16736,95.89822,4.552 512,428.7348,206.91394,28.61441,54.917694,30.439 512,410.80487,203.81601,34.75174,59.44034,16.744 512,235.7499,224.49411,16.647491,27.068756,12.307 512,325.91006,202.46329,33.720123,61.660706,11.798 512,340.5533,209.6759,27.00592,44.383423,10.504 512,228.96463,221.32738,17.088806,29.155823,8.752 512,240.86673,223.67596,21.516815,40.221832,7.658 512,314.64337,215.45781,37.663483,63.633255,7.04 512,77.29713,202.3757,34.53193,55.490112,6.731 512,-6.263896,490.22662,18.634708,41.59778,6.663 512,398.3348,200.0256,35.52011,59.787018,6.496 512,-17.245844,-63.22497,56.237984,147.8841,6.392 512,596.6395,197.38548,35.90503,73.100815,6.297 512,244.15047,221.65309,13.731552,22.784302,6.229 512,-11.728506,478.10022,29.770018,62.400208,6.112 512,627.3717,-17.621685,17.041992,45.821644,6.011 512,477.43576,215.0286,33.00946,61.846924,5.778 512,350.57867,213.695,24.752441,39.75624,5.705 512,626.88293,488.7755,20.179382,45.11676,5.699 512,334.17645,214.36572,37.714447,59.848633,5.519 512,-11.473843,-32.841423,29.9032,74.44655,5.255 512,603.4998,-56.141533,52.692078,138.72946,5.231 512,-73.938576,265.01523,202.35901,463.38028,5.196 512,582.92004,412.41644,71.822876,175.95013,5.184 512,623.41144,-34.70713,26.022766,75.111176,5.156 512,-5.736394,-18.0232,17.427856,43.857304,5.1 512,535.7734,309.48663,144.87347,343.0445,5.088 512,579.1599,204.23145,34.59839,64.65158,5.068 512,-21.956059,401.10266,79.63376,176.31805,5.008 512,321.21173,216.90161,43.818176,94.91681,5.004 512,612.83777,456.39026,39.336853,105.21814,5.004 512,-4.6683545,125.975555,16.785755,37.241425,4.99 512,567.4291,198.2511,30.89801,58.232574,4.897 512,-4.814603,155.88925,16.242962,37.44313,4.889 512,133.59206,205.65083,32.173355,55.330276,4.826 512,248.40013,223.71068,23.135239,41.113205,4.82 512,236.9323,225.63806,32.14244,58.369507,4.819 512,221.89384,217.75047,16.66719,30.122559,4.764 512,453.87448,203.02133,31.45996,51.109177,4.743 512,493.4709,227.36224,237.90839,514.57477,4.7 512,94.69202,207.6503,25.06884,45.16095,4.698 512,448.1885,210.22136,44.64154,75.93129,4.647 512,-5.84284,317.2588,17.72385,36.586548,4.643 512,-5.1817474,139.18414,16.979427,38.98033,4.631 512,288.93292,222.92258,44.304443,90.95715,4.603 512,3.5543942,129.35342,17.742756,34.793457,4.592 512,252.94125,221.4398,14.115692,22.060242,4.541 512,352.8445,211.15634,43.60318,81.31351,4.534 512,338.77933,247.22528,35.771515,74.25812,4.525 512,328.17963,203.47192,24.95752,36.29361,4.494 512,611.39453,199.96593,28.153564,81.13039,4.407 512,244.4394,236.51514,31.961105,63.09137,4.394 513,157.50032,190.90588,42.138382,80.835266,11.677 513,-4.73836,-15.671667,16.754309,42.3262,9.432 513,368.01263,234.63162,39.044678,54.734497,9.399 513,-10.500177,-31.480965,29.657522,72.603676,7.213 513,10.207353,9.481386,19.220592,36.14863,6.791 513,3.7932599,9.161291,17.758673,36.36367,6.571 513,3.7177582,-11.554605,15.837711,37.030724,6.544 513,549.6826,195.89551,32.072266,56.938263,6.496 513,-13.301822,479.3149,31.3802,61.35251,6.477 513,-3.8374023,4.2938976,16.317202,39.893433,6.354 513,-18.373848,-63.172092,56.517723,145.32204,6.323 513,603.8236,-54.266457,52.430115,134.21603,6.317 513,627.44977,-16.819431,16.974548,46.180916,5.897 513,77.54856,307.005,27.432098,41.475708,5.718 513,446.42307,192.66031,30.898865,57.445602,5.62 513,626.7188,488.79105,20.474915,44.7847,5.522 513,-17.369923,439.20062,55.412853,135.72028,5.516 513,131.43314,190.39716,47.791748,91.83203,5.484 513,390.0744,240.55043,26.823547,46.953415,5.414 513,-6.8647566,490.52155,19.504583,41.77997,5.413 513,277.2149,221.3908,29.243713,77.32872,5.388 513,10.907177,-12.136958,16.127254,36.88321,5.355 513,26.92255,1.74576,18.687954,31.942068,5.336 513,251.34721,226.61174,32.567337,69.37251,5.251 513,459.7027,195.10979,30.869385,55.626465,5.178 513,613.3424,455.94138,39.567444,104.69333,5.172 513,163.70668,187.05266,60.27661,109.02559,5.156 513,521.2287,206.55783,35.133423,63.575714,5.148 513,236.52817,226.61093,33.566925,61.60083,5.129 513,251.21005,143.19331,30.529419,87.110245,5.086 513,582.9542,411.53528,72.14148,176.55884,5.085 513,347.6562,213.51704,32.36789,63.13643,5.083 513,18.818428,2.0536652,18.095642,32.483223,5.03 513,-73.44267,265.73236,201.89886,462.76453,4.975 513,239.47136,48.64311,30.375381,79.96101,4.947 513,366.0691,229.97212,25.600067,44.134354,4.914 513,-36.970238,-132.3139,117.42115,283.57492,4.909 513,441.92416,190.54645,22.484833,46.975433,4.894 513,-0.07809043,-15.6671505,26.729416,65.20939,4.888 513,-40.406982,367.00104,111.20089,275.18646,4.881 513,27.200542,-13.119135,16.724163,35.329693,4.845 513,321.77188,213.26324,33.23117,62.15747,4.839 513,536.2603,309.7854,143.20203,341.5688,4.839 513,10.117157,-24.743881,58.14827,126.25172,4.816 513,269.0899,199.90091,30.199982,65.54501,4.798 513,307.48212,212.45041,32.703705,58.889313,4.785 513,59.81904,-2.032321,18.87761,35.77171,4.779 513,-3.485007,50.12107,15.730492,44.55327,4.742 513,217.01949,239.52127,34.67717,53.3273,4.72 513,623.2734,-34.19582,25.86554,75.966774,4.717 513,113.1295,195.13416,46.92244,93.47644,4.69 513,138.53802,188.85922,60.81488,129.42538,4.628 513,146.87642,227.1127,36.951523,68.40875,4.591 513,43.672276,-0.34140205,18.882885,34.17457,4.543 513,392.1191,238.51114,37.012054,67.49823,4.522 513,495.4499,214.035,38.429016,59.428192,4.492 513,-71.61899,-188.8579,212.78416,456.15173,4.461 513,595.54675,-46.645466,42.509155,100.88737,4.451 513,19.05546,-11.8999,16.708696,35.36564,4.447 513,493.25702,228.95065,238.57892,513.02893,4.421 513,35.282883,0.9615021,18.277641,33.197815,4.399 513,-0.38891792,219.2798,25.592096,82.69118,4.385 513,67.61755,-2.7269783,19.173134,37.57867,4.338 513,0.99936724,228.20706,47.300224,146.17758,4.304 513,4.996175,154.46674,29.29028,67.56868,4.275 514,422.21533,185.20117,54.479553,92.17438,82.797 514,267.60132,232.18637,59.006714,169.50558,10.202 514,566.29706,211.28195,29.828796,76.5264,7.425 514,-6.4119463,489.80112,19.3205,42.60501,7.217 514,518.7112,216.54999,37.48999,76.746216,7.0 514,-5.6233654,-18.139835,18.093378,43.89837,6.963 514,264.04108,2.6770134,24.34787,42.2415,6.838 514,533.1736,213.30232,36.069397,81.504196,6.233 514,623.1429,-34.481102,26.462952,78.45836,6.217 514,-18.044807,-62.935127,56.192413,138.94766,6.166 514,-10.901275,-32.459305,29.3092,71.790665,5.966 514,-11.764404,480.51016,30.73049,60.431244,5.933 514,368.05203,316.01227,32.299347,58.580963,5.619 514,627.22656,-18.913727,17.08081,49.077827,5.512 514,418.10486,357.5359,22.848969,37.318512,5.386 514,603.0641,-55.168045,53.42871,134.22646,5.167 514,491.78632,-183.06168,233.10321,427.82053,5.082 514,626.12744,487.58627,21.732727,45.564972,5.056 514,613.366,454.01923,39.793823,106.68146,5.011 514,-17.944931,434.22324,54.93002,141.17593,4.984 514,583.2546,411.3589,71.80066,176.70343,4.935 514,-72.96924,266.91742,200.84856,459.54462,4.925 514,550.6629,220.67108,26.787231,64.766235,4.903 514,-5.615362,249.72464,17.693209,40.205902,4.825 514,248.54448,-3.0355148,24.800797,48.19073,4.818 514,436.46457,180.98409,35.35428,68.48462,4.807 514,2.884894,-17.740738,17.544086,42.30094,4.802 514,251.14783,2.942995,33.978546,62.575584,4.776 514,-40.274055,366.18536,111.238396,274.27826,4.756 514,536.0423,309.73383,143.60431,341.85248,4.747 514,594.668,-46.87844,43.8244,100.98303,4.548 514,316.88654,6.3062506,16.100159,25.905758,4.541 514,-37.92105,-128.28873,117.72993,275.30624,4.534 514,227.19647,-18.757523,34.1481,65.746864,4.529 514,494.09747,228.50894,237.95209,514.08936,4.374 514,-4.569581,136.48589,16.808254,42.828247,4.369 514,426.08777,187.62427,66.50073,148.42578,4.33 514,-10.321446,-5.449257,40.36959,98.00971,4.312 514,620.43823,218.21606,17.576782,44.602905,4.3 514,261.40735,86.66954,30.491577,73.509415,4.297 514,25.677563,491.82117,21.85431,38.881348,4.233 514,386.01245,183.59207,46.719147,91.21927,4.229 514,251.40271,-12.785294,55.71649,122.53104,4.177 514,403.76782,187.72136,51.4028,88.87764,4.172 514,615.0367,221.01768,24.66388,74.39412,4.168 514,624.2689,216.62123,24.887451,74.44847,4.152 514,-5.9590244,25.302162,18.263885,41.002365,4.136 514,466.90906,214.94554,43.46585,81.73018,4.136 514,-5.347547,84.905716,18.487825,45.6024,4.115 514,442.05695,165.9395,22.694305,42.379715,4.099 514,586.79877,-102.6105,73.849304,236.95236,4.068 514,17.645317,492.80066,21.892742,39.331055,4.036 515,451.95966,194.32277,48.066223,94.670395,82.476 515,449.2308,373.75778,23.525208,41.397034,7.646 515,-2.7970457,142.1419,47.686836,193.15857,6.927 515,-11.014867,-32.205593,29.656956,76.556564,6.697 515,598.96704,205.90768,25.209656,90.333954,6.645 515,-5.6931744,-18.10049,18.022831,45.056236,6.621 515,-6.4376726,490.38937,19.679867,41.856842,6.559 515,623.0765,-34.75419,26.546204,77.96552,6.432 515,-12.463715,480.87717,31.434952,59.04007,6.358 515,296.6488,237.82732,55.269897,167.57106,6.325 515,550.84827,225.97212,36.402283,85.75212,5.975 515,627.46405,-19.734625,17.272278,49.97781,5.902 515,627.0127,489.8278,20.66034,43.52243,5.779 515,602.657,-58.379967,53.6532,135.0865,5.766 515,-1.558187,170.0477,30.411154,101.90793,5.655 515,-10.307369,135.00966,32.77614,74.99826,5.621 515,566.0815,220.66507,34.427795,92.31995,5.331 515,536.43567,310.6283,142.94373,341.10254,5.099 515,-10.64464,255.46378,47.14126,163.23093,5.081 515,-17.73534,-62.81293,56.492184,142.255,5.071 515,-1.033684,353.3399,27.850967,80.4639,5.069 515,-73.28989,267.71234,200.8212,459.1667,5.058 515,594.0951,-46.354305,44.5401,97.10256,5.005 515,-18.303493,433.86554,55.544796,141.58453,4.997 515,-40.69502,362.20343,111.780334,280.2152,4.892 515,491.02097,-180.94392,234.26352,425.77286,4.861 515,417.39072,208.20787,45.895752,92.23317,4.83 515,583.2284,410.84216,71.75354,177.52026,4.671 515,613.743,454.6197,39.33795,106.561035,4.621 515,-37.52442,-126.99552,117.60545,276.41144,4.603 515,586.8148,211.78383,32.8006,105.77779,4.589 515,534.31616,222.57535,39.9516,76.704956,4.587 515,479.43875,208.6067,44.877167,85.984116,4.487 515,297.82407,-11.609352,57.494507,113.15692,4.411 515,394.90036,326.1864,29.387238,59.055634,4.411 515,620.0425,-7.2284927,18.307068,48.017822,4.396 515,586.7791,-103.28621,73.940125,237.7062,4.359 515,466.46967,191.57986,32.59482,66.00894,4.357 515,508.7306,232.61786,16.784302,32.917175,4.351 515,493.93878,228.9591,238.46088,513.15717,4.318 515,8.463516,170.62976,33.291763,90.45242,4.295 515,-0.3794229,-19.977127,26.770615,77.03192,4.29 515,-23.560389,101.406586,92.9543,295.2124,4.107 515,613.51526,226.56857,25.841064,93.87073,4.059 515,-10.339867,-6.7957993,40.642277,100.52616,4.031 515,240.00858,-12.133499,46.522552,80.45818,4.008 515,-10.036594,302.5725,32.0345,87.6734,3.991 515,450.01593,357.99448,33.67105,61.282013,3.985 515,586.1169,229.77475,21.039734,57.183777,3.957 515,616.08124,-23.522112,25.115417,78.39261,3.95 515,-1.0626805,240.99117,28.68663,105.792465,3.904 515,612.19916,136.49138,26.957458,98.87283,3.903 516,442.1303,193.14874,52.548676,91.967255,79.337 516,290.99026,241.98526,50.906036,164.09653,16.03 516,-4.1149497,127.90552,50.96783,203.41815,15.568 516,-6.212682,488.49832,19.12555,43.19278,8.075 516,-11.405493,477.7714,29.804562,62.594574,7.479 516,-20.354908,95.81656,90.48949,297.2189,7.166 516,623.31525,-34.229652,26.221802,76.27813,6.999 516,-10.997627,-31.927109,29.74199,75.75466,6.845 516,441.14417,365.0827,20.942291,37.603546,6.55 516,-6.011634,-18.613304,18.462322,45.472466,6.423 516,549.9697,218.53784,37.693054,79.831726,6.041 516,534.4671,220.01361,38.095337,75.62201,6.038 516,627.16956,-17.368994,17.751099,45.984684,6.036 516,575.2528,213.03616,27.62024,73.17828,5.598 516,621.62,475.79694,29.578613,66.83545,5.403 516,-17.717983,-62.398483,56.685165,141.31015,5.365 516,602.72235,-58.06088,53.743103,135.04161,5.341 516,566.6082,223.57216,26.59784,66.40788,5.31 516,290.41638,1.1664906,35.11325,56.519012,5.272 516,-73.23863,267.26855,201.33224,459.42804,5.177 516,-40.743393,362.11316,111.69538,279.5371,5.127 516,536.1914,310.90942,143.3064,341.35266,5.018 516,583.26416,411.18216,71.83624,176.81741,4.98 516,594.6442,-46.89799,43.80829,98.51152,4.885 516,-7.203389,143.51027,39.76121,129.239,4.858 516,281.89124,-7.943329,57.04068,117.00676,4.825 516,-18.998552,431.82666,55.959053,143.91614,4.787 516,401.77618,183.28401,45.95529,95.800766,4.746 516,482.48856,211.77753,43.13205,83.1189,4.742 516,297.4666,-0.3763504,22.688171,36.989555,4.727 516,490.88647,-181.82516,234.03491,425.68268,4.699 516,66.52072,479.39764,34.490967,60.68744,4.681 516,305.7461,-10.820097,44.0502,82.08133,4.657 516,301.37143,-30.172533,29.843964,69.148,4.586 516,274.92932,-10.766176,44.469086,78.90072,4.579 516,-9.518132,-6.91761,39.82717,100.61951,4.562 516,473.2517,205.6307,32.424316,68.01511,4.496 516,-37.706676,-126.61426,117.72426,276.50528,4.482 516,-5.5229163,307.13654,35.82687,101.07703,4.475 516,243.70789,253.27812,41.992188,104.474075,4.437 516,-5.088065,473.91718,16.383965,37.088806,4.427 516,1.9711769,-17.059647,18.635689,44.64949,4.403 516,435.63336,349.55356,31.88916,56.51471,4.363 516,1.6290355,488.2793,20.197433,42.520203,4.352 516,507.21313,230.09047,17.576782,32.149643,4.331 516,493.8999,228.42825,238.46643,513.77527,4.311 516,240.75827,-12.142433,45.25885,77.803444,4.31 516,419.96918,196.37088,47.796387,94.019745,4.3 516,170.32083,246.72241,58.283478,139.71954,4.285 516,586.9121,-101.586006,73.71362,233.78061,4.178 516,426.45453,358.25595,20.022217,36.313324,4.162 517,40.82108,122.66169,86.505905,238.84229,97.759 517,481.98413,193.55496,47.555176,84.37906,79.968 517,422.82306,305.70084,23.962402,43.219147,10.04 517,23.118114,64.747284,138.56798,338.7615,9.415 517,335.53094,236.08252,54.02774,143.46497,8.679 517,622.4969,-32.901924,26.415588,76.24419,8.662 517,-5.5253944,-17.99798,17.770107,43.988846,8.464 517,-10.894457,-32.31462,29.189137,73.720314,6.955 517,-11.591858,479.88492,29.047281,61.937836,6.486 517,626.5846,488.93997,21.046753,44.507782,6.434 517,-5.9592476,490.3194,18.049551,40.68164,6.248 517,-11.150255,118.47345,62.747185,188.34897,5.921 517,-73.36971,267.0907,202.69696,458.214,5.912 517,613.3623,454.58313,39.942444,106.15631,5.885 517,332.31552,115.04398,32.42798,85.81832,5.681 517,614.37024,139.45792,24.38208,97.619675,5.633 517,602.6918,-58.324856,53.143738,134.57092,5.593 517,2.4532032,48.255245,32.00392,82.33237,5.511 517,617.6659,-20.805138,19.298462,49.88917,5.288 517,-9.327322,462.46606,37.710186,95.1416,5.286 517,-17.57766,-64.740875,56.76025,144.17754,5.253 517,7.3397803,119.025,66.66121,133.0249,5.219 517,585.1208,208.49533,34.67169,86.14923,5.203 517,491.1953,-181.13109,233.98016,426.93042,5.07 517,347.71985,-0.7159538,19.817963,35.29954,4.981 517,536.31995,310.87823,143.19293,340.76947,4.923 517,-41.20427,361.7928,111.85995,279.748,4.91 517,583.0462,412.13794,72.102234,176.44897,4.897 517,593.9545,-46.889057,44.501648,96.08882,4.864 517,355.12436,-1.4935856,20.004791,36.828262,4.819 517,220.04315,237.43575,56.492004,132.90172,4.644 517,331.78632,167.22049,30.896515,71.40718,4.597 517,-35.341755,45.53676,148.28479,377.06134,4.567 517,566.3416,217.12292,37.843323,77.52725,4.55 517,2.8217173,-16.091753,17.13454,41.932766,4.537 517,513.10724,202.20557,43.059204,80.55264,4.532 517,615.3968,197.8984,23.128052,87.66867,4.509 517,419.5438,311.56375,32.2695,60.80539,4.495 517,348.3988,302.98376,33.977966,77.84119,4.48 517,586.7759,-102.0771,73.76123,235.89124,4.469 517,457.73724,324.40634,34.12918,61.36325,4.44 517,593.3351,231.048,22.583618,50.41278,4.419 517,-72.17041,-189.48991,214.19234,459.5609,4.406 517,-19.277508,431.06512,56.74803,146.74109,4.392 517,92.2519,138.0252,49.815544,111.94139,4.385 517,547.24634,232.06816,16.953125,31.427872,4.385 517,617.9708,492.48563,21.230713,39.778778,4.369 518,18.610168,202.60968,104.0914,288.48822,94.68 518,185.64188,134.28806,77.35199,222.55234,86.468 518,563.01843,190.56116,48.46167,90.23624,75.799 518,-71.82122,257.63763,202.90356,472.64996,8.958 518,152.84142,125.81326,132.5815,329.73224,7.3 518,627.1562,-18.867428,17.581482,48.520725,7.191 518,622.8051,-34.38629,26.973267,77.83112,6.306 518,-10.828045,-31.97527,29.457243,73.81641,6.301 518,-5.832137,-18.748053,18.26006,44.953304,6.201 518,-1.7286301,130.8883,194.56146,425.88153,6.185 518,594.74115,199.04016,41.546448,98.87146,6.082 518,-5.993755,489.8665,18.269032,41.0455,5.689 518,613.7098,454.45038,39.649536,106.58124,5.623 518,160.5451,153.63748,62.759552,159.16428,5.616 518,60.242424,211.23688,51.964546,105.48065,5.553 518,626.22784,487.64145,21.634033,46.360382,5.485 518,556.0453,166.30957,66.68182,149.206,5.472 518,-11.721458,480.0288,29.597569,60.228577,5.383 518,-9.17204,259.96375,38.130108,107.57233,5.202 518,-38.304237,117.48021,150.19751,379.56317,5.197 518,185.27495,142.33655,63.64308,120.67139,5.137 518,602.78296,-55.61249,53.104248,136.55663,5.088 518,585.56573,-98.69435,75.39325,231.42879,5.037 518,582.8677,411.28894,72.46643,176.61835,5.004 518,88.58918,0.6782265,21.474846,35.393,4.949 518,536.28015,310.34003,143.14844,342.2874,4.93 518,427.29034,120.95718,33.02066,80.5691,4.895 518,157.95905,142.75772,54.466003,96.62042,4.894 518,-19.879656,-86.69294,71.51467,195.92593,4.869 518,-9.922197,-21.88861,39.512894,99.514595,4.832 518,-9.899913,462.54346,38.26213,94.434326,4.812 518,489.68936,-179.42722,235.3956,424.7418,4.768 518,-42.547905,352.60577,113.9913,284.9333,4.72 518,-71.26785,-189.63557,214.04158,461.7025,4.666 518,23.823906,211.41624,73.30616,169.13698,4.64 518,19.54546,289.46442,150.74341,351.79974,4.631 518,81.62907,177.3098,147.06909,321.49548,4.603 518,-36.392944,-129.4365,116.764084,278.34912,4.548 518,-9.3488865,322.0492,38.730415,109.3884,4.508 518,190.14067,166.13556,34.47719,98.177246,4.483 518,48.47264,202.5757,50.776314,81.61601,4.473 518,90.125565,-12.60063,17.714249,36.85595,4.463 518,619.4164,-6.7254944,20.243713,46.15788,4.423 519,354.3071,211.77652,86.85513,253.41522,97.969 519,323.1455,163.37633,68.86041,159.1255,43.983 519,328.56763,183.68848,86.71054,247.73047,26.189 519,-5.9090605,-18.109028,18.31858,44.98829,7.991 519,-11.844883,478.75586,29.665205,62.34735,7.046 519,452.1162,252.11153,43.23935,88.77199,6.961 519,-10.902054,-32.383026,29.661459,72.01868,6.768 519,627.2323,-19.220343,17.529785,49.360867,6.673 519,-6.2710056,489.2754,19.21733,41.177246,6.319 519,622.7599,-34.35285,27.06543,78.301094,6.318 519,388.5039,221.40651,39.100586,80.1422,6.191 519,50.12993,248.10782,35.551003,77.38815,5.966 519,246.47522,211.09747,31.760193,71.89307,5.877 519,-17.705076,-64.401535,56.64057,142.34569,5.655 519,367.03357,360.23596,36.79901,94.562744,5.478 519,575.2175,224.95204,52.51123,147.27306,5.456 519,490.39392,262.37738,34.45099,67.78613,5.417 519,537.90906,228.10474,53.83722,138.1051,5.321 519,602.7828,-56.434013,53.4563,136.85074,5.316 519,626.5233,489.68933,21.2146,44.579956,5.301 519,582.82874,410.74234,72.29791,177.34433,5.271 519,-73.671524,264.6004,202.02443,464.8377,5.245 519,536.208,314.65714,144.03131,336.3585,5.134 519,-72.719604,-190.42513,213.70758,457.94208,5.128 519,498.57123,256.47626,42.99829,90.97543,5.128 519,585.1368,-98.996,76.54071,230.51494,4.952 519,474.943,235.30493,55.435486,120.70117,4.951 519,584.85474,-0.87641144,22.182251,36.764763,4.938 519,495.29608,233.89044,236.89679,504.59076,4.892 519,387.19894,280.54486,67.67926,167.4267,4.867 519,-21.664324,402.7985,79.478966,174.6055,4.86 519,613.2259,454.2068,39.739502,107.457886,4.78 519,570.422,-13.446396,18.085571,37.02336,4.769 519,2.2360678,-17.996622,18.215908,43.102634,4.722 519,358.0322,318.8708,62.96466,143.84027,4.709 519,343.35516,184.8835,37.315063,95.581955,4.676 519,540.88086,260.80942,32.117126,89.97696,4.474 519,586.5711,-12.419935,32.394104,60.691917,4.473 519,-9.499592,-6.090988,40.567074,99.08474,4.444 519,532.95483,244.35107,35.79431,76.27875,4.435 519,0.234133,222.28761,27.85933,63.8665,4.404 519,619.19916,-18.990261,17.82428,46.57413,4.343 519,-36.894382,-128.61794,116.95409,280.12122,4.322 519,537.3151,184.26726,22.942444,46.98256,4.312 519,472.79236,274.41296,35.37024,70.11133,4.276 519,-4.510407,220.19127,16.766771,37.27147,4.258 519,326.45383,229.31302,27.927032,71.41525,4.241 519,313.59842,107.49623,195.5734,375.52167,4.223 519,268.06293,227.57352,77.53659,193.10483,4.211 519,345.44418,-6.4894085,23.09613,42.67743,4.186 520,440.54108,171.81522,63.484253,173.06842,96.604 520,548.8048,259.14328,39.964783,83.85727,10.441 520,-4.9605002,-16.544361,17.332731,42.688354,9.491 520,594.8689,254.32419,45.42169,199.49939,8.429 520,-10.971352,-31.969212,29.32399,72.24713,8.033 520,616.1594,273.79483,25.393005,104.6268,7.559 520,196.41766,244.88406,36.655396,77.52142,7.183 520,-11.422739,479.66183,29.322905,62.172882,6.995 520,-5.98387,489.51465,18.835447,41.169617,6.745 520,563.75586,266.95898,30.364746,65.83664,6.253 520,3.2815213,-15.045824,16.387398,40.14287,6.094 520,612.7012,372.2685,27.60913,78.70712,5.77 520,613.5009,454.05435,39.822754,107.84006,5.708 520,557.68256,250.40784,46.155212,110.353455,5.688 520,621.9812,478.67078,28.706299,65.41937,5.66 520,-18.38912,-62.72283,56.75405,141.61044,5.541 520,627.277,-19.866985,17.381897,49.843006,5.535 520,611.653,-48.04786,40.821472,102.53562,5.509 520,59.766598,0.30403423,17.897404,30.021404,5.345 520,536.3956,309.46887,142.40332,343.24963,5.341 520,-4.148468,207.52885,16.449291,36.08316,5.282 520,-73.0638,264.98657,201.1317,463.62585,5.273 520,552.1416,265.81912,24.550476,55.96045,5.253 520,460.14075,239.92798,37.164978,93.99243,5.084 520,-17.492807,437.6439,55.039078,138.19583,5.073 520,-37.57352,-131.14435,117.23131,283.5204,5.01 520,603.60254,41.9328,32.47046,81.30174,4.918 520,2.356401,209.52826,17.932697,36.26387,4.895 520,192.90964,208.73938,42.006744,87.95776,4.778 520,492.4141,230.70464,239.6362,511.5135,4.763 520,-4.420183,2.8089657,17.14211,40.780975,4.76 520,-40.272022,367.3169,110.46716,275.64362,4.745 520,372.38055,226.73985,30.45935,65.09352,4.73 520,373.9231,253.25047,26.745544,67.504715,4.713 520,577.5274,238.50574,48.183777,133.05957,4.644 520,171.54367,224.13225,38.73163,56.317245,4.632 520,586.0537,-98.67729,74.05945,236.3818,4.601 520,-1.5724695,-17.300262,27.300394,64.76837,4.519 520,43.09758,-2.068575,19.301327,34.29728,4.515 520,-70.74594,-189.07126,212.67778,456.38177,4.473 520,-11.535809,156.13332,29.05569,67.548096,4.472 520,579.59784,264.81357,29.953064,67.84244,4.429 520,10.627409,-16.942509,17.034426,40.049297,4.415 520,51.383423,-0.9471073,18.320152,32.647297,4.409 520,-5.6038737,168.35579,17.640688,42.1232,4.392 520,59.340515,-14.069153,16.435776,34.609615,4.352 520,162.11397,231.01363,44.60266,82.933304,4.351 520,585.9774,171.75049,60.454773,221.11353,4.312 520,401.50577,196.2598,42.369293,108.22708,4.292 520,181.04547,225.89383,43.835938,86.97592,4.264 521,468.00043,174.28403,56.708435,163.75504,95.656 521,228.02208,180.37521,39.503555,111.28418,10.435 521,235.609,238.05711,33.95067,85.19377,8.785 521,565.25885,250.84776,44.84851,83.153244,7.611 521,-5.582378,-16.462029,17.990381,43.490807,7.105 521,435.4649,200.90417,37.735413,118.11713,6.968 521,-5.9547496,490.47098,18.67727,39.71811,6.882 521,627.02563,-19.506943,17.520325,47.950874,6.854 521,622.74207,-33.510365,27.365723,75.303604,6.789 521,596.5076,265.74402,31.173645,69.36124,6.734 521,-11.47974,480.46085,29.4827,61.23996,6.399 521,584.2195,264.013,23.609253,51.2442,6.28 521,-10.928625,-32.55998,29.836931,75.06146,6.161 521,573.63293,230.00946,53.388,116.04669,5.878 521,612.92786,454.99524,40.255127,106.392334,5.738 521,485.08792,237.49127,36.982758,96.03198,5.634 521,-17.259892,-62.62931,56.60876,143.64145,5.541 521,603.3262,-55.20896,52.681885,133.96767,5.511 521,-73.28981,264.49695,201.6986,464.19458,5.405 521,463.2277,208.89441,31.556213,92.477356,5.365 521,405.67688,246.22324,25.577454,67.90015,5.33 521,536.06934,310.95346,143.13934,340.78055,5.288 521,29.20625,165.54736,32.341335,53.371033,5.132 521,263.7726,175.44382,31.520172,86.45987,5.114 521,582.5776,411.31622,72.505066,177.26556,5.069 521,613.31445,253.94096,26.26654,78.87233,5.014 521,590.0532,256.29788,29.267578,58.7081,4.953 521,3.0785341,-13.568146,17.157013,40.63689,4.947 521,403.6444,40.29573,33.564392,80.79654,4.946 521,-17.777617,437.96582,55.224205,138.97559,4.91 521,626.80304,488.37067,20.177307,45.337524,4.812 521,248.46167,247.5748,33.937286,77.31091,4.805 521,-40.378876,367.39017,110.573,274.86874,4.734 521,493.68567,229.7054,238.47858,508.62317,4.728 521,-37.995804,-130.87178,117.926575,284.53357,4.683 521,3.3161383,206.46721,15.931523,32.951355,4.594 521,-70.727684,-187.81523,212.65839,454.73724,4.512 521,417.49005,40.68464,32.107788,82.04161,4.457 521,579.04974,280.09604,33.799072,64.91257,4.432 521,431.5526,239.29002,29.272552,82.50377,4.397 521,221.97372,197.52106,54.724396,144.20532,4.348 521,586.72296,-99.1809,73.07196,234.10583,4.332 521,415.5174,254.0774,27.569427,68.18689,4.311 521,415.99127,230.6711,22.599152,52.59111,4.305 521,475.1344,183.75137,38.21045,107.5477,4.291 521,75.538376,-3.7319613,19.397568,35.59219,4.264 521,574.83777,265.63025,25.513733,57.29953,4.223 521,-4.3465157,204.45021,15.530097,36.147507,4.217 522,485.47815,171.69118,60.837463,170.28368,95.696 522,248.91223,250.23024,34.98053,76.99696,8.316 522,626.95526,-19.249027,17.578125,49.622993,7.104 522,622.2663,-34.263107,27.37323,78.78779,6.958 522,616.45514,273.79572,22.367126,56.048218,6.849 522,-5.9122906,488.7077,18.85453,41.988464,6.571 522,-11.639242,477.46942,29.419024,63.747437,6.52 522,-5.503128,-16.791529,17.915386,43.72648,6.206 522,238.26633,177.01183,27.744751,73.331024,5.871 522,-10.56972,-32.66915,29.975063,74.63442,5.718 522,584.70667,249.16624,42.492554,90.69246,5.647 522,464.06146,188.29832,61.22534,144.79707,5.643 522,-3.9796653,166.96263,16.22541,35.403458,5.557 522,-17.154976,-62.043373,56.62805,143.4793,5.541 522,613.23016,454.8882,39.328552,106.01346,5.527 522,603.1182,-54.15251,52.729004,136.19756,5.474 522,450.26147,201.5168,42.121094,115.64113,5.466 522,2.6350064,-14.472948,17.659973,41.6872,5.44 522,448.89236,179.10153,30.768127,79.39548,5.379 522,536.09827,309.9278,143.47144,342.086,5.303 522,291.40018,262.75528,33.343506,74.82443,5.284 522,626.9735,489.49643,20.122375,44.342194,5.224 522,-73.11795,265.62213,200.92313,462.53436,5.179 522,412.58487,228.30136,30.605286,63.36966,5.142 522,239.13818,184.57327,50.09091,137.59048,5.126 522,582.60455,411.58478,72.49426,176.94781,5.077 522,-21.393982,403.60352,78.869545,174.22357,4.922 522,92.38899,0.332469,17.795296,29.958889,4.826 522,3.4303892,162.00406,17.006733,32.30577,4.764 522,503.904,240.56445,37.581055,95.11554,4.763 522,-37.69542,-129.99327,117.73612,283.01895,4.653 522,235.93062,180.69391,22.636703,47.02011,4.635 522,494.07413,229.07585,237.88504,511.54266,4.613 522,491.80972,182.81728,38.512543,108.675095,4.593 522,-71.119545,-188.09584,212.49365,455.5642,4.56 522,515.57745,188.60696,58.693542,149.1384,4.547 522,586.76935,-99.81364,73.217834,235.49426,4.42 522,-6.646161,296.8534,18.377304,39.552094,4.416 522,121.418076,223.12344,21.57228,41.33368,4.386 522,604.4084,257.45697,30.010803,69.069275,4.365 522,442.849,39.67011,30.704529,78.46115,4.354 522,421.99127,255.15991,27.107208,62.829895,4.299 522,100.149475,-0.3031025,17.159622,30.629206,4.264 522,203.64093,225.16043,31.974838,60.058014,4.25 522,1.838206,489.17996,20.22965,41.738434,4.19 522,619.12646,-19.206556,17.58319,47.374332,4.167 522,123.76369,211.00568,30.696228,59.4505,4.164 522,117.25361,186.96475,29.40458,62.1734,4.158 522,533.66693,-181.41121,147.57825,419.70065,4.142 522,107.68561,-1.0130672,17.945412,30.100462,4.11 522,307.68945,-14.995678,42.215973,80.20018,4.082 522,-8.83211,170.59772,37.981934,101.151184,4.066 522,137.29454,225.86449,21.544586,39.81749,4.063 522,410.47455,233.83873,21.468811,46.657944,4.059 522,436.5573,200.03044,32.665955,81.788925,4.054 522,123.64122,-3.2523985,18.928162,32.43717,4.051 523,594.81006,156.09134,32.837585,82.51256,8.288 523,-5.1902485,-16.151737,17.580086,42.25764,7.902 523,364.56638,263.79626,37.052124,71.47049,7.763 523,-6.3074007,489.48053,19.222267,41.045715,7.347 523,-11.884183,479.19492,30.106495,62.81131,7.097 523,-10.5919695,-31.0787,29.831196,72.79019,6.948 523,622.40814,-34.039955,27.78479,74.64107,6.658 523,2.8263414,-13.555083,17.08418,40.080257,6.505 523,626.9978,488.5454,20.020996,44.723877,6.342 523,530.3499,276.28232,20.065002,35.06183,6.08 523,522.32996,277.63596,20.264038,34.88217,5.829 523,362.65854,237.49127,32.16623,64.92175,5.421 523,352.6556,182.63745,21.211823,45.85202,5.42 523,390.0708,274.60544,26.135864,55.80722,5.352 523,-17.245552,-62.81906,56.241188,144.66768,5.299 523,538.9855,274.16217,19.189514,34.8508,5.282 523,626.595,-19.920225,18.437012,47.86019,5.277 523,491.10013,-183.07986,234.75143,430.25024,5.27 523,-72.92755,264.95023,200.94577,462.5826,5.261 523,299.779,250.29916,35.752594,63.044434,5.214 523,602.4659,-55.87735,53.646423,133.12424,5.213 523,619.29944,260.7639,20.463623,59.400208,5.208 523,515.4949,279.87247,19.6604,33.434967,5.207 523,547.085,265.53833,19.112122,37.65811,5.167 523,612.6172,455.63934,39.68994,106.23175,5.118 523,330.6366,244.59546,31.626038,70.227905,5.1 523,548.6743,224.58832,30.786987,71.55194,5.096 523,586.1561,-99.58904,74.63025,231.23462,5.033 523,536.9659,310.09125,142.18298,339.7154,4.984 523,586.50256,173.922,32.64618,77.90019,4.975 523,-21.513916,403.1157,78.92934,174.68942,4.901 523,583.72327,266.2397,35.650146,86.69202,4.896 523,374.9264,276.5998,38.15802,72.06766,4.885 523,582.9085,410.9249,72.18866,178.14487,4.864 523,315.2515,248.69653,34.41562,63.496277,4.85 523,235.52412,-3.0887508,19.016449,33.796253,4.782 523,402.61816,270.55792,33.015076,73.562744,4.701 523,234.44365,228.95334,19.867554,37.986145,4.695 523,-37.094955,-128.50742,117.034035,279.69955,4.664 523,241.50586,225.54213,20.375885,40.869003,4.599 523,-0.34721613,270.85443,31.02474,60.65982,4.574 523,593.96265,-44.16347,44.33429,94.19247,4.481 523,219.87642,-2.9350624,18.584503,32.258556,4.477 523,493.54294,228.93872,238.32425,512.8641,4.468 523,359.58707,217.21857,29.621307,65.732086,4.464 523,577.67633,-16.231922,33.414062,63.51409,4.359 523,107.38625,-13.443096,16.069443,36.3376,4.322 523,523.38574,270.59283,31.590271,57.894287,4.291 523,1.9232535,490.2694,19.871935,40.23358,4.286 523,293.09503,236.59506,34.228943,57.90918,4.247 523,227.58788,-3.7500734,18.794647,34.48921,4.234 523,307.74646,223.29924,42.89395,70.67531,4.233 523,565.11786,247.13705,39.871582,77.148865,4.208 523,347.81628,247.49518,34.189484,73.6416,4.208 523,345.64362,239.04326,21.75766,34.725937,4.206 523,619.0046,490.45316,19.820984,41.563385,4.197 523,-70.69401,-188.83011,211.37158,454.75275,4.177 523,365.6448,-38.04788,27.876495,68.89148,4.174 523,243.3006,-3.6603117,19.693329,36.379116,4.129 523,607.2521,153.65887,22.757324,52.001877,4.127 523,617.725,-20.927853,19.534058,46.27658,4.124 523,550.132,258.1558,26.15741,57.681824,4.098 523,176.7374,179.20546,21.76799,30.687195,4.054 523,59.490776,218.26556,54.17736,113.51471,4.051 523,492.12296,-42.99393,56.795013,129.31842,4.051 523,153.34236,231.76254,20.320389,30.744812,4.049 523,580.68915,7.1140366,29.451355,65.99396,4.017 523,-5.7303095,-0.45467186,18.132109,45.54323,4.005 523,1.8842745,218.7264,31.066532,65.66313,4.001 523,523.17786,-42.20079,56.543274,125.596985,3.998 523,348.06827,160.60696,30.80597,70.96864,3.993 523,593.8024,153.8768,45.160034,157.11057,3.972 523,315.61365,228.86955,55.4057,116.94624,3.934 523,222.48047,-33.38176,28.500534,67.03301,3.927 523,168.74489,238.03047,21.816467,27.927292,3.921 524,529.6854,282.59445,35.746155,71.22504,9.516 524,547.2743,282.61746,34.12439,72.37195,6.71 524,-11.353622,-33.814808,30.074923,76.25623,6.484 524,571.84985,276.6537,32.017517,71.89429,6.345 524,198.43544,184.04158,28.128204,74.69023,6.241 524,-6.0299864,489.9216,18.622478,40.85843,6.01 524,623.09644,-34.116627,26.602783,75.02257,6.004 524,627.3611,-17.746204,17.493103,45.60624,5.982 524,499.2945,161.65988,31.333313,65.15796,5.917 524,613.33167,452.9693,39.724854,109.1759,5.843 524,-11.63966,479.1827,29.737387,62.193207,5.782 524,-6.4329143,-18.257338,18.911783,45.964268,5.515 524,621.7585,477.8953,28.921387,67.09024,5.428 524,586.7736,275.51218,33.356445,79.980804,5.404 524,532.8153,-182.212,149.00598,425.05048,5.299 524,224.95566,249.37878,40.39453,75.27533,5.29 524,39.73809,275.9689,25.444183,45.511353,5.171 524,563.7117,203.13377,29.824585,81.23741,5.11 524,-18.037882,-63.61616,56.78807,146.85767,5.103 524,-72.791534,265.56485,201.2371,462.3641,5.074 524,536.9847,309.70837,142.10419,342.33057,5.071 524,613.80597,281.10785,26.74469,85.32739,5.043 524,-21.47718,403.1838,78.76409,174.6619,4.997 524,598.473,275.69177,36.667603,105.36215,4.934 524,506.91043,133.81511,31.518463,74.59711,4.894 524,582.7894,410.41925,72.31952,178.2138,4.893 524,73.713135,178.21344,60.470367,99.158966,4.678 524,84.73321,55.86,32.085762,60.237427,4.662 524,517.8102,283.24988,32.23816,72.634094,4.635 524,54.483585,277.81104,27.111416,44.796936,4.617 524,539.65173,111.72652,29.730225,94.06798,4.603 524,602.8468,-56.810883,53.520935,139.883,4.568 524,-5.674248,278.6908,18.64327,42.100708,4.545 524,493.55594,229.88358,238.43283,513.3579,4.536 524,297.9761,250.30411,37.69046,73.706055,4.518 524,206.36319,251.49243,40.075012,72.78668,4.469 524,0.036365986,264.46375,26.709152,62.320435,4.436 524,186.17511,223.2107,58.805588,121.61725,4.403 524,347.25894,-2.0778933,18.921112,34.90772,4.35 524,584.24805,256.35498,32.005127,68.963806,4.31 524,-5.2545176,122.80489,16.71653,40.102837,4.267 524,-38.01888,-128.71805,119.06697,283.77982,4.264 524,573.7596,268.536,51.24872,143.12103,4.209 524,524.53284,265.08716,32.788696,69.634125,4.207 524,619.38837,-17.55228,17.691406,41.37642,4.153 524,41.730377,-13.222041,18.64898,35.793404,4.114 524,586.16504,-104.47857,75.91162,240.80875,4.081 524,540.865,263.6831,54.17462,130.12335,4.077 524,-14.744995,118.042,48.805737,144.17307,4.046 524,244.72748,248.73997,40.353943,70.89305,4.027 524,68.7571,47.06452,31.300034,61.858948,3.995 524,148.83649,2.8561115,30.403442,60.370743,3.965 524,299.39465,-16.638948,16.597198,38.789104,3.957 524,291.43372,-15.007298,16.891602,37.392223,3.918 524,611.98376,295.90753,37.324463,110.90033,3.916 524,-5.7818365,294.30676,16.725407,38.248108,3.91 524,408.07834,278.85843,38.215332,54.223297,3.91 524,-5.074499,324.72452,16.059465,35.865845,3.906 524,494.83008,179.03024,31.696838,78.68222,3.906 524,-9.896969,58.26287,39.43392,102.650185,3.904 524,496.09937,240.76471,30.301758,63.414368,3.897 524,363.40222,219.73146,32.289276,60.81624,3.879 524,355.3256,-2.5821037,18.900482,36.201843,3.879 524,-70.06352,-186.17395,210.60475,451.2257,3.858 524,571.21814,-17.54399,17.005554,40.72382,3.852 524,-5.2729216,138.65616,16.267742,39.097702,3.828 524,170.72939,179.58481,59.35814,111.000336,3.819 524,187.79242,226.22214,33.51657,53.21289,3.818 524,594.47644,-45.65377,45.0567,100.67561,3.818 524,66.59774,193.68282,43.44204,72.44975,3.808 524,104.6945,216.65233,22.375122,30.980988,3.805 524,370.96768,-2.7317886,19.538147,36.051243,3.799 524,-11.521589,265.29413,29.520117,66.57617,3.798 524,561.5878,141.24664,63.589233,204.7088,3.794 525,585.47156,257.6857,20.539856,60.006927,7.588 525,-5.702053,489.3544,18.239655,40.62265,7.0 525,185.43356,233.17499,21.055511,37.63153,6.667 525,-10.799103,478.33658,28.135536,62.58304,6.338 525,-10.491466,-30.765024,29.518173,71.37086,6.12 525,-5.5316124,-17.299397,18.44511,43.55482,5.823 525,386.0694,210.36432,42.507446,86.86694,5.409 525,566.6145,183.05478,36.481262,76.82547,5.406 525,610.83997,-48.379253,42.2713,101.9389,5.355 525,613.471,452.96732,39.362976,108.844025,5.22 525,557.79254,167.45851,34.971985,67.12129,5.173 525,-17.323654,-63.21365,56.475574,145.15361,5.17 525,-73.114174,266.21014,201.65973,462.299,5.165 525,627.2164,-18.297544,17.536133,47.077694,5.101 525,585.9645,-100.80159,75.20709,235.34993,5.007 525,490.17456,-182.75922,235.15625,428.05234,4.985 525,-17.728325,438.3044,55.153397,138.16934,4.95 525,589.4241,266.18243,28.028381,66.89725,4.917 525,626.43604,487.83032,21.127136,45.85724,4.883 525,2.7358687,-14.286989,18.566282,42.347015,4.821 525,558.29425,258.91754,30.49231,62.508423,4.776 525,138.29984,227.61691,20.508713,31.69516,4.757 525,536.7801,310.30298,142.01727,341.5547,4.717 525,66.06262,-14.642367,18.467255,36.57259,4.717 525,-40.59351,367.6009,110.89461,274.99957,4.646 525,583.24475,409.25195,71.63556,179.17908,4.607 525,-2.6245248,103.03262,27.338318,74.9075,4.606 525,2.741536,490.49017,18.50196,38.754517,4.59 525,397.84085,199.46323,26.761353,73.61368,4.567 525,89.673355,173.30925,58.873703,107.96413,4.504 525,386.91327,-0.5742245,19.312805,33.94931,4.495 525,-6.7343483,292.2465,19.264984,46.130096,4.416 525,493.35266,229.27213,237.95325,514.16174,4.362 525,85.07434,164.02283,39.601334,82.89896,4.333 525,561.37646,122.624756,31.814575,70.00946,4.297 525,416.60156,212.86606,44.024902,88.49646,4.279 525,73.09681,166.30432,20.160347,39.014526,4.24 525,395.3941,-0.0014953613,18.883972,31.76711,4.234 525,395.53125,192.27751,54.927887,116.090225,4.214 525,-37.953682,-128.05826,118.57159,284.78064,4.201 525,106.21307,218.88324,19.42987,28.843048,4.158 525,98.48352,218.0118,19.57911,29.988174,4.103 525,107.40187,287.26035,34.16057,59.478912,4.102 525,347.88513,190.5399,56.85846,120.44496,4.06 525,554.67194,186.59058,35.0235,86.3233,4.047 525,395.13324,-13.749317,16.735931,34.85476,4.045 525,4.8489738,272.15414,31.647924,68.269775,4.029 525,178.45757,228.2268,21.097458,38.84961,4.001 525,57.99984,-16.814074,19.408272,40.320076,4.0 525,379.46655,-0.019187927,19.218079,34.17151,3.994 525,80.058815,241.38676,47.006554,86.877365,3.989 525,403.823,-1.2782488,18.408386,31.688053,3.987 525,336.00714,179.13617,24.798218,38.076065,3.98 525,68.48083,164.01625,40.889786,82.05376,3.976 525,73.47696,200.6959,61.043213,98.242874,3.97 525,122.03239,227.09471,20.358208,27.52089,3.963 525,387.01962,-12.750561,16.83023,34.666992,3.958 525,347.6512,-21.849098,57.55136,125.33774,3.953 525,369.46417,211.2115,43.18683,85.89244,3.952 525,79.4188,288.91068,27.111366,49.8797,3.947 525,126.71589,290.6135,27.829842,52.416138,3.926 525,-11.565618,278.71118,28.764256,70.6828,3.916 525,584.78235,165.73332,35.997192,61.35022,3.898 525,97.95731,179.36018,23.101997,39.309708,3.887 525,17.926716,277.97693,33.162666,63.391907,3.832 525,552.31757,172.38106,26.68158,53.01996,3.83 525,-69.89266,-185.78798,210.7688,450.00464,3.818 525,587.42303,-15.530918,33.409363,62.78167,3.813 525,393.063,229.28423,23.347198,47.823624,3.81 525,371.37903,-0.58867264,19.103333,35.50117,3.809 525,132.78607,225.38622,33.643036,52.399277,3.803 525,-5.6182957,128.12349,18.04099,44.967133,3.798 525,243.50708,223.58484,32.525757,58.259033,3.797 525,201.63734,233.21196,21.233978,38.774307,3.763 525,50.380512,-17.102985,19.115543,41.03503,3.76 525,52.981308,160.14636,38.88736,83.940186,3.754 525,73.30731,43.52526,34.100822,63.361137,3.745 525,99.72539,179.50735,32.17932,65.76503,3.732 525,189.28261,-3.353756,29.795319,64.22929,3.727 525,538.2227,170.59477,31.112305,67.87312,3.72 525,576.6627,231.87398,48.44055,137.55693,3.709 525,157.68741,0.026454926,31.28064,78.48805,3.703 525,220.54414,-15.191433,54.688828,130.33765,3.686 525,403.1982,-13.559294,16.88681,34.171787,3.68 525,-11.162997,121.32828,30.201633,72.0968,3.677 526,390.59586,191.44537,25.681946,73.81781,9.412 526,615.06323,256.59967,23.30542,70.65076,8.721 526,603.7632,165.47153,29.828613,69.416565,7.242 526,613.2756,452.13806,39.619446,110.00818,6.857 526,-5.9592304,489.5333,18.636337,41.00522,6.79 526,-11.308041,477.45963,28.760818,64.17032,6.375 526,534.9758,198.08102,26.7417,71.28836,6.205 526,-11.208626,-33.617264,29.949121,76.8172,5.507 526,622.5181,-34.253796,26.828247,76.453926,5.486 526,627.2151,-18.576942,17.533203,47.05628,5.482 526,-17.37592,-63.813915,55.910534,149.32726,5.41 526,379.39175,-0.9154396,18.042572,34.241043,5.409 526,613.3234,182.97963,27.73529,88.60924,5.233 526,371.50238,-0.9555664,18.313904,34.989193,5.122 526,600.53595,253.59845,34.763733,90.53961,5.056 526,-73.492035,266.16815,201.72952,461.40692,5.01 526,582.97107,411.20535,72.083374,177.07016,4.941 526,585.92615,-101.951836,75.48773,235.46869,4.937 526,490.19537,-181.58572,234.52026,426.40918,4.925 526,-21.741867,402.69904,79.375404,174.96771,4.923 526,626.3067,486.85916,21.27118,47.15976,4.915 526,-5.729472,-19.53701,18.757479,47.80151,4.894 526,145.99652,219.89069,33.67987,59.088776,4.893 526,380.6349,182.09015,54.538727,108.221466,4.885 526,536.42883,310.11786,143.01831,341.32257,4.877 526,363.8765,0.20892715,18.466583,34.021027,4.82 526,602.8451,-57.120808,53.037964,137.52551,4.807 526,386.8224,222.1057,33.2381,63.527634,4.622 526,371.3753,197.80156,43.133118,81.843155,4.565 526,507.61368,209.61871,57.40518,99.87695,4.541 526,170.77638,221.89368,33.5327,56.246155,4.524 526,387.77185,-1.5235615,17.93097,35.097244,4.443 526,356.20868,-0.10113144,17.806458,34.389175,4.415 526,353.11902,198.14658,44.17206,79.53592,4.385 526,493.4862,228.3711,238.38037,514.0109,4.384 526,84.3251,203.77061,33.378372,57.461014,4.33 526,615.3495,162.06015,22.388794,57.818848,4.307 526,395.64984,-0.8463421,17.995361,33.202133,4.305 526,97.23726,224.25638,35.23407,53.26059,4.297 526,-4.5252504,155.14188,16.782017,38.58943,4.284 526,156.5172,-35.660084,28.94246,74.71294,4.274 526,348.4124,0.22081757,17.51651,33.341118,4.269 526,29.362656,204.4759,29.494545,49.6799,4.269 526,-37.608696,-128.59927,118.70096,282.73553,4.213 526,565.88416,-3.7650986,31.294556,63.76264,4.157 526,329.73407,-35.5976,60.483704,124.58049,4.149 526,603.8436,245.39305,16.325989,32.940445,4.147 526,587.61096,170.49759,35.056213,75.33913,4.13 526,555.591,-12.994694,33.204163,64.706894,4.102 526,546.00195,215.74863,28.726013,65.0488,4.085 526,488.38428,189.87498,60.52466,108.48848,4.062 526,594.32715,-46.54941,44.78131,98.16879,4.029 526,1.6967481,-19.486486,18.75967,48.759544,4.026 526,611.34503,250.29288,16.536987,37.784668,4.016 526,619.20825,-18.710741,17.993591,44.137466,4.001 526,197.19748,2.8674583,33.42563,91.373856,3.991 526,597.20374,183.32321,32.87085,85.22015,3.97 526,2.213539,490.49234,19.163805,39.51938,3.953 526,321.40906,179.41447,22.396545,39.58174,3.953 526,-4.84198,122.006424,17.346676,42.09337,3.949 526,-4.2645926,186.13657,15.753874,40.06534,3.906 526,530.3712,229.10657,42.845825,70.106384,3.882 526,340.3084,-0.91228104,17.620392,34.628376,3.877 526,81.044685,217.12863,22.759262,32.55417,3.841 526,572.0834,247.72876,17.997375,37.42157,3.84 526,557.45483,199.27858,30.072815,67.20302,3.83 526,401.4995,199.26169,41.847076,84.10562,3.827 526,-14.772436,182.57196,48.88465,137.01514,3.808 526,491.01163,297.02264,33.58316,62.909424,3.806 526,41.90934,29.196579,32.717903,65.55007,3.781 526,541.2119,212.66753,54.402405,100.46175,3.78 526,620.8338,171.09357,28.443665,74.489685,3.777 526,473.7008,228.17697,34.843506,51.619324,3.775 526,613.8281,267.17017,35.41327,104.04697,3.756 526,362.8189,-32.693535,58.9234,124.3775,3.728 526,75.48299,33.04835,32.262436,55.322758,3.723 527,-6.32726,489.8417,19.210266,41.104706,8.701 527,-11.498084,480.64362,30.256329,61.348938,8.061 527,613.31305,452.40182,39.44702,109.212555,6.974 527,377.89545,178.8,28.366425,75.05797,6.809 527,598.1559,133.09874,28.23059,83.2379,6.746 527,-3.309558,143.00294,15.022524,36.14543,6.03 527,-11.057436,-31.127102,29.710037,71.74685,5.977 527,-17.681614,440.8315,55.590168,135.59525,5.878 527,627.0861,-18.970139,17.937012,47.35234,5.859 527,-17.145477,-61.905357,55.86789,145.12674,5.752 527,-5.6656384,-17.428314,17.459303,43.25617,5.732 527,626.46106,487.17242,20.847534,46.65094,5.507 527,610.6652,-47.894283,42.225098,100.00778,5.39 527,586.5817,160.51318,31.688416,73.31247,5.04 527,489.4574,-181.41937,235.23999,427.12173,5.015 527,-39.96045,369.83728,109.75574,273.72864,4.901 527,-73.162224,267.0357,200.90732,460.1828,4.885 527,1.774658,491.1186,20.1081,39.501648,4.824 527,585.69714,-101.9371,75.955444,236.38792,4.818 527,536.4587,308.9512,143.21478,342.93967,4.78 527,582.98395,411.03644,71.73151,177.21436,4.777 527,-5.1150155,477.32968,16.61713,35.009125,4.739 527,347.247,-1.5707836,19.690125,35.194054,4.722 527,13.297763,140.39551,54.37842,113.39058,4.695 527,-37.54236,-126.74007,118.664505,280.6204,4.589 527,539.5021,204.9966,54.56482,102.25481,4.566 527,588.91455,57.923042,29.84082,78.2243,4.487 527,473.19226,226.73384,35.869293,51.584274,4.467 527,3.9919019,148.53255,15.935055,32.663788,4.441 527,-14.267588,125.350296,47.90155,138.00475,4.396 527,300.5228,0.5015602,17.260254,30.19181,4.389 527,493.90222,228.2558,237.57904,515.65784,4.387 527,364.23486,171.82573,56.275513,115.81178,4.378 527,617.853,138.47226,20.643188,60.617676,4.354 527,34.455776,154.09894,40.918865,86.53395,4.299 527,2.3324394,157.17514,19.425598,47.566788,4.292 527,347.79633,-18.032772,56.343445,122.75415,4.281 527,106.09088,203.79407,33.06772,64.7865,4.269 527,245.85077,-33.624104,28.975433,73.99139,4.266 527,4.885744,470.74127,38.939575,90.55145,4.264 527,37.522377,98.67367,27.764885,68.888954,4.209 527,455.79016,226.85953,36.014465,55.1333,4.18 527,35.36645,15.4452095,31.801014,61.952663,4.161 527,262.32886,-34.237362,27.931519,70.237915,4.157 527,622.6492,129.16415,25.547241,76.259705,4.127 527,586.08154,-19.539547,34.68097,60.429256,4.114 527,13.247311,-11.482132,54.018658,122.86911,4.106 527,583.43195,196.49698,38.459045,84.92865,4.022 527,315.51315,-1.0190449,18.957916,33.16635,4.02 527,618.2715,489.05438,20.889648,43.221497,4.007 527,435.7155,-15.617624,16.483154,35.366676,3.992 527,-4.6577997,412.60483,16.285484,37.370758,3.966 527,346.6356,-15.309299,17.667938,36.806362,3.964 527,617.66174,277.45752,21.433838,47.356537,3.934 527,0.21576762,7.371971,27.92979,65.20738,3.893 527,563.8758,-32.700054,30.792114,70.57937,3.886 527,573.6769,172.85268,28.661743,72.12048,3.876 527,426.5451,3.7428417,20.99701,38.73207,3.861 527,597.0368,458.93127,39.733032,102.15094,3.842 527,618.7881,-19.844263,18.675415,45.40199,3.835 527,308.123,-0.13276196,17.69394,31.880394,3.827 527,364.63455,199.91557,31.718475,67.304214,3.809 527,315.53174,-13.629921,16.304932,34.722942,3.807 527,427.48145,-15.618256,16.508911,36.116,3.805 527,22.075607,159.43701,30.022903,50.27127,3.802 527,548.0868,190.87521,29.452332,70.96011,3.793 527,337.12772,194.14282,44.24832,84.9332,3.783 527,257.56833,-19.219286,20.073639,43.54855,3.78 527,-4.3046846,164.99568,17.115055,45.953094,3.772 527,249.56686,-20.146534,19.96466,44.50213,3.752 527,505.2135,202.97462,59.81366,109.22771,3.746 527,380.8335,-19.148586,55.250458,126.290054,3.738 527,617.1963,175.40802,23.975647,87.00906,3.734 527,411.00946,-16.350258,16.979462,37.609962,3.713 527,-11.94178,431.182,43.27967,90.2464,3.684 527,436.22675,-2.5090418,18.352875,34.73685,3.68 527,134.39127,-35.452747,28.350708,73.57263,3.676 527,294.97888,155.55685,30.72116,53.519287,3.674 527,354.90585,-1.355547,20.076935,35.883385,3.667 527,619.2909,240.87756,18.884827,39.772766,3.666 527,379.2184,214.41861,31.425873,60.773346,3.66 527,360.07388,224.72485,24.828827,45.155823,3.656 527,-8.404581,137.97404,25.873198,62.84526,3.648 527,42.114258,135.24895,57.517868,111.95677,3.627 527,2.4759774,479.04727,17.41266,31.993103,3.625 527,476.3117,3.851798,16.662506,28.835659,3.621 527,11.056854,12.164051,32.10573,64.95201,3.62 527,-70.36983,-188.96924,211.19089,453.48987,3.619 527,443.7561,-1.3370838,18.612549,33.64274,3.613 527,-4.5897703,123.50627,15.783263,38.481293,3.612 527,2.9026294,-15.091681,16.776405,40.372707,3.61 528,374.4841,170.47353,29.342987,79.090744,10.45 528,-6.173687,489.47153,19.064034,41.249176,8.026 528,-11.277008,478.82675,29.134733,63.366486,7.747 528,-10.707345,-32.079334,29.585007,75.819664,7.358 528,622.6919,-32.997883,27.262024,74.55953,7.01 528,-5.4855685,-17.368202,17.898586,44.50841,6.293 528,621.3226,475.41678,29.888306,69.11929,6.042 528,1.8793976,161.96756,20.726788,42.46956,5.742 528,555.9701,160.53123,31.187866,86.20976,5.516 528,73.2863,217.37202,32.97045,66.26451,5.507 528,626.9264,-19.328259,18.008057,48.208042,5.35 528,583.2788,413.64978,71.1936,173.75793,5.254 528,2.313453,489.74573,19.497513,40.016785,5.193 528,-17.151562,-63.326435,55.983418,142.93697,5.167 528,602.7439,-56.037624,53.520508,134.01517,5.056 528,489.48254,-181.41214,235.58734,425.99927,4.929 528,-72.596596,267.1395,200.18814,459.80325,4.92 528,535.8965,309.74646,143.96643,342.45593,4.911 528,2.8154504,-14.746781,17.491795,42.821346,4.883 528,-39.67293,369.20422,109.13658,275.42175,4.846 528,585.7528,-102.126495,75.56,236.57321,4.774 528,61.270866,213.38147,31.83886,70.07135,4.742 528,1.9166648,92.08356,21.894718,50.384125,4.726 528,-36.915634,-129.05237,117.5174,284.71268,4.61 528,-17.978064,437.0978,55.290726,139.02542,4.596 528,494.13608,229.79636,237.86069,514.8794,4.586 528,44.514732,144.46172,31.669228,53.453934,4.559 528,78.30043,213.94055,24.368042,43.983032,4.519 528,618.382,-8.073669,21.076843,44.460865,4.518 528,366.00095,153.58246,52.33966,121.10986,4.492 528,-3.296702,150.89757,15.822838,36.28679,4.469 528,-14.000776,127.18347,48.85292,133.6059,4.452 528,-4.9752045,165.65596,18.64073,42.18309,4.392 528,578.6825,238.96158,42.918213,89.46445,4.347 528,572.0933,221.15921,32.68396,51.332733,4.312 528,577.0562,-2.4322176,22.831726,36.14164,4.307 528,593.37573,-43.780197,45.903748,95.65344,4.286 528,617.99493,486.95074,21.38147,45.281677,4.286 528,356.67435,-3.6097755,31.244171,65.55327,4.279 528,-5.423081,102.68893,18.185408,44.874275,4.259 528,4.072013,-5.4971733,29.540249,67.943306,4.257 528,-3.5260181,132.53183,15.023492,38.1214,4.232 528,331.60718,-31.925936,57.89026,122.509476,4.192 528,593.33655,489.28683,21.69165,42.347626,4.186 528,477.20404,-10.141663,56.338135,121.43989,4.182 528,491.40063,-11.095178,15.309601,33.841515,4.175 528,613.34393,-20.789417,29.556519,70.84623,4.165 528,10.450027,120.717514,55.470123,113.439224,4.161 528,-5.4847693,75.81872,17.995142,41.032036,4.106 528,330.17535,172.9962,59.05304,115.16298,4.075 528,315.01767,-1.2601929,20.30951,34.716087,4.036 528,573.66016,-32.97444,29.944885,68.273575,4.015 528,299.2201,-33.264633,58.19809,121.8217,3.994 528,2.2062325,-23.67101,49.49661,135.47464,3.95 528,586.2287,-14.772536,33.975708,57.878563,3.947 528,6.5044928,91.524475,26.663548,71.05759,3.915 528,-8.893019,372.94348,38.336906,110.765686,3.913 528,585.8604,276.59534,36.148865,60.287018,3.902 528,612.6301,438.5423,40.094788,95.78882,3.901 528,583.56635,230.10004,25.106506,36.61554,3.851 528,-4.8604145,1.1092167,18.023628,44.230316,3.847 528,266.86993,-31.452988,58.851013,124.79928,3.844 528,-70.869354,-189.40976,211.97122,454.43387,3.834 528,-15.053923,55.294678,50.27752,144.14156,3.81 528,356.46378,203.81157,31.271942,66.314224,3.792 528,386.6131,168.32121,27.806702,79.99565,3.792 528,3.8668573,143.28145,36.96355,90.956894,3.782 528,68.21055,197.15187,32.35441,66.83586,3.77 528,330.42468,-2.9382372,20.345215,36.64893,3.762 528,601.9361,489.9229,20.62024,41.527405,3.759 528,-9.217883,-6.513584,39.675632,100.43999,3.745 528,362.29385,-32.441154,58.85501,127.26512,3.738 528,491.4297,1.7207689,17.475159,30.916405,3.737 528,3.3782232,485.6733,31.270184,54.85501,3.735 528,-9.907301,84.29477,28.0681,67.10957,3.726 528,464.69513,220.96532,34.477417,57.10869,3.715 528,340.51923,-4.014969,32.1091,66.67818,3.714 528,155.37662,214.52148,32.054993,55.20587,3.707 528,283.74722,-14.79858,16.114105,35.43747,3.693 528,288.65424,154.24554,25.699371,43.843613,3.68 528,544.28217,249.4697,44.91266,97.65158,3.678 529,119.537964,156.86102,27.277283,81.056854,8.983 529,-11.242809,477.89062,29.23395,64.225586,7.783 529,-6.1763077,488.84137,19.01484,43.34198,7.657 529,573.1681,151.78989,32.419678,92.09421,7.586 529,626.70215,486.2048,20.286316,47.836823,6.848 529,613.2656,452.93353,38.557434,108.12067,6.471 529,573.78143,123.95607,52.924255,144.36217,6.298 529,-5.7575626,-16.310375,18.318916,44.72199,6.297 529,231.1636,228.43433,25.505768,41.59308,6.29 529,622.31866,-34.01499,27.51532,75.00579,6.115 529,-10.124111,-32.40595,29.672777,77.49082,6.103 529,375.95456,167.0733,29.196808,86.37262,6.1 529,627.0248,-19.074745,18.128052,46.710472,5.974 529,215.12602,227.16553,24.311295,39.07907,5.801 529,1.9232196,489.31732,19.469276,42.776306,5.591 529,-72.731445,264.92413,201.07285,461.60004,5.226 529,-17.656744,-63.45763,56.95778,142.919,5.21 529,-16.711302,437.3137,54.432465,139.34976,5.105 529,602.58923,-56.382133,53.570557,134.14705,5.083 529,489.2638,-181.20943,236.42108,426.44836,4.972 529,1.001693,151.65848,20.635489,56.163452,4.937 529,583.43823,412.18524,71.43103,175.83295,4.79 529,-40.032883,366.30878,109.99737,279.24005,4.737 529,585.9594,-102.13589,75.770386,237.27591,4.731 529,200.18286,218.44931,27.663956,54.388855,4.615 529,-36.9046,-129.89813,116.88469,285.81454,4.58 529,536.91864,309.53094,142.5423,342.96295,4.572 529,-8.028707,171.92053,27.217495,80.76958,4.547 529,556.6495,150.08609,32.717834,94.66138,4.484 529,593.7071,-44.064354,45.4245,94.90938,4.452 529,179.77884,224.19592,31.50502,51.71884,4.448 529,168.73183,491.5642,22.301468,39.190002,4.425 529,-5.454609,149.52225,18.125643,46.8658,4.404 529,99.16587,237.85939,32.535255,66.170456,4.397 529,4.8562136,147.72256,28.694592,83.036606,4.393 529,241.33879,224.34093,34.332596,51.781937,4.378 529,9.623869,491.82382,20.656052,39.624237,4.359 529,427.2022,-12.0165615,32.694275,56.36944,4.321 529,116.704445,87.5412,32.57464,87.49283,4.318 529,299.8945,-2.3482304,18.694305,34.066578,4.313 529,351.83273,157.35275,53.26001,120.41611,4.291 529,426.3537,-0.635622,21.02887,34.27025,4.287 529,1.4990336,-14.63381,18.087381,44.2471,4.285 529,18.060015,491.3295,19.960615,39.358185,4.279 529,-5.388566,179.40234,35.155167,108.6427,4.272 529,291.1552,-3.5092793,19.220917,35.165977,4.233 529,177.15746,477.02707,19.708298,32.61441,4.217 529,-5.3721685,70.111244,18.915459,46.484886,4.215 529,210.8664,202.42752,41.868744,71.15109,4.199 529,488.79266,227.44421,34.713684,53.255737,4.178 529,360.92462,234.11882,23.218628,40.157455,4.145 529,210.0148,231.00926,44.510666,72.352005,4.134 529,-70.56306,-188.63898,212.17395,454.77008,4.096 529,494.04913,229.96185,237.42682,513.3572,4.081 529,152.98848,491.91687,22.168991,39.996094,4.079 529,194.16202,475.48465,19.574097,34.87326,4.078 529,475.41608,-1.1807957,19.029144,35.205948,4.077 529,220.02702,-11.17197,54.78862,116.03447,4.074 529,458.53192,3.3530045,20.669586,38.810387,4.059 529,524.6551,-12.696804,31.241882,64.36132,4.054 529,305.1913,490.74258,21.78595,40.384552,4.049 529,282.44067,-3.455018,19.975891,36.03627,4.047 529,167.70667,180.60524,60.26805,105.14909,4.006 529,-2.4062073,7.445305,26.139242,81.583305,4.004 529,597.34766,148.74313,30.41986,67.80472,3.965 529,539.3477,-14.115917,32.057556,66.40503,3.942 529,-5.3812,456.63342,18.164822,44.74173,3.887 529,6.2109447,215.56729,30.6964,81.44214,3.882 529,0.27348757,433.3474,25.001589,76.476166,3.881 530,373.96906,136.75334,28.117004,89.7527,8.573 530,-6.024829,487.61655,19.262793,43.570892,7.505 530,-11.407752,476.2715,30.054432,65.36545,7.008 530,-10.929951,-32.700058,29.887503,74.721436,6.821 530,613.09174,454.48264,38.675232,107.16824,6.567 530,-0.27872682,211.1988,25.031363,69.26567,6.524 530,606.44885,184.9613,28.728882,85.64282,6.287 530,-5.9426823,-17.410444,18.50197,44.387585,6.231 530,373.899,175.3054,31.924225,86.61873,6.216 530,626.8751,487.963,20.505798,45.775085,6.211 530,622.16486,-34.19721,27.996399,76.495514,5.995 530,627.0487,-18.925404,18.074585,46.958096,5.614 530,351.89752,147.94582,52.476532,140.54558,5.545 530,92.50386,172.14558,30.970398,77.16225,5.5 530,-17.832499,-63.987694,56.570427,142.29956,5.138 530,602.87775,-55.027435,52.894287,134.41592,5.077 530,-17.245169,435.46158,54.845047,139.44858,5.007 530,585.8649,-100.67389,75.73364,233.63318,4.966 530,488.88727,-179.52637,236.58893,425.5858,4.893 530,-72.87381,266.3538,200.36258,460.87167,4.828 530,4.9698973,-35.73642,29.367275,77.17454,4.827 530,-36.28331,-129.60791,116.617935,283.9321,4.806 530,583.5994,412.2962,71.114624,175.84637,4.771 530,565.28455,209.38663,29.534424,67.135956,4.748 530,588.201,160.8189,30.820679,84.23909,4.68 530,1.6870695,-16.968948,19.059433,44.575382,4.668 530,619.2009,489.25278,19.694824,43.337433,4.652 530,-39.80247,369.05353,109.56261,275.36804,4.64 530,2.2183633,487.2675,19.842974,43.46585,4.629 530,283.1968,-0.105134964,19.263184,30.498991,4.629 530,377.85754,145.487,52.53119,140.19794,4.625 530,536.83203,310.33105,142.47095,341.60754,4.554 530,-9.165755,223.85056,27.388779,74.03522,4.481 530,532.5559,233.43416,33.315002,50.922073,4.396 530,386.9664,133.2593,39.34671,99.26076,4.39 530,515.67163,231.08096,32.445312,50.305115,4.366 530,612.61127,-21.582666,29.59967,73.341736,4.347 530,152.8035,-0.92038536,20.906647,36.174644,4.301 530,-4.5522795,228.18074,18.623463,47.24742,4.277 530,365.26697,200.76126,31.402222,75.332,4.227 530,386.9235,186.18932,29.617401,78.46687,4.209 530,-71.071304,-189.30243,212.38023,455.11572,4.183 530,11.262732,221.68735,30.785566,67.48117,4.159 530,331.53824,165.24309,57.88907,131.77095,4.142 530,433.71185,250.07732,20.391296,35.30275,4.124 530,475.58258,-1.8920765,18.33545,32.548798,4.11 530,494.3427,229.7543,237.2547,514.1222,4.1 530,594.1675,-42.857117,45.285095,95.41306,4.075 530,291.4449,0.043787003,19.118713,30.713839,4.07 530,256.9319,490.31555,22.292664,41.44214,4.053 530,299.64197,-0.78948116,19.212372,30.609917,4.049 530,340.39423,-6.1691723,31.611755,68.17132,4.041 530,539.45416,197.47815,57.971313,109.767944,4.035 530,121.057655,491.0505,21.855446,39.581635,4.028 530,2.4861312,156.20258,20.00291,39.50769,3.988 530,-10.140413,-6.411968,40.70507,100.97911,3.963 530,495.58807,230.25594,35.61725,58.1537,3.937 530,131.36874,-0.9531174,33.687134,65.93548,3.935 530,358.11444,217.47995,30.107788,69.7511,3.932 530,618.4309,-19.24754,18.603882,44.956352,3.918 530,440.39417,253.56682,22.026672,33.60164,3.91 530,427.07495,-15.0554905,16.680359,36.036865,3.893 530,577.65875,169.3126,49.538086,124.785904,3.883 530,269.55106,146.12529,30.335907,57.100357,3.878 530,74.54905,20.148178,32.6698,78.54575,3.878 530,145.3063,2.2969341,33.3078,56.10087,3.873 530,75.84159,-1.9640102,31.803917,66.13843,3.865 530,590.2969,190.26953,48.992554,137.281,3.863 530,357.2266,68.268295,30.361908,69.76631,3.859 530,3.9104855,234.35793,30.077341,76.35826,3.837 530,393.04248,491.2387,22.435364,40.397217,3.787 530,0.6689918,429.72464,26.357939,69.34006,3.782 530,545.7888,492.20633,20.932983,38.835052,3.776 530,428.07703,-1.2975397,18.256653,33.62908,3.775 530,491.93182,0.01687622,18.327759,31.76326,3.772 530,419.18475,-14.24543,16.720459,36.313526,3.769 531,-11.326517,479.49045,29.084557,62.649506,7.473 531,-6.194581,-19.866508,19.291222,46.829792,7.206 531,-10.895538,-33.34762,29.51445,73.286865,7.088 531,-6.0962095,488.9478,19.028027,41.979187,6.724 531,622.1876,-34.016285,27.71814,75.06153,6.319 531,626.6847,488.45245,20.185913,46.440002,6.16 531,398.571,174.88103,30.730255,86.05766,6.028 531,612.32837,456.12418,39.453735,105.879425,5.863 531,626.9698,-18.436493,17.800415,46.42208,5.855 531,618.42755,177.9454,19.006165,55.981903,5.605 531,-17.924463,-65.369225,56.333458,144.05696,5.455 531,582.83325,414.42145,72.02179,174.14062,5.039 531,-73.528534,264.97626,201.2931,461.97906,4.979 531,585.92236,-101.387314,75.84955,235.64104,4.946 531,412.31964,1.8280888,18.18097,31.854033,4.937 531,488.9694,-179.40479,236.29916,425.51132,4.927 531,602.7039,-56.590282,53.79059,134.32567,4.869 531,93.04013,181.09532,32.081985,74.17589,4.85 531,-36.547024,-130.78328,117.08046,285.59406,4.822 531,0.18388867,225.60284,24.87025,69.832214,4.711 531,-21.761147,402.46667,79.34456,175.526,4.685 531,388.99426,132.09341,28.98938,78.80238,4.572 531,537.0013,311.23212,142.09998,339.26764,4.512 531,604.746,159.49478,27.817932,84.053314,4.508 531,2.0015411,-20.61887,18.825424,47.686634,4.421 531,299.4263,487.56613,32.611053,56.643402,4.394 531,-71.34083,-188.97838,212.56094,455.34338,4.355 531,283.42578,487.0457,32.804718,56.962433,4.351 531,411.28998,-12.297574,16.548126,35.558582,4.332 531,594.0624,-45.93161,44.90265,96.89049,4.249 531,2.1858966,489.77988,19.495245,41.239105,4.236 531,418.92725,-11.286463,16.321472,34.71079,4.179 531,571.5716,190.98378,55.342285,118.63219,4.164 531,494.6955,229.275,237.1336,514.0305,4.144 531,457.2835,257.16687,21.219177,36.915924,4.116 531,268.15717,-0.77666664,31.215942,54.552544,4.073 531,475.43613,-1.7946224,18.620422,31.61079,4.072 531,-10.426778,-7.512501,41.036015,102.82735,4.055 531,278.49124,148.2438,30.504242,57.323166,4.054 531,523.59753,-2.1610537,18.273438,32.237446,4.03 531,499.10126,-4.0653477,19.38623,35.63317,4.008 531,624.59546,161.71855,23.690125,74.49754,4.005 531,92.92558,-13.059986,54.71495,120.373856,4.003 531,357.208,-6.900963,32.021454,67.57217,3.975 531,511.98743,493.77222,23.089844,36.678223,3.972 531,10.315945,-21.616276,60.35236,142.2069,3.904 531,491.27502,-2.6785927,19.223969,34.391537,3.903 531,191.5788,156.0813,23.53917,39.587692,3.898 531,614.45575,186.29561,25.256226,84.18553,3.868 531,153.25905,-16.961512,18.95848,40.31729,3.868 531,5.239036,-37.356747,29.203773,81.81629,3.854 531,618.7428,-18.345238,18.570496,43.610355,3.83 531,378.3054,239.87581,32.68463,61.558395,3.826 531,507.45734,-3.7784157,19.524231,34.37599,3.82 531,427.33704,-12.689428,15.713654,34.700302,3.806 531,157.05211,-33.35437,29.398254,67.15329,3.804 531,383.2655,142.39041,50.88791,147.2887,3.798 531,161.94916,-16.007309,18.55017,37.607548,3.797 531,577.20776,120.85281,51.992065,134.93842,3.783 531,619.095,490.30673,19.81958,43.009674,3.775 531,251.83249,-17.346317,56.843292,123.56595,3.765 531,574.35297,-26.84761,53.634644,134.46474,3.764 531,258.0106,150.68298,20.45044,36.48073,3.75 531,-4.962587,230.80637,18.642014,47.308228,3.747 531,490.84854,-16.264702,17.408234,37.367096,3.743 531,125.067276,-17.20977,53.776993,117.86353,3.684 531,267.55292,487.63394,33.141266,56.633514,3.672 531,504.7612,486.99756,21.397552,29.553955,3.636 531,612.8232,221.98987,36.90094,103.240295,3.631 531,331.04565,-16.621984,17.00827,37.140274,3.628 531,88.947334,194.18492,58.39884,125.074234,3.624 531,524.7958,156.41974,29.613464,72.8407,3.62 531,467.68323,-1.3686724,17.555237,31.468155,3.619 531,528.7351,492.34344,22.575684,37.91278,3.616 531,315.57068,487.08374,32.481018,56.581543,3.607 531,115.234825,-15.979368,42.598198,84.38377,3.604 531,145.6626,-16.648867,18.67511,42.57671,3.598 531,157.70706,-18.193966,54.449005,119.07225,3.596 531,283.4831,-12.215111,34.061737,60.147324,3.584 531,-1.9189394,81.39671,29.369886,78.07796,3.581 531,60.426865,-10.300983,55.378113,123.31189,3.574 531,152.29907,-2.914278,22.554108,38.28376,3.573 531,2.0095139,172.27705,19.760027,40.101135,3.568 531,404.4591,0.09602547,18.139648,33.36405,3.544 531,324.94785,230.84605,30.091827,61.580307,3.539 531,562.1957,490.35904,20.210754,40.672516,3.523 531,554.15546,491.4304,20.388489,39.648224,3.521 531,413.7158,-31.547556,27.567749,69.39747,3.516 531,56.642982,187.02701,60.636986,126.555176,3.515 531,514.2651,482.57565,18.974915,25.779083,3.508 531,213.73572,153.90172,31.001862,54.08751,3.495 531,586.5894,491.27075,19.45227,39.137573,3.495 531,521.0662,486.63776,20.905457,28.817505,3.49 531,276.7181,245.65797,33.654114,56.34648,3.49 532,193.21988,176.51892,32.55374,83.72928,7.387 532,-5.6119413,-15.686106,18.15921,42.11168,7.209 532,35.68655,235.58691,28.82291,76.11487,6.586 532,-10.885675,-32.840553,30.323177,76.020454,6.48 532,626.5054,487.8651,20.39215,47.005676,6.338 532,627.3823,-16.934826,16.914917,45.47881,6.333 532,-6.224885,490.52292,18.77294,40.869537,6.058 532,251.49567,-12.6298275,16.120636,36.374935,5.775 532,622.2499,-33.057606,27.307007,75.31892,5.505 532,-11.593255,480.35495,29.400665,61.246063,5.32 532,-17.04953,-61.674225,56.04348,141.60591,5.247 532,11.860843,-13.22971,56.65687,130.24663,5.228 532,3.908149,-3.0207481,30.886612,73.37106,5.167 532,585.3952,-102.55501,76.43707,238.36794,5.134 532,613.09143,456.7479,39.08783,104.3981,5.116 532,259.85934,-12.245488,15.463348,35.164356,5.076 532,524.38226,2.26622,16.415588,31.577534,5.01 532,619.55457,-2.3618374,18.331848,38.15364,4.96 532,602.7575,-54.479595,53.240906,137.36739,4.957 532,-73.12973,265.642,200.62946,461.6445,4.914 532,582.99536,411.68597,71.943665,177.05743,4.905 532,-36.737762,-129.66263,117.687126,281.3786,4.807 532,489.55475,-179.1803,236.6825,424.1277,4.731 532,-21.75827,402.09784,79.393005,175.43451,4.716 532,267.51062,-12.594182,15.867371,34.61496,4.704 532,596.34735,0.46926308,17.70337,32.04992,4.692 532,536.91614,311.18262,141.78796,339.81873,4.679 532,492.1356,1.0490208,17.654388,33.272095,4.543 532,604.2563,0.8602543,17.603516,31.36305,4.537 532,-71.126114,-189.84134,211.92087,456.50546,4.506 532,267.5015,0.41404533,17.855225,32.373528,4.499 532,24.525574,171.17589,23.32822,42.382065,4.455 532,540.61646,3.3929777,15.709961,28.584976,4.392 532,516.2359,1.1418343,17.033325,33.92432,4.378 532,233.30219,-0.562727,21.397964,37.018036,4.331 532,618.2398,489.6466,20.56903,43.445007,4.329 532,242.03711,-0.17979431,19.536133,35.97716,4.318 532,40.837482,5.839306,33.77901,70.85469,4.31 532,-10.776363,17.46003,28.539095,73.4582,4.28 532,29.769571,2.1799507,31.651041,60.69314,4.267 532,444.11636,131.36124,27.954865,64.462906,4.239 532,500.02286,0.37763596,17.234467,35.629814,4.219 532,611.51685,1.6230316,18.404785,32.664207,4.216 532,-5.734296,23.833643,18.712753,46.330276,4.205 532,539.9201,-10.610187,14.89209,31.382393,4.172 532,606.313,-32.34793,27.655212,69.557175,4.161 532,204.11319,220.30522,27.36081,70.405655,4.145 532,555.98315,3.0544682,16.07434,28.180096,4.138 532,493.88736,227.68909,238.14505,514.7075,4.113 532,2.242897,-13.752002,18.677769,41.853405,4.099 532,598.882,126.31944,38.32379,106.36781,4.07 532,-7.0195284,215.48271,36.45512,104.07759,4.06 532,77.19649,231.94847,30.247055,63.61992,4.041 532,570.698,270.2766,19.973022,33.49814,4.029 532,532.6293,2.81102,15.689758,30.434925,4.024 532,508.18356,1.191145,17.139679,33.9655,4.023 532,-5.5189724,302.13596,17.904959,43.79068,3.997 532,-5.4037085,168.62769,17.661419,42.64624,3.993 532,-4.734606,149.33415,15.297474,37.80078,3.991 532,523.8419,-11.178591,15.282593,33.671364,3.982 532,614.3059,-16.93973,28.332336,65.65531,3.952 532,603.6024,-14.050007,15.932861,35.70738,3.922 532,46.067314,3.1783218,24.583534,45.674187,3.92 532,614.6249,114.67172,35.63867,103.7012,3.918 532,366.58032,144.49033,30.652832,58.300827,3.913 532,531.9126,-9.988322,15.196838,31.60817,3.886 532,2.179402,167.09355,20.123669,45.468918,3.883 532,454.12866,133.79079,28.77069,68.88159,3.858 532,260.2511,488.4894,31.105469,54.822723,3.852 532,571.41187,6.799467,18.688904,34.728195,3.85 532,541.0554,-16.499737,54.875427,124.42685,3.848 532,611.57544,-12.626277,16.440247,36.065815,3.844 532,373.78223,252.39345,31.993347,52.442734,3.827 532,134.95714,0.36569786,23.644226,46.78723,3.804 532,12.477293,-32.33249,28.899935,75.444534,3.788 532,-6.3065634,-1.6226597,20.13196,48.22841,3.782 532,-11.280379,156.84851,28.879673,64.79477,3.777 532,470.61517,132.68475,29.978241,75.04544,3.774 532,393.6471,252.43845,20.445465,38.43228,3.769 532,588.27765,0.49470615,17.812256,31.993118,3.766 532,138.19167,-16.974586,18.255676,41.903996,3.749 532,172.31079,-19.65318,57.30081,123.9771,3.731 532,244.56877,487.859,30.64592,55.66382,3.705 532,148.88132,-17.183586,33.84967,69.684715,3.705 532,275.2035,-12.793012,16.690765,35.000645,3.699 532,31.56586,166.91171,23.687649,37.26367,3.69 532,25.969124,-14.844585,18.459759,39.05443,3.684 532,268.75,-10.757908,31.940643,60.692013,3.677 532,346.55835,-14.747186,17.066223,37.143917,3.67 532,598.16974,92.48428,37.27881,89.85086,3.654 532,548.5284,3.7196016,15.61261,28.411903,3.617 532,475.49045,-14.839263,16.489868,35.03267,3.614 532,596.59094,-15.040962,32.245483,59.993958,3.6 532,5.714859,21.429485,30.745827,79.320755,3.6 532,431.6064,238.10928,24.042053,47.12146,3.599 532,221.38512,-20.052437,54.14836,124.12909,3.597 532,574.8839,-16.665825,52.413208,128.03162,3.589 532,346.21484,143.66225,20.830383,38.65898,3.581 532,-8.919435,36.101376,39.345005,106.93695,3.579 532,-5.3571415,477.3934,15.779879,34.408966,3.579 533,-5.7310066,489.04807,18.412987,41.43875,8.018 533,-10.9846115,478.47174,28.761301,63.174072,7.183 533,-10.877159,-30.66463,30.207441,73.40703,6.539 533,-5.8283067,-16.816534,18.567972,44.066616,6.282 533,626.5565,488.73145,20.31781,45.75879,5.818 533,627.54865,-17.15196,17.015564,45.274788,5.601 533,-18.179281,-60.17484,57.63141,139.58904,5.467 533,349.65833,0.121953964,25.412933,51.228874,5.387 533,517.1138,-17.470772,30.755798,72.54699,5.267 533,622.6338,-33.92423,27.210876,75.71063,5.196 533,3.4868526,-35.732975,30.523523,77.278336,5.041 533,613.104,257.7218,24.603577,65.289185,4.929 533,2.2064285,489.57492,19.066633,39.535126,4.904 533,536.5825,310.02368,142.41699,341.9192,4.896 533,602.909,-56.180206,53.04596,138.71742,4.863 533,612.9532,456.14752,39.36908,105.4859,4.859 533,-73.19792,266.63614,201.03682,461.21603,4.827 533,583.0805,410.8509,72.006165,177.70123,4.826 533,-18.12603,438.23602,55.59305,138.62567,4.793 533,556.77734,136.54167,30.405884,55.917236,4.773 533,-41.127033,363.1387,112.29021,277.6721,4.75 533,552.1283,138.80122,22.177185,40.50473,4.657 533,411.61823,172.56361,30.538422,86.88896,4.607 533,539.94415,139.845,30.85736,57.22287,4.561 533,598.86914,148.79718,30.587402,61.62358,4.548 533,533.03687,-184.30191,147.11151,425.84094,4.525 533,585.73376,-105.63632,77.0918,243.05338,4.519 533,427.45364,145.76053,30.80365,73.0287,4.487 533,109.80568,-34.049038,30.405472,73.58934,4.403 533,353.47992,-16.248951,18.861237,42.288857,4.393 533,-3.1882358,-14.847315,31.02439,68.833115,4.336 533,228.97958,1.6195602,29.946167,58.41269,4.324 533,493.8185,228.52866,237.78268,513.0394,4.314 533,153.36801,302.48795,36.942368,60.952637,4.296 533,334.04834,-5.461712,32.599915,76.11328,4.246 533,418.66205,154.2421,32.157898,86.44508,4.236 533,-37.372505,-128.46866,118.687546,280.9918,4.198 533,524.65625,142.71477,29.825989,59.631012,4.182 533,187.66173,166.4623,17.377197,33.316208,4.165 533,193.53279,155.34236,21.324692,38.969513,4.152 533,233.96356,-0.3101616,20.241898,36.823494,4.146 533,93.19284,-35.516743,30.114029,74.09524,4.105 533,497.94147,170.93565,21.496704,40.007156,4.097 533,355.05365,-14.518272,32.98239,65.76848,4.064 533,4.6843886,230.33502,32.388496,72.18115,4.049 533,508.28827,147.7224,32.3869,55.58998,4.038 533,234.00766,-14.779918,17.25241,38.8754,4.026 533,-4.8096504,427.141,15.782607,38.39563,4.02 533,-3.7069173,462.62253,16.043482,36.35788,4.014 533,572.7931,141.62671,31.461487,58.131332,4.008 533,301.8749,242.15211,30.022644,60.53453,3.974 533,82.71674,156.10796,35.03428,57.948685,3.971 533,-4.6511755,476.63837,15.707578,35.101562,3.971 533,522.0215,-17.654032,17.707764,42.246624,3.964 533,500.63135,-14.213926,32.243164,64.20562,3.964 533,491.37546,-14.07143,16.541656,36.56351,3.947 533,-70.285225,-189.33614,211.73703,454.7688,3.918 533,570.993,-16.353848,32.6756,62.37852,3.916 533,614.61316,483.52698,27.960327,58.976196,3.906 533,341.0696,-29.151535,29.838104,74.78028,3.905 533,619.8831,-3.1584826,18.763489,37.95845,3.884 533,300.96045,-16.936493,31.861359,61.814236,3.878 533,252.01979,-12.016254,55.084274,129.97269,3.873 533,499.03568,-12.813368,16.542816,35.85106,3.852 533,226.59462,-14.20299,17.083893,38.912796,3.849 533,202.32388,-17.425663,17.598145,43.552505,3.841 533,588.94763,-15.522607,31.20996,62.242634,3.825 533,507.02203,-14.6058,16.905457,37.707912,3.816 533,582.9595,136.06749,36.42871,76.70238,3.81 533,546.88135,266.31964,32.25354,61.88867,3.801 533,185.64914,-19.795446,19.379944,45.8706,3.763 533,3.3459253,474.2408,18.10196,32.253906,3.746 533,283.9666,252.0983,17.747803,41.248016,3.739 533,485.87936,150.20348,29.119415,58.607803,3.738 533,21.553526,230.56549,41.877266,60.107117,3.716 533,138.04776,306.24173,37.6987,54.411835,3.688 533,594.69995,-44.947918,44.795105,98.500336,3.68 533,476.7506,-16.953,56.184265,125.037186,3.676 533,-5.469825,185.22568,17.275845,41.26367,3.674 533,268.25623,-11.558777,32.44928,59.832397,3.66 533,1.9360268,-15.725679,18.407242,42.319443,3.641 533,430.764,239.42969,29.971771,66.679016,3.625 533,17.739985,-18.668385,36.184914,62.515156,3.605 533,362.70544,-16.381586,17.761017,40.720028,3.601 533,-4.2740474,444.2646,15.832212,37.720673,3.6 533,5.2647734,469.7592,37.51019,91.73312,3.594 533,514.66254,-16.05804,17.51892,40.079075,3.588 533,-4.2937894,154.90619,15.922798,39.47882,3.582 533,328.34598,162.73686,22.572906,39.57631,3.574 533,89.42859,-21.374346,19.71312,45.553078,3.568 534,232.06906,182.25475,31.21933,76.50514,7.448 534,-5.8266306,489.93576,18.589756,40.33603,6.495 534,-0.5010927,201.85121,35.336502,81.98341,6.411 534,165.60605,199.29526,25.116516,41.439026,6.362 534,-11.508765,478.6068,29.532955,62.574158,6.192 534,202.53116,202.41481,20.330612,34.256866,6.093 534,-17.102406,-63.39656,56.0618,146.69485,5.956 534,-5.3410444,-16.931217,16.79874,42.276848,5.935 534,-11.30555,-32.241573,29.233446,73.305855,5.656 534,68.704765,175.54436,32.412262,62.937317,5.607 534,97.965546,198.57135,33.321854,49.081573,5.488 534,627.1408,-18.263765,17.654236,45.703762,5.152 534,237.01562,219.38123,29.971313,73.50293,5.079 534,622.7943,-33.750153,26.927917,75.376915,5.025 534,-73.68203,265.14264,202.07611,462.72284,5.014 534,602.9224,-54.23757,53.392334,136.16412,5.004 534,274.27258,245.77937,32.326813,64.98387,4.939 534,185.37878,201.79347,22.575806,34.536713,4.917 534,582.58905,412.0744,72.42474,176.41388,4.911 534,584.98724,-99.80265,76.66876,233.98447,4.878 534,612.998,454.902,39.684143,107.2836,4.869 534,-21.507515,402.65262,79.2332,175.01425,4.829 534,542.69025,-7.7680817,51.20038,120.626785,4.803 534,536.30383,311.09723,143.21143,339.7309,4.801 534,-8.569952,208.44702,29.482494,80.90509,4.795 534,626.65216,488.6843,20.734253,45.702423,4.791 534,-41.04111,364.08173,111.86774,277.9699,4.716 534,175.55966,201.65726,23.479034,38.299896,4.555 534,488.9602,-179.08124,236.27661,425.8159,4.547 534,215.89821,189.2201,31.17778,56.393723,4.491 534,574.2197,-12.479057,51.454834,127.55442,4.486 534,-36.58654,-127.37288,116.43696,277.3668,4.485 534,-11.795828,178.90302,48.1429,150.57178,4.467 534,2.5874698,173.09357,33.398933,73.08307,4.429 534,585.4593,172.29872,32.45685,77.45061,4.338 534,494.04675,228.28757,237.97363,515.0641,4.314 534,82.87462,170.52216,35.400337,67.121796,4.24 534,426.0232,-14.198872,35.13336,66.38725,4.236 534,-70.43779,-188.40363,211.68202,456.32053,4.178 534,3.177064,-14.11279,15.994365,38.240856,4.163 534,258.88922,253.81972,35.269775,60.93007,4.152 534,206.2339,191.33737,29.665726,48.778656,4.139 534,597.10406,254.54436,32.103455,66.82124,4.123 534,109.4902,207.37149,24.212532,35.438477,4.113 534,153.14061,272.6433,24.040665,35.567474,4.039 534,146.83157,267.29758,35.537567,54.412018,4.005 534,161.74345,199.51309,42.95352,70.86456,3.947 534,617.0486,265.18335,21.732178,50.25717,3.934 534,378.30188,-16.072323,34.110382,75.11218,3.933 534,194.60023,268.7986,22.390198,32.747345,3.917 534,177.86148,198.03096,43.5054,74.188675,3.915 534,2.4231958,491.24417,19.065117,39.31534,3.871 534,57.307533,196.53412,22.078362,38.01956,3.86 534,13.681536,-19.16381,56.626938,123.64464,3.842 534,411.68655,169.85219,32.930084,54.64351,3.805 534,169.94742,270.2457,20.5336,26.593231,3.796 534,-9.265572,176.93399,30.05235,75.77161,3.764 534,594.673,-42.951897,44.24597,99.194534,3.754 534,571.94635,13.24403,28.66681,65.14195,3.748 534,279.59174,271.61447,24.665222,43.60312,3.747 534,510.1369,-8.470921,52.30597,118.47032,3.69 534,150.3637,194.17921,32.086746,51.85681,3.682 534,332.06262,-9.751177,33.015076,70.9932,3.671 535,195.98753,222.71817,30.66832,73.500824,10.677 535,320.87308,224.61475,32.840576,72.61926,8.672 535,33.25438,242.29276,34.52098,64.21811,8.162 535,489.8079,228.88553,24.258698,39.216553,7.651 535,205.90994,222.2002,24.037033,51.13495,7.107 535,613.25934,453.83286,39.437317,107.173615,6.81 535,432.5708,237.62523,21.300385,33.705154,6.499 535,-11.677703,478.72382,29.843266,62.642517,6.494 535,-5.941624,489.20596,18.761637,41.533356,6.474 535,123.96399,234.06398,31.133636,61.32646,6.201 535,3.689928,227.93579,29.395937,57.274048,6.102 535,406.9563,207.01717,28.576538,59.138382,6.063 535,311.111,215.3211,31.073517,70.87201,5.933 535,626.1602,487.25357,21.913818,45.98477,5.806 535,328.34988,221.54643,21.285248,45.797806,5.727 535,627.1893,-18.555204,17.432861,46.96909,5.72 535,332.2069,265.65903,28.927124,79.11493,5.584 535,173.02141,225.88399,29.585953,60.16237,5.529 535,0.2080667,240.75275,25.67034,63.40033,5.487 535,65.66516,226.21495,20.705956,50.490005,5.397 535,-5.441947,-17.210665,17.084988,41.73357,5.395 535,45.973717,236.35149,24.920021,50.25975,5.386 535,-18.002102,-63.951347,56.233555,147.20772,5.371 535,20.564959,232.68716,33.471275,54.062317,5.333 535,146.06009,237.94405,18.6548,34.495438,5.178 535,585.678,-100.21044,75.124756,233.38773,5.172 535,622.303,-33.788868,27.556152,76.034706,5.109 535,209.15167,221.93127,31.35904,70.53882,5.081 535,-11.350649,-32.375107,29.600233,72.50787,5.079 535,-73.21961,264.82312,201.37735,464.48108,5.023 535,-40.942688,366.1153,111.52608,276.57056,4.974 535,504.0337,230.34518,23.842346,39.955383,4.948 535,603.0113,-56.0913,53.103577,137.25175,4.92 535,-21.51131,403.15247,78.86391,175.40265,4.918 535,569.63184,236.66931,32.71997,79.869995,4.771 535,582.8812,412.5647,72.460266,176.08893,4.767 535,535.90265,310.92493,144.4422,339.76147,4.759 535,27.907558,226.90385,54.06867,114.547165,4.744 535,57.55798,232.51123,21.64648,46.0466,4.73 535,432.8981,293.66272,23.532928,30.082092,4.705 535,491.0277,-181.07013,234.30115,424.6307,4.647 535,3.2913947,237.81845,40.005096,98.66855,4.631 535,334.44336,234.90251,24.308838,51.806442,4.607 535,137.94087,238.88736,21.26947,41.46057,4.601 535,-15.2140255,218.2702,49.431625,131.08533,4.6 535,441.25555,250.6734,19.355377,27.418152,4.527 535,395.27063,222.2839,19.056915,36.407867,4.526 535,336.5532,221.37712,19.546295,42.11873,4.438 535,100.70799,237.68384,33.80008,69.34009,4.429 535,-3.84936,221.67102,15.890339,36.76242,4.394 535,18.367455,247.14334,42.500103,100.72516,4.326 535,328.00323,238.48947,34.822693,77.989044,4.277 535,112.7103,243.48764,23.764755,48.140656,4.264 535,494.23566,227.55719,237.54486,513.2914,4.224 535,-11.131511,248.7576,29.87188,65.553894,4.214 536,367.4881,221.94809,29.11914,76.59326,29.389 536,613.1366,453.28647,39.931152,108.19699,6.845 536,247.1731,217.68735,26.413208,72.06464,6.768 536,527.133,238.07439,31.681213,76.1982,6.737 536,-6.263147,490.1236,18.659725,41.54541,6.725 536,-11.870567,480.5309,30.221521,60.785736,6.581 536,352.58365,227.18259,28.45105,74.05966,6.523 536,-17.563868,-65.94439,56.331764,151.80563,6.272 536,627.057,488.69873,20.343567,44.87732,6.269 536,622.8285,-33.873535,27.134949,77.80175,6.246 536,257.25977,232.51166,21.384705,56.06671,6.071 536,626.9216,-18.558365,17.986877,47.188137,6.0 536,179.6048,249.20486,31.002365,64.825165,5.579 536,528.9877,211.279,21.309814,44.67305,5.451 536,485.0604,250.54756,29.143463,72.27214,5.319 536,-5.691024,-17.694157,17.354155,42.567574,5.216 536,276.30365,246.82878,29.227905,69.58589,5.194 536,-18.403679,436.51532,55.63669,140.289,5.169 536,426.43286,326.11923,20.743683,35.519836,5.052 536,-39.575916,368.8026,109.43617,272.99707,5.005 536,-11.248478,-32.212845,29.454851,72.72993,4.995 536,240.7448,216.96925,20.697922,59.267593,4.979 536,513.77216,208.67676,21.885376,48.85614,4.974 536,602.599,-54.215084,53.249146,136.98154,4.952 536,582.98883,412.0385,71.99951,176.47217,4.914 536,-4.805796,134.652,18.506899,47.14969,4.875 536,613.4575,196.25708,25.67456,72.12952,4.782 536,342.33496,219.08533,27.039062,71.86951,4.749 536,-4.7891955,203.69998,16.330284,38.119644,4.715 536,497.91034,205.65007,29.403625,79.43538,4.704 536,261.44315,235.08054,29.677948,73.95822,4.687 536,1.3704991,132.2339,22.905563,52.443832,4.666 536,612.548,221.58293,18.549133,41.690323,4.627 536,-72.060974,267.3051,199.28174,459.71063,4.62 536,618.64624,490.58466,20.18866,41.96588,4.554 536,527.40784,215.4716,27.01361,71.339096,4.511 536,204.90543,220.86395,27.30481,69.16788,4.511 536,536.05725,311.166,143.21936,339.90067,4.459 536,261.1754,376.37527,15.080139,25.192413,4.436 536,3.0966563,226.66115,16.886866,30.240128,4.404 536,227.81746,215.6192,16.837814,30.932327,4.397 536,525.3456,-33.114033,29.057434,70.29852,4.362 536,113.90964,241.41254,33.589417,60.970337,4.347 536,585.8048,-99.98976,74.16504,237.85416,4.331 536,286.17697,227.79112,24.9104,61.09703,4.331 536,86.462204,153.84892,28.507431,64.574295,4.256 536,5.0099206,138.05159,31.644766,68.36058,4.244 536,516.0323,250.34914,30.923706,73.33638,4.241 536,614.48474,227.62744,24.759888,66.27789,4.228 536,307.43515,494.75604,18.40625,36.41101,4.218 536,539.8853,242.72778,28.840454,85.217896,4.216 536,494.20914,270.88943,28.528534,71.18869,4.195 536,442.01422,335.0144,17.983093,29.2818,4.182 536,220.05501,208.83113,15.895081,30.31923,4.174 536,618.9617,-19.893978,18.682983,46.070343,4.174 536,214.34782,214.54074,26.9684,68.65439,4.081 536,2.4258728,200.52834,17.268726,33.9991,4.075 536,493.57166,228.72562,238.04163,513.55505,4.048 536,339.2303,494.08035,18.176697,35.393158,4.044 536,162.98013,228.15225,17.461853,28.394135,4.009 536,-4.7563086,187.94601,15.679917,38.799545,3.978 536,5.237356,466.53433,38.824112,96.27194,3.978 536,480.51257,207.29892,47.593445,113.92676,3.972 536,-37.323547,-124.594215,116.89192,279.63657,3.961 536,452.0097,240.38063,18.630188,43.047928,3.953 536,2.2225242,491.04724,19.582449,39.62854,3.95 536,336.8717,214.36848,49.80139,129.84447,3.922 536,597.1847,457.94818,39.50586,103.33722,3.907 537,169.15775,224.00928,32.205093,75.57947,9.723 537,382.98004,221.36621,29.328552,78.02942,9.612 537,291.45724,219.34177,17.089874,40.700104,7.878 537,238.40579,214.59326,30.1391,74.48297,7.699 537,-5.815251,488.21384,18.384287,43.613983,7.663 537,613.22595,453.247,39.894653,108.344666,6.512 537,627.4413,-16.676723,16.815918,46.25971,6.425 537,-17.3528,-65.56576,56.14647,151.21562,6.282 537,622.7988,-33.52354,26.64508,78.087036,5.902 537,-11.021475,475.16837,29.212004,65.91818,5.877 537,211.91608,214.48564,18.062103,48.320633,5.865 537,218.32224,216.64711,19.912155,55.636948,5.839 537,626.00696,486.58414,22.143677,47.88443,5.752 537,157.06306,228.68779,35.4131,82.66084,5.422 537,602.76843,-56.240166,53.228394,135.34595,5.392 537,375.47028,211.87311,26.539429,70.444855,5.311 537,322.97552,219.92534,20.928345,43.67296,5.304 537,221.7865,214.52582,26.413132,71.38937,5.277 537,-5.6278057,-17.780985,17.318905,42.71752,5.274 537,-21.699184,402.71848,78.925156,174.61374,5.054 537,-73.15392,265.25952,201.0955,463.6742,5.039 537,369.97076,216.68631,21.506348,57.22464,5.035 537,-11.167267,-32.13533,29.354527,72.896385,4.948 537,181.8503,225.86853,24.33699,56.264526,4.853 537,582.7887,411.42383,72.387634,176.80865,4.774 537,331.25882,226.66972,19.831146,42.864334,4.672 537,428.47562,339.2007,15.83902,25.02884,4.623 537,536.2348,310.81567,143.22205,340.5276,4.586 537,286.07944,218.90721,15.785553,35.094147,4.511 537,343.15216,209.49966,33.400635,83.80591,4.483 537,-3.1754293,189.60535,14.789576,37.324066,4.46 537,219.81384,206.37415,16.43631,32.993683,4.459 537,149.23457,224.44533,32.400024,63.658646,4.323 537,246.1293,216.09631,34.701263,91.91168,4.319 537,309.75378,213.64586,27.9552,69.432144,4.296 537,226.366,208.58672,17.387375,37.774033,4.237 537,91.04797,242.81961,35.387573,61.71936,4.229 537,270.78503,223.42389,27.326416,79.18439,4.221 537,-5.176939,218.9281,16.669197,39.74832,4.193 537,89.98416,228.46703,20.76905,35.38594,4.185 537,494.37842,226.88757,237.5846,514.9705,4.183 537,490.26312,368.47263,20.959778,39.622528,4.174 537,586.36945,-101.65837,73.93817,236.9859,4.174 537,1.9607013,487.9961,19.595144,43.552612,4.16 537,213.19292,209.09557,15.344986,29.72377,4.155 537,248.06357,222.11101,22.001648,50.606644,4.149 537,466.3945,231.18112,19.709045,43.330902,4.088 537,595.1445,-45.83732,43.12567,98.6389,4.084 537,122.306786,225.664,34.331947,68.180786,4.074 537,278.4136,219.42207,15.024384,32.661118,4.072 537,203.81601,217.37962,17.784271,43.845108,4.054 537,230.88806,208.31921,26.166962,73.59192,4.048 537,275.19485,241.34636,31.993744,80.82634,4.037 537,482.68317,234.22418,43.598755,77.22217,4.03 537,532.7813,-181.03104,147.55609,422.23108,4.01 537,75.954025,481.433,17.562859,26.829163,4.009 537,335.95416,205.46115,49.872833,134.89151,4.007 537,456.30948,197.85077,28.104034,68.6073,3.999 537,327.0633,213.23087,35.688446,92.61124,3.973 537,397.36157,233.08005,26.920715,71.198975,3.951 537,105.26208,225.1116,35.347908,67.7634,3.938 537,158.28717,215.66962,50.77594,128.58331,3.932 537,619.7465,-15.275766,16.700073,43.488132,3.922 537,619.39655,69.816025,18.032593,53.491188,3.914 537,265.80597,261.19943,31.019226,74.42804,3.908 537,298.0083,220.72194,18.907806,47.709885,3.904 537,615.5464,203.58919,25.399109,81.433365,3.904 537,616.4206,139.31256,24.432007,82.00758,3.899 538,434.7852,245.17084,29.962677,89.23224,11.564 538,316.03674,232.29855,15.713501,37.277374,11.468 538,499.7374,211.74364,31.134369,73.81465,10.027 538,164.0641,252.73476,36.390945,77.899216,8.881 538,241.5625,231.98555,22.156403,52.150864,8.551 538,176.85791,247.03313,32.3889,70.83125,7.385 538,322.77463,230.44292,14.861786,32.210464,7.02 538,261.7257,224.9729,32.860443,100.65631,6.976 538,627.6627,-15.767934,16.651733,44.135975,6.938 538,613.6439,451.78094,38.330566,109.53204,6.844 538,603.37134,-55.301613,53.183777,134.02852,6.745 538,-5.885029,489.24442,18.251041,41.20053,6.643 538,626.57434,487.62595,21.009338,45.512115,6.614 538,225.14177,236.6063,21.793732,44.8479,6.521 538,254.5565,227.23465,28.28096,75.42575,6.462 538,217.1245,235.60211,21.505493,43.265564,6.325 538,-17.723928,-66.11666,56.26654,151.56766,6.314 538,-11.396425,478.11456,29.131056,62.50116,5.982 538,-5.5465674,252.9346,18.34951,39.762634,5.947 538,623.66156,-34.338943,25.58197,76.37506,5.752 538,230.93977,228.17441,34.87462,95.364075,5.743 538,-5.651545,-17.57095,17.297812,42.33595,5.258 538,234.0065,239.57793,21.694366,50.780228,5.222 538,-72.81724,264.27612,201.0698,464.0699,5.158 538,373.30563,224.62114,27.199371,53.597946,5.109 538,427.7068,163.05434,28.153442,89.7399,5.104 538,107.9164,229.63908,29.882858,50.284744,4.955 538,-11.263987,-32.5197,29.492344,72.98114,4.912 538,611.41895,454.62955,16.287415,38.237213,4.901 538,583.379,411.27698,71.3822,175.88702,4.878 538,-10.244568,242.53694,28.27569,62.954025,4.874 538,-40.563755,365.52246,111.070206,277.49365,4.868 538,449.35916,264.32013,31.716034,69.89984,4.865 538,478.59848,210.72253,28.810577,56.667267,4.835 538,246.6412,223.14856,27.412994,67.223206,4.822 538,618.6406,489.3239,21.033447,43.74054,4.816 538,241.50287,223.99457,47.47284,120.030945,4.815 538,347.19968,235.58034,19.706879,41.294296,4.81 538,209.84879,237.76755,21.825073,49.98114,4.789 538,-17.643927,437.6133,54.999535,139.24924,4.756 538,536.2615,309.59247,143.8053,341.3,4.725 538,358.69666,225.1829,34.620636,80.066666,4.612 538,120.974815,237.0224,21.207954,38.48462,4.589 538,585.9913,-98.65091,73.42273,232.47371,4.539 538,309.94775,227.01337,15.776184,37.721313,4.466 538,2.2945428,261.3048,21.052408,49.961212,4.404 538,354.0838,235.24365,21.160522,40.891174,4.373 538,-16.486639,151.89175,51.731735,143.98856,4.372 538,621.13086,1.2387924,14.873169,33.847355,4.367 538,214.71304,231.30045,36.058716,92.55649,4.356 538,493.9774,227.99316,237.17044,513.1148,4.323 538,594.8504,-44.355637,43.38385,96.86206,4.298 538,389.0248,229.99846,38.33304,85.31709,4.225 538,396.59308,236.84137,17.406921,38.090332,4.22 538,434.1447,286.02264,33.374542,82.2009,4.201 538,271.3215,240.04883,22.956085,56.948547,4.194 539,320.04745,193.16167,23.08197,52.04953,15.2 539,400.33902,191.6014,20.610504,49.209457,11.156 539,234.20593,231.98665,35.051147,81.46361,10.143 539,325.26218,191.02994,29.338654,67.3049,9.768 539,1.3533103,191.30539,21.443699,50.589767,8.557 539,602.7244,183.04953,31.674438,74.85068,7.288 539,-11.36244,478.36166,29.076502,63.364166,6.875 539,-17.334381,-64.347626,55.9121,149.79414,6.777 539,-5.7425013,488.81873,18.503489,42.623413,6.717 539,242.95004,224.12491,31.187408,63.601837,6.424 539,301.2521,197.12003,31.468689,65.157166,6.353 539,291.1847,199.56978,18.881866,35.876663,6.305 539,314.00455,204.1064,23.745148,52.445084,6.261 539,557.166,209.39413,32.35846,80.34827,6.231 539,610.8229,-49.327282,41.79004,102.23833,6.174 539,309.9359,194.33595,36.734863,83.28819,5.989 539,336.95813,192.58412,22.261688,56.21089,5.913 539,284.938,201.90126,17.62497,32.990982,5.871 539,613.35785,452.76337,39.380188,109.52362,5.868 539,345.8772,194.76103,29.780914,71.32295,5.836 539,319.16595,191.50827,49.082336,119.30292,5.784 539,402.53738,194.63065,29.501678,68.89554,5.77 539,296.66882,201.24614,22.724274,40.87262,5.737 539,626.5406,487.38354,21.360168,46.05304,5.655 539,257.21738,224.74855,32.882324,70.19719,5.644 539,307.08044,198.14035,19.839752,41.28708,5.512 539,285.67303,195.19167,29.372498,55.92903,5.474 539,408.8501,192.74046,19.119324,44.472214,5.467 539,-11.474293,-32.52608,29.94001,74.57419,5.457 539,578.1502,172.5137,46.550232,129.64108,5.366 539,427.43158,197.09279,17.851501,39.154434,5.348 539,627.1795,-20.810232,18.298279,48.761936,5.345 539,540.42303,221.12254,17.205078,33.10341,5.271 539,-72.401474,265.55878,200.22302,461.18018,5.092 539,-21.369938,403.9569,78.579285,174.4939,5.035 539,-5.565318,-17.769535,17.18594,43.352413,4.967 539,586.116,-100.94685,75.091736,235.19162,4.961 539,185.83147,197.04398,19.48732,37.736954,4.96 539,291.95145,204.91995,38.77365,97.22598,4.927 539,552.6408,128.89398,21.530334,58.694977,4.916 539,583.4114,410.72516,71.33557,176.84106,4.846 539,276.2008,202.78162,17.111938,32.26477,4.792 539,-5.2740455,100.16493,19.48241,52.488403,4.764 539,230.7172,221.89404,31.110443,62.4144,4.756 539,237.593,212.38246,48.499466,116.51106,4.674 539,192.99887,207.53671,20.397354,34.078323,4.632 539,612.06964,413.9462,17.593506,38.00238,4.618 539,276.40875,204.61108,38.192505,91.1904,4.588 539,523.61536,188.25497,18.226746,38.354996,4.562 539,-9.728676,143.57156,40.646038,91.910126,4.516 539,482.20898,205.48436,19.437073,31.035248,4.492 539,442.32944,204.39793,20.092712,37.419876,4.477 539,536.6133,310.26608,142.62622,342.6636,4.474 539,2.6463656,489.11798,19.066854,42.358337,4.459 539,489.35126,-177.87875,234.85931,419.17197,4.454 539,525.2824,210.77583,15.833435,31.876663,4.449 540,558.2777,209.02321,27.25354,69.46513,10.752 540,477.05014,216.61491,28.416473,67.91475,10.171 540,627.16864,489.66187,19.720886,43.531677,8.351 540,621.8491,-33.286144,27.547607,77.81244,7.839 540,489.53418,224.7883,22.71991,48.61322,7.643 540,626.4664,-16.591076,17.942932,46.636757,7.63 540,384.31537,245.4415,38.98474,79.18872,7.257 540,498.7627,217.97493,16.929565,35.859344,7.185 540,-11.43024,478.5543,28.976513,62.83731,7.015 540,561.3403,203.7613,20.364685,48.129974,7.012 540,-5.8464265,489.3088,18.46965,41.317352,6.884 540,-17.445587,-65.50374,56.296722,151.21367,6.696 540,619.3618,491.6067,19.04541,40.67816,6.641 540,578.23694,202.39243,19.345886,52.01358,6.523 540,613.2792,453.6231,38.88611,107.690735,6.458 540,493.78436,220.21158,28.477722,68.970245,6.438 540,460.80765,216.72415,31.499329,69.12622,6.293 540,426.9865,215.51573,15.330139,27.24617,6.246 540,613.8207,-15.65233,28.371216,67.99171,6.113 540,473.085,216.30647,22.208313,51.94005,5.901 540,52.691235,201.27744,31.70522,54.634598,5.763 540,381.60565,225.26706,52.705597,145.43945,5.571 540,617.80145,-15.791749,19.0448,44.866264,5.555 540,626.6827,330.19955,18.311218,51.911865,5.438 540,603.02576,-56.65132,52.904358,136.86472,5.431 540,482.02545,215.18327,19.226044,46.990524,5.263 540,-11.374779,-32.590027,29.643888,74.518036,5.246 540,581.8913,194.84293,25.166138,66.55078,5.243 540,323.566,230.61908,18.87381,33.05664,5.234 540,330.6471,230.29948,19.481873,35.577225,5.205 540,-20.84148,405.7235,78.08786,173.15894,5.155 540,428.819,213.92117,28.316742,61.145416,5.1 540,619.4388,200.13754,16.25116,45.704727,4.999 540,315.92734,231.92346,18.219696,30.806976,4.993 540,-72.63478,266.5078,200.6679,461.4306,4.969 540,-39.816746,369.66107,109.6324,274.40155,4.951 540,-5.6263247,-17.740362,17.200668,43.334312,4.92 540,447.89526,212.80618,48.990692,119.1181,4.91 540,63.52837,224.6654,32.00137,52.49411,4.854 540,465.73907,211.10832,21.834534,47.660538,4.842 540,2.1333349,235.83246,21.27803,35.40445,4.814 540,299.95114,233.96696,17.18991,29.146164,4.747 540,74.600555,273.82608,34.14425,58.18347,4.718 540,456.90903,213.74477,24.461884,52.585037,4.716 540,621.13275,326.07407,16.969727,46.402313,4.681 540,420.30655,225.09332,40.789062,102.8233,4.677 540,583.37225,409.20148,71.57587,180.07965,4.673 540,323.66492,216.41782,39.580994,69.08237,4.661 540,537.06,310.99707,142.6372,339.74695,4.622 540,466.19177,227.39787,41.63217,95.409164,4.611 540,47.067257,218.72696,33.193783,57.815704,4.574 540,536.6793,263.6103,23.06488,43.339996,4.542 540,292.38782,234.70891,16.606567,28.084427,4.54 540,572.52545,204.48286,29.208496,74.68895,4.534 540,5.301037,470.377,37.916637,92.390625,4.51 540,98.28964,269.421,36.44751,64.74222,4.495 540,627.6818,212.62993,16.615356,44.36052,4.486 540,435.19772,7.3578625,16.5112,27.554995,4.478 540,284.58063,236.52786,16.744873,26.593292,4.467 540,504.5627,228.25696,20.371979,43.209106,4.442 540,202.03696,215.89174,17.893524,22.58023,4.411 540,226.8522,236.01552,19.488098,24.596512,4.384 540,505.12976,217.75185,17.004944,32.282364,4.382 540,443.1911,6.046939,16.839783,28.637787,4.341 540,331.40854,214.10298,15.837677,31.781647,4.339 540,427.80865,6.8230953,16.011536,26.48128,4.331 540,-6.184194,233.84421,18.288914,37.382782,4.312 540,169.3179,230.90062,21.19432,27.368576,4.308 540,479.62402,202.29048,49.898743,114.10112,4.286 540,2.6783311,490.2733,18.64831,39.941376,4.274 540,548.3057,218.84961,39.29364,99.86249,4.266 540,626.32635,194.07382,17.357971,46.997772,4.255 540,435.83258,224.3443,41.218018,103.05817,4.25 540,568.858,202.01443,20.899963,50.90207,4.247 540,87.85205,192.12248,27.935211,61.608566,4.228 540,493.98547,227.33658,237.68518,514.24255,4.215 540,275.87125,236.19174,17.166107,27.062805,4.203 540,340.1788,231.83556,32.797516,71.6985,4.194 540,498.9856,219.24338,39.50586,88.5806,4.169 540,73.67089,205.87047,19.324875,37.254013,4.165 540,218.56372,228.81354,18.908875,23.338135,4.164 540,400.4677,255.62593,34.98227,81.03438,4.157 540,540.5276,217.08928,15.899109,29.818527,4.156 540,98.16163,227.0968,43.222176,78.6333,4.149 541,613.89264,203.75198,22.878723,79.951385,11.763 541,626.9176,489.36624,20.075745,43.400482,9.237 541,622.24207,-32.397602,27.113953,73.05703,7.615 541,618.38,71.9713,18.87976,53.344666,7.538 541,572.0084,232.15268,17.882446,36.050537,7.513 541,580.6179,223.42545,14.612061,26.380173,7.424 541,31.43623,6.18668,32.786526,75.32263,7.333 541,45.1787,178.64801,28.00851,74.408005,6.984 541,-5.974488,488.6585,18.901068,41.826538,6.945 541,-11.379552,478.7071,29.602226,62.745056,6.833 541,619.2986,491.31958,19.370361,41.009155,6.533 541,626.5312,-16.528301,17.77948,44.02505,6.354 541,613.37823,455.21167,38.422546,105.79736,6.137 541,564.4422,231.776,17.831604,32.293335,6.113 541,-12.392857,-39.00813,41.395653,97.40491,6.105 541,-5.694237,-18.690954,17.8228,44.761944,6.05 541,572.31714,208.09695,53.611755,151.35098,5.647 541,574.32697,227.0722,14.077515,26.953537,5.611 541,590.0097,227.03497,30.22705,72.727295,5.582 541,456.96808,229.55592,20.185394,33.22026,5.535 541,558.4667,236.23865,31.839478,69.69202,5.428 541,618.1833,-15.468613,18.566162,39.494385,5.426 541,100.82424,177.73285,29.791618,73.308945,5.318 541,548.1156,220.13828,17.062866,30.067337,5.091 541,304.77023,227.55861,21.381134,30.79808,5.052 541,578.247,230.15688,18.927307,39.792404,5.016 541,337.59814,224.08687,18.204315,28.700089,5.005 541,538.3088,228.76222,20.15448,31.877548,4.994 541,586.7467,221.39386,15.469055,28.031647,4.991 541,-73.755165,265.8081,202.0249,462.82764,4.984 541,602.5904,-56.773514,53.53717,135.7731,4.94 541,194.65384,231.31453,31.67125,53.185257,4.92 541,-17.19007,436.71246,55.30725,138.3039,4.914 541,583.5064,413.37228,70.59424,174.1661,4.908 541,-40.511337,367.3103,110.62534,275.56677,4.899 541,565.9534,217.75282,37.339783,73.89357,4.836 541,235.20691,276.60974,34.855896,60.132904,4.782 541,420.18558,152.66379,28.740204,61.620697,4.77 541,378.70203,236.49936,19.496704,25.648163,4.73 541,354.7592,235.47726,19.463287,26.01413,4.705 541,-3.3123107,341.14453,26.2327,75.34607,4.692 541,71.25955,204.84535,30.541786,63.745834,4.661 541,548.6341,228.02466,30.75592,60.954956,4.626 541,554.9221,229.9901,17.438416,30.132614,4.616 541,621.4618,481.2924,14.582947,32.446503,4.565 541,628.33704,478.79608,15.115173,37.72461,4.528 541,536.5138,308.6568,143.2229,341.99823,4.518 541,-7.5967216,191.93066,28.054964,85.19562,4.51 541,554.8805,222.78912,15.138062,25.863647,4.476 541,595.07117,212.51118,16.476135,33.98703,4.462 541,173.0997,227.70883,33.095154,54.565094,4.421 541,557.4684,269.33432,32.989258,72.36502,4.388 541,370.15173,236.80823,19.894379,25.287354,4.377 541,386.71906,234.13087,19.228088,26.880325,4.376 541,494.12476,230.34125,236.77094,514.8262,4.348 541,614.04504,267.6019,25.452576,89.44388,4.328 541,613.9543,-17.66644,27.568604,61.472622,4.299 541,626.5972,66.83326,18.136963,48.25907,4.234 541,218.82031,212.86545,18.417831,36.835785,4.197 541,444.6516,215.22488,55.72696,138.86087,4.162 541,430.33725,160.81036,28.85846,63.039673,4.159 541,450.91885,235.73108,19.417908,33.058105,4.137 541,607.9709,-32.814102,26.82721,65.431244,4.132 541,331.50568,222.95132,17.663086,24.929337,4.111 541,603.6472,218.48285,22.277832,52.88379,4.1 541,81.83641,322.0126,20.904686,28.94107,4.091 541,451.69354,221.45842,18.872864,35.576035,4.089 541,92.41645,192.64604,30.360764,71.59288,4.071 541,-38.212402,-123.006996,118.9274,275.23996,4.069 541,539.9378,218.99933,30.701294,51.38214,4.055 541,370.33615,224.48499,19.191772,25.823334,4.042 541,362.46127,230.08511,19.342163,25.614075,4.014 541,226.75217,211.62167,19.69992,39.276154,3.999 542,588.3995,224.04784,16.827026,37.186417,22.388 542,622.1024,227.4837,12.069885,30.44217,11.832 542,55.809673,-3.7555962,38.30241,72.93927,8.607 542,627.4679,-18.092293,16.95044,46.786858,7.24 542,321.0345,220.11766,20.610382,40.40175,7.099 542,63.389935,174.07047,32.52518,75.36882,7.05 542,377.63153,212.88286,19.130096,29.900482,7.039 542,595.48096,223.82286,14.155212,30.369675,6.875 542,627.224,217.85185,14.018982,37.81967,6.758 542,-0.1747632,170.86035,22.955093,64.985275,6.624 542,-5.926402,488.14923,18.93364,43.58789,6.524 542,-11.533333,476.699,29.47361,65.19174,6.47 542,623.6472,-34.783558,25.821777,76.61824,6.347 542,35.90218,185.35187,29.977306,64.54428,6.019 542,620.81506,234.8984,17.366882,44.497894,5.885 542,606.4081,230.55356,11.433228,25.701202,5.877 542,-17.400589,-62.93029,56.66828,144.10405,5.846 542,-5.560032,-18.312847,17.289547,43.075397,5.802 542,616.04614,230.45709,11.000366,26.05017,5.72 542,215.39731,221.53778,32.35843,62.342957,5.64 542,499.20264,229.89313,17.171509,34.50119,5.628 542,344.26727,234.63133,22.995453,30.003403,5.582 542,626.8842,488.21194,20.529602,45.15793,5.52 542,571.3799,227.29185,18.780151,34.60402,5.484 542,-3.3904939,171.02916,17.502985,43.96605,5.208 542,603.94507,-55.241146,52.447693,133.6208,5.174 542,21.754963,172.77695,36.536358,77.54927,5.167 542,581.80444,223.00058,35.477905,77.384766,5.154 542,583.39526,411.96564,71.287964,176.22656,5.133 542,4.200424,178.7794,30.018307,69.69142,5.101 542,613.4014,455.0127,39.035645,107.536194,5.07 542,593.8034,231.93658,19.064575,35.097168,5.051 542,-73.80087,264.88782,201.96185,463.18262,4.941 542,-11.170821,-32.89041,29.216328,73.055176,4.909 542,599.9136,224.00414,34.8468,96.95302,4.839 542,14.981202,176.33833,27.782043,59.564743,4.798 542,-41.001556,366.18945,111.40141,275.114,4.789 542,426.96838,235.03862,19.932617,28.485489,4.78 542,434.53275,227.99594,20.129303,29.089233,4.755 542,564.77045,225.70416,38.526733,90.968506,4.728 542,106.34708,328.94528,18.982628,32.998505,4.702 542,620.6364,203.00302,14.164856,37.9608,4.701 542,-13.314892,155.82507,46.73061,131.28629,4.689 542,612.79114,235.17337,16.696106,37.557434,4.684 542,607.015,219.68767,11.078186,26.999908,4.67 542,536.5709,311.3661,143.0813,339.96674,4.643 542,505.5273,235.60226,18.888824,33.153717,4.642 542,233.51407,230.65898,29.924896,53.547348,4.625 542,627.8498,200.00983,15.204712,41.632065,4.606 542,624.6716,233.24394,24.559448,75.497604,4.593 542,499.52335,243.92178,17.274933,30.585632,4.582 542,580.08716,225.84277,19.870605,35.570312,4.581 542,113.70741,327.42874,20.101776,35.660553,4.554 542,-38.68458,-123.23677,118.19571,275.78522,4.541 542,202.6072,213.84953,34.38646,59.361374,4.501 542,-3.7636018,156.7077,16.916311,41.46968,4.498 542,1.0591614,331.12286,32.37668,67.85251,4.484 542,68.23866,-32.62854,31.578857,78.926895,4.482 542,91.578865,171.13281,28.849136,67.869644,4.468 542,142.89378,168.29207,23.367828,49.637924,4.467 542,103.72207,180.30556,29.590569,71.86676,4.456 542,314.88663,225.86754,20.774689,39.197098,4.44 542,596.59827,202.98582,14.206543,37.013657,4.384 542,183.19598,242.05753,25.02806,26.766357,4.38 542,628.7883,231.80284,15.732178,42.77098,4.375 542,121.58942,321.83316,20.517181,36.364624,4.36 542,493.66962,223.86989,17.267273,33.8871,4.356 542,493.77945,229.10535,237.82492,514.7136,4.349 542,443.24457,229.30637,18.03778,25.782425,4.341 542,563.5053,229.48645,18.435547,33.832764,4.341 542,468.83713,153.85449,30.123291,61.270386,4.218 542,603.6138,235.02449,17.19696,34.972794,4.207 542,249.6665,233.23749,19.153748,32.71988,4.177 542,178.87437,332.8936,34.36081,70.00464,4.125 542,574.67017,213.15836,48.285217,143.97537,4.123 542,112.343864,169.56987,29.668846,69.66588,4.118 542,555.133,231.6547,17.541077,33.29709,4.115 542,384.3997,215.38242,19.363312,32.002304,4.104 542,410.2412,244.17055,20.6156,25.88652,4.097 543,34.14035,149.46677,41.629883,84.00981,17.272 543,552.6276,231.07333,19.545288,37.21985,9.775 543,626.7449,488.85535,19.86853,44.79004,7.934 543,333.78058,208.68353,23.966064,42.051727,7.816 543,587.12726,242.81642,19.111572,36.89778,7.765 543,-11.384804,477.86664,28.973324,65.41754,7.076 543,-5.8339143,-17.278038,18.29488,43.32317,6.798 543,-5.941908,488.48712,18.860706,43.968323,6.615 543,540.103,230.8785,31.978516,55.69655,6.183 543,-10.670511,-32.380978,29.556303,74.385445,6.072 543,627.4322,-17.35421,16.976013,45.592113,5.938 543,5.9553347,341.80746,30.436653,58.449158,5.929 543,-16.810772,-63.866425,55.11746,143.30516,5.903 543,618.7073,489.17792,19.871155,43.51056,5.78 543,162.74284,217.09271,35.400787,61.566315,5.762 543,613.16327,457.6338,38.309387,102.07538,5.609 543,531.65356,239.05734,19.25946,31.990784,5.554 543,23.113173,348.55807,24.326193,37.58069,5.55 543,294.28275,234.82292,26.369293,32.475327,5.511 543,611.7237,-47.23114,40.992615,100.0676,5.401 543,589.07886,234.14636,14.236511,28.697449,5.325 543,579.3071,243.33432,19.339233,36.675446,5.288 543,15.430691,351.75522,23.94336,37.174835,5.279 543,150.13812,218.32608,34.097794,63.456543,5.27 543,27.88668,339.71762,33.059517,57.066467,5.26 543,436.26843,229.06157,16.555084,25.93251,5.254 543,583.58795,412.93195,71.09259,175.92706,5.221 543,410.6474,230.16786,18.591919,26.143234,5.179 543,-74.04404,264.15143,202.53389,463.5644,5.14 543,112.908936,231.90714,37.607666,45.96518,5.129 543,538.9312,235.27457,20.473938,35.184906,5.114 543,166.37476,194.5582,30.764557,53.01114,5.082 543,611.1306,241.37143,19.488098,47.208435,4.986 543,307.02786,223.95364,17.914215,25.634247,4.946 543,588.31006,234.47859,27.847412,59.213547,4.919 543,522.87524,248.23145,19.695068,32.37146,4.902 543,176.82385,225.1846,32.21878,59.553986,4.895 543,335.51144,198.76115,21.66745,31.305313,4.851 543,-40.637737,365.7129,111.16873,276.2932,4.842 543,463.48355,243.44421,23.683136,31.345093,4.728 543,428.74344,232.4333,17.647308,25.547836,4.661 543,546.65533,239.47636,20.249939,36.601974,4.648 543,1.9793713,355.57245,20.639856,41.436554,4.625 543,598.33246,233.21199,28.213013,65.05357,4.608 543,202.09583,213.50339,19.891754,35.67621,4.59 543,2.6053257,489.16962,19.32035,42.21277,4.578 543,290.85913,224.62495,20.93631,32.985855,4.528 543,262.43356,215.6646,28.012634,57.574203,4.526 543,376.7912,240.99179,22.606506,30.663177,4.522 543,315.20752,222.43399,19.136658,25.999802,4.517 543,2.0941865,-16.940983,18.173223,43.91897,4.5 543,-5.349619,348.623,17.306738,38.79187,4.435 543,435.9929,170.43686,30.224579,57.827682,4.435 543,603.7405,239.47722,18.171387,37.762375,4.429 543,536.5897,311.57806,142.7555,339.4444,4.428 543,3.2503939,162.4988,28.797684,83.96417,4.407 543,-9.206038,-7.313019,38.971535,100.71377,4.389 543,443.08353,229.37299,17.20337,25.82071,4.387 543,17.025223,148.81155,52.174614,116.303894,4.373 543,618.1074,239.66843,19.835022,52.394287,4.35 543,355.16577,244.71635,19.103668,26.417099,4.328 543,593.8711,475.80066,18.293335,30.94992,4.309 544,619.804,238.60493,17.358948,54.897507,11.437 544,468.51068,236.52576,17.89743,36.587982,10.747 544,505.0304,234.38014,17.921753,34.708206,10.747 544,603.99115,243.69887,16.43695,42.029465,9.545 544,223.91888,208.25757,22.106735,34.768143,8.386 544,626.9622,489.06052,19.863464,43.677216,7.999 544,-5.5351305,-16.82528,16.954165,42.48687,7.406 544,499.45065,238.45554,19.636017,40.666687,6.899 544,500.5943,232.75221,28.70813,57.65062,6.742 544,-5.8280635,489.09995,18.502514,41.652252,6.465 544,-11.511951,479.27536,29.308498,63.209442,6.449 544,474.7984,240.54591,17.681396,38.148727,6.368 544,451.99124,232.65872,18.822784,35.284454,6.363 544,528.8009,250.29193,22.285583,42.94336,6.293 544,514.7991,243.2659,31.156372,60.006226,6.238 544,231.27267,193.91202,21.091507,33.90114,6.1 544,446.56064,238.6497,30.007233,63.807602,6.014 544,501.08017,229.79118,16.235748,34.170822,5.999 544,461.68567,237.03477,28.596466,60.191025,5.948 544,611.0614,239.17865,16.58374,43.61377,5.943 544,492.39883,242.56436,18.059052,36.07312,5.91 544,627.4707,-17.304565,16.947021,45.443565,5.844 544,-11.350681,-32.0009,28.977594,72.55954,5.742 544,-17.033638,-63.228252,55.738316,144.25946,5.726 544,521.6974,244.07158,20.973633,39.317276,5.716 544,110.787,224.66104,36.788437,53.044067,5.705 544,613.0546,456.19318,39.34137,104.290955,5.549 544,361.65546,187.58682,21.578949,39.320435,5.524 544,459.442,239.5727,20.030853,40.12964,5.421 544,31.603765,220.64441,36.616936,58.479645,5.411 544,506.58392,220.7495,16.890137,36.82219,5.41 544,191.57393,222.36255,24.529953,33.58609,5.404 544,512.0814,242.56577,21.391418,40.462097,5.375 544,611.7825,-47.374424,41.008667,100.477356,5.359 544,163.78085,219.2277,32.37686,50.38127,5.359 544,532.1886,245.55057,30.251953,62.718628,5.343 544,-73.65667,264.09503,202.00375,464.24103,5.274 544,583.4884,412.17166,71.217285,176.2446,5.041 544,148.70454,191.25752,32.622604,61.847137,4.926 544,614.2699,259.70526,25.700256,75.74777,4.919 544,182.46866,228.98882,27.815933,35.412308,4.917 544,-21.702671,402.39548,79.12855,175.33163,4.83 544,188.755,239.23935,29.377594,33.1463,4.822 544,339.95905,176.02673,31.017181,67.11478,4.799 544,618.93054,490.4969,19.80487,40.8609,4.779 544,474.35913,231.42255,15.884552,31.127777,4.76 544,201.82669,217.18446,21.754303,30.0345,4.711 544,226.67023,190.51582,19.3228,31.038101,4.666 544,443.72388,246.85709,19.121216,33.77356,4.66 544,482.99072,236.39818,15.326904,31.241714,4.654 544,375.938,247.76294,24.137146,34.155945,4.63 544,220.95459,194.90977,19.541473,33.94461,4.601 544,369.46243,232.07079,20.011139,31.951187,4.594 544,536.2533,310.02338,142.92786,340.66266,4.575 544,283.13818,228.82571,33.37552,53.64914,4.554 544,230.80997,211.4606,22.047089,36.246918,4.534 544,219.7621,210.40593,30.216171,52.452408,4.528 544,564.98285,242.4005,16.135803,31.128738,4.517 544,226.08005,190.71613,30.385773,55.256805,4.484 544,352.74762,177.49722,23.869995,44.602478,4.427 544,486.33487,237.62094,28.994843,59.044983,4.355 544,493.68655,230.33696,15.019501,30.271194,4.321 544,97.1586,252.98285,36.39415,66.01898,4.258 544,499.5185,210.58093,16.064636,38.06302,4.249 544,369.60495,206.95663,19.399261,36.662262,4.248 544,368.17792,242.17961,24.241974,34.577682,4.21 544,218.21155,219.30037,22.52359,33.00627,4.2 544,299.04465,231.57442,31.399109,50.80443,4.194 544,434.01718,247.9588,19.826813,32.77484,4.189 545,347.1104,230.30653,18.06781,37.906937,25.394 545,526.5952,223.33469,23.49701,73.09839,23.043 545,580.3309,237.8707,28.060242,79.05798,16.06 545,388.2445,232.89494,18.044678,34.14894,11.144 545,513.87006,220.56267,28.223999,76.90193,8.164 545,382.13904,234.56224,28.421143,53.926468,7.828 545,592.3294,237.60356,21.132446,55.477158,7.224 545,-5.200881,-14.592173,16.875458,41.39011,7.186 545,-5.7983017,489.0028,18.541271,41.48352,7.164 545,-11.055388,478.66476,28.688961,62.72635,7.03 545,577.42053,240.8899,21.866455,56.025024,6.864 545,392.11307,244.52074,21.216522,36.229935,6.731 545,73.45593,209.32474,20.800194,32.26111,6.644 545,626.9333,489.10208,20.300964,44.355927,6.531 545,379.55914,243.81427,19.427246,36.428955,6.216 545,563.40704,248.75168,19.792358,53.63501,6.182 545,418.59772,236.34761,19.98233,39.675644,6.177 545,616.4248,216.6423,21.837646,70.43375,6.142 545,494.96445,236.52167,28.51065,66.01489,6.038 545,627.5245,-17.327888,16.994934,45.79771,6.019 545,411.01477,240.70175,32.438416,64.465576,5.91 545,362.5215,233.79599,16.0737,32.780518,5.846 545,401.60504,239.57495,20.768158,34.875854,5.774 545,-11.024075,-31.692978,29.693842,74.72483,5.768 545,535.8115,233.02164,19.232422,54.744446,5.738 545,362.74506,243.02866,18.783936,38.352142,5.641 545,370.5887,244.98161,18.413513,35.82048,5.577 545,568.02313,243.80194,27.700073,74.32703,5.572 545,603.6127,-55.361797,52.385864,137.98468,5.52 545,-17.293125,-62.212334,56.28881,142.8929,5.52 545,-21.047113,405.84973,78.15552,173.5564,5.497 545,341.48132,235.85161,30.085388,66.873245,5.445 545,339.55646,233.56326,20.346344,37.01001,5.442 545,468.66772,233.17369,16.2641,35.663193,5.4 545,452.33197,231.68077,15.245087,31.169907,5.361 545,51.848713,215.77344,19.412792,34.213287,5.333 545,425.43964,240.1926,20.76764,43.42685,5.3 545,353.5669,229.14235,16.471924,33.632065,5.186 545,333.43167,227.46169,19.461243,38.05986,5.169 545,73.60866,189.97685,21.039001,36.443558,5.139 545,582.9892,413.36346,71.54706,175.14606,5.137 545,356.14407,238.93413,29.640106,64.5284,5.103 545,613.1428,455.70587,39.139404,106.5954,5.063 545,68.71711,196.67908,31.496582,54.28717,5.011 545,623.4292,-34.60162,25.95752,75.03106,4.993 545,-73.23694,265.75946,200.66621,461.899,4.963 545,618.75604,490.66183,19.796326,41.8497,4.931 545,59.181892,216.75882,19.674118,33.4684,4.89 545,536.4056,309.55603,143.04205,339.45093,4.877 545,411.66156,235.12956,19.777924,35.929306,4.815 545,3.015337,-11.221272,15.554302,37.299282,4.789 545,433.83975,241.61678,20.231232,41.81877,4.781 545,427.0488,240.71309,31.604431,65.21565,4.692 545,443.62604,241.94568,32.198547,65.7146,4.627 545,213.36305,173.04962,31.09076,66.10002,4.589 545,393.38657,242.72754,34.518097,59.51819,4.587 545,232.20293,172.65152,22.45784,39.388947,4.555 545,243.2313,221.6299,17.731903,37.619278,4.553 545,79.29612,181.91255,22.200294,32.066513,4.538 545,348.9173,220.75119,25.765442,51.273346,4.538 545,-3.7883413,427.22556,15.587581,40.764496,4.522 545,505.2249,219.8164,21.523438,55.754883,4.512 545,354.1525,239.02771,19.388733,40.562256,4.496 545,66.38465,213.68057,20.607727,32.45822,4.489 546,229.91815,226.17189,21.682617,42.58412,44.349 546,579.8292,229.27097,28.74408,79.88971,8.993 546,469.9619,221.93262,27.242126,82.59497,8.78 546,-11.928804,478.498,30.48987,62.987366,7.895 546,297.19882,225.62709,19.374023,34.00853,7.808 546,442.32935,228.42203,19.370789,44.560486,7.401 546,-5.2814293,-17.152273,17.006617,42.584553,7.148 546,556.9019,223.9153,31.079712,93.191025,7.015 546,238.66096,225.94398,21.53389,42.211807,6.903 546,-6.3677216,488.90134,19.54505,42.724274,6.838 546,113.336136,229.98471,30.38092,55.737427,6.587 546,338.68332,215.30832,16.904633,38.405594,6.519 546,419.83142,236.27878,16.639404,28.018402,6.488 546,289.9802,228.63843,19.809784,34.712677,6.416 546,-11.383134,-32.318913,29.872448,73.48239,6.098 546,289.18124,243.08197,21.609436,38.32184,5.927 546,364.07452,227.89563,16.59076,29.505981,5.918 546,612.8547,454.00824,39.50055,107.10687,5.869 546,626.51843,487.06537,20.841248,46.841187,5.838 546,3.638937,-14.189714,15.93438,39.558624,5.671 546,-20.98386,405.75644,77.86338,173.6885,5.545 546,314.3851,230.37915,34.507996,61.864502,5.524 546,627.59534,-16.790924,16.889282,45.770172,5.515 546,456.73795,222.95197,26.56192,74.906006,5.451 546,403.49185,236.14143,17.450409,34.754684,5.438 546,566.32153,204.55626,28.346619,92.73787,5.43 546,396.4533,230.59883,17.065643,35.533737,5.418 546,357.5363,225.91396,16.459534,31.69606,5.416 546,336.47992,226.43222,22.093964,42.352142,5.412 546,278.6421,225.37677,30.18509,55.25586,5.405 546,427.41788,256.52167,32.1268,58.946777,5.369 546,314.53793,228.06694,22.6904,41.767624,5.352 546,412.65866,232.52008,15.633301,26.57074,5.291 546,-17.76496,-62.69939,56.257782,142.41714,5.13 546,437.84702,232.26352,26.90683,65.352905,5.076 546,626.5831,84.29125,17.32611,41.712425,5.064 546,514.12427,224.3654,18.606812,40.39601,5.063 546,427.0897,228.477,17.611298,28.44661,5.043 546,447.1067,222.37679,26.313751,69.30394,4.913 546,328.59485,222.22014,22.912231,44.54869,4.901 546,243.99518,238.44968,32.477325,63.30655,4.9 546,248.94167,233.92618,21.26979,36.34082,4.895 546,-72.61285,265.98676,200.57193,461.25958,4.853 546,379.04465,226.38821,15.909546,32.64804,4.842 546,285.24188,223.42816,18.166992,35.67285,4.837 546,314.46997,217.7445,18.46576,37.925964,4.806 546,536.5339,310.47162,142.90118,340.07568,4.79 546,435.07635,222.49567,18.846222,31.693268,4.784 546,10.77529,-15.060707,16.359291,39.505283,4.778 546,623.34283,-34.906963,25.92102,75.596695,4.757 546,614.3684,208.6977,26.238586,78.58652,4.737 546,582.828,412.67383,71.98828,176.79791,4.735 546,371.7413,227.50598,15.870636,30.386475,4.717 546,590.0065,202.6773,27.442139,82.55945,4.645 546,603.908,-55.21385,52.317078,136.28345,4.617 546,426.15002,261.23578,20.54425,36.00363,4.55 546,5.130171,470.32364,38.36254,90.86783,4.515 546,114.6206,219.08998,22.175072,46.829453,4.497 546,4.4908705,436.99057,16.357235,39.044952,4.466 546,422.44006,220.39696,27.869843,54.21791,4.461 546,4.306616,455.84726,15.507687,34.85367,4.44 546,251.1959,218.43747,17.30104,35.320404,4.377 546,-3.435973,444.1874,15.26508,39.049408,4.359 546,348.17093,222.38573,16.36557,34.189224,4.357 546,-8.9002905,-5.6318474,38.462,98.526276,4.348 546,494.37366,230.0632,237.09698,511.59976,4.337 547,176.28297,229.18266,26.332672,49.75798,84.755 547,516.2695,226.9666,26.688599,72.80202,12.01 547,432.70245,225.02817,20.806152,55.3414,9.563 547,266.45483,224.23433,19.013367,38.57567,7.784 547,-5.1575637,-16.073286,17.361713,42.663303,7.605 547,-12.12015,478.7501,30.237223,62.50772,7.497 547,627.12744,488.2889,20.20404,45.243927,7.436 547,333.60825,227.11012,15.302765,30.717087,7.343 547,505.63785,224.99477,26.458954,74.65645,7.203 547,289.99408,235.78897,21.033417,38.71225,7.072 547,189.91907,231.5083,24.52095,45.315674,7.055 547,-6.3142724,488.53802,19.268162,41.969055,6.864 547,612.92615,453.3415,39.75232,108.42145,6.749 547,405.1543,246.56558,15.099731,24.19159,6.733 547,-10.606468,-31.895731,29.69506,74.18602,6.697 547,427.5429,223.83333,18.294952,42.046555,6.043 547,627.4548,-17.31345,16.959839,45.584797,5.959 547,0.18323898,137.36626,20.426048,47.23282,5.756 547,496.6198,225.06747,25.43988,71.51199,5.578 547,339.3595,226.51704,15.671082,30.594162,5.57 547,-17.93333,-63.150146,56.216507,144.16716,5.476 547,438.32104,217.88799,24.204407,64.760086,5.445 547,-20.99644,405.89264,78.26997,173.14441,5.329 547,274.93045,229.16698,42.32013,79.13893,5.325 547,623.4648,-34.73774,25.938599,74.79733,5.207 547,266.5092,244.94676,18.732452,31.655014,5.141 547,-4.354447,5.1791077,17.73363,40.876663,5.083 547,-39.894173,369.82397,109.7098,274.6029,5.073 547,273.7499,246.28725,20.256134,31.872879,5.071 547,-5.1044774,106.47824,16.986544,41.400467,5.056 547,0.57019234,154.79994,21.113379,53.214127,5.036 547,-72.71331,265.8214,201.07425,462.26672,5.035 547,296.86954,243.31326,21.535828,36.990845,5.029 547,3.062657,-13.208967,16.427937,38.88193,4.99 547,200.75253,229.80327,22.659698,45.13118,4.925 547,2.172531,125.655525,18.341076,37.81884,4.873 547,513.73346,215.20087,20.217712,62.102448,4.866 547,210.04706,235.03772,22.457123,40.765625,4.862 547,-4.7679358,28.26748,16.718128,39.099625,4.833 547,396.44147,250.50587,18.972168,29.830734,4.822 547,-5.629439,124.64619,17.961332,39.600975,4.79 547,536.4158,309.31335,143.12036,341.4101,4.776 547,-4.601131,231.60307,16.889076,43.604965,4.758 547,603.77893,-55.46151,52.622498,137.0597,4.751 547,449.02042,225.13202,19.506866,49.71689,4.749 547,282.76422,245.93544,20.553558,34.249496,4.734 547,487.34186,221.21976,25.369751,75.39392,4.713 547,-5.114308,87.3089,17.50382,46.781784,4.649 547,410.137,248.14787,18.319855,33.007767,4.627 547,618.75824,489.77295,20.44458,43.151184,4.609 547,501.43796,255.33223,29.939545,76.68446,4.605 547,583.23016,410.00275,71.657166,178.88885,4.604 547,-5.0217714,43.64759,16.703335,40.587273,4.573 547,258.6524,243.95459,19.656616,32.363464,4.545 547,478.54935,230.60065,25.620392,70.71979,4.526 547,528.04736,231.23502,20.216064,49.80652,4.511 547,290.08466,231.38672,42.64081,81.45398,4.489 547,5.049762,470.52164,38.33717,90.841034,4.406 547,1.8157709,489.72,19.902163,40.77292,4.324 547,386.93207,246.9759,19.412903,31.375809,4.286 547,213.87848,218.17314,26.58194,55.1335,4.278 547,-10.124669,25.520838,27.726063,63.16754,4.267 548,116.45093,224.22917,31.935867,65.71712,98.169 548,491.7596,203.03731,28.756805,84.89354,13.106 548,236.58586,221.88776,18.237228,43.92099,10.625 548,424.1469,222.67734,21.303284,37.786835,9.425 548,-5.136516,-16.889162,16.945486,42.309704,8.351 548,626.95526,-17.757412,17.585083,47.121666,7.572 548,-10.973472,-32.083763,29.643097,72.84296,7.428 548,-6.0634146,489.28903,18.928911,41.31436,7.373 548,-11.44569,479.05338,29.390797,62.726166,7.337 548,622.28625,-33.559288,26.927063,74.65831,7.241 548,626.66614,489.78088,20.91272,44.42401,6.993 548,155.6717,220.08957,33.680405,59.343506,6.943 548,419.47675,229.8223,19.884247,37.138367,6.581 548,613.5526,453.04868,39.572083,108.04642,6.382 548,403.92148,233.9779,17.826904,32.23816,6.351 548,595.0418,224.96124,20.138428,38.85968,6.29 548,3.2692218,220.61685,29.730202,71.94119,6.247 548,509.19043,203.61586,30.143005,85.22148,6.217 548,603.35657,-56.004208,53.174866,134.71431,5.996 548,128.15184,219.18533,21.823257,39.098724,5.925 548,548.5131,226.78592,17.57019,32.683716,5.904 548,-0.60680985,249.93607,23.359247,53.808716,5.836 548,107.298325,207.06342,51.679398,91.57495,5.676 548,3.466093,-15.026864,16.442028,39.05676,5.627 548,618.95496,491.83276,20.292297,41.236572,5.534 548,-16.927725,-63.47087,55.05574,144.24144,5.491 548,-21.219692,405.1695,78.297134,173.47534,5.252 548,169.56415,215.98193,20.528778,37.87088,5.175 548,432.55194,222.7619,20.371063,36.020508,5.121 548,110.99937,208.01189,27.537346,68.16365,5.103 548,-72.822556,264.95734,200.62523,463.2613,5.062 548,500.11414,191.03204,29.91626,88.78735,5.037 548,587.7709,228.22688,19.121094,35.671402,4.925 548,411.06116,235.21329,19.056305,33.10504,4.908 548,145.09235,229.50015,43.019257,75.51288,4.724 548,126.21629,223.9518,34.529327,56.09529,4.694 548,613.9231,-20.999191,26.353638,71.13099,4.624 548,441.82907,247.6848,20.228363,35.731552,4.613 548,583.404,410.15833,71.66687,178.33148,4.57 548,536.61676,310.22543,142.9693,340.50113,4.547 548,433.73602,235.5195,18.883057,36.10962,4.518 548,172.04124,218.43452,28.730026,56.260605,4.517 548,-7.403513,190.52922,26.263733,82.54491,4.504 548,601.55023,230.07516,20.311829,40.73703,4.491 548,619.17865,-17.470423,17.601807,44.28009,4.453 548,251.03589,222.33421,18.799866,38.788498,4.436 548,570.8279,226.7604,18.705994,32.192596,4.435 548,-3.6968207,435.2867,15.328466,40.16971,4.412 548,397.4271,227.44385,14.143311,31.23056,4.389 548,332.3732,217.61821,16.352417,35.43599,4.386 549,29.969366,226.3974,46.215904,93.8147,93.853 549,140.54099,218.34247,31.78595,66.88858,12.877 549,618.82776,216.85217,17.587769,43.457214,11.489 549,145.42726,217.44147,23.12886,41.979065,10.883 549,587.56805,220.32579,18.366272,42.24733,8.311 549,-11.384288,478.7659,29.651455,63.31552,7.537 549,626.8102,490.86624,20.376648,41.769684,7.416 549,627.04926,-16.509632,17.454773,43.96922,7.412 549,7.5713778,227.51851,41.394173,95.15672,7.356 549,-6.0192323,488.49368,18.737268,42.83023,7.348 549,162.34056,219.38258,20.859222,42.13173,7.117 549,-5.267144,-17.328957,17.288696,43.001194,6.973 549,623.2062,-34.345436,26.187378,73.31983,6.539 549,-11.178941,-31.635456,29.652,72.6096,6.312 549,225.05814,220.47337,19.214615,42.22322,6.121 549,410.33664,248.0815,20.842194,30.018204,6.007 549,21.173021,245.51547,37.37664,73.309204,6.006 549,603.7289,214.36754,17.12091,40.104034,5.944 549,613.49634,453.03677,39.648804,110.030914,5.941 549,584.03375,197.68558,28.320557,63.4133,5.896 549,525.8477,183.08667,26.345825,69.01926,5.885 549,440.81253,238.00722,21.501953,32.383713,5.734 549,3.0045998,254.47318,34.085365,64.1817,5.721 549,603.28723,-54.65539,52.85608,134.48364,5.515 549,626.2295,222.3302,18.700378,47.279694,5.396 549,-73.153244,263.78815,202.14546,465.1109,5.309 549,418.1004,249.11597,20.968445,28.627258,5.283 549,-16.975615,-63.652042,55.67582,143.77745,5.265 549,3.4218903,-15.098486,16.244442,39.60878,5.228 549,-17.27125,440.06412,54.93685,135.39554,5.158 549,282.95206,245.92387,19.030945,31.097336,5.129 549,-14.9822035,224.98215,52.76511,130.33951,5.044 549,-4.736729,153.10645,16.231367,43.69458,4.961 549,-40.204697,367.8139,110.25367,275.84406,4.914 549,-5.19328,184.38266,17.104969,42.040207,4.912 549,619.64014,-16.302929,16.916199,40.399197,4.889 549,178.03421,220.68307,18.60083,48.05966,4.782 549,412.61365,236.83932,15.787231,32.315674,4.77 549,619.4593,494.8826,19.20105,36.881866,4.763 549,-0.30338526,269.80338,25.48957,44.873596,4.736 549,123.14338,214.08379,35.51702,71.3654,4.731 549,583.7551,411.40463,71.49213,176.84268,4.701 549,450.20013,246.17581,19.641144,29.653381,4.63 549,535.9712,309.963,143.99658,341.76086,4.629 549,586.2037,488.89645,20.732605,42.32547,4.604 549,577.6301,488.5007,21.404968,42.85147,4.567 549,166.33896,208.81635,27.861298,57.00003,4.473 549,612.5732,216.55215,17.41925,38.53473,4.468 549,371.0996,224.70561,17.826141,36.410416,4.436 549,627.5306,132.72768,17.034546,42.980255,4.424 549,289.87988,244.37155,19.71762,31.775146,4.413 550,101.68423,212.13995,30.939781,61.40094,19.762 550,202.39572,221.82971,19.996628,46.879395,13.485 550,596.7803,222.68408,17.817932,50.305695,10.895 550,408.70117,246.30003,23.195923,39.350662,10.359 550,-4.4738393,-16.448597,16.706532,41.98446,7.743 550,86.55311,209.1213,34.39956,65.89914,7.357 550,621.69977,477.2229,29.070007,66.943115,6.906 550,-12.083731,477.57974,30.068224,64.02969,6.661 550,-10.398187,-32.308933,29.680332,72.778206,6.373 550,627.4417,-17.35154,16.982666,45.676914,5.933 550,-6.148207,488.619,19.156826,43.241913,5.848 550,-17.147345,-63.7567,55.62848,143.81155,5.739 550,596.2809,308.4545,32.04834,63.032135,5.615 550,604.27325,438.4887,53.952454,135.5982,5.509 550,116.231705,211.37923,27.146393,65.837875,5.49 550,390.5583,240.84042,30.7305,55.709045,5.329 550,-20.981518,405.2583,78.33771,173.52441,5.293 550,583.858,313.1776,24.72644,39.55179,5.249 550,3.4289126,-13.304953,15.824846,38.50219,5.179 550,623.4538,-34.809216,25.956604,74.991745,5.167 550,-73.061745,265.3604,201.41348,462.87433,5.154 550,-39.82826,368.8486,109.997314,275.33047,5.02 550,618.00824,488.228,21.384705,44.687653,4.921 550,363.8294,229.74336,16.07367,30.864243,4.891 550,329.05792,240.70972,23.4122,40.43091,4.89 550,-4.878673,411.05136,16.394274,39.27112,4.875 550,360.2815,244.53818,24.224396,39.05197,4.86 550,405.39453,221.46948,14.933685,32.06427,4.769 550,76.50752,214.23537,33.626266,70.75462,4.613 550,138.9283,218.10594,16.533066,41.584427,4.609 550,603.90894,-56.193165,52.69049,136.1389,4.596 550,517.3008,182.34282,26.931274,73.55763,4.59 550,-4.8801603,23.335575,16.816528,42.337856,4.571 550,-4.850864,135.80257,17.27419,44.679855,4.559 550,536.23584,311.51163,143.52563,339.916,4.532 550,356.2584,229.3327,16.828339,30.250153,4.459 550,493.8247,228.67032,237.01038,514.7742,4.323 550,29.25936,234.5952,34.394432,64.84267,4.3 550,130.11357,150.66074,32.102448,72.56015,4.29 550,272.66968,245.02495,22.516571,36.558517,4.259 550,-6.2996984,262.52896,19.098223,41.242035,4.237 550,435.28607,223.27333,18.833038,35.001755,4.23 550,429.42358,232.55185,29.291779,49.597412,4.198 550,529.6854,185.73683,25.512817,72.07384,4.169 550,-5.888074,89.7315,17.927818,41.505623,4.163 550,4.958249,470.77612,38.617527,90.85974,4.144 550,413.053,215.52744,15.3638,30.276917,4.116 550,418.98895,236.83472,30.093414,49.11841,4.098 550,233.1879,206.58902,20.707428,41.875244,4.065 550,415.78534,241.88956,19.924072,35.46826,4.056 550,314.39777,241.15018,21.46878,36.45752,4.022 550,-38.278633,-128.22093,117.27414,281.01965,4.006 550,1.8144941,489.98837,19.923695,41.573883,3.993 550,6.679454,172.83339,28.13076,74.85582,3.967 550,-5.6908045,105.019905,17.706852,42.835625,3.948 550,207.72952,219.45534,20.98941,36.472168,3.947 550,235.10179,175.29558,19.705505,40.63559,3.885 550,267.46603,189.35233,17.94635,44.203857,3.847 550,308.461,211.13565,16.505463,34.77469,3.841 550,404.80426,242.28911,19.03479,34.90602,3.839 550,322.58887,203.7482,18.380035,36.830276,3.829 550,126.80803,195.7275,27.776413,68.188065,3.822 550,532.8277,-188.23972,145.86932,434.0393,3.807 550,-9.607761,-6.3343124,39.753685,99.761375,3.803 551,96.56147,215.01447,23.381432,44.44211,10.889 551,327.21588,243.87247,25.517944,46.26657,10.653 551,77.99733,211.58942,28.49295,61.197937,9.632 551,310.7828,238.85097,30.431671,61.632065,7.847 551,585.2461,219.66925,20.241028,41.318268,7.651 551,294.146,237.64474,30.092255,61.005066,7.036 551,-12.262886,479.2408,30.284637,62.336212,6.895 551,-5.5120444,-16.802029,16.730976,43.019104,6.63 551,304.26367,237.16765,22.52887,41.90352,6.614 551,626.2926,487.27148,20.731873,47.32782,6.512 551,308.5598,230.89793,14.7230835,29.697067,6.472 551,-6.3153877,489.3094,19.160378,42.40094,6.447 551,589.6307,222.76306,27.946716,54.422913,6.276 551,16.761215,209.81342,22.836533,53.07248,6.133 551,572.9991,223.32681,30.094238,51.79901,5.971 551,627.4551,-17.27787,16.937683,45.492466,5.922 551,530.3374,221.689,21.53418,39.25052,5.855 551,612.64795,457.42355,39.0849,103.884674,5.798 551,-17.082512,-63.831932,55.962547,145.95992,5.676 551,-4.142498,216.27791,16.327995,42.16606,5.583 551,558.88214,224.46332,23.500427,48.29126,5.549 551,-11.237446,-32.61771,29.251411,74.94088,5.541 551,-16.942272,440.66083,54.631237,135.03229,5.494 551,601.79865,234.08372,20.985962,39.973648,5.481 551,578.1269,212.399,20.11322,44.45961,5.344 551,583.3605,414.04047,70.94562,175.39215,5.317 551,315.24063,238.79846,18.955475,33.76602,5.147 551,623.42664,-34.731445,25.980103,74.8219,5.12 551,36.670612,206.14206,30.920284,66.04883,5.091 551,-73.099625,265.8354,201.36748,461.47675,5.052 551,-39.63674,369.9331,109.47833,274.27722,5.018 551,277.63992,241.19455,29.752655,60.944458,5.012 551,592.0519,327.63953,24.434326,37.098145,4.928 551,-9.384402,145.62292,28.771347,77.42609,4.926 551,618.04205,488.03134,20.849792,45.274445,4.925 551,4.9213977,220.30208,17.149902,45.48442,4.848 551,619.13904,229.32068,17.45697,38.45752,4.744 551,42.11911,220.14072,20.46177,43.505676,4.67 551,347.62427,227.57762,33.313232,57.995926,4.645 551,603.671,-56.207848,52.821228,137.53548,4.627 551,107.623634,204.7295,32.058678,55.472733,4.596 551,33.47062,211.28896,22.357895,47.439407,4.583 551,124.43607,188.95656,30.645699,63.07872,4.579 551,535.91394,311.54822,144.41998,340.0421,4.578 551,18.904516,188.14856,32.238197,68.08804,4.541 551,570.92126,207.20198,21.299316,43.951447,4.52 551,584.37787,240.16762,23.301758,39.671463,4.461 551,628.0036,95.16802,15.882568,40.308434,4.433 551,250.70447,233.74123,32.769714,61.554276,4.411 551,493.58127,229.24423,237.29611,514.55176,4.401 551,490.24326,232.53094,20.575348,37.09207,4.4 551,5.2564993,470.22992,38.215126,91.09454,4.34 551,317.28452,214.2609,14.61618,30.618912,4.329 551,610.91986,235.09674,19.65509,39.14496,4.288 551,439.32968,177.96976,25.723297,71.51573,4.276 552,379.59723,219.22226,32.58264,62.225647,14.045 552,394.91003,216.21164,31.781921,54.092346,12.901 552,627.7349,489.2394,18.90924,43.624176,9.519 552,537.5619,335.66437,36.71814,61.779297,8.342 552,408.1331,228.03778,23.954163,41.6037,8.259 552,555.04004,335.43732,33.555786,64.15909,7.746 552,344.097,328.8612,40.00653,61.539368,7.717 552,358.98502,328.42816,40.84027,56.512238,7.629 552,340.4993,226.36853,25.799042,40.82614,7.567 552,439.2555,331.56104,40.179504,60.10092,7.512 552,-11.145644,479.08594,29.034477,62.911865,7.351 552,521.1109,334.49423,37.880676,63.838684,7.281 552,101.39348,237.90106,32.420914,59.387634,7.192 552,569.70795,337.01865,34.43689,63.687286,7.185 552,627.2243,-16.931435,17.423767,43.543118,7.073 552,4.019396,233.77847,18.343893,35.337402,7.056 552,-5.8725843,488.66418,18.908443,42.573486,6.808 552,4.864657,223.3467,29.308367,59.1978,6.711 552,415.5794,222.6556,21.979767,40.1035,6.611 552,390.9471,336.14554,40.62671,62.054565,6.575 552,623.2663,-34.881203,26.34253,73.95804,6.574 552,407.08774,335.18417,40.56012,62.55887,6.495 552,504.07745,329.01114,39.98346,61.03125,6.464 552,374.38928,330.73062,41.350433,60.032867,6.439 552,423.1795,334.18176,40.7005,63.263855,6.31 552,328.83148,328.19983,38.47336,59.83731,6.286 552,587.18414,342.68115,34.226624,60.849335,6.173 552,9.48471,229.14362,19.978775,36.572144,6.067 552,454.75522,336.07007,40.784332,62.209473,6.017 552,620.16815,491.44183,17.962097,39.115723,5.915 552,613.218,455.19888,38.766174,105.53708,5.891 552,448.25528,356.1877,38.131317,67.71698,5.862 552,597.3978,357.7833,30.22113,70.167816,5.857 552,-11.447459,-32.838295,29.790215,73.0787,5.72 552,523.31104,239.8422,16.053406,30.886292,5.663 552,-17.19164,442.73087,54.49919,133.2012,5.578 552,398.73297,350.68826,41.007812,62.890747,5.572 552,-17.630985,-64.15599,56.580975,145.29196,5.502 552,487.83118,329.699,40.846558,60.507843,5.484 552,603.29834,-56.416645,53.241028,136.40317,5.43 552,-5.822459,-18.06834,17.499138,42.69596,5.417 552,470.4268,341.3672,41.1951,64.49982,5.304 553,132.1525,208.59645,32.055954,62.936752,9.203 553,475.59546,246.08142,33.59796,58.851196,8.973 553,540.96924,256.46936,15.389038,21.0719,7.967 553,627.21515,488.28967,19.888733,44.762817,7.773 553,586.72906,249.8339,18.382996,30.205872,7.607 553,74.12105,215.50247,30.895958,55.446777,7.54 553,150.96037,217.88235,26.736313,45.159363,7.485 553,538.8715,273.99506,20.40564,31.431366,7.319 553,461.0763,241.68037,31.120026,58.912033,7.24 553,603.2473,-55.28193,53.27771,137.5374,6.991 553,217.32166,346.4032,35.953094,69.4389,6.945 553,200.69435,345.18784,37.910248,72.91287,6.741 553,546.5938,274.7501,19.94696,31.154938,6.665 553,488.83972,253.27269,34.600586,56.364212,6.495 553,556.50037,257.3116,14.8168335,19.777832,6.49 553,184.83879,337.59946,36.80446,62.47162,6.435 553,55.63373,371.98157,38.482845,63.826782,6.384 553,120.6082,369.43396,37.866623,66.08823,6.31 553,555.302,274.67307,18.620178,31.283722,6.26 553,105.00702,369.14587,37.47525,66.63754,6.223 553,-6.098012,489.5908,18.414772,42.136566,6.201 553,612.94885,456.08032,39.371155,104.89349,6.076 553,627.6133,-17.361393,16.896667,46.246494,6.054 553,548.5564,257.51672,14.612976,19.794556,5.733 553,495.22443,243.31299,22.205322,52.337402,5.692 553,233.7497,355.18024,36.145477,71.07648,5.652 553,-5.728017,-18.0247,17.426205,42.84985,5.65 553,40.500927,377.39258,37.830807,64.83551,5.635 553,152.38661,336.6531,37.636826,62.763794,5.624 553,2.8969002,353.82632,33.059647,76.946625,5.623 553,-11.314811,-32.42146,29.639011,72.611145,5.58 553,-17.637753,-64.388565,56.59928,148.04935,5.567 553,597.038,260.44128,30.04895,65.64801,5.531 553,15.751781,359.6491,37.51972,66.73517,5.472 553,-11.557806,479.724,29.27957,60.948486,5.461 553,168.31845,339.18344,38.99083,69.989716,5.461 553,593.151,250.33385,18.8208,31.551315,5.453 553,71.95533,371.58084,38.66928,62.71173,5.453 553,531.6359,257.0121,18.730713,31.684845,5.422 553,444.33502,241.64178,34.5307,56.50348,5.369 553,530.3251,273.74667,21.70691,32.25638,5.267 553,115.35732,210.59088,32.96209,69.28479,5.263 553,95.3405,342.74805,40.409744,68.19562,5.251 553,571.303,272.6943,18.945984,33.51175,5.229 553,-75.031624,263.41235,203.63025,465.43298,5.227 553,618.99286,490.2028,19.891052,41.812042,5.21 553,111.91143,343.17886,39.02027,67.576355,5.187 553,623.5331,-34.585285,25.749512,75.950615,5.13 553,265.81165,362.53976,35.353546,72.219025,5.11 553,562.7728,274.26663,19.237488,32.230408,5.1 553,66.649864,217.752,41.65818,86.34715,5.085 553,136.46973,369.50974,37.215866,65.385895,5.077 553,602.3914,249.17638,18.094177,32.580887,5.07 553,454.9845,232.52002,29.111511,52.632446,5.033 553,583.1574,412.3568,71.86792,175.75958,5.021 553,88.90206,369.97858,37.59146,65.31836,5.003 553,563.5953,255.78745,15.548462,21.878082,4.995 553,512.77734,279.9893,23.284119,30.05008,4.991 553,536.4021,310.32364,143.41699,338.7451,4.956 553,250.69078,357.0995,34.396683,73.3656,4.939 553,97.60769,222.03156,44.019615,84.0108,4.934 554,108.57829,230.45494,31.310959,60.02214,10.454 554,363.716,237.10524,32.55966,60.703293,9.601 554,405.17505,236.17673,14.610352,24.075928,7.309 554,505.66278,243.22522,20.618652,35.45764,7.063 554,-6.1312175,489.44473,18.180428,41.70938,6.572 554,-17.382126,-62.83246,56.161797,143.77896,6.332 554,626.53516,487.84103,20.433472,46.502106,6.331 554,627.4419,-17.480474,16.99768,45.744442,6.031 554,459.79865,234.41205,18.501953,30.638062,5.842 554,-5.871944,-16.965427,17.775879,43.00917,5.686 554,540.4857,252.1742,15.266663,32.35553,5.544 554,627.615,60.437782,16.100159,43.967514,5.537 554,603.2455,-56.87871,53.141357,140.3652,5.512 554,619.3521,245.46693,17.947327,44.183273,5.498 554,-11.627635,-33.02034,30.027905,74.33743,5.397 554,-11.462505,479.6154,28.679426,62.104706,5.346 554,557.96497,247.55888,12.845947,26.116287,5.344 554,453.8939,236.61263,16.296509,28.005478,5.337 554,623.51953,-34.63614,25.885925,74.77012,5.325 554,565.54333,247.80194,13.670044,27.290588,5.322 554,421.357,238.92052,13.760071,24.017227,5.249 554,612.5871,457.27136,39.41736,104.00525,5.246 554,65.42892,228.11389,43.08349,78.97156,5.218 554,413.45108,240.07014,13.914703,23.522995,5.193 554,-3.8571706,203.69707,15.794203,38.346497,5.172 554,547.96936,251.54752,15.375,30.850586,5.171 554,12.6970625,-19.32769,57.423016,119.97135,5.166 554,583.0246,411.92557,71.99585,177.25735,5.153 554,113.93422,222.5842,21.377747,43.561676,5.147 554,588.17645,251.33119,16.983887,32.669205,5.09 554,589.0069,241.682,14.564819,28.016571,5.081 554,93.65724,213.54031,51.897903,95.04831,4.979 554,512.9992,244.31992,20.5578,36.17572,4.958 554,-73.5315,265.32718,200.93251,464.10312,4.874 554,580.06696,245.34119,15.526428,30.827515,4.857 554,450.80356,239.03325,42.035492,91.41493,4.845 554,536.5309,311.38,143.4386,338.14648,4.795 554,113.21555,232.68686,42.4645,72.785034,4.73 554,572.6333,246.40747,14.584351,29.218384,4.673 554,512.12427,229.24081,20.083252,37.41742,4.671 554,397.62234,234.18605,15.0034485,26.23735,4.662 554,339.09924,243.54822,34.530365,62.49524,4.641 554,-5.775285,234.40147,17.73509,40.13707,4.587 554,614.1919,480.93298,27.637024,62.23401,4.579 554,-37.075264,-124.72688,117.4451,272.9074,4.561 554,-8.568,464.71994,37.201183,90.92856,4.556 554,427.40973,238.91992,14.625946,23.521332,4.536 554,419.35306,262.75342,17.839996,30.546661,4.534 554,-4.569742,219.82576,16.18642,38.794052,4.528 554,-40.6512,364.4917,110.7608,278.67816,4.521 554,320.68738,220.64859,20.72931,32.06082,4.438 554,69.63724,233.6214,26.554184,47.630432,4.429 554,-5.7716208,75.48947,17.839516,42.525093,4.427 554,-4.7682486,316.20917,15.596362,35.437805,4.402 554,129.69115,233.58536,42.411514,73.4259,4.386 554,2.2812438,490.855,18.38317,39.397125,4.375 554,494.6652,229.77985,236.7656,511.88513,4.321 554,532.3656,251.22812,16.422852,34.12491,4.294 554,523.47894,248.2787,18.30835,35.171097,4.29 554,619.7187,226.27538,15.155823,34.076035,4.288 554,-3.7912502,186.77798,16.130957,39.64566,4.284 554,596.14417,247.93236,17.26654,33.625473,4.253 554,386.41266,243.25592,41.968384,81.16516,4.232 554,596.1925,237.77158,15.548706,27.564545,4.188 554,612.5825,231.55212,14.654785,27.12085,4.187 554,42.7303,-34.342854,58.099052,123.413925,4.164 554,10.761313,203.72849,56.647644,116.524506,4.128 554,3.1026983,143.5829,16.896534,47.120667,4.107 554,315.3555,250.70094,33.911804,55.425858,4.097 554,477.8409,221.48561,27.432587,51.265823,4.091 554,368.0379,252.70752,35.877136,61.302246,4.086 554,-4.92125,43.167946,17.16302,43.890175,4.085 554,490.18567,227.72902,20.850647,39.027237,4.066 554,445.91397,237.69167,15.398163,24.899857,4.064 554,578.86523,257.7405,18.816528,37.54364,4.054 554,-14.899385,16.81076,49.390312,148.05232,4.051 554,90.1162,-14.41753,18.038628,38.893436,4.023 554,228.64688,486.13974,30.775604,56.191376,4.022 554,434.63443,239.89343,42.053223,91.27429,4.019 554,549.15594,235.28598,38.786682,96.54526,4.011 554,426.848,262.30087,18.377808,30.507233,4.01 554,532.97815,244.27142,28.26001,59.5459,4.001 554,81.943695,238.49588,44.255455,84.71283,3.997 554,418.9549,239.81897,41.429443,90.45532,3.987 554,411.99344,260.87338,17.749237,31.022705,3.978 555,433.87814,225.61003,28.09787,64.69209,11.719 555,3.0410933,194.32997,25.095877,63.190414,11.146 555,515.25006,230.15889,17.011963,26.959885,9.138 555,-6.194169,488.48087,19.127739,42.865753,7.736 555,578.38025,232.73434,21.312927,38.709473,7.547 555,468.6124,232.82274,14.997223,24.470749,7.415 555,509.13464,231.61563,16.388916,26.153717,7.411 555,461.40988,231.55544,15.656036,27.785843,6.969 555,-11.7472,477.7209,29.997883,63.87793,6.882 555,475.98218,232.81293,15.450439,23.470367,6.567 555,530.7927,223.8588,19.366028,35.426178,6.538 555,626.3683,487.68948,20.75946,46.771942,6.338 555,-5.555581,-17.758444,17.657831,43.111313,6.282 555,-12.212612,-40.4562,41.300232,98.81467,6.153 555,627.41846,-17.51383,17.038452,46.01398,6.109 555,603.49976,-54.971428,52.84961,137.38994,5.956 555,369.33466,216.0757,23.785522,35.713577,5.904 555,523.3773,228.1015,18.045898,29.241882,5.875 555,-4.232054,192.54488,19.548891,46.78035,5.831 555,11.398415,199.9641,30.679127,62.16246,5.754 555,426.63855,19.130714,34.16211,87.87399,5.621 555,612.9266,456.1392,40.0036,104.908356,5.362 555,164.13225,215.92673,30.826416,69.43323,5.354 555,623.60956,-34.64904,25.718323,74.951965,5.212 555,500.77533,231.26826,16.756348,25.87355,5.192 555,583.3156,410.17413,71.56482,178.23407,5.114 555,492.0251,230.93605,16.573364,24.968506,5.04 555,23.536247,212.8936,23.104034,42.90367,4.961 555,10.522926,-31.215229,58.33274,126.507065,4.948 555,-39.42402,370.0062,109.33002,271.54495,4.868 555,536.44366,310.62488,143.79309,341.15027,4.867 555,562.51215,220.00243,21.766785,38.16475,4.866 555,483.3925,231.85297,16.368835,24.097458,4.801 555,19.710487,221.1361,30.894905,56.622604,4.783 555,-74.48088,266.21893,201.76442,462.09088,4.781 555,-8.995731,177.98235,30.109154,67.54184,4.78 555,2.346775,489.68115,19.47755,41.791016,4.776 555,-36.8954,-124.50155,117.00864,274.3157,4.72 555,-7.2054996,199.41757,36.734985,92.694244,4.648 555,-20.023533,-84.92326,71.41452,193.19957,4.634 555,-18.612291,436.0208,56.430046,140.59686,4.605 555,188.2,211.483,17.941483,37.29869,4.563 555,572.8398,226.78253,31.067322,62.534424,4.553 555,494.47412,227.08685,237.27795,514.6761,4.506 555,105.88289,240.64111,33.992996,53.586304,4.424 555,-3.4903483,139.9149,14.666853,41.217224,4.347 555,130.20549,234.56494,43.801453,78.88226,4.311 555,-3.9076858,348.83957,14.37738,35.767395,4.286 555,605.01056,235.35068,32.166992,75.01767,4.263 555,614.1615,480.28275,27.912415,62.270905,4.263 555,160.98761,234.02817,42.437836,75.27704,4.252 555,353.77496,221.92715,43.096436,87.54965,4.217 555,392.73602,301.00394,21.970215,35.566864,4.215 555,453.55957,225.58588,27.341644,56.516174,4.214 555,602.9398,238.41241,19.182312,40.33716,4.212 555,617.8478,236.88222,21.494507,47.732834,4.208 555,593.6322,236.78947,20.740906,38.76683,4.188 555,358.5988,211.42813,31.290741,49.72989,4.168 555,605.00415,231.25696,51.30432,160.26984,4.165 555,112.95467,233.79008,44.614555,79.970474,4.113 555,344.82928,306.80252,22.391632,33.75717,4.111 555,-16.679218,125.52499,53.588108,138.11792,4.07 555,42.00041,-33.31667,60.449238,124.761444,4.047 555,-4.9505806,43.81191,18.720493,43.8056,4.034 555,362.0499,229.74062,21.052094,31.3936,4.007 555,66.16258,226.0153,43.115105,86.2191,3.982 555,482.7231,237.19165,41.376617,93.459045,3.962 556,252.16568,206.89389,30.365906,61.48111,10.434 556,418.82846,226.47868,30.133575,70.70372,9.751 556,72.76017,179.0316,31.06083,80.35054,9.033 556,621.61914,-32.392815,27.678284,73.63207,7.372 556,242.21918,208.49783,22.751404,45.47496,7.279 556,-6.379717,487.50174,19.757504,45.856598,7.053 556,626.2054,-17.458723,18.682617,45.243736,6.787 556,611.7196,-15.673937,29.911621,70.751236,6.719 556,601.9668,226.22849,21.249939,40.36203,6.502 556,353.7878,241.3792,34.32068,58.849136,6.305 556,626.3835,487.99384,20.68451,46.419678,5.925 556,191.38354,199.99796,32.944473,58.3497,5.846 556,612.66956,456.32806,40.128174,105.36603,5.775 556,-16.682875,-63.87119,55.981636,147.31929,5.748 556,617.72455,-16.829712,19.654846,44.414783,5.711 556,602.2378,-55.50677,53.624573,131.26161,5.683 556,235.82977,204.21112,19.635101,40.52443,5.654 556,3.7546647,403.50897,31.266068,76.32672,5.547 556,406.80954,217.21672,28.584442,67.61177,5.382 556,594.396,216.82047,23.623413,36.472946,5.371 556,272.92923,219.7659,21.655548,40.090485,5.345 556,-5.516553,-17.951569,17.094189,43.64887,5.241 556,306.61218,366.03253,17.210266,31.48529,5.203 556,-9.458794,461.3984,38.239246,94.011444,5.191 556,603.80536,29.286766,54.191772,136.17133,5.173 556,617.68744,227.30573,21.2724,45.981995,5.116 556,585.3799,-95.033264,74.36096,230.6844,5.1 556,-11.320453,-33.060272,29.69643,75.28135,5.048 556,-73.94032,264.88928,201.92223,464.05408,5.012 556,314.84787,365.4192,17.21811,31.481049,4.987 556,536.7285,311.0357,142.51025,340.43512,4.897 556,583.16644,409.19864,72.12787,179.20651,4.884 556,581.6504,210.64343,32.392395,54.58618,4.869 556,-22.232397,400.701,79.71451,175.34796,4.808 556,594.1705,-43.115788,44.666138,95.46716,4.667 556,17.96382,402.98837,34.15126,66.669586,4.635 556,538.1037,342.0968,19.853699,30.87622,4.612 556,570.4369,339.81116,18.775757,30.278137,4.567 556,579.19104,230.45918,21.191528,38.56926,4.492 556,170.52771,373.1759,19.54892,31.241272,4.462 556,187.67677,372.8616,17.640366,31.178192,4.401 556,262.642,207.08887,22.601715,43.57103,4.393 556,281.61252,221.60956,19.63144,31.478836,4.386 556,178.88275,373.05453,18.67215,31.184967,4.375 556,-37.96804,-124.50897,116.82565,274.54025,4.369 556,519.7296,239.21533,24.451965,38.92517,4.353 556,257.14752,214.36551,42.055176,70.86322,4.324 556,322.83902,363.54486,17.280334,32.74707,4.318 556,273.0775,227.97386,44.40222,78.47914,4.316 556,554.217,341.69678,19.400208,29.816437,4.308 556,331.17468,363.84555,17.221252,32.204987,4.302 556,494.04926,226.9813,237.96094,513.44604,4.28 556,562.6109,340.52213,19.484314,30.171143,4.256 556,490.48517,349.65244,19.525848,28.636566,4.236 556,242.65916,225.6883,34.744278,62.20392,4.231 556,172.18127,207.72401,33.357697,58.21025,4.193 556,155.46872,205.94571,31.442505,53.543,4.181 556,134.22145,210.19566,63.335175,136.17482,4.172 556,541.9964,-18.56942,54.946655,119.78508,4.161 556,1.6788745,487.03824,21.000416,45.49948,4.16 556,603.24426,209.46022,30.06012,53.466965,4.131 557,597.1828,203.72598,30.065857,59.5679,34.312 557,623.0097,-32.87578,26.73883,75.17123,7.792 557,615.0442,207.91776,22.250305,54.918915,7.709 557,585.5202,204.85617,30.30017,56.179413,7.073 557,627.1734,-18.645092,17.098694,47.702618,6.316 557,-5.3988795,-18.001278,16.778107,43.815823,6.265 557,281.98508,213.09094,19.560974,38.73163,6.245 557,613.66345,455.6576,38.730286,104.525635,6.21 557,626.7963,489.1457,20.69757,44.749146,6.004 557,269.49353,189.59515,30.774231,67.238495,5.979 557,592.0569,180.05399,43.411682,98.05246,5.95 557,-16.754139,-64.13285,55.9945,146.0091,5.873 557,595.3938,226.59013,41.52246,107.52028,5.814 557,-11.056742,-32.95824,29.018051,72.733185,5.732 557,-6.3207746,488.97787,19.309925,43.121185,5.689 557,602.80804,-56.8425,53.3631,134.34483,5.676 557,579.1189,212.06598,20.57843,37.808517,5.608 557,207.46416,206.47029,28.539047,57.216812,5.543 557,-12.218784,478.62988,30.657003,61.445312,5.319 557,584.2381,411.49042,70.69592,176.33832,5.275 557,585.0262,184.22089,23.875854,38.15625,5.254 557,593.084,192.32878,23.003174,40.935547,5.251 557,534.2654,207.66823,24.28894,47.192154,5.204 557,156.9472,247.79875,34.420166,56.94905,5.183 557,619.6349,398.93073,14.90863,42.1485,5.157 557,608.4879,192.83414,35.339294,91.63608,5.15 557,607.25415,196.67331,23.248901,46.5318,5.009 557,-74.16328,264.9261,202.16174,463.60797,5.008 557,496.43958,265.1413,33.913086,82.22876,4.979 557,267.3365,209.10187,20.73587,45.660385,4.891 557,418.56696,493.63074,19.616821,37.964478,4.878 557,502.41806,205.99408,60.524017,145.22058,4.877 557,168.19296,232.3085,20.662033,31.821594,4.772 557,-22.071682,400.80505,79.6281,175.69531,4.77 557,594.9135,-47.71635,43.233826,98.243355,4.739 557,564.43243,410.73883,16.471252,33.07608,4.713 557,-40.81474,362.87524,112.15384,277.36902,4.711 557,580.2149,411.6313,17.109985,31.590424,4.692 557,586.2501,-99.1102,73.93671,230.8025,4.681 557,612.6332,231.35938,38.716003,109.17023,4.621 557,-4.9849315,172.6662,16.918358,40.6136,4.617 557,499.18796,403.61154,19.937286,40.932495,4.585 557,596.8257,410.5272,15.966248,34.242157,4.564 557,618.6463,491.56616,20.284851,41.410034,4.556 557,566.3177,199.37508,40.18445,75.0956,4.556 557,428.68332,173.64935,28.531769,79.150375,4.509 557,-5.0851583,155.03961,17.558418,42.120758,4.504 557,536.3095,311.67807,143.10248,341.6061,4.473 557,225.37418,211.56406,20.18451,47.51718,4.46 557,538.4839,413.26627,17.319824,34.263184,4.45 557,106.31645,281.5497,34.65674,60.676636,4.442 557,288.23993,209.6891,18.913452,37.589645,4.427 557,-4.86538,104.14907,16.577091,42.10633,4.417 557,626.5535,198.22919,19.256409,49.776154,4.371 557,404.7682,229.37018,29.397736,57.814148,4.342 557,402.8324,491.76645,19.880249,39.659454,4.338 557,605.40625,409.81726,14.957275,36.193787,4.319 557,571.11926,-17.18278,17.45111,40.232452,4.314 557,546.9287,411.62943,17.103638,34.57965,4.312 557,616.75037,232.28244,22.78418,57.654846,4.304 557,517.54865,205.15636,39.84137,87.34636,4.292 557,507.27972,406.90646,18.266418,38.508392,4.259 557,578.8559,226.42429,42.77765,107.05881,4.255 557,67.4903,406.27902,34.70204,66.2793,4.243 557,556.0266,411.7577,16.558044,33.150818,4.232 557,530.3462,179.3377,32.49469,79.54834,4.227 557,575.25995,-33.710182,27.76715,73.16928,4.183 557,414.79004,168.46027,31.266602,81.82414,4.181 558,627.8617,491.40045,19.280334,41.517822,8.753 558,-5.079396,-17.610832,17.163153,42.555412,7.873 558,-11.864252,479.12604,30.273493,62.832336,7.627 558,-6.362872,488.8372,19.664904,42.48178,6.853 558,527.85254,201.98837,27.690979,65.50888,6.752 558,-11.027748,-31.191877,29.625725,70.145645,6.641 558,613.3251,453.37506,39.39685,108.74841,6.519 558,38.975525,254.01988,39.156914,56.55519,6.373 558,620.58685,494.37735,17.681824,37.170685,6.089 558,627.47034,-17.188541,16.93518,45.438892,5.963 558,-17.379797,442.08536,54.901573,134.07004,5.932 558,486.19067,246.88306,34.236816,60.396423,5.83 558,235.57587,303.106,31.951416,67.52762,5.818 558,316.15622,236.24495,29.714325,61.281204,5.691 558,441.24496,290.00336,34.698334,60.7417,5.67 558,3.7185633,-14.0098095,16.19381,37.784714,5.6 558,558.5064,201.83449,22.694641,45.615402,5.443 558,45.001755,279.8805,28.028717,34.705536,5.319 558,623.4524,-34.678425,25.980042,74.74833,5.205 558,23.992123,273.07132,39.44623,50.759155,5.137 558,544.6941,203.12285,23.37622,54.794205,5.135 558,121.06001,292.9292,36.53003,57.512756,5.127 558,-73.23146,265.91425,201.44226,462.27448,5.114 558,583.1435,411.31348,71.96948,176.7439,5.067 558,-18.013023,-62.320335,57.004265,141.41159,5.052 558,548.2862,188.47958,30.250122,65.617004,5.01 558,98.5117,303.85358,34.927246,56.887512,4.966 558,4.741347,470.7512,39.095505,90.44223,4.867 558,-39.66148,369.87198,109.42682,275.45578,4.86 558,152.7373,241.24393,22.306213,38.709045,4.759 558,536.5699,310.93616,143.38623,339.82184,4.757 558,251.2637,302.40125,32.27646,62.854828,4.648 558,603.84143,-56.00763,52.727783,135.64253,4.634 558,10.492298,-14.318163,16.61579,37.62676,4.613 558,219.2085,309.326,34.373566,69.302734,4.612 558,300.9325,163.33551,29.479645,75.087494,4.575 558,455.84335,288.1622,22.724121,38.424072,4.548 558,-71.60836,-189.1207,212.93594,456.02094,4.415 558,1.8735504,274.11176,34.08669,72.127625,4.409 558,26.403439,-14.066892,17.272537,36.319008,4.398 558,33.99179,235.62634,37.885963,60.76062,4.397 558,466.35513,237.87236,19.099854,29.600998,4.395 558,3.707887,3.6881733,18.43705,40.788635,4.389 558,215.58434,232.50873,25.445251,38.81894,4.368 558,-37.739326,-131.32635,118.360176,283.69073,4.335 558,84.91088,106.13034,29.331398,71.029236,4.31 558,10.340813,-28.547424,59.890587,126.636154,4.29 558,113.20497,257.9444,45.982925,85.40158,4.287 558,496.05423,262.60208,35.951202,57.630432,4.273 558,493.25934,227.10367,238.73926,514.10986,4.267 558,1.5430558,490.32022,20.87692,41.49173,4.242 558,134.58319,272.82697,41.088333,57.546295,4.223 558,56.050358,224.1085,34.689693,63.5009,4.158 558,314.08664,170.37247,29.487701,61.79886,4.156 558,11.253371,-0.80665016,17.88023,36.137917,4.134 558,16.807467,279.79044,37.261826,61.91632,4.126 558,81.86861,259.57312,45.53003,85.69125,4.125 558,153.71034,305.2967,35.14586,65.01532,4.113 558,105.92035,110.500854,21.60067,52.89801,4.096 558,267.85504,304.4434,31.739502,60.804718,4.081 558,56.177677,288.2724,22.981197,31.153137,4.073 558,-4.4760423,1.5330143,16.851059,41.510017,4.071 558,96.78552,109.699745,22.35907,54.0987,4.069 558,-4.316874,114.16273,16.38497,43.59986,4.034 558,40.001534,286.78824,24.180817,34.750977,4.029 558,458.03552,491.86127,20.341187,39.83136,4.022 558,472.92938,236.92723,20.350494,32.04683,4.016 558,450.2559,490.89017,20.187042,40.94455,4.016 558,34.69474,-13.886748,17.332733,35.402378,3.997 559,15.294428,207.80548,63.957275,153.02502,88.97 559,189.67136,287.68182,41.449127,66.701294,7.824 559,38.826836,281.1288,37.689827,75.679474,7.531 559,604.56903,193.94434,28.101746,67.926544,7.372 559,-2.3857415,250.22455,26.850193,84.824036,7.349 559,-6.137601,488.993,19.20855,41.78055,7.015 559,-5.7022657,-17.129316,17.810062,41.381916,6.971 559,626.8828,487.7725,20.137207,45.13803,6.959 559,-11.712098,478.8815,29.867321,63.30313,6.812 559,612.527,453.8079,40.31305,108.88162,6.481 559,618.71606,489.65613,20.531921,42.67511,6.398 559,154.509,306.5699,35.22763,61.009186,6.363 559,-11.027948,-31.173405,29.344902,69.5176,6.302 559,229.30855,261.92932,40.07393,59.0907,6.275 559,167.07414,290.07895,41.002472,69.43994,6.101 559,-17.494549,-64.51826,55.73429,143.64815,6.043 559,209.97333,316.16388,37.075287,62.650177,5.974 559,627.59283,-17.864101,16.925964,45.960598,5.807 559,603.4729,-55.040382,53.008728,137.24593,5.719 559,623.4792,-34.755516,25.965332,73.90252,5.704 559,232.7435,311.12704,37.098602,60.53235,5.669 559,429.0225,211.19945,31.099731,70.75737,5.639 559,267.42917,237.99167,17.540192,32.750214,5.597 559,-72.77713,262.22137,201.49292,466.72113,5.563 559,-17.256945,440.17056,55.20513,134.64847,5.534 559,280.22345,310.52032,38.167297,62.060272,5.493 559,313.8339,250.83424,20.829956,34.81102,5.374 559,294.63376,119.987274,30.440552,75.34802,5.258 559,2.9229033,-16.042963,17.064846,39.23487,5.249 559,-10.871416,214.40738,40.869747,107.925964,5.235 559,322.59732,311.7955,34.839783,67.81055,5.114 559,208.12965,292.3228,39.23439,59.549805,5.082 559,138.17989,305.5061,34.81122,61.589203,5.072 559,249.74753,311.77917,35.744324,60.105286,5.063 559,158.60057,181.14926,30.865463,86.40787,5.037 559,275.32416,113.50185,31.405212,76.26128,4.999 559,536.55524,309.32928,143.53198,341.63147,4.959 559,239.7772,242.8558,37.935867,65.89899,4.916 559,298.8002,319.30557,33.56488,66.39163,4.901 559,298.55975,247.92375,31.869019,57.82692,4.895 559,582.62305,412.1906,71.97174,175.56073,4.872 559,494.09888,229.18204,237.05273,513.3358,4.857 559,20.592182,210.45232,37.894775,81.008255,4.783 559,-40.80934,366.99188,110.66402,275.91534,4.779 559,-72.89397,-190.42627,213.20822,458.51083,4.778 559,193.60068,313.561,36.760742,63.96173,4.763 559,492.493,243.43315,32.078888,59.031387,4.727 559,223.94025,286.12952,38.58548,55.640717,4.71 559,177.39935,312.76282,37.886154,62.71942,4.659 559,452.96295,115.28914,27.944153,72.80638,4.639 559,-4.967454,307.98102,18.391258,47.73282,4.58 559,124.22288,49.329704,32.868446,73.9088,4.541 559,454.9428,199.39558,27.36856,64.91649,4.537 559,-3.9506328,251.3181,19.298773,57.062393,4.524 560,-11.616578,479.16855,30.35112,62.884613,7.596 560,626.4374,488.14792,20.582397,45.633514,7.396 560,-5.811279,-18.182756,17.948015,43.806885,7.222 560,-11.223725,-31.436424,29.916065,72.29744,7.119 560,-6.290705,488.5818,19.717705,42.521362,6.87 560,171.06439,178.30176,32.215958,94.243225,6.612 560,612.3749,-48.465588,40.148804,104.451675,6.325 560,493.22028,207.64714,29.766418,69.81227,6.112 560,452.81552,213.9716,31.631195,71.67586,6.08 560,74.54968,328.14288,33.68982,73.2124,6.026 560,627.4579,-17.454458,17.244629,46.515106,6.003 560,248.15384,277.14542,37.339294,60.76999,5.953 560,12.148275,-20.929314,57.115944,119.669846,5.81 560,-2.6109397,213.34741,31.655685,76.91492,5.743 560,509.0396,204.30963,27.684875,70.6322,5.594 560,299.6399,103.92304,31.154541,79.124626,5.579 560,186.186,1.2440014,34.480423,52.63954,5.542 560,-17.328243,-64.346725,55.998455,142.96152,5.531 560,612.469,456.4233,39.25244,105.60245,5.504 560,523.8317,117.58945,31.052063,72.63129,5.48 560,206.69005,299.92383,41.184708,65.89041,5.457 560,469.46072,212.8953,29.887238,67.19339,5.315 560,-73.80478,263.39294,202.11649,464.24622,5.24 560,486.00287,192.1805,29.306458,72.58058,5.162 560,206.31293,2.019785,27.454391,46.86547,5.129 560,177.17194,319.89023,37.40506,76.13498,5.104 560,492.17026,98.50511,28.625397,78.767685,5.084 560,536.43896,255.65663,25.090332,44.915695,5.02 560,536.57184,310.58228,143.40375,340.6206,4.997 560,-36.208908,-129.22316,116.72321,275.43027,4.99 560,-17.256672,439.7297,55.170246,134.8345,4.966 560,42.34959,-14.0510025,57.22217,111.696495,4.959 560,582.8607,412.56757,71.983765,175.44617,4.945 560,281.9774,236.01767,20.441376,44.074768,4.912 560,351.9841,287.69885,40.008545,58.887024,4.889 560,139.49628,26.752022,34.876297,82.12726,4.874 560,89.976616,326.9076,34.282578,76.677246,4.84 560,162.07642,93.93233,34.666748,86.519455,4.835 560,-71.758965,-189.62315,211.74033,458.0136,4.811 560,-4.781784,2.3323307,17.341106,43.72441,4.713 560,354.81052,225.29367,32.19403,64.46057,4.702 560,-40.848713,366.42175,111.178604,276.02563,4.664 560,243.05162,-13.955383,33.48613,62.56679,4.64 560,58.768467,330.39923,34.264675,68.988556,4.618 560,122.03342,348.84967,35.467194,65.28137,4.613 560,297.82663,334.67175,36.238037,64.90924,4.603 560,493.95416,227.82062,237.97162,512.618,4.578 560,564.51953,153.0987,30.538574,71.05777,4.569 560,123.67102,31.493576,33.469757,77.49092,4.558 560,332.86432,225.36726,34.588226,63.24202,4.535 560,618.7947,490.77716,20.119385,41.95526,4.527 560,289.25565,243.75026,21.32016,44.64235,4.486 560,394.20575,226.57655,34.530518,65.63249,4.485 560,73.93798,-11.572914,58.64521,114.42401,4.453 560,282.31992,334.547,35.16458,65.08182,4.445 560,161.63744,317.18082,37.037567,77.49576,4.438 560,201.70709,-14.230255,18.295074,36.431988,4.437 560,216.74469,312.1787,37.010117,76.96066,4.43 560,306.34402,286.95685,36.81314,58.914642,4.421 560,201.6498,76.888535,32.759064,79.11722,4.317 560,200.10901,0.59617805,23.497787,35.117516,4.296 560,466.45697,220.1521,21.752197,47.171936,4.288 560,595.8221,-46.91996,42.281494,103.27362,4.282 560,-9.639548,-7.4358673,39.999256,99.70779,4.273 560,345.91922,264.10315,22.202667,35.197662,4.257 560,524.2822,147.0956,30.229065,67.866776,4.251 560,193.62245,-14.221699,18.62378,36.924465,4.216 560,107.70227,-24.246616,59.184723,122.61862,4.211 560,200.44975,-24.821371,62.343155,113.32509,4.209 560,155.87085,164.33298,56.451614,140.72931,4.205 560,-4.9943333,104.41838,17.033974,41.21547,4.148 560,271.75403,286.4981,47.018066,90.59296,4.147 560,579.5965,166.82664,30.429626,76.14293,4.13 560,265.60196,333.75958,35.84439,67.93625,4.12 560,171.03493,-4.7737923,34.52217,62.087273,4.119 561,-5.42042,-17.290565,18.008507,43.752277,8.91 561,-10.474176,-32.274876,29.209679,74.33346,8.214 561,389.22513,227.24927,31.65622,63.96289,7.169 561,-6.1957164,488.33627,19.077328,42.916046,7.159 561,-11.309925,476.21967,29.226068,64.873535,6.489 561,420.11948,213.41016,31.046875,69.5455,6.121 561,627.4734,-17.320538,16.960693,45.635983,6.059 561,189.57918,87.81305,30.073822,75.36737,6.047 561,502.622,194.55704,29.864014,70.898865,5.983 561,626.20245,487.87912,20.883484,46.19803,5.868 561,22.515078,-0.602211,25.165358,51.96307,5.835 561,-4.904917,0.66986847,18.52678,46.08294,5.746 561,612.6631,455.8334,39.493164,105.80826,5.589 561,31.274662,0.36013794,25.192947,46.911346,5.544 561,2.815711,-14.796464,17.373184,41.887444,5.357 561,-74.69261,263.31158,203.21527,465.539,5.325 561,623.48535,-34.595016,25.932434,74.71516,5.298 561,50.608746,75.52854,34.67081,80.74334,5.236 561,-72.49351,-191.38184,213.11664,459.11893,5.195 561,413.70816,195.92128,29.835419,73.96385,5.121 561,583.1498,412.6556,71.58807,175.3823,5.113 561,127.69292,297.3295,37.703842,69.02411,5.081 561,-17.794012,-62.736732,56.845863,143.70792,5.045 561,24.946838,359.4784,37.18084,77.33264,4.963 561,536.5362,309.73206,143.41693,341.58417,4.884 561,420.40317,90.687004,30.493713,65.12003,4.868 561,9.838984,-24.687988,57.977974,126.95734,4.823 561,603.7548,-55.490658,52.924744,136.20096,4.804 561,41.4405,360.0147,36.787766,76.96915,4.77 561,5.251135,6.8847923,31.377455,76.1693,4.752 561,298.31604,228.30193,32.059387,66.01192,4.737 561,173.22049,51.21404,30.96524,65.03851,4.723 561,-22.899542,398.97693,80.66813,177.24695,4.723 561,-6.5476036,149.61963,37.021942,107.12891,4.689 561,1.2047112,-8.112362,26.101639,73.48422,4.578 561,172.93495,80.46742,33.082535,77.178635,4.57 561,-4.4944553,219.69798,15.597389,39.835617,4.522 561,493.4209,226.99307,238.36346,514.2179,4.467 561,557.95276,187.26857,28.747742,68.42772,4.459 561,54.486404,353.40598,39.49209,73.1767,4.344 561,-6.8088984,79.344345,37.236847,120.56023,4.248 561,-10.614505,108.617676,30.09903,80.15665,4.245 561,437.93872,165.34567,30.24585,74.29422,4.239 561,45.786644,186.75664,30.442162,87.50603,4.229 561,-37.61239,-128.43065,118.28179,285.60834,4.227 561,-5.0538836,250.71358,16.66784,40.64714,4.212 561,174.1608,56.793816,53.070496,149.7742,4.201 561,372.26093,227.19363,32.542053,65.41101,4.195 561,13.442919,-32.213455,29.02896,75.671936,4.157 561,65.96386,170.50261,33.18901,79.52939,4.151 561,493.62665,180.6073,28.322754,73.607925,4.148 561,64.38959,77.22894,23.43602,56.525543,4.122 561,436.88824,219.84769,28.730835,66.05646,4.084 561,208.37312,264.84634,23.14093,40.04251,4.029 561,-1.7672217,364.68146,28.567049,88.40604,4.022 561,243.06577,151.05074,29.55545,84.99223,4.011 561,618.0678,489.10843,21.506409,43.685944,4.001 561,-4.7557044,235.80994,16.118118,39.759888,3.988 561,10.214441,339.38223,56.91523,140.5817,3.969 561,224.6974,73.486984,26.98413,74.162476,3.937 561,3.377511,244.83235,17.735847,39.85579,3.936 561,-3.9695082,202.06978,15.359375,41.700974,3.925 561,432.67828,227.3506,22.000183,52.90526,3.925 561,107.619385,-11.175312,32.668976,59.473293,3.924 561,36.220497,88.28485,33.32055,82.2377,3.901 561,288.6615,310.40848,37.470886,63.23874,3.886 561,248.96841,69.091965,31.174469,71.97838,3.869 561,2.0265567,488.96127,19.542982,41.61618,3.853 561,207.49008,87.88787,22.46315,49.272835,3.85 562,545.22864,244.76248,21.80957,36.933807,9.619 562,536.70245,245.20699,21.973572,34.48192,9.137 562,-5.7124686,-17.522299,17.949646,43.82996,7.849 562,-10.937538,-32.43748,29.719961,74.45659,6.788 562,-12.050806,480.59384,30.131104,61.491913,6.785 562,553.35004,246.29892,21.57965,38.039856,6.743 562,276.80423,210.08752,31.056427,69.36127,6.507 562,521.48303,245.95384,21.229126,32.666794,6.335 562,-6.246004,489.08902,19.262558,42.72995,6.2 562,621.777,476.23636,29.006226,66.63132,6.08 562,627.4563,-17.289848,16.980713,45.648083,6.056 562,523.77026,230.10913,30.411499,50.964752,5.832 562,529.34686,224.23518,18.981995,37.77629,5.632 562,475.63458,259.71317,17.874817,24.996246,5.465 562,310.8039,180.5045,26.948853,73.43315,5.436 562,623.5049,-34.559254,25.91809,74.815796,5.303 562,197.96432,207.53772,28.744293,77.19162,5.296 562,458.81384,259.38336,17.753479,23.659302,5.218 562,523.6884,218.88344,18.216553,37.438522,5.205 562,-17.588634,-64.84998,56.527287,144.51906,5.1 562,506.07593,253.80615,20.513306,31.317383,5.082 562,603.4735,-56.24888,53.019287,139.45445,5.078 562,451.08673,259.0481,17.632172,24.754364,5.077 562,536.37897,309.26392,143.33844,341.32776,5.054 562,530.319,253.93094,21.020264,32.530273,5.036 562,557.3484,242.33461,30.408325,56.6725,4.989 562,-73.9173,265.4524,202.32292,463.0827,4.983 562,491.7015,249.45975,17.647827,27.147827,4.921 562,583.2535,410.30298,70.78839,176.39417,4.887 562,399.5279,178.69293,22.654877,50.948013,4.848 562,532.5001,240.8316,31.716675,53.74829,4.839 562,493.3769,228.41324,237.65002,514.34973,4.836 562,466.8756,266.58084,18.914185,27.97406,4.813 562,-41.010277,363.45703,111.83575,277.70984,4.79 562,498.6414,247.265,18.994476,28.9142,4.764 562,5.4870534,244.8067,30.152645,76.32367,4.761 562,483.80975,251.71637,17.968384,25.789673,4.745 562,466.56427,255.93071,18.07315,21.667068,4.72 562,89.14986,270.6439,34.848854,54.798737,4.715 562,292.86868,208.80789,30.292023,67.59189,4.71 562,508.03302,211.53096,15.840759,36.5278,4.704 562,-5.3986416,88.73101,17.743317,43.20417,4.7 562,-5.8743706,276.2943,18.871069,45.627808,4.688 562,241.79181,237.12729,19.994934,37.125244,4.656 562,443.7764,257.84842,17.220642,26.451538,4.648 562,-5.082052,122.29879,17.506672,41.82905,4.636 562,-36.7143,-130.93216,117.42624,280.67407,4.627 562,234.99861,233.2273,31.841019,56.315918,4.6 562,-4.989625,38.386314,17.680742,46.987892,4.594 562,514.40784,253.22615,20.38501,33.00563,4.576 562,570.13116,250.51175,21.604126,39.826355,4.545 562,-72.34244,-189.99677,213.65942,457.26843,4.516 562,519.9954,209.04501,25.741028,59.643585,4.501 562,2.5411325,-4.6940746,19.401703,45.70739,4.464 562,515.6776,211.91922,16.274414,35.73761,4.426 562,618.4502,488.04852,21.222595,44.89331,4.391 562,547.7595,211.67809,16.304932,33.218567,4.337 562,515.29047,240.20694,33.159973,54.627502,4.312 562,196.82617,238.85075,30.511398,67.70824,4.31 562,102.25976,282.739,24.243507,37.338287,4.26 562,149.3254,246.45616,33.2632,57.912796,4.249 562,196.2297,181.80399,30.26802,73.68584,4.249 562,-6.080743,238.88153,19.163326,46.29004,4.18 562,-5.480573,294.54068,18.275055,44.163147,4.17 562,627.2164,119.2661,16.311523,49.25879,4.157 562,-18.224884,433.6052,55.601257,141.61148,4.143 562,616.39795,187.36076,23.732971,75.64809,4.102 562,268.04303,-15.810289,15.686279,38.354855,4.076 562,1.7871976,490.58075,20.045918,40.79541,4.027 562,539.6693,212.86409,16.927734,31.494705,4.01 562,164.54729,229.33316,34.7753,66.82477,3.984 562,-5.662035,-0.21699905,19.056934,48.241116,3.98 562,55.368923,264.24536,20.82513,33.448853,3.972 562,-9.863476,-7.1904755,40.93676,99.775024,3.962 562,612.80994,264.39447,37.83423,118.87927,3.95 562,546.0209,240.5796,91.547485,291.69098,3.932 562,182.50623,65.23646,30.790298,78.67773,3.926 562,403.4804,183.49968,27.293335,68.17311,3.868 562,104.2457,266.78122,22.284676,37.90146,3.867 562,227.0521,172.78477,32.311646,72.20375,3.858 562,482.72275,265.44464,19.35727,30.791718,3.852 562,-4.0302696,219.33752,15.822032,40.409912,3.831 563,525.51624,223.09749,28.926392,78.175766,19.304 563,481.32654,230.48373,20.459503,53.428528,14.407 563,-5.320629,-16.80671,17.331898,42.33928,8.533 563,-11.727671,479.6373,30.110825,61.50064,7.968 563,626.45056,488.07263,21.143982,44.95276,7.488 563,612.82556,454.54138,40.46521,106.54639,6.947 563,384.55096,247.74452,23.673645,38.837418,6.872 563,-11.007452,-31.826796,29.567177,71.46049,6.814 563,-6.335787,489.1423,19.385834,41.9606,6.801 563,627.8646,-16.024231,16.426697,43.517414,6.687 563,623.6671,-34.05979,25.886597,72.884544,6.364 563,611.9915,-48.97317,40.596863,103.84984,6.232 563,472.67328,226.95163,24.399292,66.885864,6.098 563,360.87274,244.3922,23.008331,35.674026,5.976 563,21.239985,138.09607,29.71844,74.15416,5.926 563,618.4011,490.1015,20.529175,43.936035,5.893 563,38.973236,142.71678,30.113289,76.25656,5.802 563,336.50284,242.35648,23.14566,32.358948,5.61 563,442.70087,229.3683,19.976257,44.771927,5.589 563,328.47858,242.65709,22.246582,30.616714,5.335 563,3.237774,-14.057417,16.27216,38.767483,5.328 563,49.49791,153.57257,31.343384,72.211136,5.29 563,-17.230362,-63.7157,55.74158,144.51064,5.192 563,345.38174,240.57555,22.119507,33.28035,5.182 563,466.87445,229.78868,20.768066,54.943466,5.115 563,-0.70328474,128.47986,26.90707,81.839676,5.113 563,118.21832,194.0655,30.459808,74.99498,5.098 563,455.1028,214.98557,27.39978,66.760345,5.035 563,-72.98627,265.10492,201.16367,462.01514,4.963 563,353.0164,244.98825,22.307343,33.16992,4.957 563,499.58978,225.54654,15.753601,36.127197,4.933 563,-21.649897,403.90128,78.91366,174.2717,4.862 563,484.4895,231.22324,28.242676,73.16818,4.749 563,628.45264,116.14366,16.529053,43.33293,4.723 563,583.531,411.43924,71.31708,177.11832,4.698 563,-4.44215,0.97117615,16.616123,42.741302,4.69 563,514.105,212.68994,28.454895,77.97504,4.68 563,377.94226,244.08609,22.163605,34.90039,4.642 563,131.20355,191.64415,30.638046,69.8849,4.593 563,314.92816,238.85635,20.473938,33.890106,4.513 563,-5.7470155,97.377686,18.38953,45.9442,4.507 563,22.554693,236.08234,31.165407,62.262085,4.474 563,-7.1429243,163.7119,37.418495,112.001785,4.421 563,586.01355,489.87442,20.840393,41.33029,4.42 563,618.5271,41.016865,21.566528,44.825024,4.407 563,628.31354,23.019983,16.161865,37.22194,4.405 563,1.8387532,490.94482,20.188095,39.432922,4.398 563,626.41455,374.63165,18.638245,47.254974,4.378 563,298.84338,247.73006,18.510254,29.759842,4.343 563,-37.99348,-129.21826,117.4989,281.48444,4.341 563,577.7493,490.13724,20.912903,40.82437,4.341 563,321.75513,246.64682,19.735413,31.26184,4.34 563,372.77115,242.64441,32.12375,56.372986,4.311 563,621.64014,-1.2967014,14.799927,34.66523,4.284 563,536.2945,311.65546,142.76587,341.34735,4.277 563,595.9061,461.46136,40.588135,97.723206,4.277 563,-4.779128,54.00406,16.875904,46.385666,4.239 563,3.5073357,2.9868317,17.956806,42.246414,4.219 563,419.9503,236.94308,17.509552,31.834503,4.219 563,-5.890502,118.28525,18.699757,49.51651,4.211 563,-5.744495,148.93724,19.104183,50.876495,4.208 563,616.10254,370.70035,24.548462,65.26132,4.205 563,370.5255,241.93445,22.20105,34.124878,4.18 563,291.1098,246.69203,18.172699,29.192368,4.174 563,537.52985,226.96849,29.47644,68.63838,4.167 563,-4.2047377,34.73642,15.5227165,41.58786,4.164 563,393.34082,246.16356,20.477905,34.007675,4.146 563,340.11813,228.2274,32.333954,50.90294,4.132 563,11.844585,147.28947,30.404896,79.17815,4.122 563,493.12302,229.73972,237.53586,515.09753,4.118 563,306.6688,246.7305,19.245667,31.932709,4.111 563,569.94525,490.15216,20.819214,41.391113,4.09 563,560.6838,-129.58296,114.79224,278.64398,4.051 563,594.0891,488.91696,20.567932,42.66385,4.049 564,541.18646,206.65407,31.215515,96.70256,11.696 564,386.6267,224.06825,18.151886,55.774612,10.787 564,431.94153,221.54196,25.722382,69.55478,10.092 564,626.34436,485.89896,21.141724,46.07602,8.423 564,404.98395,159.82799,27.446106,81.49083,7.468 564,268.266,176.97218,16.351929,35.259598,7.325 564,555.76465,232.78734,30.824219,80.570816,7.247 564,-6.321857,-17.297363,18.187645,43.8585,7.097 564,525.0832,142.55933,28.443909,98.07576,7.09 564,611.9924,-48.236343,40.453857,101.921074,6.974 564,-6.026571,488.48718,18.981401,43.138306,6.901 564,613.6799,452.1005,39.269592,109.566376,6.737 564,627.16846,-16.709707,17.234497,44.672894,6.715 564,-11.444206,478.18567,29.476284,64.357056,6.477 564,275.2394,176.62976,16.32785,34.27054,6.186 564,528.5746,211.35344,27.89508,85.07863,6.177 564,-11.437411,-31.703,30.12825,73.79711,5.785 564,311.8053,246.11993,23.154236,42.526672,5.674 564,7.430091,203.83778,28.857277,71.93681,5.47 564,98.910515,170.05103,30.234215,68.20218,5.414 564,-16.89003,-61.92672,56.25335,142.93901,5.281 564,20.457664,209.99426,27.743439,63.609924,5.224 564,618.76184,485.81287,20.380249,46.353638,5.173 564,423.77014,196.8958,27.106049,77.35072,5.17 564,-0.63839674,199.24715,25.305462,71.89671,5.117 564,260.479,176.4414,17.104126,35.97104,5.084 564,-21.214502,404.3152,78.1959,174.41718,5.062 564,-73.046524,265.5902,201.30273,461.45642,5.024 564,281.24915,245.98659,21.75235,34.528732,4.986 564,284.41898,178.51497,15.20929,31.471664,4.928 564,-9.666587,178.84985,28.485836,75.02899,4.85 564,584.146,409.79254,70.54065,177.58179,4.806 564,595.85974,-46.139324,42.296814,97.9976,4.704 564,423.1802,168.24017,27.276764,75.65607,4.562 564,619.13446,-16.67598,16.641235,42.102715,4.551 564,-12.088045,188.63728,45.414192,133.86613,4.523 564,300.95447,239.0307,31.11618,59.095337,4.52 564,389.80423,211.36842,24.753754,62.357895,4.517 564,-15.616937,124.80443,50.86958,140.81361,4.435 564,234.94585,244.70988,19.38794,33.356705,4.434 564,202.40659,244.74075,19.905762,31.23175,4.434 564,242.16559,245.94846,19.50409,31.99121,4.422 564,1.86005,-16.621675,17.404469,42.98968,4.379 564,537.91815,488.7353,21.134766,42.723022,4.333 564,380.74905,228.74545,17.263947,54.61438,4.295 564,-4.742755,200.99223,17.994171,47.012787,4.286 564,529.69696,488.65167,21.057556,43.300354,4.247 564,536.8062,311.82147,142.13385,341.1103,4.246 564,399.4926,196.51027,26.770782,70.82735,4.242 564,585.96686,-100.10643,75.18414,235.24571,4.231 564,226.81749,243.65263,19.927872,33.852768,4.184 564,521.65564,489.80344,21.398926,41.61966,4.162 564,-0.73256254,158.34335,26.412798,85.50351,4.145 564,390.06747,227.29944,26.688782,79.87659,4.134 564,545.98865,488.5374,20.934753,42.778748,4.134 564,-5.1324983,123.39685,16.944345,41.072327,4.132 564,513.90283,490.09598,20.95514,40.952606,4.096 564,210.40712,243.52039,19.534042,32.07361,4.077 564,-37.935684,-123.07015,116.565285,277.60886,4.076 564,416.11182,220.97932,27.214478,74.92845,4.03 565,500.38586,227.71706,28.5495,90.55644,14.076 565,575.70166,199.77432,25.696533,73.44205,13.173 565,370.76126,221.69794,19.516907,55.123413,6.716 565,626.5685,487.9075,20.578125,44.356354,6.701 565,-17.280573,-64.46355,56.275307,148.39738,6.579 565,493.64856,202.78825,47.472046,122.79024,6.538 565,407.9264,232.34396,20.5654,53.237885,6.357 565,-11.419767,478.69977,29.565678,63.7381,6.274 565,487.18256,222.13803,28.689697,85.87491,6.233 565,627.2554,-17.581404,17.2854,46.64727,6.058 565,-6.078822,488.82123,18.869045,42.414246,6.004 565,-5.5924864,-16.898361,17.113354,42.372604,5.895 565,562.46216,204.91595,20.661316,52.808167,5.807 565,603.42706,-54.88845,52.747803,137.76817,5.33 565,-10.887417,-31.876919,29.270483,73.39112,5.32 565,-21.121548,404.90546,78.142075,173.75983,5.062 565,613.6048,451.42126,38.269653,112.251526,5.05 565,-72.590065,265.4099,200.96277,461.71326,5.048 565,620.4984,455.66415,15.976807,39.92505,4.916 565,-3.883112,125.04611,16.007576,40.807495,4.728 565,536.48975,311.01746,143.12048,340.77673,4.663 565,307.73953,241.19089,32.053986,61.978546,4.651 565,583.4413,409.54095,71.10126,178.01276,4.649 565,404.56424,142.85982,28.032257,81.86452,4.64 565,41.414406,154.78769,29.662552,68.98419,4.589 565,623.40875,-34.927895,25.710022,76.441475,4.562 565,509.5535,196.07549,48.339203,120.842606,4.496 565,325.83926,231.72386,29.013672,63.20067,4.456 565,628.66296,456.35922,16.156738,43.015564,4.456 565,530.3071,488.60538,20.299194,42.911957,4.44 565,354.26605,221.79843,19.786926,55.278503,4.434 565,302.57062,223.73306,26.022095,60.30371,4.295 565,358.9328,214.27307,33.071045,75.1239,4.295 565,619.35846,489.00925,19.411926,43.2659,4.294 565,493.3586,229.14139,238.06534,512.67773,4.276 565,307.09772,223.43279,18.585114,38.13112,4.256 565,493.59918,204.37656,26.913818,74.05444,4.23 565,566.97314,193.65321,26.163818,73.93779,4.222 565,-4.4779186,107.82886,16.206919,41.709778,4.176 565,-3.9981315,140.53397,16.113485,42.26915,4.043 565,537.7917,490.3338,20.863464,42.027344,4.024 565,522.3676,489.11984,20.671448,42.68112,4.002 565,-5.6838903,184.29897,18.325554,45.249527,4.0 565,266.86417,169.68195,17.280975,35.57924,3.97 565,199.69543,230.58778,22.014069,33.57759,3.943 565,613.1163,324.77087,27.720398,70.31625,3.938 565,497.82172,489.74753,20.841064,41.770905,3.936 565,218.59357,244.57205,20.427353,33.05426,3.932 565,104.14153,242.17204,35.79287,61.7032,3.922 565,513.8407,488.88605,20.897095,42.98297,3.913 565,505.8064,489.57785,21.106506,42.28598,3.911 565,2.9659863,-14.8568125,16.032595,39.525066,3.901 565,242.59897,233.82256,19.549408,34.88527,3.886 565,354.1125,191.93753,18.899353,41.898727,3.885 565,-16.963394,90.1887,51.22705,144.64764,3.868 565,452.72607,208.48729,35.22357,87.88106,3.868 565,507.72626,257.22394,29.435669,68.42386,3.867 565,283.60965,236.75275,17.775787,33.19934,3.863 565,301.29572,219.74284,16.994904,32.74562,3.83 565,-5.156417,427.12057,17.798138,42.183746,3.799 565,336.16742,218.58768,24.43219,58.467285,3.784 565,292.776,221.09787,15.597656,29.677383,3.764 565,628.43933,474.1083,16.51825,40.472565,3.756 565,259.03043,170.73663,17.533905,35.33986,3.736 565,375.03394,219.90355,23.437378,70.907486,3.719 565,-37.81488,-123.24611,117.686165,278.76843,3.712 565,283.6855,221.41379,14.967529,28.852386,3.674 566,402.36792,216.74341,22.396118,69.1926,48.527 566,472.48685,216.29793,27.940216,79.1935,21.504 566,599.0122,195.23953,28.466614,69.2287,21.254 566,-11.533338,480.32812,29.209038,61.693848,7.465 566,589.50055,201.16064,30.689941,79.18167,6.985 566,-17.244576,-63.75877,56.165806,147.41435,6.898 566,623.65094,-33.729794,25.83612,72.07823,6.783 566,627.41174,-14.2881565,16.529419,41.23272,6.716 566,-5.4049683,-17.178722,16.838457,43.406128,6.515 566,621.2179,475.24353,30.066406,67.47766,6.452 566,369.20392,214.48874,24.12262,68.20984,6.431 566,-11.228887,-32.576164,29.091522,74.75386,6.02 566,611.5927,192.80862,26.409851,70.142,5.73 566,465.7602,201.4689,44.417664,121.24042,5.514 566,266.87454,159.2918,17.408936,39.423935,5.366 566,357.85925,226.68593,28.724365,80.0963,5.274 566,612.109,-50.081074,40.525757,105.818344,5.185 566,-72.7916,265.37897,200.8742,462.06244,5.042 566,-21.136356,405.10205,78.30542,173.5531,5.024 566,352.2003,213.69772,23.954163,62.523926,4.92 566,275.24286,160.0057,17.243774,38.236923,4.873 566,259.73633,215.70139,19.16159,35.365982,4.856 566,-39.850174,369.12155,109.73175,275.58218,4.847 566,565.1246,203.42679,29.499329,55.765076,4.781 566,315.5601,215.39073,17.208801,36.963303,4.76 566,583.54486,411.27768,71.11572,175.93906,4.683 566,619.7118,-13.39401,15.979248,36.53085,4.624 566,477.3819,192.5325,27.3891,82.91531,4.592 566,308.74115,215.5985,17.156097,37.758347,4.579 566,536.7999,310.82343,142.53113,342.13885,4.531 566,258.98358,159.3252,18.293,40.698044,4.508 566,-10.049587,135.7273,28.761082,76.10274,4.493 566,467.98477,220.09569,21.785156,63.17189,4.473 566,410.64978,219.43585,25.012451,66.38925,4.466 566,274.28873,239.28671,19.440216,34.138702,4.448 566,-10.14049,87.03906,28.833967,76.02316,4.448 566,267.0752,225.7332,18.433868,32.84642,4.415 566,626.82947,197.58502,19.295288,50.53131,4.411 566,466.57718,268.31796,33.694855,82.66583,4.408 566,384.3421,212.9736,25.124786,76.80643,4.281 566,-4.8698196,151.50974,17.717403,49.186905,4.259 566,-5.1712217,101.456154,17.779034,48.80903,4.256 566,267.1463,214.68767,16.804932,29.921967,4.255 566,395.24564,215.19948,20.678986,59.009964,4.255 566,3.459252,76.024284,24.484184,87.16349,4.245 566,492.95258,229.12073,238.47076,514.38324,4.239 567,465.0312,216.16705,32.722748,98.08063,28.239 567,442.28046,215.96335,18.891907,46.67514,19.246 567,414.42,216.34412,24.456573,69.26706,10.61 567,618.01605,10.857685,21.381775,53.633404,8.036 567,440.8283,216.56259,31.719177,81.74585,7.256 567,613.6565,451.41837,38.641174,111.78281,6.99 567,622.36255,-32.313667,26.59375,76.43329,6.982 567,507.81693,207.5257,26.692902,60.864624,6.558 567,-11.787884,479.39005,29.245731,62.79294,6.509 567,626.8299,-16.91703,17.201233,46.515675,6.253 567,-17.202951,-63.694054,56.39511,147.22038,6.1 567,2.119838,181.29292,21.141832,40.522064,6.008 567,602.8199,-55.638943,52.865173,135.05699,5.815 567,626.4579,486.74274,21.175293,47.111023,5.76 567,406.46722,126.90914,26.684662,86.21046,5.743 567,265.22073,222.42593,22.322327,34.800415,5.691 567,419.5616,230.01047,30.199493,73.03754,5.691 567,-6.0775685,489.5471,18.711437,41.621918,5.46 567,617.1186,92.63255,22.080872,66.87282,5.446 567,374.97626,207.32187,24.940552,67.72409,5.425 567,381.05914,216.2609,27.4151,73.412994,5.407 567,603.24384,201.54706,28.872559,56.299683,5.392 567,475.41934,236.78706,29.92929,76.05876,5.365 567,-5.4731016,-17.582897,16.78778,42.68195,5.301 567,322.21893,215.07349,20.386597,44.194885,5.177 567,461.61707,216.58049,52.063538,149.77278,5.142 567,461.04385,253.01328,31.699432,76.72397,5.042 567,615.5844,212.62651,24.437927,56.084488,5.022 567,274.58554,150.21732,18.155426,40.37445,4.964 567,406.72116,166.44594,27.114105,76.21501,4.897 567,583.6235,411.46622,71.05316,176.06277,4.883 567,-21.03743,404.92688,78.309074,173.75623,4.882 567,-72.36549,265.50427,200.08728,462.43042,4.878 567,257.61713,228.43227,23.044952,35.28221,4.797 567,386.9662,224.75534,40.51294,107.945435,4.766 567,-40.23072,367.47415,110.18435,277.2518,4.747 567,-4.246454,185.72688,17.107546,39.583374,4.67 567,-5.655949,255.7946,17.571606,35.85533,4.641 567,355.63184,227.12859,40.769104,110.04881,4.629 567,427.8191,209.16136,17.920105,51.176163,4.598 567,293.97903,222.09111,31.64389,60.61577,4.592 567,-11.77491,-33.007782,29.764439,74.672295,4.574 567,536.9858,310.9403,142.51361,341.53333,4.541 567,283.49713,151.03387,17.696075,38.44777,4.527 567,618.8849,-16.415611,17.515991,45.07743,4.513 567,624.76086,98.80521,20.93097,55.273697,4.502 567,226.91414,162.183,19.343643,43.61081,4.502 567,249.56612,222.2414,21.814377,34.67514,4.445 567,234.92766,160.89853,19.72284,44.6913,4.39 567,267.5111,213.38206,18.202362,30.594635,4.359 567,424.39465,223.24509,19.96933,56.974518,4.338 567,621.17163,9.720467,26.271484,76.9468,4.292 567,585.7212,-100.8123,74.75464,236.63771,4.29 568,469.93088,200.0151,34.887207,100.96683,28.801 568,550.37256,196.6782,27.90802,73.15227,11.228 568,404.7234,205.10292,28.65155,78.15633,11.099 568,-5.143074,-16.661898,17.240833,42.21986,8.113 568,623.30774,-32.9581,26.20282,75.56715,7.818 568,615.67834,199.56284,26.992798,102.09219,7.485 568,616.9953,185.76071,22.37555,75.28848,7.472 568,627.38306,-17.212063,16.774963,46.955593,7.264 568,-6.0338984,489.3928,18.583698,41.643036,7.247 568,602.8113,-57.126923,53.207886,135.99985,7.144 568,-11.539509,480.415,29.13894,62.93228,6.737 568,625.8013,485.2936,22.250732,47.15732,6.401 568,-10.917182,-32.08493,29.190727,73.6132,6.018 568,613.73944,450.41724,38.514282,111.118286,5.995 568,62.084816,195.33559,29.429863,67.91887,5.76 568,625.9896,191.07643,18.762878,53.43129,5.578 568,595.54785,-46.35095,42.4032,98.27569,5.555 568,-17.090511,-62.736313,56.460316,144.2278,5.489 568,274.85342,141.10182,18.39093,40.608627,5.297 568,619.2844,-16.579777,17.16504,44.37169,5.119 568,585.7894,-97.840004,73.64911,230.7681,5.074 568,-73.84223,264.6325,201.42448,462.6314,5.066 568,76.42221,195.39807,31.309052,65.18057,4.98 568,557.50665,184.8599,50.008118,109.9375,4.944 568,2.8071494,-13.917921,16.304945,38.50641,4.933 568,273.89798,198.47305,20.059753,37.176544,4.878 568,606.4633,200.12962,44.098816,154.88081,4.876 568,536.26776,309.9491,143.09717,342.99963,4.756 568,2.142378,187.66031,32.94306,70.536224,4.733 568,-22.72591,399.9406,80.10922,175.98126,4.73 568,-4.09762,160.6849,15.586514,34.850754,4.683 568,583.05035,409.52316,71.824036,178.14407,4.603 568,267.29965,141.58806,18.214264,40.639236,4.581 568,370.67792,118.24033,20.836365,52.8861,4.386 568,294.3759,212.48492,31.92099,65.06769,4.362 568,490.32565,-178.91873,234.0303,420.96985,4.355 568,3.5941005,171.5892,17.212725,32.912262,4.352 568,493.125,228.39279,238.43152,514.6854,4.345 568,-11.389275,441.76544,40.011806,98.39978,4.279 568,2.798053,491.15216,18.563644,38.451355,4.214 568,454.6784,209.75417,41.456055,108.163864,4.203 568,492.80612,181.87415,49.898468,123.85501,4.193 568,530.5429,-14.350594,32.360596,66.601746,4.167 568,283.45206,143.3654,17.801483,38.169434,4.148 568,615.4099,417.86874,25.113647,73.10828,4.119 568,27.841055,191.74384,31.79756,68.19202,4.049 568,614.21045,-18.72449,27.43634,74.144394,4.014 568,-37.42085,-124.784424,116.84384,279.31714,4.011 568,373.09064,113.52287,29.590881,74.45088,3.991 568,218.13506,146.76427,19.812271,42.33896,3.98 568,259.69476,141.08115,18.731659,40.885437,3.945 568,509.71866,-17.894554,30.64853,71.61233,3.943 568,257.51385,212.08417,22.651978,37.85556,3.938 568,571.9803,-59.54528,56.378418,136.95018,3.933 568,4.997713,473.04163,15.173227,32.61612,3.926 568,281.23874,217.32802,22.186188,39.683426,3.914 568,518.61444,-35.322395,28.772705,80.70265,3.874 568,226.5287,145.63293,19.474625,42.46164,3.842 568,403.85892,159.36523,28.562317,71.852646,3.839 568,618.12476,343.8129,20.850342,59.877655,3.838 569,518.17017,225.15091,23.874329,65.42297,88.541 569,591.8422,167.46077,43.289124,199.81859,14.981 569,390.8554,214.84413,24.398193,76.295334,13.723 569,451.8488,217.66357,34.459625,99.24573,11.878 569,399.75327,218.61176,24.317108,69.145966,11.533 569,408.81363,225.21481,20.359802,55.633087,11.493 569,622.7523,-35.052826,26.331055,79.1045,8.014 569,627.03015,-18.67389,17.483643,49.032623,7.522 569,621.6997,472.78058,29.39563,71.01904,7.331 569,377.92987,211.39348,24.685944,83.23964,7.27 569,-17.679285,-65.43523,56.39695,150.52864,6.661 569,445.7345,214.63208,28.019775,74.12628,6.103 569,-11.975935,478.18494,29.95186,64.27246,5.921 569,-6.2115726,489.12555,18.78645,42.513123,5.814 569,273.3029,156.81438,19.894897,44.99414,5.784 569,603.07904,-56.01107,53.225647,136.80257,5.55 569,468.75366,258.97586,29.448395,76.67743,5.389 569,-11.503935,-32.050476,29.606333,72.90023,5.383 569,619.34106,-19.998217,18.292786,49.060097,5.323 569,603.5802,426.12964,56.750305,148.17725,5.311 569,-5.545617,-17.47561,17.116552,42.45511,5.212 569,548.18365,222.72366,37.961487,93.36038,5.178 569,466.45724,218.30782,19.538269,57.575302,5.164 569,2.0525336,174.39043,18.525124,39.939224,5.146 569,-21.17342,405.05197,78.068115,173.79434,5.089 569,225.39427,234.80676,22.25856,41.903625,5.029 569,-72.76734,265.69122,200.34836,461.6623,4.979 569,615.727,-20.001572,26.343933,76.4091,4.953 569,535.67847,308.62494,144.36304,344.48724,4.835 569,360.13275,195.51804,35.026855,83.91879,4.627 569,275.17133,228.92975,17.90567,40.217285,4.585 569,439.74606,224.08986,29.98056,102.43251,4.531 569,-4.4184723,171.32791,17.283934,42.7296,4.52 569,213.72699,227.11603,28.37146,57.544495,4.496 569,507.66016,217.04533,26.368408,68.411545,4.488 569,493.88885,231.34718,237.92279,511.659,4.469 569,513.1388,190.60109,42.598877,89.199905,4.423 569,585.78906,-99.82527,74.515625,235.36887,4.415 569,496.11496,209.59273,26.176056,66.6685,4.411 569,381.263,158.20932,27.656372,81.122986,4.323 570,575.8172,218.46686,29.953735,81.4715,90.823 570,534.3098,206.80257,33.313843,108.800095,13.981 570,444.4798,223.38675,27.54663,83.07861,8.65 570,613.4106,452.4945,39.69055,108.96356,7.476 570,524.2506,214.01797,29.83496,83.12149,7.354 570,623.811,-34.105167,25.651611,76.33704,7.048 570,627.4064,-16.907324,16.83313,45.56223,6.927 570,-17.587538,-64.24171,56.310387,148.10423,6.733 570,-12.091718,478.8603,29.775562,64.0,6.207 570,626.58356,488.34024,21.036133,44.83206,6.181 570,603.0592,-57.031525,52.80432,133.49033,5.893 570,553.25006,212.74237,34.442566,95.42908,5.728 570,-6.4714746,489.27243,18.999466,43.248688,5.58 570,-11.53035,-32.197044,29.485235,72.74787,5.468 570,-5.489373,-16.95933,16.926022,41.942894,5.449 570,613.5869,221.52277,33.64276,101.73987,5.341 570,571.51074,211.37454,46.682434,117.76706,5.308 570,486.08292,200.65115,36.947113,120.135895,5.189 570,-21.769325,402.96448,78.68048,175.48938,5.003 570,-72.84359,265.72235,200.0604,461.6095,4.873 570,594.92334,-46.212337,42.733154,96.440315,4.74 570,583.3454,410.56784,71.394226,177.6625,4.722 570,409.04373,209.90732,26.215302,73.3602,4.717 570,619.67944,-16.405136,16.726257,42.520714,4.655 570,536.6722,310.01462,142.84357,342.94278,4.613 570,404.5669,212.7832,39.17032,110.834656,4.6 570,586.2468,-99.41673,73.52124,231.91219,4.584 570,253.0969,229.11812,31.767426,60.904953,4.574 570,273.20978,150.123,20.741028,44.036407,4.552 570,-3.8788133,172.80246,16.861609,39.562347,4.389 570,618.2102,489.99332,21.052002,42.69998,4.361 570,587.2983,231.92122,24.604431,61.80037,4.356 570,615.39685,-17.8589,26.502563,70.980034,4.321 570,2.8718395,168.2922,19.303356,38.11264,4.246 570,502.33,200.96481,35.604645,120.26599,4.158 570,421.38156,211.99237,37.85504,113.65155,4.141 570,281.7552,150.37389,19.823822,42.008102,4.14 570,493.6114,229.74347,238.65314,513.94,4.13 570,490.0932,-177.7116,234.78302,418.71664,4.13 570,577.9499,191.42343,41.525146,88.638336,4.078 570,258.27692,149.10648,20.846954,41.54416,4.036 570,596.6584,459.0747,39.99005,101.20996,4.025 570,2.3533738,216.57582,20.542995,41.51909,3.996 570,3.4277809,198.28378,29.617683,62.637634,3.984 570,604.1118,26.791069,52.60498,146.06546,3.979 570,274.7037,220.64857,18.511688,41.264786,3.95 570,309.4051,204.63998,14.420715,32.46196,3.949 570,383.971,218.62709,24.9487,75.50682,3.932 570,-37.912033,-125.35842,118.276184,281.0476,3.909 570,391.53888,200.85942,35.60382,94.13765,3.859 570,-15.472935,157.39471,48.754654,134.20892,3.834 570,594.3538,213.07625,34.401062,92.3698,3.825 571,391.09766,206.53494,26.99591,71.00656,14.07 571,454.4743,209.28456,35.623413,95.97844,13.631 571,622.60175,-32.83496,26.774963,77.743416,8.376 571,626.564,-18.893124,18.148987,48.92748,7.892 571,512.4914,189.80481,44.830505,152.02411,7.063 571,522.9153,207.16293,30.685425,92.10611,7.013 571,626.78076,488.50815,20.588623,44.14261,6.772 571,284.78412,202.57683,16.261688,32.68419,6.691 571,-11.797459,477.6142,29.622616,63.430115,6.354 571,510.94885,200.30716,31.40918,93.874725,6.308 571,-6.1977625,488.64856,19.104774,42.66461,6.269 571,613.40643,451.5723,39.006042,111.16464,6.214 571,273.98596,141.54848,18.63623,39.1976,6.209 571,-5.3388224,-17.530005,16.738869,42.508984,6.12 571,602.1854,-56.03285,53.50586,134.42921,6.033 571,-17.182863,-63.731808,56.08689,146.22699,6.009 571,266.75638,140.68423,18.57785,40.96263,5.618 571,618.0218,-20.119347,19.41925,50.0293,5.497 571,337.21585,200.21515,21.045624,43.241364,5.368 571,275.09778,213.51334,18.187073,35.381516,5.256 571,386.87866,107.97443,33.282288,77.063965,5.242 571,508.39963,176.59726,29.592682,85.13641,5.19 571,226.63118,145.1625,20.321106,44.047775,5.119 571,-72.76176,264.5824,200.44711,463.43127,5.107 571,243.82654,220.9511,33.167053,63.989273,5.063 571,234.22614,145.69347,20.463531,43.16954,5.054 571,-11.382213,-33.18637,29.200928,72.39367,5.017 571,294.20627,211.98604,28.768341,73.11775,4.972 571,583.87695,410.3026,70.80884,176.6419,4.877 571,618.75073,489.8139,19.68805,42.873596,4.867 571,-21.441738,403.5558,78.79468,174.89453,4.82 571,172.03973,236.13623,16.42743,29.20929,4.782 571,595.1932,-45.791077,42.818054,98.65599,4.663 571,258.80923,135.5484,20.220154,39.722168,4.66 571,166.12799,196.93875,26.980408,69.19324,4.658 571,502.72845,96.719315,28.243042,72.75795,4.636 571,282.4262,136.11046,18.618927,36.520218,4.623 571,586.15674,-99.5175,73.99371,232.66154,4.588 571,170.70856,211.85013,18.24675,38.540665,4.579 571,497.62726,489.71997,21.150269,41.1297,4.55 571,340.79117,198.15529,37.51596,77.521164,4.545 571,536.76385,310.51196,143.06915,342.83557,4.452 571,277.10846,203.07314,16.989044,33.42459,4.425 571,290.76282,198.92635,14.881744,30.239212,4.398 571,299.7018,205.14561,14.721497,30.631805,4.352 571,481.8581,489.0738,20.93451,41.965332,4.348 571,218.94565,146.89838,19.367615,43.22635,4.296 571,489.45877,-179.26639,236.37619,421.05954,4.27 571,324.95105,198.92673,37.099365,79.2211,4.247 571,521.8617,488.3235,21.39441,44.012634,4.235 571,505.70697,489.029,21.301758,42.639343,4.16 571,493.32953,229.37482,237.557,514.61597,4.153 571,344.89294,115.8792,20.27948,35.453133,4.148 571,514.1145,487.80865,20.979492,44.14801,4.147 571,178.65076,235.36008,17.32492,29.790436,4.146 571,420.67365,210.94868,37.978516,93.00539,4.136 571,309.68817,214.7924,31.635712,70.694595,4.119 571,-37.608612,-126.01228,118.27379,278.62503,4.057 571,213.80466,138.54199,29.261658,67.888214,4.052 571,236.36247,139.19493,29.610458,61.08835,4.005 571,487.04462,211.30594,38.127014,116.45032,3.996 571,260.49246,218.77608,33.370026,69.81828,3.967 571,249.03899,219.1547,22.860611,43.938324,3.964 571,241.86264,141.76271,19.73941,38.507187,3.931 571,330.81235,206.66264,20.795258,43.844406,3.858 571,5.2893295,468.9689,37.878235,94.31918,3.858 572,433.8719,217.7321,29.298828,72.11116,21.947 572,626.91003,-17.106157,17.14093,48.583237,8.278 572,423.71814,210.53915,30.025604,89.46011,8.261 572,573.1731,218.534,32.034058,90.72272,7.597 572,622.5895,-33.37983,26.558777,78.771095,7.308 572,-5.018511,-16.439066,16.271608,41.50332,6.897 572,-5.921142,489.31955,18.783527,41.7789,6.474 572,602.4645,-54.99247,53.7724,134.02322,6.151 572,275.55887,219.73448,17.093933,28.901062,6.136 572,285.26788,210.91023,14.600098,29.334106,5.69 572,-11.708776,477.25455,29.919432,63.91513,5.678 572,292.19806,206.97803,15.20636,30.054123,5.596 572,626.29205,488.10095,21.386536,44.987732,5.544 572,-17.01873,-63.93812,55.88532,145.38957,5.476 572,-11.236173,-32.47056,28.92862,72.65255,5.441 572,266.59818,143.1936,19.248962,39.058914,5.416 572,613.10175,453.41354,38.890503,109.96219,5.356 572,219.82008,147.6491,17.41127,39.066986,5.264 572,0.25831103,204.90506,26.972216,81.90134,5.231 572,204.43988,147.14752,17.219803,43.323914,5.21 572,430.0148,196.69734,27.34842,75.47148,5.208 572,211.24988,147.19443,17.020782,41.292038,5.128 572,-72.92294,265.34546,201.0743,463.4923,5.04 572,282.5757,142.92526,18.222717,38.24327,4.969 572,615.04395,-17.538918,26.626648,76.1048,4.944 572,-40.234932,363.5938,110.93621,278.59723,4.938 572,387.62195,218.81241,39.12216,94.141266,4.884 572,226.6108,147.64119,18.446869,37.704575,4.826 572,-21.30151,402.0798,78.51108,175.53482,4.732 572,575.81964,200.81018,49.1214,185.79584,4.706 572,536.59705,309.9594,142.92822,343.02057,4.662 572,274.12625,141.98013,19.200256,39.903854,4.594 572,489.49222,-180.2011,235.26596,422.42175,4.495 572,582.82587,410.52246,71.95209,177.99786,4.479 572,586.0215,-99.40169,74.027466,233.94218,4.472 572,413.17316,233.87657,31.164581,76.299576,4.427 572,-0.19162536,332.54288,24.939198,70.42377,4.418 572,619.49756,-17.27446,17.028015,47.19178,4.381 572,492.7044,229.85907,238.66046,514.1713,4.356 572,-7.868472,224.69487,37.102833,107.77095,4.348 572,594.3873,-43.444702,44.399414,96.53948,4.319 572,4.208723,203.36882,36.28665,107.35634,4.282 572,234.2615,147.8582,18.832947,37.31108,4.268 572,627.09015,-0.47566605,18.061523,51.084866,4.235 572,580.7594,315.86285,30.013245,84.07675,4.23 572,273.78326,227.93744,21.087921,43.47766,4.212 572,-5.314083,19.655542,17.688263,40.907295,4.211 572,9.857767,179.60513,55.444626,121.06,4.173 572,146.3053,230.31873,33.54576,58.31256,4.15 572,-5.3724337,211.65623,18.402958,51.544968,4.15 572,215.19807,150.73495,25.682281,69.4561,4.141 572,3.7673414,-12.960423,14.80319,37.01431,4.111 572,259.08984,142.73274,19.507812,39.39778,4.109 572,500.70105,32.841778,28.605408,79.485214,4.047 572,414.18488,211.00229,53.30017,138.35947,4.008 572,459.25522,152.98703,32.47589,80.89212,3.997 572,521.4511,487.47,22.436646,45.363678,3.991 572,-10.675333,9.631531,28.529507,65.77969,3.984 572,341.1916,199.22438,27.922638,57.55809,3.98 572,337.82574,203.70941,20.781158,43.480423,3.977 572,482.08054,489.5982,20.81717,41.46637,3.966 572,278.44296,206.55463,13.6138,27.448257,3.941 572,298.82178,207.74771,15.413452,28.937714,3.935 572,-37.71241,-126.31589,117.6788,278.52768,3.934 572,230.75998,214.94728,36.17459,75.71062,3.916 572,307.04163,211.16544,17.05307,33.530014,3.906 572,461.80966,-36.19799,28.545197,79.66203,3.899 572,370.3167,211.20673,18.716034,34.880676,3.885 572,268.91513,226.48755,30.557953,70.61438,3.869 572,355.73825,212.79613,39.310425,88.12868,3.856 572,405.2541,216.47202,15.394867,32.294815,3.842 572,497.79025,488.9179,21.08371,42.6015,3.836 572,216.55083,244.0546,21.980667,36.910034,3.812 572,558.824,109.14059,29.379028,85.138405,3.761 572,612.2495,326.15814,38.51355,120.96182,3.76 572,209.49051,237.07234,22.413116,36.74327,3.752 572,2.3114367,490.30096,19.503883,39.931458,3.746 573,265.27054,225.2381,17.940857,29.727707,11.499 573,616.6717,185.10507,23.69513,89.490326,9.983 573,-5.6208043,-15.757161,17.280489,41.39795,7.451 573,146.9322,221.80655,33.303177,63.35309,7.091 573,610.38525,-48.03182,41.968506,99.91067,6.99 573,621.55084,474.02805,28.893494,70.06589,6.738 573,242.76582,217.83986,20.118423,39.938065,6.401 573,509.72592,157.79358,28.767609,86.274124,6.185 573,-11.792433,478.43646,29.7665,62.79828,5.984 573,-6.226487,488.96848,19.040524,42.05246,5.969 573,251.86508,219.50311,16.937866,31.555038,5.958 573,593.37506,191.93428,23.828796,54.750824,5.853 573,250.06761,225.11674,21.161484,43.629196,5.642 573,218.83533,147.52773,19.099533,36.28952,5.448 573,73.730385,251.45526,35.70295,63.74121,5.434 573,626.78186,-20.707947,17.999023,51.144222,5.434 573,259.20483,140.63107,18.35495,38.66275,5.339 573,-16.83554,-62.49948,55.599163,142.97784,5.313 573,514.78174,183.77638,31.62915,87.30101,5.287 573,-72.9856,265.29556,201.28864,463.2584,5.233 573,-11.293191,-32.21195,29.718441,73.48518,5.23 573,243.84871,212.55234,16.622421,27.842545,5.103 573,236.3219,218.19104,30.295776,61.435547,5.059 573,-20.991188,404.81854,78.42179,173.58429,5.029 573,252.29062,141.51031,18.061493,36.853638,5.023 573,261.6139,223.91689,26.364685,54.198685,4.982 573,603.6446,428.27515,56.75128,144.65479,4.931 573,-39.946915,368.51337,110.144005,275.58197,4.893 573,602.60706,181.02992,33.136597,108.12959,4.828 573,211.369,143.06363,17.383347,34.96129,4.793 573,585.88684,-99.580505,74.80652,233.14377,4.73 573,486.56552,149.55928,30.524078,72.69734,4.727 573,234.52402,143.42097,18.331284,33.02092,4.708 573,88.775185,249.95615,37.593002,59.640015,4.702 573,204.17938,142.97621,16.87915,36.551575,4.692 573,226.04784,147.24213,19.378677,37.078156,4.656 573,517.6667,149.28412,23.66449,55.089874,4.646 573,195.8328,143.26378,16.96936,39.24025,4.635 573,198.20442,152.3696,26.592499,67.7466,4.628 573,458.48004,175.89139,60.331726,114.38455,4.529 573,266.98865,141.67593,17.846558,36.318634,4.518 573,536.4188,310.1482,143.10132,343.588,4.506 573,2.764858,-13.149517,16.246136,39.296608,4.335 573,31.946993,253.7486,39.30491,57.194214,4.28 573,232.94763,225.24652,22.783081,45.40738,4.229 573,161.14264,209.76422,32.09781,68.145386,4.217 573,522.2524,217.84656,34.03357,93.94061,4.215 573,273.27643,219.27982,17.369507,29.813644,4.204 573,492.91907,229.88449,238.35193,514.58057,4.199 573,618.34467,486.04922,21.145386,46.839203,4.184 573,488.80865,-177.13255,235.4798,418.69785,4.176 573,618.21906,-22.083939,19.532227,51.866463,4.174 573,275.3785,141.94772,17.82846,35.230072,4.172 573,527.697,187.19931,21.78772,55.529114,4.169 573,-37.707283,-128.02145,117.59041,280.1883,4.162 573,506.33502,489.3806,20.768188,41.87262,4.151 573,268.4207,215.13338,14.447418,26.290344,4.143 573,571.635,-44.662018,57.960022,135.42723,4.09 573,68.27957,183.28679,30.53444,65.81497,4.047 573,529.64996,299.89728,33.789795,82.30438,4.018 573,282.45975,137.75034,18.098206,34.608414,4.013 573,58.660465,251.02644,35.23373,61.931686,4.004 573,559.1079,171.60938,49.26953,132.62793,3.978 573,225.61195,228.03128,33.990646,72.14606,3.94 573,498.19537,488.86758,20.585693,42.539948,3.938 574,421.63986,208.54196,30.205048,83.41397,25.465 574,264.82263,219.23505,17.7482,36.231705,12.82 574,252.42722,207.71014,16.471436,36.108185,10.738 574,259.01794,214.79982,17.663696,36.772507,8.398 574,-5.751811,-17.011345,17.560272,42.92813,7.679 574,625.9048,485.11246,21.980408,48.247955,7.285 574,-10.887806,-32.364506,29.64901,73.00642,6.702 574,621.8227,-34.103394,26.922913,79.109055,6.658 574,613.09265,451.1305,39.64203,109.920105,6.423 574,430.91946,221.14897,29.119629,88.2646,6.298 574,-9.300884,465.57745,38.01931,90.07446,6.046 574,-6.117084,489.51703,18.785654,41.465393,5.933 574,260.86505,220.16896,27.935577,63.911697,5.801 574,273.77487,130.16885,19.53418,35.35565,5.605 574,2.7796686,-14.631472,16.603281,39.84168,5.516 574,258.3362,134.4488,19.417236,37.444397,5.461 574,-17.479538,-62.43486,56.86351,141.3504,5.431 574,-4.523844,153.38263,16.730732,44.067566,5.42 574,84.1239,210.51634,29.958908,66.1732,5.29 574,299.95453,218.20969,18.421906,36.69937,5.261 574,-72.48807,265.86505,200.3114,462.88098,5.179 574,266.49005,133.9017,18.84439,37.12532,5.071 574,282.68347,131.49805,18.80664,33.915955,5.06 574,492.72424,124.96265,28.213013,75.322266,4.996 574,292.1577,216.53505,17.938385,38.45282,4.991 574,-21.166191,404.1116,78.69387,174.54965,4.97 574,105.06474,225.20374,21.286743,39.297974,4.848 574,602.62366,-57.081562,53.338806,133.81227,4.815 574,290.76355,135.72887,18.194519,35.180893,4.81 574,0.41451335,145.35117,25.277302,71.76308,4.661 574,583.5353,410.92816,71.14624,176.83826,4.629 574,98.943924,215.38408,31.506805,61.16545,4.587 574,284.6627,212.18517,16.944702,38.064224,4.548 574,536.901,310.19046,142.42175,342.40536,4.531 574,556.6526,212.1325,17.348022,27.074966,4.518 574,618.00854,486.58832,21.591492,45.925476,4.405 574,594.3718,-45.430023,44.51599,96.73156,4.405 574,250.66505,223.12415,19.523087,43.716675,4.395 574,-5.523088,122.097885,17.868448,43.13571,4.366 574,234.65582,140.04277,18.778107,35.820786,4.351 574,227.27678,140.27934,18.232864,34.54541,4.323 574,-8.344444,229.26031,36.87213,99.84137,4.321 574,612.1787,153.29391,36.1214,108.86044,4.305 574,617.8443,-9.561853,21.907043,54.45524,4.3 574,-37.578537,-127.80081,116.891365,280.85806,4.271 574,396.02048,196.82327,26.020721,70.67563,4.254 574,219.62425,140.78102,17.675095,33.986954,4.253 574,65.966225,287.80994,32.868675,59.538116,4.234 574,-1.4534962,-15.987808,27.883102,67.04924,4.231 574,416.80127,205.64151,50.099823,131.05661,4.208 574,-0.63789725,193.23802,26.73838,78.58357,4.2 574,-8.716761,-6.1413383,39.288467,98.325455,4.189 574,196.46896,139.29677,18.031006,37.126556,4.175 574,493.76404,229.35818,237.67285,514.7184,4.165 574,299.6253,205.96136,16.846375,33.32274,4.129 574,618.9064,173.26616,20.340942,62.290497,4.129 574,334.62354,192.50766,28.108643,56.646545,4.085 574,562.2102,491.24506,20.650574,39.55536,4.073 574,5.1829314,469.01,38.326096,93.69812,4.06 574,162.37476,155.8791,20.800201,43.17714,4.058 574,298.2996,133.04045,18.590363,32.097733,4.051 574,554.6027,492.9387,19.770569,38.250458,4.037 574,252.00842,139.8799,18.29898,37.604523,4.027 574,366.23154,191.85124,25.162994,59.587738,4.025 574,243.35802,223.34671,19.013016,44.756134,4.024 574,367.54822,189.69891,50.08499,118.04956,3.991 574,-9.596405,124.80711,27.652458,72.12816,3.983 574,572.6782,150.84012,54.02765,131.65097,3.971 574,570.0261,489.25018,21.30774,42.49066,3.971 574,273.60318,215.0174,17.377167,36.015915,3.954 575,257.49158,207.25844,22.179138,51.45894,61.87 575,449.94083,211.60323,31.376923,77.44554,12.785 575,548.21985,212.65921,32.583435,83.32352,12.183 575,3.4430194,200.26175,29.319645,72.12253,8.948 575,627.4585,-15.160711,16.263916,41.952045,8.184 575,626.48145,490.09802,21.44873,42.984436,7.135 575,290.70206,210.66647,18.510925,43.741516,7.036 575,623.4983,-33.09964,25.391968,71.52453,6.798 575,-10.592566,-32.583603,29.481695,74.83596,6.766 575,254.31866,200.54628,17.918365,38.922913,6.587 575,613.33124,453.27054,39.63263,108.82303,6.539 575,618.7118,492.51218,20.296265,40.439545,6.502 575,306.72787,209.53873,18.468079,38.046753,6.496 575,-11.814291,479.39832,29.163479,62.082397,6.483 575,-6.153631,490.18607,18.297615,40.998077,6.165 575,-5.5308347,-16.713043,17.593052,43.55078,6.154 575,399.3622,187.45572,24.295197,70.28024,5.768 575,603.23834,-55.172848,52.789246,134.87271,5.626 575,-17.906458,-62.840527,56.71797,140.74406,5.478 575,285.27917,205.33444,18.625916,42.546036,5.252 575,544.7255,201.6994,45.780945,148.58075,5.22 575,234.01085,198.28748,18.39476,37.10327,5.219 575,478.11795,102.80415,28.92871,74.61528,5.17 575,-21.47493,403.4641,78.397736,174.63135,5.068 575,620.095,-15.146526,15.914612,38.347305,5.066 575,-73.032196,266.49762,200.81389,460.78046,5.013 575,440.3593,198.31827,29.04187,78.00894,4.97 575,536.0574,216.00078,31.92749,78.480606,4.951 575,560.61835,222.47626,31.664978,83.834045,4.942 575,-4.135817,162.15146,16.184576,44.46431,4.894 575,1.9773674,-4.4592953,20.398087,46.860046,4.841 575,285.43628,198.41412,14.19809,30.717636,4.798 575,407.63507,209.31268,20.212769,54.057648,4.753 575,583.20056,410.45242,71.65283,177.62057,4.705 575,586.0534,-98.80518,74.47449,232.49771,4.661 575,608.26733,199.56754,27.032104,56.275757,4.634 575,557.9701,207.91444,23.618958,58.24135,4.599 575,203.07407,132.60422,18.684723,33.181503,4.593 575,25.670391,212.36063,21.501965,46.51593,4.551 575,210.64935,133.3438,19.243927,32.748825,4.444 575,536.65045,310.52216,142.5747,343.0108,4.411 575,258.31192,127.83082,19.677856,36.729286,4.385 575,282.67337,129.32689,18.116364,33.744858,4.376 575,-1.5209043,178.6366,26.405891,80.55664,4.371 575,610.53687,492.49084,19.795227,40.006958,4.362 575,218.6654,133.37576,19.269531,32.773544,4.356 575,-6.6006145,211.3101,35.564316,100.17131,4.333 575,267.20514,197.28984,16.117432,30.74878,4.329 575,274.05826,127.24414,19.20697,35.5773,4.325 575,-9.179111,110.79602,26.559597,79.375916,4.208 575,-5.2621484,117.577835,17.831024,51.213837,4.2 575,290.8626,129.41727,17.744904,33.6485,4.191 575,492.7038,229.04135,239.13794,515.6085,4.13 575,-9.637403,-5.7023964,39.606407,99.04941,4.129 575,265.90714,128.23247,18.996155,35.236557,4.126 575,12.581034,180.96051,49.31743,113.30798,4.117 575,-5.049284,184.87375,17.654495,46.580154,4.112 576,256.31198,204.37071,24.838074,53.216812,60.115 576,263.0089,197.5252,20.272064,42.06302,11.039 576,482.34708,204.68246,30.985687,81.217316,8.501 576,586.6543,207.81664,29.030151,57.684982,8.385 576,-5.5367174,-15.133414,17.487305,40.98947,6.649 576,622.7322,-34.503036,27.165405,77.905106,6.621 576,-12.074415,478.9732,29.72769,63.29901,6.236 576,244.05098,193.05513,18.600204,42.472916,6.208 576,626.19214,486.6573,21.716248,45.750305,6.157 576,411.37802,97.44521,29.944885,71.28022,5.898 576,602.3792,-56.68353,53.79608,137.62878,5.819 576,627.16254,-20.395866,17.767578,49.67278,5.77 576,260.74677,189.71423,33.996216,72.52667,5.753 576,-17.466719,-63.97996,56.016632,141.90141,5.741 576,413.66806,129.79434,27.409698,68.59422,5.729 576,-6.345339,489.35468,19.03767,42.848206,5.693 576,406.25165,224.39766,27.959656,71.98387,5.677 576,613.2228,451.69653,39.00775,109.5802,5.578 576,375.98386,195.72453,23.179535,50.177338,5.47 576,-11.1619625,-30.947533,30.1622,71.94234,5.459 576,290.51773,202.93596,18.744843,39.014008,5.397 576,266.93353,192.59703,16.709229,29.208832,5.354 576,240.57346,195.40956,28.567749,60.040283,5.221 576,-72.95188,265.72623,200.78537,461.70224,5.159 576,374.87244,131.66176,25.898987,73.326706,5.135 576,403.5762,200.6683,27.26947,74.64584,5.098 576,259.37473,193.62712,17.182526,29.508957,5.074 576,251.9096,198.13983,18.373413,39.482635,5.048 576,219.3528,127.15103,19.087128,31.919312,4.99 576,359.7984,126.77772,25.087738,71.72088,4.973 576,-21.141144,404.17792,78.20799,174.09442,4.961 576,585.44385,-99.42078,75.126526,235.5232,4.868 576,256.9211,118.285645,21.612305,39.25244,4.838 576,91.533066,195.45871,29.090958,63.09091,4.791 576,361.1633,106.71919,19.707672,35.649002,4.78 576,2.7549362,-12.728797,16.7173,38.234684,4.758 576,277.91342,200.35242,29.53009,55.203857,4.741 576,292.01312,197.5254,13.389984,30.056808,4.675 576,318.33212,197.48631,14.316559,28.271027,4.626 576,583.0968,411.13687,71.63318,176.21713,4.606 576,536.5037,310.69583,143.02136,342.5803,4.596 576,251.4618,124.65964,19.48024,38.180725,4.59 576,285.27377,192.60782,14.379578,27.468643,4.578 576,275.26877,196.18257,15.999359,31.312134,4.575 576,616.377,53.94112,24.52539,82.41412,4.56 576,339.25644,190.66956,19.64798,37.125137,4.544 576,234.52365,127.499306,18.800812,32.46525,4.53 576,273.10767,117.47759,20.497498,37.773964,4.501 576,246.5259,171.4463,37.680527,77.20726,4.36 576,399.08633,101.669495,27.794617,75.03723,4.352 576,282.2571,117.87369,19.221191,37.079437,4.35 576,289.87506,119.95159,19.20694,36.25892,4.324 576,2.386285,148.35622,18.784607,54.308838,4.311 576,492.6195,229.84476,238.63934,513.7709,4.306 576,265.37454,118.22772,20.640533,37.535675,4.266 576,538.7536,-15.959792,16.950073,38.9116,4.254 576,247.93045,209.60056,27.51233,72.73367,4.198 576,427.3445,113.92804,31.067657,74.90088,4.127 576,66.97184,205.80377,42.05114,89.7215,4.051 576,-7.7603984,199.58179,37.135498,97.722534,4.035 577,474.10297,191.9323,29.54831,112.64049,64.012 577,265.55698,198.6053,20.559845,40.652313,18.093 577,417.8294,208.98187,21.41632,56.321014,10.349 577,464.03958,202.78987,28.311798,96.888565,9.059 577,383.4649,199.36792,25.690552,68.634125,8.141 577,627.1475,489.8362,20.08722,43.47641,7.889 577,619.1299,492.0663,19.918152,41.136322,7.686 577,22.16372,197.55319,36.39713,63.686035,6.879 577,612.98706,453.6859,40.10193,108.6969,6.814 577,-12.139415,479.14175,29.299446,63.05374,6.195 577,-17.343025,-63.60639,55.96987,144.70819,6.033 577,4.4248223,203.15257,30.51431,71.191055,6.032 577,627.45416,-17.507198,16.979065,45.72624,5.98 577,-5.7340097,-17.430285,17.016392,43.58246,5.976 577,463.7195,198.89659,50.52542,138.7878,5.866 577,243.76599,205.91681,29.047546,67.27585,5.838 577,-8.920544,464.67502,37.616997,91.767,5.641 577,-6.386864,489.12363,18.871181,42.632782,5.614 577,374.6367,192.24747,27.366028,64.04941,5.595 577,260.6401,204.3945,30.138214,62.682495,5.573 577,178.40742,121.48433,20.794449,43.072556,5.49 577,484.50964,207.49101,27.430634,90.53386,5.451 577,-11.02582,-32.36462,29.095892,73.172615,5.436 577,258.16388,202.38942,22.024658,46.746048,5.369 577,60.91355,115.54403,28.332222,78.86793,5.363 577,623.5145,-34.72524,25.886658,74.76171,5.285 577,-73.05762,265.62372,200.95624,462.4638,5.211 577,13.613073,186.95891,50.685844,107.52492,5.181 577,428.9233,129.85164,27.104553,85.35191,5.089 577,417.3296,132.99611,20.296692,57.428467,4.947 577,276.86218,185.86246,36.639862,75.12073,4.94 577,603.4591,-55.398373,53.206238,137.71788,4.91 577,-21.345486,403.76132,78.67455,174.68448,4.898 577,194.09924,119.11714,19.27304,34.985107,4.887 577,203.2106,122.409164,19.847412,37.40245,4.751 577,583.36426,412.0907,71.47327,176.70203,4.748 577,257.60687,118.12383,20.737,37.324318,4.736 577,225.52339,123.16116,20.200485,38.935608,4.714 577,455.8631,227.58084,26.498932,90.647095,4.703 577,273.961,112.22244,19.061707,35.410797,4.695 577,186.03024,121.788765,20.112198,39.89437,4.665 577,210.38771,121.58978,19.421646,34.135284,4.66 577,265.71228,112.49264,19.535034,35.124184,4.631 577,440.54956,194.14117,32.65326,99.25842,4.601 577,17.608599,209.5142,24.746271,57.07817,4.579 577,261.57993,195.68811,17.803558,35.366882,4.531 577,275.01175,193.93051,17.468018,37.265045,4.481 577,-4.9689226,226.88974,18.306496,46.786804,4.467 577,267.52567,189.27441,17.494476,33.812683,4.465 577,536.43134,311.19647,142.79071,342.6524,4.441 577,526.1017,186.66309,25.628906,65.60312,4.414 577,260.72064,168.07335,40.074768,79.93471,4.388 577,352.06915,197.43222,21.904236,45.586,4.378 577,424.69318,122.765366,21.717316,61.048187,4.35 577,284.12494,195.43945,16.226349,33.707047,4.284 577,1.6635513,199.45569,51.581264,130.79059,4.273 578,422.43304,214.764,29.595032,69.74448,63.399 578,503.37543,193.07832,42.82843,150.02708,55.478 578,268.35764,203.31569,21.578735,43.060272,43.297 578,407.7042,211.75941,30.145264,73.356155,9.412 578,506.03058,199.12581,32.241455,89.04875,8.589 578,603.6815,197.50417,27.490845,74.59032,7.516 578,302.59018,223.22247,29.454926,62.093872,7.228 578,623.6571,-34.766968,26.299438,76.02462,7.145 578,281.08157,203.02621,17.937164,39.708496,7.098 578,264.1244,197.29782,33.113586,66.20169,7.095 578,479.17438,97.94445,28.413483,62.665565,6.738 578,621.5287,474.24304,29.790344,69.609985,6.509 578,627.35114,-18.111141,17.49408,46.695515,6.339 578,-11.649239,478.84833,28.708815,63.011047,6.25 578,185.72342,122.883736,21.53151,38.605553,6.214 578,-5.9725857,489.00275,18.47282,41.520447,6.141 578,-5.218753,-16.906452,16.369644,42.723248,5.667 578,256.40485,208.42867,29.388062,64.482834,5.55 578,-16.84347,-62.577354,56.239944,144.52794,5.533 578,602.9269,-54.352882,53.669495,134.49945,5.508 578,171.05573,122.698746,20.002487,38.133713,5.506 578,275.20767,208.32828,30.715424,66.987335,5.265 578,162.0337,123.02409,20.422623,43.27768,5.182 578,-73.09985,265.64722,201.03122,462.27844,5.173 578,20.792496,129.00943,30.740906,71.00856,5.162 578,-11.412683,-33.205536,29.432999,74.57185,5.142 578,208.81401,123.3,22.001816,41.474396,5.091 578,419.28802,96.2518,31.584595,87.23013,5.061 578,583.50104,410.50854,71.31195,176.87756,4.91 578,-21.471668,403.37418,78.872444,174.86679,4.902 578,193.60828,123.926895,21.573853,38.639313,4.865 578,275.41287,197.30174,15.854675,35.707687,4.853 578,1.1515021,178.8276,31.22581,86.072266,4.73 578,284.22382,198.01399,13.518738,30.320679,4.721 578,585.8756,-98.91081,74.47748,233.33334,4.7 578,505.3661,100.86771,30.988708,89.35358,4.697 578,319.51,230.99619,25.323181,45.95169,4.677 578,614.0663,191.09526,24.801453,78.89339,4.633 578,495.53406,206.61835,30.841614,87.6449,4.623 578,536.51074,310.27435,143.60645,343.13617,4.573 578,78.14722,115.21166,29.228516,67.425545,4.507 578,387.3487,213.89145,41.449585,95.589874,4.501 578,153.80203,124.50497,20.229767,46.10949,4.477 579,282.02133,199.98819,21.82608,45.029083,76.501 579,530.7203,198.618,38.10968,111.279465,16.009 579,436.4465,200.11333,29.906067,69.2668,13.13 579,297.1316,205.62187,20.172974,40.625397,12.176 579,279.51135,192.59995,33.41864,66.51865,7.317 579,627.16895,-17.734978,17.235474,47.107178,7.249 579,201.24115,112.60358,23.172577,43.397156,7.061 579,-11.778312,479.05563,29.249416,63.165314,6.577 579,309.36005,220.80229,29.455109,68.25398,6.556 579,-16.666662,-64.16423,55.394615,147.40445,6.353 579,-6.0718355,489.24283,18.775349,41.705048,6.14 579,623.0195,-33.8654,26.343079,76.857025,6.074 579,626.38434,486.90414,21.477478,45.93698,6.045 579,313.53616,218.84462,19.524994,31.349457,5.745 579,-5.432848,-18.108215,16.658924,44.22685,5.719 579,613.5588,451.4104,38.812134,110.34119,5.69 579,-11.201573,-32.650196,29.302925,73.375404,5.615 579,272.25827,203.04083,27.747467,57.40564,5.614 579,219.23647,245.40868,17.9431,39.01219,5.583 579,305.56046,220.44441,23.153778,37.836533,5.517 579,353.62433,195.26317,22.173248,49.744034,5.496 579,217.21489,112.95975,21.33989,43.35544,5.425 579,204.17426,113.13674,29.256454,64.78593,5.373 579,602.8759,-56.19574,52.8584,132.72192,5.331 579,448.18332,212.56549,23.792969,61.163452,5.222 579,-72.67441,266.09985,200.84723,462.25183,5.144 579,185.38773,110.2728,23.547638,42.368713,5.085 579,224.12453,242.1474,19.446,36.40204,4.956 579,535.80396,193.01624,56.751953,159.50543,4.949 579,583.5558,410.93112,71.14502,176.37363,4.938 579,-21.551638,403.44086,79.088165,174.90881,4.893 579,211.11517,247.75922,17.722122,39.539185,4.798 579,299.52045,135.27136,32.229736,62.34906,4.728 579,283.16504,188.53401,16.116455,35.942566,4.722 579,268.0537,203.87753,21.201996,39.659912,4.705 579,317.54666,137.37062,28.733673,70.780365,4.66 579,282.6981,112.031235,18.514404,32.816498,4.655 579,537.5507,282.1404,31.675903,76.85104,4.645 579,-4.9162936,170.95103,16.636269,40.67308,4.606 579,619.15405,-18.789478,17.482239,45.450195,4.576 579,331.55124,218.12965,31.817657,59.424454,4.575 579,249.64455,109.47401,20.581741,39.327995,4.567 579,190.54994,109.43773,28.661484,56.941544,4.534 579,373.12085,130.23877,27.816956,75.71428,4.445 579,490.94815,92.518684,32.43515,77.09243,4.437 579,536.58606,310.62555,143.43787,342.9267,4.418 579,308.68127,484.7101,30.786469,57.44754,4.37 579,423.40247,197.90419,33.034363,70.42256,4.355 579,-2.210734,270.1927,30.496895,69.027466,4.349 579,524.48785,172.08783,32.418945,90.913055,4.301 579,594.8839,-45.898388,43.408325,96.65805,4.276 579,388.0576,196.71994,39.515656,82.66345,4.261 579,573.98096,181.40753,49.71222,129.67966,4.254 579,308.33447,122.50664,31.621277,65.24425,4.25 579,213.29347,129.69353,28.685074,62.39328,4.222 579,256.39526,102.66844,21.3208,38.414444,4.222 579,290.26193,111.429054,18.828766,34.74949,4.188 579,234.7038,108.307976,19.885681,41.105858,4.18 579,599.0987,208.50534,28.393738,56.472107,4.171 580,299.02405,201.93594,24.45987,45.29535,72.031 580,604.82605,33.706627,29.286255,80.74423,8.285 580,293.64682,196.85904,34.88257,71.09689,7.955 580,616.81433,204.81784,23.039673,85.03104,7.744 580,627.5788,-16.661858,15.984558,44.861767,7.565 580,623.5479,-33.6023,24.968872,72.46924,7.442 580,-9.088321,462.88287,37.823334,94.15497,6.614 580,321.77737,212.54863,22.645294,38.62668,6.56 580,311.47,208.05437,22.207672,40.619003,6.395 580,281.89447,191.63576,19.993439,40.590714,6.356 580,-5.9912586,489.44202,18.33775,42.46753,6.303 580,603.5876,-56.108368,52.54431,134.04216,6.254 580,-16.948023,-64.04483,55.48693,146.44711,6.241 580,-5.5601716,-17.794422,16.826126,43.873398,6.198 580,616.823,34.763115,21.15802,59.63273,6.043 580,276.54834,183.54001,18.086334,38.116257,5.964 580,277.5774,191.79782,29.5484,63.610596,5.604 580,613.3057,453.76968,39.221436,107.33243,5.603 580,620.8013,-15.29036,15.349487,38.756824,5.598 580,626.0834,487.15042,21.635376,46.3743,5.306 580,-11.167507,-32.485783,29.127968,73.36679,5.271 580,197.67137,101.70508,28.615326,57.177063,4.996 580,-21.446007,401.69305,78.460045,176.56061,4.899 580,-40.526115,364.3302,110.897194,278.45874,4.885 580,-72.69011,266.79126,200.32463,460.9889,4.87 580,88.76364,163.36726,21.992844,50.793686,4.842 580,431.13776,110.31033,27.37207,66.91223,4.798 580,447.79788,192.80176,21.99524,47.459793,4.786 580,168.7865,103.0308,22.24878,34.625267,4.733 580,358.16333,102.4353,28.13095,66.01642,4.73 580,489.97858,489.70572,20.773743,41.570343,4.68 580,61.848297,142.93105,30.28244,67.512985,4.63 580,531.6721,-12.799929,17.165894,36.130558,4.628 580,583.15643,410.9167,71.75989,177.60785,4.628 580,217.22649,106.549515,20.901382,40.477585,4.613 580,536.02814,311.34302,143.6438,343.19507,4.607 580,260.1524,199.94391,33.211,61.135223,4.584 580,191.56401,103.3181,24.798676,43.673874,4.549 580,-5.059353,167.09254,17.050728,44.305817,4.517 580,621.6433,32.574795,27.721924,75.55849,4.496 580,396.59885,140.02219,28.457031,78.29288,4.492 580,290.91284,208.89261,23.046783,49.171936,4.487 580,257.08078,95.133415,21.605957,37.28425,4.462 580,482.24243,489.6781,20.44925,41.950195,4.447 580,323.79388,202.65573,38.61139,92.60657,4.436 580,2.6529825,198.80302,28.148228,73.18489,4.428 580,247.12935,181.2109,37.83452,77.232635,4.415 580,492.2255,229.24066,239.01315,514.0353,4.383 580,190.14069,259.45493,26.983826,56.63382,4.382 580,282.81223,182.49692,16.207611,31.002548,4.344 580,290.2252,108.88464,19.836395,35.78238,4.336 580,547.0637,-10.730922,16.916016,33.948437,4.334 580,6.9853964,145.99426,26.564568,74.023315,4.314 580,271.01392,184.08922,26.745026,56.731613,4.307 580,539.02344,-12.331072,16.96991,35.59455,4.252 580,273.0155,96.43674,20.62445,34.92096,4.206 580,184.70609,101.73218,22.995728,39.175964,4.144 580,360.51572,93.758316,22.859772,42.28096,4.11 580,521.78796,488.44775,21.92633,44.629333,4.105 580,595.7082,-46.34094,42.35852,98.65468,4.088 580,306.36487,105.60901,18.56131,33.260468,4.079 580,393.70007,140.99568,21.079529,54.081467,4.075 580,265.0665,96.69399,20.771393,34.68754,4.048 580,397.52945,177.26959,27.389343,64.98294,4.033 580,173.64319,100.55998,30.811188,54.074966,4.033 580,362.38083,186.21004,22.64505,52.26013,4.022 580,389.48578,192.64484,38.65445,91.579956,4.021 580,168.20229,266.95044,27.173965,61.95172,4.004 580,585.65765,-101.29383,76.21765,236.40881,3.998 580,419.5487,98.68933,30.36435,62.69348,3.993 580,2.8887339,490.36838,18.204296,41.403717,3.991 580,298.52026,105.20255,18.863586,34.018578,3.983 581,317.22742,201.75519,29.15213,64.24585,40.039 581,431.24237,192.01428,28.93103,70.09604,11.803 581,626.77014,489.51376,20.820862,44.417755,7.784 581,323.7215,195.14038,35.812744,89.63971,7.119 581,410.23892,183.32324,31.163116,81.57898,6.929 581,613.38617,454.34634,39.674072,107.86899,6.796 581,276.00925,199.9829,32.22711,61.240707,6.789 581,618.6225,491.3262,20.928833,42.52121,6.548 581,627.16644,-18.171272,17.462524,45.260384,6.501 581,368.4711,183.68979,21.500671,48.96895,6.438 581,438.95532,106.50081,28.815094,88.03218,6.423 581,623.14233,-34.604725,26.43457,73.92245,6.264 581,398.5565,103.328766,28.098175,71.3071,6.225 581,380.60376,103.20085,28.53714,74.17076,6.194 581,177.2836,94.64685,23.652527,44.771774,5.853 581,-5.9001217,-17.602695,17.440636,43.314686,5.808 581,-16.983236,-65.90599,55.63771,151.823,5.801 581,602.78235,-55.48167,52.99585,132.25786,5.754 581,362.33188,190.47064,21.013092,51.19893,5.734 581,-6.129965,489.90332,18.594854,41.746033,5.728 581,-11.644371,479.8532,29.109879,62.279724,5.437 581,463.92572,185.34453,24.83368,55.822357,5.381 581,125.763,288.05447,29.03122,73.74521,5.376 581,357.37643,196.78156,38.640564,107.38278,5.344 581,18.986267,79.30556,29.189857,84.86722,5.33 581,-11.337847,-32.01527,29.367619,72.63242,5.212 581,423.02502,212.89255,28.808472,78.12134,5.169 581,453.60345,175.42715,37.192993,88.44925,5.118 581,431.39722,99.57169,27.859375,75.906944,5.104 581,468.36823,110.85074,33.3468,83.41315,5.099 581,12.577847,68.56416,50.564434,127.17247,5.074 581,221.90187,125.983345,28.60962,64.66427,5.003 581,335.65082,208.79247,22.000061,46.928192,4.996 581,303.28726,205.72841,29.716736,62.47606,4.956 581,483.19977,195.4083,38.29608,91.8508,4.934 581,-21.818699,401.97308,79.36421,175.43451,4.921 581,282.80255,99.27766,17.47702,31.091576,4.865 581,350.74768,100.196014,27.16922,73.81586,4.858 581,-10.540651,50.532368,28.1529,75.03206,4.836 581,583.0209,412.17484,71.692505,175.70493,4.826 581,371.22516,83.36733,17.80066,36.003418,4.801 581,294.5331,203.0279,25.617004,42.621597,4.744 581,-4.730831,87.69771,34.949272,103.77568,4.74 581,-72.74521,266.91226,199.9494,459.9636,4.689 581,281.97806,195.34874,21.609497,37.63286,4.683 581,619.40015,-17.800999,17.15149,41.95082,4.668 581,362.50684,82.987564,18.319519,35.10176,4.644 581,450.1871,107.81093,31.812439,86.93312,4.639 581,263.13565,183.3389,36.189026,74.49783,4.616 581,160.52798,95.04881,21.633255,34.67276,4.598 581,275.60815,178.81967,17.167297,35.11183,4.547 581,334.64218,104.0966,27.760101,69.14946,4.512 581,559.1256,98.06002,30.908813,67.35349,4.502 581,366.3225,99.23874,27.407104,69.414276,4.495 581,196.83533,95.18666,29.762436,58.677963,4.489 581,392.38248,173.49304,37.61258,102.09436,4.455 581,536.9795,311.4268,141.95142,341.30624,4.42 581,317.90625,191.44382,53.92157,147.89139,4.414 581,6.9898043,126.37816,31.661266,83.85109,4.41 581,409.43283,163.21848,33.39264,61.921143,4.382 581,418.1108,165.51224,37.74872,92.00635,4.366 581,615.2943,185.7271,25.136047,72.91432,4.348 581,344.21136,100.72316,23.769836,54.536148,4.341 582,347.10376,199.56653,31.102722,68.51117,86.264 582,524.29956,206.40814,31.810303,78.535706,11.584 582,-6.053424,488.02844,19.073269,44.273438,6.99 582,-11.768997,475.1085,30.575977,65.833466,6.806 582,335.01318,210.67038,32.204834,66.439514,6.799 582,407.7383,200.93729,24.355988,53.010742,6.798 582,603.12683,-55.383987,53.39325,135.95966,6.672 582,-5.273423,-16.619686,16.816147,41.977917,6.557 582,-16.946795,-65.46367,54.998344,148.84,6.347 582,623.2703,-34.75528,26.036926,76.86624,6.327 582,422.13434,196.28445,30.524078,82.53873,6.174 582,627.12805,-18.370453,17.325317,48.078773,5.834 582,613.353,453.77963,39.311462,107.86679,5.532 582,211.42653,91.44925,32.076355,61.075226,5.461 582,216.72693,92.769585,21.927826,38.974083,5.452 582,257.81683,211.72704,34.305847,70.869095,5.328 582,389.08032,201.7886,29.830353,73.67563,5.3 582,-11.26217,-31.686743,29.086273,71.03986,5.269 582,1.8107915,90.64752,33.75003,85.87604,5.268 582,372.59912,187.61433,38.918365,79.19408,5.249 582,212.87753,125.32799,30.369705,62.504776,5.149 582,413.51917,206.23572,28.838562,78.87488,4.995 582,-22.836395,399.55737,80.209045,177.07727,4.98 582,583.2844,410.6572,71.63794,176.8649,4.969 582,358.43475,194.91615,22.99823,50.84703,4.934 582,-73.26883,266.82324,200.20287,459.98962,4.91 582,206.96219,94.10429,25.28653,45.412712,4.879 582,626.59644,487.53174,20.909546,46.821228,4.842 582,200.25636,92.292854,23.497116,40.167564,4.684 582,307.08917,94.75859,18.923035,37.98105,4.671 582,595.35223,-45.682724,42.895813,100.3052,4.583 582,488.7877,120.76863,21.78955,44.832336,4.547 582,353.57666,194.71136,38.564026,100.69763,4.445 582,536.7304,311.43335,142.42426,341.84314,4.43 582,334.45618,190.46748,53.815918,144.11156,4.425 582,364.5186,189.2984,32.393402,62.408752,4.409 582,498.51202,197.55164,20.865967,40.280914,4.398 582,176.27592,89.20537,24.225998,44.23532,4.39 582,291.16046,95.09937,18.538574,35.1305,4.349 582,229.15298,124.06505,28.295624,66.723404,4.335 582,530.58014,489.19574,20.637512,42.374573,4.33 582,577.78125,120.92934,34.33307,81.045334,4.319 582,243.68762,212.50438,35.662994,71.72133,4.308 582,307.7663,125.70465,30.638428,63.94583,4.293 582,401.7943,190.79572,22.710968,50.539963,4.284 582,322.1759,95.85417,18.44574,36.40245,4.254 582,491.3471,-12.219049,16.196167,33.851845,4.208 582,492.8144,228.28738,239.01532,515.7551,4.164 582,277.8459,175.72324,13.996216,28.150452,4.114 582,541.80634,89.91669,35.88141,76.8215,4.106 582,195.77151,99.97104,32.62802,70.75046,4.071 582,284.7878,175.86775,13.40213,27.452118,4.051 582,-9.711536,-8.019241,39.554977,106.04232,4.034 582,383.08405,193.63603,23.824707,51.776917,4.024 582,585.66876,-99.749344,75.524536,236.88031,3.986 582,178.854,119.214966,31.845215,66.71295,3.982 582,539.10394,-10.450462,15.874023,35.245247,3.979 582,3.45568,-14.757805,15.879676,39.746216,3.966 582,180.32855,88.89108,30.48822,64.05994,3.964 582,310.2857,196.28172,36.490356,80.75026,3.953 582,535.6391,226.17728,33.627502,71.184875,3.944 582,1.3795042,487.38934,20.723011,44.103638,3.939 582,17.521484,82.56702,32.695274,69.355804,3.935 582,591.7479,129.28157,24.185852,60.22406,3.93 583,386.064,232.05743,33.098663,73.26953,16.1 583,270.75464,214.99457,22.493011,44.033813,10.799 583,-11.355478,476.0758,29.17266,65.90448,7.04 583,280.574,218.93207,21.64508,40.237183,6.975 583,-16.949081,-64.195244,55.785225,149.012,6.707 583,405.5078,222.2079,29.061462,72.13103,6.611 583,-5.8275595,488.38223,18.57605,42.68857,6.42 583,479.3741,225.48393,27.326904,79.9023,6.31 583,376.49033,118.19179,22.873016,49.78566,6.091 583,613.4177,453.33844,38.356323,109.20178,6.082 583,627.43506,-17.478764,16.982056,45.73329,5.958 583,418.79013,233.32245,41.35495,94.133606,5.464 583,277.5875,210.50604,36.77423,80.7879,5.454 583,-11.546286,-32.685913,29.882696,73.33,5.437 583,455.38333,224.6926,28.506897,74.94418,5.346 583,293.7705,215.39981,36.631714,86.98523,5.34 583,-5.7371197,-17.934256,17.307152,43.129032,5.338 583,625.9082,486.9873,22.02771,45.968506,5.249 583,623.4801,-34.73686,25.912659,74.72418,5.239 583,380.32263,116.08748,27.879944,73.7283,5.233 583,263.08536,209.09087,36.8013,94.3961,5.082 583,-17.206768,439.93008,54.79393,136.53549,5.068 583,282.95996,202.77168,17.939117,38.302887,4.971 583,-72.41186,265.25403,199.73874,462.30823,4.89 583,588.6766,110.60228,28.1792,84.385956,4.885 583,484.37253,240.64029,29.518524,85.59201,4.851 583,485.89496,212.28271,25.834167,70.64026,4.842 583,-39.601208,369.6806,109.23074,274.21674,4.827 583,603.66425,-55.895737,52.917847,137.83661,4.781 583,400.15652,229.5524,24.20456,54.962708,4.681 583,324.32202,132.86618,31.177307,70.15198,4.671 583,260.11365,120.43822,30.014801,62.905594,4.67 583,583.02185,411.92813,72.06549,176.64853,4.634 583,382.5672,224.57126,49.255005,121.33777,4.525 583,266.12622,146.06462,18.904572,43.95262,4.466 583,461.64304,142.46606,27.57724,82.526855,4.439 583,476.99216,-32.677032,28.971924,70.752914,4.439 583,211.42961,119.80964,31.32338,63.81495,4.413 583,536.75696,310.91525,142.40869,339.90872,4.381 583,219.23022,249.81479,34.487152,70.66861,4.359 583,402.2799,230.8132,40.266937,98.03284,4.264 583,468.20618,226.53767,28.272247,85.09111,4.264 583,5.5825853,470.09506,37.208904,91.89865,4.26 583,2.492134,489.58936,18.926426,40.528442,4.209 583,493.60965,230.42194,237.60428,513.78174,4.173 583,309.32785,216.92844,36.293488,84.27057,4.166 583,480.64282,-16.479668,20.686401,43.372128,4.12 583,264.35422,123.538635,21.663452,38.5101,4.099 583,291.10486,203.40988,16.79953,36.892944,4.088 583,515.3865,241.3028,42.48987,105.576294,4.064 583,-4.507827,395.9121,16.130264,40.12433,4.027 583,252.88084,148.42892,29.505081,64.82727,4.01 583,186.73079,244.97276,33.48407,75.69466,3.977 583,436.51697,224.97266,38.667053,90.646545,3.968 583,-37.850464,-128.2742,118.074684,287.66565,3.937 583,-4.152828,362.64893,14.603817,37.12494,3.926 583,561.53796,-128.19044,115.38861,282.56976,3.922 584,439.37183,210.12825,29.32257,69.561264,72.945 584,524.12,211.28116,24.132263,53.00461,30.001 584,434.2764,208.62921,23.21878,54.680237,13.33 584,616.5154,165.86823,23.679321,90.015564,9.701 584,613.21045,216.36075,25.89624,96.88101,9.17 584,289.21786,182.89449,18.987183,45.32048,8.043 584,452.09348,207.08398,27.129517,66.53784,7.78 584,622.767,-34.127956,25.93811,75.79569,7.101 584,-5.3561525,-16.298634,16.966045,40.974743,6.75 584,-17.183662,-65.8764,55.31748,149.55264,6.551 584,-8.684511,466.01318,37.386475,89.40759,6.475 584,-6.0220156,489.57816,18.440247,42.217377,6.411 584,413.27325,201.28987,28.644623,59.077927,6.213 584,425.12485,202.85559,38.039978,90.68762,6.156 584,627.05725,-16.095768,16.711548,44.394753,6.086 584,613.57776,453.28345,39.484375,108.75476,5.762 584,603.24347,-54.853275,52.466614,137.16502,5.627 584,382.7209,183.39871,53.501617,105.57681,5.6 584,619.90247,-15.063897,16.346436,40.739162,5.541 584,626.39844,487.14502,21.369263,46.8042,5.498 584,-11.353513,-31.329567,29.440483,70.017395,5.411 584,386.0138,93.945755,21.377625,38.96205,5.392 584,218.9403,88.29679,32.96103,64.19924,5.381 584,0.49342632,78.53555,32.128864,73.549774,5.119 584,488.25208,91.05516,35.428345,85.959335,5.117 584,-72.79381,265.48074,200.43137,462.27585,5.058 584,-21.360071,404.03836,78.28661,174.38254,5.05 584,276.64618,183.17888,39.355377,79.49367,5.04 584,369.49146,196.02168,42.0119,88.27611,4.903 584,583.22986,411.69342,71.625244,176.57306,4.782 584,412.7325,203.54794,56.506714,142.00854,4.762 584,36.1586,80.932274,28.50383,53.752586,4.759 584,535.7621,310.51193,143.97046,342.99466,4.639 584,399.23965,196.24275,50.25058,116.20018,4.636 584,530.33295,489.72818,20.104187,41.516754,4.578 584,243.35056,119.93987,29.511963,67.227516,4.548 584,492.61646,231.55435,239.29828,513.20984,4.527 584,370.5072,103.1641,20.49585,42.881126,4.511 584,619.93176,65.23889,20.581543,63.42923,4.493 584,522.2395,489.72165,20.419128,41.50644,4.462 584,591.89264,176.51082,27.65039,72.835266,4.461 584,378.6678,105.427864,20.00415,41.478096,4.442 584,291.90784,185.2052,39.62372,77.79083,4.357 584,467.13965,210.53976,39.783997,82.41141,4.302 584,203.29771,142.94992,58.187576,111.5972,4.273 584,361.69022,102.23017,20.99997,42.222313,4.253 584,538.1855,490.80487,20.4693,40.805603,4.252 585,596.6341,202.18811,29.994812,67.66986,71.081 585,507.11856,197.38269,38.511444,100.55737,55.245 585,490.57465,197.94313,36.155457,97.78038,11.428 585,481.5765,194.00182,18.975677,40.54631,9.933 585,515.0689,207.68721,22.176147,67.48619,8.408 585,308.21664,182.95433,13.556122,30.713089,8.156 585,496.86304,203.22977,22.487793,65.8342,7.14 585,-8.984679,466.58646,37.78475,89.04245,6.96 585,582.8271,198.9292,39.59735,100.46893,6.935 585,626.7043,488.07703,20.446838,45.453796,6.919 585,271.8006,177.39726,27.582825,69.49922,6.825 585,-6.0209155,489.0103,18.648886,42.042664,6.777 585,-5.4383397,-16.973055,17.052599,42.33265,6.677 585,627.42126,-17.389936,17.03247,45.710556,6.132 585,302.7939,180.83765,13.265625,32.532166,6.086 585,-16.874607,-65.86834,55.018494,149.92842,6.024 585,613.3904,455.26657,38.749878,106.24228,5.848 585,385.35284,95.83468,21.496338,43.270027,5.758 585,421.96924,163.07922,30.216797,69.76997,5.715 585,547.09576,211.65198,41.91223,102.81598,5.692 585,-11.040232,-31.585064,28.914244,71.36489,5.683 585,315.46506,184.55466,13.231842,28.340775,5.616 585,393.63812,96.885605,20.768555,42.306686,5.493 585,589.9293,194.42752,46.505066,148.65482,5.41 585,281.61374,174.9635,18.386963,43.62584,5.402 585,501.37527,222.83408,29.48056,89.22266,5.369 585,611.8872,194.12738,25.846313,74.03067,5.352 585,623.5632,-34.650333,25.743347,74.700325,5.21 585,-20.972698,405.30136,77.96474,173.39798,5.209 585,369.93466,200.3726,43.99527,100.46669,5.2 585,491.35486,202.95561,20.456635,49.801224,5.122 585,244.71658,119.655136,29.607208,65.545364,5.093 585,461.27588,113.25943,29.196533,83.82251,5.039 585,603.8245,-54.819622,52.744995,136.2677,4.949 585,373.91858,87.64987,29.504547,65.56064,4.921 585,-72.69973,266.16623,200.10938,460.71133,4.867 585,377.60144,92.26244,20.76416,38.62281,4.852 585,505.45773,204.79825,21.887604,69.29019,4.838 585,619.0914,490.113,19.632385,42.89444,4.827 585,519.2943,233.01727,33.719055,72.53888,4.798 585,583.57764,411.94257,71.10278,176.94635,4.689 585,-0.97136736,70.93414,27.448551,76.915985,4.588 585,384.02106,198.93245,46.9364,84.77971,4.552 585,480.4025,197.44199,27.899658,68.7554,4.549 585,483.8626,250.92097,30.4859,84.606674,4.541 585,478.18073,165.4004,28.993713,68.93942,4.541 585,561.9917,208.72096,42.618958,109.68083,4.521 585,346.94733,183.19409,17.754333,39.41829,4.519 585,622.27673,200.38666,26.692749,72.164215,4.516 585,401.8669,99.03027,19.934265,40.31012,4.487 585,515.87836,192.39203,18.145813,51.10475,4.484 585,195.0936,83.96593,31.25589,62.920166,4.482 586,603.5464,203.83093,34.010254,115.90106,65.461 586,329.28378,197.42679,22.142975,47.719513,26.433 586,511.82034,197.88223,23.24405,49.416626,16.81 586,274.3516,178.887,20.478973,56.140564,8.07 586,622.22833,-33.66632,27.085999,76.85665,7.277 586,626.67596,-18.124697,18.049988,48.204514,7.091 586,619.5865,214.32391,27.327026,83.91553,6.995 586,-16.82018,-65.134155,55.067154,147.80533,6.613 586,613.1832,453.60547,40.2511,108.17908,6.574 586,589.9374,215.32446,50.71112,190.72876,6.455 586,-5.079958,-17.689709,16.3783,44.013287,6.249 586,381.33557,95.554955,30.168793,66.43946,6.197 586,-11.53151,475.902,29.763798,65.61331,6.192 586,393.62656,103.76787,21.037445,45.082306,5.638 586,615.4434,239.48026,24.339233,67.816925,5.523 586,529.03674,197.24149,20.114868,49.900238,5.444 586,626.3265,487.01248,21.458252,47.11374,5.325 586,602.60205,-56.149544,53.251587,136.13264,5.293 586,571.0918,191.47166,27.843384,79.147415,5.289 586,-6.0279865,488.68472,18.831339,42.55551,5.276 586,-10.674077,-33.056534,28.756111,74.44168,5.199 586,182.97325,94.42106,34.143997,59.18464,5.19 586,618.74915,-17.347162,18.354248,46.388645,5.06 586,418.26178,109.677956,19.033722,36.523003,4.977 586,364.88602,167.9231,29.623505,70.43773,4.942 586,-72.78841,266.66595,200.15796,460.61768,4.862 586,520.1796,202.82831,22.31488,48.905243,4.847 586,-40.5479,368.69205,110.126785,275.44858,4.831 586,558.2548,203.82861,54.56122,146.34235,4.78 586,401.4697,106.13103,20.349762,42.640778,4.731 586,583.07697,411.49866,71.83185,176.35205,4.73 586,536.2633,310.23782,142.87152,342.92685,4.651 586,429.48828,130.91847,29.071533,74.23833,4.627 586,426.44623,109.7441,18.75653,35.048256,4.546 586,581.6784,217.1218,40.67755,120.9852,4.503 586,384.89682,85.812195,22.93341,39.718544,4.497 586,376.12445,99.99278,23.689056,50.274185,4.485 586,611.3696,233.60434,37.562195,133.36087,4.469 586,-17.548473,435.99118,55.363205,139.39407,4.391 586,612.1825,203.53384,27.52771,70.20773,4.359 586,210.9015,88.37423,33.760223,58.074837,4.348 586,492.64105,230.33942,239.0202,515.2929,4.324 586,559.74976,190.72665,28.872131,76.84024,4.31 586,544.8218,185.99883,50.6037,123.81688,4.299 586,292.69495,183.61574,17.097412,45.744278,4.299 586,186.08,171.62115,30.282013,60.1642,4.294 586,409.7615,109.6219,19.146301,37.556564,4.284 586,605.6626,119.8111,30.910645,92.35806,4.273 586,330.186,167.42819,28.728027,69.242096,4.267 586,7.491374,159.72241,28.986958,63.273712,4.222 586,578.241,489.65692,20.844604,42.405273,4.22 586,-5.810389,152.93373,17.579609,39.75908,4.192 586,299.3636,183.09007,15.364838,40.40764,4.185 587,549.95154,193.63332,28.749695,58.659805,9.234 587,369.49072,210.68192,21.283264,39.267548,9.176 587,279.3196,180.6268,21.36914,56.08072,8.755 587,623.17255,-33.029655,26.753113,74.17825,7.643 587,-11.430019,476.99658,29.421875,65.07251,7.198 587,627.32983,-15.958291,17.19519,43.820873,6.994 587,613.11456,452.25018,39.2453,109.48645,6.955 587,-5.8887873,488.41568,18.534447,43.55789,6.893 587,626.54913,487.8734,20.867798,45.257202,6.733 587,-16.729443,-65.19625,55.029907,148.15985,6.614 587,-5.072242,-17.71328,16.438625,44.03423,6.07 587,178.97346,164.84422,32.28784,60.493805,5.945 587,556.0194,192.79918,18.637512,39.856506,5.939 587,602.6676,-54.926933,53.27307,132.82274,5.774 587,275.35876,196.42076,32.92758,61.067703,5.365 587,566.3926,196.1285,27.794373,59.50673,5.246 587,613.0377,-14.949612,28.280518,70.19769,5.231 587,-22.259392,401.90784,78.988686,176.21356,5.231 587,587.22046,198.30849,32.173096,62.310135,5.194 587,420.2928,102.373795,31.141998,69.49672,5.183 587,-10.710583,-33.187466,28.746063,74.60703,5.161 587,436.17996,148.15765,29.456696,63.138916,4.978 587,389.67017,165.61713,30.779053,74.71918,4.972 587,618.90576,-14.519964,16.947144,40.86514,4.932 587,-73.3614,265.44977,200.62518,460.87848,4.875 587,2.384245,489.79755,18.879986,41.538086,4.874 587,583.26117,412.35034,71.63684,176.60101,4.854 587,258.3292,195.10506,42.802094,77.93428,4.802 587,366.19165,168.7847,28.156036,69.08057,4.722 587,432.60638,107.198906,21.063995,39.411797,4.719 587,195.16019,167.50949,31.426712,57.259537,4.7 587,535.7368,197.06335,27.575806,61.952057,4.649 587,-4.491242,299.756,15.280182,35.13498,4.632 587,97.76295,116.528946,32.566277,73.49049,4.609 587,536.541,309.72302,143.07092,342.49933,4.574 587,263.1303,176.19064,28.529846,75.43677,4.545 587,290.79028,197.41211,39.606934,75.85852,4.502 587,424.43484,147.4745,27.683258,64.54118,4.463 587,-5.575671,156.54546,17.527813,37.7538,4.454 587,207.83623,169.12154,23.863419,40.896133,4.43 587,493.84656,230.15955,237.47577,515.351,4.399 587,185.0799,93.87683,32.507874,61.24774,4.377 587,586.2661,491.08652,20.7771,41.22757,4.354 587,-5.731477,172.4726,16.768555,37.632324,4.35 587,255.64684,94.81859,23.56923,32.878647,4.283 587,166.41782,160.44978,30.54602,68.96692,4.264 587,374.14932,86.19679,31.478699,63.270737,4.253 587,9.554695,490.75018,20.36073,40.64435,4.247 587,405.07117,96.69142,31.27655,66.5641,4.241 587,561.703,181.19835,20.032349,43.98639,4.21 587,553.74133,161.9879,26.506775,67.86867,4.208 587,-4.0381117,333.41492,15.355662,36.2471,4.183 587,618.4593,490.04187,20.86145,41.855957,4.172 587,594.72546,-43.21393,43.72638,95.61727,4.153 587,-4.1368046,316.31577,15.440401,36.721527,4.123 587,275.86676,173.05357,18.868408,48.01973,4.066 587,248.64015,150.21295,26.966415,70.5289,4.045 587,517.7886,136.93274,29.44403,62.53868,4.034 587,158.44553,147.78204,52.396088,108.45639,4.028 587,401.2076,97.616974,21.261597,42.11026,4.008 587,593.97906,490.78497,20.629944,40.408813,4.006 587,440.46466,175.66742,22.581299,41.459335,3.998 587,441.54816,108.441826,20.446106,37.235146,3.966 587,275.90045,153.91464,39.10327,81.43881,3.961 587,417.54407,104.21428,20.992676,46.106995,3.938 587,160.44145,119.86925,33.755005,74.75993,3.933 587,3.4237099,-15.214201,15.651693,40.313057,3.9 587,520.8302,111.48171,23.390198,46.627373,3.889 587,456.4906,94.68261,21.706085,38.301613,3.863 587,577.70544,-14.4493,18.804443,38.573673,3.853 587,596.6778,458.58878,39.533386,101.92911,3.846 587,-8.199003,4.7782593,37.98809,105.248535,3.829 587,-38.5962,-130.91866,118.64214,281.58844,3.816 587,219.62857,168.69023,56.08078,108.31386,3.804 588,541.8931,195.84575,27.134644,63.86409,45.518 588,627.3893,-15.964937,16.703491,44.746563,8.404 588,338.98553,179.6362,33.386627,78.94061,7.84 588,623.92114,-34.30327,25.516418,76.90756,7.227 588,-12.434678,478.42807,30.634724,62.703766,7.192 588,622.2126,478.14804,28.36554,65.24771,6.705 588,557.57574,188.42862,27.957886,62.849716,6.446 588,204.57335,176.29533,28.972733,68.56996,6.283 588,613.037,455.7255,39.05475,106.092926,6.238 588,-17.168018,-64.455894,55.84788,148.08878,6.238 588,-6.5103884,488.73608,19.556238,42.74463,6.175 588,373.45718,94.51198,29.566437,67.12866,6.013 588,569.2034,197.29909,21.032227,48.02559,5.678 588,-5.3896513,-17.474586,16.683163,43.142242,5.672 588,216.9409,178.13263,20.570786,47.39856,5.386 588,-11.123989,-32.64222,29.02023,74.06878,5.358 588,-21.357044,404.37384,78.510345,174.46198,5.314 588,-4.1555076,349.63083,14.89867,33.660675,5.199 588,619.815,-16.302616,16.491821,42.124397,5.117 588,210.61354,175.18176,20.10054,43.906723,5.101 588,602.9,-55.105072,52.84369,134.74443,5.08 588,-73.35258,265.41986,201.53363,461.773,5.073 588,619.4907,490.00943,19.366455,43.332367,5.062 588,225.38957,178.96089,18.914948,46.74257,5.039 588,370.82715,195.22102,32.497314,71.04494,5.014 588,68.8069,163.11858,40.27008,90.70763,5.006 588,385.42496,103.03931,21.753754,44.626083,5.0 588,307.6518,181.15123,41.574036,77.84154,4.925 588,-4.0585475,444.67258,15.302172,36.449646,4.921 588,583.4223,412.13153,71.10797,176.01788,4.841 588,221.7002,191.34103,27.65683,54.435608,4.744 588,529.63025,491.14456,21.421509,40.27603,4.739 588,483.2411,148.97777,20.295898,42.64778,4.727 588,493.7639,229.56628,236.97842,513.6585,4.64 588,356.03888,193.94933,30.427643,73.92552,4.628 588,536.5612,310.3869,143.6192,341.35638,4.616 588,258.6134,183.07175,16.873413,38.858154,4.59 588,226.71426,197.36044,41.759583,75.512726,4.549 588,98.0161,165.14018,33.679794,57.496506,4.526 588,393.44885,182.10239,20.382294,36.73178,4.492 588,193.66045,193.96004,42.923874,78.5486,4.476 588,4.416711,360.14508,16.335571,31.802246,4.473 588,3.2280362,79.53883,32.53209,83.149,4.469 588,482.46716,118.238495,28.459045,71.45358,4.403 588,4.7373924,330.99747,14.915045,27.869995,4.382 588,291.83722,183.06601,40.430725,76.86063,4.379 588,243.93921,178.76898,17.027893,39.101715,4.345 588,121.95088,88.78696,33.333115,63.60919,4.342 588,-4.2605033,318.09818,14.489685,32.87381,4.322 588,399.7433,175.81833,23.452972,39.61154,4.305 588,-4.05146,204.92673,15.730484,38.275024,4.273 588,576.92737,209.00256,42.191406,84.20535,4.273 588,324.41852,195.1206,32.60681,71.447266,4.265 588,552.25366,160.40948,22.378418,52.82263,4.264 588,243.19588,199.22054,41.449448,75.227585,4.257 588,5.025015,470.4009,38.57036,90.78403,4.253 588,-4.3531213,364.54877,15.41514,36.988342,4.244 588,615.7299,-20.097116,26.296387,72.294785,4.213 588,233.06258,188.36015,20.588455,48.8983,4.201 588,388.6974,152.59975,29.716553,58.73752,4.193 588,142.40572,245.87128,26.916977,37.189087,4.177 588,560.995,210.09175,43.256714,77.53023,4.15 588,-8.113614,2.8921204,37.906624,107.664246,4.148 588,120.05852,171.21185,24.992752,32.268753,4.135 588,112.90524,171.90163,26.017975,44.120148,4.106 588,250.01503,179.88385,17.391403,36.29872,4.106 588,537.9832,492.00955,20.6073,40.169037,4.091 588,628.33264,4.107012,16.551758,42.53763,4.043 589,228.45987,213.45973,29.33014,57.489822,58.706 589,456.74976,206.88454,20.676544,55.176865,21.377 589,466.19662,206.04578,18.99826,50.149506,18.067 589,446.094,198.92183,26.01361,68.722244,14.044 589,473.4928,209.96484,20.103027,46.256866,12.422 589,621.9242,-31.45638,27.14563,69.861206,8.166 589,581.1053,-29.703615,30.691956,62.78601,7.61 589,618.3013,-2.468278,20.0448,34.20463,7.597 589,482.6399,208.11877,17.178345,36.71161,7.483 589,593.58014,4.3890667,20.933777,28.498308,6.939 589,618.3525,189.44026,20.590271,59.909225,6.903 589,576.48914,-3.0847282,23.369934,37.100956,6.836 589,626.6144,-15.619289,17.35559,42.879517,6.614 589,601.8441,3.7908154,19.829102,27.250217,6.61 589,613.06903,455.72137,39.29767,104.7569,6.515 589,566.8046,-32.69509,29.327637,68.81472,6.209 589,601.9106,-56.09219,53.678345,125.90451,6.205 589,-11.21279,478.1447,28.78288,63.854675,6.152 589,-17.030533,-64.628265,55.239544,148.78313,6.127 589,-5.6751227,489.01312,18.325727,42.013977,6.018 589,626.2318,485.84628,21.986267,48.066803,6.007 589,585.09656,-12.476576,19.88086,36.03476,5.945 589,266.27573,199.50539,18.265228,32.417465,5.726 589,-5.2078395,-18.034643,16.705032,44.207108,5.506 589,236.03339,99.47477,29.444794,62.884758,5.408 589,592.86646,-39.176544,46.700684,83.0655,5.39 589,-10.754318,-33.338272,28.721006,74.33599,5.389 589,37.914356,191.00021,32.995228,65.86801,5.373 589,249.7264,105.751526,20.933273,42.102966,5.29 589,583.84283,411.94424,70.7746,175.84024,5.251 589,28.087181,174.40265,52.655098,107.22101,5.22 589,-20.961346,405.4238,77.93059,173.47726,5.215 589,466.45483,210.36601,40.535522,75.72749,5.157 589,602.4784,-9.336434,17.681091,32.562756,5.089 589,-73.320526,265.71545,201.37567,462.13037,5.025 589,609.3417,1.9063358,20.618652,29.399635,5.001 589,257.9176,201.0407,18.666565,32.678314,4.947 589,-39.600784,369.59943,109.26688,275.04852,4.934 589,436.4626,209.93102,40.045624,77.37636,4.926 589,65.24277,200.82726,44.452667,79.531815,4.91 589,-3.8149712,140.52509,15.924736,41.226242,4.908 589,594.2732,-9.762599,18.37561,33.004116,4.897 589,352.6378,145.3353,19.68039,45.476837,4.849 589,569.0987,-17.783981,21.196716,42.38448,4.776 589,271.75192,94.83258,21.93396,37.807007,4.764 589,-5.946583,298.06146,17.560953,37.65851,4.755 589,214.97147,219.51775,29.371307,56.277847,4.733 589,536.25696,310.4442,143.85278,341.05994,4.715 589,612.7802,-15.464199,29.26056,56.90281,4.618 589,493.84503,227.63315,237.04681,515.6649,4.54 589,453.56918,195.93607,38.470856,72.59305,4.521 589,181.87386,171.51125,33.04518,82.92021,4.492 589,47.211327,179.99463,22.070953,48.512726,4.492 589,489.10388,208.29756,17.89508,33.41214,4.415 589,550.4158,-34.991604,29.243896,71.2879,4.408 589,586.088,-7.824873,34.37329,44.59211,4.386 589,76.40502,177.92911,56.60798,109.71753,4.371 590,312.08154,217.6702,24.839508,49.94052,17.173 590,290.1132,216.26389,21.289032,49.211304,16.41 590,3.8596463,222.68735,31.167957,69.52756,10.346 590,268.67325,203.95117,30.92871,77.55032,9.526 590,626.6754,487.48602,20.086731,46.538696,7.477 590,306.42764,216.21643,20.62564,44.871307,6.901 590,-17.465656,-63.916378,56.263138,148.4363,6.58 590,251.51994,185.10956,31.720566,82.07562,6.077 590,320.48486,219.7838,33.95755,64.9265,6.066 590,291.97015,219.58736,30.566315,67.33104,6.064 590,298.87082,212.17516,17.585358,35.480972,6.012 590,627.47864,-17.16201,16.901917,45.41639,5.96 590,279.40442,207.98358,36.044586,70.348694,5.815 590,53.04041,90.07281,29.923191,60.23536,5.749 590,-9.187605,463.0997,37.708363,93.03439,5.671 590,612.96564,457.95953,38.510254,103.18756,5.67 590,-5.72023,-18.387281,17.171984,43.737484,5.625 590,-11.7185955,-33.025314,30.148535,72.45297,5.603 590,584.15845,413.02698,70.3728,176.17444,5.541 590,-6.5705147,489.79465,19.502758,42.625946,5.522 590,618.3399,487.55188,20.062927,45.199463,5.367 590,305.89758,220.65846,41.615997,83.68483,5.337 590,289.69928,232.3391,44.22989,92.3889,5.332 590,314.9759,215.389,18.641205,30.691666,5.316 590,623.439,-34.692886,25.96576,74.70548,5.227 590,-21.37365,404.5424,77.619804,174.7687,5.154 590,328.71335,217.0504,22.129211,35.224686,4.998 590,-39.55564,367.65442,108.81313,277.04126,4.954 590,320.81805,216.1173,21.200989,38.846268,4.943 590,-73.30482,265.76913,201.62524,461.47745,4.884 590,409.4025,185.4241,19.757172,42.772263,4.808 590,281.41147,208.2915,21.819061,51.041534,4.759 590,603.9253,-56.206734,52.523193,134.56111,4.707 590,586.2457,229.94984,19.646729,29.610855,4.693 590,-0.38112402,200.28964,48.700157,102.61658,4.624 590,242.25081,213.74747,44.08348,77.94284,4.607 590,48.0562,98.273125,23.859612,41.124702,4.591 590,64.219536,93.39273,21.822105,37.596436,4.586 590,184.37715,170.6054,59.313187,107.252884,4.572 590,578.8375,213.44394,19.159668,31.824768,4.514 590,17.349962,226.78763,34.126213,60.309937,4.495 590,257.14874,224.58888,44.69812,80.91414,4.474 590,197.90729,166.37347,31.77983,61.539917,4.469 590,536.29865,312.28848,143.81818,339.08505,4.437 590,1.1019158,90.94329,22.300985,55.01371,4.428 590,401.58563,177.28516,21.24646,48.847916,4.367 590,299.78186,389.64722,18.145447,34.851837,4.318 590,275.97562,377.9603,16.39331,35.2446,4.317 590,-15.772563,218.9819,54.04639,132.98465,4.224 590,3.7485456,125.84932,28.692333,74.13927,4.222 590,24.197346,96.39132,23.270908,41.54235,4.222 590,493.36075,227.74054,238.1105,516.76117,4.216 590,38.031765,92.22463,29.422947,58.207756,4.214 590,33.56674,221.57193,35.86504,58.180115,4.189 590,267.9233,380.66806,16.28238,33.70102,4.186 590,72.30968,94.44237,21.601242,34.90959,4.183 590,154.84001,168.38293,59.78546,108.03659,4.161 590,284.687,419.9538,16.080017,27.082245,4.144 590,426.97638,200.90935,18.107788,32.919815,4.105 591,-0.6635761,202.92395,29.227098,75.87796,21.711 591,595.564,215.34642,18.220215,52.574203,14.9 591,17.769651,207.26175,36.03356,68.45096,12.575 591,589.1628,213.9224,18.207764,50.544525,7.748 591,626.63666,488.04016,20.216003,45.71161,7.602 591,3.605262,204.43575,38.7866,113.527115,7.123 591,622.799,-33.45693,27.247131,74.667915,7.079 591,616.29535,203.14752,21.862854,76.63428,7.043 591,514.1739,212.44041,19.812683,39.62416,7.033 591,598.86,210.05971,23.995117,74.41197,6.936 591,627.03076,-16.763077,17.575623,44.62155,6.807 591,301.30078,217.67232,18.118958,30.138657,6.287 591,-5.9329967,488.7273,18.572475,42.854797,6.254 591,306.8418,211.2725,19.604797,33.934982,6.254 591,573.33624,210.27715,18.42218,41.12152,6.192 591,82.92456,170.59955,22.418488,48.46277,6.16 591,602.4312,-53.42942,53.100525,132.13556,6.127 591,-16.977772,-62.951145,55.95456,146.65004,6.106 591,-5.337881,-17.320942,16.816572,42.716473,5.972 591,320.50595,217.69223,21.913208,38.89621,5.942 591,30.378216,202.27356,24.118275,47.59427,5.839 591,618.30774,488.5431,20.055603,43.309265,5.838 591,580.8465,214.14014,18.207825,43.015564,5.814 591,33.030422,202.04648,41.55949,94.74826,5.814 591,585.4182,196.53482,32.44751,85.34946,5.785 591,612.5785,457.56815,38.730957,103.7272,5.764 591,-10.926274,477.9026,28.603909,64.63568,5.685 591,-8.900083,214.45699,29.034233,77.38426,5.558 591,614.1042,5.930523,25.71399,65.575,5.533 591,510.27362,209.15341,28.245605,63.91635,5.247 591,583.72754,413.18567,70.51349,175.46545,5.219 591,197.26605,194.6414,30.285599,63.795303,5.217 591,507.4165,217.18597,19.025879,40.078003,5.138 591,-11.309412,-32.786663,29.09815,73.01356,5.125 591,9.495743,191.55786,54.941727,107.58624,5.11 591,-73.14607,264.4327,201.1501,463.96036,5.066 591,-39.612087,366.86676,109.121,276.7791,5.025 591,313.75818,214.10529,20.655548,37.449524,5.017 591,-21.05278,404.51398,77.649,174.51428,4.96 591,618.8104,-16.147512,17.729553,42.14152,4.92 591,232.14499,179.17467,19.8031,43.81215,4.843 591,521.35565,212.6322,19.841125,44.11621,4.782 591,625.26306,12.929005,20.1604,53.089855,4.739 591,586.287,7.632532,31.453613,62.11506,4.714 591,83.42675,166.00589,31.29509,76.5844,4.654 591,-15.408407,210.2789,52.238503,157.83307,4.46 591,536.3438,311.87952,143.29913,341.21338,4.45 591,493.04813,227.25882,237.95822,517.4027,4.417 591,-4.635944,240.81271,18.135656,50.007935,4.356 592,476.19403,216.14417,17.433533,40.022095,38.575 592,384.94348,211.45268,20.465118,47.73549,10.332 592,147.01366,202.9501,17.480042,28.844666,9.109 592,172.32599,204.15517,18.472107,38.85724,8.76 592,622.75464,-33.384872,26.432251,74.57756,7.559 592,459.4422,209.403,16.601868,36.46251,7.4 592,-5.784199,488.6284,18.211927,42.161896,7.343 592,-18.078218,-66.1508,56.41169,151.0285,7.161 592,-11.246244,478.8275,28.659662,63.22528,6.692 592,626.77527,487.7232,20.323975,45.71173,6.625 592,470.99207,211.01744,34.336945,68.04317,6.463 592,152.97002,206.0813,17.298676,30.531723,6.392 592,612.5622,173.98605,25.974243,92.24817,6.24 592,527.1511,190.40578,26.16504,72.74254,6.011 592,469.31836,212.82338,17.78595,41.094696,5.926 592,379.51657,219.77963,18.676239,45.604645,5.914 592,626.59717,-19.048782,18.213562,47.060345,5.889 592,381.1014,209.9447,29.671448,75.60718,5.87 592,612.7052,453.45547,39.940063,108.39407,5.858 592,370.70953,217.21565,20.557251,41.828964,5.82 592,-5.73781,-18.174734,17.514883,43.005764,5.605 592,513.20636,197.69356,20.29486,53.182693,5.495 592,-11.282597,-32.367256,29.461767,72.728546,5.342 592,363.2634,221.27959,18.845947,41.440933,5.272 592,135.03908,203.51865,26.203613,62.137115,5.259 592,-8.751789,182.55954,27.851511,75.58603,5.258 592,-20.999842,405.6449,77.91277,173.60474,5.063 592,536.0914,198.2758,21.352112,54.339996,5.058 592,602.68835,-56.927834,53.488403,134.2981,4.994 592,583.05444,411.79892,71.54401,176.98233,4.979 592,-72.28073,267.28915,199.54709,460.50882,4.861 592,482.88696,-17.499535,17.684143,41.787334,4.839 592,559.62634,179.05511,49.381775,121.01846,4.75 592,536.5661,311.5523,142.95361,340.79767,4.717 592,579.61444,169.16196,45.920166,130.55899,4.615 592,282.42847,220.62828,19.581268,35.97966,4.575 592,366.45483,216.66145,29.40274,67.992966,4.518 592,593.689,-46.284363,45.17273,97.225815,4.496 592,275.76553,220.05902,18.56369,36.014435,4.485 592,605.2141,90.81729,31.940552,92.45456,4.482 592,494.07913,227.69989,236.88492,515.7724,4.417 592,586.7773,-103.03996,73.65112,238.73325,4.407 592,487.21417,-33.126823,27.706726,71.822495,4.374 592,618.41223,489.95102,20.967285,42.638092,4.369 592,508.1848,201.17273,17.598389,45.798386,4.368 592,474.95886,-16.612574,16.424774,40.269753,4.359 592,501.72253,-34.105366,28.93689,71.4026,4.331 592,186.47789,206.0846,17.490997,37.835938,4.324 592,485.77243,213.66245,35.11209,71.318146,4.29 592,-10.4461,53.3459,30.48073,70.92326,4.274 592,290.1629,220.76947,20.448364,35.61664,4.25 592,489.9915,-177.53264,235.50015,415.63965,4.215 592,600.2558,187.0878,34.49994,107.65073,4.129 592,2.6953351,490.07828,18.390022,40.60489,4.127 592,164.2949,208.34248,17.779129,40.223694,4.126 592,163.75064,202.97006,16.749512,27.59262,4.104 592,-4.4693227,187.80614,18.454124,51.223175,4.076 592,522.42,199.31715,19.835327,53.9888,4.038 592,5.304159,468.91898,37.942116,94.764984,3.982 592,211.1048,199.33719,17.347519,31.583862,3.97 592,460.13565,249.2188,34.195587,66.63997,3.923 592,537.66736,204.86845,31.775513,71.61223,3.87 592,490.0869,-20.340382,18.994263,44.2601,3.87 592,0.5447972,57.59831,28.572218,79.93106,3.867 593,455.42545,223.46436,20.184357,42.16629,64.402 593,504.53394,220.69456,22.62915,45.14772,36.708 593,426.83264,215.01201,18.163422,37.551422,12.112 593,527.6005,218.38618,23.883606,51.216995,8.223 593,74.63912,211.33932,19.528008,42.731552,8.131 593,104.62511,220.20747,20.576065,38.53502,7.879 593,627.19366,-18.611322,17.391235,47.68836,7.855 593,622.80444,-32.784794,26.431885,75.53065,7.113 593,67.24306,218.78452,19.913116,37.836304,6.769 593,-11.706123,478.6907,29.281218,63.180206,6.639 593,-6.1217732,488.9798,18.732456,41.822205,6.553 593,626.8608,487.38477,20.193054,46.31122,6.53 593,-17.612701,-65.13255,55.97091,149.87163,6.33 593,462.83398,219.66325,19.917908,44.082565,5.941 593,612.7491,454.87003,39.6651,106.22476,5.929 593,-5.75819,-18.093866,17.51575,42.993652,5.619 593,602.2967,-56.392204,54.083862,138.63835,5.451 593,-11.321912,-32.38394,29.541584,72.779526,5.345 593,429.3905,202.93872,25.679993,52.786407,5.323 593,618.3407,488.21527,20.514648,44.52472,5.253 593,451.43033,211.3629,19.383331,38.861298,5.195 593,-21.161642,404.84833,78.01972,173.92487,5.176 593,341.48987,211.41815,29.09665,68.71808,5.129 593,573.77,313.97266,27.712646,58.65616,5.024 593,614.46704,182.6564,26.38977,84.66113,4.991 593,-72.5759,265.93323,199.84042,461.95435,4.93 593,619.28595,-18.230536,18.150513,45.301502,4.893 593,520.94714,212.63713,21.776611,47.604935,4.859 593,536.7618,310.54327,143.31238,342.0628,4.835 593,618.1402,296.62466,22.306824,80.85489,4.799 593,511.18344,212.13658,22.370697,48.413834,4.782 593,583.18896,411.51285,71.34973,177.9274,4.779 593,98.66687,209.65387,20.687775,40.860046,4.624 593,498.78085,212.7882,21.1044,46.19722,4.535 593,422.33582,211.75526,17.124298,34.014725,4.524 593,241.62863,226.26495,20.739655,40.311523,4.464 593,219.1016,228.10182,18.445114,35.49214,4.448 593,494.5903,227.91809,236.18362,515.25287,4.438 593,596.324,142.39372,30.477844,74.04225,4.355 593,491.0883,220.87355,20.879425,44.854874,4.349 593,585.75006,-107.12498,76.989075,244.62451,4.269 593,82.532486,222.93416,18.537903,31.611328,4.235 593,535.42975,209.77437,21.853882,50.86638,4.207 593,473.80582,218.29707,18.81305,42.25374,4.153 593,403.57315,192.48419,17.133667,37.52536,4.144 593,120.82515,215.00192,20.544952,41.801666,4.021 593,353.05447,217.67206,20.628967,49.009064,4.012 593,451.72925,225.72115,29.455566,65.09581,3.961 593,91.8806,220.15834,19.391212,34.794876,3.932 593,318.74606,214.98418,27.91687,54.92079,3.926 593,605.5025,157.28014,30.538208,79.80812,3.92 594,491.22717,219.59052,22.411804,52.812622,87.035 594,558.4769,223.36433,21.068909,47.336838,48.42 594,439.44916,215.77151,20.92453,35.9115,30.018 594,11.828205,212.54918,18.571228,48.40541,11.573 594,584.0315,229.00053,20.403687,42.703934,9.499 594,33.138817,218.70706,20.055363,41.560364,8.935 594,340.50586,219.10277,30.952393,60.97667,8.02 594,-17.188217,-64.30208,56.14857,148.21315,6.809 594,-11.735892,477.8813,29.643902,63.683533,6.739 594,626.7007,488.23734,20.4328,46.158173,6.59 594,317.79456,220.26709,30.314728,58.16748,6.537 594,-5.8596096,488.78366,18.480364,42.522064,6.414 594,567.86084,226.10333,20.191956,46.89096,6.316 594,603.6468,-55.24038,52.784546,137.22319,6.233 594,612.79724,457.71255,38.762268,103.7034,6.047 594,627.4493,-17.665283,17.02185,45.63837,5.892 594,58.026524,223.6806,20.901005,40.684265,5.594 594,548.98065,220.11891,20.157959,44.387558,5.561 594,-21.219233,404.77875,77.87488,174.2326,5.448 594,-4.439843,202.39337,16.621601,44.344955,5.383 594,355.23096,223.4559,29.845062,56.290833,5.382 594,345.15997,206.88219,21.082825,47.93936,5.342 594,-5.5876613,-18.49495,17.233835,44.53687,5.315 594,618.66077,488.86304,20.100098,43.93152,5.264 594,448.17014,208.033,20.120728,37.967667,5.243 594,436.48248,225.42601,18.687256,34.2097,5.176 594,583.52496,413.83032,70.88141,175.23932,5.115 594,-11.4373665,-33.354973,30.169327,76.435555,5.097 594,623.4625,-34.68095,26.018372,74.22347,5.096 594,18.320972,218.66907,18.478489,43.42804,4.881 594,-73.309555,266.6198,199.97675,460.02838,4.847 594,435.822,206.79852,18.517975,33.641754,4.806 594,510.10565,208.07137,14.256958,29.53537,4.771 594,327.23883,207.34734,25.884766,59.439407,4.739 594,504.2666,220.79869,18.726868,41.407364,4.738 594,490.7687,207.85207,18.687012,41.736725,4.66 594,536.1485,311.0734,144.2425,339.7916,4.601 594,38.810017,207.00475,25.48193,55.082413,4.556 594,56.150494,206.55981,21.301579,42.87091,4.545 594,494.73138,229.496,236.41803,515.01685,4.536 594,515.9463,206.72366,14.92981,30.675034,4.533 594,2.3641806,489.65964,18.949375,41.100677,4.432 594,430.25998,215.72609,18.83258,34.218155,4.4 594,-16.619923,123.28723,53.378494,138.71994,4.346 594,436.3529,195.03835,38.58734,69.18486,4.264 595,568.0759,215.62636,30.183533,70.15077,91.127 595,469.34827,214.139,22.571167,39.6615,40.923 595,619.39813,207.85553,19.915405,59.600098,19.334 595,-4.925596,-15.058115,16.523502,41.174908,7.861 595,-6.077743,206.93346,18.988585,47.47014,6.981 595,-11.130386,-31.870995,29.595592,74.85168,6.963 595,622.1076,479.09695,28.153992,65.36398,6.787 595,621.8873,-33.08762,27.889832,76.91004,6.713 595,-11.716294,477.92957,29.796635,63.954407,6.487 595,0.33018827,231.30603,21.942993,49.351807,6.433 595,-17.323391,-64.03487,56.14903,145.40997,6.417 595,563.50665,217.61687,23.840637,53.232315,6.369 595,-6.034434,488.80524,18.801443,43.348877,6.184 595,626.9051,-19.19312,18.374084,48.68158,6.138 595,357.21454,195.3418,35.78015,94.13519,5.934 595,478.59912,212.41963,22.761993,39.28508,5.724 595,175.6202,199.57884,27.75595,56.07898,5.715 595,602.245,-55.82422,53.761536,131.70578,5.692 595,618.44055,489.02164,20.446411,43.716766,5.604 595,-5.4530573,186.18385,18.51902,45.17758,5.581 595,201.24947,211.7696,20.48793,41.237473,5.379 595,-9.396078,182.0032,27.740381,68.493744,5.263 595,604.6727,435.94064,53.047974,138.22159,5.257 595,-20.995277,405.71286,77.83493,173.7858,5.229 595,3.0683196,-11.932936,15.580709,37.0375,5.225 595,595.80426,220.58636,38.459167,89.61017,4.965 595,-72.756714,267.2021,199.73874,460.72894,4.909 595,621.9986,187.6222,25.482239,74.34903,4.79 595,385.7672,224.80168,34.353394,66.802505,4.774 595,594.1069,-43.78975,44.60907,93.993454,4.758 595,536.1964,310.96094,143.69604,341.03308,4.697 595,325.60947,192.81444,37.262695,98.59099,4.596 595,494.27063,230.00409,237.47223,513.81744,4.506 595,-15.572149,181.59659,48.25164,133.51907,4.505 595,-4.5729437,172.04199,16.950764,41.406387,4.467 595,186.25021,200.53955,31.418121,60.56241,4.414 595,47.18068,192.96268,28.626648,56.856003,4.397 595,463.18732,208.87575,18.480804,37.289932,4.36 595,71.17659,197.8906,24.44429,42.569,4.355 595,7.170738,240.35072,22.822414,43.00728,4.352 595,517.00006,204.30861,29.656677,57.12642,4.337 595,292.27753,195.11452,32.620667,67.02574,4.318 595,-15.303407,127.17835,50.56214,136.4122,4.224 595,292.4043,486.25244,30.76416,57.443604,4.163 595,342.542,194.76978,37.073853,96.1322,4.161 595,362.0515,201.257,21.234314,45.882706,4.148 595,5.4566135,470.9248,37.76484,91.50647,4.134 595,627.9493,482.00085,17.585754,41.933167,4.132 595,613.47156,-20.17643,28.739502,75.77781,4.113 595,586.95795,-101.07154,74.84125,232.63083,4.103 595,2.4290605,489.6084,19.055294,41.972046,4.102 595,511.31808,192.29227,27.71286,53.71869,4.071 595,-4.638377,156.62143,16.6475,40.877014,4.068 595,618.04407,-19.679169,19.352112,47.92199,4.021 595,-5.5621552,243.12589,19.019775,44.037384,4.007 596,515.22577,208.1605,21.088379,47.666565,88.102 596,32.495186,202.97302,22.756546,47.82428,12.851 596,119.61387,196.18488,24.012505,51.692078,8.261 596,-17.763002,-64.88028,56.448166,147.93095,7.308 596,627.2176,488.39896,19.822266,45.84378,7.173 596,-11.600857,479.60062,29.502304,61.921722,6.682 596,-6.1488714,489.19592,18.87593,41.741333,6.37 596,-5.356729,-16.891003,16.766573,42.105686,6.317 596,613.0149,456.19043,38.420044,105.22894,6.112 596,603.3898,-55.21315,52.991333,134.2202,5.913 596,391.04962,199.48866,23.366547,56.141693,5.757 596,17.841972,205.62251,21.445576,45.813004,5.733 596,626.9282,-19.309525,17.724243,48.94488,5.683 596,618.8476,489.47662,19.7005,42.804688,5.514 596,-3.3354597,205.08685,16.52224,40.852875,5.499 596,1.6355753,214.74762,18.733475,49.609802,5.476 596,-7.074133,211.82437,35.270103,99.57086,5.473 596,-11.569658,-32.667126,29.233688,73.3382,5.413 596,289.74826,195.89645,36.11087,64.5582,5.297 596,407.1576,180.1359,28.099915,70.54495,5.199 596,-17.348885,439.54236,54.8005,135.98828,5.194 596,6.058557,201.28632,33.527214,91.67114,5.163 596,583.6356,412.8253,70.79669,176.03104,5.092 596,503.19153,194.99625,34.982544,67.20535,5.037 596,-39.433426,368.64795,109.20061,276.56305,5.015 596,552.989,283.75836,21.86383,37.72162,4.997 596,457.34277,163.53836,23.117493,71.74989,4.912 596,622.66235,-33.546253,26.77118,77.956665,4.889 596,-73.07193,266.51712,200.55487,462.2402,4.876 596,498.01672,204.70097,20.79187,47.809357,4.81 596,489.54645,191.95305,24.002686,62.57051,4.81 596,396.4405,186.01259,27.744934,66.72998,4.807 596,-16.404589,123.64857,52.42961,140.79501,4.788 596,378.38687,-13.899948,31.686676,64.4445,4.714 596,523.26166,166.51012,19.773987,41.624207,4.63 596,557.93286,282.2378,29.996887,58.147797,4.618 596,3.1655602,-14.830216,16.019669,39.10732,4.607 596,-4.260212,188.4592,16.634586,43.069702,4.602 596,536.4324,310.38647,142.98792,341.5382,4.565 596,5.4342246,86.035446,27.750067,87.12494,4.424 596,14.00085,183.17674,49.828167,108.53868,4.412 596,315.96347,210.16898,32.846832,67.022064,4.364 596,493.96564,230.59915,237.29321,512.8386,4.35 596,4.9412975,470.50595,38.420517,91.17154,4.336 596,425.4348,162.21877,19.698578,49.446884,4.311 596,-4.677245,73.195175,16.428547,45.99253,4.309 596,595.3343,-46.33229,42.408752,98.755844,4.295 596,307.25888,200.55586,32.1344,60.596756,4.281 596,-16.389332,214.68146,51.404438,148.70026,4.274 596,394.74655,-14.821176,17.276031,39.575867,4.238 596,-4.571682,130.81534,17.38448,52.83589,4.232 596,-9.399002,105.71675,39.594345,102.45065,4.229 596,586.3741,-100.5524,74.37695,235.23386,4.215 596,-6.997285,178.2044,36.697727,91.40161,4.183 596,420.68,197.791,37.46277,88.46742,4.155 596,354.50543,204.9778,42.435913,95.90715,4.117 596,204.50966,211.4656,31.865433,56.89496,4.115 596,589.65393,291.59692,30.071716,62.86252,4.1 596,357.91205,-14.245722,31.124695,61.8761,4.095 596,435.9866,234.1972,32.26294,61.808594,4.093 596,417.7845,237.03261,22.806671,48.685745,4.083 596,268.00677,153.14981,32.685913,73.0849,4.079 596,377.37045,-14.186907,18.690338,40.82785,4.07 596,226.43843,209.38962,32.90712,60.748016,4.064 596,509.05957,201.63623,18.906494,43.42749,4.061 596,464.32672,169.89302,18.022888,48.458878,4.046 596,23.090378,204.70648,25.710625,62.53656,4.038 596,211.79445,204.82343,40.317596,94.824646,4.036 596,2.3843222,490.47748,19.330296,39.832275,4.029 596,300.35953,486.70404,31.523895,56.53125,4.018 597,570.0054,208.14551,27.032288,58.13739,90.416 597,615.0397,182.4141,24.960693,74.64462,8.805 597,-17.109608,-64.16255,55.99549,147.46074,6.858 597,622.84875,-34.092365,26.565063,76.52136,6.812 597,626.9481,488.87793,20.559143,44.712524,6.759 597,580.6765,213.25061,21.97583,49.65692,6.734 597,69.367165,188.98,29.231468,68.37157,6.586 597,-5.9877205,490.35968,18.377747,41.258423,6.392 597,613.39716,453.93076,39.057312,107.21219,6.265 597,626.92914,-16.271418,17.191406,45.529556,6.177 597,421.18787,186.03474,32.279114,72.28255,6.115 597,490.80826,156.82175,21.470062,57.27333,6.066 597,-9.046649,463.37177,37.677223,94.13989,5.791 597,468.62878,142.62279,29.241272,79.9574,5.773 597,596.2861,209.60223,37.700684,83.06302,5.759 597,619.1648,489.67023,19.841125,42.591125,5.571 597,-9.42011,139.39813,28.396217,75.627396,5.361 597,563.01843,179.37926,41.232605,82.76027,5.348 597,-5.3892894,-17.717335,16.854897,43.24253,5.306 597,603.0471,-55.775166,52.747498,133.93144,5.221 597,-11.449884,-32.58913,29.749514,74.33656,5.125 597,-4.3208785,152.90637,17.129654,47.896027,5.065 597,333.40662,219.31401,32.463165,69.00453,5.006 597,357.27798,206.02795,31.099945,66.71857,4.927 597,-72.992,267.203,200.52322,460.65393,4.87 597,57.36996,187.62657,28.194088,65.902176,4.859 597,437.30536,185.77858,25.09793,52.706802,4.796 597,21.280025,349.32043,29.676296,67.50665,4.793 597,-22.270643,400.62653,79.22109,177.07343,4.762 597,536.1593,308.9399,143.72565,343.28104,4.711 597,475.37036,128.66797,28.95935,75.88727,4.707 597,-16.6818,110.080414,53.553177,138.14487,4.701 597,156.69012,198.82364,15.240814,28.36699,4.682 597,534.0109,200.61314,36.19171,76.321915,4.589 597,583.2541,411.49857,71.47052,177.14682,4.574 597,-9.0814705,201.1335,37.920174,95.301315,4.51 597,-4.950805,124.91646,16.707802,39.393417,4.449 597,5.916113,190.1882,27.341314,68.99118,4.444 597,615.004,-17.611246,25.994202,68.75581,4.39 597,396.21353,-33.828346,29.551727,70.18577,4.379 597,494.04584,229.26334,238.12732,513.73926,4.338 597,584.3186,306.74963,24.101318,41.873688,4.293 597,404.99222,187.31781,29.486176,65.51135,4.229 597,373.60907,204.43365,29.707092,65.2262,4.22 597,618.8145,-16.01242,17.347656,43.69032,4.206 597,-9.163361,182.57011,27.618368,67.28154,4.17 597,1.6017783,199.99203,21.333494,52.136612,4.137 597,589.07404,210.27065,52.5567,149.83696,4.119 597,22.59884,189.09976,28.49037,64.368774,4.107 597,578.1003,196.09897,37.53192,72.05667,4.091 597,12.759111,172.83777,53.18167,109.53339,4.082 597,-4.4225893,88.19412,15.906817,43.778885,4.07 597,-0.41016102,148.95834,25.662556,78.8246,4.064 597,200.833,206.21254,20.847382,41.817307,4.061 597,586.6358,-17.927132,17.47345,44.669506,4.056 597,521.4038,150.23389,22.328735,54.16446,4.053 597,616.48474,142.6097,24.104248,86.86687,4.028 598,452.27466,184.70871,28.254395,69.86513,10.169 598,121.83606,190.22725,22.681702,39.834534,8.505 598,1.0914308,195.69545,19.497738,47.486053,8.381 598,611.7282,-49.466602,39.700134,102.930084,7.467 598,-5.7725277,-15.874292,17.71975,41.909885,7.43 598,-5.9120445,489.29047,18.746117,40.90857,7.416 598,627.23334,-17.290289,17.02295,47.94539,6.938 598,-9.083159,466.42862,37.769215,89.21054,6.61 598,626.74445,488.11575,20.544617,45.849335,6.409 598,-2.956792,185.9684,17.035381,44.692596,6.28 598,-11.873965,-40.665485,40.500633,99.91969,6.016 598,612.6514,457.27267,39.703796,103.99057,5.953 598,-4.7890587,210.63089,18.644293,48.54135,5.736 598,618.4075,489.82513,20.710022,42.61798,5.675 598,-3.9493158,171.20036,16.152393,43.9599,5.663 598,595.54004,-46.47556,41.84729,98.07724,5.465 598,1.9262135,206.72725,30.428328,75.30174,5.356 598,-17.563229,438.95715,54.86421,136.4867,5.188 598,556.117,163.03511,31.007141,69.62567,5.185 598,74.78697,191.27919,20.700584,37.695206,5.143 598,211.10475,197.54477,18.349274,26.182663,5.125 598,391.0428,208.23506,28.512543,68.33626,5.103 598,-72.8905,265.72437,201.00066,462.3723,5.102 598,308.41748,190.85907,32.244415,57.707306,5.037 598,357.0733,199.0986,14.70343,26.114044,4.934 598,440.0037,181.90504,29.664703,64.54758,4.927 598,3.3956404,-12.902015,16.219696,37.832638,4.925 598,-40.11184,367.93506,110.085945,275.83582,4.925 598,582.8954,413.06085,71.69409,175.47748,4.85 598,536.41174,310.8214,142.93756,341.61218,4.734 598,362.47623,198.22598,15.498322,28.169586,4.72 598,203.4009,196.80063,18.234924,28.698425,4.679 598,585.89014,-101.43591,74.89838,234.5266,4.624 598,27.655357,220.14442,32.07149,58.45137,4.614 598,-9.4871645,205.52568,28.290573,73.70592,4.5 598,444.77722,90.871574,32.081757,71.37989,4.449 598,5.2761326,469.319,38.172882,93.267426,4.446 598,493.80444,229.12415,237.3584,513.0163,4.391 598,465.06442,179.76112,20.068512,46.44861,4.371 598,572.1245,161.48306,52.52234,131.85349,4.319 598,59.006042,195.83301,19.411804,34.435684,4.304 598,37.26924,179.20004,30.398285,53.12976,4.292 598,538.67926,155.37003,55.008423,138.75198,4.283 598,381.33014,217.97293,29.978455,65.93359,4.265 598,429.21942,203.7329,28.417633,70.87099,4.232 598,49.08102,189.81218,22.973957,38.589737,4.205 598,3.062914,174.72586,17.90312,43.014343,4.107 598,619.7436,-15.9854355,16.724365,44.249603,4.061 598,445.9996,166.86212,49.474365,108.2959,4.056 598,356.09833,218.04916,17.746155,30.790054,4.022 598,604.3535,-26.77594,50.91388,131.4903,3.984 598,275.49707,186.37015,32.985718,66.14499,3.968 598,144.82388,183.68866,26.977386,50.57611,3.965 598,571.28784,-62.089745,55.205017,134.29156,3.956 598,347.9627,234.7932,34.470734,75.32005,3.934 598,185.57639,199.83453,20.387222,35.027405,3.916 598,488.74475,-177.43889,237.19427,417.8566,3.916 598,466.4653,179.74782,39.039124,79.80931,3.911 598,362.1541,235.15997,34.476196,77.499146,3.894 598,67.77216,188.3498,32.032944,57.81201,3.886 598,395.3228,-17.123802,16.884705,41.234425,3.855 598,18.053434,180.24667,41.690887,77.20657,3.841 598,2.3157597,490.60315,19.378311,39.844727,3.837 598,432.9992,193.60097,22.008453,49.960922,3.836 598,194.51353,194.44926,19.115326,32.858185,3.836 598,426.60864,-15.724534,17.589935,40.112755,3.835 598,10.450361,-13.3567295,16.840355,38.2081,3.789 598,349.00073,193.6257,16.12555,25.6846,3.754 598,602.1132,490.0487,19.971375,40.23358,3.753 598,403.32047,-15.605383,17.062805,39.991905,3.751 598,-5.5015936,105.42828,17.546799,43.04727,3.74 598,572.16754,-12.865686,15.063782,37.98345,3.739 598,17.133907,95.288635,34.277744,69.691315,3.734 599,506.35312,178.63852,20.44693,47.59056,15.171 599,84.81734,190.00139,21.360138,48.36084,11.412 599,-5.7547574,-17.415369,17.664482,44.08028,7.781 599,627.0014,488.00436,20.19574,45.1315,6.947 599,575.4463,175.89578,25.417603,70.05032,6.718 599,-10.803642,-32.716084,29.018028,73.83374,6.529 599,-6.0740366,489.85953,18.420673,40.97879,6.114 599,-9.091941,464.98395,37.786175,91.74182,6.015 599,531.765,67.941216,36.14508,69.26469,5.595 599,613.1995,453.4735,39.293274,108.04077,5.572 599,571.9498,186.13861,20.621216,48.291992,5.469 599,627.02856,-18.886118,17.819092,48.27746,5.439 599,601.6613,158.91383,26.772888,82.58186,5.427 599,622.6798,-34.03603,27.0625,77.38945,5.413 599,-16.908176,-62.45231,55.81079,142.83025,5.277 599,602.5141,-56.16357,53.85858,140.57927,5.113 599,514.0573,192.11992,17.004639,35.81218,5.06 599,5.4571285,177.58836,29.891668,57.974213,4.984 599,194.55362,196.62242,17.85933,27.733673,4.97 599,-21.267223,404.21466,78.67732,173.85907,4.933 599,502.39853,177.57323,34.738373,74.20714,4.882 599,48.46258,181.88774,22.85696,45.4218,4.879 599,535.9418,309.5694,143.65576,344.20502,4.861 599,583.0101,411.07996,71.63861,177.30774,4.816 599,-40.50169,367.4898,110.45068,276.50195,4.803 599,25.164278,185.61418,23.104479,40.60788,4.715 599,489.38187,-183.48238,237.30515,425.8242,4.702 599,-72.59773,266.97833,199.79672,460.60895,4.698 599,546.4828,61.496178,30.991577,68.05485,4.624 599,564.10583,189.33653,19.353271,40.2614,4.611 599,475.05307,195.0505,19.665527,48.233353,4.525 599,493.4151,228.5751,237.86115,515.704,4.519 599,-11.701408,171.59108,28.819324,64.58632,4.502 599,619.4967,489.47192,19.383423,42.869934,4.495 599,466.097,99.86982,20.331299,50.03649,4.459 599,452.39316,80.77694,29.664337,76.00141,4.419 599,96.29144,189.34993,21.014915,40.78105,4.399 599,448.65973,75.92177,23.173584,49.09601,4.39 599,187.28748,195.22565,18.471619,30.00232,4.376 599,2.8013225,-14.940054,16.746738,40.301754,4.333 599,437.3647,64.633224,28.878662,70.25786,4.277 599,585.7586,-106.47457,76.4527,243.32492,4.206 599,-9.759518,-0.9633827,28.724852,69.44493,4.198 599,500.63916,195.4422,16.845337,39.96541,4.177 599,518.6901,-32.83821,28.01233,77.49911,4.177 599,308.53232,189.66484,32.06537,61.19542,4.08 599,1.3319719,197.21785,20.165916,40.868286,4.078 599,530.3249,182.68582,20.940613,43.050827,4.06 599,521.2514,1.8526211,22.06128,47.531403,4.052 599,56.325882,191.84972,21.224823,38.083633,4.027 599,-5.264867,154.59201,17.508541,41.73172,4.026 599,442.69772,-14.358732,17.782867,38.74184,4.011 599,594.51117,128.46901,33.22113,92.26305,4.01 599,474.18484,101.95105,19.290497,44.173447,4.002 599,-9.1209545,107.071655,39.46514,97.26727,3.973 599,626.8269,173.22052,18.063477,52.710236,3.933 599,234.33817,197.00153,17.606445,29.242722,3.927 599,581.34344,188.91283,29.528687,74.52028,3.921 599,202.7786,196.44836,17.406158,26.785126,3.918 599,-6.2299495,199.1817,17.882313,40.638947,3.915 599,499.57684,173.22649,20.752258,46.523758,3.897 599,507.15347,11.526154,32.780792,73.198715,3.879 599,616.23236,169.2351,21.784729,75.9725,3.871 599,463.1979,181.06036,29.262665,70.19974,3.858 599,588.7299,-37.05416,53.1828,151.14357,3.833 599,-37.858795,-123.71186,117.274185,282.58545,3.811 599,523.2219,-14.476887,16.521729,40.18555,3.807 599,2.6018162,492.26312,18.54596,38.136536,3.774 599,-1.4391327,-18.483053,27.170458,74.46014,3.757 599,-6.758228,175.3436,18.70615,41.943848,3.724 599,395.881,-2.237135,18.6568,36.366272,3.721 599,612.4165,236.3655,39.62622,112.91228,3.719 599,86.08166,168.00937,29.276955,65.03447,3.712 599,450.34845,-13.243851,18.092102,38.113186,3.689 600,507.42322,7.769142,30.177856,78.40305,11.408 600,25.317085,192.70988,26.69246,63.734238,8.42 600,-5.639449,-15.55242,17.717733,42.956722,7.771 600,527.43677,3.0365486,30.352356,79.039795,7.062 600,626.19293,485.21722,21.619263,46.748047,6.642 600,613.6618,450.74515,38.22693,110.72836,6.295 600,622.53906,-34.245552,27.07306,76.90657,6.131 600,-10.806644,-32.121895,29.93013,76.618126,5.876 600,626.7587,-19.438995,18.603455,48.67908,5.685 600,541.6881,167.21799,26.663757,73.69722,5.432 600,-12.698967,477.7546,30.730015,63.423004,5.365 600,-17.104464,-63.00013,56.20574,143.78816,5.247 600,6.5331945,185.68439,25.320652,63.791992,5.229 600,539.362,2.0540085,28.540466,76.76321,5.216 600,2.4175966,-11.782524,16.858852,40.011757,5.173 600,-6.626103,489.2613,19.005665,43.826782,5.101 600,-4.898636,154.60765,18.574762,46.628265,5.082 600,602.58203,-56.837826,53.536682,132.89763,5.047 600,-22.026382,401.81616,78.76404,175.43427,4.969 600,2.5475943,200.00801,20.093668,49.228622,4.963 600,187.21042,218.87076,16.883957,24.539139,4.947 600,186.98572,207.73357,18.392548,27.20929,4.94 600,-5.414469,140.04803,18.425669,42.314056,4.853 600,40.65377,203.00789,23.489586,52.3981,4.845 600,536.21045,309.686,143.4751,342.96976,4.829 600,549.49585,-0.24107361,30.649536,82.03452,4.771 600,-72.956474,266.9391,199.70444,459.612,4.737 600,583.2272,409.84607,71.227234,178.081,4.718 600,540.219,-10.276955,54.156494,124.87595,4.629 600,-8.52585,144.27386,38.89187,91.61333,4.565 600,178.46378,206.46016,18.983246,29.137375,4.54 600,-9.132714,199.94919,38.0547,91.414246,4.496 600,489.59106,-182.21985,235.16138,421.51895,4.491 600,417.85724,215.49866,43.07718,78.95569,4.482 600,195.69543,218.63155,16.142365,25.254974,4.459 600,418.94128,-17.447414,17.497772,40.18554,4.436 600,-4.767873,203.47517,17.653429,46.475357,4.412 600,212.83897,219.29219,14.670715,26.34262,4.389 600,493.98727,229.4368,237.13565,513.81775,4.37 600,1.2089193,168.99408,23.508745,72.334015,4.352 600,515.1083,-14.508877,16.707947,44.9878,4.344 600,95.2621,188.3528,28.4207,62.952744,4.34 600,531.46967,189.5115,27.390564,75.569,4.34 600,522.4241,-14.453609,16.35321,42.682953,4.339 600,150.70718,191.27994,27.699615,58.30687,4.333 600,3.2040346,-15.108536,30.282637,71.26895,4.236 600,586.3861,-103.370316,74.61914,235.21786,4.197 600,594.08606,-44.657272,44.55475,95.32769,4.141 600,204.49515,219.1226,15.133514,25.196167,4.103 600,195.18996,207.66075,17.899033,27.262878,4.069 600,507.89832,-4.344692,55.214478,113.22073,4.049 600,538.4934,-15.865219,17.805359,42.85799,4.024 600,618.2923,486.12772,21.337708,45.94406,3.992 600,-9.586744,135.22989,28.620611,71.166275,3.988 600,450.76294,218.91986,41.925415,77.65564,3.988 600,478.79248,-35.84967,26.91449,73.61088,3.98 600,35.236076,172.7003,38.572884,76.00548,3.969 600,617.42285,-10.462282,22.315857,49.27115,3.958 600,-4.342198,183.79054,17.530008,48.30095,3.932 600,575.56976,166.5771,26.302002,69.59987,3.899 600,-17.248247,87.99969,52.34275,144.53671,3.888 600,516.7083,129.41405,30.47528,90.33632,3.877 600,15.074302,196.39383,27.868645,61.76001,3.87 600,533.4267,-15.082867,30.51764,70.25331,3.819 600,539.6538,202.53096,52.885498,114.19151,3.8 600,507.48685,-17.569569,17.404877,46.848656,3.798 600,579.69324,199.4319,18.652466,39.711273,3.796 601,457.56714,154.22473,21.627563,42.533234,10.348 601,203.10799,176.56834,19.031372,30.399002,6.882 601,-5.8837643,489.30118,18.777008,41.298737,6.87 601,-11.01161,-33.23037,29.998629,76.53981,6.675 601,626.4825,488.2727,20.436218,45.429993,6.603 601,-11.329413,478.75864,29.292213,62.757538,6.365 601,211.03882,170.02203,17.309647,30.234726,6.328 601,627.3774,-18.421898,17.588684,47.050667,6.168 601,-6.079951,-17.983175,18.543278,45.85227,6.118 601,496.61777,159.40121,21.541779,43.144455,6.057 601,463.72253,159.68526,23.080475,42.709167,6.014 601,43.495182,2.6540718,34.898136,75.106155,6.008 601,194.98756,177.13557,19.059448,28.934097,5.925 601,622.9309,-33.66003,26.580688,76.05422,5.871 601,612.59564,454.99258,39.568787,106.96768,5.811 601,220.15219,170.61736,16.363022,28.554382,5.634 601,539.9247,-0.3911457,18.390747,32.9177,5.577 601,-20.95467,405.72754,78.178314,173.51648,5.358 601,593.7057,123.3537,20.83368,46.31534,5.338 601,-17.011114,-62.590885,56.460846,140.75224,5.272 601,571.4917,-14.046598,16.55017,34.21379,5.109 601,583.06287,413.25104,71.645325,175.26398,5.055 601,187.20563,176.46545,18.065033,26.929,4.985 601,52.902317,138.08015,30.40414,68.52855,4.901 601,472.95264,169.53436,21.501373,36.658264,4.849 601,482.20535,163.00713,22.415558,41.057373,4.836 601,227.62537,169.83539,16.831436,28.899948,4.828 601,4.0666795,-4.997986,32.999557,82.34365,4.826 601,476.18954,-5.945136,18.632904,35.91702,4.793 601,-72.36843,268.0639,199.18983,457.58997,4.751 601,618.02826,489.1862,21.012817,43.555634,4.749 601,602.651,-56.357285,53.427246,140.83258,4.739 601,619.7423,-18.023632,17.631104,43.49339,4.731 601,487.03708,-34.216022,27.518402,67.1546,4.692 601,579.37463,-13.98558,16.527222,33.786007,4.671 601,-4.9368515,140.18327,17.17839,40.57657,4.658 601,403.21387,163.6705,18.563171,32.47673,4.628 601,536.5911,311.41473,142.15393,341.25635,4.558 601,555.3086,-0.6792059,18.444397,32.04294,4.523 601,162.0787,160.6528,19.954468,31.868393,4.52 601,178.99545,176.67229,17.918854,25.631622,4.496 601,235.38242,169.99046,16.688416,28.41948,4.436 601,587.53564,-14.611999,16.493347,34.319992,4.428 601,-6.3252697,165.70781,18.805035,42.492966,4.398 601,-16.105957,119.637726,49.799194,131.5073,4.374 601,402.8233,-14.706608,17.873596,36.929226,4.357 601,547.42664,-0.51250076,18.348694,33.351498,4.357 601,532.3422,-0.5470524,18.426758,33.457695,4.327 601,-11.44478,148.07887,29.714422,62.228592,4.311 601,524.3207,-1.1610861,17.53772,32.261547,4.309 601,483.57245,-18.122656,17.418427,38.924282,4.298 601,-0.70240974,-21.250591,28.235708,77.28723,4.283 601,588.4222,-1.3372316,17.240234,29.87775,4.279 601,493.64398,228.9591,237.33917,515.4358,4.266 601,1.2889147,155.15312,22.564156,45.51332,4.262 601,5.319501,470.5459,38.041683,91.40454,4.256 601,75.52771,139.23715,30.048843,67.991684,4.245 601,467.79468,-6.1425066,19.231506,37.617134,4.234 601,586.0276,-110.197266,77.464355,250.89763,4.225 601,489.09836,-181.03836,237.72891,419.79803,4.203 601,563.4528,-1.4946938,17.980774,32.631664,4.165 601,2.2889292,490.90656,19.041355,39.087585,4.157 601,261.57626,109.61839,30.112488,70.86531,4.147 601,36.589596,160.45627,33.359592,55.744522,4.135 601,154.6138,173.55849,19.532318,28.421555,4.11 601,170.65787,175.65686,18.213287,25.900543,4.104 601,29.333195,3.9524384,33.09609,80.29087,4.095 601,507.21045,205.51703,18.56372,27.16594,4.043 601,-6.0600085,199.90668,18.238838,39.103973,4.023 601,-38.49722,-123.32923,118.08855,285.47934,3.984 601,146.12799,172.5082,19.471603,30.192963,3.981 601,218.85338,172.74112,33.04088,63.062485,3.978 601,-4.646332,106.09412,16.909588,42.030106,3.974 601,489.96814,170.77774,20.834625,36.51999,3.954 601,491.92136,-5.2167606,17.942993,34.32033,3.951 601,566.2717,-32.40502,28.108643,64.50779,3.947 601,500.25244,160.7937,29.287415,53.777756,3.935 601,395.07074,-14.301317,16.32483,36.65727,3.921 601,451.57007,162.62589,21.24347,39.485016,3.899 601,162.63403,174.30211,18.783508,27.031036,3.894 601,546.9905,-12.9548235,16.888855,35.16234,3.883 601,531.4204,149.26355,16.873108,31.670837,3.883 601,514.7322,205.67528,18.282166,27.650726,3.878 601,194.39017,171.14597,34.08107,60.79425,3.877 601,5.692289,140.06256,28.433268,56.816544,3.873 601,252.77261,159.25017,16.15567,28.72165,3.872 601,539.0299,-13.159239,16.920837,35.69895,3.871 601,276.59998,112.464066,32.7276,69.30678,3.8 601,595.65283,-15.153671,16.588196,36.1292,3.773 601,506.91187,-16.759436,16.761475,38.537735,3.746 601,-5.204445,88.79989,17.380352,41.811653,3.745 601,-9.815358,72.15471,40.31658,99.59459,3.741 601,169.3651,157.38252,20.171432,31.670776,3.741 602,153.99365,219.08319,19.310211,33.344955,7.507 602,-0.32310247,213.61353,25.145277,62.464935,7.487 602,-12.203754,-42.258575,40.399418,104.39195,7.074 602,145.95659,218.17079,20.189072,34.825912,7.015 602,-11.499416,479.62958,29.12265,61.787537,6.803 602,627.387,-15.924852,16.606262,44.749695,6.761 602,623.0053,-33.16126,26.20465,75.89423,6.642 602,626.72473,487.4745,20.061096,46.490967,6.584 602,-6.0047793,489.14917,18.65584,41.36969,6.561 602,603.8893,435.8866,53.842102,138.13696,5.989 602,-10.769683,198.56883,29.616844,68.07469,5.71 602,137.99948,227.36546,21.441452,34.719894,5.659 602,-5.7188134,-17.985785,17.15759,43.665974,5.626 602,162.08672,217.78767,19.496613,35.065994,5.604 602,170.21054,237.69583,19.29538,30.89862,5.506 602,-3.065766,158.9396,14.401697,35.372437,5.337 602,-20.959837,405.87366,77.94553,173.36401,5.286 602,162.11122,236.02971,19.645493,32.564438,5.273 602,14.309883,187.9544,50.84687,113.539734,5.242 602,-8.756172,215.5342,38.02228,93.56444,5.235 602,602.8401,-54.83614,53.113342,138.59395,5.198 602,620.3199,-13.815412,15.925842,39.307026,5.181 602,435.4468,215.64438,16.88501,29.468475,5.02 602,-73.02433,266.04242,200.87532,461.7906,4.976 602,588.3021,1.455554,16.657654,29.402218,4.923 602,154.26482,234.3233,19.012238,33.61917,4.865 602,118.195496,205.8802,27.082306,58.331345,4.831 602,571.4882,9.796419,17.344604,33.626762,4.828 602,146.13902,233.10474,19.521317,34.376617,4.797 602,419.2102,221.81238,18.349915,36.366516,4.792 602,580.83545,2.2572193,16.01477,30.01785,4.79 602,177.97852,237.89413,19.889923,31.703888,4.787 602,146.241,218.49475,42.18918,72.742645,4.758 602,162.97127,218.3519,41.60771,74.1113,4.62 602,-5.531596,201.87604,19.090128,43.70656,4.57 602,618.43146,488.61053,20.029846,43.693726,4.534 602,490.39243,-181.57028,234.83469,422.15115,4.474 602,586.5525,-103.27818,74.25922,239.62395,4.473 602,535.8943,311.7705,144.09961,340.20447,4.465 602,186.24619,228.92395,19.094254,31.425232,4.388 602,129.80249,221.49327,42.691162,85.02745,4.375 602,-6.2357373,224.78001,21.249514,50.278946,4.352 602,493.67612,227.42624,237.41367,516.29407,4.328 602,596.6468,1.5656204,15.983215,28.71765,4.322 602,203.93243,232.07831,17.296722,29.838562,4.258 602,426.46744,221.53687,19.236145,36.06555,4.246 602,509.7481,-27.059166,52.53528,124.04723,4.235 602,-4.4320254,394.8972,15.530838,39.925507,4.192 602,170.52325,211.76224,19.807587,34.683197,4.172 602,564.25824,196.94801,15.948669,31.081314,4.151 602,5.407338,469.80728,37.9324,92.250824,4.148 602,-6.5238214,262.32663,17.81669,40.431335,4.147 602,178.35773,217.81891,41.432693,78.36255,4.103 602,564.7393,3.900179,15.463257,30.735891,4.093 602,554.2751,-32.44375,57.643738,123.94138,4.087 602,194.86542,229.72276,18.53659,31.717361,4.073 602,4.3087997,161.997,14.932331,33.509598,4.049 602,129.96191,233.6255,21.054596,34.52574,4.028 602,3.7521088,196.73636,33.27021,74.37848,4.025 602,-1.9487691,-62.416447,56.85829,148.49971,4.001 602,550.38855,263.94983,25.363953,30.605438,3.986 602,-3.444477,428.86987,14.609907,35.33618,3.956 602,300.40894,486.7374,31.204346,56.78415,3.95 602,477.1297,-61.674095,55.4458,126.05979,3.95 602,471.13422,-33.990326,28.181335,68.75474,3.897 602,114.01138,216.99733,44.107727,73.58446,3.89 602,3.9606512,222.15085,38.65549,93.46918,3.886 602,2.4286234,490.9832,19.026108,39.64157,3.863 602,595.31476,-44.567963,43.508423,99.37483,3.839 602,94.3297,196.05441,27.159454,60.485535,3.824 602,466.25793,212.85556,19.17752,32.774246,3.812 602,443.13458,208.63159,16.729462,28.091583,3.775 602,619.69617,5.859379,18.020203,40.364155,3.757 602,284.0353,485.6258,31.8638,57.472046,3.754 602,177.90839,208.93504,20.395874,36.234314,3.745 602,250.76239,214.2986,18.59555,29.417908,3.74 602,228.4231,484.86655,31.34729,57.775726,3.739 602,571.645,-11.120611,15.28363,33.659138,3.732 602,-3.793856,411.88998,14.659038,36.792603,3.722 602,613.0877,-10.974398,14.874878,33.998558,3.703 602,260.95123,485.5695,30.390656,56.479706,3.702 602,575.4697,-11.472157,51.55432,120.91768,3.689 602,487.15134,-34.855225,27.644806,72.42114,3.687 602,616.0263,20.877502,25.17212,79.71186,3.675 602,43.36788,177.82469,54.12577,108.54793,3.668 602,563.7872,-10.067305,15.150879,33.475433,3.666 602,616.00275,-17.32435,26.364502,68.306366,3.666 602,-4.2754707,363.06396,16.116959,39.670807,3.663 603,146.18396,217.92331,18.471329,35.3692,8.171 603,79.7588,198.2938,24.01287,47.83754,7.638 603,-17.408514,-64.25156,56.404236,148.30843,7.146 603,-6.1078362,489.07693,18.79678,41.69168,6.729 603,626.64905,488.04523,20.15503,45.88336,6.519 603,-11.603758,478.66122,29.26991,62.451263,6.338 603,-5.7968526,-17.275188,17.228891,42.203613,6.298 603,-11.642473,-32.290894,29.54559,72.11633,6.09 603,612.5305,456.91534,39.33252,104.954956,5.73 603,611.01917,-48.67007,41.84326,101.35454,5.708 603,115.22104,214.80904,19.625534,39.6315,5.573 603,2.2431397,224.40216,40.813072,95.71814,5.568 603,627.0759,-17.363646,17.452759,46.23524,5.432 603,-20.860912,405.60495,78.15802,173.31741,5.242 603,583.82056,412.6701,70.70404,176.07977,5.229 603,64.73111,214.66821,44.56817,75.297,5.19 603,-4.1176744,186.00815,16.372875,42.91382,5.168 603,-16.625917,170.59082,50.936043,131.49799,5.088 603,-72.54442,266.9588,200.18097,461.28876,4.966 603,217.36311,221.68924,20.143692,30.90747,4.949 603,121.56174,229.77867,21.132553,37.72267,4.914 603,146.78316,225.59561,41.655334,86.28967,4.901 603,210.24301,223.42119,19.48349,29.860199,4.822 603,299.97125,485.2229,32.14099,57.93506,4.821 603,541.9685,217.62979,28.388123,57.57953,4.777 603,283.89255,484.31805,32.152893,58.43506,4.722 603,260.30292,484.25003,31.364838,58.625214,4.646 603,132.36693,227.99648,42.19838,100.96425,4.626 603,618.08,489.54095,20.460632,42.388,4.533 603,109.83098,221.65167,30.032242,52.249054,4.524 603,490.04553,-181.45007,234.93823,422.16638,4.516 603,536.30084,311.721,143.21368,340.23065,4.504 603,137.49176,232.97005,21.475098,35.97206,4.471 603,436.03003,-15.224062,16.361572,37.696716,4.458 603,114.84708,223.53705,41.79019,85.45508,4.389 603,97.80048,223.21568,43.496483,85.40425,4.321 603,218.56215,223.49783,33.861694,62.56073,4.305 603,128.93668,232.36082,21.646347,36.61412,4.304 603,562.54443,221.01791,21.149231,44.246857,4.303 603,586.4376,-102.257515,74.75897,234.47076,4.286 603,75.62924,221.38992,56.123154,146.78366,4.243 603,493.59665,227.90631,238.02658,515.45953,4.236 603,316.1339,484.81903,31.843964,57.948975,4.216 603,443.34174,-17.034523,16.774048,39.79175,4.167 603,454.1118,92.85196,25.114899,54.552307,4.153 603,-15.975075,232.65944,50.89716,152.35704,4.143 603,3.2000399,282.95856,31.449165,70.82852,4.131 603,240.81285,212.35368,21.38301,32.977722,4.118 603,2.5346775,490.66553,18.93641,39.526978,4.118 603,-4.2483163,429.9727,15.850981,36.876923,4.079 603,37.45026,185.30331,27.770931,65.79158,4.073 603,4.7867336,469.92545,38.479073,92.245026,4.072 603,139.3062,213.21289,18.572311,34.813477,4.055 603,244.39119,484.59448,31.304672,58.330933,4.053 603,52.868126,192.92366,29.616272,62.158417,4.037 603,17.673615,244.10814,35.909912,63.890457,4.014 603,553.4662,225.53249,22.522034,45.436874,4.007 603,203.28035,232.33774,33.413055,64.29758,4.002 603,228.59204,485.68832,30.707977,57.536224,3.987 603,202.83464,230.29977,18.386139,30.622131,3.962 603,130.63066,217.04942,17.478043,35.97049,3.953 603,31.663103,214.48872,45.72174,78.21922,3.95 603,152.56137,232.48999,22.257477,36.839417,3.942 603,233.04587,214.46852,20.861328,30.60672,3.915 603,26.555922,181.64273,19.853174,45.63356,3.895 603,-9.305077,143.15268,39.814507,92.88751,3.884 603,12.706137,189.38516,55.28826,104.38754,3.875 603,108.31397,219.64052,55.505272,152.01738,3.868 603,-4.740489,160.48746,17.201021,45.45656,3.828 603,62.63974,190.40546,30.844574,58.899353,3.826 603,-4.5024242,412.25592,16.162779,38.49164,3.82 603,332.27783,484.8743,31.557312,57.74173,3.797 603,8.1140175,179.70529,25.714207,69.10095,3.793 603,-8.440719,37.709293,37.6954,104.825714,3.789 603,79.56353,240.78288,24.689018,36.597,3.781 603,194.64871,235.45125,19.933502,35.311813,3.765 603,620.2849,296.98453,18.175293,44.395355,3.765 603,548.0745,221.00676,39.467163,88.42656,3.756 603,19.372618,181.89157,18.699427,44.606323,3.725 604,75.59483,221.6207,21.513435,49.537994,19.377 604,509.79922,43.491184,29.412079,66.731735,11.617 604,527.68787,44.239914,27.148682,67.55141,8.154 604,119.60351,218.1274,21.623924,41.699173,7.877 604,-6.083677,488.8476,18.687275,44.364075,7.023 604,-17.118965,-64.80055,56.061916,147.74963,6.604 604,26.556807,187.76854,28.621752,66.93996,6.354 604,88.11344,222.22264,20.7342,45.66005,6.253 604,609.8532,-46.699497,42.19037,95.96491,6.075 604,613.7876,452.69418,38.804504,108.345,5.916 604,627.2372,488.02417,20.106445,45.48004,5.779 604,379.06152,216.75116,18.399536,36.106873,5.74 604,-5.2790527,-16.744747,16.540451,42.33899,5.535 604,627.2999,-20.082115,17.838867,48.48951,5.521 604,-11.828272,475.1353,29.950327,65.70801,5.467 604,-11.485855,-32.68581,29.475626,74.08018,5.413 604,442.78723,15.217812,32.496124,69.00617,5.318 604,-72.82619,266.3286,200.2167,460.46533,4.978 604,144.87119,212.68146,24.16066,42.699142,4.972 604,489.48303,-180.66167,235.61432,426.26135,4.946 604,462.78915,77.00477,36.38379,68.516075,4.943 604,7.9973497,181.7991,29.379936,72.91385,4.838 604,-22.091331,401.36887,78.85666,175.71597,4.815 604,495.6095,209.56393,26.574951,63.567505,4.771 604,583.6267,409.70004,71.187256,178.6849,4.736 604,68.560265,229.68391,31.067055,58.2668,4.724 604,586.1547,-99.797424,74.49872,231.5323,4.669 604,-0.482167,182.54243,25.481285,68.54137,4.655 604,536.4036,309.974,143.49573,342.99988,4.654 604,438.58795,216.89606,28.095337,60.1026,4.637 604,577.3058,205.15598,45.655457,120.19739,4.574 604,-8.948395,198.62067,38.214775,97.756714,4.568 604,92.1793,207.27766,27.026184,57.924545,4.43 604,15.170906,177.3152,47.193817,106.72557,4.286 604,476.86053,133.75793,26.98227,71.36084,4.265 604,-5.9357033,189.82104,18.927479,47.99843,4.265 604,493.99796,228.97128,237.31277,514.58813,4.191 604,78.79651,203.19208,28.177284,62.51126,4.171 604,549.17413,226.50609,37.731934,97.189896,4.162 604,-5.445202,156.04236,18.088478,41.090195,4.133 604,355.7007,219.45311,16.727753,32.47406,4.096 604,519.154,35.64525,24.188782,56.31862,4.075 604,565.4017,227.8108,38.02539,97.76564,4.043 604,125.923836,214.24817,23.340889,40.926056,4.022 604,597.3362,225.47638,29.491577,66.1167,4.021 604,541.7346,225.11087,29.217041,62.786438,3.987 604,461.70746,213.35652,27.842102,62.651382,3.965 604,520.3111,18.53529,58.5213,116.11409,3.962 604,517.7328,57.541973,29.675537,66.61612,3.959 604,490.60025,-25.458412,60.627106,123.36781,3.941 604,598.1495,233.40248,36.556152,106.820206,3.938 604,449.2598,216.74344,22.92337,50.535736,3.936 604,540.18274,51.124557,29.187317,70.24974,3.932 605,31.846165,232.56674,23.601704,53.385742,70.705 605,14.756955,220.52913,32.014587,68.162,29.393 605,44.899857,232.50772,23.291954,52.30249,10.466 605,89.02252,226.18008,19.826622,45.177948,7.559 605,-17.39392,-64.2378,56.45367,148.6884,7.182 605,1.7387581,217.37268,26.089142,74.9093,7.145 605,627.1126,487.9424,20.211853,45.20273,6.345 605,555.3843,34.91088,28.917542,73.64389,6.088 605,-8.609886,464.0896,37.56386,93.37732,5.871 605,-11.480188,-32.552258,29.52014,74.08151,5.849 605,584.71747,73.87781,28.600342,74.75366,5.828 605,626.88086,-19.113972,17.569092,47.424477,5.802 605,447.4326,221.50128,24.300507,65.81833,5.776 605,613.41565,454.14166,39.038086,107.582214,5.719 605,-6.0529833,489.60184,18.411789,41.273163,5.673 605,547.1529,18.037128,29.818665,79.353,5.665 605,501.8474,238.54974,30.001892,71.530945,5.661 605,-5.428732,-16.557158,16.773764,41.935192,5.639 605,622.07587,-33.653206,27.667664,76.71031,5.591 605,-11.80751,478.84613,29.743774,61.733826,5.557 605,81.455826,234.21725,22.288467,41.416016,5.512 605,541.14233,172.92715,28.895996,83.923096,5.178 605,-72.88191,264.59027,200.80167,463.56,5.147 605,616.56805,211.65129,25.125427,78.76558,5.038 605,-8.793849,229.09958,38.311764,89.86487,5.0 605,602.5506,-55.049255,53.8006,139.72023,4.959 605,583.43585,410.83954,71.27722,177.7511,4.848 605,10.113224,232.67848,23.66013,55.53685,4.836 605,-21.321129,403.01102,78.39578,175.03268,4.812 605,536.28125,310.5452,143.42163,341.1141,4.792 605,511.02158,223.83679,26.473663,60.49823,4.79 605,104.5142,221.3263,20.919388,44.05771,4.612 605,193.09329,234.71393,20.476654,36.71216,4.6 605,585.5619,-101.31897,75.102295,235.86795,4.572 605,170.1553,224.21954,21.811737,44.504395,4.522 605,515.17847,238.33958,30.961731,78.7155,4.512 605,22.435905,208.30579,29.575623,64.20447,4.468 605,564.0736,116.33239,32.176758,76.58308,4.449 605,594.3378,236.43898,18.032776,30.889267,4.442 605,588.9171,-28.72647,53.648865,147.17067,4.434 605,233.96361,221.34222,19.251038,30.56189,4.419 605,494.41553,229.51022,236.66632,513.0531,4.415 605,-5.393058,226.26418,18.768795,51.77156,4.403 605,564.3374,64.85513,32.338257,86.41327,4.327 605,474.70282,-14.45919,17.011658,37.685284,4.308 605,619.0344,489.53268,19.717285,43.252472,4.25 605,317.04816,233.97696,31.807312,63.196594,4.245 605,490.36285,-179.80898,234.99658,420.98517,4.215 605,483.16937,-14.103201,16.87613,37.463875,4.178 605,498.5158,230.57057,20.713074,44.551132,4.163 605,584.3691,227.02017,34.650818,85.504425,4.137 605,62.54203,221.20796,27.916603,57.964523,4.133 605,556.0412,6.6289177,30.4469,76.3445,4.102 605,620.0527,246.00644,19.924255,54.08304,4.088 605,602.6114,236.46535,18.342041,30.85933,4.079 606,579.66473,270.7281,29.49591,81.21594,13.555 606,31.789293,212.00702,24.863997,53.078857,8.899 606,576.7136,200.63075,46.17279,152.473,8.266 606,15.064074,204.3512,32.139275,69.00891,7.672 606,6.4212036,198.30115,29.561405,64.8331,7.285 606,415.25653,235.69348,25.339203,46.583984,7.265 606,-17.50208,-64.49688,56.00556,149.65244,6.873 606,565.81915,214.3559,30.133057,79.92404,6.474 606,-8.65899,464.97052,37.618732,91.698364,6.424 606,469.23956,202.49466,28.172485,70.84921,6.332 606,627.10736,489.98172,20.23999,43.17862,6.26 606,594.9274,34.624428,31.349792,84.54146,5.966 606,241.19936,216.65178,21.263687,28.443008,5.94 606,257.85748,218.40019,36.075195,59.154526,5.803 606,550.3668,204.74997,38.304443,92.83194,5.705 606,234.07652,220.6933,21.518036,33.374344,5.656 606,613.3752,454.0674,39.474304,107.41586,5.595 606,51.70721,221.92326,33.148502,55.896713,5.556 606,-11.508415,478.3617,29.028364,62.24823,5.554 606,592.9343,202.02852,23.061707,64.27232,5.52 606,611.59863,-50.078785,40.97589,106.304214,5.465 606,-5.830012,489.91556,18.118988,41.210846,5.427 606,627.14734,-17.851196,17.568604,47.636402,5.418 606,530.4408,215.52538,41.792786,102.965836,5.384 606,599.59204,200.4989,34.105896,114.76648,5.127 606,-72.96561,265.53864,200.55322,462.12885,5.083 606,-5.4968395,-17.491585,17.13792,42.40388,5.068 606,-21.219786,403.90503,78.24166,174.57635,4.972 606,490.1156,-181.93623,235.34949,425.88135,4.891 606,585.6758,-103.18562,75.45862,238.58336,4.86 606,536.2505,310.01804,143.7605,342.64664,4.846 606,-11.397638,-32.66976,29.838747,73.82125,4.834 606,619.4828,492.5111,19.249634,40.506836,4.832 606,515.21094,217.79123,41.39258,97.9491,4.83 606,324.34204,231.55432,32.794006,65.369934,4.824 606,84.946144,221.66838,31.284187,55.566605,4.787 606,583.17377,410.73352,71.51465,177.86542,4.767 606,1.0107434,206.21559,20.395567,43.15587,4.759 606,581.6796,201.51492,31.55194,86.911224,4.744 606,49.13627,207.10593,22.277664,40.907364,4.599 606,566.2991,277.36865,33.220642,79.945496,4.586 606,226.84782,211.04509,33.031082,53.674423,4.481 606,494.4416,229.26596,236.63788,512.5475,4.423 606,62.08612,201.88191,28.429482,56.26677,4.422 606,265.87964,205.89558,20.07309,29.86824,4.413 606,225.5911,215.45634,21.51474,31.169937,4.386 606,546.7533,79.11821,30.9552,58.465836,4.374 606,258.39883,206.11224,18.811737,28.66539,4.365 606,211.20193,229.39394,32.913727,55.074844,4.364 606,-5.4412737,201.69908,17.560757,41.29944,4.328 606,127.80496,206.57286,28.545761,55.028214,4.286 606,405.8996,214.26537,36.60138,75.13396,4.254 606,507.32428,62.49684,33.328247,71.111435,4.23 606,67.01088,221.63129,32.82467,56.999146,4.19 607,418.528,204.70183,20.473938,52.87172,12.163 607,431.23688,207.22726,22.473602,42.547516,6.919 607,611.6064,-48.427406,40.759094,103.62876,6.574 607,-5.214641,-16.451645,17.007244,43.73948,6.495 607,234.56967,206.00513,20.425156,30.689758,6.079 607,-8.805934,464.58118,37.746937,92.364746,6.045 607,627.1224,488.53693,20.271912,45.047485,6.008 607,526.61945,205.33292,26.454834,47.006805,5.925 607,627.5592,-16.852186,16.77124,46.942932,5.837 607,612.7343,454.64313,39.516357,106.41846,5.645 607,-6.1023474,489.51233,18.603878,41.355408,5.605 607,-12.021952,-41.15493,40.698875,100.84108,5.599 607,422.10635,197.58226,33.86679,78.31209,5.536 607,374.3727,191.60057,26.663177,60.984436,5.333 607,483.03864,211.34444,28.420837,74.78514,5.313 607,241.99892,206.24219,21.258408,32.357025,5.221 607,409.10977,195.36334,33.330475,79.71521,5.199 607,2.723823,-14.01398,16.378757,40.033928,5.198 607,225.91248,206.6708,20.65207,31.183243,5.131 607,424.81876,210.28531,20.82254,52.308105,5.131 607,569.13776,26.288029,22.848206,40.486385,5.126 607,588.83997,-32.759174,52.063965,141.44102,5.101 607,-73.19865,265.66577,200.79538,461.45837,5.089 607,-5.165867,205.31805,17.858925,47.38687,4.953 607,461.19806,221.0805,25.911804,73.6297,4.934 607,-21.462212,403.32822,78.46512,174.86667,4.924 607,536.36285,309.41022,143.57355,343.11475,4.851 607,571.3022,201.86414,30.681213,50.499176,4.837 607,582.98627,411.5738,71.522644,176.81836,4.781 607,235.14014,210.9403,33.975586,56.740723,4.734 607,557.9137,201.0629,29.678406,54.914932,4.658 607,216.82117,206.50827,22.01178,32.285355,4.497 607,493.9317,228.08594,236.93561,514.5935,4.455 607,542.9463,183.47516,50.592224,101.03793,4.427 607,585.90704,-102.71625,75.49432,238.64658,4.415 607,-15.571068,158.63803,50.150215,134.92383,4.382 607,330.4803,210.63947,33.36508,74.89325,4.369 607,315.85925,202.67404,36.740997,69.310455,4.33 607,509.776,186.81174,53.439087,98.16708,4.318 607,439.8,205.4868,21.284027,42.336487,4.296 607,482.30667,225.28954,41.00363,84.81496,4.281 607,396.00986,231.21603,32.589233,67.343475,4.269 607,250.362,211.79262,33.92334,59.144333,4.249 607,18.335016,219.0467,34.878937,61.96367,4.246 607,580.2301,198.35716,39.22101,86.69966,4.207 607,347.50168,241.55138,33.213776,63.48555,4.205 607,0.5378628,199.30629,24.539045,72.25774,4.201 607,618.87897,27.757158,19.291443,56.0446,4.181 607,539.7842,198.21857,30.850342,58.628387,4.176 607,249.31906,199.50977,20.831573,32.390854,4.172 607,203.08716,221.46196,33.312622,61.92253,4.131 607,-10.405832,208.24565,26.951342,69.94331,4.131 607,264.2976,228.05165,23.615265,40.191696,4.118 607,513.3509,287.8175,34.276733,58.09601,4.114 607,457.13892,212.50616,21.179077,52.423126,4.111 607,620.3973,-1.979105,16.793518,41.35183,4.071 607,618.87384,489.9613,20.01361,42.798462,4.046 607,457.9323,107.891075,21.766113,43.316917,4.046 607,60.198727,178.39995,55.571705,107.870285,4.012 607,514.871,204.22205,21.12555,44.289734,4.011 607,555.64636,-14.817291,33.231262,68.72096,3.989 607,167.38222,220.8726,24.560898,33.995163,3.986 607,404.5004,217.02184,39.482117,99.95955,3.984 608,433.95587,200.64977,21.429565,48.251663,46.319 608,452.36646,203.81262,19.223877,44.69493,40.871 608,475.5104,202.07013,20.254395,55.489685,25.449 608,437.952,203.9524,27.123383,63.065277,11.281 608,576.95264,201.22867,26.480957,57.23825,9.643 608,592.554,199.19778,23.610779,60.693726,8.265 608,-17.497427,-65.03533,56.30786,148.98378,7.571 608,452.49405,201.66634,26.792328,70.9572,7.249 608,485.65976,200.83875,28.73111,82.95917,7.211 608,469.1731,210.63388,30.228485,74.80365,6.892 608,-5.7698107,488.87076,18.660831,41.658966,6.88 608,474.93524,192.92203,18.616455,41.202606,6.351 608,627.0426,488.40036,20.09784,45.254242,6.282 608,611.5294,-49.58126,41.00122,104.414764,6.166 608,597.55505,186.54132,35.17987,96.41467,6.007 608,441.76617,200.82762,20.578186,41.499054,5.866 608,451.96387,175.74977,38.95587,76.41095,5.751 608,-9.015675,465.49252,37.694366,91.28409,5.696 608,612.683,454.88562,39.60266,106.13599,5.664 608,582.4136,174.47418,39.71527,83.15863,5.55 608,-11.245901,-32.55359,29.485447,74.70483,5.538 608,86.66401,184.25253,27.125908,64.63344,5.526 608,490.44754,197.84549,19.272766,57.673813,5.509 608,-5.3556213,-17.16592,16.807232,42.910145,5.486 608,424.3523,204.57333,28.6763,66.58115,5.456 608,436.68604,176.44652,38.425293,75.806076,5.382 608,418.25586,200.50992,20.166687,42.72667,5.24 608,-4.7975197,185.88474,17.764942,44.29103,5.224 608,336.61554,213.19449,37.26465,74.818726,5.141 608,-73.2166,266.22168,201.03214,461.21326,5.102 608,627.3491,-18.7373,17.461548,48.003952,5.064 608,-21.610071,402.7372,79.05036,175.28879,4.978 608,421.29453,176.66351,39.35623,74.726715,4.917 608,-15.958931,169.23506,50.620228,135.911,4.914 608,14.097574,181.38855,28.239824,66.36717,4.911 608,583.17334,411.139,71.46503,177.39389,4.852 608,497.76883,198.04846,18.94162,56.330338,4.852 608,536.52826,309.91953,143.38971,343.61478,4.803 608,613.0587,199.33163,36.66516,109.667816,4.793 608,419.55237,211.7265,40.93985,102.42334,4.749 608,586.4296,-105.76693,75.19086,241.80206,4.722 608,452.05493,211.37633,39.15921,101.86171,4.612 608,403.7982,202.16675,31.950531,64.17615,4.606 608,436.02002,210.84503,40.24063,103.92493,4.57 608,490.1236,-180.93823,235.77118,422.32236,4.564 608,225.81042,198.27014,20.411926,29.779755,4.534 608,467.69855,193.76637,18.774292,39.851746,4.484 609,545.0734,205.9981,22.321045,55.156418,76.231 609,488.78174,204.38199,21.03894,55.62726,53.149 609,469.5892,200.41579,27.091156,76.468704,28.822 609,4.115959,186.79182,30.491932,73.20595,12.677 609,535.19904,193.05957,37.042114,78.001495,7.692 609,484.63376,202.34236,36.304596,91.12047,7.365 609,26.607494,196.42381,32.308025,56.113693,6.839 609,611.6926,-49.09266,40.150024,102.80536,6.76 609,-18.076475,-65.87553,56.202805,150.77333,6.324 609,453.9306,204.20427,31.089233,69.27022,6.294 609,-5.9447823,489.73767,18.360016,40.849487,6.007 609,626.74915,488.70197,20.737305,44.50421,5.898 609,499.72855,204.93996,36.750946,90.07536,5.845 609,-8.941988,464.8262,37.72869,92.84201,5.84 609,613.1095,453.29727,39.730835,107.824066,5.747 609,-5.8182716,195.3151,36.54661,95.41141,5.746 609,79.689224,198.56616,23.819092,47.75435,5.722 609,546.7898,199.20361,36.77661,89.13611,5.593 609,515.3164,209.5076,30.590088,75.38895,5.462 609,-5.536473,-17.244936,17.215065,41.624638,5.454 609,581.2202,202.21927,38.406372,100.77402,5.423 609,419.3173,207.82715,40.371307,85.33197,5.355 609,451.98975,202.5967,19.575928,41.831345,5.31 609,627.2956,-17.711279,17.17926,46.68901,5.251 609,-9.595704,176.61157,28.627594,71.377014,5.221 609,562.89453,203.87206,38.97754,92.19527,5.15 609,400.26318,194.54582,21.740875,43.935135,5.15 609,595.2643,-47.021084,42.518066,98.702644,5.112 609,-73.194214,266.11072,201.09576,460.26733,5.104 609,536.2919,309.66028,143.64069,342.89978,5.013 609,-11.334734,-32.28817,29.5311,72.154495,5.001 609,472.89807,197.29819,20.07129,50.67064,4.951 609,11.491003,173.63531,50.388657,108.08685,4.942 609,53.791157,184.75337,32.49075,65.85597,4.92 609,-21.531057,402.5265,78.82265,175.24323,4.889 609,459.03354,202.10545,20.62558,47.131348,4.837 609,582.86725,411.10175,71.77704,177.26202,4.815 609,14.984444,185.50569,27.876587,62.48941,4.777 609,463.03073,196.99454,50.008698,131.35043,4.773 609,-5.5218267,186.22534,18.666626,45.186813,4.703 610,544.6192,198.64691,23.788147,57.867096,94.963 610,520.66516,204.3769,22.989075,54.019577,92.838 610,8.5505085,197.03842,26.313883,65.3064,28.272 610,66.12218,190.29047,20.483353,39.015686,18.632 610,22.706226,190.52802,27.626842,70.080505,12.548 610,486.68518,194.84471,29.936035,87.07979,11.818 610,445.27393,196.58475,22.64618,47.286774,10.8 610,-18.016514,-66.71539,56.171192,151.64287,6.183 610,610.8147,-48.808,41.47168,101.47526,6.099 610,613.10065,454.71417,39.47351,106.16693,5.944 610,129.44661,171.66225,21.60669,41.297607,5.758 610,-9.601678,189.04922,28.260838,72.943634,5.577 610,-9.073898,464.1867,37.817684,93.09192,5.554 610,627.1279,488.51883,20.19629,45.348297,5.538 610,-5.541244,194.35542,18.244055,47.3535,5.529 610,55.61192,186.4915,28.429585,51.244705,5.494 610,517.19324,178.62224,38.472717,78.47731,5.485 610,-5.539072,-17.271013,17.219007,41.64322,5.478 610,-6.3019204,489.33438,18.67821,42.192047,5.428 610,627.0906,-18.945217,17.965576,47.26493,5.363 610,439.7455,184.21379,33.00171,73.64833,5.248 610,-73.09045,265.9699,200.87234,461.07916,5.072 610,560.70337,305.2574,23.68274,48.04715,5.064 610,536.21985,308.90637,143.69226,343.67346,5.056 610,79.749435,190.9786,20.711624,35.499115,5.029 610,-11.335635,-32.25604,29.526337,72.09097,5.012 610,570.5099,311.22482,21.937378,48.08969,4.987 610,373.2095,180.24861,29.501038,71.24214,4.979 610,532.18976,177.82086,38.6709,79.2348,4.942 610,-21.834784,401.8782,79.087746,175.87656,4.926 610,408.42993,192.82881,25.396637,69.584274,4.734 610,-6.2169466,194.88812,36.744305,91.17084,4.73 610,583.0736,410.9916,71.68005,177.61191,4.722 611,597.98975,206.13663,28.993042,68.90701,95.088 611,615.23224,198.78561,24.357239,75.99136,43.882 611,432.3976,199.87267,21.159576,50.788284,41.354 611,24.827171,194.8405,20.478252,38.55899,32.93 611,40.7527,191.23169,20.905556,38.0692,10.011 611,423.35413,189.85822,32.519257,81.637695,9.92 611,405.3622,189.85468,29.45163,75.6749,8.837 611,479.92194,206.00821,32.61493,78.22403,8.075 611,592.93945,194.33864,41.98401,106.63966,6.259 611,611.70056,213.11066,34.770325,105.49823,6.2 611,417.095,200.55872,22.358734,54.866837,6.04 611,-17.913559,-66.65961,56.136974,151.3144,6.012 611,613.3334,453.5171,38.978943,108.4212,6.009 611,611.7376,-48.294113,40.96698,102.79497,5.996 611,-8.976501,466.0915,37.53756,89.964905,5.988 611,-5.998307,489.63882,18.518114,41.329376,5.896 611,622.18225,478.48508,28.615173,64.90866,5.809 611,9.856595,192.31224,21.460255,44.120377,5.799 611,-5.780408,-18.176464,17.578255,42.938423,5.708 611,31.76857,191.67018,21.898918,38.59549,5.63 611,436.36145,191.2994,33.66635,81.659134,5.368 611,-11.291184,-32.28898,29.512402,72.65228,5.366 611,-17.456509,438.25357,54.934116,138.89688,5.059 611,-40.09802,368.25073,110.02049,275.2909,4.951 611,-5.0325727,184.52672,17.248936,43.31183,4.893 611,583.1396,411.3325,71.44116,177.23111,4.852 611,536.54517,310.53247,142.8457,343.1078,4.809 611,412.63303,122.71124,29.302734,78.05127,4.805 611,-73.08,266.22522,200.69098,460.0553,4.759 611,575.64185,194.53249,51.73828,155.08134,4.682 611,626.1012,237.13272,19.225647,54.7088,4.577 611,591.98517,224.71295,28.406738,73.94885,4.519 611,452.61472,204.92444,38.329315,93.574615,4.496 611,627.3894,-17.657404,17.372192,45.36516,4.476 611,493.67676,229.83435,237.83624,513.994,4.468 611,260.33447,484.57288,30.955841,58.27307,4.459 611,300.34888,484.1478,31.768616,59.139618,4.435 611,2.8145611,180.99527,22.489717,59.352966,4.414 611,617.1659,236.54285,21.41034,61.920532,4.394 611,19.060253,184.12502,38.191616,62.700455,4.385 612,528.4108,207.5585,23.549744,50.48996,87.976 612,452.92514,186.0864,26.470428,78.07486,35.428 612,453.4146,63.963284,29.324585,90.49252,16.448 612,4.0322876,189.17363,19.530334,45.616104,12.547 612,518.3927,191.05818,37.182556,75.97566,7.497 612,447.28247,175.9661,47.365326,124.811676,7.108 612,62.688408,189.36443,28.671417,70.834305,7.03 612,-6.214311,490.12164,18.807484,41.960205,6.638 612,-17.73307,-66.71994,55.87734,151.71492,6.308 612,397.0538,178.48447,17.557281,33.50496,5.936 612,-9.59137,462.1253,38.4458,94.9989,5.87 612,476.55124,144.41998,28.253601,81.54158,5.834 612,611.47046,-48.08011,41.071655,101.77378,5.815 612,627.11127,-18.051128,17.10144,48.093967,5.797 612,59.366768,197.76295,19.92443,45.439774,5.709 612,1.1805689,194.69072,25.35252,72.40996,5.681 612,613.28357,202.33107,27.782104,87.64049,5.617 612,-5.7056932,-17.925419,17.465965,42.672443,5.602 612,-11.794703,479.4292,29.733383,61.57599,5.471 612,626.6552,489.08917,20.75946,44.438965,5.404 612,613.3444,452.9435,38.78943,108.27896,5.398 612,-2.4640083,185.57492,17.42582,41.461975,5.395 612,72.24778,200.04144,22.158005,42.68483,5.362 612,503.9122,159.77051,23.855011,69.29736,5.351 612,5.0292864,178.54733,36.388584,84.79529,5.248 612,-11.328365,-32.40389,29.50165,72.81798,5.17 612,482.58182,194.18634,36.979645,87.92383,5.12 612,-18.800194,429.97357,55.72042,147.00348,5.017 612,483.8105,123.14106,31.073486,85.264275,4.937 612,583.154,410.8616,71.406494,177.4714,4.93 612,36.1985,194.08626,30.064552,68.11839,4.911 612,536.477,310.0171,142.79974,343.6117,4.843 612,451.58966,103.481705,30.37378,91.19707,4.8 612,437.90256,56.89306,28.188019,79.55094,4.766 612,488.75128,152.29524,22.301086,63.67198,4.669 612,461.86633,168.52208,27.506409,77.798904,4.658 612,462.88086,131.6118,29.869751,82.635895,4.647 612,152.68832,186.66797,21.974152,38.87863,4.606 612,-40.575264,368.6754,111.21609,273.1012,4.589 612,-13.614414,162.6495,47.67214,124.850006,4.587 612,487.42368,120.58843,21.453705,54.613136,4.55 612,67.15483,208.613,19.125725,42.70363,4.486 612,18.653496,181.61078,39.191925,79.203125,4.42 612,-73.17203,268.86456,200.03053,457.15033,4.417 612,585.8629,-106.17082,76.669556,240.99109,4.409 612,489.25427,-180.71188,237.20111,422.8299,4.385 612,1.2687719,177.45418,20.842348,40.384186,4.342 612,74.66806,191.72604,31.414017,62.558014,4.278 612,379.0301,181.81145,17.328705,32.56909,4.276 613,576.4797,252.46756,24.37732,58.21405,90.049 613,478.14725,235.23775,25.740265,64.18404,89.317 613,412.92426,226.8433,17.758453,36.0533,12.033 613,627.0061,487.78937,20.55066,45.013855,8.369 613,566.7524,243.30023,37.16736,104.57233,8.345 613,621.95404,-33.472775,27.335632,74.33852,7.338 613,514.4856,210.12546,22.358215,58.654816,6.892 613,613.75055,452.5337,38.323914,110.16376,6.368 613,537.672,237.06033,54.72589,143.83331,6.353 613,619.9253,490.89792,18.645447,41.228546,6.167 613,626.24786,-17.197632,17.89148,46.235073,5.815 613,88.99807,220.69008,20.407288,38.46895,5.797 613,-8.820631,464.17764,37.65263,92.33719,5.767 613,-5.734587,-18.104609,17.511332,42.902447,5.709 613,-17.525957,-64.23434,56.183426,145.82277,5.688 613,-5.8817396,489.78668,18.016056,40.834106,5.615 613,538.72766,225.71815,29.884277,79.23836,5.614 613,573.2548,235.91136,48.1557,144.25044,5.431 613,-11.34798,-32.399925,29.557526,72.773674,5.43 613,602.9383,-54.874126,53.00049,137.52284,5.274 613,536.3855,309.60672,143.21936,340.85117,5.179 613,-71.80453,265.73627,199.13162,462.47614,5.057 613,418.4244,238.6765,16.681427,28.40654,5.0 613,615.3913,228.26154,24.281494,83.98059,4.992 613,-39.35357,367.44806,109.13502,275.46014,4.947 613,540.17566,64.46745,29.215149,111.43913,4.909 613,583.3114,411.516,71.70233,177.24866,4.903 613,617.4238,286.2623,23.064148,86.322174,4.676 613,527.0161,206.46838,29.255066,80.861206,4.674 613,485.45963,-35.131783,29.187408,75.856,4.609 613,495.3385,230.78519,236.84448,511.59042,4.529 613,552.39105,245.75363,23.031067,52.682434,4.528 613,-17.16133,433.29657,54.602768,143.61963,4.464 613,502.28595,195.29678,30.520569,74.257965,4.436 613,514.7776,230.78293,49.49597,136.69272,4.277 613,144.23444,240.61824,21.836487,40.56398,4.243 613,470.1391,-35.22991,29.55371,69.46926,4.21 613,484.52844,218.01537,28.325989,73.71684,4.189 613,-17.762144,190.0765,51.017197,128.34924,4.157 613,497.3964,240.44514,40.258392,91.236404,4.153 613,595.3886,-45.141457,42.84131,100.505486,4.096 613,592.75995,243.80533,44.16931,152.50632,4.016 613,488.83698,-18.903267,20.52179,45.40364,4.012 613,380.5271,220.0782,18.33374,38.198715,4.008 613,585.8878,-103.25409,75.539185,238.67126,3.997 613,628.6414,1.2180309,16.513672,43.004494,3.987 614,503.18732,205.46146,27.69336,71.69479,97.975 614,429.1156,197.81927,18.859497,40.409653,17.521 614,587.5849,175.2662,28.806213,83.64938,11.504 614,536.997,142.8478,33.20465,72.97197,7.225 614,386.54785,189.18066,19.960266,41.92453,6.838 614,69.39498,182.32314,24.459381,45.966293,6.694 614,626.70844,488.69067,20.718567,45.610474,6.645 614,-5.6969748,490.39157,17.375002,40.286224,6.359 614,612.02655,-49.08586,40.158875,105.770325,6.178 614,-9.186595,464.2142,37.833942,91.94278,6.062 614,-11.675995,479.59332,28.9958,61.31952,5.982 614,340.3787,201.02657,19.828674,40.499954,5.978 614,612.96094,453.61322,39.609375,108.56708,5.885 614,434.5674,211.62912,17.121887,29.481995,5.806 614,-5.8181143,-18.180418,17.584785,42.938225,5.687 614,-17.426102,-64.3229,56.2507,146.4714,5.666 614,627.2239,-16.841423,16.98938,45.48271,5.645 614,613.44617,53.404842,24.755066,86.47888,5.645 614,-11.355627,-32.45701,29.655033,72.823555,5.619 614,589.2297,318.04852,29.087769,71.580536,5.484 614,52.480896,152.54251,33.910263,76.16243,5.427 614,-21.258621,404.64984,78.35892,174.45471,5.4 614,618.74347,188.95395,19.142944,56.700333,5.103 614,499.05054,179.98637,40.098816,83.234116,5.057 614,575.84705,175.70044,31.019165,75.32556,5.046 614,536.1081,309.83374,144.11859,342.37256,4.994 614,583.5243,411.1346,71.07092,176.90176,4.94 614,618.3074,489.96097,20.980225,44.300507,4.861 614,-72.60791,266.544,199.78586,459.8885,4.85 614,493.89142,228.52393,237.13837,516.6593,4.68 614,491.44324,194.38445,21.069458,45.996033,4.668 614,541.6776,137.58658,24.130554,49.359604,4.658 614,480.85315,188.30669,26.11145,60.523438,4.583 614,567.3825,185.55692,27.984985,65.40312,4.575 614,573.97003,317.44614,28.133911,70.37491,4.572 614,526.82306,181.79297,29.000671,66.61841,4.506 614,346.4856,208.94489,19.01242,34.891754,4.432 614,2.976677,492.78073,17.384195,37.06784,4.379 614,460.09796,495.51657,17.488281,33.7399,4.377 614,451.62817,494.95178,17.892365,34.846436,4.366 614,544.1362,50.011597,27.301208,88.78659,4.339 614,545.1107,171.01624,30.104858,70.58778,4.321 614,595.5907,-48.137573,42.026367,106.248886,4.305 614,205.41154,208.04471,14.775803,26.21312,4.299 614,-5.7731867,202.93655,17.385391,38.32936,4.266 614,468.0938,495.73685,17.338959,33.7352,4.259 614,569.5542,322.92242,22.50122,50.72397,4.24 614,213.42607,208.86926,14.597748,27.517761,4.231 614,491.27448,204.56198,28.533203,67.36481,4.162 614,525.4918,144.35834,31.280884,77.51141,4.138 614,-5.7057786,185.68594,17.565989,40.11319,4.129 614,584.53784,324.03583,21.749939,46.154938,4.117 614,619.4311,213.88377,19.457397,50.102554,4.085 614,66.19987,155.2059,32.27398,67.05003,4.073 614,10.009519,211.72366,21.191547,37.49846,4.069 614,114.823044,204.03302,31.492813,52.307922,4.061 614,466.2845,185.8165,20.710205,39.60672,3.992 614,550.4659,157.47658,22.666138,52.84561,3.987 614,613.7962,208.7623,38.02362,98.49658,3.976 614,314.83038,205.6745,19.498596,35.332047,3.974 614,322.77176,202.91072,19.415253,37.35637,3.936 615,561.15076,222.364,31.64685,78.78227,93.748 615,460.39645,208.35248,20.663116,42.90837,37.455 615,400.29883,194.6813,21.309753,44.48143,9.088 615,4.8785257,138.74748,33.2437,84.81563,8.396 615,627.23566,-16.715548,16.812134,44.971844,8.123 615,41.72413,157.02962,33.91581,80.48381,7.935 615,572.05554,140.61922,29.146729,79.99504,7.22 615,623.4475,-34.639465,25.73468,76.55504,7.076 615,-5.917487,489.49332,18.53704,40.99832,7.037 615,-11.54351,479.7264,29.319086,62.09488,6.827 615,626.8187,488.18298,20.09076,45.53717,6.822 615,54.228554,202.75165,24.216347,46.847977,6.583 615,603.5472,-52.805717,52.57965,134.62157,6.23 615,549.17816,145.30316,30.253418,77.14606,5.85 615,-11.405511,-32.58712,29.767822,72.828964,5.818 615,612.7709,457.32056,38.749268,104.1546,5.727 615,-17.428617,-64.21834,56.4208,145.63889,5.615 615,179.67064,204.71384,15.435089,27.647858,5.612 615,-5.8730946,-18.318308,17.64198,43.093536,5.592 615,584.1801,412.93195,70.09442,176.1726,5.474 615,98.82077,208.67569,33.065216,56.65265,5.418 615,-20.903208,405.2967,77.91343,174.26971,5.335 615,559.49,143.98486,25.268188,60.77202,5.211 615,-72.3972,266.4611,199.80191,459.73715,4.966 615,619.6947,-16.539225,16.40448,42.25783,4.963 615,354.44547,209.06512,20.645477,41.909286,4.899 615,581.66815,141.70445,24.577698,56.99092,4.696 615,30.719137,166.95145,30.62597,75.34451,4.619 615,137.65242,218.36191,20.152908,33.60672,4.605 615,594.20026,218.047,18.440247,40.911774,4.602 615,536.75684,312.53455,142.67957,339.94836,4.549 615,616.06946,54.30559,23.308655,84.15515,4.528 615,586.1247,217.12817,19.581604,43.75409,4.483 615,618.63214,490.1545,19.897705,42.131195,4.474 615,292.33667,485.83826,31.662506,57.403076,4.453 615,493.71826,227.73224,237.99188,517.19,4.408 615,-7.112725,149.82599,35.972496,98.13356,4.306 615,205.57875,216.91296,14.164169,24.363403,4.277 615,500.90045,96.466286,32.062805,81.412285,4.213 615,575.10095,224.80267,38.429504,87.84192,4.208 615,471.97086,205.04594,19.27414,40.036697,4.169 615,453.18347,201.86386,19.181824,37.285385,4.164 615,627.8175,5.4122887,16.450012,42.005543,4.128 616,522.5792,210.28064,24.998474,58.253998,54.636 616,424.06183,204.7464,21.223541,43.545654,37.0 616,-5.9500675,489.09552,18.396103,42.172913,6.445 616,603.1434,-54.70614,53.140076,136.50838,6.33 616,-11.569386,478.62848,29.150955,63.547363,6.288 616,626.65955,487.65146,20.187073,46.665497,6.181 616,613.8988,102.161575,26.399963,94.014755,6.12 616,-11.385242,-32.619373,29.810303,73.025505,5.792 616,2.7927053,223.75764,18.487688,38.57988,5.763 616,-17.436775,-64.41378,56.358784,146.3119,5.636 616,-5.852378,-18.303555,17.611534,43.131134,5.575 616,612.88403,456.97952,38.921753,104.382965,5.554 616,21.153824,203.2651,31.606415,64.524994,5.524 616,370.6582,218.65393,21.784698,40.41864,5.46 616,532.3725,215.71605,22.862549,46.653732,5.459 616,-20.970497,405.44577,77.66026,173.95486,5.351 616,583.7115,413.25458,70.74292,175.56714,5.328 616,623.202,-34.094105,26.517822,75.881454,5.311 616,627.0177,-18.26157,17.6958,46.87929,5.12 616,172.93439,216.84377,14.370941,24.968613,4.965 616,-72.68875,266.81256,199.86752,459.57074,4.842 616,204.38876,215.6273,15.613312,27.454391,4.806 616,536.36835,311.35016,144.055,340.41565,4.709 616,12.513413,178.21042,54.85769,104.67532,4.58 616,595.26886,-47.236687,42.86975,103.64526,4.528 616,493.75595,227.88934,237.24374,516.66315,4.52 616,2.647208,490.70786,18.506914,39.578033,4.514 616,530.4635,97.19649,33.489746,82.175156,4.507 616,37.5182,191.46971,29.483395,66.26503,4.498 616,618.2051,488.39444,20.536682,44.632294,4.299 616,559.5716,185.74748,29.163391,58.187103,4.283 616,292.9809,486.59753,30.329773,57.201294,4.253 616,614.9496,143.7586,25.61261,84.18738,4.251 616,7.36292,178.4578,30.193989,67.77965,4.208 616,17.810556,208.19121,22.10399,47.021057,4.175 616,-5.319099,187.85358,17.399418,41.247177,4.142 616,5.280858,472.5067,37.50679,89.68762,4.112 616,170.42758,203.44745,15.977844,32.38336,4.097 616,196.20776,215.55649,15.933807,26.859879,4.066 616,616.2222,47.52203,25.8797,90.756134,4.064 616,507.2122,100.075775,34.813507,73.3584,4.055 616,-4.0272293,347.87372,14.950949,38.679993,4.048 616,277.1604,486.4738,30.190063,56.818146,4.045 616,2.4327798,241.27255,19.724815,41.749146,3.974 616,516.56396,203.76099,20.130737,43.207123,3.948 616,431.2296,195.78687,19.672028,45.866272,3.938 616,363.0763,218.60135,20.22403,40.74402,3.916 616,-5.681798,245.35028,17.933254,41.35901,3.909 616,68.4191,207.18533,31.531624,60.224518,3.85 616,164.26704,196.33481,16.914368,34.775467,3.808 616,260.96866,485.82224,30.388916,56.894806,3.804 616,26.933311,186.466,28.460419,61.864624,3.761 616,612.67584,192.28098,37.684814,101.42743,3.726 616,-8.613173,200.53267,37.933765,93.62956,3.719 616,-5.4670916,172.56943,16.844147,40.86061,3.701 616,309.26276,487.20065,30.110474,55.733795,3.7 616,212.0475,216.42577,15.540176,27.928436,3.7 616,621.99805,36.071247,26.56726,73.63246,3.668 616,53.45341,186.79875,32.987103,74.357254,3.667 616,10.519305,492.3126,19.083195,38.674408,3.656 616,-10.931911,431.06885,41.541924,92.423584,3.653 616,188.70712,217.50995,15.126556,24.908234,3.65 616,585.74756,-102.96515,76.43872,239.12137,3.646 616,594.8075,208.12778,41.793518,92.9964,3.644 616,2.7307332,-16.523321,16.67823,40.033867,3.64 617,454.89273,216.51062,22.203644,45.022827,61.32 617,528.85443,217.87375,20.17688,39.41336,10.614 617,375.69656,204.56976,21.278473,45.658066,10.178 617,622.62933,-33.588043,27.178406,73.32592,7.993 617,626.8493,487.76514,20.153625,46.434814,6.599 617,-11.615183,478.91898,29.297478,62.31729,6.59 617,554.09094,207.99594,20.741272,42.794113,6.461 617,626.8977,-17.627441,17.901733,45.071045,6.303 617,122.86469,216.83444,20.395897,41.73416,6.219 617,-6.001578,489.54297,18.516846,41.79364,5.855 617,613.0803,457.11243,38.45581,104.03601,5.828 617,-11.390993,-32.491657,29.761011,72.70104,5.728 617,523.05334,206.4602,19.771118,40.475525,5.669 617,-17.603935,-65.532166,56.34161,149.4651,5.646 617,-5.85001,-18.227427,17.585464,42.93805,5.601 617,584.27637,413.39346,70.09009,175.66428,5.48 617,501.88745,133.62556,29.513794,69.16977,5.318 617,156.25662,212.19081,18.1801,38.495438,5.226 617,-21.160732,405.02588,78.052505,173.9198,5.131 617,574.16187,205.91106,31.50769,53.079117,5.114 617,602.933,-56.892826,52.863525,130.85522,5.07 617,-72.81233,266.19202,199.81007,461.15295,4.998 617,559.4703,201.83597,21.775208,42.635117,4.944 617,547.18207,202.2727,20.191162,42.75351,4.843 617,515.9476,204.88208,19.039062,40.46974,4.766 617,463.71875,212.37787,20.556305,37.23323,4.747 617,612.60614,-16.883629,29.908508,64.46999,4.728 617,617.97473,-17.606857,19.337585,42.842304,4.653 617,276.6707,486.28906,30.972961,56.93982,4.583 617,488.54718,133.42308,22.08496,47.80536,4.518 617,618.57904,489.3319,20.189392,43.69458,4.51 617,493.19952,124.2631,29.52539,69.02465,4.507 617,203.99886,230.46344,17.299881,30.834045,4.503 617,276.3897,215.5567,16.101166,27.929718,4.499 617,147.88416,219.10654,19.37323,36.427002,4.499 617,535.8996,312.33978,143.8739,340.6253,4.471 617,128.8428,209.37984,18.464539,38.78203,4.431 617,292.20312,486.9142,31.769104,56.492157,4.418 617,493.24203,226.70636,238.09897,517.37317,4.355 617,569.3999,204.23953,22.141602,39.535095,4.333 617,593.96265,-44.229336,44.39563,92.27741,4.292 617,252.01051,170.9051,29.043625,73.27025,4.292 617,257.20764,195.83743,19.782501,41.13118,4.198 617,576.09766,172.13608,49.443604,117.61496,4.07 617,532.2683,201.05273,27.237244,61.7724,4.047 617,261.14508,486.697,29.898651,56.57364,4.016 617,595.0932,158.95721,34.307922,76.06125,4.011 617,137.42053,202.83717,19.590302,36.315186,3.99 617,603.7037,122.20459,32.810547,82.74686,3.975 617,457.88696,218.20462,31.061401,57.49167,3.962 617,1.730988,227.44217,22.837626,50.36841,3.931 617,86.191475,205.49577,26.821869,60.240555,3.926 617,508.92062,148.14662,30.150726,69.571915,3.913 617,5.602088,469.7494,37.505806,93.01404,3.902 617,267.90823,217.19743,16.248322,27.640839,3.887 617,446.0835,215.68341,19.333374,43.24695,3.881 617,489.3378,225.2725,20.875336,33.421646,3.86 617,475.46353,148.2217,30.471954,73.30133,3.843 617,2.3509634,490.79318,18.872261,39.993988,3.841 617,546.47565,-11.495058,32.47052,63.305504,3.833 617,259.85425,216.13864,16.152985,28.466309,3.801 617,586.2747,-101.79982,76.03766,233.0273,3.79 617,536.43427,225.61671,19.3526,34.359787,3.783 617,106.17433,208.97841,20.163376,39.335403,3.765 617,514.60596,165.19972,18.945496,38.853867,3.751 618,608.46906,204.42871,24.440125,62.652252,14.171 618,392.3203,207.43585,17.834991,38.78334,9.709 618,500.05756,223.98781,17.699646,38.44133,9.374 618,137.79982,212.92387,19.719727,36.810303,7.388 618,622.07324,-33.293518,27.777954,74.17784,7.158 618,602.793,206.95181,20.853699,52.06595,7.156 618,626.7984,488.4214,20.154358,45.35034,6.893 618,613.2047,-20.474115,27.773193,70.34014,5.906 618,-5.952961,489.55273,18.403522,41.207886,5.81 618,-8.808699,465.76517,37.552536,90.78439,5.781 618,601.84546,-55.161892,53.60559,129.5304,5.765 618,413.4361,198.80365,25.42633,65.116,5.75 618,-17.684067,-64.99317,56.084274,149.37009,5.734 618,87.46953,218.46259,25.37368,45.174713,5.592 618,-5.786601,-18.120708,17.526997,42.988377,5.556 618,-11.336618,-32.310272,29.683992,72.503586,5.545 618,626.2113,-19.775303,18.977783,48.212765,5.534 618,612.815,457.3767,38.69696,103.70288,5.471 618,528.1431,117.76935,25.118103,52.862762,5.455 618,622.203,198.34865,25.417969,75.35283,5.323 618,466.38474,212.03064,21.020538,52.32544,5.195 618,583.92065,413.13553,70.39929,176.06015,5.192 618,-21.16433,404.8252,78.23182,174.20215,5.177 618,593.70966,-43.04934,45.150818,92.32052,5.096 618,507.85184,230.67409,15.990204,37.493637,5.042 618,-72.57533,267.14688,199.67688,460.29794,4.907 618,441.69064,205.33612,20.369965,55.51889,4.897 618,617.5314,145.98741,21.699463,63.107086,4.816 618,603.54297,32.54554,31.208557,79.10033,4.7 618,72.40882,213.26086,22.888313,42.505676,4.688 618,618.6697,489.98285,20.075134,42.611267,4.683 618,276.5407,485.22867,31.002045,57.97336,4.627 618,504.39728,208.69278,20.284058,47.875275,4.588 618,597.1909,214.83502,38.449036,105.92853,4.583 618,67.96022,220.90598,32.115196,51.707733,4.575 618,292.44257,485.5898,31.244873,57.49893,4.542 618,493.78635,217.19173,18.49228,41.386,4.5 618,512.04095,110.65648,26.000183,49.684906,4.497 618,532.16943,117.88036,32.97351,70.176094,4.452 618,543.5965,116.52174,26.051208,44.218475,4.447 618,456.66302,204.64755,26.990173,72.95062,4.436 618,53.685036,211.01566,29.167175,59.989716,4.436 618,-13.713781,179.7192,46.8435,139.4008,4.421 618,536.82196,311.10568,142.53479,340.97476,4.402 618,449.12003,207.25307,21.330048,53.707138,4.375 618,389.06204,185.84167,38.105194,75.05441,4.361 618,590.0709,39.754364,33.022034,73.637054,4.346 618,493.7288,228.68948,237.2637,514.80005,4.282 618,445.51117,262.9148,14.874603,25.519196,4.282 618,464.93982,135.99869,22.305603,48.47017,4.276 618,545.9258,116.01222,34.371582,71.13524,4.259 618,472.77234,140.01028,21.966736,43.717102,4.253 618,7.69506,182.84814,26.475266,76.90427,4.24 618,586.1576,-101.15239,75.14215,232.63927,4.222 618,489.95,191.24176,18.710419,40.578705,4.18 618,324.44684,229.73741,33.11792,59.626633,4.146 618,260.66638,485.10977,31.093536,58.154877,4.117 618,618.0422,196.6144,20.255432,62.353897,4.103 618,421.6792,195.20956,36.71634,81.91113,4.072 618,-3.9943275,332.99927,14.579078,35.95114,4.066 618,613.46277,211.91824,26.911682,72.18787,4.056 618,130.99709,214.29599,31.958221,51.963867,4.038 618,616.8543,46.216927,21.825256,61.264885,4.023 618,124.546165,214.96555,19.350609,35.11136,3.963 618,-4.490717,182.29782,17.892147,49.051605,3.956 619,572.6248,204.74896,28.585632,68.85034,71.979 619,585.3518,209.21895,27.880493,64.90654,40.359 619,105.8891,205.08327,24.202164,48.29274,21.583 619,8.9499655,216.19348,22.336628,53.05078,14.625 619,2.0707345,214.6853,21.231518,60.63925,12.406 619,533.6869,207.43799,38.20691,86.309326,7.889 619,552.9558,212.58664,22.629883,43.288803,7.755 619,622.2417,-33.281654,27.496216,75.32294,7.674 619,553.48846,206.45108,34.829163,70.63577,7.374 619,605.9098,144.92506,28.686035,71.82686,7.338 619,626.28815,486.9736,21.27295,45.85202,7.061 619,-12.340159,-42.39179,40.66931,104.46306,6.938 619,539.7883,133.78528,31.928223,76.8645,6.598 619,-3.7871003,214.68869,18.406824,51.134155,6.332 619,-5.3785725,-17.584776,16.706411,42.558342,6.259 619,-8.757862,465.07556,37.62681,91.793884,6.096 619,-5.769202,489.42694,18.13956,41.168213,5.797 619,612.8733,453.73505,39.143616,107.58722,5.689 619,563.1927,212.61465,23.117676,47.289917,5.638 619,602.64246,-58.049683,53.025513,132.59544,5.605 619,3.2189476,212.08301,36.289207,81.87259,5.396 619,-4.958453,153.92767,17.370605,44.02118,5.377 619,-73.393135,265.3363,200.92407,461.9474,5.142 619,594.22876,-46.436104,44.104248,95.71041,5.096 619,-4.849144,191.92035,35.332253,87.67908,5.049 619,340.4577,226.4639,32.423615,64.82025,4.974 619,536.16956,310.02847,143.56775,342.77267,4.974 619,-21.534172,402.72473,78.58395,175.55798,4.97 619,618.2984,488.50787,20.737732,44.20514,4.956 619,574.12665,195.25998,49.90265,129.51117,4.936 619,563.73596,207.30284,40.811157,102.46272,4.924 619,535.11206,203.36598,29.408752,54.623947,4.922 619,539.1551,204.87192,59.12079,140.97409,4.921 619,616.73865,139.84398,21.955566,56.81241,4.83 619,-3.2921252,131.1446,14.296139,40.061035,4.825 619,582.82983,412.19077,71.69092,176.37247,4.81 619,-5.382167,171.43985,17.446777,44.11847,4.775 619,259.9044,159.01108,31.262146,76.27472,4.762 619,50.520382,192.36217,30.896763,61.439377,4.752 620,42.99991,209.31694,30.745926,56.881027,25.98 620,494.57526,214.36714,29.743713,78.011215,18.371 620,504.54492,210.9069,31.144714,70.46236,7.683 620,-2.263664,199.0968,26.108723,68.37009,7.618 620,284.04333,212.13425,13.986053,27.136505,7.409 620,-6.0349283,489.36053,18.289625,41.03778,7.1 620,35.84114,210.07625,24.70665,51.72844,6.973 620,-11.432812,479.13297,28.79882,61.697845,6.688 620,54.068584,214.25255,23.696651,43.01268,6.323 620,622.3662,-32.17563,27.158386,73.043976,6.3 620,626.77625,486.94183,20.45819,46.07788,6.197 620,430.3249,183.60088,27.335358,76.86842,6.17 620,627.10046,-16.964504,16.875366,45.472004,6.168 620,596.21924,115.99289,32.144226,73.95355,5.952 620,612.70905,453.64578,39.670715,107.40024,5.815 620,277.6496,213.7512,13.253876,25.350464,5.799 620,602.3797,-55.34343,53.677185,128.47157,5.773 620,-17.594116,-65.21991,56.152718,148.83734,5.701 620,-5.758668,-18.073294,17.520433,42.90289,5.618 620,-11.321187,-32.34366,29.58191,72.70709,5.45 620,-5.2019763,198.92664,20.0948,47.98616,5.16 620,469.67877,208.35855,29.466797,78.31589,5.139 620,-2.9696941,141.44386,29.495537,76.666504,5.042 620,436.1713,201.73233,28.631195,79.95578,5.031 620,546.7576,130.15172,29.985657,68.319565,4.999 620,-21.361622,403.69354,78.33115,174.48346,4.948 620,-72.78832,265.97382,200.19426,460.54456,4.908 620,593.5453,-42.81455,44.696167,90.8169,4.892 620,582.8303,412.0528,71.733215,176.76642,4.863 620,536.60266,310.54565,142.7041,342.14392,4.852 620,577.06604,224.47148,22.064148,32.87883,4.843 620,518.2264,212.46706,24.233032,51.467148,4.751 620,617.65607,189.5552,22.041077,68.199615,4.739 620,23.120731,206.69238,31.382004,60.161133,4.715 620,291.8462,213.89755,15.194244,26.162994,4.706 620,-5.9659643,150.20209,20.013588,46.926987,4.67 620,618.43604,487.47888,20.424255,44.54883,4.568 620,398.19922,221.34665,28.12436,60.7807,4.56 620,457.38312,211.70755,22.290802,54.83432,4.515 620,585.73065,-101.00448,75.73724,232.24435,4.499 620,618.00366,-4.511347,19.807922,40.657623,4.495 620,252.06406,224.80312,15.798248,27.210587,4.482 620,606.9184,2.630249,25.21582,50.419884,4.43 620,493.96265,229.01462,237.45154,514.56384,4.383 620,614.1545,119.65844,26.391052,84.17365,4.38 620,507.3531,122.55032,32.121643,86.654205,4.363 620,590.0752,135.62247,30.730286,78.5508,4.294 620,512.5114,203.6964,22.01178,46.16632,4.29 620,592.38184,127.06036,24.393555,48.535522,4.242 620,270.3537,215.03282,12.810852,23.876541,4.24 620,514.5495,206.80222,37.167297,81.041626,4.222 620,532.61194,102.404755,31.59259,72.81778,4.194 620,2.8937416,491.31528,18.161081,38.329132,4.134 620,612.5294,-18.763851,28.217285,64.04511,4.13 621,487.91266,39.638145,26.341553,73.93991,11.399 621,289.98218,197.7255,21.117035,38.549362,7.921 621,626.7064,-17.844086,17.254395,45.833294,7.12 621,622.9061,-33.536854,26.417053,73.59347,6.975 621,-17.813852,-65.99625,56.276733,150.80968,6.885 621,345.5998,234.88715,21.963013,40.256714,6.885 621,457.60693,212.548,18.8432,45.29016,6.881 621,589.2711,116.64172,32.61554,67.236786,6.731 621,621.7623,475.5288,29.554565,68.491455,6.553 621,-8.838502,464.80826,37.61453,91.73776,6.217 621,509.5773,223.2622,31.999603,91.511536,6.021 621,-5.802226,490.1234,18.025957,40.476196,5.994 621,439.413,207.49673,25.823761,73.34735,5.432 621,-11.331768,-32.29002,29.652195,73.095215,5.356 621,-5.873713,-18.351665,17.673727,43.510498,5.266 621,491.52057,88.38152,30.08899,73.00727,5.202 621,603.3807,-54.75054,52.88214,129.70389,5.152 621,-21.49355,403.56485,78.51051,174.93509,5.099 621,-72.76821,266.9445,200.07332,459.77585,4.894 621,449.10504,194.62431,24.755798,68.37642,4.85 621,582.9366,411.47775,71.53595,177.16287,4.815 621,536.53986,310.9324,142.84308,341.61984,4.773 621,618.2197,487.58466,21.115784,44.48181,4.77 621,212.25299,225.71579,16.180222,27.196823,4.603 621,204.11365,224.63046,16.633942,27.75035,4.595 621,195.18198,223.50893,17.478638,27.48677,4.54 621,554.0573,230.45532,34.785583,70.32001,4.523 621,416.7194,203.19672,26.755585,64.00403,4.442 621,60.931835,163.2738,28.37949,73.713135,4.442 621,494.05096,228.0889,237.46259,514.9459,4.396 621,77.30077,172.11113,26.321114,66.05116,4.38 621,243.93007,226.00711,17.106552,29.23555,4.324 621,186.44196,216.30418,18.354279,29.404144,4.301 621,444.90567,231.32013,29.023956,68.268005,4.287 621,430.43704,201.9198,25.408173,65.451416,4.287 621,585.09186,-101.5339,76.179016,233.5469,4.284 621,227.69844,233.04512,18.748474,30.992111,4.284 621,299.07034,214.5751,17.240967,29.732117,4.275 621,451.26892,203.7467,37.928955,74.58429,4.265 621,-5.9672203,187.19736,17.854408,41.58722,4.259 621,347.99518,230.10268,32.08838,61.91255,4.248 621,429.40924,230.9964,30.012909,65.51337,4.2 621,551.4548,120.86341,24.741089,55.27384,4.192 621,220.02225,233.41484,18.3721,30.038986,4.187 621,-11.381516,50.02256,29.436836,61.44806,4.158 621,613.9036,-20.46325,28.112366,69.48694,4.132 621,619.3544,-16.848875,17.589233,41.460384,4.12 621,-5.5579443,115.17365,17.44734,40.494164,4.112 621,317.278,211.82611,14.981323,27.240662,4.097 621,576.8883,235.06026,33.974,67.31181,4.08 621,29.722403,184.02757,26.933348,65.39943,4.076 621,508.25412,214.2374,54.48221,139.59564,4.06 621,489.86658,215.0033,21.229462,41.760773,4.053 621,236.2005,226.3588,17.689728,28.410477,4.046 621,526.4302,150.70125,23.563354,56.427216,4.02 621,360.96216,236.18016,22.333496,38.865402,4.01 621,251.25781,225.15007,16.160461,28.001755,3.983 621,548.12427,57.0881,31.01709,76.4288,3.954 621,517.70856,202.34273,28.697144,68.48326,3.951 621,466.7244,219.38821,40.41797,91.49539,3.937 621,539.6474,124.15957,31.86493,73.78498,3.922 621,-4.8757277,60.007973,17.621666,38.11151,3.873 621,2.697401,63.13009,20.180233,35.856544,3.858 621,339.6011,233.2867,20.930756,34.82396,3.797 621,347.58722,220.32812,16.090027,30.865921,3.778 621,381.90524,170.97472,27.878662,69.048416,3.743 621,612.8332,267.88586,38.092712,110.204315,3.734 622,505.03754,211.36588,20.692932,58.311066,36.428 622,503.60233,211.7221,32.70749,86.57861,35.247 622,409.5835,201.45847,21.609802,48.889984,9.656 622,511.17334,214.65536,41.05072,96.215515,7.014 622,-17.960577,-64.3837,56.50312,149.30182,6.891 622,153.84871,229.02571,20.108688,31.231125,6.543 622,565.10077,106.11365,30.257385,62.852478,6.499 622,-6.2143335,489.7366,18.533695,41.12863,6.346 622,-11.525002,479.95227,29.105091,61.422974,6.202 622,622.15533,476.57614,28.935425,67.66855,6.196 622,488.4589,211.82968,26.841644,72.74704,5.883 622,564.6072,213.27533,28.528442,80.17407,5.861 622,622.8749,-33.389553,26.837524,73.98884,5.744 622,340.8862,232.50854,32.359985,66.19739,5.575 622,528.7011,209.28612,27.744812,56.94127,5.5 622,8.083783,175.30118,28.119251,78.26207,5.499 622,569.3717,211.42236,53.627197,136.02808,5.429 622,-11.324696,-31.90921,29.529068,72.48872,5.349 622,-5.6415234,-17.929562,17.332884,43.11262,5.31 622,-21.39066,404.1212,78.31004,174.75412,5.164 622,582.773,413.38495,71.783264,174.97632,5.05 622,-72.468124,266.42975,199.80861,461.09003,5.036 622,545.8249,230.76271,46.17334,101.461044,4.997 622,627.2506,-18.823742,17.477295,47.450237,4.955 622,459.35242,151.3429,29.893738,71.9684,4.943 622,536.24854,310.80328,143.51404,341.0246,4.937 622,594.3088,-47.418686,44.20404,94.32846,4.907 622,603.2484,-58.451756,53.011353,133.36919,4.906 622,145.82602,211.4267,24.95111,40.39473,4.895 622,557.08936,20.277855,31.78418,84.83331,4.859 622,542.7598,217.04306,23.935303,47.531982,4.802 622,295.97958,211.85814,21.765717,40.98796,4.777 622,589.6763,215.31332,27.580872,57.518005,4.73 622,355.27844,224.83969,33.389526,71.18198,4.685 622,19.099709,179.97325,22.116684,56.3116,4.672 622,406.67334,171.18524,27.62091,74.38138,4.648 622,445.46667,233.54904,29.331787,69.55466,4.626 622,494.45044,229.34048,237.20483,513.19165,4.541 622,557.88586,93.12616,29.580688,62.167953,4.484 622,155.14607,214.148,29.352066,47.207535,4.394 622,22.64104,189.65808,26.276215,66.508575,4.392 622,472.11597,204.94771,34.723938,84.51402,4.351 622,589.59766,210.70654,50.73987,154.2229,4.349 622,523.8592,206.17334,49.269287,119.14484,4.333 622,463.6388,182.32138,25.870056,67.27255,4.305 622,575.2656,123.50086,24.899414,50.793694,4.297 622,618.6622,489.54953,20.791016,42.38034,4.276 622,533.9796,-32.932228,28.148499,71.33584,4.22 622,586.35297,-101.325714,75.26959,231.4172,4.214 623,582.97876,215.23569,27.256592,75.283844,36.539 623,575.0767,208.43942,42.633484,133.82101,34.896 623,463.083,191.3241,27.17633,73.22266,9.886 623,566.43695,210.43991,29.83435,77.91412,8.615 623,504.91104,191.75795,19.005035,40.537903,7.179 623,-17.597084,-64.604614,56.362694,148.71805,7.092 623,523.2889,195.13184,19.758118,41.1091,6.637 623,622.2674,-33.433327,27.42987,75.77469,6.534 623,274.77023,216.73552,19.76065,34.05078,6.533 623,626.42065,487.83612,21.010498,44.79364,6.267 623,385.35773,205.58882,21.104706,49.677643,6.194 623,-11.9376545,477.76437,29.374939,63.37857,6.049 623,613.3808,453.14856,38.924866,108.49658,5.766 623,-6.0684958,489.11026,18.314045,41.84018,5.739 623,525.6278,188.46951,27.762756,58.664566,5.704 623,515.3049,110.94303,29.342957,60.654427,5.658 623,613.1736,230.1917,36.151672,117.36363,5.604 623,596.3091,84.85829,30.900879,91.531235,5.532 623,-5.61047,-18.066647,17.337336,43.251465,5.461 623,561.4609,214.05557,22.887024,55.76715,5.317 623,536.0871,308.6201,143.74884,344.58072,5.293 623,-11.340124,-32.42005,29.62151,73.80871,5.262 623,220.37067,218.11797,16.665192,30.19432,5.196 623,597.07654,15.392929,32.786987,84.85457,5.083 623,-72.69136,266.15845,200.35564,461.8319,5.074 623,-21.574062,403.36105,78.64258,174.98245,5.031 623,593.3796,214.93604,29.200317,67.4852,5.016 623,532.504,23.441174,29.979614,69.26982,4.964 623,524.32336,200.90392,54.673035,126.734604,4.935 623,582.7757,412.11835,71.7569,176.10681,4.904 623,380.02377,204.30508,19.731476,40.171387,4.872 623,591.0253,220.21497,39.076355,125.24194,4.821 623,301.82803,212.3569,17.021088,28.655365,4.76 623,497.08377,179.51715,25.395111,62.827454,4.738 623,226.99683,223.37085,16.894241,28.895844,4.68 623,493.86798,229.00476,237.48712,515.1084,4.649 623,602.48846,-56.953705,53.67273,142.32655,4.604 623,585.49097,-106.15315,76.33533,243.09024,4.596 623,618.9487,490.22354,20.033447,42.049225,4.582 623,534.7039,198.29576,26.956665,60.33644,4.564 623,617.6441,87.86104,20.8349,59.926163,4.55 623,405.27133,187.63687,37.06662,76.32376,4.525 623,588.93445,103.012405,31.149231,94.86714,4.447 623,616.3014,15.140432,22.819641,62.69545,4.424 623,513.31036,194.25043,18.787659,36.162567,4.357 623,529.22485,269.45633,35.82373,65.29959,4.348 623,547.49097,227.03815,44.986206,108.39697,4.347 623,503.66162,110.814606,29.203735,64.635254,4.221 624,485.81104,209.51213,29.146545,70.93883,10.341 624,571.2852,189.27896,19.307312,43.00493,9.434 624,626.8438,489.67575,20.472717,43.438873,7.632 624,218.76329,223.17316,20.158066,28.625092,7.238 624,586.81067,191.40683,16.814087,37.169464,6.956 624,546.5726,189.5157,18.899902,39.77156,6.944 624,-12.026112,-42.278156,40.48841,102.48054,6.864 624,523.6177,199.38266,15.5512085,29.68396,6.383 624,594.49194,194.10458,16.597717,34.48761,6.281 624,-9.122616,463.78378,38.08184,93.2753,6.122 624,96.438515,216.66673,22.605179,47.963028,6.034 624,-5.459416,-17.54351,16.935038,43.403957,5.982 624,613.19916,453.50598,39.59674,108.494934,5.93 624,-5.4976535,191.75343,18.54468,47.55278,5.907 624,-6.049946,489.8251,18.368578,40.966583,5.882 624,443.05576,196.7024,20.061157,47.679153,5.821 624,563.22815,187.66202,19.846558,42.168045,5.661 624,622.2527,-33.46077,27.242004,76.310776,5.648 624,627.29913,-18.000328,16.99054,46.779003,5.637 624,186.48422,229.69012,19.241196,31.314209,5.581 624,411.9109,211.43478,15.9079895,35.977005,5.569 624,516.62164,196.05019,15.316589,32.24495,5.414 624,595.43097,-1.4116211,18.882446,36.071587,5.371 624,553.7043,187.24153,19.376282,40.651886,5.279 624,540.1662,194.02083,17.051025,33.296936,5.255 624,602.6887,-55.617695,53.37628,139.85031,5.239 624,-0.35561323,183.21924,24.489933,72.600204,5.194 624,436.83405,187.4943,37.573547,75.62204,5.133 624,-72.57864,265.08673,200.68591,462.5705,5.088 624,536.04846,309.6522,143.76147,343.7499,5.063 624,582.8503,411.57623,71.67572,176.86005,4.902 624,73.03685,144.3447,20.139656,40.438858,4.9 624,532.08154,188.55136,15.987976,32.6241,4.867 624,-40.22216,365.55817,110.53089,277.37067,4.839 624,-17.991356,432.85266,55.272236,144.43054,4.803 624,68.98679,201.81184,25.345634,59.910538,4.776 624,603.33563,-0.6029148,17.514282,34.728447,4.762 624,619.05334,492.0728,19.55658,39.675537,4.76 624,493.85587,228.55664,237.36783,513.9662,4.662 624,576.0135,190.81555,23.789429,61.530045,4.631 624,104.54309,228.30405,22.025246,41.17737,4.628 624,588.1576,-1.2926445,18.996399,35.294174,4.556 624,193.74084,228.97937,19.797958,32.65335,4.555 624,588.16656,-13.286934,30.686707,60.30547,4.497 624,202.78792,230.00343,18.83548,31.155075,4.496 624,-11.642537,246.90497,29.557766,70.27527,4.49 624,516.5868,219.04288,39.545166,98.44556,4.484 624,211.60336,229.42378,18.967041,30.461441,4.474 624,586.12,-105.51164,76.050415,241.95662,4.45 624,233.82143,223.92747,19.951065,28.079712,4.42 624,388.22998,227.91347,17.971954,31.419907,4.391 624,508.0813,185.25931,18.250732,39.23709,4.374 624,18.563147,210.18056,38.596786,85.65141,4.368 624,536.17566,188.73433,25.973267,53.63887,4.345 624,619.4485,-17.222614,17.564514,42.657997,4.329 624,91.52821,208.54361,20.738998,41.433563,4.324 624,10.655279,217.22572,18.642254,42.579544,4.277 624,473.6855,195.77232,34.088562,81.47923,4.24 624,-4.561081,214.58954,16.340654,43.575134,4.228 624,597.7929,-33.12506,28.751099,70.70408,4.215 624,421.81058,199.43536,35.62262,72.51355,4.21 624,411.68396,224.84349,18.83728,41.413193,4.194 624,614.9888,343.2778,25.379883,71.037476,4.192 624,-6.1674047,203.76414,35.99306,98.48256,4.187 624,596.02563,115.17671,18.18103,30.600555,4.172 624,452.5464,217.46498,38.688538,97.37468,4.136 624,425.55347,196.40173,19.696136,46.881012,4.104 624,489.8082,-180.15048,236.26651,418.28976,4.038 624,-6.295571,261.19336,20.00815,46.252686,4.01 624,3.2414036,-15.292607,16.255316,39.93399,4.003 624,282.8317,229.27654,19.327454,34.388565,3.999 624,-1.0176158,-61.044743,56.79078,146.12932,3.995 624,281.65125,207.835,21.008514,39.641434,3.975 624,226.06995,229.60344,19.05722,28.97139,3.973 624,179.72511,229.06642,18.653305,31.14827,3.914 624,15.585984,199.02654,25.662281,63.53401,3.898 625,435.18597,220.22525,17.844269,36.93155,38.596 625,45.127483,211.78568,28.643375,58.182373,22.303 625,386.73138,228.36092,19.272308,32.74092,8.646 625,52.44179,195.98909,30.529263,66.18327,7.361 625,-5.9667206,489.39417,18.267117,40.69104,7.246 625,627.0705,-16.334377,16.651367,46.018555,6.929 625,412.83582,231.3548,16.913208,30.77893,6.762 625,-11.328695,479.2465,29.034689,61.73105,6.759 625,-4.9714155,-16.423424,17.557816,44.22682,6.245 625,622.2623,-33.6214,26.596985,77.1254,6.229 625,-10.312546,-32.727238,29.359346,76.76993,6.102 625,613.245,453.63184,39.1687,108.00653,5.999 625,626.9156,488.06488,20.44458,45.318848,5.995 625,602.5472,-55.083973,53.297913,137.74484,5.788 625,-17.01143,-61.873005,56.5242,143.55125,5.746 625,618.3547,4.6975822,20.171509,43.24981,5.702 625,1.3293982,238.48761,20.524986,42.583008,5.649 625,500.70367,205.4595,34.26178,99.25366,5.603 625,235.46481,218.0415,17.60466,31.05066,5.585 625,419.06836,224.6939,17.137146,34.261612,5.556 625,35.939888,214.31406,23.398815,47.29251,5.353 625,242.87799,217.25911,17.57779,28.971436,5.319 625,619.79865,-14.410604,16.584045,41.231476,5.277 625,348.08496,226.11671,17.340424,30.924026,5.118 625,449.90112,221.88626,21.57193,41.741394,5.107 625,286.76773,210.4889,24.111511,40.7928,5.041 625,-72.67206,266.4809,200.19197,461.5959,5.037 625,39.963036,181.51155,31.095284,71.55757,5.021 625,62.50336,216.98814,22.328808,47.719284,4.995 625,-21.283216,404.29486,78.25795,174.53497,4.99 625,561.8602,18.920929,20.153381,60.129623,4.962 625,64.17314,194.09431,21.313377,43.454987,4.898 625,583.0142,412.0692,71.49762,176.80396,4.884 625,536.22876,310.3238,143.53455,342.08405,4.825 625,496.27795,195.07193,28.02124,72.60416,4.822 625,-5.2787614,234.26544,18.262384,39.90857,4.782 625,528.1645,211.06943,26.104431,64.88663,4.663 625,585.76184,-101.8096,75.60486,237.53159,4.622 625,66.30377,161.51573,31.931892,66.741516,4.603 625,169.86487,232.03998,20.44069,29.206543,4.594 625,617.77545,170.87735,21.046082,55.866165,4.549 625,-4.83718,192.55846,17.272816,41.537506,4.534 625,615.027,16.018482,23.571777,79.71207,4.532 625,618.6161,192.5893,18.787964,51.06491,4.529 625,585.19476,179.45609,22.06897,42.07631,4.524 625,2.9709053,491.68286,17.885027,38.178772,4.51 625,-11.036635,228.70604,28.988426,64.80766,4.456 625,436.7111,216.90556,27.733795,52.869095,4.438 625,535.7781,216.70677,29.2146,65.482834,4.422 625,494.00455,227.49258,237.41708,515.5193,4.418 625,514.6447,200.81137,18.649841,48.497528,4.397 625,161.1859,231.18262,21.577225,30.108551,4.368 625,2.4050708,-13.948843,17.19184,41.885708,4.314 625,412.03198,214.67238,16.307678,33.55948,4.285 625,-4.8078756,210.31805,16.706783,40.072205,4.28 625,589.80554,-34.548542,51.612915,142.24069,4.264 625,568.6526,0.64393616,22.651245,48.21686,4.238 625,340.19,209.99115,17.825806,37.523315,4.233 625,55.41034,163.3354,25.671967,46.92888,4.23 625,527.581,-34.160053,27.614807,78.10504,4.222 625,57.001534,172.59761,33.767113,68.98897,4.203 625,8.19516,229.34338,20.229721,35.612915,4.2 625,36.90217,227.61958,32.855484,55.009995,4.199 625,203.39354,229.8336,18.710068,29.480057,4.187 625,1.378988,227.76834,32.33456,60.38733,4.182 625,393.69583,234.77933,19.534424,30.998383,4.179 625,607.1262,166.32959,48.487915,125.70343,4.145 625,542.1349,-9.29472,50.706238,119.76532,4.126 625,210.45969,228.67355,19.244308,29.865143,4.125 625,404.05597,230.8939,18.038147,32.02144,4.105 625,3.1008184,92.5892,32.143505,73.54541,4.088 626,465.68466,215.05672,19.575592,42.213608,65.95 626,406.3586,236.11124,21.871368,42.147644,17.216 626,162.16072,210.53207,21.777756,43.36284,13.228 626,595.6473,191.6075,19.185547,49.990906,9.578 626,18.442635,180.35928,29.474678,67.12161,7.562 626,626.9459,488.09412,20.142029,45.22516,7.349 626,-6.0804176,489.07874,18.623024,42.002136,6.871 626,-17.836817,-66.362335,56.63788,152.98969,6.759 626,-11.536623,478.22882,29.14337,63.450012,6.648 626,626.6603,-19.25858,17.635437,50.677185,6.406 626,622.53076,-33.22353,26.114014,78.39075,6.222 626,0.6414461,169.6939,27.680405,76.53383,5.993 626,600.9496,184.65681,19.811035,49.49385,5.9 626,617.7491,165.91304,20.07019,52.12314,5.871 626,32.05691,192.53131,23.223347,45.150772,5.788 626,612.95825,454.31552,39.25122,108.19925,5.786 626,282.84918,201.38593,28.99762,56.603027,5.742 626,-5.7877445,-18.118322,17.529972,43.180428,5.376 626,583.2148,411.71756,71.19507,176.35898,5.21 626,-11.324289,-32.36652,29.53618,73.26208,5.129 626,603.2453,-56.826515,52.822693,138.08377,5.105 626,-21.498013,403.72455,78.30981,174.74146,5.05 626,-72.60834,266.58655,200.02791,461.53247,5.007 626,589.2325,77.756714,29.880005,82.073425,4.907 626,610.20105,169.64246,20.099365,49.658554,4.792 626,233.47807,213.57071,20.663803,33.927338,4.782 626,536.49133,310.69098,143.54932,341.2824,4.746 626,561.5397,188.78947,19.240173,40.47957,4.667 626,494.00327,227.63086,237.37808,516.2285,4.609 626,566.5948,184.40869,24.262207,55.34987,4.608 626,618.7925,490.0538,19.983093,42.391327,4.591 626,578.23676,175.19772,18.33142,39.619995,4.583 626,602.8564,165.82669,20.415222,44.63138,4.576 626,169.10434,223.45178,20.138443,36.07312,4.532 626,618.7926,-19.57494,18.515015,49.895386,4.532 626,-5.0881243,214.75368,18.369053,45.2321,4.402 626,570.3152,175.27974,18.70111,42.41089,4.389 626,156.78624,220.71904,30.085709,54.31334,4.373 626,176.67822,207.98029,20.19983,37.560974,4.285 626,554.7959,195.5615,18.96051,38.401093,4.277 626,39.590782,201.24095,28.159775,63.45128,4.257 626,119.739395,238.05373,24.888733,40.42418,4.204 626,394.50272,205.00267,18.42865,42.29326,4.164 626,241.01953,206.59042,20.524628,35.695496,4.163 626,454.81235,203.90868,35.51117,66.44081,4.16 626,594.5604,174.4,20.14331,43.402756,4.112 626,520.96436,196.98961,20.237732,32.744537,4.105 626,-10.939444,158.9037,31.232359,70.06505,4.095 626,-5.414872,183.15361,18.792778,47.557373,4.094 626,605.00433,87.21285,30.1297,75.47056,4.092 626,270.85675,209.92259,33.4328,58.418808,4.08 626,613.81476,133.10562,34.22046,104.14386,4.027 626,2.4486713,490.4047,19.054184,39.8143,4.009 626,594.5919,-47.97615,44.381226,101.598175,3.983 626,585.85974,-104.84977,77.015015,240.50308,3.981 626,56.57094,219.35492,21.673111,47.36847,3.98 626,292.2978,485.3234,31.268646,58.0643,3.978 626,364.89517,210.30798,14.212006,32.52333,3.939 626,106.15291,216.03693,21.089493,42.55002,3.935 626,41.971436,194.7963,22.021637,42.47438,3.932 627,521.77527,214.91325,28.054504,59.95961,57.792 627,95.666504,226.89322,27.443909,46.256256,18.679 627,37.226562,209.53207,28.071503,58.146545,12.346 627,561.5179,195.37697,18.810425,33.963486,8.237 627,-17.683208,-66.67993,56.34578,152.75865,6.577 627,626.69214,-18.610775,17.623962,47.803356,6.544 627,626.6825,488.1201,20.352661,46.167877,6.436 627,-6.107244,488.55478,18.539297,42.118256,6.398 627,453.70013,267.93774,23.192932,38.70291,6.377 627,-11.780323,477.844,29.527838,63.113586,6.232 627,554.9346,191.88162,18.391968,31.307465,6.191 627,595.95667,192.02364,17.121521,36.5894,6.171 627,621.2094,-32.924244,28.327454,75.74177,5.919 627,23.068909,197.6333,28.202194,65.72638,5.844 627,-5.7918315,-18.118,17.552372,43.00505,5.666 627,273.65067,206.41649,31.252502,55.189102,5.612 627,612.8817,457.301,38.85034,104.36722,5.463 627,91.03247,202.89468,18.1381,42.698303,5.426 627,-11.3111925,-32.45241,29.517067,72.846886,5.369 627,583.8495,412.79364,70.97284,175.8393,5.304 627,602.71265,-56.107277,53.336853,133.2912,5.22 627,-17.543142,439.0153,54.863403,137.3768,5.211 627,332.9245,218.7331,30.556183,63.793823,5.205 627,-72.93832,266.37708,201.19702,461.46838,5.151 627,209.49934,211.63705,21.331665,34.951782,5.114 627,242.70154,208.97629,18.686127,31.456558,5.102 627,379.03598,205.37653,17.683105,33.655975,5.053 627,-39.734837,368.9541,109.81389,274.59497,4.909 627,234.06503,207.01138,19.729355,33.413666,4.853 627,88.280136,199.83192,27.361267,65.8745,4.805 627,587.6577,198.38774,17.447327,33.72101,4.755 627,77.4319,173.30717,28.394547,68.78154,4.739 627,-4.3076673,154.11441,16.387474,47.087738,4.645 627,535.6021,310.42554,144.92896,341.8766,4.591 627,594.07214,-44.40471,45.265564,94.23078,4.551 627,-0.20246863,204.92722,24.727562,68.23483,4.55 627,618.2578,-18.653505,19.081543,46.703964,4.545 627,337.03262,201.24246,20.841675,44.11145,4.524 627,76.78752,226.35214,33.019363,60.946228,4.519 627,618.47766,489.8848,19.923157,42.956573,4.487 627,494.02344,228.28644,237.36804,515.1208,4.468 627,84.01671,190.08673,18.4572,45.36261,4.452 627,386.8211,212.5908,18.84729,40.665253,4.428 627,261.30347,211.65346,35.714966,60.09459,4.424 627,370.89447,202.5568,18.52185,37.410202,4.311 627,601.9344,184.37463,18.13623,37.91382,4.294 627,586.2891,-100.06203,74.53485,233.1029,4.273 627,556.6548,193.41803,28.394775,61.119995,4.231 627,-14.489709,187.17152,47.66972,131.87285,4.194 627,75.33212,180.16112,20.5831,48.03688,4.157 627,403.45334,200.90315,17.084564,39.67325,4.147 627,490.58292,-11.8182955,17.166473,37.523685,4.146 627,482.7827,-11.827401,17.075134,37.219448,4.135 627,2.4085574,490.01263,19.041035,40.162476,4.105 627,579.2356,198.00415,18.682556,36.527817,4.104 627,33.727985,199.59772,22.83303,54.54628,4.097 627,104.52194,215.82222,21.134506,40.149307,4.066 627,292.3375,484.5652,31.593933,58.960083,4.06 627,610.9191,189.56233,19.467957,44.287903,4.048 627,106.50362,227.61526,30.744003,59.225952,4.031 627,499.81085,-10.498131,31.844116,60.811306,4.022 628,435.34668,209.07968,21.998749,56.601288,46.931 628,515.2434,212.09808,41.961243,103.86035,7.979 628,425.79135,209.87901,25.31659,62.83647,7.743 628,622.5498,-33.354065,27.177856,76.55357,7.452 628,626.97644,488.62747,19.936523,45.185944,6.992 628,271.87015,198.0065,22.142944,43.25122,6.891 628,-17.774403,-65.85317,56.42051,152.76399,6.655 628,267.89252,205.16055,32.272552,53.57422,6.606 628,533.93427,38.14712,30.861938,70.451355,6.457 628,-11.459797,479.06543,29.14828,61.595337,6.438 628,225.76949,200.81895,19.746506,32.356674,6.425 628,330.29446,214.28525,34.644745,79.886505,6.162 628,234.92566,202.63889,18.266953,29.02214,6.105 628,523.49866,179.82901,28.551025,77.08713,5.986 628,574.4423,31.341679,32.01831,73.466446,5.912 628,-5.9550076,489.9653,18.090683,40.986847,5.673 628,500.9578,179.51886,29.40683,62.98723,5.648 628,-5.688841,-17.960253,17.422356,42.786674,5.629 628,613.0089,456.71198,38.633484,104.89105,5.43 628,441.29626,202.06888,19.393402,40.447083,5.377 628,217.14554,200.83257,20.905472,33.672165,5.318 628,556.48,56.84874,29.57965,68.57146,5.278 628,602.48376,-54.7925,53.385742,135.56491,5.221 628,-11.273647,-32.05008,29.34723,72.416405,5.2 628,416.52652,205.48326,24.344635,62.523148,5.165 628,583.3773,412.7594,71.20026,176.51624,5.069 628,610.7813,177.52977,21.06836,49.68611,5.032 628,586.99817,33.85689,31.853455,79.99806,5.0 628,-21.149166,404.4552,78.176895,174.34546,4.991 628,-72.587425,266.77206,200.21832,460.87625,4.969 628,445.55557,208.52179,25.866882,68.913574,4.923 628,615.792,143.89679,23.096008,77.73694,4.91 628,497.4359,175.54433,54.338196,116.24919,4.9 628,618.7809,489.8536,19.412354,43.01248,4.863 628,585.30023,-102.60114,76.02942,237.83044,4.806 628,477.3529,168.24667,50.91089,120.10983,4.78 628,0.41961908,193.88554,23.774488,43.336914,4.685 628,335.97733,193.55289,23.806,48.498993,4.616 628,224.77602,212.13081,23.428116,38.575363,4.578 628,536.27264,311.18268,143.33862,341.92456,4.578 628,564.9742,26.935772,29.738342,69.51517,4.563 628,431.48465,220.09778,28.741486,70.86279,4.496 628,490.10422,-181.1954,235.61508,422.6085,4.474 628,163.39058,193.729,18.27568,35.81874,4.471 628,533.2415,-33.50798,29.777344,69.449905,4.405 628,347.03485,232.60002,33.336426,73.44905,4.376 628,211.5706,196.97823,31.115494,53.968994,4.365 628,-1.151048,232.61096,24.014898,44.993378,4.357 628,520.6077,181.8909,55.122375,114.69913,4.334 628,217.06293,211.04338,34.67163,58.84697,4.323 628,493.99017,228.68921,237.07318,514.9758,4.323 628,515.163,-16.608223,33.526184,63.413784,4.251 628,-1.7828119,130.09566,26.844194,73.38957,4.21 629,553.2109,210.44688,22.457397,58.91182,14.974 629,154.08118,198.8515,18.22528,36.841843,11.461 629,277.26688,202.92729,30.43637,57.84059,8.359 629,622.5107,-33.7587,26.666931,75.80298,7.188 629,385.31488,188.66112,22.052551,59.239655,7.126 629,-17.81475,-65.15097,56.41316,151.34335,6.797 629,626.666,488.69165,20.32837,44.5365,6.435 629,340.65082,227.36075,32.20581,67.96832,6.391 629,-11.696093,478.01605,29.58253,63.12018,6.253 629,-5.9750276,489.66476,18.17973,41.79019,6.199 629,534.5695,151.4205,29.768738,78.15134,6.167 629,567.4487,213.3489,20.922058,48.730133,6.068 629,437.28455,191.36725,27.710815,71.19919,6.003 629,450.89462,193.53561,18.65512,40.74391,5.911 629,281.55118,200.2044,21.637665,39.061066,5.747 629,-5.5216527,-17.447428,17.186563,42.156517,5.646 629,612.9176,454.0565,39.168518,107.95657,5.589 629,557.91284,193.90936,27.280762,70.933105,5.501 629,553.1515,195.18814,20.992737,46.90561,5.366 629,368.28693,189.71503,22.344788,52.14653,5.342 629,603.3393,-55.725525,52.90576,133.19751,5.176 629,547.11597,212.59258,39.51532,104.71983,5.168 629,-17.823933,436.1232,54.92668,140.84995,5.152 629,-11.357564,-32.002754,29.486958,72.241234,5.126 629,260.34692,204.51215,34.220764,57.42108,5.12 629,242.91791,202.4279,18.41986,29.812378,4.997 629,506.63498,212.00735,32.497406,71.77124,4.983 629,618.4777,-9.248608,20.720947,47.441944,4.942 629,581.4674,163.41255,27.789612,69.127686,4.923 629,583.1312,411.08237,71.246826,177.6376,4.879 629,-40.04635,367.33112,109.99123,276.8344,4.859 629,458.0861,195.70686,18.030884,36.013565,4.844 629,618.8496,490.81528,20.141357,41.515167,4.816 629,-72.82837,266.11066,200.41664,461.362,4.815 629,382.97455,182.29648,48.85211,116.650696,4.813 629,536.2626,310.51,143.20184,343.27246,4.777 629,378.84048,187.06203,20.833313,47.982742,4.758 629,234.25974,201.90321,19.181885,30.079422,4.725 629,455.00613,191.59158,34.276337,83.30777,4.573 629,252.1271,198.23969,15.970734,28.549057,4.474 629,489.27747,-180.90265,237.50848,421.032,4.428 629,493.95,227.96149,237.44958,515.01385,4.425 629,594.60535,-46.32261,43.927917,96.66233,4.384 629,518.51416,149.8123,27.597046,74.34938,4.359 629,470.49762,191.2292,34.15918,83.6768,4.337 629,586.3883,-105.77897,75.8938,240.0877,4.335 629,351.46143,171.1298,50.52954,113.27309,4.327 629,586.958,221.85374,19.990723,34.784927,4.322 629,493.53992,207.18707,29.171814,66.09064,4.308 629,581.6695,172.05537,37.755188,93.20775,4.308 629,181.06384,195.69237,14.890991,30.559433,4.276 629,292.35806,483.0386,31.079102,58.93405,4.181 629,553.26624,260.8565,32.26117,65.69946,4.173 629,551.4922,114.13512,22.713806,50.97249,4.165 629,403.23383,207.20383,32.52939,70.33621,4.153 629,547.5822,165.59518,29.529358,73.00961,4.147 629,160.06177,209.84985,21.129166,33.892166,4.12 629,148.58524,203.21667,31.250763,56.52594,4.094 629,288.86554,203.27724,34.801147,56.67778,4.093 630,138.72202,198.90512,21.690338,40.16121,18.869 630,285.0151,198.0108,30.58142,60.4859,7.7 630,133.68066,202.83131,30.856354,56.773666,7.051 630,481.3713,200.72244,18.200104,34.931732,6.989 630,363.58484,193.01326,30.34671,64.84877,6.71 630,-18.05958,-65.07736,56.774956,151.20497,6.678 630,622.6488,-33.314274,27.240479,75.907486,6.647 630,602.421,-56.445774,53.764282,136.81496,5.851 630,526.8494,209.9963,31.258728,88.509186,5.77 630,-5.749216,-17.90353,17.523346,43.2056,5.741 630,506.28384,202.44812,18.895538,38.68222,5.593 630,-9.280491,464.233,37.82522,92.99765,5.569 630,450.42386,189.272,18.313995,45.18042,5.543 630,555.8422,182.45851,54.361877,119.223434,5.525 630,-11.300711,-32.31248,29.499664,73.13213,5.522 630,613.259,452.91003,39.40509,109.69031,5.449 630,627.08673,-19.000374,17.782043,47.369312,5.348 630,-6.8036995,489.3003,19.400673,43.680603,5.34 630,450.10654,209.86588,30.947845,74.141815,5.289 630,373.58618,177.82996,30.310242,71.46692,5.25 630,-18.782185,433.9867,56.489166,140.82275,5.221 630,626.27954,486.94473,21.62201,47.266205,5.214 630,606.1248,-33.504345,28.386536,72.934555,5.098 630,489.50314,203.53189,18.822357,34.628403,5.098 630,234.39543,206.1853,34.39543,54.593384,4.974 630,-73.37804,265.4354,200.73877,462.05032,4.907 630,-9.862486,179.54889,28.113123,68.973465,4.905 630,528.99426,196.14984,49.593506,126.13269,4.891 630,582.9962,411.4149,71.50012,176.37418,4.863 630,186.66211,195.65674,18.258514,31.70166,4.834 630,-39.47979,368.903,109.539375,272.46973,4.81 630,-4.8839216,156.93782,17.351372,40.8161,4.796 630,388.7326,176.5729,28.182922,72.01962,4.792 630,-4.4792094,173.33762,17.298363,39.951447,4.778 630,484.3758,203.76796,38.12738,77.63536,4.742 630,536.22205,310.1315,143.33728,342.82175,4.735 630,492.64206,5.6969643,16.0018,29.740425,4.677 630,443.6287,-12.671169,16.228607,36.207508,4.672 630,332.35266,189.96332,30.059418,58.28534,4.614 630,307.3184,213.16371,33.811005,57.566757,4.581 630,469.0127,198.51376,38.172394,70.945435,4.578 630,585.84906,-106.08111,76.58539,241.5033,4.571 630,498.89502,203.72801,19.186707,36.250885,4.52 630,613.78186,180.59225,26.658264,72.15115,4.512 630,249.38022,204.81174,35.841675,54.588226,4.5 630,171.16873,196.33115,19.560104,34.28662,4.498 630,596.5777,-16.947037,30.99115,64.40132,4.489 630,451.81073,-11.684356,16.003418,34.8972,4.463 630,242.36436,201.84055,19.841599,31.174576,4.456 630,446.16254,194.76813,26.320831,65.50015,4.454 630,290.28305,191.93292,19.943298,38.621017,4.446 630,349.89395,197.63681,34.379883,62.477295,4.435 630,177.92664,194.7454,19.207397,32.298355,4.404 630,494.5407,227.98734,236.41846,515.2103,4.403 630,-15.148458,185.21153,48.59473,131.61128,4.366 630,460.073,-10.957945,15.1501465,33.487213,4.351 630,621.34174,366.08633,16.17511,37.534485,4.302 630,435.29773,-12.442377,16.558533,36.20359,4.265 630,579.9862,206.08124,40.20935,103.55084,4.242 630,422.03534,187.22908,25.280914,63.853683,4.235 630,489.48898,-181.10059,236.97269,419.87582,4.187 630,273.5847,210.49529,24.666199,44.719772,4.182 630,619.03326,-6.0645876,19.88861,42.984745,4.164 630,427.219,-13.416057,16.29007,36.667755,4.137 630,153.36969,195.4007,19.333878,31.993683,4.134 630,-5.2734966,197.43547,18.489223,46.493805,4.114 630,484.67358,5.6817036,16.26117,29.337156,4.096 630,588.6373,166.17143,16.076782,28.719818,4.059 630,1.7156458,74.596306,20.114468,45.891533,4.037 631,470.89453,177.3866,22.340088,51.348022,13.91 631,117.9169,173.95229,24.780304,39.59845,8.199 631,422.0998,153.69809,24.88269,78.40552,7.72 631,469.9964,167.3434,33.995544,76.84212,7.431 631,550.5984,180.66222,22.264648,43.182922,7.405 631,-17.166784,-64.83572,55.748764,148.91232,6.913 631,506.89404,64.863,29.247742,86.43397,6.492 631,-11.471338,478.62845,29.561235,62.13907,6.227 631,-5.9005117,489.4544,18.18211,41.44934,6.192 631,506.25137,195.36884,32.230682,76.752625,6.137 631,626.89825,487.8893,20.582886,45.681427,5.756 631,627.486,-17.585583,16.95404,47.58328,5.533 631,617.5179,195.09242,20.104858,44.242157,5.477 631,601.9613,-55.892082,54.190186,141.542,5.468 631,406.30032,153.4866,29.87799,72.28519,5.437 631,-5.451446,-17.252205,16.83007,42.926758,5.431 631,287.61038,178.58336,31.293701,63.436325,5.356 631,337.54855,168.78255,33.183075,62.419113,5.303 631,613.31946,454.51556,39.037415,106.931274,5.221 631,155.84714,175.65654,32.898926,64.41354,5.186 631,-11.496797,-32.502964,29.72026,74.372734,5.177 631,583.4258,412.59027,71.02783,175.84467,5.146 631,-21.418047,403.70184,78.60221,175.07745,5.125 631,603.6442,206.01459,20.039795,45.14435,5.093 631,623.22217,-33.1224,26.219727,77.34377,5.046 631,296.8073,168.86871,31.951477,65.89398,4.947 631,260.06604,168.97745,18.159485,37.396103,4.928 631,-72.61025,267.12302,199.68803,458.79642,4.919 631,391.60977,153.67084,28.27301,71.990295,4.851 631,372.30716,177.68881,30.433594,61.797424,4.819 631,266.72205,168.41924,19.46054,38.5907,4.797 631,251.38512,177.86269,20.048111,37.5829,4.784 631,618.6817,177.13008,18.297913,41.395752,4.649 631,495.15454,199.54988,31.021729,74.0746,4.563 631,226.28609,174.93512,19.701004,32.318832,4.559 631,536.43915,310.7376,142.65509,342.81958,4.555 631,548.72925,168.59396,38.046326,73.91972,4.493 631,485.5536,181.07288,27.34851,75.42139,4.46 631,243.13168,177.84204,18.991608,33.59871,4.396 631,616.2356,143.27382,23.183838,77.26984,4.357 631,-6.0449686,198.80136,18.182625,41.199295,4.304 631,546.51416,174.35193,19.756409,41.599945,4.299 631,493.63705,229.44952,237.3182,514.92395,4.297 631,326.82434,166.38318,30.872955,62.401154,4.217 631,609.49176,201.09392,20.845581,45.12953,4.2 631,488.97217,-179.45967,237.6195,419.91187,4.194 631,-8.642821,187.24907,36.954746,94.40083,4.168 631,234.51582,176.82066,18.749115,31.981506,4.158 631,490.53186,160.71875,19.250916,39.51123,4.128 631,585.966,-110.13648,77.561584,248.28381,4.124 631,-3.770826,157.05371,15.289662,39.36357,4.117 631,-16.1198,125.98316,50.555653,135.89417,4.113 631,449.64398,156.28935,22.956268,61.152725,4.108 631,260.64194,171.91254,39.444794,92.08441,4.064 631,456.09662,152.7472,36.36844,80.07483,4.048 631,534.37195,174.03947,37.923645,78.03288,4.024 631,-6.447591,232.15051,17.472427,36.476044,4.005 631,513.24146,199.06467,41.88025,97.194855,4.001 631,539.4326,184.01735,21.128296,38.826218,3.96 631,2.5627441,491.21957,18.423443,39.24936,3.927 631,547.19336,199.49266,41.84265,99.73375,3.926 632,558.5001,217.35797,21.22461,55.647827,25.007 632,96.464584,212.1131,24.966156,44.669586,17.543 632,474.31195,192.59871,28.756348,88.11113,12.369 632,568.0174,220.34372,21.790771,53.770172,10.83 632,576.9268,220.47044,20.440002,52.605057,10.648 632,355.78705,134.53568,29.98108,80.73125,9.502 632,552.38043,212.09546,33.283264,80.344086,7.782 632,611.6798,-48.45821,40.148438,102.839554,7.761 632,463.24133,192.12863,30.028473,81.799774,7.555 632,585.68085,215.10999,19.663635,49.524445,7.19 632,-18.216877,-65.71465,56.736446,150.40187,7.019 632,626.861,487.35492,20.429626,45.945435,6.64 632,104.86563,207.62099,20.194183,30.537079,6.098 632,-6.1362915,488.92224,18.607298,41.237305,6.039 632,0.50494194,211.0483,23.880547,70.909225,5.647 632,613.0956,455.01642,39.039307,106.09271,5.6 632,-9.027233,463.83038,37.776886,93.45807,5.518 632,627.0136,-17.488949,17.001892,48.24914,5.512 632,463.5517,194.06389,50.46649,124.08125,5.444 632,593.91364,215.93861,19.562683,45.640854,5.427 632,-5.484132,-17.242498,17.138313,41.967876,5.358 632,595.2564,-43.616646,42.3963,96.11125,5.243 632,571.17456,205.5326,18.609924,47.414078,5.116 632,533.778,213.18636,28.479553,61.501877,5.09 632,614.6415,26.294746,24.42035,74.36442,5.044 632,583.0574,412.4635,71.5365,176.20685,5.031 632,-72.866936,266.18393,200.79123,460.90103,5.016 632,536.3764,309.57214,143.30377,342.61694,5.008 632,580.2329,204.62732,19.319214,45.69586,4.95 632,-11.299936,-32.158447,29.461393,72.59845,4.94 632,586.3292,-100.01181,73.81976,236.24832,4.931 632,-21.628714,402.31918,78.609955,175.37033,4.92 632,620.21564,-1.4457245,17.567322,40.65793,4.884 632,582.7483,205.38089,32.37097,84.62158,4.839 632,565.6763,207.00333,32.519165,80.391266,4.782 632,380.52582,210.98036,32.558594,63.939743,4.655 632,525.66327,204.43939,27.580994,61.22046,4.614 632,273.5064,211.95349,22.09851,42.33722,4.607 632,615.3147,203.31775,22.92743,70.666504,4.533 632,494.101,228.80777,237.44843,514.6627,4.485 632,58.381332,209.97258,34.78533,53.110092,4.381 632,339.79706,219.10141,35.671875,64.83859,4.365 632,619.0673,489.81058,19.327698,43.27603,4.354 632,85.45744,202.18039,39.957596,64.43436,4.352 633,571.956,164.89584,46.526794,153.79611,15.186 633,617.49536,206.76227,20.515259,60.707,14.426 633,47.531757,206.82063,33.297176,58.0063,10.474 633,473.0202,115.83046,22.06482,53.94345,9.556 633,611.1645,-47.798454,40.740723,100.46594,7.432 633,-5.612191,489.31885,18.035557,41.47827,6.959 633,347.84283,132.97922,31.906036,85.14754,6.359 633,627.1932,-20.152958,17.783264,49.894665,6.151 633,-9.078286,462.9052,37.832634,94.747986,6.131 633,-17.690708,-66.06042,56.077404,150.23549,5.925 633,626.93207,488.1941,20.302368,45.397705,5.891 633,573.9244,196.81145,29.821777,95.8253,5.665 633,-5.753472,-18.042624,17.52357,42.885033,5.66 633,585.651,186.94327,47.57556,155.05493,5.357 633,-11.254515,-32.346607,29.447805,72.83866,5.349 633,624.70233,213.16966,19.011536,51.8658,5.336 633,613.5973,453.7458,39.003113,107.76361,5.332 633,144.04228,198.76125,22.292847,42.24643,5.225 633,612.02405,156.6407,33.14435,118.561356,5.078 633,-72.480286,267.1426,200.41544,460.26987,5.003 633,-21.53212,402.1711,78.30835,175.88242,5.001 633,583.3204,412.54324,71.20447,176.05453,4.927 633,613.71545,211.13069,34.182007,122.28343,4.912 633,421.13257,248.9436,28.985046,59.667603,4.854 633,536.6308,309.66217,142.24457,342.9156,4.85 633,598.0396,-24.462143,38.208313,88.21806,4.772 633,531.7209,191.73953,41.56671,103.51126,4.704 633,525.0567,66.44686,33.89032,88.16679,4.652 633,621.0587,34.060513,26.706543,80.68176,4.6 633,-4.292466,315.97278,15.218562,37.69989,4.546 633,601.9374,206.37143,21.61676,66.93106,4.529 633,81.16482,206.16096,21.721298,30.481873,4.527 633,618.6488,-19.64759,18.539246,48.853855,4.516 633,586.54346,-101.545456,73.86694,233.94487,4.481 633,-0.84368587,234.15114,24.70865,45.840927,4.384 633,618.5416,489.81992,19.796875,43.435883,4.369 633,605.97327,26.410816,30.390015,75.857895,4.361 633,479.20895,109.44363,22.661438,46.24032,4.348 633,266.3698,212.9801,19.694397,37.027542,4.33 633,493.30167,227.71863,238.2352,516.59375,4.313 633,444.60086,223.04495,34.752716,69.2048,4.243 633,548.0441,204.56465,29.96289,71.63811,4.219 633,226.62137,214.72025,18.397064,29.532654,4.197 633,405.83038,240.82507,31.905151,65.12433,4.192 633,218.72694,213.65094,18.927078,31.597687,4.19 633,488.70895,-175.39194,235.96176,416.13394,4.043 633,542.7736,170.05241,29.595825,65.04225,4.029 633,153.24695,199.58351,20.394577,39.923615,4.017 633,162.31413,196.56122,18.924591,36.77231,3.948 633,76.78783,202.44897,30.69632,48.927094,3.931 633,534.91516,77.38043,34.791504,90.27289,3.918 633,130.62033,196.91049,23.033432,43.085663,3.864 633,185.10489,209.49857,21.164368,37.904495,3.846 634,534.3998,160.42021,28.953247,85.7997,8.688 634,337.35498,192.72882,19.713257,45.126907,7.498 634,627.0197,488.3921,19.83197,45.2464,7.026 634,622.31335,-34.16897,27.656006,75.23794,6.288 634,-2.4108672,225.13635,24.700018,53.33139,6.175 634,-17.74625,-66.37023,56.280617,151.07195,6.112 634,626.9714,-19.287241,17.998169,47.38762,5.977 634,-5.837599,489.33807,17.961086,41.870056,5.915 634,115.60048,202.79381,20.057358,37.989044,5.852 634,602.45276,-55.636456,53.29358,137.35973,5.744 634,-9.16127,462.57132,37.949127,94.88309,5.698 634,-5.806224,-18.194542,17.603857,43.03228,5.637 634,528.91656,65.50142,22.863098,49.179886,5.473 634,533.47925,61.299656,28.69812,67.03438,5.441 634,613.069,456.82397,38.50818,104.069336,5.417 634,-11.302047,-32.406517,29.549679,72.92919,5.382 634,382.0227,209.63611,29.71112,58.704834,5.31 634,167.65793,212.27339,22.422028,39.87117,5.26 634,618.9743,490.1904,19.097473,42.34909,5.128 634,583.43414,411.50864,71.20648,177.54349,5.009 634,620.0687,345.06445,16.97522,45.0347,4.992 634,619.1283,-19.511702,18.595703,44.636887,4.985 634,-72.41527,266.91882,200.29457,460.53143,4.97 634,-39.576603,366.8425,109.67981,276.2969,4.967 634,540.88306,183.66316,29.056213,81.21309,4.918 634,385.54968,197.03984,20.630737,51.120865,4.904 634,209.86075,212.70078,19.684174,31.246414,4.777 634,553.4096,64.93225,25.499023,76.88037,4.774 634,536.81494,310.96347,142.51538,341.47098,4.761 634,202.04163,209.53842,20.7482,35.792053,4.719 634,297.86304,193.32767,19.926056,33.589615,4.574 634,-17.93309,430.34702,54.809994,146.53427,4.409 634,-5.7710576,122.54116,18.600725,43.141365,4.409 634,218.4303,215.3298,18.327698,28.339005,4.377 634,493.34735,227.88281,238.13788,514.6279,4.341 634,-10.456188,188.83224,30.093563,69.04123,4.3 634,378.28326,193.31651,20.837494,49.7182,4.283 634,618.84875,200.70631,19.788574,57.80986,4.271 634,91.332664,202.56062,20.649002,48.5468,4.267 634,585.786,-102.50719,75.59534,236.41321,4.251 634,-11.5484915,114.30535,30.09932,70.79267,4.239 634,162.2274,198.93053,21.687378,46.425385,4.227 634,-5.361049,201.08545,18.41078,44.350723,4.225 634,2.7406442,218.66835,39.14233,100.15849,4.211 634,548.1638,203.90285,30.07196,76.38808,4.208 634,117.15857,204.88693,28.716202,56.99054,4.08 634,323.40182,204.79881,18.927124,35.516846,4.044 634,-10.2595415,228.14664,27.967323,70.7247,4.036 634,194.72078,209.88837,42.488205,87.07138,4.021 634,97.905685,195.86661,18.975372,44.899765,3.97 634,626.43396,208.93443,18.72107,55.116592,3.897 634,177.5426,212.10596,43.226715,82.27612,3.888 634,550.8033,173.30829,21.533447,56.495758,3.875 634,628.0525,345.19977,17.155945,46.382477,3.871 634,605.8387,-34.261776,29.06195,75.73868,3.836 634,-15.083326,158.363,48.85427,131.3935,3.826 634,612.89923,341.4703,16.066833,35.214966,3.816 634,344.9652,192.4275,19.259521,36.54686,3.811 634,394.2375,222.002,21.639832,40.828445,3.791 634,153.91748,216.61601,22.002106,36.026855,3.783 634,526.69543,-36.327625,27.941772,76.16155,3.751 634,121.89702,199.04974,19.654465,34.497177,3.737 634,145.63074,213.30457,43.36113,78.23175,3.737 634,-16.176786,227.49945,50.805122,159.34888,3.73 634,2.287085,174.56273,24.787054,74.06389,3.715 634,130.73758,219.38281,42.198196,91.24103,3.708 634,604.2133,43.962746,53.921387,151.50964,3.692 634,541.3329,-36.20649,29.199524,77.83828,3.686 634,2.6905446,-16.19192,16.795925,39.882183,3.682 634,210.86688,207.4531,41.287277,92.98068,3.682 634,-38.549107,-122.36076,117.86809,284.25742,3.677 634,489.02893,-173.59818,236.27075,410.7638,3.64 635,627.1466,488.38928,19.782104,44.487976,7.846 635,622.5353,-33.52152,27.170166,77.18777,7.541 635,386.97015,185.14328,20.737793,57.11841,7.408 635,599.33496,159.1337,29.775269,85.00299,7.324 635,288.03024,190.38477,19.151184,33.075928,7.103 635,584.4832,184.54532,26.262878,68.45509,6.827 635,135.47467,194.95154,22.82045,49.519424,6.772 635,626.9261,-19.726465,17.98285,48.925232,6.524 635,-5.7577276,489.36694,18.01021,41.246094,6.489 635,-8.768721,463.65555,37.48397,94.17624,6.434 635,-17.557892,-66.13717,56.379303,151.07004,6.319 635,331.24768,187.41425,18.62796,42.205887,6.306 635,589.209,166.51549,29.703857,75.701675,5.962 635,613.1642,456.77383,38.30017,104.07327,5.907 635,95.00226,184.13565,26.502747,61.425735,5.684 635,-5.800548,-18.16049,17.588451,43.05407,5.678 635,193.62378,212.89835,21.00998,31.440079,5.671 635,600.83215,158.68074,21.271057,50.70317,5.661 635,614.72925,200.71062,25.573364,78.10997,5.648 635,-11.107272,479.2294,28.367626,62.06668,5.612 635,-11.294794,-32.40045,29.538624,72.820946,5.44 635,619.23865,489.57364,18.892822,42.493744,5.308 635,415.70593,234.22585,24.601349,36.555313,5.225 635,602.6427,-55.834198,53.128418,132.3273,5.181 635,583.7081,412.31427,70.75696,176.69226,5.042 635,-72.9749,267.02777,200.01624,460.09613,4.943 635,575.9738,170.12144,27.758179,71.67848,4.924 635,617.4118,155.63635,21.037476,55.68602,4.865 635,-21.906412,402.25507,79.28955,176.05463,4.824 635,526.6057,245.28363,25.883667,34.054443,4.812 635,608.48157,158.28355,21.514404,53.421814,4.774 635,185.27986,212.28145,21.908691,32.895737,4.677 635,314.25046,198.45659,19.38263,33.029648,4.616 635,537.29315,310.10852,142.19208,343.11743,4.552 635,618.48096,-20.468264,19.056763,48.36748,4.538 635,307.64218,205.39044,18.954163,31.097244,4.431 635,202.29291,214.86205,20.085342,29.47673,4.381 635,396.95712,218.89825,31.000092,57.16974,4.359 635,71.465836,180.13303,28.024216,57.55121,4.352 635,42.34591,185.68726,21.19635,47.097443,4.319 635,365.75262,195.9439,26.885162,62.659225,4.312 635,570.2526,-15.471379,17.697815,40.60874,4.26 635,557.59326,-34.45021,28.37378,76.20332,4.238 635,356.4425,189.10257,16.107513,30.619751,4.193 635,363.52725,188.03976,16.500244,32.566696,4.187 635,290.17474,203.55177,18.714172,30.546585,4.185 635,594.08887,-45.037933,44.01642,95.45484,4.176 635,493.46887,228.56876,237.83942,515.22266,4.161 635,586.85767,-14.321057,16.527893,40.33526,4.078 635,594.8184,-14.783973,16.672363,40.053204,4.047 635,218.38112,207.09247,19.675491,29.182678,4.036 635,586.4301,-100.3833,75.400024,233.57472,4.011 635,282.38147,196.4527,30.17572,46.706924,4.004 635,226.80994,213.65385,19.957825,33.715866,4.003 635,-5.6775312,200.176,18.086338,42.670334,3.998 635,283.39767,172.31253,28.468903,56.797256,3.987 635,323.94183,194.99158,19.341797,37.711,3.956 635,609.62805,215.10367,21.636719,46.191895,3.916 635,3.038587,492.17386,17.827301,37.613434,3.906 635,298.456,204.89584,19.37201,30.512268,3.892 635,49.4499,194.84412,41.77244,83.844025,3.884 635,339.34415,202.33475,19.118225,36.942337,3.878 635,561.5636,-14.241699,18.858337,40.110733,3.875 635,29.820213,168.28728,47.360077,112.92534,3.848 635,-3.8361716,183.15038,15.127956,38.650833,3.806 635,86.58614,194.57028,28.667236,60.09366,3.785 635,7.8934755,190.93732,29.463146,66.05585,3.781 635,19.78284,187.29243,29.422092,66.88611,3.767 635,466.2811,199.90158,42.016754,79.15436,3.756 635,210.05182,207.26917,20.389496,28.497757,3.753 635,-6.6645727,292.07642,36.186592,105.83981,3.749 636,601.81824,238.19968,21.61139,35.80414,13.082 636,273.41998,199.19434,20.085754,32.74803,10.066 636,6.7827773,196.00339,28.563173,69.970795,9.689 636,17.780518,202.6616,22.146107,55.907455,8.159 636,608.14325,241.37578,21.942017,39.27324,7.617 636,84.92519,197.64603,27.013634,54.124634,7.608 636,596.6106,229.96053,21.183716,39.38719,7.347 636,627.03625,488.41846,19.868103,45.421265,7.078 636,114.39314,200.68257,16.291458,27.440994,7.032 636,386.20013,201.74289,21.014252,54.216644,6.887 636,623.3472,-33.66139,25.914185,75.94765,6.692 636,-17.783035,-66.46114,56.41078,151.29819,6.592 636,603.27344,-55.65778,53.15631,134.75143,6.539 636,627.1606,-18.205341,17.103027,48.270348,6.302 636,-8.710157,465.66403,37.502953,90.66263,5.938 636,-5.7743864,489.36902,17.977203,41.574158,5.871 636,613.06354,456.99615,38.658325,104.632935,5.793 636,616.3163,221.51929,21.373169,47.605225,5.677 636,490.68073,271.9702,34.000427,51.73462,5.659 636,-5.863292,-18.359552,17.631031,43.11399,5.584 636,-11.327126,-32.40282,29.628902,72.65342,5.503 636,570.01324,295.43326,22.086914,29.598114,5.394 636,330.58466,200.66591,16.293976,39.383728,5.355 636,-0.4818964,185.75168,25.370453,78.47003,5.287 636,584.0348,413.226,70.53467,175.69666,5.237 636,-21.294573,404.59207,78.24647,174.79367,5.218 636,474.81503,208.16745,19.479584,39.728973,5.168 636,326.5848,135.57364,29.781586,79.98888,5.066 636,107.39485,198.71265,30.32219,57.23665,5.015 636,151.90404,193.7771,21.857162,44.388977,5.007 636,-72.654396,266.76474,200.22607,460.38614,5.001 636,595.1246,235.96028,39.688538,93.77327,4.951 636,577.86017,296.7974,22.023315,29.932556,4.763 636,18.962162,215.13455,32.512695,58.33011,4.749 636,81.190254,228.69182,35.550087,56.38771,4.718 636,356.83923,197.58603,15.436951,38.047302,4.685 636,177.1657,191.35713,21.765488,37.858734,4.65 636,618.7374,490.3453,19.593994,42.20694,4.647 636,71.11348,180.26434,28.3629,65.2108,4.631 636,-9.368754,177.06023,26.875,75.34732,4.628 636,595.3338,-46.4769,42.67163,100.14103,4.589 636,536.30975,311.81763,143.44342,340.9994,4.58 636,-4.62041,185.03384,16.511976,48.363907,4.555 636,458.4293,263.73395,33.818817,50.900177,4.53 636,268.80594,180.62035,29.342072,55.234222,4.405 636,619.7368,-17.726727,17.137512,44.93426,4.343 636,493.33224,226.77869,238.04166,516.8576,4.317 636,-13.367273,179.84593,47.67492,130.89076,4.261 636,475.62473,270.3558,34.92209,47.6904,4.229 636,371.67096,198.11215,16.978577,41.497437,4.225 636,-4.940794,154.61859,17.306297,43.50067,4.191 636,35.097343,205.84363,18.938606,43.232086,4.182 636,624.06055,217.48901,26.513733,69.50397,4.181 636,587.8796,225.39198,20.472107,39.062332,4.143 636,323.706,196.72888,17.577728,39.675797,4.103 636,605.20013,209.12712,28.009949,63.15895,4.092 636,578.7488,236.92976,41.696716,89.8972,4.092 636,537.55005,288.96945,22.742249,30.569855,4.081 637,394.1342,200.35063,19.44632,44.886703,13.972 637,264.44092,194.02621,20.655853,38.91658,10.848 637,1.9661748,194.38979,21.675201,55.79654,8.753 637,260.3367,165.04422,31.142395,69.96553,7.466 637,621.98004,-34.912556,28.039795,76.319046,7.162 637,-17.924248,-66.183945,56.769123,151.37288,6.675 637,522.34656,218.58365,30.943481,79.14288,6.445 637,626.9011,488.1804,20.00708,45.459076,6.312 637,384.1238,205.47908,28.704407,67.15886,6.2 637,-5.997034,488.8131,18.352772,42.586975,6.011 637,-11.731207,477.4043,29.424513,63.545166,5.974 637,442.96167,211.97987,27.947815,68.68956,5.953 637,327.52063,127.7746,28.645813,85.634735,5.904 637,5.9266605,178.4567,27.940279,72.59323,5.806 637,266.61407,213.17142,18.565796,31.656052,5.759 637,602.928,-56.805183,53.30127,134.31718,5.553 637,613.2565,456.26895,38.554993,105.126495,5.429 637,-11.402985,-32.387794,29.62816,72.956055,5.345 637,-5.930819,-18.401485,17.689909,43.31557,5.329 637,-21.120918,404.95544,78.09389,174.36029,5.07 637,-9.446883,196.66599,27.760895,67.78006,5.007 637,364.03888,202.87895,28.621033,65.24605,5.003 637,401.04538,213.46216,21.091522,52.909424,4.988 637,594.86096,-46.79893,43.32843,98.633766,4.985 637,583.3782,412.2022,71.31555,176.82709,4.952 637,18.831963,181.30096,31.31765,69.5529,4.917 637,81.65091,207.74126,22.128922,36.31465,4.848 637,626.646,-20.878963,18.695679,49.346806,4.844 637,510.04224,215.4162,30.70337,77.812225,4.813 637,469.64563,210.22832,37.522644,78.87605,4.797 637,-14.421081,158.42859,48.155647,127.62479,4.779 637,371.9378,195.76498,16.166565,35.025925,4.771 637,357.4605,193.42741,14.1866455,34.25154,4.77 637,-72.39251,267.70667,199.26816,458.57166,4.739 637,536.84076,310.90466,142.53778,341.72522,4.716 637,592.0064,206.93289,26.287598,60.796967,4.704 637,611.8496,-24.197397,29.805054,74.55,4.661 637,88.48121,200.89804,23.513084,38.93419,4.613 637,609.40625,204.67923,21.257446,45.83664,4.612 637,614.92303,328.88284,25.924072,77.648254,4.6 637,405.95526,214.80258,26.665741,65.27643,4.581 637,617.478,201.29164,20.690918,50.160797,4.553 637,260.24463,202.81519,28.669678,48.96039,4.546 637,618.8116,489.51578,19.730103,42.975372,4.465 637,0.7152498,134.71895,18.56885,52.714676,4.447 637,491.5821,218.89233,31.184753,70.46335,4.436 637,459.35864,200.28873,17.876587,38.083878,4.433 637,453.5359,210.24915,36.389465,78.05719,4.377 637,493.8048,226.95538,237.3393,515.8103,4.325 637,388.81476,204.84674,37.00171,89.59668,4.323 637,236.92181,174.27762,29.852997,59.08203,4.321 637,595.0823,203.76332,18.85138,34.237442,4.281 637,73.46983,199.24287,23.60138,41.673904,4.246 637,3.62355,194.8314,37.779724,87.70744,4.172 637,607.3051,157.41586,30.36261,74.4086,4.164 637,241.66373,188.29414,19.531128,38.168564,4.132 637,-4.414938,299.29242,15.557886,39.44171,4.11 637,290.86093,211.0444,19.805756,33.223175,4.054 637,-4.9538927,130.11232,17.461355,45.384506,4.036 637,549.51697,126.54462,27.78717,86.65048,4.015 637,-3.8319635,195.68492,18.077473,48.253418,3.953 637,273.4781,214.03252,20.019775,30.457474,3.91 637,2.379146,490.04022,18.779003,40.15796,3.894 637,475.48404,217.19565,53.46396,132.84497,3.885 637,-10.003408,374.8248,38.962036,105.51703,3.86 637,236.0986,171.37648,20.139984,39.859818,3.859 637,-10.152285,212.49112,38.603363,98.100464,3.848 637,374.84714,191.24112,24.858093,55.490128,3.795 638,264.05487,194.25589,20.232452,39.235718,12.976 638,407.31674,206.07733,18.75351,44.304443,12.822 638,627.39764,-14.126545,16.319275,42.580193,9.294 638,261.37912,168.14235,28.824768,68.27466,8.692 638,623.38184,-34.084095,25.954773,77.36964,7.995 638,2.3229222,195.72365,19.67138,46.19757,7.815 638,387.62448,197.29034,15.8472595,39.16194,7.465 638,574.60443,195.30008,46.088806,149.66284,7.321 638,620.84656,3.553463,15.753662,32.966286,6.819 638,-5.758617,489.91177,18.121035,40.10428,6.756 638,-1.1844957,188.50853,28.254068,72.66731,6.643 638,603.40967,-54.310158,52.413025,135.32368,6.51 638,-11.508028,479.1054,29.604128,61.87274,6.32 638,570.8451,215.57417,31.189575,94.64137,6.208 638,-17.842785,-66.51472,56.640144,151.83786,6.06 638,1.7581797,182.56035,18.606636,42.059418,5.895 638,626.56,488.32822,21.044495,44.6492,5.822 638,620.3143,-12.712809,15.416809,38.774906,5.821 638,235.5381,207.81454,19.082504,31.0896,5.703 638,152.30011,208.89825,32.622757,63.645203,5.668 638,-5.845009,-18.156292,17.5915,42.87017,5.655 638,-3.8541226,187.49626,15.914352,41.797226,5.589 638,267.2803,214.27501,18.003693,32.7679,5.577 638,613.3685,453.69424,38.887817,107.58719,5.525 638,-11.401509,-32.524223,29.700047,72.83441,5.524 638,627.8461,6.3975334,16.610352,41.444683,5.52 638,227.17451,210.14311,19.030655,28.718674,5.462 638,530.45764,193.31866,19.108215,43.98622,5.376 638,549.46106,221.31662,42.421143,121.672424,5.268 638,314.44516,208.0907,20.647491,40.95056,5.261 638,219.1845,210.93903,18.849426,27.896866,5.244 638,-21.375914,404.0608,78.24301,174.43066,5.021 638,-72.156784,266.89673,199.94354,460.63977,5.012 638,604.3902,198.08153,27.163391,79.16432,4.954 638,497.06042,178.3038,17.93274,38.636353,4.949 638,8.900195,197.12515,22.60851,45.092606,4.943 638,583.3142,411.53116,71.27203,177.07748,4.865 638,-9.663802,181.47571,27.713398,65.40646,4.861 638,242.45715,196.37912,19.259857,34.69699,4.742 638,536.61597,310.3374,142.44958,342.96362,4.702 638,360.4936,234.15659,22.913818,39.268402,4.674 638,260.93115,201.1596,28.221008,53.013306,4.586 638,622.7718,5.7240753,26.469543,70.61045,4.559 638,576.8645,199.27005,22.322327,51.974533,4.543 638,251.22583,203.77892,20.150513,36.748093,4.49 638,273.8456,215.7553,19.852417,31.387772,4.473 638,592.0184,206.93184,29.278076,75.13249,4.461 638,381.6202,201.71802,26.19809,60.37561,4.45 638,389.8266,206.34857,36.969513,86.82504,4.405 638,348.6399,224.6506,31.527008,53.0007,4.397 638,284.153,187.86836,15.578461,31.93193,4.343 638,298.46765,210.8366,20.987427,36.836197,4.322 638,272.22128,192.57475,18.019806,34.906235,4.31 638,289.10208,204.86078,22.760681,36.17061,4.275 638,615.47986,-16.903042,26.188232,72.586044,4.25 638,493.5882,227.5433,237.99945,516.45557,4.214 638,615.51697,114.86662,23.619873,91.05374,4.208 638,-5.1896963,204.74005,18.899101,46.795624,4.206 638,235.20851,184.23619,19.247696,34.462555,4.195 638,57.38179,214.24814,20.701775,31.98938,4.185 638,373.32892,196.13786,13.928741,33.06923,4.184 638,516.90967,21.568596,30.872864,69.82442,4.129 638,403.71616,207.24579,37.211212,85.74692,4.122 638,522.53326,191.66466,19.574463,44.7155,4.103 638,538.23553,195.3933,18.396301,41.07451,4.067 638,330.4236,209.6295,20.391937,41.782333,4.049 638,586.32886,-103.02651,74.88092,240.74341,4.033 638,328.52005,132.39407,27.76538,81.15123,4.033 638,185.75879,245.94887,21.179367,38.848526,3.99 638,595.8138,-44.882843,42.721436,100.06709,3.972 638,579.8913,184.23354,28.689575,75.620804,3.968 638,593.39166,202.361,44.396667,155.27261,3.959 638,381.65692,197.58485,15.743286,38.437958,3.954 638,17.866062,193.05826,20.07557,37.719727,3.944 638,-4.62747,90.08212,17.975246,44.01996,3.901 639,429.64444,209.95067,19.34433,45.38585,39.137 639,267.0683,202.02727,20.090942,36.629654,20.011 639,2.6104975,206.66365,20.068516,56.00444,8.425 639,339.45203,134.98148,29.325623,88.9843,8.244 639,263.81708,172.27975,29.379517,72.182465,7.247 639,106.37409,196.4916,31.27137,56.745514,6.946 639,613.22363,453.43665,39.7334,108.68756,6.324 639,-11.404114,478.57983,29.172813,62.798462,6.324 639,626.5841,487.89737,21.00232,46.105133,6.202 639,-5.8456206,489.66083,18.110622,41.293396,6.056 639,-11.340849,-32.536537,29.721315,72.61324,5.846 639,627.41736,-17.67149,16.98993,45.726543,5.844 639,-17.605427,-66.22144,56.54883,151.19128,5.819 639,19.40094,204.72614,30.24437,61.55725,5.738 639,-5.8909464,-18.372433,17.649216,43.161137,5.615 639,-21.21729,404.35065,77.72609,174.94916,5.21 639,623.31433,-34.699837,26.159424,74.49588,5.167 639,152.73808,195.77428,20.744064,43.641373,5.153 639,412.91815,211.96936,17.158447,43.080795,5.098 639,403.99655,202.51001,16.895447,36.39946,5.025 639,289.16776,220.21823,23.023743,37.626404,4.979 639,618.5462,488.61972,20.6875,43.439545,4.937 639,-72.77091,267.1129,199.63794,460.26807,4.933 639,603.7473,-56.784157,52.687256,138.92146,4.89 639,282.11145,192.87863,17.008972,35.331512,4.873 639,583.11664,410.0368,71.36969,178.26654,4.847 639,345.11078,215.3527,21.559082,46.528824,4.826 639,5.4411674,189.82137,27.40771,65.32262,4.766 639,536.7974,310.0907,142.95905,342.2787,4.673 639,321.31943,215.67343,22.009735,41.94632,4.64 639,-3.7528708,203.01648,17.127668,44.73288,4.494 639,115.58926,187.91919,31.41285,59.721725,4.478 639,410.72937,201.31854,16.480774,38.406372,4.413 639,233.53223,214.5307,21.197311,32.801758,4.407 639,389.02737,205.32092,16.18863,38.764862,4.387 639,11.438009,181.95062,54.831787,102.63571,4.363 639,396.47342,204.66872,15.960205,37.840073,4.362 639,493.6764,227.90045,237.26245,516.0565,4.353 639,113.26416,213.61053,34.90732,53.565735,4.326 639,353.94574,218.83492,20.56723,43.853287,4.264 639,225.36362,216.01933,21.564621,31.271698,4.217 639,-14.858877,183.79343,48.818565,129.87335,4.216 639,135.56306,195.8834,29.329437,55.112717,4.187 639,137.42255,219.63647,33.010376,59.18152,4.138 639,293.06915,209.6822,31.178314,54.373306,4.112 639,2.5487905,491.18405,18.328154,38.53067,4.099 639,271.8117,188.85547,20.572388,44.28247,3.989 639,3.5506034,203.10063,37.853672,82.375534,3.94 639,272.7157,219.50035,22.53479,39.199875,3.933 639,29.901241,177.79665,28.468746,71.99678,3.932 639,571.9128,298.5226,30.763489,83.338806,3.922 639,628.01086,76.48205,16.885376,41.090195,3.897 639,151.27089,214.91078,24.495544,40.671432,3.815 639,334.4127,212.0609,28.131012,60.460526,3.788 639,261.3672,207.19484,29.552917,57.502182,3.782 640,476.3582,212.92282,19.563385,52.175323,72.514 640,279.5799,203.17,19.414917,34.055954,7.944 640,627.1028,488.77576,19.711487,44.266113,7.898 640,433.3922,203.14972,22.414673,39.004364,7.782 640,365.86652,169.5673,25.13736,75.85161,7.35 640,276.40863,162.14214,30.095245,79.90074,6.813 640,-4.0410767,186.91302,16.36724,40.302643,6.207 640,612.8637,458.1086,38.272034,102.9827,6.086 640,-5.6132183,489.74048,17.847542,40.929504,6.041 640,-17.846653,-66.258194,56.657864,151.69939,6.017 640,603.34814,-56.188717,52.9281,139.2544,5.88 640,-11.436597,-32.619167,29.75,72.609314,5.873 640,-11.078526,478.43292,28.51361,63.098083,5.838 640,627.39954,-17.762205,17.08136,45.923363,5.815 640,-5.962174,-18.349705,17.691133,43.04183,5.65 640,618.8832,490.43875,19.045471,41.35135,5.405 640,588.227,245.29364,18.332458,34.43451,5.405 640,171.57973,209.03888,16.968948,32.20569,5.403 640,428.5133,206.80951,21.315063,47.5506,5.284 640,584.19934,413.61896,70.31061,175.63245,5.24 640,458.8152,265.70947,33.907043,67.05362,5.224 640,370.2144,203.42825,19.956238,47.923523,5.178 640,-21.268911,404.36987,77.91003,174.83484,5.173 640,62.085335,186.92976,28.559196,69.75023,5.146 640,623.37744,-34.652214,26.083496,74.718185,4.985 640,365.314,217.5058,30.147919,69.28912,4.946 640,118.10005,180.617,27.991165,65.75154,4.942 640,-72.430466,267.81113,199.70285,459.66873,4.929 640,3.9107454,190.20746,17.358438,37.47809,4.841 640,475.82843,270.94995,31.876587,66.55972,4.714 640,-5.5888057,281.75726,16.892702,38.301483,4.677 640,450.956,210.24046,18.71997,44.964874,4.626 640,460.39795,211.3561,18.419678,44.979324,4.617 640,440.78455,197.75073,21.574158,39.609177,4.608 640,130.37708,187.20372,20.242569,48.359283,4.6 640,40.09661,188.47806,28.981682,67.726715,4.597 640,-5.3575664,153.2036,17.436838,42.333267,4.527 640,242.4425,214.22021,19.37091,34.482086,4.525 640,496.403,283.53348,24.346802,47.34488,4.48 640,536.96576,312.60028,142.23114,339.83514,4.43 640,-4.956843,172.55438,16.658321,40.45259,4.377 640,404.015,210.09653,18.014862,41.32303,4.375 640,571.2918,231.96796,16.919617,31.82605,4.367 640,-4.7323275,201.87604,16.296406,39.322647,4.323 640,471.76968,205.88736,32.407867,71.76239,4.216 640,3.1569223,215.87863,17.052032,37.418777,4.193 640,77.47493,190.15869,28.466507,56.121567,4.174 640,388.278,188.85481,16.217072,41.182068,4.168 640,493.3698,227.37689,237.9737,516.83325,4.167 640,341.4442,134.16573,27.92517,76.64516,4.12 640,292.38162,485.55182,31.106537,57.203857,4.06 640,-7.9694867,71.10631,38.11127,106.65062,4.027 640,-9.700622,174.76552,27.328503,63.707672,4.015 640,445.61096,259.7956,30.67743,60.894928,4.005 640,619.1344,224.20842,18.946167,49.05977,4.003 640,-4.004707,138.38605,15.692415,39.87729,3.958 640,251.60269,206.5417,17.695557,32.58191,3.946 640,396.67828,202.80717,17.520874,41.12439,3.92 640,618.37744,200.04839,20.856934,52.761185,3.914 640,112.38107,179.28552,21.786224,49.346634,3.905 640,3.117159,491.29523,17.583103,38.32489,3.885 640,503.61462,290.9957,24.513,46.124847,3.883 640,275.7536,211.3246,19.320374,34.534348,3.878 640,627.75116,59.55646,18.179321,42.776455,3.872 640,546.72845,312.1783,33.738525,59.013916,3.867 640,259.66647,205.6891,18.56427,32.54001,3.859 640,438.63754,204.71034,27.727386,62.668747,3.826 640,467.95685,197.77509,24.310547,65.17468,3.809 640,-5.170721,216.87405,16.299118,38.537308,3.8 640,308.50174,484.76944,31.101532,57.753326,3.792 640,515.517,296.1295,33.922302,64.80563,3.788 640,-13.871058,155.93211,46.959415,135.30501,3.778 640,186.8176,205.88365,17.71022,29.55896,3.772 640,598.2162,465.99484,36.32373,96.39145,3.714 640,-3.9622493,378.0486,15.61865,43.400238,3.711 640,132.46008,226.46812,40.175873,109.98137,3.676 641,551.2707,204.30606,24.50708,61.538788,95.681 641,394.58493,207.26434,20.15451,42.968506,10.444 641,616.0807,33.687557,24.980225,85.24545,8.583 641,2.4446273,204.28424,20.965136,54.58658,8.341 641,621.3894,-32.557354,27.860718,78.2186,7.751 641,626.79785,-17.089806,17.781006,47.847393,7.491 641,162.4875,204.6615,17.648422,32.51506,7.153 641,626.92773,488.50385,20.200684,45.161255,6.719 641,61.85493,170.95981,27.994617,70.70325,6.643 641,-17.713799,-66.652374,56.426826,152.83308,6.27 641,289.92496,198.5344,17.747345,36.49817,6.202 641,613.1509,-5.039158,27.775635,87.81821,6.16 641,-5.7773485,489.31998,18.073076,41.72458,6.072 641,6.305331,191.76843,27.628757,69.608826,6.069 641,112.57485,210.50575,20.833977,41.327408,6.038 641,491.35147,204.97261,18.883179,38.142838,5.931 641,-11.41897,477.38126,29.09675,64.02524,5.663 641,-11.419479,-32.5569,29.679428,73.06999,5.557 641,260.3143,208.23642,15.867371,31.885773,5.522 641,244.30132,217.44116,17.095383,33.21663,5.515 641,253.20502,208.44646,15.030212,32.593582,5.501 641,-4.4569564,157.5146,17.636473,40.776062,5.5 641,-6.056858,-18.74633,17.807404,43.588314,5.487 641,602.1519,-55.197952,53.198364,135.70515,5.464 641,611.6534,171.06523,25.66272,86.41905,5.443 641,483.2694,204.30954,18.729126,39.576935,5.377 641,584.1396,412.8607,70.50568,176.22269,5.298 641,612.96594,457.25623,38.67096,104.21869,5.167 641,521.76373,266.79114,22.718933,43.075745,5.154 641,617.23444,-6.7094574,21.222595,51.96282,5.086 641,47.599106,168.84555,29.30178,70.51744,5.078 641,-21.166555,405.2203,77.974724,173.86435,5.038 641,-72.8968,267.75534,200.35881,459.91177,4.882 641,2.077959,160.23732,19.6225,40.50438,4.812 641,553.22705,193.10167,19.979675,39.801376,4.81 641,357.60495,135.53119,28.30777,74.16887,4.756 641,496.30692,196.37436,20.957489,44.02368,4.73 641,426.0114,244.59308,35.27243,62.49878,4.718 641,-4.363549,141.28041,16.17297,39.732254,4.692 641,54.692726,186.2793,29.606438,70.81885,4.687 641,-4.7213564,223.17503,18.810635,52.94777,4.646 641,-4.35907,193.31883,18.072071,49.14084,4.614 641,547.6569,195.36588,20.959717,51.390182,4.569 641,-9.046208,212.26231,37.831573,97.24916,4.565 641,235.95926,217.9585,17.266617,31.50476,4.544 641,618.76886,490.54578,19.791016,41.961914,4.515 641,18.722996,197.91095,30.165974,67.38068,4.512 641,103.55983,189.77238,26.319977,61.670624,4.485 641,-8.560172,149.56354,27.554806,70.2437,4.411 641,12.050433,175.20198,52.047543,112.05397,4.394 641,546.5909,187.08847,18.712036,35.85855,4.387 641,-7.844908,179.46713,27.83386,75.74684,4.384 641,317.25888,485.0689,29.864807,56.543213,4.327 641,157.46204,209.07124,15.242874,31.480774,4.324 641,536.7517,311.73822,142.26514,341.90155,4.323 641,286.0642,157.22092,29.437317,81.79416,4.315 641,605.82184,-15.711906,30.198303,72.7797,4.31 641,2.2228658,170.02473,23.526566,73.03691,4.302 641,390.65326,208.73312,29.68332,63.66107,4.254 642,560.6881,211.73398,23.049927,46.61728,15.733 642,626.7806,488.35266,20.084717,45.198853,6.536 642,603.2401,-55.574764,53.06714,138.27338,6.376 642,-17.879871,-65.273994,56.50819,150.59764,6.087 642,-5.7979174,489.45343,18.133186,41.73993,6.074 642,-11.305771,478.24524,28.86094,63.95105,6.007 642,627.2361,-17.137781,16.785828,43.566307,6.005 642,298.00455,200.63924,18.276855,35.964005,5.983 642,411.3888,197.11081,17.044739,35.303375,5.761 642,-11.391485,-32.26196,29.584955,72.541084,5.699 642,293.9493,159.76016,30.126648,79.17871,5.675 642,612.97363,457.30035,38.755554,103.84534,5.63 642,623.44354,-34.574753,25.848694,73.85743,5.585 642,-5.9729266,-18.531433,17.662483,43.343727,5.536 642,583.66125,412.80542,71.20105,176.46619,5.025 642,243.73198,216.5291,17.41777,30.365875,4.99 642,-39.886356,368.3761,109.75278,273.3662,4.865 642,406.0561,166.75595,26.101044,71.6687,4.845 642,252.12823,216.71925,16.961426,31.296524,4.715 642,621.5004,177.39485,16.526367,60.36035,4.61 642,-17.713509,436.36646,55.158188,139.73254,4.6 642,-72.51279,268.84338,199.14328,458.66443,4.532 642,345.32416,210.04478,20.650085,43.398315,4.498 642,618.50964,489.5274,20.082214,42.90802,4.415 642,-3.244445,192.50574,15.568633,44.90483,4.401 642,267.69485,207.6507,16.43869,33.493637,4.335 642,537.16473,311.1084,141.61511,340.62756,4.304 642,-4.3675594,141.06201,17.326363,41.261917,4.265 642,537.94293,269.6233,35.3078,66.591156,4.263 642,7.413101,194.84724,24.836544,65.8203,4.235 642,299.44705,214.78197,17.41269,32.62271,4.232 642,260.45636,209.469,16.039124,31.654236,4.155 642,-0.21570206,152.71472,26.10098,67.65053,4.15 642,-4.70363,156.66473,18.148113,42.799118,4.136 642,32.079163,206.99638,21.382656,48.5287,4.128 642,-4.225757,300.0964,15.383804,39.52588,4.113 642,-14.210862,126.01806,48.77224,138.00659,4.108 642,-3.9679706,317.5678,14.163298,36.479614,4.07 642,404.25754,182.40189,17.992035,41.294357,4.064 642,260.60446,485.17072,30.909729,57.046265,4.06 642,506.371,258.82446,33.537567,59.294525,4.053 642,244.68489,485.6133,30.909225,56.453278,4.044 642,-9.912733,135.06595,29.686718,69.44055,4.02 642,-3.5555115,127.44414,15.099279,37.87892,4.013 642,614.0031,285.92273,26.297241,72.69998,3.982 642,493.6237,227.80154,237.98978,516.6074,3.972 642,405.04242,210.11108,18.807343,33.468597,3.969 642,11.897621,176.4188,52.33187,109.471466,3.929 642,324.63818,201.0858,14.884186,30.267609,3.926 642,515.38324,192.91348,16.00879,37.231735,3.917 642,300.2785,484.88562,31.296326,57.257935,3.878 642,292.80362,206.69783,18.004486,36.75508,3.86 642,3.3262384,184.35156,15.860069,47.185867,3.854 642,619.94214,-17.207912,16.077393,39.506897,3.852 642,154.58904,202.1768,18.444092,36.083893,3.842 642,72.762695,224.6287,21.746048,44.053406,3.806 642,2.4778771,491.2315,18.188128,38.977478,3.783 642,228.36041,484.62213,30.95459,58.097595,3.771 642,171.11937,218.58044,17.539047,32.093018,3.75 642,313.2818,176.30376,19.427612,42.641617,3.712 642,501.57434,194.29442,14.539124,33.39377,3.708 642,-38.103806,-122.50294,118.10402,281.74936,3.707 642,556.4531,222.66629,20.63971,40.46884,3.7 642,-8.050056,358.88306,36.43573,104.13718,3.691 642,-15.54079,180.31805,49.06339,134.8422,3.681 642,47.11096,209.0074,29.226711,60.244125,3.615 642,-5.9460173,261.60672,17.731844,41.506622,3.6 642,275.91257,214.64485,17.757812,36.567276,3.588 642,269.6715,184.73062,28.791473,60.56859,3.587 642,284.3671,206.8518,17.96103,35.369644,3.585 642,276.3683,484.5505,31.325348,57.675873,3.547 642,411.51883,215.06235,18.509796,34.024536,3.539 642,591.61884,164.39378,25.141907,63.214645,3.535 642,590.2267,286.82156,30.079102,68.667145,3.524 642,5.046043,327.98218,13.220112,31.776947,3.523 642,-8.577275,41.788586,37.946568,102.983154,3.519 642,508.84662,195.29977,14.440002,33.7052,3.511 642,0.75888634,205.57292,24.96417,65.72209,3.498 642,266.66046,190.41763,18.101318,34.97702,3.484 642,623.38586,180.33661,22.869934,78.75159,3.482 642,419.46313,197.4476,16.585083,37.66089,3.475 642,15.946535,202.70386,26.406866,61.33374,3.46 642,316.13254,485.53546,31.533813,56.64569,3.455 643,74.209,232.7866,20.707306,50.19484,7.145 643,161.23787,232.2254,20.198212,42.7052,7.133 643,627.2988,488.7383,19.515686,44.730927,7.103 643,-18.16346,-65.54441,56.908943,150.96124,6.56 643,-11.466873,478.44965,29.084381,63.53412,6.482 643,23.61619,236.41168,22.839697,56.08783,6.465 643,306.30902,228.8273,18.386658,36.68814,6.161 643,627.38715,-17.772316,17.077576,45.776745,5.848 643,-11.354332,-32.402515,29.656158,72.444,5.846 643,612.8629,456.80377,38.53589,104.57904,5.786 643,603.4666,-57.106613,52.890503,139.49165,5.76 643,124.520966,231.61012,18.952637,42.81697,5.551 643,5.936593,242.52339,29.60696,77.05681,5.549 643,-6.06025,490.23126,18.14958,41.526306,5.441 643,-6.03123,-18.570498,17.796394,43.515953,5.413 643,583.9019,413.67627,70.5177,175.32654,5.279 643,1.8386066,275.90448,21.018167,50.422485,5.188 643,-21.394682,403.71286,77.72707,175.08951,5.178 643,623.36456,-34.690166,26.109009,74.610985,5.156 643,28.480228,224.72098,29.906704,58.772186,4.975 643,492.64844,180.23343,28.834167,75.88583,4.973 643,-72.191086,266.32257,199.91443,461.844,4.962 643,0.48020124,194.20267,24.041027,94.60867,4.95 643,283.07697,222.4547,18.710022,41.89772,4.846 643,428.14685,233.00003,17.057892,31.500854,4.752 643,275.71906,229.8634,17.692871,35.69336,4.662 643,348.10236,239.48322,17.106812,31.203064,4.568 643,49.664112,227.06863,19.97916,43.990173,4.544 643,301.233,223.75398,28.10138,57.184006,4.496 643,536.63947,311.36084,142.60034,339.32703,4.478 643,308.38733,186.65817,30.022522,74.83682,4.383 643,291.52078,227.97798,19.034973,38.33995,4.342 643,-9.801571,441.8242,38.47366,99.07175,4.269 643,377.21542,157.96626,27.31363,77.90044,4.235 643,586.69507,312.35855,19.644287,37.473663,4.205 643,493.16187,229.98795,237.66748,513.7501,4.204 643,333.10947,242.27147,16.01828,27.56514,4.204 643,434.654,240.24658,17.501831,33.138367,4.18 643,-4.8573823,226.54138,18.424492,54.09268,4.148 643,619.1436,491.0003,18.899475,41.14972,4.1 643,-4.4446034,150.50908,18.076519,52.79048,4.093 643,0.51814556,148.8422,25.113155,92.14586,4.093 643,269.0434,232.02956,16.624573,32.61934,4.078 643,341.88733,235.16489,14.538696,28.519104,4.073 643,560.8901,200.47595,25.625854,63.14264,4.006 643,147.33005,226.12892,19.1427,39.532974,3.986 643,-13.517485,212.6073,46.870445,137.5127,3.935 643,129.52203,225.26973,18.940979,40.37764,3.925 643,-2.9587162,364.67996,13.9218025,38.305756,3.924 643,-10.490372,219.65013,28.618235,81.05708,3.908 643,270.96854,214.00722,26.926025,55.89409,3.905 643,138.08557,225.9736,18.600677,38.854767,3.834 643,-5.573329,280.38068,18.474773,48.09909,3.829 643,36.394974,100.2529,31.851303,78.58661,3.817 643,90.77389,234.38914,17.936401,41.848465,3.786 643,261.26462,241.04295,15.671875,29.940598,3.784 643,-8.349342,113.84886,28.5339,85.13176,3.758 643,619.89575,241.43332,16.222351,47.01413,3.737 643,252.40927,241.07622,15.89447,30.114151,3.702 643,570.7988,307.5646,19.568237,32.97699,3.69 643,626.1482,64.20537,19.164978,50.811485,3.682 643,321.89914,204.04353,18.158905,42.746628,3.668 643,44.446976,232.34293,28.956696,65.16348,3.655 643,615.12915,310.79666,24.898254,69.371185,3.62 643,562.81055,306.7844,19.50061,31.141846,3.59 643,421.09485,228.78773,15.624542,30.48793,3.556 643,268.45245,485.83777,30.804352,55.769043,3.541 643,363.17566,235.77724,19.393005,39.681137,3.539 644,-5.6716194,232.88675,19.96618,44.87256,7.641 644,603.3632,-56.078762,53.025818,137.85507,7.044 644,442.9373,235.92946,19.626465,38.72383,6.862 644,626.82153,488.4084,20.066833,45.388855,6.661 644,308.04633,179.50992,31.074524,79.33426,6.619 644,166.85379,237.23752,20.0719,37.43564,6.594 644,379.51462,233.88603,20.137787,41.850174,6.394 644,-11.154312,-32.34046,29.669447,74.78399,6.383 644,-5.705076,-17.061937,17.43499,43.19196,6.191 644,313.25284,221.15358,18.694061,37.88878,6.041 644,426.7001,232.0824,17.606903,40.748444,5.997 644,-9.186774,463.41953,37.674683,93.60031,5.804 644,-17.238504,-64.19318,56.329575,147.45866,5.684 644,-0.3262174,237.99513,21.02023,49.5941,5.638 644,627.4796,-17.94004,17.140198,46.296505,5.617 644,-5.9822016,489.26917,18.030853,42.135925,5.587 644,382.7582,226.83008,25.648804,59.234863,5.433 644,613.119,455.77,38.891235,106.063385,5.309 644,583.71747,412.94037,70.72742,176.01141,5.233 644,419.35364,232.22807,16.963867,40.65056,5.16 644,393.3017,232.29567,19.528564,43.440933,5.041 644,-21.320385,403.705,77.73326,174.93057,5.023 644,-72.23931,265.98993,199.65288,461.85962,4.956 644,521.2493,196.95985,23.624573,84.42476,4.781 644,536.5775,310.05225,142.91602,340.56323,4.754 644,623.26587,-34.720757,26.109802,75.25803,4.657 644,319.60696,193.99278,22.323547,54.168304,4.62 644,330.77246,209.94414,18.20517,42.08333,4.619 644,618.56555,489.91925,19.85736,42.49829,4.577 644,131.29175,228.63281,17.39392,35.28717,4.469 644,401.7602,231.7397,18.171692,42.866776,4.437 644,292.63852,485.06494,30.691925,57.714844,4.436 644,124.511406,227.1987,17.029747,37.17215,4.384 644,493.629,228.95938,237.25113,514.8154,4.237 644,624.52783,208.81488,23.27124,71.45761,4.156 644,138.58153,219.4069,18.440094,37.60109,4.15 644,341.1073,220.05852,15.118469,35.526566,4.123 644,350.02933,232.19972,14.075287,29.09761,4.091 644,-5.214566,101.464355,18.248333,49.463684,4.083 644,-3.4585166,364.34723,14.155718,38.33185,4.042 644,-5.3750463,155.64561,18.625435,49.2162,4.039 644,412.20398,228.42767,15.807983,40.49066,3.951 644,396.3662,222.71109,15.500793,30.702179,3.901 644,363.47937,220.77444,16.736206,33.132126,3.867 644,276.97815,484.7318,30.097229,58.225098,3.856 644,307.82898,227.96011,18.603577,35.088165,3.851 644,586.3769,303.82794,20.019348,33.84326,3.845 644,627.53424,43.814117,17.550476,42.311752,3.826 644,-8.990082,234.42064,37.438793,94.37477,3.825 644,-9.33608,83.022995,28.705082,70.71471,3.802 644,308.35895,485.28085,31.140533,56.699738,3.741 644,100.36861,221.42668,18.787575,41.493973,3.738 644,-11.273475,205.64755,30.460125,68.6485,3.729 644,286.07816,206.91788,28.860626,59.345367,3.719 644,303.70837,207.45476,28.762634,57.707413,3.705 644,-4.036966,348.65616,14.933943,38.610535,3.704 644,364.09268,233.08533,15.694855,33.143433,3.696 644,588.46747,299.97754,31.615906,56.158386,3.685 644,542.8272,194.25195,23.906433,87.87915,3.683 644,300.5817,221.5543,18.97116,39.00386,3.665 644,622.8573,83.97206,25.359009,71.77348,3.662 644,450.5042,230.7074,16.47998,29.38913,3.659 644,559.2385,161.10786,31.19867,82.96846,3.616 644,324.76028,485.29938,30.810059,57.09485,3.606 644,618.50916,306.2426,20.152222,47.61081,3.606 644,261.15726,484.48938,29.873749,58.10974,3.599 644,2.9543805,-14.538374,16.517683,38.652557,3.59 644,619.4825,226.17642,17.81543,48.0571,3.581 644,-37.87648,-121.0114,118.660675,280.05502,3.568 644,12.932777,207.41916,53.2666,110.83374,3.54 644,618.9932,48.15489,17.442993,38.389225,3.519 645,159.06996,218.41718,20.628082,39.696777,27.555 645,1.371603,209.85628,22.128672,51.062027,7.783 645,627.1209,488.5446,19.702759,44.76358,7.029 645,314.24628,157.86143,33.600403,75.21617,6.958 645,-4.970245,-16.525045,16.90863,41.277946,6.954 645,-5.9603457,489.2572,18.081264,42.741272,6.718 645,-10.815908,-32.443237,28.881948,70.75192,6.16 645,619.873,216.63188,15.730164,40.05455,6.131 645,-9.24608,464.16046,37.61801,92.81268,6.079 645,613.01886,457.27325,38.3963,103.8515,5.794 645,314.8522,200.8752,20.52127,39.119293,5.735 645,463.63342,209.18576,25.689148,60.36917,5.668 645,-17.414364,-62.70407,56.758495,144.79823,5.501 645,292.13242,187.57825,30.79712,61.81334,5.445 645,623.4477,-34.644947,26.212097,73.03283,5.431 645,583.9486,413.95065,70.63806,174.99698,5.412 645,474.12744,221.91135,20.228302,41.203217,5.36 645,-21.713457,402.583,78.30273,176.10767,5.3 645,596.884,199.66042,17.554749,47.63423,5.273 645,298.49506,202.84346,19.854004,38.730118,5.202 645,363.64105,215.4437,17.60785,30.257233,5.173 645,104.58424,204.57898,23.451523,58.569275,5.153 645,627.1911,-18.947622,17.450867,45.68316,4.977 645,603.6459,-55.596245,53.08191,136.04903,4.954 645,-73.0126,266.9792,200.49408,460.49347,4.944 645,355.9094,215.32513,17.44986,30.137436,4.921 645,-5.294672,212.98605,19.220654,46.084198,4.799 645,339.60028,215.01376,17.747986,32.160873,4.713 645,348.28168,216.76474,17.342865,30.051117,4.706 645,251.10056,216.10382,17.968353,33.13289,4.701 645,291.34592,204.24887,18.775421,38.506226,4.677 645,283.50546,205.90227,17.961395,36.309036,4.589 645,3.5187793,-14.476259,15.719971,37.437935,4.571 645,619.78455,191.93631,14.993591,49.070297,4.564 645,536.3459,311.09586,143.36346,341.37485,4.558 645,98.921844,203.63528,22.2695,43.567947,4.55 645,338.9469,198.19548,18.019806,37.60408,4.531 645,419.91513,211.55692,17.44629,40.864853,4.498 645,328.79602,181.25034,20.81134,47.494354,4.494 645,112.76425,201.62288,21.766525,49.572098,4.444 645,619.1118,489.8799,19.072144,42.481842,4.439 645,-4.4139047,199.91585,16.63361,37.224197,4.411 645,371.38428,214.28708,17.237427,31.842209,4.387 645,307.3352,202.36823,20.37265,39.053436,4.372 645,493.25842,227.06494,237.6792,517.6787,4.312 645,259.067,216.17989,17.835602,33.02034,4.285 645,425.23383,219.36847,17.497223,36.575195,4.264 645,481.29132,224.2468,20.84488,38.891724,4.196 645,309.66565,187.54517,29.76242,60.506897,4.191 645,26.0251,209.85992,23.374027,47.50885,4.17 645,348.4213,201.49121,16.236847,34.22232,4.112 645,3.448695,264.41568,15.8477335,32.681213,4.091 645,42.74353,155.95386,19.710697,43.4133,4.089 645,330.35132,214.36406,18.932709,32.85083,4.037 645,299.92917,485.76788,31.961243,56.322266,4.017 645,2.8376389,205.47736,18.686125,33.42102,4.014 645,-16.612804,182.12885,50.471985,131.5877,4.01 645,136.89801,214.30856,21.559113,44.201813,3.998 645,459.91852,216.55206,18.359253,41.9328,3.98 645,72.182465,198.50977,19.58754,39.833084,3.919 645,151.0858,196.03584,27.833359,57.442215,3.895 645,-9.221336,138.71342,39.775574,96.37593,3.874 645,572.1266,164.33722,27.437073,68.34659,3.839 645,451.12537,157.15335,17.67038,50.505432,3.776 645,602.9847,209.61119,15.659668,42.361908,3.739 645,276.0244,214.50621,17.900024,34.14241,3.731 645,551.97656,265.958,22.089905,34.58838,3.73 646,111.67564,217.28549,22.700798,46.086884,33.426 646,48.888058,199.8603,27.244175,62.74852,21.126 646,66.48068,208.26144,21.573761,51.741608,20.541 646,119.37225,219.97995,25.019257,45.438263,14.825 646,54.57411,177.82567,28.405972,73.65074,7.546 646,627.172,488.83264,19.645752,44.85327,7.339 646,469.3944,214.03366,28.499542,59.09018,7.267 646,282.71777,201.40828,19.935486,39.59651,7.088 646,488.8124,221.86206,21.92456,44.773285,6.932 646,277.04443,187.94263,30.749634,61.480316,6.787 646,-10.80574,476.29886,28.419645,65.67667,6.713 646,473.66898,217.23174,20.087555,36.73822,6.618 646,305.64957,196.3712,21.577118,39.826584,6.481 646,-5.4571223,488.54535,17.835218,42.781067,6.418 646,491.18314,215.5091,30.011871,61.706573,6.321 646,299.83167,159.79187,34.487732,74.34837,6.218 646,-17.69931,-63.617577,56.268333,147.33307,6.086 646,612.8527,457.27603,38.194885,103.93106,5.996 646,33.005928,201.52701,28.038704,64.12079,5.882 646,627.4311,-17.563072,16.950317,45.628002,5.824 646,275.6829,204.3907,18.993683,37.771393,5.66 646,518.0652,211.1052,28.8031,67.30258,5.654 646,532.9163,210.61969,28.387634,65.66266,5.607 646,77.61482,206.53543,24.556107,55.207336,5.465 646,529.90094,215.24724,19.206665,43.13466,5.416 646,-11.612156,-32.8788,30.105667,73.41462,5.392 646,584.068,413.6286,70.39545,174.41614,5.34 646,267.7707,206.98477,18.472534,34.69951,5.296 646,21.646027,196.27994,29.506546,58.935623,5.187 646,-6.0553875,-18.621895,17.824291,43.74132,5.186 646,348.7247,215.26353,16.214722,30.310745,5.162 646,1.7108142,143.27249,17.006184,46.945908,5.161 646,623.3121,-34.747307,26.15863,74.568245,5.161 646,-10.546807,184.18329,27.90664,75.01773,5.087 646,-4.030417,150.40808,17.171621,45.705963,5.062 646,-21.457817,403.73373,78.00803,174.97714,5.052 646,234.61336,214.80527,17.644867,32.621277,5.026 646,-73.01093,266.39703,200.2811,461.31964,4.932 646,1.308909,180.10593,19.44774,45.484894,4.924 646,122.24847,222.86531,32.81507,58.687424,4.917 646,6.215109,184.7014,27.269064,71.85951,4.841 646,482.06345,217.13208,16.67633,26.998444,4.832 646,431.17023,191.72507,23.744873,64.26616,4.823 646,288.77658,194.1128,22.059662,43.548035,4.8 646,514.6371,212.75153,20.130127,45.50003,4.747 646,252.28421,217.62697,17.342285,30.59233,4.734 646,603.7932,-56.440117,52.690002,137.3029,4.706 646,59.35482,160.32097,29.875145,68.93855,4.689 646,619.1127,490.64026,19.056396,41.24341,4.684 646,332.68066,206.8925,16.042297,31.32109,4.645 646,-5.4633927,190.50424,18.03801,47.11284,4.595 646,321.20786,186.24228,20.15097,42.143326,4.589 646,127.42926,215.31334,20.191376,40.26561,4.58 646,536.0099,311.20984,143.5025,341.43628,4.566 646,355.3095,218.3312,19.079681,35.005646,4.563 646,243.13493,215.99011,17.431473,31.593475,4.551 647,54.151535,222.60936,25.875427,56.1761,26.297 647,40.188385,217.52237,29.404533,59.77417,8.012 647,-11.33974,476.2895,29.273243,65.60144,6.791 647,626.9429,488.08444,19.799377,45.463898,6.696 647,33.81001,225.28203,23.887154,51.51497,6.662 647,61.387177,233.94357,26.13321,49.389008,6.621 647,-17.346674,-62.914288,56.486732,145.70354,6.522 647,-5.7746177,-16.433622,18.046425,44.33778,6.446 647,-11.11547,-32.35778,29.91156,75.06182,6.237 647,612.86536,457.57425,38.475586,103.88754,6.227 647,614.8172,234.08835,26.189758,82.65503,6.162 647,614.6807,149.73546,23.159973,86.98341,6.121 647,290.6325,157.92682,36.155273,77.69603,5.846 647,627.43164,-17.576557,16.984863,45.68602,5.825 647,-5.7837496,488.55777,18.25574,42.386444,5.791 647,492.23843,220.95692,17.393158,32.088623,5.77 647,497.4411,225.35484,17.305237,31.197922,5.567 647,583.37714,415.0725,71.12714,174.06384,5.451 647,618.83386,190.67746,22.138062,87.86264,5.342 647,273.55722,203.21782,22.158173,38.529327,5.293 647,300.4472,485.55975,31.347961,57.429565,5.248 647,332.31888,213.8591,16.530579,32.336487,5.244 647,70.68033,227.94762,22.379517,49.602524,5.228 647,283.4116,197.09972,32.641724,58.53134,5.214 647,260.88513,485.03116,30.08139,57.981415,5.207 647,-21.330254,404.36307,78.14664,174.06229,5.185 647,202.106,218.73302,18.45662,33.744858,5.174 647,623.3256,-34.735374,26.128418,74.69286,5.157 647,184.7638,212.58388,22.562012,39.29663,5.062 647,259.6965,216.00716,17.873627,32.170853,4.947 647,267.75336,214.15384,18.437744,33.975754,4.933 647,-73.132805,266.20618,201.01622,460.99988,4.911 647,603.5877,-56.50553,52.92804,138.77324,4.9 647,347.82565,219.40158,17.803802,33.705444,4.81 647,177.91562,217.7539,20.980179,35.52014,4.804 647,251.56828,217.01065,17.732498,30.448105,4.718 647,296.08167,202.7996,23.002472,40.59427,4.717 647,282.2476,202.10046,22.7005,39.99977,4.689 647,3.5403097,208.68713,28.02426,71.02612,4.688 647,545.9205,223.19302,19.280823,41.301544,4.607 647,194.69443,217.74707,19.087387,34.539764,4.568 647,618.516,489.0312,19.719727,43.321472,4.501 647,536.58875,311.61945,142.78503,339.9865,4.493 647,483.68256,215.33151,36.04657,85.56412,4.493 647,339.13855,219.72821,18.205017,31.917358,4.487 647,539.2606,217.23027,19.691467,42.97026,4.458 647,316.79968,486.23563,30.637695,56.67679,4.447 647,-3.9315627,169.94147,16.233715,43.943375,4.439 647,236.14099,216.02931,17.001633,30.409103,4.431 647,284.77634,485.09705,31.115967,57.803833,4.427 647,210.5575,221.55533,17.860992,32.250397,4.403 647,470.34332,210.94908,35.075653,90.6151,4.393 647,614.98346,113.805466,25.502502,87.96237,4.388 647,244.17218,215.90689,17.361938,31.989822,4.37 647,-3.6941466,125.78192,15.364279,37.628265,4.347 647,493.64746,227.57776,237.75726,517.48334,4.284 647,421.0841,186.46521,24.986267,69.82037,4.234 647,-3.4022403,203.02853,16.12364,41.38188,4.152 647,227.13759,213.60588,17.85762,32.529846,4.146 647,-4.3645034,139.00052,16.505728,42.4395,4.141 647,324.34506,212.52954,17.30655,34.334564,4.14 647,313.55902,199.8461,20.170837,40.325394,4.07 647,245.1102,484.73236,30.468353,57.598206,4.054 647,597.87646,264.00626,31.395935,66.286224,4.003 647,17.331734,217.76645,19.467907,42.93091,3.993 647,-4.19208,425.8971,15.681429,42.788788,3.99 648,450.6531,183.63757,27.740631,80.898224,7.804 648,-11.03344,477.5495,29.2794,63.966003,7.436 648,-5.4087887,488.88443,17.610836,41.46762,7.036 648,235.88576,210.16675,16.077713,29.639557,6.873 648,554.9354,212.6864,27.043823,73.798615,6.87 648,-17.439146,-63.943863,56.28293,147.68503,6.607 648,626.9025,488.15445,19.889832,45.91092,6.564 648,515.3743,219.90787,21.243774,57.787445,6.154 648,518.6485,203.52763,35.523804,101.08931,6.126 648,627.405,-17.646492,17.064453,45.927032,5.95 648,252.48679,218.97487,16.921356,31.223099,5.932 648,244.52948,219.12083,15.938385,29.397964,5.721 648,464.35968,145.22073,21.405243,53.201782,5.685 648,613.0444,457.11755,38.35663,103.84235,5.571 648,603.3233,-54.82112,53.00226,137.54303,5.539 648,-5.497813,-18.070133,17.04332,44.14399,5.479 648,259.53204,207.68004,18.552094,34.033066,5.441 648,-21.75203,402.93018,78.39271,175.81555,5.268 648,266.192,205.82454,20.484528,35.037247,5.215 648,583.4581,413.48624,71.03961,175.74796,5.213 648,228.4498,211.59125,16.647842,28.351547,5.206 648,-11.340204,-33.23386,29.631054,74.27031,5.129 648,-4.5124793,186.82645,16.292809,41.048294,5.108 648,601.11926,227.21693,18.607788,39.61635,5.034 648,494.3474,216.95866,28.836731,75.58882,4.932 648,275.62448,157.47836,34.28253,73.92343,4.85 648,-72.68936,266.5992,199.85701,459.6642,4.841 648,623.3789,-34.75398,25.947205,75.55896,4.747 648,5.4132357,207.68285,16.515114,33.707565,4.584 648,536.6415,312.07367,142.80652,340.39752,4.578 648,219.59058,217.08076,16.62564,27.324081,4.515 648,560.8713,204.05142,20.540344,50.44223,4.446 648,261.4289,193.29352,30.867096,58.015152,4.436 648,2.1666574,208.49911,39.82287,97.49219,4.435 648,618.70215,489.67825,19.726196,43.102325,4.413 648,506.37265,199.11583,33.7258,95.863846,4.397 648,290.73907,172.88628,32.298462,64.37265,4.383 648,261.38486,156.38431,33.364258,75.32019,4.381 648,315.01178,222.0269,19.119354,31.18785,4.339 648,522.99475,225.54845,19.915344,54.154404,4.282 648,628.3206,86.50997,16.192993,40.63775,4.274 648,493.60858,227.89044,237.69403,516.5271,4.265 648,261.0294,484.05566,30.159424,59.624268,4.248 648,202.84125,215.0063,18.728363,29.325424,4.246 648,3.0625873,490.50778,17.553635,39.58914,4.184 648,210.82658,215.9902,17.881012,28.437576,4.138 648,460.29443,185.26367,28.52002,74.07147,4.096 648,-3.9680278,205.85828,15.84192,35.637253,4.095 648,-3.519015,333.42096,14.412369,37.7619,4.067 648,378.93405,204.39757,18.970764,44.391663,4.006 648,348.93622,220.7959,16.041199,33.757965,4.003 648,276.93143,485.19437,30.615356,57.716156,3.999 648,316.47574,197.41649,17.718658,36.60457,3.974 648,599.071,203.27069,25.483215,61.067932,3.946 648,505.50662,225.7537,21.1492,58.20883,3.877 648,280.40298,202.47833,22.62564,38.865753,3.852 648,-3.4835858,426.44907,15.355917,42.012512,3.848 648,-9.409436,172.24399,27.371521,68.169174,3.825 648,614.3513,291.56927,26.008179,74.99887,3.815 648,-5.186786,170.2245,17.029938,43.11107,3.813 648,356.53345,221.28412,16.92627,34.043198,3.813 648,3.0635529,-16.39185,16.464796,41.69341,3.795 648,525.52484,184.58887,27.30603,70.49985,3.791 648,474.54684,177.46756,17.85028,50.6351,3.754 648,-4.8863344,155.21939,17.213852,41.912125,3.744 648,472.01697,188.7189,33.418365,89.586945,3.741 648,228.33047,199.51463,17.318161,28.968277,3.736 648,462.21393,153.31573,27.347687,75.879715,3.731 648,490.44553,208.07428,17.9357,44.99991,3.728 648,170.14935,227.16083,19.258575,31.644531,3.714 648,306.8112,213.78078,19.221985,32.248627,3.693 648,602.9535,215.09918,17.932434,38.41919,3.689 648,551.19495,188.2026,25.431885,66.91852,3.678 648,154.02548,201.32379,31.325623,52.537994,3.652 649,423.83603,200.16472,25.309662,73.37715,44.693 649,307.78006,195.53963,18.873688,31.414856,9.621 649,408.10193,198.51984,28.632874,75.85666,7.833 649,268.95993,206.4809,15.019257,23.829071,7.024 649,284.14874,205.42932,16.443726,24.723938,6.922 649,311.53394,187.0163,20.824402,35.61058,6.555 649,275.39447,210.84282,18.497711,26.935364,6.501 649,3.225882,178.67984,31.684595,63.789017,6.156 649,-5.6288013,488.29614,18.063513,42.815308,6.039 649,314.47522,200.3552,19.584045,42.370987,5.721 649,160.70197,197.49774,21.582962,33.60518,5.518 649,-9.074694,463.79483,37.692215,92.15219,5.502 649,-17.760323,-64.73932,56.03326,148.25272,5.475 649,627.437,-17.198698,16.947144,45.77427,5.469 649,72.26454,202.82329,24.876839,36.30696,5.427 649,-5.5116296,-17.3709,17.235586,41.87401,5.426 649,612.8059,454.0009,39.75244,108.5726,5.403 649,626.4873,487.91757,20.82788,45.41165,5.375 649,220.827,199.32486,14.647614,27.303055,5.337 649,228.63367,200.79935,14.557678,25.008774,5.27 649,290.50546,208.32544,18.210602,29.531967,5.186 649,415.47925,191.62038,44.439392,110.52818,5.153 649,165.49084,189.5964,11.735748,22.714462,5.114 649,622.7013,-33.910553,26.700073,76.83111,5.114 649,-21.591877,402.34116,78.94839,175.68484,5.081 649,332.59253,193.05737,15.759674,33.529694,5.079 649,261.5227,206.62749,14.774719,24.53035,5.064 649,-72.5259,266.1742,200.19614,460.62805,5.025 649,439.3853,206.38782,20.258545,45.28221,5.007 649,-11.4133625,-32.45109,29.599562,72.82475,4.999 649,583.2073,411.23715,71.56152,177.22354,4.887 649,230.06401,199.68738,9.990448,16.562378,4.865 649,223.64981,198.55489,10.477158,17.415588,4.802 649,536.5015,310.50873,143.56079,341.6947,4.743 649,354.3736,193.51978,17.384796,33.311264,4.73 649,490.44186,-183.89224,235.8406,426.41653,4.72 649,253.16835,206.62756,14.237778,23.634262,4.683 649,237.42288,204.64206,14.085968,22.990158,4.654 649,602.5689,-56.01378,53.60321,142.05878,4.528 649,169.8111,203.04718,19.970825,33.536133,4.504 649,562.86475,282.6393,19.909363,26.788391,4.493 649,244.31038,208.71855,16.663498,27.42839,4.481 649,148.26031,190.03265,31.442413,53.423874,4.441 649,555.4774,283.4402,19.045105,25.529541,4.44 649,493.9762,227.80682,236.63892,514.86536,4.396 649,321.62415,202.22154,18.698578,43.43306,4.341 649,618.636,489.67938,20.442932,43.388428,4.328 649,580.0547,126.96504,15.389648,31.547104,4.294 649,212.15512,197.21364,15.298477,31.19629,4.23 649,509.8363,193.72949,53.826843,115.064545,4.225 649,451.62238,212.94775,39.726776,84.49527,4.218 649,589.47253,207.42667,30.099854,54.905823,4.195 649,142.23392,186.38756,12.576096,22.883026,4.193 649,585.4958,-107.91615,77.005554,245.86397,4.129 649,275.75955,203.24597,14.749268,19.83783,4.126 649,430.74567,222.85553,22.813934,57.623383,4.073 649,66.31287,198.51767,20.674957,33.25656,4.067 649,199.07837,158.4589,14.893478,37.96077,4.055 649,291.29562,199.50499,17.442047,24.027084,4.04 649,548.9032,1.7890759,15.520752,30.442667,4.037 649,310.87805,198.3924,28.894775,64.71741,4.024 649,0.66901684,194.50592,22.30819,50.834183,4.015 649,18.967659,184.05278,32.710205,55.213593,4.008 649,547.3548,141.1827,18.42389,32.618423,4.0 649,478.48462,191.77194,52.241394,115.87045,3.996 649,570.7519,280.99487,19.825989,28.58194,3.967 649,540.87555,1.4618206,16.218811,30.807177,3.929 649,573.07654,1.5542173,15.659546,29.937057,3.922 649,556.9376,2.401392,15.5686035,29.23175,3.895 649,59.433167,195.23253,32.324425,53.83142,3.887 649,557.2444,147.64899,27.249878,55.140045,3.886 649,301.34775,200.73557,16.282043,30.109451,3.858 649,58.06439,198.30403,19.882153,31.421051,3.837 649,381.2131,164.40192,30.130035,61.5038,3.836 650,504.23935,205.93045,27.45523,60.848602,88.982 650,515.6431,211.25388,23.545654,50.975372,8.089 650,330.1739,195.55768,18.85791,34.9162,6.716 650,337.60242,194.55243,18.814758,37.860184,6.633 650,230.94632,202.67574,10.574951,18.620544,6.436 650,253.45528,207.84015,13.310989,22.154144,6.387 650,475.95233,204.70244,29.24231,61.581314,6.277 650,487.3354,207.8385,29.9245,64.92688,5.873 650,-6.00116,488.78854,18.227667,42.91568,5.766 650,276.39178,206.1468,16.128784,26.462296,5.722 650,269.01184,207.62558,15.3654175,24.676102,5.694 650,335.31113,195.62215,26.727264,66.336716,5.636 650,499.67972,203.68204,40.078583,103.71829,5.633 650,153.76605,199.14507,22.369888,42.87802,5.568 650,627.2734,-16.496986,16.856262,46.33503,5.551 650,611.5095,-49.57076,40.753662,104.693726,5.534 650,-11.720242,476.04504,28.913475,65.00525,5.517 650,613.3468,453.04416,38.70569,109.09793,5.494 650,-5.562477,-17.540112,17.311565,42.177876,5.489 650,-17.37899,-64.31844,55.79898,147.57614,5.465 650,533.0549,205.74663,30.216187,58.650406,5.46 650,236.99869,204.91501,13.151382,22.942535,5.445 650,545.9364,227.50406,22.772339,43.376007,5.389 650,362.10617,184.80708,19.187775,42.93361,5.385 650,283.9184,209.68205,17.753845,28.35971,5.281 650,245.64471,206.50612,13.153259,22.848923,5.278 650,260.44864,207.60182,14.620392,23.698837,5.27 650,322.7322,194.36557,19.257996,32.569366,5.212 650,-11.390926,-32.56422,29.581255,73.00872,5.151 650,498.40866,176.30968,42.026276,82.673935,5.098 650,-21.456387,402.87436,78.73857,175.15787,5.046 650,408.4602,205.28647,19.806152,38.029556,5.019 650,583.5741,410.039,71.08563,177.90204,4.976 650,-72.27577,266.7907,199.6599,460.09027,4.964 650,626.4756,487.5258,21.072083,45.463715,4.948 650,498.7364,205.9816,23.321045,46.465454,4.911 650,72.08526,194.74506,22.159775,34.329575,4.779 650,579.7804,169.24051,16.198608,34.540222,4.768 650,291.1633,210.13182,18.037048,28.047318,4.763 650,506.24783,201.61505,20.932648,41.647827,4.752 650,490.0903,204.81882,21.878357,42.2854,4.699 650,536.31104,310.84253,143.51514,341.84058,4.688 650,512.43665,207.57605,38.414734,81.65253,4.678 650,221.71362,202.27869,14.529419,25.971207,4.669 650,238.68752,201.54774,9.774796,16.461655,4.658 650,527.78455,218.04277,23.104004,49.336258,4.623 650,491.00006,-181.47176,235.01831,423.08902,4.582 650,324.4433,178.58063,30.082947,54.182037,4.484 650,259.94714,216.18277,17.79358,31.258331,4.474 650,275.97177,215.83308,17.114655,30.258957,4.448 650,40.28733,196.35043,34.554634,48.343384,4.424 650,493.78638,228.11438,237.08911,514.8387,4.393 650,346.58084,192.90114,18.177032,36.594177,4.381 650,586.5348,-104.77441,75.05261,239.01752,4.356 650,513.87274,197.65184,18.298828,34.630646,4.345 650,520.48395,202.61258,20.425781,40.422195,4.336 650,546.66235,206.68399,19.257385,40.046387,4.265 650,571.67706,166.91795,16.864258,36.363647,4.259 650,190.68137,186.27467,12.974472,25.439026,4.24 650,268.29654,217.1625,17.204498,29.785843,4.205 650,58.85811,192.28246,32.848274,44.243362,4.202 650,548.6234,205.46127,30.53772,56.278473,4.164 650,316.9,202.40709,16.601715,28.841629,4.164 651,424.2725,192.09515,26.0831,67.293365,13.725 651,442.20044,186.45941,20.682007,48.909103,7.829 651,285.2544,209.363,14.070801,21.089996,7.692 651,622.3429,-33.33319,27.400818,77.35923,7.676 651,279.3246,209.61198,13.369965,20.812378,7.383 651,346.91113,203.9972,19.374542,33.013763,7.012 651,450.42383,194.05826,18.858551,45.319336,6.475 651,275.99667,217.6807,17.35495,30.42096,6.331 651,231.29315,207.82191,10.051086,17.34871,6.319 651,626.9728,-19.554438,17.79132,49.704617,6.204 651,417.73273,157.09291,27.468445,85.4447,6.141 651,330.4754,205.15062,19.005371,34.834915,6.11 651,270.9808,209.1789,12.757172,19.347046,6.102 651,228.58566,208.21938,14.686447,28.734802,6.03 651,283.54306,216.39032,17.36911,30.742249,6.029 651,457.1231,186.75417,20.52063,46.63333,5.899 651,291.16888,215.69844,18.049805,31.529205,5.773 651,-5.954144,489.95224,18.15478,41.627777,5.76 651,463.14847,179.81061,26.096497,63.082657,5.757 651,2.7831697,198.40402,31.165176,73.466705,5.663 651,626.6361,487.9976,20.657959,45.032745,5.641 651,-8.886185,464.21774,37.637123,93.45108,5.64 651,220.7353,208.63458,14.193405,29.65387,5.583 651,-11.870125,478.70758,29.496237,61.90027,5.508 651,34.790657,207.06847,20.415318,40.112137,5.501 651,237.92662,207.81198,10.1289215,16.829117,5.492 651,224.415,207.75316,9.070175,16.59645,5.455 651,215.29326,209.03593,11.850906,25.650742,5.4 651,-17.757706,-63.65471,56.614876,146.08336,5.352 651,431.2158,182.48581,20.918243,54.53366,5.307 651,-10.993845,-33.15324,29.174675,74.05935,5.292 651,613.5284,453.86285,38.660645,108.51709,5.245 651,28.550209,205.98734,31.255932,63.98352,5.188 651,338.4823,200.99557,20.076385,34.887512,5.077 651,402.73737,198.40668,17.164398,40.352036,5.065 651,235.494,212.16052,16.901169,28.361069,5.064 651,-5.614434,-18.136377,17.433527,43.60004,5.062 651,-21.626686,402.46213,79.04799,175.4921,5.045 651,601.9143,-57.004852,54.440186,138.59816,5.001 651,-72.31853,266.30872,200.0601,460.8026,4.998 651,37.291985,197.51607,28.990181,59.416245,4.977 651,188.16435,200.20183,15.990906,29.457748,4.976 651,251.2792,215.3763,17.562164,27.8582,4.957 651,215.91682,205.52791,9.084122,17.45343,4.944 651,299.1791,217.37646,18.129974,30.262497,4.928 651,290.95923,208.81358,15.371002,22.81955,4.91 651,583.7748,409.66205,70.89551,178.35815,4.887 651,206.76299,207.11456,12.751312,26.25319,4.855 651,354.09546,198.71628,19.146423,31.709717,4.83 651,398.20776,152.62057,28.417267,73.42578,4.829 651,354.16986,210.36435,16.687683,36.11174,4.819 651,207.06084,203.59303,9.817886,18.353348,4.773 651,243.77237,213.64487,17.859436,27.323639,4.769 651,268.25497,218.53159,17.812866,28.718552,4.721 651,196.15822,204.73409,16.441544,33.457443,4.696 651,489.6892,-181.47443,236.94781,425.21942,4.679 651,26.900574,203.86647,19.849045,41.486725,4.673 651,-6.143503,209.6318,18.90711,46.43518,4.662 651,585.89667,-103.07466,75.93182,236.00383,4.641 651,536.5226,311.52576,143.13776,341.39172,4.561 651,1.6287506,204.81285,21.694967,50.465668,4.554 651,254.4825,207.14182,10.287033,17.317673,4.54 651,179.58817,196.88657,17.627258,31.025589,4.481 651,261.799,206.49097,11.251648,17.538437,4.448 651,231.43967,200.14621,10.053986,18.254517,4.37 651,493.05792,227.06845,237.7779,514.6194,4.361 651,343.92444,210.2644,26.37387,64.90494,4.328 651,44.462418,203.34294,31.59317,66.53984,4.293 651,618.62384,-19.781725,18.784302,48.39329,4.273 651,253.02596,212.02339,13.291733,21.252457,4.245 651,197.24582,200.64276,11.431107,21.09578,4.195 652,361.44257,197.19556,21.589203,43.08911,9.326 652,472.02438,216.44255,22.551697,52.105484,7.807 652,345.11163,190.51451,22.291748,45.981644,6.34 652,-5.701764,489.68295,17.740356,41.379425,6.3 652,492.1126,168.75914,17.778595,39.658493,5.931 652,337.0593,191.63629,22.033112,46.858078,5.853 652,-8.766574,465.58246,37.384403,90.853455,5.807 652,499.16516,207.77618,17.724243,38.127014,5.63 652,-5.584114,-17.701084,17.332714,42.487236,5.623 652,622.5647,-33.481018,26.966187,76.86281,5.613 652,-17.58614,-64.38216,56.058987,147.8293,5.548 652,499.62125,170.80357,18.560883,37.055557,5.527 652,627.3239,-17.159416,17.018494,46.289288,5.508 652,-11.320883,-32.566265,29.557657,73.0707,5.273 652,613.1571,454.65192,39.15912,107.002686,5.133 652,-21.28567,404.01215,78.66335,174.32306,5.133 652,479.1727,200.65448,25.297058,60.13626,5.111 652,179.55338,199.991,17.850037,33.17755,5.084 652,626.57654,487.91772,20.718384,45.819763,5.032 652,491.53192,208.33151,17.28363,38.65959,4.933 652,583.785,410.41962,70.93359,177.4975,4.888 652,-72.24788,266.80307,199.52577,460.0198,4.833 652,-5.5130906,211.07655,17.300634,42.645325,4.774 652,72.351006,204.14972,22.645042,34.665024,4.768 652,599.66016,160.06708,34.961914,92.609146,4.738 652,458.61377,200.38261,20.631073,45.318985,4.718 652,529.8182,222.50407,21.470154,43.56807,4.68 652,291.3779,216.10226,17.953186,30.68332,4.649 652,270.3338,211.1789,13.362183,21.385101,4.61 652,482.73816,191.76382,18.5484,43.032654,4.595 652,602.8747,-55.71592,53.068604,139.8213,4.591 652,536.6626,311.6358,143.04333,341.5462,4.549 652,408.47244,203.02577,20.639313,41.505524,4.526 652,277.8709,207.8691,14.344147,21.643677,4.499 652,521.6934,221.08568,21.345581,44.23149,4.486 652,330.31964,192.24301,21.687958,38.2648,4.481 652,498.69327,194.01184,17.795502,37.27896,4.474 652,284.5493,208.87872,14.928406,23.94986,4.468 652,352.6157,192.10454,23.760834,42.432938,4.436 652,514.4607,219.3805,20.27771,42.811707,4.416 652,573.0161,169.43585,29.498901,64.123184,4.408 652,473.6441,-17.799612,18.944824,45.978504,4.373 652,489.98346,-182.0787,236.07361,422.04666,4.358 652,-3.3052282,268.38266,13.830808,35.62903,4.338 652,493.3625,227.75906,237.34607,514.73364,4.334 652,585.59973,-105.07085,76.701904,239.94037,4.321 652,613.26263,161.58383,34.33081,105.46735,4.265 652,537.80164,222.81529,21.168396,40.659317,4.231 652,63.406364,205.57942,23.945473,34.829025,4.223 652,539.44183,8.018572,17.904175,38.44359,4.191 652,237.90886,186.05681,12.107437,23.58551,4.184 652,270.80136,201.7191,12.414459,19.437256,4.172 652,494.13513,162.00377,28.171448,60.872986,4.169 652,588.4377,169.8434,29.224548,64.39967,4.161 652,441.91846,186.58147,19.714844,41.855118,4.133 652,468.34686,209.99042,37.128418,76.75354,4.114 652,417.4466,202.96368,20.894806,43.62558,4.114 652,364.24585,196.24811,29.260925,73.925964,4.112 652,589.13763,216.4691,31.716858,57.18422,4.101 652,491.41147,193.93254,16.893463,38.064743,4.089 652,4.8117857,163.923,14.818067,34.8508,4.078 652,222.92465,203.02873,10.482498,20.690628,4.075 652,473.3556,198.27988,19.220764,45.6064,4.071 652,620.1541,-3.485197,17.765747,41.19429,4.065 652,507.78293,171.65903,18.384857,36.39856,4.053 652,244.38423,209.7093,12.632492,19.34909,4.051 652,401.966,195.6814,21.236755,43.7377,4.037 652,618.79504,489.8919,19.927002,43.17987,4.026 652,469.12418,-3.8938332,29.007202,64.102005,4.024 652,542.7781,186.78645,51.87085,122.3253,3.998 652,427.34772,-5.804989,32.180206,72.72826,3.996 652,556.1742,1.4560242,16.934082,34.438274,3.989 652,446.23285,189.91785,28.273956,59.404007,3.971 652,487.48468,176.27678,25.219055,62.01979,3.963 652,231.2044,202.85025,10.434692,20.833832,3.961 652,147.83612,189.3699,32.368835,52.37683,3.958 652,275.9529,218.90248,17.100952,29.443176,3.956 652,196.29655,202.26361,15.1202545,30.088943,3.945 652,341.00372,195.6586,39.053802,86.198364,3.944 652,322.72076,194.09319,26.101105,52.566803,3.909 652,165.15582,190.09523,29.889008,52.792404,3.901 652,547.21533,8.151548,18.002258,39.015686,3.9 652,237.91824,208.05576,12.413956,20.385239,3.892 652,483.46664,164.33469,18.240936,44.526154,3.886 652,269.49738,170.94939,13.299805,25.283844,3.882 652,223.0234,194.40053,10.812332,20.994705,3.881 653,378.9489,196.61473,20.16043,46.342636,8.742 653,561.5744,228.47595,20.62561,36.61801,7.096 653,-5.951191,489.0894,18.047918,42.431,6.908 653,189.95926,202.4428,12.453949,22.339676,6.418 653,196.64462,199.59633,12.633499,24.504639,6.346 653,-11.7663765,476.5843,29.378338,64.44269,6.32 653,2.0686598,207.15701,19.00129,37.662857,6.303 653,-5.5496197,212.83743,17.153547,41.017212,5.987 653,526.63354,222.07329,28.18341,57.639755,5.807 653,448.46002,192.02582,19.35495,39.372437,5.716 653,-5.6045094,-18.019466,17.300146,42.885395,5.634 653,626.70276,487.8437,20.572876,45.397705,5.609 653,369.31256,183.17137,25.050812,63.49527,5.603 653,612.79395,454.3532,39.720154,107.0921,5.602 653,360.42395,187.46213,24.318237,62.143524,5.552 653,-17.545835,-64.024284,56.271896,146.46611,5.495 653,180.21971,201.37274,16.442398,30.530807,5.494 653,484.38568,202.72015,28.487122,57.25763,5.415 653,-11.359568,-32.805553,29.679459,73.35009,5.406 653,611.61707,-49.973217,41.277893,106.227295,5.402 653,627.2357,-17.038395,16.751465,47.67819,5.394 653,547.651,155.67154,20.693176,46.823257,5.362 653,49.84741,210.84259,19.985317,32.988632,5.301 653,204.35866,196.48029,13.148178,26.648651,5.26 653,342.93857,181.25122,27.676605,67.99487,5.249 653,512.5897,149.3283,22.31311,54.82132,5.183 653,-21.577284,403.07477,78.922104,175.15375,5.09 653,551.1532,224.87424,28.26471,60.101013,5.082 653,42.311905,212.40865,20.079563,31.128052,5.028 653,-72.44271,266.6902,200.05066,459.76807,4.935 653,529.05066,147.92313,20.720581,43.04387,4.844 653,550.28424,148.16034,27.147766,69.557144,4.833 653,583.5904,410.9688,70.858826,177.49774,4.831 653,270.03873,200.89146,14.367889,22.087524,4.798 653,58.251972,211.49146,19.468067,33.29947,4.786 653,7.722571,205.33325,21.100496,34.02858,4.766 653,577.2821,230.8921,21.953674,39.751053,4.721 653,171.33102,200.79787,17.939133,31.17479,4.701 653,547.0019,213.33148,18.060547,33.248474,4.681 653,435.3798,194.85962,17.929565,34.50563,4.655 653,335.0465,202.46472,28.81897,62.93637,4.616 653,217.09982,165.39868,19.177826,40.392456,4.582 653,554.6189,226.51866,20.178223,34.047592,4.571 653,34.60742,213.14801,20.072773,31.620071,4.56 653,536.54047,311.52362,143.20624,341.831,4.513 653,497.31085,189.12132,20.598022,41.923798,4.482 653,269.03586,208.49016,15.975098,25.071014,4.472 653,518.045,-33.171986,28.442627,69.0603,4.469 653,282.31247,218.29259,18.956787,32.0233,4.402 653,26.818066,214.36394,19.58514,31.739746,4.397 653,597.2005,177.37936,30.755676,76.48059,4.382 653,298.66864,216.30309,19.127716,34.362762,4.345 653,541.48413,184.90375,52.589844,116.40997,4.325 653,533.3939,208.39825,28.227722,56.374054,4.321 653,532.7239,212.49269,38.526,83.22536,4.308 653,602.0052,216.07063,21.440918,42.38054,4.306 653,493.5037,227.89606,237.004,515.50397,4.296 653,504.77036,208.26959,22.548553,43.595367,4.282 653,618.1092,212.35368,21.198425,51.981888,4.233 653,477.0609,-14.315184,30.252625,63.821236,4.21 653,585.11664,231.80649,21.780945,36.795074,4.208 653,585.6414,-105.928665,76.74805,241.51186,4.203 653,493.4924,146.33374,30.542877,76.09021,4.173 653,569.21545,229.77762,20.759766,34.97455,4.163 653,515.6999,180.7165,40.213318,87.53917,4.155 653,519.7368,209.02856,26.578552,62.180847,4.092 653,458.8482,-15.3586235,16.769653,40.793884,4.08 653,513.80164,-18.389135,19.699402,43.227486,4.05 653,479.1292,216.74084,27.481934,60.576904,4.043 653,520.6586,147.16849,21.549683,47.389404,4.031 653,386.95654,212.9715,17.175476,39.26564,4.016 653,482.40665,204.57367,20.48993,40.66858,4.013 653,426.83002,200.74284,18.5289,34.579422,4.004 653,515.23285,146.31757,28.645264,79.351746,3.988 654,358.51367,181.70358,29.543243,71.78131,7.729 654,2.2633433,210.54372,19.952301,37.412827,7.512 654,268.6331,200.17165,15.303589,24.572723,6.454 654,164.42651,199.82243,16.34703,28.820358,6.388 654,-11.915017,476.7854,29.59626,64.24292,6.231 654,627.2753,-17.761978,17.274475,46.5334,6.072 654,-2.9154696,267.9587,13.76936,38.87094,5.982 654,-6.0123253,489.067,18.280252,42.389984,5.775 654,-5.6489477,-17.948704,17.29934,42.69308,5.704 654,627.42596,489.16928,19.742004,44.356415,5.599 654,155.5546,198.39508,18.172272,35.768448,5.582 654,612.94696,454.99036,39.105774,107.36774,5.569 654,-17.429928,-64.47955,56.09544,147.77806,5.518 654,346.8603,190.8041,20.025635,43.63907,5.467 654,-11.412874,-32.764687,29.701899,73.19498,5.436 654,622.589,-33.87383,26.8844,76.78871,5.405 654,7.822764,205.1932,21.927565,36.415405,5.37 654,170.92361,200.28047,14.719299,27.123672,5.313 654,274.49704,198.2999,15.796814,27.376465,5.262 654,128.94804,202.2271,20.617569,35.263794,5.139 654,583.4076,412.6072,71.29797,175.80289,5.111 654,-21.506142,403.2778,78.93262,174.90079,5.089 654,-72.454346,266.0936,200.07416,460.66434,4.996 654,146.88179,198.30283,19.14862,36.278244,4.974 654,406.25858,174.5068,28.764923,75.56186,4.949 654,593.7597,216.83087,22.27417,43.307922,4.893 654,554.9944,200.97035,18.393982,31.038239,4.836 654,529.76215,214.13689,22.612305,41.139297,4.829 654,554.5752,156.26512,21.596924,42.66855,4.741 654,562.285,200.76302,19.502808,30.83075,4.74 654,479.4232,182.33717,28.945496,62.65013,4.683 654,268.32492,211.90019,16.801392,27.129364,4.652 654,570.2612,199.76938,19.569214,31.385208,4.579 654,299.67578,215.15163,18.869476,34.207138,4.573 654,341.4998,191.30121,16.354767,34.126694,4.541 654,547.54626,189.41753,17.55249,33.980576,4.539 654,536.24976,311.24866,143.3291,341.1463,4.533 654,263.49597,199.51237,14.280701,23.549286,4.512 654,585.4933,-104.1548,76.850464,239.37636,4.462 654,177.53618,129.08286,26.516739,71.667404,4.432 654,569.7562,177.75601,20.720093,36.156265,4.42 654,489.12994,193.60501,21.844055,43.924973,4.406 654,391.0651,184.26703,26.813293,68.164795,4.405 654,602.84705,-56.00207,53.332153,139.21263,4.384 654,26.044855,214.47684,19.956598,28.953781,4.366 654,40.96979,207.17082,21.826916,31.307419,4.347 654,563.9358,183.54446,32.358276,58.613403,4.341 654,493.27325,227.31815,237.71008,515.79675,4.333 654,307.12665,212.89919,19.861267,36.01027,4.287 654,585.7929,179.36374,20.503601,38.65808,4.257 654,-5.6062655,206.1496,18.323307,41.06357,4.243 654,291.7515,207.8324,17.419891,31.434448,4.234 654,577.9916,179.19803,20.912231,37.377563,4.229 654,283.16495,209.2442,17.712769,31.003677,4.224 654,618.69403,105.76309,22.518616,58.77069,4.218 654,274.54907,211.10562,17.538696,28.934967,4.217 654,524.0286,181.43149,16.307129,36.89052,4.216 654,599.85913,189.6412,34.12683,91.48996,4.166 654,582.6592,194.40634,36.420288,82.26724,4.155 654,315.997,214.17819,18.834686,34.70639,4.13 654,348.2182,218.53812,31.893494,66.006744,4.107 654,578.40924,198.0685,20.045471,32.850327,4.086 654,343.47842,196.10635,29.216034,61.603485,4.06 654,539.01624,203.6543,18.226685,30.009262,4.06 654,545.1195,217.21066,22.310791,37.0282,4.051 654,189.46892,201.78038,13.541504,29.864197,4.049 654,531.74146,204.62189,17.056763,28.88124,4.047 654,33.900303,214.37807,20.374554,28.393814,4.043 654,137.16136,203.26007,20.423477,34.136246,4.039 654,180.39911,200.0244,13.131134,26.662537,4.033 654,589.0984,154.53003,28.140503,59.086166,4.032 654,301.37943,201.5188,29.04123,57.431763,4.015 654,482.45447,207.22295,21.920105,40.14911,3.991 654,322.60806,219.89133,20.060028,39.137817,3.962 654,619.77875,-5.7359133,18.808594,42.670467,3.961 654,421.77136,170.06113,27.13089,72.19542,3.91 654,455.7523,195.48051,20.280731,40.17433,3.907 654,534.1119,144.89624,27.898193,66.27379,3.902 654,-5.5175123,247.88867,16.865955,43.51776,3.893 654,478.62195,-35.45432,27.38031,74.01949,3.886 654,253.23251,222.39876,15.534088,24.076431,3.868 654,489.4159,-176.59367,234.59015,416.09265,3.853 654,613.9182,115.20331,34.852844,105.36218,3.844 654,614.5138,-20.049164,27.80127,73.01967,3.838 654,561.2094,168.30693,20.739563,38.091064,3.824 654,416.13205,187.12758,26.874084,70.15431,3.822 655,-5.97188,489.07956,18.140167,41.92856,6.289 655,-11.844732,476.24088,29.628904,65.252655,6.127 655,573.95337,212.7879,28.250244,78.82703,6.078 655,579.56995,197.03513,30.245178,72.11258,6.02 655,627.378,-17.423405,16.665894,46.66575,5.942 655,137.91913,199.15475,21.429916,39.732376,5.76 655,-5.581482,-17.87789,17.258764,42.750168,5.643 655,491.53384,255.5342,29.619354,63.87828,5.62 655,612.8748,455.1143,39.493652,107.41116,5.586 655,626.7362,488.50604,20.520386,45.10028,5.562 655,-17.539831,-64.31369,56.24035,147.35742,5.555 655,531.176,180.60785,31.288635,77.727356,5.52 655,555.0861,187.87683,30.90509,89.596466,5.465 655,-11.234238,-32.617443,29.590458,73.06957,5.422 655,611.4284,-49.41546,41.129456,104.11815,5.328 655,583.24384,412.94302,71.566956,175.50095,5.07 655,-72.54529,266.09186,200.14142,461.34332,5.053 655,-21.425507,403.64288,78.78548,174.61523,4.99 655,533.34357,110.92283,30.810486,57.383324,4.904 655,394.939,198.60661,17.19748,47.79059,4.833 655,131.13617,195.2399,20.150208,41.117676,4.661 655,378.8864,187.6512,19.284119,43.106476,4.654 655,536.5671,311.49307,142.78894,340.15866,4.626 655,459.78748,125.250015,29.911926,81.876114,4.617 655,145.91173,197.8412,18.896713,32.54039,4.608 655,3.7157583,201.54112,30.559174,53.641678,4.58 655,576.1273,201.67134,20.842834,61.009323,4.512 655,76.58207,190.74567,30.858307,56.517075,4.452 655,562.3738,29.83257,31.737244,68.25842,4.438 655,591.12585,204.29073,27.643433,67.60988,4.435 655,493.24557,227.78561,237.99783,514.99097,4.409 655,477.85394,253.70346,29.030151,66.002716,4.293 655,-5.3395147,249.95955,16.381138,37.790054,4.289 655,1.324259,162.03665,23.54677,71.40442,4.277 655,1.6950583,214.60709,21.146069,37.835358,4.27 655,548.8397,229.7468,30.268494,71.70868,4.248 655,387.56134,191.34506,18.559845,44.67514,4.231 655,268.55075,198.97614,15.1474,26.879257,4.214 655,541.22186,194.45862,31.212341,90.420105,4.212 655,115.5141,197.97852,19.288086,35.960205,4.202 655,203.5884,208.60487,16.748001,23.99112,4.198 655,588.3214,1.0712299,17.068237,31.282545,4.197 655,365.53622,183.97488,26.229065,57.21147,4.175 655,600.85455,185.46587,33.62738,103.12651,4.17 655,585.2986,-101.84789,76.147644,235.50912,4.128 655,475.61066,16.371075,29.886139,76.66588,4.094 655,333.75735,189.21272,14.0469055,26.135208,4.037 655,623.0445,-21.051786,26.481506,70.47274,4.018 655,123.52034,196.4737,19.753662,38.068527,3.996 655,596.2035,1.0517855,16.165344,30.944145,3.994 655,261.16724,199.12819,15.318024,25.449295,3.987 655,195.7652,208.85027,16.789902,24.652847,3.986 655,162.84715,202.9379,18.197754,36.54123,3.95 655,523.4803,173.20305,32.712585,61.01126,3.939 655,154.41568,199.22726,18.783966,36.846634,3.915 655,316.48517,222.24825,17.570343,36.780197,3.907 655,254.55322,199.61444,14.45285,23.00151,3.903 655,434.5583,257.75574,21.084839,49.68097,3.868 655,-4.172427,141.39606,15.419685,38.396362,3.86 655,-4.1574745,167.11476,17.073128,47.095688,3.854 655,588.6933,-13.391683,29.593933,58.060783,3.838 655,559.3161,187.2174,48.281494,121.64026,3.832 655,622.4005,198.60191,27.214294,78.725235,3.804 655,546.5155,160.85628,33.3067,80.325455,3.801 655,585.84625,200.03682,19.186768,49.948105,3.799 655,2.9729748,-15.64304,16.26669,39.288925,3.784 655,-8.936995,101.9525,38.519913,105.511795,3.78 655,-5.1338987,233.91447,16.362968,36.11989,3.745 655,439.77588,253.26569,25.666351,62.878662,3.736 655,354.74756,197.0863,19.811798,39.271957,3.724 655,2.4688876,490.55737,18.468985,39.96576,3.719 655,60.824352,194.8462,32.375416,52.46106,3.679 655,580.25116,0.78961754,17.41925,32.518173,3.665 655,620.4281,-3.4625273,17.406067,38.244377,3.665 655,576.45557,174.73517,47.63556,130.82129,3.663 655,487.52335,-174.99255,236.01974,414.2193,3.661 655,534.1503,-34.710304,27.234741,73.41998,3.65 656,481.89468,220.63559,17.308472,26.0999,12.565 656,270.505,210.05806,12.722809,21.42012,8.42 656,276.71945,208.56714,13.2335205,22.484406,7.24 656,492.00275,215.49557,14.404785,24.052505,6.404 656,622.95605,-34.518192,26.779663,75.70386,6.317 656,476.75226,215.74,15.426453,25.650772,6.201 656,-5.7703204,489.40338,18.008099,42.241394,6.174 656,-8.74741,464.98535,37.385334,92.02759,5.979 656,262.33524,205.3947,12.192566,19.511795,5.962 656,627.0226,-17.833094,17.843262,46.246784,5.892 656,468.66302,218.00566,17.87799,28.728287,5.799 656,-5.669919,-18.15932,17.365961,42.957653,5.785 656,-11.319356,-32.73805,29.658844,73.186264,5.659 656,-17.574747,-64.39672,56.22474,147.47546,5.618 656,254.2534,208.47217,13.231461,19.206299,5.564 656,376.50772,185.8203,31.688324,57.69037,5.553 656,457.88467,218.96848,20.276947,29.64444,5.528 656,128.5726,195.78555,22.112305,41.853043,5.388 656,349.12967,199.88428,14.392426,24.483444,5.318 656,603.1237,-54.327488,52.724426,132.1561,5.31 656,613.3481,454.1492,38.455505,106.786896,5.298 656,626.6122,487.9158,20.990479,45.80789,5.244 656,465.8359,34.319317,33.062958,76.055115,5.222 656,-5.5973854,200.03162,19.107151,42.809235,5.162 656,121.16785,199.74966,21.771332,39.65338,5.099 656,1.958794,212.06006,19.205334,39.888336,5.069 656,557.55835,213.32678,30.868713,55.52713,5.039 656,-21.49457,403.30368,78.81841,175.21182,5.024 656,-72.68939,266.28888,200.39223,461.02118,5.018 656,2.5059915,220.08154,40.80611,95.693665,5.01 656,500.86432,212.83525,13.953491,24.994095,4.962 656,4.6764383,199.21657,29.241024,54.82077,4.924 656,595.35693,207.16135,15.6467285,27.01947,4.907 656,591.5659,212.97227,20.64679,37.93805,4.902 656,583.71716,411.4243,70.80377,176.8024,4.896 656,513.9708,171.78369,19.622437,41.653473,4.806 656,108.37164,192.97014,30.05194,50.152832,4.784 656,570.6382,213.9254,20.794312,36.05533,4.616 656,536.05695,310.4145,143.82343,342.35114,4.599 656,284.4135,220.00186,14.923004,26.599014,4.568 656,247.1743,206.24222,12.232864,18.16658,4.567 656,554.87964,211.96967,18.642822,31.100159,4.517 656,508.79306,210.84996,13.856232,26.144714,4.474 656,147.30673,199.31454,19.26622,35.773193,4.444 656,195.86389,208.34973,16.71347,26.040298,4.441 656,261.7168,222.12764,14.357941,24.099716,4.435 656,599.6947,211.1851,34.01233,102.521286,4.417 656,493.65573,227.74994,237.31339,515.2857,4.402 656,154.8075,205.24481,17.504608,29.327332,4.366 656,-5.812725,222.3954,17.270716,39.05629,4.362 656,618.39935,204.3467,16.76715,42.19812,4.335 656,585.89655,-101.10365,75.37085,233.91751,4.317 656,-4.1470966,172.06543,15.456764,40.45096,4.314 656,203.22725,208.80946,16.408005,24.616669,4.29 656,594.58936,-45.328224,43.467957,97.5875,4.248 656,460.34735,205.49808,15.430603,29.318008,4.248 656,451.6913,216.14688,19.26477,31.001373,4.232 656,592.97046,158.0638,21.306824,35.65164,4.231 656,521.766,174.10074,18.677063,40.206696,4.224 656,318.2256,210.37833,13.770508,28.810867,4.2 656,-5.3452086,283.4842,16.806734,36.878937,4.162 656,587.88916,214.83421,27.925781,63.696396,4.153 656,506.94073,182.41144,18.97937,38.01837,4.136 656,3.447165,286.87152,18.175816,32.99112,4.121 656,284.76355,209.2334,11.985718,21.141327,4.104 656,524.33203,194.59787,14.967285,30.851059,4.099 656,562.84863,211.91798,18.724365,31.326279,4.083 656,-11.050125,196.47102,28.772118,64.43526,4.072 656,137.5154,202.56055,19.731949,36.033615,4.067 656,468.72482,206.4627,14.919952,28.215164,4.029 656,-8.718506,101.17799,38.654747,106.8988,3.945 656,620.1403,173.98572,17.069885,39.65027,3.933 656,426.08627,195.73068,18.261108,31.862152,3.925 656,594.7615,107.04925,32.376038,66.65089,3.922 656,254.07051,222.13806,13.891495,23.379913,3.92 656,507.80994,245.75302,33.08966,52.47528,3.906 656,276.2222,219.1948,14.925415,25.813599,3.893 656,2.6066346,490.75705,18.496737,40.004364,3.892 656,187.73004,207.03131,16.267029,26.218384,3.866 656,428.0161,216.44104,17.609833,27.532333,3.853 656,2.9603057,-15.899391,16.386953,39.505756,3.847 656,269.15433,220.95749,14.14505,24.14096,3.847 656,310.4788,202.09157,11.441681,20.463837,3.819 656,418.71323,195.13441,18.060333,32.095642,3.798 656,343.00378,200.58473,13.279144,22.623077,3.78 656,392.69263,196.28683,21.39215,38.459427,3.776 656,577.2701,217.05917,23.889343,47.57831,3.763 656,614.15643,206.0752,33.9859,109.64136,3.75 656,452.7273,211.31834,29.621948,49.64998,3.745 656,92.8548,194.12923,30.74318,50.85994,3.743 656,254.27605,195.44632,12.537704,21.035309,3.742 656,516.4106,208.29964,14.701843,28.947433,3.736 656,613.5822,-21.026442,28.785889,72.82889,3.735 656,618.49927,-6.6130943,20.349243,43.287567,3.725 656,471.6112,212.54338,26.745087,41.323578,3.719 656,317.70615,201.35042,11.86554,21.674133,3.697 656,611.2055,214.72554,20.753967,45.61113,3.696 657,583.9474,231.57883,23.397034,32.415924,12.845 657,578.3266,228.7702,21.047607,28.09491,9.336 657,543.26074,228.64662,26.158813,38.282852,7.986 657,623.77856,-34.77721,25.64746,75.80141,7.624 657,570.2813,228.42316,20.168518,26.989105,7.599 657,561.5966,228.31808,21.106812,28.391998,7.234 657,506.50943,224.5365,20.355255,35.657898,6.929 657,627.15295,-18.217012,17.27356,46.676243,6.649 657,-11.737825,477.28845,29.70219,64.279236,6.166 657,603.68726,-54.66037,52.994507,130.90344,6.141 657,-5.8509684,489.61813,18.211826,41.57071,6.03 657,586.71893,224.04872,17.964478,26.262405,5.942 657,626.8253,487.70618,20.562012,45.527588,5.827 657,549.3192,-2.3882065,30.108765,69.00685,5.811 657,-5.7447767,-18.001366,17.401524,42.67461,5.726 657,613.4412,454.57938,38.5119,107.42154,5.709 657,-17.632837,-64.23529,56.388718,146.73082,5.635 657,576.4424,173.99988,19.335144,38.351425,5.633 657,-11.506008,-32.605762,29.845398,73.00649,5.609 657,592.3699,228.9339,19.84082,29.23883,5.435 657,552.13025,227.58154,22.211243,30.414337,5.271 657,426.1441,202.93626,32.729828,62.941757,5.178 657,583.72644,412.4566,70.72827,175.62885,5.17 657,154.47775,202.54343,19.01384,35.48784,5.113 657,614.4192,-21.184517,27.17456,70.3371,5.065 657,-72.55373,265.98163,200.32916,460.94537,5.013 657,-21.462875,402.98822,78.72908,175.04694,5.0 657,-4.4530363,203.17174,17.086071,39.644028,4.948 657,270.2956,209.20401,14.832611,22.751785,4.942 657,587.7593,212.69556,16.216675,26.401627,4.933 657,-4.291783,157.4675,14.860582,34.16324,4.831 657,580.9592,204.18137,37.42102,72.473114,4.799 657,439.5277,218.5104,24.382843,45.105774,4.771 657,586.99066,199.61409,16.907776,30.491608,4.768 657,579.33453,211.80057,17.070068,27.056183,4.746 657,269.01688,221.2748,15.510071,24.22792,4.714 657,275.50607,211.29202,15.857941,25.828278,4.702 657,539.02765,225.368,21.744324,33.182816,4.66 657,619.1849,-17.93436,17.391174,43.364033,4.658 657,284.44684,225.21263,16.296082,27.283142,4.651 657,261.30975,221.86125,15.659637,23.932388,4.622 657,535.89856,311.1656,144.06909,341.54724,4.59 657,319.24817,203.11497,10.737915,22.064163,4.545 657,578.9883,198.23172,17.071777,31.25972,4.52 657,161.77719,204.1175,18.83635,34.045715,4.52 657,491.27225,221.19489,17.236176,28.187332,4.475 657,493.32883,227.65057,237.78873,515.9216,4.458 657,170.17099,205.59134,18.35701,31.402405,4.418 657,618.7354,489.01334,20.47052,42.8179,4.416 657,325.49323,217.38605,15.27356,29.758163,4.41 657,594.3425,-43.771786,42.96216,96.3963,4.369 657,572.88794,180.7253,17.490906,38.9787,4.354 657,48.73503,181.11314,19.539665,32.632996,4.346 657,253.6948,221.94273,14.705505,22.50241,4.265 657,556.48914,177.46843,16.29248,37.348602,4.258 657,291.89273,226.24103,16.79956,27.876602,4.252 657,58.487923,195.71362,19.962814,33.46057,4.228 657,595.55304,210.91496,16.29425,28.167236,4.21 657,59.677933,203.54941,29.303886,47.41446,4.206 657,586.4838,-101.09466,74.1814,232.37454,4.203 657,483.57214,220.34753,17.112335,28.564896,4.2 657,564.2586,-14.496819,32.00354,71.485794,4.187 657,371.8054,196.38895,16.622406,29.867737,4.168 657,564.9139,181.6725,16.49945,37.539444,4.155 657,530.7127,222.8251,20.291992,32.59076,4.149 657,553.1079,-19.28843,20.327393,49.459095,4.138 657,58.128166,182.5275,18.86016,30.737915,4.116 657,6.077862,195.65123,26.964413,54.615433,4.105 657,556.423,-33.71855,30.276367,82.38271,4.079 657,521.2318,223.43127,20.062073,31.253586,4.077 657,186.7056,216.6802,17.995773,25.684814,4.055 657,603.2923,170.2258,18.596863,39.955597,4.043 657,332.26108,217.83922,16.355927,31.218475,4.008 657,472.94843,-18.325203,19.388458,44.23473,4.008 657,597.27057,196.63051,36.347595,81.150986,3.994 657,507.67868,213.22934,17.130768,29.900452,3.994 657,-4.6783257,169.73293,15.941956,39.58383,3.967 657,475.95535,222.61543,17.604065,31.072983,3.912 657,513.9436,219.181,19.315918,32.173416,3.891 657,467.25677,-31.04242,30.641724,71.46901,3.881 657,310.98834,207.45752,11.206421,23.028,3.877 657,3.919713,231.35371,15.38569,29.996841,3.861 657,499.4762,224.56369,18.950867,33.207825,3.852 657,66.38931,190.19731,19.98162,32.605957,3.84 657,-3.7278461,142.10956,13.902888,32.863785,3.826 657,475.82635,199.35112,15.274231,29.316452,3.819 657,467.59534,127.042694,19.295044,34.35852,3.818 657,561.5583,-17.215967,19.470886,45.608902,3.814 657,467.2141,165.54176,16.645172,31.167953,3.79 657,-5.33968,238.93718,16.176668,36.874893,3.787 657,459.26144,166.58585,17.02304,30.49736,3.772 658,319.33746,207.06769,11.714539,25.545624,8.479 658,325.63385,206.334,12.02124,26.331604,8.396 658,310.02527,207.18085,12.249817,24.74997,6.71 658,618.3186,163.01166,19.718628,57.45749,6.629 658,626.9116,487.47388,20.11908,45.989685,6.327 658,-6.094942,488.56497,18.581694,42.955414,6.181 658,-12.088499,476.8044,29.92134,63.37271,6.174 658,136.84265,206.12811,21.79538,33.884674,6.164 658,622.8668,-33.641563,26.485046,77.08121,5.82 658,-5.6488695,-18.054434,17.322674,42.850025,5.783 658,613.1457,454.17142,38.99591,106.65268,5.691 658,627.35657,-17.568907,16.913757,47.3368,5.641 658,-17.577011,-64.73246,56.203793,148.0167,5.531 658,4.1349583,192.29773,16.320131,38.594345,5.509 658,-11.246569,-32.43019,29.616278,72.784454,5.474 658,145.62784,205.2335,19.83023,31.014648,5.37 658,583.5119,412.7117,71.04657,175.39304,5.15 658,-72.84953,265.7157,200.5083,461.55237,5.127 658,602.4881,-55.67187,53.63672,140.03981,5.089 658,-4.047226,156.2721,16.03532,40.97769,5.079 658,262.0007,215.65613,14.370483,21.532166,5.069 658,-21.647741,402.82907,79.06097,175.06705,5.013 658,529.8806,179.53871,17.481201,37.01581,5.01 658,301.91806,207.69774,12.282501,23.005753,4.808 658,-3.4374604,180.11028,15.582199,42.60634,4.744 658,10.35116,194.36124,17.253466,37.74176,4.718 658,2.765987,220.37177,17.489271,37.259277,4.682 658,237.25859,220.228,15.040207,20.960526,4.676 658,535.994,310.62842,143.92609,341.96826,4.673 658,268.07047,219.96988,15.315491,25.284576,4.667 658,396.06277,175.65039,28.726715,60.95981,4.591 658,-5.174918,221.40237,16.955399,40.197235,4.586 658,269.59384,211.41837,13.82724,21.310379,4.568 658,253.23471,228.57582,15.843079,25.06485,4.525 658,3.9163237,174.12483,16.16492,42.625916,4.508 658,-3.7007987,142.13567,15.261052,36.79622,4.498 658,275.5859,214.0248,14.907196,23.398361,4.486 658,-3.7314425,201.4523,16.387102,41.65526,4.418 658,229.6636,219.20409,15.559662,22.145538,4.411 658,493.2828,227.84549,237.89645,516.12463,4.405 658,-17.052288,155.37424,49.32381,133.32706,4.382 658,332.49112,207.48904,12.383606,25.417542,4.291 658,537.5674,216.71762,32.638733,63.023254,4.228 658,244.64725,221.08514,15.33313,21.57782,4.212 658,221.29549,220.12105,15.637497,21.531754,4.2 658,539.99963,199.90402,52.572388,112.75391,4.173 658,510.9165,202.02718,51.73297,111.16429,4.036 658,292.84204,227.5769,15.884674,27.415726,4.033 658,620.5305,-4.1546326,17.48999,41.172264,3.983 658,585.77795,-106.20328,76.99115,242.7967,3.926 658,554.9255,5.969496,18.895874,38.658966,3.923 658,129.33313,201.749,22.45964,36.640198,3.908 658,529.5353,165.97928,18.149292,36.52289,3.877 658,338.5579,76.630005,31.169159,70.01956,3.855 658,2.8858514,-15.702198,16.404594,39.224426,3.848 658,524.93604,169.90149,26.504944,59.15297,3.833 658,2.9191613,158.67226,17.14242,40.844604,3.83 658,588.5436,1.5771008,16.838623,33.65397,3.817 658,525.31494,183.12534,16.604797,41.372894,3.803 658,90.24681,215.63983,20.434914,31.153763,3.798 658,260.48212,228.48145,16.105286,26.457626,3.793 658,538.568,172.86469,17.256104,33.15599,3.791 658,9.941727,214.60458,18.106003,36.5278,3.787 658,253.11069,217.64508,15.382904,22.157166,3.78 658,2.757821,216.58142,37.67875,85.89172,3.778 658,154.29243,208.18613,17.857391,28.868484,3.747 658,615.22437,32.68585,25.70697,75.84651,3.738 658,614.10425,161.06525,33.010254,106.40494,3.694 658,444.12534,221.4364,16.116638,30.1268,3.656 658,618.64105,184.0156,19.946655,57.63623,3.649 658,598.0046,215.35977,36.42444,90.46692,3.617 658,618.8117,489.29837,20.211792,43.824554,3.609 658,301.16766,227.90797,15.671204,28.27684,3.605 658,489.579,-176.17282,234.81375,412.86584,3.599 658,276.44348,204.81302,12.911652,21.447159,3.591 658,58.11004,206.77217,21.827522,36.28911,3.589 658,444.21994,247.92538,17.53183,29.152313,3.583 658,325.53494,228.01729,13.963196,26.03012,3.58 658,-9.676333,137.89537,39.55663,97.044785,3.571 658,317.95844,227.3028,13.896881,26.255508,3.567 658,5.6359196,466.3367,37.757507,97.27658,3.566 658,212.75444,220.07349,16.14711,21.806473,3.553 658,553.86316,95.69035,20.244751,34.4478,3.552 658,293.90637,204.51143,12.2777405,20.423172,3.532 658,444.3167,208.08426,16.853363,32.323074,3.53 658,451.58206,247.09735,17.808044,30.209839,3.524 658,436.13156,203.75177,17.704681,36.76021,3.522 658,284.34216,226.14081,15.924866,28.391602,3.512 658,316.9283,238.05849,15.2100525,25.206253,3.502 658,596.31213,233.24734,18.864014,33.18228,3.497 659,-18.117851,-65.87543,56.3744,150.98766,6.807 659,-5.317339,199.07225,18.587067,43.466522,6.702 659,325.24487,199.41098,15.744995,29.707504,6.482 659,331.63998,202.52914,14.488403,31.885925,6.303 659,-6.026237,488.75296,18.438702,42.581512,6.009 659,613.10376,453.27197,39.4729,109.21216,5.939 659,627.50964,-16.67882,16.703247,46.393826,5.752 659,-8.889777,464.33902,37.730644,92.978485,5.66 659,-5.6459656,-17.94109,17.30989,42.848793,5.629 659,-11.247106,-32.511772,29.5294,72.90842,5.482 659,2.048481,188.9471,18.90242,42.93965,5.42 659,300.96448,201.11569,13.315887,24.768967,5.366 659,611.4839,-50.687668,41.289062,106.46145,5.311 659,284.854,217.43349,14.573883,28.801147,5.296 659,-73.05121,266.28217,200.73871,460.9892,5.133 659,583.4995,412.23828,71.09515,175.77002,5.082 659,-21.609646,402.4256,78.98064,175.53302,5.056 659,498.28088,212.44205,20.233276,39.778473,4.947 659,276.4956,218.50928,15.193146,29.153137,4.848 659,0.48077703,199.19084,25.490711,57.516647,4.798 659,626.5249,487.47284,20.826782,46.142273,4.797 659,-5.8824205,220.24463,18.11126,41.623962,4.641 659,268.51657,220.04086,15.233002,29.412354,4.583 659,536.14874,311.00336,143.35657,341.4107,4.578 659,277.4145,193.71417,13.214966,23.77037,4.561 659,-16.817616,154.03061,50.100574,132.61423,4.549 659,269.68127,181.33934,14.161987,27.784286,4.524 659,616.1012,187.85458,25.688477,78.12378,4.453 659,285.75037,202.81953,12.222809,22.01004,4.446 659,8.398582,212.2974,20.91838,40.086533,4.426 659,493.30246,227.60464,237.72348,515.72375,4.419 659,261.0221,219.56427,15.014862,28.576706,4.361 659,443.5263,-12.884238,16.10205,37.942215,4.344 659,277.76825,207.6336,12.983063,23.267487,4.316 659,325.79706,214.60127,13.774597,32.409317,4.298 659,-4.3341527,171.44398,16.488989,43.202682,4.291 659,572.09247,177.1986,17.919495,43.04387,4.288 659,276.92462,181.12971,13.821655,27.90445,4.286 659,596.51056,194.7887,32.40143,65.06879,4.227 659,253.84842,213.74774,14.65625,23.33139,4.221 659,-8.61453,69.43019,38.28929,110.239395,4.201 659,269.64554,203.3399,12.832092,21.53482,4.114 659,294.12427,201.78035,12.493835,23.529938,4.093 659,308.74026,203.50105,13.603943,28.49327,4.085 659,339.58676,204.7559,15.03775,31.115387,4.073 659,466.95218,203.53922,20.430786,46.625793,4.065 659,506.19247,218.38387,20.206512,38.912125,4.059 659,451.3247,-11.030878,16.00592,37.14123,4.046 659,-3.1890001,158.79132,14.307307,36.545685,3.983 659,585.50256,-104.45363,76.49646,240.24649,3.936 659,444.7528,-11.317055,29.499847,66.03861,3.933 659,45.058777,184.74652,29.742287,54.72148,3.916 659,16.193697,202.4572,24.226522,40.08635,3.914 659,485.82977,165.71582,29.833313,77.846725,3.909 659,492.2827,216.02625,18.787567,41.399017,3.893 659,621.055,-1.891777,16.508362,38.2609,3.875 659,317.48492,200.34842,14.735504,27.26796,3.874 659,260.7175,210.20296,15.014343,23.59581,3.868 659,285.26416,193.6046,13.473358,24.3844,3.797 659,318.06918,215.17265,14.593323,31.870392,3.791 659,442.8217,219.71674,19.243011,33.686676,3.788 659,2.8891568,-15.784314,16.365936,39.44719,3.758 659,-10.50666,202.66264,27.810568,63.210556,3.741 659,522.5367,-16.368023,17.36731,40.58891,3.726 659,36.426334,177.10435,28.529758,56.67157,3.716 659,309.52594,212.45703,15.045471,33.51729,3.69 659,245.16328,220.81458,15.130051,22.136139,3.684 659,284.9417,182.72467,13.844116,26.906754,3.669 659,530.357,-16.617592,17.989075,40.67036,3.656 659,482.96338,-13.717462,16.517334,39.481415,3.656 659,138.45213,202.84253,18.549042,36.33185,3.639 659,477.13495,154.95457,30.311584,73.27638,3.62 659,429.00113,239.42694,15.344757,24.439972,3.618 659,444.3158,238.26288,15.922913,25.471802,3.608 659,62.094612,192.02025,28.028305,51.886932,3.602 659,475.0951,218.65108,17.543396,39.53871,3.577 659,514.63824,-14.04087,17.30658,38.80036,3.576 659,2.2404635,217.0798,39.679176,83.75232,3.576 659,488.45047,-176.05127,235.6005,412.64087,3.564 659,6.1012325,158.4663,13.158262,28.894928,3.563 659,22.662033,181.44112,27.71933,58.981186,3.554 659,474.99506,-13.245619,16.250671,39.051228,3.553 659,-5.1495886,247.21242,16.338545,37.902145,3.54 659,292.5921,214.08922,15.2230835,31.27118,3.53 659,386.37967,193.42313,19.907013,34.95558,3.525 659,459.22906,-12.072106,16.070038,37.72094,3.524 659,269.2202,211.51569,14.088348,26.08751,3.51 659,582.82495,177.5336,35.9599,87.94449,3.504 659,105.68016,209.69922,20.307861,34.20967,3.496 659,588.7151,-2.6971054,16.50122,36.277477,3.483 659,260.85355,190.57649,14.590698,25.468689,3.482 659,316.15607,233.00352,16.917511,35.595688,3.478 659,58.22811,187.5839,21.052353,32.759903,3.469 659,469.84766,207.45541,26.527588,62.29471,3.457 660,1.1360693,179.9346,22.162937,49.526962,6.987 660,626.5159,488.79456,20.70935,44.22345,6.336 660,622.5843,-33.96084,26.316772,80.331604,6.191 660,-8.9053335,464.35385,37.83173,93.030365,6.184 660,377.95102,192.49033,19.8432,40.426025,6.141 660,626.8646,-19.571665,17.728394,50.733353,6.111 660,-4.127166,158.84174,16.800142,39.36212,5.886 660,-17.881977,-66.381,56.15009,150.65121,5.825 660,613.4377,455.03436,38.405457,106.948975,5.824 660,-5.672171,-17.88605,17.40341,42.76056,5.613 660,360.8615,192.78877,18.161926,44.903336,5.578 660,-11.319705,-32.74722,29.55431,73.248474,5.328 660,-5.9972425,489.90274,18.123314,42.011627,5.285 660,-4.2114863,141.85056,16.008595,37.086044,5.208 660,-4.5009212,171.37534,18.141602,45.366302,5.16 660,584.11975,412.24576,70.4126,176.26694,5.159 660,47.048153,188.1497,28.97205,56.078674,5.137 660,283.23404,219.09888,17.98114,31.493484,5.113 660,-11.824651,478.0389,29.429752,62.46927,5.071 660,-4.1646385,187.06335,18.587557,47.802536,5.011 660,-72.62286,266.43597,200.32129,460.0746,4.994 660,618.9581,-19.634237,18.630981,49.237846,4.949 660,-21.54274,403.37622,78.92275,174.77661,4.942 660,-14.984989,154.35033,47.773464,131.9034,4.889 660,228.29709,211.89,17.146317,25.556,4.867 660,269.09143,210.089,13.988983,22.156693,4.839 660,-8.990486,153.31535,27.918678,69.04033,4.816 660,580.35474,211.88507,16.458984,30.9711,4.743 660,300.56125,205.73357,15.412994,31.400635,4.735 660,212.7906,210.46017,16.748611,25.494919,4.664 660,602.06775,-56.46945,53.960693,142.3517,4.61 660,220.32549,211.23453,16.909607,25.604584,4.582 660,524.1116,194.8346,16.648254,28.777771,4.479 660,179.65573,199.68456,16.731216,24.189178,4.465 660,572.883,213.76373,16.218323,30.414917,4.434 660,536.2537,312.20972,143.20764,341.02026,4.324 660,531.2785,193.49782,18.780945,31.095154,4.314 660,492.993,226.20123,238.0375,518.39496,4.287 660,585.38196,-103.27716,76.37799,240.12932,4.256 660,53.71067,168.96024,29.362495,64.42912,4.252 660,293.04105,203.61842,13.832153,28.225739,4.168 660,618.87714,490.90173,19.958557,41.65503,4.166 660,572.3496,196.2889,16.942444,32.183548,4.152 660,1.6245031,199.95482,20.399345,44.764114,4.119 660,235.67578,207.5653,15.338333,22.934647,4.111 660,204.56953,209.59688,17.266342,25.045609,4.083 660,65.94215,177.25906,19.70578,40.34282,4.077 660,323.91708,198.09695,16.067596,34.439728,4.068 660,291.0662,214.97414,18.22351,34.335693,4.042 660,285.8302,184.2387,13.69046,24.504837,4.026 660,205.1983,198.88081,16.42279,25.150864,4.002 660,277.03455,209.36046,13.936157,23.070724,3.982 660,58.01045,177.75832,20.281345,41.747986,3.973 660,39.027176,172.56265,28.014,63.78813,3.95 660,3.9572568,239.66408,15.889606,30.680923,3.94 660,4.583359,162.7507,29.80542,60.10576,3.921 660,253.2733,214.12807,15.989853,25.439926,3.899 660,5.485308,465.4611,38.457096,99.30032,3.844 660,539.28424,193.9912,20.600403,32.374954,3.824 660,376.44086,34.856422,37.08954,64.20694,3.818 660,275.31238,220.02213,17.409363,30.887253,3.814 660,4.955561,114.47362,14.364939,27.888885,3.809 660,517.00275,195.57927,15.034119,28.282227,3.806 660,308.03204,210.3476,17.149292,36.38803,3.798 660,-3.5794637,127.37753,14.394281,32.967712,3.797 660,379.09195,173.40645,28.741241,61.9077,3.785 660,-5.3910885,232.87767,16.555912,35.403183,3.783 660,499.11514,209.62477,17.91867,31.758469,3.777 660,2.8286958,-15.734205,16.46496,39.39517,3.776 660,317.53543,199.62518,14.511627,31.617523,3.776 660,3.25594,161.74167,18.49572,37.514862,3.767 660,562.96674,194.28366,17.90802,35.160217,3.763 660,-37.960938,-123.05318,118.4427,284.5044,3.744 660,514.38727,207.51837,19.098206,31.717697,3.722 660,544.566,201.88097,20.657104,34.36943,3.714 660,261.37555,203.89877,14.101746,21.753296,3.69 660,2.389568,213.88336,39.257244,88.32117,3.687 660,491.5628,210.40579,17.799652,31.170593,3.677 660,286.58948,202.5961,12.150787,20.93927,3.664 660,-9.251918,70.33389,38.8752,106.00972,3.662 660,538.88306,220.13716,20.36792,35.9821,3.656 660,563.8587,212.80052,17.027039,30.667526,3.635 660,285.09857,208.20233,13.760254,26.475159,3.635 660,467.03168,211.3826,18.193085,32.8432,3.624 660,482.5592,209.75879,18.136963,32.884186,3.618 660,460.8125,217.20555,17.088531,33.257004,3.604 661,-4.133545,200.52603,17.273708,41.572372,7.903 661,622.78186,-34.394123,26.892761,79.18646,7.029 661,-18.06679,-65.42851,56.53002,150.94081,6.899 661,626.9732,-20.131817,18.073303,51.150696,6.574 661,626.78345,488.49817,20.37268,44.591675,6.413 661,-4.9132786,154.80925,19.089201,43.477753,6.109 661,-6.0153255,489.24915,18.402626,42.101562,5.682 661,-4.1870713,170.65674,17.828382,44.007248,5.595 661,-12.089825,476.7852,29.949081,63.7034,5.577 661,324.9228,216.09235,15.670654,36.3154,5.531 661,613.3651,455.70782,38.15222,106.363525,5.441 661,235.7097,216.41185,18.120743,30.555618,5.43 661,-5.6817555,-18.18726,17.437416,43.487595,5.428 661,-11.181578,-32.54741,29.409939,73.72857,5.353 661,583.9394,412.64432,70.81824,176.12985,5.337 661,332.22107,216.01996,15.704926,34.811142,5.202 661,-5.4054823,139.36023,17.64873,40.049225,5.085 661,441.5573,-15.469561,34.314087,67.808876,5.07 661,293.19086,212.6211,13.912048,21.526367,5.052 661,-9.063243,150.01263,28.823025,69.04608,5.024 661,-72.92373,266.17346,200.83815,461.17603,5.002 661,25.956793,212.08008,23.747454,40.829636,4.965 661,602.81464,-57.366898,53.378967,132.29245,4.958 661,-21.579037,403.2035,78.78624,175.00403,4.941 661,553.0458,-18.088982,19.834534,43.95573,4.888 661,300.8878,213.23735,12.985626,20.113815,4.826 661,545.78705,-14.486877,33.91382,68.38181,4.819 661,422.91516,165.73596,30.464966,72.76854,4.707 661,554.3424,202.63292,21.35205,37.55455,4.677 661,-16.98521,155.08806,49.215458,129.68471,4.639 661,0.7181823,204.06697,19.625431,44.665283,4.621 661,618.86804,490.516,19.448547,41.369873,4.604 661,2.7875507,172.35788,20.025322,44.07451,4.494 661,326.276,210.43619,12.803925,22.902557,4.487 661,593.71497,-45.373085,44.836548,94.718834,4.469 661,535.9673,311.9448,143.4364,340.72855,4.404 661,524.10077,-16.430103,34.139038,65.84131,4.39 661,523.8496,138.10823,34.49591,72.06181,4.357 661,432.798,3.8153763,36.882294,67.42996,4.344 661,442.85437,220.35596,17.501709,32.725525,4.344 661,616.3445,218.95937,23.269653,51.576553,4.318 661,-10.546715,102.50719,40.36664,102.99016,4.313 661,492.92365,226.20694,237.73462,517.2811,4.31 661,590.6966,216.5219,29.551575,55.834915,4.309 661,586.6237,-100.013794,74.1814,230.16537,4.288 661,561.5368,210.2756,19.74408,38.63597,4.249 661,378.87305,203.75113,18.248383,35.88121,4.237 661,596.7129,198.58983,31.68335,65.74437,4.227 661,38.538574,173.07652,26.661003,63.903,4.224 661,556.2534,215.79816,19.010986,38.189438,4.223 661,227.74748,215.63478,19.159958,30.819534,4.158 661,427.22043,205.79475,17.651886,35.677628,4.128 661,615.5078,-23.294167,25.826477,77.739204,4.118 661,421.20642,214.92673,15.730896,31.852905,4.108 661,194.87747,205.41225,18.853943,32.551346,4.085 661,1.8305051,156.61427,22.097536,44.3712,4.072 661,414.49246,-18.442966,30.940338,69.981895,4.06 661,340.22473,214.24673,15.475494,35.982452,4.045 661,568.939,218.5486,19.227844,35.19284,4.024 661,467.6913,217.08038,18.878174,35.983353,4.006 661,428.62607,219.86899,16.824219,32.790543,3.995 661,41.223724,203.08034,21.76915,40.170532,3.963 661,5.067154,164.10873,27.255997,64.09665,3.956 661,498.3914,219.0695,17.268524,32.106064,3.944 661,202.56517,213.9477,18.584976,28.562302,3.936 661,317.12476,218.38196,15.330811,36.29103,3.932 661,552.5648,219.60274,27.780762,57.846786,3.929 661,413.495,112.81025,29.950317,70.78063,3.924 661,363.15204,228.30365,19.303955,40.35147,3.918 661,435.73013,214.00256,17.638092,34.69214,3.903 661,3.5003562,190.60617,16.759407,40.263535,3.889 661,529.3834,-17.938969,19.821533,42.42758,3.862 661,-5.5976253,216.44826,18.086695,44.459427,3.838 661,524.4509,224.26086,17.444946,30.500443,3.829 661,518.6464,-33.10196,29.07312,73.440994,3.828 661,355.50595,229.07312,18.985046,41.01944,3.817 661,585.94086,-17.987064,18.255554,44.582832,3.813 661,577.9284,-16.654713,18.187012,42.785427,3.812 661,433.9067,-16.370865,18.937225,42.986866,3.786 661,7.452991,193.61836,25.446793,56.99742,3.774 661,309.6209,213.44624,12.619385,23.195557,3.76 661,545.3395,-17.554007,20.27826,44.52594,3.75 661,251.92984,218.07141,17.832703,30.787094,3.741 661,129.27892,217.36662,43.76906,73.16737,3.726 661,186.6148,204.40059,19.650757,34.223984,3.717 661,171.71393,192.88734,16.690369,26.759811,3.717 661,244.0703,217.34435,17.71141,30.8712,3.714 661,489.6289,218.73596,17.955994,34.080185,3.709 661,15.878816,186.6088,25.296669,59.151123,3.707 661,522.0591,-18.41221,19.12555,41.976044,3.706 661,449.36703,-16.19228,18.030426,41.732056,3.702 661,496.67328,160.51279,20.961304,32.927475,3.686 661,-5.227579,246.90356,15.865988,35.912354,3.67 662,-17.559193,-64.35379,55.90237,149.71028,7.213 662,612.85925,219.31967,28.180542,81.9314,7.014 662,290.9274,207.77151,17.056427,26.870087,6.72 662,-12.078049,475.6572,30.099426,65.082794,6.073 662,621.7516,-33.344822,27.540955,76.54457,6.033 662,-4.544497,172.64319,17.758043,40.66739,6.011 662,-5.993607,488.65173,18.385757,42.79901,5.979 662,-4.851032,141.14514,16.538595,37.722183,5.819 662,612.333,186.45447,29.145508,83.69455,5.814 662,-4.394465,155.27121,17.305017,40.402206,5.8 662,615.17206,154.16586,24.953918,83.66263,5.729 662,-5.409084,-17.461102,17.022123,42.61414,5.714 662,626.7365,488.13034,20.510864,45.20224,5.57 662,589.20917,212.53206,31.774658,66.619,5.469 662,-11.517181,-32.656223,29.672003,73.8457,5.311 662,236.1524,204.82446,17.150375,25.170334,5.281 662,589.4243,179.81613,30.525024,70.7218,5.269 662,613.068,455.95224,39.059082,106.4523,5.263 662,583.9068,412.3105,70.77368,176.00488,5.156 662,543.42267,218.44333,23.427979,41.166016,5.134 662,-21.399323,403.2546,78.01732,174.96506,5.102 662,475.3756,205.69238,19.992188,37.540375,5.023 662,558.52277,220.0313,29.213928,59.695328,4.947 662,-72.44562,266.78525,199.9038,460.084,4.881 662,443.15738,-17.16832,30.731598,66.90218,4.86 662,298.53265,205.75223,15.900848,25.77501,4.714 662,227.2832,209.19603,19.250397,29.205673,4.702 662,546.7109,190.0903,19.51764,38.904114,4.673 662,537.7953,200.0624,21.575073,38.093475,4.673 662,603.3166,-56.78991,53.756165,134.87212,4.643 662,604.9018,-37.75648,28.242859,78.68255,4.643 662,242.78993,208.42712,19.5251,33.0735,4.624 662,-3.9192863,124.29936,15.195921,38.084137,4.605 662,490.36426,-180.15363,234.51068,423.81665,4.563 662,-5.905074,206.60017,19.345688,44.394165,4.523 662,535.86096,311.955,143.7699,341.442,4.44 662,2.8404486,143.72699,16.949644,36.932358,4.383 662,492.73758,226.93045,238.25168,515.97253,4.353 662,-5.0152087,87.54473,17.274282,43.61306,4.322 662,529.9139,207.23827,22.549683,34.72339,4.315 662,2.8553665,158.6327,18.632042,39.150726,4.306 662,552.4298,220.95374,24.303162,48.25879,4.292 662,560.7357,65.820694,37.30945,68.97298,4.271 662,371.19168,197.78767,18.086548,40.591034,4.266 662,-2.6342845,191.8965,26.711819,63.23381,4.247 662,364.01257,198.005,18.584473,40.079346,4.238 662,-10.365557,150.66962,29.125053,67.21451,4.225 662,339.5188,212.46925,17.383118,36.36235,4.206 662,36.988987,180.02936,28.979603,58.079544,4.202 662,585.682,-102.267685,75.77124,235.68082,4.196 662,-4.290656,188.13136,16.701504,39.038467,4.178 662,436.9142,159.66977,28.951294,65.18634,4.168 662,429.3362,-17.828823,30.673737,64.753716,4.152 662,541.165,191.18875,29.430054,59.52481,4.145 662,354.69284,197.4593,18.905426,40.243042,4.08 662,-4.543332,103.91269,16.025375,42.351166,4.076 662,564.568,199.08669,39.20569,76.59709,4.076 662,561.23303,189.16585,20.586731,43.583694,4.072 662,599.65405,205.09167,36.04773,89.170105,4.069 662,594.78143,112.64005,31.992737,66.31985,4.064 662,286.42856,203.37305,15.516907,23.794647,4.062 662,324.8559,215.46928,16.447998,35.9608,4.057 662,568.9739,188.73273,19.825134,41.69481,4.034 662,219.84705,210.53105,18.474304,27.16446,4.024 662,534.5321,217.01767,29.422241,60.143463,3.991 662,489.17932,212.60829,21.302185,34.86885,3.977 662,251.01479,209.11224,19.377396,35.403625,3.971 662,496.82104,214.955,21.295471,32.34111,3.94 662,333.20126,199.62805,15.611938,31.201965,3.929 662,575.2931,205.18753,50.536133,115.73392,3.923 662,553.3936,196.63835,21.301086,43.232956,3.922 662,332.71844,214.19281,16.040161,35.74846,3.883 662,-16.202372,157.97696,49.19023,129.14401,3.882 662,563.3302,188.89206,29.036621,63.817154,3.843 662,521.7541,197.80887,20.343933,35.474396,3.799 662,-8.407051,38.985718,38.312035,101.27959,3.794 662,617.57166,-23.599876,20.462769,51.718822,3.788 662,26.836784,178.52357,57.175095,102.43907,3.766 663,522.4364,50.084152,20.524048,52.33972,7.975 663,626.99677,488.2994,20.256897,44.67215,6.637 663,358.43457,189.59978,28.678162,60.223526,6.469 663,-17.082644,-64.31607,56.03238,148.70245,6.397 663,-5.7931128,489.21304,17.984547,42.345,6.115 663,-11.311863,476.36633,28.331146,65.48303,5.942 663,627.21674,-17.155659,17.364014,46.350502,5.92 663,-5.388735,-17.153511,16.856575,42.191677,5.758 663,-11.499479,-32.559635,29.652842,72.63804,5.598 663,562.6831,163.99847,20.787231,37.2558,5.535 663,622.3693,-34.040607,27.008423,76.985016,5.395 663,329.0823,193.89178,19.691772,38.279495,5.391 663,583.8907,412.28824,70.84332,176.4722,5.292 663,602.41656,-55.212807,53.15558,137.5588,5.211 663,613.18536,455.86618,38.374817,105.822235,5.125 663,-21.455126,403.09302,78.02423,175.13159,5.122 663,-5.4721556,124.128586,18.470604,40.601074,5.096 663,0.13157964,128.10555,23.928087,45.584106,5.025 663,-72.39183,267.08917,199.57611,459.4981,4.95 663,369.48056,195.42233,22.27713,47.78479,4.896 663,475.58856,-14.835414,16.109283,39.181816,4.846 663,354.08298,192.96593,21.757233,46.192734,4.786 663,618.921,489.8431,19.294312,41.698883,4.706 663,219.00826,202.40828,18.789154,28.538269,4.689 663,526.0328,37.346813,27.14856,69.336716,4.674 663,211.8407,201.06195,18.994476,29.413727,4.605 663,490.5304,162.98718,31.520508,66.66702,4.51 663,2.393434,195.89159,20.529116,38.013138,4.482 663,588.5248,-13.880007,30.383606,59.845825,4.464 663,536.2742,311.9599,142.97168,340.85175,4.441 663,554.1605,171.17264,20.809326,35.826416,4.431 663,203.23097,203.31772,18.578339,28.81839,4.409 663,616.1333,188.16019,23.005432,76.00827,4.322 663,492.99713,227.05716,237.88855,516.50684,4.317 663,585.7333,-104.29974,76.40369,238.46971,4.29 663,269.74744,208.13443,15.512329,23.81601,4.228 663,565.6086,153.92493,28.591187,59.140656,4.223 663,-4.646843,109.80995,17.518644,37.410248,4.204 663,538.1211,172.09662,31.71405,63.090286,4.203 663,619.45935,166.10292,17.222595,53.436035,4.191 663,483.57245,-14.563642,16.684662,38.848663,4.136 663,570.4551,175.00467,18.741028,34.482758,4.077 663,333.23834,187.61897,27.54773,55.10936,4.06 663,554.36115,195.83585,20.830872,38.810776,4.005 663,527.1123,214.10686,24.194946,46.674942,3.989 663,549.8551,217.06209,30.54419,55.573868,3.981 663,586.2588,-3.5061684,19.972412,37.87768,3.98 663,544.84125,170.93571,22.134338,36.603317,3.975 663,-37.617878,-121.537895,118.811874,275.0274,3.972 663,519.00964,55.33312,29.307678,85.32428,3.944 663,467.48395,-13.703928,15.685608,39.11875,3.939 663,489.0686,-177.51117,236.47821,416.9845,3.897 663,587.0356,181.00468,17.477966,38.07222,3.891 663,477.4141,247.5949,15.172241,27.23848,3.885 663,2.9998755,489.79135,18.01092,40.69113,3.875 663,9.960499,197.12743,22.34552,36.112534,3.868 663,570.8697,192.01007,17.166687,31.59227,3.868 663,566.3157,-33.42212,29.07019,70.13312,3.858 663,577.8164,166.20686,19.379395,37.575226,3.839 663,578.4729,-15.197412,18.243347,39.42574,3.838 663,588.612,213.49094,26.77008,65.21463,3.837 663,517.1967,174.92642,32.630066,73.653595,3.837 663,571.67993,-15.404772,31.944824,62.666855,3.824 663,594.8069,-44.246964,44.44586,97.91754,3.792 663,563.95557,219.56236,31.31659,55.410477,3.791 663,594.5736,166.52664,16.72937,38.800034,3.778 663,581.10803,-33.700832,29.204224,70.70633,3.749 663,586.89435,165.24362,17.554626,39.312653,3.745 663,563.5509,191.9686,17.791565,33.452744,3.743 663,379.34216,215.30132,19.052246,39.20494,3.737 663,549.28644,152.67743,29.892273,55.955475,3.727 663,196.53036,165.76913,13.365692,30.13234,3.726 663,587.55005,10.882227,31.806763,59.814064,3.715 663,570.7183,-4.0692873,21.422424,38.66432,3.698 663,-4.180633,94.29361,16.217726,36.243988,3.678 663,-5.226488,249.075,16.224127,34.405807,3.667 663,532.0993,151.45282,31.175476,61.33377,3.664 663,325.68997,172.69269,28.203003,62.557953,3.661 663,619.6249,-16.97285,17.32312,42.75405,3.661 663,410.5612,190.67624,19.485535,37.182602,3.653 663,545.80225,153.97429,22.251526,41.59639,3.621 663,561.86914,207.19548,19.789917,33.652298,3.596 663,587.9125,199.0802,17.296936,35.92592,3.587 663,531.55743,208.72192,31.32074,60.87732,3.581 664,360.72754,188.78302,27.07489,66.603546,8.6 664,-5.6853294,489.46133,17.728848,41.62686,6.231 664,-17.04098,-65.10667,55.394127,150.74956,6.144 664,-5.55588,-17.661743,17.236502,42.567276,5.801 664,-9.007383,464.56866,37.692757,91.430725,5.555 664,626.91565,488.5527,20.486328,44.600983,5.53 664,613.3405,455.8516,38.515503,106.68271,5.449 664,-11.281765,-32.40863,29.426352,72.7703,5.385 664,622.72675,-33.220028,27.11206,75.096825,5.358 664,627.42633,-18.156136,17.403137,47.195656,5.338 664,315.65295,198.6796,17.958466,31.125977,5.224 664,412.1684,193.71602,18.829376,35.974,5.196 664,-21.55194,403.42255,78.74391,174.95184,5.166 664,584.1311,411.6662,70.66315,176.9881,5.162 664,541.01025,7.249836,29.93097,63.104137,5.098 664,438.44937,-35.466877,28.013824,77.199585,5.03 664,600.3399,236.17725,20.577942,39.20401,4.901 664,521.29785,4.7275734,21.73169,40.54554,4.891 664,477.31885,218.32428,28.43628,48.305176,4.882 664,570.7323,211.912,20.354492,35.642075,4.867 664,-72.52434,266.88873,199.7444,459.10284,4.844 664,582.9338,225.97234,28.483093,57.586258,4.83 664,538.84894,114.014984,33.946167,61.71808,4.829 664,602.691,-55.14662,53.417114,140.04366,4.82 664,578.88745,203.32722,20.686401,38.44905,4.817 664,72.13582,180.51266,22.79541,44.08075,4.753 664,523.7627,-13.914667,31.00177,65.36994,4.692 664,61.576523,172.3991,29.874207,60.23268,4.685 664,321.726,194.94708,17.687164,31.866943,4.583 664,585.3928,-104.09366,76.40289,239.08394,4.572 664,586.4277,203.47227,20.87799,40.7437,4.567 664,475.4319,71.168594,33.88327,61.888123,4.566 664,489.85843,-182.23781,236.36716,425.0999,4.553 664,536.36084,311.74677,143.1781,340.7032,4.494 664,354.71725,194.26772,20.948273,48.960297,4.466 664,-5.699818,231.71921,17.110474,37.926117,4.423 664,403.77155,191.27254,18.93106,38.135803,4.406 664,478.84537,113.3354,27.779663,78.74242,4.392 664,1.2394953,196.20316,41.775864,92.72287,4.372 664,474.2685,213.94414,21.724121,39.3127,4.364 664,444.0535,247.97485,16.333618,26.665955,4.348 664,454.4041,-35.395042,27.318878,70.10938,4.345 664,493.26932,227.13632,237.5275,516.15283,4.29 664,565.415,56.44947,28.79242,68.6095,4.288 664,558.1914,12.558235,29.584595,65.2296,4.247 664,467.19714,216.4504,21.552979,40.816513,4.232 664,417.9987,-19.488016,18.459625,44.212532,4.193 664,-36.974194,-124.964836,117.32416,282.50613,4.175 664,561.7492,212.20619,21.357605,34.021347,4.165 664,244.45935,205.03125,14.341003,22.287094,4.163 664,229.16853,206.69626,17.935226,30.88623,4.15 664,593.13324,228.13388,21.336243,40.28943,4.144 664,238.08769,206.14957,15.708694,24.807846,4.122 664,458.4271,197.30595,21.148773,39.852768,4.117 664,570.6463,226.66699,21.122375,39.794556,4.111 664,578.7562,219.60864,20.063599,39.231934,4.098 664,515.6825,11.639305,32.38318,62.78293,4.096 664,364.89954,204.65715,28.965698,71.50972,4.086 664,410.43634,-19.534658,18.42389,43.832832,4.081 664,496.75858,217.28302,21.28128,36.686676,4.075 664,537.6792,8.10083,20.698975,39.890373,4.057 664,510.37463,-2.2807884,30.867126,56.667507,4.041 664,-6.1912465,216.26614,17.64889,37.360474,4.029 664,3.002869,231.18033,17.94978,34.420593,4.02 664,555.52057,0.66181755,18.312561,35.373116,3.984 664,432.46182,189.98442,21.303497,37.034897,3.974 664,441.9496,-21.615934,19.580933,48.524647,3.961 664,532.1498,19.284992,33.648438,67.70586,3.948 664,522.17303,103.426056,32.596497,68.17288,3.939 664,561.3308,227.78517,21.385315,37.77083,3.929 664,553.0513,222.47842,21.481995,33.761963,3.929 664,556.7084,201.71184,30.622925,55.92659,3.906 664,403.03467,-16.321644,17.527344,40.976276,3.862 664,528.4255,220.39153,23.059448,37.281174,3.861 664,5.8451414,180.70238,28.984615,53.326797,3.839 664,454.5904,204.31177,30.101349,55.32715,3.838 664,618.91974,197.19579,19.507385,52.428345,3.825 664,574.5524,210.31937,29.949463,59.778442,3.812 664,348.2771,196.83919,18.453186,42.521027,3.789 664,541.52734,277.16006,12.997925,23.330353,3.789 664,460.80646,254.95392,15.477661,23.876465,3.781 665,298.00577,203.26239,18.253693,29.823486,12.992 665,371.00357,204.86009,22.090118,47.159958,7.396 665,291.65482,199.08429,17.483154,30.752426,6.955 665,2.2092276,168.21393,18.82006,39.129395,6.848 665,-4.2719455,158.38611,17.36904,38.65245,6.758 665,322.0199,179.98402,27.651276,61.3795,6.475 665,305.44812,193.66634,18.360352,33.14131,6.395 665,-5.796523,489.03543,17.86724,41.972076,6.333 665,-17.43087,-65.62531,55.423546,150.52136,5.951 665,556.21027,-12.19658,15.66571,32.844193,5.888 665,446.41168,177.6225,28.904724,60.594513,5.832 665,588.23444,1.9637527,16.977295,31.464798,5.829 665,468.30807,170.53313,29.127045,64.71147,5.805 665,-8.894646,464.70535,37.696873,92.07651,5.714 665,-5.6207285,-17.655985,17.368748,42.49937,5.615 665,613.5656,454.8161,38.809814,107.734375,5.469 665,611.5117,-49.899273,41.31201,106.30224,5.463 665,557.1927,2.4117508,15.96228,28.653198,5.451 665,418.36972,198.8718,19.990387,41.636017,5.404 665,561.4867,230.168,22.840393,45.082947,5.346 665,572.9656,3.3779907,15.839111,28.884937,5.335 665,425.96875,195.04176,20.889221,39.532196,5.334 665,-11.309536,-32.438477,29.474676,72.93807,5.267 665,212.87292,209.71974,14.125519,22.550644,5.266 665,204.43027,217.86148,17.33165,30.071533,5.225 665,627.2647,-17.113895,17.20514,46.601562,5.192 665,-21.927124,402.21982,79.0434,175.78635,5.16 665,564.27985,-11.460466,15.2873535,32.77243,5.159 665,626.7749,488.19977,20.789673,45.378784,5.144 665,548.4464,224.49419,30.463928,48.552444,5.104 665,583.628,411.27893,71.18219,177.42834,5.07 665,581.1816,3.440219,15.747131,30.828587,5.069 665,564.888,3.1227207,15.590027,29.15618,5.009 665,556.9529,131.73969,15.210327,32.30243,4.945 665,1.843642,175.00978,24.252813,61.59088,4.94 665,410.19287,201.03917,20.862793,38.974075,4.938 665,285.6006,201.59013,15.971649,30.799164,4.927 665,-72.50926,266.68655,199.89113,459.8132,4.908 665,211.44661,217.5268,17.692245,30.776169,4.81 665,547.83417,-12.0265465,15.826355,32.785454,4.778 665,-9.056927,145.14937,27.930601,67.54761,4.776 665,441.5257,192.6818,22.597168,44.021606,4.751 665,572.3815,-12.086647,14.911194,33.810642,4.736 665,-4.4080772,183.20856,17.692749,42.844406,4.73 665,3.5355945,156.06491,16.730204,34.401154,4.717 665,588.035,13.335495,17.495972,37.302402,4.715 665,428.28424,193.46275,30.113922,63.284042,4.709 665,220.49782,209.62991,13.93898,22.665115,4.683 665,-3.0052295,143.90582,14.653574,35.377182,4.679 665,539.8922,2.391842,17.478027,30.100483,4.632 665,536.5911,311.46057,143.22827,340.5359,4.616 665,325.0665,193.54782,18.621185,40.711197,4.598 665,22.081718,179.55121,29.659012,59.123108,4.583 665,433.43488,192.48923,20.81903,36.631027,4.566 665,35.060352,178.91023,19.205181,35.42453,4.536 665,539.4198,-12.961987,16.056763,33.711308,4.531 665,524.11365,2.2511568,17.300293,31.245525,4.482 665,475.26276,212.76341,29.993164,50.323776,4.474 665,66.165375,182.87682,19.935837,41.123596,4.429 665,548.66925,2.263276,16.482788,29.629822,4.424 665,585.5918,-106.11522,76.95758,242.3665,4.399 665,315.69006,190.32736,19.27835,33.96393,4.324 665,493.65158,227.1394,237.06223,515.58136,4.317 665,558.65125,-33.09816,28.177612,68.64362,4.307 665,595.4695,0.57434654,17.022278,32.922165,4.294 665,293.90643,191.73718,26.785675,46.594864,4.269 665,580.4302,-12.256594,14.874329,34.312824,4.247 665,427.82367,249.3973,15.978973,34.582993,4.224 665,531.9207,2.4080544,17.338562,31.181076,4.208 665,279.4052,194.16669,28.763763,52.71846,4.195 665,324.2796,217.90775,30.268677,64.88724,4.144 665,-5.006963,206.80641,16.299633,38.158554,4.125 665,305.7523,206.47762,18.57132,33.272446,4.124 665,13.459816,175.682,27.72116,54.453644,4.119 665,421.6995,250.33932,15.589569,33.598267,4.113 665,5.001223,163.91963,28.132517,55.728073,4.112 665,379.56677,194.8335,29.105286,61.89856,4.106 665,218.34335,217.66359,18.21698,32.31581,4.092 665,569.5938,234.11778,22.155273,43.87715,4.091 665,540.45886,138.05185,15.848694,33.95163,4.09 665,516.3639,1.7156754,17.00946,33.30829,4.073 665,548.7476,138.22928,15.329773,34.328262,4.06 665,472.22568,168.0249,22.060944,39.356873,4.056 665,508.84357,0.9634247,16.818848,34.25074,4.012 665,35.357628,169.31708,17.269203,27.194412,4.01 665,-37.33846,-123.9854,118.07648,282.239,3.992 665,489.39865,-177.15057,235.68198,416.7424,3.977 665,300.51175,178.875,27.544342,54.552094,3.958 665,354.91013,200.0455,19.773071,41.309525,3.952 666,322.18033,201.44005,19.456787,32.73033,12.424 666,329.0648,204.39091,19.695282,34.273544,11.786 666,524.32764,184.68307,28.164795,69.36148,9.481 666,502.1951,187.96107,25.493927,68.74477,7.062 666,415.8746,203.21652,25.883331,46.43007,6.766 666,-17.690598,-65.21454,56.288223,150.85814,6.72 666,384.6084,193.49586,22.969604,44.58316,6.698 666,536.4167,183.18616,22.1156,56.71292,6.642 666,315.32166,196.26202,19.212708,34.578094,6.615 666,489.9547,205.67145,22.773865,52.630554,6.51 666,611.6344,-49.717102,40.83496,105.63336,6.233 666,510.74286,190.65182,28.41278,67.02829,6.13 666,-4.809733,123.70587,17.431213,42.859833,5.92 666,587.88934,161.70602,15.749573,26.74324,5.885 666,-8.872341,464.85892,37.739227,92.57138,5.837 666,-5.999727,489.49564,18.195122,41.692657,5.811 666,-5.5733557,-17.85168,17.248913,42.792408,5.72 666,626.85645,488.15796,20.65387,45.832092,5.649 666,187.92026,206.9139,18.796127,26.003098,5.538 666,627.50635,-16.127829,16.840027,45.414875,5.524 666,2.4639869,169.00526,20.167479,43.825592,5.469 666,-11.337786,-32.310104,29.434462,72.61603,5.321 666,613.24347,454.94574,39.073975,106.21869,5.252 666,530.04816,179.90256,21.453186,46.135345,5.233 666,-21.781067,403.05573,79.14392,175.08173,5.186 666,470.06116,200.24997,26.413391,61.16037,5.12 666,532.96576,181.79872,36.217285,84.02037,5.04 666,387.83807,168.44891,29.704681,69.7639,5.008 666,520.54193,207.65883,24.099731,48.065353,5.007 666,444.0054,200.16672,31.608124,59.230835,4.976 666,180.06436,202.886,18.327667,28.942398,4.957 666,563.10254,183.60239,19.546509,43.51706,4.954 666,544.45026,185.85327,21.885925,53.261032,4.91 666,583.1922,411.5668,71.5777,177.2966,4.907 666,405.66278,202.97426,30.19458,63.59471,4.901 666,-4.6080775,108.155075,16.5498,38.37648,4.865 666,413.33105,163.3934,29.178131,75.05707,4.849 666,-72.31075,266.846,199.49075,459.93903,4.845 666,420.98285,155.79153,30.778198,70.31,4.814 666,570.8941,184.84119,18.331787,38.827347,4.813 666,421.87436,194.06009,25.223297,44.485687,4.812 666,536.2905,310.60504,143.89105,341.62555,4.803 666,73.138336,179.04811,22.64476,44.092896,4.787 666,137.04428,189.31424,33.523895,56.770813,4.745 666,454.0362,190.06976,29.159729,59.17267,4.694 666,-4.010587,170.01498,17.694908,42.563812,4.65 666,124.777466,178.90472,32.81317,60.885864,4.644 666,614.02875,193.63358,25.964172,75.52066,4.64 666,549.57983,180.47047,28.58905,65.50459,4.587 666,481.32602,205.3557,22.78897,51.208817,4.538 666,493.56473,-34.19457,29.778229,75.84415,4.519 666,612.4204,174.6775,16.663086,35.206924,4.48 666,572.4354,169.09006,15.51593,26.805954,4.469 666,493.56137,228.07248,236.99454,514.1863,4.462 666,599.9694,186.22327,34.55609,101.44302,4.407 666,446.94464,182.99942,50.049103,103.713715,4.401 666,307.7513,205.6256,18.705597,32.761963,4.383 666,589.2533,-60.967228,53.89618,145.11992,4.35 666,352.65042,194.1434,22.03357,37.668716,4.345 666,516.6011,201.72423,38.54608,79.04573,4.344 666,548.21234,203.56747,38.782654,87.34653,4.337 666,-17.127285,116.7506,49.50142,140.96106,4.32 666,594.9867,160.44966,15.584045,28.243652,4.318 666,352.76465,210.48604,21.76886,34.147766,4.313 666,489.66934,-181.7881,236.65121,422.09256,4.281 666,302.84857,196.93611,28.750214,48.063507,4.28 666,581.73254,202.01912,37.538452,97.77623,4.277 666,355.2008,159.57652,30.938293,69.45683,4.259 666,498.49533,190.38763,19.850372,46.33629,4.253 667,345.32068,204.63713,20.079895,36.895416,21.942 667,361.21555,208.0943,21.227142,34.694626,13.972 667,341.76465,185.06381,29.898499,57.211426,7.512 667,627.4353,-17.234926,16.901367,45.876183,6.945 667,-5.584522,489.42645,17.783669,41.90149,6.082 667,-8.875833,465.03387,37.64528,91.934326,5.927 667,-16.688395,-64.38513,55.075462,150.0875,5.924 667,529.62933,188.74843,34.77008,58.816177,5.709 667,613.0775,453.5603,39.581116,107.64215,5.665 667,-5.6516943,-18.115501,17.304077,42.988674,5.659 667,623.4985,-34.11544,25.640625,75.29713,5.594 667,603.5956,-55.63279,52.402832,137.29184,5.49 667,-11.346754,-32.537334,29.520597,72.668144,5.458 667,367.97333,215.82578,22.987335,39.26831,5.336 667,399.94052,206.73286,22.275238,36.454453,5.24 667,-21.504986,404.17877,78.59506,174.57892,5.237 667,538.1928,200.03966,35.490234,57.77037,5.072 667,509.81845,206.97037,32.014374,56.050934,4.959 667,626.2559,487.78613,21.037048,45.981567,4.892 667,-3.5407474,156.82816,15.3681,39.150543,4.869 667,561.07166,209.43523,32.82733,63.959305,4.844 667,-72.40928,266.95746,199.4242,459.2447,4.807 667,-3.8480318,171.71387,16.115812,41.182083,4.763 667,583.32434,411.88812,71.23816,176.64697,4.725 667,3.8000906,215.2118,16.521336,31.671799,4.687 667,393.07144,200.53535,21.494232,33.963013,4.642 667,535.89685,310.55957,143.99072,342.31982,4.635 667,517.0543,189.97543,29.313293,60.992935,4.582 667,417.7905,208.69179,20.255463,36.85205,4.513 667,351.65466,199.95825,22.37259,38.702652,4.509 667,162.22116,192.41019,18.36171,28.399277,4.493 667,355.3871,183.58524,31.031128,60.533417,4.468 667,493.25986,227.47162,237.56601,516.64014,4.451 667,2.3048472,199.67957,40.101826,89.169464,4.444 667,377.0262,225.16425,22.066803,34.975098,4.431 667,187.79477,200.10919,19.854431,32.07065,4.413 667,569.82715,195.46394,20.586182,34.788635,4.367 667,-17.215929,155.91272,50.581535,129.7309,4.319 667,331.6064,199.1824,19.38144,37.11946,4.306 667,354.0028,216.78381,21.040588,34.64052,4.199 667,47.68696,181.38737,23.594368,41.71663,4.188 667,-37.422516,-123.05632,117.49424,283.19513,4.122 667,31.110516,172.9383,27.423466,54.95627,4.073 667,-5.368329,232.24184,17.105705,37.28267,3.993 667,347.40372,226.69403,17.758667,30.153625,3.992 667,340.46237,219.3943,18.47165,31.572601,3.964 667,366.7941,200.67139,22.042328,36.72046,3.941 667,408.59055,206.86353,21.696808,37.391144,3.884 667,3.4631407,233.22884,17.983583,32.49025,3.878 667,390.59784,202.21815,28.61853,53.652878,3.875 667,620.1269,-17.665699,16.187256,42.213028,3.852 667,-5.5195436,207.2698,17.026913,38.01378,3.829 667,3.781811,166.5346,17.852415,41.16893,3.826 667,570.466,214.51375,35.332397,67.780655,3.821 667,463.53635,222.6691,46.227997,68.7876,3.8 667,179.22026,196.32501,19.512283,34.384705,3.794 667,522.14355,211.53473,32.704773,59.575836,3.793 667,587.815,198.40608,31.239685,63.856552,3.785 667,547.6687,210.82278,34.251526,58.948578,3.784 667,615.7335,173.90393,24.937012,71.107056,3.716 667,-9.952445,23.942974,39.731976,104.6597,3.703 667,556.8074,187.33333,31.890442,52.09227,3.687 667,543.5154,196.86455,24.457703,38.58333,3.675 667,10.915335,214.37273,17.232565,29.709396,3.671 667,5.630621,467.55533,38.032616,96.45096,3.669 667,425.8369,215.04123,20.027496,34.312134,3.637 667,64.78429,178.30254,20.28518,32.996826,3.614 667,394.808,184.70453,33.811188,63.631866,3.576 668,403.35638,213.64514,23.204163,49.803253,80.085 668,426.424,216.52121,20.848877,40.970856,76.024 668,1.9432926,191.45972,20.518148,48.07399,7.761 668,124.57384,193.72694,16.054169,31.9608,7.692 668,586.8468,232.56302,18.670715,42.453644,7.529 668,-11.496679,477.0649,29.210817,63.68155,6.432 668,-3.989464,163.80804,16.834545,41.84143,6.278 668,-5.9191284,489.24814,18.087135,42.08731,6.163 668,417.11227,219.1929,23.09906,48.591766,6.0 668,-16.810171,-64.78514,55.27643,150.32364,5.998 668,571.79877,222.09503,15.660767,29.447083,5.915 668,627.3519,-17.631285,17.024841,45.84009,5.883 668,-9.093726,151.7192,27.422318,69.09802,5.737 668,626.66693,487.8058,20.642944,45.478577,5.718 668,-5.671673,-18.111645,17.324669,43.01844,5.684 668,-11.380636,-32.553413,29.626297,72.575096,5.66 668,-4.689106,195.69464,18.622574,45.681046,5.469 668,-21.533928,404.03644,78.77638,174.54486,5.21 668,583.623,412.68365,71.09857,175.78491,5.186 668,603.5849,-56.24027,52.737427,138.7598,5.183 668,613.0888,456.33038,39.056335,105.58887,5.095 668,74.58255,185.96046,21.207024,40.76317,5.091 668,623.449,-34.80797,25.988525,75.2589,5.089 668,475.27036,176.54724,17.688599,33.59999,5.051 668,506.41107,179.39851,17.936707,33.798294,5.046 668,580.29346,222.38644,16.04065,29.745209,5.014 668,2.6633902,175.06738,18.528133,41.82518,4.937 668,-72.50316,267.25586,199.66568,459.73926,4.884 668,-3.2346895,150.36813,15.278295,38.966705,4.864 668,492.84726,181.31543,15.594757,28.725143,4.845 668,405.16388,228.1883,28.9646,65.257385,4.819 668,536.19214,311.385,143.88538,341.3335,4.761 668,619.33154,223.9831,19.079163,44.85388,4.724 668,419.64496,193.83302,30.212769,62.77318,4.643 668,427.42978,219.3348,28.89972,55.019455,4.622 668,589.2781,228.17279,24.821167,59.36267,4.526 668,391.55948,217.00076,36.28293,66.78543,4.488 668,-16.538465,156.10422,49.37607,128.66385,4.475 668,404.03278,190.94043,31.253632,67.691956,4.472 668,108.029724,193.2869,16.398163,32.337097,4.424 668,492.98935,227.46948,238.147,515.9823,4.415 668,500.06378,181.41565,16.81488,30.414536,4.407 668,227.80913,227.63165,17.789291,34.210815,4.397 668,3.340395,240.04083,16.386711,34.094482,4.375 668,-36.915928,-122.78149,117.15881,279.23862,4.34 668,564.4775,222.36049,15.814758,30.453018,4.314 668,90.199066,188.23792,20.57685,42.322845,4.275 668,445.20795,188.08595,29.637054,62.28325,4.248 668,622.68463,174.77275,26.483398,78.35649,4.223 668,234.71857,220.17628,17.207855,31.563248,4.181 668,171.4656,193.04001,34.023987,49.518997,4.162 668,132.29247,194.50932,31.528336,49.77881,4.152 668,251.94171,216.9245,17.148193,29.776688,4.129 668,116.100655,193.65283,17.535683,36.399597,4.124 668,98.9421,191.00104,18.035904,35.524612,4.071 668,411.30383,239.38083,32.753174,64.41193,4.037 668,3.2368393,162.6793,16.599062,36.823517,3.965 668,403.7619,235.33917,19.821014,41.65857,3.957 668,-4.831127,231.32494,15.646364,37.885696,3.938 668,476.18292,160.13899,16.547516,32.32625,3.933 668,484.07996,178.5408,16.150421,30.609146,3.932 668,473.14978,203.32634,20.503174,39.596024,3.914 668,473.97504,191.71599,17.744385,33.24652,3.91 668,498.23727,216.91177,33.26761,56.950653,3.878 668,181.24428,187.73761,14.318039,22.219955,3.868 668,315.90213,217.2446,16.274414,27.807922,3.868 668,2.364397,204.09792,40.97142,102.69273,3.853 668,397.9995,153.64124,33.426147,82.82414,3.85 668,614.62756,145.85976,24.786743,88.38078,3.832 669,530.43945,219.63188,36.128235,84.82478,95.432 669,572.8995,222.70422,31.829773,73.95557,87.422 669,559.1202,223.73517,32.97046,71.92401,14.309 669,-12.050172,477.59518,30.455166,63.321075,6.574 669,-4.5601506,174.83755,16.910336,36.682816,6.538 669,622.63245,-34.576527,26.826721,74.10396,6.406 669,626.3654,487.83145,20.848267,45.105316,6.136 669,613.35,454.33615,38.502502,107.259674,6.011 669,-16.948545,-65.11436,55.196106,150.50783,5.967 669,581.8887,217.72357,22.618652,51.635742,5.835 669,544.2428,224.71318,30.808228,74.10954,5.823 669,627.3085,-20.031826,17.783936,47.145306,5.812 669,-11.394665,-32.449074,29.625448,72.467125,5.722 669,3.8467808,217.2317,15.721994,31.553116,5.671 669,-5.744729,-18.236609,17.438148,43.028675,5.644 669,-6.156907,489.97742,18.34631,41.35437,5.582 669,-4.2578444,189.56494,16.765629,37.356094,5.524 669,170.97092,199.96927,34.13266,47.261856,5.44 669,545.30096,155.55566,31.496582,74.15109,5.439 669,-5.1240325,157.26108,17.426126,36.371033,5.396 669,570.8794,216.48634,48.381958,110.96294,5.283 669,583.70746,412.79706,70.77545,175.12,5.25 669,-4.9238033,216.13489,16.186684,36.744446,5.121 669,72.541214,195.00096,22.484634,42.11963,5.101 669,-21.5719,403.25488,78.52777,175.22424,5.044 669,-72.39585,266.71643,199.75055,460.37262,5.001 669,603.74786,-54.803436,52.577454,132.71042,4.969 669,535.83716,310.14966,144.34631,341.58228,4.895 669,2.1075213,178.21414,18.678589,33.71422,4.855 669,2.2075593,197.06322,18.52107,38.489975,4.854 669,504.0177,215.69019,36.328125,77.99048,4.848 669,594.0981,233.37093,39.850403,95.64351,4.792 669,561.67114,216.42256,22.633606,52.05327,4.782 669,540.927,215.36562,23.912903,57.87413,4.711 669,479.01855,220.76202,52.285095,97.53558,4.674 669,115.40192,197.38892,18.97519,37.380524,4.668 669,2.4836266,160.75241,19.445107,33.048843,4.621 669,380.38965,208.55087,15.839844,30.077835,4.517 669,542.65735,253.38495,22.749023,52.10565,4.446 669,613.6367,222.05615,34.96283,99.34961,4.445 669,494.38666,230.61942,237.11023,513.328,4.431 669,3.7276511,232.12743,15.935434,30.008316,4.398 669,177.1509,205.22066,23.0504,30.868134,4.373 669,89.633575,197.5042,21.817009,38.19142,4.253 669,193.2977,207.34982,21.290161,29.872513,4.235 669,372.68008,206.95973,16.211761,32.166946,4.233 670,449.13837,207.01013,19.003998,40.19545,10.49 670,544.6912,215.54398,21.499207,45.691864,8.116 670,627.2839,-17.197971,17.051819,46.62312,7.622 670,623.7694,-34.506847,25.382324,77.08246,6.485 670,603.4814,-55.085,52.72339,132.18588,6.453 670,553.48926,220.0215,21.065186,47.006516,6.389 670,436.0629,204.73535,18.082916,39.1584,6.364 670,-3.712192,155.94162,17.57674,42.47647,5.984 670,-5.5612564,-17.86267,17.249115,42.4979,5.858 670,-8.641157,464.65646,37.299446,92.03854,5.853 670,-11.390896,-32.318375,29.631653,72.2614,5.81 670,104.90989,187.00862,21.611404,41.13182,5.794 670,-17.00063,-64.94311,55.396935,149.79016,5.751 670,-5.8152723,489.46744,17.932545,41.936493,5.676 670,626.69806,488.59277,20.726562,44.84912,5.571 670,139.28397,195.85086,17.403168,27.767258,5.373 670,534.0466,212.6402,27.741821,59.399292,5.293 670,595.38947,224.06279,17.13446,37.886856,5.247 670,613.0141,456.01144,39.272156,105.93533,5.181 670,562.4324,221.64839,20.04309,45.837082,5.168 670,515.49036,213.42766,15.324646,28.858948,5.154 670,587.7077,223.78264,17.07306,37.50023,5.146 670,-21.843609,402.98984,78.92729,175.6182,5.135 670,583.2784,412.1319,71.526855,176.33478,5.117 670,571.0343,222.3572,19.149353,43.791946,5.105 670,-7.6773257,143.06064,27.509958,69.470795,5.076 670,562.87256,211.10544,17.251892,37.85428,5.051 670,1.9297963,166.3152,19.27453,44.35031,5.041 670,96.44825,182.87909,23.668793,42.69139,5.029 670,-72.890625,266.3255,200.0705,460.2569,4.967 670,62.47727,187.2155,25.307224,36.59172,4.965 670,508.28204,213.4558,15.660706,29.263947,4.962 670,-3.41071,141.78902,15.360423,41.273056,4.942 670,579.63794,223.05463,18.13208,40.689453,4.925 670,603.5262,224.13635,16.345215,37.101654,4.857 670,536.31226,310.22037,143.6073,341.54184,4.848 670,457.81897,211.87149,18.082703,40.584946,4.748 670,618.55524,217.13406,17.937134,47.13205,4.732 670,-16.108727,157.245,49.551434,128.69788,4.657 670,439.93225,203.67842,25.283203,57.15941,4.65 670,-3.3454764,171.18582,16.934092,43.778564,4.634 670,38.257008,184.11241,30.387974,52.622543,4.63 670,314.6085,223.61334,33.78824,60.726746,4.559 670,493.8523,227.65393,237.56885,515.3745,4.495 670,422.80194,171.65419,31.718658,63.55307,4.495 670,171.11566,204.12675,19.0428,26.737778,4.474 670,619.5744,-17.348835,16.665527,43.915413,4.468 670,325.59027,210.21452,11.83136,27.259354,4.462 670,318.97565,209.80333,11.951965,26.419357,4.412 670,531.8841,215.9559,18.587463,38.3759,4.387 670,293.44733,211.80545,14.995575,39.684616,4.38 670,56.542274,196.92285,22.962502,34.9093,4.373 670,3.116337,203.35728,38.58714,83.49083,4.333 670,4.174431,147.46454,16.01328,39.100586,4.324 670,202.68639,203.23697,18.04448,25.867477,4.308 670,4.038163,144.09026,28.531376,68.27913,4.307 670,185.56299,209.70778,20.944153,30.037216,4.286 670,628.03827,3.52923,16.66742,44.29593,4.281 670,113.69322,189.44624,20.169891,37.704666,4.264 670,500.51733,211.85687,16.710938,31.51381,4.232 670,427.63263,191.76326,19.663239,38.907913,4.152 670,594.4569,-45.783638,43.3136,97.82994,4.15 670,562.9621,-15.457033,17.307129,40.28405,4.139 670,73.16916,194.02966,21.532745,36.549835,4.108 670,81.52876,192.51419,21.375153,38.22879,4.102 670,524.0485,207.93076,15.023132,28.298813,4.09 670,204.35278,178.26836,15.839874,24.02185,4.083 670,-37.459747,-123.003235,117.5435,279.4113,4.067 670,516.1109,199.56117,15.296387,29.21405,4.065 670,628.1751,26.483063,16.505737,45.170105,4.064 670,-5.1499743,232.13205,16.299284,36.093353,4.057 670,616.2359,-21.807346,25.700012,75.15295,4.057 670,228.92226,174.94818,14.0915985,26.884583,4.055 670,321.37762,185.92166,18.935303,42.165695,4.041 670,-4.809194,250.45694,16.35517,35.269806,4.025 670,569.9514,-14.885731,18.039978,40.866825,4.024 670,221.08585,170.59447,13.847931,23.346619,4.011 670,178.6181,205.35419,18.435043,25.520905,4.007 670,246.64178,197.86082,28.618591,69.074936,3.951 670,366.9501,159.51038,30.989624,71.01605,3.933 671,499.1667,220.87923,29.44043,66.89989,11.885 671,337.84424,210.01317,16.480255,32.88034,8.606 671,489.17606,220.92914,27.57254,60.7706,7.327 671,626.897,-19.440083,17.723877,50.022415,6.95 671,622.7196,-32.96518,27.081665,77.7615,6.931 671,-5.534842,-17.627495,17.238605,41.794765,6.415 671,575.68933,227.11249,20.14038,42.58661,6.389 671,-4.237909,155.64137,17.396696,40.553055,6.376 671,-11.679612,475.8652,29.761795,65.870636,6.151 671,-11.389387,-31.922659,29.34323,70.53725,6.15 671,-5.8449626,488.94034,18.054483,42.82718,5.952 671,626.73334,488.51944,20.767212,44.930756,5.947 671,400.53412,196.08614,26.212524,62.473465,5.873 671,121.949814,188.82367,19.228394,30.557358,5.867 671,331.51425,204.46391,17.392578,31.306854,5.853 671,510.8297,223.28305,24.651611,54.908844,5.724 671,-17.051332,-65.34144,55.101646,149.93544,5.687 671,460.51764,214.23389,14.99704,31.712296,5.666 671,445.0736,209.26436,13.985504,29.550583,5.613 671,436.1118,208.17111,15.412689,31.121536,5.551 671,520.5935,221.51508,22.506409,45.563263,5.531 671,409.05878,194.7965,19.690765,45.3853,5.483 671,196.10039,184.76472,15.269638,25.586197,5.45 671,-5.053596,141.4814,17.39951,39.24449,5.436 671,189.53226,176.44077,14.843033,28.686417,5.398 671,536.5553,223.52646,23.234985,50.64969,5.323 671,-21.62426,403.1495,78.86064,175.52786,5.284 671,613.32544,455.0028,39.489624,107.293396,5.281 671,394.74957,186.73433,20.453644,48.342773,5.137 671,583.3151,411.60953,71.53009,177.03165,5.066 671,618.9769,-20.135311,18.012695,49.398746,5.024 671,203.89966,185.4929,16.08545,25.009735,4.93 671,-72.658844,266.62924,199.77527,459.9883,4.909 671,2.7089005,158.5371,19.684315,39.57077,4.873 671,603.0305,-55.09385,52.98108,134.34132,4.858 671,-9.706772,142.69524,28.162712,66.65181,4.781 671,213.6734,188.4914,30.01889,52.23909,4.745 671,536.6696,311.10474,143.26477,339.93982,4.685 671,-4.19054,172.67114,16.571926,38.10353,4.651 671,407.44434,113.17033,35.246277,76.98589,4.612 671,428.28235,202.68431,16.134491,32.510544,4.516 671,417.86047,199.16077,17.631165,38.28026,4.491 671,210.90523,192.51733,18.268265,26.702957,4.451 671,364.29672,204.77672,15.020966,36.19409,4.44 671,619.8522,227.66449,17.240662,51.639404,4.434 671,217.58524,199.89743,19.920715,29.92572,4.432 671,493.7763,227.4183,237.0777,515.0311,4.378 671,236.09052,192.90079,30.259949,65.84943,4.366 671,453.6885,210.05496,13.557922,30.918045,4.359 671,4.4310675,209.57986,16.832932,30.948502,4.334 671,386.9366,187.28874,18.50653,44.429443,4.319 671,-37.28313,-123.71704,117.45622,280.2948,4.281 671,2.8526406,174.66936,18.454197,37.292267,4.278 671,-18.079527,158.17609,51.41497,128.37149,4.249 671,11.264472,214.55386,16.66021,27.702988,4.223 671,187.43924,194.66277,16.403671,22.527893,4.173 671,169.36685,200.9148,22.192963,27.80249,4.138 671,185.63132,202.19579,19.899658,27.12114,4.118 671,594.87756,-16.061323,17.479858,40.671795,4.098 671,602.81885,-17.112684,17.408936,41.559258,4.073 671,484.50226,-12.652256,32.96472,65.30174,4.058 671,-5.207191,209.24907,16.155964,34.820236,4.023 671,220.33337,166.23262,16.161102,26.184189,4.002 671,585.8777,-99.676865,74.999756,231.45229,3.976 671,181.91238,188.62317,13.888321,23.670593,3.958 671,2.5647016,490.91428,18.336626,40.528778,3.946 671,482.3419,-14.705088,18.058136,39.359863,3.941 671,490.19638,-15.518409,18.164276,40.38694,3.936 671,227.51381,163.54825,16.01976,29.21556,3.932 671,16.640718,210.166,42.493324,94.51515,3.929 671,611.3894,-17.737137,17.60138,43.48909,3.92 672,377.0025,203.59302,20.549225,48.674652,17.718 672,121.824455,185.52242,19.744972,42.28087,11.663 672,106.40647,183.75168,18.088966,37.47072,9.459 672,511.32477,216.5309,28.64862,65.25539,9.384 672,408.93597,193.69171,26.30304,63.569946,7.571 672,-5.2886133,-17.246437,16.921757,40.668,6.764 672,80.81062,191.52693,18.86863,33.904068,6.314 672,615.2579,186.18573,22.652344,77.64227,6.295 672,-5.8422904,489.2592,18.151052,42.134247,6.286 672,626.6139,489.3541,21.035522,44.81772,6.229 672,-4.4883676,156.06021,17.85565,42.906494,6.016 672,626.9912,-18.192036,17.98108,46.63748,6.004 672,622.578,-34.21511,27.532104,75.55008,5.996 672,-11.40782,-31.788025,29.213537,69.33357,5.895 672,-11.982284,477.04065,30.166615,63.15448,5.894 672,492.41318,96.141846,28.908417,68.35199,5.685 672,403.63055,190.87772,19.812195,41.73233,5.673 672,24.292686,190.79962,22.134308,34.961014,5.666 672,1.878851,157.72919,19.824251,44.066376,5.456 672,613.4373,452.98724,39.302856,108.918396,5.437 672,-4.4955606,140.48347,17.396664,41.97696,5.431 672,-10.459721,136.741,29.597145,68.85736,5.42 672,477.75934,94.54586,30.774445,70.865456,5.366 672,537.4323,234.0938,20.282043,46.377884,5.33 672,-16.903412,-64.8434,54.61864,148.70282,5.322 672,428.05634,194.72488,17.21634,37.076584,5.292 672,436.18256,194.34792,17.80185,38.30809,5.271 672,-21.480888,403.8338,78.650314,174.34344,5.223 672,115.2119,185.4485,19.008255,37.47528,5.164 672,316.30066,220.41835,17.037506,40.809433,5.121 672,203.38316,201.36739,17.830948,23.098633,5.07 672,423.93616,206.63991,22.047363,50.188644,5.019 672,363.50314,209.60591,17.245636,43.590775,4.98 672,356.83575,210.40689,17.251495,43.4993,4.966 672,518.2381,197.3406,25.849487,72.30905,4.96 672,459.95334,275.47244,16.115204,30.164154,4.957 672,186.04108,202.38199,19.741058,25.288681,4.951 672,443.70538,25.416142,31.358337,68.21411,4.937 672,-72.934265,266.33163,200.24194,460.66214,4.936 672,381.7365,205.78635,25.604736,62.361176,4.88 672,-17.173235,159.35602,50.378357,126.85919,4.821 672,583.56177,409.33963,71.16907,178.72055,4.8 672,76.60981,198.3292,18.00727,31.51474,4.744 672,490.00797,-181.36441,235.28696,424.75012,4.701 672,100.34084,186.75992,18.089249,41.019714,4.63 672,536.8858,311.12976,142.7102,340.96753,4.629 672,169.98389,198.0388,20.519821,28.956055,4.623 672,585.7719,-102.273895,75.61841,235.84326,4.557 672,5.0337067,147.75948,29.300816,65.22441,4.545 672,602.95667,-57.38914,53.092773,135.72261,4.533 672,43.256474,200.829,17.739166,28.352692,4.507 672,507.42325,77.57979,15.274567,34.27037,4.502 672,540.1813,223.2461,16.60913,37.065186,4.478 672,528.68256,221.46758,18.617004,41.352524,4.476 672,493.6176,227.26428,237.27875,515.7145,4.407 672,549.0168,223.11751,16.005432,35.897568,4.403 672,413.80283,209.27086,29.590424,65.44197,4.396 672,356.06836,227.44995,17.069122,37.877197,4.385 672,618.79675,492.47412,20.043884,41.761353,4.346 672,445.6447,274.95734,14.7178955,27.477509,4.261 672,-37.517487,-124.8938,116.889824,285.02142,4.261 672,243.35625,191.44225,32.41716,62.956787,4.261 672,176.29123,193.2545,20.526337,27.674332,4.246 672,519.3397,154.44861,22.598083,56.162292,4.244 672,523.9867,223.72224,27.82489,61.142776,4.178 672,363.74265,239.17342,16.663544,32.817276,4.171 672,619.40985,-6.0100927,19.98053,41.020954,4.119 673,410.30518,214.83174,22.459442,49.048874,21.422 673,432.76202,217.40442,20.646484,41.08203,15.745 673,498.63318,215.6608,17.23407,38.0589,7.931 673,544.2599,206.81296,47.365723,140.58331,7.399 673,-4.3910475,185.89537,18.200737,42.67369,7.366 673,554.3203,215.58539,33.670166,77.90311,6.559 673,-5.3758774,-17.267368,16.988285,41.140713,6.502 673,422.16394,215.95131,26.197388,59.306778,6.443 673,-17.500639,-65.0623,55.85707,150.42616,6.405 673,493.20285,220.83939,15.586182,32.890076,6.112 673,186.12009,200.31813,18.9431,26.946396,6.049 673,622.67224,-33.972473,26.946533,78.22396,6.027 673,532.9463,221.25385,37.45294,115.60895,5.908 673,626.79333,-19.339186,18.480835,50.19932,5.841 673,173.03468,184.19984,16.286514,30.462433,5.747 673,-11.354924,-31.786766,29.325996,70.228775,5.719 673,-12.335786,477.0779,30.576046,63.563934,5.706 673,-6.1351776,489.68945,18.567635,42.273315,5.648 673,626.40063,488.62427,21.384949,44.705566,5.583 673,517.99475,222.59727,37.08264,104.851,5.58 673,528.9983,266.08203,27.312866,77.13196,5.373 673,613.17804,453.83932,39.325317,107.445465,5.338 673,413.11353,213.27554,27.654053,74.43042,5.325 673,602.6039,-56.72077,53.155457,133.35405,5.264 673,586.67883,220.41411,15.170532,33.174026,5.259 673,390.166,-35.512848,29.422607,80.36298,5.163 673,575.5884,200.38297,44.96814,139.1713,5.135 673,586.19434,-98.55562,73.980774,228.78632,5.102 673,-21.675465,402.8634,78.92482,175.31415,5.034 673,2.6289606,202.80737,39.321793,79.9812,5.016 673,-72.420586,266.3838,199.96994,460.5912,5.015 673,178.26018,197.34361,19.286484,28.826996,5.002 673,475.1931,217.71257,16.947357,31.383667,4.953 673,-4.730081,155.62013,17.247623,42.985245,4.924 673,235.27449,124.69361,15.31311,21.67849,4.758 673,583.53143,409.52472,71.28815,178.8653,4.728 673,564.4313,219.15915,37.46045,114.776245,4.724 673,194.38559,202.46494,18.767868,25.804749,4.711 673,426.79755,211.20412,19.44281,36.3264,4.679 673,365.5468,-35.599773,29.720764,76.69132,4.662 673,536.62115,311.28107,143.12585,341.35333,4.638 673,490.32336,-181.45782,234.95972,424.6319,4.578 673,42.00459,191.08435,19.318295,35.313965,4.571 673,170.19128,197.03969,19.681473,29.95102,4.566 673,416.7195,211.51788,20.134094,36.597183,4.549 673,567.78284,219.79593,23.051147,54.715942,4.529 673,228.68185,124.62387,15.889603,21.780518,4.489 673,-4.799324,202.61592,18.149681,44.553665,4.465 673,2.2379236,209.04709,17.791443,36.47133,4.463 673,514.40186,-19.8093,18.31726,45.721813,4.441 673,62.75211,171.42383,27.928242,55.305054,4.42 673,-9.048998,180.55862,26.602568,65.73212,4.404 673,72.81354,184.09776,22.694878,44.277603,4.4 673,348.34186,202.87143,17.347565,39.50972,4.389 673,460.70206,101.433876,34.766327,63.82699,4.371 673,494.10556,226.36365,236.67618,515.66046,4.364 673,594.4318,-44.787197,44.01007,95.28296,4.349 673,483.57986,217.90005,17.047089,31.73796,4.342 673,491.90387,-17.15417,31.52069,67.88147,4.341 673,-17.404148,158.89217,51.14967,124.76784,4.337 673,1.8884987,188.40639,19.775234,38.854675,4.319 673,613.6886,-22.298782,27.52124,75.702095,4.299 673,576.6009,229.35378,21.906189,54.19365,4.296 673,106.71878,198.22057,19.042542,32.02394,4.275 673,-4.7627635,128.204,17.702112,46.010315,4.269 673,519.1288,-36.028904,27.764221,78.19207,4.265 673,403.139,-35.826366,32.09189,79.76805,4.254 673,203.44699,204.60039,17.387573,23.907394,4.249 673,505.6808,220.6773,16.940918,37.793762,4.155 673,-4.800214,107.60788,16.520851,39.406586,4.152 673,3.57139,-14.994578,15.38545,37.04975,4.131 674,572.7741,229.53444,31.056213,66.661575,67.58 674,580.9229,226.19293,35.06244,83.47388,14.466 674,557.41,229.18822,31.576538,61.820084,12.086 674,442.31674,215.93056,20.129364,44.27858,7.826 674,-18.19436,-64.55514,56.402054,147.16728,7.496 674,542.35144,227.13365,28.941223,58.320847,7.243 674,448.89954,222.42694,20.201569,47.072723,7.181 674,567.3036,220.91684,28.161743,57.910828,7.118 674,370.90387,205.36847,18.8544,40.915848,6.935 674,547.0201,-16.949594,33.502197,64.811966,6.829 674,597.7094,223.06061,34.071655,96.18909,6.62 674,590.00903,238.10184,23.93396,53.797302,6.554 674,180.74155,184.51474,15.519897,28.24881,6.544 674,-5.064225,-16.459177,16.427397,40.624096,6.291 674,-6.2593994,489.1845,18.647663,42.65851,6.157 674,529.3464,-15.607669,35.205383,60.870872,6.134 674,560.7116,222.94308,23.284607,43.541992,6.088 674,-4.017699,155.59201,18.20092,44.09349,6.087 674,413.68655,198.66803,25.50467,67.67706,6.078 674,-8.703644,133.74445,28.412674,73.06288,6.005 674,430.33313,213.68808,27.983398,63.546417,5.873 674,627.1244,-19.396032,18.03009,47.7639,5.853 674,613.0714,453.90836,39.895996,107.82663,5.694 674,517.0613,-33.68091,30.695984,74.471535,5.681 674,2.3678732,43.093075,21.60463,40.5152,5.637 674,3.0347962,169.58868,18.565954,45.293854,5.637 674,-11.401769,-31.564526,29.40002,70.91292,5.63 674,187.60796,185.88416,14.193176,24.304047,5.582 674,-12.530247,476.7485,31.081411,63.07657,5.564 674,377.38644,210.87155,18.654175,41.849274,5.37 674,617.92377,238.47505,19.957214,55.690598,5.364 674,120.98377,199.59512,22.084343,29.15654,5.356 674,-4.994815,140.0805,17.924116,44.75534,5.334 674,622.499,-33.27757,27.034424,76.41127,5.326 674,573.7177,220.16528,52.231323,148.92242,5.214 674,215.25847,75.32196,22.538498,30.59523,5.205 674,399.9314,199.93657,25.753113,63.57039,5.139 674,224.07646,193.58417,9.118362,17.72348,5.112 674,579.1123,-20.63198,32.929077,68.628456,5.105 674,202.56964,200.39197,19.142212,27.832687,5.063 674,564.1137,236.18542,42.173767,111.5495,5.056 674,490.55142,-183.16486,235.59915,428.9861,5.049 674,221.01514,205.36494,15.233063,23.261719,5.004 674,96.186516,200.03021,23.66996,30.757004,4.993 674,537.45593,-18.859894,20.000427,41.57424,4.987 674,-21.821592,402.707,79.28691,175.19498,4.98 674,-72.365425,266.5478,199.63553,460.3365,4.974 674,613.2958,230.58365,34.866394,110.55536,4.972 674,119.03187,65.53258,24.978798,33.075996,4.93 674,420.0085,209.1627,28.613312,70.37337,4.882 674,626.3314,488.23688,21.244385,45.639587,4.85 674,583.2932,411.00824,71.46802,177.37744,4.841 674,536.23627,310.918,143.58337,340.8115,4.824 674,41.12923,179.60266,22.803032,46.714493,4.794 674,618.6135,-19.943485,18.922852,45.81047,4.792 674,273.87784,198.80403,19.347656,36.053238,4.79 674,197.21616,189.43283,13.295776,20.77562,4.77 674,298.58618,203.52022,20.07016,36.294632,4.766 675,-1.2923551,204.59523,23.6831,43.563126,11.396 675,-4.7901125,196.9845,19.240139,40.5036,7.585 675,401.43408,196.48816,20.861816,46.887695,7.464 675,-5.045656,-16.727745,16.526741,39.92931,6.826 675,255.00803,193.0193,10.664886,20.32956,6.483 675,-6.128507,487.99628,18.585062,44.01526,6.482 675,231.65622,193.23557,9.595932,17.762177,6.405 675,455.18692,184.14377,27.126068,68.33646,6.081 675,6.4451003,204.61542,25.733217,38.19789,6.04 675,627.1301,-16.821093,17.186829,45.872284,6.004 675,239.57126,193.43745,9.087357,16.789017,5.979 675,622.5676,-33.3734,26.759888,75.79178,5.868 675,612.95416,454.37665,39.56079,106.95807,5.79 675,247.99323,193.74037,9.391388,18.08635,5.75 675,-11.43447,-31.246737,29.413174,69.228325,5.69 675,81.384056,199.27168,21.907417,30.00473,5.674 675,537.7484,-16.212282,19.033081,38.92935,5.641 675,536.666,217.69482,24.300354,35.554214,5.632 675,-9.63131,464.2067,38.18125,91.65195,5.584 675,537.2921,-2.458641,21.638794,37.93436,5.441 675,532.9194,-31.876097,29.797485,67.670204,5.364 675,498.8825,181.4202,18.688232,32.0643,5.264 675,219.01909,200.5426,18.504272,27.417267,5.228 675,281.40802,193.66402,21.298065,37.5338,5.203 675,496.91754,228.75984,21.33496,43.121475,5.16 675,530.75385,198.43758,17.959656,30.089035,5.148 675,-17.467022,-64.94016,55.004704,149.25919,5.125 675,253.26485,203.7998,13.340622,20.881882,5.087 675,-72.891464,265.8236,200.30743,461.3949,5.077 675,-21.886848,402.20065,79.29106,175.57437,5.02 675,227.26776,201.3056,17.539764,26.83966,5.008 675,602.32166,-55.238647,53.98877,138.47014,4.958 675,506.00983,183.76692,19.298279,31.11296,4.954 675,505.0966,230.17456,21.5159,40.093933,4.943 675,557.24506,-17.056736,31.344055,65.150505,4.894 675,530.8398,-14.079147,18.286743,36.24677,4.869 675,619.54083,-16.954102,17.158325,41.58631,4.852 675,626.58075,488.78943,21.068298,44.71759,4.825 675,583.21014,410.43478,71.56085,177.99893,4.789 675,536.6638,310.96533,143.08539,340.62207,4.777 675,522.9057,188.94637,19.226685,33.426605,4.735 675,499.35315,206.89253,18.402832,37.780014,4.691 675,516.45374,197.83507,16.125977,32.4467,4.679 675,284.4483,189.27454,31.439331,58.638535,4.673 675,209.95526,198.9075,19.940613,28.498596,4.65 675,488.36032,225.95808,21.904083,48.589493,4.643 675,518.07916,180.4574,28.631348,52.72223,4.642 675,588.8888,229.43663,26.990662,63.04091,4.634 675,545.92566,-16.82295,19.146912,39.21917,4.631 675,3.9313622,-14.091738,14.990177,35.555756,4.613 675,490.1216,-181.92703,235.36008,425.48474,4.603 675,585.4983,-103.85792,76.01715,238.63422,4.597 675,97.57751,196.84789,20.371239,27.787704,4.579 675,262.02765,189.73807,12.419617,23.740051,4.562 675,105.973625,197.6568,19.60617,26.648575,4.528 675,538.1489,206.88573,18.683044,29.23384,4.521 675,524.85095,214.7335,31.881897,49.171494,4.484 675,493.44684,227.21777,237.42322,514.9888,4.482 675,201.85144,198.90332,20.013062,28.002396,4.464 675,548.98395,53.294075,32.622803,66.869,4.434 675,472.95795,189.08847,21.568909,50.837753,4.425 675,248.09668,200.3394,10.315094,17.398102,4.39 675,73.26221,200.87717,21.218643,29.355804,4.359 675,-10.291472,206.45187,27.390491,61.953278,4.356 675,508.1265,193.60509,16.67984,35.990158,4.341 675,523.7857,-13.92903,16.912415,35.170174,4.335 675,546.3347,279.21732,20.739136,35.25461,4.331 675,568.5592,178.78827,29.51709,68.93349,4.325 675,543.8176,226.9962,23.578247,36.669632,4.258 675,18.286135,196.97276,32.30464,46.665802,4.248 675,306.7174,192.30287,21.341736,42.278824,4.238 675,495.33572,182.37767,25.100433,57.535538,4.216 675,555.1292,-18.34403,18.696838,41.621616,4.214 675,523.78955,210.96056,16.997131,31.079956,4.159 675,520.4993,227.66006,23.342957,38.442932,4.154 675,478.49533,212.83313,26.38266,62.800232,4.116 675,-36.999146,-126.96846,117.432816,285.49234,4.106 675,531.88715,222.0783,32.85919,56.821396,4.105 675,563.1296,35.17233,32.554443,69.9662,4.087 675,569.77997,-3.9220448,20.566772,39.77964,4.08 675,578.2432,128.80565,29.832031,70.88898,4.072 675,530.3116,180.0292,19.01117,30.402405,4.051 675,553.06714,36.529972,23.467407,41.596066,4.044 675,563.1477,-17.538599,18.194153,43.170486,4.044 675,168.30415,196.57564,22.200943,31.226288,4.027 675,239.60294,185.33784,9.539673,19.000717,4.022 675,224.17847,192.00061,10.3055725,18.104416,4.018 675,515.7429,-13.557129,16.166931,35.40148,4.017 676,566.0241,206.0646,28.607605,65.752106,9.427 676,331.3689,165.13287,28.174744,76.68764,8.459 676,2.4430978,190.82697,21.976252,41.899445,8.21 676,589.45245,203.9679,28.335083,71.847534,6.961 676,-5.277446,-17.371542,16.854916,41.02762,6.624 676,425.88403,163.91081,22.2294,49.0869,6.487 676,388.45535,167.9182,28.27182,70.122086,6.255 676,612.7912,454.57053,39.65851,106.59012,6.072 676,-12.904969,477.314,31.466824,62.816864,6.049 676,-11.228051,-31.472872,29.148468,69.42516,5.935 676,627.1035,-19.3273,18.046997,47.88858,5.674 676,-6.565256,489.32217,19.179342,43.30533,5.6 676,208.83257,197.7693,21.630707,29.531662,5.523 676,441.38226,175.14021,21.58908,51.192932,5.427 676,622.51886,-34.017357,27.160461,76.9547,5.418 676,217.97879,198.74377,19.314835,27.940582,5.313 676,3.267275,203.57883,38.36883,86.474884,5.238 676,200.48602,194.1037,23.082458,30.540207,5.184 676,-16.78038,-63.792007,54.83191,147.1591,5.122 676,431.29886,162.6354,26.459503,68.97632,5.098 676,231.57234,191.92583,10.764236,18.512161,5.087 676,-72.72553,266.16333,200.03482,461.35858,5.062 676,414.8212,157.25229,30.094604,64.96767,5.035 676,-5.1546392,198.17964,18.580235,41.9039,5.031 676,104.54826,199.83685,22.819511,29.911697,5.02 676,-21.84914,402.3165,79.25432,175.44278,5.001 676,626.2323,487.85236,21.496826,45.53717,4.975 676,443.3458,203.55156,19.018738,37.488342,4.937 676,238.46622,198.5694,10.521652,18.279434,4.917 676,536.6182,309.90833,143.25238,341.45813,4.91 676,393.5768,197.41248,22.51004,48.5448,4.815 676,371.97263,180.23267,30.599579,66.525375,4.803 676,585.809,-103.630745,75.77667,240.52316,4.76 676,602.71674,-58.090225,54.11566,140.03406,4.753 676,-9.482633,181.1507,29.189747,62.85263,4.714 676,582.91516,411.1275,72.03296,177.74677,4.714 676,114.06828,207.57912,20.066635,26.912674,4.688 676,239.50137,192.43425,9.722733,17.74585,4.682 676,121.21494,200.56448,20.315895,27.254868,4.569 676,388.72653,-18.83052,29.813171,68.506645,4.553 676,284.19553,193.90027,31.9711,55.480637,4.549 676,227.22021,200.31635,17.809906,25.990646,4.525 676,493.47842,226.84634,237.92166,515.2228,4.444 676,-37.011673,-127.93081,116.44644,286.72586,4.437 676,153.21478,195.01126,20.64296,31.09053,4.354 676,533.35443,-183.03122,147.23322,425.12512,4.323 676,184.53186,200.10373,21.516632,28.848373,4.3 676,570.73615,-19.17181,17.563843,40.24542,4.273 676,550.52124,-34.888584,29.145447,68.87114,4.26 676,192.47835,198.99594,22.018478,29.965988,4.25 676,-5.6578217,232.77081,17.3232,36.515076,4.25 676,77.75029,168.98306,13.9477005,28.559906,4.229 676,575.1304,193.18811,46.15149,116.79724,4.228 676,256.14648,192.01306,9.26355,20.123291,4.215 676,448.6682,188.43501,19.072113,39.496063,4.211 676,298.10687,194.78487,20.323517,36.495926,4.208 676,85.67458,170.10606,13.665459,28.817307,4.204 676,4.262936,182.35678,15.414495,32.529053,4.202 676,562.00714,-20.26028,19.074646,43.39187,4.192 676,193.47733,210.74425,35.353317,55.76625,4.189 676,129.47491,199.20798,20.428177,27.943878,4.188 676,552.0327,181.0422,37.245728,84.714386,4.188 676,618.83264,-20.904928,18.99884,46.42573,4.187 676,6.74047,201.69011,23.291271,38.125565,4.175 676,594.36926,-47.399944,44.673218,99.99811,4.172 676,543.2714,196.41019,51.36963,109.87808,4.164 676,18.558624,205.99266,41.668304,76.173965,4.158 676,426.5528,193.36412,20.594574,40.337677,4.134 676,484.63483,295.2422,31.6922,53.98224,4.103 676,3.6298923,-15.132906,15.357994,37.214737,4.096 676,574.7852,-35.22438,28.06549,68.30167,4.095 676,247.98119,192.28247,8.980301,18.350464,4.063 676,565.0229,166.60208,38.438293,91.36984,4.061 676,-5.634241,214.6196,17.8554,39.622665,4.036 676,25.037415,200.87611,22.202843,31.238632,4.015 676,394.20425,-16.358526,18.424713,44.100666,4.015 676,169.40895,221.4431,36.590668,53.964645,4.006 676,-8.969392,103.97196,38.55153,105.250175,3.943 676,33.262783,200.604,21.9436,30.219208,3.943 676,97.29949,205.81384,21.106117,29.71431,3.937 676,-69.196045,-187.96321,210.63176,452.33295,3.928 676,422.91904,176.88483,28.674011,68.37059,3.927 677,354.53183,157.66646,27.701752,86.46898,10.587 677,525.2273,16.561556,14.019165,23.757391,6.84 677,-5.0068903,-16.674643,16.584295,40.31857,6.785 677,540.3368,31.248482,15.4800415,25.870758,6.727 677,541.21454,15.462084,13.822754,25.201757,6.543 677,0.94899774,211.81538,20.949635,34.45221,6.441 677,542.0686,6.676676,13.766296,24.42538,6.437 677,446.1394,115.644554,29.747314,98.7815,6.384 677,602.6267,-56.218643,53.59143,140.14046,6.227 677,420.64966,-13.132051,15.098938,35.849106,6.221 677,447.10892,191.69763,31.601562,81.60834,6.221 677,-6.4515295,488.43683,18.942446,43.862976,6.206 677,550.18335,6.436363,13.586121,25.88675,6.19 677,593.0847,108.25678,44.471375,195.9505,6.071 677,421.7932,115.47704,28.710968,68.169624,5.975 677,330.85294,198.00903,17.874329,36.48996,5.961 677,557.526,21.745445,13.821472,27.991562,5.943 677,508.67078,-10.743071,14.219421,32.51941,5.926 677,539.10175,44.09681,17.98175,28.04419,5.918 677,526.05615,7.8839827,13.507385,23.516277,5.896 677,509.88602,6.716634,13.847137,25.176495,5.879 677,533.8929,7.5325146,13.4140625,24.027378,5.862 677,477.15558,6.10087,15.569275,28.53951,5.859 677,518.0503,7.459305,13.375977,24.535744,5.848 677,500.59717,-10.499394,14.65271,32.75909,5.796 677,238.4685,203.18039,11.854919,20.082886,5.75 677,246.20416,204.20708,11.492676,19.13031,5.739 677,324.05328,199.23257,17.543884,33.569855,5.725 677,412.07117,-14.035315,16.233765,35.765003,5.713 677,428.1408,214.28786,32.61508,58.233627,5.661 677,626.07416,488.14777,21.35675,45.43097,5.651 677,492.35773,-11.136951,15.069672,33.548786,5.632 677,469.30438,6.4391127,14.782562,28.588062,5.611 677,461.46368,5.56234,14.760345,28.323292,5.594 677,-9.238902,464.20148,37.911823,92.12311,5.59 677,573.3593,13.392951,14.425354,30.618973,5.519 677,444.41714,-11.27486,14.587494,34.39583,5.519 677,254.6379,191.03679,10.810776,22.506119,5.506 677,549.7778,22.95905,13.313599,26.595726,5.487 677,426.11725,217.27452,21.824036,38.5036,5.465 677,452.6805,-10.526275,14.4496155,33.074463,5.435 677,627.3985,-17.134136,17.157898,46.818844,5.431 677,-11.399154,-31.347267,29.446968,69.98572,5.418 677,-5.7693863,213.22858,18.521526,39.502502,5.373 677,533.6802,23.489403,13.538086,24.837357,5.326 677,613.0675,453.81494,39.474487,107.87323,5.319 677,523.7971,29.019787,16.622559,27.776306,5.308 677,505.8247,149.75583,20.987549,43.263046,5.306 677,547.2546,123.62049,18.222412,33.538048,5.296 677,419.28455,212.18222,18.325867,33.900482,5.257 677,558.232,6.376504,13.981079,26.754913,5.253 677,538.3812,124.52528,17.741577,33.042206,5.246 677,516.9728,-9.375779,13.817383,31.77731,5.214 677,239.51999,191.17075,9.952209,20.468353,5.204 677,507.32013,139.02121,18.897522,32.600616,5.199 677,460.48172,-10.187487,14.716339,32.866035,5.192 677,484.9632,5.918373,15.500397,29.134026,5.153 677,476.27213,-10.289607,15.065613,33.32217,5.135 677,17.041489,209.77707,43.158764,89.39807,5.135 677,429.45197,9.759853,15.111328,32.21204,5.119 677,524.78815,-9.37267,13.727356,31.353138,5.115 677,247.23376,191.5213,10.30249,21.520264,5.111 677,-16.901272,-63.63491,54.97467,147.37068,5.102 677,428.8316,-13.124657,14.724152,36.720234,5.088 677,359.40802,202.78218,22.185883,44.69725,5.083 677,444.34476,19.884277,14.593658,33.874405,5.037 677,432.23773,102.97622,61.952484,176.40784,4.998 677,1.5856385,208.01575,41.21286,97.84198,4.994 677,-21.835754,402.3194,79.289665,175.49152,4.994 677,-72.542244,266.341,199.97214,460.70813,4.993 677,549.3511,132.11958,38.239685,100.747025,4.986 677,556.59705,-11.628249,14.58667,34.049286,4.976 677,508.88913,22.962992,15.177155,26.382826,4.96 677,565.77716,14.157598,14.633301,28.999466,4.94 677,493.4517,5.640521,15.041351,27.982742,4.898 677,517.1067,23.412691,14.59259,25.876822,4.897 677,484.2663,-10.114374,15.216492,33.213104,4.892 677,436.74176,-11.0170965,14.683258,35.079624,4.89 677,531.5152,36.77466,17.693665,27.954056,4.88 677,464.2951,131.29459,21.70868,54.24652,4.862 677,395.01785,-1.0608597,19.659393,33.066936,4.845 677,403.5367,-13.795677,17.082977,35.19577,4.839 677,501.79816,6.1025515,14.224915,26.97984,4.799 677,421.01825,1.268323,15.584839,30.648796,4.766 677,583.41986,409.77094,71.33563,178.56982,4.738 677,468.43488,-9.549844,14.788635,32.838192,4.728 677,266.69705,207.60265,17.67453,26.798126,4.709 677,453.5072,5.6488895,14.474304,28.335691,4.692 677,548.8075,-10.1272545,14.485474,32.073647,4.692 677,540.71704,-9.7635975,14.226135,31.628069,4.689 677,436.98715,13.061125,14.893646,32.418312,4.68 677,536.6637,312.01178,142.41162,341.32068,4.672 677,387.10425,-13.827216,17.612213,35.55114,4.668 677,380.80304,199.69157,16.4552,31.277054,4.659 677,522.7109,41.937584,18.433655,30.517242,4.643 677,186.76495,191.04521,35.186646,44.90616,4.608 677,412.05206,211.31433,17.24939,31.318237,4.597 677,546.76324,45.166824,17.678223,27.139465,4.597 677,230.98804,197.70927,11.175659,20.01802,4.592 677,74.101006,202.85558,21.91745,30.043259,4.587 677,3.7209697,-13.986881,15.288349,36.808254,4.58 677,623.3573,-33.163216,25.909668,77.2486,4.577 677,488.57376,-179.96579,237.52365,426.0467,4.556 677,395.05252,-14.446238,17.592102,35.598682,4.554 677,500.41724,21.426582,15.856873,28.69104,4.54 677,403.6661,-0.45535278,18.411377,32.277565,4.532 677,262.08234,189.81099,11.560944,23.823135,4.503 677,227.70479,202.56516,16.519531,24.82866,4.481 677,491.91534,20.759907,17.255554,30.212048,4.474 678,-5.1466,-16.536903,16.57291,40.4915,7.399 678,-12.080338,-41.548058,40.539703,102.944176,6.486 678,-6.090293,489.80447,18.491636,41.55417,6.413 678,-12.453099,477.75925,30.961212,62.33847,6.086 678,10.295491,210.63788,19.379875,33.029526,5.753 678,3.0306773,216.42345,17.201311,32.748993,5.656 678,626.77167,488.44254,20.51648,44.57419,5.581 678,611.05475,-49.39596,41.69458,102.397644,5.544 678,613.26025,453.6505,39.252014,108.58917,5.405 678,227.77864,200.89893,16.248749,25.066498,5.379 678,-5.7339344,209.0104,17.701122,38.12903,5.112 678,529.5677,302.7644,35.28064,65.57141,5.105 678,-21.748108,402.69724,79.18168,175.16135,5.086 678,-72.83836,265.857,200.38977,461.35638,5.06 678,18.22958,209.98404,19.178493,31.695679,5.05 678,626.52673,-20.204063,18.064392,49.86277,5.022 678,49.490887,210.71762,19.597607,30.376007,4.991 678,220.10484,200.03662,17.18077,25.575226,4.972 678,25.16058,207.21457,19.684437,31.84938,4.967 678,469.13205,153.68932,31.30194,64.84325,4.937 678,536.77673,310.48962,142.42743,341.71594,4.804 678,487.2842,301.2752,38.30545,74.9259,4.762 678,488.2279,154.25601,22.626038,43.867218,4.74 678,582.94977,410.95187,71.74298,177.80386,4.736 678,545.5112,311.46674,35.67157,64.34235,4.723 678,192.73613,197.45256,21.374313,28.940536,4.681 678,229.71718,197.1173,11.624756,19.581497,4.648 678,443.69385,157.79109,32.005768,61.512527,4.64 678,206.05853,188.44333,12.672073,20.613373,4.634 678,3.864965,-13.811597,15.039551,37.148117,4.562 678,42.529915,203.15335,21.531532,34.600983,4.557 678,512.72894,292.29172,36.98883,67.15622,4.539 678,254.70274,188.20071,10.72789,23.319687,4.431 678,284.17453,192.1744,31.062164,54.64186,4.427 678,387.71466,213.3189,31.98639,60.65065,4.375 678,201.67854,199.00514,19.481491,27.088577,4.372 678,440.62833,103.179825,24.973175,49.201126,4.366 678,493.40973,227.14603,238.18195,515.08276,4.356 678,478.79855,285.24323,36.586945,70.62149,4.337 678,496.80133,282.01657,36.708496,65.88843,4.298 678,585.1914,-98.496605,76.46881,231.94391,4.293 678,618.2487,-22.168213,19.917725,51.353737,4.205 678,557.2009,222.29195,14.380127,27.183304,4.178 678,485.70074,257.4715,14.128815,31.240845,4.169 678,571.9501,321.91028,32.0083,61.21463,4.16 678,210.83658,199.02061,18.642883,26.971863,4.116 678,196.88037,188.43396,13.874313,22.274231,4.109 678,112.71798,198.59274,22.14112,29.681412,4.098 678,323.04114,192.95279,19.535889,38.113174,4.086 678,184.74896,203.88991,21.878479,29.874191,4.078 678,238.62892,198.95598,10.296387,17.830841,4.064 678,-4.200835,187.68088,16.431946,40.178787,4.063 678,502.7377,308.75064,38.063446,71.00641,4.06 678,-37.513317,-128.09013,117.80124,283.20032,4.043 678,490.13004,-176.13898,234.80374,417.37143,4.036 678,175.88295,196.4047,23.700363,30.883347,4.031 678,98.95753,240.81738,17.740257,22.21582,4.008 678,468.26758,253.51408,15.840942,35.329758,3.969 678,3.0510879,199.13191,18.521358,36.63513,3.959 678,168.47089,203.86588,22.875015,30.264267,3.952 678,-5.604517,222.9235,16.793919,38.052826,3.948 678,-19.446903,-89.06651,70.78346,201.02673,3.947 678,299.4587,190.54376,30.747223,63.342865,3.935 678,235.86157,203.99124,15.26207,23.767532,3.935 678,247.73415,199.14348,9.791733,18.161163,3.894 678,588.5526,230.55882,16.33789,28.868484,3.877 678,223.65277,195.60918,12.263489,20.42102,3.85 678,107.12482,241.11877,17.3406,21.333069,3.85 678,619.1166,491.4378,19.614258,41.335205,3.837 678,397.23404,227.53136,30.53357,59.58235,3.831 678,323.3527,193.7302,31.300568,65.86301,3.825 678,57.328514,213.01219,19.498009,29.63739,3.811 678,239.19884,190.6335,9.994354,18.89009,3.802 678,509.83374,215.30656,13.450012,25.200119,3.786 678,493.1991,263.9612,14.401886,31.85376,3.767 678,456.88263,163.18962,23.03128,44.241516,3.763 678,395.5557,165.13469,29.82788,61.297623,3.754 678,552.9292,327.13272,22.831726,38.502808,3.734 678,452.83463,256.99698,30.235138,61.11203,3.714 678,-9.079537,103.11803,39.322998,108.42088,3.71 678,35.358437,212.31496,17.980877,28.67694,3.709 678,91.292915,240.99207,17.350769,22.638336,3.69 678,2.08504,491.3281,19.855698,40.37857,3.681 678,121.33202,199.6793,21.27549,28.25801,3.681 678,461.13705,253.29309,16.463501,35.630432,3.672 678,2.596622,237.54752,18.22558,37.78607,3.666 678,429.27094,230.6138,28.136108,70.042175,3.663 678,10.582929,230.80757,17.93993,31.365433,3.66 678,493.99356,214.84955,13.266998,25.018677,3.652 678,269.7414,182.50095,13.630798,31.528458,3.65 678,275.84003,169.81029,15.03418,26.696548,3.647 678,465.99054,166.07854,21.91565,45.83705,3.639 678,443.4416,247.06506,18.20691,40.985413,3.637 678,-3.1007826,165.88118,14.9391575,39.18846,3.632 678,231.07344,181.00085,10.953018,23.296158,3.632 678,247.54492,189.90196,10.016663,20.773865,3.626 678,6.148851,198.40907,28.439764,50.97911,3.622 678,152.79955,197.71025,22.791565,30.404922,3.621 679,-5.0875587,-16.32641,16.735035,40.183075,8.324 679,333.31116,182.84998,13.762238,34.63759,7.917 679,8.797608,209.39061,21.416367,33.220795,6.782 679,-6.0643077,489.38812,18.176924,42.07422,6.703 679,603.4208,-54.98965,52.735596,138.5765,6.669 679,429.3602,208.1029,13.9453125,27.098984,6.324 679,-11.005821,-31.836266,29.233362,70.91163,6.315 679,506.7304,155.43152,19.821716,42.47728,6.06 679,-12.282599,476.47272,30.508457,63.620667,5.92 679,626.7767,488.34546,20.492126,45.16339,5.893 679,428.33075,245.79886,16.690063,35.71402,5.889 679,420.45184,240.06822,16.414642,33.22255,5.731 679,411.5866,238.82643,17.605255,34.233994,5.685 679,613.29846,453.98114,39.544434,107.11328,5.671 679,627.46576,-17.400848,17.034607,45.354862,5.664 679,24.853918,209.04504,21.957102,29.68866,5.647 679,2.6618795,215.1891,18.914585,32.94876,5.606 679,3.7839282,-13.583313,15.334894,36.525826,5.566 679,16.761381,209.894,21.415514,30.85733,5.477 679,-5.2978854,203.526,18.106121,36.987793,5.472 679,-16.740416,-64.012115,55.198563,148.51521,5.354 679,33.092922,205.00238,21.715084,30.589111,5.309 679,413.6363,207.3175,14.442688,26.347214,5.289 679,495.9639,151.73706,28.806854,60.746674,5.28 679,427.8797,195.24883,17.09491,31.595337,5.101 679,429.3006,219.75687,14.690063,30.301285,5.098 679,-21.818882,402.5228,79.04793,175.35806,5.08 679,-72.71157,265.67102,200.11258,461.13782,5.019 679,523.576,275.20142,30.4292,65.50644,4.893 679,170.59587,200.45288,18.523087,25.60141,4.846 679,435.7703,247.37767,16.726593,35.571304,4.839 679,623.37665,-34.61569,26.003357,74.68899,4.819 679,537.00085,310.13544,142.35413,341.33362,4.812 679,582.8199,411.1559,72.01874,177.68094,4.715 679,-3.6717362,191.35558,14.877697,33.94084,4.695 679,421.79138,208.43358,14.119324,26.872879,4.607 679,619.83813,216.643,17.157349,49.864227,4.58 679,89.9935,213.924,19.941765,27.997467,4.576 679,0.2798164,196.0774,26.544987,51.04654,4.564 679,245.37997,196.6816,12.13205,22.202637,4.551 679,428.94562,235.10864,15.36319,29.343353,4.486 679,72.75387,204.98738,22.003883,30.81514,4.456 679,211.22372,200.14357,17.119293,26.292908,4.445 679,17.638102,208.51346,40.421997,90.42569,4.423 679,4.453089,203.90726,17.081182,29.19989,4.412 679,204.14563,200.25813,16.447937,25.262573,4.41 679,493.453,227.35886,237.982,514.94446,4.406 679,237.0906,201.71124,12.394104,20.496689,4.404 679,40.831833,203.32726,21.88144,31.545044,4.403 679,-37.209557,-126.03944,116.52398,282.59485,4.388 679,123.00175,199.58788,18.335396,29.906479,4.368 679,331.77765,168.77786,15.286194,37.351013,4.355 679,98.42689,214.0196,19.466103,27.446457,4.311 679,421.61862,218.04483,15.416321,32.126663,4.306 679,546.36426,291.2124,34.11151,70.8519,4.261 679,584.98663,-99.76357,76.60388,234.90149,4.247 679,590.37695,226.2575,11.77124,24.81778,4.24 679,-10.67273,192.94815,28.109982,59.61699,4.238 679,331.4954,192.94388,17.482758,37.64267,4.23 679,572.1937,285.6564,30.188599,66.42078,4.205 679,199.00278,190.11101,11.388031,20.970749,4.164 679,596.8439,306.66165,31.671387,66.06912,4.162 679,436.12366,219.56201,14.897614,30.121704,4.152 679,3.5821044,241.45654,18.159443,35.369995,4.145 679,540.491,274.3921,31.011414,67.2095,4.143 679,130.236,197.15341,18.398865,30.078064,4.109 679,34.54787,209.96437,40.980167,85.00774,4.096 679,-69.44383,-188.54845,210.55077,453.24194,4.093 679,60.36034,197.1889,30.040829,46.32724,4.054 679,500.76526,269.1577,30.200073,62.952423,4.052 679,492.56317,260.93042,14.899841,30.53247,4.023 679,558.741,222.3153,12.320496,24.996613,4.003 679,81.77237,211.8666,20.464958,29.15268,4.002 679,3.928138,207.21452,37.896683,99.724655,3.983 679,11.114532,-14.088073,15.483784,36.439297,3.968 679,275.22733,198.77243,29.636963,52.270416,3.962 679,482.88586,272.2123,32.70404,69.07803,3.953 679,196.14342,200.68712,16.591095,24.740982,3.947 679,413.38995,218.12094,15.495483,31.99672,3.947 679,452.37225,220.01857,14.934509,30.17984,3.938 679,106.86757,215.8038,18.36728,26.122528,3.937 679,475.85455,251.20615,15.841248,32.840088,3.935 679,444.7678,220.34094,14.6315,29.418488,3.925 679,266.77112,197.94627,16.381409,30.40918,3.925 679,515.8756,256.95102,15.543213,30.397858,3.898 679,190.89728,191.461,11.042191,18.32866,3.887 679,178.39308,201.4429,17.695297,24.39444,3.885 679,489.76962,-176.01276,234.85226,417.53238,3.825 679,461.2712,221.22287,14.530182,27.864288,3.815 679,181.6529,190.7168,11.99823,19.542114,3.801 679,153.32315,198.75308,20.002594,28.019531,3.781 679,-4.188203,157.7567,14.821895,36.76303,3.774 679,443.65536,249.20895,17.014984,34.87314,3.772 679,244.20636,203.26189,15.346527,25.7574,3.755 679,-8.6725025,103.49527,38.629898,106.68921,3.746 679,-5.9126973,222.05745,17.093773,37.65596,3.744 679,435.0923,203.72656,15.2760315,27.825287,3.739 679,402.2844,235.02112,19.72696,36.696564,3.728 679,219.05836,201.32484,16.903671,25.53096,3.719 680,534.448,146.3635,27.357971,65.88826,9.265 680,-5.352337,-16.792233,16.684437,40.798557,7.858 680,0.0066697598,211.58954,23.147179,42.003967,6.829 680,-11.243818,-31.235046,29.139038,70.45056,6.532 680,518.1171,147.08998,27.73053,68.45232,6.454 680,612.188,-48.041428,40.067505,104.5908,6.431 680,-5.9276724,488.8048,18.304335,42.867493,6.084 680,627.4397,-17.489067,16.963074,45.659576,6.035 680,-12.414218,475.4146,30.491306,64.78595,5.849 680,627.00635,488.6324,20.34851,44.712585,5.843 680,219.59698,203.4742,17.624146,26.588974,5.824 680,176.79945,199.18022,22.792679,33.80307,5.817 680,113.53859,204.966,21.769821,33.452896,5.74 680,554.3128,150.10997,30.036621,59.443527,5.501 680,498.17267,168.19394,21.379333,43.30858,5.498 680,122.20173,213.37506,19.515083,28.906326,5.449 680,-6.4194827,213.79272,19.826284,43.25415,5.401 680,211.0627,202.6657,18.22136,28.080612,5.399 680,129.72841,212.90747,19.679993,27.61296,5.38 680,-16.818645,-63.18202,55.431267,145.96484,5.212 680,-72.90979,265.87787,200.47186,461.4217,5.107 680,613.224,453.97742,39.321167,108.14172,5.093 680,3.8378,-14.882894,15.221103,37.782555,5.082 680,331.5118,200.21237,19.634247,39.11827,5.036 680,476.9792,252.20541,13.539856,30.41449,5.029 680,-21.600597,402.90482,79.12265,174.94461,4.99 680,536.9712,310.22,142.52045,341.15536,4.879 680,582.95123,411.23376,72.01282,177.7063,4.838 680,389.5897,211.54343,14.624603,28.059998,4.777 680,236.0812,185.98195,13.578705,25.321121,4.769 680,469.281,253.446,14.114075,30.144333,4.757 680,-6.0804963,230.08815,18.025263,41.105637,4.754 680,298.38214,196.88405,20.538452,33.447357,4.722 680,395.31915,216.39798,17.15158,32.018906,4.599 680,171.7752,199.71338,19.4516,27.918411,4.576 680,226.82388,202.76044,17.15509,27.317673,4.53 680,461.8957,219.09055,12.727783,25.496155,4.516 680,185.90675,199.23372,17.65654,27.337524,4.507 680,484.22363,259.4062,14.644623,31.915924,4.494 680,493.29572,227.2738,238.10052,514.67993,4.469 680,137.73633,214.31142,19.197968,25.975266,4.467 680,504.1119,160.31236,22.507355,45.657013,4.429 680,202.6495,201.81393,18.90355,29.520844,4.396 680,530.2729,149.76572,21.818848,48.140305,4.389 680,460.27432,253.08162,14.787872,30.546188,4.388 680,235.15495,206.88017,17.706406,28.0484,4.376 680,562.4267,304.83527,34.79669,73.605225,4.362 680,444.47568,196.27002,16.219513,31.606628,4.354 680,481.99875,168.6109,20.40628,40.80797,4.342 680,322.99374,204.23918,19.799164,35.952774,4.319 680,438.37805,213.53105,13.281311,24.004623,4.311 680,493.61932,261.4105,13.414642,28.22882,4.287 680,451.9608,252.82277,15.5026245,31.721298,4.281 680,-37.2321,-126.80305,116.423416,282.67783,4.279 680,497.76578,280.56366,31.73764,70.570435,4.278 680,5.7531743,181.08707,12.858402,32.060333,4.275 680,500.45535,260.89304,13.706757,29.88446,4.251 680,1.2868702,228.72305,19.529617,37.46042,4.239 680,290.17868,204.36345,20.493011,35.270554,4.228 680,619.1014,491.2892,19.393799,41.626495,4.219 680,445.01254,215.5803,12.887085,21.49356,4.184 680,82.45415,205.39268,43.254486,71.31175,4.168 680,36.78334,196.1625,30.891327,49.849243,4.164 680,585.10986,-100.09066,76.510925,234.12991,4.151 680,7.5405207,206.72206,24.311466,41.413193,4.138 680,284.35422,197.9242,32.51474,52.964417,4.135 680,444.36963,251.63654,15.695068,32.38977,4.102 680,436.43695,250.02997,16.216919,33.63147,4.097 680,2.3545325,211.43065,39.69428,88.97716,4.084 680,244.27692,205.0688,16.241028,27.314148,4.081 680,453.49976,231.58954,13.45459,27.362305,4.053 680,469.02405,263.31036,28.717316,64.026855,4.049 680,272.59296,203.21335,19.369263,32.073303,4.038 680,453.8875,220.26888,12.779846,25.90715,4.035 680,445.443,231.45567,13.631439,28.121384,4.028 680,-69.53543,-188.54202,210.70074,453.13254,4.026 680,-12.63425,208.91096,29.956738,64.08098,4.001 680,338.76,204.79935,19.205566,38.99817,3.999 680,563.7693,132.57982,30.282776,60.38141,3.999 680,314.4902,204.60948,19.94812,34.955,3.991 680,-4.227937,196.36873,16.818493,39.533295,3.991 680,48.761215,208.89554,22.305588,34.108887,3.954 680,16.1241,213.42583,23.425991,34.33757,3.946 680,192.79462,199.1606,21.08815,33.78087,3.935 680,74.94902,191.4891,33.357788,48.70819,3.881 680,437.50964,219.8223,14.360626,31.303802,3.877 680,556.4929,262.2324,15.899414,32.42685,3.868 680,100.145386,194.40619,32.687347,49.067993,3.86 680,437.69086,232.65347,14.221924,29.217651,3.858 680,105.62308,213.49783,20.988823,30.510666,3.851 680,302.10162,193.60762,28.903748,54.530563,3.841 680,-5.397248,248.15955,16.798727,38.015137,3.838 681,573.3185,122.18195,30.204834,64.23943,8.831 681,494.28876,217.47243,12.4331665,22.107986,8.732 681,-5.1064873,-17.13842,16.696442,41.25533,8.242 681,478.1463,216.82463,12.0216675,23.924332,7.765 681,470.86963,213.13821,12.328491,26.205322,6.497 681,-6.177776,488.82446,18.68209,42.77649,6.482 681,486.65588,217.89876,12.325623,22.895706,6.46 681,532.9493,144.28928,30.240417,60.041916,6.296 681,-10.988777,-31.833769,29.311338,70.83498,6.256 681,337.32742,205.0814,20.81253,45.230347,6.072 681,627.21136,-18.132736,17.273132,46.349445,5.994 681,353.7842,138.85886,24.6763,79.15265,5.987 681,626.5283,487.35248,21.127808,45.8432,5.874 681,-9.1151495,465.06213,37.761055,91.63013,5.779 681,419.47882,240.58527,17.93512,34.2807,5.749 681,531.90784,154.5364,20.969788,41.398865,5.696 681,451.195,248.27354,17.65509,34.989,5.68 681,623.41705,-33.257484,26.092285,75.60612,5.676 681,524.23303,157.67715,18.55072,36.751297,5.639 681,411.6812,238.85986,17.537811,35.743225,5.596 681,603.5877,-54.14703,52.421875,134.34906,5.578 681,427.59546,243.01506,17.313019,31.764359,5.453 681,460.0723,242.03479,16.459656,32.503235,5.45 681,613.6296,453.82358,38.480713,108.806854,5.368 681,291.8883,195.42601,16.688324,25.574081,5.354 681,270.71902,206.0427,23.618622,38.95224,5.335 681,429.62497,247.8793,27.963287,62.97119,5.334 681,137.32217,198.4705,20.910965,29.685226,5.312 681,221.80122,202.70937,13.986191,23.703735,5.225 681,499.88135,215.03497,13.413269,23.515045,5.14 681,283.80334,190.11713,17.178375,26.43103,5.126 681,-72.63942,265.94595,200.22578,461.3713,5.119 681,-16.941236,-63.033558,55.309067,146.19069,5.082 681,546.2551,302.39484,33.528625,62.425232,4.976 681,-21.61379,402.84485,78.9686,174.92157,4.97 681,145.05797,198.95338,21.38655,28.253128,4.945 681,1.7218804,205.49551,20.679235,39.13684,4.925 681,3.8969998,-14.421358,15.228607,37.850746,4.921 681,-5.88058,200.247,18.681377,41.06958,4.908 681,41.126198,211.8572,21.45095,32.056396,4.883 681,318.0356,167.36111,12.483643,27.50261,4.879 681,586.33795,126.25169,30.933777,64.92767,4.86 681,273.9476,199.76288,16.952118,27.393738,4.856 681,536.85785,309.90582,142.6051,341.9322,4.845 681,17.153744,210.0229,41.93604,87.013504,4.824 681,2.5420737,209.4779,39.45252,95.18158,4.81 681,531.1215,279.15338,32.739014,62.984924,4.78 681,562.70984,155.67915,20.67218,42.353607,4.772 681,293.3115,181.63994,15.639618,25.8721,4.748 681,443.34824,247.46632,18.078949,36.24382,4.745 681,583.06177,410.69916,71.86145,178.36426,4.719 681,515.334,269.32718,31.601624,60.915436,4.696 681,325.24155,165.93187,12.803558,29.928299,4.629 681,467.15674,239.72162,16.743866,34.48468,4.616 681,307.84006,206.92787,18.844025,32.269485,4.609 681,25.510727,210.97058,20.46302,32.934387,4.593 681,445.06454,246.61566,27.91809,65.884766,4.581 681,302.13168,169.2898,12.759033,24.250336,4.563 681,554.27795,285.55215,32.60846,64.97177,4.536 681,8.5759945,205.1891,22.208097,36.34465,4.528 681,203.54886,200.36967,16.988998,26.168,4.525 681,48.935783,212.83153,21.980194,29.80159,4.52 681,515.1318,158.12338,18.31897,35.463257,4.52 681,434.9214,245.8463,18.608307,37.887955,4.476 681,229.0996,203.50684,13.701065,23.548355,4.465 681,-4.33183,179.6791,16.621458,40.76761,4.459 681,493.51025,227.31784,237.71283,514.62085,4.454 681,411.54022,209.4794,16.889679,31.748383,4.447 681,290.36444,208.24326,18.81369,30.75232,4.441 681,435.64847,257.95456,31.219238,64.63162,4.431 681,32.618973,204.81247,23.851555,35.63797,4.429 681,299.6419,208.26256,18.088867,30.837646,4.399 681,518.786,156.8372,27.95514,56.145584,4.393 681,428.67883,221.22296,15.446899,31.886353,4.391 681,281.16718,207.76433,20.48349,34.683334,4.382 681,554.19763,153.56598,21.261597,39.678253,4.366 681,315.4331,205.28255,18.450714,35.279984,4.346 681,419.81757,220.37291,16.216705,32.914886,4.345 681,405.1623,210.98909,16.53601,32.440353,4.34 681,507.49832,163.46478,18.049408,38.470398,4.339 681,212.70053,200.91443,15.640213,25.654037,4.327 681,571.0497,285.75513,30.892578,63.15686,4.326 681,4.413324,174.78517,16.342142,38.084274,4.323 681,316.99594,181.27193,14.512726,30.375107,4.269 681,310.11517,167.91356,12.552124,25.881638,4.257 681,585.2967,-102.493195,76.71661,235.88818,4.255 681,413.64648,200.6097,12.40155,22.739273,4.251 681,548.72424,147.38367,31.291565,61.834503,4.248 681,-37.34757,-126.574066,117.09212,284.78375,4.23 681,559.14435,131.29932,30.24176,62.205154,4.228 681,106.30373,188.90302,32.126236,48.588623,4.207 681,325.42938,199.87894,29.77301,67.817474,4.201 681,194.13855,199.19977,19.304901,28.718124,4.148 681,464.04556,211.28894,12.217804,26.222122,4.12 682,355.55707,204.47589,19.59793,35.71437,18.743 682,449.42694,135.42686,29.458801,90.05673,12.593 682,563.86816,221.51553,15.564819,28.375824,8.34 682,-5.281104,-17.417717,16.83043,41.34476,8.073 682,451.437,197.70667,29.098206,79.859375,7.959 682,7.4401703,216.02965,21.896935,33.0878,6.844 682,-11.07657,-31.098564,29.294613,70.39331,6.487 682,613.4917,453.59583,38.842224,107.48816,6.339 682,549.66595,224.93155,13.3479,32.083344,6.2 682,3.1493378,224.64452,18.065105,31.474777,6.021 682,-6.281256,488.57468,18.782774,43.486786,5.971 682,626.3332,487.50806,21.648926,45.05298,5.961 682,611.36523,-47.588387,40.404663,101.54794,5.777 682,627.22644,-17.525705,17.059937,46.026703,5.709 682,-8.820852,465.20978,37.4696,91.0213,5.704 682,542.4729,224.548,12.767578,30.487915,5.629 682,3.0887103,198.08879,32.451023,52.88643,5.596 682,429.35727,246.03357,28.919983,66.1828,5.57 682,350.11157,202.72403,28.97293,59.825806,5.559 682,73.22165,203.77406,21.417366,30.731873,5.533 682,428.49048,218.48993,15.354797,33.766983,5.518 682,88.12425,203.56711,23.930313,31.735413,5.418 682,1.3436866,205.63463,22.040003,37.665924,5.411 682,418.6545,236.7778,18.875732,35.776,5.4 682,23.353542,210.38364,23.60416,36.42871,5.379 682,410.92773,238.67,19.137756,35.932877,5.269 682,428.03546,207.86848,14.788971,30.780945,5.256 682,510.76392,-31.976528,27.817688,63.71333,5.195 682,-72.73217,265.62247,200.37863,462.04294,5.161 682,-17.15434,-64.91346,55.163536,148.90083,5.104 682,284.2856,190.67857,15.182098,26.967865,5.05 682,3.7305717,-14.877411,15.384464,38.044903,5.047 682,-21.714844,402.1425,79.00647,175.56735,5.035 682,-5.407257,203.52159,19.072483,38.65355,5.016 682,-6.0130596,218.64062,18.141968,35.482224,4.999 682,298.74866,208.7326,17.754303,32.23877,4.964 682,534.6032,223.65619,12.726074,28.550507,4.95 682,-5.5921984,231.99048,16.920353,37.0813,4.918 682,309.91034,169.43216,11.874176,24.221512,4.91 682,536.74146,309.4575,142.9895,342.96317,4.909 682,492.55658,268.04254,15.5460205,38.013702,4.812 682,582.9972,410.62604,71.78644,178.3291,4.751 682,558.1853,224.3838,14.461853,29.720413,4.747 682,569.94165,216.24469,16.374023,25.93811,4.742 682,426.0013,238.41064,18.915802,34.083466,4.717 682,2.9537177,241.94449,19.17411,34.646454,4.671 682,526.40784,218.88702,13.549377,27.115295,4.586 682,2.7727926,205.1913,39.069225,80.41731,4.552 682,284.41284,179.86159,15.01004,27.287674,4.543 682,585.7156,-99.68825,75.73395,229.79337,4.494 682,105.2482,205.53676,22.011261,30.547928,4.494 682,421.69946,219.40912,14.409576,33.96959,4.491 682,490.61444,-178.91301,234.63275,423.04974,4.475 682,65.36572,199.94687,21.404076,32.568924,4.465 682,555.0609,283.78586,31.315552,65.47992,4.459 682,276.49905,200.44322,14.020935,28.25209,4.452 682,30.273987,202.91994,26.514717,38.861526,4.45 682,314.63556,206.90143,19.853943,34.83203,4.44 682,268.51962,191.4604,14.252411,27.434082,4.431 682,517.6766,218.92276,14.170837,27.259003,4.429 682,493.57568,227.69382,237.7052,514.1918,4.423 682,223.11877,207.3422,10.193268,15.831451,4.412 682,186.87599,201.00739,18.058624,25.809952,4.381 682,594.5307,-44.954025,43.16571,97.56192,4.326 682,500.3444,247.26486,16.128998,34.264893,4.322 682,532.1319,251.77026,17.218018,34.749634,4.312 682,206.19057,204.64214,11.727509,16.44252,4.297 682,261.1247,199.71223,13.784119,27.358612,4.276 682,453.90945,240.99664,28.132416,77.76587,4.27 682,17.88356,209.28276,42.54071,70.14827,4.239 682,-5.63379,250.95126,17.304031,36.751953,4.235 682,302.55896,171.05568,12.134918,22.430618,4.234 682,491.51715,246.82343,16.112305,36.155518,4.214 682,338.16418,209.18227,20.201538,39.27948,4.164 682,196.11992,200.5179,15.932526,25.51326,4.15 682,203.87125,206.50926,16.560822,26.3098,4.145 682,74.86437,193.7076,32.792015,45.83139,4.119 682,317.93298,168.32578,11.6944275,25.71788,4.099 682,290.52844,204.66556,17.651764,35.50502,4.072 683,394.26447,212.54788,22.674683,49.847626,73.165 683,390.27527,207.76242,34.684326,73.52365,9.846 683,-5.1261516,-17.19038,16.715252,41.14127,8.007 683,0.28324962,199.00089,23.942104,47.12639,7.973 683,623.41327,-34.92398,26.542114,77.06057,7.231 683,523.93036,217.37756,16.591858,26.141953,7.054 683,626.45654,486.53012,21.230286,45.77292,6.865 683,262.62964,205.1315,12.228821,20.41513,6.547 683,269.25745,205.22665,12.857208,21.920471,6.535 683,-10.990154,-31.363955,28.919891,69.98677,6.487 683,406.53455,211.43521,20.8833,47.25702,6.446 683,-6.1422563,488.5708,18.761854,43.137207,6.374 683,255.67252,207.01633,11.34494,17.569763,6.281 683,329.5886,215.03777,19.650726,34.291824,6.263 683,269.25684,209.82225,16.567932,28.064316,6.18 683,627.0014,-18.407211,18.067017,48.043354,5.991 683,2.0186377,181.80899,20.405003,48.104126,5.943 683,-8.895102,464.8982,37.647644,91.20996,5.854 683,613.50336,452.50677,38.88562,108.71765,5.771 683,530.06433,217.71875,16.86145,25.944153,5.761 683,401.05176,224.40263,20.48233,52.769302,5.725 683,-6.3021064,210.5642,19.062752,44.396576,5.704 683,3.0952823,208.63666,38.6656,92.955536,5.51 683,289.44876,214.39629,20.092743,32.029617,5.385 683,374.90363,216.12518,29.159454,66.39023,5.33 683,-16.877247,-65.13934,54.96112,148.91687,5.222 683,-10.295725,137.98203,29.162748,76.99931,5.183 683,467.3665,250.01588,16.596802,31.599197,5.13 683,-72.95294,265.63245,200.59454,461.7774,5.113 683,-4.0425067,183.14566,18.168192,47.38423,5.094 683,532.24963,226.15791,14.661194,27.287292,5.067 683,536.3032,309.41357,143.719,342.6869,5.015 683,-21.637964,402.62854,79.167496,175.07697,4.99 683,3.8082118,-14.881508,15.418203,37.76329,4.983 683,402.11642,208.89394,16.846619,29.351212,4.931 683,324.55664,210.67627,17.522583,29.937119,4.895 683,450.48346,251.51088,17.8721,31.789139,4.803 683,475.86432,249.83899,14.89093,30.158447,4.798 683,458.8095,251.34087,17.93097,31.590988,4.796 683,19.299213,206.26021,40.14079,72.11308,4.793 683,337.42126,209.1919,20.135681,34.910538,4.784 683,505.3413,296.73425,36.151855,66.916534,4.78 683,486.48578,217.57155,13.990601,26.039429,4.775 683,603.2253,-56.58995,53.362854,132.18121,4.774 683,357.17285,202.26976,29.437317,59.491745,4.774 683,443.59308,251.57896,16.55658,31.501602,4.76 683,2.5080967,241.82904,20.137623,35.177612,4.716 683,292.66318,190.87973,14.475189,24.606567,4.681 683,268.41006,179.0709,15.3958435,30.940369,4.66 683,24.36307,211.50732,21.821196,34.47583,4.626 683,583.0185,410.45892,71.885925,178.31451,4.603 683,261.8821,194.23393,13.808411,24.863068,4.599 683,395.62543,208.26947,16.58197,29.274048,4.596 683,196.34991,201.59647,14.5672,25.813477,4.588 683,316.64612,218.3416,16.51535,28.798615,4.584 683,485.0505,249.35266,13.991821,29.215576,4.575 683,188.52597,201.23212,15.61528,25.625763,4.559 683,-9.980909,184.97903,29.560291,65.89552,4.552 683,284.2907,192.48206,14.162109,24.355621,4.539 683,585.56494,-101.38757,76.28967,233.09647,4.513 683,276.25717,204.50539,13.207123,22.984055,4.509 683,493.74603,227.65192,237.47589,513.2496,4.504 683,493.4688,248.70157,13.487213,30.392395,4.496 683,41.124855,213.4831,21.633,29.886581,4.486 683,211.30614,164.62772,15.417801,32.533005,4.484 683,619.0054,489.03357,20.42395,42.751587,4.475 683,173.87283,181.96779,14.184723,25.060898,4.467 683,404.29004,220.78905,27.345978,68.646255,4.462 683,284.35962,203.69113,13.072296,21.599594,4.455 683,538.8589,216.88023,16.851501,25.8266,4.451 683,517.8371,215.07614,15.187622,26.143692,4.407 683,493.08945,216.84131,13.773407,23.215866,4.323 683,238.17139,209.40108,10.945435,18.838043,4.315 683,409.99402,208.402,16.82257,27.56253,4.313 683,491.08545,-177.7538,233.37305,421.5332,4.295 683,81.6409,198.62286,19.82837,33.565872,4.287 683,386.09756,214.72997,23.8685,56.56517,4.216 683,593.617,-44.752766,45.15631,92.20551,4.144 683,-37.816586,-124.749886,116.83826,283.68777,4.132 683,-15.744281,175.15924,50.10193,122.97156,4.129 683,221.7105,210.80928,13.445114,21.850113,4.127 683,545.6225,311.114,34.98761,63.89502,4.105 683,378.52277,210.611,21.321045,43.223846,4.101 683,206.026,164.81186,14.57106,31.2789,4.085 683,32.620102,212.60022,22.0289,32.110596,4.059 684,528.74396,199.85248,47.830017,129.27997,90.596 684,549.3639,22.280033,28.710144,82.17108,9.768 684,-5.1379395,-16.850752,16.5637,40.770252,8.818 684,42.115112,199.6139,20.971859,33.27968,8.206 684,2.6915307,205.37965,19.098469,33.36696,8.15 684,525.12195,204.81235,34.85388,84.45834,7.693 684,260.21658,199.30789,14.827118,22.565475,7.602 684,609.82654,219.55821,18.392944,35.111053,7.326 684,622.8611,-33.96245,27.311646,74.78571,6.659 684,626.5134,487.7359,21.021362,45.210144,6.546 684,616.5101,215.1764,19.294434,40.73381,6.44 684,-10.98604,-30.966389,28.908699,69.748344,6.2 684,477.22852,244.55527,13.987488,28.293976,6.091 684,-3.8055124,189.65176,16.556152,37.34973,6.089 684,-6.038227,489.07678,18.289314,42.13507,6.081 684,276.86914,194.30951,14.582001,24.035797,6.015 684,567.7111,46.70131,21.891602,60.04654,5.916 684,626.9089,-18.845041,18.357178,47.061016,5.812 684,-9.062983,464.81332,37.794067,92.00986,5.757 684,-17.016422,-66.42312,55.304783,151.3288,5.691 684,604.6638,213.69086,17.278442,29.560822,5.428 684,613.36035,453.07584,38.595886,108.92325,5.38 684,48.22238,193.63496,21.776688,33.416077,5.353 684,4.4276743,191.27925,16.576141,30.231644,5.322 684,2.3106122,205.36694,40.020428,99.95758,5.254 684,122.00964,199.3999,20.082901,27.524368,5.166 684,561.74023,57.984074,22.127075,56.56767,5.16 684,-5.3083043,205.19414,18.082132,39.315277,5.14 684,331.2639,214.00197,17.636536,31.499527,5.124 684,3.834104,-14.461124,15.282421,37.45645,5.123 684,618.39636,-20.230051,19.55841,45.28045,5.044 684,-72.73039,266.3656,200.15292,460.52625,5.025 684,602.607,-53.895084,53.117615,134.2099,5.012 684,34.134407,201.60794,20.108574,31.56923,5.012 684,536.3129,309.6844,143.78906,343.52826,4.926 684,9.897728,212.99245,17.65326,28.155533,4.904 684,-21.649887,402.79654,79.08844,175.16953,4.897 684,-4.451044,158.52354,15.042079,35.593185,4.879 684,284.24805,194.21802,13.9010315,22.931671,4.844 684,204.5533,152.95819,14.170059,28.828568,4.823 684,497.89008,217.62265,42.493896,101.91254,4.817 684,618.94745,489.46252,19.80365,42.50659,4.815 684,18.655441,201.45721,42.103798,75.36127,4.81 684,521.2368,205.69292,25.728455,50.29837,4.741 684,113.90122,198.7789,21.0682,29.610382,4.733 684,-3.3773236,178.39377,14.521748,33.12729,4.732 684,537.2186,284.95422,35.65802,73.63849,4.715 684,583.01447,410.95078,71.64874,177.738,4.704 684,275.47546,206.30005,21.105072,31.943436,4.665 684,553.2163,55.074554,22.994263,61.673584,4.655 684,-16.705774,162.81635,51.158257,119.71033,4.563 684,324.14093,210.12224,16.839478,26.88942,4.561 684,268.03577,193.87027,14.815002,24.114975,4.557 684,554.82367,272.03384,30.856384,73.168,4.547 684,585.6711,-100.79862,75.77985,233.14478,4.544 684,468.28305,243.39635,15.635712,30.418106,4.519 684,395.14285,192.1812,17.746368,32.22374,4.514 684,220.43015,202.17809,14.79921,25.429031,4.489 684,137.79419,199.95366,20.269623,25.417404,4.47 684,297.70615,209.28189,20.286957,31.845749,4.47 684,540.79395,44.12503,31.032776,77.889694,4.465 684,494.568,228.45206,236.23706,514.08936,4.46 684,490.43555,-177.19421,233.83386,419.76553,4.446 684,123.810646,161.75502,15.791557,24.373947,4.445 684,88.62346,196.15913,21.810059,32.18167,4.435 684,523.8016,279.62546,33.690186,74.069305,4.431 684,331.87576,207.50473,14.342651,24.87854,4.428 684,542.25305,211.94215,33.303528,77.07915,4.411 684,227.91502,202.16794,14.672653,24.7016,4.41 684,484.5103,243.79271,13.097839,27.676346,4.409 684,129.55844,200.02611,20.55429,26.244797,4.385 684,236.4193,203.30579,14.338455,22.502121,4.369 684,534.7102,200.88681,24.642517,39.992264,4.357 685,435.84845,203.1308,20.97754,49.87442,37.614 685,8.181267,193.23264,22.241972,43.35318,10.818 685,24.144838,194.38206,23.94975,39.76851,9.569 685,483.21686,200.8963,19.090729,36.732224,7.818 685,-5.484667,-17.487839,17.0429,41.46739,7.579 685,285.93036,197.05687,11.828278,19.396408,7.03 685,574.9053,163.35815,27.926025,68.95763,6.611 685,452.59018,146.66792,18.914886,46.001663,6.475 685,285.4087,186.8887,12.798889,22.451828,6.253 685,621.84393,-33.7481,27.15149,77.673706,6.244 685,301.43344,185.71971,12.333588,22.797562,6.198 685,32.57615,202.10825,22.034447,35.15799,6.191 685,-11.238342,-31.18148,29.261787,69.92736,6.153 685,-5.9228067,488.48398,18.272594,42.95163,6.136 685,270.54907,196.54733,11.766785,19.378311,6.124 685,279.30646,196.30069,11.943024,19.505722,6.036 685,39.979675,195.5453,23.06596,36.852646,6.005 685,12.612868,187.33934,29.815685,52.295456,5.95 685,260.67075,196.63177,12.434082,20.557236,5.942 685,0.49608588,186.41214,25.16143,58.795364,5.877 685,558.5453,164.53058,31.442627,61.73648,5.709 685,626.6155,487.80194,20.80774,46.220886,5.683 685,-9.383876,463.67126,38.03153,93.20288,5.68 685,254.1551,198.0484,12.339249,20.641647,5.658 685,292.68454,186.10559,12.707855,22.357117,5.626 685,374.87582,212.41748,28.63678,60.74768,5.522 685,-5.6860886,197.55235,18.518574,43.522354,5.385 685,285.15326,205.61911,14.372742,26.131653,5.324 685,613.53894,453.28152,38.873535,108.317474,5.248 685,-17.136858,-64.282364,55.361557,148.11533,5.218 685,4.1620398,197.56273,36.73912,92.55571,5.215 685,379.93445,200.8251,18.028229,42.5179,5.207 685,18.92287,198.09789,39.275223,84.32753,5.186 685,602.28644,-56.661922,52.98065,142.87933,5.165 685,306.76077,210.09183,19.47409,32.82994,5.113 685,485.7188,278.74783,33.141174,65.031586,5.022 685,-72.67595,266.45786,200.1999,460.29593,5.002 685,-21.693748,402.5151,79.11911,175.17178,4.991 685,227.61151,201.84384,15.695953,24.73201,4.97 685,627.1325,-20.346512,17.316406,49.95926,4.945 685,466.302,196.46225,19.521301,40.6436,4.933 685,457.89984,153.1587,18.753967,47.829483,4.931 685,317.60806,184.10323,13.504547,25.959702,4.925 685,244.9251,200.94562,16.69191,24.861649,4.904 685,220.16446,201.33456,15.313782,25.466583,4.813 685,309.34247,184.89903,13.032471,24.342682,4.792 685,549.4901,-35.52778,29.42688,76.47633,4.789 685,582.98,411.18265,71.89374,177.20944,4.787 685,536.6791,310.2656,142.95197,342.2216,4.775 685,235.8638,202.58345,15.915894,23.8927,4.697 685,105.49999,197.32637,20.101242,28.668747,4.684 685,458.1773,199.27394,20.302765,40.768845,4.682 685,543.23724,297.48718,37.698547,69.871185,4.637 685,412.0183,202.87946,17.28186,35.799576,4.637 685,618.632,-20.955421,18.623291,48.650234,4.633 685,465.8281,265.2266,32.968964,61.02762,4.613 685,252.08417,201.95697,16.592163,25.049118,4.569 685,163.6367,192.96956,17.930832,26.604385,4.563 685,495.98102,271.22903,35.97284,63.84549,4.541 685,-2.78863,176.48886,13.84255,33.840347,4.481 685,-2.673799,158.73448,14.023411,37.348618,4.465 685,493.76117,227.52869,237.56622,514.67194,4.459 685,585.7533,-104.32718,76.88721,240.70142,4.458 685,3.5720353,-15.493046,15.623133,38.04422,4.446 685,4.8198614,190.70668,17.60334,35.89148,4.432 685,-8.5628395,190.53012,36.945587,89.551544,4.419 685,202.90923,199.69495,17.43457,27.779358,4.405 685,546.0116,181.02563,21.02472,39.20131,4.371 685,292.86493,203.46602,12.605255,20.844437,4.345 685,-17.193481,120.971375,51.98222,140.55392,4.331 685,356.6198,184.67938,14.177856,28.068176,4.331 685,-5.89548,232.75375,17.198555,39.484253,4.294 685,300.1267,169.35466,15.921997,30.6503,4.28 685,48.87449,192.14937,21.241707,35.652847,4.26 685,194.62375,198.94122,18.067429,28.881561,4.247 685,385.90094,198.42844,17.073761,37.217255,4.243 685,412.03357,222.31023,17.351135,36.545944,4.232 685,-37.632206,-125.554565,116.52792,284.98938,4.172 685,154.51836,200.05489,18.792038,26.542114,4.166 685,585.0663,152.5073,19.882019,36.546936,4.157 685,2.723478,212.8976,17.773739,35.185028,4.133 686,535.2739,208.81395,34.22754,72.46855,97.018 686,566.4896,203.84433,26.921875,60.505188,92.736 686,498.76163,210.10242,20.025726,43.54837,22.166 686,546.28186,205.76445,38.041504,72.56215,10.42 686,-5.318773,-17.302965,16.897629,41.525066,7.998 686,622.5153,-33.87165,27.096985,75.93357,6.51 686,302.2017,187.75217,11.423553,22.186813,6.392 686,286.88593,203.39601,10.831024,20.041595,6.343 686,550.4656,-33.848263,27.90271,64.429214,6.222 686,-11.005154,-31.140041,29.328022,70.401794,6.134 686,504.60938,205.27246,19.72705,31.495422,6.026 686,-5.934926,489.9354,18.081734,41.065094,6.006 686,285.59247,186.35986,12.34787,23.262451,5.913 686,626.79407,-19.680971,18.326843,48.56019,5.845 686,270.83072,197.03712,12.063446,19.311234,5.62 686,-8.911249,465.0814,37.68271,92.175385,5.606 686,626.9087,488.11658,20.563782,45.36029,5.55 686,528.4081,202.5305,29.009338,63.22731,5.478 686,589.46063,191.18817,28.437744,55.41092,5.475 686,613.3861,452.76617,39.27777,108.864685,5.429 686,310.16794,187.5268,11.52121,22.552307,5.313 686,536.01636,307.72113,144.8186,343.23615,5.3 686,552.267,203.51228,22.749023,53.48912,5.27 686,261.36722,196.97426,12.920746,21.175903,5.178 686,-16.862606,-62.97826,55.198765,145.23334,5.148 686,278.26102,185.93709,12.916595,24.06305,5.147 686,294.17715,204.29195,11.0000305,20.59526,5.09 686,318.1068,187.30896,11.425476,21.485153,5.078 686,-21.593967,403.0076,78.98449,174.9736,5.062 686,-72.5072,266.47552,199.9372,460.4666,5.043 686,252.09613,151.12144,15.584473,25.531387,5.037 686,293.38202,186.86177,11.97702,23.34874,5.035 686,492.0251,215.1423,19.072266,44.34201,5.027 686,602.27905,-56.166756,53.520203,136.32417,5.025 686,270.28305,186.25473,13.195068,24.36966,4.983 686,545.86865,199.09404,19.183777,32.80403,4.974 686,582.7165,411.6493,72.04242,176.47485,4.918 686,582.1565,208.15215,23.125366,47.15956,4.918 686,279.834,201.13214,10.332275,20.191345,4.9 686,480.7649,208.5051,50.08014,96.28174,4.9 686,3.673793,-14.86158,15.572038,38.018326,4.848 686,500.14096,213.74182,38.212982,73.85126,4.812 686,494.48218,230.55234,237.30688,512.3883,4.8 686,244.95752,201.5516,16.077332,24.297333,4.775 686,565.1691,-34.63279,29.872925,68.27362,4.769 686,252.28702,201.90843,13.541931,22.446442,4.715 686,618.49274,-21.119234,19.4021,47.501144,4.676 686,606.6301,-34.224503,28.319519,72.85088,4.621 686,482.99463,212.26628,18.955109,42.34482,4.565 686,576.47925,198.65982,18.962769,34.63942,4.551 686,563.65283,200.91759,20.784058,46.778656,4.512 686,490.79694,-179.21457,232.86871,419.7894,4.455 686,461.19064,206.44644,16.38919,33.401993,4.452 686,82.516495,202.25209,19.428207,25.853317,4.432 686,90.13667,203.61916,18.39441,25.250305,4.428 686,569.39655,187.21014,31.860107,61.94957,4.349 686,450.64542,221.45692,42.66284,73.92894,4.347 686,49.249462,201.87708,20.8391,29.523636,4.33 686,154.2393,194.46774,19.257538,32.509277,4.328 686,-37.654682,-127.25666,117.451904,287.5533,4.304 686,2.7872043,222.64627,17.563978,31.099243,4.277 687,515.0574,234.17789,19.843811,37.19873,10.64 687,-0.050383806,223.8971,22.982822,41.159515,8.839 687,552.8803,235.74432,23.36139,39.997528,8.66 687,-5.2163563,-16.890324,16.7516,40.637806,8.468 687,566.82996,224.3551,25.303833,38.32022,7.998 687,271.58563,206.67236,10.025391,17.066025,7.689 687,622.0715,-33.861603,27.38684,74.91705,7.012 687,264.0875,206.55986,10.434021,16.886856,6.848 687,-5.6112204,488.23694,17.979603,43.337708,6.762 687,278.96094,208.13107,10.075043,17.348785,6.456 687,-11.082275,-31.071003,29.252356,70.15926,6.385 687,255.01189,206.73096,11.035751,17.065094,6.318 687,270.3499,198.9634,11.193329,19.280304,6.318 687,121.967255,196.72177,19.63675,37.100906,6.161 687,573.5359,169.27612,28.42566,60.478455,6.004 687,585.15375,177.69711,19.879211,41.70262,5.941 687,287.27274,208.35179,9.848267,17.525238,5.763 687,139.42491,197.43939,18.918152,35.161392,5.551 687,-11.513349,475.64792,29.486858,64.56406,5.445 687,626.9948,488.57553,20.39685,45.133026,5.418 687,255.05908,198.24413,11.661743,20.325012,5.363 687,627.2423,-20.14815,17.55957,48.180023,5.297 687,-16.581043,-63.62943,54.90476,147.0129,5.203 687,583.4765,412.19617,71.32202,176.03821,5.199 687,613.0732,456.36224,39.08008,105.24469,5.196 687,277.64575,213.64253,13.159454,27.01326,5.179 687,130.94653,196.7222,20.07869,37.55052,5.159 687,114.25529,195.94159,19.885826,36.862686,5.132 687,-4.9785533,219.4122,19.662415,39.70404,5.13 687,245.46417,206.65204,12.378632,18.78717,5.121 687,618.80585,-20.724426,18.257812,45.91533,5.115 687,286.65546,199.34285,10.646851,19.029419,5.104 687,603.0225,-55.72926,53.297607,131.89319,5.028 687,-72.88466,265.7246,200.3811,461.021,4.972 687,301.74036,184.04842,12.834564,25.253036,4.962 687,-4.1359053,206.1832,17.099567,36.108795,4.95 687,-21.987743,401.64783,79.06004,175.78455,4.936 687,3.7174277,-14.439863,15.40313,37.32345,4.927 687,567.3149,209.33731,22.822998,33.521088,4.926 687,536.0034,310.77176,144.3399,340.97397,4.703 687,570.58026,188.62976,20.95697,37.791077,4.674 687,35.835976,207.4243,18.396034,28.672806,4.659 687,312.55145,219.93106,22.449799,37.89569,4.646 687,586.25934,196.8097,19.442444,35.87024,4.607 687,522.1365,241.16646,17.39618,32.49315,4.607 687,593.9966,-44.641045,45.70215,91.306625,4.604 687,493.57224,227.48663,237.53128,515.2113,4.557 687,105.81099,198.1387,20.20346,34.829712,4.475 687,585.5677,-99.17711,76.2771,231.9751,4.464 687,441.86417,227.45596,20.572388,35.89084,4.428 687,2.2019136,219.20686,39.264847,99.78221,4.411 687,28.369492,210.7375,17.590767,27.132477,4.396 687,278.1647,199.33217,10.815765,18.86325,4.392 687,285.62354,183.77191,12.468597,26.57843,4.389 687,490.37,-179.31601,233.8706,421.454,4.372 687,456.5979,223.55743,21.507599,38.144012,4.334 687,233.45201,149.99852,21.055649,34.325775,4.303 687,-3.6281111,189.20947,15.667244,36.630524,4.289 687,294.77777,198.74403,10.72879,19.649292,4.284 687,363.4805,207.83598,17.430145,29.066605,4.28 687,-37.605637,-126.914955,117.624016,285.92456,4.256 687,317.84387,183.84401,12.290894,24.77246,4.239 687,269.98233,182.44547,13.069641,27.26448,4.235 687,98.31519,204.44266,19.461845,32.92778,4.227 687,589.5022,-33.967648,27.98645,69.10724,4.208 687,238.80002,206.86304,12.4077,19.217316,4.141 687,-18.080883,156.91371,53.267887,131.83641,4.122 687,275.43268,115.77261,14.994446,34.917725,4.111 687,618.98267,490.798,19.619202,41.64438,4.105 687,304.0518,224.37114,22.033142,38.525986,4.098 687,293.18176,183.82918,12.957581,26.100937,4.065 687,269.3726,115.12276,14.973389,34.643173,4.061 687,2.823722,210.69072,18.598648,31.741241,4.043 687,271.0631,211.85701,12.232056,23.42659,3.987 687,577.27856,198.48561,20.31842,35.789032,3.983 687,154.02272,204.23897,18.578217,29.057312,3.938 687,273.47272,220.5468,21.233582,34.58098,3.895 687,578.3626,165.70697,20.567322,41.596756,3.859 687,100.60463,185.78117,15.232346,26.930405,3.849 687,302.66058,197.17328,11.308319,20.364182,3.837 687,505.95288,211.01294,24.993103,60.486084,3.822 687,559.5912,228.61313,25.046753,43.26651,3.818 687,74.375694,204.98398,19.44027,32.13675,3.806 687,-69.29169,-188.05186,210.34662,451.54065,3.767 687,449.33636,222.59041,20.65741,37.887955,3.75 687,322.58072,226.88719,19.167297,33.355637,3.749 687,577.8453,-21.896687,20.162659,46.794407,3.748 687,-10.571937,219.67903,29.188152,59.47136,3.742 687,425.5479,226.50143,21.89325,38.981476,3.735 687,326.84952,195.32697,10.118927,20.576355,3.729 687,564.69946,186.59195,30.206543,59.39102,3.725 687,294.7391,208.17538,10.186523,18.648773,3.714 688,485.2923,207.9422,29.910706,69.945496,9.033 688,-5.140145,-17.218742,16.658785,41.57205,8.407 688,270.79044,200.0548,10.141357,19.06343,8.024 688,-6.0234747,489.5918,18.292877,41.438416,6.96 688,626.9875,-19.055962,17.908203,48.39832,6.882 688,622.9049,-33.150604,26.899475,76.18965,6.622 688,482.47833,207.42065,23.220276,49.51178,6.564 688,-10.948272,-30.924046,29.081524,70.863914,6.517 688,540.92645,206.55907,14.389221,24.697601,6.494 688,278.9516,206.84155,9.493683,18.578812,6.296 688,-3.8832536,205.27956,17.300264,38.282104,6.165 688,254.95667,197.51978,12.001282,20.149063,6.123 688,263.13962,198.64333,10.99411,19.519135,5.928 688,-11.730911,477.53152,29.908615,62.74649,5.863 688,105.01834,194.92036,21.70475,38.360428,5.722 688,613.04865,455.49078,39.751404,106.60968,5.535 688,287.47128,201.67694,9.156616,17.830154,5.52 688,244.52576,201.58942,13.464386,22.490036,5.328 688,626.6095,488.8537,21.132141,44.296997,5.239 688,533.2484,205.88585,15.113525,26.303864,5.217 688,-72.86561,265.57162,200.79941,461.89163,5.182 688,2.1484888,227.62883,20.085897,32.62477,5.157 688,-11.419578,213.12671,28.49923,56.776337,5.135 688,583.35364,411.5896,71.58081,176.68579,5.117 688,-4.493286,157.68173,16.014301,38.95163,5.097 688,-16.934805,-63.784813,55.158203,147.5711,5.064 688,-21.550522,403.0377,78.94803,174.8663,4.996 688,237.09625,202.16406,14.692902,23.342285,4.981 688,489.84778,203.67726,18.97583,32.34944,4.958 688,603.3079,-55.450512,52.86725,133.1021,4.955 688,547.4557,204.57613,14.761353,26.853043,4.936 688,521.42566,222.44884,24.24585,45.15657,4.884 688,3.754869,-14.246286,15.354174,37.652214,4.875 688,536.0182,311.0827,144.39777,341.2802,4.842 688,494.45587,206.85231,23.30896,49.302475,4.801 688,287.02902,208.00366,9.1311035,17.726807,4.763 688,122.28919,194.84297,19.68058,36.47139,4.687 688,26.549328,230.73816,18.842854,26.25766,4.672 688,34.7594,229.90067,19.048489,25.877533,4.621 688,587.3545,259.58752,17.819214,28.793945,4.588 688,269.93228,190.35832,11.113678,22.40065,4.579 688,524.87115,203.50368,15.49707,28.818604,4.557 688,493.37848,227.11267,237.87671,515.1349,4.54 688,235.65337,207.92067,17.763367,27.798447,4.537 688,43.249382,230.55334,18.688332,26.106812,4.527 688,564.37823,194.95287,14.853882,29.111008,4.506 688,619.1883,-18.790682,18.149597,46.199738,4.443 688,286.816,189.77531,10.305695,21.042007,4.359 688,82.198364,200.64381,19.640404,35.200165,4.349 688,113.13323,193.6162,21.552132,39.04065,4.345 688,585.5242,-99.923256,76.47705,231.31729,4.307 688,317.5016,162.05551,13.793335,30.717575,4.292 688,521.0061,210.01105,21.621521,40.67694,4.275 688,49.780106,217.37846,22.2715,35.74254,4.241 688,594.4968,-45.51159,44.586914,93.92131,4.237 688,2.7394032,161.0816,17.278503,37.215576,4.237 688,-16.700773,193.26523,51.464966,119.14337,4.174 688,490.36557,-178.079,234.59262,420.8001,4.153 688,-6.057024,229.4751,18.53232,38.362427,4.132 688,2.511623,224.30276,40.375607,97.34567,4.111 688,300.22894,215.15099,28.584656,50.5941,4.106 688,2.4309587,209.06915,19.537281,35.854904,4.099 688,-3.9428067,191.25456,16.405447,37.061035,4.098 688,502.7017,212.80913,24.32547,48.562637,4.093 688,-4.3682947,2.519987,15.453092,39.197777,4.077 688,318.93192,187.07104,10.038116,22.32866,4.076 688,271.2207,206.25316,11.575439,24.005127,4.07 688,278.4414,189.81659,10.605652,22.424454,4.059 688,218.80057,206.03792,18.775253,28.373901,4.042 688,-37.89452,-127.90546,117.504486,288.97775,4.034 688,246.30115,186.28871,12.745087,25.287857,4.026 688,90.132385,199.13101,19.763123,35.77098,4.022 688,552.1189,133.73915,21.398254,38.601562,4.022 688,562.3682,134.14577,19.122742,35.036896,4.012 688,-4.2255745,172.34708,16.098246,39.56038,3.999 688,309.54443,173.14748,12.667633,28.51799,3.982 688,251.94612,220.43088,18.256424,26.883133,3.982 688,94.949196,188.52013,27.576042,49.347,3.976 688,617.9308,262.34576,21.188171,43.23291,3.972 688,379.01434,196.39838,17.559692,35.08786,3.929 688,262.26907,189.4502,11.914856,22.874435,3.899 688,325.74854,161.55608,13.744263,31.93251,3.886 688,3.1868017,174.01418,17.466427,39.63443,3.877 688,194.95105,207.23184,18.61522,29.112244,3.834 688,227.51189,206.93906,18.81961,28.699173,3.815 688,237.03178,183.13025,13.692886,26.90738,3.809 688,586.608,190.20868,30.497864,58.708786,3.804 688,138.57011,198.9022,20.003052,31.198761,3.8 688,58.142387,229.03809,18.94188,28.437927,3.798 688,295.80203,201.97496,9.3377075,17.53894,3.778 688,186.54523,206.01057,19.027771,29.789001,3.778 688,548.9263,195.4132,12.856445,23.827576,3.75 688,2.2452617,491.04587,19.352383,39.7648,3.718 688,556.9862,199.57541,13.76001,25.283295,3.697 689,598.52625,209.7912,22.735596,42.444183,20.645 689,455.13788,215.64278,23.340088,44.56096,19.358 689,587.11005,214.98541,20.64801,38.85652,15.497 689,296.71405,220.81972,23.135529,45.435684,9.303 689,509.22885,204.65657,28.869781,60.967575,9.19 689,590.5422,209.2038,27.907593,64.61377,8.437 689,-5.181184,-17.38157,16.844036,41.586758,8.295 689,578.03845,213.96143,21.604553,45.983704,7.798 689,543.18274,239.50725,24.898254,45.049118,7.58 689,548.8064,228.2385,31.310059,60.7294,7.473 689,463.3664,208.57486,22.53894,44.87712,6.865 689,451.34607,225.4443,29.13678,59.300385,6.801 689,615.86676,211.13516,23.715515,60.24002,6.707 689,520.72437,205.35254,22.306335,47.442413,6.611 689,270.7116,198.60939,10.706818,18.657532,6.49 689,526.729,209.84425,28.31543,65.255844,6.4 689,557.0479,212.31653,29.099548,61.98654,6.382 689,-11.029978,-30.947432,29.294443,70.33504,6.339 689,373.18597,208.82222,29.465515,60.899918,6.282 689,302.6366,229.62735,24.347168,44.48404,5.978 689,254.78987,197.48071,11.667404,19.254456,5.971 689,278.829,204.0393,10.8280945,19.754837,5.963 689,-8.503428,464.591,37.439037,92.53131,5.906 689,262.85632,197.68045,10.995209,19.192795,5.878 689,517.66705,200.77507,12.833496,23.109482,5.831 689,-5.512005,490.1483,17.407047,41.275726,5.791 689,536.17505,234.5721,24.08429,42.171158,5.673 689,627.0295,-18.699726,17.665833,47.633503,5.638 689,626.45123,488.12567,21.062866,45.27466,5.571 689,437.14694,217.3143,29.615173,63.978516,5.389 689,622.79047,-33.529747,26.450562,75.78761,5.37 689,245.4291,197.55898,13.080826,20.710693,5.363 689,234.81827,201.3402,17.756119,26.958878,5.361 689,384.32257,212.51015,24.092163,50.323563,5.36 689,617.7833,196.6791,18.80426,37.27487,5.317 689,613.1273,455.289,39.426758,106.58209,5.289 689,-72.6056,265.65143,200.3109,461.96033,5.179 689,73.806656,221.48247,20.443054,27.994537,5.118 689,604.5363,206.77548,27.410645,58.10669,5.117 689,583.04175,412.7204,71.818726,175.66052,5.095 689,485.28613,208.34763,30.192932,60.4028,5.063 689,603.5705,-55.510086,52.637268,128.46356,4.968 689,-16.855824,-64.06477,55.13226,147.70638,4.96 689,286.34012,197.74022,11.323853,20.240875,4.953 689,-21.67715,402.83853,78.92146,175.10764,4.947 689,324.61288,152.41772,15.851959,33.57704,4.946 689,535.74945,310.515,144.55548,341.8263,4.941 689,43.269394,213.35541,21.108864,32.77266,4.833 689,471.79013,221.85335,22.2294,40.68312,4.78 689,569.1674,211.81802,20.48346,40.71724,4.775 689,66.09227,220.93416,20.454376,28.884247,4.73 689,3.706137,-14.858465,15.517511,38.190002,4.718 689,332.87018,152.55101,14.891785,33.536194,4.706 689,571.0738,217.91434,31.36261,72.883026,4.684 689,341.06326,151.76337,14.788452,34.48474,4.674 689,493.7223,226.91003,237.69604,515.254,4.644 689,593.2461,-46.123196,45.74652,91.00439,4.62 689,510.03082,203.85876,14.390015,28.752823,4.619 689,81.83923,220.93245,20.549393,29.459091,4.596 690,437.0663,217.28462,29.683228,86.621506,22.626 690,564.86597,228.20044,32.886536,73.292114,13.605 690,32.182346,202.88266,23.638557,44.930756,8.727 690,0.23712158,214.95976,21.825571,45.865738,8.587 690,-5.192206,-17.08416,16.823265,41.94586,8.429 690,20.10889,191.25592,31.905384,57.688644,7.919 690,477.70703,216.14058,32.864594,78.949814,7.717 690,458.7042,214.08951,32.61148,77.05377,7.653 690,66.20049,202.20029,19.381248,38.58426,7.148 690,537.9785,220.05238,34.414,67.3604,6.928 690,-10.592747,217.3399,28.494781,65.288605,6.651 690,585.368,199.92424,20.153748,34.00772,6.647 690,3.127135,198.07677,28.834902,65.00304,6.646 690,-4.5269914,208.21066,18.241169,45.823532,6.557 690,-5.8624706,489.0677,17.957932,41.408813,6.454 690,270.53687,198.52095,10.389282,18.003738,6.363 690,16.975006,206.2936,22.481358,41.574387,6.321 690,-10.91997,-31.374008,29.085157,71.64675,6.298 690,422.71957,222.08698,28.64795,65.06317,6.264 690,618.43524,203.93439,22.162598,64.7254,6.059 690,-9.041494,465.51575,37.80078,91.13464,5.979 690,72.16458,209.2152,21.644005,35.961426,5.782 690,581.41016,202.9585,36.5813,100.00537,5.67 690,480.78723,192.26003,32.230347,72.645615,5.635 690,-17.035767,-66.1734,55.05804,150.8671,5.611 690,298.1444,99.333244,19.309265,31.41349,5.319 690,499.82892,208.42316,33.064636,70.7807,5.304 690,561.1697,197.49266,46.61609,119.41005,5.291 690,613.22705,455.21915,39.25879,106.77377,5.289 690,-72.949234,265.51172,200.86435,462.40118,5.253 690,364.26163,104.28869,13.747162,26.614662,5.223 690,610.11694,-45.878998,41.79535,97.03626,5.218 690,46.318073,193.55476,29.338276,55.00023,5.189 690,626.87036,488.21396,20.528076,45.395416,5.173 690,2.7518039,188.9752,18.527946,40.629517,5.078 690,-3.3533847,187.61948,17.394049,41.6761,5.066 690,440.5515,215.10982,22.324615,53.196854,5.047 690,550.5409,206.3426,38.406006,91.248184,5.009 690,581.0896,197.25056,27.199219,59.465836,4.974 690,3.668961,-14.298986,15.501171,38.311928,4.964 690,54.780457,199.5095,30.754044,57.108047,4.961 690,-21.482973,403.17346,78.864746,174.6405,4.946 690,546.44714,239.46272,44.175964,94.52028,4.888 690,536.1474,310.3919,144.1029,342.18976,4.867 690,262.56155,198.1248,11.911255,19.174591,4.866 690,583.0335,411.79166,71.7749,177.16159,4.865 690,572.00305,207.4155,30.004639,70.31961,4.808 690,493.6888,226.69144,24.870453,60.447815,4.773 690,601.3207,198.57643,34.769104,108.52229,4.765 690,451.0122,222.73245,31.3573,86.66211,4.756 690,622.12085,211.58221,25.440125,77.88641,4.748 690,282.1964,94.46269,18.90448,35.166916,4.694 690,254.20969,198.39517,12.789703,19.511429,4.694 690,-3.7869349,152.94507,17.49215,45.262726,4.678 690,468.1329,199.55438,34.218506,72.52106,4.672 690,0.44545174,152.82303,26.50672,72.50113,4.653 690,61.843914,197.79724,18.037716,35.913696,4.624 690,74.399864,85.889145,20.610802,39.994934,4.58 691,505.37753,210.91156,22.21347,52.562256,13.087 691,566.49713,208.07098,28.496521,66.56641,9.129 691,-5.4162874,-17.333103,17.004868,41.32467,7.904 691,419.22794,211.66933,30.511139,58.11299,7.753 691,513.97375,205.12103,18.19873,43.91867,7.362 691,416.78918,210.63374,22.623535,39.810272,7.192 691,-6.1453295,489.66873,18.441471,41.739716,7.035 691,-11.893921,478.69904,29.912722,62.963623,6.766 691,536.7179,204.19217,20.463318,44.58542,6.619 691,-12.613918,-41.41255,41.043266,103.84106,6.522 691,475.88803,222.68274,30.5878,65.367676,6.434 691,626.866,-18.801935,17.872864,47.45302,6.056 691,278.62024,198.26701,11.192413,19.993118,5.988 691,286.19055,204.45049,10.954193,20.483185,5.658 691,623.11395,-32.90437,26.67096,74.21259,5.63 691,580.4292,197.05916,28.645447,70.91502,5.587 691,4.0843225,51.10737,28.98763,72.965744,5.573 691,492.81744,54.97804,28.174866,73.89256,5.571 691,261.00095,198.97711,14.186737,23.470474,5.57 691,431.9665,217.01991,22.631042,41.701675,5.506 691,491.7635,215.08191,31.346008,70.85791,5.392 691,550.9867,205.60292,29.083313,67.134995,5.296 691,552.6946,204.61592,21.126343,36.78424,5.254 691,543.8384,207.39444,22.393677,40.85634,5.193 691,576.4735,200.4367,20.843811,50.430725,5.183 691,613.24493,455.39703,39.538574,106.52893,5.136 691,583.01624,413.35034,71.822266,174.98682,5.126 691,-72.91194,265.85373,200.6203,462.24466,5.099 691,25.999283,57.324028,21.0383,44.665573,5.051 691,-21.573284,403.0665,79.01086,175.09622,5.024 691,602.63837,-55.37902,52.95703,133.44115,5.015 691,419.29224,-15.289895,16.394104,37.36582,5.004 691,328.17657,76.27935,21.446686,34.191154,4.968 691,535.78094,310.5893,144.25702,342.68958,4.884 691,270.61325,196.5167,12.306854,20.612854,4.825 691,516.69727,201.87411,15.057617,28.359756,4.81 691,548.07947,186.14355,29.73529,58.563644,4.668 691,427.27295,-15.155207,16.479858,37.027554,4.659 691,294.10342,204.74126,11.006256,22.273422,4.572 691,435.63904,-14.502396,16.62976,36.38771,4.566 691,20.034857,192.85672,29.56706,51.254837,4.563 691,626.4201,487.7248,21.177673,46.171326,4.542 691,3.5319848,-14.912644,15.79991,37.689842,4.53 691,17.447811,54.704575,21.23006,50.269104,4.521 691,493.69434,227.6156,237.33118,513.7968,4.519 691,515.08014,201.13954,29.65802,66.46202,4.511 691,-8.852503,48.60792,28.6199,74.111145,4.483 691,270.47995,54.576477,26.51471,60.000046,4.441 691,337.0277,75.3927,22.11737,36.188667,4.421 691,-3.9510462,169.68825,16.96481,45.598953,4.415 691,613.86646,-19.899426,28.126709,68.48723,4.392 691,478.25748,217.82509,23.746582,42.743484,4.379 691,532.4667,197.03375,16.768188,33.519043,4.363 691,460.22736,-12.780827,15.054565,35.861095,4.343 691,478.44543,55.778816,27.774384,66.88745,4.336 691,570.6417,199.78981,19.161194,38.404083,4.286 691,76.88277,185.43953,27.127968,52.763947,4.285 691,132.54567,202.0387,30.384659,50.682007,4.275 691,88.60425,195.03639,22.802994,39.102646,4.243 691,586.1399,-100.535995,75.39917,232.68234,4.241 691,598.53253,188.64381,35.30591,100.96529,4.235 691,411.4417,-15.3657055,16.48639,37.854744,4.225 691,407.72998,211.56628,28.807556,56.186676,4.201 691,316.5945,60.707855,28.117584,54.241257,4.2 691,581.87195,212.02289,37.487976,91.45477,4.15 691,313.2961,68.45534,21.162445,38.351112,4.147 692,616.06964,203.30046,22.992188,52.510895,15.658 692,-5.629685,-15.893199,17.712109,42.40406,8.965 692,529.73096,217.33925,29.880676,59.161728,8.357 692,570.28735,228.93433,21.025269,50.25183,7.783 692,512.8803,216.93399,19.076538,40.912567,7.241 692,286.28662,205.16537,10.457611,20.389114,6.859 692,557.45935,211.55515,13.934326,30.088074,6.776 692,621.9674,-32.377632,27.341064,78.40355,6.59 692,600.53314,207.77237,25.824524,69.10776,6.427 692,582.1488,210.95724,12.397949,31.509537,6.425 692,-6.1256227,489.7336,18.354822,41.666656,6.339 692,279.26666,201.42758,11.115173,21.955475,6.295 692,-10.935324,-31.740318,29.945274,75.37411,6.285 692,460.4744,210.44354,15.623352,34.567535,6.279 692,-12.029478,477.80728,29.948006,62.647797,6.138 692,603.0504,-56.12241,52.714966,140.99162,6.045 692,547.28973,213.32622,18.564758,37.037476,5.93 692,521.60333,218.19481,20.872375,41.41252,5.851 692,574.61096,214.25494,12.535706,27.777374,5.811 692,507.12308,209.05652,18.18045,40.931458,5.793 692,-17.01464,-63.429375,55.593357,146.72404,5.661 692,3.0538452,-13.196871,16.78513,39.80874,5.659 692,371.5724,210.33717,16.034363,29.707687,5.556 692,-3.4079208,164.17575,16.038185,43.582672,5.504 692,293.97473,206.91109,10.591187,20.31659,5.502 692,613.25305,454.44415,39.423706,107.743835,5.454 692,538.1864,212.42667,19.380188,38.355988,5.399 692,554.19073,218.2002,18.7052,38.442413,5.347 692,276.1835,-9.051058,14.393402,34.488873,5.288 692,590.93866,214.6186,25.900696,65.05119,5.259 692,626.5397,487.95358,20.946411,45.53531,5.187 692,-73.09946,265.8213,200.74011,462.1563,5.127 692,563.3948,219.3562,18.539124,39.039246,5.093 692,583.163,412.52,71.67212,175.88602,5.081 692,532.11053,209.42755,16.423157,31.119095,5.073 692,-21.775879,402.88422,79.04345,175.16132,5.061 692,283.5125,-9.385126,14.159607,34.08489,4.985 692,420.70044,228.27585,30.164673,55.11493,4.973 692,535.83105,310.92444,144.40582,341.54187,4.807 692,458.5277,217.67587,19.965912,43.047882,4.752 692,67.75824,182.4651,15.6729965,34.711,4.738 692,581.97205,219.38435,25.76709,64.938614,4.525 692,443.10516,218.80692,29.808655,59.07495,4.516 692,493.79105,227.44073,237.2933,513.6447,4.482 692,91.75515,183.90596,15.928505,31.201889,4.477 692,74.82858,203.05946,18.922852,34.557297,4.463 692,499.2107,223.33853,19.966614,37.818024,4.437 692,614.53577,38.989536,24.410767,94.22293,4.437 692,565.1828,213.27122,13.233704,28.035965,4.414 692,66.71396,201.25601,19.072601,36.87111,4.382 692,515.47797,205.7567,16.769287,36.697388,4.368 692,559.6708,-129.50949,115.76837,277.04135,4.313 692,477.38306,125.801865,27.33133,101.37239,4.305 692,403.63513,212.22505,15.55658,29.355484,4.238 692,269.5185,5.902829,15.070068,30.926933,4.227 692,269.13715,-9.578633,14.12262,35.568336,4.203 692,276.5193,5.3970547,15.279297,30.213373,4.199 692,573.1696,232.3305,28.521423,63.881653,4.168 692,517.37225,220.38976,31.43689,63.649796,4.16 692,509.83356,196.34296,25.632385,55.309555,4.156 692,451.90668,215.5721,17.802551,37.397186,4.154 692,-5.3682685,1.8264027,18.30603,43.64553,4.135 692,618.25037,244.58055,20.207825,49.08821,4.1 692,270.87643,195.50014,12.387543,22.616776,4.095 692,81.92456,202.75858,19.444466,33.286423,4.066 692,621.3167,201.99005,25.480835,71.24408,4.054 692,121.53386,210.99428,20.353745,30.728271,4.054 692,146.63446,214.12515,18.775208,26.563538,4.053 692,129.51338,211.74666,19.993225,28.872604,4.053 692,364.89322,210.46529,16.286896,30.00026,4.052 692,82.52284,213.57144,41.61931,78.647125,4.046 692,114.93242,213.6665,40.811996,79.15735,4.031 692,292.5271,213.8034,14.635773,28.725174,4.03 692,412.71313,213.46097,14.730591,27.510208,4.028 692,-16.52717,189.45323,51.07599,125.502365,4.012 692,10.205121,-13.839657,17.223686,38.824917,3.993 692,-37.311596,-125.52963,117.7442,281.73508,3.991 692,99.152985,214.35172,41.06186,79.37213,3.988 693,519.11633,217.13028,21.389526,52.945435,15.38 693,570.98254,219.04099,18.989258,48.203552,13.42 693,513.45685,226.80194,22.331726,55.4386,11.094 693,602.11816,222.32324,20.726746,51.700043,9.264 693,-10.866962,-32.66951,29.62044,72.90127,8.99 693,621.794,-33.98562,28.429932,77.1018,8.94 693,283.79364,218.00673,16.94403,35.19168,8.921 693,587.0826,219.32906,18.249817,46.67711,8.261 693,604.0644,216.79419,15.054443,34.54413,8.116 693,-6.095973,-18.448336,18.888498,46.173164,7.936 693,578.15576,223.25667,18.84137,48.816025,7.72 693,263.17267,202.49258,11.3532715,20.512024,7.596 693,516.44446,209.47202,18.351135,46.716095,7.425 693,0.06700635,200.80807,26.469143,61.25708,7.332 693,596.8518,219.25331,18.760254,45.69786,7.032 693,43.36992,212.6471,33.78839,66.37439,6.986 693,438.38965,222.31189,27.902222,49.612152,6.932 693,527.4567,220.75224,21.24823,46.66371,6.924 693,228.52109,-35.51779,31.298187,69.24453,6.883 693,450.7347,220.6156,18.43872,38.07422,6.838 693,269.90213,204.58832,10.48941,18.935715,6.724 693,457.55048,216.48091,19.172974,41.38521,6.671 693,600.46295,216.11113,32.042664,91.587875,6.599 693,212.48901,-32.75105,30.452087,69.788765,6.441 693,520.3939,197.45346,19.371582,46.32425,6.4 693,379.42865,216.50891,16.27295,26.748932,6.228 693,-17.341576,-62.74436,56.197327,144.21106,6.127 693,596.76215,214.1688,15.140015,31.57405,6.104 693,603.1499,-55.286102,52.50879,136.36472,6.094 693,589.391,228.61835,29.380188,64.21344,6.08 693,23.736565,214.75166,24.445,50.207535,5.978 693,-5.9790277,489.40424,18.35647,42.26483,5.91 693,-8.705669,465.38416,37.399254,91.35181,5.866 693,372.14755,215.67299,16.9935,28.206985,5.807 693,18.918173,211.51114,38.967415,84.49173,5.76 693,549.022,217.6929,29.765808,64.72067,5.74 693,345.4352,-14.990295,19.233826,36.513035,5.725 693,563.2573,224.33795,20.478088,47.412445,5.662 693,244.24757,-33.30529,31.646408,68.22578,5.634 693,610.3668,214.86963,16.924194,35.93271,5.595 693,619.4721,253.8361,20.029419,53.295853,5.58 693,626.58923,488.1444,20.812439,45.33905,5.52 693,278.87485,206.62871,10.688019,19.98381,5.393 693,464.84888,212.85306,21.05481,46.716736,5.347 693,513.00507,187.85316,20.307983,47.87175,5.341 693,217.22734,-9.651166,22.076477,40.230495,5.32 693,388.0682,223.14072,16.674805,27.864655,5.308 693,-73.02916,263.18964,201.51527,465.534,5.278 693,1.9826162,-17.975822,19.05624,46.24738,5.276 693,536.3627,219.65096,21.383545,42.06816,5.266 693,613.2303,454.95905,38.9834,106.98767,5.197 693,5.3850675,208.89359,36.41345,94.382324,5.182 693,3.1151843,198.74156,16.98885,40.93892,5.167 693,626.925,258.99045,18.374084,49.404938,5.165 693,582.6572,412.8984,71.954834,174.87631,5.14 693,-3.3417835,173.00894,16.172142,42.644638,5.132 693,535.8629,310.19684,144.50745,341.6458,5.12 693,405.10077,214.52196,14.359985,24.825089,4.993 693,589.26715,211.40329,15.0581665,28.503372,4.985 693,580.68414,214.96838,15.292053,32.8033,4.953 693,59.260864,208.05966,30.756378,57.728302,4.936 693,196.83862,-34.05669,30.703781,71.70098,4.912 693,-21.817942,401.87662,79.31903,175.8193,4.869 693,619.1606,206.8638,16.226746,36.87973,4.802 693,493.8053,227.92743,237.18738,513.2358,4.763 693,154.48119,212.9853,19.047073,28.102219,4.739 693,412.4126,214.97604,14.888245,26.302734,4.73 693,11.530462,200.79214,32.098755,57.37802,4.72 694,593.27606,213.92313,19.609314,47.773865,16.815 694,472.9271,218.23541,21.548798,39.335724,13.014 694,508.14355,229.2466,32.621765,66.4572,11.499 694,162.5775,226.67719,35.58368,68.93036,9.825 694,433.5636,213.81958,16.9859,29.603897,9.686 694,602.7385,222.51958,18.549316,49.456863,9.635 694,619.2299,228.28986,18.880676,54.32309,9.344 694,587.3076,206.10388,20.390503,44.298615,8.492 694,627.20557,-15.46059,16.599854,43.76402,8.229 694,-5.206616,-17.426569,16.843588,41.33901,8.034 694,473.79034,222.33646,31.555908,60.586975,7.729 694,610.57434,226.88388,20.57959,53.362732,7.539 694,276.6405,212.7813,16.552612,32.289017,7.479 694,554.6032,206.78865,20.46814,47.019226,7.208 694,262.67896,199.49278,10.818481,20.099945,7.075 694,623.7392,-34.1435,25.398438,76.9204,6.984 694,520.6754,217.58487,21.58551,40.064484,6.83 694,-3.4206867,163.91899,15.507153,44.162018,6.448 694,591.45807,220.51292,27.23706,61.682877,6.444 694,-5.9273367,489.87567,18.301178,41.63739,6.321 694,-11.591477,478.022,29.491943,63.39737,6.319 694,-11.00224,-30.981873,29.095001,69.69129,6.313 694,255.50342,197.92175,11.376343,20.446167,6.247 694,626.8338,488.97232,20.345215,43.906464,6.049 694,603.19653,-55.38752,52.719666,134.09215,5.98 694,99.23736,231.9077,33.735725,58.335556,5.906 694,561.74493,205.09045,20.71045,51.150085,5.887 694,512.31555,223.43175,23.201965,45.567947,5.822 694,626.51556,234.21608,18.697754,50.037704,5.785 694,410.52502,238.83797,19.957428,32.25621,5.673 694,270.53067,200.69368,10.053772,19.432861,5.621 694,619.3189,202.8895,18.629211,47.286163,5.608 694,600.72754,208.84306,32.89496,94.68141,5.572 694,459.11353,213.87741,18.788696,36.71364,5.401 694,253.26355,206.61534,14.662231,23.319565,5.369 694,530.9813,211.72691,32.578674,64.67546,5.282 694,-72.57417,264.92978,200.49059,463.45572,5.267 694,582.97797,413.88477,71.86359,174.33783,5.224 694,528.1007,214.1445,21.563477,40.42839,5.19 694,-16.916697,-64.10387,55.00216,147.99327,5.13 694,278.37567,206.77089,11.201538,21.534958,5.07 694,246.93422,197.58119,12.185226,21.010925,5.07 694,428.85104,218.79578,17.560883,29.752197,5.063 694,612.9123,455.51022,39.513794,107.01785,5.036 694,620.0637,-14.847603,15.657349,41.060307,5.032 694,535.5402,310.0888,145.09137,341.9367,5.006 694,403.66675,230.90569,18.724762,29.994583,5.005 694,104.1712,221.73169,22.138672,37.819763,4.951 694,442.5968,218.87628,17.876648,32.091064,4.949 694,-21.599361,403.26138,78.70592,174.66464,4.945 694,113.37597,220.3089,19.688927,38.092194,4.93 694,519.4518,217.83473,34.275085,67.0164,4.914 694,239.21538,191.80814,10.56517,20.05281,4.896 694,565.62006,207.57393,27.334167,69.75423,4.887 694,451.2038,213.71767,18.355865,34.71344,4.809 694,3.2305086,239.55591,18.326769,31.95044,4.783 694,379.69843,231.65202,17.725922,29.116104,4.775 694,395.5813,231.28497,18.248627,28.864563,4.764 694,494.05746,228.06006,236.7775,513.8309,4.668 694,243.56108,207.02242,18.168167,28.632248,4.656 694,498.77954,226.85237,19.524902,34.904434,4.648 694,-15.972272,153.88347,49.14832,133.77486,4.637 694,3.826183,-14.751993,15.3641815,37.79505,4.636 694,-3.2942855,148.19916,14.535336,40.761337,4.618 694,543.28357,203.6922,28.069946,62.061157,4.603 695,478.05524,215.00089,17.31134,40.414886,55.791 695,617.6865,211.87872,20.320374,60.289856,13.21 695,588.7519,225.1966,19.584595,44.79245,11.365 695,490.75586,213.24675,15.753296,36.88185,11.241 695,409.6579,194.40814,18.22522,46.095917,9.481 695,-5.2356124,-17.007011,16.780104,41.37483,8.853 695,554.4804,225.89517,17.892273,39.266083,8.479 695,282.6625,213.14407,16.230804,31.002441,7.942 695,608.76605,197.18486,25.414734,68.12996,7.902 695,568.96967,219.95244,19.80304,47.198837,7.094 695,-10.936264,-31.431114,29.029037,71.34554,7.046 695,627.4617,-17.481916,16.84021,45.569035,6.927 695,562.6747,223.99359,18.625122,43.32129,6.667 695,603.558,-55.457703,52.32672,137.74307,6.648 695,4.134536,171.49239,16.558289,34.56865,6.537 695,-5.79799,488.97467,18.24375,42.38501,6.198 695,-11.286626,478.11795,29.410465,62.97769,6.187 695,522.6679,215.67905,18.598816,40.486633,6.077 695,262.23047,199.89034,12.26297,23.279678,6.063 695,549.14624,221.09732,17.54486,40.33722,5.989 695,-2.5099463,175.22095,14.859383,37.767014,5.922 695,-3.2707286,158.22682,15.592102,37.902084,5.768 695,4.4753385,195.09769,14.483679,32.032623,5.686 695,623.642,-34.518883,25.653381,75.31292,5.632 695,278.23886,205.2955,12.279053,22.238724,5.56 695,269.43317,198.24248,11.494629,20.827072,5.551 695,591.09204,220.86638,25.6073,63.816666,5.44 695,498.05457,212.72554,17.225769,40.604645,5.436 695,626.60724,488.04718,20.731506,45.381104,5.395 695,246.93825,197.30984,12.866928,23.20137,5.303 695,-16.688795,-64.48343,54.9722,149.18994,5.199 695,-21.659098,403.25952,78.64875,174.95374,5.124 695,583.5645,412.01398,70.91217,175.76361,5.102 695,613.4042,455.32202,38.604492,106.8017,5.094 695,3.622018,-14.768394,15.476069,38.374863,5.074 695,535.81226,309.26254,144.92761,341.87808,5.071 695,574.2446,206.26526,27.718323,61.24527,5.035 695,-72.67256,265.97638,200.01785,461.77814,5.0 695,-2.0990925,191.96014,13.9697895,34.768814,4.92 695,558.8402,198.88266,27.49884,65.02719,4.909 695,613.6115,236.72716,25.799866,75.61012,4.802 695,493.98138,227.46591,237.10254,515.3192,4.755 695,254.44125,196.25256,12.844208,23.024994,4.714 695,121.238014,217.7908,20.966377,27.535355,4.714 695,626.67694,43.77451,17.544739,45.58035,4.597 695,311.77365,224.81718,22.366943,38.005753,4.419 695,622.2527,193.49385,24.608643,77.81276,4.407 695,379.44247,177.09471,16.188019,31.822968,4.355 695,164.87395,217.04617,29.002716,54.371307,4.327 695,627.18713,29.523762,17.601318,42.00401,4.301 695,261.82785,188.87979,12.243195,24.7762,4.291 695,239.6287,190.6692,11.028595,20.64824,4.282 695,515.01385,216.79405,18.148132,38.867233,4.261 695,626.01874,239.31174,19.090454,50.691193,4.232 695,-4.747729,217.01093,16.080212,34.58963,4.213 695,-37.561455,-124.043816,117.46722,283.58887,4.184 695,595.8769,-46.805653,42.67639,102.75318,4.143 695,349.3704,176.91219,15.471588,35.12802,4.077 695,623.2357,37.949875,24.836426,72.08093,4.059 695,-17.333572,157.57285,50.338745,128.38284,4.048 696,559.59216,212.92174,22.477173,55.405838,78.679 696,548.49744,209.3401,19.25232,46.482086,13.079 696,513.7791,195.12033,20.616394,49.93718,9.752 696,284.4302,211.32138,16.811127,31.286316,8.617 696,-5.2470016,-17.304672,16.811737,41.599503,8.59 696,626.92395,-15.461094,17.362305,44.3968,7.833 696,487.72702,219.87415,23.149567,35.7563,7.526 696,269.72745,202.58957,12.657867,21.373291,7.474 696,622.91,-33.61915,26.66632,77.04991,7.011 696,284.89502,204.69672,13.202423,22.369537,7.0 696,277.66953,203.34229,12.89743,22.20996,6.872 696,-11.060166,-31.195078,29.301495,70.990105,6.845 696,603.05914,-54.61312,52.94153,135.21559,6.711 696,567.81683,208.18433,19.335327,49.216553,6.675 696,-5.73312,489.6056,17.850126,41.52832,6.351 696,-11.485073,477.07312,29.35492,64.27026,6.204 696,621.81714,477.1022,28.764404,67.64914,5.705 696,540.85016,206.9279,17.417542,35.738434,5.501 696,262.19684,200.95103,12.599731,21.904144,5.452 696,-3.4595098,186.65793,16.442211,42.36499,5.348 696,3.8221245,-14.925783,15.573429,38.305008,5.279 696,583.56995,412.1665,71.10217,176.13062,5.225 696,3.5505219,193.76653,18.10258,41.159546,5.176 696,-72.86663,265.3737,200.36856,462.18283,5.129 696,-16.933771,-63.26647,55.37957,145.77356,5.119 696,-21.58469,402.94638,78.75287,175.27371,5.055 696,450.56396,197.96498,18.808136,46.773026,5.027 696,580.0076,208.13243,16.438232,34.20851,4.971 696,517.67096,206.41655,22.895996,49.96895,4.944 696,-3.744626,165.27734,15.609216,41.055054,4.923 696,536.10913,310.1837,144.67224,341.41617,4.889 696,254.90271,201.58936,11.841797,21.96582,4.798 696,619.36633,-14.314824,16.92157,41.780575,4.787 696,595.0731,-41.918938,43.42157,98.14659,4.687 696,494.09042,227.8787,237.10312,515.4253,4.611 696,563.59863,206.84299,17.191772,34.164978,4.594 696,314.58948,221.02449,29.748444,51.74373,4.485 696,367.6971,202.9433,21.50595,40.14633,4.457 696,613.27814,-17.058826,28.190247,72.419876,4.41 696,4.3465204,222.82324,15.028007,28.886932,4.395 696,537.0384,201.95457,26.846008,56.75209,4.292 696,2.00032,214.87119,40.41678,90.11929,4.26 696,572.0318,207.14598,17.382812,31.785507,4.255 696,293.87305,197.35645,12.870972,22.896774,4.24 696,-4.5521936,215.35269,15.672512,36.409912,4.215 696,-36.99572,-124.068954,116.42008,282.13965,4.215 696,-17.400745,156.0032,50.377216,131.07687,4.212 696,11.348211,-15.208282,15.580885,37.672565,4.199 696,154.40115,215.70535,20.329224,27.220886,4.191 696,286.8975,217.42014,23.240875,37.686172,4.182 696,43.188255,202.33008,19.34024,30.994904,4.164 696,3.60052,241.02098,17.55942,29.969559,4.146 696,17.098782,186.04506,19.514915,38.929123,4.142 696,10.803876,200.06824,17.26025,36.173004,4.131 696,75.02371,199.44464,18.336662,34.302963,4.101 696,3.8272004,177.80814,17.337112,39.90268,4.076 696,587.37964,215.91571,18.709595,41.73401,4.075 696,414.75357,129.53557,12.476929,24.754028,4.042 696,138.69489,215.29836,18.742233,27.01117,4.029 696,549.2695,217.5327,37.205627,65.787674,3.995 696,532.2005,192.8788,14.684814,37.888443,3.981 696,616.7088,211.25919,22.009338,58.721313,3.977 696,146.10391,214.9126,19.666718,27.56926,3.961 696,17.144758,216.495,43.20581,81.14191,3.922 696,555.1922,205.16241,16.895752,35.121994,3.885 696,-9.674374,-7.288048,38.883587,103.33068,3.879 696,301.5394,193.33469,13.78891,24.82547,3.845 696,291.20126,210.55948,14.496307,26.316528,3.841 696,421.273,125.02539,11.892822,22.830994,3.834 696,82.255905,215.2237,42.607513,76.82532,3.834 696,324.2328,214.771,28.127472,52.536285,3.807 696,611.153,9.848705,28.203003,68.834564,3.78 696,42.98592,183.16573,19.149742,31.784302,3.766 696,-9.204176,165.9613,27.47418,67.79889,3.721 696,618.30804,489.25922,20.792725,43.676453,3.719 696,430.07062,198.96985,28.094421,55.579147,3.719 696,520.9823,190.66847,16.649475,42.3985,3.711 697,395.99246,198.43124,29.901855,60.38672,12.875 697,519.99866,204.59001,22.212769,49.16826,10.364 697,-5.324516,-17.335133,16.95964,41.43956,8.53 697,622.6969,-33.614502,27.03363,77.03225,7.87 697,516.9109,221.43651,29.428894,68.11635,7.759 697,627.12933,-17.744673,17.740051,46.63895,7.375 697,-10.955986,-31.397633,29.110405,70.51057,6.825 697,276.4362,203.89548,13.257111,21.922592,6.535 697,-6.032714,489.15866,18.397572,42.119843,6.338 697,-11.799324,477.5989,30.078058,63.257843,6.265 697,270.0015,199.11789,12.468353,21.839478,6.177 697,626.6915,488.00174,20.57605,45.309296,6.1 697,591.27563,229.14105,23.694214,42.430084,6.056 697,498.16742,210.93787,18.698975,35.898743,5.936 697,2.3440628,205.5227,18.343678,37.11827,5.744 697,613.5985,-17.18219,28.497375,74.20726,5.577 697,491.08322,214.70474,18.511688,35.39615,5.391 697,-3.57502,156.56422,16.197128,41.85385,5.387 697,482.1393,213.80798,20.119293,37.986084,5.338 697,602.48816,-55.05613,53.373352,134.64015,5.314 697,275.63898,209.5375,15.705414,26.28218,5.277 697,3.6836362,-15.4110775,15.519018,38.416824,5.216 697,613.17615,454.92877,38.868652,107.239136,5.177 697,583.6477,411.62885,71.08771,176.39728,5.167 697,-5.3254724,214.0254,17.114641,39.017807,5.122 697,344.70868,214.51347,22.15857,38.14746,5.11 697,262.8148,198.35391,12.4122925,21.672226,5.064 697,-72.88822,265.58072,200.44461,461.92307,5.063 697,-17.29392,-65.66174,55.34646,149.39139,5.044 697,-21.481874,403.50836,78.72805,174.83392,5.035 697,-3.1885197,188.91226,16.031355,37.737137,5.006 697,530.9924,196.5651,30.115906,56.198883,4.933 697,292.11826,210.12782,14.336517,24.74916,4.893 697,269.37787,209.3593,14.970398,24.944672,4.827 697,574.8243,225.02066,31.172852,56.588165,4.812 697,535.7799,310.93616,144.58313,341.84485,4.792 697,491.30377,-15.884828,16.861145,38.234005,4.746 697,285.29733,199.36823,12.16684,21.279541,4.725 697,321.8695,221.72922,21.472168,35.690674,4.719 697,284.567,208.17026,13.704071,24.77504,4.603 697,9.038944,203.47241,21.362562,34.480515,4.561 697,619.0124,-17.803253,17.875305,46.0694,4.551 697,493.20837,226.94055,237.95264,515.2885,4.544 697,3.075159,220.66423,17.624575,32.55197,4.508 697,255.13953,198.08493,12.072174,20.96457,4.477 697,382.36847,200.40778,33.005096,61.687347,4.471 697,323.3934,217.3454,30.445679,55.48886,4.454 697,3.2963681,166.54369,17.273926,45.25055,4.42 697,170.97887,215.38521,19.933167,27.340958,4.416 697,238.97217,219.013,21.831268,37.494843,4.404 697,293.75546,198.94641,12.22879,21.711746,4.368 697,474.28525,-17.870226,18.656708,38.47744,4.328 697,-17.180712,158.18234,50.147293,128.73279,4.307 697,594.8874,-43.611378,43.978455,97.29569,4.285 697,483.06973,-15.552935,17.316315,36.756355,4.242 697,161.90437,214.0696,20.334976,27.430557,4.209 697,32.338806,201.33087,22.627136,33.96736,4.171 697,64.76314,185.02556,25.759254,53.39203,4.154 697,522.4371,181.11609,28.371643,65.58856,4.153 697,2.3763359,490.75116,19.0005,40.385498,4.132 697,452.84583,-37.277298,30.035889,66.64466,4.122 697,585.76746,-100.205025,75.29907,234.33853,4.118 697,291.20837,219.4517,21.999908,34.062424,4.115 697,586.48413,223.53181,21.630371,34.499466,4.106 697,153.6889,213.27809,20.286087,27.76796,4.083 697,334.59906,213.44316,28.24701,49.717545,4.071 697,2.8263319,192.78119,17.40821,34.817245,3.998 697,25.327991,210.8311,20.278057,31.49408,3.994 697,620.01996,196.56801,20.58496,46.33757,3.976 697,5.8160486,467.31592,37.416817,95.248535,3.943 697,106.882385,194.32903,19.057495,37.571045,3.914 697,373.19424,200.7898,28.61029,54.585373,3.908 697,116.04072,187.222,15.258202,27.871307,3.866 697,363.61844,204.03644,16.751862,29.211777,3.865 698,495.5033,217.6365,23.767944,50.374817,12.009 698,490.19684,214.40636,20.270721,47.723526,10.511 698,472.3445,217.83728,21.617401,44.67511,7.998 698,627.4124,-15.711262,16.549255,44.428688,7.805 698,-5.544526,-17.60375,17.226742,42.024776,7.592 698,480.7222,218.40356,22.446014,49.11035,7.005 698,261.37567,207.69162,14.181549,26.622192,6.934 698,-11.909941,477.24258,30.515188,63.67508,6.621 698,621.6098,192.1144,16.756348,51.02745,6.578 698,-3.0741022,174.0739,15.313115,41.5858,6.15 698,-12.310961,-41.156296,40.900223,103.91462,6.142 698,268.41336,209.72635,14.180969,24.547928,6.04 698,464.01627,227.1182,27.824554,57.68625,6.034 698,-6.249013,489.18268,18.819738,42.20508,5.96 698,603.2167,-54.48118,52.900024,134.03917,5.947 698,623.6709,-34.092606,25.502563,77.84359,5.937 698,278.31674,205.4874,11.248108,19.824524,5.859 698,504.11807,213.4697,21.483917,46.49533,5.67 698,113.80324,190.83502,20.771484,37.709976,5.603 698,626.5192,487.8896,20.801575,45.621582,5.535 698,569.0768,207.98961,19.539612,42.072266,5.504 698,484.71155,208.13658,17.874237,37.585846,5.234 698,396.87262,213.53902,29.102722,54.063614,5.221 698,613.2635,454.4361,39.036255,107.96991,5.182 698,553.83875,179.60513,17.704834,36.91739,5.181 698,583.2018,412.60782,71.43823,175.14053,5.124 698,-72.848465,265.67072,200.67453,461.8766,5.1 698,268.93274,199.1212,12.423065,20.505203,5.035 698,286.24066,206.69742,9.833801,19.397446,4.997 698,261.43286,198.80664,13.406433,22.4337,4.984 698,535.72,310.52536,144.4748,342.22733,4.973 698,-21.464264,403.391,78.83667,174.90033,4.972 698,-4.468648,39.908134,18.211945,46.01796,4.873 698,122.01172,194.19603,19.858414,35.400467,4.858 698,129.82394,193.00694,20.699768,36.830658,4.852 698,246.86377,190.65405,11.668854,20.478134,4.807 698,397.1133,203.47464,14.534393,28.880753,4.791 698,4.1522355,233.4287,14.967705,28.26332,4.761 698,231.51366,192.58806,9.760239,17.501022,4.75 698,490.73755,201.38066,17.759155,35.175278,4.744 698,547.53107,200.613,18.431335,31.583282,4.741 698,106.54346,194.91556,19.189873,34.580093,4.716 698,239.36913,191.4808,10.592239,18.63765,4.712 698,-3.9910007,158.32059,16.279184,40.535583,4.697 698,498.1416,208.39423,18.142822,37.2213,4.66 698,553.61725,53.022465,39.21576,70.13641,4.619 698,493.66162,226.90091,237.6731,515.1509,4.617 698,416.54462,216.02734,23.460571,42.601074,4.589 698,254.32259,191.30626,12.235062,21.406387,4.587 698,3.8649316,177.2543,16.035374,41.376846,4.585 698,223.23224,181.47006,11.046005,19.796738,4.561 698,3.5064924,-15.409231,15.951929,38.805714,4.544 698,509.32318,207.3911,27.707397,59.124344,4.537 698,66.58511,198.40434,18.929955,33.998917,4.523 698,276.63165,209.95331,14.120636,24.729126,4.512 698,360.99628,213.60013,22.967041,39.38922,4.45 698,138.33652,194.34796,19.865112,33.858078,4.437 698,620.3085,-14.852402,15.631287,40.827,4.429 698,365.90424,214.0966,27.294556,51.870407,4.422 698,275.50793,219.26294,17.716248,26.319672,4.392 698,316.63412,214.61707,29.77826,51.299103,4.368 698,-8.822776,35.00641,27.891174,74.062454,4.353 698,379.92062,210.5484,54.689545,116.94586,4.343 698,424.88498,207.3151,21.789062,45.24765,4.287 698,294.12518,205.53648,9.998932,20.139008,4.273 698,231.10034,181.36116,11.049011,20.133331,4.253 698,-37.044304,-123.51285,117.05801,280.5912,4.235 698,-4.434857,233.15916,15.114071,34.708054,4.225 698,2.1047628,491.21027,19.12972,39.987854,4.215 698,485.10742,210.48515,38.068604,84.98189,4.176 698,-2.8705456,193.01093,15.586566,40.788483,4.166 698,235.95972,212.75626,16.631866,29.321365,4.145 698,290.82312,219.33124,20.618896,31.373169,4.136 698,507.88873,200.9491,16.184265,34.766098,4.121 698,-8.96711,150.09341,26.585026,71.89455,4.112 698,152.56061,203.42525,21.49205,31.664993,4.111 698,286.5008,191.77266,10.798889,20.983078,4.105 698,253.04169,210.69688,14.735168,27.30951,4.099 698,247.25832,197.89755,11.737167,20.642212,4.082 698,-19.497643,-88.4099,70.626526,201.40607,4.079 698,471.33307,171.89511,31.398224,69.19592,4.079 698,212.8813,211.91937,15.971252,27.534882,4.054 699,451.4544,222.7208,29.004028,68.3703,9.054 699,528.54376,210.74707,22.597046,46.24124,8.767 699,464.18317,216.23335,20.043518,40.53914,8.531 699,536.32324,215.24463,23.120361,49.36731,7.818 699,-5.4543505,-17.462973,16.990261,41.773735,7.81 699,533.8374,276.0191,30.115723,70.97034,6.655 699,484.45892,218.82501,28.686157,71.4538,6.585 699,407.0094,224.05539,26.125519,55.795074,6.581 699,603.6155,-54.600708,52.693604,135.09662,6.366 699,-3.419789,172.35619,15.229843,41.02997,6.311 699,627.2666,-18.304935,17.641907,48.4261,6.301 699,-11.109666,-31.161396,29.143223,70.891106,6.285 699,623.2473,-32.499626,25.9068,74.91982,6.093 699,-12.054255,478.4351,29.990463,62.106903,6.058 699,537.9326,209.22298,18.962952,33.902206,5.99 699,408.4281,128.27763,26.240479,82.72066,5.891 699,-3.6837583,188.84807,15.159023,37.32695,5.887 699,470.0528,217.05048,30.295776,71.79227,5.85 699,-6.255937,489.64676,18.690496,41.281586,5.634 699,2.0895183,234.24287,21.106108,38.44258,5.51 699,286.76794,204.5972,10.489319,19.542694,5.437 699,626.51953,488.19492,20.776611,45.272186,5.359 699,-3.3841734,155.68909,15.753995,42.475357,5.341 699,613.04224,454.5338,39.488586,107.70032,5.257 699,474.02713,216.46506,20.552368,39.289185,5.249 699,3.9827294,167.50531,16.951078,41.78598,5.219 699,-16.654356,-63.702774,54.89566,146.77345,5.15 699,-72.91612,265.39838,200.79622,461.95465,5.128 699,-21.56585,403.4594,78.76665,175.13275,5.076 699,583.28864,412.41953,71.480774,175.9636,5.045 699,240.17224,215.8134,21.824768,32.77861,5.044 699,96.57899,185.76979,19.961006,36.673035,4.994 699,3.4938245,-15.458437,15.735725,38.95827,4.942 699,413.5349,208.29079,14.429504,33.264435,4.936 699,413.18784,198.03621,13.659943,29.547684,4.882 699,262.46298,197.45218,11.651581,22.54248,4.711 699,536.1183,311.22922,143.73279,342.00613,4.709 699,278.6358,202.93958,11.613037,20.809982,4.535 699,295.53265,199.42146,10.091919,19.9785,4.525 699,2.656777,220.00201,39.210537,97.159485,4.503 699,430.05948,225.71573,29.94934,67.0238,4.473 699,421.14383,209.12657,13.578644,32.06038,4.438 699,493.5646,227.12103,237.3895,514.87836,4.421 699,265.27722,206.88757,21.588562,34.211777,4.396 699,219.14722,213.61438,18.738129,26.920197,4.382 699,11.95094,223.13803,30.807384,51.45114,4.381 699,393.0734,219.48172,21.502716,38.461884,4.368 699,270.24268,198.41937,10.970459,21.189178,4.316 699,254.92973,189.78764,11.515488,22.87587,4.297 699,105.55142,191.97864,21.815186,36.78987,4.271 699,595.59814,-45.491554,42.889282,100.012505,4.257 699,298.729,222.11021,20.54541,33.64496,4.249 699,-5.6858897,237.28773,18.378551,40.09233,4.245 699,482.17465,215.40245,21.588623,42.12056,4.235 699,519.1408,210.48572,28.53601,68.262726,4.228 699,-4.671627,201.04121,16.943176,39.35814,4.219 699,581.5886,219.41089,30.610657,59.895203,4.211 699,-16.910229,158.13385,52.256687,130.78125,4.208 699,523.8064,207.31544,18.573853,36.81534,4.198 699,-37.368416,-123.12451,116.61946,280.81174,4.179 699,152.52164,202.92055,22.772171,33.79181,4.159 699,11.89534,178.87456,16.810762,36.986694,4.134 699,560.23047,-126.91877,115.836365,273.06485,4.125 699,234.7703,228.45284,20.139923,36.253586,4.114 699,6.5628767,203.21184,27.647427,55.91774,4.108 699,281.31134,217.97887,21.373505,32.13481,4.061 699,-9.914244,191.95828,27.707764,61.28273,4.037 699,247.0235,189.082,11.97934,22.368713,4.027 699,301.58875,174.68045,13.616394,30.330566,4.015 699,2.201373,491.54666,19.154232,39.49185,4.009 699,161.4933,212.14899,20.945374,30.856781,3.975 699,411.14,132.1278,18.525635,51.74292,3.955 699,619.321,-18.900972,17.673157,46.09373,3.915 699,440.4516,231.1437,28.854797,68.40811,3.909 699,544.64746,211.26688,19.947998,40.59674,3.906 699,2.1733432,209.38475,19.820753,39.80925,3.9 699,137.3844,196.77504,21.19217,35.092545,3.888 699,238.7475,189.39713,12.115677,20.583069,3.827 699,460.86694,207.03526,16.529053,35.568848,3.814 699,170.22482,214.7669,19.519775,28.060333,3.801 699,403.28088,131.32185,20.374695,62.21704,3.797 699,598.3796,215.71346,30.008545,59.33055,3.785 700,586.5849,207.67574,21.865479,46.05777,22.239 700,529.02563,213.51657,34.108643,58.298767,10.102 700,618.01917,214.32983,21.569458,54.513367,9.319 700,-5.2548,-17.091574,16.747648,41.39212,8.594 700,450.07016,184.68796,20.034943,49.201508,7.94 700,18.255377,211.10083,34.483917,48.930664,7.938 700,588.401,209.05484,28.066101,68.89676,7.632 700,-10.998703,-31.387255,29.141567,71.22383,6.445 700,417.81467,216.71365,20.697723,40.05652,6.385 700,627.1824,-17.781284,17.31311,45.821793,6.133 700,5.132301,207.69418,32.453556,49.021667,6.103 700,603.2981,-55.231213,53.06433,135.707,6.078 700,-8.621564,464.6903,37.342747,92.15698,5.843 700,69.03516,200.25241,14.760727,33.10707,5.838 700,286.19812,205.9089,11.430481,18.597687,5.632 700,626.67194,487.81824,20.57605,45.95099,5.588 700,-5.973971,489.6138,18.077158,42.070282,5.521 700,449.04755,220.22974,23.602966,42.998108,5.454 700,1.4854515,204.67917,21.000797,37.396942,5.386 700,623.4679,-33.859917,26.047424,74.295944,5.344 700,612.96295,455.23962,39.576416,107.07117,5.333 700,273.361,210.20906,20.768188,30.7556,5.327 700,335.4935,229.76779,23.936249,38.879333,5.264 700,392.27228,218.71825,22.594818,35.227814,5.225 700,248.25502,215.22049,21.395096,32.639847,5.224 700,-16.909945,-63.80256,55.310112,147.11311,5.179 700,-73.017136,265.58862,200.79532,461.96094,5.145 700,-21.535007,403.41196,78.685074,175.06955,5.113 700,582.90625,413.42657,71.93103,174.87885,5.103 700,3.8208098,-14.742988,15.384062,38.242172,5.102 700,535.6349,310.8518,144.81323,341.59277,4.96 700,545.73956,213.14561,33.51648,56.237534,4.93 700,410.6219,217.19348,20.204468,38.075256,4.923 700,622.1293,218.92047,25.992676,78.82312,4.906 700,565.225,204.77628,30.99585,59.508057,4.871 700,536.7872,202.03233,32.21112,54.98192,4.826 700,493.4753,227.60254,237.4573,513.6757,4.658 700,560.12537,218.9666,24.495117,42.58687,4.591 700,598.5198,207.59128,34.57733,93.0809,4.497 700,-4.995328,195.44579,17.873669,40.839737,4.467 700,22.169186,205.51547,24.18953,38.622498,4.446 700,602.6723,210.29332,16.538391,34.362625,4.367 700,226.12982,216.2958,20.99794,30.814484,4.364 700,77.55143,202.34367,14.688927,31.211304,4.347 700,53.260666,196.30873,13.412704,30.50769,4.331 700,290.4254,219.60233,19.351776,28.419052,4.306 700,529.2236,209.96317,23.317993,43.43918,4.29 700,239.01595,189.24608,11.6706085,21.12526,4.289 700,307.2006,222.90338,19.763855,31.876343,4.174 700,595.3322,198.09389,16.034058,33.63823,4.148 700,242.07008,226.9171,20.788223,37.041977,4.14 700,250.73257,206.30116,31.001495,50.345535,4.137 700,270.83868,200.70897,10.045776,19.130402,4.124 700,-18.213764,179.00359,54.257923,117.741165,4.118 700,-10.123041,191.12021,28.59331,61.98793,4.093 700,401.0125,217.327,21.163635,36.30426,4.086 700,562.6803,208.2331,20.263123,35.552734,4.077 700,230.59961,189.64621,11.433807,20.229874,4.037 700,222.02835,176.5156,12.686325,24.420395,4.03 701,480.4205,219.04163,22.715546,44.27655,13.745 701,-5.445335,-17.785414,17.05818,41.84253,7.912 701,2.0926535,171.8682,19.669104,47.634308,7.554 701,464.1467,221.08545,23.709167,44.385437,7.121 701,603.6565,-55.190895,52.65564,137.73434,6.998 701,61.9511,205.5152,32.022335,48.318527,6.861 701,425.88763,220.6397,18.850891,37.64125,6.579 701,5.6072865,162.0565,26.955328,62.857254,6.439 701,-11.196422,-31.209724,29.285336,70.955444,6.375 701,450.54108,221.52826,33.592194,65.78046,6.091 701,-8.622358,464.63223,37.45382,92.06491,6.085 701,-3.9440968,164.61526,16.929983,42.6138,6.058 701,-5.5310335,214.42485,17.142866,39.181732,6.019 701,497.2157,217.24625,20.524414,40.091034,6.019 701,346.07968,230.15056,21.875275,33.81816,6.018 701,-6.0548534,489.65265,18.557644,42.309082,5.924 701,627.4334,-16.890333,16.943298,44.96385,5.875 701,22.753452,166.15332,28.055817,58.064316,5.867 701,2.9694128,222.72025,17.414246,31.168564,5.816 701,433.60397,222.11043,18.859375,34.573166,5.721 701,504.82672,218.787,21.54419,41.574417,5.685 701,626.6656,487.71375,20.51654,46.107727,5.599 701,240.67644,212.97502,21.756546,35.246384,5.586 701,484.49957,213.19827,29.01294,59.753296,5.577 701,535.60156,171.69592,27.26184,81.556366,5.562 701,443.6896,221.79266,18.487854,33.27028,5.352 701,612.9896,455.15033,38.997803,107.322876,5.279 701,450.75256,220.44061,19.463531,37.78961,5.251 701,513.009,223.75656,23.635254,48.008545,5.196 701,623.4968,-34.243835,25.70636,75.21546,5.189 701,-21.67992,403.3845,78.86631,175.22598,5.163 701,583.13776,413.53357,71.61194,174.9389,5.066 701,-72.82521,265.8059,200.28448,461.65924,5.05 701,475.0026,213.44475,20.37732,40.145477,5.033 701,535.75415,310.8554,144.58325,341.47528,4.966 701,3.5105658,-15.896392,15.857163,39.17643,4.948 701,-16.916582,-65.13879,54.994293,149.33617,4.944 701,414.89734,219.89816,26.911407,57.797546,4.862 701,426.17365,221.49876,31.556793,52.043076,4.822 701,435.7523,214.99362,14.764252,27.49826,4.798 701,260.14532,199.78357,29.78537,52.77977,4.786 701,525.69556,209.9693,28.618286,64.05228,4.764 701,427.3737,214.67024,15.484253,28.851456,4.722 701,226.29057,221.30342,19.47438,31.935913,4.717 701,219.4159,217.03836,19.215775,29.258606,4.685 701,285.98285,203.3762,11.903137,21.609558,4.669 701,493.71375,227.84381,237.245,512.9851,4.625 701,234.34822,228.86835,19.920258,36.19879,4.589 701,618.04175,191.10027,20.199402,57.135483,4.562 701,595.6501,-44.6505,43.116882,102.54841,4.556 701,315.98022,223.55696,19.339966,31.562805,4.532 701,2.1597385,203.57864,18.444124,40.431976,4.525 701,521.99884,221.63799,20.80011,42.358963,4.512 701,439.56924,217.88371,28.306244,50.515915,4.421 701,-4.23238,150.42044,16.350891,38.999954,4.408 701,-1.1225319,185.82356,26.485245,63.490326,4.391 701,467.95618,221.2944,31.116058,60.02585,4.338 701,16.394785,176.1522,23.0533,48.620407,4.336 701,-5.2857294,231.9257,16.589088,35.680557,4.308 701,-4.743078,299.92377,15.920683,38.53717,4.301 701,371.0043,217.48813,19.220795,29.707321,4.232 701,-3.3004177,182.509,16.963247,44.13434,4.227 701,549.79333,222.89928,29.822083,67.160324,4.224 701,265.92786,208.04904,20.704071,34.092392,4.22 701,322.91345,-0.2664833,18.614624,36.598995,4.17 701,458.71005,217.86765,17.636261,33.944717,4.154 701,475.26227,228.9541,33.7706,70.92438,4.138 702,0.16667366,257.06042,54.435074,194.24646,9.454 702,505.96298,215.0376,19.356476,39.646317,8.861 702,525.2511,195.62427,15.628479,33.646088,8.347 702,-5.225772,-17.148516,16.825161,41.700367,8.141 702,513.84216,213.68915,19.544617,40.516388,8.042 702,376.2862,231.46332,23.4859,39.455048,7.72 702,460.01553,216.76825,30.569519,60.807373,7.665 702,538.0342,214.17108,19.878967,38.54164,7.462 702,522.44543,213.94624,19.1828,38.84555,7.068 702,534.2886,216.0211,27.46051,61.91713,6.958 702,1.2516165,230.61911,90.82545,262.82495,6.767 702,501.5143,213.98285,14.87265,25.331482,6.738 702,530.97906,202.50821,15.509888,31.828552,6.629 702,545.25415,214.48856,20.720825,39.37274,6.584 702,316.34244,205.77571,15.69046,34.407135,6.528 702,471.18546,222.99185,25.045502,44.785553,6.34 702,596.7634,217.53711,31.28064,76.95526,6.334 702,498.03836,220.63269,21.007477,43.062103,6.329 702,-11.140354,-31.13878,29.416965,71.59798,6.314 702,-5.5607533,489.1419,17.884718,42.601624,6.208 702,-3.8424635,163.76138,16.793829,44.099762,6.2 702,515.19855,229.55484,19.66211,38.195038,6.091 702,517.74384,211.14864,27.579224,60.5132,5.98 702,530.34314,213.36908,20.095154,39.36371,5.943 702,616.365,162.61295,22.914978,85.905334,5.904 702,-8.840671,464.40613,37.393814,91.97632,5.886 702,-72.77525,266.10797,200.89333,464.27435,5.869 702,627.31476,-16.519691,17.167786,45.260555,5.777 702,548.9924,214.53625,28.379639,67.47177,5.762 702,241.49442,214.55746,19.201752,33.450134,5.68 702,621.8685,477.00586,28.735779,67.476135,5.672 702,479.52377,219.10689,21.239838,38.871902,5.574 702,488.07864,222.88243,23.039642,43.939926,5.52 702,4.1770835,174.72409,17.067299,44.879044,5.448 702,553.43896,214.58815,20.129578,40.06996,5.416 702,284.7436,218.78442,15.375153,26.391327,5.356 702,526.44946,227.62418,29.158936,63.99591,5.354 702,611.18585,-48.31878,41.28412,100.95568,5.321 702,268.4207,211.93506,15.205383,27.724747,5.312 702,286.4973,205.09235,11.855774,20.298737,5.139 702,617.01624,205.1841,21.05487,52.465347,5.113 702,582.99133,412.24527,71.64618,175.9816,5.031 702,412.73047,217.88928,15.5065,28.092834,5.009 702,508.47324,208.75058,13.760284,25.077026,4.988 702,-39.539906,357.37384,111.24719,284.1565,4.984 702,-6.0589933,300.6886,39.950718,117.377686,4.948 702,535.84467,310.45868,144.46136,341.6048,4.922 702,3.5786378,-14.612376,15.633123,38.684254,4.835 702,-16.77172,-64.26061,55.010532,148.03104,4.834 702,-9.330608,149.3913,28.032421,72.049835,4.694 702,493.6692,228.3581,236.88776,513.10626,4.672 702,454.24942,209.03249,26.950897,53.936417,4.64 702,227.97823,230.79181,17.931625,28.892517,4.639 702,278.64764,204.36465,11.342194,20.11258,4.615 702,-3.3500643,183.77873,16.08995,45.440353,4.584 702,293.61642,204.122,13.390869,23.706894,4.565 702,563.123,210.80423,18.08313,36.31955,4.559 702,-6.332959,233.99826,17.577938,38.033295,4.549 702,465.3039,213.84772,20.283112,37.759613,4.545 702,83.748924,201.02603,32.47963,49.901764,4.495 702,476.16125,216.82242,15.237701,24.913773,4.485 702,225.68678,219.02104,20.536392,29.831284,4.474 702,533.7667,132.13821,25.648987,76.96307,4.46 702,230.50398,187.04854,12.479248,23.296616,4.448 702,116.69831,44.947693,40.640877,68.00568,4.442 702,234.6768,220.89825,19.231644,31.848602,4.398 702,474.52258,224.27415,30.231873,65.604965,4.352 702,522.03973,235.87122,21.469788,41.414978,4.343 702,-6.5196443,351.8966,37.11385,109.80829,4.34 702,494.38373,215.24706,13.819366,23.596344,4.328 703,80.01648,299.85837,29.430283,72.04953,9.42 703,335.91342,209.23454,20.893951,47.200607,7.886 703,109.02573,209.6718,29.702545,71.58183,7.868 703,-5.5068994,-17.31995,17.003227,41.471603,7.759 703,26.526237,181.16133,20.661968,43.668076,7.622 703,603.39325,-54.477585,52.888245,136.72406,7.207 703,4.922661,173.22188,28.691376,73.1505,6.757 703,60.73811,180.96632,15.152782,36.14496,6.686 703,4.1984158,319.00397,16.137636,31.209045,6.585 703,26.942062,339.6056,19.564972,28.921722,6.571 703,618.1093,183.94984,16.54071,47.391464,6.55 703,-11.338379,-31.439638,29.431887,70.854904,6.358 703,28.054012,174.71315,31.465954,69.246445,6.282 703,248.7797,216.69644,21.096771,31.85199,6.195 703,428.46555,216.10947,14.108459,34.454956,6.097 703,626.5168,488.6139,20.709778,44.911255,6.023 703,52.939854,180.0308,16.128407,37.545273,5.961 703,34.39396,338.80658,19.50917,29.54123,5.944 703,-5.919516,489.57892,18.344744,41.169983,5.904 703,484.06763,227.47543,15.784546,23.480606,5.887 703,627.2297,-17.798084,17.396057,46.22452,5.869 703,-3.088643,171.80399,15.219359,40.48874,5.822 703,-4.9516687,300.88837,16.34946,35.248474,5.777 703,-11.931418,478.19772,30.087791,62.687225,5.728 703,3.4897983,175.9135,17.237722,47.69365,5.665 703,499.73132,220.26492,19.14618,28.07869,5.531 703,506.21667,222.18034,18.239014,31.360504,5.455 703,420.9496,217.19283,14.778809,33.525635,5.378 703,616.9803,151.59778,20.72931,86.8692,5.37 703,-17.069374,-65.890465,55.060417,150.02074,5.219 703,583.7867,411.774,71.033875,176.45258,5.199 703,1.222018,279.52972,20.957914,33.90918,5.182 703,35.058624,180.34555,20.072975,42.93634,5.157 703,20.666428,309.7092,32.290863,60.303253,5.124 703,290.04828,217.05234,20.142883,31.378754,5.118 703,620.3326,41.611526,16.578125,49.827866,5.091 703,612.77234,455.7094,39.54236,106.46405,5.085 703,-73.047195,265.0293,200.75293,463.12146,5.083 703,-21.863148,401.61603,79.0574,176.23755,5.064 703,523.3379,214.75328,17.675781,33.86093,5.05 703,617.67816,121.563416,22.391418,88.41644,5.039 703,3.8699234,344.4682,15.787967,30.853882,5.01 703,237.84264,187.10594,13.626724,24.916153,4.959 703,103.27777,194.3127,27.87912,72.84224,4.896 703,2.5918806,304.2013,18.25262,32.42169,4.893 703,412.25497,218.98238,15.675079,31.02452,4.89 703,130.92703,187.65639,16.215057,33.14792,4.847 703,324.60718,199.81412,16.863037,34.83815,4.843 703,123.71213,185.85101,17.675262,36.50659,4.837 703,535.72144,311.2799,144.73523,340.32788,4.815 703,282.14206,212.03076,20.361603,28.873276,4.808 703,623.1642,-34.738724,26.188965,75.81103,4.777 703,-5.702536,285.139,18.09312,35.545807,4.773 703,-4.362685,316.49524,15.225348,34.060333,4.721 703,273.59863,211.55667,20.949005,29.999847,4.715 703,17.281435,181.32784,20.648794,45.686157,4.678 703,626.86304,40.204388,16.602478,51.506718,4.661 703,3.5354562,-15.760847,15.808815,38.968483,4.654 703,292.1787,205.90428,16.143219,24.686295,4.624 703,477.388,227.67499,15.435974,23.659958,4.566 703,4.879055,166.8581,14.467266,31.319717,4.548 703,43.371197,176.18756,29.207745,64.86032,4.548 703,494.01645,227.89496,237.00534,514.3167,4.542 703,492.26636,226.58035,16.568756,24.31749,4.519 703,100.87163,25.08963,41.055725,71.02692,4.485 703,604.6777,221.30768,27.33319,55.191193,4.467 703,461.31284,215.65295,12.7968445,25.386414,4.438 703,532.382,221.73463,18.03601,32.251617,4.424 703,10.675289,310.1732,18.548729,32.659515,4.413 703,270.12753,189.73611,11.958221,24.324402,4.405 703,115.0729,187.06226,19.209908,42.838074,4.405 703,67.83986,183.82828,15.216415,33.53012,4.391 703,4.0218234,358.649,14.868597,29.237213,4.362 703,299.85382,202.10825,15.64801,26.328705,4.356 703,405.13287,217.09128,14.8905945,26.292587,4.347 703,617.9383,206.4358,17.999878,40.798843,4.314 703,44.749546,178.35822,17.729057,38.46347,4.288 703,20.13321,347.02704,18.083092,28.597992,4.278 703,547.80414,214.78754,14.867065,26.05951,4.271 703,437.2864,215.27574,12.625122,27.531616,4.244 703,-5.4322586,188.44084,18.599533,46.60013,4.235 703,541.4836,214.39352,14.5199585,25.439453,4.213 703,595.5967,-45.105312,42.969727,102.69115,4.21 703,-4.6213684,363.88394,14.943887,31.967163,4.173 703,364.4265,217.61249,15.995422,30.680237,4.167 703,-4.174993,333.03497,15.575729,35.218536,4.164 703,233.83157,219.45381,19.70105,27.384201,4.152 703,262.4194,189.11885,11.953308,25.10933,4.15 703,485.1798,216.52599,14.078125,23.624496,4.136 704,584.51587,227.06306,23.98352,54.05336,8.543 704,-5.274024,-16.97237,16.992592,41.768402,7.516 704,508.56186,247.79597,32.098175,66.05003,6.996 704,68.71533,177.57428,27.743645,56.594147,6.885 704,553.67096,220.73633,20.469421,49.935272,6.766 704,97.42779,186.30908,31.262093,60.165054,6.742 704,567.1418,219.96773,27.03302,68.38609,6.643 704,-8.693292,465.5354,37.27621,90.25653,6.438 704,256.24567,215.92854,21.185272,35.29872,6.361 704,621.825,477.06595,28.687927,67.43948,6.211 704,0.693202,176.66194,24.521545,74.3943,6.132 704,627.36597,-17.679415,16.975525,45.794163,6.022 704,-6.018795,488.95963,18.583477,42.498016,5.962 704,363.1225,233.7297,18.435425,40.825348,5.918 704,557.8961,218.37247,26.668823,60.774017,5.882 704,603.4384,-56.289635,52.88568,138.6048,5.863 704,78.04213,-32.620564,51.07228,81.709206,5.81 704,50.13925,268.121,34.714943,56.76474,5.737 704,498.5963,237.27916,19.967224,37.364487,5.727 704,86.06442,182.46175,30.4402,56.55443,5.726 704,74.45122,247.14984,36.388153,48.017456,5.707 704,-11.426155,-31.474264,29.727093,71.94905,5.58 704,27.055471,188.52629,31.14911,75.45152,5.547 704,250.69313,221.94887,19.448013,32.828873,5.464 704,293.25137,210.22803,14.431488,22.583817,5.33 704,-4.5925503,167.65991,18.184553,49.248596,5.215 704,583.1288,413.36752,71.691284,175.2402,5.211 704,-21.45462,404.0948,78.6218,174.52454,5.201 704,547.6493,228.79555,18.520447,44.254562,5.192 704,623.55743,-35.074963,25.841309,75.55835,5.178 704,-72.90602,264.5368,201.38481,462.7741,5.126 704,-16.773802,-61.20614,55.99465,144.39714,5.11 704,535.7003,310.26385,144.44708,340.84442,5.093 704,73.136314,251.23462,22.301384,29.543884,5.087 704,99.07943,242.95515,33.934746,54.337845,5.06 704,403.36246,238.54425,17.94522,33.81256,4.963 704,4.9419785,191.90219,28.529099,73.62457,4.956 704,265.1603,216.38724,20.434875,33.08992,4.948 704,420.83084,226.29749,14.170502,20.114014,4.944 704,274.5286,216.5788,19.568298,32.931396,4.902 704,3.5064638,-14.833777,16.00194,39.230476,4.888 704,160.9389,220.66931,34.859467,79.86865,4.857 704,80.35466,185.73396,24.286362,42.90924,4.822 704,-38.413727,-120.36535,118.01959,268.56152,4.765 704,412.31403,225.58885,14.912476,22.108078,4.759 704,300.55942,208.49715,15.441315,24.028702,4.726 704,410.9352,238.88148,18.631317,32.111557,4.724 704,478.42627,229.3135,13.063049,23.427795,4.7 704,365.30475,235.40775,27.299377,70.39551,4.673 704,487.89575,103.25415,31.88855,75.47717,4.647 704,308.59128,203.64423,16.206268,26.776672,4.646 704,485.96585,229.92381,14.430267,26.006653,4.606 704,96.093735,249.06215,23.019135,31.862534,4.588 704,-4.4948945,214.18892,17.258028,42.553787,4.572 704,494.1362,230.28639,237.20425,511.6281,4.529 704,-15.532179,156.7088,48.867287,135.80072,4.519 704,88.391846,256.09314,23.728561,30.601349,4.502 704,429.09186,219.3727,14.792419,20.725708,4.456 704,104.83712,266.75192,22.950905,33.91104,4.448 704,428.15375,209.62436,16.64264,24.782837,4.387 704,402.98306,223.20505,16.61026,26.537964,4.383 704,396.1566,237.31317,17.786835,36.028076,4.37 704,519.6619,248.55078,22.544006,45.591187,4.361 704,141.22154,190.15833,16.274902,33.80748,4.353 704,64.93181,218.12006,36.426163,59.59845,4.349 704,282.64117,218.0908,19.227753,31.091492,4.334 704,436.0719,208.86424,16.403625,25.898438,4.322 704,-6.788644,248.50563,19.039055,38.919632,4.308 704,123.85022,242.00763,30.374924,57.5235,4.289 704,458.50674,266.78232,20.072601,29.485626,4.288 704,220.99655,168.8275,15.15947,27.857117,4.279 704,63.61767,257.33975,24.35688,31.109222,4.273 704,577.1207,221.4508,23.327942,51.502533,4.265 705,-5.8695817,-17.471851,17.902369,42.454823,7.085 705,603.2515,-55.291534,53.248047,136.5228,7.041 705,-11.775136,478.54855,29.779,62.611603,6.243 705,427.46338,264.34436,29.422943,62.58737,6.2 705,440.15964,215.64526,21.898346,36.999146,6.176 705,627.315,-17.822618,17.088074,45.767746,6.046 705,-4.137994,200.41483,16.516937,40.279037,5.929 705,363.84915,224.45479,17.516571,37.926163,5.87 705,-6.0277586,489.3708,18.587193,41.760254,5.796 705,104.28226,239.96689,37.64299,50.92798,5.768 705,612.65027,456.29132,39.587646,105.469666,5.606 705,394.94525,246.93497,28.952515,54.41156,5.575 705,-3.9949427,157.75328,15.461552,35.98352,5.569 705,483.9514,226.95497,16.380157,24.767258,5.489 705,2.4314837,199.47478,17.794888,40.863403,5.438 705,131.24696,213.87459,36.210434,61.886154,5.395 705,-12.529037,-40.497528,41.350273,100.68302,5.363 705,250.5567,220.72519,19.69635,35.095352,5.318 705,482.99435,214.52618,17.68747,24.216522,5.296 705,255.8877,214.44286,21.96991,36.16353,5.291 705,626.5857,488.35104,20.667175,45.795624,5.29 705,-73.04308,265.08118,201.0907,463.2246,5.236 705,492.93634,257.6521,16.402924,25.85263,5.18 705,623.4066,-35.01871,26.070862,75.35708,5.167 705,583.6468,412.11832,71.03589,176.25931,5.138 705,-21.457691,404.04547,78.69069,174.17139,5.056 705,2.6100206,183.16899,18.867981,40.81273,5.038 705,154.21793,213.07373,34.191803,67.64447,5.018 705,-17.126295,154.5924,50.29322,131.75342,4.989 705,347.49377,211.17442,17.085052,39.05046,4.97 705,507.90927,259.3481,16.301544,24.322815,4.858 705,379.62357,219.16995,15.093536,31.875793,4.818 705,-4.383657,171.59296,16.551992,41.59027,4.813 705,-4.9890194,215.69771,16.6737,37.59529,4.807 705,3.5247188,230.00366,16.853813,31.131012,4.778 705,-4.1394515,132.84555,16.182873,38.767563,4.759 705,476.1443,228.39275,16.426239,24.147568,4.726 705,344.1631,186.15189,20.463043,41.93727,4.644 705,475.4563,214.46635,17.634033,24.653946,4.639 705,181.27104,208.78918,30.881454,70.64453,4.604 705,536.43506,312.18265,143.40735,340.7087,4.575 705,11.250181,229.73021,17.366962,29.12114,4.545 705,51.200798,164.62286,17.976974,36.574203,4.499 705,293.13852,201.74277,14.283234,22.426651,4.496 705,570.28613,249.19981,19.10437,26.659561,4.441 705,340.5496,204.50227,17.26419,38.29094,4.438 705,493.13968,228.20856,237.56003,513.96155,4.419 705,500.51794,258.569,16.11316,24.755615,4.406 705,492.22012,227.66591,16.478851,24.988144,4.373 705,46.888176,175.36325,26.744675,59.34987,4.367 705,1.5631127,213.46088,40.813297,88.231384,4.36 705,138.36261,231.9869,35.326385,54.413437,4.295 705,559.3035,-127.84265,117.26752,274.67902,4.266 705,129.5988,198.40605,23.175812,41.54315,4.264 705,555.7052,233.15775,18.103333,24.4516,4.242 705,-19.65373,-88.17495,70.53213,199.90315,4.242 705,562.6761,249.98479,18.494507,25.801254,4.231 705,264.66318,216.39157,21.477783,33.918762,4.227 705,281.97528,216.30783,20.500366,32.700394,4.226 705,491.65744,215.6683,17.229156,22.892166,4.223 705,273.78583,216.34682,21.237732,33.759567,4.222 705,9.590385,200.99506,19.755182,39.71106,4.198 705,508.41907,253.60313,13.94928,20.756332,4.158 705,-37.813225,-124.77017,117.42612,280.68124,4.151 705,268.20294,207.0284,30.868652,54.169388,4.151 705,500.32883,246.63406,14.95993,21.974976,4.131 705,118.597725,240.68102,26.232964,32.59523,4.113 705,210.19753,210.55347,19.690353,31.067657,4.073 705,562.8782,239.90128,18.057312,23.748322,4.056 705,371.04062,219.08742,16.407532,34.527924,4.055 705,619.39954,205.35913,19.204529,47.713806,4.055 705,7.219689,174.93146,26.333393,62.39392,3.996 705,189.2527,200.96925,14.905853,25.152527,3.991 705,285.3806,209.34589,15.416992,21.84523,3.989 705,355.52414,214.30116,17.678925,39.393356,3.986 705,570.2419,238.88376,19.24591,24.914062,3.953 705,135.88342,247.49411,26.048111,38.50714,3.945 705,499.58948,227.0415,17.369751,26.39119,3.937 705,518.78107,91.885315,32.583008,76.58621,3.933 705,483.71228,263.84164,19.19934,33.62262,3.929 705,187.1686,202.27786,20.51503,38.19101,3.927 705,507.6137,240.12912,15.26532,22.35733,3.883 705,5.737747,469.5188,37.542267,92.51013,3.881 705,3.0434818,-16.99029,17.691118,41.54982,3.857 705,218.2852,218.47035,18.804214,26.278793,3.853 705,4.7233152,161.39372,15.788178,34.166992,3.842 705,34.520653,162.519,18.456295,36.500595,3.84 705,515.90344,260.13327,16.627808,25.397217,3.829 705,129.2322,219.34286,21.802155,36.150024,3.825 705,242.7258,223.32857,19.134521,29.356369,3.806 705,114.423355,207.09369,34.47644,60.75415,3.798 705,555.49304,252.57053,17.11206,23.62445,3.79 705,66.60696,174.02515,18.18541,42.66092,3.783 705,563.305,238.71317,41.183228,81.129486,3.782 705,-4.5164948,286.49985,14.471331,32.65042,3.776 706,547.5715,205.85881,35.50415,59.906113,25.052 706,622.6916,-33.470104,26.161438,75.794044,8.004 706,-5.3864746,-17.070477,16.809921,41.70038,7.841 706,616.41425,195.33768,24.224121,87.73593,7.571 706,626.6546,-16.815338,17.400635,46.18103,7.553 706,393.9017,251.74652,19.694214,40.53894,7.441 706,-6.0959234,489.00958,18.802448,42.630615,6.911 706,-11.771891,478.34042,30.119629,62.860016,6.641 706,-11.279292,-31.203934,29.271828,71.73369,6.456 706,346.41467,208.79535,19.247925,42.832336,6.213 706,622.09814,478.90878,28.381592,65.38095,6.082 706,193.6904,210.23601,30.86345,68.859085,6.028 706,163.90205,209.66458,36.9758,63.14035,5.93 706,536.9364,211.2891,25.360107,47.036163,5.873 706,-3.700035,170.75842,16.260183,41.3414,5.735 706,128.70966,234.80096,37.019226,51.403564,5.563 706,-72.986465,265.0307,200.75995,463.1844,5.27 706,3.8769264,161.41873,16.651907,36.922287,5.187 706,-17.483776,438.89178,55.14378,137.79071,5.172 706,450.3726,163.21141,20.178192,46.103287,5.141 706,618.60785,-16.55132,17.805542,44.40893,5.117 706,-16.79335,-63.418777,55.09057,146.76695,5.103 706,353.7701,210.63031,19.663422,42.767242,5.098 706,583.5918,412.77985,70.98407,175.8648,5.073 706,545.7693,203.78954,24.420166,45.23207,5.042 706,615.14154,-17.970213,26.987488,69.68264,5.002 706,602.765,-54.166885,52.811035,130.88908,4.938 706,-39.61856,369.0373,109.533295,273.5766,4.826 706,154.66127,223.98221,36.083725,54.632904,4.735 706,436.01132,155.62056,28.46228,67.38025,4.726 706,3.4736264,-15.056854,15.76839,39.389988,4.711 706,200.95442,206.9307,21.489517,36.00049,4.691 706,536.23206,310.80597,143.38635,342.24103,4.69 706,420.2691,254.1289,28.779999,59.865784,4.626 706,384.74673,233.7213,25.61905,58.622513,4.617 706,434.6383,170.46011,20.282684,46.22032,4.616 706,516.77496,204.44038,17.648743,37.069397,4.602 706,-17.140415,155.3646,50.706673,131.03018,4.571 706,501.49023,197.9812,13.868042,26.407349,4.5 706,298.68228,207.93803,19.041992,32.02983,4.477 706,131.13858,116.40594,18.764877,32.970665,4.476 706,619.2814,490.4471,19.617676,42.12735,4.467 706,558.5764,213.5021,34.96045,69.35452,4.458 706,1.5341097,213.01295,19.063562,33.106995,4.455 706,250.12231,216.59105,18.696259,29.566483,4.417 706,1.549418,210.41983,41.531902,94.34888,4.413 706,395.32864,223.74838,18.005249,39.59787,4.413 706,522.0174,226.41142,20.329468,40.922348,4.403 706,339.95825,206.7159,18.931824,37.9001,4.401 706,-2.9327915,151.98701,14.678384,35.223587,4.384 706,-37.036972,-124.71343,116.24726,283.35257,4.371 706,116.31707,183.05054,17.468819,40.1763,4.341 706,493.3336,228.31277,237.58066,514.3087,4.329 706,2.3489003,241.67165,19.644703,33.37401,4.317 706,459.57025,162.29567,18.480957,47.05696,4.307 706,355.9265,178.77896,16.536743,39.185028,4.299 706,387.8322,214.70674,17.089935,39.613373,4.243 706,-5.067643,192.62453,17.444645,38.920807,4.227 706,515.07635,213.99573,39.61609,77.60986,4.206 706,361.75568,213.08435,18.499695,42.50467,4.204 706,5.2478194,468.92966,38.123413,93.04953,4.196 706,578.9355,203.89378,20.1922,37.188736,4.183 706,-5.227813,298.40973,15.656471,39.050476,4.179 706,379.67175,217.93004,16.341248,37.68898,4.119 706,333.33237,214.66208,16.709747,32.420013,4.113 706,461.36176,259.72205,15.885834,29.365845,4.099 706,593.44244,202.2229,19.12091,37.863388,4.074 706,372.49173,234.32544,16.410522,37.756958,4.038 706,137.02066,218.98767,36.97142,54.924927,4.01 706,-6.233073,215.30064,17.624207,37.04976,4.009 706,178.47673,212.22763,34.779785,69.50549,4.004 706,468.78595,261.07327,16.463104,28.454376,3.941 706,543.7466,195.8697,47.83435,105.06242,3.915 707,429.8898,210.13364,16.769592,34.927536,15.59 707,508.5014,195.10712,18.2099,41.872025,9.358 707,622.7939,-34.16421,27.01532,76.09733,7.726 707,-5.470717,-17.439932,17.00683,41.411655,7.518 707,202.64418,211.34082,29.275192,61.38611,6.991 707,622.36176,477.949,28.315735,66.78189,6.503 707,425.28247,203.66592,24.91919,57.720978,6.497 707,-11.254982,-31.061409,29.36031,69.90441,6.398 707,338.6742,214.82571,18.274475,33.611862,6.363 707,-8.790318,465.28705,37.411697,90.95184,6.037 707,393.3081,250.43054,18.910645,38.544556,6.026 707,417.31427,257.2945,28.426819,56.78427,6.015 707,249.65257,210.4116,21.00972,30.877792,5.784 707,347.43512,219.82593,17.605957,35.964462,5.779 707,-5.9897447,489.05893,18.397392,42.03354,5.674 707,626.5737,-19.394428,18.599243,47.48933,5.644 707,385.03986,231.03868,24.911652,59.493393,5.549 707,371.83597,222.30583,17.756683,45.100235,5.498 707,179.88293,206.2888,32.614,64.465836,5.496 707,450.77206,203.95808,19.340546,42.005447,5.321 707,523.1831,197.99654,18.04181,37.344864,5.31 707,-72.80447,265.6672,200.46155,462.5325,5.193 707,602.3075,-57.97378,53.203247,132.35536,5.13 707,20.21488,155.26886,28.867373,69.05211,5.115 707,282.5189,217.93816,19.855408,31.073044,5.112 707,355.23862,218.98328,17.280792,37.757263,5.0 707,-16.7042,-63.807045,54.956024,147.25697,4.992 707,-21.46709,403.78894,78.718124,174.36841,4.99 707,583.639,411.8637,71.15033,176.8222,4.973 707,613.19775,-21.520676,28.770935,69.356346,4.97 707,617.28827,93.33423,22.303955,58.10614,4.965 707,374.48584,217.46939,26.169434,63.658722,4.953 707,593.63165,-46.538017,45.02838,94.50625,4.924 707,159.09218,212.012,24.038544,36.93274,4.905 707,308.20825,192.7728,17.195435,33.08174,4.835 707,532.3573,197.14597,16.873169,36.817398,4.745 707,307.69592,215.32925,17.0141,28.524063,4.705 707,153.17598,209.81284,36.086792,57.14505,4.681 707,3.5655296,-15.470549,15.675834,38.347717,4.662 707,-4.4132595,285.64456,14.760025,34.303406,4.628 707,332.8375,221.5112,17.783356,30.881714,4.618 707,536.491,311.74738,142.59882,340.5141,4.607 707,343.1586,215.53665,26.603943,57.261444,4.561 707,-4.861173,166.0521,18.266853,48.970917,4.55 707,116.88477,191.39395,14.871025,32.689224,4.531 707,477.182,155.63559,24.235718,59.732513,4.476 707,108.31039,191.59848,15.657738,33.26631,4.467 707,442.8025,205.31084,16.838776,33.7744,4.463 707,316.13272,216.04857,16.970245,26.937408,4.421 707,277.00977,205.97253,29.192352,54.928314,4.419 707,130.12637,218.19975,33.791016,62.097305,4.39 707,124.58444,193.60686,15.720764,32.737625,4.389 707,299.5799,216.45358,17.619263,30.164536,4.382 707,493.04297,227.47806,237.72961,514.21594,4.346 707,233.87015,218.25374,20.27246,32.078674,4.345 707,-36.758648,-125.89318,116.0412,285.77213,4.34 707,340.46756,226.6213,17.441498,34.15793,4.285 707,144.43767,232.02695,37.032333,52.96048,4.227 707,514.2355,-18.05735,18.892883,42.222103,4.198 707,586.53143,-102.01094,75.29254,238.09775,4.18 707,457.83432,153.73807,20.780975,47.07689,4.163 707,546.1785,195.29324,18.979126,39.60759,4.157 707,539.30176,197.44196,16.934753,36.025253,4.102 707,-5.3717804,213.42447,16.58687,39.23123,4.077 707,-4.4265604,133.31868,16.288952,40.244125,4.07 707,586.25055,-18.25407,18.521729,41.813793,4.058 707,119.24263,218.805,31.4422,57.23633,4.029 707,162.09329,225.98773,35.446976,53.673218,4.021 707,335.32068,210.82138,26.254578,53.594513,3.988 707,466.05542,282.6315,21.102509,45.46524,3.972 707,-5.127178,145.67537,17.616974,46.633453,3.971 707,7.489152,150.3091,27.600128,77.178635,3.95 707,265.04776,209.76776,21.177856,31.999481,3.947 707,242.78535,217.83565,19.696365,30.175797,3.936 707,3.3499289,131.05377,16.466797,35.081436,3.919 707,290.36624,215.78676,19.406586,32.220764,3.917 708,503.53754,217.41182,21.835022,43.76396,17.29 708,470.08362,211.0425,23.532532,46.277023,12.874 708,355.01703,224.31451,19.100708,41.07138,11.38 708,396.57333,232.88481,27.249481,69.22255,8.716 708,-5.549953,-17.619713,17.069054,41.559124,7.692 708,-6.330843,488.7265,18.905235,42.804565,6.533 708,-12.186028,477.41525,30.529633,62.955475,6.464 708,627.03314,-17.556492,17.567566,46.83908,6.273 708,-11.305307,-31.17075,29.371096,70.05682,6.245 708,475.05203,212.21425,29.959106,56.07225,6.019 708,622.0556,477.98822,28.759949,66.28412,5.941 708,399.7675,224.41133,23.277893,48.309708,5.926 708,622.7699,-33.363533,26.459839,76.59277,5.745 708,548.71985,487.85934,31.40448,55.131073,5.655 708,381.33008,213.19748,13.838074,28.29303,5.644 708,602.6388,-57.561928,54.05139,136.35666,5.555 708,377.7045,223.65422,20.536163,41.320908,5.445 708,455.96674,211.6399,30.964111,57.19214,5.432 708,-17.219658,-66.36983,55.107582,150.00774,5.345 708,604.29987,435.21893,54.53015,138.50232,5.288 708,-73.04452,265.53168,200.8165,462.5971,5.211 708,380.77844,221.8364,28.110687,65.71329,5.023 708,-21.556723,403.19592,78.7113,174.67102,4.994 708,207.5304,226.54102,21.428223,45.17993,4.948 708,487.997,216.28854,25.171265,46.295807,4.921 708,3.6841607,-15.679268,15.691797,38.38999,4.899 708,-4.769923,152.34836,17.421036,43.740448,4.788 708,437.19897,268.6344,28.38974,61.82733,4.703 708,530.68933,-15.654367,17.414124,40.262638,4.674 708,180.52484,208.13196,31.304932,64.40466,4.547 708,536.7074,311.97192,142.97577,338.79218,4.541 708,622.00256,170.20093,12.767334,31.83908,4.532 708,522.5903,-16.47211,17.1651,41.02974,4.504 708,594.07983,-48.24852,44.8385,99.450615,4.496 708,522.6156,220.84663,20.070923,39.410416,4.433 708,360.1701,228.23973,21.012177,44.328537,4.365 708,493.92365,228.06195,236.92078,514.7006,4.358 708,538.44617,-16.852818,17.490845,41.336956,4.353 708,-4.3913326,172.38336,17.165768,47.18976,4.345 708,509.2525,211.4385,14.9939575,25.307327,4.253 708,153.31078,210.70236,35.5598,56.22238,4.22 708,561.1641,491.90143,21.052673,40.45056,4.131 708,1.8855506,489.9266,19.770596,41.341278,4.119 708,-10.068859,144.66711,27.958118,71.40277,4.107 708,299.63812,189.38028,19.085632,35.48085,4.092 708,125.76203,196.50055,29.06446,60.96167,4.067 708,-16.660263,152.21042,49.718422,135.17197,4.018 708,557.3704,203.4064,29.670532,60.994385,3.989 708,516.3587,-16.828259,30.951538,67.959404,3.986 708,3.94709,225.04303,15.635155,29.129822,3.984 708,275.40887,198.73767,15.168396,24.044022,3.968 708,1.3388205,211.3824,41.368042,93.78624,3.94 708,269.4143,194.77069,12.574341,23.939514,3.937 708,265.23053,211.43347,21.937378,30.378326,3.93 708,408.43286,223.55597,20.756226,44.07715,3.926 708,121.69923,201.57297,22.201439,42.685074,3.922 708,-37.539066,-126.12205,117.185,285.7354,3.916 708,619.2054,-17.643166,17.86499,43.441864,3.88 708,11.24782,-16.227375,15.732475,37.74929,3.862 708,545.7951,490.7713,21.986633,41.445984,3.857 708,-5.200693,232.47302,16.321362,35.760498,3.849 708,261.53378,194.97672,12.805847,24.508331,3.824 708,466.3813,221.47008,41.546448,89.79164,3.817 708,386.1377,217.99858,19.212158,36.785553,3.789 708,515.92993,213.23389,16.160156,31.053818,3.787 708,-5.1965857,282.53586,15.473826,36.22464,3.783 709,609.3692,216.82227,23.691772,57.477478,42.736 709,515.6156,206.89854,18.634338,48.12474,35.718 709,575.6908,220.61377,21.954285,53.149323,22.66 709,601.8264,222.31439,23.004028,49.10205,22.293 709,593.6116,216.9501,23.025024,49.241974,14.599 709,481.39926,207.34781,22.857452,55.72888,11.01 709,584.5417,215.21591,22.72528,52.835663,9.39 709,626.12714,222.19623,17.787659,48.477966,7.712 709,408.35727,261.91895,25.360565,47.556885,7.478 709,-5.609532,-17.76234,17.169176,41.8284,7.064 709,623.4069,-33.133053,26.238525,76.38541,6.821 709,616.7513,234.27293,19.859253,48.676956,6.705 709,-12.260134,-42.496716,40.73343,104.90817,6.653 709,547.00195,213.29085,15.337097,37.31807,6.404 709,197.77718,211.4625,27.60875,61.652252,6.309 709,540.1582,211.18668,16.519226,39.817078,6.232 709,-11.833897,476.8296,30.100826,63.955505,6.072 709,449.5771,206.80188,17.367554,33.33423,6.013 709,383.20886,247.62875,23.383911,44.893677,5.982 709,626.67194,487.62653,20.50177,46.036804,5.747 709,627.08203,-18.033005,17.801453,47.429497,5.73 709,617.9582,212.1022,18.838135,46.468536,5.729 709,613.11536,455.15097,39.023865,106.88992,5.72 709,373.8391,206.51476,14.641998,31.240189,5.642 709,241.13397,216.12305,21.387634,33.345108,5.451 709,-6.0415573,488.98972,18.660622,42.27939,5.35 709,394.28653,209.86008,16.326508,30.244125,5.328 709,-73.080765,265.5047,200.92984,462.63043,5.199 709,417.96222,209.1303,17.360046,34.59973,5.152 709,566.5591,229.99434,19.789124,39.26204,5.124 709,-4.3436832,170.94154,17.917215,45.263092,5.098 709,530.27295,209.00063,18.205078,42.198242,4.994 709,-21.433525,403.42868,78.75819,174.70877,4.982 709,583.3255,412.51996,71.32837,176.0932,4.971 709,602.806,-57.48236,53.656433,138.99481,4.95 709,387.9332,211.86023,17.395172,32.008423,4.93 709,262.1805,195.14122,12.137543,21.617325,4.906 709,-16.764849,156.5453,49.75048,126.78664,4.897 709,535.5567,309.341,144.63983,342.45013,4.885 709,619.2552,-18.895428,18.106873,45.81665,4.837 709,445.39474,212.5095,17.06485,33.93596,4.823 709,506.4198,205.62358,26.019592,66.70564,4.802 709,1.2978458,176.72717,19.607136,50.48575,4.801 709,598.9965,220.94783,34.923767,93.24065,4.785 709,570.84534,231.83083,32.60486,59.349777,4.672 709,254.3763,195.05035,11.784836,22.227692,4.598 709,619.14575,200.49092,16.960938,36.87668,4.56 709,1.9695711,211.69186,40.216637,88.457855,4.56 709,493.9402,228.64874,237.45685,513.84265,4.548 709,-4.4718914,47.552364,17.900993,47.32874,4.546 709,268.91486,193.26193,12.855133,21.913834,4.492 709,3.430925,-15.907525,16.015009,39.370876,4.479 710,461.36456,212.73419,24.706879,43.93457,22.761 710,600.1395,200.34344,24.590027,74.875244,22.117 710,622.6199,-32.706978,27.514893,76.2995,8.638 710,626.8606,-20.243677,18.160645,50.35466,7.938 710,-5.5532427,-17.46583,17.05732,41.469955,7.17 710,-12.212768,478.12128,30.79992,62.407898,6.867 710,614.2693,194.86963,23.24176,78.188965,6.819 710,102.390656,207.60553,24.440842,36.485977,6.665 710,618.7173,-20.70305,19.260681,48.5148,6.569 710,-6.3882713,488.7397,19.130768,42.99292,6.489 710,394.96518,210.67162,18.589813,34.36,6.271 710,530.41406,216.98923,19.419312,44.536255,6.262 710,533.90826,220.97096,27.356445,66.14378,6.189 710,626.8853,487.9436,20.160217,45.797302,6.085 710,585.64935,206.34386,26.345337,67.60451,6.059 710,-11.283177,-31.126442,29.321198,70.544266,6.026 710,273.61316,211.17061,19.691803,29.39856,5.985 710,613.0048,457.0441,38.50116,104.22623,5.698 710,-3.0678148,156.83691,15.588023,37.95076,5.654 710,266.12958,211.237,20.2052,31.052597,5.634 710,602.14307,-53.71192,53.1239,129.57312,5.528 710,3.9405494,161.24026,15.750977,36.759933,5.506 710,-73.30177,264.44498,201.27821,463.56393,5.307 710,583.5268,413.24823,71.13898,175.17523,5.266 710,610.25446,-18.60273,19.677917,44.147087,5.252 710,-2.560217,144.72086,13.289725,35.194656,5.102 710,314.0707,210.23532,20.667755,39.42697,5.087 710,428.97812,209.06294,16.25653,33.966095,5.017 710,537.90076,224.60458,18.103333,42.76413,5.003 710,395.12482,184.0656,19.968536,46.753952,5.0 710,-16.618727,-63.460094,54.89913,146.62653,4.989 710,-21.472551,403.80655,78.74693,174.32993,4.979 710,247.97253,219.10944,20.966614,34.51596,4.927 710,521.35736,13.408936,33.059082,79.92134,4.924 710,3.7373023,224.63174,15.677311,29.057983,4.907 710,521.0169,221.88179,27.781677,61.848984,4.886 710,180.78859,209.94353,31.283478,61.513138,4.858 710,-17.6484,155.72885,50.60293,130.46536,4.845 710,536.07043,311.08948,143.91016,341.05298,4.802 710,594.12427,-42.657303,44.667908,93.66937,4.79 710,204.25818,214.07846,28.37526,59.759125,4.774 710,597.44336,205.4947,18.538269,41.53575,4.773 710,269.7339,196.06168,12.09668,21.628815,4.748 710,1.8914318,216.54947,40.461555,83.18564,4.703 710,3.4948695,-15.473263,15.808294,38.59881,4.55 710,262.33813,195.17479,12.450867,22.398514,4.53 710,628.55524,157.21516,15.458496,41.7498,4.52 710,410.24197,214.69084,20.019714,34.155914,4.511 710,586.0257,-98.05711,74.92279,229.61775,4.508 710,493.63348,227.8194,237.41742,515.50055,4.439 710,27.88477,172.75926,16.24506,33.374588,4.426 710,277.31644,203.8852,12.351044,21.475784,4.393 710,619.0192,489.69885,19.648315,42.790527,4.366 710,623.7873,203.72745,24.931458,76.90936,4.353 710,-4.3843894,175.53728,16.744188,43.268448,4.351 710,10.570595,172.52464,18.398207,43.184906,4.339 710,620.7256,159.40576,14.912598,36.010666,4.297 710,254.22905,187.33426,12.755447,23.227386,4.254 710,-37.408127,-123.88337,116.125175,282.89737,4.251 710,470.6293,224.57501,23.144196,38.992126,4.251 710,597.102,217.58914,39.036438,96.95758,4.235 710,291.2612,211.53609,17.248138,27.348343,4.221 710,572.67566,228.23755,16.946777,35.487183,4.22 710,17.213741,217.31985,43.411873,73.772064,4.219 710,601.79944,-18.570549,19.161926,42.37047,4.196 710,284.09335,212.74965,16.940002,25.730728,4.193 710,2.9395776,240.85278,17.508791,30.722534,4.192 710,594.1903,-17.536345,18.651001,41.415054,4.156 710,-8.908379,152.14407,26.596327,65.24286,4.152 710,5.518793,468.26447,37.928345,94.23944,4.091 710,20.012415,170.17067,16.55033,37.244324,4.042 710,5.477109,152.6843,12.631286,29.01445,4.02 710,34.083504,219.39395,43.23516,70.67325,4.012 711,543.4203,213.97249,21.68982,51.01158,85.787 711,593.29456,206.46782,17.747986,39.46489,11.95 711,566.70764,211.82816,27.28424,61.767883,9.335 711,-5.5445127,-17.382397,16.94728,41.350742,7.571 711,626.9718,-17.147375,17.82544,44.984844,7.308 711,622.87006,-33.287285,26.7016,73.90516,7.056 711,548.1435,219.5779,29.844482,60.70616,6.974 711,-11.896443,477.90894,30.121235,62.904785,6.607 711,-11.182041,-31.13138,29.10677,70.038956,6.332 711,-6.1558943,488.83423,18.800314,42.94806,6.104 711,-4.106444,169.04167,16.977524,46.159378,6.088 711,621.82837,477.99692,28.851868,66.89255,5.945 711,-16.909046,156.06198,50.522934,130.91531,5.698 711,603.01465,-55.833923,52.762085,132.26851,5.629 711,426.95712,202.59265,21.636505,47.604797,5.582 711,603.6406,435.02136,54.8714,138.54028,5.44 711,-16.70109,-64.259125,54.943756,148.43916,5.217 711,-4.1910357,201.17325,18.070229,42.271973,5.173 711,-73.07845,264.9517,200.98349,462.95358,5.173 711,-21.265612,404.47028,78.51218,174.01971,5.096 711,209.98859,215.3787,23.92865,50.52182,5.029 711,489.77582,204.39969,19.944489,41.47258,4.966 711,446.61652,206.44527,21.48706,46.165558,4.956 711,618.76715,-17.026596,17.522034,43.103016,4.943 711,585.03455,-96.30413,75.08966,227.20532,4.935 711,3.6030388,-15.43602,15.609718,38.160286,4.894 711,-2.3003812,151.84314,14.07679,37.70018,4.788 711,10.409479,166.97421,17.655176,41.36435,4.626 711,188.67119,212.90324,30.569717,59.948074,4.624 711,588.1954,208.23106,17.380432,46.1837,4.577 711,536.08606,311.456,143.94568,341.00378,4.56 711,-7.91648,158.45988,25.606335,69.87938,4.524 711,139.38771,190.40614,31.362625,65.524185,4.471 711,493.42474,227.75668,237.80621,516.23425,4.461 711,429.5522,174.62352,25.946411,72.5014,4.45 711,5.1408362,164.51532,15.162386,35.220856,4.427 711,578.3511,199.99924,19.546326,51.101913,4.395 711,2.5285416,218.8056,18.69334,33.995102,4.354 711,611.9601,-17.792767,29.148926,70.68021,4.231 711,-37.28005,-123.848045,117.00011,282.53372,4.213 711,2.9201257,239.88333,18.63762,31.424774,4.194 711,594.04126,-42.824738,44.058777,93.56485,4.176 711,5.564444,468.9591,37.54993,92.79358,4.134 711,1.4739418,220.55328,41.040005,77.78113,4.088 711,-5.3286276,220.23572,17.076698,38.64627,4.081 711,277.4318,196.18513,12.568024,22.346115,3.975 711,603.89075,27.951431,51.852417,142.20322,3.965 711,610.7192,-13.794601,16.990784,40.028587,3.936 711,467.14392,-11.153935,15.936493,37.025566,3.89 711,8.840809,183.86322,61.21854,95.74222,3.865 711,595.89215,24.691254,41.46814,105.923615,3.848 711,488.9499,-174.62491,234.01898,415.19333,3.824 711,459.3814,-12.588113,16.146606,36.60889,3.788 711,532.826,205.81178,18.217346,40.03328,3.764 711,442.60928,190.78299,18.843048,43.288742,3.752 711,426.7258,225.08603,18.950195,35.28763,3.751 711,588.1299,-17.097012,32.096252,69.96862,3.746 711,538.53076,-18.661304,18.095581,43.23439,3.714 711,-5.4867597,297.36993,16.463308,39.546814,3.657 711,376.45312,218.59787,22.158997,36.47986,3.643 711,300.60437,156.2588,16.982056,36.848984,3.623 711,11.07725,-16.106014,15.904087,37.99112,3.617 711,145.7495,115.8068,17.392075,33.186348,3.606 711,285.2773,195.52588,11.976654,22.654419,3.598 712,201.68661,211.05737,30.152222,65.161865,11.271 712,481.5274,207.03467,24.69162,54.93817,10.549 712,-5.4083242,-16.952457,16.839733,40.77776,7.611 712,622.184,-33.182957,27.041077,77.066345,7.497 712,626.6087,-17.627033,17.920227,47.83337,7.032 712,331.27753,193.63405,19.372375,36.4675,6.826 712,627.20984,488.66895,19.792053,45.197937,6.232 712,602.8286,-54.88069,53.024902,133.65457,6.044 712,-11.254901,-31.110718,29.187386,69.706314,5.977 712,-8.593907,465.70532,37.306927,91.18994,5.89 712,-6.0853624,489.1582,18.516308,42.088623,5.798 712,2.4884605,229.12703,18.336594,32.778458,5.587 712,614.197,207.36307,26.279175,82.49103,5.541 712,612.9461,456.82022,38.694885,104.94235,5.514 712,511.0893,209.70375,24.44696,54.335922,5.5 712,270.61258,196.16629,12.314636,22.226181,5.301 712,330.77417,215.25134,19.203918,38.107635,5.254 712,381.15515,186.38245,26.289581,58.323975,5.25 712,179.9617,209.03752,32.904602,61.983322,5.242 712,-72.66399,264.99872,200.43936,462.91888,5.22 712,583.6484,412.945,71.04718,175.71149,5.188 712,-21.456472,404.26587,78.75037,174.12701,5.1 712,-16.731863,-64.58722,54.96569,148.30887,5.092 712,89.0202,215.41982,21.966751,29.706635,5.064 712,613.61584,-19.10072,28.249268,79.24258,5.033 712,489.83624,-0.5726738,20.211975,55.416153,4.964 712,-4.290759,170.01064,16.20345,42.91388,4.937 712,153.1981,209.3372,36.103973,57.78386,4.895 712,614.5075,69.54201,25.134888,84.66365,4.882 712,619.1025,-17.346317,18.066711,46.676422,4.827 712,3.5712469,-15.056253,15.516655,37.658966,4.813 712,584.842,-96.9358,75.07538,229.68063,4.803 712,285.62833,197.73032,12.166443,20.914795,4.769 712,268.34283,206.79695,29.083405,43.648605,4.767 712,475.0908,-12.503286,16.697784,41.60192,4.694 712,-4.1065674,141.85458,15.580466,38.475525,4.687 712,495.1431,209.53403,22.426788,46.021027,4.642 712,291.85864,203.10355,14.745331,24.935379,4.629 712,277.8174,197.14024,12.502686,21.548096,4.596 712,536.1801,311.23322,143.48267,341.05048,4.566 712,594.75037,-43.689045,43.582275,97.39866,4.554 712,490.78384,-12.030049,16.598724,42.16519,4.517 712,114.04065,202.12358,21.06314,37.895447,4.498 712,284.97684,188.99365,12.220978,23.021149,4.485 712,493.27258,227.66306,238.06042,515.9238,4.453 712,568.6721,267.47626,22.529907,31.480072,4.428 712,546.2171,258.72327,35.38434,47.254456,4.411 712,494.50018,-0.2172699,27.921448,79.81406,4.341 712,-36.907093,-124.14488,116.923584,283.46106,4.295 712,469.70395,-12.289459,29.11612,65.95674,4.292 712,616.51215,106.67517,25.053528,84.719025,4.251 712,-18.692524,152.99193,51.71015,132.69325,4.246 712,162.34717,226.1391,35.587082,53.36801,4.242 712,-4.601048,207.49698,16.008234,33.705032,4.164 712,604.02966,-5.7435226,30.263123,82.99869,4.152 712,619.273,490.23407,19.41864,42.512024,4.108 712,433.11975,241.40802,22.888672,31.36908,4.078 712,3.399018,290.54947,19.35403,37.07553,4.064 712,130.1605,195.53168,30.634048,62.53824,4.049 712,489.26373,-175.84814,234.63434,418.58508,4.046 712,442.36984,-18.098112,18.385956,39.61962,4.019 712,560.39795,271.49902,23.9552,34.209045,3.998 712,562.8436,263.7735,33.712036,47.123627,3.982 712,478.08963,-31.967564,27.695953,81.1566,3.98 712,56.63534,215.91896,21.631237,27.210281,3.974 712,433.99646,-18.01526,19.172241,38.795753,3.948 712,482.61887,-12.028757,16.644745,42.0199,3.935 712,467.4848,-13.289898,16.525879,40.608124,3.929 712,327.93073,175.76071,27.059052,59.777145,3.923 712,1.0278106,218.05685,40.826103,81.40082,3.916 712,261.9644,188.2852,13.104248,23.99524,3.907 712,336.22797,183.53236,22.373657,40.837463,3.906 712,144.67258,231.16592,37.128036,54.297974,3.902 712,73.18338,215.41183,22.2995,29.75557,3.89 712,498.7004,-12.053097,16.55307,41.856182,3.878 712,290.1362,208.70178,20.353302,33.74124,3.874 713,533.2848,208.95348,21.955322,50.191055,67.152 713,334.79263,182.91507,22.966278,42.063446,16.299 713,598.1448,195.71536,28.968384,90.66287,8.153 713,179.16556,206.15314,33.38208,74.45227,7.373 713,-5.558196,-17.642914,17.112972,41.69114,7.268 713,621.5064,-31.028416,28.144958,76.43689,7.086 713,626.54626,-19.953024,18.278503,50.691906,6.465 713,-8.970586,466.1752,37.595875,89.79373,6.273 713,-11.310274,-31.576674,29.489937,70.501884,6.156 713,612.27454,-19.83041,29.96399,79.08561,6.101 713,626.7835,488.17206,20.276306,45.370422,6.014 713,614.243,10.967102,25.689453,95.48026,5.866 713,-6.094392,489.3245,18.303669,41.93112,5.81 713,2.22122,223.95155,18.360981,29.415543,5.614 713,1.5957236,215.14789,40.12666,84.32941,5.45 713,110.68442,229.92668,39.123856,49.045395,5.41 713,612.7448,455.36807,39.661865,106.16586,5.385 713,475.0526,207.26738,18.4292,26.561783,5.264 713,-72.976074,265.2163,200.77231,462.2649,5.157 713,-21.340942,404.6068,78.46524,173.6416,5.143 713,583.8866,412.84036,70.62561,175.18185,5.125 713,-16.787117,-64.01384,55.419415,146.68254,5.066 713,130.27701,204.33871,37.746292,61.30417,4.908 713,602.5648,-55.845108,53.239075,132.84624,4.895 713,273.66418,208.78868,24.041962,40.76544,4.715 713,617.88367,-20.356468,19.649414,51.557373,4.671 713,536.3906,310.78204,143.68512,341.8285,4.606 713,542.73517,208.9427,19.587952,46.481934,4.561 713,585.7739,-100.370674,75.96887,233.61148,4.537 713,284.0368,203.08466,13.638977,24.202698,4.529 713,278.3161,201.53406,13.183411,24.11168,4.518 713,147.56851,209.43927,36.14856,62.907806,4.509 713,-5.820856,216.85422,17.896675,36.12198,4.499 713,520.2312,212.18236,29.72461,55.611496,4.486 713,270.31885,191.97176,11.323975,19.838242,4.45 713,493.21204,228.14328,237.82062,515.2269,4.448 713,3.504458,-15.887096,15.789804,38.60054,4.424 713,482.03186,206.87332,18.936005,27.817337,4.377 713,293.99893,165.63628,13.427612,29.486908,4.351 713,601.9189,-17.57178,19.151184,48.11643,4.329 713,581.39545,-33.55284,28.47168,79.299484,4.294 713,-5.5390673,281.62326,16.67001,38.28839,4.263 713,-36.972336,-127.61622,116.37585,284.1815,4.254 713,614.5008,54.595055,26.170715,82.337746,4.222 713,132.8174,176.72192,32.243393,62.399338,4.199 713,467.62393,205.3791,18.506073,27.951569,4.178 713,594.2225,-44.787334,44.732544,94.70282,4.175 713,507.0293,204.64005,18.033691,31.98172,4.173 713,262.33252,189.84012,12.083527,21.518616,4.122 713,458.0345,211.25055,20.490662,30.856232,4.12 713,263.4532,204.2009,27.428375,49.820892,4.112 713,163.06839,206.468,33.63498,67.098465,4.06 713,395.96295,198.34454,31.94696,54.813065,4.047 713,-5.127869,232.20871,16.694822,35.085724,4.011 713,578.01276,-17.731441,18.267822,46.60074,4.003 713,379.4238,179.19385,18.18747,36.67131,3.996 713,5.655651,469.21436,37.77151,92.76868,3.967 713,2.337395,203.47408,22.384943,35.472794,3.94 713,9.29361,222.44429,19.446281,27.536942,3.934 713,-6.0904617,250.03249,17.390461,34.559677,3.917 713,-5.3534966,188.49078,18.048203,39.08484,3.912 713,332.73743,194.03702,29.51535,64.40335,3.907 713,109.455795,247.92079,27.16957,39.738205,3.903 713,342.37485,179.02184,21.857178,38.75145,3.873 713,596.46063,245.37811,29.212708,68.093506,3.871 713,278.51947,193.42162,10.477692,19.749039,3.865 713,489.51205,-176.20139,235.1019,418.29648,3.861 713,253.04861,203.12006,28.107056,47.603928,3.854 713,618.6581,489.70618,20.319092,42.82837,3.837 713,-69.27663,-187.45174,209.98035,451.73328,3.796 713,380.91446,193.95723,32.941498,56.491913,3.78 713,557.4261,-34.55426,28.524902,79.36187,3.776 714,617.92834,206.43074,22.383667,80.599014,52.763 714,336.74634,190.71014,20.500793,40.675934,16.354 714,-5.5755496,-17.278564,17.15626,41.383442,7.332 714,1.3476634,219.08827,21.00262,38.456924,6.685 714,64.121284,247.38644,36.771355,50.98758,6.65 714,-11.687718,476.8885,29.964596,63.772766,6.571 714,163.69606,207.64093,32.034363,69.55182,6.49 714,435.52844,211.51833,33.780365,53.303757,6.49 714,-6.188286,488.2905,18.912685,42.96176,6.422 714,-11.181881,-31.072765,29.348438,70.40375,6.284 714,613.33307,171.12962,33.13495,105.96892,5.959 714,-5.4728484,220.48431,18.403719,40.981262,5.724 714,612.8733,455.82697,39.48114,106.05896,5.704 714,606.91626,211.16122,45.63141,125.31021,5.563 714,627.4662,-17.45621,16.822815,45.38968,5.482 714,584.09283,412.8802,70.420715,175.13202,5.451 714,626.65704,487.04697,20.55249,46.879486,5.436 714,-17.086124,-65.8506,55.360508,150.38393,5.366 714,73.078995,240.27565,37.304214,46.459396,5.308 714,456.12805,211.95673,23.232758,40.60373,5.254 714,603.7182,-56.19958,52.61847,137.48996,5.227 714,-73.06497,264.2395,201.44724,463.7743,5.179 714,-21.206516,404.77545,78.5432,173.60638,5.076 714,623.4596,-34.752888,26.16388,74.58381,5.028 714,98.294266,222.82497,37.18306,58.852036,4.948 714,-40.251587,367.52728,110.38328,275.8178,4.868 714,57.3361,257.79742,35.33839,55.863373,4.856 714,491.84912,207.71265,17.00235,27.489258,4.848 714,104.761925,258.96777,23.47927,31.868744,4.772 714,326.88736,188.75276,28.637177,60.851227,4.754 714,3.3530755,-15.70067,15.817835,38.6017,4.58 714,536.1086,311.45508,143.68976,340.59387,4.544 714,115.94182,182.08331,30.826706,79.67578,4.527 714,498.7868,207.63792,17.10608,27.498093,4.521 714,69.46892,266.53717,26.658707,37.22293,4.491 714,620.1139,193.88809,20.54309,48.904495,4.49 714,5.533415,469.92252,37.70809,92.202484,4.412 714,8.8514,228.19736,20.505165,33.908478,4.395 714,493.53156,228.4609,237.27887,515.76416,4.347 714,2.7140813,236.02672,17.981922,37.038803,4.304 714,277.32016,202.40334,12.716797,25.158844,4.25 714,420.3996,217.27344,34.66754,55.684143,4.244 714,585.71844,-102.87421,77.03497,239.33017,4.24 714,-11.972254,210.97395,29.273512,60.19316,4.235 714,483.26147,205.93112,17.709137,30.676392,4.198 714,599.9607,215.96628,37.08838,94.68289,4.196 714,71.25481,244.13466,23.988586,29.031967,4.172 714,96.143074,252.2826,25.36377,32.892822,4.158 714,414.8181,187.31062,11.954224,21.319,4.117 714,-5.4562974,288.37704,16.177446,37.234985,4.112 714,418.03217,226.52211,21.623566,41.97682,4.109 714,87.50622,247.60641,25.698593,31.793793,4.1 714,-37.218178,-127.869225,117.243286,284.46826,4.072 714,262.0727,191.03065,12.091797,21.895187,4.064 714,269.7249,192.8777,11.520538,20.811188,4.0 714,588.65717,196.10626,29.62323,62.27301,3.98 714,491.4403,184.7321,16.919678,29.08043,3.98 714,107.15119,176.32912,30.96392,66.40929,3.978 714,254.51414,189.41017,12.523636,22.892426,3.975 714,340.14432,194.22652,29.607208,68.11217,3.967 714,151.03299,197.77841,27.771027,68.24225,3.951 714,277.33066,193.30171,11.467072,21.976166,3.95 714,308.83392,132.78038,16.337646,41.964188,3.947 714,555.9054,178.72643,16.42041,30.0309,3.916 714,366.35745,188.76616,31.281982,67.80086,3.914 714,553.1399,251.19017,22.510254,28.474777,3.914 714,95.91895,240.86057,23.297142,31.555603,3.903 714,594.27905,228.40735,19.033691,33.441956,3.892 714,510.3852,178.56097,14.8186035,28.429688,3.875 715,350.5989,192.14923,21.77124,37.136795,12.035 715,-5.409466,-17.254036,17.023933,41.679,7.414 715,484.03046,237.15991,17.254333,34.524536,6.36 715,-17.782972,-63.62554,55.91823,149.51936,6.191 715,-11.574192,476.65836,29.288504,64.98117,6.09 715,626.9442,488.7669,20.02124,45.21411,6.077 715,-11.2665615,-31.384727,29.416302,71.11159,5.977 715,-5.9171314,488.9477,18.40105,42.709106,5.926 715,627.3557,-17.702717,17.029297,45.720955,5.85 715,603.64355,-55.923702,52.58484,137.90149,5.818 715,53.41524,172.3963,34.169735,61.759674,5.631 715,612.835,456.38425,39.087646,105.36563,5.526 715,-6.080175,271.67447,19.251455,41.577454,5.447 715,545.4182,249.80994,22.148193,32.322937,5.407 715,583.59485,413.73267,70.980225,175.11731,5.351 715,0.3344679,264.7349,29.241676,66.12567,5.299 715,519.7476,216.00586,33.929504,60.46573,5.275 715,490.69977,236.5618,17.98285,36.295715,5.168 715,9.067858,268.47046,35.659485,60.90851,5.142 715,-12.190789,251.78082,31.06118,63.24652,5.117 715,-21.522379,403.84882,78.67261,174.50195,5.076 715,-72.84712,265.48724,200.69267,461.9702,5.05 715,623.4238,-34.944324,26.038391,75.239365,5.035 715,146.19258,204.43431,31.44136,70.67891,4.934 715,477.09418,235.2836,16.007568,33.08539,4.825 715,323.9708,186.46454,31.16153,67.412384,4.796 715,-6.8477607,256.6568,19.807358,41.01703,4.766 715,621.12085,161.23877,14.374329,36.27089,4.75 715,270.01917,6.695943,13.555908,26.262817,4.734 715,536.0645,311.70532,143.99536,339.5166,4.672 715,252.54453,-11.802116,14.716797,35.03631,4.654 715,3.1304526,298.13538,19.087042,38.219055,4.634 715,3.6341472,-15.423233,15.685236,39.128204,4.593 715,235.89296,-13.888369,15.70134,37.940525,4.553 715,-0.26146412,208.0646,22.634247,48.390076,4.519 715,346.2706,195.32068,32.367096,64.122314,4.495 715,397.77194,186.49686,28.312225,75.654785,4.461 715,315.39954,-16.694077,17.065063,39.88426,4.432 715,493.6211,229.57602,236.73975,513.5753,4.43 715,268.66205,-10.345026,14.565643,34.963432,4.423 715,307.56415,-15.5440235,16.98944,39.427185,4.361 715,409.8,186.31398,20.195099,50.532913,4.355 715,-37.053112,-127.91148,117.48105,282.19482,4.342 715,411.74072,179.88403,16.646881,30.52623,4.285 715,262.1735,4.8047295,13.269775,27.222347,4.273 715,66.223335,171.18033,33.232445,66.82518,4.273 715,493.0458,201.97748,13.988525,26.556595,4.259 715,227.66571,-15.940264,16.276108,41.078175,4.239 715,501.36234,203.03731,14.418793,26.996841,4.212 715,585.5053,-103.02911,77.31732,239.44763,4.207 715,323.2611,-16.221172,16.949524,39.887955,4.2 715,329.10077,184.39827,22.19983,39.902756,4.195 715,260.8518,-10.407714,14.455994,34.373,4.16 715,480.18335,222.87178,26.750244,54.195236,4.139 715,619.7081,182.8639,17.360168,34.662506,4.118 715,379.75323,216.58055,30.049133,59.772476,4.117 715,359.28125,201.3118,23.45752,41.81627,4.071 715,509.43497,202.7764,31.364838,67.81033,4.069 715,-7.564596,28.27441,27.103859,72.336334,4.051 715,627.21704,143.72223,15.665649,40.73561,4.041 715,337.7121,190.48433,21.303589,39.804413,4.028 715,-5.2291255,184.0151,17.78771,41.37097,4.027 715,510.58685,193.77893,11.605103,22.681503,4.022 715,329.97635,210.0039,21.205627,42.307724,4.015 715,244.17233,-12.577776,15.34668,35.991104,3.976 715,22.601948,285.00266,25.666447,33.80081,3.974 715,-3.9062738,32.766994,17.764143,45.831455,3.971 715,9.862419,246.39685,35.02307,54.88098,3.967 715,253.69615,2.8081923,13.754471,27.863235,3.963 715,311.38116,-34.597927,27.414154,71.56395,3.951 715,276.1652,-10.477247,14.911224,35.53277,3.938 715,299.20428,-14.410187,16.35794,38.23406,3.924 715,25.84961,278.54962,34.053185,51.15271,3.923 715,496.32205,228.62782,20.122528,42.535446,3.896 715,34.51358,237.24896,36.088524,51.656982,3.895 715,178.31378,198.98158,19.086441,33.755264,3.885 715,627.4144,44.669075,17.248962,42.474045,3.882 715,425.54288,206.09683,30.813782,76.57135,3.882 715,166.69334,199.73389,29.415527,58.08319,3.882 715,2.2523766,490.82205,18.627562,40.142548,3.88 715,508.93262,183.54016,14.328369,25.935791,3.869 715,355.01865,207.88257,33.424927,64.706085,3.865 715,331.1054,-16.277147,17.332397,40.540527,3.842 715,-5.165262,294.59506,18.328255,40.57025,3.838 715,-69.81469,-187.61795,210.6753,453.01877,3.829 715,618.8348,491.0082,19.967834,41.72763,3.796 715,532.51636,-184.4491,147.7489,425.27893,3.789 715,269.62854,189.46536,12.922577,23.00241,3.788 715,0.9852648,180.36697,32.70163,73.75192,3.786 715,280.60013,233.3623,37.92093,56.682983,3.785 715,284.8148,5.6679535,15.88736,28.677376,3.785 715,507.42142,211.7692,56.247467,93.66931,3.781 715,468.63098,235.95609,17.019714,36.068512,3.778 715,277.98682,190.05266,12.032074,22.242935,3.771 715,7.5415697,292.48575,22.749966,39.08435,3.763 716,380.1825,208.64255,19.65216,35.28363,15.833 716,160.49692,219.38199,34.282715,75.78711,11.866 716,360.93506,199.10776,21.292084,36.69464,7.41 716,4.532535,298.68277,32.742577,59.14969,7.061 716,452.55386,249.3492,29.012177,59.681076,6.92 716,476.10437,243.64934,15.944122,30.765335,6.819 716,290.32498,220.09114,21.58368,39.218765,6.813 716,1.308409,312.0167,23.471664,42.00302,6.564 716,-11.844215,478.60733,30.069544,63.17624,6.479 716,626.7661,488.0385,20.283936,45.748413,6.451 716,-5.3935986,305.17343,18.37782,40.515472,6.416 716,-5.8791423,-17.429417,17.675787,42.21958,6.185 716,-5.2283106,283.50403,17.267542,38.270508,6.106 716,-11.551162,-31.884806,29.831322,71.62243,6.078 716,467.84488,241.88046,16.808289,31.885498,6.063 716,-6.146965,489.3097,18.873932,42.047913,6.034 716,627.36334,-17.560305,17.111816,45.608612,5.732 716,612.7196,456.3773,39.228577,105.25827,5.714 716,384.68747,214.71011,21.466583,39.641907,5.617 716,612.1929,-48.618687,40.421753,104.26278,5.505 716,-11.025148,285.86038,29.86251,64.45773,5.501 716,436.62918,250.77121,31.61792,63.24579,5.493 716,515.9575,247.27621,16.524109,34.29004,5.424 716,126.86942,287.1447,25.729973,66.230774,5.403 716,-17.031788,-61.49515,56.109665,143.06348,5.39 716,459.6883,240.90355,17.438416,31.551773,5.355 716,26.41609,177.38135,33.40831,62.99669,5.324 716,500.3604,246.1617,16.413391,33.624313,5.27 716,41.61463,273.71793,20.806515,28.865509,5.237 716,461.68857,242.92224,28.438263,58.84198,5.199 716,2.8405433,272.0468,18.292953,37.38739,5.16 716,508.68408,245.94339,14.594971,28.766418,5.156 716,-21.83195,401.5276,79.50636,176.53723,5.068 716,523.7518,248.13681,16.035889,34.226135,5.035 716,33.994396,274.48422,20.447979,29.164276,5.004 716,44.030552,182.82782,33.985424,61.976944,4.995 716,-73.091286,265.59705,201.03864,462.40784,4.96 716,582.9725,413.29086,71.53229,175.93314,4.943 716,333.0225,191.70123,28.520477,58.641174,4.892 716,293.44037,205.70573,12.751099,21.521667,4.887 716,493.1765,245.3055,14.812073,28.756668,4.85 716,2.4163942,292.18436,19.680641,37.941498,4.795 716,484.49963,243.70404,15.052826,30.627625,4.778 716,-4.034921,255.06148,16.074211,38.39357,4.771 716,443.61877,238.8167,18.316833,34.077988,4.751 716,536.5718,311.76422,142.68921,338.9505,4.717 716,531.9798,246.27748,16.317322,35.44005,4.706 716,451.40927,239.33394,17.755127,33.968704,4.704 716,-6.0286913,234.61885,18.801216,43.37245,4.698 716,309.9583,205.91159,11.363861,22.550827,4.676 716,26.196795,269.94406,19.640821,27.095917,4.675 716,619.56903,193.5452,18.883667,46.352264,4.668 716,425.51608,242.41891,21.62503,38.062927,4.656 716,34.508736,269.49078,34.071266,48.32782,4.591 716,-36.741814,-126.17017,116.658134,278.56372,4.532 716,-5.207906,327.36374,18.099241,39.191864,4.442 716,460.5266,267.70844,30.764404,65.80545,4.437 716,301.51416,206.94987,11.632477,20.321518,4.43 716,-6.1507125,200.8399,18.049234,40.464523,4.398 716,173.95886,203.63898,24.178055,41.345108,4.396 716,491.1678,-176.66151,233.26215,418.11783,4.391 716,441.28027,250.17812,21.97226,40.296005,4.379 716,4.4256363,181.11504,30.10577,63.004257,4.372 716,493.79248,228.5217,237.25555,513.6869,4.364 716,39.630623,184.32793,24.422173,47.836975,4.339 716,183.73994,215.16887,22.74765,42.08867,4.338 716,149.60329,195.33658,33.44342,66.98862,4.315 716,-0.8629024,262.1777,26.222752,59.75522,4.315 716,618.73517,489.30826,20.142334,43.346344,4.298 716,433.41272,244.65855,21.522736,37.813522,4.267 716,219.71808,210.53488,16.67627,28.685516,4.265 716,2.8757257,-15.421947,16.69529,37.940166,4.263 716,519.4763,237.79608,24.98877,56.67047,4.229 716,345.229,197.91267,21.948853,39.875,4.22 716,65.73714,185.3217,34.592987,62.240265,4.18 716,1.9034559,329.26862,18.95339,38.28659,4.172 716,53.902016,194.8412,35.610146,59.169907,4.143 717,414.84198,204.54099,19.319946,36.063416,17.802 717,385.92105,192.71716,21.55133,38.029175,9.308 717,524.6531,243.28046,14.615112,27.812866,7.721 717,532.99084,242.61201,14.732788,28.682327,7.401 717,516.512,242.28615,15.170898,29.855026,7.303 717,508.94406,242.31622,15.143219,29.078125,7.201 717,540.6312,244.47766,14.364746,27.671814,7.112 717,492.278,240.8442,16.041962,30.599838,7.087 717,313.25452,218.02725,21.233582,39.352203,6.983 717,-5.4845076,-17.075148,17.05942,40.744625,6.903 717,499.9356,240.47716,15.929138,31.432999,6.873 717,563.25555,249.96101,16.647278,30.81041,6.735 717,556.55634,248.67061,15.533264,30.129532,6.702 717,621.55066,478.46622,29.29309,65.77365,6.534 717,-11.490862,-31.94032,29.537134,70.50512,6.429 717,-11.632166,478.02768,29.605762,62.82016,6.282 717,412.09418,204.87286,28.728516,56.93866,6.224 717,424.47052,216.90437,21.760101,39.74724,6.198 717,539.7231,272.74948,30.408691,58.056458,6.175 717,580.29016,251.56467,16.892761,30.119171,6.144 717,571.8177,251.36536,16.961304,30.864746,6.124 717,-5.9236603,489.1041,18.418556,41.577606,6.103 717,564.1389,271.51083,30.807251,62.82202,5.998 717,484.32367,235.12383,16.114746,30.234512,5.97 717,485.65292,252.23428,26.61557,53.25717,5.733 717,627.3838,-17.831955,17.032166,45.80044,5.727 717,207.32281,207.19165,23.739792,44.767303,5.674 717,76.499954,302.84625,31.250824,53.360504,5.658 717,457.66687,251.61472,21.099792,36.008118,5.547 717,131.49687,181.63463,31.026047,67.43114,5.535 717,465.4874,251.4019,21.254364,37.043716,5.484 717,548.2315,245.256,14.652161,28.25856,5.433 717,390.84387,201.08476,21.325012,36.724472,5.384 717,441.98895,235.1469,20.96753,35.459793,5.232 717,603.7141,-56.636086,52.884644,137.6698,5.195 717,623.33325,-34.94399,26.172241,75.07501,5.17 717,476.03317,232.90631,17.21225,31.809204,5.164 717,-73.6089,264.9436,201.66219,463.23535,5.162 717,183.47076,281.26608,25.715942,63.845367,5.156 717,200.9514,200.0113,23.158371,41.451263,5.151 717,596.70294,208.0998,14.687195,27.050705,5.15 717,37.646187,210.3301,31.11419,71.53529,5.148 717,-16.634258,-63.195248,55.452393,145.94783,5.142 717,1.937213,221.3122,39.856384,97.016785,5.131 717,473.28583,254.8458,22.279938,40.672485,5.106 717,108.79677,181.6479,32.605392,60.61554,5.094 717,449.88492,244.59964,21.022736,35.682312,5.028 717,433.48727,231.28618,21.6503,37.730087,5.014 717,-21.507303,403.4569,79.171684,174.901,5.012 717,1.9414604,225.53316,21.05518,38.093246,4.986 717,525.4334,264.85733,29.814636,58.657806,4.955 717,211.02002,213.57147,29.273697,69.42062,4.944 717,501.78027,251.61975,27.026733,54.58246,4.86 717,603.62866,434.69168,55.486206,139.57211,4.844 717,248.56415,222.135,21.532715,41.87001,4.825 717,8.154593,218.45895,22.627327,37.800232,4.771 717,91.16426,187.26038,32.472046,54.34395,4.758 717,378.6865,214.45322,33.880768,62.75522,4.755 717,-6.0626335,232.72745,18.478539,38.73181,4.749 717,88.03107,315.75256,21.238022,35.151154,4.702 717,589.9844,208.41881,14.0372925,24.085342,4.682 717,81.01055,266.25385,22.468376,29.503754,4.653 717,536.7095,311.44928,142.62476,340.44818,4.64 717,618.4383,173.42995,18.731384,39.716736,4.618 717,192.70209,192.99973,27.23172,61.68779,4.617 717,324.91913,204.66113,12.2846985,21.190872,4.605 717,122.291626,253.29648,35.620697,50.33557,4.575 717,3.7668867,-15.08649,15.295991,37.398304,4.558 717,90.40993,266.1661,21.029015,27.201263,4.54 717,59.334854,296.9521,32.80818,57.95465,4.533 717,548.1655,262.7241,32.436646,63.696167,4.533 717,72.9651,314.47476,22.183044,38.8154,4.53 717,148.1836,182.66705,30.664673,75.345215,4.526 717,-36.871727,-126.94539,116.13965,281.09814,4.512 717,317.8253,204.3675,11.652069,21.1465,4.509 717,458.05753,238.55005,20.157623,34.47052,4.479 717,249.76254,211.65529,19.759094,33.01799,4.476 717,97.16722,317.05795,19.950409,31.313995,4.468 717,120.05165,232.69392,62.138992,114.11641,4.458 718,403.1277,214.6224,21.509918,37.354538,21.955 718,368.2208,198.56557,22.942688,40.359085,14.07 718,409.27094,221.71347,21.09198,42.311035,10.203 718,501.0952,252.24193,14.14624,28.650803,8.568 718,141.68633,180.01308,33.996124,68.56506,8.293 718,493.36566,251.34688,14.164734,29.060806,8.099 718,509.0933,252.33986,14.142426,28.226181,7.155 718,485.05902,250.39209,14.539551,29.734985,6.836 718,-5.7918596,-17.872946,17.40263,41.860966,6.695 718,556.5792,259.214,14.443726,27.31549,6.65 718,-11.477361,-31.805475,29.678291,71.2059,6.604 718,525.47186,280.20703,27.26587,58.709045,6.422 718,626.69037,487.92804,20.467712,45.87506,6.41 718,96.3607,274.32474,38.423325,63.6763,6.17 718,549.8291,274.9109,30.298706,65.4707,6.165 718,516.5737,252.80519,14.576111,28.13182,6.113 718,477.3564,249.97398,14.958313,29.899063,6.018 718,-11.721897,477.84076,29.776459,63.496582,5.916 718,-5.920417,488.96466,18.446178,42.73987,5.913 718,627.315,-17.750668,17.112854,45.76606,5.828 718,123.773254,182.68619,32.171005,62.676895,5.806 718,562.26245,283.54816,30.771484,63.2883,5.653 718,416.0689,226.48183,21.358429,40.961746,5.606 718,478.4845,265.95834,25.498291,52.154114,5.605 718,439.0559,248.59691,27.435669,54.731674,5.599 718,201.08095,229.55759,35.863846,84.33087,5.579 718,495.03616,268.4619,26.221283,51.825775,5.533 718,612.78186,455.65564,39.085938,105.60443,5.519 718,532.4081,258.11374,15.2005005,28.609314,5.45 718,473.9597,265.04596,21.100739,42.592346,5.399 718,354.78192,195.46942,21.50116,38.704086,5.398 718,453.57098,251.25809,27.300934,55.793274,5.387 718,425.7222,241.01617,20.335083,36.64734,5.292 718,104.457,264.33276,35.51567,51.526123,5.233 718,524.9025,253.10747,14.461304,28.038956,5.2 718,468.81317,245.29391,14.773834,26.88733,5.181 718,540.41736,259.5748,14.741455,27.318207,5.148 718,-73.284386,264.82867,201.62805,463.4666,5.134 718,549.3042,258.5751,14.787842,27.652252,5.118 718,623.4117,-35.115425,26.092102,75.492195,5.113 718,463.17825,257.47885,27.248627,55.08716,5.111 718,-16.538145,-63.62382,55.239517,147.26811,5.037 718,41.384857,229.89615,21.895294,31.302917,5.033 718,120.75143,192.98334,22.926155,46.583115,5.015 718,-21.654291,403.2763,79.03557,174.78558,5.003 718,403.99966,218.57104,31.168945,63.86737,4.993 718,582.8272,412.03836,71.861145,177.3182,4.846 718,30.094494,215.80637,31.095715,45.575623,4.818 718,603.6826,-56.46705,52.88794,137.65204,4.814 718,459.00357,248.34688,17.296326,32.719894,4.808 718,536.8386,311.55945,142.61194,339.24158,4.79 718,74.5037,215.02574,20.427956,34.898636,4.762 718,467.03217,252.8847,17.903107,36.365417,4.744 718,434.1369,248.87073,20.567719,38.191833,4.704 718,477.69238,236.65536,13.09552,26.465088,4.681 718,-6.172818,222.80495,18.698124,39.231674,4.633 718,106.74149,189.00398,33.92074,62.65837,4.626 718,108.895294,289.1034,27.349686,42.9534,4.533 718,509.00485,272.57257,29.321808,56.493927,4.484 718,305.0345,216.09459,21.891632,41.830643,4.478 718,286.15424,205.45216,11.701355,20.93715,4.478 718,41.054222,216.78093,23.310982,32.501953,4.466 718,152.1245,191.43588,33.82466,65.50607,4.461 718,354.4687,221.61977,34.739838,62.212418,4.459 718,25.25694,213.24516,23.77801,32.648712,4.455 718,-36.961582,-126.16764,116.749344,280.36398,4.447 718,416.07272,215.31651,19.413544,35.80475,4.405 718,493.6632,228.38547,237.53357,513.4369,4.397 718,3.500555,-16.249949,15.7908,38.84821,4.394 718,442.70474,245.17894,19.369873,35.673386,4.368 718,147.43776,257.68344,33.893845,50.478607,4.366 718,421.7731,246.5684,29.595581,54.83235,4.362 718,5.253589,208.0872,30.128616,53.191055,4.341 719,387.05072,208.19304,20.74054,40.86682,45.183 719,330.98322,190.86786,18.386902,40.633728,17.734 719,347.153,203.2457,19.920654,36.059677,9.157 719,460.7638,242.04546,15.178253,30.787247,8.445 719,469.05392,241.88669,14.681,30.698547,8.333 719,477.06512,244.0722,14.093201,28.418762,8.216 719,452.308,240.04536,16.099335,33.584244,8.002 719,492.3103,248.58461,15.744629,31.019363,7.593 719,499.87598,250.01608,15.921387,30.60962,7.416 719,444.52072,238.18752,16.480438,34.834305,7.407 719,-5.652942,-17.24018,17.262241,41.338043,7.215 719,181.08609,222.41013,31.901352,82.31439,7.171 719,269.1897,203.34729,11.991974,23.47525,6.861 719,392.28754,215.86345,19.682556,41.427902,6.644 719,428.04916,236.80534,16.843658,37.57979,6.627 719,508.50223,250.36043,15.280548,28.794388,6.572 719,-11.294049,-31.559235,29.57452,70.67948,6.494 719,483.63147,247.81198,15.809204,32.28418,6.36 719,-11.80867,477.69553,29.554575,63.83139,6.323 719,430.18448,251.53633,26.888031,53.422195,6.254 719,329.60638,208.02087,20.855286,36.21782,6.254 719,435.96878,235.68393,16.985046,37.91336,6.242 719,326.18738,196.95558,16.669678,34.748306,6.016 719,627.40247,-17.526234,16.952698,45.71121,5.934 719,-5.9920096,489.11508,18.352158,42.179718,5.899 719,622.1378,477.99243,28.75763,66.16797,5.887 719,388.40378,211.98932,29.162811,65.8992,5.841 719,445.88928,259.32816,27.604523,54.93152,5.835 719,422.57855,233.08923,25.628815,63.48755,5.728 719,315.62985,210.4742,18.858185,36.77733,5.7 719,612.6957,453.95615,39.58734,107.879,5.664 719,254.73676,196.90715,11.397217,21.51088,5.603 719,246.84189,196.8085,12.4599,22.302277,5.506 719,306.7,220.38376,20.1568,39.37683,5.489 719,226.16849,218.205,23.198181,40.822495,5.477 719,603.6821,-55.91452,52.656616,137.19482,5.437 719,67.29573,212.40137,19.273895,38.20807,5.403 719,262.72577,203.44081,11.85141,23.42418,5.387 719,411.3199,234.98999,17.605743,37.331604,5.373 719,439.28217,242.92096,26.340668,60.686096,5.284 719,516.0882,250.28485,15.203491,27.62616,5.267 719,539.77203,250.00226,16.552185,29.214233,5.252 719,400.9225,209.29654,18.982605,35.059723,5.232 719,-16.40685,-63.761436,55.196396,147.034,5.22 719,-72.70338,265.0703,200.92834,463.12585,5.185 719,258.9548,217.07976,19.726746,38.144775,5.142 719,307.92255,205.1552,30.662231,66.02696,5.128 719,137.37505,242.71495,36.64505,55.636093,5.106 719,337.5775,193.95941,19.25534,40.797516,5.092 719,623.4039,-34.886993,26.052368,75.2305,5.086 719,74.30335,210.95302,19.959953,41.358566,5.086 719,-21.318932,403.96265,78.67581,174.47424,5.065 719,420.16647,236.43082,16.941223,38.018616,5.031 719,537.8453,281.68277,33.009033,65.056,5.028 719,485.01468,239.27179,13.364044,26.473328,5.018 719,-40.444405,367.03143,110.70287,275.60956,4.904 719,536.5642,310.81775,143.01257,340.36,4.904 719,189.4716,211.6127,28.870682,68.67001,4.887 719,402.46246,221.2113,18.521912,40.404846,4.864 719,523.33136,250.70215,15.863342,27.85254,4.789 719,582.7996,411.82324,71.830505,177.11871,4.782 719,470.12466,230.0285,13.143036,27.196045,4.775 719,406.9402,231.248,26.63031,60.01793,4.75 719,123.273094,246.97586,37.921364,49.9162,4.75 719,411.0852,251.62364,18.945007,35.96257,4.728 719,97.30742,258.11154,34.249252,58.019165,4.717 719,411.32388,211.75735,16.618347,32.17401,4.705 719,81.98961,204.91911,18.53946,37.371735,4.689 719,621.7705,164.87086,13.378052,34.321457,4.662 719,48.389534,228.57704,22.561554,33.341843,4.614 719,477.71848,229.94347,12.545868,26.134262,4.601 719,3.5066657,-15.249694,15.713999,38.171185,4.587 719,114.110245,299.00897,19.039185,32.507843,4.533 719,33.140846,228.97127,21.687336,30.843857,4.525 719,297.99405,221.04465,20.76831,39.50708,4.508 719,83.16037,274.9321,30.74031,67.34375,4.497 719,322.20218,216.67946,21.40213,40.01808,4.485 719,524.6682,271.89548,31.78601,67.65268,4.482 719,25.174698,229.57283,21.572517,29.599503,4.477 719,99.910194,175.88876,31.375587,68.539856,4.472 719,493.91248,228.80646,237.1637,513.33514,4.47 719,445.31543,229.19226,13.962585,27.360504,4.452 719,532.7072,251.33096,16.208923,28.450195,4.451 719,465.44797,261.49002,22.934296,45.580475,4.43 719,461.9784,230.64508,13.118652,26.173218,4.403 720,406.93903,207.51682,21.980377,45.19014,58.86 720,322.68475,190.96185,18.07193,36.07924,17.883 720,356.79175,201.30444,19.712463,37.38028,12.833 720,337.8866,198.98485,19.632965,35.842514,10.217 720,171.14212,210.95587,31.708847,70.76251,10.075 720,334.0879,162.9074,26.81012,68.83969,8.469 720,409.9897,224.63538,19.406555,41.299133,8.025 720,-5.4584365,-16.685356,16.925634,40.86398,7.555 720,498.64438,245.17542,17.544586,35.972046,7.416 720,417.53198,225.88971,19.813171,41.816437,7.399 720,492.7085,243.59897,15.354279,29.893188,6.841 720,317.6686,197.32666,16.997162,32.339752,6.778 720,445.09677,237.081,15.538239,32.06653,6.552 720,3.5057533,215.9498,17.392689,30.059296,6.538 720,437.94217,246.94131,27.968323,60.798218,6.474 720,622.0664,476.11188,29.04956,68.37958,6.435 720,-11.176012,-31.170286,29.25155,70.64672,6.421 720,461.1415,240.6335,14.957886,29.582901,6.403 720,572.6098,307.32684,32.284485,65.1264,6.351 720,411.9211,213.50916,27.68982,69.78833,6.275 720,515.52386,244.85132,17.114197,35.985718,6.259 720,-12.243313,478.07742,30.052004,62.657013,6.21 720,452.6549,238.31705,15.34436,31.234161,6.189 720,427.5755,230.22144,18.120117,39.072388,6.161 720,50.022964,209.85367,18.35733,32.492874,6.142 720,246.08223,190.72282,12.707626,21.772797,5.944 720,627.3812,-17.486462,16.983887,45.523277,5.889 720,524.6412,273.33057,31.312134,65.045746,5.874 720,507.90866,243.87799,16.481781,30.07129,5.873 720,476.8962,241.8336,15.028046,29.571426,5.856 720,398.59622,211.74559,29.186523,66.48299,5.818 720,484.9817,242.21162,14.999237,30.261154,5.729 720,-6.501599,489.0638,19.035595,42.93924,5.684 720,215.76129,218.92268,23.493698,36.813812,5.66 720,436.64355,234.68124,16.689331,35.10739,5.64 720,253.91351,191.91698,11.564178,20.479446,5.635 720,612.4604,-48.87624,40.231018,104.16873,5.622 720,556.7796,251.5538,29.92627,69.77896,5.546 720,425.9906,210.59918,17.2323,35.800568,5.468 720,-21.352806,404.16907,77.87885,174.24805,5.391 720,414.5982,205.20305,19.885925,40.166412,5.371 720,9.868623,216.81116,19.876476,29.054672,5.352 720,330.28323,202.7229,21.460175,36.701004,5.329 720,445.95154,228.05716,12.785095,28.02243,5.326 720,183.62425,214.8089,24.291016,52.556732,5.25 720,320.11816,170.30241,25.049866,59.47403,5.246 720,540.13855,247.69872,18.182617,35.1559,5.211 720,401.81656,249.04057,20.85736,39.416946,5.198 720,421.63452,245.52234,29.370544,55.81378,5.164 720,468.9731,240.95107,15.322723,30.185165,5.149 720,-16.5632,-63.455612,55.24923,146.6817,5.122 720,345.1308,203.98177,21.29544,37.861893,5.103 720,321.96307,207.7551,20.847351,37.70636,5.076 720,522.6146,246.60902,17.716675,34.95912,5.034 720,26.592499,221.20593,20.365494,28.150146,5.017 720,-5.348153,216.70868,16.7452,34.55188,5.01 720,554.8339,290.57693,34.483337,61.605225,4.981 720,-72.40202,266.29642,200.16554,460.80258,4.951 720,531.29755,248.5755,18.036499,33.858826,4.939 720,378.64233,232.49033,19.520508,36.655487,4.906 720,155.7645,211.73865,35.20111,69.19943,4.888 720,536.6122,310.96063,143.00299,340.27576,4.884 720,508.4768,273.7816,31.866272,63.654236,4.876 720,238.1867,189.27876,14.191559,22.975372,4.859 720,511.09695,240.43073,25.174652,56.723267,4.838 720,484.58704,262.74936,29.71405,58.838745,4.806 720,582.77106,411.355,72.043274,177.63547,4.781 720,547.6261,253.735,16.388306,35.935013,4.771 720,252.71796,203.55707,29.291138,52.130203,4.759 720,89.507095,246.4495,35.441574,52.973907,4.732 720,417.14648,247.1912,21.164429,40.41458,4.727 720,70.40353,189.3818,27.636803,71.874695,4.708 720,355.76144,202.23936,29.848755,59.864456,4.642 720,43.401695,211.13226,17.796364,30.015762,4.635 720,131.35916,224.32832,35.614136,59.30504,4.631 720,307.81854,205.12585,31.790985,62.844604,4.617 720,628.6062,158.00426,14.442139,40.855392,4.611 720,404.82678,235.3852,30.656616,59.098694,4.577 720,3.5484428,-14.643136,15.521019,37.78233,4.541 720,446.44943,255.84229,27.403229,57.868164,4.54 721,450.97144,208.12775,27.544556,69.75519,79.014 721,378.93582,208.86926,21.399872,42.760147,22.081 721,327.674,198.73425,19.234863,34.16867,9.465 721,460.68207,218.4177,21.125153,51.131256,7.324 721,354.26263,193.07286,26.768524,62.121353,7.036 721,499.85852,253.01903,14.823608,27.73964,6.852 721,493.2863,251.24265,13.9444275,29.543213,6.429 721,-11.991898,476.7384,30.067923,64.06958,6.393 721,-5.6640773,-17.445524,17.323032,41.36028,6.366 721,-6.284403,488.75696,18.749754,42.976868,6.362 721,509.14047,252.26462,15.122467,28.700134,6.295 721,515.3988,250.67592,15.628418,30.032272,6.255 721,-11.451275,-32.002743,29.571115,70.82416,6.231 721,627.39404,-17.55394,16.971313,45.601944,5.832 721,451.1933,241.16977,30.19284,74.58249,5.786 721,-17.155602,-66.0879,55.269,151.20528,5.742 721,613.0217,454.11807,39.176025,107.173065,5.709 721,322.50092,207.61009,21.72348,39.038193,5.678 721,379.6216,210.70247,28.73288,66.73894,5.649 721,176.03552,216.80821,25.048523,45.96495,5.507 721,-21.91383,403.2645,78.537964,174.8118,5.329 721,456.82263,232.90073,20.353882,52.231842,5.285 721,626.8458,488.3061,20.369385,45.53125,5.217 721,603.7646,-56.249046,52.61029,137.5834,5.212 721,554.7266,255.99635,33.832886,71.67412,5.209 721,397.25803,249.04343,29.875427,57.621185,5.189 721,623.328,-34.76234,26.140137,74.94054,5.119 721,432.00577,212.22833,51.053986,130.97852,5.11 721,154.568,221.13713,34.858276,70.913864,5.061 721,-72.75567,265.5515,200.78107,462.12244,5.02 721,444.97388,210.81256,20.222809,46.036133,4.995 721,532.616,254.26498,30.77887,67.24753,4.986 721,508.5165,289.04636,32.341217,71.79788,4.981 721,536.5211,310.48615,143.10046,341.6145,4.951 721,64.66107,187.48701,35.974144,64.16362,4.947 721,420.6892,255.16661,30.407166,60.34224,4.915 721,88.52176,183.02577,23.91426,47.72194,4.851 721,164.93771,204.96605,29.342667,65.874405,4.841 721,582.8861,411.38522,71.861145,177.52347,4.796 721,99.94519,180.07718,32.066315,60.225372,4.786 721,306.66156,208.16656,21.334229,40.455963,4.755 721,468.85986,275.53415,31.32138,67.965576,4.748 721,299.7423,207.43193,32.034668,61.608444,4.728 721,572.33295,326.3738,31.55658,65.433105,4.665 721,523.4319,291.9901,31.118286,67.93698,4.645 721,556.02747,228.83925,16.98413,28.012375,4.634 721,524.35693,215.18979,14.707581,24.412277,4.633 721,274.57608,210.1948,32.166992,63.29825,4.631 721,484.9925,241.85321,14.376099,31.234863,4.624 721,435.6038,257.67426,31.552277,65.58801,4.611 721,548.3172,230.89557,16.690186,27.43863,4.526 721,563.7705,228.30115,17.425598,28.385498,4.516 721,246.23126,196.9179,12.263489,22.293488,4.441 721,72.813705,257.63092,34.411865,53.54315,4.403 721,494.20242,227.93015,236.93515,513.3872,4.387 721,258.02173,215.24715,21.24533,34.229385,4.363 721,-5.022546,75.96998,16.1363,37.95896,4.325 721,72.568634,189.89444,23.20903,42.542572,4.262 721,473.0221,224.9223,18.264526,38.625122,4.249 721,516.56525,223.61636,14.406982,25.960999,4.245 721,533.4232,210.17416,14.856628,22.69754,4.232 721,325.5989,173.15077,26.590607,61.88536,4.229 722,442.2362,216.28995,20.075562,53.429047,17.245 722,340.46677,197.4735,22.426758,34.701675,14.549 722,431.12076,216.4707,27.78241,70.642914,7.866 722,448.57907,235.28058,21.655975,52.887207,6.466 722,-5.6663823,-17.769371,17.431206,41.855972,6.181 722,-8.865513,465.5408,37.53057,90.375824,6.105 722,484.89334,239.2494,15.243378,35.668808,6.099 722,627.39954,-17.586027,16.986145,45.606106,5.995 722,532.432,248.09132,17.138428,33.738815,5.969 722,3.2386203,243.73206,18.893959,33.008728,5.888 722,-17.205711,-64.349464,55.992924,150.52629,5.866 722,612.77924,453.95917,39.44458,107.47699,5.847 722,-11.31659,-32.102333,29.664436,71.49356,5.834 722,343.50153,205.1223,23.015015,42.691605,5.783 722,492.50812,243.30167,14.233948,29.704529,5.727 722,612.3683,-48.78743,40.38623,103.92423,5.526 722,507.9331,247.6639,16.196594,33.011337,5.475 722,626.4436,487.71753,20.787476,45.367737,5.462 722,524.35645,247.57866,16.902893,34.20186,5.448 722,148.92424,219.07944,32.542007,71.58148,5.44 722,72.20504,243.06863,37.00296,52.90985,5.378 722,579.61566,263.49432,32.303406,70.26181,5.266 722,514.9359,248.0962,16.550232,34.09169,5.228 722,-6.0941935,488.9246,18.555119,42.946198,5.212 722,452.38074,234.1357,30.349304,80.21495,5.185 722,-72.70577,265.23434,201.05484,462.6912,5.185 722,40.977753,205.19269,23.258293,39.20851,5.117 722,99.9897,172.68936,33.49405,68.160416,5.066 722,-21.364285,404.06982,78.5494,173.78156,5.023 722,499.16797,283.75714,30.143982,69.253876,5.019 722,522.49225,175.58722,19.166138,31.598297,4.977 722,536.75165,310.80963,142.70386,340.5152,4.957 722,-6.024151,213.44286,18.368347,41.656357,4.946 722,4.870142,203.5439,30.323812,60.358444,4.929 722,163.24379,215.18712,29.389877,72.67308,4.921 722,45.964096,200.43015,30.031113,67.618256,4.918 722,546.0155,297.7385,33.35724,72.6358,4.914 722,490.8157,273.29254,32.822723,63.104248,4.913 722,437.04044,232.03024,30.069702,77.37805,4.903 722,500.8826,245.23431,14.5121155,27.59021,4.9 722,582.8194,411.24414,72.00659,177.53436,4.851 722,9.256315,210.73642,21.993456,36.240906,4.831 722,525.36615,292.58893,31.302917,67.384155,4.818 722,321.4307,194.47153,19.269714,35.29724,4.801 722,533.0089,255.53152,29.032654,65.60553,4.755 722,107.83237,232.19043,32.649933,56.49878,4.701 722,405.4812,146.2045,33.80789,93.677734,4.69 722,-5.645578,242.34,17.111004,37.92383,4.674 722,478.19104,235.75328,15.25116,39.137253,4.587 722,510.12933,243.56909,27.078491,60.748657,4.581 722,239.89056,214.5905,21.01419,39.505783,4.579 722,282.72726,199.38834,30.459137,54.87793,4.567 722,-1.4046729,188.1998,26.968653,63.14679,4.567 722,20.932112,204.24782,30.272188,54.54637,4.545 722,2.7968578,222.45784,18.954683,34.87993,4.536 722,596.78723,262.80615,31.444519,71.7077,4.515 722,493.69836,228.7113,237.87378,512.67316,4.489 722,253.77432,187.97662,13.342651,23.991196,4.469 722,403.72086,-13.706261,31.141693,70.54388,4.461 722,468.30835,262.72034,29.102844,68.627716,4.45 722,490.74445,261.30072,20.2016,42.73349,4.442 722,557.8774,211.22426,13.805237,23.643326,4.439 722,331.41364,204.00754,33.513794,63.071075,4.425 722,345.18988,216.14502,35.823242,62.27002,4.415 722,315.091,200.64023,19.984314,37.75595,4.413 722,105.53239,217.32732,22.040092,36.384842,4.392 722,465.58453,264.07578,20.881165,46.819,4.385 722,479.82953,232.32033,24.34372,59.57173,4.353 722,84.446754,172.01573,31.035728,64.456345,4.344 722,539.488,254.53178,16.009888,33.294083,4.321 722,420.8036,214.38351,28.379425,76.58328,4.302 722,33.928173,214.3891,21.873798,40.27852,4.289 722,-36.968204,-126.05172,117.09906,280.0702,4.271 722,478.69897,281.6402,28.588165,61.210114,4.263 722,585.5586,-101.629974,77.10138,238.53047,4.258 722,17.34521,211.52249,22.07709,36.993835,4.255 722,457.99017,249.9562,21.342163,50.35617,4.251 722,65.789314,254.23366,35.011154,56.81273,4.234 722,460.79657,-34.121548,30.564056,68.47962,4.192 722,363.3166,228.35635,35.063416,61.179535,4.174 722,89.34979,223.16081,21.550934,30.80513,4.173 722,25.450283,219.6067,20.95652,35.44783,4.151 722,563.1202,252.16896,18.072205,38.204575,4.142 722,90.71454,239.0516,35.687355,50.14679,4.133 723,358.03815,205.1908,22.950134,38.13652,17.385 723,509.02002,252.4985,14.651794,28.92865,8.073 723,329.7782,209.14244,20.665405,38.54033,7.46 723,491.15616,266.5082,31.777374,69.101715,7.313 723,355.3598,210.91296,32.369385,63.421143,7.174 723,501.4233,251.79868,14.715485,28.922546,7.101 723,466.5613,242.90182,19.63617,39.602905,6.951 723,454.36713,265.26834,28.327423,61.35135,6.692 723,63.441105,249.68127,39.125652,52.429443,6.649 723,1.4680624,224.11098,20.000221,40.427048,6.114 723,493.1741,248.07573,14.873627,31.546524,6.111 723,458.35364,239.34694,20.474823,45.17952,6.096 723,449.6734,238.0791,21.173035,48.204224,6.071 723,-5.6080856,-17.472544,17.279612,41.706028,6.065 723,-11.4729595,-32.24785,29.788742,72.19814,6.061 723,475.49023,245.1171,17.336975,35.290833,6.018 723,515.1466,252.79706,15.288208,29.130066,5.947 723,-8.626913,465.75668,37.397057,90.71109,5.856 723,-6.3561363,489.83142,18.890144,41.468994,5.806 723,627.3855,-17.593145,16.993713,45.60371,5.754 723,613.21405,452.82022,39.395752,108.26279,5.745 723,316.81903,206.13608,30.78061,61.758026,5.623 723,484.5874,246.36176,15.756287,32.99774,5.443 723,97.64343,179.26971,33.23636,67.47992,5.437 723,61.86987,265.11853,28.002224,46.83896,5.418 723,323.14,188.92262,18.195282,39.330643,5.4 723,288.16772,213.85193,24.53418,39.42427,5.398 723,272.49835,216.26796,22.423035,34.20288,5.321 723,626.50476,487.06943,20.75061,46.091156,5.312 723,571.49817,265.8311,31.694946,67.52377,5.307 723,-72.882,264.3661,201.46829,463.75958,5.27 723,-16.503641,-63.201996,55.337753,147.07632,5.239 723,421.36874,250.85464,28.630646,58.53424,5.227 723,603.6811,-56.284267,52.74701,137.9605,5.186 723,387.57727,232.87823,31.977142,60.084473,5.184 723,436.73413,247.24075,29.684326,68.230774,5.166 723,623.3831,-34.857063,26.107971,75.129585,5.122 723,396.65268,248.4613,30.33908,59.673157,5.072 723,477.59332,278.89307,29.028503,63.254395,5.064 723,523.6025,252.4914,15.667419,30.377808,5.038 723,-10.994394,232.02138,39.96837,93.06755,4.986 723,469.0964,271.12823,28.005157,64.50644,4.984 723,314.90247,200.85524,19.538025,39.975037,4.973 723,536.8893,310.44257,142.57922,340.88312,4.914 723,72.98791,234.66544,21.819138,27.833069,4.914 723,-21.466919,403.5447,78.739746,174.332,4.84 723,322.8805,217.13824,20.63501,40.971527,4.767 723,582.7938,410.99094,71.99994,177.64359,4.719 723,524.8903,255.69147,30.181519,66.06708,4.713 723,76.98428,172.09984,30.93026,62.489166,4.68 723,97.78466,233.85526,37.3469,56.747955,4.677 723,464.76343,263.28476,21.925995,46.916718,4.673 723,376.891,235.94513,24.110931,43.691406,4.656 723,-40.31969,366.54956,110.61862,276.011,4.631 723,585.3696,259.8063,20.121399,40.447723,4.603 723,28.498259,202.09227,33.093567,67.88643,4.585 723,531.8494,250.26048,16.651123,31.522049,4.576 723,494.5363,297.58716,25.373505,49.249054,4.569 723,433.67752,233.36867,20.416687,42.670303,4.552 723,620.3865,209.69334,16.895569,40.78827,4.529 723,73.652664,183.59729,22.891434,45.154648,4.5 723,261.80103,196.54285,12.762665,23.316757,4.474 723,258.52234,216.76205,19.404327,31.715698,4.428 723,336.09985,204.68274,20.923523,34.939102,4.418 723,532.5829,290.81223,31.954956,68.23395,4.41 723,331.29187,206.1355,30.72815,58.618866,4.403 723,409.87463,238.23314,20.558594,37.43544,4.389 723,493.53543,228.5134,237.8569,513.4126,4.385 723,-36.98459,-124.64009,116.6717,278.55768,4.373 723,515.51996,271.38388,34.27545,71.469635,4.364 723,378.73328,244.22037,33.667053,60.979675,4.353 723,162.13531,215.95662,31.27211,70.85808,4.341 723,566.822,251.42656,25.992859,58.866837,4.326 723,563.2813,253.46611,18.66034,37.542282,4.301 723,497.61786,258.53107,21.39087,46.61026,4.281 723,588.0727,263.63144,31.400452,68.58469,4.269 724,400.1392,210.32622,23.161102,50.21306,73.803 724,385.98645,211.34131,23.314117,45.26004,22.938 724,193.07224,216.47331,23.980835,44.947952,10.307 724,389.76926,210.8222,30.11908,74.41861,8.978 724,401.94583,215.08887,30.216064,75.8295,7.638 724,60.14734,170.0003,30.677742,63.516876,7.019 724,-5.432904,-16.878021,16.931023,40.791267,6.912 724,-12.123539,477.74338,30.096352,63.210968,6.817 724,374.97552,211.84282,32.085083,64.21205,6.512 724,500.72687,247.5101,15.452942,32.644653,6.436 724,493.30865,285.77283,30.067871,66.08032,6.391 724,508.88403,288.6264,29.355042,65.543335,6.385 724,39.335094,264.84924,37.433674,59.56375,6.328 724,-11.419289,-31.83022,29.672256,71.563774,6.221 724,-5.838414,232.64255,17.829292,39.006012,6.201 724,-6.3893175,488.82703,18.926147,42.11432,6.09 724,507.83075,249.80942,15.289185,30.384369,6.014 724,516.997,251.90088,15.717102,29.614685,5.881 724,421.31067,246.54436,29.972534,60.544174,5.879 724,323.5402,201.8958,32.645447,67.65791,5.86 724,612.9963,453.29272,39.568665,108.10303,5.83 724,627.367,-17.704678,17.010925,45.69109,5.823 724,187.21835,208.285,21.151306,34.97998,5.75 724,540.9504,302.12573,30.924011,67.69574,5.745 724,476.1635,258.81625,30.295044,71.4299,5.732 724,329.92712,199.44824,22.271088,40.275726,5.653 724,524.0162,250.11496,15.982849,30.3302,5.651 724,-16.65126,-64.018936,55.341076,148.22429,5.493 724,288.80338,207.73628,34.113647,71.09654,5.485 724,-5.632741,216.96442,17.666119,38.41118,5.418 724,626.3762,487.676,20.906433,45.90335,5.398 724,603.58685,-56.4619,52.82135,138.45654,5.373 724,82.04547,175.26459,33.99724,68.76712,5.294 724,-72.81782,264.07404,201.38327,463.96442,5.255 724,336.7458,204.62288,22.280853,42.863068,5.239 724,452.932,264.7259,27.977753,66.379486,5.177 724,623.4166,-34.8466,26.09436,75.11067,5.136 724,-17.068237,438.4822,54.54702,137.92429,5.105 724,-3.6549165,198.51126,16.163454,36.085556,5.04 724,179.62979,204.94229,20.952576,37.058853,5.015 724,522.8956,294.6091,31.415161,65.68228,4.921 724,460.94193,272.57773,30.786774,64.59363,4.903 724,556.11084,255.25096,30.715576,76.751236,4.902 724,8.281878,210.42302,28.592136,64.22664,4.865 724,2.904511,202.47154,16.910156,32.32782,4.86 724,365.40393,207.93713,31.440186,58.752777,4.853 724,536.9353,310.56137,142.69092,341.0258,4.842 724,-40.219658,366.93423,110.385735,275.83188,4.817 724,493.34155,244.18709,15.862579,37.209244,4.817 724,48.98681,253.72142,36.210197,54.159042,4.752 724,582.85706,410.80417,71.90588,177.9216,4.734 724,267.79272,207.0969,32.369324,52.68991,4.725 724,169.85681,198.92201,21.048035,34.06938,4.681 724,1.6110468,223.28009,21.155197,41.577423,4.672 724,-11.286205,199.42844,28.135614,61.29184,4.664 724,-5.5272365,249.41402,16.879421,38.14366,4.634 724,3.6105216,-14.728984,15.386675,37.430824,4.631 724,58.15828,179.88153,22.084831,42.92061,4.598 724,294.22656,207.6037,24.781525,38.55652,4.568 724,621.29596,206.3624,14.508728,34.026245,4.496 724,475.84064,212.54102,16.132355,29.062836,4.496 724,261.83704,197.30583,11.791595,21.161575,4.472 724,58.25229,246.76544,36.629013,49.881348,4.455 724,501.51282,266.7595,31.90387,70.450745,4.431 724,483.86703,241.14807,17.026276,40.025818,4.426 724,628.494,196.08485,15.356079,40.993866,4.42 724,-36.736824,-125.14636,116.10363,279.86594,4.418 724,430.2133,256.5783,29.452698,56.97049,4.414 724,493.76135,228.1535,237.37842,513.4618,4.413 725,485.79364,209.29791,35.529053,84.110016,84.804 725,466.2624,213.38878,33.115997,71.54945,24.812 725,137.91963,214.22223,33.353394,71.56622,6.796 725,545.6152,306.25732,33.012512,67.754,6.462 725,-5.625961,-17.460836,17.292011,41.39359,6.442 725,-11.504406,-32.00884,29.651619,70.64425,6.165 725,57.814987,168.18613,35.978622,71.46286,6.03 725,-12.114934,479.28342,29.791443,61.52487,5.918 725,627.3915,-17.567799,16.948242,45.528076,5.888 725,-8.828417,465.105,37.549507,91.223724,5.836 725,-6.516,489.23355,18.867798,41.715973,5.816 725,453.3351,221.50159,37.189148,87.95923,5.81 725,427.1595,238.11234,18.717743,34.057526,5.621 725,404.8465,250.92714,29.911133,54.65233,5.604 725,499.43317,231.70973,29.601196,80.28227,5.523 725,477.523,213.2037,54.703003,145.77762,5.514 725,-16.540995,-63.597282,55.345757,147.69576,5.512 725,3.2333732,300.32965,18.716022,37.51297,5.468 725,613.10474,453.26233,39.120728,108.500305,5.443 725,-13.068194,260.32785,30.987442,63.391754,5.419 725,603.69635,-56.630783,52.743225,138.47375,5.319 725,479.30902,209.65317,26.490265,55.654877,5.289 725,41.671047,256.89307,21.37426,29.125885,5.285 725,531.80286,295.54056,34.50824,71.54056,5.276 725,44.34183,173.96574,33.0622,63.512894,5.258 725,623.40356,-34.7558,26.096313,74.95498,5.179 725,-21.62388,402.92545,78.6063,174.96689,5.123 725,536.70056,310.43823,143.29932,341.5746,5.123 725,626.4411,486.8161,20.780579,46.076782,5.111 725,420.34552,249.4956,30.392334,56.01288,5.102 725,-0.77234626,267.25137,30.112457,63.120087,5.057 725,-72.78876,265.61652,200.5668,462.5766,5.037 725,500.09064,213.09053,25.664734,54.036118,4.993 725,-6.6909494,280.38907,19.904953,40.30182,4.896 725,330.4672,223.67519,21.549774,43.6277,4.878 725,-7.039385,265.0782,20.193798,39.995483,4.869 725,-4.618171,189.44643,16.505531,37.32312,4.819 725,582.81213,411.36697,71.8761,177.15878,4.807 725,343.7253,198.32243,20.47342,38.41191,4.802 725,419.16876,237.8375,19.478638,34.733276,4.772 725,22.439327,286.5851,26.162148,35.29422,4.746 725,467.7966,274.42804,32.197327,70.99274,4.745 725,33.56091,251.40834,21.831013,28.586655,4.704 725,410.4803,238.84203,19.84732,34.49376,4.7 725,22.98946,256.7441,23.947102,32.59848,4.695 725,314.59506,204.08453,20.014648,36.697815,4.634 725,324.7266,199.97589,30.973969,65.92767,4.63 725,459.9808,211.27885,20.709259,43.262146,4.619 725,253.81595,191.32037,11.739441,21.024872,4.585 725,494.4397,229.37863,236.74713,512.5541,4.573 725,65.74917,270.9224,20.899887,31.134583,4.542 725,73.504196,272.56232,20.507706,29.055786,4.541 725,513.9112,236.84866,41.56244,90.0676,4.53 725,473.02216,209.66661,22.514343,39.54561,4.505 725,315.9029,212.33989,32.371582,66.18645,4.502 725,-36.877,-124.577835,116.62023,278.96338,4.486 725,35.740467,246.09392,34.833813,49.581345,4.474 725,10.753687,275.9534,33.668877,55.72525,4.464 725,8.0882845,292.93005,22.994843,40.013367,4.437 725,620.49976,178.41902,19.467468,50.17917,4.437 725,386.87964,234.41113,33.07309,60.179382,4.43 726,85.650955,277.0251,26.304276,61.275574,11.348 726,501.24695,243.54164,13.7873535,29.778671,7.024 726,-12.471239,478.2132,30.593473,62.397278,6.478 726,43.864723,306.2905,19.162888,28.445251,6.468 726,437.13336,247.32268,28.746216,67.40828,6.396 726,-5.176734,285.94135,16.52517,34.101654,6.292 726,-11.433979,-32.473576,29.721954,71.96489,6.249 726,477.02783,240.7635,15.025421,31.116745,6.178 726,421.46698,248.75885,28.633575,58.97168,6.087 726,-6.5017834,489.28516,18.745007,42.15515,6.045 726,-5.6918154,-17.851051,17.352661,42.298397,5.993 726,494.31207,244.75577,13.83078,29.344543,5.912 726,508.41812,244.58614,13.800995,28.83696,5.903 726,533.07434,286.4504,32.133545,76.81058,5.89 726,627.3832,-17.534256,16.948608,45.613785,5.889 726,451.8799,238.40784,16.997986,34.18445,5.883 726,524.6167,242.94104,14.436523,30.915771,5.779 726,460.3439,239.73958,16.232666,32.855118,5.778 726,3.0472665,288.18747,17.357311,30.088745,5.657 726,-16.526052,-63.608707,55.428688,147.81313,5.624 726,613.1434,454.2463,38.916443,107.10257,5.553 726,603.59753,-56.21081,52.76349,138.19588,5.51 726,468.6692,239.41014,15.809418,32.415695,5.468 726,322.6602,210.73163,20.365906,37.331802,5.455 726,484.65683,245.68457,15.410278,33.696716,5.377 726,35.66176,304.3507,19.418827,28.925964,5.352 726,461.41833,255.55261,29.263428,67.12097,5.319 726,427.2732,229.63893,18.05249,36.62996,5.302 726,330.16583,201.86087,20.415497,39.005768,5.284 726,-5.45007,300.70938,17.013369,36.127045,5.253 726,346.47748,198.78407,18.208801,31.55832,5.241 726,7.2986593,186.2435,32.393856,57.09198,5.182 726,2.6730812,316.33887,16.095228,30.658173,5.131 726,623.3939,-34.79352,26.146545,74.93536,5.11 726,446.21698,260.26218,27.749542,64.55084,5.074 726,444.3891,232.79567,16.078674,31.307663,5.072 726,-73.04675,265.45245,201.28441,463.05176,5.051 726,-21.809711,402.3923,79.60757,175.49362,5.043 726,-5.968298,267.13022,18.26307,36.25357,5.037 726,-5.7052517,182.56436,18.378065,42.47171,5.008 726,507.44553,209.08615,17.663788,35.416428,4.992 726,434.99005,235.55803,18.594177,38.851486,4.946 726,517.3733,243.52283,14.245422,30.580994,4.939 726,-5.082325,314.40686,16.333885,35.80362,4.879 726,536.92847,310.56116,142.31256,341.13464,4.877 726,314.93503,204.25229,20.529999,38.10942,4.847 726,582.9975,410.82977,71.62921,177.73376,4.766 726,341.25668,196.16241,27.99591,60.87921,4.745 726,626.1317,486.2919,21.55603,47.652863,4.717 726,2.599173,269.74234,19.480934,31.985382,4.703 726,498.8853,276.352,31.26941,68.38959,4.703 726,500.11746,206.7941,17.257904,33.18663,4.701 726,409.6513,250.87306,21.30478,39.020096,4.647 726,486.6225,273.9484,30.15094,71.56436,4.534 726,-1.191361,246.47197,29.295626,56.646805,4.51 726,-12.577818,270.19012,29.93327,61.356934,4.458 726,-37.1343,-124.24937,116.49066,280.71094,4.451 726,9.846863,271.0243,20.605818,32.1373,4.39 726,306.08228,205.75723,21.936066,38.317963,4.378 726,493.53168,227.71036,237.81244,514.2245,4.377 726,383.28983,159.70361,28.253418,64.86868,4.362 726,308.44913,201.03162,31.26352,59.11841,4.359 726,254.282,190.96938,10.55452,19.677734,4.348 726,492.6614,202.29555,15.638519,28.747269,4.345 726,417.9933,234.6467,20.414581,41.334473,4.33 726,617.2492,186.6359,21.40802,47.2388,4.319 726,476.44058,256.82343,30.481598,70.786804,4.268 726,-5.27586,252.73196,17.722721,37.980225,4.249 726,492.46097,256.98663,31.100555,68.0838,4.247 726,396.6903,223.46869,30.537933,64.9924,4.226 726,254.6067,182.65492,10.948502,20.553177,4.206 726,112.46072,197.92505,23.463814,37.897797,4.18 726,5.6479406,468.77103,37.881283,93.982086,4.155 726,562.3542,-130.1019,114.29895,283.20755,4.125 726,25.693546,160.71834,33.553223,70.98624,4.112 726,514.642,279.87177,33.322327,74.04144,4.109 726,588.09906,203.7089,15.583984,25.807617,4.093 726,27.46384,302.64325,18.549744,27.532135,4.081 726,552.53455,327.27243,21.776672,40.844055,4.073 726,416.6916,253.87975,23.496521,45.019913,4.063 726,411.19916,225.73872,19.440247,41.137558,4.041 726,146.91199,163.25224,34.811035,59.428024,4.024 726,169.1906,220.07062,22.79744,35.951324,3.998 727,385.75256,195.83609,21.37445,46.15248,39.718 727,362.43707,194.67473,20.066467,37.235718,9.23 727,369.89682,194.48744,20.58258,39.055984,8.784 727,493.9051,235.14342,13.528564,30.555527,8.26 727,381.60797,195.46986,30.526886,73.66936,7.485 727,485.43787,232.63664,13.903107,31.996048,7.022 727,160.1442,199.98906,22.306915,36.24539,6.9 727,320.45895,196.67215,21.227386,42.42685,6.729 727,500.39777,235.28455,13.764893,29.852905,6.719 727,-5.871669,490.0119,18.179356,41.71991,6.528 727,9.2579975,169.61378,20.55678,45.65123,6.415 727,-11.47892,-32.4984,29.87668,71.79548,6.327 727,354.27393,193.8276,19.838379,38.380768,6.264 727,-8.797132,465.78452,37.52271,90.27237,6.237 727,477.67157,230.00612,13.999756,34.819016,6.212 727,273.10437,198.90334,20.402832,37.367416,6.208 727,18.534544,174.40965,21.193659,40.619003,6.179 727,346.57825,193.60191,18.82843,40.09822,6.169 727,149.88687,201.03893,28.79036,54.85286,6.107 727,140.87463,210.3226,30.167694,52.407898,6.092 727,-5.685672,-17.70897,17.326012,41.741688,6.083 727,338.5883,193.00314,18.916138,42.39302,5.999 727,603.7564,-55.872864,52.525208,137.56274,5.914 727,627.413,-17.72704,16.970154,45.781384,5.717 727,309.28116,201.17981,31.327301,54.085434,5.701 727,-16.618689,-63.879093,55.39103,148.54254,5.62 727,329.8314,195.33154,20.006317,42.4541,5.569 727,4.2552567,165.64046,30.286568,72.48619,5.55 727,155.22852,199.63629,19.44931,27.048828,5.547 727,468.81555,227.8298,14.922119,38.2666,5.332 727,613.2134,452.98547,39.084595,108.72278,5.303 727,26.370728,175.31885,18.643291,31.510178,5.243 727,5.849763,282.35315,30.242405,78.24292,5.217 727,626.45013,487.55753,20.745544,45.683075,5.211 727,470.4338,264.07632,28.910248,62.594543,5.129 727,-72.71677,266.24146,200.4834,461.4148,5.097 727,20.934963,173.03867,30.451698,71.8138,5.059 727,623.4162,-34.984947,26.10382,75.207756,5.01 727,508.30472,236.53438,14.025543,28.369278,4.954 727,-39.990646,364.91998,109.83493,276.94366,4.896 727,536.53125,310.32733,143.02747,342.2879,4.847 727,295.9438,193.59354,21.870178,38.38861,4.797 727,-1.4765024,158.70125,25.40934,68.23418,4.797 727,582.9345,411.04495,71.73639,177.18533,4.703 727,169.3673,199.44293,20.40712,36.998093,4.668 727,444.55383,253.77216,30.190735,66.22589,4.655 727,197.01234,203.78096,27.738174,61.396103,4.64 727,509.62115,277.08426,31.396423,69.03714,4.607 727,-5.3303385,170.54314,18.454056,47.153366,4.582 727,421.79565,237.25922,29.96341,64.32007,4.55 727,82.95905,229.58398,34.75164,89.2677,4.538 727,493.481,227.43945,237.85446,514.2165,4.476 727,461.07025,245.5478,30.441833,69.35237,4.438 727,67.250046,215.12175,34.27446,73.50774,4.437 727,524.072,195.99954,16.744751,35.16443,4.404 727,-17.42315,436.40155,55.1361,138.99628,4.389 727,-37.340225,-124.060326,116.33321,283.83377,4.381 727,547.54126,200.31236,16.354858,32.723495,4.378 727,122.27316,207.67328,20.762741,35.91223,4.321 727,532.2622,199.58574,16.022644,34.406998,4.318 727,305.2185,198.21799,22.458862,39.309357,4.298 727,540.32153,200.4393,16.283142,32.87477,4.295 727,-10.091631,278.99146,28.6989,74.4451,4.276 727,435.34766,242.79694,31.256165,64.56293,4.275 727,561.9863,-130.47229,114.150024,281.7421,4.273 727,547.30646,243.88406,31.371399,66.78406,4.264 727,60.981335,179.20517,29.50652,61.02269,4.242 727,355.99918,196.7466,30.730255,61.671524,4.215 727,106.395226,191.61485,20.063225,34.18338,4.197 727,482.31613,262.59885,29.787994,64.68359,4.154 727,332.002,195.43234,30.424011,60.128555,4.147 727,146.35397,201.88249,21.358109,32.722046,4.144 727,1.2819278,278.94217,19.384497,39.01239,4.134 728,538.1683,218.03728,41.134583,88.64613,81.479 728,384.89868,207.64388,18.78421,45.71907,17.819 728,560.376,215.07018,31.69342,70.184006,13.398 728,370.3949,209.51779,19.299072,42.01715,11.645 728,363.1922,208.6317,19.149902,40.91884,10.041 728,541.1383,250.0754,31.146362,75.35063,9.242 728,381.18146,209.78993,28.562866,65.4756,8.118 728,379.81705,209.57712,17.890137,35.624054,7.523 728,71.14864,197.81609,28.461174,55.67035,7.352 728,453.92056,264.0348,28.21399,67.52725,7.321 728,443.91812,237.53555,16.969452,36.48172,7.202 728,485.0464,247.41655,15.035217,33.387833,6.774 728,421.89273,257.3596,28.884552,58.585358,6.689 728,392.10394,215.96104,20.245789,46.177475,6.652 728,438.05972,264.20673,27.793396,59.420776,6.642 728,459.75677,242.97807,17.509583,40.65309,6.611 728,354.5497,206.80075,19.595367,42.201614,6.56 728,468.0547,244.03484,16.506775,38.268906,6.528 728,477.7301,275.78363,29.85431,68.47485,6.448 728,451.2178,241.4335,18.482025,42.269104,6.427 728,307.67334,213.6829,31.501526,64.57893,6.356 728,500.65372,251.27885,15.466644,31.62178,6.216 728,435.43573,234.97263,18.080475,38.433807,6.2 728,-11.59925,-32.333153,29.857357,71.733116,6.178 728,492.97806,250.53415,14.615082,32.018127,6.044 728,-5.7648935,-17.779469,17.486443,42.074875,6.005 728,57.571392,204.2852,20.784351,37.45279,5.913 728,320.6053,205.83061,20.124725,37.60916,5.913 728,-8.981208,466.2551,37.692104,89.6019,5.892 728,-4.176935,189.6051,16.550388,37.468033,5.862 728,627.39124,-17.560617,16.959473,45.653793,5.787 728,613.1776,452.7513,39.31012,109.77603,5.762 728,81.14278,196.84808,22.053024,39.983643,5.736 728,117.15628,211.99088,29.707901,58.62039,5.721 728,554.5973,227.98929,31.248718,86.587524,5.663 728,570.4843,222.19394,29.575562,73.25183,5.571 728,-16.554258,-63.312428,55.240837,148.05167,5.546 728,-6.30787,489.30765,19.04181,42.03482,5.509 728,626.6631,487.32672,20.703186,45.54297,5.489 728,363.63785,217.83337,32.0336,68.49756,5.474 728,467.27954,258.69955,31.461182,73.01871,5.467 728,324.96274,201.70944,28.81137,66.620514,5.413 728,313.10724,211.21631,22.339386,41.218216,5.362 728,459.59894,280.089,31.455566,66.37872,5.276 728,-3.3154833,171.57416,14.925457,39.214508,5.261 728,4.835634,249.65149,29.578115,68.82471,5.255 728,603.65405,-56.349586,52.757996,138.45605,5.242 728,-72.887184,265.04688,200.84515,463.93018,5.199 728,416.84198,262.3478,22.773468,45.23523,5.19 728,405.6164,250.45792,29.493164,57.20056,5.173 728,623.381,-34.812325,26.108398,75.085686,5.164 728,74.97365,218.75064,19.659157,34.691254,5.154 728,329.83472,209.55074,19.97696,42.784164,5.138 728,506.97156,249.44005,16.379517,33.067398,5.121 728,445.08072,240.29663,28.788666,70.82886,5.086 728,-6.1469564,213.8336,18.983143,44.672775,5.085 728,536.4438,310.15955,143.28778,341.3874,5.076 728,549.0223,214.91415,27.525818,59.882843,5.071 728,476.98657,245.59583,15.739746,35.663635,5.068 729,403.79025,208.40964,19.282898,45.930344,63.242 729,379.37695,210.95204,17.582214,42.827408,15.871 729,404.9496,212.05717,26.465881,68.88191,12.799 729,39.99971,203.1511,24.340134,42.526062,9.788 729,385.64816,215.49687,18.502502,44.264145,8.912 729,363.48267,209.95154,18.20111,41.66333,8.875 729,371.122,214.74226,18.752014,44.283432,8.151 729,516.7754,250.6757,15.324524,30.614792,7.717 729,461.024,242.25995,14.781006,31.242737,7.538 729,444.46445,237.71771,16.156342,35.24362,7.199 729,320.14615,206.82004,21.89505,38.32773,7.074 729,468.43704,245.91924,16.182861,35.423264,7.024 729,476.71048,248.49542,15.269806,32.260498,6.877 729,452.54187,239.55441,15.560211,33.783875,6.875 729,396.67816,215.28824,19.341675,44.89987,6.755 729,501.25867,252.75165,13.637939,27.901794,6.458 729,627.0271,487.4752,20.313965,45.067474,6.434 729,20.324188,207.92969,31.871593,69.76373,6.429 729,416.33655,208.78786,17.669495,41.704254,6.388 729,374.12726,212.88794,26.68634,63.557983,6.353 729,484.8432,250.89201,14.474152,29.821732,6.316 729,509.04456,252.75659,14.089233,28.508118,6.268 729,30.747128,203.28116,30.221481,63.91086,6.253 729,-5.7208304,489.01382,18.016546,42.476044,6.167 729,-11.556322,-32.36541,29.812151,71.643845,6.152 729,613.3408,452.71417,38.826233,109.18115,6.07 729,493.38324,252.62337,13.839081,28.174057,6.017 729,-8.906227,464.64713,37.785934,91.7081,6.002 729,-5.7776713,-17.915222,17.473938,42.264816,5.968 729,468.59436,260.7868,30.611816,67.20221,5.934 729,313.11243,213.05331,23.00772,41.4794,5.787 729,402.638,232.56343,20.189117,46.557114,5.783 729,452.5568,260.17334,30.944977,67.54913,5.737 729,627.3748,-17.632202,17.016113,45.691574,5.736 729,-16.578396,-63.45095,55.344723,147.76173,5.533 729,417.14502,233.94682,21.579529,47.902054,5.508 729,328.3012,210.53278,20.888977,42.901443,5.396 729,435.97162,233.36835,16.852417,39.483368,5.39 729,390.23077,216.09424,29.334625,72.73462,5.32 729,421.40332,246.25018,28.24231,62.739197,5.285 729,357.3276,209.08293,28.711487,67.98485,5.278 729,426.7215,211.24959,16.245575,36.754288,5.23 729,51.932747,203.1787,31.46222,57.56688,5.217 729,47.34438,199.79576,22.902195,35.123627,5.17 729,603.7367,-56.366173,52.627686,138.40903,5.166 729,-73.359825,264.3603,201.24855,463.78656,5.114 729,623.3191,-34.786057,26.166077,75.04349,5.113 729,-5.0170045,170.33734,16.789434,40.894363,5.112 729,522.7395,247.74936,15.942322,33.87213,5.109 729,-5.552291,187.03131,17.94111,39.223663,5.105 729,435.92148,213.42578,14.781464,32.713562,5.081 729,405.79013,245.19327,28.943604,59.58777,5.034 729,90.852005,203.68982,20.779526,31.967224,4.986 729,355.12415,208.35867,19.428192,41.64537,4.912 729,536.56055,310.09784,142.7959,340.96637,4.911 729,-40.428566,365.0382,111.13362,276.49316,4.866 729,97.150116,208.60149,21.417923,33.463333,4.859 729,436.93793,247.05095,29.688202,65.0688,4.778 729,619.3161,489.30963,19.845581,42.502808,4.748 729,582.9246,410.625,71.77991,178.28174,4.741 729,315.02216,212.34975,31.41397,62.1212,4.704 729,-6.2849035,200.75659,18.349998,41.59694,4.691 729,508.92578,297.64343,28.838867,63.93341,4.678 729,2.893672,212.22218,31.511288,81.448715,4.647 729,395.36487,234.56657,19.352264,43.339615,4.624 729,341.62872,206.0048,28.924316,69.44838,4.559 729,425.91577,235.68298,20.511414,46.95935,4.539 729,445.91092,227.10144,12.731659,28.138428,4.47 729,24.70942,206.0798,23.973412,43.98117,4.459 730,410.7749,216.74257,19.348358,44.67543,80.476 730,443.8958,214.29611,27.956024,60.24704,67.61 730,392.04788,214.64174,20.164154,43.22496,26.468 730,369.11893,211.85815,23.43686,44.88153,15.152 730,144.92845,217.20786,21.900635,41.723846,14.608 730,374.54358,210.05563,27.75473,55.98752,12.129 730,411.63855,216.95305,28.019226,72.43254,9.899 730,399.64297,218.45888,27.049866,65.549545,8.277 730,437.9877,220.23807,36.57846,89.256775,7.994 730,380.83423,216.09027,29.726532,65.41046,7.975 730,47.185898,211.5248,23.331131,43.42769,7.767 730,33.049557,207.42393,23.352516,42.828064,7.586 730,71.51122,215.31563,25.897087,47.20436,7.366 730,436.2707,256.67847,29.058105,67.15683,7.234 730,626.94,487.74716,20.539978,45.61319,7.081 730,41.670563,202.28061,22.156704,34.45114,7.042 730,464.36432,222.22661,19.829163,42.426956,6.995 730,324.0824,204.16849,28.34961,67.7587,6.986 730,0.71201444,216.3603,21.937855,43.48137,6.95 730,133.22014,217.6666,29.911957,60.727264,6.799 730,485.73743,249.99535,12.882843,30.92656,6.677 730,344.87918,188.77275,21.662292,37.104065,6.656 730,433.62302,210.24753,29.748627,71.78055,6.627 730,612.85114,452.66397,39.191223,108.324066,6.387 730,452.4881,258.69363,31.460815,69.606476,6.354 730,412.3392,251.80699,30.81314,61.42079,6.343 730,21.64574,202.9526,29.999508,57.533997,6.088 730,-9.145748,464.25256,37.944584,93.09375,6.084 730,-11.526557,-32.717518,29.726204,72.4667,6.015 730,56.051514,218.68494,23.78469,42.163116,5.91 730,428.66095,234.2837,30.427765,77.02379,5.854 730,627.39307,-17.635899,16.980347,45.56932,5.834 730,152.56787,210.18164,21.174423,32.611206,5.809 730,-5.8025703,-18.166714,17.445478,42.840904,5.801 730,493.64322,252.41656,12.421783,27.447449,5.683 730,333.85297,173.45914,31.455078,59.948425,5.671 730,152.29724,221.04108,21.290482,40.547913,5.546 730,-16.677942,-63.569458,55.529533,147.6891,5.513 730,441.2296,246.78874,22.304962,50.97914,5.428 730,38.238155,199.72548,34.773136,74.0609,5.424 730,484.81097,274.80103,31.927795,69.848694,5.413 730,455.54135,229.048,20.819366,47.97049,5.38 730,-5.965237,489.40738,18.248463,42.09549,5.374 731,462.8056,218.19525,27.205872,57.739075,95.3 731,527.5554,209.76123,34.761353,94.67395,71.913 731,439.2475,213.0223,27.123077,61.306046,71.434 731,410.43018,218.13976,20.165192,46.20677,16.866 731,426.00897,221.01482,20.61792,47.448685,15.23 731,454.2366,216.95593,36.91458,97.8501,12.258 731,415.69348,212.84769,24.910583,62.642975,11.23 731,437.64545,216.10893,37.965973,99.713394,9.125 731,139.77267,211.7081,30.269318,56.55246,7.947 731,421.9912,228.66708,27.353607,67.30255,7.058 731,621.9227,475.31323,28.802734,67.32379,6.767 731,540.7343,221.59894,24.766052,58.211792,6.747 731,529.6633,209.04608,22.273926,55.438263,6.638 731,406.91373,228.24995,27.713226,65.696335,6.539 731,467.43494,215.17386,34.883545,78.85922,6.533 731,-11.422659,-32.449593,29.568962,71.84284,6.31 731,550.1333,222.2399,22.139587,47.811707,6.205 731,-5.699258,-17.831211,17.394157,42.197983,6.08 731,513.1704,213.0388,26.374146,73.78822,5.933 731,627.37256,-17.752632,17.012268,45.79035,5.919 731,-4.4176345,169.87776,17.19576,41.430115,5.79 731,-8.824858,465.31064,37.545807,91.8699,5.737 731,4.8957577,200.63809,28.594381,57.671906,5.683 731,532.62177,251.0016,30.837463,65.45827,5.676 731,-6.4142904,222.81702,18.757442,43.009277,5.672 731,-5.868294,489.7079,17.861843,40.94818,5.667 731,250.62094,219.93478,18.94284,37.283478,5.566 731,-11.526855,478.45114,28.814121,62.309845,5.499 731,-16.59202,-63.7663,55.24295,148.19281,5.484 731,465.56805,210.97557,20.59909,38.751633,5.459 731,345.35852,211.32225,21.176056,37.748047,5.38 731,352.72998,194.97696,23.725586,39.12021,5.353 732,566.8836,210.9797,38.724243,100.5517,96.93 732,526.6666,205.68427,38.716125,97.34271,75.887 732,488.0265,205.89508,34.32788,97.61539,17.519 732,551.3332,209.01663,40.077698,96.62543,13.454 732,500.5701,207.79086,37.308258,95.69528,13.036 732,514.5437,215.13164,34.614075,89.44496,8.953 732,361.1938,208.36981,21.306183,43.833755,7.4 732,486.0202,242.64264,28.197083,68.92163,6.836 732,-6.275069,183.66617,19.095753,46.230194,6.482 732,575.17017,206.29321,22.778015,56.406006,6.367 732,627.1738,487.8089,20.042603,44.667786,6.302 732,-11.59976,-32.56188,29.883837,72.25823,6.153 732,497.84305,253.48111,19.705414,49.456604,6.054 732,443.99426,234.6353,17.001678,40.375595,6.005 732,-5.6557035,-17.771881,17.393288,42.212288,6.001 732,613.2359,453.14438,39.116516,108.85062,5.96 732,627.343,-17.747927,17.04663,45.770885,5.898 732,-9.286262,464.08624,37.949306,91.81854,5.836 732,-5.904593,489.24225,18.21289,42.236572,5.562 732,413.46185,256.87338,30.218018,69.00607,5.495 732,603.53186,-56.602833,52.69684,138.60979,5.487 732,431.19522,268.56305,23.950348,49.289307,5.47 732,-16.543293,-63.556717,55.33852,147.36082,5.421 732,114.56473,198.85757,18.860428,33.873627,5.413 732,512.37354,202.12334,23.728699,47.605545,5.391 732,-5.554452,169.06464,18.868221,42.242188,5.283 732,536.04553,309.25824,144.11102,343.67365,5.241 732,253.80614,205.79272,14.227798,26.295761,5.198 732,580.6703,218.56543,24.993103,59.960907,5.197 732,540.89856,231.90019,27.237183,74.45558,5.136 732,405.68842,247.798,29.373901,60.81311,5.127 732,-73.48118,264.59888,201.73105,464.05115,5.115 732,435.71976,232.64346,17.889008,42.461456,5.114 732,623.3868,-34.876064,26.06549,75.238045,5.111 732,595.9669,231.47876,38.336792,105.01337,5.083 732,-9.031513,184.75671,26.764631,73.29532,5.052 732,482.9873,243.39767,20.598145,52.95105,4.995 732,444.3241,251.91562,31.611511,66.19589,4.968 732,-40.64544,362.99075,111.48713,277.89145,4.943 732,-4.7028213,205.86012,17.07346,46.5681,4.914 732,451.76575,234.14691,17.120941,39.85614,4.897 733,35.4329,225.14264,34.024055,58.131897,11.239 733,508.74048,241.5038,15.928223,31.737015,7.018 733,626.92615,486.67505,20.39087,45.56006,6.68 733,-12.124489,477.74957,29.604662,63.532288,6.465 733,499.224,238.84358,16.283203,33.79689,6.3 733,360.48557,166.98953,33.71579,64.8401,6.178 733,-11.6664715,-32.41829,29.976316,71.85594,6.113 733,613.0213,453.13574,38.998108,108.90503,6.103 733,-5.648966,-17.616522,17.259577,41.708824,6.058 733,-4.613059,201.38855,17.39655,41.464783,5.965 733,627.3682,-17.619606,17.003723,45.65695,5.921 733,-6.42416,489.336,18.925636,42.762024,5.913 733,492.15167,238.29132,16.608093,35.605408,5.823 733,-0.9788966,198.3758,24.79476,65.372284,5.671 733,251.45023,217.42258,17.177032,28.85115,5.667 733,48.908215,195.79944,20.547588,28.889328,5.662 733,515.23645,239.84077,16.086243,33.0114,5.618 733,45.128445,217.22217,27.030537,44.46521,5.603 733,102.82632,202.27815,28.22866,53.361374,5.565 733,603.5476,-56.28502,52.727356,138.30165,5.475 733,54.326477,224.72849,24.127815,41.15692,5.471 733,-16.62212,-63.97538,55.284153,148.67139,5.433 733,331.01807,174.21461,19.950073,34.64389,5.4 733,42.691597,192.30913,18.43496,27.074661,5.398 733,34.54419,203.7509,20.769867,35.405792,5.361 733,258.88315,217.7579,18.71408,29.722061,5.346 733,557.0934,125.79108,28.058105,72.96124,5.237 733,20.784063,209.94681,32.863976,62.464233,5.212 733,35.337975,197.36841,17.703781,27.076553,5.179 733,623.38324,-34.79519,26.122131,75.02419,5.132 733,112.38255,207.11443,23.914673,40.69281,5.109 733,477.99902,278.6333,28.737122,67.8898,5.078 733,55.66937,211.43495,23.805515,37.49179,5.073 733,345.62415,174.36745,20.371765,35.314896,5.061 733,-21.67021,402.79086,79.00722,174.40176,4.996 733,590.3846,225.6608,12.567139,24.900726,4.957 733,362.75266,191.91632,22.137634,40.024582,4.919 733,536.5693,310.643,142.75702,341.4024,4.896 733,-73.48047,266.33774,201.33557,461.86966,4.875 733,27.373074,204.29707,19.092426,32.533432,4.819 733,40.343887,210.95197,23.686203,39.56395,4.803 733,48.969772,204.1401,21.392952,36.53241,4.799 733,252.44135,199.68335,16.478088,25.725693,4.794 733,588.83453,201.11198,15.608093,30.073364,4.794 733,582.8843,411.24207,71.74695,177.52728,4.775 733,144.17392,217.61603,24.482574,37.253418,4.769 733,3.4127712,217.74367,40.151894,98.54552,4.766 733,57.140087,194.86076,20.345005,29.555527,4.726 733,453.00992,265.92297,28.247437,59.918488,4.711 733,619.011,488.0719,19.860596,43.249817,4.709 733,434.51627,230.97678,19.63385,43.701324,4.688 733,65.84415,205.65132,20.806389,33.811264,4.656 733,98.18554,201.03502,21.33171,36.939316,4.636 733,89.983444,203.70758,20.336113,35.07068,4.613 733,9.36984,204.2273,18.759644,37.21672,4.588 733,539.70605,244.83038,18.440979,36.835022,4.555 733,105.5922,195.94531,22.205582,36.035797,4.533 733,136.239,208.06268,24.009277,33.107086,4.522 733,337.9806,211.29015,19.04654,39.600266,4.512 733,74.46686,206.37726,20.306763,32.97815,4.497 733,49.6178,233.95319,31.097416,58.034058,4.457 733,518.0932,244.72125,27.845886,56.977234,4.441 733,265.76346,216.7275,19.349792,30.150696,4.44 733,493.35178,227.63846,238.3417,514.3921,4.416 733,337.57593,188.94014,18.86676,32.71428,4.409 733,27.904587,191.82599,17.426224,26.839417,4.382 733,234.71951,217.45912,17.795502,32.608917,4.343 733,486.95233,235.74657,27.550293,63.45317,4.34 733,442.4924,233.12538,19.687347,40.44545,4.313 733,326.3306,151.01904,29.295166,57.28409,4.313 733,-10.079688,206.66235,28.565418,74.72467,4.31 733,548.9985,224.5386,13.373169,26.051208,4.294 733,65.14444,226.96472,21.587204,36.329712,4.28 733,2.7425206,184.54736,17.226814,34.786316,4.275 733,82.3976,205.08426,19.826408,34.74527,4.271 733,389.9367,185.449,27.992645,78.78854,4.27 733,582.21423,225.4693,13.107727,25.744812,4.234 733,51.82907,202.1768,38.885727,70.039444,4.23 733,17.89337,217.97845,42.414047,90.32904,4.219 733,363.96906,137.83556,31.701233,76.19243,4.188 733,18.901085,204.25192,17.903072,33.905777,4.17 733,-37.577236,-123.6054,117.42877,282.8617,4.168 733,243.01186,215.19818,17.729965,31.213867,4.147 733,74.05278,220.49918,20.533829,33.703003,4.142 733,573.84674,240.26765,13.445679,27.29625,4.138 734,376.84048,183.79018,23.402771,46.267273,8.749 734,492.0335,160.50485,29.486633,75.396454,7.306 734,68.83125,206.09093,29.75895,58.66844,7.168 734,346.3538,211.23305,17.470825,28.50148,6.63 734,368.71567,210.73773,19.782837,42.472702,6.602 734,546.51373,190.52171,17.44867,37.819717,6.471 734,613.06525,452.9742,39.091797,108.90085,6.353 734,119.5832,206.42784,27.453575,58.94481,6.312 734,-11.472843,-32.361477,29.805346,71.89321,6.27 734,419.0064,241.66684,31.61029,70.210144,6.269 734,626.9319,486.61368,20.620117,46.122406,6.201 734,7.704381,245.03577,28.349056,74.27203,5.955 734,-12.048596,476.38196,30.154137,65.656006,5.932 734,627.4009,-17.642845,16.958862,45.672348,5.892 734,-5.7323365,-17.844767,17.479885,42.10847,5.882 734,149.96626,205.96722,29.625946,64.54523,5.791 734,603.4613,-55.737617,52.97339,137.64442,5.778 734,-5.2370763,280.1483,17.219517,42.0477,5.593 734,437.19214,261.50677,28.313812,65.377655,5.584 734,145.423,210.64957,23.43776,48.358734,5.53 734,-16.568012,-63.851738,55.172478,148.44388,5.506 734,64.09653,208.82953,24.122017,39.44394,5.328 734,57.27022,214.61499,21.762035,41.74347,5.325 734,363.2344,206.9827,19.526764,35.195343,5.325 734,417.90524,227.21973,20.401703,41.867798,5.323 734,425.1223,244.61186,21.634033,45.97679,5.291 734,81.289375,193.95094,22.760963,35.172882,5.227 734,404.81586,244.85172,30.157959,60.6868,5.216 734,412.74826,225.27808,29.829102,66.319885,5.212 734,-5.495541,297.3755,18.475525,44.452393,5.21 734,52.66902,196.7773,32.334488,49.608704,5.181 734,461.27536,285.47543,32.880524,65.057465,5.153 734,623.39166,-34.802475,26.109802,75.11808,5.13 734,-72.68017,265.5041,200.48468,462.67657,5.105 734,-6.30368,488.438,19.20039,44.18225,5.079 734,2.4730058,309.53668,19.387402,50.85086,5.026 734,19.480427,245.57535,29.546604,75.06778,5.025 734,-21.467175,402.19055,78.451584,175.79962,4.99 734,547.37866,206.03857,14.85907,30.168304,4.986 734,-9.333077,291.7656,27.907742,69.96127,4.966 734,64.82411,193.46208,22.766922,34.414597,4.947 734,377.51593,218.27742,19.581665,41.57982,4.934 734,501.57202,153.18388,31.242554,77.53899,4.931 734,536.56537,310.935,142.85663,341.6148,4.873 734,385.80145,226.25493,19.786316,43.697586,4.84 734,365.3595,216.9526,27.589355,70.276764,4.802 734,542.3757,198.11664,14.96051,34.85176,4.782 734,72.6377,197.00238,23.965141,38.099472,4.776 734,86.06889,204.33481,36.102936,81.625824,4.724 734,411.1566,229.26436,19.295502,39.41954,4.713 734,101.232346,212.83852,30.148315,60.147476,4.706 734,618.87683,487.3878,20.190674,43.6586,4.691 734,346.39868,225.3316,19.588837,40.177826,4.682 734,400.99362,203.93027,22.402252,37.75264,4.681 734,582.8577,410.8756,71.954895,178.04675,4.671 734,140.12569,215.43576,30.77977,80.76523,4.67 734,375.02686,149.91518,29.052704,72.1678,4.666 734,49.316757,198.0995,22.652252,33.797836,4.507 734,81.226585,223.10709,21.45758,41.23581,4.49 734,-5.247237,186.65468,17.560349,39.607697,4.486 734,436.3518,225.82031,29.606201,69.364136,4.481 734,441.5888,252.63866,21.94049,48.161392,4.473 734,493.41882,227.90732,238.27344,513.3163,4.473 734,517.57367,166.06302,25.474365,69.87326,4.447 734,452.46893,267.35406,30.762115,65.55704,4.435 734,476.91028,226.02036,27.960754,90.56476,4.42 734,380.1878,195.25775,27.478333,58.848053,4.415 734,416.30072,261.4665,24.055908,47.227203,4.404 734,424.75854,151.54639,34.490295,74.05768,4.401 734,314.41495,204.64433,18.61084,36.207687,4.392 734,361.09686,175.3427,19.778992,35.75746,4.382 734,553.8215,197.46896,17.599304,34.453384,4.376 734,523.64056,185.67833,17.09552,44.22728,4.367 734,376.61487,203.16602,21.688995,41.303116,4.365 734,354.15646,178.94127,19.127502,33.87401,4.327 734,26.125492,201.37778,20.642292,33.87146,4.299 734,33.028744,194.1509,21.437763,30.822983,4.292 734,-4.5803733,167.52373,17.222767,44.938354,4.269 735,62.28872,205.8095,28.83799,61.21312,10.657 735,433.36057,215.59836,21.47815,40.26375,7.841 735,627.00146,487.5992,20.331604,46.046417,7.071 735,603.363,-54.544346,53.24518,137.46971,6.752 735,108.86804,205.85477,27.996704,50.66858,6.704 735,613.10205,453.47833,39.506226,108.32178,6.695 735,74.16541,215.48523,31.628128,56.910034,6.586 735,242.19711,228.3669,19.456604,35.822067,6.279 735,345.52655,212.44745,22.052765,37.97693,6.187 735,-5.6454573,-17.58044,17.348606,41.655926,6.144 735,627.41205,-17.70808,17.138855,45.75922,6.117 735,-11.497402,-32.18137,29.74819,71.271454,6.029 735,2.7401447,194.26308,29.176668,71.00844,6.005 735,4.346753,185.47057,17.571907,34.253967,5.882 735,36.189583,196.26572,30.358833,58.286697,5.836 735,393.3764,225.70227,20.2229,45.931213,5.793 735,528.3878,185.67236,21.110413,53.326508,5.691 735,515.9972,246.67314,15.620361,33.088943,5.671 735,240.22177,213.55043,21.12445,38.086243,5.624 735,-9.070535,465.21375,37.658836,91.25549,5.588 735,-6.390559,488.47864,19.073383,43.775696,5.56 735,70.666664,205.36331,25.304565,42.545944,5.52 735,-16.588932,-64.17474,55.173332,148.96005,5.503 735,-3.8485222,171.87024,16.338661,39.79065,5.475 735,509.26025,247.36948,15.358215,33.343506,5.442 735,410.39734,234.73354,20.208374,43.886917,5.291 735,618.9885,488.14133,19.942017,43.700043,5.285 735,-72.92726,265.58923,200.72382,463.67462,5.256 735,235.49911,228.4728,18.93628,38.564407,5.246 735,98.44913,211.43874,20.978378,37.655045,5.236 735,106.60092,217.3983,19.792778,36.972946,5.23 735,126.45367,207.61543,27.909004,52.09935,5.182 735,-3.0747771,241.378,28.882032,71.15895,5.09 735,-4.3531904,187.18565,16.93853,37.87625,5.089 735,143.8938,220.86728,23.477417,36.854065,5.02 735,10.343792,187.76184,18.341549,31.53772,5.01 735,536.1605,310.36108,143.80981,342.34814,4.97 735,34.260162,208.2198,42.327774,84.70073,4.95 735,623.31885,-34.8415,26.07965,75.559814,4.935 735,366.63297,214.0412,27.222565,60.47882,4.862 735,-39.648823,362.90265,110.12866,278.4577,4.852 735,582.824,411.5703,71.9281,177.14404,4.831 735,411.76437,240.00676,30.506073,65.85924,4.826 735,138.0397,213.25531,21.084625,37.07715,4.797 735,364.50497,183.2725,16.428436,26.666504,4.757 735,46.168293,201.34518,29.505993,62.578583,4.745 735,451.7804,272.22876,29.285034,65.46265,4.706 735,5.5524244,182.38354,28.458462,54.37033,4.701 735,-21.268974,402.0817,77.97232,175.93777,4.652 735,493.4369,227.31033,238.26111,514.3146,4.563 735,-5.900662,261.5569,19.390182,48.84192,4.543 735,20.385323,194.14961,38.04393,78.2025,4.54 735,518.4623,83.02081,30.254883,71.73593,4.492 735,139.55507,227.69215,32.990128,66.24815,4.477 735,330.67142,212.83789,33.629456,67.95917,4.476 735,427.25754,220.66852,19.596863,40.814636,4.469 735,88.160934,210.58696,22.576874,40.479355,4.409 735,400.80548,232.33308,21.292053,45.398117,4.407 735,521.6371,285.05,23.10321,39.173676,4.386 735,350.25824,212.97784,28.065552,58.306183,4.38 735,54.401466,194.46753,30.85099,57.760757,4.38 735,229.9251,221.51535,28.71553,58.804718,4.377 735,514.7556,282.48312,36.431274,65.630035,4.35 735,-10.51873,254.38458,29.212048,74.053894,4.327 735,12.347697,195.97752,31.930744,62.6642,4.319 735,444.27612,239.68253,31.850616,67.66168,4.272 735,1.023351,217.09436,22.410337,52.001587,4.27 735,620.0437,96.22761,17.549011,36.828285,4.248 735,-11.691902,221.53055,31.55516,72.37714,4.208 735,114.74574,236.40234,19.410965,33.40921,4.203 735,442.65552,232.18826,19.06958,40.85251,4.196 735,226.55759,232.31532,20.29071,43.020096,4.187 735,314.47543,206.48633,35.539185,61.13626,4.168 736,502.49005,218.42972,24.723755,52.554596,17.512 736,93.28508,203.87575,31.604286,59.95897,12.983 736,192.61284,212.17502,23.649399,40.179016,12.519 736,47.678646,203.47443,24.10812,47.2883,11.021 736,57.15558,208.8951,22.351646,47.16411,9.213 736,61.403652,198.8718,28.044727,60.806458,9.152 736,40.536457,209.25735,24.136166,48.354767,7.973 736,77.722725,203.31589,28.878166,60.526947,7.364 736,71.72349,204.53447,21.967049,42.71974,7.104 736,612.8655,452.80115,40.17621,108.39154,7.009 736,108.63562,201.06215,30.481659,52.463486,6.357 736,37.120346,193.44072,39.06575,81.09071,6.316 736,603.366,-54.348564,52.43927,137.24585,6.315 736,621.8335,476.7688,28.84021,66.61157,6.236 736,-11.435631,-32.338985,29.633537,71.969696,6.165 736,-5.0928807,263.2641,18.485752,41.08493,6.148 736,89.853775,201.48958,23.635147,43.683517,6.026 736,19.61612,198.67064,33.538197,59.000443,5.949 736,-5.708134,-17.649687,17.499554,42.085255,5.907 736,452.95837,236.67047,28.23236,70.83551,5.906 736,8.983147,263.13544,21.234001,35.12146,5.841 736,458.4238,252.23204,31.98639,74.60622,5.803 736,626.325,-22.52452,18.542542,55.54764,5.76 736,-8.817589,463.76987,37.50815,92.73563,5.602 736,350.1341,207.94519,27.956177,39.58719,5.525 736,64.915245,195.65405,21.816895,33.22612,5.523 736,-16.523315,-63.407795,55.161205,147.97264,5.477 736,200.71785,210.59059,20.182419,32.115158,5.426 736,617.96564,156.63077,23.251648,75.630844,5.398 736,438.01624,194.5951,30.710602,74.04288,5.373 736,404.5194,204.95041,38.56787,77.61105,5.343 736,-1.6691923,258.84842,27.598015,56.31131,5.317 736,342.81708,212.79228,38.57721,61.35457,5.259 736,-73.10601,264.4985,201.36777,464.45792,5.196 736,41.86678,195.61284,22.88039,34.215485,5.121 736,-6.026841,489.199,18.613815,43.11563,5.1 736,536.25507,309.94522,143.88928,342.20004,5.077 736,476.36127,273.69553,33.464417,70.25574,5.044 736,213.09196,223.02922,30.231873,67.357864,5.004 736,56.130516,197.00394,23.777367,39.450653,4.995 736,203.92885,202.34927,15.883987,24.305527,4.947 736,40.546097,228.40955,21.853405,42.853577,4.914 736,-40.142662,364.8266,110.71552,277.39276,4.889 736,-11.275268,238.27594,29.883873,63.394104,4.861 736,27.664528,208.94266,32.729233,77.91846,4.842 736,-21.287909,402.5345,78.527405,174.9516,4.835 736,582.70703,411.0869,72.08142,177.52832,4.793 736,619.2538,488.3051,20.020264,43.546326,4.752 736,161.8212,208.44173,20.582977,35.823273,4.677 737,61.5871,202.32343,29.369167,61.449646,9.561 737,267.4738,198.08653,19.353912,34.732407,9.544 737,71.79539,206.36385,22.527824,45.665543,9.44 737,140.98895,229.22623,32.550705,53.49991,8.899 737,57.907715,203.15767,21.925133,48.466187,7.88 737,583.8401,222.75996,24.7583,48.348557,7.56 737,75.94628,210.45947,31.797264,61.30063,6.797 737,45.187893,204.0414,29.489674,62.19908,6.614 737,611.45447,-49.16228,41.864014,103.39054,6.452 737,613.2797,451.8845,39.442566,109.979706,6.412 737,243.14299,207.59726,17.377304,29.325867,6.398 737,375.42303,212.53745,23.470032,34.22641,6.336 737,621.7387,476.38614,28.592102,67.08896,6.315 737,1.6047251,214.84155,33.52521,65.567474,6.261 737,-12.174014,478.21997,29.881474,63.75226,6.103 737,-11.552443,-32.42715,29.85088,72.239235,6.054 737,259.9745,200.94746,18.30893,31.86943,5.979 737,-0.26887536,236.48607,25.133514,70.65108,5.955 737,-5.6010256,-17.560957,17.336746,41.846172,5.881 737,586.73914,209.57985,21.141357,42.76494,5.849 737,210.771,260.9229,20.02002,40.560394,5.713 737,626.8886,-19.477268,18.127014,48.12737,5.709 737,92.696915,212.73497,30.446129,62.53218,5.586 737,-16.551344,-63.654152,55.053,148.49626,5.53 737,-3.5381289,180.7321,16.33128,40.00438,5.523 737,-6.210816,489.10306,18.702316,43.09958,5.522 737,250.3061,201.9557,16.559555,28.476166,5.52 737,40.347565,222.42339,22.97208,43.28282,5.511 737,3.4839911,204.34444,16.823828,35.4843,5.443 737,482.8915,192.31544,17.10849,36.00183,5.434 737,66.28182,222.74359,20.322716,38.635193,5.373 737,-4.315743,201.9114,16.409174,38.141174,5.286 737,358.49625,211.0514,26.068756,35.253006,5.178 737,482.23453,218.23532,34.244415,55.587555,5.146 737,-73.29891,264.43134,201.0159,464.1396,5.115 737,-21.788517,402.49005,78.54732,175.6261,5.107 737,81.823944,203.64616,20.394188,40.602753,5.042 737,23.16227,223.52496,25.693886,43.799957,4.987 737,202.18535,231.94913,20.902954,36.245087,4.958 737,221.76546,166.14635,13.82341,25.019974,4.943 737,618.7849,487.61,20.635498,43.99182,4.928 737,535.73645,310.72177,144.30151,342.9706,4.908 737,65.91402,197.35573,21.391296,39.95201,4.823 737,201.41684,217.27768,20.642853,34.64322,4.801 737,112.246124,223.68369,22.760376,36.07843,4.766 737,50.57823,231.70775,19.664322,36.471268,4.713 737,123.55379,213.84398,30.601364,54.246902,4.671 737,583.5198,408.92923,71.19,178.80319,4.656 737,368.23138,206.90091,46.14337,63.962036,4.635 737,493.06952,227.11258,238.43958,516.5371,4.615 737,211.89696,201.19736,15.320129,24.581146,4.597 737,363.6406,186.7364,29.806702,50.953857,4.569 737,570.136,205.20319,20.81372,38.214417,4.568 737,224.58199,264.19162,21.767136,36.949127,4.534 737,204.68973,201.49594,15.593185,24.403534,4.534 737,618.68774,199.92143,18.979553,45.295303,4.522 737,532.74756,160.66202,27.443726,66.09515,4.509 737,467.24603,212.32996,35.44394,49.960876,4.469 737,314.36948,220.072,22.510406,36.884964,4.46 737,51.19969,200.55598,20.024231,44.26477,4.422 737,284.496,277.48138,14.723938,26.889374,4.377 737,237.11545,208.5049,16.463943,28.610397,4.375 737,586.45087,219.75531,31.270874,72.32553,4.348 737,574.0957,228.97673,32.32422,69.66362,4.34 737,273.53836,245.13947,21.607239,33.868713,4.314 737,337.50256,207.83646,45.68506,86.98944,4.283 737,73.810905,197.43494,19.92878,32.396423,4.277 737,220.60625,196.52155,13.844452,22.66681,4.264 737,266.04462,257.54907,19.902466,31.593414,4.254 737,73.14221,234.72072,20.301712,35.522446,4.246 737,276.32825,275.15463,15.023956,29.503265,4.245 737,196.17361,213.54245,30.47203,55.714966,4.242 737,67.80919,243.35841,33.142517,59.316208,4.201 737,274.14752,259.6804,19.053345,29.269287,4.192 737,226.35193,226.20059,34.538757,62.628235,4.186 737,529.02734,165.42294,20.7854,45.830444,4.177 738,313.67822,187.57861,23.485321,41.800232,9.066 738,-12.050004,477.7601,29.854832,63.733368,7.134 738,54.820854,187.00713,27.674416,62.893906,6.869 738,90.33413,209.05948,21.466751,45.01709,6.864 738,603.3315,-56.01066,53.18579,137.56383,6.615 738,465.6396,158.95184,19.883026,40.707214,6.602 738,626.67114,488.4618,20.274902,45.713013,6.514 738,-6.2563047,488.80618,18.902374,42.955414,6.379 738,282.1618,196.11183,20.28537,35.9868,6.168 738,4.947679,171.53809,29.93033,67.61313,6.021 738,-11.445722,-32.595,29.637802,72.237785,6.02 738,274.8828,196.91508,18.548035,33.841187,5.891 738,161.9159,206.2446,17.706268,34.614746,5.877 738,-5.760143,-18.22657,17.367298,42.827847,5.846 738,458.95984,165.71884,18.561249,39.68062,5.755 738,627.3559,-17.733847,17.08252,45.722935,5.712 738,212.18399,190.84505,15.777679,29.659912,5.704 738,96.93483,216.2865,22.880493,42.037445,5.688 738,288.92514,190.66518,22.054657,40.21254,5.632 738,522.76776,167.5464,16.628662,40.04387,5.63 738,58.559074,185.93442,20.100105,38.355576,5.608 738,454.12625,143.64906,28.199677,57.87964,5.57 738,-16.623604,-63.833984,55.075478,148.73596,5.531 738,603.50653,436.60736,54.81842,137.46283,5.475 738,515.77826,167.63303,17.226562,40.02939,5.472 738,539.12836,171.5053,19.905396,41.744873,5.386 738,391.3861,177.60167,30.305664,62.011627,5.353 738,204.3506,184.74603,16.892197,28.358475,5.329 738,-5.89937,202.5471,18.01659,36.70726,5.276 738,-21.732094,403.4342,78.90528,174.97961,5.161 738,236.17664,193.29019,14.143066,26.620438,5.145 738,266.98383,186.63829,16.016998,34.343765,5.113 738,194.90617,216.97815,18.099472,29.293304,5.084 738,623.3461,-35.070564,26.159851,75.258644,5.01 738,151.16835,222.00479,23.35524,42.60797,4.983 738,491.12396,170.9604,17.752747,36.381363,4.931 738,203.77678,207.31625,17.013184,28.935776,4.927 738,370.05914,156.4335,18.897705,37.720886,4.92 738,188.21515,212.32806,17.998108,29.662857,4.917 738,-73.65311,264.77652,201.3443,463.36227,4.898 738,335.38434,406.54782,24.826294,43.527496,4.858 738,261.842,189.80794,14.859009,31.35962,4.851 738,212.22363,207.33958,16.977142,29.825226,4.815 738,362.98434,155.52454,19.72116,34.438217,4.797 738,-2.0162952,204.34982,30.044939,63.275238,4.723 738,612.2454,110.31191,27.815002,80.50059,4.722 738,219.8813,190.32942,15.374298,30.692505,4.71 738,618.2622,490.05762,20.413391,42.57306,4.705 738,474.41467,159.81448,19.530945,38.46431,4.687 738,-12.002943,190.24313,30.793474,60.080063,4.683 738,79.91704,199.74655,26.515717,54.870193,4.647 738,536.07733,312.94232,144.12238,339.91498,4.641 738,369.928,167.2931,31.177185,64.11757,4.607 738,27.888756,165.71257,32.25485,62.96089,4.551 738,259.57422,203.14618,17.143066,29.580307,4.544 738,493.12045,228.0108,238.21957,515.35266,4.533 738,50.694843,182.46957,21.186008,40.311554,4.514 738,227.56499,184.25058,16.573776,30.361343,4.484 738,69.29819,197.84431,27.374924,56.623398,4.433 738,591.9458,164.91621,26.854797,58.896347,4.421 738,585.7807,172.9339,19.688477,41.228333,4.41 738,65.379875,189.68228,18.657188,40.03459,4.382 738,41.638664,180.78123,21.918922,41.12265,4.321 738,3.8741112,209.32997,39.04086,91.620285,4.302 738,-0.44989824,143.5172,28.842497,79.3526,4.29 738,20.037521,206.75275,32.257057,61.750366,4.26 738,38.179405,186.60109,31.679405,66.02214,4.243 738,316.10828,402.45883,32.572876,58.14334,4.237 738,425.63397,220.89552,20.59909,29.199081,4.232 738,235.23904,216.07399,18.194092,28.534286,4.23 738,186.99272,222.91464,19.281082,33.73654,4.221 738,573.54987,167.6292,26.9953,58.722702,4.22 738,263.2704,176.51714,24.40744,55.41426,4.212 738,15.820681,180.56252,24.299212,44.305786,4.18 738,508.0877,169.57608,16.609314,37.28029,4.18 738,266.3204,201.34033,17.688446,30.96289,4.173 738,5.1145267,468.23456,38.314316,93.02417,4.127 738,379.25705,379.96902,17.591827,27.80893,4.12 738,497.61157,163.52864,18.52008,34.584335,4.114 738,254.11685,192.79532,13.479614,26.881073,4.096 738,-6.2149086,216.0166,18.313728,39.637314,4.047 738,1.937204,490.1467,19.438595,40.90866,4.041 738,92.15126,190.02826,16.432205,30.172775,4.021 738,423.1277,205.49686,23.398773,33.375656,4.011 738,-11.025276,137.49686,30.998983,72.16316,4.009 738,57.30545,212.9601,21.711838,41.390976,4.006 739,118.528435,213.41708,27.913506,70.66965,9.176 739,127.72358,215.35526,22.124031,50.306396,9.055 739,23.460716,217.65167,31.39465,69.21088,8.425 739,92.32529,200.41731,14.639587,25.991745,7.672 739,476.67343,187.15477,28.964203,60.730255,7.457 739,35.58685,222.7739,28.902317,66.84796,7.395 739,156.57834,214.01712,15.816376,25.764938,7.202 739,76.35888,197.32712,15.306091,28.222778,6.607 739,461.30048,183.01154,29.90268,60.077377,6.498 739,-4.81329,204.50114,16.900644,34.9664,6.475 739,-9.378327,465.56363,37.960815,90.58017,6.451 739,1.3350391,219.27582,20.370266,38.386658,6.449 739,193.7232,220.74438,20.068481,32.142136,6.333 739,185.17078,219.17543,20.673874,31.670547,6.328 739,-4.3829165,190.56337,16.522339,34.693634,6.328 739,83.8639,198.80705,15.039818,27.934494,6.283 739,440.47455,202.80112,22.940796,45.752335,6.164 739,163.25214,212.97546,16.565247,26.026123,6.106 739,179.6731,211.18164,17.557983,28.932892,6.051 739,146.96109,215.98172,18.10382,37.716064,6.045 739,-6.093776,488.5821,18.625988,42.957275,6.017 739,2.7526915,195.08868,18.17428,29.953415,5.96 739,626.7828,487.9949,20.233154,45.823517,5.936 739,5.50333,213.67688,30.68179,60.35034,5.853 739,-4.8887105,171.32916,17.621363,37.885895,5.845 739,-11.480359,-32.55433,29.717495,72.50163,5.811 739,603.4081,-55.559498,53.164062,136.83623,5.765 739,-16.97036,-64.9607,55.495667,150.18343,5.67 739,627.41815,-17.604977,16.92096,45.449364,5.58 739,-5.7507443,-18.054138,17.377216,42.856937,5.527 739,553.5204,202.80856,21.13678,36.324646,5.51 739,612.5626,456.82684,39.49231,104.661865,5.49 739,227.67763,208.2954,16.13292,31.996826,5.445 739,522.16895,180.20345,20.57788,39.364304,5.4 739,-21.408413,404.5819,78.27818,173.60901,5.365 739,-6.142704,219.98306,18.558857,41.971924,5.277 739,202.14891,222.3623,20.279663,31.978287,5.276 739,1.8149459,205.92908,17.51195,32.946426,5.265 739,69.52673,197.00157,16.277145,29.554382,5.253 739,583.1998,413.40787,71.38031,175.23587,5.219 739,172.63445,207.63148,16.065033,24.545395,5.204 739,285.25018,211.84479,15.679382,26.819,5.163 739,-72.99713,265.31952,200.73912,462.52838,5.048 739,449.60345,192.26186,22.574738,45.689865,5.0 739,187.20319,205.34047,15.786636,27.495956,4.996 739,623.2822,-34.82567,26.360718,74.6738,4.975 739,429.03784,196.2941,28.782593,54.323395,4.954 739,344.5937,204.53777,24.449097,36.46689,4.943 739,319.97125,203.0002,22.934692,38.342728,4.921 739,47.587334,221.45749,22.41903,40.673004,4.914 739,535.58057,311.41595,145.29254,340.79962,4.912 739,466.84543,205.17969,42.638367,64.956635,4.89 739,493.47083,228.16864,237.4544,513.98785,4.816 739,560.8712,200.30403,22.355957,38.312057,4.778 739,2.001344,236.85832,21.26294,40.185562,4.746 739,99.98249,200.54214,15.232849,25.486572,4.712 739,217.37079,224.8036,21.201935,29.070969,4.711 739,-8.489703,195.32373,37.441536,86.93756,4.686 739,531.5823,167.01866,19.69165,40.26985,4.683 739,70.04903,201.48128,26.99936,58.600235,4.68 739,627.704,84.95404,16.92871,42.37085,4.679 739,138.05249,214.8561,17.872711,37.741806,4.632 739,-11.395952,230.43323,40.400337,94.859375,4.62 739,514.6341,174.83783,19.888245,36.73059,4.619 739,456.74536,187.91019,21.62976,43.587296,4.598 739,170.2995,216.6638,19.486267,28.667358,4.597 739,420.5573,179.71324,28.677155,66.02109,4.586 739,140.31653,210.1672,28.564056,53.509247,4.578 739,541.2339,200.2893,30.888062,49.19133,4.578 739,453.76257,197.02661,27.347778,54.723663,4.553 739,481.77676,182.64471,22.05075,40.222992,4.535 739,181.04047,201.82909,14.401733,25.315247,4.515 740,315.90164,225.09586,16.914978,30.702301,10.98 740,622.51196,-33.048737,26.87146,78.91887,8.911 740,554.6496,202.17651,30.764526,64.17676,8.889 740,626.67255,-18.36,17.991516,49.042873,8.444 740,90.24675,226.56804,18.86428,32.32463,7.58 740,210.65775,229.28029,17.69905,28.716354,7.298 740,531.7748,190.59454,29.300293,63.03389,7.22 740,283.13135,224.51822,19.561005,37.284515,6.824 740,178.20715,224.94177,19.25235,29.434875,6.691 740,185.3731,218.69888,18.186615,31.903763,6.657 740,338.36536,214.144,19.045715,34.823227,6.536 740,234.39127,232.50356,19.380219,28.905716,6.437 740,171.13452,225.8345,18.722015,28.850128,6.423 740,529.7855,212.28545,21.675781,44.574295,6.152 740,82.2814,225.10115,19.343475,34.92943,6.129 740,173.03082,210.722,13.752228,23.73024,6.116 740,614.6442,-16.707565,27.576233,72.86857,6.104 740,-8.532306,465.72586,37.31125,90.81363,6.042 740,541.84045,202.05421,30.143433,59.16475,5.992 740,626.55554,487.90173,20.419434,45.976685,5.979 740,290.47586,222.8835,15.941864,33.17192,5.889 740,-17.363926,-65.96716,55.57522,151.2046,5.878 740,227.2052,231.05922,19.01567,30.304764,5.757 740,5.600817,194.9214,27.733797,64.368,5.609 740,-11.40987,-32.679962,29.730452,72.75344,5.606 740,92.05303,198.1134,16.822739,27.221329,5.603 740,618.4639,-19.300488,18.530945,49.133427,5.6 740,5.088596,320.94867,14.360888,29.068207,5.575 740,153.74724,228.39764,19.785156,29.853912,5.548 740,145.23958,227.0044,20.58789,34.396393,5.508 740,602.2622,-54.96391,53.349915,135.3357,5.491 740,581.69714,188.59485,28.289001,61.016632,5.468 740,548.08514,187.36403,29.860474,60.6407,5.445 740,603.53253,436.33453,54.713867,137.97552,5.435 740,35.357784,284.48447,31.99937,63.44101,5.398 740,-5.840814,-18.003088,17.502066,42.749428,5.393 740,204.69337,223.51546,17.472397,29.923935,5.393 740,218.98013,230.73862,17.846436,28.517792,5.393 740,-6.158489,489.00726,18.7202,42.605408,5.366 740,106.34219,190.52399,18.138947,29.477188,5.355 740,99.41928,197.70381,16.88327,27.481201,5.27 740,179.74026,217.10246,15.03537,26.506943,5.242 740,73.320915,226.34688,20.629692,39.132797,5.168 740,322.24805,217.77742,16.720428,30.87651,5.161 740,286.31146,216.51088,12.927948,25.406952,5.156 740,-21.534363,403.57416,78.76175,174.78302,5.118 740,121.63891,232.94843,20.990273,35.913757,5.089 740,-3.5038412,175.5483,15.046312,36.900787,5.076 740,156.49931,209.757,14.569778,25.478455,5.072 740,-73.05274,264.79703,201.1735,463.39084,5.056 740,266.00153,181.55615,19.275055,45.331787,4.935 740,197.393,208.91762,13.774902,26.279907,4.925 740,204.56296,213.21498,14.820129,28.657654,4.871 740,535.81335,311.5536,144.65295,341.0609,4.806 740,128.79527,234.14548,22.194931,36.0123,4.762 740,284.1576,202.46692,15.178497,27.411911,4.739 740,162.58707,227.6428,18.83162,28.511063,4.736 740,248.57654,233.18208,21.531158,28.486496,4.7 740,330.43298,218.2575,17.781067,31.614609,4.687 740,345.75256,212.54065,19.761688,37.510773,4.682 740,165.35722,210.57533,14.211014,24.847702,4.68 740,493.40814,228.21255,237.95782,514.5029,4.668 740,147.67035,216.45132,16.417099,28.381561,4.666 740,10.351004,203.26794,19.216196,37.42868,4.624 740,63.678898,217.38702,26.3569,56.95233,4.621 740,2.8292818,267.00793,17.782932,38.919434,4.608 740,137.38593,229.13701,22.319977,35.827652,4.58 740,11.764137,322.62857,15.046944,25.722076,4.537 740,606.2339,-34.597256,28.225525,80.86475,4.53 740,195.76468,216.98755,16.953598,32.07599,4.461 740,-3.7680187,309.93555,15.615213,36.70645,4.433 740,211.714,212.57486,15.238739,31.333939,4.415 740,610.58606,-17.036518,18.052551,44.945347,4.409 740,394.81952,206.2755,22.16278,39.757034,4.404 740,253.47823,216.18434,11.57637,23.357376,4.401 740,190.12411,210.31,13.519699,24.643524,4.4 740,-5.007624,155.20482,16.981737,41.070526,4.397 740,585.83673,184.76395,20.717896,42.567932,4.372 740,540.4585,183.88873,54.952698,99.25168,4.371 740,561.1991,197.20668,22.188477,39.033325,4.367 740,66.081635,198.59303,18.180511,30.12085,4.365 741,199.2966,218.74374,20.748016,36.036057,9.659 741,331.0948,222.27815,20.392365,33.536285,9.385 741,86.299164,203.6876,31.512909,60.670853,7.964 741,164.7322,220.34761,16.816254,27.98352,7.186 741,196.08679,211.95526,18.229706,33.0412,7.101 741,1.5374172,236.79785,32.044197,76.40265,6.886 741,627.24536,-15.871912,17.169434,43.399048,6.868 741,170.60022,226.05807,18.483353,28.207642,6.708 741,203.61742,207.6167,15.362167,28.005356,6.643 741,229.75233,207.057,12.640839,26.905945,6.57 741,-6.2393484,488.6756,18.91879,42.78827,6.377 741,-17.455442,-66.44435,55.721115,151.99544,6.372 741,612.4792,457.33954,40.03656,103.081055,6.326 741,-11.673641,476.98502,29.512714,64.30551,6.275 741,81.263664,219.98282,43.298775,63.490845,6.251 741,566.4198,203.2456,31.355225,65.83551,6.063 741,611.6381,-47.194374,40.632324,101.82691,5.972 741,227.5566,215.36719,16.736954,34.589157,5.964 741,105.70393,196.9181,19.249237,30.22876,5.768 741,146.02368,226.12463,20.06485,31.579926,5.737 741,227.8031,232.0247,16.925507,25.621872,5.695 741,234.08542,234.33171,17.597794,23.694107,5.693 741,259.13882,222.49345,18.304688,32.387466,5.669 741,301.45212,215.9651,14.211517,25.908981,5.613 741,-11.378748,-32.58525,29.655825,72.67473,5.563 741,619.4166,-1.7824764,17.798645,39.15387,5.557 741,435.6926,209.69417,15.220734,29.551239,5.547 741,-5.7318583,-17.85014,17.33772,42.698902,5.544 741,626.2682,487.14487,21.150757,47.248627,5.403 741,139.64635,192.6807,16.038666,27.966278,5.376 741,616.1974,201.76434,24.595764,68.27667,5.376 741,221.71709,207.4644,13.152023,26.319,5.361 741,583.28784,413.45837,71.54541,174.8855,5.354 741,343.8818,214.72185,21.611908,37.128174,5.322 741,7.9207506,161.4543,25.055546,64.34712,5.305 741,299.32425,226.20514,21.62085,37.458923,5.281 741,459.97787,205.18344,17.159851,35.034958,5.272 741,97.400475,189.69469,19.73256,32.29297,5.268 741,186.46303,229.2628,19.42038,28.319778,5.268 741,255.16315,205.54301,11.742401,27.361282,5.257 741,178.59644,223.81038,18.401276,28.706528,5.247 741,237.49002,207.28242,11.784103,25.799698,5.208 741,587.49756,204.29799,30.262085,56.37181,5.197 741,155.57428,180.00098,17.49295,32.096695,5.148 741,147.87631,193.08525,15.294174,26.404724,5.102 741,59.57176,157.5201,32.78825,60.628143,5.079 741,124.02938,191.01465,17.48066,29.399261,5.061 741,-39.292015,368.37167,109.2269,275.06815,5.053 741,-73.15822,265.74902,201.00229,462.5526,5.047 741,220.57892,214.86191,17.045227,33.941864,5.044 741,139.70552,204.601,15.543869,28.755905,5.038 741,361.3309,211.2641,21.63324,37.635147,5.028 741,-4.4932694,171.4256,16.450483,43.066193,5.024 741,352.3783,208.0358,22.43042,37.638367,4.997 741,44.03791,156.80927,31.07959,63.702255,4.992 741,-16.988789,437.71967,54.7255,138.55841,4.97 741,260.4546,207.58669,12.342926,26.127716,4.957 741,165.18298,203.18008,13.612656,23.428177,4.937 741,450.63312,203.71051,16.713257,30.043869,4.932 741,157.2941,218.53044,17.28215,30.03189,4.931 741,553.74805,137.40411,21.375122,39.780807,4.922 741,128.44423,235.47609,21.38295,35.442093,4.898 741,98.49568,197.28558,30.954391,55.49669,4.889 741,-5.1728754,220.11502,17.488308,37.54544,4.874 741,87.03507,233.56454,24.61657,35.668182,4.845 741,377.6147,197.20761,21.16388,41.057648,4.833 741,540.5007,129.43869,30.136047,55.610657,4.802 741,429.8647,202.92967,15.893555,33.978394,4.79 741,137.81987,235.65292,20.989853,34.21823,4.789 741,21.425854,157.35115,29.497677,63.926804,4.761 741,171.84348,216.47198,14.620392,25.389587,4.742 741,209.55759,213.02713,18.502502,36.036026,4.726 741,561.7325,137.2349,21.243774,41.3096,4.714 741,166.62492,152.2568,29.335434,65.49791,4.71 741,117.31294,226.20724,29.197891,50.825714,4.709 741,188.96132,216.73872,18.894989,32.714417,4.688 741,86.46188,179.55388,28.465225,55.36769,4.676 741,535.525,312.40314,144.81372,340.12018,4.664 741,105.76539,182.2624,19.6678,31.832764,4.658 741,52.038746,173.8386,29.930935,57.538437,4.658 741,132.40088,198.99118,16.551117,27.882416,4.63 741,493.21252,227.58365,238.10413,515.001,4.606 741,57.106285,160.4213,21.535767,36.056946,4.606 741,171.22305,163.53268,19.811218,42.61371,4.602 741,265.89908,221.46356,17.759857,31.793976,4.596 741,573.52185,153.52023,28.828918,60.387726,4.594 741,4.276071,166.5831,16.397022,41.489655,4.583 742,80.58447,213.3066,21.615036,36.929047,11.965 742,337.7907,201.39186,21.76529,39.077896,9.831 742,225.85564,207.60349,19.913086,32.612244,9.631 742,304.75903,202.34924,21.419373,46.671127,9.355 742,169.76816,204.80046,21.491608,32.602066,8.673 742,489.58847,159.76918,19.553955,46.820908,8.294 742,40.11718,213.08855,23.557995,35.36325,7.961 742,260.16904,190.10359,16.722198,36.830704,7.645 742,209.26059,205.44809,21.212616,31.768631,7.448 742,219.12056,211.25752,18.488052,30.237122,7.334 742,407.4098,153.91635,34.595764,77.45033,7.19 742,58.069386,211.58316,18.874493,31.332779,6.97 742,24.050558,211.91751,24.545118,36.919464,6.911 742,506.1623,165.33728,19.385315,38.7209,6.838 742,201.60484,206.01398,20.890518,30.406921,6.809 742,496.5576,163.46974,19.809418,42.176483,6.748 742,18.27443,121.429855,34.48171,67.141815,6.628 742,521.99524,171.28532,20.665222,36.997772,6.469 742,185.32574,206.83107,21.799622,30.468903,6.406 742,267.56952,189.27446,15.970551,36.436264,6.364 742,-16.879652,-64.49988,55.71311,148.35474,6.341 742,193.5517,201.3614,20.492325,31.087845,6.318 742,-8.711829,465.29465,37.542088,91.31491,6.267 742,603.5999,-54.17399,52.720764,135.61308,6.244 742,-0.68449974,119.62961,29.38217,72.05713,6.244 742,621.6011,476.76385,29.033752,67.88916,6.173 742,66.32633,211.16882,18.16671,31.583496,6.122 742,-6.7560444,121.45123,20.739674,43.567383,6.045 742,233.82826,208.31021,18.304153,31.311401,6.004 742,-11.373341,-32.406475,29.396198,71.98257,5.984 742,344.69058,190.49055,22.411774,39.059128,5.954 742,-5.707915,-18.059553,17.229227,42.950237,5.935 742,249.09349,214.14047,24.064316,37.374496,5.828 742,177.1235,211.64351,20.751343,28.243622,5.811 742,-12.132044,110.18184,32.188263,67.96333,5.734 742,299.68134,197.08295,17.373535,31.76944,5.711 742,-6.195297,489.06833,18.901396,42.340668,5.674 742,2.4283051,208.03369,18.796778,32.83156,5.627 742,253.92456,189.60246,16.398285,36.094757,5.587 742,-21.557007,403.75638,78.38318,174.89413,5.583 742,603.19525,434.8735,55.765198,139.65555,5.547 742,59.275322,174.04707,19.187119,30.216095,5.533 742,116.07091,167.82419,17.20369,29.847595,5.473 742,58.266525,156.02892,20.103401,33.578995,5.368 742,627.1486,-17.817657,17.446106,45.665943,5.355 742,116.33446,208.26402,29.528305,51.074112,5.179 742,-6.18575,137.72127,19.115341,44.49971,5.164 742,514.8613,165.48958,20.23169,38.94261,5.13 742,84.08233,189.46736,15.770485,30.118378,5.097 742,42.19178,108.723404,35.426796,67.463486,5.083 742,131.01846,167.46793,16.489029,29.434784,5.053 742,486.5077,169.09334,26.302063,60.791153,5.05 742,123.772446,168.21315,16.193161,28.499466,5.041 742,76.913925,183.2119,15.937981,28.780212,5.0 742,391.08942,160.46071,30.570465,66.046616,5.0 742,514.3574,182.05345,21.742981,40.838516,4.969 742,-73.15028,266.71185,200.62767,459.8659,4.967 742,43.98369,202.75177,30.465553,48.016098,4.909 742,32.791084,140.67673,22.09148,39.729034,4.852 742,276.38272,190.41872,14.873016,36.20822,4.823 742,1.92029,209.19533,41.613754,86.67259,4.785 742,32.191933,208.81302,25.096802,33.51039,4.775 742,35.757614,130.05115,32.180275,65.6671,4.732 742,108.04535,168.34103,16.87497,29.08377,4.727 742,214.18175,189.12222,11.914734,22.739319,4.721 742,87.644424,221.48943,21.097641,32.579758,4.71 743,39.140656,203.29582,24.454182,48.955338,14.986 743,188.84845,233.90408,16.393234,26.058441,9.545 743,235.22696,234.69946,16.718094,28.588379,8.787 743,226.71416,227.86107,17.114899,30.748032,7.826 743,195.13934,236.87495,16.347763,23.102066,7.387 743,181.34384,227.28113,16.304749,27.15184,7.276 743,586.20996,198.59035,20.729614,46.35704,7.247 743,447.15247,194.55992,24.351257,53.978806,7.201 743,536.562,197.67133,22.19336,38.94455,7.162 743,6.541598,209.15308,28.352194,67.220245,7.001 743,573.4426,184.95995,28.46997,63.517365,6.76 743,15.9979105,215.13196,23.623207,46.688416,6.62 743,-5.321927,140.99678,18.73716,38.128677,6.5 743,-11.999443,477.7828,29.732517,63.383392,6.487 743,104.56437,233.44614,22.846176,37.264587,6.385 743,-17.68541,-64.51266,56.489,150.08205,6.369 743,603.6635,-53.616257,52.395935,136.33488,6.129 743,220.00328,229.09923,16.229462,28.295425,6.089 743,108.76828,200.30887,14.962387,25.861343,6.085 743,-6.099058,488.71835,18.651314,42.51303,5.929 743,22.403275,208.86885,26.762737,45.29019,5.838 743,409.54178,146.30112,57.58197,123.45575,5.837 743,1.6515231,142.93127,20.611324,36.816956,5.812 743,172.7012,226.96768,16.066422,29.218964,5.722 743,203.77646,229.88345,16.013443,26.657898,5.701 743,621.749,477.9132,29.074951,66.75586,5.679 743,488.3681,167.08565,26.654358,76.018326,5.667 743,-5.3493524,243.6687,18.881857,46.44751,5.645 743,-1.022085,233.45294,26.577276,62.9115,5.572 743,594.73334,199.13885,19.624512,43.21939,5.562 743,21.953974,199.13536,36.80008,78.47261,5.534 743,-4.4060855,162.71027,17.326025,42.72171,5.526 743,173.63435,208.47766,12.517593,20.485077,5.494 743,188.96303,217.33287,13.502319,24.554092,5.494 743,351.8327,208.88567,24.39383,43.39032,5.444 743,-12.089171,121.19949,31.755955,63.443665,5.441 743,182.1482,215.67809,12.849304,24.960236,5.425 743,627.39685,-17.833458,17.226624,45.308266,5.368 743,-11.263962,-32.598362,29.544868,73.70404,5.366 743,583.2318,413.418,71.43787,175.24643,5.332 743,1.7983043,228.90579,39.81496,88.67038,5.293 743,-21.489872,404.52704,78.50273,174.04523,5.286 743,285.1362,213.99716,14.648712,27.99643,5.277 743,45.85064,196.73967,22.500114,42.416473,5.258 743,-5.90713,-18.366156,17.620625,43.34356,5.203 743,-73.31867,265.73523,201.26834,462.34424,5.175 743,582.71484,202.92653,28.583557,64.69429,5.146 743,277.32556,213.761,13.941742,26.98111,5.077 743,408.85626,180.16547,30.922241,79.1015,5.074 743,268.39777,215.31944,15.407135,31.916595,5.067 743,-13.969479,191.53201,47.83398,127.7023,5.049 743,571.299,176.63148,19.588928,35.87166,5.032 743,246.75722,212.24646,12.211685,26.059479,5.019 743,47.494003,213.15381,20.851265,41.107162,5.019 743,-5.457472,126.64673,18.969326,37.85086,4.959 743,35.34587,209.32367,36.624794,73.66168,4.95 743,101.23697,199.39932,14.956352,27.060272,4.919 743,497.70123,196.78186,18.492249,44.454422,4.913 743,425.7346,179.76428,32.15161,78.88373,4.862 743,440.20688,161.40735,33.951324,86.11441,4.844 743,-9.933418,143.45865,27.97571,67.238434,4.842 743,567.1169,197.56175,26.104187,61.532455,4.823 743,-10.54738,205.66696,29.124914,70.18695,4.822 743,36.545624,149.27232,33.961678,62.222137,4.822 743,115.52437,191.4037,15.856842,28.698868,4.791 743,515.18304,199.22768,18.200378,41.534805,4.776 743,-5.5031567,299.64502,17.278725,37.782593,4.742 743,535.5517,312.07333,144.49469,340.2664,4.738 743,-3.860457,190.98892,15.743948,37.077255,4.71 743,493.3049,228.63391,237.42441,514.0416,4.704 743,439.98157,161.62352,57.156647,117.35939,4.681 743,145.79784,241.69908,20.192825,32.63771,4.644 743,521.0258,262.67065,22.389221,28.768585,4.635 744,409.33612,198.16519,19.071503,42.403473,14.164 744,144.43718,231.72177,20.792435,32.6586,11.997 744,489.5766,159.97159,34.749756,88.06406,9.873 744,627.60913,-14.260173,16.153198,42.434868,7.7 744,560.8014,182.50267,23.637634,46.033295,7.29 744,368.02917,205.40598,22.394165,39.310165,7.202 744,248.5093,223.35995,21.090866,36.49759,6.985 744,201.65498,228.57764,21.156448,32.437225,6.731 744,-5.755535,-18.661083,17.80304,44.170826,6.641 744,-10.692366,-31.466787,28.76498,68.32497,6.561 744,-5.0438423,99.15815,17.915968,41.2201,6.526 744,-8.70092,466.05637,37.558147,90.42642,6.162 744,6.7734313,154.77177,30.052313,63.3853,6.128 744,623.4637,-33.671974,25.995422,76.722206,6.081 744,395.21063,198.27408,18.986755,40.287155,6.042 744,-4.9309487,200.07924,17.009026,41.895187,5.978 744,1.9348401,185.47926,19.238623,41.410446,5.962 744,472.85352,146.02664,58.34955,123.57941,5.8 744,528.9613,176.45944,33.346558,74.775665,5.8 744,612.4738,456.371,39.83136,105.08469,5.721 744,1.0160649,164.8844,21.246607,39.610504,5.602 744,626.48987,487.67654,20.630127,46.65567,5.591 744,329.7196,212.4649,23.391357,46.832977,5.545 744,25.368567,188.50104,20.725279,36.599823,5.535 744,-17.136005,-64.291374,55.300392,144.39304,5.49 744,-6.2706413,489.20468,18.931885,42.237762,5.489 744,457.52396,156.66771,35.01169,93.86546,5.489 744,-21.528845,404.24863,78.53886,174.28818,5.486 744,269.03436,219.12393,26.477234,56.1911,5.451 744,139.08246,227.14546,20.379425,31.970901,5.378 744,318.83734,208.83615,28.373505,58.960175,5.305 744,9.624212,191.55093,21.283716,43.03221,5.27 744,553.2555,176.6116,22.067383,44.84224,5.264 744,583.0978,413.26306,71.64429,175.36902,5.252 744,603.2207,-52.686554,52.783264,131.8786,5.251 744,-73.28182,265.18784,201.24832,463.17325,5.205 744,386.95926,199.67535,19.579895,38.590347,5.186 744,-4.623231,185.69748,17.028301,39.649445,5.165 744,14.133664,178.67393,30.457176,56.569855,5.124 744,99.9433,183.74084,16.832985,29.884644,5.123 744,153.13507,227.08139,19.329346,29.669556,5.087 744,476.07785,164.27213,35.402527,84.72768,5.068 744,1.0183,242.73914,21.71922,40.892395,5.012 744,-5.058264,122.20188,16.978382,38.475273,5.008 744,19.305517,161.26085,33.460793,56.247955,4.939 744,162.70876,226.07329,18.13411,29.450546,4.88 744,370.5458,197.06004,17.628387,29.947327,4.859 744,620.0029,-11.86971,15.245728,38.370415,4.825 744,299.14206,225.26668,18.338165,33.518356,4.825 744,572.25653,178.58629,28.725098,56.72191,4.811 744,-4.4154882,219.63245,16.224586,38.203186,4.795 744,535.4814,311.97833,144.4118,340.60663,4.794 744,363.18152,217.7172,29.912933,60.05194,4.793 744,2.5463896,101.379135,18.63121,38.77687,4.774 744,404.9395,196.00735,16.58844,35.112534,4.74 744,252.99585,214.74924,27.778503,53.12027,4.7 744,585.6968,271.90857,19.92041,29.424683,4.678 744,536.7207,198.62541,33.967712,71.14607,4.635 744,493.2232,228.53763,237.76038,514.2638,4.617 744,218.42833,231.17355,18.819809,28.377869,4.611 744,-4.400708,155.28326,17.839008,41.213745,4.586 744,488.5127,168.6808,59.075195,116.24138,4.563 744,-5.6068206,246.73256,19.004791,39.98265,4.534 744,4.719727,127.62685,30.599072,70.19321,4.533 744,521.4069,157.25163,55.29718,114.63228,4.516 744,399.29593,196.43164,26.172028,54.662888,4.516 744,541.0466,166.40315,30.543518,68.16174,4.512 744,588.3059,104.31673,17.627136,35.530563,4.497 744,443.86295,163.35538,57.661835,124.58591,4.474 745,405.11215,202.41954,18.062103,39.549164,14.412 745,151.10165,221.53583,25.219116,40.47699,10.818 745,308.19968,204.32526,31.33023,63.53604,9.689 745,561.7489,181.33687,21.697021,46.745834,9.445 745,523.0115,163.18497,33.881348,72.76715,9.37 745,348.22128,206.2357,33.384552,69.67134,8.205 745,-6.121335,-19.126228,18.82888,44.294125,7.891 745,-0.39439678,254.63747,28.046604,86.7531,7.562 745,234.19086,217.70383,20.785736,36.67517,7.535 745,-11.343617,-32.665253,29.860672,68.881454,7.175 745,373.08212,201.05893,30.07489,65.282104,7.029 745,286.2779,213.31233,27.770905,58.442825,6.856 745,569.77203,192.9101,19.405762,40.890793,6.84 745,38.40267,-34.400562,29.313652,66.11485,6.729 745,282.84167,218.37077,19.694153,38.87523,6.596 745,409.98608,194.53683,17.942505,36.100494,6.538 745,70.221,-34.398014,28.680359,70.811195,6.423 745,555.49023,198.01773,19.742676,38.753296,6.389 745,507.75122,-14.415302,16.559265,33.205303,6.388 745,467.7755,142.5528,65.26715,136.35211,6.375 745,530.07007,190.38367,21.320251,42.675537,6.348 745,426.24588,196.64578,19.09607,42.83188,6.324 745,543.1312,-35.04162,26.980835,72.09661,6.3 745,621.57355,477.19836,29.027649,67.27173,6.296 745,539.16473,-16.508543,17.038391,37.86089,6.28 745,499.83707,-13.941605,16.760101,32.64013,6.265 745,53.62234,-32.48945,29.169346,64.963585,6.203 745,491.83252,-14.670405,16.686584,32.46711,6.146 745,241.5555,213.10902,17.33574,37.021957,6.086 745,506.00125,171.28226,34.03586,71.22775,6.077 745,-11.783876,477.77353,29.968653,63.485138,5.978 745,547.0911,-17.685297,17.920227,42.26171,5.968 745,532.52515,144.33698,31.369019,80.44296,5.909 745,318.54025,216.26393,23.85614,44.307785,5.908 745,510.40808,-33.47094,28.18451,62.787693,5.891 745,-6.0378036,489.1131,18.934143,42.006348,5.889 745,458.88882,-17.705446,17.961914,35.9437,5.831 745,238.38927,207.04082,13.428848,25.180054,5.83 745,515.5387,-14.4380455,16.734802,33.76052,5.798 745,442.2623,-17.75929,19.09787,36.647263,5.792 745,260.87762,210.93527,14.375305,33.38968,5.789 745,85.29022,-35.896725,28.757019,69.17664,5.782 745,483.81946,-14.78939,17.033325,33.085945,5.768 745,-3.8807077,156.86807,16.079853,37.5455,5.754 745,555.1181,-21.118267,32.22766,77.50402,5.653 745,-2.7726862,175.42229,14.402302,34.31961,5.653 745,172.9493,-35.353737,30.69809,71.01695,5.649 745,475.6982,-16.060894,17.067108,34.486958,5.633 745,494.45245,-33.644897,28.169922,60.42427,5.622 745,627.2212,-18.08891,17.469055,47.699165,5.558 745,450.56683,-17.399418,18.696167,36.464195,5.52 745,531.7559,-14.582295,16.861206,34.995556,5.497 745,156.88136,-35.170803,30.622925,71.75885,5.484 745,467.5473,-16.907618,17.464294,35.455273,5.48 745,305.3735,218.21382,23.08963,45.0905,5.454 745,526.8536,-34.320522,27.573181,63.332172,5.427 745,209.05933,224.9499,20.45105,29.095413,5.392 745,-73.46,264.35214,201.79669,464.99442,5.389 745,324.09027,209.13474,32.467194,62.328766,5.379 745,268.71558,206.71263,13.674805,24.801895,5.362 745,252.93489,209.26575,13.459427,30.480469,5.36 745,491.14844,159.58269,34.470337,84.59129,5.324 745,478.4531,-34.48239,28.394928,60.77865,5.319 745,603.3152,434.02374,55.667847,140.32635,5.24 745,296.56375,214.17537,23.787323,42.887863,5.231 745,489.74188,-180.31084,235.5351,426.77786,5.224 745,622.89154,-33.38222,26.308655,76.70807,5.217 745,434.26245,-17.534079,19.299377,37.12902,5.214 745,5.595125,-34.65352,28.831266,66.195404,5.206 745,-18.43514,-63.21748,56.603226,147.20976,5.206 745,20.946808,-35.905487,29.303848,62.889904,5.188 745,426.11282,-17.849613,19.251526,37.899586,5.173 745,126.3303,204.8137,12.237648,24.46579,5.164 745,397.20685,201.49554,18.888855,40.455124,5.158 745,244.38904,206.37918,13.317505,26.968262,5.154 745,100.46184,-34.510895,30.625214,66.15219,5.154 745,133.25224,-34.845436,29.748398,74.74855,5.132 745,54.543816,202.71095,28.732079,54.41774,5.105 745,523.81055,-14.900991,16.603088,34.24862,5.092 746,387.08035,201.48492,20.797638,39.96591,46.637 746,137.47246,225.43222,23.097122,35.511993,26.198 746,537.94226,158.29892,35.50293,65.621185,11.741 746,1.6526532,182.46939,19.368912,43.507263,11.025 746,170.79407,216.13313,31.682419,60.2881,10.274 746,423.5759,201.8777,23.770874,54.744553,9.455 746,528.0459,153.48566,47.877808,113.71399,9.436 746,378.77,202.41997,21.121735,44.11589,9.146 746,292.35294,203.46597,29.518127,64.74533,9.035 746,594.24994,195.13486,18.86853,28.931366,7.901 746,370.6225,203.0949,20.774597,46.03656,7.683 746,151.8273,226.16692,22.23111,31.29042,7.38 746,180.98392,214.37146,26.592712,45.459198,7.128 746,392.67685,196.26926,19.977936,36.507202,6.696 746,551.4803,161.74194,34.060486,71.903564,6.64 746,-11.266857,479.813,29.077492,62.685425,6.57 746,-5.940976,489.56445,18.57196,41.221313,6.445 746,494.41077,153.95935,51.76758,110.41736,6.414 746,244.85048,216.5997,30.522964,62.24176,6.357 746,623.17834,-34.353554,26.26538,76.1745,6.333 746,-3.0989594,172.93881,17.684128,41.639435,6.308 746,400.41565,197.01863,18.830109,36.714386,6.253 746,334.35016,208.59616,29.330505,67.12335,6.24 746,-0.4225552,185.29347,26.017887,66.280075,6.118 746,-5.2582207,-17.058306,16.852089,40.715946,6.026 746,259.4034,213.5449,31.434784,59.075302,5.952 746,308.43298,209.04715,30.154663,62.514008,5.868 746,-11.444485,-31.858624,29.395206,70.43948,5.674 746,627.23785,-19.146448,17.870422,47.96039,5.656 746,626.5605,487.84244,20.506226,46.24283,5.579 746,271.22607,219.94948,25.06601,46.225906,5.522 746,337.12296,203.78674,21.0542,42.84587,5.491 746,304.68015,219.30284,21.907837,45.04091,5.448 746,-7.406018,153.18748,26.85051,67.24745,5.377 746,612.83484,455.23602,39.33185,106.99536,5.294 746,467.82104,157.6926,70.07324,134.639,5.212 746,-17.076502,-64.484505,54.82328,149.02783,5.194 746,275.515,210.97961,32.878174,61.630585,5.184 746,-73.36053,264.70044,201.5924,464.08832,5.179 746,590.44147,204.31702,16.732666,30.78511,5.158 746,428.5167,208.9967,28.73993,68.593506,5.14 746,475.65607,119.79828,31.597992,81.119965,5.125 746,345.94104,202.41092,21.6474,40.45674,5.124 746,582.9837,413.45746,71.566345,174.80896,5.072 746,568.11145,172.89728,22.38623,43.927765,5.05 746,349.61084,197.97722,29.123962,60.086563,5.046 747,386.82,198.00957,20.119507,43.499557,57.066 747,426.78406,203.46765,19.164886,38.716843,29.285 747,366.64667,202.0758,23.073975,51.623886,22.711 747,134.71173,215.4471,26.389679,46.776413,14.562 747,440.4585,198.52676,20.265717,48.133835,13.383 747,447.67227,193.61282,25.879395,73.2789,12.518 747,433.56104,202.03723,20.50528,40.548386,11.362 747,421.56073,201.71481,16.680847,34.121765,8.166 747,217.64465,219.16031,21.653564,42.68454,7.604 747,297.9192,216.16556,20.786285,41.249695,7.501 747,185.89316,220.87502,19.882843,40.496933,7.453 747,280.04248,199.33005,23.504913,36.56122,7.263 747,346.30978,208.48828,19.660706,50.326233,7.104 747,225.37498,219.42313,22.250412,45.84967,7.023 747,179.83139,205.70625,19.258667,38.367035,6.971 747,289.72702,215.21661,20.958984,41.33194,6.822 747,626.7471,487.6869,20.347412,46.50476,6.729 747,377.28857,200.48253,22.532715,48.518066,6.72 747,277.58276,204.59315,28.565063,59.86763,6.645 747,323.76813,220.73227,18.46582,43.11331,6.603 747,622.1021,-34.544544,26.873657,78.34843,6.529 747,208.36725,213.20303,26.568527,59.01053,6.48 747,350.63556,200.98186,28.564697,67.68129,6.392 747,-12.30352,478.5282,30.68124,62.261475,6.383 747,174.30063,207.04959,28.55133,55.654266,6.373 747,460.30826,185.27353,28.759491,77.74393,6.213 747,361.50397,197.43689,20.498535,44.533615,6.149 747,-17.135174,-64.90564,55.50971,150.19821,6.139 747,429.63983,204.83928,29.192322,60.637344,6.127 747,311.09717,202.34589,26.242004,64.61438,6.115 747,-4.227832,164.086,15.9824,41.293777,6.078 747,-6.383256,489.2926,19.064198,42.273193,6.062 747,553.14856,160.50755,58.98712,136.7206,5.998 747,626.6958,-21.122944,18.113708,51.119904,5.993 747,456.27252,190.51482,23.11023,54.21376,5.766 747,532.1398,-16.396954,33.47467,67.31882,5.665 747,392.34283,194.43523,18.003693,35.01686,5.56 747,612.7117,456.73236,39.24695,103.982666,5.506 747,159.6081,214.70969,23.783752,44.139557,5.494 747,170.95758,209.35548,21.657959,42.07312,5.471 747,-5.719392,-17.953466,17.37415,42.7194,5.468 747,411.16968,183.0202,16.017212,26.606918,5.44 747,-3.8514538,191.2821,14.992334,37.016357,5.382 747,145.91074,212.4203,32.2556,59.108627,5.36 747,-11.344709,-32.23006,29.571562,72.31517,5.359 747,-4.256923,204.31808,15.813208,38.164307,5.35 747,519.05725,86.67398,25.808044,72.403625,5.336 747,503.6339,-0.6876087,34.87317,64.526,5.321 747,-73.71434,264.292,201.69525,464.9806,5.253 747,228.30447,218.89684,28.815308,67.15871,5.214 747,526.03033,97.12825,26.442566,76.59946,5.186 747,202.93475,220.8386,19.703522,40.02289,5.178 747,-5.159073,220.80368,16.859205,37.612213,5.172 747,491.08472,260.57092,16.250153,28.260956,5.171 747,507.44202,-32.492775,30.828308,74.92341,5.146 747,334.49493,202.28476,26.261108,73.16989,5.114 747,583.0887,413.5042,71.546326,175.05792,5.082 748,457.71533,205.47816,21.177765,42.686844,82.471 748,428.69556,199.56776,19.66806,36.447647,20.769 748,399.02682,203.95013,21.07425,42.890198,19.347 748,507.33218,200.53769,17.272797,42.135574,13.684 748,386.2978,205.95293,20.722626,50.6024,12.707 748,442.42786,199.82469,17.93219,36.26219,11.301 748,369.13574,197.16173,18.82135,46.581497,11.279 748,484.94153,199.63248,17.837158,38.442017,10.853 748,499.82104,201.57237,17.937378,40.114853,7.888 748,145.11258,216.2668,20.985352,40.606827,7.823 748,185.56223,217.28311,22.820435,34.414337,7.732 748,396.22064,198.98897,17.992126,31.66365,7.331 748,122.986,223.29955,20.027382,32.38263,7.248 748,136.98071,218.2696,21.539307,38.407516,6.953 748,153.28471,217.50755,21.666138,37.77147,6.508 748,114.91716,223.17,19.295105,29.916,6.441 748,160.6994,210.15503,21.61232,42.62422,6.366 748,129.31604,220.01965,21.304504,37.19336,6.32 748,358.00784,196.61017,26.384277,77.504364,6.299 748,626.73566,488.1019,20.352966,45.166046,6.258 748,602.264,-57.62141,53.987854,138.7777,6.119 748,-17.045282,-64.967995,55.29754,150.11888,6.057 748,377.90094,201.20093,18.04544,43.238922,6.03 748,-8.76289,463.96362,37.29402,92.484375,6.004 748,451.3728,200.3685,18.863281,40.09906,5.965 748,489.81567,194.45255,19.079437,37.268265,5.902 748,617.41315,63.71625,20.883728,59.860363,5.864 748,433.65515,206.00046,20.044983,35.32254,5.741 748,612.78046,455.4154,39.3067,106.609924,5.73 748,317.74966,214.51195,16.935974,40.595,5.637 748,193.74207,221.5222,20.638214,35.884567,5.604 748,298.3033,210.22974,18.656708,41.415497,5.591 748,291.52594,207.81259,18.386292,37.847168,5.513 748,-5.681763,-18.029118,17.368639,42.97868,5.456 748,508.28677,184.61066,27.724213,57.623978,5.429 748,622.32385,-32.91964,27.443054,75.640755,5.419 748,177.54962,215.96097,22.014404,38.382553,5.407 748,-11.364731,-32.601566,29.581514,72.949326,5.4 748,515.1429,209.06403,18.48639,46.264664,5.322 748,362.2506,189.94876,21.182037,46.814957,5.32 748,388.05115,196.58618,17.557098,33.06389,5.314 748,-6.09027,489.92682,18.402233,41.835144,5.307 748,179.75735,218.44122,31.570755,55.169952,5.281 748,-73.34731,265.10242,201.64859,464.1665,5.251 748,626.9795,-18.840822,17.93103,47.46437,5.237 748,307.58112,209.51843,17.96228,41.920425,5.088 748,321.19644,202.69342,18.400696,44.123276,5.039 748,221.56857,201.67413,13.409882,22.016296,5.034 748,583.1008,412.09024,71.53381,176.46817,4.974 748,106.453156,224.54945,18.730637,28.245392,4.973 748,474.51752,201.46938,19.428253,41.4749,4.945 748,-21.316284,403.39703,78.186844,174.76483,4.926 748,90.31807,219.71605,32.07612,48.67668,4.91 748,283.29587,212.4468,18.504974,38.657593,4.909 748,-40.034847,366.01965,110.24808,277.14453,4.909 748,11.531511,211.47354,15.571737,32.50229,4.894 748,334.15268,202.60995,27.398163,76.801575,4.888 748,4.087652,190.8215,16.284018,31.662216,4.826 748,585.42664,-103.075356,76.60449,237.61667,4.795 748,388.4959,206.45226,37.388,72.35985,4.766 748,9.968794,220.48743,17.884901,38.87314,4.758 749,507.4566,205.55536,25.990051,56.89435,76.758 749,458.47766,202.64198,17.688232,34.48587,25.708 749,543.265,203.10777,23.059326,46.89299,24.7 749,374.4916,191.83475,27.080902,61.242935,17.048 749,451.59085,201.57509,18.087616,32.143295,15.148 749,444.26852,202.70392,18.927277,34.854553,11.31 749,591.0578,223.15117,12.634766,28.636475,11.033 749,599.0732,224.9168,12.295288,28.042938,10.934 749,175.47885,215.66551,24.959015,39.039673,10.598 749,530.4061,195.34177,20.279846,43.85692,10.474 749,137.21628,209.33084,23.976166,45.964157,10.079 749,501.28757,205.19318,22.764862,46.70439,9.023 749,605.6828,225.87283,12.90094,28.2193,8.763 749,418.54703,210.14468,41.680786,75.88428,7.7 749,390.71173,206.43794,26.280823,50.010605,7.511 749,290.78412,208.58548,16.66864,41.955093,7.393 749,517.3127,209.41692,21.79718,45.227356,7.25 749,285.2448,207.32635,16.55487,37.44835,6.794 749,315.4198,209.7576,17.270477,41.120575,6.702 749,618.587,220.59627,17.042236,37.207382,6.569 749,539.1297,213.57507,20.098877,40.007812,6.546 749,627.2633,-17.247269,17.162598,45.719814,6.523 749,364.13336,202.16537,19.951965,49.044785,6.512 749,-17.060581,-65.39935,55.408245,151.0378,6.5 749,95.12485,219.64153,23.973648,43.536514,6.461 749,581.3588,219.37625,14.440857,28.170166,6.452 749,393.29495,172.6498,33.013275,62.467056,6.313 749,622.89886,-32.99133,26.460999,75.07603,6.263 749,-8.760799,465.6385,37.332195,89.872314,6.2 749,325.64023,206.9149,28.893768,73.44551,6.145 749,481.7284,196.11911,21.868164,40.108963,6.118 749,32.55052,168.53464,23.684063,49.28717,6.055 749,400.27258,147.42195,34.646576,75.61693,5.959 749,393.3283,120.87371,31.301758,70.81022,5.907 749,22.953419,166.74469,29.326054,70.345566,5.896 749,356.9722,207.59653,29.584778,81.36505,5.852 749,463.2556,197.59688,18.597992,35.358276,5.852 749,612.984,454.26306,39.675964,107.33374,5.687 749,-6.046722,489.317,18.81003,42.415558,5.682 749,399.0472,168.50267,23.406067,45.58377,5.634 749,602.1621,-56.91175,53.831055,137.83977,5.61 749,-5.410248,200.09993,18.346804,42.80159,5.607 749,490.45914,201.21468,21.070099,43.140244,5.601 749,-5.7132635,-18.014412,17.413353,42.869312,5.578 749,626.7272,488.7368,20.3042,45.06491,5.446 749,126.665726,208.42955,29.379837,57.6949,5.444 749,-11.331147,-32.415737,29.542412,72.47487,5.403 749,-13.927541,157.55705,47.755642,134.49586,5.368 749,255.9194,218.85352,23.847504,47.387573,5.313 749,81.69525,223.81201,21.338493,37.059937,5.286 749,152.13998,210.80554,23.05423,44.174713,5.267 749,337.61414,217.81268,22.25467,59.26602,5.258 749,523.824,193.56787,19.302795,39.14862,5.244 749,612.0585,224.82002,17.013306,34.102676,5.239 750,454.54987,213.85127,28.021912,67.16228,94.256 750,614.33167,221.29814,24.48944,71.81444,42.968 750,474.97223,215.5125,18.006226,47.499283,32.328 750,594.3053,221.16307,24.660156,61.686264,29.047 750,508.30795,203.38667,17.102448,37.61615,22.019 750,154.0486,223.7219,31.433792,56.22232,12.397 750,105.25262,223.27226,21.53331,42.358047,10.591 750,89.29607,217.7051,22.727814,45.797897,10.314 750,480.63354,208.93849,17.264465,42.855347,10.252 750,396.50647,194.6788,30.69629,76.927704,10.092 750,83.85173,222.14525,30.265251,66.16896,8.749 750,466.19968,210.87128,19.117249,50.02835,8.453 750,375.41812,220.59863,25.286652,56.060455,8.44 750,96.8699,235.19006,23.488037,41.267395,8.399 750,327.56232,221.33911,27.605865,74.51837,7.56 750,536.9238,218.10048,22.989136,39.5399,7.518 750,256.69705,230.71516,20.978241,44.97798,7.43 750,142.27446,220.60135,31.882095,60.888885,7.205 750,613.3022,452.59775,39.976013,108.80362,7.066 750,589.7903,231.48901,19.49646,50.21118,6.717 750,166.50221,229.63362,24.086685,40.98671,6.554 750,113.577126,221.28491,17.345558,36.799683,6.547 750,-6.251441,489.08868,18.973568,42.118652,6.42 750,-12.060987,477.56372,30.157253,63.9411,6.263 750,626.268,486.57562,21.40509,47.735474,6.056 750,627.159,-18.047094,17.240723,47.919132,6.016 750,595.94806,245.06683,18.33551,42.85016,5.963 750,434.37497,159.4328,19.826996,49.519577,5.946 750,124.62104,223.79558,31.508385,59.598312,5.945 750,-16.888664,-64.97734,55.06196,150.1218,5.918 750,622.68,-33.10561,26.662048,76.808464,5.846 750,600.1872,204.89232,35.403564,86.735825,5.833 750,619.0272,-18.145462,17.852722,44.560234,5.787 750,381.05798,207.79352,29.366058,64.45517,5.783 750,439.4237,213.40451,31.941956,63.94586,5.645 750,578.5038,233.17819,20.336792,49.36737,5.645 751,532.08386,209.86526,47.128296,92.169586,95.602 751,489.76627,205.91988,22.034271,48.41562,38.571 751,514.3036,204.9379,21.48645,42.367447,35.395 751,63.48423,214.41307,24.520607,41.924973,23.287 751,115.68962,200.8238,30.40718,64.3521,17.078 751,68.981865,202.71146,26.832756,49.98419,9.911 751,478.24347,200.701,29.032776,67.49837,9.381 751,79.26752,210.9754,22.464622,40.40532,9.028 751,-0.6684685,230.1552,25.19309,53.267227,8.697 751,103.24817,210.52383,31.812805,63.663727,8.553 751,121.076004,194.04439,21.258774,48.326218,8.228 751,468.6882,196.08603,29.332916,80.56448,8.14 751,451.30753,224.80173,44.32556,89.75119,8.138 751,88.30138,212.63869,21.401855,37.35379,7.579 751,617.4194,223.13838,20.734314,49.31813,7.388 751,401.68512,224.82484,21.51001,50.54271,6.973 751,128.70476,207.06955,33.070724,62.06479,6.959 751,540.5183,200.44681,29.849915,65.23013,6.846 751,378.0086,145.2786,20.873962,59.059036,6.81 751,11.904562,214.09946,14.5864315,28.21463,6.787 751,612.8713,452.694,39.84784,109.16684,6.742 751,-4.452051,171.07245,16.196785,40.814972,6.701 751,186.16913,198.4324,19.865387,41.430603,6.636 751,626.1853,487.28766,21.419434,46.50354,6.617 751,500.30878,203.00531,36.942505,76.95856,6.557 751,-12.020866,478.9059,29.919346,63.910614,6.502 751,10.2857895,222.37193,33.225487,61.389297,6.5 751,84.91601,220.61656,32.162468,62.709213,6.457 751,-6.0959315,489.35632,18.625223,42.271545,6.331 751,-17.054129,-64.90198,55.261337,150.6687,6.261 751,247.24403,207.17632,26.590073,59.025223,6.223 751,531.6249,-12.476786,16.194885,33.909943,6.139 751,3.2459574,218.51547,16.514706,34.438293,6.097 751,627.0169,-18.354403,17.338867,48.122135,6.084 751,358.22495,170.84723,28.231506,77.12634,6.08 751,98.703674,213.79112,20.265533,37.82292,6.071 751,70.911285,223.10071,24.075447,42.139923,6.008 751,65.59248,212.08812,41.048767,73.29262,5.865 752,568.6028,196.0297,24.305786,49.239716,92.744 752,538.89746,194.97958,25.052673,52.979492,89.194 752,377.34433,193.84596,21.667572,51.440292,38.501 752,487.41183,202.54315,54.04422,140.28662,20.033 752,25.789621,206.62115,23.794424,41.01396,17.908 752,607.33264,160.16422,24.706238,66.03349,14.679 752,303.3049,200.67522,23.020233,42.785538,12.207 752,348.1256,167.44183,28.009796,62.048737,10.739 752,39.766632,204.99283,19.208809,38.026077,10.538 752,70.37174,203.32188,31.52079,62.553665,10.522 752,548.9377,194.04062,22.460571,50.663925,10.501 752,335.80902,160.0282,26.440613,66.3186,10.39 752,1.7491722,195.89308,20.468044,50.978592,10.324 752,4.56884,194.70392,28.66948,67.1557,9.94 752,532.5187,193.12006,37.656006,81.14746,9.873 752,83.724915,205.13771,31.924889,65.744064,9.542 752,372.01236,187.39406,20.923004,47.673523,8.769 752,563.4492,190.87178,37.402588,81.567856,8.718 752,19.805023,205.17874,37.965027,73.167725,8.31 752,393.39676,197.19965,20.565521,49.53418,8.054 752,587.78235,170.61655,15.254883,33.063553,8.031 752,494.29123,220.8302,34.473175,85.73712,7.444 752,452.78528,235.03453,29.80719,59.704117,7.348 752,612.9491,453.67496,40.20459,107.87973,7.221 752,332.10687,172.5935,19.707428,48.277863,7.112 752,17.834661,207.13855,23.189562,45.200333,7.022 752,383.4816,186.1871,22.079437,51.405167,6.843 752,361.7318,178.93964,20.202545,47.87993,6.712 752,80.865265,207.08871,25.042236,42.103058,6.675 752,5.438472,205.29709,37.02264,93.32501,6.653 752,318.05618,195.95393,28.673706,70.64186,6.544 752,-4.9393106,190.112,18.6992,47.059402,6.427 753,349.9078,153.17256,27.180573,78.312225,28.658 753,396.30283,197.47649,29.054901,70.71355,19.185 753,603.1535,244.28542,32.424805,106.19719,15.879 753,366.33752,149.60727,29.431091,87.43988,15.725 753,304.1092,203.1219,22.41684,41.608093,11.837 753,370.07483,184.56232,29.365143,71.25174,11.411 753,334.919,148.77513,26.305237,82.18472,10.973 753,112.42581,223.35864,24.69403,45.645355,10.267 753,616.8802,274.00037,21.818787,67.602295,9.683 753,357.9857,135.93036,28.467896,81.086945,8.512 753,102.79765,209.55772,29.2155,64.092606,8.328 753,491.28284,263.53925,19.500488,53.306427,8.172 753,42.37963,200.63792,18.627556,37.938843,8.148 753,61.360302,208.07393,32.74706,69.5453,7.896 753,368.3335,139.18225,23.229858,64.02736,7.783 753,238.57208,210.56242,26.380249,56.821213,7.727 753,401.35715,187.06816,22.025238,48.480087,7.68 753,28.061302,197.96094,27.752773,55.945282,7.63 753,420.9546,-5.638237,29.782837,83.197624,7.45 753,-6.208222,487.8346,19.142502,43.691467,7.377 753,377.55917,169.79276,32.139008,81.37981,7.192 753,-4.194215,203.36143,17.57496,41.299286,7.13 753,607.4052,283.42603,23.656128,58.674896,6.933 753,9.782511,218.81204,21.272835,36.099915,6.776 753,410.5173,188.23944,20.909729,44.894455,6.737 753,-12.28108,475.44696,30.368149,67.10919,6.668 753,626.69653,487.621,20.43103,45.7659,6.664 753,3.6613178,214.12682,38.36177,83.13808,6.632 753,105.623535,202.4516,21.344658,36.396606,6.571 753,384.1727,196.5384,28.841888,69.07564,6.511 753,2.6404345,209.33871,18.827318,42.358856,6.437 753,235.64195,-33.26254,31.53218,70.98872,6.426 753,91.283714,204.54936,18.82676,36.086243,6.299 753,76.28981,212.79384,32.513763,66.67256,6.281 753,412.59537,188.02582,28.356964,64.78563,6.169 753,393.86325,184.41557,21.495972,52.150543,6.099 753,445.59158,180.73636,29.470642,78.174225,6.064 753,59.14642,198.2147,18.693027,32.835587,6.036 753,17.480974,215.57864,41.04666,73.58334,5.965 753,410.83646,116.95931,31.05185,91.52332,5.931 753,-17.471115,-65.36721,55.166,150.82686,5.898 753,347.0255,145.5039,20.172821,69.088165,5.889 754,396.74652,196.89331,31.170929,74.770355,10.882 754,333.76987,154.60435,28.654816,78.88269,9.633 754,12.036293,219.323,18.228483,38.756226,9.506 754,411.6232,122.80484,33.843292,88.95126,9.299 754,349.87378,159.84424,31.083496,80.928986,8.858 754,372.62436,161.18916,30.785217,85.64491,8.46 754,39.07513,219.86995,31.494106,67.813705,7.911 754,529.54285,191.29024,21.624268,34.658585,7.703 754,426.59277,129.6228,32.28131,87.17096,7.644 754,379.77893,190.53369,28.89505,67.76663,7.492 754,423.06168,197.107,22.981964,41.46997,7.475 754,51.41926,216.43231,31.861671,70.95056,7.27 754,379.43954,136.30226,29.526947,74.81395,6.904 754,366.29498,188.81189,27.386505,65.28845,6.874 754,104.199135,225.80394,24.486336,48.956192,6.858 754,621.5166,476.49524,29.150452,68.09778,6.641 754,6.273054,219.21979,28.05762,60.360565,6.499 754,357.6514,142.14124,28.45169,82.32878,6.477 754,623.01996,-33.505146,26.694519,75.09335,6.425 754,437.99127,182.04726,30.39032,71.04588,6.325 754,412.38043,187.27307,30.465881,56.43608,6.324 754,397.98447,135.54306,31.687653,77.872406,6.196 754,177.31133,206.14581,20.32463,41.369217,6.144 754,-4.7425904,216.40154,16.996656,40.609634,6.12 754,-12.03479,476.92236,29.715605,65.03015,5.894 754,-4.928973,231.34444,16.748707,40.84755,5.874 754,407.8402,128.43152,25.163147,60.86116,5.871 754,417.98602,165.15923,34.63864,69.595474,5.859 754,94.560616,221.60535,29.713905,66.50183,5.852 754,7.033651,171.9301,25.98569,70.22496,5.656 754,-3.613172,172.05075,17.47235,43.912003,5.601 754,-17.409546,-65.306175,55.322388,150.48323,5.587 754,237.2785,214.7279,29.111023,56.026,5.526 754,3.565309,227.16727,36.40561,90.24011,5.499 754,-6.0846367,488.45767,18.613934,43.19925,5.399 754,432.69623,187.1061,22.676056,43.38536,5.326 754,-5.528255,-17.605816,17.216963,42.19882,5.309 754,473.29718,99.302795,22.340271,55.013046,5.295 754,490.5325,137.83998,32.293915,69.35939,5.292 754,-73.377846,263.5892,202.02917,465.94778,5.283 754,445.16815,194.96033,54.10556,132.16766,5.245 754,603.3523,431.91473,55.836792,141.8247,5.195 754,18.519924,225.7304,39.40801,81.59413,5.182 754,2.39543,179.68791,18.60008,48.69699,5.125 754,65.54695,220.81223,41.138443,84.11459,5.071 754,627.0025,-19.470005,17.493103,48.44753,5.044 754,-11.384392,-32.500168,29.581963,72.73233,5.033 754,-40.076668,365.1775,110.72718,277.1632,5.019 754,403.85577,162.1935,32.39276,80.35576,4.997 754,433.2386,93.140396,34.233673,82.19006,4.994 754,35.651443,221.3777,17.655518,34.791946,4.994 754,352.1907,198.65526,23.118683,50.36493,4.974 754,476.67047,109.19402,31.426819,80.72767,4.968 754,42.950306,220.00824,18.701534,36.667236,4.968 755,441.51544,202.5997,20.63092,47.40683,23.748 755,473.84363,205.79483,41.048462,112.44086,17.003 755,380.09323,168.12036,30.167236,79.413086,8.672 755,471.30878,191.28908,33.637207,79.827194,8.35 755,443.19293,181.16733,29.739227,66.30548,8.212 755,584.6369,192.57251,20.743835,34.692535,7.87 755,367.37686,213.70926,24.080933,49.733917,7.85 755,395.68042,199.36737,30.395966,73.8692,7.713 755,338.40298,205.28976,20.684906,39.484802,7.224 755,621.7811,-32.583977,27.632019,77.36855,7.13 755,470.62912,75.35274,28.57785,98.010086,7.005 755,446.60968,102.519005,29.366547,90.10981,6.978 755,452.5328,170.73444,31.27353,72.58534,6.97 755,626.7236,487.1403,20.427307,46.034515,6.84 755,484.08798,73.45582,27.258148,86.25991,6.805 755,160.05179,202.5771,23.362366,47.90947,6.699 755,613.005,453.95728,39.41742,107.59125,6.58 755,367.21033,169.60022,29.840271,77.43286,6.526 755,342.81622,203.0728,25.686005,61.09938,6.374 755,-17.505033,-65.98964,55.64586,151.41689,6.21 755,236.1296,215.33786,29.636612,54.2948,6.172 755,379.23914,132.16808,31.093811,87.480194,6.039 755,365.1317,132.47946,29.488892,92.38275,5.906 755,603.0003,-55.704727,53.14337,131.09795,5.878 755,613.24146,144.04561,26.878296,79.68979,5.807 755,626.506,-20.079458,18.224121,50.638733,5.751 755,167.98561,209.50377,22.95845,47.938065,5.707 755,-3.7481542,173.12704,16.165133,39.64534,5.7 755,596.5429,144.40305,31.625183,69.62088,5.693 755,135.13145,215.21846,24.267532,44.34288,5.675 755,429.96472,114.315125,29.167969,84.331055,5.636 755,433.15033,178.269,28.649017,66.23357,5.558 755,-12.1263895,476.08145,29.664352,65.68613,5.503 755,-5.597341,-17.754604,17.306458,42.472523,5.48 755,397.55646,116.77578,29.57248,74.96928,5.464 755,-5.9272795,488.9301,18.498543,43.059753,5.42 755,572.1836,171.42265,31.486328,59.181824,5.399 755,40.017895,260.3865,24.467411,41.772797,5.288 755,466.98572,110.01079,30.444122,100.00453,5.234 755,618.86664,488.22894,20.408203,43.703247,5.229 755,-73.25525,263.7245,201.35834,465.4178,5.19 755,359.14386,189.79651,31.44815,66.50156,5.181 755,-11.346288,-32.455658,29.514439,72.73655,5.18 755,139.31958,202.07378,31.986038,57.18239,5.12 755,153.63728,208.57042,22.335129,47.314056,5.085 755,3.9215338,226.32913,38.253258,90.86154,5.074 755,586.20447,-98.84004,74.2157,229.14366,5.016 755,562.43396,151.07437,34.817688,68.989456,5.011 755,28.30642,248.19931,32.29453,58.768005,5.007 755,490.79797,-181.57718,234.89893,428.51358,4.996 755,-40.08744,363.8569,110.669624,278.09366,4.965 756,510.5011,195.12042,28.522156,77.5365,34.154 756,477.0404,205.6795,21.02716,40.667725,33.712 756,494.57532,197.16122,27.664307,84.931366,16.048 756,383.7062,164.23178,27.56665,79.32718,12.842 756,401.43875,206.88567,33.724274,76.359146,10.258 756,426.0905,206.46115,22.277222,39.61876,9.161 756,622.9214,-32.72653,26.228638,73.34702,8.704 756,348.95343,210.53195,30.367737,68.55136,8.101 756,381.12805,125.903244,31.657013,95.34555,7.92 756,395.728,116.300186,30.776947,95.03642,7.499 756,532.09424,195.98645,29.92987,56.205475,7.217 756,612.92957,452.38925,39.80774,109.37033,7.071 756,397.82977,175.35461,28.206299,78.41637,6.782 756,351.0185,205.11893,22.117645,39.330627,6.707 756,489.22644,201.63414,20.405762,50.23932,6.669 756,18.692978,205.13408,22.135864,43.338272,6.59 756,417.37585,201.63135,22.578674,44.046112,6.584 756,2.2332478,207.51047,17.621815,38.342484,6.572 756,-17.583937,-65.83321,55.768295,151.60532,6.529 756,521.73444,196.02925,19.913025,51.272568,6.417 756,-5.9011545,488.80927,18.396652,42.165344,6.074 756,625.88007,485.92764,21.693237,47.701324,6.05 756,164.26689,201.56378,32.435852,59.724945,6.021 756,483.94183,77.09886,30.283142,107.50627,6.012 756,577.54376,193.51958,20.152893,32.742188,5.948 756,417.1635,204.59247,33.72943,61.79303,5.826 756,371.27527,207.93431,30.57251,64.116684,5.567 756,-5.4750304,-17.298576,17.09651,41.79294,5.484 756,-11.628017,478.07166,28.974495,63.591187,5.482 756,130.80298,204.94122,33.07376,51.144318,5.479 756,159.27217,204.04382,24.559189,43.667084,5.475 756,388.79163,210.97221,32.795135,68.326614,5.38 756,410.2628,124.48154,32.214203,78.58844,5.369 756,603.01605,-54.94083,52.769165,128.2015,5.351 756,477.6496,204.03458,29.154877,64.19614,5.342 756,147.05157,197.46909,31.07518,55.83983,5.162 756,379.98215,200.2457,31.48877,61.761322,5.153 756,-72.67613,265.76273,200.59933,462.87375,5.152 756,-0.98095775,171.0867,28.00851,66.40985,5.145 756,186.72162,213.09068,29.66095,53.164993,5.099 756,-11.405009,-32.350574,29.574978,72.32736,5.078 756,409.2016,192.4222,21.790955,51.153046,5.065 756,-21.135021,404.60312,78.1281,173.99887,5.021 756,340.5087,197.5846,15.185852,27.258362,4.996 756,582.8539,410.7201,71.842285,177.2976,4.994 756,536.255,310.90518,143.70581,342.22397,4.99 757,592.5874,201.6791,23.689392,51.707886,90.024 757,552.67126,208.7539,23.98407,50.020935,66.827 757,577.0667,206.85132,20.917053,45.737213,34.189 757,471.6236,211.09422,22.067047,44.719086,33.882 757,541.40234,203.04979,32.528442,70.26576,15.141 757,419.99927,225.09895,31.44513,73.99724,12.529 757,436.4905,241.11613,34.264984,79.39577,12.263 757,570.2131,215.9336,21.584412,41.132324,11.357 757,384.08963,220.88188,24.310333,45.712692,11.243 757,524.2216,198.86835,31.322144,78.96774,9.006 757,310.07114,210.36807,22.863708,44.2536,8.465 757,1.6612208,201.72153,20.877724,40.57065,8.282 757,561.18726,204.14136,21.580688,50.54677,8.182 757,500.6292,101.82008,29.98413,79.95943,7.82 757,524.2635,203.50655,51.878113,160.30717,7.174 757,612.73035,453.18774,40.216125,108.52344,7.038 757,-17.680264,-65.85187,56.14419,151.37254,6.934 757,586.209,213.36401,21.094849,41.744797,6.826 757,623.5097,-34.531868,26.523132,76.24673,6.787 757,168.76009,206.4182,23.291382,42.434937,6.476 757,-12.028812,478.64813,30.071972,62.11621,6.394 757,360.45972,218.89404,22.19934,33.602005,6.385 757,449.09622,224.32326,21.260284,37.415604,6.121 757,627.48596,-19.004906,17.326904,48.248276,6.082 757,-6.215901,488.95792,18.87247,42.134613,6.017 757,24.432491,200.76843,21.223347,35.111588,6.016 757,606.00226,201.10269,23.327942,49.20363,5.975 757,563.5906,133.10329,31.06427,64.519714,5.916 757,404.4217,224.90651,32.185852,66.649704,5.857 757,475.78516,201.64116,16.899536,38.513718,5.852 757,-4.903622,194.4393,17.933222,40.432007,5.846 757,434.22455,220.9581,32.80139,66.92862,5.827 757,485.08633,96.683365,34.00461,72.88594,5.813 757,626.44415,486.60278,21.006348,47.35486,5.807 757,460.23495,216.87454,20.0607,39.402374,5.718 757,-5.8400955,240.14609,18.479195,43.77472,5.624 757,3.6863315,235.28934,31.442408,64.56702,5.581 758,437.24515,227.51114,42.83606,76.88034,22.742 758,538.9562,211.24309,32.283997,68.19667,17.554 758,526.6325,199.44875,30.669495,76.62776,9.698 758,3.7501936,201.94826,16.334675,36.2511,8.151 758,510.1822,195.14307,28.135925,69.602844,7.621 758,521.3427,200.13666,23.118408,57.894104,7.415 758,-2.7871325,192.39236,15.099302,37.110687,7.076 758,-17.53199,-65.013565,56.09561,150.50194,6.946 758,621.34753,476.5022,30.152588,66.46838,6.749 758,18.92366,202.91461,16.81017,34.531387,6.736 758,627.186,-20.306673,17.895569,47.98468,6.716 758,12.442934,203.0517,16.33901,35.041885,6.421 758,623.3332,-34.346558,26.385803,74.629745,6.298 758,453.90292,219.977,25.169922,52.287277,6.24 758,35.12497,203.07175,16.564323,34.38597,6.239 758,541.76764,185.27972,13.250061,25.168823,6.125 758,504.2029,205.077,22.014252,51.06836,6.029 758,-6.027011,489.49072,18.290848,42.337646,5.974 758,362.9065,219.69629,20.85373,32.30397,5.969 758,-3.9352374,218.12767,15.7174835,39.83525,5.932 758,564.55975,194.33879,14.442322,27.36435,5.856 758,3.9295716,190.20363,15.894497,32.95256,5.849 758,-8.97979,464.06583,37.792213,91.94388,5.804 758,619.241,306.11377,21.208557,52.84607,5.735 758,529.0499,197.57114,20.788391,48.66086,5.721 758,397.9812,181.80115,15.120911,32.5972,5.691 758,-3.589444,175.05728,15.85258,38.90567,5.668 758,426.593,227.71613,58.87439,137.94452,5.656 758,473.89267,214.44064,21.095184,42.843414,5.586 758,-21.35485,404.5946,77.799286,174.43176,5.541 758,-5.780381,-18.133503,17.35416,43.069458,5.502 758,44.457832,251.87503,30.232681,56.052917,5.495 758,-11.478009,-32.536987,29.6473,72.96874,5.438 758,421.41577,203.66986,11.51651,25.142578,5.414 758,603.8208,-56.575832,52.352234,128.5672,5.397 758,107.78183,211.22427,15.483307,26.667206,5.383 758,482.73846,212.6927,20.77774,44.11241,5.366 758,603.77234,428.86774,55.53174,145.12036,5.361 758,185.56732,208.61928,19.193604,37.03589,5.343 758,556.8711,187.62851,14.206421,22.725891,5.322 758,-5.068618,232.9335,16.934502,41.3909,5.287 758,535.8675,309.80472,144.56427,342.44455,5.287 758,100.35114,209.16464,17.220337,30.53331,5.267 758,525.2111,183.94374,14.064819,28.837448,5.228 758,1.6852868,257.774,20.310852,45.121185,5.228 758,25.968264,203.36975,17.13442,32.969498,5.209 758,463.5987,229.66766,45.961792,77.56897,5.201 758,27.053799,229.70804,18.06715,37.112762,5.099 758,550.2377,191.53903,13.141785,24.476608,5.055 758,414.58685,202.03673,11.168121,24.992874,5.051 758,617.9557,487.83786,21.479004,44.84677,5.031 758,495.72647,201.30095,24.040863,60.317764,5.028 758,-72.67708,266.63824,200.79155,461.399,5.026 758,593.43475,-47.102356,45.019287,91.57309,5.022 758,533.3419,184.27798,13.390991,27.515793,4.984 758,-4.047264,138.88855,15.445369,39.268097,4.984 758,493.97943,227.87521,237.15613,514.11316,4.967 758,11.616095,192.27203,16.610472,29.896683,4.92 758,619.15607,281.58698,21.049744,55.065002,4.89 758,558.03326,194.37743,13.859253,27.000061,4.861 758,19.044422,192.72614,17.740376,28.998734,4.854 758,400.8235,234.87697,45.720093,95.648605,4.795 758,-4.3966584,249.3056,17.337608,44.189026,4.77 758,-8.364044,235.75879,27.273254,71.00714,4.746 758,497.8442,249.64928,33.98227,61.119034,4.71 758,474.8752,197.13419,18.058075,38.83835,4.686 758,-8.534414,191.59995,25.918547,63.20288,4.683 758,555.7645,177.67908,16.321777,24.79457,4.661 759,549.612,207.44667,35.845947,89.46074,8.504 759,-17.546398,-64.54714,56.266068,149.51105,7.191 759,510.83325,223.17352,28.747864,66.503845,6.975 759,535.50653,207.36139,35.495728,86.24231,6.844 759,-11.87408,478.84143,29.774681,62.382874,6.734 759,627.0045,488.4566,19.797607,45.033936,6.598 759,623.0532,-35.024773,26.778687,76.29669,6.371 759,410.70386,231.23415,21.05304,33.034897,6.356 759,142.80214,221.70508,25.28891,40.976105,6.351 759,-6.1280293,488.8959,18.591314,42.34488,6.198 759,627.51245,-19.491917,17.29895,47.87463,6.117 759,418.16675,224.48154,18.623291,32.013092,6.06 759,-11.261034,-32.904415,29.81938,74.14486,5.863 759,603.9188,434.20685,54.01361,140.25116,5.703 759,521.81,220.12079,18.306946,33.2193,5.692 759,436.6485,221.63249,14.818176,27.972763,5.677 759,445.09006,222.38333,13.649109,26.045746,5.67 759,563.9714,205.06836,37.46759,92.7616,5.649 759,513.6954,223.42783,21.805359,37.16794,5.632 759,477.43564,195.21796,14.443512,30.432251,5.594 759,382.2786,212.36081,11.998993,22.639847,5.567 759,579.99225,198.62921,17.788574,35.01143,5.489 759,19.130442,226.42056,16.512053,28.561981,5.416 759,-21.068087,405.5214,77.74967,174.06497,5.398 759,-4.63335,281.01736,15.711985,36.450928,5.397 759,3.3148284,245.3418,18.531837,40.34735,5.31 759,-5.9400773,-17.935646,17.573212,43.12321,5.244 759,603.3776,-57.828995,52.93701,133.18257,5.151 759,-2.8949358,191.40582,14.765953,36.689423,5.066 759,427.30832,217.85362,14.902313,28.944778,5.052 759,-72.61963,266.34015,200.42877,461.80157,5.046 759,596.80634,176.32439,13.474915,25.947128,5.026 759,617.114,196.88509,20.058716,50.599533,5.002 759,588.96313,166.7309,14.88855,28.584122,4.902 759,373.8953,215.85995,13.101105,24.620758,4.852 759,593.86707,-47.044613,44.83191,95.6432,4.774 759,531.32733,95.422905,18.930481,31.073097,4.773 759,324.4345,213.68138,15.912628,31.221893,4.767 759,321.23315,226.40974,21.840637,37.92009,4.731 759,582.0804,203.36726,36.744446,96.51131,4.72 759,3.7058973,280.5687,15.453244,32.61969,4.715 759,5.394808,195.97755,15.165365,33.88716,4.7 759,531.19495,216.17587,19.07373,36.231842,4.685 759,451.24615,189.49559,16.827087,33.472122,4.684 759,113.72239,215.39207,21.400429,32.97194,4.682 759,545.6765,215.79907,22.040344,45.11841,4.682 759,181.91774,211.86145,29.299576,61.1698,4.682 759,515.5828,219.39325,15.217529,28.00177,4.666 759,509.9037,212.6572,52.642456,103.73511,4.639 759,373.6574,204.56563,12.545776,23.473465,4.634 759,538.77515,96.32659,18.57721,29.849205,4.612 759,26.39919,196.17693,16.533655,34.386444,4.591 759,-3.5344963,176.7805,14.804671,37.17389,4.586 759,582.0137,196.29713,27.29657,50.592514,4.58 759,206.37732,211.14493,29.547913,57.171844,4.578 759,444.75723,150.9529,30.26184,61.317917,4.573 759,-4.195533,140.28337,15.814347,37.035065,4.571 759,412.55133,197.71516,14.213226,32.05362,4.567 759,460.87946,198.5016,13.703186,28.926636,4.552 759,19.425486,197.22679,15.59675,34.03842,4.508 759,536.16876,312.4075,143.70404,340.12827,4.505 759,-4.9094625,236.80243,16.649174,38.301605,4.499 759,389.2354,210.20557,12.187653,24.152664,4.476 759,493.26492,227.69482,237.4141,515.825,4.468 759,45.245014,208.76562,14.970669,35.031906,4.461 759,500.10388,213.69208,15.973938,30.76709,4.46 759,452.1789,223.33002,14.6311035,26.033371,4.44 759,5.8459663,470.58127,37.24072,92.029816,4.418 759,444.1841,231.72108,16.501251,25.565445,4.41 759,419.45355,196.30724,15.43042,34.156662,4.408 759,-3.5021675,105.94919,14.656103,42.023834,4.386 759,-4.5756097,221.2327,16.117796,35.35721,4.386 759,442.1151,187.98738,17.119934,34.43959,4.369 759,555.9362,203.54874,29.715393,53.474213,4.356 759,11.14957,226.14598,17.125801,29.253555,4.355 759,82.957726,195.9028,17.80729,34.782608,4.322 759,618.83734,489.37793,19.708496,42.42993,4.322 759,274.5827,232.00546,19.807983,33.675842,4.315 759,258.2948,229.47348,19.085632,38.15982,4.3 759,3.8344245,214.69147,16.748034,34.24524,4.294 759,619.0343,-20.632347,18.328003,47.021973,4.279 759,286.29874,187.43622,12.860016,28.097748,4.247 759,419.5327,214.12817,14.5998535,28.717163,4.217 759,-3.4956207,124.73981,14.431831,37.41913,4.207 759,12.900762,198.31403,15.470801,32.80005,4.206 759,581.90137,175.06166,14.520081,26.783203,4.202 759,555.0413,72.53394,18.35907,30.923851,4.2 759,369.03214,220.6808,21.011475,34.435425,4.195 759,594.49426,197.71523,17.53711,35.982086,4.164 759,525.6702,219.35056,29.961853,65.22891,4.16 759,538.83276,84.59963,17.746582,28.506569,4.155 759,366.0232,212.94505,12.14975,21.062485,4.142 759,478.5309,209.78046,51.705963,99.949524,4.119 759,381.99652,195.44998,13.586365,27.853058,4.1 759,587.12976,197.64815,17.244995,35.433273,4.092 759,540.3745,225.7952,52.453613,118.83389,4.082 759,90.30101,195.77765,18.315002,33.24539,4.078 759,120.563774,221.0597,21.485847,30.232346,4.069 759,538.15717,217.37706,22.888489,50.818924,4.065 759,570.53894,203.5469,20.93219,35.249878,4.06 759,3.551752,230.55988,17.83214,33.414795,4.053 759,484.38928,196.52663,14.280701,30.344849,4.041 759,165.10725,219.26099,29.719711,56.032257,4.038 759,436.6516,196.35202,16.337616,32.106674,4.016 759,494.514,-35.66113,27.35965,74.94915,4.014 760,3.9182405,205.24313,16.126331,40.277206,7.731 760,626.98157,488.30872,19.668945,45.130493,7.256 760,-3.0667436,190.26941,16.553047,40.730225,7.085 760,414.00113,247.49391,23.965942,39.338272,7.034 760,-17.676165,-64.57464,56.59722,150.37375,6.574 760,484.67035,197.12665,24.127716,71.24704,6.461 760,-8.644238,465.95898,37.366287,89.508484,6.103 760,627.2798,-17.575966,17.030457,48.082397,6.067 760,457.85507,210.74593,18.100891,35.429077,6.01 760,3.6551242,186.15765,18.4959,39.630493,5.971 760,612.69495,457.62906,38.62793,103.59903,5.955 760,492.46423,239.53998,13.696777,29.522095,5.928 760,-5.6306973,488.97568,18.097536,42.224884,5.921 760,444.18024,224.62073,14.929718,31.557404,5.76 760,622.60034,-32.601772,26.758057,76.97773,5.751 760,-11.342785,-32.656975,29.665073,73.52971,5.662 760,584.5629,413.41327,69.9151,175.63739,5.568 760,450.83264,212.44647,16.495544,33.12738,5.468 760,329.498,231.20035,20.971558,47.170105,5.447 760,368.7226,239.36945,20.959778,35.655396,5.434 760,179.58469,225.79863,32.533447,63.84572,5.428 760,125.10942,213.34636,16.095139,27.813416,5.399 760,485.26276,238.66397,14.866394,30.555756,5.379 760,-21.14651,405.06458,77.94097,174.0965,5.365 760,-5.923186,-17.956877,17.522522,43.100063,5.296 760,-3.886928,173.13449,16.922983,41.165833,5.212 760,618.99316,489.81912,19.28357,42.14444,5.191 760,460.6625,230.62932,16.928406,32.236343,5.19 760,466.58282,237.51505,18.271149,32.542603,5.158 760,465.03467,206.20245,19.180573,40.87587,5.153 760,499.81482,101.44434,17.797913,26.416855,5.113 760,506.96045,102.05069,17.77649,25.857063,5.094 760,35.702587,225.25288,14.984737,30.734665,5.052 760,2.8636794,228.93231,17.212698,37.143646,5.031 760,-4.1372213,217.61084,16.48032,42.008575,5.025 760,602.65216,-56.265182,53.344604,139.02055,5.003 760,-72.432014,265.62155,200.44669,462.429,4.999 760,132.21086,212.19833,16.624039,29.860718,4.984 760,438.14334,221.28163,13.288208,31.516266,4.939 760,436.9626,208.49707,14.528442,32.324768,4.922 760,452.59723,192.4552,27.822235,61.556168,4.866 760,0.6021464,195.5088,23.700188,66.17195,4.863 760,276.167,229.12497,30.615112,57.361115,4.841 760,548.418,209.12898,16.649536,43.710938,4.827 760,107.52204,205.2049,17.709297,29.68454,4.798 760,475.13412,239.18028,17.208252,30.623734,4.778 760,523.2073,200.00375,18.726501,40.35417,4.752 760,442.88928,207.19489,15.470123,32.852448,4.652 760,-8.696573,167.87434,27.12173,68.86354,4.644 760,139.05203,214.30214,17.085983,29.271393,4.565 760,390.20984,220.76086,11.343658,24.302277,4.557 760,458.63052,198.30959,17.083832,33.62773,4.557 760,27.984447,233.92729,17.127857,29.008743,4.519 760,34.46159,238.98799,17.718937,30.317856,4.506 760,509.06985,211.85548,16.395721,35.391373,4.502 760,582.77405,172.8985,24.246521,70.15088,4.497 760,59.79971,206.139,17.195919,28.484741,4.494 760,540.12726,267.79102,17.485413,23.907501,4.492 760,196.384,221.9176,31.857544,60.93982,4.489 760,515.3651,256.51337,16.944885,26.107483,4.441 760,165.04915,225.37106,30.098694,56.567352,4.407 760,492.96423,229.55325,237.74939,515.22815,4.404 760,530.2054,198.25368,19.018494,43.103043,4.4 760,116.18953,212.26956,16.094864,27.461288,4.396 760,535.8567,312.50647,143.59961,338.66388,4.38 760,10.6244135,207.25108,15.850406,36.636,4.376 760,10.700444,221.56494,16.549698,36.324036,4.366 760,448.18652,211.19945,24.01764,52.630966,4.353 760,317.88718,223.30185,28.88858,63.03238,4.329 760,531.70966,266.90512,18.49945,25.604858,4.317 760,573.2465,217.18787,14.842224,32.765503,4.312 760,382.572,220.99411,11.24408,22.710144,4.311 760,570.4336,255.66862,20.345459,31.0345,4.308 760,141.42175,228.89134,29.089386,51.83641,4.302 760,450.2976,197.50632,16.243896,35.586258,4.279 760,-8.158597,37.93997,37.749203,105.21095,4.273 760,74.66559,208.03964,17.416748,28.73671,4.261 760,44.185555,226.7808,14.797348,29.565628,4.252 760,364.7619,240.13855,30.491974,58.22528,4.244 760,546.60345,192.13318,18.259888,43.79692,4.228 760,380.46146,232.73773,13.149414,25.644318,4.225 760,301.04214,206.2999,11.539917,22.737381,4.225 760,451.73343,229.74005,16.330353,32.51004,4.215 760,515.62573,101.334564,16.682007,25.361816,4.202 760,372.16846,233.72903,14.091064,26.043121,4.202 760,563.7455,205.31573,17.184631,41.506104,4.198 760,398.38165,201.42183,13.316803,31.181488,4.187 760,66.730385,207.24393,17.288513,30.086792,4.182 760,516.8196,168.53873,32.071228,72.39163,4.175 760,619.6464,-17.675087,17.181274,45.09032,4.172 760,515.9645,209.68703,16.55249,36.451096,4.162 760,563.84985,102.246826,15.961182,24.884827,4.159 760,571.5923,102.50895,15.734741,22.550499,4.151 760,-4.2549496,234.74756,16.62962,39.30951,4.134 760,594.9705,-45.99904,44.22113,98.78537,4.084 760,586.40894,-105.055565,75.7608,238.11032,4.072 760,467.38284,224.36365,16.639252,34.11731,4.057 761,211.85886,213.8204,27.259659,47.016907,24.265 761,269.35184,211.91391,26.099792,50.624664,14.254 761,619.9442,185.94382,16.396973,50.400574,9.069 761,357.04663,224.5998,28.396027,54.81479,7.703 761,4.3531585,187.53665,14.566738,34.97844,7.512 761,364.14435,214.30641,15.710022,29.40599,7.288 761,-17.665789,-63.922596,56.165962,149.98953,6.684 761,510.52475,210.90973,25.773346,58.999756,6.667 761,19.968563,183.79482,15.13065,29.96106,6.464 761,27.26022,183.8032,15.799633,29.506271,6.444 761,626.59094,487.7068,20.29071,46.435364,6.379 761,573.4876,1.0659142,15.390564,28.902424,6.371 761,522.6724,153.55612,17.200073,36.03978,6.363 761,-8.52414,466.3365,36.97037,89.75165,6.325 761,574.06604,238.79608,13.684814,31.425232,6.299 761,552.04614,173.87071,21.005554,41.289154,6.291 761,483.9938,215.1576,16.80655,40.8443,6.175 761,501.69183,139.11382,27.278442,78.738434,6.109 761,11.980134,184.01703,15.199212,30.938446,6.059 761,613.2911,188.94446,14.870422,41.593155,5.996 761,556.5113,1.5629253,15.775635,28.51201,5.923 761,627.3025,-17.05072,17.151123,46.515125,5.909 761,-6.0355253,488.69202,18.533924,42.664917,5.903 761,224.66354,211.39597,33.156036,52.83954,5.901 761,530.59595,223.23624,18.777222,35.796753,5.848 761,257.48853,208.47694,28.248383,55.302383,5.847 761,611.6796,-50.092175,40.927917,105.99438,5.823 761,-2.507071,176.10425,14.73016,38.097168,5.753 761,531.89734,155.08963,16.560974,32.818756,5.746 761,612.62524,456.53952,39.034668,104.832306,5.722 761,1.2752974,252.38992,20.539917,45.098938,5.709 761,3.7334526,173.15436,16.5886,34.64514,5.703 761,491.6046,217.65202,16.660583,40.253708,5.599 761,604.75195,181.6296,15.425659,32.90555,5.548 761,171.2192,213.5394,31.242935,60.249237,5.541 761,565.0243,221.01778,15.250732,40.379593,5.531 761,43.1549,173.47078,18.32021,30.112442,5.458 761,523.158,222.64624,18.560852,36.13806,5.442 761,584.24255,412.41168,70.3244,176.08508,5.418 761,555.6012,11.667373,16.601196,29.024033,5.399 761,35.65409,183.5146,16.025211,28.864594,5.373 761,595.9371,172.61525,17.041565,32.020706,5.37 761,405.82214,229.52518,29.268768,58.085327,5.366 761,530.4334,175.72156,17.903015,35.808746,5.365 761,369.7818,220.10364,16.534912,30.223557,5.351 761,523.0911,137.71156,17.37677,34.693436,5.32 761,184.7638,219.23557,21.461212,35.001877,5.31 761,-5.8551483,-17.971655,17.510433,43.11701,5.305 761,598.3526,190.61897,14.261353,36.961227,5.297 761,-11.2800865,-32.22918,29.458141,72.66564,5.295 761,-21.033455,405.6081,77.830635,173.80011,5.281 761,565.4357,1.6341839,14.987854,29.401806,5.221 761,437.89273,198.40408,13.991058,32.532166,5.095 761,580.80707,1.3567905,15.416504,29.169287,5.072 761,3.369552,204.21886,15.959956,38.861603,5.039 761,572.28516,-13.928554,15.345642,35.10861,5.022 761,-72.63444,265.9405,200.48212,462.11334,5.009 761,404.82874,199.14272,13.568146,32.018814,5.006 761,521.55835,176.11852,19.007996,36.836197,4.994 761,529.9173,239.67628,23.068787,39.51506,4.986 761,49.359154,164.84785,19.749191,31.800308,4.985 761,557.14716,236.8544,14.703674,29.860077,4.979 761,507.93652,172.93225,29.418396,60.57637,4.962 761,203.8114,216.54723,24.283615,39.38922,4.957 761,512.21075,151.74117,19.5307,43.203735,4.951 761,549.3746,193.4019,17.875427,36.507477,4.935 761,555.30035,49.74588,19.193542,28.973923,4.909 761,60.010994,190.22026,15.6217575,27.715195,4.892 761,51.07462,182.09793,16.233204,28.714706,4.884 761,555.53345,-14.281569,15.689148,35.705746,4.875 761,257.74457,233.70602,21.396088,38.314087,4.863 761,564.1193,-13.727956,15.449829,34.739647,4.833 761,378.74783,217.90128,15.487091,30.920273,4.816 761,444.7987,202.00519,13.416931,35.320984,4.804 761,343.22372,228.04541,33.068726,69.52161,4.773 761,429.67862,200.63675,13.194733,30.603394,4.766 761,188.49728,207.19937,31.079666,56.786713,4.714 761,67.389565,180.72726,18.175201,30.652176,4.71 762,484.11484,187.5892,15.99234,31.429413,7.906 762,405.95642,230.30887,28.612396,46.934387,7.447 762,243.09497,208.45503,20.366913,43.137207,6.997 762,627.0834,488.62433,19.79773,45.074097,6.914 762,-11.664465,478.7754,29.824503,62.47406,6.88 762,610.36017,184.18196,19.915405,58.276443,6.828 762,627.3824,-18.500616,17.410645,48.09502,6.339 762,601.34393,176.95764,25.16278,75.49068,6.303 762,446.85574,187.90984,10.808502,26.112839,6.282 762,-16.922276,-62.932705,55.740192,147.71136,6.19 762,612.8565,456.82996,38.489685,104.53357,6.171 762,622.6202,-33.277298,26.973572,76.57454,6.153 762,346.87366,225.31616,32.976166,62.716614,6.131 762,-6.125289,489.03223,18.786366,41.94629,6.103 762,387.3329,205.31798,15.661774,33.211273,6.028 762,498.725,170.74759,18.668427,39.98242,5.992 762,372.32397,207.81227,14.01297,30.965378,5.84 762,454.3768,187.07593,10.885834,25.625381,5.757 762,554.9562,167.69305,17.238708,35.40013,5.742 762,490.70447,177.1498,17.661255,34.348923,5.731 762,587.12274,163.44193,19.013123,42.287506,5.54 762,-5.654638,-18.077688,17.43107,43.258087,5.518 762,615.7859,143.34012,24.147583,83.49187,5.507 762,69.31424,188.49228,26.65239,44.87372,5.394 762,584.1754,412.4158,70.526245,176.32468,5.377 762,-21.2502,405.44778,78.33289,173.82297,5.362 762,617.45703,179.16922,19.935669,57.469788,5.357 762,-3.152529,143.67953,14.886552,35.830063,5.315 762,10.466042,204.78418,18.044422,32.44838,5.281 762,438.87488,188.06436,11.132874,28.233826,5.279 762,-11.365812,-32.30085,29.606619,72.96034,5.273 762,184.801,199.22,21.810806,38.097122,5.228 762,365.34692,197.86787,14.842255,30.950241,5.2 762,538.69574,-2.813717,19.93695,37.367397,5.188 762,381.19104,207.21031,14.327698,32.128174,5.169 762,469.67038,196.26974,12.966064,32.51303,5.161 762,5.4731035,165.17117,28.147072,68.56091,5.153 762,618.80396,489.76776,19.651062,42.283997,5.149 762,437.9044,195.73396,12.76828,34.271774,5.145 762,-5.05341,194.6473,17.053804,39.551987,5.12 762,-3.3237493,232.15927,28.012337,67.76364,5.117 762,1.0947043,227.50757,19.841698,39.42801,5.113 762,395.3247,207.23422,15.216827,31.023514,5.089 762,547.8822,168.9043,16.800537,35.859253,5.088 762,-73.0195,266.04718,200.43683,461.66925,5.051 762,-6.027426,226.85359,18.00827,41.190933,5.051 762,583.04675,179.85327,26.39038,65.193344,5.007 762,445.37888,195.25249,11.975861,31.624405,5.0 762,-4.7801623,154.47433,17.611382,40.79692,4.99 762,524.1532,176.47168,16.181152,49.52162,4.975 762,581.66547,121.407364,27.45868,70.11305,4.913 762,587.67755,209.81407,16.868408,35.16722,4.871 762,150.99185,200.39674,24.775894,41.016586,4.871 762,462.81934,195.91324,11.7803955,31.249878,4.862 762,478.69904,197.23285,13.765564,31.37822,4.848 762,512.8006,170.85556,22.225708,73.237686,4.836 762,434.32794,211.60715,19.99878,36.87297,4.835 762,532.3962,173.77214,15.559814,39.730347,4.761 762,-10.041237,149.88647,28.599014,70.8414,4.712 762,462.1089,188.03851,11.122772,24.434464,4.632 762,5.4430246,470.0319,37.4052,90.68564,4.632 762,602.4954,-57.19371,53.716125,143.66252,4.627 762,387.86572,218.90025,34.627808,60.470413,4.621 762,364.09564,209.46866,14.8845825,29.28949,4.607 762,371.04846,222.2558,41.34134,92.7641,4.599 762,361.00766,219.45267,20.246887,34.95253,4.569 762,313.8627,205.0368,19.330688,34.575638,4.511 762,-5.4322433,212.86525,16.432549,34.382217,4.503 762,484.02814,174.78256,17.31372,33.04837,4.478 762,421.01074,184.48201,12.568909,32.612198,4.474 762,493.18842,227.46976,237.16284,516.1654,4.472 762,263.41953,181.80765,11.094086,22.115814,4.469 762,541.4651,-33.088085,28.407349,69.25895,4.433 762,536.033,312.284,143.58075,340.79596,4.426 762,504.72186,165.30147,19.672302,42.86621,4.399 762,572.5007,205.46304,17.186401,30.077911,4.399 762,469.28876,187.38487,12.23999,25.161713,4.395 762,580.168,264.12714,17.332764,26.209167,4.392 762,478.27332,186.09175,13.943726,26.724335,4.39 762,539.88367,169.66714,15.8081665,35.725647,4.381 762,3.4790416,196.72723,19.42638,37.781967,4.376 762,619.6318,-18.726828,18.062256,44.786583,4.348 762,159.10927,195.2801,24.7137,44.34056,4.339 762,264.04315,191.4389,9.493561,20.104477,4.336 763,401.3046,166.62985,21.241638,51.787216,11.707 763,588.83673,180.63843,13.895569,30.071808,8.583 763,388.50854,208.84796,14.560028,26.120941,8.093 763,336.55707,230.04213,21.666168,44.204453,7.595 763,372.46616,208.35988,14.230316,27.233475,7.577 763,581.11835,180.1755,14.523132,30.088318,7.046 763,490.99646,187.15263,17.848816,36.25804,7.022 763,626.82806,487.92633,20.09906,45.558716,6.995 763,573.88403,180.28853,14.514282,30.245544,6.992 763,379.88245,237.56548,35.961945,62.162003,6.906 763,-11.858529,477.25732,29.561653,63.808716,6.857 763,338.18262,230.63924,31.342651,60.133865,6.846 763,330.8749,227.45491,19.388641,40.421097,6.531 763,596.746,179.90247,13.31134,30.233582,6.466 763,217.21979,221.42113,19.922852,33.139847,6.354 763,-6.122918,488.0137,18.623013,43.270172,6.275 763,381.22412,209.5199,14.340179,25.614273,6.138 763,394.51477,211.69046,15.999298,28.733963,6.136 763,365.089,203.23607,14.394714,25.765152,6.067 763,387.0865,218.47162,18.32962,36.972977,5.984 763,-16.85685,-62.78367,56.00075,147.33003,5.912 763,4.938514,181.28862,14.43314,29.442398,5.724 763,403.5703,188.75749,17.50354,39.60623,5.718 763,613.00604,457.01047,38.56128,104.74527,5.706 763,627.42175,-17.221022,16.884888,47.01638,5.686 763,619.8614,166.03111,16.0,44.924164,5.653 763,584.45264,412.6847,70.15051,175.91333,5.625 763,9.850668,212.99619,20.496593,31.199265,5.587 763,-21.443205,404.27737,78.07216,174.86545,5.427 763,-5.5737934,-17.777529,17.37444,43.424236,5.345 763,331.95767,213.03595,16.010162,30.4534,5.327 763,611.6245,-49.91834,41.084106,105.54655,5.31 763,-3.2249255,175.99323,14.54748,34.78711,5.304 763,547.5809,156.91428,17.162292,46.348938,5.297 763,-4.1292925,190.4324,16.14957,34.66989,5.255 763,-11.286817,-32.91241,29.65752,74.19623,5.249 763,484.85284,190.57526,16.884338,38.066193,5.241 763,372.50443,217.3802,15.634064,37.816177,5.17 763,419.08536,183.73358,17.704926,39.477936,5.124 763,47.473774,207.83235,23.5649,40.104095,5.079 763,346.2827,225.61923,17.096802,32.090088,5.077 763,506.9688,187.05365,17.162231,35.376923,5.03 763,-72.787155,266.08463,200.03761,461.311,5.023 763,71.055,204.90094,27.936714,54.80963,5.013 763,392.36743,232.33856,34.271027,61.94043,4.95 763,436.30316,213.93774,17.10431,36.645386,4.929 763,379.8783,219.51611,16.828552,35.99608,4.924 763,572.73883,1.5060587,16.025879,30.482101,4.916 763,55.841415,200.92036,22.687134,41.483185,4.876 763,219.65909,213.27135,17.125748,28.570587,4.849 763,12.0360775,185.20723,14.493149,26.840225,4.816 763,1.6555691,213.8436,40.762413,86.81943,4.782 763,500.75717,192.56271,15.625336,34.98355,4.75 763,-3.1459954,158.75146,14.754234,37.683167,4.749 763,65.25841,201.28076,22.021576,41.280853,4.745 763,364.85324,218.95901,14.94754,36.78322,4.723 763,-5.9903054,215.15132,17.737381,36.240128,4.704 763,452.83447,192.52907,13.486206,36.085342,4.701 763,581.5077,214.00739,14.299561,29.72287,4.658 763,618.6963,489.1418,19.934998,43.094635,4.657 763,310.03156,212.48868,25.833557,54.409027,4.625 763,509.9487,-34.574196,28.60373,66.883995,4.619 763,380.78546,193.83913,15.875549,27.067276,4.609 763,262.82797,188.20615,11.432251,25.039337,4.605 763,582.34735,227.5705,12.3828125,24.420837,4.588 763,573.827,228.09314,12.630615,24.281738,4.581 763,538.6492,162.67108,17.909302,48.851303,4.581 763,429.44705,184.80417,15.312286,38.44049,4.579 763,533.58905,150.89319,26.480896,73.73222,4.568 763,549.33185,138.1963,28.360657,70.66008,4.564 763,564.8333,185.25899,15.529907,33.00609,4.511 763,564.8108,0.99313927,16.47754,30.72839,4.477 763,573.14404,165.04147,14.848572,31.87349,4.462 763,-17.39819,161.53084,51.19007,126.33537,4.448 763,307.11795,212.85464,17.300995,32.80876,4.445 763,492.5818,201.38951,15.260925,36.235443,4.445 763,2.9901648,231.35066,17.895123,32.526596,4.417 763,419.52573,207.05884,15.544922,34.084534,4.402 763,557.4493,189.76532,14.725403,34.991165,4.383 763,492.90088,228.0054,237.34845,516.58984,4.38 763,486.2273,158.39627,28.302246,69.57054,4.378 763,588.3485,166.65376,13.939331,32.64261,4.341 763,475.7224,195.54868,17.9292,42.30948,4.336 763,235.5229,212.10808,15.140152,27.959946,4.331 763,315.27414,211.80171,17.180145,32.627014,4.32 763,532.4755,178.00946,15.985046,43.990387,4.311 763,443.4981,-12.16568,16.112427,36.078503,4.307 763,580.4769,165.68521,14.282471,32.381927,4.298 763,616.62244,183.23267,24.851868,80.18292,4.294 763,535.85986,312.5435,143.65125,340.23447,4.29 763,556.5732,168.7733,15.122314,37.391907,4.289 764,365.11206,243.17696,33.05835,60.34285,9.806 764,379.47842,205.70335,16.62323,30.958786,8.252 764,458.85522,198.80325,16.503662,39.976135,7.724 764,451.24985,198.26385,16.876831,40.893967,7.54 764,443.15228,192.08125,17.323212,41.051163,7.133 764,355.51852,232.14438,32.932373,56.562805,7.127 764,48.6528,201.64624,23.934113,39.99208,7.021 764,217.04176,210.00772,20.28569,32.56703,6.991 764,427.9456,213.17302,16.54248,34.380844,6.889 764,475.89374,197.62665,16.662262,45.878403,6.637 764,-11.388139,477.7135,29.392319,64.37195,6.555 764,-5.4603176,-17.140198,17.024815,42.95787,6.444 764,304.2013,223.09448,23.54486,43.69287,6.441 764,626.80426,487.97174,20.041077,45.520935,6.338 764,-2.614404,181.9907,14.376531,38.876877,6.316 764,622.53876,-33.53795,26.931458,77.00692,6.261 764,312.38065,220.55031,20.402985,36.952164,6.183 764,-6.0399,489.55072,18.421263,42.354126,6.122 764,627.15717,-17.945827,17.11676,47.39916,6.087 764,-11.396657,-32.54454,29.359554,73.227844,5.922 764,299.4256,227.95755,30.6409,62.604004,5.867 764,425.133,185.88239,24.063507,60.77237,5.765 764,613.1372,456.82855,38.581665,105.01178,5.747 764,-16.747013,-62.75543,55.75993,146.43558,5.736 764,439.44888,179.41174,24.973541,65.08977,5.7 764,346.99976,224.8025,18.630981,36.71187,5.627 764,451.37823,184.93488,17.372742,37.781525,5.535 764,338.97522,224.07649,18.549652,36.144516,5.463 764,4.1270323,187.69876,14.668277,35.80046,5.441 764,584.321,412.79144,70.40674,176.13354,5.433 764,459.66556,185.3328,16.223053,37.134613,5.387 764,329.6709,224.09146,19.634674,38.44931,5.344 764,-21.258955,405.14502,78.12616,173.9718,5.321 764,484.5717,192.01361,14.770294,41.314377,5.29 764,419.83984,200.28339,17.348877,36.79004,5.282 764,412.62592,212.98505,16.19992,33.131454,5.245 764,321.47327,219.1343,19.302948,37.89415,5.209 764,411.34357,200.15144,17.914581,34.180954,5.15 764,71.22212,192.57178,21.486656,43.43268,5.143 764,-72.99783,265.91098,200.67912,462.10794,5.136 764,362.45013,227.60394,20.103333,35.444244,5.11 764,371.27905,225.40936,19.717651,34.928314,5.075 764,524.2767,188.24666,14.861267,32.762848,5.037 764,259.4494,211.34982,17.533875,31.385132,5.013 764,435.39322,197.36646,17.651031,40.76004,4.991 764,53.48482,201.80458,30.884502,59.62648,4.971 764,138.43546,212.82819,22.765167,34.45462,4.963 764,378.48895,244.48091,30.794678,60.46779,4.947 764,427.9317,166.08824,27.349365,68.026474,4.908 764,406.14334,176.84793,27.760101,63.807037,4.883 764,-16.847961,158.0997,50.79695,127.76376,4.851 764,619.9789,-4.6334476,18.685059,42.234283,4.807 764,-3.937204,155.85141,16.62541,43.70392,4.749 764,340.314,227.224,32.051666,55.94525,4.74 764,493.31607,192.31178,14.815521,38.899155,4.687 764,602.62244,-55.98922,53.459167,140.10657,4.666 764,354.2064,233.80049,19.888,34.7162,4.632 764,419.76587,224.99646,18.662415,35.389526,4.6 764,570.082,176.03717,20.414734,46.74539,4.599 764,586.17914,174.10338,20.638306,40.09651,4.596 764,477.2368,212.54704,17.763702,43.28476,4.58 764,2.539152,491.26843,18.445284,39.66095,4.578 764,427.0419,226.00336,18.623993,34.119904,4.577 764,160.7258,225.82506,25.71997,36.439285,4.573 764,378.463,224.87679,18.776184,32.286453,4.552 764,508.414,191.66602,15.167908,37.41858,4.523 764,402.34833,184.98375,19.38971,35.280655,4.488 764,187.43019,202.70346,31.584381,54.671814,4.484 764,396.28143,208.82755,15.160553,31.138489,4.445 764,554.3192,178.54166,18.944092,44.814392,4.442 764,455.03088,180.96262,24.493988,63.723083,4.438 764,372.70236,200.07344,16.901459,31.108978,4.429 764,467.9922,199.88177,16.200653,41.387558,4.428 764,426.28906,159.085,22.232239,44.227463,4.414 764,-5.0900116,215.03532,16.594528,35.743866,4.398 764,493.1093,227.9945,237.12701,516.01135,4.389 764,31.75873,196.41675,23.792448,39.905807,4.388 764,535.97833,312.50955,143.49042,340.27573,4.384 764,365.15,204.9973,16.168915,34.90297,4.378 764,441.82928,176.84227,19.557892,41.0092,4.373 764,500.9436,190.94661,15.3654175,39.650436,4.372 764,446.60812,168.2252,26.671448,60.482178,4.371 764,459.08893,168.52362,17.98944,40.180557,4.369 764,444.34476,208.47276,17.031647,37.307632,4.338 764,284.82837,220.18413,31.152222,61.51912,4.326 764,477.2464,182.64607,14.464569,33.863403,4.319 764,1.7498088,212.38708,40.369072,85.94766,4.293 764,10.684992,204.95418,18.699465,36.667007,4.284 765,307.25522,211.00667,19.009369,42.01056,9.756 765,314.25745,212.63335,18.928131,40.597733,9.683 765,412.81555,205.33514,13.971924,28.643433,8.315 765,289.33435,218.47601,20.187836,37.302063,7.585 765,491.33438,201.32664,15.195221,34.85318,7.55 765,482.56473,140.12306,31.143097,70.702866,7.538 765,271.57315,226.55583,24.732086,42.91887,7.336 765,167.6322,223.50699,26.175964,37.001373,7.223 765,330.73697,217.29839,17.864685,37.825546,7.168 765,627.1384,488.1338,19.679321,45.36151,7.029 765,509.42825,204.73717,16.22647,38.183243,6.939 765,-11.48912,478.5552,29.25422,63.51828,6.936 765,619.88403,189.82927,15.633423,39.348022,6.859 765,-5.657729,-17.002298,17.505138,42.492332,6.857 765,-11.376008,-31.502703,29.741634,71.76326,6.829 765,622.742,-33.475876,26.60254,77.082115,6.77 765,257.44855,223.97916,22.042236,39.315918,6.736 765,445.20435,213.84106,16.304108,34.01909,6.736 765,297.76807,215.00856,19.147675,39.19905,6.644 765,-5.9116783,489.8871,18.161339,41.477478,6.441 765,282.5705,211.01344,29.97113,56.05101,6.423 765,57.618336,182.81264,21.181461,40.212143,6.418 765,500.2215,205.87608,16.118713,35.371002,6.318 765,265.92123,231.07652,35.346436,67.89848,6.254 765,509.089,192.0941,15.478027,36.846146,6.249 765,483.89737,203.48164,15.057037,33.312973,6.18 765,339.43652,226.6042,18.868164,35.106796,6.156 765,321.70883,213.41844,18.733978,41.137512,6.1 765,450.01816,199.76216,17.931183,40.313034,6.067 765,627.29694,-18.14371,17.332642,48.086918,6.045 765,532.7127,160.74352,15.264038,42.641617,5.983 765,612.9969,457.12335,38.23407,104.45886,5.967 765,371.71368,197.47511,18.031372,37.691177,5.953 765,387.91852,195.23904,17.618103,36.4411,5.864 765,515.5495,194.09552,16.507263,43.032455,5.853 765,3.2718534,181.3867,16.247002,42.230515,5.817 765,619.8693,205.9159,16.79541,49.50923,5.791 765,265.68976,224.95775,20.572418,34.034317,5.785 765,310.46658,205.81253,28.925781,63.31424,5.78 765,364.5161,199.9802,16.651123,34.066574,5.646 765,524.75397,169.8802,15.459778,39.97354,5.633 765,588.96155,189.95358,15.285706,35.47705,5.622 765,347.62262,220.43188,17.140808,32.059875,5.567 765,379.8191,199.93387,18.774475,38.550446,5.546 765,536.9291,178.32796,24.62622,76.532364,5.519 765,584.8528,412.19922,69.88306,176.44043,5.516 765,514.91876,176.63852,16.294617,39.242264,5.504 765,418.9421,207.7924,14.352905,26.382172,5.462 765,250.22285,222.36794,20.078934,38.833694,5.462 765,-16.673515,-63.105587,55.485622,145.02487,5.446 765,505.51318,186.56233,23.03595,60.998016,5.377 765,281.16794,224.026,21.133148,35.930176,5.372 765,491.20908,186.43692,15.78244,33.768463,5.314 765,525.6738,153.94913,15.024109,40.08716,5.271 765,355.564,198.12407,16.938568,34.699173,5.257 765,-21.268353,404.8977,78.19897,174.23132,5.254 765,-2.5456595,173.94128,15.474146,40.172455,5.236 765,395.0673,201.46262,16.027222,35.515167,5.191 765,513.77576,213.53618,18.408081,38.430267,5.185 765,539.97833,-2.2113676,17.361633,35.121998,5.177 765,458.65707,200.09145,16.678558,37.161682,5.141 765,244.234,224.54697,32.10649,59.962982,5.137 765,-72.80185,265.8584,200.79712,461.91516,5.109 765,268.80527,214.81126,14.622223,24.895386,5.102 765,171.82288,205.913,29.847885,55.425537,5.101 765,-3.8511884,158.57286,16.18099,40.40059,5.018 765,347.1999,200.43053,16.219269,32.708862,5.014 765,243.05739,212.88264,16.00447,28.870667,4.999 765,467.015,216.0756,17.72348,35.121994,4.977 765,411.1366,193.78188,15.76355,28.77884,4.958 765,3.0521245,492.55615,17.711786,37.77008,4.94 765,271.4953,189.61966,9.594971,22.122803,4.904 765,619.1999,489.54813,19.158997,42.674286,4.819 765,480.2522,186.22794,23.80661,55.074646,4.8 765,404.13852,198.79982,15.805359,29.672318,4.77 765,519.9352,179.66638,23.942078,71.9953,4.76 765,485.7898,88.37654,28.467651,67.1595,4.712 765,-3.6276147,198.8247,17.241522,43.46289,4.708 765,478.07562,203.54494,14.003723,33.32408,4.646 766,504.74792,215.7417,19.295898,48.16165,23.376 766,265.15253,217.87393,21.358887,48.380646,10.967 766,234.9723,221.57715,30.001572,57.974304,10.805 766,419.68124,209.13895,16.580994,35.373566,10.147 766,269.67368,213.14267,27.897034,62.98233,10.014 766,257.52158,219.32085,20.81546,49.01912,9.925 766,412.47318,209.26529,16.740051,38.565308,9.258 766,426.61578,212.02734,15.610962,32.665634,8.391 766,221.92375,226.5068,29.889984,57.410553,7.949 766,499.71228,206.54303,18.793823,47.106155,7.528 766,395.2871,205.85379,19.334045,40.511932,7.247 766,618.53467,175.86316,19.983826,65.864136,7.156 766,493.22586,216.04065,16.155884,44.364807,6.949 766,281.2426,221.00885,20.480225,43.45282,6.934 766,-4.7176666,201.25491,18.6809,43.309097,6.867 766,-11.686356,478.76562,29.705025,62.27118,6.852 766,-5.2521763,-16.810143,17.345823,42.29303,6.742 766,403.36258,206.92682,19.09314,40.645584,6.651 766,248.65715,223.65259,22.511032,45.787994,6.629 766,17.683044,218.3366,35.804928,62.674088,6.544 766,273.60233,213.18428,20.559998,38.16356,6.513 766,548.3904,128.56715,31.661743,87.651,6.509 766,522.4372,217.1294,19.653809,42.769897,6.484 766,-11.139505,-31.16869,29.787231,71.61401,6.446 766,626.92773,488.01736,20.093689,45.556732,6.426 766,7.5668597,207.85281,30.52924,64.34418,6.412 766,508.47595,198.31012,26.524414,63.4494,6.368 766,-6.247396,489.10944,18.71777,41.662476,6.349 766,627.30756,-17.275253,17.27246,46.166656,6.263 766,314.9416,227.09772,19.95102,39.565002,6.215 766,529.6013,217.26958,20.028748,40.402542,6.215 766,60.65046,195.80164,14.985161,32.31163,6.135 766,218.69643,232.30362,20.893692,36.07834,6.114 766,579.58215,160.17966,27.115173,68.21738,6.102 766,613.15344,456.99838,38.118042,104.44516,6.095 766,225.69235,223.82071,22.079636,37.54492,5.891 766,538.00006,121.586044,20.72229,37.44641,5.86 766,428.04532,201.42511,15.183716,31.017654,5.741 766,452.80328,216.68776,13.970215,32.788513,5.689 766,484.7901,203.99722,16.394928,44.6174,5.593 766,-0.15336394,202.36302,26.236818,61.09178,5.539 766,276.65262,222.65865,30.813507,61.003036,5.497 766,-16.668222,-63.253845,55.61583,144.37715,5.494 766,541.82056,122.3013,28.571106,69.930664,5.476 766,584.8561,412.7052,69.60608,176.12854,5.47 766,586.51965,149.81267,31.210938,67.35202,5.407 766,-21.12331,405.45953,78.00491,173.46619,5.368 766,622.80383,-33.057022,26.571533,75.70396,5.333 766,563.96295,138.27892,31.321533,83.3004,5.22 766,-73.21947,265.9906,201.43524,462.36987,5.124 766,2.451713,140.70189,18.450327,37.3217,5.044 766,602.1502,-55.88567,54.064148,142.2956,4.971 766,3.135687,191.91565,18.326368,38.63571,4.941 766,167.9232,231.13824,23.701172,36.124573,4.918 766,44.928627,197.20393,16.24973,38.024475,4.909 766,324.68564,222.06744,28.577576,63.878937,4.89 767,429.27924,211.10236,16.518372,39.423492,33.547 767,222.84401,214.88338,25.302979,47.500015,13.295 767,171.77376,218.25398,31.70343,67.9807,13.128 767,252.32538,219.21306,31.404816,66.04762,12.741 767,433.47382,216.31064,20.031372,43.188873,12.245 767,228.32124,214.02744,29.246078,66.23526,11.344 767,240.1058,214.13051,24.579102,47.211533,10.053 767,210.126,214.21661,22.126953,47.159332,9.24 767,411.73215,209.81804,16.896362,41.780334,8.651 767,201.33492,215.16823,22.446655,45.13698,8.413 767,387.7933,201.52158,16.4888,41.543457,8.151 767,348.55634,208.1788,15.477417,33.82991,8.08 767,574.6241,204.96658,26.274597,82.16318,8.059 767,217.60649,223.99817,21.706635,49.386383,7.505 767,627.0902,488.29266,19.677612,44.93457,7.322 767,187.12099,218.73071,30.844315,66.13104,7.232 767,-5.6999407,-17.07278,17.474594,43.044113,7.19 767,262.67566,227.97781,25.248566,43.711456,7.094 767,156.8375,226.65257,31.454285,58.366653,6.985 767,540.4466,198.00029,13.984314,27.596878,6.705 767,-11.899593,478.13327,29.653702,63.07492,6.691 767,490.9061,205.25237,16.654968,43.201385,6.67 767,439.9673,213.83081,18.88388,37.925995,6.566 767,-11.087738,-31.684204,29.563683,72.178154,6.565 767,532.8993,197.85054,14.291321,28.609268,6.272 767,627.0699,-18.575977,17.779053,46.978806,6.2 767,225.63925,235.73547,20.822235,44.736267,6.162 767,570.33484,229.28252,19.756653,48.077744,6.137 767,363.3756,203.90417,16.369537,38.165344,6.093 767,-16.843721,-64.787605,55.490013,145.46454,6.066 767,-1.3622582,227.72638,28.762152,61.621643,6.062 767,524.8052,198.05399,14.065063,29.539017,6.021 767,355.87643,203.83235,15.881195,38.969025,6.017 767,170.24794,219.79819,23.037888,41.15326,6.015 767,213.43933,228.88614,32.06125,64.80722,5.934 767,612.64575,457.24585,38.634827,103.94391,5.932 767,419.79285,214.31914,17.897766,41.63507,5.87 767,98.89551,230.2551,21.545471,36.777435,5.861 767,-6.219833,489.1685,18.791994,42.42392,5.857 767,622.981,-33.334732,26.291748,75.00141,5.74 767,516.8355,196.37367,14.769775,33.157425,5.684 767,540.8184,187.97852,13.473206,26.735352,5.556 767,584.8333,412.01917,69.652405,176.5752,5.474 767,532.83374,187.6146,14.268311,26.658691,5.365 767,585.5085,225.39183,18.79132,51.13478,5.349 767,210.82603,235.9815,20.038315,43.220337,5.322 767,51.586956,197.37846,14.815601,29.333359,5.319 767,270.79376,202.22871,10.507141,23.519775,5.282 767,-73.010445,265.31177,201.65659,464.30176,5.235 767,-20.949837,405.62604,77.988785,173.54639,5.235 767,499.9017,199.77646,16.077423,41.690887,5.201 767,266.62708,229.54974,33.210205,60.96527,5.178 767,2.6735914,206.33319,32.075855,65.69653,5.15 767,577.9676,194.18025,19.033447,59.121017,5.11 767,43.794373,196.10046,15.426849,30.107483,5.086 768,451.0004,205.77959,17.146759,40.803024,62.677 768,445.3636,203.97125,16.727448,38.297333,29.864 768,156.79515,204.81194,30.210098,70.51637,17.775 768,427.52753,205.87671,19.456696,43.57193,13.59 768,215.5552,230.0552,24.301971,49.22232,12.967 768,152.50403,210.57819,25.28833,46.789368,12.29 768,434.8553,205.23828,17.509094,38.44046,12.119 768,141.00456,210.30768,30.576782,61.733276,11.705 768,197.51411,215.34564,33.329178,69.30307,11.103 768,180.15282,207.15454,31.89891,63.510223,9.494 768,465.83386,208.97934,18.230743,42.936127,9.35 768,540.2224,216.51825,18.256165,44.75183,8.714 768,378.01868,188.1322,19.643066,44.33342,8.12 768,402.43625,191.20131,17.61383,46.427277,7.681 768,456.92795,209.62256,19.227112,43.24536,7.345 768,-11.470966,479.8602,29.255188,61.72159,7.203 768,124.64052,210.89705,31.485306,71.91734,6.977 768,-6.011996,490.08356,18.416445,40.827454,6.967 768,245.79129,227.86554,30.21759,63.067566,6.746 768,346.4183,203.8517,18.193848,35.32895,6.703 768,626.96387,487.69348,19.966064,45.863525,6.451 768,386.04547,186.50436,18.509827,43.819702,6.441 768,-5.552269,-17.799448,17.2433,43.203102,6.367 768,354.44916,198.17073,17.77655,40.94124,6.363 768,623.0255,-33.235638,26.050354,77.474365,6.223 768,-10.712323,-31.521105,28.947617,71.17919,6.17 768,627.1505,-18.393238,17.46289,48.33563,6.01 768,612.9143,457.10794,38.387817,104.08676,5.955 768,174.1278,205.85892,26.650482,50.082443,5.869 768,619.51807,166.37103,17.078125,52.86792,5.727 768,602.68677,-56.477425,53.065918,137.75322,5.663 768,-17.448565,441.3907,55.07025,134.05927,5.621 768,3.4592533,186.73466,16.91648,46.31447,5.616 768,584.5687,412.08023,70.01691,176.46707,5.557 768,-17.447254,-64.91337,55.64205,145.30618,5.432 768,529.4081,210.38977,27.712769,61.873077,5.42 768,473.2519,212.67784,16.677765,36.829865,5.411 768,371.03104,189.70001,19.604614,41.169357,5.402 768,257.88568,224.2204,31.98108,58.663666,5.38 768,190.5063,206.53314,26.047928,45.879883,5.358 768,363.4694,196.43475,17.720642,41.560333,5.309 768,396.23947,188.69106,17.020905,47.77893,5.293 768,148.45535,215.83752,31.071548,75.13959,5.285 768,264.45758,221.30362,21.414612,34.219574,5.254 768,524.1431,212.01276,17.355225,38.39302,5.249 768,108.710266,214.10085,32.581894,70.19176,5.22 768,145.6264,211.90741,20.952515,34.83525,5.166 768,402.6877,180.49567,17.126404,35.083267,5.164 768,-0.6179452,195.13643,25.374615,69.36418,5.159 768,-72.647865,266.38177,200.52666,462.19067,5.098 768,-39.40143,369.61322,109.1707,274.39044,5.04 768,532.97174,207.00847,17.402893,45.55011,5.004 768,332.007,210.02946,16.665924,29.691238,4.986 768,518.2645,118.162994,25.359741,82.66284,4.954 769,484.51544,205.19621,21.43689,51.103043,82.24 769,454.96585,210.09442,19.605713,45.22345,30.359 769,420.28577,196.3734,18.781738,49.70421,14.531 769,385.28763,188.13539,21.90976,53.017517,14.019 769,141.32542,215.218,31.793716,68.81868,11.873 769,52.73461,221.42958,31.775078,66.53319,9.269 769,506.4157,214.66066,20.28363,45.26378,9.132 769,353.62292,201.53877,19.07373,42.079803,8.485 769,92.73319,207.83289,30.782883,65.52228,8.466 769,116.50551,208.078,29.561356,71.137054,7.813 769,88.38906,219.07396,23.089394,48.458725,7.804 769,347.59534,205.64767,19.476532,44.342087,7.699 769,-11.834429,478.75403,30.115135,62.704468,7.411 769,362.12286,197.48952,18.804535,45.68196,7.379 769,495.39807,208.32414,19.116089,44.797226,7.31 769,111.60521,211.14793,24.898819,51.242966,7.309 769,66.11106,214.8946,32.0178,63.46147,7.197 769,158.55609,231.66016,24.401031,39.457214,7.084 769,514.3971,211.05042,17.86493,42.5506,6.929 769,627.0765,488.02298,19.789124,45.35788,6.862 769,370.6924,193.82593,19.225342,47.582153,6.771 769,274.25983,220.0748,18.728973,35.885147,6.735 769,4.2454715,178.22215,16.515789,39.14299,6.669 769,290.84058,218.15672,18.187012,36.292557,6.568 769,48.526302,230.28119,25.09576,47.821106,6.497 769,79.95016,217.01439,23.492683,44.022537,6.429 769,283.21027,220.69759,17.896698,33.50772,6.255 769,265.36984,219.77988,18.676971,38.095154,6.254 769,10.332822,179.24907,17.476528,37.89676,6.221 769,105.23582,215.68529,21.84655,50.317764,6.168 769,-6.14609,490.08105,18.595503,41.22235,6.145 769,-2.854755,174.39536,15.490873,40.168396,6.134 769,627.20935,-19.033016,17.73645,48.634876,6.097 769,349.96222,197.6184,26.791992,66.93147,6.02 769,622.29694,-33.644115,27.610657,76.96697,6.008 769,315.16327,217.22876,19.455261,40.209503,5.95 769,378.2708,191.92625,20.923279,53.15593,5.849 769,71.44083,213.45813,23.761978,39.553345,5.831 769,-5.7339277,-17.755066,17.786469,44.40608,5.831 769,41.313644,231.96368,35.023193,72.94324,5.803 769,612.90155,456.53262,38.568054,104.94589,5.714 769,-12.457232,-41.451942,40.91335,100.23103,5.71 769,557.1894,200.24318,16.943665,45.62062,5.626 769,562.55273,188.21762,19.850342,46.784546,5.564 769,584.56573,412.31537,70.03076,176.49481,5.533 769,279.8794,206.48514,26.606934,55.25647,5.451 770,519.6612,204.33101,24.04126,55.350723,97.501 770,460.844,206.52477,16.933899,36.879776,16.364 770,431.8017,201.43677,20.262451,48.56343,14.842 770,117.59484,214.29558,30.060356,65.19014,12.021 770,473.4408,214.25578,20.089783,45.41603,10.315 770,465.82138,208.09251,17.740204,44.208984,10.137 770,143.8408,230.94429,23.733383,40.084976,9.426 770,102.40117,212.60216,29.910538,64.940384,9.392 770,2.2562492,172.43117,20.283558,44.24539,8.31 770,-1.9946563,256.0221,27.46016,69.216736,7.905 770,-4.278124,170.96933,17.472277,43.833176,7.84 770,293.21945,211.40134,28.19925,58.441254,7.773 770,80.85381,213.64868,22.391922,43.202576,7.763 770,83.75146,215.28464,30.248405,64.325226,7.66 770,36.20231,213.7507,30.236336,60.579803,7.297 770,543.59155,206.13333,27.236755,68.35742,7.22 770,275.09558,217.67041,18.71582,40.618347,7.203 770,93.22591,209.15686,28.825294,59.07263,7.135 770,127.62482,227.5701,23.27829,46.427948,7.014 770,73.07931,222.27545,22.392273,43.177002,6.799 770,134.08354,223.71371,30.247543,59.765564,6.729 770,562.80035,186.93124,18.880615,44.738342,6.702 770,248.55243,224.24423,22.102448,44.2034,6.66 770,-11.835628,478.2777,30.09037,63.21631,6.586 770,282.86945,216.75993,18.624237,38.54196,6.585 770,539.8049,0.5446434,18.210205,30.455776,6.495 770,290.63428,215.08205,18.952484,40.04216,6.378 770,298.04852,224.41467,19.021606,37.509857,6.299 770,516.2857,201.00333,19.119812,45.550934,6.297 770,547.2878,0.36958885,18.59851,31.516563,6.237 770,270.09006,188.07063,13.052063,25.24858,6.227 770,393.71646,185.12415,20.098236,50.92421,6.156 770,525.2877,0.89113617,16.163147,28.338367,6.15 770,627.1083,-18.288628,17.07013,48.26291,6.136 770,51.807266,213.13594,30.43322,61.20894,6.004 770,539.49304,-13.083203,16.485779,34.12497,5.963 770,4.87,170.7992,29.217327,60.57379,5.956 770,311.75604,213.69237,26.64978,62.258896,5.944 770,622.23615,-33.369476,27.030945,78.58208,5.868 770,-6.124777,490.3064,18.501131,41.281555,5.848 770,348.82465,203.25836,29.577148,63.36078,5.845 770,626.79816,487.89038,20.249634,45.728516,5.845 770,536.2083,212.1604,22.07611,53.276917,5.837 770,554.7393,203.12021,18.418457,53.91098,5.825 770,524.45905,-12.349231,15.307068,32.679623,5.813 770,-12.529953,-41.51978,41.0255,100.57337,5.786 770,59.82265,204.64053,32.071667,58.692993,5.772 770,555.52484,0.8035307,18.656128,30.72137,5.749 770,267.16855,209.11166,18.634003,42.330276,5.671 770,170.85771,223.16968,20.878647,32.95163,5.648 770,588.57855,181.55612,16.986206,41.795242,5.615 770,277.3499,212.32663,28.887604,58.990143,5.613 770,570.1115,186.36186,18.48108,42.149506,5.598 771,563.1973,204.75923,24.85431,67.26918,97.711 771,469.17294,206.47342,18.342133,38.650635,22.676 771,599.92926,192.06818,23.751343,79.24573,14.121 771,443.47375,201.23502,20.914246,52.593796,13.591 771,274.25626,212.90305,20.219666,46.138,10.765 771,305.16064,209.35542,22.147247,50.600143,10.354 771,25.524563,220.91904,31.349426,56.791412,10.155 771,280.7825,204.17912,21.949158,49.352646,9.816 771,497.6526,218.61092,18.664795,43.708054,9.555 771,295.21063,207.61995,27.770142,66.45998,9.222 771,-3.109654,160.0093,15.559244,36.94362,9.179 771,43.031025,211.06438,31.934048,59.39479,9.035 771,289.68005,257.24518,22.28659,37.973114,8.903 771,88.37014,222.48271,22.349068,39.919968,8.694 771,288.34778,210.68173,22.03061,47.412933,8.613 771,-4.2395525,170.755,17.316782,43.0412,8.601 771,38.24892,224.4335,25.145493,43.849792,8.551 771,268.76987,242.49344,29.325989,57.20508,8.443 771,91.11291,212.12979,30.25541,56.980896,8.141 771,261.86368,202.72823,28.893036,63.487503,7.913 771,2.7825928,167.7731,16.00214,37.62944,7.715 771,3.5140574,157.68802,15.371559,31.352707,7.609 771,473.81973,212.34073,19.75647,44.375793,7.436 771,72.88478,227.79695,23.344925,43.761276,7.411 771,297.4871,255.4036,20.012207,31.89386,7.392 771,597.1165,194.85083,17.252075,61.33127,7.322 771,619.12445,186.26462,17.79004,67.18581,7.31 771,81.88267,215.35228,21.889656,44.39064,7.252 771,382.73434,182.90086,27.754303,58.76593,7.233 771,282.1725,223.75015,19.13913,40.97171,7.141 771,361.54395,204.4332,19.675354,37.324585,7.095 771,237.86375,216.48425,26.602798,66.62741,7.05 771,333.69232,221.91377,29.587677,71.3409,6.907 771,143.02788,218.48643,28.42569,56.48253,6.875 771,-11.924379,477.88763,30.579378,63.29425,6.73 771,55.89729,219.78613,23.90012,47.434204,6.645 771,-8.916502,163.85388,27.200813,69.93976,6.608 771,60.030212,203.31898,31.571915,56.889267,6.512 771,626.7153,487.41418,20.362854,46.222168,6.378 771,-3.527679,142.91891,15.843195,37.200348,6.289 771,602.2825,-56.711975,54.03064,141.58174,6.194 771,152.91565,223.02084,22.750473,38.845856,6.17 771,318.69623,216.62766,28.287537,67.13028,6.139 772,476.1054,206.55644,18.084625,47.518143,20.285 772,412.04868,196.3038,19.380585,48.829132,15.012 772,295.63068,204.04457,28.183716,71.2885,14.279 772,306.18402,206.00296,23.608582,49.098114,14.12 772,617.0507,260.66077,19.970703,46.530945,13.462 772,477.64197,210.63426,25.753601,61.63652,12.845 772,0.9588945,243.40953,22.94869,53.406906,12.672 772,456.21902,203.4397,20.185028,50.152985,10.705 772,277.3509,202.21324,28.914398,74.15221,10.686 772,288.82266,266.66788,23.233551,38.20645,10.419 772,557.4696,200.25223,14.898315,36.86023,9.639 772,509.31238,203.73254,13.886536,39.25,9.547 772,263.3675,202.3851,28.411041,74.562836,9.387 772,87.74635,213.4619,24.30449,43.915817,9.341 772,267.7572,256.05664,31.336487,60.21399,8.969 772,384.1951,184.17625,24.379547,54.95691,8.363 772,290.23026,257.1904,31.984344,61.151703,8.239 772,99.876816,209.57016,30.064102,58.105377,8.232 772,97.0343,207.2482,21.69429,41.879166,8.175 772,112.573006,215.98013,21.941795,39.14351,8.048 772,221.11038,236.10553,31.427078,73.48285,7.771 772,106.080025,208.48337,20.38211,39.61548,7.619 772,516.4368,203.25298,13.704407,37.835373,7.535 772,76.5917,204.43047,29.790756,54.17372,7.475 772,620.27466,192.87958,14.049805,35.851562,7.417 772,287.89346,204.6613,23.450623,59.06993,7.41 772,503.4526,204.92694,24.876373,62.26248,7.39 772,282.4921,261.7125,22.159424,36.08319,7.368 772,617.5641,199.7521,20.41455,55.046616,7.364 772,-3.8639057,154.0552,16.045519,42.45404,7.362 772,315.41296,208.62042,28.632172,71.07703,7.339 772,541.80054,202.67464,12.575012,29.478882,7.335 772,568.54065,202.754,20.613037,51.009277,7.324 772,278.2561,267.7715,30.550476,61.640594,7.27 772,552.10645,200.92506,25.724487,57.65526,7.201 772,591.66394,196.18896,10.752075,30.000671,7.083 772,71.62143,217.11469,24.416397,39.604706,7.074 772,298.31924,227.12154,19.860626,45.223618,6.939 772,340.79944,212.81459,27.77893,72.606094,6.932 772,597.567,199.42047,14.49176,37.817657,6.891 772,362.67657,201.85472,18.276764,41.67209,6.887 772,495.96085,210.90176,24.404694,65.00235,6.852 772,524.3109,204.70973,13.644653,34.13765,6.839 772,260.40036,246.39177,29.82846,54.469193,6.829 772,-3.9732952,250.44763,18.97796,49.664978,6.776 772,314.20776,264.79544,19.099274,35.62323,6.737 772,284.8657,228.35158,31.72348,65.32185,6.696 772,402.62128,194.87048,20.45813,49.531876,6.677 772,306.095,224.3267,20.202728,47.259537,6.628 772,290.4094,258.72964,20.890259,30.603973,6.606 772,532.6486,205.62883,13.913208,32.465546,6.574 772,562.0374,200.75902,18.58142,44.353546,6.556 772,394.74033,194.03986,19.31601,46.979736,6.463 772,296.23776,230.55318,32.688354,79.69591,6.458 772,626.905,488.188,20.042297,45.69464,6.457 772,296.75653,263.22864,22.03659,34.271088,6.414 773,302.19943,210.98032,28.525116,70.90509,15.207 773,311.87442,211.89714,22.216492,41.957245,14.508 773,288.66348,282.84387,23.426483,37.514587,12.304 773,169.1458,211.40195,22.310623,38.24356,11.454 773,269.41983,204.88652,28.479858,68.67818,11.11 773,286.40567,209.36162,28.876312,73.71803,10.844 773,265.67358,203.57751,22.505554,51.755844,9.928 773,280.03107,207.68417,23.236603,54.770966,9.804 773,474.33057,209.74434,20.342834,45.772232,9.573 773,258.96524,263.02286,32.103912,62.652252,9.507 773,281.10382,273.4774,24.58139,41.420013,9.333 773,394.12744,195.89355,19.404938,48.322357,8.783 773,315.9334,213.71289,27.857056,71.90106,8.544 773,596.71576,185.62248,16.160583,40.22078,8.182 773,325.55234,218.39272,28.596954,72.108505,8.108 773,290.29504,267.0731,33.743042,59.865417,7.89 773,254.95413,206.28513,27.857697,69.50406,7.536 773,141.42267,204.1034,28.466797,56.37967,7.476 773,268.42352,273.98978,31.147308,64.979126,7.466 773,389.3396,169.53941,26.93628,67.94603,7.136 773,297.72614,218.39432,21.733368,58.15384,7.086 773,140.24008,204.98991,16.907867,36.132187,6.905 773,304.20786,281.02692,22.191559,39.192993,6.829 773,159.60986,207.62236,27.006058,51.34764,6.731 773,296.89322,288.36597,21.291931,38.88037,6.677 773,104.553566,207.1947,23.838448,36.93158,6.676 773,176.93866,207.944,18.823212,34.255646,6.666 773,-11.499485,477.99124,29.427124,63.608,6.5 773,464.16815,201.43109,26.300964,58.84201,6.46 773,410.25842,187.0369,19.045807,44.72905,6.448 773,278.63412,255.07072,33.913177,80.57631,6.429 773,401.199,195.94931,20.24118,47.968735,6.384 773,249.54373,217.47302,20.740173,54.344604,6.336 773,-5.729236,-17.58377,18.025858,44.04481,6.255 773,-1.4683437,229.00864,27.986671,64.785034,6.221 773,469.5882,217.84758,30.550781,68.514786,6.184 773,185.38403,221.67915,20.121216,34.38658,6.148 773,520.8859,216.02618,26.883911,61.508575,6.148 773,387.0386,189.21338,20.778107,51.38643,6.145 773,349.79678,239.11855,29.684723,73.67317,6.124 773,335.8402,219.90448,28.879364,73.72699,6.088 773,146.84178,203.00627,17.795822,37.85869,6.084 773,273.06204,204.05074,21.402191,40.704056,6.015 773,229.94196,221.04802,28.652832,66.94774,5.909 773,261.88605,221.32855,27.905273,69.99463,5.902 773,-6.0566187,489.8166,18.562998,41.91272,5.901 773,-4.7124376,159.479,17.82688,44.255493,5.886 773,621.86145,478.2427,28.525269,66.54874,5.886 773,270.22012,196.96208,13.592621,24.719345,5.878 773,281.39047,293.4498,21.832458,43.483856,5.876 773,622.00006,-33.16154,27.468079,77.00955,5.77 773,136.57701,216.2976,22.574432,37.632874,5.712 773,-4.8524504,237.55104,18.74489,40.99321,5.668 773,221.41177,226.76947,29.318436,81.141785,5.628 774,466.84415,206.85739,18.516876,47.808258,24.269 774,473.44254,208.35503,17.98169,39.515747,15.37 774,415.4874,199.98076,21.109467,49.104294,12.74 774,310.88147,213.01437,23.353638,46.891815,11.83 774,302.63828,210.62723,27.775604,72.30066,11.639 774,269.1763,205.19356,30.42273,73.00194,10.923 774,361.10703,209.59526,21.11618,45.670563,10.855 774,348.44467,224.26042,31.400055,75.17616,9.562 774,148.2099,207.35745,29.12381,53.72177,9.175 774,287.9031,285.0903,23.936005,35.388824,9.152 774,285.09396,208.85182,29.708557,74.09221,9.045 774,272.94077,278.45813,23.203888,43.48477,8.615 774,259.43884,268.20013,32.734497,63.60556,8.376 774,276.5768,273.8023,33.346222,58.52063,7.359 774,294.54276,259.2991,33.48291,77.98041,7.357 774,213.03873,226.08255,30.38771,81.286194,7.196 774,144.7719,215.71736,23.165451,37.718582,7.154 774,229.9669,222.80173,27.390762,73.929504,7.096 774,254.17532,205.92267,27.560059,72.06598,6.98 774,178.7417,212.45436,19.821701,35.317642,6.966 774,355.39532,210.91626,30.359528,68.57611,6.871 774,315.6048,216.10445,28.078247,71.947525,6.631 774,265.22818,207.97969,23.085907,57.493088,6.499 774,173.5498,214.37357,30.404358,56.22812,6.497 774,171.24664,210.66592,19.356216,36.657486,6.495 774,-11.894584,477.94144,30.06886,63.46408,6.492 774,166.70581,205.96794,11.272125,18.24385,6.356 774,356.513,246.00934,34.209015,77.52594,6.335 774,163.45508,206.15979,16.377838,31.585648,6.327 774,480.6459,208.6277,16.841736,35.22528,6.309 774,-5.754858,-17.476688,17.919952,43.547646,6.304 774,281.2533,218.91994,22.480103,55.814804,6.251 774,159.38115,205.52228,11.242783,18.88948,6.243 774,444.3298,197.18507,16.858673,35.72255,6.234 774,-4.70161,262.70193,18.57161,43.030823,6.2 774,269.17853,283.95706,31.687744,62.764343,6.153 774,-6.022122,489.63348,18.332073,42.18329,6.101 774,112.3604,231.00119,35.93022,56.817993,6.084 774,155.86104,207.96947,16.701126,30.206924,6.067 774,296.2302,290.6615,22.684052,37.354492,6.01 774,460.15784,200.74124,18.126617,41.751343,5.995 774,390.80554,180.84933,25.721375,59.619965,5.962 774,-11.220932,-32.145145,30.0859,73.38302,5.937 774,519.6057,223.01793,27.961914,58.454086,5.925 774,410.52063,189.85553,20.842163,46.78621,5.898 774,612.87775,453.0938,39.52002,109.03876,5.844 774,298.0814,231.48676,20.406525,48.733856,5.777 774,325.04816,219.41269,29.934296,70.49658,5.743 774,244.7686,218.93404,27.783493,75.08501,5.676 775,417.54544,196.79207,20.879791,50.909912,19.539 775,311.27988,213.8988,22.74765,45.879974,17.512 775,464.75897,209.90355,18.704956,45.015823,14.762 775,303.1124,211.17975,27.43277,71.42996,11.837 775,400.81738,196.71649,22.09497,50.185516,10.48 775,348.45187,221.42767,27.796906,71.05701,10.421 775,269.40283,207.59457,29.536682,70.25101,9.464 775,409.67572,193.77583,22.020721,50.528717,9.234 775,280.82126,283.55038,23.928131,37.971405,8.833 775,283.2692,276.96484,33.803955,55.909637,8.592 775,259.24792,269.5706,32.72827,61.800262,8.531 775,212.9204,224.38795,30.452393,80.611435,8.48 775,272.84488,279.8859,23.402313,42.36902,8.475 775,285.82568,210.23033,29.20111,72.226456,8.263 775,52.41205,245.07565,28.712906,67.9946,7.868 775,595.7222,186.76949,16.795837,41.494385,7.515 775,316.15515,217.48146,27.33316,69.852646,7.505 775,336.6785,220.53856,27.00528,73.441635,7.486 775,460.65152,220.66621,28.759644,73.966415,7.435 775,298.20923,219.32875,22.060822,56.58235,7.364 775,229.8365,222.98373,27.79039,73.78723,7.355 775,162.73868,210.29478,18.61937,36.499146,7.35 775,265.14758,210.82887,22.71341,54.47899,7.324 775,484.60858,235.5982,28.692383,57.876343,7.188 775,626.9697,488.36298,19.933655,45.08722,7.01 775,166.98753,207.0003,10.686752,17.373215,6.953 775,253.88773,211.1396,27.922516,71.26463,6.943 775,280.2272,209.82814,23.490814,51.72084,6.841 775,394.3419,200.12325,19.376862,48.01889,6.782 775,294.46606,258.65488,33.855743,78.699646,6.613 775,309.40408,240.6364,35.34964,84.10228,6.575 775,-11.156882,477.6248,28.881828,63.716705,6.519 775,174.2459,207.66972,10.383163,16.622482,6.485 775,496.70413,241.91891,22.089447,43.03473,6.322 775,288.45834,279.46338,23.827148,35.204956,6.315 775,326.33734,235.93446,35.72406,86.25951,6.292 775,155.783,210.28065,18.660278,35.672256,6.247 775,553.6346,243.39438,21.67688,37.124786,6.17 775,269.13196,284.32324,31.865143,62.339417,6.102 775,-5.63336,489.20798,18.022125,42.270966,6.093 775,356.57275,248.3853,33.18805,75.25783,6.07 775,170.44162,209.254,18.466995,36.444565,6.064 775,459.0863,-15.730101,17.333801,36.945873,5.922 775,-5.829141,-17.557041,17.8991,43.97422,5.889 775,612.85156,456.86136,38.642822,104.53354,5.738 775,160.17343,205.6457,10.398544,18.093155,5.716 775,-11.224357,-32.285984,30.116467,74.36846,5.658 775,508.22668,226.69162,17.062317,37.12393,5.651 776,310.90118,210.25925,23.959198,45.99875,20.724 776,302.99585,210.54259,27.888,71.452225,14.038 776,268.8938,207.4891,30.82013,70.1994,11.326 776,212.91605,223.24802,29.992188,81.24045,10.481 776,457.0254,205.06291,25.552124,60.785263,10.464 776,378.5257,213.30693,18.720947,45.159683,9.636 776,280.9862,283.64096,23.503693,37.932312,9.564 776,229.1964,222.60544,28.242996,74.921326,8.881 776,343.40875,222.76128,26.770264,76.46736,8.313 776,284.73242,205.55565,30.951233,72.86049,8.285 776,253.4027,207.07666,28.516739,70.809235,7.979 776,443.15262,203.78404,18.761475,38.220825,7.934 776,521.05414,217.01175,25.758911,63.496216,7.837 776,315.59213,213.88937,27.829681,74.20987,7.812 776,283.47354,277.39267,33.434357,55.618988,7.798 776,400.44434,191.37157,22.051086,51.95993,7.778 776,259.49005,269.7156,32.604614,61.9718,7.39 776,410.00885,192.05252,20.585999,46.606796,7.215 776,265.24518,206.27846,22.19342,47.956985,7.092 776,325.7165,219.33199,28.34436,71.862564,7.022 776,-11.494392,477.8013,29.483423,63.799713,6.978 776,626.6717,486.85043,20.392761,46.327057,6.963 776,163.18973,210.02432,18.390106,37.2155,6.956 776,-0.2572763,207.53102,23.350458,44.49391,6.826 776,613.0907,452.37912,39.19519,111.13541,6.77 776,390.5699,188.43744,27.111938,66.73976,6.709 776,295.3739,286.55692,23.421844,34.647583,6.67 776,35.1057,206.46567,33.510548,61.01599,6.566 776,270.6895,197.78387,12.143982,23.109802,6.536 776,174.52028,207.39955,10.436996,16.88823,6.522 776,170.49924,209.90485,17.95044,36.87181,6.517 776,595.9238,191.52148,17.932556,44.74115,6.498 776,167.01721,206.5583,10.661392,17.565903,6.471 776,281.4883,219.39922,21.854218,54.947037,6.463 776,500.56476,218.34084,16.235046,33.191666,6.298 776,446.73663,185.98654,27.461609,59.10463,6.288 776,298.6626,230.6713,19.880371,49.051666,6.192 776,288.65796,279.471,23.048218,35.013977,6.156 776,497.87143,180.89143,20.048126,35.453262,6.154 776,266.10217,224.14432,21.100159,51.680695,6.093 776,-6.190843,201.93416,21.019957,43.158173,6.066 776,-5.9718113,489.57178,18.247995,41.759216,6.033 776,269.4003,284.17126,31.437286,62.70935,5.991 776,180.59537,209.30357,15.13382,28.74614,5.974 776,355.70685,245.4685,31.650513,75.76935,5.953 776,-12.406942,201.83794,30.974485,66.732285,5.91 776,505.48398,177.72313,21.547455,39.150345,5.894 776,626.93536,-18.472443,17.295593,47.61445,5.857 776,113.50676,229.53476,34.034332,69.86386,5.841 776,346.0367,219.16934,19.735352,42.93466,5.838 776,75.26987,288.62793,31.326645,77.37488,5.712 777,310.39383,212.03375,24.520966,44.2977,24.489 777,436.65485,199.61328,26.989288,65.91864,13.784 777,555.1928,188.48245,18.832031,40.745712,12.597 777,302.97397,211.17728,28.205872,71.74283,12.294 777,268.46317,207.69562,30.89682,70.93417,10.331 777,213.15933,224.25522,29.973022,79.55347,8.872 777,-1.8550801,232.53294,23.213718,49.19594,8.864 777,443.18127,195.89746,18.393768,41.73056,8.737 777,596.6934,189.8923,13.892639,36.3257,8.537 777,283.2387,276.8867,33.643402,56.071075,8.451 777,280.91998,283.73532,23.213898,37.622772,8.339 777,415.62152,192.14145,22.000793,49.18637,8.338 777,315.36484,214.75674,29.137268,65.96127,8.169 777,285.00153,209.93068,30.376343,74.477005,7.967 777,450.23865,199.83008,18.860016,45.731262,7.795 777,589.91614,193.13551,16.167542,40.482513,7.584 777,347.79312,235.47455,33.0365,70.889465,7.532 777,-4.1071835,200.27496,31.585596,64.70038,7.496 777,355.898,250.47002,34.869965,74.00493,7.451 777,398.55685,187.71472,27.00766,61.681335,7.306 777,253.4781,209.8141,28.95369,73.65114,7.233 777,265.60837,206.60115,22.306427,47.441803,7.224 777,0.19352317,254.5921,21.21067,42.556152,7.11 777,494.69092,265.9266,28.48706,76.05469,7.079 777,325.50198,221.2901,29.371918,68.45441,7.068 777,-5.9685516,295.2378,19.913183,43.2706,6.853 777,259.75613,270.40585,31.94696,61.12381,6.8 777,229.998,221.56049,27.442947,71.384094,6.74 777,466.9073,298.23483,29.951385,74.881775,6.653 777,626.71295,487.65256,20.230896,46.1868,6.594 777,342.10294,224.68857,29.434082,67.05307,6.484 777,162.63107,210.53664,19.37796,36.61522,6.426 777,266.08435,224.6947,21.081665,52.28595,6.3 777,-6.085066,203.39954,20.044193,40.1212,6.256 777,288.7398,279.0114,23.140045,35.29071,6.248 777,281.33554,219.98279,22.153992,54.47516,6.163 777,-8.616768,465.77707,37.23815,89.96231,6.159 777,-5.576376,488.971,17.835978,42.750366,6.125 777,-5.123929,263.18378,18.267715,42.97296,6.115 777,-2.3628068,255.93127,29.473772,72.70026,6.106 777,-5.8416424,-17.55724,17.918728,43.646126,6.096 777,298.0843,218.52832,22.695587,57.85666,6.082 777,293.97333,259.69043,34.41754,78.60977,6.077 777,422.9262,199.64734,29.408447,66.68024,6.076 777,1.0704875,300.69006,22.036907,46.315186,6.058 777,452.29373,195.54544,14.649811,32.459595,6.057 777,-6.223924,219.09082,20.749838,42.098175,6.055 777,581.19617,191.6197,14.766785,34.85579,6.044 777,295.1341,285.7792,24.052277,35.633392,5.991 777,612.87823,456.59433,38.76184,104.37576,5.961 777,-5.5937767,167.85469,18.849121,42.976807,5.875 777,458.50528,195.64952,16.559906,39.975418,5.861 777,170.12314,209.17712,18.930664,37.053787,5.857 777,174.47116,207.18893,10.92804,16.713287,5.846 777,562.02637,189.43225,16.716064,34.075485,5.791 777,459.12186,-16.975037,17.24533,38.58422,5.765 777,557.1127,176.02318,15.043457,32.28975,5.762 777,-11.2960415,-32.335182,30.162855,73.93657,5.755 777,627.0027,-18.524595,17.218445,47.88171,5.751 777,-4.381824,245.62843,18.32306,44.699997,5.737 777,492.8935,192.14502,12.875671,22.466324,5.705 777,501.15878,191.28596,13.707306,23.753876,5.667 778,309.14914,217.71,28.122284,65.28978,13.174 778,268.91534,206.68134,30.221191,71.81201,11.097 778,379.30573,202.7952,19.361145,43.87204,9.831 778,281.27426,283.63416,22.754486,37.3869,9.489 778,388.20062,209.69086,29.818054,75.5058,9.366 778,294.96786,211.34525,28.980347,72.562744,9.359 778,273.54703,279.76828,22.564789,40.899994,9.223 778,385.8694,194.83379,19.22754,45.47696,8.607 778,213.31831,224.34187,29.590302,79.90346,8.549 778,311.4251,215.08575,23.459686,38.987854,8.306 778,394.6716,192.08249,18.00299,47.996796,7.869 778,258.0668,216.4765,21.116577,58.134155,7.841 778,283.81314,276.78168,32.689545,55.97888,7.833 778,19.81084,246.50725,30.936096,65.9778,7.201 778,162.46184,212.89854,18.10402,35.965363,7.158 778,326.3008,221.28424,27.80365,68.37506,7.1 778,229.70346,223.31808,27.661285,74.133484,7.073 778,170.88046,212.1573,17.43306,34.66841,7.046 778,521.4637,217.83463,27.21753,60.613068,6.978 778,-11.491872,476.91763,29.566086,64.48422,6.946 778,-10.273089,251.74933,28.379425,69.06354,6.784 778,178.85176,213.22122,18.226883,33.819763,6.725 778,259.54956,270.59338,32.06131,60.273315,6.713 778,336.86887,222.24184,26.45282,72.0352,6.7 778,350.1219,223.07219,30.478638,84.43034,6.691 778,-5.854411,489.06415,18.253647,42.309937,6.43 778,265.46725,206.54138,22.038177,48.481415,6.362 778,288.97565,279.08054,22.682495,35.303864,6.345 778,266.18628,223.61478,20.687103,53.333862,6.341 778,401.80792,191.01662,18.170563,48.4852,6.207 778,305.91736,230.88724,20.915405,48.86017,6.185 778,295.41376,286.09766,23.682465,35.344727,6.154 778,320.63367,229.2379,21.59903,51.14482,6.111 778,281.1716,219.39796,22.260834,55.606766,6.11 778,452.4747,190.70541,14.14212,27.958603,6.107 778,445.6109,196.5798,27.577728,65.78262,5.916 778,626.8407,487.77985,20.08142,45.509705,5.874 778,613.015,452.9631,39.0542,109.328766,5.837 778,364.7267,222.20145,30.165924,81.295135,5.807 778,270.601,188.07333,12.107819,25.74614,5.79 778,-5.3107233,264.72528,19.20153,43.776733,5.79 778,5.8026943,248.57584,30.1295,73.65701,5.77 778,-11.3497305,-32.45798,30.187428,73.944496,5.759 778,288.35406,214.54099,23.360504,55.07263,5.732 778,1.2531215,254.67897,19.927738,41.547653,5.695 778,326.47964,235.07748,35.132935,87.47818,5.683 778,-5.8943915,-17.460575,17.99361,43.77958,5.661 778,461.0171,190.39326,13.826904,27.231766,5.633 778,626.96234,-19.33009,17.505188,49.070057,5.61 778,309.7213,238.6072,35.46042,87.166,5.596 778,357.06946,246.68517,30.630463,79.67714,5.592 778,269.2445,284.89597,31.198822,61.49292,5.581 778,294.6874,258.30243,33.660675,79.891815,5.545 778,156.24382,209.14674,16.18312,30.111893,5.455 778,-17.224943,-64.91965,55.71582,146.692,5.438 778,443.6757,192.47807,17.201965,41.33899,5.415 778,-5.8912325,167.76015,19.25261,43.344833,5.414 778,249.52258,217.93645,20.015717,57.995743,5.38 778,445.53677,185.81178,14.105713,26.463455,5.328 778,622.0451,-33.318245,27.356018,77.41518,5.328 779,310.7206,212.02634,23.254578,42.553513,20.948 779,302.70578,212.3416,28.066437,68.80153,13.769 779,20.441801,287.2249,33.824364,66.62485,12.302 779,269.2016,207.26701,30.035522,71.54857,11.258 779,342.41928,223.05328,29.740387,74.00836,10.037 779,-1.1514568,282.64606,25.982025,71.81604,9.569 779,285.6708,209.36536,29.933502,72.6012,9.345 779,283.48712,276.7688,33.593292,56.00058,9.098 779,281.2536,283.3955,23.20465,38.250214,9.049 779,320.4089,220.46536,22.290253,57.348907,8.884 779,326.75525,219.64319,28.184082,69.70001,8.782 779,273.04495,279.3383,23.129486,42.55075,8.401 779,259.18088,269.49713,32.509674,63.205017,8.378 779,355.2744,231.7634,31.000275,72.01019,8.027 779,212.91975,224.17964,29.681732,80.64882,7.45 779,313.55948,227.86324,20.816498,53.17427,7.339 779,556.80945,195.92003,14.2144165,33.480026,7.268 779,6.1002483,273.62463,28.379278,71.973755,7.226 779,266.04028,207.64099,21.964203,47.1203,7.146 779,281.47827,218.3274,22.133362,56.32892,7.133 779,253.59415,210.67197,28.55011,73.03952,7.124 779,626.8018,488.34473,20.018372,45.445312,7.099 779,-10.706257,252.2056,27.861244,68.041626,7.002 779,470.2793,218.43727,27.72876,65.82893,6.853 779,229.96082,223.32855,27.615814,73.82709,6.675 779,401.89453,189.42297,19.870056,56.75142,6.585 779,395.0865,185.99677,17.863983,44.139633,6.567 779,309.8914,209.8407,35.401703,91.53403,6.546 779,-5.5356765,279.40512,18.86616,45.338776,6.501 779,178.68727,212.91832,18.37358,34.165924,6.463 779,443.39725,199.9275,17.5531,39.045425,6.442 779,170.49028,212.79858,17.668304,34.4283,6.336 779,288.65344,278.78635,23.463287,35.847137,6.323 779,294.93457,285.7288,24.321198,35.433502,6.284 779,266.13593,223.17949,20.889954,53.103714,6.263 779,31.964096,250.84451,23.542248,41.58554,6.167 779,-5.9067464,-17.278675,18.059954,43.497696,6.152 779,330.27615,215.37685,19.713745,38.253098,6.128 779,-11.34947,477.2,29.561552,64.293396,6.116 779,-5.723323,488.85718,18.203537,42.635986,6.099 779,406.41388,190.75714,25.761566,63.904724,6.053 779,23.311768,247.33293,29.23399,66.448746,6.033 779,294.22202,257.393,34.38788,79.674255,6.032 779,0.61555266,276.7992,20.357405,49.43335,6.03 779,581.0491,193.43568,15.907227,37.709198,5.989 779,-9.521733,289.39108,38.623184,100.21835,5.967 779,410.81192,187.06383,18.8591,41.370834,5.955 779,298.11078,230.12495,20.450897,49.710403,5.885 779,434.17914,201.27626,19.950531,47.21721,5.878 779,612.8018,457.0998,38.590942,103.88019,5.815 779,269.58508,284.24365,31.02118,62.815094,5.797 779,-11.303309,-32.072197,30.258938,73.7054,5.782 779,-3.8451312,250.95471,17.54555,41.862488,5.741 779,507.50992,214.1613,17.24527,34.829758,5.683 779,270.39294,196.45016,12.756805,25.257889,5.678 779,627.127,-18.231117,17.184143,47.449444,5.678 780,400.87466,198.34222,23.631195,53.68599,14.504 780,302.67807,214.68436,27.741669,69.0278,12.093 780,313.21292,220.06702,22.1904,54.655884,11.396 780,408.70242,193.69571,21.491241,47.09572,9.968 780,28.593307,273.14804,32.302803,58.90091,9.881 780,412.2308,200.93903,25.815094,59.386993,9.656 780,5.704585,252.4255,29.151428,69.52417,9.292 780,348.49695,230.97598,28.962616,73.86792,9.246 780,269.1088,205.99857,30.415619,71.89914,9.124 780,287.53345,285.79846,24.575653,34.6976,9.044 780,1.6379261,255.88358,20.56014,47.8573,8.384 780,273.4775,279.19873,22.450958,41.647827,8.085 780,326.54312,220.6363,28.383972,68.08763,8.04 780,213.36394,223.98462,29.171799,81.07349,7.845 780,276.4976,274.204,33.668854,57.877136,7.444 780,336.59326,223.33409,27.67566,72.83159,7.396 780,230.55319,220.89867,26.586395,72.56825,7.132 780,285.30737,209.49696,30.35617,73.46483,6.985 780,626.7806,488.19516,20.007812,45.378754,6.932 780,270.6874,189.12804,11.3714905,23.995026,6.927 780,21.613054,258.1836,30.114157,66.21091,6.92 780,580.23645,190.0177,18.25769,39.906204,6.852 780,253.14568,209.08746,29.02031,75.61676,6.772 780,259.11133,269.6256,32.656128,61.14276,6.766 780,158.95001,205.70827,11.0460205,18.26706,6.762 780,309.8273,222.2825,35.35669,88.12799,6.683 780,-11.366161,477.4624,29.292412,64.03137,6.683 780,290.3287,275.6251,33.53128,58.22589,6.662 780,-5.3298464,256.57175,18.105057,43.683014,6.631 780,264.86133,205.19388,23.07019,49.150238,6.598 780,41.652927,278.64404,31.549572,56.311035,6.528 780,170.50255,212.99474,17.259354,33.724808,6.404 780,282.0418,277.01285,22.99118,37.4057,6.389 780,297.94437,220.38536,22.218475,55.428665,6.338 780,163.87073,208.66325,15.646515,30.740067,6.323 780,179.0238,213.31369,18.34343,33.475204,6.321 780,-5.861059,-17.215961,17.90653,43.22727,6.319 780,15.642781,269.66357,23.770157,53.66336,6.215 780,0.78316927,264.53003,24.896372,70.6597,6.135 780,280.21326,207.31778,23.378815,54.351868,6.099 780,415.9953,191.03079,20.231506,41.683304,6.094 780,308.53198,212.07811,21.098328,41.86763,6.064 780,-5.7673097,489.14563,18.172094,41.623535,5.986 780,417.42706,210.80563,31.823547,75.20438,5.933 780,-11.265784,-31.934437,30.192783,73.31592,5.919 780,293.62354,201.88045,12.501007,22.847275,5.875 780,595.9387,186.26218,17.000488,42.214264,5.86 780,33.293716,236.66776,32.688004,59.21884,5.79 780,320.79718,226.83124,21.678375,53.523987,5.775 781,312.135,213.7071,22.9599,40.80562,16.575 781,38.52732,259.8012,29.416641,64.30838,12.795 781,302.84955,212.89813,28.006592,70.13251,12.336 781,319.64584,216.63336,22.046906,46.060303,11.606 781,326.90247,218.26924,26.519348,70.67345,11.48 781,410.8221,189.39005,19.466736,51.482742,10.348 781,48.073723,272.74393,23.212135,44.463135,10.253 781,441.4122,203.07256,17.822113,43.309326,9.864 781,287.87756,286.6216,24.059784,34.340515,8.591 781,269.17355,207.21278,30.401031,70.76204,8.541 781,402.19153,188.67062,20.932678,53.97522,8.453 781,0.33283114,229.67714,20.395338,49.831528,8.18 781,310.367,209.67012,35.24817,90.998215,8.163 781,285.53036,209.77617,29.962769,73.45271,8.101 781,273.30115,280.6459,22.703888,41.1427,7.897 781,595.89075,187.4527,17.607788,42.28055,7.725 781,283.5174,277.73688,33.149597,55.71054,7.636 781,27.424221,251.4745,32.856464,62.220016,7.532 781,213.54184,225.48477,28.670593,80.22583,7.289 781,259.07855,269.57404,32.67737,62.284515,7.166 781,313.2828,227.27164,21.381012,54.27652,6.965 781,338.15125,219.95146,19.816345,43.373154,6.842 781,-10.003166,228.66849,28.18858,76.02417,6.842 781,417.19193,188.53215,18.842804,42.980164,6.817 781,56.005997,277.84225,23.230309,44.246704,6.804 781,170.57196,212.925,17.412338,33.678146,6.761 781,341.55258,211.18906,36.108246,94.20221,6.69 781,253.70172,211.05898,28.26477,72.201614,6.685 781,235.9117,221.97272,28.58989,75.74884,6.649 781,385.30994,188.15973,24.75476,57.455627,6.569 781,-11.228976,477.10648,29.427547,64.506256,6.559 781,-5.860421,488.8757,18.371521,42.74417,6.505 781,164.41476,208.46652,15.379074,29.861511,6.481 781,626.7457,488.22015,20.184265,45.62903,6.47 781,281.46768,289.04114,22.723969,39.86255,6.454 781,265.1373,210.14972,22.641663,54.323517,6.445 781,298.09253,219.33818,22.39386,56.900772,6.404 781,178.86859,214.01111,18.265274,32.516113,6.349 781,174.53748,207.70564,10.330521,16.146759,6.328 781,346.15222,220.7699,18.882233,41.213867,6.322 781,159.72968,205.66791,10.403442,17.759415,6.158 781,281.43878,219.88705,21.752563,54.331024,6.151 781,-5.836506,-17.349766,17.976377,43.648735,6.122 781,0.05450964,267.63004,25.422697,67.42557,6.013 781,626.9665,-18.32621,17.089783,47.33338,5.973 781,328.84613,215.9901,20.721466,40.716446,5.961 781,527.3441,229.85582,20.191406,41.22029,5.957 781,-11.356922,-32.130623,30.287737,73.83225,5.826 781,336.3106,221.6191,26.31482,76.7693,5.805 781,357.20334,249.23808,32.077087,77.70137,5.791 781,167.01013,206.36473,10.510284,17.17389,5.769 781,523.063,236.25499,30.932556,65.18468,5.732 781,269.4352,285.55167,31.342957,61.963165,5.729 781,459.33148,-15.911911,16.923737,37.080402,5.712 781,296.6173,291.55496,22.019196,37.418,5.712 781,40.417233,255.92651,23.70464,36.356506,5.694 782,310.00085,215.1321,27.37082,69.774734,12.832 782,311.85767,212.4965,22.730957,41.327805,12.427 782,320.56653,220.42116,22.005524,57.43318,10.448 782,295.03308,210.22644,28.273773,73.76422,9.806 782,269.43472,206.97285,29.431854,71.32527,9.686 782,44.928432,257.57327,30.58929,59.476868,9.552 782,212.75749,222.8633,30.208542,83.62749,9.376 782,326.2367,220.47482,26.36554,68.34308,9.341 782,280.82697,284.1626,23.545837,37.487244,8.607 782,-0.21641135,227.96431,26.009802,64.82994,8.169 782,283.40543,277.04623,33.510498,55.957794,8.071 782,273.17377,279.9842,22.902252,41.266724,7.817 782,229.50345,222.24124,27.846252,76.23172,7.815 782,29.07877,240.60945,31.699505,65.86226,7.572 782,55.95707,266.15567,24.968925,45.188873,7.252 782,422.4254,211.90193,27.165924,68.50215,7.128 782,259.56128,269.2503,32.343933,62.159485,7.077 782,-11.490971,477.5011,29.570202,64.14526,6.922 782,595.3921,187.93303,17.628174,42.35353,6.901 782,179.14285,212.76445,17.876404,34.03398,6.753 782,626.9456,488.3925,19.938416,45.37906,6.721 782,288.7637,291.75983,22.715485,36.711914,6.692 782,355.7448,244.74182,32.82428,74.81738,6.68 782,170.81276,212.31001,17.129974,34.52539,6.662 782,164.33823,208.93042,15.30658,29.953613,6.656 782,405.47552,224.32706,28.545715,68.599884,6.64 782,279.78076,209.26031,23.963196,52.596283,6.614 782,257.56085,216.553,21.570038,56.96959,6.53 782,294.71252,258.11517,33.90558,79.32477,6.497 782,159.56024,205.65138,10.585709,18.013336,6.406 782,295.13007,285.5511,24.179443,35.746704,6.316 782,342.97327,223.96883,28.942871,76.8224,6.201 782,289.79254,218.36594,22.417206,57.16684,6.172 782,-5.9648805,489.09296,18.462736,42.73755,6.128 782,461.03854,208.19235,15.159149,34.562164,6.127 782,-5.819994,-17.035845,17.948078,43.56239,6.045 782,409.59192,191.74156,21.593414,51.30275,6.015 782,308.93872,240.76627,36.431488,84.42749,5.99 782,265.37234,207.25778,22.708344,48.29785,5.969 782,266.37347,223.45729,20.425964,52.391556,5.904 782,-11.199514,-32.405117,30.031988,74.98393,5.892 782,612.8338,456.27112,38.585022,105.15375,5.697 782,249.09183,218.67201,20.692688,56.36815,5.665 782,337.7,213.10228,19.065979,40.0811,5.644 782,584.4884,413.1808,69.9892,175.75708,5.579 782,459.08887,-16.155626,17.097656,37.648083,5.521 782,490.7603,180.61258,17.524658,31.7583,5.509 782,412.12396,204.30772,27.130798,70.95894,5.492 782,409.66385,214.37875,21.394562,48.53418,5.492 782,2.6944554,214.84479,31.427862,60.486572,5.481 782,269.0162,286.29648,31.73059,60.68216,5.479 782,520.3635,220.7778,26.506775,61.255035,5.453 782,-4.619423,237.25073,18.524712,48.31891,5.43 783,310.21548,218.31407,27.017761,66.89128,12.425 783,350.15363,229.51897,29.550476,75.590195,12.173 783,312.37592,214.09781,22.068634,40.836823,11.893 783,294.9212,213.42918,28.4458,69.12779,10.951 783,408.9414,195.49782,21.598572,49.93141,10.868 783,268.84982,206.43573,30.234497,72.01373,10.431 783,44.5764,254.64053,31.406876,62.087097,10.248 783,325.237,219.28644,27.84433,69.0275,10.148 783,280.9059,283.83978,23.346893,37.52301,9.776 783,400.10638,191.20787,23.61325,52.86731,9.696 783,418.9204,197.62901,19.788849,45.280106,9.255 783,273.0356,279.5775,23.055054,41.40442,9.146 783,212.15985,222.70027,30.494934,82.56142,8.563 783,283.8343,277.93185,32.76764,54.758636,8.559 783,335.15305,221.86458,27.831757,71.7054,8.174 783,259.26855,269.8246,32.719543,61.076538,7.905 783,523.994,220.02744,26.897156,59.82007,7.814 783,0.93922734,224.69383,24.592379,69.89418,7.743 783,228.2625,222.13712,29.55812,77.81665,6.933 783,8.204967,231.10057,20.652836,47.808365,6.93 783,55.89417,263.89484,25.22073,46.504333,6.898 783,288.76797,214.44537,23.041748,55.196472,6.816 783,-11.37986,477.40686,29.49105,64.12976,6.779 783,320.35812,218.24223,22.026062,46.600204,6.745 783,426.741,200.98903,18.335571,43.510117,6.714 783,253.90425,206.26083,28.773941,71.40823,6.693 783,171.97195,209.29317,15.742493,29.068085,6.664 783,295.573,286.20465,23.553955,35.06903,6.633 783,442.6136,198.28784,18.193024,38.62787,6.556 783,613.011,451.06882,39.406555,112.3483,6.433 783,281.4897,219.88701,22.052002,54.038742,6.414 783,-5.895741,488.92566,18.375677,42.70996,6.36 783,305.79446,229.4053,21.018127,49.939575,6.231 783,390.25558,181.76726,26.974884,64.0764,6.224 783,595.87244,186.91907,17.504028,43.994797,6.194 783,-5.8362174,-17.315277,18.06811,43.382214,6.193 783,265.3174,206.64557,23.017853,48.582886,6.055 783,173.83719,207.48112,11.198425,17.028915,6.054 783,27.452408,233.80952,32.95775,68.71672,6.051 783,164.5395,208.4025,15.906357,29.953598,6.03 783,-11.309837,-31.966167,30.294992,73.69176,5.96 783,178.50403,213.14432,18.791412,33.32744,5.843 783,359.10938,234.28613,23.349792,45.27301,5.821 783,626.9701,-19.117916,17.396362,48.724483,5.796 783,353.85287,226.7125,20.592896,36.710724,5.787 783,294.16888,260.11884,34.318024,77.884796,5.784 783,626.7442,487.52,20.265137,46.005096,5.764 783,459.23645,-16.103924,17.1109,37.11124,5.73 783,438.74768,195.1142,25.927032,60.41893,5.68 783,-5.3925037,167.82155,18.72657,44.278168,5.639 783,-9.376147,230.06767,27.09251,74.87953,5.624 784,312.2201,212.6564,21.066284,41.843292,15.784 784,408.63507,194.20053,22.669678,52.747757,15.198 784,417.27902,196.82463,21.076202,49.289185,11.111 784,310.09476,215.81047,26.862396,68.96245,10.776 784,349.91943,230.24005,28.76947,74.36633,10.084 784,281.0952,283.6209,23.223999,38.10388,9.801 784,45.11441,254.7384,30.449219,62.01483,9.593 784,295.29288,210.76337,28.120667,71.90979,9.588 784,268.85318,207.31947,29.97293,70.12633,9.563 784,213.15047,223.69743,29.511566,82.93822,9.306 784,283.82434,277.38345,32.603363,56.01715,8.725 784,273.35837,279.6275,22.651123,42.37503,8.715 784,398.59027,187.92995,26.397156,61.201157,8.639 784,0.86823463,224.49008,24.797935,69.80078,8.403 784,336.4568,221.82146,26.13382,71.74623,8.356 784,325.8836,218.99167,27.434418,70.26697,8.086 784,320.1587,221.27382,21.908905,56.449997,8.036 784,424.6167,200.23424,20.460022,48.76526,7.835 784,346.11304,231.57732,21.901031,54.019577,7.328 784,259.34677,269.73492,32.496185,61.462402,7.285 784,58.796204,263.34116,31.922676,55.946106,7.243 784,228.52423,224.6121,28.666595,80.64668,7.084 784,265.25403,205.57803,22.445374,47.374207,7.004 784,289.16776,291.57663,21.85147,37.206757,6.966 784,8.300766,230.17352,21.031342,49.386993,6.799 784,295.43652,286.24945,23.696533,35.19806,6.749 784,356.24512,245.91916,34.475525,78.930115,6.569 784,-5.795059,489.00797,18.24712,41.74008,6.464 784,294.71414,258.9258,33.653473,77.73007,6.451 784,-11.44372,477.50043,29.40248,63.986633,6.448 784,-5.766008,-17.212227,17.99644,43.31928,6.368 784,270.32025,187.87779,12.473053,26.087784,6.28 784,484.83923,229.88977,29.81482,65.75928,6.219 784,179.03276,213.7433,18.097427,33.14305,6.188 784,626.626,488.0037,20.339111,45.954254,6.186 784,170.51237,212.80606,17.150604,33.3248,6.169 784,253.6127,206.47144,28.736542,70.58646,6.091 784,-11.283287,-32.093147,30.078457,74.12258,6.064 784,269.47992,284.9414,31.187775,62.569702,6.054 784,279.73706,209.35493,23.788483,51.545944,6.04 784,523.39557,239.84354,29.615417,58.460114,5.922 784,353.7312,224.6945,20.058136,39.463272,5.913 784,627.017,-18.639252,17.447632,47.550476,5.729 784,403.97278,205.20512,29.765442,68.263016,5.724 784,285.06924,186.95021,13.728973,27.295029,5.674 784,27.23299,233.58528,33.195744,68.8275,5.663 784,-9.394875,230.07446,27.384836,74.75079,5.661 784,16.130997,230.17995,21.43277,47.68718,5.607 784,326.24475,238.52594,34.79431,80.58307,5.586 784,612.75024,456.94873,38.895874,104.412476,5.582 785,313.0938,218.03433,22.388062,51.95761,15.759 785,302.84543,215.17325,28.34491,68.73227,14.3 785,268.92883,206.49576,30.224854,72.3248,11.438 785,320.23724,219.96376,22.189331,58.700882,11.108 785,326.19885,220.07904,28.04712,69.27667,10.874 785,418.0748,198.16862,19.719543,49.454483,10.467 785,280.98462,283.97992,23.356384,37.22821,9.13 785,343.1589,225.38408,26.59729,71.379776,9.114 785,408.06323,201.10939,28.935913,70.43565,8.848 785,213.17345,225.05215,29.309341,79.96802,8.765 785,52.933594,259.7223,30.668106,56.76358,8.602 785,380.9338,237.03978,29.386322,61.914078,8.57 785,0.6752062,223.21396,25.000263,70.246765,8.419 785,310.9215,223.26123,33.82962,86.08099,8.336 785,285.2794,210.4707,30.116577,71.984924,8.262 785,283.653,277.23242,32.972015,55.707214,8.237 785,37.22632,246.14656,31.184372,67.93004,8.158 785,338.64587,220.98608,21.398834,52.93634,8.084 785,273.28363,280.37378,22.65393,40.875336,7.958 785,228.6836,222.75925,29.127441,76.604614,7.703 785,410.5099,193.51978,21.33667,50.162354,7.486 785,7.749498,228.56656,21.77069,43.174652,7.336 785,253.77505,208.8635,28.37091,75.21036,7.125 785,259.52167,269.6469,32.237854,61.296844,7.052 785,397.32904,189.45023,27.041199,62.666595,7.002 785,419.36676,213.74591,28.501892,68.03711,6.974 785,279.53958,208.57207,23.72171,53.45369,6.859 785,345.64093,221.57195,20.081787,42.725937,6.82 785,626.91614,487.98474,20.009216,45.787354,6.696 785,-11.255524,476.9598,29.348738,64.33035,6.613 785,326.2434,236.08884,35.639404,83.13104,6.612 785,357.43677,250.60265,32.051697,75.9955,6.599 785,-5.695917,-17.101574,17.833693,43.27134,6.514 785,178.68776,213.41245,18.472397,34.214615,6.318 785,351.1927,234.55713,21.400116,44.230896,6.227 785,288.76782,279.1679,23.29895,35.46875,6.19 785,350.52582,235.87173,29.350647,78.17761,6.123 785,-11.317328,-32.1706,30.085957,73.98236,6.081 785,265.63388,206.47081,22.803925,48.990234,6.064 785,270.38705,187.17949,12.226318,26.06311,6.06 785,296.58612,291.68008,22.070557,37.354218,6.033 785,-2.5410247,198.98366,28.622526,70.49831,5.991 785,13.213672,228.14453,28.783169,65.78589,5.966 785,172.2071,209.6782,15.377335,28.916733,5.958 785,294.29266,242.7738,35.30423,84.68964,5.952 785,-5.72171,488.7694,18.26347,42.942627,5.951 785,266.1638,223.14954,21.108582,53.155243,5.89 785,27.188198,232.26114,33.16112,69.585266,5.876 785,308.05182,213.99307,21.814667,39.799805,5.746 785,612.76666,456.8219,38.743713,104.63745,5.738 785,269.39127,285.7019,31.437775,60.964172,5.716 786,336.45465,220.9912,26.350952,71.64845,11.109 786,269.34317,206.52277,29.874176,72.20056,10.2 786,294.5796,210.55356,28.083344,72.91623,10.123 786,44.95385,253.55383,30.331589,62.7406,9.841 786,313.39618,219.89856,22.110962,56.875427,9.74 786,417.347,194.83578,19.947693,43.27356,9.355 786,213.27237,224.0968,29.592072,81.5694,9.168 786,1.1887443,222.71725,24.19243,71.54422,8.699 786,287.7765,286.4371,24.466187,34.58139,8.27 786,230.62233,221.31775,26.458115,72.31903,8.078 786,273.41037,280.2357,22.54953,40.958862,7.879 786,259.40338,270.2644,32.251984,61.118896,7.513 786,329.7467,218.96883,22.003326,55.525497,7.377 786,350.5045,232.5212,28.718536,73.85631,7.287 786,34.433205,238.66113,34.379883,64.91901,7.264 786,306.48737,215.57442,22.000305,53.610092,7.259 786,281.31512,218.91911,21.909393,55.494675,7.205 786,310.30493,222.47734,35.307556,87.40028,7.199 786,443.4761,196.88866,18.23291,37.495377,7.141 786,525.4878,229.40674,27.086304,63.802246,7.108 786,56.316624,263.01413,24.263226,46.689484,7.063 786,276.1306,274.51132,33.16693,57.12085,7.051 786,390.17697,177.90112,25.912811,66.49252,7.031 786,523.03375,220.92365,20.984314,44.800903,7.029 786,7.6751018,227.344,21.95163,46.167145,7.024 786,344.99573,232.97968,21.795715,52.551697,6.955 786,265.0494,209.9251,23.318146,56.699356,6.841 786,288.43048,212.58403,23.009521,56.914047,6.825 786,253.8222,210.91556,28.500946,73.13129,6.731 786,626.8989,487.8274,19.855713,45.98242,6.563 786,-8.680429,465.19586,37.209633,91.56714,6.372 786,400.7348,190.57901,21.983032,49.67383,6.286 786,291.20456,277.2158,32.808197,56.897186,6.263 786,296.6283,291.32205,22.19217,37.530243,6.148 786,325.78702,238.04486,36.644135,83.15521,6.147 786,170.75102,213.49423,17.092163,32.46591,6.126 786,159.62091,205.28145,10.249466,18.619293,6.076 786,-5.8000364,-17.237087,18.034828,43.274666,6.069 786,612.74365,456.10648,39.05847,105.424225,6.025 786,-5.9222326,489.21194,18.36776,42.439423,6.017 786,320.77686,226.7973,21.887573,55.455627,5.971 786,179.35742,213.73755,17.676956,32.040756,5.939 786,-11.15368,-32.100002,30.028885,73.96069,5.888 786,539.89014,236.06381,30.091919,57.287964,5.885 786,-2.4591088,199.36302,28.858622,71.35329,5.863 786,270.37317,196.7081,12.221222,24.47496,5.797 786,303.03827,283.07468,24.078125,37.2843,5.789 786,451.40143,198.59576,17.85382,39.601425,5.773 786,13.124868,226.12825,28.693949,67.52425,5.764 786,619.9254,177.97566,16.827148,58.55504,5.75 786,500.26544,215.88303,16.458252,36.01677,5.719 786,269.47574,285.42697,30.911652,61.97052,5.719 787,313.69913,221.00919,20.881683,55.906555,13.128 787,327.1106,222.83714,26.45697,66.568924,11.087 787,269.46228,207.07056,29.58075,72.62628,10.657 787,303.2511,216.6869,27.192596,71.89531,10.338 787,336.5006,224.74966,26.201538,69.17618,9.493 787,288.3913,286.7352,23.27768,33.77249,9.463 787,45.03974,254.73514,30.62156,62.30017,9.385 787,1.1105967,224.26067,24.418156,70.55101,8.684 787,285.39764,211.65031,29.282654,72.086075,8.645 787,298.13446,219.47833,21.829102,57.435516,8.424 787,284.15503,278.06537,31.983826,54.94525,8.096 787,321.49573,220.69322,20.588135,54.452133,8.06 787,273.2882,280.7508,22.335938,40.251434,7.893 787,212.8627,223.62163,30.278107,81.44484,7.657 787,356.30975,249.28798,34.068726,75.84447,7.611 787,281.15863,219.11848,22.062347,56.390366,7.58 787,56.36277,263.86322,24.523293,47.27765,7.242 787,398.42465,185.01405,26.732025,63.570343,7.179 787,349.0456,236.25037,30.435913,71.69989,7.109 787,228.80478,222.1608,29.140991,77.749756,6.996 787,259.48306,269.38477,32.21872,62.192474,6.954 787,626.791,488.32953,20.167297,45.555115,6.929 787,8.75555,231.0723,20.15423,49.136505,6.725 787,281.72064,289.58542,22.296753,38.554474,6.516 787,-11.457436,477.84537,29.515762,63.713898,6.512 787,303.5541,283.01944,23.467682,37.493927,6.507 787,311.13275,225.09787,34.212433,86.50995,6.414 787,294.8985,259.54102,33.715332,77.039246,6.414 787,417.68402,199.66405,20.460266,44.68875,6.353 787,309.1709,214.13594,19.760406,40.40622,6.286 787,451.71262,205.54391,17.00705,40.100174,6.273 787,345.71112,236.9927,21.007477,49.219666,6.238 787,254.14024,210.13423,28.149033,74.40636,6.232 787,338.33008,224.46875,17.974365,39.602325,6.21 787,297.1828,292.1096,21.27356,36.643066,6.201 787,264.93427,210.2514,23.390442,56.878296,6.164 787,407.03143,193.96634,28.418152,60.347946,6.1 787,438.79205,224.86761,31.748718,73.9845,6.082 787,172.36336,209.62817,14.934921,28.530441,6.021 787,530.2632,235.26266,20.764282,38.959564,6.005 787,179.12971,213.68204,18.093155,33.114456,5.994 787,-9.2809515,229.94083,26.985771,74.727905,5.994 787,325.5353,239.26044,35.899384,82.21155,5.987 787,-5.956564,489.78726,18.42056,41.550507,5.934 787,269.34503,286.6284,31.349426,60.829865,5.873 787,-5.8342905,-17.018606,18.01054,43.323204,5.871 787,16.229364,235.8725,22.042143,49.082153,5.853 787,-11.347124,-32.178413,30.177368,74.070854,5.835 787,626.9136,-18.434137,17.410461,47.53009,5.751 787,24.615612,236.70795,22.16146,47.1438,5.683 787,164.57175,208.85153,15.111633,29.478943,5.665 787,595.24225,186.91267,17.346497,42.1559,5.639 787,612.79834,457.20148,38.63318,104.10419,5.597 787,270.2992,196.12334,12.492798,25.623795,5.561 787,584.56915,413.32794,69.87268,175.28284,5.559 787,-5.733594,167.91711,18.972782,43.742035,5.513 787,26.84329,235.23154,32.660385,66.96176,5.456 787,458.95392,195.97592,17.271393,36.329712,5.436 788,409.38232,197.53818,20.180725,49.050446,12.795 788,399.52838,194.8429,26.393372,67.38379,11.97 788,326.94583,220.11153,26.004486,68.05226,10.952 788,269.0123,207.10742,30.150269,72.45203,10.571 788,417.73724,196.85027,17.297607,43.743576,10.424 788,313.40848,221.44675,21.45224,54.936493,10.413 788,0.84306955,221.01424,24.427015,72.45851,10.398 788,44.62078,254.95853,31.182983,61.278137,9.981 788,294.84177,213.60077,27.825317,70.78119,9.92 788,213.58047,225.4363,29.02353,80.08687,9.222 788,321.3847,221.77292,21.59082,56.394196,8.602 788,287.65192,285.9159,24.205658,34.994904,8.541 788,403.08548,209.12332,30.525787,70.14484,8.237 788,8.265742,229.16582,20.7258,51.21205,8.183 788,276.73987,274.2741,32.677673,57.982025,7.985 788,273.47632,280.3471,22.753815,40.77545,7.969 788,337.82953,227.74026,20.794434,50.923157,7.65 788,350.65732,245.75949,30.255493,72.27161,7.502 788,392.22736,185.54906,26.661163,64.54497,7.432 788,257.78735,216.96687,21.537323,57.87831,7.352 788,228.65263,221.87848,29.581955,78.635254,7.188 788,56.01882,264.52786,24.9011,46.20218,6.856 788,344.33945,236.1254,26.216614,73.22089,6.852 788,259.54642,269.52963,32.398438,61.10962,6.826 788,288.82913,214.9466,22.434967,55.392456,6.715 788,-8.99423,227.96748,27.34123,76.43181,6.679 788,290.9852,276.2698,32.56186,58.124115,6.669 788,556.5615,179.85179,17.105957,31.50322,6.606 788,265.48376,207.11873,22.730103,48.634613,6.583 788,281.06287,220.06639,22.13144,54.773056,6.535 788,16.659328,230.20264,20.644123,48.329254,6.45 788,24.764507,231.89368,21.478481,46.022614,6.443 788,451.75748,203.65314,15.462097,30.7901,6.33 788,310.91016,225.06424,34.037476,86.19028,6.237 788,520.1487,218.55606,28.187317,63.312805,6.213 788,-5.7127023,-17.389406,17.949308,43.590954,6.208 788,459.77954,204.6842,15.887299,30.808289,6.167 788,-8.688953,465.54324,37.170822,91.09085,6.151 788,305.87445,229.3847,20.923676,50.934875,6.143 788,270.03854,187.11078,12.8396,27.60495,6.109 788,620.0402,243.84326,16.208618,37.963806,6.108 788,626.5933,487.0161,20.573486,46.42047,6.091 788,26.793468,233.27295,33.543026,69.03088,6.01 788,178.88544,213.14117,18.167923,33.8219,6.007 788,626.9767,-18.643215,17.456299,47.677578,5.826 788,-11.254698,-32.097885,30.186623,73.78948,5.826 788,562.0291,175.5169,17.021729,32.1203,5.812 788,170.6654,212.67177,17.364899,34.065353,5.8 788,282.02286,277.2183,22.743317,36.89096,5.786 788,265.9807,223.94066,21.454498,53.222397,5.736 788,-5.910741,489.3231,18.323753,42.10495,5.715 789,409.62134,192.61359,20.519806,46.49179,10.82 789,326.3452,221.20181,26.701904,68.47104,10.522 789,269.04355,204.70314,30.987305,72.7711,10.212 789,44.91288,255.57635,31.059952,61.643738,9.889 789,302.80426,213.01668,27.048096,71.217026,9.859 789,313.41397,219.7346,21.721588,56.654922,9.759 789,288.04886,285.97668,23.508118,34.96222,9.35 789,1.001699,223.92221,24.765234,70.99463,8.354 789,273.2629,280.26038,22.821838,41.30133,8.309 789,259.12518,270.16614,32.814484,60.973877,8.144 789,228.35695,223.78923,30.132187,76.33128,8.023 789,213.19368,226.09033,29.636276,79.94287,7.617 789,283.73257,203.18912,31.931274,75.24109,7.523 789,400.44476,186.52542,21.957916,50.446014,7.455 789,276.3924,273.9617,32.99826,57.676666,7.43 789,321.59317,218.39357,22.092072,56.050674,7.348 789,505.71924,249.73209,21.364197,39.100616,7.144 789,58.07953,263.6594,33.180145,57.018524,7.118 789,521.86914,253.66248,20.37201,33.238342,6.984 789,253.72617,204.86865,28.960602,72.20337,6.965 789,451.7865,227.84528,29.20932,59.605286,6.895 789,586.2325,252.62329,18.86023,36.799927,6.759 789,172.02559,209.32803,15.653931,29.148865,6.723 789,281.45248,219.07909,21.716217,55.61995,6.688 789,-11.574675,477.93445,29.91051,63.52832,6.676 789,350.0716,234.77673,28.518646,72.08887,6.638 789,298.1548,219.2215,21.71289,56.87851,6.63 789,390.25812,178.67859,26.846802,66.15112,6.595 789,626.74365,488.07257,20.064697,45.87915,6.595 789,264.9029,204.35716,24.098907,50.490753,6.583 789,164.38606,209.00941,15.659531,29.26329,6.559 789,27.183987,233.71368,33.004833,69.10596,6.517 789,7.925149,229.03656,21.512878,44.853027,6.447 789,417.22824,197.75606,18.552368,43.957596,6.44 789,282.12375,277.42343,22.48056,36.772278,6.436 789,-5.7807713,-17.031723,17.90098,43.528023,6.343 789,-6.0423856,489.32065,18.645164,41.772736,6.26 789,336.36478,226.391,26.34552,70.75606,6.209 789,294.30487,258.87848,34.128845,77.36731,6.097 789,13.345705,227.24023,28.242292,67.597595,5.985 789,269.7865,187.71748,12.750183,26.440475,5.965 789,296.66803,292.03842,21.767334,37.102142,5.957 789,486.63638,234.79326,27.622894,61.873184,5.935 789,-9.255573,230.21591,27.167017,75.00534,5.931 789,-11.331213,-32.231342,30.142527,74.642426,5.878 789,356.92163,249.55882,32.187866,74.7946,5.856 789,626.97626,-18.613749,17.365906,47.443394,5.709 789,612.84174,457.09592,38.841003,104.10062,5.676 789,492.36957,3.1459532,16.480286,31.166695,5.624 789,529.4241,252.66429,20.6167,34.545456,5.584 789,269.34854,285.12173,31.22638,61.220642,5.556 789,279.5233,201.85403,25.398834,53.237625,5.551 789,329.90002,217.77643,20.322327,37.3145,5.549 790,326.7438,220.78754,26.46634,67.60654,12.148 790,313.50482,220.97118,21.753174,55.491257,11.38 790,419.51245,218.89954,29.732727,60.112335,11.038 790,269.75632,206.21704,29.257385,72.27112,10.989 790,336.15454,224.18546,26.139465,68.91437,10.121 790,288.33215,286.38318,23.384186,33.473145,10.018 790,302.68588,216.23013,27.011383,67.84787,9.731 790,44.95674,255.80942,30.842606,60.580353,9.67 790,1.0012591,221.46043,24.268417,72.35149,9.008 790,229.83563,222.9498,27.482605,73.48468,8.567 790,285.40482,209.72691,29.483246,73.18843,8.45 790,321.39554,218.40388,22.220337,57.426315,8.128 790,284.39423,277.1374,32.189484,55.02411,8.069 790,213.02911,223.91702,29.80133,80.37714,7.999 790,273.77988,280.8985,22.026123,40.06024,7.971 790,8.060362,229.393,21.200333,51.083435,7.532 790,281.15497,219.4076,22.169128,54.89099,7.384 790,406.07037,216.5914,30.461975,57.26822,7.23 790,265.18054,210.32314,22.977905,55.016464,7.161 790,441.99078,225.16093,19.392029,40.27867,7.112 790,505.53314,227.67093,19.320984,41.40442,7.09 790,410.20453,199.26773,19.686035,43.718994,7.08 790,253.91116,211.50395,27.695587,71.14693,7.043 790,-5.798546,-16.886698,17.961184,43.266468,6.9 790,-11.454838,477.38174,29.499044,64.176544,6.844 790,626.87714,487.91113,19.90863,45.966675,6.781 790,179.24661,213.2931,17.9245,33.60292,6.758 790,172.6348,209.3098,14.630676,28.540527,6.712 790,277.10593,285.8307,31.152954,58.86429,6.527 790,-11.176756,-31.78738,30.017363,74.40239,6.473 790,349.29355,234.75635,29.608887,71.825195,6.437 790,58.585777,263.69757,32.1476,57.657654,6.435 790,296.78732,291.74762,21.58728,36.72934,6.389 790,259.23166,269.94482,32.244812,61.69693,6.347 790,476.65268,238.23921,15.555725,29.054062,6.337 790,164.86243,208.88298,14.719299,28.991074,6.313 790,-6.024873,489.20892,18.55415,42.15686,6.302 790,389.5218,178.4351,26.36612,65.13689,6.202 790,294.38644,257.26392,34.10147,78.39285,6.192 790,282.6015,277.6025,22.111603,35.791565,6.191 790,451.59686,228.49191,16.88565,36.131073,6.181 790,310.8376,224.10251,34.21753,85.900635,6.175 790,400.93683,196.51802,21.941132,46.59987,6.16 790,27.175625,233.16307,32.766773,68.43233,6.005 790,337.44266,223.02966,19.677582,41.712585,5.908 790,-9.010723,227.60725,27.173681,76.53575,5.84 790,431.95157,226.50435,23.095734,46.08,5.835 790,612.9354,457.05502,38.492737,104.22861,5.805 790,16.37778,230.05997,20.754925,48.394623,5.77 790,298.05893,230.20877,20.54184,49.60913,5.764 790,345.02148,229.26396,20.441132,44.58586,5.763 790,520.1423,222.1077,25.815857,56.27481,5.745 790,356.85217,248.04124,33.37018,77.81792,5.745 790,460.60022,229.73872,15.127655,34.157547,5.725 790,173.15671,214.98026,30.435043,60.134796,5.7 790,303.04837,282.6813,23.686584,37.18564,5.681 791,318.5973,218.38396,26.712952,68.62331,12.248 791,329.78793,218.75743,21.341461,55.5403,10.845 791,302.63037,216.08261,27.290009,67.91409,10.646 791,336.60413,222.81178,26.39038,71.02464,10.503 791,268.67575,204.54228,31.064697,72.75539,10.432 791,313.3624,219.67264,21.870575,51.90686,9.688 791,0.9270525,222.18488,24.33284,70.59387,9.286 791,45.014336,255.0942,30.34578,61.702377,9.244 791,341.80402,219.17676,35.77838,89.55463,8.956 791,285.2297,209.62654,29.876678,72.50206,8.588 791,213.96178,225.2408,29.287643,80.26463,8.435 791,280.95715,284.36823,23.24469,36.65207,8.257 791,283.74463,277.45105,32.59372,55.426117,8.177 791,621.94965,476.1982,28.434814,67.76645,8.011 791,279.81488,207.30165,24.234863,55.39177,7.93 791,337.40558,221.97002,19.857971,42.392715,7.853 791,228.5713,225.21176,28.480087,79.07367,7.791 791,172.13028,208.53085,14.952988,29.461258,7.752 791,395.43002,218.29323,32.113464,63.169754,7.729 791,164.55507,208.75584,15.196487,30.497787,7.624 791,402.26727,201.86565,18.769562,39.422333,7.367 791,265.3421,204.29929,23.89624,51.32422,7.224 791,273.139,280.23853,22.942108,40.79132,7.207 791,7.523776,227.49506,21.533699,46.06433,7.205 791,344.3768,227.29727,21.027893,45.960358,7.178 791,58.51984,263.39874,32.728672,58.175385,7.154 791,259.18216,270.1203,32.229187,60.8273,7.003 791,180.44492,209.02849,15.250244,29.453644,6.893 791,27.772232,233.02036,31.410793,62.75232,6.749 791,253.22678,205.2067,30.316132,72.84897,6.622 791,410.27905,202.85141,18.582336,39.12108,6.377 791,520.368,220.12148,26.520508,58.397232,6.372 791,-9.205783,228.85588,27.153847,74.86507,6.361 791,-11.230495,477.44177,29.135212,64.14142,6.336 791,618.2098,485.03787,21.162964,47.043793,6.303 791,-5.7327414,-17.175632,17.828938,43.54647,6.275 791,295.86606,286.02362,22.970062,34.686737,6.211 791,363.57263,237.91075,31.247925,70.94295,6.179 791,-5.7892857,489.4516,18.170582,42.14862,6.06 791,309.17996,238.68105,36.475708,84.01912,6.026 791,174.07901,207.4642,10.785477,16.98523,6.006 791,626.94696,-18.342552,17.126831,47.742794,5.974 791,294.11264,257.55,34.447052,77.20941,5.914 791,-11.237505,-32.118855,30.051493,73.9366,5.899 791,594.9028,189.3606,18.754822,46.08255,5.878 791,289.31296,279.8579,22.253265,34.187256,5.855 791,395.19077,197.54814,18.064606,38.238556,5.837 791,269.92026,187.10301,12.980682,26.63507,5.775 791,141.06682,209.11444,14.22905,29.844986,5.748 791,308.29724,213.21957,20.616272,40.639267,5.728 791,173.25975,214.44916,30.417343,62.07498,5.714 791,373.69205,219.50345,28.358276,57.96414,5.705 791,178.26265,218.61421,20.272873,35.545197,5.689 792,336.6069,223.16902,26.016998,69.35454,12.405 792,310.0655,216.86473,26.982117,69.682144,11.608 792,326.87057,220.67601,26.608551,67.539474,11.606 792,349.96906,231.48842,29.027252,77.62187,10.22 792,269.35318,205.82626,29.78122,71.57428,9.843 792,295.08905,210.96559,27.801514,72.27232,9.746 792,320.97455,219.69566,22.208435,58.932327,8.981 792,45.03084,254.72552,30.202404,62.593384,8.965 792,410.35242,194.12598,20.16687,43.59941,8.809 792,1.0672772,224.68257,24.355967,70.528915,8.455 792,288.04486,286.22455,23.940277,34.62149,8.386 792,213.15509,226.21991,29.713394,79.5202,7.941 792,259.01996,269.5386,32.697906,61.756836,7.9 792,279.9449,208.65842,23.725128,53.458527,7.796 792,8.465588,230.70891,20.399351,49.613968,7.635 792,229.96672,223.94072,27.463608,73.44075,7.464 792,626.9374,488.16022,19.90918,45.60559,7.261 792,56.69159,264.15924,23.87352,47.02057,7.114 792,276.2431,274.038,33.70349,57.73236,7.056 792,272.9594,280.45923,22.921204,41.158417,7.043 792,265.94946,207.49258,21.794128,47.4908,7.04 792,307.52814,214.12392,21.849121,46.608353,7.006 792,344.31317,226.35605,21.22992,47.412018,6.884 792,306.02823,229.50346,20.704987,50.6541,6.868 792,270.72223,204.29628,11.997131,22.410538,6.688 792,288.56967,213.67368,22.667908,55.574554,6.587 792,27.302422,232.505,32.487663,69.206665,6.497 792,-5.7041435,-17.275848,17.924917,43.66912,6.437 792,163.94104,209.00447,15.643341,31.409744,6.423 792,-11.296007,477.44437,29.7563,64.48575,6.392 792,401.45505,193.91138,20.989105,44.77849,6.357 792,294.41913,258.8539,34.154144,77.09204,6.345 792,254.29297,210.0079,28.046417,72.5647,6.335 792,-11.236736,-31.85776,30.032923,73.7031,6.154 792,357.24298,246.95312,32.167847,78.27374,6.08 792,417.3512,198.46402,18.778381,42.822403,6.051 792,141.09357,209.44926,14.780563,31.089935,6.021 792,485.13882,234.71637,29.78946,74.86554,6.02 792,-5.932988,489.05386,18.608482,42.72812,6.018 792,16.599724,230.52588,20.415054,48.616302,6.002 792,326.495,233.9614,35.972595,86.47824,6.002 792,269.78748,186.71101,13.665314,28.373138,5.993 792,-9.312265,230.57773,27.149286,74.93521,5.954 792,303.13138,282.59448,24.052582,37.79959,5.929 792,309.09122,238.9056,36.446747,85.89989,5.836 792,385.84854,222.87633,32.782562,64.714554,5.83 792,612.71246,456.94095,38.93683,104.78586,5.801 792,266.27258,224.06683,20.721497,51.304108,5.793 792,296.60373,291.5926,22.197296,37.23236,5.727 792,171.77443,208.98033,15.33284,30.371597,5.718 792,268.81494,286.0118,31.77124,61.151367,5.705 792,443.7846,198.96165,17.646484,35.063126,5.628 792,159.72293,204.14294,11.45665,20.52919,5.621 793,327.31622,219.9879,26.587341,69.323044,11.222 793,313.3921,219.89395,21.847351,56.817413,10.506 793,269.42175,206.94751,29.829803,70.44037,10.171 793,281.05133,284.7216,23.609467,36.427094,9.292 793,302.811,214.50073,27.050598,68.19672,9.282 793,44.684647,254.79707,31.0009,61.20787,8.986 793,349.79736,227.94815,30.410583,79.80328,8.49 793,410.125,192.3863,20.526886,45.517914,8.468 793,283.38956,277.66406,33.40442,54.914,8.377 793,401.2238,193.9922,21.44217,46.026993,8.302 793,285.58188,209.40851,29.252228,72.95502,8.202 793,1.4385068,225.15434,24.201138,68.722946,8.171 793,273.07425,280.44186,23.12912,41.36496,8.083 793,259.24646,269.50052,32.548096,62.258606,8.045 793,336.5172,222.57343,26.811584,75.086426,8.014 793,213.22852,225.89934,29.43254,79.87233,7.768 793,228.61269,222.76382,29.341385,76.92847,7.706 793,443.56848,200.93556,17.784424,33.64589,7.629 793,393.77408,200.32841,21.366882,40.785538,7.511 793,265.1326,210.67607,23.088684,54.464798,7.393 793,253.76009,211.66641,28.202072,70.30252,7.196 793,337.2848,221.73021,20.421967,43.597855,7.189 793,279.99155,208.92451,23.456848,53.418106,7.185 793,465.99347,218.71498,20.398407,48.24901,6.965 793,56.197433,264.00424,24.504456,46.568665,6.843 793,626.8605,488.04575,19.954407,46.029877,6.75 793,-11.297386,477.2395,29.292074,64.147705,6.608 793,459.58496,206.88712,17.503723,40.04883,6.532 793,164.37198,209.23393,15.1749115,30.823685,6.48 793,-5.752964,-17.089556,17.753944,43.489975,6.467 793,289.08505,279.97455,22.806152,34.72879,6.447 793,27.873138,230.64441,31.005219,64.25629,6.389 793,473.67853,222.9338,19.109528,44.17041,6.358 793,172.07889,209.24919,14.822586,30.496277,6.334 793,451.15167,201.9989,17.286896,35.284836,6.295 793,294.1118,256.82303,34.387177,78.72647,6.174 793,-5.8639975,489.0867,18.390526,42.6716,6.143 793,320.89352,226.20198,22.101227,56.006027,6.086 793,-11.179585,-31.908344,29.903801,74.03479,6.051 793,295.17218,286.68158,23.671753,34.481995,6.047 793,-8.634767,226.25691,26.093807,70.599075,6.038 793,499.37604,226.90775,17.415283,37.815063,5.991 793,506.70505,226.97813,18.114532,37.945786,5.976 793,412.94836,228.01813,31.290375,60.147522,5.96 793,457.94513,219.71439,20.785309,47.883453,5.927 793,451.83804,226.79868,30.214722,65.92981,5.925 793,389.72293,171.06454,26.877686,67.435425,5.913 793,268.9803,284.95084,31.710327,62.25293,5.904 793,417.42664,198.224,18.888123,43.704285,5.84 793,7.6680326,229.40349,21.273727,43.74391,5.789 793,613.02783,457.02182,38.36499,104.45059,5.776 793,309.32498,239.77315,36.131287,84.56767,5.722 793,269.8612,185.18959,13.960266,28.857803,5.665 793,627.07526,-18.267117,17.345886,46.822594,5.643 793,303.04135,282.22827,24.138031,37.896973,5.626 793,179.29605,213.88872,17.972229,33.423264,5.574 794,269.17273,206.63022,30.345642,72.164764,10.553 794,326.76068,221.07428,26.644745,68.00714,9.626 794,313.22766,221.71854,22.042084,55.334778,9.604 794,302.5852,216.10223,27.688995,68.592834,9.354 794,44.35644,254.7389,31.533077,62.44667,9.155 794,288.2505,285.26434,23.788544,35.15576,8.763 794,1.1722159,224.36159,24.001986,70.58348,8.738 794,336.0511,223.66045,26.36847,70.87007,8.728 794,285.53958,211.47571,29.660492,71.2608,8.479 794,402.27625,200.96616,20.389587,40.404373,8.477 794,350.02997,230.09995,29.284363,77.987305,8.338 794,297.87158,220.69028,22.120087,55.4469,8.171 794,213.07219,225.60724,29.645844,79.631836,8.022 794,273.22363,279.94022,22.563232,41.322113,7.928 794,276.4881,274.26437,32.883514,57.128082,7.711 794,459.2769,201.88924,16.640442,37.58896,7.595 794,259.4598,269.943,32.052185,60.686005,7.508 794,8.469865,230.32068,19.960972,49.165863,7.312 794,453.14163,208.3184,15.186188,35.01686,7.14 794,279.61276,209.37962,24.429962,53.35222,7.116 794,-11.545066,477.98877,29.695564,63.397705,7.049 794,172.62018,210.29811,14.405518,29.193146,6.941 794,294.67328,258.472,33.690857,77.93329,6.939 794,445.16797,208.2685,14.956116,33.601562,6.918 794,228.74179,223.02985,29.295624,76.72705,6.842 794,394.0375,204.3168,21.046844,38.589325,6.816 794,453.6188,217.45468,27.740082,63.088104,6.697 794,310.85925,224.53345,34.364594,86.06195,6.693 794,57.837105,263.39755,33.377098,56.642395,6.692 794,626.6956,487.6279,20.190674,46.362335,6.518 794,265.2315,206.6416,22.88501,49.461853,6.46 794,302.7318,281.51282,24.312256,38.319244,6.361 794,296.38727,290.74725,22.326324,37.71826,6.331 794,269.1729,284.00217,31.758667,61.958313,6.306 794,164.83096,210.37363,14.843491,29.996231,6.302 794,254.27803,210.84293,28.096207,72.153046,6.281 794,364.7666,231.52547,30.310852,72.66411,6.161 794,-5.718946,-17.081629,17.791971,43.412247,6.002 794,-5.9597244,489.22705,18.448112,42.276794,5.999 794,320.9342,227.52068,21.860016,55.08998,5.98 794,395.88718,223.34644,31.81308,57.182495,5.967 794,-11.23603,-32.170635,30.018497,74.06242,5.955 794,411.1842,207.82304,18.355652,39.654297,5.949 794,326.35483,236.7245,35.32361,84.9727,5.934 794,-9.051773,229.78963,26.612959,75.066055,5.914 794,466.80417,215.69528,17.138947,42.144653,5.883 794,468.8648,223.99075,29.3208,61.41797,5.806 794,16.178247,234.2637,21.934103,49.971558,5.793 794,612.86676,456.84003,38.667114,104.401245,5.788 794,627.01965,-18.139387,17.294556,46.780525,5.766 794,27.610107,232.36823,32.497925,69.721924,5.734 794,270.2531,185.7731,13.446655,27.928528,5.634 794,450.62653,219.29701,19.662231,46.354843,5.632 794,141.04185,210.26077,14.413208,29.999344,5.603 794,358.28174,245.49014,31.129272,79.75406,5.595 794,179.35867,215.13565,17.395569,32.059784,5.593 794,584.41095,413.0993,69.93097,175.768,5.543 794,428.11115,219.25204,29.665527,57.515656,5.527 794,465.20337,227.02443,21.093506,48.411118,5.525 794,266.1607,224.44693,21.018066,52.038666,5.5 795,302.96817,213.53326,27.403503,69.94867,10.663 795,269.24893,206.07144,29.774994,71.54254,10.486 795,45.060265,255.62323,30.51101,60.553223,9.341 795,213.86691,224.86119,28.66565,81.02248,8.885 795,0.8553481,223.64989,24.969778,70.67827,8.772 795,281.01404,284.43024,23.35495,36.554718,8.692 795,326.57788,221.79126,27.297058,68.8125,8.532 795,273.1466,280.53378,22.95523,40.748108,8.332 795,285.7191,209.64034,29.313812,72.69588,8.28 795,357.68427,236.39255,29.884155,77.27142,7.738 795,444.01422,200.78653,17.562286,34.3013,7.738 795,336.2869,225.74348,25.92099,69.540115,7.491 795,450.9707,201.88206,17.396301,35.74933,7.483 795,229.80457,224.1091,27.766876,73.97687,7.413 795,8.254462,230.34793,20.631641,48.612366,7.365 795,259.4715,269.87073,32.10443,62.098236,7.363 795,298.22797,218.88847,21.847534,57.14363,7.337 795,453.49316,215.75703,27.84497,62.178574,7.194 795,626.9488,488.16577,19.663269,45.495422,7.182 795,283.82318,277.19232,32.989014,55.36444,7.157 795,312.96716,217.75587,21.822296,51.6407,7.153 795,459.28625,206.28857,17.343933,38.730453,6.943 795,528.21484,226.84605,19.866455,43.874283,6.74 795,279.8264,207.72859,24.030457,55.805557,6.718 795,410.23804,200.9281,21.016357,41.98909,6.591 795,394.83658,204.27945,20.590607,38.313812,6.582 795,253.75366,210.50023,28.477234,72.942184,6.517 795,450.5162,210.4763,20.82309,48.67723,6.511 795,-5.715743,-17.293644,17.73442,43.712616,6.243 795,-5.728921,489.03152,18.101772,42.35196,6.197 795,-11.363813,476.77347,29.318727,64.94858,6.191 795,56.282967,264.33777,24.12967,45.690002,6.169 795,265.56256,206.21448,22.655365,48.328995,6.157 795,612.5876,457.13443,38.70575,103.94028,6.143 795,-9.257023,229.84996,26.932076,74.593185,6.127 795,307.56708,208.38216,22.26123,45.39789,6.108 795,372.91028,232.66498,30.60675,68.855774,6.08 795,401.4867,196.70193,21.94513,43.16684,6.02 795,310.58832,223.53545,34.576843,87.28877,5.95 795,66.87825,237.90749,17.953156,27.880661,5.925 795,-11.211004,-32.273865,29.75955,74.4415,5.895 795,294.88055,259.1552,33.425964,78.2334,5.854 795,295.60114,286.26843,23.56961,34.673462,5.854 795,420.29648,216.28905,29.018555,61.36116,5.851 795,269.08118,285.98035,31.586334,61.12375,5.818 795,26.896511,233.97528,33.34353,68.50256,5.793 795,464.5298,223.7645,22.83966,50.33429,5.752 795,468.52832,220.99976,31.821472,63.554474,5.725 795,16.61076,230.89705,20.427513,47.110153,5.724 795,627.10767,-18.461433,17.26001,47.096264,5.708 795,343.8252,230.57672,28.172241,75.72186,5.697 795,319.98428,222.10709,22.862244,57.094757,5.65 795,405.85513,204.60283,29.659546,59.51219,5.618 795,584.3023,413.31442,70.040405,175.55643,5.568 795,289.11206,279.66956,22.525513,34.588745,5.555 795,75.56197,245.1705,15.932655,26.169281,5.537 795,396.67444,222.43134,30.77658,58.31433,5.471 795,269.45065,184.93211,13.934174,28.977936,5.464 795,-1.9667101,198.62054,27.533192,71.64966,5.461 796,302.63226,212.97903,28.16333,72.08316,12.939 796,269.03467,206.4018,29.904694,73.69107,10.729 796,595.9265,190.63228,17.982483,46.80037,9.389 796,326.6766,222.28476,27.058075,68.20444,8.913 796,44.83156,255.32605,30.86354,60.354492,8.88 796,287.7498,286.42017,24.00177,34.600067,8.755 796,213.2942,224.9685,29.577438,79.900024,8.611 796,336.7511,225.01407,25.279785,70.46878,8.51 796,0.83858967,222.99634,24.723228,71.0199,8.418 796,350.6035,232.33353,28.486786,76.53052,8.254 796,285.80713,210.27155,29.349396,73.25882,8.248 796,273.17572,280.27762,22.649445,41.429565,8.133 796,312.4142,218.48647,22.287598,51.590958,8.093 796,259.58093,269.79266,32.173157,61.953644,8.034 796,362.6266,239.11938,31.607422,79.08679,7.86 796,276.30304,274.34332,33.085968,58.089233,7.794 796,265.44803,207.04778,22.237183,48.218674,7.714 796,228.28912,222.35492,29.989105,77.8291,7.511 796,459.8152,202.31409,16.131042,36.54573,6.923 796,253.81308,210.36972,27.946686,73.87393,6.804 796,-11.5882225,477.6385,29.686598,63.747925,6.789 796,297.86932,219.01018,22.452698,58.38344,6.749 796,453.43335,213.43953,28.016205,64.75697,6.72 796,626.8366,487.7851,19.98114,46.265686,6.595 796,-5.9347224,489.33466,18.428656,42.3042,6.595 796,310.96503,224.6389,34.01117,86.085434,6.487 796,580.2552,188.89754,17.952515,42.145157,6.486 796,402.42007,199.30142,20.007446,42.51654,6.413 796,8.473529,229.3844,20.802319,50.48651,6.374 796,319.96295,223.25226,22.782898,57.899445,6.329 796,452.12204,202.82472,15.6250305,33.37291,6.329 796,279.73688,209.22795,23.5737,53.336075,6.308 796,56.27018,264.4176,24.818428,46.34619,6.302 796,450.75183,211.44254,19.585632,46.38324,6.296 796,-5.719164,-16.856756,17.758942,43.242302,6.29 796,268.90582,285.66766,31.719635,61.480743,6.172 796,-11.112542,-31.845276,29.816654,74.03449,6.171 796,526.5718,230.31058,22.753174,44.04355,6.141 796,266.2305,223.80191,21.085114,53.100586,6.104 796,294.6634,258.43063,33.51773,78.73639,5.997 796,27.621082,231.7396,31.092407,63.29117,5.989 796,-9.394295,229.3164,27.36888,75.43048,5.947 796,613.0244,456.7901,38.464294,104.491516,5.927 796,410.66296,194.02376,20.098785,43.24591,5.915 796,372.34286,230.92786,31.00412,68.156555,5.778 796,141.00867,210.1646,14.373596,30.012375,5.775 796,302.97885,282.90637,24.037018,37.835022,5.735 796,308.56476,210.14763,19.196106,36.87062,5.718 796,296.7096,292.14523,21.757019,37.43402,5.714 796,172.8611,211.05345,13.2634735,28.125519,5.671 796,270.27728,196.27188,12.760681,24.679413,5.607 796,13.442253,227.99481,28.040512,67.09943,5.578 796,584.4752,412.7696,69.8916,175.95758,5.571 796,164.81189,211.0085,14.246796,29.181213,5.569 796,444.8961,202.10585,15.621613,31.665146,5.556 796,468.15433,219.61295,30.851166,61.59323,5.523 796,-5.5511227,167.99626,18.79773,43.439026,5.517 796,523.6393,221.86368,20.198547,41.312897,5.504 796,67.11845,237.01729,18.285233,28.104294,5.494 796,281.63104,294.39825,21.98706,43.039978,5.471 796,326.23065,236.20944,35.164795,85.53897,5.46 797,302.7859,214.4946,27.527466,69.3168,10.954 797,269.0884,206.24075,30.533203,71.838715,10.254 797,411.50497,201.85754,18.720734,42.051575,10.072 797,45.133705,254.73149,30.809822,61.30031,9.443 797,213.12654,225.26747,29.785172,79.89641,9.229 797,0.8349669,223.3267,24.51311,70.34535,8.675 797,326.54404,222.13983,27.339386,68.00964,8.668 797,288.06854,286.17154,23.832886,34.234833,8.297 797,412.89496,211.43077,28.063599,60.068222,8.265 797,285.63928,210.47139,29.27118,71.87126,7.823 797,228.22136,225.08388,29.506912,79.380325,7.796 797,283.65372,276.5444,33.185944,56.08304,7.493 797,273.3665,280.97537,22.341858,40.481415,7.437 797,356.03186,226.99484,31.500946,79.056335,7.333 797,336.1113,224.81879,26.967987,73.42627,7.303 797,313.4267,227.68782,21.034607,53.354507,7.248 797,264.8829,208.78664,22.994568,56.32878,7.18 797,444.74048,208.51294,15.188995,32.80516,7.099 797,626.8447,488.0739,19.958923,45.770752,7.049 797,404.15027,200.80713,18.625671,41.221436,6.976 797,253.95648,207.23792,28.295532,70.305145,6.866 797,281.19894,221.13826,21.972748,53.24449,6.612 797,259.15668,271.07846,32.381012,60.713867,6.606 797,56.168842,263.70663,24.52692,46.66971,6.604 797,7.510475,228.08073,21.850521,44.20909,6.482 797,312.274,214.18181,21.375275,39.19026,6.476 797,394.5479,196.58585,18.793396,40.9319,6.379 797,-5.6588483,-17.103569,17.700912,43.646873,6.377 797,164.67386,208.4956,14.134186,31.346985,6.285 797,453.2092,215.54048,27.488281,62.88591,6.264 797,-11.594214,477.37854,29.651726,64.06683,6.234 797,320.23584,222.37212,23.172424,56.6035,6.234 797,416.7082,192.95482,19.270386,38.11371,6.221 797,451.8916,204.2606,15.399353,32.540466,6.186 797,459.88205,204.61298,16.347076,35.26471,6.186 797,294.6048,258.74826,33.693207,77.89346,6.175 797,417.12793,207.43704,18.762909,44.551483,6.151 797,-11.221344,-31.926256,29.921806,73.874954,6.06 797,-9.165591,229.66794,26.854279,74.50769,6.043 797,450.09122,212.87103,18.821503,47.302277,6.035 797,612.9203,457.0893,38.599182,104.43573,5.942 797,281.5254,289.31656,22.747559,38.903015,5.935 797,302.99838,282.0925,24.04892,38.024414,5.916 797,444.1191,196.47809,17.071564,32.788544,5.835 797,310.7062,224.46982,34.48343,86.679596,5.726 797,34.744026,240.50134,34.806038,61.54181,5.677 797,-5.887606,489.57437,18.374596,41.93112,5.676 797,172.8598,209.54881,13.590073,29.41249,5.636 797,269.14282,286.01523,31.723969,61.44803,5.599 797,159.65784,204.84132,10.607071,18.912582,5.584 797,584.60724,412.82245,69.78815,176.00659,5.578 797,-17.27822,-64.26991,55.890526,146.56236,5.504 797,492.66116,3.0221443,16.683167,29.73236,5.5 797,430.32892,212.36308,26.620209,60.396255,5.485 797,-5.70969,169.56628,18.526203,41.244675,5.449 798,409.4223,198.0077,20.465027,48.265884,11.821 798,269.6094,206.5014,29.304596,71.98251,10.249 798,302.58112,213.44025,27.66394,70.88541,10.086 798,0.89818597,221.56726,24.943346,71.63019,9.346 798,213.215,224.63275,29.868317,81.66882,9.312 798,44.83918,254.9865,30.820824,61.538376,9.1 798,283.60773,274.8202,33.307495,56.892365,9.047 798,312.64523,220.35805,22.509644,56.916336,8.899 798,281.4429,282.84128,22.857208,38.1427,8.624 798,444.10156,201.09221,16.660156,33.31804,8.075 798,325.83362,222.37909,27.85318,67.20422,8.061 798,228.44801,221.95482,29.40892,79.12178,7.632 798,273.6387,279.8438,21.970947,40.53885,7.547 798,265.06696,206.1989,22.907135,48.612656,7.524 798,285.79474,211.07721,29.130066,72.142944,7.511 798,527.07947,227.08952,20.942078,44.138474,7.4 798,406.25452,206.49033,27.633148,64.59671,7.378 798,460.46204,204.78789,17.009918,39.753677,7.349 798,402.4222,194.45102,20.979828,46.664032,7.327 798,320.89526,228.19463,21.806091,53.868607,7.244 798,288.84097,277.5492,23.184143,36.459106,7.154 798,355.40952,231.45367,32.71512,75.10742,7.069 798,297.97653,219.4958,22.226593,56.201187,7.031 798,280.03915,209.12122,23.816376,53.184265,6.885 798,253.97957,209.03354,27.846024,73.80823,6.856 798,453.1247,212.28516,28.443115,65.83234,6.768 798,-11.377333,477.55884,29.492815,63.877197,6.631 798,451.7241,201.53056,16.464447,35.407898,6.624 798,56.225452,263.77686,24.567883,46.61975,6.619 798,626.65576,487.78864,20.362976,46.142883,6.562 798,295.3863,284.62134,23.815552,36.348175,6.523 798,-5.786933,-17.267338,17.821712,43.575092,6.417 798,259.13943,270.13217,32.463135,60.349518,6.366 798,416.78677,196.83348,18.740753,41.173386,6.358 798,277.03818,284.93884,31.501343,59.832367,6.351 798,595.8275,186.26169,16.984253,42.65526,6.205 798,307.8768,209.35037,22.148163,44.034943,6.056 798,310.2961,224.2114,35.017426,86.2298,6.027 798,290.96692,262.25146,32.816406,55.310303,6.023 798,-5.846476,489.05664,18.444447,42.443604,6.013 798,141.19287,210.70647,14.018127,29.682098,5.95 798,-11.278322,-31.9884,29.92992,73.78189,5.932 798,329.11075,216.67334,19.830933,38.11685,5.829 798,2.9203272,199.52313,33.01756,68.463806,5.823 798,343.0454,224.14119,28.922363,75.626785,5.793 798,179.94315,213.8001,17.104736,33.509583,5.75 798,164.69528,210.24985,14.921936,30.5764,5.743 798,627.20435,-18.1067,17.161987,46.724987,5.728 798,269.60007,184.7626,14.157501,29.153397,5.713 798,172.67395,209.91809,14.421997,30.19838,5.702 798,-5.8398314,168.29396,19.014202,42.38846,5.687 798,7.5551724,226.90292,21.824268,46.79889,5.667 798,-9.388941,228.78151,27.289057,75.69554,5.644 798,1.276083,214.56827,21.567122,44.276703,5.623 798,34.75609,240.17862,34.604492,62.81482,5.602 798,612.8989,456.7037,38.92047,104.743195,5.592 798,584.5474,412.9072,69.7876,175.81693,5.569 799,269.26053,205.93622,29.86435,72.936584,11.91 799,302.55075,213.52182,28.466278,70.73694,11.468 799,312.21686,213.8948,22.623291,40.890213,10.923 799,0.8596766,226.3279,24.90889,67.42894,9.411 799,212.59276,224.51517,30.26596,80.88745,8.755 799,285.57617,210.03596,29.840393,73.33287,8.477 799,317.32016,220.44537,27.229523,67.00244,8.452 799,283.64648,275.38123,32.995758,56.914886,8.444 799,288.11118,285.17587,23.717346,35.553497,8.426 799,45.058323,254.46431,30.329144,61.049026,8.389 799,356.2105,236.0448,31.999756,76.81836,7.719 799,265.70764,206.30771,22.832642,48.830536,7.697 799,279.77753,208.10068,24.058258,54.077667,7.61 799,228.46754,222.96414,29.768692,77.51636,7.593 799,273.67343,280.44623,21.73935,40.513794,7.502 799,413.45038,208.23798,27.252106,62.088196,7.199 799,297.9087,219.26474,22.482239,56.566193,7.05 799,409.82117,190.69472,20.118652,42.13481,6.882 799,253.95537,206.83586,28.95192,71.4482,6.78 799,-11.616149,476.96613,29.709373,64.13226,6.448 799,-5.752402,-17.308098,17.711868,43.78286,6.373 799,8.548008,232.32703,20.376328,47.617126,6.358 799,58.763603,262.8384,32.074547,56.874084,6.356 799,626.6611,487.8042,20.333069,46.210693,6.342 799,526.7736,225.83955,21.56189,46.206497,6.337 799,289.24762,273.887,22.081879,32.10681,6.322 799,302.88602,281.82153,24.286987,38.499542,6.159 799,-11.224074,-32.07003,29.875896,74.16187,6.072 799,335.05133,225.50922,27.341125,67.76691,6.069 799,460.76462,205.39375,16.824005,40.511703,6.057 799,443.8519,199.11049,17.235138,36.34836,6.032 799,-9.214319,231.02899,26.863758,73.138,5.985 799,2.1140308,223.9506,19.11117,41.891525,5.961 799,291.0554,250.21457,32.976624,59.70691,5.896 799,164.54767,210.47427,14.533356,29.774277,5.883 799,282.07693,276.02588,22.420685,37.139343,5.883 799,396.9716,215.02643,29.63266,56.303345,5.859 799,-6.042799,489.30527,18.491611,42.366486,5.852 799,401.85437,199.03714,21.05011,47.02182,5.849 799,190.68158,222.54619,30.203613,63.503494,5.847 799,259.62177,271.1308,31.82074,60.456787,5.83 799,425.12662,215.28511,21.725525,51.905075,5.74 799,3.4524357,212.89735,31.188257,64.85863,5.73 799,626.98883,-18.18401,17.337402,47.027645,5.68 799,266.35068,224.02815,20.539581,52.692795,5.657 799,172.80113,210.57529,13.83107,28.885849,5.656 799,445.5757,205.69934,26.875946,66.95404,5.652 799,269.06122,285.53146,31.32846,61.945465,5.651 799,309.43262,240.00235,35.802795,83.771545,5.65 799,584.62384,412.8608,69.84082,176.0018,5.624 799,612.9648,457.0102,38.76361,104.21289,5.602 799,508.01483,217.62311,16.952515,36.69342,5.578 799,34.792156,240.41872,34.603733,63.0822,5.451 799,595.8283,193.47356,18.050537,40.736313,5.446 799,270.13684,186.81514,13.465515,28.058365,5.442 799,283.07208,236.2334,19.533936,44.07959,5.439 799,-17.171669,-64.32054,55.801487,146.78345,5.424 800,312.38028,213.2404,22.118622,41.46524,15.505 800,269.70044,206.94505,29.391327,73.170944,12.832 800,302.35913,211.00963,28.22284,71.83876,12.119 800,416.87714,200.37122,19.464996,43.67914,11.232 800,350.2185,229.10739,30.830048,80.07904,10.37 800,285.50064,208.17856,29.653717,75.16025,10.12 800,212.38235,224.63261,30.409363,80.23552,9.743 800,407.2568,194.9397,26.281769,62.783905,9.136 800,0.7909334,220.06271,24.933764,74.019226,9.085 800,44.626446,255.6747,31.047703,61.097733,8.736 800,288.21048,285.72232,23.61148,35.263336,8.627 800,280.20026,206.51978,23.327332,56.855072,8.098 800,402.09073,198.96365,20.673859,44.699997,7.981 800,316.99542,219.15192,27.207703,67.10614,7.98 800,-4.4945474,167.98967,17.118654,45.84366,7.777 800,276.80515,273.7352,32.10321,58.015045,7.706 800,265.72095,207.57176,22.177734,46.601013,7.61 800,254.02443,210.91315,28.32988,72.951965,7.382 800,229.6785,223.09305,27.869537,75.3689,7.357 800,273.7072,280.51425,22.047882,40.657715,7.23 800,444.03558,203.36804,17.2117,38.31363,7.18 800,520.25244,223.17401,28.001282,59.5036,6.839 800,361.27948,233.72643,33.267944,77.1906,6.835 800,290.94272,275.58395,32.30966,58.288177,6.631 800,172.88788,209.8598,14.708832,30.157104,6.608 800,-11.709438,477.53485,29.95488,63.631653,6.594 800,259.43198,270.3653,32.08795,61.504364,6.53 800,-5.695142,-17.299973,17.826155,43.725605,6.443 800,626.79694,488.10257,19.959595,45.81015,6.436 800,397.38187,209.4242,28.328156,57.947296,6.401 800,141.26884,209.90675,13.631332,29.72435,6.191 800,-11.117011,-32.145535,29.84053,74.44214,6.154 800,391.1273,178.48955,25.580658,64.33394,6.153 800,335.0876,224.88768,28.091888,67.83806,6.008 800,164.91855,210.37422,15.207214,30.257019,5.99 800,423.625,204.37938,19.775818,48.639877,5.977 800,-6.024182,489.39117,18.600716,42.16217,5.972 800,269.2753,284.80765,31.27707,62.07318,5.96 800,612.82086,456.88977,38.65161,104.60614,5.951 800,66.47578,237.57986,18.583763,28.034363,5.929 800,56.598183,269.80536,24.16584,44.670563,5.848 800,296.9942,291.8904,21.037659,37.30893,5.838 800,303.05255,282.04907,23.877136,37.949707,5.8 800,626.98956,-18.482092,17.531677,47.684196,5.747 800,266.34583,223.69693,20.885437,53.28891,5.725 800,282.3144,276.63968,21.842163,36.572144,5.657 800,298.05353,230.36595,20.67752,50.18773,5.652 800,34.47727,239.64162,34.747936,62.944687,5.548 800,-9.595989,228.71909,27.578009,75.30762,5.539 801,294.8386,211.126,27.980865,73.020386,11.539 801,313.21753,217.01176,22.418457,52.359512,10.896 801,269.48984,206.2475,29.634796,73.01044,10.418 801,305.7908,217.6546,21.940948,57.880127,9.675 801,410.10953,194.66614,20.704742,44.531326,9.151 801,288.1808,285.26773,23.325806,35.12793,8.722 801,45.014004,255.26497,30.596676,60.038376,8.686 801,213.22807,223.02563,29.656998,82.47394,8.577 801,2.3466957,187.71176,17.616909,40.543243,8.256 801,359.48428,226.43222,25.0401,42.72705,8.164 801,1.6491282,222.47255,24.345894,71.97899,8.128 801,316.8892,219.45229,27.445374,68.01878,8.086 801,228.60551,223.18013,29.554337,76.64284,7.994 801,288.46783,213.3734,22.987305,56.806046,7.661 801,283.60873,275.8797,32.623505,56.619873,7.546 801,349.09073,228.88577,32.90744,76.383514,7.477 801,281.24945,219.4856,22.205994,55.46408,7.365 801,171.99542,208.3351,15.748596,31.803833,7.362 801,402.14362,196.38808,20.496735,45.52742,7.353 801,273.5703,280.39474,22.09903,40.397278,7.329 801,253.80363,210.05615,28.41777,73.49936,7.252 801,265.09647,209.03339,23.066345,57.931,7.096 801,-3.694871,172.84216,15.883399,40.35228,7.088 801,443.58597,203.86542,16.68161,35.117554,6.856 801,-3.7420492,155.58128,15.937765,42.636703,6.737 801,626.74835,488.26276,20.1109,45.679504,6.694 801,141.1536,212.22177,14.236511,28.59169,6.677 801,520.42236,220.11142,26.457825,60.26355,6.657 801,-11.279852,478.08734,29.265778,63.376892,6.617 801,413.97888,199.70657,25.134125,60.56357,6.584 801,289.82874,275.83658,21.122772,30.054718,6.488 801,-5.751727,489.33466,18.065372,41.920532,6.45 801,259.3551,270.6793,31.939453,60.87036,6.348 801,16.035326,222.27657,20.98895,38.546677,6.304 801,-5.8170023,-17.270298,17.9935,43.97387,6.192 801,56.291904,264.27454,24.344852,45.3096,6.16 801,291.4594,250.1329,32.295532,60.190918,6.092 801,-11.179471,-32.17436,29.917381,74.68124,5.958 801,626.9239,-18.655952,17.497803,47.675568,5.894 801,3.6908388,176.61035,15.329436,35.743042,5.858 801,164.55145,209.82614,16.34842,31.29567,5.83 801,368.35217,224.48003,21.536285,35.067154,5.796 801,269.24515,284.77106,31.145508,62.4581,5.77 801,612.7998,456.76898,38.65619,104.84723,5.745 801,282.4749,276.90295,22.24405,35.928528,5.736 801,303.04758,281.8149,23.636383,38.156525,5.727 801,584.7138,412.83987,69.781494,176.2609,5.696 801,334.31485,223.59854,29.887909,67.75955,5.695 801,394.7536,195.27316,19.097748,40.881714,5.656 801,178.99078,214.27339,17.956055,33.065002,5.626 801,459.3463,-15.935611,16.971405,37.079487,5.593 801,451.19855,198.47505,17.532593,37.80313,5.532 801,244.61923,218.15245,28.250305,75.04668,5.527 801,622.0768,-33.582172,27.182861,76.39429,5.469 801,269.72818,185.99887,13.733154,27.638931,5.463 802,401.39267,197.79208,20.46994,43.809113,15.965 802,1.5847331,222.1881,19.808413,53.37819,12.8 802,313.10645,217.74599,22.198273,52.432236,11.395 802,302.7548,214.37302,27.808228,70.27298,11.238 802,409.66428,193.54308,20.233948,44.672302,10.779 802,269.5373,206.803,29.730408,72.20372,9.975 802,3.8624775,216.91284,27.984716,71.1095,9.856 802,44.724808,255.7341,31.082703,61.08557,9.011 802,288.5047,285.6466,23.480621,34.67691,8.841 802,283.8285,276.97614,33.15222,55.39978,8.466 802,520.76196,218.00833,26.531006,63.34073,8.355 802,212.89511,224.50256,30.412811,81.10095,7.997 802,273.55807,281.0782,21.785187,39.164337,7.934 802,417.43066,197.96835,18.885803,41.399628,7.781 802,285.78137,210.48679,29.33722,72.50647,7.766 802,317.31433,220.08087,27.011353,67.16144,7.679 802,228.06015,224.25307,29.450409,81.00218,7.178 802,349.93893,232.01051,32.63449,81.31395,7.159 802,395.44757,196.81787,18.815674,40.153137,6.95 802,-8.197191,222.00815,26.754738,74.57187,6.947 802,281.3904,220.2964,21.793488,54.289474,6.886 802,626.82,488.63153,20.039185,45.294373,6.809 802,-12.017128,477.3993,30.359106,63.618896,6.794 802,-3.726058,171.94246,15.790287,41.32553,6.741 802,359.60852,240.68063,34.71216,81.95383,6.615 802,294.5627,258.3403,33.937958,76.958984,6.573 802,-5.7259917,-17.321377,17.777975,43.854595,6.543 802,254.01437,210.13913,28.335388,73.31998,6.425 802,443.65173,196.27092,17.833832,38.073135,6.359 802,342.18082,221.6235,30.135162,72.52081,6.324 802,309.05124,240.95653,36.678772,81.909775,6.318 802,3.380938,184.12616,16.051638,36.713867,6.304 802,259.25714,271.8744,32.48752,59.631836,6.294 802,-4.2595854,217.83519,17.57556,46.06627,6.223 802,-3.875432,187.9729,16.294628,39.85501,6.201 802,-11.212923,-31.897543,29.891745,74.01842,6.179 802,277.26636,285.93878,30.71875,58.63861,6.166 802,56.476574,269.60944,24.117764,45.444153,6.105 802,296.62387,291.18982,22.199738,38.11801,6.096 802,359.5932,226.585,23.613922,45.245224,5.976 802,-3.5718002,153.61884,15.974892,45.222122,5.956 802,327.41217,219.86865,23.67398,53.038727,5.886 802,303.0673,282.20142,24.14212,37.456055,5.884 802,459.86008,200.48532,18.539154,48.558945,5.881 802,-6.130984,489.50876,18.586025,41.540924,5.872 802,353.9226,219.8071,20.772552,41.42685,5.872 802,290.48187,276.50064,20.537598,28.4805,5.841 802,12.673669,224.93947,28.859425,68.623764,5.744 802,282.5499,277.9378,21.485962,34.636658,5.731 802,140.75153,211.77788,14.793396,29.71431,5.726 802,584.57947,412.5675,69.99213,176.43896,5.704 802,270.6147,196.60669,12.397247,24.634903,5.678 802,612.83026,457.365,38.70996,103.86487,5.678 802,298.51645,230.97043,20.283875,49.14038,5.667 802,325.22223,224.41379,36.720886,86.07944,5.598 803,395.7463,200.13217,18.009735,42.286194,14.026 803,313.6887,216.93608,21.793823,52.437454,12.962 803,303.06644,211.9752,27.69931,71.782974,11.244 803,269.33997,206.44699,29.31427,72.92679,11.228 803,400.45282,192.19041,20.894867,48.503387,9.251 803,285.95578,210.0407,28.87558,71.69917,9.231 803,45.096123,256.36093,30.238495,61.18564,9.111 803,288.04028,285.7856,23.69461,34.954285,8.585 803,317.7354,217.45386,26.558136,69.032166,8.118 803,618.946,191.46057,17.063904,57.89041,8.058 803,228.57907,223.40092,29.543,76.03664,7.983 803,409.69272,195.78404,20.84256,46.753662,7.969 803,213.52957,224.4625,29.48526,81.859436,7.794 803,253.86981,210.66974,28.288147,72.93094,7.254 803,626.73694,488.4482,20.009216,45.42856,7.185 803,308.64258,210.17589,20.860779,44.212173,7.182 803,56.399914,264.58844,24.419544,46.273376,7.136 803,520.2737,224.76048,27.866455,59.31343,7.103 803,283.45746,275.93976,33.066467,56.27176,7.076 803,596.77167,190.41179,15.28302,37.71579,7.046 803,0.8353615,223.14566,24.711895,69.93735,6.989 803,272.8559,279.97183,23.006561,40.943756,6.752 803,335.29193,222.7087,28.615417,69.18254,6.719 803,-11.550386,477.76288,29.555197,63.444336,6.685 803,297.91983,217.91293,22.265106,57.934723,6.674 803,259.02917,270.1242,32.61023,60.95575,6.564 803,458.18332,201.77487,25.221832,58.670074,6.563 803,265.03943,209.86526,22.70163,55.472687,6.56 803,356.1042,247.24567,34.634277,77.285645,6.455 803,-5.7815886,-17.506031,17.84908,43.97946,6.447 803,280.1083,208.16998,23.27536,54.7807,6.351 803,-3.483591,172.49693,15.483175,40.840958,6.265 803,-5.967211,489.37915,18.348166,41.962097,6.177 803,418.02698,198.06503,19.477417,44.021255,6.163 803,-11.1177845,-31.703175,29.722612,73.728386,6.05 803,34.899563,192.5711,30.353672,57.69937,5.929 803,-3.2897403,155.11768,15.245764,43.393387,5.928 803,627.03613,-18.2122,17.322144,46.701286,5.847 803,612.8712,457.43805,38.60553,103.63013,5.82 803,164.4145,210.9702,15.107132,29.271225,5.811 803,140.82124,212.51831,15.500641,28.547073,5.791 803,320.58,213.52032,20.431305,42.039185,5.755 803,615.40186,206.28683,25.40393,81.040344,5.752 803,584.8528,412.6731,69.67798,176.32983,5.73 803,343.5397,233.75423,28.257019,74.54973,5.685 803,328.04672,219.9456,22.000916,54.026108,5.64 803,3.7396896,196.59882,31.52853,69.59625,5.597 803,618.65564,489.65952,19.914062,42.78586,5.586 803,170.80429,213.84427,16.797302,33.31392,5.562 803,508.2495,216.21669,16.975708,37.922775,5.541 803,309.22275,239.59717,36.366974,82.80957,5.499 803,302.7785,282.60342,24.015808,37.67575,5.439 803,179.11162,213.56447,17.71614,32.873657,5.425 803,276.90228,285.412,31.158783,60.274384,5.378 803,4.3783092,210.1875,36.13508,98.4104,5.376 804,312.0614,212.63776,22.576355,41.69606,17.188 804,302.89645,212.1548,28.351044,70.53081,12.98 804,394.8452,198.88403,20.137634,44.774963,12.726 804,269.159,206.28073,29.645386,71.50339,10.743 804,417.74713,197.20938,21.039764,46.875366,9.499 804,356.05664,245.82349,34.8804,79.236145,9.421 804,409.80853,191.12498,20.890076,49.873657,9.343 804,319.79642,216.6597,23.045837,55.640564,9.306 804,281.42557,283.5451,22.507172,37.929504,8.902 804,0.36720037,221.63855,25.025167,71.33496,8.71 804,53.16105,259.9559,30.730019,56.38098,8.468 804,285.70886,209.8271,29.435822,72.032455,8.368 804,596.3538,192.29413,16.765137,41.35707,8.324 804,283.34055,275.23734,33.019684,56.789764,8.217 804,265.53006,206.52086,22.162262,47.919907,7.961 804,-3.6222908,172.99252,15.885813,39.99347,7.648 804,273.67413,280.039,22.325348,41.1369,7.573 804,279.9547,208.17961,23.685638,53.64174,7.428 804,254.42404,207.16756,28.0784,69.84325,7.3 804,2.4398417,189.29893,17.534353,38.05208,7.24 804,37.498753,247.45607,30.697674,65.854416,7.203 804,459.76917,202.59454,20.13263,53.445374,7.191 804,228.34656,223.68097,29.596436,75.81311,7.132 804,397.4964,197.03253,29.104828,64.97589,7.07 804,-11.541896,477.22797,29.9907,63.78833,6.962 804,309.94397,224.4755,34.974884,84.719574,6.958 804,313.72156,228.42311,20.906097,52.718643,6.82 804,-3.6127164,155.70842,15.554837,42.531586,6.765 804,324.64874,217.89252,28.18811,68.622314,6.76 804,297.93356,218.15712,22.474121,57.79152,6.716 804,626.733,488.67438,20.17035,45.554626,6.689 804,3.0247402,193.79958,31.750425,72.35832,6.625 804,335.55518,222.96976,28.843689,69.46094,6.59 804,348.47168,235.15468,32.09366,72.723465,6.585 804,213.46846,224.98866,29.164124,80.89897,6.581 804,526.61475,231.05356,21.808655,45.879974,6.58 804,4.459593,178.40897,14.705511,33.059677,6.561 804,-5.6103516,-17.501959,17.746733,44.21807,6.558 804,-6.0232058,489.1197,18.694843,42.445312,6.389 804,295.7337,285.976,23.006927,35.02005,6.219 804,28.320953,196.11215,32.54794,55.628616,6.182 804,26.694632,193.39355,21.125193,40.551132,6.181 804,442.70523,198.18149,18.718384,42.185883,6.157 804,289.0634,278.20697,22.517914,35.675568,6.071 804,-11.119289,-32.011856,29.675278,73.985054,6.052 804,259.61102,270.7121,32.472443,61.24936,6.036 804,288.95358,291.15073,22.06009,37.77887,5.971 804,-9.3214245,228.61533,27.919582,74.9617,5.852 804,388.62927,200.63626,18.142212,40.098328,5.827 804,400.195,186.50563,21.88797,51.361633,5.783 804,618.70776,187.99437,17.255371,59.300842,5.767 804,627.10455,-18.362623,17.349426,47.117584,5.757 804,584.7109,412.76422,69.81641,176.33942,5.726 804,622.34485,-33.664467,27.088745,76.71655,5.707 804,3.0641294,158.22993,15.416021,39.512665,5.698 804,612.75757,457.1715,38.731445,104.17212,5.679 805,401.32336,194.16693,21.668701,51.491165,17.756 805,417.14597,196.71234,21.233276,49.98018,15.347 805,409.1907,191.47348,21.860504,52.84915,10.285 805,302.83337,212.80194,27.911316,71.391846,10.197 805,269.14252,206.08069,29.781128,72.28195,10.021 805,313.29135,219.27933,22.34674,56.92694,9.948 805,44.855415,254.70859,30.455574,61.866333,9.373 805,288.46265,285.73,23.202057,34.48584,8.94 805,1.0609305,224.11813,25.008364,70.504395,8.865 805,283.97113,276.14124,32.471222,56.058655,8.49 805,273.44366,280.8154,22.28064,40.28061,7.899 805,285.80023,210.30789,29.316925,72.6293,7.843 805,265.6439,204.2885,22.730469,52.031265,7.671 805,213.10509,224.97897,29.493713,81.88556,7.32 805,298.03036,219.43144,21.91397,56.237106,7.267 805,457.12646,200.66644,26.138245,60.560425,7.258 805,58.42183,263.67422,32.742996,56.31534,7.102 805,391.31714,179.60915,25.684631,67.61659,7.066 805,279.81583,208.70433,23.826904,54.077988,6.896 805,228.59177,223.86157,29.007965,75.56146,6.86 805,-3.764347,173.01474,15.689811,39.557938,6.837 805,-11.873642,477.9629,30.139683,63.423035,6.764 805,355.7633,246.82675,35.266724,79.299164,6.747 805,520.9972,219.90944,25.778503,60.166183,6.704 805,303.11694,283.57425,23.511139,36.663147,6.663 805,626.7933,488.0609,19.970703,45.86548,6.651 805,276.92792,284.98325,31.227264,60.244843,6.651 805,-5.6799455,-17.144905,17.702345,43.74632,6.643 805,325.00797,218.95642,29.2471,70.15723,6.607 805,270.8778,204.63211,11.518921,21.804688,6.513 805,27.397633,233.21617,33.067028,68.61122,6.404 805,442.3022,196.57346,18.859283,44.127487,6.392 805,4.4750576,176.93915,14.298613,34.23448,6.325 805,253.20575,208.55449,29.454285,75.08778,6.305 805,320.28955,228.26205,22.359558,53.022064,6.292 805,259.41617,271.2288,32.17459,60.603394,6.248 805,-3.5911117,155.15549,15.627424,42.95903,6.238 805,296.98627,291.65405,21.362366,37.262115,6.181 805,309.86777,223.4497,35.215607,85.56323,6.105 805,2.8736472,190.8306,17.631418,37.685593,6.072 805,-11.10421,-32.310123,29.66377,75.200745,6.054 805,-6.056031,489.4653,18.519915,41.82907,6.047 805,335.7324,223.65349,28.472473,73.02385,5.984 805,282.2511,277.24448,22.000732,35.945557,5.978 805,277.5566,196.75748,11.933319,24.628693,5.942 805,-4.411459,187.62001,17.088728,40.370102,5.912 805,627.0686,-18.351507,17.367065,47.417778,5.908 805,612.88965,456.76553,38.646545,104.5372,5.822 805,348.43854,234.13203,32.32379,78.95805,5.802 805,289.8772,275.61157,20.792725,29.602844,5.767 805,-9.67678,230.46783,27.517002,74.08368,5.749 805,584.76733,412.56506,69.74878,176.44946,5.735 805,43.586903,198.79398,18.559177,36.28842,5.705 805,270.1193,187.19037,12.888794,27.589188,5.637 805,619.79156,185.01505,16.923157,56.81485,5.637 805,492.5342,3.0232792,16.423157,30.000769,5.586 805,294.3313,258.67627,33.903015,77.17447,5.568 806,417.63382,196.75046,21.30777,49.78328,13.468 806,400.89075,194.42346,22.613434,50.75067,13.026 806,310.3906,216.59824,26.887482,68.88431,12.857 806,295.15768,210.82466,27.721924,73.51616,11.447 806,269.70993,207.05373,29.22873,72.38939,11.417 806,409.6779,196.23224,21.468964,48.2117,10.045 806,44.934006,255.38046,31.022171,61.996033,9.522 806,288.29602,285.86453,23.136597,34.790283,9.249 806,319.71155,218.1596,23.284485,55.55005,9.176 806,0.8886945,222.86728,24.925877,70.97299,9.077 806,307.4369,213.53653,22.316284,48.234314,8.855 806,527.1883,232.08647,20.721191,43.39821,8.473 806,273.85428,280.44507,21.828766,40.84549,8.457 806,283.49313,275.83392,32.92502,56.533752,8.402 806,228.51062,223.11664,29.28003,75.876465,8.177 806,213.46565,223.84589,29.535004,81.723816,8.027 806,459.50864,199.37752,18.963043,52.45636,8.022 806,288.7357,213.7715,22.509155,55.843246,7.694 806,280.35303,208.59872,23.050842,53.699127,7.648 806,325.54947,218.35095,28.712982,72.279236,7.583 806,627.0564,488.7268,19.797485,44.937622,7.534 806,266.2875,207.2306,20.80014,48.035294,7.171 806,258.43823,212.68086,20.82666,53.82219,7.165 806,-3.3833172,173.11159,15.252508,40.08159,6.927 806,-11.500283,477.8054,29.548428,63.59561,6.827 806,15.865227,222.19485,22.7193,39.372467,6.824 806,347.15082,231.87512,32.329468,73.93756,6.73 806,163.23311,208.0293,17.702835,32.514435,6.621 806,281.65414,288.28052,22.152771,40.647156,6.562 806,442.9373,196.77345,18.476044,43.533463,6.555 806,306.13068,229.08177,20.78894,51.242508,6.499 806,335.60986,222.89432,28.214722,74.47638,6.474 806,-5.7927585,-17.279762,17.83994,43.61695,6.431 806,-3.4796925,154.79633,15.426458,43.39662,6.411 806,-5.9304953,489.13126,18.366917,42.07138,6.362 806,-3.88773,189.20538,16.44194,38.385452,6.355 806,58.387627,264.66492,31.782516,57.08914,6.338 806,355.82446,246.85551,35.062805,78.80037,6.242 806,259.44345,270.63138,32.094696,61.501587,6.205 806,4.6016083,177.55814,13.778845,34.360535,6.168 806,170.44495,206.59222,17.556885,32.728073,6.132 806,15.768578,233.61844,22.477566,51.26175,5.967 806,612.77,457.07687,38.36371,104.15146,5.907 806,-11.236628,-32.412357,29.812992,74.85082,5.792 806,75.59965,245.5985,16.094887,25.39061,5.764 806,8.121462,222.2893,21.268782,42.61441,5.758 806,27.522728,232.78516,32.490326,69.09717,5.727 806,269.3667,285.00256,30.7872,62.837738,5.711 806,303.21872,282.93304,23.54184,37.80591,5.702 807,417.27808,195.15836,21.659973,50.820374,16.639 807,303.05096,214.33417,27.591766,70.30908,12.608 807,313.39053,216.59073,22.038605,53.868286,12.297 807,398.8001,190.77277,25.350616,58.131973,11.492 807,409.4559,191.07713,21.874481,52.24237,11.463 807,44.81203,254.7986,31.022732,62.348587,9.918 807,269.0302,206.47458,29.65506,72.93271,9.77 807,520.62695,218.94542,26.330078,62.321518,9.501 807,281.20566,284.26657,22.516022,36.388153,8.949 807,1.0639513,222.35477,24.719788,71.49655,8.746 807,286.02072,210.56862,28.964905,72.19655,8.365 807,273.5709,280.45844,22.239319,40.157104,8.285 807,276.08252,274.39014,32.990814,56.73529,8.257 807,317.41724,217.76549,27.304688,68.97896,8.21 807,228.61067,223.71265,28.89058,76.71002,7.923 807,259.70618,270.56326,31.783325,59.77423,7.682 807,297.8787,218.5061,22.478516,58.155334,7.62 807,-11.523309,477.38803,29.571709,63.96457,7.176 807,-5.5619087,-17.078217,17.687319,43.65509,7.173 807,281.38235,219.65607,22.045013,55.04419,7.008 807,265.54126,205.63397,22.314331,50.093735,6.956 807,214.20195,225.24704,28.9478,80.63223,6.935 807,-3.731835,172.23718,15.821514,40.69745,6.83 807,333.14334,224.44043,30.374756,65.43054,6.772 807,254.21603,205.92027,28.797333,72.4781,6.769 807,327.40323,221.6396,23.854645,52.333755,6.719 807,348.6363,233.71262,31.31961,78.62775,6.717 807,170.58466,207.58212,17.545807,31.43431,6.559 807,-5.871543,488.96118,18.416565,42.3161,6.482 807,-10.987867,-31.735462,29.64602,74.64864,6.431 807,56.321632,263.82727,24.489609,47.52594,6.39 807,289.2496,291.2893,21.738007,37.143677,6.267 807,356.2604,246.3894,34.197784,79.852356,6.185 807,308.16647,211.76767,21.622528,43.654373,6.157 807,-3.5653698,155.26225,15.622092,43.032837,6.05 807,442.77194,192.36789,19.1846,44.420563,5.889 807,288.98532,278.85312,22.373291,35.074127,5.873 807,295.73395,286.31876,22.871643,34.818268,5.827 807,612.6867,453.90448,39.52057,107.937805,5.805 807,500.49435,214.96858,16.110748,36.673126,5.784 807,627.1061,-18.992428,17.370483,47.65483,5.755 807,290.75784,275.69232,32.75638,57.742676,5.722 807,626.6212,487.5166,20.424744,46.576294,5.703 807,4.1744623,175.70473,14.398604,35.56337,5.685 807,163.23059,209.10707,17.879562,31.799728,5.59 807,458.96997,198.45549,19.753204,53.69232,5.577 807,34.12658,240.16599,35.625298,62.499084,5.569 808,312.49664,214.58751,21.628265,46.52571,21.299 808,416.90915,196.45576,22.625397,49.67737,15.789 808,401.21432,195.6345,23.126526,49.66188,14.667 808,303.40115,212.19681,27.75644,71.94589,13.568 808,319.53168,216.26335,23.17749,56.591965,10.388 808,453.3627,224.6926,30.558014,67.84772,10.274 808,269.1891,206.3578,30.067383,71.27577,9.495 808,44.972107,255.23528,30.937012,60.859116,9.035 808,281.245,284.1896,22.755554,36.89984,8.924 808,1.2883234,222.04471,24.823936,72.1709,8.796 808,286.01385,209.47112,28.932922,72.49196,8.551 808,273.36444,280.3227,22.684113,41.46805,8.162 808,213.05962,224.35239,30.088959,82.64609,7.891 808,325.70514,218.01447,28.678345,72.227356,7.832 808,298.22464,212.8772,22.759125,57.69989,7.744 808,276.23456,273.97473,33.010498,57.746582,7.378 808,309.8457,222.60756,34.781677,85.57454,7.325 808,259.2272,269.31125,32.70523,62.965942,7.227 808,347.2268,231.22325,31.753326,73.76213,7.225 808,627.0053,488.79266,19.618958,44.9386,7.12 808,-3.474926,171.71109,15.519303,41.01004,7.098 808,280.29514,208.66862,23.668427,53.507767,7.02 808,491.86926,231.54901,29.639465,63.30896,7.006 808,265.82767,207.14725,22.096191,48.010437,6.851 808,-11.816561,477.6602,29.95078,63.018646,6.818 808,-5.706149,-17.275433,17.721157,43.720585,6.724 808,460.11572,204.95877,18.229156,44.118515,6.689 808,289.1283,291.88678,21.835846,36.785065,6.636 808,335.86652,223.78842,28.055786,72.859985,6.53 808,253.47939,210.13667,28.831528,72.16795,6.507 808,229.91803,223.12889,27.736145,75.23006,6.448 808,344.16974,231.09377,25.079224,47.320663,6.354 808,56.238552,264.3103,24.776989,45.969757,6.309 808,-3.212449,154.19876,15.577477,44.579193,6.188 808,-11.097951,-31.92484,29.61816,74.45634,6.127 808,295.9387,286.78784,22.880615,34.209534,6.124 808,170.7175,208.33803,17.65506,31.735336,6.064 808,492.2049,2.4793806,17.331177,30.961445,6.038 808,-4.114655,186.59222,16.918303,42.13034,5.975 808,442.6394,199.53615,18.098389,40.231476,5.947 808,612.4858,457.0439,38.619446,104.105804,5.937 808,-6.2034125,489.18393,18.846682,42.28238,5.894 808,163.0299,210.04874,18.439804,31.43341,5.879 808,355.72086,246.4586,35.02359,79.18306,5.808 808,289.16003,278.45557,22.428833,35.137848,5.793 808,595.6047,190.5515,17.445312,43.480164,5.766 808,268.90652,286.7404,31.760864,61.065216,5.729 808,627.08765,-18.320131,17.299072,47.090786,5.714 808,476.13318,232.48306,30.646027,63.815125,5.702 808,293.91922,256.81293,34.589996,78.77072,5.65 808,4.413542,175.18137,13.919472,36.416183,5.634 809,310.7268,216.65302,27.04065,68.05109,12.891 809,294.9139,211.17372,28.488037,72.22746,10.261 809,268.9826,207.25142,30.044006,70.81331,10.002 809,405.88757,204.54195,29.295074,64.71532,9.54 809,401.404,197.90965,21.651428,49.355865,8.73 809,212.80061,223.68199,29.80571,82.57878,8.634 809,288.26102,286.30963,23.434662,34.570465,8.545 809,0.83453894,223.57187,24.825611,70.11548,8.532 809,273.23035,280.53888,22.50476,40.66455,8.214 809,45.09363,256.25522,30.12402,60.298004,7.991 809,283.94617,276.88852,32.694427,55.56018,7.953 809,325.72433,219.34421,28.560272,70.07794,7.665 809,259.11795,269.88092,32.74301,62.121613,7.264 809,266.30948,207.28143,21.647522,48.515915,7.244 809,-3.580184,172.75162,15.783014,40.08893,7.178 809,319.19012,218.70515,21.992737,45.38408,7.099 809,307.53787,213.35233,22.322083,46.957825,7.093 809,335.8686,224.3841,28.244629,72.414185,7.079 809,228.3247,222.6164,29.991272,77.68262,7.016 809,417.95865,213.02692,20.703125,47.334015,6.976 809,279.99817,209.93922,23.574982,51.657364,6.869 809,355.7328,245.98177,34.593414,80.37492,6.853 809,-11.452994,477.1349,29.348476,64.70764,6.632 809,3.2376485,183.9458,16.292732,36.23282,6.574 809,277.1098,285.7662,31.319183,59.68277,6.539 809,253.72745,209.86948,28.455292,73.484375,6.534 809,394.62772,200.31377,20.207336,45.221603,6.53 809,-3.270865,155.96631,15.382326,41.240616,6.481 809,161.98401,209.08685,18.51065,33.035583,6.476 809,59.079483,264.07828,31.848541,56.025604,6.442 809,-5.704893,-17.420029,17.694317,44.112225,6.431 809,288.71466,214.3151,22.677338,54.700653,6.389 809,348.10266,234.60895,32.161957,77.94086,6.352 809,626.6161,488.1283,20.260376,46.062927,6.267 809,-11.158854,-32.14896,29.841547,74.35424,6.158 809,170.431,208.62544,17.393738,32.000565,6.152 809,-5.9107866,489.1291,18.306393,42.353455,6.074 809,305.92145,229.07428,21.085236,51.316986,6.034 809,-4.2136197,187.1378,17.019966,41.384903,6.01 809,506.71048,228.41797,17.610321,39.292297,5.906 809,387.07596,199.8077,18.386414,40.911606,5.857 809,596.1155,186.86964,15.812744,43.170547,5.857 809,269.61087,186.2008,13.990997,29.009323,5.811 809,303.0545,282.68994,23.694397,38.3627,5.747 809,308.32394,237.76259,36.980804,85.84105,5.689 809,3.908022,168.76186,14.591551,35.2377,5.648 809,612.80676,456.83484,38.90161,104.596985,5.645 809,627.13934,-18.24592,17.242615,47.163467,5.642 809,294.23273,257.606,34.18689,78.54843,5.632 809,584.5126,413.2272,69.89508,175.7136,5.629 809,410.51428,195.3119,20.18393,48.421234,5.622 809,413.32217,222.00125,29.634521,59.633606,5.594 809,30.056137,196.99425,33.05268,55.454834,5.593 809,7.7633166,223.74623,21.343246,40.27968,5.59 809,296.65356,291.89746,21.723694,36.994324,5.581 809,270.7236,204.20912,12.293884,22.969345,5.563 809,-9.651052,230.7958,27.179262,73.11063,5.502 810,401.80652,199.81407,22.147614,49.271667,15.024 810,313.31943,216.99191,22.121063,52.91919,12.488 810,303.2517,213.75189,27.324005,70.076294,11.984 810,318.08603,218.4674,25.967041,67.84027,9.557 810,269.6674,206.06189,29.532013,72.35217,9.471 810,0.8665776,224.05864,24.842901,69.92244,9.103 810,45.007027,256.0941,30.50206,60.540863,8.387 810,409.92642,196.55254,20.090637,47.305542,8.302 810,281.75195,284.61017,22.146332,35.940918,8.105 810,211.82066,223.75665,31.264297,83.91205,7.994 810,286.18658,209.52914,28.576324,71.95511,7.595 810,283.2328,276.0937,33.489624,55.94278,7.552 810,333.41586,223.94104,29.773346,65.2395,7.535 810,264.69022,208.60622,23.349396,57.29918,7.512 810,417.92712,197.87462,17.832825,43.603348,7.469 810,253.85439,207.56999,27.705612,70.65956,7.426 810,228.10777,222.5007,29.726852,77.35571,7.399 810,274.1526,281.68564,21.507996,38.637756,7.363 810,347.1411,232.41324,32.187195,72.55713,7.284 810,327.50574,221.1933,23.531494,52.154724,7.168 810,-11.444529,476.41138,29.62208,65.24158,6.869 810,279.9223,207.24506,23.932251,55.722107,6.807 810,298.11447,219.08614,22.205017,56.368668,6.804 810,-3.4517133,172.11882,15.484765,40.64537,6.775 810,521.2181,220.12045,25.64093,59.89682,6.64 810,-5.7204413,-17.208351,17.795744,43.41948,6.532 810,391.50302,203.82281,28.017242,57.73056,6.368 810,289.42792,279.42075,21.820099,34.186584,6.255 810,269.0308,286.93658,31.444336,60.540833,6.238 810,-11.173557,-31.738,29.802683,73.8402,6.231 810,270.10336,187.4368,12.348389,26.429947,6.223 810,626.7878,487.84082,20.131653,46.30658,6.169 810,-3.7142193,153.90428,16.12018,44.616943,6.151 810,595.5387,187.57481,16.996216,42.88333,6.151 810,308.90924,237.25682,36.51001,84.53978,6.128 810,169.53113,209.45148,18.291626,31.926483,6.118 810,289.01654,291.6692,22.184387,37.187286,6.1 810,-5.9904313,488.6722,18.57048,42.884552,6.098 810,56.50695,264.4246,24.144676,46.40732,6.002 810,356.1541,246.33972,34.998596,77.833374,5.928 810,4.183529,175.56934,14.489817,36.27893,5.867 810,-9.416732,230.25847,27.07737,73.35133,5.813 810,627.036,-18.58612,17.442505,47.42546,5.747 810,612.89777,456.0623,38.48578,105.25729,5.742 810,394.63394,195.6878,19.846313,46.03528,5.648 810,162.61885,210.72116,18.679077,32.28943,5.616 810,493.00095,2.63313,15.756073,30.638603,5.583 810,584.6199,412.9068,69.80853,175.97437,5.545 810,344.3161,231.67499,24.937683,46.62326,5.544 810,295.58307,286.16104,23.278961,34.69998,5.537 810,75.52388,244.7873,16.834091,26.029602,5.535 810,173.29163,215.95526,30.25589,60.901093,5.479 811,401.66083,200.70064,20.826324,45.258286,14.679 811,313.4714,219.09177,21.880035,57.007935,11.328 811,303.13617,213.25757,27.489594,70.11951,10.628 811,410.17737,196.57425,19.445404,43.916473,9.967 811,269.02896,205.90082,29.911407,71.28723,9.622 811,281.3766,283.82092,22.587067,37.88501,8.578 811,44.84793,256.2183,30.767654,59.78293,8.557 811,285.68774,209.58875,29.230621,71.78226,8.333 811,0.9842491,223.01062,24.722515,71.49652,8.315 811,325.74805,219.66052,28.256165,70.25812,8.17 811,283.5468,275.46463,32.530426,57.323395,7.796 811,273.82596,280.39047,22.054077,41.12198,7.522 811,265.61038,205.76698,21.93695,49.946106,7.126 811,320.44098,228.00212,22.21054,53.510056,7.082 811,298.21436,218.85985,21.987427,56.00615,6.951 811,347.66083,231.84624,31.884583,73.5533,6.913 811,310.15756,223.2261,34.76895,84.95633,6.912 811,228.43994,222.26062,29.219513,78.6485,6.909 811,281.5501,220.14548,21.473267,52.749176,6.85 811,-11.518919,476.71378,29.540373,64.51248,6.838 811,253.8609,209.19101,28.324493,74.464325,6.81 811,212.93272,222.53452,29.641739,84.28018,6.807 811,394.68307,196.644,19.3573,43.74208,6.741 811,-3.5079145,172.52702,15.49318,40.386795,6.733 811,-5.6200066,-17.33006,17.636719,43.794487,6.692 811,418.22113,197.08516,17.973694,41.87639,6.669 811,169.20566,209.06535,19.22107,31.368576,6.58 811,335.9253,223.74063,27.774963,73.19031,6.577 811,58.626106,263.87494,32.43686,56.412537,6.492 811,289.18423,291.4367,21.55484,37.764862,6.444 811,4.380801,176.32848,14.189977,35.364212,6.421 811,-5.884651,489.0783,18.399551,42.479797,6.278 811,308.49268,209.58867,21.246216,45.18907,6.272 811,594.7753,185.38718,17.26886,43.732178,6.187 811,259.64764,269.90286,32.249268,61.695343,6.184 811,394.74362,216.01834,20.6333,38.362427,6.073 811,-11.166708,-31.909195,29.673836,74.1697,6.05 811,626.69836,487.85532,20.26587,45.93454,6.018 811,356.19247,244.15796,33.934357,79.679565,6.006 811,613.39624,452.0431,39.133667,110.983154,5.977 811,15.776082,224.3259,22.305199,35.483185,5.964 811,269.40915,285.63028,31.305023,62.357697,5.896 811,295.7079,286.4056,23.079956,35.195526,5.871 811,409.9627,215.20891,18.551636,37.845276,5.866 811,507.69745,217.64003,17.428467,37.59117,5.858 811,172.80113,214.3709,30.457932,61.87233,5.766 811,-3.4451115,154.77301,15.488922,43.676605,5.709 811,269.39517,185.29085,14.16983,29.436417,5.688 811,7.9718266,224.82175,21.426805,38.83246,5.687 811,524.2791,223.01146,26.650208,55.23146,5.66 811,288.96432,278.4066,22.426514,36.185333,5.656 811,598.38464,239.15414,29.628723,74.62488,5.604 811,140.57527,212.05746,15.415802,29.032974,5.453 811,66.97627,224.81233,19.096298,31.51506,5.409 811,344.32495,231.85916,24.440125,46.502167,5.397 811,-17.172573,-64.094536,55.929127,146.33366,5.392 812,401.37274,201.24785,21.376923,44.043243,15.81 812,313.64505,217.0488,21.98996,53.899628,11.779 812,303.1696,214.13898,27.305511,70.99097,11.684 812,317.68036,218.77663,26.66504,69.07326,9.817 812,269.63403,206.66202,28.972351,71.985535,9.628 812,409.84503,196.89055,19.379028,43.54251,8.965 812,1.068114,223.55878,24.642736,70.75745,8.774 812,281.47894,283.92856,22.46698,38.060852,8.616 812,52.334118,258.9665,31.57777,57.467926,8.605 812,283.62787,276.04303,32.920837,57.058044,8.357 812,228.32079,222.23532,29.69252,78.63336,8.327 812,286.14188,211.29147,28.624878,71.84653,7.918 812,325.8452,222.1915,36.29135,86.07718,7.79 812,298.09537,218.65288,22.147583,57.55693,7.595 812,327.37732,220.92044,23.651367,53.10727,7.381 812,37.930717,246.55888,30.528976,68.23421,7.243 812,347.5432,231.6163,31.714478,75.04318,7.238 812,213.04025,224.53581,30.198914,82.57381,7.115 812,-3.3271966,173.61577,15.2695675,39.105392,7.048 812,265.72894,206.8648,21.702576,48.475357,7.0 812,267.7569,273.19287,32.656982,58.50595,6.99 812,626.85913,488.30542,19.960327,45.511597,6.928 812,253.69315,209.50423,28.27356,73.515854,6.689 812,281.71112,220.35004,21.233063,54.097595,6.646 812,4.593562,177.79778,13.899959,33.91266,6.587 812,-11.188865,477.5061,29.432827,64.39429,6.578 812,-5.678467,-17.068237,17.653011,43.49729,6.544 812,336.72806,226.57976,24.143463,51.25383,6.473 812,-5.728181,489.1204,18.335232,42.52426,6.355 812,169.53421,210.40407,18.390411,30.167511,6.332 812,289.25598,278.41824,22.574951,36.012268,6.304 812,-11.137373,-32.001373,29.69546,74.15766,6.193 812,308.85596,237.61908,36.328003,85.94733,6.157 812,395.37762,217.35805,20.682526,37.79297,6.14 812,295.43567,285.65112,23.41687,35.935333,6.104 812,394.80838,195.91206,20.660492,44.219284,6.047 812,419.1638,208.56018,17.257233,39.020905,6.039 812,404.7609,203.79628,26.79715,57.19484,5.971 812,308.62238,211.48218,21.15033,44.005936,5.964 812,-3.3191392,155.54282,15.393362,42.488068,5.949 812,-4.341589,186.75998,16.69527,41.269653,5.936 812,627.13293,-18.240326,17.253418,46.78803,5.879 812,595.70667,188.86795,16.682373,40.468994,5.868 812,355.77054,244.55493,34.192505,80.51074,5.83 812,612.5525,456.98303,38.874023,104.23163,5.694 812,269.5743,185.54898,13.847565,29.108215,5.673 812,622.16656,-33.182285,27.483154,75.872246,5.655 812,12.314608,182.74815,13.422468,28.762848,5.622 812,294.3577,241.09941,35.08011,85.996414,5.58 812,181.4521,217.18297,30.247482,58.897934,5.543 812,-9.372776,229.31699,27.118412,74.16666,5.519 812,517.69885,232.13724,29.464111,74.47052,5.472 812,264.4354,279.20715,22.72461,42.352875,5.424 812,350.3386,235.36,24.010925,42.600693,5.4 813,313.99426,217.07233,21.958008,52.7688,11.307 813,401.6937,202.21913,20.484009,44.831543,10.794 813,302.80673,212.51257,27.830963,71.59338,10.27 813,269.01974,206.6802,29.833466,72.57504,9.694 813,44.996284,255.13025,30.187439,61.684387,8.699 813,288.21875,285.8205,23.458832,34.961914,8.617 813,410.39484,196.53741,19.06958,44.19696,8.482 813,394.69388,215.67812,20.42337,40.007126,8.36 813,325.81592,219.41756,28.240509,70.51445,7.89 813,0.67463756,226.38322,25.029861,67.941666,7.776 813,-3.2724156,173.1495,15.328918,39.312683,7.705 813,283.7534,276.39966,32.723938,56.437042,7.649 813,273.5371,280.8407,22.122437,40.022766,7.615 813,285.6135,209.4135,29.60614,72.99403,7.57 813,213.03366,223.57214,29.739716,82.37854,7.536 813,228.25233,222.84752,29.81752,77.173355,7.358 813,320.37015,228.071,22.399048,53.48076,7.158 813,310.03186,223.58386,35.142883,84.88403,7.12 813,347.29932,231.3749,32.34845,75.18733,7.024 813,3.0821931,187.12315,17.434637,39.18611,7.016 813,297.7965,218.47665,22.46579,57.417755,6.955 813,254.07672,209.51427,28.423645,73.76485,6.917 813,-5.5698824,-17.080189,17.620365,43.478592,6.888 813,336.3332,223.95422,27.703308,72.431335,6.694 813,626.6778,488.23358,20.107178,45.46881,6.661 813,264.80933,206.28291,23.13382,48.602295,6.601 813,-11.65307,477.30374,29.676443,63.777924,6.585 813,-3.734748,155.84357,15.621774,41.874893,6.573 813,58.621212,263.10498,31.90749,56.545197,6.506 813,469.41208,233.68645,28.287079,67.86568,6.499 813,-11.111052,-31.762491,29.670347,74.10433,6.377 813,279.98398,209.2372,24.318298,53.076614,6.288 813,410.10315,215.14944,18.330048,38.560333,6.202 813,259.166,270.9936,32.26706,60.555542,6.165 813,478.37054,229.53209,28.633514,63.696274,6.162 813,169.4763,210.57431,18.813354,30.934128,5.944 813,282.41122,277.56342,22.187683,36.080383,5.927 813,-5.9957886,489.41672,18.480755,42.03067,5.85 813,320.0252,215.50021,20.936218,40.346207,5.829 813,618.9482,262.72522,19.391907,44.980164,5.787 813,4.5971365,177.63893,14.396886,33.690994,5.777 813,627.27454,-18.333628,17.17804,46.33266,5.753 813,418.1416,197.86046,17.725433,40.878265,5.736 813,389.19617,218.54553,29.491821,61.89972,5.626 813,269.26663,285.73343,31.117523,61.924194,5.621 813,394.62735,196.90463,19.402527,43.134857,5.576 813,491.67343,224.33661,31.014496,74.94116,5.573 813,612.7888,457.36047,38.75421,103.883545,5.572 813,308.32004,209.09784,21.61557,44.362473,5.513 813,75.55924,245.10071,17.063667,25.693542,5.436 813,140.51373,212.95772,15.564514,29.3535,5.414 813,-17.199533,-63.457504,56.00328,146.10167,5.403 813,328.90143,217.34543,20.335297,37.44847,5.372 813,293.9876,257.25433,34.559143,78.4259,5.365 814,310.42194,217.36801,26.975037,68.17587,11.77 814,294.97263,210.79091,28.304688,73.057236,10.158 814,1.0542238,224.87341,24.428083,69.213196,9.578 814,269.36566,205.74924,29.078735,72.59213,9.28 814,281.36548,284.484,22.573029,36.842102,9.161 814,320.01782,218.61487,23.12561,55.629333,9.04 814,402.023,204.52077,19.451935,40.818207,9.038 814,52.90542,258.85992,30.466896,57.41223,8.98 814,312.7951,214.55397,21.720734,40.775345,8.905 814,273.49744,280.85538,22.137451,40.676056,8.647 814,347.58926,232.46695,31.96167,74.339935,8.148 814,326.1212,219.66693,28.117828,69.87518,8.07 814,276.5973,274.98666,32.38095,57.359528,7.51 814,254.24538,210.24258,27.59108,73.26962,7.378 814,213.13718,223.90996,29.905823,82.59651,7.148 814,-3.6453702,172.15976,15.593707,40.392242,7.055 814,37.846436,247.04996,30.490646,67.35748,7.035 814,259.5715,270.8592,32.04306,61.55728,7.026 814,469.93954,231.62317,30.76892,69.0647,6.936 814,-11.388243,476.9292,29.526966,64.53375,6.894 814,482.10678,224.33414,32.941315,77.29068,6.858 814,626.76416,488.03885,20.01831,46.03427,6.768 814,396.2682,211.89766,19.358643,38.34442,6.682 814,280.2197,208.57272,23.42511,54.769806,6.677 814,289.06958,291.4863,21.974548,37.493347,6.662 814,228.78177,222.86081,29.029297,76.55246,6.64 814,268.99017,285.2845,31.310486,61.783295,6.59 814,-5.8026214,-17.531923,17.861269,43.942657,6.575 814,-5.7979517,488.85538,18.351515,42.649628,6.528 814,336.20816,224.49414,27.641144,72.05902,6.47 814,-11.126949,-32.028774,29.768278,74.3554,6.221 814,-3.5957553,154.5391,15.684741,43.39995,6.096 814,289.77042,219.19919,22.416534,55.60141,6.065 814,410.29755,205.38443,17.968262,37.942383,6.052 814,306.1635,229.90909,20.773407,49.943848,6.001 814,63.528404,267.11703,24.623825,41.873962,5.953 814,612.6337,457.0382,38.920166,103.923706,5.94 814,15.904275,231.49002,21.356773,45.83191,5.858 814,169.72136,211.11687,18.804321,30.793427,5.858 814,265.72614,206.64178,21.574463,48.710907,5.785 814,-9.275302,230.08627,27.1077,74.387695,5.765 814,295.56583,286.16287,23.391663,34.816315,5.764 814,4.1158147,175.53769,14.36816,36.072342,5.742 814,619.1869,274.04,21.535767,53.023376,5.721 814,627.10126,-18.1534,17.2146,46.413185,5.643 814,291.0219,275.90668,32.44574,57.85846,5.586 814,-4.723067,236.3615,18.463377,48.169144,5.567 814,308.70526,238.22235,36.59723,85.0412,5.548 814,294.18774,241.86734,35.182983,85.40094,5.528 814,140.78416,213.13663,15.741028,29.62703,5.473 814,269.46017,185.52336,13.758392,29.296234,5.461 814,356.1127,244.78793,33.845947,79.96118,5.385 814,444.63586,201.31284,15.1996155,31.825882,5.376 814,-17.184685,-64.166885,55.95257,146.41806,5.363 814,74.93354,245.00531,17.536934,26.359741,5.363 815,395.7881,201.43547,19.243958,43.957077,13.779 815,313.2092,212.13922,21.730194,42.84044,13.433 815,310.61182,215.17354,26.83783,69.6985,11.795 815,411.0197,203.42169,18.031311,40.003464,11.414 815,294.85727,210.11765,28.366058,72.22119,9.946 815,320.14005,218.01845,22.968597,55.21968,9.58 815,281.17282,284.17383,23.110626,37.51187,9.267 815,269.07785,206.33282,30.227509,72.387665,9.13 815,52.72707,259.69275,30.786304,56.468994,8.803 815,272.7914,279.8194,23.397614,41.845825,8.343 815,258.96002,269.21994,33.019623,62.329315,8.266 815,1.3452923,222.53311,24.378035,72.50717,8.2 815,283.52643,276.62845,32.906036,56.04196,8.098 815,401.72116,214.64642,19.295715,38.727036,7.829 815,462.40695,236.26712,30.847992,62.222595,7.817 815,325.99225,219.66618,27.698608,70.18019,7.739 815,212.93486,225.28723,30.410248,80.923584,7.629 815,347.7147,232.35379,31.635712,74.495026,7.387 815,417.7498,198.17291,17.615387,40.733337,7.343 815,228.05441,223.6963,29.941437,76.090744,7.082 815,-3.4233382,171.89313,15.289814,40.42926,6.923 815,253.77377,209.25731,28.55072,74.12123,6.771 815,-5.8045487,-17.34451,17.862387,43.77778,6.758 815,336.21402,225.40363,27.789948,71.55188,6.723 815,36.767166,251.79652,31.21318,65.77998,6.718 815,482.12527,225.11122,32.611603,76.000595,6.69 815,-11.355051,477.58163,29.329992,63.729034,6.604 815,281.3933,219.70428,22.284271,54.355804,6.598 815,289.78702,219.33461,22.412262,54.770615,6.447 815,626.62964,488.14102,20.132751,45.81131,6.424 815,-11.260321,-31.670113,29.877958,73.775375,6.324 815,288.8225,279.38898,22.66986,35.848236,6.21 815,-5.628525,489.16495,18.107994,41.82724,6.196 815,169.50493,209.98402,18.860886,31.735596,6.194 815,265.53378,207.42256,22.268768,47.94252,6.157 815,306.10144,230.71106,20.735168,49.032227,6.051 815,140.54305,212.73323,15.649567,30.108353,5.984 815,419.40616,215.46559,16.822235,36.981155,5.971 815,269.04498,285.67935,31.668762,62.191742,5.899 815,612.6557,457.01556,38.917236,104.17151,5.719 815,337.03314,221.67966,20.85965,40.323944,5.623 815,295.40015,286.519,23.51065,35.332428,5.584 815,344.29053,232.61429,24.474243,45.30426,5.561 815,-9.48188,230.06148,27.084784,74.459,5.558 815,596.06744,191.6289,17.560608,43.699234,5.513 815,328.63397,216.2609,20.929626,39.254227,5.509 815,-4.7318335,199.17601,18.293058,48.457428,5.489 815,276.30426,265.936,33.46115,51.193756,5.467 815,4.4030056,175.70827,13.877552,35.74263,5.45 815,270.0205,195.46394,13.170898,25.737411,5.444 815,355.21454,227.32338,31.97696,58.899063,5.421 815,627.185,-18.699724,17.447693,46.52715,5.419 815,398.51556,185.20085,25.461304,63.065643,5.416 816,310.75754,217.13237,27.040924,68.39464,11.604 816,294.59988,212.0278,28.996887,71.52725,9.458 816,281.2406,284.39954,23.38269,37.250854,9.045 816,401.1356,198.28804,21.069672,47.08673,9.019 816,258.85736,268.96417,32.727997,63.65204,8.919 816,409.57706,194.44032,19.754425,46.766342,8.756 816,269.23404,206.59338,30.02356,72.38043,8.544 816,272.82095,279.96207,23.286407,42.261078,8.164 816,45.063396,256.31427,30.383472,59.65097,8.099 816,0.9642911,223.63348,24.623747,71.510315,7.956 816,325.70367,219.37547,28.247253,70.111496,7.604 816,283.40115,277.19257,33.494476,56.03589,7.519 816,347.5727,232.77614,31.637268,73.8203,7.433 816,253.63716,209.78319,28.334549,73.693405,7.144 816,-3.470651,172.50378,15.295661,39.99086,7.05 816,-11.580973,477.1096,29.568518,63.84854,7.04 816,281.3368,220.75307,22.041565,53.43828,6.711 816,-5.6541014,-17.247562,17.822197,43.94951,6.656 816,320.63828,228.06194,22.117004,53.207657,6.626 816,213.64835,225.32268,29.01236,81.25456,6.595 816,626.80963,488.00513,20.112427,45.815857,6.547 816,-5.8507824,489.1957,18.240328,42.0206,6.504 816,307.891,214.00812,21.697754,47.370087,6.45 816,289.60022,220.18521,22.521088,54.3291,6.447 816,336.09558,225.35754,27.830048,71.53784,6.437 816,462.59277,236.26442,30.45575,63.118546,6.437 816,306.2393,230.50377,20.52835,49.123825,6.361 816,228.5809,223.61263,29.380798,77.31908,6.303 816,394.5613,194.25166,20.522583,45.791565,6.271 816,269.0636,285.4183,31.642853,62.900177,6.234 816,-11.04083,-31.954775,29.792156,74.49254,6.212 816,417.41714,195.57532,18.822021,43.901108,6.175 816,482.13562,225.31274,32.130005,75.88501,6.108 816,58.60981,263.44214,32.436577,56.740265,6.105 816,394.9991,217.11494,19.873016,37.544662,5.941 816,627.1942,-18.077354,17.124023,46.744778,5.878 816,288.64035,279.022,23.17511,35.792023,5.821 816,4.3711624,176.07965,14.039913,35.089844,5.79 816,612.6301,455.57333,39.285645,106.26413,5.756 816,34.950706,195.86584,22.067326,40.809998,5.739 816,-3.2213237,154.82968,15.288302,43.85524,5.67 816,614.56635,336.39407,27.185974,82.28601,5.668 816,140.35912,212.46806,16.150574,29.988297,5.646 816,169.3341,210.31471,18.91481,31.243607,5.601 816,293.8632,258.44946,34.4469,78.39429,5.583 816,265.39282,206.85092,21.935486,48.611664,5.549 816,622.4545,-33.029583,27.05487,75.67573,5.541 816,-17.282255,-63.64249,56.140717,146.10258,5.515 816,295.29584,286.46484,23.895111,35.19641,5.484 816,356.00952,244.08379,33.86975,80.42976,5.42 816,308.09793,239.05142,37.39627,84.00186,5.42 816,354.81857,227.66522,32.38675,59.153015,5.359 816,-4.088595,187.10071,16.433167,39.65692,5.319 816,619.68805,275.43616,21.443298,51.371918,5.319 816,-73.44823,263.75937,202.24585,465.29507,5.285 816,269.67587,185.29877,13.664764,29.171082,5.236 816,276.71985,265.80814,33.07019,50.780426,5.204 816,386.49304,215.1726,19.612,39.231873,5.196 817,310.6705,216.77174,27.116302,68.02324,12.619 817,294.9606,210.18721,28.543457,72.82762,9.437 817,268.9522,207.02153,29.828033,71.88362,9.275 817,325.6212,218.64465,28.520355,70.59003,8.829 817,212.68007,224.74054,29.819092,81.17438,8.704 817,410.13168,195.32419,19.96762,43.7791,8.66 817,52.8552,259.76645,31.04316,56.66516,8.604 817,401.43658,200.36205,21.414734,44.43477,8.44 817,281.01526,284.9777,23.247772,36.83905,8.157 817,0.84735274,224.58672,25.137783,69.11272,7.987 817,462.40848,236.63445,30.563934,63.495804,7.46 817,253.96318,210.0387,28.391098,73.83588,7.26 817,259.10028,271.13077,32.441742,61.312775,7.247 817,347.45578,232.24998,32.159546,75.35713,7.139 817,-5.7249255,-17.194283,17.831734,43.483288,7.036 817,-3.5221221,173.0318,15.323583,40.147964,7.02 817,307.77225,214.0445,22.118347,47.766327,7.012 817,283.7282,277.22668,32.866333,55.89975,6.912 817,228.64746,223.45126,29.318024,76.44879,6.907 817,-11.492495,476.54144,29.566925,64.65442,6.895 817,280.2611,209.06479,23.441101,53.80075,6.892 817,626.9348,488.13773,19.911255,45.512848,6.822 817,3.0189996,189.6798,16.92,38.676865,6.767 817,36.7334,251.24417,30.964973,65.94736,6.705 817,612.9565,338.1161,28.03711,80.3367,6.616 817,320.40878,227.28654,22.439758,53.61174,6.533 817,336.1306,223.99911,27.840332,72.346466,6.51 817,-11.097029,-31.74889,29.759748,74.20031,6.399 817,266.01138,207.42226,21.48108,48.47679,6.369 817,4.45436,177.37958,14.221522,34.572906,6.366 817,481.4751,224.20212,33.187866,77.518036,6.334 817,288.60358,214.23505,22.61438,54.8136,6.307 817,306.38626,229.7792,20.393951,49.474213,6.168 817,393.9959,195.11589,20.183746,44.037903,6.148 817,-5.8390594,489.17712,18.405556,42.28485,6.083 817,-3.5048282,155.84203,15.44863,41.871155,6.01 817,619.12585,273.9767,22.19934,55.10559,5.96 817,596.26697,194.65567,16.720398,40.85266,5.94 817,612.5802,455.25024,39.53076,106.82483,5.916 817,7.342867,223.42589,20.75715,39.827896,5.834 817,169.64156,210.65796,18.610336,31.133377,5.812 817,140.9227,205.83975,15.155167,28.713654,5.64 817,269.28186,286.27878,31.022278,61.254272,5.629 817,627.0228,-18.765368,17.487183,47.64863,5.603 817,356.00876,244.07452,34.062073,81.40051,5.595 817,308.38046,236.63408,37.37854,85.58873,5.532 817,622.2839,-33.350727,27.21405,76.13777,5.53 817,-17.201292,-63.99758,55.89731,146.25687,5.422 817,344.37885,232.44025,24.318512,45.66446,5.385 817,181.4285,216.15439,30.089294,60.03772,5.371 817,337.37067,221.05367,21.00653,42.090286,5.354 817,295.4114,286.00287,23.608856,35.626617,5.327 817,66.89124,236.71281,19.384087,28.938522,5.286 818,310.5802,216.96075,26.994995,68.771484,12.745 818,295.0334,210.9071,28.401703,72.230774,10.484 818,268.88153,206.61084,29.695984,72.44754,9.224 818,213.32765,225.96951,29.174255,79.11371,8.984 818,44.955933,257.06778,30.743065,59.26831,8.658 818,281.05792,283.65778,23.028656,38.332336,8.152 818,325.77875,218.72583,28.43219,70.749756,8.144 818,284.26306,276.34723,32.0455,56.730408,7.75 818,307.65997,214.34097,22.179504,47.325836,7.654 818,410.54755,197.17749,19.326752,43.67836,7.647 818,279.60974,212.50044,24.733063,58.04637,7.597 818,347.4377,231.7231,31.842682,74.61879,7.522 818,401.77036,201.29996,20.617828,44.182495,7.485 818,258.8413,269.61594,33.09143,63.362274,7.423 818,272.86594,280.4774,23.216156,42.007385,7.199 818,254.02975,209.75952,28.567047,74.71472,7.124 818,462.7153,235.79393,30.492645,62.718033,7.032 818,-5.7247915,-17.588943,17.799782,44.239037,6.961 818,0.75817585,225.03104,24.976643,69.97983,6.907 818,613.263,338.00317,27.663757,78.940125,6.883 818,626.80566,488.0386,20.144043,45.616486,6.783 818,228.42813,224.41138,29.091095,74.63092,6.766 818,336.25577,224.59616,27.872711,72.01019,6.736 818,-11.236529,476.75366,29.2878,64.63934,6.534 818,265.68536,207.23541,22.209442,48.499634,6.52 818,289.88364,219.69267,22.01712,55.034073,6.518 818,306.1303,229.28293,20.661407,50.198883,6.492 818,-3.3575053,171.98074,15.1201935,40.435806,6.483 818,277.11636,285.77777,31.202728,59.510345,6.327 818,320.3277,227.66536,22.286621,53.628586,6.312 818,-5.7220078,488.82693,18.27688,42.503143,6.274 818,140.26399,212.60254,16.099045,29.329514,6.225 818,-11.087484,-31.75423,29.580347,73.867065,6.183 818,58.254974,263.4577,32.721092,56.674774,5.974 818,295.62656,285.48218,23.532501,36.32666,5.915 818,612.7357,455.3866,39.16925,106.53674,5.855 818,619.64813,274.5154,21.212097,54.92984,5.792 818,482.28552,224.76999,32.294556,75.39072,5.779 818,169.49678,210.35593,19.133667,31.278366,5.761 818,627.0699,-18.120388,17.257019,46.33828,5.735 818,444.42084,200.57462,16.08905,34.994263,5.689 818,395.8684,210.72972,19.38263,38.00627,5.668 818,419.2478,208.3093,17.165283,39.74672,5.611 818,410.62762,215.80356,18.27835,37.418518,5.562 818,344.13245,232.01424,25.072205,46.410233,5.469 818,622.2076,-33.704563,27.22931,75.828636,5.439 818,180.87555,216.8187,30.513977,59.89337,5.437 818,293.83136,241.73712,35.72061,86.526,5.433 818,270.0086,186.6152,12.4776,27.65718,5.432 818,-17.216661,-63.953285,56.000343,146.30649,5.393 818,29.149872,198.3288,32.81627,56.39099,5.384 818,4.9398937,196.28757,31.033384,67.965485,5.375 818,451.73718,201.57562,16.486847,37.110092,5.313 819,400.61505,200.03416,21.530396,46.35759,11.772 819,313.4961,220.18486,21.498962,55.052597,11.574 819,303.33533,214.79228,26.840332,69.25667,11.266 819,0.3888452,220.13794,25.26383,73.80951,9.832 819,409.98676,196.91911,19.809265,43.386307,9.129 819,281.0488,284.45285,23.360596,37.25885,9.103 819,325.98038,219.39307,28.098358,69.292114,9.021 819,321.17648,219.35419,22.086945,54.098145,8.909 819,212.04103,223.30328,30.851135,82.62048,8.838 819,52.760548,259.9399,30.934322,56.26657,8.524 819,285.90826,211.33856,28.940918,69.99243,8.07 819,262.39114,207.27458,27.919373,75.0793,7.781 819,258.895,269.66525,33.114258,62.421844,7.758 819,283.35715,276.60913,33.440247,56.50177,7.712 819,298.8874,215.85455,21.999023,53.672607,7.581 819,347.54205,232.51973,31.956848,73.32411,7.533 819,310.0534,221.81175,35.123444,86.432785,7.262 819,613.2744,338.16464,27.698792,80.32419,7.235 819,462.43604,236.35928,31.024109,64.46875,7.044 819,-5.6841717,-17.356926,17.8509,43.801624,6.987 819,626.6956,488.3839,20.050537,45.1026,6.836 819,37.70334,248.12254,30.437004,65.75374,6.77 819,-11.201479,477.9666,29.009302,63.180298,6.744 819,228.15385,221.97513,29.743942,78.33533,6.727 819,34.666077,195.51016,19.944862,41.88968,6.674 819,336.24078,225.10545,27.748322,70.229935,6.636 819,-3.4094667,172.08789,15.39536,40.06688,6.554 819,-3.6917164,154.7485,15.820318,43.043213,6.553 819,394.18427,196.09947,20.952332,45.375046,6.374 819,-11.083429,-31.779575,29.7121,74.03025,6.34 819,271.9387,214.26277,24.10907,57.613388,6.34 819,308.2713,212.67538,20.815948,42.8938,6.24 819,482.03647,225.31497,32.177216,77.7623,6.223 819,140.34848,213.70877,15.856216,28.692322,6.218 819,280.64783,210.4155,22.643951,51.33142,6.167 819,-5.846387,489.2034,18.297764,42.293488,6.057 819,3.7116408,183.40337,14.939655,35.550644,5.945 819,619.6621,274.37476,21.307861,52.498413,5.879 819,270.06235,185.43384,12.844421,28.702896,5.874 819,288.68063,291.59732,22.160461,37.893127,5.852 819,288.90765,278.85034,22.816925,35.79547,5.832 819,-9.3747425,227.88481,27.64569,75.71532,5.816 819,27.984163,195.32785,18.9046,39.790756,5.727 819,409.94583,215.7495,18.767273,37.941055,5.726 819,417.67865,197.84065,18.540955,40.63051,5.722 819,612.6969,455.6448,39.179016,106.16672,5.717 819,337.07065,221.67712,21.043121,41.864807,5.694 819,627.16986,-18.157413,17.163269,46.741734,5.659 819,169.92424,212.03622,18.177475,29.842957,5.653 819,395.11084,216.93495,20.314941,37.56897,5.644 819,12.357798,225.83046,29.150373,67.58714,5.613 819,269.5262,284.82462,31.254303,62.252777,5.555 819,293.62753,239.815,35.9411,87.292175,5.515 819,343.99847,233.0535,24.842194,45.07321,5.436 819,295.52518,286.54126,23.138672,34.866455,5.411 820,313.583,219.35452,21.129364,54.96878,12.597 820,303.5047,215.07947,26.952759,67.962006,11.862 820,401.69684,201.84752,20.377014,42.415115,11.522 820,1.4050794,225.18082,24.24634,69.18585,9.341 820,269.13492,206.95216,29.370056,70.77559,9.199 820,45.066994,255.52748,30.628998,60.790146,8.739 820,280.96997,283.42554,23.049072,38.907013,8.431 820,285.89117,210.08092,28.894958,71.88252,8.23 820,273.02283,279.78284,22.981812,43.16617,8.122 820,259.63806,269.61682,32.402832,63.741486,8.057 820,409.71024,203.38817,18.802795,38.900787,7.981 820,612.89465,337.8328,27.887695,80.12933,7.65 820,325.90466,218.12119,28.6846,71.53662,7.613 820,283.7978,276.46887,32.485992,56.943665,7.608 820,279.86942,212.90051,24.54306,56.983093,7.429 820,347.46033,232.12277,32.102356,74.61557,7.422 820,-5.676878,-17.05212,17.674488,43.57556,7.193 820,297.7747,219.24731,22.305573,55.80249,7.082 820,-3.35677,173.31703,15.112087,39.566864,7.036 820,-11.265884,477.73123,29.121769,63.35446,6.932 820,395.60806,197.58032,18.752777,41.15233,6.844 820,213.19888,224.48256,29.543427,82.31578,6.834 820,-11.026516,-31.617231,29.555813,74.09864,6.62 820,336.20364,224.28491,27.716187,72.32062,6.548 820,56.614933,264.6663,23.968075,45.69458,6.497 820,253.53667,209.94165,29.156784,72.93851,6.465 820,462.68402,236.77716,30.852325,63.598267,6.409 820,626.76154,488.3709,20.135132,45.30304,6.404 820,269.48566,284.83908,31.126923,62.732178,6.387 820,2.814573,189.31805,16.744482,38.997223,6.381 820,-5.725198,489.23077,18.174156,41.99652,6.202 820,294.512,259.05835,33.578186,78.24997,6.143 820,-3.4778762,187.35286,16.000217,40.52858,6.109 820,140.23082,212.34244,16.410355,29.853683,6.059 820,228.49167,226.41125,28.89737,79.217224,6.026 820,12.624364,227.98401,28.471329,66.840454,6.01 820,309.97888,225.29048,35.41577,85.44603,6.0 820,67.02495,238.26077,18.76046,27.663788,5.996 820,320.9242,228.63258,21.804443,52.8882,5.925 820,481.82153,225.4444,32.803345,77.69861,5.847 820,627.0469,-18.495583,17.431885,47.479885,5.842 820,-9.276875,230.73776,26.899166,73.02954,5.84 820,169.53706,210.859,18.925293,30.876282,5.772 820,-4.5889482,236.30682,18.12461,48.170288,5.74 820,612.61206,455.79706,39.582275,106.12836,5.696 820,295.84427,285.74374,23.021942,35.69342,5.694 820,-3.7130413,155.04816,15.442623,43.587646,5.69 820,58.737495,224.29974,19.687614,30.94693,5.652 820,4.6200905,177.03789,13.762913,35.033432,5.635 820,622.2027,-33.036705,27.296509,76.66108,5.633 820,619.6674,274.53317,21.438904,53.7081,5.627 820,289.09073,278.39264,22.4422,36.336945,5.488 820,395.65808,219.57938,19.463837,35.050156,5.47 820,405.20367,205.4562,26.89685,56.168243,5.469 820,-17.272,-63.404617,55.97807,145.95525,5.384 821,313.52505,220.0715,21.135437,54.914917,11.461 821,320.82898,218.37134,22.160889,55.106262,9.425 821,0.69061875,222.72668,24.98622,71.335144,9.299 821,303.25708,214.52893,26.873993,69.178314,9.14 821,281.1542,283.90543,22.864532,38.020905,8.942 821,401.52826,200.4691,20.550232,44.349655,8.769 821,269.43988,206.83943,28.68103,70.822525,8.718 821,45.03299,255.34341,30.486984,60.926086,8.441 821,335.094,224.01503,28.386414,69.35921,7.804 821,-3.2079399,172.80089,14.864185,38.80446,7.68 821,267.451,272.63684,33.1687,59.192505,7.616 821,286.0724,210.01465,28.57196,72.11218,7.496 821,461.97583,237.51543,30.90628,61.36525,7.487 821,283.36694,276.68805,32.620117,56.75769,7.475 821,410.68893,195.24814,18.881805,44.062088,7.378 821,280.05017,213.21106,24.036774,57.13031,7.328 821,394.50537,195.19783,19.788635,43.835373,7.297 821,613.1688,339.46478,27.606384,78.38489,7.27 821,347.8645,233.2132,31.635468,73.6319,7.237 821,326.5836,218.80865,25.793396,68.5004,7.119 821,-5.730356,-17.33801,17.833302,43.88739,6.971 821,-11.544195,477.47852,29.618872,63.452454,6.947 821,626.8357,488.53918,19.878418,44.96234,6.927 821,213.15714,225.89235,30.118683,80.473465,6.812 821,253.81146,208.67468,28.697296,73.66229,6.585 821,4.9125013,177.27466,13.598168,32.778275,6.445 821,-11.012043,-31.756577,29.594395,73.97839,6.371 821,169.73677,211.32275,18.756409,30.850067,6.292 821,228.07858,225.75725,29.383087,79.42723,6.26 821,-5.775675,489.1362,18.244144,42.08017,6.184 821,289.0078,291.3958,21.80423,38.199585,6.154 821,140.96388,213.15263,15.10347,28.63742,6.151 821,294.1617,258.87634,34.09207,77.74222,6.13 821,298.04684,220.25768,21.74997,54.46376,6.122 821,-3.3973804,154.715,15.459255,43.298096,6.042 821,-3.964334,188.32433,16.054724,39.238815,6.037 821,387.5374,194.87486,18.37613,40.88211,5.805 821,395.61035,219.47891,19.16336,35.05423,5.804 821,250.7374,268.3114,33.331665,63.127167,5.718 821,58.119003,263.47318,32.589806,55.714355,5.703 821,627.24786,-18.50615,17.119751,47.291332,5.636 821,612.7146,455.4257,39.277832,106.780304,5.611 821,282.0094,302.43866,21.535278,42.96649,5.586 821,596.6164,190.07071,15.905457,38.899597,5.564 821,295.78076,285.8272,23.058655,35.681885,5.548 821,482.0172,224.929,32.436523,75.99507,5.526 821,-9.203355,230.32399,27.111351,73.76094,5.52 821,266.35266,223.06412,20.863342,52.573517,5.52 821,181.47812,215.36958,29.8078,59.534897,5.499 821,12.351651,227.18347,29.390598,67.08093,5.487 821,-4.0328684,223.19289,17.462893,47.81926,5.478 821,74.77618,244.73206,17.593452,26.410645,5.459 821,344.0778,232.93886,24.98108,45.885483,5.412 821,-17.273277,-63.310135,56.11302,145.50742,5.41 821,271.56543,204.66057,11.356232,21.702225,5.394 821,355.65265,243.85297,34.401,79.92334,5.385 821,264.1612,277.73627,23.381256,43.72937,5.376 821,309.67078,225.89099,35.67984,84.43793,5.347 821,270.26624,186.72707,12.643311,27.872314,5.283 821,622.3672,-33.332455,27.34729,76.52668,5.279 822,401.41992,199.5482,21.049103,45.00992,12.752 822,313.29462,219.03969,21.697754,55.94487,10.902 822,302.90997,214.35347,27.170288,68.86723,10.338 822,268.9967,205.35843,29.546265,72.41922,10.118 822,0.8933091,224.6523,24.807703,70.54851,9.54 822,280.7387,283.63522,23.252625,38.40338,9.125 822,45.001312,255.98433,30.98256,60.63298,8.89 822,410.0592,195.95865,19.069763,43.33966,8.637 822,326.64798,220.72813,27.627563,69.148026,8.297 822,259.3427,269.20853,33.065918,63.355164,8.105 822,285.67743,209.1463,29.454346,72.583496,7.826 822,212.42676,224.61597,29.902115,83.30298,7.708 822,394.79465,195.0167,20.095856,44.008316,7.194 822,462.49417,236.02628,30.651764,64.13623,7.064 822,613.5224,338.0037,27.38507,78.71735,7.039 822,336.3342,225.5187,27.392456,70.48038,6.947 822,283.35483,276.27597,32.719147,56.89453,6.894 822,626.6931,487.864,20.277954,45.978027,6.765 822,-3.4403472,172.2281,15.487345,40.410446,6.712 822,309.67886,222.81685,35.64554,85.48741,6.657 822,58.613976,263.0322,32.10002,57.392914,6.652 822,279.83252,209.44368,23.33368,52.899094,6.648 822,347.45364,233.986,31.726227,72.839355,6.637 822,-5.739713,-17.773685,17.71275,44.528503,6.559 822,-11.434113,477.31125,29.457943,64.33798,6.503 822,253.94011,209.58142,28.418411,73.34555,6.412 822,140.24294,205.09,15.960434,28.654602,6.352 822,228.38988,224.12306,29.798325,75.35298,6.297 822,481.76212,224.81792,32.733063,77.36525,6.241 822,612.5818,455.35803,39.65808,106.28607,6.132 822,-3.3618557,154.99861,15.350097,42.75963,6.046 822,297.9392,219.44765,22.104431,55.991776,6.021 822,395.58118,218.595,19.930298,35.96724,6.007 822,-5.9158287,489.35294,18.432964,42.06906,5.996 822,173.2367,214.91124,30.926147,61.893936,5.957 822,-11.05369,-31.875046,29.415863,74.49392,5.923 822,320.8353,227.189,21.540375,53.59796,5.807 822,269.36163,284.7576,31.424469,62.66626,5.754 822,270.214,186.88547,12.926117,27.65535,5.699 822,4.3050313,175.4787,14.316593,36.13774,5.685 822,7.5977564,223.5962,21.389381,38.87822,5.683 822,627.0586,-18.989979,17.51239,48.338562,5.672 822,-9.468157,230.76534,27.27767,73.75871,5.612 822,288.674,291.52332,22.14389,37.745117,5.601 822,622.2012,-33.378708,27.36316,77.14004,5.591 822,266.53717,223.45712,20.975769,52.547394,5.547 822,276.85724,265.0128,32.01001,52.292603,5.542 822,417.97684,197.18188,17.792358,40.88333,5.521 822,295.81778,285.9139,23.088226,35.384277,5.502 822,-17.304379,-63.841755,56.001247,146.3245,5.483 822,273.25635,275.20346,23.407654,41.203827,5.483 822,320.74152,216.77864,19.48761,38.47841,5.417 822,308.3737,212.64821,20.996735,41.48918,5.339 822,-4.7253313,236.84819,18.38411,48.21785,5.307 822,619.6778,275.3545,21.359863,52.357483,5.278 823,401.26776,199.47519,20.8779,45.34825,11.398 823,313.47644,219.4736,21.077545,55.420227,10.911 823,303.27386,215.01697,26.546997,67.6947,10.751 823,269.49103,208.34436,28.525116,69.918396,8.986 823,410.33722,196.16454,19.367218,44.302322,8.86 823,45.267277,256.01193,30.377377,60.41214,8.699 823,281.31906,284.42932,22.608215,36.86685,8.569 823,273.24902,280.38574,22.518066,41.397095,7.939 823,279.7012,212.96533,24.549255,57.370605,7.55 823,276.53772,274.334,32.484436,58.023804,7.517 823,259.25638,269.443,32.51306,62.48648,7.4 823,396.36002,208.32343,18.819763,39.509018,7.353 823,1.0675764,224.81488,24.744762,69.3786,7.275 823,335.67444,224.90706,28.452728,68.34389,7.23 823,286.2563,209.25386,28.241547,72.167984,7.225 823,347.73633,233.5085,32.077545,73.599045,7.027 823,462.60504,235.66238,30.18274,64.243835,6.881 823,-11.442251,477.35928,29.354097,64.09488,6.838 823,-3.254469,173.29819,14.839779,39.03665,6.735 823,-5.6915655,-17.464575,17.73222,43.955135,6.71 823,213.27132,226.72736,29.706314,74.311035,6.645 823,140.6944,206.43755,15.125656,28.283218,6.562 823,626.7719,488.19003,20.060608,45.695282,6.533 823,298.3264,218.69868,21.436768,56.577805,6.487 823,289.4008,292.1181,21.66513,36.42032,6.436 823,326.3341,221.047,27.609985,68.620056,6.403 823,613.14856,337.83548,27.71112,79.16522,6.256 823,-11.137036,-31.880468,29.625847,73.73039,6.244 823,235.29001,222.77951,29.601624,73.96716,6.236 823,-3.2798028,155.77713,15.261635,42.56227,6.23 823,309.25226,212.79265,19.651672,41.33072,6.114 823,56.413017,263.96402,24.518044,46.34201,6.075 823,-5.932346,489.36633,18.353334,41.914368,6.04 823,148.55653,207.06325,15.216019,26.91043,6.034 823,417.72076,197.15427,18.55603,41.948074,5.908 823,355.81958,243.78824,33.962524,80.97949,5.782 823,484.94012,221.14734,37.961853,72.87018,5.73 823,627.09766,-17.84718,17.132202,46.684917,5.723 823,391.60925,179.55838,24.785583,66.68863,5.713 823,5.1161532,177.08151,13.43124,34.30092,5.712 823,269.28668,285.35504,31.171326,62.709534,5.703 823,612.59125,455.68124,39.47345,105.80765,5.678 823,309.9287,224.43921,35.042267,85.65918,5.666 823,296.17734,286.85968,22.765137,34.197266,5.595 823,291.4262,276.22687,31.961273,57.986816,5.567 823,320.91443,228.78745,21.417236,52.09778,5.494 823,-17.182384,-64.11654,55.837605,146.73419,5.463 823,622.21173,-33.527172,27.115662,76.50845,5.461 823,289.10056,279.33914,22.312775,35.164215,5.409 823,278.03525,202.66339,11.924622,22.73352,5.4 823,181.88034,215.16496,29.07138,59.889786,5.358 823,253.95139,209.63843,28.706635,73.798645,5.327 823,-4.4682155,186.83376,16.758358,40.518097,5.3 823,266.869,223.93446,20.70987,53.045425,5.275 823,-73.3242,264.22638,201.92378,464.58026,5.222 823,405.7323,203.43913,26.70813,57.97505,5.219 823,387.5605,194.97598,18.275879,42.573578,5.203 823,451.98254,202.47504,16.057129,33.942734,5.167 823,12.059031,187.71329,14.525599,31.93782,5.154 823,40.008232,202.4438,23.206776,39.799713,5.098 823,476.3233,227.84334,29.650818,65.51845,5.092 824,313.08484,214.4169,20.27713,41.235184,11.748 824,303.03766,213.66121,28.072418,69.6743,11.302 824,400.8395,199.95308,21.175415,45.8609,8.955 824,281.23407,283.98215,22.666718,37.527008,8.669 824,259.49026,269.12515,32.615387,62.98935,8.528 824,269.83258,207.40692,28.24237,72.8071,8.47 824,44.91343,256.22647,30.269608,59.95938,8.356 824,297.96985,212.7988,22.341675,58.03238,7.951 824,283.93152,276.90396,32.280273,55.659454,7.806 824,273.2519,279.88535,22.530304,41.501343,7.724 824,612.8986,338.63013,28.059082,79.10846,7.642 824,286.2796,208.76543,28.552582,72.556625,7.619 824,313.61548,228.10625,21.048523,52.086014,7.477 824,0.9153116,226.68776,25.029446,69.43486,7.304 824,319.72113,222.11243,23.19986,54.79471,7.089 824,394.62408,195.27122,20.269135,45.147903,7.028 824,626.86365,488.71277,19.898315,44.849426,6.997 824,347.69818,233.60489,31.685913,71.11896,6.983 824,-5.7055893,-17.431019,17.797943,44.09417,6.686 824,279.7481,211.7669,24.53888,59.056824,6.676 824,-11.514465,477.18304,29.263794,63.85663,6.633 824,325.79666,221.16302,28.578705,67.72589,6.63 824,335.4853,225.3015,29.000946,67.3972,6.601 824,451.2642,200.72862,17.94629,38.510147,6.584 824,212.05414,223.7164,31.551422,85.43805,6.516 824,410.26483,195.69293,19.18628,44.565002,6.422 824,309.67584,223.90118,35.580444,85.83423,6.284 824,-3.8540778,171.88976,15.945103,40.48964,6.153 824,470.1672,231.39511,30.570648,68.29062,6.15 824,-11.086557,-32.111713,29.647598,74.33371,6.148 824,295.8937,286.3571,23.10791,34.74054,5.976 824,-5.8847504,489.32968,18.266003,42.317596,5.955 824,235.08505,221.85526,30.212189,75.14737,5.949 824,56.42582,264.8761,24.39405,44.814972,5.82 824,395.71783,217.97401,19.854614,36.348053,5.774 824,612.41327,455.6741,39.5813,106.20816,5.729 824,269.2258,284.56207,31.640564,62.960297,5.719 824,627.20325,-18.365835,17.263184,47.54772,5.632 824,294.36627,259.43945,33.881165,78.26547,5.539 824,-3.714373,153.91747,15.816467,44.14087,5.534 824,67.13657,238.66022,18.61837,27.269714,5.503 824,595.3375,186.80669,16.809631,41.382797,5.453 824,-17.280985,-63.802277,55.963203,146.1767,5.447 824,289.30023,279.21292,22.119629,35.23636,5.393 824,75.276726,245.98547,16.982872,25.621643,5.348 824,405.15814,203.55228,27.003784,58.214905,5.281 824,2.9968386,183.21149,16.476597,36.335037,5.268 824,-73.47792,263.80078,202.2109,464.96362,5.251 824,482.00223,223.78893,32.661835,76.885056,5.235 824,355.55923,243.51291,34.365753,81.15564,5.235 824,-9.604742,231.03918,27.58108,73.86615,5.22 824,162.40189,209.73215,18.276749,31.601212,5.208 824,622.1262,-33.519936,27.440735,77.519135,5.196 824,618.7112,489.74097,19.526611,42.52771,5.188 824,397.43228,170.19275,27.282349,70.68262,5.178 824,619.088,281.5043,21.484192,53.88614,5.147 824,30.685017,244.9767,29.903065,70.296646,5.142 824,182.04108,213.04811,29.228226,61.118454,5.1 824,444.0099,199.9709,17.332733,36.275223,5.087 824,459.94778,210.14651,17.247406,42.18544,5.076 825,313.0104,219.5159,22.551422,55.84555,10.955 825,401.65524,203.08728,20.590302,41.925583,9.964 825,294.86768,208.623,27.767334,74.929184,9.89 825,44.960117,255.2046,31.129223,62.098984,8.067 825,269.55463,207.10324,28.481995,72.28775,8.043 825,288.47617,287.03317,22.901093,33.69342,7.808 825,273.54648,282.17078,22.1828,39.331818,7.621 825,-5.70714,-17.503967,17.73587,43.72793,7.607 825,0.8287144,226.7759,24.540806,68.696976,7.46 825,613.09143,337.0782,27.86737,80.81369,7.331 825,410.6297,203.54024,18.730225,39.84166,7.25 825,396.53488,210.7876,18.940552,37.61592,7.175 825,-11.707355,477.5374,30.01693,63.559204,7.018 825,284.2809,277.35538,32.047302,55.913147,6.981 825,463.33563,232.37772,29.596344,64.51434,6.885 825,220.76297,228.21088,29.477371,79.65167,6.767 825,280.22897,211.26503,24.433197,59.972702,6.75 825,626.8223,487.6373,20.192932,46.189545,6.693 825,235.0812,221.36414,29.6568,75.075806,6.691 825,259.27347,270.7884,32.136047,62.54001,6.614 825,-11.157787,-31.574305,29.608273,73.68527,6.556 825,-3.5684743,155.10481,15.663937,42.87294,6.362 825,348.2222,233.29926,30.509338,70.559265,6.345 825,40.58794,202.04361,22.300304,36.164246,6.248 825,-5.9010067,489.2972,18.425888,41.81436,6.19 825,393.3639,188.3751,20.374786,46.688538,6.167 825,56.595108,270.29947,23.742401,43.972626,6.167 825,475.6861,227.22545,32.048462,69.69884,6.164 825,325.7763,218.57704,27.87967,70.56053,6.089 825,269.37756,287.04007,30.819885,60.77658,6.063 825,281.74597,289.96405,22.233124,38.599762,6.051 825,395.07324,225.31906,21.110962,36.845856,5.919 825,612.6223,455.04172,39.501953,106.89969,5.81 825,305.79092,228.33173,20.995758,49.224792,5.781 825,-4.0778513,178.86566,16.408607,40.894287,5.758 825,627.19586,-18.301397,17.23413,47.405884,5.745 825,290.11914,217.81543,22.486267,57.523743,5.735 825,336.61942,225.35135,27.035309,71.2103,5.667 825,4.455227,191.71661,30.662441,73.47269,5.666 825,619.7281,275.3733,20.871033,51.558228,5.537 825,419.04086,209.2351,17.21112,39.516556,5.488 825,309.28168,223.47197,36.609924,87.93819,5.461 825,-17.253942,-63.9822,55.95655,146.23877,5.393 825,387.93433,202.00366,16.89978,39.10411,5.373 825,-8.433086,365.32474,29.857273,76.00806,5.359 825,3.7795818,166.94713,14.94328,38.07657,5.327 825,622.204,-33.177307,27.204224,76.84886,5.284 825,-73.62313,263.54407,202.43231,465.43457,5.242 825,452.0797,202.92334,16.035156,34.52208,5.218 825,-9.437171,230.28932,27.306828,73.5887,5.211 825,356.08963,245.1494,34.530457,80.808426,5.138 825,294.10846,260.93088,34.356842,77.585785,5.13 825,296.97836,292.19913,21.66681,37.030365,5.099 825,585.5459,336.23102,19.576294,29.648682,5.063 825,3.3829105,181.71638,16.217638,38.757416,5.053 825,307.67282,208.66045,22.313019,47.428818,5.043 825,277.90634,194.92981,12.14917,27.009323,5.027 825,-4.847875,236.42213,18.487936,48.51039,5.026 825,253.5836,206.84517,27.245285,76.759964,5.021 825,379.46866,205.31947,15.802032,35.18251,5.01 825,271.096,195.83519,11.336182,24.582687,5.002 826,312.79352,214.0635,21.036987,54.986267,12.591 826,269.16516,205.02502,29.403809,75.731476,9.999 826,44.87664,256.4137,31.164925,62.54825,9.863 826,295.9638,208.18277,26.476318,75.39145,9.542 826,401.2415,201.59245,20.454193,44.45613,9.215 826,0.6976521,221.23894,24.656862,73.18819,8.086 826,281.60254,284.7158,22.164276,37.424072,7.812 826,289.02307,210.43384,23.06012,60.780273,7.369 826,259.49786,269.50943,32.19803,63.61725,7.189 826,284.3354,277.38498,31.908905,56.40274,7.082 826,395.75314,209.10297,19.50174,40.20868,7.052 826,316.6061,214.66464,26.754791,72.635956,7.0 826,273.4173,280.58017,22.333923,41.335266,6.993 826,410.674,196.47284,18.6987,43.71173,6.729 826,-5.6958175,-17.55357,17.735708,44.052883,6.703 826,348.17517,227.39702,31.221954,76.75899,6.657 826,626.979,488.61954,19.82129,44.915802,6.636 826,-11.544897,476.45013,29.543673,64.52551,6.607 826,56.25437,264.12552,24.522621,47.358673,6.447 826,244.48854,214.80234,29.158432,74.619995,6.375 826,289.23682,292.18848,21.75824,37.08972,6.342 826,-3.5501173,172.68597,15.273535,39.231354,6.316 826,269.38757,286.28116,31.016968,60.837006,6.26 826,-11.128459,-31.813229,29.750416,73.943436,6.175 826,335.43036,222.1361,27.856842,73.22127,6.13 826,-3.786306,154.76447,15.587551,43.257706,6.096 826,390.73715,177.98254,25.690308,68.426025,5.997 826,4.2458344,176.86742,14.300079,33.628525,5.952 826,-5.974479,488.89478,18.531164,42.79242,5.902 826,612.5731,455.22382,39.302734,106.89911,5.896 826,306.0639,226.88573,20.355804,50.160904,5.828 826,418.33005,197.4862,18.384857,40.969055,5.604 826,281.71268,218.94041,21.78183,55.95439,5.521 826,-4.958482,228.68176,19.116545,49.105988,5.517 826,-17.24834,-63.672176,56.022434,146.32626,5.505 826,296.08807,286.7803,22.75238,34.81418,5.48 826,627.19196,-18.011997,17.287415,46.31315,5.419 826,444.0906,200.11282,16.832977,34.569702,5.286 826,230.24167,218.78746,27.307495,71.99339,5.278 826,555.2352,239.01968,17.439148,36.265747,5.258 826,-73.61174,263.85852,202.29443,464.7871,5.23 826,613.26514,337.2525,28.570557,79.69153,5.193 826,622.20856,-33.546593,27.484558,76.02163,5.095 826,470.2487,226.33954,28.203888,65.25159,5.01 826,281.6202,302.63806,21.774078,41.40262,5.003 826,460.6855,211.65388,16.99289,40.268784,4.975 826,5.1481333,208.10529,35.489037,88.412445,4.974 826,618.0964,288.9822,21.059143,56.720306,4.966 826,485.11826,218.79,37.27426,76.64281,4.958 826,-21.597466,401.97476,78.861,176.08762,4.956 826,220.30424,224.3457,30.897003,84.56592,4.953 826,257.86697,220.51703,21.029694,58.52588,4.945 826,74.8076,244.09819,18.12323,27.273148,4.933 826,329.26175,218.2134,21.886353,53.703598,4.927 826,451.19147,201.46558,17.029724,35.874527,4.913 826,262.78745,218.40701,26.868439,72.77963,4.903 826,-40.48181,363.35516,111.04317,278.32886,4.899 826,289.54984,278.81628,21.67743,35.76602,4.876 827,303.94644,210.53773,25.623291,69.9323,10.472 827,45.025444,255.68019,30.291344,62.20903,9.496 827,401.29187,193.91344,20.696686,49.874664,8.37 827,145.59248,205.13483,21.972153,44.86592,8.226 827,327.3462,217.42955,25.612549,71.371414,7.908 827,29.17194,235.24332,29.87804,69.693085,7.748 827,-3.7574835,172.00319,15.677626,40.143173,7.567 827,456.05252,225.79791,27.12912,63.74005,7.55 827,311.60843,213.35031,20.58725,42.36943,7.303 827,244.88217,214.46123,28.764618,74.73601,7.265 827,81.496346,199.19002,20.522026,42.48442,7.222 827,348.13263,226.75587,31.144226,80.62523,7.175 827,-5.681616,-17.52816,17.706104,44.168655,6.974 827,570.4702,244.65002,20.016602,39.061523,6.922 827,-11.669063,477.12213,29.657986,63.929993,6.669 827,335.639,222.67935,27.96997,73.447205,6.61 827,626.7717,488.4219,20.063965,45.270477,6.551 827,289.05777,283.6778,22.636932,37.99231,6.549 827,410.2914,194.4349,19.286469,46.666565,6.436 827,-3.8097916,154.53656,15.884175,43.443466,6.423 827,5.322551,220.30476,28.573147,72.52788,6.4 827,-4.847439,199.19495,17.500744,48.094955,6.347 827,287.84,206.82793,26.536438,72.933426,6.314 827,-11.082949,-31.900503,29.650963,74.35374,6.293 827,298.5306,216.18117,20.996796,58.77513,6.272 827,222.07025,224.10748,29.87204,79.721924,6.137 827,317.33722,215.90623,26.483582,68.40596,6.13 827,492.97192,234.11536,27.817627,61.673523,6.091 827,56.81846,270.45288,22.992996,43.541412,6.019 827,257.92578,262.55005,32.776215,62.93039,5.806 827,612.6588,454.88812,39.2782,107.0943,5.739 827,627.11285,-18.425505,17.405823,47.08451,5.732 827,-6.0662913,489.51727,18.503529,42.094604,5.706 827,281.02563,287.37454,23.1763,42.714844,5.704 827,280.78336,210.61964,23.652802,59.727585,5.687 827,25.42449,237.25568,21.56563,48.5495,5.653 827,395.27493,207.73875,19.262573,40.85591,5.648 827,-17.288157,-64.02716,55.997856,146.37613,5.566 827,-5.2660203,236.14319,18.803299,48.755066,5.468 827,389.7203,176.93126,27.176727,72.99681,5.464 827,4.464522,175.77531,14.430492,34.6252,5.429 827,622.4487,-33.284798,27.161377,75.87754,5.351 827,-73.331764,263.09882,202.05121,466.09967,5.349 827,585.8739,247.21745,17.660095,33.91359,5.32 827,314.03787,225.82297,20.152435,52.341187,5.288 827,3.7994027,235.63669,38.987385,99.50964,5.19 827,294.52216,221.25449,36.65921,90.95288,5.181 827,308.2066,234.40265,38.444397,89.43225,5.15 827,292.0715,267.68845,32.327423,58.751587,5.124 827,142.18736,213.95995,29.063614,61.05818,5.058 827,270.51782,186.16776,12.397156,27.04538,5.042 827,11.985781,186.88931,15.185129,32.308716,5.032 827,236.18211,225.83513,28.89711,79.06004,5.029 827,256.1661,215.70132,22.581268,59.139435,5.013 827,-40.589504,362.70386,111.32478,279.02808,4.978 827,443.88525,198.93143,17.05899,37.088776,4.971 827,-21.536507,401.86566,78.72221,176.28528,4.949 827,268.34314,278.84946,31.013214,63.44101,4.946 827,577.7809,252.8419,19.975769,37.085648,4.935 827,40.143314,247.97183,23.101997,46.107788,4.927 827,16.098454,232.97006,21.72786,52.74585,4.893 827,602.49646,-56.967964,54.04773,141.35062,4.867 827,618.55493,490.06427,19.902222,42.324585,4.855 828,550.7343,218.89955,21.164917,45.23625,42.697 828,35.28393,231.87231,33.584003,75.96094,18.647 828,44.630035,251.09406,30.215836,66.815674,9.444 828,537.9912,216.4328,27.095581,65.28934,9.294 828,228.45473,225.55399,30.202072,75.87219,9.079 828,63.165016,265.74762,24.850845,44.161804,7.333 828,296.5172,204.65816,25.884552,74.97188,7.134 828,-3.3966732,172.49323,14.998336,39.12625,7.131 828,310.20184,211.80363,24.795288,72.06615,7.1 828,-5.5109305,-17.240566,17.546251,43.401505,6.974 828,626.79254,488.5195,20.160706,45.06491,6.961 828,548.91174,213.94183,32.651306,73.50003,6.896 828,328.56967,222.7929,25.267609,69.365616,6.885 828,-3.758979,155.28876,15.754476,41.987823,6.855 828,245.15396,219.51508,28.10321,72.7337,6.764 828,296.00842,280.32526,22.36496,41.81848,6.679 828,288.4969,275.19626,23.71103,40.153168,6.642 828,444.83234,223.28336,29.616852,67.88968,6.59 828,611.38983,341.96155,27.828796,79.18143,6.542 828,20.19984,233.95087,40.41138,90.67682,6.54 828,-11.664345,478.1006,29.808512,62.76184,6.463 828,45.829178,239.67523,25.174149,46.508545,6.272 828,82.74536,204.29434,20.027435,40.634003,6.252 828,335.61823,227.77155,27.899353,74.385925,6.15 828,-5.903001,489.6147,18.281475,41.324768,6.128 828,48.740303,230.35292,38.742294,80.937454,6.127 828,257.3179,224.35396,20.78244,54.11754,6.125 828,-11.007645,-32.06855,29.279125,74.16412,5.987 828,3.982079,183.72318,14.560812,34.935333,5.955 828,369.90634,223.16458,19.297516,38.14209,5.915 828,627.19006,-18.262703,17.11853,47.574036,5.856 828,278.4195,279.72427,31.06662,58.60913,5.853 828,-4.6684074,215.3122,16.55804,40.6933,5.846 828,355.39636,234.5759,29.515594,74.38226,5.833 828,267.3309,264.60104,31.736969,59.254425,5.825 828,74.377266,231.47781,21.084473,32.951904,5.798 828,-17.2005,-63.6948,56.039574,146.98674,5.755 828,-1.6664028,218.70355,27.225952,69.65143,5.751 828,622.3552,-33.86297,27.135254,77.4174,5.743 828,65.43275,218.8979,21.484962,41.097855,5.736 828,74.905014,204.97441,19.794174,39.521133,5.71 828,318.2839,218.39526,26.399963,68.6087,5.666 828,612.469,455.64935,39.57965,106.231995,5.659 828,37.42836,206.36035,28.527618,60.044495,5.638 828,546.7469,210.89746,20.33728,39.745865,5.612 828,66.502975,241.52008,20.725647,31.713928,5.554 828,-4.143205,187.66187,15.942207,39.26027,5.537 828,3.592354,167.4702,15.421621,37.67177,5.532 828,3.9630294,234.8161,39.48356,102.698,5.495 828,558.5857,220.67966,20.327026,42.01004,5.472 828,279.0832,204.7208,26.0719,76.875336,5.413 828,55.02033,250.55396,23.759518,42.724243,5.393 828,97.257034,208.30576,20.450806,40.43486,5.375 828,80.82071,218.6322,20.884377,38.73535,5.368 828,-73.17526,263.71143,201.97682,465.99182,5.312 828,89.89769,208.82764,19.504662,41.45822,5.31 829,487.77197,216.1842,22.02063,45.09857,23.618 829,45.053654,250.32695,31.871784,66.19243,18.364 829,296.5803,204.02397,25.364838,73.235916,12.731 829,305.44385,212.8855,20.998138,55.054077,11.927 829,492.95172,213.7919,27.34259,67.04208,10.128 829,362.48523,220.94368,19.194427,37.718674,8.678 829,290.8656,214.35439,19.442444,56.248337,8.296 829,423.6887,215.88452,25.939148,64.53735,8.034 829,283.46136,218.21173,18.63971,51.948425,7.677 829,435.7055,227.61128,28.558044,70.71709,7.305 829,-5.4351864,-16.87877,17.536165,43.242504,6.908 829,626.77423,487.941,20.09314,45.703033,6.891 829,-3.313815,173.165,15.511025,40.572174,6.726 829,504.99738,224.1634,21.038025,44.424576,6.611 829,-11.563827,476.89694,29.543705,64.59439,6.515 829,276.66495,232.78343,16.57254,42.147385,6.475 829,57.51407,240.67473,32.987686,58.55211,6.456 829,299.02936,226.53105,18.280396,44.122696,6.453 829,520.61053,235.39171,20.873352,42.906967,6.423 829,30.37632,243.969,31.462803,71.01654,6.376 829,104.81182,207.57947,21.15229,41.403183,6.303 829,513.2864,226.86958,19.978333,44.702164,6.268 829,612.52985,455.85376,39.47296,105.805115,6.062 829,627.11096,-18.03757,17.524597,46.580193,6.041 829,483.45444,212.20097,19.90445,36.009903,5.989 829,-5.9873247,489.10123,18.342468,41.92563,5.963 829,-12.375425,-40.69358,41.022873,101.52734,5.941 829,-4.1738377,158.59874,15.972826,40.551117,5.919 829,57.379326,266.15546,32.90213,55.84851,5.768 829,319.1835,215.90666,25.514832,66.97383,5.763 829,465.74936,235.7834,18.159302,41.22151,5.7 829,2.456323,189.78035,16.586937,38.73848,5.549 829,40.71478,266.41342,24.304203,55.996857,5.541 829,-4.6018643,198.48569,17.372652,43.605774,5.501 829,510.5339,234.62677,29.73819,66.098755,5.445 829,-3.3898258,228.48912,29.2295,66.02751,5.436 829,3.7351184,177.76186,14.556889,35.348557,5.311 829,289.94385,264.83243,21.218597,41.186584,5.293 829,622.32434,-33.588585,27.20697,76.53544,5.268 829,-73.03269,264.79865,201.75189,464.6811,5.197 829,246.78174,223.798,26.566223,67.10712,5.172 829,418.68405,202.00279,19.440155,45.026047,5.152 829,327.99976,227.45102,28.72168,67.55878,5.131 829,532.0903,228.74838,19.070679,43.415802,5.074 829,583.6065,412.95868,70.68439,175.82275,5.07 829,394.73172,198.08319,18.06903,40.20845,5.05 829,237.32858,241.9026,29.274872,65.99654,5.011 829,602.79736,-56.410458,53.6156,139.89664,4.972 829,-21.57751,402.14026,78.921524,176.00665,4.963 829,401.1841,196.3815,19.203705,44.427094,4.91 830,475.0072,212.74092,19.339355,46.081924,30.629 830,1.8998635,261.93658,24.445889,81.70636,9.658 830,416.04712,230.66824,23.985199,48.325775,9.358 830,409.55234,222.67296,21.218414,46.384323,8.512 830,477.1485,215.76732,27.042664,65.467636,8.456 830,19.842623,202.59982,33.755386,54.51715,8.159 830,404.0697,203.50621,17.435364,41.988205,7.787 830,425.6435,206.83107,18.302185,38.171753,7.423 830,417.11594,233.08525,32.671417,69.12904,6.807 830,627.4387,-16.830175,17.050781,45.613045,6.642 830,417.61285,218.91077,19.940674,41.710052,6.572 830,-5.855502,-18.399881,18.111816,44.137634,6.489 830,283.91608,219.08167,17.638672,42.72165,6.484 830,3.9062512,200.32443,31.511457,56.372406,6.449 830,470.14355,211.98247,15.5989685,34.17624,6.439 830,626.92804,487.9298,19.962524,45.783813,6.437 830,611.6184,-48.609024,40.260376,104.09042,6.256 830,-11.486797,476.99472,29.178741,64.757416,6.142 830,290.81302,216.15817,18.39856,45.834717,6.113 830,-11.243205,-31.098433,29.669525,73.065575,6.094 830,612.5637,455.83218,39.18457,106.118195,5.955 830,256.7659,227.13722,20.17752,40.67659,5.879 830,480.79984,213.50024,18.754364,34.638474,5.852 830,487.80667,222.88312,21.502563,43.103333,5.817 830,619.31256,197.57233,17.713806,48.51555,5.794 830,25.431961,198.69699,22.808945,37.92888,5.75 830,459.92813,206.06743,15.449554,30.949768,5.693 830,594.8317,192.09297,17.778748,37.802826,5.661 830,420.1399,212.18661,26.956635,56.34503,5.633 830,588.7045,191.81192,16.298584,39.80237,5.528 830,-5.9859285,489.399,18.255821,41.85724,5.498 830,-17.2622,-63.23773,56.25152,145.82376,5.472 830,17.448772,200.33649,24.069996,42.30258,5.469 830,7.751467,213.52664,56.126255,126.401855,5.337 830,451.95575,204.16028,15.812378,32.544495,5.331 830,434.8245,207.50574,16.912842,35.987595,5.304 830,400.8104,208.50467,25.10141,59.855072,5.275 830,295.18878,208.39854,25.72699,63.053665,5.271 830,406.70914,227.28351,29.55841,72.45038,5.205 830,-73.008896,264.16895,201.65742,464.79663,5.199 830,-14.722062,249.03815,51.41104,138.41199,5.176 830,1.9642609,-16.958584,17.93934,43.918175,5.133 830,465.6268,213.0098,25.762817,61.60559,5.124 830,583.7062,413.34027,70.738525,175.1347,5.103 830,417.44672,198.22665,19.775818,43.388412,5.08 830,67.60016,229.80826,31.874847,66.8923,5.079 830,34.54028,201.3957,31.36707,52.172195,5.074 830,10.889414,273.94672,30.648901,67.53989,5.074 830,107.76994,209.59677,17.917152,33.026413,5.064 830,298.43906,225.08093,17.719818,39.62744,4.996 830,620.57855,230.00899,16.839539,42.489426,4.971 830,402.5238,233.2946,21.657166,49.971542,4.956 830,-12.565958,202.86508,30.488089,63.919647,4.907 830,581.6006,190.55106,15.963806,41.487885,4.875 830,443.99338,207.60924,16.013153,34.78682,4.869 830,276.4588,227.72362,17.132568,38.6761,4.862 830,-21.346878,403.2188,78.80236,175.61554,4.857 830,-41.039116,363.40656,111.70339,279.26874,4.843 830,266.89838,226.24817,17.675842,40.54428,4.816 830,-0.71490526,232.24606,39.814007,98.1857,4.787 830,-8.43619,271.5723,27.984598,77.17865,4.773 830,269.3249,186.82437,13.86087,28.90773,4.77 830,506.48807,204.75652,17.532074,35.87825,4.767 830,595.10333,-43.352463,43.114807,98.275696,4.748 830,409.12494,198.03192,19.98584,44.40503,4.738 830,41.21601,297.53625,21.655624,47.487976,4.724 830,312.403,217.01286,27.498718,61.954544,4.683 830,113.87703,210.55553,18.644821,38.27176,4.682 830,9.672919,197.20576,21.685497,39.85431,4.624 830,394.79214,-15.128896,17.148224,37.131447,4.614 830,106.02048,222.03392,18.831482,34.498,4.613 830,603.0702,198.07397,16.950562,37.448746,4.606 830,261.7836,194.28253,13.573914,27.12973,4.602 830,98.583176,222.96605,19.885872,35.674118,4.594 830,490.87927,-182.6044,235.32849,424.3566,4.556 831,475.39178,212.75633,14.301544,38.863144,25.809 831,402.3152,217.79158,21.12146,53.65532,15.391 831,403.87634,224.33194,27.662659,73.51575,9.569 831,172.0502,230.07599,30.52298,69.08667,9.457 831,403.49167,202.83781,19.063568,46.20761,8.625 831,482.413,211.82774,14.20224,33.37529,7.388 831,510.34723,209.91895,25.211609,65.17682,6.745 831,470.08087,205.69742,14.161316,35.863617,6.734 831,626.9457,488.11618,19.853027,45.415802,6.706 831,622.35443,-33.92739,27.293762,77.841934,6.456 831,-11.541654,477.0846,29.512402,64.33563,6.405 831,464.21222,212.39325,25.339172,67.33606,6.258 831,-10.907434,-32.668674,29.58708,75.70983,6.033 831,627.11914,-18.441875,16.871582,48.272038,5.973 831,82.48398,234.66728,31.321716,61.963486,5.927 831,612.78674,456.18677,38.816162,105.82648,5.919 831,-5.860816,488.80618,18.358109,42.80313,5.919 831,-5.0050583,-16.32216,17.190388,43.213226,5.915 831,-3.9109387,189.96553,16.136652,40.68483,5.846 831,-17.241943,-63.4301,55.873558,146.55284,5.803 831,-5.176693,280.35025,18.80623,43.859955,5.783 831,181.92035,230.51053,24.623688,46.45764,5.713 831,258.21893,219.9579,19.697144,38.900772,5.658 831,602.34766,-56.95526,53.510376,136.19753,5.645 831,275.8752,220.74382,16.181976,36.903183,5.449 831,284.36145,221.41179,15.604797,36.684128,5.444 831,-1.7133641,277.24426,27.727047,70.078186,5.402 831,476.42664,202.90277,14.602997,29.179153,5.399 831,461.41495,210.53226,16.189423,46.624542,5.397 831,266.38278,220.03122,17.653107,37.46588,5.359 831,401.29596,180.49997,18.824402,51.153168,5.288 831,452.98648,198.497,14.961884,39.59082,5.275 831,419.16278,205.31746,16.413147,43.257385,5.265 831,583.6416,411.84247,70.87683,176.8836,5.25 831,-72.77572,264.5869,200.86475,463.97565,5.137 831,393.62744,221.90015,27.762054,70.73132,5.125 831,123.93776,213.57571,15.310562,31.915924,5.118 831,460.45135,198.86603,15.274475,32.57097,5.085 831,416.35373,222.9498,19.489899,43.70627,5.02 831,-40.45079,362.90112,110.9847,279.20032,5.001 831,-5.683086,207.46709,18.671022,43.85045,4.995 831,386.4124,205.88077,17.79599,36.46756,4.957 831,58.49491,217.61694,19.25573,30.602127,4.952 831,459.164,-17.635872,17.603912,38.66667,4.942 831,468.18097,193.99002,15.444702,29.098175,4.902 831,484.1652,201.6555,14.082153,30.430832,4.868 831,427.2425,198.74571,15.417877,41.989395,4.847 831,-21.186527,402.456,78.42781,176.42645,4.839 831,105.564865,238.22539,22.37239,31.92302,4.83 831,589.93536,171.75458,30.21228,56.62529,4.789 831,292.11255,219.21521,16.11557,40.15921,4.724 831,618.7304,489.4147,19.625061,42.878326,4.703 831,70.668526,235.6972,29.12165,63.56183,4.683 831,490.9912,-183.45645,235.08246,424.7559,4.666 831,594.9779,-47.219257,43.303223,99.99457,4.66 831,130.69049,213.34685,17.27945,30.856796,4.642 831,-3.2321773,172.56319,15.125307,41.140533,4.627 831,107.29774,226.20093,18.133446,29.842957,4.624 831,462.25513,-34.672894,28.463867,67.35813,4.602 831,426.8437,216.89478,16.586945,40.049683,4.586 831,536.3315,312.45636,143.40729,339.20343,4.576 831,493.78253,227.7926,236.66699,515.5721,4.572 831,614.2487,-18.982777,27.906128,72.80279,4.569 831,-4.964653,134.9565,17.803827,47.494522,4.513 831,586.59283,-102.175186,74.12854,237.23587,4.492 831,492.8495,-12.086397,31.427307,62.46344,4.49 831,-10.148912,197.85822,28.024626,65.52753,4.438 831,445.64642,202.21552,14.565521,41.547363,4.409 831,619.4183,-6.6024876,19.653015,46.200287,4.401 831,499.82724,214.46808,18.266388,46.617065,4.393 831,451.4368,-17.411499,17.652435,37.86665,4.383 831,2.1717281,197.09132,18.588808,42.339127,4.358 831,115.43494,224.8092,17.364151,30.82782,4.293 831,-4.0874743,152.83147,16.225937,45.039673,4.26 831,50.115852,217.12479,20.62954,31.467957,4.253 831,379.68115,210.36942,16.58081,30.414444,4.235 832,465.7752,208.40755,21.75592,61.056503,34.662 832,480.25763,216.40396,21.340607,52.02118,19.68 832,176.94734,223.66298,34.76851,74.72502,9.23 832,427.90802,201.11751,17.519257,42.450714,8.918 832,395.21698,237.70572,30.026276,71.37689,8.609 832,20.501947,262.57385,33.098503,69.36423,8.07 832,434.7037,200.71292,18.252838,45.70041,7.648 832,399.79916,235.48537,21.590912,43.909225,7.559 832,627.13654,487.98438,19.615112,45.39569,7.283 832,131.41306,224.0904,16.566025,32.277588,7.045 832,-5.370163,489.22232,17.231018,41.627655,7.005 832,123.580185,234.41682,19.30484,30.380203,6.905 832,-5.3627214,-15.837873,17.593563,43.281155,6.854 832,-4.677804,213.74374,17.832146,46.81781,6.785 832,-11.069151,-32.033714,30.067657,75.102036,6.677 832,473.29788,208.39456,18.679718,44.335403,6.577 832,612.9017,456.24234,38.88977,105.76822,6.418 832,418.34836,200.93329,18.28186,42.83014,6.35 832,3.889699,240.8393,40.57918,99.05292,6.299 832,490.14484,215.54448,17.776306,39.201294,6.28 832,611.1462,-48.536827,40.971375,103.075,6.216 832,190.83392,222.35773,25.611755,49.474182,6.187 832,138.2734,222.56557,16.793243,32.327744,6.019 832,411.12888,195.99779,19.382263,45.18254,5.99 832,441.94867,209.88704,17.094757,47.363144,5.938 832,-11.109938,477.1693,28.617182,64.40155,5.933 832,627.34436,-18.278732,17.226196,47.291103,5.857 832,30.174877,243.2836,43.3205,84.71521,5.605 832,-17.178888,-62.37281,56.24376,144.90457,5.522 832,403.44315,223.6132,18.59433,36.9171,5.488 832,125.015854,218.2706,28.176666,56.759735,5.341 832,510.3288,200.86217,12.045837,24.531525,5.338 832,584.016,414.01126,70.45984,175.4711,5.293 832,164.17505,222.11372,33.01422,77.04619,5.264 832,2.0710135,208.2706,18.758648,46.40483,5.207 832,618.9929,489.72375,19.27179,42.701233,5.19 832,469.97076,204.70859,33.185028,80.882965,5.182 832,31.640827,285.178,24.035511,45.54837,5.146 832,100.367676,243.58842,28.869202,58.305923,5.146 832,-21.004463,405.2456,78.029884,173.97437,5.058 832,492.80737,206.03499,14.530334,29.833755,5.03 832,-72.12757,266.14502,200.26843,463.37067,5.02 832,465.22272,125.60044,21.434113,41.82119,4.962 832,-40.341763,366.01636,110.32129,277.76172,4.947 832,3.2813911,491.94687,17.136766,37.585724,4.918 832,517.4197,199.69331,12.466553,25.600128,4.861 832,129.38634,240.2129,20.04718,30.786667,4.849 832,429.62903,220.47055,16.180481,39.981354,4.837 832,2.3976338,-13.767325,16.724226,40.990807,4.74 832,-9.426386,197.84445,27.415476,68.23581,4.733 832,133.67929,213.19064,13.235489,26.265106,4.684 833,61.33755,226.7058,32.753025,77.755325,16.401 833,425.2625,191.78976,21.156555,52.5188,13.002 833,386.00897,210.97897,22.494415,40.03746,10.012 833,73.62827,238.12611,33.54641,67.239,8.67 833,432.9392,188.96959,21.048248,51.47267,8.27 833,506.46204,193.92494,24.454346,77.39073,8.166 833,19.146053,221.12292,32.533577,66.86249,8.011 833,485.905,198.68765,15.886108,44.44542,8.005 833,4.048786,217.38997,32.17125,73.309494,7.484 833,192.2398,210.87027,30.752365,67.28833,6.906 833,450.31708,187.4385,19.348785,45.397705,6.416 833,-16.761759,-63.863136,55.63771,146.61467,6.337 833,626.96,-18.917269,17.647888,49.08627,6.298 833,622.8213,-33.6345,26.977295,76.31818,6.292 833,-5.147091,-17.302423,17.239048,44.348892,6.265 833,626.89606,487.89105,19.926392,45.791504,6.261 833,-11.626379,477.48743,29.447107,64.15796,6.231 833,612.78516,456.8438,38.77124,104.89044,6.228 833,-5.9184036,488.9596,18.367668,42.600037,6.17 833,-10.969554,-32.318592,29.306198,75.50959,6.119 833,513.7968,206.60675,28.478516,62.81421,5.979 833,525.53613,202.45157,28.753357,62.459686,5.936 833,391.0381,219.52939,23.07962,45.55124,5.843 833,95.765724,237.53848,23.998901,49.798706,5.799 833,612.6501,131.13263,27.260498,76.163895,5.754 833,37.379986,222.99342,40.081684,86.76366,5.555 833,116.99382,228.1307,30.715012,60.237793,5.285 833,182.52664,213.11763,29.49115,70.85448,5.257 833,583.7987,413.98804,70.61279,175.33691,5.208 833,82.44404,227.64587,39.24518,83.428406,5.191 833,-5.2249193,197.21681,17.234154,43.512833,5.157 833,538.415,204.72105,19.222595,42.924103,5.147 833,441.107,187.08171,20.823517,45.498383,5.145 833,384.8894,194.83449,19.235046,36.42099,5.125 833,1.4831805,222.27795,22.85149,49.11673,5.117 833,-72.529564,263.97174,200.83887,464.73822,5.06 833,-40.446278,363.8106,111.00134,278.69708,5.009 833,602.6862,-58.47307,53.86139,136.47423,4.962 833,410.99603,206.60396,20.250763,42.704453,4.957 833,68.780136,218.74811,29.44609,55.58432,4.902 833,565.41473,180.6127,25.588623,67.46097,4.891 833,100.0084,221.53204,30.968605,61.685608,4.876 833,-8.161994,215.42816,36.522762,94.80524,4.872 833,-21.30697,402.80115,78.42659,175.73987,4.864 833,-5.643078,215.95677,17.595884,42.308792,4.798 833,474.48093,-15.028383,17.691956,38.602093,4.775 833,467.50427,-14.236664,32.52835,63.145176,4.773 833,58.717392,226.70946,23.386375,49.344498,4.749 833,489.42935,3.566204,22.39502,44.839897,4.738 833,562.45166,184.63692,18.784058,51.90793,4.734 833,594.57074,-46.145187,44.354065,95.85601,4.674 833,618.9327,-8.047424,20.26062,46.777924,4.67 833,437.89355,193.49525,27.763489,73.79283,4.67 833,459.2752,199.35765,18.06659,46.695892,4.65 834,493.31958,204.88611,17.95935,43.76552,38.896 834,449.21747,192.06767,22.514648,56.987167,13.13 834,438.01233,185.31659,27.423523,68.38942,12.607 834,514.2414,203.25975,19.571411,52.61522,11.898 834,137.95718,237.54938,21.155106,40.206604,10.739 834,202.36865,213.8744,30.000916,58.276413,10.146 834,108.80431,231.18495,28.72512,60.718704,8.897 834,457.6985,190.14967,20.587646,53.259933,8.142 834,392.45795,209.90833,20.187958,39.361725,7.873 834,45.755615,223.94763,31.30265,65.41205,6.926 834,-5.2832723,-16.116829,17.277063,43.063328,6.925 834,85.90654,220.55952,29.620483,58.46669,6.894 834,529.61975,194.05185,19.07306,45.384308,6.788 834,3.3258271,234.34636,20.06464,31.431625,6.714 834,-11.251728,-31.989395,30.1123,74.12291,6.581 834,128.84004,248.73659,22.32306,44.57283,6.43 834,-11.441932,477.6833,29.249588,63.977966,6.405 834,521.88745,192.7045,19.506348,50.552094,6.394 834,627.0088,487.94217,19.808594,45.509735,6.316 834,-5.64567,489.30893,17.711954,42.185394,6.186 834,-4.9496717,221.34207,17.498108,36.81259,6.173 834,610.3551,-47.86289,42.092957,98.92784,6.11 834,506.46317,206.09993,20.634308,52.561905,6.093 834,612.8884,455.96103,38.654602,105.80728,5.999 834,394.53876,198.11017,17.275085,34.077362,5.917 834,119.69592,243.69208,23.06018,49.266235,5.844 834,-17.036263,-62.87587,55.806553,144.6477,5.836 834,141.49675,225.4972,28.467407,53.853455,5.81 834,564.31525,211.51996,14.279114,27.991486,5.775 834,432.28317,170.15753,28.93216,65.42195,5.619 834,93.69048,223.75642,32.26687,72.42488,5.572 834,423.8543,185.00537,27.524841,72.04547,5.555 834,539.9949,196.78705,17.351196,40.51793,5.55 834,572.7646,220.53305,12.90448,24.693542,5.515 834,388.663,216.15254,28.365662,61.653214,5.482 834,626.95386,-19.816357,17.905762,48.501278,5.274 834,566.22784,225.08228,12.606384,22.209671,5.268 834,584.19806,413.40744,70.47266,175.78452,5.203 834,265.94595,215.3375,18.99408,34.53293,5.141 834,488.78796,181.94197,25.865417,65.77634,5.108 834,2.9999967,492.02386,17.69368,38.922302,5.065 834,400.7715,216.12183,19.238678,39.480377,5.051 834,238.60602,218.79211,26.932037,61.368988,5.005 834,-72.582726,264.92004,200.17805,464.10608,4.932 834,558.0764,216.98318,13.177612,26.052109,4.927 834,464.89212,195.70016,19.937042,49.76596,4.925 834,-40.207283,366.89093,110.23629,276.81927,4.903 834,-20.973587,404.89914,78.16339,173.55173,4.857 834,132.84966,247.08557,27.82396,61.225403,4.848 834,311.15857,225.4875,24.22232,52.876205,4.78 834,618.744,489.0627,19.675049,43.607025,4.751 834,8.467283,228.92429,20.891794,30.66684,4.727 834,268.39404,170.35744,17.62381,37.704407,4.719 835,152.08955,236.0907,24.74498,51.105225,13.56 835,463.9671,182.79755,25.924805,74.42691,10.89 835,125.65794,223.05525,28.228134,59.389175,9.445 835,79.13241,231.65833,25.058426,38.659027,8.347 835,485.02148,198.80588,25.595398,66.574646,7.944 835,68.63545,226.28584,32.545868,57.99388,7.453 835,-6.0133915,-16.504803,17.80459,44.315758,7.272 835,110.09658,225.268,29.125023,63.22278,6.973 835,122.5746,224.04996,20.88562,39.575867,6.724 835,627.43207,-17.85587,16.760925,48.67361,6.668 835,114.60461,224.85428,19.924706,37.940308,6.577 835,626.8517,488.15643,19.937866,45.463318,6.509 835,-11.135383,-31.941074,29.624046,74.87938,6.488 835,160.93584,232.61647,22.969193,37.210342,6.48 835,168.67242,240.06409,20.618988,33.44812,6.229 835,-11.885378,476.9088,29.649,64.4613,6.203 835,-17.084969,-62.491943,56.120384,144.43443,6.126 835,612.9331,456.3416,38.60498,105.65039,6.126 835,129.34892,221.95657,20.120972,35.33261,6.045 835,251.24902,219.85927,18.370972,32.76761,6.031 835,514.8253,191.7024,20.026306,56.597107,6.018 835,141.22127,227.53993,29.347336,57.63173,6.014 835,-6.1936035,488.9887,18.560852,42.487305,5.913 835,481.18698,192.62251,21.422546,52.852844,5.904 835,217.52931,218.94922,23.470673,43.560608,5.888 835,400.4914,224.64714,20.74942,44.86989,5.866 835,468.7408,199.09293,29.77359,70.37485,5.802 835,579.2427,200.52379,19.932922,40.14923,5.738 835,164.12186,231.38104,30.072495,52.953735,5.644 835,136.0889,226.32907,22.300568,39.17981,5.403 835,496.4058,199.15381,21.547394,58.04184,5.374 835,130.8985,212.20525,16.853775,29.350708,5.344 835,77.6806,198.37323,14.218506,27.572174,5.308 835,282.4552,175.31046,18.37912,41.69153,5.308 835,439.34326,169.72913,24.490326,66.93312,5.285 835,268.20215,178.19864,17.486664,36.871902,5.254 835,107.76058,222.49147,17.000114,33.634445,5.163 835,394.5715,222.18465,21.087128,37.22017,5.153 835,584.0612,413.49652,70.64105,176.03558,5.148 835,124.11541,213.30371,17.238106,28.006866,5.142 835,58.562046,224.00113,21.980335,35.95105,5.131 835,611.7695,-50.42155,40.875916,107.001396,5.123 835,89.90574,226.35939,18.114067,31.424301,5.065 835,392.02792,223.17282,27.739105,67.99481,5.03 835,617.11273,204.53174,23.76001,79.53754,5.006 835,-5.3623815,233.84546,18.433096,41.80951,4.968 835,-5.749355,266.7671,18.04077,41.65918,4.945 835,-40.470882,365.23578,110.969406,278.21405,4.936 835,3.7161517,187.04684,32.05986,57.889877,4.921 835,-72.43087,265.97525,200.74435,463.79013,4.895 835,66.6248,224.82791,22.63301,36.756073,4.873 835,107.93416,193.93443,16.681839,26.32341,4.873 835,-21.095219,404.16882,78.55051,174.10986,4.861 835,99.29283,224.63943,17.09932,32.04422,4.782 835,92.786194,211.48726,13.757294,29.552841,4.774 835,507.42365,195.44618,19.83258,55.61133,4.763 835,474.69513,221.3447,32.510742,61.25421,4.713 835,508.3819,0.5266876,17.463196,35.103226,4.642 835,155.64897,227.42877,19.386292,31.773224,4.622 835,51.564354,224.6922,33.43586,64.567444,4.576 835,2.2156053,-14.241196,16.56376,41.895767,4.574 835,93.84456,201.6229,13.390846,25.86235,4.57 835,618.67145,489.60205,19.699463,42.62848,4.562 836,544.08154,192.35631,21.725464,58.271225,29.663 836,496.94034,195.49493,22.608612,54.765533,27.37 836,512.91486,196.30399,22.436462,54.952316,10.537 836,519.53076,187.55186,25.230652,68.953476,9.649 836,224.48401,207.3808,21.845505,48.301224,9.648 836,535.28735,178.48999,26.474487,65.8902,8.837 836,158.70352,206.16388,30.059784,56.047363,8.137 836,122.05124,207.53464,20.685593,33.697647,7.334 836,-5.7455444,-18.188143,17.680578,44.058987,7.24 836,448.6119,202.4349,21.964752,49.470657,6.922 836,-11.248648,-31.759169,29.40775,71.670525,6.658 836,78.16215,211.22159,27.314148,65.96573,6.582 836,620.0996,199.88356,17.533203,47.607376,6.482 836,424.67352,215.98973,20.27829,42.655167,6.458 836,-11.986826,477.41434,29.938261,63.005585,6.431 836,615.0102,200.9123,24.394165,84.96301,6.155 836,-6.1412964,488.93713,18.564964,41.917175,6.131 836,120.22775,218.58464,24.099533,40.785233,6.116 836,486.5503,196.4534,27.33258,72.358,6.081 836,172.82288,218.41278,29.93898,61.52539,6.018 836,612.8408,454.70572,39.46936,107.67917,6.006 836,409.4491,218.25804,22.401001,50.75795,5.998 836,626.7007,487.53668,20.304443,46.263245,5.977 836,622.26184,-33.311874,26.975342,74.95362,5.877 836,626.7997,-18.440863,17.567383,47.388756,5.711 836,-16.939112,-63.87386,55.669167,144.931,5.65 836,117.66679,203.25299,35.53199,69.504395,5.422 836,154.46576,205.7533,21.139587,36.240433,5.417 836,-5.097127,216.45613,17.490993,39.975327,5.34 836,139.51099,202.41837,31.040802,56.86505,5.312 836,530.009,192.36479,21.521667,61.14604,5.299 836,3.0543308,168.11421,19.073248,36.594986,5.292 836,609.7493,352.814,29.44928,74.991516,5.275 836,434.52606,205.56628,19.636993,46.458603,5.244 836,102.54814,207.42593,35.27394,73.052,5.238 836,-21.034184,405.86093,77.894455,173.19144,5.132 836,91.97594,213.16148,29.735672,64.261856,5.118 836,185.22983,228.53712,21.112503,38.87346,5.101 836,455.87802,213.51672,21.243744,44.2045,5.066 836,87.291824,212.27492,23.07817,50.038162,5.033 836,-39.818443,368.34497,109.65873,275.74384,5.018 836,566.7402,175.8057,36.450256,98.01907,4.995 836,602.67737,-56.494755,53.382507,135.21303,4.987 836,-5.3964987,235.55382,17.397537,38.01915,4.944 836,-72.036674,266.0103,199.93134,463.0028,4.941 836,136.60585,204.0555,20.41092,35.5206,4.922 836,583.8776,412.25095,70.33563,176.28696,4.894 836,0.8972359,196.60034,20.492863,42.26587,4.866 836,500.13687,178.57141,36.027435,82.0531,4.863 836,115.69177,207.37526,18.167633,33.2502,4.852 836,443.0993,215.33228,19.81131,39.707764,4.841 836,162.80957,203.08641,20.848907,33.301743,4.809 837,563.05597,198.00117,23.312622,56.83351,49.779 837,544.70514,197.87352,21.339172,50.450592,37.91 837,553.07965,198.48798,22.953125,54.405792,15.462 837,145.78229,206.69911,21.709457,37.22026,13.141 837,137.87885,208.01468,23.493225,43.287827,10.503 837,121.68247,205.726,21.69271,45.076355,10.365 837,129.59982,207.92824,22.009247,43.69043,9.503 837,426.9123,219.25824,31.043701,69.40668,9.485 837,571.4175,197.75119,27.824097,72.99927,9.294 837,415.02924,211.10007,28.504944,63.25479,8.602 837,536.2245,200.3103,25.483765,71.92502,8.361 837,216.95564,226.91339,20.320648,46.637024,8.031 837,148.80591,203.44122,29.052963,58.60089,7.507 837,627.2374,-16.702623,16.616638,46.178375,7.367 837,626.8843,487.8183,19.922302,45.809814,6.923 837,3.463775,176.2335,16.95205,37.77858,6.866 837,210.24178,223.82198,20.067581,46.176743,6.711 837,78.66485,213.27293,30.819237,57.214767,6.642 837,-8.706283,466.4004,37.39712,89.374756,6.589 837,476.1129,221.12296,18.219482,41.41742,6.586 837,531.4063,200.1972,20.575012,48.012543,6.194 837,-5.5053096,-16.975237,17.63043,42.87264,6.187 837,612.9963,457.74234,38.313538,103.150665,6.185 837,622.6649,-32.513657,26.680664,75.26358,6.134 837,-5.9479103,488.77475,18.262917,42.888092,6.008 837,481.47598,211.42612,20.100006,49.33487,6.008 837,-17.21389,-63.46025,55.85209,144.08838,5.958 837,580.40497,195.43794,31.620544,71.41997,5.867 837,41.816513,217.23846,20.865074,31.40892,5.816 837,-10.901859,-32.3976,29.43203,73.01527,5.772 837,489.8357,202.93977,20.997375,51.78885,5.74 837,423.46198,209.45616,24.183868,44.366074,5.722 837,584.8114,413.50082,69.60626,175.41727,5.596 837,264.06744,230.68558,24.756989,40.58844,5.588 837,202.657,222.5546,19.153946,40.60669,5.526 837,433.40277,205.68611,19.351501,38.601944,5.478 837,169.34227,216.03503,21.808517,40.700928,5.406 837,112.439644,209.8643,25.531685,47.156418,5.404 837,194.5117,223.51445,20.776749,43.451187,5.283 837,-21.315516,404.88184,77.78813,173.92279,5.275 837,430.77667,216.28096,22.73227,45.281418,5.266 837,440.36758,217.29395,21.508057,41.960785,5.254 837,58.81699,207.25945,19.734577,33.891876,5.208 837,250.28519,230.00952,20.694733,38.412262,5.121 837,536.1588,153.03218,27.782715,79.77539,5.092 837,220.30612,218.07349,26.208038,61.79602,5.078 837,182.65099,221.47545,29.64743,67.57912,5.044 837,-72.260445,265.75125,199.80042,462.54672,5.012 837,602.644,-55.596893,53.39795,138.3724,4.984 837,62.49565,209.60786,28.407211,53.94655,4.95 837,618.654,488.7466,19.821838,43.761627,4.93 838,221.31741,218.51312,24.376938,54.889618,15.498 838,155.52234,213.60292,20.383408,37.316833,12.774 838,-0.07090211,248.70981,25.007784,80.51489,12.434 838,260.4345,225.60129,30.893738,60.509674,9.177 838,532.5598,220.83862,29.690063,69.94919,8.053 838,500.8839,194.93385,31.883728,63.800156,7.801 838,490.43744,210.11719,21.816101,42.543106,7.741 838,517.098,223.3073,31.517456,65.189865,7.266 838,627.26385,-15.857794,16.920227,44.382008,6.894 838,-5.596709,-15.979934,17.62421,42.803173,6.836 838,528.86707,226.96417,22.054077,46.59723,6.823 838,626.9784,488.24832,19.788086,45.525726,6.667 838,514.55524,197.0112,31.558167,65.90585,6.606 838,484.28992,205.35538,31.241028,66.63013,6.605 838,521.815,229.81471,20.6651,42.680435,6.55 838,91.380325,216.48718,32.767708,60.718567,6.445 838,-10.937587,-31.606323,29.688656,73.94611,6.41 838,7.6073003,249.24402,32.882393,64.800415,6.408 838,-17.614801,-62.73593,56.475708,144.9485,6.342 838,313.7137,228.35832,30.918823,56.91774,6.325 838,-5.5397882,488.78406,17.849808,42.60034,6.318 838,537.49835,244.51732,20.852295,44.16124,6.294 838,147.48247,218.05333,20.517273,39.273697,6.291 838,-4.8739123,236.53842,18.206245,41.454803,6.23 838,208.29587,216.86049,28.632172,63.2697,6.221 838,612.9455,457.3911,38.181335,103.8866,6.098 838,252.38121,235.53842,31.623184,62.561523,6.037 838,156.23656,207.73805,17.856583,27.108444,6.009 838,-5.08165,221.35965,17.380926,36.64566,5.961 838,150.01825,210.35884,16.694687,29.933884,5.955 838,-8.063459,466.44586,36.70416,90.605835,5.935 838,-12.856157,236.84833,47.674774,138.4538,5.811 838,622.60614,-33.641796,26.865051,75.93948,5.734 838,109.26425,215.03839,29.119812,55.815918,5.635 838,515.2717,228.1359,18.94934,42.470795,5.597 838,189.08736,229.31354,32.39772,62.228027,5.568 838,-10.809846,223.02878,28.72268,67.58688,5.531 838,433.1094,211.75621,22.501862,48.071396,5.488 838,-72.32717,263.3754,201.11975,465.6556,5.409 838,602.46155,-55.400616,53.216675,136.79565,5.408 838,585.48303,129.36229,19.330261,45.373,5.391 838,-4.4687753,252.16656,19.80783,54.307617,5.295 838,536.9258,212.9301,21.52356,38.317764,5.273 838,584.2569,413.55,70.00299,175.30084,5.227 838,224.89145,223.477,33.630035,65.468735,5.141 838,478.86768,194.69894,28.46878,55.926468,5.059 838,618.7443,489.16626,19.573608,43.51709,5.027 838,548.1336,224.62775,30.449951,68.48273,4.952 839,223.40492,220.83528,22.727615,52.830765,11.551 839,482.82346,214.77185,19.503693,43.98282,11.218 839,467.6797,215.78558,18.380066,34.556946,9.655 839,213.45915,224.12283,28.690582,69.285095,8.402 839,476.76743,216.96925,30.29776,66.6844,8.372 839,622.6238,-33.942917,26.441406,77.38263,7.136 839,-17.591986,-64.80566,56.61226,149.10667,7.131 839,627.0851,487.93808,19.47229,45.41989,7.092 839,627.06866,-18.558659,17.479431,48.67359,6.976 839,173.7245,215.56372,12.660522,25.410233,6.96 839,474.7735,216.71655,18.46225,37.92662,6.939 839,-0.22578955,376.91263,27.30934,83.25827,6.438 839,612.6227,457.6657,38.435303,103.15332,6.414 839,44.90364,225.69904,30.443855,70.62421,6.357 839,-11.044211,-32.0379,29.795574,74.84768,6.251 839,489.10767,217.62273,20.046448,47.050278,6.17 839,-5.58213,-16.904543,17.172781,43.641945,6.143 839,344.68866,220.98093,21.563599,38.34085,6.053 839,166.07578,217.2622,14.880341,33.382523,6.016 839,570.2189,229.3901,19.77832,44.25638,5.999 839,126.23328,217.60823,28.05066,59.31212,5.9 839,-11.81493,475.61572,29.433691,65.19714,5.859 839,197.37373,228.83348,32.309723,67.2549,5.809 839,573.2014,224.20972,28.322754,64.899475,5.689 839,-5.968379,488.1376,18.565903,42.95407,5.68 839,561.73816,226.6284,21.29303,44.793594,5.577 839,583.18494,197.5662,35.31842,103.03433,5.533 839,173.16425,232.69478,29.70987,51.112686,5.525 839,600.96014,189.51349,34.128723,112.04083,5.377 839,4.721676,211.11145,29.327496,71.78818,5.357 839,584.2406,412.1089,70.31799,177.37439,5.252 839,-72.668755,264.2284,200.41008,465.92664,5.186 839,-5.5113864,214.54626,17.698807,44.24417,5.117 839,67.41936,247.0352,32.510757,64.991714,5.085 839,29.181757,221.73137,29.023104,70.25481,5.073 839,603.3261,-56.100155,52.59674,137.11218,5.034 839,207.72063,216.9458,26.384308,58.149963,5.015 839,553.06116,227.8638,22.007568,41.809906,5.011 839,4.9458885,220.97202,35.871693,103.21954,4.999 839,496.59924,218.85287,19.902222,37.539825,4.986 839,189.22508,222.08965,30.94072,61.543167,4.963 839,-21.029682,402.47568,77.612015,175.78409,4.952 839,586.13855,237.62762,19.193481,43.60492,4.938 839,377.46677,221.43033,20.346466,36.096466,4.916 839,-39.828594,363.90463,110.0551,277.9689,4.899 839,54.439545,240.53494,28.490334,70.37067,4.863 839,619.0093,489.05743,19.20105,43.078796,4.814 839,460.76245,237.40388,32.48285,68.56554,4.812 839,577.902,231.11978,19.191467,42.958405,4.772 839,370.0955,224.78023,21.77768,37.90413,4.751 839,156.43129,214.0423,15.930908,35.802628,4.709 839,217.29349,244.11165,33.06105,70.03493,4.663 839,614.6429,199.18861,26.507385,75.686264,4.642 839,619.4322,-17.572897,17.738281,44.866093,4.635 839,70.743,216.6669,35.250282,70.93796,4.53 839,458.46973,217.0387,19.992432,41.049316,4.518 839,170.75568,228.47806,18.240784,32.92401,4.487 839,536.35004,312.29108,143.25873,340.0656,4.477 839,2.7844982,210.16304,18.402855,39.127686,4.477 839,-7.6462984,229.03238,36.060867,100.90527,4.449 839,258.3008,228.31902,33.313232,68.346634,4.448 839,131.66624,212.30602,17.42363,32.659958,4.432 839,384.78265,218.32504,19.831879,41.127502,4.41 839,184.2138,234.96233,21.384964,35.962875,4.379 839,493.76587,227.18103,236.77686,514.0454,4.377 839,26.836367,197.67221,19.596006,32.214478,4.369 840,231.6761,226.4176,23.46428,45.624115,15.909 840,504.21603,217.33887,20.7789,48.6958,14.339 840,80.07072,230.05034,29.067322,72.26021,10.268 840,555.77203,230.76447,31.410034,81.271484,9.801 840,541.4532,232.01503,29.388123,71.98091,7.991 840,222.64517,229.50519,27.901276,56.422424,7.737 840,626.89435,-19.696234,17.595947,51.580696,7.351 840,351.09744,223.6732,24.538177,41.14296,7.31 840,616.3185,7.0053253,22.323486,83.81086,7.062 840,-17.618801,-63.932125,56.872643,148.76758,7.002 840,43.84471,206.99283,17.21791,31.833282,6.717 840,-11.419802,-32.2053,30.174198,75.33981,6.648 840,179.53917,220.75233,18.49237,37.130203,6.36 840,-5.953534,-16.963436,17.333115,43.555214,6.352 840,-5.9896297,486.98624,19.096336,44.39627,6.347 840,474.06488,223.0851,18.81076,44.6046,6.337 840,626.8555,488.42062,20.386292,45.686676,6.286 840,524.30176,230.50023,30.519775,74.86705,6.25 840,510.44754,250.89812,28.257416,66.20491,6.125 840,35.861454,204.0328,17.274448,34.118042,6.054 840,-9.379113,463.23013,37.875874,91.90219,6.033 840,516.3105,225.39352,27.553528,68.31683,5.996 840,50.804886,208.2642,17.384964,31.469574,5.838 840,102.6758,221.27126,28.661957,68.78929,5.818 840,171.42609,220.91336,18.897842,36.257294,5.8 840,552.8034,236.5039,23.54065,49.340088,5.769 840,619.714,201.67982,17.69934,46.182693,5.716 840,611.2705,-47.98043,41.0365,102.77113,5.708 840,508.1046,217.1822,27.397827,64.1707,5.684 840,377.63733,229.69669,21.931763,36.287323,5.661 840,612.9096,454.4954,39.105896,106.81802,5.575 840,29.40629,215.66327,28.92787,67.072876,5.469 840,620.7116,191.94345,14.756592,37.679367,5.431 840,0.016418695,215.79623,26.595924,81.090454,5.405 840,429.54034,220.68866,13.271973,23.517563,5.388 840,118.3044,223.26758,28.843903,60.729797,5.386 840,-72.87995,264.1531,200.76387,464.84152,5.333 840,-1.0690248,289.93045,27.63615,81.94626,5.31 840,-17.559977,435.17,55.41503,141.47153,5.084 840,59.284218,209.48701,16.723228,29.99591,5.058 840,620.8636,178.39854,15.699646,35.177414,4.999 840,71.333405,223.54875,29.333694,67.45607,4.995 840,27.840485,203.93141,17.728676,32.390396,4.95 840,521.49146,221.03073,21.36383,44.868744,4.865 840,536.24274,310.1607,144.1211,340.8587,4.828 840,627.39514,174.44681,16.467468,39.902237,4.808 840,194.63367,222.208,18.273148,35.123398,4.799 840,619.2478,490.03693,19.641785,43.03766,4.79 840,408.80368,237.28807,21.726227,31.540817,4.783 840,583.07166,412.81604,71.51221,175.34753,4.764 840,-39.569595,366.112,109.81698,276.14154,4.726 840,21.386395,199.03096,28.807125,61.766098,4.717 840,45.136604,217.09311,28.25351,65.039825,4.711 840,445.5923,218.06248,12.075745,22.28981,4.63 840,4.329563,222.13335,36.499275,101.72606,4.613 840,160.71799,221.03833,20.117737,37.76477,4.613 840,438.36407,218.37389,11.948578,22.038849,4.599 840,628.0852,189.83463,15.703796,41.42511,4.581 841,363.0992,229.62146,23.992157,44.267975,42.793 841,549.10284,225.98886,24.276794,47.80182,23.085 841,617.78674,237.9586,20.354492,42.283188,10.496 841,3.637435,187.67262,19.18824,34.671463,8.86 841,143.13095,226.86969,25.997757,44.65927,8.565 841,117.16298,226.91399,27.523834,58.832413,8.435 841,102.72522,230.97292,27.23079,57.404068,7.179 841,374.07108,229.9888,20.865875,38.65161,7.177 841,-17.55964,-64.38116,56.711044,149.45723,7.07 841,2.2213745,201.59808,20.679977,48.122482,6.735 841,230.23068,228.69281,26.453125,60.914062,6.648 841,-11.848242,476.77325,29.862688,64.09857,6.638 841,344.35327,229.02568,23.881104,48.37001,6.621 841,626.64716,487.5698,20.363098,46.507843,6.604 841,627.4847,-18.132677,16.890991,46.620697,6.392 841,-6.220567,488.2668,18.99303,42.66922,6.287 841,-11.332636,-32.4814,29.805017,74.72504,6.007 841,187.40002,218.06381,19.484406,41.063904,5.943 841,610.99994,-48.245087,41.295837,100.3443,5.912 841,-5.8665705,-17.295305,17.296013,43.043285,5.847 841,26.503262,207.53629,17.660007,29.643524,5.752 841,613.0994,456.99252,38.42798,104.68906,5.654 841,74.905975,313.7768,30.764145,89.66092,5.603 841,395.03433,231.86674,20.063995,36.00621,5.524 841,353.90567,229.4618,24.274536,45.329697,5.458 841,18.171846,210.66028,32.715546,67.101685,5.386 841,584.1523,412.29788,70.216,176.37888,5.321 841,4.9244595,207.39359,29.261309,74.496704,5.301 841,-3.7906125,182.86974,17.114851,36.353897,5.293 841,335.02457,221.0425,27.224823,60.87529,5.28 841,85.86368,222.54832,28.10672,58.502945,5.242 841,53.13364,217.82649,28.212147,64.57048,5.196 841,-39.743256,367.46027,109.862854,275.6695,5.101 841,18.660183,204.91147,19.859768,34.291763,5.035 841,-17.151402,439.11218,55.00042,135.97144,5.031 841,238.68042,226.08347,23.15982,46.725677,5.009 841,-72.62767,264.82407,200.43053,464.63248,5.009 841,332.92682,209.41588,13.228912,25.484467,4.936 841,618.5256,488.81506,20.373047,44.016235,4.863 841,401.23907,233.71347,20.723267,41.5502,4.855 841,194.72322,213.04416,18.046478,39.586227,4.84 841,-4.8357673,204.66838,17.949371,47.14073,4.785 841,189.60478,214.81984,15.268967,27.455978,4.762 841,128.61494,226.67764,22.41478,42.643036,4.755 841,535.7445,311.5744,145.0993,339.7575,4.734 841,179.6484,217.66664,19.341476,40.29332,4.687 841,206.91557,227.54387,27.67276,59.90361,4.671 841,625.70593,235.57063,18.682129,43.912888,4.66 841,9.8883705,200.63243,19.615488,39.085556,4.637 841,494.02136,228.8201,237.2934,514.7626,4.573 841,249.66815,220.8394,19.082031,40.464035,4.487 841,202.21402,235.82616,19.526215,36.190628,4.403 842,562.9917,218.8242,19.304138,52.505844,32.68 842,231.80151,223.72565,26.309113,64.70465,13.272 842,563.54865,215.61594,15.497864,32.247955,7.554 842,-17.323807,-64.9171,56.50185,148.16147,6.874 842,28.257055,211.07341,33.38308,68.42378,6.815 842,-11.923759,477.44342,29.694744,63.879883,6.758 842,577.1878,221.10938,19.318848,49.328217,6.526 842,-11.142892,-32.154873,29.587101,73.98112,6.464 842,-5.6815286,-17.155529,17.05206,43.470516,6.445 842,-6.139035,489.11316,18.646782,42.227905,6.353 842,391.4386,240.91255,23.945557,40.561386,6.218 842,558.614,219.96275,16.858704,43.31508,6.091 842,626.52844,487.48615,20.531555,46.56488,6.065 842,240.96954,216.10858,30.648773,66.57703,6.027 842,622.72784,-33.967873,26.878174,75.52229,5.921 842,627.30194,-19.805902,17.473083,48.578396,5.904 842,137.10765,214.86311,22.007141,42.812607,5.863 842,4.789641,186.22083,16.348871,32.060043,5.83 842,612.662,456.4866,39.33069,104.93771,5.721 842,586.6607,221.20386,17.885376,46.769592,5.667 842,47.773964,223.46791,23.529442,44.013138,5.551 842,196.21474,233.77782,31.283127,59.34276,5.455 842,584.0513,412.21948,70.53992,176.26971,5.423 842,62.846596,212.42639,27.463074,65.01965,5.392 842,384.13986,232.05333,24.207642,45.61046,5.313 842,19.482382,180.58627,16.963877,32.247482,5.308 842,5.222056,198.91786,35.76472,93.49907,5.302 842,-17.272799,441.17108,55.020737,134.4436,5.229 842,532.3647,233.07257,17.725159,33.024963,5.202 842,-39.669186,367.14728,109.884735,275.55768,5.042 842,333.30963,202.8483,13.9019165,25.577515,5.02 842,214.96161,221.97151,28.785782,65.847946,5.018 842,547.75757,223.61064,17.334839,41.740463,5.015 842,-72.81129,265.38657,200.6357,464.07877,5.015 842,603.42505,-56.422745,52.57318,131.99054,4.984 842,538.99115,231.39471,18.515991,36.9989,4.939 842,365.86,218.15996,28.715576,55.21489,4.866 842,53.459873,207.96336,27.811337,62.896896,4.786 842,556.88165,210.15337,15.098877,30.417664,4.749 842,133.52303,264.07193,31.471176,84.663605,4.734 842,5.302168,471.4804,38.179306,90.38562,4.73 842,126.53052,212.55974,26.436935,57.60637,4.714 842,425.62686,235.47998,22.3107,42.10797,4.689 842,163.92671,220.57375,31.02092,60.643356,4.68 842,535.575,311.9901,144.59625,340.48462,4.67 842,594.63306,222.2333,18.179688,44.939453,4.645 842,614.2026,222.90642,25.242737,70.63747,4.615 842,114.26098,215.7456,20.72013,44.98813,4.614 842,203.89413,209.97136,14.366592,30.43489,4.61 842,326.50708,202.39088,13.397766,25.335083,4.568 842,197.72397,210.6165,14.443619,30.961685,4.545 842,25.775661,180.9731,16.9301,31.20671,4.53 842,11.494282,188.88824,17.521885,36.378525,4.529 842,569.4802,218.07309,17.599365,39.277008,4.495 842,2.6203399,194.60004,19.15169,46.164474,4.445 842,340.08682,202.18587,13.881012,25.935165,4.432 842,594.0654,-45.03697,45.24298,94.17437,4.426 842,403.7146,234.17303,30.07431,55.74756,4.413 842,373.788,238.10982,30.910156,56.452164,4.408 842,-2.991103,175.01862,14.47837,35.337494,4.407 842,398.65625,236.29132,22.921997,37.611115,4.352 842,67.99619,202.79807,16.84874,38.058075,4.346 842,599.37537,196.4267,34.11914,87.91803,4.333 842,493.1629,227.59515,238.46973,515.8717,4.327 842,271.29785,215.70258,26.017792,58.533875,4.313 842,103.15851,221.4988,29.459015,71.89519,4.298 842,241.00827,216.11606,20.358795,41.84323,4.283 842,70.436775,202.18312,35.538094,74.57405,4.235 842,2.3446846,490.40854,18.942005,39.972015,4.213 842,142.09232,212.61214,27.540695,52.991806,4.211 843,495.61,210.90965,26.044006,68.963,9.829 843,28.046288,193.15073,31.26905,63.33914,9.779 843,33.22093,189.12817,23.626003,41.73729,7.751 843,127.24468,297.59985,27.649223,72.569275,7.157 843,-17.197353,-65.11885,56.402565,149.34097,6.735 843,626.72705,-20.132303,17.954712,49.454384,6.65 843,355.72873,202.36725,13.501953,24.82454,6.614 843,626.6637,487.57645,20.202148,46.415802,6.543 843,-5.6673713,-16.695913,16.990423,43.04054,6.483 843,428.90256,233.31827,28.753967,59.18091,6.471 843,-11.338835,-32.382305,29.666645,74.35357,6.467 843,618.4523,198.51028,19.347046,48.531067,6.365 843,-9.024444,466.80414,37.761234,89.17505,6.365 843,622.2212,-33.645905,27.323608,76.84688,6.35 843,349.3415,202.48993,13.824219,24.916916,6.245 843,-6.033814,489.12363,18.54727,42.360382,6.074 843,-3.3083055,155.44247,15.88204,43.84903,6.068 843,155.03546,212.53282,20.719406,47.115005,5.852 843,510.70892,211.47038,26.690552,69.966385,5.77 843,612.7328,456.89322,38.93805,104.392975,5.637 843,2.5333028,360.9601,18.92433,36.529663,5.483 843,3.5779333,198.78433,38.162907,92.30484,5.429 843,583.67224,412.82303,70.947205,176.1011,5.288 843,-21.135162,404.5744,78.270706,174.13306,5.209 843,312.021,211.35445,25.696594,67.488815,5.097 843,-4.6490335,137.64514,16.997828,45.336258,5.09 843,34.389454,195.33127,39.826305,74.53256,5.077 843,185.27182,216.58842,20.643799,43.678085,5.037 843,-72.57584,265.55203,200.64127,463.19443,5.032 843,41.543736,181.66252,19.058456,30.50624,5.005 843,84.612495,201.42827,28.553436,56.40468,4.994 843,260.4828,224.07005,30.410126,61.566177,4.986 843,2.9533987,259.37787,19.445362,38.255768,4.98 843,119.09703,202.10222,35.401443,82.477646,4.853 843,140.93466,218.42897,29.272583,71.43541,4.826 843,4.636674,185.27652,29.066536,68.992645,4.816 843,-6.035497,257.57568,17.615162,39.698242,4.748 843,500.87433,235.83052,29.608093,64.94655,4.686 843,441.10516,233.68115,21.795166,39.495758,4.666 843,618.38904,488.62936,20.284607,44.0903,4.657 843,83.86169,193.3599,16.16806,30.446274,4.638 843,497.40372,205.5858,19.972443,45.99153,4.632 843,5.398407,469.95047,38.198883,91.444855,4.632 843,603.3326,-55.656364,52.830383,139.3148,4.621 843,274.6612,213.03882,20.026886,43.439636,4.609 843,150.97746,206.92969,33.955322,78.66,4.57 843,-4.6633754,348.76184,16.464207,35.8804,4.553 843,1.9138014,343.00348,19.246378,34.164246,4.518 843,341.78204,202.19106,13.712219,25.312653,4.513 843,3.9537776,350.8225,30.231407,59.749146,4.499 843,333.90613,202.80644,13.539886,25.022537,4.481 843,-8.655377,130.55835,26.763687,74.069046,4.471 843,169.73462,268.40363,31.566269,80.53894,4.47 843,535.97546,311.91574,143.82684,340.5065,4.465 843,160.84732,218.58023,20.978546,50.677277,4.444 843,76.74916,192.25238,16.744324,30.14441,4.415 843,257.5797,214.10677,20.126526,42.023758,4.405 843,38.6575,204.55124,24.931625,46.79657,4.396 843,220.87317,206.25172,14.977631,38.31926,4.393 843,-5.8901377,297.55115,18.008863,38.25702,4.362 843,494.08737,227.62479,237.04214,515.13586,4.349 843,137.95715,215.80904,20.629562,43.75862,4.339 843,547.51404,230.76413,16.671387,43.662323,4.294 843,9.889341,364.62302,19.371716,33.776398,4.285 843,435.3614,231.1611,20.154419,36.288666,4.258 843,-6.4011946,214.22342,18.544647,42.270813,4.253 843,-14.405751,156.10812,47.044037,132.8638,4.209 843,101.44832,202.15967,36.843933,82.84662,4.179 843,-4.9333205,442.948,16.790043,41.996277,4.171 843,10.186748,261.4491,21.00491,36.27057,4.168 843,50.346245,200.65445,41.463585,81.52902,4.137 843,474.24442,225.51436,18.347076,40.409775,4.12 844,268.3106,216.17009,27.924347,68.813126,13.734 844,123.28755,196.05081,28.5746,56.29608,10.089 844,361.5893,196.64494,16.607117,30.130142,9.18 844,622.18146,-33.415405,26.881165,79.42193,7.738 844,106.250114,212.61754,33.175194,62.91539,7.733 844,50.908794,213.72826,28.77834,62.190567,7.527 844,96.76708,203.55354,21.761406,41.96245,7.0 844,4.07215,172.94424,16.814419,32.340515,6.779 844,596.2319,222.77032,18.196167,35.289734,6.687 844,622.0785,478.52084,28.098999,65.77249,6.551 844,-6.0141516,488.9596,18.850067,42.39984,6.483 844,-17.544283,-64.907104,56.410637,149.58899,6.455 844,-11.353589,-32.76452,29.943047,75.17287,6.446 844,111.3376,235.84857,23.283768,38.466705,6.417 844,98.991745,196.8098,31.214676,60.204697,6.348 844,-3.4963205,157.9598,15.446369,37.923935,6.279 844,-5.8318653,-17.125788,17.169693,43.01257,6.147 844,89.875946,199.0344,21.471878,39.16385,6.037 844,91.07178,207.85739,33.51184,67.92935,6.021 844,217.58728,217.14989,22.009766,41.95256,5.969 844,612.7003,455.29742,39.560547,106.57605,5.941 844,-2.93502,175.50038,14.821548,36.217346,5.846 844,137.35771,215.7115,21.53682,35.711884,5.723 844,602.4713,213.8866,18.978333,36.61548,5.648 844,595.114,237.7016,18.310425,44.584473,5.566 844,-8.876437,464.85797,37.627155,90.667114,5.554 844,81.118225,204.7554,21.788254,42.965668,5.515 844,-21.217442,403.7378,77.509125,174.05334,5.436 844,113.64696,203.41467,22.991898,43.449127,5.424 844,603.0459,-54.492344,53.052856,138.89563,5.421 844,116.86222,204.84428,37.40374,77.4236,5.419 844,591.26556,203.67303,27.696167,54.889618,5.374 844,127.566925,192.15909,21.174805,35.390182,5.182 844,371.33618,197.84122,14.632202,27.003525,5.127 844,583.4754,413.36707,71.18652,175.39124,5.093 844,66.22413,210.05264,32.279716,60.90793,5.09 844,165.05617,199.25931,15.087906,30.431854,5.074 844,172.54462,200.0762,14.618195,29.512268,5.013 844,-73.04448,265.9129,200.85388,461.54388,5.0 844,3.920263,193.8526,16.353018,42.06131,4.997 844,11.795704,189.74295,15.187407,36.85385,4.984 844,205.30432,213.93916,27.962662,58.05159,4.959 844,349.29367,196.42534,15.680237,30.40831,4.958 844,618.37354,237.12569,19.571533,46.49962,4.927 844,396.2638,223.15866,30.435791,53.16748,4.925 844,179.74881,263.268,34.034683,69.12543,4.853 844,569.311,220.4619,21.56604,40.528366,4.847 844,121.615456,225.24852,21.203667,37.138016,4.787 844,618.5875,488.70853,20.577759,44.14987,4.784 844,587.60406,222.49834,18.44751,34.75673,4.776 844,-4.1001368,138.04811,15.36856,41.70137,4.74 844,10.788946,174.68922,17.722672,31.229385,4.696 844,535.63763,312.2279,144.25824,341.5381,4.676 844,132.39912,201.98279,30.004532,57.62082,4.646 844,-4.4438167,201.28087,17.14268,40.42369,4.644 844,602.6126,231.59322,16.799194,38.767105,4.617 844,582.0342,225.32806,38.523193,82.86658,4.566 844,-16.376944,182.01105,49.982513,135.07419,4.556 844,64.04721,209.9722,22.191154,42.232574,4.542 844,341.10327,196.59879,15.044159,29.54367,4.542 844,129.97435,223.9519,21.019852,34.741486,4.514 844,108.08743,244.33458,30.602127,53.709183,4.467 844,599.82336,191.92184,35.467407,93.1416,4.458 844,260.135,231.38878,30.246185,71.18599,4.4 844,40.871414,209.90125,23.923126,44.14917,4.397 844,413.97455,236.77635,30.208984,63.38649,4.365 844,493.4529,227.20667,237.64395,515.2028,4.359 844,145.2135,216.3429,21.84224,37.262863,4.357 845,231.68443,206.89037,39.266006,132.33516,8.737 845,0.29432535,184.14505,24.026594,61.92102,8.403 845,187.95715,201.2324,28.69754,54.399902,7.895 845,202.76064,201.18587,19.147491,38.881927,7.689 845,210.50798,201.28972,17.888107,39.383316,7.34 845,611.952,-49.981422,40.014465,105.60411,6.998 845,241.32027,207.99704,30.571121,65.98758,6.637 845,-11.825932,477.14978,29.444014,63.874268,6.525 845,170.32828,200.6489,20.61148,37.79767,6.411 845,435.04626,223.02461,18.276459,31.2845,6.326 845,48.73307,180.5216,27.896576,60.457764,6.28 845,172.15097,199.61067,28.933838,55.389923,6.221 845,440.8629,200.39511,19.209412,34.18109,6.198 845,627.43036,-17.01057,16.666931,46.53204,6.125 845,-17.96063,-64.371864,56.3238,150.54388,6.098 845,212.89046,202.73041,26.726791,53.454376,6.042 845,626.7745,488.27957,20.126099,45.655243,6.038 845,-5.9873524,489.0291,18.35576,41.6286,6.031 845,363.80658,190.72195,17.710632,37.192398,6.003 845,434.99088,206.9643,18.347748,33.638916,5.996 845,472.53424,233.42834,22.608154,40.877228,5.726 845,-4.329101,186.81758,16.902683,42.367905,5.704 845,72.078804,211.49226,24.429497,40.525528,5.653 845,208.20117,204.95808,57.073914,163.76549,5.637 845,185.33447,200.39821,20.684113,39.048904,5.631 845,-5.788554,-17.923088,17.49913,42.80103,5.51 845,-20.964344,405.33612,77.38559,173.89581,5.489 845,79.51439,226.01366,24.912567,36.708664,5.455 845,443.01056,214.47018,17.42041,31.958725,5.447 845,612.5677,455.94482,39.613403,105.54968,5.447 845,196.36716,199.0699,17.2901,34.06218,5.442 845,248.65005,205.61215,54.49115,149.24948,5.387 845,-11.341551,-32.273556,29.56199,72.602394,5.347 845,265.25204,252.9801,21.15158,57.123108,5.329 845,137.63359,210.5322,30.37349,59.918396,5.192 845,-3.294797,167.71973,16.089012,38.918625,5.188 845,221.89711,205.2412,28.49083,53.178238,5.158 845,583.1815,413.33478,71.57068,175.2002,5.115 845,74.96133,184.05872,16.16333,30.513046,5.111 845,234.604,208.45961,24.691833,45.41156,5.105 845,483.6282,158.1701,29.53598,61.82434,5.082 845,426.8493,224.18819,19.154999,30.40152,4.993 845,-72.93535,265.8389,200.65675,461.1732,4.91 845,144.58275,205.208,20.503891,35.620346,4.907 845,459.74332,232.71295,31.633911,55.579224,4.862 845,558.8252,219.52164,25.169128,58.61667,4.81 845,178.02686,198.73297,19.016846,33.599487,4.742 845,2.9543848,179.47919,17.65694,37.0607,4.727 845,39.012917,177.3555,26.874008,61.34558,4.725 845,34.565727,164.58313,18.450172,34.147964,4.659 845,62.75209,187.76695,27.285522,58.78154,4.658 845,-15.592027,171.65213,49.949787,127.81412,4.643 845,370.29996,190.57857,17.245697,29.734695,4.622 845,466.0501,231.44772,20.835022,34.516327,4.609 845,536.4039,311.802,143.27533,340.25134,4.607 845,3.3514338,152.84398,18.222607,38.6082,4.6 845,585.27515,-99.99603,75.25537,236.15999,4.581 845,450.8841,207.42337,16.757874,33.364883,4.538 845,-11.076904,192.62231,30.199282,67.14258,4.532 845,235.50203,266.53406,32.62419,68.58685,4.508 845,589.42865,-61.996727,53.341125,146.61174,4.478 845,84.028435,186.43275,14.561928,27.448486,4.416 845,589.9995,26.820107,26.462097,72.70858,4.399 845,205.61179,201.17175,13.077667,24.467804,4.392 845,493.51138,227.4184,237.34982,515.1883,4.355 845,216.65399,292.96823,37.08133,75.76843,4.352 845,218.60396,203.12723,17.391602,36.005722,4.351 845,528.966,273.94418,31.845886,78.43851,4.345 845,618.57513,489.63504,20.024231,43.31363,4.339 845,365.6883,190.50665,25.510406,52.225784,4.242 846,312.83746,211.38779,19.154358,42.226242,24.66 846,369.99753,199.90436,22.106812,47.693268,10.243 846,627.11237,489.26114,19.485474,43.874115,8.196 846,508.0216,216.4366,14.216675,25.807022,8.052 846,1.9734323,222.19588,20.399733,46.78865,7.463 846,5.3375397,199.13257,27.920933,64.77704,6.94 846,612.71423,457.98288,37.844788,102.60068,6.63 846,627.1095,-16.589579,16.89679,45.04652,6.588 846,622.5692,-33.771603,26.705688,74.29366,6.53 846,565.56323,170.94789,28.76178,78.39116,6.473 846,501.9211,217.90689,13.66568,25.251572,6.41 846,576.84265,172.04645,20.53656,42.698257,6.362 846,619.22266,490.47372,18.657776,41.09073,6.186 846,460.03842,-33.832634,31.627594,65.55636,6.174 846,-6.0283194,488.99658,18.65554,42.78351,6.113 846,-17.808624,-64.823204,55.94711,149.30579,6.05 846,-9.050472,466.0761,37.76321,90.160095,6.026 846,532.0946,215.37485,16.182068,37.970627,5.76 846,378.0693,195.41122,17.844086,36.829605,5.708 846,320.29303,214.76906,18.148315,40.313065,5.662 846,-11.049513,196.73497,28.242872,68.910446,5.66 846,515.94244,217.16339,14.966919,31.003448,5.649 846,18.099573,210.95992,18.69409,41.374207,5.63 846,584.4675,413.45435,69.97461,176.28839,5.553 846,619.44666,-2.1856728,18.501709,34.60517,5.544 846,36.782425,219.90787,17.978489,36.266937,5.517 846,-5.7467465,-17.981203,17.4534,42.767696,5.506 846,2.9864144,203.14902,19.180763,43.30658,5.443 846,213.37546,214.38867,14.028488,27.952011,5.439 846,266.11847,234.02882,58.213837,160.15843,5.423 846,290.77142,227.38527,30.396057,74.77019,5.414 846,-11.336185,-32.355484,29.617846,72.631,5.392 846,104.507744,232.72478,23.123085,34.23085,5.353 846,493.07355,223.81848,15.122437,29.796066,5.345 846,27.216522,218.93723,18.249512,37.685425,5.325 846,209.05434,215.89754,22.108078,42.726974,5.293 846,-21.363724,404.23517,78.153076,174.67444,5.29 846,-5.5028105,215.05084,18.455574,46.46588,5.266 846,561.27527,177.97719,22.155334,51.295242,5.227 846,43.568977,222.24278,17.814056,34.68651,5.158 846,541.9619,247.68279,30.067993,53.1382,5.153 846,475.0882,-33.071278,31.39685,62.900475,5.145 846,22.114279,223.19139,29.943476,57.042007,5.137 846,602.91815,-57.776627,53.1817,137.359,5.107 846,-72.97276,264.3958,201.05745,463.30988,5.103 846,572.022,236.35054,16.807678,29.851944,5.077 846,19.85162,247.81683,34.254414,70.042175,5.011 846,564.4721,237.89224,16.616272,30.401978,4.952 846,7.0623803,160.45276,29.255114,63.576447,4.952 846,8.059608,229.8948,21.029993,40.660156,4.922 846,301.17902,221.22491,18.643951,36.489166,4.906 846,205.98187,218.52776,31.75763,62.7809,4.896 846,-4.7780137,158.42076,16.956303,38.71701,4.882 846,541.83545,-32.331963,29.191528,71.63188,4.862 846,577.4389,190.83847,19.41864,44.283005,4.834 846,571.35565,205.73691,17.614197,39.841583,4.821 846,499.384,232.04597,17.294281,37.096237,4.801 846,619.5256,215.87375,20.864319,51.24292,4.783 846,139.08063,246.44447,18.563858,29.483139,4.779 846,252.51273,219.03433,16.264679,30.631897,4.76 846,613.5184,238.96252,36.50287,106.04114,4.697 846,235.81866,215.82321,16.20578,30.644302,4.688 846,550.04443,173.27142,28.856323,77.058975,4.67 846,115.69232,199.4342,14.531418,28.91092,4.669 846,108.75577,200.8102,14.8591,27.679947,4.649 846,484.6185,221.75885,15.633331,32.500656,4.643 846,-4.221,201.59583,17.210468,41.872757,4.575 846,471.357,-20.548916,23.05426,42.339596,4.511 846,492.30728,231.63724,16.984741,37.681915,4.507 846,184.7191,219.54901,21.51033,32.411713,4.471 846,307.0724,218.06534,19.734497,43.763885,4.46 847,384.71356,198.90657,22.120972,51.567337,12.586 847,547.1683,216.43866,18.84491,39.864258,9.707 847,377.27267,211.21413,22.47647,49.968094,9.361 847,553.7385,218.3521,19.356445,47.568863,9.197 847,75.66768,234.3894,16.966019,32.667664,8.252 847,555.40295,215.14601,15.7005005,27.464966,8.239 847,588.1142,209.83775,15.447388,28.98796,8.159 847,480.91586,225.22342,21.128784,40.769043,7.602 847,68.177734,228.88576,18.16851,37.452408,7.569 847,83.30329,237.02536,16.94503,30.990997,7.299 847,166.65565,227.41533,24.197311,42.135605,7.275 847,304.13437,214.93353,22.354584,44.84262,7.092 847,627.024,488.2232,19.634094,45.29419,6.875 847,603.5023,-54.60577,52.993347,134.25766,6.867 847,297.83087,221.86943,32.601257,64.54219,6.803 847,378.69656,197.68364,20.480103,44.215485,6.793 847,370.94406,203.92183,21.10318,43.377502,6.77 847,562.10034,214.02539,18.832153,46.8006,6.684 847,-8.732175,465.3327,37.471,90.53735,6.544 847,-5.9598427,488.92157,18.221884,42.32788,6.476 847,580.0954,208.67435,15.381165,29.361588,6.357 847,570.8643,213.49292,18.264648,46.46393,6.201 847,35.48195,219.24948,18.641441,37.762512,6.091 847,613.0637,457.4443,38.140747,104.05673,6.074 847,-17.543379,-63.669846,56.22603,148.91324,6.023 847,-4.3513193,207.5136,16.918846,43.651825,6.01 847,392.09628,197.07903,20.132874,44.75786,5.979 847,10.631449,205.43701,16.730595,37.651764,5.973 847,-20.85553,406.635,77.28161,173.12305,5.848 847,3.7237744,208.3772,18.070278,41.007645,5.823 847,627.10016,-17.515697,17.499329,45.503002,5.64 847,-11.422024,-32.438225,29.819498,72.60918,5.506 847,474.6573,224.02623,19.629028,33.42003,5.502 847,-5.7733846,-18.062782,17.432516,42.88186,5.431 847,155.15256,233.49321,19.800568,34.838852,5.406 847,372.83862,197.46246,16.202698,34.508255,5.403 847,115.27816,233.1908,20.307365,33.31372,5.388 847,535.57477,211.88954,27.851562,60.308975,5.37 847,485.82462,221.80916,27.505585,62.17894,5.358 847,550.7397,209.91837,33.443604,77.574585,5.352 847,459.0733,167.92198,18.058594,30.54631,5.338 847,217.93343,223.33482,19.346466,34.32686,5.317 847,583.7084,414.08273,70.61908,175.3052,5.266 847,60.176804,224.21248,17.856827,33.476303,5.26 847,79.27647,244.65695,25.878242,56.797485,5.201 847,387.3488,205.32007,28.439941,61.906677,5.179 847,549.3171,209.17714,14.563904,27.462402,5.147 847,618.9289,489.9647,19.39978,42.774628,5.145 847,542.91815,212.92477,14.090393,29.06128,5.141 847,395.5246,180.11343,16.18158,35.584732,5.127 847,570.8833,229.87169,32.086975,62.854538,5.103 847,564.06805,215.4551,29.559998,66.684525,5.029 847,387.666,180.6677,16.07013,36.145996,5.003 847,588.34985,220.39305,17.545288,40.801712,4.971 847,585.55035,217.18094,32.49945,91.467316,4.961 847,23.704298,213.65344,27.043974,58.09091,4.933 847,-10.753799,201.86995,27.807655,67.91783,4.848 847,572.996,209.38522,14.519775,27.834457,4.831 847,225.50229,491.99548,21.545715,39.9469,4.792 847,489.17218,220.94727,18.986755,35.414185,4.779 847,595.82837,208.56158,14.990967,28.87352,4.776 847,184.09561,221.6858,23.902725,41.81871,4.775 847,401.33487,216.52753,21.965149,44.315674,4.745 847,186.42377,493.00653,20.271774,37.724915,4.719 847,-72.535034,268.58286,199.86737,460.39566,4.681 847,467.31613,211.3506,16.035126,28.74971,4.671 847,175.22015,232.21236,23.448761,41.146835,4.66 847,499.84042,217.36417,28.841461,63.24295,4.658 847,91.21321,238.9474,16.150597,28.714676,4.645 847,471.14185,227.92117,28.283844,54.232727,4.641 847,146.77328,234.93364,19.223694,31.464767,4.633 848,543.93915,167.05959,21.327454,47.328217,15.387 848,320.28876,213.52954,21.453339,44.99347,12.179 848,538.10864,157.75626,22.616943,45.561295,9.57 848,408.84473,202.53969,20.693878,52.995087,9.173 848,2.010597,230.78232,18.734976,36.62033,8.311 848,627.0184,488.8674,19.6734,44.716766,7.136 848,532.22235,216.10913,31.80188,62.14264,7.122 848,219.70547,220.89056,16.802795,26.590149,7.049 848,426.65836,244.60481,22.027832,45.197433,6.954 848,-11.478081,476.3216,29.220879,65.193054,6.484 848,52.330177,201.60939,15.162514,30.480408,6.321 848,-5.8211,488.47467,18.125301,43.103577,6.234 848,68.44695,190.3076,14.168617,28.437897,6.195 848,163.45804,219.53964,18.75975,30.483353,6.195 848,622.8726,-32.876064,26.878357,75.01465,6.137 848,561.65,168.37323,19.104126,34.66362,6.12 848,612.99194,457.55017,38.20685,103.84338,5.933 848,-17.03864,-63.144485,56.01948,148.17654,5.932 848,61.40965,195.6612,13.506771,28.856735,5.889 848,551.06055,172.42834,20.404785,39.59558,5.874 848,-4.334479,234.33864,17.131193,40.10109,5.799 848,60.947876,186.46959,15.953812,27.62384,5.767 848,169.89502,226.74532,19.633698,34.645523,5.733 848,627.35236,-17.064512,17.218567,46.062996,5.709 848,81.95882,211.52635,18.533669,33.83287,5.655 848,618.8741,490.36703,19.274231,42.13449,5.61 848,416.5224,198.65872,21.283356,51.526413,5.556 848,543.56165,150.23705,23.240784,44.80629,5.531 848,525.5694,132.2412,31.651733,63.699158,5.477 848,602.73987,-56.879097,53.69928,129.77997,5.463 848,83.95952,187.94547,15.361435,26.443436,5.448 848,-21.101624,405.13165,77.60284,173.83789,5.432 848,-11.407475,-32.621212,29.959309,73.52357,5.359 848,156.82722,219.29259,16.715393,27.611359,5.344 848,583.943,413.76907,70.457275,175.39499,5.333 848,388.7863,207.12515,16.232483,36.155533,5.33 848,570.17413,169.81593,18.273987,30.841766,5.321 848,9.889446,224.78114,18.521551,31.887344,5.284 848,58.65432,207.73528,18.768486,36.803726,5.232 848,401.46274,206.4641,25.202576,68.42937,5.227 848,395.14807,194.80669,18.605865,37.25232,5.212 848,543.7118,88.119576,22.117004,50.32601,5.177 848,68.49908,209.51302,18.572227,35.85013,5.171 848,85.44714,199.80699,11.918846,25.084915,5.143 848,371.63162,210.47,15.266846,31.026169,5.132 848,405.19647,176.11682,28.109375,61.64557,5.12 848,-5.788027,-18.135952,17.557323,43.41547,5.109 848,77.98935,199.1188,12.238617,25.70819,5.089 848,328.25778,217.33801,19.56424,39.677612,5.021 848,380.4264,210.43347,15.205933,31.027237,4.995 848,515.6773,214.06984,30.649048,65.04808,4.994 848,544.4331,223.51314,22.602905,43.270523,4.983 848,-72.62528,266.80484,199.92282,460.99643,4.976 848,3.4406853,214.69786,16.818272,35.949905,4.974 848,179.50972,210.1359,30.372192,54.85739,4.944 848,533.5013,102.13023,30.247559,66.49693,4.928 848,75.38097,187.62158,15.52771,25.976257,4.925 848,619.93884,-4.2641573,18.741882,40.307842,4.923 848,66.82373,176.6878,18.75705,29.818542,4.88 848,561.468,154.22636,19.303345,35.151962,4.859 848,402.62997,190.11256,20.75,44.198196,4.845 848,562.1941,181.37198,19.351562,34.604034,4.841 848,309.09534,218.42728,29.97116,63.67798,4.808 848,414.4699,216.77762,29.174225,69.52838,4.793 848,543.5156,111.18165,23.022583,45.808586,4.766 848,132.18289,223.35094,17.335846,29.544586,4.626 848,373.08536,202.8243,12.433441,25.253418,4.623 848,593.905,-45.25624,44.80188,92.3116,4.598 848,243.55994,222.53146,30.402618,59.158325,4.592 848,435.77643,206.10706,16.31131,38.368546,4.574 849,482.79083,208.56357,20.888123,61.201385,64.904 849,456.7929,189.41386,18.687134,51.990936,11.989 849,418.6475,208.28215,18.80777,40.85991,8.975 849,42.41272,217.61412,22.499252,39.68123,8.6 849,229.00179,218.13564,15.500412,29.489365,8.354 849,452.0038,200.36073,17.884644,52.764282,7.675 849,622.8885,-33.635345,26.62207,75.105385,7.543 849,115.70716,206.65932,18.441368,38.897858,7.519 849,234.96452,217.98146,16.066528,30.618881,7.081 849,426.49133,201.97195,18.588501,37.85498,7.019 849,121.7213,209.06424,18.356277,40.6214,6.776 849,139.04868,222.67212,21.148193,37.54654,6.745 849,626.77625,488.21957,20.097412,45.766205,6.666 849,627.13855,-17.854717,16.992432,46.74273,6.596 849,-11.296124,477.5168,29.021603,64.13199,6.572 849,525.0113,212.21826,13.596619,31.625534,6.571 849,517.947,211.70908,13.109924,32.32617,6.26 849,381.67255,154.03671,27.768494,67.99394,6.151 849,84.237946,207.09187,14.749863,31.067383,6.142 849,435.13562,197.05511,17.748474,41.104004,6.103 849,109.78317,208.0293,16.959091,34.428253,6.054 849,444.45612,203.97345,17.51587,46.379227,6.042 849,-16.713013,-63.233593,55.74582,147.99057,5.984 849,50.88316,213.06496,16.663357,29.511826,5.914 849,-5.7273335,488.7881,17.998096,42.107178,5.899 849,76.47618,211.64586,16.727486,31.035263,5.837 849,336.71454,212.80397,22.715576,49.30858,5.817 849,395.01672,205.43086,16.393951,37.807053,5.717 849,314.45398,204.84724,20.150513,39.15013,5.659 849,62.071434,202.09482,12.381348,24.771927,5.634 849,56.551674,214.56711,18.395111,32.82892,5.632 849,392.58282,176.32895,19.009949,42.964508,5.605 849,612.95233,457.486,38.43512,103.9819,5.577 849,497.10797,213.98854,17.565125,48.44197,5.562 849,423.52048,214.94899,20.800934,41.577682,5.552 849,186.01813,226.31894,20.386932,35.421875,5.456 849,-5.6215153,-17.815989,17.34953,43.33398,5.452 849,477.54517,199.3158,15.891083,43.75638,5.436 849,322.75702,205.34421,17.434814,31.767258,5.359 849,91.88859,208.67845,14.1649475,29.034409,5.325 849,584.0831,413.372,70.335815,175.84894,5.321 849,101.45186,207.82822,14.856247,31.40512,5.314 849,-11.247442,-32.801266,29.401648,73.55951,5.31 849,421.76813,192.70111,27.558472,58.611267,5.156 849,413.0397,215.78946,27.407623,58.334076,5.139 849,317.15338,206.54108,29.222168,59.035706,5.103 849,69.60442,200.0435,12.589439,26.345963,5.096 849,269.03876,183.948,14.12793,30.26146,5.088 849,-72.88705,265.47375,200.46677,463.1145,5.071 849,242.76584,219.48477,17.269104,30.298904,5.045 849,510.1505,208.62259,12.7213745,28.3947,5.0 849,-4.642816,220.02441,15.7475605,37.08661,4.99 849,430.89697,197.42856,25.941345,62.267,4.931 849,-3.8578396,204.53008,15.162766,36.315918,4.899 849,-39.729313,366.25668,109.75108,276.4639,4.884 849,593.2462,181.32068,22.669495,63.396378,4.855 849,486.42178,210.76744,31.305573,76.40074,4.806 849,387.79822,206.94144,16.667786,36.931793,4.802 849,531.39374,210.69128,14.571899,33.158615,4.795 849,602.7127,-56.029945,52.808533,133.40157,4.773 849,5.544325,196.10875,13.192846,30.775192,4.723 849,458.21228,215.74829,19.12143,46.12787,4.72 849,618.7832,-5.61784,18.519592,40.373497,4.712 849,-2.6591096,192.00362,13.4377365,34.09027,4.707 849,27.538498,208.42635,19.122036,37.92383,4.69 849,618.4571,489.72177,20.035522,43.18686,4.662 849,392.39868,145.05013,21.503326,47.334656,4.634 850,570.5498,216.88425,22.698242,50.790955,27.543 850,469.45648,200.68712,29.237213,68.13899,25.808 850,519.4535,184.96564,23.491333,70.28374,15.535 850,61.91084,221.93622,28.71761,64.82294,10.43 850,426.00894,206.35358,30.937714,66.673035,10.374 850,10.570511,200.44916,17.730648,45.278015,9.827 850,0.9696233,193.96637,24.568684,74.26257,9.66 850,495.35498,195.92154,26.234436,67.57794,8.987 850,485.6322,205.74556,28.219482,66.800735,8.9 850,453.4497,202.47354,31.599854,67.725555,8.842 850,560.94415,212.91539,27.076843,69.697525,8.714 850,3.9975345,198.88608,16.81444,48.804825,8.182 850,71.82411,222.56508,21.775284,43.54161,7.885 850,439.5135,207.0685,21.780487,45.99936,7.319 850,80.58299,224.92014,21.974518,43.171875,7.225 850,466.89062,205.15718,22.536499,44.25836,7.139 850,507.2922,191.32396,18.005646,53.307755,6.862 850,-11.983519,477.2232,30.196726,64.08423,6.693 850,-3.4064536,224.04068,17.975613,41.91873,6.667 850,504.72662,195.70584,32.5672,90.64868,6.625 850,517.7223,200.30568,32.378357,85.80461,6.575 850,554.9181,218.93259,20.334778,46.148315,6.485 850,89.18387,224.9108,20.807938,38.23813,6.453 850,432.7337,201.51872,19.97171,44.89157,6.448 850,626.6794,487.3045,20.099792,46.427246,6.42 850,-5.5347586,-17.429169,17.074799,43.201847,6.356 850,567.8126,205.03195,32.818542,82.81174,6.349 850,448.24857,207.04416,22.487366,47.296753,6.258 850,521.52997,223.6965,19.45691,49.214935,6.19 850,5.4207296,186.53076,15.012326,38.50879,6.058 850,-11.4207325,-32.53335,29.259245,72.77203,6.053 850,-2.5707612,189.00726,14.7463665,40.95613,5.993 850,549.5538,220.3385,29.389526,70.05209,5.955 850,357.10297,213.51663,29.364899,66.95581,5.945 850,491.07727,202.24785,19.564209,46.948822,5.937 850,-6.08243,488.59235,18.693058,42.88977,5.926 850,244.60507,218.50578,16.758636,32.5011,5.854 850,-16.662151,-62.847717,55.78612,146.30939,5.798 850,322.29855,206.50452,20.399475,45.32617,5.785 850,480.16782,204.92847,21.686676,45.531723,5.746 850,323.6714,210.54047,31.274963,61.152588,5.634 850,341.15216,220.09009,30.642578,67.32599,5.629 851,120.79118,216.14645,21.624542,36.65399,22.751 851,188.84818,219.4445,28.57785,61.99962,14.252 851,492.9685,145.4104,27.498169,71.56265,12.209 851,542.24005,195.13503,50.4718,127.4229,9.15 851,584.0708,208.9527,38.12909,98.522095,8.771 851,329.20483,203.6546,19.815674,40.437286,8.618 851,4.795019,177.60802,13.8540535,34.782013,8.329 851,12.287033,239.50845,14.170401,30.808655,8.326 851,107.619514,218.07013,18.967857,37.047638,8.309 851,541.0935,187.21223,15.869324,31.225266,8.27 851,91.53709,217.9877,17.52179,34.394836,7.983 851,548.9413,185.80397,14.423706,28.0542,7.97 851,6.3027105,238.08916,14.147344,32.870102,7.641 851,99.34791,217.7972,18.94271,35.226273,7.626 851,555.3478,185.83742,14.415222,28.786865,7.357 851,101.60408,208.64041,37.291183,87.74649,7.302 851,549.81494,192.47672,32.34076,76.35956,6.947 851,-2.0300965,174.08702,14.29084,37.4384,6.927 851,27.66178,238.98557,17.453863,32.609406,6.912 851,4.136797,163.07333,15.528898,36.616043,6.869 851,626.57623,488.16806,20.198364,45.656647,6.813 851,598.5703,208.04498,35.328186,114.6427,6.777 851,589.6137,192.3178,29.908752,77.02754,6.759 851,85.33654,206.14055,37.490417,88.691605,6.618 851,130.05228,205.6882,32.957245,54.256012,6.613 851,322.4391,212.35521,30.533173,63.899277,6.605 851,116.55292,210.68623,38.715042,86.126755,6.584 851,561.62744,200.93338,41.688293,94.36621,6.522 851,81.82439,222.16862,20.473358,38.168686,6.51 851,-11.160111,-32.262115,29.684868,74.31639,6.492 851,-2.77082,159.13034,15.22729,38.152863,6.393 851,-12.059407,476.94568,29.826591,64.153625,6.347 851,-5.6881514,-17.200712,17.841461,43.45675,6.282 851,-2.8812933,224.327,14.414545,36.158264,6.221 851,611.37506,-49.69589,41.215576,102.66129,6.184 851,448.52753,263.88324,32.092407,64.70834,6.005 851,147.4942,207.89226,32.303284,64.837845,5.936 851,130.81342,212.49257,39.994843,81.27086,5.836 851,179.80919,221.00674,31.508987,83.07187,5.834 851,-6.227231,488.72662,18.767532,42.944824,5.807 851,109.65892,209.78873,15.120361,32.27043,5.793 851,-16.71573,-64.471,55.31671,145.03738,5.622 851,76.85543,220.12805,31.214653,73.32672,5.61 851,603.8774,435.7797,53.67401,138.56961,5.494 851,499.7325,174.55856,30.310577,73.44641,5.481 851,350.17673,220.08481,25.924896,61.526855,5.376 851,338.92206,201.44827,17.27533,35.278442,5.362 851,485.5035,181.6251,30.682648,75.76305,5.361 851,-2.1080513,236.52078,14.562836,36.841675,5.301 851,11.914554,184.4255,14.408135,35.33676,5.29 851,19.769493,238.85555,15.343697,30.000809,5.256 851,418.83716,222.54698,20.175568,49.07521,5.221 851,83.85777,247.1655,30.650047,63.07556,5.2 851,614.42865,219.49683,25.10846,88.4176,5.197 851,517.35095,181.07759,28.58191,69.71776,5.175 851,618.2958,489.38812,20.187073,43.19409,5.172 851,626.98834,-18.388807,17.307678,48.65726,5.13 851,-21.261963,404.08212,78.54878,174.57315,5.104 851,402.08005,217.81313,20.551514,46.479202,5.078 851,4.339767,250.2745,16.695995,39.01477,5.068 852,567.1907,212.28108,21.70575,49.14427,86.669 852,590.45404,210.31786,25.369995,71.763565,57.311 852,436.18686,220.72565,21.93039,50.482117,47.597 852,437.03403,215.09824,33.731384,78.75336,10.041 852,503.20465,190.87405,28.019714,78.15701,8.923 852,59.415146,227.89355,18.615181,28.321503,8.519 852,203.84927,212.6818,19.027618,35.123856,7.965 852,-5.276263,-17.619867,17.733734,42.89884,7.926 852,210.7501,213.68051,19.417557,35.337585,7.909 852,-10.948262,-32.032158,29.539295,70.94869,7.667 852,222.70563,209.88985,27.124298,57.7462,7.515 852,457.9755,225.27977,21.136505,35.11348,7.165 852,251.10992,221.70238,28.575775,67.50096,7.155 852,622.2782,-32.33878,26.895386,75.74996,6.886 852,234.31686,213.52005,17.518951,29.037216,6.879 852,271.59326,215.80254,27.351654,67.31654,6.844 852,329.35767,207.50475,22.526917,43.513306,6.674 852,-6.157672,488.93695,18.53283,42.466553,6.501 852,-11.739113,477.12396,29.342375,64.26068,6.494 852,35.732964,226.24753,18.666641,37.470215,6.351 852,603.04565,-56.079002,52.974243,136.11813,6.235 852,185.83495,216.73413,21.906937,39.56122,6.207 852,74.3674,225.81433,17.581688,27.625107,6.196 852,193.95859,215.88156,22.22734,40.736053,6.194 852,2.6906967,-16.321825,17.419767,41.20611,6.139 852,627.21875,487.57727,20.189331,45.642212,6.102 852,-17.212584,-64.537224,54.99153,144.15424,6.081 852,280.30707,227.10886,23.08191,49.77777,6.057 852,228.9486,214.55928,14.876785,21.1604,6.052 852,218.76694,211.91162,19.977386,36.89247,5.956 852,65.45735,221.27219,19.057266,29.729584,5.941 852,239.36127,219.10802,29.239258,63.718155,5.735 852,613.4658,453.5071,38.451233,110.08725,5.716 852,89.61418,222.8325,21.582375,36.022354,5.705 852,3.1297624,225.33281,15.973185,29.728012,5.63 852,447.74652,224.47147,22.72116,46.229584,5.602 852,1.8129086,235.0491,33.20791,77.98428,5.508 852,233.833,220.08197,22.245346,44.432465,5.498 852,489.6497,215.67145,20.022186,39.405167,5.479 852,258.68173,231.86353,31.071503,77.14429,5.384 852,5.1116743,179.97766,13.4806185,35.344696,5.352 852,-21.146832,405.6727,78.09265,173.40323,5.349 852,493.42392,227.15378,237.22733,515.3473,5.305 852,483.67932,182.90408,30.770325,71.77826,5.271 852,-2.5006027,173.71483,14.111316,39.392548,5.238 852,423.587,211.03369,36.847595,69.58496,5.174 852,626.9713,-17.906826,17.303467,48.370426,5.147 852,534.65094,309.69336,146.6222,342.54895,5.137 852,-39.696285,368.88226,109.66278,275.12115,5.104 852,428.99255,215.65015,51.37555,138.25824,5.085 852,536.89233,244.56895,97.11853,282.75122,5.071 852,-72.98299,266.19482,201.08481,462.24585,5.057 852,584.1463,412.71698,70.20526,174.72803,5.032 852,196.56664,229.7223,30.635193,62.47557,5.018 852,361.9089,224.24207,20.906494,41.805756,5.013 852,575.35925,209.32372,22.37268,42.708694,5.001 852,177.0882,216.84161,22.481033,38.019302,4.876 852,12.292549,226.19589,15.639889,28.491745,4.873 853,462.13702,229.09206,27.97638,59.0764,61.198 853,619.4182,222.47482,18.713745,59.10843,28.492 853,230.91035,213.9378,23.571,40.647095,14.068 853,319.05228,208.64238,23.202362,44.911087,10.129 853,490.79797,236.35202,20.225464,41.770447,9.745 853,27.848043,194.781,30.00596,57.54152,9.307 853,481.222,232.80688,21.331055,47.347534,9.24 853,521.148,217.538,23.06488,45.98935,8.88 853,624.59546,215.16335,18.407959,55.177048,7.919 853,580.15106,185.07085,29.140808,93.553085,7.705 853,581.39874,141.62411,28.35254,91.93881,7.347 853,277.75415,240.95355,26.988342,68.76074,6.907 853,611.5482,-49.736454,40.06775,103.17442,6.832 853,193.0935,218.4227,21.477417,39.232697,6.646 853,39.161995,198.83205,22.871346,42.2874,6.384 853,-11.871956,477.0314,29.736462,64.23898,6.13 853,627.4037,-16.647514,16.73114,45.385128,6.096 853,-5.8701305,-16.896736,18.12975,43.16717,5.993 853,626.1884,486.5875,20.978638,47.465424,5.99 853,612.9784,455.09866,39.13617,107.29648,5.906 853,-10.848632,-32.326897,29.74194,74.59128,5.89 853,355.65057,201.46846,18.212463,42.76529,5.675 853,449.6295,226.1592,30.577118,67.984055,5.673 853,-6.219964,488.60922,18.70245,42.97696,5.625 853,614.9729,196.13557,29.680054,102.793045,5.585 853,340.09003,197.34245,17.233124,33.92694,5.569 853,568.11664,187.34659,26.990112,78.78964,5.53 853,346.52756,198.33592,17.493439,38.947067,5.516 853,-21.068512,405.77435,77.77925,173.75916,5.465 853,248.83649,215.04874,22.293701,38.81514,5.463 853,453.03162,229.85437,38.029602,96.5271,5.426 853,-17.411114,-63.853374,55.91684,144.38255,5.368 853,595.1598,-47.278492,42.298584,98.72215,5.341 853,467.57596,228.36203,36.98294,77.67743,5.295 853,233.96242,229.3752,19.663055,38.8459,5.256 853,371.41437,244.81,31.311768,62.793518,5.165 853,583.0523,413.4553,71.152405,174.85294,5.161 853,390.1281,162.20917,27.20224,72.918,5.085 853,485.07477,229.9349,37.15625,79.04758,5.067 853,215.45717,209.22842,29.88211,56.742157,4.995 853,-72.48253,266.69055,200.35355,461.22168,4.98 853,12.900949,185.35234,52.20704,95.561386,4.904 853,536.1192,311.22205,144.2168,339.79565,4.842 853,529.2376,210.20486,21.560852,49.52881,4.841 854,541.5226,236.75754,32.434692,71.44116,26.705 854,307.8109,210.16005,30.618195,62.071213,9.154 854,542.24194,228.01868,44.864563,113.87042,8.921 854,318.47192,206.74402,22.741913,48.564255,8.767 854,623.13745,-33.886555,25.720886,76.26983,7.215 854,368.42847,225.514,23.871399,41.376404,6.898 854,256.8478,214.02374,19.817291,42.84143,6.775 854,-11.445202,-31.797909,30.45306,73.95317,6.404 854,622.1876,475.51825,28.671875,68.74042,6.347 854,467.2921,232.08438,28.640503,74.506226,6.34 854,603.83777,-56.74859,52.53723,130.9733,6.228 854,-11.429415,476.61887,28.826208,65.12662,6.085 854,-5.90236,488.96182,18.235485,42.913788,6.049 854,-5.793432,-16.103462,18.39391,42.43809,5.999 854,348.32828,197.95493,15.356842,31.289734,5.92 854,626.8627,-18.07249,17.702698,47.609207,5.774 854,555.38556,233.06485,29.787292,69.83072,5.649 854,-17.442633,-62.74579,56.17656,144.91579,5.574 854,1.4330494,-15.356951,17.931551,41.58601,5.496 854,433.33282,224.3626,19.707184,35.727005,5.495 854,-21.196335,405.39844,77.94563,174.2287,5.376 854,1.0678673,297.65433,20.842651,52.126984,5.174 854,452.61685,-33.943768,30.082306,86.910706,5.129 854,598.1512,196.40948,26.76587,68.052124,5.032 854,603.27747,431.08655,56.809692,141.84808,4.993 854,355.46985,186.40186,16.951538,37.844284,4.973 854,558.2743,225.43535,47.26538,123.20741,4.946 854,246.79636,203.44931,27.727234,58.82141,4.906 854,327.32895,213.20944,22.86438,42.27719,4.879 854,251.02734,225.63013,18.248413,38.392944,4.866 854,-72.30443,266.60315,199.72763,459.98053,4.866 854,-3.6942503,158.46541,15.062691,36.231094,4.778 854,536.1753,310.8444,143.60217,341.15805,4.76 854,241.15585,205.98903,22.81485,47.2722,4.716 854,527.477,246.22595,32.00238,75.95026,4.63 854,384.2821,227.62117,25.144928,41.844284,4.596 854,454.31058,165.53325,29.7529,71.158356,4.549 854,569.0961,243.95462,19.42212,45.148407,4.501 854,494.0944,229.83063,237.26901,512.5357,4.497 854,340.9071,201.04686,15.02832,28.055511,4.414 854,619.53436,-18.472168,16.83545,45.533485,4.396 854,439.1382,226.37796,21.03122,40.046844,4.375 854,-3.44693,224.31522,15.192114,41.854797,4.356 854,4.4355726,171.5188,15.304923,29.795837,4.34 854,265.50983,216.39569,18.899292,38.092117,4.33 854,375.84518,231.93109,23.177826,40.54129,4.281 854,3.6302967,155.03818,16.690346,33.78366,4.238 854,594.55164,-45.508736,43.16797,94.38952,4.22 854,481.49033,221.79626,19.420471,43.517548,4.209 854,443.93124,154.71407,29.21695,65.915344,4.154 854,83.70785,210.31516,29.5792,55.519073,4.133 854,337.22968,214.43626,22.525696,41.375595,4.117 854,589.0123,188.95883,11.785645,25.10347,4.076 854,587.869,336.27942,30.553772,55.528046,4.067 854,581.48364,187.61969,12.350708,26.340775,4.041 854,576.7242,231.49487,44.484253,129.97284,4.024 854,-7.8461266,7.22369,38.092598,105.15634,4.02 854,473.57324,173.15762,19.122192,38.977478,3.995 855,96.37921,202.86053,22.873978,41.18193,7.976 855,307.01627,202.26366,29.7789,66.53096,7.658 855,1.5372932,195.85909,20.099693,36.46161,7.358 855,-11.739883,477.737,29.479132,63.18927,6.936 855,627.1799,-18.298393,17.190979,47.2778,6.9 855,622.6294,-33.417957,26.51538,75.6104,6.701 855,3.9294987,188.42682,15.806992,30.851501,6.611 855,-6.185378,488.74826,18.596992,42.402496,6.478 855,-3.971007,189.70824,16.165283,35.783936,6.367 855,626.2047,487.7149,21.172058,46.039368,6.34 855,316.35126,198.41774,31.018738,61.80342,6.295 855,-5.59412,-16.052265,17.54839,41.930683,6.295 855,258.5211,217.09285,19.193329,37.705063,6.261 855,120.27478,201.64198,23.32846,41.640915,6.212 855,565.1979,193.4444,15.172119,30.288208,6.127 855,-11.175528,-32.45922,29.854326,72.84233,6.067 855,-17.369019,-63.126995,56.19049,145.19287,5.993 855,573.139,195.68542,15.765991,29.235092,5.8 855,-2.9699113,175.49272,14.08529,35.579865,5.774 855,-21.027664,405.319,77.31724,174.37143,5.751 855,619.755,-5.1760015,18.342651,41.311417,5.599 855,103.390366,200.5854,24.104286,37.159485,5.512 855,612.7565,454.42212,39.210693,108.19043,5.402 855,266.80087,220.4091,17.73764,33.86461,5.396 855,89.213295,198.83012,23.396446,38.2733,5.276 855,581.1408,194.96521,16.541016,31.2211,5.267 855,584.04694,413.38098,70.531555,175.07593,5.238 855,4.5229635,172.83385,14.905982,31.951187,4.97 855,493.36978,226.74988,236.77902,516.37585,4.95 855,-3.3264315,158.44662,15.266204,38.468018,4.94 855,588.3672,198.9215,17.829773,33.594696,4.914 855,523.36096,-15.7741995,15.692871,40.239468,4.891 855,602.83215,-55.773685,53.71228,133.69603,4.88 855,113.74195,206.15388,21.279198,41.28868,4.815 855,-72.200455,267.3084,199.15921,459.8548,4.802 855,515.46826,-14.188591,15.908752,38.287453,4.794 855,531.56226,-15.983219,16.246643,40.623108,4.79 855,106.43925,213.2204,19.047241,37.93277,4.782 855,534.7248,310.013,145.77899,341.90753,4.718 855,539.45154,215.6651,30.240417,45.92166,4.702 855,355.89453,196.55222,16.163025,31.600891,4.676 855,594.6699,193.08546,18.344666,34.87906,4.62 855,363.8098,199.51373,16.549866,33.717163,4.56 855,594.0553,-45.827335,45.544556,95.57939,4.531 855,-16.410645,156.33282,49.553257,125.72226,4.455 855,13.335404,185.14764,14.312968,26.8096,4.35 855,402.22327,204.86398,16.644684,34.69861,4.334 855,620.19904,233.539,17.446106,36.99521,4.323 855,-5.252047,206.59904,18.156149,41.182922,4.314 855,347.4179,200.30186,18.765228,38.20877,4.312 855,2.361658,-13.659331,16.947283,39.40386,4.31 855,253.59833,203.14056,26.946747,64.58255,4.31 855,273.24435,211.00433,19.842834,38.21489,4.307 855,617.64734,488.74707,21.694214,44.723633,4.276 855,148.99191,218.55286,31.786575,58.87607,4.254 855,536.3235,225.32138,23.10498,33.40918,4.246 855,1.916523,207.84329,40.046635,100.01181,4.243 855,254.80025,187.34792,10.731186,22.92096,4.208 855,539.10156,-18.351591,16.83435,42.4962,4.205 855,556.85675,190.60205,15.729736,30.629547,4.162 855,-8.296009,6.272644,38.243504,106.02274,4.154 855,395.85587,212.25606,18.803558,38.02861,4.147 855,466.8767,238.22589,20.628967,37.73822,4.139 855,2.2623205,490.0913,18.83844,40.236145,4.128 855,2.3231382,213.17285,18.660595,37.203537,4.103 855,-5.288561,265.46692,16.624695,39.600403,4.102 855,5.7138767,470.47946,37.152122,90.737946,4.102 855,260.8018,206.08968,13.374359,19.741364,4.099 855,-5.880969,247.22995,16.552464,38.618286,4.086 855,-4.6542377,300.86932,15.728781,38.178986,4.066 855,78.44882,192.97226,28.817856,49.779892,4.063 855,612.5608,-1.2919273,17.654541,35.214672,4.058 855,586.1732,-101.7622,75.80316,234.90735,4.035 855,347.94855,190.09978,16.98587,32.64171,4.03 855,74.1487,167.5859,21.863663,33.746582,3.973 855,480.6555,238.0114,23.474731,40.326584,3.972 855,331.0177,206.989,29.515625,57.140335,3.958 855,265.43658,206.98044,20.346313,36.140427,3.936 855,116.196945,181.92267,34.165924,57.597412,3.934 855,-10.107746,168.06448,27.548336,62.57425,3.931 855,253.80663,171.05936,13.152969,27.103287,3.913 855,10.791984,194.36418,17.841946,31.575317,3.893 855,261.99994,186.23291,10.651733,23.822235,3.89 855,44.808754,194.62332,30.117104,46.11487,3.878 855,250.27563,215.75583,20.479584,41.643097,3.875 855,3.6136174,247.9314,16.479492,33.88678,3.874 856,335.4675,217.73293,24.884369,46.97496,12.17 856,151.80823,217.45392,24.349213,42.98468,8.885 856,-5.261689,200.24529,18.420113,42.629944,6.817 856,-5.6433105,489.1306,18.10914,41.551025,6.55 856,-4.465273,142.17963,16.068579,37.582947,6.439 856,626.6755,488.03812,20.159607,45.71933,6.313 856,-8.889629,466.42142,37.57579,89.389984,6.273 856,380.94113,198.33804,16.307373,40.40674,6.256 856,622.64777,-33.74114,27.302124,74.54476,6.162 856,-11.599623,-32.322105,30.77147,73.537,6.141 856,-17.461123,-63.181084,56.275154,145.5486,6.082 856,498.06842,221.44168,29.148926,71.107025,5.918 856,430.90134,206.38141,18.289673,42.294693,5.881 856,48.522835,203.58353,24.469368,37.10202,5.723 856,612.82135,456.8418,38.859924,105.20508,5.632 856,-5.739999,-16.238522,17.902264,43.001858,5.57 856,602.5602,-56.79648,53.646423,134.46442,5.568 856,-4.106459,125.7625,15.356079,35.35904,5.546 856,-21.293545,405.05365,77.951126,174.12189,5.438 856,315.04694,223.84323,32.381348,56.085907,5.316 856,159.3105,213.90666,22.801285,39.193253,5.289 856,-3.906288,157.97232,15.619307,39.4393,5.18 856,583.55524,412.82495,71.224304,176.35223,5.163 856,-4.2424407,181.26248,16.036541,39.301758,4.991 856,385.24243,211.26566,19.940521,39.0851,4.981 856,-72.49543,266.53613,199.73425,459.91833,4.946 856,314.34094,227.87021,21.95755,38.398346,4.928 856,56.485405,197.18594,21.65171,29.842087,4.918 856,3.621097,144.75075,16.23286,34.41841,4.917 856,372.17157,224.2025,31.615326,67.31023,4.903 856,626.89197,-19.179888,17.886108,47.04917,4.864 856,-10.129882,126.86952,27.52169,67.21886,4.804 856,536.30133,311.82422,143.64807,338.33105,4.758 856,363.35648,207.62532,17.90567,40.514145,4.756 856,158.51662,230.53516,26.536148,40.04608,4.711 856,594.7811,-47.95072,43.42572,100.10754,4.669 856,352.91415,213.28815,22.378754,45.331818,4.62 856,466.9815,-12.566342,16.68103,36.993904,4.62 856,408.98425,224.74025,19.556458,37.649734,4.581 856,580.51935,164.04692,16.698792,33.544144,4.566 856,586.62604,-101.17505,73.942505,234.72594,4.54 856,3.871632,256.9838,16.126947,32.378998,4.536 856,275.28528,228.5619,18.387238,36.07402,4.5 856,438.45892,247.99675,32.70883,62.056168,4.478 856,426.8442,230.86911,19.095123,37.49649,4.473 856,493.4534,228.9762,237.94382,513.5776,4.45 856,127.998695,212.37457,22.528435,31.878052,4.436 856,0.52534103,195.05,25.586386,60.828873,4.422 856,587.6571,165.36305,16.529297,31.246475,4.372 856,385.9232,193.74109,17.151642,39.871063,4.369 856,572.45886,165.19661,16.621155,33.233566,4.358 856,499.02905,196.54369,29.343628,69.19743,4.353 856,566.3806,261.28836,27.690552,60.529053,4.343 856,341.3824,221.63243,33.54004,62.334732,4.263 856,419.58734,235.72588,32.416504,58.392136,4.255 856,451.45898,251.31587,29.538666,61.41725,4.239 856,2.8561525,491.0816,18.042885,38.685913,4.227 856,374.92783,172.81305,27.008484,65.81111,4.191 856,474.4828,-14.000875,17.013733,38.406578,4.184 856,49.877224,189.16049,19.694294,30.145004,4.177 856,580.68274,248.67522,37.73932,78.99077,4.168 856,-3.8461614,348.8977,15.122437,38.638214,4.163 856,-8.066809,6.8213196,38.055534,105.06388,4.161 856,597.3821,243.52321,36.31537,84.07619,4.15 856,5.551511,470.03687,37.354748,91.50232,4.107 856,524.9874,-13.209547,30.658691,61.10621,4.088 856,-4.678736,107.1913,16.248951,37.898285,4.079 856,613.83844,213.51474,34.848816,98.88641,4.079 856,529.0169,206.34155,22.174744,38.14853,4.075 856,64.51837,195.2564,21.652596,30.313232,4.071 856,133.59825,208.03136,30.6483,48.919662,4.071 856,1.9938958,-14.369355,17.316103,40.4486,4.055 856,618.5662,489.7543,20.006226,42.64969,4.044 856,-9.496057,166.16081,27.530945,67.65697,4.028 856,379.0842,215.69405,20.92572,42.032883,4.011 856,163.30179,234.8103,32.303955,48.012024,4.011 856,459.02896,-13.466924,16.43628,37.129032,4.002 856,147.82138,211.3997,20.764343,31.965683,4.002 857,395.91245,192.61096,18.60495,49.985046,9.803 857,617.1975,239.38797,22.874878,78.66962,7.983 857,426.06598,205.44298,29.463501,63.47386,7.791 857,622.7003,-33.338295,26.337708,77.44674,7.583 857,327.01526,203.91061,26.31128,63.83008,7.453 857,529.4076,194.8502,25.0448,50.37668,7.383 857,316.17743,219.9469,29.98767,62.156982,7.363 857,436.12103,142.66171,28.70691,83.5345,7.224 857,-5.714345,-17.027035,17.078156,43.028404,6.979 857,626.4475,-18.787378,18.1167,50.083366,6.501 857,616.5562,185.6008,22.779724,88.32022,6.204 857,423.77203,135.72891,27.069336,88.84686,6.126 857,-17.127972,-63.797943,56.040043,145.59346,6.1 857,-11.25972,476.20505,28.720913,65.76724,5.988 857,177.78862,213.58768,20.990753,35.00029,5.978 857,586.46124,222.32907,19.393005,41.872345,5.903 857,621.6845,477.59186,28.848328,67.091736,5.863 857,-5.564061,488.5429,18.027859,43.263306,5.805 857,397.61203,203.75613,25.350586,56.98639,5.67 857,-11.65151,-32.60674,29.678493,72.984795,5.585 857,-38.841125,367.44708,108.4955,274.92047,5.574 857,426.0244,230.43555,32.756256,55.755676,5.546 857,379.0246,176.72035,17.435638,52.13385,5.506 857,614.7364,154.2381,24.69574,84.84793,5.47 857,584.0803,208.32077,35.757507,91.06271,5.354 857,348.31897,233.66725,30.169128,59.755905,5.346 857,602.58044,-56.163555,53.31671,133.36848,5.325 857,1.0732305,197.26256,21.754595,40.709656,5.271 857,378.84637,209.88617,16.753601,37.626022,5.21 857,334.3581,217.42981,30.603882,64.08502,5.194 857,-4.6569176,139.97295,16.736908,39.85457,5.165 857,-3.6323662,201.11754,18.392872,41.59584,5.131 857,603.3525,435.2601,55.51886,139.48996,5.056 857,388.91476,179.0095,17.237213,50.659973,5.052 857,590.01025,169.61696,26.353394,69.59039,5.041 857,2.6522522,141.73375,19.262428,38.146713,5.025 857,-72.79309,266.54816,200.20935,460.1607,5.003 857,490.8664,204.88293,18.698761,39.064194,4.942 857,-3.9277031,174.43367,16.564558,39.08914,4.904 857,595.923,260.02463,19.56726,36.183838,4.885 857,314.9665,225.83644,20.327393,39.67604,4.833 857,-17.60535,434.7253,55.038273,139.98459,4.727 857,535.7697,311.89587,143.9372,340.20264,4.658 857,615.7012,-21.982046,25.302856,75.996956,4.651 857,443.40573,205.72247,30.083221,63.423187,4.649 857,-4.322612,155.75848,16.78734,40.90251,4.59 857,336.8235,202.9943,20.543701,47.46634,4.59 857,341.84045,192.61494,28.028656,56.68248,4.588 857,-16.363533,172.06194,51.495224,128.62758,4.581 857,540.13513,191.53412,29.392578,61.8676,4.573 857,329.71786,200.88153,19.680939,39.785507,4.571 857,453.36243,221.6852,33.516815,59.648483,4.558 857,603.8901,214.49178,33.493225,102.22197,4.486 857,-8.283181,6.57325,38.491146,105.09312,4.414 857,2.758336,247.1215,16.89405,31.870316,4.406 857,597.5187,152.71765,29.145996,79.02113,4.366 857,493.14987,227.26141,238.35172,514.7377,4.362 857,471.6248,174.22945,27.070099,73.382675,4.357 857,558.7759,221.94626,51.649536,111.847015,4.34 857,594.979,-46.1074,43.10193,97.77016,4.315 857,269.43814,177.38406,12.913452,28.265366,4.271 858,325.61008,205.8869,29.05957,66.23712,13.545 858,24.560461,215.75159,22.787447,47.818054,12.462 858,17.803684,214.05157,20.392544,45.612396,11.591 858,32.463074,212.3169,22.691338,46.268494,10.942 858,10.470116,214.71661,19.601788,44.6015,10.695 858,420.9972,166.3616,26.177338,75.09982,10.065 858,36.157253,209.13472,29.661701,62.643295,9.72 858,627.1113,-16.509996,16.904114,46.32595,8.779 858,47.750893,213.20264,24.456818,43.702637,8.429 858,396.13602,213.37987,15.008057,36.50786,8.39 858,622.9699,-33.207783,25.922058,76.2605,8.195 858,60.52265,212.38004,29.589668,62.260468,7.915 858,380.6229,205.84547,16.1987,38.940445,7.207 858,-4.321919,217.29483,16.421219,41.54486,7.119 858,-12.0035,477.84875,29.533632,63.33142,7.091 858,2.1847458,219.90706,19.673338,45.949875,7.051 858,424.42715,200.76518,26.069122,65.42125,6.905 858,316.50568,213.52829,29.467377,66.09067,6.646 858,20.376778,208.43161,38.40582,87.23282,6.61 858,-6.162919,489.36908,18.498964,41.88562,6.551 858,387.52313,207.9433,15.034485,36.303864,6.507 858,-17.171553,-63.300133,56.18801,144.1288,6.127 858,360.53357,217.20834,19.643768,44.618713,6.112 858,6.1952376,209.27396,26.98081,72.839294,6.06 858,-11.135988,-31.69175,29.408512,74.35112,5.964 858,4.287986,279.87415,17.562286,33.88025,5.904 858,358.62003,191.9598,28.563477,63.76201,5.856 858,626.4638,487.34607,20.637024,46.11371,5.856 858,602.6953,-56.382896,53.334473,134.17517,5.849 858,-5.6891136,-17.127712,17.7081,44.0638,5.821 858,333.2453,216.92445,30.357452,66.15846,5.782 858,-2.7833037,207.4069,15.353851,35.140305,5.742 858,109.61917,225.56879,31.913223,70.621826,5.713 858,409.1461,169.32314,25.639618,80.21709,5.665 858,474.24353,214.07791,28.242493,66.620636,5.615 858,-10.409169,215.47198,27.455547,70.42398,5.524 858,5.1724434,211.85243,15.466713,31.090607,5.458 858,350.90164,206.74149,26.737366,61.465576,5.43 858,619.13086,-15.694035,17.086792,43.57429,5.373 858,11.162816,209.22722,16.683887,28.388641,5.364 858,612.9725,453.11597,39.08557,109.12555,5.353 858,92.25063,218.69402,29.113876,62.290237,5.311 858,70.269226,222.12372,28.973114,65.52582,5.298 858,56.26587,218.15707,23.505539,46.025757,5.278 858,335.6482,205.76862,22.04303,46.406723,5.239 858,121.8594,231.40085,31.901802,58.563904,5.084 858,4.3643856,199.39359,14.982264,31.540817,5.084 858,108.89805,292.78522,28.225304,69.14441,5.074 858,-21.044537,405.2504,78.01654,173.79721,5.035 858,-72.433105,265.826,200.54791,462.81677,5.035 858,-39.78222,368.24915,109.59965,275.81628,4.992 858,476.45816,240.25644,30.49646,65.752594,4.968 858,378.9377,219.30374,19.990387,44.137604,4.931 858,583.25653,411.54193,71.409485,176.76355,4.915 859,137.13295,216.01416,20.780594,43.66095,13.53 859,144.919,217.25755,20.11438,41.16658,9.069 859,179.47705,228.54152,30.962708,61.309708,8.356 859,465.17834,201.12784,28.827759,72.150055,7.915 859,153.45534,218.21753,19.662659,38.466858,7.805 859,420.06198,208.5102,14.756195,39.10617,7.164 859,158.59819,219.06535,26.980179,57.330093,7.159 859,621.97394,-33.22103,27.174377,77.10566,6.911 859,122.27402,216.12512,20.231552,41.49167,6.85 859,3.9009972,185.46698,16.547527,35.92102,6.84 859,130.74883,211.01343,20.254044,41.748688,6.756 859,626.5422,487.5067,20.716614,45.449585,6.441 859,-8.595238,466.47388,37.26441,89.65112,6.293 859,316.9193,212.41129,29.087463,61.847992,6.12 859,-6.062932,489.52222,18.31055,41.32019,6.101 859,219.28079,229.53043,17.826569,23.920532,6.088 859,626.6607,-19.369215,17.89862,49.47512,5.948 859,620.07916,177.3135,18.890808,53.403534,5.911 859,-17.322754,-63.389973,56.315964,145.71011,5.887 859,339.2972,202.39542,16.66452,28.500809,5.876 859,177.52913,228.15297,22.856186,40.642624,5.852 859,4.653346,170.8371,15.904061,34.883835,5.842 859,-2.9222274,175.0109,14.988472,37.269302,5.841 859,613.0865,453.1332,39.638733,109.43198,5.784 859,-5.2243166,-16.175884,17.429897,42.583218,5.638 859,602.60333,-55.995796,52.497925,133.25075,5.575 859,335.6375,203.5948,26.624298,64.52144,5.509 859,-20.90106,406.03433,77.455086,173.62363,5.485 859,464.64423,147.14288,23.22351,59.235336,5.459 859,-11.089144,-32.93565,29.934698,74.71529,5.396 859,-3.2509766,157.22299,15.496262,39.163895,5.267 859,350.91064,220.40134,26.208862,66.82327,5.156 859,10.739996,186.23529,16.581568,35.804245,5.136 859,227.5844,232.74629,17.230286,27.18776,5.134 859,87.01405,188.50787,27.554771,53.426468,5.134 859,166.95433,225.09898,30.669647,59.515274,5.124 859,455.4016,149.52017,29.060638,83.36046,5.097 859,131.65134,234.74158,18.094849,34.82257,4.963 859,570.15234,200.22444,28.84668,77.37059,4.961 859,-72.02127,267.4476,199.43231,460.38382,4.905 859,332.77563,202.39122,16.102417,28.080994,4.903 859,538.26465,232.62598,20.378296,32.91336,4.899 859,132.81805,208.57169,16.117981,26.147324,4.886 859,544.6825,214.40198,50.122314,117.63422,4.843 859,535.69037,310.54846,144.0741,342.70642,4.819 859,324.72058,201.86745,15.750793,28.811783,4.788 859,583.02026,411.3227,71.76172,177.1623,4.783 859,417.6694,227.55992,21.768738,42.404037,4.782 859,617.97284,-18.984188,18.631653,49.800865,4.744 859,103.35265,210.05908,27.14634,65.9422,4.706 859,493.5999,228.06158,238.00775,514.4152,4.698 859,-3.1117525,188.89093,15.717023,37.11386,4.635 859,548.9743,227.80118,34.463562,62.913452,4.633 859,525.67944,209.08282,28.717712,55.707916,4.574 859,613.50256,-23.87265,27.288574,79.05284,4.562 859,211.3703,230.89212,18.434418,26.488434,4.557 859,114.64113,213.17267,18.38292,36.44339,4.503 859,403.03967,229.06972,31.601898,62.21611,4.503 859,594.47516,-44.784325,43.51593,97.49379,4.462 859,226.83038,222.8837,17.734802,24.904724,4.444 859,573.4719,203.55803,47.999573,119.05055,4.443 859,472.7707,240.30327,21.71997,43.25276,4.383 859,170.56104,223.87292,21.142822,34.557434,4.368 859,586.63257,-99.7823,73.522095,232.94797,4.365 859,-4.654608,139.11404,16.610985,40.99652,4.35 859,139.97597,207.6576,17.121552,26.383133,4.341 859,11.455617,172.54681,16.286293,33.620407,4.302 859,618.3713,489.39252,21.199707,42.728455,4.301 860,623.04236,-34.219707,26.373657,78.44549,9.978 860,627.01984,-16.394928,17.343262,46.479492,8.271 860,578.2983,203.87035,18.68512,43.34424,7.213 860,333.9343,208.30373,29.058136,62.128586,6.965 860,318.37885,204.44875,28.662476,65.0916,6.954 860,179.4423,206.8825,16.746338,36.807724,6.939 860,626.5603,488.19077,20.905212,44.039703,6.571 860,569.09045,201.98041,20.257812,48.2621,6.472 860,370.08542,200.19284,19.30072,47.45903,6.39 860,387.36392,249.6643,30.701294,67.5249,6.332 860,172.02838,209.2146,16.59056,33.398758,6.127 860,556.3984,221.16621,30.720886,68.03725,6.035 860,-17.217451,-64.38346,56.335655,147.32584,6.006 860,-9.053945,464.74542,37.661057,91.67804,5.941 860,612.9255,453.64474,39.093445,107.96182,5.917 860,560.12994,195.73047,27.04358,69.87213,5.894 860,618.9981,-16.318659,17.382507,45.38193,5.891 860,-5.817191,488.28754,18.327797,43.66449,5.873 860,187.20065,208.18518,16.459106,34.71083,5.861 860,552.79895,99.83237,21.133057,50.24057,5.694 860,337.33157,195.93596,21.221954,49.34134,5.653 860,614.7491,-17.06562,26.76654,69.48064,5.651 860,-11.2717705,-32.84728,30.524712,75.319405,5.649 860,396.87378,258.76807,31.661041,62.596863,5.61 860,-5.1620245,-16.557697,17.370066,43.491955,5.434 860,-39.976738,361.15662,110.85817,280.35382,5.427 860,55.019836,175.54414,26.795212,52.64705,5.373 860,560.96875,110.05219,22.124634,49.619194,5.362 860,602.9939,-55.600716,53.381226,131.88722,5.331 860,532.6679,95.28042,30.541687,67.505714,5.272 860,-2.4198241,168.40408,13.781462,32.975693,5.176 860,545.46014,91.27321,22.192444,53.670486,5.133 860,-72.72745,266.50867,200.61372,461.07056,5.068 860,66.16992,180.2507,18.499954,32.95906,5.037 860,429.51413,240.1675,15.250244,35.348892,5.023 860,563.2413,189.46222,19.858704,44.959686,5.012 860,59.458813,180.24341,17.83775,32.109955,4.947 860,349.8036,212.00902,29.598633,62.888565,4.943 860,583.26227,411.8765,71.5885,176.67935,4.929 860,163.97813,209.4709,16.930008,32.63257,4.841 860,4.846664,174.24472,14.086573,27.871735,4.831 860,2.2735643,198.69592,20.255367,43.655243,4.78 860,194.78653,208.56763,16.933594,33.911697,4.768 860,344.66812,211.09018,22.06314,46.436615,4.758 860,7.4957952,184.89865,27.434616,59.374268,4.757 860,458.70764,207.42366,16.319794,42.200775,4.717 860,535.85986,311.092,143.94226,341.67532,4.705 860,373.40497,244.5235,35.908997,66.37366,4.67 860,461.72357,121.53994,30.140015,67.047585,4.629 860,555.5279,120.95363,29.73529,70.70126,4.625 860,529.16406,101.22769,22.96997,45.57846,4.589 860,388.17297,195.5972,16.178802,35.478683,4.574 860,627.55334,3.143978,17.255493,45.087475,4.57 860,618.79016,490.92474,20.464111,40.586792,4.56 860,310.27332,211.46936,26.191406,58.22406,4.559 860,413.60843,242.32513,15.457275,33.057556,4.549 860,345.80295,193.14969,18.413055,27.681702,4.542 860,403.1895,244.1174,18.602905,38.807434,4.537 860,-4.039917,179.3234,15.296464,38.098892,4.505 860,28.405186,182.31856,28.522034,60.231354,4.49 860,573.2519,195.29057,28.018677,64.46614,4.488 860,597.6961,180.09055,14.290161,32.863297,4.475 860,493.62024,229.15134,237.52228,513.3721,4.466 860,-17.610184,432.69214,55.431004,142.55951,4.454 860,264.8627,226.8351,20.726288,36.939804,4.435 860,243.29349,211.7046,18.59845,25.719757,4.426 860,386.5781,203.4712,18.875397,47.23906,4.418 860,433.97302,241.76585,18.524261,38.76503,4.4 860,3.672555,185.11575,17.22438,41.01805,4.359 860,617.5733,386.47537,23.275757,51.16748,4.302 860,587.51086,203.85924,17.554993,42.795654,4.28 860,394.75104,191.67029,17.439575,39.35054,4.256 860,402.0364,242.40886,40.707306,88.670425,4.256 860,363.6823,197.71774,18.270447,33.792084,4.235 860,49.934563,180.02704,20.47219,44.300873,4.231 860,268.66766,169.75343,14.639862,29.52005,4.23 860,-2.5638623,148.27812,13.956305,38.573456,4.222 860,330.5031,223.16159,20.550903,46.682007,4.204 860,332.08896,197.02335,18.052185,32.342957,4.19 860,115.21104,187.7366,17.74543,30.640732,4.18 860,-8.796004,370.0459,37.849613,110.27557,4.179 860,107.48318,194.28734,17.738716,30.943771,4.175 861,392.2066,213.6549,22.840942,47.375305,18.634 861,447.5666,213.15855,23.799744,49.685776,15.813 861,144.25407,233.01172,23.670135,52.66681,10.218 861,2.7568603,216.9077,18.629034,50.547592,8.157 861,23.422806,206.67923,27.344017,72.4559,7.953 861,345.63812,203.2554,23.996155,48.88159,7.797 861,6.1456547,208.51755,27.996473,75.34381,7.361 861,35.808586,208.8465,29.846184,67.22336,7.312 861,333.31546,207.23433,30.178314,68.28822,7.115 861,387.07196,206.158,21.149231,44.10945,7.004 861,31.985172,217.88399,23.01067,48.38353,6.904 861,410.7422,217.4587,20.041992,44.78911,6.582 861,-2.2168689,206.9889,15.408491,36.53325,6.521 861,148.16336,236.09515,30.540466,71.16583,6.461 861,623.14276,-31.963684,26.492554,74.56633,6.426 861,-11.788931,477.75723,29.577559,63.532867,6.397 861,329.0646,215.53809,22.916107,54.20102,6.352 861,388.67953,219.6267,30.423126,67.88759,6.15 861,-5.875153,488.83633,18.274736,42.674652,6.095 861,133.5997,230.8566,29.67363,70.45743,6.06 861,626.7317,487.6131,20.701538,45.781494,6.058 861,51.97897,212.98106,38.19945,80.208694,6.053 861,374.73993,204.29845,31.26242,63.641525,6.026 861,455.92346,204.70584,21.074677,42.527924,6.02 861,379.71912,206.69556,20.211761,40.87178,5.987 861,450.53268,185.95105,30.642487,67.32643,5.976 861,399.12372,223.86525,23.54248,48.771652,5.97 861,152.05554,228.28203,22.470444,45.721848,5.954 861,-5.43064,-15.878741,17.700043,42.655163,5.897 861,613.01965,452.58054,39.773193,109.84897,5.819 861,466.13406,203.89175,18.86612,39.517715,5.812 861,627.4624,-18.245464,17.168457,47.208828,5.792 861,366.82162,204.42049,27.723206,54.293106,5.766 861,-17.599043,-64.19712,56.47441,146.19377,5.753 861,18.018028,217.66682,20.71838,49.637985,5.69 861,67.54334,211.99593,38.160324,77.59563,5.684 861,-11.347816,-32.72464,30.238297,74.706154,5.582 861,494.7403,203.16846,12.625092,26.541275,5.542 861,444.1487,232.03415,20.291473,42.766327,5.529 861,556.46967,289.73257,13.08252,29.019531,5.525 861,3.9967995,210.69495,16.65358,34.346985,5.438 861,-5.954446,330.07364,18.852654,40.689514,5.354 861,99.52015,222.8664,33.214928,61.325012,5.344 861,-3.339503,189.48657,15.960682,39.706802,5.3 861,450.4094,237.86421,19.79663,41.341873,5.188 861,-72.89315,264.85718,201.17719,464.09473,5.06 861,603.02686,-57.700005,53.733032,133.81245,5.02 861,115.6606,208.20116,17.48613,34.535355,4.963 861,399.9679,208.57489,20.544037,41.587082,4.956 861,-21.456072,403.67816,78.7022,174.62463,4.95 861,418.5072,216.14453,18.47702,40.618774,4.929 861,438.94177,187.482,28.652222,69.11658,4.901 861,534.62146,-32.377983,27.93689,75.51173,4.89 861,35.588448,226.37787,38.243233,85.96124,4.852 861,113.72451,231.84187,42.854805,94.026474,4.851 861,89.771805,216.1553,34.117264,57.622772,4.837 862,495.70728,220.17706,22.492126,50.704956,81.765 862,417.65836,217.07686,19.915558,46.855698,72.666 862,509.96832,212.46997,27.961853,69.08371,20.404 862,352.86176,203.27748,23.02417,42.590347,14.794 862,435.02582,221.25787,17.781036,43.835327,9.526 862,247.32161,227.20271,23.248825,51.90483,8.024 862,419.2339,221.2507,26.914001,62.74936,7.664 862,179.92804,214.54887,30.467255,58.78926,7.452 862,191.07939,219.09947,24.764725,44.760025,7.328 862,528.3904,202.39223,21.225342,46.23848,7.245 862,539.9929,202.83286,32.243774,82.84097,7.224 862,152.15524,223.62573,24.10817,41.975098,7.108 862,521.17523,204.49098,19.691345,47.19246,6.606 862,-11.221575,-32.160862,29.961843,74.90773,6.561 862,-12.174608,477.4309,30.019007,63.769775,6.415 862,622.0788,476.6987,28.638977,67.38541,6.28 862,501.1817,209.5018,25.969543,64.446655,6.269 862,387.93393,208.28876,17.502655,38.71115,6.225 862,425.21417,213.84634,19.258606,45.937622,6.133 862,-6.0840364,-16.545631,17.588202,42.586205,5.999 862,536.0683,198.92575,22.200623,48.943176,5.985 862,-6.358766,488.98166,19.04445,42.66855,5.976 862,-4.5281115,162.962,17.734707,52.223953,5.944 862,394.047,220.37994,20.476654,42.805847,5.885 862,-5.5488896,248.98607,16.721819,35.0085,5.733 862,138.59921,212.94948,20.320297,30.42073,5.686 862,515.13885,206.34169,18.106995,46.8813,5.681 862,356.50784,225.55328,30.177094,74.473755,5.66 862,2.3050237,153.51837,20.543047,55.201187,5.457 862,394.72427,209.60997,17.572205,37.296463,5.451 862,361.78748,201.56468,18.03128,28.659286,5.375 862,2.835629,248.01508,17.526669,31.605225,5.369 862,248.87305,217.89479,20.003357,36.591873,5.356 862,-18.047274,-63.79004,56.68537,146.73373,5.32 862,347.06268,201.9699,21.04956,36.39456,5.304 862,493.32965,229.02782,29.619568,69.721634,5.263 862,441.69174,220.80339,17.365753,40.36409,5.225 862,243.0839,235.57794,30.949799,73.712524,5.165 862,535.7293,310.4218,144.83679,340.90033,5.118 862,-72.67236,264.89893,200.83545,463.34607,5.096 862,622.7482,-34.089306,26.799011,76.532524,5.091 862,603.66815,433.4388,55.224792,140.01785,5.091 862,-21.581474,403.64716,78.67291,174.26355,5.067 863,590.9256,212.14102,30.786621,71.13663,94.147 863,464.65906,208.27235,27.604065,65.40523,92.068 863,362.31564,199.19121,21.429169,49.689133,11.806 863,489.09317,213.99896,22.109802,51.257507,11.474 863,449.85684,204.52475,28.262207,64.280914,11.323 863,528.7385,220.04346,21.805847,44.022705,10.781 863,474.58743,210.19284,27.018433,67.64288,9.133 863,603.7345,209.20363,28.654785,70.04466,8.54 863,424.7359,208.2107,20.489075,47.118423,8.321 863,276.48264,227.43373,29.608612,66.79741,7.786 863,299.27106,214.41592,29.55368,75.131195,7.706 863,523.209,228.58835,20.55841,46.601685,7.403 863,515.6348,220.9465,20.713928,44.64203,7.135 863,586.7364,210.47316,23.496216,51.898056,7.123 863,402.1846,205.97415,19.691162,44.960785,6.582 863,-11.798914,477.98114,29.658594,62.966675,6.548 863,627.4921,-16.455431,17.013184,44.793934,6.537 863,500.2899,207.3318,28.530426,59.98265,6.208 863,-18.035604,-65.55744,56.02114,150.45384,6.178 863,329.8919,200.95737,19.66748,35.62175,6.161 863,356.284,207.42842,31.455261,77.21556,6.129 863,543.40234,222.54707,20.7771,37.4709,6.063 863,-5.9668756,488.8172,18.339283,42.33362,6.047 863,626.5751,487.37195,20.90509,45.17755,6.042 863,534.9659,214.0966,22.223267,43.157333,6.015 863,346.08188,191.75427,21.53424,44.782425,5.999 863,321.34204,209.55956,21.536346,53.299026,5.994 863,354.1624,188.10095,21.117249,41.65091,5.863 863,414.7765,212.07895,27.78778,61.728546,5.84 863,344.91122,206.18219,21.223969,52.272736,5.693 863,496.49432,207.63205,20.04242,48.50064,5.67 863,611.1474,219.62311,35.67914,96.57959,5.633 863,622.66125,-33.22876,26.878296,75.408005,5.55 863,398.69205,268.82092,32.49417,73.50693,5.536 863,483.08987,214.98921,36.755585,76.40553,5.517 864,582.57043,205.25534,42.639038,122.314514,89.479 864,377.19617,213.07747,24.106262,50.42308,22.142 864,433.01434,208.10558,23.430237,51.7379,20.149 864,354.36703,195.56468,22.25238,52.24707,11.256 864,335.2861,221.10672,23.697784,54.438263,9.999 864,575.31256,222.71773,33.503967,87.85234,9.131 864,349.99908,208.85796,28.62149,71.54152,8.57 864,378.07214,200.64636,19.77774,40.370422,8.23 864,608.2193,204.57593,36.95166,118.24567,7.931 864,372.56702,218.83414,31.297394,73.864685,7.245 864,332.5439,209.94858,53.078613,156.40015,7.162 864,471.75296,220.66165,27.460419,64.38437,7.135 864,336.29422,203.55058,20.967712,45.160248,6.901 864,458.09387,215.89813,20.927979,41.83255,6.874 864,360.51022,189.91866,22.142365,44.332657,6.734 864,-11.977477,478.8885,30.078918,62.52649,6.7 864,1.8885803,199.41034,21.996107,46.51767,6.438 864,596.6595,207.67497,30.567993,69.87251,6.385 864,325.2197,219.31027,32.913544,84.931946,6.379 864,-3.560681,172.15802,16.409922,41.096985,6.361 864,299.2019,223.77782,29.080261,67.64528,6.272 864,448.00937,212.28055,22.33786,44.747314,6.253 864,613.3037,453.91382,39.263123,108.53491,6.195 864,530.2733,219.61734,49.400085,103.07773,6.174 864,539.8624,208.25859,15.522339,36.55745,6.052 864,-17.815134,-65.31394,55.919052,150.3474,5.978 864,369.26337,195.08926,21.057678,44.09297,5.948 864,626.57446,487.18076,20.714905,46.441437,5.944 864,622.58295,-33.805008,27.211731,74.758125,5.936 864,581.62683,204.84158,31.60791,70.359406,5.927 864,-6.2810283,489.7724,18.839529,41.785034,5.884 864,627.3879,-18.38717,17.742249,46.081577,5.785 864,587.3607,182.6175,52.486633,184.99005,5.761 864,344.4075,216.99574,23.299347,56.016373,5.735 864,274.08893,210.10579,19.215912,38.65712,5.713 864,410.8995,205.75763,17.377167,38.10466,5.625 864,267.11346,211.44698,17.762482,37.829834,5.598 864,383.98837,206.95836,19.856049,40.530426,5.512 864,472.97885,242.54276,31.949738,64.98358,5.456 864,355.7239,212.42285,41.496857,117.95294,5.445 864,360.33664,213.94542,22.694916,56.33925,5.421 865,365.69,219.3218,27.987701,73.42876,42.47 865,341.00397,217.9573,28.626587,73.051605,12.077 865,356.6493,220.10243,40.60034,121.57582,10.089 865,401.3592,228.89676,25.428345,50.048492,9.008 865,335.44403,220.93115,53.27304,150.92566,7.335 865,626.79395,488.6722,20.14972,45.00833,7.038 865,387.2577,224.04541,41.303833,115.86371,6.972 865,367.49316,207.13432,23.581238,56.309647,6.817 865,349.11316,227.33691,31.270172,85.05609,6.735 865,496.4337,224.77461,23.038605,47.36693,6.585 865,335.55475,209.36812,27.914764,60.00386,6.538 865,513.7954,209.15874,20.94519,49.41957,6.37 865,322.59192,227.4402,42.44568,120.433945,6.182 865,386.15802,205.03915,18.999695,39.671432,6.154 865,-17.801128,-64.77592,56.135212,150.51833,6.092 865,-8.486168,466.20404,37.15782,90.35553,6.076 865,612.985,456.16907,39.1084,106.51526,6.061 865,-5.977964,488.859,18.34316,42.263367,6.017 865,299.6988,222.71445,20.068329,35.988647,5.88 865,-3.4313676,156.11897,15.470617,40.7256,5.828 865,390.57764,217.82426,28.901764,61.11104,5.814 865,622.2237,-34.066338,27.160461,77.300995,5.751 865,412.36557,279.4096,34.29532,74.384766,5.74 865,376.98816,220.28946,32.805817,71.84552,5.728 865,-4.2044272,141.92555,15.7781315,38.39247,5.682 865,473.92267,220.37238,20.405365,37.753906,5.659 865,-5.640048,-17.75755,17.350815,42.60574,5.556 865,330.97043,215.38985,21.608185,46.407578,5.525 865,370.26788,229.67972,44.78601,129.71054,5.507 865,466.59576,218.11252,20.383545,38.785187,5.39 865,521.2199,206.6174,19.841003,42.27423,5.367 865,627.0385,-18.980612,17.541504,48.186874,5.239 865,3.3152878,248.67328,16.45106,32.715637,5.238 865,378.6703,197.81723,20.181213,43.790237,5.188 865,-21.33268,404.74265,78.46924,174.3179,5.18 865,-11.273014,-32.30314,29.452057,72.63406,5.158 865,-72.365944,266.38016,199.67957,460.76633,5.018 865,490.59424,253.60504,34.39447,61.86743,5.009 865,426.72855,238.38983,34.63211,61.82135,4.989 865,481.2973,221.54912,20.194244,38.826004,4.976 865,583.1456,413.22662,71.44763,175.20679,4.958 865,505.58884,218.00668,20.858063,46.092834,4.868 865,435.60364,220.08147,18.280975,37.05754,4.863 865,536.09814,310.43207,143.92664,341.33173,4.82 865,403.0042,223.94724,38.944702,98.90994,4.77 865,3.9100277,153.69672,16.728453,37.708847,4.725 865,4.010598,167.82141,15.960847,37.84561,4.651 865,494.00317,228.80246,236.62634,513.40283,4.648 865,287.73465,208.66035,49.119568,131.24272,4.599 865,-5.2666306,248.62631,16.294348,35.99353,4.581 865,496.51978,249.80153,21.496216,41.26277,4.558 865,349.70352,203.51231,31.27597,71.87343,4.552 865,602.9251,-56.765038,53.56952,136.91464,4.516 865,305.70245,232.03476,42.813232,113.443665,4.515 866,378.34396,225.59883,39.234467,102.26744,33.025 866,561.02454,227.23619,24.090881,44.88069,19.412 866,535.53815,228.45056,23.912292,44.92679,14.263 866,576.65594,228.75673,22.65918,44.93834,10.812 866,613.4039,212.15991,25.318542,102.9718,10.264 866,3.9781237,170.4614,19.366528,47.656677,10.181 866,299.1868,215.89203,17.627441,35.325256,7.928 866,337.02774,217.99075,22.176422,48.694946,7.707 866,591.90735,213.22974,25.367126,59.080353,7.332 866,554.0867,222.04443,22.735474,39.38916,6.637 866,545.01495,223.49646,22.046936,39.044556,6.552 866,622.2968,477.02597,28.664795,67.056305,6.512 866,-3.4692402,169.75029,17.441025,45.722977,6.445 866,583.5835,217.61867,23.81427,57.771408,6.43 866,427.77417,222.48715,16.311554,35.90274,6.385 866,521.6719,200.78415,19.83258,39.610565,6.373 866,627.24316,-17.129105,17.099854,45.740097,6.35 866,342.6195,214.83305,26.70987,61.01808,6.33 866,-17.795012,-64.3533,56.347816,149.67995,6.292 866,-5.872654,488.84537,18.161228,42.446503,6.102 866,-11.501741,478.03442,29.055235,63.184326,6.058 866,483.71735,258.23364,30.807556,56.28656,5.961 866,522.49194,222.3178,20.316345,37.425644,5.623 866,352.09283,223.33144,24.148071,54.494766,5.583 866,-21.46409,404.55237,78.24201,174.5705,5.341 866,402.98187,224.52002,29.173737,64.63263,5.3 866,421.0179,231.56197,37.222595,104.447586,5.251 866,609.3521,214.59558,21.502136,64.944336,5.24 866,400.4685,228.14609,39.81311,107.43878,5.224 866,439.60208,240.34866,24.762115,45.418488,5.209 866,622.7285,-33.5617,26.533936,76.19459,5.185 866,-5.6838913,-17.793749,17.368692,42.78155,5.15 866,578.5626,214.8609,19.506897,39.832687,5.108 866,235.43962,231.4133,33.09926,58.06772,5.096 866,-11.32862,-32.351982,29.630253,72.99835,5.06 866,535.9899,310.31244,144.3847,341.5213,5.036 866,434.666,221.15115,16.373505,36.76233,5.01 866,375.71808,223.45952,62.260803,156.5671,4.997 866,412.13898,210.86699,16.334991,35.578354,4.994 866,530.86926,234.69571,34.012573,62.75528,4.991 866,583.0497,412.48126,71.69342,175.94293,4.93 866,410.044,220.10779,20.401001,45.958496,4.924 866,414.2728,226.22852,27.408447,60.372864,4.882 866,383.48727,223.91138,26.704987,67.63098,4.845 866,57.389267,177.4563,22.177383,33.445496,4.844 866,48.594364,177.41196,22.517391,35.14789,4.836 867,448.5651,221.25374,22.651062,46.312546,16.275 867,392.19928,183.44525,22.055298,52.24391,11.18 867,377.96848,217.99458,22.009308,45.1902,10.609 867,349.8898,221.43376,23.613007,48.73918,10.502 867,425.7835,206.94217,19.312164,38.857864,8.895 867,432.722,216.74202,23.232635,46.127426,8.781 867,417.88254,220.05563,23.324982,43.232086,8.405 867,397.2449,190.17093,25.541687,59.776566,6.643 867,626.92847,489.23743,20.640198,44.476257,6.461 867,-11.922293,478.6194,29.803503,62.083008,6.386 867,29.478039,259.7809,28.588177,63.29184,6.383 867,623.26825,-32.630547,26.425293,73.9058,6.365 867,627.23047,-16.869995,17.130615,45.777763,6.345 867,-17.532099,-63.638206,56.464996,148.91743,6.269 867,360.8807,205.8458,19.797638,42.45256,6.241 867,383.60583,189.08862,26.768066,64.203156,6.111 867,-6.1450624,489.10638,18.465185,41.737488,6.071 867,300.20795,210.61157,18.987183,36.06787,6.066 867,613.0908,452.75296,39.201965,110.11264,5.789 867,473.3511,235.24655,20.344238,37.77771,5.732 867,586.7651,236.16771,17.547424,30.264847,5.62 867,345.64325,213.59845,22.196991,42.313644,5.569 867,-6.334749,245.90662,36.394882,100.33563,5.371 867,-20.933956,405.76294,77.66431,173.69531,5.368 867,602.59515,-57.54222,53.539246,134.26736,5.28 867,535.24725,310.46948,145.53265,339.84216,5.236 867,-11.41412,-32.295723,29.782837,73.03913,5.235 867,434.47565,207.08496,18.86435,39.481903,5.197 867,-5.801548,-18.098143,17.576744,43.26389,5.194 867,221.41588,208.52753,14.76915,21.435867,5.194 867,493.89014,229.19601,236.90808,512.2831,5.173 867,454.6944,227.4206,23.836792,46.66159,5.158 867,438.23962,219.64587,35.55771,84.5296,5.148 867,583.444,411.72156,71.74524,176.66443,5.147 867,596.8691,243.14563,38.020508,96.52161,5.01 867,-72.776474,265.98907,200.79031,461.71875,5.008 867,270.25977,209.14246,11.226685,17.62912,4.928 867,453.30164,223.1026,36.941956,85.34082,4.92 867,330.47623,226.04282,22.138855,37.504395,4.92 867,6.07136,263.0577,28.311243,67.82266,4.915 867,236.87303,210.80226,14.652069,22.502167,4.896 867,442.68787,213.6366,20.05304,42.515167,4.832 867,616.3068,223.16624,20.74176,44.14821,4.818 867,594.43445,-47.032825,44.466003,95.53435,4.778 867,619.02875,491.59424,19.580505,40.661865,4.774 867,6.9512806,222.76512,21.087923,37.15602,4.763 867,421.82867,218.05942,36.075043,82.67804,4.76 867,-5.1252036,295.90512,16.524115,38.039368,4.719 867,594.77966,233.92093,19.39038,33.053345,4.703 867,0.124094486,226.93239,27.859533,71.53966,4.698 867,419.96066,199.54718,18.917633,39.77118,4.69 867,22.124321,238.14354,31.638248,70.819595,4.657 867,474.36975,224.85571,17.318512,32.356445,4.649 867,620.1267,-3.6487064,18.071472,38.144493,4.584 867,587.9435,221.02261,15.376587,31.3098,4.574 867,379.72443,188.16774,20.05011,46.976807,4.541 867,277.8557,189.478,11.398254,20.894836,4.522 867,608.399,232.99026,23.076477,43.306183,4.519 867,394.42438,205.10477,18.759583,43.174026,4.508 867,3.5276222,171.9011,18.028828,36.172775,4.497 867,443.24756,286.68478,57.54602,139.54663,4.486 867,579.90857,247.13393,41.67102,87.4073,4.481 867,474.48114,214.20113,16.82016,28.073044,4.449 867,-3.3478003,173.6395,15.717422,39.730988,4.436 868,479.82968,228.60461,23.171753,53.783386,23.786 868,414.10312,186.54419,27.724518,62.43846,21.71 868,459.99164,223.06097,19.197449,40.74765,19.449 868,483.92657,237.52882,30.178467,60.729538,14.344 868,377.7198,223.7193,19.531769,38.081543,11.097 868,370.30353,224.78491,18.83789,36.272858,10.307 868,465.68414,225.5686,20.085052,45.033203,8.866 868,428.97342,201.94583,26.97403,64.1376,8.588 868,474.58484,226.10104,20.269257,48.533325,7.984 868,362.1973,230.00526,19.5065,37.608932,7.982 868,350.41226,237.38641,24.994263,46.4989,7.696 868,400.59424,200.28636,22.687561,47.636383,6.857 868,-17.818846,-64.400826,56.88472,150.02019,6.615 868,-8.7326145,465.61237,37.52417,90.66785,6.518 868,384.94766,224.18234,19.133698,44.70401,6.332 868,627.46454,-16.399513,16.642883,45.143944,6.005 868,-5.9079876,489.36508,18.23702,41.837677,5.684 868,495.40356,235.93616,23.56659,48.989136,5.582 868,433.43787,191.39847,19.447815,46.788773,5.579 868,406.7787,195.78662,26.815094,64.461914,5.403 868,611.5493,-50.194298,41.333496,105.044624,5.386 868,-21.297598,404.81406,78.1235,174.04056,5.31 868,401.27597,220.04626,20.486969,43.288696,5.306 868,-5.8041816,-18.238022,17.572561,43.460983,5.304 868,621.9591,477.81464,28.981323,66.47717,5.281 868,-11.331845,-32.30661,29.723934,73.277954,5.277 868,394.39722,217.79918,19.229156,42.215958,5.273 868,489.8326,226.99927,19.204315,48.939087,5.177 868,583.3123,413.00134,71.50824,175.75262,5.143 868,365.4879,230.75029,28.352173,60.558853,5.118 868,617.15045,195.18604,21.602905,75.23938,5.077 868,300.19397,217.2797,19.178009,36.666443,5.016 868,-72.1616,266.01886,199.66678,462.24323,5.0 868,535.87115,310.41003,144.55676,338.93323,4.847 868,109.543686,245.53345,28.32515,55.769104,4.697 868,336.5089,225.69838,28.260864,51.92534,4.675 868,437.37738,191.65108,27.614746,61.680893,4.637 868,374.06134,237.35344,29.453857,62.577103,4.604 868,483.93542,218.09535,17.387268,40.958206,4.599 868,494.09082,229.61142,237.07068,512.5482,4.584 868,388.12595,227.34634,28.464142,63.165222,4.429 868,428.2484,228.06648,20.305542,44.357437,4.397 868,518.14526,-35.094643,27.525635,70.811775,4.394 868,114.31779,265.05057,19.857414,33.46039,4.373 868,253.5689,187.82413,13.593155,23.442108,4.368 868,5.762458,468.722,37.319317,93.6864,4.341 868,306.42523,215.0059,17.863403,30.940933,4.336 868,498.92606,241.2469,30.510284,61.663986,4.323 868,499.6733,214.76999,16.079865,33.11029,4.32 869,520.1859,223.15912,23.033691,53.97281,54.825 869,528.22723,219.7878,23.64972,59.07802,46.066 869,416.7589,228.67337,19.756226,46.71521,24.842 869,451.28564,175.55318,28.35669,79.301315,24.509 869,513.0274,218.96991,22.05371,52.191986,21.46 869,393.44418,226.98398,21.473083,47.521667,19.874 869,375.93695,233.02956,32.072754,71.79552,12.169 869,458.99164,169.23392,30.562622,68.558014,11.59 869,40.899704,224.46982,20.91555,44.525726,9.759 869,580.98016,245.53674,32.79889,71.48456,9.167 869,1.916405,240.37276,20.274538,45.287582,8.919 869,17.150145,241.41006,20.806765,40.76294,7.489 869,421.58002,201.81862,29.416412,63.98027,7.229 869,245.84245,216.96979,14.1862335,21.081879,7.088 869,252.90642,218.50037,13.0750885,20.116837,7.025 869,8.896957,240.97571,20.242233,35.353943,6.452 869,-17.295319,-63.141777,56.381485,146.60886,6.451 869,536.1088,235.17497,20.882874,47.02797,6.415 869,-8.352889,465.84067,37.076035,90.38742,6.266 869,34.597355,216.82115,21.591236,45.46031,6.221 869,5.5723476,228.79869,28.778349,56.02513,6.159 869,378.3035,226.77301,21.130249,49.436707,6.119 869,621.9892,477.5585,28.688843,67.11789,5.975 869,469.6701,174.58847,23.897217,52.018997,5.931 869,304.12378,219.4433,20.63855,40.65039,5.836 869,627.2903,-17.01561,16.979492,46.226444,5.747 869,-5.560231,-17.85267,17.140919,43.33231,5.678 869,-5.8396473,489.42227,18.133642,41.9946,5.607 869,48.443657,220.24171,21.564453,40.712143,5.604 869,19.895514,220.92358,19.142984,36.632263,5.58 869,449.0504,167.35211,23.661865,56.078033,5.555 869,-11.387253,-32.443024,29.502165,73.00925,5.548 869,424.9078,229.01048,18.506775,42.498825,5.507 869,440.00867,190.81041,29.651642,70.671555,5.419 869,622.60516,-33.33017,26.943665,75.88765,5.375 869,432.54562,213.25659,21.216614,48.33136,5.348 869,27.157488,218.78366,20.295591,40.18405,5.332 869,-5.256113,236.40187,18.91948,38.975998,5.306 869,418.49176,212.21695,21.457123,46.898468,5.24 870,435.2861,226.9019,25.814056,60.687332,78.358 870,586.174,227.11926,21.806885,48.87964,40.444 870,411.01788,238.02861,21.710327,48.594833,29.625 870,479.94678,231.68369,29.461945,69.83215,23.392 870,537.0879,152.522,31.401367,80.10239,11.217 870,482.1369,206.25198,33.595154,65.86771,10.98 870,510.00964,194.43639,31.425049,75.82024,10.037 870,501.93994,165.7702,32.145752,89.26134,9.138 870,492.96298,191.47453,30.527374,71.50032,8.574 870,460.38135,216.50061,32.006287,75.74933,8.361 870,585.3001,219.45697,31.242615,87.53119,7.516 870,525.51294,148.44447,31.882568,92.31587,7.461 870,383.34564,245.17188,23.078186,53.166138,7.26 870,468.00888,201.37952,34.42398,68.884705,6.87 870,615.5283,239.21057,24.444763,87.1004,6.458 870,305.06238,218.66528,21.324615,34.19699,6.455 870,-17.124653,-63.796867,56.141754,145.86139,6.276 870,-5.5296545,-18.059189,16.946415,44.3273,6.223 870,-8.677472,465.9525,37.262352,90.49231,6.054 870,463.6949,205.6531,50.58087,99.27646,5.82 870,524.88257,198.41267,29.720825,76.17995,5.803 870,455.17,228.78111,25.645264,56.154495,5.702 870,252.45111,215.23703,15.558655,23.282562,5.68 870,612.9377,452.74545,39.86322,109.74783,5.65 870,479.75833,202.30876,25.239258,49.324356,5.627 871,530.95905,221.52419,45.242065,98.00395,97.508 871,485.69287,252.57568,29.760132,60.881836,27.303 871,558.5602,220.0509,44.22943,96.54053,11.292 871,486.34418,221.07745,38.68689,85.66052,8.678 871,534.7778,214.32678,29.3432,72.24991,8.446 871,498.9331,209.77527,21.16101,43.67508,7.453 871,570.09863,213.66632,51.4682,132.93292,7.087 871,358.81223,200.90784,30.576965,64.791565,6.744 871,111.9339,188.69673,22.760132,44.725388,6.598 871,411.9029,239.46924,31.439697,64.397705,6.38 871,346.2362,167.75574,33.199554,83.91745,6.296 871,-6.1213374,489.4037,18.43593,41.610657,6.062 871,622.1532,477.4344,28.573364,67.04779,6.018 871,-11.954064,477.75827,29.52045,63.511993,5.998 871,421.0407,221.40009,28.869537,58.11676,5.75 871,-12.197483,-41.173183,40.678825,100.95427,5.747 871,623.3922,-33.64139,26.223328,75.57982,5.692 871,554.9116,207.04935,36.694214,76.297455,5.674 871,551.09406,239.59169,35.032776,81.48534,5.666 871,448.85138,250.13277,42.344177,106.104294,5.609 871,602.597,174.42432,18.257996,30.65213,5.45 871,536.0577,309.87274,144.37762,341.3869,5.434 871,353.60583,208.87683,23.06314,50.251526,5.385 871,-5.6841917,-17.747955,17.827621,44.04821,5.377 871,-2.7758372,173.59747,14.6669235,40.881027,5.357 871,627.47577,-17.771114,16.664185,46.014572,5.239 871,-21.387352,404.33417,78.586845,174.63824,5.21 871,238.50099,206.57327,13.809799,21.809631,5.199 871,613.20325,453.64536,39.48474,108.38022,5.146 871,603.11523,-57.74591,53.818848,135.52243,5.135 871,583.1037,412.69254,71.645935,175.10788,5.074 871,324.90933,212.39072,31.572662,64.250305,5.044 871,404.94263,220.57285,28.036255,60.985687,5.001 871,-72.79418,266.80652,200.27502,460.3374,4.975 871,437.05356,248.65752,30.647827,79.83147,4.945 871,438.94852,217.15765,28.116058,61.47589,4.906 871,426.43494,234.24945,32.71939,65.32495,4.887 871,495.21326,231.77115,235.92413,509.83786,4.874 871,-3.0532954,156.88509,14.7892475,43.192474,4.807 872,512.99615,203.6171,22.609253,50.344193,22.792 872,490.41815,215.38206,31.326721,77.73372,9.865 872,518.3884,210.57263,30.46399,63.53412,8.355 872,619.3012,208.53477,20.472412,56.380966,8.235 872,623.18555,-33.111446,26.588074,73.22149,7.13 872,105.14755,184.46527,21.163925,43.639587,6.686 872,81.418945,181.21205,22.503716,48.52304,6.224 872,444.3421,226.51974,16.856323,31.52774,6.179 872,415.29663,215.46738,26.871613,64.06918,6.101 872,-5.9382944,488.67587,18.323967,42.84677,6.049 872,-11.317988,-32.772133,29.951626,75.20004,6.047 872,-5.755495,-16.589497,18.110374,42.3195,6.021 872,-11.514347,476.62958,29.254957,64.6311,5.992 872,-16.860165,-62.511864,55.625122,144.74269,5.98 872,527.3872,204.55121,23.421387,46.262802,5.969 872,621.84625,478.7893,29.252686,65.81427,5.953 872,429.31857,219.59543,27.373688,56.358643,5.789 872,472.05112,231.8877,24.055481,38.11212,5.738 872,-4.877674,161.69594,17.721663,46.30986,5.457 872,453.5974,216.84409,35.990784,77.72684,5.409 872,343.38892,219.1174,23.796082,41.380585,5.374 872,457.909,222.82338,18.661621,28.616455,5.345 872,627.19165,-19.093718,17.485718,46.5726,5.306 872,-21.55045,403.57446,78.63838,175.30975,5.306 872,603.4035,-58.457893,53.48767,133.54456,5.274 872,477.27167,221.63586,33.90448,66.13608,5.258 872,502.3386,202.1911,29.737396,68.87848,5.236 872,367.16794,120.58986,25.59848,93.39052,5.217 872,348.65277,184.2576,29.233276,68.12161,5.12 872,531.2362,220.16226,30.305176,57.16916,5.017 872,2.9994738,206.1827,20.987137,37.276062,5.015 872,583.2859,412.95624,70.862,174.90753,4.973 872,365.5231,-33.27941,28.485718,71.11569,4.971 872,535.2642,208.58719,23.507507,47.653442,4.956 872,358.02106,174.2449,29.981262,75.80673,4.921 872,-72.452515,266.8212,199.63356,459.4741,4.918 872,594.5469,-48.04874,43.745422,95.48483,4.885 872,-5.623212,215.60065,17.283638,36.864197,4.874 872,-17.290018,158.86935,50.948837,127.717896,4.861 872,436.04782,223.62335,17.784882,37.091248,4.838 872,-4.473424,139.22794,16.76521,43.53415,4.798 872,625.6269,219.61195,18.931213,50.435165,4.791 872,536.0395,310.16364,143.91565,341.66046,4.749 872,436.94736,225.37532,30.372314,56.724197,4.731 872,340.51633,223.11377,32.178833,61.72113,4.674 872,1.9360447,162.06943,20.25403,50.944855,4.653 872,493.51422,228.57184,237.62311,514.85657,4.652 872,307.51096,202.86707,30.018982,50.088837,4.619 872,619.00073,-7.5173206,19.655212,42.378914,4.602 872,330.55853,219.49567,22.61023,36.842407,4.586 872,1.5945548,-16.75061,18.01851,43.031,4.575 872,423.42007,219.8424,20.704498,43.05188,4.549 872,388.4267,222.40608,39.237427,98.44551,4.527 872,358.52264,109.124176,27.823456,85.979645,4.508 872,1.7763329,208.60057,41.051273,99.73009,4.487 872,625.376,201.21292,18.967285,49.773224,4.409 872,519.97656,201.42714,21.953308,40.26265,4.401 872,615.7386,158.50655,24.915344,80.70738,4.383 872,421.37842,225.87569,36.909576,91.96953,4.382 872,618.353,489.68762,21.31488,43.529297,4.33 872,371.85938,220.2115,41.39807,102.09984,4.305 872,390.51788,139.374,28.514954,90.26456,4.297 872,339.70087,-13.704521,16.379639,37.595528,4.263 872,405.52676,225.54442,39.214203,94.75252,4.24 872,-9.133437,155.4943,27.65408,73.66295,4.229 872,331.77536,-13.229957,15.526581,36.704834,4.193 873,359.70465,227.91881,22.017212,40.07927,15.32 873,40.966682,190.47485,24.47007,45.184647,10.282 873,64.714035,190.16931,24.505135,47.064804,8.299 873,166.64459,191.55565,22.774887,35.11418,8.166 873,447.1564,226.29556,33.56903,59.467316,7.889 873,5.4641247,180.43283,30.21905,59.15265,7.646 873,627.04047,489.46558,19.927307,44.323486,7.206 873,547.19867,235.36191,40.132996,106.02777,7.087 873,2.0884335,192.98988,22.005976,43.544724,6.896 873,611.0052,-47.41703,40.795715,98.54716,6.651 873,512.23883,240.62723,20.776245,34.167633,6.547 873,580.3938,248.49757,39.596252,105.50212,6.431 873,-11.968136,477.17767,30.318945,63.62195,6.404 873,52.353813,187.55406,30.698418,53.675705,6.213 873,-4.099245,186.28603,17.515747,42.610535,6.096 873,-17.074535,-64.225815,56.05724,147.39046,6.095 873,612.9922,457.59222,38.75775,105.299255,6.08 873,627.25757,-17.846607,17.170837,47.19489,5.904 873,-6.1883526,488.72705,18.93274,42.96875,5.812 873,546.86975,161.08537,29.290222,83.30995,5.694 873,-5.386827,-16.862484,17.332762,43.220654,5.51 873,2.381258,194.10356,39.17063,88.550735,5.487 873,385.4369,199.22414,22.387451,45.86676,5.453 873,298.12546,219.79846,20.050568,34.2063,5.346 873,-21.637724,403.78497,78.87716,175.02954,5.322 873,-11.568768,-32.164555,30.277485,73.61472,5.309 873,312.9771,213.25514,21.981323,37.846664,5.228 873,253.10577,203.92555,14.075745,20.752243,5.16 873,376.44757,220.829,21.49884,41.90535,5.114 873,618.75653,491.82144,19.749756,40.53763,5.099 873,583.1951,413.82974,71.32764,174.60727,5.086 873,89.20834,210.7093,21.998642,32.30809,5.075 873,396.89093,192.83308,28.304321,65.106705,4.938 873,314.26865,186.80302,31.651154,61.996674,4.937 873,-72.56586,266.33276,199.67445,459.89746,4.911 873,362.87628,216.72232,29.067963,59.20877,4.908 873,493.71326,228.92517,237.32593,513.96326,4.888 873,588.4469,251.40125,28.845764,61.729797,4.864 873,244.92175,203.52425,14.704712,21.039917,4.813 873,535.65375,310.9002,144.36127,341.14447,4.777 873,145.95107,193.61317,21.265488,30.289734,4.664 873,483.6563,231.36896,29.389465,52.368774,4.652 873,586.1916,-99.8413,74.489624,231.22443,4.619 873,212.24533,210.97215,30.331635,51.69371,4.615 873,552.77515,189.65706,32.108032,83.6353,4.604 873,534.3202,235.44745,31.137451,63.777588,4.601 873,275.79358,221.25185,18.259583,29.681015,4.591 873,283.5417,222.21657,18.060822,31.985184,4.561 873,260.69046,210.45346,15.30072,26.219193,4.534 873,347.33563,227.8952,23.079895,36.54602,4.51 873,291.09372,217.67877,18.728394,33.97075,4.503 873,34.23256,174.50227,20.046291,42.26712,4.491 873,152.95752,204.05536,21.911804,32.904083,4.488 873,-14.012901,161.07532,48.634705,121.15546,4.455 873,420.68527,198.12746,28.371796,61.815628,4.454 873,9.76156,208.3401,20.313745,33.993668,4.434 873,469.4062,224.87419,31.59494,52.495743,4.433 873,500.8147,232.09445,37.461304,74.99582,4.387 874,5.3529334,265.1442,28.401068,67.29959,15.632 874,329.75812,212.9362,23.567627,48.13182,8.63 874,311.27545,203.54016,24.426392,42.446243,8.472 874,469.39136,217.40018,30.224915,71.87558,8.077 874,122.11844,193.04677,23.28775,41.89734,6.908 874,-5.1026607,275.27338,18.671288,50.347137,6.883 874,622.6858,-33.135242,27.244568,75.76832,6.881 874,423.0896,223.55545,20.897797,42.711853,6.744 874,448.3694,219.06361,21.541199,44.8022,6.254 874,-1.5267646,281.8568,29.713585,71.95929,6.251 874,-17.318613,-65.7236,56.07962,150.39796,6.241 874,602.91956,-58.94517,53.659546,133.56508,6.194 874,29.339241,171.55614,29.279305,59.611313,6.131 874,187.39273,197.49722,17.671173,25.969818,6.129 874,-8.615499,465.84677,37.310314,91.37637,6.128 874,612.6742,452.98767,40.185303,108.53369,6.09 874,320.26715,206.07303,23.296143,46.5822,5.916 874,-16.001484,261.43695,52.115025,144.40326,5.91 874,-11.26935,-32.185505,29.73044,74.05091,5.866 874,-5.7597055,-16.726086,17.12466,42.618996,5.847 874,594.327,-46.843704,43.93048,95.280136,5.77 874,301.6316,209.07912,31.346466,55.780746,5.703 874,189.60025,186.60092,13.923325,21.613556,5.59 874,45.569923,171.30008,27.787575,58.474792,5.534 874,626.2966,487.74396,21.388245,46.075928,5.484 874,-5.7373643,488.86517,18.057602,42.6333,5.462 874,201.70511,215.77528,20.517654,30.891708,5.461 874,564.0765,243.94751,20.08728,40.62909,5.358 874,-4.4448133,170.92436,17.017593,42.44484,5.346 874,3.9343429,232.99956,28.501219,67.19777,5.252 874,-9.4445,236.46544,28.222115,70.17909,5.204 874,389.6774,240.9892,31.12564,64.85242,5.18 874,-3.9903407,157.53278,16.091516,38.55603,5.052 874,-72.73736,265.71307,201.26514,461.30255,5.047 874,-4.4561996,219.98941,17.074642,38.907288,5.027 874,206.47589,190.20123,11.267715,19.312576,4.985 874,-41.019512,362.38544,111.98271,279.24457,4.969 874,438.3577,210.36795,27.378937,60.201477,4.963 874,429.11603,213.11128,25.949554,57.90114,4.952 874,497.43463,225.04985,30.404053,57.79805,4.873 874,583.00684,412.16504,71.608765,176.34753,4.871 874,196.19577,194.80867,13.788193,22.2574,4.849 874,-21.517132,402.66888,78.90753,176.9859,4.82 874,536.1853,311.16006,143.79126,340.59067,4.817 874,324.41064,186.15279,30.388245,63.750763,4.786 874,35.905384,157.95401,32.718616,60.32161,4.74 874,585.61365,-100.80568,75.791504,233.09918,4.686 874,261.02792,204.58963,12.454254,20.947327,4.663 874,569.60626,250.3528,20.732727,40.99434,4.644 874,-3.6300797,233.29973,16.984215,41.488815,4.641 874,494.1901,229.1083,237.2761,513.4076,4.586 874,387.5281,189.86546,17.281708,35.444336,4.582 874,-2.0881367,252.99432,47.60942,102.73328,4.578 874,1.4165628,229.61053,20.008574,39.86145,4.552 874,617.8306,-24.547157,20.60846,52.802692,4.522 874,482.95447,224.76921,32.293518,69.27968,4.491 874,230.47244,197.31361,13.052704,22.75737,4.462 874,408.68835,148.30579,28.324463,66.82773,4.451 874,253.9053,203.87491,13.075256,21.019226,4.447 874,237.12543,195.89262,13.802185,23.622147,4.445 874,14.237269,172.82472,26.219906,61.73146,4.44 874,205.8661,196.27603,12.556778,20.996338,4.416 875,537.2017,238.02573,36.07379,90.229614,12.516 875,0.76526403,219.08078,23.904703,75.76959,10.943 875,502.14725,198.57285,14.048492,30.516998,10.932 875,509.4041,197.48784,14.9487915,31.668564,10.827 875,-3.6532996,218.9175,17.079441,42.65172,7.64 875,494.21448,198.18228,13.728088,30.585846,7.566 875,514.8237,198.11247,16.996399,39.168396,7.405 875,623.0104,-32.884457,26.633667,74.38563,6.95 875,1.1865735,161.32928,27.32707,69.51108,6.622 875,45.09236,199.64418,28.207901,57.026382,6.581 875,94.645454,225.59393,28.826645,69.44562,6.35 875,520.91876,178.0833,19.225342,50.776474,6.26 875,-11.323153,-32.475033,30.008718,74.721725,6.246 875,5.0077534,244.38489,29.484022,66.360535,6.171 875,536.0791,171.56653,24.87799,90.877014,6.168 875,567.2969,152.918,29.405334,68.548096,6.156 875,508.32675,237.22527,29.356415,65.6028,6.045 875,-11.669958,475.86597,29.403955,65.216736,6.042 875,626.88574,-19.842262,17.722656,49.000977,6.014 875,449.24445,301.9598,32.91571,89.67096,6.007 875,626.05066,487.72375,21.495422,46.18744,5.986 875,-5.281241,168.22018,19.239504,45.907776,5.797 875,-17.831572,-64.922226,56.57261,150.35393,5.796 875,36.6555,212.2507,38.262882,82.25662,5.788 875,-6.022539,-17.347115,17.472584,43.07997,5.704 875,367.0382,247.35432,22.120117,35.536667,5.69 875,107.641754,225.344,30.795547,67.97101,5.683 875,-5.9960175,488.60385,18.376673,43.252472,5.622 875,612.8626,455.1027,39.590942,105.84555,5.578 875,40.861618,195.68642,23.846275,44.705307,5.547 875,-14.244349,156.85889,48.942764,137.19925,5.532 875,24.425516,264.49084,22.769697,39.184753,5.463 875,493.6372,209.06584,14.075684,33.074753,5.425 875,521.3124,199.2634,19.42456,47.95233,5.407 875,17.724371,226.76102,39.58175,83.713135,5.344 875,7.7521253,224.70831,23.024506,55.10681,5.3 875,-5.8531055,233.25336,19.197517,49.528442,5.283 875,261.3573,211.37848,12.573486,21.684647,5.17 875,602.76294,-56.545883,53.34723,129.04857,5.151 875,76.38997,213.81631,29.265823,67.87833,5.147 875,226.73361,220.99854,19.769745,36.8367,5.14 875,205.74089,170.68668,12.429092,22.07135,5.139 875,36.063797,255.94232,31.796913,55.73883,5.138 875,-20.96177,404.96387,77.94186,173.61444,5.087 875,526.6033,254.27203,31.256836,66.0293,5.077 875,583.2547,412.35095,71.50214,176.38855,5.051 875,552.5726,247.83643,31.552856,69.985596,5.048 875,516.58386,163.1264,28.770203,80.051544,5.02 875,-39.494865,367.88397,109.44694,275.61273,4.997 875,-72.59367,264.6473,200.7871,463.79507,4.995 875,25.805347,218.55225,21.362629,51.58188,4.991 875,464.22427,194.58159,24.529572,67.4518,4.964 875,52.064095,212.34256,38.544228,80.486145,4.943 875,12.652489,219.70717,29.033524,68.17717,4.916 875,427.81488,232.23642,30.636719,62.702515,4.867 875,57.34233,202.91855,20.578964,33.249786,4.834 875,536.0094,311.06396,143.59723,341.6115,4.821 875,427.00305,199.17253,18.02893,33.053574,4.801 875,588.8154,198.36531,14.53186,28.098389,4.778 875,269.4613,213.4646,11.97998,23.710083,4.774 875,252.41757,215.04558,13.667053,23.92688,4.735 875,511.33377,201.15018,24.769867,66.29471,4.723 875,-10.048086,151.32953,30.625488,67.5143,4.687 875,213.91379,170.9977,12.125488,22.045258,4.672 875,493.68884,228.68619,237.36163,514.3657,4.65 876,73.86991,238.36667,25.190079,38.13202,8.417 876,377.09824,230.22711,23.12918,48.658203,8.384 876,144.52597,223.5965,21.625458,44.44159,7.949 876,134.3241,219.07962,26.923645,57.88617,7.577 876,381.16992,213.23041,28.32251,58.46524,7.573 876,199.45102,229.81894,24.51329,48.603638,7.443 876,622.5935,-33.396446,27.283752,73.55134,6.535 876,626.9905,488.6567,19.936035,45.091156,6.294 876,424.48663,260.4071,26.778168,73.67172,6.235 876,153.32503,225.7528,20.140015,39.58136,6.196 876,-18.108295,-65.77491,57.01525,152.3625,6.135 876,393.6487,200.60641,18.756317,36.542206,6.054 876,-8.684275,465.83893,37.394737,90.52081,5.909 876,285.6354,211.27484,14.1311035,25.399475,5.872 876,612.9007,456.80002,38.697937,104.86917,5.854 876,451.15417,306.64264,32.398193,63.243652,5.852 876,-5.6529045,488.49503,18.099823,43.052216,5.695 876,386.46478,208.53757,20.047668,36.92018,5.645 876,-11.299996,-32.27806,29.538448,72.17335,5.638 876,-5.8487267,-17.849176,17.552744,42.77127,5.571 876,130.39667,220.42697,20.048416,38.81314,5.544 876,-21.2496,404.96402,77.95372,174.19894,5.364 876,-4.5795484,184.27074,18.768848,46.67198,5.336 876,-8.896061,171.96399,28.481554,70.17575,5.271 876,307.1365,205.10582,17.32486,38.731323,5.252 876,402.23413,226.25166,20.97049,51.987442,5.215 876,396.8142,243.75557,28.169891,76.97502,5.207 876,203.8112,210.21957,15.275482,25.45018,5.204 876,2.77633,206.36832,19.791428,46.661285,5.203 876,378.3951,213.94707,20.145538,41.102753,5.138 876,615.0377,205.82568,25.149109,96.60919,5.103 876,583.78284,411.64755,71.17816,178.35464,5.093 876,602.7001,-56.52495,53.88977,130.35605,5.088 876,44.859238,206.77216,16.499119,29.85254,5.029 876,161.08182,225.43387,20.302475,38.58734,5.016 876,-72.192535,265.7751,199.85109,462.18622,4.991 876,627.13,-17.970787,17.540771,45.765053,4.989 876,140.25412,215.54391,14.5733795,25.523224,4.947 876,10.100579,196.5077,20.262894,44.015686,4.929 876,589.641,222.7763,28.01007,73.67914,4.924 876,592.4778,130.55368,22.390503,56.397934,4.832 876,121.88744,221.24753,21.591454,43.32785,4.8 876,132.46016,214.38647,14.407135,25.701416,4.786 876,593.8029,-45.336586,44.776917,92.94549,4.777 876,108.44675,210.09225,15.136482,24.351273,4.724 876,509.50098,149.27232,28.926636,57.414978,4.724 876,415.5276,240.06245,29.049713,80.60924,4.708 876,180.05664,213.90822,17.025757,28.843033,4.673 876,536.97394,311.84842,142.1759,339.27768,4.639 876,74.86705,230.04199,18.184319,32.035492,4.63 876,565.49536,204.48944,29.682312,67.72327,4.629 876,445.4631,273.74915,28.7305,70.092926,4.626 876,581.6118,125.34735,28.49701,77.36066,4.619 876,196.59833,204.24533,14.756531,23.013184,4.608 876,169.84119,223.96513,20.975235,39.659958,4.594 876,277.3785,211.23093,14.679474,25.824097,4.59 876,344.86182,225.93752,20.225647,32.892685,4.544 876,308.54703,200.9544,27.980652,62.57361,4.542 876,40.559143,233.68088,22.779636,35.80902,4.5 876,174.92166,223.37138,27.75914,52.37712,4.474 876,615.33234,170.37749,25.373901,95.00862,4.464 876,212.49136,209.86772,14.9444275,26.273438,4.431 876,619.1486,490.4861,19.621155,41.752655,4.421 876,392.9068,216.60057,20.247833,43.44899,4.381 876,492.7507,226.32715,238.0922,516.02,4.348 876,475.95178,162.63713,17.758392,31.063828,4.266 877,442.42792,209.74646,20.830994,43.082916,8.683 877,145.00014,216.53575,25.625137,39.48604,8.667 877,-18.139038,-66.36555,56.74138,152.64847,6.83 877,-5.9471755,488.58737,18.11658,42.696564,6.741 877,-8.60838,466.32065,37.33509,90.02646,6.64 877,626.8397,487.91812,20.301758,45.12558,6.582 877,536.7156,229.2997,34.024902,65.414474,6.567 877,509.44046,178.85622,16.933563,30.061615,6.338 877,425.23868,209.17508,18.92691,36.039993,6.29 877,627.22064,-17.754827,17.12378,46.084927,6.276 877,-3.696078,173.12355,15.672757,39.815598,6.239 877,447.49457,197.97876,21.215698,49.35524,6.19 877,379.24255,221.76843,19.550049,33.463898,6.164 877,622.3679,-33.452423,27.064209,75.213005,6.139 877,286.40536,200.08856,12.505981,24.720749,5.998 877,595.32764,174.14542,16.973633,29.297363,5.898 877,404.50873,215.87828,14.942444,26.941132,5.814 877,386.91925,221.47607,18.851868,31.88533,5.733 877,612.959,455.60815,39.104614,105.74713,5.706 877,188.05824,207.27927,16.232193,32.70111,5.676 877,514.631,175.84279,17.583008,27.047165,5.646 877,604.2864,370.4754,30.798096,75.22122,5.602 877,394.33435,221.01306,18.914886,31.750778,5.535 877,475.74823,138.5271,18.649323,52.241623,5.506 877,-21.084623,405.47028,77.86937,174.18988,5.495 877,-5.7274876,-17.893417,17.462112,42.86731,5.482 877,589.7471,170.5484,16.423096,29.075943,5.419 877,370.80078,229.23212,19.154083,37.57196,5.347 877,269.77505,202.60995,11.894928,22.808853,5.337 877,-11.235762,-32.33315,29.438417,72.881775,5.333 877,5.0951567,188.28073,15.509463,33.267685,5.298 877,-3.435098,189.13998,15.428834,37.356888,5.286 877,404.18555,201.04483,15.167175,27.48056,5.265 877,261.64514,199.96333,12.681946,25.987747,5.244 877,12.121178,191.41624,15.488033,29.09819,5.228 877,584.2556,411.56342,70.62793,177.13861,5.201 877,277.9108,200.94958,12.304596,23.307617,5.124 877,420.39612,212.80527,16.571991,31.38655,5.086 877,361.99524,230.67076,19.466095,35.213913,5.061 877,19.450905,190.61703,15.888485,27.966965,5.057 877,189.66742,198.44556,12.968445,21.011902,5.014 877,602.957,-55.27949,53.70105,134.3629,5.01 877,396.31305,207.35077,15.38678,28.534592,4.983 877,205.4016,198.84286,12.123291,18.937881,4.969 877,411.18854,220.64093,18.455261,33.05742,4.887 877,-72.81852,266.71545,199.93274,460.77167,4.887 877,293.3753,185.87659,13.828247,25.423508,4.833 877,454.65125,131.8766,27.591766,78.56738,4.771 877,197.16698,198.77905,12.638138,19.495483,4.756 877,-5.6622624,224.1974,17.593536,41.085587,4.689 877,307.11328,191.27054,17.794678,38.08194,4.674 877,27.534512,188.80795,16.245426,28.539154,4.597 877,354.07098,230.96465,19.672241,35.75966,4.486 877,618.811,489.2383,20.027344,42.4216,4.484 877,76.029655,213.52118,18.702744,34.53134,4.472 877,287.00687,187.63214,13.020111,23.24118,4.464 877,253.40996,199.19788,13.249863,26.822144,4.439 877,373.42804,212.52335,29.512787,54.07074,4.422 877,-15.649275,158.62067,48.984062,127.64105,4.411 877,180.92221,205.71819,17.091675,33.566254,4.408 877,452.97977,185.27675,26.963531,60.189835,4.406 877,-9.824078,156.48607,28.424562,70.16342,4.401 877,292.72083,196.5288,14.575195,33.982346,4.383 877,522.9138,174.2837,16.698364,26.549881,4.382 877,524.415,240.64328,37.099976,60.50049,4.381 877,466.05972,140.18576,20.172607,58.15883,4.369 877,508.56198,168.23451,28.945892,49.812897,4.369 877,435.40814,229.55693,19.141968,37.394363,4.345 877,432.96414,206.00755,20.758942,41.37726,4.323 877,189.70563,188.0905,13.103363,21.759705,4.317 877,594.6854,-46.16584,44.543823,97.635445,4.315 877,316.46277,128.22276,14.246094,34.459152,4.312 877,492.4934,227.28946,238.40204,516.443,4.305 877,2.5169973,207.27054,19.066658,36.243958,4.303 877,536.0671,313.4152,143.46637,340.7097,4.3 877,619.56256,-4.7946243,18.471436,40.674526,4.281 877,204.71182,209.56801,16.193268,31.506973,4.275 877,581.9292,170.14626,15.523621,27.98407,4.271 877,244.3685,190.82523,15.231537,29.512314,4.266 877,194.89917,207.62352,16.48822,33.05684,4.26 877,83.24455,214.82631,18.152237,33.564896,4.229 877,369.8358,217.78299,20.34607,34.18016,4.227 877,442.00696,269.97723,34.50699,52.600708,4.205 877,170.73514,205.08856,19.797485,34.415314,4.199 877,222.1039,167.03339,12.812622,22.235413,4.196 877,603.57697,175.98685,16.148193,28.944748,4.195 877,218.94812,219.11667,18.907578,37.404114,4.172 877,5.838255,469.7851,37.09323,93.17578,4.17 877,-9.261791,68.32294,38.8741,112.3483,4.146 877,544.7789,191.20416,21.021545,33.25305,4.14 877,619.6387,169.56976,17.34259,41.69246,4.127 877,593.50214,153.88277,19.871826,35.11412,4.116 877,147.64154,221.75047,33.198685,56.268784,4.114 878,433.15402,229.06036,20.991638,30.003448,7.988 878,270.11362,206.429,12.933136,25.743164,7.94 878,626.97705,488.76358,19.870972,44.8768,7.475 878,501.5752,219.43187,30.981995,61.062912,6.654 878,-18.07346,-66.85827,56.377018,152.83087,6.547 878,262.59882,206.48637,13.245758,25.310287,6.491 878,-11.6391325,477.24423,29.335331,63.090485,6.47 878,312.20596,191.81693,20.084076,44.29364,6.328 878,-4.145404,190.25702,15.632969,37.550735,6.32 878,540.9976,174.24733,15.184509,32.170517,6.262 878,622.79285,-33.90434,26.841064,76.01431,6.132 878,426.17072,235.21242,21.878479,37.707413,6.018 878,170.22836,214.39528,31.056503,58.9619,5.975 878,-5.932603,488.78317,18.311243,42.264313,5.966 878,409.76474,236.68768,20.94168,35.372894,5.903 878,602.6263,-55.23593,53.21881,136.50545,5.841 878,627.53564,-17.386496,16.720703,45.96379,5.829 878,92.04686,195.2926,16.367905,32.89279,5.803 878,417.3593,236.38426,21.555817,36.31581,5.714 878,613.1755,457.6252,37.963806,103.62833,5.606 878,477.9166,218.6294,16.264435,30.504211,5.601 878,484.4644,221.78644,28.557892,57.040924,5.571 878,559.702,213.23381,22.317322,39.430023,5.547 878,584.5397,412.92328,69.85315,176.35419,5.52 878,618.82,256.47946,19.197632,49.9209,5.349 878,285.56934,201.11029,14.242401,30.5083,5.332 878,441.66968,221.64139,18.684906,27.887375,5.327 878,-5.5755925,-17.598074,17.288073,42.312813,5.284 878,619.3678,183.4323,20.406006,46.793106,5.273 878,440.28326,231.21094,20.935242,34.00238,5.256 878,618.82434,490.71432,19.624268,41.497345,5.252 878,-72.88557,265.4372,200.90317,462.4272,5.176 878,-21.137505,404.97235,78.150986,173.69513,5.165 878,583.39996,198.83334,37.20294,81.64316,5.163 878,276.99472,204.16739,13.881165,27.346237,5.036 878,577.1652,-2.102131,32.664856,77.45807,5.023 878,-11.324658,-32.530384,29.568508,73.00294,5.001 878,606.1358,228.10858,28.111145,70.19507,4.967 878,205.57542,197.95016,12.410538,20.324905,4.951 878,412.69037,197.11401,19.738953,40.1073,4.946 878,0.6029868,253.3757,24.118296,46.315704,4.858 878,254.43886,206.12827,13.292038,25.900085,4.831 878,189.2337,204.5167,12.761002,21.525345,4.829 878,575.2494,-13.659714,50.11902,124.39057,4.784 878,550.6219,191.20872,29.332336,56.727203,4.766 878,450.20816,224.29836,18.355042,31.22084,4.727 878,452.019,214.7303,15.056641,25.34636,4.72 878,291.96326,194.12082,15.108704,31.674072,4.682 878,401.388,235.75577,21.736511,35.476257,4.667 878,585.1886,-101.37462,75.68573,237.00996,4.664 878,127.72668,235.71179,24.00898,31.624237,4.64 878,-4.154673,172.02701,16.511345,39.620422,4.637 878,198.33148,206.50291,12.066254,18.961975,4.627 878,325.85162,195.0698,27.170563,60.79106,4.605 878,560.9896,201.76431,21.268066,33.17296,4.559 878,122.47,208.73407,19.718704,33.787674,4.547 878,106.19351,217.84059,20.055534,30.501495,4.525 878,140.99408,165.9956,28.263428,63.003616,4.505 878,473.28232,216.0099,26.345734,54.612656,4.471 878,409.77258,-54.044014,58.996887,129.41112,4.427 878,468.17218,220.34685,17.203674,33.29213,4.406 878,229.88411,147.19205,12.409302,23.080032,4.406 878,206.18987,207.35638,11.432602,17.685104,4.394 878,42.23655,183.2067,19.41233,31.963669,4.391 878,536.1536,312.55145,143.55927,340.64252,4.387 878,451.44476,194.49602,15.880493,29.75563,4.371 878,441.98642,-56.690514,58.779724,132.44792,4.353 878,180.72519,203.03464,14.296402,25.542114,4.35 878,147.95331,227.94077,33.143875,48.085327,4.32 878,556.38403,193.6962,16.779968,28.506744,4.309 878,493.40106,227.60785,237.36768,516.60095,4.306 878,292.04535,180.90756,16.385468,31.772873,4.287 878,453.38333,28.637245,27.832672,60.721207,4.271 878,245.16304,200.44786,13.211502,24.31102,4.263 878,315.54498,237.93341,33.310364,54.932312,4.25 878,418.7403,193.79706,20.029663,35.561584,4.241 878,483.57742,214.2572,16.340454,30.90921,4.226 878,58.046837,173.72171,20.317345,33.037964,4.187 878,-9.462704,70.02719,39.140137,111.98712,4.172 878,204.48062,181.77725,14.562653,27.986603,4.158 878,398.0478,191.92047,28.377075,63.887802,4.154 878,159.89468,213.2491,26.972458,54.3033,4.153 878,-5.857005,216.23282,17.826717,42.104095,4.151 878,197.93195,197.10606,12.591263,21.297867,4.144 878,231.54318,245.26996,23.754074,35.11566,4.134 878,97.52846,211.40633,19.705925,31.461746,4.127 878,403.47058,228.16844,18.976013,29.063065,4.116 878,143.52487,236.59506,25.080597,32.04962,4.091 879,437.09326,239.38152,29.434814,62.761154,11.567 879,319.11993,203.86345,24.287354,47.643417,10.689 879,523.08997,250.4552,19.367493,31.909058,8.952 879,619.3408,226.84819,17.877014,41.73088,8.421 879,494.885,238.62924,23.440857,36.51593,8.178 879,-2.7895749,192.57408,14.6305485,35.450745,7.018 879,4.607081,197.62112,14.597948,31.538864,6.848 879,68.193825,244.00241,33.315308,62.761963,6.794 879,627.02765,488.36288,19.801819,45.09372,6.698 879,516.1414,256.45703,31.947144,50.270264,6.56 879,-18.019066,-67.00799,56.462486,152.33257,6.557 879,-11.961633,477.27225,29.931404,63.638885,6.519 879,544.7164,273.3059,34.406616,54.24768,6.42 879,19.469429,199.5318,15.776768,31.316742,6.382 879,-4.8781414,220.65324,17.17519,42.65718,6.274 879,622.4448,-33.37126,26.841797,75.80289,6.212 879,514.6645,254.08366,20.4693,34.662796,6.112 879,-6.099244,488.87704,18.505564,42.605316,6.082 879,595.111,232.16632,18.385132,33.755737,6.063 879,613.07806,456.04236,38.516663,105.50995,6.026 879,-3.2150888,174.23065,15.406915,40.46167,6.019 879,412.61066,224.85498,30.894531,65.05243,5.941 879,2.6026893,209.20717,17.011332,40.710693,5.938 879,614.1326,-18.264929,27.453064,71.57795,5.827 879,50.12142,216.78577,21.710426,40.524445,5.825 879,13.954544,241.34514,31.34996,58.756607,5.806 879,250.98444,239.75368,55.43936,123.78218,5.637 879,-5.724685,-17.99065,17.489025,42.85927,5.615 879,612.9103,229.85947,16.22168,28.861938,5.576 879,276.88226,206.44716,13.815308,30.137955,5.552 879,626.8918,-16.85714,17.092712,45.454247,5.487 879,603.94995,231.54604,16.487549,27.381058,5.457 879,528.2739,255.80968,22.067322,35.69261,5.4 879,504.86462,252.90878,21.747498,34.036804,5.397 879,459.94,198.22134,14.823212,29.984863,5.386 879,-11.272136,-32.390724,29.513245,72.87425,5.345 879,586.8831,212.21289,16.468994,26.903015,5.321 879,35.982586,200.14049,17.11708,30.310226,5.311 879,584.20593,412.8137,70.48865,176.29562,5.265 879,-21.572859,403.307,78.16573,175.12415,5.264 879,602.9583,-53.80794,53.083435,137.6458,5.259 879,620.14624,220.2428,15.960632,29.443192,5.247 879,150.59459,166.9418,27.615265,66.984985,5.243 879,479.48254,234.49008,30.792114,43.9718,5.216 879,283.3029,234.80522,55.937805,125.031265,5.188 879,588.5534,226.9573,17.267395,29.143066,5.176 879,561.8654,273.98456,36.868713,50.51642,5.096 879,13.083968,200.88824,15.010358,29.321869,5.096 879,299.37573,203.7064,15.950867,36.40274,5.088 879,-72.63785,266.0688,199.9299,461.58612,5.081 879,409.21472,218.87053,22.469543,46.064133,5.062 879,483.82632,227.39078,17.88742,29.39154,4.997 879,323.15442,188.7229,29.534973,58.488846,4.951 879,205.60289,153.41428,13.521484,22.264359,4.946 879,531.7681,263.2472,33.65863,54.398346,4.894 879,377.92413,267.52875,36.21057,61.965973,4.839 879,315.28226,229.8132,57.85739,120.44345,4.822 879,620.1478,65.69043,18.62909,60.900284,4.801 879,505.16278,235.5896,20.725159,33.140594,4.792 879,499.76437,224.20868,40.442413,69.11755,4.774 879,597.41187,236.52159,29.593872,59.39589,4.771 879,-4.812419,376.7498,16.424587,41.687805,4.769 879,4.230298,229.28532,31.5358,67.98134,4.765 879,618.9712,489.60034,19.187866,42.852356,4.762 879,53.324657,215.1199,28.879642,54.569916,4.758 879,450.52332,252.88904,33.98584,66.04889,4.738 879,553.38324,246.15176,21.689636,37.827087,4.73 879,546.09686,241.86412,41.837708,70.09541,4.714 879,522.6392,237.06653,18.906067,30.088196,4.691 879,536.14764,311.20148,144.00061,339.7915,4.677 879,253.85283,143.24461,13.803665,27.25322,4.676 879,-5.6261373,297.2002,17.156141,40.240906,4.64 879,531.7588,234.10321,40.156982,68.61597,4.632 879,588.07666,259.995,34.485107,64.86438,4.605 879,1.8923682,228.23088,19.401522,44.434708,4.579 879,81.93602,245.43146,32.105843,64.94104,4.527 880,508.22498,196.92194,14.99707,39.481598,11.488 880,11.755575,194.75151,17.188679,34.866074,7.961 880,338.25375,210.25645,21.015594,46.606033,6.984 880,139.22403,159.19131,29.832825,68.73218,6.785 880,-11.329652,479.1155,29.20139,63.001495,6.768 880,626.96265,488.60104,20.100586,44.88443,6.766 880,-5.7542696,489.55682,17.955183,42.397278,6.739 880,603.49414,-54.76664,53.088867,135.2978,6.715 880,503.28314,195.9593,13.53009,35.839874,6.69 880,-18.166496,-66.67111,57.265137,152.62646,6.557 880,-3.8637235,187.56091,16.169954,40.106827,6.31 880,35.61609,197.59857,17.328053,29.085983,6.237 880,612.6754,454.73026,39.357056,107.70383,6.229 880,4.3048944,215.24434,15.602893,32.285233,5.983 880,17.59236,196.47842,17.39755,31.181183,5.916 880,285.15234,210.86855,14.26593,29.694778,5.733 880,-11.398531,-32.481464,29.722246,72.65335,5.699 880,515.8064,196.9825,15.232849,33.706787,5.63 880,-5.889472,-18.145718,17.571587,42.984642,5.505 880,331.56937,208.17403,18.94815,39.74669,5.499 880,493.14456,195.21457,15.90683,42.14746,5.496 880,627.2944,-16.682125,17.000305,45.191082,5.472 880,27.619379,198.25697,17.162535,28.263504,5.448 880,4.5818157,192.38608,17.098116,37.91562,5.29 880,42.065605,197.13785,17.64265,29.644516,5.261 880,618.9358,221.08159,16.61139,41.936356,5.255 880,523.51355,197.58186,15.89917,32.937744,5.245 880,619.0852,490.94867,19.811096,41.693054,5.233 880,-73.213104,265.7335,200.87582,461.71426,5.194 880,598.1051,226.98637,28.23883,60.342422,5.194 880,-22.045181,402.03403,79.25281,176.84164,5.13 880,43.64633,207.37393,19.54794,32.519424,5.074 880,583.51025,412.01068,71.015625,175.94489,5.001 880,301.2212,207.6907,14.855225,32.361664,4.935 880,301.2251,187.98958,16.407898,35.573776,4.919 880,3.8904822,133.52643,32.52331,77.940216,4.851 880,-16.37575,159.93617,49.019875,125.10109,4.797 880,344.64008,202.79044,22.384644,49.88037,4.726 880,-11.727229,137.55159,31.559738,77.15663,4.684 880,269.3356,207.37994,12.663849,27.775986,4.683 880,7.215779,172.47232,26.459515,60.38939,4.659 880,277.09125,210.29764,13.890442,29.36795,4.658 880,293.22687,199.09264,14.338257,29.826248,4.647 880,-4.7839117,215.25255,15.863528,37.092285,4.639 880,-6.354265,142.3369,20.256416,48.953003,4.589 880,536.5001,309.71677,142.61096,342.70706,4.528 880,314.71432,211.94708,19.701904,40.217667,4.481 880,548.6751,207.6992,16.256287,34.078888,4.452 880,595.42444,234.46614,20.157898,40.941177,4.452 880,316.48138,170.01411,26.87497,67.26427,4.441 880,623.45526,-34.56015,25.698181,76.58421,4.429 880,594.9592,-45.282562,43.171387,98.639145,4.406 880,539.1436,230.06096,19.059631,31.091873,4.358 880,-5.224285,159.25931,18.41527,49.409927,4.342 880,586.91785,238.58287,19.079224,35.034378,4.338 880,493.45837,228.04306,237.57239,516.13403,4.314 880,125.37053,153.67307,30.79779,58.477097,4.285 880,603.1825,230.5812,19.098328,38.59662,4.273 880,614.3609,220.93703,24.672241,66.10957,4.266 880,308.78574,185.40186,17.901031,39.387558,4.246 880,330.6494,221.71275,21.67987,43.53096,4.173 880,12.159531,214.70639,15.733128,28.535767,4.152 880,4.834723,233.71756,14.937538,29.847046,4.149 880,50.70497,197.28163,17.637848,30.924881,4.145 880,-9.21468,174.84824,26.661709,62.446716,4.106 880,2.8024535,491.4969,17.93509,39.421753,4.087 880,614.2211,168.55017,25.535583,82.01398,4.021 880,461.87543,180.40036,29.345825,66.23195,4.004 880,188.2291,316.5518,30.053757,59.502655,3.994 880,380.04153,248.72586,19.42749,28.114075,3.958 880,276.8564,343.76907,42.411133,121.023895,3.954 880,325.36667,177.60806,28.06961,66.83714,3.943 880,578.6013,243.39697,19.860352,34.09076,3.941 880,627.663,218.77174,17.005554,44.041397,3.92 880,386.9351,256.91464,17.193146,25.707947,3.92 880,-4.0135245,301.63437,14.845133,35.075256,3.917 880,618.16656,303.6286,21.09198,43.515625,3.912 880,481.74637,214.99942,42.715546,85.35565,3.909 880,-4.5431924,232.58748,15.298784,35.799973,3.872 880,305.842,336.2652,43.002716,126.01364,3.867 880,292.47742,211.80441,16.803497,33.797394,3.856 880,12.024662,233.70404,16.080235,27.286285,3.84 880,556.5256,208.33704,16.157715,32.495728,3.835 880,253.72202,208.97809,12.528229,27.833084,3.815 880,335.4701,184.86168,26.056702,61.895264,3.813 881,369.6297,220.91388,20.675415,37.82364,13.897 881,3.4051275,200.3193,18.039528,37.980255,8.138 881,551.36865,200.5636,29.159485,64.12042,7.569 881,19.417965,205.29861,17.091297,32.262466,7.509 881,574.2416,193.90125,29.165161,65.822266,7.331 881,627.1357,488.04922,19.52655,45.407135,7.101 881,-4.0310345,197.11447,16.468128,39.505157,7.05 881,585.41003,191.79282,19.84076,38.181763,6.933 881,623.6008,-33.975407,26.170837,75.32463,6.792 881,-18.184576,-66.613075,57.070076,152.60005,6.508 881,613.02014,457.75394,38.09796,103.35446,6.444 881,372.0426,205.76042,26.601135,59.082443,6.4 881,-8.545147,466.445,37.305386,89.69061,6.011 881,26.771236,206.52692,16.238884,29.3983,6.009 881,11.564806,204.10843,17.427107,34.97612,5.961 881,-6.0310435,245.2593,19.595505,44.41057,5.896 881,398.95972,184.6041,25.996368,71.20427,5.877 881,-5.8840504,488.61002,18.256332,43.031708,5.687 881,309.19775,221.34848,15.002991,34.560486,5.666 881,584.94763,411.77612,69.67078,177.59283,5.62 881,-21.179039,405.05707,77.488205,174.72668,5.599 881,627.03296,-18.659529,17.633667,47.363388,5.576 881,-5.8220606,-17.982761,17.486876,42.742374,5.558 881,-11.404823,-32.539547,29.721066,72.87096,5.511 881,53.076115,209.05823,14.202053,28.638565,5.462 881,364.9342,223.43825,29.638,56.64839,5.348 881,254.27505,214.48354,12.743195,26.65976,5.33 881,348.65588,221.21585,15.650604,38.24472,5.264 881,364.1245,225.11932,19.2164,37.83185,5.26 881,475.31406,303.30786,18.551788,32.66046,5.224 881,5.9548674,175.74203,29.128178,62.64058,5.211 881,91.00743,216.02376,17.181854,33.173294,5.184 881,324.88702,206.64992,16.101715,30.039307,5.183 881,343.69525,218.48941,26.804016,58.117218,5.169 881,-4.195388,179.90688,16.992641,40.586166,5.056 881,35.814377,208.88748,15.369095,27.885986,5.027 881,450.47858,266.99017,20.303894,28.31131,5.007 881,507.85754,331.5075,15.937744,24.796234,4.987 881,500.13245,332.46622,15.754822,25.213531,4.959 881,-9.37776,183.6038,27.351372,65.606125,4.9 881,-72.26027,267.61713,198.91576,460.28534,4.86 881,356.9444,223.5649,15.780823,34.925095,4.846 881,4.185911,133.96405,29.343134,70.97926,4.832 881,-15.684224,123.91139,51.03826,140.27348,4.801 881,316.06247,223.47427,13.974762,31.867432,4.783 881,285.79486,320.65973,13.0047,24.943726,4.764 881,2.8750134,184.19293,18.08764,37.9823,4.757 881,618.89886,489.6261,19.278015,42.522156,4.739 881,334.82602,173.37572,28.096466,66.749954,4.725 881,403.57486,178.26672,18.44284,37.600418,4.69 881,387.97177,210.71461,29.61676,67.6884,4.669 881,333.19147,202.3426,17.599365,36.253357,4.647 881,579.2336,167.19852,30.006409,73.082016,4.638 881,18.335732,188.12715,20.050491,35.55995,4.615 881,293.2923,314.46664,13.345306,25.995056,4.576 881,230.15845,215.44073,26.715454,65.737976,4.564 881,60.376022,209.5745,13.990913,28.648758,4.557 881,1.4847326,191.73083,24.277859,67.712006,4.531 881,587.70557,-15.689821,15.49585,41.22316,4.512 881,0.76985955,217.13618,26.5315,66.66112,4.485 881,603.00616,-56.088894,53.469055,136.25244,4.477 881,325.096,220.32356,14.069031,29.67923,4.468 881,275.6356,227.29291,18.223267,40.507477,4.45 881,372.9907,177.49725,29.47763,72.793686,4.389 881,492.28864,326.87073,15.778503,25.146332,4.347 881,-5.3780737,226.23895,19.06443,44.06488,4.34 881,267.54626,227.07333,18.040009,43.198425,4.314 881,536.30725,313.39,142.83484,339.78748,4.299 881,-4.0565605,443.71252,15.489093,42.024902,4.298 881,260.64798,215.01111,15.1579895,38.571304,4.291 881,444.19617,273.06567,19.457367,29.08371,4.281 881,581.2203,197.21387,38.687195,79.5119,4.249 881,100.11325,212.67097,14.611336,30.70256,4.244 881,435.80685,270.34476,19.620453,29.888672,4.244 881,451.98257,307.87726,16.355988,27.880585,4.241 881,67.63329,210.27663,14.211609,28.92247,4.234 881,564.78815,204.78178,31.661194,64.39372,4.224 881,459.73352,306.0746,16.90738,29.673187,4.222 881,308.80133,210.72275,13.852814,25.361816,4.222 881,334.19373,317.5712,12.100983,22.190369,4.206 881,301.62527,223.4663,15.067657,32.95726,4.205 881,268.46432,220.07602,14.404541,32.565613,4.205 881,606.31964,-34.513844,26.73816,71.49272,4.196 881,444.53314,339.8062,15.284515,28.992432,4.193 881,492.81317,227.18246,238.49664,518.33484,4.184 882,387.96878,204.47942,28.029755,72.90172,28.688 882,403.22247,207.40242,17.940613,46.36853,10.486 882,514.7846,140.95099,20.032532,53.67546,8.024 882,626.69855,-18.203014,17.426208,49.233704,7.606 882,-4.9074216,-16.634079,17.05299,44.54815,7.54 882,435.00153,196.00653,31.265625,68.246216,7.46 882,622.7622,-34.71686,26.216736,79.672775,7.326 882,-10.684642,-32.240215,29.597527,76.253944,6.711 882,-17.213207,-62.09523,55.400658,145.238,6.569 882,626.7959,487.85464,20.15564,45.81479,6.516 882,382.02826,122.84764,26.926575,74.92941,6.449 882,-4.508019,93.5058,18.285612,47.302643,6.401 882,612.76587,456.12015,38.907715,105.64719,5.88 882,-8.5242195,466.13144,37.343967,90.052826,5.869 882,589.7678,187.48706,13.275513,23.238434,5.858 882,477.44257,169.84322,31.70398,96.846054,5.756 882,572.1172,184.6359,14.253967,25.055176,5.744 882,-6.077217,488.77176,18.564436,42.75644,5.719 882,387.21268,198.36227,19.03183,57.043335,5.69 882,-21.288208,404.6785,78.09181,174.81528,5.529 882,348.80035,204.36726,14.633118,26.519547,5.514 882,3.244309,-13.647259,16.036955,42.256535,5.48 882,584.254,412.51288,70.41455,176.54205,5.409 882,379.85233,149.75713,27.322784,81.276535,5.389 882,567.7366,93.3685,23.109314,49.002,5.356 882,-5.786167,215.21672,18.015215,39.582733,5.266 882,-3.9336567,159.12296,16.465643,38.439972,5.221 882,394.57318,202.68379,18.627777,50.588806,5.199 882,475.92456,136.09033,31.9068,77.50238,5.086 882,269.19452,195.83751,13.0998535,29.273636,5.047 882,1.9816756,218.9031,19.526804,38.738373,5.016 882,329.1713,205.56728,19.86316,40.693375,5.012 882,603.6482,-53.976124,52.151978,132.38536,4.989 882,1.5603459,93.565796,20.485857,50.566162,4.981 882,493.39594,138.96306,28.0719,73.49739,4.959 882,-72.668686,266.97742,199.62122,459.96692,4.939 882,565.0599,187.18805,14.89917,27.177948,4.844 882,425.74872,95.0373,34.095398,63.627266,4.766 882,-7.4543705,1.1700058,37.02417,109.1591,4.711 882,409.75378,201.14325,16.377472,43.993088,4.691 882,507.14206,144.42656,20.237213,52.132767,4.676 882,-3.2540786,174.19543,14.8700075,37.807587,4.673 882,394.6233,124.01471,19.276123,48.554443,4.615 882,276.40588,201.71288,13.884094,35.335236,4.595 882,378.07605,132.79922,21.20282,58.00827,4.56 882,2.953691,171.44553,16.183886,35.62401,4.556 882,619.59674,-18.05493,16.957458,46.43876,4.493 882,-3.7096324,188.77263,14.4420185,36.64305,4.477 882,262.7412,197.2503,13.124084,26.835999,4.477 882,-16.282293,159.54549,49.41073,125.87755,4.431 882,378.91376,121.0144,19.70929,40.270287,4.401 882,340.69363,202.99835,15.661652,29.524475,4.388 882,27.721916,-14.723985,15.65387,39.511795,4.383 882,536.3169,312.69257,142.91132,340.74945,4.361 882,64.90573,218.23912,22.311714,33.082733,4.35 882,99.3385,-21.429468,31.92891,63.83699,4.305 882,493.02124,227.14886,238.47363,517.31805,4.299 882,468.50958,196.54659,31.837738,70.90672,4.264 882,31.410728,91.40535,26.858944,61.338776,4.259 882,-16.355923,87.68796,50.80471,146.42566,4.252 882,-37.55864,-126.521545,117.01298,281.21863,4.251 882,355.63416,202.88646,14.933838,27.775253,4.235 882,348.72284,192.4563,15.315369,25.719696,4.152 882,20.28907,182.00197,16.356396,31.639664,4.151 882,5.703299,82.545425,27.87206,69.3297,4.121 882,107.06867,202.5215,16.46096,32.19557,4.106 883,452.89856,205.84113,17.15329,35.81598,53.456 883,434.7719,200.21674,17.84439,39.686813,40.199 883,444.11096,203.19627,17.050476,36.013565,25.548 883,42.224358,189.2336,21.275013,39.305054,9.297 883,10.963578,191.4317,17.507412,34.03688,8.253 883,627.1315,-16.846329,17.605103,44.550404,7.741 883,356.38425,184.2456,29.342194,58.85347,7.677 883,338.6531,179.85165,30.858429,62.224487,6.762 883,-16.960218,-63.854424,55.76156,147.63997,6.669 883,518.1202,108.65979,26.861328,88.177155,6.593 883,622.8464,-32.937466,26.470642,73.09687,6.21 883,-8.848638,465.82535,37.54812,90.672455,6.074 883,612.58124,454.6527,39.920044,107.05859,5.939 883,379.71616,180.39224,29.039307,57.68286,5.768 883,284.33002,186.80438,15.133362,36.50058,5.695 883,-5.988338,489.48517,18.5151,41.529846,5.67 883,621.8559,478.60202,29.071777,65.34238,5.657 883,6.23518,187.1495,15.508915,35.24968,5.554 883,429.6388,194.17522,17.88498,37.01071,5.461 883,-21.292267,404.6474,78.471695,174.39764,5.432 883,-11.3836,-33.458206,29.824324,76.64945,5.38 883,619.4079,-16.546104,17.610657,40.99675,5.23 883,603.0226,-56.536892,52.9541,134.7592,5.197 883,536.62756,119.569885,31.419983,86.67526,5.138 883,168.51732,215.81021,23.663712,32.494644,5.083 883,-72.781975,266.17627,199.40712,460.50305,5.032 883,344.83374,164.84354,21.669922,40.361023,4.871 883,361.4647,163.38556,20.851166,39.784058,4.866 883,-5.5737996,-16.919636,17.551588,44.806274,4.835 883,403.2159,-15.995704,17.506775,36.99095,4.833 883,582.91187,411.22418,71.89099,176.83069,4.81 883,253.44482,296.1136,53.82257,122.93625,4.808 883,557.1205,112.46988,30.26239,67.39029,4.803 883,394.88675,-15.551899,17.016815,37.0879,4.771 883,536.53326,310.84274,143.10205,342.57584,4.761 883,414.5793,-33.338314,28.37741,71.63674,4.752 883,-4.894335,84.98556,18.375546,44.202354,4.752 883,547.53845,120.47607,31.751953,74.52616,4.665 883,201.01897,205.39565,21.784973,34.001785,4.66 883,-3.243482,163.86641,16.220123,43.582947,4.652 883,81.70963,183.68384,22.10614,37.737625,4.627 883,235.44786,304.26932,54.940445,130.55356,4.617 883,0.8603859,195.06427,41.778744,90.20798,4.587 883,430.66858,-33.212986,28.649323,72.33339,4.568 883,367.3463,202.41937,23.300903,48.11383,4.465 883,539.7809,28.376308,15.8688965,42.400867,4.454 883,65.26079,184.64081,21.673935,40.775055,4.433 883,493.73462,227.56256,237.88159,515.4908,4.432 883,350.65524,183.8692,23.353271,44.013992,4.423 883,275.3407,303.59012,42.29062,87.563324,4.354 883,523.57697,-9.182506,15.310852,34.930283,4.35 883,6.3233175,166.90338,24.177696,59.89418,4.334 883,244.44708,186.08208,15.027527,23.97165,4.325 883,124.6791,185.03731,17.25315,35.05081,4.323 883,488.71942,-177.82816,236.38037,420.61453,4.309 883,524.2158,2.729576,16.161621,34.921364,4.309 883,451.5771,191.9186,15.739777,33.869003,4.306 883,291.29315,186.62726,15.290405,36.44188,4.277 883,411.24496,-17.656893,17.626343,38.87086,4.273 883,427.23425,207.39311,21.81604,36.39557,4.263 883,175.18936,209.55797,25.486023,35.97986,4.256 883,219.35844,317.92084,54.881516,147.24078,4.237 883,292.7013,307.5236,40.887573,96.34537,4.228 883,510.0522,88.63243,27.555603,80.19566,4.226 883,378.71262,188.3978,20.187714,39.12404,4.184 883,585.958,-102.92549,76.2392,237.20804,4.165 883,618.7312,259.5489,19.003845,39.694244,4.148 883,501.37494,147.3533,29.558533,73.82951,4.133 883,353.16602,159.28229,20.658722,37.517227,4.128 883,-5.115378,198.48517,16.875978,36.68808,4.126 883,419.00745,-17.521086,17.702393,39.364758,4.093 883,542.82587,104.14322,49.009216,123.278534,4.058 883,190.80292,328.09445,50.53717,139.59775,4.054 883,308.423,307.72095,40.554596,97.95093,4.051 884,522.2246,213.60419,19.023193,45.765564,75.1 884,541.0134,216.09291,19.76477,45.625168,70.22 884,504.70737,208.47955,20.035553,49.6362,52.973 884,350.20453,165.61261,27.313293,90.41672,16.376 884,422.6279,218.01855,28.055267,69.44165,15.399 884,529.3841,215.46281,20.406738,46.305405,10.963 884,446.56628,124.35713,30.52008,88.75865,9.149 884,413.9292,114.862404,26.33603,72.17724,8.82 884,335.3471,168.33487,27.109192,81.535065,8.487 884,470.48114,180.51852,27.409424,85.54764,8.243 884,422.7862,121.45511,28.106903,77.01059,6.892 884,-17.614878,-64.056725,56.536476,149.67445,6.548 884,613.09985,454.54877,39.35138,107.40839,6.245 884,-11.66148,477.29883,29.139929,63.65912,6.187 884,627.0789,489.81,20.25531,43.01294,5.865 884,-5.9679356,489.3089,18.431852,41.60266,5.839 884,-5.418926,-16.478962,16.94883,41.318916,5.659 884,513.8773,205.56084,22.512207,55.312027,5.65 884,474.42072,217.71767,31.812866,71.352005,5.542 884,404.60406,209.30771,15.962769,42.35048,5.505 884,549.7384,220.0636,20.37445,39.927002,5.5 884,300.01447,205.23334,16.253021,33.14856,5.493 884,-21.38453,404.78287,78.26181,174.49582,5.349 884,610.449,-47.67089,41.7312,98.71424,5.271 884,623.33875,177.58218,24.772217,71.31346,5.224 884,492.40872,200.85954,18.52768,49.55217,5.166 884,-11.419753,-32.285408,29.606335,72.465034,5.077 884,583.0863,411.7031,71.63977,176.24057,5.045 884,-4.4537015,171.77591,17.990353,44.499207,5.033 884,627.0052,-18.956501,17.722046,48.253616,4.979 884,218.41931,219.0545,18.838516,29.81549,4.972 884,5.7298174,157.4254,29.372116,69.44028,4.945 884,536.3419,309.70953,143.7727,341.77496,4.931 884,-72.60238,266.64514,199.72424,460.61957,4.892 884,316.35767,199.6405,17.882904,38.655075,4.827 884,415.39853,145.1467,28.05014,83.0788,4.793 884,468.05792,119.07148,29.148132,71.90426,4.766 884,3.5580473,242.99622,17.437576,35.149475,4.758 884,618.71796,185.79156,18.62616,56.176666,4.651 884,438.4517,120.89919,27.831635,75.56202,4.649 884,1.6366637,173.30573,19.686136,46.93347,4.612 884,486.78726,205.4581,27.867828,66.07785,4.571 884,307.79333,204.22726,16.575836,34.47464,4.571 884,-4.42085,219.43521,16.595362,37.892883,4.564 884,494.1485,228.38928,237.19073,514.64246,4.555 884,310.23422,165.0567,30.00595,76.72287,4.553 885,331.83334,207.35036,18.68985,35.783676,13.863 885,437.16638,209.87563,16.074524,40.89685,12.447 885,470.48193,196.03084,39.683014,116.775345,12.343 885,355.0771,209.57495,20.534485,41.6019,10.869 885,315.56598,208.91656,17.387787,36.93097,8.793 885,176.13269,212.16177,23.87938,35.999664,7.785 885,-17.330893,-63.88996,56.23166,148.55202,6.638 885,-8.582869,465.22705,37.30567,91.18768,6.295 885,610.7095,-46.303627,41.442688,97.85637,6.292 885,613.1124,453.41592,39.411255,108.90494,6.082 885,323.3155,210.4417,17.934021,35.009857,6.081 885,-5.684057,-17.048943,17.064377,42.691246,5.954 885,331.8669,144.28381,31.578033,91.85358,5.832 885,622.2347,478.12808,28.822693,65.88608,5.796 885,626.8541,-18.552082,17.753723,48.557552,5.762 885,-11.417854,-32.556656,29.711296,74.614365,5.741 885,208.73709,217.23053,21.730469,33.854492,5.7 885,406.05942,213.26917,28.765228,61.946594,5.626 885,-5.9347816,489.59192,18.417353,41.878296,5.431 885,309.46872,202.57855,17.102936,35.43219,5.344 885,201.3875,221.68755,21.567596,32.666336,5.163 885,585.84564,-98.34762,74.92047,230.4982,5.128 885,-72.571785,265.7254,200.20209,461.66736,5.088 885,464.71466,220.36737,31.778381,85.403564,5.083 885,260.58994,203.92107,12.838593,23.177948,5.081 885,-3.148297,173.03625,16.636852,42.51335,5.022 885,234.27339,216.6228,18.01332,30.002258,5.005 885,336.58325,195.69307,19.306274,41.869324,4.98 885,-21.41565,403.71716,78.49788,174.5484,4.96 885,442.15955,202.59625,17.090698,37.195175,4.937 885,4.865736,190.26118,28.517733,63.47368,4.929 885,404.68457,135.13338,29.175446,95.62012,4.893 885,583.00995,411.72543,71.63794,176.62527,4.876 885,192.80829,221.40627,22.59166,31.485367,4.812 885,183.76276,220.96909,22.934326,32.105515,4.811 885,227.52364,213.51357,18.48082,32.66794,4.756 885,537.1059,311.69482,141.96692,340.64648,4.697 885,-3.9343433,154.75584,16.85435,45.473618,4.693 885,390.19586,198.75119,29.410309,55.170395,4.686 885,489.5876,-179.8411,235.40497,424.43414,4.631 885,573.9762,-23.370216,52.238525,126.55167,4.627 885,3.11548,185.8451,17.44473,48.07318,4.604 885,389.32782,131.2316,28.698364,101.93988,4.541 885,-8.433871,148.72774,27.689186,73.23256,4.53 885,70.52199,173.10535,29.79898,57.45218,4.517 885,251.45816,189.70088,15.015808,31.957352,4.517 885,-4.6607227,197.6068,18.095333,44.787643,4.496 885,338.58002,215.35101,18.255463,35.831635,4.488 885,1.9692802,216.85211,41.33897,99.664795,4.477 885,310.12823,198.50826,26.739899,56.436737,4.475 885,-5.0898924,69.79433,18.74315,45.874367,4.431 885,286.4252,207.2384,11.29715,18.718445,4.375 885,468.48148,87.727264,28.306519,106.25037,4.36 885,587.37366,152.46584,18.280884,33.24063,4.359 885,270.11615,205.35718,11.917664,19.096771,4.352 885,493.45636,227.93472,238.34369,513.90076,4.346 885,355.4207,182.81427,28.349396,66.90924,4.336 885,227.9389,198.90363,16.962036,29.795288,4.296 885,81.102715,204.23592,21.619102,34.40506,4.277 885,480.98877,239.38074,33.141968,74.599915,4.259 885,598.1274,-22.645922,38.714966,89.728485,4.237 885,-10.061508,63.43129,28.708038,69.874725,4.179 885,487.98743,155.50388,54.96344,149.74136,4.149 885,618.4815,132.72795,18.906128,47.892227,4.143 885,420.28638,202.31961,38.33191,76.43286,4.105 885,4.665041,154.76353,29.903769,72.010605,4.09 885,603.06464,-24.77438,52.888733,132.43307,4.077 885,365.9837,130.47536,30.01651,99.389984,4.06 885,436.7833,209.22769,39.02179,82.37521,4.045 885,301.39493,205.8158,16.653076,29.199173,4.03 885,327.35095,179.87021,28.015808,64.25922,4.017 886,154.85098,205.48308,19.616653,36.395966,10.419 886,623.3947,-34.33012,26.468506,76.05568,8.493 886,627.2996,-17.33748,17.593506,46.292877,8.147 886,57.62743,213.25429,20.987164,34.365448,7.432 886,406.08322,205.18132,30.505585,66.75841,7.089 886,433.5129,204.41614,20.799713,46.09369,6.759 886,330.4171,202.9402,18.707184,38.48291,6.67 886,382.18655,135.86191,25.227509,90.11336,6.549 886,-11.853314,477.1448,29.78199,64.33511,6.42 886,-6.0385427,-16.078133,17.817055,43.735233,6.364 886,482.99835,204.5903,27.455902,81.17404,6.307 886,620.2496,-2.8745995,18.209229,37.91253,6.255 886,-17.213839,-62.18599,56.266205,146.2378,6.149 886,42.463135,217.4856,19.406635,31.3125,6.098 886,613.2001,452.7306,39.69214,109.61133,6.046 886,-3.7856631,172.83163,16.159693,42.34198,6.043 886,201.17908,214.1886,22.186234,31.40477,5.714 886,286.182,203.62906,13.5130005,20.083588,5.675 886,43.45003,180.42235,16.718899,34.714523,5.554 886,34.05267,225.06815,20.204296,29.036697,5.488 886,-11.201233,-32.19947,29.538181,75.41109,5.479 886,-6.093133,488.7996,18.654491,42.486298,5.444 886,293.33063,203.30711,12.871124,21.062912,5.435 886,626.6691,487.69345,20.755493,45.320953,5.408 886,420.7764,199.57649,29.261414,61.72618,5.379 886,115.11929,189.24707,16.280075,36.248215,5.334 886,517.5783,185.23897,27.565369,67.05261,5.195 886,-5.01052,219.8205,17.809444,35.61328,5.182 886,49.913387,218.80312,21.205845,31.079605,5.124 886,-72.66898,266.22717,200.32547,460.80505,5.056 886,-21.32676,404.222,78.420334,174.35327,4.987 886,8.573905,221.88232,21.889687,32.39131,4.968 886,-4.5267544,154.89198,17.242716,42.70987,4.815 886,583.0517,410.6068,71.74664,177.53284,4.806 886,478.1647,92.32501,27.264313,85.12442,4.774 886,470.47113,220.87106,39.237457,92.29913,4.758 886,437.2857,192.39818,15.645874,44.420578,4.755 886,536.8606,311.33826,142.7973,341.4021,4.744 886,605.9304,-35.45261,28.121765,71.95261,4.727 886,602.6338,-56.49632,53.470947,130.5396,4.709 886,189.03459,203.98178,29.43129,47.10028,4.687 886,-4.1316204,204.01178,15.834719,38.41327,4.671 886,322.9098,200.49007,18.53009,40.248596,4.652 886,282.52435,209.58832,21.43274,35.214157,4.65 886,50.578415,179.70097,17.78849,36.329727,4.618 886,64.30212,206.07445,20.350838,36.64795,4.588 886,1.8629122,226.54958,40.36001,92.054,4.583 886,28.79627,179.32254,15.589754,35.78279,4.556 886,550.10693,198.28168,17.793274,48.019196,4.549 886,349.90826,141.3442,27.57666,91.558014,4.543 886,35.734615,179.97198,15.868053,34.970337,4.527 886,114.38617,203.80449,19.515732,34.567673,4.526 886,278.10492,196.94531,12.371399,20.064102,4.492 886,208.65314,210.5482,22.85202,34.514236,4.48 886,187.00606,213.60371,19.336258,29.435043,4.475 886,493.8861,228.3193,237.2981,513.8893,4.466 886,419.30798,-13.803379,16.285217,35.09877,4.464 886,615.5873,-21.286228,26.63507,68.0653,4.452 886,407.88467,156.06987,25.625122,101.38634,4.45 886,353.2048,205.0066,22.925842,42.411438,4.449 886,-9.717881,149.13733,27.709816,72.01297,4.448 886,496.51062,193.11824,22.156128,53.66359,4.433 886,482.6605,165.11008,30.22049,83.03088,4.408 886,497.8183,231.23676,43.87738,102.78912,4.384 886,2.3435688,-13.784066,16.61443,41.058773,4.363 886,-18.021353,177.07193,53.46814,122.83298,4.353 886,378.53406,145.5055,18.983002,72.47513,4.306 886,514.8742,216.3632,32.40576,63.155716,4.299 886,586.53235,-102.150055,75.09857,234.82448,4.245 886,514.57574,225.90692,41.420044,94.94415,4.236 886,429.2624,193.22551,16.014679,43.99263,4.234 886,489.94382,-178.31651,234.30331,420.8531,4.233 886,37.45831,160.71692,30.08971,56.112732,4.231 886,268.5832,194.35419,13.480896,24.874557,4.229 886,27.648756,151.65324,30.502214,61.834198,4.198 886,377.1826,214.35121,21.797089,39.83116,4.183 886,17.350378,226.59154,42.894203,83.71318,4.176 886,524.97565,-31.665627,30.005493,71.881134,4.158 886,108.52632,200.33646,17.84179,36.87062,4.128 886,287.1554,198.4754,11.123779,18.27745,4.111 886,425.0485,288.5711,35.986023,55.656006,4.092 886,501.6293,177.77533,29.595001,73.56239,4.066 886,3.8261847,165.05319,18.133257,44.47032,4.05 887,543.4955,228.03365,22.061584,50.45247,9.83 887,107.088585,195.11609,16.106613,33.942642,8.449 887,91.27663,194.07558,17.928665,35.841232,8.353 887,98.80787,194.01117,17.424469,35.040314,8.294 887,347.25388,208.20792,18.975677,40.41513,7.312 887,302.91925,212.42581,11.431091,20.0197,7.265 887,286.79224,212.50906,12.102539,20.137802,6.843 887,566.5651,204.11914,28.126892,60.259033,6.704 887,623.2133,-32.573685,26.491028,73.18095,6.634 887,294.48315,213.34879,11.733673,20.22351,6.521 887,-2.960631,174.62936,14.841431,38.932312,6.478 887,354.3643,206.16937,16.13913,36.046066,6.216 887,514.8069,193.07184,17.240906,41.34732,6.181 887,330.51202,213.63318,19.056213,35.73738,6.157 887,-17.156652,-63.31237,55.92663,146.28685,6.155 887,-0.36984563,212.33998,26.040594,59.03691,6.153 887,464.4944,228.13281,32.00244,69.0578,6.013 887,613.1134,453.37393,39.331177,109.18393,5.998 887,627.1556,-18.414047,17.376831,46.161713,5.986 887,626.76764,487.37537,20.499207,45.52289,5.96 887,-11.383621,-31.835104,29.702663,74.13146,5.826 887,166.8761,201.78632,24.962967,39.14891,5.794 887,-5.937295,-17.345358,17.691492,43.509487,5.745 887,-8.555237,466.24692,37.003506,90.532745,5.615 887,403.78787,210.39435,28.607605,67.839966,5.589 887,455.4921,113.728,26.428436,98.39975,5.546 887,123.54692,214.71048,20.030106,36.15103,5.536 887,338.84198,217.26279,18.715057,36.143555,5.262 887,137.77449,216.48932,19.742218,32.081757,5.172 887,-72.66949,264.9159,201.33624,463.62,5.062 887,34.06406,215.70856,32.86598,59.83545,5.051 887,323.74783,212.78035,15.852142,27.569138,5.048 887,-6.078273,488.9886,18.663342,42.135315,5.005 887,129.6085,210.48944,20.987366,37.47502,5.003 887,2.5711608,215.36044,32.958736,81.79956,4.967 887,236.77078,194.89505,30.99939,55.050415,4.919 887,603.2324,-56.443687,52.67163,132.53363,4.873 887,583.2323,411.56592,71.35083,176.61914,4.859 887,310.81717,212.46533,12.10849,20.223343,4.853 887,-21.49049,402.1333,78.908035,176.1842,4.851 887,232.82123,165.33409,29.814514,67.0005,4.841 887,-40.587303,363.37695,111.568375,278.37366,4.824 887,8.188969,219.19017,21.847557,37.146683,4.779 887,536.69086,310.97455,143.19122,340.82806,4.778 887,-2.6795075,191.61862,13.69787,34.553375,4.746 887,323.11316,218.73697,19.733978,34.81845,4.672 887,508.43372,193.8948,16.943848,39.456116,4.67 887,4.9216375,197.6524,13.109611,29.180725,4.652 887,114.33307,196.72464,15.522217,33.190125,4.648 887,75.0666,198.90263,16.633797,36.897736,4.617 887,-4.395625,158.5513,16.710941,40.503693,4.594 887,562.971,220.66383,19.89978,39.208847,4.538 887,187.3689,209.14182,33.67566,46.145584,4.522 887,-4.5186152,141.49675,16.122742,38.412186,4.517 887,395.37372,137.59576,31.736084,108.54344,4.497 887,86.44931,177.4741,28.436409,54.946167,4.46 887,493.99536,228.52432,237.44879,514.3196,4.458 887,24.562473,221.28146,21.96149,37.503235,4.418 887,0.5616677,72.89391,21.338375,48.340797,4.382 887,-15.394615,156.64398,49.63292,135.51874,4.357 887,446.2938,136.67139,31.633118,93.25845,4.344 887,521.04376,222.80359,20.73053,38.70343,4.281 887,363.70206,204.70882,14.809326,31.101685,4.26 887,619.18604,-18.317215,18.127747,44.1743,4.25 887,393.18384,216.1281,29.139587,63.32112,4.247 887,4.0863314,180.80804,15.082049,35.417664,4.238 887,207.66122,219.27252,25.354706,34.386993,4.223 887,315.69058,218.63953,19.593964,37.57611,4.188 887,474.46045,216.70456,29.762848,59.177643,4.17 887,454.9649,165.39682,30.390015,87.40129,4.156 887,-9.862963,142.13278,40.000595,93.69466,4.149 887,235.68277,187.92874,19.89746,40.803436,4.145 887,33.785095,220.21388,21.881905,38.43199,4.145 887,67.09939,222.82753,41.859047,75.01137,4.141 887,291.0395,217.03569,19.375671,35.225876,4.133 887,175.72914,213.99121,22.839401,33.06993,4.118 888,551.1283,258.65887,25.54657,35.8132,14.175 888,127.1911,210.93912,24.289902,46.11978,12.079 888,418.0548,207.00612,20.476044,45.285904,10.735 888,370.9471,190.57327,18.74356,47.09195,10.627 888,117.16997,208.92113,30.325424,64.15175,8.982 888,363.1562,198.32974,18.797485,45.12433,8.281 888,106.50748,214.29951,20.814728,41.41803,8.276 888,114.19648,211.6077,22.826607,45.776947,7.728 888,148.15533,211.20161,31.606232,60.337784,7.568 888,355.39368,202.52362,18.2641,39.785095,7.287 888,165.61632,216.09894,32.122513,61.185364,7.275 888,368.07098,206.32822,21.957092,52.365692,7.225 888,136.69437,200.84822,20.832397,34.802185,6.967 888,99.18977,214.4261,18.748337,41.62224,6.947 888,-4.837336,-15.376603,16.279482,41.647,6.876 888,595.7042,200.42413,42.30017,181.9159,6.873 888,101.05362,209.56592,30.73442,65.783264,6.747 888,552.97076,239.40007,19.606323,26.178787,6.726 888,622.77136,-35.081482,26.691284,79.82487,6.665 888,367.67816,167.61194,27.128845,67.218994,6.663 888,61.08637,196.95709,30.427227,64.449036,6.541 888,552.40594,246.41837,23.02069,33.4263,6.392 888,-17.092007,-63.187157,56.231384,146.42003,6.39 888,144.90216,203.55556,20.93135,36.34642,6.236 888,490.30792,247.87276,18.828064,26.369186,6.005 888,308.74292,207.19974,15.230316,27.162354,5.991 888,-11.678747,477.0415,29.487274,64.55908,5.933 888,3.8090234,241.0126,17.71941,32.472412,5.878 888,50.288296,229.16284,18.093403,31.165588,5.87 888,-3.637824,234.47818,15.668025,36.69461,5.862 888,27.785776,236.62225,16.139631,25.202026,5.823 888,124.14909,205.323,19.573471,37.852737,5.798 888,-5.8573747,489.3915,18.219795,41.293243,5.765 888,135.40031,218.20331,22.143387,45.37961,5.693 888,613.248,453.51263,39.371582,109.1629,5.544 888,302.28745,203.18178,13.857605,23.466309,5.43 888,-10.910424,-31.615347,29.162151,73.79027,5.424 888,91.29483,213.54192,19.656952,41.499496,5.422 888,-4.199697,218.37445,16.972372,39.39981,5.37 888,131.9422,208.89264,37.83937,69.02673,5.343 888,547.1053,232.42625,18.053955,26.331741,5.318 888,547.6911,235.35576,38.29596,75.85829,5.306 888,-21.313538,405.2976,78.133606,173.70862,5.258 888,626.5784,488.28632,21.017334,44.867737,5.25 888,492.3896,256.99133,15.352875,26.574585,5.16 888,615.07745,-26.565664,26.08191,82.28407,5.152 888,152.99467,201.86282,21.192017,32.460526,5.144 888,44.390465,230.35165,15.901646,29.492676,5.14 888,317.35385,207.35587,14.841095,26.056473,5.125 888,363.81952,217.47678,32.386383,59.750183,5.101 888,144.08453,218.40987,23.690872,43.474625,5.07 888,-3.3401525,172.40074,15.815682,43.725723,5.064 888,603.0107,-56.469448,53.050232,137.46367,5.046 888,-72.44953,266.98785,200.43341,460.78607,4.955 888,3.206522,222.73235,17.710686,33.832474,4.903 888,3.2525396,-11.807993,15.239385,37.609432,4.896 888,26.833517,182.24301,17.211634,34.832367,4.871 888,541.9298,231.27873,16.184448,25.836044,4.831 888,65.73026,191.47066,19.788116,41.678253,4.805 888,536.88495,310.86072,142.29651,341.28613,4.794 888,160.85184,214.8942,24.432297,42.291473,4.714 888,583.33136,410.70883,71.22662,177.45187,4.691 888,20.04338,179.87605,16.645275,39.475143,4.68 888,348.10696,207.12274,16.911682,33.807526,4.673 889,379.93768,200.8622,18.08252,42.839874,19.302 889,10.424285,229.60228,19.936943,35.571487,12.684 889,385.0604,204.64052,19.547455,48.233673,10.646 889,423.82312,217.31407,26.703888,64.66142,9.117 889,54.554977,181.68063,28.20285,58.448334,8.148 889,81.367355,194.96303,23.82724,47.127655,7.85 889,420.6282,118.87642,28.967377,74.10994,7.772 889,627.1963,-15.511725,16.8208,43.87388,7.652 889,623.3623,-34.358994,25.89563,75.92646,7.649 889,27.905539,178.66913,17.842417,39.97847,7.646 889,69.944374,183.1361,29.710014,60.109528,7.018 889,626.96936,488.34665,19.940063,45.551056,6.93 889,428.0283,134.45648,28.036499,105.17406,6.795 889,392.93063,208.10043,20.412445,45.327072,6.638 889,-11.731682,477.26572,29.374977,63.74649,6.593 889,-5.782696,-16.282387,17.314861,42.7333,6.467 889,467.3224,203.18517,14.760742,36.485428,6.447 889,11.5628605,192.67429,15.240652,37.141815,6.301 889,85.64282,178.76746,29.50779,61.55342,6.038 889,3.916078,189.73547,14.405226,39.404144,6.009 889,612.60016,457.62878,38.575928,103.82544,5.909 889,-5.565423,217.63261,18.562508,40.06865,5.909 889,-11.179323,-31.00595,29.81121,72.99086,5.87 889,-5.9641647,489.02457,18.274021,42.072235,5.867 889,-2.4573298,167.8577,14.859633,40.799545,5.819 889,-17.09379,-61.703896,56.389435,142.89818,5.632 889,603.5451,-55.040993,52.78174,129.1247,5.609 889,33.119938,186.51877,18.597866,39.7993,5.546 889,584.22974,412.80157,70.30322,176.84625,5.471 889,4.6154985,174.23807,14.631539,37.413284,5.448 889,57.539032,212.12383,20.869614,42.227234,5.403 889,-21.228552,405.00903,77.92805,174.4765,5.387 889,400.3371,205.75458,19.671265,41.813354,5.34 889,441.81918,276.98636,20.549927,28.480835,5.324 889,104.66602,202.10786,22.773125,35.805023,5.278 889,20.905949,189.2607,16.117447,38.294403,5.23 889,492.99896,214.636,17.424316,44.553513,5.207 889,42.96241,214.76256,19.24479,37.643814,5.15 889,429.8324,191.19614,25.135834,74.72299,5.119 889,-1.0711825,198.3936,26.523697,62.5905,5.087 889,129.30492,204.72887,21.916153,28.874512,5.084 889,436.4612,113.81745,29.317352,76.08083,5.072 889,49.687126,213.58757,20.62748,41.37291,5.025 889,-4.7659607,198.42531,17.687885,44.209152,4.959 889,389.6294,182.8612,26.020752,62.606766,4.92 889,-72.84924,267.36008,200.0286,458.91336,4.903 889,461.54352,204.11433,14.71405,37.682877,4.898 889,374.17566,203.50383,16.663727,36.723984,4.872 889,121.15019,205.3695,21.52124,29.837006,4.835 889,371.0123,144.88768,29.614655,90.61455,4.828 889,465.81454,279.1381,21.41568,27.956451,4.812 889,618.7906,490.30115,19.575073,41.973083,4.733 889,35.52037,218.1069,18.809082,33.36978,4.635 889,538.08545,285.12195,21.379944,27.864563,4.605 889,364.51587,207.20297,15.217346,30.661636,4.556 889,85.24642,139.56017,30.058037,80.61032,4.551 889,439.90637,189.77591,24.072632,72.71713,4.547 889,357.41458,-32.59861,29.958344,74.0261,4.522 890,536.7944,204.12808,20.41809,52.727936,60.087 890,426.93817,190.24626,19.506378,52.677307,9.803 890,508.9958,207.64722,28.767212,78.70517,9.079 890,445.89148,178.05498,26.302734,84.02016,8.533 890,300.50177,201.53929,15.617523,22.14682,7.759 890,626.614,-19.48962,18.360352,48.68739,6.404 890,535.02496,198.91249,32.048706,78.17793,6.366 890,293.38678,203.31917,15.679443,21.627869,6.195 890,-11.866379,478.06018,29.35389,63.607117,6.128 890,622.82855,-33.876305,26.111328,77.427284,6.056 890,-11.936692,-31.651546,30.788666,71.185684,5.898 890,-5.668251,-17.217997,17.885033,43.0128,5.775 890,402.68933,199.43411,19.656097,44.662598,5.747 890,612.59973,453.68774,40.028564,108.42169,5.747 890,-17.04953,-62.935455,56.380646,144.20616,5.715 890,429.6975,178.99779,27.217407,70.58606,5.66 890,284.5229,202.04561,15.917633,21.896027,5.609 890,3.7132645,175.33244,17.13284,45.89337,5.594 890,-5.976162,489.3898,18.248669,41.348602,5.531 890,626.31177,487.2491,20.95929,46.17813,5.293 890,602.6614,-57.394264,53.776306,137.7726,5.231 890,-2.9184868,170.29416,15.546986,41.09433,5.223 890,543.4827,210.2977,19.98462,49.656708,5.212 890,339.01343,203.8298,22.903503,44.04756,5.036 890,-21.356216,403.84677,78.30185,174.89255,4.99 890,-5.6284738,117.13629,19.057665,46.76245,4.91 890,-72.4466,266.56274,199.7811,460.43842,4.907 890,582.94226,411.8691,71.60681,176.27225,4.875 890,490.87488,-181.71756,234.12274,425.65616,4.787 890,536.3797,310.80936,143.47821,341.8961,4.768 890,42.756725,175.70306,20.122627,39.663498,4.73 890,527.003,201.5617,27.072876,72.21237,4.689 890,614.7027,54.21389,25.215149,74.07368,4.684 890,462.20505,184.49057,24.950073,71.52774,4.655 890,521.62775,205.25955,21.18219,58.00125,4.651 890,5.4088306,189.926,29.90323,59.685974,4.536 890,22.675741,168.12418,26.657621,64.03262,4.524 890,-5.9180017,248.51016,16.843287,34.76758,4.51 890,494.03638,228.40372,237.52496,513.9569,4.492 890,-4.1274176,184.54301,16.596382,43.292114,4.484 890,-3.8846028,85.45416,31.020319,70.312225,4.483 890,2.1379304,215.168,19.796484,37.02336,4.439 890,249.14816,204.88342,29.553864,55.675476,4.424 890,-4.738737,202.9723,17.90195,38.90999,4.391 890,436.46448,160.44754,29.860779,92.69272,4.389 890,35.536804,172.15007,18.55135,38.83876,4.384 890,258.05875,195.6337,19.251495,31.322357,4.373 890,618.73724,-19.719011,18.791016,46.77034,4.358 890,513.4956,139.94662,33.380127,81.549774,4.283 890,586.50305,-102.372536,74.91162,234.655,4.254 890,-6.5564365,96.56297,19.265215,44.664597,4.241 890,495.33875,225.06537,31.128723,67.878174,4.225 890,3.0716968,248.39308,15.898628,29.774582,4.222 890,491.54025,86.27104,31.317291,101.77849,4.2 890,179.24655,214.76111,33.372498,49.77896,4.157 890,468.65936,65.27643,31.569794,88.11038,4.134 890,386.9537,209.84567,19.131073,36.716125,4.125 890,6.8901014,162.39459,24.648857,67.63713,4.103 890,-10.602316,113.28728,28.714487,74.50218,4.09 890,249.7074,210.71658,20.222992,32.97107,4.063 890,129.82495,193.10661,36.4682,47.891556,4.06 890,-5.725543,233.9497,16.845596,35.983368,4.057 890,326.13593,203.72429,30.191223,66.293686,4.039 891,586.4921,203.67308,31.608643,102.19386,26.325 891,450.1115,203.6163,19.112366,49.799698,23.416 891,468.50616,204.54306,16.317627,38.582565,14.13 891,330.77356,199.40689,19.01886,38.79895,9.445 891,500.9357,197.21631,26.545624,71.75256,7.276 891,-8.749882,465.48764,37.228256,90.413605,6.471 891,567.05664,111.18779,27.052246,86.07391,6.433 891,459.55368,202.72708,16.943054,41.302414,6.22 891,622.88477,-34.124435,26.929321,75.66886,6.125 891,626.3579,488.15897,20.799683,45.37448,6.122 891,587.69104,176.4165,28.39569,89.71564,6.102 891,612.4145,455.80957,39.43274,104.9375,6.027 891,494.04773,133.04114,28.710938,72.05571,6.003 891,-5.617828,-17.235233,17.145586,42.940468,5.885 891,513.01074,187.94695,21.287415,47.963303,5.823 891,530.0061,189.87987,19.97461,42.960266,5.773 891,-17.008945,-63.41811,56.105762,145.75307,5.754 891,-5.8453617,489.11618,18.016266,42.01065,5.702 891,575.4886,193.9662,30.31781,84.403,5.651 891,-2.834494,228.6883,28.520792,72.73547,5.618 891,602.5074,-56.340355,53.865356,131.54622,5.587 891,527.3591,195.07588,26.031311,63.313705,5.53 891,-4.1419168,189.66116,16.526455,37.689377,5.418 891,627.3402,-18.443007,17.603577,46.58204,5.293 891,-21.21351,405.01486,78.14985,174.15512,5.279 891,-4.7258987,153.75267,16.978678,41.55269,5.266 891,564.6465,142.31378,28.321594,86.40175,5.243 891,-5.00988,202.77536,17.619076,39.476578,5.213 891,-11.579895,-32.235332,29.40773,73.91958,5.175 891,583.3812,413.3702,71.08893,175.47958,5.13 891,395.6203,192.74474,16.952148,37.18048,5.091 891,82.4267,155.57164,22.043434,37.165512,5.031 891,-4.5896535,172.60396,16.78947,39.3472,5.022 891,524.268,132.11995,32.039185,81.75078,4.99 891,-72.41728,266.76392,200.09459,459.96704,4.909 891,3.2272828,165.29715,19.095482,38.240204,4.884 891,593.7178,-45.242565,44.938477,94.32269,4.872 891,547.85364,78.02896,29.475159,78.81601,4.847 891,612.25934,214.77824,34.158203,113.478745,4.837 891,470.58636,196.51505,23.433838,53.909454,4.808 891,519.9929,194.12514,20.58612,52.565918,4.806 891,418.5593,193.46637,17.724152,46.878754,4.797 891,185.80884,203.14148,18.764618,30.287186,4.758 891,438.4767,148.9744,27.987152,71.56203,4.74 891,378.36005,207.86276,17.356323,35.605637,4.701 891,177.58371,206.24332,20.358246,33.085358,4.699 891,586.4561,-102.97709,74.68671,235.47018,4.694 891,368.6865,217.35663,23.23935,48.045593,4.673 891,421.26672,163.90858,26.856262,76.9198,4.599 891,574.5653,122.79675,26.617065,92.48465,4.594 891,536.20306,311.9895,143.22772,340.77698,4.586 891,490.52942,-180.60603,234.88495,422.89096,4.578 891,502.218,163.25018,29.20462,76.64131,4.554 891,2.819389,192.35007,19.038559,35.780777,4.538 891,477.80762,131.59135,28.642334,71.26378,4.527 891,89.61832,151.33655,21.781052,35.625443,4.471 891,549.12726,110.24185,30.667908,84.07529,4.42 891,493.35406,228.09497,237.86023,515.8819,4.406 891,411.96225,187.04213,18.538086,47.17885,4.399 891,517.162,209.14024,29.656128,63.685654,4.372 891,459.63794,128.06918,29.977875,77.35033,4.368 892,531.94556,207.19092,17.697876,46.887115,35.992 892,395.04877,208.67737,18.405273,39.282196,10.582 892,435.65808,200.4574,17.868225,46.979218,10.188 892,526.37213,206.75504,17.375305,40.34018,8.791 892,567.05756,182.5491,25.996582,94.78064,7.878 892,534.09174,205.37619,24.99524,62.958282,7.806 892,570.78406,184.61829,20.050903,52.650894,7.798 892,2.3023689,231.63733,31.670792,61.686462,7.006 892,610.3208,-47.506836,41.904602,98.61057,6.529 892,-11.441988,476.90356,28.825417,64.59448,6.374 892,627.051,488.32513,19.649475,45.331055,6.243 892,613.1962,456.8459,38.12079,104.761536,5.974 892,-17.186304,-62.7349,56.289803,144.86852,5.971 892,-5.996088,488.91544,18.293486,42.300995,5.913 892,576.43304,192.10262,19.737305,60.00093,5.837 892,42.74074,220.53375,18.811192,33.96164,5.775 892,544.03314,203.71457,19.391235,54.56726,5.728 892,3.3532608,174.36867,17.043034,36.10475,5.695 892,-11.577484,-32.17069,30.9496,73.44994,5.599 892,586.7909,194.03473,18.112122,54.53148,5.56 892,502.19763,237.99783,23.118286,49.763855,5.549 892,377.1859,212.41087,20.14444,39.176117,5.547 892,550.33234,131.89053,27.917725,78.95427,5.441 892,286.31055,204.55913,12.748657,22.275864,5.426 892,419.1188,202.23914,16.870148,40.037857,5.342 892,584.67096,412.3788,69.83588,176.35776,5.248 892,358.82037,196.03273,27.807892,52.41742,5.213 892,-5.5136003,-16.93246,17.642761,43.518295,5.18 892,-20.912773,405.75937,77.6186,173.84598,5.175 892,294.64362,205.25584,12.00235,20.93364,5.093 892,340.89725,191.18929,25.718903,56.845062,5.085 892,428.22086,196.12642,17.817017,43.00421,5.075 892,-4.2530713,156.80104,15.152838,34.92105,5.063 892,-5.0221796,245.87706,19.284191,44.652145,5.055 892,-39.394547,368.63098,108.8408,275.93848,5.033 892,401.4824,211.1547,18.565887,38.371277,4.99 892,-72.282776,266.82047,200.17267,461.03757,4.943 892,302.90088,206.14612,12.083221,20.616058,4.931 892,-4.381921,189.08313,16.878288,39.30963,4.891 892,146.32526,215.51062,18.597092,31.006683,4.866 892,614.6687,205.6171,22.551147,79.44089,4.851 892,3.7478626,159.88287,15.976388,31.450287,4.842 892,602.798,195.15665,18.54126,54.974136,4.827 892,310.31894,204.80315,12.633026,23.327835,4.777 892,533.5462,119.31787,27.899475,69.3938,4.761 892,-5.7293963,217.65182,18.424799,41.4946,4.704 892,67.00454,246.66237,34.845375,54.1111,4.667 892,626.76746,-22.705465,19.0943,51.74043,4.626 892,561.57227,219.16763,30.545044,73.97266,4.596 892,545.6668,131.36613,22.125671,55.640747,4.569 892,386.9861,216.15569,19.394775,35.17595,4.519 892,502.35242,248.8248,29.91211,73.7258,4.475 892,-4.333583,141.4927,15.363797,37.16568,4.474 892,489.66068,225.61354,21.75766,43.344833,4.429 892,466.1839,170.07033,18.415894,45.097946,4.422 892,83.29949,247.64636,31.635292,53.918457,4.421 892,424.85315,211.02684,28.098358,68.27547,4.408 892,536.38586,312.54547,143.10321,340.54266,4.399 892,2.5906138,267.53574,19.38821,37.66635,4.392 892,441.63998,196.75421,17.04181,43.59073,4.39 892,586.7462,-100.500496,74.110596,230.80438,4.387 892,91.00708,226.09108,19.994125,45.11693,4.331 892,2.9668136,195.07884,17.900707,34.419785,4.311 892,370.72546,218.07289,19.855957,33.113007,4.31 893,541.6218,181.54608,29.565369,91.783936,11.889 893,458.04324,206.94821,19.775604,49.09088,10.34 893,378.9607,206.00853,19.00653,38.057846,9.349 893,425.57257,188.34372,25.010681,67.94049,8.502 893,409.35138,218.64018,20.683594,45.472214,7.469 893,627.192,489.06964,19.686157,44.43341,7.373 893,451.7232,199.39941,19.37912,48.114655,6.93 893,611.6141,-48.813755,40.28961,102.808075,6.924 893,151.68747,241.00868,24.955109,39.880173,6.685 893,526.5215,143.20518,27.249573,83.776,6.602 893,155.43253,242.0727,32.31717,52.70984,6.576 893,627.21484,-16.085232,16.88739,45.267174,6.556 893,30.171444,185.511,29.941692,61.05385,6.396 893,-8.478004,465.40903,37.035736,90.40567,6.315 893,370.3451,203.43913,19.975464,42.630463,6.178 893,-3.4757195,182.71411,16.62685,45.049255,6.134 893,612.85376,457.82095,38.30658,103.55386,6.014 893,2.5928502,177.82727,17.442951,46.42299,5.952 893,-4.8243256,208.62065,16.9728,41.833786,5.79 893,202.70218,215.41757,19.588745,33.34485,5.765 893,-17.03163,-62.837456,56.303604,145.86583,5.711 893,-5.9446297,489.392,18.15878,41.754913,5.686 893,535.3723,155.20802,26.987183,87.78383,5.626 893,620.8328,0.2586136,16.602661,34.829628,5.539 893,417.05896,219.51976,21.877563,46.63878,5.49 893,-5.6336403,-17.657356,17.030972,43.452274,5.454 893,595.3186,-46.217564,42.566162,97.39854,5.396 893,-21.34703,404.6835,77.738625,174.58304,5.386 893,402.1631,211.13452,19.301117,40.687103,5.363 893,584.70557,412.60962,69.909546,176.46179,5.353 893,209.72794,215.34113,20.685898,34.378998,5.33 893,-11.441245,-32.477127,29.360115,73.81646,5.25 893,1.6246927,209.7003,18.873446,39.545532,5.243 893,-3.7364244,155.69838,16.867931,46.81842,5.239 893,547.7039,164.77666,28.287354,81.21977,5.062 893,-4.6552553,139.25795,17.048508,45.252045,4.976 893,619.2263,491.688,19.046387,40.351868,4.95 893,523.68475,161.34444,19.273132,57.25345,4.94 893,585.6804,-100.77333,75.158936,234.36145,4.934 893,167.68527,241.14972,24.815277,39.451782,4.927 893,218.45547,216.64473,20.785645,34.348648,4.874 893,-72.415504,267.42792,199.80151,459.88855,4.868 893,405.80774,193.49644,26.269135,62.980545,4.812 893,-15.955488,157.69522,49.19345,133.4686,4.788 893,40.651546,197.87971,21.927578,42.638016,4.767 893,538.2733,142.99069,19.733582,66.43512,4.726 893,1.5536118,225.58612,41.589066,99.46478,4.684 893,-3.9466228,124.90044,15.1247835,39.28531,4.659 893,561.3507,191.5088,20.098022,52.570816,4.585 893,597.5489,5.0802765,14.257507,27.389317,4.568 893,356.45557,204.23074,28.337585,63.920654,4.554 893,146.58981,238.02896,20.041794,35.11197,4.551 893,76.1156,224.95767,16.269165,27.417664,4.525 893,-3.9513633,92.62121,15.149273,37.37124,4.511 893,431.38913,214.3443,21.922821,47.858307,4.45 893,427.20734,180.79428,19.341248,49.121567,4.42 893,589.3453,5.149377,15.13269,27.03175,4.407 893,594.31067,192.99382,17.857666,35.88275,4.394 893,14.020424,178.59402,28.154598,57.522644,4.34 893,597.5721,18.85987,37.38037,101.19675,4.337 893,536.3867,312.58344,142.72766,341.11285,4.325 893,100.306915,225.84425,29.372833,54.02806,4.311 894,449.37018,216.71843,21.499512,49.865067,93.006 894,566.94507,215.61569,28.100342,80.02948,17.298 894,491.06586,203.96643,17.937897,54.5383,8.141 894,483.1808,192.00797,19.101288,48.537766,6.828 894,622.73566,-33.934853,27.13556,75.834435,6.803 894,396.30203,200.93385,27.56836,61.510788,6.649 894,-6.061475,488.53094,18.61993,42.186707,6.449 894,-11.523434,477.03625,29.263971,63.527893,6.387 894,-11.158621,-31.578978,30.055338,75.250404,6.093 894,-6.219087,-16.758938,18.095837,44.71003,6.081 894,581.4379,192.45244,28.661682,84.50166,6.078 894,-17.152891,-61.384018,56.370605,145.03206,5.943 894,583.0498,107.18926,27.415222,88.00468,5.768 894,626.9915,-17.892323,17.587036,45.882927,5.72 894,621.757,478.04486,28.963745,66.37695,5.693 894,439.64328,197.04916,35.167572,74.7724,5.665 894,566.76447,100.36929,27.060852,95.356476,5.637 894,63.57323,213.49661,25.665356,37.43106,5.536 894,-2.378325,189.32289,14.859604,41.271805,5.482 894,3.3269458,174.51878,17.345264,42.982315,5.48 894,369.7016,207.23837,20.264679,37.801132,5.335 894,487.62164,211.52129,27.430359,68.81685,5.3 894,436.97113,219.3948,20.30365,42.32007,5.287 894,496.82187,211.25,17.542816,42.760788,5.256 894,-21.636494,403.68964,78.649994,174.59015,5.2 894,585.9857,213.093,18.885193,55.315567,5.132 894,4.155832,210.38177,16.087164,42.294144,5.097 894,489.29974,188.73059,19.74707,46.457,5.086 894,583.30334,412.60696,71.448364,175.69308,5.081 894,524.1948,223.19221,17.654785,29.368958,5.034 894,508.26996,209.0809,14.6605835,33.058136,5.029 894,114.35149,245.90149,18.428741,26.051758,5.028 894,386.4422,213.47691,22.444794,53.18489,4.985 894,380.0958,230.7909,33.31366,65.249084,4.974 894,11.577698,209.81728,16.094946,41.693024,4.961 894,-72.7314,266.65897,200.11934,460.71994,4.913 894,603.3855,-57.384087,52.934143,134.23457,4.91 894,536.06476,311.30167,143.70648,340.62888,4.845 894,-3.347958,172.71893,15.888002,43.067963,4.837 894,-3.9929345,156.03651,16.097198,40.846024,4.826 894,5.384266,196.6444,14.760176,39.539795,4.788 894,491.3376,-180.38736,234.06207,422.89468,4.78 894,-4.076281,251.9382,15.195215,36.636353,4.767 894,27.833527,215.26381,15.850441,34.990097,4.734 894,-4.592078,233.25778,16.189625,41.294586,4.707 894,193.67581,208.82135,32.49675,48.459595,4.699 894,107.02812,254.628,17.518837,25.86354,4.682 894,593.75415,203.17445,20.162842,52.155716,4.67 894,594.15515,-47.06542,44.745667,96.049484,4.642 894,57.702164,222.96725,35.720825,56.11203,4.626 894,587.572,172.90854,28.332214,68.87341,4.603 894,3.5722399,259.07275,15.932096,35.167175,4.6 894,107.34108,202.85442,32.34671,53.70131,4.573 894,592.9119,114.234505,21.265564,57.819557,4.563 894,575.50696,138.90276,25.70398,98.8307,4.548 894,572.35645,168.44482,47.568237,130.5014,4.547 894,414.59607,196.53049,27.652649,62.55133,4.543 894,563.4561,218.21156,22.345337,55.389633,4.538 894,365.89673,-35.320145,28.504456,69.82056,4.513 894,493.82874,227.3758,237.50659,514.2478,4.507 894,116.34078,263.70862,15.791267,30.085846,4.497 894,577.0994,214.4411,19.87085,59.325256,4.489 894,548.52893,149.29767,28.014893,88.68039,4.485 894,451.4075,207.38733,33.31543,67.17859,4.483 894,427.1549,217.67557,19.09024,37.482132,4.48 894,558.50665,157.30081,28.154053,84.0591,4.474 894,362.51776,209.20003,21.243408,41.751953,4.463 894,497.31287,191.07681,18.925354,40.96469,4.416 895,597.8138,217.17361,37.172424,93.84549,90.757 895,417.2262,206.70425,19.250061,43.96161,44.728 895,468.75354,198.66089,20.352844,46.242294,9.775 895,397.45862,206.78787,15.859894,35.31984,7.709 895,613.9277,239.68834,24.034607,71.10591,7.691 895,626.53467,-20.497429,18.427979,50.167152,7.074 895,561.0218,227.97258,43.231995,88.06612,7.045 895,403.24323,209.15787,18.781158,41.183838,6.808 895,622.4864,-33.796272,27.195679,76.285034,6.638 895,3.0742037,204.94286,22.075386,43.079422,6.436 895,590.808,230.64828,30.293335,75.92462,6.391 895,498.36963,203.91481,18.421997,45.370834,6.342 895,-11.508361,477.96008,29.270664,63.792053,6.249 895,-5.9214725,489.50317,18.192667,41.34491,6.032 895,-22.057734,402.12476,78.34846,176.99854,5.993 895,-3.4941456,185.6018,14.869335,40.494766,5.965 895,549.53876,213.84369,39.906982,88.371826,5.881 895,15.577038,209.28313,24.243969,39.136703,5.809 895,612.7797,452.99695,39.919983,108.92639,5.795 895,-11.954277,-32.04638,30.359196,73.48831,5.77 895,-16.848574,-62.294006,55.927856,145.17033,5.689 895,120.46378,196.14644,22.398445,43.363052,5.684 895,208.52837,211.85207,21.177933,33.22612,5.541 895,607.5684,232.84802,37.98694,101.851746,5.5 895,13.082045,189.96577,15.49,41.089584,5.486 895,5.997424,177.87082,13.604922,38.542755,5.39 895,603.5359,-54.856182,52.4021,134.89174,5.36 895,-6.1936097,-17.758486,18.135763,43.96862,5.281 895,91.86372,196.50285,16.761948,29.057693,5.268 895,626.2968,487.21704,20.918457,46.45294,5.243 895,411.55118,202.43352,18.199188,36.25702,5.164 895,425.6799,202.4658,18.182556,42.81932,5.162 895,536.187,310.66895,143.7724,341.1903,5.125 895,202.49829,223.55344,19.713684,27.589722,5.118 895,7.2681293,193.2718,26.926584,59.61949,5.117 895,576.60223,224.36569,53.000916,121.810974,5.081 895,434.35046,197.28044,17.958252,39.899002,5.067 895,295.5624,193.1347,27.271149,58.64612,5.048 895,188.45538,334.7499,16.045944,33.339294,5.023 895,618.43524,216.58575,28.148926,81.96442,5.013 895,156.0294,341.32782,16.146225,35.1994,4.937 895,-2.7547872,165.19525,15.185951,42.846054,4.932 895,4.0951643,197.837,37.27879,91.27985,4.902 895,582.9928,412.13336,71.4823,175.96454,4.881 895,196.23984,334.69858,15.733887,33.24121,4.867 895,305.13522,202.88536,21.41452,44.666107,4.821 895,179.84682,333.89893,16.720337,33.788025,4.786 895,594.92377,255.33484,41.362732,108.27429,4.77 895,175.83768,215.16437,23.38089,34.480072,4.756 895,-72.74316,267.38696,199.4381,458.7838,4.744 895,491.95203,202.97089,18.092224,42.560684,4.74 895,154.80719,202.61165,20.388031,31.231323,4.739 895,548.6913,153.0777,30.74054,58.506485,4.72 895,542.41925,205.637,30.78711,83.91962,4.7 896,458.27527,224.42891,20.466034,46.631027,61.533 896,441.49823,225.4917,18.622803,46.709045,52.263 896,451.33694,222.52258,20.412384,44.798645,18.072 896,601.63446,246.60577,16.54718,29.465149,17.328 896,435.9036,220.2054,18.38092,46.4059,13.759 896,463.94534,231.6999,21.32367,45.773026,12.427 896,473.18512,233.49048,21.654022,46.77997,10.344 896,598.28973,240.87306,14.442444,26.853561,9.553 896,429.44244,227.98433,16.927979,42.303757,9.258 896,553.176,244.27045,19.981384,36.233337,8.545 896,627.2306,-17.877342,17.48352,47.061234,7.808 896,591.22046,238.76427,13.494629,24.531784,7.496 896,623.32446,-34.56769,25.838135,78.003265,7.486 896,626.97107,488.04526,19.773438,45.539215,6.859 896,-17.598293,-62.94041,56.63989,148.19505,6.748 896,341.92236,216.5233,13.215942,29.016617,6.415 896,613.03516,457.56125,38.13971,103.5112,6.254 896,-11.376417,478.30716,29.017895,63.275055,6.207 896,-5.9768906,489.20923,18.304333,41.49768,6.186 896,597.39606,231.02945,14.495789,27.075409,6.185 896,506.31396,199.667,18.291016,35.62291,6.105 896,421.43192,229.47179,15.864258,39.074142,5.973 896,556.86365,224.49794,14.191406,32.29506,5.896 896,590.22125,229.38503,13.5980835,24.86612,5.874 896,-21.130268,404.97336,77.38881,174.6188,5.789 896,-2.7902145,191.561,14.733378,37.730103,5.767 896,-11.310041,-32.510674,29.814547,74.238014,5.615 896,603.7123,-54.69609,52.65576,133.1879,5.608 896,584.74194,411.88486,69.76764,177.52151,5.529 896,188.4151,235.9403,32.529953,53.59027,5.528 896,73.42948,209.75621,22.32241,42.125748,5.465 896,81.56764,207.34825,20.936592,39.943115,5.44 896,-5.7673187,-17.72821,17.268248,43.550102,5.402 896,514.1049,198.68292,17.890259,37.219315,5.348 896,2.4899125,236.53577,21.030052,44.137756,5.252 896,498.38757,203.11172,19.893555,39.968292,5.221 896,482.21326,206.0195,21.740967,51.046326,5.214 896,8.3919,230.50844,22.14309,43.505905,5.189 896,472.83356,207.55226,22.550201,51.337845,5.184 896,480.38007,245.10962,21.085358,46.076294,5.152 896,597.91815,234.84476,25.91864,50.04071,5.112 896,285.40918,219.04887,14.425446,24.135437,5.069 896,618.60394,160.24963,20.075928,58.202957,5.039 896,4.6149883,205.22462,14.057537,33.879242,5.03 896,479.61578,225.9759,20.828491,48.373642,4.921 896,-2.7389574,206.32443,13.951375,37.279526,4.892 896,196.41843,230.36613,16.984741,28.36522,4.887 896,619.1526,-17.859741,17.319641,46.174248,4.861 896,-72.374664,267.25076,199.14182,459.64572,4.849 896,-4.8510647,217.66133,16.755478,41.56862,4.692 896,618.843,489.4894,19.417297,42.97824,4.666 896,347.85242,217.2369,15.057495,28.93161,4.634 896,378.5232,199.88277,19.045807,45.895096,4.622 896,607.96783,246.34573,18.094543,33.224304,4.587 896,-3.3403528,171.95836,15.194106,41.991196,4.546 896,622.3652,157.13979,24.921875,76.87538,4.532 896,603.7822,230.47412,15.148315,28.060425,4.513 896,582.36945,237.49521,13.251831,23.845734,4.489 896,66.484955,205.25787,21.142578,40.82141,4.482 896,521.9741,190.4474,17.63678,41.503555,4.417 896,292.5026,219.12709,15.013092,25.055832,4.402 896,306.0567,217.62767,17.609558,36.53415,4.394 896,129.16444,219.5129,22.117203,41.47496,4.379 896,462.7666,209.93048,23.092804,51.656128,4.379 896,199.82521,245.90569,23.679794,37.13536,4.33 896,536.5539,312.9674,142.34167,339.47803,4.327 896,5.525483,471.40927,37.69005,90.98361,4.327 896,301.2305,218.93175,15.375275,27.112564,4.322 897,533.17664,219.51764,28.678772,68.72833,89.005 897,494.17395,205.58621,27.059082,79.62784,43.617 897,490.42325,227.08888,21.253235,57.78383,14.224 897,476.6058,229.87926,19.368378,46.46202,11.672 897,479.64,215.70087,25.305817,70.111664,11.551 897,505.1575,225.87088,22.65207,59.48465,10.908 897,433.0019,207.77115,20.328827,46.712524,9.224 897,507.05173,197.67012,30.05606,83.48729,8.729 897,36.08353,210.98122,31.565968,55.527267,7.386 897,516.92914,203.92665,33.59314,81.260605,7.349 897,627.05316,488.92523,19.817078,44.421814,7.02 897,-5.6611753,-16.593946,17.584732,42.409424,6.894 897,-11.149578,-31.672312,29.353273,73.13648,6.889 897,-11.855377,477.85605,29.606297,63.635345,6.795 897,-6.066416,489.21844,18.338276,41.979797,6.375 897,47.64524,219.52998,23.408875,40.46678,6.195 897,98.04057,219.69499,21.095367,30.762482,6.064 897,619.56,111.13511,19.657532,59.600243,5.968 897,627.4055,-16.82227,16.994202,45.65099,5.933 897,73.19305,230.1354,20.119576,30.80542,5.905 897,623.68604,-32.710323,25.637207,74.62645,5.881 897,-16.901205,-64.29881,55.761726,145.565,5.749 897,612.76904,456.90402,38.79016,104.63498,5.682 897,57.016228,222.08826,23.369133,38.373505,5.586 897,-21.214481,405.1662,77.798744,174.4964,5.539 897,-3.6129057,171.80177,15.829231,42.862823,5.517 897,627.6995,265.99762,16.713928,41.582275,5.486 897,584.21686,412.54834,70.37775,176.9242,5.471 897,541.29785,209.35301,24.444763,50.519974,5.325 897,4.1390743,173.9207,16.8332,44.492447,5.303 897,440.97864,218.32364,19.812683,41.687622,5.281 897,427.08466,217.14575,21.215546,43.692444,5.245 897,615.7104,180.15892,24.551208,76.92381,5.102 897,10.493469,180.74973,18.142273,47.644608,5.1 897,584.7869,261.9631,20.628235,36.87137,5.079 897,53.132954,191.25607,31.087704,59.466827,5.051 897,528.99426,207.438,25.194824,59.5912,5.048 897,68.3326,213.7685,29.14119,48.869415,5.032 897,-72.6566,267.49152,200.08987,459.05035,4.918 898,532.2513,186.4159,25.895142,72.52347,71.959 898,508.3116,181.67754,28.254303,81.53575,24.566 898,519.8598,188.84164,27.681152,72.93451,17.882 898,498.28406,193.78474,28.151245,72.07243,8.283 898,501.49722,157.06387,28.316193,90.5282,7.563 898,-4.1776447,179.2194,17.383106,42.9402,6.995 898,545.9762,171.41783,19.354675,44.4664,6.959 898,627.30334,-19.346603,17.20227,48.900833,6.766 898,-5.770152,489.2627,18.06247,42.357788,6.639 898,-11.394379,477.065,29.453358,65.13068,6.421 898,442.57074,200.9772,18.114075,41.542343,6.412 898,537.55804,177.87137,20.058044,48.66275,6.338 898,553.2991,171.08473,19.947998,42.31105,6.314 898,436.1093,207.9214,18.875488,39.779617,6.186 898,527.8396,160.6511,26.922607,74.06409,5.969 898,626.52673,487.75842,20.598572,46.02191,5.872 898,-5.412185,-17.675837,17.907751,42.82843,5.852 898,2.4008524,182.99524,18.411617,40.809875,5.759 898,-22.649712,400.5409,79.0428,177.45325,5.736 898,513.0471,170.31752,20.667053,63.17708,5.73 898,-12.265879,-40.679142,40.879814,101.29248,5.676 898,612.8214,454.16513,39.527893,107.9368,5.543 898,-3.9575753,159.20908,16.011847,39.36566,5.488 898,402.62463,205.07562,18.558289,35.44107,5.481 898,3.2493372,162.6819,17.040028,37.429443,5.461 898,610.83716,-46.951492,41.18567,99.17265,5.238 898,583.78687,412.0853,70.9718,175.84622,5.114 898,304.571,300.8304,24.083344,43.700806,4.902 898,-8.994941,162.08266,26.412231,66.52829,4.871 898,-72.3403,267.219,199.19456,457.9231,4.78 898,499.1327,116.83124,29.296997,95.13672,4.763 898,396.8886,202.56647,17.62967,36.093124,4.724 898,619.4764,-19.896982,17.557129,47.47343,4.703 898,163.82379,292.25134,31.580872,67.167694,4.683 898,571.1997,264.3683,32.087402,67.98587,4.652 898,611.6892,175.38927,27.424377,78.95253,4.651 898,586.2458,183.42929,19.179138,32.089172,4.65 898,-17.224709,153.3714,51.09825,131.37146,4.603 898,346.39447,192.25024,19.155762,38.741486,4.595 898,369.85278,325.1249,22.206848,43.39395,4.56 898,313.26947,310.66574,21.894775,36.99466,4.544 898,523.4004,175.91812,19.949585,56.306213,4.526 898,56.71713,152.88377,61.27788,101.509964,4.425 898,586.6684,-100.10668,74.12567,232.58017,4.421 898,530.77606,196.5501,38.95697,89.573135,4.419 898,536.1194,311.64514,143.53503,342.5504,4.414 898,342.1742,171.34834,26.75,62.569138,4.411 898,541.01917,187.85472,23.076721,55.15222,4.404 898,538.9757,159.97278,17.694458,49.88817,4.394 898,1.7931306,-17.218222,18.370853,42.36452,4.369 898,183.1268,206.18048,26.677704,36.771667,4.357 898,284.86508,191.94858,13.757202,23.261292,4.321 898,88.81634,176.81985,23.320625,33.701523,4.315 898,2.465465,229.53934,18.021656,34.02542,4.313 899,605.75305,199.88846,29.715942,79.42395,57.805 899,618.19025,211.34601,20.79242,69.405945,21.949 899,329.29956,204.4803,19.58252,41.553665,19.711 899,443.66357,206.4635,19.57727,56.921997,18.744 899,572.37396,211.61728,28.873047,83.812195,12.761 899,593.0824,205.38983,29.381104,75.13635,9.339 899,622.7724,-33.7223,27.139404,75.87127,7.991 899,566.4448,197.01959,26.288574,75.22656,7.457 899,576.6619,208.0181,20.651367,56.570343,6.992 899,586.0818,205.43193,19.700256,48.799973,6.91 899,627.0403,488.239,19.849731,44.98938,6.782 899,595.52966,202.38425,21.378662,47.674057,6.519 899,-17.504486,-63.416313,56.711372,148.71289,6.115 899,-2.9324908,193.00034,15.225719,35.606262,6.113 899,-11.511576,476.62207,28.50854,64.47278,6.06 899,-11.424041,-32.485264,30.043167,75.51683,6.047 899,612.9253,457.25635,38.525818,104.344055,5.988 899,-5.723567,-16.74156,17.23516,42.9004,5.76 899,3.9880598,197.79079,16.525818,32.040863,5.677 899,626.9453,-19.102488,18.441345,47.241936,5.674 899,-5.94285,489.2426,18.115938,42.883057,5.615 899,-21.938208,402.06506,78.19329,176.82666,5.588 899,146.86606,219.5404,35.59192,60.851624,5.523 899,557.14606,209.11397,28.046875,80.28636,5.448 899,595.9745,224.30782,40.24475,109.03606,5.364 899,-4.669777,211.62343,16.606287,37.39525,5.336 899,435.68884,214.94458,19.991364,50.279694,5.228 899,612.8407,212.96436,33.087585,108.62085,5.224 899,583.5271,413.9894,70.87793,175.0267,5.202 899,621.0073,190.45045,27.740967,76.99089,5.201 899,618.19684,-20.58661,19.883118,47.914543,4.959 899,-72.83766,266.31787,200.25021,460.0692,4.922 899,428.91364,129.23196,27.167053,101.60144,4.913 899,602.57825,-57.13816,53.265564,138.77303,4.848 899,346.82907,222.47589,22.016632,40.564392,4.784 899,576.94525,197.94307,47.137512,121.20305,4.748 899,536.0033,311.6558,143.85327,341.6295,4.73 899,-4.382729,375.25125,16.324163,44.130005,4.721 899,585.79144,-101.74284,74.85907,237.91522,4.551 899,-3.971737,171.86305,16.480965,40.568497,4.544 899,623.068,236.37677,25.15802,73.09497,4.536 899,616.8844,194.11107,21.029968,51.152206,4.518 899,-4.979435,284.5545,15.49848,32.945984,4.503 899,130.09683,225.61806,35.654877,62.168686,4.478 900,344.5788,186.71223,22.496063,54.337418,32.553 900,328.95605,162.59697,27.131409,77.70961,13.73 900,490.98547,207.13605,28.262085,74.56381,12.845 900,439.12277,228.47668,22.678802,38.49881,12.628 900,623.3564,-33.54398,26.00946,73.701324,8.532 900,484.7564,137.32355,28.225708,94.48193,7.515 900,627.07825,-17.764977,17.382874,45.275257,7.405 900,2.6518316,224.84645,17.607311,32.834793,7.072 900,626.9182,487.88898,19.98413,44.97528,6.486 900,617.92126,155.65129,21.207031,51.890274,6.362 900,-11.572174,477.9583,29.318285,63.544006,6.164 900,581.8191,186.48738,26.175415,43.327286,6.085 900,525.1848,201.61902,29.350464,61.442505,5.955 900,333.38882,190.65973,29.169159,65.458374,5.925 900,-5.5074096,224.57835,16.806395,37.5457,5.849 900,612.76465,455.85852,39.06201,105.55737,5.754 900,258.90723,190.82767,18.482635,37.716644,5.747 900,-16.881187,-62.140564,56.193176,145.49817,5.716 900,-3.7394624,173.21556,15.560009,37.928055,5.682 900,-5.9222836,488.86096,18.168606,42.654785,5.656 900,-21.455345,404.06866,77.88688,175.79785,5.604 900,-11.806518,-31.94407,30.466888,73.88641,5.601 900,-6.0545177,-16.80544,17.861628,43.31612,5.581 900,377.05554,215.36743,22.749268,40.197296,5.508 900,531.2452,236.5347,29.684082,67.814606,5.394 900,397.5104,201.219,12.4965515,22.00679,5.261 900,471.71054,214.41866,26.83432,66.497665,5.252 900,565.2652,181.14624,30.533142,54.639023,5.065 900,485.33493,183.36775,28.444427,81.96629,5.055 900,603.50073,-57.615776,53.607483,135.73909,4.999 900,389.0834,200.89334,13.237274,24.175766,4.988 900,32.42961,207.08546,23.330486,28.82251,4.977 900,153.36809,207.27554,22.566986,30.06726,4.967 900,509.32498,196.7876,31.348358,65.51752,4.967 900,583.14777,413.3238,71.422485,175.9201,4.962 900,316.19037,183.89998,15.944305,43.36026,4.904 900,10.010212,223.183,18.136324,31.40129,4.893 900,-3.8430781,189.7104,15.456364,35.05385,4.809 900,501.83487,143.24664,29.763885,80.841324,4.77 900,459.78027,257.70587,33.24475,67.529785,4.74 900,382.28168,199.50546,13.978088,25.910889,4.739 900,536.0615,312.15356,143.86157,341.37195,4.737 900,411.6469,217.07935,19.339966,32.758972,4.718 900,549.45526,185.03317,28.437378,50.96913,4.701 900,-72.42538,267.87527,198.89615,457.90805,4.678 900,619.369,-18.481125,17.949951,41.81374,4.545 900,286.01343,194.63063,13.621216,28.005157,4.51 900,493.19263,227.00668,238.06622,515.5432,4.46 900,292.85065,194.15898,13.130432,28.550507,4.438 900,122.01893,206.00266,19.970543,30.870544,4.436 900,-16.036118,120.34995,50.97144,141.8258,4.414 900,317.48416,192.79088,31.833954,66.75691,4.413 900,521.8757,194.58966,22.242493,41.672775,4.383 900,160.57126,203.71588,24.036133,31.74562,4.38 900,136.87746,208.07619,21.603012,29.63887,4.334 900,179.3794,194.74261,30.956161,43.822952,4.321 900,3.9985137,186.52882,16.079086,30.929565,4.32 900,144.81906,207.98218,22.644196,29.312027,4.318 900,433.22894,221.52286,23.167084,38.28836,4.306 900,266.20258,191.0628,17.17395,35.897934,4.3 900,515.0239,209.442,42.537476,83.18898,4.281 900,49.934723,181.74315,19.30568,26.845642,4.276 900,17.44712,205.85516,42.387817,97.1579,4.269 900,-7.9583693,7.185581,37.84534,104.72841,4.267 901,393.39923,206.20377,22.999817,58.253937,34.153 901,376.32312,203.98479,23.941162,56.66359,21.071 901,618.88947,210.37903,21.147217,47.23703,9.197 901,380.24133,175.72493,28.929504,83.270584,8.522 901,364.9286,173.40482,30.76123,83.5177,6.996 901,463.06683,249.88635,23.831299,42.781982,6.869 901,603.1458,-54.42122,52.826782,136.99423,6.619 901,522.3175,182.39859,21.16809,43.203796,6.565 901,-11.371298,-33.217255,30.855436,76.06706,6.482 901,359.29456,200.30293,29.6073,65.228165,6.435 901,-11.351118,477.4006,28.684711,63.974274,6.314 901,3.8846369,190.91412,17.608253,36.85823,6.207 901,-5.735967,488.74512,18.028502,42.160828,6.14 901,612.9871,456.12936,39.173584,105.382416,6.104 901,-5.750172,-17.571356,18.181263,44.828217,5.848 901,3.6271596,224.26549,16.723116,32.32927,5.842 901,626.821,488.06436,20.499695,44.562714,5.836 901,-21.10334,405.37048,77.602646,174.7771,5.817 901,-16.761576,-62.370846,56.017708,144.45601,5.629 901,584.27057,411.92108,70.507996,176.55646,5.5 901,627.1012,-17.58696,17.42981,46.044277,5.491 901,586.0599,184.93277,18.725525,35.171783,5.439 901,153.11752,208.34251,22.265549,31.103271,5.387 901,137.06104,208.81242,21.052155,30.343521,5.303 901,116.07065,206.41585,16.14627,24.987686,5.299 901,561.4608,250.77228,39.567993,55.567993,5.298 901,610.1676,59.91219,29.277466,70.74466,5.227 901,343.01254,164.6991,26.992004,80.936066,5.18 901,121.84213,208.69472,19.388977,29.848343,5.165 901,17.407003,187.76108,22.424994,43.336792,5.133 901,115.01023,214.44073,18.764229,30.05069,5.067 901,-3.4902015,188.4748,15.764717,39.03195,5.047 901,161.26788,209.24239,23.03601,31.638062,4.928 901,452.47858,215.0021,15.389648,29.278778,4.918 901,497.67798,250.4265,20.892944,30.752884,4.908 901,108.83378,205.63115,15.648354,24.007553,4.853 901,3.2789147,203.70837,17.27605,37.38324,4.818 901,351.04764,193.52625,28.124481,63.04651,4.785 901,169.31897,213.986,21.986862,31.178543,4.755 901,341.51184,207.78204,30.314972,63.8927,4.723 901,-72.319855,268.30988,198.66498,458.14825,4.717 901,554.3728,318.98376,20.202637,27.118927,4.709 901,145.02765,215.1578,22.434937,30.946732,4.703 901,386.85013,210.05583,37.859924,78.139694,4.676 901,129.51627,214.42706,20.783478,31.4747,4.669 901,544.6376,247.23009,36.14099,54.74727,4.645 901,535.9919,312.6599,143.99042,339.85168,4.642 901,-4.8626604,250.21861,15.928297,38.132645,4.604 901,130.27036,231.88399,34.950592,59.260117,4.599 901,621.9183,188.51675,25.364563,71.87967,4.546 901,530.5003,216.74374,20.839539,29.344147,4.501 901,490.39972,258.31775,20.594818,31.82367,4.497 901,-5.5720754,224.46191,16.848446,36.775818,4.488 901,-7.780299,5.224121,37.923313,105.42897,4.439 901,492.98495,227.08606,238.48221,516.83203,4.407 901,1.6531569,-16.504147,18.246382,44.05439,4.39 901,122.5963,211.36441,33.31363,53.35788,4.383 901,358.28006,138.50774,28.784943,95.019165,4.357 901,623.1466,-34.246613,26.415405,75.09843,4.353 901,-4.360974,155.63646,16.560753,41.977814,4.339 901,619.47736,194.87381,17.66626,43.45755,4.305 901,252.79736,198.22842,28.90503,64.937256,4.29 901,603.87555,185.24893,16.352356,35.505737,4.281 901,10.620216,223.43062,17.52512,31.330261,4.27 901,292.60556,197.87125,16.022278,33.710846,4.257 902,538.1994,203.39441,32.104004,115.91577,15.869 902,430.3568,201.20868,30.338715,72.93692,9.559 902,551.3209,138.40265,26.728699,83.52609,8.982 902,622.9066,-33.78321,27.147034,75.99855,7.129 902,571.629,222.34213,17.48944,44.552032,7.012 902,548.2172,217.74641,26.077148,73.11211,6.737 902,563.297,222.33836,18.657654,48.861008,6.668 902,621.8105,477.01758,29.124207,67.55762,6.656 902,281.58374,195.01749,19.511322,42.712936,6.52 902,-11.092981,-32.474846,29.687658,73.471954,6.468 902,136.32483,203.78577,23.742432,34.163895,6.456 902,526.225,115.13097,27.579956,87.39305,6.404 902,3.118155,171.41011,17.462294,30.378372,6.124 902,-11.960304,477.44626,29.826887,63.960297,5.992 902,316.5548,193.37256,14.331116,33.014893,5.99 902,413.86624,197.39471,27.083344,68.53,5.964 902,626.9752,-18.397264,17.843872,47.364544,5.934 902,-5.9080024,-19.511574,18.00937,45.663536,5.904 902,603.02856,-54.822773,52.849365,136.26929,5.875 902,120.70011,205.93532,22.61901,31.713089,5.86 902,-21.282272,404.86646,77.928215,174.9967,5.749 902,439.49512,210.09404,33.704163,61.55562,5.607 902,3.2866,215.16663,17.067413,33.259872,5.575 902,309.34808,191.20195,15.970703,33.415756,5.554 902,429.15097,160.30858,31.177826,72.460144,5.522 902,-6.132693,489.1059,18.537378,42.407776,5.507 902,425.27563,201.74594,22.953705,59.973297,5.489 902,-4.330117,173.90189,15.813703,35.408844,5.474 902,10.680006,178.99696,19.709084,29.888458,5.454 902,290.01843,189.43605,18.260742,41.43187,5.454 902,-16.928427,-63.81205,55.401886,144.1723,5.434 902,532.9687,133.84091,28.365295,84.5195,5.42 902,-3.4074225,160.03485,15.179659,34.139877,5.36 902,554.5156,233.01126,30.934448,85.186615,5.319 902,152.087,203.27098,23.525452,33.482224,5.233 902,375.8716,133.85336,26.522736,107.15117,5.225 902,24.466862,170.96677,23.20811,33.11972,5.208 902,603.00287,429.95367,56.998596,144.64313,5.161 902,-5.041837,187.18747,16.274788,36.19255,5.124 902,185.31274,205.09746,21.851395,29.542587,5.119 902,385.59283,149.73898,27.91858,88.134445,4.92 902,536.6433,311.52454,142.841,341.22308,4.841 902,598.1986,175.33427,31.516296,69.407074,4.827 902,-72.6352,267.74475,199.45761,458.33496,4.815 902,299.90814,189.99069,17.210663,38.14354,4.798 902,324.61514,194.00328,14.131683,34.491135,4.763 902,585.5785,-98.10103,74.564575,231.70631,4.755 902,451.06018,201.72235,32.887543,66.80533,4.737 902,386.39722,188.26372,19.489746,57.926178,4.716 902,408.85422,211.02777,21.526825,58.06787,4.712 902,412.10303,131.64285,28.55185,97.97937,4.708 902,559.4093,155.90132,21.975769,55.889175,4.674 902,564.4801,144.82191,30.07257,78.73685,4.671 902,391.94714,205.82773,19.909607,53.190826,4.671 902,3.5796647,233.08398,17.62373,32.63855,4.626 902,567.50494,201.46211,25.62384,67.78862,4.612 902,368.78162,161.43872,24.312073,81.14783,4.598 902,269.5131,192.6651,14.670868,25.58397,4.595 902,355.6708,31.757366,30.476532,67.39377,4.465 902,525.5382,202.25525,30.412231,85.04053,4.462 902,493.86258,226.9769,238.00943,515.08984,4.416 902,41.08467,212.02312,21.116554,30.948975,4.405 902,499.52133,188.07385,18.312286,37.671265,4.403 902,-16.881336,122.920586,50.85863,137.64856,4.393 902,371.38885,200.12695,17.056519,46.878845,4.351 903,372.02643,203.8532,20.55249,48.439514,26.372 903,411.92896,202.29097,27.714966,72.574814,18.2 903,589.7031,255.49292,32.31073,74.03229,8.206 903,324.2499,197.24908,17.277374,39.51332,7.836 903,-5.5846977,237.04756,18.321146,37.57213,7.063 903,401.6999,205.48833,27.280396,67.824234,7.053 903,603.59625,-54.42539,53.063843,134.63446,7.049 903,344.52652,198.6558,19.975006,50.049118,6.813 903,516.45746,243.33447,30.819519,71.94458,6.757 903,-12.191644,477.15115,30.301231,63.83957,6.729 903,627.3641,-16.35985,17.03717,44.330875,6.713 903,0.9181869,238.73186,18.810966,33.652206,6.661 903,492.2223,220.16463,31.273804,81.00865,6.547 903,558.01135,251.37836,27.85907,75.73865,6.329 903,330.5744,198.05112,18.545288,48.17305,6.274 903,-3.526588,157.8464,16.1536,40.867493,6.234 903,569.69415,257.0856,21.746277,53.902832,5.924 903,286.85474,193.838,20.347473,48.841583,5.906 903,553.2798,249.82367,21.92035,52.830383,5.783 903,187.35553,208.94893,19.492538,28.550568,5.761 903,612.9914,453.2814,39.64502,108.739105,5.701 903,-6.2299533,488.72427,18.757719,42.60617,5.656 903,623.4749,-34.32235,25.874512,75.53361,5.622 903,-12.424745,-40.352043,40.887444,101.45317,5.546 903,420.71173,211.55074,26.921875,72.21544,5.514 903,85.72949,162.68533,34.04177,58.660812,5.488 903,614.12177,154.97446,25.703308,84.68645,5.411 903,573.164,252.94557,27.975464,77.102036,5.358 903,-21.365692,404.69897,78.15654,174.57715,5.331 903,102.960175,169.22688,25.185104,41.120346,5.282 903,3.1503396,165.80243,18.17519,42.068863,5.247 903,2.6709032,234.0727,32.450798,60.64441,5.213 903,467.73135,110.0932,32.040924,100.17612,5.183 903,626.631,487.7151,20.896484,45.856995,5.124 903,170.90753,215.70856,18.640991,27.651505,5.085 903,537.0014,310.38562,142.36359,340.9879,5.056 903,602.2616,254.09547,32.092896,81.70094,5.017 903,316.55798,198.66458,17.318665,37.4086,4.954 903,-72.68488,266.3994,200.39542,459.84656,4.842 903,595.15265,-44.45533,42.86902,100.028656,4.816 903,178.86627,215.8986,18.781128,26.778046,4.776 903,16.819778,170.8926,21.636456,42.50801,4.745 903,448.36948,231.04237,20.823822,61.630417,4.726 903,582.79297,411.22943,71.95154,177.43292,4.694 903,-5.786834,-17.237732,17.801834,43.94346,4.674 903,573.1974,166.60559,14.106812,22.546478,4.625 903,544.0618,244.92773,22.575989,50.580444,4.586 903,297.90463,195.397,18.88388,41.28952,4.558 903,581.3586,245.59853,29.177185,67.84575,4.555 903,619.83813,-0.7232094,16.496216,37.817905,4.554 903,485.8418,182.84247,32.234863,100.84729,4.544 903,5.069926,180.50339,29.755087,66.37468,4.521 903,326.07114,176.07709,27.515442,62.602753,4.499 903,194.60463,215.78853,18.352982,26.450882,4.497 903,493.81708,228.17969,238.1524,514.0351,4.474 903,-3.9310389,175.34094,16.346798,43.16185,4.465 903,409.90338,196.78633,20.676758,56.76529,4.462 904,446.4308,201.19193,31.689362,87.236664,20.801 904,298.09778,187.73024,17.641022,38.08882,8.534 904,130.40495,209.66393,19.102493,32.60881,8.319 904,360.59955,191.30481,20.666016,53.12108,8.113 904,373.5298,173.83696,27.635437,66.86345,8.03 904,135.98232,212.87407,21.705933,34.89009,7.123 904,-11.745205,478.53845,29.547035,62.37909,6.808 904,457.5798,205.77884,28.907745,73.243835,6.7 904,286.92,185.90042,27.431885,66.060394,6.544 904,613.3062,452.95087,39.67206,108.99841,6.5 904,-5.9776187,488.88666,18.3804,42.172974,6.488 904,623.6447,-33.39315,25.74585,74.970436,6.313 904,2.6781201,218.56966,18.647392,31.673843,6.183 904,337.3602,162.9125,22.66983,66.444824,6.05 904,451.48175,193.13249,18.406372,53.477524,5.792 904,626.89264,487.50345,20.944275,44.396942,5.77 904,-4.033856,157.01274,15.962582,36.859024,5.757 904,3.3834786,161.44571,17.724499,33.67108,5.734 904,119.21556,205.033,28.089859,53.531784,5.598 904,513.87445,194.7874,21.060791,41.150803,5.595 904,627.2516,-19.77361,17.138428,48.450764,5.546 904,428.73593,132.92831,29.979004,91.7682,5.531 904,-11.435558,-32.265453,29.638205,72.64566,5.486 904,602.745,-53.46478,52.739075,135.03702,5.346 904,-21.779613,403.26944,78.32779,175.22617,5.314 904,573.3946,187.58904,30.634033,60.602036,5.277 904,-5.56606,218.6053,17.628513,35.160477,5.276 904,9.483225,219.17238,19.45418,30.172287,5.188 904,-17.172483,-63.148518,55.942245,144.63817,5.187 904,-5.92793,-17.767605,17.933235,42.871468,5.157 904,354.14487,184.72807,21.618195,47.99855,5.083 904,124.00023,214.3014,31.691055,59.99742,5.058 904,430.9032,207.90141,30.763428,63.872696,5.051 904,441.93518,143.52747,21.354065,65.81683,5.045 904,417.9942,212.4128,20.373291,34.804123,5.005 904,180.25612,204.22908,16.022476,25.50624,5.0 904,296.93124,196.68184,21.549042,51.642975,4.938 904,307.06503,195.31451,19.32315,51.562042,4.911 904,-72.8696,266.32947,200.14021,460.4187,4.887 904,378.51758,225.88934,33.131256,67.57373,4.876 904,-4.015256,171.78957,15.607909,38.37776,4.874 904,356.7676,215.11235,31.235748,66.16264,4.825 904,306.7294,185.34204,16.983368,39.30359,4.776 904,92.66227,206.34102,16.77488,34.563217,4.774 904,364.9774,181.56091,28.294647,67.926926,4.746 904,367.5842,168.35997,23.048676,53.279144,4.741 904,583.10974,411.36514,71.637634,176.92099,4.725 904,3.4149308,231.4516,17.01495,32.103516,4.716 904,114.95595,209.81747,20.199875,37.38791,4.698 904,171.81267,207.50563,15.932007,24.100906,4.642 904,145.68817,212.77292,17.97203,28.476776,4.639 904,536.6799,310.8315,143.05408,341.9208,4.633 904,544.8844,191.37375,20.369019,36.68463,4.594 904,3.2376015,174.20717,17.306736,35.13585,4.585 904,-5.1247406,204.3519,17.5227,35.523727,4.584 904,531.159,191.84212,19.591797,36.471405,4.573 904,188.01674,203.6214,16.241852,26.048111,4.476 904,340.01233,186.43951,15.687561,47.251617,4.473 904,275.6588,196.91437,16.248047,27.262482,4.465 904,395.326,197.54634,15.654388,31.73523,4.441 904,421.99792,197.10402,12.884857,28.45845,4.408 904,162.19582,215.33224,17.571869,26.29544,4.401 904,493.4652,227.73587,238.0509,515.0868,4.389 904,498.6046,193.20494,20.543335,41.712692,4.384 904,413.90985,209.65402,14.455688,28.076096,4.329 904,585.55865,-97.12086,75.112,230.34125,4.312 905,502.01367,158.0423,30.01941,87.427124,8.836 905,563.70844,-1.6597099,31.460815,71.53133,8.811 905,478.10974,215.77292,23.942596,37.963837,8.127 905,366.91562,172.3046,27.846405,85.30594,8.016 905,427.4617,192.0458,17.679352,50.069946,7.618 905,499.8918,222.95181,42.63388,97.583405,7.122 905,509.3425,179.91754,27.85556,94.71451,6.552 905,627.2263,-18.725735,17.652954,47.672672,6.537 905,-11.601901,-31.83088,29.912674,72.85287,6.505 905,423.22647,204.80998,27.398193,69.218155,6.488 905,-6.3261366,-17.578943,17.766289,43.31004,6.41 905,623.27734,-34.066265,25.882507,76.8985,6.379 905,603.23615,-55.334965,52.62085,132.19879,6.103 905,613.00824,453.68497,39.628235,108.5853,5.996 905,-8.637341,466.3658,37.33288,90.04361,5.951 905,521.62286,210.87567,54.9693,120.320496,5.833 905,-6.0401726,488.83707,18.474178,42.567535,5.721 905,626.8159,488.05814,20.441528,45.59079,5.511 905,306.6886,196.5548,17.210144,39.157425,5.505 905,301.10114,196.66788,15.954407,34.405655,5.455 905,-21.37845,404.613,78.16688,174.85648,5.445 905,-3.932214,172.90959,16.052101,40.4897,5.374 905,3.4674966,184.56978,17.359692,38.801086,5.342 905,-17.461464,-61.98812,56.61239,144.25873,5.294 905,349.60495,170.11096,28.032349,78.0654,5.284 905,485.99973,132.54955,28.944122,96.410385,4.971 905,582.9098,412.04428,71.9245,176.10611,4.897 905,579.3137,-16.371365,31.664734,66.74284,4.792 905,-72.195724,267.73264,199.48196,459.26407,4.752 905,536.52216,311.6071,143.20654,341.07248,4.743 905,3.3404994,248.14334,16.730907,29.629211,4.704 905,586.41064,-98.18859,73.42609,230.66379,4.635 905,-4.725319,155.83125,15.713296,38.54692,4.615 905,579.5957,138.86064,30.408813,74.38211,4.577 905,294.10764,191.93982,26.772308,67.02811,4.552 905,425.4449,153.26526,18.872711,54.314255,4.544 905,-2.998719,188.75275,15.232898,39.424515,4.54 905,545.6334,230.083,42.181274,95.04799,4.483 905,546.8906,183.77515,32.37787,66.54892,4.475 905,493.85464,228.82019,237.40085,513.8969,4.455 905,491.7381,182.17676,19.531494,42.513763,4.408 905,-5.87164,234.91017,17.034838,34.524338,4.399 905,-17.24993,154.69286,50.548088,136.0696,4.388 905,523.17957,185.62616,29.853638,69.79393,4.369 905,234.54604,218.03836,18.402695,27.318222,4.342 905,34.947304,247.96576,19.633236,30.382874,4.325 905,594.42694,-45.238987,42.944153,97.431404,4.284 905,83.42576,138.5819,36.80945,72.67439,4.252 905,286.33167,200.94856,12.477966,23.421799,4.19 905,537.7076,266.91025,35.315002,68.11722,4.186 905,513.7555,161.49213,31.24884,83.877426,4.153 905,489.97314,-178.62753,234.65698,420.49927,4.139 905,397.40604,187.73184,24.785065,68.34238,4.127 905,618.1475,173.34506,19.09314,46.80429,4.094 905,520.3447,21.370098,33.821777,91.873,4.085 905,106.91871,232.87782,19.29461,27.816238,4.063 905,494.79852,215.91411,31.99591,64.13463,4.029 906,438.37936,236.4766,21.542786,46.07675,59.304 906,379.70645,191.24771,26.429474,67.381165,17.356 906,432.79803,213.19385,25.171509,60.401062,10.129 906,345.601,163.13034,20.318512,55.558365,9.025 906,465.42178,232.69157,19.650208,40.71736,8.708 906,446.4875,239.846,20.536713,45.849197,8.609 906,338.18536,161.5053,19.90866,55.287903,7.806 906,306.03845,186.15685,18.450409,41.189117,7.308 906,413.08142,206.45485,26.49176,64.56328,7.042 906,468.5814,214.30116,27.525513,63.9384,6.732 906,-5.474412,-17.201021,17.214088,43.424416,6.709 906,622.2311,-33.999783,27.353943,76.068375,6.61 906,474.14478,240.3279,19.344269,39.100082,6.361 906,-8.701224,465.5244,37.328228,90.9198,6.256 906,-11.268396,-32.003223,29.791424,74.429405,6.197 906,80.0309,156.67703,22.28669,39.087555,6.172 906,72.38835,164.01259,23.167686,40.29741,6.167 906,601.4872,174.06638,21.690125,49.92433,6.15 906,2.555695,170.69383,18.513943,45.702316,6.118 906,612.8893,453.09924,39.74469,109.06378,6.071 906,-16.704752,-65.30287,55.414177,147.86766,5.936 906,352.36658,169.55573,20.707764,52.516083,5.903 906,89.8117,168.79034,20.400894,35.355957,5.902 906,-6.146311,488.98114,18.601841,42.343323,5.859 906,328.80753,148.16582,24.990845,72.70056,5.633 906,626.5484,-19.123098,18.640076,48.32338,5.572 906,359.02725,185.09334,28.331451,65.97923,5.556 906,457.87265,233.15994,19.006653,41.364105,5.434 906,621.8774,476.64093,29.176025,66.730896,5.429 906,-21.536972,403.84656,78.67752,175.04993,5.344 906,449.79996,222.47769,19.675903,40.531036,5.329 906,441.39307,216.09373,20.075592,41.514236,5.242 906,3.066382,223.4735,16.827097,32.117188,5.21 906,-3.6519053,170.7974,16.876205,42.521683,5.131 906,426.28497,222.5818,21.07837,46.531113,5.107 906,324.6623,-33.847515,31.068298,69.18553,4.997 906,553.9798,176.54092,20.43695,37.262817,4.971 906,313.4265,185.51768,18.596954,41.485687,4.956 906,5.752226,142.09459,29.94555,70.69716,4.896 906,2.8489125,-14.585872,16.87011,40.050983,4.891 906,-72.59778,266.8498,199.61789,459.58392,4.861 906,299.6958,-34.764236,31.933228,61.6514,4.813 906,300.7104,180.48242,27.769867,66.198135,4.797 906,582.76135,412.43997,72.10321,176.28525,4.772 906,536.5028,311.40106,143.0932,341.06476,4.752 906,458.74466,214.8844,19.06253,39.87094,4.711 906,623.1776,208.05179,25.345032,75.04971,4.696 906,596.23846,175.11589,17.447144,35.911423,4.645 906,602.59973,-56.963913,53.40869,133.52974,4.623 907,382.67776,162.80618,24.818115,77.31549,8.95 907,322.81955,198.93422,17.639557,37.35446,7.695 907,622.19305,-33.957954,27.303406,78.331726,7.085 907,554.23865,203.03735,20.941467,44.210022,6.509 907,-11.765022,477.10876,29.588139,64.24414,6.45 907,-5.827512,-17.220196,17.332848,42.55033,6.372 907,613.04895,453.63126,39.880066,108.7767,6.346 907,-5.969206,488.6947,18.536034,42.439575,6.296 907,-11.452416,-31.774588,29.637886,72.44011,6.268 907,-16.7413,-64.41967,55.56273,147.31824,5.787 907,626.7914,-20.014,18.12207,50.722313,5.765 907,602.42267,-55.39769,52.802185,134.60295,5.669 907,318.44708,188.83153,25.884094,59.127228,5.634 907,0.6860161,195.83516,29.55615,61.20262,5.57 907,487.1509,217.42422,28.238556,94.77475,5.489 907,-4.868967,188.42615,18.650383,41.707626,5.43 907,170.0837,222.79533,19.770798,28.686249,5.428 907,626.55176,487.73038,20.919006,46.404938,5.395 907,412.4317,161.58934,29.032196,79.59114,5.379 907,-21.460892,404.1365,78.38303,175.03085,5.37 907,153.91673,221.99864,20.646484,30.742523,5.361 907,399.97714,159.08475,25.900726,87.997925,5.275 907,316.30307,202.77155,17.33609,35.77603,5.184 907,113.720055,209.28554,19.479591,30.406342,5.123 907,385.1504,192.54015,19.051239,52.93907,5.12 907,330.2107,203.67091,19.128662,39.678375,5.108 907,300.86206,201.2067,14.539795,25.371613,5.057 907,1.8374991,210.8165,40.390408,93.38754,4.977 907,162.44676,215.56136,18.365616,28.540222,4.947 907,309.11108,199.66972,15.082397,26.126892,4.919 907,292.05975,207.55968,30.957855,61.680374,4.856 907,0.23219943,189.47615,22.796423,43.83345,4.855 907,-72.443375,267.06808,199.7984,459.6409,4.816 907,536.49054,311.66742,143.0816,341.61285,4.798 907,613.5476,-23.550215,28.55841,83.07822,4.771 907,8.22741,192.70102,59.35592,93.20499,4.676 907,372.82922,186.44867,17.844666,45.51265,4.674 907,586.2745,-100.1376,74.56836,233.72884,4.611 907,583.24084,410.8857,71.48096,178.02145,4.567 907,4.3775034,168.40169,33.165867,69.99419,4.54 907,619.1242,167.57004,17.643555,51.189697,4.532 907,107.258,212.30853,18.193733,33.116272,4.508 907,66.801,198.80632,32.491737,46.579758,4.459 907,364.30896,195.93944,18.000946,38.791214,4.396 907,469.25977,239.71416,29.40689,69.68074,4.378 907,52.959618,201.04156,33.22042,48.396454,4.356 907,422.70523,177.87259,28.949402,68.47786,4.352 907,493.4135,227.00653,237.83887,514.8054,4.347 907,328.80203,193.69139,17.059723,36.29634,4.315 907,302.5785,186.03004,11.410492,24.548279,4.307 907,49.642292,187.11754,21.999866,32.371765,4.254 907,154.46422,219.11606,32.990402,53.34442,4.252 907,618.10657,185.47726,19.97461,54.86888,4.227 907,-10.0471115,200.95247,29.812145,66.87642,4.225 907,155.61525,210.99802,17.609924,28.482803,4.185 907,307.45047,206.30817,17.904388,32.367462,4.159 907,555.858,193.83852,17.361206,36.413345,4.139 907,-4.80645,172.96645,16.363594,38.715073,4.13 907,546.5974,-17.686258,17.904663,41.68584,4.125 907,162.41737,230.20404,34.538986,54.224792,4.116 907,488.99338,-176.66528,235.13943,418.58875,4.115 907,453.0116,-33.173386,28.843262,74.74423,4.113 907,161.29471,231.42152,21.284805,30.888718,4.072 907,16.962471,199.85724,35.034737,54.654907,4.07 907,2.9474008,-14.987252,16.518517,38.386703,4.058 907,550.8517,-34.99157,28.024109,76.60011,4.047 907,5.796789,468.45718,37.48423,94.81131,4.047 907,338.9937,210.80351,19.413757,40.962357,4.045 907,615.4064,137.78427,24.598633,82.22487,3.998 907,203.02356,215.76936,18.243668,26.670486,3.979 907,-5.6118116,155.99663,17.066406,38.804337,3.921 907,288.3313,208.94461,22.912323,40.554382,3.921 907,88.25013,206.45335,23.37899,36.26361,3.918 907,-37.6063,-126.86546,118.04699,279.2285,3.914 907,-6.251717,229.60178,18.681679,41.558502,3.909 907,8.794681,178.2695,23.397072,44.569855,3.905 907,31.03801,182.17033,24.649597,38.2872,3.897 907,462.37274,143.36572,28.57367,90.21828,3.896 907,268.00735,205.4713,29.05069,57.38295,3.89 907,575.89435,-21.818245,52.03418,124.58655,3.876 908,356.57242,192.74976,13.342804,29.813217,8.547 908,519.17255,162.28622,25.907959,91.02089,7.759 908,454.47705,153.91182,26.291077,96.8528,7.494 908,348.68304,200.03809,14.574371,32.36035,7.46 908,491.53226,177.48979,20.943634,50.615784,7.326 908,-10.645462,-33.31963,29.63813,74.122406,7.297 908,621.8349,-34.622982,27.11383,78.208984,7.181 908,-5.8942223,489.12473,18.177235,42.02249,6.304 908,-5.2759666,-17.961311,17.25759,44.374718,6.257 908,-11.463667,477.6799,29.262245,63.430573,6.208 908,626.6292,488.02664,20.580383,45.16739,6.044 908,402.8385,198.45142,16.421997,35.556793,5.942 908,626.52295,-17.142948,17.757141,46.307182,5.918 908,612.8025,454.53494,39.36212,107.260895,5.684 908,603.1597,-55.414078,53.231323,132.32004,5.416 908,-21.655994,403.5795,78.37344,175.43881,5.404 908,-17.255924,-65.71784,55.39316,146.75104,5.359 908,350.95648,191.16315,13.526215,27.705719,5.075 908,620.7516,170.30962,19.599121,51.10199,5.061 908,333.0741,197.6709,13.449493,25.660217,5.023 908,373.56628,191.91333,13.258942,29.950424,4.915 908,583.036,412.38193,71.60504,176.32626,4.905 908,-72.92328,266.313,200.3917,460.55963,4.859 908,340.56433,196.80452,14.835297,30.875595,4.825 908,365.13843,193.09737,12.917786,29.04831,4.823 908,586.02606,-97.71838,73.65143,232.08638,4.762 908,488.84332,147.1992,31.144897,82.52083,4.74 908,201.78575,210.91325,35.330948,55.673233,4.656 908,154.69643,215.98436,18.046371,27.479645,4.649 908,536.4402,311.68143,142.5777,341.50375,4.6 908,617.92346,-16.74049,18.379456,45.90409,4.405 908,186.77264,215.47984,18.569427,28.764328,4.354 908,209.30469,213.38556,22.238953,33.776215,4.349 908,105.504265,181.36052,19.844505,28.288925,4.293 908,171.3215,216.54243,17.769531,26.05687,4.264 908,122.176125,180.96165,18.521141,27.712265,4.262 908,493.50632,227.0932,238.12119,516.0517,4.262 908,201.66324,214.72952,21.04898,31.289612,4.25 908,163.09494,216.68027,17.92691,26.362793,4.223 908,613.69183,-18.580906,28.620056,72.868034,4.209 908,155.83597,203.92957,17.425446,24.364395,4.186 908,113.80256,181.39014,19.652885,27.693161,4.183 908,520.24316,-15.552307,20.364319,40.65822,4.145 908,137.31825,220.74617,20.963425,32.659576,4.131 908,-4.423757,344.98456,16.189745,43.091827,4.118 908,178.916,215.17383,18.47992,28.098572,4.109 908,89.82747,180.06049,19.888367,31.673264,4.075 908,2.571537,490.95416,18.309275,39.04236,4.051 908,-5.2457037,139.69794,16.789894,37.183197,4.042 908,508.30997,-31.912766,30.476593,72.05383,4.023 908,-4.3997726,202.54892,16.34245,38.4666,4.022 908,-38.214027,-126.859924,118.02566,279.458,3.992 908,580.3089,176.35365,17.539001,38.963455,3.987 908,193.90958,214.28078,20.327759,30.484055,3.987 908,512.3101,-13.36035,21.011536,39.309284,3.949 908,18.075714,183.78618,42.024063,79.21779,3.938 908,146.0707,214.31679,18.885544,30.391953,3.918 908,120.996506,222.67406,21.69365,33.128708,3.911 908,449.70184,137.74635,26.003906,81.9574,3.891 908,594.95306,-45.35267,43.23468,97.52949,3.877 908,489.18073,-175.45847,235.0799,416.21878,3.871 908,618.4902,490.2881,20.616394,41.906372,3.869 908,364.45682,210.34662,17.080292,38.21849,3.853 908,381.85297,196.58827,13.353638,29.036972,3.848 908,97.44706,207.79599,21.265099,30.157883,3.822 908,6.6450396,199.82697,27.595112,57.82312,3.814 908,67.01489,182.25244,18.678123,28.87584,3.813 908,-3.501096,189.2735,14.714094,36.935913,3.793 908,-4.6031194,219.81497,15.741627,36.32599,3.783 908,586.2642,-16.187243,17.9422,42.982555,3.781 908,318.92804,170.40266,10.855225,23.153137,3.747 908,623.30554,165.49779,25.210999,73.46823,3.736 908,3.0984883,-17.482521,16.566254,43.29615,3.734 908,308.8244,197.13133,28.059448,58.854874,3.732 908,5.653063,468.6113,37.713264,94.45749,3.728 908,460.46057,140.20697,27.401428,90.33728,3.682 908,66.43011,219.58652,19.257912,27.725464,3.67 908,-5.508433,154.44649,17.162445,41.385773,3.662 908,578.95135,-16.349182,17.54486,43.68382,3.656 908,3.4419382,202.82645,16.954552,38.659836,3.628 908,528.9001,-15.930916,19.029053,40.476753,3.621 908,52.292538,87.044624,28.23846,76.593925,3.618 908,147.14435,212.79124,40.93283,84.239395,3.618 908,103.88291,200.43071,23.04934,32.482758,3.616 908,520.70306,218.22406,21.829468,49.44055,3.609 908,509.5541,145.73389,30.105682,81.147156,3.592 908,612.33905,-2.7887459,37.769653,109.08223,3.59 908,372.9996,172.72737,15.085846,37.425262,3.568 908,128.88376,221.2698,21.69519,33.89679,3.557 908,97.529755,180.18518,19.89653,30.544403,3.555 908,217.30981,209.49,34.572906,55.892868,3.547 908,2.0975482,247.987,21.057764,33.48169,3.546 908,-10.168594,143.6391,40.60091,94.207535,3.524 908,233.58298,214.82048,21.71875,31.348846,3.524 908,326.92044,184.94899,11.285553,25.994186,3.518 908,-15.404314,188.19081,49.115868,129.65074,3.515 908,503.23685,167.4143,28.934662,79.316666,3.507 908,108.826935,180.96751,30.270706,52.098373,3.506 909,447.95526,202.25638,21.310974,50.12288,55.879 909,561.56366,184.81203,20.366394,47.022842,19.519 909,75.39058,206.75276,17.736664,33.359787,6.712 909,-5.7652044,-17.763369,17.760468,43.19721,6.635 909,626.4434,-20.963001,18.06189,52.058857,6.598 909,83.41408,206.1438,17.880463,34.10222,6.11 909,626.9666,488.00452,20.115845,45.349304,6.099 909,-11.848855,478.04343,29.731678,62.81961,6.069 909,11.760399,175.70847,16.15379,34.93402,6.005 909,-6.201481,489.5961,18.56462,41.34549,5.991 909,148.45534,211.23654,16.017761,24.105286,5.977 909,99.80002,207.85197,16.352211,30.379333,5.952 909,514.4518,245.91739,20.279419,37.385956,5.86 909,28.36213,180.81296,17.042133,30.192047,5.849 909,91.59684,207.28131,17.465706,31.613464,5.79 909,-11.014743,-31.945042,29.62704,71.88076,5.669 909,507.04953,247.94586,18.85202,35.208984,5.614 909,140.39397,215.19127,14.55394,21.676834,5.591 909,-4.4761996,202.91042,16.945957,38.827866,5.535 909,66.80592,205.50073,18.200714,34.890488,5.529 909,522.32184,235.31111,18.937073,34.936813,5.362 909,116.66965,203.38269,13.399536,21.928726,5.36 909,155.44247,207.77356,17.790634,26.828156,5.348 909,-21.67225,403.94827,78.45818,174.89182,5.311 909,3.4087646,251.08861,15.836511,27.526962,5.266 909,439.50406,174.88188,28.131897,78.2625,5.261 909,348.16818,201.89621,16.102997,32.078156,5.232 909,612.9505,455.47208,39.003845,106.40927,5.22 909,4.2366576,182.69495,15.492691,34.671417,5.149 909,-17.642382,-62.77938,56.39147,142.73979,5.134 909,251.69197,210.89696,18.774826,29.995926,5.129 909,363.5799,185.57872,17.307617,40.40605,5.079 909,583.1746,412.8205,71.44037,175.75049,5.054 909,124.656784,204.2749,13.14949,21.50473,5.036 909,18.717215,177.68608,16.309942,31.720062,5.03 909,58.780685,206.50461,18.67279,32.391388,5.01 909,397.99054,186.03235,13.582306,41.55014,5.007 909,58.32575,64.38044,32.723095,63.67266,4.974 909,3.3786364,164.8527,18.512478,42.61696,4.941 909,423.1488,163.50386,27.6138,81.64836,4.936 909,602.7123,-55.334755,53.64148,139.1026,4.935 909,108.69599,202.86778,13.927895,22.340576,4.934 909,-5.5325265,153.83818,18.238794,44.769638,4.907 909,-72.76324,267.395,200.09769,459.83145,4.898 909,132.13696,216.79166,14.340195,21.98082,4.854 909,108.42697,194.00208,14.63765,23.380722,4.789 909,-3.6900961,188.89763,15.417911,38.12999,4.758 909,536.3206,311.65802,143.20123,340.56293,4.751 909,2.8767622,204.78131,17.52668,36.322052,4.744 909,340.27097,198.6193,16.294128,27.996597,4.697 909,242.73169,210.43086,19.012207,29.667236,4.69 909,-5.8136396,136.67113,18.032894,45.409897,4.689 909,36.31784,190.07129,16.592155,27.420822,4.66 909,9.891788,158.48662,20.071033,41.11194,4.66 909,2.878694,-16.106422,17.021818,40.040462,4.659 909,-3.9494956,170.64214,16.074377,40.851395,4.633 909,364.8946,202.1716,14.740265,34.58455,4.627 909,132.41595,204.14163,13.977921,22.375443,4.593 909,123.73424,219.2935,17.015823,24.756943,4.591 909,620.6632,182.979,16.79065,44.806305,4.589 909,78.73623,197.51256,26.680702,51.08455,4.566 909,555.12335,252.70888,18.442383,37.02214,4.56 909,334.07294,201.3623,14.918091,24.690628,4.552 909,-5.7065525,242.2761,16.82193,33.38443,4.536 909,499.24606,247.1075,18.584076,36.196396,4.488 909,622.09753,234.20993,14.549072,41.15622,4.457 909,259.55252,207.55,18.48526,29.545258,4.433 909,209.48535,212.96399,20.986176,32.849915,4.395 909,493.3601,227.72101,238.26166,514.8294,4.393 909,545.7158,250.47885,19.522339,40.588135,4.371 909,98.9447,184.64436,16.407997,25.70523,4.367 909,390.29065,187.73672,13.872253,38.90587,4.345 909,161.39664,203.33844,20.059174,31.84256,4.336 909,147.95427,199.3775,17.07962,25.58899,4.336 909,43.80157,59.793606,33.970264,72.57501,4.322 909,435.46185,206.26216,19.49347,47.454163,4.256 909,580.11914,243.5296,15.015076,27.75592,4.245 909,217.76617,214.0371,20.073608,32.106598,4.236 909,491.45352,241.99222,18.101715,35.593628,4.22 909,92.57535,200.45299,15.385078,25.872131,4.218 909,140.43074,202.56183,15.223877,22.540619,4.2 909,116.01167,212.7285,15.310791,25.097244,4.198 909,-38.141968,-126.59273,117.87392,278.82922,4.192 909,-4.6623125,283.72278,15.6374445,37.353333,4.19 909,615.0268,-36.18136,26.419617,83.330154,4.189 909,334.623,171.38274,11.083069,24.156937,4.17 909,91.86284,184.44734,16.726578,25.86148,4.162 909,107.99648,209.33044,15.41095,27.012253,4.149 909,516.3355,227.16501,18.121338,37.170013,4.149 909,155.58954,187.08713,18.614532,31.34793,4.142 909,128.37706,226.27332,19.40303,27.48729,4.094 909,618.7242,-21.835537,19.224792,50.68477,4.094 909,44.784985,18.581764,33.267117,86.1445,4.091 909,-16.36745,157.8324,50.868153,132.11707,4.081 910,536.1795,205.44398,23.874878,54.206802,75.772 910,497.4384,205.2628,18.570465,44.93785,24.955 910,451.74487,190.00491,19.07605,54.3311,11.194 910,551.2606,207.86339,22.075073,44.924698,9.505 910,-10.361833,-32.37246,29.69513,78.575645,8.168 910,-6.204953,-18.285046,19.402348,48.3057,7.83 910,413.424,196.86427,15.473511,35.804016,7.216 910,514.9156,212.06262,19.13617,44.069397,6.444 910,-11.787299,477.39346,29.607273,63.671417,6.43 910,-5.8302326,489.14923,18.111319,41.671204,6.211 910,-5.574623,-2.327921,20.254507,51.394966,6.152 910,442.5525,178.89667,23.536316,66.183334,6.039 910,457.71945,201.23524,19.450958,47.762253,6.032 910,219.77325,202.29523,15.095551,23.365387,5.971 910,213.58397,199.26855,15.937683,25.263794,5.944 910,603.65015,-55.00205,52.57489,135.88074,5.848 910,626.75085,488.05402,20.316711,45.475708,5.832 910,627.1258,-17.632095,17.472107,46.178574,5.647 910,73.03689,80.32059,34.874138,65.089935,5.619 910,556.76483,201.13518,26.3125,57.12703,5.569 910,505.90662,225.10536,20.914795,44.623093,5.508 910,-4.250405,203.29456,16.623625,38.95775,5.475 910,-17.610008,-61.71157,56.64998,141.41496,5.469 910,613.0329,455.70856,39.208313,106.56946,5.453 910,-2.2709084,-15.491657,28.425331,76.989334,5.397 910,-21.520061,403.8448,78.10509,175.07233,5.352 910,29.251118,48.743633,31.341808,67.953476,5.258 910,243.8231,207.9296,18.622116,29.367859,5.244 910,436.91602,187.59251,16.889832,47.34578,5.236 910,489.01355,206.67247,25.189209,63.39354,5.136 910,210.90056,205.64049,18.945633,31.080063,5.104 910,-4.9383774,154.84604,17.014618,39.33081,5.103 910,583.40326,412.6881,71.27203,175.87958,5.077 910,-4.662967,139.71103,16.768526,39.74156,5.047 910,235.55788,207.57497,17.85675,27.796494,4.978 910,623.135,-34.11347,26.355042,74.65706,4.947 910,498.75775,233.64299,19.928284,40.369003,4.906 910,3.2059975,155.15413,18.701952,40.65193,4.894 910,-72.60997,266.91376,199.90372,460.45648,4.886 910,3.7724185,175.48016,17.637234,36.558075,4.784 910,535.9045,311.2544,143.88751,341.56085,4.744 910,505.33597,207.67499,18.250275,42.55954,4.74 910,339.76965,196.26059,15.678284,31.315918,4.728 910,268.48975,204.71141,15.702789,28.885635,4.723 910,348.13562,198.86452,15.280884,32.100433,4.697 910,513.1816,232.34352,22.214722,46.568985,4.675 910,581.1378,205.33717,15.90979,38.414978,4.598 910,356.34174,197.99648,15.713684,33.267212,4.563 910,-5.584774,241.56393,16.386896,35.19403,4.557 910,571.8447,200.12737,16.879211,36.230896,4.557 910,269.90826,186.1116,13.168579,25.499619,4.527 910,250.33278,211.21991,17.685623,27.598145,4.525 910,3.3673692,241.91356,16.493464,30.561783,4.495 910,1.0366595,-17.811579,19.348495,49.872772,4.469 910,226.3128,209.22144,19.628235,29.968216,4.46 910,363.2827,193.54274,16.182495,34.100586,4.449 910,493.4057,227.71146,237.90045,515.2406,4.442 910,381.02118,194.57297,14.644562,30.929611,4.423 910,-4.621222,172.72464,16.481274,38.687897,4.418 910,545.82556,215.65636,31.35614,60.789383,4.375 910,-37.6966,-126.94953,117.67868,277.82812,4.372 910,269.0011,218.61555,15.075165,26.2323,4.354 910,-5.915126,16.608017,19.744621,55.03466,4.348 910,333.26938,198.71672,15.4534,29.13945,4.332 910,516.6465,214.6478,28.65393,62.34201,4.283 910,12.295752,-17.080864,32.798195,76.26762,4.274 911,567.5907,199.59834,20.227417,50.959335,67.073 911,3.2010956,153.40326,16.229015,34.30539,8.845 911,-10.759935,-34.33969,29.34991,79.21639,8.67 911,-5.748764,-18.962666,18.283146,46.956627,8.296 911,-4.4087915,158.83101,16.0316,37.321533,7.902 911,3.753258,171.28252,14.368914,31.52568,6.8 911,29.835762,67.80838,29.670212,63.220917,6.711 911,617.7576,174.92203,18.49701,46.298126,6.617 911,380.47675,190.1195,14.5095825,33.32605,6.51 911,-5.7579327,489.10962,18.071083,41.9682,6.418 911,2.4610424,133.7621,17.423046,35.356506,6.38 911,243.65654,198.20801,16.577042,28.872253,6.365 911,437.97266,161.78017,26.654144,80.704834,6.341 911,545.7258,192.82994,20.544678,52.353806,6.3 911,603.12006,-56.193394,53.24829,138.39365,6.276 911,623.1436,-34.84485,26.737915,72.63459,6.231 911,-11.660957,478.3897,29.276825,63.220642,6.229 911,-4.9801893,140.68167,16.96756,39.28154,6.141 911,566.7208,193.76617,30.101685,83.815125,5.851 911,549.269,204.43817,26.698853,72.30539,5.821 911,626.92236,488.00003,20.101807,45.91635,5.728 911,-4.1720386,173.93857,15.081373,36.759216,5.707 911,389.00525,191.30157,13.6284485,32.719955,5.698 911,373.66626,189.1118,15.292725,31.899399,5.661 911,612.85156,455.672,39.040833,106.463745,5.526 911,627.60065,-18.573748,17.156555,46.731327,5.456 911,454.41333,155.33156,28.51712,87.951004,5.288 911,406.08276,197.5239,14.314575,33.385605,5.176 911,583.4834,413.26184,71.02661,175.42175,5.17 911,411.11792,195.72574,14.751862,35.64337,5.157 911,-16.842806,-64.55119,55.746277,145.10677,5.12 911,-39.082905,368.48944,108.628525,274.06696,5.083 911,2.5853026,232.44221,18.380545,33.784775,5.063 911,2.5698519,-18.399347,17.560532,46.53542,5.021 911,-4.566234,186.92871,16.320604,37.561707,5.004 911,348.89197,193.62004,14.928558,29.85028,4.96 911,-72.65349,267.39496,199.77483,460.1557,4.92 911,434.5636,188.34375,21.392853,56.89395,4.818 911,-0.8946526,15.645988,27.530819,92.31646,4.795 911,17.040455,204.08282,42.585964,75.737885,4.664 911,-5.997957,232.51361,17.012205,37.522064,4.595 911,245.53636,185.44789,13.1471405,25.763992,4.583 911,536.2283,311.50397,143.17004,341.71295,4.571 911,2.35695,51.655056,31.240522,78.41138,4.532 911,551.863,241.92363,21.632019,46.01976,4.525 911,2.5812078,200.4278,38.954742,89.51453,4.515 911,11.1646185,165.84796,15.083955,29.122192,4.498 911,562.5256,209.91023,20.27002,52.23021,4.45 911,472.48776,163.74481,27.826202,84.44943,4.429 911,251.17401,200.04323,15.879852,27.27806,4.423 911,253.38538,185.19215,12.723907,25.272675,4.404 911,259.74695,204.49399,16.582672,29.031143,4.402 911,621.4643,222.3233,15.903564,40.484375,4.382 911,-17.23237,435.10397,54.69513,141.6636,4.36 911,11.269085,192.52417,18.098808,30.321106,4.311 911,493.2915,227.58588,238.16162,516.19684,4.311 911,333.31665,198.94249,13.423279,29.585495,4.296 911,576.6481,209.32713,17.668884,44.662186,4.278 911,-5.2768874,122.35039,17.593937,41.286667,4.266 911,-5.393496,31.221254,20.204638,59.05307,4.246 911,243.14516,209.6471,17.675125,28.211807,4.237 911,10.491669,144.97186,17.619183,33.594498,4.235 911,-2.1345556,-21.579973,27.88147,82.59652,4.229 911,-37.947613,-127.28158,117.31912,280.0852,4.19 911,-5.537161,-0.37444878,19.126629,50.32792,4.188 911,-6.2837467,200.16058,18.96579,40.156967,4.168 911,26.31835,231.57065,20.328447,30.309692,4.158 911,188.06439,207.51154,15.657043,23.152008,4.157 911,27.483887,184.5358,54.337326,99.49155,4.157 911,3.2583308,249.67108,18.01409,34.909668,4.149 911,9.312297,231.89218,19.646988,31.750427,4.145 911,-10.479178,134.10233,27.710155,67.839935,4.144 911,10.434103,-18.9148,17.665815,46.33748,4.125 911,355.2431,192.49948,15.631653,29.111877,4.094 911,-16.732523,124.79135,51.272385,134.5368,4.085 911,202.99889,210.59666,19.125046,27.833054,4.077 911,-5.6639433,248.93584,17.073526,39.362656,4.054 911,350.07858,205.40297,14.535645,28.472504,4.02 911,4.292307,184.75952,14.945131,31.734268,3.988 911,587.7708,221.58685,17.339111,38.419342,3.936 911,379.92554,208.72067,17.791565,34.701675,3.93 911,-11.827692,188.98929,29.211384,62.587357,3.892 911,482.6444,164.4604,29.184387,82.729355,3.888 911,12.802654,181.86496,13.443909,26.860321,3.841 911,556.4376,203.02124,18.107971,49.15863,3.813 912,626.64417,-19.3626,17.640808,51.41401,8.032 912,323.3899,204.80026,17.120789,30.777298,7.815 912,622.6055,-32.331486,26.248962,79.52075,7.37 912,349.19623,198.42172,14.780334,32.34668,6.712 912,371.2397,201.09148,16.678406,30.940079,6.233 912,588.9309,130.20981,30.839294,90.91734,6.223 912,299.8303,202.58765,16.371857,31.824295,6.217 912,-12.260067,477.82153,30.236368,63.11035,6.1 912,626.8889,488.18793,20.194702,45.635254,6.066 912,6.009772,209.78981,29.528784,52.70378,6.02 912,469.40356,185.41243,25.112183,82.34831,5.942 912,363.62604,199.25844,17.015717,32.79785,5.933 912,-16.906536,-63.59348,55.818333,146.30524,5.925 912,602.9253,-54.783943,53.05591,137.27182,5.88 912,-6.299385,489.27173,18.668682,41.779785,5.671 912,-11.710482,-32.522842,29.947166,73.90608,5.635 912,380.39,200.68289,15.723816,30.178268,5.6 912,192.9825,209.29622,18.41243,28.865128,5.564 912,573.7761,128.97638,32.933105,88.07007,5.515 912,612.88556,455.41156,39.090027,106.803406,5.478 912,-21.62298,403.1762,78.34111,175.58575,5.404 912,-4.6208887,186.86989,16.680586,39.06752,5.349 912,-5.9451385,-17.131317,17.889576,43.16661,5.278 912,583.0808,413.5739,71.59808,175.10419,5.134 912,403.7231,206.57056,15.950409,33.405594,5.104 912,-5.9152503,215.02898,18.029337,41.59706,5.004 912,411.77295,207.43562,15.0703125,33.702744,4.972 912,2.119422,221.09122,20.180534,37.49167,4.947 912,-72.840836,266.7981,200.07979,460.08936,4.927 912,274.97067,200.42639,17.32547,35.23752,4.84 912,186.89798,216.26839,19.514404,28.528503,4.755 912,536.4116,311.4712,143.04462,340.818,4.74 912,607.49927,209.1153,26.805725,80.962524,4.652 912,455.52982,137.72668,26.35498,101.66095,4.556 912,396.6687,203.21509,14.0112,28.845871,4.538 912,613.8867,144.54118,25.474731,81.23453,4.518 912,-3.4696422,172.90259,15.304577,37.53746,4.393 912,387.40887,205.48515,16.334137,31.937714,4.393 912,369.23822,210.15823,20.163513,33.12564,4.39 912,15.896305,214.21538,26.079388,40.31932,4.322 912,493.31558,227.60742,238.39206,514.8503,4.276 912,317.67657,204.9944,16.236267,32.197525,4.27 912,93.90774,137.93141,31.366722,58.470932,4.265 912,-10.665974,189.16283,28.109816,64.0854,4.224 912,3.0831118,196.97583,19.273045,37.85103,4.197 912,355.5829,201.96585,17.179077,33.8965,4.189 912,-16.130125,123.23143,51.74717,137.67787,4.186 912,619.2897,-18.626266,17.20166,50.16951,4.168 912,330.80917,203.93227,15.266327,27.478592,4.083 912,618.7931,490.07684,20.109009,42.379272,4.08 912,5.0557656,183.75468,15.731611,35.25537,4.069 912,299.99127,192.98334,14.884277,28.852844,4.066 912,546.1015,-17.04746,18.171326,45.98307,4.045 912,378.33206,210.31232,19.267883,33.694504,4.025 912,290.83337,196.0986,17.591919,32.906265,4.017 912,480.47238,196.27127,20.1315,63.55655,3.998 912,585.10516,-100.23581,75.69757,235.06693,3.987 912,2.0897512,-17.099882,17.326698,43.28572,3.962 912,5.9315357,468.57138,37.687576,93.71451,3.936 912,329.96985,211.76562,17.655426,32.900696,3.906 912,202.2402,216.1613,18.049042,29.891647,3.896 912,362.544,212.44989,19.36731,32.838013,3.892 912,-37.80683,-126.67286,117.231186,281.40903,3.884 912,597.3076,-22.005814,27.749817,79.23145,3.882 912,554.27826,-16.446028,17.546753,45.783855,3.858 912,-16.52969,185.76721,51.594925,129.38104,3.847 912,186.96078,202.86998,19.222717,29.626633,3.835 912,0.6428158,36.33169,20.659525,65.95798,3.808 912,195.78415,197.89836,15.740448,28.41417,3.801 912,194.4857,220.80403,18.68129,31.618256,3.795 912,599.36395,228.40648,29.883667,73.87685,3.776 912,614.93475,105.625534,25.683838,92.63522,3.762 912,-5.0598907,282.50912,15.71659,39.519836,3.725 912,-9.688597,102.709595,40.107216,105.04245,3.72 913,361.84937,210.09671,18.83548,39.184555,38.704 913,391.80377,191.1633,24.838013,67.03372,13.667 913,623.0701,-34.4697,26.355469,75.84423,7.27 913,339.20425,205.41417,16.435455,36.636765,6.928 913,627.38135,-19.678253,17.788818,49.83765,6.913 913,389.0832,188.78569,17.96936,50.05168,6.843 913,425.61844,63.612007,32.751923,68.89056,6.762 913,-17.516039,-63.65966,56.509727,147.70726,6.47 913,253.41246,190.21739,16.350754,38.179596,6.446 913,-8.853607,466.03937,37.592773,90.18976,6.13 913,266.07037,194.33914,17.456116,36.621017,6.044 913,317.7431,209.9171,13.390289,26.538574,6.042 913,-11.3760805,-32.3453,29.842255,73.65687,6.033 913,602.9058,-54.240658,52.736145,135.94164,5.891 913,-6.00019,-17.726318,17.365356,43.293682,5.818 913,626.6704,487.85403,20.582031,45.987335,5.733 913,612.8504,455.29803,39.364807,105.73419,5.731 913,138.4727,218.23746,19.24083,29.80185,5.691 913,-6.2181053,488.68222,18.598068,43.01602,5.689 913,505.5724,184.84157,19.773804,45.76111,5.629 913,526.7441,178.75381,25.34613,62.99109,5.5 913,-21.755676,403.18744,78.54626,175.80615,5.433 913,379.22382,202.06488,17.671875,39.243362,5.291 913,400.88995,190.83421,18.44931,49.63141,5.092 913,275.40134,199.21747,17.484528,36.26657,5.01 913,-72.54218,266.8672,199.51807,460.19128,4.935 913,309.9583,199.2432,12.956848,25.022446,4.921 913,583.0178,412.6666,71.574585,176.5961,4.885 913,536.5887,310.87463,142.81812,341.55933,4.802 913,369.70273,205.85997,17.30304,35.691574,4.802 913,404.60156,196.35486,28.201508,66.718414,4.631 913,618.4764,-21.161755,18.25061,49.323223,4.582 913,390.2208,217.6399,28.588379,63.728973,4.579 913,557.28564,-35.933895,29.800903,83.400375,4.499 913,349.81232,198.58408,13.210022,29.52919,4.487 913,292.42847,214.09377,14.38858,29.030579,4.478 913,228.09787,211.93361,14.42775,24.02385,4.441 913,493.359,227.1502,238.07648,515.1598,4.39 913,9.274922,197.27484,20.152573,42.195602,4.369 913,284.78476,213.29958,14.085327,29.356674,4.31 913,268.97665,213.03406,15.54007,33.706406,4.299 913,-5.0403423,196.28365,18.530083,44.808517,4.264 913,357.6324,203.59966,14.305115,33.11763,4.261 913,3.0599718,185.9936,17.239105,43.146225,4.24 913,0.59280396,187.14397,25.59721,67.56798,4.237 913,516.03204,238.85698,16.673767,30.224503,4.235 913,409.96387,201.37874,18.584442,42.487778,4.231 913,317.76062,199.43085,13.501831,25.403381,4.211 913,163.8962,216.07666,17.359604,31.373322,4.203 913,365.6493,196.7262,12.536865,31.122482,4.2 913,613.2438,-24.773476,27.610718,82.194786,4.191 913,258.76736,195.71948,17.241608,37.482544,4.122 913,263.5885,190.94072,26.225952,56.25685,4.106 913,131.8235,210.01236,19.685455,33.206207,4.102 913,284.49347,194.11958,15.4331665,32.24405,4.071 913,5.6412067,468.47775,37.67457,94.24838,4.032 913,418.22708,71.718094,23.799164,54.803696,4.016 913,291.7972,200.9029,15.427643,30.833344,4.004 913,-11.906966,189.4524,29.377197,70.82721,3.939 913,117.00639,211.0698,39.474792,68.03537,3.919 913,618.4318,489.6812,20.705322,43.25293,3.902 913,-3.1993463,178.51822,15.374327,41.776154,3.897 913,-37.778744,-124.32938,118.05957,282.45477,3.841 913,229.06857,202.94449,13.077606,24.014389,3.81 913,144.41946,210.09009,18.698196,32.399643,3.802 913,238.45251,215.91693,26.858887,63.20865,3.778 913,300.1871,202.25955,14.330322,26.936188,3.729 913,171.14178,215.35933,17.711594,34.093338,3.723 913,-9.477906,83.51341,30.377155,78.33598,3.721 913,553.02185,-21.61934,20.068481,50.0655,3.707 913,495.20108,176.72707,25.21634,60.37642,3.705 913,332.50473,208.46115,17.884644,39.759613,3.696 913,541.3027,-34.426437,28.936218,76.64252,3.683 913,222.77008,214.47441,24.627151,58.061905,3.683 914,465.42065,209.1913,24.806396,67.39247,27.731 914,368.02475,204.29477,24.814728,47.01529,13.875 914,89.91271,217.26125,19.108864,31.713089,7.667 914,347.83044,203.75725,20.052124,46.012344,7.462 914,218.91443,217.05948,28.830917,74.684906,7.374 914,603.21136,-55.068466,53.20923,135.96878,7.337 914,377.09366,196.69743,20.352966,44.386765,7.196 914,391.19632,219.54327,25.001312,44.468597,7.047 914,266.38254,196.02925,20.176361,38.00235,6.906 914,-5.0896635,204.6552,19.733608,40.366592,6.861 914,418.69287,210.30293,19.573181,44.284393,6.535 914,-11.98677,477.6841,29.988224,63.37149,6.417 914,-17.329018,-64.0043,55.80753,149.05688,6.385 914,-1.8521309,205.0827,26.460312,57.230804,6.314 914,318.5316,199.26663,12.150299,23.074646,6.296 914,-6.1491103,488.99615,18.534967,42.30725,6.257 914,385.14676,197.72127,21.812775,47.247726,6.202 914,284.421,201.85442,16.263428,32.1886,6.031 914,249.59236,183.85983,18.366379,44.53482,5.957 914,622.32874,477.65158,28.459106,66.19302,5.926 914,325.3113,197.31401,12.21405,25.62651,5.779 914,-11.585485,-32.85559,29.825396,74.03469,5.697 914,612.71924,453.56067,39.800537,108.21881,5.659 914,274.1523,201.6885,17.9198,35.349747,5.576 914,182.73918,206.2529,27.840424,54.607513,5.55 914,-5.6826425,-17.594069,17.061522,43.12901,5.517 914,292.23892,197.16022,15.002075,29.756012,5.508 914,-21.456161,404.1787,78.15208,174.95679,5.503 914,396.8988,182.60324,13.529388,38.23021,5.498 914,98.016014,217.69974,17.358696,30.820663,5.472 914,627.29663,-17.45816,17.39795,45.51138,5.47 914,580.90137,154.25562,30.300781,64.95029,5.397 914,83.53502,222.42632,19.518631,30.353912,5.342 914,318.1384,207.11229,14.095734,27.640244,5.292 914,309.9056,199.01079,12.677246,24.159698,5.251 914,-4.3600483,187.62968,16.263866,38.577652,5.233 914,-5.879683,226.55382,19.02385,45.57466,5.18 914,323.4853,205.30795,15.890686,30.43219,5.161 914,354.0683,199.63191,19.645111,42.50374,5.134 914,-9.956343,185.18785,28.240055,64.31679,5.063 914,536.6566,201.06798,21.748596,44.305557,5.06 914,-72.8022,266.3296,200.0654,461.48987,4.938 914,202.13942,209.78255,22.86554,40.747986,4.828 914,300.67065,198.97128,13.888367,25.401886,4.816 914,170.84471,203.9066,19.358551,35.733276,4.768 914,536.576,310.90186,142.84137,342.4984,4.746 914,597.9279,158.12598,29.161804,74.646255,4.731 914,623.12695,-34.40444,26.44635,75.785736,4.728 914,372.70813,197.97603,15.135742,33.027847,4.721 914,394.2181,191.1081,17.786407,46.30182,4.715 914,583.1077,411.19437,71.50238,177.48764,4.695 914,501.16736,-32.202015,30.560913,77.67111,4.679 914,595.4456,-44.225952,42.74829,99.83779,4.672 914,65.33383,211.90756,22.678848,36.42366,4.646 914,115.64736,223.65381,17.502068,31.016312,4.56 914,162.27876,202.57797,19.381775,35.469757,4.538 914,251.42378,211.57289,16.373001,30.814056,4.536 914,6.901392,194.47702,28.041155,53.84613,4.523 914,74.572105,213.71542,20.952835,34.351562,4.499 914,299.9306,207.97543,14.837463,29.438385,4.47 914,403.79645,189.11816,14.142731,37.777283,4.464 914,350.05414,196.25464,12.946472,29.666107,4.458 914,342.76483,195.92445,12.691071,29.251373,4.434 914,493.77753,227.35086,237.46484,515.2925,4.375 914,2.2589886,200.57,20.167664,37.386307,4.362 914,585.68414,-97.83288,73.880066,234.26294,4.349 914,-4.4702,338.39612,15.426031,40.251892,4.319 914,292.3306,210.72711,15.523834,33.427734,4.277 915,383.7022,210.63971,28.78067,68.58176,25.553 915,469.6579,210.45413,31.391022,80.57904,18.901 915,203.24066,231.94957,30.928055,77.00621,14.833 915,363.58435,208.84464,28.043732,72.652374,12.232 915,410.7657,208.634,19.884338,34.98239,8.559 915,137.3603,233.31924,21.894882,49.66339,7.227 915,414.82956,213.69077,22.957153,40.51082,7.221 915,400.51587,209.09088,23.218262,44.037704,7.116 915,622.90625,-34.416763,26.68811,73.403656,6.673 915,251.23169,224.66371,17.599731,35.061935,6.668 915,-17.592445,-64.11609,56.11705,150.42749,6.496 915,485.74292,183.22653,28.880249,76.90393,6.426 915,626.5751,-17.749168,18.238037,44.20351,6.314 915,-11.964674,477.97226,29.58543,62.765778,6.28 915,6.0616484,221.73628,35.10203,102.33275,6.136 915,393.28275,202.03159,20.029083,48.377563,6.05 915,603.0163,-54.814476,53.248596,132.52567,5.936 915,613.2796,452.8962,39.409668,109.09073,5.891 915,413.9197,200.16624,12.283905,26.455307,5.888 915,-6.095347,489.2065,18.492386,41.707184,5.881 915,351.8694,208.51926,29.995087,66.72409,5.846 915,193.93492,232.50659,20.553299,46.279053,5.833 915,123.331154,225.97461,20.116554,38.69098,5.725 915,332.81842,215.08545,28.97052,59.155853,5.699 915,-11.481394,-32.54427,29.691092,73.00301,5.488 915,404.48615,214.80394,30.082306,60.23494,5.377 915,392.8109,219.66106,32.043182,63.68831,5.353 915,130.56061,229.28069,21.041595,39.102066,5.333 915,-5.7675076,-17.850792,17.369411,43.175335,5.332 915,-21.317282,405.3452,78.438705,173.37445,5.236 915,382.39948,247.59659,30.121216,69.17319,5.216 915,421.14374,200.75352,12.606232,24.566177,5.183 915,18.49098,221.35796,38.061478,91.40138,5.146 915,252.0289,206.58647,19.468079,38.1055,5.145 915,-72.39398,265.31165,200.33038,463.97388,5.109 915,35.969654,223.3897,29.949306,53.575394,5.063 915,297.61356,213.00232,18.71814,34.76619,5.013 915,-5.281831,214.13605,17.818554,45.84198,4.959 915,346.16962,213.73682,20.76944,39.02426,4.922 915,-39.79542,368.65,109.810135,275.2996,4.919 915,331.33246,217.90369,19.633911,36.765244,4.894 915,536.4279,309.67413,143.36713,342.94238,4.893 915,455.31387,217.06137,30.6279,65.37259,4.892 915,424.01648,208.79301,33.09317,79.127884,4.838 915,582.98724,411.1984,71.6756,177.09152,4.813 915,390.39822,188.60487,13.062317,40.545,4.79 915,618.19293,-17.670609,18.639648,40.81662,4.768 915,101.05452,231.0476,29.498276,57.081177,4.753 915,117.993706,221.50049,35.01043,74.34473,4.738 915,429.453,199.05908,12.43512,23.459534,4.716 915,475.11572,244.09715,28.264954,73.329575,4.671 915,626.4489,487.281,21.06488,46.11609,4.652 915,-5.6822643,228.18892,34.75597,102.61,4.645 915,406.08185,197.18394,12.633392,31.425827,4.621 915,282.0609,219.55942,19.818268,33.202484,4.615 915,411.2874,236.9036,29.110535,63.55719,4.614 916,468.26874,226.77692,27.26825,80.14502,10.02 916,439.4782,214.22789,23.754944,39.076523,9.956 916,389.1521,211.25214,17.357147,40.10025,9.742 916,72.43689,215.99567,23.92276,41.54123,9.004 916,305.12805,210.07944,22.502258,40.415115,9.002 916,60.00595,206.56529,16.772476,30.111008,8.329 916,52.827106,209.86304,30.09824,56.348785,8.234 916,369.58032,208.56512,18.694977,39.17627,7.749 916,65.1384,211.9035,22.181213,38.448593,7.738 916,613.5662,452.31134,38.780457,109.38019,7.613 916,603.22894,-55.322697,53.309875,137.13698,7.323 916,472.17114,213.56555,21.09085,50.38611,7.177 916,415.7257,215.1117,24.16858,43.22589,6.926 916,51.434547,206.55856,18.493263,33.94568,6.808 916,-5.837214,489.39362,17.973227,41.393677,6.762 916,-11.713147,478.66965,29.863327,62.766632,6.658 916,4.5747843,221.73264,36.606056,97.95059,6.648 916,474.21875,188.48442,16.875244,41.051895,6.486 916,626.10284,486.8265,21.818909,46.430573,6.376 916,394.9051,216.61801,17.800537,39.217804,6.115 916,422.1086,208.01524,34.131622,79.365005,6.081 916,-17.222673,-62.927486,56.01432,146.58423,6.03 916,-11.675999,-32.59715,30.165619,74.800964,5.924 916,627.53973,-17.238117,16.890564,45.118446,5.849 916,40.909725,217.36116,22.831394,37.53073,5.743 916,3.6252809,199.66753,28.81592,60.681168,5.721 916,397.73462,198.89532,12.9646,28.177414,5.704 916,109.581154,218.093,30.172691,53.300674,5.592 916,443.97498,216.40884,30.979584,67.62201,5.488 916,480.11197,209.36415,21.316742,44.81459,5.477 916,0.2238822,213.09676,26.950632,69.69655,5.461 916,-5.926285,-17.6728,17.238045,43.762596,5.424 916,362.30933,222.14288,20.671143,39.82892,5.413 916,298.07898,212.26918,33.174988,57.292282,5.411 916,202.87003,247.06087,17.527344,38.875107,5.315 916,67.9841,204.39343,15.085754,24.552872,5.206 916,-73.19615,264.6479,201.66608,464.11627,5.198 916,618.12805,488.44,21.34845,44.016663,5.171 916,402.84378,218.15991,19.67752,39.605988,5.126 916,457.4786,219.37778,24.274323,48.783905,5.098 916,-8.053329,228.8136,37.095825,99.21472,5.097 916,443.66345,204.01363,16.131714,30.594986,5.071 916,404.67984,197.68878,12.993225,29.132263,5.066 916,349.32666,224.9446,32.32721,67.93327,5.037 916,347.4248,202.90918,18.098297,30.409393,5.008 916,184.46144,236.34422,20.748734,41.795853,5.002 916,3.6180754,157.55768,15.423923,37.815674,4.997 916,-40.374832,364.40405,110.86358,277.84412,4.994 916,260.6248,204.85486,18.75412,35.091156,4.965 916,26.474669,216.47044,33.498283,55.79799,4.96 916,1.1719716,205.15274,20.66737,43.44998,4.911 916,-3.9560528,154.25534,15.6164,42.19554,4.881 916,623.3218,-34.38996,26.093506,74.44644,4.874 916,75.17359,209.38887,18.45742,26.548569,4.861 916,583.03064,410.96396,71.6413,177.07913,4.86 916,-21.18889,402.81097,78.365326,174.95148,4.857 916,37.308697,203.72568,37.08005,70.10971,4.855 916,100.565704,212.11615,29.913712,53.020508,4.828 916,482.67523,192.3992,15.172699,34.19185,4.828 916,43.85752,207.89938,17.233715,32.240204,4.808 916,536.1146,311.081,143.74768,342.20807,4.806 916,381.1657,201.68555,16.217133,32.458054,4.781 916,82.53628,207.32745,18.78547,28.341995,4.717 916,406.24762,212.09294,29.213165,58.639755,4.703 916,380.44235,214.21043,17.494843,37.518402,4.689 916,266.11935,214.44289,19.693329,36.70952,4.654 916,359.7261,196.08376,26.915771,53.254868,4.612 917,414.63516,203.12445,22.483398,43.925354,12.315 917,147.09756,262.57056,30.376923,70.620605,8.344 917,412.60913,208.53732,29.86322,60.63794,8.119 917,28.750305,243.08621,30.151176,60.012817,7.371 917,599.5391,209.49284,21.977234,47.43196,7.103 917,456.9167,87.76585,22.14618,52.703697,7.042 917,-11.9311905,476.6371,29.905209,64.2677,6.802 917,603.6034,-54.458347,52.88159,136.31642,6.551 917,-6.474448,487.8533,19.314396,43.845856,6.261 917,97.79575,219.26398,19.739296,37.209045,6.141 917,-17.140942,-63.40262,55.859142,146.15573,6.077 917,342.89685,208.97644,25.125793,43.62892,6.022 917,613.2644,454.05063,39.125244,107.461395,5.942 917,169.42079,278.92157,24.85617,52.18457,5.837 917,428.74377,206.06323,29.30542,64.13336,5.794 917,3.5199757,187.53133,17.955748,34.636368,5.761 917,197.01428,196.77538,32.816833,60.14882,5.582 917,194.48273,192.13,18.891922,35.991394,5.568 917,410.87317,221.68768,20.261017,36.393585,5.528 917,482.45245,217.49149,40.937378,86.098724,5.524 917,-5.8249865,-17.07413,17.342651,43.68642,5.495 917,464.3261,217.45256,23.450348,43.943893,5.484 917,392.64325,237.98616,21.989777,36.229904,5.476 917,626.87946,488.1832,20.726868,45.131683,5.439 917,627.26855,-17.800926,17.34845,46.042316,5.403 917,235.19487,185.34296,15.656052,29.960068,5.397 917,435.83286,213.97519,40.716858,81.49637,5.392 917,-1.5019989,49.93205,27.63426,85.421295,5.365 917,207.8511,212.98975,34.150528,58.950012,5.362 917,-11.559935,-32.84878,29.77558,75.97007,5.353 917,26.124035,187.28894,20.946918,36.82646,5.347 917,90.96146,219.78377,18.818878,36.322556,5.34 917,378.83417,235.43121,35.218445,64.18713,5.306 917,401.95804,237.57674,21.156921,36.65715,5.302 917,544.44653,215.46696,23.276367,35.527466,5.265 917,219.11111,194.394,18.096863,31.797241,5.25 917,46.70717,246.94583,25.911674,41.716522,5.25 917,-72.87572,264.84927,201.29869,463.94992,5.248 917,385.63348,232.77536,21.13147,31.355377,5.238 917,480.89758,218.21295,22.730164,46.604095,5.161 917,244.52605,194.55276,16.04979,27.845367,5.098 917,43.637733,255.3311,31.389809,63.235306,5.069 917,583.3428,411.2416,71.27661,176.40646,5.038 917,289.81177,220.67384,44.12323,67.62865,5.013 917,74.36372,229.5749,19.180573,34.275894,4.98 917,-21.018791,402.60553,77.733696,175.34515,4.964 917,115.29944,254.97592,32.94055,64.94153,4.935 917,471.0567,210.38081,26.565796,61.175247,4.897 917,450.29666,214.63371,41.455353,91.60765,4.878 917,-3.9882998,203.47292,14.808643,38.49919,4.832 917,-3.55406,192.31808,15.356061,35.05957,4.829 917,83.26221,219.63264,18.271446,37.17134,4.824 917,156.48332,189.84416,16.778168,31.363602,4.81 917,536.1853,310.59375,143.76575,341.8637,4.81 917,527.5396,219.49927,21.950378,33.415543,4.809 917,105.593414,220.39558,19.827202,34.822525,4.76 917,247.63242,244.92978,24.46579,38.604797,4.751 917,-1.9290555,225.39552,27.827776,69.85875,4.737 917,467.44836,215.18289,40.218903,90.44418,4.73 917,623.1984,-34.391125,26.287659,75.62546,4.689 917,224.80219,219.43149,44.862793,69.23657,4.669 917,336.6811,219.3939,45.19821,70.00346,4.609 917,252.01608,192.004,15.388947,30.462112,4.602 917,453.46176,209.48753,28.38147,62.686966,4.588 917,394.04913,228.9114,19.00644,27.710144,4.552 917,42.001644,187.97676,19.14037,33.22847,4.545 917,493.0861,227.80276,238.01364,514.3146,4.531 917,76.27673,204.7449,15.374756,30.608658,4.47 917,595.4885,-45.971817,42.594604,102.378334,4.456 917,303.70267,207.28366,33.86328,55.197968,4.43 917,324.42474,200.49336,33.020874,57.766098,4.427 917,226.75826,194.01352,16.127304,30.08432,4.399 918,272.8391,212.33185,20.64679,39.628937,16.171 918,266.95532,218.6327,21.088287,40.53218,9.89 918,297.70758,207.92577,20.108093,37.584717,9.347 918,281.3693,225.37363,20.904114,36.45938,8.803 918,-1.7879426,204.09338,30.02664,63.36676,7.458 918,482.2788,224.14157,35.686584,57.621246,7.367 918,268.63052,220.48389,30.01587,56.305176,7.272 918,401.89093,198.01024,20.163239,35.451553,7.198 918,60.50198,198.07834,14.824223,28.215454,7.025 918,75.00131,265.24872,33.158394,65.234924,7.017 918,371.10614,194.10559,18.808777,34.590073,7.006 918,442.59402,251.7923,35.664764,71.30939,6.983 918,-11.809363,476.88095,29.584545,63.881744,6.722 918,394.95892,199.99266,19.705322,34.802338,6.715 918,44.796402,197.95334,14.700592,26.617432,6.712 918,613.2904,452.44824,39.392212,108.8233,6.677 918,-6.2691345,488.34076,18.77764,42.76349,6.638 918,496.8357,214.7306,34.43451,59.43898,6.443 918,67.78382,197.10902,15.8591,30.918427,6.298 918,441.72937,219.64029,19.619629,36.057373,6.247 918,626.8977,486.44122,20.782593,46.45227,6.238 918,37.702286,197.00925,14.709461,27.646866,6.076 918,441.0282,236.51389,20.556854,30.819794,5.895 918,268.47974,184.73097,28.403992,64.406006,5.869 918,457.24594,226.30388,22.561676,35.13951,5.846 918,393.10187,198.28467,31.02362,60.96118,5.79 918,603.3638,-54.4717,52.469727,138.85782,5.767 918,75.10254,197.4865,15.618607,31.761261,5.731 918,249.02672,228.00244,23.119705,39.27466,5.724 918,626.8721,-19.024467,17.976196,46.98493,5.702 918,-4.625551,156.17288,17.530731,42.31163,5.603 918,383.94986,221.73282,36.933807,51.61148,5.583 918,0.849278,78.95596,25.559061,69.36014,5.551 918,449.97745,228.2031,20.957,34.832855,5.544 918,10.419292,171.2472,20.041618,38.511,5.508 918,16.609161,212.61143,35.31457,53.02324,5.485 918,433.57178,219.56406,19.251343,36.244095,5.453 918,-17.020214,-63.215355,55.624763,147.28041,5.434 918,622.3942,-34.284077,27.274414,74.899414,5.411 918,419.89648,253.43713,32.707397,75.38098,5.388 918,338.5123,259.96307,34.648743,61.35086,5.302 918,480.16754,65.98015,33.376404,69.65941,5.255 918,-73.296135,265.0467,201.78348,463.9361,5.254 918,27.83267,83.57715,30.319956,60.940216,5.253 918,-11.098234,-32.59698,28.968939,75.204666,5.22 918,454.28067,260.8978,27.294037,47.898254,5.19 918,583.8342,411.76804,71.042114,176.24136,5.179 918,516.763,211.11914,29.41803,56.740936,5.143 918,435.8165,210.65854,30.174408,60.33609,5.136 918,377.46304,196.93387,18.676178,35.28836,5.075 918,-3.5782266,175.13667,15.682224,38.92917,5.071 918,368.1816,230.52014,38.054688,59.279846,5.039 918,295.41882,183.28596,27.38388,59.901703,5.034 918,332.08936,190.2493,19.353638,35.324814,5.032 918,493.5872,228.17645,236.51901,514.482,5.027 918,25.603323,173.8478,20.463873,34.9879,5.018 918,257.08868,221.96817,20.977203,39.435425,5.006 918,410.26904,195.13014,19.518372,36.258545,4.998 918,52.468704,198.65927,14.771622,27.242676,4.984 918,386.80103,203.02295,19.992249,37.997086,4.983 918,3.8842642,169.88913,18.410706,38.825638,4.96 918,534.1079,309.71088,147.06946,343.36188,4.957 918,-40.404015,363.5608,111.4499,277.4497,4.934 918,3.3728647,211.08604,40.50296,88.49336,4.908 918,446.96838,215.72826,109.40643,285.2885,4.903 918,433.99643,244.83667,21.072845,34.901855,4.894 918,399.2528,219.89316,46.985138,68.97562,4.87 918,448.79034,246.62329,22.704773,35.182556,4.868 918,567.8236,219.45921,22.003113,35.89029,4.867 918,414.17676,181.97789,27.113556,55.86377,4.851 918,-5.940565,-17.325348,17.70355,44.022633,4.818 918,353.72467,250.99437,37.11548,62.465958,4.797 918,478.28214,228.85425,28.144196,39.61313,4.794 918,243.65332,155.20074,29.997192,72.72688,4.75 918,343.5271,250.30943,24.31018,32.064224,4.747 918,-16.167994,123.35873,51.112442,137.94144,4.736 918,459.91135,193.4344,16.117706,36.414658,4.724 918,398.80408,233.94867,24.518433,36.32007,4.712 918,313.19922,191.15726,20.160614,39.883163,4.695 918,28.659296,199.2889,17.423574,32.373276,4.663 918,373.49362,199.3899,30.835266,57.18982,4.649 918,34.54458,182.87546,16.999691,30.64412,4.634 919,276.90103,202.40504,22.340607,46.764435,48.333 919,208.5982,208.98943,19.628998,34.531998,19.162 919,235.92273,206.8315,17.435562,34.530655,14.409 919,251.44905,207.17467,18.248611,38.13002,11.328 919,9.457819,197.72612,21.162834,36.453262,9.337 919,194.96194,211.93283,19.112183,35.61693,9.069 919,427.7198,189.45358,17.47815,37.733643,8.107 919,403.04718,191.44406,28.310577,63.851105,7.627 919,209.73685,220.30411,21.271912,37.226257,7.29 919,603.28546,-55.171417,52.986633,137.12985,7.094 919,434.39008,189.749,16.788483,35.179626,6.962 919,-2.5210977,175.78987,14.070629,34.680832,6.866 919,-12.080057,478.78766,30.279604,62.553772,6.719 919,-6.0656796,489.36472,18.71456,42.248505,6.491 919,-4.092049,187.6292,15.980692,36.27887,6.333 919,158.33136,219.43037,28.245193,62.521683,6.283 919,347.18152,197.73723,16.369537,28.571045,6.27 919,-12.487709,-39.915855,41.596535,100.46427,6.135 919,257.36862,195.14488,18.496521,37.26764,5.965 919,243.41647,213.22493,17.68991,32.627304,5.913 919,627.3355,-17.290642,17.070984,44.9931,5.899 919,341.57324,196.92097,15.793732,28.215973,5.869 919,-5.855914,200.46855,18.783442,37.55548,5.662 919,237.03174,221.13019,17.176102,32.159348,5.594 919,79.25142,208.233,25.865547,36.722702,5.58 919,556.5675,199.8906,17.845459,28.524261,5.543 919,170.10599,199.24266,30.002213,62.120743,5.53 919,4.57509,191.43262,16.275465,33.144028,5.441 919,613.2122,452.69955,39.12372,109.909454,5.431 919,-6.4027815,-17.946745,18.877129,45.76448,5.397 919,561.5046,197.93068,19.808228,36.20009,5.366 919,5.3457136,181.89635,13.852973,29.571213,5.342 919,171.24376,222.19418,32.096832,64.719696,5.281 919,614.06146,233.03285,24.763855,49.112717,5.269 919,1.797812,203.30441,41.352383,98.52786,5.224 919,215.66658,211.51266,18.738632,34.56711,5.221 919,458.2257,220.7699,33.558807,55.625824,5.218 919,-73.31796,265.6341,201.15703,462.20074,5.182 919,186.2847,207.71085,20.970917,39.337082,5.141 919,12.37664,184.8166,13.293793,26.49318,5.136 919,626.58813,488.0501,20.848267,44.885925,5.114 919,623.1153,-34.584873,26.300293,75.6149,5.053 919,17.00328,205.81322,43.276,88.44734,5.029 919,456.82977,203.96909,22.766174,48.39891,5.012 919,535.30695,309.80197,145.39746,343.76993,5.004 919,-21.394028,403.1002,78.57,174.74991,4.967 919,283.14996,192.11734,15.29895,30.171402,4.964 919,307.9531,177.0503,16.52124,35.28752,4.931 919,390.9585,200.47202,32.034668,60.972473,4.927 919,583.8605,411.25845,70.769714,176.36069,4.882 919,-16.06689,162.96312,50.311905,119.46071,4.872 919,493.6651,228.1626,236.74963,515.60504,4.855 919,106.63387,-15.980206,17.759323,38.76448,4.824 919,18.607183,191.44835,18.175737,35.644073,4.79 919,451.57355,43.5222,31.742523,73.885895,4.774 919,494.94907,228.88809,46.954132,70.135895,4.744 919,267.35876,207.4716,21.241028,42.132248,4.727 919,407.8988,254.30849,24.341125,31.659409,4.724 919,-2.3871562,163.02689,13.827796,33.63333,4.695 919,458.2929,192.20547,19.180511,37.344177,4.692 919,442.97406,206.64499,19.4823,40.69391,4.692 919,80.510025,189.94197,24.964256,37.039658,4.648 919,2.0698285,491.80038,19.80897,39.24228,4.631 919,193.80478,212.5783,43.358597,74.142685,4.629 919,480.5934,231.64603,45.67575,80.06897,4.611 919,13.602138,196.93805,29.005665,45.519424,4.595 919,82.3625,206.60104,43.128098,88.19418,4.591 919,246.85825,187.07494,26.911346,55.750885,4.585 920,187.13808,196.01196,28.72319,61.17578,63.438 920,97.21397,205.25232,23.291298,42.571854,33.766 920,162.64325,201.68741,22.277878,51.28006,22.39 920,112.925705,209.36356,21.05516,40.466797,14.017 920,350.20392,186.55658,27.855316,67.86215,9.595 920,105.32669,212.83029,20.664108,41.49266,9.359 920,379.0997,190.64056,19.08078,36.87979,9.147 920,522.5493,209.0063,19.175476,36.97899,7.5 920,507.72647,213.22725,16.802338,33.330627,7.182 920,-11.90145,477.75308,29.116608,63.94449,7.042 920,450.08112,232.71573,43.46118,100.40448,6.925 920,619.48175,233.75453,17.864014,34.378403,6.695 920,87.12697,207.1962,29.23146,53.849518,6.686 920,433.02036,233.42996,43.791534,99.185394,6.586 920,-10.619946,-32.597504,28.901333,74.21998,6.526 920,467.87976,199.68678,16.292725,29.17688,6.516 920,474.8691,200.6065,15.317657,26.191528,6.499 920,622.12134,477.61206,28.523499,65.86951,6.497 920,627.21875,-17.891712,17.29065,45.906963,6.479 920,121.03951,212.14882,19.73217,37.19893,6.382 920,515.70996,211.16588,18.383606,36.447525,6.185 920,-6.1226373,489.0357,18.43706,43.05249,6.023 920,0.36369443,203.4303,26.670645,79.31955,6.018 920,524.5772,206.09816,29.065552,54.632065,6.016 920,612.41095,454.9696,39.923035,106.83667,5.943 920,352.5531,278.46152,22.097046,32.74527,5.902 920,292.60876,201.283,16.508087,36.642212,5.895 920,494.1211,201.63875,13.257111,24.499405,5.866 920,611.3535,-47.035007,40.710205,100.50264,5.781 920,-5.386194,-19.579517,17.742897,45.558743,5.754 920,-16.878187,-62.184082,56.22358,145.10507,5.746 920,501.0882,201.61938,13.13269,24.198685,5.71 920,281.82172,304.2007,19.356018,29.286438,5.65 920,347.57367,216.77884,33.954468,54.21039,5.622 920,480.68805,232.93411,44.3031,99.25482,5.604 920,141.61302,196.0289,29.05194,52.581863,5.598 920,400.89554,238.50674,44.77182,93.403625,5.584 920,394.21014,215.27739,20.561737,37.941605,5.583 920,174.76259,197.52927,28.84047,61.727783,5.449 920,461.20694,199.44849,16.114105,30.58992,5.415 920,393.98392,192.11548,17.870453,33.108658,5.415 920,152.89851,214.21196,22.465485,41.10147,5.405 920,412.94543,221.47545,32.49466,57.219406,5.4 920,415.89508,230.72897,44.60724,80.39996,5.34 920,387.29987,198.29826,17.132355,37.72682,5.327 920,193.75748,206.57903,32.31201,63.860855,5.291 920,501.62073,214.40408,15.338501,32.48285,5.269 920,424.9715,282.48273,21.066711,29.478973,5.266 920,369.249,279.287,21.83728,31.76709,5.252 920,98.95456,210.05983,31.18924,61.0963,5.212 920,59.47925,192.63788,19.76936,35.507538,5.203 920,229.60243,195.01129,15.920105,31.054214,5.175 920,385.6294,180.40828,18.794556,41.815323,5.169 920,-21.926346,402.27768,78.71404,175.7045,5.088 920,361.19653,279.64786,21.103088,31.43222,5.072 920,370.70404,198.74928,19.651672,40.13472,5.062 920,536.06335,310.07477,144.5216,342.11505,5.038 920,-73.177826,266.05966,200.77072,460.98404,5.014 920,426.6536,227.21193,32.638397,51.902084,5.006 920,417.12134,272.79187,22.03357,29.565338,5.001 920,587.9121,186.17058,17.418945,36.470657,4.997 921,172.06384,177.79979,18.14801,36.499603,10.576 921,177.96994,181.83841,17.972366,36.45337,10.398 921,299.52252,190.18999,18.8815,37.241776,9.85 921,185.70468,179.42224,18.363083,37.86284,9.491 921,267.2341,239.29274,15.722565,37.186325,9.381 921,459.93646,208.31754,29.471008,57.902954,9.13 921,228.05588,237.50119,15.616928,37.420593,9.011 921,260.2968,255.4009,16.561096,33.82982,8.524 921,234.78998,231.90172,16.223755,36.108505,8.274 921,227.68076,222.53967,16.776825,38.18463,8.189 921,267.21826,254.88754,15.535065,34.103333,8.166 921,259.00476,203.83012,17.092377,38.37416,8.084 921,313.76022,194.05887,18.85965,35.243317,7.986 921,338.1322,194.13579,19.897095,36.361465,7.807 921,193.66187,180.22195,18.682922,38.211243,7.787 921,203.3387,189.25351,17.410507,35.456238,7.729 921,306.32828,194.63876,19.221313,41.120605,7.726 921,267.0382,212.77403,17.15625,36.70909,7.617 921,252.3807,256.7271,16.259003,31.613403,7.547 921,436.33142,204.4515,15.22998,26.696579,7.532 921,139.89946,210.91803,34.32187,63.11725,7.32 921,252.74467,269.99918,16.159775,30.904053,7.139 921,449.72833,215.44398,20.767853,38.950287,7.056 921,255.28253,208.48026,25.393616,62.50055,6.947 921,260.76367,239.27394,16.362244,36.903427,6.945 921,244.67554,239.85815,15.165314,34.73535,6.797 921,442.78867,219.56056,19.028412,33.16069,6.737 921,226.87363,205.89081,18.57309,39.962082,6.731 921,622.93176,-34.125534,27.193726,75.630325,6.527 921,471.8125,213.43297,21.930847,44.740738,6.52 921,337.45935,236.04935,44.948517,71.66922,6.507 921,236.13089,246.48442,14.582886,34.925156,6.456 921,627.2205,488.04688,19.651672,44.532593,6.451 921,227.8136,252.04613,15.490051,34.867783,6.433 921,-6.267562,488.69922,18.707676,43.1438,6.402 921,363.185,227.07089,30.15039,55.29254,6.401 921,459.581,211.60132,19.113312,39.20334,6.39 921,233.88809,213.50635,18.03897,41.795517,6.292 921,-4.3216352,302.61273,15.687518,32.833588,6.266 921,244.37575,269.53244,16.17543,32.44513,6.243 921,481.16254,215.1033,21.358063,40.95685,6.226 921,41.65968,288.5734,21.894917,28.507782,6.191 921,475.91046,210.11897,32.641296,61.2433,6.165 921,443.23993,204.86606,15.411774,26.719177,6.159 921,243.54352,205.33832,16.624268,39.681076,6.111 921,230.68594,215.97647,24.674774,62.329773,6.09 921,165.30318,178.11624,17.974625,35.774765,6.076 921,577.5176,252.76273,21.746826,29.891052,6.066 921,-11.731035,477.46478,29.214062,64.04236,6.029 921,-16.842058,-63.525715,55.92244,148.86633,6.019 921,408.29218,244.67459,37.725586,58.520233,6.004 921,252.15552,211.93794,17.634888,39.72928,5.921 921,353.65125,295.25195,20.791565,25.178253,5.89 921,429.8568,206.3777,14.732788,25.490646,5.872 921,362.1916,221.375,20.506134,40.19568,5.866 921,276.46567,205.71324,15.688324,33.481598,5.866 921,236.17032,283.14484,14.905441,31.15622,5.858 921,284.03632,263.8565,18.087646,34.56717,5.797 921,299.22192,253.67159,15.10083,24.930069,5.79 921,291.67752,253.44214,16.12854,28.227783,5.731 921,626.9429,-19.04282,18.002869,47.076145,5.724 921,274.97217,221.12355,17.00885,36.843124,5.715 921,2.7269464,209.79523,19.489174,38.776382,5.696 921,212.0826,191.44983,17.933823,35.443146,5.635 921,244.25468,254.4689,15.200821,34.679504,5.631 921,3.391521,306.27335,15.615749,27.763245,5.631 921,613.05634,455.7442,38.476135,105.78345,5.623 921,-5.659112,-18.577572,17.325205,43.764736,5.587 921,275.30667,250.31725,15.144714,32.959946,5.564 921,275.3749,264.70486,17.283722,34.39267,5.535 921,-5.0297623,154.74411,17.020319,41.74611,5.5 921,360.42456,299.10318,20.598206,25.752808,5.456 921,284.42,203.1855,15.6409,34.19046,5.452 921,236.29459,261.7605,15.555618,33.4653,5.447 921,-11.2577,-32.623455,29.469181,72.8006,5.402 921,-4.423457,287.1485,15.972625,35.088074,5.385 921,360.2803,288.55157,20.432861,25.007416,5.381 921,394.84744,233.55768,59.490936,129.02228,5.378 921,397.09204,231.78116,32.46765,57.09961,5.361 921,211.58684,211.38864,17.665512,35.526306,5.307 921,458.8944,369.46567,17.542816,31.855133,5.303 921,203.74077,204.60175,17.489792,32.041992,5.3 921,151.57578,217.19789,35.948944,58.55681,5.296 921,584.2575,411.97217,70.36835,177.19446,5.294 921,220.90561,251.4867,15.866562,35.34204,5.29 921,335.89462,206.62846,27.715546,64.690994,5.288 921,322.06998,297.776,18.518646,26.537354,5.283 921,56.539948,290.1971,21.820847,26.141693,5.263 921,313.55896,299.75052,19.39508,28.821594,5.255 921,253.23799,240.09183,15.85405,33.590668,5.239 921,221.37999,230.18567,15.7795105,36.051086,5.233 921,58.01723,300.4561,19.294033,25.133728,5.232 921,-73.30565,265.2743,201.35631,462.917,5.216 922,322.81732,205.31412,19.494995,39.952637,18.49 922,166.94199,227.46205,23.593262,40.7975,14.66 922,327.22272,221.47385,21.450562,43.058075,12.045 922,150.60632,224.14067,26.002396,42.58818,11.15 922,-11.754194,478.0521,29.127163,63.097443,8.232 922,155.71469,212.36124,30.556366,58.404846,8.003 922,-6.10488,489.02832,18.475792,41.87329,7.899 922,2.8984146,299.111,18.693,37.483765,7.684 922,394.60782,199.10158,18.742981,34.43669,7.683 922,220.13847,196.73917,15.576981,28.810043,7.22 922,401.12567,197.80495,20.1427,35.871964,7.207 922,347.05997,208.97842,19.226166,38.284317,7.074 922,355.79868,203.8654,17.135895,35.29158,7.033 922,622.07837,-32.837124,27.34491,73.96673,6.839 922,137.14502,335.1507,21.72844,30.118134,6.799 922,380.89545,203.9917,15.584808,33.223022,6.63 922,626.82654,487.80356,20.224731,45.763336,6.616 922,9.710641,288.6662,19.983166,31.51825,6.592 922,316.24094,216.0219,19.442383,39.278687,6.465 922,143.74718,222.9805,47.66185,87.01529,6.461 922,364.61713,204.21503,16.257538,34.40735,6.447 922,626.8749,-19.401264,17.926025,47.882893,6.441 922,410.72992,203.33867,18.320831,35.24321,6.428 922,561.0741,212.80867,32.50122,71.93181,6.409 922,246.4403,3.7481346,36.85605,75.12808,6.402 922,-4.936494,233.10558,17.376976,41.442947,6.328 922,327.89313,196.27818,20.984436,40.98323,6.3 922,-4.5582952,475.54276,15.443374,36.46115,6.282 922,466.6614,239.50865,19.334198,31.62407,6.277 922,-3.9424465,270.24545,15.950093,36.74774,6.145 922,-17.427906,-64.61842,56.15065,149.12344,6.143 922,95.68577,314.89163,39.072304,52.309204,6.139 922,387.8416,200.23001,17.258545,33.58719,6.098 922,160.66887,330.1931,23.39293,32.19632,6.064 922,19.610594,288.94412,34.908173,58.344604,6.052 922,317.8561,200.37773,17.471527,35.674606,6.04 922,102.36543,337.24393,26.69664,29.823608,5.991 922,34.35826,278.37497,34.660072,62.53537,5.975 922,82.946625,286.04315,19.91101,32.46405,5.904 922,568.32385,254.44086,34.319397,68.33002,5.901 922,138.57277,186.3907,19.529587,36.087845,5.895 922,91.44489,289.06247,17.52929,27.185638,5.894 922,322.81723,230.13766,31.008606,66.514984,5.893 922,2.5447016,490.675,18.813068,39.050232,5.89 922,552.91174,211.29051,27.419678,60.604874,5.873 922,-4.4989223,184.88705,18.219067,45.901688,5.84 922,-5.5701075,-17.695099,17.179094,42.536278,5.793 922,309.28043,223.84431,30.474579,60.23802,5.765 922,373.34802,203.84059,15.828644,33.781967,5.74 922,87.91922,338.07,24.72644,29.66803,5.713 922,159.684,218.50241,44.814148,73.10135,5.71 922,103.32132,175.44058,21.92131,51.404755,5.688 922,3.3943427,273.25455,17.041544,34.770294,5.683 922,612.7683,456.65445,38.556396,104.232086,5.669 922,-5.238857,250.86989,17.36438,40.90306,5.661 922,209.53818,307.4797,37.873383,60.58023,5.649 922,74.65248,338.89304,20.094513,24.948242,5.633 922,138.53835,318.3987,34.45375,55.931854,5.629 922,500.7938,238.87851,14.864655,31.638947,5.59 922,267.08807,234.33783,34.35446,66.923645,5.587 922,3.071487,295.6012,31.169281,60.57776,5.521 922,474.83527,239.64157,19.048218,30.19748,5.517 922,-10.354124,184.45312,29.301355,73.12598,5.486 922,145.6079,332.74246,21.512848,30.919891,5.467 922,586.69116,217.01868,18.375244,38.313065,5.456 922,192.04817,298.68698,39.857803,62.40979,5.423 922,602.7727,-55.141094,53.625854,129.70076,5.4 922,405.28244,193.05063,26.86789,59.88556,5.384 922,3.1712842,289.84097,17.32954,30.591217,5.382 922,132.55489,171.82011,30.50946,56.721893,5.372 922,483.52695,240.31117,17.228943,29.678452,5.372 922,350.7224,193.67134,25.984406,54.876816,5.36 922,581.5446,219.65894,30.48993,62.89279,5.359 922,538.003,125.24788,19.843567,35.102295,5.352 922,335.88202,211.06073,20.925201,36.738144,5.35 922,123.4841,214.4292,59.753143,116.15918,5.348 922,315.79364,178.4877,29.28656,65.462234,5.326 922,-11.349791,-32.353813,29.572744,72.873215,5.325 922,155.06071,317.8006,34.925674,54.835846,5.308 922,-21.957996,402.6654,78.755066,176.33276,5.291 922,82.46123,326.56592,35.4244,49.514557,5.266 922,309.47827,209.1102,16.598663,34.65103,5.242 922,140.20929,209.99315,31.73767,58.560287,5.236 923,528.7355,229.48369,23.817139,59.81688,10.155 923,517.692,204.952,31.93274,76.06085,8.738 923,26.853947,222.72787,33.51723,62.15677,8.429 923,97.99602,242.63,33.502625,60.952637,8.337 923,2.7362406,195.30557,19.262384,46.95639,8.059 923,622.69495,-33.41523,27.289429,75.516205,7.418 923,478.41028,220.51524,25.342438,40.503006,7.383 923,627.0858,-17.665428,17.310486,46.95509,7.236 923,480.8947,211.5635,18.619812,31.422028,6.992 923,394.1134,209.7421,22.39859,35.70096,6.868 923,147.62056,195.49757,30.761108,55.342255,6.782 923,-6.410057,489.38263,18.626041,41.464417,6.737 923,627.16016,487.87772,19.970825,44.473846,6.613 923,-8.752514,462.43182,37.455765,95.131836,6.543 923,498.60458,214.74634,35.315582,69.594055,6.443 923,-12.201698,478.93433,30.196987,62.62262,6.432 923,299.40662,236.69016,16.405762,29.434998,6.205 923,426.4488,336.76297,19.195312,27.28012,6.196 923,514.0908,209.26039,22.030273,48.471664,6.078 923,181.63637,218.59161,30.013947,68.60791,6.042 923,318.02832,241.46759,28.739624,63.81555,5.999 923,563.1615,142.58986,18.04364,36.99463,5.929 923,344.95203,245.3056,35.875275,61.07831,5.922 923,-22.705109,400.1976,78.32878,177.6636,5.876 923,-5.7028084,-16.15493,18.295815,42.772373,5.853 923,171.07384,349.2342,18.417221,25.995026,5.847 923,12.271552,237.35167,32.68051,52.759384,5.815 923,-11.994476,-41.142563,40.75968,100.64871,5.752 923,612.8801,455.30444,38.88202,106.86206,5.726 923,227.92984,203.32016,17.920319,40.31505,5.704 923,495.30637,242.98846,47.043854,83.8548,5.677 923,555.9558,143.50652,18.065735,34.043884,5.628 923,186.70638,190.1077,20.555283,42.543488,5.615 923,330.75558,244.713,33.18042,63.496475,5.613 923,418.57343,335.89667,19.786255,28.406982,5.566 923,187.90114,235.41002,55.67372,111.69948,5.505 923,403.0514,206.6651,18.348633,31.699936,5.499 923,306.6169,236.5027,17.857819,33.553146,5.488 923,34.69282,208.26187,42.990902,74.67398,5.483 923,467.7853,221.12112,33.54605,63.971527,5.421 923,187.16107,350.46283,18.219696,25.887756,5.41 923,227.73363,233.00064,16.62468,30.564667,5.409 923,490.7108,207.66402,15.613922,28.368774,5.387 923,136.93903,201.01073,23.242569,45.43843,5.361 923,498.72125,153.61932,19.328552,37.64682,5.335 923,603.0091,-55.54845,53.21942,137.00432,5.329 923,497.60583,215.97556,21.115906,36.51877,5.322 923,276.81302,234.83154,14.210175,27.98816,5.315 923,516.81036,233.95146,30.698486,75.01149,5.29 923,619.1321,-17.62983,17.97644,44.077545,5.268 923,582.53687,147.44234,27.194336,68.7838,5.255 923,2.040379,384.47708,19.351997,43.583557,5.249 923,157.60606,181.34361,28.311737,58.937576,5.235 923,139.23949,223.60272,32.256546,67.28064,5.233 923,502.71008,243.74915,62.05664,109.86249,5.223 923,3.802222,177.194,30.26245,60.555267,5.211 923,162.70523,348.55276,18.55577,26.951569,5.186 923,614.9031,-18.568779,27.922974,68.295235,5.179 923,179.30737,350.6821,18.342407,25.16687,5.137 923,241.12602,261.41583,44.491623,104.25104,5.136 923,170.38603,195.0864,19.24533,40.115906,5.127 923,334.90472,262.99814,50.184692,83.80716,5.122 923,481.6588,217.05379,34.463684,58.419907,5.09 923,443.4668,149.03416,18.513,39.85257,5.083 923,11.152241,239.108,57.432056,110.58899,5.067 923,183.88971,-17.282764,20.823608,43.86805,5.055 923,539.37054,29.801365,30.25,72.059616,5.048 923,410.43915,336.62598,20.10971,27.146149,5.041 923,436.1058,148.52682,18.399567,40.19696,5.021 923,473.9571,257.1993,59.97278,119.484955,5.02 923,-73.417366,265.59344,200.81589,461.69,5.011 923,583.1,411.6422,71.77112,177.41089,5.01 923,225.51907,252.60487,43.56848,90.824265,4.984 923,521.09796,204.62988,20.31659,44.91568,4.984 923,177.16081,244.52457,45.771744,85.688934,4.973 923,273.98566,259.66406,45.208344,105.80698,4.964 923,195.17664,349.6701,18.940308,27.666443,4.96 923,434.53784,336.34476,18.932068,27.093292,4.941 924,316.61716,217.63016,27.775574,65.84415,10.395 924,292.87427,225.31693,28.62445,60.420258,9.885 924,302.92175,218.15244,27.901794,64.86435,9.16 924,277.4169,229.55269,28.835602,53.82155,8.431 924,588.0651,231.63913,31.152832,57.157013,8.27 924,260.53036,231.12503,31.052307,56.408203,8.153 924,288.98032,227.95291,21.061737,44.71927,7.398 924,300.74338,224.53055,16.521057,33.198944,7.333 924,622.8627,-32.976772,26.664368,75.57166,7.255 924,350.45398,231.94312,25.600677,40.833984,7.021 924,292.56213,226.31267,15.013184,29.114212,7.009 924,-5.7645435,488.1885,18.267921,43.379974,6.98 924,-10.774191,477.12262,28.504831,65.18207,6.968 924,570.2442,176.16907,18.930847,34.936783,6.815 924,283.91132,229.06908,16.815582,33.49034,6.712 924,339.8303,226.17258,32.585907,59.41385,6.658 924,627.0318,-18.629614,17.769592,47.354332,6.623 924,211.05634,201.44734,18.078735,34.431305,6.614 924,324.54614,196.05875,16.412964,33.90483,6.592 924,92.17811,228.19888,32.54312,65.82431,6.587 924,50.20895,189.87666,31.325352,60.11795,6.555 924,626.67365,488.08197,20.282898,45.997498,6.538 924,217.92372,203.38649,18.385788,32.84297,6.451 924,314.12665,220.35144,19.788513,41.949127,6.433 924,-6.1280203,259.99646,19.305004,48.211365,6.339 924,580.7707,218.17671,29.641357,60.308548,6.297 924,98.28633,177.66595,32.45804,63.74579,6.272 924,274.67297,233.76996,20.157776,39.541473,6.174 924,282.449,200.42337,17.776093,28.589798,6.126 924,339.56683,196.40158,16.16864,31.178085,6.04 924,154.47302,194.89612,18.903076,38.683258,5.962 924,540.9298,228.74329,32.283813,52.635437,5.954 924,205.15073,246.39384,13.900497,27.056778,5.946 924,-17.280703,-62.752335,56.190727,146.34059,5.903 924,330.77533,196.75528,15.785034,31.731384,5.892 924,290.88617,198.91602,17.368195,29.55577,5.853 924,-5.661559,218.4797,17.062275,39.91739,5.848 924,204.17336,200.49036,18.388123,34.222794,5.836 924,348.29086,196.02809,16.155975,30.691223,5.816 924,187.94254,208.35786,16.432693,31.392975,5.808 924,-21.309889,405.29932,77.73181,173.72559,5.797 924,189.5347,248.15868,13.150879,24.990005,5.782 924,2.5304115,489.2852,18.574265,41.13504,5.774 924,313.95996,234.96149,21.738892,45.89032,5.743 924,618.77936,-5.7341957,19.589111,42.704704,5.7 924,354.31808,230.17468,35.57907,57.592957,5.679 924,145.75055,246.10056,19.558167,34.054382,5.67 924,-6.073905,202.7931,18.040058,39.6286,5.669 924,-5.1028214,235.11903,18.424818,43.063828,5.631 924,268.98404,225.0804,13.845154,26.049988,5.607 924,553.79504,225.29327,32.287964,54.7005,5.598 924,299.95935,198.26213,16.877777,30.886414,5.576 924,179.64905,209.057,16.265717,31.144882,5.549 924,612.7157,456.67624,39.17267,105.20279,5.547 924,136.24696,241.6044,21.750244,40.133728,5.528 924,-1.8491447,250.03447,25.885185,69.73067,5.464 924,186.15271,262.05057,34.20833,58.851715,5.417 924,583.9224,411.22888,71.07788,177.75476,5.398 924,35.904354,185.84886,30.711353,56.561157,5.376 924,225.6697,204.22496,18.634537,31.902542,5.366 924,-5.4728756,188.2055,17.286423,38.96364,5.365 924,308.93097,196.95718,16.863556,33.98973,5.302 924,284.89398,215.71591,14.397339,24.16333,5.278 924,56.52142,129.17204,22.924442,46.993057,5.263 924,156.29709,248.44064,17.928833,30.083527,5.246 924,578.6738,177.09575,18.041565,32.429,5.226 924,-11.820803,218.40771,29.398087,72.286255,5.197 924,145.43466,259.6378,33.45311,60.322754,5.141 924,-73.02446,266.39258,200.85385,461.68652,5.083 924,619.0102,221.53444,17.335266,38.333298,5.042 924,172.0558,215.17577,14.805313,32.711136,5.007 924,328.14087,225.82199,22.733765,51.78586,4.991 924,-11.407962,-32.395,29.971672,73.043915,4.984 924,602.9932,-54.853683,53.119446,132.91997,4.981 924,250.07144,235.91557,19.659058,37.171127,4.972 924,41.54866,179.24562,58.76306,101.86919,4.966 924,257.65527,233.77975,20.265686,39.720825,4.958 924,553.46576,225.10779,20.264465,32.367737,4.957 924,266.42575,199.57568,17.740417,30.311874,4.953 924,235.45609,241.01184,16.99762,30.60028,4.949 925,197.46008,214.37682,30.178024,68.80098,16.521 925,210.92561,208.85574,30.395477,75.63599,13.366 925,157.98395,224.94595,28.390396,64.49515,10.558 925,537.76263,229.23058,32.20575,62.81682,10.5 925,181.45708,220.15265,29.719131,60.38568,10.143 925,194.55359,219.32524,21.146606,44.15059,10.074 925,228.63107,216.44766,30.185303,67.60031,8.743 925,2.4570947,247.41043,18.965061,38.625977,8.426 925,243.18668,223.33241,32.826202,63.583908,8.265 925,169.45848,224.59381,21.950027,51.833252,8.265 925,171.92984,227.01215,31.202576,65.04889,7.877 925,187.09473,222.42075,19.006927,35.502777,7.87 925,-11.795958,479.3931,29.86104,61.50766,7.829 925,177.6194,222.18633,20.961456,44.229324,7.669 925,-0.46313882,263.48575,26.007181,71.87952,7.387 925,491.16806,217.7413,31.058807,55.774384,7.11 925,142.22784,230.25851,29.466873,60.643555,6.972 925,87.5768,192.1585,23.08265,36.127335,6.903 925,148.46602,227.78532,14.290329,24.085892,6.864 925,498.23157,176.45981,19.963379,37.73349,6.843 925,140.7374,229.00525,13.602646,23.241074,6.813 925,-5.9052305,-16.701225,18.992474,43.917404,6.784 925,132.39581,191.06018,17.132416,35.925186,6.732 925,123.933014,226.57228,15.067734,24.843307,6.725 925,2.179612,170.9031,20.626976,45.784042,6.684 925,-6.238759,489.20786,18.879913,41.44577,6.678 925,622.2799,-33.092163,27.19043,73.564354,6.471 925,3.0350685,245.02698,28.588383,56.835693,6.463 925,-4.044677,167.97597,18.343584,46.214294,6.454 925,131.04552,239.25352,33.794327,61.075882,6.401 925,153.345,235.2644,22.904022,48.272827,6.274 925,224.97748,213.66722,21.676971,49.686356,6.27 925,507.65588,209.17487,33.003784,61.750397,6.242 925,-10.869664,-31.584225,29.796429,75.38326,6.216 925,42.230843,247.71484,17.735443,34.15924,6.179 925,257.59805,227.83946,38.180176,63.80693,6.136 925,156.798,226.6633,14.478928,24.494965,6.13 925,506.21768,178.60184,17.668121,33.407074,5.875 925,162.42175,226.2297,19.239014,37.157806,5.871 925,171.92377,225.80334,16.568726,27.332733,5.863 925,500.0769,209.9202,14.137695,25.518234,5.82 925,524.7263,210.2775,15.859131,30.785309,5.754 925,124.71596,194.07588,17.381165,34.733063,5.748 925,621.60114,477.53967,28.914307,66.97064,5.718 925,587.81964,208.06314,19.690979,35.708008,5.701 925,602.6815,-54.916965,53.77997,131.96243,5.7 925,-16.872318,-62.071148,56.121334,141.0164,5.692 925,35.54628,258.4546,18.49672,35.806366,5.687 925,115.97705,217.50523,16.283936,29.132416,5.637 925,626.97546,-18.93688,17.729858,46.87539,5.628 925,476.1985,218.02846,16.04712,26.389542,5.609 925,541.2527,5.238209,13.485718,25.606007,5.546 925,525.58374,107.62934,14.370728,31.99984,5.527 925,618.5415,194.94496,17.53949,40.438766,5.496 925,139.04349,194.1564,16.687378,33.65468,5.489 925,506.38107,212.82936,18.433624,34.3255,5.473 925,506.3208,154.0903,18.373596,30.896225,5.448 925,233.92091,187.1701,19.22258,35.67296,5.409 925,524.662,210.78656,29.939575,63.78714,5.383 925,540.29126,-10.406253,13.729614,32.81431,5.379 926,337.5349,217.04266,20.76355,34.98517,9.418 926,-0.18408656,209.17314,27.288387,74.10774,9.163 926,345.78326,212.44495,19.197388,31.834976,8.66 926,546.3712,124.49883,31.950317,67.20893,8.372 926,356.60233,208.27328,32.023468,58.57968,8.184 926,330.24142,218.0144,20.45755,35.144318,8.143 926,394.51154,201.52122,17.8349,36.465424,8.015 926,425.96252,225.29721,21.667725,32.065613,7.664 926,360.1662,153.63531,23.93628,46.40425,7.535 926,626.97925,489.01,19.876587,44.433716,7.467 926,387.78656,200.29617,30.08847,60.438995,7.292 926,354.02432,211.56416,19.325348,32.8692,7.051 926,-11.866524,477.9278,29.582916,63.02655,7.043 926,80.30281,242.86218,37.722,60.64026,6.818 926,369.98166,204.9153,18.567108,31.571655,6.769 926,367.8817,148.91382,20.932068,40.09601,6.715 926,363.36603,198.34863,16.346039,27.544342,6.669 926,0.37271142,157.07904,21.659845,47.029358,6.6 926,627.25146,-17.23476,16.669739,46.96095,6.58 926,371.9493,199.13806,30.656525,57.20044,6.474 926,-11.237976,-31.362656,29.808388,70.03591,6.459 926,411.4595,209.23222,15.933746,28.837524,6.407 926,341.13574,212.30455,16.177643,25.690002,6.385 926,-6.058285,488.67148,18.515493,42.395966,6.282 926,402.38654,206.27008,16.785461,32.24037,6.271 926,421.11752,212.0622,16.081024,27.615692,6.265 926,362.38052,209.17871,20.138947,35.93213,6.242 926,35.266876,227.45197,35.0159,66.76251,6.178 926,-5.841752,-17.208406,17.892038,41.667225,6.167 926,433.57333,222.0948,18.687988,28.819138,6.1 926,369.4917,196.77023,15.688232,28.198181,6.05 926,378.17072,204.75601,19.20636,32.80774,6.048 926,17.850636,220.419,34.541965,71.72278,6.038 926,611.547,-49.222816,40.87561,104.51155,6.016 926,361.11743,174.30095,21.166504,41.35074,5.961 926,227.29378,259.9948,32.979416,60.26544,5.955 926,65.83451,239.72125,36.120262,60.313477,5.915 926,49.89168,230.68373,36.357365,65.31441,5.884 926,-3.550027,166.08215,17.869236,45.49951,5.844 926,565.60297,120.69417,30.29602,65.16441,5.808 926,428.85037,213.34482,16.214478,26.968567,5.763 926,612.43976,457.15973,39.058594,104.47357,5.728 926,516.6306,198.17053,15.559814,36.436646,5.728 926,321.65967,217.75453,21.61383,37.587936,5.708 926,-5.9820356,220.73302,19.63378,48.761917,5.569 926,524.7423,196.87106,15.0372925,37.38066,5.55 926,421.47046,218.52539,29.132019,58.03598,5.518 926,369.33014,136.80794,18.722351,34.50215,5.516 926,403.60925,199.3789,13.322815,25.707245,5.505 926,350.90805,148.14178,29.285065,64.64401,5.502 926,531.9249,202.16884,18.972412,41.601166,5.466 926,584.16797,411.7962,70.60974,177.36078,5.423 926,464.77615,196.5082,20.8432,33.5475,5.378 926,387.41565,201.7437,18.276764,37.147705,5.376 926,-17.797653,-64.37393,56.42021,142.15721,5.365 926,-73.63759,264.73505,202.4555,463.2707,5.182 926,537.94745,212.43695,21.430603,45.61841,5.155 926,544.0303,132.4805,24.601746,45.470474,5.141 926,397.31854,88.09494,14.475861,29.092865,5.12 926,499.58838,202.3283,17.85492,37.924088,5.115 926,185.23758,250.263,37.770676,66.0202,5.093 926,618.7956,491.2559,19.572937,40.46512,5.079 926,507.70355,198.84264,16.252441,35.292923,5.071 926,2.344966,140.09383,32.704945,66.733444,5.036 926,472.83112,199.65968,20.089142,36.954437,5.024 926,442.52338,220.20737,17.361206,28.88594,4.999 926,403.61108,98.55427,16.591064,30.963799,4.989 926,333.31323,211.41934,15.926544,24.639679,4.964 926,492.8545,185.97847,28.200195,57.36386,4.922 926,186.75345,-3.4987545,19.60292,36.24742,4.891 927,594.41583,199.64677,32.604553,76.86723,13.972 927,253.37038,188.43976,14.253738,32.82959,11.587 927,69.67748,193.46799,30.449104,70.85202,9.554 927,244.60498,193.45744,15.816101,38.46599,9.428 927,260.208,191.00494,13.641418,29.94992,8.884 927,255.19708,188.01163,26.498657,61.42656,8.699 927,-4.682627,-16.204372,16.705877,40.98703,8.402 927,251.46674,201.78123,16.343323,34.926086,8.4 927,27.82011,194.82632,31.808865,59.520096,8.071 927,236.17609,194.48682,16.710129,37.161163,7.964 927,170.16653,190.18379,21.650864,35.855774,7.557 927,80.61084,200.01848,22.080727,52.249313,7.419 927,74.31812,197.48376,20.159454,47.92871,7.14 927,264.2298,190.73848,27.472443,61.488785,6.856 927,51.6322,192.29321,31.477695,71.598145,6.759 927,-10.975178,-30.855234,29.451008,68.960976,6.736 927,74.27528,64.48165,18.78241,35.712044,6.481 927,3.1946802,202.88089,33.403297,66.01608,6.455 927,234.51321,210.86584,19.296509,34.85193,6.372 927,210.54848,181.63281,16.853653,33.550293,6.366 927,88.708374,206.2748,21.242554,44.446823,6.26 927,3.798595,-13.483301,15.74856,36.023727,6.226 927,-12.060765,476.82077,30.168575,63.932343,6.21 927,276.22412,195.19383,30.444305,61.786606,6.179 927,83.7125,202.28455,32.887108,63.96347,6.139 927,627.46387,-17.301567,16.98169,45.675472,6.103 927,626.833,488.51407,20.350159,45.20816,6.056 927,268.0805,192.48692,17.68332,40.597504,6.055 927,247.38055,184.33232,24.691559,57.316193,6.004 927,225.62405,207.69653,21.089981,39.912155,5.993 927,343.8765,102.336525,24.197418,45.45037,5.959 927,206.26962,191.46062,28.645523,59.559036,5.886 927,177.34128,188.4418,20.698242,32.677917,5.831 927,-6.2016435,488.34036,18.88034,43.118744,5.816 927,20.357708,148.56451,30.267895,63.319183,5.796 927,139.54317,222.25865,16.36557,27.214432,5.696 927,579.8615,188.1081,49.669617,145.38269,5.691 927,1.8870771,204.70413,19.772764,34.629898,5.684 927,330.18033,206.27045,22.023651,44.78575,5.654 927,307.69812,104.19237,31.518951,64.17644,5.625 927,218.23422,199.73273,20.143707,40.365784,5.575 927,603.3887,-55.038727,52.94922,138.6011,5.539 927,269.20477,194.12186,12.132599,23.762924,5.482 927,236.93382,198.60669,28.825027,54.03813,5.457 927,243.26173,211.78937,17.747208,32.14496,5.441 927,605.84155,197.59319,23.197021,50.12068,5.437 927,-5.4868946,204.1938,17.255722,36.43225,5.384 927,3.718112,5.408518,17.219448,36.528625,5.347 927,584.17633,411.64252,70.3858,176.67023,5.324 927,452.23148,208.59943,18.990631,33.569,5.322 927,612.9857,456.16144,38.704224,105.59137,5.288 927,164.10143,196.09944,20.996902,38.00717,5.267 927,227.29256,194.63933,17.320694,36.812943,5.251 927,320.28827,106.2519,24.192352,43.596214,5.246 927,-4.1615734,2.321476,16.102852,39.796574,5.219 927,211.15074,192.54712,17.756409,39.73398,5.219 927,623.5104,-34.590214,25.933899,74.929726,5.216 927,23.78561,199.06352,24.101387,39.311584,5.199 927,299.47607,114.4982,30.593353,71.12869,5.177 927,170.91937,205.61508,17.3107,33.323196,5.163 927,276.82993,193.74329,14.839508,31.75174,5.115 927,-17.73539,-63.03951,56.059742,143.89043,5.093 927,-73.37104,265.27408,201.22885,462.8503,5.065 927,185.73488,189.39389,18.440002,31.3069,5.049 927,203.7724,151.5444,30.994003,63.031494,5.016 927,218.0261,180.88667,16.211426,33.648666,5.001 927,347.4934,253.3454,18.057404,31.47229,4.994 927,-5.155873,83.30428,18.267538,48.390663,4.989 927,615.8923,220.89151,22.883606,59.7045,4.985 927,-21.679955,402.7325,78.9138,175.19766,4.981 927,47.974174,194.7649,23.796616,46.723465,4.94 927,31.218756,191.32774,22.116312,34.418854,4.922 927,388.89835,204.6792,15.6753235,29.281021,4.883 927,34.00879,182.39221,44.0458,65.466995,4.878 927,435.58258,207.47534,17.05603,33.97557,4.874 927,291.22836,193.7807,30.90091,63.141052,4.809 927,347.5559,242.85452,17.336548,26.138733,4.808 928,505.86258,219.10156,19.262848,40.67401,81.378 928,513.9885,217.77724,19.713806,41.22734,63.984 928,520.9492,216.5724,20.46222,41.355545,17.955 928,405.83652,205.51837,31.817108,69.49637,8.411 928,-5.0480328,-16.898464,17.42109,41.224392,8.17 928,-11.707121,477.4952,29.431667,63.406097,6.816 928,353.57755,207.69592,34.954132,56.415314,6.693 928,52.182495,81.37338,30.85019,71.00314,6.593 928,-6.135972,488.57407,18.519169,42.094513,6.244 928,626.8135,488.18707,20.17517,44.613342,6.183 928,129.84328,211.32861,18.072037,32.031067,6.181 928,123.22976,211.9925,17.913918,34.072296,6.178 928,-0.30107498,203.34525,26.670292,73.30405,6.15 928,627.4503,-17.292667,16.978638,45.690132,6.104 928,-10.385078,-31.180216,28.267462,66.81248,6.014 928,603.0942,-56.627026,53.322327,139.19667,6.002 928,501.2117,232.8437,15.833099,32.709488,5.947 928,69.04318,79.84194,31.523727,65.46226,5.945 928,494.44427,233.22287,15.977203,31.860657,5.832 928,612.95386,455.40964,38.96924,106.27518,5.768 928,3.7740512,-13.482203,16.499119,36.98366,5.759 928,44.537415,104.01709,30.03978,79.72699,5.743 928,156.95268,215.77466,28.519897,59.011444,5.721 928,82.97009,83.31407,31.976242,65.07707,5.42 928,212.78558,210.85313,16.61406,34.783768,5.359 928,329.67554,211.16805,34.682556,57.758835,5.348 928,623.5113,-34.56329,25.933228,74.87707,5.316 928,3.0371964,88.2052,18.961695,39.90213,5.158 928,-4.683036,1.0546799,15.96979,35.979156,5.139 928,-21.095486,405.06857,78.07803,174.03372,5.109 928,38.085407,127.27339,29.569355,80.9572,5.09 928,-72.62222,266.26248,200.55841,462.4189,5.032 928,-4.124901,84.42718,16.514132,40.49621,5.03 928,114.3593,271.14557,19.288803,28.379639,5.015 928,-39.900196,368.0176,109.719086,275.8574,4.967 928,-4.0356293,188.46661,16.125313,39.32138,4.966 928,178.39267,207.23859,18.644928,33.66121,4.932 928,105.23093,257.78693,21.520638,32.22464,4.915 928,-17.527561,-62.236355,56.086636,143.08275,4.859 928,583.40686,412.0874,70.98126,177.13696,4.832 928,105.06314,220.93045,21.53254,36.955353,4.758 928,203.6409,211.87004,16.52092,33.524017,4.741 928,187.0424,206.11182,16.504654,33.643646,4.728 928,88.09063,218.5232,23.626755,40.21994,4.699 928,162.19847,211.22475,19.152527,32.60991,4.667 928,536.214,311.5285,143.42322,340.87885,4.666 928,139.72292,208.29991,15.906784,28.353317,4.638 928,4.1525373,191.44318,36.475994,97.027435,4.62 928,75.605354,-14.272372,15.80513,36.318405,4.613 928,107.225,271.04883,18.541534,26.333282,4.553 928,58.244698,-15.4932785,17.55294,36.985435,4.526 928,291.039,228.55284,18.946777,30.507523,4.517 928,315.6287,212.69366,32.171234,54.42276,4.467 928,36.871662,76.98306,30.511166,69.09909,4.427 928,122.74745,270.61362,18.837906,30.584229,4.417 928,169.40582,209.03859,19.663467,32.81717,4.408 928,-5.5735474,25.553526,17.10397,41.945076,4.402 928,235.89206,209.77031,16.237152,32.44026,4.381 928,133.21848,210.2908,30.668076,57.244843,4.378 928,212.72246,195.2646,14.571228,32.48207,4.357 928,493.63757,227.93887,237.57324,515.65356,4.356 928,422.6782,219.38593,22.906372,44.609436,4.342 928,227.65282,208.32864,16.512207,32.20706,4.315 928,80.04006,85.296,23.32679,48.059807,4.314 928,113.171616,242.81012,21.683975,32.1781,4.287 928,94.483246,80.5163,25.228981,46.418335,4.256 928,-69.45894,-186.34969,210.9258,452.4131,4.253 928,66.982895,-15.498789,16.80857,36.75414,4.25 928,497.42307,221.35799,24.15274,50.50612,4.249 928,-13.119979,178.49948,47.003212,139.56033,4.246 929,441.71616,225.83675,19.95987,38.305008,49.019 929,435.76483,228.45343,17.489807,35.54785,42.884 929,431.2479,237.84059,15.241974,31.758713,14.261 929,-0.79596996,268.42926,20.936874,52.5141,9.597 929,443.37875,213.87218,27.533844,56.141983,9.16 929,-5.5334797,-16.994522,17.739357,41.32809,7.407 929,603.4823,-55.025738,52.955994,136.82637,7.184 929,-11.050741,-31.103195,29.97341,68.16091,7.097 929,-11.496637,477.33926,29.436533,63.89157,6.677 929,571.9175,240.16058,16.799805,36.00128,6.582 929,426.0605,213.8924,26.167908,54.540222,6.486 929,3.1815743,215.74521,31.87728,71.68594,6.333 929,627.4958,-17.423498,17.078247,45.799606,6.18 929,-5.801544,488.63425,18.242565,42.406647,6.146 929,2.7631533,-15.64996,17.219332,39.32936,5.963 929,626.5891,487.89667,20.58136,45.80182,5.961 929,613.0045,454.53442,39.39441,107.27869,5.811 929,541.18036,244.21237,15.0372925,27.066132,5.545 929,-17.878744,-63.274696,57.001183,141.79193,5.537 929,10.882245,208.1145,30.0276,53.873016,5.5 929,328.8457,226.38,22.465698,41.04373,5.462 929,-21.085033,405.11206,78.0643,174.12177,5.411 929,-6.183199,222.59398,19.38082,46.149582,5.251 929,0.6297028,18.5138,20.77164,42.023247,5.245 929,423.06027,242.04109,14.805786,28.772537,5.09 929,260.29147,210.34729,33.619385,56.622345,5.08 929,623.47296,-34.623684,25.891174,75.019875,5.064 929,226.74878,210.59715,19.269897,32.99893,5.064 929,-72.865456,266.99506,200.73488,461.3186,4.96 929,536.34515,310.75555,143.54718,340.8407,4.933 929,582.76965,412.05545,71.961426,176.66391,4.851 929,449.21436,213.3605,19.924377,34.952377,4.826 929,-11.044511,212.37431,29.954708,70.57149,4.745 929,233.51988,230.19843,21.08702,33.341675,4.744 929,17.705648,208.33896,20.013742,35.35797,4.727 929,-4.49143,24.934282,18.136412,41.99436,4.703 929,45.698433,199.13974,28.560478,60.34552,4.664 929,396.5591,245.63478,14.963562,26.94551,4.651 929,521.29614,240.14389,19.133667,31.364624,4.617 929,233.93327,208.63144,19.009918,35.41411,4.607 929,-5.8682547,209.1862,17.73053,40.660767,4.596 929,317.24512,215.1671,31.669403,61.841812,4.592 929,413.83743,238.773,15.041626,28.752426,4.551 929,1.1444128,203.03499,26.192795,61.817,4.478 929,-4.11132,257.98126,17.75246,45.32129,4.476 929,-3.7291665,141.91914,15.342953,36.97014,4.468 929,530.96014,242.4657,17.148254,29.328857,4.405 929,493.67007,227.45618,238.1008,513.8721,4.4 929,435.79724,243.90804,16.019897,31.25322,4.36 929,57.75555,213.58757,21.176311,41.36554,4.333 929,-15.827117,123.81978,51.668446,139.58403,4.318 929,430.34265,249.22435,13.990295,27.258133,4.311 929,10.433977,-17.310497,17.606594,39.600117,4.285 929,-5.612566,104.69167,18.174866,44.12487,4.267 929,2.211769,-0.57208633,18.843195,35.626263,4.262 929,405.78098,246.65172,14.144592,26.25557,4.241 929,595.739,-46.536762,42.40564,103.475525,4.21 929,557.2965,244.4888,13.757019,29.044739,4.203 929,298.36072,222.09674,33.527252,63.96054,4.186 929,370.20938,222.55109,19.29068,35.94278,4.161 929,-9.707307,273.7455,27.139755,67.62546,4.135 929,235.13226,211.08266,32.475403,49.96205,4.115 929,19.38246,250.17096,31.930483,60.52655,4.096 929,5.563451,470.52112,37.870197,92.17053,4.088 929,618.1553,489.68042,21.009277,43.714294,4.085 929,28.139898,205.35532,29.759531,54.659973,4.073 929,33.375317,207.30312,19.204796,36.44307,4.056 929,378.40704,252.36906,20.304138,36.522354,4.039 929,413.64087,251.27705,13.9496155,26.1436,4.011 929,422.75558,229.9569,16.262024,31.844345,3.994 929,-5.5378256,4.48242,18.56919,38.752007,3.992 929,26.087559,208.17337,19.517166,34.9682,3.977 929,60.989433,205.55872,29.519554,59.92975,3.969 929,-14.384291,190.5582,49.80001,137.46716,3.963 929,4.074831,144.81606,17.095873,36.43753,3.935 929,435.10443,213.10208,19.062805,38.949768,3.932 929,392.44537,176.61334,22.421082,48.93454,3.926 929,387.60602,233.89215,17.797241,32.907776,3.9 929,-38.283867,-127.94188,117.433716,279.79285,3.896 930,454.09286,213.31532,24.763062,53.840378,9.851 930,627.43,-14.031536,16.564392,44.13237,8.51 930,-5.5626993,-18.600729,17.930424,43.58087,8.228 930,623.0073,-31.686554,26.240234,75.437546,8.165 930,-6.0239935,489.04498,18.466976,41.931763,6.798 930,-11.63942,477.0742,29.469885,64.15231,6.796 930,-10.96807,-29.15045,29.154667,66.68266,6.386 930,358.0087,180.46301,27.932709,67.949905,6.37 930,392.50186,225.50389,21.75589,48.502365,6.295 930,-18.079353,-62.794205,56.813976,139.64757,6.233 930,613.11475,453.48474,39.08203,108.98987,6.035 930,619.3613,-12.531727,16.339844,41.72528,6.003 930,314.15842,218.93712,22.050537,39.29515,5.719 930,380.0734,226.35252,29.128143,70.20558,5.681 930,256.87534,204.85156,35.940857,58.1156,5.605 930,-4.4945617,185.2969,16.6337,41.59413,5.574 930,-21.073408,405.31628,77.73742,173.87439,5.485 930,603.2863,-54.12427,52.54016,131.14323,5.311 930,246.45988,220.2892,26.852829,36.36711,5.278 930,374.20496,147.74507,30.377533,95.65831,5.228 930,614.624,-12.730993,26.43164,66.19915,5.156 930,622.04407,476.879,28.730469,66.64078,5.143 930,368.4618,211.86713,23.785522,50.025757,5.087 930,34.24885,149.11772,33.88236,62.00888,5.064 930,235.98187,210.25818,33.112915,54.918457,4.999 930,352.7837,195.41846,22.016144,51.337784,4.993 930,-4.8365145,202.2587,16.70065,41.79077,4.975 930,627.77814,3.1917133,16.785522,45.824684,4.959 930,2.9913723,-16.11712,17.37507,39.8058,4.931 930,570.2709,244.23045,18.354065,31.97676,4.926 930,536.3978,310.6994,143.24768,341.6529,4.861 930,308.8795,216.6899,32.762817,60.46672,4.848 930,582.9068,411.4667,71.74353,177.3342,4.835 930,282.2765,207.05052,33.595276,58.029343,4.83 930,-72.591835,267.0567,200.20535,460.65778,4.828 930,233.42848,221.26088,21.534271,32.81401,4.824 930,385.43103,218.93404,23.105896,44.061417,4.759 930,387.91888,152.54637,28.897278,88.04118,4.739 930,321.32202,222.50746,22.549133,45.39302,4.654 930,76.85151,182.7355,31.542763,60.11165,4.563 930,493.73688,226.78958,237.96344,515.1841,4.396 930,442.48996,211.18228,22.054413,41.808014,4.373 930,41.923073,-18.949467,19.085682,40.609676,4.366 930,619.28644,9.141014,17.8609,46.457535,4.363 930,-6.08634,51.956306,19.746914,45.258728,4.293 930,434.2664,199.81963,21.820374,36.157303,4.293 930,8.6374855,-33.45248,59.566113,123.91348,4.29 930,116.32938,116.122284,32.018356,66.06299,4.265 930,296.2985,218.33307,23.511932,40.353394,4.262 930,-9.013051,-4.3412056,39.530212,97.31854,4.252 930,241.14168,223.76224,36.377304,65.82892,4.222 930,-5.661043,2.0272121,17.978909,39.73661,4.22 930,-14.6850815,186.20114,48.188225,135.48282,4.217 930,305.29965,226.81802,23.64505,38.835205,4.212 930,-38.18595,-125.95849,117.645744,277.9979,4.19 930,435.07568,213.21536,19.704132,35.66664,4.12 930,602.8799,-12.779265,17.104187,40.65512,4.108 930,428.3506,236.24742,15.149414,31.009598,4.087 930,-16.527836,89.194695,51.83716,145.1579,4.065 930,-5.87566,22.637154,18.343115,45.69973,4.047 930,611.1317,-10.392355,16.1521,38.521866,4.036 930,123.33672,232.24721,18.022896,30.142532,4.035 930,114.417206,246.5032,20.688782,30.7482,4.035 930,433.74698,187.39296,21.05075,31.975098,4.01 930,2.2758846,490.5176,18.58912,39.52719,3.997 930,376.1392,222.5137,24.416382,46.932373,3.992 930,1.6372347,-40.225307,43.669636,95.421814,3.984 930,219.16138,220.59917,19.487427,31.785156,3.968 930,365.8094,238.4292,31.380829,72.15338,3.968 930,3.0954611,165.08673,18.822922,41.742493,3.964 930,450.28265,205.48334,22.686768,43.207306,3.942 930,-5.3737497,219.65636,17.882359,39.72261,3.936 930,73.51834,-18.442093,18.622467,40.692947,3.895 930,-5.1368003,104.478325,17.060028,42.77282,3.887 930,-69.6216,-186.04749,209.32,450.43033,3.853 930,114.30081,197.80878,19.158752,32.936905,3.848 930,49.66504,-17.9609,19.424042,41.07088,3.84 931,420.15338,227.24454,31.553131,60.997833,27.4 931,407.8634,230.28015,26.188965,51.18924,8.559 931,627.66205,-16.034807,16.655334,44.354076,7.767 931,-5.0512066,-17.407505,17.788078,44.445316,7.727 931,624.1687,-34.164165,25.062988,76.15285,7.425 931,-12.362797,-39.452343,41.80517,96.54665,7.057 931,-11.907309,477.8083,29.781305,63.229675,6.785 931,-6.1730785,488.63052,18.517782,42.299713,6.34 931,626.97504,489.15115,20.463684,43.630035,5.975 931,613.19244,453.0442,39.116028,110.0155,5.947 931,-5.7376013,247.708,19.759357,48.41893,5.762 931,257.0906,213.55392,22.524963,32.276382,5.759 931,603.26196,-55.082092,53.19165,132.3908,5.674 931,-6.458229,22.065456,19.531258,45.457584,5.497 931,322.2718,207.21616,20.862518,35.523254,5.334 931,-1.0919583,215.29883,28.401005,73.543396,5.289 931,-21.287413,404.7624,78.15489,174.25403,5.178 931,-72.78911,265.7584,200.64957,462.52213,5.088 931,27.691841,225.00267,31.011475,53.9601,5.058 931,8.750542,-28.86383,59.725227,119.84619,5.019 931,39.291443,222.37183,23.893963,38.07141,5.013 931,69.290146,206.98338,27.821365,56.762466,4.984 931,323.83694,228.11551,19.53366,35.52542,4.949 931,582.87103,410.95197,71.87067,177.43939,4.855 931,620.0188,-14.904657,15.593323,40.29326,4.799 931,259.4698,200.81216,31.93457,52.13968,4.784 931,42.746056,231.02951,31.91121,55.160645,4.779 931,536.9123,312.1842,142.61987,339.4948,4.74 931,-9.307332,-1.8708649,39.958492,94.13145,4.739 931,97.0461,223.44078,21.056854,32.535706,4.67 931,-9.974835,168.48276,29.324345,73.91742,4.66 931,2.0753968,-16.567024,18.228733,43.219982,4.659 931,0.22443652,259.5954,21.077078,45.953888,4.654 931,-5.5197787,229.91324,18.886559,47.11972,4.63 931,-5.2881327,292.47296,17.017845,43.297577,4.609 931,66.645294,211.95401,18.945946,38.74536,4.588 931,-11.03562,224.6037,30.561598,72.660645,4.568 931,57.893585,212.61697,19.578384,38.34877,4.552 931,32.994602,219.26097,20.82758,34.16562,4.515 931,-5.309416,0.5909195,18.722584,44.70985,4.51 931,235.157,214.85324,18.287231,29.726883,4.449 931,493.4575,228.2149,238.13852,514.2713,4.394 931,-20.072075,-85.62594,71.79932,193.0065,4.339 931,518.58777,263.67126,33.31848,84.862915,4.331 931,2.0741105,-12.751635,42.322556,86.28055,4.31 931,4.662943,232.28104,31.296072,66.26752,4.306 931,250.76912,214.9432,19.90831,30.328018,4.288 931,505.75067,189.38605,19.786194,25.97966,4.287 931,618.97107,491.76724,20.0354,39.575287,4.275 931,-5.206215,61.517464,17.111837,45.847084,4.262 931,24.723774,224.7417,23.134617,35.726562,4.248 931,383.80435,220.89009,21.085022,41.14659,4.229 931,615.1382,-19.935017,26.006775,70.92948,4.175 931,611.959,-11.668293,14.808838,36.38426,4.15 931,74.62806,211.4751,18.415009,38.41655,4.142 931,-38.225792,-125.44076,117.59163,277.42896,4.126 931,490.10852,190.97363,21.251007,33.528366,4.083 931,314.00833,201.12076,22.20642,35.226166,4.078 931,242.45743,214.25311,19.057037,29.68132,4.075 931,410.70453,206.96863,20.385895,34.334244,4.029 931,-6.652276,42.26542,19.714146,49.042137,4.027 931,330.8972,219.54855,19.039062,33.93991,4.003 931,-4.9532313,211.65656,17.48832,48.626648,3.994 931,2.1222277,491.06375,18.892273,39.782135,3.993 931,59.4718,-21.150642,32.832596,72.952415,3.977 931,-15.2481,213.13794,48.86293,132.86853,3.958 931,504.041,260.95844,33.680145,91.577515,3.933 931,5.8614326,469.14438,37.57854,93.63864,3.933 931,-5.6183987,274.2802,17.86251,43.325684,3.931 931,51.728928,209.56842,30.727234,57.23355,3.929 931,424.3561,223.38448,23.078522,39.762497,3.914 931,316.29272,222.44885,18.415222,29.500122,3.893 931,629.08453,5.4647884,15.985657,40.93038,3.886 931,497.57144,188.78752,20.966583,28.694,3.861 932,591.0822,200.77638,43.961243,118.15459,89.008 932,450.23615,214.12718,18.770203,40.998505,51.384 932,613.1866,208.17615,27.817688,111.40631,13.197 932,384.43195,208.73045,21.26706,52.37117,10.339 932,572.5919,199.3057,47.12274,125.27167,9.478 932,-5.446778,-17.72794,17.971972,43.872105,8.203 932,587.22833,197.40985,32.209045,83.14932,8.038 932,599.30334,216.18187,50.09839,135.23268,8.008 932,615.19476,262.36954,23.192017,59.28604,7.286 932,457.4411,219.85558,16.235046,34.248505,7.2 932,-10.873058,-31.896046,29.935783,73.082794,7.138 932,-11.797256,477.4663,29.57959,63.619263,7.0 932,-6.322426,488.87238,18.777138,42.09497,6.291 932,610.1659,-46.33228,41.90735,96.39479,6.257 932,3.1818175,230.31248,31.881079,54.01329,6.243 932,265.30698,207.41986,34.765198,51.770905,6.111 932,547.62115,201.00937,40.281128,104.00476,6.108 932,612.92676,453.93625,40.139587,106.8461,6.053 932,626.91095,487.8202,20.475891,45.455322,6.03 932,-18.1695,-62.575504,57.065025,141.78816,5.803 932,466.24854,218.71962,17.026459,32.603104,5.711 932,58.22814,230.89478,19.993568,38.217957,5.663 932,2.1239471,-16.866745,17.95557,42.125263,5.593 932,45.2726,214.12079,30.120728,59.061188,5.576 932,536.4991,310.3069,143.8664,341.8363,5.257 932,595.0486,195.58055,32.400024,59.303238,5.256 932,381.90778,185.67015,27.334503,64.43991,5.25 932,626.6538,-19.650974,18.138184,48.75364,5.103 932,-72.6453,264.94763,201.1688,463.78455,5.066 932,582.6566,411.98517,72.258545,176.10663,5.057 932,370.63892,212.86154,19.516052,39.28003,5.055 932,-21.072315,405.09708,78.13625,173.88937,5.051 932,337.75385,220.35548,19.385895,40.270126,5.029 932,617.1035,202.46703,20.523071,48.69612,4.923 932,-39.98031,367.39032,109.90105,276.41284,4.899 932,620.94006,204.63483,26.81604,79.45352,4.862 932,0.15512705,236.39218,23.156157,40.931274,4.819 932,76.425186,233.4975,32.843575,58.91559,4.812 932,-4.6187153,222.9186,15.6757,36.222885,4.78 932,61.44644,219.20059,27.754997,58.71997,4.712 932,595.99316,276.4528,40.972412,105.24255,4.679 932,11.592178,-14.051487,59.07943,116.05011,4.64 932,0.67629695,67.55409,22.486183,49.485535,4.598 932,252.64221,212.04684,30.689087,49.9664,4.564 932,493.26807,229.18382,238.19952,511.33093,4.537 933,495.53857,203.40219,23.190308,52.402344,91.134 933,387.15625,205.63431,18.752838,43.867157,8.778 933,-5.6602335,-18.426569,18.058632,43.430435,8.374 933,431.4236,178.96725,26.098328,76.8584,7.866 933,-12.343421,-39.932133,41.96203,96.40912,7.047 933,441.25534,189.20738,19.786499,53.152634,6.832 933,612.7045,452.94974,40.28192,109.10556,6.701 933,611.7722,-47.88307,40.768127,103.339806,6.439 933,626.38495,487.39145,21.072021,45.643585,6.349 933,2.3555315,-17.791956,18.468256,41.060165,6.187 933,427.79065,194.67157,20.206177,55.82361,6.112 933,-8.660451,465.23193,37.431545,92.14502,6.009 933,264.71152,194.57866,33.277954,54.94539,5.947 933,437.1266,201.34695,30.144531,77.69522,5.741 933,510.57294,208.43175,21.588074,43.871475,5.706 933,627.20667,-18.293037,17.606812,46.694786,5.566 933,-0.6557858,227.41492,22.54519,40.20862,5.543 933,-6.1087694,489.5833,18.400078,41.190308,5.519 933,411.53018,205.07834,17.90268,41.641907,5.41 933,532.0158,151.0888,30.536133,71.644745,5.257 933,-5.6510057,221.73254,18.21051,38.56311,5.236 933,403.09937,207.27368,18.68454,41.84424,5.229 933,-73.172195,264.6401,201.9143,464.2615,5.222 933,393.3472,209.88486,18.327576,42.998734,5.153 933,-5.3005953,87.950096,18.049833,45.62182,5.044 933,371.10965,230.97447,32.66992,66.35658,5.027 933,-21.389875,403.21204,78.95407,174.9029,5.015 933,582.9972,409.84814,71.84711,178.28235,4.917 933,346.4186,209.006,19.022003,34.39618,4.865 933,-1.8418169,-58.123974,56.78347,130.55226,4.832 933,536.7298,311.23682,143.24707,341.22363,4.809 933,59.299934,215.66278,17.406212,34.15172,4.787 933,353.26413,225.36455,22.08545,37.786545,4.746 933,221.1459,209.73453,14.039551,24.920685,4.726 933,10.889681,-13.042732,58.705795,112.598434,4.625 933,-10.705509,216.38943,29.079239,61.195435,4.612 933,618.61145,490.00702,20.788452,41.928223,4.558 933,493.31793,227.88498,238.16962,514.67896,4.545 933,-5.685134,44.110237,19.374393,49.923424,4.518 933,484.10526,180.1861,40.395416,77.6853,4.514 933,-5.8691807,0.49910736,19.214123,43.61401,4.505 933,585.8127,-98.29239,74.77661,233.88478,4.47 933,438.2174,157.41035,26.591309,81.205154,4.468 933,491.754,199.92741,18.717834,34.73468,4.444 933,482.2458,221.73677,44.269897,113.54381,4.405 933,345.97223,220.27922,22.138977,35.65776,4.394 933,-37.558838,-125.25135,117.7843,272.64264,4.327 933,237.0466,205.96059,13.240128,21.521591,4.282 933,59.92071,-19.236267,56.947132,117.541695,4.279 933,244.73102,218.80609,16.833282,25.664154,4.255 933,66.93982,214.56012,18.05198,33.989975,4.231 933,251.16014,208.29318,19.534592,29.231583,4.231 933,-9.931526,-1.9841957,40.27629,93.97789,4.221 933,251.15828,200.50879,17.80577,25.372879,4.205 933,283.5835,192.87596,32.203613,53.127625,4.204 933,3.709017,-17.916561,31.635733,64.27058,4.147 933,36.856697,-3.5766525,31.58271,72.66257,4.144 933,48.587044,46.261738,35.16414,73.71997,4.128 933,-4.96554,134.89929,17.48355,43.836304,4.103 933,264.83298,212.83981,21.855255,35.566086,4.051 933,278.6015,204.2089,25.594421,37.191208,4.025 934,584.35645,201.84546,30.471313,73.973724,82.042 934,441.9247,185.98209,25.323029,71.957,30.851 934,434.91833,186.55801,21.85028,57.626083,12.792 934,596.31714,197.87808,33.96515,100.199554,11.282 934,450.61337,191.18951,27.036133,75.56683,9.926 934,612.5913,183.48598,25.832214,83.026474,8.695 934,-6.098676,-18.322231,18.723621,43.81166,7.847 934,579.1824,188.01053,45.10797,143.2861,7.298 934,627.20056,-18.217482,17.475037,47.772408,6.854 934,-10.919523,-30.636274,29.69909,70.600655,6.844 934,281.19708,206.7516,21.51352,34.46202,6.76 934,-18.904287,-61.834255,57.967834,138.51796,6.749 934,273.89944,208.34074,20.045837,33.960693,6.617 934,613.2653,452.12466,39.451233,109.87399,6.534 934,623.1405,-33.03665,26.139526,75.254196,6.483 934,613.4438,199.88402,32.736023,113.51851,6.426 934,-6.028111,489.08588,18.359333,41.701843,6.172 934,-8.627525,465.83862,37.404186,91.14966,6.121 934,267.40656,208.7646,18.635254,31.70697,6.118 934,377.47342,217.43666,23.576721,40.67192,5.813 934,574.7178,197.00732,29.297852,63.373474,5.625 934,10.848915,-11.894657,58.09967,112.00278,5.568 934,238.16551,199.91168,12.219849,20.012756,5.552 934,245.09946,203.8015,12.331818,22.215195,5.549 934,266.8407,201.28499,17.911194,25.47203,5.406 934,287.8728,198.82086,22.5484,36.7574,5.402 934,598.24713,202.60089,22.999573,66.325745,5.227 934,393.8188,212.33728,17.141296,35.735703,5.226 934,475.38562,205.78531,19.267365,50.93512,5.216 934,313.56012,190.55313,21.933105,45.31691,5.19 934,-73.02674,265.623,201.65695,463.0904,5.179 934,261.48282,201.88882,15.398315,22.302322,5.175 934,-21.375656,403.98474,78.98448,174.40137,5.117 934,2.4016333,-16.4224,18.05545,41.049255,5.096 934,462.32053,187.79996,26.01886,64.98337,5.038 934,438.03647,215.11981,27.876495,70.77423,4.968 934,626.3993,487.54407,20.933533,45.71924,4.954 934,425.58533,243.4478,21.321564,41.970993,4.944 934,260.8355,209.7731,16.975769,29.122894,4.907 934,204.10667,194.99915,14.849258,26.23587,4.905 934,253.54234,203.62375,13.124649,23.826508,4.894 934,229.78784,200.91873,13.113007,22.695404,4.878 934,602.9683,-57.293514,53.289673,136.70406,4.855 934,536.352,309.8274,143.92853,342.67322,4.853 934,268.4253,195.47374,29.10434,54.44937,4.849 934,385.98364,209.73953,19.12146,34.65155,4.785 934,252.83205,197.59837,13.008682,20.477036,4.73 934,583.0936,410.1939,71.61438,177.89093,4.727 934,614.2705,88.58356,24.337952,107.16022,4.68 934,229.57959,211.57292,13.74231,22.177292,4.624 935,237.89325,207.48473,12.069992,18.489075,8.12 935,413.59528,230.3344,27.3349,69.50252,7.814 935,499.63354,217.94016,17.913513,35.743103,7.577 935,222.53755,208.73495,11.97876,18.831512,7.115 935,-9.871717,-31.404432,28.781456,73.883194,7.076 935,244.92728,206.46515,12.5138855,19.612823,7.061 935,-5.529729,-19.82095,18.703823,47.787884,6.979 935,230.43906,207.78963,12.240723,18.515396,6.863 935,20.618,206.55978,30.954922,65.331635,6.746 935,614.7498,196.79091,24.272644,79.12041,6.723 935,-6.141606,489.12408,18.591858,42.0625,6.527 935,-11.596224,478.00452,29.601057,63.129944,6.444 935,613.3326,453.00766,39.13263,109.96097,6.327 935,424.01212,228.90614,21.984253,45.206406,6.321 935,3.802545,196.55289,29.371565,72.122894,6.148 935,621.4664,-32.396942,27.355652,77.257904,6.145 935,1.5097499,-19.148016,19.564974,47.08852,5.942 935,506.4316,222.53354,16.705719,29.853699,5.788 935,626.87573,488.54553,20.643127,44.10913,5.716 935,-17.336601,-63.993137,56.075836,141.75517,5.697 935,626.4309,-18.617195,17.937744,50.324104,5.632 935,605.14484,181.86653,28.209167,85.01613,5.566 935,43.592728,219.94907,34.85701,67.63559,5.563 935,602.995,-55.883385,53.00183,133.69685,5.539 935,237.72958,197.58157,13.026718,21.002014,5.519 935,204.41257,207.13354,13.547272,21.5867,5.44 935,562.0916,144.15909,30.310242,89.29967,5.419 935,-72.70201,265.38416,201.23007,463.4983,5.251 935,580.48425,144.72978,31.544006,79.02629,5.226 935,-5.0274553,69.61991,17.496197,45.71189,5.204 935,187.95755,217.4337,14.959442,23.67923,5.154 935,582.99774,411.37775,71.79767,176.67944,5.12 935,617.2344,178.03943,21.51831,58.988937,5.079 935,195.70747,207.55502,14.337982,23.728638,5.052 935,-17.36013,437.9932,54.74992,138.19968,5.016 935,253.65631,212.1396,14.776123,24.153473,4.962 935,100.79482,236.68083,30.317833,54.533768,4.957 935,213.71881,203.63507,13.673889,20.33905,4.945 935,498.26648,202.82484,17.91809,40.496567,4.931 935,-4.921038,87.982834,17.12405,41.504288,4.894 935,26.309238,182.47649,19.600697,42.387604,4.848 935,536.2576,310.12488,143.35431,342.39685,4.837 935,485.03873,277.3082,30.415375,77.41409,4.815 935,180.3111,204.18619,16.14148,29.98233,4.805 935,-40.23784,367.484,110.53395,275.78693,4.798 935,404.6764,219.66225,30.757324,60.317673,4.795 935,-4.32957,154.96893,16.692331,42.747574,4.745 935,186.3902,205.86769,15.654083,26.226654,4.732 935,542.3408,228.43622,13.801025,28.419983,4.713 935,3.2462776,185.67477,16.87566,39.51248,4.707 935,26.733503,200.20895,19.807474,39.398758,4.707 935,417.34564,224.03784,21.164185,43.67325,4.693 935,9.760512,214.17004,19.781242,40.23149,4.638 935,565.739,218.58885,28.896301,70.81584,4.626 935,-5.288501,30.95146,19.535093,55.724304,4.606 935,25.910337,227.55272,21.094553,41.30229,4.604 935,549.237,232.0223,14.596497,32.42711,4.597 935,229.2323,216.771,13.82782,23.807877,4.568 935,493.1046,227.52286,238.01965,515.14856,4.557 935,229.87779,197.53906,13.667297,21.51146,4.555 935,196.24896,216.67482,14.730316,24.034592,4.548 935,42.70641,215.98637,22.253353,42.637894,4.542 935,60.095123,221.59323,29.174065,61.484253,4.542 935,252.68985,204.65218,13.819611,21.282867,4.502 935,222.04437,217.45493,13.204941,22.90149,4.494 935,19.11404,211.24702,19.828487,42.647903,4.469 935,467.73553,221.80222,31.068787,62.478302,4.457 935,-6.294121,280.37366,17.41956,36.943848,4.444 935,619.14087,-17.510002,18.216736,47.381454,4.438 935,9.156116,188.42682,19.19809,38.79651,4.408 935,594.943,-46.03984,43.966187,98.4827,4.377 935,18.861588,232.47443,19.388557,37.476807,4.373 935,2.1180415,149.51782,20.141975,45.41971,4.348 935,272.07898,214.5693,22.764618,36.268875,4.332 935,-10.3681965,35.773575,29.651953,76.6882,4.28 935,155.57928,214.43282,15.795715,27.948746,4.278 935,221.44753,195.56998,14.766708,22.508774,4.266 935,258.242,216.52597,19.841309,31.971634,4.248 935,-9.072548,-4.957138,39.6603,97.776276,4.234 935,476.47253,197.97046,28.002014,64.15076,4.232 935,374.19543,160.1746,29.25177,71.42102,4.211 935,-4.9074473,137.36441,18.369055,45.203445,4.203 935,526.6934,148.0663,31.589539,79.982254,4.2 935,559.19946,156.63345,52.08258,123.83847,4.171 936,400.95505,225.18956,25.912048,51.54338,12.666 936,534.71063,247.89442,29.022339,79.51335,12.111 936,517.3954,243.80283,28.652588,76.47891,11.179 936,-5.391947,-19.074728,18.245262,46.104527,8.738 936,-9.847797,-31.385427,28.148203,71.64827,7.198 936,42.45014,221.449,32.280052,66.80673,6.981 936,8.782378,240.69577,21.534004,44.75885,6.912 936,538.70776,236.2606,18.540833,42.656754,6.759 936,409.1715,222.03749,31.071533,52.17607,6.697 936,622.6868,-33.480415,27.250366,75.735176,6.625 936,497.32483,233.87852,23.2818,40.41942,6.478 936,626.7917,488.79694,20.151978,44.464294,6.457 936,83.34347,207.81573,30.702065,61.27655,6.439 936,-11.763149,476.79196,29.729492,64.08731,5.974 936,527.2837,243.57745,23.176392,55.06122,5.819 936,29.48563,221.55745,29.225235,66.117874,5.677 936,-6.0773253,489.2958,18.383581,41.889923,5.611 936,509.42105,233.703,30.633148,64.80914,5.603 936,4.0898633,202.79256,16.502693,40.527664,5.532 936,-4.310239,108.630135,16.05413,36.868492,5.531 936,-17.264755,-63.2337,56.11647,142.14258,5.505 936,295.1988,203.67404,24.115356,41.715683,5.487 936,544.3131,254.32393,20.789978,48.824387,5.461 936,612.9092,456.93558,39.154053,104.97409,5.324 936,82.87864,213.72424,21.894188,39.44673,5.309 936,483.7537,227.05504,17.384735,30.179062,5.282 936,2.227739,-18.874542,18.380333,45.663265,5.242 936,626.79785,-20.026936,18.292175,47.90245,5.201 936,5.4723206,235.39958,34.506397,107.198715,5.162 936,583.2069,414.08115,71.55371,174.48868,5.157 936,491.12677,230.79718,20.218597,34.91855,5.151 936,54.701443,224.95338,24.903751,50.674667,5.128 936,19.193024,228.27779,36.839752,92.02913,5.119 936,266.95447,213.68695,19.94046,31.261826,5.066 936,545.7983,234.39516,18.30017,42.94548,5.059 936,253.3264,204.0123,13.282333,21.474976,5.042 936,-73.58166,264.65363,202.6643,466.13635,5.034 936,196.14313,215.63597,15.066467,25.768066,5.02 936,-5.151818,246.42874,17.038286,42.624023,5.001 936,261.44467,203.52745,13.342133,22.905334,4.975 936,321.6473,195.32796,18.760742,32.68599,4.959 936,550.2027,216.8373,28.346436,61.042343,4.944 936,525.7191,194.41713,16.994751,35.30995,4.922 936,-41.54534,363.79156,113.009514,277.8396,4.898 936,522.4219,232.81741,21.04596,48.326904,4.837 936,123.64574,210.87505,18.7733,34.886368,4.823 936,-22.327164,401.4585,80.24429,176.02533,4.807 936,-5.703369,19.06029,19.499872,49.683,4.762 936,5.4835663,205.24515,27.355858,73.26077,4.752 936,536.1438,310.56958,144.19098,340.35114,4.723 936,602.77136,-55.468082,53.79785,131.64615,4.722 936,204.58626,224.22705,15.455307,23.546494,4.678 936,537.3513,275.86783,32.394897,81.445984,4.655 936,284.20462,197.57594,30.38742,57.062317,4.583 936,-4.2729416,94.092514,16.103327,36.707382,4.58 936,457.54092,228.95677,19.754913,33.386307,4.556 936,475.48825,226.00632,17.718597,29.061768,4.547 936,171.86485,117.95155,32.599594,60.509567,4.514 936,562.94446,267.3651,19.309204,36.51712,4.462 936,494.12033,229.27646,236.78964,512.89453,4.45 936,499.92816,238.47763,30.875793,69.67032,4.444 936,329.7702,192.45709,19.278534,34.412323,4.437 936,35.761982,235.94302,37.512234,94.15701,4.425 936,3.5250592,112.68957,17.707138,34.112297,4.42 936,68.675446,211.441,33.625046,61.7538,4.418 936,552.5502,266.84418,21.309937,48.872528,4.412 937,214.9259,236.2348,26.181122,44.443665,12.274 937,34.724243,201.69919,22.951912,43.69467,9.307 937,199.27199,227.74843,29.21045,58.92021,8.718 937,482.555,232.09834,22.507416,42.264633,8.527 937,485.87482,228.74292,29.67163,60.378845,7.844 937,-5.0217447,-17.479877,17.223816,45.390636,7.394 937,500.29114,224.36742,31.609192,65.92943,7.102 937,623.6007,-33.2628,25.78778,74.66494,7.069 937,627.3955,-16.565308,16.773499,44.214855,7.031 937,468.27084,239.09503,29.611694,59.90619,6.954 937,489.2825,225.1246,19.660675,37.631226,6.762 937,524.38544,224.8348,31.558044,58.05751,6.382 937,518.91223,232.05815,24.02301,45.995926,6.363 937,205.24574,210.36667,13.8493805,23.097946,6.331 937,-5.9273624,489.2969,18.414917,41.661407,6.294 937,545.5065,228.8609,19.574524,36.98517,6.292 937,40.110535,213.1077,24.046257,44.767944,6.037 937,-11.664024,477.02753,29.8428,63.712585,6.004 937,626.71326,488.53946,20.457397,45.057587,5.849 937,91.74034,195.19147,29.98893,57.61444,5.722 937,-10.722218,-32.454567,29.243439,76.10554,5.632 937,441.3841,177.75204,20.98993,43.132446,5.626 937,125.53318,224.59415,30.974266,61.97769,5.624 937,217.36224,232.32758,34.5524,69.55713,5.526 937,153.47615,238.7416,21.91095,41.32344,5.504 937,46.778225,203.76784,24.146626,46.227753,5.499 937,208.1127,230.21954,24.017212,40.756897,5.428 937,485.786,92.944115,26.775513,88.097725,5.383 937,612.90155,455.511,39.26593,106.66699,5.368 937,77.162605,191.8407,28.923744,58.333282,5.348 937,297.1667,201.02942,19.160492,31.19983,5.333 937,-73.00625,264.698,201.76318,464.31262,5.301 937,141.89386,224.7586,27.218079,58.66797,5.271 937,70.792534,196.02724,24.638893,48.9227,5.267 937,582.8283,413.03925,71.855225,174.43805,5.24 937,536.0601,310.74512,143.89502,340.8026,5.196 937,-17.264715,-62.89869,56.159363,142.00171,5.101 937,188.92523,110.41963,33.057495,53.60826,5.098 937,553.94037,231.66347,18.941467,35.39189,5.086 937,515.86597,78.678635,27.954102,76.2715,5.065 937,588.0305,240.45847,28.572754,59.88492,5.027 937,146.48778,223.93846,17.315384,33.096268,5.005 937,4.405404,199.72292,15.852504,35.013535,4.993 937,619.71936,-15.094717,16.422668,41.200356,4.964 937,306.0516,207.64949,20.66153,32.113113,4.953 937,453.13492,176.90887,30.936462,80.67798,4.918 937,604.26886,-56.678047,52.33014,132.6172,4.908 937,572.98645,240.90533,29.129517,56.712524,4.853 937,-21.61047,402.9585,79.28937,174.78894,4.836 937,493.9809,229.32034,237.27698,512.1709,4.824 937,27.89898,135.58963,32.74003,73.22681,4.793 937,138.81491,223.36957,18.154968,34.537933,4.769 937,509.7125,123.67231,28.194244,79.77703,4.764 937,-4.979355,88.75509,17.758656,45.241188,4.743 937,494.3091,76.73497,26.392487,86.65411,4.724 937,-3.3166292,195.86389,14.923963,37.174164,4.682 937,252.42639,209.55475,15.029419,22.687515,4.68 937,570.7979,235.93974,18.703796,30.27629,4.675 937,-18.142998,171.88235,53.05975,125.06268,4.624 937,2.9577713,-15.246475,16.318552,42.859695,4.618 937,221.76591,209.98514,12.318787,19.18451,4.581 937,-4.7822146,58.859917,17.324883,42.86036,4.566 937,1.1938667,224.67708,41.83157,92.64494,4.503 937,539.3268,240.9474,19.447876,38.543198,4.459 938,-4.8792224,-17.165443,17.055643,43.11752,8.167 938,25.63559,167.29437,29.89077,76.01691,7.81 938,-10.315313,-32.208534,28.798878,73.325554,7.117 938,-5.8909283,490.0356,18.39945,40.696564,6.677 938,-8.516365,465.72144,37.42164,90.99158,6.087 938,67.56768,199.08127,29.293617,59.117737,5.989 938,503.75516,205.87915,22.525543,41.63803,5.813 938,3.461423,-13.58592,16.734425,38.645454,5.76 938,566.8621,224.00914,27.587952,58.264847,5.758 938,544.7715,244.1456,26.044678,42.920166,5.703 938,621.6372,477.48944,29.161438,67.4115,5.673 938,13.103016,157.87437,33.141262,86.69496,5.668 938,627.12476,-18.272827,17.404663,47.38578,5.647 938,586.0662,221.46191,18.571838,42.187653,5.559 938,-14.159092,177.55838,48.697987,129.43079,5.486 938,611.26135,-48.925465,41.671265,105.80566,5.482 938,-18.05694,-61.985615,57.17566,140.39627,5.456 938,485.5735,193.84651,30.436768,63.394424,5.43 938,-5.2224803,2.2082272,17.505283,41.895416,5.217 938,-72.847824,265.496,200.96483,462.89743,5.184 938,36.830975,201.5529,28.943897,57.81288,5.176 938,379.01025,220.58366,21.281525,42.036148,5.051 938,536.55347,310.12433,142.80902,342.06366,4.979 938,583.1086,411.89435,71.54602,176.27509,4.938 938,480.0819,306.41898,22.924255,39.081635,4.916 938,-21.476908,403.1941,78.882904,174.85864,4.898 938,11.144449,-7.226879,57.694084,106.885376,4.895 938,292.2746,214.32045,15.825958,25.254166,4.889 938,588.39307,-12.779064,30.12262,63.1715,4.878 938,495.8865,196.44365,22.600616,42.240555,4.844 938,555.50525,229.38937,29.867554,54.928467,4.822 938,219.15343,220.47086,18.34465,39.394775,4.81 938,-5.029032,141.3122,16.993223,39.762543,4.802 938,585.736,-104.68673,75.465454,244.87915,4.768 938,255.58643,231.0801,23.549683,35.05623,4.76 938,614.1786,98.46312,25.224243,97.77843,4.741 938,489.85815,-180.69818,235.9397,425.72775,4.714 938,474.13763,201.39996,20.45752,37.06601,4.711 938,227.04138,220.77444,18.026306,38.794434,4.708 938,161.95183,212.05772,20.941666,34.458847,4.659 938,475.30072,143.56279,16.547363,35.544235,4.576 938,-5.697094,157.5755,35.705883,95.164246,4.573 938,238.86848,222.32335,27.781326,60.451614,4.538 938,481.53088,198.50407,22.00705,40.03488,4.534 938,493.495,228.54346,237.8114,513.87836,4.512 938,230.46613,217.36797,25.629333,58.922714,4.457 938,-4.4684153,125.988754,15.649882,37.01851,4.394 938,576.58795,-17.0071,51.234375,140.37149,4.372 938,493.2419,232.15778,29.2966,66.84979,4.353 938,373.97253,208.0089,12.68158,26.758896,4.319 938,-6.203513,153.42186,18.771442,45.416092,4.311 938,-5.6476746,25.153715,17.5887,42.501663,4.289 938,282.58154,219.86047,18.28952,27.872803,4.287 938,58.53222,-56.461582,59.116768,126.241714,4.268 938,384.07748,220.1773,28.160797,64.29974,4.264 938,490.18652,191.85849,21.14093,37.953247,4.252 938,41.485558,-29.321829,60.341133,116.51416,4.238 938,-37.75052,-125.84791,117.98513,280.00525,4.237 938,1.7321515,44.753033,21.549973,45.266254,4.23 938,526.0615,-35.63338,27.967896,73.06587,4.229 938,488.2522,313.7917,22.637695,37.826477,4.206 938,192.12134,107.122055,34.79651,60.764908,4.13 938,34.634125,-16.873531,18.216225,38.70636,4.121 938,6.148409,188.39311,27.938044,65.72035,4.115 938,499.2424,183.8273,18.242828,31.856995,4.077 938,515.31067,198.94899,18.423584,39.51094,4.074 938,508.66278,278.68854,30.816467,52.174225,4.067 938,330.86688,205.02925,17.40503,30.124603,4.064 938,497.20395,314.5438,21.1669,34.668427,4.04 938,-70.31026,-186.0117,210.48123,452.3745,4.039 938,396.465,-36.400764,30.394897,69.161354,4.022 938,541.17395,92.22739,32.572327,72.82669,4.015 938,291.05148,226.4371,18.517609,32.93274,3.993 938,619.95044,244.68549,17.040833,47.553772,3.987 939,461.9917,267.42883,31.679993,80.29291,29.671 939,426.0286,235.25992,19.408295,46.11609,9.417 939,433.66074,229.50494,20.21579,48.2901,8.856 939,366.55627,210.67995,14.8316345,29.082153,8.792 939,-6.2558937,-18.029058,18.21988,43.530296,8.762 939,404.69287,211.95296,15.985535,31.170502,7.447 939,112.42283,213.78899,22.984642,37.032883,7.179 939,442.74347,222.39406,17.710785,46.72441,6.984 939,372.2937,208.40877,13.9539795,28.832794,6.685 939,-6.063552,489.6606,18.427761,41.025543,6.44 939,-11.3169565,-30.875029,28.978527,69.2144,6.368 939,-18.455872,-61.658768,57.358265,137.45792,6.255 939,-8.698057,465.4882,37.54554,91.65787,6.212 939,-0.32626867,186.14267,25.99694,76.03525,6.211 939,612.864,452.26077,39.769592,110.325714,6.192 939,622.40955,-33.729595,27.415527,75.59324,6.142 939,-5.0308323,199.18654,18.104511,49.374924,6.068 939,389.62073,209.03754,13.875488,27.387314,6.062 939,399.29,231.31325,23.855255,41.031113,5.94 939,397.2027,211.19087,14.622498,29.873764,5.892 939,444.51144,208.65169,14.518982,37.652725,5.768 939,627.1833,-18.812412,17.483337,47.71818,5.717 939,381.30173,211.39316,13.172638,28.922974,5.559 939,492.3797,226.5719,27.997864,79.572266,5.557 939,626.268,487.49496,20.89392,46.35501,5.505 939,451.38312,209.11998,14.096466,39.1111,5.355 939,409.6325,231.1928,20.609558,42.82283,5.344 939,437.26382,215.2629,15.336578,36.951843,5.335 939,13.118227,167.28706,29.82961,77.81424,5.301 939,450.51648,219.33687,16.775116,48.385178,5.188 939,9.692841,-24.00719,59.87475,115.522644,5.186 939,409.95926,215.01743,17.70935,36.815094,5.183 939,535.9675,309.4089,144.18237,341.5845,5.178 939,3.4486365,-16.600838,16.655598,40.338932,5.132 939,427.63684,222.53378,16.722351,38.58963,5.063 939,448.07114,258.18323,29.01706,78.7081,5.058 939,-72.55824,265.96188,200.44077,461.54642,5.044 939,493.2248,229.12354,237.16437,512.0588,4.98 939,602.4341,-57.53158,54.035156,138.51837,4.964 939,446.5057,218.00504,25.16269,72.88385,4.922 939,-21.399292,403.36078,78.9393,174.70258,4.918 939,-4.88719,163.66568,17.385973,42.593765,4.83 939,27.765728,-3.817463,56.850094,108.23978,4.795 939,583.0355,410.5291,71.1012,176.6601,4.773 939,333.39636,230.44135,14.252411,23.75026,4.758 939,589.58673,221.20795,13.552551,23.274368,4.684 939,77.05408,210.08138,14.177193,24.091934,4.541 939,414.86313,221.63976,26.607452,58.401474,4.523 939,-9.625729,171.62546,28.202124,75.25052,4.505 939,356.07703,214.00356,17.5112,33.085648,4.5 939,59.7143,-9.817421,57.681866,111.48648,4.482 939,-14.531727,182.3723,47.93611,132.33742,4.442 939,188.1289,221.04755,15.580429,24.488571,4.442 939,-5.2864323,140.14294,17.391302,41.326828,4.44 939,-37.648758,-127.22564,118.07546,277.18585,4.422 939,348.61926,218.7017,15.587555,26.313568,4.391 939,121.40855,93.79053,20.306114,32.702614,4.39 939,139.04044,96.17814,33.668427,61.23295,4.388 939,585.7959,-102.333275,76.46777,235.65613,4.356 939,77.243546,200.15675,14.075714,23.575058,4.284 939,324.84192,227.67917,15.299713,28.946442,4.281 939,548.75446,85.31729,27.71991,68.897064,4.265 939,84.41543,203.73035,14.694115,26.638596,4.257 939,260.24268,224.53923,17.76117,29.758347,4.237 939,-7.0594625,0.8907757,18.892971,43.953026,4.236 939,581.1592,215.61559,14.964233,26.769058,4.221 939,619.24817,-6.921753,19.812561,42.350685,4.207 939,32.398865,177.23839,20.904633,46.833237,4.191 939,255.67838,221.37178,25.863586,53.253403,4.187 939,549.16266,-17.291306,31.424377,67.49198,4.181 939,187.35062,237.30498,18.497025,23.834396,4.161 940,379.40656,212.73285,18.898926,37.45703,25.003 940,413.79092,207.8608,16.09079,41.05533,24.855 940,394.3854,210.96024,17.67334,35.67726,14.926 940,385.91852,210.5476,18.526855,35.883163,8.984 940,-5.32047,-16.421295,17.777851,42.14618,7.938 940,460.75134,216.88622,30.4682,54.16884,7.275 940,362.76614,210.15717,16.327606,33.395615,7.152 940,356.6113,209.52686,16.665558,32.712646,6.836 940,98.759224,208.07397,20.729713,34.67137,6.304 940,-10.285278,-30.401821,29.211178,69.46693,6.229 940,-18.281603,-62.202282,57.141693,141.1527,6.218 940,-6.0288,489.78992,18.352242,41.459106,6.2 940,449.76498,226.20264,21.54831,37.70456,6.115 940,-8.683953,465.406,37.572323,91.85486,5.78 940,622.8539,-33.604725,26.640015,76.42251,5.76 940,2.902813,-13.8605795,16.965538,38.370056,5.691 940,627.33466,-18.136654,16.981873,47.033825,5.572 940,10.835924,-29.369778,58.03308,122.082184,5.461 940,613.01447,453.73395,39.4433,108.69232,5.354 940,417.572,214.68442,17.7146,40.865494,5.322 940,626.7079,487.89514,20.494629,46.101135,5.274 940,403.87332,207.8846,17.702148,36.719147,5.173 940,458.1953,222.05399,19.603516,36.868744,5.172 940,308.9667,216.70944,15.318695,28.2966,5.062 940,289.4261,206.24158,18.659424,30.700104,5.037 940,-72.45746,266.12524,200.34244,461.4417,5.006 940,536.2286,309.66046,144.19879,341.94073,4.984 940,-21.410824,403.3214,78.92459,174.93152,4.96 940,299.26035,205.00766,16.363495,28.816437,4.909 940,583.014,412.4043,71.88464,175.95166,4.887 940,283.41086,208.2891,17.317047,24.700302,4.832 940,394.66235,221.71693,19.006927,42.329117,4.801 940,-5.7023582,24.285069,19.479588,44.941418,4.768 940,475.455,216.92091,30.493195,54.770126,4.742 940,211.60234,213.40439,17.445145,36.07596,4.721 940,6.103325,210.25656,31.42575,54.975067,4.715 940,-5.0297747,139.50941,16.199093,40.51262,4.709 940,428.93213,220.40045,31.960846,62.249176,4.688 940,494.2409,228.8201,236.51843,513.4376,4.658 940,219.03723,212.96625,17.46074,35.545807,4.628 940,106.64685,214.24791,17.826233,30.70485,4.608 940,444.20657,219.03522,17.122528,34.68042,4.573 940,588.6509,-2.5934029,16.188232,34.105988,4.566 940,443.7951,219.43915,31.999146,57.9404,4.556 940,602.9128,-55.62702,53.26947,139.12137,4.542 940,-5.0137253,201.83421,16.503717,38.92424,4.542 940,317.95035,217.58203,14.528564,27.274414,4.516 940,411.15295,211.96661,29.894104,63.029358,4.509 940,395.8258,0.48900986,17.031738,37.6345,4.485 940,372.98068,211.30426,16.322601,35.420303,4.401 940,492.58777,216.28859,29.914612,55.794388,4.368 940,411.55005,-10.689697,15.636383,38.071987,4.329 940,261.14142,183.7364,13.497314,25.902771,4.328 940,619.96436,-5.4984026,18.123291,41.36058,4.314 940,-6.396985,215.53954,18.300585,39.295547,4.249 940,352.34708,205.98344,24.65036,50.56938,4.24 940,-0.3866315,32.63649,22.022085,45.06067,4.219 940,-37.834785,-127.18059,117.974846,277.5591,4.215 940,437.54102,217.2238,14.957397,33.707474,4.177 940,259.3796,215.72812,16.533966,25.090942,4.161 940,442.34003,204.4209,16.443726,35.939438,4.158 940,26.793833,159.99321,29.495413,72.16489,4.148 940,619.8553,198.06226,17.736694,44.889435,4.127 940,300.12274,216.62724,15.763702,28.657867,4.094 940,270.61804,185.10002,11.834717,24.816467,4.093 940,348.2389,212.78284,17.161499,37.018066,4.084 940,586.44495,-104.943596,75.63318,238.36621,4.081 940,403.52606,0.13075447,17.443481,37.750854,4.079 940,475.7274,-11.269483,15.60498,36.996906,4.041 940,9.982969,177.0073,54.535606,106.00455,4.037 940,226.74493,213.74599,18.50586,34.867416,4.013 940,-4.377559,154.75574,16.074049,42.05893,4.001 940,222.09076,212.83691,29.168976,62.923126,3.992 940,466.02844,214.1764,19.125,36.85202,3.991 940,269.1167,212.49734,15.132141,22.33751,3.989 940,557.2143,216.16072,15.854614,32.653214,3.973 940,250.38313,217.71692,16.921432,25.827576,3.958 940,75.54411,54.445107,30.180824,64.060074,3.918 940,60.5739,-18.72947,57.108078,118.70652,3.874 941,403.2161,202.77246,20.806885,59.615723,74.044 941,386.24994,204.87828,22.033875,53.4261,73.667 941,444.70364,207.62558,17.388458,47.678314,69.739 941,392.3664,206.24728,23.7565,67.924805,17.534 941,-5.2452826,-18.906857,17.799185,44.130123,8.07 941,-10.620618,-31.691433,29.168972,69.4315,7.674 941,348.8104,207.88327,15.828949,36.458282,6.572 941,428.04724,209.08507,17.11969,43.9451,6.469 941,362.87543,206.27774,17.243347,44.208588,6.39 941,114.11446,212.13312,19.835701,28.792221,6.339 941,-6.107793,488.8949,18.3666,41.97296,6.223 941,-17.974804,-62.015533,57.274155,138.97913,6.169 941,627.1267,-17.504238,17.284424,44.88893,6.109 941,375.82016,209.00409,27.164337,73.583496,6.046 941,-8.937162,464.5975,37.699684,93.15549,6.013 941,622.80206,-33.615334,26.7995,74.564995,5.73 941,613.63574,453.87262,38.22705,107.60693,5.645 941,626.7186,488.17978,20.685242,44.949066,5.481 941,40.424873,201.5408,21.51944,44.220688,5.454 941,-72.63017,266.60583,200.46733,460.7495,5.093 941,563.19495,-1.0318022,18.92334,33.965176,5.04 941,583.2116,412.26685,71.34613,175.99084,4.965 941,456.06177,203.7636,20.325256,45.47171,4.945 941,-21.523949,403.45172,78.98717,174.89886,4.94 941,9.89862,-10.78894,58.624138,115.36557,4.906 941,409.95395,202.22984,17.989319,43.82248,4.9 941,52.601017,61.793148,31.8204,62.811253,4.794 941,536.3449,309.88367,143.95648,342.54565,4.773 941,122.81784,209.45514,18.519318,27.2874,4.754 941,-6.0291967,31.611116,19.131592,43.12155,4.752 941,437.63065,212.53188,17.714539,41.95517,4.709 941,2.749784,-18.641565,17.946585,42.309196,4.703 941,220.8185,210.15408,14.364395,23.053543,4.695 941,235.61073,213.70018,15.6596985,29.507553,4.662 941,602.9621,-56.28532,53.349182,137.0231,4.659 941,490.51086,-182.17706,235.72766,423.33847,4.653 941,405.64893,204.5969,31.73175,72.17871,4.65 941,570.6277,-1.5702,19.340576,33.43652,4.606 941,586.6615,-102.65551,74.8186,235.78381,4.551 941,437.11475,211.3684,36.3974,75.620926,4.55 941,-1.6539145,1.6773758,28.70332,69.37144,4.547 941,449.6944,217.44975,18.99704,40.55922,4.545 941,494.27872,227.62787,236.29324,514.0001,4.483 941,226.19347,215.04509,14.978348,25.09697,4.472 941,252.64488,183.29204,15.452377,28.510788,4.456 941,97.68004,216.40793,20.88443,27.57779,4.39 941,131.965,218.74896,16.45279,27.623047,4.348 941,253.37448,219.51782,15.325806,31.257462,4.346 941,555.99115,-0.4917307,18.469604,32.427208,4.235 941,-5.888418,91.26764,18.250927,38.93518,4.233 941,390.39227,-17.853203,27.677368,67.83631,4.175 941,-5.28139,191.09761,17.466473,47.68643,4.156 941,6.7719173,180.0086,25.979666,66.33702,4.147 941,-37.961014,-126.762985,117.863525,276.7749,4.139 941,-5.4888844,146.93578,17.340788,41.600906,4.118 941,2.2875607,28.746773,32.34813,68.85567,4.098 941,26.179426,202.45398,20.691168,42.476913,4.097 941,380.779,229.98062,31.516846,69.44879,4.084 941,167.02211,221.7629,28.807693,54.238052,4.072 942,433.37555,199.95103,31.098083,65.91289,99.203 942,465.61633,196.78615,33.1445,83.808945,97.326 942,530.1009,201.4303,29.01239,74.874176,88.694 942,509.89105,202.51596,30.856262,83.55203,27.19 942,379.55502,209.80545,17.50354,38.704376,27.022 942,373.2406,209.8225,16.311432,38.300278,16.425 942,385.32404,209.46484,19.111237,44.631348,14.618 942,366.95193,207.71762,15.368042,36.108337,10.115 942,412.30176,200.73555,28.309967,55.60939,8.817 942,496.3289,201.64075,28.779877,80.342316,8.159 942,-5.4571285,-17.690397,18.033028,44.502018,8.037 942,115.99403,205.63722,18.149948,32.080734,7.695 942,73.86342,206.79979,18.663902,32.707275,7.25 942,546.4015,196.62296,32.132385,65.61182,7.199 942,437.23038,216.49776,31.097687,73.869,7.128 942,-10.47765,-32.261635,29.403467,74.11109,6.94 942,502.79172,220.20786,29.060455,80.90073,6.364 942,140.22046,202.4248,16.49974,25.679123,6.302 942,-8.705773,464.66193,37.55276,93.10541,6.102 942,55.92157,209.18794,22.296295,32.957733,6.088 942,627.1611,-17.855503,16.888245,48.097775,6.023 942,613.233,453.53107,39.339966,108.099,5.845 942,-5.9734197,490.05865,18.166449,41.349,5.736 942,3.3307815,-16.032196,17.025093,42.00747,5.661 942,622.45264,-34.113403,26.51184,78.5758,5.62 942,122.80206,203.7774,17.07611,29.700241,5.599 943,486.49094,213.47395,27.448395,61.1093,95.458 943,428.24194,210.60992,26.831268,62.271484,69.135 943,23.443413,214.23854,23.332474,35.300476,19.551 943,363.8165,203.15578,30.528534,61.79753,13.727 943,605.67865,218.32832,30.145569,87.7325,12.913 943,39.538177,210.8065,22.594688,37.0403,9.889 943,418.26538,199.07146,29.984253,69.34837,9.082 943,9.583136,212.30121,24.015799,38.63559,8.765 943,128.73575,193.59636,23.528214,44.996094,7.982 943,-5.0610447,-16.158644,17.000698,41.505054,7.679 943,-11.160004,-31.468853,30.101414,71.53461,6.72 943,613.1387,452.71188,39.637085,109.67471,6.718 943,283.72318,206.85643,15.750122,26.426132,6.712 943,-6.281855,489.07043,18.762257,42.77295,6.346 943,326.96252,189.4383,24.681152,60.880173,6.122 943,258.58142,211.25201,20.103516,34.043793,6.12 943,473.68164,209.14067,29.113495,58.767105,6.108 943,106.73685,195.02887,20.491913,39.101456,6.096 943,243.86502,207.39801,16.678528,29.996796,6.089 943,355.5707,237.08867,33.002167,68.790054,6.069 943,5.5580273,18.513794,28.004457,67.587265,6.066 943,602.28876,-55.52938,53.336792,140.54245,5.93 943,595.5259,207.27512,40.594482,182.4567,5.897 943,-8.857099,465.44247,37.57618,90.94766,5.864 943,627.12415,-17.155008,16.868286,46.94139,5.816 943,324.9959,221.81773,30.263428,72.3026,5.796 943,418.75006,187.67747,20.746033,45.885178,5.754 943,-4.8488054,10.535055,18.45937,40.6681,5.713 943,-10.301271,1.3167114,29.24823,64.784676,5.713 943,276.49066,202.76346,15.852844,22.807037,5.627 943,3.38508,-13.484337,16.609133,38.165104,5.612 943,626.7942,487.45227,20.731995,45.514404,5.6 943,362.65643,196.2532,21.446075,49.544815,5.572 943,251.19891,212.01607,18.89804,33.022476,5.538 943,378.08197,197.16669,30.974152,58.649292,5.519 943,540.8996,4.0666466,33.301025,74.73901,5.492 943,555.23096,-0.86151505,31.661865,70.01172,5.486 943,-18.24395,-61.323822,57.71561,142.2891,5.396 943,491.70587,-185.24136,234.07098,431.55444,5.371 943,291.9239,212.83365,15.822449,29.922516,5.325 943,1.9873381,22.34993,22.095753,48.955788,5.263 943,417.3555,199.23323,45.935028,110.77605,5.234 943,622.3402,-33.703503,26.96698,76.83431,5.191 943,536.27686,308.47308,143.87366,344.15326,5.096 943,12.52125,-3.972271,55.772987,112.82889,5.092 943,-72.794075,266.03558,200.27255,461.3211,5.084 944,461.8968,200.64415,30.476868,82.008804,27.668 944,472.53333,204.98068,29.481812,69.25183,13.704 944,358.89896,191.16948,26.055115,70.10426,9.391 944,185.70483,213.99574,21.507309,37.345123,8.23 944,65.914894,224.07596,20.005928,27.446838,7.958 944,168.66777,216.98586,20.437515,33.183014,7.517 944,-5.607763,-16.536606,17.750717,42.332333,7.086 944,613.33185,452.54538,39.431885,109.59311,6.946 944,-6.2653866,490.17572,18.965233,42.449585,6.336 944,-3.0689323,212.41006,27.246021,57.910217,6.046 944,-11.669561,478.03436,29.723372,63.68982,5.958 944,627.375,-17.672604,17.399231,45.854034,5.956 944,626.63745,487.34842,20.970886,45.882538,5.947 944,177.88394,223.64815,21.99324,31.195755,5.819 944,2.9710512,-14.642953,16.896168,39.95905,5.748 944,-12.580673,-38.941113,41.42954,97.34203,5.676 944,364.1753,167.04929,28.578857,82.04636,5.567 944,451.2593,217.31067,43.0365,95.15045,5.554 944,622.64215,-34.127678,27.388123,76.27037,5.462 944,455.31018,185.42488,30.971191,74.02785,5.239 944,137.33334,117.37059,34.469025,66.31053,5.211 944,413.7127,207.54382,53.333527,106.871155,5.201 944,356.23566,217.18211,32.8761,80.75502,5.164 944,290.9521,197.11159,19.105988,29.709045,5.158 944,618.4195,488.09494,20.876648,44.764618,5.151 944,297.8462,198.7952,18.187775,34.025223,5.15 944,-72.94898,265.475,200.67789,462.67307,5.147 944,523.0519,200.60063,18.805542,33.853165,5.054 944,490.28348,-181.96756,235.9061,425.90164,4.954 944,117.61253,202.67175,30.364838,51.228012,4.846 944,156.20204,221.61703,19.062073,30.207794,4.838 944,536.63586,310.73065,143.00317,341.2874,4.813 944,-22.049208,401.21597,79.29723,176.44876,4.798 944,-5.619741,21.599104,19.323473,46.75821,4.79 944,163.95645,213.93452,17.219116,31.563599,4.779 944,451.4189,114.41965,31.381104,96.08011,4.776 944,582.9522,410.19803,71.86743,178.0809,4.735 944,162.48508,228.12901,20.637924,30.1624,4.731 944,432.39352,191.48578,50.2648,106.98599,4.723 944,482.49478,207.76077,41.200592,100.0083,4.655 944,460.7449,207.55182,51.765778,124.44672,4.603 944,602.8902,-56.378967,53.227722,141.23393,4.595 944,431.2628,206.7467,29.14096,64.12793,4.583 944,420.33493,224.3782,34.010162,65.425934,4.559 944,352.47015,169.57788,26.840485,80.73184,4.529 944,11.20343,-27.14233,56.938393,124.39255,4.517 944,308.18652,198.58061,16.256226,34.781586,4.485 944,-20.114246,-86.714,72.04089,194.91957,4.476 944,411.95712,195.91666,16.87564,34.718643,4.475 944,267.33984,202.69002,18.127808,30.327972,4.468 944,493.27377,227.65015,238.30643,513.897,4.448 944,481.51678,200.84712,31.844666,61.092697,4.419 944,258.68045,191.18906,18.94516,28.773941,4.397 944,146.03337,218.41772,43.704468,98.3374,4.38 944,-10.190765,16.378197,29.122927,72.67401,4.359 944,-37.63187,-127.46862,118.11627,276.7247,4.276 944,1.0105848,15.338951,21.714828,48.060417,4.257 944,583.64557,206.36388,34.58368,67.251785,4.244 944,156.13496,218.83284,31.762604,48.639572,4.235 944,315.2481,215.26582,18.836304,39.96733,4.233 944,26.707067,-14.551573,16.88843,37.469173,4.22 944,187.91574,216.53448,28.982986,49.193207,4.191 944,342.04114,219.60974,31.439331,72.36066,4.188 944,284.5019,198.47897,27.936707,55.19348,4.176 944,585.9913,-104.13227,76.03009,237.48355,4.161 944,418.04562,253.03899,21.019775,36.534073,4.094 944,377.45624,201.64938,20.85965,46.339508,4.081 945,564.91364,203.11539,46.408264,120.458954,91.613 945,597.9123,203.8997,39.836365,115.24687,70.757 945,613.5846,201.14586,25.682007,81.95473,9.941 945,611.7971,236.42224,27.43042,85.355835,9.61 945,-5.157261,-15.52964,17.475124,40.40769,9.257 945,588.0329,207.8166,35.23352,88.962296,7.434 945,-10.789116,-30.78774,29.41282,70.78058,7.365 945,567.041,201.90823,30.9281,80.53781,7.305 945,144.78629,216.85849,24.89627,45.11963,6.804 945,252.02757,216.39297,25.358871,43.606293,6.72 945,104.747635,229.42183,24.73146,34.633713,6.715 945,3.1933296,-14.030334,17.23067,37.46692,6.623 945,441.67117,190.3926,19.715302,42.12822,6.399 945,598.02606,199.2745,30.326172,69.43552,6.305 945,-6.5318704,490.3252,18.946344,41.434204,6.19 945,578.769,201.19908,32.52643,69.34886,6.105 945,-12.003003,479.70255,29.740261,62.259857,6.103 945,627.48706,-16.916391,16.770996,46.102833,5.824 945,613.2647,452.3047,39.31958,111.00653,5.622 945,107.398544,194.241,15.706352,29.225174,5.592 945,419.84134,-6.5776978,29.536346,86.37726,5.585 945,622.0484,476.92163,28.259583,66.621704,5.516 945,459.0937,189.06262,20.17511,43.822998,5.505 945,454.50507,171.61682,27.82544,75.40459,5.46 945,-8.637906,464.6195,37.414516,92.6767,5.45 945,493.17358,224.60088,14.76593,26.63942,5.394 945,536.4535,310.34726,143.4378,341.84232,5.324 945,-17.882326,-62.232143,56.97471,139.47408,5.3 945,325.72253,206.3416,32.024292,66.41487,5.255 945,187.57974,217.78941,19.401932,34.47458,5.145 945,0.14230967,7.3893986,23.492725,56.6118,5.145 945,-5.1903224,2.0043087,19.189316,42.9972,5.101 945,623.0512,-33.626507,26.270386,76.55202,5.098 945,583.0565,412.02454,71.60443,175.56494,5.083 945,132.64311,220.497,32.075577,53.90059,5.051 945,382.16702,168.97157,25.357452,77.40196,5.039 945,601.9699,233.64865,52.142517,128.37842,4.955 945,-72.28366,267.45428,199.37585,461.081,4.941 945,452.27444,197.94763,18.926483,44.130554,4.893 945,11.484885,-14.924652,57.14418,115.27484,4.865 945,116.64963,189.16052,13.192535,29.544907,4.823 945,475.79535,205.54686,16.123413,33.915573,4.79 945,-21.682991,402.6742,78.737946,174.92542,4.764 945,217.06131,220.78879,22.86908,35.75821,4.756 945,602.6097,-56.72496,53.205017,144.2449,4.755 945,490.73703,-182.57504,235.15091,425.23077,4.754 945,89.502075,231.62274,22.807755,31.174072,4.747 945,493.90393,228.97102,238.04053,511.81873,4.706 946,-5.6919117,-18.560247,18.171242,44.48632,9.162 946,5.893273,194.8042,14.339853,34.073822,7.975 946,32.69864,223.67862,35.783836,61.25525,7.583 946,-2.4050088,190.03165,14.860769,36.53206,6.917 946,615.85254,185.84158,24.638428,91.00412,6.557 946,613.391,452.70895,39.607178,110.43204,6.449 946,-10.869104,-30.886272,29.178352,70.09493,6.256 946,-6.0675726,488.80173,18.335104,42.891693,6.243 946,12.87417,198.5266,14.163908,30.57248,6.074 946,347.07736,202.21584,18.809784,37.760147,6.073 946,455.39432,191.28568,27.528015,79.39621,5.95 946,2.5118804,-16.228546,17.432137,41.258892,5.927 946,315.5301,209.50174,16.461792,23.680511,5.915 946,-9.138678,463.97623,37.878372,93.329865,5.689 946,627.07837,-19.597258,17.675415,49.417274,5.575 946,622.3431,-33.84752,27.314026,78.09627,5.546 946,19.682987,217.56871,36.163567,69.768265,5.536 946,332.2252,207.11172,15.691681,28.812271,5.499 946,-18.058586,-62.575085,56.821674,139.31926,5.397 946,-72.93219,265.5867,201.05751,463.51877,5.245 946,-11.333318,202.99957,31.482666,71.230255,5.173 946,20.555628,199.06822,13.697485,28.011597,5.168 946,490.32007,-182.4109,235.20453,427.7415,5.083 946,614.1752,149.51924,25.517456,89.47357,5.05 946,306.85184,208.3059,19.344604,29.632263,4.972 946,2.8417878,203.05211,19.056864,41.127228,4.914 946,323.89142,208.41202,15.76886,24.940063,4.914 946,-5.89622,216.04376,19.728302,44.796417,4.909 946,267.98862,201.06424,30.943237,52.509415,4.904 946,434.63464,132.79851,31.704346,95.93474,4.891 946,-5.6289887,73.74072,18.11246,42.244606,4.886 946,-21.512676,402.87296,79.03602,174.4512,4.819 946,626.3241,487.65375,21.372925,45.436707,4.756 946,39.202644,217.67612,24.663876,46.551605,4.746 946,-9.887051,222.73973,39.081856,87.11,4.743 946,536.454,309.66907,142.93207,342.8639,4.717 946,-3.45689,171.30212,15.537447,41.53943,4.663 946,583.1169,410.57666,71.65509,177.56415,4.626 946,621.92883,135.66719,26.821533,77.80794,4.58 946,585.9915,-102.99264,75.58856,237.56897,4.577 946,66.89023,232.87411,33.2368,54.93567,4.556 946,361.47998,202.04916,22.688263,48.16443,4.535 946,0.86544514,209.65715,33.446568,66.42299,4.524 946,603.12225,-57.644928,53.45453,137.7319,4.467 946,48.94825,235.49501,44.36447,73.96895,4.463 946,-4.434494,201.49478,17.093346,40.511154,4.418 946,3.0475807,230.81247,41.712933,84.99133,4.417 946,12.211976,-11.46804,56.982315,119.01835,4.416 946,427.9779,73.18776,31.80896,77.30954,4.398 946,493.19983,227.2515,238.24182,516.03406,4.394 946,340.7447,204.32916,16.980103,33.290802,4.366 946,615.11584,217.97884,25.575806,96.18782,4.309 946,-4.295905,138.8167,15.841453,42.190628,4.305 946,12.057426,221.9616,54.87075,100.54561,4.279 946,273.61734,197.40132,20.688599,29.85942,4.268 946,621.27,167.13942,25.619019,80.34924,4.261 946,298.9437,203.60933,17.064758,21.758575,4.24 946,619.1694,-20.53723,18.369324,46.671883,4.224 946,357.5861,226.98883,30.403992,65.55762,4.222 946,131.18263,125.298744,33.091415,71.44778,4.191 946,80.36902,254.2511,23.463058,29.747925,4.184 946,51.643105,220.52574,34.70455,60.376114,4.177 946,371.13483,-14.267023,16.40802,39.018433,4.129 946,266.28964,222.3512,33.203094,63.41617,4.127 946,201.54395,142.1951,21.777222,36.77501,4.122 946,43.177986,19.418139,32.65654,62.577103,4.121 946,593.954,-46.90399,45.18988,97.87522,4.109 946,186.90427,133.97153,31.239166,66.82521,4.109 946,346.89,-12.701453,16.237244,37.593468,4.066 946,-37.77175,-126.52679,117.75131,278.0749,4.048 946,241.51979,226.57225,34.8575,55.790054,4.042 946,284.21228,203.3142,31.430023,54.261765,4.034 946,378.9595,-15.750352,16.888336,39.77022,4.006 946,590.2198,170.15117,56.43341,213.92964,4.001 946,369.74884,116.81778,32.20169,77.72925,3.984 946,107.3853,242.022,32.387436,54.285797,3.983 946,355.27557,167.73672,32.90616,77.792755,3.981 946,301.23712,206.04764,29.076172,50.39377,3.97 946,444.0699,189.11485,19.495514,50.293747,3.95 946,355.1278,233.01501,21.96811,44.509155,3.938 947,107.61859,247.0834,16.074951,26.2771,8.548 947,115.99174,246.33618,16.077904,27.137512,7.871 947,-5.5194464,-17.734015,18.02169,43.96863,7.415 947,122.70425,244.41785,17.120949,28.836487,6.778 947,-5.868249,489.66376,18.125187,41.778015,6.426 947,99.002975,224.64857,16.963257,34.961105,6.317 947,107.6852,223.98976,15.273315,32.939346,6.179 947,116.14882,222.19502,15.664795,34.474777,6.15 947,-11.348224,-32.100582,29.679691,72.551094,6.017 947,128.12741,126.17595,36.528122,70.824356,5.987 947,622.61163,-33.866768,26.966492,76.03778,5.981 947,-5.285577,172.30902,17.524925,40.295883,5.952 947,99.0364,244.32321,18.501335,28.331726,5.938 947,627.35266,-17.61327,17.370361,45.993073,5.931 947,153.76256,209.29929,19.941086,36.05429,5.891 947,123.752144,222.6801,17.005333,33.26213,5.875 947,147.73814,129.33023,34.477814,66.94502,5.807 947,613.49677,453.8285,38.928467,108.0141,5.707 947,-5.319563,197.79372,17.377945,42.90863,5.642 947,23.389587,201.44377,23.903801,48.47078,5.57 947,-8.853,464.51602,37.549267,92.39975,5.55 947,147.2445,210.62172,30.175446,56.042526,5.263 947,163.58482,132.15901,32.791092,69.718704,5.215 947,-72.93432,265.68372,201.03433,463.60657,5.167 947,-17.451675,-63.307693,56.135353,142.38446,5.114 947,490.26105,-181.52171,235.20068,428.3867,5.083 947,377.55356,200.5397,29.41986,66.6463,5.051 947,2.3008573,-16.922005,17.950493,43.871235,5.011 947,585.5664,-100.20256,75.461975,233.81802,4.96 947,602.78235,-57.0788,53.466187,140.2688,4.946 947,583.1695,411.28302,71.6001,176.9776,4.817 947,-21.586391,402.56778,79.1317,174.83566,4.783 947,626.70386,488.54944,20.964111,44.761047,4.671 947,536.67633,310.04327,142.4884,342.3089,4.662 947,478.80856,214.31772,28.696869,72.01828,4.599 947,130.7276,220.89258,19.163986,35.866333,4.593 947,317.127,207.61694,15.095825,24.461914,4.577 947,331.45358,203.57846,16.482544,30.000397,4.557 947,2.517366,173.55327,17.600294,40.867645,4.556 947,191.99791,221.5293,22.224167,36.025543,4.547 947,301.07324,208.1875,17.335297,24.326324,4.515 947,168.48965,222.72614,22.6456,35.065765,4.496 947,138.81512,213.09431,20.026443,36.49794,4.459 947,437.85416,-32.81687,28.068512,63.136772,4.421 947,185.60074,143.55765,20.930191,34.900208,4.4 947,412.1002,37.73302,31.021301,63.976177,4.384 947,176.30098,139.50717,23.41658,40.637375,4.37 947,118.660164,213.37845,27.197823,57.779938,4.362 947,7.6199436,191.04771,28.148413,63.59503,4.341 947,493.6134,227.58844,237.68408,515.6011,4.34 947,162.62503,236.00452,43.505463,91.74249,4.315 947,210.332,223.01129,42.669388,91.14575,4.294 947,459.03833,-17.333113,17.276031,38.66323,4.272 947,249.19359,220.53964,21.592361,29.26239,4.251 947,178.86865,225.70625,42.461975,84.872055,4.227 947,101.6983,222.96222,27.996506,57.4234,4.223 947,129.66304,239.82742,19.08165,32.537994,4.211 947,158.85762,214.4407,23.102295,40.357864,4.208 947,-37.512028,-126.034294,117.86131,275.2524,4.167 947,-14.295859,152.04526,48.43463,134.181,4.139 947,619.9869,-3.713358,18.609741,39.158768,4.117 947,442.28882,-17.654377,18.239777,37.65012,4.099 947,2.8230076,196.66336,19.619598,44.736298,4.091 947,574.0659,245.0187,13.131836,25.188782,4.082 947,306.13785,218.10289,18.092957,28.699112,4.076 947,-5.9167457,106.3537,18.623373,42.020844,4.058 947,120.68939,116.833565,35.39131,58.727577,4.052 947,443.6361,-16.201923,31.532959,58.41538,4.047 947,11.629669,-13.093369,56.980064,115.1353,4.037 947,621.43854,204.60872,15.301697,39.92122,4.0 947,324.8033,206.75464,15.482178,26.611038,3.995 947,81.59367,217.90994,19.279907,32.89824,3.98 947,308.0698,207.82841,16.483551,24.737717,3.98 947,194.9933,231.63074,43.935852,99.6264,3.977 947,91.726746,-19.752073,32.621544,64.33574,3.976 947,-5.753071,122.124054,19.44091,43.796844,3.973 947,135.76276,132.15561,24.025543,44.785706,3.967 947,293.36108,203.16061,27.723389,47.93373,3.951 947,558.03894,246.29803,13.092224,22.583435,3.889 947,107.96688,216.66557,15.285751,24.471237,3.855 947,427.91425,-16.268103,16.716492,35.345406,3.839 947,298.2447,217.98097,18.278778,30.820831,3.838 947,177.42047,222.90659,22.667572,35.776703,3.828 947,226.47423,231.47472,43.982254,104.13466,3.826 947,160.51398,134.91962,24.890228,43.809845,3.822 948,504.8111,190.86667,31.959595,91.06561,7.577 948,-4.7838445,-17.312857,16.753422,43.256397,7.126 948,2.4344099,205.6246,21.252567,51.367767,6.73 948,299.88416,209.0439,16.203217,23.995392,6.423 948,308.1129,210.7731,15.737122,27.22963,6.361 948,627.01917,-19.2296,17.542114,47.586246,6.202 948,499.14832,99.11491,32.344543,95.11422,6.133 948,205.95824,210.82657,13.913132,25.643692,6.127 948,490.91263,-183.56682,235.02231,431.08948,6.115 948,-18.175623,-62.74842,56.56637,141.96407,5.983 948,346.30383,200.74242,20.60904,42.976395,5.789 948,249.3936,220.42117,20.800522,35.02307,5.771 948,622.5474,-33.819527,26.762634,77.575455,5.76 948,-10.753872,-32.661743,29.496887,75.36864,5.758 948,613.51184,453.5655,39.187134,108.333984,5.62 948,132.26994,116.44252,32.80542,65.28816,5.617 948,12.376987,-7.397251,57.767246,113.31775,5.575 948,479.01248,212.4133,27.771729,73.07538,5.476 948,340.8295,203.3475,17.43341,36.873642,5.418 948,348.44128,185.13521,29.594238,64.13864,5.408 948,-8.845975,464.45892,37.619827,93.04883,5.364 948,90.60177,109.54851,34.172478,64.01332,5.304 948,115.160095,211.28145,19.438934,39.718964,5.298 948,555.0155,41.44659,29.343384,91.51999,5.203 948,197.31668,213.3236,15.052246,23.975586,5.161 948,316.69775,216.98924,15.325531,28.755478,5.116 948,221.49048,211.7221,16.114334,27.051865,5.099 948,467.95273,12.389088,31.118591,68.11488,5.051 948,152.41194,124.56568,21.781998,35.698906,5.031 948,-6.528823,488.89206,19.42416,43.104584,5.03 948,382.4926,60.646374,26.93216,94.99786,4.982 948,76.07118,103.66853,31.97194,61.832657,4.919 948,292.28128,203.40146,15.986053,24.307846,4.909 948,-72.58179,267.47766,200.00577,461.18262,4.875 948,408.54584,195.49162,31.334045,75.51427,4.866 948,257.9662,220.49275,21.134857,39.31996,4.849 948,583.60364,410.54672,71.1051,177.92087,4.829 948,-4.573656,170.00247,17.392715,42.750793,4.755 948,536.7498,310.6225,142.66003,342.21588,4.711 948,626.36945,488.03494,21.473206,45.866302,4.702 948,-21.932135,402.40393,79.127594,174.97192,4.694 948,451.4309,79.75226,30.765167,79.99846,4.688 948,602.7544,-55.726,53.587646,137.7621,4.669 948,324.34015,214.40645,16.864807,32.58261,4.626 948,124.267975,210.79008,19.569672,40.691147,4.548 948,234.78,220.42567,19.69777,31.956863,4.484 948,243.21948,216.79419,20.191376,32.97403,4.469 948,3.779583,-14.992426,16.003937,42.072308,4.446 948,169.07059,139.00533,22.836212,39.136414,4.425 948,619.1178,-18.897964,17.97522,44.160824,4.406 948,265.05292,212.01932,20.700287,36.624542,4.395 948,546.00085,-3.0928001,32.628174,66.92756,4.336 948,499.47913,32.768894,33.243042,82.01048,4.334 948,-37.530308,-125.42124,118.04817,272.3493,4.32 948,493.48822,227.96875,237.77087,515.8478,4.292 948,-16.75925,168.83835,50.797916,132.0119,4.282 948,43.197556,-10.088852,58.56842,111.69389,4.252 948,511.4077,106.91647,22.685425,56.731995,4.248 948,504.26306,94.14638,22.19342,56.398483,4.23 948,332.86804,206.91058,15.6944275,30.403015,4.202 948,484.61176,177.64705,28.546082,77.21521,4.185 948,154.63194,126.24525,33.054245,65.292076,4.185 948,520.9246,105.26699,20.891113,45.49044,4.155 948,299.29068,189.91702,17.06137,31.29068,4.151 948,463.68256,195.82759,50.73828,115.37285,4.127 948,102.53689,203.85358,26.867683,56.53595,4.119 948,476.0913,64.83868,58.638306,178.05371,4.115 948,131.16444,214.79318,21.943405,43.399353,4.11 948,485.4288,197.78236,38.72281,90.15547,4.062 948,380.31586,31.04691,29.658539,81.17827,4.061 948,453.7884,58.310043,31.706055,72.6367,4.058 948,474.9555,29.94703,30.883911,79.45407,4.052 948,161.35918,126.43913,20.479294,32.61589,4.05 949,509.26498,6.35828,28.729523,83.828995,8.233 949,-5.5371385,-17.96009,18.066488,42.860962,7.64 949,-18.236347,-62.190315,57.378696,140.23314,6.961 949,492.90036,12.7651825,31.258331,81.41109,6.56 949,-6.5848007,71.18809,20.131783,43.172073,6.461 949,-5.9011226,488.744,18.063074,42.8472,6.437 949,98.52798,211.26921,21.426094,39.867386,6.399 949,-11.395937,60.98405,29.20311,69.94188,6.274 949,59.259953,220.16942,17.11678,34.767105,6.052 949,338.80466,202.83942,15.536835,31.702606,6.042 949,331.69238,197.77603,15.974365,30.396667,6.03 949,-5.849416,55.57612,18.413319,42.141335,5.962 949,622.82446,-34.21223,26.634888,78.10053,5.824 949,627.2917,-18.069584,17.15216,47.22567,5.761 949,-9.06348,464.5082,37.692978,91.795685,5.736 949,-10.811428,-30.413834,29.766293,69.66141,5.724 949,74.66777,106.54086,33.374283,68.55737,5.718 949,316.44125,216.75783,15.949341,29.848572,5.641 949,2.7010589,-15.986765,17.641523,40.231937,5.613 949,42.47753,89.66433,33.06526,56.857597,5.525 949,307.645,211.21571,16.48526,27.556198,5.506 949,490.4746,-184.12923,235.01843,430.14163,5.484 949,613.54865,453.0765,38.480835,108.66409,5.477 949,115.05436,110.36813,33.726707,65.12555,5.47 949,66.844955,218.7316,16.980461,34.23932,5.445 949,626.3654,487.88092,21.31366,44.63379,5.441 949,74.81881,223.07571,20.62262,38.68155,5.422 949,188.0385,-32.572933,29.343323,60.794876,5.412 949,2.804066,72.187546,32.05036,74.74187,5.388 949,-2.7702813,201.54382,16.375189,41.472214,5.317 949,290.0772,217.56593,19.14331,30.178375,5.284 949,9.959741,-10.087978,59.47731,111.176575,5.262 949,-72.80028,265.42764,201.08162,463.11777,5.226 949,513.3167,202.18106,53.57245,140.55289,5.163 949,-6.3022623,38.173664,19.37686,44.96841,5.116 949,74.089264,244.33461,31.879501,55.765762,5.113 949,162.2596,214.42198,18.505386,25.669495,5.1 949,524.4922,-0.82499313,31.476746,71.52893,5.083 949,332.9137,208.95702,15.025635,29.356796,5.052 949,506.89395,-2.9904099,56.58304,129.41211,5.047 949,152.70216,130.13588,22.430054,39.356384,5.036 949,147.311,215.8383,18.912766,27.488998,5.015 949,131.44063,115.577095,33.080017,69.30071,4.989 949,4.287156,232.66785,30.921494,58.602417,4.93 949,58.845806,95.673386,33.2617,59.870285,4.927 949,370.53525,184.2219,33.27304,72.46585,4.902 949,82.59386,122.602295,33.901215,67.74118,4.902 949,299.94522,205.86946,16.132324,26.044678,4.881 949,1.9184417,222.89061,18.50955,36.61824,4.873 949,2.4534774,241.8746,21.491776,37.98758,4.853 949,48.21708,224.23175,22.298027,41.72827,4.852 949,583.21924,411.10577,71.48419,176.81427,4.837 949,-4.4628086,221.75333,16.738369,41.79715,4.83 949,-21.452694,403.1125,78.76344,174.43988,4.822 949,-5.857325,0.8098831,19.036264,42.825695,4.788 949,602.54016,-56.41163,53.49469,142.9076,4.762 949,536.6531,309.71228,142.8919,342.739,4.759 949,139.72292,215.62688,16.984146,25.993454,4.754 949,2.1084392,256.2841,22.239058,38.49713,4.737 949,-40.343887,366.69775,110.69589,275.92383,4.711 949,178.45918,211.89993,17.034378,26.714386,4.648 949,19.20066,83.22351,33.51879,66.76077,4.625 949,520.04956,0.29445457,23.176147,54.945908,4.616 949,585.22955,-104.24639,76.1037,241.40887,4.602 949,75.25248,215.28258,16.962143,31.994904,4.598 949,15.941103,-39.244774,47.444252,92.118454,4.594 949,-3.109777,53.329113,29.271961,66.89819,4.58 949,-12.072062,228.772,29.721487,63.03412,4.557 949,-10.928335,23.512585,28.84096,70.05412,4.542 949,-5.586198,250.1653,18.492165,38.044357,4.536 949,10.285941,-16.807337,18.108643,41.56657,4.53 949,19.804617,15.599281,31.849764,63.06257,4.515 949,493.80878,228.58316,237.29053,515.4828,4.467 949,143.90097,124.898254,23.769257,46.873077,4.439 949,324.99344,209.60223,15.837799,30.81752,4.431 949,477.64496,-3.655899,55.26056,127.388504,4.412 949,154.25607,216.41295,20.08899,27.796936,4.405 949,557.6222,-2.8672142,31.430847,78.451706,4.404 949,51.811028,214.41248,29.68319,60.051178,4.387 949,324.3422,196.47086,16.115753,30.03012,4.385 949,541.74786,-7.478485,29.840515,70.29958,4.381 950,344.68353,197.02518,19.89682,42.462326,19.513 950,71.19918,203.56265,21.816612,39.39937,8.432 950,292.03488,201.11064,16.271027,23.790726,7.826 950,-5.3188314,-17.79512,18.158375,44.408844,7.755 950,138.55139,212.54575,18.120193,27.171219,6.659 950,308.5312,203.3615,15.210297,29.17305,6.527 950,235.09082,189.74109,17.399689,30.767166,6.489 950,-10.267204,-31.662031,29.358137,71.971504,6.483 950,99.97143,96.11718,32.542076,71.16697,6.473 950,-6.092155,489.498,18.200914,41.69684,6.284 950,339.48734,163.28639,29.07135,76.94888,6.199 950,-18.167183,-62.248386,57.2697,140.9517,6.177 950,-2.714913,50.681976,29.366402,70.64342,6.163 950,211.85446,0.4397564,33.014374,56.78264,6.119 950,227.4968,191.5231,17.772247,30.612488,5.982 950,48.09269,210.97095,23.95459,37.773376,5.858 950,2.314549,-16.611752,18.338144,42.44341,5.788 950,-12.165613,477.25723,30.308256,63.518524,5.76 950,316.0542,205.04993,14.809265,28.021698,5.712 950,613.4618,452.75616,39.16626,109.94446,5.712 950,-5.6695056,54.92518,19.028328,43.886307,5.659 950,243.10019,189.94489,17.621552,30.027725,5.636 950,622.599,-33.145245,26.383484,76.96299,5.461 950,4.848322,62.330658,31.630365,80.59148,5.43 950,299.98032,200.92126,15.343597,22.932327,5.34 950,627.03064,-18.105381,17.190186,48.33496,5.286 950,490.38428,-182.57222,235.68518,431.25836,5.28 950,-10.860407,63.507706,29.68542,75.559296,5.181 950,-72.806,266.27777,200.48634,461.2624,5.152 950,626.6501,488.19116,20.596252,44.49536,5.13 950,8.569517,205.13995,22.272137,40.766205,5.103 950,-4.7594852,196.201,17.092411,40.013824,5.061 950,-9.75132,33.326664,28.747683,69.848175,5.058 950,35.79136,-18.036095,33.1502,61.772896,5.024 950,2.22476,211.44519,40.785225,90.11481,4.975 950,115.03185,100.171814,32.76832,65.745575,4.974 950,585.0117,-103.739365,76.30139,240.9466,4.954 950,-2.4684465,-17.941278,28.571762,69.46927,4.945 950,297.46524,218.03456,19.570648,31.196304,4.881 950,583.1531,410.53778,71.63507,177.46564,4.879 950,10.06378,-17.281225,18.46451,42.042236,4.85 950,-21.588108,402.89722,78.86276,174.68188,4.839 950,250.79561,190.3972,17.660263,27.442047,4.82 950,41.886185,-18.863628,19.36774,41.56373,4.791 950,16.7944,71.460014,34.509747,65.57545,4.763 950,136.42523,109.96993,21.347092,33.84626,4.716 950,10.989716,-4.1772575,58.561836,106.24963,4.713 950,536.7377,310.25638,142.78503,342.26767,4.7 950,-15.687765,189.16211,50.88421,125.489746,4.67 950,259.80402,184.12764,16.26596,28.613632,4.658 950,342.30994,199.28522,27.77066,64.20419,4.64 950,169.13028,226.59486,22.057495,30.935867,4.628 950,-6.395688,76.10171,20.024113,50.07808,4.59 950,145.25638,220.04768,23.274017,30.946548,4.574 950,268.60446,186.70924,15.301971,25.911484,4.562 950,-5.582551,21.840643,18.934635,47.059174,4.558 950,49.61551,-11.736734,44.279137,75.6736,4.532 950,140.87735,116.01998,30.254013,71.17039,4.528 950,229.48795,203.61563,14.54187,25.197525,4.499 950,162.40425,134.49725,31.846313,64.05293,4.494 950,436.1283,182.91246,29.416107,84.81624,4.477 950,-2.183131,12.05621,27.686274,69.721985,4.458 950,60.09942,-15.196922,56.099068,113.10353,4.439 950,493.41687,227.43506,237.88647,516.2077,4.435 950,249.6364,213.71884,21.27977,32.46826,4.434 950,602.3977,-56.999374,53.618286,144.72525,4.413 950,161.56615,225.53975,21.394745,31.312271,4.399 950,-5.7537675,-0.8375282,19.523468,47.427498,4.37 950,283.6195,209.9353,31.248322,55.621124,4.35 950,2.2410464,218.36263,21.25338,39.475723,4.344 950,15.843277,-38.953438,47.97447,93.038315,4.341 950,333.48718,133.5766,28.493256,78.38988,4.337 950,57.80858,206.52736,22.613518,37.993378,4.327 950,36.36085,9.475628,32.483593,68.68857,4.316 950,299.68774,183.46248,15.816528,29.237228,4.307 950,155.53813,206.30019,16.210648,26.866806,4.3 950,-37.642113,-125.07028,118.2279,272.13818,4.294 950,315.104,-15.476948,16.526306,38.82982,4.285 951,357.3376,179.44302,27.696533,69.72516,28.921 951,24.426685,202.8375,23.153236,43.89502,8.523 951,354.09753,198.47896,23.263885,58.146805,8.056 951,-5.466578,-16.46711,17.859396,42.64042,7.757 951,-11.007093,-31.23663,29.912651,72.13111,6.707 951,367.71368,200.54683,23.038727,55.595596,6.59 951,-18.46473,-62.52378,57.090874,138.83684,6.257 951,308.39633,205.77046,15.258392,26.867996,6.242 951,-6.016669,489.0481,18.35744,42.550293,6.207 951,146.89665,208.75453,17.3723,24.962204,6.147 951,6.5308723,197.69412,28.88821,56.660217,6.015 951,293.08118,202.96753,15.2673645,21.27353,5.862 951,-9.000502,464.89078,37.610367,91.50235,5.779 951,332.10394,205.0584,14.784912,25.931137,5.742 951,250.58374,190.27394,18.219177,29.619827,5.729 951,388.11218,141.11911,30.48645,84.17352,5.658 951,315.73965,205.737,15.148651,28.126205,5.641 951,622.7782,-34.672485,26.83496,77.54671,5.639 951,349.33783,215.94289,32.54602,63.69902,5.553 951,627.02356,-18.851324,17.693542,47.475452,5.461 951,2.818801,-14.482,17.33115,40.3723,5.445 951,-4.60052,201.88081,18.88757,43.43808,5.412 951,518.1855,-1.2785263,28.904419,75.755295,5.4 951,324.10922,204.96901,15.506439,25.935532,5.385 951,612.9912,453.34705,39.61206,109.09009,5.259 951,34.30624,88.50423,33.262714,67.363846,5.166 951,-72.86751,266.28653,200.76431,461.8441,5.166 951,626.2831,488.31006,21.640503,44.905273,5.138 951,268.774,184.96179,14.437714,27.133545,5.12 951,490.36484,-183.63863,234.85239,429.45016,5.107 951,91.082756,93.87433,33.061234,72.14987,5.105 951,82.498055,101.02614,21.826927,43.957138,5.026 951,12.220945,-7.5360374,56.80127,109.03392,4.999 951,250.75455,206.62674,17.588898,26.228989,4.948 951,20.33894,7.1567574,32.93247,69.43231,4.908 951,290.41803,218.4091,19.64389,30.135925,4.906 951,582.94775,411.22015,71.909546,176.8548,4.886 951,155.32762,206.20135,16.484894,25.829529,4.859 951,536.6661,309.65372,142.8255,342.2596,4.857 951,259.54736,182.69934,16.334076,30.500732,4.849 951,1.3829899,215.42825,20.587452,41.849518,4.827 951,277.2113,184.79869,13.331604,26.076523,4.821 951,170.7688,199.4887,17.53949,34.44136,4.811 951,-21.412987,403.41183,78.68782,174.07065,4.811 951,285.025,185.56094,12.642334,24.192368,4.809 951,235.84308,190.05133,17.737152,30.170044,4.773 951,127.35859,215.57083,24.298546,42.121216,4.727 951,-5.486473,0.038244247,18.388191,45.39926,4.704 951,28.433287,28.936138,32.35565,69.461685,4.702 951,293.79468,183.20465,13.659119,27.812256,4.676 951,299.99808,201.97194,15.67276,22.629807,4.669 951,137.73811,212.73436,19.772354,27.782425,4.668 951,242.67148,189.11658,18.385468,32.071655,4.612 951,317.04895,217.79393,16.069946,30.16922,4.574 951,-5.4727554,43.156055,17.214794,37.943417,4.558 951,-6.4551377,58.671295,18.26711,39.91301,4.537 951,585.6621,-104.35894,76.083374,241.46112,4.525 951,493.4806,227.82834,237.63385,515.05334,4.505 951,602.55774,-56.931824,53.696594,139.57317,4.499 951,298.82208,220.84692,17.721375,27.691925,4.466 951,107.80189,220.02505,18.789406,35.383972,4.453 951,250.35327,213.3531,20.39154,32.65573,4.43 951,463.71884,203.33505,50.97354,129.91849,4.426 951,338.29575,224.64723,22.380646,41.50212,4.422 951,445.04224,-13.005623,55.0459,116.07454,4.406 951,233.35443,211.83966,21.388397,32.62529,4.397 951,28.519657,64.56018,31.982517,69.55771,4.396 951,349.14313,170.71378,48.60318,99.546906,4.385 951,-6.632942,72.25452,19.234417,44.26568,4.381 951,434.6834,16.166164,34.923706,71.34129,4.379 951,16.943134,208.162,22.598774,43.064255,4.376 951,468.4227,2.3874245,30.133636,64.9716,4.361 951,57.39032,234.91193,34.385185,48.00177,4.36 951,501.729,86.164444,28.929138,86.9733,4.352 951,138.49893,115.15559,18.023453,30.169731,4.339 951,-9.464651,204.60782,39.495705,82.519806,4.334 951,339.97412,202.33394,16.166504,27.778702,4.313 951,396.1926,211.85461,30.783875,63.411438,4.302 951,413.1847,-9.959644,56.394928,115.075,4.29 951,-9.523462,-2.2892952,39.739525,93.75223,4.261 951,1.9448495,218.45752,41.59724,95.517395,4.257 951,363.57123,213.5035,31.312195,66.65172,4.245 952,361.5564,207.85693,22.105072,38.617325,23.994 952,377.66757,210.49042,23.810028,51.081757,8.223 952,-5.296622,-19.371525,18.413343,46.320435,8.073 952,-10.550281,-32.165356,29.156403,71.97017,7.688 952,122.7364,212.68642,16.661446,27.864014,7.485 952,316.22128,217.89409,15.449371,29.243484,7.453 952,309.08316,210.81552,14.956177,25.55899,6.84 952,2.699244,-19.076033,18.327097,44.697033,6.808 952,407.21115,221.2464,30.332825,68.72052,6.672 952,7.5238585,82.04991,26.984652,73.636734,6.487 952,292.2039,204.53308,15.472443,21.270294,6.21 952,-8.752657,465.33453,37.601162,91.62213,6.07 952,116.08089,214.27838,17.358414,27.394135,6.065 952,452.54605,3.7940674,31.830292,78.51897,6.036 952,332.2134,209.79083,16.373505,27.90001,6.021 952,308.64355,220.0974,16.067444,26.527588,5.944 952,-17.755949,-63.330963,56.22959,141.5692,5.903 952,613.3515,453.77344,39.16217,108.10785,5.862 952,626.2937,488.4004,21.100464,44.952026,5.846 952,259.1219,182.18576,17.062225,31.220139,5.802 952,-5.8397665,490.14847,18.032452,41.092316,5.784 952,365.24762,207.67218,29.566498,60.181488,5.772 952,226.10085,187.67168,19.158539,35.906204,5.731 952,301.44202,213.26541,14.272217,23.030823,5.628 952,560.5055,200.51413,34.64435,60.687653,5.596 952,-6.2164073,79.824104,18.40745,42.99742,5.589 952,300.03842,180.5872,15.647888,29.916428,5.585 952,577.2388,204.56552,21.724121,36.46408,5.466 952,255.45866,5.707821,38.578537,69.46631,5.464 952,-0.9916651,66.675705,28.23507,73.00557,5.425 952,26.968746,212.58817,21.359127,35.049515,5.403 952,627.36523,-17.493555,17.302795,47.318554,5.299 952,490.60974,-182.61534,235.14343,430.08307,5.286 952,170.36646,204.56573,20.90741,37.854004,5.208 952,-9.813816,16.410099,28.184391,71.001434,5.206 952,269.065,183.78441,14.674255,28.948517,5.191 952,-72.452255,265.83453,200.36081,461.68146,5.17 952,324.3629,215.30954,17.376648,34.172653,5.169 952,1.578694,229.42004,19.061615,32.626953,5.148 952,508.56616,22.270725,28.340637,90.6373,5.144 952,517.64825,11.896263,28.803894,96.316925,5.065 952,316.26038,205.82188,15.397888,25.828674,5.057 952,523.69604,210.4491,52.97113,118.75757,4.98 952,-5.2241716,20.545162,18.568382,48.234333,4.972 952,221.09387,182.57915,16.696121,30.24849,4.936 952,284.4401,185.37419,14.087769,25.524643,4.933 952,611.22363,-48.719437,41.9552,104.44565,4.92 952,-21.426363,403.76038,78.72106,174.30615,4.905 952,583.3286,410.82562,71.52905,177.4726,4.9 952,-1.6853833,-4.995901,26.834814,69.60244,4.827 952,163.8966,137.44296,33.258102,74.046036,4.813 952,9.994051,-9.2777405,59.862442,111.9623,4.769 952,536.624,310.3482,143.27148,341.7448,4.768 952,293.03836,183.29077,14.668945,28.696503,4.727 952,257.93567,212.58531,21.161621,32.794937,4.721 952,67.8358,217.8125,32.65751,47.970215,4.714 952,618.6438,490.80173,20.408875,42.460236,4.694 952,586.21576,204.93106,19.629272,35.61859,4.693 952,308.36548,202.46245,15.970306,24.083542,4.654 952,226.25836,-4.2161865,32.42816,63.831486,4.639 952,306.92767,177.36324,18.332306,32.971054,4.628 952,281.17456,0.1915741,34.042084,64.41313,4.623 952,233.16705,184.47038,19.182922,37.86206,4.592 952,585.2328,-102.964745,76.08972,237.69534,4.591 952,284.28708,208.71478,16.070435,22.310196,4.588 952,106.699745,215.31715,17.352264,26.503937,4.57 952,545.559,21.009686,32.5484,74.29382,4.563 952,189.89737,-35.06585,29.601303,72.44459,4.561 952,204.02245,-33.082344,30.928436,73.68624,4.557 952,-5.450798,54.141556,17.66943,45.385452,4.529 952,619.33563,-4.4222107,18.933228,42.37772,4.493 952,250.18999,179.79665,19.309525,33.6839,4.469 952,567.7607,204.27025,23.327026,40.035126,4.465 952,2.5826144,224.40228,40.610268,91.25,4.448 952,88.67797,226.58698,23.195,32.462402,4.445 952,495.72626,22.634357,27.078857,85.9249,4.434 952,547.97095,186.65369,31.68628,68.413025,4.417 952,493.5814,228.03412,237.49783,514.2422,4.415 952,-11.523159,57.398758,28.88442,71.64743,4.415 952,210.38397,-14.635546,34.30626,63.931137,4.413 952,-37.244762,-126.44168,117.7455,273.31122,4.408 952,-5.0094275,-2.0219917,18.380535,47.38663,4.375 952,98.56736,218.25421,19.055183,31.291595,4.374 952,9.918601,-19.665699,18.376217,44.111187,4.367 952,291.03604,218.62454,17.571411,26.876175,4.333 952,332.84283,228.77737,18.326538,33.231415,4.332 953,370.75385,204.18407,22.64212,43.189194,64.841 953,32.569004,215.61685,22.585384,43.55005,12.042 953,325.8322,204.61588,14.995789,31.381897,9.38 953,331.80862,204.9693,14.651062,33.597366,8.9 953,-4.7016993,-16.699314,16.305672,41.377937,8.182 953,250.68565,213.66774,19.079117,33.00621,6.675 953,242.82204,212.96649,19.085495,32.491516,6.508 953,-18.4944,-63.83679,57.038364,143.08066,6.428 953,-10.485864,-31.451982,29.164356,70.79104,6.41 953,450.77728,214.07982,42.33264,88.23274,6.404 953,309.46228,208.12964,13.192932,26.201126,6.365 953,3.4916787,73.8336,17.972174,40.325073,6.324 953,-6.0303507,489.31622,18.356312,42.33661,6.302 953,283.43738,219.13972,18.01004,26.201035,6.292 953,3.6192214,-14.203969,15.745027,38.7986,5.986 953,-8.7099695,464.85898,37.580536,92.61771,5.95 953,612.93677,454.79712,40.154053,106.98901,5.827 953,309.7396,219.71715,15.175415,26.531631,5.779 953,291.24112,220.1035,16.955902,26.195541,5.756 953,-5.646001,233.2476,18.239304,35.608658,5.755 953,626.5952,487.58337,20.814209,45.85492,5.665 953,627.1778,-19.000416,17.60199,47.860855,5.622 953,622.5325,-34.05252,26.912476,77.42818,5.589 953,2.7114832,232.83376,19.052055,33.76744,5.588 953,317.20178,208.6731,12.993469,27.034424,5.519 953,301.28772,209.52827,14.14209,24.434906,5.411 953,489.89474,-181.08028,235.40628,429.59344,5.398 953,300.49136,221.92497,16.439972,24.84761,5.356 953,292.2693,203.00087,16.330627,22.657043,5.339 953,18.170013,217.92076,40.51187,63.758926,5.293 953,-73.048004,265.47046,201.22995,462.719,5.241 953,266.39587,210.14658,18.826172,29.339996,5.078 953,259.0009,209.95334,18.881256,29.345398,5.063 953,18.25334,220.06532,20.280706,39.372818,5.031 953,453.62546,97.87497,29.912628,81.16171,5.029 953,583.06775,412.4226,71.83838,175.8872,5.028 953,370.1016,205.34453,33.151398,73.39485,4.936 953,252.48923,174.59824,15.988068,30.208313,4.929 953,-21.357113,403.54114,78.73303,174.60907,4.915 953,-3.640574,207.15016,14.152025,36.613464,4.902 953,586.08264,-100.384094,74.81,233.8377,4.86 953,-17.026161,193.5094,51.276405,120.975586,4.855 953,39.978745,215.34834,20.68217,34.24341,4.851 953,536.5307,310.58038,143.41077,341.719,4.774 953,33.395153,56.709316,34.77808,61.276936,4.765 953,6.0454106,55.16748,28.91893,62.70833,4.74 953,49.258614,214.2991,20.047844,31.90561,4.719 953,284.94846,183.03116,16.191254,26.590805,4.674 953,235.32443,187.97981,19.151306,31.551254,4.664 953,251.47275,191.30174,16.767181,26.435684,4.636 953,154.47101,131.2778,34.92462,71.62633,4.599 953,235.27621,213.88731,18.593689,30.463226,4.571 953,276.08768,184.00589,14.418274,24.072311,4.549 953,602.81305,-57.33325,53.533875,140.5542,4.537 953,42.44506,-17.849823,18.241512,40.2147,4.475 953,493.46948,227.37228,237.70026,514.9614,4.469 953,-4.6127667,60.36731,16.447628,38.216354,4.468 953,284.1321,208.85611,16.66861,24.520676,4.464 953,368.74237,241.87534,38.507538,61.932617,4.46 953,382.60205,205.13254,21.115417,36.019226,4.454 953,516.15576,-12.985048,32.114685,62.379417,4.42 953,11.311701,224.79033,18.850637,33.942,4.403 953,66.36752,62.29078,34.96778,61.03605,4.39 953,-4.260193,45.059692,15.679469,37.68213,4.328 953,-4.277553,3.3902874,16.31358,39.50496,4.317 953,167.21506,139.97151,23.249695,38.927017,4.248 953,-0.37255406,39.005627,25.110394,68.76846,4.237 953,146.41074,120.63858,34.999268,60.62979,4.226 953,50.448257,62.865707,33.06405,61.963806,4.223 953,462.79163,88.18048,26.733856,75.44269,4.21 953,159.39084,128.57231,24.450119,41.539017,4.209 953,275.63876,203.54718,16.250458,21.31755,4.2 953,564.59705,22.066914,29.962341,63.78909,4.182 953,-37.202003,-125.320206,118.25154,271.77356,4.156 953,50.564316,-17.102005,18.118378,40.179405,4.139 953,275.07224,217.27206,19.406494,28.113861,4.131 953,128.44891,120.89847,36.888702,74.31796,4.124 953,478.1853,81.05287,26.533783,69.31642,4.1 954,397.34207,208.45082,25.160309,47.63774,78.533 954,-4.952292,-16.529222,17.31443,42.86079,8.512 954,626.12695,487.0064,21.365662,46.11261,7.324 954,-10.264372,-31.636154,29.319649,71.87693,6.677 954,-6.4150705,489.68677,19.003082,42.415344,6.671 954,-18.540728,-62.12828,57.682434,140.8023,6.573 954,613.09155,452.73218,39.520447,109.715454,6.57 954,258.50085,214.4219,18.036682,29.042038,6.535 954,-1.2015557,214.95303,28.827633,72.47287,6.518 954,344.17172,194.69524,24.879974,61.1528,6.487 954,-11.966274,480.59335,29.858711,61.32144,6.474 954,251.57378,214.96538,18.28151,29.768448,6.366 954,4.565295,258.56342,30.291119,55.647797,6.049 954,291.52222,220.396,15.992004,23.713928,5.962 954,-8.6841345,465.80557,37.65217,90.88187,5.952 954,2.921164,-14.628847,17.144804,39.737064,5.94 954,1.3758385,216.49068,20.478828,45.189194,5.931 954,3.008895,41.47269,32.3571,67.21846,5.917 954,284.65436,220.36775,15.719421,23.920197,5.863 954,332.77716,200.1204,17.869324,40.31407,5.762 954,-5.502603,216.39926,18.899527,44.718994,5.646 954,290.58844,199.98311,18.160309,26.7061,5.601 954,389.08688,196.68,40.059357,68.01178,5.576 954,623.07916,-33.828274,26.538269,77.07975,5.447 954,338.5598,201.5132,19.491394,46.552597,5.243 954,-5.7183676,39.753666,18.904934,42.829296,5.181 954,-1.5568793,25.093967,28.816206,68.81647,5.176 954,-73.19768,265.083,201.94205,463.2517,5.165 954,627.2739,-17.635948,17.161865,46.577454,5.12 954,309.70706,205.77388,14.382477,26.624771,5.006 954,585.56757,-101.610886,75.32001,238.00807,5.002 954,240.06116,186.49068,22.500305,35.191254,4.958 954,618.45044,488.5537,21.026184,43.36731,4.957 954,137.59769,127.85042,35.445282,63.84807,4.935 954,583.0891,410.60092,71.680664,177.38376,4.862 954,28.413692,-7.3861923,57.457813,111.20585,4.854 954,377.94586,-20.71745,19.752502,42.459183,4.832 954,490.50574,-180.83383,234.367,426.97095,4.798 954,-21.317295,403.33667,78.5078,174.37549,4.794 954,233.75063,207.37526,17.88031,27.545685,4.792 954,536.4959,310.68723,143.3648,341.78775,4.769 954,-9.923634,38.07934,28.83929,70.88765,4.72 954,587.40027,-16.19015,32.20294,59.306183,4.67 954,10.108414,-25.102806,59.312576,119.05017,4.653 954,106.78421,112.26532,34.732178,60.59726,4.645 954,300.6152,221.7436,16.204315,23.469025,4.635 954,361.8303,160.76149,31.915588,74.70729,4.617 954,602.47687,-56.24832,53.245544,142.05797,4.586 954,228.15904,174.73274,31.140152,59.285904,4.57 954,243.51001,214.50566,18.201477,28.540955,4.552 954,1.478436,227.19583,40.769825,77.81134,4.546 954,122.01575,114.06259,34.30687,56.33905,4.535 954,-10.708671,210.79205,29.424854,66.82559,4.481 954,226.01202,207.86914,20.079056,31.76596,4.478 954,316.3541,204.05946,14.899689,29.657196,4.466 954,143.95282,123.5951,23.931885,34.66224,4.462 954,373.3774,-34.309242,28.978302,66.359215,4.458 954,-1.2814367,-15.046007,27.202915,64.712585,4.448 954,493.4566,227.42264,237.8114,515.5242,4.44 954,388.36847,-34.124065,30.645355,63.56718,4.433 954,316.1692,224.8732,16.576324,29.32129,4.39 954,-4.534021,191.10999,16.248587,38.33934,4.39 954,36.458305,-19.42598,32.47551,66.292854,4.369 954,10.36952,-16.542074,17.789413,40.052567,4.337 954,-5.158727,161.10432,17.479637,41.647415,4.318 954,-6.2404037,235.05234,19.36189,49.06305,4.295 954,59.212967,73.93437,31.799957,60.20761,4.273 954,388.9575,202.23593,20.950653,41.763702,4.265 954,-37.20246,-126.20803,118.19819,272.07047,4.256 954,-4.8417835,1.3513336,17.83245,43.77487,4.246 954,199.893,218.3877,23.234924,31.94783,4.233 954,-14.672914,193.7096,50.89663,125.072754,4.167 954,406.67224,204.12733,21.55069,36.416946,4.157 954,619.7942,-18.163857,17.260132,43.53629,4.155 954,444.69794,-33.06625,29.66571,68.953514,4.15 954,-4.965981,66.90138,18.537796,47.694504,4.136 954,398.90027,290.73505,26.2471,44.551086,4.129 954,26.278688,-17.464478,17.983694,40.688198,4.116 954,-10.454965,9.229565,29.061436,68.720474,4.111 955,450.37045,212.2309,25.252777,59.92032,74.283 955,459.16568,209.3358,27.71054,67.87959,24.628 955,346.71722,199.72708,20.624329,48.902237,10.188 955,266.86914,212.51947,18.913666,33.676132,8.574 955,-5.5278974,-17.108871,18.008814,42.315147,8.423 955,273.44913,207.7621,19.991364,31.32724,7.08 955,282.92245,208.68523,18.325287,29.4693,7.035 955,621.9889,477.09155,29.159912,66.82037,6.979 955,-6.1168904,489.87497,18.678684,42.595673,6.901 955,-18.615253,-60.43259,57.84826,137.3501,6.628 955,291.68423,207.34183,17.101746,26.864563,6.568 955,82.83411,204.43996,21.13398,40.37239,6.318 955,-11.106461,-30.783194,29.615221,70.14244,6.215 955,-8.805852,465.21506,37.63787,91.05533,6.057 955,299.20224,207.9243,16.430756,23.681152,5.95 955,464.35248,191.75166,34.56949,81.21239,5.842 955,39.50891,203.57796,23.145847,41.969955,5.801 955,3.4812164,-14.772617,16.96204,38.63748,5.784 955,226.04187,202.62689,21.206085,33.17543,5.729 955,330.24594,200.18195,19.362244,43.83722,5.531 955,622.3924,-34.083263,27.10199,76.49205,5.493 955,396.53833,213.94789,30.191406,68.41878,5.489 955,323.40634,202.27621,17.195465,33.791275,5.261 955,333.4891,202.6611,29.236237,63.651398,5.242 955,317.27872,203.95251,15.946503,29.309204,5.201 955,627.1161,-17.661474,17.342285,46.284184,5.197 955,473.6762,208.83421,33.46576,73.694595,5.17 955,-5.764576,102.33008,18.928326,43.479156,5.154 955,460.89453,223.31125,33.07361,85.48312,5.152 955,482.55893,222.34297,38.631744,95.90996,5.138 955,-5.5521226,2.718422,18.070375,41.33461,5.112 955,233.72984,213.48311,19.58693,30.79512,5.112 955,-72.7773,266.54443,200.96013,460.98083,5.109 955,258.88446,207.0247,22.028961,33.177933,5.086 955,352.82303,207.21718,21.10382,49.652573,5.085 955,308.33807,207.21944,16.049713,25.508041,5.063 955,160.00223,218.15237,24.194534,40.99298,5.061 955,603.0314,430.10764,57.103455,144.39822,5.057 955,369.45056,204.05922,22.45868,52.97737,5.027 955,536.4192,310.5054,143.58398,341.801,4.984 955,618.145,489.2156,21.692383,43.094513,4.97 955,299.8791,218.0632,16.100372,26.764542,4.958 955,-17.657726,437.40814,55.296036,138.12292,4.948 955,340.37506,201.14557,19.724792,40.11737,4.928 955,127.95969,227.962,23.036118,33.579773,4.92 955,10.758802,-28.007477,58.058197,119.699875,4.92 955,250.4078,212.19278,21.266571,34.873093,4.911 955,445.96805,205.16655,54.24582,135.2994,4.896 955,602.78754,-56.97055,53.276855,140.07716,4.84 955,585.7697,-100.697334,75.44281,232.16855,4.764 955,-39.950047,368.58618,110.048615,274.35413,4.728 955,275.45352,221.45383,18.186218,33.378235,4.666 955,10.47209,-15.587524,17.298506,38.360783,4.659 955,242.0177,213.20485,20.928223,33.139175,4.657 955,458.58533,115.41154,32.065308,83.60766,4.648 955,319.50214,212.03752,30.5719,61.945602,4.613 955,491.05746,-180.31259,234.6088,425.12878,4.605 955,-6.4770164,31.601513,19.799133,44.92777,4.58 955,538.83856,1.026001,18.604065,34.467133,4.56 955,0.49735546,-6.791363,49.974133,118.44853,4.535 955,144.78738,220.90627,21.836395,35.777084,4.531 955,493.65924,227.89365,237.93384,513.4197,4.525 955,259.88757,207.25665,29.828857,57.363678,4.5 955,218.70688,213.47498,19.13208,29.712448,4.481 955,-1.4105821,82.492676,27.51835,67.45474,4.479 955,438.83813,212.4511,39.39261,94.96724,4.468 956,557.04584,201.12747,38.65448,100.13742,90.821 956,602.02936,193.55226,34.31189,133.62462,11.808 956,-5.7915664,-19.396175,18.55674,45.285187,9.22 956,-10.69396,-31.23175,29.019415,69.510284,7.973 956,323.8846,198.859,17.016083,31.084244,7.466 956,329.5955,200.29353,18.356812,38.01895,6.573 956,-18.470306,-61.60989,57.780724,137.2734,6.503 956,577.2731,199.46884,37.096863,110.61417,6.502 956,622.67706,-33.521782,26.834534,75.662735,6.367 956,627.1697,-18.166164,17.52649,46.515957,6.314 956,543.87396,208.82092,33.241028,73.88608,6.213 956,282.971,206.45557,17.0625,26.602509,6.176 956,274.7599,208.03195,18.63562,29.704071,6.172 956,316.30103,208.85513,17.601837,31.635956,6.09 956,-6.15937,489.72916,18.437746,41.140594,5.991 956,266.5629,207.92793,19.046967,29.698425,5.96 956,533.0017,-182.53516,149.57184,426.7186,5.879 956,-11.580116,478.6378,29.52568,62.732574,5.857 956,-1.3499033,-21.878906,28.977676,67.10683,5.834 956,300.45364,206.87361,15.423096,24.405975,5.801 956,2.6170354,-19.142979,19.173855,43.870003,5.793 956,114.711,202.34021,19.173584,34.790924,5.661 956,613.0343,453.98035,39.4812,108.47064,5.648 956,291.20654,206.57703,16.645813,25.99031,5.632 956,360.9854,200.09903,22.294281,50.262695,5.583 956,591.2464,201.68875,56.566223,200.84244,5.411 956,251.71951,188.19626,17.707916,30.710556,5.406 956,299.7795,218.04984,17.15686,28.859528,5.391 956,621.9468,479.02405,28.880249,65.032776,5.352 956,536.4912,308.6717,143.7279,344.18158,5.17 956,564.64496,203.26039,26.55719,52.78398,5.167 956,317.07373,201.44614,15.176025,25.868591,5.15 956,-72.74988,265.9485,200.75986,461.48645,5.101 956,268.1149,202.11356,15.321899,22.999832,5.08 956,309.19165,204.36273,15.620972,26.364227,5.065 956,338.79407,199.34753,19.846405,41.206726,5.061 956,619.1427,-17.869034,17.528809,43.1231,5.014 956,8.824223,-26.763885,59.117947,118.82796,5.004 956,587.64856,201.81956,32.03412,74.945724,4.971 956,491.90262,66.33925,33.62735,65.37337,4.969 956,-6.2805166,21.509464,19.439306,46.44572,4.936 956,260.4959,199.41974,15.984589,24.702698,4.915 956,-21.377968,403.4217,78.859344,174.90668,4.908 956,2.5192297,9.299541,32.581356,69.410614,4.868 956,232.511,174.02048,22.485321,44.618576,4.809 956,582.9058,411.8206,71.74292,176.82755,4.803 956,431.86743,212.61218,42.22989,85.85181,4.8 956,291.85367,216.83073,17.455658,28.588043,4.78 956,122.3705,202.98381,18.918472,35.04225,4.759 956,357.32147,168.27277,28.972961,79.37378,4.749 956,258.87756,206.21832,19.509735,30.701202,4.748 956,493.78677,228.55994,238.0267,514.1103,4.733 956,301.5699,218.2868,31.652008,57.973785,4.73 956,586.0723,-101.44815,73.82056,239.28639,4.727 956,308.26367,216.08096,17.920776,31.415085,4.701 956,347.2478,200.22604,20.0737,41.99922,4.699 956,330.94525,226.56573,19.388458,42.356537,4.686 956,217.90862,207.29205,20.438019,28.916443,4.665 956,557.4199,210.7669,53.32251,140.76654,4.639 956,9.311861,-21.160772,20.021727,44.684895,4.59 956,602.5596,-56.5783,53.808105,142.28719,4.59 956,-36.57513,-127.17688,117.67955,272.57886,4.562 956,574.50165,241.06056,23.638245,56.942978,4.54 956,374.10883,114.66664,29.687256,95.317856,4.523 957,335.6621,195.49207,23.234253,47.86992,9.569 957,368.08954,203.58665,22.323395,48.72438,6.305 957,613.28235,453.12598,39.54547,108.86542,6.263 957,217.32118,206.41779,20.34932,30.558075,6.251 957,309.1783,216.45789,32.1279,60.914886,6.213 957,-6.114597,489.45834,18.438833,41.295563,5.906 957,-11.591789,478.32968,29.668022,62.720917,5.838 957,-17.922329,-62.199017,56.28208,142.21918,5.812 957,359.24588,199.39687,27.53122,68.20433,5.81 957,405.65033,156.35051,29.643707,86.30635,5.722 957,340.6596,188.31715,27.619263,62.92607,5.722 957,622.7175,-34.383896,26.871094,74.97253,5.664 957,330.1337,207.22221,19.30661,42.139236,5.624 957,-5.9120073,-18.157867,18.24593,44.802517,5.591 957,490.9699,-181.65839,234.1109,432.07178,5.587 957,626.4431,487.23022,21.111938,46.07367,5.523 957,-10.939197,-32.336575,29.400501,73.77826,5.479 957,618.1796,488.15277,21.294312,43.77893,5.395 957,353.17957,197.08012,22.47705,53.39882,5.35 957,123.22748,115.8616,34.1093,58.735107,5.347 957,74.67536,91.79885,32.6735,59.85923,5.333 957,627.0646,-19.34087,17.83905,46.921127,5.266 957,242.51884,201.40332,18.492569,29.708328,5.171 957,-72.89552,266.00238,200.85767,460.75677,5.074 957,280.4172,-18.626308,21.392517,43.397366,5.058 957,347.00574,233.02579,20.366058,43.456238,5.036 957,403.8873,204.13939,32.21933,73.89583,4.979 957,305.5727,221.80544,21.700806,37.402084,4.978 957,586.093,-99.30696,74.557556,232.44307,4.97 957,262.4506,-34.95108,29.942719,74.50722,4.968 957,-21.525068,403.08636,78.832275,174.8891,4.941 957,583.1038,411.39798,71.74872,176.62595,4.907 957,315.65417,222.6502,20.876099,36.6091,4.881 957,536.4787,310.2882,143.09735,342.44067,4.844 957,169.63197,216.01263,19.536285,25.616318,4.841 957,478.87192,81.27441,27.263397,109.03858,4.822 957,209.8662,207.45746,20.844437,31.53714,4.815 957,603.0495,-57.224545,53.115906,136.19585,4.8 957,251.43936,200.9171,17.624786,27.333725,4.799 957,330.38113,225.75296,20.170258,41.454742,4.798 957,297.3039,221.97034,21.423798,36.752563,4.79 957,282.8841,206.04213,18.833649,28.833435,4.702 957,323.8703,221.91849,19.995087,38.01883,4.672 957,211.16829,196.9,30.743729,45.26021,4.659 957,524.26306,-11.2398205,14.5477295,36.247414,4.639 957,10.699995,-4.997925,59.48604,111.84835,4.621 957,89.837654,99.86815,32.60157,58.89444,4.585 957,135.57596,123.651596,23.089844,38.44754,4.549 957,249.13443,213.20294,22.078644,33.922974,4.537 957,-5.0962505,103.83677,19.189552,44.634087,4.498 957,493.34213,228.00024,238.17276,515.0927,4.465 957,490.62476,31.69093,30.012207,95.99867,4.441 957,201.77313,205.6779,20.234543,31.22145,4.424 957,68.20037,3.2590675,31.912285,68.357574,4.411 957,594.0313,-46.24145,44.869812,96.139496,4.409 957,-37.039787,-126.615585,118.50421,273.5792,4.408 957,481.66736,160.472,31.074036,108.50127,4.358 957,459.65884,-31.25615,56.191498,129.40186,4.349 957,338.63275,233.60005,20.278503,42.312088,4.348 957,384.14243,202.61888,21.334381,39.8676,4.327 957,59.61946,-7.831333,58.247345,111.76364,4.325 957,317.29987,229.70094,30.71283,63.96547,4.304 957,2.9447227,227.47803,19.03985,34.974182,4.286 957,42.625374,75.52996,32.68844,55.68473,4.273 957,324.17767,203.28448,39.169037,69.08066,4.26 957,148.49454,195.91364,30.910828,45.411133,4.207 957,249.71033,167.35379,21.385681,36.93924,4.196 957,477.23465,-15.44054,53.107635,133.0339,4.189 957,115.104294,221.85216,43.119415,94.670395,4.188 957,291.12045,204.91562,40.654602,69.36838,4.175 957,539.97595,-10.613363,15.213989,34.37914,4.158 957,90.245285,197.98288,19.972992,39.777527,4.158 957,83.02377,107.36095,34.32981,80.07568,4.155 957,341.8173,209.28885,29.63031,64.32425,4.15 957,283.7574,-34.239548,32.835754,73.06649,4.147 957,186.89575,203.3553,20.011353,32.635223,4.131 957,266.41302,174.02129,17.849396,29.967926,4.123 957,288.76257,-18.001446,21.450348,42.94342,4.11 957,3.0224955,-17.31142,17.516422,42.757713,4.108 957,243.98743,167.16484,30.052643,60.117935,4.102 958,386.10165,200.21039,28.040833,63.128662,27.534 958,412.95026,195.02917,29.141663,71.14087,23.257 958,346.1661,201.54697,19.98346,40.200226,19.232 958,416.0715,212.5693,32.2872,79.490204,8.576 958,193.33542,194.88145,19.816574,32.650894,7.643 958,179.53726,193.41292,19.88623,36.62111,7.541 958,209.63675,203.06233,20.375763,31.404526,7.415 958,332.5667,207.95502,15.83606,32.048065,7.332 958,-5.128564,-15.998947,17.320587,41.402187,7.126 958,-5.3785987,77.533516,16.995995,34.644142,6.78 958,-5.2353535,139.41226,17.12385,38.16385,6.514 958,-5.9033785,192.52644,17.996222,43.288834,6.485 958,-5.837532,92.08355,17.563686,36.673866,6.353 958,2.7751799,79.718735,17.258522,30.578072,6.287 958,612.90234,453.01898,39.71582,109.39227,5.95 958,324.74396,208.7959,14.436188,26.215271,5.944 958,339.6251,207.35669,19.005157,38.252243,5.933 958,399.61978,197.91252,22.833038,50.130234,5.91 958,-18.326876,-62.432316,56.829422,142.2796,5.891 958,627.2476,-18.027761,17.083801,47.502075,5.856 958,622.91077,-33.476913,26.446167,77.445335,5.847 958,-5.111842,123.2535,16.771786,39.034935,5.844 958,529.4724,193.4101,54.838257,154.48169,5.832 958,367.7,202.31458,21.720276,47.84546,5.733 958,-5.3887744,155.62535,17.637453,39.150604,5.732 958,-10.843828,-32.543953,30.002169,73.70142,5.723 958,-5.983844,489.01727,18.74871,42.319214,5.63 958,540.0638,160.3097,30.716125,101.15253,5.531 958,3.4600246,-14.151685,16.111914,39.166027,5.526 958,-9.090443,464.86795,37.63681,92.87863,5.487 958,626.5236,487.58096,20.896545,45.734467,5.444 958,31.347183,181.40018,29.442924,61.764008,5.404 958,3.1665921,221.93967,41.62611,101.96948,5.367 958,-73.45821,264.2248,202.16971,464.46906,5.307 958,10.802188,-4.1045113,60.39339,106.27409,5.284 958,59.438038,-3.858221,32.63815,66.43635,5.277 958,489.98114,-181.33054,235.81561,427.52936,5.235 958,451.40564,113.295334,32.83252,69.339264,5.233 958,268.48413,201.80635,29.954224,48.066864,5.231 958,564.9099,122.52086,30.284851,78.40367,5.18 958,100.03297,-22.108809,33.558052,65.85802,5.165 958,432.67798,206.98264,22.659302,44.586746,5.147 958,290.23416,204.76636,19.520355,30.59793,5.137 958,203.20013,200.42421,19.080276,33.187317,5.137 958,107.82296,9.98634,33.010414,66.115616,5.128 958,-5.5120306,172.3964,17.455791,40.672256,5.122 958,1.5467721,200.86078,19.433807,43.213745,5.095 958,299.28555,207.53838,17.500275,26.540024,5.074 958,185.7529,199.7111,18.994202,34.005676,5.026 958,51.565323,-19.835442,33.376328,66.26485,5.021 958,33.61073,74.357254,32.844402,66.477615,4.99 958,602.369,-56.537163,53.71405,140.68271,4.983 958,582.9568,412.27524,71.79474,176.13345,4.925 958,2.90489,150.05634,17.612196,34.463287,4.864 958,2.5777369,62.5417,16.96143,33.09795,4.861 958,59.26096,-8.856739,57.419567,107.65645,4.844 958,536.63007,309.73468,143.06683,343.2154,4.835 958,16.157763,213.8494,45.09453,84.485596,4.805 958,588.2769,-1.3230171,17.012207,31.354443,4.801 958,493.78473,-3.3264618,29.54132,70.542274,4.801 958,325.49548,215.11229,16.877106,32.38658,4.782 958,540.3234,114.62569,29.698608,82.82216,4.773 958,-40.61772,361.84152,111.82081,279.1055,4.759 958,43.770973,255.61685,31.899406,57.97705,4.754 958,349.925,193.43503,27.59436,53.314285,4.663 959,363.12805,197.96677,20.92218,46.50206,17.201 959,397.24655,198.6844,27.293823,64.53487,16.999 959,418.58798,204.60663,17.283844,39.928314,12.743 959,375.8514,195.07748,21.269226,52.64862,11.264 959,442.52106,203.27469,37.37622,81.77774,10.098 959,-5.1766963,-17.135197,17.498516,41.91701,9.616 959,411.97086,202.09164,17.546112,44.610825,8.482 959,339.4668,207.07,15.337097,28.74965,8.342 959,177.17188,222.44511,35.458054,63.70903,7.84 959,-18.636074,-62.82996,57.647995,138.15501,7.344 959,281.38058,204.635,21.435242,28.688248,6.999 959,406.5015,178.33752,27.871063,69.92073,6.901 959,139.11263,205.7952,31.923325,64.69049,6.87 959,156.25261,210.76208,32.984665,61.211548,6.692 959,136.1977,210.30981,23.944519,43.98703,6.643 959,-5.998755,489.03632,18.190468,42.06427,6.449 959,3.420157,-14.851654,16.603098,38.219803,6.285 959,43.454453,-18.319817,32.191902,66.28772,6.078 959,-8.831447,465.06195,37.58923,91.734314,5.982 959,365.24936,180.39455,28.063995,66.56557,5.932 959,622.3368,-34.46122,27.3349,75.91479,5.751 959,627.0742,-18.842546,17.926025,47.014717,5.699 959,490.56085,-183.30038,234.29443,431.92108,5.693 959,-11.010331,-30.681343,29.447662,68.728546,5.663 959,110.608376,213.3598,23.223335,41.890686,5.65 959,4.8605847,153.5717,29.948162,64.58086,5.604 959,233.3028,205.84502,21.015732,30.877487,5.59 959,314.06256,214.26053,19.36914,31.770554,5.547 959,-5.2692757,156.12886,18.570078,41.022995,5.432 959,242.56331,200.66704,32.09633,57.742386,5.383 959,11.625361,-9.730202,59.26109,111.12424,5.353 959,333.45312,216.6278,16.67102,30.728882,5.279 959,58.966427,-18.93851,33.22942,63.304802,5.222 959,613.3715,453.4765,38.956116,108.6087,5.216 959,-4.594851,171.90218,17.876299,40.857727,5.214 959,626.46674,487.16202,20.817749,45.335785,5.19 959,-72.64319,264.88202,201.03714,463.21844,5.188 959,129.68451,203.21136,22.490631,40.91107,5.182 959,299.3292,205.32367,18.029999,29.282318,5.171 959,333.91266,209.11946,13.870178,25.591095,5.165 959,532.15125,4.4076576,33.27716,84.36995,5.129 959,151.6116,211.41513,24.503693,43.904892,5.107 959,240.42436,204.31285,22.063095,33.263443,5.098 959,536.7786,309.11496,142.9837,343.74442,5.048 959,187.28621,207.82332,15.869904,24.575272,5.025 959,248.0355,200.75215,22.060043,33.167587,4.989 959,15.998888,-37.912148,48.110886,89.03036,4.979 959,558.561,173.83173,30.442139,85.2392,4.97 959,397.79907,-34.096172,28.993835,75.9451,4.97 959,509.64972,8.765671,33.768616,71.212296,4.88 959,-21.613735,402.70844,79.01831,174.99152,4.872 959,340.07907,215.57918,16.829926,32.924393,4.849 959,217.98204,215.39294,19.420547,28.98233,4.848 959,50.988163,-3.9297028,33.51811,67.151405,4.793 959,424.99286,205.23245,18.170319,40.37149,4.781 959,-6.4270687,43.094597,18.395775,38.005936,4.778 959,583.0354,411.28986,71.47485,176.78925,4.772 959,357.32037,203.5846,19.066895,38.99385,4.754 959,-10.282948,152.04117,29.914303,64.843124,4.708 959,43.284283,-12.685226,58.613758,113.23348,4.685 959,585.66833,-98.9875,74.44672,233.15683,4.68 959,289.3661,205.05362,21.337677,30.458984,4.663 959,258.79822,206.15622,33.766113,63.892242,4.66 959,93.17833,-20.88663,31.180504,65.101456,4.66 960,443.87476,211.75429,18.792816,46.89238,70.105 960,340.04553,215.07275,15.399994,26.457535,16.505 960,333.19485,215.85757,15.194122,26.199951,13.531 960,401.05008,203.95589,28.396393,70.41243,10.958 960,94.83196,217.79074,22.838951,39.66208,10.801 960,378.74942,183.21347,32.590546,77.52304,10.134 960,138.37804,203.49582,18.973038,37.283966,8.558 960,345.68073,213.899,16.416992,27.10965,8.358 960,288.80472,210.00185,21.040375,31.795456,8.34 960,370.8002,215.36801,20.57785,42.976166,7.623 960,-5.67222,-19.00622,18.682333,44.48563,7.514 960,324.92062,214.15407,15.727905,27.827133,7.273 960,298.57135,212.88554,33.385406,50.211502,6.872 960,-5.9164686,489.56793,18.297764,41.135742,6.846 960,-18.218164,-62.698486,57.540268,139.75362,6.785 960,273.85242,215.60912,22.439453,30.300858,6.694 960,-10.712075,-30.495897,29.69249,69.9665,6.652 960,283.51196,206.4536,31.56009,47.4937,6.336 960,-12.14538,53.914692,30.33843,67.22276,6.32 960,458.60236,217.48439,19.631134,49.307663,6.293 960,627.1602,-17.474365,17.281006,44.236565,6.287 960,622.39154,-33.511395,27.17688,72.53284,6.144 960,-6.227946,56.694492,19.225552,41.90449,6.075 960,-11.510199,477.41156,29.447657,64.30768,5.968 960,331.51312,228.10251,19.802734,33.53,5.963 960,103.21445,213.8472,20.196548,35.167877,5.914 960,-6.8020797,71.88374,20.777494,43.237923,5.779 960,2.4019809,-18.04687,18.831001,42.502483,5.772 960,613.2468,453.71567,38.980896,108.17435,5.609 960,0.644294,71.133804,34.565536,67.05568,5.55 960,10.749199,-5.3815994,59.061447,109.04822,5.508 960,425.09708,210.77826,18.63031,40.86139,5.502 960,48.42147,219.43927,23.11248,37.58377,5.455 960,312.71136,218.44408,23.064728,37.525787,5.417 960,322.29016,221.01851,20.510101,33.06212,5.327 960,-72.8347,265.38855,200.86055,462.6914,5.234 960,626.61487,488.0808,20.61383,45.452026,5.192 960,585.7462,-99.4622,75.18585,232.56088,5.154 960,315.30222,211.7335,17.606049,30.037354,5.131 960,339.5152,221.99104,18.279236,31.874466,5.049 960,298.38358,210.25552,17.438873,27.814697,5.032 960,266.77924,217.72028,20.993652,28.691772,5.02 960,284.01593,209.89505,17.931885,25.349976,5.019 960,133.77911,184.06058,29.576904,58.66452,4.986 960,619.3842,-16.635666,17.596985,39.458256,4.904 960,-21.293865,403.84073,78.68103,174.38089,4.898 960,603.03827,-55.32498,53.439636,136.52663,4.844 960,583.0512,411.62354,71.65552,176.50793,4.833 960,305.9235,211.16772,19.700531,31.394333,4.831 960,347.38144,201.33098,17.150696,30.07988,4.829 960,536.52594,310.44598,143.57019,342.43512,4.827 960,90.40773,226.1168,19.958084,33.436172,4.792 960,-6.9642105,-1.267498,20.806774,45.417744,4.79 960,-11.308603,9.036369,29.268057,68.57375,4.784 960,19.783987,24.96865,31.390299,68.7371,4.782 960,11.108917,-16.075142,33.33551,63.579716,4.774 960,516.7479,105.40546,32.539124,61.909515,4.715 960,-5.771056,170.82219,18.695908,40.517746,4.667 960,275.43607,209.70894,17.318512,23.875763,4.664 960,412.79327,208.69916,26.097717,57.611908,4.659 960,27.287453,-15.027718,31.639034,58.585037,4.612 960,-6.378963,36.788647,19.364424,45.569187,4.611 960,15.730875,-37.881554,47.973663,91.7366,4.602 960,42.94525,72.41791,33.647804,60.118103,4.589 960,440.03937,210.20857,34.656097,71.938095,4.562 960,99.448746,216.27725,29.71077,49.141174,4.555 960,364.19952,215.89383,19.114868,36.85373,4.53 961,0.39736986,216.18723,24.049463,51.20273,32.329 961,345.44736,211.83063,17.766205,31.378876,27.16 961,365.73135,225.20679,25.14325,51.66873,20.815 961,441.7802,216.674,18.675049,39.495346,18.589 961,332.98962,211.64255,16.312683,31.429596,14.6 961,385.6516,216.0337,22.028625,51.968582,14.401 961,91.15839,204.77156,21.305153,37.98143,13.366 961,511.44016,202.24487,30.690521,84.94678,12.998 961,509.40872,171.38068,47.669403,155.34778,12.277 961,449.8048,215.56947,19.384094,39.21527,10.462 961,415.87094,211.26797,26.759338,73.462616,9.323 961,291.71613,207.51247,31.948456,52.76616,8.995 961,324.1182,212.0427,16.759003,29.671204,8.089 961,280.3705,210.43153,23.820526,40.1064,8.0 961,456.96344,212.60976,19.118134,42.255966,7.735 961,-5.874978,-19.058857,18.697248,44.34547,7.431 961,339.7813,215.58693,19.63562,36.92746,7.267 961,297.4018,211.28735,20.619995,33.447556,7.088 961,274.54114,208.86455,21.40097,32.630325,6.414 961,-5.9541655,489.83853,18.344227,40.808014,6.364 961,315.398,206.96803,16.54602,28.478256,6.288 961,-10.929525,-30.718468,29.700586,70.10576,6.269 961,121.610756,212.04445,19.423195,29.491531,6.166 961,-18.34091,-62.18172,57.44484,140.10109,6.107 961,478.65262,195.22163,26.136139,61.48198,6.037 961,622.70764,-33.554825,26.599854,75.18863,5.939 961,203.84427,216.61638,31.84076,50.98143,5.915 961,415.063,176.70596,29.08966,86.312256,5.896 961,373.85876,217.56624,28.11914,58.372787,5.816 961,15.058443,217.25336,24.701532,47.876312,5.797 961,-11.60727,478.00214,29.547035,63.158264,5.795 961,612.9571,453.1322,39.66754,109.147095,5.766 961,321.9124,219.44026,20.81836,34.732605,5.747 961,-5.6566944,40.8114,18.766197,42.04992,5.707 961,491.3068,-183.87692,234.58603,430.61298,5.688 961,473.74542,204.58556,20.536377,47.147552,5.547 961,2.5566828,-18.385536,18.732574,42.66717,5.539 961,-10.813341,36.91613,28.602198,67.676315,5.522 961,-4.8265424,200.40071,18.702993,47.744995,5.49 961,-9.363404,220.59665,28.576843,62.958466,5.47 961,626.8345,-19.516422,18.15216,47.667027,5.454 961,2.6123166,215.35002,38.901546,72.9669,5.446 961,-73.554955,264.546,201.76462,463.20963,5.325 961,303.1555,227.61702,25.219269,41.400345,5.287 961,370.6208,216.01387,20.374146,38.16037,5.268 961,312.52295,219.94606,23.31015,36.6064,5.253 961,157.27194,224.78952,42.88997,53.013245,5.24 961,66.336296,214.0815,21.05407,37.001816,5.227 962,506.87384,212.76396,22.004211,50.155045,89.836 962,497.1103,213.4972,22.008362,48.89627,75.481 962,424.2433,218.99458,24.902985,65.34325,55.433 962,351.85364,208.76431,20.283142,41.706573,51.68 962,398.158,243.24925,28.553741,66.555405,41.276 962,339.26193,210.41138,20.035248,38.828186,20.297 962,74.73275,208.14487,21.003258,32.497513,17.159 962,445.69534,206.61342,27.611298,80.59837,16.533 962,539.4994,211.30695,19.872925,47.506714,11.65 962,491.7133,211.03683,19.843842,44.075424,9.589 962,32.646008,205.0188,23.185436,42.489014,8.89 962,419.8446,221.29184,21.325378,46.70511,8.557 962,407.0848,235.853,22.99408,52.08307,8.335 962,333.83112,210.31349,15.863831,31.769257,8.29 962,-5.3576064,-17.873587,17.741217,43.86937,7.805 962,312.0537,213.91446,21.856262,33.719208,7.006 962,552.81836,206.52719,21.598083,51.145477,6.924 962,305.72504,212.30397,20.02655,30.143753,6.916 962,387.7857,239.59009,42.27185,100.49243,6.807 962,404.91583,219.69865,35.987823,80.3044,6.433 962,-6.0709248,489.25677,18.475348,41.477478,6.376 962,430.5397,222.37714,27.799805,78.12854,6.245 962,575.9285,202.7431,48.821533,175.42273,6.219 962,324.49146,208.39389,15.309082,26.369263,6.209 962,315.21313,208.31282,16.096832,26.392624,6.139 962,344.6994,42.041473,21.478027,42.166977,6.121 962,-12.241111,-38.789,41.37747,97.700905,5.986 962,451.3056,184.37569,28.259583,75.8517,5.798 962,1.8802756,38.951607,19.346912,36.42272,5.747 962,-8.74646,464.54895,37.47438,93.34253,5.613 962,602.83606,-56.280483,53.18805,140.01297,5.609 962,4.4614124,-23.046303,30.796904,68.86124,5.584 962,575.4723,192.27682,30.975769,81.63437,5.578 963,370.41223,205.50371,20.422485,43.059967,59.572 963,584.28357,240.69028,20.507141,41.49225,29.7 963,620.4531,218.89893,19.774536,60.819366,28.093 963,8.561306,195.72485,25.32631,51.88571,24.504 963,531.401,220.70993,30.227234,81.0206,23.176 963,467.01428,227.63387,19.322205,28.916702,23.013 963,363.13348,208.82014,19.184174,42.694824,22.586 963,431.50226,221.60696,19.382172,32.431442,15.831 963,507.7729,220.88754,18.863342,36.51001,14.412 963,544.32825,232.2254,38.18213,80.821655,10.751 963,504.29764,274.47562,26.240326,45.74298,9.406 963,332.42673,197.01576,15.459686,30.63182,8.987 963,598.4327,85.31738,28.594788,80.598114,8.531 963,289.30862,205.91245,22.220795,36.701126,8.245 963,348.33575,202.30663,14.982483,32.654343,8.203 963,543.57086,220.99715,22.60382,48.526352,8.107 963,314.1597,205.46317,19.330444,34.259903,7.961 963,356.5277,204.58301,17.029694,37.48929,7.872 963,428.64212,202.01874,26.270935,55.47534,7.569 963,281.54718,206.36794,21.333984,33.525314,7.548 963,339.99786,199.41858,15.013763,30.091293,7.534 963,623.5569,-32.806255,26.129333,74.801346,7.353 963,177.46301,206.04912,20.403427,29.652664,7.017 963,627.5056,-17.512516,17.34967,46.803528,6.953 963,-5.213721,-17.467478,17.911695,45.227943,6.815 963,292.0597,201.34161,30.197968,51.619476,6.728 963,276.07294,201.90063,18.461395,30.554443,6.663 963,-6.0837793,489.81042,18.376328,41.36194,6.424 963,296.86917,204.06241,20.872406,32.328323,6.392 963,-10.89373,-33.092308,29.183813,74.690575,6.257 963,170.66994,215.30328,18.347626,25.017914,6.241 963,257.60492,212.8392,20.435486,33.23439,6.189 963,305.09875,205.7925,21.946075,35.644485,6.184 963,452.00482,209.2939,15.918884,32.10936,6.146 963,-17.51018,-62.9718,56.22856,144.1761,5.988 963,625.03107,237.63368,18.77716,49.470383,5.893 963,-11.535852,478.63995,29.506222,62.01837,5.892 963,115.528046,214.83102,17.024643,26.657059,5.804 963,266.0324,214.44334,19.758362,30.902527,5.765 963,250.23375,213.59636,20.149216,31.80516,5.734 963,529.75525,217.48792,22.899048,54.1474,5.589 964,392.62173,206.06694,22.457275,56.144943,91.814 964,388.5387,220.34523,21.715149,54.54515,28.028 964,618.8011,246.3411,19.014038,43.512268,21.11 964,554.60205,250.22318,23.138184,40.087524,15.629 964,500.51263,242.25464,20.148987,43.998535,13.909 964,274.283,220.93567,20.289917,33.498825,10.391 964,362.16193,209.15218,17.820831,38.656967,9.763 964,413.01483,239.03156,22.533997,41.138794,9.141 964,-5.290082,-16.877056,17.934416,42.43963,9.125 964,355.52484,211.00604,17.415283,37.815292,9.045 964,369.37506,208.4425,18.469513,38.820953,8.809 964,315.1803,219.84439,19.226257,37.0972,8.346 964,-10.991826,-31.203333,29.696777,70.49089,7.473 964,248.59525,215.89107,21.361298,33.623947,7.462 964,347.26587,209.33075,16.259216,34.65457,7.446 964,408.64764,213.85733,20.495148,43.56546,7.348 964,324.28876,227.9268,17.283081,33.743088,7.243 964,627.3874,-16.741959,16.641296,45.689182,7.042 964,378.49796,201.22797,19.802765,38.54448,6.917 964,-12.704774,477.77893,31.378933,62.66986,6.816 964,-18.976963,-61.76496,58.210217,137.22,6.724 964,496.66772,168.82864,21.143738,47.41243,6.527 964,151.2087,211.23523,23.696884,30.0363,6.432 964,-5.5753474,218.52496,17.930906,38.822845,6.39 964,275.93744,216.16888,32.25421,51.305054,6.315 964,-6.56433,488.82846,19.5159,42.392487,6.182 964,2.64214,-15.950351,18.09003,40.046623,6.159 964,296.098,207.72565,23.319092,44.38495,6.122 964,287.42664,212.92456,24.33957,41.704178,6.031 964,610.9706,-47.625423,41.072266,101.12987,5.937 964,625.61206,251.41185,19.21698,45.712692,5.904 964,267.43918,229.95152,19.503937,32.087173,5.891 964,9.369257,-22.915878,59.38617,113.442604,5.859 964,250.23827,228.9348,19.51976,33.05275,5.816 964,305.31714,207.6731,22.853394,42.554123,5.753 964,242.36502,221.0469,20.295898,31.244781,5.738 964,225.66367,213.22237,23.002838,33.235397,5.711 964,397.19955,215.42657,25.794556,59.75647,5.707 964,136.95148,209.25484,23.117218,31.150269,5.622 964,2.0085597,227.29758,20.788969,37.033203,5.527 964,386.72794,200.78561,20.567444,43.235916,5.445 964,621.5848,478.02823,29.55133,66.842926,5.378 964,233.48602,220.61829,20.155045,29.564606,5.294 964,27.401241,-3.5221443,56.201603,104.33923,5.207 964,-73.53444,264.4071,201.77254,463.08972,5.193 964,340.76096,211.48058,15.740265,31.558624,5.134 964,281.3744,226.16072,21.218292,35.051712,5.134 964,-17.695545,438.99796,55.432934,137.7844,5.128 964,19.248718,-16.753868,33.034187,66.49556,5.112 964,258.01447,221.03156,19.71576,31.612564,5.032 964,583.2256,411.76944,71.73462,176.36105,4.984 964,536.27216,311.33392,143.88153,339.3084,4.969 964,332.43176,228.45433,16.637512,34.788284,4.855 964,-39.995457,368.83295,110.326614,273.15118,4.803 964,402.2403,240.37732,21.701935,38.815796,4.771 964,416.5432,219.53967,20.595428,37.72751,4.755 965,436.72186,208.37106,26.655884,70.83963,96.039 965,361.66592,210.8276,19.416656,42.377518,18.91 965,363.2735,193.84935,28.343964,57.412292,9.038 965,107.89589,206.61006,19.99916,35.089127,9.033 965,128.63466,204.63812,22.446411,39.346222,8.876 965,398.51843,187.09409,27.804565,64.054474,8.792 965,0.8496213,210.27565,20.405132,42.862183,7.675 965,-5.854868,-18.150846,18.295155,45.13366,7.307 965,225.82863,213.27551,19.76242,26.774231,7.063 965,386.26236,197.90462,21.126526,47.48323,7.037 965,377.12573,202.13968,20.405212,42.60266,6.878 965,241.80666,215.08762,20.952835,29.934387,6.773 965,266.6117,216.79689,20.59613,30.844482,6.745 965,-10.787057,-30.376574,29.521118,72.25831,6.627 965,-11.770058,478.66495,29.693861,62.379852,6.365 965,-18.682993,-60.690132,58.147415,137.39314,6.338 965,315.13617,219.75816,17.480957,35.785873,6.236 965,-6.137898,489.65775,18.642942,41.40927,6.059 965,626.68713,488.4627,20.459473,45.210144,6.048 965,121.81907,204.2252,21.171684,35.791153,6.013 965,341.7619,211.62405,17.459167,35.710526,5.877 965,622.66223,-33.767235,26.62622,77.18071,5.845 965,9.779356,-6.6766624,57.69156,107.82321,5.79 965,250.9533,221.93681,17.43074,28.14006,5.79 965,247.78339,207.39552,22.081879,34.05922,5.691 965,627.2246,-17.017548,17.098633,46.584038,5.683 965,-6.730006,25.051508,18.841837,41.88186,5.667 965,233.57233,216.94052,20.477661,27.721329,5.584 965,354.76913,208.51968,19.815765,40.300568,5.527 965,612.78467,455.34235,39.58618,106.65155,5.486 965,2.8734446,-16.943417,17.90253,43.21016,5.396 965,602.5791,-56.75895,54.16028,136.4322,5.339 965,267.66736,232.79243,17.999817,30.127884,5.264 965,305.6345,228.1771,21.474396,39.95627,5.232 965,203.52654,211.2015,16.272781,23.064514,5.217 965,290.75046,209.72052,18.824036,33.76648,5.194 965,349.46652,191.49266,28.463806,62.386,5.154 965,-73.05523,265.6765,200.80087,462.03357,5.145 965,-21.438093,403.6844,79.00549,174.68097,5.073 965,309.4122,222.57602,29.77707,61.571014,5.044 965,298.71335,218.68385,18.976044,35.09343,5.008 965,583.2063,412.30795,71.762695,175.92117,4.978 965,3.7088716,201.3553,29.536573,55.71016,4.973 965,430.35983,198.13904,43.549103,97.62033,4.954 965,307.38916,214.7194,17.347473,34.443893,4.951 965,297.5146,231.84549,21.28894,36.50534,4.925 965,292.61804,218.24664,30.819763,58.139038,4.888 965,195.58519,209.56505,16.256485,24.361649,4.88 965,441.8524,238.384,30.717194,67.80777,4.854 965,-4.976621,90.31555,17.238472,38.690918,4.852 965,500.37665,156.56955,30.93274,76.7973,4.844 965,26.059332,208.29218,21.228285,39.953278,4.835 965,536.12933,311.319,144.14703,340.7916,4.833 965,186.06538,202.2667,19.32109,28.861115,4.827 965,137.00293,200.52153,20.699966,35.966034,4.822 965,-5.2821236,152.3135,18.231464,44.84984,4.822 965,259.98743,223.70663,18.58081,27.977585,4.705 965,226.85904,202.79814,17.34076,24.780441,4.704 965,74.61977,206.98688,17.958374,34.363983,4.683 965,299.52634,208.79895,16.331024,28.512756,4.673 965,211.9645,202.22682,15.842819,22.678253,4.656 965,138.05365,188.15875,19.95987,34.33574,4.656 965,3.282019,-18.443624,31.813143,67.60701,4.626 965,-36.900784,-127.83242,116.69815,277.13327,4.621 965,348.02594,212.64392,16.267395,39.236176,4.599 966,550.46686,198.2816,46.019897,114.86049,92.401 966,394.73578,214.20006,20.778564,55.65886,22.721 966,386.32816,211.64328,19.518982,41.74611,9.66 966,412.6906,181.80844,29.45221,69.96994,9.36 966,380.01743,213.912,17.858215,37.869354,8.439 966,-6.2281556,-17.737146,18.83263,43.342392,7.195 966,389.5529,193.26263,28.394989,64.617065,7.133 966,-11.1136875,-30.14082,30.118916,69.20918,7.025 966,567.5034,190.94745,49.295776,130.3786,6.571 966,187.19789,122.35071,30.993195,68.1478,6.556 966,316.1516,204.29039,16.943298,35.773026,6.481 966,-6.2337646,489.12595,18.716778,42.041534,6.31 966,-11.795898,477.90567,29.734222,63.06186,6.305 966,-18.70429,-60.873383,57.848343,136.06543,6.263 966,322.9083,203.89986,17.156647,34.899353,6.256 966,317.9895,207.19379,30.097961,70.18268,6.246 966,425.26248,202.06145,20.935059,44.373672,6.224 966,324.9271,221.03442,31.267822,70.90167,6.204 966,622.66406,-33.947372,27.021912,77.45276,6.125 966,612.9687,454.23233,39.6015,107.454865,6.046 966,104.22871,196.16678,22.859146,43.7381,6.027 966,627.02856,-19.151215,17.711548,48.56487,6.017 966,329.58136,220.11093,22.001709,46.24063,5.962 966,374.59537,192.19003,28.010498,62.275726,5.955 966,389.83676,209.12782,38.012817,71.56984,5.786 966,-5.0490594,199.06708,16.608702,39.86975,5.781 966,131.01724,195.33383,18.376053,33.70285,5.749 966,292.76788,208.79843,40.507812,91.29288,5.695 966,2.405007,210.33484,39.646698,93.781555,5.64 966,2.0982246,-16.794075,18.698711,39.923393,5.634 966,67.17437,190.07426,31.806229,51.62079,5.617 966,322.41528,213.11676,20.771362,42.15274,5.361 966,266.0646,202.0855,19.836243,31.53714,5.31 966,536.6084,310.15503,143.11755,342.14758,5.294 966,-5.0406513,106.16051,18.510675,43.647263,5.292 966,444.39273,216.77776,16.968323,34.76236,5.276 966,371.4002,209.44322,18.518372,40.492188,5.242 966,516.7367,201.1517,39.23462,91.43335,5.234 966,-73.12743,265.6883,200.85152,461.8648,5.168 966,274.38968,217.28731,18.987762,29.36052,5.126 966,582.7211,412.7078,71.96246,175.73404,5.083 966,-21.419937,403.94745,78.97182,174.27802,5.033 966,-5.906379,25.00599,18.003065,41.076775,5.026 966,0.7537663,25.857838,20.315264,40.706966,4.955 966,250.50208,206.38293,19.95224,26.31308,4.904 966,330.55133,205.65837,17.312286,34.181473,4.863 966,602.96423,-56.365547,53.25537,137.60916,4.863 966,314.4781,219.21037,21.814178,44.387497,4.859 966,275.67252,207.26697,40.685944,88.26257,4.852 966,354.62592,204.61258,19.556335,39.91992,4.849 966,626.70734,487.94333,20.768372,45.595367,4.835 966,85.6459,194.073,30.538277,49.23285,4.812 966,307.7625,202.23766,17.392029,32.66855,4.81 966,348.04602,205.30075,18.924011,36.652985,4.799 966,268.05853,216.94983,17.929688,27.933044,4.765 966,596.1329,218.02592,38.761963,100.14818,4.751 966,297.51315,204.27625,19.144806,34.79892,4.744 966,208.25192,198.80263,21.984161,30.828644,4.734 966,200.02615,149.64197,22.648727,45.08217,4.731 966,494.56573,228.61465,237.12311,513.2687,4.716 966,43.594048,-1.6714153,32.33082,61.710777,4.707 966,544.63434,213.22096,36.148987,85.60344,4.707 967,450.85324,208.75595,18.753235,50.292297,26.887 967,433.7184,211.22862,18.976868,44.998917,19.495 967,443.7105,210.87608,18.486511,46.838303,13.464 967,387.53668,198.1657,21.431824,39.463654,7.449 967,410.10132,201.33163,22.069458,47.760834,7.4 967,346.16483,203.29216,19.012115,33.56404,7.357 967,-5.4290476,-16.99984,17.979557,42.30634,7.278 967,113.38373,206.44191,20.132324,33.94577,7.14 967,361.91656,199.56947,18.211365,34.362457,7.099 967,338.50662,202.50195,19.313202,34.63916,7.095 967,312.80768,213.26114,21.00299,35.46028,6.976 967,354.49884,200.44458,19.019043,34.40323,6.661 967,461.14807,200.82983,26.74884,64.882416,6.573 967,-10.924185,-30.061668,29.366625,68.68299,6.237 967,2.6438248,-14.685827,17.352133,38.999527,6.188 967,330.93604,204.17485,18.298431,28.70517,6.168 967,-11.927997,477.39587,30.289059,63.614563,6.025 967,-6.12386,489.0808,18.86234,42.25177,5.994 967,513.1298,206.00772,22.177002,53.561127,5.944 967,224.94672,197.86284,21.185257,33.072266,5.944 967,307.35226,203.88457,32.117004,54.535263,5.931 967,613.03644,453.45602,39.441956,108.1799,5.912 967,345.84717,215.76288,20.301971,36.104874,5.86 967,627.37537,-18.234085,17.325562,47.25736,5.664 967,500.96204,212.18983,36.95288,88.36592,5.651 967,611.3006,-49.109077,40.93811,101.05648,5.563 967,0.9051931,18.847935,21.943684,41.141563,5.404 967,626.4184,487.39267,20.91449,45.46866,5.399 967,75.56974,200.47044,18.121254,31.367722,5.391 967,325.2101,200.66599,15.2091675,25.601044,5.344 967,290.54636,201.6365,21.83316,32.087585,5.297 967,496.27078,225.8753,24.436737,59.515137,5.29 967,322.66425,223.44965,19.090393,35.583893,5.256 967,211.43562,115.503494,28.732971,63.99472,5.207 967,-73.06988,266.50262,200.86841,461.06488,5.073 967,-17.859238,-61.7451,57.142693,139.27109,5.033 967,2.9757714,195.05405,17.548315,37.93396,5.021 967,486.42133,209.3785,26.825134,69.96086,5.021 967,-3.8923235,89.983116,16.569904,44.409676,4.934 967,-21.3634,404.05594,78.819916,174.43979,4.932 967,26.789234,-13.432671,16.88715,35.65793,4.848 967,471.09158,200.12901,27.467712,62.49553,4.808 967,2.0608783,214.77725,40.62898,84.38956,4.808 967,527.4956,115.647415,36.459534,68.35538,4.765 967,583.2104,411.8963,71.35535,176.28705,4.745 967,585.74634,-100.14523,74.87567,232.18504,4.735 967,536.22144,310.9003,143.62341,342.71957,4.734 967,363.90588,216.86096,33.542664,68.819214,4.719 967,-3.6234665,187.51004,17.198263,41.1584,4.716 967,-5.643634,11.609144,18.55164,39.194298,4.702 967,320.9079,207.6038,21.972778,35.1353,4.666 967,505.74933,161.89807,31.184998,81.061554,4.661 967,-16.910906,159.37772,49.66378,127.924164,4.647 967,305.9242,206.08263,43.51584,93.360825,4.647 967,148.12303,207.63037,15.2569275,27.334106,4.637 967,324.72668,198.33086,29.402985,42.17778,4.63 967,203.1897,201.38113,17.59195,28.223633,4.622 967,-3.5367837,122.01552,14.82283,42.049255,4.617 967,34.498184,-13.475546,17.42855,35.5644,4.581 967,337.17023,209.97522,44.109253,95.38483,4.486 967,395.75098,139.38857,29.799377,68.81973,4.474 967,512.6699,250.02313,32.743103,64.87109,4.462 967,508.05618,184.29237,52.341766,117.585495,4.457 967,210.96008,199.56607,19.103836,31.046143,4.452 967,-37.695343,-129.32657,116.55759,282.70276,4.444 967,259.36002,161.8066,17.335999,33.77333,4.436 967,42.1348,-15.4551735,18.259445,36.650024,4.416 967,426.63452,200.49315,20.548553,44.309616,4.41 967,329.6356,215.8491,20.258362,34.183563,4.4 967,298.4211,213.76122,20.42862,31.949951,4.399 967,323.48175,247.39221,18.32013,28.713806,4.394 967,493.72052,227.82541,237.01263,514.49976,4.36 968,523.8522,221.29984,32.41974,75.61771,77.995 968,538.99835,218.66493,32.423645,85.36464,64.814 968,441.95453,216.35677,19.96399,43.37242,16.708 968,573.6352,221.81909,30.18573,84.290344,16.498 968,554.5608,219.31606,31.26587,87.76091,15.728 968,234.92216,208.25429,16.443268,26.62001,15.064 968,74.12943,215.24025,25.023994,36.521225,13.801 968,-5.4271946,-18.398027,17.693878,43.77777,8.636 968,228.54529,209.56033,16.171875,26.572433,8.365 968,481.43933,206.24948,31.954163,77.40604,7.823 968,546.10767,251.4928,22.416565,55.195007,7.129 968,361.14334,212.17369,20.121155,33.241318,6.903 968,104.54209,218.47859,20.737106,33.779892,6.858 968,565.361,209.2996,30.217651,80.73094,6.704 968,346.3294,212.3636,20.356934,33.248444,6.586 968,614.31116,258.17682,23.329529,87.4176,6.483 968,221.61552,210.55338,15.216431,25.881348,6.482 968,413.1678,203.28166,16.82611,36.46924,6.387 968,241.45644,210.41504,17.110764,29.39859,6.319 968,-6.2740064,489.9762,18.779457,41.774536,6.181 968,586.2168,213.44267,30.061462,85.91774,6.153 968,612.94806,454.1014,39.99774,107.63675,6.077 968,-11.789515,478.7364,29.380262,63.991028,6.036 968,194.99687,212.70042,17.727982,28.584854,6.0 968,511.6325,218.25269,32.487976,74.31207,5.926 968,-10.957411,-31.252432,29.435612,69.90435,5.874 968,622.39935,-33.306297,26.445007,75.91889,5.867 968,561.05304,255.38489,21.595825,49.215637,5.712 968,144.77318,209.74713,19.278214,34.45781,5.677 968,522.9341,246.07086,20.965088,53.404358,5.575 968,626.6696,-19.029634,17.50061,48.209587,5.542 968,187.03902,212.36417,19.472229,30.315857,5.539 968,-4.9407506,1.5248165,17.851803,42.54209,5.53 968,421.1239,165.99617,26.788544,71.870316,5.515 968,377.8111,213.44232,20.92398,37.21611,5.447 968,585.0802,252.7398,20.209839,56.137024,5.419 968,613.76086,223.44554,25.200562,90.120255,5.418 968,-5.759285,215.66774,17.370878,37.634506,5.37 969,44.580986,211.11673,27.049858,49.11377,27.813 969,444.4732,197.68884,18.881042,43.241745,21.106 969,547.90076,204.14676,28.461731,76.31821,17.534 969,31.304884,205.9176,29.174967,54.835876,16.383 969,122.06954,207.25572,21.143959,41.6718,15.758 969,-5.2139387,-16.535109,17.30035,42.980026,8.799 969,313.48758,207.09344,19.803162,36.354446,7.184 969,1.8564957,212.00226,19.654013,46.443237,7.114 969,402.14233,203.01338,20.141754,38.26442,7.078 969,439.1278,168.56229,28.746521,68.141785,6.859 969,622.509,-33.578995,26.882385,75.81932,6.75 969,-10.68572,-31.597261,29.311869,72.12739,6.632 969,299.44818,203.25684,18.848694,28.970993,6.219 969,525.49725,89.218094,30.507385,67.49109,6.082 969,345.7597,210.93718,19.858704,33.963135,6.03 969,-6.1158295,489.6282,18.592505,41.274933,5.969 969,627.31006,488.96704,19.39856,44.617004,5.892 969,552.35657,244.16634,22.72528,48.979385,5.858 969,-4.205924,2.7557697,16.334373,42.41504,5.777 969,-11.70546,478.70258,29.706982,62.837463,5.754 969,515.2815,102.62418,32.31714,63.02436,5.709 969,167.15277,206.85281,24.56662,39.70952,5.676 969,379.21005,215.73465,17.620697,28.214493,5.628 969,409.5503,206.48082,22.961853,46.887817,5.572 969,3.4742665,-12.7443905,15.824354,38.02003,5.562 969,613.1566,456.61456,38.358948,104.8739,5.46 969,144.53732,209.8255,24.749939,39.069412,5.437 969,484.5202,158.95872,31.386658,73.40781,5.41 969,338.5865,205.31725,32.058197,64.97865,5.24 969,-73.33193,265.3405,201.23944,462.32892,5.198 969,584.4805,411.60495,70.46246,176.68936,5.172 969,-17.92321,-63.418774,56.430275,144.86324,5.154 969,5.960778,205.03003,26.628563,57.122284,5.153 969,513.0017,111.74396,22.703857,42.907623,5.135 969,362.7036,217.05849,19.376526,30.606873,5.037 969,602.8908,-58.146984,53.440002,132.82118,5.033 969,544.25146,91.14346,23.271057,44.251312,4.993 969,542.5835,228.59526,28.401001,65.41646,4.908 969,-21.488956,402.90677,78.9041,175.00375,4.879 969,-16.478352,189.34135,51.059784,123.01024,4.842 969,235.12668,214.47166,17.396118,28.656906,4.786 969,370.93872,216.93477,18.52063,28.629684,4.78 969,243.33727,215.76166,16.780533,27.931732,4.775 969,363.49487,207.78615,17.233337,25.74588,4.77 969,349.6037,108.21629,30.97583,75.81746,4.752 969,386.62808,213.11816,18.35434,30.504044,4.692 969,414.40717,185.2952,29.06363,64.93913,4.673 969,274.98004,218.08847,16.918121,26.830261,4.658 969,521.8574,92.9899,23.845215,39.71106,4.655 969,250.31125,217.1355,16.945984,27.298203,4.621 969,540.545,182.05476,31.810242,76.11723,4.559 969,267.35956,218.61905,16.541382,26.807037,4.558 969,134.53223,206.90344,23.718353,41.572784,4.552 969,283.51178,223.34227,17.987976,28.357208,4.542 969,424.2703,197.14609,20.449188,45.347855,4.538 969,557.96564,208.51051,22.680786,47.59337,4.524 969,-4.4300084,59.75837,16.319649,40.381653,4.516 969,564.0658,199.5645,28.961609,59.05226,4.512 969,11.375544,-35.393166,58.268135,131.48985,4.504 970,72.72177,203.16406,21.357628,45.320618,11.37 970,432.79697,194.03668,22.090424,53.484726,10.133 970,556.54254,123.857376,33.578613,68.42848,7.862 970,362.56058,197.34933,19.512177,30.40654,7.003 970,-5.424119,-17.348158,17.664272,45.420486,6.878 970,147.1068,204.09514,20.27452,37.804855,6.837 970,114.71805,207.21193,21.72673,43.774323,6.722 970,342.31006,210.94891,24.279022,43.57553,6.592 970,45.754913,188.11658,26.889168,64.06471,6.565 970,-10.326518,-32.53363,29.506714,78.24708,6.184 970,413.76312,193.88808,27.980225,57.297348,5.939 970,267.733,218.42155,16.240967,25.512009,5.839 970,79.472626,211.7682,22.938293,42.123703,5.786 970,-5.999329,489.49796,18.417364,41.449677,5.754 970,-8.716234,464.83084,37.55626,92.22519,5.625 970,627.1371,-18.6493,17.312683,48.062668,5.588 970,96.45178,210.0329,22.518555,37.723663,5.587 970,621.5809,477.1362,29.225037,67.43497,5.536 970,1.0903215,205.57784,20.045753,46.39775,5.463 970,622.6212,-34.81151,27.150818,78.98357,5.31 970,467.4434,147.79558,30.55835,70.5824,5.295 970,227.52638,215.86182,16.50325,26.146637,5.188 970,-73.23735,265.3706,201.01276,462.1853,5.149 970,400.79044,200.0654,21.198639,42.19339,5.142 970,583.2331,412.02524,71.535645,176.10068,5.114 970,259.78632,217.86281,16.045715,25.03183,5.076 970,219.1257,208.08125,18.328506,29.871933,5.01 970,-21.589071,402.80988,78.79603,175.01605,4.94 970,5.4531803,191.56866,26.767744,67.01489,4.886 970,354.7452,201.46126,20.238129,31.312012,4.856 970,295.8952,204.5105,22.848969,34.918243,4.853 970,536.1594,310.95987,144.19977,341.93686,4.828 970,603.6985,-56.825974,52.178528,132.76678,4.791 970,2.4378233,-15.920519,16.796814,44.795273,4.767 970,570.0853,121.43681,33.41327,63.411285,4.742 970,-16.07219,184.40588,49.623028,129.49823,4.735 970,-17.08957,-62.291676,56.302803,142.08704,4.682 970,282.39893,206.31772,20.87613,29.67952,4.656 970,250.79317,145.73195,19.77861,33.13919,4.589 970,493.3094,227.48428,237.51398,514.8729,4.588 970,614.30334,-20.861404,27.972412,76.00778,4.579 970,422.94492,175.40962,28.33197,71.171585,4.487 970,88.3503,215.5401,23.525879,38.30591,4.477 970,547.8275,148.7851,34.373352,61.667435,4.474 970,-6.3011813,72.213776,19.641542,45.76512,4.468 970,235.38821,217.31584,16.540176,25.217407,4.44 970,170.25575,206.19905,19.988403,31.69693,4.426 970,3.5639572,104.08618,29.969688,79.54053,4.418 970,-5.332296,22.957678,17.54102,47.058548,4.415 970,32.12923,195.09283,28.223278,62.20215,4.409 970,195.86078,109.04764,33.367676,68.22034,4.393 970,286.7099,198.76527,27.683258,48.895462,4.369 970,361.919,207.70847,18.896698,31.921967,4.344 970,594.8721,-47.576088,43.54773,96.28995,4.305 970,275.12723,216.03622,18.03836,26.954971,4.305 970,251.89233,218.11707,15.822388,24.059418,4.282 970,618.9904,-18.474525,17.485779,46.339867,4.267 970,349.27063,106.24443,29.976318,70.80678,4.25 970,-38.11776,-129.16989,117.264305,282.67355,4.224 970,369.9532,209.30649,18.971863,28.59526,4.221 970,585.4762,-101.487785,76.91931,231.0299,4.18 970,-5.1119733,212.2439,17.997221,44.507812,4.174 970,542.67694,118.21115,30.693054,65.877106,4.17 970,501.35464,207.9195,14.208832,28.265198,4.159 970,-6.8511906,103.16633,20.74171,46.451164,4.156 970,587.88715,109.06464,16.256653,29.101318,4.147 970,456.55255,205.92993,20.770782,43.776184,4.108 970,379.2685,202.96089,18.461334,31.915298,4.096 971,470.76602,197.45332,26.152252,63.09117,40.485 971,434.7113,201.86523,20.339172,45.60994,12.979 971,-5.8575387,-17.50178,18.988586,43.664158,8.723 971,627.3803,-16.360872,17.349243,43.184956,7.974 971,90.07956,201.95062,19.780807,39.111923,7.83 971,-10.702563,-32.434387,29.5789,73.77839,7.797 971,411.1042,205.53378,20.200195,40.911514,7.435 971,623.2929,-32.691364,26.759033,71.629456,6.95 971,396.87976,206.8575,18.37854,36.44658,6.441 971,1.5732932,-0.152874,20.95347,44.475037,6.223 971,-5.074091,218.15541,18.30429,42.31282,6.188 971,47.95772,188.22842,32.142643,62.331024,6.034 971,-11.686981,477.71136,29.261309,63.573914,5.991 971,236.13367,217.96436,15.450439,22.833069,5.965 971,1.8199933,-18.46517,18.566076,43.405308,5.957 971,-5.64023,-0.89514923,19.068771,45.86697,5.949 971,1.5516174,217.7735,21.222351,43.77472,5.729 971,-18.293446,-63.957096,57.650246,140.92892,5.656 971,602.7459,-55.06599,53.60492,130.6879,5.593 971,287.98425,211.87372,24.961731,39.80423,5.574 971,203.60994,219.87575,16.785782,23.231445,5.56 971,612.8412,455.536,39.349243,107.02966,5.365 971,-73.29886,265.06067,201.45358,462.854,5.352 971,426.97223,200.25693,19.571503,44.67906,5.332 971,-6.1891675,489.4062,18.380865,42.91382,5.325 971,-15.765551,188.15509,50.427986,125.115234,5.298 971,121.895226,205.88492,20.883553,38.896805,5.259 971,583.3424,412.352,71.25775,175.93256,5.193 971,268.8271,202.15384,28.691803,49.39473,5.145 971,-10.5902815,204.8331,28.40739,65.98596,5.082 971,296.79358,209.03668,35.2442,65.6785,5.022 971,417.49457,197.39879,20.225128,46.559097,5.021 971,626.5932,488.078,20.55371,45.784546,5.011 971,194.23698,212.5046,19.135086,28.159363,5.004 971,475.65973,171.5997,27.859009,74.11186,4.977 971,619.81506,-15.398386,17.473816,37.710175,4.953 971,211.12624,219.15561,16.716095,22.902191,4.937 971,-21.584145,402.75897,78.94617,175.14972,4.91 971,572.0715,-3.680252,53.72589,109.605484,4.882 971,546.4076,0.40917778,19.72168,31.757288,4.871 971,228.03232,217.57492,16.144287,23.28247,4.837 971,186.8933,216.31856,17.505219,25.790451,4.824 971,340.6177,76.13077,30.689545,75.60829,4.816 971,554.1658,1.0352173,20.144958,32.646187,4.811 971,535.99475,311.31122,144.27551,341.662,4.808 971,538.67426,-14.952837,17.293457,36.3176,4.787 971,179.41908,115.98471,34.175858,74.61432,4.743 971,7.1870875,207.9457,27.575966,62.9897,4.7 971,493.12994,228.13995,237.55255,514.1674,4.682 971,489.06317,204.80542,21.33252,44.89415,4.67 971,530.8616,-15.834129,17.691406,37.331272,4.656 971,266.15027,213.4411,20.645569,30.89,4.649 971,331.4586,204.66861,29.291168,59.073242,4.637 971,547.31635,-12.899186,16.740417,35.109993,4.631 971,243.14633,217.49255,16.295471,24.003052,4.6 971,61.87883,190.57233,29.567429,59.312332,4.597 971,555.43616,-12.881037,17.017334,35.709198,4.559 971,522.27454,-18.924648,18.007263,41.600594,4.553 971,17.686369,218.0317,20.557535,48.275833,4.536 971,2.399664,217.54974,40.616714,79.028625,4.482 971,-5.7150626,201.81253,19.00091,41.485367,4.481 971,549.5948,2.2083092,27.403564,52.889404,4.466 971,585.27216,-100.40886,76.85095,230.37544,4.459 971,378.85535,208.00635,17.007446,29.302399,4.455 971,593.46924,-41.933342,46.39441,89.59464,4.392 971,518.52783,166.31915,28.773376,68.9362,4.358 971,219.02711,218.68637,16.460281,22.818954,4.351 971,562.8957,-12.879423,17.814392,35.95365,4.324 972,517.1858,214.36256,22.939331,41.43277,60.232 972,1.5416563,200.6227,20.967928,54.814407,16.82 972,74.215256,211.17744,19.520737,43.498215,8.661 972,572.25696,137.5617,31.768433,87.53293,8.094 972,-10.743794,-31.969227,29.280102,72.1453,7.957 972,443.20477,207.6959,20.75708,46.927856,7.955 972,-5.882288,-19.421106,18.92949,46.614914,7.772 972,-6.255494,489.21454,18.792183,42.838196,6.758 972,556.09753,132.4249,30.470886,72.246506,6.541 972,-11.774891,477.08762,29.760406,64.91971,6.499 972,154.61665,215.72832,19.831268,30.253693,6.444 972,526.9183,214.73282,21.1521,44.21295,6.232 972,-3.2106643,209.36794,18.021765,50.789536,5.975 972,-14.818711,185.63907,47.608368,127.778046,5.748 972,491.7607,193.33865,28.257416,63.226227,5.703 972,611.1731,-49.346024,40.99048,103.374794,5.63 972,627.4166,-17.547684,17.14917,47.667408,5.629 972,256.9706,208.48407,21.875366,33.750534,5.375 972,419.25574,206.33278,19.882507,42.9041,5.288 972,579.7102,121.48175,29.467346,79.602264,5.285 972,613.0513,454.54837,39.595093,107.55667,5.281 972,1.8346959,-18.620642,18.687258,44.370625,5.122 972,259.5805,204.51726,30.650635,51.14798,5.104 972,-73.171,265.6842,200.99057,461.50665,5.092 972,583.14465,412.30627,71.45587,175.9621,5.083 972,148.30362,79.142,31.24115,72.0497,4.963 972,-17.268875,-63.539967,56.642433,143.15999,4.957 972,536.0646,310.61597,144.39893,342.21448,4.941 972,-21.57399,402.54053,78.67107,175.0777,4.892 972,508.15005,207.38158,19.721283,42.19539,4.883 972,363.9307,181.91241,16.642303,31.21997,4.876 972,219.63803,222.37973,17.235352,27.062622,4.832 972,-2.620889,190.58585,16.863478,42.210205,4.712 972,493.81885,228.91922,237.04272,514.16565,4.701 972,626.5707,488.13235,20.92395,45.996124,4.659 972,163.43738,66.038635,30.559494,67.437775,4.641 972,355.8988,202.39815,15.786346,24.879242,4.558 972,308.28192,171.58458,16.47754,23.036606,4.518 972,-5.666603,-0.91087914,19.269749,46.422134,4.516 972,193.55544,217.32979,19.66832,28.436874,4.46 972,187.74326,224.47269,17.01796,24.492523,4.45 972,515.2959,207.1039,39.25592,67.024796,4.433 972,153.88559,73.45062,23.59256,47.984367,4.392 972,347.9637,207.25838,16.989746,27.448822,4.371 972,2.3160744,214.15378,37.76459,84.115875,4.369 972,78.84433,204.17609,23.313507,45.42093,4.346 972,2.2662182,228.71127,19.679619,43.933502,4.341 972,251.9195,40.25149,16.090637,23.638107,4.334 972,420.4281,185.90274,28.535278,63.054337,4.334 972,585.62506,-101.85628,75.87219,232.99019,4.303 972,308.31238,181.57452,16.555237,28.636002,4.296 972,218.19028,208.97968,19.664917,32.685196,4.28 972,17.43766,205.60458,19.431984,44.975388,4.243 972,380.13644,211.28561,16.585205,31.31607,4.193 972,370.78668,214.0903,17.7276,33.109924,4.18 972,243.07016,203.51941,41.783142,63.955017,4.172 973,239.32794,209.25269,23.814026,36.45012,12.17 973,583.73224,224.34839,20.140747,37.61032,9.319 973,622.443,-33.947296,27.384277,77.56225,7.391 973,281.2697,216.81621,23.162842,38.42383,7.284 973,285.4237,211.19444,28.706665,53.080673,7.225 973,323.88806,207.29576,31.66986,63.196793,7.17 973,-12.0273,478.3183,29.517977,63.32422,6.908 973,159.29086,208.27174,24.042297,34.897217,6.84 973,619.173,184.6201,20.006104,64.369064,6.71 973,113.72267,213.12462,22.524002,37.087067,6.643 973,-6.220401,489.45358,18.470463,42.336395,6.499 973,626.82544,-18.883512,17.396606,48.50107,6.453 973,243.42764,209.03973,30.670624,54.138428,6.351 973,226.0302,212.06584,21.958054,35.192673,6.164 973,96.106186,212.32982,23.96582,40.75998,6.128 973,395.3722,212.49226,17.802979,32.819885,6.101 973,377.3449,210.47102,18.900879,34.772415,6.091 973,364.3198,182.32468,15.83493,28.98056,6.089 973,388.84875,135.84357,27.949463,80.526855,6.07 973,193.99753,213.65254,20.657135,33.350418,6.026 973,248.89359,220.01535,21.460358,34.738358,5.939 973,378.84357,176.3537,18.023193,35.208115,5.837 973,370.36548,213.32964,18.640564,33.92906,5.778 973,395.4281,174.94283,17.07196,37.057983,5.768 973,433.5756,200.3979,20.577698,42.156433,5.706 973,531.39844,189.98515,18.057861,37.74466,5.695 973,362.25705,215.49358,19.035065,31.691788,5.691 973,374.31638,150.1384,29.948303,71.83751,5.682 973,-5.1029453,193.15118,18.19101,45.837296,5.66 973,186.18944,217.4677,20.951202,33.17665,5.651 973,177.0242,211.59937,21.876984,35.33896,5.628 973,100.650475,200.9736,30.48655,48.78067,5.596 973,82.06755,210.53328,23.52427,40.891083,5.575 973,274.88095,214.18913,21.35199,36.641617,5.56 973,201.66605,216.00024,19.624527,31.538559,5.507 973,-17.071644,-62.443527,56.098747,143.51591,5.505 973,347.0126,207.45273,17.87674,31.795837,5.5 973,626.5912,488.2389,20.677551,45.56549,5.483 973,468.11957,156.48674,30.312134,71.94853,5.435 973,233.84677,218.01526,21.651108,34.267136,5.385 973,612.8781,454.92215,39.795105,107.282196,5.3 973,603.6899,-55.66627,52.73828,137.27373,5.268 973,261.47565,201.10431,27.057098,51.106247,5.256 973,-5.7216673,-16.57912,17.715633,43.308903,5.233 973,583.247,412.95673,71.35742,175.25024,5.208 973,300.51385,163.20576,15.534058,24.940536,5.116 973,-72.88484,265.89417,200.59367,461.12805,5.114 973,356.73517,182.90987,15.580261,29.520218,5.096 973,387.66443,211.86604,18.0997,33.96306,5.093 973,619.4312,-17.97117,17.895386,44.15748,5.066 973,36.870377,205.057,29.823463,54.4906,5.031 973,120.67296,206.12459,22.29004,35.841415,5.002 973,242.68333,230.76361,19.729813,31.25708,5.0 973,257.39658,206.88016,21.574554,36.714996,4.975 973,585.1803,207.37395,20.476074,38.193314,4.845 973,536.09265,310.4415,144.34497,342.68472,4.839 973,-21.536291,402.78687,78.53149,174.6015,4.832 973,355.99677,204.21147,14.740692,21.887726,4.806 973,577.65717,217.50143,22.937988,34.21434,4.792 973,305.8854,216.83801,35.127808,57.599182,4.78 973,371.12262,180.06143,16.93158,31.369522,4.777 973,379.53397,201.61829,14.832916,22.327835,4.777 973,592.6083,236.23843,21.6698,40.118134,4.777 973,-11.390732,-32.552784,30.364197,75.11661,4.775 973,451.1477,120.59335,30.294067,81.1828,4.727 973,361.76938,156.59729,21.264038,41.917175,4.72 973,-5.5099735,98.187294,18.112331,42.015892,4.709 973,579.85004,223.21826,29.42981,57.95575,4.703 973,-15.431508,187.47726,49.44476,131.13419,4.678 973,235.2901,2.298853,17.320541,30.436773,4.674 973,163.15027,207.95158,31.311584,49.278122,4.672 973,274.39288,208.34402,43.636963,79.76004,4.641 973,-6.3867083,138.42708,19.634384,44.287857,4.636 973,365.12073,196.2017,14.063904,21.992325,4.631 974,54.577198,216.34148,26.111263,44.013046,37.708 974,42.0397,217.74974,22.140438,41.16423,19.067 974,225.5531,218.05669,21.447006,35.179367,11.62 974,1.598621,211.75702,19.07209,47.53833,9.71 974,296.2837,241.30917,21.088531,29.31369,8.4 974,384.1557,212.89548,20.01117,35.05681,8.013 974,250.53458,236.24281,19.184082,32.48192,7.903 974,-12.526418,477.3099,30.834126,64.25467,7.705 974,-5.393989,-16.45932,16.908499,41.429207,7.549 974,152.73322,219.64082,21.505081,32.28302,7.205 974,257.91553,232.79428,19.089294,31.855255,7.023 974,34.7706,222.1884,22.148159,40.63652,6.898 974,283.6468,235.59355,15.482574,24.863022,6.659 974,463.11176,213.32219,21.943115,44.244644,6.575 974,228.65662,217.8142,29.670044,53.141434,6.468 974,276.4024,232.86856,15.740845,27.724976,6.411 974,242.77649,236.06409,20.429993,34.61963,6.385 974,393.77484,220.5378,20.91272,34.513992,6.379 974,266.75656,237.79027,18.230377,30.115921,6.237 974,-2.8465295,204.30981,16.838717,49.69113,6.215 974,611.2694,-48.87991,40.905396,102.31999,6.139 974,311.53033,236.5021,24.099365,31.390411,6.126 974,-8.734407,166.69513,27.60699,72.9292,6.039 974,290.12366,239.37428,33.435608,50.949936,5.912 974,-5.6247034,136.06355,19.269207,46.31067,5.907 974,289.9612,245.40515,21.714508,29.562805,5.899 974,-6.644845,489.2641,19.37006,42.97284,5.897 974,235.54233,-13.954161,16.03186,35.13776,5.757 974,-11.507826,-31.618067,29.27703,71.29443,5.742 974,627.369,-18.315105,16.957275,48.265186,5.657 974,378.72083,220.0744,20.356384,32.594254,5.575 974,-16.801008,-64.11456,55.340317,144.67079,5.565 974,160.37592,216.83829,21.95958,32.15625,5.537 974,227.84349,-12.071669,15.210724,34.237015,5.522 974,0.7994056,229.4301,22.066103,42.93843,5.463 974,-4.9735065,154.37347,18.064163,44.509323,5.461 974,185.29968,215.02408,19.89775,31.42546,5.456 974,305.75723,230.06642,35.747925,49.339493,5.438 974,303.63507,238.72813,23.246765,30.866074,5.411 974,410.19885,230.42087,19.8609,33.02417,5.317 974,48.363983,212.2706,22.127777,38.912247,5.295 974,621.80273,477.82822,28.937988,66.8591,5.23 974,-73.157486,264.84268,200.89339,462.76865,5.217 974,403.50327,224.52673,20.315125,33.403717,5.191 974,444.4684,195.55067,14.730133,32.6111,5.171 974,127.49008,214.2569,23.539612,35.22934,5.138 974,583.27423,412.8054,71.42474,175.556,5.111 974,169.58214,215.08356,20.537628,31.997604,5.079 974,-15.589058,190.04945,49.78321,123.01915,5.077 974,243.50879,-14.412816,16.551086,36.24876,5.076 974,319.55356,239.80202,22.855164,30.963974,5.005 974,-5.0410776,171.34447,18.500015,45.374313,5.001 974,305.14276,219.71268,19.81955,34.505905,4.998 974,3.3986802,-13.457561,15.696032,36.69699,4.979 974,139.24435,215.2201,32.47046,44.339417,4.961 974,585.8058,-101.128845,75.410706,233.81519,4.92 974,526.5263,191.19884,30.21045,72.4041,4.881 974,536.1688,309.99307,144.2528,343.0262,4.871 974,489.94745,-180.24646,235.45587,426.3842,4.857 974,136.67929,227.94408,21.092545,30.062943,4.851 974,-9.629934,131.57413,28.470285,72.43002,4.834 974,64.50298,212.35919,20.698929,37.130264,4.812 974,145.96541,228.76071,20.254044,29.424835,4.778 974,-14.985417,126.76639,50.334217,136.8898,4.774 974,-17.651222,435.98508,55.06036,139.17288,4.753 974,66.24795,130.40208,30.657806,65.02818,4.714 975,199.30037,231.81293,24.100494,42.505005,22.494 975,166.28082,232.12006,26.769333,37.511963,10.688 975,-0.5193901,218.6117,24.938557,48.757935,9.554 975,120.656364,223.42194,23.550514,36.708954,9.019 975,-5.631605,-18.513002,18.049625,45.337227,8.121 975,129.40642,229.32109,20.35115,31.336746,7.967 975,249.0452,249.62216,23.64795,32.291504,7.806 975,217.87871,239.77007,21.260406,32.68315,7.662 975,107.3455,219.70102,32.61376,48.94049,7.331 975,234.93263,246.05544,17.106476,27.437729,7.322 975,322.60526,212.73233,19.94983,37.624146,7.168 975,434.2196,212.30951,20.302612,34.4162,7.123 975,-12.0569725,477.33618,30.356974,64.48187,7.046 975,-10.880832,-31.767702,28.840832,71.27049,6.951 975,444.89636,225.5158,28.34842,54.723587,6.851 975,487.3959,-3.9249573,24.659515,41.74118,6.833 975,626.83704,-17.51033,17.776367,45.592495,6.816 975,461.92413,192.63547,28.397888,63.64682,6.798 975,226.28145,242.79242,19.522507,30.388733,6.734 975,211.27863,237.60712,31.964783,51.686523,6.604 975,448.2932,210.98576,22.70337,50.118515,6.599 975,276.93088,247.91653,27.65738,40.529053,6.501 975,2.9613905,-17.507404,17.234245,42.503628,6.371 975,-5.465168,227.21664,19.46236,43.79007,6.365 975,104.47812,214.51622,24.131744,38.300552,6.284 975,250.48743,243.07925,18.3508,27.201477,6.247 975,-6.3336744,489.24536,18.857784,42.719482,6.215 975,207.153,240.12743,22.96283,38.186447,6.177 975,622.4174,-32.75241,27.434326,74.24039,6.149 975,-4.962768,190.02078,17.334093,37.69763,6.111 975,469.20093,-31.21146,31.269043,69.983696,6.111 975,426.80597,217.60962,18.209839,32.869873,6.096 975,250.61235,243.67834,33.137924,46.96631,6.08 975,241.57326,248.91153,21.658188,31.01764,6.059 975,368.1531,219.32608,22.402924,31.736908,5.943 975,464.54208,224.72878,23.77951,46.851517,5.935 975,224.83298,256.45584,22.147446,35.0567,5.932 975,-5.4195776,212.05151,20.53931,42.634155,5.905 975,136.81117,230.15936,21.087372,32.066467,5.792 975,-18.266842,-62.27183,56.931557,139.167,5.782 975,431.27457,213.80762,29.035065,62.536255,5.663 975,4.4513264,-20.34958,30.93693,67.104515,5.582 975,602.43085,-57.05391,53.601868,133.56842,5.572 975,-4.2398105,164.60564,16.750643,39.28447,5.559 975,-73.580284,264.4585,201.496,463.67847,5.4 975,147.42258,226.71779,43.474106,59.56459,5.354 975,-10.036778,194.70418,29.864574,65.45964,5.347 975,95.06952,227.5571,25.934769,35.36328,5.314 975,371.43787,209.00288,15.894104,26.04718,5.3 975,410.3662,231.89543,19.987366,33.74849,5.291 975,85.685135,64.30737,27.300735,65.98004,5.275 975,472.54422,205.08408,22.603851,47.962234,5.251 975,613.2877,454.04062,39.146606,108.535614,5.242 975,328.75977,218.81485,21.876648,35.746002,5.227 975,626.60205,487.86728,20.879944,45.82419,5.201 975,389.18024,210.24673,28.305481,49.948334,5.189 975,-16.788713,123.390945,53.251785,138.78252,5.124 975,583.61255,412.3954,71.01849,175.8805,5.124 975,183.36792,234.69011,26.289688,42.95607,5.123 975,162.48932,230.59749,42.56636,67.617966,5.113 975,114.73074,223.42383,42.63597,60.45642,5.092 975,-17.789818,437.4701,55.26481,137.48364,5.092 975,58.01355,212.46364,18.9684,31.765808,5.085 975,402.55786,217.77356,40.877197,68.89191,5.083 976,604.979,213.50829,18.819092,45.93074,11.392 976,322.68872,214.54639,28.943848,69.36856,9.2 976,29.2215,203.5625,29.18295,63.497864,8.588 976,580.44305,206.37581,17.680298,38.10228,8.359 976,26.129902,205.93793,21.52879,47.91153,6.805 976,152.43564,163.37628,23.135162,46.012512,6.639 976,318.4336,229.39473,27.309875,75.160934,6.608 976,-6.1649895,489.07748,18.538342,41.96585,6.44 976,301.12347,228.24551,30.12912,73.26697,6.285 976,626.70905,488.5984,20.514343,45.066895,6.236 976,40.24124,216.2756,21.857567,54.31604,6.111 976,608.57574,210.2749,23.98053,59.266235,5.993 976,-8.811234,465.58594,37.583466,90.47406,5.935 976,627.4011,-17.087185,16.701294,46.467915,5.882 976,622.6923,-33.3351,26.950378,76.58413,5.871 976,-10.926452,-34.135315,29.021946,75.087074,5.728 976,14.305012,198.42531,28.034962,64.46193,5.636 976,612.9455,454.19864,39.243225,107.82126,5.553 976,-5.615911,-18.86662,17.459023,44.514267,5.529 976,244.11566,237.71436,32.268555,65.89209,5.394 976,2.445979,185.18134,16.810993,47.889908,5.275 976,615.9146,152.61676,22.697327,82.64163,5.216 976,-3.8002775,196.70834,16.635323,47.864685,5.206 976,-73.10093,265.3526,201.15051,463.35004,5.121 976,626.8671,159.17981,17.292053,54.08838,5.118 976,-18.273165,-64.39034,56.436768,149.67654,5.091 976,583.4281,411.9864,70.98999,176.21558,5.081 976,-21.229347,404.01764,78.34658,174.71637,5.065 976,75.0889,234.38322,17.747551,31.56691,5.027 976,7.2356167,186.13388,24.982737,73.31494,4.973 976,474.20386,216.7905,21.125366,34.337677,4.865 976,445.9452,207.31961,11.784485,23.258698,4.863 976,587.052,203.89854,16.135376,35.365295,4.86 976,602.39417,-55.404137,53.411194,133.13713,4.853 976,617.0946,221.07124,20.338562,50.88011,4.824 976,588.32587,-12.981745,31.771545,63.52427,4.746 976,204.85701,247.97617,31.452408,63.302826,4.726 976,226.60403,240.15813,32.95938,65.16234,4.712 976,536.0778,309.65045,143.9978,340.98547,4.704 976,618.53204,490.3655,20.60913,42.099518,4.671 976,38.085598,210.87936,35.70544,82.44412,4.617 976,385.22995,240.49492,23.278656,38.233963,4.561 976,266.38214,305.96783,19.172699,27.284668,4.559 976,82.92632,235.61032,17.206474,29.56253,4.535 976,-12.977055,183.72578,45.79486,137.41759,4.52 976,235.1702,236.13031,56.334045,130.40332,4.468 976,157.28293,247.72159,27.590424,64.81137,4.452 976,517.53516,199.63124,12.914307,26.546875,4.439 976,389.1089,218.346,29.199524,55.781143,4.424 976,615.4986,-17.893757,26.351929,71.48909,4.423 976,494.36,228.13037,236.7113,515.1328,4.409 976,263.3321,241.26993,24.222961,39.110046,4.362 976,339.2057,247.06958,29.768463,66.86932,4.355 976,572.5716,210.73425,17.966125,36.12007,4.342 976,525.4779,199.15886,12.0130005,26.918518,4.333 976,571.5673,-12.919901,32.819336,64.18815,4.307 976,89.97967,168.00713,20.506363,34.71321,4.306 976,243.01176,214.74472,20.291885,37.72168,4.293 976,259.08142,245.27054,33.345825,59.59778,4.265 976,217.62439,205.73325,20.693604,36.644653,4.254 976,-1.0087979,111.04755,25.931376,77.482025,4.116 976,507.09406,-17.356949,17.06543,38.223114,4.097 976,38.618958,125.88808,30.165497,76.54936,4.092 976,-70.01199,-186.71149,210.92877,452.20798,4.078 977,598.8464,216.39175,19.79187,43.118866,24.035 977,214.19283,225.71266,27.600266,65.063034,14.305 977,322.64734,209.0033,28.16449,72.35303,9.002 977,29.208988,203.40092,30.3662,65.98036,8.826 977,595.75635,194.36743,28.453796,67.172,7.973 977,24.770147,203.89496,21.082132,50.118057,7.815 977,619.647,226.99658,18.353882,47.71237,7.398 977,445.26904,211.27948,12.972595,24.327866,7.175 977,1.4925885,120.88484,18.676186,52.29721,6.969 977,8.302969,192.75706,25.126947,77.75728,6.956 977,579.7621,209.03766,15.744446,33.28058,6.915 977,1.5992069,188.18497,21.969864,78.68576,6.691 977,614.6827,154.1534,23.92572,83.41994,6.691 977,227.28458,229.98273,30.513916,71.900696,6.583 977,-6.022603,489.03238,18.537678,42.16629,6.394 977,626.72095,488.40533,20.295593,45.42212,6.295 977,152.18396,164.20564,23.684341,46.397964,5.921 977,-5.6135564,-18.906843,17.447178,44.6323,5.72 977,627.27136,-17.18422,16.90332,46.768124,5.69 977,622.7508,-33.30886,26.739624,76.96801,5.659 977,370.6787,233.26753,33.49066,53.93364,5.639 977,-4.251854,201.8203,17.707561,50.877457,5.636 977,-10.903189,-34.157825,28.845577,75.3483,5.621 977,-2.9644613,185.57648,16.752565,45.888046,5.599 977,-11.862135,476.7735,29.440582,64.4707,5.583 977,626.2898,159.48907,17.773987,54.03514,5.562 977,612.9194,454.52325,39.270813,107.70111,5.369 977,-18.368559,-64.644516,56.522156,150.00964,5.331 977,271.0043,232.96236,22.376465,40.79149,5.292 977,324.80038,233.87029,27.570831,75.14052,5.239 977,431.71585,231.20169,37.555084,54.61493,5.185 977,-72.748405,265.55914,201.07263,462.75604,5.133 977,583.3866,412.40527,71.048096,175.90973,5.105 977,2.6142895,110.44258,28.291986,82.80234,5.069 977,294.64175,225.79189,28.890228,69.016495,5.033 977,-39.81525,365.68573,109.968445,276.846,5.015 977,614.8885,-18.541271,27.263489,72.77002,4.99 977,223.84111,224.9515,21.05214,46.863007,4.838 977,617.4227,239.9334,21.270264,59.044052,4.803 977,602.6023,-55.73712,53.312256,134.55373,4.767 977,536.2125,309.38525,143.98187,341.3282,4.736 977,49.59345,123.6378,21.876522,53.385284,4.681 977,36.58518,210.44614,37.15414,83.61667,4.66 977,253.14624,231.5181,31.514221,65.54309,4.629 977,40.673576,211.08678,22.885307,50.916275,4.619 977,577.6966,90.9596,19.456787,30.675415,4.571 977,310.52847,226.61493,29.004486,73.482605,4.557 977,618.56134,489.8883,20.766113,42.829895,4.529 977,588.76184,-13.901464,31.420532,63.8217,4.471 977,38.43208,120.59102,29.814457,80.97653,4.449 977,383.5823,242.68307,23.971039,36.773987,4.438 977,494.23834,228.57153,237.09961,514.5791,4.429 977,-17.766682,433.80817,55.299202,142.2008,4.359 978,605.15497,218.0401,18.364075,43.11624,43.661 978,599.9297,213.9364,27.44629,77.756836,16.391 978,34.585114,228.77847,32.221085,60.31775,11.859 978,517.9076,227.551,30.616638,63.235046,11.234 978,160.27672,166.23785,23.958328,42.283707,7.891 978,554.2437,224.66492,31.81604,69.72949,7.797 978,587.14777,214.68492,19.205872,49.153397,7.598 978,1.0335898,195.727,23.214588,77.78865,7.404 978,615.5242,219.58595,23.415466,60.596237,7.216 978,-11.907923,475.9338,29.552984,65.43509,7.057 978,22.154861,219.50403,27.68679,69.065216,6.963 978,-6.0652742,488.43018,18.681786,42.88916,6.663 978,621.9911,477.95166,28.752563,66.05469,6.521 978,513.9961,234.55211,22.14563,46.678146,6.367 978,-3.6393297,197.94624,16.711353,49.274857,6.305 978,578.23114,215.85287,20.780151,49.384064,6.226 978,453.28094,209.73174,13.136444,26.157578,6.193 978,502.27478,223.21526,29.913269,61.99678,6.145 978,589.7683,215.69838,13.572266,27.882355,6.083 978,530.94794,230.77063,33.441406,64.061646,6.015 978,622.81744,-33.577408,27.207703,75.86238,5.862 978,506.77014,232.38373,21.203918,39.342712,5.859 978,618.2389,488.89703,20.951477,43.51996,5.852 978,35.27675,218.0293,22.20826,43.60086,5.819 978,-8.546443,202.1417,26.24688,77.631256,5.779 978,490.9655,216.64032,21.168152,35.18643,5.767 978,627.4103,-17.473167,16.950012,46.170822,5.733 978,17.128336,211.69583,19.994955,45.434784,5.685 978,-12.689262,-41.63032,41.42028,102.8964,5.613 978,497.79944,224.65208,21.081543,36.95024,5.561 978,423.63324,250.30484,24.913757,34.1167,5.526 978,615.6268,176.17484,24.377197,75.93364,5.509 978,613.01,453.89334,39.479675,107.586395,5.387 978,589.70325,231.3505,29.934265,72.732605,5.273 978,215.68399,249.83977,23.439392,40.601395,5.252 978,-5.7256794,-18.648619,17.444689,44.00372,5.23 978,7.625269,207.92134,26.109125,80.14455,5.192 978,-21.095417,404.5509,77.98436,174.19995,5.127 978,409.63208,249.8015,21.644012,32.193893,5.122 978,602.4704,-56.326004,53.483826,137.34761,5.097 978,-72.50235,265.83447,200.73123,462.32227,5.08 978,498.0727,245.42168,21.174011,33.100235,5.048 978,334.63452,238.13211,26.837494,72.834045,5.005 978,459.415,209.311,13.65979,25.755905,4.979 978,583.1441,412.97595,71.334656,175.43042,4.969 978,-39.844986,367.14026,109.66017,276.2995,4.949 978,544.3816,230.92596,22.763123,43.236176,4.873 978,115.44203,198.4072,17.537369,33.703613,4.867 978,51.858143,131.22386,31.227398,73.28134,4.848 978,108.013916,200.91934,16.755203,29.662277,4.819 978,536.0864,310.35266,144.14868,340.47925,4.809 978,228.52353,246.68892,32.201508,66.07637,4.803 978,1.9156009,186.23029,18.755259,47.785385,4.792 978,558.46155,208.65622,24.677795,57.889526,4.765 978,46.733,244.7282,24.220284,43.225418,4.752 978,393.3601,248.67444,20.807648,33.51544,4.752 978,90.39272,175.77737,18.47506,34.043274,4.726 978,311.4002,224.77429,27.950256,61.020325,4.699 979,611.0658,217.70099,19.260864,41.779114,40.716 979,34.65367,233.13437,31.459679,67.729675,9.734 979,13.231285,223.65898,30.952415,68.92485,9.646 979,622.73425,-33.56374,27.040222,75.037834,7.584 979,626.6732,488.53864,20.495483,45.108826,7.126 979,-1.0262966,210.31664,27.98525,77.496414,6.898 979,305.95502,407.36005,43.07904,88.51819,6.488 979,505.6576,221.16742,21.61438,44.913513,6.443 979,160.83336,170.74301,24.577621,43.288025,6.16 979,22.895805,210.06252,29.186142,64.290085,6.128 979,626.81506,-20.135057,18.280457,47.615753,6.115 979,-12.169696,476.82593,29.95118,64.03668,6.063 979,303.6799,227.79169,22.770874,43.461975,5.657 979,-12.552259,-41.570198,41.322174,102.95244,5.611 979,325.21674,223.83063,28.681946,67.107605,5.571 979,-6.3371778,488.84164,18.906818,43.30551,5.444 979,195.13167,491.81955,18.971237,35.86441,5.415 979,612.97034,454.96518,39.137207,107.169586,5.372 979,-5.7269754,-18.53346,17.468794,43.88169,5.356 979,297.77036,423.51614,61.478638,110.32059,5.326 979,349.3478,213.1278,14.023621,22.08197,5.284 979,202.95073,492.7956,19.045395,35.285583,5.279 979,277.0224,223.26996,29.236328,64.545715,5.261 979,496.90488,221.72389,21.07785,45.667465,5.253 979,312.33777,229.67267,21.787415,44.08902,5.251 979,21.156273,223.70088,37.61464,83.59541,5.207 979,602.71643,-56.96798,53.483643,140.6343,5.157 979,197.41873,485.2379,13.631866,22.287292,5.132 979,350.3682,420.87906,40.498047,70.42062,5.11 979,-4.1175914,192.38605,17.942703,47.683197,5.106 979,583.8541,412.992,70.58771,175.72125,5.096 979,-39.869633,366.57062,109.90138,277.09198,5.058 979,-20.981329,404.22357,77.98097,174.60901,5.057 979,489.73218,218.55296,18.549225,42.849197,5.05 979,154.73595,177.93153,22.133255,43.949585,4.995 979,179.28082,491.79373,19.068481,37.3627,4.981 979,187.47836,491.63916,18.869736,36.31372,4.956 979,-72.42516,266.4569,200.7367,461.28357,4.874 979,612.31854,188.95929,23.599548,73.92139,4.852 979,510.30878,221.742,28.950012,56.88864,4.849 979,-5.0249825,212.05716,18.122477,45.956085,4.847 979,75.36977,206.75584,19.209457,32.831238,4.84 979,326.3438,416.28568,37.278442,71.53726,4.834 979,189.88681,484.89948,13.884979,22.85788,4.789 979,-8.667432,230.32964,37.618237,94.6617,4.787 979,393.629,252.05336,23.560455,41.878464,4.737 979,35.08052,207.74622,40.349182,77.55597,4.733 979,321.05402,227.92969,21.752197,48.076294,4.73 979,535.9328,310.55292,144.50366,340.79358,4.701 979,210.54854,493.25946,19.46045,35.843323,4.691 979,618.46124,489.9211,20.905457,42.700714,4.69 979,205.00887,486.67245,13.626099,20.77945,4.684 979,65.88665,218.74576,19.369102,38.500854,4.615 979,81.44661,207.60701,19.767448,36.709915,4.537 979,57.3872,214.00443,19.666817,38.255264,4.533 979,5.1844225,197.3579,28.568485,66.68837,4.527 979,342.27014,210.9563,14.175171,22.887451,4.523 979,170.93976,492.3224,20.096191,37.539368,4.516 979,59.31307,226.00032,31.375935,59.660873,4.497 979,333.9765,210.16115,14.591888,22.643372,4.487 979,289.19812,233.42003,23.223999,47.541092,4.471 979,244.54324,268.8087,29.811096,77.83099,4.453 979,74.02648,216.81767,19.272316,36.75711,4.447 979,269.34482,207.99973,18.129059,33.205933,4.442 979,170.68677,212.4278,19.745361,35.554047,4.422 979,493.60913,230.65872,237.11603,512.80237,4.384 979,595.0084,-46.707077,43.466553,102.80101,4.378 979,2.648831,202.83702,18.50636,48.466415,4.37 980,262.24313,247.65022,28.610046,72.199814,20.281 980,616.7366,-0.10577774,22.400024,55.780155,12.078 980,622.13477,-33.186966,26.986633,77.96406,8.901 980,155.15598,235.67358,29.802444,68.71411,8.718 980,626.8855,-17.188654,17.007996,47.687344,7.353 980,-6.4131827,488.8197,19.072432,43.706726,6.71 980,593.50745,-41.33644,46.388306,88.085434,6.584 980,244.90121,238.96927,31.176025,74.432465,6.388 980,304.33868,218.49384,26.206818,61.259674,6.168 980,36.709614,239.91566,28.539974,61.53386,6.153 980,626.5098,487.51248,20.623596,45.944183,6.077 980,313.22308,222.90527,21.232819,46.230194,6.028 980,3.7432837,212.03027,17.779922,44.890198,6.011 980,-12.0697,476.31766,30.214287,64.681244,5.845 980,-5.5562162,-18.665876,17.302086,44.323887,5.836 980,228.03842,244.1972,32.384552,69.88153,5.809 980,198.89342,265.52173,23.555832,37.258575,5.629 980,1.5614748,241.39687,20.934639,46.01747,5.622 980,618.7577,204.88441,17.744385,41.158188,5.581 980,-10.924828,-34.12265,28.979355,74.811325,5.516 980,405.99185,239.53261,25.386139,48.04039,5.494 980,613.0021,454.521,39.19812,107.689514,5.482 980,151.08163,167.62064,30.113266,55.84886,5.457 980,619.1466,-15.878477,17.29126,44.978767,5.455 980,333.44635,217.28171,28.51416,61.322113,5.365 980,577.8395,215.28737,18.840027,37.58394,5.239 980,615.4591,202.47786,24.092407,75.77318,5.105 980,177.81506,191.20363,19.982864,36.60498,5.096 980,-18.176052,-64.22848,56.511684,148.20398,5.082 980,-72.26105,266.13107,200.91107,461.78604,5.074 980,583.4824,412.8805,71.000916,176.05298,5.055 980,-14.263174,217.62082,48.284256,131.9985,5.053 980,517.44135,222.58856,29.997314,71.4173,4.981 980,-21.166601,403.6704,77.92006,174.67969,4.946 980,345.43567,229.68501,20.849365,42.886703,4.94 980,-39.693798,366.48425,109.58145,277.03723,4.884 980,19.96174,218.66531,39.96038,79.31024,4.782 980,595.084,-14.4150505,17.237305,37.18314,4.767 980,145.88164,177.66035,22.676956,43.206467,4.752 980,588.708,216.26727,30.740417,67.74451,4.735 980,521.1578,222.30232,21.717224,41.702408,4.721 980,51.03801,286.32507,18.493973,28.10022,4.716 980,476.84677,252.61636,34.650787,57.940125,4.694 980,535.7673,311.12753,144.32318,339.9268,4.686 980,4.9652886,205.87128,29.347662,74.69672,4.686 980,509.00085,254.31572,31.898987,60.714035,4.669 980,386.17505,218.54573,17.13913,25.968277,4.664 980,602.7427,-15.091966,17.248291,39.61366,4.634 980,604.6174,215.19234,14.942932,27.84291,4.616 980,192.95828,245.49345,34.830032,54.912796,4.594 980,572.1459,204.6464,27.759644,62.959534,4.557 980,493.6679,230.1182,237.5711,512.31165,4.497 980,502.9206,221.8059,31.434937,69.68825,4.488 980,42.55907,261.0085,19.322262,41.376648,4.475 980,42.14453,282.24643,20.091736,33.600616,4.439 980,571.0063,216.60095,18.3125,36.923935,4.406 980,489.93744,253.74211,33.46991,55.097824,4.346 980,-5.096514,231.76978,17.505716,44.784424,4.323 980,328.90533,222.21188,21.58963,46.86502,4.312 980,404.2724,231.55106,19.036194,34.420837,4.284 981,271.59305,239.38266,23.625763,52.120605,13.877 981,348.64197,258.66428,29.2146,72.91809,10.085 981,21.611725,232.10904,28.17326,66.33679,8.213 981,1.323148,211.37534,18.73639,43.33438,7.632 981,307.3353,218.5907,19.158417,40.88507,7.599 981,-4.142999,203.34149,17.598562,42.882156,6.845 981,261.64236,239.00935,37.408447,95.383896,6.792 981,-10.621511,-33.270756,28.97546,75.3483,6.602 981,626.7477,488.288,20.483398,45.26346,6.586 981,320.90244,219.21817,20.615326,41.76065,6.554 981,131.35722,239.3949,29.112015,63.26825,6.522 981,313.01874,224.92854,19.966492,42.175797,6.508 981,434.48804,229.74535,19.333496,42.804703,6.318 981,5.688455,225.44067,29.061277,72.56024,6.207 981,-14.44401,213.58452,48.328476,136.28731,5.953 981,627.3948,-17.77882,17.039124,45.60952,5.9 981,438.10132,220.57161,28.18512,63.918198,5.871 981,-5.731547,488.10883,18.088898,43.773315,5.8 981,203.40875,246.20227,33.798294,55.39392,5.722 981,419.56863,229.48715,18.046295,36.07144,5.692 981,611.54,-46.423565,41.118774,98.26292,5.685 981,1.7442656,228.01434,20.006718,49.723785,5.68 981,534.0394,230.02126,29.30841,67.15279,5.626 981,324.3228,223.45601,29.526245,57.919083,5.57 981,-8.84547,464.53516,37.52561,90.829346,5.489 981,-5.319369,-18.60664,17.58681,46.022835,5.473 981,202.88303,249.91618,19.878784,26.556839,5.456 981,209.57562,248.5674,21.151077,29.568008,5.391 981,-5.05816,221.86938,17.889778,44.430084,5.29 981,33.620018,234.21375,31.30207,60.39276,5.284 981,-72.36207,266.1079,200.67801,462.51172,5.202 981,334.20166,217.2528,29.439575,58.918518,5.196 981,227.85919,237.91302,39.26593,93.59918,5.175 981,499.26697,208.61655,17.836243,49.756683,5.129 981,429.0503,220.91327,17.289886,38.89081,5.122 981,613.3094,455.51468,38.42511,106.143524,5.121 981,547.57666,280.10074,30.154114,64.97662,5.093 981,507.3541,247.72968,18.939728,32.71753,5.045 981,583.5301,412.8659,70.812256,175.59113,5.026 981,330.12515,218.89137,21.061829,40.162216,5.018 981,3.8983035,217.91795,45.694622,118.998,5.001 981,-39.651886,365.78357,109.74965,277.9309,4.932 981,268.42026,233.80913,19.704193,32.521072,4.911 981,217.19734,248.68568,22.541183,31.367477,4.907 981,232.59521,236.95114,19.603119,28.542175,4.907 981,258.33945,236.20119,21.926239,34.591354,4.863 981,-21.000937,403.51816,77.820244,174.6564,4.861 981,-18.420452,-62.34704,56.8884,147.14487,4.858 981,300.8118,219.86667,17.88852,39.21042,4.856 981,618.56287,489.48547,20.503906,43.18109,4.797 981,117.69741,227.8324,30.441628,68.94263,4.793 981,-10.202473,214.63107,28.712769,74.9704,4.774 981,145.00133,168.12442,23.896011,47.64624,4.769 981,186.10172,251.73196,34.21698,61.633514,4.756 981,157.29689,297.84845,29.463745,68.492615,4.726 981,519.1355,226.72601,30.562439,62.197266,4.712 981,18.458422,206.15753,40.904808,82.40225,4.708 981,218.05377,244.00208,35.974457,58.59143,4.638 981,536.2402,310.61505,143.60309,341.2337,4.627 981,245.39368,239.99252,38.832977,93.023834,4.611 981,615.98566,191.15239,24.996399,73.3401,4.607 981,571.6146,217.72371,16.849976,31.258865,4.591 981,552.7601,262.23035,31.349304,65.666565,4.586 981,169.05165,222.34785,22.321579,38.255905,4.581 981,225.27861,243.57867,21.838547,28.193542,4.542 981,35.13717,101.433754,30.44999,61.890175,4.528 981,344.3536,248.7275,26.037628,46.85994,4.518 981,138.9983,177.88562,21.945816,46.16925,4.511 981,292.65265,239.46432,38.045746,96.947754,4.463 981,82.31152,202.01398,19.967087,33.523224,4.456 981,530.74976,244.0083,20.82605,40.83972,4.443 981,163.16786,238.44753,41.03276,89.486404,4.431 982,275.61343,218.68251,17.300354,42.195297,8.601 982,476.72705,223.30275,15.027161,32.84941,7.922 982,481.7645,222.9552,16.15802,28.394562,6.925 982,236.4282,234.6821,30.151749,69.84982,6.696 982,444.87402,221.81111,15.310059,34.538406,6.607 982,275.79962,463.42126,17.623596,36.53662,6.245 982,-5.7981324,487.59387,18.18653,43.747925,6.191 982,-11.089069,-32.170322,29.811434,72.823456,6.086 982,-5.5762963,-17.712029,18.004862,43.55771,6.034 982,626.3047,488.27567,20.800476,45.409515,6.027 982,627.3611,-17.688368,17.041443,45.57793,6.014 982,2.6925473,210.12852,18.097988,41.42737,5.798 982,611.4558,-46.2935,41.190308,97.97219,5.708 982,617.3743,172.85349,21.929993,74.67055,5.66 982,436.6296,220.99417,16.113068,36.53073,5.585 982,451.6605,265.71582,32.00818,67.50964,5.575 982,377.84155,226.61139,20.894287,41.491394,5.573 982,-11.388561,473.81757,29.005646,66.978455,5.544 982,451.4343,227.92525,17.305695,35.980637,5.48 982,281.08734,224.89043,17.8078,40.640762,5.402 982,544.6817,228.43683,23.82367,33.581177,5.4 982,564.9625,228.61656,38.63983,86.469986,5.331 982,613.0538,455.30878,38.753967,106.48468,5.234 982,-21.1628,403.3688,77.5112,174.57858,5.164 982,531.3848,229.48549,40.689392,82.82274,5.159 982,-0.36649108,293.4311,25.472792,81.4906,5.121 982,439.8247,228.72354,34.483185,78.261536,5.059 982,583.9289,411.6828,70.6604,176.95007,5.054 982,547.381,228.14313,32.55316,52.277008,5.039 982,194.49826,182.87007,21.192368,50.703964,5.031 982,411.76212,227.91989,16.612976,33.65555,5.009 982,-2.8574347,194.43117,14.058773,32.977585,4.949 982,-18.220554,-61.8945,56.483345,145.37788,4.948 982,470.22528,221.48676,14.733551,29.589737,4.942 982,-72.350494,266.48834,199.94357,461.01837,4.904 982,368.9312,223.94293,20.74881,38.474,4.89 982,563.1335,227.63185,17.093689,28.750107,4.889 982,359.04944,221.62384,27.580048,57.69284,4.837 982,2.7094162,-17.015903,17.258406,42.929043,4.811 982,268.80328,463.47955,17.055115,36.47809,4.804 982,548.38904,231.43674,39.8833,98.18237,4.787 982,474.1493,249.75656,32.411133,57.081543,4.67 982,586.8359,237.6639,19.53778,31.241714,4.668 982,168.32552,228.73787,24.677261,34.929214,4.644 982,536.4719,311.09305,143.14893,339.5201,4.602 982,594.90186,237.29507,19.766052,31.923523,4.587 982,282.8796,461.41025,17.845306,34.395477,4.57 982,572.1571,229.36684,14.892456,26.7426,4.491 982,198.94228,236.05246,24.966476,37.710114,4.475 982,428.6812,209.55019,13.888916,34.235992,4.429 982,215.42891,228.3515,25.43274,38.589966,4.408 982,-5.4919887,450.32495,17.288721,43.6221,4.39 982,515.9172,233.17554,40.19928,97.718506,4.358 982,493.85098,230.5333,237.20688,512.2562,4.356 982,386.22314,223.0184,19.466858,37.140625,4.349 982,578.69684,238.4314,19.583801,31.609375,4.34 982,355.51697,222.83092,19.897919,38.350296,4.334 982,234.03384,231.06772,25.252777,48.670197,4.318 982,402.19836,222.0897,17.93045,36.793808,4.298 982,561.056,236.04037,22.311401,34.746277,4.298 982,451.9099,218.58398,15.115814,31.980072,4.29 982,460.56473,220.05374,15.04657,30.244858,4.28 982,91.49285,204.13463,17.390648,33.757904,4.275 982,554.0234,226.06976,19.166443,30.62622,4.249 982,152.2695,226.17233,24.080841,36.195312,4.221 982,-9.312328,55.70765,28.608908,76.473045,4.215 982,-4.790026,127.07622,16.315477,42.995636,4.184 982,580.7372,229.39105,38.391724,91.06061,4.181 982,-10.773038,103.37262,27.830746,71.322205,4.174 982,-10.120037,434.9293,27.700779,74.49277,4.173 982,-4.748913,105.07276,17.353928,43.67884,4.151 982,4.728542,191.56128,14.690796,28.493835,4.133 982,618.3241,489.69836,20.904907,43.341187,4.11 982,199.02335,219.19571,25.636047,41.697968,4.101 982,97.81738,251.53728,36.443985,59.838974,4.076 982,-70.80513,-186.97964,211.51373,452.5421,4.074 982,394.30707,223.18762,18.60672,35.7706,4.056 982,-7.555703,219.35712,36.26569,97.013306,4.045 982,569.9775,237.29037,20.211243,33.078217,4.03 982,421.79782,209.00917,14.105164,34.721405,4.019 982,-38.03732,-131.13237,118.89882,282.45132,3.99 982,289.69305,465.56967,18.712402,34.232788,3.985 982,423.33234,229.81819,35.623596,77.804306,3.978 982,114.804985,239.05032,41.36837,88.66443,3.958 982,533.3415,-188.19763,145.83258,437.08676,3.95 983,519.3993,218.84204,20.836853,37.523315,33.5 983,626.85144,489.14917,20.026611,44.227173,7.277 983,515.49884,219.21507,31.22406,55.9702,6.9 983,616.46906,210.38431,20.865051,49.554565,6.609 983,-10.877823,-33.477375,29.477322,74.96467,6.258 983,-11.988639,478.80905,29.720463,63.81601,6.095 983,627.3968,-17.542288,16.986816,45.154514,5.942 983,-6.35298,489.09143,18.728386,42.71765,5.925 983,509.13254,215.2541,15.378265,29.22931,5.771 983,89.121445,210.46481,21.476028,39.522995,5.608 983,611.4158,-46.774086,41.33728,98.55404,5.53 983,434.79797,210.95929,16.278107,34.70749,5.497 983,203.58911,219.54713,19.279984,45.489365,5.468 983,612.9071,455.32275,39.210876,106.62445,5.462 983,4.103614,208.76897,31.430748,56.61046,5.207 983,506.77008,225.2832,19.557678,33.59021,5.183 983,151.87674,226.64745,24.362457,41.238968,5.147 983,-22.227589,401.25934,79.27559,177.23431,5.131 983,-5.4147043,-19.109564,17.938217,46.06561,5.124 983,618.9303,490.59253,19.559814,41.91516,5.039 983,-72.81197,266.62506,200.09097,461.2614,4.965 983,-17.592756,-62.41086,56.162918,147.23154,4.917 983,162.30841,222.06061,31.216843,59.059113,4.873 983,6.0353,312.2059,11.937464,24.97464,4.863 983,583.83734,408.34674,71.11798,180.75653,4.848 983,92.35307,310.57364,16.269379,23.844849,4.736 983,-6.028037,231.42725,17.71143,38.57184,4.707 983,3.2244503,230.07611,19.229902,37.666565,4.686 983,25.201513,216.48146,21.210554,34.934006,4.664 983,217.01532,183.92426,22.39212,50.9225,4.636 983,536.92694,311.2296,142.45447,339.26404,4.626 983,139.6193,211.75172,15.924164,26.047623,4.595 983,524.14996,211.21802,15.704041,27.91542,4.589 983,83.95363,313.80383,17.068214,28.033203,4.584 983,171.90924,196.84723,15.920364,29.913254,4.567 983,443.42288,205.97318,17.233673,35.207565,4.517 983,83.82884,153.76025,31.655869,59.50345,4.517 983,451.134,202.8342,17.669678,39.42552,4.514 983,498.8764,220.96225,18.775208,34.71521,4.512 983,517.4742,212.03111,14.676941,25.959991,4.491 983,-2.9667284,305.63385,12.9008665,31.680115,4.477 983,100.26986,310.1837,16.324593,23.886414,4.474 983,500.27524,206.8936,15.228973,30.768814,4.395 983,-70.95881,-188.65706,212.15485,455.5846,4.366 983,596.7536,322.36993,14.429932,24.842468,4.347 983,599.9929,210.54742,30.655212,54.296326,4.331 983,76.63024,203.46046,31.56926,55.715836,4.317 983,91.80328,318.8706,17.156952,29.618958,4.314 983,2.0522594,211.95062,19.715609,38.735016,4.311 983,528.0296,223.8334,20.54065,36.541504,4.248 983,588.7762,322.71457,14.029907,24.69989,4.226 983,521.87494,230.67645,20.402222,38.22531,4.219 983,494.08826,229.06924,236.96802,514.1162,4.201 983,555.7584,195.79518,19.376526,45.16606,4.198 983,-37.702454,-132.05759,118.86098,287.83163,4.186 983,121.48427,108.5717,31.584656,69.43057,4.183 983,529.97314,257.94843,19.85608,33.283813,4.167 983,528.2671,212.0572,18.546814,34.019287,4.166 983,268.8097,222.18356,16.472412,34.587036,4.14 983,207.0221,173.03685,29.320679,71.018326,4.132 983,76.56575,313.5429,16.139969,28.365906,4.12 983,195.31421,211.08885,21.02356,47.128433,4.117 983,538.3413,259.1056,19.834839,31.380585,4.104 983,349.52927,211.09236,14.6310425,24.88852,4.092 983,-3.3989527,288.04532,13.556946,33.045715,4.078 983,123.93918,213.97702,15.662491,29.227005,4.076 983,3.0239635,-18.934921,17.216646,44.726105,4.023 983,507.82874,229.36337,32.758057,61.403168,4.019 983,-4.7435102,248.6429,15.733481,38.937546,4.009 983,130.98471,211.60059,16.058105,28.274643,4.007 983,490.46393,220.89781,19.182373,34.236572,4.006 983,619.233,196.50415,16.763428,41.769455,3.999 983,547.11005,224.97995,42.515503,99.59973,3.994 983,627.9141,201.2866,17.706116,46.370255,3.989 983,322.48987,277.8648,19.534027,27.959137,3.988 983,155.36061,234.79861,35.703903,72.93555,3.975 983,153.78458,178.15459,20.223358,41.16313,3.974 983,97.731285,168.24661,21.423012,48.283493,3.966 983,52.336483,210.5581,15.805599,32.978027,3.952 983,139.56091,224.98033,20.031387,33.18428,3.95 983,178.75854,212.46169,16.661072,28.970749,3.93 983,530.13544,221.9359,42.059875,98.36311,3.927 983,509.85596,202.19963,12.804077,25.159286,3.924 983,296.58746,264.91183,19.492584,32.154358,3.915 983,212.54326,212.2098,28.538559,61.769577,3.901 983,222.53589,238.6942,31.173431,57.45021,3.9 983,-5.375464,344.8962,16.758633,40.810883,3.893 983,490.80533,201.2591,16.634888,38.342438,3.885 983,13.281363,315.927,12.107193,21.297607,3.877 983,197.04562,191.5843,29.99768,68.34508,3.851 983,598.3476,213.47734,37.00421,95.93672,3.849 983,179.12064,195.96808,17.360367,31.635803,3.841 983,350.70654,231.15004,28.647705,57.121567,3.838 984,6.2675753,215.88625,23.796307,50.437454,37.751 984,626.9484,487.6571,20.049377,45.234436,8.177 984,-6.1361303,488.91855,18.281384,41.68564,6.716 984,-9.037407,466.56464,37.791203,88.90674,6.512 984,627.4507,-17.405777,16.87091,45.003025,6.122 984,-17.162453,-63.007908,56.422703,144.7216,5.954 984,618.31683,213.423,18.594116,38.86682,5.862 984,-5.6043477,-18.854774,17.172894,44.498302,5.823 984,-20.894081,405.43695,76.90256,173.94519,5.818 984,115.692535,231.59312,18.118256,40.093155,5.71 984,-11.063606,-32.377075,29.215317,73.10425,5.687 984,157.26286,148.35117,28.596176,59.214386,5.637 984,584.7092,410.74774,70.33435,178.56909,5.585 984,613.25336,457.77722,37.896423,103.73779,5.549 984,121.56146,223.61627,18.807327,44.53232,5.448 984,618.6627,489.40137,19.718811,42.4411,5.365 984,623.369,-34.87702,26.2229,74.66566,5.317 984,171.18268,194.19266,17.501587,34.64615,5.166 984,430.05063,206.96619,13.623962,20.347672,5.061 984,154.62338,219.95033,19.59372,35.780075,4.913 984,179.40565,166.75435,19.070877,38.366196,4.91 984,130.44296,224.01073,18.895172,43.43547,4.904 984,110.589615,214.16374,25.806808,63.890335,4.866 984,260.80347,186.77367,14.613037,33.88054,4.853 984,356.4824,359.92374,17.042969,34.442657,4.837 984,-72.39542,266.95312,199.71686,460.15112,4.801 984,50.373993,215.04884,19.354637,44.40602,4.785 984,5.3511286,470.94257,37.77506,89.51941,4.781 984,400.07153,216.98735,24.522736,36.778046,4.773 984,3.7655044,210.11679,36.992153,78.54239,4.763 984,603.8476,-57.035995,52.828552,135.12094,4.697 984,393.53192,218.69066,35.641785,53.827194,4.686 984,602.98334,211.01237,17.697388,36.113235,4.611 984,269.55005,199.55113,14.103119,27.460587,4.605 984,252.80002,185.20517,15.3289795,33.14598,4.593 984,437.96738,205.8688,13.583496,21.99884,4.59 984,-4.867707,188.5461,17.739384,40.52739,4.585 984,142.65596,215.50417,28.638153,62.175827,4.582 984,268.20496,209.0024,15.213226,27.734253,4.559 984,51.569096,211.83194,29.879032,61.23636,4.554 984,376.5926,218.44246,36.86035,54.23137,4.527 984,-8.704934,218.29366,37.902,88.198654,4.515 984,628.3151,196.46803,15.677063,42.34343,4.497 984,170.31784,165.6007,19.15155,38.695663,4.483 984,315.63684,216.62157,32.485657,49.923996,4.477 984,628.83685,123.9734,15.786621,43.568687,4.472 984,264.92084,215.48953,18.731476,38.184677,4.462 984,370.42142,215.33035,20.588287,30.78154,4.439 984,179.7222,194.9971,16.46585,33.555145,4.433 984,361.48178,220.03256,36.910522,50.780365,4.432 984,536.9425,312.57568,142.21509,339.1151,4.403 984,276.42853,187.07391,16.11087,34.651062,4.402 984,549.6647,487.0639,29.365967,54.026855,4.387 984,561.00543,192.22316,22.016174,47.845154,4.372 984,441.66254,227.38731,22.777893,36.356613,4.333 984,260.47665,210.16472,15.534943,27.7809,4.327 984,194.56122,245.1405,31.425018,50.958862,4.326 984,314.32727,181.85724,18.63977,44.594055,4.319 984,147.25342,219.87195,18.837463,35.18898,4.292 984,492.7608,226.38928,238.53711,518.56866,4.271 984,-5.0667434,225.70026,18.787489,45.233917,4.262 984,422.27338,208.41235,13.032776,19.191467,4.261 984,35.13494,224.91281,20.098396,38.65497,4.256 984,179.03833,242.56383,20.46048,35.330215,4.253 984,253.40941,209.37477,15.479324,26.697647,4.24 984,-4.092331,444.91425,15.72527,38.5643,4.213 984,432.74783,225.67206,23.480011,38.679077,4.203 984,142.36734,237.87274,29.99704,63.569946,4.203 984,108.572174,233.76476,17.497627,37.521133,4.187 984,171.6758,124.97087,17.406708,28.798706,4.174 984,125.01374,-14.7386055,31.877419,62.555748,4.169 984,2.2337203,156.0626,19.053406,40.30699,4.165 984,3.5855258,448.7357,16.696,35.583893,4.163 984,283.88962,226.09242,18.119965,32.387283,4.14 984,2.2878175,490.9306,18.858002,39.301147,4.137 984,234.5331,171.46172,19.589386,39.98561,4.113 984,-5.0343394,245.4914,16.889896,40.4646,4.087 984,-3.9600153,349.36328,14.690961,37.62607,4.081 984,-4.386778,460.32224,15.923914,37.61502,4.07 984,415.37103,208.50713,11.695343,19.001389,4.063 984,187.90987,166.5895,18.949844,38.95778,4.061 984,29.836567,220.4168,29.917175,61.40724,4.06 984,2.386645,173.43378,20.100805,41.63777,4.058 984,-4.970774,153.83627,16.93884,42.1922,3.997 984,-5.2731028,170.94858,17.63554,42.69658,3.971 984,-4.592099,114.830345,17.103209,46.21418,3.961 984,306.58197,175.25899,18.56253,41.35617,3.957 984,162.06361,208.52966,18.604446,36.193283,3.957 984,3.0136955,104.22722,18.012249,50.373276,3.948 984,349.418,355.7097,15.34259,30.855316,3.94 984,597.9743,214.42,37.082275,96.79704,3.94 984,187.55998,-3.6234818,18.943329,36.678467,3.93 984,163.06018,191.55922,18.471893,36.52304,3.912 984,363.7611,359.9803,17.700073,33.48654,3.903 984,406.95673,207.50143,11.384033,19.642883,3.891 984,374.45724,220.06595,26.332397,36.58426,3.885 985,345.89017,198.43721,20.460602,38.208176,11.368 985,3.3997202,59.04668,31.583637,79.13097,7.163 985,-4.746581,199.8068,18.22754,46.226105,7.072 985,429.3141,206.96898,14.329742,24.136078,6.752 985,-11.710812,476.71176,29.825348,64.80313,6.7 985,169.93533,213.13019,21.140778,35.47165,6.626 985,571.3277,217.14998,18.581482,31.883179,6.621 985,412.1425,208.14282,16.701538,27.530045,6.488 985,2.2115798,213.37628,19.593672,48.231537,6.457 985,177.1307,218.9295,21.520508,36.331467,6.376 985,-5.9380007,488.86252,18.48545,42.571014,6.292 985,626.72784,488.07043,20.116394,45.909058,6.224 985,-5.9666247,-18.571505,17.59141,43.63097,6.206 985,331.5589,197.94263,19.291962,39.330902,6.077 985,67.17311,230.84225,19.334717,38.275757,6.009 985,-11.236715,-31.084656,29.169672,70.49389,5.999 985,54.909294,206.76952,28.714577,63.405197,5.998 985,65.20497,210.71584,22.460342,48.749313,5.935 985,371.51666,198.73982,16.70642,30.354706,5.882 985,627.3743,-17.675581,17.029968,45.653355,5.858 985,5.157943,213.25497,27.956146,63.270996,5.799 985,403.24597,208.38312,17.791199,30.240967,5.772 985,420.43335,210.49669,15.863342,26.810913,5.716 985,395.30005,207.14291,18.020752,30.904007,5.685 985,-4.441761,227.92674,17.978447,44.43657,5.67 985,611.5649,-46.633724,41.127747,98.84788,5.669 985,412.50674,198.51318,14.325287,25.956558,5.66 985,335.31305,192.79639,28.488892,50.831436,5.654 985,-4.9046206,132.45166,18.141275,40.9028,5.652 985,584.40607,411.7698,70.44464,177.20096,5.65 985,555.75085,217.33755,17.979614,28.934723,5.62 985,210.73465,214.25294,18.263382,33.42224,5.595 985,563.20624,215.52617,18.667358,31.91687,5.591 985,362.5296,198.39198,17.939606,30.696869,5.545 985,353.18802,196.20146,19.160553,34.914505,5.517 985,163.01685,209.90541,19.802582,32.295914,5.477 985,194.9243,212.46426,18.85788,35.90036,5.467 985,410.81903,218.70975,19.194244,29.18843,5.45 985,612.93286,456.80347,38.77295,104.964905,5.381 985,-21.164877,405.12177,77.9658,173.83704,5.368 985,30.342026,146.38998,32.625343,69.32527,5.336 985,-16.54003,-63.939102,55.364105,145.63199,5.312 985,-8.932992,203.32263,27.401318,66.197815,5.308 985,-5.3084526,152.40587,17.607244,43.76204,5.274 985,403.80554,197.98065,15.615784,29.010193,5.228 985,598.67163,213.00235,12.710693,21.404633,5.112 985,598.24084,219.24301,38.505066,102.38446,5.088 985,436.6507,208.04819,15.299347,25.40538,5.079 985,0.73456883,135.02452,20.75764,41.034195,5.016 985,39.805023,216.98508,23.269424,41.81302,5.003 985,-72.460434,266.85086,200.45506,460.4941,4.89 985,582.20386,213.85686,12.588684,20.010727,4.814 985,73.29899,214.5637,21.84919,44.572464,4.782 985,419.4307,220.23149,18.875916,29.246933,4.762 985,411.71756,185.75237,15.738037,30.693558,4.76 985,204.23006,210.39929,18.38359,37.040222,4.756 985,407.45374,233.2799,26.346863,32.903015,4.727 985,578.7872,216.81534,18.96637,34.37259,4.717 985,0.10982752,172.42616,26.350819,78.25877,4.654 985,617.3202,226.19936,22.945312,47.84453,4.635 985,346.93597,167.73773,18.13272,37.82727,4.601 985,275.87827,214.6154,18.451874,30.314377,4.56 985,64.679855,71.63223,34.283455,66.18976,4.551 985,464.86264,172.86565,20.66745,46.653366,4.528 985,378.3737,200.3576,16.133942,28.470627,4.516 985,323.06644,190.47481,19.386078,39.869354,4.516 985,438.41418,166.70529,28.917816,63.123566,4.505 985,-14.957842,160.22469,50.48198,132.6627,4.472 985,-5.695629,66.28122,20.515215,53.473854,4.46 985,428.546,188.42557,15.574341,28.528107,4.46 985,283.29724,213.96666,17.665253,29.255783,4.456 985,605.30975,211.63675,13.0894165,23.077698,4.453 985,590.768,213.12607,12.5078125,20.1857,4.423 985,493.1399,227.16437,237.98059,517.4217,4.377 985,574.92426,214.24805,12.719849,19.83934,4.368 985,618.4423,489.18146,20.239563,43.60553,4.363 985,554.3576,219.94954,34.87036,54.748764,4.361 985,536.1866,313.3288,143.56018,338.96185,4.31 985,547.8261,217.41098,17.761292,27.616516,4.292 985,587.3489,217.15897,30.750427,58.884766,4.266 985,409.98874,161.9859,20.180084,41.103012,4.256 985,613.8281,218.84276,36.930847,107.35878,4.254 985,184.74338,213.66351,20.271362,35.938736,4.25 986,371.5207,226.6937,23.535126,53.019867,78.434 986,334.4555,231.9123,20.536224,42.910187,53.096 986,286.62012,233.55046,25.897766,49.235214,44.489 986,240.91574,230.1421,24.354095,45.468613,10.121 986,205.74889,240.3403,26.616455,49.026672,9.954 986,553.365,211.60707,22.66748,41.17073,8.732 986,316.53192,228.14821,14.869751,30.32103,7.536 986,376.19217,222.88278,19.815338,34.424896,7.444 986,194.17085,221.48453,21.290558,34.85263,7.38 986,366.21994,227.13968,19.654236,42.942627,7.336 986,342.6173,231.3866,19.585388,40.648956,6.956 986,380.6207,228.29926,22.292542,45.568085,6.794 986,127.37499,220.66718,20.8863,39.1662,6.747 986,-11.93214,478.0232,29.907635,62.778625,6.459 986,308.39575,227.22887,16.68341,32.457108,6.363 986,-6.217634,488.58188,18.610048,42.282257,6.333 986,276.38922,228.6539,18.954712,31.044464,6.327 986,614.72754,155.96738,26.334106,76.93521,6.11 986,-5.8042073,-17.04234,17.536823,43.64877,6.104 986,230.09889,232.21333,29.91304,58.792923,6.075 986,325.04837,226.03168,15.612335,27.110077,6.055 986,295.46576,228.88657,21.912292,43.670044,6.031 986,621.8438,478.85736,28.637268,65.673584,5.991 986,617.81116,209.15744,19.18457,38.591583,5.969 986,276.71964,233.9796,21.937164,44.219864,5.909 986,627.0951,-19.38163,18.015076,47.607147,5.859 986,354.42102,228.35535,19.837372,41.654175,5.832 986,268.24918,227.87979,17.389984,30.123138,5.822 986,184.80478,232.18655,23.606476,42.6344,5.808 986,622.81805,-33.84161,27.355408,75.61401,5.718 986,-0.14766932,224.76076,21.457504,45.764023,5.709 986,-11.424594,-31.155539,30.1007,74.11804,5.701 986,212.61044,156.06,28.54512,76.4023,5.636 986,495.20187,226.02933,22.901825,36.97522,5.603 986,-17.053864,-61.487267,56.256836,144.27527,5.577 986,603.2746,436.02884,54.987488,138.69687,5.57 986,247.57784,237.29034,25.026474,49.54126,5.529 986,332.74905,226.18393,15.602417,29.27121,5.492 986,123.00888,225.1998,32.0549,53.458527,5.467 986,207.569,150.3606,23.300262,51.743652,5.338 986,-4.3151455,220.07936,17.301697,40.055405,5.283 986,-73.10988,264.47894,201.81233,464.12665,5.267 986,192.96075,233.58734,23.811066,44.994324,5.077 986,-21.262974,404.2823,78.43432,174.38702,5.062 986,-4.9418697,155.76054,16.83875,41.16263,5.061 986,609.3965,167.8646,21.818176,52.25058,5.055 987,532.5298,222.92961,33.43512,60.44484,73.1 987,592.202,224.31503,24.062866,51.795715,65.405 987,312.30627,211.8093,23.8732,45.318787,36.912 987,456.6876,225.30176,23.098328,44.558258,22.459 987,545.5095,217.11786,30.48761,62.731262,10.393 987,-5.7821155,-18.013813,18.211184,44.295055,9.411 987,382.66376,206.36772,21.993713,35.018356,9.313 987,426.6573,206.16414,21.169006,40.678818,8.4 987,-11.012325,-31.7542,29.217531,71.10699,7.614 987,461.79773,231.29747,25.331604,48.17195,6.754 987,536.3831,215.99678,22.596619,43.81639,6.746 987,443.3131,224.27454,30.117096,66.0647,6.734 987,2.1944137,224.1097,19.775074,43.69536,6.609 987,43.786236,216.53838,31.304127,59.376816,6.565 987,-12.030651,477.94238,30.214426,62.781982,6.439 987,587.0917,223.27539,20.688416,41.63504,6.379 987,259.59662,170.85577,31.900848,70.942154,6.104 987,257.2217,209.12102,32.31607,54.71968,6.059 987,56.166245,217.92796,23.47116,46.271774,6.052 987,626.5378,488.49457,20.679688,45.867126,6.009 987,-6.301317,488.82855,18.965275,42.511597,5.892 987,394.57047,234.36865,34.921448,57.40863,5.884 987,623.5122,-34.569645,26.209167,77.58139,5.792 987,360.48465,246.7551,36.11969,53.30832,5.751 987,257.60052,209.3258,20.266235,34.08197,5.738 987,344.82343,248.73906,39.604218,51.616623,5.69 987,603.51324,-54.51129,52.649963,136.54233,5.622 987,168.37186,213.60619,20.833282,34.941864,5.615 987,627.35156,-17.753496,16.98291,46.618332,5.597 987,-17.8631,-63.39931,56.059746,143.36751,5.582 987,520.87524,226.0463,32.26642,63.263977,5.546 987,2.5983238,-17.2756,17.325653,42.472443,5.512 987,442.4583,216.39545,20.738525,42.331146,5.423 987,583.5132,412.07843,71.4801,176.22021,5.373 987,-73.8508,264.51898,202.785,464.2317,5.355 987,-6.230444,2.1304321,19.00354,41.676075,5.287 987,306.92816,211.6368,41.61133,58.779068,5.281 987,145.14746,167.54285,29.846344,67.73981,5.255 987,429.9997,201.80641,27.103851,55.192673,5.247 987,612.5288,456.5479,39.545715,104.87616,5.215 988,513.57056,204.01254,22.190063,48.42755,57.325 988,49.832287,227.59023,35.957623,66.53935,10.823 988,619.2648,197.01802,19.073975,45.36943,9.737 988,90.66217,205.37389,30.78357,64.50014,8.911 988,362.5381,214.27136,23.270325,39.031067,8.823 988,77.21286,209.73227,33.24579,60.45175,7.593 988,-12.407759,477.96042,30.7623,62.654144,6.526 988,377.67258,206.75233,19.033905,33.96602,6.454 988,177.41254,196.29962,20.143768,41.08763,6.392 988,478.53955,205.51862,29.07431,56.542236,6.264 988,626.9625,-17.662292,17.186523,46.88411,6.26 988,527.6132,205.47049,20.7276,46.145264,6.205 988,626.6494,488.4402,20.400452,46.004517,6.197 988,-6.539428,489.35867,19.3799,42.524445,6.187 988,498.89053,205.124,20.534576,38.89969,6.155 988,358.49127,183.25731,29.00354,62.43042,5.971 988,102.337616,207.80537,25.015907,52.05925,5.844 988,-17.434622,-63.898956,55.777977,146.89134,5.676 988,612.7386,457.66537,38.674133,103.11197,5.668 988,501.86407,207.90862,39.68872,61.841995,5.584 988,544.7883,201.60663,21.3078,46.169464,5.553 988,-5.407722,-17.122795,17.046,41.56058,5.515 988,610.7827,-47.302284,41.983704,98.41156,5.505 988,378.08994,192.25488,17.83664,34.827423,5.442 988,351.83954,147.4638,29.967987,78.7088,5.387 988,387.5506,207.2115,17.37378,32.17549,5.25 988,321.47437,209.4589,19.589935,35.85202,5.235 988,65.329834,215.83806,34.49086,58.836075,5.211 988,4.1492867,201.43048,14.442301,32.396637,5.188 988,409.24472,253.31831,22.14743,31.077133,5.182 988,48.34336,226.95016,24.852737,45.243256,5.174 988,-2.5861082,191.11394,14.375515,34.867874,5.155 988,584.1179,412.0434,70.56073,176.3891,5.141 988,371.1765,193.7963,28.347046,55.967117,5.117 988,345.5478,6.4885654,21.051178,40.479958,5.111 988,170.04422,206.46208,20.63913,38.548782,5.039 988,-11.348608,-32.280216,29.545036,72.33444,5.032 988,314.44397,-9.101635,58.350464,115.43489,5.021 988,489.72845,205.73045,20.220306,38.186447,4.999 988,347.77255,196.24525,19.294281,40.077484,4.984 988,-73.106834,266.4384,200.89465,461.94272,4.98 988,537.6919,201.79913,20.111877,47.2706,4.825 988,212.59398,202.32753,17.56778,38.276093,4.82 988,475.0201,211.17433,22.027557,41.703125,4.814 988,484.6086,137.6371,29.56723,97.580795,4.805 988,396.92218,208.73782,16.189148,30.031952,4.785 988,161.3339,210.10028,21.818192,38.292236,4.766 988,570.22656,270.67017,20.248047,26.539825,4.758 988,489.94827,-180.88194,235.42123,424.40225,4.747 988,-21.313862,403.25903,78.38678,174.29279,4.74 988,562.3019,269.2923,20.499573,27.348572,4.738 988,321.7052,224.6257,22.100311,34.71466,4.692 988,318.09348,190.18225,27.579315,60.15715,4.689 988,387.6577,193.31062,17.281982,34.456528,4.686 988,536.538,310.1114,143.32886,341.19025,4.668 988,596.469,205.11719,39.94336,96.57837,4.662 988,577.75494,271.7162,20.889526,26.446533,4.648 988,-4.308829,225.69118,14.977488,37.242508,4.621 988,354.29913,7.0853024,20.681702,38.701675,4.545 988,3.1967134,234.3596,16.755508,35.952408,4.534 988,492.2276,207.95459,30.966614,57.86429,4.529 988,410.2199,234.66212,33.595215,47.830307,4.492 988,309.6753,210.22472,16.638947,30.10994,4.491 989,598.85895,199.54828,29.987366,62.897675,45.973 989,210.34595,212.93797,31.651047,59.677963,17.035 989,339.73495,204.55579,17.131683,28.062485,8.684 989,258.06577,209.07831,20.90982,45.9989,7.655 989,159.04262,216.61461,25.410934,48.215683,7.503 989,627.22925,490.1643,19.665894,42.543884,7.381 989,344.79535,204.87169,19.033875,31.698639,7.263 989,-17.719671,-64.64427,56.44545,150.80583,6.942 989,333.9514,202.53763,15.72464,27.538208,6.888 989,-8.724253,465.90674,37.545914,90.19452,6.808 989,1.0637355,228.30734,20.429619,39.41638,6.733 989,411.67822,196.07661,17.43985,41.36487,6.698 989,-6.239118,489.31354,18.652815,41.870422,5.999 989,615.54895,202.29402,21.776001,54.033188,5.899 989,553.4231,201.13539,20.006836,33.156998,5.842 989,369.071,192.6644,19.792389,41.073837,5.694 989,627.31024,-17.812914,16.90802,45.949368,5.543 989,604.1832,434.9993,53.831604,139.3486,5.539 989,623.27057,-34.17973,26.342957,75.2771,5.515 989,28.972641,222.4393,29.711967,64.69852,5.467 989,-5.416558,-17.138882,17.122934,41.731586,5.416 989,-21.287437,404.07178,78.60397,173.87573,5.157 989,325.11185,199.6251,15.141907,27.246262,5.115 989,-72.56062,264.94827,200.28618,463.68564,5.104 989,-11.194822,-32.149548,29.440922,72.233604,4.948 989,489.46478,-182.06519,235.97717,428.2634,4.911 989,331.8706,211.53583,18.942993,31.848953,4.883 989,1.6431248,139.9195,25.62015,66.70511,4.795 989,94.55818,238.95639,28.712952,68.40683,4.719 989,547.1912,211.33661,22.987244,36.974426,4.714 989,353.9162,220.77402,20.687347,31.90335,4.713 989,258.7357,211.93744,30.399414,62.0318,4.702 989,602.8899,-55.49496,53.185608,134.59126,4.637 989,536.2028,311.05872,143.76825,341.9292,4.604 989,5.752468,469.11554,37.711624,92.30432,4.562 989,619.0118,493.09122,19.48523,37.68161,4.521 989,129.6427,209.39018,20.428146,35.018356,4.497 989,211.8255,207.53595,19.180328,41.53482,4.491 989,585.8676,-102.2334,75.08734,238.0648,4.488 989,547.77905,217.82382,31.369629,55.839355,4.458 989,627.0203,203.85771,19.180115,50.67119,4.451 989,493.7503,226.91644,237.47943,516.70337,4.437 989,-14.814089,192.55775,48.108124,129.82835,4.373 989,322.97638,210.9657,19.396393,31.746826,4.367 989,5.137806,222.42708,37.39977,102.6136,4.353 989,87.072975,219.99704,27.954536,57.270508,4.342 989,219.10219,223.57004,31.513107,63.74124,4.339 989,346.37457,220.30319,20.043945,32.866577,4.334 989,591.2069,181.07211,45.25006,102.42932,4.324 989,39.602585,220.99142,22.27092,43.454834,4.288 989,363.00183,202.32962,19.690125,35.128098,4.25 989,-12.071672,265.07056,30.560968,70.8165,4.236 989,49.992218,211.30809,17.640923,34.81833,4.188 989,222.42537,205.12459,11.470596,24.11705,4.116 989,548.7133,189.3052,28.676636,56.95488,4.071 989,427.32394,201.64383,18.687897,39.53247,4.059 989,580.0637,210.60916,42.792603,75.62906,4.012 989,314.80304,211.72581,18.961761,31.061417,3.99 989,323.52563,204.3469,39.82721,74.55557,3.986 989,611.4481,207.11493,37.552734,93.54059,3.981 989,-6.67471,249.30429,18.982697,39.966003,3.963 989,603.96313,214.09634,31.916016,64.14972,3.962 989,353.5214,204.78925,20.167725,34.003082,3.942 990,452.6224,211.57364,16.97348,34.34613,18.686 990,491.52124,210.60432,17.057556,36.492615,12.667 990,467.0943,214.04785,17.158325,33.173706,11.551 990,484.924,211.9746,16.021484,34.538803,10.189 990,576.657,207.66301,19.967773,39.285706,9.487 990,571.5486,211.7522,17.362793,39.774017,9.456 990,498.55045,209.1682,18.848297,40.100494,9.265 990,564.18506,206.58798,18.101318,40.205536,7.577 990,-5.638318,-18.27042,17.865498,44.25909,7.551 990,377.5943,201.57544,18.971527,35.46985,6.867 990,458.3803,216.35985,18.810059,33.03003,6.711 990,-10.847961,-33.25628,28.894178,74.60382,6.654 990,223.5546,228.1483,27.249008,60.087082,6.558 990,-6.044029,488.8025,18.570232,42.32556,6.444 990,-11.608186,476.78854,29.500767,64.81918,6.442 990,111.85867,227.24237,26.342255,61.380554,6.173 990,627.08545,-18.441416,17.472961,47.190353,6.063 990,621.75464,478.24954,28.893005,66.57834,5.844 990,61.57302,224.3083,30.543678,61.236526,5.757 990,4.172639,214.42683,28.977772,72.374374,5.431 990,93.68602,225.12749,31.421333,62.62416,5.43 990,611.02014,-49.27118,41.566772,102.9003,5.219 990,-72.30942,264.66156,200.4228,464.575,5.144 990,476.45258,211.17941,14.9758,31.25029,5.115 990,583.39484,411.85016,71.355225,176.59235,5.045 990,2.7993536,-18.240938,17.662956,44.579376,5.037 990,505.7389,214.5173,18.770569,39.35002,5.036 990,57.077057,221.05614,21.251991,46.34218,4.994 990,401.49228,206.76141,19.18045,38.833572,4.985 990,-17.45644,-64.23469,56.6702,142.49261,4.967 990,-17.26214,437.03934,54.673798,139.85757,4.907 990,370.01715,211.29024,20.93097,37.23494,4.881 990,585.62946,-99.21451,75.48755,231.50792,4.825 990,-40.306313,364.53864,110.85827,277.1978,4.814 990,365.60236,30.403122,27.542145,83.48781,4.639 990,71.6941,237.42587,23.96856,40.33499,4.603 990,536.4416,311.22025,143.70502,341.6566,4.594 990,36.2636,217.17899,38.07932,79.65469,4.593 990,491.31824,224.88597,18.400879,34.87715,4.575 990,268.7906,223.11343,27.047699,55.567474,4.481 990,242.64992,220.44426,18.110428,39.259537,4.446 990,30.247755,206.1752,27.346106,63.531647,4.44 990,120.582245,223.69603,19.306168,40.882614,4.432 990,494.0542,227.29883,236.73322,514.5185,4.423 990,489.69662,-179.35983,235.82938,421.9154,4.356 990,444.45096,203.48798,17.534485,34.209747,4.3 990,-10.064445,224.41455,28.556961,73.56818,4.278 990,66.43703,220.72101,40.310318,88.932434,4.267 990,224.83917,217.82573,20.756226,37.91127,4.229 990,-5.6301804,215.48602,18.192648,43.870056,4.203 990,13.869276,208.29555,28.664442,69.26283,4.196 990,466.58917,236.74306,18.942413,30.219742,4.169 990,-13.183713,189.36276,46.181713,134.36697,4.109 990,474.50037,228.15533,18.197815,29.879944,4.097 990,-10.274114,-5.314724,41.015842,97.236374,4.095 990,435.33313,208.11812,17.836731,33.733414,4.085 990,483.66577,226.10553,18.557892,32.802612,4.08 990,89.39621,225.28146,21.520203,35.78308,4.044 990,450.6772,196.05673,17.771881,37.4012,4.021 990,82.49198,231.49236,32.903984,60.94847,4.004 990,-4.2409067,204.512,15.534825,37.644226,3.994 990,557.6382,213.4866,17.646912,37.240845,3.963 990,172.75122,246.91159,29.730164,65.79266,3.938 990,373.2523,204.57999,28.36621,50.56552,3.931 990,232.41942,220.91425,20.445175,41.310577,3.92 990,237.1875,207.46095,13.556152,18.821564,3.9 990,384.44983,210.33223,22.107819,37.81401,3.878 990,370.2984,211.53561,41.3349,85.28284,3.872 991,555.90045,214.01556,23.178406,46.897217,76.854 991,594.9769,210.53209,21.79187,44.318832,48.693 991,537.40497,212.30609,21.063232,44.62326,28.596 991,587.1108,211.63036,20.304565,41.39586,23.008 991,594.7695,180.23553,31.147522,74.996765,17.221 991,579.44446,211.36243,19.361755,41.403183,16.404 991,475.42493,213.93076,20.559387,41.698624,15.992 991,545.1809,212.70285,23.005615,46.18701,9.245 991,614.6245,175.90843,25.05664,79.82092,8.655 991,443.70325,211.09267,15.420349,30.99527,8.581 991,429.15662,202.59615,15.315399,33.49597,7.851 991,583.5343,186.5344,29.33551,67.2337,6.752 991,436.70377,204.35007,14.652588,32.439377,6.735 991,-5.607786,-18.510681,18.095715,45.347523,6.606 991,568.2166,212.75095,20.361877,44.645233,6.451 991,-8.452748,465.00177,37.138348,91.61139,6.368 991,44.634773,210.87294,31.006088,66.656235,6.326 991,627.3215,-16.501629,16.917175,42.82623,6.197 991,121.83106,238.99185,20.990974,39.70056,5.993 991,468.4894,211.47327,20.114777,42.237335,5.964 991,-10.685513,-33.072548,29.099667,74.24538,5.878 991,-6.2035728,488.75446,18.663876,42.558655,5.633 991,621.81494,478.0251,28.90393,67.46155,5.601 991,433.67923,215.48843,20.713043,37.18373,5.594 991,-5.2626762,231.16475,17.984838,44.41188,5.568 991,610.3678,-46.697247,42.201477,97.98348,5.546 991,115.37502,237.24751,18.980736,42.426163,5.525 991,19.912003,210.36832,37.04863,81.05368,5.267 991,451.33347,305.3478,42.240204,97.02997,5.261 991,426.17404,210.93729,20.696716,35.88965,5.221 991,434.9934,294.96252,42.4852,92.72266,5.151 991,-72.4354,265.19427,200.40912,464.1931,5.05 991,460.70798,278.14294,53.86136,127.66846,5.025 991,-17.579065,-62.405777,56.18779,145.29086,4.92 991,583.4266,409.92453,71.37695,178.7424,4.912 991,536.5701,309.52106,143.68109,342.3059,4.882 991,411.99466,265.71295,54.79709,125.079346,4.815 991,420.43347,8.557594,30.49228,86.36444,4.759 991,422.35745,201.82346,15.161133,34.994507,4.741 991,603.3224,1.6715746,18.082764,29.718056,4.723 991,-40.277786,365.6162,110.515434,276.51025,4.709 991,425.43494,246.82071,58.95349,125.910706,4.707 991,395.2209,247.059,54.832336,128.46223,4.649 991,437.3859,207.4838,27.942627,51.79245,4.612 991,506.25317,218.01144,19.778198,35.554733,4.611 991,258.52902,216.8458,22.230865,47.46875,4.607 991,548.87415,191.52673,38.869385,71.50772,4.563 991,-11.271962,215.49512,28.817287,72.85605,4.555 991,493.966,228.25943,236.88055,513.2484,4.499 991,546.7118,-13.849419,17.101624,36.061787,4.462 991,586.02136,-102.950134,75.2793,237.26106,4.436 991,555.29114,-14.684729,16.876343,36.04826,4.402 991,458.03967,213.81578,21.612,41.17694,4.401 992,546.3435,207.38162,22.172607,52.243805,93.0 992,518.60803,208.83545,20.929443,46.357056,59.436 992,617.87286,200.91483,21.738281,63.75354,26.033 992,585.0394,203.46942,22.374512,49.610397,23.719 992,559.6691,209.63069,22.178284,45.20656,12.946 992,23.911968,201.8156,24.892849,52.621918,11.887 992,477.17474,207.43149,16.061615,34.528656,10.891 992,567.441,205.85313,22.51477,45.801575,8.296 992,412.61673,202.94144,16.657715,31.087936,7.387 992,460.82962,203.5584,14.945557,31.60048,7.136 992,626.37573,486.89816,20.866089,46.289093,7.068 992,482.12634,202.37772,17.272583,37.503067,7.06 992,414.40262,-5.28096,29.155792,95.49879,7.031 992,5.5001783,200.14323,30.000889,69.01619,6.91 992,-11.927126,480.25476,30.116552,60.714783,6.84 992,-6.268425,490.40506,18.892475,41.26407,6.788 992,468.69165,206.4967,16.466888,32.875366,6.572 992,621.5868,210.40604,25.218506,74.286865,6.476 992,-5.0629425,-16.2696,17.214573,42.23282,6.335 992,20.416973,210.36287,37.3335,80.51396,6.334 992,2.9405963,-15.388849,16.344208,41.76526,6.329 992,428.16003,-6.1414223,28.519196,89.060745,6.223 992,527.4375,210.26118,19.274231,41.97072,5.94 992,622.8556,-33.121048,27.185059,74.04693,5.887 992,618.90564,235.58217,19.80951,49.66823,5.68 992,219.48122,210.10269,15.86348,34.200394,5.622 992,36.601173,211.68274,36.614044,77.45969,5.5 992,613.2348,454.8928,38.20392,107.11972,5.458 992,627.43494,-17.971956,17.005127,45.380447,5.409 992,516.1103,212.2313,30.657349,63.39682,5.239 992,584.38806,408.19604,70.5907,180.19629,5.197 992,-11.379845,-32.68912,29.647305,73.9075,5.173 992,405.01678,202.58163,17.255066,30.485916,5.107 992,1.8620968,202.20557,21.401394,53.77202,5.1 992,-18.297523,-63.739113,57.15365,144.39192,5.09 992,39.91459,204.6548,23.237946,49.481583,5.044 992,-72.729126,264.79382,200.74365,464.542,5.031 992,178.8688,170.45764,19.615555,40.58159,4.94 992,-5.2463984,213.45421,18.341228,46.23372,4.933 992,-14.818994,155.86305,49.345818,137.92314,4.93 992,211.94182,211.75345,16.27893,32.185455,4.839 993,599.74524,215.7914,21.692505,53.015152,84.814 993,532.26526,213.10971,18.26831,42.494324,55.364 993,507.69745,210.49342,17.667053,35.94046,19.662 993,526.02246,210.96318,17.082275,38.872894,11.067 993,-5.128311,-16.569437,17.034403,42.05048,8.836 993,56.90161,202.40233,21.082977,48.692307,8.491 993,-11.207038,-32.87775,29.276241,73.73837,7.262 993,514.4586,208.57607,16.349976,36.167404,6.918 993,-11.882592,476.68457,29.937107,64.15387,6.788 993,65.01335,199.46431,21.278168,43.59877,6.452 993,-6.273917,488.9534,18.769623,42.013336,6.315 993,425.2583,198.93195,21.528625,37.637833,6.255 993,622.8082,-33.506268,26.54303,71.32128,6.16 993,-2.7613878,190.75426,16.196527,37.56894,6.044 993,46.700115,197.4784,27.18945,68.34689,5.883 993,3.2521195,-15.377235,16.348051,40.303654,5.849 993,615.8957,216.307,20.933228,50.81183,5.605 993,627.01733,-17.006252,17.014404,43.729412,5.59 993,618.9946,-2.7401505,18.26825,33.861027,5.546 993,2.938271,197.43484,17.13475,36.81424,5.533 993,626.5904,487.75278,20.571411,46.57492,5.528 993,435.46323,-11.846573,28.777802,82.17924,5.5 993,603.2029,-55.59957,53.6532,130.9978,5.381 993,596.81934,217.59483,37.3537,90.71828,5.339 993,597.8332,190.5562,36.580627,81.30098,5.288 993,583.2725,413.16028,71.22479,175.33191,5.22 993,511.84924,177.34645,25.510803,68.15407,5.209 993,-5.599822,215.13882,17.398384,40.763214,5.209 993,-72.93369,264.6216,200.90747,463.9996,5.17 993,593.40906,-42.466846,46.20288,92.061424,5.127 993,5.680724,206.66197,36.566154,106.22102,5.1 993,613.02435,454.90472,39.312195,107.380066,5.034 993,-18.347168,-62.999115,57.282875,143.45154,4.934 993,589.97784,215.13759,18.989258,47.183212,4.926 993,-21.438824,403.11984,78.97575,175.02786,4.919 993,535.8275,310.22452,144.17932,342.1428,4.777 993,134.39227,217.01425,25.149551,50.1185,4.766 993,36.783558,208.44836,37.073338,89.52341,4.752 993,607.92523,214.51543,20.413696,47.49269,4.738 993,476.13388,211.10149,30.315216,53.576706,4.618 993,119.467896,204.75366,29.769135,64.997345,4.536 993,-16.314222,121.55114,52.146736,143.34744,4.522 993,493.4471,228.3516,237.8154,515.59155,4.515 993,613.76263,220.79196,35.1427,98.35718,4.466 993,489.08447,-178.97015,236.23401,422.43622,4.449 993,445.0169,-35.068306,29.309448,86.29492,4.438 993,586.0892,-99.77575,74.80243,232.06262,4.42 993,-5.1244564,263.86813,17.153856,42.23477,4.37 993,514.8131,191.79768,18.153137,40.949585,4.365 993,-5.0872116,101.2855,18.410427,47.283394,4.319 993,-0.042669773,211.34595,26.720911,67.69818,4.314 993,13.208334,87.61985,30.417543,75.92126,4.292 993,2.8744345,215.69072,19.16473,41.06227,4.28 993,19.645756,207.0137,37.396297,95.7861,4.22 993,602.7219,-15.954506,17.000305,37.591053,4.182 993,514.43396,221.6661,19.735474,37.498535,4.118 993,571.6247,-10.064541,56.00049,117.007065,4.115 993,-4.658703,173.39539,17.533773,42.701126,4.114 993,238.24551,220.9404,26.358398,60.594635,4.104 993,165.05038,137.60541,30.272049,62.37776,4.062 993,286.5561,191.78745,10.905243,16.56224,4.059 993,-9.969656,-3.9413567,40.416634,97.56178,4.046 994,579.5989,214.44864,18.577637,44.30307,40.494 994,586.92645,217.02368,16.938477,39.90445,28.836 994,620.83624,213.03986,16.707214,54.27249,19.547 994,595.28265,217.77577,15.852173,40.90834,17.537 994,513.5745,204.03024,19.185852,33.72162,15.91 994,506.88257,205.99107,18.968994,32.376144,11.945 994,499.49496,207.12326,18.979462,35.90509,11.127 994,274.28036,217.19502,21.587677,41.417587,8.637 994,-5.6125536,-18.406467,18.316648,43.404285,8.531 994,519.715,199.12027,20.020569,34.41545,8.347 994,-10.895953,-33.1938,28.668491,71.59782,7.192 994,613.0629,453.16638,39.621033,109.84564,7.019 994,626.448,487.14868,20.828674,46.0119,6.78 994,622.56335,-32.92055,27.146362,70.838905,6.678 994,-5.952033,488.956,18.14227,42.36133,6.436 994,601.4956,211.22223,17.316528,46.89337,6.27 994,3.1762214,200.71466,19.836672,41.06073,6.192 994,-8.794638,464.726,37.52112,92.4859,5.945 994,250.77728,214.82275,21.149017,37.288742,5.834 994,626.9757,-16.756435,17.413086,42.878777,5.806 994,2.5777197,-18.28371,17.559258,42.019234,5.707 994,622.96625,213.2592,23.422363,74.93898,5.644 994,540.0142,214.42938,17.526001,30.368912,5.641 994,-18.441975,-63.418842,56.846825,142.07127,5.61 994,379.35767,195.1751,20.205688,41.295883,5.555 994,508.57486,199.80154,29.16159,52.932297,5.539 994,521.08234,212.17296,20.277466,34.379898,5.39 994,5.8637714,190.0933,27.51444,54.429855,5.215 994,-72.351135,265.48123,200.29129,463.45566,5.149 994,602.57245,-54.249443,53.60956,132.59137,5.115 994,530.51215,210.11256,18.763123,32.138794,5.031 994,342.8142,222.823,25.875671,66.874084,4.98 994,564.39154,210.68134,19.408691,39.46132,4.935 994,-21.232843,403.3928,78.7095,174.46494,4.903 994,257.94003,208.35556,18.181915,35.417862,4.843 994,583.43207,411.73328,71.62219,177.00024,4.843 994,-40.45698,367.01413,110.93378,275.29117,4.796 994,4.0586686,199.75595,37.594048,88.58121,4.736 994,618.2628,488.20212,21.356934,43.782806,4.672 994,-5.501336,203.62523,18.1788,42.597214,4.662 994,536.0594,310.8422,144.01337,341.41757,4.652 994,618.851,234.79337,19.541992,55.023804,4.604 994,491.29022,212.62366,21.17694,34.398376,4.547 994,126.35636,197.81787,27.091515,60.250854,4.522 994,504.34283,183.88261,26.26532,53.78003,4.505 994,-4.4516473,186.06851,17.097208,41.798447,4.484 994,25.923584,197.89297,20.97908,37.077774,4.481 994,2.6786566,84.67498,21.821114,56.058968,4.464 994,618.14526,-4.3784256,20.2984,36.82249,4.433 994,493.58444,201.46152,29.628998,51.72856,4.407 994,582.2079,310.03152,28.737366,57.873657,4.383 994,-4.5717316,85.11566,17.750088,48.829987,4.353 994,493.387,228.06412,237.64914,516.463,4.332 994,-17.08894,161.18593,50.63323,127.52083,4.328 994,492.9515,203.19719,16.840027,31.904556,4.314 994,533.30304,230.10548,29.24176,52.086838,4.281 994,537.72144,229.20752,21.533203,32.713867,4.271 994,593.75543,-42.05289,45.462402,94.528496,4.235 994,626.3445,202.78954,17.054688,50.294968,4.203 994,254.13635,206.15276,14.713593,29.367554,4.2 994,585.90497,-102.86996,75.647095,236.30298,4.157 994,3.7221825,222.88744,16.94351,32.68698,4.118 994,488.884,-178.25987,235.94852,420.3752,4.102 994,3.2290335,245.4121,17.915321,32.341812,4.08 994,498.54895,214.40874,33.238403,59.429672,4.006 995,520.9702,202.85025,20.509827,34.860443,9.561 995,627.338,-17.82683,17.07306,46.219616,7.349 995,-11.8218975,477.1137,29.857008,63.36841,6.19 995,514.5848,207.11807,33.23297,64.733826,6.113 995,626.727,487.77917,20.506409,45.796814,5.96 995,622.91943,-33.91446,26.471375,75.82942,5.887 995,-5.0069027,-15.767784,17.454784,43.29809,5.764 995,-10.460279,-33.515976,29.391459,78.166115,5.714 995,338.2613,234.9408,21.53717,43.386658,5.649 995,-6.085435,489.16202,18.371145,42.050568,5.625 995,404.44293,253.96745,34.74655,60.981155,5.595 995,247.13646,213.39624,27.6418,56.38315,5.57 995,540.06946,259.11584,32.47223,58.927155,5.549 995,2.0734847,189.96854,21.51803,44.980057,5.533 995,605.8528,319.15018,29.548096,58.31314,5.428 995,226.71738,217.86044,18.462814,30.776642,5.394 995,182.8494,209.36322,24.85382,40.575897,5.367 995,596.59106,98.435234,29.330017,70.019905,5.335 995,522.26776,257.81067,35.592163,58.193542,5.298 995,612.9822,455.2312,39.297485,106.93298,5.19 995,-17.517908,436.90106,54.788986,139.52728,5.13 995,295.6366,226.14096,23.689148,58.6304,5.105 995,573.18677,202.09132,50.49463,116.62541,5.065 995,-72.05108,265.57162,199.53899,462.9855,5.063 995,-17.497002,-62.354637,55.92833,146.15488,5.014 995,582.45715,412.42767,72.35388,176.20404,4.94 995,536.18225,310.82565,143.73828,340.2681,4.935 995,417.62234,246.3443,36.888428,61.397583,4.935 995,227.70706,207.68202,18.300507,28.410233,4.917 995,535.7699,265.3198,24.374634,43.772034,4.905 995,574.9286,163.43536,37.479736,68.7901,4.861 995,-40.16387,367.94693,110.64326,274.5975,4.859 995,593.8849,207.00119,21.63623,42.252228,4.846 995,527.2806,205.19312,22.953674,39.121582,4.831 995,602.7325,-56.45332,53.428955,134.7256,4.802 995,617.6927,232.4155,20.420166,41.756683,4.762 995,585.4632,214.56833,20.396729,37.088287,4.726 995,540.12933,183.80283,57.79065,100.537964,4.674 995,458.15564,207.88184,19.761078,34.441055,4.62 995,166.36214,199.15753,29.9234,58.861572,4.58 995,233.6088,217.87543,19.671097,31.995117,4.569 995,597.3892,204.80602,39.589172,83.60106,4.536 995,618.9456,219.24084,19.391907,38.107605,4.502 995,493.79718,229.40002,237.68713,512.64935,4.501 995,326.16254,224.8655,34.394653,93.50322,4.499 995,2.7125998,-14.125547,16.487553,42.38967,4.452 995,614.1625,237.90926,27.045654,66.76701,4.38 995,600.2603,100.3978,36.101562,115.5798,4.316 995,175.07751,215.96466,30.763153,59.245026,4.313 995,585.5926,-102.764336,76.37225,236.76349,4.256 995,594.0624,-44.269714,45.41156,95.75638,4.25 995,432.4939,249.0096,36.056183,62.342392,4.239 995,603.0906,228.6838,19.972046,33.92447,4.235 995,619.5903,-17.89257,16.98462,43.668346,4.234 995,588.778,-17.210789,30.611572,64.63353,4.218 995,-17.34516,151.98718,50.833923,133.29169,4.217 995,562.21564,202.07019,44.085022,80.01727,4.209 995,282.10602,214.59003,30.220062,77.78467,4.199 995,4.1747165,174.6874,30.534569,61.536682,4.198 995,526.6357,207.79291,47.16919,76.14075,4.174 995,588.15753,186.85075,31.18451,65.90883,4.162 995,450.3504,242.46576,34.450012,61.305847,4.14 995,602.6194,209.22801,20.942505,38.67148,4.114 995,250.3851,210.97165,20.356781,36.77121,4.113 995,212.88094,204.59717,15.499619,27.078064,4.112 995,578.6547,251.2108,32.105713,63.94548,4.09 995,2.5524073,173.30484,19.88773,45.736343,4.051 995,311.214,225.51462,33.312836,90.90619,4.038 995,448.40268,223.24155,47.00125,61.62332,4.011 995,140.91933,145.86906,29.703232,60.445816,4.006 995,264.34528,220.57465,33.33618,94.31952,3.987 995,489.31323,-177.38908,236.44653,419.52444,3.969 995,613.6295,363.454,39.173767,114.765686,3.968 995,571.43524,-18.172379,55.141663,130.00713,3.966 995,594.13446,225.87247,20.736206,33.990387,3.959 995,615.25464,307.6862,22.654968,41.826782,3.949 996,536.3239,210.6959,22.416565,33.589157,17.99 996,307.9395,233.90103,30.182983,64.30725,16.914 996,521.72784,211.07323,20.483582,33.81508,15.861 996,266.48523,235.89871,20.254822,51.474854,7.826 996,325.8328,235.84677,24.905762,50.02179,7.692 996,317.69962,231.7178,24.244171,48.94867,6.791 996,348.66534,226.92688,31.61908,63.41284,6.542 996,-8.688871,465.07663,37.511883,92.122955,6.495 996,344.8392,227.30432,23.247192,47.087738,6.387 996,-17.172588,-63.690952,56.014717,149.53421,6.323 996,393.8039,246.23177,23.515442,43.539536,6.283 996,306.87335,230.73734,21.240631,43.206207,6.191 996,382.25,234.9612,29.712646,56.91304,6.161 996,-6.1266747,489.05994,18.307741,41.805542,6.096 996,329.8526,222.94273,33.444702,63.452957,6.011 996,297.6518,224.45949,33.06299,98.751755,5.946 996,627.1877,-19.385557,17.748962,48.06536,5.937 996,621.8296,478.07767,28.822937,66.44168,5.678 996,623.0291,-34.605175,26.776184,75.68776,5.646 996,527.91486,212.89581,23.491882,34.61743,5.469 996,314.665,241.19235,32.899506,73.2702,5.411 996,515.1618,208.21933,31.341125,49.86798,5.242 996,369.54474,231.73792,21.10373,44.02777,5.234 996,264.11942,221.6187,31.332916,83.72908,5.135 996,361.58478,228.25946,21.823242,45.506775,5.119 996,583.4054,411.9337,71.39905,176.47458,5.074 996,-3.366493,188.4796,15.734205,36.992554,5.048 996,-5.5988073,-17.505589,17.329765,42.53138,5.016 996,-72.12744,265.63132,199.64105,462.49857,5.013 996,355.35306,193.75739,16.747223,36.390396,4.99 996,74.717125,200.76096,16.880959,30.047653,4.984 996,-21.435654,403.22324,78.99647,174.72531,4.965 996,186.99805,217.7266,18.60588,30.434204,4.873 996,194.07077,218.97673,19.418518,31.537048,4.786 996,-11.366531,-32.530586,29.795849,73.27495,4.784 996,443.53192,216.93405,20.714966,35.17926,4.768 996,377.66473,242.66982,20.151764,36.659378,4.736 996,99.32953,136.37311,32.309692,62.400604,4.704 996,603.2383,-57.210396,53.45453,134.21419,4.645 996,536.45135,310.82385,143.30298,341.90125,4.614 996,396.33588,242.13388,31.926697,63.182617,4.554 996,345.32214,267.75522,19.703247,34.806152,4.533 996,300.01483,242.76483,20.432587,43.16577,4.469 996,202.92229,219.57687,20.078033,34.318375,4.445 996,493.00143,227.81882,238.21451,513.10596,4.438 996,593.7835,-46.234657,45.281067,94.4786,4.434 996,588.4662,202.70052,31.832825,62.899307,4.431 996,354.0712,223.01395,23.133331,43.65515,4.309 996,-5.00484,316.4665,16.21209,38.916077,4.308 996,585.5537,-100.915375,76.34021,232.78215,4.284 996,-5.3267584,235.02637,16.073765,35.124084,4.263 996,538.1034,191.053,31.513855,52.249573,4.257 996,3.8821352,199.0534,15.912418,33.731567,4.211 996,178.99503,218.1954,19.518143,31.677658,4.207 996,83.93179,140.54575,31.028458,62.54329,4.204 996,335.68692,245.42722,23.574371,46.27722,4.181 996,488.99203,-177.93677,236.21915,420.6245,4.168 996,67.98695,196.89355,17.520515,32.050873,4.143 996,543.58057,201.4329,21.112366,34.783478,4.073 996,411.0039,278.69495,38.599335,69.572845,4.055 996,-10.547589,42.971363,27.735565,74.100266,4.053 996,407.19904,242.51001,22.884003,38.526245,4.035 996,344.64362,248.4174,21.776428,42.434525,4.031 997,553.62085,209.18594,22.176819,42.11125,58.092 997,591.9848,205.3837,18.869751,36.792694,30.481 997,285.42578,210.42003,28.494751,63.5374,9.549 997,283.23248,212.76889,20.527496,45.506683,7.888 997,289.81073,222.14957,19.526062,39.43631,7.756 997,-6.229683,488.01266,18.745964,44.05966,7.196 997,222.87048,212.31221,26.294495,59.57469,6.665 997,-11.53126,475.5393,29.377737,65.56488,6.578 997,626.7792,488.088,20.376831,45.246704,6.531 997,296.71594,215.22166,18.813843,43.435165,6.472 997,-11.449221,-32.35518,29.587132,73.60576,6.334 997,620.1079,200.7272,16.902039,40.854248,6.252 997,-5.65431,-17.69468,17.497265,43.89362,6.107 997,622.4262,-33.801636,26.917786,74.9968,5.945 997,570.58246,203.62585,19.01892,31.47345,5.926 997,626.82104,-19.332773,17.989075,47.86698,5.917 997,3.1952083,195.18846,17.757427,40.041183,5.871 997,-16.39863,-62.902073,55.53035,146.7515,5.859 997,559.8143,203.96487,20.432556,34.09886,5.754 997,600.19293,202.22597,18.260864,34.22139,5.701 997,274.91525,224.09814,19.78418,41.127075,5.622 997,580.23804,203.39648,19.174683,33.359314,5.597 997,553.518,201.17847,19.328308,28.922073,5.572 997,298.74014,232.56139,18.683533,36.400314,5.526 997,176.66885,211.14555,23.816559,38.383865,5.32 997,583.827,412.59497,70.8584,175.94812,5.307 997,547.5365,208.59631,39.143555,61.600067,5.122 997,587.6094,198.52248,19.715393,32.920258,5.121 997,612.96484,455.43118,38.91565,106.285736,5.078 997,-72.2769,266.93854,199.58691,460.84393,5.029 997,-21.131544,403.80255,78.34706,174.13763,4.967 997,603.44763,-56.904324,52.930054,133.78777,4.945 997,10.080328,196.39621,18.096586,35.48427,4.828 997,320.22253,224.71669,24.30835,41.214523,4.813 997,324.9549,160.44485,27.41919,77.79442,4.67 997,233.45108,217.80266,21.540543,45.477066,4.648 997,180.91724,201.54024,29.049774,55.282303,4.641 997,548.1536,197.95676,18.229553,29.796982,4.619 997,270.93494,209.94592,28.982635,65.797,4.609 997,305.89624,231.33739,19.888397,38.241714,4.554 997,536.02515,310.48615,143.62366,342.91095,4.537 997,2.117275,487.78906,19.422543,43.10327,4.469 997,-4.874874,171.42842,17.798267,40.75566,4.452 997,586.4935,214.00288,21.23468,36.781967,4.329 997,529.02313,190.40771,20.038513,36.8461,4.304 997,593.8903,-44.06395,45.823364,92.5992,4.304 997,492.96512,228.15479,238.29294,515.5705,4.288 997,580.08154,209.2785,38.489502,67.76831,4.283 997,489.13327,-179.55705,235.58963,421.16263,4.236 997,322.89597,196.55556,16.634094,34.333725,4.232 997,301.05786,215.73628,28.782288,59.54033,4.228 997,585.7562,-100.61757,75.75006,231.6941,4.203 997,4.377097,209.62943,29.897419,68.26126,4.198 997,252.20085,214.82883,28.414444,62.773895,4.197 997,618.73047,-20.541584,18.76361,46.498726,4.189 997,68.03105,222.34348,20.058243,28.651321,4.16 997,-4.5093327,75.76478,17.096539,42.27883,4.159 997,618.6091,489.86057,20.168457,42.477875,4.128 997,160.5409,212.9285,22.813904,34.03511,4.09 997,539.2071,194.91116,18.657898,31.540695,4.089 997,313.8599,232.24297,21.719604,39.732407,4.077 997,292.84174,201.33496,12.987122,27.641037,4.072 997,149.50662,202.48135,29.99768,46.237488,4.047 997,244.43915,242.07053,30.450134,63.422363,4.025 997,73.94195,217.1476,19.284866,30.263733,4.025 997,557.8048,221.71709,24.763916,38.386,4.018 997,-5.0361447,154.01451,18.019735,43.644135,4.012 997,241.9174,217.77003,20.682724,44.14879,3.99 997,317.9065,200.38075,15.11499,29.551743,3.96 997,580.30676,172.28375,40.846313,76.19098,3.953 997,106.5679,225.3468,18.926216,29.559906,3.949 997,596.4995,207.7814,37.334656,92.8439,3.943 997,306.05753,210.5274,18.254059,41.626602,3.94 997,269.90936,192.10365,13.598236,27.596771,3.901 997,596.26276,164.19698,38.122498,83.5343,3.9 997,284.59375,234.78459,17.79657,35.135544,3.872 998,280.0417,229.33012,23.028809,50.850357,12.415 998,4.102084,194.73973,15.069659,31.36113,6.717 998,584.1177,184.55695,24.596802,40.864914,6.483 998,598.249,208.64143,30.75232,56.90251,6.424 998,-5.882406,489.20087,18.003845,42.306885,6.216 998,626.5558,488.57986,20.768066,44.963043,6.18 998,-3.104408,183.29759,14.799789,37.037216,6.001 998,229.50117,206.51797,27.371994,65.087524,6.001 998,-8.692047,464.81836,37.440964,92.05859,5.895 998,-16.65763,-62.646416,55.91839,145.92513,5.783 998,626.68054,-18.217154,17.361145,46.383953,5.701 998,241.55272,216.57068,19.071762,42.520172,5.568 998,-5.5751534,-16.7655,17.504635,43.09841,5.514 998,-11.16305,-32.058067,29.39266,73.665855,5.4 998,618.302,-3.713543,19.847778,42.011436,5.394 998,308.601,209.67006,15.057495,31.215164,5.391 998,155.2126,219.46098,32.22029,50.659653,5.311 998,622.2905,-32.409264,26.64801,72.69099,5.3 998,595.08606,162.99211,41.605774,80.42296,5.279 998,612.94025,455.3716,39.232483,106.49338,5.2 998,512.38916,193.68463,23.192993,37.864136,5.197 998,-72.755165,265.74368,200.66566,462.61984,5.192 998,583.62415,412.4229,71.08441,175.7044,5.177 998,326.44434,189.05714,25.310394,57.96266,5.142 998,324.23312,210.22437,17.650665,32.918106,5.134 998,569.4402,151.46712,59.198242,105.9453,5.097 998,11.060839,200.93507,17.194265,29.899979,5.038 998,-21.307255,404.08344,78.63757,174.08087,4.974 998,602.93756,-54.656162,53.023865,135.48836,4.961 998,291.22772,210.87703,15.928772,33.150528,4.949 998,316.23087,210.59805,15.757233,30.31636,4.71 998,324.23264,132.46931,30.905243,73.74962,4.704 998,167.8511,230.93025,23.614655,34.628555,4.699 998,249.24925,224.71078,20.212082,37.82483,4.696 998,148.5224,208.69734,31.571686,50.525497,4.692 998,369.2007,132.69614,18.841522,45.93834,4.638 998,153.40381,210.59525,21.175125,33.260254,4.626 998,535.8296,311.13092,144.14673,342.38458,4.624 998,424.73016,-2.394003,26.527222,60.59526,4.621 998,225.80011,210.24445,21.238403,47.596924,4.514 998,252.65652,214.5408,29.225433,58.04477,4.503 998,493.15448,227.78949,237.96478,515.3376,4.497 998,586.7446,180.40862,33.096436,62.58812,4.495 998,585.4574,-100.12609,75.89337,233.32996,4.453 998,196.8083,209.66037,28.484985,66.09006,4.423 998,347.53436,-10.641507,15.593842,35.62697,4.39 998,3.7734623,204.9769,17.0879,33.983826,4.378 998,379.3971,130.41403,18.526367,46.246124,4.376 998,276.0342,195.06741,16.785126,35.155594,4.375 998,331.60132,-10.523941,15.167908,35.69891,4.373 998,571.54596,172.81882,33.31006,62.61783,4.355 998,283.48846,209.76212,16.706879,35.794342,4.344 998,90.85308,233.4105,18.393684,29.62529,4.32 998,537.71277,155.82973,60.131775,104.92949,4.32 998,299.81448,205.97946,15.415405,32.531998,4.316 998,515.65546,195.5391,30.789185,59.574814,4.314 998,342.49457,202.1904,27.720398,53.531006,4.312 998,213.90916,210.74777,29.18895,66.161255,4.279 998,-4.6395845,89.8177,16.857254,43.804977,4.277 998,260.61273,188.0211,15.69989,32.207275,4.26 998,488.97394,-179.59245,235.97516,422.99008,4.258 998,61.664047,130.16533,31.942024,56.908188,4.256 998,163.94258,208.78622,31.175095,52.894135,4.246 998,106.12259,230.79582,21.805359,35.90526,4.239 998,460.1384,147.83871,29.166107,85.93489,4.238 998,618.4597,489.88602,20.634888,42.205414,4.228 998,25.785343,219.64886,19.717018,28.037964,4.224 998,339.567,-9.831227,15.180176,35.251076,4.186 998,315.82312,-11.78141,15.128479,35.798088,4.172 998,615.2938,211.78404,23.522583,47.660477,4.143 998,519.42944,189.27856,23.578918,36.90323,4.141 998,267.37622,186.96133,16.856903,34.223907,4.117 998,-6.109547,281.31824,17.166456,38.955353,4.098 998,415.47458,173.48463,28.669556,78.06032,4.071 998,-4.112799,198.82721,15.89386,36.781204,4.047 998,360.12756,123.330826,26.590546,68.33742,4.043 998,144.11665,222.7167,24.50531,34.460236,4.027 998,263.37842,218.27626,30.760864,62.133743,3.994 999,427.21942,198.19705,21.162537,53.43654,8.536 999,297.6862,227.14905,20.056671,43.11093,7.907 999,225.33562,213.06735,22.773682,46.89792,7.012 999,623.0783,-34.15837,26.308167,75.62835,6.797 999,627.1661,-18.29316,17.42572,46.07636,6.558 999,229.28195,206.5709,30.121613,62.61299,6.309 999,253.89465,217.75858,29.837067,60.37555,6.265 999,177.08098,214.45596,23.423553,36.853806,5.973 999,-8.81531,465.01413,37.712082,92.14407,5.934 999,-11.537924,-33.122707,29.798273,74.013954,5.896 999,619.41327,216.33472,18.486755,43.150696,5.879 999,540.6861,1.6562662,16.599243,30.210785,5.871 999,-16.63438,-63.119324,56.074463,146.36737,5.848 999,260.7529,228.46979,29.45871,64.64038,5.843 999,626.4314,487.43625,20.844543,46.44052,5.811 999,-6.1978154,489.3177,18.51987,42.07965,5.723 999,-5.3945665,-17.171442,17.096313,42.598972,5.665 999,361.85776,209.99881,19.545074,38.85997,5.642 999,515.2387,199.18344,16.88385,37.761703,5.616 999,602.61816,-56.330578,53.76581,131.98203,5.592 999,323.65436,210.90332,15.565979,30.68988,5.592 999,480.66498,214.5093,21.961212,44.553513,5.543 999,217.16286,214.9843,21.597336,45.009537,5.452 999,240.05283,213.82397,24.392548,46.00699,5.376 999,595.8271,187.6261,39.62628,85.3501,5.274 999,-72.56367,265.32596,200.44788,463.42697,5.25 999,612.9458,455.55325,39.308594,106.45566,5.219 999,583.25415,412.75772,71.31152,175.50748,5.183 999,557.0491,141.33676,29.130249,84.47243,5.129 999,485.925,125.84186,25.729095,73.451996,5.127 999,204.39944,209.18254,29.425491,62.298416,5.092 999,618.73895,-17.928455,18.077576,44.2462,4.898 999,365.30838,148.62732,31.289978,88.574554,4.85 999,419.44977,191.36798,21.250458,49.276978,4.845 999,-2.7734125,186.6803,15.7877445,37.8441,4.837 999,594.35114,-44.6154,44.747803,94.8955,4.833 999,-21.46987,403.41602,78.97117,174.43433,4.805 999,3.1630993,194.93976,18.796576,37.489,4.788 999,623.9418,196.5429,25.2818,67.398056,4.776 999,549.70386,161.27574,26.926086,75.77023,4.772 999,249.24248,209.22072,24.363266,44.23105,4.762 999,536.0051,310.45932,144.14612,342.38382,4.753 999,88.7397,237.55508,23.019028,34.006134,4.716 999,378.826,143.45564,31.40091,76.31911,4.679 999,493.44543,228.2031,237.61792,514.65784,4.608 999,556.11554,2.3473253,15.576294,28.863373,4.58 999,489.30615,-180.2954,236.05585,423.6553,4.552 999,523.41705,-0.40639687,17.525818,31.708996,4.499 999,381.16745,195.32393,29.365753,65.37648,4.478 999,395.66205,200.1825,29.440247,66.73187,4.471 999,2.657832,124.835205,29.788,82.900635,4.456 999,586.2754,-103.44999,75.786865,236.18488,4.414 999,292.9391,224.47015,18.371094,37.956207,4.412 999,363.2587,-14.54579,15.86557,35.412384,4.394 999,532.61975,1.2524233,16.64795,30.334206,4.387 999,547.7546,-10.168157,14.5234375,35.041058,4.381 999,614.32367,-19.744051,27.191833,67.69888,4.361 999,3.1824172,212.88283,17.946756,33.291473,4.357 999,-5.4321995,213.95773,16.876804,38.119614,4.349 999,108.563644,226.22488,30.202774,51.267487,4.34 999,165.73657,215.14926,29.773453,52.029175,4.333 999,435.11847,191.7016,28.4516,65.69641,4.331 999,258.37903,210.72456,20.454681,36.03296,4.316 999,578.2859,202.11252,42.66217,81.057526,4.302 999,546.7821,187.91635,20.210205,44.83603,4.302 999,589.70557,-15.4400425,28.411438,58.933678,4.296 999,3.2545543,-15.439316,16.136255,40.102837,4.251 999,96.01833,241.56738,24.06903,35.19281,4.243 999,422.89294,216.77156,28.32434,62.555862,4.232 999,-5.850457,102.44573,18.110905,48.24775,4.198 999,-15.146072,155.47995,48.02297,128.62961,4.17 999,186.88867,209.40878,29.771713,55.334717,4.165 999,594.0647,-16.136633,18.350037,41.711,4.154 999,546.3671,7.205284,17.422424,34.941475,4.122 999,509.52075,202.9966,15.129211,33.022476,4.092 999,379.418,-14.164122,16.406525,34.95171,4.08 999,466.38412,43.548656,19.311127,29.550678,4.067 1000,270.63895,217.09607,27.167877,64.305115,17.694 1000,385.29938,203.30997,19.633453,47.86081,13.335 1000,312.42493,223.17818,20.309906,44.816574,9.085 1000,532.2285,210.08966,29.93512,75.71713,6.867 1000,449.16824,145.69064,31.229126,72.90317,6.824 1000,387.816,190.25002,18.684692,42.7847,6.221 1000,-5.993086,489.7495,18.199242,42.528137,6.182 1000,401.9577,187.27145,19.291138,55.076096,6.078 1000,-11.615924,477.50153,29.35434,64.17145,6.062 1000,2.9950798,218.67499,19.349863,34.616486,6.031 1000,-17.175903,-63.8317,56.237953,147.84213,5.893 1000,627.47473,-17.81651,16.967957,47.2888,5.865 1000,370.5002,205.62694,19.591919,46.491455,5.72 1000,-5.0421185,-16.804508,16.452309,42.63033,5.665 1000,440.8042,210.79234,30.570465,65.43495,5.655 1000,576.83923,201.2478,20.455566,42.55768,5.644 1000,244.81146,202.74167,28.64386,65.71701,5.534 1000,-5.9861603,218.0352,17.094574,36.45433,5.53 1000,361.00513,196.14334,24.733398,54.587463,5.526 1000,622.6981,-33.925526,26.730347,76.112206,5.448 1000,409.2658,181.4013,18.589905,55.689545,5.399 1000,612.7766,455.27808,39.499268,107.1228,5.353 1000,626.60376,488.4112,20.48059,45.81842,5.348 1000,-11.160471,-32.79319,29.156504,74.53815,5.304 1000,379.3208,208.26266,19.066193,46.1447,5.268 1000,240.21039,210.30829,22.68863,46.632812,5.19 1000,-73.0792,265.24722,200.7048,462.75668,5.131 1000,391.7468,188.7803,24.763641,62.890625,5.126 1000,602.43646,-55.99517,53.948425,140.68283,5.106 1000,-5.1522427,188.00063,17.741953,38.14154,5.053 1000,595.86237,190.36685,39.422607,84.134125,5.017 1000,458.651,158.25737,32.47644,76.86455,5.01 1000,582.9433,413.47964,71.60205,174.92819,5.007 1000,589.22015,188.20189,29.620667,60.196793,4.996 1000,489.59653,-182.13376,236.18326,427.32297,4.96 1000,-6.2604704,201.2154,18.407764,38.895996,4.89 1000,-21.681929,402.4262,78.75052,175.43018,4.873 1000,535.8973,310.30402,144.35065,342.82806,4.855 1000,273.69678,208.27011,20.602478,42.552795,4.832 1000,76.66586,227.40787,30.823685,51.92914,4.705 1000,586.76807,196.09955,20.12085,39.069763,4.649 1000,614.0801,178.80319,27.658142,62.171783,4.589 1000,7.5299797,212.3047,30.159496,58.693527,4.577 1000,268.57184,110.64114,15.54187,34.433258,4.563 1000,493.82535,228.13034,237.01785,514.2706,4.562 1000,479.13358,215.79285,23.191986,47.995422,4.557 1000,230.60614,204.21936,27.926392,65.664154,4.52 1000,585.6643,-104.22556,75.97595,239.19379,4.413 1000,257.81772,211.80408,23.897064,46.712555,4.359 1000,468.08575,178.476,30.211823,72.368,4.353 1000,518.1757,214.43251,33.476868,66.70958,4.341 1000,619.775,-4.8650436,18.859192,42.997578,4.328 1000,396.59726,1.6184654,17.0643,32.967308,4.325 1000,-0.6366682,199.75592,26.835922,57.283752,4.305 1000,375.32684,188.96101,25.98059,58.187057,4.229 1000,99.88984,228.25676,30.585182,51.20793,4.218 1000,482.79944,206.44528,29.534302,65.559814,4.206 1000,404.9963,161.18863,26.707306,88.84047,4.201 1000,618.4713,82.70938,20.969543,54.741516,4.19 1000,-2.5768614,106.499344,29.230179,83.16072,4.153 1000,254.4302,224.32384,30.66742,63.529068,4.148 1000,460.63812,200.59622,54.77478,107.552124,4.135 1000,413.58505,-14.299198,53.370667,127.95888,4.127 1000,330.64807,7.5833683,18.525513,37.753334,4.103 1001,276.66608,220.32762,28.952362,58.00673,8.702 1001,-5.913024,489.1814,18.228119,42.022644,6.731 1001,-11.559168,477.02234,29.151117,63.452637,6.341 1001,109.77826,126.51841,31.323288,62.43699,6.254 1001,-17.163548,-64.497604,56.10322,149.6225,6.133 1001,627.29767,-17.368692,17.36853,45.899776,6.077 1001,163.20453,213.46727,31.892456,56.994217,6.045 1001,407.27924,199.85812,26.73706,64.000824,6.019 1001,612.5872,455.22205,39.532593,106.329956,5.769 1001,287.8684,222.50333,20.99054,40.586304,5.583 1001,626.5083,488.11853,20.663391,45.573364,5.582 1001,236.7522,204.61536,29.564209,57.908783,5.435 1001,-5.307145,-17.098537,16.7654,42.26975,5.431 1001,490.5508,-182.09793,234.70737,430.42233,5.364 1001,-11.315706,-32.380577,29.430624,73.1603,5.361 1001,-72.61503,265.4779,200.39584,464.3921,5.229 1001,-17.229053,438.19666,54.60735,139.36285,5.07 1001,602.732,-54.54389,53.071533,137.80083,5.069 1001,308.00793,64.270935,31.374115,59.9859,5.039 1001,159.65099,231.27463,25.569931,36.407074,5.029 1001,573.8037,193.7528,28.52594,78.11847,4.956 1001,-40.235703,366.72403,110.56917,276.11423,4.882 1001,583.0854,412.37787,71.52338,175.97272,4.851 1001,242.11662,207.17491,20.60588,36.83539,4.752 1001,322.14124,224.9981,18.955444,37.15822,4.73 1001,585.7492,-100.565636,75.06415,233.62491,4.691 1001,536.3916,310.48236,143.20544,342.33014,4.689 1001,622.9705,-34.684017,26.80603,77.489876,4.641 1001,579.90955,-15.39105,31.666626,72.89174,4.556 1001,456.71902,158.41594,24.505371,85.846115,4.501 1001,248.31448,208.2629,22.872437,43.46788,4.494 1001,494.13876,227.7196,237.08609,514.66156,4.434 1001,234.10052,210.23344,21.61267,41.289368,4.417 1001,321.80066,72.21843,21.278198,38.572807,4.376 1001,-5.7216167,207.59822,17.632322,41.07698,4.325 1001,65.82129,128.08421,31.399612,60.006134,4.323 1001,574.8484,183.70122,47.460205,143.55434,4.307 1001,401.01794,202.09717,20.27893,44.04695,4.301 1001,394.69287,197.95361,18.222351,38.430664,4.298 1001,354.13593,208.06453,18.80664,43.344696,4.257 1001,141.18341,226.89552,30.437393,47.27269,4.227 1001,568.47064,268.38593,29.836365,72.895294,4.223 1001,54.01332,125.07181,31.286957,60.445587,4.122 1001,568.48395,208.41821,36.322998,107.362,4.046 1001,-4.3470507,172.3119,16.87662,38.60063,4.044 1001,526.2885,188.77704,50.430725,116.41266,4.027 1001,2.2498512,490.45853,18.96177,40.191254,4.018 1001,574.384,-9.40567,51.2865,125.07143,3.987 1001,429.95734,190.5666,25.021973,62.32254,3.987 1001,362.85098,-2.0193148,20.300232,35.379833,3.968 1001,5.3446636,467.74646,38.185913,97.15527,3.944 1001,90.85586,206.11757,17.680595,35.06163,3.889 1001,378.8717,-15.818235,17.129425,36.510498,3.847 1001,252.53394,212.07704,31.639832,58.2686,3.816 1001,397.10696,71.627045,31.885468,67.500046,3.813 1001,-15.355944,156.62877,50.17093,135.89919,3.8 1001,418.68192,196.3141,18.46524,45.289536,3.772 1001,547.39417,188.32138,50.613037,124.6232,3.756 1001,612.9374,11.554485,28.087036,86.86684,3.729 1001,329.9435,73.32125,21.004822,36.04489,3.724 1001,557.5615,-34.889122,29.35492,76.66377,3.718 1001,508.41364,177.12503,53.67804,113.36856,3.702 1001,362.51895,-15.534262,17.632599,37.689987,3.7 1001,211.04987,207.2716,30.446014,56.80948,3.697 1001,411.33624,197.88712,18.182495,43.070206,3.684 1001,422.53345,-33.477222,29.134338,66.93891,3.677 1001,370.70895,-14.838768,17.50705,36.226826,3.677 1001,3.4478502,-14.302009,15.793359,39.40035,3.67 1001,-0.5565834,131.7446,27.020489,80.12781,3.667 1001,618.64026,490.70804,20.70581,41.831207,3.655 1001,547.8449,302.0858,17.735168,33.168762,3.653 1001,82.70293,205.04884,17.54229,35.54535,3.639 1001,347.24695,208.10635,18.05426,36.73073,3.635 1001,-4.8341537,188.78818,16.742023,37.501907,3.635 1001,75.3064,207.33247,16.738663,30.970078,3.626 1002,441.81873,197.09116,20.50241,47.95822,89.126 1002,336.68115,215.11028,18.849915,42.79918,11.396 1002,297.32822,219.16214,20.356293,39.851105,8.874 1002,491.22006,206.80946,29.539032,75.52812,8.206 1002,436.4636,193.70357,19.677399,41.515076,7.339 1002,588.2712,8.108192,32.688538,79.866196,6.987 1002,439.22595,188.86142,33.028717,74.32388,6.85 1002,408.3642,182.58075,23.64087,67.32039,6.523 1002,-5.3759346,-17.067291,16.972649,42.421032,6.031 1002,114.4201,114.93996,31.813591,68.71513,5.89 1002,-17.072714,-64.83742,56.098045,149.62685,5.834 1002,-11.411247,-32.024612,29.75128,72.14087,5.7 1002,611.1219,-47.694,41.840393,102.9033,5.683 1002,-12.840149,478.1516,31.372116,61.993164,5.657 1002,626.4433,488.6906,21.087769,45.085693,5.643 1002,-6.004522,200.89262,19.727617,41.3257,5.458 1002,613.03674,454.48126,39.32202,107.4505,5.439 1002,-6.6186,489.6061,19.33876,42.643402,5.431 1002,587.56494,-30.871902,52.510193,148.22664,5.308 1002,627.0553,-18.640314,17.641846,47.005123,5.283 1002,495.45624,199.62329,21.057983,46.353424,5.123 1002,490.41794,-182.70367,235.83932,429.23972,5.11 1002,477.7102,197.12413,30.413239,71.69902,5.032 1002,585.7887,-102.12185,74.982056,238.2009,5.007 1002,-72.905106,265.61987,200.51633,463.06958,4.998 1002,583.08307,412.2968,71.461365,175.90411,4.96 1002,461.33258,126.73961,29.32846,85.92009,4.945 1002,-5.2635345,217.5113,16.506496,38.517136,4.858 1002,188.4242,228.18202,27.381653,55.00737,4.846 1002,462.1363,200.14548,27.572937,66.605255,4.83 1002,-40.386406,366.6369,110.903076,275.58905,4.757 1002,102.15073,228.93222,27.251068,55.34912,4.743 1002,536.20026,309.62665,144.04047,343.37677,4.726 1002,-11.960416,183.05858,30.305222,62.57292,4.712 1002,286.93988,212.84412,27.400574,58.437164,4.647 1002,417.3858,185.88878,19.00595,49.25464,4.636 1002,543.0683,-34.2437,28.06781,71.97424,4.59 1002,501.5348,166.12271,27.879395,71.86813,4.563 1002,494.17365,228.4505,236.5727,514.7426,4.552 1002,428.60934,191.37161,17.601929,41.34709,4.526 1002,476.8786,147.92184,29.88971,77.42972,4.52 1002,-17.933132,436.5855,55.220955,140.23785,4.486 1002,4.15833,189.87183,30.170624,63.12787,4.482 1002,57.158924,122.29363,21.74525,44.01583,4.479 1002,485.10312,166.5907,29.36966,76.3578,4.475 1002,218.14908,223.3836,19.916122,35.886414,4.474 1002,103.43365,117.88891,29.733131,61.607704,4.452 1002,413.4347,-33.461304,29.023651,68.00347,4.401 1002,586.11444,-15.399597,34.735535,68.61437,4.38 1002,175.17795,215.16685,27.594788,59.057144,4.374 1002,462.18158,163.345,26.876831,81.00664,4.334 1002,359.86224,193.5742,25.662903,61.26143,4.253 1002,504.81293,208.04555,20.154358,44.117477,4.246 1002,588.5743,192.5166,16.64618,35.846924,4.241 1002,0.4683423,192.49957,22.70088,42.370804,4.132 1002,538.22644,-17.623806,18.009033,39.557148,4.082 1002,595.0399,218.3305,40.86487,84.58087,4.037 1002,396.90063,-33.461548,29.239685,70.80347,4.036 1002,410.24246,-16.273365,18.2081,38.00463,4.035 1002,425.97702,-16.799528,18.5466,39.046665,4.032 1002,3.269242,-15.104042,16.024817,39.89581,4.014 1002,179.07593,210.98792,19.302765,34.4449,4.014 1003,462.96783,196.17587,26.854553,76.21216,56.323 1003,202.93373,235.4501,19.838394,42.692963,8.88 1003,3.3457196,245.00687,31.719435,74.81406,6.75 1003,216.37794,231.59671,25.296265,62.91339,6.444 1003,499.00604,206.0341,21.012146,47.195786,6.133 1003,-17.21497,-64.24715,56.229557,148.71591,6.123 1003,-5.182672,-16.567255,16.571884,41.89872,5.998 1003,284.97592,222.37569,29.497955,56.52748,5.988 1003,131.93498,225.14203,30.705475,65.18091,5.977 1003,-8.74971,463.67435,37.58373,93.57388,5.938 1003,3.7871706,212.20216,16.655224,36.82454,5.915 1003,208.5588,229.60284,22.308044,42.29825,5.855 1003,108.37135,126.010056,31.666046,64.55467,5.852 1003,461.61115,197.6748,18.98645,51.66803,5.79 1003,146.87994,229.32486,32.051422,56.281982,5.767 1003,345.18652,226.99103,19.0094,39.668762,5.741 1003,69.59157,208.0724,36.06768,82.99675,5.687 1003,626.5928,488.48807,20.977417,45.107635,5.675 1003,-6.679785,489.44083,19.351837,42.950836,5.65 1003,613.0139,454.21368,39.3407,107.64581,5.645 1003,85.58609,208.1388,37.1465,80.82715,5.617 1003,627.40375,-17.84066,16.833618,47.07725,5.499 1003,-11.208487,-32.18592,29.360893,73.26651,5.394 1003,-12.727976,478.29086,31.066696,61.956757,5.364 1003,10.888708,212.4301,17.876017,38.345123,5.286 1003,622.8827,-34.298428,26.487427,76.920105,5.262 1003,-2.958415,192.533,14.979243,34.974472,5.2 1003,19.928865,243.59433,31.415895,71.946625,5.105 1003,-72.45807,264.721,200.4166,463.68402,5.048 1003,437.83167,194.26717,26.652893,67.87398,5.014 1003,119.52653,217.28928,28.83535,66.066986,4.974 1003,102.219864,208.59268,36.317337,80.272125,4.937 1003,602.6873,-56.004234,53.08612,138.66267,4.931 1003,114.47334,216.73431,20.739182,40.301514,4.827 1003,490.57663,-181.28061,235.24796,427.44778,4.827 1003,583.2066,411.3081,71.44806,176.96771,4.824 1003,-40.908962,365.48254,111.49489,276.40857,4.727 1003,304.95883,231.66023,22.332733,38.578354,4.715 1003,536.34454,310.42365,143.50275,342.54108,4.701 1003,503.33423,147.68709,26.822754,83.10182,4.666 1003,-4.67488,209.80449,16.605793,39.320206,4.65 1003,354.99463,152.58882,33.11203,80.10243,4.64 1003,193.5514,223.34886,25.902176,59.491684,4.626 1003,479.19342,208.10835,21.385529,49.621872,4.604 1003,401.9798,216.27576,20.6008,41.755493,4.586 1003,572.0223,220.18744,18.44629,35.551117,4.579 1003,586.07916,-104.642746,75.67316,239.72458,4.542 1003,371.17978,211.2646,19.143951,42.612534,4.506 1003,494.06055,228.62433,236.62427,513.49255,4.486 1003,447.70847,200.28903,29.729828,73.07736,4.464 1003,-18.019838,433.58612,55.216904,142.45404,4.458 1003,227.16885,215.33516,29.990265,57.585007,4.451 1003,53.784744,208.93321,36.34445,84.45308,4.445 1003,269.96634,225.70218,31.676056,57.22119,4.393 1003,160.25198,241.75171,20.481262,32.404602,4.354 1003,-2.5528705,257.3351,26.396435,68.674286,4.345 1003,441.74805,190.70067,16.667053,48.20549,4.288 1003,3.5685353,199.6797,15.510185,30.296646,4.266 1003,500.02783,195.77022,15.737488,38.797867,4.242 1003,582.70166,229.14285,27.125671,69.902374,4.241 1003,166.31119,209.63919,34.840515,75.0661,4.231 1003,181.40685,213.80359,29.255295,56.09549,4.212 1003,197.14973,238.94952,17.96785,37.532288,4.181 1003,396.16745,-12.080111,31.245117,62.05742,4.158 1003,0.3742087,202.30635,24.303507,58.666275,4.146 1003,105.37651,137.0404,23.959091,41.982635,4.138 1004,499.7673,201.55835,28.615326,69.95007,96.726 1004,378.2811,201.65712,18.582642,42.92845,12.228 1004,513.1775,202.82857,18.961914,50.739655,9.834 1004,-6.032212,489.44727,18.203058,42.976868,7.487 1004,-5.3321414,-16.934307,16.72237,43.915874,6.37 1004,622.7428,-33.82944,27.043884,75.598366,6.134 1004,499.68146,200.68222,18.777954,46.958344,5.977 1004,434.62418,218.82709,20.326996,40.04422,5.961 1004,-8.989988,463.74,37.494186,92.3512,5.93 1004,468.40988,194.83432,28.191925,68.30661,5.918 1004,-17.128794,-65.12372,56.02034,148.42697,5.912 1004,627.5429,-17.99633,16.83258,46.883427,5.855 1004,612.77905,454.44052,39.529175,107.63248,5.727 1004,482.174,199.44614,19.352844,46.592575,5.704 1004,33.67604,116.65352,29.252533,62.495926,5.637 1004,626.71924,488.69867,20.545288,44.821594,5.519 1004,292.62146,222.92644,29.391846,61.891556,5.498 1004,521.9053,202.90543,15.773621,34.620728,5.468 1004,-11.177851,-31.282349,29.536755,74.71857,5.389 1004,212.19878,210.97594,29.91246,59.358963,5.31 1004,557.2668,170.74133,28.213257,95.04797,5.301 1004,282.3804,223.94643,28.936493,64.19945,5.295 1004,440.04382,207.80496,22.001007,45.437164,5.204 1004,-73.03806,263.90674,200.97388,465.326,5.178 1004,-6.159928,127.80772,18.627552,40.437706,5.157 1004,558.0423,209.59857,31.239502,87.65344,5.155 1004,430.609,194.70984,28.24173,68.42676,5.139 1004,263.44315,234.3218,36.884888,77.46001,5.078 1004,588.0718,143.04451,18.582153,56.5625,5.069 1004,223.11743,216.39526,22.515656,41.174377,4.917 1004,583.10535,411.75574,71.48932,176.48804,4.883 1004,-40.93765,362.21765,111.978745,278.4768,4.876 1004,549.7175,98.56826,27.428467,81.43986,4.823 1004,536.2963,309.92114,143.66003,342.7433,4.821 1004,-21.580547,401.14853,78.89542,176.23819,4.731 1004,602.2193,-56.02085,53.79413,137.68965,4.707 1004,-12.248888,117.28816,29.573898,64.1124,4.7 1004,516.4704,199.90102,14.380981,32.31505,4.698 1004,256.3868,213.49101,21.441376,37.066193,4.661 1004,621.2579,148.35368,16.353333,46.52295,4.58 1004,157.37006,188.48438,13.191589,22.696274,4.566 1004,475.8407,192.21805,18.31012,41.22792,4.556 1004,315.34387,-62.484474,56.256622,131.3451,4.545 1004,98.513275,226.02043,32.57213,63.905167,4.529 1004,490.78058,-181.20816,234.76453,424.22836,4.502 1004,345.7611,227.8965,20.249512,41.905014,4.47 1004,494.38495,228.20905,236.68347,514.64124,4.463 1004,140.76155,187.20703,14.926346,25.961899,4.422 1004,106.94252,121.04888,33.321854,70.69294,4.412 1004,283.9113,-63.55796,55.092865,129.19276,4.408 1004,45.78891,115.32802,30.369522,60.908554,4.407 1004,138.11667,221.55548,20.25386,33.05101,4.402 1004,244.48181,206.85625,30.371277,56.177353,4.387 1004,74.117134,213.14476,21.162369,34.82544,4.38 1004,530.9914,201.02692,15.714783,33.200592,4.307 1004,3.2838035,-14.068985,15.636625,41.44137,4.285 1004,34.691116,202.40536,19.169243,39.017914,4.25 1004,426.96414,121.071335,31.125488,100.28128,4.22 1004,443.11682,185.45576,31.370514,75.94881,4.174 1005,541.7896,207.53897,28.59967,74.99521,61.389 1005,379.6309,207.33218,20.4021,41.53537,9.862 1005,399.53415,208.88008,21.07251,46.376633,9.695 1005,551.2432,211.01294,20.66156,50.10608,8.45 1005,256.14343,216.03079,23.104004,41.52362,7.177 1005,292.34332,220.23567,29.277832,66.41368,6.978 1005,421.39166,139.47115,31.513062,95.16217,6.806 1005,-6.208911,489.8608,18.557968,42.291473,6.694 1005,-5.2519846,-16.465586,16.896347,43.65021,6.553 1005,245.00038,208.59283,29.685226,59.92975,6.534 1005,-6.1490307,120.260345,18.710413,42.25949,6.299 1005,602.2532,-56.187637,54.140015,138.48158,6.22 1005,526.16174,208.40009,31.864746,72.24451,6.147 1005,-17.284212,-65.862236,56.1597,149.60371,6.022 1005,626.77954,488.22034,20.42511,45.019775,5.907 1005,-8.66208,464.22208,37.580215,92.045746,5.873 1005,92.681206,205.04755,32.065536,57.39029,5.873 1005,613.19165,454.63574,38.96997,107.526,5.859 1005,125.025856,206.78662,30.75904,59.64801,5.831 1005,62.09664,123.31971,22.661415,43.60801,5.804 1005,-11.248794,-31.22697,29.867016,74.473206,5.786 1005,209.56491,207.20796,31.325974,59.104904,5.758 1005,516.33594,192.05743,31.044983,76.88724,5.53 1005,242.02135,215.99214,22.241226,41.152542,5.385 1005,311.57697,216.8345,24.422516,64.436005,5.315 1005,627.51154,-18.035976,17.189331,47.303444,5.21 1005,-11.68447,115.01956,29.116299,67.628784,5.191 1005,264.89587,216.99075,21.980743,38.67331,5.123 1005,-72.60837,265.1502,200.58191,463.54034,5.094 1005,424.5893,208.76105,22.956635,47.977295,5.021 1005,486.459,96.58009,27.85788,95.42952,4.997 1005,357.75372,228.69435,27.432434,62.54634,4.974 1005,270.39423,189.40794,11.181885,20.394547,4.962 1005,26.737572,108.5597,30.699837,70.8738,4.932 1005,583.4317,411.57812,71.05206,176.95178,4.844 1005,179.33685,205.14992,18.137451,38.142838,4.82 1005,-21.814375,402.26105,79.17295,175.0075,4.792 1005,-40.861008,365.40857,111.31947,276.766,4.723 1005,473.31284,243.51665,20.848877,36.265366,4.715 1005,585.568,-102.446075,75.572266,238.75484,4.696 1005,490.88168,-180.90654,233.97678,425.28165,4.67 1005,418.59988,203.52965,22.240387,43.843765,4.657 1005,278.22574,188.61539,11.694458,21.514374,4.638 1005,305.88336,218.89442,21.875061,48.659927,4.613 1005,536.3156,310.69128,143.7193,341.9107,4.596 1005,622.5486,-33.65242,27.174622,76.8666,4.594 1005,-5.671482,135.67941,18.051785,43.33177,4.478 1005,165.10704,188.1965,13.967743,25.16278,4.466 1005,107.94994,121.418106,33.3509,67.0831,4.449 1005,101.54919,200.46277,37.35235,84.895996,4.448 1005,-15.972995,123.972664,51.088333,137.58124,4.446 1005,508.55768,165.26,30.64331,85.18434,4.443 1005,186.26236,203.08098,18.126373,31.158737,4.437 1005,491.66455,249.23648,29.524048,57.867065,4.415 1005,340.43353,226.76405,37.812256,90.51039,4.396 1005,509.08417,212.757,31.838745,65.112625,4.364 1005,1.0106325,121.25186,20.902527,41.880432,4.361 1005,373.2277,212.44377,28.73941,62.28224,4.347 1005,615.07336,178.62254,22.799744,68.3271,4.343 1005,223.12555,213.59052,23.939896,45.593567,4.307 1005,616.67126,140.85442,24.496033,86.93053,4.306 1005,494.10834,227.79492,236.75397,514.9257,4.304 1005,507.0764,236.25006,32.39029,63.08441,4.29 1005,505.56653,239.52925,21.029907,34.680862,4.287 1005,157.93268,195.7321,13.354996,23.583786,4.275 1005,3.4486241,-13.682951,15.377996,41.41181,4.272 1005,220.79395,-11.467266,30.964844,61.632782,4.231 1006,393.74973,200.12314,22.269714,53.943344,19.421 1006,251.83275,207.10532,30.578903,67.30139,10.244 1006,290.95947,217.35051,30.027771,69.39632,9.732 1006,36.1551,207.80579,29.990078,57.934387,7.358 1006,-5.0054746,-17.025078,16.788769,43.712803,6.928 1006,264.8085,213.69846,22.300598,43.237915,6.795 1006,248.94331,218.32904,23.301437,47.63028,6.692 1006,134.53249,216.69713,24.598206,43.153732,6.382 1006,467.3749,224.06845,32.056854,68.93475,6.375 1006,126.85974,223.68352,24.417053,40.340622,6.272 1006,-4.9866686,313.74927,18.880611,39.506317,6.263 1006,443.1183,197.75671,19.431396,39.73697,6.255 1006,611.82715,-49.3929,39.82068,104.7131,6.212 1006,-6.6227794,118.33952,19.081835,46.627792,6.0 1006,6.7650485,195.92355,28.640099,56.741806,5.806 1006,416.6106,192.94153,27.593353,71.44119,5.8 1006,-10.997786,-30.85728,29.555079,72.045135,5.75 1006,-12.756775,477.87256,31.086126,62.51465,5.674 1006,626.9785,-18.292809,17.083862,49.695576,5.658 1006,448.30307,206.79895,21.562195,40.440628,5.547 1006,-17.461285,-64.74974,56.099415,147.15138,5.519 1006,-5.541812,56.847404,18.202702,45.220505,5.501 1006,-6.5409303,489.53983,19.046183,42.74173,5.451 1006,241.99716,213.30978,22.198944,46.576538,5.404 1006,18.196304,209.11266,39.693005,90.23149,5.395 1006,612.94885,455.00998,39.43811,106.91702,5.377 1006,-4.7546206,191.90779,16.243841,35.194702,5.244 1006,10.806118,200.41722,19.033169,30.569366,5.222 1006,626.6486,488.55087,20.84375,44.69168,5.189 1006,362.6224,236.56805,20.173645,41.746033,5.051 1006,-73.093445,265.05682,201.06445,463.52594,5.029 1006,56.81539,120.63589,21.998344,41.30979,4.937 1006,115.16571,220.43484,33.549408,57.79825,4.911 1006,585.3852,-102.50708,75.30646,240.70071,4.878 1006,145.0847,208.53036,22.06514,43.963852,4.873 1006,154.40637,209.1506,20.011932,42.587585,4.868 1006,490.22583,-181.0757,235.01782,428.351,4.867 1006,46.433853,207.78745,25.185799,45.32631,4.839 1006,272.72485,221.75275,22.951324,40.222595,4.827 1006,212.77437,202.51163,29.427536,64.14053,4.819 1006,-40.931496,365.0061,111.60417,276.10352,4.811 1006,583.1011,412.37048,71.50531,176.09656,4.81 1006,1.4362597,316.95764,21.545603,40.570587,4.778 1006,536.2716,310.64957,143.71753,342.25668,4.733 1006,58.079304,212.40791,33.06319,69.985916,4.719 1006,34.16475,219.57643,42.072258,95.41673,4.703 1006,4.426651,207.97241,37.159863,100.28497,4.682 1006,253.2911,-33.394577,28.88742,61.67963,4.583 1006,3.6080432,-14.516663,15.66518,41.769356,4.528 1006,493.70935,228.43896,237.17566,514.3333,4.459 1006,606.8504,-34.505005,27.448425,80.011185,4.447 1006,-10.928736,300.69418,29.118813,63.83383,4.433 1006,228.13107,209.62863,30.731506,66.40927,4.427 1006,-11.380947,91.36161,28.677467,72.889,4.407 1006,270.34354,186.51817,11.741241,22.488464,4.399 1006,250.97084,-60.28704,57.783707,114.66121,4.381 1006,-17.875164,434.24213,55.055046,142.04926,4.363 1006,22.557182,199.20294,27.99488,54.021973,4.362 1006,-4.9839454,41.297127,17.145346,41.888298,4.34 1006,18.328054,199.46675,19.04148,30.852783,4.322 1006,615.9698,145.20999,24.019714,93.066895,4.296 1006,-14.946989,124.78794,50.38009,138.49445,4.291 1007,220.20094,207.27524,29.315048,68.337494,11.293 1007,412.01605,204.223,27.724915,70.13103,9.701 1007,195.95712,208.2763,30.809402,66.56256,7.232 1007,346.84503,217.63913,19.317932,40.014862,7.024 1007,623.11835,-32.553413,25.89032,72.43317,6.945 1007,209.49019,210.91843,23.143005,52.228424,6.888 1007,353.13666,210.77615,21.283783,43.58159,6.779 1007,498.1789,230.21225,31.03772,85.09323,6.757 1007,-4.995988,-17.77031,17.286385,42.809074,6.576 1007,-12.547853,-43.069057,41.510544,103.17293,6.37 1007,335.435,231.70984,21.621948,49.088257,6.2 1007,612.92004,454.36414,39.47876,107.36157,5.963 1007,473.60187,217.31624,19.960266,39.463486,5.79 1007,423.80817,207.1796,21.179749,45.345062,5.49 1007,-6.3922024,489.3656,18.806551,42.809937,5.482 1007,231.38298,213.88943,21.994644,44.72104,5.474 1007,-9.308306,464.13983,38.004013,93.079956,5.457 1007,192.54666,208.00652,21.214752,47.794037,5.396 1007,225.16873,207.10973,21.390228,37.087708,5.282 1007,35.468197,238.84297,32.755543,65.82982,5.227 1007,432.14496,207.23529,21.065826,40.936554,5.182 1007,-72.89465,264.85962,201.08864,464.19385,5.176 1007,259.79797,224.97766,30.29126,62.888245,5.158 1007,611.7698,-50.429787,40.520386,106.15278,5.158 1007,626.6421,-19.351107,17.879639,46.67891,5.126 1007,277.53296,228.31667,30.41629,60.07054,5.124 1007,626.4021,487.95715,21.034302,44.940857,5.049 1007,99.96672,211.80484,29.920197,65.365234,5.03 1007,115.690956,209.97882,30.595818,64.54907,4.935 1007,337.75775,220.6999,18.379028,41.60292,4.912 1007,397.14584,2.8564339,15.063934,28.369568,4.877 1007,583.1017,411.5274,71.702515,176.90222,4.857 1007,-41.013107,363.84195,111.93527,277.14267,4.839 1007,-6.48112,214.28668,19.275768,42.40143,4.833 1007,90.362,214.79309,22.36422,47.12805,4.823 1007,536.7228,310.58188,143.10718,341.74466,4.758 1007,96.87599,223.62708,22.417076,43.803802,4.739 1007,162.2853,209.22064,19.201523,40.5616,4.683 1007,585.56854,-100.439255,75.46509,234.63445,4.678 1007,-5.590839,191.51913,18.34282,45.370667,4.649 1007,3.5242033,-16.290928,16.102417,40.05991,4.613 1007,490.45227,-177.66745,234.71857,423.89035,4.567 1007,498.40125,201.87685,30.908203,78.83861,4.563 1007,377.12415,207.67638,20.322021,48.537003,4.517 1007,-18.317331,434.25543,55.580826,141.86566,4.493 1007,-9.619957,229.3218,38.951378,100.932846,4.459 1007,146.6527,206.06369,18.258347,35.913925,4.447 1007,595.9396,-47.394085,42.063416,106.203835,4.443 1007,237.58167,215.13948,29.260223,59.81697,4.411 1007,493.96274,227.52109,237.26993,514.95557,4.401 1007,60.319786,243.66127,31.507683,62.952103,4.356 1007,-6.2735796,88.60479,18.058008,43.16178,4.298 1007,604.48004,-28.201283,52.012512,140.38362,4.297 1007,495.35364,176.41963,28.935791,80.73485,4.289 1007,412.47144,158.70438,26.461304,87.35083,4.254 1007,411.59033,241.00357,33.276794,67.52261,4.211 1007,3.870635,219.52611,38.96187,104.126144,4.203 1007,181.35175,212.12604,29.493164,65.92853,4.197 1007,272.5274,229.19159,22.85263,47.652344,4.157 1007,154.72025,206.53094,18.893478,36.13336,4.143 1007,396.11987,-12.417393,14.584961,33.36958,4.115 1007,330.72354,213.30745,19.427887,41.849243,4.109 1007,81.78478,208.43796,22.57505,44.327484,4.104 1007,579.59125,275.57086,31.22168,52.274353,4.097 1008,543.0861,199.7214,19.247192,43.651596,48.05 1008,558.4683,201.7549,28.333374,79.78746,43.143 1008,401.5544,202.9017,19.685883,41.640564,35.943 1008,346.21506,209.88991,18.319702,38.9514,9.394 1008,184.14325,212.69278,24.802246,46.48291,9.244 1008,479.91,209.26468,22.535797,42.978943,7.903 1008,622.56055,-33.24506,27.059265,76.705055,7.502 1008,-5.2168393,-17.689121,17.319925,41.71918,7.456 1008,418.11908,198.95776,32.086365,79.35742,6.774 1008,330.6711,209.96825,19.084717,40.492767,6.548 1008,191.64001,206.59232,24.02803,45.02301,6.535 1008,626.9604,-17.295246,17.537598,46.96801,6.525 1008,-8.477035,464.73013,37.34559,92.848724,6.319 1008,404.57364,173.811,26.949738,74.10376,6.214 1008,487.8883,211.83942,22.365234,38.795837,6.204 1008,-0.046844482,220.77249,23.704388,55.22043,6.109 1008,475.19772,202.00784,19.902985,44.529312,6.068 1008,427.04745,171.85184,18.547058,48.736206,5.928 1008,542.87915,202.42865,28.121582,65.50641,5.887 1008,366.82678,218.35892,20.810364,47.591827,5.707 1008,602.37756,-57.36917,53.82666,134.6641,5.696 1008,626.93884,488.38922,20.566895,45.3338,5.684 1008,-4.37022,205.44244,17.805618,39.326324,5.659 1008,28.678726,114.885185,29.827496,67.13386,5.657 1008,364.2172,213.11888,17.036438,40.09059,5.619 1008,554.3981,201.0915,22.385681,53.43596,5.6 1008,200.40222,214.12222,22.409958,42.227875,5.587 1008,-12.439918,478.32565,30.47157,62.113434,5.542 1008,424.01523,173.35884,26.46466,77.62901,5.538 1008,-10.698376,-30.445843,28.765776,67.52632,5.534 1008,417.14282,197.19118,21.60559,52.318832,5.442 1008,531.4166,199.68646,22.433105,42.96515,5.423 1008,-17.954647,-64.108185,56.07183,144.98257,5.339 1008,-6.4338627,489.67413,18.741062,42.933167,5.326 1008,-72.97469,264.00012,200.8624,464.63635,5.204 1008,323.46664,207.45694,19.23108,41.98169,5.134 1008,3.6311316,-15.694532,16.241732,38.811287,5.106 1008,176.60872,221.18741,23.646805,45.22928,4.989 1008,613.2508,455.5174,39.092346,105.92987,4.972 1008,583.3459,411.22824,71.4021,176.92648,4.964 1008,521.13586,199.67665,22.11438,41.352127,4.939 1008,169.19366,216.65593,22.43982,42.743607,4.871 1008,-21.66547,402.7937,79.35237,175.23999,4.854 1008,81.31232,215.04909,22.011627,35.05722,4.836 1008,536.6404,308.81717,143.41101,343.89853,4.833 1008,614.28674,-17.903908,27.412598,71.004326,4.814 1008,449.7873,176.84338,18.559326,39.516693,4.784 1008,-6.078191,223.36674,20.194778,46.60347,4.738 1008,27.802706,215.29025,32.267303,68.34009,4.715 1008,156.00592,206.77235,29.800827,59.98152,4.61 1008,59.56205,215.92618,31.733467,64.177795,4.6 1008,477.12372,194.49347,15.865173,35.08606,4.595 1008,-5.342381,49.199398,17.604126,43.078144,4.587 1008,-5.6827264,259.35977,20.290329,48.45587,4.584 1009,578.67426,199.34137,20.717896,45.516846,86.756 1009,427.66202,204.5006,18.189056,39.235886,33.628 1009,612.50336,193.80653,26.41333,92.4102,33.474 1009,370.34512,206.83319,19.808624,43.532104,15.388 1009,617.1088,230.21777,22.074158,68.06012,13.614 1009,377.4739,207.31151,19.420624,38.764328,12.747 1009,95.06419,218.72908,24.57602,54.545364,10.842 1009,491.32327,208.59854,31.381989,86.35297,9.64 1009,362.7628,205.21977,21.046051,51.284164,9.582 1009,-5.0950336,-15.841818,17.477545,41.271923,8.627 1009,609.9386,196.63338,21.096924,56.549683,8.287 1009,339.20258,207.40187,20.46759,46.547913,8.109 1009,623.6646,-32.047855,26.283813,71.73581,7.96 1009,627.49603,-17.655066,16.965393,44.5044,7.817 1009,-18.582539,-61.65549,56.32588,142.2249,7.509 1009,527.7208,207.29938,22.439575,44.686005,7.274 1009,616.29834,190.64986,21.561707,53.86418,7.232 1009,420.34543,201.92297,20.40915,46.927094,6.904 1009,0.35302043,113.3395,20.883797,51.217003,6.831 1009,-10.660236,-30.305256,29.754711,68.37248,6.82 1009,3.0555081,-13.593269,17.012506,37.561382,6.331 1009,354.11984,204.13654,20.533325,48.815353,6.326 1009,-8.711592,463.55307,37.509483,94.532684,6.188 1009,555.00275,197.45638,20.939575,43.137833,6.012 1009,620.76404,187.19211,26.630615,74.671875,5.746 1009,-12.71894,478.21576,30.93121,62.354553,5.721 1009,345.4684,201.42905,18.957367,45.421722,5.686 1009,11.701519,-29.376759,58.040028,127.13774,5.58 1009,619.56976,-16.306572,17.186462,40.59877,5.565 1009,605.20593,195.88385,41.88391,127.711426,5.455 1009,175.84094,215.81602,24.901688,43.78569,5.414 1009,400.344,200.37335,26.595398,66.97986,5.404 1009,-4.986157,1.307764,17.958918,42.741394,5.356 1009,611.4381,-49.906372,40.943542,104.7409,5.347 1009,613.54474,454.61884,38.928772,106.75549,5.324 1009,-72.80026,264.4045,200.5849,464.31522,5.317 1009,98.0632,220.79971,31.977661,73.16431,5.31 1009,192.95944,215.98482,22.382568,42.476913,5.3 1009,-0.6112087,250.02927,29.005873,67.87924,5.261 1009,-6.6013985,489.7632,19.03919,42.521393,5.258 1009,626.4218,487.2901,21.331787,45.58423,5.25 1009,567.7456,190.86407,33.677246,68.827576,5.204 1009,58.087112,-3.0558548,29.809807,68.3183,5.177 1009,181.03798,206.78583,30.636597,62.416748,5.063 1009,536.085,309.21674,144.3598,343.64972,5.054 1009,163.45715,207.88268,33.22696,61.95314,5.03 1009,-4.7373567,54.843525,17.818432,48.356945,5.02 1009,227.17833,220.59413,21.088562,38.445084,5.016 1010,616.3062,203.09688,21.151123,50.413666,88.749 1010,436.81186,209.4438,17.439972,40.058228,25.768 1010,391.24182,198.72534,24.33496,68.80731,22.022 1010,443.10715,205.2268,17.222443,37.91681,10.945 1010,359.01627,210.34596,22.141235,51.285538,10.541 1010,375.02243,196.49347,28.650787,72.18338,10.08 1010,453.99625,213.03067,30.03659,82.50174,9.949 1010,-5.0075874,-16.189209,17.15086,41.712833,9.448 1010,624.2267,200.42389,18.858765,49.33142,9.193 1010,102.136505,219.62038,24.778389,47.06447,9.091 1010,98.17173,226.58502,34.409813,72.26465,8.482 1010,-0.5290532,208.99567,22.71203,52.26822,8.41 1010,-18.951963,-61.9404,56.61657,141.70631,8.083 1010,258.13132,232.58685,22.014496,45.499023,7.851 1010,592.66455,200.41939,27.865417,60.021317,7.59 1010,179.59131,203.75305,30.599274,61.86209,7.512 1010,623.482,-34.46788,26.370789,77.87413,6.879 1010,627.37463,-20.155247,17.660278,50.308537,6.837 1010,-10.689775,-31.888577,29.423199,70.107635,6.729 1010,514.5624,198.8408,21.197876,50.855316,6.615 1010,340.7585,207.49164,16.086243,37.298218,6.614 1010,600.68475,197.34612,33.60858,77.82393,6.47 1010,3.3019233,-13.742954,16.511635,37.89914,6.439 1010,2.2153687,234.11377,18.645334,38.86847,6.406 1010,27.945097,197.70753,31.647207,68.69954,6.257 1010,-4.695911,1.4806881,16.540607,41.52996,6.244 1010,450.23618,206.67834,18.406738,40.171234,6.182 1010,364.89047,200.47876,28.802704,64.32117,6.072 1010,-8.853581,464.3636,37.606728,92.95569,6.071 1010,-0.293324,250.00603,22.638277,46.343155,6.042 1010,196.61467,204.55101,29.79242,63.042465,5.939 1010,347.83655,212.97253,19.248566,40.54805,5.917 1010,11.051859,197.35965,33.66033,69.85214,5.692 1010,1.2995839,107.452805,20.339804,47.735886,5.669 1010,-5.9672117,488.81638,18.437447,42.848846,5.532 1010,612.6706,174.0756,31.812439,88.695786,5.5 1010,25.441296,217.64552,22.455433,43.301437,5.336 1010,-4.451735,246.62756,18.078735,43.300354,5.293 1010,437.9625,208.30122,26.959808,62.847244,5.287 1010,-4.1818514,222.9179,18.251057,45.30739,5.284 1010,-73.02163,265.22888,200.7615,462.92383,5.253 1010,109.54391,225.67772,25.364784,46.044785,5.252 1010,584.1029,190.77522,27.66748,59.602524,5.252 1010,613.60297,455.28165,38.496033,106.596405,5.237 1010,485.31952,216.42955,17.082794,38.120575,5.222 1010,626.52594,488.9152,20.986572,44.082672,5.175 1011,533.4393,219.54523,23.010681,42.234863,70.978 1011,474.3869,216.55606,21.388245,45.381348,69.986 1011,409.73627,223.36934,21.380249,55.761276,28.072 1011,401.57318,221.26645,21.442596,54.058746,12.659 1011,370.7511,221.65225,16.889221,34.69699,10.528 1011,497.27393,224.2886,20.145508,40.441376,8.71 1011,191.5249,214.07196,26.11795,46.60611,8.294 1011,-12.68816,-41.702137,41.742943,101.45657,8.212 1011,-5.3587127,-17.679035,17.430565,42.779613,7.343 1011,363.99887,227.53943,17.597137,41.59384,7.132 1011,422.05777,217.97273,25.819397,67.81575,6.933 1011,332.2823,225.00238,27.269867,69.18713,6.883 1011,366.5213,218.8493,15.22644,31.660263,6.865 1011,232.49924,238.68922,26.412476,65.27971,6.632 1011,181.59595,215.44537,30.477173,64.335266,6.597 1011,0.42227864,114.02573,21.793674,50.271454,6.484 1011,452.73828,209.61446,28.203308,69.48216,6.248 1011,61.01674,109.79135,31.02649,69.77051,6.124 1011,468.977,211.69054,17.964172,42.435608,6.096 1011,416.78583,230.4294,21.367493,59.833084,6.082 1011,596.267,213.78606,31.386536,94.55916,5.961 1011,387.31094,223.44194,20.967133,44.268173,5.953 1011,185.2008,286.05286,37.05597,61.092743,5.869 1011,520.39374,216.78722,30.596619,55.47789,5.849 1011,378.68658,223.37836,18.568909,35.888428,5.741 1011,375.22525,222.062,27.156036,58.978287,5.741 1011,-8.759617,464.01532,37.57177,93.52997,5.683 1011,50.265255,218.41803,20.260921,39.761475,5.672 1011,-6.461752,489.21448,18.766962,42.904114,5.602 1011,0.24958968,247.75247,24.254007,66.552795,5.486 1011,542.1214,221.58585,23.43396,43.87805,5.461 1011,627.22595,-17.396557,17.158752,46.18634,5.459 1011,143.53534,211.48831,22.120544,45.18274,5.437 1011,560.4714,215.54398,22.032654,42.54599,5.429 1011,613.52625,453.676,39.0011,108.049835,5.373 1011,622.84186,-34.556824,26.55487,77.00424,5.326 1011,365.97958,218.47343,26.52362,59.15352,5.317 1011,395.40417,219.51172,19.458435,48.28119,5.256 1011,119.46449,224.78482,23.781143,45.249542,5.247 1011,10.574102,-33.211937,59.08883,127.38604,5.245 1011,4.027687,108.18198,29.303398,64.90976,5.238 1011,-12.716857,477.2713,30.834213,62.860657,5.214 1011,204.6927,212.89357,28.096024,64.78038,5.199 1011,-72.831024,264.17853,201.0325,464.35785,5.164 1011,61.70005,-4.162346,27.846092,67.63453,5.155 1011,65.90617,212.09955,19.853516,36.4339,5.12 1011,553.4127,224.2997,22.697388,42.3351,5.12 1011,602.739,-55.271584,53.218506,142.47092,5.117 1011,242.38878,253.00246,21.988907,51.60005,5.11 1011,536.1657,307.81223,144.37506,343.98734,5.103 1011,41.927505,218.93204,21.04382,39.319977,5.026 1012,559.9443,215.80295,22.185486,58.86435,82.022 1012,456.26144,222.87091,20.47348,60.51474,32.448 1012,550.17126,211.04135,28.68457,86.595,14.865 1012,490.28113,222.6411,20.525024,50.55159,11.164 1012,430.71625,227.78247,24.145569,66.80884,10.941 1012,287.03992,227.2857,26.44574,71.43042,10.498 1012,536.3498,206.50438,27.763367,89.033585,10.327 1012,403.9959,220.31688,15.548279,32.76349,10.327 1012,441.3591,220.63353,24.593506,70.789566,10.034 1012,390.59534,217.43024,14.805725,30.918839,9.062 1012,-18.551409,-62.936897,56.60161,142.87703,8.062 1012,490.95557,216.0856,17.470184,31.60199,7.994 1012,492.6936,216.25421,28.18396,69.26712,7.985 1012,-5.571555,-18.36969,17.902832,43.449413,7.918 1012,176.24435,218.32239,23.88446,43.716064,7.642 1012,187.36911,213.57103,31.444534,56.507767,7.508 1012,395.9528,219.63707,15.013733,28.993362,7.06 1012,228.96117,232.92111,29.304947,61.56604,6.8 1012,627.3613,-18.016445,16.986267,46.308815,6.721 1012,168.68486,223.52896,23.437424,43.592194,6.605 1012,184.09018,225.85324,23.93129,41.285217,6.454 1012,623.10175,-34.091248,26.054443,76.38797,6.398 1012,617.60443,189.09268,22.112488,73.684265,6.372 1012,479.77725,225.28549,25.938751,65.84161,6.263 1012,395.71692,227.85841,16.529175,34.791428,6.169 1012,349.3497,250.92566,28.253723,63.823853,6.129 1012,388.85486,227.9202,16.639526,35.421356,6.094 1012,403.08667,238.01842,18.225159,37.907516,6.053 1012,538.8474,165.39778,20.9292,60.12259,6.046 1012,205.26517,221.5497,28.914307,60.049057,5.941 1012,177.87344,243.74152,20.037811,35.8067,5.901 1012,-8.746576,464.26468,37.583122,93.43594,5.9 1012,-6.073538,489.25192,18.530529,42.194794,5.869 1012,-11.068559,-31.689844,29.573483,70.8218,5.852 1012,602.39606,-55.816017,53.729797,134.54623,5.795 1012,410.29376,230.1172,17.99997,39.607132,5.598 1012,162.80167,216.45663,21.725937,42.619476,5.59 1012,172.92702,230.91615,29.290482,55.994217,5.587 1012,59.84581,108.4285,31.815681,70.8999,5.584 1012,518.0104,217.74503,28.775452,70.72577,5.567 1012,2.8213084,-17.316257,17.296213,41.473373,5.544 1012,613.31067,454.72452,39.24353,107.23923,5.497 1012,10.8617115,-33.91531,58.428177,126.30995,5.466 1012,186.29646,245.15009,18.709488,32.72583,5.417 1012,543.4636,164.20628,24.007812,83.206345,5.397 1013,457.6651,212.09834,18.469788,39.562866,79.015 1013,475.01828,210.54623,18.058685,42.515945,67.961 1013,430.6567,211.28929,16.74527,39.885117,64.549 1013,592.89014,209.13403,26.575928,73.09494,49.259 1013,408.46472,208.14764,18.914001,49.82248,42.015 1013,467.40924,209.11458,18.894958,41.84021,30.686 1013,502.3941,213.09753,29.512878,91.69562,25.992 1013,399.66397,207.47638,26.611816,77.47113,21.507 1013,379.78366,203.53792,31.506592,80.68486,13.915 1013,227.29578,218.70763,30.357391,67.60039,12.196 1013,525.0852,205.30487,28.125488,94.61774,10.97 1013,322.1487,217.87723,28.918854,72.11725,10.875 1013,575.8667,224.86879,28.631165,70.404465,9.721 1013,164.24513,209.11891,30.598862,66.06102,9.373 1013,-18.621103,-63.0945,56.680542,144.38083,8.673 1013,583.8629,216.47028,33.915894,101.76044,7.569 1013,586.92755,211.50061,22.015198,59.71988,7.427 1013,-5.306814,-17.756805,17.653797,43.87817,7.377 1013,179.9742,211.09813,30.08641,63.268112,7.294 1013,192.3395,214.7905,22.602997,44.460846,6.948 1013,93.63968,237.9657,30.016548,62.17151,6.916 1013,622.95746,-34.734848,27.015747,74.53159,6.798 1013,392.58313,208.14987,21.826202,62.486786,6.774 1013,420.52368,209.96648,17.412994,42.304184,6.613 1013,517.55505,234.78098,30.721802,87.26578,6.386 1013,421.84564,211.21144,27.212463,60.410904,6.239 1013,444.98932,211.02135,17.145813,36.7601,6.083 1013,627.3514,-18.872864,17.651184,46.529907,6.022 1013,200.53036,324.42648,24.719452,39.39566,6.014 1013,-10.532375,-32.147415,29.46794,73.4042,5.911 1013,613.1943,453.34628,39.9859,108.51614,5.879 1014,481.33142,213.36258,20.866577,48.33023,90.376 1014,498.6803,212.8421,20.310425,48.977722,89.198 1014,558.6413,220.72733,30.249939,85.67801,66.513 1014,447.68512,217.25987,27.816345,65.89595,45.575 1014,489.27722,212.89746,20.982635,46.149384,42.205 1014,544.44836,211.17862,21.284973,51.16519,35.969 1014,426.8349,212.22508,33.455048,79.00252,23.211 1014,616.9306,240.74289,22.990906,88.26169,13.352 1014,562.07104,212.02597,21.633545,63.244904,12.703 1014,440.63022,214.98271,23.304413,63.326096,9.699 1014,189.33667,213.01859,29.665848,62.98117,8.975 1014,-19.058638,-62.2179,57.250603,143.95546,8.787 1014,542.177,207.41434,47.2937,157.35541,8.619 1014,-5.2132173,-17.442724,17.860092,43.40882,7.775 1014,543.2432,218.99786,29.75,74.03339,7.53 1014,208.00922,214.99118,22.451202,46.634125,6.958 1014,554.12976,209.46458,19.38977,51.267075,6.844 1014,10.397148,-33.98764,58.533867,127.60893,6.727 1014,-10.484818,-32.214912,29.580173,72.156555,6.675 1014,216.60887,223.12114,22.11473,42.753128,6.603 1014,226.16255,216.99844,20.23204,42.474457,6.22 1014,627.0747,-17.739357,17.129028,48.333786,6.211 1014,229.85294,215.28783,26.03804,57.73195,6.129 1014,432.4336,212.60226,20.304718,48.669434,6.017 1014,616.9262,272.71744,24.058228,93.86444,5.859 1014,626.8055,487.8279,20.630066,45.36209,5.844 1014,-8.758618,464.93533,37.419823,92.3757,5.822 1014,21.887703,92.26666,27.859314,65.43277,5.794 1014,582.9644,228.47446,31.90625,95.83646,5.75 1014,186.15558,216.10194,22.734467,46.021317,5.723 1014,611.7406,-50.86373,40.43988,107.247116,5.67 1014,456.1604,214.11574,31.020874,63.475693,5.668 1015,585.9822,211.9396,19.658936,53.656982,88.229 1015,519.9249,215.41264,22.53601,55.50844,84.792 1015,569.7706,212.73448,19.312134,50.14998,74.451 1015,506.26172,216.3907,20.951172,54.848007,61.157 1015,578.5577,214.34563,19.782715,49.803177,45.714 1015,498.6817,216.87523,20.558533,53.202103,25.399 1015,618.7142,221.87451,24.129456,88.41705,25.029 1015,486.89355,213.86041,24.376312,80.99057,23.133 1015,510.96985,212.98022,25.740234,68.186035,20.748 1015,483.6306,215.15881,19.65979,53.490265,11.567 1015,-18.930729,-62.26226,57.069263,143.87653,8.893 1015,620.9948,217.98169,16.593506,53.94455,8.149 1015,-5.357112,-17.444593,17.748621,43.79246,7.83 1015,410.9629,215.78236,17.440735,46.619186,7.476 1015,626.77344,488.68768,20.541077,44.85846,7.463 1015,9.653471,-32.692776,58.960808,128.53786,7.145 1015,76.97079,2.5449257,31.447166,71.41426,7.137 1015,266.7024,214.77655,20.796051,44.994965,7.039 1015,-6.1677933,488.34653,18.710217,43.40567,7.031 1015,474.19806,210.29718,30.177063,89.675964,6.827 1015,-12.114771,475.9723,29.839436,64.657715,6.712 1015,-10.515318,-31.924652,29.508505,72.48845,6.694 1015,467.58252,214.38829,17.659302,45.02559,6.439 1015,403.37305,217.24408,18.612854,47.33606,6.326 1015,565.4221,210.65968,17.935913,38.848053,6.215 1015,48.280834,93.939255,28.779781,62.17006,6.204 1015,622.72455,-33.99129,27.109314,76.16592,6.197 1015,581.09064,205.57677,31.62207,76.23906,6.106 1015,486.86465,301.76392,30.871674,63.371704,6.074 1015,154.1576,230.51112,18.734222,28.413925,6.04 1015,606.1382,215.29935,30.938599,105.79605,6.019 1015,591.4956,226.19576,48.683167,179.91765,5.977 1015,146.72916,231.8924,18.708755,27.33319,5.97 1015,69.419945,94.25946,32.79354,74.191925,5.927 1015,618.92957,491.63705,19.599365,40.719025,5.908 1015,61.816463,53.5693,32.552776,74.55789,5.862 1015,461.41724,216.89825,16.029236,39.723755,5.844 1015,23.80487,107.542816,22.439705,52.013123,5.775 1015,12.372377,180.71266,16.513102,33.136093,5.711 1015,77.34099,74.892914,31.999794,77.12439,5.62 1016,13.0154915,202.53455,28.411884,70.25897,12.993 1016,609.0889,201.27844,21.12909,47.819016,12.471 1016,41.103188,212.26575,23.86206,51.051086,12.021 1016,570.0736,208.86908,21.02417,42.342392,10.496 1016,577.2188,204.81607,20.32843,40.877106,10.274 1016,28.43412,208.61731,30.170464,67.394104,8.083 1016,617.08044,205.20197,20.67279,52.75653,7.812 1016,174.47552,231.59123,25.200897,46.376694,7.628 1016,623.046,-33.923557,27.134644,77.57334,7.428 1016,149.07742,-2.0197983,26.901001,56.039497,7.256 1016,-5.8543844,488.4141,18.03619,43.167877,7.23 1016,617.6711,192.97836,17.883057,38.57701,7.129 1016,250.24026,214.07698,17.984833,28.631073,7.12 1016,627.0714,488.68323,20.224365,43.58893,7.044 1016,614.5353,244.73672,24.978027,81.47879,6.964 1016,124.200325,201.99164,16.199623,37.68004,6.854 1016,602.97577,196.73271,19.688477,44.127457,6.754 1016,241.94292,217.71754,20.20906,29.42337,6.617 1016,1.5935278,200.84581,26.834229,66.896225,6.57 1016,-10.4395,-32.60476,28.956234,74.71012,6.564 1016,595.28015,195.70679,19.069702,35.810303,6.456 1016,-5.556592,-18.520445,18.190376,45.814793,6.435 1016,258.59055,213.41165,17.743744,28.302399,6.334 1016,586.00916,203.46426,19.31897,38.79506,6.194 1016,627.19037,-18.37021,17.542786,47.4228,6.179 1016,441.38342,209.40706,20.530975,37.635773,5.969 1016,626.04114,206.15317,19.845032,49.959076,5.963 1016,611.3375,193.25229,17.822266,30.077774,5.933 1016,111.07535,86.72612,28.713898,61.45056,5.874 1016,76.43614,77.81778,27.240883,65.921936,5.767 1016,40.77421,-30.776304,58.106365,121.47851,5.714 1016,-17.491362,-62.63856,55.613014,143.8756,5.677 1016,-9.165696,464.42426,37.817547,92.18799,5.66 1016,115.60706,207.68857,17.88337,38.118805,5.595 1016,142.33026,9.494991,30.233902,67.67061,5.512 1016,234.98405,221.66245,20.176285,29.625061,5.501 1016,560.51746,205.33936,28.100952,62.122772,5.491 1016,613.4858,455.6097,38.210266,105.943695,5.485 1016,44.261314,214.11282,29.949287,70.74603,5.438 1016,55.107643,216.55037,24.051384,49.983994,5.364 1016,-5.0249615,328.27234,19.706032,44.583344,5.354 1016,599.9577,192.04211,32.823914,98.69742,5.323 1016,-11.349298,191.34317,28.479973,65.21219,5.27 1016,107.51094,207.36415,18.530464,38.393997,5.263 1016,267.08496,212.20279,18.261322,29.32103,5.243 1016,273.10608,223.51712,21.777924,31.441574,5.216 1016,-21.874838,402.00403,78.88799,175.96326,5.152 1016,74.15347,-29.600164,57.37346,119.672356,5.13 1016,584.84143,408.3554,70.05023,180.64471,5.107 1016,23.925228,208.99411,22.876816,54.52289,5.081 1016,133.23718,91.3184,32.973297,69.51037,4.987 1016,134.07367,21.751835,28.539032,71.44702,4.964 1016,461.2998,174.20393,15.852966,36.225266,4.939 1016,570.19354,197.86075,19.192566,33.192886,4.936 1016,39.941315,28.945356,22.210846,55.331314,4.915 1016,81.81644,350.52884,24.630844,41.45401,4.888 1016,141.06168,-32.740604,29.610931,76.98089,4.884 1016,-72.86551,266.3942,199.82396,462.15,4.861 1016,-13.442476,186.34131,46.55703,135.63986,4.851 1016,564.47504,199.21437,19.423523,46.167297,4.85 1016,602.6025,-57.21808,53.58844,139.36967,4.834 1016,619.4239,-19.604837,17.67633,46.964226,4.834 1016,243.52934,205.89355,17.230362,31.128708,4.813 1016,104.25578,23.94571,23.4281,65.55264,4.81 1017,619.3114,225.25461,19.421448,63.885437,53.338 1017,249.75476,236.10335,34.10785,67.73216,18.063 1017,613.7999,214.02457,30.000854,109.56146,12.103 1017,480.9438,232.43806,20.404358,38.333817,8.331 1017,201.65225,224.40738,20.586899,51.836212,8.318 1017,615.9825,256.40112,24.040466,92.33841,8.076 1017,165.6218,11.081997,31.08966,74.092255,7.825 1017,619.547,365.11,17.807007,62.98944,7.329 1017,514.85034,212.74406,15.803223,31.447083,7.328 1017,109.542625,102.63778,27.285255,66.474525,6.68 1017,508.76663,218.87987,16.510101,30.802444,6.488 1017,-6.1405106,488.83008,18.337563,42.83087,6.421 1017,159.1726,-2.5217705,29.227371,68.55957,6.384 1017,159.65817,224.61717,23.207901,43.161575,6.361 1017,626.936,486.43707,20.802063,45.963745,6.248 1017,626.021,45.90798,18.96399,48.49006,6.247 1017,613.9573,453.5174,36.873535,107.836,6.223 1017,205.54587,220.9579,27.827362,66.232895,6.206 1017,627.38837,-17.812153,17.037903,45.87554,6.065 1017,-11.183636,-33.691902,29.248299,74.200455,5.728 1017,-9.320721,464.78043,37.904327,91.1835,5.702 1017,603.72705,-56.449802,52.595825,139.7402,5.682 1017,-18.102173,-64.54591,56.717213,146.769,5.666 1017,501.59503,212.68965,15.352356,31.93602,5.651 1017,-20.838469,405.61786,76.93628,173.66656,5.614 1017,-5.8601017,-18.7082,17.72245,43.85794,5.607 1017,623.44653,-34.731495,25.98468,74.73608,5.413 1017,154.58345,224.1643,20.145782,35.888977,5.404 1017,489.6825,235.88113,18.986176,34.062164,5.343 1017,508.46927,236.66916,15.553009,30.132477,5.31 1017,499.53888,236.59627,17.051575,31.210526,5.284 1017,585.5842,410.76797,69.1109,178.12051,5.23 1017,218.42645,223.21399,18.875473,46.48346,5.156 1017,616.7835,413.47937,23.624878,83.38574,5.092 1017,176.69868,52.978638,31.789627,67.72713,5.05 1017,212.94038,223.53322,37.63643,89.02916,5.035 1017,596.26855,218.24344,15.097107,28.250214,5.002 1017,168.63647,106.67559,24.479004,58.029625,5.001 1017,238.66112,229.20847,31.54457,64.3638,4.997 1017,118.94211,115.65909,24.105148,53.565857,4.993 1017,516.1368,237.48682,15.81366,29.22757,4.934 1017,-3.5088696,190.98442,15.06521,38.626953,4.897 1017,619.6956,219.65828,16.557434,41.22139,4.896 1017,628.6636,126.722,14.961182,40.166855,4.885 1017,228.66507,224.94072,30.230164,61.489426,4.869 1017,124.26854,107.19745,31.010818,71.93652,4.864 1017,614.6946,227.14494,17.446655,38.439682,4.827 1017,184.43587,110.106514,32.794327,67.308525,4.799 1017,320.6457,242.28082,24.004852,34.834778,4.762 1017,124.385315,228.88193,16.270859,35.169067,4.718 1017,-72.214584,268.3647,198.99258,460.32214,4.717 1017,105.5392,53.41609,19.36628,42.670307,4.662 1017,59.89777,249.3309,32.991833,59.700073,4.657 1017,150.66924,-16.101212,30.083878,70.09257,4.636 1017,263.96774,238.00255,34.384094,63.80168,4.636 1017,236.99571,486.84268,13.914169,21.30719,4.636 1017,589.0006,224.29358,15.133118,27.09755,4.631 1017,157.46735,112.81262,30.958557,72.871704,4.631 1017,508.74432,207.248,15.177734,31.430664,4.625 1017,226.02235,223.01628,19.89502,43.774216,4.608 1017,475.29047,216.27756,18.927612,42.078186,4.552 1018,599.102,229.71785,24.593628,58.360733,93.162 1018,621.0488,225.43794,18.853271,59.75084,78.485 1018,607.2663,224.28923,24.668335,60.19539,9.795 1018,626.974,-16.124714,16.889404,45.239117,8.882 1018,-10.377644,-33.796043,29.59193,80.048744,7.666 1018,623.09436,-34.11786,26.313904,77.41968,7.525 1018,117.820885,-0.7952614,32.035393,71.02617,7.428 1018,627.2793,489.63342,19.893555,42.852783,7.33 1018,242.76328,222.24052,19.043549,43.2921,7.324 1018,65.5671,93.09121,30.719208,73.77955,7.016 1018,611.0327,206.18523,31.445923,89.47792,6.971 1018,-11.607515,475.66977,29.591782,65.862885,6.953 1018,418.32767,202.05785,18.042877,38.14229,6.872 1018,206.89139,237.14977,27.252625,66.47072,6.801 1018,-5.7129154,-18.799652,18.654945,49.444862,6.799 1018,-5.9446163,488.32324,18.091465,44.45575,6.712 1018,249.639,219.67357,19.176605,37.69203,6.702 1018,269.39496,230.47684,28.444153,58.776978,6.571 1018,-17.99991,-61.68553,55.843735,144.55663,6.564 1018,625.0652,245.04716,18.968262,49.97081,6.522 1018,129.31046,-3.3035126,31.415314,65.70361,6.443 1018,101.23382,108.53287,26.940681,52.287903,6.416 1018,596.10846,226.69681,20.54895,40.93698,6.261 1018,-0.7340121,-21.350426,26.519073,78.01211,6.188 1018,-18.78898,430.21347,56.233826,144.83145,6.156 1018,481.66367,218.5315,18.81012,35.09558,6.004 1018,155.65611,218.2308,17.42572,37.898315,5.819 1018,9.603817,-29.467281,58.139835,126.59071,5.818 1018,75.1973,101.10901,32.350365,70.04736,5.81 1018,108.44696,108.482864,31.553452,66.44957,5.681 1018,-9.139299,55.221844,27.700243,84.44397,5.659 1018,273.34998,221.79092,20.380127,39.389313,5.637 1018,603.61945,-54.545563,52.303894,134.10611,5.595 1018,613.3174,457.00702,37.882446,105.29254,5.514 1018,278.85992,230.26306,22.791443,39.22693,5.432 1018,435.56915,203.92715,17.73999,42.409073,5.416 1018,-5.4085035,38.917072,18.164541,50.193096,5.38 1018,619.8343,-15.697016,16.450256,41.791878,5.369 1018,584.17346,413.25644,70.44092,175.42123,5.301 1018,41.561516,-32.06002,58.663208,123.37464,5.203 1018,110.15494,-13.226778,31.689117,68.26926,5.151 1018,442.6875,221.77414,20.75299,44.98575,5.149 1018,237.02673,222.32246,17.476654,34.996323,5.131 1018,198.22197,225.32556,27.890549,53.997375,5.122 1018,131.14114,29.947147,29.473999,74.791275,5.098 1018,41.281338,485.52484,21.661884,45.401855,5.097 1018,268.82825,212.03062,13.270111,22.775742,5.067 1018,162.861,218.44525,17.705597,40.26648,5.053 1018,571.6145,234.56908,17.05835,26.817612,5.048 1018,427.5499,203.31258,17.97934,40.191696,5.003 1018,-39.21883,364.34473,110.33855,275.60645,4.978 1018,170.94751,219.76454,18.190918,38.5493,4.895 1018,615.2382,-17.312399,27.20227,69.9694,4.864 1018,8.048354,34.05337,25.454788,80.63573,4.856 1018,2.8283465,488.84677,18.404606,42.956696,4.855 1018,-72.961685,266.70688,201.1653,461.683,4.834 1018,451.6409,191.3716,17.6781,42.870544,4.818 1018,258.61517,218.86832,19.641602,39.15518,4.803 1018,627.37494,2.7758884,17.22406,44.535507,4.796 1019,551.7781,212.89168,27.9375,65.10683,91.61 1019,574.73566,210.98402,24.92572,66.29433,90.862 1019,608.3107,211.28731,22.296936,56.29265,82.48 1019,625.0654,214.11337,19.056946,50.191223,10.293 1019,161.0247,216.0304,30.193375,60.86685,8.43 1019,-4.8915343,-18.030422,17.319845,43.612396,8.334 1019,385.5426,176.01767,20.263214,52.501175,7.998 1019,-5.846996,489.30746,17.894783,41.651398,6.886 1019,354.82684,188.43193,17.929626,35.51941,6.802 1019,-11.939554,476.28815,29.839716,64.33417,6.54 1019,627.01587,489.00342,20.23169,44.298096,6.381 1019,43.08719,6.986927,31.804337,64.65503,6.352 1019,385.3506,213.289,21.386627,44.270782,6.314 1019,-10.545771,-33.024242,29.05059,73.23701,6.28 1019,-6.067219,217.21382,18.775293,40.772354,6.27 1019,-18.274982,-62.954647,56.041996,144.63428,6.069 1019,622.3301,-34.42288,27.44928,78.255714,5.946 1019,371.579,195.23347,18.246368,39.23787,5.589 1019,417.54227,205.0391,19.481384,34.805862,5.562 1019,615.06525,222.04999,22.378784,54.224182,5.554 1019,627.2262,-19.070753,17.47406,49.16558,5.535 1019,413.2237,201.08911,16.21939,34.58452,5.393 1019,602.86694,-56.484318,53.640625,139.33441,5.359 1019,611.0264,189.54071,31.717224,88.621796,5.35 1019,583.9521,412.25928,70.784546,176.38147,5.325 1019,31.099964,12.517845,30.226856,72.58201,5.173 1019,-1.2390053,221.38739,28.314606,67.50879,5.156 1019,425.2679,213.30489,19.782776,32.172806,5.155 1019,536.3334,213.81702,30.822754,59.7352,5.145 1019,571.3436,207.42043,19.51892,51.9626,5.073 1019,375.6522,164.62587,26.530182,70.760666,5.07 1019,613.48987,455.57584,38.298584,106.83945,5.057 1019,363.97748,193.24359,17.662415,37.371704,5.056 1019,596.51605,231.88647,39.964172,108.51282,5.035 1019,12.143621,26.173935,30.38128,72.062325,5.012 1019,-72.65952,265.30377,200.60184,463.98273,5.006 1019,-40.616875,363.1449,111.44768,278.75208,5.006 1019,389.2251,188.63991,24.735535,60.75775,4.993 1019,3.3407247,24.306686,27.111198,79.66159,4.991 1019,2.9458385,-17.059956,17.008387,42.360138,4.987 1020,589.4848,224.34035,28.79773,73.672165,97.988 1020,563.8354,231.33887,29.305603,71.29315,97.901 1020,618.3311,227.87509,21.557129,66.85681,78.685 1020,599.3398,222.7842,32.671387,78.6418,19.928 1020,-10.228596,-32.316536,29.579153,78.28056,7.911 1020,359.8783,171.96758,25.940979,73.01199,7.134 1020,-17.879875,-60.485878,56.446342,140.65926,6.889 1020,4.4379687,211.05896,32.159115,70.966644,6.818 1020,622.1224,-33.934223,27.85675,76.54446,6.183 1020,91.83762,223.94308,29.732208,61.25049,6.101 1020,480.839,253.70102,23.39212,30.10138,6.095 1020,522.6812,250.79329,20.879517,25.962784,5.911 1020,362.93732,224.51706,19.641907,44.07898,5.871 1020,-6.343918,-19.997856,20.179186,49.310013,5.829 1020,36.220387,215.31395,28.911297,62.493027,5.738 1020,-12.343879,477.07098,30.308739,63.026855,5.727 1020,626.91125,488.49435,20.564453,44.62729,5.697 1020,-9.971846,87.471664,29.79329,74.82222,5.69 1020,-6.3340864,489.53033,18.565323,42.56781,5.677 1020,9.97138,-23.118774,58.013268,128.02798,5.572 1020,611.18445,236.21231,35.28192,95.80603,5.545 1020,379.01202,189.38895,17.329376,45.843567,5.456 1020,340.62372,206.34073,14.710144,33.620987,5.405 1020,18.765429,-4.6993427,30.85457,66.27696,5.366 1020,388.2531,192.12688,15.319855,41.778107,5.361 1020,583.6744,412.9464,70.80493,175.37701,5.353 1020,561.8772,224.24251,21.895142,46.396866,5.333 1020,143.19695,226.63187,29.117905,54.26352,5.294 1020,626.97815,-18.725435,17.749756,47.593803,5.258 1020,-1.0608435,-20.547857,28.441292,77.0395,5.242 1020,603.04987,-55.828003,53.641174,136.82944,5.229 1020,-73.02565,264.86554,201.32841,464.33545,5.091 1020,536.2912,311.05652,143.86517,339.84607,5.01 1020,611.8891,190.87395,34.78058,95.73247,5.006 1020,333.63223,204.21095,14.154877,34.912155,4.943 1020,613.3603,454.7426,38.741272,107.9682,4.906 1020,342.81116,171.57248,28.259644,67.09706,4.893 1020,542.2896,233.08246,31.584167,57.39325,4.889 1021,5.8401823,234.93826,33.89237,70.00482,10.268 1021,621.3339,-32.15216,28.135986,72.87602,9.231 1021,68.91867,214.44681,30.520714,61.913116,9.201 1021,106.312744,232.02873,34.47403,68.44527,8.874 1021,-10.202503,-32.603027,29.685886,78.551125,7.809 1021,283.00156,215.9642,15.588959,26.000107,7.653 1021,364.23236,219.05756,18.011719,37.012756,7.336 1021,22.768232,235.76105,33.382683,68.63092,7.287 1021,0.4602146,-2.4662952,24.154377,61.116135,7.113 1021,626.2063,-19.204466,18.213867,47.54004,7.093 1021,-18.059765,-59.922245,56.565067,140.495,7.067 1021,83.81989,218.83432,30.454277,61.40863,6.96 1021,617.0752,-7.916729,23.52533,45.570175,6.615 1021,371.26874,224.96236,19.317657,41.342087,6.534 1021,276.03564,215.65866,16.880981,27.096909,6.346 1021,627.07825,489.00583,20.165894,44.29294,6.17 1021,55.2044,211.58936,30.076958,61.928345,6.129 1021,570.0139,272.7612,22.211487,28.134125,6.068 1021,418.79254,218.56848,16.759033,33.907486,6.037 1021,-5.9562016,-18.923555,19.824022,48.05037,5.931 1021,553.6451,278.601,22.098938,28.130798,5.883 1021,-12.489832,476.75638,30.939117,63.316376,5.871 1021,325.06982,205.51782,14.231384,32.600082,5.828 1021,-6.279621,489.32892,18.544533,42.72766,5.756 1021,9.97073,-22.05056,58.120426,127.02023,5.643 1021,65.94746,213.06143,23.294037,46.10608,5.563 1021,494.51962,270.42273,25.818207,29.906128,5.529 1021,167.57608,211.28601,33.843277,74.66153,5.511 1021,1.2239122,-18.961258,20.31099,49.588387,5.334 1021,389.95276,217.39014,25.887695,58.11136,5.307 1021,-9.391228,76.44618,28.486168,79.157196,5.274 1021,318.02844,211.22447,15.244385,34.771576,5.237 1021,120.47836,230.71109,31.692139,66.269714,5.211 1021,584.3013,412.3733,70.42969,176.66174,5.198 1021,613.27606,456.22443,38.713013,106.35199,5.14 1021,-7.015331,237.78012,19.620325,45.01602,5.129 1021,93.980316,225.68288,32.839104,66.566025,5.115 1021,348.4018,207.4473,15.2838745,35.852966,5.107 1021,11.400627,-3.0933495,29.540924,64.09746,5.105 1021,561.2698,272.30606,22.640503,27.514435,5.085 1021,535.1901,273.47992,24.17218,26.62082,5.066 1021,-72.69479,265.13818,201.01166,463.30548,5.065 1021,80.10213,218.81181,24.142807,44.438095,5.051 1021,-15.424472,123.544914,51.117603,141.41077,5.048 1021,519.298,272.22266,25.194519,28.500519,4.981 1021,584.1244,272.53867,22.231812,28.788788,4.975 1021,420.70325,203.34389,14.388336,34.813126,4.965 1021,-21.666649,403.31836,78.42284,174.49097,4.959 1021,290.70554,215.09073,14.546173,25.571594,4.95 1021,-5.4256396,218.30312,17.70646,41.699814,4.901 1021,-8.808277,242.71907,38.91456,94.36409,4.843 1021,578.4004,277.41113,20.759644,29.382416,4.827 1021,339.88025,216.78366,17.7547,40.32367,4.82 1021,355.79556,213.16261,17.61789,40.826447,4.788 1021,378.7689,231.50024,19.859009,45.168274,4.775 1021,152.6554,211.3222,35.34546,74.23718,4.747 1021,-11.663366,228.39345,30.014105,68.26457,4.714 1021,-9.966258,4.097397,29.742588,76.47506,4.708 1021,602.2436,-56.00235,53.105286,132.99861,4.705 1021,-5.892767,208.57056,37.532555,90.44,4.693 1021,385.73242,183.0051,20.457489,52.198944,4.686 1022,384.22513,207.42285,18.603577,44.094086,19.85 1022,153.47562,230.46414,31.905014,67.53262,18.393 1022,12.212673,4.8205376,31.022732,84.23512,9.613 1022,458.33194,220.965,18.796234,35.633453,9.207 1022,-11.034544,-31.828503,30.031343,73.62173,9.082 1022,-6.310109,-19.203089,19.54404,46.46756,8.493 1022,439.2581,154.06053,21.603912,63.4489,8.49 1022,69.46007,210.60168,32.33438,71.227875,8.028 1022,125.196625,212.75941,25.849396,59.94127,7.776 1022,22.867737,-3.9068375,26.533009,60.430885,7.715 1022,0.33890963,6.832165,29.764376,77.68953,7.696 1022,411.651,225.20772,19.418396,45.087906,7.22 1022,627.4179,-16.374018,16.76294,44.362095,7.185 1022,623.45483,-34.49532,25.741577,76.09313,6.985 1022,10.2093315,-8.245003,56.04939,119.555756,6.571 1022,418.4499,223.36804,18.545288,39.652405,6.518 1022,422.02148,152.31888,30.970032,88.00592,6.481 1022,-11.657353,8.80444,31.156647,73.44116,6.447 1022,373.00006,205.0544,18.571625,48.4814,6.306 1022,-0.801543,74.1574,26.013134,77.74024,6.157 1022,164.62608,231.52042,24.453354,48.06964,6.042 1022,-6.658402,489.5546,19.279709,42.399384,6.022 1022,603.6288,-56.76699,53.105286,132.3009,5.981 1022,363.75922,203.08287,17.568787,42.386765,5.901 1022,-17.660168,-60.7846,56.882317,139.67633,5.847 1022,-5.6329594,97.901474,20.053383,50.250473,5.777 1022,-12.992983,477.61295,31.511896,62.11734,5.763 1022,-1.2443852,29.755428,28.601643,90.83307,5.655 1022,441.43695,229.29425,21.156494,45.92035,5.638 1022,0.8375752,-3.29677,24.868528,55.048233,5.565 1022,24.741726,11.481094,31.206036,77.22915,5.559 1022,626.7655,488.48633,20.48822,44.920593,5.559 1022,1.6734147,-20.542967,19.941038,48.53215,5.521 1022,393.78757,208.65866,17.025848,36.414795,5.396 1022,465.20892,219.19379,18.880005,32.09395,5.388 1022,-6.794341,-1.9406662,21.118511,49.407833,5.377 1022,619.7872,-15.762379,16.111816,41.084633,5.367 1022,37.049843,200.90933,29.241066,62.38034,5.29 1022,90.66063,212.95016,29.57798,69.43979,5.275 1022,349.34705,202.23293,14.879059,35.570633,5.271 1022,132.91202,218.912,28.274078,63.086838,5.253 1022,144.59337,222.10405,29.793243,66.64479,5.244 1022,-6.6457186,34.267433,21.386562,53.87655,5.235 1022,380.59802,180.67754,26.556366,66.19379,5.212 1022,5.3840327,-32.61678,28.719193,79.656746,5.191 1022,613.4867,455.4182,38.64966,106.975525,5.16 1022,583.8084,410.48492,71.22809,178.08252,5.146 1022,57.68399,210.2955,22.353119,43.842117,5.14 1022,356.47894,200.43176,15.589294,38.287964,5.108 1022,-21.960497,402.2127,78.871666,175.5904,5.05 1022,376.61768,203.43425,30.493286,90.396805,5.042 1022,102.53991,202.41518,35.71879,75.61101,5.014 1022,-72.64558,266.35834,200.22626,461.26422,5.011 1022,-4.929171,187.33968,17.543646,41.721573,4.964 1023,426.46854,203.19217,18.340729,49.87114,26.893 1023,512.38684,218.29115,26.330872,64.291916,24.125 1023,533.5836,211.38997,29.23639,63.933487,15.585 1023,525.9687,218.23979,29.906494,77.69725,9.546 1023,501.63354,221.00961,28.22107,70.7449,8.191 1023,-5.52967,-17.036795,17.765137,43.783176,7.252 1023,-5.8875933,487.9723,18.067516,44.186462,6.925 1023,175.39673,207.0081,24.481598,46.679596,6.91 1023,5.0200987,57.737343,29.799381,84.10873,6.592 1023,-11.677582,474.93066,29.45186,66.86487,6.425 1023,4.981207,1.8340073,30.473375,88.05002,6.347 1023,-11.10443,-30.965782,29.975857,73.47812,6.17 1023,-17.734715,-61.20072,56.367603,141.907,5.942 1023,552.3251,215.31232,22.748108,49.72815,5.855 1023,433.4973,210.62848,17.231384,48.620605,5.846 1023,497.66083,224.18561,22.04596,52.125885,5.829 1023,422.55374,175.25232,28.51178,75.74936,5.772 1023,544.1948,207.988,21.840576,52.745148,5.729 1023,613.8246,457.85196,37.235962,103.194916,5.685 1023,622.8813,-33.058746,26.488342,73.91452,5.677 1023,449.52795,113.39737,30.498108,78.36154,5.628 1023,626.80774,488.60132,20.62378,45.430542,5.619 1023,627.1491,-16.552889,16.55017,45.1965,5.518 1023,19.452875,198.69743,33.900887,53.58342,5.498 1023,403.8959,199.24443,16.941528,48.41507,5.485 1023,12.695131,-7.449909,54.841637,119.61685,5.471 1023,469.50775,113.49295,28.347504,70.79718,5.467 1023,487.47543,225.3436,28.352448,68.76178,5.466 1023,539.24097,222.00586,29.637451,74.746155,5.454 1023,-6.4612103,95.19139,20.475815,51.168915,5.428 1023,347.91968,194.2094,16.058655,30.461624,5.348 1023,528.40326,214.42668,22.274414,46.527054,5.184 1023,-72.87214,266.1699,200.59357,463.15286,5.122 1023,584.2624,411.7154,70.2005,177.25385,5.026 1023,205.30241,213.73587,27.74208,57.862457,4.962 1023,35.683384,-4.994692,30.847569,65.29111,4.946 1023,1.1723053,269.94855,20.49414,32.780457,4.923 1023,-21.986582,401.6842,79.268074,176.00427,4.91 1023,314.79288,204.68724,19.255646,31.683014,4.895 1023,396.5885,198.49474,16.71457,45.678802,4.836 1023,161.06049,216.09697,22.89386,41.362167,4.835 1023,450.5664,226.44794,19.078491,45.419983,4.78 1023,515.96875,156.33887,30.29126,86.93898,4.759 1023,125.43527,121.569626,28.226776,73.15654,4.754 1023,0.5781114,22.870384,26.496954,89.57152,4.743 1023,-9.570552,63.392662,27.934452,78.91471,4.732 1023,330.0818,203.42728,17.14862,30.596207,4.726 1023,12.927799,-13.022423,32.256588,67.9331,4.662 1023,1.0699725,98.91427,22.311716,57.18116,4.636 1023,485.37665,123.94887,29.23999,72.334915,4.618 1023,134.72516,223.95665,25.861511,40.672134,4.607 1023,413.00433,207.42952,16.954468,47.12323,4.606 1023,459.9928,97.45446,28.613495,81.031654,4.565 1023,536.6831,311.32727,142.99707,341.47156,4.521 1023,-5.9669423,31.584816,20.15737,58.16742,4.5 1024,460.7274,196.80217,22.708435,55.179214,43.827 1024,581.34125,218.79214,29.655823,82.15338,22.264 1024,585.0633,214.62955,21.696594,54.746613,10.2 1024,600.0006,208.1175,30.903503,118.63745,9.907 1024,615.36957,222.9206,24.161377,81.08038,8.616 1024,567.28296,218.21051,30.379944,86.1322,8.49 1024,471.5958,197.90384,21.4581,51.980682,8.436 1024,481.55353,198.38672,20.170258,49.87097,7.629 1024,-10.189734,-33.010254,29.07933,76.779465,7.223 1024,411.29633,194.32411,18.577698,46.303894,7.123 1024,-6.209237,-20.672337,19.609379,49.078083,7.062 1024,0.0790143,68.52304,22.745848,61.88797,6.934 1024,457.16693,190.77946,31.72287,92.01814,6.626 1024,593.0695,213.59355,18.628845,42.087906,6.522 1024,579.4328,209.63065,20.022034,51.412933,6.452 1024,627.1692,-16.781301,16.716064,46.767395,6.192 1024,-8.902732,464.16382,37.42868,92.53235,6.048 1024,-18.162775,-61.640507,56.611374,143.4342,6.023 1024,-5.258575,66.582245,19.66931,53.399513,5.842 1024,-5.6866813,489.70755,17.837029,42.010956,5.64 1024,470.77673,190.167,31.27829,88.002975,5.591 1024,611.70807,-49.142822,40.603577,105.23649,5.525 1024,626.5737,488.08127,20.84375,45.71982,5.477 1024,418.95258,195.44115,19.48529,48.37639,5.295 1024,-73.39456,264.21124,201.53891,465.2254,5.236 1024,610.9105,223.88501,19.89746,51.30356,5.21 1024,-3.5302453,172.74069,16.296127,40.98915,5.128 1024,583.0936,412.75458,71.553894,175.35046,5.121 1024,613.02264,455.12738,39.430115,107.05817,5.067 1024,-9.788455,13.166931,28.231403,80.58475,5.045 1024,-1.0733807,86.18281,27.432905,71.20748,5.036 1024,1.9784892,-21.52669,19.698519,51.49685,5.006 1024,403.87497,192.59915,18.66867,45.904892,4.956 1024,458.9502,183.43214,20.690643,46.40686,4.886 1024,579.4011,205.16391,42.46118,138.37509,4.864 1024,-40.195232,362.92914,110.95528,278.60492,4.832 1024,-4.37381,353.0404,18.804237,53.915375,4.8 1024,315.22296,199.98143,18.779266,28.294281,4.776 1024,262.00833,200.2279,36.190247,91.49344,4.77 1024,250.65973,220.49953,56.82367,131.36028,4.751 1024,596.03955,219.9847,28.883484,67.94011,4.738 1024,9.742077,-23.348263,58.143375,128.90202,4.728 1024,542.9198,134.03125,28.42273,79.30588,4.702 1024,601.8182,220.62332,18.248596,42.541107,4.663 1024,-21.753637,401.2719,78.89614,175.95612,4.659 1024,536.0908,311.26077,143.31744,341.8513,4.653 1024,395.87622,194.06694,18.215302,42.90715,4.648 1024,586.807,200.08946,18.980896,42.86435,4.571 1024,-3.2642465,188.99792,15.25729,38.69687,4.549 1024,450.34503,193.23402,26.361938,73.0305,4.529 1024,444.74268,3.7903862,15.490295,29.213371,4.492 1025,528.5415,204.88838,29.157654,76.532364,90.859 1025,477.59372,210.18558,27.582092,77.908966,14.969 1025,517.2332,198.48018,44.93634,118.85536,9.61 1025,496.48465,212.64745,22.274445,64.036514,9.461 1025,540.8573,209.758,24.078552,58.433197,9.067 1025,555.29895,230.04736,29.553467,84.079834,7.639 1025,-4.6845303,-16.681196,18.100357,46.69864,7.366 1025,-10.018201,-33.2853,29.33722,78.918335,7.231 1025,508.2268,201.29793,32.499023,89.46178,7.146 1025,626.4187,-18.789608,17.66919,48.988693,6.863 1025,1.5450478,-4.5692425,19.714901,49.82106,6.713 1025,545.5639,211.33371,30.69397,80.23227,6.541 1025,489.4998,211.84515,21.23648,54.762665,6.418 1025,615.0091,239.69641,24.33606,95.70819,6.231 1025,464.2007,218.64072,26.836945,66.82434,6.057 1025,621.4948,-34.79637,27.071472,78.80074,6.051 1025,601.4144,226.98718,33.136414,115.70477,6.026 1025,423.48956,161.3852,28.135834,82.15953,5.85 1025,262.15958,211.64865,36.78485,103.920166,5.839 1025,-17.767086,-59.62281,56.048054,140.24063,5.694 1025,-9.362984,463.46878,37.949715,93.009186,5.684 1025,500.6389,151.89236,28.862823,94.445114,5.627 1025,-8.248095,6.3061714,26.663681,77.16327,5.507 1025,594.91223,-5.3906727,31.779114,71.929955,5.486 1025,-6.0368977,488.0489,18.64138,44.160583,5.444 1025,246.08936,211.30728,36.250946,103.05832,5.439 1025,614.2467,-20.293678,26.85437,75.35477,5.346 1025,500.94196,195.06966,27.949097,73.78111,5.336 1025,551.1829,208.11946,21.969055,51.13109,5.136 1025,583.15674,412.7692,71.38342,175.31332,5.107 1025,160.38898,239.0112,22.40918,33.129913,5.101 1025,491.4825,-184.02109,235.36514,428.154,5.093 1025,-73.07602,265.01022,200.558,463.5309,5.066 1025,626.8496,489.18365,20.546326,44.568115,5.049 1025,613.022,454.74927,39.418518,107.973145,5.047 1025,475.8731,210.17276,20.265533,52.748016,5.037 1025,-5.0553455,211.85794,18.178658,47.74112,4.988 1025,-3.3788238,236.05847,15.366966,38.889008,4.98 1025,153.65573,228.35156,32.489166,50.879944,4.978 1025,-4.583194,72.53386,19.12239,54.49681,4.957 1025,228.94043,217.41782,39.334686,109.02887,4.909 1025,601.9208,-54.671455,53.652588,137.80151,4.899 1025,-22.013191,401.66678,79.52115,175.6633,4.794 1025,535.93634,310.1555,144.00958,343.05325,4.743 1025,10.704417,-24.280212,56.284077,126.16606,4.74 1026,424.926,211.07422,21.253357,50.785706,11.758 1026,-5.810569,-18.234158,18.347984,46.86146,7.782 1026,504.87552,169.80756,25.51059,84.160736,7.245 1026,-10.7683325,-32.648796,29.158234,76.22829,7.188 1026,626.9948,-18.198984,17.09143,47.60031,6.799 1026,493.38416,226.10403,29.353699,77.60516,6.448 1026,83.085434,127.35304,30.903992,80.309296,6.3 1026,459.14832,226.78621,19.269196,36.220505,6.233 1026,503.4657,214.76355,33.79828,86.99243,5.822 1026,-8.974772,464.07672,37.781956,93.24225,5.777 1026,455.15393,226.13348,27.096283,64.028625,5.758 1026,-6.2951703,489.0316,18.658852,42.834198,5.744 1026,3.3514519,188.76993,18.947447,40.95671,5.724 1026,488.4814,230.33694,22.864594,50.475403,5.666 1026,-18.074009,-60.97504,56.52804,141.01892,5.56 1026,626.417,488.58252,21.05011,45.062195,5.485 1026,622.2344,-33.212025,26.921448,75.8837,5.445 1026,-4.418892,187.64174,17.24696,40.731323,5.427 1026,433.37726,206.50023,18.992706,41.805466,5.425 1026,364.48184,206.3083,17.22168,39.9321,5.255 1026,602.8243,-56.83169,53.493103,137.4715,5.222 1026,454.66702,164.55396,27.271393,73.15968,5.206 1026,429.93686,212.93817,28.528961,66.877075,5.139 1026,442.17725,217.65431,18.974548,42.954514,5.135 1026,583.0744,412.0432,71.54773,176.19318,5.059 1026,613.0156,454.13107,39.619995,108.179596,5.038 1026,-72.41508,265.61664,200.55255,462.79047,5.031 1026,478.28662,229.15953,27.36383,69.65794,5.023 1026,-16.301193,121.95569,51.019684,141.8859,4.941 1026,517.2717,238.1405,28.316895,70.971375,4.916 1026,-3.6924834,202.45576,15.212212,37.371246,4.881 1026,491.27667,-183.09683,235.59943,427.57825,4.799 1026,-41.069336,365.22928,111.86019,276.4155,4.771 1026,-21.43466,402.79962,78.845695,174.98895,4.739 1026,615.47266,269.08328,22.743958,84.260895,4.711 1026,-5.0603905,86.396805,18.601398,47.987946,4.646 1026,176.53304,228.21823,21.479935,39.194794,4.642 1026,536.031,311.2168,143.50232,341.70087,4.641 1026,3.5185885,64.82286,31.138779,78.13872,4.594 1026,474.88434,186.18648,18.051758,47.363754,4.572 1026,133.555,130.01994,29.982162,72.02161,4.554 1026,185.01422,225.50032,20.649307,36.21959,4.549 1026,138.79602,228.11826,19.535202,40.097656,4.524 1026,512.0156,233.55086,22.33075,59.18126,4.5 1026,240.67259,219.18704,20.655258,41.210083,4.493 1026,2.4473758,-17.047733,17.634941,44.84304,4.481 1026,586.2831,-104.64447,74.96448,240.81134,4.419 1026,418.825,205.66101,20.149567,42.09407,4.418 1026,-9.439372,248.0473,38.70783,97.929565,4.414 1026,11.930153,-4.1539116,57.194633,115.905075,4.37 1026,202.45537,223.33745,20.836472,35.226395,4.358 1026,464.67865,226.77966,21.3367,44.7128,4.3 1026,113.44859,209.68805,26.34497,65.72833,4.272 1026,594.59717,-46.816498,44.11963,100.85983,4.242 1026,493.693,226.9867,237.68091,515.34174,4.231 1026,571.8635,-4.366063,19.05542,36.268723,4.209 1026,565.06146,252.49252,29.244202,78.683655,4.166 1026,-10.480342,34.451607,28.784363,70.95967,4.153 1026,619.6919,-5.887615,19.400208,43.779243,4.131 1026,512.4507,214.02933,20.51648,48.61432,4.131 1026,463.37256,178.64098,25.08612,74.04315,4.119 1026,8.347618,240.65277,32.200623,77.36139,4.113 1026,66.718506,203.44464,19.282768,39.211487,4.076 1026,460.2728,206.03854,17.242004,40.279617,4.055 1026,594.66534,96.407585,42.864624,170.57617,4.042 1026,90.89649,114.40515,31.316101,71.97797,4.03 1026,614.60645,122.10553,23.663208,100.25122,4.029 1027,454.49313,202.82884,26.623505,69.87605,21.193 1027,502.13913,220.33667,27.525665,75.78906,9.821 1027,611.529,-48.375725,39.8291,102.41444,7.009 1027,484.80554,217.89566,28.66864,73.37924,6.777 1027,626.87555,-17.722343,17.563782,45.977173,6.688 1027,517.43475,106.253265,28.68982,79.43939,6.359 1027,472.451,212.91086,23.103546,49.930634,6.231 1027,-6.1988516,488.70685,18.458717,43.18921,5.994 1027,-18.151001,-61.5458,56.357517,144.51924,5.965 1027,-11.664768,-33.40039,30.285082,78.12828,5.885 1027,512.15204,224.75092,22.828796,60.41275,5.684 1027,614.2283,267.66458,24.696045,83.48294,5.663 1027,497.38318,223.96204,23.438782,54.789673,5.634 1027,-8.953815,463.91403,37.590748,93.30136,5.581 1027,463.2503,208.39168,26.932251,76.902664,5.564 1027,462.82996,200.27843,22.964844,51.937668,5.559 1027,612.8816,454.87408,40.016724,107.02722,5.457 1027,618.8824,-17.780205,18.689514,43.89595,5.308 1027,520.6579,227.53035,23.26654,54.754623,5.293 1027,523.369,132.4091,30.582336,85.240204,5.291 1027,582.99475,413.01126,71.48102,175.13065,5.096 1027,-72.43018,266.56897,199.98492,461.95502,5.064 1027,533.8591,212.7498,37.20404,89.57036,5.03 1027,626.5134,487.78592,21.047913,45.85611,5.003 1027,536.4726,131.45236,19.902771,45.4886,4.968 1027,-6.5809064,-17.100101,18.91279,44.830788,4.926 1027,516.87366,202.44753,38.199036,87.7802,4.925 1027,618.33875,116.82656,21.640991,58.54998,4.859 1027,-4.4056797,174.32639,16.551706,39.09755,4.859 1027,-21.763117,402.2651,78.83057,174.91647,4.778 1027,502.12723,152.8263,28.399261,86.214386,4.747 1027,516.2403,169.5126,28.878052,81.925,4.708 1027,526.9102,129.08841,22.077454,51.996216,4.684 1027,507.51898,125.435356,33.0058,93.14744,4.628 1027,536.3877,311.63867,143.0658,341.93854,4.617 1027,555.3925,197.7876,18.739685,35.75609,4.549 1027,457.7058,94.35811,20.118011,37.430786,4.537 1027,186.59213,224.07869,18.785217,35.0894,4.503 1027,490.54114,-179.59984,236.11353,423.20728,4.476 1027,494.20764,140.83235,28.859009,83.7451,4.432 1027,178.33496,222.25764,20.42633,37.89543,4.406 1027,519.5472,37.1641,25.498657,75.22031,4.367 1027,506.76306,224.71411,19.766235,44.607544,4.348 1027,586.25616,-103.13381,75.46753,236.64328,4.339 1027,588.71027,-61.43395,52.859802,137.00671,4.328 1027,600.4245,227.46124,34.62384,105.39935,4.325 1027,1.8713158,-16.9639,17.845032,46.680637,4.32 1027,-16.360413,157.00943,49.284374,131.53366,4.31 1027,493.79956,228.35187,237.52368,515.0461,4.271 1027,-1.0516655,84.170906,26.467777,70.86498,4.267 1027,546.574,128.23264,17.234497,37.25682,4.261 1027,84.380905,184.45529,15.313156,27.242554,4.214 1027,564.1844,248.47179,29.167175,81.93422,4.186 1027,506.7479,85.45781,17.871063,42.086998,4.16 1027,291.07523,215.03868,18.870087,33.56375,4.143 1027,457.87848,163.07481,31.545898,87.74155,4.14 1027,-4.355972,157.78278,15.827309,38.332596,4.138 1027,-3.2890213,-15.917065,29.672392,77.60689,4.112 1027,-4.2447166,191.14418,16.236551,38.060806,4.106 1027,528.79065,105.91497,20.990051,50.0633,4.069 1027,460.0755,128.7628,29.260498,79.98598,4.063 1027,438.93143,198.14853,28.658844,74.65915,4.056 1028,582.8179,195.79427,27.364075,78.58836,40.9 1028,569.9608,184.54909,32.803772,109.21916,20.397 1028,581.40796,176.56311,37.374023,130.8949,13.407 1028,552.68256,187.02998,32.546875,103.82213,12.146 1028,598.36334,181.0238,33.6037,131.65778,10.711 1028,592.2677,199.80823,21.81543,56.356476,7.642 1028,430.77335,148.49588,25.194733,72.65799,7.106 1028,517.1555,220.36511,28.265991,65.256165,6.71 1028,627.1296,-17.981182,16.94458,49.067657,6.678 1028,0.935483,174.30406,18.115269,41.447998,6.294 1028,-5.321378,-17.73439,17.826292,46.25995,6.282 1028,201.84175,208.94814,28.938461,63.455,6.105 1028,549.1079,132.58359,28.277588,94.06882,6.099 1028,611.7535,196.08395,33.426086,130.52084,6.023 1028,-8.71821,465.2002,37.521103,92.28961,6.014 1028,602.49,-55.976967,53.822815,141.38983,5.955 1028,615.67865,263.28284,22.827698,78.56012,5.893 1028,619.327,73.16585,18.007812,45.090714,5.786 1028,179.21198,202.5606,20.362167,40.341034,5.698 1028,606.5402,184.63446,26.369812,65.538086,5.685 1028,-10.82201,-33.95691,29.217272,79.37296,5.654 1028,416.2,150.44775,25.500244,70.375275,5.614 1028,596.82837,191.92578,25.919983,75.21411,5.61 1028,-17.484753,-62.938736,55.91203,145.23705,5.593 1028,612.8983,455.44882,39.631836,106.43503,5.534 1028,562.5114,193.71448,19.77948,60.767853,5.384 1028,115.12172,206.2022,18.835434,35.402588,5.321 1028,-5.916461,489.74863,18.05189,41.64273,5.25 1028,2.9095542,200.09363,18.484098,39.528778,5.227 1028,-72.46527,266.11542,199.66638,462.26813,5.13 1028,622.6163,-33.17108,26.113586,77.52898,5.109 1028,583.17285,412.85678,71.29883,175.1597,5.102 1028,-3.380071,183.94989,16.468798,42.666626,5.077 1028,544.309,179.96326,52.11035,147.64282,5.044 1028,489.396,-181.50687,236.53711,427.08176,4.922 1028,626.55023,488.11316,20.674011,45.725647,4.873 1028,-17.440002,436.97986,55.082756,140.05676,4.854 1028,-40.524284,367.89313,110.76023,274.74298,4.73 1028,545.40265,185.91647,26.397156,73.21112,4.72 1028,536.12933,310.5348,143.28961,343.2213,4.675 1028,487.2533,207.32898,27.01648,73.53824,4.595 1028,440.94342,157.7493,22.111084,61.117188,4.541 1028,290.64606,-16.061176,17.764404,38.469555,4.528 1028,586.0444,-105.05046,75.853455,240.89386,4.446 1028,-15.979679,156.8995,48.687225,128.82101,4.444 1028,543.02466,220.43306,28.73291,72.89226,4.438 1028,109.26012,214.5236,32.581604,61.29033,4.398 1028,579.2658,192.65742,21.107056,61.354294,4.393 1028,273.28387,203.16435,21.041443,32.788284,4.384 1029,26.650578,247.77179,22.231087,42.336975,8.085 1029,157.97156,246.89867,32.670135,69.08052,7.355 1029,491.5229,175.66272,28.057129,80.09947,6.463 1029,-6.0321145,489.39407,18.369265,41.892975,6.265 1029,-10.667603,-33.494946,29.558235,80.06411,6.257 1029,627.2135,-18.738783,17.241577,47.892445,6.066 1029,410.33038,170.4225,28.597351,84.149216,6.055 1029,-3.4511862,230.41887,14.523439,35.135788,5.895 1029,626.51166,488.10315,20.55304,45.4364,5.881 1029,19.289244,242.41116,38.581833,83.729034,5.855 1029,-18.024517,-63.16936,56.38418,145.4836,5.759 1029,-5.6112957,-17.50572,18.425127,46.843296,5.71 1029,-11.865894,476.45944,29.867344,64.15634,5.66 1029,-4.595357,302.59985,16.034021,34.589996,5.586 1029,602.3967,-55.487778,54.14984,140.73827,5.481 1029,233.0942,241.66417,22.27089,42.800674,5.462 1029,622.8544,-33.913082,26.93872,76.17318,5.437 1029,35.425865,242.43463,37.86965,80.30609,5.21 1029,549.32684,252.29604,28.839294,65.5074,5.189 1029,-22.418938,400.539,79.63237,177.06238,5.138 1029,132.70662,237.65356,39.85469,95.31683,5.133 1029,28.698835,229.00662,28.980219,55.514618,5.127 1029,-72.76178,265.76385,200.80904,463.73236,5.118 1029,612.7826,455.33392,39.8667,107.30798,5.101 1029,11.326337,243.22784,16.469688,30.047485,5.093 1029,582.8484,412.87274,71.64136,175.32745,5.032 1029,555.4136,-13.713732,16.476318,36.973927,4.996 1029,395.825,-14.492701,15.506348,33.442337,4.96 1029,571.18787,1.2219009,18.012451,34.621437,4.921 1029,2.7643478,256.0434,19.340002,36.325348,4.91 1029,396.4728,-0.8971424,16.412384,28.630863,4.864 1029,2.6984425,324.79892,19.72209,37.527893,4.812 1029,300.4377,226.53543,29.536346,55.964386,4.762 1029,563.1718,-12.251932,16.361145,36.050793,4.762 1029,536.4304,310.61514,143.13843,342.1212,4.739 1029,136.25868,237.4888,23.683884,38.712036,4.68 1029,516.1984,3.006546,16.506165,32.82722,4.654 1029,600.2959,217.68097,33.441345,119.33917,4.649 1029,4.8589554,245.89949,29.828949,64.104355,4.602 1029,58.59104,233.78842,19.55935,37.407898,4.592 1029,330.08044,227.651,18.963928,30.838196,4.551 1029,508.41138,1.6110172,17.00653,33.126938,4.535 1029,490.1526,-180.63332,235.80597,426.37543,4.53 1029,612.7877,267.70715,26.0141,83.132996,4.522 1029,523.90656,2.0983372,16.960693,32.522026,4.512 1029,-11.890584,246.1561,28.501892,62.53958,4.487 1029,5.253627,234.5089,14.835828,31.57228,4.485 1029,99.38781,234.9079,33.416542,63.365784,4.476 1029,-5.5580206,249.13518,17.555664,37.759384,4.463 1029,570.9824,-13.303377,16.53186,36.848324,4.458 1029,585.3602,-104.2095,76.69574,241.28156,4.448 1029,-4.7722926,330.74005,17.148624,36.696777,4.447 1029,503.15277,164.43115,27.054016,74.615555,4.425 1029,493.63666,228.80524,237.46918,513.9386,4.397 1029,-15.8578415,156.07419,51.130875,139.7427,4.346 1029,3.8697238,307.49622,17.244463,30.213867,4.327 1029,-7.5628805,235.8789,36.620274,97.69452,4.32 1029,50.81661,247.03821,32.392986,67.583374,4.31 1029,-4.596364,316.6153,16.666958,36.443146,4.302 1029,426.25464,234.59471,19.970001,37.886185,4.26 1029,380.56503,-2.412962,16.717133,32.004826,4.217 1029,619.2782,-6.035671,19.42395,44.62491,4.153 1029,326.23846,228.75624,30.08078,55.030777,4.136 1029,563.01874,2.0694141,18.181519,35.56659,4.12 1029,299.27737,-16.598688,16.563385,38.578865,4.086 1029,111.77438,242.06567,24.305542,47.038757,4.078 1029,-4.7299848,346.49643,16.468847,38.04315,4.065 1029,471.09653,172.56216,26.975983,83.3338,4.065 1029,387.60925,-14.452909,15.933807,33.783478,4.041 1029,-3.4808888,208.11545,15.213295,36.293472,4.032 1029,30.666119,257.4396,24.147808,42.29074,4.02 1029,404.4411,-0.5221796,16.612427,29.337078,4.019 1029,4.7093368,255.66725,37.9993,104.12865,4.018 1029,66.039154,234.87854,19.188507,34.388916,4.018 1029,579.10785,0.35587502,17.990479,35.52221,4.015 1029,500.45624,-1.4234676,17.483398,36.559372,4.007 1029,491.70764,-2.1615467,18.835815,38.42063,4.003 1029,592.21173,236.78922,22.198425,56.010803,3.994 1029,556.3059,-9.877747,31.127197,64.34192,3.975 1029,2.8125143,-16.336271,17.345787,46.644485,3.971 1029,534.9344,249.74364,28.43158,70.716385,3.962 1029,403.95306,-13.792955,15.553192,33.011597,3.956 1029,49.145477,238.8813,20.979805,40.487045,3.929 1029,564.8706,247.80765,30.813477,75.347626,3.922 1029,8.635845,253.2229,21.62024,36.25763,3.909 1029,550.83325,-31.238472,27.733643,73.173515,3.9 1029,547.6556,-13.100918,16.316711,36.0213,3.876 1030,500.54974,142.78822,28.821167,95.89761,8.218 1030,622.5026,-33.001392,26.78241,76.20359,7.691 1030,230.43555,219.79305,26.4599,65.2104,7.619 1030,-5.272564,-18.671623,18.175474,46.479404,6.843 1030,-10.355263,-32.826256,29.453203,77.37972,6.551 1030,205.83589,228.19,29.23674,63.560486,6.368 1030,616.64966,164.1571,23.007385,99.50067,6.313 1030,501.8863,203.89601,28.706177,79.90834,6.259 1030,-8.504503,464.54916,37.32431,93.17209,6.218 1030,626.9425,-17.81843,17.36853,47.47975,6.005 1030,-5.8148713,490.033,17.932972,40.75882,5.933 1030,477.5923,223.7836,28.193817,58.832245,5.748 1030,-16.079174,120.81991,51.31229,142.12393,5.645 1030,4.2537975,210.80609,29.357565,55.42227,5.602 1030,2.7137148,118.69131,31.94403,72.60279,5.535 1030,-17.933607,-62.41293,56.202576,145.46501,5.523 1030,140.69632,214.08939,30.604584,62.440857,5.48 1030,-72.91707,263.33264,201.18272,465.97278,5.374 1030,618.5589,-18.236843,18.395264,46.921997,5.367 1030,156.50305,214.60556,28.195099,59.28003,5.305 1030,621.9212,477.89465,28.834045,66.51538,5.303 1030,191.52417,225.81796,28.510406,60.309296,5.292 1030,89.56395,211.06433,20.97641,34.189224,5.164 1030,582.9342,412.99594,71.64819,175.25894,5.013 1030,602.1648,-57.716236,54.120728,141.68033,5.006 1030,153.79518,217.5249,21.942902,41.15625,4.913 1030,137.81436,216.239,21.867096,41.139725,4.888 1030,-4.416872,189.50372,16.120152,37.610947,4.876 1030,-21.492727,403.0346,78.92301,174.73883,4.803 1030,218.30417,226.62694,32.62999,72.730545,4.761 1030,166.35728,217.32126,34.108093,70.51935,4.753 1030,-40.861115,365.547,111.32248,276.84473,4.704 1030,536.36487,310.5402,143.19873,342.20285,4.703 1030,2.449336,-16.867315,17.695374,45.874245,4.607 1030,516.4967,141.22818,27.099304,92.06433,4.605 1030,489.86823,-178.7897,236.40955,424.40982,4.581 1030,-4.118696,174.50447,16.189255,36.335205,4.576 1030,27.961277,119.64436,33.592754,70.5294,4.558 1030,-15.610983,189.13768,50.390633,125.83418,4.544 1030,3.2456458,185.61368,16.507708,33.260452,4.524 1030,23.506283,226.94487,22.725693,36.731674,4.45 1030,493.52533,227.59589,237.69165,515.29114,4.438 1030,147.953,223.53413,37.27147,85.88884,4.308 1030,586.27515,-106.134705,75.498474,243.66357,4.3 1030,-5.4842987,216.28046,19.24397,43.441162,4.245 1030,178.07516,222.12735,22.449875,42.296844,4.223 1030,498.03098,145.91367,19.547699,68.86771,4.19 1030,614.3879,-22.362896,26.559753,74.41279,4.186 1030,133.46016,223.95345,37.19545,88.91423,4.177 1030,-5.4006376,101.600945,18.523838,48.517418,4.165 1030,169.4697,221.77762,21.115143,41.478546,4.148 1030,618.31714,269.04498,19.40393,61.59964,4.049 1030,-4.9259205,-1.3544121,19.220905,51.116554,4.028 1030,1.705296,224.3428,21.266638,44.74637,4.014 1030,-5.0136895,203.45148,17.439518,39.280884,3.993 1030,1.1639214,-1.9258251,21.489578,56.57087,3.988 1030,489.37097,218.2533,20.611938,43.377655,3.98 1030,-15.70565,63.442284,49.816963,134.66632,3.967 1030,234.30933,215.87671,20.132935,41.39215,3.933 1031,436.7712,200.47728,16.784698,39.89209,7.943 1031,2.6730437,195.18948,17.108458,40.07292,7.424 1031,68.52597,190.28079,29.095482,60.304718,7.363 1031,627.6203,-17.665771,16.581604,47.53791,7.105 1031,-10.271906,-33.052082,29.696308,82.56374,6.999 1031,623.63245,-33.19406,26.062927,76.02231,6.175 1031,-8.875946,464.9895,37.689304,92.3811,6.132 1031,437.91125,198.93513,36.414246,86.57335,6.088 1031,-0.54656506,0.14261627,26.227509,104.39769,6.079 1031,452.94244,198.30298,36.68036,88.05994,5.911 1031,41.45732,199.5646,20.894226,41.483154,5.864 1031,-11.079763,98.20294,29.61096,66.60687,5.843 1031,-5.907651,489.22586,18.094837,41.968903,5.827 1031,450.67032,203.16502,19.8544,44.347824,5.735 1031,-6.3878565,-19.038898,19.58979,48.4938,5.653 1031,267.91898,223.66263,28.83609,64.32541,5.528 1031,-0.777961,102.51848,28.182613,69.52016,5.501 1031,612.8865,455.96118,39.42627,106.51709,5.222 1031,-72.90574,264.9314,200.83272,463.90723,5.215 1031,626.4509,488.4893,20.82544,45.047638,5.21 1031,65.12433,197.85649,22.099113,45.646225,5.187 1031,532.8625,220.51242,29.866333,70.767975,5.174 1031,157.18803,208.93156,15.49614,29.869736,5.16 1031,440.48895,156.65593,23.634277,82.22797,5.122 1031,237.83554,201.79771,27.021301,59.2892,5.119 1031,601.8908,-56.675316,54.29016,143.26292,5.087 1031,442.5975,202.4309,19.631195,46.97441,5.075 1031,235.75264,204.80116,18.59259,40.613052,5.026 1031,-17.581331,-62.52134,56.25083,148.56862,5.012 1031,-3.7229764,174.92503,16.258604,38.315872,4.983 1031,582.98364,411.90393,71.72394,176.76831,4.979 1031,80.9325,207.3205,21.97747,39.215836,4.979 1031,10.8966465,104.6014,32.81948,70.00175,4.918 1031,-3.6699371,197.77892,16.292297,41.431763,4.864 1031,-21.365929,403.60947,78.83808,174.21439,4.846 1031,409.29523,216.77959,21.621826,42.069107,4.833 1031,89.39782,208.96146,22.361938,35.609833,4.794 1031,536.5231,310.71747,143.331,341.7962,4.793 1031,430.51453,204.21413,28.050537,62.058456,4.785 1031,-16.300886,120.999565,51.217995,140.30621,4.725 1031,201.44499,208.62544,20.531036,37.515717,4.699 1031,469.43832,200.00275,37.67987,88.84158,4.628 1031,164.80379,209.49821,15.176224,29.722153,4.607 1031,9.595815,198.7791,17.900383,38.045883,4.606 1031,0.67152023,-19.825281,34.231056,88.1949,4.56 1031,113.95622,213.50525,20.167603,32.02562,4.551 1031,585.50037,-105.31298,76.6499,244.22534,4.492 1031,553.5637,204.43457,20.954956,38.208267,4.491 1031,493.42084,227.49084,237.68353,514.52075,4.448 1031,509.62268,211.24594,29.776367,70.11636,4.444 1031,172.71179,208.87782,15.403778,29.689484,4.42 1031,19.922039,117.580666,30.662518,74.12347,4.406 1031,489.7667,-178.24388,235.7598,423.23688,4.317 1031,32.938023,206.78003,22.950619,41.601868,4.303 1031,53.276173,193.40436,29.687496,59.382446,4.297 1031,484.86908,201.72104,38.164795,88.74881,4.281 1031,49.432037,198.02524,20.416985,41.990936,4.269 1031,6.6155777,222.33699,30.458382,63.47914,4.255 1031,27.737598,212.5611,31.469166,66.480255,4.226 1031,-0.63084483,53.66684,27.636902,89.05374,4.143 1031,400.84692,230.28242,25.91748,43.664932,4.14 1031,1.1080617,-20.534538,19.429497,52.520607,4.134 1031,249.81573,209.5695,19.843536,39.893158,4.128 1031,-38.506573,-128.04,119.25395,286.79095,4.054 1031,149.10738,211.41437,15.506134,27.812927,4.05 1031,516.27026,215.52957,39.82715,82.51422,4.034 1031,26.973156,107.61493,33.568565,66.862976,4.027 1031,-7.6393604,192.04236,36.665676,90.19592,3.938 1031,411.8178,-13.575627,16.033142,34.961224,3.899 1031,430.02582,204.59189,15.664032,34.31601,3.894 1031,403.96295,-13.253242,15.983368,33.980404,3.892 1031,365.14694,201.21407,28.811127,58.280716,3.892 1031,395.31308,-14.383798,16.217743,35.361206,3.876 1032,10.088598,180.29414,21.146841,51.259125,8.551 1032,466.40045,212.36565,20.728455,52.28563,8.316 1032,446.08612,208.1079,12.078888,32.578094,7.804 1032,461.10822,212.49174,16.80545,38.48767,7.361 1032,-11.34095,-33.727036,30.317196,80.31294,6.908 1032,613.5481,453.44568,38.45752,109.41052,6.818 1032,-5.677265,488.11935,18.110317,43.300385,6.465 1032,-5.011117,177.03023,17.126377,42.504715,6.303 1032,602.03107,-56.433907,54.160034,142.90393,6.175 1032,-11.332701,475.32538,28.75114,66.32471,6.126 1032,626.8146,-19.194313,17.661133,49.533257,6.001 1032,438.85315,210.19537,13.383636,33.64308,5.95 1032,627.26,488.66388,20.135681,43.439514,5.894 1032,583.047,78.322426,26.018188,103.46261,5.85 1032,-6.338632,-19.5463,19.071133,49.25902,5.783 1032,622.30646,-34.319675,26.847229,78.87577,5.669 1032,452.9164,212.5244,14.088226,33.003235,5.384 1032,-17.430826,-62.139107,56.129425,147.90948,5.262 1032,-72.66101,265.6092,200.78693,462.8604,5.256 1032,472.6266,204.79616,21.34848,53.53911,5.15 1032,471.79642,146.73308,26.607483,93.09564,5.074 1032,0.5647671,26.4436,24.13872,103.1794,5.01 1032,583.5002,411.9874,71.03461,175.93008,4.997 1032,-40.34484,363.69305,111.03081,278.735,4.985 1032,74.64598,218.07777,19.336334,34.00673,4.919 1032,435.38266,220.67381,17.39795,34.003616,4.892 1032,-21.627354,400.8648,78.72252,176.79205,4.825 1032,-15.844579,156.45549,48.980907,132.9178,4.805 1032,443.12027,218.79884,17.292175,34.28018,4.737 1032,428.73337,215.2181,14.717926,32.351974,4.619 1032,529.9134,244.91234,20.155212,37.96974,4.607 1032,535.4683,309.89047,144.13733,342.1243,4.572 1032,585.46924,-105.86956,76.183716,245.95773,4.515 1032,-8.318269,8.372055,27.567326,83.83916,4.508 1032,522.74097,244.95065,19.154541,38.25885,4.488 1032,493.7637,228.2269,237.69455,515.9901,4.446 1032,0.09126067,182.80203,27.159134,64.73743,4.438 1032,453.71252,-33.713955,28.977875,69.69974,4.41 1032,113.87724,231.87344,21.039322,28.53897,4.388 1032,-1.1546588,89.42517,26.842953,81.31711,4.372 1032,257.6978,228.01424,20.805237,38.80336,4.354 1032,-38.543976,-127.53305,118.850235,287.01822,4.326 1032,168.42088,215.2648,32.498474,52.409454,4.321 1032,593.45825,207.38597,30.290405,74.835434,4.278 1032,598.1495,459.73712,37.63629,102.23474,4.267 1032,614.13086,32.78893,25.366272,94.97339,4.214 1032,-1.9742823,-20.578758,28.629047,86.27663,4.198 1032,1.9650179,-20.927528,18.602192,51.06642,4.187 1032,489.73172,-177.43927,236.3436,421.19955,4.148 1032,186.67458,200.061,30.488937,43.167603,4.113 1032,-4.204621,83.604904,17.649284,51.542984,4.106 1032,-8.2705765,56.187847,26.15055,86.51805,4.1 1032,464.1421,178.95245,25.543,72.30676,4.092 1032,619.18726,491.3145,19.604187,39.639282,4.051 1032,-8.717729,107.51664,38.65253,98.36266,4.024 1032,564.4202,-16.876762,32.39911,78.05351,3.987 1032,16.202576,177.66928,20.995754,40.61847,3.972 1032,212.3135,206.70459,17.313843,28.740768,3.952 1032,-5.940543,195.13855,18.544546,44.399338,3.941 1032,444.4841,-61.604652,55.09659,131.09761,3.937 1032,91.15015,230.60654,17.79541,25.922424,3.93 1032,43.27308,193.76576,17.90025,41.026093,3.919 1032,537.5902,243.52301,20.429138,37.321167,3.831 1032,225.6407,213.87027,19.891922,36.285553,3.815 1032,11.057995,-9.007992,57.128666,130.08781,3.81 1032,-10.2963085,168.9508,27.22552,64.11047,3.795 1032,420.2145,219.0747,15.301483,31.754974,3.779 1032,457.50455,219.97221,26.440643,60.016373,3.775 1032,122.082756,225.80792,18.738304,28.998306,3.761 1032,580.7075,279.17975,29.482056,65.88315,3.759 1032,485.09247,146.90862,24.09134,91.07103,3.756 1032,578.2563,204.90579,46.236572,118.56497,3.755 1033,491.59848,207.7057,17.110138,43.72496,14.492 1033,536.24854,183.72264,35.276794,107.55937,11.787 1033,514.2596,219.79253,20.46045,50.46321,10.219 1033,520.687,216.55693,22.246887,57.85527,9.621 1033,527.51056,208.582,27.731384,77.4827,7.891 1033,37.60607,205.5882,35.52944,84.30621,7.334 1033,623.1376,-33.002373,26.512817,73.7048,7.218 1033,20.536919,203.01012,36.28456,90.04256,7.16 1033,506.2386,216.57588,19.868713,42.6342,7.141 1033,497.8442,213.16986,18.684784,43.69394,6.971 1033,151.81763,231.56699,31.774902,57.924255,6.792 1033,53.777763,207.08786,35.903168,81.647125,6.629 1033,-8.793605,464.57562,37.57578,92.8443,6.269 1033,627.46857,-15.01157,16.360535,42.521973,6.209 1033,602.5678,-55.799294,53.45294,135.26593,6.098 1033,-5.972599,489.46097,18.31472,42.177765,6.081 1033,-11.146057,-32.450108,29.905624,73.10286,5.918 1033,63.724293,215.0732,23.918911,40.73912,5.899 1033,477.7936,217.23932,15.004425,34.930634,5.773 1033,-2.9870358,175.71303,15.312563,36.75322,5.73 1033,-5.833556,-18.7374,18.304165,44.315216,5.598 1033,68.982475,209.87561,36.09919,78.67139,5.44 1033,4.2732325,208.9227,30.674385,78.00784,5.386 1033,485.4156,209.25201,16.047882,40.461395,5.353 1033,3.8064206,181.10799,15.833432,33.916626,5.329 1033,-17.233414,-64.65821,55.651207,146.86919,5.266 1033,612.85175,455.27966,39.842285,107.40857,5.219 1033,228.18787,207.5684,16.79985,30.955872,5.123 1033,583.0268,412.86417,71.50513,175.1224,5.109 1033,242.9885,204.81111,16.570892,31.123764,5.084 1033,119.50777,215.81364,23.211136,34.816055,5.079 1033,-72.91417,264.45587,201.02771,464.99738,5.068 1033,621.9661,477.67215,28.827393,66.34158,5.044 1033,546.97485,208.99493,32.35736,87.32245,5.034 1033,-6.846813,226.42897,36.46489,109.491165,4.984 1033,-16.547287,126.01447,51.748497,138.75156,4.884 1033,377.78308,217.54968,21.52826,37.686142,4.874 1033,532.97314,143.30246,31.469543,113.29678,4.857 1033,-40.741592,365.0828,111.60232,276.64694,4.804 1033,-21.74896,402.1812,79.288635,175.22638,4.779 1033,-3.2132266,158.88602,14.661872,37.965454,4.711 1033,536.12427,310.56458,143.47778,343.0581,4.706 1033,40.057617,220.28125,21.76165,43.753815,4.702 1033,85.07257,208.59216,30.326508,64.8345,4.692 1033,166.87674,240.28806,24.366089,40.121277,4.521 1033,101.70859,211.59818,30.477707,65.861145,4.517 1033,445.10443,208.95708,15.037842,32.694473,4.481 1033,493.50055,228.6712,237.93774,514.64886,4.471 1033,237.41417,205.06451,15.85318,28.242264,4.44 1033,502.26788,202.40561,36.428894,83.85309,4.416 1033,619.7547,-12.447706,16.327087,37.37612,4.364 1033,342.96878,-33.728374,28.80777,70.65032,4.344 1033,5.4063797,202.85992,42.621323,133.26324,4.333 1033,235.64545,213.48502,30.643799,51.1622,4.332 1033,115.92552,216.91815,29.771484,62.873047,4.308 1033,48.710064,214.61841,22.833813,43.609985,4.301 1033,581.6407,241.37428,29.175354,74.42107,4.199 1033,256.90555,227.82787,22.532074,33.375565,4.149 1033,585.6505,-104.97449,76.24951,241.98242,4.122 1033,33.0567,228.5259,22.676823,43.60753,4.102 1034,505.50046,207.51308,20.007172,49.33815,40.865 1034,483.68213,211.804,17.2417,50.184433,10.412 1034,613.1488,221.78522,25.109558,84.54559,9.917 1034,598.3366,223.98721,28.323608,77.24524,8.621 1034,210.6298,231.54022,30.43126,66.12286,7.559 1034,627.6378,-17.354294,17.102112,45.388706,7.482 1034,623.48645,-32.66097,26.31427,75.00667,7.398 1034,443.98376,219.54846,16.018524,34.868835,7.048 1034,614.48663,188.89908,25.279541,89.473114,7.001 1034,-6.172701,-19.3349,18.498137,45.793247,6.704 1034,509.99512,209.62933,23.67041,58.782837,6.575 1034,161.5802,215.78496,22.33139,42.687363,6.519 1034,-11.10671,-33.643124,29.524641,73.92397,6.413 1034,191.64355,216.55315,28.207031,59.787247,6.302 1034,-8.934899,464.33755,37.721676,93.382965,6.024 1034,3.7981856,200.65854,17.397541,35.618576,5.827 1034,-4.3823333,190.59746,16.88509,37.74156,5.758 1034,153.03537,216.8229,21.295135,41.88925,5.711 1034,596.25146,164.85802,39.905396,151.91512,5.684 1034,596.7588,131.4426,30.255371,95.08194,5.629 1034,207.61772,224.60832,23.679733,48.028732,5.522 1034,-16.610518,-64.81441,55.347923,145.26376,5.491 1034,-6.3909063,489.69254,18.97409,41.654633,5.448 1034,477.06985,214.54974,16.433563,44.678253,5.444 1034,612.95685,454.16302,39.74066,108.07941,5.435 1034,-72.51878,264.6292,200.51949,464.68115,5.297 1034,8.343948,238.27065,19.633694,32.319138,5.264 1034,583.0341,412.67545,71.50458,175.06168,5.123 1034,520.9407,212.28836,19.5094,41.48639,5.104 1034,402.85742,230.11563,20.398315,36.639435,5.079 1034,428.45618,224.0364,15.868713,29.280914,5.072 1034,626.6961,487.79224,20.524658,45.746277,5.044 1034,469.17444,214.37346,16.31195,41.87062,5.043 1034,180.4559,214.82074,29.265182,58.355286,4.957 1034,-21.67962,402.28427,79.19668,175.23746,4.928 1034,438.21213,222.11797,15.867432,31.867416,4.905 1034,-5.2100277,172.1238,18.231615,41.274887,4.839 1034,536.1517,309.96655,144.15118,341.20966,4.823 1034,602.7095,-56.837597,53.738403,135.06436,4.677 1034,390.09387,224.83864,27.53064,52.89943,4.64 1034,620.0908,-4.6634264,17.982971,39.51483,4.544 1034,493.90213,229.18692,237.38571,513.27576,4.517 1034,-16.548738,193.80487,50.977936,124.36313,4.507 1034,378.21265,223.93277,20.455566,41.776794,4.457 1034,622.155,242.35886,24.11322,77.76663,4.377 1034,584.4802,228.08704,25.99939,70.06824,4.351 1034,500.97018,205.17726,17.137604,36.855286,4.326 1034,-4.259785,209.9273,16.578453,41.80719,4.314 1034,144.70157,217.21696,21.769089,41.94307,4.312 1034,467.70172,200.06918,16.067993,41.93805,4.306 1034,93.639305,228.09692,30.062172,47.166687,4.297 1034,-9.50473,182.87051,27.49431,64.17299,4.249 1034,2.283665,185.05315,19.995207,37.633286,4.239 1034,2.2171717,-20.569733,18.087109,47.534782,4.203 1034,-15.667398,121.09125,51.08851,143.37012,4.162 1034,132.80046,217.36197,30.251724,56.04483,4.15 1034,168.42542,221.62103,23.380081,42.99167,4.148 1035,551.27484,203.31577,20.964478,49.15274,35.855 1035,506.59653,205.84871,16.594757,36.829453,16.213 1035,477.9285,224.41177,28.59967,67.12097,10.188 1035,507.35846,215.61636,18.020813,49.399933,9.955 1035,551.4765,203.26596,30.916077,90.66095,9.723 1035,514.7096,217.18744,18.307922,47.353516,9.626 1035,540.2549,211.31969,17.593689,47.22621,9.524 1035,524.702,212.49846,16.013489,41.468796,9.223 1035,498.34262,218.0017,19.455475,51.426163,9.189 1035,546.28064,211.28946,20.173828,52.56491,8.886 1035,570.0219,212.84526,19.842834,44.383163,8.499 1035,539.4004,200.67354,30.332947,94.40401,7.783 1035,501.273,214.40744,28.562683,70.1662,7.733 1035,554.57477,220.51527,19.858948,51.84178,7.518 1035,532.849,214.28784,15.942261,41.82669,7.439 1035,559.5548,204.58846,20.622803,41.035202,7.407 1035,481.60223,215.4241,17.746552,36.637787,7.158 1035,-5.4280767,487.78992,17.69087,43.875916,6.978 1035,-10.824337,474.69382,28.378553,66.333466,6.677 1035,627.0256,488.95975,20.202576,44.06369,6.569 1035,490.03497,217.86856,18.353088,41.309113,6.513 1035,-10.915791,-33.469315,29.364717,77.90653,6.244 1035,-5.6794224,-17.481045,17.963062,46.43389,6.222 1035,609.2146,235.41315,22.253235,54.964783,6.209 1035,627.4519,-17.2717,16.947021,45.60092,5.98 1035,520.46045,208.9645,31.771545,97.67244,5.807 1035,545.8573,171.37106,30.450378,68.00629,5.756 1035,267.41626,220.56245,16.685455,37.150192,5.684 1035,-16.505552,-64.07165,54.95736,146.00195,5.668 1035,-72.767624,265.01556,201.08125,463.9074,5.348 1035,461.31912,231.15572,30.315735,63.28401,5.337 1035,547.1775,235.426,19.352295,42.262817,5.334 1035,495.56018,165.07106,29.83966,77.73558,5.299 1035,122.187805,216.91173,21.038834,33.635345,5.253 1035,623.5206,-34.63095,25.889221,74.68586,5.236 1035,218.55045,209.97466,18.389084,38.969467,5.186 1035,613.0885,455.78827,38.760498,105.40759,5.18 1035,475.5493,217.48802,21.167664,51.648026,5.178 1035,490.89093,222.94696,29.229431,71.09418,5.177 1035,561.9059,235.49432,20.192139,44.036377,5.149 1035,578.1452,207.98244,18.421814,37.111176,5.109 1035,583.1172,411.84152,71.54968,176.61209,5.045 1035,516.20557,210.23566,14.547668,36.631622,5.035 1035,-21.367867,403.49243,78.84318,174.75366,5.015 1035,240.16098,219.64325,21.314606,39.738007,4.961 1035,524.03284,196.11765,14.925659,43.68547,4.923 1035,257.8155,219.6213,19.306366,40.822052,4.846 1035,-17.17243,192.5271,52.02597,124.359436,4.845 1035,536.0864,310.88428,143.68152,340.89087,4.828 1035,2.1321356,235.94742,20.052565,39.2034,4.827 1035,476.9986,197.76361,27.190521,59.680176,4.827 1035,547.2094,193.57935,21.246948,42.557495,4.826 1035,568.90436,199.10468,20.261536,38.844635,4.802 1035,603.7438,-54.862972,52.860718,136.35786,4.653 1035,26.253206,246.77731,32.354576,60.584106,4.652 1035,291.15588,220.22997,17.718567,32.86702,4.642 1035,411.6357,222.4622,17.487823,34.99742,4.545 1035,522.5563,224.38518,19.760132,47.536453,4.536 1035,585.6028,206.90413,32.144043,87.54155,4.506 1035,538.9888,235.16776,19.263855,41.816345,4.485 1035,246.55402,220.60889,22.003357,48.28186,4.483 1035,493.99783,227.67456,237.65652,513.77625,4.45 1036,586.737,216.37741,17.727173,39.366486,29.993 1036,525.5764,217.20451,15.919189,42.756424,19.576 1036,614.5931,167.1586,23.716736,88.960815,10.146 1036,520.5561,213.79083,22.884216,66.20703,7.663 1036,418.49716,214.90147,16.712158,32.88022,7.196 1036,435.09006,227.44122,19.5083,37.07666,7.132 1036,529.13666,225.75555,18.013794,45.090057,6.828 1036,564.6423,222.96684,16.094421,36.971786,6.817 1036,117.99837,296.05188,32.335526,69.72516,6.796 1036,67.66054,198.57944,31.390305,60.853058,6.689 1036,477.9326,213.17743,27.429932,67.2337,6.654 1036,-5.891637,488.79312,17.923447,42.20755,6.591 1036,540.5108,227.4988,14.026489,31.513992,6.544 1036,548.3356,227.87442,14.907227,35.329712,6.504 1036,53.105087,196.92122,31.475601,57.618454,6.45 1036,555.8434,228.32362,17.221924,41.5233,6.385 1036,627.0147,488.30978,20.131836,44.97513,6.26 1036,-11.572548,474.76727,29.060877,65.9104,6.238 1036,-16.577944,-64.450035,54.862267,144.09834,6.09 1036,627.1427,-16.942974,17.375671,44.769337,6.079 1036,611.7966,-48.177895,40.494995,102.87842,6.039 1036,571.9439,221.17973,16.095276,36.454483,5.882 1036,412.41425,219.3977,16.802856,35.436737,5.731 1036,-2.8509138,174.83499,14.828171,39.058105,5.673 1036,582.14496,210.45627,25.77246,65.434784,5.611 1036,36.09715,196.69748,31.846928,56.434143,5.522 1036,5.0624266,190.14719,28.399902,60.878128,5.521 1036,516.67017,217.0783,18.498047,51.485306,5.511 1036,9.5802965,267.98038,21.570824,37.596313,5.463 1036,-5.131627,-17.927294,17.394447,44.55971,5.45 1036,32.77492,201.8947,23.09111,41.32663,5.432 1036,4.3268127,185.69257,16.144676,36.547256,5.432 1036,613.0383,455.97928,38.962463,106.03732,5.37 1036,2.7724874,266.01938,19.422207,38.85132,5.331 1036,507.48856,211.43661,17.507172,48.02005,5.303 1036,-10.38555,-33.2015,28.916729,74.11819,5.236 1036,-39.315754,367.86163,109.23918,272.15668,5.163 1036,404.6361,215.58394,16.196869,32.47603,5.066 1036,-72.853,265.97208,200.65968,463.25266,5.053 1036,-5.898094,271.09393,18.344387,42.365845,5.046 1036,396.54202,214.48567,15.010559,33.556686,5.015 1036,-5.30194,50.649857,18.411201,50.9767,5.012 1036,583.01984,412.66107,71.88263,176.30664,4.996 1036,49.345413,338.28168,20.586601,26.241638,4.948 1036,48.40111,206.67706,23.191456,40.866226,4.93 1036,536.0587,310.3286,143.94177,340.38464,4.839 1036,42.17745,339.44717,20.160336,25.525482,4.819 1036,558.2897,218.25375,25.855347,59.655914,4.714 1036,562.17725,211.12546,21.151001,38.99887,4.705 1036,427.70868,227.37915,18.633118,35.23047,4.629 1036,441.2106,234.43988,20.608246,39.809326,4.603 1036,-16.820805,436.2021,54.47119,140.27979,4.592 1036,-15.153313,173.47632,50.095276,136.97699,4.577 1036,474.25644,229.6334,20.462921,43.62755,4.56 1036,482.09265,278.27213,30.51648,74.8754,4.559 1036,137.06079,211.88916,19.705078,33.15857,4.543 1036,388.67114,214.14545,15.007111,34.371887,4.529 1036,490.41873,214.33508,19.444305,48.212555,4.504 1036,-5.2789965,200.08363,17.765606,42.79921,4.5 1036,-7.978153,249.45885,36.861732,98.27986,4.471 1036,-3.6788015,158.84738,15.302828,40.309128,4.46 1036,548.3524,225.81825,27.853394,62.653305,4.438 1036,389.52368,202.8542,13.261597,28.471146,4.42 1036,19.86499,197.1943,32.481857,60.883026,4.393 1036,598.4811,206.24203,34.006958,102.51117,4.391 1037,618.0204,204.79532,21.275269,61.705414,61.816 1037,435.16177,210.13393,21.475739,43.762817,13.963 1037,499.48547,204.40294,31.059875,70.34511,8.491 1037,161.99815,203.1255,21.108856,40.175125,7.166 1037,-5.467587,-17.922913,17.755163,43.37851,6.947 1037,3.7915492,221.80714,18.025517,35.777237,6.946 1037,371.27975,221.71571,21.4617,36.323654,6.865 1037,199.32588,223.13226,28.813934,71.908325,6.752 1037,154.6071,217.63358,19.891434,36.430832,6.588 1037,626.6677,488.90973,20.513306,44.634583,6.447 1037,170.70169,203.05704,20.067062,39.2787,6.364 1037,-11.777945,-41.88513,40.48864,100.46256,6.356 1037,379.65198,216.81155,19.108734,35.018417,6.334 1037,622.2625,-34.397068,27.168152,73.88205,6.281 1037,413.31836,207.47774,14.156342,35.66298,6.159 1037,4.643104,206.07599,25.867691,56.422363,6.115 1037,495.5737,206.60948,22.84665,52.63356,6.103 1037,604.3783,199.65654,33.079468,84.91951,5.965 1037,-11.781503,475.9283,29.434204,64.80875,5.952 1037,511.6649,216.05978,25.265472,51.70337,5.617 1037,626.8391,-19.16801,18.062073,47.32613,5.615 1037,-2.4513764,220.11719,15.829029,36.841644,5.602 1037,482.73267,203.22049,21.903534,51.340683,5.569 1037,-5.9439287,489.20084,18.225956,42.216705,5.545 1037,613.0398,455.0643,39.194153,106.98648,5.371 1037,-5.1411095,23.559982,17.088707,43.740204,5.342 1037,75.33186,206.11263,17.72052,35.773056,5.305 1037,-72.88392,265.093,200.88556,463.45987,5.247 1037,419.54297,208.58522,17.289307,41.74695,5.221 1037,613.59045,207.39609,34.02008,96.518524,5.188 1037,146.00748,215.91405,20.826706,39.794113,5.063 1037,208.53577,207.96233,22.53595,47.339783,5.04 1037,-3.5597916,205.11008,16.189655,39.154053,4.988 1037,583.466,412.9055,71.38599,175.93265,4.988 1037,-17.294447,436.37985,54.41491,141.40182,4.984 1037,506.37302,-11.654106,33.40042,58.61958,4.983 1037,426.03775,206.68933,27.691162,61.47278,4.983 1037,523.235,212.02115,32.235596,63.92749,4.943 1037,-5.754347,90.69508,17.968456,38.96025,4.936 1037,478.61697,162.79639,25.300934,68.283356,4.895 1037,602.9507,-54.492664,52.54004,134.58188,4.876 1037,2.6911397,234.81223,18.226124,34.545807,4.87 1037,545.44196,305.0095,32.40863,75.68866,4.856 1037,364.4363,220.22916,18.263824,33.60486,4.842 1037,535.7908,309.76715,144.32275,341.8089,4.738 1037,184.73123,230.94408,26.307571,59.469284,4.723 1037,379.5552,213.3534,27.59793,55.169434,4.699 1037,-40.35439,367.58978,110.81737,274.13324,4.679 1037,-5.559566,44.52581,18.375235,46.213432,4.67 1037,406.3596,207.97441,13.709442,34.42099,4.634 1037,66.92742,204.941,19.003883,37.98564,4.621 1037,536.406,233.23453,22.072754,37.872437,4.595 1037,3.2527983,-16.184061,16.91562,39.795322,4.588 1037,493.85156,227.2319,236.99316,517.0365,4.572 1037,566.40393,197.98073,27.802979,61.841934,4.557 1037,397.8459,203.08203,12.332031,25.514648,4.557 1037,179.97409,198.10205,16.14293,27.220398,4.548 1037,340.50287,216.4761,16.804535,31.265915,4.535 1037,389.3766,201.79407,13.400848,28.458557,4.489 1037,488.52722,204.44402,33.824158,90.04466,4.434 1037,603.786,116.88957,33.395386,95.47533,4.421 1037,508.7384,174.03876,27.827698,72.08765,4.421 1037,585.56506,207.3898,22.044922,47.59514,4.41 1037,2.8560197,19.023106,17.680387,40.063972,4.381 1037,618.6218,490.05612,19.845459,42.1481,4.374 1037,173.12431,198.9706,16.697525,26.950897,4.37 1037,-15.903919,124.63878,51.87772,140.45876,4.356 1037,19.61926,199.21342,17.504671,31.942657,4.347 1037,-3.7705743,191.11002,14.557879,36.79094,4.327 1038,512.694,211.44128,20.408752,47.695526,48.183 1038,610.14954,200.12158,22.191101,48.42932,24.41 1038,4.1359167,199.21718,18.21606,40.060135,13.855 1038,411.80466,206.91469,18.439972,48.516647,9.701 1038,520.16705,213.39178,20.186584,47.77643,9.287 1038,460.54572,212.16254,17.800598,39.998077,8.866 1038,507.49567,222.05249,20.28125,45.521973,7.676 1038,586.66797,211.9117,20.388672,40.510773,7.434 1038,617.6336,204.63683,20.38208,63.83107,7.405 1038,-5.6588545,-19.266527,18.028263,44.485054,7.369 1038,-10.881248,-31.242632,28.895767,69.28344,7.351 1038,-2.8337784,201.2228,16.675386,41.27649,7.003 1038,-5.8344193,489.1175,17.986568,41.786987,6.449 1038,504.30542,206.46646,31.83783,76.08365,6.442 1038,627.23486,-19.022205,17.530884,49.116116,6.389 1038,441.91058,217.59302,21.031616,51.64795,6.344 1038,453.70206,223.5017,29.531921,73.99559,6.341 1038,444.3242,219.26642,29.204193,66.187805,6.339 1038,419.097,205.1654,16.29303,43.89879,6.206 1038,356.18976,205.17287,17.029114,32.57271,6.145 1038,622.9858,-33.015068,26.521606,76.7459,6.121 1038,-11.893783,476.6488,29.696121,63.900146,6.115 1038,3.6177337,218.39622,18.10014,41.495438,6.107 1038,-1.262039,20.604965,25.733408,76.471146,5.931 1038,602.70197,-56.965096,53.82843,137.6458,5.923 1038,614.48663,129.2015,26.202576,88.86926,5.877 1038,500.94318,215.52975,20.198547,45.613373,5.863 1038,378.92795,205.51604,18.76648,40.960648,5.779 1038,626.6034,488.16534,20.669556,45.394043,5.593 1038,98.16262,213.58698,21.286385,35.712387,5.592 1038,-17.50518,-62.63646,55.971695,141.02606,5.572 1038,-5.59155,33.697594,19.147923,51.97918,5.548 1038,612.7312,454.3991,40.128235,107.32025,5.473 1038,66.119354,216.47792,20.348122,32.67595,5.459 1038,453.38275,212.84273,16.333282,38.0213,5.418 1038,466.2103,212.0755,28.764343,65.7334,5.388 1038,362.8603,205.78232,17.15503,37.541718,5.313 1038,622.294,189.71376,25.043335,67.647446,5.293 1038,431.7481,218.72205,27.583862,67.39261,5.263 1038,389.3018,115.47794,27.7294,94.8991,5.172 1038,570.90216,209.42494,19.244995,41.631027,5.161 1038,-72.79805,266.01978,200.59349,461.96594,5.142 1038,555.22375,207.1484,18.914978,47.57213,5.141 1038,-16.984356,436.76465,54.168377,139.70691,5.081 1038,613.46423,173.97418,25.935059,73.14354,4.998 1038,415.0264,208.77094,24.107391,63.335968,4.992 1038,175.77298,211.47346,28.125336,54.111313,4.991 1038,91.31076,216.10268,19.526169,31.626572,4.987 1038,515.9668,206.57005,34.04016,77.07359,4.986 1038,473.721,215.96245,17.776917,40.420578,4.959 1038,536.049,310.13794,144.02942,341.84338,4.956 1038,427.01965,218.9469,19.993591,48.019684,4.93 1038,347.83234,205.0409,16.959229,31.8712,4.901 1038,600.92267,196.71733,33.1416,87.0298,4.789 1038,476.02972,215.59766,30.462158,66.44501,4.774 1038,-40.451195,368.0194,110.79455,274.396,4.753 1038,490.7999,216.9968,19.628754,42.45868,4.75 1038,588.11316,196.68427,30.05957,53.114807,4.734 1038,493.7596,227.92984,237.21329,514.6814,4.724 1038,582.75354,412.14407,71.520996,175.99216,4.699 1038,-15.250602,126.17404,50.609222,138.21164,4.698 1038,-4.388443,171.27835,17.247002,43.531143,4.697 1038,48.849976,217.05524,22.019829,34.743607,4.687 1038,444.5995,211.40051,14.307678,35.228302,4.64 1038,356.786,222.73712,16.710571,32.902145,4.62 1038,122.45094,215.00726,20.318298,32.92096,4.61 1038,382.17862,181.61159,27.704315,68.487015,4.587 1039,537.6922,211.04633,24.724243,64.21286,51.22 1039,550.0133,218.18616,23.264282,52.419525,26.818 1039,528.6112,216.23311,25.907043,70.43465,23.613 1039,487.66263,213.12802,21.0018,56.752625,22.128 1039,393.7885,211.59239,19.479584,48.617386,21.203 1039,505.5295,208.2391,29.207184,86.7142,20.343 1039,614.5497,221.21153,25.990479,74.98155,17.393 1039,490.98434,206.57335,28.84616,87.79863,14.896 1039,517.37177,216.14519,27.232178,78.900955,13.457 1039,478.50726,213.7387,27.361084,80.34114,12.672 1039,426.49905,211.52708,19.379608,54.99263,10.584 1039,541.989,213.80836,29.675476,87.97502,10.024 1039,442.4264,214.32558,19.062103,45.45851,9.605 1039,506.71158,219.28992,20.39505,52.706757,8.241 1039,450.29865,215.47748,19.067474,44.38623,8.232 1039,435.01013,209.52885,18.31604,47.427444,8.073 1039,346.31226,216.52153,19.414001,34.761185,7.891 1039,440.51038,181.52443,25.784912,71.75885,7.746 1039,401.23737,208.10316,19.372833,48.130783,7.489 1039,567.8271,218.11885,24.970886,50.859116,7.288 1039,603.70496,210.40533,31.515503,102.7464,7.135 1039,387.7315,212.70427,18.787994,42.007202,6.714 1039,-11.1934395,-31.093792,29.3979,72.5259,6.601 1039,-6.7709355,-18.952963,19.534843,46.087086,6.567 1039,82.90184,223.27582,17.432465,31.415955,6.519 1039,552.6257,213.5729,32.6239,70.73001,6.323 1039,65.86779,217.72948,19.439674,35.03386,6.289 1039,457.91885,216.15924,18.417969,45.62323,6.243 1039,623.0304,-33.508255,26.806702,74.79819,6.209 1039,-12.181108,476.66028,29.943556,64.10925,6.185 1039,-6.2021246,489.1693,18.30303,42.222717,5.974 1039,-18.292873,-62.132233,56.955788,140.57695,5.92 1040,582.66815,198.91975,28.11499,68.63426,73.943 1040,546.0403,202.86127,20.80664,50.480698,52.147 1040,414.15463,207.95497,18.43341,45.17079,50.772 1040,525.79675,202.4101,24.703491,71.35211,32.68 1040,488.22247,209.76207,24.080994,73.58327,30.334 1040,536.5705,199.44371,24.322144,63.821304,15.331 1040,474.87027,210.08707,19.66397,54.390045,12.888 1040,484.67227,208.57306,19.57959,55.313873,11.945 1040,4.2437906,214.81912,18.006306,39.94719,11.942 1040,549.84735,196.1495,31.916443,96.58389,10.878 1040,517.0351,212.31523,30.418823,85.926285,10.19 1040,456.91296,212.99127,21.232025,61.341003,9.721 1040,388.0786,214.68762,16.992615,43.363403,8.567 1040,381.33664,213.39217,16.663788,44.021957,7.866 1040,477.34497,199.90436,29.277374,89.76483,7.662 1040,-4.9475245,-18.011972,17.605646,43.785114,7.566 1040,461.66388,212.53418,26.919495,72.7514,7.56 1040,499.9627,212.01505,28.901917,80.36923,7.553 1040,556.90454,190.79732,29.55066,62.66501,7.062 1040,34.005543,200.39919,20.58102,43.075104,6.95 1040,623.0685,-33.179348,26.494873,75.70638,6.855 1040,489.2676,201.66481,19.874237,45.837814,6.682 1040,584.29865,207.8601,33.531616,111.685425,6.657 1040,627.03253,-20.040485,18.057129,49.518826,6.586 1040,424.38696,203.84746,19.079468,51.551117,6.551 1040,569.55865,198.1928,33.845215,101.18947,6.533 1040,435.2248,205.60641,18.649384,50.04001,6.431 1040,-12.132459,476.57916,30.06681,64.01886,6.426 1040,407.9134,203.18658,31.374817,81.30899,6.314 1040,615.16266,265.0128,24.090149,86.88162,6.207 1040,-12.671291,-41.346523,41.710136,99.50636,6.156 1040,571.19727,197.87529,22.728394,53.100067,6.143 1040,522.1114,197.57867,20.736084,51.48224,6.133 1041,456.58862,203.28047,24.851501,63.221054,88.191 1041,442.4207,208.95491,20.295135,50.017624,49.284 1041,403.3192,211.21216,18.400879,46.537415,49.247 1041,601.43994,201.72154,25.006226,67.97389,48.218 1041,450.10272,208.1108,22.008484,51.55809,40.218 1041,542.49335,196.00142,24.30597,71.64574,32.119 1041,495.4973,204.45108,26.331238,69.720856,28.239 1041,565.4777,199.89648,34.87079,114.77551,20.177 1041,599.92,197.17429,32.429626,123.86276,17.673 1041,584.25195,195.5714,33.586548,123.256546,17.447 1041,467.83777,201.43245,26.153564,69.80403,14.87 1041,551.5634,197.55391,34.73822,108.31749,14.41 1041,512.7802,204.0711,22.055603,57.11432,11.689 1041,2.3763669,208.95494,22.251442,49.377853,11.403 1041,478.88904,204.7016,26.58371,72.38867,11.356 1041,551.6926,199.80539,22.021423,63.947754,10.631 1041,525.68115,209.02339,28.2995,81.21251,9.947 1041,557.20575,188.16266,54.486877,163.40137,9.567 1041,616.79614,200.83621,20.334534,61.768036,8.896 1041,427.17725,210.09534,19.053772,46.556915,8.553 1041,594.1273,205.00316,24.67035,79.75191,8.351 1041,418.6432,210.15634,19.34848,44.570023,8.024 1041,520.2114,200.97371,21.50586,53.65898,7.999 1041,602.8557,-58.103275,53.465088,138.77383,7.787 1042,569.45245,196.0505,37.2865,99.660034,97.904 1042,457.57208,205.39989,24.356903,62.35103,94.145 1042,532.1613,202.79266,27.55841,76.520386,67.486 1042,512.485,209.59389,24.972107,61.36998,47.317 1042,614.87573,202.5676,23.014954,77.82413,43.143 1042,548.2246,198.35269,28.982605,80.90756,30.075 1042,479.80533,208.9778,20.259644,44.9825,18.583 1042,557.9106,199.3471,30.773315,86.680145,17.835 1042,608.5249,203.09494,21.352722,60.32187,14.053 1042,2.533555,225.45454,20.43723,34.433914,10.778 1042,601.10095,201.19814,34.084473,98.96602,9.464 1042,603.0427,216.38263,21.456726,57.29828,8.103 1042,290.7081,217.0292,20.012787,33.796158,7.805 1042,417.1469,198.81007,20.687866,54.039703,7.63 1042,610.3385,-46.800987,41.64514,97.22974,7.313 1042,604.31744,214.17006,48.345154,118.21855,7.076 1042,-5.6454124,-17.435356,18.089996,45.013737,6.971 1042,621.57294,196.51299,25.477112,76.93294,6.679 1043,594.5266,210.03015,36.436707,100.92053,88.137 1043,562.63635,208.82146,37.541992,89.94313,83.181 1043,518.3007,208.59354,27.559875,65.15994,69.088 1043,393.46832,219.8262,23.798828,51.851746,50.368 1043,576.19885,214.98358,35.933167,91.08984,21.265 1043,551.2894,207.0268,31.154602,72.134094,17.715 1043,423.17365,212.18272,22.90332,50.07048,17.231 1043,530.6017,205.80005,30.952454,68.55722,14.387 1043,396.38492,226.3119,28.506561,73.92839,11.403 1043,2.8520827,220.32695,16.683704,38.023026,10.044 1043,407.31143,221.48083,22.848053,47.60742,9.157 1043,539.80286,211.91998,32.26709,72.35626,7.461 1043,-5.3482175,-17.193083,18.219019,43.50471,7.343 1043,485.52692,193.15277,28.032715,74.12024,7.202 1043,-2.7024393,218.58716,15.810147,39.31848,7.0 1043,567.91016,203.91508,22.784058,67.791336,6.814 1043,593.26794,203.62729,22.347168,47.444473,6.645 1043,298.5568,217.74464,18.992126,34.22679,6.52 1043,-10.788004,-32.58716,29.488995,74.76958,6.491 1044,502.8624,213.67429,30.623322,73.42972,98.411 1044,470.21927,212.44342,31.085083,71.714905,81.66 1044,481.6603,216.77956,30.591827,66.06163,17.907 1044,4.3932247,233.15158,17.939516,26.921448,11.589 1044,622.2478,-33.609734,26.833557,76.49386,7.692 1044,365.7431,231.44498,30.88501,59.370544,7.528 1044,306.11783,216.58499,19.779694,29.910294,6.952 1044,67.360695,211.5007,20.463669,34.312256,6.793 1044,626.4935,487.51266,20.779541,45.25418,6.492 1044,602.1651,-56.93793,53.414185,132.42244,6.299 1044,357.5868,226.79968,29.66986,52.782257,6.272 1044,-6.2181306,488.6362,18.427488,43.006012,6.267 1044,627.05707,-16.574368,17.042969,46.35899,6.215 1044,613.16724,454.23395,38.849426,106.99609,6.172 1044,388.0011,227.17967,16.234985,29.721237,6.127 1044,378.7162,230.37779,19.164673,35.554245,6.113 1044,619.4735,-2.5612144,19.279297,40.532135,5.972 1044,411.10837,200.56937,17.769653,36.101166,5.935 1044,1.3584065,172.7239,19.863243,45.55989,5.835 1044,265.02914,220.2045,21.73352,33.99547,5.727 1044,18.24366,230.4584,19.064682,25.637115,5.721 1044,-9.289451,463.48013,37.923706,93.28958,5.521 1044,-6.072812,-19.187016,19.2071,48.88916,5.406 1044,-12.569292,-40.370415,41.48108,101.552925,5.373 1044,376.8642,237.10895,34.489075,61.364075,5.361 1044,368.74255,229.75928,21.847992,39.048157,5.328 1044,462.323,232.26819,29.976501,70.644775,5.25 1044,251.00684,215.3917,20.131226,27.444656,5.239 1044,59.042473,214.03249,19.372139,30.631882,5.199 1044,415.57806,211.48402,50.17047,102.63246,5.195 1044,273.41806,221.75775,20.461243,33.26027,5.134 1044,-4.1062174,158.34222,17.2569,39.826935,5.126 1044,3.7585032,219.50641,16.900076,31.393677,5.125 1044,583.19495,413.4048,71.81842,174.77289,5.07 1044,420.4791,231.69788,31.48404,61.06189,5.053 1044,-72.635506,266.53824,200.09518,461.47226,5.044 1044,411.6681,221.26422,16.670654,29.969849,5.023 1044,535.8393,310.35876,144.61383,341.2351,5.007 1044,469.01593,-18.28011,32.339172,62.86207,4.897 1044,489.55887,209.65425,20.257172,41.24585,4.877 1044,186.32776,215.78252,19.562836,29.30066,4.854 1044,-21.608501,402.3834,78.9788,174.8815,4.841 1044,594.732,-45.72856,42.86554,96.04032,4.812 1044,494.77097,230.46085,236.48563,512.7295,4.779 1044,245.27473,210.15717,29.705063,51.36609,4.744 1044,614.67804,-16.759312,27.72174,68.50076,4.722 1044,243.14398,221.53418,20.708252,31.02893,4.72 1044,-4.1520042,233.8272,16.550001,32.376144,4.708 1044,256.76007,219.356,21.845276,34.1828,4.708 1044,50.274742,216.2999,20.327278,30.947128,4.703 1044,402.62885,233.2591,34.75775,59.47711,4.622 1044,462.43933,216.08014,50.590393,111.91962,4.619 1044,438.81116,186.79668,27.646515,69.23256,4.616 1045,306.44528,215.59148,20.833313,35.391098,10.422 1045,475.63446,212.3696,16.350677,39.61693,9.316 1045,459.61212,208.5364,17.448395,43.018433,8.738 1045,602.5097,-56.891747,53.896484,138.33163,7.009 1045,468.03125,214.61055,16.81369,39.10234,6.81 1045,257.1067,213.89233,22.25534,32.43474,6.757 1045,424.90384,221.08801,20.867096,38.34616,6.548 1045,168.23157,198.33958,23.250046,32.87088,6.523 1045,627.55566,-15.378381,16.524536,45.033096,6.441 1045,307.29303,207.73189,19.962585,27.59401,6.397 1045,-12.573528,476.6903,30.97816,63.35016,5.991 1045,-11.412722,-32.97081,30.30054,74.72136,5.844 1045,273.6767,215.14807,21.188904,30.483597,5.821 1045,477.83575,239.94875,31.08545,59.991837,5.679 1045,281.52628,216.96735,19.671936,29.816666,5.639 1045,613.5165,454.0907,38.487976,106.79993,5.43 1045,-17.336994,-64.06673,55.574787,145.7284,5.428 1045,626.4246,487.09732,21.341248,46.029266,5.401 1045,-6.006319,-18.58906,18.910784,45.096745,5.4 1045,409.3205,226.78735,20.447601,31.161438,5.34 1045,-6.413955,489.04456,18.929705,43.36743,5.337 1045,1.145612,218.40471,21.073725,39.361893,5.223 1045,452.24298,209.61665,18.495392,41.29329,5.187 1045,299.92786,217.62991,19.784698,32.0963,5.169 1045,622.781,-33.02352,26.282837,76.78436,5.12 1045,-72.82722,265.45886,200.44131,461.77655,5.07 1045,153.44565,199.02571,22.423065,31.904572,4.972 1045,432.2224,217.6792,19.531769,38.686096,4.965 1045,548.87994,135.11482,29.554504,77.25972,4.963 1045,176.20624,204.65605,23.862595,31.310211,4.943 1045,610.90906,246.39879,19.817993,44.29323,4.922 1045,-21.668234,402.11243,79.24699,175.36902,4.913 1045,583.67615,411.05396,71.140686,177.21521,4.88 1045,442.53787,216.70609,18.436829,37.10742,4.878 1045,595.8979,-46.91571,41.818848,102.904396,4.872 1045,470.71295,208.25362,25.686615,59.114243,4.87 1045,566.0781,241.08902,29.568848,61.41867,4.82 1045,602.7068,240.34503,19.38556,40.9198,4.796 1045,312.8855,222.95161,20.179443,36.20778,4.736 1045,622.2875,122.65889,25.80951,80.88461,4.733 1045,-5.4013596,207.63904,19.156921,43.088196,4.729 1045,243.70203,207.35503,18.035492,25.549835,4.724 1045,116.44281,193.88913,30.183594,47.94232,4.723 1045,536.08386,310.3428,143.63666,342.36423,4.718 1045,-5.208045,81.380585,19.578516,51.09384,4.697 1045,290.11237,224.25685,20.234558,31.995987,4.681 1045,160.15749,202.89847,24.520721,32.99295,4.669 1045,344.17676,217.60336,29.613586,51.889954,4.619 1045,-5.1367664,187.80342,18.14191,40.5692,4.618 1045,145.45526,200.20377,21.894073,31.807144,4.549 1045,-10.438662,181.62112,28.77138,66.947235,4.521 1045,-4.114943,174.71642,15.909277,37.72702,4.468 1045,618.8176,232.72673,17.865234,44.5504,4.463 1045,484.4769,185.61728,27.360596,69.399734,4.447 1045,482.3319,214.94731,17.144653,39.26767,4.441 1045,586.3038,248.32263,20.833923,38.09326,4.43 1045,312.79785,210.65895,19.115845,33.252914,4.42 1045,493.9029,229.44223,236.8866,512.8262,4.416 1045,562.12976,-131.02478,113.15643,280.6702,4.36 1045,406.06625,232.29805,27.049744,58.79094,4.343 1045,251.30562,209.17322,33.060562,51.946167,4.305 1045,506.31955,246.81259,33.017303,68.911316,4.3 1045,2.410767,213.18736,41.110867,111.739944,4.293 1045,266.5549,-15.987493,17.446167,38.972313,4.277 1045,58.008995,198.4587,21.378891,36.666595,4.249 1045,73.216064,216.0726,20.633965,26.953781,4.24 1045,13.980781,61.212517,32.1988,69.56361,4.23 1045,-8.735781,51.189705,27.352316,77.1209,4.18 1045,373.42792,91.60402,32.014435,62.122482,4.172 1045,2.9030657,68.946144,32.582123,76.87258,4.16 1045,192.88791,208.82008,22.939255,29.668411,4.138 1045,555.2502,-36.58292,55.31024,131.77933,4.135 1045,313.58084,199.09149,19.153046,28.41745,4.134 1045,620.22314,-13.831663,15.970154,40.78729,4.115 1045,394.14685,5.6275005,20.36261,39.137245,4.075 1045,160.17653,201.27588,36.981903,50.94287,4.062 1045,588.3646,2.2379284,16.77771,33.389877,4.038 1045,-16.861055,160.77747,50.578865,122.5802,4.027 1045,573.1335,227.20319,29.331604,61.983154,4.019 1045,169.09256,214.25162,36.207,47.211426,4.018 1045,184.84628,200.66302,21.431305,31.526962,4.008 1045,201.25854,210.42131,22.482758,29.573792,3.99 1045,488.92493,-178.12619,236.92499,420.3582,3.99 1045,571.6349,-61.198055,55.924072,142.46371,3.963 1046,598.13367,200.12659,29.71051,75.08298,31.957 1046,586.3091,196.0645,32.815063,93.846695,31.034 1046,575.8861,195.79416,25.42334,72.31528,27.387 1046,480.77698,215.35089,21.071198,43.913574,21.393 1046,592.99646,205.75862,22.638916,59.633224,16.637 1046,614.71497,199.42131,24.582886,77.56908,13.863 1046,488.77032,214.97206,20.959015,44.43898,12.319 1046,471.0185,218.44193,27.084839,60.39731,12.083 1046,532.5856,200.70438,28.259888,67.826385,11.632 1046,497.9269,214.4724,20.347809,44.946915,9.328 1046,467.27057,226.68748,21.415771,45.70836,7.737 1046,566.54553,207.01001,28.435059,70.4837,7.687 1046,494.5493,216.9371,27.252594,74.64581,7.557 1046,219.53275,204.7721,17.140198,24.392944,7.232 1046,307.11484,209.52713,20.205688,33.774963,7.174 1046,557.63745,201.42926,28.831116,66.14389,6.906 1046,622.7576,-33.501053,26.375061,77.463936,6.834 1046,552.7807,191.11177,26.549805,59.65132,6.736 1046,128.8904,196.48424,22.266098,42.039795,6.677 1046,591.6587,194.89206,44.29712,125.035645,6.652 1046,-5.8519006,489.09195,17.993061,42.15555,6.627 1046,-5.8054285,-16.585243,16.915283,42.401222,6.409 1046,313.11255,216.00772,20.483795,32.446335,6.279 1046,3.4507227,217.78687,16.345734,29.244064,6.144 1046,-17.026743,-64.28743,56.005867,147.47673,6.085 1046,533.4413,205.81194,19.376282,42.398697,6.081 1046,299.15378,216.84001,19.848663,30.25769,6.057 1046,395.3435,232.04121,30.940948,63.929123,5.959 1046,523.0337,212.66801,21.192871,42.593307,5.955 1046,103.70352,202.54486,24.310364,37.07962,5.946 1046,602.0257,-56.257343,53.565125,135.77437,5.792 1046,121.65511,210.6112,21.835335,34.23633,5.783 1046,-8.951577,464.73712,37.588432,92.31488,5.771 1046,627.26025,-17.679409,17.169434,47.14441,5.765 1046,612.22754,211.00653,35.310364,110.99432,5.704 1046,2.1090877,202.99608,21.561253,32.551025,5.68 1046,80.25852,211.25018,23.160126,32.787277,5.594 1046,469.96793,218.37885,17.7612,35.4084,5.57 1046,-4.937988,217.06435,16.021133,35.07509,5.556 1046,112.76544,209.48868,22.51616,34.567642,5.555 1047,601.00214,222.69867,23.117981,54.290405,32.063 1047,596.2024,206.58316,36.283813,84.33029,9.642 1047,437.9167,161.2647,28.077728,65.8483,8.313 1047,602.3846,-58.098686,53.7229,136.47475,7.745 1047,613.4764,451.55756,39.33612,111.82947,7.658 1047,73.681015,217.86359,22.947784,38.83191,7.115 1047,220.54196,216.57037,16.94815,27.658157,6.662 1047,627.2997,-18.430843,17.248535,48.248043,6.381 1047,202.81618,213.30257,18.719284,29.5551,6.373 1047,-17.455406,-64.346214,56.425804,149.22527,6.306 1047,583.6107,219.90866,38.779907,86.76648,6.258 1047,-11.294802,-32.452797,29.568604,73.62427,6.25 1047,622.3927,-33.11425,26.79712,76.58309,6.131 1047,186.20886,212.174,21.623901,30.578308,6.102 1047,306.8043,210.7475,19.145233,36.32257,5.989 1047,211.79813,214.2811,17.86499,28.904327,5.972 1047,-4.902224,211.65349,17.753815,40.17729,5.94 1047,-5.7429304,-16.785988,17.1034,42.079483,5.9 1047,-12.412452,477.69907,30.427109,62.40091,5.863 1047,626.86346,487.53207,21.084656,44.89731,5.824 1047,595.6219,-47.670986,42.309387,101.24359,5.686 1047,-6.359599,489.25342,18.83136,43.145508,5.62 1047,563.3074,217.92355,29.822083,56.2063,5.572 1047,614.504,242.87901,25.58142,77.03111,5.481 1047,236.65605,218.87051,13.16452,23.161453,5.358 1047,352.50446,181.0651,25.389648,61.701096,5.296 1047,586.6352,217.46869,22.510376,51.980316,5.239 1047,583.01685,412.555,72.020996,175.36334,5.191 1047,228.94957,217.43831,13.976837,24.037277,5.172 1047,284.13757,210.11244,30.257446,52.74272,5.164 1047,590.686,218.02197,47.65576,122.80188,5.14 1047,369.42535,230.26666,42.36148,99.60974,5.122 1047,376.517,234.88158,36.381744,48.62239,5.09 1047,194.60104,207.8575,20.729843,31.50325,5.085 1047,580.47437,244.8535,30.858704,80.52608,5.085 1047,511.9447,290.89456,24.213562,43.777893,5.048 1047,461.1121,160.63455,28.834778,65.185165,5.028 1047,546.9057,224.46309,41.061584,81.5605,5.001 1047,-17.89304,435.77045,55.18174,140.09479,4.986 1047,331.47736,198.7969,16.51471,32.07161,4.947 1047,-72.98892,266.59937,200.42322,460.84204,4.883 1047,535.7537,311.02826,144.24872,340.04987,4.868 1047,2.1613944,236.97897,20.003347,31.668549,4.823 1047,-39.844982,368.09717,109.995514,273.45105,4.784 1047,170.83218,203.32869,33.214417,45.859085,4.782 1047,619.0976,-17.634129,17.836548,45.363686,4.766 1047,597.0944,238.12418,31.226868,73.73984,4.721 1047,339.07373,197.64041,17.08316,34.664185,4.638 1047,564.58606,223.75253,39.966614,82.93857,4.637 1047,-16.472513,194.61665,51.18357,120.63481,4.615 1047,623.85974,211.78505,26.121582,70.03084,4.611 1047,612.4854,268.13974,39.01825,104.64499,4.595 1047,323.03265,197.7514,17.18277,32.032654,4.576 1047,608.29095,236.46683,22.314392,49.022644,4.558 1047,493.72852,229.09409,238.0315,514.2313,4.533 1047,571.61053,-63.09599,56.212585,139.88275,4.527 1047,-5.6574683,232.61464,18.426903,36.465164,4.48 1047,361.10052,178.3614,21.398102,50.796463,4.433 1047,65.5824,229.58522,21.359451,30.90129,4.418 1047,401.7691,234.76996,42.83734,96.07367,4.408 1047,2.788639,252.66362,19.378578,36.396927,4.406 1047,417.70807,236.20834,44.022217,92.613556,4.38 1047,539.61475,221.23022,34.621826,53.20526,4.3 1047,347.95758,202.85364,16.140472,35.339127,4.25 1047,560.76495,220.60104,21.907043,38.012726,4.248 1047,385.33777,231.99193,42.950195,97.18617,4.245 1047,585.1685,-101.73831,75.44495,239.29562,4.239 1048,458.59515,222.60904,18.680298,38.869965,7.522 1048,266.06342,77.007126,34.67096,70.69978,7.038 1048,305.95575,222.31729,21.576538,38.803223,6.79 1048,619.952,214.2465,16.832092,42.616104,6.693 1048,368.2321,185.17673,26.312439,62.987778,6.618 1048,626.5617,488.19476,21.282288,45.56964,6.455 1048,-17.602226,-63.47654,56.773605,148.66606,6.436 1048,-12.267828,478.78372,29.914103,62.31253,6.409 1048,236.24403,215.40575,17.188156,30.973587,6.27 1048,314.9045,214.30295,18.84964,36.075806,6.12 1048,315.2324,228.79527,17.598053,36.477463,6.118 1048,-6.252283,489.85028,18.592155,42.479736,6.054 1048,611.05316,-47.028675,41.396057,99.215645,6.004 1048,298.5264,230.70158,19.5018,33.295547,5.9 1048,409.90234,187.39485,20.014923,54.89067,5.836 1048,506.73373,209.74483,17.381378,38.64746,5.811 1048,228.29637,215.46988,16.824326,28.923141,5.792 1048,-21.265802,403.96014,77.46842,174.84296,5.769 1048,220.32077,216.62941,16.52182,25.952072,5.766 1048,90.20966,227.93422,20.36525,31.500076,5.737 1048,-11.259087,-32.513004,29.53986,73.387375,5.673 1048,411.0938,159.15724,30.309967,81.8831,5.661 1048,627.1551,-17.295616,17.22754,46.56395,5.658 1048,-5.7488947,-17.034166,17.2191,41.975258,5.581 1048,613.83514,452.0353,38.641907,110.59848,5.549 1048,523.16064,215.65567,16.54602,32.00302,5.51 1048,493.01447,215.10997,16.936096,41.029373,5.492 1048,293.92316,215.38794,28.845825,50.28253,5.435 1048,290.49457,230.65544,18.903137,31.985825,5.417 1048,282.9864,231.228,18.268799,30.828644,5.406 1048,435.5725,167.73262,28.119568,76.768814,5.403 1048,447.48264,156.9323,27.684937,75.563324,5.388 1048,585.0245,409.51535,69.79047,179.04178,5.301 1048,440.98206,186.54816,18.670288,50.266266,5.288 1048,75.142395,231.06491,18.661057,30.012299,5.286 1048,451.60724,224.30211,20.095184,46.05449,5.213 1048,321.4845,211.63821,18.678802,36.460815,5.194 1048,515.547,212.59673,16.829956,36.32106,5.191 1048,82.763794,230.59866,19.355713,30.433655,5.136 1048,372.4723,205.51506,17.419006,40.469208,5.095 1048,67.10404,232.2176,18.754936,29.580551,5.066 1048,499.71826,209.01878,17.317566,42.631485,5.036 1048,168.88043,218.0905,23.469147,34.68126,4.931 1048,629.31616,61.881912,15.38324,39.921722,4.917 1048,176.4994,214.2701,23.612778,34.83522,4.886 1048,59.288136,234.8091,18.138103,27.424973,4.866 1048,473.61832,219.06949,18.920288,38.48767,4.837 1048,202.45471,216.58675,19.326172,28.320618,4.784 1048,331.1458,195.33025,18.80246,35.020096,4.769 1048,421.81638,171.38971,30.105286,76.66112,4.734 1048,380.78186,168.58652,30.118866,76.434235,4.645 1048,-72.55259,267.80963,199.41602,459.63617,4.59 1048,620.3825,185.6118,17.005676,47.619705,4.582 1048,186.75525,209.75201,17.835037,26.767212,4.567 1048,594.2646,-45.07151,43.748108,94.90819,4.554 1048,397.23514,166.74908,28.485626,77.46405,4.524 1048,211.02509,216.38272,18.053268,26.875748,4.493 1048,4.8455086,215.24121,13.438194,31.328049,4.485 1048,535.47046,252.664,24.3667,34.897278,4.472 1048,184.1498,219.31654,23.442734,33.726044,4.452 1048,282.22113,400.8355,19.51947,31.861328,4.447 1048,274.6577,400.40634,19.526611,33.71878,4.444 1048,503.264,195.47066,25.444672,60.18068,4.439 1048,499.10297,169.63832,18.568237,50.09102,4.373 1048,96.99157,231.65358,20.435455,29.757156,4.361 1048,474.50226,73.055405,19.82724,35.567596,4.351 1048,339.10464,199.31964,16.804047,38.395676,4.328 1048,536.2914,313.1778,142.82678,339.99615,4.315 1048,460.60562,213.01373,26.786163,53.048462,4.269 1048,452.14777,85.57462,16.295227,29.67266,4.262 1048,627.3915,214.5763,17.378967,46.729797,4.245 1048,-2.815666,191.3272,14.593635,39.371857,4.233 1048,617.0134,160.55675,23.500793,80.24895,4.206 1048,323.16663,194.88405,18.693695,34.657547,4.201 1048,323.40207,226.60474,17.671814,39.934723,4.197 1048,417.6776,181.6952,19.863312,55.809204,4.176 1048,493.2755,227.14215,237.39307,516.7031,4.174 1048,459.25308,84.369,18.23407,31.96666,4.168 1048,317.8957,396.62112,29.387512,57.567413,4.165 1048,433.7866,178.96921,20.032227,54.425278,4.161 1048,460.21805,162.37512,18.383362,59.318268,4.156 1048,467.09775,81.366684,19.368927,34.88347,4.153 1048,-4.1931696,81.73517,15.620851,37.436287,4.137 1048,330.3028,404.2826,21.780151,37.6131,4.106 1048,275.23267,224.68768,20.875702,33.79245,4.101 1049,449.26926,186.85086,20.827423,60.920013,8.999 1049,361.7374,197.2108,19.409943,44.48268,8.397 1049,380.7692,204.94592,17.894257,42.049164,8.073 1049,422.03656,180.80583,27.31314,73.30296,7.366 1049,4.218795,224.617,17.257332,37.69348,6.883 1049,611.3752,-47.549374,40.402466,100.29479,6.432 1049,346.4026,198.5876,17.37085,39.111008,6.403 1049,591.3562,229.86075,28.708374,62.19464,6.402 1049,627.6081,-16.717354,16.586487,46.160892,6.339 1049,-17.266226,-63.615906,56.45616,148.3673,6.168 1049,457.80756,182.96722,19.3031,56.753815,6.144 1049,-4.347409,233.20985,17.276348,38.882095,6.124 1049,323.6165,218.4976,16.90387,30.690598,6.056 1049,438.35944,176.59944,27.748474,75.53929,6.047 1049,303.0766,225.94414,27.799011,59.093613,6.038 1049,617.59753,230.90186,19.407349,48.100586,5.987 1049,-6.332926,488.91275,18.761057,43.249786,5.987 1049,-12.460747,476.06268,30.696465,63.71216,5.92 1049,314.44324,228.83095,21.973145,45.38173,5.856 1049,-2.6635516,208.14108,14.262366,38.02324,5.831 1049,500.492,166.19019,27.399536,90.63068,5.788 1049,-5.2833743,-16.555147,16.86269,41.527542,5.686 1049,354.53052,198.05962,18.462494,41.336945,5.363 1049,626.6206,488.30212,20.904724,44.657654,5.343 1049,282.1739,229.24512,20.794464,35.56299,5.298 1049,-11.513731,-32.89076,29.699999,73.61705,5.267 1049,606.95984,226.76625,26.454102,65.012985,5.244 1049,338.9356,195.43553,19.563599,37.073685,5.211 1049,404.75098,163.49028,31.926605,82.14206,5.118 1049,583.0682,413.05765,71.68756,175.45224,5.101 1049,613.20496,455.4117,39.238037,106.91855,5.058 1049,4.5669007,220.50218,28.373156,51.218674,5.046 1049,474.28094,217.2493,20.026733,46.252594,5.042 1049,-21.805035,402.7189,79.04105,175.44412,5.036 1049,-72.97051,266.44897,200.85,461.2041,5.016 1049,4.415293,213.98976,14.163534,35.159103,5.014 1049,293.40298,220.1421,27.874664,57.52748,4.987 1049,212.70847,210.92436,14.054718,24.132996,4.923 1049,235.28459,215.78801,17.508926,30.764618,4.847 1049,535.99744,310.7785,143.95679,340.81573,4.793 1049,10.93472,220.7417,15.919595,34.050446,4.767 1049,288.32556,224.04172,22.41452,37.294983,4.7 1049,269.51395,218.3574,31.744781,56.17369,4.681 1049,416.8391,2.407446,21.083069,34.120888,4.677 1049,382.59598,186.09866,25.765167,62.11206,4.655 1049,368.17062,189.75542,23.634949,58.26268,4.629 1049,582.13245,151.09875,30.047241,89.08316,4.587 1049,604.8004,140.4849,28.56897,89.83209,4.534 1049,493.96548,228.4888,236.91959,513.6094,4.523 1049,540.1788,-1.2622166,16.71112,32.574738,4.381 1049,372.5047,210.02386,16.171082,39.05365,4.356 1049,565.6974,159.3853,29.895325,82.75914,4.335 1049,221.13763,212.51735,12.676453,21.244034,4.33 1049,397.23547,178.57361,29.322937,71.679535,4.329 1049,507.4661,-14.779465,16.08017,39.1329,4.308 1049,489.9739,-179.91542,235.93002,422.89517,4.251 1049,581.5296,225.87065,28.132996,58.72484,4.239 1049,478.81046,221.34201,25.831146,62.372314,4.232 1049,228.59995,216.98114,16.895279,30.03305,4.232 1049,-3.0188825,192.69351,14.578865,38.087677,4.223 1049,255.74028,-5.025135,48.846146,70.75897,4.213 1049,466.93073,185.5769,18.223969,49.600906,4.2 1049,-5.0713415,89.258095,16.59876,41.626823,4.189 1049,203.95709,216.36986,18.352692,27.859543,4.188 1049,620.5309,-0.61125946,17.191833,36.916004,4.163 1050,412.31647,187.84644,16.565857,44.80156,20.553 1050,386.73352,186.28865,18.522339,42.923462,12.657 1050,381.78552,166.81746,27.684082,64.43524,9.726 1050,568.07086,205.30244,27.411194,81.5508,9.478 1050,394.48987,188.62961,18.01242,42.869125,8.005 1050,622.89825,-33.78341,27.218079,75.799484,7.718 1050,380.85464,187.6436,17.396332,38.096436,6.672 1050,602.6568,-56.60714,53.65399,134.20671,6.3 1050,312.63556,205.92357,21.465027,33.873627,6.165 1050,-6.1850696,488.46884,18.814953,43.211823,6.133 1050,627.09076,-18.18811,17.473938,47.0708,6.037 1050,497.76013,189.68817,22.858887,59.90924,6.029 1050,418.2423,193.48222,18.10553,43.549576,5.954 1050,-5.082231,-17.89127,17.008102,43.63577,5.933 1050,364.2135,195.81947,15.630829,29.331985,5.926 1050,-10.627228,-31.334959,29.136202,73.113304,5.871 1050,427.56696,195.54941,18.453308,43.017136,5.834 1050,-4.751827,38.1938,17.65646,47.44937,5.745 1050,-9.053175,464.5734,37.719055,92.0983,5.72 1050,525.75555,129.1018,28.797363,77.82225,5.501 1050,235.32718,199.20813,17.157196,25.721344,5.354 1050,612.8725,455.6869,39.631165,106.81799,5.32 1050,404.47058,189.14435,17.468048,43.637085,5.298 1050,447.08603,130.6025,28.456268,86.93431,5.268 1050,-16.626469,-63.676422,55.415268,145.3211,5.253 1050,330.21408,214.76073,20.65921,38.623123,5.151 1050,626.57904,488.16602,20.70465,45.514282,5.097 1050,595.37744,-46.46977,42.539978,99.86428,5.076 1050,583.21625,412.45898,71.50604,176.22107,5.074 1050,-72.66297,266.5313,200.55853,461.0517,5.063 1050,348.04,200.39688,14.854401,25.852295,4.991 1050,356.5191,199.3532,15.150543,26.966888,4.961 1050,186.11337,197.46895,22.061737,30.315567,4.931 1050,-21.60449,402.66714,79.16873,175.074,4.88 1050,602.5092,233.69365,20.03949,53.531662,4.856 1050,348.0274,140.0711,31.863586,79.160934,4.807 1050,115.210144,198.93864,30.89563,45.73723,4.807 1050,536.17065,310.83313,143.79303,342.3761,4.773 1050,491.2743,126.60358,30.990173,100.29016,4.762 1050,591.23596,226.61195,26.800842,73.03783,4.723 1050,513.3883,191.79033,22.601257,57.897293,4.692 1050,601.4132,196.52184,33.620728,110.265976,4.645 1050,585.9874,-100.57378,74.76453,233.34598,4.606 1050,410.09616,163.88567,25.134796,70.65117,4.603 1050,489.21613,-179.61497,236.3454,425.19583,4.602 1050,200.25465,197.02802,22.221863,29.948364,4.557 1050,493.1955,226.90503,238.14386,515.4229,4.497 1050,322.13364,200.76547,18.698914,27.132553,4.457 1050,252.00296,199.66183,15.812378,26.54982,4.45 1050,306.84784,213.77219,19.890594,32.133423,4.426 1050,340.26733,199.25352,16.331146,24.7117,4.386 1050,227.4547,198.91856,18.26271,26.726074,4.379 1050,307.75784,202.32999,18.63034,24.88681,4.358 1050,320.4227,206.98996,21.847015,36.514328,4.338 1050,389.19714,185.13033,28.869415,64.407394,4.25 1050,330.62292,202.93785,18.559326,29.050644,4.221 1050,386.07794,91.32407,21.681335,38.59954,4.203 1050,581.2214,220.0025,27.476868,79.091736,4.137 1050,243.79784,199.16927,16.737564,26.91957,4.131 1050,423.2466,167.35239,25.52716,66.91054,4.033 1050,516.3185,143.05092,29.55304,79.93907,4.013 1051,398.3051,171.19391,25.188965,71.481445,16.544 1051,447.0475,160.01918,25.059906,82.624054,9.655 1051,420.41992,161.54276,29.027893,82.928024,9.503 1051,616.37885,137.72644,23.65094,90.97305,7.986 1051,602.16974,-56.240692,54.117737,137.56825,6.724 1051,612.87634,453.2119,40.159485,107.84912,6.517 1051,-8.645072,465.34042,37.718014,90.879486,6.308 1051,449.84818,203.20052,20.555084,50.887604,6.284 1051,-5.6845264,-17.152529,17.327312,41.79292,6.073 1051,498.92026,172.14334,20.361847,58.495255,6.06 1051,627.41144,-16.942818,16.760803,46.339058,6.028 1051,616.51465,173.3654,24.75647,85.95503,6.012 1051,387.76505,184.9045,19.17569,51.115555,5.978 1051,-11.826096,-31.746735,30.5458,71.44556,5.948 1051,-6.280061,490.75235,18.895042,41.858795,5.744 1051,339.14597,224.5074,17.527313,33.05577,5.685 1051,431.0728,177.63019,25.010406,69.94495,5.677 1051,-16.97222,-63.871307,55.839333,147.04474,5.65 1051,314.51294,223.06593,18.879639,30.155594,5.617 1051,622.8862,-33.64672,26.379578,76.60624,5.591 1051,234.97682,213.1693,17.87175,28.134598,5.308 1051,340.39624,211.1188,15.990173,26.561234,5.269 1051,452.55652,182.18939,25.78424,69.74492,5.197 1051,348.92932,138.39917,30.526001,76.00925,5.111 1051,330.89606,222.41342,18.973389,33.654938,5.11 1051,617.24097,107.56305,23.46698,85.548035,5.101 1051,219.30428,213.58134,18.470749,28.556137,5.027 1051,321.2238,219.35216,19.806305,31.018723,5.014 1051,583.69305,410.61554,71.081726,177.3241,4.962 1051,2.3035784,43.796097,18.707287,49.431503,4.935 1051,346.9766,211.87698,14.634979,25.772736,4.932 1051,-72.40521,266.09894,200.13489,460.86224,4.907 1051,-21.469334,403.5327,79.15147,174.46826,4.887 1051,2.7662635,-15.927135,16.649084,39.927364,4.822 1051,81.43576,213.44307,19.392471,30.415009,4.804 1051,394.86505,193.92163,21.117859,48.099518,4.788 1051,626.4657,487.7328,21.101562,45.364624,4.667 1051,2.098331,236.55609,19.805851,40.135864,4.617 1051,488.89343,-180.56705,235.79724,424.52188,4.616 1051,536.4739,310.61353,143.17096,341.9673,4.599 1051,322.65216,-15.7314,17.953949,38.70342,4.558 1051,442.50812,197.70668,18.677734,50.29782,4.548 1051,347.37668,224.50716,16.601746,33.608078,4.546 1051,315.91638,212.49911,15.284332,22.992249,4.526 1051,309.38983,206.38313,13.291168,19.727081,4.522 1051,489.05048,164.86188,26.001892,76.6503,4.483 1051,-4.188781,213.52989,15.963567,36.03122,4.462 1051,301.87634,205.78775,13.131409,18.967728,4.429 1051,585.9894,-103.61726,75.46008,240.37299,4.396 1051,202.74832,212.33789,19.827637,31.310104,4.346 1051,493.4868,227.29602,237.57193,516.42554,4.345 1051,330.6504,-17.36488,17.901703,40.100384,4.285 1051,598.52124,-19.763939,38.364502,93.66346,4.27 1051,210.4881,212.87077,19.165848,29.430038,4.269 1051,226.774,213.16872,18.257507,28.631134,4.226 1051,542.06323,77.35153,27.349121,110.01654,4.216 1051,539.8845,-61.25925,55.4281,136.85616,4.162 1051,283.96808,218.32947,17.314697,27.826492,4.139 1051,405.971,186.72932,26.260315,61.89012,4.127 1051,243.7438,209.29384,15.195831,24.72676,4.126 1051,571.2885,-60.53926,56.61566,140.2512,4.109 1051,597.15295,459.26877,39.110413,102.188385,4.09 1051,460.83417,172.6482,28.119446,74.17381,4.083 1052,412.2003,196.40091,21.5802,49.298737,15.015 1052,449.26987,202.8337,18.685883,47.813705,12.771 1052,441.8781,196.50932,20.157898,50.916565,9.677 1052,518.2698,144.44542,28.34314,90.90968,8.127 1052,393.9778,187.98184,20.485107,51.158035,7.864 1052,434.4394,184.63153,20.902222,53.97719,7.474 1052,582.13916,143.12604,28.793213,75.32152,7.098 1052,331.45837,224.1052,17.440887,33.523285,6.351 1052,-4.175849,206.94049,15.319609,33.808807,6.212 1052,622.89435,-33.681736,26.398865,75.866615,6.105 1052,586.1538,206.83719,22.999023,53.944183,6.021 1052,365.22488,4.9403524,13.502899,29.078114,5.945 1052,627.34265,-18.96181,17.194214,48.033916,5.901 1052,-16.702686,-62.08752,56.0087,144.56032,5.812 1052,-12.715206,477.8312,31.073896,62.505585,5.794 1052,528.3299,143.94322,21.129944,63.300903,5.769 1052,339.6576,204.01968,14.890717,27.823837,5.732 1052,613.858,454.3533,38.257507,106.60733,5.713 1052,414.19727,164.24423,27.556763,73.28119,5.696 1052,219.52972,214.6373,17.296783,26.891464,5.689 1052,-6.5253973,489.58,19.249714,43.009674,5.531 1052,-5.6276236,-17.485289,17.034702,43.52319,5.444 1052,445.1935,178.14543,27.09909,69.98244,5.427 1052,626.21814,487.1868,21.485413,46.471832,5.34 1052,356.29834,-9.786755,14.735443,35.94951,5.302 1052,-11.463963,-32.816288,29.711765,75.60252,5.275 1052,456.58917,203.27934,19.436554,47.50969,5.225 1052,-17.007393,436.76425,54.782757,137.58951,5.21 1052,348.10452,-10.523897,14.98172,36.468903,5.169 1052,357.12183,4.9755325,14.124054,29.888622,5.078 1052,584.12164,411.71588,70.45453,176.07727,5.076 1052,-73.02428,265.70233,200.56522,461.5595,5.0 1052,602.5924,-57.422146,53.727722,136.03967,4.935 1052,194.4289,208.91788,19.577148,27.389572,4.901 1052,426.10596,178.76498,20.327087,51.039795,4.856 1052,313.17923,216.1193,20.419525,33.29857,4.845 1052,-40.443756,367.91016,110.58253,274.84357,4.815 1052,-3.334491,193.34598,14.219935,33.189117,4.784 1052,89.66753,207.22884,23.506836,37.37004,4.783 1052,585.62714,-102.77771,75.912415,237.39006,4.766 1052,533.6418,140.41928,26.403442,77.24446,4.765 1052,322.51642,216.01399,19.289124,33.350403,4.715 1052,473.86127,207.69315,19.852966,48.989044,4.668 1052,348.95007,203.1331,14.160095,28.235031,4.628 1052,398.452,162.98178,28.18515,72.50763,4.595 1052,-4.779039,90.57706,16.396631,37.454437,4.591 1052,2.0592344,223.27032,20.892263,34.793884,4.575 1052,-16.407602,122.38816,52.701523,141.25574,4.484 1052,19.57396,212.60843,31.879082,49.66342,4.47 1052,-4.8887854,59.03089,15.743613,38.93302,4.465 1052,536.08344,310.90186,143.54639,342.98584,4.452 1052,348.32562,214.38281,16.193756,29.378372,4.43 1052,4.958524,206.77742,14.900274,27.988617,4.424 1052,5.2778254,213.3592,29.453587,49.403,4.409 1052,-5.503168,105.81885,17.810837,38.932953,4.39 1052,202.73721,208.29669,18.109024,27.6689,4.388 1052,-15.213098,192.11604,49.23026,122.721176,4.38 1052,137.26714,201.98048,32.481583,46.302383,4.378 1052,493.31183,228.18384,237.45178,516.02325,4.316 1052,-5.730717,217.9242,17.435501,36.04799,4.307 1052,-5.522709,139.33087,16.856277,39.369675,4.277 1052,177.5073,209.58775,21.013596,27.002945,4.205 1052,186.501,214.78722,18.953186,25.776474,4.198 1052,502.2918,160.08768,27.813477,76.731384,4.197 1052,340.32257,-11.414385,15.215271,37.657345,4.195 1052,33.008167,215.34654,21.372906,34.548264,4.192 1052,492.60626,147.03772,28.990173,81.07858,4.171 1052,332.37778,202.67807,16.217224,26.978424,4.169 1052,410.27985,175.19997,21.378845,55.777603,4.156 1052,161.40251,215.95493,20.284744,26.3022,4.153 1053,521.5436,212.2723,20.882446,49.738937,90.524 1053,505.3572,209.66164,21.718903,51.07933,52.113 1053,473.89618,204.74089,23.28711,51.31337,29.829 1053,514.0962,211.04953,21.337708,55.96219,22.353 1053,380.96432,200.04787,17.381378,41.36705,10.336 1053,364.6365,202.92041,15.917114,33.758057,6.775 1053,-5.570588,-17.356022,17.291313,43.725533,6.329 1053,-11.170729,-32.441727,29.613323,74.722984,6.252 1053,603.0566,174.1247,32.146973,113.57892,6.226 1053,-12.6799755,477.74622,31.043621,62.80542,6.217 1053,298.41455,214.01945,18.607147,28.782928,6.208 1053,622.3229,-33.984592,27.484558,76.81794,6.156 1053,419.37946,148.62015,30.193024,78.10809,6.067 1053,304.56387,217.68472,19.914032,31.876953,5.925 1053,626.4777,488.40414,21.15747,45.02542,5.895 1053,-6.5548906,489.635,19.070206,42.84192,5.83 1053,382.49933,180.55489,22.81955,61.815598,5.819 1053,332.36505,208.8748,15.289642,26.214478,5.785 1053,514.96484,195.9681,37.109863,72.75273,5.719 1053,627.05396,-19.627964,18.083984,48.28528,5.682 1053,-16.872568,-62.161236,56.370934,144.56793,5.629 1053,0.31526208,226.24231,23.048338,41.14325,5.447 1053,602.54443,-55.645126,53.05182,135.09506,5.431 1053,372.0902,201.22676,18.176544,37.92514,5.332 1053,581.23517,116.358284,28.747559,76.51339,5.268 1053,502.69742,138.9939,27.023102,88.530304,5.262 1053,339.7888,207.56062,15.468018,27.676163,5.241 1053,583.493,411.96698,71.24176,176.2038,5.235 1053,-17.213713,437.4673,55.126,136.75427,5.201 1053,422.62274,186.73904,23.900879,64.67827,5.154 1053,323.83118,210.47762,16.760803,26.851791,5.11 1053,447.6532,174.29576,27.736359,78.162994,5.101 1053,-72.99112,265.66214,201.18373,462.1959,5.061 1053,499.64963,202.20726,21.137665,49.10228,5.017 1053,407.9517,162.05467,27.281433,77.2776,4.855 1053,613.3414,455.47534,39.092407,106.374695,4.843 1053,-40.720375,367.25726,111.15119,275.2619,4.837 1053,588.3476,145.97939,29.656921,76.87976,4.83 1053,536.0747,310.21405,144.18872,343.08698,4.808 1053,314.00024,218.23262,18.794006,30.906464,4.787 1053,463.51465,176.58875,29.951355,77.79042,4.757 1053,357.0352,202.08105,16.567078,33.843964,4.742 1053,229.02072,216.23462,14.626648,24.661346,4.683 1053,562.4348,148.67506,31.146667,74.26912,4.676 1053,390.5808,170.39615,25.62857,70.22377,4.669 1053,493.41888,228.70981,237.55597,514.9215,4.569 1053,426.20084,-18.773312,18.831055,45.52307,4.473 1053,586.28534,-104.825035,74.4682,241.58087,4.462 1053,404.91168,197.70602,16.44806,44.341446,4.442 1053,490.29657,-181.16547,235.586,424.0717,4.405 1053,348.73315,206.8301,14.933899,28.565445,4.392 1053,236.43614,216.81485,14.663544,24.410797,4.359 1053,614.12115,156.30893,25.380737,88.29419,4.338 1053,486.28778,141.7041,28.270142,84.37161,4.335 1053,-4.7533665,72.52139,18.155634,44.108086,4.328 1053,428.67648,161.83305,27.059784,81.75784,4.306 1053,-4.310722,124.94092,16.764072,38.575623,4.294 1053,-3.9598584,141.06813,15.398037,37.44403,4.274 1053,323.38562,224.6502,17.724487,32.61444,4.262 1053,535.85583,213.24588,21.340393,45.550232,4.255 1054,401.85837,185.96497,21.655304,53.253555,20.815 1054,450.159,201.0795,18.347656,47.40294,9.701 1054,386.03113,191.47856,18.700317,44.65384,9.099 1054,379.86606,196.44783,17.65738,39.33087,7.567 1054,391.63528,167.06818,28.611237,72.42139,7.494 1054,403.13278,159.58382,30.261993,82.07332,7.427 1054,493.50235,190.83054,26.877228,68.27765,7.408 1054,602.33636,-57.947727,54.24823,137.39,6.891 1054,371.29144,192.97864,18.060913,37.327393,6.741 1054,589.34424,150.09836,26.838257,109.62143,6.706 1054,-5.6391373,-16.280708,18.139885,41.227623,6.364 1054,365.06497,86.39569,31.01242,66.43361,6.049 1054,622.94904,-33.61052,26.84314,73.36034,5.938 1054,-12.783338,477.80637,31.030857,62.531708,5.895 1054,-11.3631525,-31.88865,30.235561,70.184975,5.875 1054,-17.104685,-63.514996,55.931557,143.58566,5.567 1054,-6.549854,489.70557,19.034683,42.717163,5.524 1054,415.00677,168.3931,26.592072,73.1151,5.504 1054,626.6289,488.31448,20.848022,45.21176,5.484 1054,627.31055,-17.404612,17.276184,44.5178,5.412 1054,565.72003,85.00482,60.5412,192.93933,5.385 1054,-16.799532,437.51993,54.750694,136.67917,5.256 1054,583.4997,412.1728,71.25165,175.9925,5.237 1054,613.2192,454.9255,39.299255,107.49649,5.059 1054,-72.6112,266.8186,199.905,460.07556,4.918 1054,-40.465706,367.78735,110.695915,274.88092,4.809 1054,341.27527,202.40749,14.817322,27.261887,4.781 1054,348.67352,204.32188,14.302795,26.936768,4.769 1054,504.68427,193.51367,20.903137,51.831787,4.71 1054,536.33307,310.45224,143.406,342.3029,4.681 1054,369.071,113.67258,21.798676,41.952576,4.665 1054,595.26556,-46.085003,42.79193,100.20084,4.662 1054,75.288666,214.49025,32.206467,51.13759,4.649 1054,570.04034,-60.003708,57.641235,139.20312,4.648 1054,396.7651,-33.421505,29.913025,74.13495,4.643 1054,487.40646,146.32942,28.772858,87.07837,4.584 1054,491.81213,-2.4937677,18.518799,36.114082,4.578 1054,590.9126,67.718094,45.841187,189.22234,4.568 1054,378.19116,-16.92657,18.624176,42.558964,4.543 1054,488.79486,-179.79005,236.74341,424.3839,4.427 1054,-4.2043676,187.97168,15.442894,37.64795,4.426 1054,493.0339,227.2503,238.4191,516.48865,4.353 1054,374.31073,174.11386,28.584442,64.21175,4.352 1054,286.1607,190.20055,12.159485,20.321213,4.326 1054,365.15317,197.37251,16.575623,33.275192,4.241 1054,562.17413,123.51663,32.05365,106.40701,4.239 1054,554.03094,-33.092102,57.48462,128.28316,4.236 1054,269.82764,205.1514,13.657623,18.931732,4.214 1054,204.22443,207.61346,16.340164,26.578232,4.211 1054,379.81308,-13.386042,32.33133,63.254196,4.176 1054,355.774,198.70433,16.254456,30.311768,4.098 1054,562.31995,-130.39331,113.35443,284.66602,4.07 1054,377.35104,104.91051,21.620697,45.07463,4.068 1054,285.0124,205.08984,14.130402,21.374863,4.063 1054,538.29504,-58.29287,56.738342,136.91574,4.056 1054,490.21823,187.12721,21.21988,55.23987,4.045 1054,-4.389703,171.5638,15.807,39.83699,4.042 1054,490.836,-15.737158,17.148285,38.657616,4.032 1054,404.39365,51.930477,30.226074,75.18552,4.021 1054,583.6916,193.98917,31.27063,83.458954,3.979 1054,354.51877,-19.431734,19.246979,47.931812,3.961 1054,363.45688,122.02225,31.80722,65.74005,3.883 1054,350.6546,-36.430367,28.131561,81.91335,3.856 1054,619.2163,-16.549328,17.453735,40.158573,3.831 1054,293.00665,196.54631,13.680115,23.66243,3.829 1054,11.705675,201.9979,15.949276,34.93918,3.823 1054,523.56824,-13.058947,16.099243,37.41885,3.819 1054,361.63538,-19.02709,19.510529,48.067196,3.812 1054,2.0308022,-15.776968,17.9145,40.198685,3.804 1055,569.20264,205.5936,32.06897,90.60504,52.02 1055,491.9371,215.50009,19.497467,45.59149,20.418 1055,516.36365,217.636,18.60498,43.955368,19.859 1055,263.8494,221.93095,22.482452,39.074844,19.312 1055,190.02563,223.47426,23.328629,37.208603,14.789 1055,518.1404,230.30153,21.147217,44.689713,14.026 1055,509.357,190.63023,26.877014,65.272415,9.051 1055,573.7886,241.0321,23.151428,58.9209,8.04 1055,519.4955,205.88828,20.085632,44.651917,6.664 1055,-4.2928605,188.61719,17.259447,41.650864,6.534 1055,-5.564307,-19.33577,18.26382,45.387695,6.483 1055,534.54047,236.74922,24.661682,49.846268,6.352 1055,330.5388,211.61775,16.890991,30.085373,6.237 1055,-12.139851,476.74072,30.124502,64.81708,6.223 1055,528.66223,224.7512,20.622253,44.902237,6.142 1055,-10.813606,214.28584,30.2525,64.44847,5.981 1055,-10.747851,-33.26741,29.191525,72.17099,5.881 1055,622.38715,-33.938416,27.134705,77.42036,5.856 1055,89.29741,237.21913,37.22785,53.896957,5.849 1055,158.68312,260.9027,38.82457,59.149017,5.814 1055,-4.10965,28.144346,16.57934,39.39354,5.803 1055,-18.386744,-63.00084,56.40625,144.51054,5.803 1055,409.55316,210.82372,20.861908,39.28418,5.761 1055,553.559,210.29457,19.401184,34.79709,5.662 1055,-6.3955784,489.03967,19.063065,43.019226,5.578 1055,0.08176565,235.50313,25.727861,45.32985,5.507 1055,539.24554,213.45584,18.423218,38.452667,5.445 1055,603.1335,-55.474323,52.487854,140.36406,5.377 1055,-73.47408,265.7168,201.73822,462.93555,5.36 1055,612.9308,454.67484,39.610413,108.05917,5.323 1055,494.8954,201.16103,25.757202,61.878067,5.312 1055,102.35589,250.66953,26.588188,36.13916,5.304 1055,315.63632,207.53769,19.565552,39.637054,5.196 1055,626.7945,488.37726,20.492493,45.47992,5.182 1055,64.51272,234.11954,38.4909,50.462585,5.127 1055,323.6458,209.04819,19.176208,36.973022,5.113 1055,583.4882,411.59106,71.20819,176.9118,5.061 1055,-6.1560383,245.5502,19.02732,41.140503,5.037 1055,123.252495,-17.424547,17.340538,40.222126,5.036 1055,236.638,202.30554,29.318542,56.259277,4.994 1055,-4.5044794,13.469702,16.240814,37.27323,4.991 1055,-4.7801976,71.35333,17.078367,44.171135,4.965 1055,532.934,205.38943,34.633728,77.508484,4.941 1055,2.9268746,146.56076,18.285116,40.99675,4.924 1055,-3.812861,151.63663,17.021353,43.00554,4.921 1055,549.406,216.80167,29.04773,66.16315,4.9 1055,105.454094,238.25008,35.070137,54.045273,4.897 1055,17.677998,203.55164,42.1857,72.419525,4.874 1055,457.60574,211.40709,22.08548,38.841553,4.845 1055,140.51074,159.02284,16.136932,30.852509,4.827 1055,536.12085,310.7519,144.19379,341.88495,4.826 1055,-21.699697,402.7375,78.72869,174.53613,4.799 1055,144.93164,236.93356,38.71483,56.326233,4.796 1056,199.51337,219.65051,25.460236,42.01245,88.945 1056,292.72116,214.53693,29.700714,56.391235,28.166 1056,104.104225,225.64421,23.152504,40.22435,14.504 1056,588.67584,205.62471,27.141174,59.23958,10.31 1056,150.11365,229.32698,26.647644,35.193405,8.34 1056,-5.8686113,-17.568981,18.503786,45.980324,7.721 1056,93.61092,209.86868,29.76551,56.041595,7.64 1056,627.7306,-15.093752,16.088379,43.73473,7.478 1056,361.99573,202.14786,21.6156,40.770905,7.146 1056,484.08078,198.40155,28.930328,59.759094,7.073 1056,-10.557972,-32.543617,28.91508,74.65452,6.955 1056,193.89972,211.00443,39.412872,60.829315,6.735 1056,619.47217,200.7898,19.732727,45.128387,6.628 1056,504.13348,199.14383,23.729736,51.890503,6.559 1056,603.4611,-54.98514,52.73163,132.40157,6.251 1056,1.5862125,-16.037539,18.50233,44.426304,6.166 1056,90.62809,227.63007,23.49385,38.471924,6.019 1056,624.0345,-33.944622,25.332703,76.829056,6.006 1056,-8.851593,464.54633,37.452984,92.98712,5.864 1056,626.55896,488.61084,20.287842,44.954224,5.799 1056,495.96283,198.08636,22.211243,48.323975,5.797 1056,512.9421,200.80441,22.931274,48.66742,5.729 1056,219.10187,210.07178,18.571838,31.266846,5.638 1056,612.9049,456.01068,39.121094,105.13544,5.624 1056,208.52556,211.3675,19.397873,34.319656,5.617 1056,-5.896447,488.9043,18.34708,42.105347,5.537 1056,18.629929,-16.124828,33.316605,71.222565,5.456 1056,271.89142,212.5542,22.275757,35.00766,5.439 1056,36.690525,107.12209,31.209217,68.32087,5.327 1056,99.16452,203.29698,39.167923,71.1678,5.291 1056,522.7817,200.1958,32.38739,67.363464,5.288 1056,177.35104,211.10706,19.637909,30.341278,5.255 1056,-15.275185,122.40557,50.144238,137.85425,5.254 1056,-73.05676,265.97675,200.27281,462.22516,5.179 1056,331.6396,206.53706,19.051605,37.18985,5.14 1056,170.48445,210.3882,19.249725,30.021393,5.076 1056,553.81165,200.99777,20.29657,33.56555,5.02 1056,239.94789,208.10266,20.318497,33.153305,5.019 1056,469.8682,197.596,36.70746,73.63289,5.017 1056,-4.6534343,38.656075,17.436373,47.194153,5.004 1056,583.6006,411.76263,70.95929,176.77313,4.995 1056,528.106,233.7648,24.19751,36.140656,4.991 1056,227.30185,207.70554,19.156876,30.746231,4.903 1056,574.194,199.56802,31.968872,55.7502,4.857 1056,153.34494,217.10977,20.88417,31.978363,4.813 1056,545.4995,197.04565,20.815125,36.181274,4.808 1056,76.41555,219.45685,32.398834,48.93567,4.801 1056,-21.884212,402.34897,79.01164,175.35611,4.798 1056,-17.79289,-63.79574,56.429306,144.276,4.773 1056,377.8927,202.22708,18.454376,31.546005,4.766 1056,281.09277,-3.4475098,59.440643,110.89968,4.741 1056,162.39929,208.97458,19.187393,30.48404,4.691 1056,88.614044,208.2788,22.749931,36.36299,4.691 1056,627.48364,189.18924,17.060791,44.157257,4.672 1057,350.86545,220.68877,26.417328,48.713028,73.961 1057,271.66565,217.74197,24.72287,48.70578,44.785 1057,461.73434,227.80148,32.913757,60.55548,18.983 1057,529.94696,199.41072,22.455627,39.318863,12.544 1057,282.54947,222.32631,31.307678,49.82579,9.521 1057,585.6791,194.62917,20.170776,42.367477,9.449 1057,256.24698,213.1814,29.445282,54.357727,9.327 1057,488.04388,184.5626,20.193115,47.069046,9.315 1057,171.0138,99.792206,21.354767,46.654175,9.108 1057,-4.8118587,165.6684,18.39813,52.072296,8.189 1057,339.5377,216.36398,23.289032,43.651794,8.083 1057,3.1411421,208.82254,33.28692,75.78354,8.053 1057,365.0778,226.6967,23.776306,42.14879,8.006 1057,463.13492,220.49821,24.000977,41.623764,7.838 1057,522.86725,192.71532,19.567566,36.663803,7.645 1057,13.164505,202.39316,30.287128,65.67337,7.368 1057,627.10016,-19.430384,17.938354,49.519527,7.356 1057,490.23804,205.5367,17.944275,33.360947,7.356 1057,32.047203,199.86642,23.052856,44.692566,7.308 1057,201.2152,232.04997,34.390488,49.843155,7.169 1057,623.0449,-34.637962,26.780457,78.222916,7.059 1057,24.640842,204.06926,21.390652,45.340347,7.044 1057,479.53333,222.29387,22.05719,39.20015,6.973 1057,44.8745,196.59193,29.337994,54.146484,6.937 1057,-11.435883,477.46988,29.3362,63.303864,6.845 1057,543.74445,198.05698,22.213623,38.4382,6.79 1057,537.405,86.66307,34.040344,67.7271,6.753 1057,475.31683,235.43367,26.754974,47.47435,6.733 1057,-6.00528,489.01355,18.284798,41.681396,6.694 1057,258.2354,208.73662,22.82306,34.97113,6.657 1057,59.050423,103.92886,34.597786,59.658813,6.539 1057,40.90679,204.67108,21.38379,42.84915,6.452 1057,458.43808,213.76396,21.420807,40.489517,6.452 1057,1.1636472,211.05948,21.896946,46.754395,6.247 1057,524.4833,152.10205,29.73816,78.889084,6.202 1057,-4.616474,299.7644,16.554321,36.242004,6.192 1057,-11.034098,-33.1307,29.771585,73.525894,6.174 1057,-5.8536053,-19.201675,18.23518,45.375385,6.151 1057,-6.1639643,208.27339,18.865934,42.499435,6.048 1057,-5.10422,194.32025,16.549152,40.692154,5.981 1057,48.68071,200.21622,44.334084,75.70227,5.966 1057,515.02826,198.03558,18.561584,36.86821,5.961 1057,-18.848602,-61.575665,57.147156,138.65579,5.961 1058,550.4187,219.42664,28.181824,57.374695,74.566 1058,560.65234,219.98218,31.609558,58.00937,37.499 1058,69.676445,265.1082,25.777336,41.441925,12.563 1058,207.16072,209.59656,27.161392,62.98578,12.141 1058,217.77077,208.28334,21.01268,47.4653,11.083 1058,196.44936,157.50113,28.33664,71.181656,9.633 1058,533.431,219.37161,30.164307,57.095093,8.625 1058,-11.644728,480.0586,29.496069,61.73169,7.981 1058,221.54747,153.17628,26.849411,72.23224,7.937 1058,277.44897,99.48178,28.432434,62.814697,7.735 1058,524.4497,205.27275,30.967712,60.49623,7.628 1058,551.7344,206.7563,23.306152,42.148376,7.344 1058,528.1931,231.65063,24.664307,43.444153,7.335 1058,226.05237,207.4416,20.495499,42.159668,7.181 1058,-6.2289147,489.2702,18.560083,41.566467,7.136 1058,188.40227,220.109,31.966614,63.91133,7.128 1058,40.883846,215.5249,21.952423,37.21115,7.091 1058,448.84808,234.29596,35.06244,71.10303,7.044 1058,136.9478,231.45882,35.937576,60.804886,7.016 1058,322.39893,196.0542,31.97406,69.901,6.8 1058,233.66858,208.49335,19.531586,46.150818,6.625 1058,-5.3786945,-17.242674,18.153332,44.72447,6.557 1058,283.3152,205.72974,30.506134,57.580627,6.53 1058,431.45337,239.96814,35.947327,60.593567,6.501 1058,228.25989,201.9871,38.822998,75.06825,6.477 1058,27.084982,247.22575,31.20918,56.328995,6.377 1058,557.74854,209.24889,25.495483,54.506546,6.37 1058,202.0001,214.01407,21.482483,45.299225,6.268 1058,-10.5672035,-31.06415,29.869684,73.64786,6.121 1058,268.02545,207.10774,31.952728,59.85936,6.113 1058,521.1459,210.47935,24.051392,40.934174,6.091 1058,131.07278,207.74608,29.917694,60.896805,5.992 1058,133.70787,225.44421,66.247086,98.02551,5.984 1058,401.24933,238.32196,37.351685,52.535156,5.967 1058,623.0869,-33.004864,26.233398,73.97542,5.938 1058,627.19434,-18.405296,17.580383,47.066376,5.927 1058,408.95477,201.57173,23.489838,45.286514,5.925 1058,264.98062,215.95117,22.370422,40.7464,5.91 1058,257.9584,217.85713,20.88034,42.369217,5.85 1058,249.62192,214.23494,20.081299,40.87825,5.787 1058,167.0318,231.24855,25.058655,38.92662,5.78 1058,243.99503,200.63333,39.040375,76.58072,5.743 1058,616.2523,222.67412,24.359985,70.985,5.695 1058,207.7312,156.23189,23.290207,57.962708,5.672 1058,626.7254,488.28375,20.61261,45.039673,5.632 1058,-17.352879,-62.561737,56.132626,143.77019,5.566 1059,515.82513,194.60794,30.327026,72.68277,17.414 1059,410.04672,230.24388,31.86914,65.055435,16.991 1059,536.3662,198.36426,23.470459,56.715973,15.338 1059,527.37775,198.31804,23.945496,58.910995,12.225 1059,547.37195,195.12552,33.77533,64.61087,11.652 1059,249.48723,203.4062,20.556564,44.494858,11.565 1059,479.7141,194.3638,29.590546,69.171295,10.866 1059,402.6794,210.62096,32.19345,72.8654,9.095 1059,518.6753,116.151375,29.448547,78.8601,9.015 1059,561.7447,191.1553,33.665222,64.215744,8.278 1059,-3.6035168,200.28616,28.503897,84.23752,8.174 1059,349.28195,199.6147,31.73825,68.64342,7.63 1059,502.89874,194.24075,30.945496,72.56134,7.445 1059,502.46994,122.41887,30.176178,75.2944,7.433 1059,422.16833,239.05661,22.288147,38.57843,7.093 1059,224.70935,212.37506,21.3098,38.12593,6.783 1059,576.0698,196.24469,23.012451,51.233917,6.603 1059,397.63898,237.95432,32.934143,64.48035,6.429 1059,498.21216,128.44467,21.64795,46.62262,6.26 1059,242.3777,210.4594,20.247116,42.53734,6.234 1059,354.02267,189.57433,44.0632,93.114975,6.196 1059,-6.4092546,489.0977,19.008457,43.082306,6.059 1059,256.7914,199.9961,21.209473,44.183014,6.051 1059,488.37964,82.08508,22.821228,39.085167,5.994 1059,265.41727,202.19055,20.975464,41.456284,5.958 1059,488.20264,123.11479,27.235596,63.83081,5.916 1059,611.1723,-48.214478,41.544495,103.38871,5.891 1059,581.86456,190.45613,37.6463,91.863144,5.846 1059,219.22371,-7.310354,33.841354,70.481575,5.843 1059,87.88047,211.00468,37.39743,56.937943,5.835 1059,613.2417,454.0849,39.023315,106.89691,5.704 1059,175.89417,-5.894375,26.870056,102.9037,5.703 1059,587.8048,23.720377,32.28241,62.285522,5.672 1059,-17.768324,-64.46923,55.992645,149.93112,5.545 1059,233.02777,215.41583,21.13971,39.58757,5.506 1059,-5.432352,-17.111084,17.077099,41.515675,5.495 1059,580.8563,48.38414,31.184814,71.14769,5.467 1059,627.2141,-18.223621,17.352234,48.71178,5.456 1060,408.84686,206.81612,24.647552,55.33531,21.011 1060,411.97433,221.3967,30.251678,65.34906,16.394 1060,389.1408,202.03172,31.240234,65.425125,10.154 1060,426.5042,223.61284,31.710266,63.742874,9.016 1060,496.03152,208.1018,26.412506,77.92682,8.468 1060,20.047085,207.61577,39.04582,88.1794,8.17 1060,371.73856,207.2756,31.51947,62.996765,7.773 1060,509.5325,213.6817,26.640045,70.618805,7.126 1060,422.4015,221.6824,23.61856,47.138397,7.06 1060,623.0503,-33.27796,26.665222,75.38444,6.983 1060,65.62006,214.04805,20.938545,42.007523,6.576 1060,627.17145,-19.662405,17.630066,48.283783,6.443 1060,304.35416,220.76143,21.280151,44.53499,6.326 1060,512.69885,210.20026,22.242004,41.898285,6.293 1060,-6.1075683,488.24796,18.592113,44.450714,6.113 1060,436.8324,214.70183,37.295746,71.58913,6.0 1060,469.63913,202.07202,37.06433,81.16882,5.976 1060,-4.354594,187.91908,16.815746,38.892014,5.968 1060,367.92447,214.43338,24.73883,44.536896,5.919 1060,384.59796,213.49974,24.672638,48.429153,5.901 1060,613.37537,452.99814,39.549744,108.54843,5.781 1060,-5.343953,217.0577,16.780575,37.052048,5.736 1060,-12.633243,-39.839607,41.32229,100.85596,5.709 1060,-11.657179,475.02127,29.556911,66.40781,5.632 1060,-5.195671,202.67052,16.555363,37.47084,5.575 1060,626.2456,487.05374,21.423828,46.93643,5.517 1060,377.9915,165.35645,19.266388,40.676712,5.493 1060,515.63885,212.5195,38.854797,81.88733,5.422 1060,35.206715,198.63809,37.873135,82.24716,5.403 1060,453.9836,212.14163,36.72882,75.74844,5.401 1060,386.29318,174.77704,18.871643,39.38452,5.381 1060,312.93286,227.1319,22.145416,44.420776,5.367 1060,530.8161,213.14471,40.265625,79.14542,5.356 1060,57.47212,213.7474,20.970303,42.436462,5.252 1060,7.446002,201.1124,27.273357,63.196777,5.238 1060,394.3968,198.1621,21.083069,40.475082,5.229 1060,-72.62985,266.31476,200.53476,462.71637,5.206 1060,2.1948206,242.34344,18.83688,38.86975,5.139 1060,447.68396,227.83463,24.373505,48.726105,5.122 1060,490.9227,211.08923,19.759857,53.502197,5.111 1060,403.3002,204.64404,22.517975,44.433395,5.103 1060,602.53815,-58.216682,53.48535,137.39809,5.082 1060,446.28674,155.32672,27.688354,78.86525,5.041 1060,581.9945,206.40372,37.69464,86.25229,5.024 1060,71.42456,211.50981,29.535713,69.12062,5.0 1060,-2.79621,158.8021,14.467864,38.691635,4.999 1060,456.32147,231.84901,22.842804,51.55861,4.997 1060,314.32135,-20.31583,32.205505,76.305145,4.996 1060,583.2457,411.53436,71.868774,176.44183,4.975 1060,399.52972,168.6122,29.580566,71.285995,4.932 1060,28.837246,192.92511,28.222366,55.798615,4.93 1061,485.90588,223.22192,29.557129,67.901306,15.167 1061,69.27626,204.47185,37.762848,82.15608,11.253 1061,-5.097976,-17.36446,17.529716,43.45867,10.34 1061,382.08987,226.72093,28.568237,61.220993,9.897 1061,125.36076,233.25879,25.341263,42.65979,9.139 1061,57.91368,218.60655,20.207932,42.046066,8.993 1061,45.074036,208.59015,27.734863,60.720154,8.827 1061,118.200134,238.43091,29.99823,68.37842,8.709 1061,373.02667,-5.7552834,28.910095,84.88893,8.564 1061,65.622215,218.89357,21.587318,43.8488,8.293 1061,33.486115,220.53694,21.734684,41.465927,8.101 1061,461.50937,171.1867,29.722656,69.11308,7.986 1061,41.771736,218.99977,20.976875,41.468918,7.985 1061,118.357605,213.14264,35.242706,72.849884,7.741 1061,83.58349,219.67198,30.00824,63.798355,7.649 1061,616.74084,127.33593,21.946777,60.714485,7.595 1061,476.3625,162.54245,28.968964,63.753403,7.544 1061,-12.656096,476.30777,30.860611,65.19711,7.282 1061,35.126766,207.24982,40.13335,96.95596,7.167 1061,193.85667,217.27126,19.919205,47.65541,6.973 1061,20.707554,210.73137,31.424618,64.65376,6.931 1061,-9.894583,-32.363777,28.176512,72.16228,6.897 1061,565.476,223.70016,28.043823,69.051605,6.718 1061,535.8869,213.61304,27.147827,62.375244,6.691 1061,399.16837,230.85268,23.824463,48.340317,6.593 1061,2.8614426,-16.138767,17.406427,41.12675,6.548 1061,73.73213,218.9375,23.398315,45.981262,6.397 1061,579.93744,226.73456,31.154602,69.00189,6.311 1061,102.77586,230.8765,24.10672,48.771454,6.294 1061,542.67523,222.30014,28.08429,66.32257,6.048 1061,538.25854,215.25253,19.76764,33.24289,5.984 1061,501.4534,225.48506,25.433258,49.972824,5.913 1061,627.03375,-18.45289,17.848145,45.659428,5.878 1061,622.42,-33.156254,26.634583,73.78656,5.874 1061,516.192,210.77467,41.044983,69.530685,5.851 1061,317.86993,206.88396,27.81839,61.42009,5.85 1061,493.91812,221.80681,23.554047,39.581863,5.84 1061,3.1458938,213.10178,31.525429,66.511566,5.838 1061,-6.5662956,488.9219,19.3434,44.407562,5.815 1061,94.542465,226.80196,24.414185,48.176956,5.809 1061,449.13104,175.39719,21.514435,49.731018,5.786 1061,498.8823,209.94162,41.09262,69.06271,5.748 1061,80.09566,188.50856,22.29509,44.31459,5.743 1061,585.6044,244.99184,20.669983,43.54579,5.722 1061,405.76523,231.78944,27.634247,64.3304,5.683 1061,134.7478,225.90857,24.000427,42.58481,5.614 1061,50.399048,197.37267,45.73073,112.06795,5.529 1061,14.993486,208.04347,50.335197,116.54115,5.498 1061,561.15594,226.29251,22.575928,49.92874,5.448 1061,387.48645,-17.529816,30.30832,80.17798,5.389 1062,526.3774,210.71074,28.93335,65.53224,18.448 1062,-0.5299413,190.51714,22.36255,58.919846,13.226 1062,535.90564,204.56017,33.42047,66.09224,10.034 1062,68.840996,195.12549,31.263908,62.56418,9.133 1062,23.543774,276.84518,23.1664,43.096252,8.902 1062,12.114035,275.6209,32.694946,64.42453,8.77 1062,485.92218,283.30792,28.477905,74.10629,8.732 1062,-5.841207,-18.029797,18.265089,44.80919,8.363 1062,142.11298,207.45493,30.32251,58.31958,8.104 1062,55.703526,186.5896,23.123013,48.41394,7.926 1062,1.9067752,274.12338,22.848207,51.91092,7.888 1062,26.020214,277.77493,32.652874,59.35739,7.548 1062,-10.376564,-32.706635,29.024939,75.548874,7.399 1062,81.82092,205.24182,41.095528,78.28204,7.368 1062,82.064926,195.26706,31.308823,59.88852,7.184 1062,-6.1553073,277.07523,20.997068,49.11441,7.095 1062,95.37982,196.27414,22.949951,45.938324,6.695 1062,-4.2615185,186.32349,18.967974,47.520706,6.459 1062,331.1366,215.25334,19.940308,39.265244,6.359 1062,402.77362,203.73105,18.59851,37.605743,6.297 1062,2.1839106,-18.65292,18.301685,44.745377,6.251 1062,538.1937,178.94347,31.634338,66.16019,6.238 1062,148.46892,215.27107,31.747757,85.0186,6.164 1062,57.851074,210.43929,35.206253,66.36537,6.099 1062,66.09378,206.3615,42.894264,88.4836,5.943 1062,63.620842,191.26074,25.563957,54.350006,5.935 1062,393.52124,206.72946,20.012817,38.41913,5.903 1062,-12.665239,476.78857,30.823822,65.01648,5.814 1062,622.43335,-33.66337,26.725952,75.04409,5.684 1062,126.20151,201.46458,29.397491,64.920364,5.683 1062,-6.2539096,489.2033,18.66569,43.898315,5.664 1062,626.9196,-18.665495,17.817627,47.08867,5.586 1062,603.0909,-56.027683,52.983704,133.71677,5.586 1062,378.58356,-8.1621475,32.10797,77.856895,5.574 1062,104.88033,193.27986,21.061867,44.01886,5.531 1062,626.53784,487.913,21.20459,45.794952,5.481 1062,450.87833,227.18826,31.996918,69.859344,5.474 1062,51.697674,196.91376,31.585827,65.247314,5.416 1062,40.611233,290.68295,21.7094,38.423706,5.388 1062,362.91962,70.79735,30.129639,93.569565,5.383 1062,-17.773834,-64.592834,56.226616,142.6505,5.38 1062,613.3764,454.47324,39.55365,107.207184,5.285 1062,380.29486,221.40454,28.603271,55.95294,5.253 1063,537.58734,179.22096,28.018005,71.44078,35.764 1063,571.7255,192.60242,30.141052,71.95331,15.741 1063,407.42285,206.94069,22.435486,46.90503,14.982 1063,559.08905,194.72166,29.498047,65.80937,10.274 1063,345.85065,218.0754,22.388184,47.67003,7.975 1063,548.27136,181.9504,28.72461,75.3347,7.744 1063,622.9601,-33.653927,27.091125,76.693306,7.71 1063,354.9583,224.21803,28.740051,53.30168,7.028 1063,627.18774,-20.029068,17.787537,49.296364,6.819 1063,429.1834,188.56357,28.220581,63.44722,6.689 1063,425.66724,205.67142,22.931976,44.903183,6.637 1063,-5.745945,-17.93671,18.007278,41.345833,6.578 1063,405.63715,219.96323,30.461243,57.3851,6.518 1063,155.26529,227.54054,29.732178,62.643356,6.411 1063,29.339947,181.69572,31.815311,66.671555,6.314 1063,124.06993,203.9756,29.881165,61.783463,6.007 1063,526.68713,176.79953,50.68164,110.918945,5.922 1063,-6.3556285,489.12256,18.6254,43.898804,5.797 1063,85.2929,197.91327,37.262634,85.301575,5.702 1063,580.91614,193.37549,36.735107,89.513,5.611 1063,-9.329668,463.30252,37.952343,93.68271,5.604 1063,1.3642955,178.24034,19.562725,42.402374,5.507 1063,16.518343,177.85854,51.64496,124.60362,5.444 1063,613.1713,453.643,39.971497,107.504456,5.436 1063,-12.66418,-40.201782,41.62303,98.86305,5.399 1063,626.3597,488.54526,21.522339,45.6232,5.322 1063,414.64,202.0281,22.802368,47.112305,5.313 1063,123.42648,205.56891,20.505615,42.27675,5.286 1063,602.7631,-57.821342,53.459534,135.55322,5.25 1063,217.43423,218.66646,19.241302,32.620605,5.242 1063,319.27182,219.88446,26.577148,63.90863,5.225 1063,-72.6565,266.3676,200.84662,461.86945,5.166 1063,57.846622,197.00507,20.83009,39.34767,5.131 1063,475.83362,223.27858,30.252258,55.793106,5.129 1063,192.38054,226.06851,24.005417,46.803223,5.065 1063,329.38248,212.69191,20.490845,42.361282,5.059 1063,143.12595,212.429,28.406158,57.619217,5.041 1063,14.287954,180.98096,27.679125,72.83487,5.005 1063,583.10156,412.39297,71.6391,175.48691,4.982 1063,594.5576,-46.00404,44.07245,96.02455,4.95 1063,580.58264,242.05817,29.540588,72.75641,4.923 1063,163.09389,210.28622,28.52977,52.69098,4.912 1063,617.2516,253.71785,22.409668,59.671585,4.908 1063,-1.294533,329.45642,30.188175,87.09491,4.902 1063,50.73506,216.72818,33.31832,83.25476,4.807 1063,-40.46932,363.21707,111.37753,277.31027,4.799 1063,2.602456,-16.770454,17.956795,39.35572,4.766 1063,536.2019,310.05737,144.16443,342.42334,4.756 1063,499.58096,197.65184,41.85251,82.013565,4.752 1063,153.68112,220.94902,23.0251,40.391342,4.751 1063,500.78967,248.03159,29.992798,61.601196,4.723 1063,251.7833,184.80006,16.974457,31.080887,4.712 1063,35.4172,184.95761,39.30797,92.56598,4.696 1064,150.65321,216.57837,36.220886,73.6579,20.694 1064,363.47363,218.98357,28.687347,63.943344,12.773 1064,12.724341,206.91281,32.32246,60.184753,8.771 1064,45.010483,214.25613,31.496902,63.066864,7.967 1064,-5.601655,184.00333,19.020947,43.73854,7.728 1064,1.183939,198.47064,20.755022,43.500214,7.673 1064,4.1903915,206.65062,38.02987,100.387955,7.496 1064,31.49828,211.42023,25.075481,42.576706,7.427 1064,128.96979,213.54845,21.839508,39.310226,7.229 1064,95.862206,213.25589,23.880081,39.5607,6.972 1064,623.1403,-33.270386,26.84845,76.45207,6.626 1064,-0.19548297,216.86661,23.39475,48.054718,6.463 1064,6.711302,189.48648,29.74843,61.783936,6.196 1064,134.90553,210.42227,31.853928,64.03372,6.064 1064,618.72327,111.40132,20.799194,65.94609,6.056 1064,17.51463,210.38412,40.444088,86.866425,6.046 1064,60.751,214.02751,30.463753,63.858597,6.02 1064,575.8655,208.2462,33.2594,68.91887,5.949 1064,409.9134,231.43816,20.359467,40.796463,5.824 1064,430.828,212.0581,27.343994,60.51062,5.774 1064,81.04845,213.60298,34.803238,60.15114,5.755 1064,-12.677492,-40.174625,41.33796,101.42006,5.681 1064,626.9804,-18.988108,17.755798,48.342525,5.656 1064,-12.79523,476.8191,30.42937,64.59161,5.635 1064,434.10028,202.43481,21.585419,40.443268,5.611 1064,40.071598,217.01637,24.050861,45.666306,5.603 1064,545.8101,214.6679,42.987976,74.35231,5.58 1064,419.34906,63.405876,30.861023,77.654884,5.559 1064,482.20667,220.308,43.269653,67.08342,5.529 1064,529.826,205.50601,44.053223,72.3725,5.529 1064,613.07544,454.05643,40.047363,107.164154,5.51 1064,450.47025,219.09167,42.01651,67.76532,5.473 1064,625.979,487.88663,21.944885,45.977753,5.441 1064,582.8809,212.46494,38.699524,83.14261,5.406 1064,121.71227,228.28253,20.637306,32.896667,5.399 1064,386.16693,229.84846,20.720642,38.547836,5.392 1064,344.4392,222.40479,22.041992,45.49939,5.371 1064,-2.5323796,173.49042,28.53801,66.73508,5.332 1064,-6.470047,488.93997,18.72086,44.017242,5.229 1064,376.44928,229.1187,33.6344,61.014755,5.212 1064,-72.78272,265.55383,201.3822,462.90723,5.177 1064,602.209,-57.460175,53.79834,134.71703,5.174 1064,613.57477,218.36566,24.947693,79.06213,5.159 1064,100.06278,204.61565,39.65383,66.842026,5.149 1064,515.28723,218.03072,42.71161,68.44591,5.112 1064,304.7225,213.27048,22.947815,44.49362,5.11 1064,122.85785,209.64961,20.804764,37.74527,5.099 1064,513.61444,186.34854,44.964294,77.91879,5.086 1064,435.18768,204.01596,41.851074,73.536194,5.065 1064,24.270744,209.39693,23.527382,37.15219,5.052 1064,583.0757,411.81754,72.202576,176.52408,5.01 1064,563.30414,218.83488,40.55298,82.28822,4.988 1064,562.4145,213.17715,20.832825,38.88951,4.974 1064,33.95568,217.75316,42.72596,95.498,4.959 1064,326.30252,220.11763,28.87619,56.169876,4.951 1064,121.11153,241.3229,19.917145,29.099945,4.947 1064,535.46185,309.90244,144.789,342.512,4.944 1064,600.3862,191.79338,35.893005,96.18956,4.936 1064,619.00433,100.25209,18.502014,44.08992,4.927 1064,394.0689,231.24121,20.718048,36.60843,4.909 1064,350.3225,223.65506,31.526367,65.857666,4.896 1065,612.871,190.00658,25.468567,73.21266,12.136 1065,449.56894,272.2694,32.621674,75.484924,8.67 1065,403.99826,206.22159,16.691467,42.97026,8.352 1065,533.5266,29.496002,28.329529,70.58525,6.912 1065,-2.3479104,203.67506,29.336473,74.36418,6.548 1065,97.53879,220.40329,32.05539,74.18231,6.384 1065,448.76825,270.56522,22.94748,40.600555,6.381 1065,-12.707328,475.76538,30.849915,64.86902,5.924 1065,627.28876,-18.322605,17.23706,47.796013,5.883 1065,-16.980057,-63.16763,55.440598,146.62593,5.765 1065,622.6946,-34.130566,26.970459,76.07516,5.737 1065,473.1637,262.50134,22.224487,35.838806,5.692 1065,23.935848,217.36015,23.264805,38.22998,5.667 1065,508.4631,227.0135,29.213165,69.57497,5.509 1065,436.74664,264.92078,30.512634,56.583923,5.492 1065,613.32965,453.56436,39.666565,108.03299,5.456 1065,602.6383,-56.578323,53.374573,135.31616,5.403 1065,352.4968,223.81172,22.246521,45.103317,5.366 1065,44.69123,212.15372,31.21405,57.741547,5.264 1065,374.41684,232.09746,24.194458,48.937424,5.24 1065,16.140816,221.66197,23.706573,39.254227,5.232 1065,80.354836,211.07317,23.712654,46.642105,5.116 1065,618.3707,298.605,18.303772,37.940125,5.114 1065,-6.5182376,489.08328,19.14169,43.724884,5.104 1065,-2.7362583,192.35028,15.46259,35.579086,5.094 1065,513.19604,222.44754,41.196594,89.81488,5.084 1065,616.5936,158.4094,24.814087,83.47746,5.078 1065,537.19214,32.67232,19.80304,38.339855,5.065 1065,-72.863045,266.61627,200.93048,461.70673,4.977 1065,476.59988,251.90749,29.970276,51.631424,4.976 1065,417.31097,258.16666,34.14505,61.752686,4.958 1065,583.1844,410.3257,71.87732,177.6583,4.945 1065,626.40607,487.2958,21.568054,46.207367,4.944 1065,2.9368448,116.39049,31.975197,63.746704,4.944 1065,595.4086,192.12155,43.909485,112.20563,4.943 1065,-11.395836,-34.582287,30.165905,75.94166,4.903 1065,-5.5450892,-18.23901,18.192833,45.0885,4.891 1065,493.30063,236.81204,32.34561,64.380005,4.874 1065,536.2214,309.68744,143.78046,340.33124,4.858 1065,18.093437,210.4587,33.806015,60.083786,4.854 1065,-40.5287,365.17786,111.29337,275.2262,4.769 1065,431.74115,267.79865,23.737915,42.51242,4.73 1065,85.36186,211.99251,32.421486,66.70897,4.72 1065,155.49313,69.90163,31.906174,66.35579,4.714 1065,585.6039,-103.265976,75.61926,238.13068,4.651 1065,3.9287162,180.3252,18.177782,34.886307,4.631 1065,7.619362,218.63477,23.15255,44.875305,4.616 1065,-3.2365153,175.72192,16.37223,36.807343,4.608 1065,600.75037,162.68976,35.72943,93.35254,4.563 1065,548.2983,220.82231,41.156555,95.214676,4.511 1065,579.6648,-15.61045,31.056763,61.94997,4.511 1065,-5.6230297,271.0227,17.28064,35.948425,4.497 1065,529.543,222.18933,42.62195,92.04169,4.476 1065,493.98016,229.80035,236.83374,512.1699,4.464 1065,358.0173,216.99469,26.65741,57.358948,4.46 1065,384.87738,111.73846,22.454193,54.570564,4.451 1065,258.7924,225.26396,18.25418,27.098389,4.387 1065,51.822952,201.18063,40.21884,75.72885,4.387 1065,14.563322,209.51884,51.435356,119.62099,4.38 1065,489.96948,-180.76859,235.59558,424.16376,4.378 1065,32.525703,220.20097,23.63198,41.27385,4.365 1065,583.1961,184.29195,38.506653,79.159775,4.35 1065,2.1510422,228.68352,19.572466,44.78325,4.35 1065,594.46924,-44.368908,44.42206,95.36169,4.346 1065,362.9923,-17.448845,17.136719,42.697823,4.344 1065,-18.604698,431.31793,55.5512,145.08514,4.33 1065,603.3517,223.51218,51.351013,139.81552,4.314 1065,573.47723,-17.657288,52.325623,127.44607,4.286 1065,562.7937,214.38489,41.164246,88.89923,4.277 1065,442.32697,265.40768,19.811127,35.861298,4.275 1065,186.72646,153.2708,20.342209,37.133926,4.273 1065,555.5542,-32.973064,56.576965,121.6236,4.243 1065,574.68866,199.30737,50.054565,128.06854,4.23 1065,254.48515,184.36981,13.044083,26.951202,4.217 1066,375.30338,210.74088,29.666046,69.37247,26.611 1066,433.26047,209.0222,19.391022,44.797424,9.066 1066,477.4078,195.28084,28.223145,72.59465,7.668 1066,428.88748,209.85097,15.431213,34.123474,7.643 1066,455.88345,187.91534,25.292969,67.084564,7.065 1066,348.07843,37.74377,28.361023,91.48985,6.682 1066,-5.1305556,-16.183714,16.499346,43.310513,6.241 1066,480.41272,279.0353,36.47406,79.83981,5.994 1066,439.05206,211.26753,22.031921,46.15709,5.942 1066,627.3658,-16.978516,16.733093,44.90877,5.84 1066,-12.568565,477.7927,30.8046,63.74289,5.811 1066,-6.4616337,489.12747,19.008823,43.712982,5.796 1066,571.57294,-13.527742,16.021912,37.07885,5.658 1066,390.06305,217.1037,22.811646,50.753235,5.62 1066,-16.439316,-62.33976,55.35279,143.52594,5.595 1066,451.0176,199.96254,19.723541,49.706192,5.52 1066,465.87964,206.90845,21.640686,50.9769,5.51 1066,602.51074,-54.236526,53.1864,135.12941,5.475 1066,-11.480752,-32.68856,29.417824,75.58879,5.452 1066,-4.6584215,183.41829,17.822422,47.31665,5.439 1066,412.86502,72.99573,28.384216,69.68533,5.393 1066,613.4265,452.8468,39.622437,108.728516,5.229 1066,486.2411,206.21928,25.973145,85.67146,5.223 1066,328.03818,208.87006,24.83075,44.017,5.117 1066,626.31445,487.59103,21.367065,46.000214,5.1 1066,556.40955,-10.84618,14.618225,34.519043,5.081 1066,-73.14835,266.22208,201.06363,461.8441,5.052 1066,511.1827,127.980156,29.694427,71.35462,5.026 1066,564.1848,-11.319993,15.322998,35.35874,4.973 1066,623.0974,-33.80131,26.105103,74.00812,4.844 1066,-21.772997,401.83395,78.925285,175.01883,4.821 1066,439.03986,194.82416,33.86371,80.81192,4.789 1066,386.44864,207.14711,19.239807,42.842392,4.733 1066,411.68463,224.99739,19.743958,40.33519,4.724 1066,619.62604,-17.24337,16.973877,41.624996,4.714 1066,315.00858,202.39325,33.23694,62.51767,4.694 1066,141.92969,210.80647,28.979126,60.311203,4.671 1066,583.90735,408.1891,71.18628,180.54138,4.663 1066,420.88742,213.73,18.917938,42.53514,4.646 1066,585.6492,-102.836334,76.19531,236.3539,4.639 1066,-4.829385,165.10165,18.358324,41.767654,4.538 1066,3.3887177,-12.735092,15.203209,39.477966,4.537 1066,536.97833,311.84964,142.4248,340.9454,4.5 1066,-9.306161,161.47246,29.268337,68.115295,4.422 1066,-7.2984734,171.25777,37.382957,97.19908,4.397 1066,404.29932,200.29985,15.476746,29.612946,4.371 1066,540.3439,-11.2552805,15.188782,34.98659,4.335 1066,489.50323,-179.84566,236.29462,423.74225,4.311 1066,332.17047,203.95349,30.907257,60.546387,4.301 1066,548.6639,-11.048071,14.870544,34.420208,4.294 1066,395.0995,206.91226,16.91449,38.514816,4.275 1066,456.6003,198.96786,34.968475,94.67795,4.266 1066,474.7046,194.8898,21.408203,51.805588,4.263 1066,368.74982,200.28886,26.571106,62.61458,4.259 1066,361.56998,87.498825,21.132385,46.6342,4.238 1066,204.65775,232.50526,29.92424,55.37953,4.226 1066,493.39093,227.1318,237.23071,515.6913,4.221 1066,1.2556994,173.95807,21.110271,45.520508,4.209 1066,420.12344,199.59792,15.78418,30.79921,4.207 1066,170.91772,222.1597,18.778198,33.911407,4.191 1066,424.70197,213.5271,26.091797,62.804688,4.124 1066,413.40024,209.5809,14.118011,30.851715,4.117 1066,579.16754,-0.76873016,17.935486,35.250927,4.072 1066,320.6856,205.40756,22.826233,38.5428,4.07 1066,524.1505,-15.336441,16.249756,38.602905,4.04 1066,532.30963,-11.957501,15.386963,35.762157,4.029 1067,347.54266,32.174328,32.000366,93.23207,12.217 1067,456.91617,209.59727,22.217682,45.54091,9.347 1067,100.0808,206.91357,31.116585,59.090088,8.765 1067,482.36847,198.4288,21.944122,51.533768,8.743 1067,-5.242753,-19.009966,18.021297,44.04055,8.602 1067,76.35541,201.27164,31.109657,59.398132,8.261 1067,115.27655,207.53546,30.408966,59.202545,8.077 1067,386.79468,215.62917,22.043182,42.80629,7.941 1067,-10.325754,-32.49438,29.166521,70.61475,7.497 1067,126.15803,213.51166,33.01554,67.942505,7.295 1067,433.7541,227.53679,32.939056,73.77919,7.098 1067,83.855515,202.06267,41.10991,77.8174,6.968 1067,212.11107,216.2044,27.566696,60.030243,6.968 1067,-17.384727,-64.0758,55.254135,141.0036,6.902 1067,-12.118553,475.87628,30.046112,65.53113,6.704 1067,443.42404,213.82776,30.189514,63.56311,6.298 1067,627.4926,-17.679476,17.084473,46.493652,6.08 1067,363.93112,34.176548,27.428131,79.57695,6.079 1067,409.09866,220.82126,20.716736,45.003235,6.008 1067,-6.2190304,488.56787,18.616138,44.435425,5.902 1067,451.96332,208.37831,17.897827,35.053818,5.899 1067,-3.4177673,172.93945,16.068306,38.72577,5.889 1067,459.09222,206.86954,30.412659,64.2634,5.866 1067,88.68945,214.72617,23.236359,49.333588,5.698 1067,33.49076,213.60408,34.725937,74.956894,5.673 1067,143.79218,225.4244,34.33838,57.97206,5.641 1067,485.3277,196.91315,29.004456,70.50055,5.635 1067,510.00592,-34.71398,29.268738,75.21097,5.45 1067,603.24255,-56.13124,52.776733,136.88423,5.394 1067,62.465748,197.8609,32.763515,60.031494,5.393 1067,441.6219,214.77295,20.984772,44.085632,5.359 1067,469.66602,201.0296,37.276276,81.250916,5.351 1067,613.3004,454.59497,39.67627,106.574585,5.331 1067,74.71686,196.39487,21.349197,32.193558,5.314 1067,-6.0436335,217.0632,18.547306,42.104218,5.232 1067,595.2329,242.62044,31.649292,63.8817,5.206 1067,563.0968,215.44743,19.701172,37.922348,5.203 1067,-3.9429517,157.90692,15.76223,37.94307,5.138 1067,139.02208,215.35593,33.034744,49.016785,5.086 1067,472.9343,230.26152,22.372223,42.510056,5.071 1067,-72.5056,265.43085,200.64424,463.58002,5.069 1067,623.1356,-34.328773,26.387451,74.97264,5.038 1067,376.52744,201.62617,26.016327,57.046677,5.014 1067,569.8031,248.67465,32.165405,71.179016,4.996 1067,2.210381,-18.982187,18.39746,42.332638,4.983 1067,583.1542,411.23935,71.69946,177.15872,4.977 1067,337.9372,218.83702,21.302063,38.854874,4.92 1067,64.07382,190.39424,50.56298,100.85881,4.909 1067,555.2955,217.22209,18.578186,36.685028,4.894 1067,-4.7117476,76.45266,16.25063,39.450485,4.843 1067,1.7977625,178.73364,17.1264,35.82167,4.81 1067,616.39246,180.78645,21.584167,54.528458,4.765 1067,1.9476455,248.44362,19.197157,32.23503,4.747 1067,-21.73276,402.15588,79.10658,175.03735,4.739 1067,536.1315,310.22534,144.02344,341.91992,4.738 1067,96.27649,196.84892,47.989044,104.13295,4.73 1067,315.5112,205.06685,29.733124,58.375076,4.723 1068,487.97998,210.7514,23.61029,48.99054,28.221 1068,1.0192251,212.9177,25.548656,79.94083,21.317 1068,402.56537,217.03003,20.03653,41.277527,17.181 1068,347.39343,26.0057,31.777893,93.45358,11.22 1068,14.021809,214.28488,24.647495,47.56299,9.727 1068,7.7140102,213.85721,34.59526,75.64987,9.139 1068,-3.9500797,207.24525,17.020578,38.02957,9.03 1068,-0.7150543,64.030975,28.307621,66.16756,8.828 1068,431.7826,220.6705,24.076843,41.451294,8.715 1068,-8.168438,207.27533,27.698248,72.131805,8.522 1068,137.68732,214.5889,32.767548,62.087494,8.373 1068,418.2509,216.57619,19.490326,41.254715,8.11 1068,484.3608,221.44109,29.899261,66.379715,7.967 1068,-5.6317472,-19.516245,17.844967,45.145927,7.651 1068,505.61194,209.09212,21.69165,45.521347,7.565 1068,406.56104,224.64824,23.61853,43.306015,7.298 1068,613.32294,452.67664,39.274414,108.95593,7.246 1068,23.032299,215.22289,25.767628,43.387527,7.179 1068,513.7047,204.68872,21.187927,46.006165,7.119 1068,177.96889,221.16971,18.79097,34.95999,6.929 1068,622.84247,-34.191853,26.72992,74.2592,6.699 1068,626.98914,-18.612158,17.583252,46.592884,6.667 1068,-10.629153,-32.47882,29.04435,70.91099,6.565 1068,-6.0734777,488.92328,18.573975,43.285706,6.533 1068,-3.9017546,192.94542,15.827027,34.28453,6.394 1068,3.1701655,210.99759,18.647495,36.26346,6.315 1068,362.92072,24.191631,27.34137,81.216064,6.194 1068,-11.827344,476.50256,29.520557,65.16339,6.145 1068,-6.962905,222.42992,36.71537,104.574875,6.102 1068,470.22733,214.57635,29.699432,59.708008,6.039 1068,38.92837,214.307,26.126148,42.661743,6.028 1068,120.65831,207.66359,30.25235,69.843124,5.976 1068,385.35306,213.03387,19.223724,41.387604,5.919 1068,169.31868,222.73338,20.594269,34.91774,5.904 1068,-17.533293,-65.52623,55.5011,144.63939,5.882 1068,425.7279,217.37923,20.18988,40.75914,5.731 1068,516.18097,-35.318367,30.946838,70.162964,5.71 1068,194.9922,205.44911,17.343277,37.213104,5.62 1068,619.05786,-9.045697,20.17212,45.094875,5.455 1068,11.364802,209.83672,16.240578,27.37033,5.394 1068,2.9508698,-18.021042,17.344734,42.1921,5.229 1068,521.43427,207.47264,20.753235,43.967102,5.215 1068,-10.367766,186.91995,27.589397,63.262863,5.206 1068,-72.86635,264.54395,201.04295,464.03967,5.177 1068,603.1407,-57.028625,52.703735,139.11322,5.142 1068,-4.1627645,237.8299,19.1338,56.92511,5.109 1068,466.9351,208.96066,17.895538,37.015045,5.039 1068,19.280918,207.7833,37.306816,86.61743,5.003 1068,583.72906,411.74942,70.94141,175.68698,4.988 1069,439.44775,222.57268,24.06485,46.98912,28.03 1069,471.53693,210.80487,27.279144,63.449646,18.426 1069,401.22186,216.48708,22.148956,43.91844,11.503 1069,532.6902,208.66357,28.382324,60.470337,11.318 1069,497.45343,216.73935,21.198425,46.716644,11.115 1069,330.57062,17.453,34.799866,91.77333,10.075 1069,430.35648,228.68497,31.894836,58.834778,9.572 1069,475.44672,208.25874,19.407135,43.111206,9.315 1069,408.24365,224.91243,21.662537,40.21428,8.466 1069,100.53331,204.4235,30.811462,59.395477,8.109 1069,347.03326,215.47256,18.797363,46.304047,7.881 1069,425.2927,212.34894,28.08554,61.702606,7.29 1069,141.75435,218.15948,30.928421,61.260895,7.219 1069,521.06494,208.33527,27.134094,63.926453,7.077 1069,-5.7384305,489.21634,17.857754,42.720917,6.823 1069,482.8648,215.0594,31.848267,67.96855,6.76 1069,79.3845,217.67752,23.854881,38.216278,6.595 1069,504.01334,204.76175,34.46286,72.58768,6.563 1069,177.85019,215.40063,24.067871,40.357407,6.518 1069,618.90894,212.37332,20.719177,48.24527,6.467 1069,414.35522,211.87447,27.081177,53.425217,6.445 1069,530.49084,224.95296,35.29358,66.81001,6.28 1069,385.02563,216.10962,22.367615,50.46768,6.123 1069,-5.257439,-16.668873,16.60666,42.434875,6.086 1069,-8.826489,463.87006,37.62861,93.008606,6.068 1069,544.94257,205.7057,21.568665,45.838943,5.974 1069,-17.000921,-62.812687,55.480614,145.13554,5.902 1069,405.8398,198.15384,26.199432,59.729187,5.882 1069,-4.644688,171.78757,16.877092,38.117706,5.834 1069,115.324295,209.5705,32.06041,65.313385,5.734 1069,69.707634,224.5676,25.69149,41.79242,5.709 1069,105.738144,201.54851,22.57338,37.738266,5.67 1069,627.5615,-17.475252,17.363953,45.68719,5.62 1069,418.5581,205.19135,20.1651,41.65718,5.607 1069,623.12177,-32.450123,26.576355,73.35485,5.58 1069,-11.361604,-32.211784,29.25552,73.88116,5.531 1069,505.5255,213.06253,17.455078,34.62274,5.503 1069,79.02936,230.64032,23.952469,42.52542,5.424 1069,355.12097,191.42308,17.507538,41.765717,5.417 1069,492.92844,212.75764,16.168518,34.99359,5.349 1069,613.0191,454.61392,39.758728,107.964935,5.329 1070,500.22342,203.93842,19.968597,50.455933,48.852 1070,574.79004,213.84323,27.65149,67.81198,41.323 1070,478.89297,226.02985,21.67215,46.157898,33.227 1070,431.41644,213.10942,25.643616,53.849777,28.566 1070,352.74872,209.03761,23.157898,56.375412,23.823 1070,416.5709,213.27573,24.2565,54.529602,19.527 1070,590.65466,214.12012,26.498413,71.8689,18.76 1070,601.49164,201.52925,30.832947,87.83861,14.645 1070,571.0634,218.49562,23.066162,46.077957,12.239 1070,421.38434,202.93039,30.219818,57.943542,11.048 1070,492.51736,205.53265,19.556915,49.107483,10.671 1070,473.61768,209.37424,22.678833,49.326996,10.608 1070,601.6064,208.57603,20.837097,55.537216,9.378 1070,613.5182,212.1665,26.229614,84.39313,9.093 1070,442.65164,204.10396,31.030304,64.56209,8.137 1070,-5.507467,-15.280713,17.166264,40.517517,7.818 1070,584.22656,211.34491,22.55133,49.55844,7.771 1070,558.5096,207.38165,30.372131,57.48703,7.738 1070,407.74927,216.17542,25.970947,61.95581,7.724 1070,481.37573,204.57703,19.709412,44.86862,7.348 1070,551.6686,203.02112,21.340088,42.308167,6.933 1070,393.36423,206.70209,24.332672,60.220184,6.66 1070,-11.437388,-31.529888,29.917103,72.22122,6.625 1070,475.2493,196.02596,18.690338,39.848648,6.479 1071,571.1518,225.85204,31.648193,74.1086,67.122 1071,462.2972,210.1935,29.793823,65.26573,65.202 1071,387.88666,208.96748,34.148315,77.151596,29.054 1071,447.79053,211.01523,30.637207,70.71771,14.168 1071,371.34637,204.0361,34.405334,74.67789,12.219 1071,50.88141,204.99704,32.07972,67.67734,10.612 1071,64.04529,207.43942,23.770836,48.60202,9.773 1071,550.20776,227.85648,26.98816,67.683044,9.326 1071,560.37286,221.45084,28.233276,75.68375,9.031 1071,520.9079,180.5211,22.820679,55.36862,8.987 1071,488.76184,217.06886,24.016357,56.902786,8.251 1071,40.489,212.54778,24.70256,44.434647,8.088 1071,-5.8850355,-16.154984,17.77256,40.23696,7.802 1071,465.89725,193.74696,29.728546,59.938385,7.694 1071,475.5421,214.74617,30.482544,74.23656,7.507 1071,503.59402,189.58186,21.354889,49.654037,7.358 1071,167.35435,212.805,26.897263,65.66983,7.154 1071,-6.246828,488.5982,18.898987,43.18463,6.98 1071,314.58514,203.72086,18.273773,37.36975,6.975 1071,364.49274,193.61847,30.341583,68.37558,6.915 1071,525.96375,171.082,29.260803,68.60376,6.748 1071,-11.597642,-31.770107,30.31989,70.77674,6.569 1071,553.8439,187.56891,19.916138,41.677002,6.457 1071,393.92166,201.8895,22.140533,51.811157,6.347 1071,514.2089,193.38916,22.644348,51.46199,6.306 1071,87.788124,211.9214,30.772278,65.0457,6.282 1071,578.04285,213.03404,39.908752,82.68846,6.257 1071,72.46827,204.85606,22.333588,41.696625,6.128 1071,498.06094,198.51326,19.91507,45.977097,6.009 1071,120.56981,210.03712,21.279434,40.874527,5.981 1072,459.00568,208.13345,58.662537,134.70163,36.429 1072,518.81964,205.9147,22.29663,51.937378,30.132 1072,582.22736,229.63101,31.663147,78.028595,29.968 1072,619.21234,206.0292,21.488403,69.59018,22.471 1072,62.062325,208.01129,28.547997,61.73221,12.586 1072,468.73364,215.60008,30.094513,70.3589,9.709 1072,517.4602,195.90906,34.8479,85.21484,9.439 1072,403.69006,157.72467,28.25119,70.59987,9.427 1072,581.4407,186.7149,27.244202,68.45671,9.001 1072,181.95467,213.7608,28.444962,63.383606,8.976 1072,554.90656,228.95157,31.592896,61.325073,8.81 1072,19.398853,215.97049,29.790287,61.421204,8.19 1072,6.352378,210.7815,28.771324,66.349304,7.906 1072,623.0737,-32.928337,26.382324,70.53591,7.74 1072,72.49451,205.7036,21.017647,50.181305,7.698 1072,473.60632,214.2496,21.691376,42.02411,7.097 1072,498.963,206.07367,19.482483,38.294907,7.053 1072,414.65125,207.42688,30.215515,64.09607,7.022 1072,502.2337,200.37047,39.897217,96.02284,6.919 1072,-6.4985585,489.37082,19.193289,43.831024,6.76 1072,627.3469,-18.043823,17.22754,44.220535,6.431 1072,397.07596,173.82697,29.587128,80.61911,6.404 1072,-6.115714,-17.198206,18.180029,42.03468,6.396 1072,535.43896,197.37161,35.660034,87.92856,6.371 1072,590.563,226.43767,24.119263,48.68416,6.275 1072,-12.07988,477.97107,30.039135,63.69751,6.153 1072,465.87833,213.26439,22.304169,48.378647,6.113 1072,80.78376,206.80734,22.253242,47.442,6.106 1072,452.27536,221.06612,33.337067,80.15849,6.093 1072,2.057799,221.63887,21.218775,45.85176,6.062 1072,481.34998,218.08485,32.685852,82.10933,6.032 1072,37.357517,210.3345,30.183788,67.158966,5.922 1073,462.44064,210.90051,40.774048,95.18677,50.545 1073,485.11377,211.56056,32.7359,72.72905,33.416 1073,575.61145,202.5939,28.227783,68.423065,22.675 1073,378.4886,192.60057,21.214203,48.88475,14.232 1073,386.30984,212.10342,32.736755,67.53958,11.325 1073,585.8532,205.18176,30.523254,72.372345,10.282 1073,379.58102,196.761,29.0849,69.350876,10.107 1073,496.45676,213.41505,33.57138,66.60823,9.414 1073,493.8598,203.87447,26.955505,54.795242,8.518 1073,45.502495,216.97865,29.142601,54.822006,8.434 1073,387.65613,168.64044,32.05548,76.83484,8.355 1073,11.917363,217.72502,29.453392,64.10658,7.656 1073,574.8048,188.00485,47.418823,134.06845,7.361 1073,-5.4364066,-17.0484,17.198128,41.15636,7.014 1073,399.64587,230.10472,23.570526,49.77614,6.994 1073,557.2426,198.75443,31.472717,69.47595,6.941 1073,413.3211,158.56613,28.881287,77.99136,6.825 1073,617.586,202.08319,22.474487,64.24704,6.773 1073,517.61456,220.32675,29.704407,69.611206,6.714 1073,151.8631,213.69809,22.946442,42.80957,6.644 1073,396.85974,183.96696,30.20166,79.06349,6.527 1073,50.66146,209.51523,39.317955,78.367676,6.45 1073,35.232185,207.75443,17.521805,37.808044,6.431 1073,-5.1028013,187.27371,16.626251,40.565475,6.217 1073,24.455893,220.95804,22.328547,45.598602,6.111 1073,552.67346,199.79468,23.939697,54.618225,6.021 1073,28.391918,218.36017,31.036549,70.99155,6.011 1073,-16.86998,-65.55184,55.07841,143.48657,5.932 1073,-6.3855147,488.5407,18.99623,43.734314,5.91 1073,-11.173542,-31.707954,29.773489,71.06537,5.884 1073,155.56134,202.80257,17.218933,24.247437,5.869 1073,499.21008,189.30196,30.37323,62.141815,5.796 1074,587.7416,208.23065,49.026978,188.22119,27.166 1074,444.3393,205.10834,28.8544,80.5058,17.825 1074,395.65375,188.87596,20.052582,41.43004,16.572 1074,100.40953,214.6745,35.824432,66.30072,15.79 1074,26.958275,205.81107,32.37116,67.09061,13.976 1074,124.83066,204.26326,34.638016,66.10445,11.326 1074,-1.5250504,201.27576,27.392574,68.38937,11.295 1074,36.61812,202.06105,37.875656,88.93257,10.585 1074,38.97037,211.24823,25.311337,48.001007,10.46 1074,-5.1502776,201.5705,18.640097,43.631668,9.838 1074,51.23842,202.75815,38.574615,84.37363,9.548 1074,11.8603945,201.99045,31.808502,69.56918,9.297 1074,352.36206,212.25214,22.003632,42.16124,9.287 1074,-4.491963,-16.259148,16.601906,40.945953,8.471 1074,23.902397,210.77568,24.67802,47.700546,8.41 1074,15.86617,200.44519,48.005005,111.88086,7.864 1074,476.0998,198.93561,19.402344,37.57466,7.764 1074,400.08716,196.17267,21.00232,46.06259,7.467 1074,471.10004,197.70583,26.893677,61.85228,7.38 1074,439.26608,192.30927,27.853027,70.59598,7.252 1074,443.80316,188.8791,19.12146,44.854843,7.193 1074,218.61526,219.40994,17.551758,25.202225,7.061 1074,47.32815,216.45317,24.879528,48.48726,6.928 1074,85.55382,203.33038,38.99887,88.90796,6.906 1074,516.8645,203.39761,17.895386,46.295166,6.768 1074,431.57306,199.45953,47.830994,115.33093,6.56 1074,113.55693,208.91916,34.01996,73.93515,6.434 1074,393.76886,205.64615,22.190247,42.058395,6.36 1074,-10.776473,-32.031578,28.906574,71.54921,6.301 1074,521.83484,198.78867,18.42511,43.00621,6.232 1074,612.3983,317.21313,24.56836,70.24115,6.229 1074,-6.253419,489.54562,18.684685,42.13138,6.055 1074,513.85345,285.4733,30.116821,69.401855,6.049 1074,537.6908,204.47507,19.333557,36.815536,6.038 1074,436.24152,183.62585,20.169342,50.025055,6.021 1074,401.52338,170.13843,30.17389,67.73509,6.008 1074,68.44356,203.79805,37.65764,79.95274,5.998 1074,337.70145,205.09087,28.069244,59.375107,5.984 1074,602.1886,-56.222042,53.81427,140.43797,5.981 1074,7.3126483,204.33536,23.136517,49.334595,5.962 1074,556.6063,191.92651,30.462097,73.90439,5.962 1074,422.71423,176.4884,28.752441,72.622894,5.914 1074,627.2123,-18.715532,17.098999,49.36889,5.8 1074,554.9102,160.10138,79.43408,250.44269,5.765 1075,596.3076,203.91855,16.335632,40.027145,23.504 1075,555.3136,202.94185,17.639465,44.791245,21.748 1075,417.61035,181.28523,20.936157,55.8304,19.091 1075,485.8963,206.55902,27.173523,72.881165,16.189 1075,468.22455,239.1463,32.418396,76.0838,16.186 1075,589.8535,206.71588,17.27356,43.574875,11.723 1075,352.1976,213.0446,23.305511,42.578186,11.534 1075,327.97412,210.41797,22.249512,39.84941,10.842 1075,589.88763,206.678,27.80951,71.07176,9.934 1075,420.02853,179.11824,28.292511,80.51494,8.847 1075,580.2937,210.58916,17.885437,42.66638,8.758 1075,552.04004,191.73409,32.002563,84.5742,8.448 1075,356.03665,210.27238,31.020721,56.553177,8.142 1075,601.3707,202.72624,18.662598,36.47374,8.067 1075,-5.065035,-15.917199,17.063953,40.86406,7.898 1075,317.57205,204.83487,29.576874,57.10495,7.302 1075,570.91766,213.18771,18.828613,46.790253,7.189 1075,598.6497,190.90642,31.3656,97.59398,6.942 1075,562.1758,201.59364,16.146973,40.229904,6.817 1075,610.519,207.23268,16.38861,36.935486,6.685 1075,-6.3681087,488.0638,19.109482,44.159454,6.68 1075,368.1035,211.21321,23.207397,42.625534,6.375 1075,345.52686,212.6083,20.686523,37.564148,6.294 1075,364.2461,214.04854,34.40558,63.75258,6.274 1075,342.46002,212.864,28.737732,59.643875,6.198 1075,548.25397,209.16458,20.182434,48.03189,6.183 1075,-10.82443,-31.977524,29.035831,70.107925,6.158 1075,602.23035,-57.328476,54.14447,140.83684,6.045 1075,574.19946,209.23135,27.755249,70.20395,6.017 1075,362.61176,209.3042,18.328552,33.054077,6.006 1075,321.72565,208.41658,20.474365,37.05896,5.958 1075,622.83777,-33.662453,26.37909,78.263565,5.811 1075,413.56763,200.90605,17.657196,40.457703,5.801 1075,-9.354222,463.82623,37.98984,93.103455,5.744 1075,313.54837,212.01765,22.254242,41.606262,5.738 1075,-17.62379,-64.0517,55.913685,144.45071,5.7 1075,336.47467,214.42462,23.133118,40.271942,5.665 1075,627.5096,-17.579512,16.701294,47.498207,5.536 1075,500.52576,210.17184,38.34436,87.63498,5.516 1075,581.7622,199.73343,14.36731,32.305832,5.509 1075,404.88226,197.46024,15.759338,34.841522,5.475 1075,572.6964,199.00375,14.145691,33.075424,5.441 1075,3.8302171,-13.893086,15.687817,37.47668,5.406 1075,282.128,216.46622,18.780243,30.64769,5.386 1075,516.7356,168.17058,25.15387,70.64485,5.347 1075,377.59332,209.4554,20.346436,36.330704,5.326 1075,-73.07956,265.7868,201.10777,461.96686,5.294 1075,394.46133,181.61594,16.624847,42.83586,5.274 1075,613.20465,454.462,39.612366,108.01688,5.129 1075,26.981585,-13.896191,16.445555,36.039944,5.07 1075,618.45154,204.71892,16.879578,39.674957,5.043 1075,583.0217,411.15717,71.89209,177.45154,5.016 1076,381.9821,209.62666,28.58783,67.057175,82.796 1076,366.36438,211.32965,31.144836,65.66507,11.88 1076,525.5845,204.70242,43.707703,90.27463,10.735 1076,545.0176,184.03856,22.07904,48.04268,10.518 1076,526.0714,194.25424,26.575256,67.37454,9.441 1076,433.79776,203.24495,19.246216,44.61943,9.329 1076,428.05862,174.1953,27.509796,76.7773,9.268 1076,121.25775,198.1258,22.87004,54.36226,8.685 1076,436.93872,214.42987,27.485596,60.81787,8.534 1076,167.14293,220.25993,23.708878,49.203995,8.471 1076,601.9016,198.492,19.573364,39.005783,7.813 1076,465.2158,171.55998,21.145538,54.43599,7.726 1076,-6.237359,489.99274,18.746532,41.670166,7.663 1076,344.82056,210.09879,23.940155,46.064453,7.189 1076,43.34983,205.28296,33.408867,67.20581,7.014 1076,350.06393,207.95096,29.894012,60.292297,6.911 1076,140.38911,200.432,29.198563,64.219666,6.848 1076,151.7041,207.26974,30.653992,72.773224,6.79 1076,360.81497,208.9843,23.473297,46.00261,6.651 1076,108.471085,203.51727,31.274216,64.93576,6.616 1076,-12.238329,479.16086,30.636465,62.33194,6.549 1076,465.9781,158.28612,30.09021,85.70845,6.435 1076,40.40091,204.13031,24.218147,46.276047,6.263 1076,466.95114,213.88678,20.494476,48.140503,6.196 1076,-6.10317,-17.744257,18.330729,43.924267,6.157 1076,596.2911,201.52652,17.886292,37.45337,6.15 1076,334.0593,204.58743,29.231873,57.636383,6.0 1076,619.52466,189.77463,15.997925,40.741653,5.927 1076,627.3994,-17.563126,17.04126,46.642437,5.873 1076,61.314537,233.32663,33.46959,67.058105,5.872 1076,97.54398,208.72798,20.209076,31.452225,5.804 1076,513.87445,206.23784,21.176086,56.150833,5.775 1076,90.41889,210.7221,32.23091,56.94342,5.775 1076,124.345695,202.73317,30.170998,71.01933,5.694 1076,114.278366,201.86028,22.167557,40.369583,5.633 1076,-12.829118,-40.757965,41.945553,102.43848,5.585 1076,89.21433,211.73772,23.35785,35.561707,5.558 1076,536.5703,187.25717,50.873352,115.19516,5.543 1076,387.4464,203.33537,18.09491,38.00618,5.531 1076,538.14813,187.04086,32.257202,73.18387,5.473 1076,428.60657,191.54034,19.41681,45.407852,5.466 1076,623.1668,-34.100136,26.240051,77.061134,5.44 1076,1.7819887,490.09012,19.954863,40.886932,5.432 1076,602.9002,-53.651802,52.847473,137.43544,5.389 1077,412.71857,211.0293,39.182526,100.91382,88.168 1077,503.12985,211.26852,23.906647,54.25705,40.909 1077,463.60852,215.85596,42.015533,116.459045,31.691 1077,467.9797,210.86127,16.82077,40.03624,12.825 1077,409.31635,216.61899,28.696686,74.61557,9.827 1077,474.57043,212.09773,15.4314575,32.59874,9.779 1077,502.44482,201.02673,34.297913,84.063446,9.583 1077,-5.273801,-18.416817,17.826332,43.02607,8.691 1077,444.65,166.47687,27.769196,67.69,8.66 1077,461.1792,206.9504,13.057587,30.413055,7.953 1077,603.22064,206.75899,17.767883,44.954178,7.823 1077,-6.516472,489.16904,19.245232,42.927643,7.76 1077,453.15067,204.07693,13.77298,31.824768,7.677 1077,294.25778,203.40227,27.79953,58.77452,7.576 1077,400.94537,221.3393,23.95166,51.19464,7.512 1077,375.19894,214.6314,21.794159,48.336563,7.281 1077,546.54596,214.02112,21.951538,48.37256,7.251 1077,-10.510748,-31.753242,28.695532,70.81311,6.921 1077,42.747646,199.5887,32.444622,58.83821,6.889 1077,460.61163,210.4416,17.492462,45.40526,6.838 1077,-12.348451,477.46002,30.547455,63.522278,6.81 1077,514.9391,212.44966,31.797302,67.120895,6.635 1077,419.62933,201.63206,16.499146,35.47029,6.474 1077,499.744,207.097,21.103058,42.55861,6.472 1077,468.20532,215.83206,29.35788,70.549225,6.086 1077,618.2064,210.80186,19.844727,57.420975,6.026 1077,447.0377,201.52917,14.547882,32.41371,5.978 1077,452.03595,210.4849,17.655273,46.15634,5.958 1077,390.84283,220.45982,26.765167,58.2007,5.953 1077,621.4471,208.34038,25.904968,75.68056,5.923 1077,386.35437,208.64421,16.858795,35.865646,5.781 1077,274.23102,207.24207,32.723877,62.416687,5.759 1077,492.35077,210.65,19.431763,43.97986,5.753 1077,480.89264,205.07437,44.973206,111.8927,5.671 1077,289.21667,213.27562,23.013428,46.284805,5.642 1077,69.606064,197.23154,29.993935,62.103546,5.616 1077,610.1016,209.20235,19.164612,47.466232,5.59 1077,622.85895,-34.295647,26.694519,74.01776,5.542 1077,485.7824,211.02913,28.727722,70.07408,5.476 1077,403.54294,208.21555,17.44522,33.410675,5.469 1077,598.2243,212.27594,26.959839,70.40155,5.452 1078,495.93427,213.21964,59.663208,160.15756,98.909 1078,569.0537,213.17523,27.053284,64.48279,59.865 1078,511.99243,214.06561,24.524231,52.3985,20.654 1078,490.92502,205.31992,19.637238,53.104828,12.431 1078,90.71245,201.48921,21.421303,35.807205,11.464 1078,512.8928,215.42694,33.1745,87.10516,11.135 1078,507.1312,211.81609,20.39743,45.97328,10.432 1078,492.1784,207.48946,31.319519,74.690384,10.276 1078,618.7964,197.81458,17.743652,53.66664,10.019 1078,292.82693,205.13335,30.1586,62.224075,8.669 1078,-5.3163285,-17.98379,17.326946,42.266815,8.473 1078,522.3701,210.85968,18.742004,40.266907,8.456 1078,437.60162,243.30061,28.697968,65.93761,8.397 1078,550.06885,208.10849,29.119995,69.35666,7.733 1078,122.419205,233.52466,19.453384,36.47531,7.45 1078,526.15906,214.3951,24.353088,58.379654,7.404 1078,84.96817,204.47339,29.525879,61.446747,7.284 1078,116.67854,210.62671,29.807022,62.87863,7.224 1078,468.1926,212.28146,41.933197,88.23706,7.076 1078,562.2132,212.9925,24.548645,47.123352,6.938 1078,498.9076,207.9619,17.120117,40.811905,6.906 1078,148.67113,222.2084,33.003403,55.157074,6.599 1078,132.8283,213.18076,30.682785,62.753693,6.548 1078,523.62036,192.45746,16.812622,40.288254,6.465 1078,415.8935,204.14606,21.513092,45.669037,6.27 1078,-6.305387,488.92383,18.821178,42.786743,6.265 1078,623.0016,-33.449924,26.415222,76.06694,6.215 1078,-12.766153,476.51276,31.023619,65.21222,6.2 1078,97.07631,210.75311,35.02913,65.292786,6.163 1078,129.25233,215.44862,21.703491,38.820084,6.144 1078,267.68475,210.44154,30.479706,61.29283,6.089 1078,530.6292,210.03561,31.990051,84.59,6.051 1078,626.4839,192.3658,17.183044,51.147552,6.04 1078,487.1347,218.19641,46.3714,121.226685,6.011 1078,113.99336,222.23883,21.395706,42.045776,6.0 1078,578.5863,215.71198,28.025574,79.21283,5.918 1078,104.83161,212.2859,22.253166,43.170837,5.874 1078,462.86707,229.72868,29.879333,56.880386,5.716 1078,627.1788,-19.53035,17.559326,48.431458,5.706 1078,410.07788,147.78049,18.883575,59.29283,5.651 1079,618.23065,212.52455,20.465515,55.147568,21.697 1079,547.3664,103.40111,28.383118,74.40422,16.514 1079,466.14288,253.02762,30.75882,75.74655,14.38 1079,503.7638,204.83453,27.003296,70.47058,8.729 1079,488.49136,234.74362,23.61728,46.971832,8.39 1079,494.6838,214.5226,27.737396,66.389175,7.353 1079,547.4079,207.40366,17.60492,35.33458,7.212 1079,-4.866304,-17.267954,16.704126,41.95804,7.18 1079,541.1885,207.44676,16.047363,29.6595,7.031 1079,483.7366,235.14607,19.20169,39.233902,6.887 1079,539.9151,207.36461,29.968079,61.912125,6.88 1079,516.24646,202.76451,28.520325,67.377884,6.798 1079,388.09857,193.0586,20.0141,42.31099,6.687 1079,558.3275,205.0613,27.321167,62.06401,6.667 1079,571.27734,166.53035,19.979614,48.880417,6.319 1079,471.95227,248.00993,22.861755,46.94371,6.271 1079,303.0024,203.4121,29.777191,65.09105,6.22 1079,500.34418,124.34897,28.990417,72.556274,6.18 1079,-10.822998,-31.941782,28.343542,72.844124,6.172 1079,-11.893268,476.4547,29.273315,64.38727,6.126 1079,622.23627,211.20908,24.132202,76.861145,6.125 1079,622.6673,-33.655525,26.974426,77.24303,5.978 1079,294.5154,199.11891,26.76416,60.280197,5.951 1079,1.3305008,254.19748,22.865002,36.131897,5.889 1079,473.1223,241.43195,32.858643,72.492615,5.875 1079,-6.2458467,489.45636,18.461353,42.379883,5.857 1079,493.79614,137.53766,28.200256,78.39398,5.834 1079,420.70682,231.34052,31.034515,65.144104,5.824 1079,513.16736,204.6959,20.921448,49.00107,5.816 1079,-4.5960135,156.06554,18.730583,45.14467,5.761 1079,526.0953,205.87555,28.7406,55.34842,5.657 1079,483.4026,222.16655,18.032776,38.046646,5.612 1079,439.7382,177.73788,26.084412,77.92879,5.597 1079,441.5429,148.78596,19.397339,56.105194,5.567 1079,555.74426,204.84953,16.83191,30.904404,5.558 1079,627.28296,-19.05209,17.10083,48.75163,5.515 1079,555.43024,91.405136,30.179993,65.487274,5.489 1079,612.8578,454.2693,40.009033,108.48303,5.459 1079,476.16226,213.54877,16.485016,30.529556,5.368 1079,475.84216,241.12943,18.42221,32.885834,5.313 1079,562.0855,205.79172,19.184265,39.00508,5.271 1079,497.30457,219.3727,42.97412,79.109055,5.22 1079,-73.036026,265.21777,201.14456,463.2,5.193 1079,5.248934,245.6002,31.151678,51.73311,5.175 1079,467.9967,211.28185,16.732239,34.232727,5.173 1079,602.41754,-56.8667,53.440125,139.3033,5.161 1079,371.75842,197.16101,14.896576,27.983002,5.103 1079,602.91296,206.6214,16.705566,29.628601,5.101 1079,532.7735,205.45032,16.880371,32.526505,5.083 1079,489.44537,217.82504,19.421448,42.33429,5.055 1079,523.69775,-15.322624,16.078857,38.75423,5.036 1079,119.38849,227.65678,22.316711,36.211563,5.033 1079,582.8296,412.58618,72.0932,175.844,4.989 1079,319.11566,216.28639,24.028412,44.497086,4.986 1079,536.026,309.77222,144.2738,341.35443,4.941 1079,386.83627,189.62598,31.090027,65.249985,4.899 1079,-18.206669,435.0067,55.27277,141.54865,4.877 1079,363.34488,201.52583,14.678314,26.701645,4.871 1079,466.60394,245.30412,20.909119,38.267227,4.861 1079,-17.172907,-63.183968,55.76734,143.9464,4.848 1079,3.6732113,-14.725401,15.731446,38.16346,4.842 1080,615.2879,318.6585,24.434998,84.69113,13.781 1080,442.2601,182.41257,18.045563,49.204865,13.084 1080,71.72215,229.71461,23.430977,43.20479,9.491 1080,138.32178,225.993,20.961197,33.580093,7.784 1080,43.15731,216.22464,31.427834,56.31128,7.218 1080,434.221,194.70636,21.6669,50.59735,7.194 1080,-5.010887,-17.026236,16.616419,42.796165,7.099 1080,64.774605,217.21744,23.460258,42.236908,6.586 1080,90.56563,-23.027456,19.951126,48.383247,6.523 1080,98.71585,-21.607388,19.832184,47.001404,6.455 1080,487.8294,228.23767,26.794312,77.65558,6.295 1080,-6.054126,489.31143,18.332603,42.674347,6.261 1080,55.728607,217.63718,23.764626,40.12845,6.254 1080,106.22839,-21.2785,19.533028,45.307247,6.183 1080,417.1135,201.54234,20.761993,44.44049,6.168 1080,-9.103289,464.6481,37.899933,91.43143,6.088 1080,73.57443,-23.268835,20.166641,48.893467,6.085 1080,427.2568,195.4093,19.07312,41.68985,6.017 1080,82.03612,-22.541353,20.018784,47.990562,5.967 1080,435.95096,179.39232,18.736298,44.233047,5.931 1080,439.10968,152.05939,26.011597,76.63791,5.925 1080,3.0969782,196.86024,16.952984,38.528885,5.708 1080,570.50073,224.29503,21.14331,32.903305,5.603 1080,92.08649,-25.078522,30.729507,71.15891,5.578 1080,-3.0955112,186.10126,16.327677,42.85965,5.576 1080,581.94617,199.04245,28.471375,58.59787,5.557 1080,600.58215,300.53613,39.646423,142.61853,5.541 1080,144.9047,223.05223,20.56073,31.710419,5.446 1080,601.893,-56.65109,53.89795,143.44809,5.443 1080,474.28543,122.72774,19.280914,47.57791,5.426 1080,80.46593,220.44904,20.643173,40.51245,5.35 1080,566.42957,201.17255,28.33368,62.80002,5.335 1080,626.9036,-18.906988,17.668457,49.158333,5.33 1080,508.07153,236.8472,31.635437,71.80853,5.31 1080,626.703,488.05795,20.701843,45.34732,5.299 1080,76.29881,-22.90203,31.949646,72.17491,5.291 1080,191.00638,206.10358,23.09999,38.126038,5.277 1080,612.76874,453.89142,40.037354,108.4353,5.276 1080,619.61523,207.625,18.612244,53.450745,5.237 1080,-72.99062,265.7971,201.28522,462.81424,5.23 1080,-10.9987545,-33.33629,28.92354,75.973946,5.211 1080,571.4381,349.5053,16.865784,31.385712,5.186 1080,438.35767,178.84964,34.825745,86.65469,5.18 1080,354.40305,214.0297,21.608063,39.05899,5.107 1080,622.3268,-33.854847,26.887817,79.84982,5.077 1080,398.37766,212.01286,28.506989,64.75954,5.012 1080,-16.984177,-64.55806,55.428017,145.11423,4.975 1080,532.5338,221.16786,37.761963,88.94853,4.966 1080,368.61914,218.01947,23.00589,45.770935,4.944 1080,547.9993,192.86899,30.91681,66.97269,4.933 1080,493.8243,139.91667,28.616669,83.24339,4.899 1080,3.80072,-14.352381,15.404852,40.008583,4.885 1080,585.989,222.49893,20.166931,32.54596,4.88 1080,620.8277,62.147865,15.717407,44.323555,4.88 1080,321.6811,221.56963,28.384247,60.353287,4.827 1080,594.39874,220.53468,20.446411,34.363968,4.809 1080,154.16536,234.32512,18.049835,25.146164,4.808 1080,59.13632,-23.511133,33.139652,68.36182,4.783 1080,106.22508,-21.684662,32.666428,66.04688,4.771 1080,536.2301,310.51672,143.86212,342.3507,4.739 1080,-15.518015,157.65701,50.280937,133.09,4.73 1080,422.73117,196.5423,28.236969,66.00461,4.715 1080,-21.602654,402.9119,78.875565,174.18015,4.704 1080,601.7384,210.924,20.228638,39.808273,4.692 1080,547.3125,221.59344,39.809265,94.34308,4.676 1080,453.1811,177.49188,35.542297,90.20218,4.675 1080,361.30133,224.59657,21.772858,37.536972,4.674 1080,447.9567,125.96602,24.611938,83.19008,4.657 1080,614.33923,112.130905,23.447937,103.78761,4.608 1080,471.75662,167.02225,27.18042,83.74423,4.608 1080,497.7689,228.61363,22.408478,53.04518,4.604 1080,448.82327,186.56958,19.192749,52.366623,4.601 1080,614.2949,278.80487,33.628113,108.930664,4.591 1080,494.2815,228.80054,235.80408,514.5942,4.553 1080,618.8205,269.82562,18.34143,37.88614,4.514 1080,597.4264,219.33679,37.20807,101.329895,4.509 1080,123.45887,-19.671703,17.54049,41.17685,4.506 1080,131.90652,-18.928377,17.223206,40.761196,4.504 1080,369.76962,206.82536,19.596497,38.151,4.488 1081,439.69852,204.84895,24.263458,55.0988,30.789 1081,581.2401,215.55785,27.379456,80.64778,19.726 1081,439.1229,195.71033,35.309418,91.259796,12.365 1081,452.59702,198.48526,29.64206,59.809418,10.46 1081,449.1244,200.96709,20.973297,48.755295,10.226 1081,379.96082,216.04427,30.633392,55.454544,9.162 1081,-5.0783443,-16.392166,17.756323,42.99129,8.826 1081,538.9332,210.57828,28.606201,68.32803,8.511 1081,-11.006811,-32.529984,29.659271,72.79147,8.282 1081,458.06107,200.58752,18.827942,38.959198,7.226 1081,366.71954,211.34592,24.524902,41.898026,7.165 1081,376.90894,205.12115,22.068542,38.277863,6.825 1081,384.68594,210.96341,21.642761,39.35681,6.801 1081,464.8004,204.60103,20.914764,41.119522,6.764 1081,430.6228,211.173,31.794464,81.45383,6.616 1081,546.135,205.12273,31.401672,59.060745,6.379 1081,537.90356,207.77982,21.212463,37.712418,6.222 1081,-6.005714,489.89835,18.313282,41.8743,6.023 1081,-8.972704,464.72604,37.902187,92.01828,6.0 1081,627.2656,-19.23762,17.245728,48.564003,5.871 1081,176.30893,202.95029,22.430786,30.919235,5.869 1081,2.6311934,-14.732052,17.707762,39.96781,5.791 1081,-4.3498745,153.57738,17.14328,40.911484,5.558 1081,94.60679,215.26997,25.099182,34.987137,5.479 1081,12.342623,-7.015259,55.04277,116.35872,5.472 1081,83.069336,207.08264,42.511963,64.96698,5.439 1081,622.8061,-34.164402,26.441223,76.51575,5.439 1081,481.1711,111.61944,23.880432,83.857,5.374 1081,-17.904995,-61.73626,56.48433,140.86345,5.364 1081,626.63477,488.4166,20.785767,45.482574,5.34 1081,395.99408,214.21298,29.17865,55.20343,5.336 1081,377.95132,187.2384,19.623322,37.40503,5.335 1081,424.23337,203.04352,30.584625,65.45044,5.33 1081,442.75958,182.02881,19.472046,40.88968,5.308 1081,473.34927,206.96556,19.689362,36.772537,5.294 1081,170.49307,200.81677,32.640564,47.572174,5.283 1081,461.10614,205.98405,28.809021,64.57237,5.271 1081,613.1646,455.38574,39.07263,107.00006,5.174 1081,94.51085,-34.2339,28.20485,71.00606,5.158 1081,-73.08251,265.62756,201.15527,461.70935,5.147 1081,-4.666911,202.772,17.373268,39.522125,5.141 1081,602.2268,-56.21048,53.77899,142.66371,5.121 1081,468.5556,185.14671,37.628326,91.0952,5.108 1081,583.2421,412.01572,71.60455,176.45474,5.058 1081,363.47305,200.31886,17.199585,28.549438,5.017 1081,94.79325,229.92348,26.663269,39.22734,4.972 1081,65.95424,169.18674,23.623917,41.860306,4.932 1081,528.3642,203.55537,47.23706,127.46782,4.913 1081,526.1833,201.84827,29.569153,61.925354,4.905 1081,-21.69635,402.568,79.02742,174.72162,4.855 1081,501.5589,199.8712,36.154358,91.23622,4.849 1081,184.80289,201.58226,21.262848,31.68335,4.838 1081,233.57605,207.3788,21.232895,33.754105,4.838 1081,550.8699,103.784515,27.000671,80.41,4.825 1081,536.02423,310.1446,144.25403,343.2431,4.795 1081,271.88867,209.98758,21.432678,42.561005,4.782 1081,1.7541301,149.687,19.04176,40.910156,4.773 1081,298.62286,204.61946,20.536072,46.995743,4.75 1081,2.074223,222.99243,18.731045,35.399292,4.75 1082,379.11462,218.71329,31.094452,59.34018,18.729 1082,470.5686,218.40594,24.786621,49.701782,13.909 1082,0.22713423,221.05074,22.28163,46.627518,10.298 1082,389.10437,213.87935,23.632751,48.12703,9.052 1082,559.8988,209.70152,27.823303,67.00423,8.918 1082,-5.816731,-16.139221,18.069052,41.758232,8.261 1082,476.05304,226.56232,33.7265,72.3396,8.259 1082,424.48297,221.82913,20.465607,39.148346,8.218 1082,474.03378,213.5292,18.202606,33.46895,7.486 1082,420.39005,215.84262,18.467041,36.55249,7.426 1082,522.96826,215.12424,18.620544,33.934143,7.215 1082,31.508717,225.34746,28.332436,51.464493,7.119 1082,426.4582,212.45558,16.439484,34.251404,7.103 1082,515.6094,216.97987,19.194336,32.147186,7.075 1082,-6.136717,58.76631,18.36134,38.65985,6.66 1082,-18.154242,-63.50768,56.233917,143.1204,6.647 1082,-5.257692,217.00197,19.630692,44.292953,6.611 1082,507.52313,219.21994,17.902588,28.285278,6.381 1082,586.7577,213.87929,19.069153,44.678818,6.336 1082,627.13666,-19.202023,17.497498,48.70983,6.278 1082,594.76306,216.61218,18.352356,41.009735,6.212 1082,-11.300652,-31.60566,29.881264,72.27716,6.163 1082,26.230974,225.01794,23.80348,38.389496,6.138 1082,455.55203,213.10413,28.304016,58.343018,6.027 1082,-9.911749,218.04733,28.716742,65.071014,5.962 1082,589.1874,215.17526,28.079224,67.43509,5.947 1082,459.2818,223.50662,33.983887,72.36597,5.937 1082,420.91724,227.90453,27.922974,59.978226,5.855 1082,-8.749009,464.45853,37.588398,92.39346,5.847 1082,626.6409,487.55737,20.68219,45.83795,5.793 1082,499.01718,221.00642,17.003754,27.839203,5.786 1082,69.38552,217.21907,24.001862,40.298874,5.747 1082,-6.0453362,489.53394,18.641125,42.949585,5.717 1082,4.023118,220.04897,29.920273,58.92769,5.679 1082,466.30508,213.34103,22.016449,42.972443,5.591 1082,571.2177,206.89462,28.840515,71.08896,5.55 1082,58.940273,232.3702,33.29363,50.577957,5.507 1082,435.05304,211.64105,16.48288,34.419815,5.502 1082,-6.104229,29.541906,18.255835,39.196655,5.478 1082,138.05739,215.28496,20.109634,29.680008,5.441 1082,2.6476698,-14.7732935,17.330051,39.089108,5.429 1082,492.2666,217.53621,15.767792,24.914291,5.423 1082,0.6360841,39.39602,22.069948,40.408913,5.367 1082,574.9641,171.49936,46.59436,119.41315,5.321 1082,622.729,-34.16872,26.724976,75.78922,5.308 1082,442.90692,207.10059,17.266846,37.17386,5.288 1082,-5.7664576,44.31141,18.728693,39.33181,5.288 1082,612.91077,455.6719,39.47827,106.12332,5.255 1082,-73.29659,264.93903,201.76883,462.9112,5.236 1082,100.30522,240.2491,32.800888,49.427048,5.234 1082,562.6633,149.56955,31.260315,96.9153,5.233 1082,170.93143,216.42383,18.149307,26.231186,5.232 1082,549.62,157.10693,28.344238,90.96628,5.158 1082,583.11755,412.31537,71.53772,176.36993,5.127 1082,177.87769,215.34653,19.775833,27.599976,5.087 1082,155.15532,206.19954,20.092651,28.17778,5.001 1082,530.29517,208.01984,18.643433,33.045578,5.001 1082,-16.193527,192.16592,49.88481,124.039764,4.958 1082,602.6151,-54.910828,53.194824,142.27617,4.942 1082,-5.9952335,5.341589,18.321438,38.996468,4.932 1082,364.33304,-15.803139,29.946686,73.039055,4.895 1082,486.5472,236.31741,24.568085,48.040375,4.887 1082,507.0459,234.59735,18.767273,31.35675,4.84 1083,473.50452,132.5993,24.390411,78.285995,13.313 1083,531.18475,203.3363,39.651062,81.650024,12.691 1083,404.77905,211.66222,30.575592,68.49785,12.199 1083,518.1039,205.99387,37.927673,76.38699,9.654 1083,417.8859,207.81726,21.352081,50.385284,9.566 1083,419.97806,213.83884,28.82901,67.92142,9.503 1083,457.03198,200.89001,21.722534,54.72104,8.583 1083,521.5453,210.17604,22.300415,51.99626,8.318 1083,618.19464,208.73914,21.231506,52.02939,8.222 1083,553.89844,209.76764,32.968872,58.14386,7.906 1083,400.12567,212.563,25.78833,48.649643,7.667 1083,482.8079,208.53946,20.909637,43.777252,7.563 1083,503.11737,202.59787,37.628723,83.077484,7.489 1083,485.71347,201.09859,36.36075,80.47386,7.43 1083,71.56379,207.40392,24.92746,38.738113,7.201 1083,547.114,220.75275,33.58783,68.93115,7.151 1083,471.25116,197.42137,34.079193,76.70317,7.065 1083,623.09467,-34.50572,26.483582,73.49751,6.791 1083,458.987,141.16891,19.28659,45.175125,6.591 1083,-11.643291,477.5185,29.270056,64.48224,6.582 1083,-5.902238,490.0743,17.82315,41.15799,6.546 1083,-10.232468,-34.76417,29.795105,77.80639,6.476 1083,627.3516,-18.70643,17.626282,46.40841,6.329 1083,514.2993,207.2086,19.928284,39.045273,6.273 1083,462.7882,202.3168,25.42389,68.2637,6.163 1083,561.1815,135.56943,35.718384,82.485535,6.126 1083,449.5968,202.25436,21.068115,47.9196,6.071 1083,468.08948,139.45041,19.958252,53.33197,6.025 1083,-4.508377,186.6226,17.943008,42.536133,6.024 1083,442.15247,204.6195,21.818237,51.33899,6.022 1083,-5.599946,-18.862698,18.51088,47.009632,5.952 1083,-18.634678,-63.541885,56.886906,144.75206,5.922 1083,578.0157,207.03606,19.614258,32.665497,5.918 1083,610.9464,210.28195,20.310059,41.906235,5.779 1083,471.4673,162.90634,25.20459,75.07385,5.667 1083,1.6454732,236.85077,19.605198,39.405823,5.564 1083,50.49152,204.11884,20.352467,34.232132,5.557 1083,534.0407,211.82335,24.407043,50.26854,5.553 1083,4.876834,198.72177,30.00336,63.351715,5.463 1083,623.20703,196.43909,25.835388,70.371,5.377 1083,3.5001063,255.75919,31.791416,54.481018,5.328 1083,52.433144,202.66966,28.637474,57.13774,5.319 1083,-72.93343,265.0219,201.32309,463.13593,5.299 1083,129.79816,207.82492,19.508606,32.75659,5.287 1083,2.32472,134.46484,17.185158,45.283447,5.281 1083,2.2459424,273.66397,20.749205,35.022034,5.28 1083,431.4048,211.6257,23.167816,50.262238,5.242 1083,588.7949,142.63953,34.288452,80.48692,5.211 1083,27.394958,204.57162,31.135315,66.754456,5.196 1084,532.50555,109.05571,28.091064,91.20953,22.41 1084,485.90942,211.34915,28.251526,67.71213,19.647 1084,472.03122,213.66498,21.996826,50.95102,14.064 1084,21.875505,198.89253,32.991516,63.72209,10.528 1084,426.47858,213.9306,18.554108,34.12674,10.358 1084,465.83673,222.50862,22.722687,53.98558,10.188 1084,-4.8656645,-15.825676,16.828743,41.01384,9.958 1084,482.21997,211.46283,22.084229,47.991455,9.46 1084,107.46781,202.66231,19.485352,42.628754,8.828 1084,498.97586,211.71367,29.87436,71.05745,8.662 1084,-10.609224,-31.081308,29.763872,67.716995,7.895 1084,471.64902,205.96829,35.827118,79.57938,7.634 1084,35.940063,205.84212,31.133919,48.08542,7.042 1084,515.99365,205.44899,37.769714,92.4644,6.944 1084,444.62134,212.31744,15.364441,31.263092,6.852 1084,435.74475,213.61137,15.8558655,30.136307,6.728 1084,452.2972,212.98671,15.609009,33.298645,6.68 1084,613.0657,127.412994,25.4953,81.15784,6.609 1084,-6.02981,20.952942,19.304295,45.74343,6.533 1084,-18.663439,-61.702057,57.287407,139.91006,6.488 1084,3.7630935,-13.976868,16.157131,37.312134,6.477 1084,122.34804,208.97607,19.548477,36.054565,6.444 1084,60.885223,192.69261,29.970108,52.555923,6.144 1084,531.9621,206.27708,40.10254,95.132706,6.139 1084,-4.716661,6.2113514,17.12536,37.281364,5.934 1084,627.40515,-18.200947,17.70221,46.34532,5.867 1084,-11.930458,476.22864,29.904999,64.80438,5.863 1084,495.55487,211.8739,20.77301,46.113617,5.804 1084,546.99347,206.32474,41.072327,97.27127,5.779 1084,622.7495,-33.99839,26.983704,75.80406,5.617 1084,-6.2587986,489.53033,18.416698,42.169617,5.559 1084,245.68054,216.87497,31.08252,55.020782,5.537 1084,55.638855,202.807,22.742683,38.122986,5.481 1084,519.225,122.78772,30.031616,78.948425,5.464 1084,509.0489,200.42685,30.011414,60.0654,5.41 1084,434.94815,225.92966,32.1976,73.32367,5.374 1084,132.038,122.04696,29.963074,68.10517,5.342 1084,10.754952,-14.518255,17.042942,37.22141,5.299 1084,4.2046604,194.00981,30.12063,66.00966,5.245 1084,-73.28797,264.4355,201.67126,463.5287,5.235 1084,435.18234,146.39377,30.25586,82.2471,5.223 1084,515.4895,133.96118,18.344604,46.477814,5.176 1084,-10.497965,195.60352,29.739628,69.54849,5.174 1084,612.9147,455.37595,39.65222,106.99173,5.141 1084,432.1912,220.1361,20.989105,43.80107,5.125 1084,12.471886,194.63724,52.252434,104.85141,5.11 1084,-5.744811,103.19095,18.583818,42.514786,5.086 1084,307.8938,216.94044,27.42569,59.14012,5.08 1084,626.49084,487.88647,20.984436,45.51288,5.076 1084,156.98677,124.88208,32.169235,71.52664,5.049 1085,544.1558,215.5554,21.737244,45.211014,83.452 1085,559.703,211.57733,22.120972,50.33081,79.513 1085,76.74188,196.43658,30.082169,54.350983,20.292 1085,466.02765,215.74045,20.111115,41.819244,12.847 1085,459.1585,212.53217,18.879333,36.735855,9.353 1085,-5.2865753,-17.926191,17.6302,44.351704,8.939 1085,617.6466,190.58047,21.721802,60.91649,8.205 1085,73.543106,186.8075,23.651718,49.38861,8.128 1085,4.802475,191.86192,30.960876,57.63115,8.064 1085,531.79675,218.07664,20.94342,39.25023,7.934 1085,92.68215,193.05963,28.717506,54.107666,7.726 1085,-10.314941,-32.686024,28.81543,72.51022,7.182 1085,392.90967,210.81332,20.702698,41.088867,7.114 1085,374.64514,220.92903,23.6279,47.85405,7.018 1085,561.9427,116.21979,25.20111,59.87744,6.752 1085,473.23022,210.91003,18.165588,37.825058,6.649 1085,381.07904,216.3964,29.08429,59.09308,6.632 1085,220.06235,207.95276,14.893021,24.23088,6.584 1085,211.36261,212.96507,16.077759,28.403122,6.577 1085,31.75644,185.29149,25.516312,43.473984,6.508 1085,104.45014,204.06702,20.749916,39.734085,6.502 1085,511.16254,227.06926,22.120605,47.574326,6.384 1085,626.9717,488.75696,20.072693,44.15027,6.352 1085,626.93024,-17.006588,17.199158,46.542416,6.351 1085,451.18555,210.86572,18.834412,36.73581,6.117 1085,510.31732,204.0702,26.212952,59.660446,6.074 1085,453.7401,216.93713,30.151337,57.48987,6.048 1085,622.3264,-32.794838,26.542236,74.65785,6.019 1085,442.26038,211.2008,19.533081,40.224686,6.003 1085,-5.268369,63.150963,18.610325,47.569084,5.924 1085,19.8543,184.49129,31.686132,57.448074,5.905 1085,2.6281028,-17.929232,17.478918,42.413345,5.9 1085,-8.698894,464.91272,37.724857,92.173035,5.862 1085,-6.129227,489.96542,18.41961,41.814423,5.759 1085,524.4581,129.3826,16.325317,35.873215,5.671 1085,538.0956,210.43887,20.823853,41.671738,5.573 1085,110.56151,98.64642,31.850052,62.434296,5.561 1085,475.0805,69.92441,31.321136,74.0607,5.524 1085,-5.6619167,195.54105,19.641191,41.900146,5.483 1085,-9.814419,184.47879,29.838257,64.746704,5.435 1085,153.898,206.34306,20.100906,42.75911,5.423 1085,-5.860358,92.03477,19.397087,48.584724,5.422 1085,612.9662,456.21542,38.79956,105.84891,5.393 1085,583.1481,414.45105,71.83838,174.39008,5.363 1085,-17.4416,-62.663307,55.611546,144.86328,5.343 1085,602.6624,-55.23316,53.50464,139.84666,5.333 1085,-5.131052,118.988594,19.473043,52.375175,5.333 1085,499.10986,137.70874,16.677612,38.48648,5.305 1085,-1.9225669,-18.926823,27.386446,67.08953,5.259 1085,597.39526,184.41516,28.318298,68.65668,5.215 1085,-73.13313,266.24585,201.28766,462.01013,5.195 1085,547.2216,194.71375,40.322144,73.87836,5.158 1085,366.15024,225.22037,31.035065,67.91058,5.109 1085,163.93266,112.1301,30.816849,61.207977,5.102 1085,619.0516,162.69879,19.560303,52.877075,5.1 1086,550.2111,207.58307,27.459229,68.96454,64.473 1086,615.8754,214.7815,22.484375,60.750336,55.654 1086,558.3784,210.66269,28.876465,88.916016,27.264 1086,46.447853,209.96732,27.686043,43.16243,23.959 1086,427.5439,233.01758,19.769196,43.195282,11.341 1086,469.08035,212.77112,28.697205,66.476715,10.816 1086,569.70776,226.2796,31.703674,77.36011,10.011 1086,489.20132,216.4362,21.213226,39.96309,9.985 1086,603.29816,226.89728,20.761047,46.311737,9.68 1086,52.535416,191.544,33.139313,60.192886,9.5 1086,544.7199,207.34358,23.060486,53.097885,9.466 1086,567.5028,209.6977,22.795166,63.40341,9.293 1086,431.84442,222.83156,22.06424,45.690872,9.218 1086,389.32648,217.4039,26.665192,64.83133,9.076 1086,39.881493,217.2225,26.061768,40.789764,8.841 1086,422.6648,228.2992,28.856537,66.18707,8.262 1086,474.12372,212.92178,20.27362,40.00705,8.117 1086,445.6552,220.34457,28.333405,67.742676,8.01 1086,621.2767,222.8892,25.634277,67.54152,7.452 1086,195.92734,209.86655,16.6315,32.52751,7.327 1086,580.3954,211.12384,29.965942,74.66998,7.169 1086,627.1917,-18.33532,17.15033,48.423523,6.893 1086,490.16995,206.81087,19.400024,31.649582,6.657 1086,-10.766687,-32.674065,29.766846,75.43516,6.636 1086,536.2861,212.19641,27.937134,67.12552,6.635 1086,200.89526,213.64255,19.260239,33.159058,6.631 1086,1.7440605,225.02806,40.348904,87.4803,6.577 1086,598.5389,220.95894,35.769043,88.879074,6.353 1086,468.15594,212.50127,18.396057,33.13376,6.334 1086,-8.896841,464.82425,37.747284,92.227325,6.261 1086,482.02274,211.37454,20.582703,33.651154,6.244 1086,-5.7373724,-18.134674,18.433598,45.603313,6.182 1086,602.60516,-56.882896,53.10028,139.87624,6.162 1086,-5.7825174,489.3449,18.20087,42.291565,6.162 1086,485.65924,215.27155,36.7713,73.59628,6.147 1087,1.7926717,218.44812,23.80508,49.538757,49.466 1087,29.777298,209.31857,25.578583,45.663864,28.993 1087,535.9347,223.14645,36.905518,102.309814,26.892 1087,519.8547,221.13567,33.842224,95.71437,21.672 1087,521.6376,207.85638,20.531189,55.06241,19.12 1087,556.2604,222.96953,28.723206,78.89653,18.198 1087,505.48398,206.892,21.265839,53.78131,11.199 1087,14.970673,213.0422,23.945663,48.8013,11.092 1087,566.93384,222.26926,22.96582,46.632935,10.264 1087,38.716805,204.69261,24.29876,44.836533,10.073 1087,504.94962,217.5008,34.29593,96.994995,9.001 1087,495.22018,208.05435,25.910065,60.58673,8.55 1087,-5.8682017,-18.452442,18.351027,45.55273,8.417 1087,-3.5588694,215.43335,20.061703,47.953705,8.084 1087,-11.182043,-32.03817,29.30425,73.87188,7.681 1087,515.5895,257.70892,31.150269,83.4595,7.66 1087,513.2258,205.96086,24.105042,70.36165,7.535 1087,393.61618,204.92863,18.285706,41.975876,7.217 1087,613.2987,451.28827,39.06024,111.460754,7.132 1087,562.13104,226.26993,38.062744,113.950836,7.124 1087,416.74188,160.27835,20.71811,51.880035,7.041 1087,541.34717,-10.057978,30.47229,63.552917,7.003 1087,418.36743,155.85483,17.980042,32.84851,7.002 1087,561.1097,216.82246,22.03772,40.661972,6.952 1087,547.27356,233.64246,40.658752,112.640625,6.847 1087,-12.02025,478.03903,30.412924,63.54416,6.707 1087,566.09357,3.350191,29.788452,59.45575,6.655 1087,386.9614,200.71106,17.075348,39.187805,6.638 1087,-5.9266233,490.42343,18.436928,41.182587,6.586 1087,60.875763,183.7753,30.22271,59.814163,6.586 1087,226.19095,215.88228,20.425293,32.273163,6.522 1087,193.69199,218.51904,20.357834,34.321884,6.509 1087,383.3945,210.80623,26.537079,54.17256,6.477 1088,7.575958,203.5841,27.942226,60.928436,46.161 1088,545.36444,213.80013,22.975891,45.99501,27.943 1088,569.6494,210.22943,24.031006,50.473206,26.818 1088,22.524214,203.81528,25.118608,54.435577,22.551 1088,409.94446,196.01079,19.058289,45.923355,15.339 1088,565.0812,201.96057,34.54413,101.344666,13.256 1088,487.61615,232.74078,35.408203,80.43518,10.731 1088,551.5819,201.04375,34.43524,97.923965,10.009 1088,534.8713,207.16484,34.562866,89.12639,9.89 1088,-3.9500504,210.40297,18.963482,48.98024,9.143 1088,394.51764,189.85715,18.33191,44.211548,8.994 1088,0.3464055,180.13087,25.854269,79.99974,8.675 1088,403.5402,194.42345,18.532623,45.40979,8.675 1088,13.9821825,174.4362,27.735096,75.2863,7.535 1088,4.463947,161.39587,28.912636,73.92604,7.28 1088,457.1427,212.38963,18.997925,34.478058,7.229 1088,507.69385,225.53769,31.100159,68.003265,7.033 1088,-5.649129,-19.333284,17.788773,45.034607,7.009 1088,111.9344,199.09744,22.415741,48.84903,6.693 1088,531.05255,213.1827,20.249573,37.89157,6.577 1088,526.40924,213.93298,30.506287,64.10364,6.529 1088,49.1985,167.21786,20.751266,50.139526,6.421 1088,450.9171,215.79877,19.463287,36.702133,6.326 1088,623.0889,-33.84427,26.54425,75.74476,6.278 1088,78.94348,188.18384,26.46965,62.756317,6.225 1088,552.6868,210.62106,19.523193,38.73564,6.217 1088,62.858986,179.77483,26.748672,62.197906,6.169 1088,627.44867,-18.42757,17.27826,47.772438,6.105 1088,-5.941778,489.76633,18.454102,42.40219,6.095 1088,-11.400876,-33.145363,29.448284,72.116776,6.075 1088,194.13818,213.76003,18.475525,36.298233,6.03 1088,439.99835,157.89807,20.824127,54.16281,5.979 1088,-5.575942,197.47205,36.038273,88.46936,5.951 1088,619.45807,298.36194,17.060547,40.996185,5.934 1088,-9.305253,463.2418,38.085464,94.34689,5.8 1088,582.13586,211.05865,35.189026,108.66156,5.74 1088,613.03,455.40454,38.953552,107.20001,5.712 1088,171.59998,216.2933,18.192123,36.581238,5.467 1088,626.93713,488.06165,20.1344,45.58777,5.382 1089,609.7604,215.3966,22.32428,51.68869,59.066 1089,-1.1231291,199.2072,21.895882,58.8127,40.097 1089,595.6174,215.54175,20.563171,43.344086,17.214 1089,488.73566,218.22066,21.51477,44.911575,13.824 1089,521.80615,206.70639,22.443176,45.42778,13.759 1089,8.460754,201.7066,22.13861,51.86943,12.471 1089,621.5001,207.42424,24.759644,66.08235,10.535 1089,434.62946,201.64984,18.94226,45.342804,9.744 1089,577.9927,210.39076,18.32544,34.48549,9.426 1089,524.93054,205.1277,29.416016,62.22133,9.289 1089,430.9338,214.15115,25.7034,63.440033,8.38 1089,511.41534,205.88708,27.120056,60.138733,7.898 1089,480.79556,215.42818,22.688873,40.647873,7.559 1089,586.4242,215.0049,20.11731,41.154343,7.421 1089,615.5146,230.47061,23.173706,59.018616,7.409 1089,529.3755,206.22585,19.481201,32.22592,7.076 1089,-4.636242,168.5811,18.463184,47.323456,7.008 1089,-4.741825,-16.378252,16.74681,42.28191,7.005 1089,-9.204529,157.52882,27.956896,72.637375,6.992 1089,-10.76271,-32.418373,29.500763,73.973305,6.596 1089,534.96094,208.01657,21.4104,34.81015,6.583 1089,-5.9075127,188.38103,35.56921,87.33571,6.579 1089,495.2289,212.59082,21.428009,40.471146,6.467 1089,441.2782,196.63654,18.362762,44.006866,6.452 1089,119.837715,200.04996,22.384148,47.219498,6.442 1089,601.29785,200.4728,33.586426,77.57329,6.364 1089,-17.966272,-62.92704,56.09912,145.175,6.193 1089,-8.649268,465.341,37.478176,91.76227,6.155 1089,572.17786,205.64526,18.070923,32.885468,6.026 1089,186.64787,214.68892,19.54686,36.2193,5.993 1089,610.75757,-46.649803,41.861572,99.39911,5.82 1089,272.67926,221.17056,21.226257,37.961945,5.754 1089,-5.9733076,489.3678,18.179337,42.240723,5.731 1089,473.77002,217.82254,21.635834,41.425476,5.606 1089,574.10205,207.85797,26.349243,54.1669,5.544 1089,28.87048,193.58702,30.0183,61.20352,5.54 1089,423.86786,170.98785,24.821747,68.49245,5.496 1089,626.65497,488.31412,20.676697,45.50296,5.431 1089,3.7111135,-13.946562,15.7236595,39.15399,5.41 1089,-0.65514445,230.34865,23.097284,44.931473,5.406 1089,561.60876,211.93646,22.055298,43.030655,5.389 1090,513.5515,202.7856,21.957397,53.2592,17.395 1090,426.65344,214.35393,21.656494,49.38234,12.368 1090,468.98816,215.34302,31.447784,66.141785,12.131 1090,392.87335,184.10004,17.806152,43.184616,9.475 1090,526.1597,207.03444,27.86322,56.52971,9.345 1090,495.85168,218.24179,24.027222,48.1586,8.618 1090,486.2243,210.57454,25.562042,50.032974,7.989 1090,502.51144,207.67946,26.884003,62.08055,7.84 1090,-5.3481493,-18.084835,17.456802,42.77548,7.361 1090,539.5057,212.66429,29.754822,57.628677,7.264 1090,585.0852,218.33112,22.092224,44.966583,7.199 1090,435.72784,210.64894,27.877167,66.25493,6.992 1090,586.9524,213.94199,18.3844,29.949966,6.976 1090,144.67964,213.30396,22.990707,38.023987,6.875 1090,-5.038531,228.35208,18.198435,37.50299,6.515 1090,387.3761,162.0488,28.268402,70.49672,6.507 1090,425.86087,199.66501,20.02887,41.122757,6.505 1090,623.5175,-33.116955,25.966614,72.175804,6.493 1090,517.20483,215.52307,29.273865,67.23694,6.492 1090,-10.792017,-31.73949,29.411247,72.33096,6.46 1090,627.82495,-17.493305,16.536865,44.43123,6.395 1090,432.18286,203.4992,20.88095,46.038895,6.381 1090,-5.7590857,489.6143,18.01873,41.44406,6.266 1090,556.74664,215.77368,29.60736,58.978607,6.257 1090,-4.166188,166.6576,18.310625,50.30342,6.113 1090,590.2022,215.98053,27.759338,55.286285,5.956 1090,386.49683,175.37491,20.440674,46.61348,5.938 1090,535.15125,205.10582,22.6781,43.76523,5.854 1090,-17.806301,-64.09077,56.50427,143.82155,5.832 1090,445.17087,218.74355,29.03595,65.39516,5.828 1090,593.1051,217.55121,19.760742,33.130966,5.809 1090,481.83762,240.74219,33.417694,62.217896,5.787 1090,621.78644,477.50134,29.355225,66.62628,5.773 1090,577.7215,214.11702,20.858032,43.799362,5.724 1090,113.88108,218.9075,20.819588,38.02133,5.692 1090,-8.710144,464.58588,37.388687,92.907166,5.69 1090,-5.8563843,42.867332,18.319187,39.162285,5.676 1090,585.3217,197.23212,18.27179,33.662354,5.659 1090,420.90057,203.04626,36.167114,72.05206,5.651 1090,466.38678,215.34323,22.298706,49.625336,5.543 1090,-0.053806305,183.03934,27.302643,70.46341,5.539 1090,611.12415,-48.253624,41.538147,103.39103,5.528 1090,583.42737,412.38046,71.456665,175.37692,5.352 1090,3.1596966,-16.447416,17.250868,41.230026,5.343 1090,-11.336147,42.73901,30.238775,69.961,5.246 1090,245.61388,235.87653,31.356308,60.32489,5.246 1090,-73.279205,265.01465,200.86066,463.03027,5.21 1090,535.40826,310.5669,145.28192,340.68896,5.103 1091,358.58435,217.2714,27.274597,62.624084,14.953 1091,412.3,219.13899,33.911865,66.73369,11.827 1091,9.073284,215.72034,22.908348,43.887054,11.219 1091,537.76385,208.36826,21.321594,34.51184,9.905 1091,509.26883,212.59126,29.101898,63.65709,9.77 1091,37.081238,215.02428,26.36377,42.798172,9.751 1091,354.6907,202.80235,18.702911,35.452667,8.843 1091,537.1587,190.06479,30.449646,57.939804,8.812 1091,315.4975,187.9618,17.975433,35.74559,8.444 1091,481.29828,221.33337,21.657623,39.23413,7.715 1091,426.1502,220.21573,32.071594,68.524475,7.645 1091,420.06314,197.75189,33.024323,65.24988,7.537 1091,361.62354,206.85867,19.24057,40.02339,7.484 1091,523.48016,218.59882,31.632019,62.878784,7.478 1091,533.3509,209.43965,29.97174,56.45845,7.471 1091,488.12466,226.93129,22.86728,46.933548,7.325 1091,378.45844,154.64618,20.577179,50.481857,7.176 1091,461.91452,217.96658,28.899231,59.916687,7.166 1091,447.45984,226.26448,25.22995,47.42885,6.96 1091,489.39694,89.83073,19.133057,41.962822,6.95 1091,531.31,212.46773,21.275696,37.22177,6.89 1091,-4.167275,188.02058,15.946785,39.314087,6.851 1091,585.96704,229.81918,22.430603,33.76651,6.81 1091,504.3311,220.4657,23.257477,48.947723,6.702 1091,627.02277,488.36987,19.831848,45.13092,6.699 1091,404.48865,124.143326,19.219543,44.446472,6.68 1091,-12.374019,480.4345,30.511368,60.761536,6.639 1091,472.7075,221.9517,22.754974,44.913284,6.609 1091,348.29953,205.73161,18.278198,36.685257,6.538 1091,482.6812,87.042404,18.880371,39.54921,6.454 1091,-5.137103,-17.179869,16.948807,42.462994,6.428 1091,437.91943,220.35434,25.533691,48.191284,6.368 1091,22.643023,212.92578,26.407274,45.704803,6.271 1091,626.7566,-19.020454,17.708984,48.562214,6.217 1091,621.53125,-33.268776,27.693542,75.551155,6.209 1091,351.0199,188.01472,26.298676,57.120438,6.055 1091,457.21252,221.72034,23.457977,45.056763,5.968 1091,-3.9811327,109.29389,15.114487,38.013832,5.946 1091,399.11746,222.22325,29.76773,71.5768,5.898 1091,-6.301449,490.86664,18.909405,40.255066,5.893 1091,381.58157,217.64453,28.26065,67.51074,5.828 1091,489.24548,216.51855,20.575226,37.081787,5.77 1091,338.26202,208.29668,21.427582,41.200302,5.722 1091,-5.270447,203.76343,17.920383,41.819458,5.692 1091,399.90363,215.49606,53.308777,97.29288,5.672 1091,321.138,199.92911,18.735077,35.437103,5.616 1091,475.30298,81.09474,17.609344,37.771988,5.614 1091,-6.702565,135.99226,20.457615,44.600876,5.61 1091,520.40625,214.91031,22.185608,45.986786,5.552 1091,468.61957,7.4180565,32.371185,86.40352,5.544 1092,586.2815,228.5397,30.422852,73.76218,86.36 1092,544.7024,228.35391,37.671204,88.99707,83.769 1092,606.2559,220.44551,26.831787,76.976425,54.87 1092,229.6333,212.61697,27.089172,74.076385,33.7 1092,309.94815,221.79813,29.770203,66.27182,27.808 1092,319.41138,217.54648,24.416382,47.59494,23.708 1092,434.19006,211.7263,20.678406,35.840286,14.031 1092,430.39996,212.54723,29.588257,61.027603,12.08 1092,365.88312,223.61418,29.136993,64.95625,11.584 1092,564.86523,222.84169,37.4057,87.679825,11.137 1092,416.97232,224.24329,22.233887,51.985718,10.321 1092,304.67593,222.78049,23.778595,53.64856,10.264 1092,380.48465,213.67513,29.456635,63.801285,9.744 1092,389.00885,212.40898,35.69104,79.04216,9.153 1092,295.3687,220.70114,37.7843,86.66324,9.098 1092,392.0918,223.89452,22.924652,54.044113,8.806 1092,218.07379,204.81093,20.948273,44.28192,8.792 1092,405.69916,223.3873,28.40448,63.530365,8.561 1092,420.6346,225.41652,30.309357,63.004776,8.344 1092,250.18639,218.97719,21.443436,57.485947,8.249 1092,442.29526,211.20137,32.37607,60.158493,8.087 1092,362.2049,222.04681,22.15451,48.83725,8.08 1092,323.7649,213.03917,36.59677,79.6783,8.001 1092,285.46332,230.93071,28.925964,68.90437,7.982 1093,528.8939,226.33067,43.796265,105.76134,95.057 1093,564.8825,222.12561,42.630432,109.986145,66.906 1093,489.4074,220.91788,40.446655,91.72092,59.817 1093,506.18427,225.3016,34.30957,88.56387,34.192 1093,542.7407,222.59984,47.058777,118.70363,30.887 1093,81.158966,209.50443,43.93824,97.068695,28.186 1093,533.06995,272.4595,36.082336,68.83136,24.605 1093,326.3449,223.50026,28.091003,46.07927,21.839 1093,231.86859,204.55286,36.605225,90.71527,21.394 1093,126.18375,197.42178,30.696732,70.489746,19.512 1093,132.6734,205.22716,36.522644,83.74007,16.845 1093,164.56773,209.54956,37.466476,87.19861,16.165 1093,240.92023,206.37292,22.19162,45.45755,14.246 1093,318.92465,221.58325,47.41629,61.231934,13.417 1093,243.38667,207.3356,33.291153,68.80878,13.301 1093,547.7161,225.55789,29.976257,83.77783,13.028 1093,214.71994,205.45537,37.959717,92.741165,12.157 1093,196.3197,207.7262,38.58539,91.13611,11.101 1093,149.1421,206.57512,38.259186,87.005295,10.773 1093,180.3883,212.55624,31.966278,62.095856,10.243 1093,601.29236,279.75415,21.177979,45.7771,10.087 1093,58.573742,203.57906,62.34406,142.50493,9.894 1093,585.3163,220.2078,31.350952,85.21149,9.219 1094,347.69128,203.23792,68.78195,153.27692,95.309 1094,284.6139,212.79456,64.48996,149.81494,95.229 1094,606.4068,191.4091,29.500427,78.96004,44.089 1094,616.3872,200.69969,25.606934,91.047745,41.306 1094,592.1428,189.72844,28.1344,73.127365,27.444 1094,265.76117,215.5481,56.10547,137.46027,27.412 1094,308.26642,204.49715,35.08609,72.32115,17.033 1094,277.11887,216.40936,32.44754,88.74036,11.127 1094,297.85858,271.64243,37.805664,85.7012,10.707 1094,603.34344,187.72432,43.016968,121.83067,10.116 1094,618.00244,247.39859,21.424194,52.46588,9.433 1094,288.71786,215.1083,35.444702,94.089325,8.106 1094,302.37875,-33.664986,28.390472,59.00731,8.075 1094,284.6217,205.27585,30.632477,70.263306,7.645 1094,306.4667,200.65532,62.706635,149.78865,7.278 1094,319.25232,197.58345,33.63571,61.28926,7.227 1094,232.84767,232.8148,23.094284,41.695084,7.179 1094,-5.389166,-17.601322,17.125683,40.735657,7.095 1094,268.14438,-14.091297,16.100647,31.658785,6.917 1095,572.6868,229.63158,37.762268,88.91774,88.662 1095,10.605612,216.71243,90.576805,235.25253,87.86 1095,395.63446,208.59012,33.115173,81.54129,81.853 1095,501.94547,217.0468,26.84024,68.11189,79.154 1095,346.05716,211.95851,48.96811,126.73372,73.606 1095,378.88983,204.76851,35.634735,77.01335,71.206 1095,617.4442,241.1832,23.8031,80.288025,58.826 1095,355.24353,261.7315,30.462708,75.86838,35.49 1095,409.97205,209.44096,33.279938,72.504166,19.115 1095,601.21924,230.59273,35.24536,94.44261,17.639 1095,488.90674,214.92537,26.754456,66.659775,15.805 1095,-3.144765,212.0888,64.846405,216.65387,12.185 1095,362.77545,203.7059,51.11316,124.07001,12.005 1095,421.98706,213.60213,25.795044,53.354416,11.373 1095,-30.405792,163.70801,140.91849,361.27148,11.121 1095,361.92874,196.77661,33.561523,79.96484,11.06 1096,48.853035,214.05057,77.80958,207.57053,96.426 1096,459.83984,227.55716,46.349884,122.177,96.116 1096,508.87994,219.78001,44.68628,133.26308,95.126 1096,343.81656,220.83498,25.31781,59.857864,94.44 1096,209.36337,206.47935,41.83441,88.34914,93.57 1096,250.89037,201.51807,41.94844,100.55054,88.697 1096,173.25223,206.79672,42.194763,82.63196,86.92 1096,404.6436,163.73303,29.194366,68.605515,19.831 1096,522.1262,213.68712,23.4776,61.12523,15.412 1096,475.39874,217.32639,49.949097,131.87714,11.849 1096,360.78418,215.51369,22.92926,45.240036,10.406 1097,527.8501,230.0781,64.42993,200.40802,96.076 1097,210.69975,207.73683,52.1967,111.17381,95.216 1097,266.0513,197.89436,51.18161,118.67314,94.463 1097,328.4054,217.52457,32.228485,68.41745,94.309 1097,512.90027,220.25844,23.072083,52.081223,90.364 1097,590.1835,247.10193,46.70044,178.32147,79.043 1097,152.85297,206.67117,49.40747,108.12332,65.72 1097,497.46265,208.62703,19.74585,42.30092,53.271 1097,527.6829,218.8905,24.85785,55.659943,46.278 1097,558.74536,239.66885,64.736145,192.87772,44.458 1097,340.0573,215.58029,30.3833,63.424408,25.078 1097,350.33017,212.40039,25.05783,49.819794,12.938 1097,-5.5850773,-18.053848,18.45963,42.19982,12.515 1097,288.05676,237.48685,32.68048,76.31485,11.404 1097,244.24547,199.82513,49.70201,117.51825,10.906 1098,216.17784,204.95395,64.494095,138.7096,98.964 1098,297.37616,210.42162,51.02832,123.65236,97.319 1098,122.14134,206.96785,64.07266,136.70549,93.49 1098,533.9701,224.26462,25.520325,59.67697,93.223 1098,335.43698,219.94092,33.56369,74.89447,91.222 1098,553.0591,222.68059,25.732483,60.93416,88.197 1098,505.7976,208.05057,19.953186,44.173065,57.938 1098,499.12054,200.80217,21.616394,44.259354,54.346 1098,543.92957,228.26836,23.201416,55.894455,22.447 1098,599.82764,179.24225,23.320312,52.46492,18.572 1098,317.38095,208.92172,45.486298,117.15637,18.537 1098,511.7293,216.39209,20.710938,41.366608,15.342 1098,376.89954,217.78717,22.62323,39.169586,11.105 1098,521.00885,213.64813,19.305298,39.02394,10.619 1098,220.53253,264.54263,31.338013,78.04184,10.355 1098,228.16435,206.53062,34.40294,92.7614,10.157 1098,-5.744425,-18.50834,18.200043,43.902077,9.267 1098,49.657013,180.4484,34.109886,78.00903,9.145 1098,277.53168,205.3705,49.30728,117.49901,8.974 1098,298.91006,201.14539,32.27643,79.94687,8.749 1099,11.13873,211.09451,86.69789,199.25717,99.097 1099,147.53539,210.40686,69.1971,163.29816,97.433 1099,458.51965,231.1787,30.665161,71.12636,90.936 1099,437.4211,231.1069,31.614166,72.839905,83.301 1099,201.72249,227.22162,37.891083,81.52002,53.776 1099,402.6681,211.00842,22.305817,49.657898,24.427 1099,375.45944,202.13922,21.95163,45.62697,15.867 1099,397.5755,171.57993,28.504059,90.37961,13.116 1099,180.98203,215.46121,58.58409,131.44931,12.106 1099,477.51837,198.85277,28.664368,73.23595,11.732 1099,468.3413,223.0318,33.162903,77.49481,10.617 1099,291.29477,201.36707,20.074188,39.147675,9.466 1099,484.89935,207.94777,30.949524,78.309555,9.334 1099,489.62894,198.7189,19.85254,60.917603,9.011 1100,92.00012,216.00195,41.810074,101.58569,94.824 1100,405.4106,229.2479,41.38199,98.37088,92.869 1100,130.86046,212.98755,30.273346,65.390076,61.889 1100,298.18597,198.15001,21.021881,44.82451,48.231 1100,181.94073,210.93306,23.777252,43.531143,43.004 1100,424.71863,238.98291,33.822754,89.776855,40.736 1100,333.95993,214.53159,22.428253,49.966156,39.951 1100,434.06033,193.93242,21.593903,60.16597,18.26 1100,-3.3109462,219.94218,45.81603,166.506,11.885 1100,325.8759,193.17096,35.800903,74.40515,10.875 1100,406.96317,218.29803,28.312103,72.384155,9.673 1100,320.26288,141.72728,28.208374,84.229385,9.538 1100,427.50806,211.1309,31.322388,72.39534,8.806 1100,272.66125,210.75594,21.880127,30.700165,8.7 1100,110.7679,214.91154,41.537582,92.459915,8.65 1100,249.21344,208.0382,19.250793,29.70105,8.124 1101,20.528477,222.5478,50.504284,122.53737,95.52 1101,486.3376,232.61855,62.726685,165.41606,92.114 1101,83.030716,216.95314,41.72206,79.24498,89.753 1101,160.89952,212.71326,25.026077,49.682434,78.284 1101,317.1082,206.25412,29.457855,63.29599,72.752 1101,453.03723,228.4234,66.89392,168.5791,72.256 1101,280.75394,196.5403,23.409882,50.653152,66.058 1101,152.80017,212.79987,23.41623,47.65738,45.252 1101,254.1632,204.8336,23.662613,40.922836,39.355 1101,233.07616,208.1834,19.139938,32.01349,14.457 1101,467.72586,224.6544,31.500061,72.28609,12.095 1101,139.0651,214.45561,23.500687,43.955612,10.807 1101,430.9652,183.81047,27.891174,75.47734,10.603 1101,309.1437,144.4853,28.011688,83.166534,9.69 1101,413.1465,212.29626,31.950409,81.05145,8.667 1102,169.84001,213.9412,31.990555,62.128296,95.855 1102,154.80176,211.70872,32.192596,62.58818,86.35 1102,340.07574,217.43333,32.388702,66.098434,66.112 1102,304.40503,195.21654,24.105042,50.53131,59.809 1102,8.74115,218.6225,46.78437,101.35303,54.098 1102,276.21115,205.52565,23.582794,40.689163,20.071 1102,494.32193,187.1231,29.286896,87.508224,15.498 1102,258.71964,212.03192,18.70047,27.523788,12.963 1102,419.70657,205.5726,28.1427,67.101074,11.625 1102,252.40181,213.1232,16.564743,26.317291,8.284 1102,314.92267,181.37111,29.986328,69.45619,7.935 1102,545.708,239.6392,19.26825,49.40193,7.88 1102,-5.55356,-17.391884,17.679394,43.33409,7.878 1102,531.07306,195.50189,42.746033,96.183655,7.568 1102,-5.024623,225.09796,37.613277,102.66016,7.478 1102,266.42282,210.74533,19.608154,29.760574,7.314 1102,235.11581,215.35504,18.231354,27.25241,7.163 1102,325.38873,175.46347,32.146545,76.63139,7.049 1102,457.714,187.28026,19.961243,55.343872,7.009 1102,215.38988,194.32649,22.918701,40.971466,6.913 1102,332.68338,134.96753,29.536957,83.7988,6.862 1102,244.30814,210.79568,17.019073,27.723999,6.713 1103,128.36398,212.97632,36.61035,77.29495,96.258 1103,361.03534,222.01292,36.141846,77.497574,93.108 1103,162.12816,218.80032,33.80681,76.033356,92.97 1103,320.42355,200.99799,23.207794,50.332443,49.121 1103,488.33154,206.37221,21.04834,47.998276,22.764 1103,293.4628,208.49797,22.055786,41.738617,20.567 1103,531.23114,197.0791,31.13446,78.66623,16.619 1103,563.8257,190.82765,39.829773,100.83507,14.314 1103,276.16318,213.51862,14.057739,26.892212,13.03 1103,512.65393,187.13419,20.362976,55.209564,10.866 1103,478.82562,210.45549,28.019714,68.19627,10.81 1103,474.5346,212.83553,22.510315,51.097153,10.769 1103,0.6245148,123.503784,24.741247,96.46225,10.368 1103,484.63568,208.90768,40.694336,92.93649,10.023 1103,148.94363,218.40332,33.67119,75.03467,9.095 1103,268.70172,213.11116,14.119141,27.155716,8.9 1103,514.21436,204.40189,42.541504,95.06836,8.454 1103,283.82883,211.45872,19.55722,34.617416,8.263 1104,111.947845,224.57327,48.594116,113.39221,97.028 1104,68.041985,217.86009,52.695053,117.668655,93.892 1104,152.07668,224.91293,33.33249,76.807556,93.096 1104,389.63885,225.83188,48.542664,112.88751,87.961 1104,304.8586,211.09547,22.881073,42.87874,54.726 1104,335.83722,201.19379,23.819885,53.08058,40.777 1104,565.4713,205.86264,40.710815,115.78705,16.283 1104,580.76526,205.96426,31.352966,82.36508,13.965 1104,550.0676,201.39192,39.32129,115.47649,11.151 1104,290.44547,214.12576,18.39383,33.42479,10.66 1104,281.68738,211.91336,19.804504,37.45427,10.137 1104,274.22388,210.3724,17.679688,33.92299,10.085 1104,-6.0893583,-17.101686,18.475075,43.845657,8.214 1105,465.8699,221.38596,77.47183,192.24619,97.645 1105,107.82849,224.06549,53.063538,123.66193,96.783 1105,70.00906,222.00024,54.268776,122.98572,92.559 1105,322.10144,212.21458,21.660767,40.70233,41.677 1105,355.83728,191.42834,27.577606,65.59027,39.094 1105,-4.539964,260.61157,50.214714,176.92105,38.803 1105,307.12637,213.71602,16.256866,28.924545,12.973 1105,316.24286,213.20709,19.722687,35.303528,12.871 1105,347.42804,194.67036,24.366577,52.392365,11.696 1105,299.63977,213.72778,16.715332,28.935883,10.161 1105,589.18,205.23901,30.106201,72.16626,8.043 1105,-19.390938,187.89514,86.19802,266.95178,7.964 1105,-5.5928254,-18.930197,17.935524,46.13999,7.691 1105,344.67343,183.3914,23.591309,41.494278,7.555 1105,-1.7145729,241.43077,26.797832,93.10695,7.089 1105,289.51318,214.66058,20.78186,31.720825,7.075 1105,365.8869,201.60907,22.203583,51.11998,6.775 1105,247.40543,201.78432,23.951508,44.669357,6.566 1105,1.6172504,207.8886,31.812723,93.360245,6.484 1105,10.022883,202.91144,32.341854,75.508514,6.353 1105,534.13763,309.25388,147.18085,344.58084,6.293 1105,-72.96961,262.9752,202.16934,468.4241,5.977 1106,335.3946,214.82718,21.98169,42.740845,71.328 1106,1.8112874,231.37048,64.003685,219.46796,65.993 1106,367.37433,198.39772,27.60556,65.47615,55.575 1106,314.56824,215.89664,18.452148,31.178818,15.926 1106,322.57596,215.85596,19.039154,35.461136,14.583 1106,307.36414,217.83827,18.65216,30.262497,11.542 1106,414.92847,92.03842,26.09433,86.026794,9.8 1106,376.71887,221.12003,21.344116,42.814026,9.254 1106,2.4203622,247.68932,36.79842,83.99098,8.438 1106,-5.6209135,-17.214817,17.482353,44.442787,8.125 1106,377.76813,189.393,29.30307,71.3772,7.933 1106,362.91754,193.08412,21.771667,48.46579,7.596 1106,243.03558,192.0154,30.09201,63.833023,7.5 1106,297.66312,217.4429,19.839355,32.23665,7.319 1106,-72.568596,264.7977,200.41818,469.72195,7.237 1106,290.29675,216.99039,19.730713,31.863663,6.994 1106,352.444,197.2224,29.462555,58.98683,6.828 1106,-5.1094875,26.288748,17.929123,45.199753,6.661 1106,-7.058003,299.01422,52.3792,165.82126,6.62 1106,401.06628,205.51842,20.372925,39.585007,6.247 1106,-9.700632,462.33957,38.12126,95.45657,6.168 1106,-32.69365,163.77423,141.82278,373.50116,6.071 1106,626.83923,487.9279,20.074707,45.98648,6.058 1106,-11.105495,-32.97534,29.36767,74.48168,5.908 1106,627.1752,-17.327784,16.902832,46.23815,5.907 1106,355.2945,192.90605,21.618042,37.019135,5.873 1106,-6.227801,489.06192,18.692896,42.16092,5.865 1106,-1.3518965,330.31348,28.7071,113.50363,5.856 1106,612.6637,456.5185,39.55359,105.148315,5.804 1106,572.798,269.92508,17.051697,32.41037,5.655 1106,394.0664,203.4786,19.397003,41.51567,5.611 1106,-39.250904,345.94403,113.26582,294.11597,5.52 1106,194.47981,213.98708,31.60234,55.901108,5.494 1106,445.9922,199.95047,28.724884,65.519684,5.452 1107,338.0623,216.07463,21.32312,48.374557,76.727 1107,321.3562,219.82784,19.16449,41.71071,39.201 1107,330.29678,218.45728,21.510345,46.882935,34.112 1107,315.90912,221.43935,17.673187,34.65471,26.472 1107,367.2232,203.68999,29.425385,67.649796,19.98 1107,308.21024,220.20328,17.544617,30.615738,15.172 1107,285.06934,215.96423,18.120605,34.228058,11.119 1107,362.4441,210.37332,23.123596,52.613434,10.612 1107,299.80823,219.66641,16.322693,30.322845,8.987 1107,-10.712465,-32.578682,29.913404,73.42369,8.0 1107,-5.780661,-17.777262,18.54723,44.914066,7.647 1107,349.39233,206.24893,29.309204,59.799408,6.906 1107,166.49487,223.79103,24.700333,40.98149,6.897 1107,361.51166,195.9773,22.247864,45.721527,6.829 1107,232.99538,216.70697,25.08226,42.111633,6.74 1107,-0.651356,21.163385,21.776043,57.260956,6.549 1107,395.34473,212.29144,18.774994,41.736877,6.495 1107,626.5904,488.05927,20.458923,45.695496,6.454 1107,0.7750845,1.8514004,21.51878,47.1557,6.372 1107,627.1766,-17.035051,17.525879,43.76776,6.364 1107,377.18442,228.94081,21.672516,44.00389,6.297 1107,416.49347,211.21529,20.421783,41.003372,6.191 1107,344.3131,226.62659,20.951721,43.901917,6.125 1107,-6.20476,489.5924,18.552301,41.557007,5.992 1107,622.44336,-32.960117,27.3974,73.73415,5.896 1107,95.54305,188.64163,33.162422,79.62863,5.845 1107,402.08875,206.66174,19.39154,39.508713,5.783 1107,-8.809899,464.42966,37.59426,92.88809,5.767 1107,-4.95738,69.4533,17.867147,47.58011,5.604 1107,377.18604,190.12474,31.070465,75.465836,5.547 1107,-4.692573,8.530666,18.432964,47.583107,5.491 1107,-9.212909,-1.621624,27.777592,70.73622,5.481 1107,612.73914,455.5404,39.50525,106.621765,5.309 1107,-73.08596,265.41476,202.24786,462.94998,5.257 1107,404.15314,221.18947,16.822327,36.462418,5.244 1107,422.82666,75.690704,27.51593,82.60666,5.201 1107,491.41046,207.86636,17.415863,37.611435,5.175 1107,-17.47192,-62.36725,55.8141,145.51184,5.167 1107,411.44275,219.69083,17.790466,37.321136,5.128 1107,583.0928,412.7638,71.64282,175.72931,5.066 1107,208.35777,159.71796,24.115204,62.314545,4.949 1107,536.3254,311.307,144.22772,340.36475,4.896 1107,365.114,182.182,29.710236,65.573975,4.891 1107,618.9356,-2.3519878,19.703613,37.034927,4.887 1107,-21.598043,402.27686,79.27884,175.69061,4.869 1108,361.578,205.6477,26.084198,62.440308,84.807 1108,433.3282,213.66838,19.96222,47.015915,38.917 1108,283.0598,217.23515,19.562408,38.33293,25.508 1108,299.1171,214.78584,17.197937,39.078964,25.007 1108,290.05472,213.90709,19.198914,41.123886,22.573 1108,324.0845,216.05908,17.704712,38.218414,22.267 1108,369.35895,200.68277,29.494476,69.841156,17.12 1108,306.65112,215.38892,16.574738,35.959106,13.886 1108,330.11966,213.74786,18.887787,45.345215,13.463 1108,316.22113,217.53076,16.224579,33.873947,13.375 1108,380.37946,198.95627,28.918793,69.72244,11.348 1108,336.57254,216.62743,21.125488,48.804245,9.988 1108,402.3903,230.92023,19.946564,44.024048,7.533 1108,409.44064,242.57098,18.778625,34.841125,7.207 1108,-12.737444,-42.465958,41.774918,104.57633,7.047 1108,274.45154,225.33047,21.292633,33.78003,6.737 1108,421.09045,214.49023,17.016418,41.022797,6.732 1108,491.8026,209.30113,29.557129,65.97005,6.726 1108,469.86264,50.045376,28.012451,94.94043,6.65 1108,394.14673,217.62175,20.47815,47.13344,6.439 1108,-5.3492393,-17.594011,17.710707,44.932915,6.439 1108,-5.868679,490.03125,18.085772,41.068115,6.317 1108,-8.812164,464.83023,37.622803,92.23947,6.02 1108,340.92108,205.80556,27.991028,61.238358,5.901 1108,571.7184,194.86104,16.729126,32.75511,5.886 1108,168.08969,218.39642,21.718582,36.252228,5.872 1108,1.0325015,47.953236,20.038128,52.09715,5.762 1108,439.13208,206.50952,22.027466,43.062042,5.728 1108,402.49222,214.4825,17.2435,41.511475,5.702 1108,-4.5821295,25.843723,17.343046,43.771526,5.685 1108,49.32534,197.5068,32.0205,78.060394,5.638 1108,429.19858,223.71393,16.999603,42.014557,5.573 1108,152.79826,222.01833,22.190277,38.45842,5.569 1108,388.0934,216.75572,36.960907,69.931595,5.507 1108,626.56213,487.81055,20.52008,46.18463,5.482 1108,266.3334,223.56624,21.332672,32.00232,5.429 1108,220.34819,159.24883,29.9534,65.8141,5.342 1108,475.48477,183.40298,16.669739,33.98004,5.317 1108,442.7453,202.31334,30.758392,59.91417,5.294 1108,613.07513,455.07724,39.214355,107.18448,5.211 1108,362.19287,101.76393,18.004913,45.28958,5.165 1108,160.51733,241.68394,35.146652,50.5959,5.131 1108,-72.86501,265.73035,201.61908,462.13647,5.118 1108,465.6004,173.0621,17.072388,35.570404,5.114 1109,393.60217,217.4135,24.749573,62.666153,76.956 1109,331.45248,219.58066,18.3815,38.36267,54.821 1109,313.87384,218.96835,18.291534,39.96408,52.638 1109,297.48126,218.28395,20.62204,41.093887,51.794 1109,431.80844,222.01138,26.061249,58.43698,46.454 1109,323.6701,218.94559,19.154114,38.643127,22.701 1109,449.09705,227.02206,20.89566,47.231262,17.739 1109,288.55273,224.40016,24.763367,39.713913,11.154 1109,512.33124,169.58818,19.474854,46.49025,8.591 1109,-4.886952,-15.981438,16.660645,41.816704,8.424 1109,402.03525,213.07,29.122772,63.511536,7.57 1109,304.2234,214.32066,23.19873,46.24904,7.399 1109,283.21805,221.14185,21.182251,37.942688,7.373 1109,145.21959,220.20929,19.917526,33.778732,7.067 1109,-10.777788,-32.07561,29.395916,73.60545,6.696 1109,519.93677,165.15175,19.577454,41.498993,6.643 1109,622.4324,-33.87099,26.922852,74.76943,6.41 1109,-17.819706,-62.82589,56.364956,146.62027,6.373 1109,440.44843,236.6297,20.312103,48.131042,6.211 1109,-5.9208784,489.6843,18.054571,41.36679,6.162 1109,626.66187,488.4537,20.463745,45.442352,6.15 1109,153.88257,209.96277,18.76007,33.947906,6.11 1109,626.89294,-18.340582,17.875183,47.201065,6.068 1109,219.13837,177.05411,32.38199,66.165726,6.01 1109,-8.641591,464.7735,37.360554,92.57623,5.929 1109,412.72983,207.4315,29.97934,63.6176,5.825 1109,274.87912,222.86818,20.3927,34.176376,5.797 1109,582.0331,9.498768,24.494751,70.71089,5.767 1109,-4.784496,228.45763,19.432552,51.73381,5.689 1109,139.0527,226.86086,17.53067,32.06453,5.624 1109,345.32822,219.77667,21.665436,45.894684,5.6 1109,290.58292,208.14658,21.280731,42.702637,5.594 1109,308.31836,222.46571,29.494385,49.282272,5.545 1109,130.96188,226.01369,18.833908,37.76158,5.537 1109,201.90073,224.63966,20.99002,33.185715,5.437 1109,-0.9897363,156.8513,25.59133,83.36041,5.41 1109,455.19904,223.37907,21.965302,43.23378,5.386 1109,337.1768,222.32599,21.780151,40.593353,5.332 1109,602.5437,-55.840557,53.531006,141.48761,5.284 1110,319.61337,220.76634,23.591095,48.543777,88.705 1110,435.87314,219.44481,34.692535,77.77528,83.531 1110,304.902,220.43869,24.1828,49.588654,73.475 1110,343.01694,223.19719,20.944733,39.718277,50.747 1110,423.89886,222.54951,31.772644,72.076645,17.115 1110,473.10028,256.7992,23.016815,51.863586,16.807 1110,362.15274,229.66397,21.157959,42.845673,12.199 1110,553.0185,236.89531,21.600037,40.42906,11.009 1110,353.56818,224.50388,20.689392,38.49707,10.569 1110,492.02826,246.88463,19.973572,38.277664,10.458 1110,394.61694,194.366,21.962341,42.44716,9.588 1110,405.4131,194.4643,29.444672,67.83136,9.388 1110,128.58281,234.1705,21.402618,38.360657,9.103 1110,554.1376,225.7252,21.213318,35.630295,8.226 1110,138.0197,211.00069,19.918777,33.517258,8.115 1110,447.69656,232.59964,31.032806,71.682465,7.475 1110,410.25702,255.12697,20.131958,47.234726,6.983 1110,127.51214,214.6948,22.767418,41.585205,6.963 1110,542.1474,229.0867,29.262573,59.074646,6.844 1110,145.96063,208.73065,19.410187,33.94272,6.662 1110,-10.296413,-32.693382,30.605263,76.63599,6.494 1110,407.74814,214.32639,39.18268,83.06662,6.491 1110,561.1469,229.90373,19.34082,38.33339,6.483 1110,-4.4018106,-16.1045,17.244438,43.59846,6.459 1110,275.20135,230.59227,30.755707,53.167557,6.14 1110,-11.520798,476.8599,29.222595,64.57846,6.09 1110,134.205,221.50435,23.316849,38.37657,5.899 1111,336.55032,223.24448,22.8096,56.15387,94.907 1111,313.97995,223.71196,24.502563,57.512314,94.19 1111,490.7677,215.17432,53.553223,138.0393,90.061 1111,363.6032,227.31604,20.510254,41.513824,52.068 1111,511.4088,217.82599,51.96521,141.51904,43.633 1111,535.3643,263.7374,30.470642,91.58481,12.72 1111,491.09802,272.41806,30.231812,83.780426,11.36 1111,106.581024,250.22911,20.519226,39.53627,10.829 1111,504.98947,236.8081,35.21884,86.79529,9.797 1111,431.0877,192.94165,23.406311,50.108597,9.071 1111,529.7678,242.29254,37.59619,73.822815,7.965 1111,419.26852,198.02777,31.679413,64.21823,7.494 1111,517.0203,231.71269,38.37085,76.21321,6.526 1111,250.19803,246.0404,33.853302,59.84192,6.484 1111,486.55902,217.77698,29.98938,62.9133,6.364 1111,-5.0098047,201.86047,17.960064,43.8591,6.265 1111,502.3119,218.14119,30.582947,69.02437,6.191 1111,-8.654127,464.5854,37.44876,92.1817,6.139 1111,-5.4793286,-16.858856,17.472399,42.717056,6.021 1111,-6.2829137,489.4596,18.72612,41.806396,5.976 1112,564.7959,229.39331,49.836853,133.4071,97.927 1112,305.80502,220.566,31.233673,81.34114,96.501 1112,328.99887,221.33192,31.589935,77.73314,90.766 1112,370.28308,228.04568,23.595215,46.897736,53.196 1112,578.2766,233.35852,33.033325,77.14734,11.892 1112,583.2963,228.23486,49.133728,147.26898,10.838 1112,317.07758,214.70546,29.009766,75.11943,10.619 1112,476.68378,133.48965,16.051483,28.589554,8.432 1112,484.38858,132.16383,15.19162,28.594254,8.198 1112,2.634827,239.49416,18.570042,33.876785,7.744 1112,592.2096,235.16687,33.837036,81.236084,7.597 1112,435.45276,200.54214,32.36731,66.59799,7.41 1112,390.07074,215.86969,29.678131,66.183105,7.223 1112,341.90894,223.41109,22.557556,55.80272,7.127 1112,-5.501787,-16.455318,17.388859,43.377598,6.857 1112,-10.935101,-32.140358,29.774534,75.1006,6.771 1112,516.5572,223.64796,28.806946,62.17958,6.699 1112,383.4901,224.4823,22.937256,47.477325,6.666 1112,626.53864,488.3667,20.677063,45.82953,6.596 1112,-18.658752,-62.411774,57.260475,141.37454,6.465 1112,491.865,131.0165,15.310272,29.006561,6.452 1112,499.28314,129.79398,15.986267,30.449097,6.066 1112,-6.126316,489.67224,18.450714,41.649536,5.927 1112,560.158,267.71875,33.578186,90.6749,5.905 1113,275.9802,214.76135,43.055664,112.68048,90.707 1113,374.31586,230.13696,23.878418,46.04413,70.392 1113,298.58868,218.14441,42.990448,107.53339,68.177 1113,293.0863,211.47914,31.138214,87.60509,20.708 1113,278.21545,214.80219,27.579071,70.5036,14.146 1113,383.99808,226.34064,23.514679,46.746765,13.696 1113,392.65308,223.62798,23.997345,48.07582,12.02 1113,281.3963,268.53244,23.269257,58.941742,9.414 1113,451.35278,204.6156,39.888336,75.32764,7.765 1113,622.9833,-32.671516,26.49054,74.48324,7.476 1113,521.82184,113.39719,19.800232,30.633514,6.836 1113,274.69418,213.93954,21.412811,45.36606,6.793 1113,626.9491,-18.878597,17.92389,48.465446,6.739 1113,204.51996,157.99982,30.788239,71.825836,6.649 1113,428.21,192.55222,29.5466,72.44827,6.636 1113,-5.413865,-17.240322,17.40887,42.519325,6.542 1113,433.33035,192.20804,21.194458,45.46106,6.423 1113,-4.9565763,268.44495,16.785355,36.953857,6.353 1113,-10.701363,-31.108175,29.266033,71.63253,6.309 1113,427.66635,194.49438,18.728943,35.356323,6.153 1113,-6.0821524,490.1656,18.450481,41.03485,6.082 1113,579.85266,236.02255,29.634521,65.528564,6.059 1113,297.7637,209.16522,22.913727,54.70294,6.05 1113,626.55695,488.23334,20.601013,45.682556,5.933 1113,417.73285,196.14871,20.300293,48.810547,5.871 1113,-4.1583014,254.93889,15.699911,34.610245,5.828 1113,-8.988928,464.8495,37.7803,92.7052,5.676 1113,9.906584,267.89532,21.372412,40.686157,5.444 1113,603.1964,264.69736,19.47345,42.066742,5.437 1113,-17.917149,-62.638363,56.208252,143.39926,5.423 1113,399.30783,215.1212,24.344788,48.14055,5.35 1113,438.64948,193.93024,30.289124,77.9386,5.314 1113,288.94247,211.42126,23.772522,64.46228,5.297 1113,-73.46107,265.6922,202.46692,462.07245,5.247 1113,613.28217,456.0716,38.184814,104.35889,5.229 1113,428.2161,202.2355,58.891205,135.06259,5.219 1114,233.56133,205.3786,58.175797,161.16437,97.756 1114,193.86954,208.23997,59.824768,154.97298,96.606 1114,378.07788,225.93283,24.008667,48.76056,86.401 1114,291.89307,209.66269,19.319427,34.09636,26.388 1114,391.82916,227.23892,22.117554,49.74951,14.602 1114,224.6898,212.33209,38.53337,83.980286,12.45 1114,421.43396,181.49883,28.764862,61.27826,11.551 1114,264.86734,293.41748,33.28366,74.64514,10.026 1114,198.69461,210.83357,37.00354,75.71483,9.618 1114,-4.9832745,-17.181757,17.095016,41.369022,9.364 1114,433.99594,181.65547,21.949951,49.854507,8.62 1114,419.69672,182.13452,18.675354,42.2312,8.063 1114,3.176343,-15.247917,16.976513,37.07307,7.983 1114,-10.521436,-30.000881,28.654259,66.81472,7.369 1114,513.7748,217.37613,22.1474,54.070923,7.349 1114,140.8474,220.63318,59.76631,115.166626,6.85 1114,434.572,187.87631,32.676514,77.398285,6.787 1114,240.89801,206.25784,33.74939,90.11304,6.436 1114,516.098,223.5212,29.447815,68.662735,6.251 1114,537.9337,97.71917,20.35791,29.688309,6.204 1114,546.0938,95.97649,20.406311,31.632751,6.174 1114,-17.44191,-62.48764,56.495594,140.85002,5.961 1114,-6.171216,489.37515,18.48148,42.247406,5.895 1114,484.3268,201.4219,40.574432,85.22287,5.889 1114,-9.068865,463.55585,37.749702,93.91315,5.836 1115,63.39558,204.20616,99.518875,250.53511,97.348 1115,382.55252,225.12308,23.153168,49.969025,84.121 1115,288.90158,208.69456,20.063232,39.361908,51.511 1115,108.67616,203.84787,72.05592,202.16782,17.422 1115,258.3547,206.63284,21.82132,38.569214,11.46 1115,51.672268,211.89621,72.06294,199.22452,9.869 1115,-5.353568,-17.791073,17.38657,41.93555,8.603 1115,613.3403,449.39417,38.997925,113.25293,7.066 1115,-71.132935,252.49944,205.439,471.46802,6.959 1115,525.8469,196.31985,28.481262,68.34476,6.891 1115,179.07906,135.4989,32.89418,65.21831,6.689 1115,407.43945,212.81558,28.177063,64.833496,6.578 1115,582.681,245.74417,27.443298,65.48505,6.565 1115,627.2313,-19.556114,17.52832,49.49984,6.516 1115,-11.509585,-31.582508,29.251072,69.31667,6.419 1115,371.73703,226.71994,23.858673,40.88324,6.316 1115,323.91858,208.82516,15.786133,25.041,6.223 1115,448.5558,190.38553,21.448425,41.602676,6.189 1115,-6.0169315,489.34723,18.278028,41.88318,6.169 1115,626.9786,486.3074,20.98523,46.179657,6.101 1115,618.3341,241.52106,20.028076,53.161743,6.095 1115,458.4045,193.28185,33.108826,75.06569,6.043 1115,219.81828,180.7604,32.38629,70.5708,5.989 1115,401.81006,221.97928,22.086365,46.406525,5.979 1115,64.51738,212.78525,38.4125,86.14746,5.961 1115,455.82373,194.60158,22.72165,47.502228,5.86 1115,-11.580603,476.38614,29.36247,64.90445,5.829 1115,391.52136,220.387,21.589478,47.23236,5.819 1115,315.22495,208.83266,18.099213,28.710953,5.691 1115,87.04329,201.13695,72.180954,152.64528,5.598 1115,443.48456,191.77872,32.585846,76.89453,5.493 1115,3.697939,141.67123,186.2114,412.57974,5.482 1115,69.45135,302.87732,66.30662,155.18805,5.433 1115,443.02304,189.19353,18.567535,37.060776,5.43 1115,622.52203,-34.365944,26.627747,76.97991,5.252 1115,306.72086,206.74068,19.024048,32.53273,5.234 1115,592.8655,252.34491,20.650879,50.25537,5.159 1115,94.02098,202.60188,52.565994,93.403275,5.143 1115,137.71594,247.99551,32.151703,110.40335,5.111 1115,539.9958,200.95844,30.308105,64.76935,5.016 1115,623.2051,238.2095,26.237305,74.59412,5.012 1116,379.4142,248.18735,26.66983,54.90268,76.602 1116,285.56592,235.8686,19.541626,36.46245,23.519 1116,428.565,214.42589,13.396332,27.791306,8.879 1116,249.26796,223.46051,23.113113,43.76306,7.894 1116,613.1195,452.47394,39.832153,110.92639,7.848 1116,-5.602026,-18.844406,17.681448,45.271164,7.453 1116,174.29405,187.41788,29.571228,65.798645,7.252 1116,389.64282,253.22467,21.711792,44.60669,7.193 1116,627.3605,-17.500975,17.135376,46.698864,6.578 1116,172.37273,150.88794,31.219986,72.526474,6.239 1116,-6.125559,490.26785,18.481056,41.36795,6.151 1116,-10.7211485,-33.02247,28.819805,74.611374,6.15 1116,257.2165,232.81116,20.960785,37.97351,6.133 1116,617.43524,336.9539,22.83728,53.43573,6.067 1116,555.5706,226.2888,29.20758,61.089005,5.996 1116,-8.722826,464.41824,37.53251,92.65408,5.89 1116,413.25458,201.43929,13.125092,28.505066,5.871 1116,191.11185,238.30388,32.129883,65.166275,5.776 1116,621.7953,476.25684,29.320068,67.315,5.683 1116,475.9755,206.93425,29.5961,71.61864,5.681 1116,232.15994,178.37007,29.244598,75.059494,5.613 1116,290.07632,227.1994,16.969086,32.913513,5.543 1116,431.95462,225.8638,26.211456,64.918335,5.512 1116,402.9704,251.23438,19.745483,40.62274,5.494 1116,622.7468,-33.690815,26.615845,75.88506,5.481 1116,147.01807,219.58981,31.36325,69.33188,5.389 1116,436.13376,216.17477,12.790161,26.086487,5.232 1116,372.99118,250.16939,23.419281,42.451218,5.223 1116,404.71985,197.71637,13.9149475,30.901749,5.208 1116,171.04927,226.82043,55.44182,106.6203,5.166 1116,-73.589554,264.96088,201.81685,463.2575,5.096 1116,462.33026,212.25288,29.791351,62.598038,5.063 1116,421.9963,209.27287,13.85611,30.22519,5.063 1116,602.8776,-54.124702,53.384644,133.8962,5.034 1116,183.53621,189.44691,31.881668,74.602005,4.99 1116,492.7248,211.61697,30.833252,80.94882,4.942 1116,-22.365759,400.29095,80.31702,177.0921,4.92 1116,181.9742,155.88083,24.798996,45.760086,4.917 1116,229.09624,209.33362,30.588058,74.55847,4.89 1116,582.93445,410.03314,71.48767,178.75629,4.84 1116,323.65137,230.6134,16.20935,26.689148,4.829 1116,536.81854,310.9607,142.87262,339.90393,4.817 1116,504.8279,217.72192,22.019562,51.378784,4.77 1116,3.2267957,-16.488096,16.227516,42.096294,4.77 1116,-5.1248875,216.12973,17.353039,46.660248,4.74 1116,596.7574,457.88806,39.753357,105.06586,4.723 1116,239.98355,213.4,23.39624,48.480316,4.673 1116,92.8409,276.15167,34.766296,67.54364,4.616 1116,458.32202,214.73773,18.86908,38.364197,4.611 1116,543.42566,210.2172,48.695435,127.72424,4.58 1116,407.69016,235.7858,26.31253,58.817413,4.521 1116,-5.1251025,154.9114,18.525036,44.577103,4.515 1116,542.4741,225.86008,29.292236,66.56531,4.487 1116,211.20447,189.87259,32.642426,79.72104,4.484 1116,314.39,236.75722,19.907776,32.499832,4.477 1116,526.0746,229.1769,29.721863,65.70787,4.434 1116,493.75198,227.95923,237.10568,514.8702,4.423 1116,161.54436,227.68054,46.32788,77.681885,4.412 1116,192.47452,175.43307,34.63289,82.279816,4.366 1116,-17.079327,-64.12035,55.491463,147.44363,4.364 1117,384.29047,259.31137,26.664764,54.93689,91.33 1117,282.75565,241.07239,19.943787,40.017456,49.811 1117,256.61432,238.2203,21.884338,39.17267,9.813 1117,399.8732,261.57074,20.509521,44.226288,7.942 1117,-4.8878613,-18.11714,16.619751,42.86617,7.582 1117,577.096,219.11832,48.50952,119.381744,7.303 1117,418.89417,254.45758,20.138763,41.782593,7.287 1117,168.41855,159.5924,32.820953,69.61983,7.184 1117,-6.193737,489.71146,18.332659,41.37143,6.995 1117,409.99026,260.494,20.151672,40.0607,6.755 1117,473.77292,224.68372,20.448639,47.959778,6.75 1117,131.04591,226.11081,31.236664,75.28305,6.701 1117,230.3141,207.18117,28.8741,67.78883,6.578 1117,585.75354,232.36543,32.455322,62.586807,6.295 1117,173.01996,191.06416,30.151047,72.71245,6.279 1117,412.51074,204.677,15.956512,35.226074,6.056 1117,613.5424,238.78854,27.027344,86.54736,6.0 1117,165.41473,237.87538,32.0907,67.018326,5.981 1117,622.70496,-33.249092,26.47937,75.25993,5.887 1117,419.84894,213.64871,15.605621,33.587997,5.846 1117,468.14944,210.59476,35.970886,85.60306,5.842 1117,613.6283,453.81686,38.447754,107.84073,5.792 1117,176.60156,238.1537,44.918182,78.099075,5.784 1117,-11.701032,477.2557,29.562706,63.36801,5.767 1117,-10.325266,-32.16679,28.80938,70.08121,5.718 1117,265.03104,237.70967,19.477295,35.151596,5.488 1117,626.9769,-18.88969,17.244568,48.598827,5.471 1117,394.054,209.72139,17.91333,38.736816,5.469 1117,429.29706,221.72108,14.223511,28.641403,5.455 1117,574.5934,237.6059,31.98108,68.23303,5.438 1117,461.89957,221.39334,29.33847,61.936768,5.431 1117,120.72109,231.61943,59.50254,121.85625,5.406 1117,250.14235,242.7951,22.125443,40.496765,5.398 1117,323.48117,239.84737,17.597443,29.073105,5.289 1117,590.14014,230.1348,23.287598,41.155823,5.248 1117,603.1109,-56.002472,52.549255,138.02905,5.234 1117,153.59442,231.93443,60.389267,118.38869,5.152 1117,436.3657,228.87854,14.004669,26.558487,5.151 1117,143.53183,232.81552,46.428772,85.29614,5.147 1117,221.4441,182.43707,29.184982,69.684845,5.132 1117,553.75635,222.53096,34.352722,63.415512,5.116 1117,459.05795,232.84543,19.45987,39.2836,5.114 1117,138.17657,183.48538,30.090088,77.816986,5.022 1117,240.06693,218.59192,22.585236,46.565796,4.976 1117,597.6229,213.17531,37.928772,93.75502,4.961 1117,-73.564,265.74615,202.00504,461.4806,4.951 1117,89.00343,243.57047,23.364822,42.580658,4.928 1117,565.1593,211.07649,33.90094,65.35225,4.922 1117,474.92398,199.01645,28.456451,65.29013,4.906 1117,315.0932,246.27153,19.565582,31.309433,4.885 1117,-22.333569,399.75473,80.091484,177.19211,4.884 1117,626.49646,486.2616,20.779785,46.849365,4.877 1117,298.3623,236.76192,16.75592,32.80641,4.862 1117,115.4586,363.82303,17.84581,27.39795,4.857 1117,536.4892,311.19345,143.08246,340.24002,4.84 1117,331.1072,238.29437,16.15503,27.453217,4.818 1117,583.4691,409.89563,71.45947,178.64124,4.801 1117,543.0879,223.19241,52.031128,130.68683,4.783 1118,384.43314,233.86562,29.454254,57.372574,90.526 1118,272.56015,214.8827,21.442719,38.85504,43.987 1118,492.55548,189.98819,29.914368,76.82907,14.881 1118,507.50705,185.7856,30.403961,76.77727,10.826 1118,397.78168,237.93169,22.863953,45.21373,10.166 1118,410.5815,238.7745,20.55249,36.257507,9.772 1118,-5.326178,-16.950089,17.480062,42.33441,9.711 1118,478.23727,189.05254,32.07065,74.37996,9.493 1118,248.47781,213.7622,22.303375,38.06317,8.522 1118,554.5213,184.69455,33.66382,66.658295,8.124 1118,524.14374,156.28065,60.30078,112.95128,7.59 1118,418.29953,241.83026,19.627228,33.223816,7.214 1118,-10.784618,-33.04582,28.847519,73.8889,7.172 1118,155.85182,218.37717,34.04808,59.99106,6.889 1118,525.31476,185.41718,30.363281,76.32684,6.878 1118,485.15015,219.26181,29.062744,71.76083,6.796 1118,425.62354,228.49673,19.213043,38.991974,6.515 1118,215.3215,173.67345,31.797958,70.43948,6.328 1118,289.7104,208.2183,19.742004,36.33995,6.307 1118,100.48598,199.01343,29.512741,69.9939,6.171 1118,622.5991,-34.264885,26.551819,79.266525,6.121 1118,471.5287,179.56206,28.53482,67.95093,6.062 1118,-12.133825,476.29303,29.444416,65.04382,6.029 1118,626.8956,-19.68223,17.767578,50.193096,6.015 1118,626.90234,489.7694,20.417297,43.48645,5.983 1118,322.3238,210.93068,16.8396,28.64743,5.969 1118,256.7412,218.24716,22.336792,35.902466,5.951 1118,129.92902,213.2119,42.405273,85.41725,5.934 1118,3.2480931,-15.390844,16.588001,38.9085,5.929 1118,-6.2916946,489.5492,18.372696,42.33423,5.878 1118,536.37616,192.98349,22.83429,57.65074,5.748 1118,241.9324,200.75427,22.549988,44.43245,5.719 1118,468.2901,201.2013,32.985413,71.93085,5.654 1118,50.29661,206.23416,33.720608,72.759674,5.634 1118,415.9619,221.56108,26.279785,56.369217,5.615 1118,614.00995,454.24368,38.108093,106.63425,5.559 1118,91.620026,201.60175,56.18048,121.2287,5.541 1118,602.75836,-55.132874,53.033386,133.38458,5.528 1118,8.539863,230.10098,58.257675,121.507904,5.485 1118,393.6679,173.55211,19.16925,45.31517,5.472 1118,91.190346,208.72202,31.86982,75.82529,5.46 1118,461.92853,261.94077,27.062256,79.856476,5.429 1118,543.3921,190.44974,24.052368,53.667465,5.427 1118,455.41995,169.0713,27.51181,68.146194,5.415 1118,174.44856,226.76352,24.331589,46.908997,5.357 1118,560.9588,172.21487,44.533997,86.42825,5.322 1119,377.1475,239.64122,28.78421,59.501053,94.93 1119,253.0907,224.44447,21.097504,41.52034,45.764 1119,400.31387,242.25403,24.496033,44.487793,18.202 1119,415.5206,226.47206,28.221954,60.342056,14.173 1119,388.50644,242.62595,24.952606,50.216156,10.553 1119,274.28778,216.4213,18.915161,38.071594,9.952 1119,133.49496,230.19385,32.71733,63.324036,8.377 1119,232.80197,226.331,21.334396,37.56555,8.361 1119,569.9129,218.42879,19.64392,46.924118,8.296 1119,-5.4039073,-16.659481,17.291767,43.53168,7.706 1119,111.3229,224.1329,47.855843,74.200195,7.491 1119,-9.465778,462.10608,38.08017,96.26172,7.201 1119,408.53363,252.0746,23.583527,34.69017,7.139 1119,308.4118,214.59467,16.389343,29.402252,6.781 1119,582.35846,196.20407,28.991577,72.4924,6.693 1119,-6.2036185,489.6472,18.210087,41.301727,6.511 1119,-11.03904,-31.532196,29.319134,72.53864,6.471 1119,128.75113,231.40846,24.432632,47.553024,6.459 1119,-12.374554,477.35052,29.6453,63.76001,6.351 1119,578.2226,214.29419,20.327576,52.728943,6.308 1119,242.91183,226.3998,22.2117,39.693527,6.263 1119,443.4546,194.28546,16.323486,34.251083,6.194 1119,623.2194,-32.856613,26.13794,73.9348,6.044 1119,313.63562,217.95331,17.090973,31.428345,5.981 1119,626.87146,487.19177,20.689575,45.476624,5.958 1119,613.0477,453.43796,38.74597,109.05942,5.91 1119,227.12296,216.9463,22.03621,39.09218,5.908 1119,401.84094,236.76517,42.971222,67.197205,5.882 1119,197.70616,175.87646,31.19696,72.5262,5.807 1119,-5.17264,1.7514362,18.256687,41.95588,5.693 1119,145.59445,235.78026,32.72238,62.176132,5.682 1119,82.16324,220.36713,45.723,96.09418,5.672 1119,627.49963,-18.07108,16.843506,46.917233,5.63 1119,97.21432,211.78166,46.432762,69.72505,5.609 1119,2.747857,-14.844473,16.061432,40.480957,5.563 1119,508.02502,184.60692,32.705994,85.62599,5.537 1119,109.75941,161.24965,31.317314,80.20792,5.511 1119,125.04861,209.99121,52.07441,72.320435,5.435 1119,483.6161,208.44391,32.614746,77.334595,5.433 1119,555.4699,218.88936,20.083923,48.167984,5.396 1119,471.35205,33.637688,21.926178,37.552345,5.332 1119,611.51013,-49.535202,41.57428,104.28035,5.271 1119,55.670547,216.016,59.421577,134.88951,5.243 1119,-17.39878,-61.103195,55.656075,141.99216,5.105 1119,563.1788,216.78725,18.69513,44.543472,5.09 1119,417.83344,222.18806,22.245789,38.42787,5.083 1119,463.77454,237.03767,24.289124,40.72737,5.04 1119,465.43164,14.414154,32.417847,63.41227,5.028 1119,475.73376,234.8995,29.912628,73.69061,5.018 1119,583.70953,411.2057,71.07428,177.05292,5.006 1119,422.8084,249.20699,21.705414,33.94081,4.985 1119,525.334,240.68944,31.000305,72.10045,4.983 1120,372.71115,214.75507,32.081146,62.255493,97.218 1120,236.21886,193.37314,19.327255,43.697296,80.703 1120,260.3618,183.27455,18.906433,38.891464,31.76 1120,3.368827,201.52534,31.107433,73.68611,10.972 1120,300.103,188.06284,17.294556,30.88118,8.999 1120,230.44289,193.02707,17.55951,35.22412,8.91 1120,384.54388,205.37303,33.18164,62.236954,8.392 1120,29.80148,209.48663,29.476803,72.382935,8.328 1120,399.81998,219.80904,24.536652,40.000717,8.303 1120,481.9299,194.39671,21.03778,53.033646,8.278 1120,213.54468,197.80489,17.334045,34.181396,8.119 1120,501.3788,165.74426,29.09616,84.98555,8.02 1120,219.7825,193.39148,16.739014,33.49745,7.843 1120,35.40944,204.72139,40.112656,88.53746,7.683 1120,-6.0289917,-17.61199,18.279034,42.86995,7.499 1120,612.9895,452.63837,39.903442,110.34613,7.346 1120,499.04648,213.88017,31.013397,75.66115,7.317 1120,424.8906,209.42873,21.668549,43.90425,7.267 1120,490.65723,205.48088,19.782837,55.152634,7.214 1120,48.52608,212.52335,21.684277,50.95108,7.199 1120,266.20175,180.9171,16.0047,29.998749,7.103 1120,-11.402628,-31.40364,29.728434,70.80224,6.678 1120,-8.962327,465.56628,37.608833,90.42297,6.524 1120,51.22011,207.1036,40.75111,78.55051,6.434 1120,-5.8485374,488.99463,18.130959,42.660583,6.388 1120,307.54117,189.59312,15.419159,30.171951,6.268 1120,444.2374,160.61073,16.231781,35.267868,6.255 1120,80.552826,216.6215,23.08397,42.013382,6.251 1120,252.26959,187.56898,18.914246,37.93959,6.039 1120,67.352776,210.84167,41.94831,76.72748,6.023 1120,516.1039,204.85457,39.244568,97.73598,5.996 1120,-5.3236723,213.2216,18.830475,47.641342,5.985 1120,25.506874,211.90828,22.778831,50.82939,5.965 1120,14.401446,209.78947,24.113857,45.5206,5.919 1120,627.26324,-18.410042,17.094788,47.031425,5.829 1120,285.2736,182.70874,16.764252,31.202972,5.784 1120,317.56363,168.48685,13.43454,28.770767,5.682 1120,363.7652,204.09628,52.109863,86.259155,5.627 1120,-5.014599,123.26765,18.036549,41.295128,5.581 1120,506.15045,188.46857,31.841125,78.72656,5.559 1120,202.72827,203.7219,20.40596,34.67813,5.556 1120,487.12064,207.64777,29.351837,79.992035,5.538 1120,293.932,184.90585,15.615051,30.599442,5.527 1120,4.024894,195.03362,44.249725,123.49141,5.52 1120,626.4143,487.14542,21.16919,46.51584,5.487 1120,80.81091,219.07967,45.668015,75.206894,5.484 1121,385.45026,239.19655,33.466095,69.82768,96.443 1121,228.24792,219.08855,20.71553,40.61342,67.741 1121,258.0363,207.94313,17.402283,36.1902,26.142 1121,202.53,230.52654,19.037018,30.446976,10.672 1121,407.73138,244.92229,23.253082,47.45845,10.547 1121,299.1546,211.13446,16.951385,31.28897,8.97 1121,501.4644,230.84746,26.510834,55.45363,8.719 1121,244.94585,211.02077,15.719589,32.757675,8.292 1121,208.96051,227.70331,19.670013,34.24933,8.052 1121,433.13553,163.82596,21.483337,54.646896,7.472 1121,448.77948,189.32536,18.932343,35.57782,7.381 1121,163.22656,151.75833,32.7162,80.11592,7.296 1121,186.19244,230.80562,19.759995,30.419052,7.166 1121,234.08179,214.10786,17.514954,34.1998,7.03 1121,516.0508,228.10394,29.493225,77.85333,7.03 1121,0.17610073,114.91313,28.59552,82.17494,7.022 1121,220.6787,226.93796,20.04335,38.47525,6.983 1121,415.8887,239.57582,23.394165,45.11772,6.767 1121,612.7901,452.82135,40.072083,110.15387,6.721 1121,433.34286,250.87086,24.427185,39.25505,6.588 1121,525.9011,225.77512,23.152344,51.987793,6.523 1121,-5.7850623,-17.307684,18.904358,42.851273,6.505 1121,2.5894415,-15.781478,18.346365,39.215107,6.221 1121,-11.05968,-31.600574,29.325668,68.995705,6.038 1121,378.38776,209.0666,55.135864,99.823654,5.877 1121,482.34393,74.96706,16.399994,34.56182,5.667 1121,610.6022,-46.46404,41.786438,99.41243,5.66 1121,441.73578,252.746,33.053986,46.793274,5.654 1121,-6.162708,489.46802,18.47016,41.625793,5.572 1121,28.576536,228.42513,32.125465,74.45949,5.514 1121,-9.396201,464.5161,38.117836,93.17944,5.504 1121,264.41226,208.42233,16.615631,31.92392,5.368 1121,400.01834,164.11647,26.053925,67.49831,5.352 1121,433.96875,234.77426,22.144897,40.79309,5.347 1121,17.322166,102.686066,32.98404,89.95218,5.286 1121,-11.039176,136.91632,31.495716,72.23941,5.283 1121,246.41763,207.0834,27.988556,52.474792,5.271 1121,179.78922,155.00363,30.773376,70.99393,5.266 1121,548.66077,170.34618,30.908997,79.55083,5.207 1122,409.66022,236.99702,49.1221,100.075516,95.59 1122,221.64685,219.34465,21.82634,48.967728,78.053 1122,251.88774,210.13417,18.26683,35.63675,27.307 1122,234.99255,213.56311,17.127228,31.02472,12.41 1122,619.2219,193.45352,18.387573,39.779892,10.01 1122,303.85034,210.84598,21.921204,35.488693,9.116 1122,245.54984,212.12744,17.326233,30.799454,9.084 1122,50.842396,203.7511,28.80798,66.47443,8.38 1122,192.25986,233.28185,22.362335,32.37654,8.014 1122,627.3203,-17.140772,16.783081,47.18425,7.001 1122,413.13147,222.95403,31.328613,68.41017,6.829 1122,284.37518,207.36061,18.135345,31.17279,6.662 1122,611.85754,-50.245808,40.11145,104.33026,6.443 1122,443.94897,248.00827,34.60266,65.56058,6.347 1122,-5.318725,-17.18617,17.553957,44.75094,6.252 1122,616.98083,205.95816,21.473328,47.635803,6.199 1122,447.84793,179.83818,19.767792,41.530746,6.199 1122,225.91458,214.54167,19.434906,35.762024,6.194 1122,-6.0206394,489.92844,18.179369,41.561005,6.125 1122,626.5954,194.07819,18.251343,43.336105,6.01 1122,626.7888,488.66803,20.531128,44.695984,5.946 1122,202.3697,222.52551,19.682617,33.87323,5.938 1122,213.70245,220.06744,20.42517,39.51526,5.911 1122,-10.716437,-32.58156,28.8942,75.82175,5.844 1122,230.13971,220.0693,19.841507,41.135437,5.799 1122,-11.83304,477.3006,29.928305,62.89209,5.558 1122,185.8802,238.83322,22.86383,31.297546,5.532 1122,-17.460941,-63.660923,55.941402,148.79459,5.379 1122,289.75473,210.78691,21.236664,32.42021,5.263 1122,536.5103,309.81097,144.29749,341.3283,5.19 1122,-73.03703,265.47626,201.81804,463.2155,5.172 1122,176.66243,237.21794,22.759476,30.992813,5.077 1122,610.7389,197.1637,20.183167,41.151123,5.042 1122,582.99615,413.14227,72.11401,175.85974,5.007 1122,213.00612,210.46446,36.860687,65.70497,5.0 1122,-5.2925577,54.25563,18.468102,45.221893,4.969 1122,16.563227,240.4721,42.084435,86.99042,4.957 1122,571.0055,186.43333,18.45581,29.479431,4.949 1122,523.0938,260.1133,17.766663,27.515015,4.883 1122,622.01514,183.05673,14.721863,33.87854,4.874 1122,604.5904,188.51132,14.391418,26.212418,4.872 1122,51.499084,221.8416,38.950043,84.93324,4.854 1122,613.6992,208.60428,27.578491,86.46329,4.852 1122,-40.539696,365.04074,110.9605,277.4247,4.849 1122,598.9254,196.0254,28.660706,55.98741,4.824 1122,612.89465,456.27264,39.038696,105.593994,4.809 1122,440.17755,163.55827,26.526703,64.977036,4.77 1122,-17.387005,436.11676,54.51658,140.6925,4.743 1122,493.2931,228.45566,238.45874,510.8987,4.739 1122,312.95117,211.79323,19.179535,32.17534,4.727 1122,444.73434,218.05019,31.812408,71.63756,4.683 1122,627.88257,176.43646,15.473755,41.366333,4.633 1122,587.1917,196.65913,16.325684,28.951416,4.631 1122,620.598,275.2575,27.147339,84.64331,4.598 1123,468.06668,244.04578,62.81479,137.11572,94.101 1123,217.29341,216.412,26.170944,58.702866,79.598 1123,252.56538,208.28151,19.033615,38.00746,52.57 1123,244.39777,212.40213,18.292633,36.7742,13.496 1123,234.22217,209.32396,19.148071,35.594315,12.584 1123,319.6008,211.44427,20.763397,36.964233,12.29 1123,184.25046,240.5491,22.621155,37.588135,10.884 1123,476.74854,180.39291,18.76001,39.728073,10.764 1123,292.1389,205.24261,18.50357,34.639496,8.533 1123,477.6373,276.39258,39.255524,96.07712,7.792 1123,627.26294,-16.961416,17.121887,43.95203,6.998 1123,-5.306798,-16.40142,17.40421,44.340065,6.989 1123,623.0839,-33.282906,26.41742,72.194,6.892 1123,514.98804,260.46536,37.720093,84.72186,6.729 1123,-10.564151,-32.20369,28.838821,75.65639,6.527 1123,211.69827,226.98236,23.148132,51.72168,6.406 1123,-6.259082,489.62982,18.598732,41.74005,6.257 1123,626.95825,488.4961,20.114746,45.037964,6.126 1123,93.34984,238.51157,29.313362,62.213196,6.0 1123,-12.153696,477.47394,30.168463,62.962402,5.993 1123,225.80984,209.88629,20.589462,38.970627,5.905 1123,192.52846,226.90918,21.273193,37.401672,5.825 1123,-17.382698,-63.174583,55.627865,147.80974,5.792 1123,535.81384,312.60275,144.20898,338.11832,5.556 1123,472.18173,153.59087,26.733429,65.82381,5.448 1123,603.39124,-56.362793,53.096863,132.33574,5.403 1123,582.8782,411.51483,72.67883,176.94556,5.384 1123,298.5645,212.10222,17.520172,30.334946,5.348 1123,612.94385,456.8576,39.072388,105.725525,5.243 1123,357.93542,211.5343,29.78717,51.320435,5.204 1123,500.83194,246.3598,61.42758,122.657104,5.201 1123,494.50467,228.19287,237.7128,510.8263,5.007 1123,-73.11952,265.3155,201.24222,463.0633,4.956 1123,-17.697021,436.63336,55.0554,140.0628,4.953 1123,-40.666847,366.01465,111.13529,275.4193,4.83 1123,-5.499653,118.46051,17.703842,45.73355,4.773 1123,374.95428,215.45293,23.709534,39.97206,4.711 1123,528.8975,250.68178,35.723267,73.23863,4.71 1123,299.03467,202.30977,15.7829895,26.054886,4.695 1123,594.4923,-45.17296,44.562927,93.66983,4.669 1123,307.98132,212.49721,19.187103,30.965332,4.664 1123,617.7021,205.16927,19.135864,37.47902,4.662 1123,355.11835,218.7993,18.617554,30.577408,4.634 1123,496.59998,233.9924,33.30957,67.09927,4.593 1123,580.147,199.56323,39.285217,93.75751,4.516 1124,208.19029,224.85995,31.616226,69.86313,92.974 1124,265.94516,213.137,19.102875,42.244965,73.797 1124,252.07434,216.7844,17.920715,36.890427,57.118 1124,350.8752,212.08032,21.22055,43.20511,27.379 1124,318.19318,209.3852,14.683411,33.529495,22.179 1124,258.2385,216.29167,19.947174,40.291977,19.13 1124,181.51846,247.23654,26.159393,41.272583,10.778 1124,554.7438,202.67249,18.760498,31.351593,8.64 1124,245.36383,219.64362,18.659973,36.507233,7.95 1124,331.36966,211.41983,18.839417,33.52849,7.115 1124,-11.075115,-32.64432,29.446592,72.45988,7.052 1124,-5.522442,-17.410227,17.34395,42.288776,7.043 1124,401.17053,221.24403,22.655884,38.480698,6.865 1124,523.0455,202.31914,21.014526,32.644897,6.687 1124,379.33627,120.73276,17.118195,34.34781,6.677 1124,626.8183,487.9712,20.13446,45.301575,6.371 1124,165.14178,220.08258,39.831024,68.295166,6.315 1124,341.47488,212.41818,20.108978,36.214554,6.146 1124,-6.146217,489.49997,18.59119,42.398834,6.141 1124,538.13544,203.46466,20.002686,30.424469,6.077 1124,234.95206,217.02954,19.244171,38.534943,5.873 1124,223.24889,217.62828,21.386093,47.04036,5.835 1124,-17.96049,-61.445656,56.11579,139.98297,5.819 1124,372.5655,132.80612,15.685425,29.160767,5.814 1124,516.00323,271.63303,34.996765,55.503418,5.781 1124,610.6461,-47.080814,41.76062,99.65759,5.646 1124,282.0244,209.32423,17.716858,36.550247,5.632 1124,-8.842272,464.30023,37.57525,92.91046,5.613 1124,404.71735,216.22995,29.578125,54.39435,5.549 1124,627.4794,-16.393583,16.621094,43.394978,5.536 1124,580.9995,189.13857,38.013428,84.32597,5.524 1124,548.043,195.62305,40.48059,77.44501,5.336 1124,416.0678,215.82086,24.424469,41.21048,5.313 1124,612.8786,456.70328,38.936523,105.31998,5.291 1124,-73.565895,265.01013,202.67279,464.4021,5.268 1124,431.0399,214.62285,24.068176,41.56636,5.268 1124,597.62305,181.12846,35.672607,94.78868,5.218 1124,477.45782,204.24939,29.207825,62.208954,5.21 1124,363.29044,132.5136,17.113464,29.201797,5.202 1124,467.2827,196.74632,30.127808,62.738052,5.144 1124,311.03143,213.18173,14.301941,30.590088,5.106 1124,583.1953,411.61438,71.54028,177.14417,5.085 1124,529.00366,273.38733,34.954346,61.960358,5.033 1124,359.72754,215.28949,20.918274,40.007553,5.026 1124,183.72699,220.29504,39.37619,70.24301,5.023 1124,-21.987047,401.20093,79.73483,176.48578,5.008 1124,481.69675,198.49493,42.818268,82.42987,4.976 1124,60.489914,240.86584,28.901321,72.74713,4.952 1124,563.29193,193.22102,39.456482,78.80162,4.938 1124,6.4237556,-19.962296,29.445873,74.32468,4.928 1124,324.1004,205.47438,13.665985,24.747406,4.918 1124,561.91626,200.23424,17.0318,24.985184,4.886 1124,536.4087,311.3345,143.90863,340.58566,4.796 1124,618.85583,489.88745,19.539917,42.052124,4.794 1125,153.1731,227.32909,47.282516,106.70314,95.062 1125,259.07028,209.80211,21.470947,54.796463,93.355 1125,241.68878,214.0974,21.535645,50.88878,79.414 1125,363.71472,218.92818,22.490662,44.367325,43.527 1125,249.09055,210.78912,22.085815,53.062286,36.311 1125,133.4859,233.39615,46.517822,104.967896,11.562 1125,324.54288,212.2558,16.111664,32.68251,11.518 1125,157.3954,220.2611,30.703049,73.01906,11.14 1125,-5.624519,-19.42772,17.444912,44.73258,9.377 1125,505.02536,213.34152,21.340668,41.65416,8.478 1125,485.6485,217.72383,29.968506,66.1624,8.308 1125,374.78336,218.09837,20.924622,45.609573,7.734 1125,328.79196,213.12492,19.356049,36.430984,7.689 1125,346.4228,214.74164,20.858856,37.989624,7.47 1125,282.8326,214.22377,18.805786,37.67987,7.425 1125,380.94916,134.71916,14.2170105,26.913269,7.284 1125,202.97485,241.49785,23.87384,35.115555,7.17 1125,497.60858,219.67274,33.23883,68.7036,7.139 1125,623.0112,-34.030884,26.847473,74.72725,7.089 1125,459.26184,217.1876,30.451843,58.37825,6.814 1125,627.2555,-19.088783,17.465271,48.240044,6.735 1125,290.61154,213.50049,17.56845,34.31378,6.603 1125,272.0917,218.1914,19.822845,41.69394,6.537 1125,512.65704,211.90654,21.291382,40.93474,6.388 1125,389.4644,151.6463,12.180206,28.583145,6.324 1125,-11.004095,-33.37375,28.88378,70.27888,6.11 1125,371.39716,135.00766,16.522278,27.070908,6.032 1125,-6.241194,489.1719,18.58649,42.21457,6.011 1125,444.9818,221.42798,30.297913,59.467224,5.986 1125,216.87442,236.22566,21.707672,34.37462,5.959 1125,-8.96834,464.5968,37.74282,92.622986,5.937 1125,626.6322,488.14798,20.69629,45.60666,5.853 1125,389.53247,134.98889,13.156403,26.749847,5.81 1125,514.25244,208.79517,41.738037,69.66846,5.779 1125,226.16177,222.4813,20.304077,39.02536,5.762 1125,602.97314,-54.861393,53.424072,131.94528,5.549 1125,451.1654,251.84694,31.915314,87.98854,5.511 1126,239.19095,213.28339,24.685272,59.94516,93.898 1126,216.07126,212.4652,26.424393,61.15291,93.662 1126,373.68384,218.06137,23.76764,54.31317,55.669 1126,323.07907,211.65454,17.329498,41.298965,53.858 1126,319.26163,211.64856,14.797577,33.685562,11.816 1126,-5.496599,-17.398932,17.548307,42.827793,10.37 1126,607.6263,279.13385,23.78186,50.066803,8.016 1126,-11.052351,-31.492414,29.268465,69.457634,7.762 1126,-1.5559459,219.03793,26.88976,87.81119,7.761 1126,616.43713,275.00537,22.259949,51.16385,7.28 1126,3.6081553,-15.6579685,16.175179,38.70402,7.269 1126,193.78119,232.1303,22.076736,37.42079,7.014 1126,248.56963,212.84154,18.89589,47.4738,7.002 1126,499.22852,218.38312,30.486938,69.823,6.917 1126,311.4366,209.39055,13.83316,30.32193,6.612 1126,166.3449,257.24414,26.4487,35.41678,6.578 1126,345.2753,214.8437,20.824982,40.41597,6.501 1126,476.02615,211.5145,30.801544,67.555664,6.344 1126,-6.216104,489.66162,18.591377,41.775024,6.273 1126,460.28122,210.94226,28.498566,66.81738,6.006 1126,329.48535,211.36641,17.759277,35.4507,5.853 1126,622.2782,-34.10778,27.552612,77.875275,5.835 1126,-9.224555,464.63596,37.859493,92.85629,5.772 1126,0.38386345,218.00168,46.018013,145.99933,5.647 1126,612.9123,453.5585,39.815002,109.0914,5.582 1126,360.72647,219.25981,30.074127,59.03676,5.582 1126,8.533769,218.9654,70.502686,183.76862,5.473 1126,236.16028,208.42366,19.680756,48.44725,5.436 1126,626.8063,-20.127676,17.996948,50.854237,5.427 1126,580.48615,230.27844,44.001404,76.12537,5.419 1126,602.8602,-54.251762,53.368958,132.29268,5.412 1126,225.12073,207.40775,21.25798,49.86087,5.364 1126,-73.48357,264.03073,202.31755,465.4783,5.362 1126,165.41089,224.86853,29.79483,55.616882,5.322 1126,621.604,478.3353,29.212524,66.35135,5.297 1126,457.2066,207.56558,23.141754,42.82837,5.275 1126,535.6583,309.87244,145.14923,342.65088,5.263 1126,-17.228338,-64.07141,55.256996,143.76955,5.218 1126,467.16656,200.3266,31.182098,58.454834,5.207 1126,622.3263,265.5786,26.668335,67.024994,5.207 1126,582.71216,413.3526,72.19867,174.38898,5.2 1126,435.79095,200.33163,15.424316,26.8405,5.096 1127,391.3066,216.1907,27.06836,67.5491,93.639 1127,182.66516,211.27988,34.341827,83.46875,91.545 1127,207.21613,213.47498,31.351044,79.68298,69.153 1127,320.6937,209.887,20.909729,42.942596,55.225 1127,196.20053,205.53336,31.600494,86.351746,22.044 1127,309.12744,210.99698,20.43399,40.495667,15.133 1127,210.34848,205.73312,21.087357,63.789307,9.741 1127,223.32741,222.1531,21.572311,51.646698,8.475 1127,328.2631,208.63986,19.348907,38.962357,8.417 1127,233.79413,218.87282,18.588623,40.373337,8.393 1127,591.0679,200.65935,23.428528,49.772232,7.938 1127,190.28647,237.31358,23.187714,61.552475,7.759 1127,487.41632,206.09213,24.46048,42.15512,7.274 1127,149.87747,208.33179,36.77246,81.99765,7.165 1127,-5.5788846,-17.89061,17.808477,42.828167,7.107 1127,-11.108139,-30.717922,30.005178,69.763016,7.017 1127,578.46313,202.21524,20.864319,41.923645,6.91 1127,132.88853,230.18188,32.27565,60.57074,6.572 1127,623.0798,-34.23352,27.003113,73.1342,6.343 1127,499.4563,199.58977,30.005615,57.432755,6.24 1127,192.3037,199.97726,23.412674,59.504486,6.116 1127,377.06555,224.11098,29.224792,63.696274,6.103 1127,483.24435,211.74252,32.664948,69.47427,6.09 1127,-17.861902,-63.144073,56.055763,143.60628,5.882 1127,612.93524,455.05972,39.7677,107.23569,5.536 1127,165.8539,222.54408,31.90004,68.54692,5.505 1127,-8.823448,464.2473,37.65085,93.25452,5.486 1128,406.86407,221.6659,40.95224,95.077576,97.245 1128,92.449326,203.20258,50.57016,150.15173,96.125 1128,131.87589,215.36417,49.569458,135.09024,95.007 1128,312.37506,213.98572,21.944824,42.65213,57.261 1128,166.51604,211.55573,28.48265,70.810425,32.715 1128,300.90182,214.69676,20.16867,41.478287,31.922 1128,141.3723,218.15796,31.42186,93.47284,17.054 1128,336.4646,214.95294,21.685913,38.616135,12.65 1128,170.66255,206.07965,21.228043,42.846054,11.867 1128,139.84595,263.76315,33.676712,88.33566,8.432 1128,112.191925,211.04889,48.099747,139.44617,8.28 1128,521.5043,212.12927,34.20996,65.81421,8.167 1128,-10.823105,-31.302391,28.887415,71.68756,7.923 1128,-5.8344603,-16.73835,17.984322,43.297123,7.767 1128,460.74734,223.40419,33.578583,60.11519,7.016 1128,519.7419,212.75983,23.43341,42.6857,6.494 1128,345.86795,217.2945,21.819427,40.438477,6.223 1128,564.9936,194.28421,15.275574,29.0428,6.082 1128,556.7906,193.09283,15.465332,28.165512,6.054 1128,450.22192,222.25385,21.840027,42.499207,6.052 1128,622.8461,-33.65664,27.054321,73.32142,5.995 1128,-8.745201,464.38623,37.530006,93.41803,5.922 1128,506.98575,214.2944,35.423676,68.20529,5.831 1128,537.9224,221.5467,33.00421,61.909683,5.8 1129,468.5889,217.44702,56.794525,148.58252,97.281 1129,313.68433,212.25868,20.715393,47.025955,73.792 1129,338.37155,215.5195,19.580078,39.233795,43.026 1129,298.74493,211.57314,21.406586,48.789444,34.773 1129,359.14243,214.4444,23.892242,49.010468,22.705 1129,136.69727,208.58658,23.090958,52.416595,21.786 1129,143.68103,202.69032,23.946075,48.03856,16.318 1129,159.57703,205.88435,24.879303,49.811264,9.606 1129,480.13278,266.1417,35.83133,96.8974,7.983 1129,345.49466,215.95139,20.079742,41.647766,7.444 1129,580.2634,201.70403,29.440796,58.416275,7.39 1129,481.15543,226.42494,34.695404,86.01637,7.259 1129,131.05391,203.20056,22.043213,46.553116,7.16 1129,-11.043916,-32.71118,29.68895,73.91611,6.842 1129,149.15921,210.5583,29.891205,64.46571,6.782 1129,627.44214,-18.94968,17.316406,47.31297,6.678 1129,-4.4061346,188.61441,17.009857,41.264053,6.506 1129,-5.779112,-17.354284,17.59874,44.35612,6.466 1129,623.6044,-33.508785,26.517212,75.643585,6.334 1129,-12.662785,477.59424,30.98597,62.851685,5.733 1129,-17.426245,-63.764576,55.48497,147.42294,5.681 1129,570.10724,211.5324,34.08197,65.51387,5.654 1129,534.932,311.33887,144.96411,340.67603,5.652 1129,30.458084,200.23112,51.8656,118.73024,5.59 1129,162.67667,210.85416,30.554672,65.86453,5.574 1129,613.26733,454.3491,39.426147,107.75253,5.557 1129,-6.5412855,489.51093,19.110165,42.906982,5.554 1129,420.39645,105.078735,14.113861,34.770325,5.453 1129,293.20834,206.95506,18.236084,39.323288,5.453 1129,412.98163,104.258415,14.114471,35.274574,5.4 1129,135.73286,197.73138,33.485794,86.05713,5.368 1129,125.19733,-3.8771286,28.499344,67.770744,5.306 1130,316.08737,213.47195,22.44571,48.774902,79.963 1130,287.9008,211.37985,25.583466,53.816986,77.472 1130,358.50223,212.63762,25.82367,58.272995,53.51 1130,98.73018,205.5898,29.708618,59.782578,50.52 1130,346.84665,215.41415,19.646606,44.49167,25.706 1130,340.0334,214.23528,19.437317,42.620987,21.763 1130,108.00167,196.73793,29.95211,60.49495,7.908 1130,120.44362,205.1964,22.323792,43.673004,7.698 1130,429.378,222.04535,27.428955,68.54132,7.011 1130,213.59613,200.93526,30.986328,63.274124,6.931 1130,618.6048,181.60347,18.895203,39.81273,6.687 1130,328.83694,214.46437,19.997467,44.43135,6.658 1130,615.64844,324.53946,24.795044,72.83008,6.629 1130,419.30847,223.22597,19.781616,49.08049,6.557 1130,485.78552,221.13498,30.121338,69.07507,6.476 1130,225.85173,210.59201,20.837692,44.19162,6.451 1130,105.65819,221.62549,31.554932,73.89215,6.352 1130,484.89142,215.85223,16.806122,26.345413,6.284 1130,623.06866,-33.74451,26.549133,72.580574,6.131 1130,498.48508,214.1708,17.42807,28.02388,6.02 1130,307.61948,212.57639,22.525726,48.52829,5.962 1130,-8.782201,464.33792,37.62734,93.243744,5.877 1130,114.91377,-17.212646,17.901718,38.659756,5.874 1130,-6.6712227,489.44638,19.299004,42.778046,5.858 1130,627.40344,-16.709227,16.833618,43.253273,5.828 1130,-10.879791,-31.920732,29.344355,74.764694,5.821 1130,123.113365,-17.899427,17.621925,40.345665,5.813 1130,133.58615,-32.33798,28.681015,69.21227,5.752 1130,130.499,-17.245365,17.866562,41.087025,5.709 1130,490.1997,218.69626,19.350708,35.452805,5.614 1130,-5.588861,-17.505836,17.164616,44.473377,5.558 1130,604.86536,186.50417,17.421082,30.792145,5.518 1130,88.69966,198.77573,31.055351,59.69507,5.494 1130,507.48508,205.97498,15.302948,28.992538,5.443 1130,428.16418,215.49165,14.414093,29.81659,5.424 1130,442.91864,217.88849,15.971741,30.737503,5.403 1130,187.39392,217.28633,29.813278,58.852524,5.388 1130,-18.454723,-64.081604,56.46468,147.65723,5.368 1130,513.6146,241.1764,33.818787,64.15877,5.362 1130,466.03735,229.51672,20.414062,44.07242,5.354 1130,433.70795,7.4255333,23.373016,53.779427,5.341 1130,118.82532,-34.501286,28.03186,69.035965,5.287 1130,613.17487,454.05096,39.735413,108.641846,5.278 1131,259.30283,210.00694,26.491272,55.85942,92.757 1131,288.94586,213.90776,25.709412,53.98256,85.832 1131,328.38028,214.15074,26.70639,60.619064,79.143 1131,342.5641,214.36066,29.297607,67.00766,46.678 1131,35.73551,203.39601,35.154297,71.60353,28.387 1131,354.54465,218.979,30.05899,67.38815,13.402 1131,188.23698,207.38124,30.662628,60.714493,10.446 1131,300.12695,217.1055,24.046204,48.529724,9.768 1131,49.425697,201.40598,31.989952,68.87796,9.637 1131,619.3447,170.47206,18.919373,44.788574,8.64 1131,439.14456,223.43872,33.6149,78.571655,7.939 1131,21.888838,212.75931,39.66584,86.53897,7.887 1131,425.10724,0.18424416,22.675812,49.208336,7.714 1131,-5.5918064,-17.243914,17.812218,43.533863,7.347 1131,208.15079,211.06706,24.13649,47.46782,7.032 1131,477.74615,226.8523,13.477478,21.525345,6.948 1131,396.23737,219.03853,15.886841,37.146225,6.71 1131,214.94255,209.44194,30.36345,66.70421,6.685 1131,365.7708,227.05869,25.048431,51.22409,6.62 1131,144.13774,219.31694,34.265656,56.533035,6.54 1131,-10.547413,-32.062958,28.88055,71.0262,6.492 1131,270.02466,210.20917,24.688324,51.73767,6.326 1131,-4.994894,252.04364,17.685463,47.399597,6.245 1131,66.186905,207.17934,19.962845,39.044144,6.209 1131,413.46588,219.80328,13.720642,31.233337,6.185 1131,28.834486,178.80083,52.78379,110.39851,6.168 1131,426.61353,242.86841,20.286621,42.836,6.14 1131,184.30403,206.44365,24.854935,43.317566,6.055 1132,228.60117,212.95872,31.108643,62.77617,95.547 1132,292.92395,219.55292,26.424438,64.98587,93.751 1132,256.74835,210.4884,29.84021,63.818726,93.285 1132,312.0454,217.13791,26.85492,70.46759,73.631 1132,340.2207,225.79987,28.346863,70.64447,17.695 1132,325.0142,222.87439,29.913727,72.16211,15.89 1132,303.4569,222.2967,24.272614,61.880234,13.459 1132,446.42987,232.46259,28.291382,73.72052,10.365 1132,620.02246,171.31113,18.963135,42.252045,9.506 1132,440.86685,235.10571,23.056,50.67035,8.503 1132,386.04993,222.21846,19.09021,44.246933,8.272 1132,450.25983,233.81693,20.018158,42.35379,7.637 1132,-5.999318,-18.508173,18.583513,44.722572,7.462 1132,460.91904,227.48965,13.87085,23.962723,7.158 1132,359.20944,79.45943,28.093231,83.98775,6.998 1132,618.2595,261.74362,18.884216,47.014954,6.795 1132,488.3923,222.72565,20.827545,33.271454,6.594 1132,433.6288,239.71811,22.296814,43.464844,6.49 1132,379.006,219.96245,19.028503,45.57036,6.466 1132,622.77136,-33.684994,26.825073,74.20885,6.457 1132,146.65738,226.57616,34.684784,70.416214,6.368 1132,-10.569799,-32.83583,29.499739,72.41537,6.358 1132,426.71326,245.02675,20.107971,37.89952,6.342 1132,-6.359937,488.73254,18.886621,43.12091,6.165 1132,-5.358677,263.6002,17.970833,42.700867,6.149 1132,98.920364,210.313,32.773605,67.048325,6.109 1132,458.2762,232.52527,17.438385,33.441345,6.008 1132,617.74243,184.50958,21.220825,45.84198,5.986 1132,50.29635,214.60577,34.075127,63.565308,5.977 1132,613.20465,453.3753,39.478394,107.76166,5.877 1133,275.28,222.14465,30.04712,76.63464,91.401 1133,301.18527,219.68454,30.811554,83.03891,87.975 1133,253.79166,214.01105,27.732117,67.83774,69.033 1133,262.71323,216.48752,29.7435,70.98062,36.307 1133,219.40778,212.05057,23.521545,47.163788,11.711 1133,339.01422,226.83011,29.39981,71.888245,10.381 1133,315.92126,218.86018,28.226929,77.92091,9.436 1133,378.98074,218.07176,20.303009,49.54344,9.355 1133,621.8909,473.4597,28.665588,69.90689,8.432 1133,461.57983,226.2874,13.096954,24.151321,8.1 1133,552.66113,229.80482,25.163269,44.40599,7.827 1133,492.2796,230.06648,14.882843,27.558731,7.796 1133,498.23248,228.80916,16.68396,29.329391,7.708 1133,325.2738,222.3771,31.590149,76.62091,7.488 1133,323.78333,203.30664,17.383606,47.04567,7.09 1133,242.83723,223.5144,29.082993,61.019043,6.914 1133,484.64725,235.58026,28.732635,66.38556,6.901 1133,-6.05797,489.077,18.015188,42.181183,6.828 1133,393.47272,221.99252,19.035797,46.95346,6.458 1133,485.57678,230.96822,13.77002,26.646164,6.397 1133,460.04166,241.72464,17.528381,37.39685,6.369 1133,356.46503,71.743164,30.17334,94.49216,6.299 1133,293.73755,204.58624,29.25824,79.976746,6.27 1133,426.5337,109.06987,20.739838,51.458527,6.236 1133,446.1114,253.70679,29.087646,58.572693,6.201 1133,597.20435,198.41144,29.43988,61.76129,6.172 1133,435.31128,53.63394,17.527618,33.97287,6.094 1133,-10.976497,-31.955448,29.6936,69.3513,6.093 1133,-9.204777,462.07538,37.49018,96.09747,6.044 1133,504.61383,227.80829,18.586792,30.701721,5.943 1133,568.3928,223.46204,22.469849,41.55072,5.936 1133,-12.404547,477.40506,29.813635,63.421844,5.933 1133,427.95294,53.14579,17.563904,32.7938,5.923 1133,-5.80081,-18.030268,18.28327,43.449055,5.914 1133,570.72253,190.74951,19.221008,37.5744,5.882 1133,566.0463,186.15387,28.599548,63.01776,5.87 1133,396.11252,216.17299,14.261932,28.586197,5.821 1133,469.2793,226.43436,13.139343,24.64914,5.799 1133,403.18356,230.09717,17.695526,43.45691,5.788 1134,299.84747,223.16315,32.0054,91.620056,85.4 1134,323.2437,223.43707,32.819885,91.55524,34.156 1134,417.8266,218.02094,20.300201,52.191284,12.204 1134,199.80948,222.0656,24.823914,43.078476,11.604 1134,333.34448,213.87527,29.306458,81.183624,11.264 1134,370.19955,229.87099,31.430206,72.112625,10.075 1134,342.70084,232.47543,23.564667,58.10736,9.608 1134,316.1164,209.98361,30.249512,88.48984,8.928 1134,492.74197,226.02296,14.605896,25.515793,8.837 1134,352.2068,228.68155,23.10962,52.759583,8.428 1134,2.4020875,239.07596,21.753456,39.35736,7.742 1134,461.17093,46.211517,15.20932,31.890457,7.627 1134,-10.7655945,-31.794334,29.705317,75.30508,7.622 1134,419.78436,217.61295,15.572571,29.634064,7.584 1134,468.64746,44.048107,15.596985,33.821354,7.486 1134,563.2643,228.31741,18.936035,33.490814,7.275 1134,-5.6436577,-16.129045,18.395193,43.30661,7.191 1134,356.2529,231.15103,39.14444,95.4003,7.078 1134,627.2136,489.70013,19.948792,42.82489,7.067 1134,226.05084,211.2974,21.236694,40.12001,7.012 1134,409.9362,222.07268,21.05545,48.93239,6.775 1134,360.92224,231.47102,25.245972,58.32762,6.666 1134,627.5478,-17.06404,16.917786,47.00271,6.624 1134,500.1901,229.29242,14.264191,27.423004,6.475 1134,346.2352,205.66205,18.368683,44.249405,6.339 1134,-17.888056,-63.327923,56.21617,144.84813,6.326 1134,613.26166,456.86472,38.2771,106.08023,6.262 1134,476.38058,43.16358,16.571198,35.277763,6.069 1134,-6.246138,489.40543,18.636179,41.854156,6.006 1134,383.75522,230.55539,22.903778,45.39682,6.002 1134,379.19415,63.339104,30.633179,94.8061,5.973 1134,602.4566,-56.14913,53.29059,139.45918,5.897 1134,516.3818,230.17545,17.28595,30.28128,5.864 1134,424.62997,226.77039,20.651672,48.97061,5.843 1134,-9.22165,464.66983,37.82371,92.4556,5.827 1134,312.50934,208.90645,22.815308,64.064804,5.823 1134,24.8435,237.12811,25.062029,36.323395,5.785 1134,326.2047,202.83583,28.295746,73.956955,5.776 1134,489.2464,50.51407,21.792664,46.384552,5.72 1134,80.88016,238.78941,35.79889,53.663315,5.565 1134,500.02295,220.28395,15.698608,24.927765,5.559 1134,537.5633,225.78902,18.176025,32.581467,5.523 1134,522.3964,227.77925,18.768372,30.897293,5.472 1134,529.4807,225.2161,18.547913,33.115265,5.445 1134,326.4414,135.57463,26.57315,79.89989,5.39 1134,406.2732,223.10342,37.068176,91.802216,5.384 1134,217.43416,218.42859,22.440506,41.91394,5.375 1134,486.78455,229.98602,12.841797,26.616882,5.313 1134,430.4852,220.45277,26.701233,63.283035,5.243 1135,312.99442,222.07321,39.98294,112.76401,91.293 1135,346.17703,225.1347,37.447296,110.10028,57.596 1135,338.89636,255.03859,33.552795,82.78029,18.545 1135,362.91962,229.25247,31.644897,80.628296,14.799 1135,380.9552,227.41188,30.843872,69.175064,10.403 1135,357.4218,207.4038,28.361725,80.02812,10.19 1135,449.82022,225.7427,20.318512,49.58969,9.745 1135,375.07736,233.71239,24.919342,57.97444,9.115 1135,330.7517,229.15176,31.902374,103.78418,8.803 1135,396.2816,231.48218,29.149323,65.39801,8.68 1135,340.60745,220.33138,30.798737,86.899155,8.404 1135,2.1862185,239.17332,21.489996,39.569992,8.298 1135,284.87216,209.8779,15.378235,26.506226,8.229 1135,355.7315,267.08328,30.610474,72.63132,8.016 1135,274.60434,209.018,18.421875,34.35533,7.981 1135,291.2537,208.67525,14.92807,26.893356,7.784 1135,190.88385,227.31981,32.44655,52.004135,7.752 1135,-5.294898,-15.788483,17.324814,40.977203,7.341 1135,345.1698,204.16508,22.292847,61.527298,7.207 1135,408.93896,231.47958,22.336945,43.39026,7.058 1135,243.70755,204.56259,18.247559,34.01033,7.023 1135,622.63257,-33.487537,27.059326,74.847374,6.947 1135,523.329,226.22774,15.868225,30.257431,6.934 1135,516.35236,224.18248,15.641602,27.228333,6.897 1135,-3.1027608,209.20929,15.098772,39.424088,6.767 1135,263.9102,210.65009,28.17575,68.10083,6.633 1135,443.67224,222.85388,18.163269,42.984802,6.623 1135,250.36714,204.89607,19.340012,41.31427,6.612 1135,456.1394,230.56923,22.593689,49.910843,6.604 1135,614.0006,165.76611,25.259583,75.72159,6.595 1135,455.74368,223.70312,33.772034,86.50867,6.563 1135,626.8533,-18.89878,18.153809,47.187653,6.413 1135,411.53622,230.02888,30.370056,64.566574,6.409 1135,602.92737,-56.95092,53.171875,140.09572,6.298 1135,-10.718752,-30.9655,29.016296,71.79527,6.239 1135,440.29526,219.80203,33.49713,85.33365,6.228 1135,-11.703049,476.60928,29.890293,64.0466,6.093 1135,600.1267,221.05365,33.085266,86.046326,5.999 1136,378.44263,229.24918,49.790405,144.92603,96.747 1136,324.03357,225.22096,46.88855,136.65404,96.212 1136,353.86777,226.30757,46.82614,137.66838,80.913 1136,256.83322,211.59857,19.054443,51.420135,17.52 1136,358.14853,217.57254,26.647339,59.16568,15.396 1136,388.81348,217.37434,30.483063,80.24199,15.084 1136,386.28864,278.541,32.575684,91.346954,13.366 1136,472.55652,227.81537,24.087402,54.708252,12.059 1136,360.4671,276.6987,33.239624,89.88086,11.411 1136,408.21008,226.15628,22.806213,54.746704,10.996 1136,400.45078,220.1017,21.74524,59.683487,10.988 1136,428.1747,229.34674,29.722382,77.119995,10.092 1136,347.83066,218.71391,36.12732,96.037674,9.923 1136,331.0468,223.41537,33.587463,80.37244,9.857 1136,248.17542,206.44502,25.811523,73.07634,8.733 1136,476.59674,223.59888,17.175507,36.23633,8.597 1136,285.14978,212.71408,15.914734,27.878693,8.293 1136,404.76373,224.42056,31.835754,93.35324,8.281 1136,486.55246,221.79669,33.33481,82.470215,7.748 1136,-4.894117,-15.846519,17.052397,42.20727,7.703 1136,430.3825,227.28615,12.356262,23.922241,7.483 1136,471.09082,221.1387,35.14099,94.433716,7.441 1136,450.9277,222.39644,30.932495,64.015,7.127 1136,500.75256,222.91537,34.25409,83.798065,7.117 1136,-10.15811,-31.533634,28.84913,73.45268,6.93 1136,372.87784,222.01184,34.157013,90.154785,6.924 1136,540.32227,227.49068,15.157593,31.478622,6.814 1136,420.32928,226.38408,14.604065,27.771072,6.757 1136,532.60596,224.1948,15.174011,27.43692,6.756 1136,452.12354,224.18939,15.204468,26.686996,6.726 1137,348.47397,232.5758,64.108795,169.27502,91.486 1137,378.32788,241.47357,63.549988,160.80219,81.644 1137,421.58606,228.211,62.947144,182.90363,79.853 1137,364.37537,212.8222,27.7547,62.70938,17.254 1137,422.0243,213.23975,30.38263,71.84723,14.72 1137,252.74904,212.5683,17.10942,43.44037,12.055 1137,432.72324,219.36311,42.751007,126.781906,11.129 1137,394.8479,242.1565,34.787384,78.70685,9.289 1137,548.94556,230.27234,14.828674,28.649628,8.488 1137,441.15228,226.34486,32.184875,73.761856,8.008 1137,355.6395,222.56528,41.750153,124.50168,7.954 1137,99.460915,214.64824,41.664864,74.46175,7.915 1137,353.75565,216.30795,29.537811,69.06787,7.741 1137,458.90042,220.75491,17.581207,33.527435,7.727 1137,114.329056,210.62247,41.151245,73.09534,7.687 1137,541.5144,229.44742,15.551575,30.64978,7.653 1137,152.0281,218.68375,23.154785,43.658875,7.563 1137,274.60406,211.8361,17.873474,30.464401,7.312 1137,259.09244,217.11641,16.45227,36.37938,7.291 1137,467.39835,218.31133,16.118744,28.686935,7.037 1137,502.876,223.78377,33.33084,80.79021,7.014 1137,267.3048,212.81917,17.634735,32.849686,6.982 1137,532.63965,236.63174,32.148804,67.77887,6.954 1137,498.93585,228.71117,19.843933,47.55153,6.909 1137,449.56833,222.4632,20.233948,41.55188,6.889 1137,434.13696,284.14044,41.817596,134.46152,6.862 1137,367.82715,296.28482,36.951294,106.03412,6.85 1137,131.54929,214.28992,30.36139,59.408783,6.707 1137,376.661,246.14697,39.447693,88.76654,6.704 1137,392.3766,315.0565,37.173584,91.21948,6.542 1137,-5.8433332,-17.862225,17.964113,43.994892,6.494 1137,556.4581,229.58665,14.251343,28.537918,6.476 1137,-6.3871384,489.68286,18.951565,41.77539,6.47 1137,156.65005,215.01207,28.539993,59.371872,6.466 1137,-12.11974,-42.52687,41.319916,102.60577,6.422 1137,290.64966,211.1567,19.18576,36.607178,6.309 1137,83.83937,218.31102,43.59021,75.43727,6.237 1137,145.50302,215.52312,21.599976,38.267456,6.174 1138,419.64542,237.50473,87.94278,248.34665,91.563 1138,513.88904,235.34642,79.9762,234.82735,81.768 1138,375.50842,222.4639,25.462463,44.666656,70.363 1138,259.84442,213.55072,19.079407,45.970367,21.843 1138,470.94952,307.6289,60.766174,175.77121,19.429 1138,366.20694,207.68686,29.061646,57.13141,19.052 1138,467.39896,233.55257,45.069366,108.66432,18.497 1138,455.49847,224.74771,23.734192,60.74356,18.121 1138,382.57648,210.31812,22.144867,46.72357,12.103 1138,456.21375,234.86469,65.77728,193.21393,10.972 1138,453.0915,228.3162,31.374603,94.028625,10.609 1138,523.53326,334.03784,56.009155,160.36002,9.401 1138,116.30837,222.6196,32.22814,61.848846,7.94 1138,496.92578,230.11908,230.50842,514.8796,7.843 1138,564.90546,231.24806,15.874817,27.997086,7.669 1138,266.45392,223.254,17.047089,35.4505,7.217 1138,371.71838,199.38376,39.67108,76.22583,7.207 1138,451.14044,218.32715,22.347229,50.68466,7.079 1138,627.01196,-17.486197,17.604736,45.322384,6.953 1138,587.4021,2.349122,16.717896,30.801113,6.896 1138,-5.506532,-17.625786,17.817871,42.881638,6.798 1138,251.9317,216.3125,19.933594,44.659973,6.678 1139,474.7252,230.88246,33.91693,96.9684,76.57 1139,402.46555,223.49045,18.744171,43.143555,67.4 1139,274.8379,213.83759,19.90512,47.911865,57.429 1139,545.4896,259.30566,87.30969,272.1311,48.91 1139,493.72687,235.00998,28.397705,78.06064,33.528 1139,394.63544,219.27518,20.583008,42.77896,22.244 1139,465.3503,235.17589,28.967987,79.93526,17.947 1139,401.43613,205.06186,20.587158,45.689926,10.912 1139,385.80075,209.38528,22.50888,49.670197,10.883 1139,587.4308,284.88504,48.231445,196.04416,10.83 1139,481.61023,220.53723,19.746613,63.646423,9.923 1139,489.86963,226.10854,21.146362,63.345657,8.042 1139,491.7444,226.6983,238.81458,513.72485,7.989 1139,533.0982,303.7788,147.4508,347.84204,7.931 1139,626.5244,486.57022,21.034058,45.891815,7.881 1139,258.85635,212.71039,20.953278,44.506927,6.773 1139,597.6678,230.26347,15.207275,28.95494,6.754 1139,505.83145,239.9816,33.80429,73.0332,6.475 1139,603.9635,232.62442,15.62384,34.04825,6.418 1139,19.955948,213.88239,38.30247,83.477356,6.327 1139,34.479683,215.45195,39.527733,79.146255,6.289 1139,613.0497,452.69104,38.332825,110.32556,6.287 1139,407.63818,229.42404,19.675507,44.53894,6.199 1139,290.86725,211.82536,18.276855,40.200012,6.18 1139,-6.2173057,488.78754,18.730513,42.514465,6.179 1139,370.27347,215.57837,20.107147,40.157883,6.062 1139,6.255541,216.91496,28.53031,66.39168,6.023 1139,608.7346,301.21667,39.460022,142.01135,5.932 1140,484.64893,224.0382,51.724,151.3332,97.923 1140,409.44638,221.98032,19.093018,45.714935,78.369 1140,274.92914,212.33195,21.68689,52.35405,49.067 1140,396.93317,221.25768,20.566345,44.395615,28.055 1140,504.17108,233.37825,33.84076,88.076065,15.867 1140,289.5059,215.63712,20.143951,51.44101,13.456 1140,486.88232,223.05466,30.366577,75.874146,11.201 1140,407.31012,198.04652,25.521759,64.69011,9.936 1140,619.11664,233.62587,17.698975,39.824326,7.755 1140,296.16306,211.61449,20.858276,45.489456,7.301 1140,612.75775,451.18314,40.11609,109.4476,7.233 1140,490.33698,220.60925,21.007141,50.45175,7.06 1140,622.417,-33.96435,26.990479,77.59791,6.978 1140,626.9871,-19.951714,17.534119,50.475826,6.964 1140,378.11267,219.81546,19.114746,36.79068,6.537 1140,626.6466,486.95834,20.88208,45.826447,6.532 1140,-11.863424,473.79626,29.904905,67.40259,6.463 1140,-5.856494,487.50626,18.608955,45.299286,6.324 1140,-4.362603,206.57388,17.083202,37.541794,6.309 1140,415.61066,228.27234,19.760925,46.99948,6.257 1140,248.54128,219.36693,21.048569,47.85475,5.946 1140,184.49149,218.56506,22.289597,35.644882,5.915 1140,602.53064,-55.134743,53.579712,138.23743,5.71 1140,-11.857495,-33.94679,30.232292,74.64271,5.69 1140,126.680084,212.1664,48.663025,63.154892,5.662 1140,469.59637,224.88193,13.082275,29.720917,5.654 1140,521.3164,230.38867,54.776367,137.00049,5.616 1140,582.11554,233.22217,36.61731,85.879395,5.61 1140,456.0957,81.966774,25.753296,76.50057,5.588 1140,473.72278,231.64204,43.74237,121.7805,5.547 1140,-3.9104443,122.463585,15.6991415,40.632637,5.518 1140,-17.60343,429.11255,55.414597,148.76624,5.432 1140,137.69742,201.01976,34.745758,54.49774,5.423 1140,-4.1529837,190.34053,16.527819,39.222137,5.395 1140,268.66003,210.73549,20.952026,44.777817,5.354 1140,-17.205326,-64.20079,55.306458,144.58638,5.341 1140,571.3259,238.00644,17.345337,34.791718,5.308 1140,-5.9958363,218.598,18.02555,39.405533,5.294 1140,502.58972,222.5523,51.749634,131.276,5.275 1140,526.0638,239.45853,23.684387,53.004883,5.272 1140,453.32306,238.00122,16.250793,34.635803,5.265 1140,257.02316,212.87697,21.760345,46.67189,5.255 1140,547.7555,243.43756,39.674255,109.440186,5.244 1140,535.27026,309.55353,145.65009,341.68842,5.239 1140,292.0173,220.03557,27.884521,59.2321,5.203 1141,506.14838,229.56723,60.621094,173.53424,97.922 1141,401.36646,221.72124,21.962677,47.803055,80.12 1141,262.3366,216.0144,24.428192,58.982117,18.139 1141,506.98563,236.16156,32.23117,97.46228,13.97 1141,234.39777,221.96603,28.950256,67.75253,13.893 1141,522.35815,230.36911,35.645935,96.48663,12.348 1141,408.4696,213.2125,21.492706,47.395203,10.742 1141,322.63593,223.73799,32.256165,75.59099,10.51 1141,244.767,217.85623,30.366547,63.448578,9.801 1141,463.3504,232.20164,10.528931,25.267105,9.511 1141,470.3268,231.59735,10.652863,26.59143,8.448 1141,316.1338,213.77936,16.107727,30.124039,7.98 1141,478.69495,230.72057,10.967834,27.758438,7.84 1141,321.72607,218.85278,23.589752,51.586212,7.828 1141,613.07196,453.03973,39.543518,109.472534,7.422 1141,393.57303,211.85846,23.306702,50.09201,7.359 1141,518.2464,219.71037,28.5047,78.89635,7.276 1141,307.90088,212.7281,20.022156,44.145554,6.992 1141,-2.1516013,204.92523,25.98699,67.004974,6.918 1141,622.94385,-33.35786,26.804932,75.41052,6.803 1141,530.4298,235.37039,55.314087,150.09207,6.719 1141,-5.8015213,263.62988,19.190971,45.10846,6.704 1141,459.45898,249.02089,19.714783,39.175705,6.631 1141,134.23459,209.26512,26.778778,40.147034,6.627 1141,415.85675,226.1514,17.565063,39.838776,6.61 1141,-12.16379,476.62573,30.134344,65.338135,6.441 1141,462.30548,241.8793,12.464996,30.300537,6.328 1141,626.2257,487.3069,21.284363,45.577576,6.293 1141,-4.774356,204.50568,19.217676,43.01149,6.233 1141,627.3858,-18.61686,17.261902,47.182743,6.202 1141,114.55346,206.35507,33.564735,62.63211,6.184 1141,332.41776,214.11292,15.151276,31.798233,6.11 1141,602.58624,-56.748074,53.174744,136.38782,6.054 1141,540.7708,242.37576,35.26648,73.61911,6.053 1141,580.40234,334.45792,31.74707,72.37921,6.037 1141,291.64026,213.4684,17.582275,33.290985,6.028 1141,299.53372,212.51459,17.621124,34.689972,6.006 1141,488.7763,234.18118,55.39978,151.53415,5.963 1141,506.24997,235.7623,22.03592,65.16434,5.952 1141,324.4806,213.55084,15.934143,31.175934,5.929 1142,390.93356,226.06174,25.588684,47.643127,80.081 1142,587.5818,237.33588,44.65497,181.03137,72.951 1142,306.56854,214.89445,19.1633,35.924835,15.384 1142,299.24014,214.75313,17.816193,33.000854,15.297 1142,603.596,249.1086,31.353882,104.58824,13.081 1142,293.2656,216.06245,16.340973,28.28032,12.51 1142,378.31848,218.32545,31.011505,60.946487,12.118 1142,586.5857,250.27757,36.67285,101.26515,10.339 1142,572.167,235.03891,75.52838,244.7248,10.276 1142,405.9693,230.32251,20.548157,43.03723,8.336 1142,478.24887,229.1136,13.088776,32.489456,8.31 1142,595.73645,294.85843,41.162292,161.54745,7.736 1142,314.58347,214.93663,16.490875,30.687576,7.561 1142,-5.77701,-17.850159,18.096539,42.630466,6.923 1142,458.8186,250.94606,18.907196,41.414474,6.899 1142,74.12352,209.55917,34.53354,61.395416,6.819 1142,484.85165,227.35457,13.285706,34.024826,6.733 1142,611.5591,229.41388,27.993286,88.784546,6.678 1142,548.00104,231.6363,16.187378,28.441116,6.557 1142,275.15057,218.47675,17.888733,31.139725,6.545 1142,613.05176,451.95566,39.98236,111.597015,6.521 1142,-6.1110163,490.11917,18.579,41.072052,6.209 1142,-11.781122,479.16214,29.698181,62.176056,6.161 1142,470.42938,236.31822,12.408325,30.09224,5.978 1142,589.3008,227.63664,31.732544,66.93431,5.97 1142,244.70384,215.37335,37.38115,71.2283,5.908 1142,55.049446,179.62053,65.593956,104.47081,5.885 1142,562.99,227.14024,16.363586,31.91652,5.769 1142,516.8459,233.93874,13.616577,27.39885,5.725 1142,-11.46639,-31.275414,29.817745,71.11593,5.712 1142,-16.72871,-62.95542,55.54508,146.93872,5.711 1142,555.7134,228.3521,16.487549,30.376846,5.697 1142,462.32465,242.8098,12.655273,30.748978,5.688 1142,626.21387,486.80798,21.012695,46.46118,5.678 1142,462.05518,233.4517,12.112488,27.680588,5.649 1142,230.19336,216.73032,30.966827,63.29367,5.636 1142,611.7609,-50.442783,40.20526,105.62142,5.621 1142,540.19995,235.9225,16.367065,30.130783,5.597 1142,285.76038,217.7341,14.995422,25.665298,5.592 1142,399.51416,216.65479,21.337433,43.646576,5.564 1142,157.01614,226.0766,54.06273,98.226685,5.537 1142,535.447,305.35852,145.22668,345.66827,5.535 1142,156.85986,229.81204,31.103668,70.236725,5.5 1142,460.3368,-21.676231,52.492065,152.06204,5.411 1142,454.40356,232.11629,11.797974,28.204727,5.388 1142,570.6044,227.56749,16.441772,32.808426,5.384 1142,532.6592,237.95612,15.049011,28.725372,5.355 1143,341.4539,217.47649,30.181305,61.881516,85.963 1143,181.44608,217.32211,30.554413,67.12143,78.968 1143,354.02878,220.74562,28.148102,57.99019,23.175 1143,242.94939,209.95416,20.170883,42.32109,11.934 1143,-5.71406,-18.72013,18.364185,46.031258,8.547 1143,618.03766,264.07718,18.022827,33.98529,7.895 1143,-10.554092,-32.238396,28.900042,74.49749,7.65 1143,225.17511,213.57271,18.775055,37.60344,7.288 1143,430.61093,241.78545,11.820068,31.387222,7.064 1143,423.87607,240.43243,10.711273,28.543396,6.986 1143,366.3567,230.81448,21.011902,44.580963,6.782 1143,415.3024,240.66248,10.77066,28.244507,6.482 1143,627.3649,-18.881123,17.05597,49.111954,6.441 1143,105.75601,209.20279,34.58011,62.468506,6.389 1143,350.8795,210.69743,24.17453,52.88112,6.374 1143,89.629,213.41684,21.402588,49.31891,6.257 1143,626.601,488.55133,20.479614,45.54254,6.245 1143,58.245445,195.56932,57.209953,120.96776,6.221 1143,81.99274,213.40239,20.935516,47.919083,6.206 1143,-6.3638377,489.80255,19.04236,41.26886,6.147 1143,602.33826,273.31738,18.68634,28.63742,6.069 1143,597.1272,261.38663,16.098206,31.79779,6.038 1143,538.7969,257.6992,19.38678,40.28711,6.018 1143,132.0845,209.48048,40.100388,88.85866,5.889 1143,93.084656,210.92113,29.442902,68.24596,5.879 1143,329.28387,218.78137,31.755737,63.05197,5.845 1143,192.65442,215.09868,29.39328,62.380295,5.779 1143,-12.194757,477.9551,30.534374,62.7493,5.678 1143,167.19276,213.56511,31.94072,64.032455,5.659 1143,188.03786,147.94109,31.742142,70.638626,5.605 1143,611.5977,-49.78993,40.668823,105.85324,5.6 1143,73.182495,214.85162,21.248352,44.01053,5.49 1143,147.97498,215.88757,31.822968,64.46213,5.463 1143,603.5725,436.11752,54.23761,138.16806,5.272 1143,437.89108,239.7861,11.988129,29.726746,5.235 1143,160.09412,218.32826,24.561096,49.593155,5.231 1143,-72.54584,264.06827,201.91373,464.92538,5.21 1143,610.69086,269.95648,18.899658,30.621918,5.185 1143,-5.450656,-1.5985775,18.95018,48.026443,5.173 1143,-4.2183003,214.90492,16.512882,42.718063,5.12 1143,586.70465,237.18091,18.43219,39.017944,5.116 1143,90.493,198.95383,55.799026,130.21713,5.108 1143,-42.005405,359.23312,114.29454,280.73257,5.083 1143,485.46655,241.94821,15.595215,33.612305,5.081 1143,-17.10999,-63.65387,55.37684,148.1877,5.058 1143,257.24704,212.31158,19.328033,47.100494,4.91 1143,407.06097,241.50401,11.009399,28.332657,4.905 1143,-2.2575665,249.30905,26.883093,75.51288,4.905 1144,181.91641,217.12173,29.862137,56.448883,91.013 1144,167.40005,212.29344,30.582092,62.44258,18.588 1144,74.31325,201.6246,22.613548,40.53131,16.363 1144,199.45587,225.92465,23.176697,47.069336,13.354 1144,59.25808,200.83368,32.866516,59.845123,11.392 1144,41.939102,205.04759,33.783035,57.793716,10.82 1144,55.012733,202.9254,25.607185,45.26796,9.355 1144,2.6059675,195.82521,32.789726,65.18767,9.178 1144,80.206436,206.22119,22.360336,45.85588,7.532 1144,-10.580477,-31.931633,28.07106,70.54466,7.18 1144,619.96936,251.17886,14.904541,33.343933,7.111 1144,-5.2739196,-18.119894,17.4441,44.095444,6.941 1144,26.87106,204.20424,32.01147,59.1035,6.795 1144,-0.9167433,203.53067,23.731174,49.981705,6.716 1144,626.979,-17.41254,17.202759,46.357178,6.544 1144,259.22998,254.91107,17.635315,33.614014,6.476 1144,-5.9524627,489.7472,18.182934,41.204468,6.242 1144,68.42038,202.14438,37.981255,73.629,6.21 1144,239.00072,240.65123,12.714737,29.273209,6.2 1144,-2.187208,218.82573,28.796762,73.374954,6.067 1144,626.5649,488.53366,20.559387,45.37735,5.974 1144,330.78,214.05836,17.522644,32.58008,5.953 1144,64.93302,201.75902,23.44323,37.114212,5.926 1144,-11.506863,478.4781,29.502993,62.50586,5.741 1144,207.79092,222.36174,21.160797,44.331467,5.73 1144,603.91656,253.26291,15.362549,31.493713,5.681 1144,-5.2928205,211.70227,19.261023,48.61026,5.579 1144,622.83453,-33.264977,26.651672,74.84706,5.556 1144,603.04297,-53.847107,52.28607,136.50291,5.483 1144,87.70708,205.11745,21.573044,36.663574,5.39 1144,411.25012,235.19983,30.081818,56.360535,5.386 1144,217.32002,223.43193,19.15039,37.238083,5.342 1144,612.5161,455.85486,39.60376,105.99036,5.327 1144,-12.644525,123.89516,30.993065,77.15622,5.325 1144,246.96558,243.25793,10.655334,27.70874,5.312 1144,331.90097,-18.54256,31.413391,73.354805,5.294 1144,-72.932236,263.25067,201.35133,465.62878,5.288 1144,255.52153,246.19377,10.511642,26.72374,5.208 1144,506.0147,93.97066,20.118103,30.95488,5.15 1144,314.26163,219.23543,17.881561,37.304,5.108 1144,302.01465,-38.045475,29.663788,84.73874,5.098 1144,262.62708,247.99692,11.501587,28.322937,5.088 1144,-17.582312,-64.96418,56.13668,149.77061,5.064 1144,84.429436,210.40279,30.628578,69.19273,5.033 1144,316.79507,242.91206,13.634277,33.116013,5.0 1144,-5.4063663,277.8041,18.608559,41.574493,4.998 1144,338.72552,213.83636,16.40625,31.76538,4.962 1144,-1.9336069,131.79205,30.365652,82.77635,4.923 1144,536.3062,311.36786,143.54126,339.60004,4.92 1144,582.9939,411.0933,71.85785,177.92514,4.917 1145,472.3842,260.18762,23.570648,47.086304,8.446 1145,452.4218,250.59192,29.222961,58.149475,8.108 1145,38.510376,202.86171,23.152851,46.619614,7.19 1145,617.8148,256.55017,21.726257,52.58539,7.119 1145,-5.7848625,-17.98473,18.651146,46.410084,7.057 1145,-10.222902,-33.45915,29.273798,78.79174,7.015 1145,305.8945,188.15439,21.086731,47.276062,6.95 1145,184.32884,262.26282,20.859055,45.582794,6.947 1145,627.35205,-17.554745,16.592163,47.554184,6.914 1145,251.17346,104.461494,17.776215,29.211372,6.407 1145,-11.749578,478.37906,29.833736,62.658478,6.353 1145,-6.091009,489.65936,18.520626,41.4834,6.344 1145,626.21265,488.14307,20.924866,45.81848,5.922 1145,226.75948,227.23991,16.609634,32.031906,5.688 1145,58.55833,197.07414,20.68291,40.719696,5.655 1145,462.77917,264.0443,28.832214,56.82251,5.644 1145,217.71208,102.058784,19.661667,37.136696,5.555 1145,226.06631,102.89918,18.816193,33.866814,5.518 1145,323.81165,334.51904,17.086823,32.6445,5.402 1145,581.83594,239.01472,27.163757,55.507706,5.391 1145,204.92303,100.72882,27.019287,60.960724,5.387 1145,267.50803,104.562416,17.355652,27.925377,5.386 1145,48.541573,198.3255,22.264587,41.45189,5.369 1145,590.625,246.36948,26.240417,58.046204,5.292 1145,623.4211,-33.547737,25.63324,76.95179,5.255 1145,263.942,310.02844,23.98413,35.87845,5.208 1145,234.11758,103.92154,18.039734,31.947845,5.195 1145,313.45065,58.92859,21.165161,31.975082,5.16 1145,297.96848,57.021782,20.605865,31.619347,5.143 1145,298.39722,320.74603,19.62677,33.330048,5.137 1145,577.8873,249.15768,21.303406,42.86676,5.135 1145,-3.5185573,172.06534,15.015491,42.45993,5.109 1145,-2.9542077,273.0974,29.861967,75.902954,5.104 1145,243.1592,104.898994,18.12471,30.096931,5.094 1145,-73.40523,266.1621,201.28983,461.3921,5.087 1145,274.03262,298.08063,34.063873,55.33441,5.083 1145,232.87735,318.7742,23.11522,35.46393,5.081 1145,419.2084,160.55879,15.761536,33.462906,5.079 1145,603.1297,435.59314,55.17035,139.03949,5.062 1145,283.3177,110.37465,17.43155,28.142044,5.062 1145,315.99457,332.47287,17.702179,31.948639,5.052 1145,-6.2021265,265.35144,18.99187,39.307526,5.049 1145,603.27466,-55.80556,52.366333,136.23126,4.968 1145,114.72934,55.50641,19.215637,38.65161,4.94 1145,-17.259872,-64.08099,56.37037,142.67325,4.933 1145,65.068695,203.62094,19.514206,43.643326,4.925 1145,353.06012,173.08366,46.407043,87.01839,4.908 1145,241.22147,328.84665,22.46054,32.77014,4.904 1145,180.562,237.76147,28.97548,73.64197,4.903 1145,536.4833,311.51617,142.60638,339.0584,4.891 1145,282.78317,60.50865,18.768524,29.480682,4.891 1145,305.39554,56.951187,21.574799,33.063843,4.871 1145,275.21667,105.3007,17.672607,27.160942,4.867 1145,-21.892735,401.5342,79.69069,176.71298,4.86 1145,-4.550839,156.81134,16.854708,42.338974,4.855 1145,-4.7990885,249.58766,17.065704,39.848587,4.847 1145,451.61627,230.83629,15.234375,25.343918,4.804 1145,451.23856,256.1954,41.05484,91.21106,4.794 1145,226.78922,298.18033,33.483734,56.127563,4.793 1145,307.025,321.3623,18.975616,32.84961,4.792 1145,-11.963262,40.73644,31.315536,72.36098,4.786 1145,410.70468,150.61018,17.955444,33.841675,4.784 1145,250.28522,307.41107,34.28714,54.20224,4.769 1145,398.23087,226.19864,51.20346,119.43634,4.762 1145,254.19821,207.0774,11.459503,25.597,4.75 1145,219.49976,-14.121168,16.535233,33.206184,4.742 1145,302.56277,195.99895,28.542633,71.11952,4.735 1145,157.50323,240.19402,28.830002,61.959976,4.72 1145,323.4999,170.17757,31.003021,59.95465,4.715 1145,202.26373,110.03439,20.95398,37.945496,4.712 1145,257.4731,328.5412,21.466156,32.543182,4.71 1145,-6.19899,292.2714,20.010029,51.268066,4.707 1145,283.9884,-12.962208,15.410675,31.882133,4.688 1145,248.348,320.49023,23.202011,34.29077,4.683 1145,259.3064,104.470436,17.729614,27.964073,4.675 1145,587.0116,239.5797,17.984802,37.476303,4.639 1145,324.48004,312.7686,16.917633,33.883118,4.615 1145,466.56903,259.8888,40.582764,87.22104,4.609 1145,419.87637,240.40245,15.230194,26.423294,4.581 1145,338.88312,175.95041,19.370056,31.872375,4.576 1145,443.25986,238.82253,17.01004,26.15599,4.565 1145,329.5852,181.75859,20.665375,35.934174,4.548 1145,598.1245,246.96484,35.300842,92.04993,4.548 1145,429.0683,233.74724,13.472961,23.819351,4.524 1145,493.67072,227.73764,237.95721,512.90466,4.509 1145,167.71165,245.79482,28.331924,65.91603,4.508 1145,623.1786,255.64963,25.272339,73.23114,4.499 1145,220.92456,192.97325,15.072937,37.135223,4.461 1145,346.68854,122.27383,29.43927,62.39875,4.461 1146,497.7,242.78697,20.877502,46.03975,10.29 1146,483.59534,240.46336,18.236206,35.26265,10.099 1146,484.39426,234.30309,36.976654,89.17125,9.415 1146,475.91437,240.60388,17.148346,36.012512,9.221 1146,491.46286,236.78831,19.121887,40.265488,8.822 1146,436.33884,288.77426,32.499603,69.73813,8.348 1146,-4.7846847,-16.22428,16.767527,40.32879,8.345 1146,319.2992,254.6132,24.828949,39.199722,8.131 1146,443.23804,215.15413,17.642975,52.86528,8.124 1146,499.12213,301.3162,33.917603,64.35742,7.931 1146,470.3537,237.36644,27.085571,58.83113,7.863 1146,500.5219,241.59091,29.130737,62.425964,7.791 1146,468.83124,243.89062,17.997375,42.34021,7.61 1146,505.89542,234.63261,17.388947,42.005264,7.531 1146,499.5833,233.78073,16.320068,36.498352,7.266 1146,441.78973,241.06412,18.303772,43.083954,7.219 1146,428.78568,201.32774,27.419128,88.066086,7.114 1146,460.47073,246.22421,16.786224,39.415833,6.77 1146,-11.939741,479.50558,29.774178,61.954132,6.729 1146,450.49847,249.43102,18.435669,39.18135,6.669 1146,352.58975,251.60753,22.029083,42.361282,6.666 1146,623.3433,-33.8743,26.439636,76.025505,6.574 1146,-10.586157,-31.813053,29.23411,69.51409,6.391 1146,627.09973,-19.426548,17.47522,49.044544,6.226 1146,437.614,218.55402,26.911194,71.784485,6.209 1146,-6.2704334,489.84778,18.720743,41.50287,6.17 1146,626.5999,488.56012,20.35144,44.868103,6.128 1146,4.118063,-13.587991,15.233557,35.67799,6.034 1146,513.40826,256.87653,19.908264,41.167725,5.875 1146,478.45187,233.82367,28.292389,53.202454,5.777 1146,545.70966,228.64838,18.504883,30.06311,5.771 1146,336.7404,251.72253,22.565002,36.672974,5.757 1146,488.9143,248.93896,22.002747,46.899292,5.699 1146,-18.239592,-63.608418,56.61582,146.91978,5.695 1146,39.674423,125.241844,23.196472,35.736015,5.619 1146,105.96898,241.03925,35.366974,60.977783,5.552 1146,39.729237,140.62524,22.437206,35.536255,5.483 1146,451.23077,218.8506,17.492676,48.521774,5.423 1146,415.4156,203.556,30.922058,84.69113,5.366 1146,11.759937,-13.848554,15.27206,34.43885,5.336 1146,475.59995,232.37398,15.0720215,30.39827,5.329 1146,329.22186,248.41838,21.057617,35.719406,5.194 1146,537.07367,310.8513,142.42926,338.89383,5.185 1146,539.6929,228.89638,18.58789,35.909653,5.15 1146,419.95166,131.90903,30.461395,81.20599,5.146 1146,603.4591,434.73798,54.816162,138.99237,5.137 1146,603.33875,-55.34703,52.919678,137.16556,5.118 1146,137.98788,242.13687,34.80577,69.34012,5.11 1146,43.633152,12.762994,16.103039,26.097107,5.105 1146,-5.8245206,89.28308,19.047121,43.144455,5.069 1146,514.37305,233.85323,17.188782,41.49272,5.044 1146,498.2754,249.16455,41.372498,86.72284,5.029 1146,401.84723,142.7987,19.965057,50.7128,5.023 1146,522.0189,256.91803,19.723572,39.876373,4.982 1146,-5.548818,71.923546,17.938795,44.22763,4.951 1146,50.10715,230.02434,17.167767,31.862381,4.937 1146,-73.05682,265.13434,200.40579,462.31848,4.934 1146,425.95474,225.58148,20.772522,55.89789,4.931 1146,484.462,213.6055,15.011444,30.582352,4.927 1146,44.1578,-10.312986,14.658813,31.487898,4.92 1146,433.42426,237.7377,20.148499,47.769897,4.888 1146,-22.183256,400.77203,79.22641,176.52887,4.87 1146,2.129168,89.54414,19.874681,42.021027,4.866 1146,484.56192,232.67122,14.617828,29.181137,4.856 1146,508.54425,229.71849,13.4227295,28.988174,4.856 1146,554.1192,225.59564,19.817871,33.507477,4.851 1146,28.39169,-12.344954,14.629986,33.014977,4.838 1146,535.18604,225.13737,26.434814,59.475113,4.832 1146,122.13181,247.62003,57.694237,127.7262,4.812 1147,469.0018,222.17957,42.82065,82.65167,97.468 1147,374.44156,223.54092,39.368896,83.06128,89.674 1147,538.9027,222.03326,33.573975,76.65881,80.742 1147,568.13544,226.67859,33.80133,82.227844,77.857 1147,552.6313,223.85136,34.948425,79.04149,37.842 1147,587.06305,228.94832,31.587952,79.75697,37.016 1147,524.70416,222.27579,33.28308,70.81241,29.903 1147,602.3777,229.19763,32.291077,96.46167,20.568 1147,616.6468,236.02838,24.125305,92.28833,11.979 1147,196.66136,235.14641,27.797852,60.732925,10.824 1147,444.58286,186.46529,27.866913,69.606064,10.616 1147,378.80255,230.26588,25.139374,57.68074,10.202 1147,201.36946,237.1032,19.669434,36.795578,9.915 1147,388.97162,223.74759,36.15802,65.31787,9.698 1147,441.1087,210.8954,21.69165,45.554764,9.554 1147,-5.2180557,-17.088911,17.183723,41.63493,7.739 1148,260.82568,214.77226,48.882385,104.264786,96.461 1148,423.08624,222.69107,38.316925,96.57251,96.003 1148,385.6089,223.73613,41.069763,91.37959,95.373 1148,495.01154,221.02121,41.977783,126.97897,88.849 1148,116.837906,220.21994,50.099167,92.344666,83.969 1148,352.35794,219.3194,38.295105,87.71826,73.024 1148,403.2686,221.66539,43.167145,96.44588,29.31 1148,369.19366,220.52817,34.031494,86.11032,20.938 1148,269.25714,214.05403,31.257965,73.077896,16.603 1148,136.68459,222.02026,47.55693,87.52515,12.537 1148,320.20648,204.54163,21.375214,46.530334,10.354 1148,-6.07905,-19.580479,18.663109,44.626102,9.285 1148,434.63626,213.24731,30.857971,71.15643,9.219 1149,123.92923,217.543,57.318405,132.4013,98.809 1149,259.18924,221.0037,40.66165,104.33664,93.378 1149,301.35068,218.03558,46.701385,124.87891,90.325 1149,355.97427,216.69461,43.211853,100.85376,85.724 1149,322.248,222.53397,47.335022,119.87033,82.637 1149,339.0329,220.2494,44.67798,106.11571,81.501 1149,479.62247,224.86179,64.540985,166.65689,74.997 1149,273.17572,219.66946,43.518494,109.14566,19.694 1149,391.4572,211.3886,23.413666,52.41008,11.882 1149,497.6747,230.37442,37.127594,77.24548,11.856 1149,133.09865,219.79552,35.592484,92.99458,11.448 1149,339.63385,213.40211,34.136353,71.97307,9.176 1149,201.83505,198.13524,25.637299,56.221954,8.65 1149,-5.5163946,-16.644192,17.643684,43.019363,7.73 1149,485.2967,285.0948,32.412476,96.35913,7.584 1149,291.47076,232.35918,33.96866,103.10036,7.103 1149,305.1193,208.87674,34.512604,76.201385,7.086 1149,587.52313,180.8801,18.127441,45.925934,6.873 1150,263.8927,211.346,56.71759,159.56935,97.854 1150,313.33044,211.17136,50.411255,117.84598,93.483 1150,221.40744,211.51201,55.992493,162.12032,92.515 1150,530.78705,223.67484,77.04028,234.46771,90.133 1150,1.8360448,211.08319,65.24166,188.66803,71.134 1150,379.36142,212.3958,21.270294,45.217392,30.078 1150,243.74426,302.2521,32.11133,90.65097,20.975 1150,272.70154,201.97305,36.436066,76.10153,11.305 1150,236.82886,201.8083,31.957397,97.844925,10.878 1150,-5.8992047,-18.052788,17.906971,44.052902,9.348 1150,213.746,259.42932,33.03624,88.31848,8.759 1150,63.452793,207.79623,31.703854,66.75394,7.812 1150,320.553,212.28639,34.626404,76.75142,7.753 1150,-7.414322,245.29549,42.547054,120.51393,7.043 1151,264.04047,218.33575,64.5336,143.8161,97.231 1151,97.986984,215.17493,92.23653,243.39825,93.065 1151,194.28984,206.36662,72.189224,189.5948,90.434 1151,369.92978,215.41344,25.496735,44.492752,76.435 1151,223.75293,214.0297,65.51788,160.31744,47.938 1151,347.70627,214.739,23.61792,42.21907,43.392 1151,133.28337,208.88417,81.02287,222.09416,37.581 1151,162.30466,223.49368,87.19589,201.30869,21.337 1151,99.755844,310.10953,68.149124,152.49359,20.03 1151,236.22023,205.36618,30.276901,66.47757,8.453 1151,216.45631,172.72498,21.643051,45.75441,7.854 1151,373.67456,151.00365,27.227173,65.37233,7.785 1151,621.344,473.97208,29.532593,70.022064,7.203 1151,-5.774597,-17.426086,18.60247,44.431107,6.738 1151,618.0102,485.20377,20.700195,47.575653,6.706 1151,361.8198,217.25131,23.027618,41.249786,6.38 1151,101.925125,211.87653,67.337234,138.29395,6.36 1151,472.05035,232.82008,28.493011,59.757553,6.338 1151,-10.346211,-32.5328,29.781483,75.22215,6.209 1151,627.14764,-17.423855,16.9823,46.549446,6.159 1151,-6.362147,488.58292,18.73242,43.14157,5.997 1151,383.9726,213.37614,20.325745,39.83702,5.96 1151,622.88403,-33.84698,26.769592,75.999435,5.952 1151,69.4393,8.89336,30.273773,71.50523,5.927 1151,-76.24793,258.33075,208.18704,466.4969,5.84 1152,137.87134,203.28577,74.38013,193.62952,94.467 1152,196.91342,219.92719,73.97299,162.73419,93.404 1152,54.768444,216.51157,92.44115,253.38947,90.835 1152,359.3482,214.10754,22.929596,47.542572,76.854 1152,12.963142,224.75677,83.53776,225.74677,66.395 1152,89.610985,231.34592,94.58785,218.89444,25.958 1152,369.1941,214.16891,21.98114,47.127563,14.789 1152,-9.705593,237.8862,70.13568,234.5676,9.663 1152,80.78983,211.46753,69.96943,146.58716,8.241 1152,617.7791,229.26836,22.345398,61.81923,8.172 1152,-76.1626,253.55595,210.8451,474.03778,7.97 1152,308.04718,202.94084,17.860107,35.013367,7.848 1152,-3.8924956,327.83447,27.874146,101.6319,7.587 1152,-6.2585144,-18.181053,18.842392,44.822197,7.498 1152,373.36688,150.47034,27.404114,65.80679,7.351 1152,264.3288,209.64731,20.545837,42.499664,7.045 1152,-1.3721383,268.85583,26.572544,87.95004,6.997 1152,-10.648081,-32.061825,28.773197,71.97474,6.982 1152,-5.9871025,486.93878,18.909878,45.46283,6.938 1152,627.2582,-17.928839,17.315796,47.027,6.467 1152,-7.6800194,282.8674,38.224552,127.94144,6.131 1152,483.05844,243.62653,19.835266,40.383545,6.107 1152,595.73926,185.18674,17.944763,39.002487,6.044 1152,486.4871,232.88475,28.610931,63.01628,6.004 1152,5.8309555,119.90056,188.85031,443.25568,5.969 1152,161.21753,205.8129,37.663635,65.93149,5.967 1152,208.33894,167.29697,24.495987,51.01172,5.922 1152,-11.758816,471.25354,30.44166,68.89703,5.879 1152,349.47516,214.83856,23.29477,41.366913,5.823 1153,-0.7018328,208.0392,95.452736,258.52673,96.77 1153,82.41098,218.13748,92.77002,216.00818,89.273 1153,335.882,216.18752,22.3945,47.111465,85.623 1153,320.41547,217.11041,23.441406,44.041107,67.845 1153,352.71063,216.27156,20.839722,40.68828,14.645 1153,22.201328,161.44524,138.74548,310.6225,12.461 1153,-5.2614317,-16.455412,17.47335,40.33646,11.686 1153,206.84125,201.73576,30.031235,59.26808,10.469 1153,283.18423,203.28554,19.506378,37.602722,9.309 1153,224.38266,201.75528,24.032242,42.488846,7.573 1153,-71.06325,253.08295,202.02005,480.45374,7.506 1153,345.1499,215.3577,21.070526,45.4263,7.451 1153,-11.02709,-30.805014,29.081228,66.64325,7.097 1153,-11.330595,252.82747,42.50727,121.00914,6.869 1153,-10.171652,459.7307,38.766296,96.59961,6.693 1153,-6.3069844,488.23923,18.774809,43.97409,6.608 1153,-53.610455,69.01723,169.03578,422.3695,6.525 1153,228.33499,202.08766,30.66867,59.355087,6.474 1153,3.4726243,-15.12083,17.057915,36.464466,6.27 1153,626.9067,487.9676,20.24237,45.485535,6.111 1153,-10.571796,303.9742,41.46456,116.18436,6.061 1153,300.75604,205.1413,14.145111,22.768188,6.035 1153,353.99173,157.30542,22.009552,50.34445,5.932 1153,111.11395,214.62721,38.206787,63.63762,5.751 1153,216.08585,224.04884,23.063599,40.341537,5.742 1153,232.55338,198.92363,22.391724,37.139725,5.654 1153,3.5872734,222.22913,35.325592,84.20526,5.564 1153,-6.22418,351.3679,40.125526,107.40811,5.512 1153,576.76245,235.37971,22.391846,42.692184,5.498 1153,-19.513584,424.18097,57.84017,150.56146,5.482 1153,91.24897,221.3208,65.27764,125.4762,5.475 1153,622.75183,-34.272896,27.097473,78.57965,5.46 1153,399.40082,215.68881,26.705414,58.52945,5.416 1153,-17.278772,-63.845894,56.04818,143.71298,5.364 1154,305.9859,218.35475,22.403534,47.024216,92.791 1154,290.45642,218.29865,25.596375,46.127563,45.464 1154,336.31934,217.11176,19.286438,41.489746,45.191 1154,167.83423,208.34683,23.333923,48.82483,9.657 1154,105.976776,209.99529,31.003036,59.068344,7.688 1154,156.73373,210.10408,30.63211,64.92766,7.616 1154,-5.717021,-17.820242,17.34998,42.892918,7.562 1154,-5.751189,488.81033,18.062456,43.026276,7.003 1154,2.009027,220.10764,25.724695,76.341675,6.924 1154,265.8565,206.49405,19.048859,37.760117,6.733 1154,-11.816309,474.95935,29.47887,64.80127,6.469 1154,-11.327116,-32.671192,29.299202,71.52394,6.397 1154,447.4884,216.55154,21.299377,43.880463,6.237 1154,337.32028,160.64275,22.328339,49.517365,6.169 1154,210.20004,210.93777,21.285614,44.031357,5.972 1154,622.95386,-34.015827,27.148682,75.57849,5.942 1154,612.81055,453.02075,39.549072,108.99017,5.83 1154,627.35126,-18.311073,17.613281,46.91918,5.81 1154,565.1733,183.61935,15.9436035,39.9321,5.786 1154,145.28247,201.94786,21.282394,52.233902,5.71 1154,489.0851,205.53917,20.69696,38.086426,5.51 1154,235.27925,201.70198,20.25267,48.363983,5.408 1154,284.22507,209.00078,16.084656,25.61827,5.313 1154,273.85297,211.60185,20.037964,37.259293,5.29 1154,603.2796,-56.350418,52.813843,135.33528,5.274 1154,165.88553,208.2431,35.90396,72.871155,5.237 1154,94.07347,200.85669,30.5699,63.154633,5.129 1154,391.35413,220.18005,27.21045,57.507202,5.12 1154,175.66653,215.88423,24.856918,45.985153,5.103 1154,-73.24453,265.8853,201.64584,462.30646,5.103 1154,-17.251986,-63.971947,55.79799,148.73393,5.102 1154,223.76936,195.24954,27.219116,56.00029,5.091 1154,-18.745785,428.09167,56.57009,148.16077,5.078 1154,0.13729215,149.20941,27.366297,88.05139,5.049 1154,582.77216,412.89755,72.10693,175.14963,5.047 1154,130.62692,208.87527,40.996704,86.8754,5.004 1154,508.22992,268.14218,31.069702,59.66397,4.99 1154,5.0184345,131.8204,28.53789,81.05934,4.932 1154,94.47894,192.32843,50.75067,105.98291,4.893 1154,217.16672,204.76508,20.751755,45.992706,4.842 1154,626.4542,488.09076,21.08429,45.723694,4.839 1154,474.14413,205.20222,19.614655,39.184036,4.834 1154,536.22186,310.0985,143.62091,341.27057,4.822 1154,-40.537865,367.26804,110.97422,274.60135,4.74 1154,180.25148,219.98564,30.630554,53.42964,4.688 1154,203.89783,204.05424,19.081146,37.530777,4.668 1154,-5.416156,260.10498,18.267963,46.192017,4.629 1154,218.44705,224.49,18.035583,36.03804,4.591 1154,-4.5553927,98.160835,16.478724,44.461327,4.588 1154,452.4392,209.1875,29.190369,63.809998,4.569 1155,297.1463,213.41284,25.609741,51.358826,81.837 1155,341.98883,213.55945,22.29303,51.206665,74.675 1155,287.03983,213.24771,25.791382,50.48764,58.206 1155,514.9831,208.58717,21.955261,39.627777,13.511 1155,232.9198,199.96469,22.387848,50.707504,9.744 1155,350.1573,221.20174,21.227295,42.42363,9.709 1155,141.15372,230.26624,32.129745,52.651,8.325 1155,510.45264,205.26602,29.347473,70.267365,8.175 1155,332.44278,212.66734,23.72763,51.310715,7.779 1155,414.34323,167.6947,24.579742,52.99672,7.626 1155,337.68066,154.91074,22.719543,58.335297,7.077 1155,-4.912741,200.24179,17.50698,42.851273,7.051 1155,0.8149868,194.80481,19.482243,40.284393,6.912 1155,613.0952,452.23193,39.658752,110.96838,6.825 1155,-4.8739777,83.21834,19.194096,52.121063,6.768 1155,-6.0572553,-18.105583,18.045195,45.907246,6.707 1155,491.30115,209.00938,31.625,65.55916,6.534 1155,-12.027072,478.70184,30.276417,61.862244,6.485 1155,-11.1217785,-33.240536,29.826725,78.05768,6.442 1155,258.50864,201.00548,20.019958,42.443207,6.327 1155,-6.1274776,490.33768,18.531868,40.913727,6.238 1155,598.30237,300.13345,30.843079,69.4812,6.219 1155,477.53168,212.80206,29.278381,54.224304,6.194 1155,577.54663,172.3746,19.306946,50.2706,6.132 1155,317.49335,209.45998,30.22815,55.767838,6.08 1155,282.81708,210.38899,21.303314,38.920807,6.076 1155,204.92957,199.12625,28.603317,54.856216,6.01 1155,615.9069,309.34995,22.791077,51.355072,5.96 1155,308.7126,211.625,24.09262,51.78665,5.948 1155,406.04364,222.17699,27.996521,59.782455,5.899 1155,623.11194,-33.472916,26.304626,77.09578,5.855 1155,627.0648,-19.10287,17.298096,48.745663,5.813 1155,461.81744,218.74324,28.397644,59.33058,5.799 1155,473.17224,221.20877,22.294434,44.314423,5.676 1155,-5.6745424,129.95465,19.28408,52.050903,5.571 1155,265.5087,208.73691,20.389618,40.13527,5.553 1155,421.10132,222.31267,26.88861,60.967148,5.534 1155,431.00418,221.44357,27.165009,64.122406,5.489 1155,147.9188,209.07945,16.712524,36.935593,5.447 1155,140.87883,138.68158,30.989456,72.24878,5.404 1155,-5.8069906,40.369167,18.505054,44.995,5.396 1155,-18.483694,-61.28853,56.975296,142.30249,5.319 1155,157.19115,231.34813,27.20015,44.53087,5.252 1155,603.2302,-56.32928,52.88916,134.87645,5.198 1155,147.17023,241.97983,32.914795,56.540222,5.155 1155,-16.869566,437.1319,53.91765,139.92816,5.111 1155,-73.19214,266.19098,201.39767,462.1753,5.077 1155,150.1216,204.44748,37.230026,76.50885,4.972 1155,626.59656,487.87192,20.827454,45.462555,4.955 1156,300.52045,210.63588,27.175842,61.581253,84.713 1156,358.80865,217.28519,27.438324,60.73001,75.693 1156,289.1221,209.79546,26.341492,61.58571,56.394 1156,124.707016,241.50687,30.039627,55.28589,11.291 1156,599.4598,169.24571,20.532837,53.223587,10.961 1156,-5.6200256,-17.893202,17.712,42.287285,8.432 1156,121.896935,130.39867,22.171074,57.850754,7.155 1156,567.709,210.68822,23.017395,38.47455,6.936 1156,116.541275,234.59845,18.657288,34.546265,6.432 1156,-6.8500943,490.0031,19.464254,41.97107,6.422 1156,-11.429298,-32.507248,29.183672,69.88092,6.316 1156,606.1254,267.57217,25.827942,47.03592,6.306 1156,266.5739,201.3318,19.700073,41.575104,6.222 1156,556.2792,210.2815,32.547363,59.081512,6.123 1156,-12.846895,478.6874,31.49009,61.433502,5.981 1156,626.71564,488.3855,20.48413,45.48993,5.971 1156,516.6731,224.32048,29.741943,61.144485,5.957 1156,627.2632,-18.006943,17.332764,47.296417,5.896 1156,233.33237,209.76328,22.33142,43.62445,5.804 1156,130.72038,231.2011,17.618942,29.430588,5.801 1156,111.36026,235.23666,29.583008,58.320618,5.8 1156,123.68085,231.37096,16.60585,28.290176,5.775 1156,223.88824,205.48642,22.386536,43.99405,5.736 1156,341.9973,104.063736,29.602173,76.07158,5.684 1156,348.60297,148.38754,27.662445,76.49553,5.635 1156,446.17233,219.00388,27.609375,58.637543,5.541 1156,600.12787,258.67947,24.55658,40.86093,5.502 1156,133.97195,238.41814,24.512833,41.087112,5.365 1156,-5.435159,30.07248,18.150768,46.35784,5.266 1156,591.85126,177.72847,28.447754,69.34288,5.235 1156,606.0891,164.79709,25.564575,67.96501,5.232 1156,622.7591,-33.97468,26.94757,76.64838,5.185 1156,539.92554,213.88596,31.45044,64.13327,5.16 1156,-72.990875,266.0652,201.2368,462.50537,5.158 1156,117.37243,221.18558,14.862465,33.583862,5.154 1156,582.90125,412.2082,71.88666,176.00171,5.126 1156,179.13062,230.40517,31.536057,51.68358,5.121 1156,3.599466,-16.823572,16.191416,38.80973,5.11 1156,217.30463,210.36147,21.288818,41.82936,5.063 1156,535.9007,310.27997,144.74738,342.2704,5.03 1156,582.5313,173.43619,28.15863,68.33081,5.029 1156,-17.315199,-64.4685,55.498238,144.61577,5.0 1156,-22.23751,400.8248,79.743454,176.35611,4.996 1156,177.24124,223.05411,21.632263,37.15744,4.984 1156,326.0277,210.72472,28.443542,52.698685,4.978 1156,613.026,455.98462,39.333557,105.899536,4.974 1156,138.32596,229.18274,18.296188,30.136353,4.967 1156,615.74457,260.19724,23.48529,48.925385,4.943 1156,603.40497,-56.366768,52.940247,133.8339,4.887 1156,146.85873,233.4792,36.57219,54.873276,4.87 1156,271.90857,204.53674,26.935638,56.84558,4.828 1157,377.86588,220.41525,37.373383,84.75784,95.414 1157,301.85413,215.55214,29.692627,70.82231,94.127 1157,291.477,215.77782,27.069183,68.846146,42.272 1157,247.48004,216.32997,20.903198,43.69774,16.317 1157,68.21596,255.344,32.409897,65.444214,11.335 1157,367.33203,214.57744,30.209778,71.5934,10.245 1157,391.6379,230.52391,30.668365,62.41545,8.87 1157,-5.7832046,-18.767372,17.876942,45.38299,8.053 1157,502.65958,226.33517,29.911896,63.803986,7.783 1157,271.70352,207.94217,21.13382,41.955322,7.269 1157,54.685852,253.76888,32.176178,65.87508,7.015 1157,360.64072,91.69654,21.821747,51.913612,6.785 1157,340.67902,218.29016,36.56723,81.19104,6.717 1157,497.7502,234.18936,23.42099,46.41455,6.712 1157,516.22,217.73509,30.754272,63.070084,6.603 1157,-10.940143,-32.558456,29.389297,74.36282,6.386 1157,-6.201929,489.74463,18.514406,41.46106,6.348 1157,-12.1718445,477.69678,30.488058,62.259033,6.109 1157,235.31058,220.06128,22.306854,44.33795,5.993 1157,-5.179987,256.22922,17.452122,44.54074,5.913 1157,541.50525,207.12424,29.029236,67.13904,5.835 1157,83.42084,261.1362,30.810188,61.269745,5.818 1157,351.55197,155.65303,29.311523,76.82884,5.734 1157,131.76897,230.98466,35.076706,56.884995,5.647 1157,173.25346,213.01201,13.28096,23.596283,5.635 1157,486.21814,227.58414,31.164917,64.132904,5.623 1157,154.72862,244.25694,33.458206,55.248398,5.549 1157,-72.996025,265.9906,202.07684,463.31958,5.368 1157,117.06623,228.50185,34.301384,56.806686,5.335 1157,612.97144,455.11005,39.64807,107.257324,5.261 1157,345.9662,164.39856,22.551544,54.164017,5.241 1157,435.2835,240.76561,18.355835,27.813553,5.232 1157,620.7403,158.20273,15.976746,44.498917,5.211 1158,428.61954,213.46051,57.534607,128.42767,99.026 1158,296.80002,207.94102,35.38855,83.939896,83.386 1158,287.824,208.60025,29.804749,78.22653,33.079 1158,516.7289,221.05937,31.475647,58.751175,10.397 1158,310.75482,209.31177,31.972229,74.76953,9.219 1158,445.28857,229.75478,34.66916,95.421555,8.586 1158,128.52684,243.04941,37.672165,62.342285,8.287 1158,578.9583,204.41599,41.491455,84.485535,7.183 1158,611.30634,288.49973,28.845764,86.64331,6.968 1158,239.57947,193.41164,28.714172,66.489975,6.847 1158,512.85657,231.6604,22.44629,39.70215,6.383 1158,529.9171,209.52824,42.770325,66.74983,6.297 1158,-11.476108,-31.409554,29.811684,71.02609,6.127 1158,563.02905,205.76009,43.199585,77.02168,6.091 1158,435.05844,217.05588,36.982697,76.1362,6.054 1158,-6.288823,488.96603,18.929127,43.003265,5.933 1158,-12.603041,476.44992,31.033163,63.857025,5.849 1158,258.1358,194.63132,21.119812,48.905716,5.824 1158,451.16928,218.32965,59.996063,125.43176,5.804 1158,-5.948238,-17.767506,17.801807,43.096096,5.8 1158,591.0457,205.40384,24.24884,41.25537,5.683 1158,622.87085,-33.980522,27.132202,75.362595,5.547 1158,380.3264,100.53895,31.24881,74.089165,5.498 1158,536.67224,308.8994,144.055,345.4956,5.408 1158,627.2573,-18.109657,17.355774,46.20134,5.401 1158,34.318935,102.319885,32.731495,80.77472,5.393 1158,602.8987,-55.87448,52.94861,137.98265,5.372 1158,495.26382,230.63425,236.85641,512.8345,5.326 1158,-72.93309,265.88037,201.325,462.71765,5.306 1158,284.48602,205.62772,19.14975,39.551743,5.298 1158,377.8923,83.62016,21.308502,53.568283,5.23 1158,124.72622,206.24524,17.783394,32.099457,5.202 1158,241.47507,224.25317,22.505585,39.893738,5.145 1158,626.5685,488.4971,20.676147,45.311737,5.123 1158,545.73114,209.95993,42.46942,70.14615,5.075 1158,613.08636,455.03546,39.4469,107.05951,5.05 1159,286.83078,210.42868,46.343323,96.19812,96.021 1159,577.641,227.32664,63.16101,241.59627,59.309 1159,337.0317,217.01028,24.123108,44.00284,55.419 1159,262.4004,212.65398,46.412506,93.69063,55.315 1159,607.9866,376.9099,32.1687,105.673035,7.287 1159,276.7301,209.13988,28.47931,67.35579,6.797 1159,305.3369,207.95511,29.785614,66.688446,6.778 1159,613.5506,449.39844,39.39569,112.90045,6.744 1159,-0.185951,245.40749,30.829353,70.93361,6.37 1159,535.2738,302.74158,145.4812,348.9203,6.071 1159,-11.265722,-32.077133,30.33832,76.70502,6.049 1159,490.1262,232.16373,242.17447,511.01755,5.911 1159,-8.704187,464.9271,37.54866,92.58536,5.909 1159,409.29224,70.30638,19.778229,40.024323,5.607 1159,-12.692805,477.9922,30.842274,62.26306,5.573 1159,-5.6909504,-17.268316,17.843609,44.670143,5.55 1159,248.27437,210.19794,24.215805,50.292267,5.499 1159,627.57404,-18.09542,17.12909,45.190586,5.404 1159,156.34697,69.765175,30.642548,70.894066,5.383 1159,3.5986137,2.425476,31.18163,93.05337,5.372 1159,611.30707,-49.688473,41.422485,104.798515,5.364 1159,-73.02148,264.79633,201.92044,465.3164,5.35 1159,390.17276,71.11772,28.373535,68.619705,5.333 1159,608.5388,247.11038,44.101807,134.07278,5.304 1159,-6.502977,489.7929,18.89233,42.45569,5.255 1159,247.68507,230.01297,22.831772,45.69928,5.137 1159,265.35928,205.03107,23.287537,47.710037,5.092 1159,538.2389,168.7694,134.57031,347.42224,5.037 1159,-21.83598,401.89868,79.79405,175.59106,4.914 1159,626.605,487.3177,20.89508,46.147827,4.885 1159,395.5249,154.65216,27.03003,75.038025,4.858 1159,540.0126,-16.16364,32.11255,63.869404,4.754 1160,252.53166,207.93448,56.008102,122.00314,96.449 1160,226.57541,209.38109,48.9281,121.835464,91.606 1160,380.81265,221.60759,26.412842,48.8416,24.665 1160,315.5964,203.96008,15.858032,24.441986,9.656 1160,244.02483,202.66403,28.910477,67.72116,8.71 1160,468.37396,145.66603,15.635468,30.988205,7.436 1160,-11.010304,-32.678467,30.138092,76.07214,7.026 1160,623.31256,-34.11042,26.615906,75.0855,6.684 1160,-5.689709,-17.50679,18.116503,43.848248,6.55 1160,627.4287,-18.695158,17.466919,46.3469,6.022 1160,308.8599,202.81363,18.862335,32.457047,6.011 1160,475.3125,145.20093,16.725006,31.413345,5.932 1160,310.44952,198.00243,25.898193,49.523148,5.823 1160,-12.8120575,477.03497,31.148584,62.90619,5.796 1160,-4.909845,106.020195,17.816904,43.282845,5.767 1160,147.48976,208.49222,17.067139,29.137955,5.751 1160,613.13544,455.2165,39.364258,107.02081,5.739 1160,-6.6484203,489.1934,19.19932,43.095856,5.688 1160,461.7485,146.11578,14.980957,29.185425,5.562 1160,603.1412,-54.688198,52.89435,136.31552,5.434 1160,405.3003,40.723053,29.28717,75.939224,5.412 1160,261.61115,203.15302,30.87677,71.27234,5.306 1160,-17.870975,-64.43546,55.99818,146.83142,5.239 1160,446.3858,215.71315,30.71936,69.41133,5.235 1160,242.48308,201.8436,21.691391,43.271255,5.231 1160,275.29626,199.17337,31.647034,64.77197,5.224 1160,-73.60455,264.9881,201.69458,463.71246,5.223 1160,626.65405,488.0477,20.541931,45.53708,5.17 1160,392.214,56.57044,27.149384,68.01892,5.095 1160,583.2684,411.98187,71.515625,176.2846,5.049 1160,-5.6334615,1.0901794,18.495955,45.447018,5.042 1160,-4.177666,41.905487,17.332283,45.276367,4.991 1160,-22.241875,399.97958,80.144775,177.40762,4.943 1160,147.76537,209.34402,37.199677,90.48526,4.925 1160,322.72736,207.06146,18.749329,31.424332,4.907 1160,348.84094,195.31082,28.839874,50.11508,4.901 1160,231.75032,204.92624,30.55632,78.46817,4.898 1160,490.29156,142.2478,18.911316,33.968033,4.808 1160,536.71423,310.21332,143.11725,342.7575,4.747 1160,234.38058,199.86467,21.882965,42.9933,4.695 1160,256.05374,207.32181,24.180267,51.272552,4.668 1160,-5.605193,230.84114,17.51585,42.18602,4.649 1160,140.0173,206.03894,17.074005,29.675293,4.575 1160,-4.6998487,68.70233,17.15457,47.472473,4.511 1160,163.78601,209.34952,37.405106,90.0072,4.509 1160,133.31232,212.21439,38.09964,89.77048,4.493 1160,250.5846,208.04155,35.719604,92.0916,4.426 1160,15.526533,176.25005,48.56373,132.03786,4.392 1161,152.44426,213.6218,69.42349,149.80438,93.167 1161,178.48474,209.38791,70.9299,156.21603,87.009 1161,292.49286,200.38535,17.2229,27.726868,9.451 1161,296.1619,202.24411,20.69522,32.8891,7.176 1161,71.44296,199.53888,33.83751,91.9718,6.495 1161,603.01263,-57.068924,53.032776,137.67805,6.367 1161,169.05104,212.97324,22.995651,47.828583,6.158 1161,-6.7861247,488.9467,19.7741,43.841095,6.102 1161,285.7598,195.0206,28.143463,49.983963,6.029 1161,99.933136,206.39853,36.990204,92.73184,5.907 1161,626.65784,488.76572,20.70996,44.657806,5.794 1161,260.33563,195.0418,29.35254,54.307053,5.793 1161,84.30137,205.32501,36.473534,94.7511,5.781 1161,-11.411779,-32.036602,30.260246,71.461945,5.711 1161,622.29004,-33.50525,27.230347,74.29545,5.674 1161,-12.966787,477.93207,31.736073,62.829285,5.656 1161,361.87616,199.79425,22.368958,43.931915,5.613 1161,364.78308,179.68146,28.214905,66.155975,5.604 1161,89.08986,209.01694,20.591988,38.539276,5.599 1161,-4.8774915,74.330055,17.029278,42.775536,5.538 1161,-18.37759,-62.08318,56.432243,144.27586,5.325 1161,-5.806922,-16.741367,17.768665,42.399048,5.2 1161,-74.968376,265.89514,203.21655,462.81714,5.19 1161,613.17377,455.80823,39.307068,106.07617,5.137 1161,305.3774,206.43298,22.06076,34.615967,5.132 1161,53.530373,22.429836,29.235703,71.40291,5.076 1161,582.9258,413.06796,71.760864,175.55392,5.068 1161,-17.315098,435.17337,55.173065,139.18619,4.929 1161,468.37512,137.27087,15.06955,31.793259,4.862 1161,475.5992,135.66061,16.742828,33.995224,4.788 1161,533.1529,136.14508,29.780457,72.93881,4.753 1161,-40.819954,364.79437,111.42751,277.15765,4.752 1161,90.606445,199.45059,18.495644,32.94348,4.744 1161,372.9989,163.8662,31.470398,77.313705,4.741 1161,556.99524,216.19035,30.826233,59.18135,4.719 1161,-5.027921,174.11526,17.631685,38.690033,4.702 1161,536.4354,310.45325,143.32178,342.57776,4.685 1161,55.369358,199.45514,35.999393,92.793945,4.671 1161,460.43066,127.96287,15.869873,34.245964,4.666 1161,627.2657,-18.142164,17.213196,45.821316,4.653 1161,581.34973,302.9627,36.92749,79.639404,4.649 1161,595.8742,-46.55877,42.392944,100.94269,4.64 1161,107.124214,207.28012,57.064003,121.930145,4.632 1161,2.2449203,-15.533324,17.853144,40.194645,4.615 1161,552.44867,222.11533,23.277954,42.234406,4.554 1161,212.11717,199.5833,31.0056,62.84218,4.548 1161,161.21649,216.63672,36.799637,82.87158,4.454 1161,539.9114,212.37431,30.842773,61.810684,4.426 1161,282.97552,200.37354,21.806335,35.554886,4.385 1161,225.70854,206.11443,22.763428,52.533524,4.381 1161,493.61414,228.5498,237.26587,515.007,4.377 1161,313.76028,214.50786,20.603485,31.907303,4.319 1161,579.9494,206.57074,39.345825,93.528076,4.294 1161,331.2417,193.19366,31.01419,51.04744,4.293 1161,209.68393,206.62488,60.51239,136.40564,4.274 1161,81.19023,200.82076,64.08899,155.32707,4.255 1161,488.59747,-179.20988,237.23871,421.9805,4.255 1161,189.64546,213.46332,35.2621,74.15402,4.245 1161,619.84973,154.46495,17.09906,43.05037,4.231 1161,497.76117,211.42079,31.021423,57.504745,4.215 1161,301.19302,184.87515,13.8854065,25.406036,4.196 1161,516.6747,-16.341177,31.316467,61.659805,4.196 1161,96.87634,204.55719,19.26464,33.59224,4.185 1161,585.62225,-101.33593,75.75592,234.50632,4.17 1161,441.7358,219.28488,21.661987,41.592865,4.165 1162,68.206856,239.26003,85.42211,194.94127,96.184 1162,105.1821,234.07918,88.59056,202.2097,94.517 1162,517.933,226.96039,30.813232,58.947937,8.618 1162,283.49292,220.57681,21.211548,35.62216,8.424 1162,476.44547,235.35556,28.236816,58.18164,8.323 1162,602.5907,-57.266026,53.229248,137.9799,6.579 1162,491.24274,233.95464,28.685547,60.98445,6.56 1162,-75.039604,251.4615,208.11127,475.2281,6.295 1162,-5.6241107,-16.705704,17.321737,41.635914,5.957 1162,469.16516,147.80086,14.153503,30.970718,5.949 1162,40.165855,148.41441,132.96121,319.33704,5.939 1162,-4.8255816,57.606033,17.285648,42.698105,5.885 1162,627.31433,-18.052172,16.883667,46.220627,5.838 1162,531.92163,224.66609,31.40979,62.178543,5.833 1162,480.59735,235.6822,20.491974,31.710098,5.808 1162,-6.5839906,489.07947,19.282307,43.2005,5.77 1162,-11.127176,-31.929829,29.54736,71.86798,5.634 1162,-12.621296,477.51697,31.168217,62.59381,5.556 1162,626.664,488.83188,20.745972,44.606903,5.427 1162,328.81534,201.98639,20.641296,43.494232,5.416 1162,623.1936,-34.562645,26.216736,76.59514,5.357 1162,463.4568,233.19615,30.682892,64.025955,5.344 1162,13.366001,213.58415,52.121395,127.70506,5.271 1162,510.28793,230.8292,29.754608,71.637665,5.213 1162,296.7746,227.69627,21.533234,35.849014,5.202 1162,514.45654,232.0224,21.068054,40.196472,5.169 1162,285.77924,219.9268,27.789429,51.974533,5.161 1162,595.7394,-46.68845,42.6886,100.229225,5.09 1162,476.33173,149.53069,14.729095,30.44986,5.077 1162,-5.023962,247.05042,17.490555,45.961426,5.077 1162,613.0177,454.957,39.66516,107.27463,5.041 1162,582.8766,412.6164,71.68707,175.41083,5.016 1162,370.91306,177.96616,31.795319,80.804535,5.011 1162,-22.247929,394.12442,80.454414,180.22543,4.985 1162,461.2171,146.79362,14.169128,30.499146,4.976 1162,522.3614,229.48233,19.879639,35.25232,4.96 1162,-8.301992,218.21094,61.417915,177.1065,4.956 1162,21.824884,237.18996,28.928358,77.4019,4.927 1162,571.0577,227.10852,17.548035,28.382462,4.914 1162,536.03467,309.48016,144.1643,341.9179,4.868 1162,483.94424,154.46959,15.7092285,31.954285,4.848 1162,49.3187,241.51428,47.266064,119.332886,4.806 1162,554.20435,232.29381,31.623047,62.828598,4.798 1162,305.67468,229.52434,22.124573,36.36461,4.706 1162,-17.392408,-63.7653,55.716484,146.55405,4.677 1162,234.16876,197.33752,19.440094,45.723236,4.666 1162,83.86925,197.04381,145.28833,311.05786,4.647 1162,494.41116,229.93134,236.48117,513.09064,4.636 1162,-8.115778,259.96707,37.857388,107.46243,4.546 1162,-5.2644367,187.91782,17.592802,40.977936,4.534 1162,408.79562,247.99257,22.073792,43.546524,4.522 1162,578.4603,219.97433,41.736877,70.574585,4.493 1162,290.3966,218.40157,16.788696,26.247345,4.473 1162,253.05457,218.93167,28.817505,56.663544,4.47 1163,3.1740475,202.12804,98.011375,301.07794,95.281 1163,113.93973,189.78485,34.825134,71.703674,14.575 1163,274.21576,196.43068,20.269073,33.99852,11.611 1163,534.80054,221.81038,27.504272,64.27809,10.775 1163,590.11743,220.42981,11.24939,19.921173,9.086 1163,-5.2282953,213.5896,67.14885,238.39441,8.966 1163,582.97266,220.57874,10.620544,19.767868,8.639 1163,-44.93208,282.7085,157.88492,379.7036,8.623 1163,597.928,219.73227,11.991943,20.313278,7.866 1163,589.36536,211.8873,12.780151,22.502472,7.646 1163,605.01825,219.10852,12.754028,20.744629,7.551 1163,544.2315,225.72293,30.85962,75.366516,7.526 1163,-5.5138235,-16.96758,17.420963,42.098812,7.341 1163,181.58511,212.39388,24.730072,50.360672,7.318 1163,21.070175,221.45668,148.14122,324.26984,7.176 1163,128.14812,186.06433,33.539413,71.42343,7.103 1163,574.7549,220.59453,10.845093,19.697784,7.081 1163,581.82874,223.74786,13.967285,27.375656,6.786 1163,-6.533286,488.9458,19.001053,43.158203,6.523 1163,-10.348512,459.21164,39.26649,96.72122,6.505 1163,276.52905,190.18831,27.960785,49.63353,6.416 1163,622.73785,-33.072296,26.835266,74.02949,6.386 1163,239.38309,199.83734,26.5578,53.72296,6.338 1163,627.5676,-15.96533,16.767395,43.678123,6.31 1163,263.45804,191.69704,29.206085,48.48906,6.263 1163,-11.401722,-32.054672,29.66256,71.78836,6.015 1163,475.71204,112.68716,16.674988,33.495888,5.966 1163,217.65042,164.94409,20.889343,49.550735,5.893 1163,337.8435,209.00957,21.750763,39.101273,5.848 1163,603.0921,-53.91793,52.975708,134.5584,5.705 1163,-9.387623,272.4157,41.017418,122.683014,5.653 1163,101.46462,194.6535,35.301308,73.07999,5.582 1163,597.3019,211.27974,13.115112,22.244217,5.463 1163,387.8324,1.8257751,28.986694,87.490005,5.376 1163,617.34973,217.88124,20.075989,35.175552,5.374 1163,2.9498558,-15.707779,16.618406,40.246628,5.281 1163,613.1027,454.48065,39.54596,108.12097,5.133 1163,540.1101,215.29013,15.315063,30.65065,4.971 1163,583.2843,411.5597,71.29266,176.66254,4.969 1163,572.5172,224.24826,14.287537,27.302551,4.94 1163,483.36414,112.34545,16.872223,33.767036,4.879 1163,-17.285517,-64.63283,55.920906,145.69794,4.876 1163,281.7352,192.6857,17.723083,28.19667,4.862 1163,626.3822,488.15552,20.878601,45.449585,4.836 1163,-7.5380573,357.68542,39.806183,102.90622,4.716 1163,591.9613,13.283302,22.856384,37.859016,4.705 1163,564.45856,217.374,12.801453,23.667923,4.699 1163,536.40814,309.97302,143.61627,342.5083,4.695 1164,584.9221,230.15408,32.085693,90.78259,25.679 1164,228.12814,209.45178,23.471619,55.194153,12.139 1164,260.40762,205.52501,19.549438,37.310684,11.079 1164,-5.79305,-16.558987,18.158787,42.03059,9.271 1164,572.79065,235.04707,32.823242,79.48302,7.792 1164,590.5011,236.32611,24.306213,52.836792,7.452 1164,596.3062,229.38281,34.70099,103.996826,6.86 1164,550.98413,234.81004,32.482788,85.23903,6.697 1164,-10.937183,-30.946114,29.580574,71.49733,6.437 1164,622.40247,-33.172638,27.173584,72.20427,6.154 1164,595.5935,234.34065,15.28125,25.858536,6.034 1164,13.7799,208.97797,50.754593,120.881226,5.847 1164,-8.625126,464.5963,37.464523,92.39136,5.74 1164,-6.57843,489.38538,19.22216,42.996155,5.68 1164,626.6978,488.3305,20.57727,45.28894,5.661 1164,353.93552,138.04063,30.066864,98.09482,5.63 1164,-13.264183,189.60167,47.249783,136.63411,5.581 1164,2.925005,208.71289,29.025354,79.53723,5.493 1164,602.9739,-55.47856,53.31244,133.65013,5.404 1164,459.78928,234.94702,31.911133,59.78943,5.388 1164,58.870438,202.23138,33.004807,69.41016,5.319 1164,200.9747,177.03886,21.274628,44.09822,5.251 1164,-73.728165,265.55768,202.4262,463.1718,5.161 1164,2.8224635,-15.229387,16.876497,39.568054,5.16 1164,306.33844,187.50285,20.155884,42.34015,5.082 1164,627.04663,-17.30969,17.670898,43.78803,5.062 1164,246.1922,203.84616,30.61499,50.457214,5.053 1164,-17.727612,-63.16137,56.395134,142.31094,5.047 1164,384.221,238.42674,21.931976,37.410812,5.019 1164,583.1791,412.06012,71.50952,176.52301,4.969 1164,613.197,455.50317,39.20508,106.49164,4.965 1164,434.20978,273.85077,29.217163,74.147644,4.893 1164,-4.8895035,190.2627,16.929173,38.125885,4.85 1164,612.16223,239.31366,28.048462,82.42505,4.84 1164,-8.17514,209.7346,29.163242,74.65663,4.839 1164,484.4476,227.107,29.55075,57.748413,4.838 1164,594.3244,-46.44623,43.792053,98.43205,4.837 1164,253.46082,208.05505,18.717651,34.220383,4.829 1164,536.28,310.31952,143.58295,340.44952,4.828 1164,517.25726,246.9922,30.804565,67.07799,4.826 1164,-40.837944,365.13657,111.52855,276.55728,4.807 1164,477.89417,123.264656,12.100098,26.915276,4.805 1164,89.86034,203.4173,33.923294,74.96759,4.792 1164,491.73218,-15.033011,15.830933,35.299168,4.782 1164,237.28087,210.323,22.928024,46.04254,4.777 1164,-10.102968,185.85966,28.799479,68.5954,4.701 1164,469.74454,117.26892,12.688904,28.509827,4.67 1164,4.7082415,224.09052,37.14023,106.52545,4.606 1164,-6.088646,90.70718,18.09614,39.938164,4.577 1164,468.30597,230.56863,39.35797,82.23508,4.556 1164,90.20489,14.332542,32.74807,62.491554,4.537 1164,-4.1875973,204.04411,17.504463,43.755646,4.53 1164,483.9827,-15.816866,15.783905,37.65235,4.516 1164,267.23868,202.82867,16.667938,27.05687,4.488 1164,-2.602036,-15.816612,28.52343,67.31793,4.427 1164,619.70264,220.66898,15.549561,30.314972,4.39 1164,58.866577,-8.338554,57.269608,115.419106,4.39 1164,589.02637,234.8577,14.922974,25.007599,4.389 1164,493.86044,229.78421,237.8375,512.7605,4.386 1164,358.37418,49.34358,28.162079,81.94536,4.373 1164,-5.9089003,39.83329,19.654476,44.99453,4.369 1164,13.367531,204.5032,29.808033,76.16852,4.36 1164,485.6225,125.65616,12.661072,25.939178,4.358 1164,605.25916,229.11797,12.840942,22.253616,4.33 1164,489.9087,-181.03702,236.26929,424.17725,4.322 1165,225.56082,217.62402,22.736816,54.06549,56.922 1165,328.923,222.19907,20.354675,34.625793,11.555 1165,259.4856,212.41347,20.195587,34.204697,9.498 1165,376.62418,236.07594,23.733032,45.444687,7.133 1165,532.83746,231.95944,29.76001,69.927704,6.544 1165,613.17145,453.30438,39.508057,109.48346,6.49 1165,272.35687,212.76367,20.778595,32.795105,6.444 1165,416.2882,248.63562,23.704285,44.498108,6.411 1165,-5.325902,-16.937353,17.621689,42.498055,6.382 1165,540.8884,246.25253,30.371643,71.26962,5.891 1165,363.32385,142.39641,31.799683,97.090805,5.815 1165,-12.835884,477.47427,31.184786,62.4805,5.781 1165,-18.07132,-62.13047,56.563766,144.14941,5.761 1165,-6.740541,489.32132,19.463356,42.8013,5.758 1165,-11.192247,-31.577192,30.205236,72.71331,5.728 1165,627.27905,-18.756132,17.549316,47.946373,5.713 1165,262.21356,203.89436,26.819,49.491837,5.699 1165,420.2408,225.11557,41.595245,76.1214,5.687 1165,603.03174,-57.612747,53.066956,140.76341,5.583 1165,623.0872,-34.023052,26.597107,77.3922,5.578 1165,249.97037,214.37817,21.379333,37.321655,5.457 1165,626.6633,487.90372,21.159607,44.957733,5.41 1165,156.76945,213.23337,33.782227,60.493286,5.403 1165,266.0019,208.79697,19.445862,28.465607,5.362 1165,410.35107,249.36627,20.184174,35.611877,5.345 1165,0.31258464,192.33084,27.91433,90.40201,5.296 1165,167.94615,212.64294,23.900192,41.798126,5.267 1165,-73.636856,265.3145,202.40456,463.77197,5.193 1165,-17.444471,437.05798,55.33436,137.90979,5.018 1165,536.3422,309.41104,143.59515,342.1484,4.996 1165,603.1158,226.12401,15.725525,31.261337,4.945 1165,582.82733,411.89664,71.94324,175.79807,4.93 1165,-5.516978,88.30189,17.799349,42.503593,4.917 1165,321.80283,219.65527,20.09845,32.722458,4.881 1165,518.2402,233.40508,28.921509,66.64543,4.832 1165,-41.01492,364.94843,111.886154,276.68866,4.789 1165,12.540126,203.19057,52.651997,119.73399,4.766 1165,-10.04594,209.38405,31.940584,81.117966,4.736 1165,373.11212,209.19939,29.642578,66.409225,4.709 1165,238.63309,218.1868,22.503204,45.38504,4.674 1165,205.42654,210.53117,15.961319,37.80069,4.61 1165,315.53845,216.16135,19.281616,32.709305,4.551 1165,629.0546,215.8672,15.26123,38.027817,4.533 1165,195.30023,179.94116,19.11148,49.195877,4.531 1165,493.66458,228.4429,237.70627,513.64795,4.508 1165,424.40677,142.66042,22.10968,45.241516,4.475 1165,441.6223,230.25818,30.26059,66.57556,4.466 1165,490.42264,-181.52129,235.64401,425.47668,4.44 1165,3.200953,-15.626265,16.819311,40.46415,4.435 1165,530.80396,73.17799,33.846558,69.90839,4.431 1165,2.1548438,216.4024,45.91414,128.8031,4.344 1165,517.63025,282.61722,32.372314,68.8504,4.336 1165,493.12695,112.6317,14.652557,32.510254,4.327 1165,404.28003,223.98761,42.31967,74.32623,4.298 1165,585.6951,-101.474976,76.10394,234.68301,4.269 1165,289.84238,217.74063,20.908386,31.845566,4.257 1165,165.26497,231.14923,28.106155,54.9115,4.25 1165,545.51154,80.56476,33.801575,67.49658,4.197 1165,356.12317,204.59436,30.002167,63.099365,4.196 1165,130.28915,229.27435,34.51277,63.53369,4.196 1165,410.48175,238.51541,17.6568,32.02011,4.195 1165,414.6053,227.54282,53.32202,127.01364,4.194 1165,-5.3472414,153.17854,18.167295,42.76039,4.186 1165,500.8045,227.10788,30.255005,66.38904,4.177 1165,-37.28395,-128.85959,118.47481,280.94705,4.17 1165,386.79993,222.31198,42.86087,71.64902,4.105 1165,490.31766,313.1658,32.446014,82.420746,4.063 1165,12.08281,-8.4792595,57.7435,118.45447,4.023 1165,283.1519,221.08551,19.470398,32.30597,4.022 1165,516.93475,245.36363,43.028015,85.23164,4.017 1165,595.6709,233.41043,20.783813,38.08435,4.016 1166,237.43544,210.926,24.478745,60.601715,64.469 1166,407.50424,231.42271,26.690521,49.147354,20.618 1166,226.00874,209.84312,26.249954,68.85927,13.749 1166,105.802765,243.28912,33.532913,74.10773,12.744 1166,282.54642,201.91078,21.614685,35.81993,12.48 1166,441.66998,236.17923,22.358643,38.39865,10.376 1166,351.55484,215.31378,21.886017,36.017273,9.047 1166,488.16528,263.0421,24.355225,53.274323,8.115 1166,330.5101,173.22284,19.531952,44.21547,8.1 1166,275.31454,205.70651,21.773743,34.88394,7.874 1166,434.67105,241.36499,20.34375,39.456665,7.629 1166,-5.2587404,-16.984972,17.179367,41.926292,7.463 1166,442.4911,215.34793,29.926758,56.20398,6.317 1166,499.62143,243.08702,31.645844,70.150375,6.156 1166,217.67097,203.30923,24.573303,66.735016,6.072 1166,-11.259456,-31.874107,29.980621,71.8432,5.979 1166,382.86188,194.38393,22.545502,47.944168,5.963 1166,-6.245884,489.6029,18.542553,41.719727,5.927 1166,456.29367,224.16437,21.349579,34.911713,5.907 1166,449.28317,244.4738,17.888733,33.10475,5.755 1166,-12.413515,477.39545,30.546196,62.59662,5.735 1166,610.6111,-48.742947,41.15442,101.37826,5.718 1166,-3.9067788,153.29439,17.804531,44.268234,5.686 1166,494.71277,230.6246,54.49292,117.171295,5.556 1166,523.1155,232.95926,30.97705,63.18515,5.531 1166,255.98128,204.83633,21.177902,45.730316,5.447 1166,621.86646,478.2843,28.690063,66.09094,5.384 1166,613.164,454.7258,39.47223,108.44498,5.365 1166,403.23907,211.65543,41.686615,72.65219,5.356 1166,121.855194,211.19412,55.35771,110.42987,5.341 1166,627.18896,-18.233055,17.53302,45.09949,5.33 1166,104.72891,216.29268,52.115646,116.03578,5.326 1166,338.90823,215.95357,21.84964,32.588852,5.29 1166,-73.18443,265.43475,202.06267,463.24823,5.267 1166,167.1637,198.75021,30.638565,63.624695,5.254 1166,616.6559,232.38959,20.667603,42.668793,5.253 1166,590.0561,224.98007,28.646973,53.6261,5.221 1166,92.91994,236.21184,33.795624,76.53523,5.201 1166,505.91794,239.10237,20.373627,43.90944,5.18 1166,379.51398,205.16817,30.679565,56.380356,5.165 1166,265.52032,204.8422,21.963684,39.550842,5.141 1166,245.63623,208.0318,22.840302,53.79303,5.047 1166,572.1445,2.0272102,15.648865,32.48742,4.986 1166,-3.9594727,92.69325,15.821302,38.27263,4.968 1166,226.62277,204.99808,19.176468,47.462173,4.958 1166,583.4055,411.32352,71.42676,177.03745,4.944 1166,-17.7416,-62.80803,56.5184,145.10109,4.893 1166,-4.6993356,108.90762,16.702545,39.442505,4.892 1166,433.8567,243.35385,43.125366,67.37073,4.889 1166,-21.768967,401.69724,79.54211,175.8417,4.867 1166,141.49446,221.17836,30.054016,54.96895,4.86 1166,426.23627,226.54703,20.074615,33.60971,4.829 1167,248.95251,225.19913,26.801025,66.70862,80.006 1167,231.53381,217.91077,25.82483,73.957825,20.677 1167,242.20932,227.15663,22.403809,60.553818,16.024 1167,404.55237,205.09819,30.332,63.30629,12.51 1167,374.35178,229.42162,24.292694,42.875748,11.451 1167,299.564,219.6601,19.888031,31.609161,10.772 1167,445.7921,248.93353,30.03424,63.1969,8.802 1167,304.72086,214.37332,20.700348,30.39685,7.366 1167,489.7085,266.13055,20.317871,37.409943,7.166 1167,361.98737,232.37025,22.837769,33.355698,7.097 1167,482.71002,240.9368,16.059143,36.553955,6.675 1167,291.61945,222.78532,20.484253,31.91922,6.604 1167,474.85645,264.9144,20.29245,39.061096,6.411 1167,612.7131,452.46378,39.773743,110.49448,6.286 1167,498.3728,239.88931,19.211487,40.322723,6.209 1167,-5.9915686,489.18698,18.208427,42.13858,6.208 1167,493.39032,242.80023,27.041138,58.965637,6.205 1167,173.76303,222.65086,23.74179,51.216965,6.203 1167,417.05316,208.22688,32.892853,65.79173,6.161 1167,157.4717,235.51588,32.006607,67.701096,6.01 1167,-11.311365,-33.048332,30.212996,75.87095,5.87 1167,623.2206,-33.26619,26.990112,72.46948,5.804 1167,-5.683653,-17.590889,17.530582,43.512524,5.705 1167,228.263,220.8507,20.363708,54.57045,5.698 1167,627.3493,-19.608963,17.529785,47.561653,5.658 1167,-11.824247,476.81192,29.802437,63.55252,5.64 1167,272.29935,219.9774,21.545471,43.734146,5.37 1167,-72.782455,265.10837,201.11191,463.66177,5.286 1167,280.88757,221.01828,21.907837,36.953094,5.2 1167,255.91124,220.33694,30.853989,63.287872,5.078 1167,313.22977,217.09782,19.207916,30.589386,5.075 1167,490.73135,241.37463,17.382172,37.218323,5.042 1167,621.9061,477.7291,28.958862,66.75766,5.024 1167,362.11917,169.87036,21.431519,51.72679,4.982 1167,459.56345,237.58974,15.788879,31.747147,4.981 1167,11.410734,185.47137,59.017647,160.14838,4.978 1167,-17.432264,-64.150696,56.07946,145.99263,4.9 1167,536.2151,311.09283,144.23718,339.73224,4.898 1167,164.51392,220.85898,37.62433,74.99689,4.892 1167,583.0536,411.51685,71.7572,176.58966,4.831 1167,216.8323,208.75186,26.408478,71.81708,4.808 1167,-21.98048,400.92398,79.78763,176.45432,4.801 1167,493.98993,229.1456,236.64941,513.05493,4.785 1167,603.0988,-56.538986,53.14093,138.58311,4.759 1167,490.33176,-180.29541,235.64871,424.4574,4.689 1167,-5.064316,347.307,16.350067,34.964752,4.646 1167,452.8819,236.9728,16.537323,31.898727,4.639 1167,483.45996,254.4035,16.860168,36.275757,4.599 1167,203.01178,211.88242,18.963531,45.31259,4.511 1168,216.41844,220.85,27.532944,65.60495,98.388 1168,195.94537,220.78714,27.38823,69.02109,76.56 1168,360.67014,218.68071,25.084381,43.40541,15.784 1168,205.18817,216.10857,29.502518,77.573074,13.203 1168,183.72923,215.5411,29.76503,78.004,11.05 1168,453.12262,237.50545,31.076447,68.82445,10.103 1168,273.1471,209.33958,22.687866,32.950516,9.606 1168,501.63638,240.75784,27.6362,60.792236,8.555 1168,505.72638,225.57535,19.11847,48.01761,8.33 1168,85.57381,224.33609,32.486504,72.487335,7.93 1168,98.22293,217.64767,32.494095,77.05844,7.815 1168,-5.299717,-16.986435,17.374178,41.787262,7.034 1168,450.06036,240.7027,22.562042,47.98706,6.814 1168,518.0016,229.21347,26.687622,65.153564,6.724 1168,-11.104917,-31.653559,29.776814,69.18134,6.633 1168,-3.962743,190.43898,15.020796,35.33525,6.631 1168,498.56152,252.80304,19.63739,40.735474,6.465 1168,266.85687,213.13684,20.919159,30.827667,6.46 1168,498.83652,217.45091,20.363068,49.656326,6.324 1168,-4.5019965,204.26701,16.569918,38.07831,6.269 1168,-6.124244,491.70236,18.372522,39.590546,6.126 1168,3.4213977,201.45773,16.079834,33.07321,5.981 1168,626.5859,488.1913,20.446472,45.528778,5.946 1168,34.627037,211.02168,40.344566,87.823685,5.809 1168,-11.979486,481.02505,30.154516,61.214386,5.778 1168,622.85156,-33.910225,26.53003,74.68678,5.769 1168,50.03148,212.28362,32.13582,67.89876,5.757 1168,627.0745,-18.357466,17.267456,47.08047,5.691 1168,248.18967,214.08684,21.769287,34.36177,5.669 1168,498.7644,268.0916,20.217957,39.81024,5.667 1168,506.16888,212.98428,29.850891,69.54721,5.65 1168,424.4727,222.49802,20.68753,34.909607,5.41 1168,613.0681,455.4321,39.33618,107.13016,5.327 1168,58.70751,232.73647,32.49858,56.44026,5.309 1168,444.02118,229.46744,17.809845,29.095947,5.288 1168,-72.94112,264.18488,201.36197,464.77325,5.27 1168,-18.475273,-62.12707,57.0657,141.69958,5.261 1168,337.50217,223.35138,23.5195,32.960785,5.246 1168,3.6030169,-15.177518,16.716866,38.496723,5.231 1168,458.78558,231.05072,17.730286,31.827332,5.17 1168,400.91782,195.58795,31.30722,65.116,5.166 1169,175.39905,201.15985,32.367233,70.212585,97.908 1169,151.94307,203.29425,31.201904,70.480774,95.35 1169,353.02673,204.51578,26.25763,50.41873,29.271 1169,163.74265,194.82965,32.77722,74.3591,19.387 1169,258.47092,189.3331,20.98056,30.451752,15.016 1169,253.18774,193.56601,19.34021,29.227188,10.41 1169,477.8852,235.43631,29.237457,63.986267,9.039 1169,482.41245,235.98836,18.898438,41.91646,7.331 1169,217.0996,192.24107,21.389145,39.909927,7.147 1169,490.48846,223.33623,17.1651,34.62126,7.103 1169,139.35268,189.07454,36.858658,75.76808,6.876 1169,544.4636,202.36656,33.284607,67.03279,6.792 1169,-5.893609,-18.0041,18.28238,43.692593,6.791 1169,559.25415,256.50406,22.352966,43.562164,6.785 1169,137.73462,205.87363,23.094864,51.06958,6.709 1169,-6.008945,489.62164,18.196026,41.271057,6.559 1169,209.67834,183.31514,24.01654,44.711777,6.45 1169,361.13376,199.01299,30.000214,62.703537,6.258 1169,552.3826,261.43057,22.747253,44.309387,6.147 1169,2.5799341,-16.547821,18.433975,41.41614,6.047 1169,489.26328,237.57788,18.970062,39.745667,5.991 1169,-11.252672,-31.599834,30.278887,70.28254,5.976 1169,-11.560204,477.2972,29.777098,63.33676,5.964 1169,550.38715,60.825977,28.216614,68.12564,5.909 1169,477.67123,233.0267,16.746246,37.392395,5.847 1169,264.73264,185.18062,18.54483,27.564606,5.687 1169,621.80145,477.83405,28.832031,66.832214,5.611 1169,563.85626,245.1558,31.343384,60.292587,5.599 1169,627.4251,-17.97298,17.11737,46.73778,5.593 1169,328.5762,207.46675,25.311127,34.54677,5.481 1169,-4.803313,153.7911,17.248684,40.539215,5.466 1169,360.43002,194.84274,20.056427,34.279556,5.389 1169,401.17773,183.13852,32.101562,63.57144,5.363 1169,-72.15644,264.9731,200.5585,463.90543,5.36 1169,623.0836,-33.11403,26.85791,75.61741,5.275 1169,266.225,197.21501,18.068176,27.755844,5.239 1169,602.9923,-57.034767,52.704773,139.43877,5.207 1169,231.81487,191.54892,23.323975,35.36145,5.195 1169,389.5916,179.2778,28.722137,65.58954,5.16 1169,-17.142822,-64.366196,55.60179,147.50455,5.145 1169,536.18005,310.04163,144.42505,341.59637,5.126 1169,481.74316,212.33429,18.398193,39.441544,5.108 1169,125.315125,208.893,29.220215,68.05316,5.068 1169,243.04407,193.49698,21.49762,30.257309,5.061 1170,127.02066,214.77649,42.868774,98.75372,96.96 1170,90.34824,216.69232,41.59939,91.96222,89.929 1170,356.0585,222.69016,26.689453,55.649963,55.894 1170,243.83058,205.33054,20.22142,34.22615,15.336 1170,257.61105,207.63268,18.245758,30.896225,10.505 1170,360.7379,210.74664,19.996582,33.632736,7.103 1170,-5.645028,-17.313541,17.230602,42.54098,6.807 1170,-4.723027,263.40146,16.961166,45.825287,6.656 1170,627.49854,-17.844582,17.141052,46.002285,6.38 1170,371.6764,224.11958,30.599945,63.025894,6.367 1170,132.92209,212.16754,30.842896,65.11499,6.206 1170,328.44806,226.26764,23.31903,35.706696,6.111 1170,-5.95158,490.33496,18.085913,41.016113,6.076 1170,4.0626645,253.51761,40.000713,97.55539,5.887 1170,-8.9772005,462.66974,37.597305,95.35272,5.812 1170,622.921,-33.902653,26.459412,74.84164,5.797 1170,-12.522397,-41.572308,41.440586,102.93049,5.788 1170,626.5084,488.0727,20.71167,46.257812,5.741 1170,73.413704,217.61658,41.38517,82.87488,5.701 1170,199.36963,191.63203,29.55777,58.5748,5.698 1170,114.355774,223.02753,35.060547,85.5365,5.675 1170,234.19989,210.95564,21.469284,33.55034,5.668 1170,-73.459015,262.20355,202.66693,466.9436,5.656 1170,324.73877,134.28078,25.317627,68.67848,5.636 1170,51.64648,232.8337,41.115475,76.94704,5.568 1170,360.59918,210.97406,33.25464,54.37961,5.565 1170,612.91626,454.7309,39.612305,107.8761,5.276 1170,346.57196,222.37764,25.075562,45.385513,5.263 1170,350.34753,202.90448,28.272736,57.586365,5.208 1170,620.0498,-2.545765,17.395752,36.217186,5.199 1170,-41.855007,356.15152,114.17287,285.8845,5.157 1170,28.135546,215.65067,53.431908,101.52109,5.138 1170,249.80661,199.72725,18.991943,31.845917,5.131 1170,9.043107,231.79869,55.192154,105.81825,5.091 1170,536.49,310.21082,144.10358,340.7323,5.087 1170,121.72723,211.04858,22.170479,46.039886,5.082 1170,581.0889,255.08488,14.56781,28.406662,5.011 1170,-5.576017,185.66518,17.48059,42.68239,4.98 1170,-11.593953,478.55603,29.507927,62.177246,4.978 1170,583.11896,410.58844,71.64484,178.67365,4.946 1170,602.92993,-56.31007,52.99286,139.3857,4.943 1171,60.98983,220.63977,54.921593,122.877075,98.488 1171,366.43185,228.11234,28.104858,61.85144,96.8 1171,15.336811,221.94167,54.127155,118.00554,96.284 1171,250.58163,212.46814,18.128357,29.414856,21.039 1171,235.72256,213.3414,18.371735,28.004715,12.989 1171,532.4448,242.98708,28.000183,62.21257,8.786 1171,376.0867,227.99625,29.653687,65.97986,8.149 1171,353.0579,222.55582,29.300507,63.094696,8.072 1171,342.3009,217.27258,29.948883,58.16217,7.696 1171,-7.4041796,236.58624,38.732758,106.75336,7.569 1171,243.08653,213.38966,19.323868,29.599472,7.403 1171,555.27246,256.61926,17.350708,36.450928,7.146 1171,328.72388,227.47867,23.73767,35.518738,6.717 1171,-6.194065,-17.635386,18.418615,43.111282,6.466 1171,47.88105,210.66635,36.731415,67.110504,6.309 1171,546.28015,253.73181,19.4823,40.67462,6.217 1171,226.87209,214.58852,20.797058,30.67688,6.181 1171,563.01074,256.7496,16.942627,36.222656,6.159 1171,79.64248,217.36548,38.563713,90.805725,6.12 1171,570.8956,255.92397,17.558167,35.94243,6.081 1171,362.67273,219.49872,23.735016,48.865692,6.004 1171,-10.972959,-31.269241,29.41137,70.64958,5.936 1171,-6.183491,489.6035,18.550545,41.474884,5.92 1171,-73.57024,259.45,203.7499,467.7564,5.864 1171,529.6818,242.28525,23.622498,37.387817,5.758 1171,-4.8835135,209.06601,61.32659,161.73419,5.73 1171,-12.069759,477.50842,30.008747,63.533813,5.632 1171,375.3282,219.5722,22.845093,50.50229,5.511 1171,-17.988115,-63.117687,56.922585,143.52304,5.418 1171,603.0835,-55.08957,52.86255,135.93967,5.393 1171,579.30945,254.21786,18.636658,36.073242,5.38 1171,627.72314,-15.987028,16.273132,43.91188,5.377 1171,612.8423,454.8941,39.55957,107.78882,5.332 1171,49.585243,229.69339,35.733437,108.429565,5.313 1171,58.9934,212.24753,37.50988,83.108185,5.289 1172,391.5932,220.56021,39.071472,95.125336,96.62 1172,251.54767,209.8963,17.567444,31.216766,24.292 1172,234.9238,212.41722,17.846771,29.336197,18.25 1172,421.92154,216.18282,27.94812,67.89366,17.138 1172,243.58162,211.17049,17.79271,29.691116,11.122 1172,433.03363,210.25955,17.833954,48.40329,8.59 1172,226.81618,212.98941,20.413101,31.409119,7.929 1172,392.45602,218.67114,26.497253,65.81189,7.236 1172,420.2077,209.8751,20.875854,50.844986,7.109 1172,410.86484,222.13493,31.697357,75.42561,6.806 1172,-6.132345,-18.444872,18.294708,43.852283,6.7 1172,-10.842798,-32.2288,29.17665,71.907455,6.548 1172,626.44257,487.94952,20.657654,46.170166,6.306 1172,602.77515,-54.246254,53.345398,134.27814,6.247 1172,-1.887778,246.37697,28.970469,85.02388,6.129 1172,-3.1357288,278.30328,27.178225,86.46887,6.015 1172,257.6634,212.65144,18.066162,30.030762,5.818 1172,-6.2593837,489.62436,18.601019,41.524384,5.665 1172,627.44434,-16.92132,16.998169,44.88782,5.599 1172,-8.824149,464.66486,37.57012,92.431885,5.565 1172,218.31236,211.87369,21.203491,32.846878,5.417 1172,343.66745,223.85661,22.969666,40.067276,5.374 1172,-72.96798,264.95117,201.65906,463.53564,5.358 1172,612.75073,455.8222,39.432556,106.43756,5.333 1172,-16.957735,-63.426098,55.41323,145.51544,5.322 1172,536.49426,311.118,144.27203,339.39835,5.15 1172,408.81836,216.16895,21.042725,54.24588,5.121 1172,622.7662,-33.303448,26.849854,74.301155,4.934 1172,-12.202907,222.93263,31.170517,66.07182,4.867 1172,-21.455196,402.41736,79.0612,175.69861,4.798 1172,582.7988,412.2997,72.1994,176.60532,4.79 1172,-40.697662,365.118,111.31396,278.0026,4.712 1172,182.87378,192.29329,29.43332,60.822998,4.699 1172,556.0779,259.39093,15.803589,28.01358,4.691 1172,493.5929,229.3765,238.05579,510.65988,4.668 1172,364.15695,217.02902,31.114716,61.569824,4.653 1172,489.69498,-180.90985,236.02615,426.03226,4.546 1172,154.32465,231.81816,19.491043,31.557175,4.538 1172,440.7756,228.69992,20.702484,44.39099,4.515 1172,-1.180731,239.43347,24.85685,48.96698,4.47 1172,374.68674,239.58943,31.730133,61.979202,4.469 1172,442.46753,214.38083,16.021301,39.722733,4.466 1172,595.4106,-42.93484,43.35797,98.59009,4.443 1172,476.79672,210.06018,54.43521,111.62201,4.434 1172,404.4301,251.6856,25.955383,62.03264,4.422 1172,199.61266,214.5066,22.625885,39.076767,4.347 1172,125.30452,20.528763,28.745178,73.59534,4.338 1173,468.76553,217.90082,52.249176,139.2873,96.458 1173,275.22372,211.72942,20.135132,31.57637,36.905 1173,258.1265,213.6729,17.887543,28.672287,26.139 1173,267.1634,212.82642,18.744995,29.28009,14.308 1173,-5.505723,-17.019562,17.783909,42.34735,8.155 1173,207.78609,197.56181,25.892563,57.95262,7.764 1173,215.50627,214.11049,22.737747,42.55565,7.563 1173,202.11534,196.78966,19.488571,42.566406,7.199 1173,-11.444597,-30.760267,29.770617,69.835175,7.148 1173,475.0795,273.8435,35.75421,84.693054,6.973 1173,151.32124,222.00061,26.91127,39.302307,6.826 1173,55.706184,202.71925,31.083328,65.3676,6.616 1173,490.56033,218.31003,32.32718,80.05417,6.578 1173,479.69202,225.80957,34.352722,89.28711,6.303 1173,202.64093,215.94073,19.867233,39.950302,6.267 1173,-5.988289,490.133,18.285006,41.088806,5.955 1173,626.49615,488.2236,20.602295,46.002167,5.94 1173,3.0660195,-14.983114,16.835413,37.907623,5.934 1173,-8.583623,465.19766,37.546886,92.08078,5.71 1173,626.98706,-18.553154,17.771301,46.46347,5.702 1173,603.2852,-54.536663,52.466187,137.83224,5.604 1173,612.68854,454.86142,39.886597,107.467316,5.597 1173,535.5982,312.18933,144.29694,338.93762,5.497 1173,622.57306,-34.070026,27.21283,74.76113,5.496 1173,281.8925,216.6729,19.145752,30.977844,5.406 1173,550.0395,260.73172,23.267029,49.70456,5.399 1173,-73.24803,264.7027,201.8331,463.85553,5.3 1173,109.41924,204.09882,15.22831,31.669983,5.265 1173,-17.250774,-65.12154,55.447216,151.1429,5.26 1173,37.490536,195.9071,31.062283,58.78662,5.217 1173,196.37428,204.74579,18.71025,41.135895,5.213 1173,412.72415,224.4899,59.213287,107.65524,5.207 1173,233.83612,212.53296,21.12642,34.100098,5.124 1173,250.21721,217.77325,20.688889,30.38536,5.108 1173,561.88184,216.62628,17.817444,39.55716,5.106 1173,116.24263,216.41527,17.538223,30.302628,5.097 1173,506.74554,228.15123,50.090637,121.402695,5.077 1173,253.87784,210.14143,16.114594,27.287994,5.004 1173,582.6382,411.70752,72.53418,176.57983,4.976 1173,516.18304,119.8376,31.538574,79.74596,4.91 1173,-21.45793,402.88464,79.003006,175.05359,4.891 1173,-14.157014,156.77368,46.995262,136.56232,4.873 1173,530.51385,83.35858,19.665955,42.596466,4.858 1173,494.34723,230.89987,237.85602,508.90384,4.817 1173,13.915264,177.90997,52.624233,118.5119,4.776 1173,-40.64104,365.44806,111.21486,276.82416,4.747 1173,353.46707,225.8227,21.684113,30.448914,4.742 1173,538.0012,83.74963,20.652344,40.201027,4.684 1173,362.10236,-19.733807,19.350555,44.908085,4.631 1173,492.9506,225.6436,42.89633,110.11122,4.625 1173,163.38448,-14.43059,16.958237,35.509426,4.594 1173,125.03085,205.09853,14.437912,31.515884,4.569 1173,32.328087,195.80666,23.919884,44.355072,4.56 1173,108.85377,216.22942,16.421951,31.465988,4.557 1174,305.88583,208.01277,20.04483,41.056107,66.98 1174,282.73856,215.68878,17.838226,32.105927,38.551 1174,289.48877,213.409,19.053833,33.30562,26.124 1174,-5.617888,-17.048729,17.719374,40.925987,8.593 1174,-11.218655,-30.86579,29.446852,69.18403,6.374 1174,622.73035,-32.997192,26.898865,76.10755,6.337 1174,-6.022237,489.4564,18.327477,42.0347,6.09 1174,233.34634,228.50641,20.734436,36.397156,5.827 1174,626.58594,488.0053,20.588501,46.14557,5.814 1174,-5.502614,2.7013664,17.679352,41.123764,5.806 1174,275.06894,217.46494,19.648956,31.130981,5.744 1174,602.3176,-54.09002,53.337585,138.64354,5.677 1174,-8.695353,464.92358,37.543434,92.01709,5.572 1174,223.35583,197.14761,25.71614,55.895844,5.314 1174,612.9593,455.49625,39.066406,106.77591,5.278 1174,627.3737,-18.113728,17.166748,47.68321,5.236 1174,370.87433,177.84679,18.594055,38.125504,5.222 1174,-17.781084,-62.424988,56.027405,144.08421,5.22 1174,-73.19844,265.81757,201.84044,462.46173,5.216 1174,583.05237,413.12125,71.80676,175.51047,5.141 1174,3.30231,-14.880676,16.277008,37.18863,5.094 1174,522.773,241.9071,18.880798,34.47412,5.063 1174,312.62952,214.66116,19.800568,36.524002,5.061 1174,284.5274,204.37576,14.509705,24.55069,5.002 1174,239.8333,218.22482,23.17604,41.34915,5.002 1174,158.55554,222.4665,24.360962,42.32057,4.982 1174,-21.85545,401.5288,79.77525,176.3952,4.963 1174,358.72723,156.28107,27.867035,63.57666,4.948 1174,569.8987,197.85352,20.93103,37.960556,4.936 1174,171.01273,-15.127481,16.976608,35.237633,4.933 1174,545.72217,233.7954,17.298157,34.21422,4.891 1174,536.1386,311.22577,144.19043,340.4394,4.885 1174,402.22928,-15.329136,18.01117,38.603897,4.88 1174,186.93488,-15.788889,17.083038,36.388184,4.879 1174,0.1291287,185.09543,22.479103,65.65152,4.832 1174,393.68484,227.74397,21.521606,31.390488,4.819 1174,49.5398,159.28047,32.860302,87.42088,4.779 1174,-4.946496,151.34836,18.44276,48.482574,4.768 1174,-0.62704325,309.8736,25.839167,68.76837,4.766 1174,-9.391799,129.41196,28.362583,76.945816,4.761 1174,267.53714,217.89467,19.818542,30.676834,4.592 1174,140.4519,120.454254,32.667618,73.337524,4.541 1174,493.40347,228.20612,237.78494,512.70337,4.54 1174,505.8338,259.23325,33.46875,64.61267,4.527 1174,27.929993,-9.555233,56.630295,117.973694,4.525 1174,203.38754,212.59766,15.631332,32.848297,4.423 1174,170.88377,-0.52423286,18.070114,29.98515,4.415 1174,506.6186,236.50526,55.8844,108.453445,4.403 1174,112.91169,225.33643,44.933113,70.63782,4.376 1174,299.03445,214.3884,20.272827,34.92459,4.367 1174,585.21826,-100.87041,75.663025,233.57312,4.363 1174,506.1171,237.37242,20.878265,40.813126,4.33 1174,486.34363,228.24303,27.737549,68.17827,4.288 1174,489.0306,-179.16751,236.55765,423.3342,4.264 1174,229.81815,203.994,28.53357,57.230698,4.264 1174,144.9079,222.56334,44.4093,68.67824,4.259 1174,513.9088,239.16066,20.260864,38.805984,4.25 1174,179.62152,-13.996414,16.672485,34.091034,4.247 1174,570.75586,-16.932724,17.945068,39.230064,4.231 1174,-37.392838,-128.33612,117.88057,280.48407,4.166 1174,490.83054,-16.128374,17.089111,36.69631,4.14 1174,-71.18824,-187.21484,211.2522,453.90085,4.138 1174,605.56165,-33.779747,28.075195,78.87018,4.109 1174,563.1667,-16.887867,17.10907,37.784664,4.106 1174,363.23523,171.03516,19.875122,39.986725,4.092 1174,521.6393,-2.278184,20.164673,33.401672,4.07 1174,478.3048,234.74245,59.647522,105.50145,4.048 1174,-16.01821,274.62842,48.896515,140.03491,4.04 1174,506.30646,167.59438,18.955505,33.452896,4.019 1174,540.39026,-10.610096,56.39807,119.70546,4.001 1174,82.09245,225.7547,42.52365,74.467834,4.0 1174,60.456375,-9.950523,56.14969,120.27162,3.998 1174,553.3398,197.95042,21.171997,39.25763,3.986 1174,460.35754,-13.831345,15.077911,34.72147,3.975 1174,359.97055,6.6602097,32.37375,72.258545,3.962 1174,65.18535,237.33662,42.842834,81.765305,3.958 1174,185.48811,244.46367,20.419632,33.527267,3.955 1174,203.52344,-14.163212,31.661942,63.31406,3.955 1174,419.4218,-14.675862,16.396027,35.558952,3.954 1174,443.5888,-15.4205475,16.218475,35.728874,3.949 1174,615.4707,12.905811,23.570862,79.2578,3.947 1174,532.02325,242.98846,18.078125,30.703735,3.94 1174,581.67444,210.09676,38.819885,88.50365,3.935 1174,154.11055,32.19126,31.609756,63.471397,3.926 1174,3.1912189,4.96014,18.502827,38.93285,3.908 1174,475.65433,-15.451472,15.7499695,36.783558,3.899 1174,410.32086,-16.20764,17.201752,37.217285,3.876 1174,564.55817,227.5527,40.77118,99.2041,3.853 1174,163.37694,-15.085133,17.03894,35.012318,3.853 1175,306.98297,202.2363,21.202911,45.62213,60.267 1175,276.72787,208.65723,17.983551,37.608246,59.632 1175,289.9605,209.43771,18.914276,37.86133,42.104 1175,299.50305,204.49577,19.596619,39.457825,12.565 1175,-5.372142,-16.62896,17.296806,41.462894,8.097 1175,423.0331,227.4111,22.395905,40.069702,7.967 1175,-11.190311,-30.92228,29.44167,71.295456,6.81 1175,379.37576,168.46341,18.702301,41.957153,6.687 1175,375.56024,150.5858,26.61554,68.354996,6.387 1175,269.75476,214.56818,17.79538,34.12607,6.264 1175,3.0148315,-14.793812,16.298923,39.020878,6.175 1175,622.95374,-33.863964,26.445435,75.31207,6.122 1175,627.71216,-16.971115,16.516846,45.538525,6.002 1175,621.5881,250.43854,15.618225,34.401306,5.864 1175,621.584,477.65515,29.202637,67.171875,5.818 1175,-11.997244,478.22342,29.90984,62.293365,5.617 1175,603.318,-55.19741,53.098267,136.10997,5.52 1175,223.54463,222.3209,23.821121,43.460983,5.446 1175,-6.1503654,490.2002,18.45494,41.19922,5.412 1175,-73.26938,264.97815,202.03886,463.39246,5.339 1175,239.73056,220.90738,24.07251,40.875793,5.304 1175,121.79437,222.49106,32.93251,54.99289,5.251 1175,-17.304937,-64.66148,55.881653,147.92648,5.2 1175,603.198,433.13467,55.586853,140.63144,5.127 1175,59.033478,204.25806,33.879616,58.56006,5.085 1175,180.03493,198.83144,15.404556,29.11319,5.069 1175,291.9254,202.31406,16.588654,28.931412,5.043 1175,536.62213,311.19983,144.01569,340.3506,5.03 1175,280.10095,202.92218,24.089691,46.639313,4.958 1175,-21.634808,402.66016,79.249725,175.26959,4.919 1175,626.8419,246.24268,15.890991,40.315674,4.918 1175,34.918907,212.00172,16.90741,31.260544,4.791 1175,-4.1258583,157.48312,15.2632675,37.026,4.783 1175,494.02206,229.47194,237.51846,511.9394,4.655 1175,620.18994,-3.3578644,17.560425,38.73679,4.59 1175,56.500587,89.33951,23.757195,40.07071,4.584 1175,604.1896,253.22981,14.765625,30.284683,4.567 1175,283.50552,202.87244,16.288574,30.011948,4.519 1175,102.28525,86.905716,30.151413,70.41086,4.502 1175,508.31937,223.84592,32.00058,67.58911,4.499 1175,585.16003,-99.017845,75.99402,230.08026,4.479 1175,-5.4305773,169.1199,17.67281,42.53621,4.465 1175,-5.096098,92.523056,17.520802,47.682297,4.46 1175,580.03076,-1.84202,29.033813,57.72718,4.367 1175,538.2984,-5.965473,58.39789,110.40761,4.29 1175,83.73816,249.58725,31.905792,60.539917,4.277 1175,539.412,72.6429,30.042236,68.12921,4.274 1175,80.94603,220.11014,44.185867,74.663086,4.259 1175,454.02133,168.43033,25.982635,63.449463,4.223 1175,-37.765488,-130.83235,117.812546,289.04758,4.208 1175,259.47885,207.98016,18.19165,33.17801,4.201 1175,489.48535,228.89111,35.08185,68.56323,4.197 1175,131.09991,-14.130293,17.219147,37.42029,4.194 1175,-5.3334165,201.37627,16.940083,39.24446,4.192 1175,594.8218,-44.532707,44.232605,97.630905,4.191 1175,597.2908,250.71753,15.873352,34.41101,4.175 1175,489.21722,-178.99792,236.15631,423.00623,4.17 1175,2.5052576,4.9408894,18.265694,41.676186,4.153 1175,413.65485,141.77985,27.86264,61.859177,4.148 1175,508.05927,-1.7623825,29.48462,56.81317,4.096 1175,-4.540915,2.3106213,17.174341,42.645996,4.083 1175,365.89636,142.26866,29.661774,62.065063,4.056 1175,163.90128,0.74440575,16.836243,32.084755,4.054 1175,33.7389,232.37302,44.021027,79.496124,4.054 1175,586.5429,-16.156134,17.424438,38.51993,4.043 1175,48.786755,83.719604,24.219715,40.564827,4.037 1175,384.85455,156.57304,20.87201,44.18495,4.019 1175,423.86386,152.51222,21.541687,40.73938,4.019 1175,186.2636,204.74564,17.574371,34.38884,4.012 1175,529.18384,78.69021,46.41992,89.69108,4.008 1176,303.2008,212.14021,22.390594,49.667557,93.944 1176,282.98987,214.61107,21.141113,44.708023,93.761 1176,265.0384,211.55008,21.887634,49.33792,91.926 1176,-5.3149314,-17.160267,17.500097,42.65161,8.203 1176,272.76443,219.53693,21.085297,41.660492,8.186 1176,197.90376,174.87845,27.354553,68.47162,6.894 1176,-10.892698,-31.381046,29.19429,69.56505,6.27 1176,622.7329,-33.179817,26.749512,74.48659,5.941 1176,-12.127201,477.01993,29.942278,64.06387,5.686 1176,-6.0617394,489.8054,18.22507,41.498566,5.492 1176,603.0895,-55.236076,53.07782,133.37427,5.474 1176,103.02763,157.28482,29.915207,71.24255,5.398 1176,-73.40893,263.9627,202.40887,463.89398,5.381 1176,626.68896,488.04254,20.48169,46.10266,5.363 1176,627.07434,-19.142673,17.49707,48.25613,5.348 1176,443.33124,243.73232,31.865112,51.530533,5.264 1176,381.58215,159.27736,27.880127,72.35414,5.223 1176,-17.613527,-62.04806,56.135857,143.27771,5.202 1176,612.8815,455.1766,39.516907,107.05899,5.126 1176,582.8559,412.94345,71.93909,175.18747,5.094 1176,536.1109,310.9513,144.3645,340.39032,5.047 1176,-4.195004,5.0993958,15.639658,37.122734,5.024 1176,-4.4820266,19.521097,15.658516,39.962227,4.987 1176,-21.789417,402.3568,79.602615,175.59698,4.885 1176,571.7339,-13.529457,53.64325,119.55067,4.883 1176,563.5167,-6.357197,30.505432,62.99054,4.869 1176,516.4738,221.2186,17.51233,32.86203,4.851 1176,493.95798,228.69406,237.0604,513.3727,4.81 1176,-2.2288203,263.12543,36.048523,72.316895,4.801 1176,-5.1918297,159.35457,17.435211,43.690353,4.784 1176,524.0109,201.70099,30.85608,60.361786,4.745 1176,537.444,217.68317,20.279663,35.364136,4.691 1176,594.1133,-43.40941,44.91931,94.81003,4.654 1176,584.98553,-98.12963,76.0495,229.24646,4.65 1176,3.1783872,-15.499948,16.4798,39.21787,4.632 1176,530.4682,215.43245,19.914429,38.547455,4.616 1176,-37.224194,-129.90535,119.10243,288.20947,4.596 1176,-4.638165,202.975,15.813894,38.899612,4.581 1176,-5.348035,188.59178,16.316948,37.92003,4.568 1176,523.0265,218.16214,18.335876,36.992218,4.553 1176,108.03692,-20.000223,30.600899,69.631935,4.552 1176,421.61313,152.40501,28.0878,59.66716,4.465 1176,250.45331,216.83391,21.16211,40.818253,4.404 1176,331.92578,189.36235,16.394287,31.899551,4.4 1176,119.542984,205.32686,22.343277,41.952805,4.354 1176,117.70186,-33.828415,28.366043,72.013695,4.329 1176,-4.471008,104.009254,17.451029,43.457726,4.29 1176,10.969477,-2.5355759,59.04592,123.24863,4.29 1176,320.00366,211.857,21.98764,41.544357,4.271 1176,329.47247,214.32071,20.567535,35.618164,4.238 1176,539.82544,-9.346653,55.962524,113.659546,4.238 1176,477.12726,230.08698,31.033142,55.021423,4.228 1176,171.88629,-1.0181742,16.603165,32.223648,4.196 1176,488.65533,-177.79985,237.00879,422.88052,4.167 1176,3.8472056,8.046495,16.361982,34.41414,4.15 1176,-71.02345,-187.3735,211.68216,453.77246,4.134 1176,231.52238,242.42194,23.103546,41.140686,4.132 1176,426.48547,148.21274,19.16687,34.48857,4.125 1176,421.5372,0.18080711,29.103088,63.904495,4.122 1176,515.0563,162.64798,32.3938,57.78679,4.088 1176,475.55875,-16.936747,16.61618,39.281155,4.019 1176,538.53235,-18.062878,17.926453,40.265224,3.986 1176,-14.362972,154.28955,47.003235,139.01984,3.981 1176,619.1656,-19.05038,17.917786,44.682396,3.964 1176,464.80597,250.3793,47.117096,69.61636,3.949 1177,265.45477,213.7407,21.69394,49.9926,95.277 1177,288.71292,209.67,23.551208,55.847977,91.896 1177,248.68944,210.85081,20.584274,50.66249,85.851 1177,253.56363,212.95703,27.240448,53.5795,8.694 1177,374.32712,148.36917,28.728424,77.54428,8.578 1177,-5.499486,-16.368992,17.157955,40.536346,8.349 1177,366.91095,213.5639,28.073303,55.988342,6.335 1177,-11.13491,-31.733303,29.537556,69.99536,6.246 1177,622.9908,-33.612038,26.786804,74.76521,6.145 1177,-6.221228,488.99426,18.62508,43.026184,5.718 1177,626.8598,488.4397,20.21228,45.341187,5.687 1177,-18.03332,-63.497375,56.39077,145.4747,5.678 1177,-12.636523,476.24136,31.077583,63.98831,5.655 1177,603.38934,-55.488297,52.874695,134.43378,5.586 1177,627.7087,-18.899303,17.071716,47.672295,5.558 1177,3.450383,-14.600403,15.940387,36.3999,5.427 1177,491.3526,253.96701,32.14032,56.36087,5.424 1177,-5.157876,149.81375,19.044548,49.365707,5.326 1177,583.1062,412.9479,71.95654,175.31064,5.322 1177,-73.42658,265.0923,202.44797,464.06653,5.312 1177,612.9813,455.63464,39.33795,106.30835,5.307 1177,536.11993,310.27283,144.24982,340.60864,4.972 1177,-22.251915,400.66333,80.0423,176.4668,4.885 1177,393.9777,160.86378,20.684967,46.84041,4.743 1177,273.26093,210.42088,19.713867,44.605774,4.739 1177,301.3577,208.49088,23.066376,50.374176,4.727 1177,594.53613,-45.772648,44.158936,96.81238,4.712 1177,232.22781,203.96468,29.017914,64.153305,4.693 1177,367.13498,138.31203,30.849457,65.875275,4.637 1177,517.53467,158.23619,29.621765,58.168015,4.621 1177,493.9944,229.40164,237.26709,512.8002,4.607 1177,322.38855,170.80298,19.224487,44.133423,4.571 1177,-1.63795,145.2956,25.539154,73.53952,4.541 1177,57.779182,-8.970699,57.865654,115.07103,4.49 1177,584.70856,-98.04527,76.63373,228.30281,4.44 1177,549.57007,154.61205,30.466614,60.071365,4.42 1177,-5.321028,66.34992,17.425379,42.584885,4.376 1177,572.04926,-6.0376053,29.5932,61.827553,4.357 1177,-5.867574,90.08861,19.226501,44.291885,4.351 1177,571.37415,-16.470066,54.05713,117.943375,4.253 1177,471.37057,82.217316,62.532867,113.080505,4.252 1177,475.94754,153.12253,29.945343,68.54001,4.237 1177,-37.18423,-128.76793,118.599686,279.86417,4.226 1177,459.50607,-15.018255,15.882172,37.36264,4.223 1177,11.962807,-9.649342,58.594307,120.22333,4.22 1177,451.67792,-13.438109,15.879822,35.48611,4.161 1177,-6.3396463,344.2267,17.668468,40.278442,4.161 1177,539.9623,-9.448555,56.332214,112.77579,4.131 1177,488.4005,-177.28607,236.82501,421.55862,4.111 1177,306.96167,206.01678,31.70691,53.497894,4.095 1177,564.1956,155.6404,31.949219,60.96057,4.079 1177,619.6058,-19.675758,17.634827,44.687775,4.025 1177,-5.6377316,3.270094,17.98993,40.169632,4.019 1177,582.16785,222.8164,28.727417,61.798218,4.018 1177,565.7633,49.26453,31.182251,70.67636,3.994 1177,378.9758,176.37842,17.921906,42.418304,3.987 1177,596.9913,211.3664,28.375183,62.012146,3.981 1177,225.69536,216.0029,22.354202,43.59198,3.933 1177,441.75726,156.95764,19.488098,33.29901,3.929 1178,273.73035,212.48953,26.311829,67.68045,97.224 1178,244.58969,217.42432,25.152618,60.261932,96.354 1178,225.97476,216.44766,22.85785,61.842834,72.404 1178,-5.1030884,-17.146719,17.055698,41.90849,9.102 1178,-10.574228,-30.256113,28.61764,66.7305,8.076 1178,3.0539875,-15.212941,17.142118,37.40705,6.999 1178,-6.512517,488.41196,19.111637,43.78067,6.067 1178,-12.558258,475.56345,30.939888,64.459625,5.985 1178,627.0037,-17.917522,17.386597,47.381332,5.936 1178,617.5327,187.83128,23.816406,51.203323,5.894 1178,558.5318,270.93625,29.197876,58.387238,5.877 1178,-17.798176,-62.4802,56.88572,141.04317,5.673 1178,622.84735,-33.750355,26.332214,75.03063,5.576 1178,603.0355,-55.603615,53.154297,133.43057,5.544 1178,540.694,278.40088,28.846497,59.868866,5.488 1178,626.5643,488.23593,20.793213,45.230682,5.45 1178,435.59265,133.92998,27.97287,62.0504,5.443 1178,-73.34074,264.1825,201.82101,465.78748,5.365 1178,280.8316,210.42229,30.000153,57.906906,5.328 1178,0.8524382,251.09178,21.230326,48.04924,5.147 1178,612.9582,455.37234,39.661987,107.10788,5.124 1178,582.78534,411.82294,72.23541,177.0617,5.001 1178,536.8845,309.94135,143.2409,340.3952,4.983 1178,2.4523425,3.0440922,19.198334,35.002274,4.969 1178,519.22394,273.50604,29.5271,56.68701,4.951 1178,-41.143627,364.40826,112.40082,277.01105,4.917 1178,532.9633,156.36919,32.520203,67.23901,4.84 1178,267.62314,216.86572,23.671051,53.376984,4.819 1178,9.089961,-12.454056,59.709217,119.34047,4.767 1178,-5.191909,1.7072754,18.056759,38.902687,4.656 1178,250.79651,209.62517,30.016785,57.936325,4.639 1178,27.963871,-14.332008,31.177479,59.856575,4.61 1178,584.91406,-97.55237,76.15051,227.81212,4.608 1178,206.2644,208.92923,30.297714,66.77692,4.598 1178,150.96341,67.20232,33.102844,84.0338,4.562 1178,298.79868,208.385,33.23819,52.13414,4.465 1178,493.57056,229.27554,237.6568,512.31165,4.465 1178,-19.067156,433.88498,56.6304,141.50394,4.429 1178,5.2056932,-33.401814,27.821838,66.80839,4.409 1178,594.2628,-44.474842,44.61731,94.17411,4.4 1178,441.38245,214.43185,22.349426,53.87787,4.368 1178,571.74585,-15.271889,53.886353,116.03072,4.342 1178,10.204139,-16.618769,17.379795,37.758087,4.327 1178,570.55255,268.37408,29.182373,59.618042,4.326 1178,-14.647479,215.19757,49.002552,142.3006,4.316 1178,381.77094,217.64156,29.18515,55.74196,4.307 1178,-3.9604554,261.45,17.033863,45.46219,4.302 1178,434.29932,-18.002468,18.273193,40.515347,4.291 1178,-37.419506,-127.82633,118.32294,279.9417,4.274 1178,-10.401193,102.78204,31.241638,76.87567,4.251 1178,488.85468,-177.44292,236.70514,422.4399,4.243 1178,434.08356,210.42047,19.862793,51.693817,4.222 1178,442.2456,-18.583742,18.317139,39.63049,4.211 1179,250.97028,214.05537,31.48996,83.854935,96.983 1179,221.91818,216.91286,29.181747,80.63405,95.292 1179,202.87555,215.52109,28.912018,77.26218,75.835 1179,236.81668,217.39139,32.015656,76.283905,7.962 1179,260.3507,216.83775,28.325195,58.15004,7.807 1179,-5.826339,-17.661818,17.976452,42.50951,7.695 1179,-10.854033,-31.978157,29.253696,70.873924,6.977 1179,270.75784,215.17615,23.079803,48.896973,6.25 1179,622.4984,-34.17656,26.78125,75.66597,6.229 1179,65.46843,238.18666,20.465012,44.018112,5.889 1179,70.548195,215.0297,27.059486,71.38016,5.81 1179,46.657997,217.12903,27.241257,70.81268,5.696 1179,-12.746986,477.53958,31.016508,62.80014,5.611 1179,439.51196,123.59944,27.09961,60.346405,5.387 1179,626.54193,488.0076,20.889343,45.912994,5.369 1179,-6.5775747,489.21344,19.066498,43.298645,5.362 1179,613.0769,455.6092,39.49872,106.35919,5.222 1179,627.2674,-19.230204,17.044678,47.795475,5.21 1179,-73.30345,264.52835,201.67513,465.1069,5.151 1179,78.16785,234.52243,28.564178,62.435486,5.123 1179,603.3729,-56.673138,53.011047,133.80472,5.107 1179,37.803795,229.50102,36.54406,89.460464,5.099 1179,537.2889,310.67538,142.28937,340.68777,4.96 1179,-40.996246,362.00766,112.6414,278.08377,4.939 1179,233.94504,214.0667,18.599808,38.149185,4.867 1179,74.64415,240.99272,19.25306,43.150406,4.826 1179,582.82513,410.60226,72.14044,178.27457,4.825 1179,-17.475939,-64.18775,56.313156,146.26772,4.791 1179,288.98453,211.3685,22.751282,36.31288,4.779 1179,-18.543837,434.90918,56.45491,140.70538,4.748 1179,55.755608,211.06215,33.45852,85.18474,4.746 1179,2.8274708,-15.685265,16.777622,38.57826,4.742 1179,594.35284,-46.137787,44.93329,94.965065,4.728 1179,549.78827,142.54167,31.997864,57.119827,4.66 1179,308.24255,162.95879,28.933655,66.82434,4.645 1179,474.79974,-8.93922,57.933655,105.61594,4.609 1179,180.85817,226.65996,31.587524,67.31712,4.604 1179,619.17957,-18.912176,17.931763,44.933567,4.581 1179,281.40903,210.98346,19.623016,32.77632,4.565 1179,87.01869,214.86176,24.983826,71.30328,4.562 1179,-6.2346764,88.88996,18.850147,44.390724,4.558 1180,224.32379,211.6218,45.83545,107.36401,97.267 1180,156.40791,210.10327,50.50032,115.42059,92.379 1180,188.55417,211.92908,45.382065,110.32153,79.043 1180,195.55554,215.93456,28.570358,71.786514,13.552 1180,-5.6499815,-17.605188,17.7425,43.118877,6.781 1180,-11.373129,-31.930902,29.91293,73.934265,6.542 1180,627.32837,-17.963387,16.836609,47.88171,6.022 1180,-17.746984,-61.449745,56.40928,139.86623,5.776 1180,611.34955,-48.24458,41.15216,100.739334,5.668 1180,-6.355305,488.9456,18.743658,42.937775,5.592 1180,2.3777409,-16.684263,17.772318,41.326813,5.573 1180,-9.656014,463.83734,38.127525,93.3703,5.519 1180,-3.7098696,188.47275,16.787651,43.282715,5.513 1180,452.74814,105.67083,27.073029,62.92312,5.493 1180,-4.8697677,248.96556,17.228619,43.348557,5.43 1180,-73.357285,264.1001,202.81313,465.02734,5.388 1180,626.70166,488.50665,20.713379,44.71167,5.289 1180,180.43591,211.68053,33.733704,91.00679,5.199 1180,-4.899844,218.86629,18.001057,52.1671,5.132 1180,612.9847,455.49915,39.58893,106.71179,5.131 1180,121.94775,99.99371,20.303993,37.70166,4.989 1180,583.0525,412.37054,71.948425,176.18457,4.982 1180,190.86867,202.03954,27.960968,63.621964,4.975 1180,376.65814,-1.8648701,22.214478,56.510605,4.903 1180,-14.285617,186.76518,47.23918,138.8708,4.861 1180,69.64281,200.54889,35.302048,81.690735,4.787 1180,-41.48771,362.65436,112.66858,278.89008,4.78 1180,306.99194,208.80005,31.39853,50.100403,4.731 1180,320.30093,215.13083,24.554382,32.501236,4.721 1180,-18.870785,434.72522,56.27222,141.59497,4.685 1180,535.9982,310.3279,143.06073,342.17294,4.676 1180,171.06924,208.84799,31.822006,69.664795,4.66 1180,76.21828,25.89053,30.911758,78.81094,4.61 1180,113.086685,94.65323,21.127777,36.19896,4.606 1180,55.634674,206.10901,34.137062,84.5788,4.582 1180,560.6637,-130.68756,115.335205,275.11304,4.552 1180,49.6031,-16.849281,33.772335,67.54242,4.543 1180,46.41366,210.57257,26.63327,65.43219,4.482 1180,3.3660626,243.51974,38.14288,97.53281,4.405 1180,230.57513,213.50667,26.312378,74.47246,4.392 1181,34.705334,214.80365,78.18945,177.95514,97.479 1181,149.0556,211.95447,69.39743,166.2442,96.73 1181,95.79306,221.46375,66.4731,162.24414,93.946 1181,66.932884,219.83714,71.33732,171.3141,18.237 1181,162.17166,218.45079,36.77922,87.685684,13.202 1181,71.11886,303.31982,32.06559,84.2966,10.438 1181,-5.0137177,-17.4152,17.423815,42.139156,8.562 1181,626.4472,486.06445,21.126892,47.067383,7.406 1181,119.80812,226.90977,36.402954,90.56706,7.214 1181,107.24791,223.78864,35.565735,90.50696,7.037 1181,-11.072336,-30.748041,29.244478,67.727806,6.889 1181,461.47882,110.03713,28.196411,60.012245,6.552 1181,613.2407,451.8603,39.580994,112.57239,6.308 1181,150.57056,229.12746,36.055603,90.55498,6.226 1181,169.18665,211.8261,33.681305,56.34578,6.125 1181,-73.05766,257.3457,203.29001,470.85486,6.052 1181,623.3915,-33.001965,26.269653,72.946106,6.003 1181,-6.5271816,488.97592,19.229134,43.17398,5.976 1181,473.0633,128.9463,21.547913,39.055862,5.813 1181,50.035854,95.951035,32.42403,62.17772,5.641 1181,15.2781315,230.04431,66.756584,166.91644,5.582 1181,-12.989317,477.2631,31.758871,62.50894,5.573 1181,477.3012,259.0631,29.667633,81.43527,5.553 1181,135.75633,227.14496,34.784256,83.507996,5.553 1181,603.77747,-56.515594,52.427063,133.22496,5.443 1181,9.899136,83.50062,32.390793,72.52941,5.437 1181,-6.4459047,118.2599,36.21159,113.6331,5.41 1181,33.899082,93.17862,34.097706,59.141785,5.339 1181,172.69417,225.7988,40.696716,93.77396,5.283 1181,627.3516,-18.224064,16.903442,45.66498,5.28 1181,3.3771138,-15.476229,16.742876,36.995228,5.273 1181,56.411163,72.686,23.066757,38.79548,5.208 1181,298.72433,215.16812,31.888275,53.435455,5.171 1181,0.7247114,222.17017,40.757,112.90784,5.17 1181,181.61394,211.08946,25.968155,44.867294,5.168 1181,65.43357,91.92247,20.360153,36.024796,5.064 1181,-17.575071,-62.1924,56.231224,143.62729,5.063 1182,-11.949739,235.11412,88.47487,275.12793,46.505 1182,-0.8211565,238.51059,52.3288,201.2727,19.213 1182,591.7106,261.49728,48.21808,188.37814,8.6 1182,-6.0336065,485.14966,19.722332,48.131104,8.547 1182,-72.94736,268.59564,200.68513,467.7552,8.244 1182,-10.890467,469.78793,30.36101,70.64493,8.221 1182,-5.5086384,-17.431885,17.735249,42.51182,8.206 1182,-34.85464,166.26543,144.96965,382.86633,8.177 1182,625.9866,485.86707,21.395874,47.50763,7.2 1182,-17.975393,421.83743,57.32319,149.55136,7.078 1182,-10.46401,-31.241253,28.699259,70.28445,6.747 1182,568.59796,175.50475,21.459656,36.89354,6.557 1182,-37.217846,339.8556,113.24794,294.78845,6.267 1182,622.6206,-32.984913,26.980103,73.4154,6.231 1182,-18.097492,-62.304947,57.057156,140.38972,5.716 1182,603.18994,-56.062473,52.948486,130.04308,5.667 1182,2.590748,-15.406471,17.275646,40.14639,5.544 1182,-6.0364113,266.69955,39.617718,128.82205,5.517 1182,258.46896,209.17332,20.210175,30.735184,5.435 1182,463.4099,245.09023,23.828857,39.199722,5.394 1182,408.29962,257.1189,21.86148,49.302734,5.366 1182,264.9287,210.93146,22.422485,33.527634,5.26 1182,-11.74623,348.06134,58.736668,162.92215,5.251 1182,2.688892,237.31642,31.095676,106.54585,5.215 1182,469.45148,88.386925,27.649109,68.54517,5.165 1182,593.48804,-43.95027,45.328125,90.3689,5.075 1182,627.0874,-19.053223,17.435242,48.272663,5.038 1182,536.46783,308.10083,143.28436,342.51843,5.031 1182,9.986173,-16.978086,18.0346,39.916523,4.956 1182,-7.2874093,398.46454,41.266777,104.023895,4.926 1182,612.59467,453.61234,39.938904,109.95523,4.917 1182,22.45214,239.8632,150.07901,312.0121,4.912 1182,1.0043788,483.2773,21.032927,48.081696,4.762 1182,-3.4054244,441.85678,29.650805,74.45364,4.737 1182,617.7339,487.56747,21.53772,45.233063,4.718 1182,493.57733,230.08286,237.38153,513.661,4.612 1182,238.9194,215.8864,25.808105,41.014236,4.599 1182,619.00586,-6.1307144,18.797974,41.529797,4.576 1182,411.08765,239.42735,31.548828,58.437515,4.536 1182,59.726143,-14.886076,33.732582,60.779808,4.444 1182,-9.184718,325.91153,30.381512,86.88565,4.399 1182,-37.805424,-126.47346,117.93567,277.4652,4.397 1182,250.88182,206.48889,31.87941,47.69243,4.347 1182,356.9893,-36.287178,29.649628,77.42331,4.317 1182,585.0938,-99.79585,76.40863,230.82152,4.312 1182,613.871,-19.58652,28.10199,67.33411,4.309 1182,42.487507,74.53254,18.249989,28.706566,4.287 1182,571.4172,-12.117336,52.783752,115.05861,4.27 1182,9.32217,289.26617,36.77689,99.86951,4.257 1182,267.42505,207.68777,30.169617,47.20749,4.255 1182,9.12004,-26.581833,59.367744,120.16007,4.254 1182,565.04114,180.43704,28.654968,60.80844,4.219 1182,583.1335,407.0377,71.36859,180.57901,4.208 1182,168.22177,224.42877,23.723053,33.97461,4.174 1182,-4.5571895,159.15921,15.843771,36.566467,4.143 1182,287.97852,165.04236,22.818054,52.55014,4.142 1182,489.50684,-176.78128,235.91302,420.55518,4.092 1182,-5.583988,463.9834,19.765722,51.16034,4.061 1183,-11.094154,-31.768583,29.639652,70.86402,7.069 1183,377.08832,221.88495,22.683472,43.706238,6.827 1183,-5.6678414,-17.854244,18.2645,42.909267,6.772 1183,113.93004,222.55916,20.314438,38.57036,6.684 1183,417.98276,234.97371,22.87204,36.503036,6.363 1183,369.98828,220.01817,22.893494,38.582047,6.079 1183,392.7138,51.33594,31.192749,86.645065,5.705 1183,626.5757,487.29056,20.693298,46.277313,5.692 1183,492.2736,218.71924,15.068512,27.912628,5.611 1183,-9.054857,464.7322,37.818237,92.76547,5.53 1183,485.4264,220.73772,15.843414,26.8228,5.526 1183,104.007904,219.68477,26.573822,60.669937,5.451 1183,72.599075,206.6659,21.726639,38.154785,5.37 1183,149.74359,226.7564,33.846466,62.770493,5.355 1183,107.801056,217.94916,19.672379,33.796722,5.33 1183,613.0227,454.48352,39.479126,107.70264,5.307 1183,-5.9844446,489.63718,18.244476,41.78488,5.293 1183,-17.74289,-64.12874,55.904587,143.46916,5.205 1183,-72.98222,265.6582,201.76434,462.82568,5.202 1183,90.64748,221.69446,18.597809,36.797546,5.174 1183,384.1424,214.45805,21.2016,35.958267,5.115 1183,252.4011,204.71869,31.453552,47.555756,5.108 1183,230.56851,221.39203,25.543121,40.575684,5.058 1183,477.24545,222.6437,15.01709,26.081177,5.009 1183,169.22897,220.14505,35.101105,73.92569,4.973 1183,99.7263,223.0635,18.422112,36.099884,4.942 1183,627.1719,-18.798767,17.481995,47.503605,4.937 1183,-21.775478,402.1943,79.31703,175.29825,4.888 1183,582.888,411.8955,71.96924,176.6341,4.872 1183,302.85,222.24033,25.495758,32.964905,4.825 1183,264.1647,211.55113,24.022888,32.816452,4.81 1183,622.83105,-34.130974,27.326782,75.24888,4.805 1183,536.68835,310.6612,143.07758,340.2215,4.754 1183,121.51129,219.217,20.236694,36.19658,4.744 1183,75.6847,203.16612,28.349838,59.614243,4.675 1183,603.3648,-56.868164,53.005737,139.07184,4.582 1183,2.6622243,-16.349371,18.19971,39.684208,4.572 1183,321.70374,224.94612,22.027374,30.328903,4.518 1183,561.4534,-130.75453,114.483215,277.81314,4.488 1183,493.92258,228.93762,237.53952,513.65814,4.463 1183,141.95009,217.66583,29.743942,59.963684,4.423 1183,-5.7156157,220.35104,17.85362,38.50467,4.421 1183,170.27238,214.38869,21.641144,30.210129,4.377 1183,-5.006662,251.69768,16.401165,36.765854,4.339 1183,362.50085,226.91664,21.135162,35.57576,4.32 1183,173.77682,220.36856,26.937134,37.399902,4.314 1183,288.17682,219.0541,25.063416,34.25493,4.255 1183,468.61145,222.65273,16.305847,34.68837,4.237 1183,533.3303,250.11679,31.479248,65.42645,4.235 1183,618.2275,62.615555,17.108887,38.91867,4.231 1183,560.0798,90.69959,19.996155,45.268913,4.213 1183,275.05405,214.03535,33.46338,57.955826,4.211 1183,94.71034,233.56264,29.655952,58.678757,4.177 1183,65.54084,209.70886,22.452187,42.676575,4.162 1183,163.02644,214.3629,19.456085,28.640915,4.13 1183,290.90826,217.53111,33.08847,52.182907,4.128 1183,490.8039,204.55582,18.093872,34.15074,4.127 1183,-5.7656765,235.47983,17.752674,38.86371,4.084 1183,248.31476,214.70618,22.569977,33.443085,4.071 1183,-38.03323,-128.12778,117.3055,282.90317,4.07 1183,91.19804,244.87744,20.143288,37.320374,4.068 1183,-4.4962206,267.21344,15.8161545,36.277954,4.048 1183,-11.349464,214.25633,29.133286,66.7704,4.003 1183,-16.43739,213.49878,49.12686,140.99109,4.001 1183,489.64984,-177.8531,236.05115,420.60983,3.998 1183,500.24203,218.53342,15.163544,28.916718,3.971 1183,238.26456,216.3277,23.47226,37.38359,3.945 1183,266.94534,205.35728,32.12912,48.020935,3.94 1183,-69.451355,-188.39528,209.53862,452.89966,3.926 1183,391.90924,82.234085,26.722046,79.17267,3.922 1183,78.843704,203.02957,21.616348,35.330414,3.886 1183,-5.330234,293.82278,16.89579,40.31198,3.884 1183,116.2078,208.5827,31.125664,58.582825,3.883 1183,290.73642,148.45209,29.66861,71.33609,3.879 1183,-5.3843403,204.42955,17.3306,38.04132,3.874 1183,313.2254,228.72269,22.697083,31.016174,3.828 1183,-10.193945,-6.117054,39.7563,102.978,3.822 1183,539.5344,63.61167,17.546387,45.67868,3.817 1184,394.75494,203.66016,19.153564,34.490448,8.902 1184,120.890236,235.12546,35.034172,75.663666,7.758 1184,-11.020818,-33.31698,29.684109,73.77116,7.258 1184,401.7472,199.7704,17.941223,38.531784,7.098 1184,-5.5277677,-17.617836,18.036829,43.28319,7.08 1184,131.2431,229.36667,30.889648,59.781433,6.913 1184,109.45652,231.22264,31.709984,69.535904,6.601 1184,-6.3471627,489.57025,18.911127,41.63275,6.24 1184,148.4837,215.5439,16.083939,25.152618,6.232 1184,627.0664,-18.45209,17.356323,48.85595,6.163 1184,409.10968,220.75511,23.344818,45.42836,6.059 1184,396.4912,199.64037,26.645111,58.17177,6.042 1184,-12.381552,477.80554,30.832819,62.664307,6.013 1184,611.1817,-48.752132,41.90045,104.359245,5.758 1184,612.4984,10.655346,26.22107,80.13626,5.72 1184,230.00513,216.84862,24.185577,37.612473,5.629 1184,386.29205,213.41232,19.559052,30.54126,5.546 1184,144.17133,227.39056,23.080948,39.236298,5.539 1184,612.7811,454.03867,39.805298,108.512054,5.52 1184,626.7325,488.22153,20.431458,45.67459,5.376 1184,4.080808,230.24666,17.47229,40.498215,5.348 1184,493.20355,213.85269,14.952118,30.076645,5.347 1184,5.4177046,246.99835,28.126053,73.28479,5.345 1184,410.54684,52.06195,32.23358,73.63161,5.245 1184,-17.335432,-64.29732,55.246185,145.30843,5.193 1184,93.66977,227.12079,29.790352,75.78595,5.098 1184,-72.77275,265.63217,201.05357,463.3168,5.06 1184,140.22653,215.96918,15.805878,25.01825,5.02 1184,-22.117867,401.05225,79.82509,176.37244,4.964 1184,582.752,411.79907,72.14581,176.82861,4.961 1184,152.93318,220.3208,22.374146,34.10939,4.955 1184,4.2830873,199.80775,26.852255,66.890976,4.921 1184,290.17734,215.36331,33.32425,49.577972,4.826 1184,536.677,310.83548,143.46674,339.64755,4.753 1184,-4.5381355,217.79367,16.662752,41.600555,4.734 1184,410.56,204.6796,17.188446,36.978287,4.728 1184,13.350336,221.9015,53.532265,127.43175,4.711 1184,390.01035,185.77928,27.64331,58.14604,4.691 1184,498.96335,213.39088,15.11557,30.270462,4.676 1184,585.8609,-99.654594,75.48468,231.93515,4.655 1184,-4.828974,190.15973,17.396631,38.787567,4.651 1184,554.2607,219.71027,18.141418,35.729126,4.604 1184,2.7992141,-16.259678,17.782562,41.77661,4.603 1184,321.9599,221.40604,20.669922,31.481186,4.573 1184,380.08368,215.77039,17.91687,27.102264,4.571 1184,493.923,228.71698,237.43942,513.73083,4.547 1184,60.950695,214.53618,29.155697,66.12868,4.543 1184,63.736553,213.8841,52.275143,119.50336,4.532 1184,219.71123,214.12923,30.411423,53.101883,4.486 1184,28.411766,218.2789,30.791512,67.522644,4.479 1184,290.03485,213.59862,22.096466,31.999344,4.467 1184,155.07211,214.01456,19.146088,26.305084,4.464 1184,477.51953,213.9011,14.54541,29.914978,4.455 1184,486.06598,221.23686,13.69574,30.225693,4.447 1184,280.8648,219.62292,24.789307,34.895905,4.438 1184,426.7448,214.47197,18.066467,36.52028,4.433 1184,115.31183,215.82745,16.820724,29.573318,4.43 1184,248.46208,221.07639,22.782394,31.371246,4.429 1184,330.54623,220.78369,18.51416,28.82048,4.425 1184,541.1064,-21.185184,29.572998,62.421413,4.416 1184,-4.8073854,248.0985,17.275677,42.84926,4.405 1184,418.65692,212.68253,19.338348,38.120895,4.397 1184,619.2133,-18.51881,17.910583,47.151276,4.385 1184,396.944,217.75865,29.024872,63.974808,4.368 1184,148.11658,219.60692,32.21895,53.000504,4.362 1184,-1.2427258,-21.909218,27.00128,67.52477,4.361 1184,508.49182,214.35712,14.856201,28.54277,4.333 1184,-4.9836354,288.94797,17.70975,40.547546,4.313 1184,-5.720852,173.27971,17.660189,38.408295,4.263 1184,-8.377456,233.464,38.667828,101.56764,4.22 1184,338.62704,226.05592,19.90329,32.082962,4.209 1184,119.50775,233.70335,25.420883,47.52455,4.181 1184,123.39336,199.79395,16.23558,26.799225,4.159 1184,1.0966778,203.01321,48.815437,125.02316,4.136 1185,401.12866,227.54182,24.286041,43.037247,14.181 1185,223.59872,211.11823,22.46695,48.17807,8.982 1185,255.07083,206.18274,22.75058,37.14067,7.556 1185,-5.083897,118.206215,18.161242,47.11721,7.254 1185,409.40613,221.77864,18.832458,30.011124,7.093 1185,-5.7946014,-18.718002,18.313232,44.96107,7.035 1185,454.3863,228.32327,28.9469,71.67081,6.833 1185,467.26334,224.5758,40.72113,73.53027,6.219 1185,383.2748,216.90712,28.382965,56.018265,6.158 1185,-10.77919,-33.77134,29.304996,75.58597,6.107 1185,386.86923,219.75792,17.998322,36.145325,6.073 1185,-6.190667,488.51807,18.86344,42.446106,5.998 1185,370.4227,222.32764,18.374268,34.798584,5.993 1185,379.33282,222.2706,17.382202,34.921295,5.963 1185,434.04688,223.71864,20.565887,40.102066,5.933 1185,324.41656,226.64519,30.511566,47.400894,5.626 1185,482.12427,229.29309,40.288147,85.16046,5.513 1185,626.41925,487.6236,20.670593,46.08966,5.504 1185,610.42084,-47.50785,42.401062,99.22594,5.458 1185,-4.604474,249.2857,15.999286,40.27423,5.446 1185,-9.023638,464.97485,37.66858,92.2782,5.446 1185,612.6348,453.29544,40.148743,109.45645,5.39 1185,304.34256,228.48012,24.390167,29.722885,5.326 1185,355.02567,221.99095,28.39737,51.96483,5.256 1185,-73.05063,265.2255,201.93234,463.01437,5.232 1185,433.3828,232.29971,30.632874,69.80011,5.214 1185,417.29132,221.98894,18.500153,30.928635,5.166 1185,-16.589455,-64.97346,54.886456,147.0354,5.158 1185,329.109,226.12689,21.458038,30.723083,5.152 1185,542.8667,215.01537,51.27423,113.1458,5.069 1185,560.02985,222.49498,27.31134,69.55534,5.029 1185,136.44748,217.52202,23.569778,36.712326,5.026 1185,562.7964,216.82721,20.843262,42.290985,4.983 1185,404.0481,221.6681,16.61856,22.574799,4.95 1185,-5.740309,198.41576,18.548786,46.123627,4.906 1185,582.6134,411.8844,72.207214,176.69714,4.885 1185,-5.287966,96.70575,17.302162,44.539352,4.876 1185,536.61707,310.75366,143.96149,340.61218,4.858 1185,36.841537,227.99173,15.590172,28.96695,4.854 1185,-40.916084,364.69473,111.4362,276.90707,4.803 1185,479.1825,231.86514,23.657013,47.5477,4.797 1185,173.04945,203.68886,31.539337,56.665146,4.754 1185,320.63297,230.08029,24.515045,32.33127,4.73 1185,-5.5211735,262.6677,18.27296,43.188965,4.73 1185,-17.770164,435.12164,55.11142,141.11566,4.666 1185,494.22134,229.08954,237.19235,513.05365,4.629 1185,426.68793,216.45276,16.358643,28.441956,4.546 1185,263.96796,208.77727,21.877777,34.48793,4.538 1185,117.531494,239.23315,30.47287,60.484314,4.528 1185,362.146,224.55669,18.899689,33.198654,4.517 1185,619.6783,233.71863,17.18341,47.309998,4.501 1185,582.8103,253.35391,36.979736,87.83667,4.462 1185,-4.0186443,153.78494,17.300945,42.191864,4.427 1185,283.3244,186.26474,18.328796,33.906693,4.414 1185,184.93674,218.14206,22.541168,43.07144,4.399 1185,43.0634,235.48482,15.789001,30.312393,4.367 1185,497.911,217.93771,42.606018,78.28113,4.364 1185,59.901764,191.02946,32.30609,57.595352,4.361 1185,290.48654,229.80524,21.465363,27.795074,4.358 1185,477.76547,246.26494,29.66098,78.08339,4.352 1185,585.8001,-100.918236,75.33539,233.88422,4.339 1185,42.836185,216.42871,17.638893,33.765045,4.334 1185,0.013958216,279.95514,25.209993,76.949554,4.312 1185,490.37076,-180.68213,234.86533,422.48868,4.297 1185,396.34143,219.68533,17.115753,29.430191,4.293 1185,627.0946,-18.418365,17.505737,45.941936,4.284 1185,121.70396,228.52142,21.998405,36.80002,4.266 1186,210.0545,211.5593,31.909668,61.77069,15.85 1186,431.61044,217.47874,24.082642,52.15834,9.348 1186,443.11316,221.73047,30.805756,64.7843,9.07 1186,102.06292,186.11609,27.917992,61.764023,8.134 1186,346.17108,226.00952,18.928528,30.476685,7.844 1186,450.08304,213.7485,17.583618,32.55742,7.423 1186,374.55945,215.58395,26.148712,54.62436,7.22 1186,443.20798,213.19484,18.139526,31.073471,7.051 1186,-6.0658712,-18.541557,18.393677,45.403862,7.01 1186,353.16278,225.78224,19.399597,32.051132,6.962 1186,98.70749,214.64218,33.901123,58.85669,6.803 1186,-10.822763,-32.334343,28.979643,76.75995,6.545 1186,362.25592,225.28568,19.544128,34.203613,6.312 1186,435.77747,211.3229,18.13974,32.48526,6.294 1186,370.77527,216.86905,19.845398,36.34352,6.282 1186,215.99501,207.05786,22.156769,39.7966,6.252 1186,313.0636,217.62605,19.800934,31.040207,6.144 1186,272.49667,206.64212,21.130066,34.97606,6.129 1186,-8.940704,464.73746,37.91401,92.596954,5.896 1186,622.3635,-32.499294,27.162964,72.72092,5.879 1186,251.86049,209.3028,20.031296,31.03453,5.866 1186,-6.1369114,489.80853,18.412123,41.828552,5.698 1186,112.7923,204.47339,22.747726,38.385605,5.686 1186,452.29642,217.38419,35.650696,73.03555,5.652 1186,47.264896,254.15926,27.185734,49.88051,5.607 1186,1.903044,165.75313,20.093039,40.98311,5.528 1186,612.8567,451.86566,39.85486,111.21997,5.502 1186,-11.0043125,156.35861,28.593498,69.40665,5.499 1186,402.02072,214.23535,19.49527,44.984375,5.428 1186,112.71239,213.34482,36.368866,60.902863,5.423 1186,406.10803,209.63031,27.34729,59.549255,5.407 1186,-5.987891,169.95395,18.9072,43.871872,5.387 1186,626.9895,-18.465223,17.498047,45.33302,5.364 1186,314.51627,230.36699,19.792236,25.845505,5.339 1186,97.93525,195.04738,21.199104,40.736237,5.291 1186,603.20953,-55.391525,53.175415,135.46548,5.269 1186,-73.052925,264.81714,202.0187,463.4524,5.268 1186,0.5876684,169.34045,28.744053,72.746124,5.209 1186,389.14886,214.54675,27.439728,56.901123,5.209 1186,-16.726963,-64.624626,55.426712,149.45201,5.161 1186,52.32853,255.41971,33.03752,64.8111,5.099 1186,546.36786,181.81607,31.282654,72.19626,5.0 1186,-21.811165,401.6012,79.73184,176.2666,4.938 1186,583.0197,411.86908,71.45416,175.79572,4.931 1186,626.43945,487.8369,20.832886,45.699097,4.884 1186,113.18335,185.37746,20.788986,40.469666,4.836 1186,438.61862,210.86955,27.334137,52.834396,4.82 1186,280.52756,208.99721,19.740265,32.316086,4.794 1186,536.1098,310.22333,144.52728,342.61676,4.748 1186,163.2033,198.9705,34.14073,61.442795,4.71 1186,385.50598,217.35907,19.975891,41.858032,4.687 1186,540.0691,218.0404,30.410828,62.180603,4.679 1186,93.5399,206.27554,55.86389,107.51776,4.663 1186,493.99725,227.8964,236.7544,514.276,4.643 1186,468.9619,217.45999,37.27423,84.46356,4.592 1186,84.90151,216.5678,30.557869,57.698776,4.582 1186,356.32727,153.10507,30.744995,64.19365,4.55 1186,490.1393,-182.19337,235.40524,424.37897,4.535 1186,105.54715,233.56808,35.664368,57.850403,4.511 1186,457.59314,214.48282,17.26706,29.840775,4.51 1187,386.08362,238.57492,21.974182,50.520508,16.101 1187,361.89883,227.52695,20.419037,34.794067,9.543 1187,257.73007,212.10277,19.827545,35.902206,8.282 1187,346.01508,230.12746,20.208008,34.782455,8.256 1187,249.39072,211.24316,20.162323,35.40805,7.784 1187,396.81226,227.71915,28.797424,55.764374,7.149 1187,369.77258,228.37463,20.242706,32.854492,6.839 1187,623.41425,-33.268364,26.412537,74.3365,6.508 1187,437.06284,217.26793,30.268555,65.08833,6.458 1187,-4.769411,139.84361,16.253563,38.952713,6.439 1187,74.511345,204.67639,34.367096,65.00641,6.429 1187,402.0243,221.53142,19.39505,37.753036,6.377 1187,264.57217,218.9942,20.242035,32.693024,6.18 1187,433.63354,216.74094,20.683716,40.08664,6.098 1187,473.69144,213.56288,22.134796,45.33812,6.074 1187,462.53693,215.59816,28.861084,61.315598,6.06 1187,305.322,225.60722,21.006378,31.938889,6.005 1187,-4.681954,122.74088,15.965506,38.97074,5.929 1187,627.4696,-20.00939,17.404419,48.615562,5.826 1187,116.503525,213.62476,31.334793,65.81583,5.791 1187,612.9278,453.5616,39.7135,109.246,5.771 1187,-8.994053,464.6414,37.81864,92.56497,5.766 1187,-6.248405,490.02533,18.516363,41.88434,5.704 1187,218.95953,219.89876,17.327255,29.804825,5.692 1187,-11.566023,-33.559,30.301758,73.96495,5.632 1187,417.58252,218.61232,20.197327,39.685776,5.565 1187,353.79272,226.46158,20.148193,35.68103,5.504 1187,100.026596,207.44258,30.239334,62.45961,5.495 1187,603.39026,-56.14761,52.868835,136.5979,5.464 1187,448.6461,217.47649,22.603577,46.92592,5.444 1187,47.92988,230.60455,37.976715,57.275574,5.438 1187,378.32068,228.83289,19.492493,32.233643,5.311 1187,425.77966,218.83784,20.04068,38.53026,5.262 1187,66.29765,223.32706,34.863205,56.506805,5.247 1187,-17.05978,-63.612507,55.657837,145.13228,5.224 1187,466.74298,214.70866,19.862274,37.958893,5.131 1187,-72.75206,264.46387,201.34355,464.2329,5.129 1187,225.99011,219.08159,18.036438,29.25763,5.079 1187,457.35315,217.84926,23.079956,47.62477,5.054 1187,626.9761,488.57382,20.109192,45.135406,4.999 1187,411.0533,217.05978,17.524445,28.23378,4.97 1187,-4.634365,155.52194,16.499384,40.47046,4.959 1187,41.611477,159.69307,34.726665,63.227173,4.956 1187,145.82716,183.75125,23.127792,41.44684,4.937 1187,385.6809,227.2923,18.917969,33.919373,4.931 1187,583.01886,411.72134,71.701904,176.86008,4.928 1187,202.37413,219.4929,20.396332,31.226257,4.914 1187,536.08813,310.65155,144.50446,340.8518,4.874 1187,393.70526,230.1701,21.354492,39.091827,4.829 1187,-41.028347,364.81055,111.820816,277.16895,4.774 1187,459.28735,215.5753,16.537048,28.026993,4.751 1187,-21.746529,402.1071,79.46092,175.49588,4.699 1187,361.97156,244.35588,20.59851,31.238205,4.698 1187,-6.1396837,179.62988,18.521019,43.01619,4.676 1187,312.2791,236.06924,23.207886,30.886047,4.667 1187,405.92242,218.88931,26.541107,57.044037,4.656 1187,442.59943,217.55069,20.294495,37.828415,4.646 1187,236.23218,218.0884,18.563492,30.803543,4.633 1187,79.40169,231.64876,24.82605,41.45018,4.626 1187,587.4958,225.2981,16.29712,33.456512,4.606 1187,494.0683,229.1154,237.25616,511.67285,4.577 1187,372.17953,152.54198,29.684448,62.419876,4.561 1187,34.351593,221.47192,41.549805,93.677246,4.545 1187,12.764914,237.03856,29.599493,74.24342,4.543 1187,581.37335,241.01083,36.56012,88.08005,4.54 1187,-5.628209,200.1831,17.736559,45.710968,4.527 1187,521.2934,229.79459,32.075256,72.43555,4.526 1187,370.49252,242.8223,21.792969,35.504456,4.483 1187,613.57104,355.50372,26.325989,89.147064,4.482 1187,595.0595,-47.516335,43.654602,102.4052,4.477 1187,-11.794143,173.04633,30.359406,74.38341,4.475 1187,19.31827,172.99503,31.492529,65.39194,4.439 1187,479.47635,215.47124,24.67154,53.595535,4.386 1187,-4.2822275,220.83289,16.55511,40.487427,4.385 1187,585.3218,-101.29836,76.00549,233.65228,4.367 1188,150.09572,213.0666,25.698898,49.820114,16.621 1188,532.83026,218.98743,29.457825,58.77768,13.964 1188,516.88666,221.3136,29.65918,61.934814,10.58 1188,375.7346,237.71378,24.02951,39.23181,10.045 1188,512.8118,221.99382,23.942078,45.50267,8.897 1188,-1.729939,219.74474,29.740147,76.78514,8.54 1188,529.5967,221.28285,23.524292,40.96678,8.155 1188,500.757,221.96199,30.562042,72.84175,8.127 1188,429.7755,224.29163,27.47229,63.975525,7.674 1188,434.505,221.96861,20.193054,39.989975,7.486 1188,496.23157,221.84753,22.983215,44.605164,7.219 1188,475.93613,215.18098,16.955658,30.047256,6.713 1188,442.7469,215.79802,18.233704,30.472748,6.547 1188,-6.0889196,230.40976,19.264755,44.07901,6.487 1188,100.89282,201.04063,31.039825,60.341995,6.471 1188,44.590282,200.90634,30.154453,54.509247,6.451 1188,419.3344,234.2012,33.851868,71.34601,6.226 1188,131.93686,202.41856,32.323395,64.551346,6.143 1188,55.67195,205.43387,23.929207,43.672638,6.07 1188,540.30804,229.57483,29.941345,69.05902,6.059 1188,-16.938984,-62.341667,56.05792,145.20615,6.025 1188,68.35237,200.10162,31.144714,51.396957,6.019 1188,449.03305,215.82822,18.699127,35.424164,5.986 1188,483.11404,215.84857,16.394806,29.178848,5.974 1188,242.34993,210.37517,17.3087,33.23625,5.865 1188,7.0532203,225.21147,23.709126,46.557114,5.855 1188,-5.9320745,489.41635,18.019897,42.226715,5.769 1188,-8.881949,465.4469,37.572384,91.60571,5.765 1188,220.11356,204.74835,15.555939,26.041656,5.756 1188,547.4227,219.311,30.389893,60.159332,5.655 1188,-5.4644213,-16.845947,17.038883,41.36546,5.639 1188,524.61743,227.0904,30.657166,76.117676,5.603 1188,469.23633,216.28899,16.507263,33.055923,5.59 1188,266.33868,227.70703,19.949738,32.897766,5.578 1188,147.22992,179.75412,29.493744,72.47917,5.566 1188,626.6753,488.0459,20.60559,45.578003,5.525 1188,85.05075,200.95499,30.408836,51.52539,5.482 1188,627.26654,-18.866505,17.317322,48.942677,5.404 1188,543.3985,221.50632,22.255066,41.495636,5.391 1188,470.90002,219.81001,28.242401,65.92302,5.363 1188,484.61542,227.87831,29.935608,65.08098,5.34 1188,0.39556503,247.01764,26.027298,77.03668,5.312 1188,312.87265,229.7368,21.939514,35.83403,5.297 1188,417.91827,230.50626,20.876434,45.608154,5.291 1188,622.5756,-33.919426,26.959839,77.51878,5.264 1188,152.76674,166.95244,21.286682,59.197693,5.211 1188,437.7516,212.05322,34.58716,78.57178,5.145 1188,613.1125,455.37598,39.30139,107.07568,5.133 1188,582.9576,413.07028,71.85309,175.39432,5.123 1188,193.01688,226.27841,20.975342,38.778717,5.112 1188,-73.2627,264.8501,201.70871,464.1753,5.104 1188,-11.526284,-32.11073,29.731705,71.785095,5.104 1188,458.84534,215.8236,17.49881,33.78212,5.101 1188,426.3073,226.13974,20.39981,44.667206,5.093 1188,4.0146456,219.22685,36.585808,101.41017,5.042 1188,581.43475,244.9068,29.027039,69.907776,5.038 1188,504.57788,219.81488,22.462463,38.233704,4.984 1188,411.37073,234.0584,20.236267,38.783005,4.953 1188,603.6729,-55.609123,52.570923,137.3119,4.953 1189,418.10614,231.84413,19.601685,44.06807,14.269 1189,547.1193,237.30862,17.447632,33.672455,10.855 1189,553.86505,236.03813,18.52655,33.93489,8.929 1189,594.7572,232.54956,34.02765,72.789,8.622 1189,540.3869,237.73273,17.413574,33.318268,8.475 1189,579.9942,235.9478,32.51776,74.03938,8.093 1189,550.0402,232.17906,28.426636,60.83055,7.657 1189,561.03143,236.60217,21.403076,42.612183,7.493 1189,556.98004,242.0594,33.07483,66.08275,7.12 1189,320.94537,232.56264,21.429382,41.358536,7.098 1189,392.17923,242.94072,23.27594,41.82988,7.027 1189,548.9822,226.93079,16.186646,31.610413,6.803 1189,568.2116,225.6531,33.796814,75.16516,6.761 1189,490.83557,227.47922,30.722168,68.07245,6.665 1189,534.8691,225.29907,34.64514,80.76404,6.552 1189,498.85654,220.32878,17.606232,35.255157,6.532 1189,506.98764,223.9509,30.28128,73.35132,6.521 1189,603.4515,-55.442543,53.04132,138.5429,6.396 1189,473.07803,225.22188,28.481964,65.71855,6.357 1189,-17.02989,-62.82299,55.911156,144.11711,6.353 1189,523.2798,219.6084,17.373169,37.746155,6.277 1189,601.05994,238.86575,22.592041,44.180023,6.265 1189,627.4751,-17.299507,16.969116,45.605255,6.212 1189,618.66766,229.88892,18.404358,45.44687,6.206 1189,570.427,227.72513,19.022827,37.463165,6.111 1189,-5.9598536,489.66043,18.134747,42.047516,6.01 1189,-5.59692,-17.567196,17.124784,42.829067,5.989 1189,285.9755,152.12376,27.983307,75.678406,5.976 1189,421.78485,219.9671,27.591187,59.20282,5.946 1189,507.19855,219.15613,17.050049,34.68512,5.882 1189,546.1627,247.80959,19.895935,36.80983,5.878 1189,3.8986354,204.20547,16.486954,30.852844,5.871 1189,367.67084,256.32455,25.993378,35.54593,5.841 1189,592.2453,237.06664,23.189575,46.96312,5.716 1189,515.5077,218.88556,17.143494,33.48073,5.706 1189,531.2892,233.24106,19.13855,39.175568,5.7 1189,626.70355,488.16678,20.500977,45.605377,5.635 1189,66.23017,237.23495,33.752853,64.50189,5.584 1189,-11.928926,476.49277,29.819584,64.3569,5.576 1189,316.49954,241.13861,32.1084,47.976868,5.573 1189,538.4739,249.76668,19.79541,36.24135,5.534 1189,504.25055,228.52657,22.76471,50.40486,5.468 1189,-11.686914,-32.072357,29.836134,72.46459,5.423 1189,623.52576,-34.68752,25.869385,74.88751,5.267 1189,612.9199,453.418,39.663086,109.10281,5.263 1189,10.826015,124.63711,18.361073,36.840843,5.215 1189,3.1529589,211.92047,18.244923,43.88318,5.193 1189,-4.218497,205.85986,15.554813,34.512283,5.178 1189,379.61597,-6.9817924,55.37137,106.93123,5.153 1189,311.2638,133.59343,22.231049,48.417664,5.129 1189,-3.3593824,111.42213,14.426039,35.193245,5.085 1189,175.75005,220.94543,26.371155,56.88922,5.079 1189,-73.23564,264.57462,201.44992,463.93796,5.076 1189,517.0963,236.21301,38.29425,98.798706,5.02 1189,583.09717,412.74603,71.66443,175.89728,5.007 1189,576.03265,235.07825,24.022766,45.58423,5.005 1189,442.4139,-17.636547,18.106445,39.53756,4.951 1189,362.7643,222.94109,18.5159,35.635483,4.925 1189,-3.7842095,191.37302,15.253772,35.72548,4.925 1189,485.37225,217.98773,28.466003,57.756317,4.92 1189,4.3350697,115.41779,15.124987,33.010155,4.917 1189,139.17844,223.6062,23.418884,46.411316,4.887 1189,-40.64705,364.95355,111.527405,276.26056,4.873 1189,584.6848,231.34052,21.460754,40.507507,4.83 1189,385.6994,247.62871,35.55258,53.01326,4.826 1189,531.27,222.28143,17.334412,34.58319,4.822 1189,463.88828,215.14584,27.394196,62.602386,4.794 1189,329.0253,227.21861,19.575348,38.65544,4.778 1189,490.40698,220.13716,18.830688,36.43553,4.742 1189,536.2068,310.4876,143.7923,340.8083,4.736 1189,257.7263,202.95047,20.493683,37.832108,4.711 1189,619.6645,55.332703,18.408875,48.036743,4.704 1189,570.7903,218.56871,18.032898,26.442932,4.7 1189,450.22345,-17.381783,18.574432,39.836113,4.662 1190,458.45184,229.38185,20.454224,48.89781,44.447 1190,369.09085,217.88681,21.809235,50.5383,9.099 1190,362.09866,224.14139,21.149689,51.055267,6.767 1190,602.08093,221.31995,20.01233,44.019836,6.739 1190,354.20996,223.52696,20.875671,45.173843,6.682 1190,376.26297,218.40291,21.47879,42.63939,6.553 1190,344.51947,229.8092,22.025085,43.455566,6.535 1190,-5.968067,488.56543,17.93878,42.829468,6.352 1190,-5.491657,-18.829649,17.050436,44.545887,6.347 1190,381.0871,218.72327,28.463043,56.808502,6.332 1190,612.503,-48.621063,39.969666,105.392365,6.332 1190,627.25195,488.7368,19.850952,44.520966,6.243 1190,411.2891,248.24333,33.08493,51.196335,6.139 1190,591.475,210.95041,26.57257,67.24759,6.078 1190,627.52966,-17.478704,17.06665,45.991955,5.976 1190,-16.987774,-62.86589,55.761375,143.40306,5.819 1190,315.816,118.37126,29.92691,72.082794,5.795 1190,-11.889777,475.1898,29.404564,65.72452,5.716 1190,-10.876106,-32.269554,28.79101,73.7422,5.612 1190,618.1007,214.97116,19.877747,44.897522,5.61 1190,595.3408,217.82193,18.751526,38.375366,5.536 1190,526.79816,225.53024,27.77948,64.43347,5.481 1190,337.9495,227.62344,20.08429,38.602814,5.39 1190,1.8389386,100.21687,19.57134,40.012466,5.349 1190,-5.503864,103.82049,18.476976,41.63163,5.331 1190,613.07855,455.07837,39.08307,107.37158,5.257 1190,602.64307,217.52591,17.395996,26.600693,5.256 1190,533.336,203.60234,37.570923,84.307816,5.216 1190,385.7346,247.88062,44.405457,74.60596,5.151 1190,588.38293,217.6332,17.022095,37.38365,5.086 1190,-39.528656,365.28644,109.973206,276.2458,5.02 1190,-73.21286,265.28433,201.0334,463.17307,5.019 1190,583.1206,412.26266,71.40515,176.26437,5.0 1190,248.8881,212.2684,22.214188,47.02472,4.983 1190,390.67657,261.51593,26.714417,32.371857,4.978 1190,597.5723,199.33783,35.532227,81.98108,4.963 1190,465.94073,-16.492193,33.735718,61.755707,4.916 1190,-3.8047051,189.99191,15.97835,37.865707,4.916 1190,264.41968,190.74353,21.399261,42.028564,4.879 1190,468.345,222.02362,30.021637,60.614502,4.858 1190,535.9948,309.93137,144.4643,341.39896,4.786 1190,327.96002,141.88672,24.216522,55.40187,4.771 1190,-2.08542,100.23482,28.750717,67.70012,4.767 1190,427.3302,-14.211444,33.059784,59.535645,4.736 1190,377.6672,-4.8939705,58.292114,106.47531,4.717 1190,366.4004,-33.203907,28.827698,61.520554,4.711 1190,463.588,220.16891,20.945953,46.833466,4.693 1190,44.813084,208.96335,30.057507,48.620056,4.656 1190,453.555,205.4703,37.760986,77.850006,4.636 1190,555.6818,152.82138,19.46399,37.981842,4.631 1190,496.6783,217.56915,27.059723,63.51004,4.613 1190,609.66077,217.80664,19.661621,40.523987,4.547 1190,395.0137,146.66104,32.71393,62.982758,4.528 1190,555.6599,221.32385,31.748352,66.07416,4.521 1190,494.787,228.76605,235.98523,513.8847,4.508 1190,130.08105,186.06912,21.176483,51.027313,4.502 1190,-5.0260305,171.74184,17.240345,41.285446,4.493 1190,370.6875,-14.255379,17.911499,35.077774,4.486 1190,-2.9897003,203.1034,15.491409,39.988647,4.48 1190,333.89496,243.8535,26.131744,40.95433,4.448 1190,-18.116093,433.4301,55.531048,142.73004,4.408 1190,388.57404,222.47557,39.380646,71.41319,4.391 1190,491.41772,-181.87405,234.8169,426.021,4.371 1190,519.6914,234.29099,38.464233,100.87854,4.364 1190,425.97607,-0.79195404,20.251068,32.89935,4.341 1190,402.7677,-15.848923,17.872284,36.379772,4.332 1190,2.434938,216.77328,18.352152,44.91385,4.332 1190,426.69922,-15.485874,17.402924,36.69056,4.33 1191,486.94543,222.98248,22.62439,57.365295,36.042 1191,378.03644,218.93105,20.553467,48.725327,11.23 1191,390.37054,217.24005,27.92276,56.48465,9.904 1191,369.91205,221.03491,21.417755,54.218597,9.394 1191,361.2229,222.6389,22.379028,53.21324,8.719 1191,297.70276,137.39154,20.063538,51.911636,7.789 1191,240.6287,213.97104,22.34079,47.07245,7.392 1191,602.4382,229.30144,31.233643,66.30791,7.364 1191,386.01898,219.31944,18.413116,40.197006,7.295 1191,400.85547,222.07837,21.375732,41.951233,7.283 1191,353.16513,225.1863,22.064728,49.62346,7.023 1191,345.81528,225.13266,20.86148,40.931183,6.867 1191,-5.818429,-19.268219,17.930447,44.052414,6.331 1191,108.89296,229.10776,29.305115,56.25647,6.168 1191,611.7139,-48.39985,40.63971,104.5325,6.122 1191,379.81125,218.31561,15.8871155,28.06929,6.095 1191,613.17285,453.0832,39.328674,108.45264,6.03 1191,300.12662,135.65674,28.960632,86.24022,5.927 1191,591.3993,234.88991,32.009583,64.251755,5.915 1191,395.08606,219.0908,17.94458,32.31633,5.883 1191,314.5638,99.529655,30.325287,74.79911,5.84 1191,411.0362,132.24658,21.677887,44.89908,5.833 1191,-11.066694,-31.193607,29.017344,69.197784,5.806 1191,-5.9654093,489.21213,18.152935,41.661102,5.8 1191,-16.807655,-64.52258,55.23256,145.8224,5.676 1191,338.0978,235.6529,33.02365,53.999268,5.641 1191,-9.34128,463.50842,38.05332,94.15234,5.607 1191,614.47504,232.19214,23.616333,51.490417,5.498 1191,551.01184,217.73224,26.767761,67.27118,5.452 1191,473.09067,211.99657,27.449066,67.129684,5.411 1191,626.5665,486.8859,20.686829,46.49637,5.135 1191,335.9398,257.58237,25.089417,35.684967,5.118 1191,404.15768,222.268,28.615143,62.253204,5.113 1191,627.4024,-17.372585,16.75946,46.458744,5.056 1191,-21.66293,403.3683,78.42752,174.92822,5.006 1191,413.98517,219.06468,29.219543,53.1808,4.989 1191,402.1547,141.17441,35.38797,72.93103,4.977 1191,586.8801,247.2785,20.036438,40.999756,4.951 1191,267.59595,249.98183,17.423126,36.779404,4.929 1191,536.00146,309.9436,144.8374,340.94812,4.929 1191,-72.82252,266.2045,200.18188,461.32834,4.866 1191,583.3834,411.77222,71.254944,176.29822,4.83 1191,250.57626,209.53421,19.868988,37.71295,4.795 1191,511.57556,218.5758,28.928528,62.3898,4.756 1191,374.81613,205.65903,35.840637,76.45682,4.744 1191,286.03268,141.20807,26.947205,74.03804,4.667 1191,494.27954,218.18816,22.250061,49.95497,4.647 1191,574.6284,219.23,25.05127,63.7321,4.586 1191,489.55753,-14.773461,32.22824,58.324795,4.585 1191,-4.3109965,90.31322,15.725815,37.541725,4.551 1191,583.4478,205.90872,36.26233,78.67258,4.519 1191,491.19522,-181.8992,234.61093,426.52573,4.503 1192,512.54974,245.41446,21.252747,53.475647,31.85 1192,389.966,229.68057,28.677368,61.70938,12.927 1192,367.63855,232.45667,25.996277,58.260742,9.481 1192,384.2558,232.4278,22.502045,52.11737,9.038 1192,404.12445,232.53435,28.923187,57.17842,9.024 1192,362.45978,234.68703,21.034637,50.274857,9.007 1192,615.9486,279.30298,20.472534,40.07733,8.446 1192,325.94424,236.71098,28.605896,62.09053,8.05 1192,336.4469,238.47064,21.669373,43.446045,7.934 1192,378.1761,232.82195,19.938202,45.27318,7.799 1192,344.86234,238.42021,21.918701,43.59935,7.559 1192,353.59286,236.28984,21.697113,47.61815,7.374 1192,411.47083,134.73518,19.302307,45.071518,7.075 1192,-5.5688806,-18.430273,17.543488,42.731647,6.666 1192,-17.031197,-64.91199,54.993877,144.94406,6.077 1192,293.3768,230.18114,26.767548,62.8293,6.032 1192,-5.963519,489.34494,17.781857,41.713226,6.005 1192,613.388,453.15268,39.28894,109.15939,5.993 1192,507.42163,232.82812,19.860413,41.19879,5.96 1192,623.56775,-34.67918,26.087158,76.0535,5.937 1192,416.63666,237.77412,21.211487,42.570755,5.85 1192,422.4277,231.21077,28.016022,51.963425,5.843 1192,-8.845379,464.9517,37.52832,92.4371,5.831 1192,-11.069443,-32.166077,29.122124,69.88342,5.811 1192,565.39496,220.01837,28.289917,67.393555,5.766 1192,307.162,88.053024,31.545837,82.62692,5.764 1192,330.40784,237.60855,18.585999,37.980225,5.715 1192,87.80338,331.76907,24.646027,38.158813,5.647 1192,372.911,231.13063,15.287476,32.193405,5.625 1192,71.1385,326.83545,24.19909,40.194214,5.545 1192,374.2326,220.85564,35.25284,75.5692,5.518 1192,589.44635,221.76355,27.17157,66.519165,5.478 1192,386.92474,231.22217,16.356201,30.759521,5.447 1192,627.0859,-19.089622,17.586304,48.426117,5.368 1192,132.09013,320.5823,32.054382,55.34549,5.238 1192,603.7635,-55.23388,52.885315,134.44244,5.219 1192,525.8944,230.46034,29.371155,58.67833,5.195 1192,249.07187,208.92374,20.51886,47.100037,5.19 1192,364.74454,231.3326,15.372955,30.924759,5.158 1192,583.49347,411.52908,71.4198,177.1954,5.03 1192,-40.758263,366.04935,111.54591,275.0881,4.933 1192,121.95055,333.16544,21.980972,35.460968,4.919 1192,-74.38876,265.753,202.54767,461.89996,4.916 1192,614.6349,211.6467,24.36853,80.79474,4.902 1192,96.408676,327.7837,22.806747,34.178192,4.844 1192,105.22792,333.14185,22.559357,34.37274,4.842 1192,615.04877,246.18954,24.538025,66.08444,4.838 1192,75.27539,324.17215,33.04091,55.337677,4.836 1192,626.42505,487.28378,20.597717,46.623383,4.825 1192,395.02136,232.0887,16.983917,28.575027,4.816 1192,536.2139,310.3623,144.42047,339.71637,4.79 1192,-0.6388128,312.06357,29.789257,64.00397,4.78 1192,487.50778,226.79167,25.660736,65.0634,4.749 1192,289.37305,240.75964,43.46573,86.85742,4.722 1192,325.033,235.44269,17.498138,32.600464,4.715 1192,347.58942,233.95547,16.480225,29.743164,4.707 1192,205.49263,485.79657,15.063248,21.067719,4.68 1192,506.96606,223.69121,18.46228,32.807755,4.657 1192,490.8293,-182.06314,235.01321,426.38635,4.627 1192,267.4684,228.84494,58.70862,120.03079,4.624 1192,309.87054,241.92494,31.573822,62.969376,4.552 1192,513.34393,229.38133,19.32196,37.647537,4.548 1192,402.15637,231.48906,19.611084,36.821793,4.538 1193,516.076,224.69493,23.305664,55.804733,43.665 1193,380.21045,209.49838,28.953094,56.586456,12.848 1193,369.41464,213.00592,21.406128,46.499817,10.759 1193,396.32846,210.0646,30.872955,62.933075,10.638 1193,345.20465,217.22209,22.811737,46.869583,9.508 1193,393.34317,212.13971,22.14444,45.532074,8.997 1193,350.5849,213.63037,26.648224,60.83557,8.733 1193,275.7475,188.53638,27.490387,69.57294,8.644 1193,205.97884,188.86026,28.875046,62.97467,8.455 1193,316.376,213.43005,29.136353,69.426575,7.563 1193,91.47156,199.0366,32.510918,59.1295,7.487 1193,191.73785,190.6824,28.780884,60.93245,7.438 1193,157.34831,197.9911,29.84224,61.755325,7.436 1193,408.55743,217.97733,21.805878,44.45352,7.053 1193,123.46532,202.95024,30.153946,55.892166,7.012 1193,143.38947,199.91286,29.959717,61.560715,6.808 1193,413.41037,214.67377,28.67273,58.353027,6.701 1193,627.44617,-19.10236,17.151123,48.375782,6.694 1193,359.59204,204.43149,35.077087,71.034485,6.595 1193,364.36948,209.54366,15.084442,27.994064,6.55 1193,354.6561,213.0163,17.704102,38.733902,6.493 1193,348.00262,212.98727,16.46643,32.28839,6.474 1193,377.0246,210.76094,20.090027,43.114838,6.407 1193,371.90668,209.07301,15.771088,27.636703,6.377 1193,401.73755,209.7986,20.72168,41.78926,6.04 1193,392.12674,121.01801,37.83252,64.889,6.033 1193,-6.2542586,489.40894,18.663404,41.90753,5.986 1193,514.51025,206.93286,20.024109,45.734818,5.917 1193,623.2482,-34.852913,26.266235,76.84487,5.905 1193,328.14844,218.4108,23.514648,44.142944,5.853 1193,406.1804,-33.782368,27.792358,67.497635,5.828 1193,-8.786526,464.52515,37.681763,92.79999,5.775 1193,225.21011,189.82837,19.35257,38.181534,5.763 1193,-6.1807942,-18.484636,18.468079,45.258114,5.724 1193,108.09701,202.34932,31.051323,60.11641,5.723 1193,170.84288,196.01715,31.208496,55.81804,5.689 1193,3.611393,219.98326,15.50519,48.272903,5.674 1193,321.01654,216.16064,20.650177,42.53784,5.634 1193,-10.830584,-32.598927,29.53326,74.85672,5.624 1193,338.9101,218.32597,20.49469,38.37831,5.613 1193,332.6416,217.34322,29.552063,63.93837,5.579 1193,386.1931,208.22581,18.18155,35.58754,5.56 1193,626.57947,488.3184,20.567017,45.628265,5.494 1193,175.02036,246.38098,35.784363,62.654297,5.483 1193,423.82593,210.88072,27.190643,55.811844,5.328 1193,-2.5833595,214.68149,15.373521,47.144592,5.31 1193,-73.39141,264.88223,202.04193,463.74326,5.259 1194,511.3596,216.27908,25.079437,61.15753,96.601 1194,357.29932,206.30377,27.376312,57.592987,13.642 1194,372.57016,205.3849,29.660614,58.999405,11.369 1194,345.77664,211.01454,21.979828,48.64122,9.903 1194,321.78345,215.8066,20.998077,41.709396,9.199 1194,328.41766,212.92188,23.151062,51.262817,9.047 1194,142.88971,193.01662,26.90271,46.50078,8.822 1194,384.9704,210.46669,22.946594,45.09793,8.719 1194,333.86752,207.1156,28.297577,63.599854,8.604 1194,314.5312,217.92868,20.900085,37.46083,8.46 1194,157.44426,183.27573,31.89154,64.07466,8.263 1194,356.45703,206.29512,15.045532,29.73645,8.059 1194,348.42084,203.86403,13.794678,24.758347,8.044 1194,397.18445,208.9727,28.762512,52.514572,7.244 1194,306.5124,215.40173,19.96698,35.103455,7.173 1194,497.50504,211.10767,27.276825,66.325806,6.97 1194,338.77692,208.71286,18.152435,43.44873,6.898 1194,-10.829511,-32.261925,29.566051,76.006744,6.657 1194,332.44736,208.54044,15.881012,34.20395,6.458 1194,364.03802,203.87155,14.219299,24.167908,6.435 1194,284.78427,210.39523,29.93695,62.55258,6.358 1194,180.8537,182.7164,30.204971,55.95285,6.346 1194,416.19818,208.59369,26.915344,53.94928,6.346 1194,-8.60547,465.63037,37.402733,91.68091,6.326 1194,-5.577835,-16.848787,17.922997,45.158356,6.314 1194,369.04813,205.47453,20.755829,48.77446,6.142 1194,4.9857655,200.79826,28.936987,60.57451,6.134 1194,-5.8106413,489.60226,18.088005,41.91629,6.009 1194,343.26868,200.37497,33.36905,71.89401,6.001 1194,-17.555735,-64.05991,56.063683,150.20827,5.909 1194,297.56357,214.8171,20.467163,41.110123,5.883 1194,581.3597,182.83914,29.644775,73.23517,5.817 1194,626.4612,487.8853,20.677551,46.01654,5.797 1194,299.61212,212.77946,30.586517,67.811325,5.653 1194,627.0746,-18.402237,17.496826,47.851048,5.429 1194,393.22742,207.49069,20.559143,43.894806,5.415 1194,-73.40525,264.26855,201.63458,464.30383,5.4 1194,612.7623,456.52695,39.309814,105.22012,5.336 1194,121.93704,195.16579,22.704468,35.527435,5.285 1194,610.5666,-47.82973,42.17743,100.580284,5.275 1194,192.61417,183.84358,20.952698,36.986984,5.235 1194,538.6303,-16.84333,18.865295,38.418365,5.22 1194,478.81882,198.9214,26.108002,66.97124,5.19 1194,583.18713,412.893,71.61688,175.47864,5.162 1194,380.33603,200.69373,14.896332,24.727524,5.151 1194,523.34753,-14.848608,17.208923,35.710518,5.135 1194,410.89035,216.442,20.096313,39.705185,5.104 1195,506.98886,226.75832,26.019562,70.99495,96.346 1195,80.21042,210.3094,22.480476,37.0851,19.649 1195,348.642,216.90154,28.838898,61.55443,14.378 1195,87.94751,208.13658,20.965836,34.622437,10.931 1195,335.3689,217.75455,26.473785,60.502563,10.789 1195,372.39386,218.30731,29.797974,59.051147,10.528 1195,318.9431,218.66963,25.950409,57.971848,9.748 1195,156.60962,191.75421,30.321838,56.47229,9.694 1195,397.39557,216.18102,28.850708,56.57991,8.827 1195,117.88527,195.58203,28.386322,57.259644,8.503 1195,306.1855,225.91081,20.654968,45.82219,8.408 1195,361.04236,217.17099,22.270782,53.747253,8.126 1195,479.2362,205.787,25.052185,70.49022,7.948 1195,313.67426,220.6324,19.839478,46.162064,7.796 1195,329.00763,223.53796,22.469849,50.685425,7.58 1195,485.70508,216.70197,28.467834,68.14542,7.303 1195,331.9721,215.01569,15.084503,28.889084,7.231 1195,521.9342,225.05133,30.076172,60.20575,7.152 1195,384.47852,221.31369,21.815155,44.591034,7.085 1195,56.380886,209.84178,23.204082,35.707413,6.95 1195,132.552,187.82352,31.97667,69.696075,6.818 1195,340.24335,215.65692,15.179199,28.043823,6.818 1195,96.933716,202.93256,20.482574,35.98993,6.508 1195,346.22208,218.18878,19.411804,44.9104,6.46 1195,168.26552,194.32335,21.5876,34.90213,6.393 1195,323.49747,216.27126,16.722595,36.067368,6.23 1195,369.4018,214.36658,20.04895,47.41107,6.198 1195,-1.2934923,240.16678,25.626495,64.927124,6.139 1195,500.4214,231.20178,22.14746,62.09912,6.08 1195,-8.676261,464.4676,37.545723,93.2771,6.071 1195,113.5888,206.49875,21.99894,41.75345,6.021 1195,348.06073,215.99149,15.5329895,27.966309,6.018 1195,244.91745,19.25045,30.907745,88.76167,5.908 1195,309.04965,224.14958,29.147491,68.75496,5.765 1195,268.86047,225.52695,29.367706,65.06,5.711 1195,627.27185,-18.108479,17.312134,47.324005,5.658 1195,-6.146139,489.88663,18.25888,41.330658,5.578 1195,293.53442,222.92963,30.434814,61.155823,5.573 1195,610.5218,-48.03923,42.117615,100.13188,5.55 1195,367.88513,141.95862,24.677734,39.0813,5.485 1195,-5.494091,-17.226393,17.170578,41.57636,5.471 1196,470.08002,221.34055,29.215668,77.91193,98.4 1196,5.277852,199.78,25.425587,46.277847,17.298 1196,285.49365,211.73271,28.027191,63.943466,11.668 1196,300.79086,211.95058,29.355072,67.80968,11.418 1196,324.93658,212.4146,29.141754,60.703445,11.372 1196,270.23737,212.0257,26.125885,62.604797,10.639 1196,-4.703388,197.7207,20.999067,45.96901,10.436 1196,255.30428,211.2199,25.784286,60.771713,9.98 1196,43.1037,187.59457,33.030632,64.12421,9.762 1196,178.83247,-2.0363884,30.417786,75.15526,9.525 1196,274.6265,210.58017,18.171326,42.057037,9.064 1196,358.32352,212.8464,29.2836,58.104218,8.414 1196,265.0371,215.95625,21.660461,51.879013,8.38 1196,299.1113,208.60342,17.545654,34.599884,8.181 1196,291.97485,210.65941,17.232239,32.774734,8.131 1196,341.02454,212.85854,28.074432,58.37236,8.102 1196,281.97565,213.04535,20.27472,49.07959,7.964 1196,58.149982,185.14732,34.989315,68.69179,7.331 1196,249.85489,218.04048,21.346252,48.41185,7.25 1196,29.847485,191.23376,31.579716,52.83014,7.04 1196,458.61316,219.39166,29.592102,76.17059,6.851 1196,490.0103,217.12022,30.860168,65.7238,6.799 1196,374.80792,214.5661,28.94928,61.132904,6.782 1196,283.49997,207.3427,15.486603,28.956528,6.652 1196,242.0424,226.53046,21.822617,44.02292,6.573 1196,-5.947075,489.45306,18.264973,41.939697,6.504 1196,267.80554,210.38785,16.88443,33.90764,6.339 1196,-8.641015,465.4911,37.45513,91.28827,6.296 1196,305.97647,207.1099,17.926666,35.17459,6.276 1196,312.4803,215.66501,23.371643,54.774933,6.25 1196,1.3750136,195.3637,21.264357,39.20572,6.216 1196,443.0846,192.91318,17.493866,37.018417,6.14 1196,444.2883,92.03004,33.057037,60.060204,6.116 1197,354.32916,229.25781,31.040253,78.102234,98.296 1197,142.96622,216.40793,28.6893,70.59143,13.846 1197,125.32794,216.26968,29.096039,69.40024,11.457 1197,-5.826211,-19.527529,18.972794,45.950245,10.549 1197,164.49612,216.89536,30.558594,66.992584,10.111 1197,-10.797686,-32.930492,29.39663,70.43454,9.468 1197,3.7636542,220.53119,29.839193,72.134155,9.339 1197,110.03088,213.7599,29.562012,62.330856,8.673 1197,138.02057,214.0274,19.009888,47.298767,8.397 1197,290.90518,215.79184,30.563507,64.38052,8.332 1197,255.22505,220.14142,28.176498,65.23871,8.194 1197,206.05756,220.11588,29.91832,62.75763,7.959 1197,129.99207,213.63243,19.861542,48.902115,7.868 1197,532.26495,215.42116,33.381165,63.53032,7.745 1197,187.77814,220.21204,30.420837,64.34363,7.499 1197,366.28662,226.83737,31.879028,70.30713,7.382 1197,378.64163,220.22362,31.731537,64.04152,7.201 1197,159.38185,223.74963,23.374725,55.557404,7.138 1197,146.07971,211.60637,17.884186,33.66028,6.978 1197,179.66597,209.68242,30.261871,60.741776,6.848 1197,84.200516,215.94464,42.72439,71.08493,6.838 1197,238.27347,216.45021,28.816803,65.30223,6.802 1197,627.33875,-18.728222,17.340942,47.71741,6.731 1197,277.41293,216.32506,30.355286,69.5172,6.535 1197,88.43153,230.1954,23.952759,44.411835,6.526 1197,194.7574,210.484,17.309555,28.591766,6.335 1197,222.02625,217.32948,27.286194,59.901382,6.307 1197,345.85843,90.85806,37.023895,60.57628,6.271 1197,187.2153,210.28116,17.965042,28.491058,6.242 1197,537.6139,191.86852,30.147766,69.8257,6.235 1197,154.19318,212.57832,18.236862,32.805084,6.178 1197,1.8041122,239.81064,26.300236,85.73361,6.126 1197,323.37466,198.3644,30.524445,76.51372,6.109 1197,217.43777,229.94873,21.670334,42.7995,6.049 1197,329.10394,190.92465,20.532349,41.864395,6.027 1197,1.9099766,-20.12364,18.776642,44.431923,6.009 1197,221.48935,210.03267,13.872314,24.395096,6.009 1197,427.0781,199.86708,30.517487,69.995804,5.981 1197,235.43765,218.25204,16.353851,41.546295,5.965 1197,114.016075,214.19107,21.283745,38.578217,5.963 1198,160.31903,228.15686,37.624023,97.433044,96.929 1198,173.30444,233.64679,34.34674,77.287964,10.02 1198,196.59355,223.99936,31.700577,62.446198,9.596 1198,-5.239252,-18.298342,17.264854,44.00681,8.115 1198,623.9269,-33.886166,25.780762,76.743965,7.674 1198,27.841558,225.27682,29.729364,62.979218,7.294 1198,627.5846,-15.286352,16.32251,43.803307,7.13 1198,-10.704499,-32.21105,28.93438,69.83031,6.748 1198,250.27332,195.14229,32.654785,72.97127,6.63 1198,617.93774,226.1243,19.806946,47.405975,6.429 1198,159.53874,229.91762,28.318329,59.7278,6.373 1198,-3.8475804,41.11445,15.831047,40.578835,6.333 1198,-12.045763,478.24023,29.913637,63.102905,6.126 1198,280.0518,283.9493,22.069855,32.175293,5.982 1198,508.25275,221.14796,18.91864,38.964645,5.916 1198,-6.106384,489.31253,18.710272,41.596954,5.866 1198,235.0428,91.59055,34.647476,61.17724,5.791 1198,550.65454,214.6731,27.500305,62.134613,5.62 1198,540.6947,155.88663,30.346436,89.65605,5.511 1198,-17.892677,-64.6231,55.925625,145.84355,5.491 1198,3.258708,-16.496334,16.540722,40.475086,5.464 1198,129.0174,198.64615,33.244812,79.12393,5.444 1198,627.77673,224.18999,17.991028,45.633194,5.415 1198,314.33698,196.48868,34.221954,72.57431,5.411 1198,136.29977,192.63171,21.928192,41.874466,5.363 1198,183.98666,227.53702,34.56537,66.72052,5.354 1198,603.8069,-56.079247,52.450745,133.88817,5.345 1198,-5.078932,57.200935,17.028732,40.691376,5.327 1198,-5.2815604,324.87656,19.914331,48.192566,5.324 1198,192.40721,132.29683,36.589127,63.368576,5.303 1198,621.77673,477.6203,28.813171,67.13324,5.287 1198,-73.38916,264.533,201.95786,464.63107,5.249 1198,597.8895,222.68999,27.984436,59.021744,5.191 1198,536.21387,310.02933,144.00494,340.1655,5.182 1198,556.05786,148.66574,29.43097,74.4225,5.179 1198,574.41907,225.7957,26.82837,61.09001,5.167 1198,136.8062,222.16344,38.03102,88.74428,5.165 1198,14.9630375,222.83679,27.762098,66.454285,5.164 1198,254.8906,97.716774,25.934113,49.596764,5.153 1198,583.022,412.3528,71.99396,175.97226,5.119 1198,274.15082,140.01422,35.992584,67.9413,5.074 1198,-2.0720613,120.64859,32.082092,66.665985,5.064 1198,452.98395,216.06581,38.767487,77.61052,5.054 1198,220.61792,91.70602,33.294876,60.18908,5.033 1198,515.7141,225.21637,17.705078,34.473328,4.99 1198,148.9664,199.06027,63.023468,136.93558,4.988 1198,336.95282,199.42712,49.610657,112.81244,4.937 1198,-40.98284,362.8523,111.84879,277.97638,4.905 1198,25.154339,227.62572,21.29768,38.54225,4.847 1198,100.985634,211.40466,31.856392,69.55408,4.803 1198,204.28062,-16.587984,29.79538,65.202614,4.79 1198,76.14546,223.05244,31.719482,76.524155,4.778 1198,268.8364,199.10568,29.864899,67.76935,4.71 1198,-5.1436906,224.28183,17.117836,43.487396,4.704 1198,367.25336,210.37556,31.978394,77.56004,4.704 1198,510.9358,192.61136,27.947815,69.8176,4.687 1198,490.34543,-180.2792,235.66946,424.3009,4.679 1199,558.76794,242.82326,36.800842,75.34282,64.119 1199,571.54626,250.81335,38.28302,69.968445,9.575 1199,355.71234,219.30798,28.797363,56.234894,8.434 1199,308.73965,204.02516,30.321045,70.66069,7.688 1199,429.64185,208.3102,12.80304,27.226593,7.561 1199,-10.876677,-32.182007,29.639154,76.74573,6.571 1199,-6.030605,-18.354551,18.54573,46.370625,6.436 1199,435.06747,213.82484,19.15033,40.810013,6.364 1199,422.39334,210.66481,12.01889,25.749115,6.321 1199,427.4532,214.89009,18.05127,39.094162,6.198 1199,627.4818,-17.257675,16.953125,45.57159,6.07 1199,516.842,209.29662,15.046204,35.19037,6.043 1199,-2.610656,-18.137693,28.968475,79.19252,6.027 1199,-11.937563,478.23416,29.71396,63.04947,6.023 1199,342.56708,220.1655,28.982635,61.82083,5.925 1199,566.4979,238.93541,24.434814,55.35649,5.863 1199,442.42163,209.54999,18.361572,40.44345,5.859 1199,374.26575,221.33101,28.708313,56.4955,5.841 1199,212.65369,223.40656,29.105743,63.075226,5.711 1199,562.03735,228.58075,21.39331,45.250793,5.709 1199,-6.439294,489.51138,18.975735,42.15988,5.698 1199,543.8917,249.2939,31.813171,61.577774,5.693 1199,295.22968,208.05154,30.757141,69.81122,5.665 1199,-1.4036644,196.83054,27.9674,91.87375,5.494 1199,626.59094,489.11273,20.67566,44.74829,5.483 1199,300.43765,140.61832,29.62976,84.62686,5.39 1199,430.12067,211.49994,29.201965,61.021423,5.331 1199,623.48627,-34.582127,25.947388,74.74803,5.314 1199,613.07153,455.66797,39.220093,106.45654,5.312 1199,583.5243,413.60437,70.932556,174.78967,5.304 1199,284.27875,153.73582,30.718048,86.53613,5.275 1199,315.396,71.06004,30.955353,79.76384,5.246 1199,-74.11312,263.8144,202.83191,464.4096,5.211 1199,14.606671,205.89865,50.643444,121.47043,5.084 1199,449.3765,208.41312,19.229004,41.426407,5.078 1199,251.67337,221.36145,19.875824,34.485733,5.055 1199,238.16725,224.79837,30.385971,62.539764,5.053 1199,367.73773,225.17465,23.372437,46.65097,5.008 1199,510.15076,212.38353,16.646912,38.937027,4.996 1199,2.0253782,-17.393454,18.144527,44.77306,4.985 1199,317.25116,220.6744,28.53772,66.46153,4.977 1199,-5.3159738,262.6316,18.080223,42.345184,4.971 1199,414.49683,212.29926,11.627319,24.506973,4.934 1199,278.28976,214.98387,38.181854,75.46596,4.928 1199,536.3761,309.6971,144.12244,341.12234,4.919 1199,570.1862,223.49712,18.74945,39.833847,4.918 1199,-17.138296,-62.335636,55.340675,146.46857,4.892 1199,245.22249,206.08237,38.70961,74.645966,4.886 1199,265.14154,221.74773,19.13678,34.930466,4.88 1199,436.77655,204.87761,14.954376,31.755936,4.863 1199,155.6727,228.67363,17.129883,27.12117,4.861 1199,163.79153,218.92587,40.485077,76.53815,4.834 1199,306.89874,122.49849,29.537354,76.58096,4.815 1199,-22.328663,400.29742,80.15953,176.7879,4.743 1199,523.9426,212.27481,14.194702,33.287857,4.743 1199,315.4999,140.95708,32.401886,70.41777,4.741 1199,494.30386,229.52887,237.23148,513.33014,4.74 1199,603.70886,-56.27468,53.049683,136.80916,4.703 1199,419.12524,215.30537,17.744934,40.649597,4.7 1199,107.58202,-14.917974,16.181221,35.739403,4.684 1199,139.40489,247.24283,32.155228,54.626404,4.664 1199,195.95535,215.06413,39.793427,73.02803,4.66 1199,-72.47491,-188.43188,213.87173,456.6298,4.658 1199,-3.4718764,163.71379,31.699778,71.151184,4.599 1200,221.00864,242.29437,41.216217,92.39484,41.855 1200,181.4138,201.7832,13.736725,33.06613,15.042 1200,39.91074,208.40947,23.85043,44.70204,10.596 1200,175.10414,204.11636,13.154129,31.51799,9.086 1200,186.9433,202.03215,15.023315,35.589493,8.644 1200,236.66449,257.89954,34.86133,74.468506,8.641 1200,29.540936,205.01422,30.187195,64.6626,8.062 1200,173.79843,203.46727,28.196075,56.917465,7.187 1200,179.33002,212.09625,18.33638,37.283295,7.124 1200,591.5426,214.9297,21.445557,44.805557,7.019 1200,-5.5031943,-17.376156,17.671333,43.100235,6.817 1200,-6.0134745,489.217,18.428577,41.921783,6.631 1200,567.54065,228.28333,23.697632,43.636475,6.317 1200,340.0869,211.08627,15.308044,33.144135,6.309 1200,163.36966,207.27713,17.898514,39.587463,6.252 1200,186.89421,212.92632,18.986282,37.825363,6.214 1200,-11.31797,-32.842773,29.599533,71.181595,6.154 1200,43.79651,211.72871,29.341461,62.9933,6.144 1200,5.384023,198.06586,29.420523,76.759735,6.135 1200,609.09717,219.7148,22.108643,48.903397,6.111 1200,576.4616,225.99655,22.849792,45.96295,5.926 1200,466.35208,214.94879,21.38385,35.61212,5.92 1200,333.33807,214.32516,15.193878,30.174469,5.817 1200,-8.745255,464.8178,37.441982,92.58215,5.706 1200,626.7999,488.84863,20.332031,44.095703,5.666 1200,580.56805,214.11163,30.065308,60.665802,5.586 1200,196.67192,202.13336,14.787369,38.373962,5.5 1200,622.9431,-33.45939,26.824707,76.62803,5.348 1200,-5.171314,124.00216,18.334812,54.28724,5.333 1200,-73.75729,263.7522,202.34436,466.07556,5.298 1200,453.67984,209.89996,30.437012,50.63626,5.214 1200,627.2224,-18.478386,17.344849,47.09827,5.184 1200,616.7271,224.65945,21.055237,50.002625,5.164 1200,612.8404,455.05988,39.114563,107.42682,5.154 1200,603.1814,-55.42316,52.766113,135.90955,5.135 1200,108.96545,225.36429,29.98539,57.157745,5.11 1200,465.40668,228.77348,21.667267,35.804306,5.09 1200,583.91974,412.02472,70.44415,175.73138,5.085 1200,473.4687,231.49023,20.23294,31.822235,5.023 1200,61.828987,219.64792,28.757904,60.809357,5.001 1200,-5.042157,198.82048,18.124947,48.747757,4.948 1200,-5.1492805,147.85536,17.722286,49.296967,4.931 1200,266.6412,203.87509,19.266022,49.539352,4.927 1200,517.308,146.28963,30.130493,75.70863,4.875 1200,-17.45712,-65.46605,55.79315,150.89955,4.875 1200,4.745802,64.83376,30.116522,82.821144,4.869 1200,10.2346945,145.96426,58.20703,127.62552,4.843 1200,-21.653814,402.32642,79.275856,175.4165,4.822 1200,-14.04929,211.28842,47.6552,140.54388,4.81 1200,447.95068,213.31374,23.672607,42.24341,4.764 1200,-41.03388,364.45615,111.72847,277.6757,4.726 1200,349.23737,205.97794,14.3714905,29.593765,4.721 1200,0.57530284,217.42911,24.768421,75.72885,4.703 1200,15.421457,194.52599,50.32734,112.8051,4.672 1200,589.7155,230.70668,29.755676,66.46626,4.655 1200,-4.952138,71.251816,18.343704,51.423508,4.654 1200,535.9032,311.67676,144.56738,341.4217,4.648 1201,511.85797,214.53677,25.058777,59.28894,11.449 1201,211.2378,213.85931,18.273468,38.03105,11.086 1201,203.57944,214.07468,18.936966,39.47966,9.68 1201,463.08224,225.56104,25.333313,44.55716,9.329 1201,218.55084,214.80698,18.82724,37.21695,7.884 1201,193.29948,216.90935,21.945389,44.215195,7.511 1201,556.0182,217.86717,30.758118,57.54268,7.485 1201,540.75183,225.225,29.630737,60.526703,7.289 1201,561.2241,192.52197,30.461609,60.557617,7.077 1201,242.23682,232.47363,30.468842,64.189026,6.878 1201,-3.4911637,193.09068,15.993822,42.99904,6.667 1201,-5.377581,-16.713446,17.190836,42.536148,6.542 1201,462.09985,200.7441,27.300812,57.428207,6.498 1201,3.9793289,192.1804,17.956516,46.077515,6.476 1201,440.53656,231.90886,23.20578,34.970932,6.457 1201,480.91925,216.03322,22.63327,44.618088,6.323 1201,-9.834554,191.80762,26.965168,71.84808,6.247 1201,531.93286,211.66113,31.87738,60.975586,6.236 1201,346.8176,218.67252,19.34668,29.4003,6.181 1201,622.26764,-34.3024,26.918213,77.73928,6.043 1201,627.3011,-18.136917,17.074585,47.94659,5.994 1201,-8.564922,465.77396,37.33859,90.96854,5.981 1201,205.3518,210.55055,27.037872,57.448868,5.946 1201,514.6786,209.32613,40.874146,68.01463,5.936 1201,471.44562,216.9129,23.227722,43.30121,5.808 1201,621.7471,477.91193,28.639526,66.18909,5.799 1201,617.44116,205.13812,20.715637,56.514618,5.745 1201,-6.1497755,489.44516,18.653114,42.540985,5.695 1201,513.66614,204.05219,20.54657,46.037796,5.675 1201,163.25125,218.40495,30.12082,60.66835,5.553 1201,552.4176,221.41614,23.34851,43.66861,5.471 1201,546.8698,213.56567,21.776794,38.491425,5.416 1201,602.55945,-56.868927,53.550476,135.10677,5.396 1201,488.50314,209.92809,21.30606,45.021133,5.394 1201,-11.141109,-31.045662,29.811028,70.529816,5.394 1201,10.135475,194.3947,18.626747,49.60901,5.386 1201,579.6759,210.30447,31.359192,64.24194,5.344 1201,447.77036,234.30785,24.52887,37.47612,5.334 1201,-16.77079,-65.10901,55.06788,145.69661,5.322 1201,107.26726,210.36632,30.9664,70.672806,5.27 1201,493.71045,201.78139,28.017212,58.853836,5.255 1201,-73.085106,265.5858,201.24234,463.03336,5.231 1201,613.7018,158.76755,25.628418,90.81305,5.176 1201,583.00635,412.36594,71.49109,175.67905,5.041 1201,-5.316326,72.75429,17.934679,44.091423,5.014 1201,227.42258,213.99278,19.254639,40.659546,5.003 1201,-21.399197,403.83136,78.82025,174.07825,5.0 1201,-5.1032124,212.66658,18.198143,47.331985,4.95 1201,244.7084,209.09831,12.408661,19.226013,4.937 1201,559.64,206.92038,22.63147,40.70987,4.88 1201,516.18506,-11.267197,14.418396,31.845915,4.873 1201,467.19028,228.73274,32.67804,55.320724,4.758 1202,422.34225,225.29092,25.468842,44.33972,12.898 1202,0.07402897,187.19586,28.108913,69.11047,11.355 1202,445.9176,207.23767,29.183075,61.233337,10.915 1202,595.9872,214.73387,33.894287,81.5959,9.99 1202,11.447543,187.5469,30.889038,64.6815,9.954 1202,486.15054,217.99805,29.69394,65.808136,8.331 1202,431.75024,217.62433,23.02771,43.582886,7.672 1202,577.7691,212.71198,43.03894,89.82959,7.272 1202,514.2958,219.83179,20.30011,41.441223,7.1 1202,421.0126,194.80309,29.787262,63.631363,6.671 1202,441.79053,213.66647,22.832703,47.305634,6.555 1202,47.049126,205.40039,28.659126,61.940887,6.507 1202,114.8873,211.44449,19.40889,36.394867,6.466 1202,4.325285,201.52888,36.097137,97.44948,6.425 1202,130.00954,200.19966,17.415573,40.937515,6.415 1202,-4.848104,210.17683,19.4554,50.692642,6.39 1202,-8.908379,464.89673,37.627064,91.39691,6.343 1202,508.6749,224.95822,29.532684,56.913696,6.33 1202,626.5293,487.85577,20.500854,45.81244,6.292 1202,121.4895,203.40295,18.738342,38.032227,6.265 1202,615.62054,214.79,22.68634,45.57979,6.218 1202,-9.906294,172.06589,29.2161,71.61101,5.932 1202,-4.9473305,-16.295393,17.044277,42.8972,5.929 1202,496.53378,202.78966,21.75473,45.090714,5.918 1202,475.03918,156.33714,29.93274,80.45271,5.903 1202,407.84793,231.44849,26.451874,40.207977,5.822 1202,622.8693,-34.088413,26.80365,77.58722,5.787 1202,-16.830366,-63.12757,55.73266,145.00964,5.748 1202,617.7349,137.5791,22.277954,62.394577,5.702 1202,627.5088,-17.708391,17.034912,46.48202,5.683 1202,601.0767,216.43896,24.218811,45.849243,5.627 1202,-5.603368,183.87738,19.137249,47.376358,5.587 1202,162.67102,202.5509,17.091217,40.5502,5.549 1202,472.20642,200.16736,22.78009,46.795868,5.528 1202,-11.102318,-32.611763,30.000502,74.09553,5.415 1202,139.65063,201.65236,16.181702,39.10791,5.409 1202,43.331764,205.7238,18.924347,43.112976,5.376 1202,-6.1702538,489.35388,18.39251,42.310913,5.354 1202,520.6492,234.24919,20.738403,39.066177,5.353 1202,155.76688,204.08736,15.858002,40.115463,5.332 1202,506.50082,213.29463,21.168976,42.057343,5.309 1202,612.6123,455.57855,39.562866,106.38696,5.296 1202,582.7555,413.62195,71.850525,174.62006,5.283 1202,284.04813,209.93289,18.499603,31.524033,5.278 1202,433.9671,201.03473,21.089966,45.671265,5.26 1202,-5.193735,153.86801,17.171642,42.228806,5.244 1202,-72.975525,265.00897,201.21991,463.73114,5.243 1202,549.75244,195.66939,30.355469,59.37181,5.199 1202,602.3086,-55.768593,53.615967,136.07422,5.15 1202,20.799849,222.18887,32.370316,69.267975,5.108 1203,439.98395,233.85168,25.111603,47.527283,28.591 1203,423.78992,241.24055,26.255432,46.509262,11.169 1203,534.39856,211.59547,29.413513,84.47453,10.777 1203,555.0394,218.31274,19.147034,46.44452,10.486 1203,461.52118,215.34317,30.121918,65.695404,9.821 1203,428.35754,211.14554,30.795135,65.2424,9.148 1203,545.3987,215.22318,21.234375,59.338898,7.583 1203,443.20227,205.18193,32.094116,68.39906,7.161 1203,435.92566,182.63028,30.758606,73.12503,7.076 1203,549.1114,176.28995,29.40741,79.71701,6.915 1203,456.70578,210.75865,22.12799,52.625717,6.66 1203,5.1353893,198.38062,27.834738,77.67377,6.653 1203,-5.5643387,-15.611672,17.221642,40.62424,6.652 1203,555.42804,222.12189,29.800354,57.36499,6.497 1203,541.70544,166.45021,28.03711,76.797745,6.432 1203,577.916,225.7124,20.856323,33.090057,6.384 1203,404.62714,240.83975,26.669495,38.601562,6.262 1203,584.86383,229.77504,22.78534,38.219925,6.157 1203,-8.888742,464.36618,37.664146,92.16745,6.13 1203,627.3145,-18.543257,17.158081,47.417683,6.042 1203,427.60544,203.85175,19.227325,35.456497,6.01 1203,538.2928,210.96565,19.840881,53.95491,5.942 1203,-6.178839,488.39212,18.422674,43.34543,5.882 1203,621.72473,477.3078,28.910034,67.178894,5.635 1203,506.133,210.5001,20.533386,34.433014,5.619 1203,622.93933,-33.902706,26.718811,76.860535,5.515 1203,51.107143,199.49942,30.219143,75.01297,5.497 1203,-17.543001,-64.55235,56.19541,145.07416,5.477 1203,-5.7113504,212.81049,18.304146,47.993988,5.398 1203,2.8737907,201.611,19.676222,50.807587,5.382 1203,570.24634,225.65088,19.440674,35.055847,5.348 1203,603.47577,434.9068,54.953552,139.14545,5.284 1203,-72.52305,264.712,200.87189,464.7759,5.218 1203,546.36237,229.12315,30.592041,70.344986,5.21 1203,-11.212004,-32.227318,29.729927,73.241104,5.184 1203,40.361107,208.18126,28.130898,72.09169,5.154 1203,411.79446,228.3053,34.38492,55.571228,5.067 1203,-0.19781947,220.74673,27.096384,78.45471,4.977 1203,324.3893,108.74933,31.94455,66.40408,4.973 1203,235.0285,96.19579,32.329742,71.17271,4.967 1203,100.46253,198.68497,15.22921,26.948502,4.956 1203,-10.267444,199.69589,28.132656,76.574554,4.948 1203,535.65015,310.35413,144.88953,341.766,4.928 1203,426.81183,215.04202,21.54541,43.477356,4.906 1203,617.6241,233.50267,20.575073,39.882645,4.851 1203,-40.32547,362.88187,111.39105,277.363,4.845 1203,561.7416,218.36075,18.033508,38.870087,4.836 1203,-5.109885,231.90868,19.151253,47.31096,4.79 1203,3.132803,-12.8890915,16.111593,37.641052,4.786 1203,260.13907,217.56898,17.49466,30.560242,4.778 1203,334.9978,207.02538,27.483765,54.729935,4.752 1203,98.58801,209.24728,17.33976,32.074356,4.715 1203,84.62269,206.31256,15.046036,30.826843,4.702 1203,493.94254,229.22165,237.17319,511.99295,4.688 1203,2.509718,228.96973,38.486053,95.83649,4.684 1203,92.85381,206.97646,14.421539,29.635284,4.669 1204,501.20953,245.36613,31.300293,58.02693,15.74 1204,476.52008,207.64977,14.457214,28.328491,8.786 1204,396.0774,206.21645,30.317322,66.272995,8.483 1204,408.46957,206.61148,23.7695,56.23816,8.451 1204,-5.3450527,-17.947315,17.426792,42.028618,8.116 1204,372.78458,212.5046,29.708527,61.24861,7.877 1204,147.02261,207.66573,18.986374,38.238617,7.398 1204,154.4779,207.13503,19.941132,42.124344,7.371 1204,139.50496,206.58841,18.241714,36.931427,7.195 1204,82.144485,202.98834,19.761383,40.336273,6.775 1204,28.236084,211.21764,30.043213,60.08107,6.601 1204,-11.72463,476.8875,29.840302,64.97064,6.492 1204,4.566059,207.21576,30.8769,72.94534,6.488 1204,180.81102,221.39648,29.516907,62.11035,6.197 1204,626.5762,488.53888,20.359863,44.92517,6.197 1204,-17.024944,-64.52545,55.08858,143.6825,6.136 1204,527.53613,221.59473,46.174133,70.31891,6.133 1204,166.66763,209.94638,29.961151,68.06152,6.114 1204,625.7109,212.43738,18.787964,51.631958,6.044 1204,432.31622,218.5988,25.611267,46.908676,6.003 1204,51.609413,213.85196,30.835312,64.91513,5.972 1204,-11.278625,-32.450413,29.747189,70.744576,5.893 1204,-6.447318,488.8231,18.926754,43.288727,5.814 1204,423.20895,213.46414,25.43866,53.02716,5.806 1204,160.55466,209.6291,21.90863,47.278122,5.804 1204,611.507,-50.270435,40.691467,104.53582,5.781 1204,74.025314,212.04782,20.212173,42.01613,5.645 1204,0.24179697,153.49896,24.690657,73.82172,5.643 1204,514.46985,242.13426,31.246277,63.714523,5.615 1204,627.0354,-18.61554,17.410889,48.013336,5.501 1204,1.4370203,216.86414,21.33363,49.72336,5.479 1204,33.9457,210.29337,41.30076,83.09866,5.389 1204,141.09947,206.93375,29.678802,66.55087,5.357 1204,76.54471,195.33162,15.560989,29.93222,5.307 1204,93.200836,197.66542,14.128876,27.056961,5.297 1204,612.5531,456.51865,39.24652,105.44974,5.267 1204,-72.799805,263.86462,201.54575,465.33032,5.263 1204,49.660416,213.46109,21.430252,44.013763,5.227 1204,109.467354,201.41087,13.869888,28.080795,5.195 1204,506.67117,227.53177,33.05368,65.71634,5.154 1204,583.1425,413.27118,71.65851,175.22375,5.144 1204,170.6642,208.91191,21.6427,42.500244,5.14 1204,343.83884,119.8304,25.165314,47.316803,5.117 1204,339.97406,118.61062,31.909637,83.542,5.077 1204,126.3305,205.76984,12.306923,25.669281,5.008 1204,487.05682,248.60825,30.497742,60.810425,4.993 1204,82.510445,214.62277,42.611435,77.85724,4.98 1204,352.86053,217.86464,22.204803,35.334045,4.969 1204,509.58224,158.96579,28.575775,74.26686,4.94 1204,306.3959,186.28561,16.44516,26.498444,4.908 1204,536.1482,310.86423,143.99536,340.83,4.904 1204,492.07574,237.3926,53.355835,92.23265,4.832 1204,101.47126,197.36818,13.729958,27.10167,4.797 1204,90.71388,205.14781,19.839142,39.355286,4.797 1204,14.306178,200.73117,49.275818,103.90799,4.781 1204,-40.599625,364.12415,111.35184,277.57202,4.763 1204,118.14807,203.84554,13.098541,26.894165,4.751 1204,66.17648,223.27026,33.369423,70.24011,4.743 1204,585.9491,-103.2693,75.6861,237.5446,4.735 1204,-21.605152,402.0826,79.260895,175.12076,4.732 1204,393.35187,208.38693,22.332825,45.194305,4.729 1204,463.35202,245.67595,34.352417,57.951523,4.713 1204,462.33157,209.34589,12.441498,25.599457,4.703 1204,2.9999316,-16.419708,16.769812,40.34753,4.687 1205,450.41458,211.75633,32.635162,68.68327,10.354 1205,152.80106,206.82523,20.54309,42.53383,7.795 1205,527.273,134.13632,21.66809,52.38768,7.618 1205,-5.7272854,-18.536985,17.919228,44.436737,7.611 1205,496.1165,221.11734,21.07315,46.41037,7.448 1205,509.42908,227.49329,28.905762,60.628845,7.43 1205,68.7043,215.6289,30.7538,74.019714,7.186 1205,141.44177,205.75381,29.388306,62.300262,7.122 1205,360.1756,220.84547,22.451233,29.659103,6.98 1205,139.22389,207.10796,19.983322,38.43254,6.79 1205,-10.95008,-31.879303,29.94484,73.09604,6.747 1205,299.42722,213.82834,16.790955,28.052307,6.679 1205,474.36786,225.70853,31.722107,63.93866,6.666 1205,443.0448,225.38232,32.55487,70.20227,6.603 1205,470.66238,227.18547,24.327698,47.207596,6.31 1205,627.31775,-17.854038,17.122498,46.631123,6.308 1205,517.0155,216.60513,37.5755,89.33731,6.243 1205,558.3609,216.96262,27.980469,71.88205,6.19 1205,-12.067497,478.17267,30.455252,62.77527,6.146 1205,-6.35433,488.78015,19.11704,42.392822,6.104 1205,523.77155,220.07127,17.057861,35.740158,6.086 1205,562.63965,212.64377,20.374512,47.48285,6.085 1205,463.9001,218.2865,23.957245,49.481842,6.064 1205,448.1114,206.17377,22.193726,50.338684,6.041 1205,531.8935,215.61728,37.57251,93.27692,5.936 1205,546.95447,290.47366,34.93225,62.42737,5.856 1205,458.83875,226.4173,33.136536,64.06854,5.836 1205,626.70184,488.1157,20.34491,45.709198,5.823 1205,521.94434,245.44736,23.171997,40.753174,5.817 1205,505.62506,223.84492,19.200317,42.34288,5.763 1205,3.1241035,219.65724,38.281403,101.95445,5.724 1205,292.84702,213.08745,16.543121,28.548462,5.629 1205,378.73358,215.95818,32.409454,50.932083,5.623 1205,100.951004,196.31276,14.968445,30.313553,5.622 1205,339.19827,212.26268,18.95697,29.053589,5.602 1205,545.79114,131.82428,21.901306,57.611893,5.6 1205,-4.524327,213.53708,16.90875,44.21042,5.587 1205,157.1069,201.96492,28.77829,59.19963,5.542 1205,565.6792,208.8828,36.516968,93.800186,5.49 1205,611.0294,-48.15234,41.813477,101.621574,5.465 1205,42.68962,253.82089,33.81405,69.1889,5.452 1205,3.9225924,146.9938,29.431702,78.59169,5.445 1205,-17.442814,-64.420334,55.976173,142.8275,5.442 1205,612.79785,455.7928,39.234375,106.32422,5.315 1205,-73.04572,264.40765,202.10336,464.8271,5.301 1205,544.8432,218.59827,22.894592,44.32773,5.194 1205,551.60254,287.187,25.525269,41.010834,5.146 1205,108.72916,202.00589,15.203827,30.627243,5.118 1205,-0.93585134,229.11993,27.152897,76.72168,5.055 1205,536.5803,310.80615,143.47461,340.5089,5.025 1205,147.54886,205.22499,18.69017,36.19835,5.007 1205,20.618229,200.85437,37.833683,76.416046,4.979 1205,363.69513,210.39621,16.390778,24.42978,4.944 1205,-0.37877202,195.69696,24.30854,69.67145,4.935 1205,410.00635,228.27028,19.62497,38.46733,4.93 1205,516.64343,220.59596,16.661377,36.92296,4.924 1205,583.1533,410.5751,71.8241,178.93918,4.924 1205,484.9948,216.5444,38.2265,81.44354,4.918 1205,90.364075,207.3111,20.144615,40.693756,4.853 1205,568.4974,204.98387,19.93042,43.393066,4.835 1205,115.25155,202.97638,16.315773,30.716324,4.834 1205,-5.815057,245.93121,19.742207,47.86786,4.831 1205,25.304893,211.23099,22.093307,41.966797,4.822 1205,-40.86667,362.32715,112.24683,278.3966,4.765 1205,322.26294,216.71768,19.442505,29.702194,4.75 1205,553.61633,218.30322,22.490417,46.177063,4.739 1205,76.472275,200.91573,15.330238,33.32361,4.715 1205,-21.699352,400.93668,79.16904,176.20004,4.684 1206,587.89996,215.70152,17.71399,37.55327,26.733 1206,620.0985,210.83801,18.018433,41.68155,14.569 1206,592.6477,217.55042,18.806702,44.269684,12.944 1206,377.43057,224.89139,25.383179,34.50815,12.682 1206,583.41974,206.2017,31.63684,88.295,11.799 1206,574.67786,217.46416,27.9953,69.56398,9.689 1206,581.7648,214.19112,18.83899,46.707718,8.572 1206,625.8545,204.38705,17.856201,43.871765,7.66 1206,53.153614,200.61412,13.767284,32.150253,7.025 1206,-5.638533,-18.078514,17.791357,42.44452,7.01 1206,598.7598,208.05331,32.728333,99.11844,6.973 1206,438.3169,223.1643,31.41397,61.285004,6.932 1206,61.4626,202.26982,13.370316,30.059113,6.897 1206,68.85062,206.25697,13.966499,28.721222,6.869 1206,456.65918,259.18542,23.171753,34.761078,6.565 1206,44.73699,205.39981,14.3338585,31.177094,6.517 1206,404.05896,211.99265,29.355316,57.010376,6.377 1206,612.90564,451.86783,39.588257,111.73819,6.23 1206,-11.585796,476.95004,29.436924,65.558075,6.214 1206,299.44952,218.08423,17.792542,29.977066,6.096 1206,627.11456,-18.738564,17.464539,47.5474,6.07 1206,36.409195,203.46228,15.278015,34.524506,6.03 1206,-10.938784,-32.441772,28.685612,70.7316,5.934 1206,540.09155,224.57442,31.867859,72.147934,5.885 1206,571.1431,219.28717,21.861694,49.954834,5.792 1206,626.66144,487.47638,20.43689,46.0484,5.781 1206,603.30096,217.98785,16.66156,35.62123,5.752 1206,-6.0869684,489.27994,18.391083,42.990143,5.73 1206,450.59158,233.82735,31.453644,59.566147,5.641 1206,622.4926,-34.28472,27.035461,76.659225,5.618 1206,306.73508,214.32368,17.885468,28.943756,5.586 1206,174.99005,203.93478,26.29358,67.776794,5.459 1206,292.3741,217.57231,18.024597,30.879028,5.379 1206,-72.872116,265.57422,201.01958,463.65356,5.302 1206,314.8767,213.37868,18.332275,29.446,5.244 1206,-17.221018,-64.54783,55.838234,144.00934,5.236 1206,613.84265,206.73524,32.80841,105.143845,5.224 1206,612.28265,218.11404,18.69751,44.913086,5.197 1206,-3.5472238,173.72859,15.266972,40.296158,5.18 1206,410.386,207.86163,16.115509,31.143585,5.167 1206,-3.696463,204.18799,15.167549,37.585526,5.02 1206,321.9886,212.61424,18.437866,29.121902,4.985 1206,91.94916,206.82971,16.69336,30.646164,4.96 1206,626.01025,219.02612,18.898743,50.43109,4.953 1206,602.3826,-56.852043,54.157654,136.72276,4.938 1206,383.34912,214.01178,21.565247,37.387756,4.904 1206,66.89673,189.41235,17.534775,34.58217,4.834 1206,388.91486,206.55838,14.628815,27.088501,4.807 1206,594.2692,208.31654,16.68103,29.593628,4.794 1206,541.7373,220.34409,51.819336,122.30017,4.777 1206,170.0405,210.28497,21.580734,49.97702,4.73 1206,191.07307,204.72404,26.790375,63.665115,4.715 1206,531.6672,216.58694,20.33545,44.814056,4.707 1206,535.88385,310.0526,144.59479,342.43707,4.706 1206,76.001976,207.01114,15.135872,28.43097,4.698 1206,-39.958958,365.77258,110.08432,276.5006,4.68 1206,161.32333,213.35565,21.621979,46.03479,4.665 1206,494.00415,229.39447,237.07373,513.702,4.644 1206,381.32324,207.6425,14.091339,24.653717,4.622 1206,572.0728,-3.1781082,18.592468,33.197468,4.585 1206,-4.433566,155.87695,16.01419,41.47032,4.581 1206,548.9367,210.37251,35.33557,87.25206,4.57 1206,458.9522,256.78815,29.998566,51.54062,4.557 1206,377.88074,109.70532,34.23578,65.14606,4.537 1206,565.0555,227.97089,32.03302,72.963196,4.532 1206,-5.4221106,216.99547,17.12162,39.347336,4.517 1206,411.4444,217.78346,33.191498,60.737564,4.498 1206,583.17633,410.35925,71.24005,177.87439,4.48 1206,28.212225,208.49345,17.660425,39.121506,4.468 1206,574.343,211.66452,49.598145,136.79709,4.455 1206,-14.847856,157.33168,48.959557,135.49828,4.448 1206,330.2919,179.6151,18.319702,31.719162,4.446 1207,407.02975,221.212,24.706055,43.310486,9.881 1207,166.92488,208.62492,30.339996,77.205734,9.536 1207,282.96045,212.44032,17.626709,30.124298,8.652 1207,137.0083,205.46957,22.503479,49.07016,8.32 1207,481.19604,154.61656,23.319458,60.476868,7.716 1207,290.99078,213.22581,17.382874,29.747986,7.486 1207,384.82455,226.04782,25.24945,37.017303,7.316 1207,623.1245,-32.96033,25.960571,74.78261,7.288 1207,-4.0820475,204.16493,15.1473055,36.327667,7.137 1207,627.18884,-16.422583,16.689209,44.9392,6.982 1207,568.42566,213.54077,21.606018,47.136536,6.947 1207,-5.6713543,-18.874157,18.433504,46.731525,6.591 1207,11.639902,197.72227,14.474546,30.85019,6.505 1207,4.461282,187.78456,17.379406,33.898804,6.476 1207,488.75574,215.38046,21.498505,39.14026,6.371 1207,-10.440278,-31.080894,29.034924,74.3402,6.308 1207,130.20612,208.88664,21.437057,52.01094,6.138 1207,460.18997,215.65564,17.870789,36.243774,6.098 1207,-5.0696573,233.73259,18.739058,42.390915,6.097 1207,571.889,205.77768,28.533264,64.355194,6.035 1207,151.00569,202.96548,28.40596,67.06958,6.014 1207,-4.316164,182.82372,16.614038,35.997467,5.95 1207,396.39673,-13.429398,32.141235,62.7887,5.913 1207,465.3628,216.87753,21.74237,39.74527,5.832 1207,5.7915254,202.37978,13.730896,31.698837,5.832 1207,484.1632,164.62614,29.470947,80.09932,5.816 1207,457.00272,164.18558,20.30539,56.961548,5.753 1207,-4.8478727,217.18141,16.35803,38.289215,5.748 1207,562.2514,212.94246,20.444763,37.10771,5.598 1207,-8.960438,465.0811,37.54499,92.04666,5.589 1207,621.7182,477.6948,28.987,67.10037,5.581 1207,413.1235,217.37967,28.708618,55.041718,5.552 1207,-2.1188629,265.75635,28.959133,77.17453,5.517 1207,-6.0832424,489.2493,18.573236,42.34427,5.516 1207,450.503,222.45387,34.892822,60.9366,5.514 1207,587.8262,256.10797,29.995117,48.48993,5.509 1207,122.927055,214.18329,20.029655,43.674713,5.506 1207,581.27856,206.74342,29.222412,73.287704,5.44 1207,140.9088,204.85204,28.393387,68.42595,5.428 1207,602.869,-54.9964,52.902405,134.18231,5.381 1207,556.7094,207.70302,29.599365,59.580917,5.371 1207,-72.696594,264.7035,201.31291,464.72943,5.322 1207,4.376242,117.5202,31.181974,66.00583,5.265 1207,278.2205,207.41214,15.208923,27.999146,5.141 1207,-10.370951,211.35759,27.023272,68.325455,5.121 1207,582.96533,413.14215,71.91931,175.40338,5.074 1207,613.9651,245.8411,26.459229,80.55167,5.068 1207,461.25504,157.05937,26.996674,66.87172,5.046 1207,599.07196,227.04945,35.7558,95.10423,4.957 1207,621.2672,-0.75200844,16.609802,35.902405,4.922 1207,401.85825,234.48357,21.506989,34.694534,4.904 1207,-16.71284,-62.67199,55.91382,143.3738,4.887 1207,496.7078,214.84471,21.425262,40.563187,4.87 1207,535.8879,310.5475,144.68823,341.5343,4.865 1207,428.80722,211.27315,29.977936,58.389023,4.856 1207,585.821,206.75098,20.426392,43.847702,4.855 1207,-5.807313,136.6488,18.17221,42.012695,4.842 1207,577.2186,234.37416,19.904053,39.46083,4.84 1207,3.9915104,212.62689,14.262003,32.661087,4.797 1207,524.01556,226.72452,30.504883,63.97168,4.789 1207,337.38342,-19.253088,19.54535,44.79603,4.786 1207,513.83655,196.2174,21.07666,41.035416,4.78 1207,594.31995,213.60492,21.184326,45.339417,4.729 1207,387.68405,207.16043,15.510986,27.116241,4.727 1207,-6.341638,259.37894,19.039175,45.956055,4.727 1207,553.9802,218.74263,21.62268,36.370743,4.727 1207,586.4164,97.25756,19.240662,34.197716,4.716 1207,-40.888268,362.7403,111.87943,278.75262,4.711 1207,493.8498,229.22577,237.18878,512.98553,4.702 1207,618.64087,111.29069,19.344177,58.436607,4.673 1207,-21.6094,401.42352,79.049225,176.52747,4.655 1207,506.38,214.97003,21.485046,40.585403,4.631 1207,571.2191,-14.563244,52.84247,131.1388,4.619 1207,395.32425,204.34035,15.939545,29.420975,4.617 1207,517.308,186.27151,26.665588,59.560776,4.614 1207,540.4778,220.87944,30.758179,66.213974,4.592 1207,307.11017,216.87027,18.670166,31.249603,4.587 1207,471.77295,160.83162,27.647827,78.790085,4.581 1208,142.98912,212.24362,25.030655,45.88144,17.034 1208,229.37257,204.47612,14.209518,23.930664,10.03 1208,85.27664,203.1784,31.279907,62.78766,9.774 1208,81.314606,206.35567,21.670547,44.062225,9.054 1208,542.97107,204.36247,28.523193,68.808426,8.545 1208,554.53217,209.5215,21.941162,49.488907,8.34 1208,444.6795,234.0653,18.004456,38.20404,8.249 1208,408.62518,235.48845,22.90924,34.536545,8.169 1208,569.64764,199.95413,19.65564,47.31929,8.163 1208,614.3575,69.57837,24.37445,84.3898,7.586 1208,97.05174,204.48917,22.62764,48.67064,7.462 1208,74.08738,205.97643,20.290092,42.080948,7.212 1208,-5.8176174,-17.918135,17.811218,42.87938,6.877 1208,235.11197,204.32596,12.964142,20.935516,6.808 1208,558.4405,202.25204,27.25122,66.69617,6.799 1208,131.28651,209.53879,33.915115,72.42749,6.768 1208,455.44797,224.62946,22.593231,43.526917,6.598 1208,515.87085,210.54028,30.73993,63.28891,6.532 1208,536.9248,201.26706,21.103577,48.913208,6.473 1208,573.4972,202.60686,27.966919,65.02367,6.446 1208,529.1339,202.04425,20.836609,47.822342,6.371 1208,562.00256,184.87158,20.069519,41.757202,6.174 1208,109.64818,207.86537,31.224762,66.063614,6.056 1208,291.0487,209.89973,17.254211,30.487793,6.032 1208,-8.845808,464.4078,37.61858,92.131805,6.024 1208,-3.6665978,124.67196,16.37548,38.85209,5.907 1208,518.0326,123.03546,27.87085,70.84961,5.873 1208,626.647,487.54282,20.440063,46.430145,5.858 1208,563.04755,200.58354,18.369202,43.0504,5.853 1208,589.9778,201.54771,27.367615,69.77425,5.84 1208,68.04538,202.55,31.069199,61.729477,5.804 1208,505.16553,214.99557,20.878723,41.122772,5.784 1208,-17.090952,-64.24566,55.45217,142.6397,5.709 1208,563.11346,219.63837,30.87799,65.08884,5.695 1208,612.71924,456.23074,39.26819,105.117645,5.555 1208,627.1845,-18.317574,17.227112,46.607414,5.545 1208,622.80585,-33.640003,26.756836,75.38847,5.508 1208,284.4462,212.70291,17.516785,28.871002,5.466 1208,66.55439,206.33109,19.655785,42.37935,5.442 1208,50.925568,220.32518,36.26935,60.088364,5.428 1208,-11.038638,-31.931835,29.312141,71.26661,5.397 1208,-72.99101,265.50232,201.27306,464.19012,5.361 1208,1.8086106,128.47455,17.080873,36.060226,5.324 1208,104.03694,209.6992,22.759438,48.050156,5.295 1208,-6.3196497,489.26538,18.522121,42.57849,5.234 1208,234.76587,210.9496,18.630066,35.252853,5.226 1208,499.52686,124.43802,28.910095,78.85187,5.181 1208,446.04102,220.09421,25.221497,57.826416,5.103 1208,582.9541,413.8811,71.64276,174.52478,5.073 1208,556.47925,195.07948,17.517273,40.31842,4.942 1208,298.80914,215.87897,18.338959,29.027359,4.939 1208,500.6093,212.47208,30.96344,62.158203,4.9 1208,602.5695,-57.523857,53.970398,137.7991,4.886 1208,575.8068,186.04263,46.524048,106.951324,4.859 1208,535.78894,310.6643,144.75537,341.75183,4.857 1209,567.6838,218.18446,25.401611,47.84291,25.413 1209,526.1689,161.87784,25.886719,76.129974,16.339 1209,242.30319,206.8494,15.812012,26.080322,16.147 1209,85.04326,200.56793,29.498428,72.947754,10.556 1209,565.1038,215.30832,38.70337,72.09036,10.538 1209,100.75731,202.42424,28.973846,69.551895,10.449 1209,581.55133,223.4365,25.777893,49.40982,8.685 1209,52.08452,202.1534,30.857773,58.43962,8.61 1209,68.959,200.82707,31.065147,66.78529,7.347 1209,129.39809,216.47757,25.207626,50.496338,7.142 1209,539.4349,222.63843,31.621094,70.28137,7.007 1209,468.3952,161.02852,25.25824,80.76289,6.864 1209,111.67197,206.34319,23.83545,52.276596,6.836 1209,543.3074,218.6447,22.922424,43.181747,6.831 1209,-5.399784,-17.616356,17.868103,44.000736,6.677 1209,525.71375,223.62831,30.021484,69.427536,6.511 1209,118.64732,205.42828,30.976288,70.62952,6.499 1209,320.68567,212.06029,20.414062,35.03943,6.476 1209,626.56995,488.68994,20.504028,45.198975,6.326 1209,375.20227,218.1091,36.428284,54.5325,6.309 1209,396.6069,208.4194,15.183929,25.020004,6.297 1209,622.877,-33.928246,26.490356,76.29129,6.284 1209,600.5025,227.54002,23.25885,45.908096,6.262 1209,-11.677566,478.6896,28.807465,62.709015,6.242 1209,240.10199,205.10687,12.641403,22.217392,6.044 1209,-12.294583,-42.095474,40.93176,99.99064,5.95 1209,-8.770524,464.54675,37.446136,92.31006,5.917 1209,243.16948,214.62991,16.994492,28.969513,5.83 1209,403.6742,210.71532,32.048462,55.98958,5.811 1209,-6.184413,489.48312,18.199856,42.24051,5.754 1209,627.25446,-20.564556,17.768066,49.133606,5.746 1209,98.11441,199.98611,21.849586,51.168808,5.628 1209,583.027,213.89317,21.091736,40.16536,5.569 1209,-72.70633,264.859,200.74078,464.245,5.297 1209,415.66333,210.33102,20.418945,32.522293,5.268 1209,38.302296,188.92757,37.988155,87.57161,5.265 1209,170.15816,210.03485,20.527328,35.176514,5.23 1209,602.65704,-58.33004,53.83191,137.29727,5.225 1209,66.13649,202.589,21.216263,42.73819,5.217 1209,333.4175,110.629,30.541077,70.308044,5.202 1209,578.3822,210.8406,40.23706,74.67285,5.173 1209,315.1286,218.86101,19.07959,34.9709,5.148 1209,583.186,413.39587,71.4682,174.96301,5.116 1209,442.15216,29.30172,34.086395,78.615295,5.114 1209,399.1607,221.21132,47.491943,66.00014,5.114 1210,413.9176,205.08322,12.343018,22.24858,10.392 1210,411.3004,206.9265,18.69397,37.368515,9.395 1210,377.95905,205.5241,18.560455,34.795563,7.73 1210,441.67328,206.68637,19.714935,33.95735,7.52 1210,618.61414,218.98383,21.838623,44.314728,7.422 1210,514.04346,210.34259,19.266418,34.91147,7.295 1210,420.71027,205.05363,12.844879,21.722595,7.272 1210,45.471493,198.75719,30.549503,63.79103,7.271 1210,506.09586,212.76083,19.509613,33.919876,7.148 1210,236.10826,204.68631,15.59433,27.271729,6.978 1210,416.3061,207.7472,22.498718,47.692886,6.856 1210,258.83713,211.22032,19.526398,32.363693,6.717 1210,6.956972,209.5455,28.208265,62.214966,6.64 1210,328.9781,213.02704,21.51416,36.69658,6.563 1210,1.8853772,216.57785,23.005526,48.188934,6.414 1210,218.97443,200.64261,19.562378,31.68715,6.393 1210,621.79205,-34.373825,27.505066,76.994545,6.35 1210,-8.826773,463.56137,37.35841,93.23709,5.968 1210,626.6898,488.34393,20.34784,45.698486,5.847 1210,491.8813,134.34709,29.146912,72.06213,5.806 1210,499.10223,213.87831,19.580627,36.998657,5.731 1210,-5.3832746,-17.922556,17.799374,44.45206,5.7 1210,479.25113,139.39693,28.779388,77.08516,5.695 1210,425.71353,208.27377,21.70987,46.903015,5.687 1210,-6.176989,489.03058,18.243244,43.122375,5.614 1210,409.9373,-20.582172,19.212769,44.044365,5.6 1210,203.24152,195.73428,32.010773,51.954834,5.563 1210,-16.811987,-63.749176,55.165962,144.2307,5.551 1210,-5.437578,217.33792,19.242685,44.679626,5.432 1210,10.276685,210.62653,56.737812,100.68048,5.423 1210,500.3061,206.54662,29.410461,54.22609,5.386 1210,-10.5401325,-31.892921,29.056923,72.69278,5.296 1210,-73.15282,265.38318,201.01904,461.97253,5.293 1210,-5.4556537,136.25589,17.522503,43.783463,5.246 1210,612.79333,455.25772,39.477783,106.99124,5.223 1210,448.08163,208.61485,21.715881,39.005768,5.198 1210,467.3783,204.94582,40.773132,74.19801,5.162 1210,112.144775,196.90585,20.983917,40.69684,5.158 1210,626.9431,-20.743755,17.851807,50.541363,5.133 1210,402.07428,-18.913057,19.182281,42.658356,5.127 1210,529.4419,226.59737,21.957092,42.512924,5.093 1210,508.54633,213.38855,29.709229,55.928467,5.082 1210,625.5256,206.90666,19.293457,46.38144,5.046 1210,583.1446,413.66757,71.42377,174.78726,5.03 1210,623.6244,288.3585,26.7594,75.00745,5.022 1210,245.49959,202.21896,12.637924,22.18927,4.96 1210,235.80042,215.29921,18.358963,31.967316,4.927 1210,523.847,119.64212,32.070374,89.458496,4.915 1210,482.35693,206.69322,41.8396,70.445816,4.874 1210,407.5171,204.1932,12.254608,22.453888,4.867 1210,535.8147,311.11423,144.49414,341.3561,4.853 1210,452.8491,202.81937,38.97101,78.11392,4.823 1210,-21.623247,401.7341,78.71868,175.69534,4.821 1210,437.19144,202.9506,30.305084,60.567062,4.802 1210,614.50244,225.87418,26.270935,66.56479,4.792 1210,458.13187,206.32709,19.594757,35.055527,4.764 1210,280.80173,221.88661,21.507904,34.651993,4.764 1210,435.58698,203.41484,15.487396,24.158295,4.746 1210,348.14758,205.95395,15.979248,28.688751,4.74 1210,623.9597,254.4355,26.649902,77.801315,4.727 1210,357.10773,205.3147,15.587433,28.69638,4.717 1210,305.045,215.73953,21.654053,32.68506,4.709 1210,41.50379,198.0576,57.67321,95.96205,4.703 1210,227.41255,203.60397,17.08957,28.791214,4.7 1210,403.86044,-20.560047,31.429352,64.017,4.686 1210,476.27655,210.87636,17.306274,33.440933,4.681 1210,152.03235,199.65211,24.196259,40.232803,4.661 1210,533.37274,211.17847,30.926025,62.009033,4.655 1210,493.64883,229.30774,237.4418,513.1903,4.64 1210,429.12616,204.71788,13.15863,21.884415,4.636 1210,490.4863,-181.76689,235.96622,425.6091,4.622 1210,484.15863,210.14894,15.737305,33.256912,4.606 1210,275.21924,211.41171,31.59729,53.300934,4.605 1210,197.08678,187.13461,29.86821,48.696396,4.588 1210,62.605522,226.0096,24.887825,45.32643,4.588 1210,405.84506,209.09857,30.92514,64.98724,4.555 1210,219.08356,215.33894,19.49356,31.356903,4.55 1210,410.53778,-15.60112,58.848267,115.48944,4.518 1210,603.08307,-57.53202,52.553833,139.68504,4.509 1210,128.01062,212.70203,22.567932,34.564392,4.492 1210,254.60153,205.33841,15.160461,27.251389,4.478 1210,398.2535,204.09578,12.400482,22.28267,4.461 1210,5.3120756,112.92955,30.586758,68.34787,4.445 1211,136.34726,197.0285,24.049164,53.455826,17.115 1211,460.13068,210.40639,29.341125,63.432297,14.134 1211,-0.4940939,216.23778,28.720592,67.9456,12.9 1211,472.10648,211.4122,23.260895,48.52307,10.448 1211,476.4892,211.09305,30.836823,64.52881,10.025 1211,48.16053,200.9572,25.784637,47.416016,9.12 1211,68.25404,191.62987,30.01683,54.871475,8.991 1211,449.5318,215.29655,23.750488,44.54915,8.633 1211,432.48257,213.58873,21.538788,32.62712,7.213 1211,617.71454,117.42895,24.847656,90.56541,6.789 1211,217.74051,197.18317,20.526215,35.491318,6.625 1211,194.06299,191.66862,33.25418,55.349503,6.564 1211,427.3021,206.36111,19.023865,27.307007,6.371 1211,442.01968,214.21068,21.83377,38.340088,6.302 1211,464.75858,209.0047,19.94162,36.327927,6.263 1211,626.9875,-17.65708,17.080872,45.947002,6.204 1211,-12.088571,-42.473892,40.451775,102.23593,6.14 1211,-5.860741,489.7937,17.778402,41.436462,6.05 1211,-11.990842,477.49548,28.993038,64.01898,5.994 1211,622.4691,-32.82657,26.795776,74.57839,5.834 1211,444.67236,224.9732,33.927826,57.229523,5.746 1211,-8.662226,463.64,37.32997,92.914,5.712 1211,542.66925,125.09834,26.634216,74.21927,5.642 1211,521.71204,217.72336,33.77472,70.74066,5.585 1211,108.44946,185.90808,27.387344,54.96393,5.561 1211,380.7447,200.26595,16.65155,29.908142,5.5 1211,208.45758,195.24861,23.431732,39.311157,5.41 1211,236.34695,205.13219,14.791016,28.3087,5.373 1211,621.69214,477.65875,29.1156,67.22583,5.365 1211,-73.27332,265.11057,201.20953,462.6724,5.333 1211,153.59415,185.68135,19.162674,41.474854,5.309 1211,0.11797547,245.98859,23.499899,45.432373,5.172 1211,-6.0271626,-17.022886,17.949604,43.063034,5.079 1211,491.3235,215.44568,31.298706,63.983795,5.048 1211,602.6485,-57.489254,53.89453,137.55069,5.007 1211,619.979,-16.795845,17.251892,41.06499,4.995 1211,582.8936,412.80908,71.769775,175.16296,4.977 1211,435.24182,203.09837,15.445557,23.71634,4.957 1211,363.2719,210.05476,18.34372,29.802063,4.945 1211,529.619,203.5184,42.486572,82.66086,4.925 1211,10.706749,193.49779,56.26432,96.45778,4.873 1211,421.53857,198.30638,13.236053,21.765366,4.856 1211,226.67213,201.6035,17.28415,32.218872,4.852 1211,536.1248,311.6927,144.1225,341.17535,4.772 1211,465.23108,197.04419,19.437805,30.802505,4.756 1211,498.04224,204.9809,43.111816,79.267395,4.745 1211,-21.530706,401.55145,78.613716,175.67725,4.744 1211,459.19952,207.12344,18.639862,30.00824,4.743 1211,52.641953,188.38766,39.191986,71.610565,4.729 1211,490.14423,-182.37251,236.14594,425.9947,4.699 1211,442.55344,-16.076694,58.805206,113.91147,4.688 1211,350.11554,119.509094,31.271912,64.07843,4.651 1211,-5.1433096,217.61975,18.686977,45.734253,4.646 1211,397.63504,197.7167,13.892517,28.93924,4.606 1212,491.12155,212.03459,21.284088,46.30635,63.953 1212,120.32337,199.73662,22.35067,52.016174,56.963 1212,514.5508,221.65025,30.796875,63.29692,12.454 1212,307.4746,209.45639,18.807404,41.314377,11.169 1212,489.40262,204.64621,19.09842,35.501877,10.387 1212,442.98273,205.77852,19.826782,35.219666,9.579 1212,449.46255,212.21661,21.98108,33.64917,7.03 1212,458.09247,214.2476,20.199402,31.102142,7.018 1212,597.78284,238.13232,30.76709,69.49237,7.012 1212,616.6891,234.33713,21.18518,50.33011,6.678 1212,41.292572,194.31485,22.472725,44.819656,6.308 1212,-5.8592815,-18.484417,17.582424,43.094116,6.304 1212,626.63055,488.36087,20.549866,46.040436,6.198 1212,107.90617,199.29248,22.45781,43.97534,6.153 1212,426.13065,203.03317,22.254028,40.190247,6.13 1212,505.8521,200.65593,19.086975,35.811096,6.129 1212,503.35376,211.27765,22.505981,40.353516,6.128 1212,496.33887,202.49396,20.409058,37.127533,5.919 1212,-12.050882,477.8894,29.074554,64.14703,5.852 1212,582.1538,227.75046,40.756897,91.118225,5.768 1212,-8.595612,464.61346,37.224174,92.35321,5.747 1212,-11.219741,-32.054245,29.127151,71.30668,5.692 1212,-16.618837,-63.485424,55.235893,144.7496,5.683 1212,467.05173,211.16502,15.072266,28.585037,5.64 1212,258.8865,223.38048,20.38446,31.400436,5.598 1212,-6.1090517,489.8304,18.026081,42.25064,5.582 1212,425.57,-17.304478,18.930237,40.033306,5.46 1212,98.25102,199.46873,22.143127,37.884888,5.453 1212,355.03433,-18.511433,18.395111,44.244095,5.318 1212,484.9018,202.332,15.320831,27.035202,5.315 1212,313.57812,217.99939,21.810852,40.33304,5.313 1212,-73.189384,265.0583,200.9249,462.88654,5.277 1212,612.8371,455.88043,39.572937,106.16907,5.258 1212,394.8095,203.27647,20.021606,35.954697,5.255 1212,611.05664,-48.207306,41.522034,100.83897,5.246 1212,451.86856,204.68483,14.275116,25.149551,5.22 1212,179.00175,187.11533,33.460037,51.82866,5.215 1212,361.88116,-19.802,19.311737,43.628536,5.202 1212,583.0897,413.29593,71.46594,174.63425,5.188 1212,627.13007,-17.676739,17.115479,46.026894,5.108 1212,237.44011,195.58168,13.8965,25.817139,5.068 1212,380.20023,198.2099,18.131653,25.004501,4.999 1212,465.62097,227.54707,20.557678,32.597946,4.937 1212,485.60257,207.88503,35.6127,66.9492,4.934 1212,127.12216,212.37975,21.796951,42.577057,4.863 1212,244.88339,196.75291,14.33905,25.77275,4.839 1212,536.0093,310.47003,144.34375,341.9101,4.803 1212,434.99402,202.94096,19.817322,35.479156,4.771 1212,437.49942,125.373825,28.384033,81.89244,4.754 1212,545.9452,227.56152,43.13806,82.43286,4.744 1212,-39.773346,367.6469,109.86666,274.41565,4.729 1212,386.13538,198.35713,18.97873,31.373917,4.72 1212,594.5422,135.76833,20.620056,43.665207,4.706 1212,493.84912,228.16663,236.8598,515.15985,4.694 1212,397.89078,-32.67051,28.971405,65.83154,4.69 1212,420.6967,210.48723,31.767944,52.633896,4.685 1212,-3.8444412,213.60284,17.361382,45.46396,4.648 1212,229.17885,193.9072,14.840637,27.911514,4.634 1212,490.55658,-182.32758,235.763,425.87283,4.633 1212,418.2332,-17.04726,19.125488,39.22684,4.595 1212,473.64514,218.43085,21.324646,35.454468,4.582 1212,-17.998146,433.9956,55.116768,143.41138,4.535 1212,562.5068,230.00385,43.28479,85.49957,4.527 1212,-15.261617,175.92209,50.390095,125.69382,4.513 1212,435.11267,208.46945,32.567352,51.48465,4.509 1212,514.181,198.11295,19.366089,37.59778,4.509 1212,373.11066,-33.065655,29.355743,67.104866,4.499 1212,386.17792,-18.681776,19.250702,39.016205,4.497 1213,486.48618,214.61682,23.698639,56.006287,81.395 1213,91.56717,203.38455,26.985527,49.583557,45.467 1213,422.84363,222.98987,26.41925,45.164642,9.588 1213,434.70288,205.40257,19.088013,41.409195,7.81 1213,83.34176,178.24098,41.569435,76.13097,7.648 1213,503.89523,217.34468,21.284027,40.525253,7.451 1213,-5.4709616,-18.95837,17.531929,43.128456,7.327 1213,483.8406,212.82599,18.647491,36.330414,7.216 1213,458.94202,224.29613,18.682556,29.059738,7.181 1213,466.09857,222.54861,19.154297,30.82164,7.036 1213,284.75458,229.11745,31.672241,63.337784,6.935 1213,575.35266,238.43254,33.9032,72.45039,6.745 1213,627.2642,-17.178066,17.24823,46.196526,6.287 1213,622.8466,-33.9205,26.462158,76.10432,6.238 1213,363.57056,204.35226,17.752869,26.8434,6.221 1213,443.27957,208.73264,17.132965,34.714355,6.13 1213,1.034894,184.88013,24.747108,67.17786,6.129 1213,-3.807962,185.0202,17.779184,43.463974,6.042 1213,-8.657368,464.06955,37.48876,93.482025,6.0 1213,-10.954013,-30.928574,29.258114,69.6698,5.936 1213,-16.96587,-64.3212,55.04168,142.40495,5.902 1213,450.657,222.68825,19.59549,30.914246,5.874 1213,621.7893,477.4229,28.770386,67.01404,5.775 1213,-6.1596985,489.62717,18.461515,41.623016,5.758 1213,542.49316,187.95593,29.39331,57.03636,5.682 1213,279.9839,117.61067,22.584503,45.392822,5.641 1213,434.25647,213.97885,31.768585,53.708008,5.581 1213,234.68459,232.71767,20.19841,34.81508,5.57 1213,476.66745,212.58925,15.978088,30.237106,5.531 1213,369.96228,200.28297,19.571686,30.730179,5.531 1213,331.18375,221.31682,29.653229,52.656235,5.482 1213,123.87312,196.56438,18.618073,31.858383,5.476 1213,45.60739,184.7464,29.62136,63.890076,5.411 1213,436.78088,199.46364,15.211456,30.991898,5.402 1213,421.21466,197.31013,15.729279,30.488663,5.333 1213,583.01886,413.31674,71.58386,175.07358,5.21 1213,-72.91466,265.27307,200.23297,462.68152,5.187 1213,30.326645,189.82976,28.950127,60.380157,5.122 1213,-4.380768,199.783,18.25224,51.12593,5.081 1213,-3.8086486,97.496414,16.972387,49.915024,5.07 1213,269.80066,111.71285,29.361572,64.611305,5.063 1213,495.40186,213.0147,20.451904,41.33441,5.051 1213,444.68774,199.465,13.853241,29.430222,5.037 1213,259.05624,114.517075,19.12326,42.47975,4.994 1213,217.94542,222.99689,20.307175,34.994293,4.958 1213,602.53864,-55.155373,53.240417,135.7969,4.906 1213,330.72064,-16.591063,17.431702,39.383137,4.881 1213,536.01715,310.66235,144.4242,341.61652,4.866 1213,468.36136,212.57301,14.9887085,28.65712,4.834 1213,403.1085,165.07268,17.132874,33.43109,4.818 1213,-21.571716,402.4221,78.89082,175.17007,4.811 1213,402.00638,191.70523,17.063416,34.64145,4.798 1213,356.27393,205.40819,17.420044,26.227646,4.795 1213,201.89651,-18.325308,18.43982,44.077015,4.787 1213,476.14325,218.95947,20.412842,38.24832,4.77 1213,309.02805,208.94022,29.938293,56.444,4.767 1213,427.46777,206.17331,19.23816,42.318436,4.763 1213,452.3444,211.42615,14.986786,30.52266,4.721 1213,494.26294,228.60153,236.77966,514.27954,4.708 1214,456.40448,208.15173,31.724426,73.4563,90.029 1214,36.46341,197.24222,33.320465,60.040802,80.977 1214,287.65106,207.4335,21.739502,38.675583,20.209 1214,401.77585,198.12254,20.448761,50.97583,16.292 1214,327.2876,196.36623,21.529785,30.619583,11.037 1214,47.260048,203.90384,35.52285,57.226288,10.683 1214,399.05536,201.44873,28.487946,76.03888,10.018 1214,405.7232,223.01045,33.97461,68.75899,9.068 1214,23.240463,199.80574,34.507103,62.339493,8.037 1214,387.7115,198.75099,18.753784,41.81836,7.243 1214,479.31473,216.31044,24.002838,47.72502,7.089 1214,285.15918,213.9922,27.375763,62.149582,6.874 1214,441.4754,220.98547,21.069733,38.70694,6.454 1214,130.33067,205.1704,22.610687,44.455643,6.351 1214,-8.788317,465.50403,37.706203,90.98602,6.316 1214,345.85938,196.72186,20.753479,44.254105,6.279 1214,419.78394,209.32614,34.091034,74.37326,6.232 1214,-6.4041424,-16.90947,18.844242,43.01277,6.188 1214,132.18404,207.62448,30.347824,66.87436,6.15 1214,626.69366,488.61142,20.440735,45.46158,6.063 1214,-6.432107,490.0644,18.984226,40.91095,6.062 1214,-11.713872,-31.653593,30.564465,72.87978,5.862 1214,457.83096,206.15662,22.324097,46.77867,5.743 1214,408.13794,208.48018,20.780365,46.877808,5.732 1214,258.8777,200.38203,18.495636,40.41391,5.653 1214,627.1215,-18.780714,17.455444,46.776253,5.631 1214,-16.617142,-63.04139,55.491177,144.5824,5.576 1214,622.6777,-33.5568,26.87909,74.53223,5.548 1214,366.2656,166.23033,28.377533,59.639328,5.413 1214,-5.133021,217.05042,17.209057,37.432755,5.355 1214,498.03595,202.42421,19.003479,34.028824,5.318 1214,-72.79116,265.11853,200.53302,463.55566,5.291 1214,-14.812956,184.45856,52.378754,122.93506,5.25 1214,613.04266,455.31488,39.42267,107.21179,5.184 1214,394.88904,198.58102,18.976807,41.01375,5.182 1214,471.30048,208.95975,22.35617,49.854095,5.164 1214,-4.748949,137.81241,18.10623,46.647263,5.061 1214,324.39426,205.87572,16.981812,31.133163,5.012 1214,5.01865,197.44296,39.050682,77.6481,4.995 1214,436.70728,221.2158,30.965271,65.61476,4.957 1214,316.71045,201.42839,16.678833,28.95076,4.939 1215,434.4263,213.06076,37.76718,80.85425,90.484 1215,287.98123,206.69235,23.098358,48.68872,71.189 1215,3.9210272,198.53429,33.523678,73.912766,57.621 1215,399.99237,214.10376,40.857117,86.96912,13.376 1215,618.3524,65.5717,19.782837,46.50731,10.285 1215,15.5619335,202.69273,32.545593,75.2184,10.213 1215,294.87155,202.43832,21.740631,37.70079,8.981 1215,285.2051,221.24759,29.256073,56.252197,8.269 1215,36.909355,195.53687,31.392708,69.26965,8.131 1215,374.09595,205.33379,27.222107,47.20674,7.928 1215,210.91402,198.48318,31.855011,60.308197,7.368 1215,-5.687018,-17.01359,17.763044,43.28899,7.286 1215,440.7108,209.18463,23.538422,59.310913,7.06 1215,-6.4041924,207.92798,36.84686,95.39432,7.016 1215,388.24826,208.68489,32.43457,64.26439,6.977 1215,389.73956,84.42458,27.91745,93.9802,6.694 1215,-11.228228,-32.609608,29.420736,72.86488,6.538 1215,338.92227,133.7926,32.104095,68.178314,6.252 1215,388.68982,227.18378,38.824677,80.52997,6.2 1215,627.75275,-18.550089,16.830444,46.67467,6.194 1215,-8.785443,464.50958,37.503376,92.85535,6.053 1215,355.69797,205.9336,20.14679,35.890854,5.965 1215,117.47936,77.237854,30.045586,58.72824,5.93 1215,626.18097,487.97528,21.246399,46.47754,5.867 1215,623.05994,-33.866177,26.292236,73.789024,5.858 1215,455.64423,213.4567,22.673279,54.03708,5.801 1215,-6.062742,489.6043,18.254461,41.586426,5.756 1215,278.0341,194.65456,38.486267,69.22783,5.73 1215,420.81058,224.35876,35.923065,75.38489,5.708 1215,304.65268,200.84955,20.454712,35.275635,5.678 1215,612.82227,455.42444,39.703674,106.802795,5.636 1215,241.41649,233.46689,32.75386,63.365845,5.597 1215,625.3385,57.700836,17.74353,49.397705,5.574 1215,-17.902086,-63.964455,56.61589,146.51488,5.528 1215,602.3896,-55.640682,53.48822,139.86633,5.519 1216,403.10257,213.90572,61.12256,129.6621,65.074 1216,305.18137,204.64487,20.976929,49.344574,16.856 1216,272.09335,201.78465,20.091858,30.49736,12.411 1216,417.93073,212.50365,32.81009,69.91478,12.127 1216,408.30823,208.43582,30.78006,82.388,9.699 1216,338.6514,199.13866,19.043793,40.835342,9.124 1216,152.78453,224.2925,22.720688,42.423386,8.483 1216,392.56808,67.834045,26.341064,89.90814,8.437 1216,309.2989,204.60707,26.904083,70.31529,7.607 1216,345.37598,201.22285,20.236633,39.29184,7.272 1216,312.9642,204.05751,19.034271,44.107132,7.19 1216,324.40402,197.85619,16.236298,31.682678,7.14 1216,372.05072,79.48991,17.983124,40.46218,6.97 1216,-5.6185555,-18.565372,17.489578,44.375366,6.704 1216,378.29877,78.18481,18.665192,44.489334,6.632 1216,296.02475,206.74263,25.73404,60.05217,6.45 1216,398.36517,207.88477,29.9794,66.37311,6.431 1216,390.5183,217.15892,23.678833,42.738907,6.404 1216,-5.779296,489.4607,17.973095,41.489075,6.376 1216,354.21124,199.0821,17.533173,30.036896,6.333 1216,324.8211,114.59183,32.170227,59.522797,6.256 1216,315.85214,216.97379,27.823578,69.71936,6.253 1216,315.63403,196.78934,16.629272,32.861877,6.073 1216,260.80847,194.31438,19.751007,32.319656,5.963 1216,159.7101,216.88368,23.113327,43.05751,5.894 1216,200.04793,237.33466,25.859116,38.297974,5.875 1216,-8.983367,464.18713,37.64398,93.041016,5.815 1216,627.04706,-16.485312,16.774658,47.781513,5.795 1216,410.73166,205.23605,21.279266,43.357025,5.769 1216,-17.818539,-62.99978,57.023754,142.46432,5.723 1216,179.72426,200.53055,32.729538,58.434753,5.721 1216,280.37436,201.58382,18.062805,29.383987,5.707 1216,449.75262,223.37093,34.400513,51.054398,5.685 1216,199.16705,234.91055,36.146667,62.257507,5.567 1216,-10.987255,-31.55162,29.128222,71.453835,5.541 1216,613.0967,453.8105,39.179565,107.578186,5.537 1216,428.92346,207.49698,29.578491,61.354065,5.53 1216,-11.237255,174.87445,30.440912,70.32533,5.52 1216,138.20953,226.40898,21.520721,39.510788,5.482 1216,183.57826,202.20464,24.647018,34.562546,5.423 1216,-72.58625,264.7525,201.37503,464.03595,5.356 1216,4.760697,180.06473,30.078587,54.542114,5.351 1216,332.14862,201.92989,17.130798,29.531128,5.346 1216,389.7791,225.32831,49.18683,100.38434,5.312 1216,146.10779,217.36522,22.789383,41.44368,5.219 1216,440.4385,212.68039,22.780823,41.14003,5.193 1216,3.4801102,64.61484,31.76595,76.26805,5.153 1216,300.9414,201.65446,17.582367,33.197495,5.081 1216,151.89764,208.86786,24.335861,41.638306,5.07 1216,58.16198,-20.72465,18.953285,44.35154,5.035 1216,626.4126,487.6216,21.08496,46.30716,5.014 1216,583.4057,411.3918,71.33978,176.50632,4.973 1216,611.6902,-49.22903,40.578735,104.21487,4.972 1216,146.29596,234.48338,22.424438,38.864,4.942 1216,-5.8348246,83.07332,19.317623,49.00038,4.903 1216,-5.3936214,180.70366,18.439816,39.392242,4.876 1216,-21.495218,402.30438,78.87229,175.65326,4.87 1216,356.70346,212.09459,39.60672,67.5504,4.858 1216,-40.50271,363.1831,110.949104,278.84155,4.852 1216,536.4014,310.48553,144.40399,341.52826,4.846 1217,389.44095,207.46582,45.694275,104.84839,96.205 1217,27.73842,203.4047,39.639236,86.664764,85.94 1217,374.1429,200.67917,24.582367,58.914673,53.794 1217,319.91763,189.18568,27.640076,71.49632,18.471 1217,288.4543,202.65273,21.181122,31.75325,15.251 1217,475.45578,201.00482,30.084686,88.32703,14.011 1217,199.44977,200.84583,24.92012,36.893692,13.657 1217,380.01324,205.36479,30.112305,69.95735,9.805 1217,357.6283,202.05132,34.611694,87.78258,9.527 1217,134.47008,220.55414,25.858261,44.82776,8.923 1217,152.22607,221.51663,22.696136,44.775604,8.55 1217,553.697,191.30836,21.296875,44.17404,8.317 1217,418.81995,220.2062,33.03067,55.989502,7.774 1217,-8.856335,201.67487,37.257893,93.67679,7.52 1217,322.8975,193.02832,21.190674,40.97911,7.484 1217,404.52588,208.87721,55.57663,114.804184,7.086 1217,461.25424,203.03354,67.529144,165.2875,6.955 1217,-5.2377625,-18.489508,17.050919,44.8586,6.87 1217,362.68658,199.04211,22.703156,49.354614,6.831 1217,345.62518,194.90741,20.756958,34.88646,6.596 1217,457.8017,21.651619,29.888855,79.5327,6.59 1217,117.67513,215.74686,31.59629,67.907074,6.565 1217,143.50905,227.9582,23.837128,45.320908,6.544 1217,324.90112,196.75372,34.747375,79.3797,6.515 1217,16.85093,206.88264,55.48829,132.6627,6.504 1217,627.067,488.5201,19.997498,44.806,6.318 1217,392.61328,202.27943,24.653992,60.735397,6.272 1217,612.78876,454.53732,39.837463,107.09122,6.26 1217,384.42645,198.9451,21.681763,47.232162,6.163 1217,104.731415,219.0351,23.961227,45.031647,6.149 1217,-12.404881,-42.994545,41.404945,104.031815,6.142 1218,476.7682,204.59392,27.058746,60.996353,94.911 1218,347.86392,197.27345,52.43216,115.195145,82.561 1218,240.41315,195.9983,22.663818,39.371964,28.928 1218,117.38796,201.50711,36.485268,90.13602,26.964 1218,123.427086,205.43051,26.42292,49.566086,23.275 1218,351.60504,191.25662,32.31305,74.4603,11.641 1218,126.3584,201.13803,45.963104,108.61368,9.104 1218,328.9589,193.47256,22.208832,37.843445,9.101 1218,588.64734,186.3859,16.133606,30.576538,8.869 1218,103.57065,204.66806,39.501923,99.80859,8.136 1218,464.74063,201.9142,29.458282,60.546677,8.129 1218,529.0717,214.35306,33.855957,51.653503,8.015 1218,147.77301,202.7759,37.775238,96.24022,7.471 1218,385.51968,68.75133,32.67749,65.22978,7.078 1218,612.89,452.75632,39.527527,108.94559,6.988 1218,362.42505,249.66638,41.450806,68.00879,6.851 1218,392.88098,189.76006,22.282593,33.538223,6.247 1218,627.43024,-18.410322,17.055786,48.284214,6.222 1218,-17.709562,-64.459785,56.75802,149.34377,6.189 1218,129.34518,208.25449,33.996872,65.03146,6.125 1218,378.54694,56.856197,30.301636,64.78189,6.039 1218,401.7705,191.97469,20.270172,32.268356,6.018 1218,592.08167,179.10956,18.50769,32.63777,6.009 1218,626.5237,488.63855,20.852722,44.604614,5.997 1218,378.0499,197.28294,55.61496,127.30617,5.988 1218,409.4107,253.28456,31.073273,79.19621,5.885 1218,143.31422,232.53577,25.439209,46.43976,5.817 1218,130.80548,270.64474,33.29532,58.35257,5.815 1218,580.22284,191.91945,16.445251,30.626434,5.773 1218,-6.1316466,488.9466,18.64189,42.124207,5.674 1218,-8.7676735,464.8248,37.407486,92.927765,5.669 1218,557.42645,197.13594,11.226379,19.59494,5.656 1218,108.833755,213.6529,52.65674,131.80725,5.64 1218,602.52405,-56.315277,53.32831,144.20358,5.503 1218,-11.187262,-33.01959,29.392023,74.51296,5.495 1219,240.89365,210.7837,45.612976,134.58275,92.518 1219,567.52167,205.21382,27.311646,55.68434,73.489 1219,210.97472,209.12,41.144363,113.658325,71.28 1219,367.85992,189.02922,23.373444,42.169006,33.387 1219,271.037,196.52664,23.885864,40.817505,17.662 1219,439.48474,192.03874,21.396332,42.612305,17.541 1219,563.2067,221.15428,21.89679,41.274338,14.146 1219,225.52176,205.70584,44.08307,127.475006,10.703 1219,215.06363,206.18127,26.492752,73.114746,10.081 1219,425.4107,94.61105,33.72336,72.22839,9.705 1219,621.14984,179.4513,13.995361,32.969864,8.997 1219,148.31036,246.72858,27.573273,35.709595,7.809 1219,556.24396,225.99608,20.027222,35.072342,7.725 1219,580.79504,211.53119,24.25354,47.25656,7.441 1219,180.32831,221.8757,38.404877,102.35654,6.948 1219,626.5945,488.19666,20.769958,44.996094,6.926 1219,456.89862,193.34326,21.54422,44.647964,6.827 1219,130.9283,251.06755,42.836166,89.62001,6.774 1219,436.82162,90.34194,26.725494,52.80033,6.75 1219,114.53278,249.72081,42.242363,89.19374,6.68 1219,622.40076,-32.53586,27.157349,74.86167,6.644 1219,563.0079,200.0849,20.924622,39.556137,6.56 1219,613.00836,453.53604,39.697876,108.41696,6.499 1219,513.724,224.81215,32.96051,48.063828,6.237 1219,205.699,224.12819,31.49292,85.15846,6.219 1219,-17.845566,-64.7263,56.423584,151.383,6.147 1219,147.43456,236.80731,40.310486,91.81543,6.067 1219,106.47445,301.29843,35.98678,61.05597,6.023 1219,588.8761,194.88676,12.0460205,23.100388,5.976 1219,447.67468,192.10483,20.840942,44.176224,5.962 1220,283.552,205.17519,43.240234,100.45363,89.206 1220,71.333374,207.02353,54.285355,134.78247,49.585 1220,616.7278,204.68573,22.096619,59.787598,19.529 1220,76.57933,208.45747,35.339966,76.36891,15.419 1220,445.7585,196.28683,18.888458,42.56328,13.918 1220,361.18237,196.27597,20.41388,38.69008,12.29 1220,113.44351,230.62985,42.545,108.22104,11.172 1220,434.86212,100.25214,32.66626,68.590515,10.191 1220,93.935555,216.91222,46.126472,121.67229,9.71 1220,242.7907,265.74402,29.339096,70.623566,9.457 1220,88.77041,220.25548,36.592278,81.475235,9.451 1220,369.99554,198.76396,20.213257,35.874588,8.643 1220,622.63477,209.52077,24.219482,71.45732,7.972 1220,577.821,215.62025,35.425903,50.274582,7.536 1220,286.15936,208.77385,30.366577,61.28514,7.483 1220,445.95398,195.97673,27.884949,63.833908,7.398 1220,622.4863,-33.292553,27.228638,73.40522,6.954 1220,522.2889,228.90965,33.377808,47.17549,6.948 1220,131.67113,239.58232,41.67296,101.56157,6.824 1220,618.7814,199.44353,18.275757,37.48094,6.815 1220,469.62677,192.58002,27.659637,78.80734,6.796 1220,148.24034,256.384,27.355759,33.530487,6.683 1220,457.21545,198.79607,19.148834,44.68425,6.571 1220,439.71057,97.740135,25.117645,36.475502,6.521 1220,163.59283,248.03775,39.81711,94.45349,6.499 1220,147.56645,246.11877,40.101517,96.10547,6.456 1220,-6.113255,488.48938,18.841139,43.858032,6.405 1220,621.6624,477.11853,29.593567,66.54724,6.359 1220,49.345474,214.23395,58.06022,143.27045,6.214 1220,626.8917,-19.393793,18.10431,47.57263,6.033 1220,-17.838757,-65.476326,56.181694,151.47476,5.885 1220,597.4611,204.51195,12.149109,20.910797,5.834 1221,346.16144,201.1912,40.825012,93.96091,95.286 1221,277.5338,200.3713,24.108154,41.411804,31.101 1221,241.915,258.2316,31.71077,70.90753,12.25 1221,337.5224,195.22119,21.311218,43.77971,11.063 1221,377.47363,201.04929,17.82956,32.951965,10.131 1221,445.58978,197.24907,18.425873,41.28444,9.533 1221,157.35382,245.65405,28.888428,39.890198,9.427 1221,343.28174,197.26918,29.70459,68.9348,9.126 1221,434.59753,102.19226,32.843506,66.29608,8.805 1221,353.6046,196.0998,21.63861,50.904877,7.772 1221,361.72696,198.00374,20.083038,45.281876,7.29 1221,469.22363,189.92996,28.703491,83.46304,7.24 1221,622.5072,-33.222794,27.115479,73.80423,7.08 1221,522.5023,229.8157,33.012085,45.889038,6.962 1221,155.16684,252.88824,33.28357,58.623596,6.934 1221,628.8571,178.68051,13.907227,34.762558,6.863 1221,445.39392,197.01617,28.797974,66.66925,6.689 1221,622.34064,183.58069,12.560059,26.807327,6.676 1221,621.87006,199.57184,25.994385,76.80994,6.646 1221,308.68436,203.81313,39.691315,81.46614,6.613 1221,621.58746,477.07773,29.79657,66.30209,6.44 1221,131.71599,251.11943,41.067505,88.519,6.411 1221,371.00967,202.81097,18.968658,40.345184,6.331 1221,626.8304,-19.144957,18.016663,47.333427,6.193 1221,597.2313,196.25687,12.497131,21.261368,6.101 1221,-17.911121,-65.36359,56.27129,151.3588,5.956 1221,582.91113,209.29239,34.073975,52.14691,5.933 1221,66.81649,85.144455,36.45797,70.59924,5.929 1221,164.35727,253.47787,38.18828,82.98239,5.765 1221,140.41646,238.72748,33.78961,62.193237,5.739 1221,147.44804,270.30402,33.248978,61.89395,5.695 1221,-8.982441,463.9477,37.672165,93.09625,5.638 1221,516.1559,-32.14245,30.063354,68.2376,5.634 1221,-5.737562,282.7592,19.754292,42.209534,5.621 1221,-5.925508,488.33514,18.850697,44.025635,5.616 1221,223.2538,244.39763,30.741943,69.06557,5.564 1221,-5.4750767,-17.15968,17.118279,41.555565,5.491 1221,456.75906,96.63516,21.376434,35.03531,5.471 1221,114.68777,245.57799,41.516853,92.42531,5.468 1221,617.8707,194.43916,21.864746,54.410156,5.387 1221,603.38025,429.67615,56.81781,144.05505,5.37 1221,197.15479,238.19296,37.084885,85.96677,5.346 1221,621.39825,192.15865,15.064453,31.857224,5.32 1221,450.42453,93.3845,32.889404,56.902245,5.287 1221,457.0298,194.14423,19.835144,43.20146,5.099 1221,98.85989,233.82385,34.653503,63.34613,5.09 1221,533.5883,235.99219,24.548218,32.783173,5.078 1221,180.70782,251.34828,37.390152,83.670944,5.065 1222,404.95663,207.51773,36.685852,85.00778,92.196 1222,324.2572,198.77711,19.759064,38.44713,43.11 1222,277.50745,199.75826,22.808258,41.11267,21.507 1222,371.18054,199.35104,20.168396,36.29387,18.862 1222,445.95563,197.0427,17.327698,42.27823,15.306 1222,434.15738,101.84732,33.332428,67.44156,8.236 1222,446.48425,196.7767,26.715149,63.91037,7.691 1222,421.65326,215.43503,23.891235,61.813873,7.048 1222,622.45056,-33.366585,27.086487,74.03992,7.035 1222,629.13184,178.1557,13.676086,35.32579,6.949 1222,245.04947,247.97725,30.993652,65.31273,6.844 1222,521.93475,229.0549,34.027832,45.9711,6.814 1222,457.64206,198.25609,18.723297,44.23021,6.795 1222,621.8858,200.3081,25.945007,77.0069,6.767 1222,176.09177,238.04813,24.978088,35.92865,6.666 1222,621.5662,477.17456,29.928894,66.420654,6.396 1222,582.5097,209.32242,34.368958,51.60434,6.336 1222,469.42206,191.341,27.688873,80.047424,6.331 1222,65.52121,78.832306,36.625626,73.35675,6.331 1222,417.3564,201.6741,37.752228,87.76904,6.259 1222,626.86487,-19.314888,18.051392,47.7812,6.251 1222,163.17903,271.3513,31.98558,55.24185,6.163 1222,622.6734,182.98308,12.090942,27.066376,6.094 1222,-17.912487,-65.39528,56.25681,151.39032,5.928 1222,131.19025,269.04608,33.77124,60.683502,5.862 1222,516.13806,-31.40849,29.873047,65.711525,5.818 1222,-8.676213,464.6778,37.489914,91.83844,5.767 1222,147.44554,272.44473,32.896484,58.432465,5.697 1222,-6.084771,488.88297,18.890408,43.302277,5.69 1222,433.2814,204.73897,38.110565,85.064255,5.603 1222,411.93848,206.1524,14.809723,30.962204,5.493 1222,-5.46929,-17.151875,17.111935,41.541187,5.493 1222,123.666214,195.054,14.685699,23.942947,5.463 1222,115.82188,195.0349,15.928398,25.85112,5.404 1222,597.3976,196.5008,11.962585,21.134155,5.363 1222,456.67853,96.98642,21.581482,35.132965,5.331 1222,450.29208,96.88625,32.478302,61.609627,5.324 1222,375.9659,207.54507,36.766693,75.96103,5.281 1222,386.06342,199.64124,16.941833,32.932037,5.271 1222,160.45602,231.1227,23.855347,43.377213,5.244 1222,536.1475,308.8675,145.2395,342.27856,5.239 1222,-73.981285,263.97412,202.33698,464.399,5.229 1222,428.88818,194.37025,14.326202,28.170181,5.226 1222,465.29492,198.13364,18.961609,48.30092,5.173 1222,338.6694,209.36943,41.941193,83.5988,5.156 1222,602.98224,429.2915,57.138367,144.42792,5.109 1222,489.73016,-17.665188,18.977692,41.735054,5.091 1222,625.9883,232.17741,19.279358,50.02733,5.085 1223,449.93454,206.27777,40.086792,77.012085,71.637 1223,370.32666,197.79892,21.700806,37.25096,29.768 1223,320.61734,198.63078,19.273224,35.685257,28.556 1223,278.96268,201.5616,21.65216,37.318604,25.302 1223,442.0314,193.92677,21.56192,50.997513,14.816 1223,434.95755,101.20009,32.376312,68.150665,12.138 1223,198.75461,224.45357,24.461914,42.066025,8.573 1223,421.59103,201.4379,38.79657,81.237885,7.692 1223,621.2906,199.21158,26.428223,78.205414,7.636 1223,628.94507,178.66333,13.955017,34.812256,7.587 1223,622.4649,183.64655,12.494446,26.584015,7.368 1223,457.89798,196.51714,22.7482,61.60579,7.282 1223,456.61502,97.976494,21.222748,34.00506,7.134 1223,622.38885,-33.25173,27.12201,73.90267,7.039 1223,522.29395,228.94014,33.293884,45.42128,6.897 1223,621.6364,477.33197,29.641418,66.28821,6.803 1223,597.4577,196.07689,11.851013,21.39592,6.663 1223,385.45132,198.84561,17.920898,33.752426,6.656 1223,169.6387,231.20396,21.45279,42.522324,6.458 1223,578.7627,216.47313,34.861145,49.96196,6.389 1223,180.83357,213.90263,32.81076,63.98561,6.23 1223,-5.920745,488.89676,18.651352,43.439117,6.178 1223,626.77875,-19.244835,18.062256,47.49005,6.129 1223,474.7095,202.19196,28.914948,70.15576,6.126 1223,-17.928555,-65.32965,56.262787,151.34042,5.918 1223,516.5156,-31.721975,29.492432,66.53232,5.893 1223,621.4161,191.15976,15.244751,32.68489,5.89 1223,439.74637,97.45262,24.384766,35.424576,5.883 1223,-8.849063,464.12323,37.699257,92.13385,5.725 1223,67.464455,86.51111,36.224976,69.745026,5.707 1223,479.36462,218.75252,47.97589,68.42012,5.687 1223,115.25377,193.06052,16.671677,27.396622,5.663 1223,256.9533,236.38654,32.623657,60.879944,5.545 1223,-5.4677773,-17.150038,17.10991,41.548145,5.492 1223,107.7774,191.19302,17.104164,28.92421,5.492 1223,123.638626,193.18208,15.387253,25.699722,5.46 1223,618.744,489.11298,20.715637,43.512268,5.458 1223,239.79633,231.1146,29.863129,60.01416,5.374 1223,309.72324,197.83658,17.27713,34.546066,5.328 1223,617.5558,192.84012,22.59259,55.5159,5.306 1223,535.9769,309.1912,145.1507,342.4791,5.28 1223,497.74072,226.3393,33.907593,46.927917,5.277 1223,489.6809,-17.309776,19.054626,41.316055,5.215 1223,450.10867,94.234055,32.698334,55.872375,5.157 1223,-73.51141,264.51538,201.32835,463.91797,5.147 1224,501.18665,204.93094,33.821167,74.987274,98.705 1224,376.3831,200.52666,20.93457,34.47734,23.542 1224,322.32422,202.40112,19.802826,35.766632,14.189 1224,468.91608,199.44191,36.07428,78.58049,14.159 1224,448.57455,199.10384,21.579712,43.30049,11.722 1224,440.9287,101.10294,32.743652,68.39733,10.142 1224,456.3411,199.47743,22.11139,50.864,9.658 1224,281.54675,207.77321,18.891998,35.46042,8.633 1224,584.24805,215.47772,33.881226,50.694702,7.768 1224,528.92694,228.7326,32.60205,51.304016,7.757 1224,437.54443,194.5644,27.758667,63.364944,7.609 1224,597.4741,202.72798,12.789307,21.514038,7.461 1224,443.6737,197.05632,19.825073,34.98082,7.385 1224,622.3321,-33.003635,27.430786,73.66912,6.939 1224,628.6477,178.82835,14.232544,34.366013,6.801 1224,485.90363,199.56992,32.680725,79.74216,6.786 1224,622.2526,202.09668,25.467468,69.86493,6.508 1224,626.8846,-19.232763,18.028381,47.433006,6.429 1224,383.84,203.47884,19.872498,33.63156,6.403 1224,621.4217,476.6225,29.819519,66.92493,6.329 1224,604.36426,201.4758,12.138184,21.338272,6.263 1224,454.81296,97.087975,22.810028,35.906685,6.243 1224,2.8515756,208.10806,32.9674,54.85907,6.037 1224,273.88037,222.69785,31.818512,66.26959,5.951 1224,189.0106,210.22928,31.014343,67.98181,5.846 1224,76.07074,90.52609,32.980667,68.02548,5.842 1224,-17.930925,-65.47641,56.239906,151.15607,5.818 1224,-8.789222,464.72556,37.489334,91.7493,5.811 1224,-6.240852,489.14096,18.693293,43.313995,5.792 1224,590.7883,202.30846,12.781067,21.94014,5.789 1224,464.38287,201.3768,20.959656,42.775192,5.722 1224,622.0985,189.6456,13.350891,26.274155,5.719 1224,421.83606,208.805,31.68695,83.82825,5.643 1224,449.36252,199.97656,52.82022,105.311584,5.642 1224,290.5824,254.14108,31.637115,73.69916,5.639 1224,480.2835,204.10962,53.9599,104.31818,5.637 1224,513.3134,199.90948,16.335693,29.906937,5.622 1224,-5.476242,-17.160135,17.124313,41.55802,5.473 1224,517.1669,-32.041824,29.624146,65.702965,5.427 1224,499.91266,201.94205,23.570618,50.65509,5.415 1224,490.19226,-17.328997,18.847656,41.723373,5.411 1224,535.8825,309.23975,145.41425,341.37146,5.352 1224,509.80225,204.979,22.763916,49.912292,5.313 1224,511.33987,224.02142,33.144745,58.30249,5.285 1224,491.01447,199.16966,19.523193,36.503998,5.269 1224,618.8357,197.0288,20.582031,48.280197,5.253 1225,560.3729,207.43008,31.082458,66.27432,97.095 1225,377.60007,201.75258,20.621674,32.430115,24.33 1225,465.50632,196.81055,23.874939,46.93509,10.84 1225,594.9745,214.27718,33.571106,54.269363,10.272 1225,442.6735,99.03622,31.381714,69.2053,9.513 1225,323.51352,201.33058,19.381378,34.741165,9.0 1225,432.58044,191.92747,33.702087,92.36626,8.378 1225,550.0369,218.6489,31.858704,58.672028,7.649 1225,534.05597,225.27249,30.451965,50.71811,7.475 1225,488.81158,204.33913,20.721039,35.906754,6.738 1225,478.61005,197.68193,23.165222,36.220856,6.729 1225,622.31836,-33.53762,27.361816,77.25034,6.699 1225,626.8566,-19.886639,17.790527,50.161816,6.654 1225,626.6234,488.75085,20.448608,44.67578,6.395 1225,249.63126,223.85059,22.046051,41.54727,6.36 1225,435.6354,198.5292,18.349731,43.484604,6.354 1225,488.80215,193.2452,21.13443,32.22354,6.334 1225,604.9298,196.86526,13.69574,22.38884,6.279 1225,-6.294962,489.29178,18.746765,42.651825,6.207 1225,460.16943,96.971176,30.983398,69.36374,6.154 1225,394.4867,202.46112,16.841675,29.122513,5.939 1225,242.96051,216.46466,19.805878,38.87059,5.892 1225,612.6513,455.06992,39.71942,107.34885,5.881 1225,574.1411,201.91626,24.83313,49.192932,5.832 1225,-11.743782,477.4254,29.329298,64.11127,5.8 1225,-17.871899,-65.19811,56.203197,151.2583,5.789 1225,467.08652,194.01239,37.477936,88.35553,5.756 1225,298.6922,219.19232,33.83606,68.19946,5.752 1225,75.42959,79.84064,35.13662,70.24591,5.648 1225,321.4879,216.9054,20.928436,36.75618,5.646 1225,314.6921,207.36841,31.356598,59.058258,5.626 1225,450.65463,196.58064,19.570526,44.63472,5.603 1225,99.98498,94.235245,31.879845,67.903946,5.568 1225,384.87524,199.02477,18.627869,31.45015,5.565 1225,457.1475,195.52463,22.988007,44.837906,5.551 1225,597.2822,201.13322,15.204224,24.82637,5.522 1225,442.4078,198.5293,20.291046,45.36499,5.495 1225,-5.4691515,-17.14657,17.11398,41.549137,5.48 1225,277.8117,214.91605,30.898071,55.29721,5.472 1225,516.5215,215.83144,41.88336,77.24776,5.378 1225,570.83527,202.71017,17.368408,28.708435,5.377 1225,417.82565,-16.859478,32.36798,60.95309,5.326 1225,536.37946,308.74792,144.32257,342.74683,5.25 1225,282.65924,204.96489,17.207367,29.894257,5.212 1225,595.275,231.53749,40.774353,98.69945,5.196 1225,614.04755,216.23978,25.406128,46.566986,5.165 1225,310.18094,224.18997,24.893341,42.884308,5.089 1225,602.9699,-57.5411,52.861877,134.7152,5.085 1225,563.0601,203.21255,20.79541,41.207825,5.066 1225,436.41843,-18.483429,32.121002,60.54067,5.056 1225,582.8994,412.2595,71.8775,176.0513,5.042 1225,426.59482,206.99869,53.134003,115.35846,5.035 1225,-72.72507,265.6734,200.51476,461.33508,5.032 1225,252.29434,211.98328,29.870453,62.5719,5.025 1225,524.9901,-32.89487,29.220398,69.71729,5.014 1225,538.6617,204.32632,33.06842,64.095,5.011 1226,615.5526,195.28821,26.624146,74.886444,53.777 1226,378.92758,197.24783,21.001007,33.744186,19.383 1226,279.35342,196.8439,23.772827,44.800934,17.315 1226,599.72955,192.77629,31.237183,66.796585,9.62 1226,-0.53601503,220.57716,24.942026,40.679977,7.438 1226,274.1758,197.29938,21.742432,33.65265,6.98 1226,623.3285,222.4801,20.245728,52.98523,6.932 1226,372.9359,196.26253,30.043762,54.883804,6.855 1226,622.33966,-34.18334,27.438293,76.17524,6.773 1226,307.934,197.42595,31.209076,57.998383,6.486 1226,627.22394,-18.224712,17.296692,46.930813,6.442 1226,314.01654,199.21713,20.575562,38.843704,6.431 1226,602.441,196.05832,21.839355,40.217194,6.284 1226,564.426,178.32646,15.541687,31.172165,6.276 1226,276.64233,189.16525,36.24167,72.73016,6.198 1226,325.42926,199.77603,30.314941,57.21045,6.178 1226,-17.819187,-65.10923,56.27666,151.56909,6.113 1226,604.83203,176.94377,42.958374,117.55342,6.078 1226,624.8608,192.05899,19.667114,54.94432,6.047 1226,626.475,488.40375,20.83545,44.95685,5.882 1226,67.48925,79.22426,35.59455,71.52696,5.703 1226,619.74744,193.45615,18.76184,41.576294,5.682 1226,612.81195,454.5226,39.503235,107.81271,5.673 1226,594.1101,195.04938,22.531555,44.235626,5.633 1226,-12.197435,477.06284,30.06316,64.1185,5.595 1226,610.3582,195.43393,23.311462,46.53038,5.513 1226,-5.4732475,-17.165539,17.090662,41.603405,5.497 1226,307.65228,192.57204,21.180573,40.872726,5.399 1226,322.38464,188.24658,18.283203,32.413147,5.342 1226,-6.230755,489.0033,18.572102,42.954956,5.337 1226,118.46854,71.63647,32.180893,67.24024,5.313 1226,509.59503,193.80798,32.54608,65.02399,5.262 1226,290.68347,194.53877,32.757416,63.100876,5.126 1226,602.86975,-56.123024,53.1532,134.46857,5.102 1226,425.52295,57.918983,31.69513,68.57486,5.075 1226,451.65698,189.95462,19.746277,37.607117,5.024 1226,539.0438,211.67192,32.959595,71.55464,5.004 1226,605.6817,193.36249,14.087036,25.224182,4.964 1226,-11.355019,-32.197975,29.537235,72.21791,4.946 1226,535.94165,309.39,143.90942,343.31152,4.945 1226,-73.02483,266.5133,200.47803,461.0088,4.939 1226,539.3655,183.60867,17.980225,32.326202,4.932 1226,489.40585,-182.4424,235.49515,427.50436,4.918 1226,-21.597757,402.24902,78.59319,175.49316,4.892 1226,344.88214,207.62361,22.3096,39.44304,4.874 1226,583.0255,411.34906,71.81671,177.30817,4.831 1226,597.6437,218.25546,40.065002,96.561066,4.796 1226,459.93866,-33.073902,30.330353,70.00131,4.759 1226,472.1156,-4.65287,60.790466,102.76769,4.744 1226,572.22015,172.85814,15.430237,28.957092,4.729 1226,-5.8152585,217.74754,19.438368,38.337265,4.715 1226,481.67017,191.74716,18.550018,36.246414,4.698 1226,619.3911,-18.969332,18.268555,45.193146,4.653 1226,261.92078,199.13655,16.723572,31.189636,4.631 1226,138.9823,-19.565437,18.26857,45.033314,4.581 1226,384.9264,204.36296,19.034515,32.215958,4.569 1226,146.70337,-19.772322,18.351028,44.389397,4.569 1226,393.24982,197.5371,18.648926,30.27182,4.562 1226,343.47156,-10.2571945,61.317688,104.8937,4.537 1226,351.88644,211.41768,23.114777,45.18132,4.528 1226,493.68158,228.12811,237.31848,514.4149,4.526 1227,297.44022,196.16985,22.543304,41.08603,47.551 1227,336.23184,186.44942,21.801056,43.78894,42.986 1227,475.29443,189.76395,20.954071,34.613785,11.49 1227,404.4232,193.63062,16.105377,32.629807,9.104 1227,471.7372,166.4026,33.153046,59.209595,7.522 1227,595.38916,225.33963,34.322998,51.234344,7.331 1227,493.89267,181.10594,31.266327,78.054855,7.26 1227,341.5582,194.052,23.785492,44.440384,6.742 1227,486.61395,199.94307,43.09503,100.153854,6.262 1227,477.06558,175.87093,23.35971,37.557007,6.25 1227,410.74323,192.12793,15.470947,31.06836,6.17 1227,576.7006,221.39185,45.73358,63.493073,6.123 1227,621.9774,476.05542,28.949097,67.711975,6.074 1227,622.5379,-33.42637,26.941711,76.246925,5.902 1227,485.91632,271.97296,26.65332,55.557617,5.893 1227,626.92206,-18.809837,17.586731,48.495113,5.853 1227,388.3689,189.85437,17.394012,32.53975,5.818 1227,-8.696141,465.46176,37.3067,89.64841,5.798 1227,-17.991673,-65.08218,56.194946,150.68149,5.744 1227,-6.1865387,488.65427,18.963833,42.99698,5.646 1227,-5.085016,194.74326,17.581366,39.91461,5.627 1227,284.5027,196.4825,18.988281,35.118713,5.502 1227,-5.448112,-17.102808,17.087807,41.51196,5.469 1227,603.0089,-55.55104,53.322266,135.81912,5.406 1227,571.06555,235.50266,30.124878,38.88629,5.372 1227,499.15747,186.45497,20.822693,47.45314,5.325 1227,380.8627,189.73438,17.199677,33.80072,5.2 1227,291.12683,202.55891,20.897827,35.05693,5.178 1227,396.8942,192.65994,16.353973,31.350403,5.143 1227,396.46347,201.9089,19.239716,34.49182,5.143 1227,92.36273,80.88663,31.39412,63.61029,5.133 1227,541.17255,-33.25329,29.268188,67.42422,5.104 1227,361.8921,200.7633,20.784302,38.37799,5.082 1227,536.2187,310.44135,144.35132,341.9068,5.059 1227,504.09418,185.53316,59.567566,116.897446,5.058 1227,583.2123,411.8916,71.52966,175.86359,5.026 1227,515.4507,176.22028,16.618103,36.223145,4.999 1227,352.38223,197.05453,23.10907,43.340652,4.984 1227,-11.356282,-32.228653,29.564621,72.140816,4.972 1227,-73.08046,266.6364,200.78348,460.91278,4.965 1227,594.8734,230.02426,41.440857,102.408936,4.96 1227,621.01886,166.15833,14.696777,34.44632,4.932 1227,501.67862,256.1797,37.384735,68.22568,4.907 1227,1.7052412,220.28043,23.313797,40.39795,4.89 1227,585.66626,183.77428,20.262451,35.722763,4.88 1227,-21.380892,402.63086,78.73815,175.33014,4.879 1227,489.97058,-180.88162,236.05176,426.99283,4.846 1227,170.17606,-21.52076,18.554337,47.657265,4.84 1227,524.21985,176.63368,15.143188,32.419678,4.78 1227,115.69099,93.96488,32.257988,63.345695,4.738 1227,326.05798,178.52902,38.589874,69.080765,4.714 1227,-5.5123606,213.56367,18.72002,42.79283,4.673 1227,324.60425,188.55658,18.37207,36.88118,4.663 1227,291.43353,188.519,38.128906,66.28514,4.662 1227,397.14603,199.10559,29.300354,53.250305,4.62 1227,546.51294,-16.969063,18.497742,39.121696,4.618 1227,494.15973,229.3916,237.0257,512.2629,4.592 1227,186.76422,-19.893156,17.623657,43.085686,4.537 1227,346.26956,184.07158,16.869446,30.772919,4.49 1227,377.57593,202.48775,20.48523,33.832596,4.479 1228,310.9419,196.23442,22.33023,41.235565,40.377 1228,350.01575,185.38147,22.858032,45.61493,30.058 1228,496.83575,189.82425,20.676453,46.401337,14.387 1228,512.3364,193.27992,23.762756,47.591217,11.195 1228,415.9366,194.38155,20.855225,42.47075,9.282 1228,622.3361,-33.80729,27.449036,76.888275,6.881 1228,1.4389384,215.72191,22.447838,49.43776,6.868 1228,503.7467,192.25919,23.068848,45.523163,6.724 1228,564.7938,-32.66756,30.10431,70.56576,6.046 1228,612.92896,453.23132,39.510376,109.28845,6.042 1228,409.97528,202.0905,32.19284,57.17598,6.022 1228,534.8983,182.00113,29.304688,77.77585,5.973 1228,-8.70565,465.0818,37.616592,92.36853,5.872 1228,523.02094,284.1651,33.884644,65.55887,5.868 1228,617.8423,45.81357,24.365662,82.054565,5.817 1228,627.03076,487.63388,20.430481,45.63913,5.705 1228,506.9257,202.96754,28.880768,63.35692,5.702 1228,426.45706,194.29759,16.503387,33.62796,5.659 1228,626.75244,-18.967747,17.941284,48.43577,5.645 1228,-6.069467,489.68918,18.33696,40.939667,5.626 1228,-5.615595,213.22809,18.94311,45.826477,5.462 1228,-17.93005,-64.859856,56.09899,149.92445,5.455 1228,-5.453123,-17.125046,17.100971,41.51118,5.453 1228,492.32263,190.25934,19.407745,32.594406,5.274 1228,490.44714,-182.61086,235.02594,427.9494,5.112 1228,-73.23498,266.05807,201.1294,461.44937,5.061 1228,536.2925,310.70624,144.14459,341.82123,5.03 1228,582.9009,412.06735,71.90271,176.20511,5.004 1228,602.89923,-56.096153,53.188416,136.58809,4.992 1228,-11.360577,-32.20406,29.578545,72.09201,4.973 1228,538.63855,-14.089132,16.855164,35.97371,4.962 1228,-21.775078,401.98962,79.41882,176.17932,4.922 1228,555.0851,-16.84444,18.179932,38.080795,4.781 1228,545.93695,263.66226,32.846313,79.55032,4.743 1228,527.42303,188.40091,21.959045,43.58087,4.74 1228,177.67581,97.97826,33.770096,67.9644,4.732 1228,-5.1070347,196.59743,17.93527,39.60942,4.698 1228,99.619286,67.32966,35.337517,76.9685,4.688 1228,581.52905,-33.81816,29.377686,73.48032,4.681 1228,493.82324,228.0906,237.46942,513.9784,4.675 1228,537.93036,201.33174,56.851257,116.39278,4.66 1228,515.65533,137.45638,32.103027,69.96361,4.568 1228,170.37906,-21.28309,18.806824,48.401844,4.547 1228,537.89264,2.7107248,19.286438,30.858303,4.516 1228,339.46307,191.45308,39.944336,64.05551,4.512 1228,581.9489,180.73056,40.023987,86.200226,4.469 1228,562.4645,-17.437954,19.052551,40.58425,4.453 1228,586.0648,-101.8215,75.04089,234.51201,4.452 1228,186.03537,-22.701853,19.096344,48.923874,4.445 1228,530.9473,-12.3526125,17.263428,35.07412,4.425 1228,557.1605,193.12735,57.393555,108.758514,4.381 1228,359.57867,183.47968,19.664948,39.68097,4.363 1228,521.32587,158.5267,31.86023,69.19983,4.331 1228,614.7666,110.151794,26.786682,72.39719,4.323 1228,528.67535,162.7371,20.60907,44.106705,4.31 1228,569.96344,-19.353214,19.484863,42.795086,4.292 1228,556.9005,176.4295,14.589111,32.408386,4.267 1228,548.2461,173.86028,15.96344,34.69786,4.248 1228,593.66376,-44.618576,45.94104,96.10185,4.243 1228,577.798,217.61534,45.516968,72.3701,4.237 1228,475.11804,196.43568,18.275879,33.007614,4.231 1228,466.83203,-17.626225,17.99646,40.67115,4.219 1228,408.68362,-12.272427,60.805695,112.158005,4.214 1228,162.58273,-19.227041,18.670853,46.035282,4.204 1228,574.9232,184.60565,27.716064,61.25992,4.172 1228,4.0872693,218.58783,39.03382,103.56714,4.157 1228,614.4231,-19.656616,28.062256,73.74298,4.156 1229,353.84583,187.6156,21.947662,46.32724,75.133 1229,313.72055,196.95801,22.722687,43.01616,61.663 1229,426.0905,193.46861,20.39035,38.75673,27.399 1229,506.08276,192.92029,18.986328,31.462357,9.678 1229,544.7858,190.90872,21.486877,37.119232,8.384 1229,0.8575225,217.012,23.165226,47.67334,7.241 1229,538.10895,190.2766,20.294495,33.48813,6.953 1229,478.67493,204.12933,12.537689,23.794235,6.855 1229,556.5351,205.77054,51.754333,134.39246,6.668 1229,615.71545,234.76257,24.560547,45.58264,6.59 1229,-5.174943,201.80249,18.076744,41.704742,6.377 1229,469.71985,195.64691,12.291077,25.870193,6.156 1229,-6.018372,489.1469,18.318851,41.85254,6.055 1229,416.2483,187.38531,26.404144,49.65503,6.019 1229,529.8707,193.62656,20.966614,34.19664,5.99 1229,612.7186,453.45267,39.761475,109.28171,5.965 1229,622.1959,-33.348488,27.495544,75.127335,5.957 1229,626.91766,487.68195,20.542603,45.839294,5.812 1229,501.08087,195.91267,17.559692,32.915207,5.699 1229,433.40424,198.73457,19.945984,38.691986,5.693 1229,626.9434,-18.118698,17.480713,46.876926,5.582 1229,513.33514,213.76668,45.902405,80.72267,5.51 1229,-8.998318,464.54883,37.674744,92.28302,5.486 1229,-5.450747,-17.117186,17.100122,41.493706,5.457 1229,-18.014084,-65.034676,56.126587,149.91234,5.403 1229,-5.0652165,219.15773,18.963839,46.242447,5.371 1229,542.69904,180.65636,18.866455,32.19165,5.261 1229,573.2474,-34.75676,28.749573,76.68753,5.212 1229,489.99823,-184.45793,235.37994,428.3301,5.164 1229,540.1382,286.36838,30.177673,70.17868,5.146 1229,536.3823,310.34564,143.85913,341.2953,5.095 1229,596.0288,246.02745,39.83734,107.92995,5.087 1229,602.8972,-55.24096,53.07959,133.7357,5.081 1229,531.4665,185.31096,30.652649,54.87538,5.068 1229,-73.24874,265.78003,201.21399,461.67847,5.066 1229,484.68817,202.51695,14.3819275,27.465088,5.041 1229,493.78067,194.66191,15.544922,26.934998,5.032 1229,582.71277,412.6013,72.01904,175.85373,5.027 1229,534.8038,160.15456,23.399353,39.662857,5.01 1229,299.83884,193.54912,18.388367,40.454605,4.997 1229,-11.358625,-32.19714,29.577084,72.076515,4.985 1229,513.9023,21.70861,32.306885,66.60521,4.98 1229,590.4891,37.416897,28.984009,74.066666,4.953 1229,588.73706,219.94794,32.00824,63.090668,4.943 1229,-21.81995,401.8457,79.38922,176.07178,4.909 1229,554.1668,191.12616,20.968811,40.29492,4.908 1229,542.428,155.02182,22.718689,42.003952,4.893 1229,540.20416,229.84583,58.452515,144.01337,4.861 1229,555.0746,-16.106205,17.304688,37.505817,4.858 1229,337.83188,12.309227,19.207672,37.915707,4.804 1229,536.45807,143.12491,33.371887,67.07831,4.789 1229,513.2983,200.11964,20.30774,33.69435,4.768 1229,308.41864,189.77957,37.25757,64.68605,4.734 1229,461.80478,195.22815,12.540161,26.410187,4.721 1229,523.79584,0.2533722,29.833435,56.802742,4.715 1229,494.2174,228.25424,236.73657,513.6405,4.671 1229,412.84088,187.70937,18.90506,39.18802,4.642 1229,614.6635,17.660088,26.338562,84.17127,4.633 1229,474.52695,-18.108963,18.194733,38.73874,4.563 1229,440.93744,197.03644,17.706299,33.12828,4.563 1229,408.7283,-11.22282,60.604218,111.11786,4.536 1229,559.30304,194.89696,29.469177,72.628494,4.53 1229,338.13968,194.31918,41.94809,79.31906,4.528 1229,170.73276,-19.735323,18.42482,45.732292,4.505 1229,514.93884,189.15454,40.33197,66.35182,4.479 1229,186.20773,-20.975876,18.610764,47.226757,4.478 1229,593.78314,-43.409817,45.822937,94.99348,4.472 1229,578.86945,218.8052,32.325745,79.89221,4.461 1230,354.63498,190.38168,22.373993,45.214615,73.853 1230,313.94556,199.12419,22.592285,42.664673,69.025 1230,506.40698,194.4031,19.431213,41.984543,46.411 1230,426.36276,193.58095,18.687775,40.479218,27.274 1230,523.54974,198.13275,19.262634,39.861954,9.183 1230,433.46637,196.07494,18.754944,40.55609,8.192 1230,0.96925974,218.84344,23.006283,47.161346,7.295 1230,530.377,195.14197,19.393433,39.18631,7.016 1230,540.1518,293.1866,34.613464,69.20157,6.301 1230,626.858,487.7993,20.541565,45.409393,6.092 1230,417.58502,196.15855,21.471497,40.046356,6.082 1230,612.84845,454.00723,39.51483,108.85666,6.072 1230,536.5572,198.71346,19.979187,37.902893,6.065 1230,615.07947,236.3776,25.90509,44.101257,6.041 1230,586.6746,226.55923,35.66687,66.331116,5.948 1230,-6.32869,214.46175,19.201334,43.43297,5.787 1230,-6.0095263,489.3376,18.147903,41.459167,5.773 1230,556.2829,224.3522,53.625366,132.58731,5.759 1230,414.38565,191.7402,17.204346,36.245407,5.733 1230,-8.910551,464.29788,37.67314,93.088165,5.713 1230,569.7613,204.20287,53.68219,125.14342,5.595 1230,622.1986,-33.304817,27.66333,75.019775,5.471 1230,-5.4490447,-17.117073,17.099703,41.49309,5.462 1230,-17.939768,-64.96373,56.113937,149.6076,5.323 1230,515.7756,204.28976,42.157166,93.54642,5.265 1230,626.80615,-18.741703,17.663452,47.608562,5.244 1230,186.23837,-20.720558,18.959152,45.562717,5.207 1230,602.7523,-54.965137,53.3761,132.88857,5.137 1230,489.93118,-183.3345,235.51309,428.6919,5.131 1230,-73.18861,266.02512,201.02197,461.50845,5.066 1230,173.37866,99.22186,31.724457,64.51456,5.058 1230,582.88403,411.96512,71.97888,176.78311,5.013 1230,614.1097,14.63842,26.160828,87.34469,5.007 1230,-11.36121,-32.189865,29.58212,72.0629,4.994 1230,536.6366,310.73746,143.17633,340.9454,4.986 1230,474.58328,-17.633984,18.508453,38.522785,4.897 1230,-21.798658,401.81052,79.281334,176.23611,4.894 1230,573.0116,-33.103817,29.646118,72.0673,4.828 1230,498.45303,-15.863071,18.613434,38.534393,4.813 1230,194.521,-19.431812,18.276932,43.62321,4.804 1230,567.82965,275.95328,34.28723,84.74188,4.788 1230,536.60236,149.22562,32.073303,67.14984,4.784 1230,338.53888,195.62975,41.93622,77.854324,4.704 1230,491.002,-16.57565,18.279572,38.843796,4.666 1230,-5.117865,196.71634,17.648602,38.43332,4.66 1230,275.63828,190.90994,15.943024,34.56041,4.628 1230,554.79895,-16.305862,17.604858,38.00518,4.607 1230,614.4774,-17.86841,27.381775,70.952255,4.59 1230,594.80963,246.56302,41.213867,106.81592,4.586 1230,532.60046,173.30069,27.344849,59.345093,4.556 1230,593.55237,-42.56904,46.26935,93.33248,4.547 1230,494.09784,227.47589,237.11237,513.8362,4.533 1230,308.57327,190.69577,37.38327,64.81769,4.53 1230,619.00464,489.45825,20.00763,42.579712,4.522 1230,482.91492,-16.958714,18.05243,38.055935,4.437 1230,498.67676,201.67325,42.86139,92.55368,4.429 1230,589.98193,43.399788,30.153198,74.70383,4.425 1230,409.3214,-12.755341,59.83432,113.02124,4.423 1230,178.44135,-19.901628,18.642517,46.177254,4.372 1231,355.28223,189.8784,21.115234,45.530807,73.008 1231,505.28546,192.16809,18.847595,43.507202,54.274 1231,314.36023,201.63478,19.625793,39.383118,42.855 1231,426.78073,194.4872,18.53061,38.239822,35.547 1231,524.1285,197.52365,19.029602,38.597458,8.151 1231,433.17267,196.35027,18.796051,39.833267,8.077 1231,2.286216,221.81659,20.983395,42.0726,7.458 1231,512.95996,195.1357,17.980469,40.552444,6.482 1231,614.86,234.28989,25.713806,47.42929,6.34 1231,530.02924,191.92998,20.41449,40.853348,6.288 1231,-6.0659266,488.70618,18.277308,42.274902,6.159 1231,540.1618,286.93857,29.899963,72.13284,6.125 1231,536.6639,200.44759,19.63623,37.00743,6.093 1231,626.9032,487.611,20.620117,45.684967,5.967 1231,612.7184,453.52457,39.694946,108.83444,5.847 1231,-8.773703,464.60495,37.400467,92.544464,5.717 1231,622.32043,-33.560257,27.5755,75.53676,5.611 1231,-5.4584904,-17.139177,17.113815,41.509,5.461 1231,626.8482,-18.760397,17.715332,47.79422,5.334 1231,-17.924316,-65.02851,56.09593,149.678,5.332 1231,571.94556,198.41124,52.262085,125.10036,5.327 1231,490.00842,-183.36215,235.17963,428.3815,5.232 1231,320.16507,195.3638,18.621582,39.395508,5.218 1231,-5.4731393,216.132,17.54506,40.114212,5.201 1231,588.38556,223.10403,33.204407,68.85953,5.182 1231,602.7346,-55.114243,53.32306,133.29135,5.103 1231,543.9585,187.91312,20.1391,39.86693,5.064 1231,-73.34495,266.00278,201.25842,461.39407,5.048 1231,186.43806,-21.366995,18.564453,46.838406,5.023 1231,300.30557,202.62436,18.105438,36.49324,4.999 1231,-11.362902,-32.193897,29.581758,72.051735,4.989 1231,582.9336,411.71902,71.854004,176.9714,4.984 1231,536.9217,150.41444,32.40924,66.34259,4.962 1231,536.73004,310.5943,143.05951,340.7409,4.932 1231,-21.859604,401.57858,79.375595,176.27371,4.924 1231,474.5795,-17.311241,18.233734,38.49893,4.901 1231,172.7266,99.26343,33.145477,64.10895,4.84 1231,515.7942,205.30713,42.498108,92.44916,4.799 1231,532.1821,175.01135,27.948242,58.4032,4.775 1231,614.76544,14.6209755,25.805603,89.60275,4.765 1231,-3.6929154,190.8389,15.919373,35.87642,4.763 1231,443.03928,193.477,15.25708,32.14424,4.705 1231,568.72217,265.33496,33.11029,89.08591,4.693 1231,418.4238,197.72878,21.181183,36.937332,4.676 1231,186.53735,104.620834,34.06723,67.83392,4.648 1231,276.20926,193.54376,14.787872,31.420883,4.626 1231,501.99915,188.6593,37.27063,66.440506,4.574 1231,8.18611,217.27107,23.215208,40.643387,4.521 1231,494.12872,227.74295,236.99359,514.0355,4.508 1231,498.367,-15.616181,18.787964,38.67198,4.507 1231,593.5625,-43.013508,46.199524,94.4577,4.467 1231,194.51952,-20.349495,18.265839,45.349728,4.442 1231,560.54803,191.36414,33.663147,83.463715,4.421 1231,596.60474,249.69547,39.816284,104.46838,4.417 1231,580.23206,-34.042118,30.331787,73.83199,4.403 1231,484.25076,195.76065,17.007477,32.92929,4.391 1231,458.29037,-16.666904,17.813293,39.023273,4.37 1231,409.1675,-12.695282,60.057495,111.59129,4.334 1231,514.6992,176.7625,39.29413,74.26466,4.331 1231,338.18005,197.74805,42.589233,76.91559,4.295 1231,491.04218,-16.137669,18.29013,38.642216,4.284 1231,370.33594,203.21286,43.21997,100.35812,4.278 1231,586.27814,-101.55746,74.80127,232.56882,4.226 1231,538.6117,-16.705053,17.839783,38.312572,4.219 1231,-0.69978595,225.22914,26.807516,64.68617,4.208 1231,107.64958,88.14305,31.776901,64.122696,4.19 1231,402.1664,-11.985077,43.891083,72.827484,4.184 1231,178.53674,-20.167006,18.543762,46.898544,4.155 1232,504.29813,193.2555,18.981232,42.465347,53.807 1232,352.88147,195.16806,20.687439,38.49727,46.037 1232,426.6068,195.26903,19.231354,37.37564,37.356 1232,286.09836,198.62871,23.601318,40.004837,9.167 1232,1.6520357,226.50354,21.042736,45.70102,7.777 1232,614.725,234.79898,25.553467,46.297363,6.892 1232,-6.039259,488.83044,18.3509,41.91974,6.627 1232,613.00165,453.19458,39.51288,109.19623,5.962 1232,432.97592,198.0535,20.070343,38.48526,5.948 1232,540.7925,288.28235,30.541626,70.55124,5.842 1232,523.87555,198.78674,18.813843,39.09735,5.814 1232,310.9942,198.68248,23.276184,39.077545,5.786 1232,622.26807,-33.336525,27.580261,74.99603,5.667 1232,570.6332,201.76651,53.234314,124.20438,5.666 1232,-11.946492,477.47458,29.895527,63.075897,5.614 1232,622.1165,477.12415,28.566711,67.06616,5.574 1232,440.86887,196.72351,17.240112,34.22931,5.519 1232,-5.4513364,-17.119688,17.10231,41.502113,5.463 1232,537.03253,198.26254,19.2771,35.603058,5.405 1232,-17.935102,-65.00464,56.11654,149.68962,5.346 1232,614.0226,15.819126,26.493835,88.488266,5.262 1232,626.81055,-18.589216,17.648071,47.394436,5.251 1232,489.97943,-183.62813,235.26685,428.607,5.244 1232,186.11604,-21.723858,19.392517,46.745518,5.184 1232,602.83466,-55.127605,53.27069,133.12546,5.132 1232,-4.1052155,191.62708,16.122618,35.046112,5.081 1232,-73.1604,266.03363,200.9898,461.58368,5.076 1232,544.045,228.29059,56.13623,133.9201,5.05 1232,582.8799,411.78867,71.90393,176.85233,5.007 1232,-11.362041,-32.19612,29.581972,72.07542,4.992 1232,536.70667,310.5687,143.04791,341.02237,4.962 1232,567.67834,261.28104,33.320984,88.71835,4.958 1232,512.8287,195.92633,17.720703,39.84726,4.922 1232,-21.799677,401.4447,79.22808,176.31476,4.905 1232,516.3026,205.67348,41.513184,93.68193,4.829 1232,530.3788,192.8817,19.583801,38.35611,4.761 1232,-4.7811384,204.22963,17.63562,38.43338,4.726 1232,5.1309633,210.80893,28.464104,56.49292,4.684 1232,501.86353,189.12674,37.252563,67.558685,4.649 1232,614.32806,-18.23979,27.658875,70.744995,4.646 1232,536.90985,149.91647,32.173645,66.02904,4.642 1232,280.56033,209.58195,23.697205,34.533966,4.585 1232,483.34805,195.81976,18.12741,32.947998,4.574 1232,338.47034,199.51637,42.277924,73.824905,4.569 1232,203.4218,194.54836,19.302505,42.196762,4.554 1232,494.10324,227.86148,237.35489,513.67346,4.525 1232,595.66833,247.91736,40.523193,105.724915,4.501 1232,593.58325,-42.88523,46.22229,93.37548,4.498 1232,418.47897,203.63931,43.14868,97.69699,4.444 1232,90.997086,78.8931,33.22763,74.200745,4.416 1232,12.8559065,201.36235,29.42249,51.270645,4.412 1232,554.83636,-16.422745,17.349426,38.79678,4.404 1232,339.66495,191.52061,19.803131,38.427704,4.396 1232,474.69467,-17.27264,18.226105,38.33962,4.392 1232,458.23706,-17.108772,17.832031,39.56162,4.392 1232,419.82336,179.95,39.23941,65.90608,4.385 1232,355.71167,-17.973026,32.212708,64.800354,4.383 1232,409.02887,-11.770321,60.087524,111.92062,4.342 1232,451.34882,207.09735,42.429596,91.4173,4.342 1232,579.96893,-33.8464,30.532898,73.65728,4.34 1232,498.39206,-15.093996,18.305573,38.32195,4.316 1232,544.16455,189.09535,20.054932,37.683502,4.313 1232,515.0959,187.13892,38.276306,74.71417,4.296 1232,588.8662,223.96814,33.113647,64.87744,4.295 1232,75.00914,224.3717,34.00647,52.398804,4.288 1232,370.3321,205.0079,43.092285,96.16272,4.278 1232,491.06232,-15.960577,18.096313,38.78593,4.266 1232,290.78854,200.18648,32.475616,50.62094,4.241 1232,586.26245,-101.44174,74.85144,232.12045,4.225 1232,401.83395,-11.131002,44.38336,72.19274,4.204 1233,357.13232,198.50903,18.78601,42.322235,49.892 1233,506.3651,198.41307,21.549683,41.49443,42.541 1233,426.90372,197.18694,19.084686,40.89241,37.036 1233,284.2422,206.64688,20.133087,43.032074,21.686 1233,325.03543,199.87903,18.869537,39.893692,18.683 1233,433.49637,198.8625,20.207489,42.50801,9.376 1233,255.93828,203.91086,21.617203,44.574875,7.934 1233,1.2337577,229.47662,22.469135,48.88974,7.228 1233,441.17395,197.43791,17.097809,37.585434,6.987 1233,596.0747,37.23304,29.919434,73.225845,6.706 1233,-6.217371,489.3826,18.824772,42.004242,5.935 1233,622.03864,476.17618,28.517517,68.121796,5.817 1233,-12.201801,477.14328,30.227493,63.0726,5.673 1233,622.7233,-33.458588,26.941833,75.9359,5.643 1233,528.3349,194.58284,24.047974,43.458054,5.538 1233,54.153908,229.08829,27.426414,38.333344,5.5 1233,-5.452112,-17.138144,17.111176,41.51294,5.471 1233,547.3013,173.57715,28.600708,56.088028,5.46 1233,626.80994,-18.579288,17.571838,48.168667,5.345 1233,-17.902376,-64.97583,56.070145,149.2647,5.296 1233,515.1388,202.62253,42.037964,94.19171,5.282 1233,420.83966,194.58496,17.630493,39.56282,5.161 1233,603.3324,-56.328854,52.861145,134.54176,5.128 1233,337.29367,197.15103,18.393341,39.528793,5.089 1233,-73.32623,265.66895,201.10924,461.49323,5.042 1233,-11.361315,-32.201973,29.581577,72.0644,5.003 1233,555.2512,293.20413,30.604187,74.67935,4.997 1233,536.98035,310.41998,143.01965,341.17242,4.965 1233,489.896,-182.48077,235.55139,427.71704,4.953 1233,-21.875065,401.6921,79.287445,176.07724,4.949 1233,603.2586,431.15527,56.031067,141.98065,4.918 1233,561.51685,183.14674,19.79596,40.28856,4.775 1233,187.55135,108.66523,32.326645,63.869347,4.769 1233,545.49207,186.97766,20.470398,40.367493,4.743 1233,613.7998,22.815517,26.591797,82.22534,4.725 1233,185.85023,-23.172775,19.618668,49.040836,4.682 1233,418.8974,203.47852,41.43689,93.511536,4.673 1233,558.6658,167.97,21.82196,43.432526,4.652 1233,546.8335,31.840454,32.481873,73.96234,4.626 1233,589.56635,51.004738,30.903687,82.357506,4.6 1233,494.0719,227.99786,237.05237,513.5202,4.583 1233,409.16397,-14.291054,59.972656,115.59408,4.563 1233,420.14392,179.02348,39.84268,69.39229,4.508 1233,573.8557,229.23885,49.24597,133.83507,4.493 1233,498.83203,203.218,41.808777,91.85249,4.493 1233,174.17035,103.36242,29.684769,55.246803,4.49 1233,571.8254,187.03024,30.631958,70.658905,4.469 1233,536.77545,40.74012,24.035645,52.452065,4.443 1233,-4.8449306,202.5276,18.051956,41.62468,4.341 1233,585.9522,-101.404724,75.44403,232.01219,4.33 1233,530.4695,199.03091,40.547913,86.8013,4.325 1233,482.6367,-17.358475,18.398743,37.742916,4.325 1233,204.7377,205.53075,17.682205,36.144638,4.319 1233,386.66187,204.07256,42.856598,94.92714,4.305 1233,585.51215,180.28079,19.516052,39.795624,4.289 1234,520.61255,202.06381,23.125488,46.569244,80.498 1234,303.07407,205.81079,19.48642,43.84314,67.5 1234,345.5199,206.15323,22.242554,41.240204,48.136 1234,434.8744,202.39291,20.579437,43.384155,38.16 1234,448.00385,202.69601,19.427307,41.935318,12.747 1234,247.72127,207.81367,22.024277,47.795273,10.389 1234,216.19737,214.72722,20.977554,41.617905,8.247 1234,560.02313,218.57092,22.175842,37.392807,7.028 1234,536.2336,211.8057,23.93866,45.549377,6.983 1234,569.37537,218.09027,19.507385,33.610535,6.945 1234,311.63278,204.3557,18.872467,39.767487,6.933 1234,543.9999,223.66452,24.768799,40.43747,6.604 1234,626.907,487.59274,20.506104,45.575775,6.539 1234,540.5891,199.30629,31.310974,59.967514,6.523 1234,-6.144514,489.108,18.288652,42.61972,6.093 1234,1.3423967,230.88748,20.835457,49.14334,6.029 1234,-11.95777,478.4297,29.348106,63.40625,5.927 1234,622.14954,-33.41123,27.614563,76.09135,5.841 1234,500.3026,208.052,16.277405,28.816376,5.832 1234,612.89014,453.4057,39.388977,108.80829,5.665 1234,195.41405,215.94318,21.336273,40.71237,5.632 1234,603.28876,-56.775124,52.944458,133.93341,5.54 1234,219.55939,204.12508,28.680054,50.028473,5.524 1234,-5.446348,-17.130539,17.108032,41.514,5.474 1234,95.802376,80.447815,35.94265,73.79123,5.251 1234,-17.8993,-64.85746,56.07238,148.96835,5.222 1234,516.8929,195.22452,38.15753,66.872986,5.108 1234,-5.474929,216.86037,19.345924,46.0338,5.024 1234,-73.28826,264.98328,200.75607,462.61218,5.024 1234,-11.35847,-32.202972,29.583538,72.083275,5.01 1234,490.88934,-183.68608,234.11176,428.5451,5.001 1234,578.92816,203.48018,18.175964,33.66844,4.986 1234,570.6399,204.2989,19.447266,35.311234,4.975 1234,583.01294,411.57516,71.59131,177.1163,4.974 1234,526.812,213.149,23.408203,46.54866,4.964 1234,-21.830727,401.7243,79.16502,176.00531,4.919 1234,619.09796,489.25757,19.979553,42.044373,4.873 1234,593.63385,-44.0639,45.939392,94.75184,4.863 1234,536.544,309.50623,144.25586,342.75403,4.819 1234,520.5211,82.98027,34.318726,65.2032,4.812 1234,203.50183,212.42639,20.602417,40.683105,4.785 1234,435.4402,195.17487,37.077698,65.32373,4.763 1234,622.8946,204.6315,26.939941,68.738495,4.749 1234,626.88745,-19.45392,17.845276,48.782993,4.735 1234,577.8374,216.94514,17.781006,30.461044,4.719 1234,136.70715,53.242523,36.11528,81.67641,4.684 1234,494.57227,211.08363,14.081757,26.146439,4.652 1235,249.03413,211.92177,22.197433,49.469772,67.234 1235,129.7156,212.22647,23.27005,48.361908,42.589 1235,280.2087,216.59746,21.04004,45.593643,41.009 1235,157.94798,210.96375,22.914429,49.168396,37.063 1235,523.2842,205.33885,19.381653,50.046616,13.64 1235,430.0672,206.81238,27.578186,61.096527,12.654 1235,530.90875,204.84842,16.519836,39.649506,10.075 1235,459.82977,215.72256,31.89383,63.814148,7.735 1235,526.7366,208.41562,13.69812,29.763885,7.386 1235,540.0951,209.25623,14.465515,25.8665,7.092 1235,552.5742,255.78821,23.198853,34.717163,7.061 1235,473.97577,216.77106,21.359161,42.861115,6.481 1235,481.6837,215.83359,22.053955,43.344025,6.289 1235,256.99023,206.53632,19.7677,47.665527,6.255 1235,145.08185,214.69073,23.15834,51.989563,6.162 1235,0.24683714,238.20996,23.58967,47.51172,6.138 1235,533.70886,207.86662,12.728638,21.883804,6.106 1235,445.02823,225.55605,31.176239,63.736374,6.042 1235,417.83643,209.1494,28.140991,60.063797,6.039 1235,547.47015,207.56425,16.637695,34.791824,6.007 1235,-8.850203,463.16748,37.508514,94.75946,5.957 1235,329.65744,8.013229,20.32544,43.13619,5.782 1235,622.2029,-33.875767,27.052856,76.97596,5.721 1235,265.1493,208.89137,19.77652,48.456314,5.705 1235,455.87497,221.00262,22.778137,47.135315,5.652 1235,-18.064407,-65.65821,56.26683,150.8658,5.622 1235,537.4187,209.62993,18.82367,46.85817,5.611 1235,621.7904,477.5493,28.933167,66.42319,5.607 1235,77.734245,88.67727,32.040924,69.02946,5.595 1235,-6.0757785,241.70436,19.993992,46.46147,5.582 1235,275.01947,210.0986,18.903961,41.390625,5.486 1235,-5.4491625,-17.126003,17.090755,41.528885,5.463 1235,436.34802,204.35072,36.140045,73.668686,5.396 1235,440.33237,209.00027,20.66449,40.445618,5.335 1235,626.8987,-19.621086,17.698364,49.593952,5.242 1235,603.57043,-56.923676,52.6756,133.25815,5.213 1235,-12.216866,478.72888,30.026026,62.834106,5.194 1235,-6.230042,490.42844,18.490133,40.903656,5.189 1235,583.5577,411.98297,71.22046,176.64459,5.122 1236,457.8804,209.84077,23.9281,51.2321,89.145 1236,81.408035,213.34166,34.567215,60.57225,46.838 1236,351.46786,214.72188,23.429169,52.291306,42.738 1236,486.77475,208.78873,25.235321,52.489563,22.12 1236,334.4151,209.04114,28.786163,65.812256,15.272 1236,470.16785,207.2251,23.612091,51.99237,12.657 1236,71.783615,214.16422,28.3181,58.096954,10.08 1236,341.10428,207.36243,36.342926,82.6933,9.445 1236,329.27527,210.40303,24.151794,48.645615,7.816 1236,613.5029,53.30039,28.182007,83.16556,7.545 1236,302.80472,207.02016,27.432526,60.82225,7.428 1236,290.34683,212.38138,18.61441,44.57242,7.343 1236,61.445595,197.03957,33.652916,69.57243,6.789 1236,244.63794,212.64993,29.187775,59.670746,6.759 1236,275.5283,216.2256,18.85614,39.31256,6.415 1236,267.22314,217.62343,18.814331,38.963974,6.367 1236,427.61108,223.07068,18.051697,28.867249,6.208 1236,626.4755,488.5773,20.31781,45.392426,6.195 1236,-5.5098066,-16.048447,17.52073,42.615814,6.182 1236,283.34494,214.36827,18.784454,41.565155,6.158 1236,-6.1772213,490.28378,18.42656,40.796417,6.048 1236,622.8106,-33.535545,27.075378,75.110275,6.022 1236,52.998314,154.02292,29.720818,73.600555,5.967 1236,298.84424,213.10335,17.931396,43.66017,5.802 1236,627.09607,-18.573887,17.573792,47.02308,5.759 1236,314.584,209.14919,19.279083,39.754715,5.758 1236,-11.895018,478.66296,29.713821,62.032715,5.739 1236,346.35513,207.85138,22.537659,45.530945,5.73 1236,502.77722,206.0412,23.934265,44.67163,5.7 1236,230.5697,213.02307,27.224487,62.312073,5.547 1236,257.7686,217.03035,20.123901,40.108932,5.541 1236,451.6198,214.69087,39.17682,66.8633,5.464 1236,508.7228,-31.11812,29.785126,64.42245,5.452 1236,612.55566,456.47327,39.47876,105.72424,5.396 1237,231.67935,206.70888,25.556091,60.450058,90.254 1237,248.70192,215.22943,23.836197,53.017365,85.371 1237,214.54314,218.60645,24.639755,51.710144,70.617 1237,224.2316,215.00345,24.46843,54.299164,21.362 1237,433.2998,187.67125,20.412231,48.492477,11.94 1237,365.87558,201.04752,29.622833,66.905975,10.022 1237,395.89258,207.93805,31.916382,54.660645,9.024 1237,-5.7697372,-16.891224,18.499327,42.96616,8.738 1237,440.59253,193.57893,20.71756,47.5829,8.14 1237,422.38052,188.57973,27.829865,64.60013,7.862 1237,449.47296,190.86543,19.122437,46.432846,7.443 1237,623.02844,-33.96269,26.692505,73.82512,7.443 1237,489.17035,197.51285,21.314697,54.55893,7.195 1237,379.83026,204.1598,32.661743,60.836563,6.977 1237,240.97694,199.02866,41.338882,75.11716,6.684 1237,410.91028,207.55267,31.016876,56.634155,6.58 1237,491.50348,190.11972,16.784454,37.29982,6.485 1237,463.47864,187.31003,27.051422,65.415985,6.321 1237,1.8801409,-16.030762,18.2224,40.538754,6.157 1237,627.296,-18.148083,17.02826,45.398098,6.139 1237,477.76215,187.32085,29.372498,70.894,6.135 1237,-11.070657,-31.89241,29.886208,70.973724,6.041 1237,459.23953,192.45451,17.592133,42.445877,6.019 1237,504.6957,206.7247,20.423248,44.259827,5.969 1237,626.4077,488.19556,20.662476,46.157898,5.869 1237,322.37952,207.57948,18.34848,34.27101,5.864 1237,-6.1377172,489.22546,18.528591,41.926086,5.857 1237,497.38928,201.00073,20.912842,52.756348,5.825 1237,377.3078,200.34691,18.621582,31.747513,5.794 1237,386.08795,200.12834,18.843506,32.32988,5.673 1237,394.8331,199.90216,17.253082,31.50438,5.612 1237,-11.870811,477.9065,30.009089,63.09149,5.609 1237,345.90604,-17.61923,19.115936,39.519783,5.575 1237,612.6493,456.41742,39.56897,105.37494,5.485 1237,554.2855,197.35678,19.475586,34.781723,5.383 1237,285.80682,253.58513,30.302002,50.059982,5.254 1237,619.5986,-4.548893,18.39569,36.434612,5.224 1237,348.8883,-32.03825,29.902252,66.64779,5.202 1237,378.64807,61.960205,33.64148,64.356094,5.188 1237,-17.836628,-63.295795,57.00632,141.84782,5.134 1237,603.18286,-55.385063,53.06079,132.75195,5.086 1238,266.9577,221.07988,27.606537,75.63347,87.49 1238,491.60873,210.37967,16.652008,38.561386,11.918 1238,498.55243,209.14532,17.975708,40.690964,11.413 1238,530.54297,209.61194,18.788635,46.919434,10.958 1238,484.92694,210.50343,15.718536,36.901886,10.217 1238,522.86676,209.88672,18.747559,48.93506,10.201 1238,560.9185,219.62291,20.597046,49.682022,9.938 1238,514.13776,209.01865,19.876831,50.243134,9.901 1238,549.97253,212.74934,28.720093,67.13481,9.81 1238,313.20544,217.43315,32.7894,67.26158,9.283 1238,505.5107,210.11386,20.019257,49.657867,9.243 1238,535.7993,208.51978,24.897034,64.25604,9.164 1238,617.8919,222.31311,19.7807,44.888367,8.833 1238,493.61295,206.37437,27.138153,67.427414,8.656 1238,-5.2975016,-16.802734,17.379173,42.004375,8.403 1238,568.52545,223.60213,20.352966,44.83,8.331 1238,601.92456,233.72656,20.24524,37.395966,8.3 1238,267.82434,248.06993,32.81955,64.5038,8.193 1238,228.0148,237.8885,15.998123,28.94603,8.02 1238,68.91322,199.09097,28.691422,65.35989,7.813 1238,65.75797,200.95407,20.333336,36.941467,7.608 1238,546.2656,213.96329,20.318726,44.375336,7.48 1238,82.35974,202.70601,20.610916,42.868652,7.431 1238,42.962513,196.2373,33.982983,57.51007,7.429 1238,56.88714,199.35883,22.05552,38.483902,7.383 1238,586.7965,241.86406,32.26306,57.495773,7.358 1238,459.76282,221.91522,31.839478,60.580322,7.25 1238,86.04691,203.71423,28.94944,61.39154,7.17 1238,538.1167,212.17052,17.367188,36.769485,6.89 1238,626.7432,487.2113,19.989258,45.430664,6.78 1238,575.9671,235.59763,22.996216,44.41266,6.678 1238,510.05,-2.2510395,30.063782,60.690735,6.518 1238,-11.388218,-31.261208,29.975073,70.03831,6.374 1238,622.576,-32.766014,27.17743,74.735374,6.322 1238,554.80383,217.00322,18.757935,42.13481,6.285 1238,75.124344,203.52931,18.346619,34.274292,6.193 1238,627.25806,-17.11709,17.17804,46.68597,6.174 1238,221.35008,239.83972,15.286789,27.689362,6.165 1238,477.24185,212.54292,15.286224,35.153214,6.16 1238,362.15997,219.18535,19.833405,36.277496,6.044 1238,99.27041,207.23044,19.116165,32.522476,5.998 1238,41.37249,198.52028,23.793045,38.294357,5.986 1238,354.12433,216.51764,20.643707,39.380127,5.927 1238,477.02295,218.7207,30.345276,58.75403,5.884 1238,105.755775,206.91806,18.868309,27.44777,5.881 1238,-6.0550003,489.4752,18.50207,42.239105,5.876 1238,209.87384,223.92218,18.638977,34.736298,5.863 1238,578.96075,224.74458,17.04889,32.515915,5.831 1238,275.33795,218.05428,28.75824,64.46178,5.828 1238,3.4814417,-14.536086,16.531729,37.606495,5.815 1238,564.7666,218.28253,14.602051,25.9225,5.792 1238,444.86737,225.85187,30.911865,57.282288,5.74 1238,489.1925,218.77655,21.66095,46.36612,5.735 1239,425.72882,228.6049,18.788849,37.44191,9.572 1239,490.08502,217.88858,19.206848,51.855103,9.095 1239,519.4216,233.0895,29.557495,60.362198,8.82 1239,307.282,206.97723,14.760651,31.929596,8.349 1239,95.62225,215.84944,44.771408,82.272446,8.169 1239,497.15198,221.95906,19.06482,47.6725,7.671 1239,-5.8698263,-17.83367,18.110332,43.601986,7.552 1239,412.60284,231.85788,16.24759,32.066467,7.423 1239,302.55426,210.06607,13.977112,29.98056,7.408 1239,626.9934,487.98474,19.95459,44.622253,7.247 1239,397.1845,239.24881,15.609314,29.826263,7.127 1239,427.93747,221.2113,15.793579,30.748856,6.991 1239,331.9762,223.9538,16.39383,27.45108,6.989 1239,622.2609,-33.758526,27.378662,79.16028,6.923 1239,588.3526,221.32217,31.35736,71.38428,6.868 1239,405.16187,233.22437,15.046387,29.462952,6.756 1239,331.30988,209.78017,15.978973,29.440735,6.737 1239,324.37384,221.08644,17.136414,29.565002,6.719 1239,187.4424,212.46822,17.483002,31.751236,6.646 1239,450.37155,230.39168,22.58319,41.745346,6.559 1239,-11.19955,-31.051182,29.952354,70.75498,6.53 1239,472.20605,210.04332,25.490662,63.93364,6.48 1239,626.8227,-17.902489,18.321655,47.91531,6.475 1239,324.43622,208.37135,15.934418,29.504272,6.461 1239,349.0637,239.31956,14.751892,24.922256,6.306 1239,434.29507,224.99074,16.906342,33.85765,6.229 1239,420.74976,223.745,28.053955,59.046265,6.144 1239,-5.007384,202.2619,17.12725,40.46808,6.073 1239,204.16685,211.46503,16.423965,34.368652,6.031 1239,196.20436,209.00671,15.767975,30.921509,5.914 1239,418.46524,234.09012,19.7117,38.066284,5.9 1239,410.72464,237.66458,20.72052,43.087677,5.899 1239,81.66429,219.50272,36.3433,64.70172,5.898 1239,179.6788,208.90863,17.238022,30.071594,5.879 1239,93.737114,221.42433,27.809837,46.527573,5.865 1239,420.61536,225.73506,16.33844,31.71074,5.781 1239,-5.8427644,1.0226994,19.150818,43.540054,5.724 1239,380.28015,-12.003952,14.532623,36.132317,5.719 1239,483.12534,216.6411,18.668213,51.765,5.696 1239,602.92017,-53.39464,53.18396,130.23698,5.678 1239,170.42664,213.333,19.170502,32.614365,5.673 1239,366.16943,231.17226,10.374207,19.646042,5.653 1239,541.893,244.21861,38.506165,70.23457,5.644 1239,204.60527,234.71558,15.948471,29.851532,5.582 1239,529.7141,239.11285,33.569275,55.229736,5.566 1239,350.41214,228.70108,12.688141,22.089188,5.565 1239,612.8646,456.68326,38.698242,104.98935,5.544 1239,-12.431363,478.53583,30.13921,63.68109,5.51 1239,331.05176,196.11375,17.253937,29.687088,5.507 1239,-17.898117,-63.423557,56.665936,141.68141,5.485 1239,454.79742,218.69235,28.506714,59.21283,5.481 1239,-6.346813,490.4116,18.934725,40.76181,5.458 1239,76.03413,224.23186,60.572685,107.15318,5.4 1239,331.1658,236.17491,18.714294,29.532547,5.4 1239,505.4312,230.15439,20.220337,44.59839,5.399 1239,572.23627,217.47662,31.049194,54.155792,5.393 1239,-5.3065596,56.759743,18.1002,44.129845,5.336 1239,403.1855,254.97757,33.579285,61.317383,5.291 1239,294.02908,200.49797,11.834991,25.70523,5.226 1239,2.8627377,210.15225,18.569487,40.738403,5.22 1239,612.25977,-18.335798,28.932556,82.818146,5.212 1239,-74.314896,264.1092,202.46896,464.5633,5.197 1239,536.2905,310.40424,144.2439,340.03253,5.172 1239,358.73004,222.62495,11.389252,23.610657,5.156 1239,412.25003,232.79437,31.419891,66.28552,5.152 1239,340.70038,226.03871,14.934753,24.454453,5.142 1239,561.9814,228.19276,36.25598,57.862747,5.096 1239,2.3818552,-16.441217,17.872948,40.8227,5.09 1239,314.92407,217.26416,17.203278,31.169281,5.083 1239,196.93265,233.62961,16.984818,32.168365,4.931 1239,340.0016,237.33865,17.00061,27.41391,4.916 1239,301.8408,202.05042,12.66861,25.328537,4.902 1240,-5.315977,-16.222721,17.19894,40.774796,9.277 1240,217.64438,228.38254,19.607025,47.447174,9.046 1240,206.6379,220.768,27.545624,66.9765,9.0 1240,101.338196,232.09634,30.016663,62.60315,8.081 1240,-6.0064626,489.78943,17.59522,40.657837,7.94 1240,166.55907,221.88658,25.85405,61.933853,7.865 1240,199.25116,214.88374,25.155594,67.8026,7.463 1240,149.43797,226.008,29.499527,62.962402,7.296 1240,-11.043773,-30.749977,29.789371,69.26477,6.965 1240,120.75929,225.47299,20.662155,42.142883,6.767 1240,105.390366,227.75827,21.781883,39.073303,6.693 1240,627.1464,487.422,19.682678,45.65045,6.599 1240,224.8429,236.67654,21.594482,44.230164,6.502 1240,-12.219803,479.31375,29.493437,61.6055,6.492 1240,233.85892,239.98903,21.005295,41.870956,6.269 1240,183.9434,216.26302,25.083832,65.56703,6.251 1240,3.5683222,-12.738414,15.736318,35.476257,6.081 1240,627.4452,-17.316124,16.98816,45.76385,6.017 1240,83.16604,238.0069,34.852745,65.53308,5.993 1240,612.2193,-47.92068,40.85956,104.36511,5.817 1240,163.22986,223.82617,18.259933,42.359375,5.733 1240,195.10104,214.93037,18.564941,56.37764,5.726 1240,2.876379,491.1218,17.807346,37.85544,5.726 1240,99.41266,228.45825,19.381653,35.488525,5.629 1240,504.3255,245.26129,23.046448,37.146973,5.6 1240,155.47389,225.22797,18.430252,39.858032,5.586 1240,-9.336886,463.12427,37.88707,94.45953,5.512 1240,331.3913,206.94928,18.024597,45.192444,5.505 1240,613.1366,455.35345,38.533203,106.49304,5.472 1240,338.7967,206.81651,17.669342,45.13536,5.437 1240,132.67862,236.52672,33.583206,61.261612,5.381 1240,-17.867725,-63.39659,56.352688,143.30443,5.381 1240,91.71906,234.54858,18.450455,35.18152,5.376 1240,254.79733,235.22046,29.290161,62.82788,5.274 1240,182.48853,-33.671055,28.251526,69.17442,5.255 1240,112.51507,222.095,21.342934,38.498993,5.193 1240,-73.7381,264.51776,202.47176,463.64655,5.181 1240,583.3666,413.02863,71.24597,175.45026,5.137 1240,290.09167,221.90434,19.476135,32.386154,5.086 1240,318.46442,202.23883,26.828247,66.26196,5.069 1240,528.17865,253.8341,23.788025,34.574097,5.022 1240,113.87482,237.71658,34.621933,63.03418,4.989 1240,536.21576,309.50482,144.20966,340.08575,4.953 1240,380.05356,259.49466,31.23056,48.48056,4.912 1240,212.50592,229.34296,32.00261,73.71704,4.873 1240,95.71837,244.12454,25.167816,45.177307,4.87 1240,241.18176,240.99875,22.348022,41.528503,4.863 1240,179.10565,220.12022,18.407623,47.69008,4.839 1240,553.3584,255.53969,22.025513,32.36064,4.836 1240,111.222275,238.53217,23.993729,44.891724,4.832 1240,11.523728,-11.258339,57.43577,114.58931,4.825 1240,65.61681,228.24242,42.238525,81.01793,4.798 1240,-22.512497,400.42847,80.45303,176.29431,4.791 1240,84.36713,235.13684,17.090149,32.305664,4.78 1240,4.143962,284.88074,39.527946,99.93027,4.747 1240,-37.07484,-129.63524,117.5961,280.44696,4.705 1240,60.57231,243.13356,31.92189,62.32225,4.689 1240,494.19788,230.79677,236.75806,511.48206,4.669 1240,-71.28195,-187.83617,212.88136,455.97827,4.669 1240,130.37091,221.03313,17.81781,38.506485,4.659 1240,512.7592,238.76085,21.319824,36.593338,4.617 1240,94.23712,216.88797,50.411713,97.79874,4.585 1240,55.835934,291.77597,37.603848,57.56491,4.571 1240,4.1586976,1.2903595,15.838884,33.868927,4.566 1240,172.39012,223.01505,16.37085,35.450775,4.554 1240,444.22034,214.37122,15.911316,37.652298,4.51 1240,82.22611,261.69846,35.955032,67.45773,4.49 1240,121.28572,207.62558,21.128128,35.873367,4.48 1240,67.772896,2.7007265,17.183884,28.861542,4.475 1240,60.064472,2.1153517,17.3661,27.847496,4.442 1240,-4.527455,4.7533627,16.63344,38.808586,4.435 1240,562.1841,269.7492,19.853088,29.959656,4.429 1240,146.89635,230.11087,20.759277,46.07431,4.426 1240,451.86008,227.8906,30.682098,57.002502,4.404 1240,74.87502,242.04459,19.878288,33.720276,4.402 1240,66.80109,242.42479,19.95729,32.447098,4.398 1240,250.78604,238.1261,20.221771,37.791626,4.384 1240,395.31528,-10.909979,32.06479,58.140045,4.376 1241,364.99768,243.02406,27.896637,61.78917,10.259 1241,406.48495,223.24323,24.87619,52.777527,8.225 1241,595.0086,233.36484,29.989746,73.39923,7.894 1241,-5.2913375,-17.366842,17.40206,41.850594,7.87 1241,614.2385,38.672,26.193481,94.90929,7.213 1241,-11.634176,479.15314,29.586863,62.00232,6.641 1241,626.5023,-17.728233,17.83551,49.245487,6.579 1241,-6.3457403,489.44135,18.915195,41.304993,6.438 1241,282.10864,229.417,33.189575,58.7816,6.289 1241,622.57587,-32.9044,27.092468,79.559525,6.25 1241,-11.064379,-31.475237,29.48107,70.184555,6.204 1241,602.87476,-54.823357,52.713684,138.93399,6.098 1241,238.20798,214.69377,11.764572,24.948425,5.687 1241,369.76422,238.66734,20.671204,42.116776,5.533 1241,626.416,488.05576,21.04895,45.571747,5.495 1241,371.8999,232.35353,30.054688,60.41765,5.322 1241,583.30896,413.0982,71.051025,174.31927,5.295 1241,254.08836,215.24028,11.090591,25.320236,5.257 1241,615.2137,7.2677994,24.261658,83.93783,5.245 1241,-73.27229,264.435,201.51828,464.35724,5.2 1241,36.10517,196.36005,31.861542,63.507385,5.109 1241,269.72592,176.44936,27.766632,62.240143,5.099 1241,-17.691822,-62.337822,56.448326,142.58003,5.083 1241,582.2147,224.40123,31.50946,77.52266,5.033 1241,536.3074,309.5459,144.17834,340.90295,5.011 1241,-3.3467019,160.84454,13.881749,33.94774,4.927 1241,-3.9902706,142.53758,15.1987095,37.58348,4.896 1241,514.09314,225.28304,21.480042,32.69948,4.867 1241,613.5593,238.12044,26.768372,64.08247,4.834 1241,493.9923,228.83514,237.28583,514.28516,4.823 1241,246.92522,214.81041,10.991348,25.78984,4.823 1241,254.12396,225.38968,12.378876,24.738113,4.812 1241,-21.693565,402.25876,78.8551,175.06644,4.803 1241,3.7754626,99.8322,17.448738,37.639236,4.797 1241,4.893018,73.53517,15.486682,30.312508,4.788 1241,-4.0813684,77.49828,15.257852,36.330894,4.726 1241,3.2008343,-15.155209,16.584146,37.854763,4.714 1241,613.1678,455.41116,39.039917,106.18576,4.714 1241,90.84212,220.56055,18.713028,31.274567,4.683 1241,316.22943,229.77345,32.234436,62.856613,4.636 1241,619.0046,-3.7342663,19.023804,48.7912,4.624 1241,-3.4558012,175.69069,13.514823,34.879044,4.617 1241,-3.8365002,61.32864,14.379179,34.60439,4.616 1241,-37.693012,-131.53627,118.103745,285.0324,4.613 1241,3.3321702,197.87999,32.83889,59.469894,4.602 1241,606.2707,23.006016,27.226685,92.66011,4.601 1241,300.86298,228.5778,31.938232,57.160538,4.521 1241,622.13904,56.56093,24.82782,84.499985,4.504 1241,603.5333,245.21283,30.984802,78.65521,4.495 1241,574.3164,223.49222,28.794922,61.353485,4.474 1241,594.78455,222.29099,18.727295,41.405975,4.439 1241,218.87755,213.17471,16.125671,33.299606,4.422 1241,-4.11923,125.72228,15.797091,39.514397,4.42 1241,4.3468895,49.665943,15.073107,31.844036,4.408 1241,53.45516,197.86475,31.790852,61.06717,4.395 1241,626.76306,0.32676506,18.524292,53.48754,4.389 1241,-4.5463333,1.0275898,16.374891,41.349464,4.376 1241,331.9051,241.63887,30.656372,62.88774,4.376 1241,-70.64828,-187.69589,212.4454,454.64105,4.327 1241,349.47687,242.59511,30.030212,62.25154,4.319 1241,125.04373,264.25977,31.581635,51.26587,4.295 1241,-5.2844915,196.77817,16.527239,36.118164,4.269 1241,-4.205619,91.040344,15.681561,38.717957,4.267 1241,506.16333,226.44725,20.190125,29.190475,4.254 1241,12.25255,74.09986,16.354021,28.130264,4.251 1241,383.15182,234.5177,22.402832,41.50113,4.248 1241,-11.188248,255.01257,32.304443,66.32446,4.235 1241,81.9159,218.4513,20.781021,34.98738,4.198 1241,-6.526617,216.7681,18.81975,39.118378,4.166 1241,317.44696,228.38918,52.080994,119.244125,4.16 1241,200.69116,201.32805,24.349106,60.1111,4.112 1241,58.492775,492.33075,19.27507,37.087708,4.101 1241,84.931526,-15.356643,30.641853,62.508743,4.073 1241,164.06186,206.3055,17.265839,34.829086,4.061 1241,-5.681223,297.36035,17.026882,37.408905,4.06 1241,276.9804,199.51202,15.82428,34.56476,4.04 1241,389.897,223.16953,32.786346,63.772736,4.039 1241,-3.6961448,45.234875,14.715889,35.871433,4.033 1242,617.83453,210.49786,19.779541,55.697876,79.624 1242,601.3942,207.2512,33.82794,95.09816,8.536 1242,-5.3719325,-17.872133,17.414997,43.10953,8.447 1242,475.8577,221.51727,30.733429,71.46033,8.373 1242,-5.9405794,488.9963,18.069412,42.539276,6.837 1242,583.3396,212.0314,35.10974,86.154144,6.798 1242,-10.753898,-31.308443,29.182266,70.54133,6.574 1242,545.95325,217.0365,32.15033,71.27191,6.37 1242,-11.496297,477.1282,29.371975,64.6022,6.266 1242,622.339,-34.387577,26.940308,78.97851,6.194 1242,596.08325,211.46622,19.465881,48.814667,6.063 1242,602.8392,-55.33442,52.83429,138.44235,5.972 1242,613.55054,186.38033,31.15149,96.31508,5.758 1242,613.464,219.63289,34.9964,101.27898,5.646 1242,626.892,-18.46009,17.268799,48.88409,5.578 1242,-17.333029,-64.52635,55.44924,145.40993,5.53 1242,-72.27289,265.18286,200.8534,463.3341,5.526 1242,456.75885,233.73909,24.578674,51.906235,5.497 1242,481.3866,213.23164,22.262726,51.3976,5.439 1242,567.7455,209.06584,35.055298,79.26344,5.372 1242,12.713593,230.22192,61.263733,139.9049,5.354 1242,604.8048,213.72546,18.90094,46.909546,5.325 1242,-4.5095186,201.5045,16.431686,40.752457,5.31 1242,626.4465,487.39685,21.055908,46.28235,5.277 1242,613.06696,454.44324,39.807068,107.20056,5.183 1242,617.4987,231.76122,20.305298,58.55574,5.15 1242,-4.4890556,185.79907,16.578114,40.83905,5.073 1242,-5.2759576,311.1788,18.49737,48.00772,4.998 1242,582.5261,411.02686,72.15253,177.22986,4.994 1242,517.6893,214.24533,13.230225,29.202011,4.984 1242,-5.354849,218.5065,17.241188,38.931244,4.917 1242,536.1221,311.00842,144.59448,340.6549,4.896 1242,-40.692635,360.5401,111.80499,280.40613,4.892 1242,-4.3242455,156.72192,15.678872,38.96422,4.833 1242,479.14618,48.70271,28.126587,77.02663,4.806 1242,462.15045,-3.5691757,28.242767,90.569084,4.769 1242,564.45667,190.12599,27.97467,69.47264,4.747 1242,494.29745,228.13,236.38223,514.1412,4.718 1242,474.6317,-16.829384,31.722046,77.07067,4.714 1242,-21.181683,400.6585,78.62166,176.57428,4.669 1242,3.28596,-16.300951,16.271576,40.592213,4.61 1242,577.6525,231.23433,22.183167,51.704514,4.579 1242,524.7156,208.5658,13.666504,27.0699,4.56 1242,-36.93431,-128.98024,116.32694,277.4877,4.558 1242,623.9713,222.88261,19.807007,54.854935,4.45 1242,155.83214,242.4744,56.78859,128.19629,4.439 1242,586.96936,231.9768,20.147522,51.644653,4.397 1242,362.97485,221.10916,18.550385,29.14235,4.395 1242,534.14624,222.97423,31.188904,70.200455,4.363 1242,119.55933,185.97096,22.111382,41.3732,4.354 1242,585.7295,-103.38493,75.65851,237.56297,4.337 1242,586.6135,208.76308,19.938904,52.05632,4.299 1242,488.5211,220.87222,22.175903,52.33258,4.299 1242,611.80457,328.62186,39.348755,114.45154,4.27 1242,559.9116,214.24878,23.748291,57.170532,4.259 1242,605.61334,11.601372,27.119019,78.04611,4.227 1242,-70.70357,-188.2427,211.22296,454.40143,4.178 1242,546.6693,174.12933,19.183899,39.3369,4.166 1242,32.831608,233.01913,45.651966,85.507965,4.16 1242,509.1353,214.68376,13.757385,28.475021,4.155 1242,94.163025,171.51466,27.62535,58.532257,4.148 1243,604.02576,202.2459,29.238586,71.47533,54.24 1243,595.745,197.93619,39.56067,144.9021,27.626 1243,491.136,209.70702,26.022156,61.48497,23.692 1243,114.51423,196.86621,21.152412,40.051712,12.181 1243,535.4457,187.55237,30.425232,80.430176,7.917 1243,120.75572,206.37433,22.50975,50.28543,7.749 1243,125.16817,202.67076,27.886871,69.226395,7.51 1243,457.56726,217.46303,20.626373,45.244156,7.494 1243,-5.8886185,-17.067038,17.886114,42.419155,7.397 1243,614.7927,215.76443,23.52826,65.48099,7.02 1243,450.323,224.98041,31.984802,71.21777,6.99 1243,513.5605,216.6478,21.131104,51.19699,6.597 1243,-11.179499,-31.273098,29.60735,71.988396,6.537 1243,439.00085,44.91191,23.033142,63.51468,6.479 1243,549.4411,181.99701,24.509338,49.998413,6.419 1243,412.75946,-3.3186455,28.431763,80.384735,6.407 1243,109.18095,205.90576,31.307579,69.69916,6.229 1243,17.391933,234.2447,21.101776,40.404587,6.203 1243,500.15393,212.31285,27.52771,63.055344,5.931 1243,464.35928,213.37659,21.103485,41.260925,5.841 1243,620.3966,198.80608,28.071411,80.00731,5.827 1243,449.68048,220.06645,21.314545,43.31218,5.802 1243,627.34204,-18.906551,17.557922,48.082367,5.759 1243,459.75873,212.32153,29.440033,68.27814,5.691 1243,171.57831,222.3308,30.94516,64.57173,5.63 1243,622.63416,-35.26641,26.871582,77.421486,5.556 1243,-8.908235,463.9575,37.781418,92.32089,5.502 1243,626.4037,488.51068,21.174377,45.31537,5.488 1243,6.9122934,232.53812,27.591911,68.20917,5.487 1243,-5.7398677,265.96423,18.384058,46.918,5.412 1243,484.28207,212.97372,22.98706,49.917053,5.383 1243,-17.366392,-63.57705,56.012054,143.58931,5.311 1243,473.02582,211.888,20.99878,42.836685,5.307 1243,435.55524,229.24335,33.276123,68.7077,5.296 1243,-6.581764,489.29974,19.218346,43.54236,5.294 1243,603.08154,-54.5161,52.867065,134.04884,5.226 1243,590.92346,200.16411,32.96228,67.77342,5.201 1243,-73.06372,265.27554,201.32648,464.0649,5.2 1243,563.3467,198.80139,38.86676,101.085846,5.156 1243,-3.9911394,224.75856,15.242877,35.298965,5.113 1243,607.90216,200.64429,22.514465,43.67711,5.036 1243,582.688,411.75983,72.06726,177.01428,5.004 1243,536.14795,310.44598,144.40125,341.52582,5.0 1243,547.6208,196.42392,39.0083,99.95322,4.953 1243,137.16795,218.16437,21.185516,49.561646,4.927 1243,518.2392,200.77722,36.76593,95.20581,4.922 1243,-4.897279,2.2164593,17.45477,41.75364,4.879 1243,527.59033,184.85168,27.461182,64.94281,4.877 1243,53.639267,220.45941,35.599007,70.38757,4.856 1243,140.592,209.86203,28.426834,63.07495,4.82 1244,511.22006,220.08073,29.503632,65.323074,45.092 1244,543.07324,215.58017,24.000916,51.05893,20.775 1244,521.35504,215.62186,31.815613,76.20224,18.61 1244,290.8434,215.89693,19.089417,31.047989,12.654 1244,128.68806,221.53766,24.855179,57.101654,11.852 1244,457.83466,221.51651,20.286407,37.864777,10.451 1244,68.82579,210.60905,31.064697,64.36012,10.216 1244,531.7364,213.91197,36.762695,76.14775,10.005 1244,478.42252,221.45776,25.87503,58.592133,9.401 1244,-5.550576,-16.422234,17.369057,41.174244,8.847 1244,80.12208,215.45874,22.91359,43.254364,8.605 1244,497.60724,223.34071,23.063416,47.486282,8.081 1244,114.45854,220.14667,35.089462,73.3504,7.886 1244,548.21405,213.63287,38.024475,96.18268,7.629 1244,533.9717,199.2578,29.166504,63.13472,7.477 1244,49.940666,205.84302,33.994865,68.271454,7.188 1244,346.32404,223.12836,18.832764,38.60742,7.125 1244,91.68072,214.93417,30.583527,66.246735,7.019 1244,284.80905,215.82088,18.274841,26.650284,6.749 1244,407.74908,230.90927,22.95874,44.822906,6.677 1244,507.16617,220.33101,23.046112,48.00618,6.662 1244,353.90506,223.49356,19.483978,39.74524,6.586 1244,-12.925068,477.66855,31.087387,64.1857,6.305 1244,610.8234,-46.853546,41.24518,100.29377,6.2 1244,546.77246,187.89487,32.232117,70.446045,6.125 1244,456.24292,216.24007,33.50238,79.18321,6.07 1244,-11.325232,-31.219158,29.568295,70.71027,6.063 1244,35.431293,208.54465,40.996822,92.06482,5.99 1244,143.74915,225.22664,24.599579,44.599045,5.981 1244,475.45,223.25974,18.881897,38.63031,5.91 1244,626.89124,-18.088184,17.50769,47.862854,5.835 1244,77.36067,221.93893,31.37941,69.35828,5.816 1244,491.36865,216.8562,34.450806,76.300995,5.635 1244,-5.0474873,171.1659,17.512722,40.513733,5.634 1244,3.1212735,-14.334844,16.443676,38.154568,5.604 1244,275.84497,218.24358,18.638672,28.68634,5.587 1244,101.976776,217.31125,30.955872,72.46149,5.562 1244,574.47894,188.60664,50.881836,110.47542,5.452 1244,14.47093,197.46747,51.867935,116.02869,5.448 1244,612.81433,453.935,40.1781,108.20697,5.444 1244,146.19507,228.80768,33.20529,57.9906,5.416 1244,323.26477,221.63596,16.004333,30.863922,5.366 1245,616.0932,217.47205,24.083252,76.88403,52.305 1245,277.5568,214.1261,17.609802,30.8004,21.209 1245,490.74408,215.21332,18.816223,41.840424,18.358 1245,452.18835,220.25563,30.354736,59.251328,12.555 1245,465.96774,226.2014,32.363403,59.768448,10.761 1245,477.64514,219.28726,29.95459,63.539215,10.345 1245,603.1398,218.5994,32.2843,92.630615,9.533 1245,515.45135,220.84691,19.335022,35.88002,9.375 1245,589.92285,229.50607,31.700928,66.62512,9.318 1245,487.6907,209.69904,32.02292,77.06085,8.808 1245,128.589,214.83095,23.734741,52.60939,8.517 1245,79.77945,208.3268,24.157913,48.27391,8.378 1245,624.1642,221.51442,19.776001,58.180954,7.917 1245,572.8913,233.00449,30.426147,67.3746,7.548 1245,518.56244,211.09578,34.01477,81.60063,7.469 1245,369.55225,225.12839,22.493622,48.040253,7.271 1245,449.23468,218.3187,23.0094,45.57318,7.19 1245,-5.499089,-17.766678,17.256071,42.612907,6.976 1245,299.98575,212.2788,18.308838,30.93689,6.842 1245,622.8803,-33.36824,26.440735,76.78247,6.733 1245,503.59988,209.4436,33.27652,80.47888,6.266 1245,66.4628,208.78886,22.577126,45.360626,6.191 1245,283.00626,221.0024,16.237335,28.349884,6.178 1245,385.61264,233.96445,19.529205,36.44928,6.113 1245,271.04025,213.113,15.968536,28.088257,6.082 1245,627.2585,-18.297264,16.748413,47.96313,6.08 1245,463.2608,218.29056,23.631653,46.174377,6.054 1245,-12.201294,477.3391,30.21658,64.46112,6.047 1245,602.61145,-57.076324,53.39325,133.69312,6.036 1245,32.82775,213.5103,33.391083,58.36757,6.023 1245,-6.244321,488.9848,18.635616,44.080444,5.975 1245,118.26628,197.82864,36.78871,77.41391,5.901 1245,-1.2142551,238.11925,27.062052,82.393875,5.881 1245,348.33524,210.02763,28.027924,56.76686,5.833 1245,-11.140753,-31.192163,29.214127,70.91266,5.787 1245,475.39493,214.5222,20.422638,41.167114,5.578 1245,57.261204,206.46262,21.654232,39.936615,5.569 1245,321.3833,217.49353,18.932587,34.002823,5.422 1245,-16.902664,-63.840702,55.27663,145.30258,5.391 1245,533.3401,214.07544,34.87805,80.41379,5.344 1245,-4.5427566,169.58264,17.390442,44.08104,5.324 1245,40.70856,208.30083,22.154846,39.90535,5.309 1245,333.183,62.56284,26.334503,76.64278,5.301 1246,282.62183,210.51605,17.343658,34.593155,25.009 1246,340.0616,49.615738,29.15564,84.73816,9.54 1246,367.1321,216.03093,22.998352,48.906876,8.748 1246,299.60977,216.17911,19.016998,33.332916,8.115 1246,167.7072,211.46811,21.493423,41.102844,7.698 1246,-5.413115,185.93532,17.703388,40.807632,7.482 1246,361.76904,211.8828,20.99347,44.68416,6.792 1246,450.00885,263.00336,31.078247,65.431305,6.733 1246,493.8516,234.96881,30.520233,61.946716,6.577 1246,622.3771,-34.082756,26.950562,76.516426,6.562 1246,627.06354,-17.816849,16.942932,47.551376,6.383 1246,288.14517,214.37964,19.599548,34.797455,5.989 1246,-5.010285,170.83112,17.754484,40.503937,5.961 1246,602.72437,-54.615356,52.97107,130.97665,5.853 1246,-12.401501,-40.833378,41.16469,102.09364,5.831 1246,-12.581979,477.8663,30.873802,63.99527,5.805 1246,161.75406,221.07492,33.415146,55.190704,5.719 1246,619.0993,276.00723,19.871155,46.3916,5.718 1246,-5.385083,-19.283594,17.749586,45.437927,5.588 1246,589.19574,224.7514,29.434753,66.48993,5.577 1246,431.00848,270.53125,24.422241,42.896027,5.566 1246,-5.163543,223.70079,18.217758,44.56581,5.494 1246,441.731,267.22394,21.419678,43.257507,5.435 1246,306.08313,220.33484,18.672546,32.78047,5.375 1246,466.64432,256.7601,19.371613,32.725952,5.338 1246,175.94882,210.44765,19.762924,40.15529,5.286 1246,600.8946,216.6859,20.923035,41.998825,5.284 1246,151.5041,208.4748,27.794876,56.567474,5.279 1246,473.53857,253.96925,21.150787,35.059433,5.261 1246,626.67163,488.34286,20.836914,45.05612,5.169 1246,613.17267,453.9573,39.754272,107.70627,5.121 1246,322.51996,216.06946,19.524445,35.574463,5.115 1246,-73.28963,265.9197,201.43468,462.84616,5.107 1246,-6.2971725,489.36197,18.687119,43.93039,5.091 1246,-0.19131541,214.09265,26.197937,67.84766,5.081 1246,582.90857,410.70294,71.96295,177.58966,5.079 1246,536.2645,309.99225,143.69269,340.3897,4.937 1246,0.867188,247.56676,20.49116,46.367996,4.914 1246,267.4619,224.14899,17.401123,28.450531,4.892 1246,575.4855,-16.016464,49.61444,121.48315,4.89 1246,355.95706,209.13847,20.154053,37.48529,4.805 1246,-21.66585,402.34198,79.08027,174.69928,4.788 1246,54.77558,195.88933,28.381004,70.10249,4.769 1246,588.2185,-14.509254,30.819214,66.16458,4.746 1246,585.6457,-101.731514,75.21661,236.00677,4.696 1246,330.66638,221.41637,18.667664,33.04117,4.688 1246,499.2473,215.3479,39.938232,73.992676,4.638 1246,613.3511,-18.205217,27.91272,74.41945,4.604 1246,-10.598347,168.70007,27.89565,62.321426,4.521 1246,493.93945,229.10883,236.98438,512.78436,4.474 1246,540.5033,-12.257476,14.638794,34.26047,4.447 1246,480.46738,250.71478,23.229034,41.518127,4.44 1246,358.5144,206.26056,36.509033,72.21802,4.397 1246,-9.735522,218.21327,26.974876,67.821365,4.383 1246,-5.9983587,201.10657,18.40519,44.3387,4.37 1246,456.9757,261.6172,21.735535,37.651733,4.309 1246,594.641,-42.109314,43.849365,92.34877,4.247 1246,198.15942,203.75713,13.389435,22.159988,4.223 1246,-5.3221235,102.60271,18.966011,45.727173,4.218 1246,524.3539,-11.820061,14.363098,34.037083,4.218 1246,514.4198,223.7406,39.95697,88.55145,4.161 1246,619.13806,-16.904785,16.958252,44.70524,4.158 1246,362.86975,118.46139,19.451996,39.14794,4.121 1246,587.02875,-15.035074,16.652527,40.781208,4.106 1247,277.81552,212.90605,22.13916,39.822144,33.02 1247,138.89955,207.80783,22.986343,48.702698,21.549 1247,340.6273,40.511486,30.911865,89.34816,16.872 1247,388.82892,217.32712,29.86261,65.637024,10.388 1247,3.6293995,200.66345,30.870638,73.21106,10.197 1247,459.40125,206.04134,17.383179,38.56772,9.125 1247,17.253689,200.87357,41.90435,83.16513,7.892 1247,59.97592,202.41232,32.148117,59.822723,7.768 1247,47.803226,209.78665,24.91322,46.99228,7.629 1247,133.31836,203.56445,35.185196,72.77615,7.606 1247,33.35252,203.60226,42.109356,91.51016,7.086 1247,465.05722,207.33727,20.334473,50.494278,7.031 1247,67.12766,203.02483,40.25759,75.857285,6.585 1247,374.64075,217.56592,28.110107,53.32257,6.497 1247,-16.879639,-63.58574,56.010506,145.0395,6.345 1247,627.2974,-17.758087,16.840454,46.636936,6.313 1247,286.0329,212.99286,22.96231,38.719666,6.255 1247,478.3481,196.939,27.36023,66.872406,6.09 1247,481.1972,275.96426,35.956177,80.906555,6.085 1247,72.18523,208.18193,23.81392,41.09517,5.991 1247,455.99503,198.70145,23.877594,62.421112,5.965 1247,297.93088,212.48203,21.607147,38.439835,5.755 1247,622.7347,-33.978863,26.474243,75.68932,5.711 1247,82.91309,205.14647,41.166878,84.54677,5.704 1247,-4.9764595,-16.177322,16.132385,42.297718,5.643 1247,3.1640935,193.17299,47.472702,130.87914,5.614 1247,398.66235,224.19814,23.410645,44.558884,5.58 1247,79.954636,215.89865,23.081253,41.375946,5.565 1247,-12.464268,477.44043,30.739582,64.02612,5.56 1247,-10.09281,206.19664,29.06756,71.52284,5.524 1247,369.4833,218.14355,23.691132,40.44937,5.513 1247,329.5543,218.80298,20.834839,36.143677,5.503 1247,1.2573135,198.48647,22.832748,53.898468,5.477 1247,-6.564225,489.51617,19.050892,43.09131,5.446 1247,98.579834,205.05705,40.82399,85.95711,5.434 1247,452.28992,208.35713,16.890198,44.42038,5.355 1247,313.23175,211.89578,22.040802,38.151215,5.269 1247,602.8376,-54.529648,53.0943,134.58112,5.259 1247,23.495958,208.9312,25.801203,49.38347,5.249 1247,-4.8572946,157.41026,17.386082,39.766388,5.201 1247,305.00522,208.45512,22.372528,41.100037,5.161 1247,-73.12789,264.3843,201.11903,463.38022,5.142 1247,613.0179,453.8976,40.040344,107.0372,5.137 1247,455.54813,197.06903,35.382355,95.06073,5.123 1247,-11.340179,-32.902008,29.463213,74.96037,5.034 1248,273.35693,210.01573,23.392548,51.301956,55.833 1248,346.52808,33.376858,32.710083,91.953964,25.063 1248,391.76947,214.56435,22.721954,44.075485,15.52 1248,98.54316,206.57164,33.183754,52.826828,12.168 1248,-5.5957317,-18.198637,17.822536,43.146202,8.402 1248,-11.101021,-31.921694,29.826889,70.04497,7.612 1248,317.98874,209.82704,23.85965,41.0605,7.519 1248,627.238,-18.179935,16.970032,46.42652,6.957 1248,106.86982,212.19669,32.969383,63.430542,6.706 1248,128.81473,225.53416,34.585922,65.01463,6.49 1248,83.18216,203.54184,34.459587,51.360733,6.361 1248,-16.808811,-64.38694,54.60168,142.56738,6.207 1248,-6.4124417,489.2191,18.965345,43.15982,6.124 1248,-12.512281,479.01816,30.886694,63.057526,5.992 1248,3.2428317,-17.303019,16.868217,40.61874,5.819 1248,467.77692,210.78233,16.533234,44.32379,5.741 1248,-3.6661863,174.61943,15.948935,37.333633,5.679 1248,623.06104,-34.440525,26.182373,75.36243,5.598 1248,123.06511,213.14818,32.682663,55.971725,5.496 1248,603.39636,-55.964943,52.765076,133.95082,5.398 1248,3.3540154,199.19818,32.44212,69.05347,5.379 1248,476.61096,210.5628,14.549469,38.663284,5.364 1248,66.32626,204.4016,34.94211,62.600143,5.264 1248,363.95837,33.522808,28.49997,79.70361,5.259 1248,297.00146,207.51141,23.344421,43.391144,5.217 1248,33.39002,207.14629,36.05929,59.455154,5.043 1248,-72.60697,265.38428,200.34279,463.4347,5.041 1248,-6.2430115,215.58585,18.985172,43.142914,4.982 1248,583.1437,411.95175,71.73151,176.18753,4.981 1248,613.2748,455.26266,39.46814,105.53305,4.975 1248,626.44086,488.77652,21.395203,45.329865,4.956 1248,-17.489426,437.26508,54.889435,138.08563,4.897 1248,484.87683,209.01492,14.609711,38.053802,4.792 1248,536.0578,309.83875,143.9754,342.69934,4.747 1248,-40.504982,365.94348,111.00192,275.20007,4.687 1248,129.29443,212.88457,20.878311,32.08458,4.682 1248,594.33075,-48.045036,43.902527,100.510254,4.62 1248,492.84207,208.8449,14.957733,36.442947,4.549 1248,286.61273,218.61038,24.161224,41.558685,4.533 1248,120.26636,210.63402,22.247528,33.27809,4.492 1248,379.65558,210.03093,21.274597,42.940598,4.483 1248,79.47755,215.42178,25.42463,41.540527,4.474 1248,586.07385,-102.346695,75.42651,234.7813,4.473 1248,530.8743,233.335,32.98053,64.38362,4.455 1248,493.69327,228.45502,237.03989,515.0506,4.436 1248,163.25854,220.32123,18.552917,31.572464,4.355 1248,304.6618,204.5027,24.04184,38.25949,4.352 1248,66.47049,218.9963,42.642365,96.85007,4.35 1248,455.63666,203.5328,35.189575,90.79495,4.299 1248,-5.0277615,242.81856,17.767742,38.87642,4.286 1248,499.4522,217.16693,16.457275,41.477966,4.285 1248,306.0374,218.4241,21.054321,36.798157,4.27 1248,99.88469,282.12076,32.435165,70.608795,4.267 1248,277.2755,194.3829,13.618378,24.84317,4.263 1248,-16.295769,173.68451,50.81871,134.9378,4.262 1248,486.63953,206.41803,33.795044,89.36331,4.255 1249,262.61496,211.72556,24.677094,51.285492,84.345 1249,582.2688,218.7819,27.223328,65.88081,82.765 1249,21.011488,210.39091,31.873064,72.03853,51.0 1249,520.6753,208.55688,20.481873,46.562195,39.205 1249,547.41547,206.86143,17.263184,43.93062,24.442 1249,506.6751,207.81975,21.419922,47.329346,19.303 1249,347.6803,26.199413,33.285126,95.071594,15.314 1249,606.1754,215.66934,27.4516,68.31143,11.492 1249,32.89455,212.17856,31.201145,63.675354,10.673 1249,594.81366,217.14456,29.60321,70.3956,10.364 1249,498.17468,207.9783,20.489807,45.897537,9.065 1249,617.61633,217.1214,20.929565,53.63971,8.331 1249,410.19238,216.64584,19.42215,36.07608,8.195 1249,-3.7764344,189.03268,16.691942,38.607452,7.772 1249,569.7249,222.11029,30.68512,71.4516,7.291 1249,-5.279064,-17.38858,17.32195,43.17659,7.285 1249,591.371,215.21396,21.965149,47.072906,6.538 1249,613.0242,209.3805,33.88141,96.20923,6.441 1249,-9.251297,213.66498,38.20928,91.983765,6.416 1249,312.8644,205.49823,23.418274,44.25113,6.385 1249,-10.739281,-32.195793,29.484539,73.06081,6.361 1249,249.77448,210.34882,27.717377,59.44696,6.258 1249,239.12814,206.23398,26.307465,58.187897,5.877 1249,489.76352,205.34177,22.424469,52.008575,5.876 1249,401.7624,215.2494,20.663086,39.71736,5.871 1249,-6.2445173,489.78656,18.638824,42.64215,5.63 1249,42.41281,209.19415,30.37709,53.690582,5.592 1249,-5.431758,232.71446,18.838243,41.480545,5.558 1249,-8.799541,465.1571,37.721306,91.22412,5.549 1249,186.16068,224.64291,31.412796,65.283356,5.536 1250,215.6764,211.0232,30.239151,65.79852,95.044 1250,587.8905,211.58379,21.997314,53.227707,44.105 1250,506.27563,210.15146,21.50708,50.56717,14.419 1250,479.14557,208.77747,21.514404,50.62628,13.762 1250,340.28656,22.767578,33.37732,86.99266,12.4 1250,519.82764,215.49304,21.530884,50.581543,10.869 1250,401.06622,212.87383,22.26236,50.36165,10.032 1250,422.73038,216.11661,23.183167,42.921387,9.062 1250,226.32916,220.20628,28.100159,53.525803,8.675 1250,-5.869874,489.95108,17.955185,40.962677,7.141 1250,305.14276,207.67773,21.034302,41.247116,6.951 1250,582.8453,201.98143,34.77307,76.19273,6.948 1250,186.37505,210.06909,29.716812,68.17096,6.477 1250,361.81732,216.04095,20.753723,47.39319,6.467 1250,504.75345,203.08899,34.494415,78.984314,6.435 1250,574.51746,213.80026,31.018005,71.86478,6.325 1250,500.89658,207.54951,18.00064,42.858383,6.217 1250,627.22253,-17.39309,17.241577,45.957294,5.976 1250,-16.698988,-63.412525,54.941208,146.29073,5.974 1250,-11.737828,479.47333,29.59636,62.19464,5.97 1250,-5.3105016,-16.923742,16.5731,42.5555,5.879 1250,433.30765,216.77571,20.375275,40.487015,5.875 1250,611.2101,-47.91859,41.02954,100.73725,5.658 1250,83.61259,208.57932,33.364304,54.55191,5.621 1250,-11.193732,-32.604187,29.127258,73.584465,5.439 1250,484.64697,207.3101,27.013184,66.413925,5.421 1250,364.82275,9.86216,28.027313,79.21755,5.344 1250,583.2073,413.00134,71.585815,175.18494,5.307 1250,-73.0424,264.04645,200.76797,465.4795,5.259 1250,122.80505,221.44708,30.768066,60.42459,5.144 1250,196.92093,208.48328,32.941956,70.6019,5.053 1250,622.01404,478.11972,28.846008,66.529755,5.051 1250,535.34766,309.13635,146.02368,343.6203,5.018 1250,491.00385,198.11598,19.011536,48.510513,4.979 1250,469.46155,201.1286,35.88977,76.32129,4.963 1251,130.08592,213.93387,37.540665,80.805756,84.178 1251,595.00726,213.59041,21.092224,53.576706,63.986 1251,582.3218,207.54295,24.855347,63.31166,62.239 1251,537.0657,206.75551,22.45874,47.125854,56.077 1251,544.958,209.10643,22.453003,47.455765,50.138 1251,442.6288,212.39813,21.223145,50.54608,23.469 1251,617.70953,216.41068,19.521545,53.26248,21.126 1251,375.32535,209.49677,23.914642,56.482697,14.063 1251,609.90924,216.7747,19.700745,46.27028,13.012 1251,458.1607,225.04419,21.65512,49.934692,10.469 1251,108.83468,230.19585,29.895607,72.69246,10.411 1251,447.97256,217.88474,25.034943,60.39914,8.645 1251,535.78845,199.12975,32.67639,72.6508,8.083 1251,512.6236,205.01224,20.980042,48.78859,8.009 1251,598.2979,203.25119,32.976074,76.89188,7.971 1251,49.05816,228.74316,22.740234,40.25403,7.511 1251,418.04608,205.23468,20.96521,51.21112,7.053 1251,602.4804,209.65862,18.115967,45.173386,6.938 1251,-5.357969,-15.921701,16.936548,40.829613,6.84 1251,60.283104,213.93376,29.968773,59.018723,6.593 1251,576.64404,204.9016,21.761597,51.542007,6.513 1251,57.63842,230.57527,21.782104,38.253525,6.353 1251,-6.285452,489.12915,18.583374,43.294495,6.333 1251,448.6659,205.64218,19.539398,44.625076,6.299 1251,553.3098,220.49487,18.983948,41.460083,6.268 1251,527.8258,184.31674,25.442505,67.662415,6.145 1252,486.58423,222.34338,23.363464,53.140106,28.315 1252,464.49762,207.09732,21.669403,55.0773,24.349 1252,413.00067,220.2179,30.642853,70.68964,13.799 1252,505.5681,222.36006,23.578247,52.66362,13.787 1252,599.1741,209.90991,24.280457,58.242004,13.186 1252,559.581,190.38882,21.691345,46.292267,10.977 1252,544.7023,213.16168,23.007874,53.649536,10.349 1252,471.85205,213.02707,29.629211,71.53458,10.233 1252,390.31714,214.82855,28.373993,64.04727,9.512 1252,-5.658553,-15.766954,17.415295,39.727325,8.472 1252,450.3079,202.47145,20.67984,54.790817,8.311 1252,549.07263,191.19153,27.644226,68.0166,8.29 1252,495.91412,222.5138,22.902527,51.230316,8.275 1252,599.3154,201.38947,33.906067,102.78372,7.809 1252,585.7515,198.06612,20.325623,48.837753,7.537 1252,602.6668,205.27658,18.968445,33.704803,7.499 1252,486.4956,208.8588,32.44806,88.64807,7.15 1252,594.9609,201.10149,19.75293,38.145584,7.068 1252,582.79205,203.7194,30.444214,77.18538,6.747 1252,540.0143,199.30566,22.305115,49.42807,6.589 1252,-11.50008,-31.74205,29.958246,70.49815,6.517 1252,547.70575,219.58548,29.08612,69.412506,6.459 1252,482.15686,216.90906,21.272095,43.104675,6.397 1252,546.61383,184.01529,21.26825,51.71927,6.361 1252,574.22925,192.73051,28.875977,74.20009,6.356 1252,609.32184,203.12544,19.586182,34.540817,6.259 1252,-8.538801,465.01758,37.43126,91.49188,6.077 1252,443.57507,204.166,17.323975,43.108627,6.051 1252,439.92154,199.21005,26.93573,76.013794,6.038 1252,347.0282,195.53876,15.734497,33.221268,5.858 1252,623.02783,-34.125343,26.07013,76.9723,5.798 1252,526.2888,184.0986,27.893066,67.49924,5.759 1252,613.614,454.13132,38.84973,107.11325,5.586 1252,627.38165,-17.876781,16.471252,46.949787,5.569 1252,456.42462,203.68048,32.95981,91.576965,5.436 1252,-17.512428,-65.46148,55.960884,145.19048,5.394 1253,505.88504,203.81409,19.989227,61.457947,51.198 1253,518.6538,206.47462,21.971313,58.237564,41.091 1253,615.81396,231.76166,23.09668,57.179504,17.041 1253,506.146,202.14496,31.578857,87.57129,13.917 1253,515.4857,205.65414,35.40161,98.54663,10.13 1253,394.06903,156.86307,28.259644,76.43561,9.179 1253,439.65988,222.56995,21.40747,45.01001,9.068 1253,490.0135,202.53635,31.749268,83.79883,8.799 1253,-5.638629,-16.278946,17.639544,41.330116,8.595 1253,435.03918,215.55902,18.992798,46.00049,7.683 1253,600.8127,227.47401,27.627136,69.96278,7.588 1253,434.57645,219.65836,30.457092,78.229004,7.498 1253,-11.647949,-32.35054,30.56187,73.219025,7.327 1253,357.3503,198.43826,27.811768,62.633728,7.22 1253,491.89465,206.97548,18.305603,51.789505,6.826 1253,500.25366,205.22728,18.230164,52.019516,6.415 1253,588.27856,213.51782,29.005005,62.43573,6.007 1253,367.4939,213.28279,22.483093,50.639633,6.0 1253,537.08545,207.58015,21.951355,48.326706,5.916 1253,626.5333,488.3963,21.097351,45.959106,5.85 1253,526.02686,203.8945,22.07013,54.451996,5.83 1253,426.24286,157.67288,22.165405,59.012863,5.827 1253,551.54974,196.17569,26.041626,61.21939,5.775 1253,-8.547754,465.21432,37.57535,92.13919,5.757 1253,435.49536,201.43964,17.19867,37.666,5.752 1253,623.00977,-32.47201,26.616577,70.895485,5.739 1253,622.27563,228.41489,25.754883,71.25513,5.651 1253,355.18353,198.57997,19.721863,42.57637,5.566 1253,627.44476,-17.533703,16.681763,44.243713,5.536 1253,433.2402,169.82686,19.5159,50.989212,5.494 1253,382.5897,164.64798,31.184967,82.000305,5.385 1253,603.2557,-54.37811,52.766357,132.53516,5.382 1253,-6.381247,489.6324,18.88546,42.542175,5.352 1253,-17.38706,-65.194855,55.798615,145.88951,5.349 1253,482.78058,241.37807,22.501038,41.873093,5.34 1253,274.0598,206.02003,20.46759,31.68834,5.288 1253,365.76794,177.14761,30.669067,73.08891,5.201 1253,-10.666237,217.88618,30.799017,61.07045,5.145 1253,-4.8888197,222.52682,18.516209,38.273834,5.13 1253,583.46387,225.30338,35.5354,97.22604,5.112 1253,291.09085,207.15408,19.718872,33.211884,5.097 1253,473.2002,198.29349,33.519012,81.863525,5.087 1253,627.44995,203.443,17.39325,45.05873,5.047 1253,599.03,235.13159,35.999268,106.318115,5.045 1253,403.95715,152.11592,27.435516,72.11917,5.017 1253,-73.027534,265.627,201.07666,462.64,5.011 1253,592.74615,209.18658,20.381042,45.221848,4.996 1253,583.4914,410.6612,71.52838,177.7873,4.952 1253,2.8156633,-14.439524,17.504646,39.096134,4.925 1253,430.71735,207.23698,15.999207,36.886047,4.898 1253,613.5131,453.33932,39.094055,108.42844,4.889 1253,-21.522232,403.37384,79.21453,174.24469,4.854 1254,554.1775,210.41324,22.775146,54.150024,56.044 1254,616.23737,207.15613,21.955261,61.934814,18.266 1254,551.8085,207.79787,34.86731,80.71562,17.184 1254,363.64325,203.65169,23.098083,48.945953,16.397 1254,573.144,211.01953,27.130188,73.38977,12.315 1254,600.90894,201.98346,24.437439,69.65289,10.481 1254,582.2916,205.60623,33.843628,93.99704,8.797 1254,380.33337,209.34445,33.42749,72.02908,8.637 1254,594.166,207.03041,21.4552,55.085434,8.502 1254,598.86926,203.3066,36.803345,119.62126,7.883 1254,-5.0639176,-17.844383,17.203955,42.68427,7.769 1254,545.113,217.46625,27.303772,69.04129,7.677 1254,585.48816,213.07529,20.586792,54.048065,7.577 1254,395.65823,204.58313,30.957855,77.30829,7.215 1254,368.8373,192.33708,18.457916,44.18524,6.654 1254,-10.967708,-31.911766,29.518093,70.49569,6.403 1254,-16.663177,-65.032005,54.86086,143.48274,6.332 1254,536.5946,215.13281,20.177063,45.04065,6.24 1254,627.3481,-17.995783,16.905151,47.421974,6.135 1254,-0.45011997,248.59209,21.133446,46.7957,6.045 1254,519.29034,208.83347,26.978088,65.591125,5.987 1254,376.0669,206.07643,23.089783,51.86534,5.946 1254,623.1227,-33.041214,26.221558,76.15552,5.683 1254,611.98206,196.99841,31.942017,105.3486,5.581 1254,-8.919977,464.1344,37.66314,93.69214,5.536 1254,433.52173,211.0019,21.243622,53.15892,5.386 1254,513.60913,221.62059,20.505127,50.83177,5.383 1254,613.0031,453.94266,40.00647,108.06937,5.354 1254,-4.9606853,243.29135,19.241428,42.841248,5.343 1254,-72.897484,265.1092,201.54276,463.73663,5.288 1254,526.73737,218.3831,24.949707,72.54909,5.147 1254,-6.4612813,488.9903,19.015652,43.3869,5.064 1254,582.78094,412.37198,72.0719,176.07529,5.023 1254,282.83878,217.52533,18.564026,31.478302,5.022 1254,410.056,193.06378,17.91394,41.543076,5.003 1254,536.02423,309.08023,144.50995,343.14377,4.998 1254,291.2729,209.27115,18.087189,30.022125,4.993 1254,436.853,200.38916,16.331055,29.946228,4.972 1254,275.72385,216.58813,18.72754,30.701218,4.963 1255,384.61868,190.93163,24.939728,61.849136,52.138 1255,440.15607,211.22858,20.202026,56.39447,14.489 1255,554.44885,212.53307,17.59143,31.636337,12.744 1255,547.7161,210.49438,19.907654,43.647156,10.253 1255,549.6135,200.71162,33.675293,94.58388,9.187 1255,383.80386,218.65175,24.48172,49.87288,8.523 1255,536.1387,197.93692,34.750977,94.84335,8.09 1255,470.3731,192.34561,34.564026,96.18704,8.015 1255,437.0569,201.16986,36.831604,96.61005,7.973 1255,474.83173,205.32104,18.375732,37.372696,7.623 1255,560.9551,212.52147,18.812256,36.561417,7.619 1255,617.82043,204.47298,18.581055,35.536057,7.383 1255,-4.918154,-16.820103,16.738121,42.18842,7.269 1255,539.9363,208.84775,20.280518,47.05008,7.258 1255,297.31042,209.05212,21.752472,34.41594,7.157 1255,525.5025,204.06175,28.882568,73.300186,7.081 1255,1.517092,235.34808,20.734037,43.81012,7.017 1255,415.0265,213.97342,28.215515,71.37866,6.839 1255,393.26837,185.20921,29.32608,73.545364,6.69 1255,430.16208,211.26627,28.669891,82.82321,6.594 1255,426.14508,214.87161,19.992157,52.8768,6.506 1255,509.6482,201.18901,30.197144,64.9948,6.241 1255,453.76898,196.53485,37.15555,100.70758,6.24 1255,251.56384,217.7816,18.024506,27.577652,6.079 1255,627.09766,-18.552189,16.89441,47.970016,6.028 1255,552.8495,219.861,20.307129,43.88675,5.922 1255,-10.847443,-31.660118,29.000082,72.2119,5.855 1255,305.5163,216.27924,20.133667,32.151962,5.832 1255,-6.516103,489.37686,19.003944,42.561676,5.77 1255,563.39026,201.04114,14.963989,28.630798,5.733 1255,-8.867695,464.06573,37.626606,94.00305,5.675 1255,259.41556,218.4666,17.675568,27.595093,5.501 1255,-17.16063,-63.8612,55.56805,143.38925,5.473 1255,622.5967,-33.88405,26.62909,77.83112,5.388 1255,500.21317,283.85382,31.587128,76.47711,5.375 1255,-73.242516,265.21613,201.60355,462.98633,5.296 1255,613.0867,454.625,39.763977,107.537476,5.294 1255,520.6282,199.3691,21.541992,46.377213,5.271 1255,4.046123,-13.829531,15.450661,39.06531,5.2 1255,243.19135,214.9123,18.263275,28.118713,5.197 1255,597.0151,218.53925,30.475098,68.40662,5.145 1255,381.8375,190.12845,19.104462,42.496063,5.107 1255,-4.889263,233.13489,18.502035,41.344666,5.006 1255,-9.97075,212.15448,27.493732,60.301086,4.9 1255,406.53546,195.66083,28.68106,74.118774,4.885 1255,469.51422,202.51967,27.088684,57.38893,4.878 1255,74.82056,200.59947,18.195038,38.415497,4.874 1255,457.89642,211.45825,21.974823,51.92743,4.87 1255,420.70053,228.49329,30.789612,75.68158,4.867 1255,564.75476,201.06375,35.533325,98.28552,4.865 1255,285.7916,204.31471,29.578522,45.89633,4.849 1255,619.7201,297.3011,16.88617,40.62207,4.84 1255,536.83636,310.32513,142.91254,340.85883,4.821 1255,602.36084,-56.129173,53.942932,139.06941,4.806 1255,274.73276,213.31342,20.880585,28.696182,4.778 1256,425.6345,179.55725,28.636322,70.52023,22.25 1256,362.14566,218.7938,22.507904,38.33853,7.478 1256,311.93295,206.01636,23.104034,36.998596,7.467 1256,627.32434,-16.348644,17.082275,44.31459,6.728 1256,376.91647,218.48416,21.394684,38.795258,6.572 1256,543.33105,185.03949,23.532227,50.897064,6.47 1256,-6.033394,-17.968414,17.936462,43.096153,6.346 1256,421.36398,192.77925,18.63446,41.945053,6.21 1256,290.5021,206.51646,21.027924,33.592255,6.16 1256,459.12015,168.01009,30.150208,69.82704,6.089 1256,-6.648094,488.6169,19.254173,43.751984,6.024 1256,429.64053,208.53828,28.24289,63.303482,6.017 1256,-9.827315,461.59576,38.38866,96.23718,5.925 1256,260.0643,216.52637,17.851044,29.970932,5.839 1256,118.30486,197.7958,29.939583,60.279907,5.809 1256,314.9807,198.64243,29.772095,51.60869,5.8 1256,299.93277,203.07657,30.487091,51.6055,5.704 1256,519.6003,195.5039,26.673523,75.71509,5.697 1256,622.87994,-33.84816,26.573425,75.57852,5.694 1256,267.79025,203.72054,16.950745,28.956192,5.682 1256,531.8687,188.12329,29.134827,75.1398,5.629 1256,306.50342,203.20073,21.80127,32.1369,5.598 1256,510.71228,200.9741,51.622803,103.227554,5.505 1256,-10.916833,-32.34384,29.319988,72.20354,5.455 1256,412.43314,197.0908,15.886505,34.246155,5.39 1256,602.6802,-53.496624,53.369873,135.65508,5.372 1256,297.78784,202.74507,21.19522,31.127792,5.331 1256,582.9796,189.38489,28.832214,57.166153,5.284 1256,252.44516,216.56682,17.78003,28.636246,5.199 1256,-73.11116,265.52142,201.43797,462.08295,5.194 1256,583.24445,412.94562,71.53467,175.66058,5.178 1256,440.0305,225.42035,21.89206,46.595367,5.108 1256,613.3024,455.54092,39.241272,106.103485,5.105 1256,620.64935,191.15114,14.897888,41.009903,5.049 1256,-0.8849168,243.45105,26.950722,71.30292,5.03 1256,619.11523,-1.6732788,18.115967,37.572815,5.027 1256,514.48126,246.13359,35.99652,61.387985,4.972 1256,445.51825,172.91003,29.080902,76.15286,4.965 1256,-21.704351,401.29657,78.954735,175.31189,4.814 1256,267.33148,216.62885,18.043488,28.24617,4.805 1256,626.51013,488.46017,21.006592,45.318817,4.798 1256,535.9864,309.59497,144.13104,342.17676,4.792 1256,-17.585781,-63.09808,55.610916,146.38689,4.764 1256,494.15814,228.84595,236.33307,514.31036,4.579 1256,186.43593,222.86882,19.266068,27.486664,4.534 1256,403.27637,205.12444,15.93335,33.145355,4.516 1256,619.00507,218.18869,20.26239,42.75296,4.461 1256,540.3259,180.27014,51.10486,109.61395,4.453 1256,274.1693,209.35016,19.323944,28.268951,4.426 1256,283.2982,208.63802,20.555817,29.554459,4.425 1256,628.89294,187.73741,15.365173,45.459457,4.384 1256,91.05415,199.1494,58.474075,99.43681,4.38 1256,499.15857,238.4841,33.804993,62.546875,4.371 1256,266.67896,189.86649,17.609253,31.05101,4.336 1256,351.29187,206.66138,28.21997,54.107727,4.307 1256,313.72046,221.19836,21.645508,35.319366,4.294 1256,613.561,-16.938572,27.52008,66.213234,4.267 1256,532.2253,179.46175,16.964233,36.287308,4.264 1256,7.0730734,227.44537,59.925743,106.23682,4.211 1256,57.485344,212.46829,60.340736,104.65521,4.21 1256,347.24542,198.06145,17.788086,30.95192,4.184 1256,-5.1943374,87.99198,17.375834,43.70379,4.183 1256,500.59692,212.8489,29.169373,62.888916,4.183 1256,489.4889,-181.1939,236.73071,421.96536,4.167 1257,514.7709,246.02254,45.067383,110.40837,26.637 1257,422.75024,234.33977,23.058594,53.2838,17.068 1257,34.477875,188.57375,33.170097,63.861176,8.123 1257,475.40524,218.5127,17.739227,41.5459,7.654 1257,464.6223,218.11237,22.164337,50.35257,6.998 1257,-5.2974563,-17.976212,17.275589,44.015537,6.923 1257,536.1917,216.57913,26.622253,60.941742,6.91 1257,-13.019614,477.79272,31.271725,63.740112,6.561 1257,322.60498,215.3704,20.339325,34.96837,6.433 1257,472.81552,166.05537,19.594147,52.54483,6.364 1257,597.97675,199.92728,28.067017,65.58731,6.21 1257,432.72433,227.91283,22.308136,39.008896,6.19 1257,482.6922,218.6217,17.571533,40.594116,6.07 1257,0.5910921,200.65273,27.52995,84.158554,6.033 1257,18.905394,191.34404,33.40632,64.088684,6.017 1257,585.7315,217.88483,21.261536,43.605835,5.991 1257,454.11197,216.79756,27.052246,59.015182,5.985 1257,7.5941467,207.40681,35.059166,74.07362,5.972 1257,419.0039,210.26463,16.746704,33.902466,5.928 1257,62.06369,189.51077,28.4758,70.50165,5.925 1257,395.1434,212.08813,29.889984,59.52301,5.921 1257,314.64603,215.38515,20.088959,34.770584,5.911 1257,-10.620314,-31.94898,29.01211,71.671326,5.888 1257,412.6914,214.53127,28.751617,63.8423,5.761 1257,470.14255,184.6172,25.121857,65.48602,5.755 1257,445.0703,223.54149,29.167816,64.28868,5.744 1257,622.54205,-33.794083,26.99646,75.02514,5.666 1257,540.72577,230.39339,52.42157,111.641495,5.488 1257,627.24207,-18.449924,17.61145,46.750698,5.451 1257,-6.8126526,489.44556,19.432386,43.556274,5.434 1257,427.49054,208.01361,15.853302,31.001678,5.404 1257,-4.252218,189.03798,17.399548,40.323746,5.402 1257,-10.984247,183.44548,28.670511,68.15834,5.38 1257,583.1918,412.92712,71.942566,175.79199,5.283 1257,-73.08597,265.6971,200.99265,462.41885,5.228 1257,160.96007,226.51189,22.643509,35.57991,5.218 1257,3.1838763,-17.092417,16.321394,40.805103,5.212 1257,588.0112,217.77322,30.492432,65.933655,5.2 1257,602.77356,-57.635258,53.545044,138.61012,5.162 1257,121.320114,238.68407,22.451645,30.78328,5.123 1257,410.30795,213.2243,19.36264,38.927277,5.094 1257,475.07474,200.68837,17.236298,38.304092,5.072 1257,137.0749,238.27019,21.263062,31.03807,5.072 1257,626.7789,489.0949,20.522766,44.144287,5.07 1257,571.1181,213.68988,19.799866,39.337494,5.055 1257,612.9831,454.8594,39.817078,107.42746,5.046 1257,598.8948,262.477,28.699707,64.329346,5.038 1257,556.89087,208.7862,30.588745,58.764526,5.002 1257,535.7209,309.20184,145.00488,343.7021,4.993 1257,426.08914,223.08188,18.200897,35.42801,4.941 1257,499.1345,214.2088,17.209442,39.254044,4.891 1257,593.4228,210.42719,20.402405,45.513306,4.889 1257,505.54102,211.87372,17.85968,42.659485,4.886 1257,410.25784,236.09053,22.498169,47.113785,4.851 1257,-17.47906,-64.89459,55.76252,147.06955,4.829 1257,149.60698,217.03456,30.550827,51.126328,4.813 1257,308.76935,208.57536,30.61905,57.92488,4.772 1257,9.4588585,208.65381,56.876904,111.668396,4.726 1257,-21.575867,402.37543,78.93955,174.57147,4.681 1257,523.74255,213.36642,18.051208,40.61537,4.664 1258,496.81458,204.86774,22.797363,52.468903,56.924 1258,500.08405,208.35287,28.32489,67.59924,14.874 1258,488.81625,213.2516,28.387787,65.88359,10.711 1258,467.92758,247.38696,29.63269,73.572876,10.503 1258,603.43756,217.89519,18.955688,34.812073,7.8 1258,-5.027895,-16.995222,16.670877,41.237656,7.732 1258,494.48352,140.67937,27.503662,77.932846,7.101 1258,616.5436,222.17082,21.66034,55.289505,6.929 1258,606.6286,218.76978,26.120728,67.62604,6.911 1258,390.29385,195.08978,27.631134,59.677246,6.581 1258,135.56415,217.35529,21.323395,39.82663,6.53 1258,511.27927,204.67337,21.609161,47.86818,6.444 1258,553.64136,117.23306,21.691772,51.163513,6.334 1258,-12.315307,477.96548,30.660793,64.08688,5.846 1258,484.0641,223.95203,18.784729,41.82434,5.796 1258,-6.3945055,489.49335,18.821472,43.288574,5.767 1258,515.9651,204.47607,29.763123,57.649506,5.743 1258,-10.829578,-31.303339,28.740786,71.644554,5.729 1258,429.1648,194.2475,28.61792,65.750916,5.713 1258,446.69385,194.43524,28.49228,65.32129,5.701 1258,557.6554,194.68344,28.196167,59.519257,5.651 1258,447.11624,139.66016,24.736908,80.52214,5.595 1258,627.5792,-17.575937,16.943787,46.017277,5.542 1258,476.058,145.9646,28.200043,77.72484,5.539 1258,328.62958,217.09981,21.60608,35.234238,5.497 1258,622.9888,-32.787567,27.037598,74.28558,5.461 1258,481.68866,240.47235,22.190277,42.52643,5.396 1258,267.49493,217.69707,18.028717,25.67752,5.297 1258,612.88525,454.73486,39.90918,107.6709,5.274 1258,459.98856,215.72028,53.38565,115.6983,5.251 1258,-72.9751,265.81775,200.993,462.48474,5.107 1258,473.59955,246.18092,20.377655,38.450607,5.095 1258,562.52325,204.44829,19.102478,39.171753,5.077 1258,3.491879,-14.026866,15.701698,37.89086,5.066 1258,549.42065,203.78806,29.868591,65.35431,5.059 1258,371.4935,200.46954,15.44162,28.596283,5.045 1258,2.1521628,258.0621,20.17042,32.9274,5.041 1258,439.43863,204.02298,27.866852,69.34668,5.021 1258,582.8579,412.4815,71.99072,175.92358,5.018 1258,471.5933,200.93338,37.586334,81.79263,4.999 1258,536.04517,309.5688,144.39722,342.21478,4.965 1258,484.54755,208.0344,17.78125,36.64557,4.963 1258,503.89362,146.77885,21.152283,56.796906,4.951 1258,483.227,196.72266,46.553345,98.51666,4.936 1258,-17.17572,-63.71163,55.692024,144.89502,4.934 1258,353.05756,218.18,22.635193,39.115448,4.915 1258,122.364265,-17.585398,17.919456,40.971504,4.895 1258,506.9781,217.37369,30.960815,69.2547,4.895 1258,555.76715,206.54446,17.605164,34.53305,4.872 1258,453.38483,201.43605,37.85327,83.752426,4.833 1258,584.80725,205.91168,35.767822,88.16327,4.827 1258,626.54297,487.9472,21.033691,45.87018,4.814 1258,-17.696188,437.0597,55.146484,138.03113,4.799 1258,532.88806,260.026,31.56543,74.32507,4.798 1258,566.2486,208.31277,27.888916,66.77054,4.794 1258,618.06354,214.4421,18.811218,39.533844,4.793 1258,146.62624,214.31332,16.981094,30.656708,4.787 1258,602.73004,-55.73532,53.238037,137.35396,4.781 1258,298.28317,215.65071,20.861694,31.209946,4.777 1258,547.9586,206.47797,17.143005,34.003296,4.773 1258,571.25024,152.39148,20.366089,51.297974,4.733 1258,482.80014,233.75974,32.57486,74.97656,4.722 1258,-40.097588,368.73166,110.14584,274.22794,4.707 1258,307.8465,206.05933,31.628876,53.654053,4.698 1258,422.50525,209.90239,27.731598,67.33092,4.687 1258,266.0145,198.30951,18.761017,28.362534,4.666 1258,395.55417,183.01793,17.274628,42.993774,4.665 1258,530.1197,208.82713,20.233948,38.599716,4.634 1258,493.88443,229.00354,236.57187,512.80725,4.627 1258,-4.8591433,139.6512,18.092014,43.09996,4.617 1258,624.0122,210.50668,25.744202,70.27695,4.602 1259,512.66,204.80113,26.824951,79.96144,19.611 1259,559.7553,207.07675,24.41455,82.60251,12.063 1259,486.64612,204.00566,28.425049,76.66377,10.632 1259,359.48682,215.0806,23.980133,44.699738,9.955 1259,486.68887,167.9511,28.407623,78.55284,8.829 1259,433.11093,199.73207,20.911652,47.336594,8.515 1259,422.18817,197.71625,27.9057,62.065765,8.359 1259,-5.1637115,-17.624868,17.075378,42.895676,8.126 1259,427.37982,199.93419,18.766693,41.235382,7.809 1259,565.29553,199.05553,26.988953,70.22792,7.794 1259,443.24323,195.57925,17.077667,33.036987,7.721 1259,617.25214,242.95953,22.715698,63.400696,7.325 1259,502.28424,218.85994,29.406494,72.86424,6.953 1259,450.89062,198.56618,18.661316,38.769806,6.74 1259,368.85474,207.49588,21.345947,38.066345,6.644 1259,377.8441,207.75461,19.198883,37.401917,6.605 1259,3.3306253,-15.270791,15.805283,39.725357,6.34 1259,600.4497,216.75941,32.01477,96.28233,6.32 1259,55.74353,223.26009,23.777588,51.72426,6.211 1259,-11.155935,-32.683266,29.04571,73.23109,6.137 1259,627.3152,-18.315601,17.07898,47.016045,6.105 1259,519.1196,207.82657,32.58539,96.319855,6.048 1259,-6.520536,489.30048,18.988487,43.26837,6.033 1259,76.32209,212.30502,19.258278,33.172638,5.982 1259,413.1828,206.44409,28.69461,73.13159,5.979 1259,90.61658,-21.463161,19.211227,45.594807,5.95 1259,623.1756,-33.792843,26.362305,75.921425,5.9 1259,27.778063,218.76521,31.286604,54.2899,5.881 1259,304.73346,212.44756,21.479889,35.849182,5.861 1259,98.171074,-20.480078,19.055496,44.663548,5.86 1259,-12.453599,478.9879,30.612831,62.897827,5.732 1259,453.7801,193.83571,27.646454,60.582764,5.53 1259,314.2589,221.95422,19.431,31.129456,5.405 1259,395.1007,184.42892,17.422516,39.660492,5.341 1259,613.0008,454.3182,39.958557,107.54068,5.301 1259,363.11368,206.73512,19.391876,31.053818,5.278 1259,457.82837,196.35657,18.985321,39.61058,5.261 1259,608.8241,238.76056,21.951721,40.043945,5.258 1259,267.59854,218.58907,17.340729,26.650696,5.257 1259,532.5563,208.68816,29.349731,78.46684,5.255 1259,-17.63925,-62.940838,56.44361,142.03542,5.253 1259,371.20242,211.60776,30.46933,53.950806,5.247 1259,492.62332,152.37968,30.96524,79.19292,5.185 1259,-3.3731751,192.5093,17.437696,46.137024,5.169 1259,69.344666,-33.730682,29.50196,72.83031,5.155 1259,-72.87328,265.8263,200.97263,462.4818,5.101 1259,437.87476,196.40958,28.55664,61.980743,5.092 1259,583.1459,412.58902,71.633545,175.99118,5.086 1260,72.761055,212.68515,23.249031,44.891327,24.796 1260,476.93604,205.15933,17.378082,36.66678,19.632 1260,498.6534,203.98807,19.04068,41.782806,12.082 1260,171.0174,206.30501,18.722519,27.99884,12.035 1260,591.05695,197.19693,28.231873,64.30432,10.409 1260,482.0421,207.36285,18.766144,41.607544,10.377 1260,80.29189,208.9308,21.777138,42.197815,10.159 1260,504.6366,205.58307,20.257141,48.630188,9.564 1260,521.58234,202.6659,20.13617,48.171112,8.532 1260,487.07214,196.25801,35.811462,86.31178,8.218 1260,472.61212,202.1221,25.483124,56.09659,8.151 1260,404.96832,211.91061,26.870422,61.24295,7.986 1260,599.65094,202.37657,21.729248,35.988235,7.877 1260,54.530445,205.70233,30.562695,59.788635,7.86 1260,553.2198,140.12494,32.279175,75.05942,7.745 1260,-5.340793,-17.064043,17.795311,42.013603,7.697 1260,491.21423,208.66042,20.505127,46.361465,7.367 1260,510.516,200.23123,27.969788,70.33804,7.359 1260,515.1193,201.6163,18.459045,44.826904,7.161 1260,65.53966,206.56775,22.91101,44.908707,7.051 1260,402.9422,214.63486,20.44217,40.746307,6.748 1260,304.4664,209.57573,22.085236,39.053284,6.625 1260,627.6052,-16.866745,16.463928,45.15454,6.568 1260,515.0878,190.33768,39.3797,101.66354,6.535 1260,597.26447,185.91516,36.090027,104.35791,6.532 1260,529.2044,204.73082,20.64441,46.192627,6.456 1260,456.12964,219.51935,24.401184,44.638092,6.3 1260,373.34927,206.65024,27.60019,58.72763,6.268 1260,-10.7441435,-31.48293,29.735432,70.9837,6.261 1260,89.09653,208.26286,19.733192,37.931763,6.246 1260,383.30887,209.35526,22.576172,44.688538,6.18 1260,465.26556,212.98204,20.918945,40.331436,6.136 1260,7.0987678,200.95311,26.949572,64.34645,6.134 1260,586.5847,200.19434,21.299194,38.36206,6.066 1260,-6.4894247,489.1021,19.156338,43.627014,6.056 1260,583.08154,187.72,37.916687,107.9653,6.046 1260,531.9741,190.06404,40.028564,104.765,6.0 1260,623.5346,-33.356316,25.523315,74.62564,5.94 1260,549.04364,187.99338,39.39679,107.07721,5.935 1260,541.9356,141.75421,32.14038,79.79089,5.844 1260,-17.77801,-62.589096,56.21202,140.86388,5.813 1260,2.5982022,148.66736,18.946047,31.880905,5.791 1260,-12.437954,477.28104,30.5919,63.567474,5.668 1260,438.30176,206.1102,36.697296,79.31421,5.649 1260,483.72772,200.40927,15.777863,30.451508,5.615 1260,478.19443,209.09633,28.612457,63.950058,5.608 1260,453.8114,203.01634,35.85846,80.230515,5.52 1260,48.482204,156.45024,21.891552,35.10736,5.48 1260,-5.103215,143.77536,18.258812,36.276672,5.458 1260,34.307785,159.0312,21.293938,37.528458,5.436 1260,616.75653,203.43095,22.306213,53.98207,5.418 1260,17.10798,205.05257,22.802229,47.4196,5.374 1260,611.2959,-50.11668,41.201538,105.42411,5.339 1260,113.2923,243.7481,21.35617,28.158157,5.291 1260,3.3258219,204.065,19.781292,48.735718,5.268 1260,537.2367,205.40761,21.412231,45.201996,5.253 1260,564.3041,183.10992,29.90924,67.75247,5.251 1260,12.029543,-27.062927,55.91028,122.816376,5.239 1260,257.24454,176.47238,18.674469,36.04361,5.231 1260,587.626,64.155495,29.804504,69.94326,5.216 1260,2.9071255,-15.125712,17.06213,38.957527,5.203 1260,460.12994,201.07582,17.417603,36.27997,5.17 1260,520.2082,94.82223,26.623352,95.79438,5.15 1260,594.4453,200.16342,19.85376,29.168854,5.145 1260,66.9568,191.59212,42.24858,72.87291,5.135 1261,597.4507,201.49623,36.837402,96.37468,93.507 1261,504.33582,205.65749,22.715576,50.86937,42.648 1261,407.68,209.75964,22.273804,57.226593,26.247 1261,153.40135,210.95494,21.328506,31.718582,18.123 1261,600.74774,185.16943,31.477295,72.74249,14.502 1261,507.27023,208.7807,30.212921,72.39325,12.227 1261,454.417,137.36249,26.948334,77.60898,11.166 1261,463.84918,227.14172,24.72931,46.6192,9.591 1261,415.53098,206.25131,21.035675,53.088318,9.173 1261,242.97441,215.27644,18.641373,29.174133,8.238 1261,-5.491946,-15.460676,17.329628,40.646976,8.097 1261,448.6989,219.01353,21.926636,46.983566,7.76 1261,617.9571,-5.081871,19.67633,41.404423,7.477 1261,443.0777,207.12988,19.992828,49.39145,7.135 1261,56.34342,201.04034,22.750134,40.67888,7.0 1261,517.8098,217.66783,24.20819,50.836075,6.86 1261,456.40466,221.82758,22.644958,44.15628,6.693 1261,622.19904,-33.261333,27.215942,75.53911,6.55 1261,-0.4622817,220.09319,24.614115,68.91377,6.427 1261,626.8322,-18.63797,17.42566,47.78436,6.427 1261,521.9494,206.90201,18.963013,31.904724,6.42 1261,48.590717,204.72842,22.731243,46.5596,6.21 1261,-5.268136,228.22104,18.826996,50.558746,6.168 1261,495.8792,212.45644,29.457642,69.95561,6.119 1261,-12.804989,-42.21549,41.99756,102.039215,6.048 1261,530.05664,206.01134,20.505005,35.604126,6.043 1261,250.4564,221.24214,17.84282,27.752441,6.042 1261,-4.0382977,211.42267,17.532307,43.609787,5.983 1261,583.0579,205.66803,32.355347,63.54782,5.969 1261,-12.537796,478.30017,30.783094,63.053406,5.764 1261,617.1569,133.48897,21.664734,55.278946,5.755 1261,392.32812,212.33032,28.11914,65.32013,5.592 1261,300.1547,201.57336,29.922821,51.425934,5.58 1262,431.44272,212.14859,22.889374,54.040527,37.16 1262,140.325,209.07971,19.63469,36.4516,24.642 1262,486.55838,203.9343,26.10025,60.40091,21.045 1262,528.3696,203.0311,26.430054,66.634125,13.835 1262,428.33786,225.19362,28.314392,71.23204,13.402 1262,440.03583,208.92482,20.310852,50.232803,13.382 1262,612.36084,121.86603,26.05841,87.40393,12.568 1262,472.81024,196.25893,32.672302,83.93556,11.34 1262,448.61252,215.96661,22.178955,49.356018,9.62 1262,462.9521,213.6748,28.941101,66.24582,9.18 1262,524.391,150.22247,26.9328,79.526535,8.818 1262,472.95404,209.08401,22.885803,50.548584,8.04 1262,512.42194,198.72716,27.41803,65.08272,7.699 1262,426.50558,206.88203,20.6828,46.20601,7.657 1262,617.9836,183.86357,19.04486,43.694366,7.095 1262,-4.9160337,-17.315393,17.207327,45.2747,7.04 1262,532.30176,201.01685,37.175415,92.164,7.023 1262,-10.038915,-33.019753,29.109352,73.49294,6.657 1262,171.3938,209.06233,18.644287,33.732758,6.527 1262,500.55453,201.07896,28.173553,62.052444,6.502 1262,602.2729,-57.69312,53.716614,138.41643,6.438 1262,546.86926,202.20157,39.0744,86.85129,6.317 1262,-4.1658716,22.072432,16.844849,47.158478,6.316 1262,519.6974,179.18631,27.328125,74.706696,6.282 1262,626.62225,488.87186,21.124329,44.400665,6.155 1262,627.3126,-16.780384,16.800781,44.761078,6.09 1262,152.29147,207.07823,18.785767,35.998917,5.939 1262,-18.270294,-61.817413,56.189945,144.22745,5.876 1262,456.1658,219.61224,25.105621,54.16571,5.766 1262,622.7735,-33.653893,26.716125,74.17883,5.68 1262,22.500755,195.3122,28.194721,57.906372,5.413 1263,466.0807,211.93657,22.14325,47.847824,65.419 1263,529.8667,214.30267,21.672485,50.484436,52.999 1263,482.15356,211.4183,19.92804,48.237213,44.376 1263,514.7585,217.47002,20.87262,47.009842,37.718 1263,542.617,209.65,27.22821,60.994812,14.298 1263,558.84015,205.79971,27.830444,64.13547,10.902 1263,521.98883,223.794,19.707458,38.621826,10.531 1263,469.48132,215.23967,26.58023,65.22322,9.811 1263,519.9889,204.08136,26.532349,64.03879,9.499 1263,548.2916,219.98883,30.333496,64.89551,7.978 1263,575.60846,214.5173,27.721558,70.46179,7.801 1263,401.7537,216.09583,19.624634,33.112442,7.505 1263,408.6746,220.56577,19.50473,33.281876,7.369 1263,0.54198384,206.21729,24.51496,57.280945,6.987 1263,113.45608,232.4065,20.971962,26.871887,6.953 1263,418.9691,213.71588,19.388275,35.681488,6.725 1263,306.99893,200.65579,32.512115,56.625854,6.596 1263,385.3235,216.77512,21.045715,34.681152,6.59 1263,376.55383,219.0032,21.562073,34.153625,6.566 1263,623.2356,-33.49111,26.759033,76.08474,6.492 1263,489.15265,221.7613,20.205017,44.377487,6.404 1263,568.54047,219.92638,21.607239,55.475388,6.273 1263,456.08417,218.11522,30.148987,61.895218,6.262 1263,-4.324829,200.67157,18.851442,44.32994,6.021 1263,581.7882,211.09622,35.738403,88.87604,6.016 1263,537.70197,226.05995,20.684753,42.570297,5.996 1263,627.31116,-18.167744,17.318604,46.363064,5.983 1263,581.47455,179.90694,27.389465,77.72096,5.939 1263,48.407154,190.03677,24.751171,37.180084,5.879 1263,394.37024,220.86002,19.865326,32.18286,5.822 1263,427.35754,210.32895,18.836243,37.805984,5.82 1263,-6.252005,488.83945,18.43948,43.631317,5.783 1263,82.16853,231.86754,19.860588,23.965408,5.715 1263,-13.08845,-41.041763,41.970844,101.526474,5.662 1263,-6.125079,-19.39813,19.047123,45.082756,5.653 1263,-9.017879,464.6264,37.778698,91.43158,5.47 1263,337.4455,215.88306,23.117737,36.452454,5.434 1263,-9.450611,179.13162,28.907114,63.93643,5.406 1263,613.01904,455.18146,39.957275,106.80145,5.382 1263,430.13092,201.35428,25.134521,52.806946,5.36 1263,450.96512,214.77962,19.741028,40.866455,5.353 1263,172.32133,116.409096,31.878784,62.93322,5.345 1263,581.4755,62.917477,25.812195,86.82533,5.322 1263,-73.382164,265.21808,201.44507,462.18646,5.293 1264,582.39264,211.23415,23.330505,64.82216,93.413 1264,528.18164,219.35709,22.976074,53.234406,60.457 1264,111.24266,211.74628,22.10234,41.894165,54.056 1264,569.61346,218.4205,21.763428,53.158783,51.743 1264,504.48837,210.18886,24.46231,59.79091,38.217 1264,617.5431,212.5586,20.905457,53.071136,26.639 1264,89.26334,202.96344,21.453323,42.646194,21.775 1264,599.8963,210.17575,24.627258,59.580536,11.628 1264,529.54395,128.64177,17.720459,33.769943,10.589 1264,409.3333,219.47388,20.52118,41.06546,10.308 1264,530.66125,221.358,31.907776,72.766174,9.34 1264,610.43365,219.10887,20.613098,46.503494,9.132 1264,494.00397,218.03839,29.06366,66.98187,8.798 1264,591.52185,207.75752,21.382385,57.500473,8.733 1264,-5.3522635,-17.285671,17.600872,43.36716,8.42 1264,508.5303,218.5708,29.756744,67.21051,8.417 1264,384.57645,216.98096,19.502716,37.301514,7.374 1264,434.80038,213.69547,19.259949,44.803436,7.079 1264,72.017166,192.51169,29.909698,57.674103,7.031 1264,561.4872,211.58783,22.2594,52.84607,6.689 1264,426.83994,215.59671,19.139984,44.58539,6.66 1264,537.62964,129.19191,17.397034,32.59738,6.617 1264,490.14752,227.35078,21.184387,43.305984,6.55 1264,506.9582,201.46669,19.797241,44.31697,6.515 1265,93.76153,207.2113,24.00637,45.389816,86.078 1265,553.0094,206.26538,29.021912,64.10095,56.856 1265,583.8783,214.8561,24.481506,69.721085,40.965 1265,441.23358,211.76521,20.23291,46.01808,33.367 1265,390.44888,217.3225,21.977997,40.16426,23.943 1265,457.67307,210.11185,20.373688,50.989563,22.902 1265,612.5861,225.52872,24.346375,90.44574,21.53 1265,497.71024,212.62874,21.643585,49.735275,19.333 1265,590.3326,219.36705,28.005798,78.265396,19.29 1265,417.9513,216.80325,20.633331,38.198517,18.155 1265,483.14822,211.67358,19.169891,48.607513,16.69 1265,490.4211,212.69771,20.219757,49.653854,15.224 1265,565.31323,209.97581,26.507324,70.159225,13.455 1265,233.59708,216.2976,21.973526,39.625244,12.728 1265,448.154,211.78302,26.159332,65.78839,12.246 1265,72.847,200.16725,20.82547,42.02806,10.949 1265,56.176838,202.63759,23.14471,44.00972,10.842 1265,471.08673,210.58273,26.816254,66.01279,10.436 1265,455.0592,206.81134,34.740875,72.73236,9.636 1265,526.90216,205.26416,27.032715,57.111023,9.524 1265,98.464554,194.91988,28.801544,53.21074,9.33 1265,486.0696,205.40982,34.67752,77.485596,9.279 1265,352.46353,218.61363,21.324463,36.3638,9.103 1265,502.36786,203.53043,36.119812,78.87967,8.431 1265,600.6516,211.11069,30.86731,89.30234,8.346 1265,48.26722,209.32333,25.138954,41.912872,8.202 1265,503.81375,210.19649,20.210785,38.366837,8.153 1265,538.8886,200.29018,34.755493,81.99687,8.101 1266,77.442276,203.45547,28.37162,57.90982,67.713 1266,448.27817,212.48254,20.810852,45.69156,55.703 1266,471.15414,216.79175,18.998016,44.594666,52.107 1266,614.1906,205.8805,23.79718,66.07126,48.9 1266,493.4998,216.20316,16.401093,40.22705,45.27 1266,516.0291,218.31099,19.577026,39.284164,32.839 1266,560.241,218.71033,23.797974,43.154175,23.808 1266,507.93616,219.24182,17.63385,36.8031,15.268 1266,517.474,218.15553,26.390076,62.998734,14.684 1266,550.9598,214.03433,36.806274,80.60684,14.286 1266,601.79285,203.46689,31.677368,97.23334,12.76 1266,576.7854,219.4899,22.908936,46.00348,11.503 1266,393.93326,217.72017,21.10608,42.327744,10.88 1266,209.40565,214.12221,21.968018,40.150726,10.211 1266,425.7043,217.41425,20.86728,38.91461,10.051 1266,456.00867,216.5883,22.32074,45.918716,9.932 1266,483.38788,217.66962,17.730164,40.875183,8.933 1266,619.65173,212.46828,26.368042,75.43855,8.104 1266,567.003,221.17447,24.029358,50.365234,8.049 1266,499.2375,223.14612,17.188354,39.319946,7.882 1266,540.02954,219.19955,31.287476,56.09735,7.55 1266,62.36886,199.30212,30.570137,65.63202,7.409 1266,-10.259062,-29.907839,28.981087,71.463905,7.274 1266,592.42725,213.96616,22.244751,44.91974,7.249 1266,48.76265,201.0824,22.335205,46.954468,7.24 1266,-5.7246165,-16.718702,18.615517,43.31171,7.201 1266,583.36237,208.24593,34.59247,88.711624,6.769 1266,562.76807,213.63608,40.373474,97.83008,6.644 1266,504.31534,221.13834,26.769806,67.06531,6.628 1266,94.3055,204.1255,22.938751,47.7782,6.583 1266,546.4652,221.23932,21.01648,36.730713,6.532 1266,217.5632,209.4508,18.874557,36.62549,6.48 1267,520.6096,215.73557,22.583313,46.467133,89.065 1267,474.77954,213.14099,20.0784,49.26889,69.257 1267,597.76685,221.23415,29.391235,69.6707,47.989 1267,448.582,217.61086,21.153595,45.839462,44.749 1267,107.6853,203.92749,31.044601,57.455353,30.286 1267,500.67438,211.89998,17.766296,44.59825,29.719 1267,427.26413,219.61331,20.213959,40.115814,17.394 1267,582.1897,219.8854,39.559937,92.288605,17.013 1267,65.49046,194.63622,23.59906,54.075455,16.756 1267,174.26987,217.95578,24.799423,43.254883,14.317 1267,506.1197,213.25726,20.081726,47.19397,12.395 1267,77.21414,197.38858,27.8414,58.253174,10.922 1267,399.33426,221.06825,20.365906,40.655228,10.462 1267,465.40204,200.57451,25.37967,59.638107,10.323 1267,584.1529,225.79836,24.012878,55.77925,10.283 1267,574.3982,232.71738,29.426453,69.34418,9.527 1267,455.40723,221.22302,21.861298,45.48001,8.72 1267,442.34705,210.52084,22.048553,44.97473,8.589 1267,44.03339,195.59772,30.227093,57.950043,7.414 1267,-10.8877945,-31.981155,28.673618,73.446495,7.334 1267,-4.986594,-17.27827,17.229988,43.114994,7.317 1267,613.06616,451.77866,39.957214,109.67502,7.15 1267,573.3268,211.01788,54.196167,161.06897,7.044 1267,548.53265,226.31763,39.722046,80.75104,6.996 1268,475.23718,218.37149,21.108917,47.418213,85.198 1268,521.57495,216.61588,20.054321,46.20453,80.121 1268,451.16754,220.31169,20.477173,43.76155,69.006 1268,606.423,218.9971,27.76471,75.91672,47.847 1268,505.98944,214.05806,17.717163,44.61049,33.41 1268,398.8074,220.60225,21.727844,43.46144,21.09 1268,432.84967,223.85945,20.018738,40.435867,18.357 1268,591.6363,225.84308,29.248047,66.83539,16.403 1268,592.11975,220.93443,40.801025,128.07735,14.983 1268,442.62762,222.363,21.265015,41.356567,10.035 1268,584.8684,235.36327,23.008484,49.032333,9.963 1268,113.75009,205.3306,22.00084,36.29947,9.628 1268,330.8819,212.41777,22.249084,41.45099,8.654 1268,465.48962,210.48323,25.283997,55.95729,8.397 1268,488.0326,218.65787,20.4003,44.98465,8.185 1268,168.68356,205.55807,23.38861,44.287857,7.638 1268,194.29472,211.01985,20.162964,39.248337,7.587 1268,566.58984,225.58499,37.385254,88.56769,7.523 1268,-5.591614,-17.785316,17.489809,43.207832,7.519 1268,-11.26129,-32.212757,28.92025,71.38364,7.383 1268,612.0897,225.75156,35.23932,118.58713,7.178 1268,499.42474,221.61908,20.58313,43.115936,7.169 1268,-1.4613461,189.87,27.370804,65.28732,7.073 1268,626.981,489.3468,20.143494,43.402405,6.936 1268,597.648,211.18423,27.836975,64.41528,6.77 1268,307.8934,205.71896,30.34317,67.6055,6.397 1268,360.2282,232.09906,22.632477,31.147583,6.394 1269,515.4548,219.02788,22.087402,47.060135,81.486 1269,474.63647,218.03273,21.69751,50.40114,79.674 1269,506.32706,216.17914,20.03592,45.835114,45.893 1269,599.0918,221.3028,29.334778,73.65973,41.227 1269,451.0536,221.98387,21.261475,44.94963,35.262 1269,398.12646,222.82033,23.497498,43.40782,22.014 1269,499.63593,213.1702,19.45636,46.608276,17.865 1269,246.79176,207.56201,23.649094,43.3853,16.479 1269,432.59128,226.2805,21.245026,39.12935,15.594 1269,590.9506,222.36923,42.098022,132.5234,12.971 1269,467.15094,214.25589,21.708984,51.13321,12.6 1269,583.69824,236.46608,24.335327,50.79857,11.151 1269,61.21949,199.30524,26.941917,60.286865,9.477 1269,592.67957,230.48407,24.619751,56.90808,8.723 1269,36.84614,201.40239,27.898792,68.22624,7.726 1269,564.67804,231.3029,40.033936,98.88811,7.571 1269,-5.3766036,-17.55015,17.249588,42.799076,7.092 1269,488.40253,218.38257,21.230713,47.768066,6.815 1269,627.0965,489.49872,20.166443,42.788635,6.728 1269,441.6297,224.38126,21.821472,41.228577,6.625 1269,-11.277004,-31.908577,29.107552,70.73896,6.541 1269,457.70697,210.20581,21.955841,50.959717,6.144 1269,233.88579,211.08585,20.845932,39.321915,6.029 1269,-6.320449,488.265,18.985577,44.134705,6.011 1269,618.1199,214.11816,19.08966,49.525146,5.99 1270,511.7561,218.91502,22.365967,48.865067,92.121 1270,474.55307,218.96529,22.19516,48.54808,74.188 1270,450.43488,224.56297,19.868439,42.30739,48.746 1270,50.3686,212.6056,26.018806,46.431076,47.339 1270,601.0395,223.73666,27.401794,71.46091,35.824 1270,500.85107,215.95941,20.753845,48.38202,13.322 1270,433.79153,230.50731,19.855011,36.4749,12.931 1270,583.60736,237.56879,23.674194,47.522095,12.682 1270,592.4782,222.5761,41.303345,131.77669,10.821 1270,585.9713,224.04018,36.04712,90.32384,10.682 1270,57.869755,208.8151,29.364101,54.557373,10.385 1270,400.69574,227.1661,21.777466,38.878784,10.144 1270,466.8764,212.42473,22.232452,47.994034,8.641 1270,5.3952265,199.8031,28.96254,67.14307,8.233 1270,456.1626,217.16135,21.505096,46.451813,7.842 1270,-5.1532116,-17.093634,16.98808,42.17964,7.811 1270,566.3168,228.12527,37.998047,82.569855,7.592 1270,40.48788,206.70953,37.75275,71.33276,7.277 1270,240.53719,216.01501,22.138474,40.75183,6.946 1270,20.267635,188.79749,27.807201,68.388855,6.946 1270,617.6261,213.4439,20.120728,51.879074,6.825 1270,385.95258,218.64072,21.069214,42.17862,6.796 1270,612.69385,220.92938,24.726929,82.670105,6.792 1270,486.42548,219.79678,22.078857,48.054626,6.792 1270,27.222477,207.62952,29.942356,59.336853,6.689 1270,393.91736,220.25441,20.195679,42.90773,6.651 1270,-11.072774,-32.265064,28.774384,70.88259,6.539 1270,307.2534,206.60147,30.09201,68.33212,6.529 1270,38.630558,189.1403,29.47433,63.696396,6.504 1270,626.88086,489.44162,20.312134,42.938324,6.445 1270,-6.332667,488.18808,18.936316,44.02127,6.439 1270,-4.7675257,169.6793,18.482384,46.848373,6.341 1270,443.28833,229.28311,19.93161,38.027527,6.174 1271,506.7415,218.8611,23.173126,48.373184,85.723 1271,475.61752,220.44304,21.62201,46.342117,84.589 1271,450.63965,224.00092,19.605347,41.414307,61.777 1271,601.61743,223.35487,24.573914,69.05815,32.39 1271,433.4356,227.05899,19.604675,36.715424,22.161 1271,400.2998,227.1772,22.715393,40.899643,16.424 1271,110.91211,206.44109,24.894653,52.290176,13.043 1271,584.74146,239.10782,22.450378,46.27719,12.694 1271,443.11517,225.7461,20.16217,38.504944,11.573 1271,135.94247,210.836,23.664993,42.256287,9.893 1271,500.60574,215.9521,19.694122,45.841476,9.519 1271,591.359,234.74994,26.344116,68.30267,9.145 1271,598.07605,227.26172,34.690796,112.64569,8.843 1271,626.0111,229.8607,17.934204,53.997818,8.568 1271,125.03841,209.05269,29.677353,55.785416,8.103 1271,486.99396,220.27223,21.618439,47.573074,7.589 1271,93.16947,199.387,31.029625,63.238586,7.337 1271,52.42404,199.45325,38.29827,74.005615,7.293 1271,578.62573,223.10846,41.94684,122.62854,7.223 1271,119.47475,208.50902,22.267578,41.53354,7.201 1271,80.79952,206.64496,22.98214,48.25937,7.156 1271,-5.4369206,-17.639355,17.282213,42.939396,7.124 1271,512.3136,213.44147,28.114624,58.685486,6.951 1271,-11.226245,-31.859917,28.99812,70.54045,6.768 1271,627.17065,489.7162,19.781616,42.738464,6.643 1271,565.1384,232.58008,39.12195,96.281555,6.558 1271,616.80676,223.56488,22.097534,81.21643,6.385 1271,16.347399,179.1191,27.066122,78.56404,6.358 1271,456.66644,228.77373,19.592651,41.715042,6.334 1271,114.98074,202.70407,18.97702,35.689743,6.278 1271,468.24265,215.70955,20.620117,43.18434,6.23 1271,-4.9521556,169.0469,19.149273,47.21768,6.185 1271,63.08763,210.37477,24.546814,44.90509,6.183 1271,56.954147,207.48181,21.852509,41.43123,6.149 1271,-6.15721,488.8325,18.627655,43.24881,6.132 1272,504.8745,216.87386,23.102905,49.91194,83.034 1272,475.92633,221.61133,21.312897,45.017944,79.984 1272,54.222992,204.44296,26.407486,53.889404,56.647 1272,602.25854,223.72656,24.295166,69.131226,44.121 1272,451.1518,219.5988,20.725769,46.163376,39.174 1272,301.87045,204.26505,29.456757,61.692627,30.083 1272,32.922646,200.31567,21.46177,50.32065,25.114 1272,42.27543,203.71501,22.493858,50.221375,19.857 1272,584.8524,238.6984,22.134705,47.15802,13.937 1272,431.89603,222.25174,21.303009,40.86612,13.377 1272,400.36404,224.73727,22.61206,41.70102,13.056 1272,598.4011,224.26501,34.48633,115.89606,11.069 1272,625.8839,230.12628,18.077393,52.95038,10.563 1272,352.35376,225.09467,23.91571,43.01294,10.093 1272,591.51,234.51318,26.510376,69.06354,9.874 1272,581.6476,225.97531,37.221375,109.41522,9.745 1272,499.7425,210.99693,19.65979,43.106735,7.857 1272,-5.4314857,-17.951345,17.374168,43.198997,7.585 1272,425.08728,214.12146,21.774292,42.3179,7.485 1272,616.4974,224.5267,23.11731,79.89996,7.465 1272,565.4999,231.66,38.82788,98.98886,7.361 1272,487.51862,219.81042,21.696106,48.92871,7.318 1272,36.888496,180.4983,39.027443,75.62633,7.204 1273,504.16577,216.75063,22.256836,52.486282,85.712 1273,452.52408,218.25159,20.37967,43.191986,36.648 1273,476.62662,220.14438,17.621094,39.16565,33.825 1273,602.9359,229.2025,24.06372,67.97981,30.123 1273,50.117508,214.7614,22.430832,43.826553,22.483 1273,584.8777,238.76073,22.695923,47.692886,20.509 1273,591.447,230.14622,27.8266,63.508743,13.603 1273,53.858215,199.08952,27.144089,58.06395,12.182 1273,598.51825,224.78973,33.999207,115.045715,11.656 1273,185.16106,215.64029,24.252838,42.816406,10.776 1273,468.93304,220.27255,17.87851,38.86432,10.279 1273,619.1885,233.5729,18.03888,63.991394,9.758 1273,580.28534,222.37025,41.34027,122.46098,9.172 1273,512.36707,214.77232,21.32959,49.19023,8.58 1273,439.89426,215.24055,30.004425,55.62462,8.31 1273,626.068,239.8967,18.746094,56.66162,8.272 1273,-4.6565905,171.67508,19.366066,53.643707,7.577 1273,-5.329745,-17.307705,17.232521,42.68026,7.545 1273,481.3124,218.73213,19.718933,50.89766,7.46 1273,612.1256,224.1811,31.150146,104.261826,7.305 1273,393.95157,209.90321,21.6698,44.614853,7.266 1273,394.92844,198.5751,17.245575,40.00386,7.21 1273,-11.022693,-32.094173,28.799694,70.81476,7.06 1273,627.22424,490.18954,19.79779,42.233246,6.985 1273,424.3864,212.80637,22.054504,43.21585,6.887 1273,490.28445,217.4088,20.608765,51.767166,6.657 1273,567.96533,229.58655,36.040527,83.27966,6.636 1273,73.04365,209.98795,21.32193,41.8394,6.527 1273,432.47925,215.09991,21.88388,44.178436,6.444 1273,-6.2005157,489.07645,18.431606,42.51468,6.358 1273,-0.58998346,157.70477,26.04938,77.1994,6.331 1273,499.8198,212.53653,19.49704,41.549774,6.268 1273,519.372,222.27708,22.71466,46.577377,6.221 1273,605.37933,236.66504,46.214844,144.31189,6.073 1273,627.2469,-18.178936,17.26825,46.30631,5.994 1273,-8.618805,464.03348,37.57185,92.87906,5.96 1274,595.6706,218.63866,34.520813,105.52797,58.734 1274,54.0541,210.52846,22.911812,49.043625,51.153 1274,400.18234,222.90472,21.822083,44.935516,39.869 1274,451.90308,224.22243,19.68982,42.24263,36.197 1274,186.25037,213.65292,22.923508,44.591736,14.933 1274,613.8917,224.92694,22.9599,81.601135,13.581 1274,433.17105,226.41287,20.059174,39.707184,12.96 1274,608.3693,227.57559,21.13678,63.641174,12.099 1274,593.193,222.47095,25.956177,62.727753,11.63 1274,578.3351,206.71207,49.014038,164.65274,9.612 1274,60.31552,201.8496,28.467316,57.42366,9.389 1274,611.5981,224.60735,34.915833,120.313065,8.075 1274,-5.290227,-17.795567,17.249779,42.94419,7.291 1274,622.3235,230.99004,24.840515,77.13039,7.243 1274,442.48154,225.47748,20.4581,40.645386,7.142 1274,73.88932,207.33574,21.17495,43.04071,7.134 1274,476.07068,215.66173,15.786041,33.92775,6.797 1274,-6.1315956,489.2023,18.45253,42.374054,6.758 1274,627.0114,489.68582,20.04132,42.58499,6.732 1274,298.9684,207.46622,29.1268,60.46991,6.627 1274,-5.1594486,168.91724,19.23405,47.884277,6.615 1274,-11.277143,-32.15325,28.824135,70.439316,6.546 1274,583.22815,230.8612,30.102844,81.38104,6.53 1274,457.53055,215.92316,20.496002,43.2511,6.38 1274,512.2124,226.60959,45.0011,80.967926,6.18 1274,573.7259,217.8714,32.3443,62.687378,6.058 1274,244.86761,203.31345,29.164795,55.145996,6.023 1274,627.3148,-18.110483,17.14569,46.63109,5.885 1274,-8.801403,464.47992,37.726433,92.02826,5.876 1274,397.01233,215.35918,18.60904,43.149826,5.854 1274,500.01025,212.66876,33.359985,63.732513,5.851 1274,549.1851,202.51572,28.362976,64.8082,5.842 1274,42.298412,191.89066,29.878284,65.93652,5.811 1274,595.252,209.56546,18.904541,37.831223,5.755 1274,626.1134,223.88158,18.255737,53.000504,5.655 1274,506.0591,207.9288,18.680756,29.614868,5.651 1274,452.66205,-34.407574,29.369507,73.31067,5.642 1275,499.53766,217.37143,22.261719,50.32364,78.135 1275,474.9503,222.53918,20.807007,44.8526,77.554 1275,451.5002,224.01979,19.771942,40.004105,64.993 1275,51.278008,203.48529,31.50161,55.713104,62.309 1275,511.03326,218.1024,21.780273,47.500504,33.5 1275,466.89755,222.27838,20.242157,42.07837,32.898 1275,399.96338,223.85448,21.860962,43.6465,32.78 1275,185.69823,214.19789,22.757248,43.161118,16.75 1275,598.28375,221.36827,33.432312,93.62508,15.665 1275,443.50082,224.61711,20.128662,39.74376,12.592 1275,434.12024,226.59605,20.276001,37.733017,12.151 1275,489.28024,221.22661,23.916351,49.160416,11.593 1275,581.1632,219.72823,43.521423,130.27965,10.748 1275,601.6886,228.49847,20.993958,60.039368,9.286 1275,458.19208,216.51198,19.803833,44.287735,9.17 1275,617.669,233.94028,20.078552,65.440125,9.081 1275,589.4793,237.22768,29.620056,79.01366,8.3 1275,68.30341,199.70921,30.84127,57.76747,8.142 1275,-5.193996,-16.970066,16.975143,41.960835,7.917 1275,593.0056,214.10724,28.037964,62.61902,7.5 1275,37.92388,180.23352,32.34379,74.96304,7.5 1275,622.4831,236.72101,25.21521,76.51819,7.269 1275,627.10474,489.7173,19.926208,42.437073,7.26 1275,393.19034,208.50636,24.158875,56.4554,6.83 1275,-10.991133,-32.220413,28.686224,70.20763,6.716 1275,-5.016612,169.50513,18.872814,46.699722,6.413 1276,504.29083,218.8376,21.994629,48.835617,78.356 1276,547.61346,221.3743,22.72113,49.552643,61.024 1276,475.8975,223.62512,20.144684,43.434387,60.091 1276,51.64338,205.89804,29.943764,54.735626,57.855 1276,449.6378,224.96527,19.921387,41.259186,43.484 1276,400.30597,226.30594,21.79422,41.57773,33.409 1276,600.8721,225.14136,23.497498,68.021545,24.103 1276,584.25385,236.08257,22.406433,48.613083,17.506 1276,620.22253,231.34793,18.06543,58.71051,16.608 1276,433.63022,226.54308,20.400055,38.33995,15.766 1276,468.09543,222.5956,19.622742,42.91487,12.359 1276,584.4829,225.64615,32.507507,84.919464,11.498 1276,593.6216,229.59953,22.583801,49.492477,11.064 1276,186.48022,214.01239,22.070557,44.249084,10.105 1276,597.82635,225.63025,34.70404,113.97168,8.814 1276,488.2105,221.08095,23.194977,50.47905,8.19 1276,610.10913,230.3529,18.650635,56.858826,8.01 1276,512.7648,213.51485,20.904785,49.76268,7.969 1276,-5.3871994,-17.115286,17.164248,42.20386,7.891 1276,613.05457,216.66653,30.86853,94.89383,7.498 1276,625.8964,225.46341,18.106323,52.163116,7.301 1276,536.02545,218.33195,36.4339,71.353134,6.948 1276,-11.054269,-31.802067,28.828056,70.11055,6.94 1277,543.35596,218.64613,21.36267,50.84001,79.732 1277,504.26154,218.30249,22.34613,48.77304,77.871 1277,475.4163,221.99472,20.465698,43.79489,74.094 1277,50.02529,205.10603,30.590813,56.331955,55.393 1277,448.73337,224.46121,19.49585,43.01602,54.357 1277,434.56854,226.96199,20.004639,38.501724,36.565 1277,602.038,223.90846,23.101074,68.166,19.111 1277,399.09363,226.17969,23.226257,40.99301,18.763 1277,620.9699,232.96318,17.11676,55.120224,14.621 1277,584.03204,237.213,22.018127,47.60457,13.946 1277,456.0745,223.22115,20.116333,45.121933,11.955 1277,186.07347,214.43927,22.438278,43.30844,10.682 1277,519.61237,216.53578,19.685608,44.704544,9.664 1277,625.8982,225.43234,17.64624,52.08969,9.49 1277,59.500637,188.23344,30.375996,70.01515,8.992 1277,488.37326,220.91605,23.672333,49.579742,8.524 1277,428.58905,225.02373,19.10736,36.35701,8.472 1277,591.14374,234.40128,26.477783,67.46176,8.311 1277,73.09201,202.15016,22.0568,49.12004,8.213 1277,438.91632,215.71342,24.642365,49.62007,7.954 1277,581.1057,226.42401,37.485046,107.25073,7.801 1277,597.75946,228.06648,34.97522,111.52159,7.791 1277,110.85158,198.32387,24.65155,62.67021,7.669 1277,531.6732,218.71983,22.336304,47.54329,7.378 1277,535.0595,218.13942,35.418945,68.714615,7.312 1277,-5.349958,-17.706614,17.20606,42.791683,7.238 1277,37.6969,178.37585,40.21576,78.23697,6.863 1277,-6.2330694,488.8313,18.591732,42.558105,6.584 1277,627.16534,489.12512,19.66449,43.46411,6.569 1277,613.20764,216.83087,31.106812,93.80603,6.564 1278,503.71906,216.75893,23.483215,51.70015,84.191 1278,478.34113,223.97215,22.135529,44.061783,77.138 1278,533.76044,217.24655,22.457153,49.24524,72.961 1278,55.08873,212.29205,24.365608,47.21814,68.065 1278,600.8043,223.96619,25.432617,68.187744,54.394 1278,442.73987,226.85178,19.260681,37.909576,46.234 1278,400.2417,225.23914,21.517883,43.480835,24.585 1278,584.0515,237.28354,23.218506,48.32715,17.53 1278,435.2486,224.45728,19.802856,38.845703,16.769 1278,486.25748,220.79126,23.124908,47.783875,13.03 1278,625.89343,230.08652,18.73816,53.80475,12.278 1278,46.741596,188.19206,27.760906,71.14906,11.689 1278,591.85297,233.23047,27.084656,69.464966,11.265 1278,522.41974,217.84766,22.274109,47.925507,10.79 1278,597.5829,223.56757,35.261658,114.54181,10.646 1278,186.17358,216.65726,22.466171,40.691437,9.575 1278,581.0689,224.54141,38.425903,109.551575,9.386 1278,43.026207,206.95801,22.803482,46.73468,8.71 1278,59.241707,190.22922,28.823868,65.044266,8.381 1278,511.6394,212.21362,22.041382,49.953033,8.268 1278,448.94434,228.78575,20.666382,40.631393,7.694 1278,-5.4276032,-17.698648,17.277607,42.954216,7.428 1278,616.8447,227.17117,22.766846,77.78223,7.365 1278,468.6787,220.92131,21.384796,46.251053,7.23 1278,567.32874,227.1661,36.526733,80.28195,7.063 1279,476.133,223.67955,17.654083,44.00923,77.174 1279,505.1149,218.0685,20.181,47.991653,67.737 1279,53.81981,212.40527,25.796043,45.128235,58.98 1279,491.0006,222.19678,18.395813,45.65045,57.029 1279,441.98175,223.52103,21.409637,41.197144,53.409 1279,600.712,222.0298,24.339417,69.46846,41.508 1279,524.8011,216.27869,23.606873,47.598145,39.929 1279,482.50635,222.58383,18.039734,43.082428,25.001 1279,399.19324,222.62724,23.202972,45.7939,22.675 1279,433.2934,219.36708,22.124115,44.434128,20.513 1279,512.38165,216.65312,21.690308,45.844986,15.74 1279,584.1197,236.97649,23.397156,49.268265,15.04 1279,620.6926,228.4263,18.015137,64.87753,13.325 1279,45.744865,191.56105,28.9646,64.50011,12.958 1279,185.86305,215.43275,23.51178,42.51738,11.897 1279,41.34022,204.68596,23.287556,44.8351,11.17 1279,591.8658,231.89923,26.742981,70.34564,11.082 1279,598.16534,223.11987,34.60431,116.6626,10.385 1279,497.52335,224.45474,21.141205,48.25476,9.92 1279,579.6949,220.98093,41.74237,124.963165,9.338 1279,58.238426,190.0595,31.314713,63.16298,9.086 1279,-5.258831,-17.263084,17.060328,42.33795,7.687 1279,448.82156,227.59195,20.8685,42.003845,7.664 1279,246.79382,211.97835,29.080383,56.154526,7.551 1279,626.9968,489.69962,19.958069,42.68631,7.534 1279,612.01514,216.48492,31.167725,95.65637,7.301 1279,623.9173,214.19972,23.424622,72.70262,7.18 1280,474.9566,221.15276,21.348785,46.95674,86.674 1280,504.16846,218.70337,24.251831,49.398315,83.268 1280,54.203754,212.96432,24.004246,47.628326,81.438 1280,600.9016,227.8453,25.085144,67.67117,57.527 1280,440.9056,223.78035,22.608368,41.671677,56.409 1280,400.44305,224.15152,21.56839,43.220947,28.364 1280,33.222847,207.3529,21.814339,42.20305,24.124 1280,186.0787,213.62721,22.764816,45.27025,16.918 1280,583.065,236.1164,28.353088,61.487976,15.65 1280,598.5259,223.91527,33.545166,114.41524,15.594 1280,41.44803,208.05508,21.951462,44.442352,14.169 1280,427.72598,223.10371,22.614655,42.341873,13.597 1280,582.5191,227.88733,37.167114,105.70227,12.615 1280,23.934488,203.12338,25.651617,53.29132,10.984 1280,616.18774,227.05258,23.37976,79.88699,10.599 1280,517.53125,217.97859,22.973145,42.973557,10.461 1280,448.2951,227.93549,21.816223,42.670685,9.704 1280,487.62494,220.29349,23.927551,52.199097,9.25 1280,565.88055,232.81332,39.050232,96.45685,8.83 1280,-5.2712708,-17.29061,17.152279,42.561203,7.488 1281,475.3689,219.6476,20.782288,49.55815,90.324 1281,523.79205,224.09326,21.331787,44.14633,77.967 1281,498.0854,217.23787,22.41272,51.992264,75.83 1281,597.5673,227.0295,27.744019,70.051926,73.982 1281,54.016808,212.81425,25.853264,48.715836,72.425 1281,441.68414,223.4991,21.677856,42.393173,56.642 1281,490.18262,218.62883,21.541687,49.943985,25.155 1281,400.01248,224.0303,22.244293,43.868774,20.184 1281,514.8342,221.4472,21.60205,45.320953,19.169 1281,24.553112,200.42848,20.072247,46.18553,16.435 1281,592.4262,223.32516,40.743164,121.82312,13.084 1281,185.6643,217.57428,22.290573,41.187653,12.114 1281,9.169983,201.55084,22.518627,50.586533,12.041 1281,618.15546,238.06781,20.734192,66.5788,9.563 1281,427.9917,223.72977,21.79663,41.502686,8.927 1281,626.08093,238.2952,18.58435,51.937805,7.876 1281,-5.259222,-17.070368,17.040806,42.01333,7.76 1281,59.040634,190.69916,30.788551,65.15015,7.569 1281,448.59433,227.76094,21.090698,42.48207,7.411 1282,52.011242,207.9056,28.120785,52.015976,77.628 1282,597.12683,228.63167,27.529297,68.114456,72.87 1282,616.5998,227.46442,23.150024,80.21063,23.042 1282,598.1401,220.62834,34.68622,116.44914,18.239 1282,400.59677,224.34894,20.320435,44.812866,16.702 1282,185.95721,214.7743,22.884354,43.901962,11.424 1282,624.66364,237.0853,18.99945,53.855377,9.964 1282,17.066742,202.23703,21.517735,47.061905,8.736 1282,1.1390579,202.16968,20.778435,51.492203,8.321 1282,59.561104,192.29752,29.816933,63.90512,7.918 1282,528.74426,233.8818,45.37671,70.09845,7.809 1282,-5.4127936,-17.168669,17.215992,42.631855,7.746 1282,601.2544,220.51064,18.670593,50.19432,7.639 1282,594.8925,205.0859,20.254822,48.268646,7.458 1282,359.24606,232.26262,24.413239,33.409683,7.28 1282,627.2153,489.86414,19.545044,42.86023,7.257 1282,-11.286164,-32.041233,29.089058,70.75619,6.827 1282,-6.1473017,488.778,18.616241,43.199524,6.712 1282,580.2473,218.82379,46.103333,154.45941,6.598 1282,-4.840702,169.93164,18.318073,46.79149,6.302 1282,612.77454,236.80331,35.703186,126.776245,6.173 1282,627.234,-17.426834,16.97461,45.882896,5.856 1282,545.6799,235.29399,42.918518,86.875565,5.852 1282,-8.907119,464.90497,37.744354,91.972595,5.817 1282,-3.6097562,199.84924,17.83809,46.700455,5.683 1282,352.1751,226.267,21.612885,32.703644,5.674 1282,81.9754,207.16966,20.87249,45.459396,5.643 1282,504.40375,214.10883,20.930481,34.575226,5.619 1282,7.983183,199.56662,25.393782,57.803772,5.594 1282,376.9898,222.65666,20.755829,35.286026,5.59 1282,396.63406,216.70468,17.591858,38.61331,5.564 1282,612.83997,453.08276,39.402588,109.907104,5.49 1282,-8.21494,164.5083,26.272507,73.86871,5.415 1282,612.334,188.5683,35.39148,98.884705,5.405 1282,602.3243,-54.67952,53.800232,134.64099,5.402 1282,452.8199,-34.362312,29.288849,73.71291,5.352 1282,565.0123,231.26968,40.580322,95.55441,5.33 1283,475.47125,219.90918,21.46933,47.739807,87.647 1283,555.3698,226.80266,22.56073,45.559402,85.17 1283,502.85425,217.32678,22.993408,50.371063,84.721 1283,52.289463,208.95811,27.993244,52.267197,72.376 1283,441.9911,221.3762,21.89032,44.533127,48.907 1283,600.8936,232.95084,20.125488,57.417847,35.007 1283,400.65405,222.80833,23.123352,46.441086,24.116 1283,0.11891246,202.22678,21.322615,50.68199,16.422 1283,602.2265,223.1354,30.314453,103.08325,15.483 1283,616.96155,227.99635,21.71222,79.82744,14.567 1283,592.54865,234.12585,24.776428,81.490295,12.328 1283,590.1486,237.59436,18.905212,43.700867,11.695 1283,488.3459,219.62419,24.158325,52.12114,9.544 1283,186.0307,216.52426,21.443375,40.351074,8.836 1283,610.69086,232.30373,19.327332,65.01375,8.415 1283,427.29385,222.58353,22.189331,42.12204,7.77 1283,612.6855,227.39197,32.82135,118.84375,7.502 1283,-5.323557,-17.196518,17.090178,42.08436,7.486 1283,550.53986,220.35889,33.304443,72.27197,7.377 1284,474.70233,218.10773,21.97702,48.824127,91.579 1284,501.72888,216.98099,24.040588,49.445953,85.39 1284,600.37256,234.38637,20.639343,54.82167,60.499 1284,442.6868,220.0289,19.77533,45.282745,58.75 1284,574.2479,226.20712,21.562256,43.644867,42.705 1284,399.24475,223.32962,23.426788,47.39444,38.332 1284,435.14996,221.45332,20.194916,43.17656,33.39 1284,619.75385,238.2702,17.432983,61.797546,17.712 1284,601.74976,221.33095,29.82788,90.3553,17.048 1284,428.37946,219.26741,18.97879,43.062454,10.605 1284,185.60417,217.11858,21.885117,40.094315,10.563 1284,489.27954,216.49054,22.633148,51.66809,10.406 1284,610.0623,237.77553,18.832764,57.134506,9.421 1284,34.559055,188.26422,33.96062,66.42621,8.316 1284,626.4469,239.81824,17.142822,51.240112,8.302 1284,384.90637,227.10567,24.314209,40.40245,7.619 1284,-5.3838515,-17.145645,17.234814,42.30977,7.52 1284,622.34,240.94221,25.318726,79.57582,7.383 1284,627.2199,489.8526,19.664124,42.591003,7.195 1284,565.4474,224.41052,21.670898,45.575897,7.194 1284,56.623924,198.63661,23.763107,42.87645,7.153 1284,390.92065,206.52695,26.464844,61.419952,7.136 1284,596.50745,220.58594,18.880615,47.938873,7.066 1284,517.40454,219.69023,23.29071,46.01201,7.054 1284,581.38153,218.01012,41.542114,127.70232,7.003 1284,585.52496,225.1829,19.921082,46.605667,6.923 1284,-11.075365,-31.90754,28.802122,70.30427,6.607 1284,595.4613,206.6408,17.999268,45.115707,6.494 1285,53.923126,212.38684,24.402588,47.90735,78.953 1285,597.9507,219.6736,26.159851,66.997696,69.598 1285,433.5254,224.82164,18.99173,40.548233,59.244 1285,399.3428,223.22395,22.912598,46.312637,53.395 1285,441.1411,223.51036,18.48639,42.282944,20.875 1285,618.5019,232.7334,20.938171,68.18451,16.427 1285,605.39667,227.92715,26.998535,79.37381,12.611 1285,186.12872,218.3968,20.960358,39.72725,11.032 1285,72.845634,209.0938,21.620499,44.702255,10.822 1285,593.0565,234.26595,26.85321,80.12825,8.55 1285,593.07733,220.6612,40.55188,128.44366,8.444 1285,419.76904,224.53072,22.454163,43.99614,7.774 1285,63.473564,205.86041,22.751907,47.80864,7.714 1285,625.31793,237.90628,18.948547,53.253845,7.709 1285,448.30917,228.15472,20.634064,42.901794,7.405 1285,475.34235,217.94719,15.32605,27.4897,7.363 1285,427.57632,219.2495,18.453827,41.38405,7.299 1285,-5.387967,-17.563082,17.286263,42.924156,7.283 1285,544.4311,230.21011,43.76996,71.65216,6.919 1285,49.99067,193.32288,39.62568,70.59012,6.894 1285,626.8702,489.09872,20.058655,43.564423,6.684 1285,-11.244341,-31.968075,29.041222,70.65789,6.589 1285,610.67053,220.67012,32.133057,106.81227,6.546 1285,-5.213481,169.05139,19.27584,48.136673,6.492 1285,529.5307,225.49892,45.62146,65.532425,6.383 1285,-6.3442516,488.84558,18.699701,43.003296,6.263 1285,443.82095,213.3672,16.586456,37.153458,6.25 1285,385.0722,225.33586,24.646484,41.790848,6.184 1285,0.1791668,163.33965,24.604025,76.54643,5.863 1285,-8.777018,464.98547,37.704018,91.46002,5.86 1285,394.7564,212.77603,21.25177,48.213013,5.756 1285,627.4004,-18.230877,17.114624,46.69083,5.704 1285,604.24445,232.25797,46.916138,150.14835,5.658 1285,591.95123,201.2566,26.9505,68.3867,5.613 1285,517.34424,198.53662,28.840149,52.820618,5.591 1285,619.7525,219.70439,18.11621,50.89479,5.584 1285,377.50476,222.17732,23.307312,42.6678,5.557 1286,475.9837,220.60919,21.271912,45.94507,88.084 1286,503.2862,218.04788,23.027893,48.49765,81.415 1286,53.950825,211.65558,25.324543,49.242737,61.308 1286,399.3366,224.43262,22.881042,45.61725,53.654 1286,600.2972,224.84319,24.368896,71.14339,51.53 1286,446.65677,224.18176,16.826935,40.06726,47.126 1286,427.05533,224.6982,18.763458,40.599716,33.543 1286,618.24896,229.21556,19.073547,63.401413,21.344 1286,607.7578,226.10835,26.112,85.06358,15.488 1286,434.89813,224.39523,17.661957,40.009125,13.935 1286,487.78717,220.66714,24.040771,50.586456,9.749 1286,622.0503,233.32361,24.024841,75.914185,8.78 1286,582.52264,220.15698,41.20404,126.390015,8.769 1286,186.0434,218.12822,22.597733,40.134903,8.33 1286,377.4088,219.65881,22.85611,41.758484,8.059 1286,72.40251,207.85336,21.801682,45.89409,7.9 1286,594.60016,211.06473,23.831177,70.32181,7.837 1286,63.605118,204.69539,23.082352,48.386475,7.664 1286,-5.2150197,-17.295574,17.081396,42.30683,7.461 1286,594.30475,236.94919,24.96045,79.184265,7.254 1286,611.76196,203.33737,32.813538,99.80075,7.09 1286,50.31538,191.27414,39.270557,71.51694,7.071 1286,597.40027,234.36348,37.712402,122.81856,7.069 1286,315.33472,205.69302,17.85675,26.331497,6.915 1286,627.16345,489.52777,19.880005,42.76837,6.873 1286,256.98483,204.59708,21.60434,39.199814,6.822 1286,391.11047,208.10211,26.566345,59.82318,6.696 1286,384.5679,225.82272,24.405182,42.346405,6.686 1286,-6.285986,489.1294,18.740698,42.28296,6.659 1287,474.97003,219.03136,21.953156,48.220383,86.249 1287,501.40753,218.63657,24.66681,49.22873,85.611 1287,399.10114,224.13081,23.124207,46.274796,55.534 1287,53.623753,211.23584,24.888103,48.541443,44.598 1287,446.06082,224.9031,17.39392,40.884613,38.54 1287,426.50214,223.34222,18.975464,42.26642,37.526 1287,598.1157,222.64157,25.919983,74.537384,30.499 1287,616.04895,223.57812,21.75476,76.67615,19.982 1287,434.16348,223.87701,18.20047,41.352295,14.145 1287,602.974,217.95068,30.79181,104.94391,13.958 1287,489.28412,218.07886,23.512268,50.454987,11.575 1287,611.0718,227.50468,19.585022,55.554916,10.115 1287,595.474,215.91927,21.619812,54.396164,8.662 1287,581.5363,218.15952,42.291443,132.80817,8.54 1287,622.29004,234.88615,24.476013,79.55199,8.358 1287,-4.7406044,169.62508,18.805487,46.49922,7.577 1287,-5.309328,-17.236492,17.048962,42.30312,7.385 1287,627.0165,489.1768,20.007751,43.395172,7.088 1287,71.30485,207.36499,22.711807,46.567062,6.755 1288,474.6682,217.9383,23.220428,49.34091,90.194 1288,502.90268,218.27293,23.296967,48.402573,87.703 1288,445.13748,222.03564,19.472809,43.167755,59.019 1288,54.300888,213.84096,23.906403,45.495834,50.219 1288,398.98724,224.30858,22.897583,45.9803,45.861 1288,425.5991,222.13933,20.370575,43.073135,42.329 1288,594.3313,223.80571,26.423584,65.73985,34.99 1288,618.9662,230.62889,18.81842,62.93425,27.539 1288,434.21017,221.46144,19.889862,42.63817,17.564 1288,608.30817,232.20045,24.28424,74.68999,13.737 1288,45.275402,187.30116,29.307034,71.45058,12.916 1288,184.6347,219.50993,22.288269,36.98549,10.609 1288,621.8795,235.42148,24.338196,79.07556,9.691 1288,517.891,220.82962,23.150146,43.519043,8.866 1288,581.9999,219.37506,40.832703,128.93231,8.387 1288,488.00714,217.69206,23.0307,50.349197,8.355 1288,612.6091,203.88922,32.40796,98.62485,8.168 1288,-5.38745,-17.137527,17.252533,42.47089,7.529 1288,394.24344,206.60892,18.632477,45.86737,7.487 1288,418.78735,213.51671,22.432098,44.11345,7.335 1289,475.4526,215.5424,21.579834,51.719498,85.128 1289,500.40967,218.20935,24.529236,49.047302,84.243 1289,54.405212,213.09943,23.938736,45.73932,70.739 1289,597.82336,229.37811,23.568604,66.69446,64.066 1289,445.99118,224.73776,18.769806,40.47,50.107 1289,399.84778,226.04797,21.726685,44.08539,47.182 1289,520.3146,217.49503,21.758118,45.59732,32.536 1289,426.24207,226.09364,19.074036,39.781937,27.666 1289,618.76447,233.67145,19.69873,67.05664,26.238 1289,41.954773,209.41093,22.402695,41.31891,23.132 1289,606.70056,231.39224,26.800415,81.102295,19.626 1289,510.93692,217.17188,23.452484,47.627472,13.092 1289,45.28199,191.2435,29.701065,65.38544,11.679 1289,435.04608,225.2043,18.570923,39.02025,11.433 1289,31.204697,201.26256,28.953163,51.881485,10.734 1289,488.0383,218.4254,25.139435,53.134903,10.698 1289,185.32751,217.15242,22.182983,40.672714,10.08 1289,624.7493,238.96652,18.65924,51.42621,8.518 1289,585.3965,229.12599,35.142212,106.252914,8.472 1289,592.66235,224.53864,41.82373,148.57214,7.909 1289,58.973503,188.90092,30.493896,64.65071,7.434 1290,501.46478,219.99696,23.581238,47.519638,87.45 1290,475.85724,219.23203,20.569,48.393066,76.44 1290,596.7417,227.70149,27.234741,71.19893,55.082 1290,447.80463,218.68047,19.6456,48.886185,54.789 1290,52.99199,213.07605,25.468262,46.134277,51.399 1290,399.4006,223.96466,22.46054,45.75122,40.004 1290,521.04456,220.06093,20.671387,43.25212,33.427 1290,426.6182,224.76834,19.66568,40.232788,32.403 1290,605.7012,231.16925,28.000793,83.03284,19.632 1290,434.4731,223.81041,19.200226,40.371536,17.361 1290,617.94586,233.98505,20.706604,67.25781,16.207 1290,511.25623,219.11638,22.097778,46.109024,15.74 1290,58.80829,202.64378,31.30352,54.42958,14.237 1290,467.66516,209.34898,19.52536,50.43724,13.844 1290,185.28879,219.76227,21.953781,37.27661,13.699 1290,585.4103,228.06744,36.25055,108.52887,11.227 1290,457.99893,210.6867,19.26767,48.990387,10.72 1290,488.28677,221.97221,24.18216,49.570145,9.471 1290,26.594109,200.0091,20.23347,45.055817,8.001 1290,-5.37133,-17.225441,17.17145,42.329506,7.349 1290,621.67456,238.66982,25.79773,81.49852,7.221 1290,72.075806,205.17305,23.070984,45.611008,6.967 1291,501.7297,219.18954,23.395355,48.298767,86.68 1291,473.82788,218.19139,22.845642,51.3239,84.041 1291,51.08614,209.25941,30.7272,49.68358,61.718 1291,425.30182,223.61337,21.982605,42.431274,47.656 1291,399.05106,222.95718,23.136871,45.385773,44.06 1291,447.12784,221.9564,21.294434,45.042404,42.676 1291,596.8468,231.16228,26.890015,66.69035,29.481 1291,619.17566,231.92677,19.251404,61.183517,29.141 1291,520.31665,220.71683,21.147644,43.01709,29.047 1291,511.10294,218.97928,22.252594,46.399475,21.129 1291,467.11276,214.38661,21.925873,49.690964,16.244 1291,607.6699,233.77545,27.04541,79.026184,14.161 1291,184.70667,218.2948,23.61148,39.180603,13.583 1291,67.84654,210.02657,26.508507,48.416306,10.94 1291,434.0115,228.34119,19.974945,39.394836,10.261 1291,621.9463,235.87157,24.450928,78.340225,9.986 1291,454.38998,208.76395,27.133423,57.18512,9.925 1291,1.5699995,199.83388,21.600838,51.075638,8.65 1291,488.5749,220.83669,24.479431,50.547836,8.575 1291,584.75275,232.42584,35.289917,103.69623,8.354 1291,592.87225,224.72766,41.667847,148.82886,7.615 1291,-5.3741074,-16.981722,17.106804,42.09459,7.601 1292,500.63556,219.63615,24.498474,49.292557,80.064 1292,444.4906,221.8003,21.602264,44.139343,68.795 1292,473.87057,217.76294,23.081055,49.38382,64.473 1292,51.099167,203.1822,30.217285,58.528915,63.53 1292,596.582,231.32664,27.901428,68.03221,54.782 1292,399.27264,223.26653,23.329437,46.419693,42.883 1292,425.74414,223.68289,21.17804,41.327454,29.874 1292,434.16824,223.11311,21.321594,42.067978,19.553 1292,520.4598,220.10594,21.721252,44.44435,15.303 1292,618.2006,236.78001,20.604858,63.869736,14.498 1292,184.58252,218.78027,22.866684,38.630432,13.727 1292,604.8388,233.77753,28.839844,79.62744,13.45 1292,584.0774,223.0514,40.706543,125.17482,10.031 1292,509.94492,218.77173,23.679474,47.074768,9.97 1292,487.90005,219.418,25.309784,52.924988,9.233 1292,467.33853,211.77261,22.26944,49.57071,8.857 1292,627.4453,490.06616,19.23999,42.227295,7.641 1292,452.36768,210.90007,29.310028,55.95607,7.351 1292,-5.2849483,-17.569319,17.162678,42.77803,7.266 1292,622.01654,240.92165,25.662598,79.543625,6.971 1293,499.24167,220.44797,21.196686,48.08847,83.15 1293,474.50192,217.78835,21.097382,50.526657,78.721 1293,596.64545,224.10968,28.349487,72.81183,65.464 1293,447.47238,222.94452,19.556763,44.98044,55.548 1293,399.80957,226.85654,22.69867,42.138275,50.116 1293,53.027187,211.06569,25.03629,50.161972,48.501 1293,425.93155,226.71696,18.475525,38.52333,30.196 1293,185.1112,216.99539,23.670898,40.98227,19.893 1293,521.1997,221.3119,20.766113,43.299393,16.059 1293,491.15924,217.19426,21.237488,49.8376,15.17 1293,616.4935,221.01494,23.446777,81.1201,12.813 1293,605.6658,231.37851,28.139954,82.69934,11.813 1293,435.62122,228.1,18.559235,37.61844,11.7 1293,583.62,219.22989,41.375977,127.28003,10.588 1293,512.729,219.40285,21.24054,46.339645,8.577 1293,456.19293,218.76076,19.456543,46.535446,8.474 1293,-5.245843,-17.25932,17.112755,42.463276,7.643 1293,466.80453,209.85478,21.99533,53.097794,7.387 1293,627.1413,489.68793,19.789368,42.723267,7.301 1293,39.973633,189.93439,38.648262,73.19232,7.12 1293,621.9978,239.87717,25.449097,80.64874,7.112 1294,473.62128,218.28336,20.94751,49.357697,80.752 1294,498.22342,221.25288,20.10196,46.486984,71.496 1294,52.547554,208.13792,26.888535,50.777542,70.009 1294,445.44034,221.28926,19.50354,43.882584,62.186 1294,596.606,222.44054,30.242065,75.04704,59.305 1294,399.60678,223.36473,22.697235,44.519638,50.077 1294,521.3667,222.40726,19.698792,41.58499,23.341 1294,424.16986,224.04988,19.676086,39.601395,20.723 1294,184.6837,217.07631,23.588913,41.146896,16.897 1294,615.3388,219.15508,24.000793,81.67012,16.766 1294,513.8237,220.88419,19.940247,44.060883,14.836 1294,44.08041,210.6423,22.593311,45.14267,13.336 1294,489.98212,224.95659,21.33731,46.250748,11.825 1294,467.09082,210.51666,21.022003,52.352142,11.051 1294,605.2792,231.0051,28.90149,82.672516,10.484 1294,583.1985,218.35345,42.578796,130.2099,10.288 1294,420.6385,204.46706,29.239166,56.29698,8.809 1294,505.75436,215.31851,18.84903,47.55777,8.592 1294,35.83004,207.76874,20.068825,43.338654,8.181 1294,436.06158,225.61273,19.351624,39.040222,8.014 1295,473.7547,221.19672,19.723145,46.30957,81.132 1295,448.0327,220.70784,19.764404,46.183517,73.975 1295,491.97903,223.25406,18.391266,44.46518,73.391 1295,53.55122,212.2721,23.963734,46.69391,69.88 1295,596.505,224.04564,28.694519,73.93184,63.047 1295,504.96158,222.04283,18.817596,45.698135,57.328 1295,481.39038,222.58449,19.130493,45.64174,45.533 1295,398.97128,224.1759,23.924988,44.799347,31.986 1295,424.512,224.1587,20.384674,39.636093,25.111 1295,520.59644,223.03427,19.996521,41.52246,24.962 1295,33.79076,208.02544,20.909374,42.36888,21.769 1295,41.922077,207.49309,21.754803,45.098923,15.037 1295,185.66672,218.59505,22.321869,39.605118,14.549 1295,618.4692,232.98582,20.978271,67.95552,13.945 1295,495.60913,213.2134,24.44226,53.07698,12.263 1295,605.29803,230.7312,28.762146,82.66522,11.82 1295,435.11365,225.1947,19.8974,39.981537,11.225 1295,583.7648,219.44939,41.807007,127.283585,11.014 1295,455.69678,217.79178,20.208221,47.190277,9.714 1295,467.5844,213.54019,20.461731,49.296844,8.212 1295,429.5001,205.59183,29.504883,55.43808,7.724 1295,-5.40244,-17.074286,17.16351,42.014057,7.477 1296,474.20172,221.7249,20.616547,48.25331,87.004 1296,491.3578,224.13438,19.958801,44.471115,72.902 1296,596.2551,226.03014,28.939453,73.50896,59.979 1296,505.4514,221.02232,20.026276,45.46962,38.222 1296,48.590668,200.62114,30.3218,61.924973,36.586 1296,444.46448,226.42596,19.093567,38.408142,32.572 1296,514.11804,217.29922,20.06073,46.05829,29.589 1296,400.70026,226.8432,22.63861,40.750732,26.1 1296,21.546265,197.34021,25.414345,55.981476,21.363 1296,419.70932,226.4616,18.697693,38.162766,20.112 1296,618.06433,234.59528,21.195557,67.0094,14.048 1296,605.22406,231.62816,29.126709,82.6133,13.353 1296,497.83047,215.64174,20.142487,47.92906,12.017 1296,583.89124,220.38715,41.578857,127.92328,11.522 1296,184.963,218.174,22.819107,39.85753,11.097 1296,457.75677,219.07605,19.857025,44.608093,8.982 1296,59.111103,184.54686,30.652859,72.44829,8.876 1296,465.20868,210.97444,24.775146,54.068832,8.688 1296,7.9767036,201.11758,28.23573,59.27765,7.667 1296,621.7568,240.48053,25.5401,80.15582,7.643 1296,446.6882,208.42369,25.257568,57.438065,7.565 1296,-5.44482,-17.601194,17.311548,42.711514,7.451 1296,436.38562,228.62306,19.077087,36.02806,7.387 1296,627.062,489.1709,19.811157,43.095825,7.062 1296,72.86108,202.71799,21.98841,47.121933,7.004 1296,599.47174,215.22618,22.101746,58.33635,6.909 1297,475.9531,222.60666,19.501465,46.127655,82.83 1297,443.89618,226.22342,18.713348,39.99051,80.202 1297,498.6221,223.01666,19.111786,46.10382,75.173 1297,596.3891,225.88043,28.35913,71.7793,57.196 1297,55.269653,212.80254,22.852135,47.236588,45.889 1297,402.27258,223.51744,22.637207,43.912888,25.142 1297,514.8702,220.75836,19.160706,44.12561,24.043 1297,504.8302,219.80191,19.776184,45.394867,23.085 1297,417.33014,223.82486,18.583527,39.055695,17.355 1297,490.0711,227.03343,21.14917,45.520065,16.538 1297,60.51453,201.65588,27.201618,56.94626,16.045 1297,184.72389,218.19223,23.153992,40.101746,13.061 1297,1.6044593,201.51007,22.444897,54.432922,11.758 1297,597.57855,217.39502,34.535583,123.05115,11.471 1297,457.9516,219.82419,18.59497,40.96283,10.631 1297,618.5651,234.50441,20.372253,65.67949,10.045 1297,427.6038,228.6272,17.473053,35.93692,9.639 1297,47.08675,188.87155,28.6861,70.78696,8.791 1297,6.6665745,181.88286,27.633753,74.10127,7.881 1297,579.3309,215.37479,47.775818,160.94925,7.743 1297,469.22714,220.08237,19.2305,42.96527,7.669 1297,-5.2997932,-17.359083,17.034023,41.99811,7.4 1297,626.9379,489.23004,20.042114,43.163147,6.852 1297,407.87216,213.84511,26.082458,52.688675,6.822 1297,622.0972,241.46213,25.458252,79.054565,6.685 1298,474.88885,221.39438,19.924225,46.47696,86.973 1298,54.637672,214.24716,24.918541,45.884644,79.046 1298,497.8514,223.8847,20.079498,45.338257,69.154 1298,444.36478,225.78842,18.38205,40.28897,56.201 1298,596.81537,222.6987,28.122742,79.23166,54.04 1298,401.65796,227.97943,21.559235,38.34839,24.134 1298,490.13138,226.6697,21.058655,45.65349,17.44 1298,593.1713,220.05045,39.115234,131.07535,16.599 1298,504.70242,221.0324,19.8555,43.603165,15.435 1298,613.8624,226.31107,25.10254,87.90512,13.744 1298,514.6174,221.56758,19.405579,43.64064,13.582 1298,418.16418,227.85663,20.189972,37.488586,10.802 1298,437.3789,228.87985,18.534302,37.050903,10.493 1298,43.39464,212.08794,22.244808,46.16658,10.431 1298,185.38863,217.17798,22.476334,41.22754,10.14 1298,0.8479762,203.37456,21.506817,53.04341,9.56 1298,427.27643,229.84491,18.303986,35.273254,9.363 1298,375.75586,206.6506,24.714233,59.386353,8.836 1298,458.53305,219.26387,17.573181,40.576767,7.948 1298,449.2713,213.72482,19.932953,46.31183,7.883 1298,468.05615,214.91199,19.379944,44.5618,7.319 1298,31.554346,198.65361,28.654833,55.53401,7.209 1298,-5.326522,-17.127405,17.126945,42.611156,7.073 1298,46.978897,188.56189,28.411774,69.68533,7.009 1298,59.76843,189.18697,28.771069,66.7993,6.895 1298,621.25574,238.92163,26.192627,82.297485,6.841 1298,626.873,488.71994,20.168274,43.859894,6.759 1298,-11.330179,-31.768303,29.312809,70.770325,6.714 1299,490.72693,223.30203,18.664185,46.31314,85.241 1299,476.2584,224.62009,17.48944,43.300476,63.19 1299,505.87997,222.0631,19.23288,45.242966,59.494 1299,482.7435,223.10846,18.28238,44.30966,59.18 1299,443.37448,225.81885,18.736694,40.960693,52.62 1299,57.601364,204.36038,29.505096,55.136597,52.241 1299,497.35596,221.90172,20.140808,46.890305,52.1 1299,412.12482,221.17923,20.059052,41.921448,34.807 1299,619.38684,227.32202,19.88324,65.0531,31.891 1299,385.8066,219.23247,22.1586,46.93721,31.23 1299,573.38367,226.65973,34.511597,91.40259,31.132 1299,520.75916,223.98816,20.488037,41.035675,21.798 1299,29.944538,195.10121,22.962032,50.024536,16.456 1299,185.2617,218.7329,21.645416,39.06526,12.736 1299,512.6186,222.67607,21.107117,44.68892,12.352 1299,612.6114,217.04306,30.691772,97.04187,11.729 1299,448.99603,216.0434,19.470947,47.690704,10.901 1299,469.21802,219.83267,18.230713,43.33133,10.733 1299,597.1129,223.78795,36.06653,114.341995,9.047 1299,425.3028,223.36983,19.747498,38.842026,8.814 1299,435.53583,223.6515,19.895996,41.62703,8.772 1299,20.626686,175.18184,37.180206,76.92886,7.58 1300,474.68146,221.57697,19.692291,48.826508,88.47 1300,72.02196,209.63322,28.746918,55.69957,82.372 1300,525.4049,224.99957,31.49884,80.2702,73.188 1300,434.13153,222.84904,19.822021,45.20656,68.324 1300,360.02405,224.64133,21.49762,41.746735,60.698 1300,606.8425,227.02655,28.953613,86.26611,49.99 1300,582.5276,225.77376,29.724121,84.73195,43.044 1300,505.65588,222.75803,18.686218,43.290558,30.84 1300,491.00906,222.88248,17.93042,44.029694,22.983 1300,499.90005,220.12321,17.82193,43.246353,21.015 1300,399.18237,223.45297,20.472412,42.716125,20.174 1300,368.7644,223.42628,20.008057,40.630234,20.003 1300,378.03162,221.74692,18.738892,39.697723,18.925 1300,441.0041,219.53612,18.36792,42.340622,13.607 1300,593.1875,222.01201,38.762817,122.57857,12.155 1300,185.24323,217.88893,23.103577,40.83101,11.797 1300,521.41003,224.19447,24.058716,61.155807,11.478 1300,1.21997,202.00505,21.804235,50.39514,11.283 1300,513.1128,222.07172,20.935608,48.368103,10.683 1300,569.1853,228.1726,37.188477,102.43268,9.321 1300,385.90686,224.30867,21.091248,40.653915,9.009 1300,62.20779,189.84442,26.64433,66.31183,8.915 1300,30.677011,179.39427,27.902655,65.07318,8.816 1300,39.06888,195.99062,26.923416,56.299255,8.527 1301,477.94693,221.0451,30.476349,75.078735,92.613 1301,519.65857,212.04565,50.160095,125.52643,90.235 1301,464.53583,220.41122,28.457153,76.910034,38.32 1301,512.4599,212.07869,22.621704,54.854294,24.171 1301,327.19437,222.57402,25.106354,42.394608,23.478 1301,361.8521,220.31775,20.994629,41.521423,17.516 1301,345.30347,219.93683,21.589691,43.939087,17.255 1301,622.642,228.22203,17.277466,50.362747,16.734 1301,518.5546,210.88644,30.714539,79.60324,15.873 1301,185.31052,218.92775,22.360443,39.34099,15.341 1301,353.83148,219.70961,20.66388,42.720596,14.619 1301,501.68124,217.05577,29.53238,63.773666,14.442 1301,41.299255,196.6084,24.243439,50.787445,13.644 1301,410.509,224.46133,21.975403,42.68216,13.643 1301,489.3019,215.86194,29.776947,71.25568,13.083 1301,333.2586,212.07323,28.516968,54.97667,9.939 1301,625.9235,239.67123,18.445679,54.806335,9.599 1301,527.5416,217.1993,35.253662,69.365036,8.57 1301,61.264503,187.58316,26.77816,61.107773,8.293 1301,103.6092,221.58575,21.591873,41.30121,8.166 1301,537.5061,255.77603,32.80591,72.95697,8.072 1301,-5.391662,-17.27287,17.182806,42.3203,7.179 1302,455.40836,214.23038,39.499054,118.1745,96.685 1302,596.1982,224.92595,29.90216,72.5919,76.803 1302,293.66537,210.42743,28.145477,54.01712,60.552 1302,588.2498,221.59128,46.487976,130.64133,50.426 1302,318.10297,216.64848,26.053223,47.775436,50.1 1302,384.55548,222.38957,21.393738,43.1353,37.796 1302,412.9967,224.97873,30.168427,70.96643,35.849 1302,475.54535,219.4718,29.250977,82.210266,35.634 1302,505.23495,218.98401,20.231232,42.84839,32.353 1302,428.00687,224.53659,29.001617,72.90518,29.275 1302,547.6986,240.94395,95.49365,285.5802,27.71 1302,337.43585,218.22208,23.433838,45.22696,27.679 1302,131.12903,212.5152,23.886108,53.912018,27.393 1302,604.6624,228.04407,29.309875,91.809875,17.226 1302,45.611816,187.40073,27.197945,65.29089,16.927 1302,512.90735,218.38905,20.03894,41.889145,15.945 1302,497.4859,219.84154,22.697632,51.068924,15.115 1302,185.41849,217.59784,22.758255,39.74185,12.629 1303,386.9204,215.34137,41.805298,107.480896,87.241 1303,161.8671,213.21294,26.045822,53.360733,83.882 1303,565.251,222.79193,29.299744,91.32269,75.339 1303,593.1927,226.219,24.1557,59.934143,74.425 1303,509.89813,221.80612,23.02185,49.115387,70.209 1303,281.5664,213.0319,21.905518,50.94951,69.651 1303,388.32367,246.56786,112.86319,260.23608,68.08 1303,297.00543,243.98885,125.35605,287.53552,63.32 1303,263.87155,215.82722,22.411682,48.240036,60.084 1303,496.57745,224.77698,22.315857,45.26352,49.828 1303,553.11145,229.46698,28.698425,88.80054,42.542 1303,304.33417,213.08218,23.419006,50.016357,40.125 1303,469.461,224.25769,18.680725,42.903503,39.815 1303,424.82758,216.46878,32.158142,77.32178,35.949 1303,364.17358,214.75693,29.570648,85.38312,31.017 1303,48.043938,203.72043,24.156525,49.725983,18.568 1303,620.6566,229.0437,18.907959,58.529175,17.47 1303,184.64378,216.65016,22.877182,40.213974,16.669 1303,272.47937,215.5086,23.457184,47.806946,15.992 1303,481.59387,226.72404,20.722229,45.094803,14.155 1303,89.93501,226.15172,34.58837,61.841293,13.468 1303,352.05167,220.86867,31.029816,70.324905,13.06 1304,341.38037,219.98604,40.972107,96.61458,98.441 1304,386.03094,217.77142,31.733643,75.1239,95.738 1304,513.3375,222.71902,44.483643,97.91943,90.134 1304,456.65283,220.26598,22.190979,49.129044,88.146 1304,53.757927,235.94164,131.24948,295.487,75.499 1304,192.72,217.82053,23.602295,48.02249,74.084 1304,570.6899,225.0974,43.137085,102.50615,58.399 1304,272.72656,218.44742,22.196808,48.256104,53.528 1304,618.52155,223.33987,19.392944,55.454193,52.718 1304,317.8053,224.64128,30.147034,67.84233,45.072 1304,241.39769,219.21265,24.279922,54.493317,42.426 1304,256.16595,217.46912,24.075806,52.678314,31.779 1304,579.93665,220.5957,29.204529,71.22015,30.811 1304,503.43542,223.526,33.165344,88.74591,29.454 1304,-3.7783146,219.61028,35.964027,112.13698,20.736 1305,519.29193,218.91893,37.13855,95.70943,97.461 1305,294.396,213.70334,41.825623,97.93396,96.535 1305,68.74385,215.54727,46.007065,102.77005,94.613 1305,436.4137,238.18939,27.396576,70.64624,89.053 1305,346.37103,217.57828,29.797974,73.50345,81.401 1305,461.10547,230.7735,28.637878,75.79193,80.001 1305,234.40102,217.45512,23.75505,48.60228,71.583 1305,605.95013,229.97678,16.609253,42.419434,67.818 1305,480.10895,227.78448,27.809631,78.54895,67.682 1305,582.39526,227.2859,19.95935,44.363327,65.701 1305,31.308153,215.71881,27.515604,57.448517,32.426 1305,201.74011,217.27594,21.634949,47.643982,28.424 1305,510.24042,227.507,30.592224,82.00145,23.782 1305,275.98248,214.40378,31.869019,82.04248,22.644 1305,6.9879827,215.94441,26.00541,59.723404,19.921 1305,192.67737,215.79364,22.652527,47.574432,17.747 1305,600.322,204.27255,25.005005,70.793945,16.081 1306,163.39612,212.07274,43.874725,102.60579,98.553 1306,304.5569,220.76535,33.605347,72.431,92.369 1306,470.00574,223.15517,31.506378,87.55553,91.951 1306,538.5171,224.84186,24.212952,48.249695,90.812 1306,255.0664,217.56493,37.853577,85.591446,84.399 1306,576.5033,222.10118,24.138245,52.406357,75.525 1306,413.84186,225.77672,31.23642,80.48897,74.309 1306,12.18071,211.61668,64.54246,156.15553,73.542 1306,426.17096,221.4122,31.966522,85.32941,72.786 1306,517.6676,224.54474,21.683533,49.231384,55.117 1306,387.1301,234.0092,28.753723,70.70473,54.652 1306,329.8786,220.0716,23.260468,49.64673,45.488 1306,592.4927,216.14871,25.28479,56.357635,37.572 1306,446.90933,223.91199,26.857483,79.033875,35.309 1306,237.47191,218.21129,31.975449,75.9608,28.121 1307,552.27167,225.1449,23.039001,50.317535,98.079 1307,114.53044,218.63553,56.332016,139.11655,93.094 1307,376.41385,221.48569,34.410187,79.96008,87.195 1307,215.0949,218.2366,35.993484,83.596375,87.152 1307,527.8685,222.59547,22.686096,53.66902,86.801 1307,420.18292,220.8822,32.07788,82.99469,86.262 1307,271.0404,218.57405,30.68454,70.458725,82.158 1307,403.54065,224.40768,31.693298,76.53775,68.875 1307,-0.30188322,216.12143,68.45194,180.77448,66.826 1307,342.89505,237.49652,30.743103,66.681946,62.751 1307,240.6976,216.80843,36.184814,90.74565,59.192 1307,621.8466,226.8847,19.169067,53.378296,58.464 1307,316.94348,218.80704,25.81134,49.158142,40.265 1307,83.140366,222.28836,20.502403,47.51358,36.928 1307,575.81006,226.5839,22.175537,42.940643,35.715 1307,302.94516,218.87831,23.25113,48.204544,28.661 1307,469.65704,219.89671,16.063751,36.685562,25.194 1307,491.9555,218.91862,16.57309,38.830704,21.264 1307,484.48605,217.38208,16.082611,38.531662,20.057 1307,499.8158,218.9643,17.549988,38.389893,18.835 1308,373.74103,217.04143,36.644135,85.60924,93.553 1308,299.3897,227.1003,31.074127,74.695724,92.301 1308,338.03928,222.16853,34.869537,78.78844,91.981 1308,564.5792,225.92188,24.03595,50.658203,91.782 1308,206.39983,225.74242,46.636703,118.85997,86.043 1308,109.33638,224.15277,64.26222,155.67474,80.566 1308,537.80676,223.38278,25.311157,57.76187,79.024 1308,355.10165,217.66908,30.803772,77.58769,65.304 1308,602.48114,215.8636,20.735107,55.776596,65.229 1308,185.13657,217.48755,32.52719,82.9541,60.884 1308,474.53204,220.88295,17.099396,37.221695,44.146 1308,285.67175,224.79636,31.324036,73.93033,37.466 1308,233.91003,220.71509,31.681366,74.7298,34.353 1308,273.11865,214.68399,25.776764,48.62802,32.143 1308,164.33852,222.14914,32.675858,65.53299,24.36 1308,621.3203,217.26051,19.064575,61.94557,19.314 1308,482.87207,220.16434,17.152405,36.64621,18.486 1308,585.44214,224.74913,19.792847,44.702713,17.947 1308,491.36725,220.15263,17.113129,37.01082,16.039 1308,194.27238,222.35596,39.596756,92.543945,13.757 1309,219.36028,214.26782,60.711258,159.60907,96.777 1309,371.91412,218.88666,35.73938,86.62518,95.847 1309,553.4169,228.96147,21.885193,52.784134,87.896 1309,281.11304,217.2818,46.197784,118.92633,86.798 1309,152.05719,215.53795,34.360687,76.850296,79.838 1309,472.691,220.05682,20.00647,43.682648,74.502 1309,405.9339,221.81264,22.590546,50.29451,73.734 1309,583.35596,229.83052,21.648804,46.08943,73.612 1309,332.02054,214.59975,36.22757,84.373245,73.54 1309,193.81349,214.59126,27.595749,67.46794,59.19 1309,504.7641,214.99832,17.439514,42.59558,39.608 1309,61.611526,201.5497,28.811256,64.08452,38.374 1309,607.3361,210.5037,25.459412,63.382538,32.383 1309,134.18878,217.56815,29.069366,67.05243,30.146 1309,316.39767,215.6317,31.901703,81.44087,20.296 1309,522.6104,215.19403,19.16278,43.425934,18.794 1309,480.0833,216.73354,18.676086,43.376877,18.047 1310,250.27344,219.04962,34.201294,77.95911,98.856 1310,304.23825,220.75073,56.917786,145.4035,95.943 1310,128.10823,219.4548,30.638962,67.78171,94.082 1310,425.56152,217.89914,34.139465,80.64749,93.976 1310,11.8372555,213.6201,43.53196,96.16994,89.802 1310,159.63849,218.92381,27.846024,60.910477,86.895 1310,331.151,219.44994,53.47937,136.42525,82.444 1310,481.69183,222.88419,18.719238,46.26883,81.96 1310,105.11778,220.88687,28.825531,60.38565,77.409 1310,188.45581,235.50592,29.81958,59.168884,61.777 1310,561.80536,220.92235,23.282166,68.44606,58.775 1310,530.6754,214.5009,22.257263,46.704422,55.604 1310,224.99129,219.4664,22.10707,45.411285,42.271 1310,173.44147,220.40263,30.440704,61.694016,35.247 1310,581.76385,226.58855,25.804321,89.30559,33.505 1310,56.371727,213.34761,24.187218,47.491623,30.69 1310,139.38902,216.57724,28.75763,66.36545,28.265 1310,28.078625,213.23096,31.613804,73.80963,25.782 1310,602.9418,231.66885,19.160767,52.327515,25.092 1310,489.35757,218.4855,18.29895,44.847412,20.443 1310,118.20301,213.6184,30.543694,66.671646,20.255 1310,499.12143,215.26738,17.174164,43.64113,19.957 1310,291.18198,218.24179,45.954834,117.27612,19.194 1311,213.34866,218.49881,32.857086,73.02847,97.544 1311,383.72836,222.14148,56.600494,138.50012,96.209 1311,253.38443,215.98486,33.588593,72.02026,89.667 1311,82.4323,219.63339,38.840897,81.4444,89.551 1311,454.7928,214.82309,30.119904,83.700745,84.762 1311,471.56073,214.20502,43.218994,121.69025,80.681 1311,276.84268,216.03781,32.148773,71.398834,80.438 1311,554.12524,213.98102,24.271912,59.333588,62.075 1311,157.45097,243.9465,27.340652,45.71234,56.97 1311,586.13184,233.81783,25.662048,59.62938,56.557 1311,311.46762,217.85313,23.494995,54.511307,55.095 1311,189.89392,213.31459,24.832855,53.43129,50.365 1311,128.8643,213.57268,28.99495,64.925095,50.234 1311,619.401,228.07462,19.989014,59.574646,43.076 1311,101.61637,220.82906,30.26664,71.49815,35.938 1311,32.972862,215.82834,24.118603,48.404877,29.121 1311,291.01016,219.2332,28.241882,62.176926,18.633 1311,566.35736,220.29642,21.807434,48.432587,17.907 1312,389.02103,219.57642,48.180542,113.36389,93.871 1312,448.7586,221.17445,45.19464,125.65819,93.216 1312,542.7921,225.58223,25.457275,61.22014,90.765 1312,223.40736,217.11674,32.389023,75.757126,90.353 1312,137.35655,216.7091,37.90303,83.45227,88.793 1312,601.56116,222.02393,27.612549,66.91037,87.483 1312,183.91553,216.81691,35.223434,74.393234,86.537 1312,520.08813,222.23315,21.007446,51.913116,84.742 1312,103.12989,215.38554,30.129417,64.25435,82.807 1312,270.65128,219.39694,24.782043,62.249847,81.874 1312,54.72191,220.78821,51.86413,125.08856,75.654 1312,255.28246,216.97302,27.205887,64.72424,71.003 1312,505.66257,222.35246,18.827667,49.366592,65.422 1312,357.88632,221.17664,24.487213,46.782715,39.318 1312,235.64053,218.74998,29.827179,65.12587,33.634 1312,166.3832,213.94156,24.534592,55.576996,26.542 1313,144.27621,224.36136,55.19037,123.26242,95.029 1313,317.9138,215.70851,45.503754,108.563065,93.997 1313,196.30017,218.24522,33.430954,72.95543,90.983 1313,240.14658,220.0477,23.472229,59.025177,90.507 1313,80.334175,210.6484,27.646873,66.47342,76.651 1313,484.3921,215.13695,35.684326,119.29555,69.243 1313,511.87744,219.68967,35.947327,118.73169,60.852 1313,46.006565,211.5799,30.300663,73.591,60.501 1313,283.9112,211.95245,27.69284,60.37982,59.87 1313,226.11238,214.79576,26.256622,65.97771,57.088 1313,408.75146,221.08025,23.092651,49.677536,53.804 1313,619.47003,224.02803,20.767334,64.99596,36.834 1313,472.64825,214.87216,34.182343,104.605286,33.647 1313,584.43207,235.52908,25.79242,80.55859,32.426 1313,479.4156,210.9341,22.737701,65.31911,25.406 1313,30.519247,212.02754,26.87375,62.934494,23.322 1313,61.21014,209.43866,30.382511,67.80646,21.613 1313,211.51462,217.2934,28.078766,69.498474,20.735 1313,96.22649,230.56131,23.935806,50.08896,16.718 1313,1.4099789,211.60323,19.70869,50.55638,16.301 1314,160.41266,212.9868,31.616058,75.912,94.384 1314,-0.2481389,226.10837,54.253246,150.85767,93.608 1314,122.84435,217.61485,29.749763,71.90364,90.554 1314,243.85303,219.7409,43.916077,114.4613,90.491 1314,447.99506,220.16777,28.661896,68.50203,86.452 1314,491.4929,221.17166,42.925262,134.56955,85.033 1314,549.6484,218.02267,37.894104,107.38516,82.1 1314,207.37363,214.01941,27.444107,68.73761,80.282 1314,534.6551,218.19554,38.15979,108.176956,79.373 1314,172.2953,212.39871,30.72229,72.8598,79.321 1314,260.53616,215.93187,42.32779,109.3611,67.869 1314,620.37616,220.4348,18.487427,58.78267,67.629 1314,316.11597,218.23935,29.559326,54.44577,56.897 1314,518.22876,211.70598,39.134583,117.99873,35.552 1314,460.93616,216.57149,26.049988,71.10338,32.245 1314,230.0209,212.19138,30.145386,81.61484,31.831 1314,187.14218,212.88824,30.179626,69.17825,29.028 1314,66.21979,214.76404,31.507553,68.07904,27.773 1315,392.29755,231.93185,55.441406,131.62158,97.057 1315,335.60336,224.9148,52.38614,130.00989,94.771 1315,157.52411,228.87418,58.92296,146.4143,94.539 1315,97.376785,217.12915,30.952972,73.1488,93.145 1315,258.2762,218.50967,31.663788,67.61563,91.921 1315,493.36578,217.14957,24.091797,58.853363,88.223 1315,131.34555,217.1262,31.28865,68.02797,85.32 1315,216.50815,218.61824,37.274124,81.927414,83.969 1315,543.9668,217.87149,30.045776,83.63379,80.398 1315,472.03143,215.36064,21.796692,47.456375,76.423 1315,526.716,217.92255,24.150818,66.17633,73.696 1315,81.4177,213.47205,19.085823,50.0076,56.585 1315,36.62204,213.70416,31.02835,65.598755,54.143 1315,568.7339,218.98021,32.44873,93.3232,51.513 1315,202.49954,213.36505,39.427887,94.00537,38.558 1315,7.407415,205.66914,34.120975,78.13823,37.025 1315,20.249111,212.61342,31.927242,63.859512,36.247 1315,480.76877,216.78851,21.812683,48.8909,33.34 1315,513.7455,220.84831,21.010803,50.812637,26.26 1315,534.4165,217.55174,28.050293,76.73482,23.911 1315,50.978798,212.36615,27.4169,67.61508,21.964 1316,430.12567,234.04732,58.59552,126.50978,95.597 1316,539.15393,221.14803,22.496521,63.86946,94.012 1316,297.958,228.2794,58.27545,142.10152,92.613 1316,559.7967,221.27719,22.264526,60.57553,90.439 1316,103.039665,221.80608,31.773842,64.91341,90.2 1316,74.895935,217.03351,29.434113,67.37384,89.216 1316,322.2498,233.237,58.138397,140.5805,85.031 1316,154.43927,220.2053,34.52841,79.49831,78.92 1316,176.36105,217.82448,33.397095,79.466965,73.272 1316,490.02112,218.25232,20.47229,51.418945,70.788 1316,474.6712,217.03906,20.393646,45.85794,61.165 1316,514.5425,220.73734,19.274353,51.32083,56.804 1316,354.63467,221.173,30.636566,65.280365,50.095 1316,381.83148,218.15308,25.748505,54.42505,42.259 1316,596.91626,214.25824,33.108887,111.482056,40.939 1316,140.8543,216.8901,32.631577,73.08322,30.02 1316,481.78107,215.00952,22.07196,52.60736,20.319 1316,291.14618,215.19925,42.45569,105.0802,17.947 1317,465.0972,234.72792,55.80844,138.40025,94.843 1317,532.82764,226.3842,35.69513,97.33305,92.905 1317,79.10038,223.28403,66.18252,147.43735,90.394 1317,198.37059,212.90132,52.935257,139.06114,87.254 1317,153.88129,218.86842,34.840714,78.64879,85.981 1317,568.76654,214.93277,24.085754,72.66089,82.406 1317,304.12878,221.23305,29.546387,63.27101,79.888 1317,44.940002,214.72055,30.431534,68.46576,75.995 1317,328.31012,225.70226,27.91504,58.2191,70.775 1317,410.31598,222.5936,22.288422,48.00821,55.235 1317,21.733465,219.06067,27.715662,58.546387,49.124 1317,438.0638,224.39328,23.721954,51.780792,47.068 1317,117.70077,215.48593,34.124153,84.65582,45.935 1317,512.96594,220.98404,20.374573,45.342896,28.729 1317,473.03098,215.41345,21.742706,51.778442,28.56 1317,602.41614,218.8034,23.774231,74.3674,27.911 1317,480.36353,214.81996,25.897644,63.261307,27.773 1317,497.15543,215.92192,20.795685,47.483414,19.259 1318,205.7623,225.92462,65.11713,151.88287,95.208 1318,558.62085,225.74945,26.479736,65.35034,95.095 1318,120.57524,214.52283,53.316513,134.27527,94.994 1318,581.74945,221.16922,25.473938,65.97479,93.683 1318,269.90695,223.31894,28.87323,58.273773,92.574 1318,22.667831,217.3807,27.626244,65.17691,86.579 1318,356.25348,216.61433,26.733917,60.621872,74.812 1318,75.03194,221.04576,33.376587,73.170364,72.223 1318,436.5736,224.99919,24.457458,48.16118,65.655 1318,377.85675,218.84956,22.417023,52.991623,61.853 1318,511.21503,220.60101,20.099304,49.87082,61.227 1318,537.7278,214.40338,22.261414,49.875427,55.464 1318,474.9149,222.44147,18.027344,43.182007,53.784 1318,0.29564857,214.08217,21.071016,56.7722,43.23 1318,60.254623,216.0888,34.74061,70.70276,43.14 1318,140.14235,217.69107,34.775223,81.935486,36.333 1318,481.80325,222.52649,17.657074,42.354523,36.306 1318,107.86236,220.0275,32.55506,75.94946,29.339 1318,367.6117,219.16718,24.240967,52.483887,27.473 1318,499.88834,222.01695,17.833221,41.41707,25.224 1318,90.08163,223.36502,31.161903,68.47214,25.109 1318,490.8749,221.74963,17.349396,41.875977,21.785 1319,347.10385,232.51146,64.226776,149.15266,95.296 1319,127.50449,220.77448,30.660439,66.737946,93.647 1319,10.956492,216.65439,58.13966,154.97821,88.721 1319,102.046844,224.1194,26.761871,58.85945,87.665 1319,600.72565,219.87428,23.203125,62.761215,76.768 1319,576.20844,227.59338,26.183777,68.09436,73.7 1319,281.69614,214.87843,32.582367,59.398148,62.705 1319,298.96976,211.29294,30.860321,62.86725,62.211 1319,54.33775,219.89275,31.253788,67.5193,51.098 1319,472.7051,221.71968,19.375946,47.324173,49.576 1319,236.26123,222.90761,26.976166,59.984116,49.313 1319,508.35007,215.92363,17.455475,47.386154,48.801 1319,521.65906,212.7726,21.089722,44.75441,33.103 1319,81.484695,226.38467,22.904663,49.582672,31.658 1319,491.23578,221.17386,16.406586,45.87326,30.289 1319,482.9568,221.7098,17.992432,45.91298,29.199 1319,253.58818,224.77324,26.58699,60.81407,28.993 1319,378.9264,215.30313,28.477112,64.85434,27.227 1320,473.50064,233.65866,59.0242,145.95099,97.38 1320,107.033554,225.92073,28.096222,59.522934,82.653 1320,241.30997,214.16487,24.890228,54.488235,78.958 1320,209.17255,217.92464,25.980942,60.50273,75.167 1320,21.553646,217.59927,32.052483,66.69495,60.734 1320,84.596954,223.62447,26.003517,57.56334,56.599 1320,392.63928,220.65907,27.985077,56.377853,56.124 1320,7.2593727,211.5401,34.07658,89.83923,52.182 1320,221.46225,213.83536,26.312805,63.138702,44.843 1320,601.6216,237.07333,22.253662,52.640564,43.235 1320,64.92186,227.28099,21.405212,48.345505,32.41 1320,471.50424,220.85883,20.648346,45.970093,32.154 1320,607.5274,227.79855,24.123108,68.125305,24.221 1320,231.12306,217.28207,27.806717,58.926605,23.866 1320,49.50791,229.8411,21.737625,44.59543,23.803 1320,37.167953,222.70952,28.48626,56.32213,22.466 1320,618.83496,228.52971,19.90448,56.326004,22.022 1320,-1.4424992,222.23955,28.67488,82.00154,20.979 1320,95.09476,225.64001,27.341957,60.08383,18.128 1320,488.17032,215.54799,26.918365,68.41478,15.072 1321,59.32049,216.01614,28.965725,63.67563,88.082 1321,86.37625,212.50122,28.706596,65.83838,87.505 1321,183.29242,220.17816,29.77536,57.697174,83.661 1321,406.55286,223.1635,21.781494,49.91057,74.747 1321,525.93243,220.8385,24.735962,52.36786,72.519 1321,165.00229,215.33536,28.641891,58.113617,65.091 1321,479.05115,221.62364,21.916534,49.078506,62.795 1321,505.95056,220.27515,19.809692,50.50714,61.846 1321,464.96637,217.61482,23.779053,50.997635,43.069 1321,4.3725133,217.51762,30.626274,60.802902,30.15 1321,605.5148,221.49779,28.912598,75.68504,22.496 1321,21.32647,217.56752,29.949677,56.574112,18.894 1321,39.54862,225.30048,23.797844,50.59436,16.588 1321,488.00784,223.86333,21.91806,47.739548,15.094 1321,599.33185,218.2759,26.066162,59.859726,14.535 1321,596.1718,215.86061,19.906921,47.15544,14.134 1321,47.549854,217.88083,29.824375,63.231964,12.113 1322,69.829094,213.66457,29.982826,66.1953,92.477 1322,150.63922,224.15285,27.18863,48.118637,64.985 1322,553.48035,221.00594,23.849915,49.55153,61.3 1322,415.83746,225.95993,22.553833,45.97641,57.923 1322,615.6783,231.32896,22.992188,60.685257,53.526 1322,126.80965,219.85483,24.124481,52.12375,49.182 1322,46.725494,221.39955,24.57515,56.909622,48.921 1322,513.9548,221.7157,21.810547,51.57361,47.186 1322,481.38953,219.88858,21.095947,47.33737,41.37 1322,162.59856,217.25311,29.05397,58.401062,41.12 1322,-1.8357694,220.81313,25.79176,57.84114,34.472 1322,12.728584,213.23776,29.111595,63.69345,32.208 1322,55.59874,213.5026,25.844498,66.185394,24.013 1322,507.1857,218.92236,18.918243,44.337585,22.948 1322,134.94978,223.40793,24.551071,46.630493,21.25 1322,471.36996,209.07832,26.49466,55.75203,19.139 1322,34.095913,226.98041,20.689236,47.337708,18.979 1322,24.661215,225.26704,21.74161,49.275375,18.467 1322,466.50806,218.07422,21.542328,45.391144,18.209 1323,133.09985,216.55043,26.634933,57.84352,73.557 1323,54.41993,211.90706,33.174667,65.21922,69.135 1323,427.8725,222.73628,19.568787,47.454056,68.681 1323,28.612776,209.87885,33.58911,67.76886,65.676 1323,471.79944,211.02597,25.58191,53.80612,64.315 1323,517.4523,221.5987,19.367798,47.366425,62.626 1323,527.8023,223.69667,21.01892,49.976395,60.624 1323,617.13,220.96385,21.220459,60.060104,49.58 1323,95.019135,212.87267,25.018822,59.336746,42.973 1323,-0.09999752,208.31393,26.324425,69.0903,34.169 1323,479.85324,221.79008,23.2706,46.235886,29.21 1323,39.568096,202.33615,37.963963,74.05078,24.312 1323,497.5812,215.525,18.359894,42.194,20.142 1323,489.55597,214.11072,20.338806,45.673584,18.252 1323,449.9749,214.01938,19.236237,42.451294,16.591 1323,458.9008,215.54062,20.982697,45.132507,16.093 1323,584.48065,220.10188,21.607117,47.29698,15.716 1323,442.42325,215.59927,18.19458,42.043427,12.737 1323,185.38794,216.53171,22.64154,42.878265,12.398 1323,8.602053,195.4651,35.594063,80.94469,12.353 1323,393.7778,222.94308,21.487976,42.4339,11.768 1323,124.554306,223.15953,22.956146,47.10115,11.577 1323,612.9884,204.15436,30.79364,93.41705,11.435 1324,435.13675,225.28606,22.046753,43.962357,85.079 1324,528.9011,219.1273,25.91101,59.88237,75.112 1324,20.495071,215.34192,31.71745,61.33307,58.76 1324,104.29666,222.58154,24.632156,50.55258,57.536 1324,71.82712,217.0148,23.309952,50.737793,52.511 1324,47.585835,217.00261,27.121128,53.547836,47.483 1324,479.81448,221.59396,20.370392,43.710266,47.377 1324,593.6002,213.06114,20.961731,53.198563,42.008 1324,117.922226,223.10278,24.081604,49.907257,41.625 1324,540.5812,220.96597,23.135376,55.376312,32.255 1324,35.528664,217.82257,28.835876,56.862793,26.006 1324,616.87537,221.5831,20.813354,59.091278,18.49 1324,6.775504,209.30974,31.974705,68.91502,16.779 1324,600.85846,221.1491,20.789124,47.94142,13.735 1324,185.71857,217.78949,21.16481,39.922394,12.864 1324,60.972538,198.6487,30.616528,67.18257,12.632 1324,610.4825,221.35338,19.863953,48.937973,12.403 1324,-0.04754305,209.46452,24.94834,64.232956,12.036 1324,488.7711,215.81006,18.55606,43.9068,11.747 1324,359.94565,223.67671,23.899872,42.388443,10.394 1325,541.9868,217.4322,28.202698,65.48576,92.893 1325,483.2157,216.74019,21.882202,45.396713,53.664 1325,79.86268,219.53383,27.528076,55.149582,53.395 1325,45.06815,215.7812,29.744595,54.890854,43.332 1325,570.9215,221.78111,18.566345,47.62593,43.269 1325,304.95465,217.1553,23.80191,48.145355,37.745 1325,19.307686,213.22446,31.420181,58.671967,32.242 1325,447.2815,223.30981,21.927673,40.50345,27.671 1325,5.0305605,209.83434,31.60677,65.54622,19.774 1325,320.22366,224.56538,23.371918,41.159653,17.772 1325,560.9174,223.32545,21.473022,50.174637,17.476 1325,59.718666,213.1984,27.862144,56.100067,16.62 1325,475.69434,218.06734,19.640503,42.83406,14.836 1325,93.64597,221.36967,24.44941,50.093307,14.755 1325,467.07513,215.40749,18.293762,41.58281,12.631 1325,185.4656,216.80315,21.957718,41.714096,11.615 1325,596.5091,225.0657,15.028992,39.637665,11.608 1325,621.4657,240.92346,18.04596,54.027954,8.667 1326,550.45264,220.19409,29.641602,64.83017,93.534 1326,28.657192,216.49686,28.041882,55.70804,79.827 1326,491.3471,217.8153,19.666748,42.651764,55.856 1326,6.1135077,209.46918,26.660028,63.266846,45.097 1326,61.27628,219.0709,27.107395,52.823624,44.412 1326,251.2375,221.34184,24.455124,44.773087,38.372 1326,567.49,226.32013,21.595825,50.52118,35.317 1326,600.96313,216.10054,20.138306,47.650833,33.205 1326,484.39642,216.95387,18.861328,42.766922,26.213 1326,449.79535,221.59149,20.393677,38.324463,21.245 1326,466.8919,216.19827,18.60083,41.762695,17.209 1326,284.09885,212.72128,27.968903,50.55194,16.386 1326,474.25815,216.50313,18.214325,42.017593,14.336 1326,15.281813,217.74054,25.728338,54.587128,13.101 1326,0.6971407,225.16425,22.580204,53.658325,11.259 1326,605.27374,206.09445,25.485779,59.569885,10.724 1326,78.32507,226.3466,23.029228,45.930862,10.511 1326,185.45389,217.18906,21.35028,40.150482,9.779 1326,-3.6101027,210.91908,18.880058,53.47722,8.79 1326,458.12747,216.8907,19.75586,42.759293,8.492 1327,566.08264,218.01752,25.788635,69.32266,94.952 1327,532.73773,218.44,24.81726,49.798126,77.668 1327,6.043904,209.54909,26.438633,59.48506,56.863 1327,496.2251,216.80087,20.311462,42.52469,49.511 1327,601.5752,219.6455,17.773743,47.188156,43.664 1327,250.54834,221.14793,20.992432,40.590256,38.876 1327,36.961384,218.72017,30.423107,53.13582,37.058 1327,585.3529,222.85796,20.121582,51.40724,32.627 1327,469.52393,219.18492,16.870117,39.04332,29.422 1327,209.92278,220.35472,23.768768,44.457047,26.678 1327,594.7784,223.88284,18.62445,46.24991,20.967 1327,52.739304,211.96924,30.32595,57.861572,17.383 1327,576.1713,218.52126,21.149048,60.28447,16.717 1327,22.534456,209.01355,30.709593,59.0177,13.206 1327,184.84627,215.04265,23.611038,43.816574,12.988 1327,482.69775,220.0964,18.219849,37.631287,12.592 1327,593.98645,203.89706,20.630615,52.096237,9.361 1327,572.7282,238.73514,29.78363,75.57431,9.025 1327,1.442107,227.13205,21.48073,49.105865,8.949 1328,517.2955,216.57568,25.598083,48.290222,89.52 1328,580.1025,215.73624,28.100708,71.05191,87.046 1328,498.7826,215.51605,19.528442,42.095856,57.617 1328,600.39685,214.40137,23.250366,63.68506,51.186 1328,473.5786,221.8858,18.199066,37.05298,47.21 1328,591.2687,213.58322,24.194763,68.25827,39.12 1328,178.26544,221.07756,23.277695,42.658066,35.716 1328,11.30844,210.60336,29.79197,61.05612,35.235 1328,29.89687,212.20699,29.994022,60.0493,29.642 1328,225.2096,220.21054,19.097168,42.976135,14.973 1328,504.3343,215.3966,23.062012,47.625214,13.983 1328,3.2215154,206.61919,21.401869,55.068283,13.95 1328,605.77484,201.19351,25.838074,67.259,12.884 1328,20.856834,198.48795,30.77248,67.14435,12.602 1328,585.9243,206.91937,20.144531,57.228394,12.264 1328,480.78925,218.56732,18.043304,38.31479,12.183 1328,462.16937,223.91986,18.008698,33.292725,9.817 1328,606.6607,231.70107,20.957153,50.807236,9.38 1328,375.83008,205.0155,25.939453,57.39691,8.919 1328,72.66343,206.86429,21.385216,44.8519,8.593 1329,595.8329,217.55937,27.74414,75.39726,80.441 1329,482.58267,219.28645,18.770813,42.93773,55.482 1329,7.4084053,210.58041,27.202156,62.028137,51.536 1329,507.94693,217.24794,20.263702,43.0851,50.945 1329,39.03474,213.56804,25.222393,44.599136,38.038 1329,617.5451,227.72191,20.814331,61.287033,37.404 1329,22.78584,213.84662,25.307621,47.248413,25.975 1329,1.4525676,208.89084,22.440424,57.700348,20.321 1329,605.21796,223.39893,27.758972,74.615234,20.166 1329,182.79695,217.32002,22.39972,41.92726,15.632 1329,499.12906,217.55249,18.346893,40.82541,14.12 1329,470.13196,221.69656,18.647705,36.875153,12.757 1329,-4.06825,216.26447,19.223997,51.927734,11.656 1329,43.97503,201.37688,30.042221,52.178116,10.649 1329,489.32904,216.1784,19.58496,45.272644,10.051 1329,144.5563,217.98047,22.87619,43.533936,9.631 1329,74.07605,207.50023,24.440292,45.42839,9.581 1329,32.873276,205.3832,22.652142,49.08113,8.587 1329,581.1671,212.13174,43.085815,130.59137,8.33 1329,-5.180744,-16.840534,16.911875,41.525433,7.632 1329,601.5757,207.12788,19.42218,57.635696,7.537 1329,587.8864,212.72952,18.854858,51.112152,7.325 1329,593.6054,201.17468,19.897644,54.841766,7.232 1330,483.68518,222.82697,20.568512,45.285675,69.604 1330,619.33606,224.51514,20.757324,67.56818,55.36 1330,504.8919,217.38712,19.440247,48.212616,41.248 1330,7.838835,214.25343,22.87015,51.16957,32.348 1330,38.513367,212.16223,26.406235,49.32965,28.55 1330,596.32605,219.12115,20.250916,48.495605,15.629 1330,22.507399,195.30278,29.411757,67.01265,14.442 1330,16.562174,209.07838,21.90619,52.004837,13.537 1330,44.407608,193.6252,31.56617,67.842636,10.794 1330,0.4458499,194.74287,25.262777,70.899734,10.378 1330,57.90768,188.71143,32.358067,68.84677,9.544 1330,606.53357,208.25096,31.76056,88.900925,9.329 1330,-4.2098904,219.60753,19.155678,47.795883,9.092 1330,489.86026,212.96233,21.19867,49.489243,8.856 1330,185.2784,223.31943,22.770996,39.99872,8.348 1330,-5.2747207,-17.148706,17.122524,41.32422,8.123 1330,392.9724,201.31305,20.20105,48.223053,7.72 1330,110.90661,232.4157,23.33657,38.064194,7.419 1330,620.75964,238.06113,25.815002,80.21625,6.787 1330,3.7853432,208.47804,37.937508,78.86919,6.633 1330,615.4336,195.67163,24.253723,72.90137,6.626 1330,606.0529,225.2315,44.493713,136.13446,6.489 1330,-6.3927183,488.70682,18.88604,42.558685,6.447 1330,-11.135707,-31.928576,29.01722,69.80188,6.439 1330,-11.994341,478.06467,29.799,63.91342,6.238 1330,497.56,225.69185,20.828918,46.20488,6.03 1330,600.8163,216.20503,23.836182,62.68318,6.009 1330,388.44058,212.6444,27.883636,52.435165,5.933 1331,1.117698,212.39357,20.116394,53.67061,64.154 1331,521.27625,221.95198,22.02771,51.42842,63.693 1331,514.0539,224.45876,20.73993,48.038498,62.029 1331,506.8733,222.59,19.924255,44.842804,47.112 1331,499.4421,220.84213,20.220856,40.176727,21.184 1331,48.34993,213.1644,21.755516,44.16516,19.305 1331,26.285393,210.48853,20.755299,46.270935,15.006 1331,186.27612,220.7411,21.482803,41.975174,14.88 1331,408.9348,200.95798,19.353607,47.791443,14.107 1331,30.778341,201.79315,26.799421,55.450073,12.896 1331,7.8798065,211.09654,21.025074,49.792435,12.564 1331,71.41111,213.04874,22.549805,52.7323,11.155 1331,16.945202,210.5277,20.914547,48.316605,9.73 1331,532.96173,218.41685,21.499817,51.523697,9.265 1331,621.1676,221.40172,18.273682,50.00743,8.113 1331,404.56693,211.54863,27.121948,54.58287,7.919 1331,-3.569671,203.35603,18.434877,49.21556,7.646 1331,-5.465662,-18.013496,17.369188,43.178802,7.535 1331,38.71792,188.64365,28.420792,67.454926,7.284 1331,-6.1150465,490.338,18.302574,41.495483,7.152 1331,613.265,450.6937,39.309082,112.71231,6.935 1331,53.916546,206.2291,25.864002,56.500244,6.914 1331,627.3471,-17.228504,16.832092,45.88836,6.891 1331,-11.112507,-32.063507,29.12162,70.80398,6.712 1331,96.357735,235.78761,22.841347,37.554886,6.658 1331,472.83734,212.68303,19.914429,39.932114,6.574 1331,622.93207,-33.32587,26.428162,73.851944,6.306 1331,-12.0364275,480.00073,30.042995,61.55237,6.208 1331,175.53287,208.7198,27.039139,53.905075,5.815 1331,-5.3254724,169.06097,18.658407,47.217026,5.81 1331,626.51117,487.52618,21.038818,45.572388,5.627 1332,559.34094,225.75809,25.75116,56.77246,87.351 1332,521.08575,220.29144,24.261353,46.272095,68.297 1332,28.626534,216.86319,30.127094,61.851288,45.741 1332,1.2100756,210.64192,26.463064,71.51137,27.091 1332,11.833437,211.40572,31.783812,71.31346,16.246 1332,45.49682,219.01079,28.14116,57.069046,14.487 1332,568.31525,224.29684,28.331604,62.010345,13.416 1332,532.69543,219.69675,22.829407,46.811676,11.503 1332,-3.649364,217.00862,19.740963,52.02162,10.932 1332,182.45523,224.99695,22.036316,43.718414,10.468 1332,53.431084,206.12253,28.647171,66.11194,9.649 1332,427.2176,201.98439,20.570038,46.634796,9.295 1332,-5.3011537,-18.207415,17.291105,43.676613,6.753 1332,431.35217,211.28113,22.382416,46.53662,6.748 1332,626.73334,488.5606,20.61969,44.471924,6.392 1332,627.4315,-18.429161,17.295715,47.149265,6.081 1332,36.9877,193.50537,31.045967,76.03528,6.073 1333,583.8598,229.41599,27.046204,62.818848,96.338 1333,605.6774,224.7403,25.660278,66.20416,92.739 1333,530.1649,216.25124,22.35437,52.631393,88.731 1333,542.4696,215.38524,22.656067,56.42906,66.799 1333,513.8694,215.35161,21.441345,48.835617,53.477 1333,520.94147,213.34486,23.43628,56.176895,25.448 1333,427.52258,209.66254,18.177643,44.430496,11.538 1333,1.6757655,222.81537,20.304031,46.36508,8.522 1333,434.1825,207.00227,18.166626,43.634552,8.405 1333,114.94221,220.2271,31.182,59.94548,7.815 1333,5.4548454,211.72821,27.639729,61.303314,7.245 1333,25.280281,207.31346,21.305725,54.695297,7.104 1333,609.6927,216.35907,33.05945,88.50629,6.882 1333,-4.760248,-16.421505,16.17444,41.732723,6.854 1333,495.04837,211.13892,27.319794,56.00058,6.749 1333,-16.482351,187.45032,49.43934,130.21313,6.616 1333,72.55572,201.82841,22.468513,49.035904,6.59 1333,576.92645,221.1987,25.93097,57.048584,6.513 1333,-4.5771008,226.37589,18.177197,45.609497,6.329 1333,626.6173,488.45667,20.481628,45.5141,6.246 1333,-12.106042,-42.770386,40.905018,102.78122,6.234 1333,-6.20183,489.3131,18.620806,42.13385,6.005 1333,-8.624067,465.4966,37.32289,91.148224,5.952 1333,465.40826,148.2303,21.126495,47.325317,5.922 1333,610.72034,-48.13349,41.75061,99.99032,5.842 1333,155.80267,218.69833,17.389252,33.42807,5.822 1333,163.47542,219.17644,18.130936,34.879715,5.731 1333,304.7973,212.46773,22.693268,40.323288,5.617 1334,564.74554,208.09196,28.616943,64.75618,86.21 1334,542.74054,207.84839,24.229187,60.51587,50.351 1334,551.8928,208.74747,25.74701,62.325714,18.213 1334,530.1519,212.4114,22.75763,52.070282,16.03 1334,425.416,212.90074,20.788422,50.76613,9.922 1334,497.0021,234.9601,22.671173,41.948044,9.746 1334,434.56604,205.63321,19.059113,42.53386,8.862 1334,120.7832,214.78403,23.75093,51.58484,8.624 1334,50.236496,211.3569,19.976532,35.958984,8.273 1334,-4.9449415,-16.682613,16.733166,40.9829,7.883 1334,58.166206,212.3209,19.232658,35.401733,7.782 1334,627.0258,488.35736,19.38324,44.96747,7.004 1334,441.64746,213.39847,20.60614,51.765472,6.829 1334,444.43353,226.6867,27.837128,58.736816,6.669 1334,-11.908082,-42.556053,40.739174,102.369606,6.157 1334,576.65515,205.62581,27.207642,69.627365,6.152 1334,41.100517,210.95503,21.840416,36.96086,6.127 1334,102.92191,211.77524,27.722954,62.28476,6.083 1334,428.3499,202.597,18.473969,39.87822,6.052 1334,-6.3234596,489.35373,18.694454,42.670197,6.027 1334,397.23572,174.34799,27.01715,70.81787,5.892 1334,53.15963,205.60419,28.292534,54.435913,5.825 1334,466.23816,159.46605,20.479431,53.03441,5.782 1334,623.39294,-33.590965,25.960815,72.497604,5.742 1334,499.9744,213.83333,28.667816,62.498703,5.575 1334,265.14697,208.01735,21.773346,36.31099,5.538 1334,-8.615333,465.1449,37.034092,91.70514,5.491 1334,619.0023,490.19446,19.399536,41.578247,5.267 1334,583.5883,412.8188,71.14465,175.98798,5.261 1334,288.5817,205.15869,23.867523,41.698395,5.26 1334,28.689308,198.493,29.856178,52.550217,5.211 1334,519.97156,215.78175,28.039246,59.80345,5.203 1334,565.79456,77.13432,25.69983,64.95117,5.197 1334,-3.8330984,158.89433,16.496876,38.222443,5.177 1334,612.7314,456.62555,38.891235,104.34766,5.162 1334,258.79175,216.0885,19.290802,30.906876,5.039 1334,17.416594,208.66405,43.450127,76.78725,5.015 1334,-72.9745,265.0257,201.01097,463.63104,4.987 1334,628.10046,-17.779222,15.993713,45.15503,4.968 1334,297.36423,215.01701,20.725616,33.57135,4.916 1334,34.782925,207.05421,32.169544,60.655594,4.848 1335,616.4279,215.04375,22.222717,72.7834,35.721 1335,467.062,211.95767,16.76474,37.620148,18.891 1335,453.05374,205.51657,18.450623,41.972885,15.159 1335,368.57147,229.18893,24.56253,44.509247,14.068 1335,459.4725,211.3028,16.912628,38.198242,14.001 1335,559.86456,84.689865,22.41681,57.720596,13.74 1335,601.2168,219.17603,25.929443,64.87085,13.328 1335,488.8516,213.52925,20.840668,48.54576,11.895 1335,2.494322,200.8779,20.096306,58.544586,11.647 1335,424.62073,208.71689,20.602509,44.423767,10.832 1335,138.81787,222.51103,31.085571,62.17369,10.659 1335,555.77966,233.41185,33.19812,59.478195,10.15 1335,491.47006,217.56714,28.219635,70.071594,9.415 1335,473.21927,210.13704,18.69159,41.832306,9.226 1335,481.0595,215.59277,26.488434,72.78793,9.156 1335,-4.242382,-14.708595,16.104952,39.66205,8.807 1335,3.690877,207.234,30.507214,72.89043,8.512 1335,418.32553,192.36505,20.802582,53.264618,8.492 1335,-9.248435,208.00465,28.153282,73.21538,8.423 1335,136.72621,216.80516,24.63388,44.497177,8.389 1335,618.2814,61.057648,17.32843,50.64731,8.311 1335,623.38257,231.09491,20.658325,57.79901,8.278 1335,406.82327,176.36986,25.823395,73.00099,7.75 1335,4.4197264,-10.500991,14.398282,34.890144,7.604 1335,426.12036,227.92116,20.753418,43.57045,6.88 1335,569.66437,231.0376,32.55255,59.52887,6.856 1335,620.96643,32.419777,15.22522,41.547157,6.731 1335,484.65564,234.98619,30.20337,70.41786,6.485 1335,455.65894,194.61107,25.620392,58.909256,6.321 1335,623.01904,-34.01894,26.175049,74.43282,6.299 1335,627.1734,-16.820137,16.954773,45.155067,6.223 1335,361.84842,226.47514,23.75064,39.736954,6.159 1335,-4.8555784,205.3005,18.43526,50.02736,6.139 1335,-6.2122607,489.156,18.730991,42.006897,6.118 1335,626.4924,488.65698,20.778442,45.885498,6.088 1335,8.867601,200.5728,19.175907,40.998764,6.064 1335,452.31747,221.95822,16.516388,33.39743,6.057 1335,257.78723,207.84279,21.275482,33.292435,5.969 1335,-8.759335,464.82544,37.68654,92.60193,5.962 1335,607.378,215.71477,44.065613,118.8607,5.808 1336,546.235,209.54309,27.620789,61.856384,84.834 1336,527.0222,213.44078,22.99524,44.92888,37.256 1336,445.88455,193.26697,26.50467,62.713593,19.395 1336,587.82446,213.66399,26.89087,57.867203,16.998 1336,537.27344,212.19354,23.415833,47.28003,11.803 1336,515.7418,212.8943,20.922485,46.391922,9.891 1336,385.0965,239.026,23.717438,44.26532,9.608 1336,92.81227,197.14694,31.61724,62.45993,9.466 1336,396.95245,231.65622,30.30371,56.963013,9.293 1336,581.2636,221.49487,39.36151,90.65167,8.83 1336,107.144455,202.17206,31.802628,63.86194,8.668 1336,522.339,219.07692,20.61383,48.361557,8.216 1336,263.85217,214.22075,24.117554,33.340683,7.959 1336,482.28818,236.89171,31.75534,65.59947,7.87 1336,119.7668,212.1978,22.375412,43.641693,7.412 1336,392.90906,234.40054,22.083069,40.75183,7.379 1336,79.52494,205.07867,23.94645,45.73642,7.281 1336,490.2478,220.02283,30.842834,70.67529,7.267 1336,-5.5743814,-17.485508,17.596449,41.9277,7.044 1336,402.06876,232.99564,20.644684,35.75818,6.937 1336,62.473602,208.8641,24.502579,46.901947,6.916 1336,58.282566,217.04059,33.272038,68.10718,6.766 1336,-6.315367,490.08337,18.938261,41.62567,6.757 1336,461.22858,215.92896,30.434082,65.680695,6.723 1336,575.2157,233.7967,50.330017,135.95299,6.581 1336,-11.604902,480.02777,29.592896,62.250244,6.577 1336,462.7315,205.48502,23.370056,46.09108,6.561 1336,171.24696,221.99075,29.052185,59.64447,6.387 1336,376.18054,241.05035,24.397156,40.58899,6.349 1336,88.100876,202.54634,24.093575,47.500717,6.271 1336,564.5298,208.72546,29.790161,52.98761,6.195 1336,497.64722,213.63612,21.479492,49.31639,6.091 1336,-5.5377817,200.79375,19.405914,43.14659,5.972 1336,453.62646,200.93565,28.929626,67.543076,5.936 1336,404.5692,237.96729,30.20633,66.00073,5.929 1336,611.5946,-48.789467,40.847046,103.61209,5.831 1336,626.61676,487.94727,20.50061,46.43274,5.758 1336,1.2110412,209.89279,21.824558,49.731567,5.752 1336,368.66962,236.23692,23.785858,37.85936,5.682 1336,-11.185463,-32.190304,29.429054,70.778366,5.671 1336,612.74255,455.79913,39.672363,106.27533,5.667 1337,608.4429,206.54744,24.142761,76.16325,59.785 1337,510.3806,202.93596,22.475952,49.444946,28.925 1337,618.0376,210.62253,21.232666,68.125916,18.519 1337,43.8755,201.12016,32.550556,71.260025,16.938 1337,534.46356,199.13574,27.918701,60.611176,14.543 1337,601.7855,209.42007,22.425842,63.852722,14.24 1337,452.17697,184.52255,29.91275,67.69084,10.256 1337,500.84064,207.71576,30.492981,65.96887,9.87 1337,91.95606,202.17906,32.57866,70.17369,9.243 1337,525.55273,194.28972,28.023376,56.761032,9.174 1337,519.0856,203.95715,23.496338,48.25168,9.092 1337,475.2951,219.90575,30.592194,60.21132,9.03 1337,14.731154,196.10106,50.781525,119.547226,9.001 1337,478.13293,183.27759,28.105408,68.26703,8.967 1337,58.106712,201.08012,32.563408,63.09056,8.74 1337,541.6162,191.70505,29.29126,57.729446,8.009 1337,419.2976,219.32582,20.95996,37.253098,7.728 1337,106.34761,203.38445,29.575256,59.195602,7.442 1337,583.4397,218.5857,30.404785,73.491394,7.341 1337,530.9763,195.32745,18.649414,36.66217,7.316 1337,3.9590764,197.42923,39.592484,109.8909,7.295 1337,-5.379758,-16.6423,17.618126,41.818428,7.154 1337,75.17138,198.71866,32.26259,59.16565,7.0 1337,30.326782,197.78084,31.680645,65.72594,6.952 1337,-9.499457,196.68546,28.108765,68.13553,6.687 1337,443.328,240.35204,32.66693,64.01967,6.668 1337,89.2485,198.2844,23.69664,44.96933,6.541 1337,488.573,190.762,21.16272,48.707123,6.511 1337,-8.92211,464.08853,37.72046,92.718475,6.366 1337,140.17183,216.71338,31.877808,60.818756,6.204 1338,599.76904,199.12852,26.014893,71.11311,73.261 1338,613.7003,196.977,24.004944,79.19792,42.67 1338,521.17426,205.057,22.01233,47.223175,23.143 1338,584.8145,196.4917,27.52185,70.73718,16.908 1338,494.78543,202.01915,27.69284,61.305496,14.528 1338,25.50925,189.3125,32.17845,66.20006,12.878 1338,514.4889,201.56413,40.30304,77.19133,12.045 1338,548.9019,196.98494,37.77887,84.95323,11.236 1338,55.89369,203.02473,23.518543,41.75702,11.076 1338,5.056956,189.52286,30.057806,66.30365,10.9 1338,565.8605,195.05943,36.37207,85.720566,10.407 1338,139.2992,205.85556,18.675339,43.540207,8.929 1338,593.9434,196.4358,23.231201,49.24312,8.628 1338,210.21243,205.20001,20.33197,37.505157,8.174 1338,532.1844,199.69919,40.475403,82.254425,7.895 1338,594.1161,182.0451,42.33838,105.43161,7.751 1338,620.78107,209.97661,26.332031,78.54802,7.703 1338,144.83553,211.45157,20.18251,45.333893,7.612 1338,515.0763,210.21965,21.593079,51.00203,7.542 1338,133.59366,205.76926,28.691483,63.95175,7.138 1338,417.42612,215.75244,21.188354,41.63208,6.985 1338,-5.2573633,-16.768772,17.120655,41.25162,6.867 1338,499.09625,202.30673,41.933655,86.14621,6.742 1338,273.28488,210.88544,22.108612,39.3118,6.728 1338,521.34705,182.6334,21.648438,47.436584,6.629 1338,-6.378324,488.85684,18.93136,42.855072,6.575 1338,605.64276,217.72095,27.878418,75.96533,6.567 1338,492.8416,225.62674,30.734985,69.42685,6.335 1338,14.29256,208.08685,25.85772,50.96225,6.331 1338,602.218,191.07245,20.497498,39.550964,6.273 1338,504.41846,205.00697,20.863037,44.45598,6.214 1338,-11.1283865,-30.744488,29.478615,70.3938,6.104 1339,273.04608,207.51495,22.9216,47.304504,27.254 1339,580.84283,201.2095,28.28424,67.975555,24.299 1339,568.142,201.24945,31.428894,70.405396,8.723 1339,537.34357,203.23651,34.599487,64.49939,7.993 1339,556.32996,199.1799,33.162415,64.70621,7.418 1339,524.19446,214.89856,31.863892,65.57141,7.367 1339,417.78488,215.08931,18.43869,40.046738,7.328 1339,575.85583,175.82637,48.855835,107.94316,7.199 1339,590.2266,211.09799,29.711487,75.0264,7.168 1339,339.46182,209.40375,19.718414,34.916077,7.161 1339,-5.511284,-17.714176,17.417828,42.672703,6.919 1339,-10.818224,-32.36863,28.626583,71.18992,6.72 1339,8.762833,203.46298,23.390625,45.871063,6.664 1339,586.24274,175.26556,29.487915,73.114105,6.478 1339,507.53842,209.23808,31.662079,67.196915,6.063 1339,-5.8054614,488.8582,18.028608,42.276398,6.022 1339,-11.359754,476.5838,28.932327,65.63428,6.01 1339,627.4267,-17.077152,16.65039,46.790283,5.978 1339,334.1637,209.87677,29.695526,57.52893,5.806 1339,-17.131603,-63.97794,55.39426,145.51918,5.793 1339,535.4883,202.24063,25.599548,41.886597,5.695 1339,26.904661,204.77979,33.216362,67.02084,5.674 1339,3.405991,-16.432755,16.540318,39.77546,5.673 1339,597.84467,175.56409,35.74408,99.13336,5.53 1339,12.61402,175.06812,28.505943,66.96709,5.506 1339,484.89923,223.63148,29.424255,61.97371,5.469 1339,612.5346,454.6753,40.304993,107.833374,5.356 1339,500.65747,181.97714,27.871704,67.75079,5.319 1339,617.2867,228.32935,21.222656,59.967285,5.319 1339,626.541,487.96228,20.69165,45.930725,5.311 1339,603.28296,224.76485,30.724731,69.954544,5.276 1339,532.0074,136.08466,27.425842,62.76085,5.215 1339,-73.17341,265.11465,201.83173,462.70895,5.209 1339,411.9369,219.55035,18.85492,40.990784,5.202 1339,623.1065,-33.359093,26.072876,76.949715,5.123 1339,330.77332,209.05573,19.711578,34.64247,5.012 1339,-4.706255,168.92918,17.96585,45.827744,4.987 1339,552.07587,226.1176,24.52246,45.15291,4.957 1339,6.2071657,211.53171,30.189392,60.551056,4.889 1339,21.771473,166.88301,29.881512,62.013535,4.867 1339,582.82556,411.71484,71.78052,176.11743,4.829 1339,338.53244,228.04121,20.179413,37.06624,4.817 1340,265.75778,205.88739,25.41809,58.200195,17.98 1340,588.0149,201.09831,26.526001,59.14409,15.161 1340,458.08215,228.23584,21.12738,50.014954,13.596 1340,504.734,209.84691,20.644775,46.99614,9.369 1340,442.6458,211.90833,19.249176,44.567963,7.879 1340,-1.8971145,221.42317,27.806828,58.14955,7.79 1340,-4.6191382,-16.075256,16.218327,40.873184,7.358 1340,477.14294,214.96991,25.747131,62.72586,6.886 1340,496.24356,213.82646,24.894196,60.758865,6.783 1340,454.78357,198.62274,26.773804,67.46838,6.694 1340,39.11282,145.84676,30.150501,85.90068,6.473 1340,-11.849198,475.5907,29.689144,66.69165,6.152 1340,626.5367,489.06223,20.667297,44.735687,6.071 1340,580.8054,219.78548,39.620667,78.981186,6.023 1340,436.37604,208.78926,18.077087,38.738083,5.911 1340,470.0325,223.83948,24.936005,65.590515,5.898 1340,-10.775971,-31.410156,28.881962,71.76247,5.807 1340,439.88422,218.98535,26.483765,63.247406,5.731 1340,-5.923086,489.23135,18.066076,42.976532,5.648 1340,452.20483,236.8215,30.190308,68.4386,5.643 1340,4.515871,-12.364617,14.566128,36.116623,5.623 1340,627.4831,-17.69489,17.046692,45.797775,5.527 1340,464.0599,234.51193,21.499512,53.025818,5.422 1340,183.98282,218.4213,22.824066,37.178864,5.391 1340,490.18054,227.27596,20.429657,46.80571,5.356 1340,612.6354,455.67252,39.822815,106.51871,5.318 1340,431.6629,212.60124,26.496399,58.965714,5.312 1340,-73.550575,265.24072,201.66855,463.23962,5.297 1340,611.2493,-49.71218,41.18927,104.30467,5.296 1340,271.5372,215.1762,32.55121,59.8842,5.292 1340,482.11523,203.5164,17.356049,45.749542,5.23 1340,509.5196,213.5216,28.323914,62.34674,5.23 1340,597.5404,216.27217,37.01703,86.67595,5.185 1340,-5.7684736,220.75534,18.729355,40.557587,5.179 1340,582.5748,412.63455,72.10388,174.74179,5.143 1340,551.5081,121.06619,25.851562,75.17502,5.119 1340,535.7173,309.5161,145.02441,342.037,5.078 1340,448.20328,212.21426,25.13089,61.55551,5.021 1340,-17.108139,-62.401398,56.053192,143.12997,5.011 1340,286.29254,195.44098,28.32373,60.404053,5.007 1340,493.98532,228.83453,236.22025,513.07935,4.942 1340,279.07318,209.81477,21.345337,46.048157,4.847 1340,-21.545559,402.88596,78.77869,174.6243,4.81 1340,580.39404,124.83398,30.406006,60.943123,4.799 1340,-15.844149,160.75066,52.02089,131.75008,4.769 1340,-4.0471787,4.582264,16.08932,40.16703,4.709 1340,577.56506,195.43773,26.726196,63.24196,4.63 1340,465.73926,212.58932,18.906738,47.65921,4.629 1340,241.72006,206.38684,17.77298,34.23819,4.625 1340,-10.7796,210.20938,28.679186,61.822052,4.548 1341,479.0054,210.96982,21.229004,57.101105,41.337 1341,433.1604,209.07458,24.865753,53.931915,21.016 1341,528.6821,212.42355,20.011353,54.226654,14.316 1341,574.4932,163.57925,29.399475,58.975067,14.2 1341,257.27798,219.30067,23.900177,48.811783,13.267 1341,524.8849,224.28809,28.956299,72.36383,13.04 1341,383.2579,224.84161,23.87619,46.029327,10.432 1341,498.61414,220.75577,19.3042,52.407257,10.358 1341,1.6306192,205.28752,19.427162,44.03044,9.317 1341,484.72427,207.91731,27.43753,58.997635,8.415 1341,456.93408,204.54324,22.358978,44.821243,8.219 1341,-5.505604,-17.047894,17.434307,42.382683,7.665 1341,443.95065,203.79546,29.668427,59.149673,7.35 1341,-10.790333,-31.627811,29.039248,71.59967,6.962 1341,536.01996,213.59685,20.766907,52.72249,6.854 1341,493.91272,196.8082,28.300232,67.01248,6.819 1341,-11.916842,479.3316,29.906296,63.108276,6.542 1341,-6.0489106,490.11475,18.521929,41.485596,6.268 1341,264.545,204.04893,32.395447,66.49904,6.207 1341,292.75388,191.5763,29.781555,64.97629,6.184 1341,539.89355,216.22696,31.070557,72.519684,5.995 1341,621.2314,217.85995,15.487732,43.718903,5.935 1341,523.0137,258.21405,35.925232,64.65106,5.924 1341,612.6811,454.01743,40.396606,108.00015,5.794 1341,453.6098,214.28069,27.540375,63.28282,5.766 1341,463.52493,204.28113,27.396423,55.71042,5.588 1341,449.75327,203.43173,20.443237,37.92906,5.521 1341,622.0973,477.0761,29.00531,67.42053,5.504 1341,-3.3473916,200.2734,16.78758,43.539795,5.324 1341,-17.84919,-65.08904,55.966835,146.47252,5.302 1341,581.4584,177.75569,37.941162,85.48122,5.27 1341,349.76608,220.14336,32.664917,53.42708,5.239 1341,-73.0964,265.38956,201.33313,462.79208,5.234 1342,508.1306,212.69583,24.3927,64.921844,86.124 1342,536.68585,229.66125,20.36615,50.541656,19.245 1342,592.40015,253.5807,30.275024,73.42601,11.936 1342,399.97235,229.58017,23.624695,49.03012,11.897 1342,247.91853,206.96233,30.139969,70.28172,11.74 1342,120.36681,211.0229,17.936134,41.518097,10.498 1342,489.64236,217.03293,21.950226,56.688293,9.316 1342,499.21033,209.85408,24.929688,61.04393,8.959 1342,525.27344,204.82193,31.282837,71.365906,8.603 1342,296.46634,194.0367,23.30484,50.92691,8.594 1342,-5.3144083,-17.11253,17.218502,42.576935,7.749 1342,312.71375,201.88075,23.389404,48.448288,7.101 1342,327.12646,200.86278,30.66983,58.563126,6.823 1342,518.4542,220.54704,22.511475,53.94478,6.755 1342,480.46216,222.88228,22.693085,50.835617,6.605 1342,544.5896,231.7765,20.115112,52.044907,6.498 1342,617.9656,159.27591,21.304932,52.064484,6.473 1342,564.2632,195.51181,29.524353,79.48117,6.413 1342,-5.825843,489.59125,17.96616,42.263977,6.353 1342,117.58157,204.41542,16.400986,34.597626,6.078 1342,-10.952636,-32.24388,29.702908,72.56324,6.052 1342,461.7586,218.89217,28.766235,61.325363,6.038 1342,-12.036233,476.96506,29.921165,65.227264,6.007 1342,265.96454,201.8576,33.375793,65.14169,5.722 1342,626.68353,487.94775,20.629211,45.57428,5.67 1342,584.33234,198.82541,23.37909,62.12332,5.627 1342,622.80035,-34.005646,26.811462,74.116745,5.504 1342,354.90402,212.047,18.829742,32.65834,5.454 1342,627.2901,-18.530727,17.376282,45.81916,5.452 1342,613.3274,454.90756,38.746033,106.84744,5.434 1342,472.1811,227.646,22.251709,47.016785,5.395 1342,539.1179,201.59106,31.873962,68.85773,5.285 1342,159.36212,222.15906,22.635468,34.80774,5.274 1342,-73.02811,265.64902,201.2344,462.4042,5.202 1342,450.09763,183.21849,19.324951,38.374374,5.185 1342,602.79504,-56.71701,53.34436,135.27126,5.167 1342,473.8879,212.31038,20.392914,43.306335,5.114 1342,436.89447,214.05917,29.176575,62.72342,5.113 1342,169.03001,214.9501,20.453644,33.065796,5.084 1343,544.96246,215.63512,26.425232,73.92345,96.463 1343,84.88344,213.13663,29.25824,57.0571,68.524 1343,614.1642,206.05629,24.39917,90.3983,46.782 1343,574.13184,217.67505,27.310974,72.23013,33.987 1343,555.23785,214.93353,28.332947,73.283936,19.56 1343,101.29784,219.74919,24.95179,50.31163,15.5 1343,246.38573,210.10959,32.471664,71.26938,13.075 1343,295.16492,196.13368,29.501831,65.03648,11.624 1343,599.3589,214.84149,30.159668,80.444,11.59 1343,586.5926,205.92455,29.166382,83.83412,11.256 1343,122.27403,218.2847,20.682907,42.955353,10.677 1343,353.31018,217.20622,20.365387,35.30002,9.924 1343,124.45629,224.06946,28.68998,50.05841,8.809 1343,345.2029,219.88985,22.3779,37.725327,8.754 1343,306.85208,203.88466,29.880066,56.240158,7.98 1343,111.28151,221.85226,23.821426,45.64096,7.547 1343,418.2108,230.27634,32.26242,62.899292,7.308 1343,373.3886,228.37724,32.2843,49.558853,7.05 1343,-5.6916847,-18.495377,17.58443,44.810528,6.959 1343,378.66296,215.8886,20.17215,37.006165,6.953 1343,422.75244,225.68144,24.288513,41.96202,6.902 1343,620.1631,197.2586,25.25879,77.893616,6.79 1343,521.2329,224.5285,21.841187,55.936493,6.749 1343,-6.170723,489.14786,18.175827,42.476044,6.623 1343,136.32753,230.16946,23.574646,36.384552,6.564 1344,108.6626,209.01791,28.520355,65.71274,88.379 1344,578.95685,216.61057,23.191528,76.21176,72.192 1344,592.81366,217.34703,26.139465,83.63466,59.369 1344,135.41042,217.44968,23.90123,49.503143,43.629 1344,607.0473,220.90714,25.624084,78.98984,23.13 1344,245.72894,213.64459,30.533997,62.782135,19.408 1344,549.09753,206.91422,24.926575,73.19229,19.241 1344,124.45317,217.28802,29.208923,59.736084,14.484 1344,583.91833,230.60252,25.209106,78.047806,14.193 1344,617.99585,222.68713,20.463867,69.16962,10.329 1344,496.98193,203.43767,23.169128,50.50656,9.734 1344,438.7427,221.1787,24.240265,41.457565,8.952 1344,391.61542,211.33997,21.188477,42.486526,8.935 1344,300.95895,199.68591,28.863922,59.891663,8.604 1344,5.123503,218.28577,31.683302,74.23093,8.365 1344,149.87791,223.03322,23.227692,39.57805,8.211 1344,524.93726,194.2435,28.985596,74.50363,7.783 1344,-5.4089565,-15.584283,17.449188,43.0891,7.582 1344,535.15924,200.83182,28.934326,75.42221,7.065 1344,-10.626919,-32.665924,29.579884,79.253174,7.04 1345,134.07037,211.01477,29.507736,65.54224,93.868 1345,155.69843,214.21043,32.281433,61.17543,89.927 1345,582.7094,199.08571,25.314026,82.87846,62.695 1345,617.5558,222.39156,21.589478,89.90828,62.098 1345,568.7936,207.28862,26.254333,80.866806,16.647 1345,111.89981,219.65414,22.77066,41.572296,13.34 1345,247.99263,209.46115,26.734665,59.673798,12.239 1345,121.07876,213.64265,27.71888,57.78856,12.048 1345,520.18756,204.89433,23.09613,48.985367,11.273 1345,603.4174,204.72314,31.101501,102.54443,9.947 1345,58.197563,213.3852,20.429718,35.855408,9.44 1345,-0.8949435,231.89493,22.786942,54.438538,8.787 1345,612.7499,186.3276,33.801575,111.32864,8.127 1345,258.16962,202.9952,29.413116,65.65129,7.876 1345,352.08316,230.50623,23.546265,46.24518,7.814 1345,-5.7187514,-18.092499,18.103428,42.405468,7.509 1345,623.08875,-33.174053,26.449524,73.535385,7.455 1345,300.59247,197.50107,30.131348,67.32706,7.323 1345,243.88144,217.2197,21.847137,40.26712,7.187 1345,172.83766,221.97273,24.774658,47.94136,6.973 1345,552.96313,197.17674,32.16736,80.32912,6.756 1345,-11.154369,-32.23753,29.933645,72.99142,6.712 1345,395.81622,219.54526,19.849243,34.47632,6.673 1345,627.2423,-17.32299,17.38086,45.39149,6.647 1346,396.95615,209.27481,25.435822,61.162384,85.547 1346,184.54144,215.51639,32.32254,65.8107,82.4 1346,159.09473,213.84314,35.584473,67.698364,74.228 1346,615.9858,203.99872,21.745178,72.309814,59.031 1346,38.7604,221.59296,26.026672,55.91034,28.678 1346,353.9999,224.99915,23.01596,51.688904,17.856 1346,173.19376,206.28212,30.069366,70.620895,13.415 1346,300.37827,198.07457,30.835358,69.475845,9.701 1346,310.75806,198.1524,33.289185,85.3584,9.128 1346,554.7354,205.95305,21.637146,43.33699,8.891 1346,198.95918,222.38509,21.88002,44.608353,8.739 1346,603.75757,209.98714,19.780762,57.64012,8.462 1346,472.32324,232.4958,23.604675,38.3217,7.826 1346,518.51056,202.10757,27.61908,58.730194,7.739 1346,343.31976,219.94629,29.391663,66.87097,7.686 1346,406.06827,211.79909,22.95636,49.775925,7.628 1346,1.6051197,227.04813,27.476164,70.295166,7.55 1346,581.99817,229.57922,28.477905,66.68848,7.397 1346,528.57355,204.52989,21.880188,45.001358,7.228 1346,603.38196,208.37727,31.664001,90.70998,7.149 1346,589.94196,195.65602,27.38208,72.93858,6.96 1346,537.53735,204.73741,21.817322,43.34117,6.891 1346,610.214,242.20967,21.118835,53.186874,6.846 1347,183.20555,217.23337,33.41179,73.02762,95.034 1347,380.41196,214.39578,26.584137,61.692688,93.736 1347,58.66449,217.2705,31.206375,65.14021,93.61 1347,211.10008,223.4416,30.251968,65.84856,75.211 1347,20.469294,219.56723,33.29074,64.99118,35.222 1347,536.7404,211.76341,21.763733,46.392227,22.201 1347,195.71005,215.97855,38.34903,78.53177,20.05 1347,97.46224,209.40253,18.322426,36.14708,16.325 1347,36.852432,218.80017,24.97736,50.37384,15.52 1347,369.2126,218.15273,24.756836,52.00438,13.857 1347,576.69055,207.2155,24.4151,52.889023,12.165 1347,618.952,222.28079,18.79895,35.29181,11.756 1347,592.2082,208.2447,22.312805,44.37468,11.418 1347,553.3066,208.75565,23.247925,50.51306,10.084 1347,539.5973,210.58038,29.553955,68.05286,9.925 1347,565.8902,206.39449,28.521545,61.004166,9.762 1347,526.8296,216.94058,28.763733,62.377716,9.741 1347,48.170795,216.22128,30.08765,60.002045,9.56 1347,84.400566,208.37541,18.920311,36.540436,8.946 1347,503.99792,230.0394,25.317505,51.829376,8.762 1347,6.262389,215.39384,32.18461,68.59093,8.47 1347,310.5528,201.96265,34.116516,83.46588,8.399 1347,550.7035,204.00713,35.19873,78.87239,8.387 1348,199.55795,219.60951,30.519257,68.240036,98.535 1348,81.86797,219.10379,37.01835,74.50073,93.802 1348,227.56027,218.16455,29.423828,73.89075,80.612 1348,43.768616,225.42345,28.695984,59.45613,71.868 1348,366.06125,217.21503,30.181274,71.6095,52.046 1348,553.3913,215.30168,19.85608,45.51219,18.875 1348,570.3899,213.08965,19.76886,40.54924,17.836 1348,528.7056,214.88542,21.446472,45.619583,14.532 1348,-0.9597516,224.74207,23.648548,70.76099,14.09 1348,562.1122,218.0528,20.710205,47.87152,12.154 1348,542.76605,213.7404,28.430115,61.89891,11.666 1348,34.357952,219.49858,19.713242,41.76143,11.344 1348,566.33026,217.14821,27.570557,67.7881,11.327 1348,24.905437,224.96664,21.24644,40.600433,10.76 1348,607.35565,212.37286,27.730286,63.644745,10.513 1348,40.699024,218.72952,22.971989,46.85489,10.339 1348,446.65527,231.50723,23.015991,31.676056,9.93 1348,252.24808,218.34937,31.277588,67.93329,9.704 1348,324.94736,206.10779,35.08435,82.41113,9.644 1348,80.96905,214.83403,25.51883,54.025528,9.528 1348,578.9341,216.54556,32.282104,75.720825,9.17 1348,309.73468,202.75734,30.56018,74.04961,8.865 1349,231.0369,219.90149,28.859375,75.84802,85.921 1349,107.7679,218.40564,37.195267,76.16376,85.033 1349,66.31358,222.83688,34.493065,70.362976,68.892 1349,5.1119256,221.76515,31.372702,86.120804,54.436 1349,343.53152,211.60355,33.888153,86.5224,52.019 1349,583.84045,213.75021,20.181519,39.532806,21.956 1349,559.3613,210.75554,21.256104,45.10048,19.904 1349,95.58128,216.64667,34.297134,69.91858,19.216 1349,243.10303,220.6498,30.164307,74.223526,18.062 1349,538.37225,212.45528,21.986938,48.79323,17.546 1349,619.1852,219.04736,19.501343,52.770844,16.448 1349,310.75775,205.90315,33.17215,93.40968,16.403 1349,333.5401,212.66782,31.954437,70.451935,16.097 1349,345.88074,213.56778,23.8237,54.79715,14.944 1349,80.40364,220.13068,34.405663,63.950592,14.655 1349,292.8178,216.73198,31.272919,69.88234,12.929 1349,327.89856,214.9793,25.50476,54.17238,10.921 1349,608.3973,216.54306,25.67035,73.9682,10.311 1349,569.5727,213.48633,21.73236,44.96994,9.904 1350,148.50081,221.76976,42.88774,81.5374,96.84 1350,383.14346,218.21773,43.308685,107.10622,92.51 1350,4.175782,217.77075,36.530914,96.08258,87.921 1350,99.52835,221.62076,35.23352,73.40704,77.282 1350,20.412842,216.63141,38.8743,93.78595,41.834 1350,373.03683,220.49513,33.574036,77.87596,39.995 1350,569.1372,210.66579,21.248291,51.79207,29.663 1350,278.43195,205.58719,32.937683,92.356384,23.929 1350,311.06372,205.0792,34.007263,106.09662,19.125 1350,268.7263,214.74963,31.687286,69.45361,19.064 1350,323.7573,208.97849,36.273804,100.82864,14.867 1350,254.37502,218.08665,29.240921,67.38313,14.837 1350,338.08124,214.65529,30.641357,68.95888,12.592 1350,263.8958,214.65007,23.761322,51.562515,12.542 1350,293.77783,205.47115,34.628906,105.20494,11.812 1350,574.97626,212.39964,24.45282,58.156235,11.714 1350,619.65173,201.34863,19.903992,48.56105,11.577 1350,585.8588,216.05194,19.194641,43.964417,10.647 1350,434.38495,218.60205,20.395874,37.62503,10.386 1351,450.44592,224.31396,47.871307,97.024475,95.59 1351,198.01334,219.90256,42.75975,89.472046,92.995 1351,61.79926,218.42108,43.14432,104.3996,88.408 1351,147.36575,224.03174,39.005325,78.753296,87.601 1351,37.76425,219.92302,41.514954,97.64577,71.997 1351,599.4986,210.80617,26.148254,62.85704,36.941 1351,585.33484,210.66399,20.73816,53.314194,27.981 1351,274.74106,203.93723,37.121277,104.00644,27.97 1351,262.92307,213.3911,24.832703,51.089676,22.72 1351,268.43637,213.94049,32.42218,72.94025,19.313 1351,594.6593,211.32936,21.099304,52.22545,17.48 1351,247.97302,209.01572,36.550446,90.73129,13.438 1351,569.88776,211.65773,22.56073,48.18297,11.482 1351,289.749,203.0993,38.48001,109.30286,11.327 1351,279.58237,210.36153,25.417572,52.8134,10.969 1351,564.44684,215.9137,31.853699,72.29718,10.416 1352,204.67252,212.41031,48.96158,99.057556,95.486 1352,93.35512,213.62006,50.99196,106.954956,93.81 1352,368.74927,215.26537,40.236816,92.80116,92.522 1352,123.77277,216.55817,46.05863,104.28577,48.397 1352,607.9798,210.32175,26.503113,66.740814,47.232 1352,257.86295,207.64624,38.836426,93.18277,38.489 1352,603.38556,213.03961,19.448181,50.303955,25.909 1352,586.48566,215.82455,19.423157,44.422424,17.857 1352,592.9021,215.8085,21.052307,50.009125,17.449 1352,358.36908,216.26636,33.189026,73.214386,17.399 1352,391.54327,220.83876,23.690186,51.976242,15.398 1352,583.3806,214.58377,28.812378,71.83536,13.044 1352,324.0174,204.08488,38.1344,104.62367,12.807 1352,340.3994,212.1305,31.225586,76.582214,12.678 1352,351.3081,216.58913,26.051971,55.333023,12.121 1352,374.59717,217.8077,24.574615,57.529587,11.163 1352,263.18924,215.19861,25.167908,49.11151,10.948 1352,292.0618,207.74556,37.189972,101.92662,10.682 1352,7.6490345,159.08365,28.356134,78.1947,10.036 1353,410.58017,221.68095,30.036621,74.55141,95.909 1353,145.32143,210.99649,52.179718,115.41913,88.067 1353,174.07327,215.42,50.69832,112.47319,71.84 1353,608.27045,215.5054,25.15387,64.175446,25.085 1353,200.69319,214.7198,46.786804,102.26439,22.8 1353,591.8997,212.70053,25.97754,66.66208,20.206 1353,559.62146,213.4396,23.694214,46.915375,15.047 1353,257.82336,214.87628,35.244537,80.32422,14.837 1353,324.2209,206.64734,39.29355,102.67218,13.059 1353,585.5177,212.99597,22.870178,53.022125,13.043 1353,337.93567,212.67383,33.22293,63.903687,12.142 1353,564.7262,214.26215,28.955933,69.1311,11.364 1353,601.14264,214.13326,22.160522,50.469162,10.446 1353,401.99405,212.85556,28.403442,71.38635,10.366 1353,576.56805,214.78546,23.138428,55.77298,9.851 1353,372.3181,213.311,35.824524,90.57947,9.673 1353,448.3929,218.39429,20.324402,41.702026,9.611 1353,243.83481,216.08148,41.715088,105.359436,9.544 1353,357.43768,209.23964,38.81906,98.840866,9.411 1353,146.94339,204.95644,32.27536,80.266464,9.3 1353,597.61755,210.18674,37.346436,97.86856,8.565 1353,410.5827,210.52866,19.774933,37.365585,8.506 1354,64.15941,211.11024,49.59816,124.91817,94.231 1354,441.0138,225.78629,32.49814,70.342224,94.169 1354,381.3783,223.6666,43.732483,100.03244,88.511 1354,238.97946,217.4182,43.78763,86.89107,70.468 1354,368.86646,221.07492,34.141205,74.424194,39.434 1354,532.6945,218.52734,30.196045,67.33728,30.343 1354,617.13446,212.66269,20.535461,57.224213,20.73 1354,258.04532,218.49554,33.173004,76.046265,16.765 1354,600.4515,210.54013,24.292847,65.62088,15.7 1354,358.04126,214.9798,51.31958,111.2229,13.682 1354,546.04254,214.61713,33.198853,68.82797,11.285 1354,573.38965,210.64682,28.292847,73.24191,11.011 1354,543.5845,216.5454,22.696045,48.467667,11.001 1354,596.4965,209.84035,16.395386,36.23378,10.48 1354,584.5027,207.50592,33.12683,91.1525,10.159 1354,270.93896,223.10793,23.794617,60.128616,9.846 1354,612.31506,213.26462,17.59436,41.19536,9.519 1354,323.3662,208.30284,38.98764,101.94524,9.366 1354,604.9559,212.58221,15.95636,35.222626,9.056 1354,276.03137,212.48013,37.76169,93.80603,8.846 1354,62.70114,216.22002,31.345985,91.28731,8.745 1354,341.838,206.51016,41.948425,98.47989,8.719 1355,0.9631777,214.94446,45.41078,121.74963,94.975 1355,419.98303,222.0509,42.55194,90.76428,88.297 1355,368.5406,221.43948,38.196136,86.72797,57.505 1355,478.89966,223.82224,27.596375,69.97867,55.85 1355,489.50955,226.60379,30.975311,69.63876,27.142 1355,616.88556,212.66313,21.10138,58.180435,23.004 1355,436.6637,220.25743,29.743286,73.7043,18.37 1355,600.2853,204.03586,31.880066,95.25577,17.115 1355,325.01163,208.80354,35.308838,102.51317,15.8 1355,601.0464,215.34424,21.592285,52.80722,15.446 1355,369.10822,224.11986,26.24414,54.69484,14.673 1355,594.4627,213.81635,19.780518,46.256287,14.044 1355,295.29758,205.47362,32.852814,99.58516,13.71 1355,258.6815,216.15553,30.974457,72.787674,12.564 1355,311.32635,208.01053,33.877472,104.10321,12.251 1355,612.1255,213.68126,17.747131,42.039856,11.905 1355,390.42984,220.40411,40.441254,89.38367,11.707 1355,408.4633,229.85567,38.38498,77.87276,11.509 1355,586.9064,214.85854,19.93988,45.361282,11.429 1355,585.88745,208.12418,33.810974,87.93808,10.731 1355,304.09344,223.84338,24.852356,52.46396,10.302 1355,380.9171,225.68608,25.783386,54.45778,10.249 1355,573.81085,216.02214,28.922363,67.580765,9.558 1355,1.5594268,210.3741,33.602634,77.8033,9.513 1356,373.58606,220.87785,38.694824,90.86641,89.217 1356,417.6931,222.64499,33.95575,89.94052,88.652 1356,489.38596,225.26038,30.011505,87.412476,81.401 1356,407.09857,223.8911,30.213287,79.58263,40.46 1356,524.93494,223.02605,25.369568,65.900894,39.376 1356,592.14465,214.57474,21.549805,51.151855,28.569 1356,582.68085,214.60062,28.118042,77.382416,15.26 1356,489.46313,220.81133,21.124176,57.644363,14.516 1356,424.82574,222.61705,22.312653,59.007126,13.979 1356,599.9018,206.6358,31.330994,98.434326,12.731 1356,618.1637,215.60742,20.037903,52.54471,12.193 1356,603.369,215.78143,17.072021,38.722748,11.318 1356,326.5014,201.04285,35.082916,99.569916,11.13 1356,611.93774,214.12703,18.027344,39.945984,11.005 1356,260.40802,212.78635,30.807495,72.33099,10.992 1356,368.60837,220.88033,29.695892,69.63005,10.947 1356,454.57523,225.4317,33.103058,85.68732,10.269 1356,532.1398,233.17175,30.248535,60.335876,10.187 1356,410.3753,218.64752,20.015625,50.036133,9.76 1356,577.5801,219.98518,22.613464,57.046158,9.064 1356,275.80707,212.41891,30.512909,75.35504,8.445 1356,352.43365,218.84113,24.076294,52.776947,8.148 1356,461.66528,212.13306,15.731812,34.36772,8.107 1356,608.138,217.70676,25.613037,62.31668,7.918 1356,271.56705,209.81563,21.485596,53.244003,7.67 1357,418.24402,217.87541,45.42862,101.44859,93.981 1357,466.70404,226.49808,38.150146,83.69522,93.729 1357,556.30945,226.11473,29.70642,68.07405,49.723 1357,570.59216,216.02757,30.562622,73.95244,27.785 1357,618.8361,214.36028,17.39972,45.95247,22.983 1357,603.9006,215.89955,17.210205,41.900223,19.505 1357,266.5571,211.1245,21.689758,52.090103,15.188 1357,612.35864,216.64645,16.724976,41.80475,14.874 1357,440.71457,221.7921,35.253296,100.37395,14.342 1357,590.44684,215.13124,28.561768,71.231766,12.708 1357,374.2179,213.42358,35.306152,94.075745,10.879 1357,392.01013,217.88629,40.58307,102.65253,10.16 1357,359.01517,207.49463,36.31314,89.768036,9.928 1357,325.51825,198.11696,37.288605,102.42177,9.829 1357,596.72314,215.1427,18.476807,44.38324,9.585 1357,265.75375,213.0503,31.268005,76.45413,9.526 1357,340.40707,202.96243,37.196503,96.275116,8.583 1357,414.43234,215.41476,30.653229,82.83887,8.55 1357,350.0453,220.932,24.813293,54.177002,8.404 1357,4.028084,207.9096,18.979082,42.624176,8.371 1357,606.7492,214.96371,26.408203,75.75064,7.891 1357,-5.44826,-17.953367,17.49087,44.23009,7.886 1357,584.201,220.393,23.40509,61.079956,7.876 1357,626.5831,211.19069,17.260986,45.23091,7.805 1357,-10.782819,-32.026814,29.041077,73.90009,7.764 1357,595.9317,228.63957,40.731567,99.82893,7.279 1357,427.2575,269.23578,31.284332,65.87344,7.271 1357,186.08524,225.8051,21.594482,37.936996,7.203 1358,466.1241,224.59233,43.416534,99.69997,96.151 1358,534.6483,234.87044,29.971924,81.33656,92.425 1358,239.68738,217.49588,41.175476,95.808105,92.281 1358,482.7934,221.38986,40.37378,99.86023,48.378 1358,607.6619,219.94801,26.628479,77.99446,20.223 1358,498.72223,231.86575,32.485107,93.65039,18.246 1358,592.974,224.23898,28.69934,73.76407,16.393 1358,268.67084,218.58313,29.73938,73.512085,13.331 1358,616.96594,218.11526,20.582031,58.578033,12.714 1358,-0.6567812,259.82462,22.619892,54.076385,11.962 1358,247.21738,216.13481,24.310425,72.994095,11.18 1358,600.83795,219.33533,20.742798,48.696808,10.525 1358,276.92755,211.96838,35.70398,89.256714,10.028 1358,566.4338,226.2087,36.65497,85.513596,10.02 1358,374.23123,209.33365,35.504944,92.62933,9.283 1358,494.37885,214.08249,21.625122,53.072083,9.077 1358,338.39258,203.4482,33.701477,73.29228,8.819 1358,609.7599,217.78107,19.484253,50.049744,8.592 1358,341.57526,282.24225,14.378357,21.78888,8.326 1358,334.12552,282.13266,13.95343,21.767303,8.311 1358,580.21106,236.3929,31.096497,68.421036,8.17 1358,315.8317,281.29532,14.847961,22.682129,8.088 1358,-5.6067395,-17.640041,17.425426,43.966755,7.995 1358,280.15756,225.05095,21.864624,53.464737,7.785 1359,92.588684,216.61313,55.953506,115.18866,96.528 1359,541.3884,227.58653,47.023438,113.35414,78.736 1359,266.12473,209.9991,25.367218,55.025528,38.429 1359,614.6929,234.51396,25.54956,81.02089,22.35 1359,616.45557,215.407,20.934937,58.23195,20.163 1359,602.36505,213.94711,34.77246,92.98251,10.652 1359,274.73157,210.85472,29.336914,71.285904,10.284 1359,364.36584,215.01486,31.958588,67.186676,9.891 1359,625.58234,215.2858,18.925232,53.61487,9.544 1359,104.65061,256.1128,35.45594,77.8121,9.5 1359,560.00903,226.03528,44.108643,118.445984,9.044 1359,102.062836,212.99902,31.189865,81.50427,8.569 1359,-5.447298,-17.499443,17.243134,42.822796,8.401 1359,296.47473,204.85822,32.928284,84.707275,8.318 1359,462.87518,222.92677,23.8125,46.29521,8.225 1359,339.7714,204.28137,31.781952,74.25226,8.083 1359,323.68027,211.69553,30.989258,70.69684,7.82 1359,379.63458,216.6439,30.776428,64.03645,7.818 1359,308.71124,212.98419,31.029114,68.61627,7.714 1359,623.17334,-33.5655,26.927979,75.24478,7.093 1359,44.93389,218.02693,59.1624,102.96898,7.015 1359,161.53271,215.18793,21.889832,46.32025,6.871 1359,304.8096,217.10352,23.455597,52.41803,6.845 1359,-11.216693,-32.08187,29.62191,72.900925,6.479 1359,27.09136,227.31863,57.3985,102.69238,6.466 1359,499.9052,212.31857,17.083313,38.38942,6.407 1359,-11.945643,478.1264,29.98727,63.210205,6.283 1360,264.9389,206.61774,23.006989,54.841278,77.373 1360,513.37286,215.04268,19.393005,51.855453,28.133 1360,399.4368,214.25253,28.096436,68.35306,12.072 1360,365.08713,199.3273,30.024689,71.21115,9.333 1360,340.91336,206.1594,30.199615,66.22098,9.32 1360,352.41916,208.49232,22.105927,51.731705,8.679 1360,380.49374,207.46268,30.805511,68.50247,8.605 1360,447.22302,211.01617,26.589478,54.281616,8.463 1360,475.7236,240.12073,63.79886,137.06128,8.337 1360,554.4021,220.66643,18.501831,34.082672,7.826 1360,-5.4130597,-17.641823,17.510843,42.4155,7.704 1360,547.4944,218.72578,18.062317,37.37126,7.404 1360,490.32257,307.26172,37.77832,70.4928,7.309 1360,561.8101,218.44283,18.444641,35.913757,7.23 1360,619.00256,220.16673,20.562622,44.97731,6.836 1360,450.02893,205.40436,18.88327,35.06241,6.729 1360,563.0053,192.01376,17.519775,40.247253,6.555 1360,326.15536,210.71324,28.625092,62.740646,6.491 1360,360.4002,209.29393,23.39804,52.034073,6.4 1360,493.2331,209.69989,65.62305,155.49359,6.385 1360,416.45526,224.7081,21.553436,43.09839,6.309 1360,509.6053,218.87965,28.524597,75.192856,6.281 1360,519.8577,222.98817,20.320496,48.76555,6.256 1360,-11.728279,477.13788,29.89525,63.81195,6.244 1360,-6.1763573,488.77048,18.615112,42.707916,6.182 1360,-11.170475,-32.50875,29.378748,72.946526,6.037 1360,626.7013,488.16418,20.237488,45.71472,5.989 1360,116.64519,185.53465,29.052963,68.37909,5.98 1360,424.97635,226.82014,21.215515,38.34514,5.972 1360,549.92773,213.64468,27.20758,53.15625,5.958 1360,376.18127,208.54816,22.461761,51.853333,5.917 1360,338.22598,210.77953,21.058807,49.980453,5.868 1360,530.1431,220.53615,19.478516,43.80153,5.834 1360,622.87427,-33.371708,26.899353,74.4767,5.824 1360,569.67004,216.38213,18.214539,37.220276,5.794 1360,612.52155,456.0155,40.0307,105.805115,5.753 1360,627.1926,-19.299595,17.497559,48.06776,5.733 1360,114.13209,192.01613,20.08892,52.12973,5.699 1360,-0.520252,262.0417,23.656006,53.033478,5.613 1360,334.6126,224.70314,28.325287,66.147964,5.53 1360,539.3314,220.43745,19.288147,39.69377,5.482 1360,280.5718,215.0692,20.12085,46.075058,5.421 1360,-16.920853,-63.91091,55.58781,146.54922,5.398 1360,429.89075,205.20335,29.120605,62.42311,5.112 1360,603.79694,-55.990303,52.689026,136.33257,5.088 1360,-72.81017,265.38596,200.79266,463.01077,5.081 1361,257.62582,203.6024,25.290924,59.743973,88.83 1361,483.72925,230.43643,44.60211,67.66083,15.842 1361,382.54276,197.0733,27.748627,64.30139,10.905 1361,92.28249,209.56705,30.54728,67.53934,10.326 1361,397.82147,208.86304,30.193237,62.463776,9.294 1361,108.88203,213.6364,31.6791,62.04561,8.393 1361,-6.023719,-18.12289,17.95224,44.233833,8.329 1361,-11.447222,-32.97428,29.562574,73.988045,7.348 1361,409.26456,218.4165,22.538696,46.940277,7.101 1361,425.73834,213.98544,21.287445,43.77176,7.054 1361,427.33426,205.52701,18.6091,32.943573,7.0 1361,-11.980207,478.67496,30.311546,63.112457,6.839 1361,410.37274,207.61093,20.230255,37.915695,6.79 1361,-6.2872076,489.7257,19.053932,42.145813,6.615 1361,342.75287,219.9989,23.91156,46.28705,6.584 1361,392.5144,202.35191,22.225525,50.372665,6.563 1361,562.47876,217.40599,21.200806,37.214127,6.518 1361,523.5369,210.83174,17.03717,35.68921,6.234 1361,576.65265,215.33858,21.321594,39.37294,6.169 1361,580.02527,210.10321,30.298096,57.32953,6.146 1361,569.92444,212.96959,19.839233,37.662247,6.078 1361,79.70117,204.15569,30.019043,70.12215,5.995 1361,347.16223,212.18277,31.01236,58.970642,5.803 1361,433.0153,210.00931,20.286682,38.561707,5.775 1361,11.705108,174.96962,52.261127,127.55516,5.762 1361,-17.003115,-63.806923,55.63739,142.11308,5.703 1361,495.48917,224.07077,25.000275,59.952667,5.578 1361,378.2335,208.8165,21.262054,48.135864,5.532 1361,612.9206,454.68768,39.29315,107.56268,5.487 1361,611.1509,-47.965466,41.64038,101.111755,5.464 1361,555.8958,217.64226,18.83429,36.336777,5.365 1361,627.6067,-18.37465,16.996643,45.89018,5.345 1361,593.27313,210.52844,20.671692,38.530014,5.289 1361,413.42496,214.62746,28.469238,61.410477,5.284 1361,109.14737,228.29608,30.143112,91.41571,5.282 1361,341.75458,189.76949,26.781006,60.790527,5.268 1361,583.4769,413.65982,71.1781,174.48251,5.254 1361,234.93974,215.88799,18.795792,34.590546,5.216 1361,43.635193,189.36871,30.89051,75.48425,5.209 1361,626.61255,488.7523,20.585266,45.300323,5.208 1361,265.50143,198.61653,29.693604,64.65025,5.187 1361,210.66916,217.29305,20.378235,42.18254,5.141 1361,1.6390449,-18.125727,17.971714,44.23565,5.14 1361,257.72403,198.95868,19.681732,33.18596,5.112 1361,419.37445,207.40706,18.728455,36.907486,5.071 1361,-73.044815,264.99622,200.80429,462.899,4.972 1361,60.926174,190.944,28.912159,70.9379,4.935 1361,400.8139,206.53345,21.734009,40.262512,4.886 1361,-21.473255,403.27896,78.92111,174.46921,4.862 1361,508.6479,233.26805,47.176636,68.28096,4.834 1362,257.6454,208.62695,24.91095,60.267944,93.773 1362,429.3613,211.06647,27.082916,66.939026,24.759 1362,537.7276,209.7453,17.973328,41.44072,10.28 1362,399.74817,206.13263,26.952911,56.45279,8.462 1362,410.12314,212.5027,20.386658,45.72316,8.388 1362,-5.939823,-17.933804,17.800148,44.37288,8.204 1362,-11.052267,-33.460133,28.776304,74.82027,7.013 1362,243.40874,215.97649,18.196579,36.787003,6.909 1362,432.45044,203.72116,19.984192,44.493607,6.905 1362,418.073,214.40186,20.953644,46.446106,6.818 1362,586.63226,215.26837,18.346924,35.498108,6.805 1362,623.4666,-33.888798,26.703674,74.37676,6.417 1362,390.6585,202.30469,26.293732,58.015472,6.274 1362,579.06226,218.40239,20.744263,37.41417,6.196 1362,627.6216,-18.589495,16.921753,45.79995,6.069 1362,347.10178,223.60576,32.95456,67.70509,6.06 1362,593.9545,214.662,20.688171,35.46196,5.954 1362,626.7205,488.30426,20.373474,45.849,5.887 1362,-9.458861,463.7246,38.251675,93.07141,5.77 1362,236.22423,220.5145,17.106766,31.24205,5.64 1362,452.76978,199.40112,15.208618,31.112762,5.556 1362,253.59618,210.96832,20.16658,46.55426,5.534 1362,-6.4463706,490.6794,18.675493,40.37326,5.488 1362,561.38513,217.5974,20.905518,42.281876,5.468 1362,612.9211,456.00287,39.359924,105.292786,5.393 1362,444.28748,200.98486,14.598663,29.321121,5.344 1362,581.53937,213.86073,29.59491,52.10167,5.305 1362,350.48016,215.13277,23.20581,45.706924,5.301 1362,411.34326,206.416,17.464355,29.961975,5.3 1362,583.68756,413.61115,71.006775,174.92664,5.298 1362,-16.998367,-63.916977,55.809994,142.59778,5.284 1362,603.5909,-55.837143,52.729065,135.15837,5.22 1362,-4.9874206,222.92099,16.33884,34.626007,5.186 1362,295.36743,195.69456,27.357788,60.311478,5.176 1362,83.40631,200.51865,41.469254,82.34689,5.096 1362,428.81744,205.59084,16.788483,33.580597,5.094 1362,335.29373,209.63152,29.828674,56.81526,5.027 1362,-72.78598,264.59216,201.17387,463.85425,5.009 1362,98.277725,206.37527,39.640335,83.47638,4.928 1362,-21.598763,403.073,78.69588,174.80182,4.879 1362,-40.476448,365.8833,110.89367,276.46924,4.839 1362,41.65813,131.49004,33.590443,77.1889,4.833 1362,2.4941297,-16.903704,17.087942,43.752346,4.789 1362,344.3359,204.54399,22.848694,42.524597,4.782 1362,419.6076,206.30397,16.805023,31.868317,4.764 1362,-5.838768,249.11855,17.611969,35.42952,4.741 1362,115.4531,206.7427,39.025368,82.184296,4.74 1362,138.83786,200.64937,17.684402,36.665405,4.726 1362,596.61395,211.54744,29.411194,57.46379,4.683 1362,535.557,310.92706,145.6466,340.59186,4.672 1362,211.02368,89.455574,30.055191,63.723015,4.671 1362,-17.343079,206.88712,53.13697,126.24448,4.647 1362,142.61588,197.95164,28.60614,62.712997,4.635 1362,357.98416,221.58847,24.243896,42.9364,4.631 1362,494.35632,228.38922,236.76416,515.0097,4.566 1362,-4.748463,173.21994,16.625902,45.14131,4.558 1362,438.90018,225.77118,21.288422,43.24878,4.519 1362,554.55725,219.30814,19.563354,42.836365,4.483 1362,505.46207,238.76149,20.627289,33.751328,4.478 1362,131.27039,189.43384,16.466827,37.104156,4.471 1362,570.9754,217.25526,19.257019,37.88481,4.444 1362,532.3317,205.18138,18.650085,36.64908,4.442 1363,252.42319,214.94362,27.73761,62.623245,94.919 1363,432.89212,207.49428,19.87027,37.88719,14.0 1363,568.84875,214.20917,20.493408,48.606293,11.972 1363,489.10947,210.47638,23.36612,51.49707,9.884 1363,409.19162,211.45453,20.612183,50.08899,9.749 1363,348.78876,212.4167,27.48993,59.13817,9.399 1363,-6.1028905,-18.540817,18.461643,45.46616,8.448 1363,576.37,214.2692,21.864319,48.202087,8.432 1363,545.1378,215.97827,18.97351,40.80374,7.681 1363,131.1209,232.0857,20.912247,36.05786,6.967 1363,586.04865,214.92795,19.005005,42.671234,6.927 1363,595.36804,216.76566,18.527039,41.751984,6.862 1363,-10.86301,-32.500584,28.772425,73.23483,6.755 1363,77.09449,222.61627,30.615913,70.47705,6.672 1363,-6.1227393,489.31946,18.66516,42.211304,6.629 1363,428.3686,212.33499,29.366974,60.74655,6.583 1363,383.2481,206.4524,26.25174,55.49106,6.402 1363,598.63586,212.68546,28.80365,58.233124,6.344 1363,417.05777,209.2644,20.15744,44.13994,6.338 1363,563.8279,210.59288,19.10553,40.963272,6.202 1363,-11.715551,478.2525,30.076288,61.48932,6.188 1363,578.6916,200.39429,18.565002,40.833084,6.128 1363,603.56274,219.86238,18.74121,37.468033,6.095 1363,378.4691,216.21423,20.373077,41.677246,6.039 1363,585.9803,201.3813,17.880615,39.88037,5.97 1363,394.8482,210.9124,20.624542,46.89882,5.891 1363,242.7784,219.21738,27.23027,60.201874,5.888 1363,229.96573,214.45964,28.029816,58.50801,5.88 1363,627.66724,-18.408394,17.046997,45.14962,5.823 1363,610.9132,-47.540222,41.82611,99.43784,5.73 1363,-16.694857,-64.94325,55.63922,143.58055,5.697 1363,612.91174,454.94186,39.741394,106.86209,5.666 1363,218.9495,223.75096,20.160767,36.71205,5.476 1363,429.11472,209.73242,16.695587,30.085571,5.465 1363,610.4133,218.28148,19.78003,38.13478,5.441 1363,626.6663,488.53088,20.663513,45.476685,5.44 1363,398.618,212.93326,29.238617,65.655304,5.412 1363,478.1726,216.24612,31.511902,61.488403,5.313 1363,583.3706,413.53528,71.38074,174.55359,5.256 1363,108.33069,207.11607,16.55188,31.645065,5.208 1363,97.78194,239.55365,22.664795,38.075928,5.187 1363,412.3994,210.94656,15.0155945,28.184097,5.111 1363,-73.11275,264.63992,201.46614,465.53928,5.067 1363,-40.96585,359.471,112.97893,281.32306,5.051 1363,535.18146,309.93063,146.5246,341.44986,4.966 1363,474.06143,213.91623,20.670593,36.263412,4.934 1363,571.3191,202.11943,18.440186,40.968613,4.92 1363,494.45447,227.96951,236.3924,514.76245,4.914 1363,115.8879,202.23955,17.687126,32.682724,4.902 1363,72.39348,217.18776,22.580032,54.498886,4.897 1363,65.42542,209.24817,22.084381,54.91327,4.872 1363,335.7999,205.28,27.5177,57.479828,4.824 1363,357.9706,217.25305,22.459381,44.416748,4.751 1363,88.5054,235.33168,22.298904,45.47136,4.75 1363,107.73297,242.45807,19.038498,28.67987,4.718 1364,250.77185,219.9599,25.735199,61.58853,90.65 1364,571.1603,224.40065,17.5448,38.62056,13.269 1364,563.426,224.82161,17.895264,37.97957,11.009 1364,232.48853,225.63417,21.98619,52.143784,10.803 1364,555.7926,223.98276,17.036072,37.586395,8.546 1364,-5.966694,-18.440521,18.481041,44.18144,8.042 1364,500.77466,213.03436,27.021667,67.06763,7.894 1364,578.3242,223.70952,17.211853,40.334152,7.654 1364,243.64328,224.12613,22.655273,55.28714,7.573 1364,585.9516,224.80609,17.980835,40.62491,7.568 1364,434.84363,212.54973,18.089905,37.042465,7.106 1364,617.54065,213.55576,19.986328,48.3291,6.732 1364,-6.3715286,489.63037,19.290253,41.80371,6.722 1364,549.01355,230.50986,16.432068,32.481293,6.656 1364,-17.56472,-64.402824,55.774918,141.17099,6.497 1364,297.5255,189.21953,20.04187,42.717316,6.414 1364,-11.857574,479.73288,30.21668,63.154266,6.369 1364,-10.534629,-32.250385,28.461048,72.87794,6.059 1364,626.6384,487.9199,20.345581,46.0242,5.987 1364,627.4659,-18.217886,17.37201,44.987118,5.973 1364,622.60645,-34.472668,27.521362,74.94552,5.872 1364,211.6025,94.54905,29.7827,69.28524,5.782 1364,404.24646,220.24014,28.71637,55.958527,5.638 1364,588.16113,200.58496,16.842285,37.85959,5.628 1364,182.89621,236.81604,25.129837,38.795166,5.621 1364,603.16095,-55.72881,52.84137,136.18752,5.491 1364,612.85736,454.16965,39.381714,108.3002,5.48 1364,119.52365,248.70001,23.221725,40.7536,5.401 1364,-73.06979,265.35596,201.37961,464.76062,5.313 1364,2.5601137,-17.973873,17.653685,42.068245,5.288 1364,582.99286,413.30313,71.79498,175.00949,5.258 1364,534.9989,310.22046,146.71814,340.5078,5.095 1364,167.18535,241.47076,26.164993,38.098145,5.064 1364,-17.359089,437.57678,54.66355,139.1933,5.035 1364,419.9915,214.30319,15.61142,29.927917,5.032 1364,497.88235,211.45734,20.955475,39.60846,4.992 1364,428.89777,214.75914,15.811981,29.900284,4.925 1364,494.34293,229.10568,236.7092,513.1134,4.911 1364,618.19226,181.94676,19.357422,53.370255,4.759 1364,416.95813,225.13905,22.028015,39.88008,4.743 1364,-40.235703,368.35397,110.6015,274.80875,4.738 1364,113.98049,204.61794,18.92826,35.047012,4.603 1364,426.46045,224.25966,21.113281,39.52446,4.601 1364,318.17957,216.52548,28.564758,52.715332,4.544 1364,594.0476,225.76016,18.665527,38.55426,4.455 1364,164.75409,221.40732,38.19635,67.57175,4.45 1364,607.7273,216.39445,27.313477,61.07982,4.447 1364,226.49673,221.74542,20.948883,43.278503,4.445 1364,130.61902,213.5003,20.887756,41.177063,4.38 1364,594.77246,-45.038357,43.744873,96.63637,4.326 1364,2.2317696,-41.420757,43.03445,95.1381,4.281 1364,443.41245,209.49635,15.677887,29.510788,4.278 1365,244.81561,217.64874,28.694427,65.00238,90.884 1365,570.4913,216.58865,21.817505,40.2601,17.97 1365,434.36438,208.04053,19.230896,36.927673,9.832 1365,-5.635483,-18.130787,17.732143,43.692738,8.785 1365,98.45112,216.18433,20.275337,43.605713,7.044 1365,-6.1325483,488.9096,18.688461,41.91278,6.85 1365,511.7945,211.80869,21.999512,51.964874,6.639 1365,117.879,207.46696,29.305923,60.04756,6.456 1365,627.3924,-17.217031,17.172546,44.968266,6.296 1365,-11.784929,477.73825,29.982153,63.238983,6.241 1365,622.4622,-33.056095,27.370422,73.109764,6.188 1365,-11.239603,-31.775412,29.669388,72.02637,6.009 1365,-0.025968552,124.2047,27.11209,100.74626,5.873 1365,100.227776,209.81306,29.862495,65.803085,5.799 1365,621.7129,478.19922,29.092224,66.15094,5.689 1365,571.4733,214.70744,31.354492,63.40596,5.454 1365,-72.75254,264.62708,201.44473,464.83716,5.439 1365,-17.179008,-64.06387,55.6368,142.0792,5.426 1365,396.0248,215.74428,31.706055,55.179916,5.323 1365,582.88934,413.9247,71.903076,174.20554,5.29 1365,603.1422,-54.9118,52.519714,137.35388,5.249 1365,-17.900402,436.9485,55.061012,139.49597,5.191 1365,563.3511,221.28389,21.600464,41.103622,5.114 1365,535.2465,310.05573,146.34247,340.9975,5.103 1365,494.16895,228.27725,236.87628,513.6537,5.099 1365,112.7953,210.56523,22.049332,45.92964,5.093 1365,194.99652,216.49629,17.174194,39.078262,5.051 1365,-2.1013057,252.95116,28.446405,62.607346,5.012 1365,386.9734,172.38744,20.268066,42.84584,4.951 1365,231.40245,216.10373,31.921158,69.48346,4.95 1365,3.2217317,-17.181385,16.715366,41.107014,4.947 1365,420.37073,214.50827,29.76764,56.962677,4.922 1365,442.38693,206.82726,17.015045,31.353226,4.89 1365,-40.34759,367.12753,110.72594,275.73196,4.81 1365,97.882126,206.41557,19.483688,34.510406,4.787 1365,214.12363,211.80432,35.735657,81.973206,4.783 1365,595.00696,192.51697,17.345398,40.210403,4.702 1365,290.0907,190.98836,20.675964,37.903458,4.674 1365,428.75226,208.91722,16.143188,29.31247,4.674 1365,584.09393,217.89616,22.514038,46.08525,4.65 1365,82.26346,234.81712,43.223846,73.06764,4.639 1365,555.90186,220.45016,18.813965,35.8248,4.628 1365,216.67639,214.89462,21.776443,38.426895,4.612 1365,-9.407232,143.56696,28.53227,85.30766,4.609 1365,-5.371519,161.14598,18.990456,55.22728,4.606 1365,202.22505,89.510254,29.516739,63.646637,4.583 1365,619.4532,-16.47007,17.046997,41.104797,4.582 1365,135.99811,222.46718,24.173279,41.33113,4.554 1365,420.87598,211.02444,14.878387,27.41716,4.552 1365,203.54929,218.67088,18.004486,36.432632,4.502 1365,128.67638,214.20212,22.876755,44.78192,4.489 1365,318.06302,209.86829,28.299469,51.033844,4.468 1365,285.84662,196.54836,27.504883,54.238266,4.434 1365,430.5901,210.96802,27.292297,51.2157,4.361 1365,586.2141,-102.259125,74.80792,235.40266,4.336 1365,599.2227,192.09044,34.3656,87.081436,4.321 1365,8.249698,220.95801,61.393047,100.460815,4.311 1365,2.1447766,221.17522,32.90103,69.660965,4.307 1365,256.4946,209.97672,20.072601,36.789932,4.302 1365,618.35834,219.21057,19.587708,45.42276,4.295 1365,1.8025088,249.29117,40.94637,87.46689,4.278 1365,187.67458,215.5051,17.19162,32.216354,4.273 1365,105.56144,204.11159,19.651688,36.824814,4.268 1365,626.64484,161.48848,19.163208,50.83925,4.252 1365,-14.00469,124.845406,48.4663,141.07895,4.204 1365,163.14714,225.43007,29.97818,59.146805,4.199 1365,227.8359,183.72614,17.393127,29.040833,4.197 1365,93.41957,212.54144,17.699356,34.997574,4.196 1365,-5.7860875,208.0664,18.837044,43.85495,4.194 1366,595.0504,220.6451,18.535156,37.996384,13.923 1366,285.83432,211.61186,29.324799,60.096634,10.609 1366,435.63904,206.62762,18.062866,37.731155,10.123 1366,268.7109,205.99756,30.843292,65.36981,8.939 1366,328.56583,218.8749,22.605194,40.68947,8.71 1366,2.4251723,204.66583,19.10387,55.7731,8.211 1366,321.65097,225.85298,22.358612,46.006607,8.149 1366,282.88168,207.89589,21.222534,41.080704,8.067 1366,-5.76211,-17.803343,17.503716,42.420807,7.581 1366,300.82242,216.6676,30.332825,66.42331,7.488 1366,234.17612,212.54956,32.42566,57.87616,7.183 1366,330.3321,221.58072,30.513885,61.222565,6.866 1366,3.2161212,216.7559,28.819065,67.90544,6.74 1366,-10.980188,-31.280758,29.059486,70.32265,6.712 1366,579.17285,221.93687,19.531311,33.906906,6.507 1366,296.64655,218.30919,22.98822,46.165604,6.356 1366,627.21594,-16.939243,16.58789,45.9602,6.346 1366,520.2622,207.67285,27.35553,64.57022,6.282 1366,313.79462,226.80986,21.546936,45.41194,6.264 1366,310.36862,208.10214,29.316315,54.821045,6.256 1366,622.8296,-32.721653,26.222656,74.487885,6.081 1366,248.90701,206.52556,33.931396,66.59004,5.998 1366,427.2917,206.59465,18.180481,36.896362,5.979 1366,-6.30849,489.86783,18.835747,41.43686,5.868 1366,-8.800739,465.3069,37.48098,91.640076,5.792 1366,621.78143,478.6,28.89618,65.95889,5.742 1366,275.29034,207.57153,19.884247,41.367737,5.672 1366,570.01624,222.24368,19.67566,34.42636,5.654 1366,-73.36211,264.6805,202.23036,464.17996,5.479 1366,468.42188,211.55222,17.584595,32.644684,5.467 1366,193.37244,88.89969,32.361954,63.27713,5.384 1366,-5.079561,118.82606,18.389328,51.629646,5.373 1366,417.49042,211.41864,20.320251,37.38896,5.276 1366,595.5352,204.41765,25.376282,59.38954,5.272 1366,603.1051,433.0607,55.897278,141.2634,5.268 1366,-17.063972,-64.45402,55.782234,143.07506,5.265 1366,603.2282,-55.255035,52.471375,138.7672,5.258 1366,386.95374,167.06166,20.003815,47.835556,5.253 1366,29.158817,234.78587,31.67741,57.353195,5.135 1366,493.98453,228.35516,236.9592,513.24036,5.13 1366,-2.5361264,199.29422,17.678143,50.5813,5.11 1366,535.1849,309.79523,146.4021,341.01788,5.101 1366,442.21454,206.9474,16.197296,30.957047,4.99 1366,290.40674,206.5092,20.122864,36.708755,4.974 1366,-21.346952,403.63763,78.78207,174.24652,4.866 1366,315.79837,145.76704,17.108124,34.549484,4.783 1366,308.64655,118.75186,28.367462,66.67374,4.755 1366,129.23535,200.49915,20.279922,40.149612,4.753 1366,589.21375,215.91235,18.793518,39.07408,4.748 1366,111.78641,242.43173,24.43222,40.266144,4.705 1366,316.83273,158.81743,13.856598,28.230652,4.634 1366,441.03986,216.26106,18.383606,37.515152,4.625 1366,210.50589,205.1383,30.307632,61.264618,4.6 1366,317.81387,171.79083,11.783905,23.175644,4.556 1366,42.95444,231.83154,32.0805,57.7912,4.531 1367,234.1504,211.72153,31.025955,69.13608,96.04 1367,78.30394,212.61867,25.054092,54.660995,28.567 1367,432.79828,208.90015,23.316986,46.524414,20.283 1367,615.7926,212.86018,21.39148,50.48613,17.981 1367,425.97864,206.22812,22.756866,40.04457,11.58 1367,418.59583,211.75467,22.22998,45.18402,10.862 1367,462.62213,211.69896,27.03946,59.70363,10.204 1367,467.35538,207.59065,20.266754,41.759933,9.708 1367,-5.530057,-18.26199,17.812294,42.94279,8.573 1367,554.42194,244.93018,34.09259,68.07416,7.768 1367,422.08258,213.35223,27.652527,63.522736,7.419 1367,447.28088,210.79105,22.282837,47.12024,7.41 1367,67.08074,211.85928,21.988686,48.858673,7.41 1367,409.67078,220.11981,23.13556,43.980194,6.989 1367,-11.147924,-31.813112,29.366087,71.632774,6.852 1367,-6.1925945,489.51233,18.792149,41.34613,6.656 1367,551.79016,241.20169,23.472046,41.968994,6.556 1367,58.550167,218.53589,21.425373,42.69214,6.459 1367,-4.8427143,217.008,17.732376,42.322845,6.348 1367,473.42157,218.33104,21.856506,52.07866,6.228 1367,626.6705,489.06116,20.279663,45.11029,6.222 1367,622.88275,-32.754963,26.541199,75.32672,6.108 1367,613.4383,181.58276,27.222473,77.16577,6.094 1367,388.7413,213.49994,31.294434,56.924744,6.005 1367,385.70218,166.55734,21.037872,49.09474,5.919 1367,49.256554,221.15149,22.377983,40.41028,5.855 1367,-8.953685,464.95493,37.672077,91.82529,5.83 1367,432.9976,199.62787,19.996307,35.306473,5.764 1367,627.2605,-17.817478,16.587463,47.02094,5.759 1367,439.9981,220.5407,22.595734,47.73735,5.752 1367,572.0155,242.52354,32.473694,60.20485,5.595 1367,-73.019394,264.18585,201.68488,465.2956,5.556 1367,-17.378204,-64.32604,55.8831,143.17555,5.537 1367,539.26447,238.76604,34.020203,79.03462,5.501 1367,603.3927,-55.25016,52.624268,138.24655,5.313 1367,582.74194,413.84293,72.23035,174.26053,5.298 1367,493.88306,222.88527,28.706177,69.00896,5.253 1367,458.39526,209.7426,21.387207,46.98021,5.2 1368,232.42001,217.1581,27.95636,66.85457,87.571 1368,121.15681,201.52057,22.287727,45.893005,36.03 1368,123.28746,204.99777,29.43451,66.39975,12.128 1368,466.06097,208.36688,20.180237,38.076523,9.788 1368,180.44955,214.63412,29.838135,62.516815,9.717 1368,112.33971,206.9204,27.01715,61.720596,9.521 1368,-5.636086,-18.29702,17.735054,43.00971,8.043 1368,394.87335,214.55232,20.918823,40.329453,7.829 1368,433.11957,205.73598,23.208496,43.247025,7.77 1368,198.73734,211.3721,23.448654,44.120773,7.395 1368,175.75362,229.73488,25.731613,52.945847,7.128 1368,107.40897,212.31876,21.110405,42.847336,6.533 1368,0.03311515,227.35883,24.54724,58.746216,6.477 1368,195.96138,211.42722,38.095154,79.86685,6.422 1368,135.85202,202.54617,21.12819,42.40277,6.38 1368,-5.1098433,204.31712,16.578182,39.93112,6.352 1368,-6.118205,489.17014,18.633545,41.959015,6.279 1368,135.65399,216.48907,23.305344,46.71048,6.264 1368,623.01807,-32.18179,26.282593,73.519806,6.168 1368,191.1982,221.17995,23.529877,47.077896,6.159 1368,157.4215,222.93843,30.145615,59.864456,6.082 1368,626.4834,488.36365,20.63263,45.87213,6.024 1368,140.98651,217.02919,31.00203,64.88902,5.92 1368,-11.604814,476.9237,29.7425,64.40216,5.918 1368,-11.465659,-32.073406,29.912228,71.04577,5.902 1368,266.10822,216.87738,19.588745,32.622543,5.847 1368,-4.2984467,220.32335,17.442322,40.34755,5.696 1368,193.34108,87.99771,31.18135,64.04309,5.654 1368,394.97418,206.35867,17.331604,32.05771,5.575 1368,387.30554,159.18439,19.149475,42.810547,5.556 1368,-73.21727,263.06964,202.52245,466.29877,5.489 1368,-17.290056,-64.252716,55.955887,143.59554,5.454 1368,603.4232,-55.020893,52.717896,138.3927,5.434 1368,28.696991,223.65414,32.12288,73.16113,5.388 1368,627.1747,-17.174995,16.711182,45.683323,5.368 1368,-5.497906,373.39178,19.22938,46.7269,5.273 1368,612.7677,456.434,39.414,105.37839,5.248 1368,440.19955,220.83063,21.171417,39.35193,5.236 1368,582.9143,413.57532,71.888245,174.62122,5.18 1368,401.31598,209.22104,18.652039,36.36734,5.162 1368,571.2332,259.32806,19.20398,29.2529,5.139 1368,284.349,184.37933,18.031128,34.9868,5.077 1368,24.871082,223.01434,21.58659,39.554108,5.063 1368,535.42316,310.36853,145.77423,341.23315,5.02 1369,227.61783,216.52992,30.698456,55.21501,80.981 1369,112.565186,199.77446,26.11316,64.00697,18.294 1369,234.60298,219.99272,32.344406,72.64784,11.436 1369,586.80676,212.75859,20.687805,41.995438,10.247 1369,169.14142,227.81615,21.149658,39.85588,9.242 1369,465.81116,204.66956,20.175598,41.408066,8.213 1369,594.5653,225.86035,16.791687,34.368164,7.632 1369,323.0988,208.72736,30.884735,67.243164,7.444 1369,-5.6791916,-18.434086,17.812094,42.892307,7.157 1369,611.12616,210.50256,18.62799,45.899048,7.132 1369,-11.568898,-30.741093,29.63446,70.60706,6.845 1369,243.13866,213.90446,32.14528,57.673233,6.582 1369,394.78076,214.24307,20.307129,41.953674,6.526 1369,60.573727,211.38434,27.001537,62.562683,6.45 1369,385.96356,168.7116,20.053741,46.326187,6.215 1369,-6.1038895,489.35663,18.644861,41.681946,6.13 1369,622.9115,-33.509377,26.228455,76.114815,6.019 1369,627.38226,-18.196245,16.818787,47.535725,6.003 1369,170.54054,227.8467,30.951675,65.88466,6.003 1369,362.81622,203.12692,19.92041,32.411346,5.959 1369,602.9748,-54.35145,52.74121,135.91306,5.78 1369,-11.717398,478.53607,29.940445,62.516968,5.752 1369,441.98514,205.4469,19.449554,40.715454,5.692 1369,603.3451,213.91125,18.690735,40.296005,5.686 1369,107.7231,204.01337,20.605927,49.94011,5.649 1369,612.6472,455.5173,39.703735,106.545746,5.64 1369,626.4793,488.13913,20.61267,45.986603,5.635 1369,214.08969,219.28394,35.29657,70.4978,5.571 1369,-17.679775,-63.80594,56.286835,142.5937,5.513 1369,208.9227,215.60442,22.719666,34.936844,5.42 1369,394.68158,205.9072,17.407654,32.587463,5.408 1369,-22.54741,401.16486,79.3168,176.74384,5.325 1369,366.87595,198.83751,26.470795,48.89334,5.306 1369,283.57663,176.5958,17.386597,36.87648,5.271 1369,219.57138,214.19276,55.976135,129.79057,5.266 1369,270.77502,202.10728,28.238068,62.83406,5.261 1369,594.0211,208.15802,18.983582,37.599976,5.23 1369,582.92334,413.1937,71.922,174.93375,5.221 1369,259.13583,210.4675,38.90268,79.86966,5.194 1369,535.41516,309.17596,146.11346,341.29132,5.156 1369,578.1774,210.21347,20.434631,38.024353,5.147 1369,545.1407,255.93016,33.82672,51.86293,5.127 1369,283.53107,202.45685,29.784119,59.980713,5.114 1369,30.275528,217.17778,30.21056,61.418472,5.086 1369,583.7554,252.99898,26.00299,50.428574,5.084 1369,617.74817,183.56189,18.682373,41.725677,5.053 1369,493.89508,227.987,237.50092,512.95166,5.003 1369,159.07999,225.82277,29.455002,63.32103,4.974 1369,-73.69768,264.70447,200.90842,463.7234,4.944 1369,202.3158,217.19315,19.92276,29.635101,4.918 1369,420.6787,201.20468,16.311066,30.05484,4.913 1369,301.96497,207.51103,29.529938,67.07124,4.867 1369,324.06256,195.52287,17.018005,30.138428,4.84 1369,128.78404,201.82146,20.62996,46.180786,4.784 1369,535.4239,207.99495,24.555054,56.7538,4.772 1369,426.67178,199.38306,18.224731,32.390945,4.766 1369,204.50996,229.0999,33.62654,68.30458,4.703 1369,417.0282,221.20547,23.272644,40.716675,4.696 1370,223.74991,205.9855,32.13919,81.69406,78.161 1370,536.06085,209.39066,20.26001,45.275345,24.792 1370,621.4837,216.00845,16.968384,46.995026,20.792 1370,377.87402,222.7111,20.245117,35.301834,16.905 1370,423.81964,213.52612,22.334839,44.88025,13.088 1370,113.54082,200.15813,20.727692,44.47525,12.699 1370,360.7933,218.31102,23.606384,47.359238,10.573 1370,359.57333,210.55038,34.80075,80.59076,9.823 1370,395.5522,211.07881,15.759644,31.64392,9.116 1370,386.28027,156.231,21.50409,44.966217,8.834 1370,350.02435,216.89816,30.156006,66.80917,8.541 1370,408.39096,208.12973,36.82019,100.86633,8.524 1370,449.31024,215.1434,19.59137,40.260193,8.17 1370,385.97784,215.88802,18.539429,34.894226,7.817 1370,373.36063,209.76736,35.06601,79.59067,7.724 1370,443.1317,203.77936,18.67334,35.077652,7.328 1370,287.70926,197.23796,21.425568,36.78383,7.266 1370,346.20605,221.53279,21.92569,43.06456,7.224 1370,355.94,219.38503,20.061584,38.192764,7.076 1370,315.14944,222.86748,31.202545,59.96614,7.059 1370,362.68213,212.9292,18.591858,33.282303,6.982 1370,627.4814,-17.898087,16.760437,47.5552,6.803 1370,370.25073,217.09279,20.637146,37.854843,6.722 1370,426.0785,202.98842,19.309387,37.399048,6.687 1370,31.979164,204.48752,27.047363,62.969788,6.617 1370,441.6727,216.87111,21.983032,46.477646,6.612 1370,283.49106,176.15813,18.22696,38.04541,6.542 1370,-5.934119,-17.97117,18.109365,43.291245,6.515 1370,467.53235,204.10684,17.60205,34.070984,6.476 1370,625.33435,203.70612,18.207397,49.336716,6.37 1370,-6.2088337,488.82645,18.71534,42.00186,6.145 1370,-10.990431,-31.315,29.340773,70.98466,5.991 1370,622.6686,-34.311115,26.873169,77.8442,5.971 1370,323.54382,189.57877,17.991821,30.218353,5.922 1370,402.93982,214.44386,18.903687,39.08818,5.918 1370,4.2975855,246.90565,31.27752,55.7256,5.893 1370,280.7038,183.65738,26.44165,58.401443,5.846 1370,331.79242,219.53653,31.678223,59.087646,5.778 1370,-8.98499,465.11444,37.748325,91.93817,5.744 1370,120.89195,199.77592,18.470322,37.350235,5.738 1370,4.4153614,205.48894,15.706356,46.53337,5.639 1370,41.135002,208.67647,33.925835,60.012924,5.615 1370,602.32104,-55.263073,53.175232,134.69566,5.523 1370,41.116123,208.6387,20.627552,43.26451,5.52 1370,-73.13297,264.1949,202.02466,465.15326,5.518 1370,383.93097,226.44876,20.873962,41.39569,5.517 1371,223.07808,207.3624,32.443893,81.37448,84.15 1371,532.1854,210.25737,20.443237,52.971603,34.269 1371,421.08463,215.67706,30.85382,61.859528,27.689 1371,619.7145,207.12415,19.857422,51.169952,12.757 1371,373.28888,202.21036,26.78012,73.60062,11.518 1371,545.08734,212.59184,19.319336,48.59053,8.654 1371,287.69382,198.53455,21.204315,34.556763,8.499 1371,28.282948,209.36836,32.736378,61.25795,7.673 1371,323.53027,188.37341,17.809753,31.155426,7.013 1371,397.51328,208.49557,26.341858,62.963196,6.762 1371,387.07684,158.7609,20.545197,42.62323,6.696 1371,-6.3223686,488.88342,18.890568,42.125305,6.626 1371,-11.177669,-32.16597,29.379353,73.61367,6.586 1371,627.39,-17.276005,16.987122,46.416748,6.544 1371,4.736305,198.30426,27.763813,63.211365,6.49 1371,425.7994,208.40292,20.78656,41.395096,6.287 1371,-5.535586,-17.257545,17.31271,42.35884,6.278 1371,283.6832,176.00809,18.247375,38.63469,6.227 1371,553.58875,209.14482,18.540161,38.483704,6.013 1371,326.7572,214.8029,28.631653,55.598557,5.995 1371,235.61273,214.55228,23.704865,56.344788,5.985 1371,-8.853088,465.59735,37.587925,90.95172,5.983 1371,379.02722,214.45158,30.942078,72.85347,5.935 1371,434.82587,216.27655,29.820312,60.355164,5.93 1371,410.10895,208.67747,19.861694,43.13466,5.929 1371,427.66162,203.91576,16.523407,26.833466,5.89 1371,450.85727,204.39261,17.407532,34.44821,5.812 1371,612.55225,456.81598,39.70642,104.96472,5.812 1371,25.937267,206.03156,23.041012,45.731827,5.767 1371,457.78882,226.37982,19.909882,38.21414,5.725 1371,622.85,-34.060165,26.715149,77.0582,5.694 1371,450.91296,222.91302,19.706818,41.84729,5.55 1371,-73.3333,264.09155,201.81453,465.57666,5.491 1371,-0.7268405,155.31836,26.054354,94.55817,5.478 1371,602.4594,-54.744453,53.15094,136.60863,5.472 1371,407.6083,211.69817,27.74768,63.820267,5.334 1371,626.504,487.7706,20.580933,46.480133,5.331 1371,295.0659,214.01614,22.813202,37.1075,5.281 1371,538.6776,208.62836,18.641602,33.689438,5.273 1371,582.8417,413.35284,72.191895,175.25702,5.217 1371,308.21408,182.40648,15.68692,27.238785,5.204 1371,283.31207,202.77922,29.040466,54.778427,5.2 1371,383.7535,202.61945,20.536926,60.284546,5.199 1371,-17.554953,-64.23471,56.224922,144.30711,5.137 1372,216.58379,211.14496,34.659042,74.751465,91.978 1372,527.13403,209.40724,20.549011,53.637253,28.146 1372,618.8281,206.26007,19.639221,50.752075,13.224 1372,289.18512,202.00426,20.43753,36.354996,12.273 1372,399.71097,214.24924,21.151215,48.01581,9.735 1372,7.914226,197.01176,29.365623,72.31886,9.302 1372,323.99838,194.06134,16.607513,29.918839,8.552 1372,22.006725,204.0745,25.789871,55.274933,8.485 1372,536.70667,211.19908,19.526733,49.63179,7.879 1372,387.50903,158.95605,20.733795,41.86052,7.529 1372,39.757023,207.55608,21.25066,40.187225,7.385 1372,281.8871,184.63918,25.624878,57.199814,6.875 1372,283.80823,176.9228,17.795074,38.097122,6.689 1372,627.4306,-17.578705,17.042297,46.552917,6.673 1372,-5.4634733,-17.693306,17.499443,43.30891,6.5 1372,-10.782507,-31.724474,29.236471,72.66007,6.372 1372,394.3565,207.34265,18.475555,41.481064,6.368 1372,-6.430927,489.01147,19.202486,41.903625,6.343 1372,546.1716,208.13777,18.14856,41.540085,6.33 1372,-11.96903,477.70172,30.051315,62.82898,6.067 1372,451.484,209.76077,17.687622,35.230164,5.716 1372,621.6333,477.26382,28.989319,67.17142,5.674 1372,426.86996,208.44101,18.674957,36.27176,5.628 1372,622.60693,-34.35826,27.051575,77.53195,5.581 1372,35.460464,211.51453,30.222374,55.778076,5.413 1372,603.1025,434.15836,55.85962,139.73691,5.399 1372,-73.383896,264.0902,201.65129,465.16113,5.367 1372,602.48004,-54.965927,53.277405,135.29193,5.361 1372,-0.048294067,154.41644,26.930914,93.49306,5.298 1372,385.60138,208.90964,26.691162,66.56436,5.244 1372,-4.482686,204.15367,18.407024,48.569214,5.219 1372,535.4902,310.1369,146.04004,340.7403,5.112 1372,459.59912,206.11272,17.138489,32.229996,5.06 1372,-17.421703,-63.8127,56.14086,144.06062,5.056 1372,-13.730904,186.181,47.900475,134.19662,5.017 1372,443.10657,208.43198,18.753723,36.435806,4.994 1372,329.69305,189.08304,17.858398,30.90947,4.974 1372,494.36584,228.42664,236.75183,513.1509,4.929 1372,-21.520128,402.20822,79.12631,175.36758,4.877 1372,428.25345,204.12077,15.367096,25.996796,4.837 1372,363.54614,204.16728,18.590942,32.636154,4.801 1372,234.77185,183.40305,15.89209,26.881927,4.778 1372,11.630146,202.96619,55.266018,108.93329,4.753 1372,603.9186,266.4758,17.875854,32.028778,4.72 1372,317.9352,194.12856,15.491425,27.77951,4.706 1372,524.0899,221.66072,29.204285,61.565628,4.69 1373,5.9951735,202.3317,29.071735,68.440674,14.342 1373,537.90125,211.54727,18.923462,49.070953,12.072 1373,233.11978,208.66586,22.910553,41.477264,11.278 1373,289.2742,199.7219,18.821838,31.714355,10.878 1373,228.28722,200.90805,37.537796,77.55145,10.537 1373,268.95178,205.78271,28.744934,70.8569,10.283 1373,282.99222,209.18047,29.684753,70.257645,9.754 1373,243.98926,200.66617,37.69641,77.74411,9.724 1373,401.16275,214.28159,21.414795,41.486755,9.329 1373,213.12186,199.9035,37.374878,77.61304,9.272 1373,215.75034,208.28458,23.73526,37.119186,8.928 1373,99.05982,204.33832,32.324623,56.66342,8.746 1373,266.18747,205.21948,20.128204,42.509933,8.213 1373,284.96057,190.38458,18.264862,34.40979,8.084 1373,224.56816,209.98505,23.37825,38.06331,7.858 1373,103.9825,204.2813,21.663338,35.538223,7.773 1373,388.25732,159.55273,18.839172,40.987747,7.768 1373,-10.834881,-31.717272,29.03281,72.74749,7.522 1373,-9.051649,200.09383,28.946974,72.66951,7.493 1373,284.14984,176.60808,17.557892,36.63504,7.454 1373,531.04785,208.85791,18.882812,40.779144,7.39 1373,523.15497,207.9326,17.899658,40.119278,7.329 1373,-0.226655,159.28412,27.33125,88.836945,7.228 1373,-5.346895,-16.857475,17.396935,42.670734,7.185 1373,18.781376,206.56027,29.576824,64.95218,7.059 1373,543.9468,207.50601,20.710693,41.74286,7.018 1373,147.61942,203.3097,17.147583,30.053772,6.841 1373,199.37798,197.44406,37.001587,79.112274,6.82 1373,367.52536,203.54788,26.117157,59.472992,6.783 1373,426.42322,208.13881,19.50528,37.170593,6.604 1373,443.4383,203.31525,17.840973,32.494064,6.569 1373,248.74722,206.78848,20.930176,44.691406,6.482 1373,-6.1699347,489.65234,18.814281,41.04059,6.298 1373,177.44174,203.56581,20.922989,41.02356,6.267 1373,256.9409,205.0426,20.442413,43.84703,6.172 1373,185.65666,204.4485,21.702469,38.77484,6.091 1373,110.96653,205.4463,23.147972,38.878174,6.077 1373,627.28723,-17.652882,17.10675,46.50899,6.057 1373,-8.666469,465.95343,37.429234,90.40875,6.006 1373,323.2991,187.84645,18.473816,32.42662,5.878 1373,622.34814,-34.003445,27.163574,77.37272,5.502 1373,-14.172373,189.47858,48.741776,129.49988,5.46 1373,620.53094,220.3655,15.836304,37.038254,5.445 1373,626.39655,487.9926,20.598694,46.365112,5.424 1373,428.5976,204.05545,15.090698,26.390396,5.419 1373,377.1321,203.55818,20.209686,45.424652,5.417 1373,203.47002,201.90988,54.44081,124.90411,5.403 1373,163.54166,201.5321,41.902756,93.41968,5.384 1373,-73.92247,263.859,202.76653,464.77686,5.382 1373,603.1807,434.32825,55.4787,140.19019,5.381 1373,179.9516,201.38565,40.86432,92.68994,5.323 1373,131.1417,205.08461,19.882706,31.843811,5.283 1374,209.79047,211.16359,31.185043,73.299545,94.197 1374,3.5355544,204.28334,20.998318,51.541656,19.883 1374,6.0193977,202.26299,27.51213,73.35103,12.666 1374,16.162893,204.78458,22.50657,56.680298,11.499 1374,289.19745,203.2624,20.048431,32.279587,9.494 1374,283.7289,175.81561,17.75,37.304092,8.544 1374,220.29755,216.03323,24.312424,53.810364,8.278 1374,283.99518,189.49956,19.091095,36.08055,7.812 1374,530.3435,212.18484,18.214111,42.591217,7.383 1374,-4.192085,205.99095,17.646368,45.701447,7.044 1374,387.37634,159.33331,20.573303,41.661728,6.594 1374,-10.855198,-31.465075,28.962812,71.59911,6.579 1374,-5.4123373,-17.315613,17.338146,42.853737,6.572 1374,-8.316564,196.13124,27.674156,68.97841,6.391 1374,627.255,-17.958513,17.024292,46.608955,6.013 1374,234.80032,178.39789,17.2043,31.53392,6.005 1374,-11.9939375,478.55115,30.163124,62.74414,5.883 1374,524.70483,210.55276,17.184204,37.133408,5.819 1374,610.999,-47.5955,41.16443,100.93257,5.791 1374,-6.366316,489.55093,19.172031,41.90921,5.692 1374,-1.4442444,161.28381,26.402218,83.28575,5.623 1374,285.532,166.27211,16.905792,31.489319,5.621 1374,358.78918,203.82512,28.623718,61.974106,5.61 1374,621.5899,478.3775,29.0484,66.055115,5.578 1374,154.65309,198.75237,18.930206,37.434418,5.479 1374,452.54276,210.77908,16.258453,31.941528,5.438 1374,-73.252655,263.44208,201.91661,465.1093,5.433 1374,603.3845,434.648,55.09436,139.6352,5.428 1374,386.61023,224.8273,29.956573,67.642365,5.36 1374,374.60327,206.89119,25.534424,56.77675,5.255 1374,363.8577,196.73816,17.974731,28.788269,5.221 1374,284.23175,201.10312,29.199707,50.33905,5.172 1374,-17.523083,-63.75064,56.19775,143.26111,5.109 1374,429.76044,204.62752,13.837891,25.85289,5.042 1374,535.7229,310.29428,145.22491,340.62747,5.039 1374,324.0828,194.1306,17.170685,29.994904,4.947 1374,-21.48855,402.93906,79.18846,174.74039,4.935 1374,280.9363,178.13144,26.90268,58.44716,4.908 1374,538.39624,211.94098,17.214966,35.655823,4.898 1374,388.2151,181.18433,17.061462,38.131454,4.875 1374,493.96317,228.88852,237.09274,513.13684,4.83 1374,371.10736,198.15869,17.118652,28.613129,4.784 1374,229.90182,219.83562,24.299133,54.809464,4.708 1374,329.94247,195.40796,18.743744,30.295471,4.7 1374,435.0246,208.52815,16.08194,34.871277,4.684 1374,252.7247,209.44438,16.651367,28.31128,4.632 1374,460.11853,205.37202,15.470001,30.10852,4.625 1374,308.24286,181.90878,15.76123,28.430252,4.595 1374,403.1329,215.13982,18.199951,37.863297,4.582 1374,283.32144,206.46533,19.800476,33.550385,4.568 1374,444.11255,209.80252,16.283997,33.140244,4.533 1374,586.42694,-102.59697,74.520996,236.4393,4.503 1374,108.27074,195.61588,28.709106,53.564682,4.477 1374,393.6399,219.02614,20.56009,42.691483,4.465 1374,17.619732,202.98912,41.158,79.00862,4.465 1374,-13.056088,255.80972,30.96524,59.026093,4.46 1374,260.7986,209.98508,16.419373,28.858658,4.427 1374,-15.229422,203.29483,50.12207,128.34274,4.397 1375,210.96127,216.54578,23.13086,43.64502,18.174 1375,290.23886,202.38875,19.609406,34.00389,14.285 1375,106.470116,205.84946,19.284172,38.593765,13.776 1375,1.3829792,205.13315,24.976442,72.24991,10.805 1375,211.25151,207.82376,36.73079,69.19867,9.862 1375,8.997888,209.62991,20.183651,48.141876,8.492 1375,12.198091,208.78674,28.720188,61.627808,7.813 1375,453.13965,211.03992,15.696716,33.33528,7.42 1375,113.431656,212.67433,18.055298,33.929626,7.329 1375,-5.2228928,-17.032835,17.367764,42.35244,7.155 1375,-10.83103,-31.332401,29.268635,71.07935,7.044 1375,99.589096,208.44397,19.976326,38.89514,6.858 1375,186.8831,212.44287,20.715134,42.348602,6.745 1375,234.57436,180.89847,17.38501,30.422058,6.736 1375,202.51227,215.49329,22.910538,47.1763,6.661 1375,284.53653,190.26631,19.532318,36.610107,6.579 1375,-6.323643,489.7645,18.974905,41.643097,6.568 1375,132.96902,207.70038,29.167664,72.99945,6.419 1375,401.7154,218.34201,19.904724,38.350372,6.369 1375,283.9758,176.2683,18.662079,38.19818,6.326 1375,-11.846381,478.6108,29.780632,63.06717,6.322 1375,171.44125,211.26285,16.832794,40.709534,6.269 1375,4.6498528,206.214,16.373726,40.64702,6.198 1375,387.5313,160.02791,20.25177,40.888794,6.172 1375,627.18695,-17.349041,16.966125,45.746525,6.129 1375,-2.6043284,189.28128,16.157469,40.819397,6.121 1375,243.38808,204.66127,16.462448,27.133347,6.045 1375,-10.545097,261.4368,30.89356,70.97412,6.026 1375,61.798573,210.5534,30.666904,54.033478,6.004 1375,427.40176,209.50194,17.890564,36.733505,5.938 1375,514.14667,240.61392,31.33606,57.34375,5.861 1375,164.47873,209.29126,15.451065,39.69467,5.849 1375,251.944,209.85765,16.6922,27.306885,5.791 1375,323.03278,188.12772,18.276062,31.858932,5.713 1375,611.0016,-47.232143,41.189697,100.85962,5.662 1375,66.286835,216.7144,41.729584,82.26549,5.656 1375,166.51016,210.3563,26.662506,64.421295,5.628 1375,98.933014,216.30017,41.268723,78.272,5.617 1375,35.76223,211.3408,40.26513,82.14058,5.606 1375,81.79764,217.8982,20.740799,43.85251,5.58 1375,90.33125,217.56923,19.163834,39.602066,5.534 1375,626.4241,488.06473,20.745605,46.60202,5.502 1375,-3.0241156,204.2635,15.762529,39.64882,5.48 1375,425.16034,222.76872,21.124603,39.29219,5.474 1375,582.8342,413.94092,72.03424,173.90997,5.343 1375,190.47194,207.8103,26.306503,64.84595,5.342 1375,40.7801,218.50499,23.991482,43.07747,5.32 1375,284.34915,201.38834,27.629883,56.422333,5.309 1375,23.830194,215.77156,23.66194,47.145493,5.296 1375,-73.67666,263.5199,202.37708,464.86304,5.286 1375,179.01654,210.87334,18.10434,43.216263,5.233 1375,612.55316,456.48434,39.605286,104.964264,5.215 1375,82.57884,216.30336,41.570114,80.9348,5.197 1375,138.8374,213.75595,19.342514,44.34265,5.191 1375,-17.663774,-63.257965,56.544357,142.32893,5.188 1375,-0.3605473,161.67348,25.964144,78.70146,5.157 1375,535.41724,309.9475,145.79858,340.8396,5.097 1375,460.11917,209.19022,15.876251,29.69873,5.093 1375,150.10695,208.15947,26.713867,70.15611,5.091 1375,132.44244,209.02971,16.773071,34.754013,5.066 1375,51.020393,215.08734,33.078133,57.908997,4.998 1375,156.1418,214.16725,18.104202,44.597275,4.998 1375,2.6544232,192.18616,17.587032,40.895187,4.954 1375,17.174946,205.56956,39.445477,76.52318,4.937 1375,236.59578,195.58228,16.032272,26.711899,4.931 1375,269.1013,207.2202,16.16977,25.721268,4.922 1375,494.53918,228.98056,236.41772,512.52966,4.92 1375,275.6531,207.71683,18.009888,32.48703,4.876 1376,211.36229,215.25494,32.879883,74.21985,96.266 1376,103.50629,208.12502,23.041191,48.517166,13.596 1376,367.43994,220.16794,23.08908,40.95352,9.28 1376,460.4761,213.0314,18.736298,38.50769,9.101 1376,289.87958,214.85187,18.84079,37.582016,8.237 1376,394.85812,167.6245,19.963806,47.594574,8.061 1376,409.53458,215.36536,18.948761,44.75592,7.929 1376,598.1548,211.04716,29.445435,70.203384,7.724 1376,322.31732,226.08282,32.62564,71.25568,7.257 1376,249.9238,234.8898,19.030304,32.107513,6.907 1376,-10.869779,-31.727764,28.956429,72.045265,6.856 1376,244.67929,214.98679,34.732513,79.50876,6.818 1376,-5.50591,-17.855164,17.575413,43.471695,6.681 1376,473.17902,239.32014,33.076324,60.15193,6.664 1376,481.40335,214.33945,17.848053,37.702118,6.535 1376,627.1593,-16.529877,16.54602,45.531284,6.353 1376,617.0379,209.30705,21.00885,56.114517,6.314 1376,290.19205,200.22339,19.774567,35.86859,6.01 1376,622.748,-34.47871,26.555298,77.2391,5.922 1376,290.96146,176.21835,18.483246,36.796326,5.875 1376,-6.453147,489.41138,19.052425,41.678223,5.843 1376,-8.7718725,464.94305,37.68615,92.32745,5.83 1376,475.4146,213.44968,18.260498,32.959885,5.777 1376,250.0047,246.94379,21.871857,41.290405,5.587 1376,243.49832,226.58968,19.299652,31.793869,5.529 1376,602.55115,-54.942192,53.31714,135.65233,5.524 1376,285.25403,210.20903,27.310486,58.74547,5.472 1376,626.558,488.47128,20.469482,45.84378,5.461 1376,-73.21414,264.23596,201.72296,464.53223,5.455 1376,257.03723,243.07256,18.613281,32.709885,5.36 1376,582.7053,413.69666,72.57178,174.29736,5.354 1376,330.61307,197.04376,18.41571,30.13977,5.346 1376,612.6582,455.88727,39.833252,105.953,5.337 1376,373.50153,208.3155,26.111542,52.244614,5.316 1376,474.25897,234.80786,18.936493,34.623108,5.306 1376,-17.725151,-64.16754,56.198425,143.33386,5.294 1376,534.7615,310.65424,146.29773,340.60516,5.287 1376,589.6005,222.89465,29.467346,66.59131,5.277 1376,284.1948,224.34572,18.038025,36.13948,5.091 1376,500.57315,220.28735,38.612885,75.60181,5.026 1376,-3.0581129,244.31602,29.652908,71.063126,5.022 1376,494.2024,229.11665,237.23566,511.20032,4.971 1376,-21.343418,403.30344,78.8495,174.80472,4.967 1376,585.88544,230.76636,21.725464,44.684265,4.941 1376,401.402,156.3843,20.509583,45.328354,4.923 1376,466.69955,211.24321,17.791748,34.68402,4.917 1376,276.3824,220.57669,17.625763,31.98848,4.914 1376,416.5706,216.58748,19.857971,41.536728,4.812 1376,1.1500955,153.29721,24.949165,89.38228,4.753 1376,491.21823,233.81781,17.808197,33.0542,4.749 1376,482.59155,229.78815,32.33203,61.081604,4.73 1376,466.2196,224.64731,18.175201,36.144012,4.719 1376,296.2083,212.01274,18.901703,35.83522,4.678 1376,412.536,209.16144,14.512054,30.00003,4.583 1376,498.5068,230.76843,18.495941,35.65381,4.549 1376,301.67676,217.37413,30.11621,56.922745,4.54 1376,586.6397,-103.17291,74.15204,238.38542,4.529 1376,451.74057,224.574,29.66156,54.98401,4.497 1376,204.03003,213.36272,56.002655,105.73683,4.488 1377,231.55658,219.71686,31.983398,69.73657,86.617 1377,505.065,215.97113,20.355713,41.38388,10.863 1377,0.11994839,200.25005,20.181126,46.77974,10.053 1377,499.79916,221.59415,31.580597,59.3013,9.334 1377,59.05088,229.91891,19.492706,36.132507,9.105 1377,82.571175,234.79889,17.954178,33.40753,8.978 1377,75.80943,236.5791,18.127289,31.499268,8.669 1377,618.4429,211.8595,18.710815,52.537415,8.325 1377,134.92064,205.2459,27.105133,51.432785,7.793 1377,591.1567,214.67181,27.216125,67.26941,7.75 1377,233.61284,212.14009,21.756058,50.095383,7.163 1377,522.2179,214.17554,20.029785,41.102203,7.034 1377,-4.0808315,214.64159,17.3498,44.399307,6.877 1377,-5.8912187,-18.33155,18.174526,44.29112,6.77 1377,498.76654,223.13647,20.37799,41.7565,6.704 1377,607.0084,211.76445,25.440002,67.13072,6.495 1377,518.1304,212.34444,34.592896,75.347824,6.435 1377,-10.946959,-32.38254,29.56584,74.389534,6.385 1377,388.46484,218.8416,26.364014,41.601883,6.377 1377,433.89804,161.40436,19.986084,48.35875,6.375 1377,513.7245,221.0444,20.36908,40.889496,6.3 1377,621.83954,477.75354,28.90625,66.95593,6.212 1377,587.56396,222.53197,20.0354,47.750595,6.051 1377,221.1267,189.15726,54.95552,103.1214,6.04 1377,539.73456,219.60593,32.856873,57.915497,6.016 1377,258.0524,226.38632,20.164093,39.33908,5.968 1377,265.53967,230.32965,20.28601,34.263306,5.945 1377,1.8356556,219.20152,18.364243,39.954056,5.922 1377,602.44525,220.5249,19.28894,49.12451,5.844 1377,78.24907,228.53043,28.30046,54.35251,5.802 1377,529.84827,215.10025,19.803406,41.405792,5.798 1377,-8.8298,465.26312,37.639633,91.98419,5.696 1377,627.4535,-17.988525,16.980042,45.678516,5.696 1377,-6.2605863,490.5162,18.58626,40.301727,5.612 1377,-11.848295,479.44855,29.360405,62.14856,5.591 1377,-4.957734,170.35567,18.85566,46.442978,5.589 1377,4.497223,217.44374,29.684566,55.29872,5.463 1377,88.15521,226.59506,18.654106,31.07965,5.443 1377,574.9182,218.91817,28.369629,62.502457,5.431 1377,499.58737,205.30089,19.283783,42.91519,5.425 1377,66.42594,235.4075,19.831497,37.30078,5.411 1377,623.0021,-34.118122,26.393799,74.24254,5.393 1377,582.9244,414.0127,72.33081,174.09131,5.362 1377,473.895,206.67226,19.218292,39.3573,5.357 1377,596.3646,218.9206,17.891724,44.467957,5.332 1377,-73.44995,263.93713,201.72482,465.00928,5.266 1377,491.90656,231.19655,30.604492,61.983597,5.26 1377,476.28772,239.71468,32.82074,63.369217,5.236 1377,534.86743,310.37457,145.71112,341.41144,5.135 1377,550.5959,209.32733,34.007263,79.732056,5.13 1377,89.40607,238.44638,19.470734,35.97821,5.064 1377,274.5419,231.44696,19.73465,33.869263,5.03 1377,494.24683,229.18771,237.26575,512.1196,4.958 1377,243.17041,226.11584,25.16034,52.303772,4.941 1377,537.37244,215.46333,20.26532,41.470688,4.912 1377,-5.3665943,76.300476,17.377958,42.307762,4.895 1377,490.153,227.64905,20.941986,38.849426,4.876 1377,330.32617,207.70383,20.218018,33.258804,4.867 1377,-17.798,-63.13388,56.66315,142.92834,4.859 1377,602.9803,-57.275078,53.28302,133.55878,4.832 1378,70.05399,212.88062,28.411545,61.704285,29.319 1378,86.99164,211.65979,30.009354,61.31909,16.638 1378,222.1573,209.49124,27.594666,52.508606,12.751 1378,90.42998,174.6337,22.241074,54.73506,7.672 1378,278.10715,216.07492,36.698395,84.407715,7.389 1378,291.88037,215.59763,38.371216,84.38205,7.342 1378,268.3624,218.98813,16.546783,36.417496,7.241 1378,599.6377,209.01387,33.93933,82.25542,7.128 1378,522.8121,159.50757,17.757263,41.21486,6.608 1378,563.7907,217.01648,38.828552,77.57837,6.601 1378,-5.6188154,-17.370817,17.840961,42.52854,6.56 1378,583.53754,214.61205,36.38867,73.8654,6.442 1378,412.31476,177.72667,17.611053,35.91472,6.391 1378,627.3458,-16.222805,16.601624,44.375736,6.391 1378,416.6621,181.40012,19.403992,38.486374,6.369 1378,290.90756,222.05487,15.816467,33.56508,6.273 1378,-11.137482,-31.085331,29.755386,71.597885,6.268 1378,626.6587,488.36487,20.294983,45.53308,6.263 1378,90.34672,208.77032,22.352898,40.09317,6.157 1378,-8.639509,465.0958,37.464516,91.86795,5.978 1378,416.89407,196.18672,20.216217,38.37445,5.964 1378,207.25864,207.11867,29.555115,53.07277,5.939 1378,615.96936,217.27556,22.673462,51.681656,5.747 1378,286.43506,221.27283,14.634064,30.043442,5.717 1378,260.23468,218.8801,17.36206,39.582367,5.683 1378,610.52045,213.1651,20.678833,46.563232,5.654 1378,251.80063,217.19212,18.510712,39.195053,5.569 1378,97.8839,216.13588,40.555336,74.7133,5.559 1378,582.7505,414.43576,71.997314,172.91714,5.507 1378,612.6591,455.78595,39.8067,106.18317,5.455 1378,436.35086,183.158,16.058838,29.212479,5.428 1378,262.57724,215.5499,37.671204,82.1738,5.415 1378,623.48267,-33.664627,25.58496,74.3171,5.397 1378,163.24841,159.6396,31.286972,72.08888,5.388 1378,-6.2635355,489.55228,18.880451,41.354218,5.365 1378,-73.15915,265.57898,202.20863,462.27234,5.341 1378,535.2312,308.9667,145.42456,343.5643,5.336 1378,70.047066,168.42448,27.76001,82.1264,5.312 1378,275.2884,220.38113,18.36554,40.613373,5.31 1378,-17.51183,-64.76053,56.20852,145.07358,5.31 1378,-4.9728217,2.078579,17.882343,42.687393,5.236 1378,493.89594,227.32883,237.20197,514.22034,5.184 1378,593.4553,224.15639,21.71167,37.400253,5.144 1378,96.73711,193.66794,20.947609,42.165207,5.109 1378,65.6201,216.99509,42.434998,83.92212,5.096 1378,408.12625,182.6123,28.311615,61.421097,5.063 1378,305.33496,223.80836,21.335419,43.584213,5.051 1378,313.53088,225.81613,20.612488,41.775055,4.929 1378,595.645,209.21686,16.945862,36.6933,4.909 1378,-5.1086874,27.086266,18.085506,40.49581,4.907 1378,-21.380281,403.3924,78.9571,174.5451,4.906 1378,306.33514,212.64143,39.573364,86.16441,4.884 1378,547.56586,222.31316,43.485535,91.31819,4.862 1378,133.75995,223.57666,33.05081,52.04608,4.853 1378,611.0055,-49.705944,41.887634,103.06842,4.828 1378,556.8571,214.05183,29.46643,55.771317,4.798 1378,97.18475,173.33276,31.122559,62.95067,4.785 1378,218.19353,204.12386,22.24997,45.66066,4.775 1379,366.60355,230.45685,35.605286,78.42035,78.507 1379,189.90144,219.8551,32.05237,57.873108,57.115 1379,204.84506,224.49136,25.05577,52.247528,17.024 1379,581.82666,227.71564,30.843262,74.71692,11.765 1379,537.0324,195.23294,20.549194,40.404312,11.381 1379,369.60263,225.45682,22.816345,52.45746,10.996 1379,593.4119,224.57059,32.175232,74.89029,10.792 1379,196.62457,188.20358,33.002686,80.17932,10.149 1379,221.39557,176.0104,28.547852,69.40701,9.612 1379,538.4277,208.15848,21.646301,40.380585,8.306 1379,338.0915,214.47449,23.09253,44.658325,8.179 1379,214.54375,223.91362,23.360184,47.94905,7.526 1379,210.87694,179.9584,31.46933,80.07822,7.465 1379,-5.6313133,-17.74589,17.509129,42.13463,7.117 1379,534.074,211.77519,27.751099,61.90471,6.716 1379,-6.35271,489.491,18.99989,41.871674,6.458 1379,507.4469,207.65247,31.052979,62.047363,6.324 1379,-11.342603,-31.407612,29.927982,70.021736,6.207 1379,188.581,202.15195,49.17299,91.363525,6.118 1379,627.45734,-17.34424,16.973328,45.685276,6.042 1379,370.21924,211.95091,18.829346,45.414017,6.011 1379,298.20782,165.0602,31.65683,71.92821,5.905 1379,345.12207,232.29776,20.901978,39.76602,5.782 1379,207.68063,187.66235,23.596909,54.412125,5.763 1379,-3.910668,107.56028,15.241846,36.675392,5.753 1379,153.45842,290.17413,37.094345,59.519775,5.668 1379,621.6871,477.46854,28.983032,67.30307,5.623 1379,-4.9191623,123.88916,16.95303,39.966187,5.46 1380,37.628777,215.04979,33.164185,72.76402,23.321 1380,11.374803,210.94177,32.40748,67.42444,17.866 1380,31.25661,216.88785,26.096409,57.433228,10.496 1380,0.86380005,210.92357,28.251276,68.820175,8.321 1380,523.0914,205.55946,17.333923,31.549942,8.235 1380,379.28238,197.97453,19.089691,31.44246,7.883 1380,426.02188,187.23616,22.097595,44.834015,7.653 1380,-5.33856,-17.330435,16.862064,42.137306,7.589 1380,397.1582,172.93692,27.436035,64.03119,7.53 1380,381.6087,177.59564,28.250122,59.0782,7.457 1380,40.454514,210.42073,24.686638,43.04396,7.406 1380,16.865435,211.79951,21.828188,35.35469,7.277 1380,371.17053,196.62335,19.851501,33.847687,7.256 1380,618.44916,330.97287,18.66101,38.56305,7.006 1380,516.8396,203.04436,16.223816,28.367554,6.914 1380,-11.954793,478.39764,30.237133,63.55139,6.824 1380,58.723927,179.03856,19.79388,48.091003,6.81 1380,53.034138,219.90285,26.064594,47.622574,6.694 1380,-6.140486,489.604,18.798119,41.41455,6.66 1380,521.6104,208.96413,33.517944,74.69704,6.542 1380,363.8834,181.74138,51.65985,123.77263,6.198 1380,410.57587,186.83046,19.322662,42.85034,6.073 1380,42.721634,185.48154,29.37661,64.51045,6.032 1380,-10.663194,-32.226307,28.740402,71.743454,6.03 1380,626.51025,488.15768,20.414307,45.800385,5.971 1380,623.72205,-34.11051,26.006958,78.178085,5.915 1380,627.60004,-17.56314,16.5979,46.955532,5.886 1380,49.260223,213.97229,37.72351,79.93536,5.841 1380,76.77046,80.67346,30.088554,57.47908,5.837 1380,326.73343,175.87717,60.638336,142.42844,5.83 1380,-5.926306,215.20076,18.659035,43.6454,5.735 1380,27.560072,76.16087,20.807333,48.02304,5.729 1380,386.91986,200.90128,16.729858,31.551086,5.67 1380,15.557936,204.32608,49.51219,122.0621,5.646 1380,603.66614,-54.75379,52.295288,135.75597,5.607 1380,299.51727,136.4247,33.441437,82.13451,5.58 1380,612.5451,456.81592,39.52423,104.96228,5.497 1380,56.54201,195.93712,19.707455,41.53694,5.432 1380,393.7414,172.9222,20.382996,51.145737,5.416 1380,386.06903,179.01807,42.35681,81.170715,5.347 1380,507.6807,203.09229,17.363983,29.80481,5.343 1380,505.40298,333.45718,19.636932,35.08609,5.338 1380,67.22655,212.8654,31.364502,59.19023,5.327 1380,441.40488,186.78255,19.97464,40.290924,5.288 1380,380.00705,191.18643,53.1528,135.8475,5.274 1380,353.37323,174.5198,44.200897,87.22626,5.257 1380,81.2453,78.18954,21.19175,39.948936,5.23 1380,3.9301074,72.25357,16.502094,39.02449,5.157 1380,11.509949,73.25537,17.548965,39.949417,5.131 1380,-4.197074,73.306335,16.197369,38.60894,5.128 1380,-74.461,264.55737,203.07407,464.26526,5.103 1380,63.00831,225.11133,23.847755,47.785645,5.07 1380,530.9607,205.16467,18.164734,32.880524,5.016 1381,525.5442,210.62415,26.457886,67.57889,89.761 1381,506.16724,212.51605,27.539734,67.46756,88.184 1381,211.26587,215.11739,31.930328,72.59929,32.51 1381,179.56195,211.46991,31.956604,68.05081,22.07 1381,195.9546,211.61954,33.723526,69.85501,21.866 1381,-1.7255354,219.86096,27.648243,91.74512,19.903 1381,191.24234,213.38928,25.928818,53.743927,16.885 1381,221.53662,213.65636,25.9133,48.12999,13.675 1381,175.83615,217.0886,25.181686,47.541107,13.503 1381,165.25354,214.15271,31.531433,67.766174,10.607 1381,217.8028,210.53542,21.708923,35.84735,10.564 1381,-5.526996,-18.791767,17.535881,44.061123,8.655 1381,208.22586,213.11504,24.487305,42.949417,7.76 1381,-10.948439,-31.2258,29.298967,69.83308,7.143 1381,627.55054,-17.762863,16.779785,46.847458,6.564 1381,626.5431,487.7666,20.332825,46.21039,6.508 1381,-14.707036,223.99423,51.494797,151.55423,6.455 1381,230.49431,218.63928,24.546432,55.029785,6.383 1381,570.13135,245.73381,21.73059,45.02571,6.3 1381,239.90866,217.34929,22.678436,47.63469,6.261 1381,-8.633889,465.57837,37.317104,90.924866,6.126 1381,208.99214,240.13983,25.066086,47.576416,6.108 1381,611.0438,-47.218307,41.048462,100.33887,6.048 1381,-5.8900013,489.87888,18.318943,40.745575,5.804 1381,-4.7906313,2.6060276,16.647453,40.42063,5.776 1381,227.50238,196.25026,16.017944,33.570526,5.732 1382,389.2526,215.86884,38.01767,90.0921,59.557 1382,155.44432,225.61609,60.2903,107.14972,23.909 1382,363.32208,221.92674,32.357483,70.194534,21.078 1382,334.69122,227.57886,26.205719,48.41623,18.095 1382,347.5983,224.02618,33.563538,68.81964,14.12 1382,391.38333,222.77303,25.676453,58.95378,11.839 1382,46.60157,252.12271,32.657715,61.65735,8.314 1382,476.85486,243.29837,31.99701,64.01517,8.187 1382,-5.61654,-17.39417,17.949425,43.484158,7.931 1382,367.0905,223.35811,24.897766,40.46086,7.873 1382,158.77986,224.0661,38.172577,66.18396,7.554 1382,-11.481637,-31.7739,30.003109,73.8376,7.18 1382,350.63815,218.02414,49.187042,122.483826,7.036 1382,272.78162,139.76558,21.590637,39.365616,7.003 1382,176.47943,258.5876,34.831116,81.426575,6.952 1382,401.6718,238.94017,30.752808,69.24315,6.951 1382,-12.3676405,480.49332,30.969635,61.28604,6.76 1382,391.71112,216.72398,23.077698,38.026,6.669 1382,158.45045,248.50087,37.143845,76.1895,6.634 1382,626.48914,488.4542,20.45288,46.03421,6.589 1382,-6.7809772,490.07657,19.72995,40.733124,6.53 1382,7.72334,244.43852,29.623257,60.36,6.503 1382,369.1696,213.29651,49.10141,124.13068,6.187 1382,370.90503,210.98187,33.181305,55.832977,6.152 1382,-1.7763114,239.04465,27.496212,62.68811,6.034 1382,-5.80837,246.78233,19.208405,48.228256,5.944 1382,406.4406,228.91582,23.666779,52.760788,5.863 1382,323.1088,224.19829,39.146606,86.18327,5.747 1382,627.0042,-17.001663,17.618591,45.15168,5.731 1382,507.01782,72.57419,30.939209,68.99539,5.72 1382,393.65845,200.53366,19.78888,39.30188,5.464 1382,518.3226,77.9873,23.263184,51.525337,5.416 1382,612.58575,456.35504,39.492126,105.48425,5.412 1382,611.139,-47.147728,41.671814,100.18487,5.408 1382,417.29248,231.5403,20.13916,45.520645,5.359 1383,425.25195,229.81808,59.323303,135.12985,97.974 1383,215.16594,217.76358,41.02803,80.833954,30.825 1383,583.6231,236.48715,45.15686,103.23178,22.501 1383,60.317657,221.4428,28.213211,66.056046,16.818 1383,232.7366,217.0712,33.02533,76.87344,14.833 1383,428.0623,237.78342,35.469543,98.19342,10.806 1383,196.39474,213.7484,33.849304,73.94447,10.57 1383,75.489624,229.49626,31.507362,71.811935,9.748 1383,1.6379333,261.3123,32.795033,64.3891,9.45 1383,-5.5904937,-18.01236,17.803043,43.024803,8.639 1383,439.13242,233.31075,35.787262,76.17262,8.587 1383,6.506033,220.43282,29.714998,67.34978,8.164 1383,113.40419,236.68233,35.50583,67.057205,7.766 1383,598.00073,230.23291,27.21753,39.959503,7.741 1383,70.10881,226.16,22.858078,48.8179,7.409 1383,608.2813,226.77759,21.699707,35.39032,7.317 1383,247.14035,226.40125,24.050964,54.256012,7.236 1383,-11.241838,-31.961044,29.767462,71.89097,6.813 1383,601.31995,228.09146,33.82013,60.665222,6.705 1383,37.895504,215.06699,28.535694,69.55615,6.61 1383,48.248734,222.44516,29.480446,64.5849,6.602 1383,216.18109,216.73569,26.488678,57.319336,6.585 1383,219.72217,214.16635,51.65927,124.00284,6.559 1383,195.03424,210.11447,49.49472,113.86066,6.501 1383,422.67227,233.26501,32.48416,65.27368,6.421 1383,-4.819284,218.36281,17.051208,41.85054,6.41 1383,273.98965,254.08073,21.85965,47.88408,6.394 1383,441.12695,264.9801,35.98532,97.517,6.319 1383,613.371,454.4017,39.095764,108.01712,6.283 1383,379.0476,253.67767,61.13379,122.4552,6.281 1383,615.86584,223.64406,22.446655,46.07756,6.253 1383,284.63397,256.0529,28.789917,52.988556,6.247 1383,20.418367,221.71858,31.636728,69.353836,6.078 1383,439.04535,230.65753,23.77475,43.306305,6.043 1384,514.51733,206.37149,45.654236,94.71927,39.969 1384,287.7096,219.90273,30.964233,72.78856,37.862 1384,338.6872,216.97394,32.401855,65.10382,32.359 1384,221.54727,214.23633,32.397705,65.94995,22.527 1384,71.74286,239.80984,26.03334,44.2016,17.215 1384,206.17831,212.28418,30.680939,67.37683,15.802 1384,45.708458,236.00177,28.80436,43.08203,14.203 1384,327.16034,219.40237,32.62097,66.06439,13.041 1384,350.7953,219.98784,22.584259,43.25859,10.752 1384,117.734085,251.2837,32.81935,60.778885,9.138 1384,234.41908,215.63142,31.034225,63.176315,9.132 1384,270.92892,216.14827,30.034332,61.63997,8.229 1384,594.9161,273.86075,41.621216,88.43765,7.227 1384,171.89401,220.10257,31.139923,58.87726,7.169 1384,95.765495,241.59114,21.903992,42.63884,7.103 1384,413.75974,235.23906,27.367096,58.364365,7.045 1384,0.8273375,202.79648,20.063131,41.037033,7.018 1384,510.23004,220.02429,30.159729,74.00421,7.001 1384,67.14804,225.24335,40.39003,69.06702,6.913 1384,518.57697,216.29132,60.685303,121.05658,6.747 1384,-3.4685457,207.14146,17.125786,41.863632,6.667 1384,184.5034,227.20673,22.893433,44.8573,6.622 1384,-10.682603,-31.985733,29.248756,75.29609,6.522 1384,331.86862,222.96352,21.543274,39.64354,6.509 1384,190.05647,212.47531,30.672516,66.2294,6.501 1384,-6.156168,489.18173,18.915794,42.61325,6.465 1384,352.66403,216.27438,41.447845,92.04953,6.365 1385,385.76483,218.34921,35.235504,60.022186,41.48 1385,249.91006,238.20715,20.931732,49.375,32.781 1385,438.787,212.79572,25.796448,67.130615,28.963 1385,557.525,223.92738,29.163269,62.02849,22.86 1385,402.55414,215.91022,32.13028,65.07507,15.794 1385,547.43024,224.5065,22.502197,48.87207,13.201 1385,421.38977,218.77641,28.62613,63.95836,11.996 1385,169.08267,215.31477,21.026428,37.758636,11.87 1385,271.547,240.50067,22.522217,44.475586,10.039 1385,257.1371,235.94757,20.0336,46.219055,9.164 1385,415.58804,215.0297,23.029755,51.927887,9.117 1385,265.50116,238.71707,20.159637,41.325867,9.062 1385,-5.130213,-15.935887,16.969643,40.02021,8.989 1385,295.1662,268.71564,26.098389,48.709106,8.97 1385,567.24023,233.04253,24.595703,47.187393,8.049 1385,-6.471126,488.63098,18.990128,43.134155,7.801 1385,572.87415,243.3103,30.276245,64.18756,7.655 1385,-11.471289,478.4089,28.972967,63.90207,7.244 1385,399.0025,214.08377,24.700745,49.363495,7.154 1385,583.3784,227.01605,34.799194,91.004456,7.052 1385,448.3899,233.99338,20.458954,50.4198,6.96 1385,176.80846,218.29095,19.469147,36.6252,6.866 1385,491.56482,243.19885,32.510315,70.91449,6.846 1385,243.27731,236.12128,21.077576,41.537964,6.705 1385,561.398,221.46251,19.931824,35.996414,6.569 1385,-11.244232,-31.159943,29.980305,69.00929,6.551 1385,378.44324,216.5535,23.876068,43.425568,6.49 1385,224.37262,238.12921,23.890915,39.587646,6.486 1385,252.55342,245.01262,29.436295,52.63179,6.37 1385,626.63306,488.13898,20.362305,45.598328,6.31 1385,21.698593,210.41498,30.028137,64.09656,6.291 1385,379.7901,234.05759,34.11508,64.62283,6.143 1385,337.53827,230.59067,21.260223,43.321198,6.112 1385,439.67746,226.60101,34.83551,75.194885,6.07 1385,6.6906395,202.37634,28.275673,68.884094,6.012 1385,290.15927,234.77367,21.691742,38.195145,6.0 1385,3.8122094,-13.658593,15.664403,35.882233,5.913 1386,452.14594,211.13849,31.920166,70.90378,89.412 1386,489.09497,215.20633,27.873535,77.910065,78.509 1386,57.33114,206.5818,22.271461,49.448837,43.348 1386,440.43024,216.23999,30.052368,68.08716,35.411 1386,481.36194,208.9848,26.437164,68.84216,33.793 1386,202.69151,215.10558,18.260101,34.63643,27.846 1386,303.89624,236.14743,21.750977,49.303864,19.552 1386,289.5599,234.11157,22.38742,54.151855,17.817 1386,176.93274,215.61485,19.555313,31.59581,15.49 1386,468.40286,212.3855,30.811005,65.90152,12.103 1386,497.7095,216.12686,29.134918,64.89188,11.762 1386,185.76051,215.80779,19.275223,32.033554,11.046 1386,292.74747,242.75053,29.802917,60.5186,10.689 1386,508.62744,221.68665,29.934143,70.53705,9.215 1386,515.95795,222.96402,38.536438,85.84152,8.917 1386,-5.5694304,-16.824318,17.62524,42.153145,8.513 1386,196.96844,214.95604,17.875916,29.79042,8.49 1386,259.78735,227.46806,27.56549,57.794815,7.501 1386,-10.883789,-31.560963,29.062431,70.99903,7.351 1386,456.76083,204.27028,21.495514,52.71956,7.191 1386,311.32535,237.32678,21.631012,39.360718,6.901 1386,2.5862575,217.76689,39.45231,95.01271,6.766 1387,89.66138,196.72342,20.546844,49.377533,63.186 1387,532.70886,213.33527,31.531982,75.444275,51.473 1387,226.37369,206.82602,20.135895,37.17256,51.162 1387,587.9779,218.2601,29.660034,65.0629,48.232 1387,74.03541,194.55673,21.940857,52.83795,29.866 1387,326.24173,221.4609,29.40268,70.620514,24.304 1387,598.31366,230.35803,22.450012,45.853516,13.753 1387,339.49445,223.59122,31.272522,70.08356,11.742 1387,217.86699,207.82721,21.705933,37.808136,11.124 1387,599.14197,221.67284,31.860352,99.45918,10.816 1387,59.96116,199.10535,30.18029,61.641693,10.389 1387,80.63964,201.8199,22.96376,48.17096,9.883 1387,544.71783,219.35811,29.28711,64.8423,9.284 1387,297.1397,231.11731,24.755005,47.201233,8.805 1387,576.90424,221.72531,31.029846,72.57272,8.417 1387,618.08057,228.3483,19.541016,50.4765,7.709 1387,348.00226,239.63567,29.062592,64.60362,7.372 1387,465.77594,232.45963,21.070312,41.2612,7.13 1387,518.8539,216.243,30.756836,69.893295,7.025 1387,54.210934,226.694,27.059193,41.898285,6.973 1387,418.40918,215.21811,17.144592,25.96492,6.81 1388,576.34424,214.10149,27.883179,63.817795,86.334 1388,597.8919,207.43117,32.441406,80.51543,84.288 1388,242.85194,213.9959,17.810959,36.21991,53.622 1388,532.4506,195.51978,26.682922,67.238464,52.586 1388,266.77808,211.07742,17.655823,31.426498,36.205 1388,355.49213,231.54706,41.92929,88.86719,32.806 1388,102.91504,199.90923,22.033699,48.797882,30.386 1388,249.98717,212.38101,16.609756,32.479675,14.185 1388,519.6367,204.82077,30.539185,69.14847,13.475 1388,322.76935,226.26422,30.545319,63.240906,12.216 1388,77.28394,196.30504,27.149803,60.29634,11.908 1388,583.3239,209.69138,34.812683,76.14426,11.669 1388,89.713135,200.17384,22.493752,46.69702,11.228 1388,551.74585,207.54161,23.323914,50.771652,11.028 1388,-5.717696,-17.215498,18.07648,43.945484,9.186 1388,229.57828,215.24338,18.846863,33.193314,8.703 1388,540.1616,206.2773,31.546753,71.16496,8.662 1388,259.40997,211.48317,19.375183,34.779037,8.016 1388,572.94934,207.91606,53.660706,126.46779,7.852 1388,482.8609,214.24915,42.988342,80.74658,7.586 1388,466.3227,214.41956,42.516235,78.4314,7.385 1388,426.37476,231.42812,32.43463,59.418198,7.247 1388,450.83572,225.0546,31.461487,57.183807,7.002 1388,386.5448,249.93056,32.33618,68.379135,6.986 1388,499.22516,210.506,41.216003,84.89888,6.911 1388,360.35425,250.0405,26.804504,59.15143,6.861 1388,3.5848098,195.1418,17.457806,33.06282,6.727 1388,417.6186,229.55539,21.49643,35.80417,6.7 1389,87.68307,197.88687,21.94625,51.456818,62.645 1389,106.61992,200.28578,21.285805,45.488983,56.775 1389,249.58261,213.56479,20.639526,42.210144,54.81 1389,71.42853,196.1191,27.988724,65.5952,41.449 1389,305.64322,205.80312,21.184204,39.196,32.027 1389,97.48999,199.31111,21.911148,46.777267,27.905 1389,577.0485,198.59605,19.663696,52.772797,14.906 1389,285.42612,209.33054,17.348267,32.356934,12.826 1389,489.4534,215.9484,31.343597,85.690186,11.321 1389,499.0311,221.28778,20.382782,50.342773,10.634 1389,503.21304,216.84421,32.048553,83.75876,10.343 1389,353.683,245.23512,35.268646,72.826096,9.843 1389,235.9177,214.32729,19.66269,35.948776,9.604 1389,432.82495,209.74933,21.382172,46.74063,9.491 1389,525.27014,229.46967,30.24762,60.752197,9.179 1389,55.012875,192.13972,29.964542,69.13118,8.772 1389,-5.0509863,-15.73318,16.366684,41.311466,7.902 1389,256.94275,210.09035,18.477966,40.797028,7.713 1389,619.3673,215.47932,18.238892,39.577927,7.503 1389,499.6961,213.82832,17.246765,31.869263,7.084 1389,-12.23145,478.8787,30.40627,62.276825,6.827 1389,553.341,205.75056,20.93988,38.67604,6.82 1389,81.79268,190.27382,20.887024,52.4299,6.607 1389,473.29468,211.85617,32.435455,93.87677,6.552 1389,504.47833,217.18906,18.462402,38.14032,6.51 1389,112.71221,194.05714,19.702797,38.260757,6.322 1389,322.2681,206.66418,21.50473,39.063843,6.121 1389,456.67078,208.34897,34.381104,91.67343,6.111 1389,-6.711027,489.57608,19.374418,41.50345,6.11 1389,-12.446837,-42.078854,41.895424,104.02761,5.901 1389,544.358,232.56512,23.819458,42.51117,5.855 1389,397.7048,213.58913,29.75824,62.45549,5.779 1389,550.129,223.64442,36.814575,92.84563,5.75 1389,421.20758,202.5339,37.822693,93.774445,5.723 1389,329.1225,212.62923,21.836304,37.914017,5.705 1389,444.26132,206.87202,30.688568,61.052048,5.672 1390,78.9258,199.02473,25.280273,59.908707,72.826 1390,265.36862,218.67477,19.36444,44.288055,67.621 1390,103.139534,195.79942,22.195122,54.775528,56.087 1390,361.85895,212.0139,21.418518,39.610474,19.425 1390,112.03709,197.57698,21.137428,49.638596,17.679 1390,62.755108,195.68463,30.253963,70.21304,12.68 1390,330.90753,213.1797,19.764618,32.97432,11.988 1390,509.48868,214.8289,29.876251,71.415665,10.684 1390,270.21298,212.5678,23.518585,51.95323,9.073 1390,486.09442,212.5892,38.328064,70.98642,8.389 1390,255.64862,224.10768,16.09726,33.11711,8.264 1390,120.421,194.04091,20.252922,48.00966,8.083 1390,471.2929,210.91913,38.213593,72.09119,7.876 1390,-4.723189,188.3181,18.112823,38.87239,7.862 1390,570.20044,219.37383,18.06012,29.30687,7.827 1390,618.92224,283.282,21.891296,54.46634,7.815 1390,519.98425,217.6929,31.927063,64.9487,7.72 1390,498.7788,216.94147,18.395508,42.497284,7.484 1390,490.36288,216.93306,18.574524,42.576584,7.466 1390,-12.02509,477.31165,29.875095,63.991577,7.408 1390,98.190186,210.93726,21.72995,44.74066,7.356 1390,86.519226,188.26259,28.547699,65.385345,7.326 1390,-5.136093,-16.73555,17.48378,44.46581,7.123 1390,587.1129,215.65404,15.998413,26.968185,7.042 1390,1.626234,192.056,20.881926,34.863953,6.986 1390,-6.36595,488.45114,18.86379,42.256927,6.942 1390,-10.104718,-31.794794,29.06668,74.14799,6.927 1390,140.97527,303.1234,32.198563,75.4483,6.805 1390,617.0797,222.13739,21.048645,60.4646,6.766 1390,513.81287,216.70898,20.584534,45.143738,6.734 1390,481.76273,217.75922,21.040619,51.01053,6.579 1390,595.9617,344.46048,44.07666,180.68643,6.529 1390,600.4274,225.63364,22.622437,48.483,6.44 1390,622.23456,472.97272,28.619568,70.036255,6.388 1390,564.0056,213.83875,18.617188,29.85402,6.29 1390,578.35223,214.90933,16.545593,26.885513,6.225 1390,378.2207,206.96509,19.674805,35.665756,6.202 1390,184.70338,213.07828,23.092651,41.607895,6.084 1390,564.68933,214.709,38.277954,84.89281,5.969 1390,315.6457,214.9653,18.388672,30.668228,5.948 1390,-4.4308033,0.39221954,18.083317,46.07153,5.915 1390,507.5274,213.5192,16.261108,30.501572,5.871 1391,248.87602,211.52773,23.235977,60.341537,94.212 1391,530.9077,216.31818,27.246704,71.80673,89.092 1391,38.80506,200.06056,28.72271,68.18352,88.507 1391,392.2315,205.91177,21.976685,44.825546,40.301 1391,82.57844,197.25992,21.03585,55.366272,27.931 1391,66.29408,196.28902,21.715027,58.44815,27.756 1391,449.72684,198.23299,21.85556,38.727768,15.392 1391,556.7061,217.49069,27.433777,73.440094,10.995 1391,169.2001,202.32957,22.54358,40.719254,8.693 1391,55.186367,198.54175,27.579784,63.925842,8.507 1391,237.93518,223.59462,19.259064,42.49449,8.377 1391,165.5783,209.81107,29.429977,54.2937,8.091 1391,563.11523,211.8696,16.486206,36.646988,7.718 1391,-5.882583,489.1322,18.274931,41.762756,7.602 1391,587.46564,225.08968,18.830322,47.79219,7.28 1391,23.663029,206.38623,31.265217,68.30884,6.964 1391,-5.608396,-16.88517,17.525759,42.5143,6.958 1391,553.15546,217.09006,20.565735,55.477905,6.937 1391,95.089226,202.63696,21.664375,47.724304,6.84 1391,627.4623,-17.382475,16.991333,45.817818,6.712 1391,-11.46274,476.9386,29.514948,63.890747,6.669 1391,564.31085,216.38791,37.619324,95.60687,6.615 1391,587.6674,213.52298,17.007812,31.23613,6.288 1391,590.1934,225.0677,28.83136,67.13823,6.234 1391,613.08215,451.40665,39.68335,112.719574,6.216 1391,172.0504,196.2632,18.26854,30.745895,6.069 1392,600.1022,232.08672,28.528625,87.24065,91.218 1392,214.32639,220.08624,27.261734,72.70648,91.161 1392,574.611,228.96637,21.663452,53.098694,81.478 1392,433.91443,220.55974,23.458588,45.74962,66.369 1392,204.56313,221.07138,25.696793,68.82822,35.47 1392,40.390926,202.9764,23.600422,52.06862,23.236 1392,1.6855121,202.54991,20.061886,57.892838,22.104 1392,16.562546,200.87909,21.002754,58.608612,21.945 1392,375.0182,220.35188,23.917938,41.897507,14.951 1392,475.16797,214.28699,16.952423,39.259705,9.658 1392,-8.38624,186.07018,27.949371,68.41293,8.696 1392,22.374577,202.10312,25.651478,61.76169,8.606 1392,-10.460525,-32.447624,29.355576,73.72725,7.692 1392,-4.478055,-15.6998005,16.15503,41.606136,7.067 1392,55.43337,204.9156,23.249249,50.0224,6.874 1392,-3.2999718,214.37022,17.602318,51.317215,6.806 1392,151.99042,208.68277,25.16182,40.658936,6.641 1392,596.3105,233.65407,22.25763,61.702957,6.555 1393,572.30383,220.77075,28.931763,73.36133,95.917 1393,425.68823,219.84177,22.937195,46.702118,78.975 1393,62.156494,214.43015,40.21186,105.71481,78.541 1393,340.51755,211.23155,23.856598,41.83641,30.869 1393,386.32214,210.35945,16.704742,36.51497,16.898 1393,623.1312,226.22813,16.644287,47.437088,14.892 1393,37.107635,219.24536,40.0457,100.87579,12.973 1393,422.2598,206.47758,34.821472,69.040085,11.739 1393,437.83328,222.4322,19.835815,41.19539,11.668 1393,68.56534,258.85803,30.478348,65.27051,10.098 1393,75.54696,213.63304,31.765549,74.4937,8.95 1393,315.92834,212.89575,16.804352,29.856949,8.214 1393,-4.887864,198.79364,17.753508,45.461548,7.698 1393,512.9511,210.325,21.442017,44.875183,7.497 1393,442.90485,210.83067,17.330475,38.756424,6.768 1393,419.89368,197.1971,24.604431,63.529526,6.724 1393,502.86737,207.98167,26.30719,59.207626,6.682 1393,-5.353089,-15.761415,17.284534,42.413364,6.543 1393,627.4165,-17.068913,16.697144,45.316654,6.472 1393,102.89807,213.96681,27.883545,58.609177,6.457 1393,450.37006,210.014,16.101349,35.388412,6.448 1393,51.183468,216.86133,31.859348,81.68457,6.361 1393,63.921776,215.48334,23.960777,69.71951,6.034 1393,336.22345,224.24834,24.74121,44.35457,5.926 1393,497.66528,211.46683,20.349792,50.95108,5.923 1393,-5.9940405,490.01324,18.008457,41.774597,5.912 1393,-8.889461,464.47964,37.682377,93.13431,5.886 1393,591.29425,223.6712,19.145508,48.586365,5.885 1393,-12.427017,-39.43058,41.58027,99.18092,5.863 1393,523.0614,211.44637,18.678833,37.189835,5.857 1393,538.0717,209.4072,16.821838,37.049942,5.85 1393,623.5747,-33.390354,25.595886,73.69488,5.778 1394,384.162,208.3696,25.382568,55.402252,93.5 1394,533.76,210.74762,36.664856,84.10675,93.422 1394,263.21326,201.49602,25.400574,49.085526,68.49 1394,508.2235,204.34935,24.925964,62.895645,58.779 1394,314.56793,197.56125,19.107635,40.12332,17.552 1394,410.17566,201.48256,21.11383,49.070557,9.525 1394,518.5874,205.77353,22.00415,57.365784,7.271 1394,432.94238,203.08247,21.36377,46.097702,7.265 1394,394.3762,203.6192,27.010834,60.722717,7.183 1394,450.64804,198.38692,18.89737,41.647568,6.869 1394,425.6997,207.79718,22.252594,48.121033,6.787 1394,-6.149188,489.48038,18.367195,41.534027,6.519 1394,-11.752771,476.93533,29.61954,63.572662,6.238 1394,592.47186,205.87837,22.316772,42.5802,6.205 1394,-10.695268,-33.089405,29.361462,78.92139,6.171 1394,457.5393,189.92679,19.323608,42.46747,6.107 1394,265.46246,206.88925,31.832336,73.73129,6.086 1394,392.3764,224.19957,21.257782,44.5204,6.064 1394,627.3866,-17.984375,17.326904,45.42738,6.044 1394,537.2612,210.55171,23.10138,56.009964,5.925 1394,441.67352,204.63893,19.822784,42.825592,5.836 1394,308.92514,202.64597,18.921814,39.497574,5.783 1394,290.86572,195.56595,18.533447,41.20993,5.779 1394,-5.539632,-17.311167,18.174881,45.103596,5.762 1394,192.45589,210.72342,21.785355,31.583603,5.759 1394,217.07663,205.25252,22.00325,34.887207,5.68 1394,585.8973,60.270874,23.549805,46.258804,5.534 1395,563.99976,221.29803,44.53778,102.630005,95.879 1395,386.98303,205.6252,32.625122,72.15141,95.649 1395,401.44232,205.2771,31.262512,72.81793,90.417 1395,253.18886,210.47433,23.059647,45.879272,88.314 1395,499.92615,209.66364,28.140198,72.91815,85.469 1395,187.92848,212.77063,20.55899,33.841995,33.873 1395,453.274,207.7729,28.240875,66.98622,10.409 1395,139.26736,213.59592,17.93106,33.099243,10.387 1395,245.89821,206.32668,34.622025,69.10448,9.211 1395,617.95807,208.19579,21.714844,55.043167,9.083 1395,429.3289,208.75928,30.117462,64.20184,7.326 1395,132.25725,214.49745,19.055557,35.39392,7.13 1395,448.41663,213.96387,23.126831,49.146362,6.982 1395,367.89954,204.03906,25.517975,58.768585,6.911 1395,618.7114,50.865334,21.3396,46.654778,6.608 1396,458.95935,215.30515,30.215393,73.804535,90.081 1396,294.4709,210.15836,22.166107,49.76599,85.957 1396,437.85596,207.9562,26.62445,67.573395,67.13 1396,557.2575,213.81976,31.049622,65.955444,58.913 1396,346.11298,209.70483,20.228271,50.669403,46.204 1396,205.67624,215.23279,17.791946,33.499252,26.744 1396,447.27908,211.51428,27.8508,71.73755,15.914 1396,177.52792,212.92194,21.753723,38.23398,11.985 1396,499.8318,223.89581,30.488647,64.04733,11.045 1396,538.5365,204.17416,32.682373,68.043274,10.036 1396,518.7361,218.04994,29.325684,67.9583,8.543 1396,388.9002,216.99594,31.149078,58.1633,8.285 1396,184.62721,208.67532,19.30069,36.747375,8.238 1396,417.2629,211.19995,22.359558,55.920715,7.302 1396,-5.4008102,-15.900318,17.528494,43.579967,6.997 1396,332.10333,213.68944,20.047516,49.00209,6.766 1396,525.86127,206.01343,31.48761,66.22818,6.577 1396,303.23114,208.04356,21.315369,43.3584,6.516 1397,446.2097,200.80235,25.296936,59.423843,80.37 1397,555.5369,201.08475,29.191101,85.17511,78.18 1397,282.34906,213.67638,20.00586,38.82141,72.465 1397,33.04883,196.23117,27.977898,57.40744,39.522 1397,545.38403,204.94366,27.0932,71.16083,12.425 1397,538.34753,206.07642,20.535645,52.299316,10.889 1397,277.8385,211.19432,17.268341,35.160965,9.17 1397,269.16867,209.58774,15.132721,30.863113,8.762 1397,402.21704,212.89821,17.854706,40.30504,8.641 1397,415.5423,207.56711,28.54956,62.69934,8.562 1397,395.00217,206.09894,19.192474,41.563522,8.264 1397,252.88483,212.49745,15.574371,29.501907,7.175 1397,175.70346,211.98946,23.2574,34.022324,6.781 1397,260.80215,210.44809,15.071014,29.465775,6.67 1397,-5.804274,-18.368542,18.550997,45.274513,6.596 1397,409.68106,209.31105,19.65683,39.70546,6.572 1397,-11.027248,-32.233845,29.677097,73.65349,6.295 1397,459.93054,204.73257,29.175964,65.84909,6.203 1397,-8.855585,465.12204,37.615334,91.78195,6.122 1397,-6.088686,489.5384,18.42386,41.66809,6.052 1397,622.84143,-34.351532,26.990112,75.31356,6.0 1397,248.9386,220.39636,18.313538,32.760452,5.84 1397,64.746506,200.51093,22.805847,44.57538,5.74 1397,276.82654,211.83302,29.339905,60.942917,5.679 1397,365.8365,192.4128,27.732239,57.07733,5.634 1397,627.59247,-18.883018,17.355164,46.569088,5.607 1397,536.06604,218.08829,26.542053,66.11417,5.547 1397,245.24088,212.82668,16.866394,32.30092,5.524 1397,487.32373,218.50153,26.89917,60.41217,5.456 1397,305.12073,212.53888,43.614624,80.88684,5.367 1397,612.6991,455.7597,39.69458,106.36102,5.312 1397,-17.04844,-63.864925,55.584435,144.4503,5.28 1397,490.98865,215.56012,19.643341,40.076508,5.244 1397,-73.00854,265.18097,200.73535,462.31036,5.212 1398,437.46036,215.55481,23.931,46.326477,71.993 1398,408.12115,215.54797,19.731262,38.24881,56.165 1398,599.1463,204.25876,25.60199,68.01117,39.512 1398,592.29517,206.40454,22.699219,59.152527,39.1 1398,158.9696,207.94733,24.322357,54.336243,34.421 1398,445.62067,212.62164,22.746063,43.717896,9.644 1398,-5.694957,-16.275063,16.946632,41.97329,7.695 1398,548.95264,198.94505,30.673096,67.71184,7.369 1398,398.47488,212.64441,16.501617,35.055283,7.36 1398,299.7139,212.47481,19.593536,37.186127,7.343 1398,144.77605,201.0142,29.756348,59.8351,7.337 1398,415.2705,216.46109,20.546143,40.752472,7.118 1398,369.01166,222.23245,19.63501,34.288605,6.951 1398,480.80933,208.92163,20.425598,37.43608,6.893 1398,611.79724,201.0615,25.926819,74.80124,6.698 1398,623.6899,-33.31862,25.959534,75.009834,6.671 1398,-6.1920233,489.6679,18.569607,41.05548,6.617 1398,388.72836,207.1419,16.457367,34.636047,6.494 1398,300.32346,206.76088,29.421295,57.59819,6.302 1398,-11.8286915,-32.04807,30.211134,72.68209,6.099 1398,595.3389,199.6105,16.909302,36.73784,6.045 1398,-8.809199,465.32883,37.538036,91.80539,5.979 1398,435.64203,215.7688,38.357025,64.43524,5.924 1398,627.6248,-18.0051,16.310364,47.093895,5.905 1398,626.6078,488.68863,20.703125,45.14023,5.548 1398,583.47876,412.18515,71.53558,175.98807,5.337 1398,-5.661035,255.76572,17.622154,38.001495,5.322 1398,-73.02202,265.71503,200.97784,462.87457,5.252 1398,612.741,455.64825,39.652466,106.62457,5.216 1398,-16.78827,-64.72886,55.107277,148.97894,5.203 1398,603.66614,-57.043274,52.48706,137.13612,5.193 1398,576.8542,202.23761,26.451965,63.384583,5.083 1398,428.39716,212.81813,17.157349,31.040283,5.076 1398,162.80917,200.01495,16.941788,33.04422,4.996 1398,184.72192,211.02191,22.468048,39.292892,4.99 1398,2.6426709,253.5711,18.414778,36.92981,4.975 1398,527.6918,199.37428,27.268494,58.711563,4.935 1399,564.9948,224.55055,24.908386,51.455,86.052 1399,496.98267,226.45605,19.988647,39.479004,80.789 1399,246.25511,216.19415,23.6902,48.865356,30.26 1399,584.9095,218.9906,19.736267,41.391357,12.277 1399,574.5171,219.58272,21.779541,45.665146,11.599 1399,538.4518,220.65453,21.607239,40.246445,10.375 1399,45.740585,210.91078,28.367989,65.60939,10.042 1399,122.66196,206.23256,32.520584,66.292404,9.563 1399,-4.8233566,233.44572,18.473532,42.62831,8.494 1399,54.146694,199.25815,27.321445,67.490265,7.645 1399,233.41818,208.08511,28.720276,66.89682,7.539 1399,-5.3452206,-16.408346,18.049767,43.626026,7.333 1399,-10.331694,-32.00733,29.60935,75.606346,6.744 1399,250.72473,210.6527,17.72638,36.834885,6.555 1399,-8.657402,464.16745,37.455185,93.57132,6.298 1399,65.64698,206.77458,20.223236,55.649063,6.243 1399,258.55783,211.16972,16.495178,33.89331,6.23 1399,253.7457,223.65216,23.576141,48.9545,6.211 1399,623.5363,-34.36251,26.176819,74.686775,6.114 1399,-6.0104012,489.2364,18.26878,41.60144,6.017 1399,617.0112,209.5861,19.714111,52.389175,5.93 1399,110.98667,201.41312,28.279167,64.40878,5.909 1399,276.79773,198.37152,15.795288,32.62346,5.813 1399,627.2181,-18.908838,17.203857,46.65913,5.678 1399,69.513466,196.877,34.86135,83.544876,5.637 1399,477.61566,225.12555,13.413757,29.014206,5.592 1399,458.13846,239.45712,16.816498,33.35431,5.5 1399,487.4078,225.17206,35.91031,62.798035,5.393 1399,-73.45629,264.19293,202.09674,465.18158,5.369 1399,611.10254,217.70328,18.796265,48.456085,5.319 1399,2.2557092,-15.0523815,17.739847,43.23504,5.271 1399,273.5742,213.10551,20.094147,45.204697,5.25 1399,485.65002,226.95444,14.872894,30.620056,5.248 1399,-0.3327155,-16.87703,26.952295,66.61676,5.246 1399,603.72906,-56.114887,52.89569,134.28545,5.229 1399,-17.364836,-63.555515,55.655487,144.6402,5.148 1399,309.0819,226.1756,29.386414,68.75757,5.143 1399,-14.320154,189.12039,47.8328,128.96115,5.124 1399,582.99817,412.2167,71.6355,176.05344,5.112 1399,593.9826,220.02667,18.867188,44.27948,5.112 1399,8.759622,198.984,21.107647,48.16362,5.083 1399,536.3004,309.67908,144.41583,341.39392,5.082 1399,-10.03557,234.78558,27.897663,62.990356,5.068 1399,612.7073,454.8525,39.87317,107.57645,5.038 1399,562.6803,222.9498,39.513428,75.53659,5.029 1399,134.39844,210.05339,23.094406,45.962296,4.95 1399,626.45746,488.53494,20.800903,45.13437,4.944 1400,554.0546,218.81403,21.725891,55.123566,77.94 1400,434.3897,224.54306,22.711975,40.311462,72.899 1400,149.18887,205.95242,28.490143,61.5195,13.979 1400,183.38116,211.42987,28.664642,70.802765,8.4 1400,519.5753,218.7374,21.896606,41.569,8.108 1400,482.62082,220.64319,22.015533,36.762665,7.909 1400,-5.139756,-16.180367,17.159504,42.39527,7.823 1400,622.2615,223.62238,26.454102,74.88495,7.649 1400,-2.949481,210.07361,28.071693,70.19934,7.591 1400,155.43631,207.71579,17.816895,31.563538,7.426 1400,-10.399972,-32.170826,29.365093,74.712494,7.303 1400,159.58322,208.57721,22.735962,49.161896,7.131 1400,627.01056,-20.54412,17.70868,49.496857,7.07 1400,134.40797,204.84512,29.991806,61.371826,6.972 1400,164.33331,205.81346,30.031326,63.062973,6.793 1400,393.5733,236.2262,18.49472,34.66443,6.333 1400,622.0379,-34.80643,27.552246,77.13853,6.311 1400,-8.617024,464.45642,37.504738,92.967224,5.949 1400,496.48456,222.25188,20.100647,35.073685,5.902 1400,420.34888,232.91525,16.72345,30.746246,5.893 1400,-6.1336946,489.7026,18.24168,41.717987,5.858 1400,413.44647,225.87236,14.096985,28.684006,5.711 1400,397.7275,225.46114,14.458313,32.35698,5.597 1400,194.2232,213.21925,30.09816,63.534683,5.382 1400,192.9318,208.90695,22.343384,43.434677,5.316 1400,115.06392,207.64981,31.994522,60.59366,5.239 1400,603.2474,-56.964157,52.75067,138.87202,5.213 1400,538.35547,219.481,21.083252,46.470535,5.202 1400,-72.98058,264.5382,201.45331,464.339,5.178 1400,626.4973,488.56363,20.859741,45.64023,5.133 1400,309.3217,213.72089,29.49289,53.163696,5.129 1400,583.4665,412.11902,71.25879,176.14832,5.07 1400,619.08594,224.80347,20.306946,54.886993,4.944 1400,-4.6930413,2.2640133,17.771914,42.53865,4.911 1400,612.81354,454.6716,39.50885,107.99802,4.908 1400,177.61615,210.74155,21.87143,48.853912,4.908 1400,-17.341688,-63.46444,55.70851,143.93283,4.891 1400,536.1637,310.24835,144.63782,341.8105,4.813 1400,210.14246,206.30673,19.116867,33.277084,4.785 1400,404.78003,223.20921,14.147339,31.694489,4.752 1400,218.04596,213.89798,19.299164,35.15918,4.746 1400,515.6253,229.04887,18.915222,33.70085,4.737 1400,169.01147,209.31732,20.834412,33.815445,4.717 1400,-21.726702,401.50095,79.32495,175.55594,4.707 1400,524.65295,212.75148,26.63263,51.943527,4.705 1400,144.80856,221.18097,24.156738,50.273926,4.686 1400,489.89948,232.88388,19.607513,30.039215,4.67 1400,127.490234,215.51686,25.00322,48.651077,4.669 1400,140.35799,23.218105,29.719894,73.47592,4.659 1400,-5.9320617,216.7598,19.698435,44.17813,4.651 1400,129.85521,193.99382,45.643875,102.28816,4.633 1401,415.84,224.14182,22.496155,45.701416,94.402 1401,591.7376,219.28387,23.393982,61.4682,78.527 1401,92.74761,211.84515,29.090805,71.779724,51.192 1401,505.90988,215.63254,22.603302,46.450317,17.387 1401,405.55936,226.6148,17.297668,32.10977,8.808 1401,513.1547,208.86522,30.023682,55.83116,8.31 1401,462.92493,223.84901,26.516449,41.78105,8.278 1401,79.71115,210.13881,30.588226,72.3932,7.594 1401,475.8023,214.50716,31.541718,48.3358,7.004 1401,-8.955191,462.833,37.519432,95.350525,6.907 1401,-5.56579,-17.78637,17.996834,41.996807,6.896 1401,396.83032,227.79222,15.871735,27.838562,6.822 1401,432.82367,225.68109,22.673706,38.74716,6.571 1401,441.7241,227.93576,22.19989,34.99057,6.376 1401,407.1141,213.88802,36.711212,65.68135,6.326 1401,596.8828,197.56783,32.550964,88.20146,6.251 1401,-6.0672045,490.40433,17.814697,41.252167,6.072 1401,489.4886,220.04953,22.190826,42.981445,6.049 1401,37.985706,198.0929,38.15434,81.78601,6.003 1401,614.7703,189.59048,26.485046,78.03116,5.853 1401,-11.253771,-31.760387,29.781754,69.19243,5.82 1401,613.321,454.90704,38.63855,107.105896,5.804 1401,521.1436,230.24539,21.037842,40.63022,5.793 1401,513.61487,228.70877,20.52887,39.650085,5.709 1401,348.123,221.86072,15.876648,27.538864,5.649 1401,-12.110374,477.47836,29.214657,63.37558,5.619 1401,588.5424,212.89203,19.678284,47.92575,5.603 1401,523.06494,211.93066,30.277283,63.008423,5.598 1401,498.6803,223.68535,21.529175,41.75786,5.591 1401,582.8173,191.23059,35.947266,85.00964,5.55 1401,93.36676,13.207577,29.616829,67.20264,5.505 1401,53.47929,201.5441,35.476475,74.85794,5.476 1401,-72.76322,263.98593,201.21011,465.55533,5.337 1401,380.61252,222.46362,14.510162,28.237,5.239 1401,583.4995,412.76007,71.22943,175.33398,5.13 1401,-17.511642,-62.782124,56.265553,141.71127,5.107 1401,374.0244,222.20981,14.446075,28.079224,5.08 1401,3.0428166,-15.913326,16.854519,38.11413,5.036 1401,102.06308,211.57703,22.576065,48.5708,5.014 1402,25.966454,216.42015,33.330517,87.673904,90.476 1402,410.69766,223.3881,26.89505,54.93892,76.344 1402,513.09894,219.97668,22.673584,49.35135,39.008 1402,67.79557,221.95251,28.468742,58.183838,33.071 1402,621.98004,225.63828,17.678772,55.087524,18.079 1402,403.60846,229.38716,23.598694,44.224228,14.684 1402,38.608532,217.17125,33.757877,75.639786,11.604 1402,-7.8054314,213.59454,35.39331,95.36456,8.439 1402,56.526596,216.34497,33.07287,78.3569,8.419 1402,538.1227,206.65146,29.928833,59.26294,8.124 1402,626.3693,217.66437,17.553345,51.477844,7.997 1402,395.0835,230.27965,22.276398,38.330246,7.828 1402,87.15354,217.38145,24.024216,52.18898,7.145 1402,-5.1227436,-17.780886,17.515701,44.177845,6.927 1402,11.896926,219.00009,36.226395,93.470184,6.707 1402,537.7201,225.3541,21.0979,46.970123,6.662 1402,-10.677737,-32.25665,29.328377,71.41679,6.555 1402,4.3531694,208.50783,30.00158,72.23863,6.358 1402,626.08716,238.81216,18.591553,51.977264,6.181 1402,524.91327,208.22995,29.389465,55.571198,6.137 1402,626.52625,487.39435,21.112183,46.100464,6.103 1402,-6.0628486,488.64297,18.416391,43.136017,6.096 1402,-8.921199,464.1424,37.75327,93.30243,5.79 1402,613.4282,453.53592,39.133667,106.98068,5.634 1402,-17.332996,-63.670273,56.36553,142.80066,5.63 1402,614.30615,196.2216,29.511719,100.04439,5.585 1402,361.8565,243.1414,34.14203,56.99083,5.49 1402,603.0614,-55.97603,52.453003,138.22101,5.461 1402,-74.32015,261.9898,203.88599,466.201,5.42 1403,443.46646,218.48898,28.255035,63.068756,96.931 1403,37.546627,223.51448,31.133396,78.04503,36.259 1403,560.22577,221.385,22.573975,47.993942,12.214 1403,26.55249,224.3302,28.384407,71.22119,10.329 1403,-5.3206134,-16.978117,17.787243,42.706425,8.921 1403,434.174,225.61229,24.25061,50.007767,8.098 1403,122.3812,212.6148,21.125908,44.62326,8.062 1403,586.9572,218.0348,19.88031,42.65367,7.676 1403,67.16928,217.7008,33.812943,68.18405,7.259 1403,462.71832,221.03589,23.629883,41.875,7.138 1403,593.7435,219.15385,19.89746,48.426346,7.071 1403,-10.604086,-31.83264,29.618454,71.49511,6.497 1403,591.86884,199.86008,27.999023,60.825714,6.365 1403,123.98517,209.0752,29.743484,65.10559,6.295 1403,448.63602,213.62498,22.405304,35.045456,6.185 1403,622.06134,478.00006,28.908264,66.38605,6.118 1403,453.33615,217.04922,25.279297,42.194214,6.091 1403,564.17053,207.7929,28.468018,58.75975,6.076 1403,542.674,206.30957,28.709717,61.007904,6.031 1403,627.4392,-18.9934,17.168701,49.735073,5.909 1403,-17.599686,-63.9051,56.77603,141.26166,5.869 1403,48.21145,221.27141,31.633873,71.966995,5.818 1403,575.26666,205.86708,26.821167,58.53932,5.783 1403,404.98965,217.34604,36.02939,68.095795,5.741 1403,618.9468,234.35931,20.071228,58.2417,5.598 1403,471.62875,218.37605,21.90335,41.587784,5.558 1403,-6.4247427,489.22955,18.921795,42.802185,5.544 1403,-8.870858,464.0374,37.71056,93.418396,5.534 1403,-6.785451,219.3595,35.45789,92.89801,5.513 1403,267.60138,215.93976,18.9234,29.262375,5.507 1403,426.11813,220.91779,21.997833,44.64789,5.478 1403,379.8048,215.42923,15.910248,30.668152,5.406 1403,114.169754,212.95882,21.620132,43.61064,5.36 1403,622.64813,-34.45461,27.004211,78.68893,5.301 1403,2.3962207,-15.565142,17.461699,41.33053,5.29 1403,274.5227,215.97768,19.812592,32.09755,5.287 1403,81.147224,215.23282,23.030083,41.91922,5.269 1403,-73.208305,263.90894,202.45471,464.9145,5.265 1403,380.81924,15.606419,28.23471,86.56923,5.163 1403,538.2167,231.1866,20.190002,38.923874,5.137 1403,108.123566,211.18819,32.234528,65.17952,5.117 1403,385.48425,215.96352,18.46457,36.196213,5.113 1403,91.21186,212.10956,18.46244,29.59465,5.087 1403,583.6295,411.4718,71.08972,176.68579,5.071 1403,129.27126,208.34859,20.919205,40.042267,4.973 1403,525.3628,215.79944,28.23523,57.70688,4.93 1403,82.58278,213.07495,31.475677,62.293,4.911 1404,476.90717,216.26447,36.001038,80.74567,93.496 1404,444.90848,210.78755,17.85431,43.073425,30.718 1404,615.4129,193.04082,23.790283,82.247055,12.667 1404,437.959,210.9771,17.177643,42.55162,9.315 1404,-5.657674,-17.539454,17.785498,41.85543,7.277 1404,464.32217,212.04295,53.07895,153.91316,7.017 1404,547.415,232.24013,31.29242,59.01924,6.969 1404,627.1995,488.603,19.722717,44.256683,6.562 1404,-11.081211,-31.392208,29.529375,70.830666,6.361 1404,491.42493,221.11276,26.258606,55.64966,6.303 1404,516.5003,226.74463,40.74933,101.25427,6.261 1404,-4.7788715,187.74355,17.612724,42.432358,6.106 1404,345.4348,211.96278,22.717987,39.329147,5.916 1404,429.3179,208.92413,15.954498,38.110138,5.677 1404,-9.160477,464.41888,37.88958,92.91974,5.629 1404,613.3416,454.59393,38.46289,106.96918,5.612 1404,-6.4440928,489.0782,18.893406,43.176575,5.6 1404,611.3898,-50.090347,41.13739,105.91321,5.583 1404,495.25986,211.55333,21.614288,37.08377,5.548 1404,437.64157,212.15361,36.368134,73.95149,5.471 1404,503.66043,216.24632,22.490631,39.66147,5.458 1404,472.10425,206.46118,28.326996,58.46994,5.312 1404,-17.649357,-64.23173,56.122078,145.73526,5.236 1404,546.218,229.45062,21.904663,42.514404,5.121 1404,535.9574,310.26276,144.71179,340.90045,5.114 1404,354.01157,207.30711,19.601135,32.067,5.112 1404,583.5758,410.40356,71.12024,178.07129,5.106 1404,-73.68269,265.4563,201.79823,462.2931,5.082 1404,448.70288,227.53552,22.35205,44.3555,5.067 1404,4.986069,198.3944,35.845734,92.31041,5.02 1404,431.71863,213.18167,49.596985,118.79437,5.001 1404,3.060758,-16.126343,17.005548,38.476322,4.959 1404,-15.116238,91.01007,49.41254,139.76999,4.943 1404,234.20132,214.98001,18.297897,27.853653,4.921 1404,267.88565,216.21037,16.918976,27.213043,4.9 1404,-4.5861607,105.696556,17.553205,45.951378,4.861 1404,475.16278,206.62859,19.407776,34.457504,4.846 1404,-40.70438,363.99823,111.45616,277.38336,4.833 1404,626.9165,-19.720673,17.674866,50.622055,4.832 1404,495.21716,230.85492,236.37048,512.21515,4.815 1404,562.31006,215.08981,19.261353,41.602875,4.763 1404,622.3054,210.60155,24.861572,74.82048,4.695 1404,428.74536,215.24574,28.757385,53.793747,4.674 1404,613.9997,233.35025,36.30597,110.58679,4.649 1404,563.08966,227.98383,39.26886,88.91174,4.646 1404,457.77756,206.08412,17.16745,35.274597,4.646 1404,-10.058929,179.0033,28.461668,62.368378,4.637 1404,452.30106,213.05768,29.020813,59.94983,4.597 1404,598.5691,200.22923,31.282104,72.61195,4.588 1404,362.5899,203.87462,17.074707,30.014801,4.584 1404,619.1405,491.02838,19.373047,41.470215,4.574 1404,58.99149,205.54883,21.406757,45.025757,4.521 1405,557.2665,223.87984,45.290405,113.19292,97.702 1405,495.68964,218.63773,20.467224,48.748688,72.445 1405,459.39313,219.32823,17.713043,40.93727,41.245 1405,452.3756,220.87593,17.931824,37.78383,16.41 1405,425.25955,214.30234,18.19806,38.881775,15.927 1405,445.34656,221.11441,17.349731,35.106934,10.791 1405,474.90582,213.56987,16.459839,42.21463,10.382 1405,574.5797,229.02116,32.728516,83.00337,10.108 1405,404.6503,218.43217,18.852448,37.425827,8.847 1405,281.21967,215.93585,21.555145,35.019714,8.204 1405,-5.174871,-16.286633,17.075077,40.54875,7.992 1405,465.55902,213.10403,18.267456,44.802887,7.968 1405,499.2183,205.0082,27.60196,61.2614,7.885 1405,483.8597,214.01605,17.039795,41.597,7.584 1405,-2.895352,190.98611,14.841486,37.209198,6.697 1405,595.4511,233.00848,38.912964,110.39966,6.274 1405,411.04993,214.67252,19.003174,40.36609,6.26 1405,613.35156,454.2519,39.230774,106.98096,6.223 1405,473.84384,232.93567,22.383575,40.481354,6.155 1405,545.72516,225.84497,22.335999,44.699646,6.014 1405,-11.505192,-31.529768,29.893064,69.49664,5.99 1405,626.50665,487.24377,21.1568,45.0235,5.846 1405,-12.666576,477.84918,31.090994,62.697937,5.777 1405,548.4236,217.66534,30.019348,62.052826,5.731 1405,3.8625777,196.19106,14.443613,33.182877,5.702 1405,419.23172,225.51996,18.59964,32.632355,5.616 1405,582.2688,227.59753,23.211304,47.81378,5.592 1405,3.6355348,-14.018756,15.878731,36.49839,5.496 1405,44.479134,208.28024,17.039173,35.342804,5.489 1405,623.01086,-33.625744,26.532349,76.12038,5.41 1405,-6.7181263,489.47638,19.446938,42.516907,5.388 1405,-5.4314656,215.30894,17.754206,40.688004,5.327 1405,583.57764,413.74814,70.85779,174.34793,5.257 1405,536.1256,309.37457,144.72028,341.50787,5.221 1405,627.592,-18.485683,16.894653,48.611145,5.22 1405,491.24243,211.48996,19.150757,40.513428,5.156 1405,-15.084591,124.493744,49.599457,137.17346,5.106 1405,603.233,-56.38285,52.676147,136.99506,5.09 1405,-3.9472756,175.19565,15.6503315,37.57318,5.075 1405,-73.31822,265.4678,201.38266,462.88864,5.071 1405,250.45114,246.72841,33.779266,58.95735,5.071 1405,1.4813149,219.96132,21.276981,44.358414,5.051 1405,551.8462,228.63676,33.277283,87.88661,5.05 1405,-17.49023,-64.46187,56.054165,146.31195,5.01 1405,565.0082,221.81825,31.58435,60.74028,5.004 1406,580.1362,219.9629,28.490845,63.728256,94.423 1406,521.44885,214.5892,21.478394,45.676727,80.723 1406,491.38168,219.48688,19.814636,46.610474,77.83 1406,459.0312,215.56921,18.622192,46.034058,49.384 1406,507.85822,214.38539,19.274536,46.007492,49.332 1406,435.48273,220.94469,15.584503,35.325577,13.522 1406,537.48193,217.71289,19.239624,39.248383,11.338 1406,514.13824,219.48619,21.273682,45.15062,10.431 1406,452.16174,222.44211,19.178833,39.914703,9.575 1406,444.06885,221.07033,16.205261,37.83751,9.326 1406,429.84668,225.39136,14.879608,30.86267,9.319 1406,-5.530863,-17.571169,17.396517,42.478397,8.65 1406,613.4179,224.76631,34.769897,94.61961,6.615 1406,-11.14111,-31.736565,29.574902,71.18367,6.549 1406,38.39973,201.44917,28.127377,63.141434,6.524 1406,456.30365,191.4777,26.713074,68.038376,6.415 1406,421.76517,232.80725,15.424835,28.907928,6.291 1406,622.96094,-33.73433,26.616455,75.26726,6.076 1406,473.12897,211.30438,18.341003,45.21524,5.926 1406,546.8372,219.44781,18.144531,37.015656,5.876 1406,557.31665,214.83394,26.589966,52.27498,5.864 1406,554.1918,218.56801,17.667297,38.245865,5.785 1406,-12.67915,477.64972,30.926125,62.93799,5.653 1406,627.203,-20.012762,17.308716,49.635094,5.557 1406,485.88702,231.11171,28.689575,63.53801,5.404 1406,619.54114,225.06197,20.237549,51.65651,5.379 1406,574.3961,222.74947,21.46991,51.90117,5.333 1406,593.57635,213.17679,31.00177,62.27957,5.317 1406,-73.236046,265.37158,202.2139,463.95068,5.31 1406,536.33276,308.90912,144.75989,341.00018,5.308 1406,506.93182,58.48768,17.432617,39.44789,5.268 1406,430.37595,202.2895,24.200165,58.65245,5.265 1406,-6.5713525,489.7138,19.165941,42.677856,5.247 1406,582.9874,412.17255,71.71448,176.40729,5.112 1406,612.844,454.55115,39.916748,107.53296,5.095 1406,-4.8379416,91.77815,16.695871,41.687286,5.078 1406,-3.831805,188.83325,15.819564,37.48065,5.012 1407,548.206,214.9309,24.966858,63.556564,86.631 1407,603.247,214.70914,23.39508,61.32718,86.114 1407,576.6036,213.60905,21.632385,60.97612,49.568 1407,585.43536,220.97816,18.742554,51.957504,24.496 1407,527.2169,211.09018,21.48645,52.368378,24.489 1407,510.04303,205.06395,26.399475,58.291702,17.931 1407,593.4373,211.83234,24.351624,63.15692,15.122 1407,571.60345,226.96844,19.881104,46.888,14.383 1407,611.8554,208.4265,24.090515,72.48323,12.981 1407,107.20071,199.82037,28.461494,71.69989,9.107 1407,1.8535751,203.79132,15.722202,44.01245,7.654 1407,621.91174,207.61414,25.958069,73.24661,7.54 1407,558.42566,213.5503,25.363281,63.485596,7.443 1407,505.751,218.94452,20.87259,46.27118,7.248 1407,33.613247,199.79787,24.108887,47.88217,7.244 1407,-5.251502,-17.397676,16.947636,42.91296,7.021 1407,1.333586,204.73737,23.435759,66.111725,6.732 1407,-11.392569,-32.500797,29.706694,74.19123,6.501 1407,-1.982668,190.0387,14.379335,39.120255,6.384 1407,36.03939,206.21375,29.606255,67.25452,6.146 1407,622.98035,-33.181595,26.238403,74.727684,6.081 1407,627.1674,-18.313457,17.048767,47.63685,6.076 1407,-3.7795782,211.7557,16.881708,47.865356,5.906 1407,313.9259,210.01643,21.579498,47.082687,5.889 1407,305.53784,210.055,21.183716,47.24463,5.815 1407,-18.0027,-64.171585,56.12298,147.5441,5.804 1407,157.9707,201.7179,29.259857,55.265564,5.751 1407,603.182,-55.576096,52.75238,136.60161,5.69 1407,23.107628,205.62279,28.199768,60.19545,5.625 1407,499.68335,226.31892,18.656738,39.351395,5.621 1407,-12.610688,477.67874,30.968636,63.0632,5.544 1407,-6.484508,489.57297,19.167738,42.776398,5.529 1408,597.2346,219.42006,28.878601,79.39415,74.027 1408,606.74365,215.12784,22.401428,58.625458,8.6 1408,-5.4940677,-16.265121,17.25515,42.02031,7.731 1408,433.7817,175.83002,20.299408,45.98085,7.258 1408,53.63649,195.0435,36.89627,84.22786,6.907 1408,615.1269,228.92473,23.383362,56.626816,6.79 1408,46.165714,200.86842,31.26778,67.07295,6.681 1408,584.6233,223.30177,29.40686,69.52754,6.632 1408,591.4313,213.36514,43.71118,122.49844,6.594 1408,-11.189625,-31.237484,30.061764,72.27744,6.51 1408,-12.387471,479.9061,30.067951,61.63266,6.409 1408,611.28284,-47.68879,41.176636,100.94003,5.952 1408,43.91054,207.77333,22.172108,46.964584,5.927 1408,0.63266516,197.74582,26.051197,76.43796,5.925 1408,57.08423,203.31282,22.901695,45.03798,5.888 1408,627.3994,-15.499018,16.661743,43.261074,5.828 1408,595.281,218.29526,20.302673,54.439575,5.813 1408,-8.805209,463.70685,37.853718,93.083984,5.783 1408,310.32587,205.61467,28.821625,66.0594,5.68 1408,121.819,207.65671,22.416824,48.989838,5.61 1408,-5.052354,199.82164,18.717716,45.99376,5.519 1408,19.957191,192.65704,37.414223,86.7923,5.509 1408,176.28702,192.11356,22.223145,47.539185,5.473 1408,-6.588873,491.2051,19.220451,41.549713,5.47 1408,306.74908,207.5312,20.874146,46.586273,5.41 1408,334.53735,210.55267,28.93988,63.453735,5.404 1408,621.9617,230.39128,27.84851,71.964676,5.387 1408,626.5423,488.92593,20.822449,44.407562,5.383 1408,-4.4786596,92.91782,15.917901,38.74447,5.344 1408,612.8671,455.20724,39.792114,107.13565,5.297 1408,610.4442,230.60873,36.278442,106.75961,5.193 1408,-17.247953,-63.882927,55.668053,145.2529,5.153 1408,395.3532,234.76665,18.8255,34.123795,5.084 1408,6.028621,194.16995,35.79999,98.95993,5.074 1408,-72.84915,265.01868,200.84882,463.03003,5.073 1408,-9.888182,204.887,28.681105,76.19058,4.972 1408,582.7018,412.38397,72.03662,176.07489,4.952 1408,575.3828,224.29178,27.188538,57.227203,4.951 1408,3.0202043,97.217865,16.830185,34.411896,4.928 1408,284.7507,208.00285,29.163574,64.42299,4.901 1408,-5.1691475,23.520847,17.291174,42.259167,4.82 1408,-21.291029,403.30463,78.55543,174.32385,4.799 1408,536.47253,310.2287,143.57947,341.2508,4.787 1408,-4.246071,3.9724255,16.266611,39.182526,4.729 1408,-40.451057,366.24213,110.77158,276.65802,4.724 1408,436.12515,173.4576,28.115265,68.6243,4.706 1408,50.714462,202.82416,21.067856,37.45482,4.676 1408,585.76807,-101.09926,75.341,234.38753,4.647 1408,10.000452,97.85507,18.449541,34.002884,4.523 1408,-8.706807,228.81377,38.218945,100.34987,4.499 1408,59.94037,189.03876,51.631744,104.68341,4.498 1409,48.1896,196.562,24.726673,52.107254,15.316 1409,-10.3720045,-32.40778,29.193108,73.50502,8.947 1409,-5.554634,-17.432749,17.891731,44.75864,8.873 1409,29.283356,194.42068,30.199486,67.966064,8.837 1409,37.7928,188.55879,37.48181,79.84889,8.407 1409,312.92493,206.48746,21.593536,47.41913,8.016 1409,112.62294,206.19617,21.86023,43.768417,7.215 1409,305.77164,209.87622,21.216248,47.73938,6.572 1409,-5.5438623,-0.090055466,19.035955,44.877716,6.196 1409,60.984253,199.44925,27.821404,58.071808,6.151 1409,490.71716,224.61264,19.55017,53.101288,6.063 1409,1.6211188,187.48764,31.626814,71.45096,6.053 1409,627.58673,-17.746424,17.15564,45.12527,6.034 1409,610.9834,-47.645283,41.297424,99.85509,5.949 1409,157.24263,153.09784,27.890274,69.683945,5.858 1409,323.98193,206.59982,30.221863,57.761566,5.81 1409,453.62064,232.69933,30.324554,77.73564,5.636 1409,68.2458,187.07373,38.62265,81.80603,5.6 1409,-6.567589,489.1489,19.320236,43.193512,5.597 1409,-12.829486,476.76688,31.294788,63.46884,5.586 1409,0.15361905,191.06575,21.907719,51.237686,5.581 1409,526.3538,158.9054,11.822815,26.4366,5.556 1409,613.108,453.74423,39.325134,108.77963,5.518 1409,480.11093,221.00131,25.289886,60.698975,5.302 1409,473.8409,229.51727,21.059784,50.605713,5.301 1409,16.123955,183.9745,48.221786,103.357895,5.296 1409,-17.903042,-60.392887,56.5975,143.36139,5.178 1409,41.698303,205.63074,21.606506,52.621613,5.171 1409,-73.05099,265.07965,201.16171,462.91132,5.129 1409,0.54676175,-7.4538097,25.994509,66.60722,5.092 1409,138.62383,156.17511,20.555038,40.336426,5.051 1409,2.667222,-3.254259,19.22499,39.820663,4.994 1409,3.7067318,81.53906,31.959642,74.81267,4.906 1409,386.9543,203.04861,18.205566,38.469406,4.891 1409,586.00885,-100.44947,75.53656,233.32706,4.887 1409,-9.610048,203.40381,28.884249,65.29071,4.866 1409,583.30695,410.76886,71.64923,177.9403,4.855 1409,244.31548,245.30739,29.036606,66.31273,4.839 1409,299.1208,209.58652,19.384369,43.98532,4.835 1409,518.0732,158.82278,13.551636,29.707916,4.814 1409,141.3004,171.23444,33.62262,69.91876,4.759 1409,626.56085,488.32028,20.741333,44.600494,4.752 1409,256.3689,209.28787,21.980072,44.90959,4.745 1409,100.47974,198.79205,31.068558,60.20352,4.741 1409,272.95078,220.25435,20.851044,40.38875,4.728 1409,-21.518597,403.0209,78.98338,174.35928,4.72 1409,394.4623,204.30873,18.6409,37.209854,4.717 1409,-0.031192303,154.17923,31.562027,82.640564,4.71 1409,11.522707,201.61008,31.888742,64.996216,4.667 1409,-40.782986,365.70786,111.29332,276.5579,4.665 1409,105.71685,194.14366,21.05236,41.23909,4.66 1409,57.12583,194.58972,21.395393,44.010864,4.629 1409,536.708,311.54413,142.66248,341.0622,4.552 1409,534.3061,158.71909,11.593811,25.612549,4.433 1409,598.51575,-25.498169,39.296387,93.48916,4.431 1409,144.64565,157.58792,22.9935,50.545715,4.391 1409,281.78113,220.85123,20.250305,39.300964,4.391 1409,84.094406,192.13928,36.735474,83.414185,4.379 1410,563.20685,203.04614,39.259705,113.68854,45.947 1410,526.68713,207.14833,26.925293,62.752914,25.481 1410,519.35706,215.87094,24.027405,51.654175,24.772 1410,581.69836,205.33557,37.327026,110.23468,23.034 1410,532.1095,203.74199,38.465027,92.061905,22.611 1410,597.165,199.15692,31.959045,106.04492,16.057 1410,550.1377,197.86234,38.200073,103.09909,15.098 1410,599.90906,205.2281,22.576172,61.433884,10.249 1410,550.4932,199.72952,27.219727,61.72812,9.388 1410,577.45087,212.37778,22.523438,68.82156,9.134 1410,508.59338,218.92523,30.548584,69.38019,8.837 1410,-5.291134,-17.323566,17.671482,43.29348,8.323 1410,460.9311,212.12585,28.290894,57.888123,8.02 1410,543.9092,209.28358,23.98944,60.908066,7.723 1410,536.4143,216.12044,23.803345,61.089096,7.669 1410,613.00183,452.08597,39.886047,110.875336,7.631 1410,516.5659,205.06006,41.043274,106.961914,7.585 1410,560.7495,209.96127,22.894287,60.298676,7.382 1410,-10.595085,-31.071692,29.193583,71.38827,7.195 1410,566.6537,200.33798,26.606812,61.890533,6.952 1410,527.2622,196.96692,54.023315,149.41718,6.779 1410,485.1495,209.73755,38.355804,84.6214,6.455 1410,627.34625,-17.930088,17.039795,45.894165,6.071 1410,612.48267,193.43103,26.515137,76.05621,5.993 1410,-8.580458,465.25568,37.513123,91.57721,5.932 1410,-17.768969,-63.056313,56.35636,141.43735,5.922 1410,626.92737,487.93073,20.999146,44.897644,5.751 1410,149.07259,198.2471,31.511536,61.34915,5.741 1410,3.927213,209.47188,30.306269,76.44627,5.676 1410,-6.307085,489.77753,18.760597,42.88141,5.647 1411,584.29364,204.23651,33.606873,103.35034,82.451 1411,569.463,207.23657,34.59192,104.68237,71.887 1411,609.3105,198.98146,24.949097,79.40013,46.215 1411,519.08234,203.92188,35.44568,115.732605,33.587 1411,533.1826,202.0075,34.986877,118.505066,29.976 1411,552.31854,203.71814,34.782654,114.727356,26.667 1411,505.62527,204.13351,32.542755,107.18146,26.553 1411,519.44324,212.85461,24.626099,71.308716,21.879 1411,498.00726,217.88782,21.800415,55.02841,18.663 1411,504.03867,216.62749,25.11728,65.65532,16.922 1411,514.35297,215.10634,20.174683,57.38713,16.907 1411,542.2732,211.58176,29.608093,73.2001,15.215 1411,568.4094,222.44194,24.240417,67.74733,14.589 1411,597.39465,204.79308,29.338379,87.96355,14.065 1411,528.5277,215.46698,20.921875,55.49243,11.591 1411,237.28464,207.00421,27.926697,60.15454,9.737 1411,489.78223,212.13792,33.426636,85.48134,9.724 1411,537.4966,215.48535,21.225159,56.222626,8.666 1411,580.73706,194.31897,29.146118,78.48828,8.536 1411,233.29523,210.86612,22.146042,42.413284,8.454 1411,226.20486,210.12541,21.844727,49.719406,7.837 1411,613.0822,453.08768,39.443115,107.71622,7.654 1411,452.83972,220.00116,30.558868,67.93146,7.158 1411,-5.9311333,-18.01661,17.95731,44.699818,6.773 1411,611.5762,227.60854,36.782898,110.6302,6.767 1412,535.38947,219.34335,33.415466,88.07233,75.56 1412,580.1215,214.24304,30.029175,74.1149,64.853 1412,597.5088,211.60077,27.26886,73.19864,25.259 1412,548.277,224.5755,25.298828,64.6568,16.603 1412,528.3574,236.41757,27.704468,86.27954,11.153 1412,591.8043,220.4228,22.79541,60.814316,10.337 1412,380.3991,221.24103,30.721527,69.80359,9.541 1412,609.488,220.01753,21.46698,58.48021,9.428 1412,617.72095,216.81786,20.18872,59.911118,8.919 1412,294.82272,219.67766,22.28302,49.22557,8.432 1412,337.762,222.5289,30.557343,69.50116,8.258 1412,612.61285,208.23933,31.826721,100.215805,8.072 1412,393.11896,213.35005,33.723724,63.66301,7.305 1412,264.6103,223.89415,21.848267,41.415604,7.18 1412,-6.0362296,487.96133,18.404144,43.767365,7.146 1412,-5.4432745,-17.30481,17.609303,42.813137,7.038 1412,226.11014,211.13303,23.220642,48.97409,6.96 1412,627.00726,487.01984,20.415833,45.44763,6.945 1412,549.1063,242.4299,30.072083,83.98804,6.488 1412,538.08844,253.84508,21.031067,64.67549,6.385 1412,404.05957,206.51347,37.113678,95.77577,6.342 1412,574.7257,210.8882,47.299927,124.91728,6.206 1412,-10.927355,-31.655968,29.386797,71.00261,6.14 1412,0.65039635,208.5991,23.135626,56.05815,6.034 1412,364.41766,272.10226,31.552673,80.83429,5.875 1412,389.86813,218.84271,24.290466,42.956543,5.834 1412,623.3973,-33.36782,25.98346,74.17924,5.781 1412,508.83813,253.78096,27.687622,77.60997,5.751 1412,627.47314,-17.625803,16.732544,45.933067,5.527 1412,526.1726,221.04224,51.90222,133.51172,5.521 1413,592.20197,212.40753,39.18451,139.88312,78.599 1413,324.05347,212.25888,27.737366,56.64868,14.168 1413,569.9548,213.20802,38.585815,110.46965,11.222 1413,601.7721,225.76447,28.89264,82.72015,11.132 1413,202.62408,214.87088,19.000229,36.46176,9.562 1413,-2.5361252,200.36823,26.394264,70.76511,9.503 1413,616.7893,231.87549,21.706238,61.714355,9.022 1413,607.53235,224.49176,35.594116,129.28851,8.642 1413,430.1496,215.8728,30.125732,67.34384,8.223 1413,-11.022577,-31.479164,29.648863,72.166245,7.842 1413,-5.6372623,-17.992285,18.014093,44.23534,7.835 1413,465.9438,212.54897,23.672668,45.6313,7.703 1413,596.95215,262.8355,37.565613,121.42981,7.143 1413,386.21484,224.29742,32.91327,75.063965,6.973 1413,441.68903,214.5209,33.50226,59.49579,6.884 1413,550.84,205.58708,36.3631,97.14485,6.822 1413,376.16742,218.43384,22.359344,41.498047,6.81 1413,384.2848,221.73965,22.622131,39.658447,6.7 1413,621.8342,224.28229,26.131958,76.70026,6.152 1413,438.46194,214.85408,22.694733,37.753433,5.982 1413,457.05112,215.72238,23.783173,40.44165,5.836 1413,627.23254,-18.056181,17.340454,47.63273,5.786 1413,-13.056461,478.8726,31.334213,61.717438,5.769 1413,370.4654,212.6547,22.277344,39.053894,5.762 1413,311.87534,210.94835,29.415863,55.434647,5.689 1413,2.4076204,-16.604202,17.602741,41.874043,5.609 1413,41.848434,113.86084,30.3386,83.29294,5.531 1413,622.42993,-34.571453,27.233215,77.75035,5.476 1413,613.0874,454.86966,39.740906,107.1539,5.469 1413,626.5259,488.61063,20.987183,45.170135,5.457 1413,-9.16086,463.6759,37.77761,94.406555,5.452 1413,-5.571615,201.43509,20.580854,47.816025,5.446 1413,450.3455,209.44684,40.65045,86.99414,5.434 1414,361.93292,219.11691,30.444427,60.35382,18.782 1414,498.03217,222.35289,26.741821,70.47731,18.409 1414,621.3213,473.63226,29.339355,69.857605,8.0 1414,484.48938,224.0806,40.152344,107.5719,7.274 1414,-5.567014,-18.32024,17.802969,45.24109,7.016 1414,-10.979333,-32.205177,29.761127,72.90485,6.808 1414,416.92142,215.55795,22.25113,44.14212,6.283 1414,-8.598795,466.4678,37.423534,89.1492,6.184 1414,-6.8598585,489.87146,19.843258,42.959717,6.164 1414,353.3852,219.21484,27.49768,50.043,5.789 1414,-17.03051,-65.22041,55.623497,146.30092,5.736 1414,532.1534,222.04623,39.557983,100.0611,5.728 1414,515.1812,228.43375,40.382507,102.09854,5.713 1414,369.5314,214.95613,19.505463,32.65309,5.685 1414,627.2485,-19.467415,17.868103,47.98263,5.576 1414,495.48337,208.2189,42.18698,108.62128,5.487 1414,290.48856,217.14279,19.805084,41.712555,5.381 1414,544.10223,207.59033,46.690674,120.57037,5.34 1414,441.33258,227.54305,20.387726,35.95375,5.269 1414,24.27663,185.26936,29.243694,70.61804,5.267 1414,571.33624,-4.469631,29.91217,67.90988,5.204 1414,-17.091982,439.4734,55.016495,135.18365,5.202 1414,471.51984,223.37299,37.433167,94.097046,5.14 1414,-72.76525,266.30084,200.72406,462.30273,4.994 1414,50.950413,185.68881,42.29217,75.32529,4.921 1414,536.11334,310.33087,144.6593,341.37128,4.873 1414,377.78406,211.57501,18.342499,33.630173,4.794 1414,341.07938,214.2782,29.85965,55.074738,4.78 1414,517.10956,222.91641,29.14795,66.894226,4.772 1414,583.3652,410.7392,71.46979,177.4685,4.764 1414,563.896,224.23325,41.33539,102.47406,4.727 1414,-40.483887,368.06152,110.87066,274.86902,4.689 1414,451.3316,15.724577,28.631897,61.36061,4.687 1414,13.89661,181.51297,53.47968,107.21298,4.675 1414,33.761223,194.43884,31.059807,67.579956,4.623 1414,436.9728,220.38829,37.947296,78.08974,4.604 1414,602.92535,-55.427513,53.135803,134.86409,4.568 1414,618.061,484.20938,21.782166,47.924164,4.538 1414,473.2024,74.89288,26.170898,75.73834,4.526 1414,420.5854,226.05452,39.565063,84.510086,4.523 1414,453.74283,224.32317,38.825348,89.58507,4.52 1414,580.85535,217.46118,38.730347,93.61743,4.507 1414,622.9773,-34.33911,26.674927,75.48804,4.503 1414,76.216515,202.83159,32.6287,57.924057,4.471 1414,494.961,229.24545,236.18195,512.9148,4.394 1414,3.0775619,-17.426044,16.792269,43.332996,4.382 1414,545.1333,232.77942,23.686218,45.764557,4.342 1414,-3.6508715,93.18938,14.771723,40.62587,4.317 1414,-5.3685117,215.94513,18.23982,46.18756,4.239 1414,-6.1046844,153.95189,18.229874,43.138565,4.219 1414,492.70538,148.43417,28.308044,77.22775,4.191 1414,401.78687,215.82906,21.629303,41.18596,4.186 1414,457.03214,240.25119,21.298187,42.511597,4.166 1414,471.4166,157.712,26.783203,73.938675,4.161 1414,626.6784,476.56122,19.341614,46.740234,4.147 1414,-38.492012,-128.81898,117.51984,286.94528,4.138 1415,550.79504,204.12051,30.892029,79.62549,87.296 1415,366.6644,206.0686,27.759094,58.585724,47.651 1415,351.6252,202.24518,31.099396,57.27948,9.135 1415,557.3019,231.15854,28.295715,87.14984,8.052 1415,-5.0631886,-17.142086,17.04461,43.017635,7.564 1415,0.38990498,178.79367,23.816345,79.05435,6.992 1415,613.7249,451.07983,38.848938,111.45618,6.856 1415,567.2989,202.43285,21.697449,46.036026,6.572 1415,375.2696,201.37802,21.273407,38.130615,6.546 1415,626.90393,487.46518,20.569702,45.038727,6.189 1415,628.25446,224.78116,17.488098,44.858948,6.15 1415,582.09424,223.69495,37.4093,88.04761,6.034 1415,557.9884,195.859,23.5083,47.724396,5.946 1415,17.091541,182.49434,40.43587,79.95091,5.925 1415,341.77118,206.1721,28.064453,54.57686,5.849 1415,-6.4263544,490.08994,18.978294,42.68515,5.827 1415,617.29004,233.80446,19.414246,38.707993,5.708 1415,376.5797,210.42128,31.261505,62.292862,5.695 1415,-8.734139,464.57352,37.57722,92.889984,5.664 1415,464.81207,206.46997,21.421906,47.606354,5.597 1415,-12.416098,479.69788,30.375074,62.100708,5.581 1415,-10.762512,-33.04252,29.23675,73.99961,5.556 1415,518.8297,204.1586,32.718872,82.32727,5.549 1415,515.8619,193.90529,19.606567,55.891037,5.44 1415,603.2383,-53.66373,52.854797,136.40877,5.404 1415,549.06573,182.00276,28.420227,67.25621,5.309 1415,30.103567,206.46039,26.008272,46.290436,5.274 1415,-73.17195,265.00714,200.88077,462.7533,5.129 1415,434.14264,179.85489,30.289062,71.285645,5.077 1415,4.6890917,178.38718,36.7295,89.36453,5.051 1415,618.73987,488.5957,20.41095,43.00885,5.0 1415,-14.556333,172.3435,49.265667,127.641815,4.957 1415,536.04663,308.4536,144.6106,344.6588,4.951 1415,389.33746,216.93324,30.525543,61.598373,4.932 1415,-17.116442,-64.980255,55.588257,147.7015,4.911 1415,609.4058,237.74086,20.022705,34.604477,4.894 1415,-18.084133,436.69504,55.720657,139.44498,4.887 1415,583.3455,411.31146,71.22101,175.8034,4.869 1415,535.663,201.13058,30.16742,74.61966,4.859 1415,542.43695,209.83505,50.54364,126.750244,4.816 1415,622.32355,-34.640255,27.469604,74.895775,4.775 1415,494.5573,229.67935,236.62909,512.9949,4.773 1415,569.79285,223.74579,32.41394,83.5119,4.727 1415,-8.271347,164.71577,28.706272,73.673386,4.712 1416,370.76782,226.80124,32.47534,61.510864,33.967 1416,494.33502,231.24979,29.050476,58.04181,14.202 1416,216.71266,217.02696,19.878708,43.02742,10.681 1416,-5.208623,-18.728825,17.46149,44.484756,8.085 1416,-0.91449857,145.69981,27.194613,79.89949,7.637 1416,411.8385,202.95586,16.454285,35.596786,7.503 1416,200.67035,222.65483,23.140442,48.147964,7.317 1416,505.43927,235.27754,30.928162,56.578262,6.926 1416,-10.943079,-32.99053,28.96428,72.81527,6.702 1416,2.7112722,155.57985,40.51017,96.239944,6.698 1416,580.6023,215.09344,19.990173,57.858368,6.641 1416,496.52695,226.74768,21.734528,40.29901,6.641 1416,517.3316,238.28755,31.83075,61.70421,6.216 1416,-8.592564,464.59613,37.503597,92.37897,6.079 1416,123.712074,218.7447,29.600243,58.26573,5.823 1416,-6.1718225,490.02066,18.546862,42.616608,5.707 1416,445.2861,108.43928,27.669098,65.876854,5.528 1416,110.55411,215.45612,28.513763,59.94232,5.508 1416,530.30566,235.7565,31.706177,60.535706,5.338 1416,-4.8559284,41.310246,16.925064,44.33534,5.295 1416,613.3105,454.58646,39.605225,107.14969,5.275 1416,627.50806,-17.949768,16.649902,47.238777,5.263 1416,622.7961,-33.732876,26.812622,76.3079,5.235 1416,-72.48285,265.52313,200.48625,463.08588,5.206 1416,602.9464,-54.299194,52.823486,137.46872,5.191 1416,1.3729227,87.88749,18.169865,53.998207,5.166 1416,10.33597,162.44266,54.547997,105.98538,5.123 1416,52.34409,211.5787,33.279003,58.60492,5.094 1416,535.9392,309.60126,145.28369,342.23425,5.04 1416,382.69177,229.01724,34.667694,64.3775,5.028 1416,582.9715,199.19186,34.908752,97.96683,5.011 1416,583.015,411.73053,71.90857,176.69977,4.959 1416,-3.6901865,97.72544,17.129738,48.40313,4.886 1416,596.5127,191.75127,28.755737,68.03145,4.883 1416,395.5289,109.341934,18.94162,36.044525,4.875 1416,414.3126,235.87054,31.63678,59.07672,4.869 1416,494.65305,230.44145,236.26736,510.758,4.858 1416,420.31586,228.53827,41.327362,78.55481,4.808 1416,-17.843918,-64.21757,56.136543,145.62794,4.796 1416,469.70276,217.54523,28.198242,61.73175,4.788 1416,452.37732,224.48395,39.422363,62.93454,4.738 1416,-21.56805,402.7797,79.066605,174.70432,4.728 1416,36.47652,204.91745,31.157032,69.29022,4.726 1416,403.05994,109.57195,19.01593,34.47889,4.716 1416,219.85236,211.0758,14.984253,27.061142,4.699 1416,407.95352,238.24536,24.847809,41.290344,4.696 1416,496.54538,239.83621,44.10977,79.736755,4.691 1416,410.21234,109.4581,19.41504,34.624237,4.69 1416,360.09128,224.43997,31.841095,58.034393,4.68 1416,381.93222,224.70349,24.198334,38.40442,4.651 1416,481.30753,230.36264,23.174652,46.00824,4.634 1416,435.8583,224.7191,40.026855,63.31978,4.626 1416,178.31152,219.1629,18.938873,38.171356,4.536 1416,4.0476427,-16.78888,15.990844,41.51243,4.514 1417,390.27878,225.12555,27.25064,68.53296,79.77 1417,403.62463,220.91367,27.037018,72.20413,39.652 1417,556.4651,213.29118,30.423279,74.18422,14.967 1417,413.3562,225.71501,23.361816,54.089157,10.31 1417,613.82776,183.03139,24.102661,90.57921,8.1 1417,480.62677,221.79391,43.891357,74.82324,7.601 1417,-5.5704556,-16.843521,17.843323,41.70125,7.578 1417,550.00806,179.79326,32.17981,81.08406,7.247 1417,343.45142,226.9058,26.10907,39.544907,6.932 1417,555.37134,201.41333,47.89264,106.416504,6.472 1417,418.9679,215.37314,16.784302,30.487152,6.315 1417,-11.114364,-30.798805,29.647682,69.63091,6.298 1417,580.98376,225.65768,38.52954,92.77347,6.241 1417,611.0729,188.89372,21.247131,55.599182,6.206 1417,493.00494,209.18317,29.493042,56.092407,6.164 1417,433.5762,171.64279,19.55066,50.280426,6.025 1417,88.68857,219.29353,21.861069,39.522354,5.834 1417,547.9183,226.88156,41.3089,98.86215,5.824 1417,73.72764,217.44919,34.608925,63.79367,5.71 1417,-8.592642,464.89377,37.506752,91.54166,5.698 1417,-0.26130438,209.59161,26.629293,66.83246,5.586 1417,-6.366921,489.31274,19.044395,43.0849,5.577 1417,467.88864,207.33112,41.521942,71.42566,5.553 1417,131.1917,215.728,32.300446,62.538208,5.484 1417,512.2596,224.33943,44.43463,84.95958,5.455 1417,37.076862,176.17078,28.688244,69.867645,5.455 1417,612.9266,454.8444,39.85736,107.31033,5.391 1417,419.82376,222.78688,38.350616,88.36391,5.34 1417,627.17065,-18.72295,17.331848,47.867584,5.338 1417,114.44198,211.9433,41.03643,81.85217,5.316 1417,101.26163,208.50015,40.17418,66.7775,5.229 1417,83.66032,207.91803,40.916084,67.57672,5.187 1417,505.74063,225.25992,33.356964,65.859344,5.168 1417,-72.28341,265.38672,200.23145,463.3203,5.162 1417,611.1762,-48.718445,41.521484,102.70453,5.051 1417,582.76434,412.13156,72.12219,176.20132,5.049 1417,33.334553,212.98111,43.658817,76.30063,4.984 1417,536.048,310.1339,144.83862,342.57385,4.971 1417,50.238876,216.96783,41.43019,83.51361,4.94 1417,424.79855,219.51099,19.878021,42.294098,4.938 1417,-17.315914,-64.58876,56.016098,145.42809,4.929 1417,413.26007,209.70207,15.542053,27.912857,4.925 1417,80.93536,213.99551,21.012238,39.405807,4.91 1417,546.05743,222.64984,24.974548,54.43567,4.855 1418,424.727,229.36342,40.723694,97.19609,85.568 1418,416.05396,232.8245,31.881897,81.939545,54.493 1418,200.55719,213.50302,27.407578,61.706665,13.24 1418,-5.422658,-17.422434,17.420437,41.233566,7.644 1418,547.2462,205.93855,32.486694,62.17668,7.616 1418,546.4503,219.39998,41.526917,91.91896,7.26 1418,437.91367,224.12933,30.244934,69.660095,7.194 1418,368.21335,237.49007,22.66156,42.073288,7.048 1418,602.7088,-57.22748,53.416748,139.36522,7.025 1418,449.05872,218.48312,20.616913,48.18454,6.929 1418,359.66803,235.09302,23.10376,37.67813,6.927 1418,515.24274,220.90518,42.54724,92.65939,6.866 1418,531.00854,212.16162,41.21875,79.95825,6.705 1418,613.19135,452.2448,39.661804,109.852844,6.414 1418,444.97388,238.72461,35.21518,72.03699,6.404 1418,562.57184,220.26775,33.28766,72.343704,6.382 1418,621.24493,175.29584,26.106445,76.83064,6.321 1418,498.63458,225.7596,43.334473,94.19014,6.268 1418,439.8014,255.5615,31.6279,91.85724,6.154 1418,-11.164957,-31.246582,29.375267,67.92972,5.833 1418,-8.641785,464.4856,37.469727,92.93652,5.778 1418,182.78542,208.7392,28.20581,60.522644,5.755 1418,622.65515,-33.755035,26.793701,75.12171,5.703 1418,578.1062,227.6099,41.18463,90.587036,5.573 1418,627.3418,-17.994228,17.059448,46.214252,5.51 1418,124.81009,224.60188,33.953598,58.18538,5.446 1418,595.68066,-48.15211,42.29785,102.84114,5.432 1418,437.73633,223.7448,53.201935,125.25069,5.415 1418,528.817,213.58665,24.133667,51.238113,5.399 1418,144.28528,218.2368,34.128647,57.90892,5.361 1418,-72.691284,264.81702,201.09712,464.0918,5.266 1418,-6.508761,489.64505,19.040611,42.832733,5.214 1418,-17.21959,-64.45705,55.6158,145.51254,5.18 1418,626.11334,487.1931,21.82611,45.9032,5.146 1418,536.11615,309.18353,144.591,343.04828,4.951 1418,443.42056,213.89066,18.055878,34.089752,4.883 1418,452.5732,229.73532,25.91397,49.562897,4.86 1419,460.774,225.61337,54.436157,131.93417,96.196 1419,483.23224,224.20743,55.437866,140.54709,85.725 1419,494.2133,268.40335,32.67215,92.8649,9.059 1419,7.444322,183.84657,28.541712,77.356125,8.26 1419,-5.7727804,-16.885319,17.81224,44.468525,7.44 1419,589.36597,300.5313,30.473572,60.56848,6.92 1419,627.4036,-18.362488,17.1297,47.40995,6.88 1419,-10.99445,-32.148106,29.640875,77.213165,6.597 1419,613.05005,452.80704,39.9505,109.673676,6.488 1419,413.86774,168.36057,28.149628,74.05464,5.961 1419,453.7317,223.98883,43.154175,99.73413,5.703 1419,535.06323,312.21823,145.59656,338.8549,5.627 1419,603.141,-54.786522,52.812927,136.37862,5.614 1419,-8.844546,464.71454,37.560356,92.583435,5.454 1419,424.35275,197.05983,19.931732,40.88315,5.434 1419,345.70502,226.05263,19.956635,35.234848,5.424 1419,-6.0665216,186.14163,18.804283,44.06491,5.417 1419,-6.4116144,489.5789,19.03791,42.62375,5.383 1419,-73.48919,264.84583,202.1517,464.58997,5.352 1419,623.1973,-34.29763,26.531311,76.537994,5.278 1419,186.08331,215.73892,20.500885,42.39267,5.254 1419,26.633224,222.41446,33.233994,65.60516,5.209 1419,582.62494,411.618,72.751526,176.00345,5.185 1419,-1.2220693,202.42776,27.027895,76.365875,5.147 1419,4.709952,206.08685,36.665123,86.64581,5.145 1419,494.94482,231.57161,237.28406,511.0232,5.111 1419,461.65082,139.28638,27.03424,90.35516,5.099 1419,504.42154,222.84198,34.53293,67.0874,5.069 1419,-11.212235,210.92622,29.150108,76.60362,5.034 1419,18.095371,196.6006,38.922543,79.07652,4.993 1419,459.14862,143.86626,19.274994,52.50078,4.993 1419,-21.62453,401.57712,78.99369,175.5043,4.807 1419,-17.55297,-64.07242,55.545338,147.51424,4.804 1419,-40.596283,362.95966,111.97994,278.28284,4.776 1419,2.7531238,-14.579091,16.893606,42.5919,4.762 1419,-4.7128296,1.3038368,17.750261,48.597046,4.729 1419,173.13255,203.62302,28.668015,58.649536,4.692 1419,577.0911,177.17154,48.33252,123.10373,4.625 1419,521.06476,215.59546,57.901855,114.64795,4.513 1419,-4.9012322,55.726044,17.172672,43.954575,4.506 1419,-10.068365,181.64813,28.385393,71.45647,4.482 1419,189.27936,204.07251,27.161041,59.499878,4.462 1419,-0.865587,-18.042984,26.440262,77.501434,4.451 1419,413.0965,-11.913162,52.81549,118.55737,4.431 1419,618.94995,-18.264837,17.440125,45.464493,4.392 1419,36.665062,199.04651,39.00534,76.13394,4.39 1419,2.7698445,252.90741,32.41008,77.86926,4.389 1419,379.9859,227.98242,30.218536,54.460297,4.358 1419,472.54236,228.08546,35.594696,89.49693,4.334 1419,549.6905,-36.14772,28.37262,75.65655,4.312 1419,585.97595,306.66446,22.725464,41.867126,4.287 1419,-12.84996,190.16617,47.497032,132.45212,4.266 1419,626.1741,486.7859,21.55896,46.496765,4.233 1419,476.70367,140.90446,16.162811,43.594803,4.225 1420,584.62134,247.79942,58.468323,223.63618,48.956 1420,154.16426,210.09555,24.387619,50.9122,29.448 1420,428.40857,213.59494,26.912598,59.846436,10.107 1420,167.20786,207.59169,22.263062,47.15538,10.092 1420,-5.9232497,-18.642427,18.020897,43.93042,9.119 1420,435.1973,215.03418,15.732513,30.711487,9.107 1420,-10.790718,-32.31002,28.930021,71.81021,7.385 1420,33.773834,200.88278,44.158646,73.04959,6.787 1420,85.93361,208.57343,31.935135,63.594177,6.748 1420,436.39786,186.36095,15.159576,38.37738,6.688 1420,175.7762,205.82283,20.930862,39.831192,6.593 1420,252.37639,227.2344,16.834915,28.621521,6.574 1420,613.45056,452.57108,38.969543,111.247284,6.351 1420,548.8365,199.50784,25.706116,64.789825,6.218 1420,76.181625,212.97073,31.177032,67.57568,6.13 1420,627.61847,-17.959454,16.727722,46.608906,6.082 1420,-4.6135755,202.69847,17.688198,41.891006,5.999 1420,-6.5712333,489.25204,19.205276,42.837494,5.988 1420,47.677746,206.85037,43.93324,75.8801,5.985 1420,609.38806,271.68756,40.852417,137.59546,5.956 1420,623.3428,-33.330025,26.41565,75.67195,5.916 1420,609.81964,254.96158,31.306152,80.960785,5.898 1420,161.00546,204.30502,21.990265,38.66095,5.857 1420,244.01578,227.4451,17.763947,30.307892,5.84 1420,412.89246,212.96092,15.1553955,29.396286,5.829 1420,412.95984,221.80643,30.40567,60.610626,5.759 1420,613.19775,376.98425,25.818115,94.63028,5.753 1420,257.79587,230.90816,19.042389,32.087082,5.672 1420,23.42063,208.0372,23.90339,45.58748,5.647 1420,402.17532,227.36559,22.963531,36.300552,5.643 1420,535.3445,306.26053,145.49927,345.52475,5.573 1420,-8.888045,464.56134,37.76283,92.28027,5.568 1420,602.68024,-56.46229,53.337708,138.8246,5.557 1420,492.63745,230.96545,239.06067,512.84216,5.492 1420,97.34073,211.33023,33.616302,69.942474,5.416 1420,393.95422,233.64114,22.343384,34.376404,5.403 1420,442.29803,178.05577,17.513123,40.101837,5.376 1420,1.5209198,197.27988,20.25316,44.470367,5.349 1420,532.4415,140.16472,15.695374,32.284286,5.274 1420,12.184539,192.87778,57.6914,99.901,5.271 1420,622.6342,175.64613,25.669556,75.69446,5.269 1420,-72.9803,265.37982,200.69995,463.9433,5.196 1420,340.32825,226.66504,29.984253,54.337585,5.19 1420,452.70786,199.93893,13.221954,27.959274,5.102 1420,351.1349,232.94681,30.028442,55.917114,5.042 1420,421.66592,215.56497,14.382721,27.228455,5.023 1420,626.7382,488.52805,20.496826,44.37259,5.011 1420,96.758255,209.48373,22.895676,44.974564,5.009 1420,-2.2493052,211.25638,28.277288,64.12363,4.926 1420,107.65695,203.65247,30.927063,58.05014,4.884 1420,410.18768,222.63727,18.772339,34.412384,4.884 1420,-5.0497026,122.08029,16.42921,42.16571,4.879 1420,444.15607,201.36658,12.544647,27.256348,4.78 1420,-17.27056,-62.99904,55.858696,145.32622,4.78 1420,-21.888237,401.84854,79.51192,175.0289,4.756 1420,426.15045,166.59239,25.13095,73.59453,4.753 1421,443.17014,216.72253,20.72287,44.190094,13.383 1421,444.78668,221.69472,30.069458,62.43135,11.214 1421,459.09393,228.93298,32.76828,67.58038,9.622 1421,466.8712,219.10202,41.01761,71.33768,9.295 1421,489.357,228.51791,19.543915,30.643341,8.716 1421,484.0384,226.01466,30.970276,69.122635,8.083 1421,481.20526,228.87383,22.314056,46.734756,7.783 1421,265.64145,204.6162,21.403198,46.54393,7.771 1421,427.83676,210.63622,16.902954,32.43901,7.492 1421,473.21136,227.05528,23.226257,39.212326,7.392 1421,561.13806,220.60785,21.565857,36.647583,7.087 1421,87.69947,209.1447,35.471466,69.21901,6.956 1421,78.980675,203.01743,27.28231,50.84294,6.584 1421,622.6559,-33.218548,27.04773,72.962234,6.493 1421,435.43027,217.15947,20.584076,44.14055,6.201 1421,8.770722,241.96805,27.390476,63.004272,6.18 1421,-10.946312,-31.445482,29.726044,72.091484,5.924 1421,454.90387,226.09697,25.982544,48.191177,5.845 1421,97.576584,195.33145,43.318558,71.59338,5.828 1421,-8.583392,465.2347,37.3948,91.43289,5.816 1421,492.1921,138.57988,26.57901,73.225784,5.812 1421,498.07593,220.60512,42.439148,91.30217,5.789 1421,132.27715,195.06873,29.603622,59.89038,5.775 1421,-5.8460274,-16.87632,18.117804,42.872772,5.772 1421,515.8124,220.71475,40.92871,94.62109,5.75 1421,627.09955,-18.306072,17.439392,46.26195,5.618 1421,558.9702,229.72653,28.378479,69.98309,5.603 1421,497.2977,221.97736,18.107819,29.8275,5.583 1421,-5.9393196,3.7061558,18.76208,42.455505,5.539 1421,445.71252,211.48419,14.392609,24.831055,5.466 1421,350.1617,219.77196,27.360199,53.239273,5.426 1421,450.47824,215.18858,15.701416,29.335205,5.365 1421,582.2199,214.7951,37.60956,105.38037,5.355 1421,100.415436,203.38426,27.553009,46.041733,5.312 1421,626.48566,488.4294,20.988342,45.53482,5.307 1421,612.97784,454.9686,39.870728,107.46042,5.184 1421,-5.205103,38.316765,17.958408,46.057274,5.164 1421,-72.899185,265.0408,200.93143,462.7789,5.146 1421,422.46365,205.71214,26.948944,55.81395,5.146 1421,-17.643614,-63.015705,56.239998,143.14743,5.128 1421,269.2544,208.09244,12.052643,21.7706,5.118 1421,587.9674,127.79357,14.916382,29.57978,5.059 1421,456.5658,220.20692,19.324707,36.20723,5.049 1421,-6.397075,489.51065,19.025534,42.988678,4.984 1421,530.60956,219.04764,41.05847,91.499664,4.962 1421,583.0126,411.10803,71.88922,177.57544,4.939 1421,504.39624,229.64557,23.324036,46.863647,4.93 1421,101.85152,219.97523,25.427963,49.533768,4.897 1421,603.0616,-54.976936,52.741516,133.27063,4.892 1421,-17.468988,436.6762,55.001434,139.10663,4.891 1421,494.8514,232.17781,25.221832,52.23256,4.857 1421,69.644936,205.4073,30.951683,64.764084,4.839 1421,-5.784651,153.6115,18.641537,44.567474,4.82 1421,569.29047,209.66747,19.354492,35.44406,4.802 1421,453.32635,203.7352,12.639465,25.50827,4.794 1421,39.9762,208.8222,23.515907,48.88141,4.761 1421,379.75525,202.94518,17.666504,33.796173,4.755 1421,550.1519,217.6315,31.267395,65.81595,4.72 1422,93.44397,215.15378,33.450188,76.25281,82.942 1422,143.88237,213.23083,23.267624,45.977203,41.317 1422,68.63215,207.6419,33.43721,80.10693,40.718 1422,532.56396,220.2115,36.891357,89.16502,10.084 1422,534.71545,229.05641,22.686218,44.957962,9.553 1422,62.720642,201.48111,28.184494,69.030365,8.659 1422,531.23975,224.00127,19.826477,35.970352,8.066 1422,-5.809922,-16.732563,18.669662,42.540794,8.033 1422,518.08136,220.51683,37.273987,98.882034,7.393 1422,501.32916,215.19308,36.27112,92.51697,6.962 1422,104.12012,211.44844,32.278687,65.63609,6.947 1422,467.4481,215.01476,37.0011,96.842545,6.859 1422,-0.94758034,126.6349,32.028824,84.38075,6.69 1422,-10.63862,-32.275726,30.006495,74.65633,6.629 1422,548.4725,227.07468,38.187744,98.98883,6.613 1422,591.5131,100.15724,26.625793,92.494705,6.484 1422,485.1496,216.58395,37.871094,94.76434,6.476 1422,553.9268,207.37494,19.704895,36.718323,6.361 1422,124.90918,215.41672,31.121033,58.687653,6.289 1422,453.87802,214.61813,36.49533,94.94672,6.228 1422,452.75113,148.83037,29.508545,74.54912,6.149 1422,426.77307,194.52673,29.628021,70.89639,5.848 1422,-8.945103,464.7169,37.727074,92.325836,5.828 1422,613.29443,453.46136,39.39856,108.68939,5.808 1422,626.28705,487.87677,21.204712,44.89911,5.648 1422,512.9108,188.09167,22.112732,47.842194,5.562 1422,116.26814,204.78885,30.592697,58.169098,5.546 1422,-6.313927,489.26016,18.845318,43.81662,5.543 1422,547.86694,216.3176,18.670776,35.105377,5.394 1422,538.8989,217.85693,18.007874,32.94908,5.364 1422,367.38525,225.47641,26.518372,53.933655,5.338 1422,500.4881,211.23396,16.400024,30.725998,5.26 1422,-73.277054,263.85535,201.60365,465.50195,5.236 1422,543.84344,228.67961,22.271057,43.575607,5.189 1422,19.438557,197.04767,38.400856,81.346436,5.119 1422,621.48,291.87537,27.342285,78.872284,5.104 1422,-17.574013,-62.790237,56.647408,141.72607,5.037 1422,611.3025,-49.492188,41.45935,105.08824,5.034 1422,84.30542,208.66772,31.849457,59.84839,4.976 1422,139.25758,222.99269,22.558685,46.567307,4.946 1422,627.1195,-18.66759,17.577515,47.38892,4.9 1423,9.891636,196.03279,48.495663,121.52916,80.932 1423,597.8077,212.74265,29.671814,71.7977,78.931 1423,586.4024,215.60745,29.567932,63.19873,15.112 1423,570.2458,218.24149,20.491089,38.81186,13.856 1423,577.25616,216.13591,21.588196,40.495163,10.622 1423,406.05743,223.02267,29.307587,70.1192,10.137 1423,609.5867,211.47125,27.7677,77.578125,9.986 1423,586.5996,214.20705,20.155396,40.29738,9.918 1423,-4.3087587,204.01161,37.262104,111.244,8.754 1423,29.754368,205.79308,35.05234,86.91017,8.251 1423,-5.4913864,-17.22525,17.508316,43.55668,8.01 1423,2.3870409,258.60834,20.087683,51.36664,7.593 1423,580.81775,212.51987,14.519104,31.04271,7.589 1423,454.39667,198.67264,28.27481,73.94177,7.309 1423,621.3599,473.94827,29.66632,69.657196,6.904 1423,563.62396,218.82661,18.929932,37.307907,6.522 1423,157.45425,198.02184,28.980408,65.331345,6.446 1423,548.3062,69.96074,33.605774,65.37042,6.417 1423,542.65955,211.0588,13.90387,28.150452,6.373 1423,-10.418772,192.07149,30.094305,72.48021,6.33 1423,11.748234,202.38043,30.725792,74.236084,6.258 1423,-11.218276,-33.006416,30.023499,74.07672,6.239 1423,95.99853,201.10918,32.747643,62.409073,6.156 1423,139.79254,198.05984,30.196533,65.54562,6.116 1423,588.97064,211.51207,13.525635,24.391724,6.041 1423,574.81757,208.45193,11.976135,26.248123,6.032 1423,-8.563765,465.09344,37.347775,91.48743,5.938 1423,621.99744,215.09444,27.474365,77.19212,5.633 1423,-14.707716,224.0614,51.959343,146.27454,5.631 1423,177.13562,206.58768,23.301086,42.351013,5.585 1423,574.30554,221.55331,31.167908,55.34607,5.557 1423,105.87803,195.65108,32.90957,57.54605,5.54 1423,554.7683,220.77452,17.43451,34.547806,5.522 1423,595.2876,228.38919,40.055542,95.71042,5.515 1423,377.5867,217.33203,19.344086,33.931915,5.45 1424,89.31019,201.82419,31.641418,68.1788,91.171 1424,492.2298,217.23097,27.62909,70.49611,59.898 1424,167.11444,212.26129,24.856873,41.676132,43.49 1424,507.53525,212.38834,29.539886,67.42856,20.438 1424,47.67846,214.20415,25.980835,45.10408,17.494 1424,478.84875,215.3313,29.821167,69.917725,16.638 1424,468.11722,218.33667,30.744324,80.01111,14.549 1424,517.8679,212.00195,24.572205,51.02307,12.019 1424,457.41104,210.49403,31.082306,77.77922,11.998 1424,471.66745,215.133,21.846466,52.93506,11.407 1424,60.879425,205.48315,27.789993,54.20636,8.916 1424,51.484875,215.31793,33.701923,63.19998,8.438 1424,526.7975,212.53824,24.549438,55.6929,8.063 1424,153.7163,212.69757,22.595795,40.673172,8.037 1424,-10.437656,-31.82658,29.184189,72.465004,7.8 1424,607.08875,205.88158,25.734375,55.234634,7.356 1424,-5.954851,-17.572128,18.364857,44.803993,6.779 1424,623.3472,-32.803333,26.264221,72.44713,6.579 1424,483.92178,218.59766,41.22171,103.39868,6.572 1424,417.83633,220.0609,19.999664,49.508865,6.315 1424,410.4054,222.66132,19.407898,46.271698,6.247 1424,615.88617,225.4913,23.189087,46.31906,6.206 1424,69.99294,198.1395,28.455635,58.016937,6.07 1424,19.374882,207.23006,33.286903,63.76042,5.98 1424,-8.541285,464.70044,37.26626,91.74396,5.972 1424,451.79807,212.36722,17.686737,44.47171,5.958 1424,361.08093,228.58069,22.070557,36.63736,5.877 1425,32.027084,205.73257,42.654083,84.871735,90.35 1425,2.1679926,209.53671,39.480606,91.11447,83.932 1425,0.9503901,236.41342,28.574131,74.737335,17.091 1425,17.981277,211.12401,39.582024,83.22087,16.646 1425,549.70593,214.15628,28.415222,69.979095,11.823 1425,559.94336,215.92407,23.595886,46.23346,10.676 1425,545.68585,214.1284,22.255371,50.525803,9.396 1425,502.34744,206.63066,29.645844,72.47139,9.086 1425,-5.8318653,-18.042685,18.550837,44.509,8.602 1425,176.33629,206.80978,23.450363,38.664978,8.09 1425,-8.38298,213.87965,31.896698,84.52101,7.772 1425,538.3607,201.64636,31.231201,90.567566,7.642 1425,483.05096,209.46837,18.938965,53.762558,7.429 1425,490.96967,212.28723,17.42871,40.80899,7.315 1425,498.1823,210.76445,20.049438,51.094772,7.155 1425,520.2803,202.13522,31.272583,86.33655,7.07 1425,613.2687,452.20755,39.770325,109.85269,6.946 1425,47.71659,201.1637,32.429832,67.20505,6.93 1425,472.07214,208.74251,25.900574,72.956924,6.922 1425,562.47687,213.7447,17.933594,23.75499,6.524 1425,-4.802807,211.64139,19.896507,53.71277,6.503 1425,519.4903,212.10474,22.918823,48.448456,6.481 1425,523.7838,213.80254,15.93103,28.36499,6.448 1425,352.00015,220.57205,21.836395,34.271606,6.393 1425,554.4564,216.04579,19.384705,28.598358,6.304 1425,55.95243,198.08977,22.454445,43.64032,6.255 1425,59.21967,189.24335,30.23685,58.674454,6.254 1425,564.39264,203.18863,34.456055,95.02673,6.128 1425,-8.464609,464.76205,37.32905,92.10019,6.065 1425,-11.099495,-31.388594,29.582798,72.29484,6.053 1425,404.09967,226.39069,19.066345,30.78125,5.814 1425,485.4201,209.12198,27.542175,67.706696,5.774 1425,-12.559158,215.84961,50.18622,132.53326,5.659 1425,-14.544917,167.3584,51.8226,130.52673,5.526 1425,-73.91303,264.3054,202.98593,463.68472,5.486 1426,512.3968,225.13373,25.886536,63.94751,63.841 1426,535.1445,223.68614,22.497742,54.73372,31.723 1426,601.81775,215.38756,30.518677,87.39232,14.938 1426,584.5824,220.89493,21.662964,41.83914,14.37 1426,524.6214,227.77888,29.082336,66.84267,11.833 1426,569.2709,219.20895,21.716919,49.286377,10.313 1426,609.34033,228.37616,22.590149,49.160828,9.916 1426,369.50577,225.67368,21.047272,39.95218,9.646 1426,590.3283,222.36258,29.736023,62.144653,8.819 1426,574.31946,221.44362,27.52124,57.96794,7.968 1426,-5.451021,-17.26606,18.081339,44.06864,7.84 1426,538.87384,228.4952,29.951721,61.447983,7.696 1426,559.93115,217.1713,25.960815,62.06378,7.674 1426,615.82526,234.49258,23.565247,59.750183,7.491 1426,586.8622,212.52928,16.46936,26.68811,7.242 1426,178.33948,208.99423,24.143463,47.349945,7.151 1426,602.15125,223.87813,21.351318,41.825607,7.006 1426,626.66144,226.08435,18.156311,44.939972,6.764 1426,579.41504,217.7134,17.207947,28.269272,6.751 1426,548.4894,221.15791,30.020447,64.80153,6.225 1426,74.18226,213.58023,21.218704,43.062836,6.189 1426,150.32524,201.96318,27.189438,57.22902,5.938 1426,3.774881,192.83018,18.150331,48.0916,5.9 1426,-6.6196117,489.42978,19.237925,42.868378,5.823 1426,-12.75361,477.8281,31.211964,62.378876,5.755 1426,627.32574,-18.36324,17.010498,47.25336,5.748 1426,595.12213,223.84145,17.534485,26.399948,5.733 1426,85.84671,210.73227,28.789154,51.793427,5.661 1426,530.6947,135.62253,19.944641,34.033173,5.589 1426,2.0401068,-17.33149,18.171745,43.031048,5.55 1426,99.07123,208.2274,30.469467,55.387375,5.526 1426,493.03116,131.38863,30.494598,63.87143,5.452 1426,626.6386,489.51767,21.253723,43.823334,5.45 1426,-11.095086,-32.11424,29.772617,73.83113,5.429 1426,613.1636,452.94873,39.692505,108.496155,5.423 1426,618.3395,225.23016,18.331177,36.04663,5.422 1426,399.57214,235.35437,23.681763,35.034058,5.413 1426,622.71783,-34.191692,26.843994,76.84767,5.386 1426,61.811592,208.0764,29.308846,58.073807,5.339 1426,581.2787,230.63756,39.786438,100.21077,5.329 1426,-73.150856,265.56818,201.69992,463.33124,5.255 1426,583.03064,412.4563,71.87732,175.57336,5.21 1426,572.4358,216.49812,16.563599,30.353699,5.165 1426,535.394,308.34302,145.83289,343.46643,5.118 1427,588.09314,229.77905,27.257202,82.50061,97.554 1427,614.8777,233.90176,21.69336,74.80426,91.502 1427,148.46335,206.32016,30.5681,62.834137,88.479 1427,598.51,226.97961,31.631592,86.65967,28.809 1427,136.11554,199.82336,31.144196,67.22296,10.181 1427,621.9019,247.91087,20.434387,58.34874,8.569 1427,-5.9745874,-18.514614,18.643955,44.197327,8.194 1427,578.1136,225.24298,30.392029,71.68329,7.334 1427,417.58875,214.79543,18.70459,33.970657,6.376 1427,604.51855,210.88547,43.29956,119.843414,6.322 1427,376.9656,216.77579,21.197815,40.618866,6.123 1427,627.6579,-17.9413,17.24884,46.040627,6.084 1427,626.67303,488.01663,20.83728,45.658234,6.077 1427,259.1142,206.49864,18.35785,29.400589,6.051 1427,-12.748249,478.17,30.622404,62.4429,6.047 1427,-11.281852,-32.245754,30.025654,72.58807,5.993 1427,412.18152,220.2298,18.82022,36.58496,5.979 1427,622.7966,-34.363163,27.084106,74.5628,5.933 1427,570.31244,221.27043,21.676208,45.838394,5.904 1427,618.52057,218.64362,16.345825,36.288498,5.885 1427,515.56696,120.54104,32.206055,60.510445,5.834 1427,266.701,206.55124,19.166565,31.355698,5.747 1427,-8.658471,464.97144,37.54551,92.70862,5.694 1427,49.34659,203.91382,20.812584,37.819016,5.602 1427,626.5204,224.8626,18.502563,51.34227,5.543 1427,-6.716717,489.95877,19.233643,42.367462,5.461 1427,123.69739,196.60919,17.578949,32.282013,5.429 1427,-16.162905,154.43405,48.087646,138.65646,5.315 1427,2.5312467,-17.986633,18.669771,42.613503,5.252 1427,125.84538,197.81757,29.026733,62.262177,5.239 1427,602.9219,-55.53309,53.000427,135.63002,5.217 1427,-4.483367,183.87082,17.809776,46.911026,5.213 1427,583.1003,413.39825,71.5564,174.65277,5.194 1427,536.31055,309.95154,144.74146,340.6322,5.144 1427,274.6097,206.68028,20.234497,35.32959,5.129 1427,625.5531,271.42828,18.911743,46.783752,5.081 1427,-72.986694,266.22583,200.55443,461.90576,5.026 1427,613.27704,455.29663,39.309387,106.07825,4.969 1428,92.88738,203.92674,30.922668,72.46428,37.691 1428,79.72421,199.52486,30.444054,75.25023,16.464 1428,499.79828,222.3745,32.02118,58.685806,8.356 1428,485.58014,217.11496,30.557373,65.829285,7.434 1428,466.95184,216.7638,31.279846,61.00418,7.372 1428,393.74902,223.76761,30.699707,60.07315,7.256 1428,401.36502,219.14197,19.018158,36.527496,6.999 1428,584.0698,222.05336,23.655457,53.422012,6.979 1428,617.4667,219.54617,20.251831,46.747955,6.526 1428,515.2612,113.630264,32.880188,55.192352,6.429 1428,626.7903,488.77786,20.829468,44.882904,6.273 1428,-6.5484877,488.97806,19.42912,43.56259,6.225 1428,599.0439,196.6894,34.895935,86.662094,6.207 1428,565.86115,211.8755,26.43158,61.814743,6.149 1428,499.743,111.15088,32.04666,62.32962,6.143 1428,627.52,-17.023071,16.720337,45.325897,5.871 1428,-8.596806,464.85632,37.431164,91.42236,5.845 1428,-5.0368824,146.14224,18.426931,51.470276,5.758 1428,250.67294,210.49557,20.335175,32.064865,5.707 1428,589.5838,217.09264,31.431274,71.9182,5.623 1428,-11.25334,-33.187733,30.607897,78.5735,5.595 1428,622.9996,-32.73511,26.24878,74.98654,5.535 1428,-17.24539,-63.845688,55.517517,149.99062,5.523 1428,394.92188,206.88718,18.776855,37.17241,5.519 1428,576.44116,211.57516,22.687988,48.46573,5.415 1428,220.08353,216.66272,16.434586,26.691193,5.395 1428,258.65625,210.65717,19.774261,33.23503,5.37 1428,602.97174,-56.528145,53.200256,139.8689,5.359 1428,227.59804,215.50026,17.370804,29.237976,5.307 1428,-17.222073,435.47156,55.10345,138.81995,5.284 1428,560.4472,219.15701,22.458557,48.969208,5.258 1428,242.61218,209.89067,19.737793,30.371902,5.241 1428,613.3532,453.92273,39.231567,107.85376,5.238 1428,516.59937,222.47244,30.924377,60.52057,5.215 1428,512.52783,223.12749,21.806885,43.69615,5.211 1428,583.0943,413.06705,71.78009,174.08401,5.085 1428,-73.32161,266.2063,201.13522,462.016,5.08 1428,535.6323,309.7483,145.14575,343.09326,5.049 1428,-4.4866395,186.59842,16.385216,40.322372,5.038 1428,-3.960063,203.09453,15.7782545,38.726166,5.021 1428,234.93799,208.91565,18.153809,28.619385,4.999 1428,378.5658,205.93417,19.807953,40.620224,4.985 1428,104.041534,200.59366,29.455704,65.65134,4.983 1428,506.8237,221.896,17.460846,36.541138,4.976 1428,521.64923,120.27147,21.52179,34.265076,4.958 1428,-5.186608,118.809425,18.843979,49.35679,4.916 1428,418.7727,214.87206,20.29956,40.150604,4.887 1428,410.38977,212.76971,18.892761,36.589737,4.875 1428,618.9977,490.8631,20.10852,41.51776,4.85 1428,493.9273,229.14133,237.00458,513.34424,4.802 1428,-4.6494145,168.02141,16.513958,45.085495,4.791 1428,-40.136776,367.548,110.52852,275.08847,4.745 1428,619.2835,-16.957716,17.284119,41.245705,4.706 1428,547.6986,215.95322,39.210815,75.25281,4.658 1428,601.1271,228.06677,24.088135,54.065155,4.655 1428,552.41754,227.17673,22.951233,46.748016,4.654 1428,-8.147213,113.98096,27.975403,74.19174,4.627 1428,452.89197,213.77036,39.336243,78.00418,4.58 1428,513.6704,116.337494,22.685608,39.434387,4.569 1428,-3.982879,218.4581,15.477882,37.90454,4.567 1428,-15.38265,122.393616,49.092392,140.66498,4.547 1428,443.5339,223.34906,33.181427,59.58423,4.536 1428,539.94727,114.18823,33.105347,56.87271,4.52 1429,59.082756,207.8874,30.463287,71.46242,44.908 1429,323.82144,225.32681,32.12802,60.80249,14.59 1429,39.533657,205.90143,26.37714,72.47638,12.004 1429,404.57547,216.767,29.637146,67.944855,9.296 1429,427.94666,211.68176,31.710754,62.23004,9.284 1429,388.53622,218.38779,29.719513,67.59515,8.921 1429,507.60495,238.20255,31.868195,65.806885,8.912 1429,372.07892,218.38123,30.797241,77.42743,8.803 1429,492.6013,226.26924,30.400604,69.82152,7.804 1429,478.84607,216.51161,26.17633,70.735,7.643 1429,201.74559,213.25618,19.897339,31.785736,7.366 1429,393.92084,220.96999,20.48352,42.51985,7.342 1429,387.40768,221.31985,18.065979,34.887634,7.189 1429,491.1362,222.16942,16.368652,44.099686,6.956 1429,519.88104,245.72922,24.45752,50.874542,6.914 1429,333.75272,219.13327,23.458862,44.090546,6.852 1429,444.37088,210.64445,30.650665,61.188644,6.829 1429,424.39822,217.82742,23.308136,46.993927,6.752 1429,416.14273,221.97614,24.287415,51.227478,6.601 1429,34.783764,204.44724,22.521046,55.572754,6.55 1429,498.39154,226.60818,17.674194,48.129242,6.544 1429,-8.572879,464.41833,37.337223,92.72528,6.527 1429,217.78868,213.99467,21.781815,37.808502,6.474 1429,483.31485,220.25919,17.256287,46.893036,6.461 1429,11.236373,197.08656,17.663525,34.047516,6.342 1429,402.11218,220.71568,21.53836,42.527847,6.328 1429,-17.018307,-63.8126,55.838192,146.76453,6.302 1429,371.83087,215.66136,18.857605,34.60074,6.29 1429,378.32062,220.83093,18.111755,30.04309,6.205 1429,474.8227,219.22603,18.830292,46.44658,6.2 1429,358.47476,215.67557,30.492249,72.43143,6.091 1429,410.2967,219.55904,19.796722,35.994125,5.977 1429,627.44745,-17.413849,16.931946,47.353844,5.941 1429,500.04944,219.0263,14.067505,32.69948,5.702 1429,-5.030163,168.17474,17.191914,42.61972,5.665 1429,-3.8026938,190.117,16.08422,37.725998,5.663 1429,-6.404514,489.42877,18.951292,43.203186,5.658 1429,622.8008,-33.276257,26.77655,76.99161,5.545 1429,363.75677,216.49004,20.484314,40.578964,5.496 1429,-11.452388,-32.55129,29.544312,73.361046,5.487 1429,528.2999,247.86513,22.177917,40.955917,5.482 1429,602.8823,-56.250984,53.251953,139.49991,5.468 1429,0.71964204,242.83359,19.659863,50.926453,5.383 1429,209.93164,213.82841,21.41043,36.331345,5.381 1429,47.183647,214.34283,28.566322,69.81891,5.38 1429,-5.3731465,-16.946308,16.706476,42.224052,5.327 1429,-73.70271,264.14868,201.98845,464.588,5.315 1429,-6.062014,139.18172,19.526686,41.643448,5.3 1430,33.58066,207.05151,33.97884,73.22751,76.665 1430,317.04544,216.7641,25.7247,44.88794,16.028 1430,244.49649,217.03116,31.689728,70.82065,10.294 1430,309.0843,217.84212,31.246826,71.39076,8.938 1430,16.834255,202.72198,29.578903,73.9256,7.649 1430,-7.270701,201.01038,36.649437,92.32349,7.516 1430,211.60797,207.29688,32.251404,66.55145,7.402 1430,0.54837584,192.11636,24.786112,68.14331,7.36 1430,259.39413,221.61719,32.15619,70.6084,7.119 1430,321.0395,222.96355,32.41086,67.61986,7.059 1430,194.31146,207.92764,33.601746,63.059296,6.881 1430,627.23,-17.017801,17.121216,47.15773,6.77 1430,622.6987,-33.537212,26.619629,77.23835,6.73 1430,347.08023,214.0609,20.073853,39.550034,6.531 1430,-16.734884,-63.781975,55.561737,144.50554,6.347 1430,369.73895,229.59546,20.64441,35.216858,6.266 1430,178.68079,204.35341,34.00444,68.27916,6.264 1430,274.8773,219.38138,31.660522,72.878235,6.228 1430,-5.344386,-17.769258,16.630844,42.5947,6.121 1430,405.39584,206.99634,27.643738,56.150513,6.055 1430,355.33282,215.29482,18.6333,39.75264,6.05 1430,227.56136,208.257,33.026474,69.24165,5.918 1430,-5.442555,153.06396,18.49133,46.009644,5.852 1430,618.6286,226.21365,20.767883,57.744293,5.642 1430,349.76077,224.7251,29.428009,55.20053,5.633 1430,-6.5415525,489.26575,19.29398,43.019226,5.607 1430,176.68983,205.74272,20.563965,34.27211,5.453 1430,410.28122,203.34613,20.038452,38.301834,5.451 1430,193.1511,210.79747,23.84549,40.90999,5.448 1430,353.7143,229.61658,41.931396,77.394165,5.395 1430,-4.5113173,171.47278,17.503145,42.862915,5.375 1430,-12.608774,477.21796,31.17295,62.723022,5.372 1430,602.81604,-55.120987,53.407837,137.58597,5.328 1430,-11.5798855,-32.123367,29.63149,71.76501,5.323 1430,626.6192,488.98413,20.946838,44.649414,5.292 1430,1.5652645,141.92297,25.200884,74.582184,5.29 1430,-4.5438256,196.41183,18.522722,47.57048,5.285 1430,416.48117,216.50519,22.02594,44.601166,5.253 1430,393.5727,216.41605,22.065674,48.315186,5.251 1430,4.8060026,211.57397,39.590965,99.94336,5.169 1430,-73.99352,263.6021,203.1091,465.9497,5.156 1430,378.71872,222.32034,18.188934,33.90387,5.134 1430,17.634903,199.07904,49.231773,109.98871,5.116 1430,209.02686,211.48322,23.391434,43.233246,5.088 1430,583.0137,412.5456,71.849915,175.75513,5.086 1430,535.8709,309.30075,145.30182,341.7852,5.072 1430,169.57208,221.48582,34.58902,75.352005,5.063 1430,185.00786,209.72868,23.264847,40.290207,5.051 1430,287.43036,222.36908,24.572998,49.967255,5.01 1430,579.55066,215.6702,30.948975,65.48105,5.007 1430,612.91516,455.12668,39.724,107.255585,4.956 1430,3.2734327,163.39645,17.906647,44.496338,4.95 1431,585.1148,218.71484,39.661133,102.60913,91.045 1431,6.6550503,206.43048,29.684858,74.330444,50.054 1431,17.424618,203.23985,30.046295,71.344376,13.297 1431,617.9786,221.70276,20.928528,53.717102,13.166 1431,607.56,213.4058,35.77466,105.8008,12.528 1431,171.4888,215.75844,18.016815,29.285355,9.176 1431,2.1937478,216.33548,21.99991,61.169983,9.107 1431,390.3864,213.47539,28.351807,58.717056,8.529 1431,146.6788,212.15971,18.446854,28.916061,8.136 1431,583.285,209.56758,30.111816,68.46312,8.085 1431,154.38129,213.39212,18.084457,28.984253,7.902 1431,300.93823,216.37663,26.100372,52.976456,7.469 1431,177.82788,211.41643,18.92337,29.407272,7.44 1431,330.71625,203.40623,21.005371,46.195236,7.287 1431,164.1812,213.49701,18.265854,30.419296,7.198 1431,407.24493,218.5354,23.616577,45.517517,7.174 1431,376.29337,213.90924,27.432892,58.03952,7.03 1431,5.0473824,217.6659,38.098797,118.71661,6.687 1431,-5.3584867,-17.204422,16.698633,42.285053,6.323 1431,318.4269,200.1915,29.78305,57.73056,6.29 1431,-2.6907635,211.53693,33.638725,96.16687,6.25 1431,-16.698822,-64.45797,55.560745,146.07552,6.222 1431,627.0794,-18.208776,17.211914,46.40271,6.208 1431,592.4041,212.88324,22.543274,44.07953,6.203 1431,188.00876,218.39633,18.000427,28.518509,6.158 1431,-4.694698,216.96994,19.190228,52.18466,6.129 1431,-9.391528,461.484,37.98788,95.723816,5.998 1431,585.35974,208.37901,22.03656,41.497543,5.804 1431,428.4781,215.05322,29.001343,62.07132,5.799 1431,622.9786,-33.52675,25.767822,74.587234,5.761 1431,140.05792,214.3265,18.026413,27.676056,5.743 1431,620.05646,215.01196,14.787659,32.07625,5.654 1431,-5.863146,489.63123,17.502914,41.082214,5.609 1431,610.1788,274.58777,20.080017,46.820404,5.566 1431,361.52124,222.20416,19.112274,35.367737,5.505 1431,346.65796,238.93123,33.52234,64.53447,5.503 1431,305.23706,201.29048,31.981201,61.01628,5.468 1431,620.7342,219.46289,27.822693,74.268005,5.442 1431,536.2477,309.17572,144.96753,342.6098,5.419 1431,626.5907,488.47433,20.972412,45.08609,5.39 1431,603.1359,212.62994,17.721985,33.563446,5.383 1432,565.6239,223.99098,47.54419,104.335495,86.476 1432,593.14636,226.14108,43.364563,104.076965,84.137 1432,2.4096167,206.40439,32.267475,80.74179,68.285 1432,405.52112,214.68896,28.656616,64.4816,10.466 1432,-7.931652,202.75482,29.984018,80.7207,7.616 1432,331.41864,211.68361,18.920685,44.119354,7.059 1432,417.8751,217.00479,33.088074,61.804108,6.925 1432,513.894,97.23631,20.096558,39.60698,6.74 1432,573.4104,219.55246,31.073486,72.48691,6.719 1432,-12.224278,202.22139,47.21392,132.29607,6.718 1432,390.82043,217.39278,28.710785,62.346756,6.646 1432,607.53015,220.70726,22.661133,46.671463,6.574 1432,601.142,240.28601,50.739746,119.98694,6.536 1432,322.59485,212.72539,20.450073,44.564438,6.41 1432,146.59805,222.0049,19.613586,30.734543,6.407 1432,-16.769379,-64.00911,55.708,144.57213,6.398 1432,-8.646494,464.26913,37.448425,92.93411,6.393 1432,131.53624,220.7727,17.70874,27.850128,6.359 1432,138.09714,220.81032,18.730484,29.67955,6.113 1432,294.8412,219.549,28.871826,62.01277,6.042 1432,405.92392,-36.105225,28.368011,76.99839,6.042 1432,609.54395,218.63467,29.144897,86.29462,5.998 1432,538.34326,97.84348,19.757263,37.75689,5.887 1432,379.29462,227.6672,19.452057,40.766907,5.79 1432,536.4324,309.45148,144.38953,341.51385,5.763 1432,-5.2342553,-17.004921,16.635038,42.428726,5.748 1432,0.39420843,186.98499,25.765875,75.19852,5.685 1432,592.7546,219.9555,22.429993,45.871063,5.678 1432,-4.6822033,201.42868,19.591038,49.54303,5.668 1432,-12.638732,477.78143,30.720512,62.658447,5.585 1432,627.2279,-17.498913,17.117859,43.884926,5.558 1432,-6.494329,489.44473,18.890652,42.952606,5.524 1432,508.26633,220.27281,14.418671,28.229797,5.523 1432,155.16751,222.34056,19.364334,31.906754,5.461 1432,602.4193,217.61052,20.874207,40.125656,5.454 1432,340.10645,236.79544,32.814453,63.41754,5.437 1433,51.960777,220.88692,32.968613,72.579544,80.598 1433,37.859516,215.85878,32.447216,74.356186,11.631 1433,478.0868,231.2392,29.937958,64.454834,11.212 1433,448.12292,245.16191,24.242126,43.35219,9.071 1433,442.31238,227.27893,17.508972,33.16217,8.775 1433,463.11374,229.18286,28.55896,61.96338,8.551 1433,491.49573,227.59541,31.699219,65.80003,8.455 1433,389.832,215.17554,27.510498,66.2995,7.999 1433,452.65253,236.39621,30.548218,58.21472,7.151 1433,351.72034,228.78447,33.81317,68.23656,6.775 1433,498.44946,223.87863,18.368103,45.4993,6.601 1433,-16.80897,-64.59088,55.601227,146.97165,6.32 1433,506.28574,229.37814,31.013214,62.45346,6.305 1433,627.56384,-16.987143,16.870361,43.973957,6.255 1433,-8.537402,464.39273,37.33498,92.78024,6.116 1433,443.4102,238.28761,18.661835,33.932755,6.066 1433,23.92764,211.3294,37.315514,87.30353,5.965 1433,398.86838,219.21399,24.37622,49.56958,5.959 1433,505.71945,225.7201,17.786713,40.884674,5.823 1433,-5.365409,-16.98919,16.676035,42.145866,5.754 1433,373.68445,213.9144,32.071777,58.5401,5.728 1433,4.641615,221.49847,37.59945,93.1897,5.59 1433,487.85663,217.59584,25.956604,60.971024,5.586 1433,571.6819,219.23679,16.288391,33.36708,5.585 1433,-6.490629,489.2584,19.149296,43.40512,5.517 1433,426.33142,225.6556,19.583557,40.986588,5.515 1433,549.0775,234.82343,29.21112,64.76428,5.421 1433,433.50958,223.30574,18.907288,37.07457,5.379 1433,465.7118,224.08704,19.585724,38.04776,5.364 1433,-11.285905,-32.168137,29.298424,72.673935,5.356 1433,567.49744,232.96996,25.970093,63.7314,5.353 1433,437.21844,221.19116,39.63257,68.542786,5.333 1433,534.56354,223.24014,35.918457,85.02948,5.325 1433,351.40076,225.7019,24.575684,43.154633,5.319 1433,622.9621,-33.995308,26.163635,72.52396,5.267 1433,2.9671538,151.78378,19.542723,57.789276,5.233 1433,612.9273,454.1654,39.92169,108.140625,5.228 1433,602.3093,-54.418106,53.974976,137.78246,5.226 1433,426.01212,209.67036,19.303741,35.412354,5.219 1433,473.02832,226.92462,20.417267,44.390717,5.184 1433,582.8491,411.33945,72.508545,177.18997,5.168 1433,449.7306,232.56418,17.299103,33.034393,5.166 1433,536.33984,311.15436,143.85522,339.4572,5.137 1433,-73.65859,264.94977,202.2002,463.94086,5.123 1433,517.03705,224.71431,39.163452,87.22899,5.12 1434,57.300266,212.34543,38.35242,89.73572,85.389 1434,39.109375,212.39882,29.77797,73.88191,15.146 1434,450.07684,226.13358,22.524048,49.033417,9.134 1434,582.08685,236.07632,27.328796,75.84326,9.037 1434,436.51764,224.99939,30.548126,60.291016,7.101 1434,-3.7906315,187.97342,16.196508,39.53685,6.885 1434,471.6666,227.0463,25.203949,65.56726,6.447 1434,1.1035848,151.05847,25.948435,72.40178,6.165 1434,-5.0172806,-16.384052,16.451511,41.96448,6.076 1434,481.7251,223.03824,21.182495,40.991272,6.005 1434,551.1198,234.62668,37.703125,76.360596,5.891 1434,461.481,222.11963,27.546783,66.0715,5.887 1434,627.5461,-17.894712,16.60559,46.800297,5.886 1434,578.58154,242.53859,20.018372,50.75627,5.858 1434,568.50305,237.87622,26.782288,74.34973,5.838 1434,-8.821578,463.87314,37.550346,93.724945,5.822 1434,433.07983,226.1936,22.43219,44.954163,5.782 1434,416.93988,229.3979,33.77124,61.491745,5.764 1434,-16.679152,-63.65962,55.898026,146.43628,5.673 1434,435.57233,220.28694,16.914062,30.006119,5.628 1434,392.07898,223.21475,28.78064,66.06915,5.562 1434,599.6837,230.7846,26.478943,75.71094,5.518 1434,485.55484,237.40614,28.123077,62.017838,5.47 1434,-11.081142,-33.047546,29.112812,75.00018,5.456 1434,20.538364,202.0285,38.288086,81.66687,5.438 1434,457.61642,242.22292,21.321808,44.192642,5.35 1434,622.8296,-34.20906,26.58899,77.47905,5.34 1434,594.49194,238.89246,18.71643,49.86554,5.333 1434,359.01825,219.40154,23.74469,45.86165,5.322 1434,-6.5422893,488.97818,19.222189,43.616425,5.313 1434,414.48044,231.49237,23.855438,43.09857,5.301 1434,542.0131,262.1129,30.230286,56.948425,5.291 1434,572.8006,240.05911,15.946228,46.38327,5.284 1434,488.4079,228.72627,19.62323,39.808426,5.245 1434,613.23254,454.69952,39.62915,107.67059,5.191 1434,582.92426,412.7128,72.35541,175.52902,5.173 1434,-5.180638,167.25562,18.26934,45.17984,5.155 1434,-73.437836,264.59143,202.03287,464.20416,5.139 1434,452.28418,234.8384,40.914795,90.751785,5.086 1434,580.6813,247.28719,39.794678,97.85658,5.072 1434,603.4146,-56.328835,52.77545,140.51463,5.046 1434,393.8049,213.60028,19.42923,37.24765,5.043 1434,36.33602,206.9437,51.45466,109.17523,5.017 1434,626.3055,488.24503,21.305237,45.51468,5.006 1434,535.23706,310.6361,145.00574,341.44708,4.985 1434,617.66455,235.39899,19.468262,55.094116,4.935 1434,515.5392,245.85492,40.8172,68.22595,4.905 1434,6.9446015,202.51785,27.23102,69.625946,4.883 1434,493.37018,-34.96629,27.551208,72.234314,4.822 1434,533.6037,235.71352,38.87848,72.48796,4.813 1435,16.3074,200.79417,51.366123,105.2538,81.787 1435,529.1659,218.45784,22.634094,38.660507,25.75 1435,524.53894,218.5976,32.274353,70.68884,11.859 1435,383.22937,216.9478,24.8378,49.66133,10.685 1435,546.8019,213.31079,41.455017,88.27704,10.682 1435,38.688812,209.23889,36.497963,84.50455,10.39 1435,120.21811,211.57523,22.425995,48.51245,10.185 1435,194.98892,217.54686,29.366867,65.957535,9.63 1435,377.98212,214.28917,21.983765,42.10457,9.498 1435,562.93207,214.99278,39.513123,95.751205,9.128 1435,5.588906,204.81367,30.893383,92.04631,8.655 1435,442.1704,202.95773,20.892609,52.381805,8.334 1435,162.99406,199.67606,16.973557,41.773834,8.048 1435,540.1816,217.34306,31.828186,63.78514,7.772 1435,155.53865,199.68391,17.556427,41.06279,7.741 1435,559.08014,225.43494,24.313354,59.075928,7.706 1435,-5.5246067,-17.438951,17.444458,43.143562,7.351 1435,54.575943,205.7782,25.121674,51.14981,7.163 1435,115.24563,217.97095,33.11326,65.8017,7.05 1435,405.61002,207.56061,29.827026,63.041138,6.92 1435,-11.206117,177.91647,51.553425,129.40402,6.615 1435,524.54724,213.65836,55.63965,132.50906,6.536 1435,-6.263398,490.32697,18.866787,42.891052,6.49 1435,472.59,216.10728,32.32498,62.02617,6.386 1435,417.37384,206.2743,21.607666,51.30974,6.378 1435,562.5976,204.78497,30.752625,59.813324,6.375 1435,394.44385,212.2411,30.840637,61.17778,6.269 1435,626.7939,488.38406,20.265564,44.67624,6.214 1435,-11.70609,479.55014,29.713436,62.0007,6.169 1435,0.82924604,206.0087,53.206417,127.56195,6.116 1435,479.92798,226.1668,34.643433,63.871964,6.026 1435,447.50424,206.65393,27.289886,59.438843,6.022 1435,-10.875492,-31.446827,29.353065,71.228836,6.015 1435,157.8063,188.62067,26.233215,62.642487,5.894 1435,581.5415,222.53494,36.619812,107.38846,5.834 1436,161.01318,217.92654,23.083344,39.90683,12.526 1436,575.9289,221.54134,23.595154,49.543594,11.697 1436,445.1615,217.59378,30.725006,73.04733,10.897 1436,565.9711,215.60754,28.551392,73.474365,9.847 1436,337.38306,224.82053,19.531311,40.21988,9.338 1436,450.29248,212.94983,20.06076,46.872223,9.087 1436,562.31195,216.35309,21.362854,46.428345,8.969 1436,306.304,219.8072,17.259277,33.336838,8.689 1436,-5.4177523,-16.71118,17.091278,41.307922,8.266 1436,542.439,212.90836,24.36023,52.50833,8.104 1436,550.1497,211.95956,28.710815,67.333405,7.755 1436,301.23898,216.71765,16.722717,28.386597,7.638 1436,422.46503,138.46596,25.763458,83.62456,7.321 1436,613.37665,452.44794,39.176758,110.05371,7.105 1436,444.11526,213.25941,19.121735,39.917816,7.013 1436,331.69968,222.74432,17.926056,36.003113,6.85 1436,532.2851,219.7738,33.24414,66.284,6.844 1436,82.40368,205.10242,20.11628,46.792953,6.635 1436,619.5184,243.07579,18.187561,46.26262,6.58 1436,626.2275,487.5501,21.361023,44.93463,6.551 1436,314.54996,222.07,16.847687,31.988098,6.523 1436,89.62017,207.33635,20.210197,45.716827,6.484 1436,74.152725,203.2177,21.071,50.017258,6.243 1436,450.32788,207.62648,38.8851,69.86278,6.045 1436,484.75824,196.62845,28.562622,64.049866,6.032 1436,-11.169124,-32.25504,29.451004,71.39575,5.991 1436,345.8478,222.15315,17.984833,36.041245,5.893 1436,-6.004179,488.90735,18.176384,43.227722,5.751 1436,-9.564753,462.69336,38.15783,94.51788,5.691 1436,579.2063,223.94449,28.308228,69.435,5.672 1436,627.18243,232.52043,17.806702,46.668716,5.643 1436,627.41425,-18.645056,17.085876,47.8014,5.637 1436,623.1366,-33.63142,26.594849,76.698395,5.611 1436,3.2164085,-15.594838,16.456505,39.031376,5.496 1436,65.897,201.88837,42.399124,98.81708,5.474 1436,184.96585,220.18936,20.87468,39.138824,5.471 1436,465.3967,212.23174,20.462677,45.76039,5.467 1436,-73.21787,264.80896,201.47809,464.38818,5.367 1436,91.58764,206.59665,28.643929,66.23819,5.358 1436,324.29416,222.13028,17.376831,33.910553,5.353 1436,-17.620674,-63.502373,56.148956,143.06827,5.353 1436,513.68884,224.56625,44.125183,87.774475,5.328 1436,476.48932,209.21896,32.001556,76.667816,5.312 1436,378.97278,197.057,21.542297,38.126556,5.284 1436,538.84125,227.77345,55.120483,115.5941,5.276 1436,428.36087,232.15993,32.480835,70.56511,5.228 1436,62.0501,198.06734,27.086178,65.7159,5.223 1436,57.723297,200.09749,19.520142,44.875473,5.223 1436,573.8574,222.58797,51.10663,130.31334,5.181 1436,434.0187,227.22824,22.780914,48.53488,5.129 1436,370.19547,195.51608,21.419983,39.456543,5.089 1436,602.3849,230.21686,19.762695,36.61917,4.984 1436,536.00635,309.63055,144.49463,342.3142,4.938 1436,28.789883,194.79424,29.720383,62.53514,4.936 1436,586.5685,217.58235,31.178589,56.390396,4.921 1436,275.6906,217.49667,17.819916,28.045715,4.912 1436,386.6457,203.56297,20.147217,39.52974,4.886 1437,512.94946,215.29898,27.852905,73.81827,51.203 1437,617.43787,230.63051,20.871582,53.11113,12.046 1437,-5.399437,-17.713486,17.76638,42.62626,7.902 1437,367.95166,238.01137,25.05133,43.312363,7.385 1437,68.257034,216.99413,30.047653,59.777786,7.239 1437,151.51054,217.80965,21.43608,41.031723,6.958 1437,330.53442,226.4049,20.562683,32.55258,6.938 1437,626.9223,488.52457,20.371887,44.50949,6.905 1437,52.8363,217.64024,29.131641,60.82048,6.864 1437,-10.784828,-31.67518,29.435863,70.15085,6.789 1437,626.16943,219.9515,17.888672,44.63614,6.74 1437,180.18776,212.04832,17.25534,35.807922,6.656 1437,408.64386,228.96683,25.319641,40.69937,6.6 1437,212.39702,212.90013,17.0309,35.347305,6.589 1437,436.3042,35.00758,27.99234,102.72334,6.251 1437,138.36082,216.43567,30.237839,65.26581,6.228 1437,203.76758,212.70901,16.050262,34.955734,6.224 1437,617.4041,59.931908,19.80304,36.17518,6.145 1437,0.85773826,85.83313,25.046532,88.23456,6.058 1437,195.67789,213.28444,16.626068,35.11209,6.038 1437,-4.3046474,185.39511,17.93531,48.93358,6.028 1437,-8.682361,464.47504,37.548363,92.65045,6.005 1437,524.8462,97.84989,31.22754,81.42135,5.957 1437,-5.834494,489.34177,17.98318,41.428802,5.915 1437,81.129906,221.47046,22.028908,47.01837,5.85 1437,64.93651,216.4757,21.84301,44.712173,5.78 1437,187.73291,217.36525,16.78093,39.790817,5.739 1437,602.63434,-56.631798,53.708435,130.46698,5.719 1437,-0.100176334,184.13661,21.961973,68.78967,5.638 1437,20.592756,200.3222,36.731216,77.47168,5.565 1437,38.78543,203.2013,36.01303,74.69324,5.548 1437,621.8746,-33.960808,26.984924,71.27415,5.515 1437,506.88705,224.1579,22.888092,61.967224,5.509 1437,612.911,454.20483,39.51886,108.30731,5.483 1437,543.1844,224.21143,22.367065,46.585327,5.414 1437,-17.602072,-64.97647,55.873817,144.65623,5.392 1437,501.09937,199.39401,47.01129,101.90878,5.362 1437,220.3663,210.74133,16.98523,30.397354,5.346 1437,392.33203,237.24544,22.582336,34.117416,5.305 1437,-73.1807,264.73907,201.78574,464.5296,5.292 1437,593.4398,-42.47646,46.207764,91.01708,5.251 1437,461.95105,129.48537,28.178467,76.7104,5.251 1437,598.4984,204.17152,37.166504,77.99025,5.229 1437,399.74524,231.58978,23.956665,38.096252,5.221 1437,172.3375,213.6732,17.218353,34.7883,5.189 1437,522.7218,216.47093,29.09967,69.66292,5.128 1437,110.46829,198.98277,25.329193,63.841385,5.119 1437,420.27966,213.82727,38.186584,72.477295,5.081 1437,182.64673,208.82999,27.324951,61.033813,5.08 1437,170.7927,226.35646,19.545105,40.094406,5.065 1437,178.85648,225.71654,18.189499,39.582047,5.054 1437,394.11456,209.59276,19.650513,38.58107,5.054 1437,107.48949,207.85657,18.433968,44.823654,5.047 1437,546.176,225.39963,40.360657,82.33246,5.047 1437,582.9097,412.99124,71.91705,175.20981,5.036 1437,624.8695,235.61783,20.53064,50.195435,5.032 1437,162.34558,218.45323,19.786758,39.44966,4.989 1437,535.6167,309.4234,144.73499,343.88275,4.948 1437,3.227789,-16.604876,16.833351,41.178646,4.878 1437,409.0688,206.30542,22.255371,37.519867,4.86 1437,50.52852,217.84952,20.819092,41.607574,4.858 1437,315.71912,222.01268,20.565186,30.255798,4.845 1437,-6.008133,189.20572,35.3987,93.87088,4.818 1437,-21.504692,402.55444,78.82065,175.04474,4.814 1437,493.59116,230.1112,237.5914,512.9661,4.746 1437,345.0847,227.2102,20.606476,31.374329,4.738 1438,583.0423,212.3208,28.288513,89.80908,76.831 1438,592.36633,234.83014,22.8031,65.91858,12.41 1438,430.69638,212.27588,22.21054,40.91577,11.404 1438,20.619898,211.04158,29.169607,64.40877,9.94 1438,419.2636,205.5072,22.446411,45.52774,9.381 1438,44.21807,212.79648,30.215614,58.50125,9.368 1438,7.2972608,203.59567,33.331356,91.23514,8.603 1438,100.885704,207.43666,30.016685,65.53642,8.267 1438,-5.5210123,-17.832321,17.783318,43.22175,7.956 1438,42.878223,213.78616,19.067616,43.98947,7.841 1438,422.42023,207.38809,29.519226,64.927765,7.799 1438,27.093437,222.92575,32.598633,61.05252,7.771 1438,353.81128,226.64287,20.230194,31.349045,7.592 1438,552.24664,208.9294,32.06665,83.559494,7.234 1438,9.909047,214.04099,19.710358,48.706024,6.964 1438,33.192757,217.04604,21.077194,46.454544,6.963 1438,57.517197,215.32779,20.084076,41.885284,6.89 1438,-10.861044,-32.0796,29.68564,70.992935,6.857 1438,382.88373,237.35957,22.897858,43.62068,6.671 1438,115.84807,210.94287,29.90744,60.549805,6.522 1438,467.18552,238.1025,34.151215,56.946274,6.397 1438,433.11282,80.03356,20.842407,55.71824,6.304 1438,569.0,220.11026,29.456299,81.37796,6.268 1438,60.853165,207.27473,28.6035,60.19963,6.096 1438,-8.773449,464.90353,37.529846,91.98416,6.069 1438,-6.00644,488.54132,18.424826,42.94879,5.956 1438,85.77732,207.3584,36.680794,82.93518,5.954 1438,406.96857,200.55846,29.204987,64.9709,5.89 1438,68.401764,206.05603,36.1455,83.14517,5.781 1438,49.969673,209.21263,18.798653,44.882782,5.758 1438,86.12618,192.44742,27.62114,67.46652,5.755 1438,-4.891638,192.60974,35.02471,91.478455,5.67 1438,170.58884,221.43304,32.624756,73.21832,5.653 1438,578.4062,248.24324,20.410278,59.152664,5.633 1438,627.5603,-18.165451,17.144287,47.777557,5.612 1438,347.31927,228.71466,18.52481,30.607605,5.61 1438,133.83171,214.79153,29.406784,60.413116,5.575 1438,440.0798,213.51462,20.621246,37.867737,5.54 1438,612.99054,454.86758,39.856873,107.37399,5.518 1438,16.335701,217.6764,21.454552,51.308212,5.428 1438,143.85962,221.39363,29.076263,62.335526,5.422 1438,614.2017,223.31172,34.110657,99.748276,5.417 1438,626.63904,488.40753,20.973145,45.482056,5.37 1438,3.0038166,218.07672,20.22964,51.463318,5.351 1438,2.8114164,-16.930304,17.164507,41.23511,5.184 1438,438.51007,160.38661,31.06726,73.2832,5.161 1438,-73.22669,264.42487,201.6109,464.3841,5.16 1439,-5.5752177,-17.23201,18.173693,42.493404,9.455 1439,68.60107,208.32574,31.07988,61.68045,9.298 1439,38.133205,204.27875,27.965366,66.86218,8.169 1439,589.7162,245.51393,13.061096,25.560837,7.834 1439,54.745758,204.20187,30.187881,63.9505,7.459 1439,-11.185467,-32.397,29.734684,73.48521,6.778 1439,-3.4644217,190.20473,16.605923,42.97426,6.676 1439,-9.58265,461.77124,37.97268,96.074646,6.627 1439,20.445683,202.61703,31.239796,68.090546,6.206 1439,-5.8210745,209.98624,19.365017,49.168457,6.035 1439,414.42624,73.33624,29.099762,75.4218,6.023 1439,-6.373686,280.30945,19.173248,42.638824,5.944 1439,4.044877,273.0597,30.256268,70.668,5.872 1439,622.8032,-34.257805,26.703125,76.171974,5.865 1439,-6.03386,488.42978,18.395735,42.89102,5.82 1439,582.5104,241.04462,12.806763,26.093689,5.775 1439,613.15454,454.13995,39.194824,108.08325,5.677 1439,7.0752883,192.53209,33.9646,88.49638,5.662 1439,627.17725,-19.201849,17.36676,48.203457,5.629 1439,49.372066,215.68553,22.77863,49.534286,5.549 1439,2.545795,-16.056362,17.240017,41.04445,5.434 1439,1.8302268,203.4359,19.441757,50.54373,5.423 1439,587.31946,63.762226,29.32312,77.63829,5.227 1439,459.5448,232.6823,32.36743,60.86458,5.227 1439,572.70074,298.88425,31.53363,52.012512,5.212 1439,429.08157,60.08926,29.26941,93.078415,5.195 1439,555.7262,75.08431,28.413757,92.00153,5.194 1439,385.506,237.11713,23.72873,49.301086,5.19 1439,467.73077,225.7527,19.047241,32.16124,5.179 1439,-73.14849,265.42975,202.16147,463.33295,5.138 1439,-5.5563745,100.65625,19.296127,50.648224,5.092 1439,17.638927,212.07983,20.681217,46.82788,5.0 1439,597.4135,250.04826,30.545837,71.39229,4.996 1439,-13.139675,188.39163,46.565968,129.1138,4.973 1439,444.82477,237.18724,30.437958,66.33296,4.972 1439,-19.71807,431.1966,57.151443,146.73773,4.945 1439,437.43567,40.10514,28.747467,89.07546,4.926 1439,284.3081,217.81798,15.393677,27.74495,4.925 1439,626.43396,488.46887,21.119507,44.74176,4.917 1439,448.91177,219.2991,21.428528,40.455933,4.906 1439,536.3817,311.099,143.37445,339.91644,4.899 1439,-10.026307,86.439285,28.72799,76.15657,4.857 1439,-41.726242,359.37762,114.09445,280.5144,4.819 1439,-17.455189,-64.49916,56.084236,145.8352,4.791 1439,457.66046,222.91153,20.151703,35.679657,4.783 1439,582.9531,409.78134,72.186646,179.51614,4.77 1439,475.7448,219.41489,18.152954,32.142853,4.737 1439,11.692226,-19.25742,58.689053,130.7016,4.689 1439,619.5858,202.83162,19.20166,52.076843,4.678 1439,187.12918,179.088,18.95816,35.343704,4.659 1439,586.4784,-15.644751,32.008423,69.08048,4.629 1439,569.195,299.68454,23.40503,38.854553,4.622 1439,556.2023,277.59842,32.024597,65.8555,4.619 1439,446.56863,147.33661,30.036865,79.36948,4.603 1439,541.36487,-2.8119526,27.318298,67.94308,4.601 1439,597.69824,240.55087,13.320374,24.5253,4.599 1439,429.54163,35.705147,27.734497,76.94348,4.579 1439,-10.54929,275.2372,29.623402,67.550385,4.558 1439,602.86487,-56.471424,53.13086,137.69904,4.546 1439,10.103475,204.53896,20.464169,48.88849,4.538 1439,83.04925,211.88766,30.212967,58.621246,4.451 1439,573.86804,238.04623,13.472839,27.788544,4.438 1439,-14.949397,123.395615,51.409557,140.53664,4.423 1439,91.483116,-12.969587,15.76815,35.077938,4.423 1439,493.9063,228.37708,237.90039,512.9423,4.42 1439,451.0834,215.19211,30.281006,56.466187,4.419 1439,163.99019,172.0698,16.694107,31.97815,4.418 1439,416.23233,196.27371,25.452423,64.20096,4.413 1439,-5.183747,300.15503,17.790012,46.446014,4.41 1439,60.569695,-11.2661705,54.13366,120.62178,4.38 1439,619.5524,148.61238,18.889221,51.676407,4.368 1439,353.8454,230.18622,20.303833,32.539154,4.367 1439,511.69684,-7.7032166,27.769165,70.169975,4.364 1439,-4.9032383,132.95003,18.077766,49.07521,4.351 1439,-70.00904,-187.10959,210.99857,452.9454,4.331 1439,489.41617,-180.78587,236.40231,422.65152,4.324 1439,525.34076,-4.2565327,26.005127,71.42673,4.323 1440,515.63837,267.34314,34.73584,69.36438,7.733 1440,612.76935,453.15378,40.289,108.01248,7.564 1440,-5.6991696,-17.64406,17.895275,43.804287,7.324 1440,547.3395,249.25073,31.33429,69.02838,7.141 1440,-11.128971,-32.67023,29.631508,73.99121,6.834 1440,476.6647,237.05548,31.68808,67.979004,6.674 1440,626.86786,487.61017,20.34674,45.362,6.447 1440,544.82947,2.4840584,30.833435,102.19617,6.35 1440,-6.1987185,489.01926,18.678099,42.518524,6.211 1440,453.4496,58.272003,29.008942,76.91844,6.074 1440,446.32416,204.93936,29.324799,68.97464,6.047 1440,-5.480419,98.69241,19.330597,51.70128,5.952 1440,38.696484,210.46205,28.279903,63.453476,5.948 1440,622.9482,-33.34916,27.293823,75.77917,5.803 1440,-12.322937,475.75613,30.461163,64.0762,5.733 1440,73.95132,-26.751678,57.851143,119.31145,5.722 1440,2.8964944,80.38369,18.385609,45.709236,5.658 1440,58.507614,214.60486,32.599945,58.456207,5.559 1440,430.80173,198.7572,27.966278,65.83728,5.547 1440,418.008,179.18983,20.316925,47.254837,5.475 1440,626.9628,-19.91436,17.89215,48.508484,5.456 1440,20.778933,201.43286,37.103104,75.35727,5.407 1440,3.6089432,204.96802,30.561161,75.15057,5.351 1440,-5.248695,74.98806,17.494303,42.30813,5.305 1440,564.97784,93.39442,28.089355,86.46206,5.23 1440,-73.47537,264.77686,201.92552,464.71887,5.17 1440,540.8949,214.79945,51.66748,108.82271,5.089 1440,582.534,413.20074,72.69971,174.60712,5.059 1440,377.5946,236.47977,21.397064,31.460663,5.034 1440,44.016224,-8.649094,54.862576,111.72044,5.023 1440,91.71303,-11.197646,15.75618,32.855152,4.962 1440,-21.628511,402.3584,78.991714,174.98804,4.915 1440,595.5525,459.45532,40.717102,100.08063,4.849 1440,476.4069,218.09435,30.11029,56.89583,4.847 1440,11.396496,-14.290165,58.04601,124.33206,4.823 1440,535.4804,310.4399,144.75952,342.62833,4.81 1440,459.245,211.9135,30.917847,64.04811,4.768 1440,59.30309,-11.484945,16.288868,33.619144,4.725 1440,602.8629,-56.30976,52.825928,142.3966,4.725 1440,-40.77664,365.19415,111.48831,277.1175,4.724 1440,493.6368,229.12387,237.61832,512.7571,4.636 1440,75.80491,-11.123095,15.726067,32.59613,4.608 1440,83.902725,-10.627888,15.69165,32.27991,4.591 1440,-17.67936,-63.820602,56.214275,145.96779,4.56 1440,99.81471,219.73347,34.385056,74.11818,4.545 1440,194.47208,177.33765,19.344437,37.519577,4.458 1440,482.16293,243.61145,42.627045,81.72742,4.446 1440,588.66144,255.76416,28.476257,65.981445,4.445 1440,581.4376,87.8157,31.265259,95.08332,4.442 1440,290.68408,222.10484,18.625305,32.00772,4.439 1440,2.5562172,-16.332645,17.352232,41.649662,4.437 1440,93.566574,-9.809402,53.424225,115.85407,4.434 1440,488.646,-181.3368,236.94238,423.4621,4.433 1440,164.55986,161.52159,30.021835,59.96788,4.424 1440,185.35193,176.21121,20.061462,36.868042,4.415 1440,-4.362285,208.10399,17.5331,43.612778,4.411 1440,322.31567,214.40828,18.953247,30.433853,4.41 1440,-7.8381157,89.24756,37.647118,110.49332,4.393 1440,12.867826,82.990685,29.229937,66.14268,4.375 1440,-70.68719,-187.77283,211.3696,454.28912,4.372 1440,552.21796,-0.21669197,22.57782,53.96923,4.345 1440,461.2952,39.226326,29.826935,79.21745,4.314 1440,260.61246,223.11447,15.505524,28.194778,4.305 1440,203.03667,177.43315,20.227417,39.32193,4.288 1440,-6.879777,178.11288,37.159218,90.865845,4.285 1440,-37.609795,-130.72685,117.53499,288.98462,4.266 1440,67.34591,-10.254568,15.818573,32.32074,4.243 1440,554.8585,2.5147438,29.480225,75.78754,4.24 1440,499.64893,253.33322,43.833435,93.18906,4.23 1440,506.0574,311.37775,35.292816,68.81476,4.203 1440,268.36047,223.94989,15.545746,27.83142,4.181 1441,616.1345,295.2427,22.245056,43.299652,8.869 1441,17.23597,211.32455,20.207726,50.728973,8.408 1441,37.14317,206.72845,28.959667,70.69467,8.072 1441,-5.9400263,-17.674755,18.292007,42.21423,7.93 1441,76.95907,216.25601,30.8107,63.576324,7.919 1441,620.9135,471.24283,29.629639,72.464264,7.87 1441,9.998533,210.23285,19.691862,52.741455,7.39 1441,46.322838,213.35815,30.96688,69.04431,7.324 1441,21.48822,206.14737,29.223839,74.66492,7.288 1441,6.193762,200.67206,33.082207,95.47626,7.13 1441,474.80252,203.22296,19.006805,42.209152,6.313 1441,619.64166,236.24146,17.170837,34.279236,6.138 1441,-11.571781,-31.449234,29.491337,67.753204,6.095 1441,61.529507,214.51993,30.478634,63.447906,6.094 1441,34.37816,212.32263,21.12461,49.71869,6.086 1441,502.70422,211.70853,27.174133,69.720245,6.059 1441,627.05396,-18.96162,17.132751,47.72779,5.953 1441,-6.024735,489.5438,18.148514,41.96335,5.848 1441,-8.981037,464.5386,37.70757,92.99069,5.822 1441,0.30211687,203.84856,24.708315,72.906296,5.782 1441,346.14304,227.70685,20.510162,36.832123,5.781 1441,491.8823,213.94206,28.129791,66.72069,5.691 1441,91.61338,219.53238,29.912384,61.123413,5.669 1441,622.7414,-33.47749,26.605225,75.505035,5.578 1441,7.1085157,174.4549,27.587929,72.087234,5.575 1441,478.12778,97.818665,31.166473,62.356842,5.465 1441,-3.4635277,187.01843,17.032276,43.45221,5.458 1441,369.3719,219.36449,20.23822,34.35356,5.423 1441,-13.29944,207.83865,46.644936,143.15701,5.387 1441,532.7697,228.3098,29.938171,61.623123,5.341 1441,-73.55932,264.15952,202.43533,464.57462,5.235 1441,517.89044,221.64728,29.033691,66.652405,5.217 1441,433.16223,233.7474,20.628784,35.576294,5.118 1441,466.78024,194.95407,19.135223,45.887573,5.098 1441,323.4171,230.18613,17.81897,30.271362,5.035 1441,627.7796,234.50568,17.093506,39.72635,5.013 1441,536.0326,310.16602,144.17743,341.85486,4.984 1441,488.22406,217.32251,21.264313,47.062195,4.971 1441,583.15283,411.9508,71.54071,176.02295,4.948 1441,603.1241,-55.737823,53.35431,137.3101,4.939 1441,316.02954,230.35066,17.017914,28.738327,4.916 1441,491.24548,97.4834,32.512573,62.918884,4.9 1441,543.4072,236.56143,25.321228,47.07785,4.89 1441,-21.578856,402.2093,79.39856,175.26166,4.802 1441,-41.34198,364.28516,112.41593,277.82965,4.742 1441,-17.075449,-64.19437,55.741676,146.54408,4.701 1441,2.7678943,-18.067425,16.938034,40.265278,4.692 1441,473.75818,101.49591,23.71341,49.47531,4.684 1441,36.06415,92.22891,30.440578,71.681915,4.655 1441,377.67767,225.05334,20.71106,33.460327,4.637 1441,536.6041,85.35243,27.681885,66.8268,4.631 1441,493.88324,228.94662,237.25323,512.68506,4.611 1441,-3.7379084,206.3214,16.273338,45.269943,4.606 1441,361.7882,223.70428,20.834717,34.716003,4.561 1441,14.247627,204.11139,50.448036,127.18848,4.521 1441,551.7892,243.18135,26.4281,45.543533,4.518 1441,475.91678,178.97705,16.50586,36.097595,4.404 1441,-70.661545,-187.23996,211.96906,454.9206,4.381 1441,98.84591,212.13875,39.656715,83.0406,4.381 1442,548.49536,236.90025,30.621521,65.76808,10.855 1442,476.3701,222.03445,30.025177,70.012115,9.773 1442,573.9634,237.10759,32.981445,65.234055,8.756 1442,449.59872,192.90666,20.579346,50.0179,8.029 1442,-5.402,-17.84111,17.252083,41.723892,7.881 1442,563.99774,233.25616,31.85559,62.580566,7.23 1442,453.94257,197.56601,27.013855,63.483795,6.867 1442,-11.091085,-31.20865,29.44703,69.28765,6.855 1442,462.51736,214.93732,30.176056,61.29361,6.59 1442,486.28485,34.03486,30.127686,87.53844,6.532 1442,619.36487,228.34332,19.092346,43.18579,6.485 1442,483.56888,208.17587,37.4852,75.18732,6.449 1442,474.3584,217.69286,21.568665,45.315903,6.221 1442,533.3419,235.33284,31.460327,66.09593,6.21 1442,456.69733,92.61656,22.560211,48.77217,6.204 1442,-6.271077,488.49152,18.772629,43.512085,5.723 1442,-12.471986,475.09265,30.722775,64.71277,5.534 1442,560.1513,227.02512,21.764038,43.122803,5.488 1442,579.5499,218.83086,38.701782,75.458786,5.471 1442,622.4037,-34.483906,26.867065,76.17839,5.388 1442,336.35196,217.95755,21.062256,34.85623,5.36 1442,443.21335,189.91084,19.552124,45.976166,5.336 1442,612.9905,454.92206,39.755005,107.05542,5.265 1442,-73.49169,264.7779,202.14679,464.0652,5.197 1442,-17.388584,-63.806202,56.066372,143.8804,5.174 1442,65.11733,192.31232,26.41935,60.813522,5.121 1442,468.24896,48.58968,31.698853,76.46367,5.084 1442,535.94257,310.42188,144.3916,342.4308,5.083 1442,3.4360929,-16.028032,16.355446,38.980385,5.069 1442,582.7967,412.29126,71.970764,175.75513,5.069 1442,627.02954,-18.305923,17.674927,46.988186,5.036 1442,490.1162,215.2926,19.398926,40.477356,5.034 1442,517.9397,220.3809,29.102966,65.6678,5.012 1442,584.9096,235.39984,20.74762,38.247955,4.955 1442,626.48016,487.9999,21.130676,46.039642,4.953 1442,469.60565,186.67767,27.262634,69.131744,4.945 1442,472.08685,91.55325,23.733765,51.08168,4.92 1442,465.00565,210.23169,21.939392,43.862,4.911 1442,-13.01798,190.03235,46.293026,133.0896,4.858 1442,-21.811852,401.64594,79.47406,175.50555,4.816 1442,602.56055,-55.27043,53.375244,136.99915,4.76 1442,497.78366,215.86111,20.053925,47.073364,4.748 1442,500.7641,210.13837,28.50238,67.20337,4.738 1442,494.0592,229.18536,237.0907,512.28577,4.64 1442,570.0251,227.10898,20.06073,39.528442,4.548 1442,548.40137,200.11153,30.305542,62.841354,4.512 1442,596.7962,244.33139,37.355713,93.55121,4.425 1442,626.99,230.78569,18.330444,45.417404,4.408 1442,202.10417,175.7972,20.373688,37.39174,4.403 1443,426.35605,219.79445,19.78482,40.86702,12.892 1443,432.91095,221.50395,19.4888,44.834793,9.519 1443,460.57202,226.8103,29.846313,75.186646,8.82 1443,-4.7858872,-16.57009,16.726004,42.32499,7.773 1443,273.43533,217.37215,21.729523,33.708908,7.507 1443,444.19666,48.827553,27.348022,73.15904,7.028 1443,441.45084,217.01254,18.033081,36.589157,6.848 1443,622.50793,-33.37344,26.929626,74.19322,6.714 1443,562.36206,213.93887,21.626709,41.87526,6.651 1443,164.87143,205.79227,27.457489,57.93564,6.337 1443,415.86777,213.93405,26.76773,56.53763,6.317 1443,-12.569699,-42.41674,41.662655,102.099335,6.182 1443,580.4371,245.21423,37.865845,96.20514,6.141 1443,446.8869,228.76328,30.37503,68.0018,6.136 1443,-6.497385,488.53326,19.144157,44.137085,5.98 1443,627.0261,-19.203472,17.547546,47.577953,5.926 1443,-5.4985356,219.3984,17.976458,38.95685,5.864 1443,598.0845,241.43459,34.25183,99.371994,5.591 1443,460.48254,219.53473,18.122467,40.555054,5.588 1443,563.24146,244.42111,38.688354,90.681885,5.469 1443,3.8178473,-13.719076,15.431645,38.115192,5.457 1443,-9.244042,464.26694,37.938904,92.576324,5.456 1443,-4.9127207,290.223,17.634052,46.001984,5.354 1443,577.4678,260.22833,22.148315,42.27942,5.32 1443,1.5457094,210.71652,20.33333,40.943512,5.185 1443,-73.09325,265.52765,201.43292,463.87457,5.159 1443,626.57996,489.0743,21.026245,44.816803,5.132 1443,582.6937,412.29144,72.18207,176.23065,5.124 1443,612.85205,455.28488,39.966003,107.424225,5.111 1443,-5.2808003,235.52539,17.67972,38.694183,5.061 1443,535.8798,310.2124,144.25946,341.80835,4.964 1443,547.45917,241.61119,40.66638,88.95393,4.939 1443,617.2027,212.48627,20.684631,53.89206,4.939 1443,436.16034,212.46776,27.099243,54.673965,4.911 1443,517.93695,208.34982,38.0968,88.549225,4.903 1443,603.3036,-55.74185,52.58667,132.27502,4.878 1443,-21.870846,402.0341,79.429436,175.17331,4.874 1443,568.5513,233.08485,20.317505,45.02455,4.873 1443,557.9743,219.35065,29.013123,67.48682,4.801 1443,-5.7397294,200.96808,18.32076,41.076645,4.764 1443,-4.8995967,44.882816,16.307575,36.58598,4.694 1443,483.17432,213.705,37.431396,83.043564,4.67 1443,428.66394,222.97578,30.78067,68.34511,4.636 1443,569.80804,266.2154,21.644165,42.285065,4.613 1443,528.7435,255.72336,23.432861,40.47104,4.612 1443,585.17505,255.12335,21.303894,45.263184,4.612 1443,-3.4162548,3.4977932,15.262398,39.117706,4.606 1443,493.6206,229.22498,237.67944,512.1736,4.604 1443,-5.0442815,122.65485,16.67021,39.56305,4.572 1443,-4.980989,104.73994,17.256292,41.412178,4.55 1443,-5.283003,149.65146,18.022266,47.33992,4.531 1443,168.52007,203.09209,20.532898,34.91954,4.504 1443,450.9098,60.088642,29.537231,73.207,4.496 1443,429.30374,198.1815,27.419403,59.617325,4.492 1443,489.6972,-181.16248,235.79285,424.24557,4.489 1443,-14.531509,118.47274,48.71327,144.24588,4.472 1443,-14.5086975,56.573166,48.264374,142.52025,4.453 1443,330.15527,219.80994,21.00708,39.346436,4.433 1443,622.9851,199.22746,26.66626,77.291336,4.404 1443,592.80896,261.20355,20.511292,42.2818,4.359 1443,575.96625,199.9661,49.640686,119.33676,4.347 1443,595.2736,-45.214962,43.772522,94.53652,4.344 1443,99.8033,158.44826,32.385117,65.73125,4.34 1443,-4.0376196,30.02592,15.323336,35.28252,4.318 1443,606.6719,209.0933,26.387573,64.356155,4.304 1444,569.882,212.13867,56.43976,157.6286,9.059 1444,-5.1141696,-16.51564,17.236252,41.902374,8.37 1444,410.11124,216.88667,21.845367,52.18672,8.267 1444,397.77466,213.05052,27.85373,60.304153,7.852 1444,533.3057,222.96834,29.717712,64.4561,7.778 1444,613.5783,451.7305,39.2489,111.453094,7.204 1444,241.54654,217.19359,19.613495,33.667343,7.097 1444,492.42477,230.77483,28.906769,72.631,7.019 1444,546.2993,220.35622,43.211,106.13646,6.784 1444,561.75726,223.44916,43.583984,110.8244,6.67 1444,622.7755,-33.72647,26.987183,73.04156,6.656 1444,529.41144,228.4318,21.869934,49.99762,6.374 1444,73.52022,213.17964,21.12136,40.799194,6.301 1444,626.9476,487.83768,20.510864,44.905304,6.217 1444,409.34293,167.51804,19.969452,54.43828,6.131 1444,-10.701864,-32.170746,29.446867,73.04249,6.063 1444,492.1312,232.9601,18.825592,44.539566,5.869 1444,514.36005,225.91916,44.36212,108.17206,5.858 1444,-5.9050183,150.86559,18.218163,44.09442,5.758 1444,66.966774,206.10374,19.636375,42.986313,5.736 1444,522.1954,231.5303,20.57837,45.78775,5.68 1444,530.1733,218.68417,42.788574,101.78174,5.669 1444,535.23376,175.76086,30.37915,74.64488,5.612 1444,-8.660211,464.1216,37.446655,93.426605,5.608 1444,-6.475726,489.37146,19.155106,43.122192,5.509 1444,60.07568,207.82495,30.67944,60.006073,5.497 1444,-17.499233,-63.711872,55.917004,144.7521,5.394 1444,393.77808,219.16245,21.113556,43.128113,5.377 1444,419.3838,210.78581,27.179993,59.720444,5.359 1444,27.51926,209.10849,33.952354,69.398224,5.217 1444,627.104,-20.756618,17.619019,48.514698,5.159 1444,75.421646,209.61864,30.279556,55.556168,5.157 1444,-72.72557,264.60394,200.91559,463.04486,5.123 1444,3.5191154,-14.615515,15.887194,38.027264,5.113 1444,510.83737,230.42145,27.31247,63.263367,5.085 1444,557.4285,225.87546,29.787354,67.22467,5.07 1444,603.7673,-58.39898,52.226074,139.00731,5.069 1444,83.50086,207.89534,16.018112,33.27176,5.041 1444,380.2316,220.05652,28.8909,54.016968,4.986 1444,407.32632,183.23338,26.44751,69.34714,4.931 1444,535.90515,309.1284,144.83875,342.81082,4.928 1444,108.22976,210.37805,31.186623,67.862,4.861 1444,-11.194959,237.1531,30.346478,62.62195,4.859 1444,562.58264,226.35942,20.454224,42.072342,4.82 1444,582.92865,411.91455,71.82526,176.27283,4.816 1444,-21.716553,401.78583,79.27871,175.67065,4.808 1444,565.5858,220.64404,29.58667,56.13745,4.738 1444,459.04785,221.04053,17.71634,35.413177,4.703 1444,618.92584,489.49225,20.208801,41.64331,4.701 1444,494.37045,230.38925,236.44626,512.2782,4.655 1444,592.2834,211.52638,47.38568,139.5891,4.608 1444,442.6646,226.0837,18.442017,36.712784,4.579 1444,-4.935047,3.7129917,16.995834,40.37645,4.575 1444,433.38312,220.41637,19.233582,39.649704,4.573 1444,348.14398,215.4145,30.235077,58.25206,4.54 1444,505.19324,234.81567,20.429688,49.35669,4.531 1444,417.93655,212.93558,18.770905,42.135605,4.528 1444,543.8766,223.62486,21.58789,46.56349,4.516 1444,-4.8121986,205.4827,15.87076,35.976105,4.514 1444,570.633,224.59538,19.835022,36.202377,4.485 1445,434.8927,217.78755,20.178528,45.095383,13.633 1445,436.59363,217.57942,27.415222,65.90996,9.407 1445,320.445,217.34134,22.052368,43.792023,8.877 1445,-5.303832,-15.984539,17.250404,42.094803,8.353 1445,-10.639577,-31.031,28.94381,71.46828,7.168 1445,3.4034467,-13.789242,16.161547,39.031647,7.057 1445,441.99854,213.87785,17.860535,35.87111,6.783 1445,421.6698,217.86076,28.986298,59.686752,6.736 1445,405.79453,223.62746,30.072601,55.03511,6.676 1445,478.44092,228.75095,28.580292,67.98932,6.605 1445,497.82343,243.28772,19.396545,45.83081,6.463 1445,596.5657,216.80232,29.98114,85.512924,6.415 1445,244.28564,225.38872,18.653198,31.397049,6.25 1445,-5.897081,151.6432,18.716715,45.07112,6.179 1445,-6.3001585,489.07886,18.85295,43.079468,5.868 1445,453.37683,213.85258,35.121216,78.35658,5.792 1445,-17.395092,-61.914772,56.12405,143.04424,5.722 1445,-3.764213,189.71121,16.253698,35.63649,5.689 1445,448.16028,219.54245,20.95398,50.68112,5.656 1445,-5.0472937,4.4684696,17.351059,40.10431,5.59 1445,627.3384,-19.593708,17.454712,49.26426,5.473 1445,492.10294,233.1042,17.529877,45.99565,5.389 1445,-8.916364,464.49557,37.76236,92.50162,5.387 1445,615.9765,235.52483,21.101074,62.53322,5.373 1445,275.70367,211.77782,17.221466,32.681595,5.315 1445,417.94366,222.62408,20.613739,38.267517,5.275 1445,-73.10106,264.93396,201.41612,463.27405,5.252 1445,-4.9877195,24.323765,17.476822,44.647,5.211 1445,622.82184,-34.403133,27.0542,77.57251,5.194 1445,367.699,176.97168,24.255188,45.72873,5.157 1445,626.53516,488.49606,21.026184,45.89566,5.119 1445,34.370247,206.22313,18.751343,45.159103,5.09 1445,442.17688,154.14308,21.744781,59.441315,5.045 1445,582.8907,411.73456,71.9715,176.857,4.972 1445,584.56067,224.64072,26.758362,76.74274,4.901 1445,536.19507,309.75037,144.31055,341.9154,4.892 1445,29.260536,200.78003,28.141731,70.84146,4.881 1445,428.04767,219.50943,18.964966,36.313156,4.862 1445,414.6486,214.45291,49.283417,117.479065,4.857 1445,613.1152,454.7235,39.618347,107.202515,4.837 1445,-21.521122,402.83185,78.96585,174.54767,4.821 1445,354.9975,222.31413,19.464325,35.190506,4.78 1445,-5.6780057,218.71559,17.860048,39.750137,4.767 1445,602.9094,-54.96498,52.889465,137.60463,4.731 1445,448.34705,209.31894,18.388489,36.14087,4.652 1445,493.97827,229.47678,237.10596,511.9534,4.628 1445,131.29337,194.09856,17.770813,38.75511,4.582 1445,485.4208,13.076099,28.732635,76.81496,4.553 1445,438.95386,188.5037,26.08136,65.56641,4.552 1445,355.1663,210.44266,18.250153,31.999023,4.532 1445,11.11408,-14.591673,16.564447,39.592884,4.493 1445,-0.61831117,139.52126,27.566353,72.57396,4.484 1445,457.2412,221.3138,21.619263,49.226334,4.483 1445,-3.7311435,204.01447,15.767527,36.32675,4.471 1445,465.63922,223.52873,20.663269,49.224472,4.44 1445,370.85034,221.17076,31.53534,59.8972,4.406 1445,571.9344,51.4723,32.30829,66.3461,4.396 1445,400.7338,226.79074,24.212433,43.289307,4.39 1445,217.97247,218.04974,20.196548,32.596954,4.37 1445,2.9703922,210.808,18.51063,37.40529,4.35 1445,-14.515628,123.16018,49.785244,138.50537,4.343 1445,556.4109,48.06942,30.402893,72.87146,4.332 1445,357.81628,169.2432,30.17273,68.97516,4.315 1445,474.24554,220.04195,19.033539,42.25212,4.305 1445,489.9749,-180.81653,236.07013,423.25638,4.303 1445,-10.722399,133.05678,29.425926,66.519424,4.299 1445,505.8543,247.79645,17.756348,39.283752,4.299 1445,298.39078,214.94058,21.28897,37.285187,4.291 1445,43.099045,207.1972,17.768398,41.676468,4.257 1445,340.46542,211.1724,14.748016,25.277664,4.254 1445,267.5271,219.33865,17.766632,30.773163,4.253 1445,-5.4478974,131.67068,18.119396,41.061707,4.231 1445,402.3709,52.638443,19.460754,38.350876,4.214 1445,-5.2286882,70.20926,18.068588,46.98153,4.208 1445,226.09383,221.90431,19.199265,29.740723,4.207 1445,585.4898,-102.74804,75.947815,235.0943,4.202 1446,344.81573,218.2523,23.713623,51.031082,10.966 1446,-4.4580536,-15.93518,16.737432,41.305996,8.307 1446,481.434,110.64215,20.99997,51.8349,7.979 1446,505.74283,282.19812,21.948761,49.011505,6.579 1446,622.77716,-33.147617,27.078064,71.86601,6.492 1446,-10.398144,-31.090672,29.60086,71.928696,6.453 1446,627.3503,-18.243587,17.46112,45.226795,6.232 1446,475.7736,294.5117,16.876587,28.805573,5.851 1446,-0.09790778,227.01993,25.944557,64.78049,5.846 1446,-3.744477,187.08995,16.472185,40.03383,5.759 1446,-17.353016,-63.64126,55.76034,145.81589,5.712 1446,420.87738,101.63418,29.741974,73.64936,5.599 1446,-12.702612,477.3608,31.209602,62.433014,5.505 1446,181.98402,188.79832,27.369186,63.777023,5.448 1446,-73.48904,264.276,202.07162,464.25836,5.354 1446,-6.578039,489.45117,19.215061,42.825317,5.351 1446,3.3403063,-13.763853,16.982174,37.714035,5.331 1446,613.32587,453.11993,39.10504,109.12213,5.212 1446,626.24066,487.4403,21.171204,46.233765,5.209 1446,405.30658,231.08215,30.325745,65.51843,5.206 1446,617.10016,286.62808,21.504028,56.074615,5.101 1446,-4.5037374,203.24109,15.762316,38.043655,5.101 1446,537.259,310.0108,141.90332,340.40375,4.887 1446,42.447735,136.47604,31.550983,69.55133,4.857 1446,-21.54654,401.95334,79.121506,175.31436,4.843 1446,192.1478,195.77065,21.133224,47.902786,4.834 1446,582.9647,410.47336,72.14911,178.68521,4.831 1446,-14.394647,123.510704,49.326015,138.09552,4.828 1446,-10.376716,232.57469,39.109104,94.77614,4.798 1446,243.67194,232.19061,17.10202,29.147278,4.793 1446,7.8839645,232.00763,22.49445,47.436066,4.79 1446,-5.013511,227.84225,17.75148,41.227142,4.759 1446,602.73645,-56.409874,53.81372,139.03,4.756 1446,380.2345,53.124233,27.490662,70.92401,4.75 1446,598.3096,238.1833,28.068176,78.02544,4.732 1446,521.16705,254.12062,22.722473,49.47261,4.726 1446,-40.612953,365.08264,111.347145,276.86133,4.698 1446,298.87213,220.89745,19.867249,35.021194,4.698 1446,492.08563,204.09778,31.64093,75.138794,4.648 1446,364.20578,205.63858,29.111786,57.38919,4.59 1446,482.65375,291.3389,18.535828,31.384216,4.583 1446,509.52283,255.17593,29.970703,69.373474,4.493 1446,493.56723,228.4639,237.54727,514.39087,4.477 1446,220.13771,230.87805,16.185287,25.148315,4.472 1446,250.37164,230.36723,18.605896,33.530838,4.416 1446,510.03128,178.83162,29.70987,77.55199,4.413 1446,-5.663388,123.22902,18.500507,41.318756,4.392 1446,-5.13717,138.79074,17.658596,41.969025,4.392 1446,185.77216,226.79623,19.5896,30.007324,4.381 1446,489.92764,289.37332,19.427673,33.628418,4.369 1446,236.25165,233.30838,16.482407,25.878143,4.346 1446,544.84344,228.90515,49.043762,124.47528,4.339 1446,583.0197,243.12866,36.000916,101.753235,4.337 1446,493.94537,281.93588,27.210693,60.202454,4.321 1446,57.916954,203.04231,20.123466,43.565536,4.304 1446,123.022385,194.74994,18.855408,38.569153,4.299 1446,293.4475,211.4479,13.677368,28.126663,4.289 1446,515.091,255.35056,41.92737,87.65198,4.224 1446,-8.008371,195.19608,37.710606,87.56894,4.201 1446,35.21753,-13.804538,16.28889,36.823303,4.192 1446,564.33765,256.628,39.58069,100.49725,4.187 1446,585.8929,-104.05873,76.14844,238.40096,4.18 1446,418.83438,117.55885,20.894653,51.75815,4.142 1446,421.96854,241.62747,30.347015,77.2142,4.134 1446,-4.9079237,155.18723,16.917492,41.604126,4.121 1446,443.7411,-14.360668,15.46225,37.15846,4.106 1446,507.5925,102.330925,16.891083,29.666832,4.1 1446,15.028415,129.24615,52.770702,127.40033,4.09 1446,47.37442,130.53104,25.091927,47.363358,4.078 1446,21.49564,209.64868,30.032879,59.869873,4.057 1446,489.7264,-178.46252,236.40933,419.94537,4.051 1446,-37.937096,-128.6056,117.73343,288.28983,4.039 1446,330.47104,215.85089,20.634644,44.362244,4.026 1446,614.3445,235.49579,24.930725,82.02673,3.977 1446,619.03143,-19.191721,18.34314,42.764465,3.975 1446,470.16006,293.1678,29.395752,64.82132,3.958 1446,43.027023,-14.415203,16.196022,38.382664,3.94 1446,257.073,230.3423,21.294067,35.347305,3.938 1446,383.0813,87.71156,25.782593,83.393555,3.928 1446,26.995098,-15.115164,16.604359,37.182762,3.924 1447,503.5219,222.06693,22.890137,58.264618,80.343 1447,484.6498,222.3725,24.390259,61.235046,66.079 1447,489.35458,219.2503,31.109406,77.15515,15.754 1447,-5.9695287,-18.975363,18.657305,46.118332,9.652 1447,358.56708,216.68973,27.66568,59.351013,8.397 1447,-10.850971,-32.305435,29.68751,74.1115,8.221 1447,548.585,255.40085,29.10382,64.59091,7.999 1447,613.5587,453.14136,38.54492,108.335266,7.274 1447,548.33966,261.22406,18.545044,33.13556,7.083 1447,482.90576,217.08202,19.14441,46.01674,6.961 1447,329.10614,214.14885,21.841492,46.950302,6.792 1447,26.534311,197.07442,22.853842,48.838455,6.532 1447,164.87433,186.26082,29.76059,70.084915,6.35 1447,626.7808,487.50082,20.994568,45.085358,6.053 1447,-8.476078,464.96667,37.225662,92.6131,5.907 1447,2.4764132,-18.520973,18.397476,44.34807,5.9 1447,395.63614,65.544464,28.848053,77.9628,5.866 1447,498.80353,222.60919,36.23346,82.07922,5.737 1447,10.651581,199.44456,19.188774,43.92949,5.734 1447,562.1592,254.4477,33.82715,58.767944,5.688 1447,622.7541,-33.829044,26.980408,76.60585,5.435 1447,627.094,-18.56583,17.349731,47.364803,5.34 1447,186.5525,190.98376,19.144394,41.93109,5.316 1447,-6.53792,489.72388,19.077305,42.572815,5.307 1447,534.66516,257.6587,28.570435,66.217316,5.262 1447,-17.449873,-64.96674,55.878365,145.12355,5.252 1447,498.20734,214.18912,20.929993,49.134033,5.186 1447,587.6081,240.82063,31.582092,60.68132,5.171 1447,-73.28034,265.5019,201.27133,462.43292,5.117 1447,615.34686,230.7359,25.0542,74.130615,5.091 1447,343.98636,210.20427,26.75,60.040024,5.079 1447,37.045246,193.25859,27.899967,60.65892,4.995 1447,519.92725,232.95728,19.602112,43.43878,4.913 1447,535.7705,310.21503,144.37836,341.98676,4.866 1447,176.51169,185.75569,20.93216,48.807724,4.843 1447,419.9155,80.198425,29.561401,72.20044,4.841 1447,-4.420289,217.31563,16.130093,40.132492,4.838 1447,-1.9549155,-19.739754,28.261261,71.47216,4.81 1447,-21.584587,403.1709,79.18138,174.6665,4.81 1447,516.51416,227.8973,37.03192,80.46837,4.762 1447,573.8667,228.5871,55.23474,157.29321,4.752 1447,-40.76767,366.22675,111.122086,276.78705,4.713 1447,583.1121,411.84436,71.62488,176.67566,4.701 1447,-14.792914,171.21408,48.78736,133.69855,4.669 1447,602.6337,-57.198128,53.94867,141.00574,4.642 1447,-4.539079,201.53876,16.473125,40.598846,4.631 1447,491.29605,214.0445,17.599335,37.10005,4.588 1447,4.540452,-35.091625,29.257057,74.81979,4.578 1447,505.78366,212.43301,19.022797,38.270737,4.562 1447,9.615039,-19.963829,19.22091,44.253532,4.552 1448,538.0688,218.7695,26.570312,57.052246,87.63 1448,506.87793,220.10844,25.649597,60.211716,86.224 1448,423.10544,204.94443,28.640625,69.822296,10.965 1448,384.0486,17.917698,26.49118,74.94873,8.953 1448,114.703606,185.79578,32.574806,76.14996,8.276 1448,359.4793,208.97977,26.989197,64.886444,7.656 1448,556.17523,215.18002,31.052551,75.1015,7.382 1448,390.27075,35.534657,26.470398,82.902115,7.286 1448,546.4187,218.7706,28.495178,68.48807,7.276 1448,404.2951,211.2943,32.09073,65.815506,6.701 1448,208.33855,208.97618,23.199417,47.9998,6.669 1448,434.14642,210.28238,30.271759,69.919495,6.655 1448,129.8486,191.18185,33.866592,69.92612,6.586 1448,373.79916,209.95563,29.79486,67.70514,6.538 1448,-5.4917107,-17.99353,18.450861,45.239475,6.39 1448,-8.906935,464.8319,37.732117,92.84546,6.104 1448,627.2088,-18.408897,17.208374,48.909218,6.029 1448,384.9168,216.59631,31.361603,59.489685,5.935 1448,-4.9558396,232.9877,18.190334,41.2865,5.888 1448,626.45575,488.9174,20.806702,44.89096,5.883 1448,-6.132003,489.50647,18.490776,42.00934,5.849 1448,-5.017762,219.40585,16.739689,38.034515,5.61 1448,622.65247,-34.22495,26.86908,78.630875,5.539 1448,-10.534014,-32.27388,29.652548,76.320854,5.515 1448,396.21582,25.113792,27.924469,69.18123,5.438 1448,417.95804,218.27582,22.748718,50.742493,5.397 1448,508.3446,213.55443,18.372253,41.597214,5.353 1448,528.1881,205.45035,28.308167,59.65091,5.352 1448,426.01318,200.61272,21.59787,43.252136,5.298 1448,149.40993,198.79388,31.393219,70.934875,5.257 1448,-5.372827,247.6031,17.884726,43.013626,5.25 1448,-73.02675,265.5896,201.18117,462.80005,5.208 1448,2.051512,228.74005,19.269775,38.897797,5.144 1448,582.91895,412.99756,71.788086,175.65533,5.079 1448,478.9001,213.35869,28.30542,55.073715,5.076 1448,612.97064,455.41367,39.637695,107.18741,5.044 1448,535.9953,309.2306,144.9303,342.17725,5.041 1448,400.27966,216.64433,22.978668,42.955124,4.949 1449,611.54016,222.54128,27.018433,76.29945,93.767 1449,570.377,217.1405,29.478455,85.09436,65.444 1449,465.67093,215.59077,22.679565,48.06581,15.003 1449,440.05847,226.37099,33.033722,66.307144,10.364 1449,-5.43417,-17.990875,17.773104,43.134953,8.199 1449,604.42053,227.81825,23.78888,58.10225,8.139 1449,441.0684,224.10829,23.19336,42.442917,8.135 1449,550.39667,235.00723,29.122742,70.95169,7.771 1449,467.9511,218.98846,31.124146,68.10501,7.648 1449,581.7015,221.79077,22.929382,58.595184,7.506 1449,587.5383,212.73093,30.91632,61.639008,7.492 1449,484.50635,222.2137,31.00061,69.99254,7.236 1449,621.953,227.89966,21.63556,58.159424,7.05 1449,599.2828,234.97536,37.611206,84.22502,6.905 1449,448.7784,220.31708,21.344574,37.994415,6.752 1449,-11.273551,-31.860945,29.264355,70.989365,6.672 1449,498.4812,224.69354,32.032898,67.34253,6.378 1449,-5.8122854,489.18228,18.096268,41.94992,6.361 1449,622.3899,-33.666317,27.31659,76.44606,6.332 1449,459.69012,216.11308,19.525635,39.238663,6.231 1449,596.5577,263.71945,39.269653,105.70999,6.003 1449,626.77045,-19.202354,17.771118,48.68109,5.948 1449,-11.351732,476.53497,29.031279,64.25659,5.879 1449,-3.8852172,103.62078,16.846275,44.663918,5.844 1449,451.63815,218.87245,31.798431,61.91011,5.715 1449,480.1657,225.4833,23.097382,48.761627,5.71 1449,276.48987,207.06796,16.76178,27.760529,5.649 1449,452.8044,214.0861,16.44278,31.004822,5.595 1449,602.8234,216.35262,19.693909,43.65834,5.458 1449,603.09467,-56.986076,52.490173,139.41777,5.411 1449,517.0042,223.7518,40.092407,94.05441,5.376 1449,473.0887,210.04556,19.042389,37.820084,5.36 1449,176.64108,220.21994,24.01715,45.88321,5.348 1449,417.91003,202.06413,19.829254,46.41812,5.292 1449,626.36176,488.02338,20.878723,45.70587,5.263 1449,435.44226,218.74174,20.357147,38.07036,5.257 1449,-73.05742,265.82385,201.10658,462.09583,5.212 1449,619.4171,240.74643,27.9068,72.44183,5.185 1449,613.17206,454.9926,39.444763,107.66791,5.185 1450,61.08868,223.02626,28.10445,58.84349,11.703 1450,-5.0058556,-15.854326,16.959814,40.400692,8.706 1450,481.12762,126.66399,18.845215,34.036865,7.547 1450,510.0716,203.81473,28.774231,59.562622,7.05 1450,396.11942,201.2706,15.468384,29.112457,6.374 1450,-11.246954,-31.085003,29.772404,70.585266,6.337 1450,430.85095,211.63182,28.97467,69.404526,6.291 1450,3.7265491,-13.038758,15.793476,36.47833,6.231 1450,626.6652,487.31238,20.807007,46.170105,6.18 1450,612.8179,454.01562,39.173096,109.08807,6.095 1450,623.49036,-33.38115,26.220459,75.53038,6.032 1450,-4.5753975,71.34953,17.706291,47.825554,5.926 1450,409.00806,212.27254,20.791382,44.860092,5.856 1450,258.90143,219.36057,19.645355,30.652802,5.744 1450,-8.820566,464.24347,37.569763,93.41113,5.702 1450,-5.8890333,489.923,18.076008,41.047516,5.668 1450,398.0963,206.75938,27.468994,60.241592,5.656 1450,0.578177,257.83698,21.657618,47.72644,5.642 1450,438.7947,130.80074,28.868317,83.27272,5.587 1450,189.67685,205.51068,29.457245,67.25305,5.573 1450,627.5164,-18.075888,17.04486,46.10454,5.524 1450,417.69208,213.40572,22.831177,46.48433,5.507 1450,10.875493,-13.655972,16.245152,36.138783,5.433 1450,580.31006,254.67354,29.444458,75.83995,5.349 1450,450.98682,193.8789,38.47165,96.54535,5.303 1450,444.64484,206.15085,27.182098,71.03342,5.288 1450,466.2314,193.21216,30.898712,66.98633,5.251 1450,538.1121,20.413074,30.279114,70.16725,5.242 1450,573.5189,234.85822,49.492188,129.10284,5.202 1450,-72.93034,265.85052,201.27162,462.42133,5.196 1450,449.61655,190.49593,20.553253,47.905304,5.127 1450,283.00488,208.26764,19.79712,31.401245,5.111 1450,76.163506,194.8479,30.191673,64.45105,5.086 1450,570.75757,249.86572,19.026123,35.955566,5.044 1450,377.7449,218.04712,22.618866,42.51892,4.949 1450,501.91565,211.05705,29.003601,65.05513,4.939 1450,274.32056,210.36269,20.131775,30.442612,4.936 1450,583.3876,410.77588,71.36267,178.14258,4.909 1450,-3.1841896,105.88968,15.364504,41.71292,4.892 1450,93.21182,212.6241,32.203636,62.719376,4.887 1450,602.8822,-56.485977,52.72809,137.49619,4.874 1450,536.9448,309.65106,142.64081,343.14044,4.869 1450,268.35666,195.3816,31.120605,49.46617,4.857 1450,266.2028,210.4887,20.674774,30.718674,4.824 1450,-21.576847,402.92358,78.74309,174.59924,4.818 1450,19.143698,-13.524382,16.471327,35.97723,4.818 1450,547.32886,236.07668,31.863037,63.303085,4.815 1450,-17.555965,-63.64451,55.72153,146.91547,4.785 1450,523.0512,199.24344,30.971863,61.479095,4.732 1450,169.12079,200.79129,19.635849,38.406708,4.72 1450,375.02713,227.8904,26.710693,63.05272,4.71 1450,571.0608,-17.620325,16.904541,40.48176,4.67 1450,548.077,258.82376,30.992126,66.704285,4.667 1450,553.40674,258.69592,20.824585,38.572693,4.644 1450,576.3844,257.04623,22.898254,52.85739,4.629 1450,618.68604,173.69424,18.775818,50.63669,4.628 1450,517.92535,211.20833,29.180908,67.551956,4.62 1450,389.09854,203.56947,14.672974,26.8349,4.616 1450,393.93304,211.87407,20.718994,47.07582,4.614 1450,26.894554,-14.866676,17.093872,37.303314,4.611 1450,414.9074,-5.342823,29.124939,107.374725,4.594 1450,367.83997,215.04466,28.50409,59.222275,4.593 1450,541.9358,242.39955,50.955017,141.08025,4.511 1450,527.7497,125.51758,26.03241,65.05484,4.507 1450,250.90244,217.17453,18.5029,30.020477,4.492 1450,162.3353,200.44843,18.7706,40.554153,4.477 1450,349.01505,211.46918,26.945312,55.800568,4.435 1450,493.51587,227.96283,237.75903,513.52606,4.428 1450,-5.620352,264.6568,19.165756,46.021027,4.39 1450,-4.080184,120.88958,15.169743,40.869194,4.382 1450,-9.072414,55.740845,28.004307,77.66867,4.38 1450,-4.78788,1.7676601,16.917727,40.773476,4.376 1450,10.468351,-30.148773,59.432846,138.04903,4.327 1450,19.75288,-1.3303089,17.761044,35.44181,4.312 1450,345.9817,216.86604,20.204285,40.565567,4.3 1450,27.364975,-1.7476978,18.711731,35.197968,4.273 1450,618.37854,488.48074,20.77118,43.415985,4.25 1450,363.66284,207.66512,15.467712,27.856293,4.235 1450,59.733536,-2.5515318,18.40686,35.89086,4.202 1451,598.07104,212.57953,29.509827,71.73871,27.282 1451,584.876,205.5323,38.648438,99.59535,11.575 1451,361.9812,221.96274,22.630981,45.15457,11.495 1451,507.99915,215.19295,31.532898,64.495804,10.115 1451,429.5081,224.7081,29.371979,62.92804,9.138 1451,611.9199,202.81012,27.60962,81.27548,8.875 1451,514.47174,212.13385,42.22522,81.38977,8.611 1451,-5.2159986,-17.933496,17.281384,42.976612,8.281 1451,2.8009737,165.5973,28.606424,76.654495,7.769 1451,538.75946,217.24098,32.695007,76.4066,7.032 1451,547.42566,211.03531,40.871826,88.02255,6.984 1451,492.81552,211.85194,30.554352,66.376724,6.947 1451,594.37695,215.41609,22.487244,51.816147,6.877 1451,-10.962141,-32.02725,29.679535,71.08707,6.757 1451,477.7333,215.79597,29.630524,64.13945,6.567 1451,185.19672,214.16953,19.895172,35.76544,6.536 1451,626.0987,486.4817,21.349731,46.969116,6.392 1451,586.44684,219.15147,21.967834,43.603317,6.253 1451,412.77493,216.30847,16.618744,41.64331,6.026 1451,-6.1008606,488.12125,18.5792,42.949493,6.01 1451,622.61664,-33.614216,27.30951,77.287476,5.968 1451,506.1171,209.76033,23.70932,50.676895,5.96 1451,517.40314,119.51361,31.04242,74.103455,5.909 1451,627.7539,104.154015,18.66449,44.62719,5.893 1451,627.09863,-20.425087,17.744446,50.14748,5.857 1451,527.45514,116.68626,24.84607,40.291252,5.832 1451,517.982,212.26517,25.663574,49.352966,5.823 1451,36.545315,210.0218,30.200153,63.18489,5.816 1451,282.59607,217.12253,18.866913,29.709183,5.71 1451,614.0653,-20.331102,27.66809,76.07331,5.692 1451,180.19412,209.92126,16.11139,25.002792,5.66 1451,291.06616,215.50676,19.044891,32.066193,5.646 1451,612.9294,452.84732,39.461975,108.95175,5.626 1451,468.70377,226.76334,31.916962,72.109924,5.621 1451,3.4562278,-15.425034,16.27552,40.05235,5.597 1451,371.79385,226.86926,28.781525,52.97055,5.577 1451,187.0598,210.574,15.652069,24.245026,5.548 1451,-9.509995,464.75964,38.022903,91.767395,5.454 1451,55.87086,216.57253,23.746174,46.82808,5.394 1451,602.9509,-54.34715,52.663574,136.16817,5.388 1451,5.0019383,193.6412,36.184402,93.84299,5.348 1451,-17.246105,-64.963745,55.38212,147.26013,5.331 1451,564.81793,210.15727,39.81482,93.02431,5.316 1451,404.21442,218.5297,16.463196,40.616302,5.315 1451,498.37143,128.73694,22.150726,62.947876,5.29 1451,-72.828125,265.8475,200.77635,462.29166,5.262 1451,275.1741,211.2136,18.613281,30.762177,5.159 1451,-9.500524,173.74883,30.785896,72.2968,5.148 1452,443.13046,246.51773,21.69101,50.46054,16.939 1452,498.62152,236.12057,17.899353,47.562805,8.672 1452,-4.409047,-14.876434,15.869408,41.241848,8.299 1452,383.74576,256.78058,21.933838,47.083496,8.018 1452,492.8131,236.60793,17.611145,41.447372,7.94 1452,526.8069,226.94228,28.71637,58.512314,7.234 1452,438.95752,245.48706,34.514587,76.59155,7.227 1452,614.5368,111.405624,25.651184,67.56328,7.079 1452,483.17593,3.999466,32.384674,91.29495,6.965 1452,425.2336,241.43912,17.982056,48.376953,6.943 1452,415.92676,246.6335,24.342163,61.507034,6.615 1452,505.65717,239.66902,18.05017,43.526993,6.533 1452,431.93268,250.49683,26.966553,61.9104,6.467 1452,400.45276,235.36807,26.845032,62.550934,6.434 1452,-10.764817,-31.979816,28.938808,73.02657,6.336 1452,411.86856,246.6098,19.59848,47.038574,6.267 1452,386.32227,243.80775,21.160217,42.637497,6.228 1452,-2.7251635,4.966818,14.10608,38.01233,6.215 1452,564.41797,260.92404,38.765564,97.318115,6.156 1452,613.3678,451.7933,39.14868,110.48764,6.118 1452,-12.110426,477.23087,29.118258,64.40622,6.112 1452,548.58813,258.67218,38.44812,96.77716,6.01 1452,-6.233545,489.2666,18.293894,41.942932,5.887 1452,580.7196,262.84042,29.900085,77.76099,5.867 1452,540.662,215.4502,31.798462,74.56122,5.745 1452,5.2098823,11.848333,14.402985,33.292908,5.737 1452,610.927,-46.608727,41.402344,99.36767,5.703 1452,575.83276,224.4647,48.85266,116.96791,5.577 1452,4.143043,-11.042225,14.551254,35.984943,5.555 1452,626.55,487.4751,21.315369,45.30481,5.546 1452,-17.447954,-63.146214,55.580452,144.64801,5.442 1452,616.339,1.7667885,23.162598,57.60433,5.406 1452,468.235,261.7813,38.88794,72.20563,5.4 1452,170.21487,251.71709,23.107132,40.562424,5.4 1452,-3.8600767,169.34032,17.094406,47.732925,5.224 1452,-72.77808,266.45502,201.49155,462.52618,5.182 1452,627.1034,-17.72176,17.153503,47.589287,5.064 1452,494.21588,-4.8972797,28.613647,68.210815,5.005 1452,452.84222,248.92738,36.519287,74.17522,4.981 1452,536.7551,309.9965,143.79633,338.23288,4.96 1452,470.65485,9.107735,28.375671,89.01694,4.958 1452,-2.2548068,22.602343,13.780332,36.728638,4.925 1452,267.51364,255.14859,18.448608,29.45813,4.925 1452,554.6048,213.94751,30.96698,78.96466,4.923 1452,291.0461,249.79198,19.062103,31.048172,4.875 1452,-21.539303,402.84076,78.766174,174.70691,4.843 1452,582.89044,410.5844,71.904724,177.97644,4.786 1452,489.7894,281.18915,33.301117,74.81387,4.778 1452,573.56506,-14.629181,52.882812,124.15521,4.775 1452,282.9471,250.21783,19.075134,30.966553,4.732 1452,586.0447,-100.43831,74.502075,233.23361,4.634 1452,-3.9454885,146.14572,15.907198,46.076645,4.622 1452,494.49255,232.15189,236.06708,508.9454,4.614 1452,-15.514326,248.14929,49.3099,138.12164,4.609 1452,597.99,269.92883,37.008118,108.24173,4.58 1452,532.96045,259.35828,38.30133,91.77841,4.571 1452,444.04514,-11.596073,55.950317,131.01462,4.568 1452,490.8704,-180.57365,234.31241,425.2107,4.552 1452,562.09424,252.10081,21.02185,47.05452,4.551 1452,88.31293,237.79375,28.339996,68.101364,4.548 1452,6.136674,26.645132,14.092818,35.14441,4.543 1453,466.39758,172.4355,22.056335,48.70848,89.895 1453,443.30817,171.0756,21.728607,52.355225,66.524 1453,524.8329,164.66089,19.318176,48.901016,16.304 1453,12.421565,165.78635,31.123436,74.82837,8.144 1453,583.5359,166.33719,21.095093,36.33632,7.948 1453,569.8757,169.91867,21.438782,32.564865,7.635 1453,-4.8432746,-15.041737,16.461115,40.290062,7.633 1453,575.82495,161.6604,21.439087,33.561752,7.498 1453,267.2854,185.84883,20.226318,34.411575,7.272 1453,99.459465,165.29431,31.261314,61.539093,6.437 1453,-11.147917,-31.836943,29.752546,72.880905,6.353 1453,570.7457,151.25197,30.651001,55.358017,6.304 1453,394.5664,167.19041,22.274261,43.957397,6.3 1453,414.25586,153.02734,27.05487,62.901154,6.243 1453,613.4868,453.6158,38.944458,108.228546,6.235 1453,118.12837,161.16461,32.73317,64.16043,6.213 1453,331.2315,180.40833,20.784851,35.81511,6.213 1453,626.94556,488.8872,20.60028,44.590454,6.198 1453,250.93774,176.32455,18.511414,28.862045,6.143 1453,-5.9934187,489.35648,18.240524,41.895233,6.01 1453,627.2442,-18.748814,17.227722,47.24861,5.962 1453,562.3148,184.50812,18.780151,42.708633,5.902 1453,-9.021044,464.34857,37.734962,92.95953,5.894 1453,516.0119,160.68268,20.428589,44.817993,5.882 1453,582.9109,183.49124,36.178467,78.982086,5.845 1453,427.70477,171.10355,18.788391,39.489258,5.804 1453,459.6305,177.98625,21.437256,49.13234,5.727 1453,622.6026,-33.45976,27.02295,74.73728,5.638 1453,406.46225,190.71722,23.514801,48.629257,5.618 1453,531.0178,149.57135,27.049133,60.835297,5.598 1453,291.38474,170.35881,17.505096,28.514847,5.59 1453,300.25546,170.6972,16.791016,28.726562,5.56 1453,-17.860466,-65.51067,55.907272,150.30954,5.472 1453,258.7485,170.10063,19.351105,30.740417,5.469 1453,577.2185,145.45818,21.202087,35.252167,5.395 1453,-4.362648,3.7268562,16.216148,39.587837,5.384 1453,409.21902,170.4763,21.359528,40.985718,5.363 1453,274.56613,178.68132,19.774933,31.23677,5.349 1453,-4.7869406,162.2616,18.577408,42.69339,5.328 1453,-6.1185527,121.39873,17.140886,41.795578,5.255 1453,22.545353,171.94696,22.680546,48.659912,5.243 1453,283.5395,172.0569,17.497498,27.38179,5.206 1453,0.8815706,167.45802,23.45236,58.26245,5.172 1453,499.54126,176.61687,40.365173,88.40459,5.16 1453,90.07803,67.92723,31.340164,72.5699,5.122 1453,-72.63022,266.92554,200.02802,459.40332,5.087 1453,339.0793,186.26738,18.971588,33.029892,5.081 1453,482.67218,177.32964,40.969727,84.26369,5.08 1453,242.90576,174.92155,18.782806,29.300247,5.06 1453,584.0264,149.78082,20.576538,36.05565,5.058 1453,259.87924,185.0209,18.559143,32.733017,5.056 1453,-21.540916,403.6269,78.92675,174.29791,5.03 1453,267.00085,171.19626,18.678589,29.600739,5.024 1453,556.21936,174.51883,18.40387,38.9718,4.982 1453,69.1752,157.12698,28.956009,61.570526,4.947 1453,576.21655,174.59068,20.164856,33.800995,4.906 1453,438.13174,173.2966,36.569336,65.20471,4.878 1453,569.1536,153.98863,22.28601,34.641296,4.876 1453,603.77344,-55.797504,52.641296,132.88074,4.842 1453,536.4146,310.04465,142.44537,344.36002,4.833 1453,-6.8228793,165.86148,36.09723,98.4509,4.76 1454,503.25153,204.82867,23.743286,59.90738,89.559 1454,472.6645,204.20671,21.228668,58.447617,82.181 1454,571.96027,195.64975,28.044678,62.41101,75.211 1454,581.96313,191.44977,27.673462,61.22145,20.684 1454,442.38916,197.76009,20.244751,48.809097,14.178 1454,337.74155,213.2335,22.820251,44.06215,9.925 1454,593.3358,188.07501,28.716736,68.68915,9.876 1454,411.93423,132.7874,27.576721,73.79663,8.172 1454,422.88696,185.39458,28.865662,65.18422,7.287 1454,-10.863639,-33.11774,29.95034,77.749886,6.919 1454,491.1945,203.3591,18.084717,51.04825,6.627 1454,-6.1331697,-19.198448,18.575272,46.70263,6.616 1454,257.9166,216.30469,21.611786,35.101395,6.607 1454,282.96613,203.85225,19.23465,30.342987,6.573 1454,250.08258,216.48102,21.52945,33.013977,6.44 1454,274.5297,202.58968,19.429413,31.384186,6.4 1454,611.4721,-47.87995,40.596375,100.13362,6.336 1454,470.964,208.03923,33.382385,78.05513,6.039 1454,-6.205774,488.55048,18.423603,43.280396,6.033 1454,432.6814,206.31688,30.908112,67.689285,5.848 1454,298.1567,207.04544,21.228973,36.167175,5.813 1454,289.99356,208.37277,20.626587,34.88922,5.757 1454,233.60431,205.92021,20.921448,32.01764,5.723 1454,596.43884,202.28891,37.6864,97.26712,5.684 1454,-9.072286,463.8863,37.762417,93.18805,5.645 1454,331.85248,209.82434,18.6792,35.514603,5.609 1454,313.45517,208.66045,21.617584,34.91597,5.6 1454,241.38419,215.40373,21.709747,31.742538,5.507 1454,167.31429,194.23996,24.86232,52.53853,5.442 1454,-0.12750626,189.14984,25.081524,71.802704,5.405 1454,435.28622,191.0402,22.152008,41.581635,5.388 1454,613.0491,454.97086,39.644775,107.410126,5.318 1454,601.8777,182.70724,31.038452,67.49814,5.308 1455,523.04376,213.01535,30.559326,74.286896,97.731 1455,553.3072,215.2752,25.157715,72.91019,51.687 1455,564.78436,217.14984,26.09552,81.34906,17.532 1455,-6.0515213,-18.719816,18.60075,44.90796,8.374 1455,348.7716,217.54411,27.646393,59.483505,7.789 1455,331.1397,219.24979,20.50595,37.924744,7.474 1455,282.45358,215.00748,19.195251,32.251785,6.74 1455,-10.895414,-31.811903,29.507929,73.128426,6.711 1455,266.07092,217.0251,21.338379,31.737045,6.554 1455,542.27716,217.60962,27.70874,72.86798,6.148 1455,-6.325759,489.3763,18.697666,42.650482,6.137 1455,570.3113,213.0285,29.050903,63.34012,6.06 1455,485.90704,210.22998,33.88092,74.05109,5.996 1455,337.05203,221.01118,23.093384,44.301437,5.95 1455,314.0475,220.04416,18.72931,30.749207,5.905 1455,627.216,-18.28301,17.39618,47.23704,5.898 1455,466.41116,124.44881,21.070465,49.54123,5.86 1455,240.67131,213.09064,22.65187,35.397293,5.818 1455,488.50226,235.29665,22.424316,42.183548,5.742 1455,-8.838147,464.0138,37.62583,93.283875,5.575 1455,249.64919,215.60284,21.5663,32.968475,5.515 1455,306.69104,219.60799,18.926971,30.760529,5.424 1455,-17.339272,-64.228134,56.08843,143.20966,5.416 1455,442.53864,213.81334,16.931458,26.807938,5.416 1455,-5.347069,143.58777,17.149292,44.42151,5.339 1455,233.20242,213.89578,21.51831,32.15056,5.33 1455,135.04025,205.0041,26.420547,59.86998,5.296 1455,622.1605,-33.688095,27.199707,74.32548,5.275 1455,472.50974,115.967896,20.477142,44.231018,5.263 1455,535.56024,308.3504,145.4809,343.83636,5.185 1455,613.091,454.78116,39.87903,107.32382,5.179 1455,298.96317,223.19862,21.3143,35.466537,5.164 1455,582.7563,412.60922,72.03247,175.83841,5.148 1455,292.63992,219.30222,31.613037,64.04617,5.131 1455,-72.69044,266.14362,200.66556,461.8966,5.105 1455,258.03952,215.89615,21.364655,33.227783,5.045 1455,626.6059,489.0398,20.758118,44.792114,5.042 1455,225.56778,213.14648,20.587997,31.649902,5.025 1455,283.95618,215.53955,30.118958,56.033844,4.938 1455,473.831,231.19716,20.724976,35.93779,4.891 1455,583.84534,213.86482,21.289917,38.841125,4.876 1455,-21.544174,403.08612,78.81198,174.29718,4.873 1455,243.2876,212.58478,32.04654,58.133545,4.799 1455,494.53232,230.44832,236.63712,511.63605,4.791 1455,511.39722,186.7734,49.76886,104.73697,4.747 1455,562.6782,131.27841,28.361267,97.858215,4.737 1455,2.5542002,-17.960075,17.721401,43.479942,4.708 1455,602.8332,-54.935085,53.10254,136.98329,4.704 1455,435.40265,215.46585,17.23462,27.519196,4.677 1455,424.02368,225.51056,23.247559,46.86441,4.676 1456,481.01337,211.3227,27.22226,67.12436,86.326 1456,261.98016,187.14915,16.611877,39.606277,9.324 1456,408.17123,188.8875,28.830719,61.550156,8.911 1456,-6.439047,489.64212,19.086727,43.250763,6.626 1456,387.99698,173.54175,39.317627,79.68985,6.493 1456,-12.023365,478.1035,30.4417,63.161957,6.241 1456,626.3775,488.27625,20.940552,44.49402,6.112 1456,-11.403807,-32.32272,29.843935,72.770424,6.004 1456,627.2154,-18.01621,17.466248,46.06414,5.726 1456,-6.156269,-18.025587,17.9538,43.12491,5.471 1456,554.18164,190.74783,29.416077,71.21927,5.387 1456,611.1927,-47.92944,41.49951,100.54169,5.231 1456,-73.02243,266.30814,201.11095,460.69003,5.111 1456,-16.984385,-61.583115,56.00805,143.3219,4.967 1456,-21.871967,401.73376,79.458435,175.58441,4.854 1456,613.24023,454.7356,39.21161,106.75275,4.819 1456,536.7107,310.4474,143.04407,342.44604,4.79 1456,583.2141,410.58072,71.50134,178.13083,4.769 1456,585.96344,-97.19768,74.87933,230.35278,4.683 1456,618.292,491.44162,20.577698,40.46457,4.525 1456,-36.633423,-128.55766,117.40388,277.2704,4.516 1456,489.97186,-178.7113,235.02661,422.92633,4.47 1456,386.38013,204.85512,21.894958,41.938904,4.422 1456,494.0601,226.99725,237.09763,515.45654,4.411 1456,490.32837,217.68721,29.916382,71.86247,4.225 1456,419.77158,188.55646,29.814423,57.236053,4.212 1456,433.78574,201.32532,21.028107,41.15393,4.203 1456,-8.984155,-6.139656,39.043335,101.07712,4.164 1456,56.472847,245.86723,37.031754,56.305466,4.077 1456,-71.48777,-189.42842,211.8555,454.99658,4.075 1456,494.14868,210.95802,23.60669,49.860825,4.047 1456,442.22336,202.2856,20.516876,38.860504,3.976 1456,458.01328,206.79753,21.414795,43.33,3.947 1456,403.1413,204.44041,22.638397,50.080154,3.812 1456,394.24817,208.11884,21.695618,41.35582,3.707 1456,235.74792,239.93854,17.32309,26.968872,3.594 1456,-8.202997,229.42387,37.33811,102.15141,3.561 1456,618.8774,-19.30051,17.51715,44.405987,3.476 1456,369.76813,202.34642,21.889587,42.547485,3.462 1456,466.15265,211.46548,26.91388,64.9877,3.427 1456,-8.350775,134.5558,38.40873,105.05269,3.422 1456,397.07855,169.24182,48.03958,109.63287,3.411 1456,2.197671,490.62143,19.649525,42.940033,3.397 1456,376.08737,182.37723,37.25537,81.22977,3.373 1456,260.98645,209.68918,14.385956,30.25563,3.352 1456,2.6715517,-16.198036,16.993622,39.84809,3.349 1456,420.4922,202.6445,38.61795,72.68857,3.329 1457,557.3843,208.20839,44.16815,94.9084,88.384 1457,244.33165,184.27516,18.712936,42.795303,13.105 1457,-6.447338,490.0449,19.048458,42.74057,6.274 1457,-11.395933,-32.01979,29.711811,71.73909,6.251 1457,622.5193,-33.978184,27.349426,74.12607,6.109 1457,627.17114,-17.513618,17.610107,44.741917,6.006 1457,-12.075934,479.35736,30.339558,61.81543,5.854 1457,-5.8854446,-17.895344,17.69086,43.0005,5.762 1457,596.2517,215.88043,41.675293,101.90405,5.696 1457,626.6897,488.72095,20.594604,44.856934,5.693 1457,575.194,214.4172,33.43164,78.88449,5.411 1457,-16.516865,-62.35482,55.409885,145.07036,5.325 1457,613.1051,454.90057,39.54602,107.048645,5.228 1457,602.3617,-55.32183,53.785645,134.9226,5.097 1457,-17.947767,436.20844,55.76657,139.33453,4.958 1457,585.8643,-97.76752,74.6413,231.0018,4.958 1457,583.3149,411.6517,71.276184,176.48856,4.923 1457,-72.82689,266.7622,200.71634,459.68262,4.908 1457,533.37146,209.93356,42.616943,90.38809,4.736 1457,-40.449318,368.4466,110.505646,273.73785,4.68 1457,489.7,-180.43738,234.59534,423.69244,4.657 1457,536.78107,310.07843,142.38898,343.34943,4.63 1457,-36.87124,-129.30405,117.868744,277.3582,4.472 1457,452.17664,174.9139,39.799194,96.39403,4.423 1457,611.3122,-18.220121,30.474304,69.01636,4.401 1457,594.15814,-43.220535,44.87097,96.61452,4.361 1457,566.40515,222.24792,25.297363,74.35455,4.349 1457,493.7516,227.83252,237.4878,515.16675,4.265 1457,420.97388,174.73785,38.59021,96.0766,4.209 1457,570.75024,204.21942,52.815308,142.64294,4.154 1457,618.39374,-4.954852,19.428589,41.709774,4.063 1457,-8.950295,-5.3330727,38.602345,100.21617,4.007 1457,-71.290665,-188.90707,211.97585,453.69016,3.95 1457,582.1869,205.75728,23.967224,56.00444,3.87 1457,604.403,210.67229,49.816345,135.76967,3.738 1457,3.006981,-16.358597,16.55904,40.180447,3.696 1457,267.472,178.18233,17.107819,35.536667,3.687 1457,545.5907,227.50523,22.020935,53.840256,3.52 1457,535.0825,221.82133,26.911133,63.27922,3.449 1457,610.6792,-14.043924,17.277344,38.921352,3.398 1457,516.4926,211.50073,42.27643,89.96173,3.398 1457,602.68536,25.536034,52.34259,148.07455,3.364 1457,2.1751885,490.45975,19.80168,42.985077,3.356 1457,555.6504,224.42697,24.12262,61.841187,3.352 1457,453.00323,214.82523,31.448517,67.99588,3.344 1457,-7.033758,162.82124,36.775177,108.494064,3.334 1457,506.91876,-14.678296,17.248291,41.777256,3.316 1457,406.35178,175.4949,38.45746,96.53592,3.278 1457,259.23386,177.65968,17.761017,36.010696,3.266 1457,436.41693,174.33401,38.66577,96.46396,3.261 1457,618.5787,491.88104,20.394043,41.12964,3.238 1457,609.2471,-1.4940987,20.708862,41.72153,3.232 1457,-5.0424743,348.54846,15.562588,36.13791,3.224 1457,274.38278,171.12065,17.456024,35.403885,3.214 1457,-4.6512003,175.92311,17.545216,48.469574,3.209 1458,576.312,216.2446,43.07135,109.86127,28.987 1458,230.22798,186.73105,21.700806,44.72101,26.375 1458,-8.53877,466.06177,37.467194,90.30371,6.651 1458,-6.647626,489.74286,19.540388,43.154602,6.508 1458,-5.7249365,-17.338085,17.156937,42.468384,6.001 1458,-11.5511265,-32.08459,29.556248,73.01632,5.666 1458,451.07437,190.68436,30.65512,77.0004,5.603 1458,611.2049,-47.085014,41.071045,101.65812,5.593 1458,626.00244,487.42126,21.730408,46.168457,5.559 1458,612.29675,244.79074,36.66632,112.585144,5.514 1458,627.1233,-17.616432,17.300476,45.200592,5.457 1458,563.56793,159.12613,64.19885,182.99872,5.304 1458,612.9188,453.72485,39.6864,108.18317,5.268 1458,592.90765,218.30826,40.156372,119.05328,5.114 1458,-16.930689,-61.971462,56.010567,144.02493,5.02 1458,582.9166,412.68964,71.7135,175.29999,4.926 1458,438.97955,187.47876,25.922302,68.37698,4.894 1458,-21.050945,405.35016,78.584595,172.77795,4.863 1458,-72.671524,266.52853,200.04504,460.50674,4.824 1458,238.56871,185.28539,20.843307,43.537064,4.823 1458,585.72644,-97.706566,74.84235,233.0629,4.799 1458,436.27924,1.8299637,31.98706,70.29486,4.75 1458,489.83575,-179.00076,235.2221,424.48404,4.574 1458,536.8638,310.9696,141.97046,342.08826,4.518 1458,-36.852867,-128.91743,117.690636,276.6059,4.434 1458,3.00077,-15.4636,16.115496,39.315342,4.269 1458,227.82524,173.67612,37.564133,75.15816,4.247 1458,493.40195,227.88367,238.45218,516.4396,4.185 1458,5.5076513,470.7308,38.187153,91.197784,4.034 1458,-70.81912,-189.38751,211.55463,455.3123,4.026 1458,571.5791,255.02725,34.659058,81.59891,3.97 1458,-8.911056,-6.5533676,38.34694,102.55371,3.942 1458,618.35834,28.28183,18.70514,41.688828,3.932 1458,388.614,183.40576,29.307281,61.727676,3.829 1458,273.56042,179.6241,19.626465,43.990128,3.717 1458,486.44257,177.70245,38.482178,93.25702,3.708 1458,218.77275,177.39464,28.145294,61.272217,3.667 1458,334.34476,169.81612,26.646576,59.337524,3.624 1458,406.69836,185.57292,27.387299,61.570007,3.613 1458,344.35153,240.41571,21.49121,31.03595,3.555 1458,330.6528,238.39561,21.099365,32.470047,3.524 1458,625.79443,18.969698,18.893188,44.890556,3.512 1458,450.0676,1.6274261,32.08008,62.777374,3.471 1458,422.64026,179.95596,38.20703,92.725494,3.448 1458,467.7539,189.5412,40.471985,96.16354,3.434 1458,429.18707,-13.211454,32.033783,68.10833,3.426 1458,587.15356,173.81891,56.85547,199.3675,3.406 1458,609.6493,206.9042,36.970215,112.745636,3.343 1458,565.9759,13.946106,30.47821,79.282036,3.341 1458,1.7678607,490.24915,20.407871,42.97827,3.305 1458,349.25034,170.66754,28.411072,62.41571,3.277 1458,619.05817,-18.417362,17.06604,42.28884,3.277 1459,211.06677,206.71802,22.414032,52.668793,15.329 1459,-11.335734,-32.388737,29.717457,71.756386,6.174 1459,-5.9451513,-18.755875,17.910534,43.471024,5.742 1459,-8.575629,464.88297,37.314842,91.84268,5.711 1459,622.77325,-34.32376,26.708313,73.58593,5.566 1459,627.08826,-18.146206,17.378906,45.87795,5.565 1459,626.2805,487.42105,21.201477,46.59085,5.465 1459,486.75916,206.14078,37.37622,108.762726,5.401 1459,-6.408587,489.20862,18.999874,43.341248,5.325 1459,282.71097,204.68315,19.32425,40.144135,5.323 1459,468.49442,211.49905,18.55661,47.792297,5.314 1459,612.90186,453.60822,39.741333,108.42963,5.136 1459,496.94086,218.3146,20.292358,54.74237,5.11 1459,-16.357996,-62.078766,55.80944,145.15913,5.099 1459,-72.797806,265.7412,200.79657,461.30487,4.996 1459,582.95154,411.6848,71.81537,176.51965,4.821 1459,-21.664082,402.91998,79.13985,174.66046,4.772 1459,536.5693,310.4989,142.96112,342.59253,4.767 1459,603.00354,-55.984665,53.293335,135.1937,4.658 1459,496.6974,199.05296,47.75763,126.823746,4.633 1459,490.76227,-180.0912,233.90094,424.68155,4.605 1459,-36.739235,-129.11131,117.13854,277.26498,4.602 1459,586.1114,-99.56774,74.88403,234.24106,4.488 1459,493.81192,227.24509,237.75009,515.7776,4.354 1459,623.6073,211.11246,26.357605,72.72925,4.27 1459,517.33997,198.56268,37.986084,86.84949,4.266 1459,-70.91388,-189.88745,211.65121,456.30862,4.19 1459,545.90216,297.3005,21.316772,44.70114,3.953 1459,594.5427,-45.901962,44.881653,98.51932,3.936 1459,615.55426,219.12326,26.633728,75.78323,3.873 1459,-7.896502,5.6622467,37.436626,107.972855,3.869 1459,211.18716,194.74582,35.374695,84.66037,3.85 1459,358.8659,194.55911,28.363068,59.597473,3.838 1459,612.6276,230.66322,36.45685,116.95232,3.8 1459,619.00323,-19.121613,17.62793,43.377506,3.613 1459,589.41296,213.71498,30.053345,79.59868,3.596 1459,222.3923,205.39217,22.3367,42.371017,3.58 1459,514.6018,288.8774,32.62793,68.08508,3.506 1459,592.4537,195.73193,47.854248,145.80823,3.505 1459,466.36185,198.60188,61.76169,165.85844,3.499 1459,486.20416,303.76248,28.404724,62.082092,3.407 1459,335.65646,193.86021,27.795013,58.136276,3.393 1459,2.8188407,-17.406345,16.875967,40.446793,3.361 1459,597.904,189.01793,36.37433,92.685745,3.355 1459,484.66132,219.95398,17.658356,54.901855,3.239 1459,9.011509,-90.60091,74.760376,208.64485,3.229 1459,353.77032,199.93367,21.729553,44.930176,3.22 1459,487.92902,200.88925,27.223267,60.053192,3.215 1459,532.45807,202.9375,38.34088,91.02429,3.196 1459,-7.7593603,167.09447,37.696934,103.50972,3.19 1459,538.16614,302.28635,20.754822,44.95569,3.162 1459,422.6129,206.16002,27.664612,63.85762,3.152 1459,532.0012,288.5588,30.679016,67.705475,3.141 1459,548.9268,203.70358,37.448914,87.17911,3.12 1459,-8.922282,262.55096,37.974716,105.11252,3.117 1459,5.6925416,468.06168,37.574524,95.457306,3.112 1460,177.12747,175.24379,23.190948,55.350616,40.931 1460,538.682,192.5976,18.747314,49.24405,9.751 1460,575.9046,190.87288,30.844116,66.27742,9.009 1460,504.20255,180.14401,20.145844,50.468857,8.105 1460,-5.763544,-17.714542,17.622112,41.97719,7.791 1460,627.06976,-16.291561,16.976562,43.266064,6.565 1460,-11.008265,-31.35337,29.325808,70.04564,6.431 1460,622.7802,-34.547604,26.431702,74.11799,6.17 1460,-8.527048,464.8069,37.344368,92.017944,5.971 1460,626.42035,487.49744,21.338684,46.37091,5.784 1460,602.969,-56.022648,53.369507,136.45357,5.559 1460,-6.496935,489.24582,19.160479,43.33188,5.46 1460,-17.05807,-63.61071,55.315804,146.56851,5.074 1460,-72.8202,265.776,200.68942,460.9513,5.067 1460,613.16583,454.4231,39.42096,107.69995,5.009 1460,484.2583,173.14517,37.73767,97.15103,4.899 1460,3.2292879,-15.68259,16.451694,39.850986,4.831 1460,-21.612474,403.06403,79.16358,174.75922,4.796 1460,583.1387,411.2476,71.55005,176.92648,4.759 1460,536.79877,309.79004,142.51373,343.00488,4.693 1460,619.22296,-15.66036,16.654358,39.307667,4.676 1460,598.2316,190.88693,36.255615,89.376465,4.575 1460,586.0485,-101.14937,75.30499,234.9666,4.54 1460,489.07892,-178.08371,235.73505,422.1167,4.469 1460,473.064,195.48277,31.863098,80.4803,4.438 1460,-36.760803,-129.38313,117.26422,278.64545,4.4 1460,493.52393,228.48822,237.73523,515.216,4.389 1460,594.5475,-45.15494,44.11377,99.83197,4.381 1460,-70.68822,-190.09848,211.80977,455.97607,4.23 1460,166.8328,161.89197,36.72705,83.56102,4.151 1460,613.4908,190.52448,34.95581,99.65921,4.004 1460,491.4717,182.84431,21.354156,58.569656,4.002 1460,614.3011,187.27753,23.59967,67.56714,3.959 1460,464.02472,149.49538,50.145325,121.852615,3.767 1460,378.79938,248.35794,33.478912,59.155273,3.683 1460,394.21283,249.52821,33.76306,57.502487,3.672 1460,496.8747,171.1825,22.626343,48.740585,3.639 1460,600.5586,185.33925,27.029053,60.288452,3.599 1460,581.9121,170.33632,36.543945,81.316666,3.592 1460,545.72,198.64775,19.281982,45.369034,3.585 1460,10.631416,-16.233921,17.110126,39.363495,3.577 1460,454.01218,173.31601,40.467255,95.94675,3.541 1460,532.9087,186.78464,38.27411,92.11731,3.53 1460,499.26334,151.63266,39.98001,84.4904,3.51 1460,368.42758,172.2239,21.68454,43.132385,3.484 1460,618.1129,490.41287,21.175537,44.140594,3.42 1460,614.134,-19.1076,27.4328,67.039055,3.407 1460,553.7762,201.8793,20.734192,44.97136,3.398 1460,516.9214,183.21985,38.214233,96.57019,3.385 1460,611.5409,-13.033802,15.911011,36.304935,3.373 1460,613.0606,232.91725,39.3891,113.72722,3.363 1460,539.7366,-15.227989,16.277283,35.352005,3.326 1460,549.2129,190.10167,39.41919,87.690994,3.296 1460,-9.218539,-7.6924133,39.132584,102.91159,3.289 1460,572.2796,224.7055,32.77649,70.611755,3.284 1460,410.92258,248.43307,31.072021,52.645966,3.271 1461,129.12338,182.79298,27.669312,61.49463,39.431 1461,566.93317,190.32303,23.181946,56.15216,8.93 1461,626.90875,-16.914263,17.286255,44.243687,6.571 1461,-5.5801687,-16.58738,17.436024,41.119884,6.47 1461,542.4403,188.34709,27.953125,69.813065,5.814 1461,-11.13155,-31.221304,29.902662,70.70172,5.716 1461,613.19073,454.34027,39.560425,107.10712,5.564 1461,-8.665384,464.48618,37.431503,92.847015,5.551 1461,622.3904,-32.849667,26.945679,72.61492,5.46 1461,583.46075,185.65395,37.60382,96.79982,5.379 1461,-6.4000564,489.32605,18.995598,43.24286,5.237 1461,597.8545,182.84229,37.161743,117.3288,5.204 1461,-16.987198,-62.759148,55.337536,145.63835,5.18 1461,618.32294,-4.9828825,19.771301,41.234257,5.107 1461,602.5957,-56.581062,53.74939,133.71712,5.104 1461,-72.730865,266.47327,200.47034,461.00232,5.038 1461,551.1844,182.86224,30.748901,65.88364,4.938 1461,607.6635,191.10556,26.435242,70.24365,4.924 1461,-21.531483,402.39886,79.22191,175.17511,4.817 1461,559.43445,162.52896,51.36377,116.71777,4.812 1461,536.93085,309.71878,142.29651,343.43002,4.812 1461,583.0381,411.16937,71.61041,176.93646,4.794 1461,585.4287,-100.020325,75.68994,233.84372,4.751 1461,626.2169,487.74097,21.433105,45.720764,4.714 1461,594.1805,-44.34148,44.430237,95.85186,4.515 1461,488.5257,-177.78177,236.31268,423.53458,4.362 1461,-37.48017,-128.44681,117.5151,278.56418,4.349 1461,493.3117,227.60495,238.19745,516.2875,4.321 1461,602.8924,-2.3956642,30.390259,61.405296,4.303 1461,617.21436,194.35994,21.059448,54.22618,4.28 1461,395.41302,210.53311,17.627075,34.045563,4.171 1461,535.8263,203.08469,29.232788,73.50476,4.069 1461,571.541,176.80229,29.193787,64.3969,4.064 1461,-70.47368,-188.99696,211.40602,454.68744,4.038 1461,556.4317,-2.2544518,31.245972,69.615616,4.02 1461,390.99042,177.33606,27.09903,66.32973,4.0 1461,2.7815235,-14.493031,16.555323,37.9459,3.967 1461,611.28735,194.6894,36.271545,122.18523,3.963 1461,603.2938,265.39618,33.92383,73.61719,3.934 1461,540.8311,143.17017,55.543274,122.89874,3.926 1461,581.53754,180.0265,29.819397,65.81105,3.845 1461,588.59906,143.61145,57.98352,202.3899,3.813 1461,626.61346,185.07121,18.207703,48.62451,3.767 1461,546.6622,-14.31798,17.54364,38.475365,3.652 1461,554.2951,-15.370376,17.637512,40.09379,3.637 1461,613.0725,-17.754498,28.460632,66.039986,3.607 1461,115.298805,160.96042,45.07708,80.86978,3.591 1461,-9.356088,-5.7784615,39.280193,101.38141,3.565 1461,547.4434,195.4529,41.00049,100.64177,3.55 1461,590.04395,-4.4281616,30.582886,68.95115,3.548 1462,119.43783,204.41074,32.33779,66.527954,45.313 1462,626.76685,489.91772,20.594238,42.572266,6.342 1462,-11.522465,-32.271503,29.818863,72.323105,6.248 1462,623.30804,-34.456146,26.156433,73.61329,6.231 1462,627.3994,-17.616089,16.943176,45.31347,5.929 1462,-6.078997,-18.620392,17.885977,43.26015,5.899 1462,613.4101,453.81116,39.353455,108.11731,5.581 1462,-6.6097064,489.4179,19.175705,43.01355,5.569 1462,-12.386732,478.27985,30.583542,61.946106,5.496 1462,-8.948122,464.01862,37.89306,93.28815,5.377 1462,603.49677,-55.070877,53.169617,139.23738,5.248 1462,-73.29364,265.5255,201.1777,462.59204,5.13 1462,126.70882,200.37703,38.90172,82.94997,4.868 1462,-22.222115,401.1028,79.892044,176.21347,4.85 1462,-16.796837,-61.41696,55.739635,143.43933,4.845 1462,583.16144,411.30573,71.51129,176.91113,4.823 1462,536.77405,310.62842,142.82745,342.50037,4.622 1462,-37.05115,-128.96661,117.127,279.20828,4.43 1462,618.80835,493.77176,19.878906,38.161957,4.429 1462,425.09976,202.40192,21.564117,42.881775,4.369 1462,493.50378,227.56226,237.74103,515.683,4.314 1462,585.40967,-100.276794,75.97583,236.8211,4.276 1462,532.6963,-183.7134,147.92023,421.71973,4.275 1462,-70.339554,-188.8177,211.67485,455.01367,4.106 1462,110.60878,211.21759,32.194366,73.74707,3.99 1462,493.73874,195.12448,29.487946,67.84085,3.831 1462,476.91943,193.87364,26.837738,70.290115,3.781 1462,428.5091,194.29756,28.318146,67.84059,3.728 1462,-9.412628,-6.132286,39.24205,101.62899,3.614 1462,135.44414,200.76419,22.53357,38.380417,3.578 1462,596.7148,200.01028,40.771484,105.49762,3.564 1462,2.8744607,-16.795193,16.633257,39.509083,3.549 1462,363.5762,193.09691,29.074615,60.264435,3.525 1462,126.10996,202.08578,24.302803,41.45021,3.516 1462,482.60547,224.30006,19.05896,41.4843,3.51 1462,595.3441,-46.929,43.35956,105.28893,3.504 1462,619.3259,-18.381634,16.944641,42.38971,3.499 1462,1.8592107,490.13406,20.00253,42.88449,3.491 1462,-7.5599527,164.93993,37.409035,105.97334,3.469 1462,580.6,204.09898,41.44525,97.8181,3.426 1462,146.93317,209.06479,40.80725,86.46231,3.41 1462,105.70563,165.85625,58.877197,116.02876,3.394 1462,541.6964,221.01282,29.429626,55.151184,3.296 1462,626.6309,77.8923,18.249817,46.972298,3.267 1462,130.88095,216.26685,26.744751,51.45041,3.238 1462,612.2263,87.88966,38.02234,115.80046,3.191 1462,-5.6506443,2.0905056,17.563766,40.16478,3.137 1462,612.604,202.6091,37.403564,111.486694,3.111 1462,487.72534,203.30362,21.313934,53.15634,3.07 1462,355.64084,202.26639,40.393036,78.111206,3.056 1462,538.5799,228.13875,21.070251,40.64171,3.019 1462,412.67517,-17.74863,55.626038,134.63072,3.019 1462,454.9359,195.28969,28.638794,66.11931,3.002 1462,85.43286,197.01463,39.17682,88.28404,2.997 1462,129.46521,183.25398,34.263443,59.688126,2.993 1462,-8.87021,103.34244,38.855686,104.14227,2.981 1462,9.779308,-91.91345,73.88014,210.96855,2.973 1462,546.7131,413.33408,83.18866,167.11209,2.969 1462,266.7672,135.00845,19.971466,43.078827,2.965 1462,387.38345,203.95357,40.730316,75.558395,2.964 1462,-7.6349115,212.9834,37.270073,104.01819,2.954 1462,1.9106388,-39.339596,42.719414,100.66918,2.937 1462,597.85614,460.5441,38.56024,99.48068,2.937 1462,546.7007,88.67693,17.669556,34.43148,2.931 1462,406.53824,84.28064,29.407227,56.199554,2.931 1462,506.22623,212.70328,21.3956,44.64383,2.923 1462,-5.150751,27.005112,15.681298,37.514427,2.921 1462,95.94491,194.56744,53.432213,135.20673,2.914 1462,273.70908,129.3829,22.31195,41.639053,2.896 1463,158.26329,218.46835,36.80043,83.982666,48.128 1463,-5.9134073,-17.376274,17.7513,42.382423,6.191 1463,-13.080059,476.79013,32.20089,62.87735,6.18 1463,-11.437291,-32.100662,29.825684,73.326065,5.959 1463,603.33716,-54.793427,53.356506,138.28593,5.802 1463,-6.4621496,488.76694,19.151234,44.076447,5.736 1463,623.09827,-34.18431,26.505615,73.91087,5.709 1463,627.53955,-17.661694,16.924866,45.546455,5.616 1463,613.42706,454.5818,39.64569,107.67267,5.345 1463,-72.80689,266.43826,201.60037,461.2916,5.096 1463,583.1487,411.07617,71.66455,177.16833,5.031 1463,164.16998,212.60396,26.784592,45.88823,5.026 1463,-22.290268,400.90762,79.97729,176.33273,4.966 1463,-17.00599,-61.058083,55.82464,143.69653,4.962 1463,536.4865,310.80603,143.35059,341.88794,4.787 1463,584.958,-98.303444,75.92511,233.30563,4.664 1463,626.3467,487.98953,21.499695,45.193512,4.589 1463,-36.81995,-128.88509,117.22949,276.6302,4.586 1463,493.30298,227.23492,238.15094,514.9823,4.541 1463,171.36612,218.48808,25.891266,55.811386,4.406 1463,629.1422,236.24472,15.810303,41.954468,4.362 1463,489.5439,-178.06213,235.50174,424.65436,4.317 1463,-70.39292,-190.01913,211.22305,456.53882,4.316 1463,173.73619,217.36472,42.804718,94.90631,4.02 1463,168.21344,248.1932,35.40471,68.8298,3.89 1463,-8.953226,-6.108513,38.54928,102.216515,3.874 1463,2.4842548,-15.413242,17.001274,39.649307,3.862 1463,618.24854,249.62851,18.443237,40.2323,3.657 1463,618.2107,491.2056,20.944641,41.981598,3.65 1463,619.3437,-18.267786,17.116638,42.47327,3.605 1463,143.48059,216.75218,56.062103,137.61665,3.567 1463,151.22292,207.28607,32.336655,60.90735,3.533 1463,194.99927,217.01784,41.267593,100.10127,3.461 1463,142.4774,183.42178,57.54689,110.14484,3.444 1463,575.44165,177.4402,51.839417,124.408066,3.419 1463,612.94244,49.13112,37.31018,105.07941,3.363 1463,133.71036,217.1756,42.701263,94.41846,3.342 1463,-5.6941056,281.7263,17.22571,39.873383,3.339 1463,-8.917822,167.52524,38.350147,103.75116,3.309 1463,379.89337,134.85423,31.981934,58.3925,3.307 1463,9.122777,-91.32612,74.53565,207.4923,3.226 1463,606.2732,219.0129,25.498657,61.913254,3.225 1463,615.01855,-21.338884,26.82898,72.07976,3.176 1463,9.822578,-17.030088,17.848621,40.032978,3.167 1463,546.524,413.3363,83.56061,167.21606,3.127 1463,598.21924,461.51434,38.48883,100.61035,3.119 1463,-5.0126925,298.76398,17.239628,40.317627,3.091 1463,531.18005,-135.25612,116.70355,271.96146,3.067 1463,596.3823,239.37146,40.09247,91.24524,3.06 1463,3.2678413,-23.128452,48.51444,141.10135,3.004 1463,613.7272,109.907,37.488586,109.41344,2.99 1463,620.14026,76.99797,17.512695,37.87558,2.979 1463,1.8050778,489.46304,20.149868,43.667877,2.965 1463,597.5695,83.821915,40.617676,102.723434,2.955 1463,114.7293,209.1771,42.207832,92.09628,2.943 1463,613.0398,226.65576,36.358276,96.259766,2.942 1463,587.61127,147.63402,60.58368,193.2212,2.939 1463,610.90283,246.58978,18.102722,36.827454,2.917 1463,587.33954,92.59095,17.583313,31.276573,2.904 1463,-5.9863706,343.1356,18.124676,43.557556,2.887 1463,-4.7933154,2.2219772,17.294733,41.18607,2.887 1463,-8.773288,295.1402,38.57933,104.05005,2.885 1463,602.3917,222.46817,17.898926,39.42636,2.881 1464,157.92746,207.527,47.458755,117.57347,87.467 1464,162.84552,251.76686,31.623032,73.72081,7.93 1464,161.49823,206.2103,35.281982,68.39642,7.174 1464,-12.81509,477.1727,31.639292,63.434723,6.493 1464,-6.425994,488.63583,19.001907,44.040497,6.465 1464,-11.267765,-31.825954,29.714745,71.76021,6.287 1464,-5.847172,-17.456825,17.679173,42.481976,5.887 1464,611.0984,-46.56334,41.182495,100.85529,5.79 1464,627.1292,-17.416431,17.073181,44.660828,5.485 1464,585.2333,-96.69782,75.14581,230.86975,5.173 1464,613.18317,454.40247,39.823547,107.40625,5.087 1464,-72.5254,267.2444,201.12564,460.59155,4.963 1464,583.19446,410.7281,71.685425,177.36047,4.962 1464,-16.787016,-61.68837,55.498573,143.59854,4.861 1464,-22.154068,401.82706,80.03859,175.97336,4.826 1464,626.3706,487.4909,21.403564,46.191772,4.747 1464,536.5884,310.87408,142.72388,341.44122,4.662 1464,441.9651,-10.135971,33.54471,63.690205,4.561 1464,-37.141727,-129.0273,117.26825,279.27444,4.551 1464,531.8383,-182.3258,149.69482,419.63483,4.46 1464,178.53024,259.76215,34.404007,64.960724,4.361 1464,493.18604,226.4513,238.21179,516.1946,4.335 1464,171.34174,215.14209,36.422882,75.1691,4.307 1464,-70.08593,-189.1023,211.54654,455.80545,4.201 1464,168.02101,190.05716,63.68753,161.6146,3.761 1464,-9.096167,-5.962265,38.756153,101.14858,3.68 1464,2.921331,-15.197264,16.552713,39.044346,3.555 1464,603.811,-2.7721329,52.902344,144.59833,3.543 1464,441.72827,-14.438137,18.709625,41.855824,3.54 1464,618.2057,489.3577,21.05072,43.721405,3.46 1464,-4.075835,28.113432,14.692641,37.182716,3.437 1464,456.91592,-1.8295193,20.067108,39.702835,3.429 1464,449.362,-13.65972,18.352417,40.73361,3.384 1464,1.670177,489.83347,20.333984,43.21817,3.382 1464,190.84367,261.84042,34.35634,65.246185,3.368 1464,192.50146,227.7299,43.542114,106.69472,3.368 1464,-4.8097186,232.96045,15.896143,37.902588,3.35 1464,-5.0301223,215.76471,15.640406,38.48285,3.314 1464,619.0841,-17.699675,16.922913,41.139698,3.29 1464,440.91568,-0.51404953,22.973785,40.59359,3.287 1464,-4.5427666,3.1842632,16.825811,39.60067,3.237 1464,-5.4398613,151.24179,17.917162,44.517715,3.154 1464,596.47473,96.04863,40.796753,104.075745,3.141 1464,451.60724,-31.054226,30.485016,71.87224,3.141 1464,-9.381077,166.35365,38.258774,103.868515,3.14 1464,546.5018,412.6373,83.677124,167.66287,3.123 1464,76.028755,252.259,16.61438,32.054626,3.086 1464,-8.951595,71.069916,39.408554,102.44479,3.077 1464,68.36592,251.16582,17.498909,33.41765,3.071 1464,86.246605,-33.443596,28.58831,69.38175,3.06 1464,109.31889,181.49615,57.061447,132.14508,3.055 1465,65.56679,226.64075,68.79048,138.9513,68.991 1465,627.3379,-15.639749,17.003235,43.332016,7.251 1465,622.8363,-33.434925,26.787231,73.781784,6.904 1465,-6.267067,489.1604,18.775734,42.696533,6.583 1465,-12.634748,476.7925,31.155376,63.429535,6.018 1465,-11.516235,-32.323925,29.903816,72.60067,5.628 1465,-73.218315,264.8526,202.28995,462.2647,5.568 1465,585.5167,-96.425026,74.90204,229.78488,5.376 1465,618.854,-14.698428,16.911438,40.445107,5.313 1465,-6.2618566,-18.621372,18.16086,43.691902,5.297 1465,602.82495,-55.196705,53.38037,135.3471,5.157 1465,626.44507,487.8991,21.216675,45.47357,5.122 1465,613.336,454.3058,39.30957,108.338135,5.076 1465,-16.419333,-61.06869,55.611107,143.38654,5.036 1465,-21.908424,400.43115,79.83623,176.45093,4.979 1465,583.10925,411.41122,71.57123,176.70761,4.94 1465,-37.027992,-127.83377,117.50759,275.21933,4.749 1465,38.953712,204.1352,93.48177,232.89294,4.545 1465,532.1499,-182.11385,149.7904,420.07022,4.533 1465,536.72784,311.43726,141.74945,341.18726,4.497 1465,169.63724,162.28358,30.485977,58.257492,4.496 1465,348.30478,187.504,29.149445,65.52078,4.356 1465,-8.804851,-6.0018272,38.770107,100.61954,4.222 1465,594.03516,-44.5606,44.023376,99.490234,4.18 1465,-70.77342,-189.55646,212.74419,457.32086,4.134 1465,612.91943,-16.050623,28.17627,66.73971,4.133 1465,493.2771,226.16296,238.38611,517.11847,4.077 1465,80.36748,249.71033,40.462906,88.21411,4.058 1465,611.3674,-11.7073555,16.249817,37.794067,4.004 1465,610.5602,1.4047432,19.151794,36.49023,3.777 1465,87.41922,281.2276,39.709038,87.075165,3.741 1465,618.7275,490.1081,20.481018,42.2442,3.72 1465,97.47906,219.48929,64.822426,142.78464,3.699 1465,171.00746,-17.608213,17.439972,40.594242,3.548 1465,533.994,-32.57904,28.637268,73.12082,3.459 1465,2.146629,490.44812,19.850689,41.37909,3.455 1465,602.7271,-13.592406,16.63623,38.951267,3.427 1465,613.02454,44.92596,36.669006,107.46567,3.416 1465,602.91766,0.36201668,19.586182,37.205864,3.379 1465,104.53994,283.20087,38.383446,77.71738,3.372 1465,49.88943,222.99362,51.00149,96.849884,3.371 1465,586.4802,-15.744966,17.177856,39.880943,3.364 1465,8.970194,-91.062836,74.68155,206.87488,3.343 1465,530.0327,-15.16226,17.975586,38.73989,3.331 1465,537.9922,-16.449963,17.959229,40.22397,3.26 1465,548.70905,-2.7548199,32.554382,62.727142,3.233 1465,56.509636,146.65831,97.13833,231.03114,3.218 1465,162.43867,-16.569553,17.817276,39.57879,3.197 1465,594.55237,-1.4082413,20.164795,39.909203,3.185 1465,594.5229,-13.95813,16.730957,39.34237,3.184 1465,88.836044,219.45517,50.879257,107.57614,3.133 1465,573.8518,-17.715946,53.707947,128.1029,3.127 1465,597.07404,79.9863,39.447205,103.82004,3.113 1465,572.28955,-3.8357506,30.43982,64.24889,3.113 1465,546.9471,413.40073,83.15509,167.96078,3.113 1465,2.595511,-16.847729,17.117155,40.78093,3.109 1465,586.80115,-2.9678783,20.487,40.84664,3.104 1465,-8.713607,150.71852,38.46495,99.242966,3.096 1465,72.887375,273.87848,39.454605,89.446594,3.089 1465,21.467276,302.19513,150.31041,344.58282,3.083 1465,612.35846,92.182785,37.491394,109.730286,3.057 1465,598.22644,462.39606,38.197144,99.25275,3.048 1466,-6.4399233,489.75842,19.245487,43.0719,6.014 1466,-8.426756,463.95828,37.18792,93.48007,5.843 1466,-12.22877,478.7436,30.487381,61.894226,5.823 1466,610.8907,-47.184486,41.227722,99.14674,5.568 1466,613.52014,453.35364,38.92737,108.41376,5.508 1466,-11.548476,-32.843796,29.76844,72.83935,5.413 1466,-6.043939,-18.640182,17.908796,43.029552,5.186 1466,627.31525,-16.739168,16.84253,43.61395,5.077 1466,626.5804,487.8078,21.109436,45.089355,5.063 1466,-16.637405,-60.634537,56.22403,143.02104,5.052 1466,-21.614046,402.92215,78.96819,175.30246,4.955 1466,585.7725,-97.03199,74.69348,231.7168,4.905 1466,-72.387764,266.983,199.95924,459.11368,4.858 1466,583.4861,410.5933,71.28265,177.54245,4.819 1466,-36.744926,-127.94746,117.42173,275.23376,4.817 1466,238.02626,164.60123,25.72667,63.69731,4.763 1466,531.73474,-181.60147,149.52686,418.86258,4.642 1466,536.72705,311.42368,142.47607,341.91287,4.443 1466,-71.17233,-189.75764,212.33038,456.7334,4.211 1466,492.8648,227.08289,238.48157,517.19183,4.179 1466,42.65857,148.76979,33.74317,68.01857,3.947 1466,-8.412214,-4.931526,38.79634,100.771484,3.808 1466,619.869,-4.152956,17.91449,36.552177,3.538 1466,439.87134,199.52095,22.390198,43.260605,3.327 1466,566.8723,-33.368927,28.333374,73.0228,3.327 1466,172.83675,155.49951,29.860413,61.11296,3.281 1466,-4.2399473,25.869505,16.056671,41.8331,3.222 1466,266.0306,-18.645462,17.806854,40.532475,3.191 1466,597.71716,459.43378,38.47278,100.908325,3.152 1466,2.728331,-16.43627,16.887537,39.179646,3.13 1466,1.7268181,-38.529568,42.890133,101.06981,3.123 1466,546.865,412.24252,82.90033,168.83359,3.123 1466,612.51807,204.697,37.59326,111.338394,3.118 1466,234.50594,-17.74858,17.84465,40.014854,3.117 1466,618.8089,490.1065,20.636963,42.446472,3.098 1466,-4.559531,199.78354,16.21802,38.347687,3.049 1466,242.75223,-17.641731,17.427704,40.330505,3.048 1466,250.87547,-18.148512,17.178574,40.59241,3.024 1466,13.467855,-16.361958,54.02958,125.07118,3.023 1466,-4.790572,59.655914,16.205873,36.349243,3.008 1466,6.006461,466.33713,36.880943,97.733185,3.007 1466,613.1566,140.31567,37.6532,112.61163,3.002 1466,258.51346,-17.659296,17.49234,40.19844,2.989 1466,249.10681,166.43283,20.728424,44.4433,2.982 1466,218.23921,-17.523693,17.35585,39.438915,2.96 1466,261.9346,-33.790657,28.434326,69.46637,2.921 1466,627.162,8.021706,18.149231,47.975952,2.918 1466,603.6535,9.34063,52.431458,153.29852,2.911 1466,210.44861,-15.470036,17.06015,38.040955,2.911 1466,2.056077,490.0085,19.918705,43.55429,2.892 1466,-8.660315,231.4466,37.221756,105.12213,2.886 1466,572.56177,-19.7817,53.207336,130.32176,2.886 1466,4.1361437,200.07262,17.170654,35.56125,2.863 1466,589.35406,-34.39019,29.060913,70.078,2.859 1466,-8.784994,166.26126,38.419266,100.044495,2.848 1466,240.11166,-43.4861,46.93701,92.170654,2.81 1466,597.4661,188.59302,40.320984,109.269714,2.806 1466,80.4274,-38.873486,46.23697,92.81104,2.805 1466,-9.84177,390.84344,38.692646,108.32788,2.783 1466,207.93515,-42.634537,46.736557,91.888245,2.779 1466,4.217554,158.04323,39.40264,101.74852,2.765 1466,586.4049,-16.96683,17.634705,39.85515,2.762 1466,612.798,381.69058,38.013306,108.369965,2.76 1466,613.04877,-5.1256485,38.152893,112.6364,2.753 1466,185.7831,164.49403,20.929733,46.92453,2.743 1466,-5.8486414,0.72919846,17.907581,43.256905,2.737 1466,228.28888,173.1833,40.26538,94.91655,2.734 1466,-4.866581,185.57954,15.697452,36.371933,2.719 1466,237.6734,-35.321182,29.608398,69.349525,2.71 1466,611.7605,-1.4536705,17.792236,33.9275,2.693 1466,613.14545,334.1751,37.07892,106.65991,2.686 1466,595.1499,-15.118082,16.796875,37.563602,2.679 1466,538.1027,162.10834,139.22552,347.38336,2.678 1466,259.52402,176.2905,40.77115,93.13449,2.671 1466,569.5637,-17.78584,19.224487,41.381264,2.661 1466,226.3124,-17.627066,17.771805,39.570312,2.657 1466,48.58769,-38.856873,46.011272,94.391014,2.654 1466,204.77219,-16.986164,31.137878,62.403725,2.653 1466,-6.032346,86.9836,18.481844,42.38211,2.647 1466,612.9083,268.3504,37.494995,111.247986,2.641 1466,75.54262,-17.538052,56.4066,120.99924,2.641 1466,112.40314,-39.194782,46.149902,93.35243,2.64 1467,-6.3674073,488.96045,18.941175,43.16382,5.968 1467,-11.698252,-32.271717,29.884737,71.916855,5.857 1467,611.6006,-47.739372,40.798157,102.228065,5.853 1467,-12.440492,476.4306,30.7958,64.01129,5.81 1467,-6.075488,-18.521435,18.090351,42.766808,5.595 1467,627.34753,-17.563948,17.10382,45.01203,5.396 1467,585.578,-95.4001,74.5564,228.35371,5.286 1467,613.1635,454.29575,39.691833,107.46878,5.075 1467,-72.62672,266.94092,200.48618,459.2948,4.957 1467,583.1236,411.10532,71.664734,176.95401,4.936 1467,-21.649714,402.56805,79.13935,175.6167,4.905 1467,-17.551514,-62.866776,56.90519,146.00421,4.771 1467,626.3827,487.99194,21.334045,45.836365,4.731 1467,490.69086,-179.66081,234.45685,425.40118,4.709 1467,536.53235,311.3286,142.56342,341.4535,4.631 1467,-37.113724,-126.79697,117.812164,277.77344,4.346 1467,493.03284,226.24234,238.4851,516.765,4.312 1467,-5.288363,182.85129,17.521664,39.273758,4.274 1467,-71.154015,-189.24194,212.42368,453.9896,3.993 1467,363.4513,166.53583,28.29953,70.01497,3.896 1467,333.2931,0.8494663,29.499603,58.46515,3.887 1467,2.1931915,176.82907,19.357557,34.7222,3.881 1467,331.0329,-13.167849,16.479767,36.92426,3.628 1467,346.5816,-13.146168,16.900757,37.116016,3.567 1467,338.5895,-11.86655,16.72345,36.301113,3.554 1467,-7.763506,40.879665,37.225883,103.67926,3.539 1467,348.64578,-11.313351,30.63507,61.534325,3.477 1467,2.5698872,-16.738026,17.189127,39.554947,3.392 1467,618.4072,490.5173,21.02832,42.868744,3.362 1467,1.9818187,489.57062,20.055786,42.89612,3.314 1467,-10.792088,-2.7376976,41.250343,100.38846,3.286 1467,531.91833,-132.71948,114.42676,267.7083,3.257 1467,619.30945,-18.457542,16.856995,42.3971,3.237 1467,-11.845495,164.32208,28.875172,59.704712,3.212 1467,612.37537,28.12812,38.29248,106.648674,3.202 1467,362.44797,-14.195867,17.020264,38.13848,3.17 1467,372.15222,-13.035807,32.47989,61.345177,3.159 1467,9.358837,182.30508,21.71763,38.281128,3.158 1467,341.5633,-33.37403,29.121521,75.29423,3.146 1467,354.6628,-12.84474,16.872528,36.77657,3.132 1467,387.48157,-16.187372,32.869812,64.78051,3.125 1467,378.31824,-15.183076,17.439575,38.916027,3.095 1467,546.50195,413.05624,83.54047,167.46463,3.09 1467,357.27783,-33.204277,29.651794,75.12105,3.075 1467,-5.48609,70.94722,17.397112,42.11451,3.064 1467,370.59055,-13.92244,17.186096,38.122723,3.051 1467,603.81415,-24.311226,52.17737,131.90627,3.038 1467,317.98486,-1.4073963,30.012817,61.67591,2.989 1467,589.5465,-55.11226,54.174316,138.74406,2.979 1467,612.89453,172.08337,37.44879,111.02936,2.967 1467,-4.4643083,163.7962,16.25176,36.76593,2.962 1467,-8.90085,359.27408,38.230003,106.18045,2.927 1467,-6.0844364,198.13397,18.042404,40.18567,2.914 1467,-7.7658463,168.48355,37.013596,100.42001,2.913 1467,20.27988,179.42383,31.47755,51.495895,2.904 1467,323.02585,-13.024332,16.609528,36.479282,2.887 1467,362.16708,-0.8498268,20.741272,37.335472,2.863 1467,1.6653275,-40.232044,43.66404,102.19013,2.86 1467,330.69354,-0.38576508,19.470978,36.638165,2.856 1467,615.09906,-22.5869,26.518738,69.92869,2.845 1467,75.034645,142.10791,19.015602,35.049408,2.822 1467,598.0042,461.87524,38.31427,99.196594,2.799 1467,596.36145,199.28868,40.616882,108.25102,2.784 1467,377.48303,-2.5285263,21.496216,38.985985,2.783 1467,314.74768,-14.558092,16.90622,38.034924,2.755 1467,5.7526913,465.5969,37.639496,99.29349,2.732 1467,-8.067152,230.62143,37.44303,108.1228,2.729 1467,393.54584,-2.7788792,20.137817,39.303406,2.722 1467,-6.3758364,-0.835186,18.960373,44.780685,2.707 1467,326.1171,-33.44922,28.35144,75.465866,2.69 1467,179.27151,163.95714,43.245575,85.94252,2.68 1467,-4.753502,106.16307,15.651888,40.1008,2.667 1467,-9.464199,104.34787,39.60887,102.30817,2.656 1467,496.61584,-40.310486,45.84015,95.639465,2.651 1467,22.711496,307.534,148.3444,339.8487,2.643 1467,603.5159,40.542747,53.047485,149.27966,2.64 1467,561.49475,-41.86945,45.368103,96.89531,2.636 1467,346.11774,-1.0099068,20.134094,36.841988,2.634 1467,67.33331,140.8743,20.002502,36.479584,2.631 1467,211.82684,171.63765,29.76677,67.65343,2.624 1467,538.1185,162.73358,139.6482,346.68323,2.617 1467,356.00433,177.44844,40.472534,89.208145,2.608 1467,240.89612,-37.835884,46.153076,93.625824,2.607 1467,-6.1232047,472.77664,16.726128,39.2648,2.606 1467,464.3643,-40.566315,46.25992,95.49281,2.6 1467,272.4562,-38.388412,46.2818,92.30273,2.596 1467,208.96152,-38.20883,46.00702,93.96097,2.59 1467,432.3977,-40.490788,46.451447,94.39202,2.586 1467,574.0065,-17.663754,53.191345,123.89607,2.579 1467,528.9828,-40.184906,45.678772,95.33547,2.578 1468,627.07935,-18.171522,17.411255,45.590202,6.223 1468,-11.363397,-32.721107,29.605564,72.22007,6.217 1468,611.5825,-47.664642,40.6698,102.50569,6.039 1468,-6.154291,489.27417,18.595343,42.489258,5.838 1468,-12.213303,476.8616,30.448997,63.911774,5.722 1468,-5.9163723,-18.346283,17.639029,43.04499,5.503 1468,-17.350662,-64.43357,56.93142,148.04579,5.442 1468,585.36365,-96.50709,75.00653,229.22678,5.175 1468,583.21875,411.42914,71.43915,176.85455,5.037 1468,613.11365,454.59442,39.240845,107.70599,4.961 1468,-72.545204,266.588,200.36954,459.6671,4.947 1468,-21.714727,402.59918,79.178925,175.30353,4.841 1468,626.33264,487.9907,21.09845,45.903595,4.672 1468,536.75696,310.721,142.22913,342.1136,4.564 1468,490.4212,-177.83188,234.66919,423.6972,4.506 1468,-36.931644,-127.30807,116.463486,279.6691,4.283 1468,492.7933,225.95651,238.63358,516.9851,4.204 1468,-70.19017,-188.97942,210.99243,452.74152,4.024 1468,491.08627,-12.882584,16.225494,36.181137,3.945 1468,-8.689259,71.0206,37.973858,105.297516,3.66 1468,2.9171472,-16.577246,16.520353,39.453037,3.627 1468,2.3281264,490.44278,19.367243,41.416656,3.418 1468,2.4174852,210.37689,19.45222,43.79138,3.413 1468,49.750767,201.90305,34.49011,55.610016,3.392 1468,618.9979,-19.206116,17.290283,43.189255,3.338 1468,498.38223,-12.263571,16.693817,36.306583,3.323 1468,-10.284317,-4.3601265,40.19674,101.91341,3.315 1468,475.30154,-1.3721828,18.288605,33.520027,3.296 1468,-5.029707,215.74927,17.984558,44.31302,3.233 1468,138.48859,204.17235,19.387253,31.441772,3.207 1468,67.46966,200.24382,33.8992,53.464874,3.188 1468,612.6344,44.00049,38.473633,109.50009,3.187 1468,483.50308,-12.2722,15.895355,34.94021,3.175 1468,531.49365,-133.5373,115.46094,267.01724,3.15 1468,603.0654,-26.937992,53.180664,133.96513,3.143 1468,-8.55344,199.18326,37.512955,101.12897,3.141 1468,612.4044,234.21568,37.664246,112.92006,3.103 1468,-8.681646,261.62708,37.504005,108.41098,3.068 1468,459.8988,-3.4369946,17.77887,35.13903,3.055 1468,547.14594,414.1712,82.73236,166.6831,3.049 1468,490.7359,-0.08542824,18.971558,34.226334,3.045 1468,475.08527,-13.819216,15.792969,35.962406,3.029 1468,492.25278,-11.677734,31.605072,62.580727,3.028 1468,589.93787,-54.824078,53.80725,138.01176,2.969 1468,36.447166,210.93744,31.955345,56.363556,2.961 1468,139.22316,205.5419,31.770157,62.579407,2.954 1468,614.85095,-23.203083,26.479736,69.87429,2.954 1468,5.675788,466.9315,37.78585,98.30527,2.952 1468,483.3711,-0.25618362,18.50415,34.47754,2.914 1468,618.54987,490.36823,20.536743,43.100525,2.909 1468,345.74213,198.39111,30.70459,72.41855,2.906 1468,506.5657,-13.430141,16.833893,37.284588,2.893 1468,467.21747,-2.868989,17.985962,34.99271,2.888 1468,-4.510675,202.3973,15.999781,41.18492,2.884 1468,486.33347,-32.374588,27.70987,72.70171,2.877 1468,612.2273,282.7906,38.2619,110.83093,2.811 1468,612.5265,140.3225,38.074463,110.80046,2.795 1468,131.25526,204.01881,18.859985,30.799286,2.784 1468,9.748249,-93.553116,73.317215,214.34769,2.768 1468,597.9456,461.83676,37.77893,99.25705,2.766 1468,436.67435,186.05554,28.300568,65.228745,2.762 1468,-8.481878,358.39694,37.84487,106.60086,2.762 1468,-9.68338,138.74136,39.976196,98.89862,2.754 1468,144.47415,206.69852,23.18158,37.145996,2.752 1468,-4.846873,155.57848,15.784025,38.88304,2.732 1468,521.77454,-0.16310501,19.431213,35.970646,2.721 1468,478.261,-0.61447144,28.836426,60.328114,2.703 1468,-5.3856015,48.53424,17.15876,42.1772,2.694 1468,514.7322,-15.573824,32.766113,65.521324,2.682 1468,470.6348,-33.011963,27.259491,70.5179,2.663 1468,-4.9066133,171.4335,16.10057,40.777008,2.657 1468,-10.475624,426.84192,40.37896,100.29181,2.651 1468,-9.994143,37.92642,27.685778,66.083694,2.601 1468,2.232871,-41.637253,42.46135,102.225044,2.574 1468,22.606888,307.32428,148.0789,340.3775,2.568 1468,606.3176,-35.822742,27.313904,73.25339,2.568 1468,538.088,162.58438,139.29211,347.44513,2.567 1468,538.7598,-3.21389,18.416016,36.276928,2.564 1468,514.6696,-13.173353,16.724365,37.563732,2.556 1468,-8.381359,311.63632,37.367706,108.927216,2.555 1469,153.11476,214.71262,21.961975,44.649017,23.417 1469,-5.3017783,-17.615452,17.663496,43.11657,7.865 1469,-10.920377,-32.358017,30.04388,72.573166,6.841 1469,610.9157,-45.992046,41.09015,98.97483,5.946 1469,627.1569,-17.69942,17.194641,44.308807,5.572 1469,-8.70675,464.33228,37.518875,92.98126,5.473 1469,-6.5321484,488.94678,19.317429,43.667297,5.219 1469,-73.08592,265.52905,201.21274,461.42798,5.14 1469,122.55154,234.69199,18.618202,33.733765,5.135 1469,-20.635487,-84.50257,72.37506,192.39886,5.083 1469,585.6335,-95.47885,74.05377,228.40993,4.916 1469,582.92285,411.38882,71.768616,176.90921,4.913 1469,613.0915,454.6629,39.523865,107.37164,4.895 1469,626.36566,488.0537,21.224365,46.34436,4.84 1469,536.3008,310.0649,143.19519,342.9976,4.827 1469,-21.728973,402.5042,79.328,175.22772,4.815 1469,-37.00698,-125.883736,116.435455,272.69156,4.813 1469,167.50252,217.9461,23.046432,40.16754,4.498 1469,493.6063,227.88455,237.88791,515.1957,4.459 1469,490.0395,-178.2155,234.7193,422.86664,4.427 1469,3.0246556,-15.809335,16.690285,41.248734,4.348 1469,-9.429959,-6.0934334,40.007126,99.680984,4.27 1469,147.54062,209.90866,40.535736,69.38785,4.233 1469,-70.3963,-189.79248,210.56387,455.56995,4.169 1469,171.24144,211.04369,31.970688,51.476974,4.102 1469,36.80847,-15.1816845,32.07292,65.65688,3.994 1469,35.53247,209.7874,39.918236,85.497086,3.982 1469,158.08987,209.04343,24.361145,39.82347,3.911 1469,598.9309,190.70723,36.996765,100.91841,3.799 1469,4.463818,219.05338,37.633007,102.20517,3.783 1469,459.50714,-12.963478,33.28311,64.077194,3.739 1469,-5.463029,-0.36148453,18.475428,44.065853,3.716 1469,2.0404482,-37.365078,43.059093,95.80425,3.693 1469,473.02448,-2.519312,21.99353,42.59732,3.679 1469,474.40598,-13.013512,33.28653,64.31945,3.655 1469,-8.6186075,227.18982,37.5372,101.08411,3.588 1469,56.706688,223.93297,23.22541,40.824387,3.572 1469,494.69397,226.95132,31.680908,59.531677,3.509 1469,65.96706,212.56985,41.912926,82.47626,3.499 1469,184.83278,226.18858,21.361969,35.949203,3.476 1469,62.818596,217.14352,22.810814,40.467834,3.472 1469,619.0548,-18.092562,17.135132,41.098217,3.458 1469,33.039394,220.78293,20.246067,38.32489,3.454 1469,148.99261,224.54591,18.097076,36.695663,3.423 1469,101.96063,201.986,30.95076,56.67331,3.409 1469,8.668144,-88.05405,74.41902,203.10204,3.407 1469,509.85416,226.15604,39.16739,71.45654,3.389 1469,2.8567815,-19.902489,50.28998,132.49124,3.368 1469,581.343,191.84622,38.86499,97.39035,3.367 1469,613.33746,202.67253,37.50757,109.890335,3.314 1469,90.1985,-0.57946587,19.32383,35.613495,3.292 1469,618.2181,490.5205,21.0578,43.473267,3.27 1469,-4.8847585,205.22147,16.679077,38.737473,3.237 1469,477.09073,230.77339,30.72116,56.48149,3.215 1469,98.59885,-2.4898224,19.07441,36.317257,3.206 1469,29.143345,-3.9427795,30.361881,62.378056,3.204 1469,114.67819,228.25577,20.120728,38.951782,3.194 1469,613.55475,149.70795,34.638733,100.16089,3.193 1469,19.235203,209.00304,39.83774,87.71712,3.192 1469,67.40669,-11.301712,33.519096,62.9131,3.148 1469,612.63165,345.69635,37.53241,111.11359,3.14 1469,50.939465,210.65604,40.11343,84.072754,3.116 1469,410.69525,245.68651,18.200378,33.067154,3.11 1469,82.576904,-14.483469,33.024178,63.789352,3.098 1469,40.4066,219.7925,21.421864,38.313095,3.097 1469,251.26685,206.17049,16.94696,29.050003,3.093 1469,457.7225,-15.501045,18.606812,39.50766,3.09 1469,58.513947,-1.885622,20.630516,38.766212,3.071 1469,42.652813,-3.7540512,19.991192,40.613605,3.046 1469,531.17065,-12.500368,16.47528,36.85995,3.036 1469,506.74988,216.92433,57.687256,130.38243,3.035 1469,116.99963,244.45767,16.87973,29.73529,3.03 1469,538.98395,-12.833146,16.400635,36.96416,3.03 1469,186.47183,215.5384,33.317474,51.786423,3.024 1470,148.65956,223.6167,30.222137,59.222473,15.21 1470,-5.6489286,-17.607637,17.647945,41.74872,7.352 1470,161.0892,225.48685,33.351196,54.36789,6.387 1470,627.2535,-17.716385,17.05371,45.35484,5.905 1470,-11.172515,-31.987278,29.771511,70.835434,5.741 1470,626.1885,487.50485,21.691895,45.76004,5.632 1470,603.12177,-54.672527,52.989075,137.30963,5.571 1470,-8.690038,465.0553,37.493843,91.80493,5.486 1470,613.4281,453.74127,38.90576,107.69537,5.429 1470,623.0598,-34.32666,26.361877,74.04341,5.366 1470,-73.18579,265.76727,201.5138,461.96942,5.193 1470,-6.4871054,489.39838,19.088985,43.11786,5.125 1470,-17.555923,-62.778835,56.582928,142.3613,4.996 1470,6.5528536,215.69145,28.432575,68.27989,4.873 1470,-21.52833,403.17737,79.0421,174.7174,4.834 1470,561.28625,-129.18745,114.11505,278.77017,4.819 1470,583.2554,410.59265,71.36621,177.44476,4.747 1470,136.77461,221.05939,29.596512,63.423706,4.592 1470,536.82806,310.4972,142.29291,342.22864,4.592 1470,-36.76757,-127.00837,116.25602,274.515,4.581 1470,139.7507,240.13454,33.018036,58.666733,4.487 1470,-70.41049,-189.62032,210.77107,455.1197,4.253 1470,493.50623,227.08218,237.83832,516.25977,4.23 1470,0.069247484,245.5681,25.891903,71.84761,4.194 1470,73.72171,3.7763252,34.45719,67.14348,4.191 1470,490.03326,-177.32782,234.99579,423.0174,4.188 1470,3.3554947,223.79593,37.891026,99.333984,4.177 1470,33.627556,224.33005,42.16513,85.78854,4.176 1470,618.46796,490.49933,20.614563,42.97119,4.147 1470,66.17284,225.1889,42.081085,83.32092,4.135 1470,45.094738,227.28,29.053204,54.970886,4.099 1470,3.0229754,-15.738751,16.324192,38.747097,3.893 1470,-9.667616,-6.483383,40.053894,100.72834,3.847 1470,595.4715,-45.217613,43.312927,101.33912,3.836 1470,152.97356,239.36021,35.16063,61.282883,3.825 1470,-9.1727915,259.2878,38.29545,102.71573,3.734 1470,55.33356,235.12901,23.470997,42.708145,3.578 1470,20.146545,221.42293,28.896698,58.932816,3.576 1470,505.51093,269.95258,20.565918,38.85315,3.546 1470,81.65251,-13.837273,34.378067,64.76677,3.512 1470,619.258,-18.450737,16.962158,42.201397,3.501 1470,176.11728,242.66277,23.529556,37.080643,3.469 1470,10.401564,-0.9951439,19.724674,36.169666,3.429 1470,138.51653,209.03494,56.162796,93.57861,3.425 1470,10.078988,-15.911438,17.24088,38.42645,3.399 1470,-13.720297,201.1458,49.461693,135.1343,3.374 1470,2.0563626,-38.873486,42.76595,95.88521,3.353 1470,259.17877,232.45453,18.199677,30.007141,3.336 1470,168.20901,245.80228,23.466934,42.01129,3.28 1470,21.168653,-16.471498,31.658571,65.663795,3.275 1470,267.16006,233.76039,18.9776,30.01744,3.252 1470,242.22337,222.78075,19.33397,30.980545,3.249 1470,89.1698,-1.7365074,20.754936,39.219494,3.222 1470,3.7404017,-2.1763306,18.13706,37.0268,3.215 1470,9.105368,-89.66058,74.210526,205.54623,3.211 1470,497.432,269.10178,20.757324,38.235962,3.199 1470,73.08532,233.95964,22.206009,40.77562,3.194 1470,-4.945156,1.0274906,17.291782,40.281105,3.193 1470,-4.4130845,219.34547,17.13746,40.92311,3.161 1471,-5.5827594,-17.697477,17.301542,41.633,7.594 1471,626.9707,-18.203888,17.349487,45.874744,7.352 1471,-11.37158,-32.025593,29.603777,70.86125,6.51 1471,622.8506,-34.26667,26.34076,76.1722,6.068 1471,603.41565,-54.051376,53.050903,132.67886,5.884 1471,-6.394744,489.3282,19.136995,43.240295,5.609 1471,-8.749843,464.99454,37.588715,91.86948,5.402 1471,613.3235,454.6325,39.174133,106.447266,5.302 1471,626.131,487.72873,21.589355,45.966705,5.251 1471,584.76416,-96.1369,75.35126,227.41875,5.181 1471,619.2947,-17.772923,17.473755,43.945118,5.123 1471,614.35474,-20.693542,27.562317,73.54356,5.089 1471,-72.8114,266.5982,200.58582,460.5744,4.948 1471,-16.885664,-63.724636,55.156487,144.4293,4.926 1471,-21.705778,403.16452,79.39472,174.91928,4.87 1471,583.1837,410.98557,71.44281,177.20816,4.806 1471,536.89404,311.30896,141.77112,341.36853,4.516 1471,-36.6371,-128.57133,116.10639,278.6115,4.439 1471,489.9732,-177.24683,234.65692,422.74756,4.431 1471,594.7804,-42.49676,43.433594,96.897,4.269 1471,-9.534891,-6.059807,39.269665,101.692986,4.144 1471,493.3278,225.95721,238.17538,517.4778,4.129 1471,627.322,1.4748936,17.972534,45.175232,4.085 1471,-70.52519,-188.93811,210.90572,452.36423,4.076 1471,3.645568,-15.823463,15.903247,38.32744,4.055 1471,513.6913,5.8167,32.31311,64.77707,3.849 1471,613.8282,9.688423,26.948181,69.20741,3.599 1471,494.7539,5.1790085,30.59021,64.94685,3.593 1471,618.1065,489.5651,21.508484,44.405487,3.571 1471,627.01624,18.295948,18.586487,47.114605,3.563 1471,116.942154,219.69472,30.539062,62.370377,3.551 1471,483.37982,3.3460083,29.940613,66.29096,3.521 1471,611.0497,-16.11518,16.894958,42.728207,3.49 1471,-4.74358,0.8041611,16.293682,41.1611,3.389 1471,-7.623377,229.50838,36.984047,106.56419,3.388 1471,506.9176,-13.624292,17.094482,38.026302,3.376 1471,623.662,21.372929,25.08313,70.77396,3.325 1471,-8.664116,37.89587,37.803833,106.743484,3.292 1471,530.22614,-131.02403,116.50885,263.3744,3.288 1471,619.1073,2.249302,19.296753,46.215702,3.283 1471,10.832346,-16.541786,16.21321,38.585617,3.275 1471,2.3923159,-39.8668,42.34581,98.29737,3.251 1471,498.83295,-14.204029,17.006653,38.149403,3.237 1471,501.5527,-12.547546,31.325043,66.70282,3.233 1471,514.6256,-12.295736,16.845276,37.30155,3.222 1471,490.699,-14.197985,16.777435,38.73695,3.185 1471,597.78174,460.9652,38.14673,98.56079,3.177 1471,522.28265,-13.28359,16.808899,38.41094,3.154 1471,609.20386,4.2161884,20.245117,45.565216,3.138 1471,9.431515,-93.4328,74.27437,211.56128,3.122 1471,596.94165,-0.611084,29.21753,77.95195,3.064 1471,42.400146,-2.5439377,19.380005,35.867496,3.061 1471,612.45715,154.26917,36.886353,112.86926,3.053 1471,546.77716,413.34827,83.01709,167.26123,3.022 1471,138.07529,243.28043,20.269562,38.87622,2.973 1471,145.94052,245.7107,20.600143,36.80011,2.964 1471,5.5491924,467.9434,37.752098,96.12607,2.941 1471,-5.520171,185.54576,17.016314,41.60771,2.924 1471,-5.4622498,201.31317,16.396255,40.334,2.914 1471,254.29353,237.0873,14.484573,28.597305,2.907 1471,130.14658,215.00659,40.902542,86.53021,2.897 1471,-8.70283,326.6296,37.73066,106.477264,2.878 1471,613.01953,27.713268,38.17871,107.22824,2.872 1471,538.88806,-15.90977,16.434143,38.901882,2.86 1471,539.1269,0.7744312,17.850708,34.359917,2.848 1471,-4.73985,26.799448,15.569278,39.26986,2.833 1471,530.5087,-13.9102,16.813904,37.689953,2.829 1471,-9.339069,86.25025,37.837166,107.946495,2.809 1471,4.2655153,1.1621284,17.861347,42.426384,2.798 1471,58.572212,-16.190344,16.851822,38.641846,2.775 1471,-8.024813,275.59164,37.159584,107.79501,2.765 1471,101.853775,215.33215,40.59886,86.48242,2.754 1471,19.0178,-15.431191,16.080845,38.398464,2.748 1471,2.1018147,489.91055,19.721214,43.00522,2.744 1471,522.82135,-13.306086,32.440735,65.57155,2.742 1471,66.82327,-14.796244,16.345123,37.89309,2.737 1471,-12.002041,171.43584,29.360508,70.44914,2.735 1471,602.4203,-15.349548,16.450684,44.139484,2.712 1471,594.96533,-15.7670555,17.073853,43.63748,2.707 1471,531.2856,12.98494,31.19812,65.46631,2.7 1471,578.35815,-38.76266,43.9823,93.87881,2.7 1471,-10.906516,427.23645,41.139572,99.97339,2.692 1471,498.93353,-0.056858063,19.267029,36.47692,2.69 1471,122.32406,239.378,19.242378,40.486313,2.688 1472,627.1382,-17.059418,17.308716,45.53009,7.791 1472,-6.0005546,-16.94053,17.76616,41.03447,7.597 1472,622.9731,-34.678413,26.102295,77.2412,7.062 1472,-11.4276495,-32.179443,29.558811,72.30829,6.723 1472,-12.703398,477.59998,31.148129,63.096985,5.917 1472,-6.667953,489.19998,19.45297,43.257904,5.714 1472,585.6444,-96.232414,74.34943,230.37073,5.245 1472,613.4147,453.5884,39.199768,108.31137,5.177 1472,243.02682,213.46472,17.595062,32.264526,5.145 1472,602.6517,-55.42759,53.793518,133.90863,5.077 1472,237.08908,216.5797,16.688217,29.655762,5.068 1472,-21.363033,403.16553,78.70004,174.7843,4.983 1472,583.21204,411.45148,71.531555,176.83643,4.861 1472,-72.90781,266.38904,200.22655,459.98975,4.789 1472,-20.404037,-86.21513,72.15003,195.7517,4.751 1472,490.72833,-178.76314,234.5506,425.15543,4.698 1472,626.40686,488.3245,21.134644,45.89804,4.662 1472,619.1621,-17.17614,17.191284,42.810627,4.643 1472,536.7594,311.16602,142.41449,341.73407,4.586 1472,-37.0666,-127.287735,117.16756,275.88187,4.45 1472,2.7408032,-16.245497,16.764969,39.03732,4.449 1472,486.63956,-2.850872,29.111603,65.79122,4.391 1472,492.7678,226.65598,238.8378,516.25,4.194 1472,241.19882,202.5253,20.231628,32.033203,4.126 1472,614.6064,-19.86137,28.082092,72.06946,4.122 1472,593.8335,-45.008633,44.340454,97.9042,4.12 1472,-70.01626,-188.89484,210.39813,454.538,4.05 1472,220.11182,217.86455,15.794403,28.57135,3.987 1472,69.972305,207.80281,30.209122,52.914017,3.95 1472,-9.634022,-19.597473,38.50157,99.244286,3.948 1472,627.5303,8.438229,17.207397,49.65119,3.945 1472,469.06253,-15.031378,30.922699,68.54774,3.87 1472,315.15186,214.68207,20.4021,32.45436,3.842 1472,229.2984,216.88118,15.420242,29.14621,3.752 1472,86.824554,211.0413,22.803345,41.806488,3.733 1472,236.9426,232.99802,17.05429,31.886597,3.69 1472,482.5758,-14.827863,16.953583,41.03797,3.668 1472,490.31735,-16.430637,17.5354,43.217133,3.658 1472,76.45663,218.52402,30.55468,60.22519,3.611 1472,123.32115,239.67105,18.382004,32.379578,3.572 1472,243.36078,230.37985,18.311493,34.411438,3.549 1472,-15.993161,205.69067,49.605827,143.25214,3.54 1472,249.84535,217.05486,17.609695,30.331482,3.539 1472,236.45663,216.11975,31.352448,59.01581,3.45 1472,500.59564,-15.2511215,31.004333,67.303276,3.386 1472,581.194,-13.50256,31.514526,61.506138,3.382 1472,474.79675,-15.685417,16.730713,40.74249,3.38 1472,211.99109,217.00659,16.154663,29.360413,3.369 1472,517.55853,-33.543766,28.59851,73.4182,3.347 1472,574.15906,-34.48549,28.69983,74.14133,3.302 1472,-5.8985605,1.0450058,17.937107,41.65942,3.288 1472,618.3837,490.70868,20.669617,42.669067,3.233 1472,79.832466,-39.404427,47.238396,91.3205,3.22 1472,80.107574,211.45946,44.13344,84.283646,3.218 1472,315.77432,202.75851,32.861816,48.522552,3.187 1472,59.00432,184.68013,57.14177,120.564804,3.176 1472,53.818504,202.98166,31.423439,61.028687,3.173 1472,205.13446,241.32564,14.67894,26.959305,3.152 1472,610.84216,-14.428886,16.644165,39.240784,3.147 1472,-5.3043137,202.17816,17.342682,40.340836,3.146 1472,96.34037,213.7031,45.536537,82.12198,3.127 1472,-8.795549,100.73235,39.017708,106.789955,3.115 1472,204.47777,224.12941,15.145065,28.462387,3.105 1472,1.7821825,490.25635,20.346357,43.12903,3.095 1472,532.18115,-132.50734,115.01007,266.75082,3.068 1472,66.497154,225.49924,21.19255,43.793915,3.068 1472,57.981857,-17.134008,17.402618,36.824894,3.058 1472,1.5617275,-39.21375,43.321854,98.01301,3.057 1472,533.9588,-33.328575,28.276428,69.69154,3.052 1472,322.46973,220.518,19.842285,30.48944,3.032 1472,-1.3994837,188.73883,51.601833,137.16205,3.025 1472,-5.1364017,263.51993,16.748442,37.81482,3.01 1472,546.8992,413.87012,83.03931,166.90057,3.009 1472,586.3195,-14.810222,17.176819,39.294743,3.0 1472,578.5938,-15.081071,17.207764,39.362556,2.995 1472,58.571976,-29.662758,59.46216,121.405304,2.994 1472,453.70987,-17.686974,30.218018,67.21962,2.991 1472,10.332531,-16.906979,17.40398,39.97537,2.988 1472,88.90209,241.0425,22.304817,39.68297,2.979 1472,5.8854795,468.37872,37.44266,93.73718,2.961 1472,25.943222,190.89565,58.92495,127.598404,2.942 1472,467.26776,-15.355816,16.565796,39.18031,2.937 1472,-5.4999866,152.19012,16.901165,41.95508,2.93 1472,574.43243,-18.650345,53.349915,128.22536,2.903 1472,213.051,233.12355,14.075165,26.511185,2.903 1472,48.079086,-40.360268,46.65776,93.4089,2.899 1472,258.885,217.2026,17.437805,29.609406,2.894 1473,-5.401349,-16.715656,17.127129,42.22838,7.674 1473,-11.396648,-32.051044,29.723278,71.70458,6.625 1473,627.42334,-18.72079,16.937927,47.810272,6.556 1473,610.5547,-48.732445,42.086975,100.14086,6.198 1473,-8.675764,464.80115,37.426575,92.01172,5.803 1473,-6.451231,489.21133,19.138142,43.35666,5.422 1473,-16.649769,-62.565933,55.928055,145.07082,5.211 1473,585.73883,-96.24383,74.61853,228.01785,5.205 1473,321.2431,238.96446,21.2612,38.1364,5.126 1473,626.4049,487.41,21.354004,46.045746,5.092 1473,-72.780846,266.2541,201.0065,460.54572,5.056 1473,613.426,453.6162,39.2865,108.238525,4.888 1473,583.1164,410.87,71.61456,177.39966,4.843 1473,-21.543491,403.0732,79.21123,174.72543,4.839 1473,490.5759,-178.8374,234.25125,424.77667,4.714 1473,536.5836,310.71704,142.5799,341.85217,4.654 1473,33.073788,247.1106,20.875957,45.023132,4.653 1473,7.143749,245.93956,28.64912,63.01793,4.477 1473,493.1091,226.57376,238.51718,515.9188,4.307 1473,-36.91147,-126.17123,117.20306,275.32733,4.299 1473,3.3211012,-14.6837635,15.694898,39.07606,4.197 1473,236.69371,245.28568,16.20691,31.471619,4.051 1473,-70.30819,-189.16763,210.72491,454.6438,4.037 1473,-4.7715135,242.8581,17.114855,41.131042,4.01 1473,21.050163,247.73717,30.256733,59.88893,3.892 1473,39.23654,242.1103,21.499084,44.885147,3.8 1473,619.8855,-19.325125,16.526001,45.125202,3.788 1473,217.01973,226.8923,20.19194,32.023346,3.768 1473,3.0691986,252.74797,19.262106,43.603165,3.741 1473,-4.8932457,2.5843983,16.919353,40.680725,3.722 1473,507.0306,-2.3922195,32.08084,78.51324,3.683 1473,-9.086581,-5.0668907,39.237766,98.35379,3.646 1473,618.33466,489.02374,20.852966,43.887024,3.643 1473,218.61584,239.0669,18.23288,31.51181,3.595 1473,227.24504,240.51329,17.838211,30.834671,3.538 1473,509.92108,-33.483517,28.187561,75.4619,3.505 1473,550.5875,-35.164734,27.318115,72.62714,3.491 1473,209.82368,230.6683,21.096695,36.44342,3.429 1473,-7.8571415,246.9233,36.386204,98.55748,3.426 1473,513.93933,-14.935666,17.783508,40.196465,3.4 1473,498.596,-15.231075,17.720398,39.84748,3.371 1473,-7.7431164,71.579185,37.479317,103.71546,3.361 1473,516.8577,-15.605898,29.822449,66.51627,3.357 1473,603.6309,-30.449661,52.291077,140.95398,3.354 1473,291.51157,248.556,18.300903,32.141968,3.298 1473,-1.9992566,-18.505913,28.859629,69.84263,3.231 1473,505.9402,-16.297235,17.561035,41.552444,3.229 1473,274.7349,239.35461,18.183868,33.376953,3.2 1473,539.5322,-5.487955,18.312439,42.934364,3.194 1473,560.83234,-43.58784,45.65515,95.582245,3.184 1473,491.27338,-16.577398,16.893585,40.17261,3.181 1473,-4.7708564,263.39886,16.62524,41.27881,3.162 1473,283.63104,247.17941,18.221954,34.519287,3.122 1473,18.71856,252.31711,21.289238,43.829926,3.118 1473,10.650659,-16.167324,16.194431,39.999756,3.118 1473,5.6190157,467.93097,37.48335,95.897156,3.114 1473,531.81036,-133.1383,114.956604,266.97818,3.109 1473,299.6156,249.58228,17.387634,29.697693,3.097 1473,571.4615,-42.904663,58.69745,136.45493,3.094 1473,598.6075,-24.38071,39.12683,93.316605,3.083 1473,-4.873125,43.208103,16.127842,40.09454,3.071 1473,-9.4114,134.82065,38.38121,106.82463,3.065 1473,542.89484,-18.237844,27.93927,64.69515,3.031 1473,3.3160937,7.017296,17.861145,38.014984,3.027 1473,546.7132,413.1788,83.24664,167.18863,3.022 1473,243.9276,244.84862,17.497635,32.975296,2.979 1473,528.57355,-41.760956,45.928467,93.85999,2.955 1473,494.02524,-6.359066,30.385895,74.508026,2.952 1473,546.84656,-16.244734,17.1333,41.56101,2.936 1473,554.91644,-17.675323,16.75232,42.165016,2.931 1473,-10.489627,426.31866,40.771614,101.045105,2.928 1473,570.97876,-17.98262,16.544128,40.55366,2.913 1473,67.617905,283.27206,17.379318,32.576538,2.913 1473,606.9846,-35.456284,26.936035,73.92273,2.91 1473,11.914785,-30.378448,57.129967,131.76323,2.895 1473,522.2017,-16.725248,17.778809,41.197655,2.893 1473,566.684,-34.67796,27.316406,69.57477,2.89 1473,1.9624114,-40.21357,42.904465,101.49037,2.885 1474,-11.174607,-32.654526,29.533215,73.105965,5.972 1474,-5.975156,-18.857327,18.00726,43.977993,5.918 1474,-8.49454,465.13672,37.303616,91.52307,5.796 1474,201.69592,214.86337,19.487396,33.869324,5.684 1474,610.8569,-48.44558,41.882324,100.34869,5.657 1474,627.4592,-17.577143,16.682861,45.64418,5.607 1474,-6.562022,489.4464,19.351467,43.280823,5.282 1474,585.7118,-96.47662,74.45618,228.43733,5.272 1474,235.3929,215.35641,16.642456,29.983643,5.149 1474,613.31995,454.6052,39.255127,107.51016,5.066 1474,-72.84473,266.173,200.80069,460.29135,5.023 1474,-17.368546,-62.349445,56.845352,145.26433,5.01 1474,583.062,411.58844,71.60791,176.59247,4.903 1474,219.13231,213.69484,17.702286,33.78543,4.862 1474,490.48303,-179.5282,234.51807,425.7743,4.84 1474,-21.508112,402.88507,79.102905,175.07843,4.837 1474,536.6427,310.99744,142.34485,341.9839,4.596 1474,626.4171,488.3546,21.116455,44.918884,4.568 1474,210.67337,212.93002,18.617493,34.99379,4.543 1474,-36.82924,-127.13893,117.355194,277.8057,4.388 1474,227.72728,214.27074,17.39981,31.752823,4.356 1474,492.97095,226.32999,238.61322,516.77026,4.239 1474,-70.84083,-188.4909,211.22333,453.21436,3.999 1474,-5.5657287,232.1452,16.131496,41.620514,3.726 1474,618.7092,491.25455,20.171448,41.018707,3.698 1474,619.9299,-17.49094,16.260315,42.391945,3.648 1474,4.6935487,273.43695,14.8769455,28.980804,3.589 1474,518.35925,-34.906487,27.392944,74.82528,3.44 1474,-8.023191,71.27722,38.369034,104.98172,3.437 1474,194.91888,219.48726,18.377686,32.8712,3.397 1474,243.3747,216.12263,16.872253,29.43077,3.381 1474,533.18384,-15.881543,30.208374,62.354137,3.374 1474,29.3604,274.53665,14.418753,25.88211,3.373 1474,-4.246374,266.1499,15.297821,35.711273,3.336 1474,-10.28528,-4.062145,40.85741,101.60358,3.29 1474,538.1196,-17.467628,18.008423,42.030514,3.259 1474,-4.4817743,281.96762,14.369372,32.38669,3.257 1474,531.46655,-133.89754,115.19714,267.36877,3.21 1474,-9.068687,229.38797,37.991997,99.50192,3.204 1474,5.6069508,468.20975,37.689156,94.70865,3.192 1474,2.48886,-17.29158,17.078007,41.07016,3.163 1474,514.22235,-16.573118,18.343018,41.13588,3.158 1474,530.1344,-17.118938,18.164429,41.14996,3.109 1474,-4.4575496,248.84991,16.014479,40.03296,3.107 1474,506.276,-4.3416386,21.065186,40.46055,3.104 1474,502.55325,-34.336678,28.24112,74.65342,3.102 1474,21.725212,275.1139,14.213894,25.985596,3.087 1474,509.07855,-16.74417,30.832336,65.88233,3.078 1474,541.9107,-33.70761,28.292175,72.91741,3.078 1474,275.3807,214.86584,17.061035,31.112885,3.063 1474,-8.956571,133.65689,39.106792,104.5688,3.062 1474,187.63132,220.948,17.389145,32.397827,3.044 1474,571.6359,-42.61803,58.793396,138.95229,3.037 1474,1.5852642,-39.158318,43.71734,101.18533,3.03 1474,546.7343,414.01245,83.29126,166.56067,3.018 1474,603.3852,-30.580456,53.12567,143.93524,3.009 1474,-5.91053,215.65207,17.408913,43.048676,3.007 1474,6.3852177,214.14032,27.354986,66.875824,2.99 1474,560.4035,-42.89098,46.32367,94.747734,2.975 1474,498.5125,-3.8871508,20.248535,39.377647,2.963 1474,-8.836173,327.37024,37.790276,105.49341,2.96 1474,-5.9207673,297.99875,16.114407,35.77487,2.956 1474,554.98303,-4.4115067,18.764038,39.75254,2.943 1474,1.8621504,490.50198,20.300383,42.927704,2.929 1474,91.7369,265.9745,16.472023,25.90213,2.902 1474,251.89005,216.98036,16.413788,27.794632,2.9 1474,598.6544,-24.95854,39.373535,97.23782,2.898 1474,598.00037,461.13297,38.29138,100.39334,2.892 1474,-10.650655,427.97562,40.978504,99.305695,2.889 1474,310.5528,214.53293,29.892426,55.216797,2.874 1474,324.42682,214.4914,30.494934,57.041504,2.869 1474,3.804326,239.66846,17.877277,40.132935,2.865 1474,12.842437,273.65695,14.24764,27.063293,2.864 1474,-5.5226555,185.2289,17.207838,42.19246,2.862 1474,221.28503,205.09688,29.45758,54.93947,2.852 1474,522.1024,-18.156212,18.061768,42.495106,2.852 1474,75.7764,256.57605,18.03209,30.26889,2.807 1474,492.98038,-15.882357,31.4982,64.342445,2.782 1474,557.68854,-34.139187,28.498047,71.65531,2.776 1474,-4.4938574,28.723671,16.423256,40.018517,2.771 1474,174.12552,71.51222,29.651566,57.784958,2.77 1474,538.9872,-38.691425,59.467957,131.57826,2.764 1474,291.24722,218.14378,18.290863,29.894089,2.751 1474,-5.7185287,-1.0118866,18.07852,45.581123,2.742 1475,-8.397193,464.7606,37.297714,91.96207,6.003 1475,-6.4032435,489.23846,19.08601,43.325867,5.951 1475,-11.548204,-32.647556,29.931437,73.0673,5.801 1475,-6.2008243,-18.712982,18.194643,43.704456,5.488 1475,610.8413,-48.117306,41.93518,100.09485,5.377 1475,627.1683,-17.965946,17.037292,46.53329,5.317 1475,-73.42182,265.22522,201.55206,462.32776,5.137 1475,585.5195,-97.719864,74.874695,231.43353,5.093 1475,626.5927,487.70544,21.121582,45.64966,4.984 1475,7.614224,218.37054,26.720871,69.77307,4.977 1475,20.38095,220.68686,29.719372,61.651245,4.938 1475,613.06903,454.5356,39.62451,107.17764,4.897 1475,-21.64549,402.83453,79.32578,175.2254,4.857 1475,-17.84624,-61.790882,56.965355,142.97783,4.85 1475,583.01953,410.9306,71.714355,177.24188,4.84 1475,536.46844,310.5758,142.82098,341.83948,4.724 1475,490.7326,-178.96016,234.48926,424.98877,4.628 1475,-4.735449,212.29575,16.64553,40.499863,4.441 1475,-9.538395,211.89726,26.76327,70.75874,4.372 1475,493.4039,226.53506,238.10965,515.3214,4.335 1475,233.42856,220.09401,19.99176,33.30388,4.253 1475,571.1549,-0.9617634,19.31195,36.00255,4.174 1475,-37.924404,-126.2677,118.29843,278.9228,4.159 1475,-7.05513,227.65579,36.717903,103.04785,4.157 1475,-70.0262,-188.62552,210.54779,453.26535,3.896 1475,-4.568122,229.1162,17.578423,46.65306,3.845 1475,570.79193,-15.186207,16.849487,38.32955,3.754 1475,235.45432,236.49287,17.543976,29.860245,3.743 1475,554.77576,-15.977091,16.80664,37.959106,3.7 1475,579.33636,-2.1222534,18.853088,37.500904,3.625 1475,562.7955,-14.322237,16.93872,36.9644,3.613 1475,548.7427,-16.769777,32.710815,65.890656,3.578 1475,12.164938,197.96468,51.705666,118.94347,3.565 1475,554.85785,-2.7750902,19.674377,37.074078,3.549 1475,3.535328,222.18292,21.72031,51.231873,3.533 1475,201.9252,189.76169,20.076477,35.991547,3.524 1475,618.5006,489.71616,20.789307,42.99887,3.496 1475,619.4308,-17.948719,16.680237,43.105904,3.485 1475,218.76039,236.15863,17.954758,30.548706,3.441 1475,234.14737,208.64853,18.67398,32.524933,3.383 1475,329.5627,236.94702,20.702118,33.910492,3.368 1475,562.8021,-1.1486225,19.257202,35.757805,3.368 1475,332.24384,225.95676,29.939667,51.80307,3.352 1475,202.85918,236.61732,18.40036,31.406235,3.311 1475,2.5937939,-16.922012,17.128899,40.41237,3.308 1475,228.34535,244.83025,16.852432,30.647629,3.269 1475,578.8183,-14.617794,16.79132,37.864613,3.265 1475,5.8800116,467.8327,37.537018,95.16028,3.263 1475,171.33234,245.32634,17.316254,32.337723,3.253 1475,34.8757,217.66891,31.511597,67.51608,3.242 1475,547.1762,-15.4548435,16.748718,37.35124,3.227 1475,15.371303,221.8032,21.877113,45.036972,3.218 1475,291.94836,243.74277,17.98462,36.8078,3.215 1475,571.66266,-15.051926,32.999268,62.464024,3.195 1475,195.2289,237.67819,18.738235,32.233643,3.176 1475,187.98491,245.29971,17.200668,31.150208,3.172 1475,1.468637,-38.870354,44.098457,99.25535,3.144 1475,328.15155,189.44952,60.597504,112.75,3.103 1475,531.35626,-134.77724,116.0199,269.60117,3.097 1475,210.6381,236.63788,18.405807,30.98288,3.078 1475,488.48343,213.28363,28.013824,61.409576,3.065 1475,-10.491268,-5.0383606,40.592598,103.073494,3.06 1475,598.1945,-22.602367,39.779053,95.2791,3.051 1475,587.3471,-3.4145164,18.480652,37.785515,3.043 1475,91.788376,261.86282,18.263306,36.9003,3.033 1475,2.0855057,490.31415,19.839638,43.014893,3.019 1475,546.57556,412.92557,83.518555,167.44675,3.017 1475,242.63673,244.97112,19.726059,33.481766,3.008 1475,226.95421,231.59886,18.917221,30.445572,2.994 1475,-9.297866,157.03772,39.720818,97.8172,2.978 1475,174.4121,87.78176,30.389664,57.214638,2.977 1475,573.10803,-22.190273,53.982117,136.36494,2.974 1475,-4.8480353,246.66565,16.649342,42.94574,2.974 1475,-9.052745,100.74048,38.77994,107.62802,2.97 1475,-4.9533157,195.48785,16.589535,39.778244,2.964 1475,184.69054,93.10337,23.064209,41.43859,2.96 1475,229.73355,199.49399,27.521576,55.818222,2.96 1475,612.92413,233.05283,36.2005,115.73776,2.956 1475,546.2803,2.9571724,21.82904,41.583656,2.946 1475,533.9277,-18.029617,30.654785,65.46636,2.934 1475,566.45044,-31.331896,28.11969,68.458115,2.929 1475,603.3323,-28.33519,52.816956,145.6729,2.928 1475,-9.344782,292.3265,38.11791,105.043304,2.92 1475,496.14413,-38.003056,46.683014,92.60809,2.91 1475,236.6021,237.59665,31.747208,58.041077,2.879 1476,623.23193,-33.39472,26.53772,75.57481,5.747 1476,-6.4839516,488.83948,18.911722,44.229004,5.728 1476,-12.821472,476.779,30.996466,64.04004,5.71 1476,626.9932,-17.75201,17.410583,47.060314,5.652 1476,-11.510706,-32.81991,30.005234,73.30351,5.452 1476,-6.067897,-18.39954,18.021557,43.045692,5.29 1476,625.916,486.78406,22.055786,46.51599,5.285 1476,-73.315315,265.50735,201.28761,461.4824,5.091 1476,-17.02398,435.22455,54.818893,139.34625,5.033 1476,613.4176,453.593,39.401672,108.09091,5.027 1476,3.1435018,217.22034,19.55692,52.699036,5.003 1476,602.56744,-57.072613,54.09198,134.9546,4.994 1476,586.04065,-97.98628,74.40918,229.65822,4.904 1476,583.0931,410.52383,71.66229,177.63742,4.827 1476,-17.7437,-61.625687,56.966293,141.93059,4.779 1476,536.6928,310.51953,142.7243,341.93127,4.778 1476,491.0382,-179.3374,234.00818,426.13693,4.759 1476,594.19525,-45.422813,44.42212,95.81786,4.72 1476,-40.565777,367.0512,110.90344,274.4453,4.683 1476,619.1686,-6.147293,19.458862,43.744904,4.551 1476,493.73383,226.8811,237.64502,515.1672,4.308 1476,-37.18685,-125.90645,117.51649,278.09625,4.227 1476,615.0307,-19.355251,27.345398,69.217155,4.081 1476,9.043613,226.86069,20.576023,53.57309,3.871 1476,-70.638214,-188.28946,211.01822,452.24057,3.809 1476,-7.855073,225.68155,37.193127,107.010864,3.738 1476,-4.94635,243.43097,16.933298,46.365845,3.737 1476,400.99493,242.97577,22.329102,39.151672,3.725 1476,18.016953,232.654,20.576828,48.428024,3.67 1476,342.09164,236.63199,30.350311,53.198242,3.609 1476,233.46884,212.64058,21.377533,35.47914,3.576 1476,4.5391345,207.12622,37.036915,106.048645,3.534 1476,388.3684,230.11823,32.53186,57.803284,3.482 1476,458.7483,-16.734175,16.83844,38.37724,3.47 1476,617.727,488.08142,21.871155,44.997375,3.466 1476,347.0005,247.75075,19.623962,34.57518,3.449 1476,-3.9477494,203.39081,17.253986,42.3873,3.435 1476,332.9115,236.03326,15.440674,30.30951,3.411 1476,586.2423,-3.8606853,20.083923,40.005356,3.372 1476,467.16278,-16.323212,16.749084,38.387833,3.354 1476,356.29153,230.87846,31.467224,59.36818,3.347 1476,34.84725,239.02843,20.506912,41.190994,3.325 1476,-4.30205,219.6909,17.47774,48.374374,3.292 1476,353.69476,245.11935,22.009155,38.598083,3.274 1476,475.38184,-17.193415,16.671509,39.54174,3.244 1476,-8.439516,74.30066,37.897636,103.97514,3.233 1476,25.952385,235.5725,20.444626,44.532425,3.226 1476,582.5739,-33.515244,28.241394,71.854904,3.214 1476,186.49884,220.1166,33.04648,53.669052,3.209 1476,586.67,-16.564768,17.274841,38.510975,3.201 1476,361.39197,217.15889,21.240631,37.97618,3.185 1476,235.34564,243.11598,19.378784,37.60991,3.164 1476,109.54029,206.29259,28.618446,54.75807,3.157 1476,339.51038,246.59067,17.883453,32.240875,3.152 1476,1.3922834,-38.60236,44.233562,97.93875,3.125 1476,242.74171,242.4361,19.91954,39.27466,3.106 1476,546.5608,412.30304,83.60193,168.73883,3.1 1476,2.8231497,-16.139917,16.826313,39.73603,3.089 1476,572.9602,-14.913437,31.888794,64.70965,3.052 1476,570.58374,-2.828703,19.031067,37.585854,3.03 1476,588.2491,-15.929394,32.568115,64.50389,3.028 1476,-8.055813,208.30049,26.86116,72.91383,3.028 1476,611.13354,-15.701323,17.355835,39.470005,3.028 1476,-10.986111,-4.3977013,41.32293,102.51015,3.023 1476,565.0408,-2.2084522,30.154968,61.761047,3.01 1476,184.76428,229.31178,22.534546,35.087906,3.008 1476,594.71716,-15.575268,17.56305,37.936577,3.004 1476,597.96155,460.7125,38.463013,99.38565,2.995 1476,169.77393,222.53525,20.450653,33.664276,2.985 1476,-5.172117,90.17766,16.640423,40.47972,2.979 1476,234.39243,226.1275,18.73439,33.503723,2.972 1476,242.8377,233.65134,32.24005,63.53714,2.969 1476,250.0604,242.50386,20.522522,38.378006,2.967 1476,300.73215,246.26413,16.547424,31.756042,2.961 1476,590.1983,-24.113785,51.69806,140.23792,2.957 1476,347.69424,237.52127,15.491547,30.563477,2.952 1476,385.504,200.49727,34.0166,65.14836,2.936 1476,365.16324,100.60183,15.644104,28.350945,2.928 1476,578.912,-15.014871,17.119446,37.433537,2.915 1476,370.2965,217.87177,42.43933,79.36041,2.913 1476,5.6926703,466.5058,37.81302,96.905396,2.88 1476,602.9255,-16.4131,17.11139,38.930397,2.875 1476,364.45636,220.83565,31.669006,59.54677,2.874 1476,-5.900004,309.65732,17.651165,42.989594,2.872 1476,554.2217,-15.486429,17.132446,37.830845,2.869 1476,308.73462,244.86975,16.47934,32.60852,2.867 1476,2.0816927,489.71048,19.750496,43.268524,2.855 1476,438.1686,-34.159317,28.480286,72.49847,2.85 1476,531.56683,-135.05023,115.54346,267.9176,2.843 1477,-8.570637,464.59787,37.442947,91.99057,6.066 1477,-11.475836,-32.86201,29.96145,73.4133,5.711 1477,-6.070473,-18.789314,18.17155,43.445446,5.53 1477,627.1643,-17.82441,17.191284,46.21263,5.525 1477,-6.659135,489.1358,19.59935,43.48938,5.445 1477,585.7078,-96.35298,74.340515,228.94255,5.381 1477,610.4793,-47.744167,42.028015,98.54565,5.304 1477,626.1408,487.2276,21.80365,47.003906,5.22 1477,-73.00399,265.9347,201.04376,461.0581,5.056 1477,490.96997,-180.2374,234.06921,427.8543,5.009 1477,613.15894,453.75937,40.163208,107.96097,4.881 1477,582.99066,410.69708,71.93463,177.61884,4.871 1477,536.7102,310.7223,142.69946,341.9159,4.855 1477,-21.648499,402.9566,79.30659,175.25214,4.843 1477,-17.743755,-62.23706,57.174786,143.39801,4.78 1477,235.40932,235.31343,17.862015,33.570175,4.467 1477,242.65755,235.68405,18.705307,33.535217,4.45 1477,493.59808,226.7551,237.94781,515.62537,4.42 1477,236.86688,220.46632,28.870667,53.411636,4.169 1477,-1.6607416,214.17215,27.621878,70.932465,4.125 1477,-36.99804,-126.40193,117.659164,278.33694,4.114 1477,-4.2716637,204.0669,17.698517,41.83838,4.08 1477,219.0758,229.23772,18.581497,36.01747,3.944 1477,-70.770966,-187.57864,211.20068,451.66504,3.715 1477,448.25922,221.5409,43.21692,92.61456,3.668 1477,431.86337,228.92288,35.136566,63.740173,3.665 1477,464.95752,222.53168,43.301605,94.52374,3.661 1477,619.4007,-17.741478,17.077026,43.339928,3.634 1477,-5.3493443,246.6636,17.459885,43.552795,3.585 1477,617.42566,489.27106,22.244934,44.176514,3.539 1477,177.819,244.30049,20.262085,30.700912,3.514 1477,434.6664,-17.264086,17.42154,39.886204,3.467 1477,-8.69714,258.66626,37.810345,108.07446,3.465 1477,-5.964124,227.53221,18.388704,46.02324,3.458 1477,573.3629,-23.6147,54.04608,132.31018,3.455 1477,227.055,228.47058,18.237488,36.694183,3.438 1477,442.67838,-18.994476,17.443268,41.53285,3.4 1477,382.02115,236.04572,27.712677,61.842957,3.392 1477,202.54097,231.64035,18.412033,33.631317,3.388 1477,398.51965,215.53665,28.6073,56.737274,3.37 1477,531.9961,-133.9813,114.732056,268.1548,3.339 1477,2.5680542,-16.98394,17.199175,40.453495,3.335 1477,239.18347,211.09732,22.83139,39.31714,3.317 1477,162.19734,226.2865,22.187866,38.56659,3.305 1477,5.8531547,467.28284,37.496037,95.16943,3.299 1477,164.09338,228.42987,31.990784,51.75128,3.293 1477,210.77422,229.62979,18.4292,35.52249,3.258 1477,481.80875,222.3551,42.24814,94.51837,3.247 1477,-0.17188549,209.55946,21.100754,47.317947,3.245 1477,242.38257,249.37433,20.883087,40.572327,3.235 1477,379.44885,251.49394,19.736084,41.90428,3.234 1477,603.01245,-27.922821,52.42633,140.64998,3.214 1477,572.4088,-2.78508,16.928833,36.36894,3.213 1477,315.88474,265.55743,17.133179,28.123016,3.205 1477,233.44476,219.11792,21.885727,37.844025,3.19 1477,363.70294,263.30154,17.88919,33.441986,3.165 1477,-7.2170744,73.80341,37.499504,102.882256,3.159 1477,165.5209,69.31044,30.019638,59.60385,3.145 1477,195.1622,225.11978,19.081635,33.846832,3.138 1477,185.7505,238.54558,19.157166,30.590042,3.121 1477,528.35864,-41.496395,46.828857,92.97437,3.114 1477,235.66843,250.4634,19.41687,36.98079,3.111 1477,342.8559,237.5797,28.337067,58.645523,3.089 1477,428.1211,-18.15638,32.098633,64.92374,3.072 1477,418.68594,-15.310117,16.930511,37.44559,3.072 1477,123.19622,206.77617,55.200874,110.375015,3.054 1477,441.8323,268.8751,37.203217,62.03235,3.05 1477,355.41364,252.86244,18.09668,34.862167,3.047 1477,546.36285,412.6209,83.848816,168.07104,3.038 1477,1.3850093,-39.65358,44.256947,99.907524,3.03 1477,411.11578,-16.650953,16.289185,38.243668,3.018 1477,155.4791,209.24219,56.025803,105.10248,2.993 1477,-10.197545,426.41278,40.44714,100.10547,2.992 1477,426.28485,-16.603666,17.359558,39.31274,2.969 1477,324.12384,264.73444,17.081757,27.938538,2.932 1477,509.5677,-16.157242,30.293518,66.25961,2.917 1477,597.93646,460.29742,38.75415,100.12506,2.905 1477,169.84192,237.0665,20.06253,33.499786,2.897 1477,187.07245,218.90106,19.05983,30.605911,2.896 1477,597.8431,-22.355268,39.55487,93.544044,2.895 1477,99.1723,213.93811,40.775574,84.9187,2.89 1477,564.31287,-3.6179762,17.244568,37.87613,2.885 1477,560.4165,-41.160885,46.84662,93.821625,2.884 1477,431.80518,-40.53399,47.3815,91.82182,2.874 1477,-10.661182,-4.0428696,40.767548,102.695786,2.869 1477,612.9829,234.26476,37.25641,112.71718,2.868 1478,-8.564376,464.85568,37.487427,92.3721,5.968 1478,627.28735,-17.591413,17.330322,45.741386,5.908 1478,-11.483463,-32.90827,29.847527,72.68775,5.673 1478,-17.591356,-64.17909,56.557304,145.64786,5.318 1478,585.73456,-97.278824,74.815,229.04144,5.233 1478,-5.8852186,-18.119837,17.539858,42.387306,5.215 1478,-6.4239025,489.2095,18.984245,43.221832,5.156 1478,610.76135,-48.09311,41.879944,98.70992,5.111 1478,626.3047,487.401,21.508057,46.750183,5.1 1478,613.3274,453.83618,39.62036,107.751465,4.976 1478,531.3008,-180.60454,150.92023,418.25473,4.96 1478,-72.66198,266.88367,200.44913,459.057,4.932 1478,-21.500393,403.42413,79.161316,174.80249,4.876 1478,583.0987,411.045,71.680115,177.15494,4.841 1478,536.7319,310.78937,142.09772,342.19342,4.565 1478,103.84787,60.795868,27.425827,64.6864,4.428 1478,493.10052,225.9631,238.42957,517.114,4.172 1478,-37.249493,-127.811386,117.42969,279.7052,3.961 1478,-7.895255,72.61296,37.244675,105.44432,3.917 1478,-71.187225,-187.11551,211.26111,449.30676,3.669 1478,619.635,-17.327541,16.57666,42.129845,3.477 1478,2.935456,-16.241806,16.361998,38.98009,3.429 1478,442.94876,-15.885169,16.501587,38.70425,3.425 1478,52.714714,201.23526,27.235268,62.863495,3.319 1478,450.81622,-15.018881,17.021973,37.949642,3.276 1478,5.8786354,468.1445,37.431797,94.97684,3.229 1478,523.41144,-15.289223,15.530945,36.29156,3.118 1478,-10.378504,-5.4645004,40.110146,103.92199,3.025 1478,-8.710176,199.85126,37.65358,103.73212,3.006 1478,617.81866,490.05948,21.645996,43.988373,2.953 1478,546.771,413.46375,83.20404,167.02087,2.945 1478,443.29526,-1.2851734,18.196716,36.10627,2.881 1478,446.2459,-34.015858,28.496216,73.081,2.88 1478,-10.087476,391.14044,38.962414,107.85724,2.876 1478,518.76196,-33.286144,27.040161,68.19086,2.841 1478,458.51758,-16.576227,17.177185,39.194523,2.816 1478,-8.793234,262.52988,38.13108,107.1857,2.811 1478,507.6211,-41.15515,59.814636,134.48117,2.807 1478,-1.0050964,-39.681923,54.268837,142.31929,2.773 1478,598.0946,460.6251,38.34906,99.592255,2.754 1478,612.8645,44.422783,37.835205,111.896675,2.744 1478,-9.229671,117.54761,37.973183,107.680756,2.731 1478,450.9906,-2.0965042,18.988586,37.58853,2.731 1478,515.6353,-14.385556,15.663635,35.411514,2.718 1478,587.3207,-16.403664,15.195923,37.531364,2.716 1478,606.62354,-35.459972,27.141724,74.62079,2.709 1478,528.7583,-42.446495,46.59784,93.217155,2.708 1478,611.6421,-15.549289,16.136108,38.344124,2.691 1478,-9.066082,327.3531,38.261322,104.35205,2.685 1478,-4.119423,186.66605,15.80217,38.56456,2.682 1478,531.59204,-13.9749565,15.397339,35.256397,2.68 1478,475.13885,-17.990715,16.57965,39.883053,2.671 1478,434.90082,-15.171275,16.394073,38.160667,2.658 1478,612.688,175.82152,36.5614,106.30632,2.652 1478,496.74908,-42.09801,46.8089,91.44994,2.651 1478,125.87259,53.631477,30.631897,62.366714,2.645 1478,590.44543,-18.006893,28.851929,62.685703,2.642 1478,-5.0956955,249.64499,15.212141,37.43817,2.638 1478,539.5113,-15.249682,15.231934,36.71107,2.636 1478,507.4316,-15.3517475,15.633392,35.970005,2.602 1478,561.1045,-41.853207,46.327393,93.18499,2.599 1478,603.5486,-29.79134,53.369507,139.6806,2.597 1478,585.9553,290.08075,64.487305,210.07089,2.593 1478,461.64044,-34.88221,28.546906,70.63269,2.563 1478,537.9673,163.26216,139.59753,348.2245,2.547 1478,2.2143412,489.85718,19.598194,43.04126,2.544 1478,475.13596,-39.293854,60.274933,132.94148,2.543 1478,466.4037,-16.664066,17.19342,39.25658,2.542 1478,22.700634,306.97345,147.70058,341.34418,2.535 1478,598.53217,-25.328688,39.32965,94.67066,2.534 1478,573.0831,-25.08805,54.72107,132.65938,2.534 1478,612.5336,300.69098,38.266846,110.92316,2.503 1478,586.8402,138.35013,63.018738,204.94492,2.49 1478,595.61884,-15.981987,15.323303,37.68979,2.49 1478,534.58093,-33.4652,27.137451,69.97009,2.479 1478,175.35036,45.41854,28.258652,61.534874,2.478 1478,-4.571806,265.21927,14.679195,36.138336,2.475 1478,491.2526,-17.26673,16.037384,37.778183,2.468 1478,509.0821,-2.6688843,15.596619,32.07834,2.461 1478,622.7494,240.77043,26.399536,71.88194,2.459 1478,400.85327,-38.6416,45.924194,93.61133,2.455 1478,369.16992,-38.69226,45.649994,94.7326,2.449 1478,466.95844,-180.39517,144.89691,418.60678,2.445 1478,0.76061726,378.0577,95.54529,260.20328,2.426 1479,-8.471474,464.557,37.33351,92.269226,5.984 1479,-6.7312393,489.38028,19.57801,43.175568,5.76 1479,74.77387,38.406673,31.666779,77.35617,5.699 1479,-11.48952,-33.069977,30.003044,73.456856,5.591 1479,626.38794,487.7366,21.417847,46.5466,5.537 1479,627.2126,-17.533735,16.938354,45.821278,5.453 1479,612.3684,453.9773,40.01715,107.617676,5.349 1479,585.7684,-97.20567,74.30725,229.62341,5.224 1479,610.8786,-48.068005,41.78131,99.92649,5.176 1479,-73.374344,265.31195,201.57036,461.72418,5.118 1479,-6.073512,-18.402239,18.077019,42.79162,5.116 1479,-17.437197,-61.66015,56.625565,142.72026,4.916 1479,582.68634,411.84833,72.11963,176.32013,4.873 1479,-21.530342,403.06418,79.17714,174.94742,4.817 1479,491.08768,-179.73752,234.19785,426.41257,4.74 1479,536.92285,310.62024,142.31183,340.5592,4.704 1479,-37.024864,-124.66828,117.15609,273.6743,4.494 1479,4.0539055,216.42592,18.705427,45.74742,4.31 1479,494.03394,227.48822,237.76135,515.0625,4.238 1479,610.97424,266.28903,37.504883,106.6423,3.986 1479,612.14996,252.30699,28.073914,79.359146,3.968 1479,-70.799644,-187.72687,210.57434,452.1872,3.961 1479,583.0407,241.3902,39.12671,96.81763,3.926 1479,80.8002,231.66365,22.68814,47.946945,3.843 1479,490.29114,-17.490864,17.651367,40.424187,3.74 1479,597.3399,233.61188,36.99005,108.916565,3.661 1479,-4.302452,203.28194,17.136513,42.236465,3.549 1479,531.1411,-14.176748,32.991943,64.28258,3.548 1479,620.36536,-4.275791,17.360596,39.47411,3.532 1479,482.45148,-15.954317,17.52304,38.14274,3.476 1479,-9.183547,188.35593,28.366028,71.010376,3.471 1479,140.36662,257.83163,15.840958,24.483185,3.444 1479,516.48126,-14.756557,32.097473,66.53754,3.39 1479,-8.270876,69.90791,37.793945,107.92937,3.382 1479,502.42902,-17.085812,30.599365,66.75634,3.374 1479,-7.7236176,215.09883,36.92963,99.30107,3.338 1479,5.9990788,467.51263,37.411095,95.2926,3.288 1479,522.19855,-4.3526173,21.154114,41.685616,3.277 1479,-10.175573,-4.621166,40.52437,99.76845,3.249 1479,453.48395,-1.2306957,30.585144,60.94435,3.249 1479,498.38046,-16.663155,17.871307,40.727173,3.178 1479,618.4205,490.1737,20.877747,44.07556,3.177 1479,531.4602,-134.6764,115.27307,267.00418,3.146 1479,2.4609053,-16.878809,17.268133,39.98617,3.141 1479,596.32574,278.09418,40.606445,101.30603,3.112 1479,1.8653536,-39.494087,43.44549,99.85097,3.106 1479,467.91064,-14.227074,31.947815,63.30971,3.1 1479,-4.7139354,186.94388,17.049723,41.549118,3.093 1479,565.5928,241.83972,39.149536,100.39557,3.089 1479,54.407455,34.470978,33.950623,82.70491,3.088 1479,525.9446,-33.510807,29.357422,73.41427,3.069 1479,546.31525,413.53537,83.87103,166.87546,3.068 1479,603.20734,-27.722393,52.23517,141.0454,3.025 1479,234.45161,228.83829,18.400421,34.523926,3.008 1479,66.28671,215.42964,42.83522,81.6743,2.995 1479,506.45898,-5.3087006,20.759277,42.7342,2.97 1479,573.109,-20.986961,53.861633,130.05544,2.955 1479,538.9234,-15.671877,17.148499,38.741753,2.942 1479,598.2473,-22.285204,39.589905,93.30725,2.931 1479,97.57004,217.40521,43.29077,77.36151,2.926 1479,218.05814,223.72523,19.253082,41.422256,2.912 1479,1.6643047,489.85434,20.78172,44.03592,2.904 1479,226.73676,225.34033,19.33377,38.611847,2.904 1479,510.37622,-34.350094,28.58075,74.322716,2.89 1479,530.9151,-14.886353,17.493652,39.09119,2.888 1479,560.35486,-41.076077,46.38452,92.33229,2.88 1479,132.96242,250.91634,15.554123,28.313766,2.874 1479,9.812996,-87.20834,73.77359,204.10023,2.862 1479,549.3444,239.51117,39.713867,105.02374,2.854 1479,613.1381,42.88126,36.66632,114.55327,2.847 1479,226.70065,184.30713,30.338562,58.610367,2.841 1480,-8.483089,464.40155,37.428955,92.8504,6.275 1480,626.4891,487.7625,21.316101,46.14801,5.611 1480,-6.3909507,489.55478,18.942028,42.657623,5.589 1480,-12.632624,-39.32612,41.64199,99.642815,5.498 1480,610.92004,-48.403923,41.775757,100.32548,5.346 1480,-12.492738,478.1696,30.780796,62.562653,5.316 1480,627.187,-17.358643,17.085144,46.114906,5.197 1480,-5.8624387,-18.486958,17.602732,43.24082,5.156 1480,586.05707,-98.02089,74.36035,231.02956,5.095 1480,612.64294,453.23062,40.050232,108.455536,5.072 1480,491.03326,-180.49097,234.20288,427.739,5.054 1480,-72.96875,265.99545,201.0279,460.79263,5.0 1480,582.66736,411.4046,72.125,176.60779,4.895 1480,-21.346237,403.82797,78.96441,174.57022,4.86 1480,536.8694,310.88922,142.03809,340.85327,4.75 1480,-20.066393,-84.47524,71.94192,193.12648,4.716 1480,-36.831367,-124.926056,117.79458,271.52173,4.623 1480,225.60257,217.96779,21.455612,37.091522,4.387 1480,493.4475,226.51071,238.17188,516.27454,4.242 1480,217.39153,216.78473,21.75734,39.023987,4.195 1480,1.1226714,209.5238,20.498623,41.980927,3.902 1480,-70.76596,-188.95322,210.25955,455.40158,3.863 1480,-9.099478,213.94531,37.60289,97.06525,3.795 1480,14.691151,-5.8843307,56.67114,116.17182,3.695 1480,615.6511,-19.386404,26.360107,70.586876,3.647 1480,619.91223,-4.654482,17.546936,40.8416,3.643 1480,3.4182405,220.73453,39.390125,97.26245,3.629 1480,469.86325,-34.432407,28.998291,69.30194,3.527 1480,444.154,-2.3085155,17.88977,33.989082,3.518 1480,446.56497,-34.76983,28.18814,72.818726,3.448 1480,443.1038,-16.266516,16.583374,38.40069,3.448 1480,450.9795,-15.782316,17.240784,39.084984,3.443 1480,618.7374,490.40588,20.444458,43.607666,3.437 1480,232.68532,213.19836,21.830338,37.644806,3.436 1480,522.48047,-16.240398,17.251526,39.313297,3.423 1480,-6.0811405,232.97426,19.13117,40.14943,3.401 1480,-9.926633,-2.4852524,39.693443,96.59592,3.386 1480,5.889194,467.10065,37.59082,95.70148,3.347 1480,517.9948,-33.25464,28.392212,67.37277,3.337 1480,411.45978,-14.061083,15.839294,36.595814,3.328 1480,358.06555,-34.417515,28.763245,71.95059,3.306 1480,435.04727,-13.881757,16.296875,36.10968,3.306 1480,482.56897,-17.893856,18.187714,41.39154,3.256 1480,458.55273,-16.809635,17.740906,39.955708,3.255 1480,2.7876306,-16.38731,16.510191,39.994183,3.23 1480,514.6081,-15.080544,17.672363,37.987297,3.184 1480,211.2309,185.99431,32.79706,57.15651,3.182 1480,209.0842,215.63176,21.957138,42.395187,3.18 1480,530.8997,-15.544584,17.11847,39.02594,3.164 1480,427.05756,-13.73994,15.833649,35.469337,3.14 1480,612.6488,237.05316,36.996094,109.51965,3.127 1480,603.29364,-29.00206,53.010376,142.26125,3.106 1480,546.31604,413.25772,84.0827,167.55478,3.105 1480,486.33194,-33.70992,28.74826,68.73285,3.087 1480,474.14136,-18.579056,18.154114,42.055676,3.078 1480,490.55,-18.524807,18.248077,41.14659,3.073 1480,398.91248,-35.111168,28.287476,71.345764,3.066 1480,-4.6765327,203.07802,17.708471,41.765884,3.052 1480,-8.758379,39.19219,37.911537,103.30823,3.043 1480,2.5880003,231.06186,19.6493,38.32422,3.019 1480,588.2189,-2.1650972,17.385132,34.21669,3.002 1480,-9.59113,391.27344,38.52454,107.847534,2.993 1480,580.4716,-1.9010715,17.24762,33.234463,2.992 1480,2.2052813,-36.26668,43.03865,97.827194,2.986 1480,532.0521,-135.75146,114.90515,269.808,2.981 1480,596.1883,-3.5191326,17.27246,36.48625,2.979 1480,395.60345,-15.328318,16.165283,37.735954,2.955 1480,418.91354,-12.547285,16.04544,35.172672,2.948 1480,378.79092,-16.493488,17.043701,38.313335,2.936 1480,180.17963,197.8005,30.831436,54.534958,2.936 1480,2.2277718,490.8,19.663597,42.55237,2.922 1480,496.71503,-43.52927,46.048523,93.7859,2.909 1480,362.57156,-16.46733,17.456818,38.383522,2.907 1480,187.01799,228.59145,17.474503,31.758987,2.9 1480,176.43237,-38.179733,45.97992,93.865944,2.898 1480,502.65222,-32.421913,28.333984,66.684654,2.894 1480,534.42865,-34.62031,28.240784,71.22294,2.894 1480,90.67535,264.48862,18.454102,27.141846,2.887 1480,403.7273,-13.612444,16.040619,36.610268,2.876 1480,465.93643,-16.943363,18.453033,40.041737,2.875 1480,539.2599,-16.290092,16.80243,39.9607,2.873 1480,33.73277,-34.67348,45.329723,95.47194,2.872 1480,475.36444,-42.340385,59.36969,132.50735,2.869 1480,370.653,-15.812828,17.467438,38.4385,2.858 1480,-11.406567,30.47705,30.188831,74.70468,2.848 1480,430.48782,-33.448044,27.940674,69.004196,2.847 1480,6.036918,262.7221,29.975143,53.108093,2.845 1480,571.3448,-43.997955,58.744568,140.68936,2.844 1480,598.70636,-24.161963,39.0885,95.82967,2.843 1480,560.816,-43.830627,46.04492,94.89613,2.834 1480,26.944195,171.29935,56.264713,119.554474,2.824 1480,3.251679,245.56483,17.937132,39.391037,2.82 1480,597.1428,461.40845,38.759644,97.97748,2.816 1481,-5.8051343,-16.99753,17.41321,43.49568,6.305 1481,-12.561665,-38.710587,41.47116,99.8209,6.078 1481,-8.553034,464.36658,37.436348,92.56854,6.056 1481,610.32294,-47.503098,42.20111,97.95932,5.93 1481,627.11096,-18.509197,16.86493,48.2554,5.76 1481,-6.5080214,488.7902,19.256252,43.72928,5.477 1481,626.1461,488.31866,21.764954,46.696777,5.452 1481,612.7745,453.96042,40.335327,107.811554,5.221 1481,-73.13068,265.48172,201.65259,461.98215,5.118 1481,585.9513,-95.695984,74.038025,226.7654,5.099 1481,582.94745,411.51666,71.89661,176.60468,4.944 1481,-21.530733,403.00247,79.41383,175.22098,4.802 1481,-20.083961,-84.81025,71.651146,193.93243,4.742 1481,490.90057,-179.30609,233.72864,424.9987,4.708 1481,536.60944,310.8861,142.48413,341.42786,4.611 1481,483.60413,-15.119749,32.23462,63.94188,4.563 1481,-36.883614,-125.28978,117.295586,273.13782,4.399 1481,470.15277,-3.7266865,30.055084,61.6065,4.37 1481,493.44427,226.42236,238.22992,516.81104,4.18 1481,490.04227,-17.179771,18.201874,39.986633,3.991 1481,499.81705,-14.656195,32.434906,62.06653,3.964 1481,-71.11592,-187.67413,210.71666,453.23386,3.952 1481,498.01877,-15.697279,18.351593,39.666798,3.926 1481,505.87848,-15.937105,18.482422,39.972763,3.855 1481,531.83264,-12.983532,33.075195,59.667152,3.757 1481,516.16296,-12.043413,32.763306,58.405746,3.751 1481,619.2475,-18.01474,17.266113,45.012424,3.613 1481,234.86555,245.31256,19.873184,38.619324,3.522 1481,548.0079,-16.380735,31.813538,65.4737,3.511 1481,2.460163,-14.285353,16.767746,40.17768,3.496 1481,460.30624,-14.831839,31.787567,65.42314,3.481 1481,603.0063,-27.650803,53.104004,136.08116,3.457 1481,546.412,-1.0702629,19.108337,36.369,3.448 1481,489.51135,-4.432701,21.483765,41.737885,3.424 1481,554.1575,-1.798729,19.53363,37.665462,3.372 1481,482.25528,-15.787814,18.213898,38.780777,3.36 1481,521.96765,-14.251558,17.863586,37.655926,3.35 1481,-9.479391,-3.4250717,40.307076,99.722694,3.321 1481,-5.757532,321.09894,16.515709,36.52539,3.317 1481,-8.045162,218.79105,37.09793,97.1676,3.295 1481,5.6849775,467.3457,37.596176,95.73865,3.259 1481,538.15045,-0.672348,19.930847,35.17637,3.221 1481,149.45805,236.66025,30.257797,60.485535,3.212 1481,509.24487,-32.15116,30.213867,70.96956,3.197 1481,546.68933,412.76987,83.53229,168.24753,3.173 1481,493.38525,-33.44114,29.571167,73.225,3.156 1481,617.7874,491.5357,21.842346,42.354614,3.154 1481,514.0952,-13.953962,18.266724,38.088943,3.152 1481,-8.61313,71.681145,38.33571,104.476265,3.146 1481,478.03442,-34.94616,28.709778,74.9047,3.143 1481,530.9926,-131.68393,115.27533,262.91568,3.11 1481,-5.4102,231.09506,17.850403,43.66156,3.11 1481,521.4197,-0.9165802,21.65564,36.38996,3.107 1481,5.4141483,11.800617,33.439827,80.04979,3.082 1481,4.2599974,227.19226,38.965363,97.63678,3.079 1481,-9.37574,276.81378,37.85797,100.38367,3.074 1481,571.1632,-38.80087,58.421936,132.75499,3.069 1481,562.4292,-3.3250847,20.479187,40.35099,3.068 1481,221.6395,234.57289,30.067993,59.43611,3.058 1481,598.3718,-23.509209,39.198425,90.95548,3.036 1481,164.82294,234.61023,32.506042,60.092407,3.035 1481,529.9996,-12.961648,17.610779,36.45213,3.029 1481,-5.44287,296.7739,16.917912,40.595215,3.025 1481,538.3699,-13.882837,17.318542,37.185806,3.019 1481,20.108868,218.82687,29.424343,68.31369,2.992 1481,-5.6599956,200.72021,17.468775,43.297256,2.928 1481,616.1592,-21.449787,25.686157,73.82573,2.919 1481,570.22235,-3.5309448,21.114319,40.428757,2.914 1481,612.8862,299.92612,37.71057,109.7384,2.909 1481,163.96613,28.522953,29.46585,64.5979,2.885 1481,560.1875,-41.93754,46.227356,91.7329,2.876 1481,19.64548,296.16284,33.062073,53.835114,2.874 1481,512.306,2.0146275,24.012085,43.287666,2.865 1481,-5.9876785,37.69324,18.138935,45.81016,2.86 1481,212.45505,211.4177,30.743011,55.89084,2.859 1481,5.107995,-35.630455,28.892578,80.205154,2.858 1481,496.29706,0.25886536,23.415527,45.71057,2.844 1481,528.9179,4.053543,22.96399,39.97567,2.83 1481,34.01365,243.30144,42.462242,85.64876,2.805 1481,203.99075,232.16571,31.551407,63.24878,2.783 1481,-9.8405905,408.2984,39.284397,105.565674,2.776 1481,155.71896,201.72556,57.056732,118.20364,2.768 1481,11.294287,206.36186,55.48414,118.64555,2.758 1481,-5.1678367,65.471924,17.353344,42.80742,2.742 1481,525.1765,-32.805008,29.426758,71.55569,2.736 1482,-5.4412966,-15.668015,17.251312,41.268253,7.347 1482,-8.604449,464.6164,37.344265,92.38849,5.747 1482,-11.238787,-32.02151,29.73833,73.42644,5.68 1482,-6.441608,489.2569,19.110516,43.269653,5.605 1482,627.0958,-17.561144,17.153992,46.014656,5.373 1482,490.51038,-181.35138,234.79126,430.0595,5.332 1482,585.78503,-96.73482,74.42285,229.51007,5.327 1482,626.17664,487.00525,21.341553,46.615356,5.253 1482,610.8595,-47.83647,41.87683,99.1719,5.195 1482,-20.343548,-85.730545,72.09396,194.71336,5.136 1482,-72.95796,266.4287,200.90074,459.6117,5.002 1482,-37.038063,-127.41884,117.551865,275.1888,4.954 1482,583.20074,411.0432,71.52826,176.51434,4.953 1482,612.95496,453.80463,39.994812,108.08502,4.879 1482,-21.602196,402.5162,79.18616,175.5433,4.847 1482,536.5552,310.85028,142.3341,342.22107,4.645 1482,3.3957534,-13.192648,15.873697,38.868835,4.51 1482,-71.37842,-190.30432,212.48727,456.8461,4.263 1482,492.85233,226.12671,238.3757,516.9005,4.253 1482,-9.292654,-18.934343,38.692375,98.08514,4.072 1482,98.96306,-16.392155,16.830383,39.25623,3.941 1482,-1.350348,172.1438,27.38308,68.82471,3.866 1482,106.74332,-17.529507,17.109795,40.333435,3.587 1482,8.936102,-90.20437,74.55677,205.66736,3.48 1482,147.61485,183.15039,32.893387,65.016525,3.45 1482,427.57013,-3.4960651,18.002563,38.151634,3.423 1482,492.67636,-2.9078875,16.60019,33.265495,3.403 1482,531.9388,-135.35004,114.82684,270.97653,3.338 1482,-5.4895697,182.75914,19.8919,48.324554,3.265 1482,217.41289,198.09831,20.345566,37.72986,3.243 1482,476.461,-4.616824,16.883484,35.592373,3.235 1482,523.06177,-16.64323,16.235962,38.75646,3.226 1482,524.3098,-3.645628,17.017944,36.545227,3.224 1482,10.61171,-15.163098,16.219069,40.252552,3.18 1482,-4.623266,250.57881,15.073809,35.60063,3.175 1482,226.2457,-14.288666,34.447296,66.33081,3.169 1482,619.4703,-17.429235,16.770874,43.357845,3.161 1482,226.10623,199.21977,19.693329,35.778793,3.159 1482,526.0476,-16.458044,29.385315,62.663834,3.154 1482,484.75833,-4.013219,16.665344,35.04246,3.148 1482,546.78876,413.01367,83.233154,167.0987,3.122 1482,539.83856,-4.8595495,17.355957,37.8573,3.118 1482,435.7478,-3.4378548,17.654114,38.41537,3.097 1482,5.794901,467.22272,37.216515,96.740234,3.091 1482,-8.259802,183.52756,37.208534,101.69864,3.09 1482,618.36566,489.011,21.183228,44.751465,3.089 1482,420.8148,-15.775379,30.449799,65.281296,3.087 1482,-9.70251,70.94608,38.767384,105.58666,3.071 1482,532.11554,-4.580908,17.239624,38.543175,3.059 1482,90.83043,-16.289236,16.804138,39.374344,3.049 1482,114.57716,-16.986715,17.47409,40.029118,3.031 1482,443.77853,-3.5919714,17.608856,37.79005,3.029 1482,-5.138619,1.8970013,17.639206,43.370415,2.998 1482,147.14116,-17.928505,17.08432,41.789295,2.997 1482,518.76575,-33.597538,27.481018,71.2695,2.997 1482,1.6258812,-38.144573,42.95236,98.524506,2.979 1482,234.12856,202.99463,20.718674,37.844788,2.976 1482,603.1135,-29.585495,53.020508,143.8674,2.972 1482,452.45508,180.92012,26.896484,65.91676,2.969 1482,44.24633,233.11961,16.627235,34.912735,2.964 1482,464.49802,-41.20708,46.560364,93.52292,2.959 1482,432.39557,-40.660736,46.648468,94.10155,2.953 1482,-8.759357,327.58075,37.96755,105.99997,2.95 1482,1.6177249,151.95813,48.445896,135.91559,2.947 1482,419.85532,-4.5265293,18.160126,39.946587,2.927 1482,70.06787,-16.067093,30.279602,67.667915,2.922 1482,236.15054,-36.234707,30.140717,75.867195,2.915 1482,-10.365096,426.14285,40.52818,101.127655,2.914 1482,508.5122,-2.6325169,16.492859,33.5888,2.913 1482,202.89777,-16.704618,17.040863,39.170357,2.913 1482,400.12775,-41.124386,46.965424,93.672646,2.908 1482,528.24677,-41.590458,46.792175,94.46268,2.903 1482,-9.440011,226.229,38.930046,104.83722,2.902 1482,112.53351,-43.25376,46.407898,92.80056,2.88 1482,74.71365,-15.911786,16.68821,39.43912,2.878 1482,380.2213,-3.1794624,17.00122,36.023746,2.866 1482,123.76911,-42.3641,59.087563,135.5315,2.866 1482,533.8686,-33.886402,28.091003,70.4123,2.863 1482,372.49127,-2.8154612,16.848053,36.194027,2.858 1482,278.3874,-34.358917,28.12735,73.6411,2.858 1482,244.3765,-3.033722,30.761414,66.59125,2.854 1482,-5.171953,266.46204,16.248714,37.342957,2.851 1482,496.35016,-41.447502,46.786865,94.15239,2.847 1482,27.156662,-14.838675,16.19719,38.911415,2.845 1482,491.52216,-15.522545,15.764954,36.387547,2.84 1482,597.74084,461.42657,38.610107,98.44922,2.838 1482,144.60477,-43.874527,46.39267,94.47067,2.837 1482,394.8777,-17.205118,16.367126,38.836906,2.83 1482,155.09991,-18.196482,16.695267,41.689877,2.828 1482,426.75293,-16.096436,16.257751,38.58825,2.828 1482,541.6935,-16.730194,29.294983,62.466312,2.821 1482,94.24736,-35.68325,28.24591,73.44388,2.818 1482,154.82257,-41.984608,59.455383,134.2951,2.814 1482,442.83902,-16.630486,16.25946,38.425987,2.801 1482,3.4658027,-17.57204,48.811962,126.22337,2.798 1482,378.935,-36.568966,59.8573,132.47165,2.797 1482,252.96036,-16.97108,30.864258,65.91926,2.795 1482,500.63144,-2.6249466,16.296783,33.341503,2.789 1482,176.70154,-43.59746,46.128326,93.96517,2.789 1482,74.818146,-1.9956722,19.89907,39.189644,2.787 1482,35.524403,177.87521,41.823826,97.40878,2.785 1482,560.3162,-41.82832,46.655945,94.6431,2.781 1482,142.58511,-35.584732,27.99759,75.23942,2.78 1482,411.3655,-35.36001,60.238922,131.40318,2.778 1483,-10.806198,-32.80729,29.20726,74.256165,6.672 1483,-5.5200343,-17.868261,17.236677,43.791046,6.101 1483,-8.538829,464.86182,37.329502,92.31909,5.81 1483,610.8031,-48.24624,41.84088,99.4334,5.421 1483,585.7514,-96.87608,74.48053,229.22554,5.376 1483,627.1993,-18.074907,16.99237,46.12402,5.358 1483,490.59143,-181.31168,234.6272,429.76956,5.311 1483,-6.3796816,489.33655,18.877045,43.13855,5.308 1483,-16.81622,-61.54403,56.517117,144.98589,5.198 1483,626.0873,487.46213,21.814209,46.7836,5.089 1483,583.2154,411.34967,71.433655,176.64716,5.06 1483,-72.64575,267.1309,200.40698,459.0034,4.958 1483,-21.532343,403.2344,79.1614,174.91068,4.812 1483,-36.89889,-126.929375,117.469055,273.62045,4.728 1483,613.2164,454.11197,39.616394,108.12192,4.691 1483,536.58966,311.15143,142.37079,341.9992,4.647 1483,492.89252,225.89023,238.43793,517.249,4.213 1483,-71.51824,-190.18283,212.47052,456.59503,4.204 1483,134.15334,-17.61678,30.032303,68.46417,3.957 1483,149.25075,-33.285378,28.72168,74.20132,3.796 1483,-5.5503964,229.7248,18.028429,45.257812,3.721 1483,-9.355359,-3.896801,39.687393,99.055725,3.671 1483,2.9527326,227.92688,19.006418,46.17151,3.624 1483,3.0809836,-15.490083,16.210924,40.26567,3.556 1483,617.804,490.08893,21.614868,43.294983,3.551 1483,227.26193,213.58685,19.028107,38.866806,3.501 1483,219.85161,214.91046,19.235275,37.66078,3.495 1483,117.83535,-18.937725,30.078484,71.832306,3.49 1483,76.177155,-16.269783,32.431335,65.22299,3.469 1483,531.8843,-136.03091,114.616455,271.45743,3.377 1483,-8.627821,37.864193,37.883606,105.26468,3.357 1483,153.85573,-18.941813,17.919205,44.579136,3.351 1483,90.082184,-18.41124,18.451202,41.714237,3.314 1483,130.55412,-17.342728,17.562729,43.049,3.304 1483,8.665962,-88.52934,74.69091,204.31639,3.3 1483,619.5786,-18.175863,16.785645,43.282238,3.25 1483,-10.836508,214.74774,29.054457,71.02872,3.248 1483,106.64691,-18.481136,17.976791,43.388676,3.23 1483,411.34705,-16.482899,15.740631,37.78146,3.22 1483,101.02424,-19.072275,31.638237,68.558044,3.206 1483,-4.460367,3.813078,16.990166,40.53546,3.195 1483,82.13606,-16.313206,18.385284,39.921104,3.16 1483,364.56784,1.7491989,17.206024,41.29131,3.15 1483,403.36438,-15.676314,15.973053,37.564804,3.137 1483,331.33685,-16.83885,16.318634,38.282196,3.092 1483,547.047,414.32697,82.82532,166.05719,3.089 1483,5.777619,467.80875,37.401474,96.40793,3.088 1483,518.3068,-33.93945,27.694763,73.02852,3.073 1483,395.31152,-16.559502,15.979431,38.581093,3.038 1483,122.321075,-18.18673,17.77304,43.97122,3.028 1483,406.43262,-32.975636,27.785156,70.62207,3.02 1483,-9.353115,101.19325,38.76061,107.914734,3.01 1483,146.24637,-16.860485,17.87854,42.90447,3.004 1483,-5.476983,208.43687,17.56685,44.31581,2.994 1483,162.51154,-17.433569,17.48909,41.973927,2.986 1483,138.45549,-18.193617,17.721298,43.872772,2.976 1483,98.61754,-17.601385,17.970284,41.845116,2.975 1483,492.5253,-4.801672,16.726593,36.081158,2.975 1483,126.431465,-35.07331,28.079033,77.71276,2.961 1483,1.8776894,-38.07589,43.0967,100.20524,2.956 1483,298.24033,-18.526058,17.80014,41.15195,2.944 1483,12.04639,-11.949436,56.897427,117.77225,2.94 1483,73.97496,-4.832553,21.929504,41.409718,2.932 1483,293.43402,-22.490765,30.395172,66.54142,2.923 1483,432.51202,-40.616203,46.71869,94.076935,2.913 1483,110.038826,-35.119057,28.924538,75.77842,2.911 1483,-8.113113,167.88997,37.835213,101.35756,2.886 1483,302.7432,-35.068714,27.682953,70.72717,2.879 1483,502.6275,-33.360035,27.212708,70.93021,2.872 1483,202.01291,-16.963043,17.7827,39.43809,2.859 1483,74.28165,-17.65665,17.869873,41.16502,2.857 1483,356.82208,-2.7537804,16.663574,36.35984,2.852 1483,-8.878243,326.7571,37.713387,106.63504,2.846 1483,165.60701,-32.894577,29.287857,72.014015,2.841 1483,348.16772,-2.2566557,17.277191,35.192307,2.837 1483,306.45444,-17.903494,17.111298,41.2012,2.827 1483,358.83237,-33.275772,27.31076,71.13638,2.825 1483,-5.5079985,186.09521,18.085564,41.438538,2.822 1483,114.583755,-17.059294,18.02472,42.424236,2.82 1483,220.76782,-36.174797,29.65918,75.63093,2.82 1483,539.0855,-16.78062,16.210876,39.3215,2.818 1483,363.5182,-16.205084,15.515869,37.842186,2.811 1483,387.3726,-15.494189,15.874786,37.668842,2.81 1483,412.33304,-2.874731,17.076813,36.533066,2.808 1483,528.49927,-41.9804,46.440674,94.768555,2.801 1483,93.245155,-34.76171,30.135086,74.57252,2.8 1483,69.7777,-33.3377,28.98719,74.83196,2.799 1483,170.55118,-17.848478,17.17334,41.708164,2.795 1483,282.28592,-18.235027,17.337189,41.45658,2.791 1483,5.011963,216.90935,28.774689,70.184555,2.785 1483,428.72372,-2.6051674,16.477356,36.438934,2.78 1483,464.39258,-41.605446,46.509705,93.96422,2.776 1483,190.56403,-34.59504,28.281006,72.31428,2.774 1483,226.51604,-15.590583,17.23906,39.0801,2.774 1483,410.94943,-37.558754,60.801178,132.18979,2.771 1483,400.4814,-41.27682,46.79608,93.770004,2.765 1483,612.43463,-6.1524467,39.05432,115.371475,2.764 1483,379.40646,-15.938423,15.577972,38.289585,2.761 1483,218.50247,-16.131372,17.239944,40.23921,2.753 1483,-4.6032043,263.32452,15.291613,39.417816,2.75 1483,240.87282,-39.821762,45.94487,94.07308,2.741 1483,523.96857,-4.751089,17.510803,39.13214,2.74 1484,-8.620982,464.5345,37.41443,92.27814,5.888 1484,1.3021499,266.72195,18.984852,44.73474,5.873 1484,-6.5514507,489.36447,19.255705,43.371735,5.529 1484,-12.708084,-38.825535,41.751003,100.19938,5.408 1484,585.7198,-97.06435,74.55841,230.00734,5.324 1484,627.2489,-17.383656,16.669678,45.846092,5.314 1484,626.2539,488.1002,21.724365,45.692657,5.238 1484,610.9431,-48.431786,41.810425,100.675125,5.23 1484,490.5401,-180.98576,234.8316,429.20413,5.23 1484,-6.074317,-18.730433,17.998577,43.473995,5.119 1484,-73.035385,265.91882,201.24161,461.1172,5.087 1484,-20.347675,-85.13614,72.27154,193.98117,5.057 1484,613.4229,453.86963,39.592285,107.51044,5.021 1484,583.07623,411.23163,71.57623,176.83673,5.006 1484,-21.563221,402.671,79.34558,175.5076,4.844 1484,536.46594,310.70074,142.66028,342.32684,4.734 1484,-37.043167,-127.038216,117.64566,273.1072,4.682 1484,210.25934,218.58728,22.078598,39.04373,4.424 1484,493.18936,226.51471,238.33316,516.16833,4.341 1484,-71.355736,-190.38972,212.37756,457.55365,4.212 1484,-4.5198565,270.33832,18.039822,44.02896,3.866 1484,202.50098,220.32118,21.068481,38.23851,3.809 1484,132.65959,-16.132477,31.391098,65.22208,3.757 1484,618.0443,490.8546,21.170593,42.240906,3.741 1484,117.66614,-16.912592,30.45076,68.82993,3.658 1484,-10.384245,255.6817,30.124117,69.517944,3.516 1484,90.49793,-17.678097,18.001907,41.05179,3.483 1484,-10.972177,27.04705,29.389282,67.83257,3.483 1484,394.24194,3.9218044,20.938293,41.047646,3.432 1484,66.28602,-15.351263,18.021538,38.702965,3.4 1484,531.9022,-136.50287,114.79224,271.79965,3.376 1484,184.80884,227.61684,21.767365,37.6093,3.34 1484,130.04828,189.49104,45.097626,85.64195,3.309 1484,-8.632182,8.502132,38.719738,103.02461,3.302 1484,5.6448946,467.04575,37.6505,96.73294,3.289 1484,426.40485,3.1764545,19.165558,42.93161,3.281 1484,74.180275,-16.861538,17.901978,39.965923,3.279 1484,8.590172,-89.00001,74.967964,204.21724,3.275 1484,405.59753,-1.0811138,30.54477,61.686493,3.241 1484,126.136765,-34.20753,28.483109,74.67538,3.24 1484,468.80725,202.4191,25.553436,68.771515,3.196 1484,302.0774,221.98657,13.409088,30.124008,3.172 1484,59.827415,-15.333776,32.84749,62.892685,3.169 1484,619.6072,-16.816685,16.515076,42.086094,3.15 1484,315.6167,-16.563606,16.358429,38.623486,3.15 1484,427.27597,-14.543199,15.837891,36.67262,3.148 1484,102.176834,-17.082417,30.123291,67.69525,3.143 1484,386.79214,4.4153004,20.482025,39.199425,3.138 1484,299.0274,-17.489641,16.460999,40.167793,3.109 1484,84.58212,206.72049,30.559319,68.912384,3.105 1484,603.7946,-29.98838,52.670105,143.43968,3.081 1484,122.497955,-17.287685,17.441635,41.33603,3.081 1484,546.85645,413.72742,83.04657,166.89368,3.077 1484,110.702866,-33.773884,27.958206,73.88746,3.075 1484,2.4500756,-17.04406,17.331022,40.485428,3.064 1484,172.94934,219.88344,31.752258,58.69487,3.063 1484,-8.566137,200.8125,38.404297,101.66687,3.057 1484,114.768814,-15.8892765,17.218597,39.866318,3.051 1484,260.8244,-17.138372,31.076721,63.86354,3.035 1484,-5.8484907,44.80578,18.516518,46.216385,3.034 1484,141.42145,-33.67322,29.23526,73.552574,3.031 1484,137.84525,-17.855541,18.195679,42.47341,3.026 1484,178.58032,188.18433,34.463013,59.715775,3.02 1484,106.62383,-16.706234,17.28724,40.46171,3.019 1484,52.93004,-3.6346817,30.852394,62.681084,3.016 1484,379.03622,4.1798534,19.45819,39.508446,3.006 1484,418.1883,3.9805012,20.77774,42.57438,3.001 1484,492.49512,-3.3256445,16.95633,35.95558,2.993 1484,358.1845,-16.907024,29.652222,64.8292,2.992 1484,-9.939319,290.87155,38.696217,107.085846,2.991 1484,22.076788,234.52837,28.808268,65.337845,2.983 1484,85.14016,-33.11729,30.082863,72.82964,2.96 1484,188.24417,208.32712,29.75029,56.06259,2.949 1484,197.29648,200.19856,30.906158,60.446365,2.933 1484,281.82578,-3.5619116,19.663422,36.658245,2.931 1484,210.05507,-14.907351,34.08145,65.64257,2.915 1484,58.64481,-16.137222,17.46597,39.1734,2.909 1484,195.16411,-14.665586,33.982803,64.82206,2.903 1484,146.44159,174.18867,43.949005,88.298996,2.896 1484,4.1176486,-14.341419,49.94014,125.40466,2.891 1484,144.2956,-42.00551,46.63257,91.461205,2.89 1484,443.2454,-14.811128,15.420929,36.21937,2.869 1484,58.30742,-3.7088213,21.504303,39.082905,2.869 1484,82.461464,-16.279202,17.94812,40.0121,2.869 1484,176.22366,-40.360413,47.07083,92.6929,2.868 1484,330.8103,-16.325539,16.621399,38.36677,2.866 1484,411.98047,-0.8459301,18.280212,35.92682,2.866 1484,363.95157,2.2961597,18.590515,41.933853,2.865 1484,216.11726,208.45892,21.883835,39.775803,2.862 1484,105.929276,184.35924,58.241074,118.90419,2.862 1484,227.1277,9.694794,35.192062,69.2497,2.861 1484,1.6857958,250.69614,19.374298,43.66028,2.856 1484,477.9924,191.20834,25.711243,69.60098,2.854 1484,70.7372,204.28369,28.997948,68.38345,2.853 1485,-11.436384,-32.60533,30.270782,73.355064,7.246 1485,-6.365863,489.0693,19.051163,43.994965,6.856 1485,-5.5448604,-17.2284,17.359488,43.038803,6.688 1485,-12.399764,478.47498,30.60365,62.11743,5.687 1485,627.2292,-17.509583,17.002747,45.693985,5.624 1485,585.6533,-96.6695,74.533936,229.5474,5.498 1485,626.2355,487.75418,21.588684,45.888275,5.37 1485,100.055084,200.34544,29.598938,60.80449,5.354 1485,490.65814,-181.27148,234.52875,430.1371,5.345 1485,-17.813992,-62.5643,56.56232,141.71599,5.297 1485,610.8576,-48.12961,42.06134,100.38175,5.262 1485,613.3322,453.92322,39.476746,107.93359,5.126 1485,-17.10121,437.43298,54.8779,138.10718,5.114 1485,-73.21527,266.2173,201.24164,461.35217,5.035 1485,583.18414,411.123,71.604004,176.83978,4.939 1485,-37.20446,-128.28444,117.10991,276.19904,4.797 1485,536.47095,310.67328,142.60645,341.6729,4.704 1485,-40.618572,366.67255,111.04112,275.60645,4.673 1485,161.86563,224.34251,19.328522,31.816422,4.566 1485,493.21927,226.94537,238.52542,515.90656,4.302 1485,-71.26276,-190.08315,212.74298,457.0238,4.299 1485,3.166101,-15.59818,16.583475,40.354523,4.259 1485,92.539444,215.17044,30.975075,64.875,4.044 1485,618.08276,489.35342,21.164734,43.675934,4.009 1485,-9.918898,-5.2845497,40.186974,99.71823,3.867 1485,170.66069,224.88779,17.752975,30.188477,3.8 1485,52.670967,-17.20842,31.70382,70.7766,3.751 1485,508.14487,-3.8115807,17.34311,35.722683,3.592 1485,26.705065,-17.306908,17.207243,40.16333,3.58 1485,68.77523,-16.524487,32.12706,64.71557,3.559 1485,476.27747,-2.0287476,17.76361,35.153847,3.547 1485,267.37912,-16.095009,16.40158,37.95667,3.519 1485,2.2306466,-38.70844,42.794586,95.162094,3.517 1485,10.328717,-16.900715,16.954662,40.144787,3.478 1485,153.91539,214.76357,20.490952,34.9973,3.472 1485,412.95258,-3.2049026,16.398132,34.237232,3.449 1485,531.8876,-135.9131,114.890625,270.9977,3.424 1485,491.64417,-2.390028,17.441986,36.54438,3.42 1485,259.59247,-15.727715,16.502228,37.97042,3.383 1485,-0.5135441,-19.941795,26.958857,68.74486,3.383 1485,396.2173,-2.4235764,17.000732,34.406948,3.376 1485,10.031151,-3.8894367,20.465256,39.450394,3.363 1485,619.47986,-17.39333,17.018799,42.036674,3.36 1485,5.8962774,195.52576,31.271614,77.3396,3.344 1485,213.34624,-17.837776,30.730286,66.50515,3.332 1485,483.78262,-2.1017647,17.522797,36.603577,3.315 1485,36.613804,-17.813566,32.645634,68.04986,3.291 1485,33.259953,215.70294,44.126965,86.38397,3.268 1485,9.7164345,-92.50097,74.30208,207.78577,3.25 1485,-5.504121,0.8011055,17.976772,42.339188,3.25 1485,588.6648,-3.9325695,17.104187,36.347015,3.231 1485,2.2872071,489.4407,19.897402,44.19931,3.223 1485,428.6964,-2.3573637,16.529053,35.339252,3.221 1485,330.99625,-15.117525,16.079529,36.868866,3.198 1485,155.53633,230.9812,18.530777,31.433136,3.187 1485,131.19777,190.99629,32.491272,60.123886,3.186 1485,612.9473,268.9712,37.38037,107.86676,3.174 1485,499.87048,-3.2355042,17.173462,36.970684,3.173 1485,160.88913,-15.279648,35.38858,64.84846,3.144 1485,524.5832,-3.69866,16.751526,34.75104,3.139 1485,299.7782,0.38911247,18.27127,40.986473,3.136 1485,572.71576,-4.203888,17.067505,35.684486,3.121 1485,246.54163,-35.031082,28.217438,69.431244,3.119 1485,-7.0670295,202.41605,37.572113,101.6398,3.117 1485,66.038994,201.01434,43.438698,89.11737,3.115 1485,315.23022,-15.548473,16.021332,37.26835,3.111 1485,143.7494,-38.815063,47.11818,90.55885,3.108 1485,612.155,-6.8720207,38.616333,118.15793,3.102 1485,331.0536,2.7457008,19.612854,40.593235,3.094 1485,546.63635,413.10712,83.422,167.21484,3.084 1485,85.31111,201.88475,31.989563,61.475143,3.083 1485,532.5227,-3.1528778,16.860535,35.03087,3.077 1485,-5.6184072,200.70752,17.489296,43.626205,3.075 1485,421.0525,-2.8602371,16.2005,35.352123,3.068 1485,-5.1782966,184.91429,16.907225,41.5773,3.059 1485,404.68933,-2.8600674,16.6232,34.744984,3.057 1485,5.7247615,467.70633,37.56917,95.066376,3.051 1485,30.035135,-34.55304,28.844393,73.72146,3.047 1485,516.40753,-4.3366766,16.995117,35.620575,3.047 1485,226.34584,-17.14011,17.629776,39.87419,3.045 1485,228.89816,-20.70243,30.911652,66.96225,3.043 1485,10.20915,175.84445,57.537895,128.16495,3.035 1485,251.00995,-17.941965,16.827118,41.06992,3.034 1485,540.22644,-2.8824453,16.866394,34.098003,3.034 1485,151.83362,2.8452568,37.95996,69.89458,3.033 1485,528.3312,-41.486126,46.691284,93.068855,3.025 1485,218.47694,-17.39854,16.908493,40.399555,3.022 1485,96.46857,-40.93215,46.36058,89.292274,3.02 1485,560.3159,-42.24319,46.62677,93.817764,3.018 1485,91.46484,165.40749,57.66124,123.47243,3.017 1485,275.18567,-14.444142,16.336517,36.690033,3.017 1485,475.1754,-15.350878,16.324524,37.531403,3.016 1485,299.12326,-15.622271,16.109283,37.709538,3.008 1485,387.50488,-2.6319284,17.823914,35.622475,3.004 1485,110.73561,198.1656,23.666916,49.85138,3.003 1485,34.32957,-17.042461,17.43443,40.112324,2.984 1485,574.0473,-24.06173,53.580383,135.20901,2.98 1485,615.564,-20.392025,26.633118,69.57923,2.978 1485,339.0472,2.4058418,19.278229,40.79117,2.975 1485,147.92012,223.07588,18.18892,36.937363,2.969 1485,379.27576,-2.3038177,18.505554,35.670803,2.968 1485,362.74677,-16.612633,16.575073,38.128716,2.951 1485,574.8731,-34.65119,27.622864,69.502655,2.949 1485,555.1323,-16.936586,16.059204,36.78702,2.946 1486,-5.7337284,-18.388233,17.97588,44.034367,6.468 1486,-11.250147,-33.702137,30.093279,75.61022,5.738 1486,-6.6052036,488.84164,19.402168,44.087677,5.691 1486,-12.748461,477.45602,31.402514,62.494232,5.675 1486,585.57996,-96.473404,74.64905,229.75764,5.434 1486,627.19354,-17.408592,17.05194,45.22779,5.404 1486,-17.494452,-63.1297,56.28195,142.0177,5.361 1486,490.73547,-181.32324,234.49066,430.10126,5.358 1486,610.74347,-47.29961,42.22162,98.73719,5.242 1486,-73.138504,265.6391,201.40533,461.23883,5.036 1486,613.4217,453.9193,39.069153,108.66748,4.899 1486,583.2285,410.7695,71.64667,177.21573,4.845 1486,-21.785912,402.09406,79.45097,175.5647,4.844 1486,536.41724,310.58582,142.4812,341.64142,4.651 1486,-37.52157,-127.75634,117.27913,276.82205,4.619 1486,626.2785,487.69952,21.509644,45.731873,4.495 1486,121.99115,223.84698,19.247192,32.393616,4.428 1486,28.78951,208.09567,32.103203,63.785004,4.335 1486,-71.04461,-190.11823,212.78625,456.67386,4.333 1486,493.18738,226.2482,238.5835,516.26733,4.233 1486,2.7575378,-18.392302,17.410923,43.72335,4.204 1486,211.47351,-17.618904,16.701462,39.860138,4.006 1486,-9.828986,-6.1253777,40.232998,100.218094,3.88 1486,-1.6165841,209.58243,26.593884,70.1962,3.855 1486,413.93738,215.76099,29.017334,64.848206,3.839 1486,3.3964825,251.45345,18.958426,39.085556,3.718 1486,219.40082,-18.93112,16.796295,41.18755,3.716 1486,1.8676972,-40.183826,43.427197,95.97945,3.62 1486,202.74393,-18.48765,17.262878,39.985237,3.615 1486,107.31873,221.97313,18.465195,36.742783,3.577 1486,114.54233,223.14175,19.589142,34.21872,3.571 1486,-11.624174,199.7373,29.213552,74.487305,3.555 1486,206.44244,-34.815475,28.243622,68.88323,3.521 1486,119.90173,-1.9959698,23.01236,40.251945,3.463 1486,531.79926,-135.81976,115.18463,271.036,3.436 1486,-5.6291304,217.2223,17.736286,43.600693,3.419 1486,-5.0085998,253.71136,17.045675,40.357056,3.404 1486,380.59372,-2.5911179,16.513702,34.315292,3.386 1486,618.2351,489.02957,21.12732,43.717316,3.363 1486,364.39865,-1.588747,16.701202,33.07795,3.355 1486,363.39703,-15.367383,15.697174,36.17108,3.343 1486,428.39258,-3.6810455,17.10553,35.06372,3.308 1486,619.602,-3.5182962,17.920837,38.60642,3.298 1486,181.859,-34.48539,29.247955,72.181656,3.273 1486,-9.753045,35.59941,39.212563,107.81131,3.268 1486,43.29249,207.40305,32.246758,62.58905,3.242 1486,372.5121,-2.2353697,16.60379,34.36319,3.231 1486,-0.586164,193.78006,52.73933,126.5578,3.158 1486,412.3896,-2.8324118,16.944702,34.52576,3.144 1486,185.89026,-3.821805,20.774643,37.882362,3.142 1486,120.33962,-13.835674,35.5597,64.67381,3.12 1486,9.432533,-92.406975,74.4759,210.35991,3.119 1486,-9.695822,85.38808,38.816742,105.18132,3.107 1486,194.0521,-17.043795,17.776703,38.68145,3.076 1486,396.5407,-2.9511318,16.732758,34.942257,3.076 1486,492.48004,-4.3113804,17.24176,36.903427,3.052 1486,79.888916,-40.88225,47.43727,92.1207,3.032 1486,546.4802,412.83905,83.683716,167.48663,3.023 1486,180.06708,-4.548504,32.199707,59.714394,3.016 1486,427.33597,-16.062616,15.852783,37.335815,3.01 1486,420.597,-3.192337,16.845764,35.630833,2.994 1486,374.55933,-33.749382,27.26764,69.798256,2.982 1486,300.02203,-4.686101,17.402649,36.361084,2.975 1486,400.3742,-41.13745,46.51935,94.726166,2.962 1486,240.17908,-41.13625,46.934998,94.28871,2.957 1486,603.2413,-26.814766,52.769592,143.10167,2.952 1486,371.51767,-14.928331,15.8124695,35.891014,2.952 1486,27.325838,170.08421,57.994057,119.61424,2.948 1486,612.23694,315.58237,38.229126,111.58008,2.942 1486,284.35553,-4.4257603,17.160126,36.327747,2.935 1486,358.42624,-33.033157,27.572296,68.55195,2.925 1486,330.5019,-36.46814,59.96753,128.66357,2.917 1486,207.85123,-41.68062,47.186996,91.307175,2.913 1486,252.58363,-4.620322,16.876846,37.71083,2.912 1486,444.294,-4.3036327,17.020844,36.410904,2.909 1486,379.643,-16.620892,15.835541,37.690426,2.902 1486,-0.67278266,-21.292397,27.896894,71.47847,2.898 1486,52.811882,218.89258,30.05162,62.878357,2.897 1486,436.474,-4.1312704,16.93872,36.56378,2.881 1486,368.21826,-40.439095,46.86783,94.12562,2.876 1486,5.641123,466.21066,37.688835,97.58774,2.874 1486,560.138,-40.36441,47.03662,92.02949,2.871 1486,432.56503,-41.65205,46.299286,95.22904,2.869 1486,299.01428,-36.993813,58.821564,128.87248,2.859 1486,404.43,-2.9592457,16.757446,35.379555,2.858 1486,342.444,-32.585464,27.733337,69.00668,2.857 1486,144.02997,-38.37762,46.810364,91.63234,2.854 1486,347.56943,4.6769257,18.376617,37.38518,2.847 1486,-8.710432,293.85864,37.653633,104.99219,2.844 1486,196.67314,-20.094257,31.8199,64.96977,2.841 1486,1.7624676,489.63425,20.602148,43.895966,2.839 1486,464.3844,-41.82198,46.381897,93.92001,2.839 1487,-6.5399194,489.10434,19.230831,43.32303,6.273 1487,-11.470768,-33.04112,30.007677,73.87555,6.048 1487,-12.700558,478.502,31.429089,61.941833,5.993 1487,-6.0444045,-18.251059,18.012941,43.5286,5.83 1487,585.6403,-97.990265,74.680664,231.67943,5.354 1487,107.48016,222.3811,17.970505,32.94522,5.32 1487,490.45197,-180.98267,234.84052,429.81247,5.306 1487,627.3266,-16.79261,16.551086,45.191242,5.272 1487,613.32715,453.964,39.417297,108.25305,5.162 1487,626.2196,487.64783,21.492432,45.79608,5.147 1487,-17.539898,-62.423134,56.26049,141.5588,5.139 1487,19.861097,203.14586,30.576784,63.597397,5.124 1487,-73.32588,265.3673,201.62648,461.6637,5.096 1487,611.09326,-47.97661,41.682068,101.21184,4.996 1487,583.1617,410.9015,71.578064,177.01428,4.858 1487,-21.961689,401.94705,79.69386,175.7963,4.852 1487,-37.57172,-128.82904,117.37137,280.1496,4.715 1487,536.5337,310.40247,142.51611,341.89673,4.68 1487,493.41223,226.5831,237.97357,515.7539,4.264 1487,-71.02992,-189.67589,212.58194,455.7627,4.253 1487,2.5983543,-17.599516,17.572617,42.891003,4.156 1487,99.73441,221.24487,17.821396,35.881866,4.013 1487,5.0936975,199.50682,30.793846,75.258865,4.006 1487,-5.9612284,214.95934,18.218067,45.203537,3.9 1487,202.95096,-18.194082,17.033905,39.69976,3.899 1487,4.8547735,-21.64149,30.44865,70.34429,3.849 1487,268.3507,4.2641335,17.23819,36.574165,3.794 1487,347.977,-0.7540436,17.372711,32.60086,3.731 1487,618.2552,489.02014,21.09552,43.64392,3.694 1487,-0.74667215,178.15634,52.080833,129.43942,3.608 1487,-7.976698,199.52328,37.731026,99.195465,3.549 1487,364.41144,-2.7192192,16.765137,34.49737,3.538 1487,469.05615,0.25770378,15.71405,32.56347,3.511 1487,356.12097,-1.8679171,16.969177,33.895935,3.484 1487,461.01868,-0.43030357,16.002686,32.74134,3.482 1487,35.598686,181.8552,41.300453,92.216705,3.469 1487,300.3465,-2.2254505,16.969818,33.051964,3.466 1487,-10.022631,-6.2648315,40.418068,101.741875,3.465 1487,492.767,-0.3802929,15.809723,31.542768,3.444 1487,1.7635262,490.38907,20.394375,42.593475,3.434 1487,114.00703,219.62,19.317741,32.192505,3.403 1487,316.7473,-1.9274673,16.441467,32.070152,3.367 1487,21.976398,-33.188484,28.443508,70.53626,3.359 1487,532.103,-138.11726,114.96033,273.47403,3.336 1487,418.95795,178.1925,30.954407,86.832825,3.321 1487,315.52594,-15.196596,15.991119,35.47309,3.286 1487,396.48422,3.276085,17.105713,40.312412,3.264 1487,9.903766,-18.830315,18.057896,43.082973,3.253 1487,616.0303,-19.317137,25.994385,69.58144,3.234 1487,619.98267,-16.36626,16.154297,41.46149,3.234 1487,-5.8120685,184.31729,18.287722,44.891144,3.233 1487,476.89517,0.48381138,15.693451,31.351067,3.225 1487,574.2667,-22.86876,53.309692,131.74338,3.224 1487,1.9188952,220.1842,21.049194,51.038513,3.222 1487,603.7168,-27.22625,52.321045,139.89357,3.21 1487,524.3944,-2.4580975,16.783325,33.736057,3.196 1487,308.5519,-2.2999096,16.658112,33.336475,3.194 1487,340.26212,-0.24988174,17.027191,32.588295,3.189 1487,556.95764,-4.1080694,16.668335,36.572502,3.187 1487,275.84714,4.6265335,17.555206,36.167397,3.163 1487,-10.13088,192.44281,29.116728,74.58325,3.159 1487,92.11173,219.30185,16.920631,37.516876,3.156 1487,324.7008,-1.5310812,16.282043,32.586895,3.155 1487,445.0088,-2.6783218,16.40207,34.59614,3.15 1487,363.2483,-16.03269,15.870056,36.508408,3.147 1487,121.750305,210.27771,20.148178,35.61592,3.134 1487,500.50687,-1.7097797,15.892792,33.46119,3.133 1487,331.82532,4.9133034,17.519135,35.32036,3.129 1487,508.46188,-2.1749458,16.291962,33.523647,3.12 1487,-9.082488,86.25331,38.031994,104.42221,3.105 1487,428.86716,-3.991313,16.921967,35.80371,3.095 1487,194.69016,-17.424427,17.23732,38.589382,3.09 1487,572.3202,3.6383038,17.67566,38.284386,3.084 1487,179.76225,-18.393188,32.86046,65.194145,3.083 1487,475.6631,-14.215042,15.08728,35.021107,3.083 1487,484.89496,-0.08405781,15.560089,31.686867,3.083 1487,211.51358,-16.194191,16.256378,37.482693,3.081 1487,101.4151,194.50061,29.289642,58.591446,3.08 1487,437.001,-3.6977158,16.727509,36.02851,3.08 1487,26.728535,-16.829674,17.076286,40.06139,3.075 1487,284.61377,-1.6462126,16.809082,33.531116,3.061 1487,546.68756,413.0703,83.5733,167.23425,3.046 1487,261.0231,-2.3350687,16.664429,34.46307,3.033 1487,32.937294,213.62627,22.67765,44.823624,3.026 1487,452.93243,-1.629652,16.00885,34.117165,3.013 1487,-9.31231,37.43143,39.50495,106.25969,3.007 1487,5.397818,467.4622,38.243034,95.55405,3.004 1487,612.3022,315.97003,38.325012,110.28088,3.0 1487,299.07687,-15.386251,16.368988,35.505302,2.996 1487,587.74176,3.0430984,18.095764,39.041714,2.976 1487,598.31573,-21.053947,39.684814,93.99514,2.976 1487,252.81676,-3.6069899,16.548569,34.558018,2.962 1487,34.9018,-15.810244,16.850136,38.0213,2.957 1487,620.3861,2.7304516,17.607666,42.38501,2.957 1487,235.48784,-38.246586,58.652664,129.3388,2.952 1487,9.531927,-93.70151,74.49619,214.0773,2.951 1487,12.223377,154.77017,55.85718,126.66223,2.947 1488,-5.7862473,-18.216309,17.940033,42.682674,7.367 1488,-11.461263,-31.538412,29.884537,70.80813,6.582 1488,-13.169811,478.30673,32.092575,61.983856,5.989 1488,-6.712841,489.2898,19.577915,43.23468,5.743 1488,490.53656,-180.85541,234.72803,429.39078,5.301 1488,585.6924,-97.72391,74.651306,231.26279,5.273 1488,-17.687033,-62.759747,56.214165,140.98982,5.253 1488,-73.31984,265.56268,201.92699,461.86066,5.108 1488,627.1139,-17.556381,17.190857,45.104027,5.086 1488,613.2056,454.15445,39.55591,108.33444,5.04 1488,626.40515,487.82513,21.339905,45.82904,4.976 1488,610.7276,-48.121384,42.293884,100.19728,4.962 1488,583.22296,410.80493,71.65863,177.14673,4.862 1488,-21.899984,401.8551,79.60591,175.91943,4.832 1488,536.31055,310.45355,142.78845,341.77216,4.688 1488,-37.511887,-129.07697,117.20996,279.30167,4.603 1488,4.4107447,211.10309,29.45285,73.766785,4.549 1488,2.8783464,-17.511353,16.930172,41.550266,4.311 1488,493.6032,226.52905,238.08655,515.74396,4.291 1488,-71.174194,-189.8895,212.79527,456.33728,4.26 1488,35.65827,210.62704,33.450417,58.917755,4.137 1488,128.1241,-13.831455,36.68692,64.603195,4.065 1488,-10.697096,216.6493,29.276009,74.01897,4.064 1488,218.30148,-18.180035,17.684921,38.91504,3.93 1488,268.93234,-1.8816738,15.951996,32.783157,3.761 1488,-10.146456,-6.368313,40.273964,100.04703,3.733 1488,135.42209,-2.2091389,22.542892,39.688698,3.573 1488,123.2125,232.34262,17.985252,32.894165,3.57 1488,2.109542,-39.172123,42.99511,95.13586,3.494 1488,380.72342,-0.3797531,16.067688,32.211704,3.481 1488,618.579,490.02777,20.6875,43.16089,3.479 1488,-5.251405,0.029489517,17.73948,41.537148,3.434 1488,-5.0335226,262.17102,16.800236,40.14673,3.38 1488,300.781,-3.9417982,16.907959,35.132797,3.369 1488,137.87756,225.67673,18.678009,30.972809,3.355 1488,476.4236,-2.4003391,17.146057,35.288063,3.325 1488,108.24596,239.93484,17.414078,33.451416,3.32 1488,491.9226,-1.862647,17.31836,35.634777,3.31 1488,202.93124,-16.339157,33.306366,61.78665,3.306 1488,235.22284,-17.415234,16.92485,37.539104,3.29 1488,20.401613,-19.155163,31.945398,66.58572,3.287 1488,532.0127,-136.96979,115.02576,272.32553,3.283 1488,227.25755,-16.450306,16.806381,37.150887,3.274 1488,260.82767,-2.1620388,16.274445,33.320656,3.262 1488,-9.723406,35.917206,39.24113,107.68948,3.245 1488,26.475845,-5.2244663,20.609722,40.853157,3.226 1488,316.22046,-4.1262894,17.265228,36.084805,3.204 1488,30.347504,-33.328926,28.509804,69.85729,3.201 1488,308.62036,-4.3048563,17.111725,36.658997,3.191 1488,1.5715384,490.10434,20.865435,43.50064,3.181 1488,379.4617,-13.62067,15.254181,35.614117,3.154 1488,388.71933,-1.4198103,15.7560425,33.81055,3.153 1488,619.4251,-5.573596,18.55011,40.782696,3.15 1488,396.5675,-2.001916,16.018707,34.139343,3.144 1488,-5.8525486,223.2584,18.59657,46.64479,3.136 1488,364.60995,-0.57770157,16.477142,30.905365,3.121 1488,131.11308,226.26474,18.31424,32.153442,3.12 1488,484.0929,-2.0445976,17.132355,36.200592,3.114 1488,491.2125,-15.280661,16.139221,37.27007,3.102 1488,267.62204,-14.741964,15.384888,36.207596,3.102 1488,252.5313,-2.205124,16.877823,32.450333,3.083 1488,-4.5396943,15.2649555,15.755417,40.21836,3.057 1488,603.3352,-26.672577,52.31006,140.5029,3.046 1488,34.561203,-5.2016315,19.165928,39.169724,3.041 1488,372.9845,0.12643814,15.993286,31.877037,3.039 1488,115.97473,232.04051,17.7164,36.646103,3.034 1488,546.8003,412.4715,83.4043,167.84784,3.029 1488,-8.7709675,232.66876,38.801666,96.262085,3.027 1488,-9.129103,306.6711,38.28165,108.031555,3.01 1488,443.52292,1.9126854,18.308472,41.349667,3.003 1488,239.90848,-40.346214,47.545105,90.44444,2.981 1488,462.15247,-15.463585,28.997437,61.89996,2.978 1488,284.07852,1.5838032,17.409851,38.755127,2.973 1488,24.196451,220.78075,23.166113,49.66304,2.973 1488,436.49368,185.6746,40.842407,105.65706,2.971 1488,99.64553,248.9265,17.196243,29.123703,2.97 1488,9.843729,-94.19027,74.16765,212.54428,2.967 1488,276.67566,-2.572835,16.031952,33.849472,2.945 1488,294.41516,-17.7543,29.14856,61.65537,2.936 1488,2.8056908,0.30359077,19.70132,43.32168,2.934 1488,251.44965,-15.603224,15.801666,35.940582,2.931 1488,175.71545,-38.87408,47.141434,90.6449,2.931 1488,304.24713,-41.460438,46.861115,92.28458,2.925 1488,417.93372,-9.66362,44.2695,95.78224,2.921 1488,336.4588,-41.306587,46.315216,93.74372,2.912 1488,76.95235,-3.0945454,15.556725,33.649418,2.9 1488,259.7141,-14.303474,15.622009,35.386303,2.9 1488,91.24646,248.39067,16.919044,31.207626,2.898 1488,395.5401,-15.320448,15.507904,36.79823,2.896 1488,427.63477,2.7754555,18.67569,41.8795,2.891 1488,528.30585,-41.23768,47.00659,94.05946,2.891 1488,207.48015,-41.035656,47.090378,89.43846,2.878 1488,10.141094,-19.272257,17.486822,42.69191,2.878 1488,314.8972,-16.574877,16.41983,37.942665,2.878 1488,387.5853,-13.79949,15.509766,35.752,2.877 1488,426.94794,-39.087975,58.901215,132.9877,2.875 1488,451.5558,1.6127872,18.28656,39.977463,2.87 1488,-4.5896273,168.66434,16.832573,40.978714,2.869 1488,272.12415,-40.663513,46.98297,92.15967,2.862 1488,209.81375,-16.808455,18.244568,37.799744,2.851 1488,506.9743,-16.466236,16.302368,37.922504,2.851 1488,218.62535,-33.678055,60.246323,125.26884,2.851 1488,459.89532,0.888567,18.139008,39.915565,2.851 1489,-5.429639,-17.781563,17.544722,42.983326,8.012 1489,-11.287904,-31.579266,30.121822,72.42412,7.976 1489,-6.4698687,488.67505,19.347195,44.471252,5.864 1489,627.35944,-16.82415,16.851624,45.625175,5.671 1489,-12.514936,477.12402,30.814531,63.354492,5.43 1489,490.65393,-180.72784,234.74713,429.17496,5.286 1489,585.6923,-97.6807,74.61005,231.02441,5.24 1489,-73.28726,265.67737,201.96843,461.85895,5.16 1489,613.3293,453.9555,38.950317,108.240295,5.14 1489,-17.431564,-62.967873,56.217308,143.09482,4.966 1489,583.27954,410.85962,71.486084,176.89209,4.932 1489,610.9126,-48.30642,41.860962,100.408165,4.883 1489,-21.962143,401.53503,79.56333,176.00513,4.817 1489,626.27795,486.6095,21.38269,46.55542,4.732 1489,536.2927,310.0628,142.76337,342.58893,4.717 1489,3.0943859,-16.579716,16.779222,40.958794,4.648 1489,-4.8873405,0.854372,17.357006,43.692673,4.635 1489,187.59875,225.93512,17.957947,32.11963,4.556 1489,-37.194386,-130.50441,117.28885,280.2553,4.555 1489,493.37042,226.72891,238.25385,515.91943,4.32 1489,-71.54874,-189.97383,213.07643,456.36658,4.193 1489,-5.7930174,185.29898,17.661583,42.279083,4.089 1489,98.61762,211.09328,32.07186,60.988205,4.066 1489,194.60097,221.08046,17.401596,30.762146,4.04 1489,619.86255,-16.419302,16.408752,41.908115,3.617 1489,412.91385,-0.5142517,16.09082,32.3187,3.574 1489,428.51315,0.4269457,15.989258,31.085426,3.534 1489,178.50864,-1.6301556,33.867706,65.2764,3.521 1489,516.47534,214.96127,28.552612,76.071014,3.509 1489,85.980286,-33.09526,28.816895,69.559685,3.493 1489,57.87771,219.67265,33.013557,73.554,3.453 1489,444.57867,-0.11151981,16.318542,31.33736,3.45 1489,-9.887598,-6.052452,40.03824,100.498665,3.446 1489,404.98297,-2.0576267,16.13385,34.129868,3.403 1489,57.43456,264.29324,20.933086,36.64569,3.381 1489,443.36115,-13.937573,15.470276,35.35809,3.38 1489,282.61975,-18.5203,17.684143,39.085686,3.327 1489,179.87994,231.9378,17.086578,32.134705,3.327 1489,26.445084,203.25354,58.460968,118.6333,3.323 1489,508.3772,-1.9815102,17.00415,34.34429,3.312 1489,531.8415,-136.70442,115.24335,272.2362,3.311 1489,172.01566,231.63776,16.81987,34.594727,3.304 1489,427.42432,-12.138313,15.191589,34.093594,3.297 1489,1.9066668,-39.84179,43.146397,96.4764,3.276 1489,82.35902,226.29869,21.64109,46.55217,3.263 1489,420.659,-0.2741642,16.015259,32.618095,3.245 1489,10.610666,-18.542257,17.013975,41.962868,3.24 1489,-5.671117,200.97859,17.665604,44.12474,3.212 1489,618.2571,488.10126,21.073303,44.282898,3.203 1489,1.8088377,194.23593,26.166636,73.447235,3.174 1489,-6.4120245,218.21774,36.59694,95.17526,3.174 1489,-5.36171,170.50563,17.38614,40.319458,3.156 1489,436.39926,0.15503883,16.141876,31.569548,3.155 1489,-9.207497,326.4744,38.328674,105.03891,3.147 1489,184.41566,-1.6934662,22.756256,40.44033,3.144 1489,51.785347,251.03333,30.54229,56.229492,3.135 1489,435.37662,-12.089787,15.397858,33.999264,3.121 1489,2.4658465,488.49255,19.90417,44.921387,3.115 1489,491.1228,3.2810154,19.486633,40.7686,3.105 1489,396.87622,-2.90489,16.474548,34.543663,3.094 1489,411.77075,-13.912857,15.262207,35.399006,3.088 1489,122.93423,252.30473,18.34127,34.986404,3.074 1489,452.5548,-1.229084,16.385681,33.41501,3.063 1489,-5.6908135,250.61218,17.425867,40.581726,3.062 1489,70.4078,-34.145058,28.407043,70.418816,3.04 1489,612.5292,316.76535,37.273987,108.67401,3.033 1489,83.575905,206.92552,33.406487,65.24809,3.03 1489,546.9903,413.0,83.01727,167.27942,3.024 1489,4.772249,253.11356,38.80597,100.538025,3.021 1489,499.36517,2.522131,18.983582,39.948883,3.009 1489,419.7302,-11.812807,15.205353,33.87771,3.008 1489,2.9020433,0.63375854,18.711182,47.07298,3.004 1489,380.34186,-4.1400356,16.999115,36.18152,2.989 1489,193.1352,-15.929728,35.407364,64.964676,2.982 1489,9.386168,-95.46954,74.78459,212.9545,2.964 1489,524.42706,-1.7442665,16.71167,33.15933,2.942 1489,274.30914,-17.385448,17.709229,38.42245,2.941 1489,540.02527,2.7519817,18.206726,37.68158,2.94 1489,90.28789,-18.424532,17.797699,40.760628,2.936 1489,2.6546931,263.87433,20.769024,41.84723,2.935 1489,201.20596,-3.288025,20.34114,39.197735,2.933 1489,261.7193,-34.27474,29.10913,69.05648,2.93 1489,364.33914,-4.759384,17.024384,37.67036,2.929 1489,348.48206,-4.143635,16.89209,36.344578,2.926 1489,603.6642,-27.881992,52.135742,142.02354,2.917 1489,304.14868,-41.2436,47.218323,92.75902,2.914 1489,460.3626,-1.7334824,16.29541,33.504646,2.909 1489,-11.527264,180.67686,28.890392,69.51817,2.903 1489,271.52045,-41.753723,47.163513,90.05496,2.885 1489,10.34136,172.1594,60.570473,132.97864,2.882 1489,598.0805,461.45993,38.145935,98.184906,2.878 1489,501.93784,206.29358,32.908356,74.693756,2.878 1489,239.58426,-40.15641,47.035736,90.685265,2.877 1489,516.329,-2.1479864,16.780334,34.27517,2.874 1489,60.30799,-59.3045,57.12966,129.74864,2.867 1489,573.3011,-23.196804,54.233032,134.18344,2.865 1489,116.46935,213.41885,30.728432,59.22705,2.862 1490,-11.146305,-32.441196,29.7784,72.433334,7.334 1490,-6.07623,-17.869726,18.160763,43.351315,6.577 1490,-13.162541,476.89587,32.174248,62.733765,5.721 1490,-6.521002,-1.4753876,19.695469,45.160248,5.717 1490,-6.645851,488.83432,19.50615,43.967743,5.681 1490,236.10342,226.1235,16.816437,31.612976,5.657 1490,-17.753874,-60.359634,57.600845,139.16078,5.308 1490,490.81573,-180.77934,234.60724,429.45828,5.301 1490,627.35236,-16.930544,16.626892,46.013184,5.171 1490,611.0365,-47.848175,41.615784,99.96943,5.17 1490,-73.55389,265.4063,202.01999,461.59174,5.167 1490,585.79956,-98.162605,74.393555,231.71057,5.12 1490,613.1402,453.65732,39.6015,109.025055,5.043 1490,626.3596,487.9995,21.528503,45.682922,5.007 1490,-22.126198,401.1573,79.81854,176.17847,4.92 1490,131.02481,206.55693,34.63597,65.18202,4.894 1490,583.17883,411.5141,71.4397,176.21759,4.834 1490,-36.42739,-127.999954,116.7566,275.48676,4.794 1490,28.851887,0.10895157,30.28452,64.53575,4.759 1490,536.32623,310.23932,142.73492,342.3985,4.679 1490,13.830176,0.6340866,29.757187,69.983505,4.487 1490,-11.484117,1.4268074,29.237083,68.93237,4.445 1490,220.59537,232.17224,16.448532,32.884552,4.383 1490,-71.32644,-190.09987,212.54929,457.06,4.364 1490,493.425,226.71942,238.01178,515.7764,4.288 1490,2.7570624,-15.216326,17.13229,39.64783,4.227 1490,-8.143473,-4.7154655,38.626423,97.57599,4.099 1490,-0.18935442,-16.184986,27.55729,66.94751,4.075 1490,227.96767,227.56656,16.754807,32.865845,3.995 1490,59.54628,210.49506,55.10443,118.62482,3.971 1490,115.83481,198.36716,42.28305,89.40488,3.867 1490,123.00542,175.96965,58.478806,112.840836,3.865 1490,232.82123,-1.1935482,21.197388,38.094986,3.799 1490,1.485095,-36.17868,43.655037,94.04964,3.78 1490,579.329,232.8769,29.043762,70.769455,3.754 1490,618.49396,489.86966,20.891907,43.027985,3.734 1490,381.04587,-3.1088867,16.185852,35.31998,3.662 1490,145.71523,185.38382,42.68126,88.52121,3.61 1490,388.71127,-3.5251331,16.394379,36.716576,3.596 1490,226.13116,-14.300167,35.70331,63.96091,3.539 1490,365.11237,-2.0954514,15.839783,33.793556,3.477 1490,98.44745,209.98383,42.76233,93.109375,3.461 1490,88.72218,262.24713,19.786224,39.07788,3.447 1490,10.352697,-14.734039,17.431068,39.6197,3.433 1490,36.484684,-14.97826,30.673,67.23482,3.424 1490,-7.4902287,228.268,37.136772,104.60559,3.416 1490,556.1001,-3.474105,17.184143,36.523033,3.391 1490,250.83331,-1.2193832,18.843353,35.648846,3.359 1490,396.25055,-3.604723,16.88556,36.542984,3.357 1490,243.66406,225.97424,16.85614,31.493683,3.34 1490,476.41058,-1.3210201,16.699707,32.639973,3.333 1490,147.93257,229.99677,31.500717,61.47455,3.333 1490,573.82336,-22.046036,53.232178,133.10435,3.319 1490,75.263916,219.28104,31.88321,65.788086,3.317 1490,27.634304,169.7333,55.732235,133.47635,3.308 1490,619.95184,-16.778988,16.365295,42.51076,3.293 1490,20.738306,-31.459255,30.315496,74.558586,3.284 1490,492.57202,-1.8139801,16.37909,32.787376,3.274 1490,309.9891,-34.844776,27.700409,70.003044,3.266 1490,164.02463,230.51776,29.799149,58.109863,3.266 1490,531.7912,-136.97563,115.10693,272.459,3.259 1490,241.77249,-1.0086727,19.783936,36.7799,3.246 1490,-9.608255,31.989418,39.112648,110.71444,3.236 1490,451.2834,205.5487,41.86737,94.56232,3.211 1490,163.52785,-3.7630682,17.884537,38.138428,3.196 1490,-9.601351,358.63037,39.15593,105.1517,3.173 1490,26.290546,-14.927845,17.128777,41.049816,3.173 1490,460.57614,-2.2518358,17.291748,34.296406,3.161 1490,171.67351,-3.8238525,17.804962,37.94011,3.154 1490,295.0824,-34.04452,27.992798,72.387695,3.142 1490,603.46027,-27.298714,51.950012,140.33794,3.137 1490,373.07785,-2.8250198,15.694183,34.802025,3.126 1490,314.447,-17.53901,17.259125,40.096416,3.123 1490,223.26642,3.959221,24.954422,43.55061,3.114 1490,-5.0725894,21.662992,17.333164,44.423515,3.088 1490,412.2431,-2.8329306,17.507935,35.02906,3.085 1490,77.23382,249.09755,28.914299,59.019608,3.078 1490,154.48027,262.59512,18.762909,29.344177,3.077 1490,49.539757,190.52747,22.287285,40.132965,3.074 1491,-5.8166223,-17.713896,17.797224,41.97378,7.543 1491,-11.149322,-32.005344,29.85936,69.70844,6.77 1491,-12.811298,475.75784,32.27027,63.944183,6.12 1491,-6.5435486,488.41876,19.399292,44.196045,5.79 1491,287.97086,222.17258,34.22464,75.618256,5.664 1491,627.167,-16.778557,16.855103,45.75961,5.454 1491,613.408,453.79868,39.288513,108.44144,5.329 1491,-73.49624,265.43457,202.24188,462.0807,5.297 1491,277.07745,188.41373,62.068024,121.18814,5.211 1491,626.17865,487.3516,21.656738,45.761322,5.129 1491,585.77795,-97.840256,75.1189,230.57817,5.049 1491,-22.13299,401.399,79.9759,176.4494,5.001 1491,583.178,410.93567,71.573364,177.00531,4.948 1491,610.9807,-48.371643,42.0531,100.86217,4.932 1491,-17.360447,-62.222393,56.15076,141.2552,4.818 1491,489.7032,-178.46965,235.68713,425.13647,4.811 1491,536.49927,311.00143,143.04187,341.36636,4.711 1491,-37.10829,-128.06738,117.16292,274.82062,4.666 1491,3.1940234,-15.716447,16.85418,39.2038,4.627 1491,322.66818,213.88052,34.66336,64.65225,4.438 1491,-71.357994,-188.52579,212.11389,454.86703,4.41 1491,337.57538,215.294,37.45227,65.119995,4.405 1491,493.3188,226.544,238.01984,516.33594,4.37 1491,-9.632162,-6.377575,39.180756,100.57677,4.126 1491,-4.645117,1.982605,15.846961,38.22152,3.95 1491,311.55093,193.0643,62.22345,118.31314,3.928 1491,212.5068,-12.718037,30.95929,68.20331,3.921 1491,403.43195,247.228,17.686707,32.885437,3.86 1491,65.687325,222.16852,43.13656,84.58258,3.839 1491,618.2659,489.16232,21.207886,43.15634,3.838 1491,419.44257,231.94234,18.740051,37.183548,3.835 1491,412.2261,239.84473,17.80484,34.13849,3.821 1491,433.7248,230.71385,19.98346,32.86714,3.781 1491,506.736,-17.38594,17.124847,39.064575,3.754 1491,35.220894,225.92297,34.477364,67.5719,3.738 1491,426.1996,232.0534,20.000916,34.200836,3.738 1491,33.28157,-13.175627,35.16983,63.733925,3.72 1491,352.35736,218.10748,35.36194,63.97293,3.676 1491,501.92078,-33.88784,28.243347,67.75555,3.579 1491,342.8214,175.64255,63.184143,113.38089,3.565 1491,10.389317,-16.924314,17.443272,39.176,3.523 1491,-4.802894,202.04099,16.928558,39.75711,3.513 1491,424.02893,-2.7113075,22.402771,40.06028,3.502 1491,307.63934,222.6018,33.54132,70.770874,3.486 1491,523.78625,-15.614661,16.068848,36.74016,3.472 1491,-5.6715846,233.05812,17.945526,39.706894,3.428 1491,515.1121,-15.972817,16.749146,37.688694,3.416 1491,491.72644,-16.585016,32.604553,60.81962,3.412 1491,44.226154,216.58768,55.873028,112.30151,3.411 1491,-9.343044,105.044945,39.3022,102.64054,3.408 1491,327.40454,181.50586,41.437683,65.67761,3.404 1491,498.3546,-16.167501,17.908447,37.573982,3.395 1491,161.94858,225.39407,33.62259,66.740875,3.348 1491,417.06415,-13.311178,36.432556,63.44895,3.302 1491,619.75757,-17.087967,16.523438,42.54403,3.26 1491,74.26654,213.0931,55.420547,115.536606,3.226 1491,9.356384,-89.95247,74.35825,204.58618,3.22 1491,368.1258,244.58286,21.610413,39.436768,3.218 1491,335.0685,224.33585,25.763672,47.3732,3.208 1491,2.263682,-38.149323,42.272793,96.63626,3.195 1491,482.59485,-16.11991,17.473083,37.99627,3.189 1491,434.93292,-16.223778,33.990875,65.08744,3.177 1491,315.77576,-0.6763191,17.442993,32.3103,3.138 1491,377.72406,246.4351,20.156006,36.423325,3.127 1491,1.7333126,488.74127,20.483704,43.34613,3.101 1491,41.17135,-1.3962555,20.458496,37.666733,3.096 1491,233.2916,-2.9339905,21.312454,52.62665,3.094 1491,313.6416,195.31424,39.14856,67.911224,3.086 1491,86.87071,225.85791,24.524384,44.22876,3.08 1491,546.632,413.02173,83.46478,167.52087,3.077 1491,598.20654,461.5816,38.3136,99.50415,3.061 1492,232.70456,177.95778,53.159515,140.19725,12.741 1492,235.26208,227.678,35.930756,84.20775,6.785 1492,-12.8716955,475.91837,30.994019,64.85886,5.878 1492,-6.4367113,488.19998,18.977108,43.706757,5.707 1492,610.68915,-48.575935,42.330627,99.882706,5.534 1492,-12.587314,-39.766403,41.53011,100.339165,5.528 1492,-5.676132,-18.064522,17.510881,43.024395,5.348 1492,-20.473648,-85.475464,72.35566,194.43048,5.094 1492,-73.372284,265.25424,201.48148,461.7123,5.028 1492,582.93835,411.45514,71.847046,176.7677,5.012 1492,613.28394,454.4584,39.301453,107.74179,5.01 1492,585.9662,-97.886536,74.461914,230.68752,4.994 1492,532.2033,-182.40671,149.5838,422.55,4.991 1492,-22.173586,400.6545,79.94113,176.65262,4.983 1492,627.0404,-17.981833,17.019592,46.453815,4.968 1492,536.2647,309.79498,143.63525,341.56934,4.944 1492,626.367,488.06964,21.451843,45.647034,4.912 1492,-36.689095,-127.84148,117.4728,273.50284,4.781 1492,493.48233,226.64117,237.9526,514.51385,4.539 1492,-71.714645,-189.69142,212.67334,456.61932,4.458 1492,222.76627,213.91925,52.482178,135.95117,4.228 1492,549.07764,202.47797,28.641602,63.369354,4.083 1492,179.03333,226.42723,43.52321,85.281204,3.998 1492,611.7125,233.4075,36.279358,112.691864,3.947 1492,575.71594,218.45392,50.365295,130.94165,3.931 1492,378.7201,211.64847,56.344666,103.34451,3.9 1492,619.89984,-5.289671,18.27362,40.53218,3.875 1492,252.64076,-2.0750065,16.476639,33.965637,3.857 1492,392.22986,214.56308,31.710022,65.62189,3.854 1492,596.339,229.69487,37.533142,110.0674,3.849 1492,59.929344,-4.4199066,32.119164,65.92025,3.767 1492,345.82812,238.1273,60.458862,107.572586,3.651 1492,-4.5225134,202.62546,16.592674,40.6196,3.62 1492,618.6583,490.65332,20.734375,42.061157,3.594 1492,236.24434,-2.586464,16.94252,35.43265,3.57 1492,89.989174,-17.8387,18.332779,39.83544,3.511 1492,82.73776,-16.710947,34.883865,63.88462,3.465 1492,369.23312,228.7872,45.58008,72.59906,3.451 1492,-5.3523326,72.3201,17.819586,44.22451,3.437 1492,-8.782187,228.05482,37.655598,108.28935,3.431 1492,345.26276,-15.787371,18.56836,38.743053,3.425 1492,187.76495,215.4768,55.759033,121.69653,3.354 1492,523.1149,-16.615536,16.179138,39.17083,3.343 1492,315.40152,-15.903692,16.4375,38.17559,3.332 1492,244.56906,-2.5440044,16.506348,35.335472,3.321 1492,531.59235,-16.121422,15.826172,38.897366,3.314 1492,572.6965,-5.0057516,16.46051,34.907665,3.303 1492,214.28499,218.13704,44.300644,97.20372,3.289 1492,82.1257,-16.301275,18.034332,38.763832,3.256 1492,354.8921,-13.231316,34.11258,62.40844,3.252 1492,322.5734,-14.684756,16.802185,36.913982,3.249 1492,157.3311,198.63759,57.46672,118.23802,3.247 1492,73.90357,-16.959068,17.99379,39.82331,3.222 1492,268.56458,-2.679265,16.577179,34.414845,3.216 1492,112.07473,-42.868103,46.82493,93.16189,3.201 1492,606.8088,-35.408894,27.124084,74.497116,3.187 1492,155.226,-7.461158,19.379501,40.029003,3.187 1492,-8.983341,136.64474,38.581554,103.523026,3.164 1492,267.28076,-15.574047,15.796997,36.523563,3.161 1492,361.82245,-1.5129089,20.090515,37.628788,3.147 1492,144.0698,-42.762707,47.054382,94.542336,3.147 1492,260.57767,-2.5290766,16.39685,34.889565,3.141 1492,191.13376,-33.72658,27.238403,68.66801,3.137 1492,539.522,-17.152367,15.902344,39.607723,3.126 1492,190.55748,234.96576,24.059036,49.480774,3.112 1492,73.57575,-4.176855,21.842575,40.816666,3.109 1492,122.80605,-39.33116,60.115074,133.19617,3.107 1492,337.77716,-14.613892,18.109009,36.809357,3.106 1492,69.99818,-32.30123,28.738564,71.603096,3.105 1492,310.77658,-33.312485,27.96106,70.24145,3.096 1492,171.49721,-5.9652033,19.029434,38.64344,3.091 1492,344.59674,-2.1346111,22.000519,38.32065,3.089 1493,137.54468,198.72128,23.085663,39.76622,8.819 1493,-5.689809,-17.86197,17.594715,42.543083,6.98 1493,-13.192356,476.57285,32.434376,63.65262,6.955 1493,-6.592059,488.38983,19.247265,43.975952,6.144 1493,-11.304079,-31.961515,29.697159,71.54814,6.006 1493,360.40704,216.71524,30.151855,59.266907,5.639 1493,152.6879,200.13855,22.95993,36.75049,5.591 1493,627.20154,-17.523281,17.153381,45.504837,5.584 1493,124.86091,198.16817,31.012215,53.63011,5.501 1493,613.5365,454.54385,39.29956,106.766266,5.462 1493,120.82614,195.68369,23.754364,45.76381,5.405 1493,108.344795,193.03085,30.328926,61.113586,5.334 1493,197.18204,191.01462,31.663315,60.923203,5.322 1493,490.76727,-181.28488,234.67792,429.0614,5.238 1493,585.88513,-97.79982,74.42297,230.84256,5.145 1493,140.37907,199.34547,30.597305,54.471756,5.134 1493,610.81824,-47.95339,42.000732,99.20085,5.098 1493,17.991856,197.69937,34.70063,60.41928,5.032 1493,-73.10644,266.55026,200.86423,460.47635,4.999 1493,70.83123,183.6256,31.26841,63.92424,4.985 1493,-22.055857,401.573,79.76729,176.08228,4.954 1493,583.1659,410.25684,71.87598,178.24109,4.879 1493,536.67444,310.2122,142.4768,341.5721,4.823 1493,626.489,489.23355,21.54895,44.315765,4.704 1493,-19.9742,-86.532524,71.35267,194.67514,4.684 1493,161.35254,199.26503,22.554718,38.01465,4.55 1493,207.54457,196.545,23.298416,40.13234,4.514 1493,180.1987,188.65794,32.830475,58.034454,4.508 1493,-37.422615,-127.73664,116.82458,278.92227,4.501 1493,544.2669,269.60715,34.262085,86.86636,4.495 1493,144.14331,190.53598,22.18779,38.866257,4.435 1493,88.633575,192.90363,22.45604,48.872192,4.395 1493,215.24658,205.46336,25.059967,42.421844,4.363 1493,35.4022,198.92874,32.950073,59.951447,4.332 1493,493.72433,226.59872,238.11209,515.41614,4.262 1493,-70.57057,-187.73735,211.40872,454.07318,4.257 1493,3.0871153,-15.66679,16.602272,39.53348,4.166 1493,229.63615,201.65689,30.279953,57.05371,4.143 1493,51.574104,204.30196,32.985252,61.95494,4.088 1493,-9.326757,-20.259672,38.38922,98.94424,4.08 1493,91.80068,197.10182,32.214684,69.75774,4.056 1493,131.08351,188.06795,21.536514,42.826218,4.054 1493,-6.1860538,199.81392,18.353443,41.886307,4.049 1493,346.11047,-16.257395,17.710175,38.78566,3.969 1493,176.76772,195.48668,23.011658,42.29625,3.939 1493,4.849143,199.1121,31.002682,65.685715,3.823 1493,1.8460441,488.5679,20.25885,43.687897,3.762 1493,418.4762,229.40916,30.225891,66.14284,3.627 1493,354.62543,-15.805289,17.597015,37.943996,3.593 1493,1.8806672,-38.999916,43.54486,96.25501,3.549 1493,345.08862,-1.8041,21.061401,36.268246,3.526 1493,540.4966,242.68005,49.71759,135.323,3.457 1494,219.63876,195.45665,19.481705,44.152298,12.091 1494,2.7743518,188.59042,20.759455,44.619736,11.062 1494,226.86069,190.90672,17.618988,40.768097,8.074 1494,-5.66004,-17.77669,17.447294,41.494007,6.868 1494,208.14069,190.34244,26.334656,68.601166,6.815 1494,-13.234706,476.02356,32.417583,63.73065,6.674 1494,-2.8644795,187.58653,17.22011,42.055588,6.475 1494,234.89642,189.94191,16.889587,41.248383,6.392 1494,-11.410203,-31.594753,29.702248,70.00935,6.298 1494,202.33324,192.90532,22.40001,49.73021,6.292 1494,-6.468272,488.27377,19.184204,44.316437,6.111 1494,4.466343,194.37807,27.883945,65.17549,5.806 1494,251.74597,186.68109,17.06192,36.84955,5.764 1494,268.0057,192.92198,16.26175,36.197067,5.755 1494,137.91489,202.58601,21.975357,44.215042,5.749 1494,62.59259,200.33336,26.80999,47.557693,5.663 1494,282.87894,198.29318,17.12387,40.805847,5.644 1494,16.012814,199.0597,22.88937,44.543793,5.459 1494,274.5347,194.00894,16.72815,42.367493,5.348 1494,190.51999,185.78993,27.9776,68.67912,5.298 1494,626.3938,487.67288,21.20398,45.50058,5.249 1494,613.5406,453.05707,39.436707,109.57025,5.198 1494,-3.5541391,175.13004,16.429245,38.191635,5.086 1494,-73.65088,265.79843,201.74625,461.34366,5.083 1494,627.345,-17.10308,16.777283,45.36895,5.073 1494,-17.351858,436.55396,54.76007,139.40717,5.063 1494,35.347378,198.70781,32.835217,54.7202,5.057 1494,150.70264,186.09497,31.901855,63.989685,4.98 1494,83.67745,194.3645,31.151955,56.017548,4.912 1494,583.24347,410.46127,71.54346,177.4849,4.905 1494,-17.536268,-62.410645,56.31488,142.41063,4.879 1494,3.5274494,179.43585,17.497461,35.058533,4.831 1494,24.709902,200.20699,23.838194,39.285965,4.798 1494,585.8882,-101.18211,75.5199,235.00134,4.774 1494,-37.58082,-128.16751,117.16386,283.11197,4.756 1494,-40.687565,366.69458,111.32861,274.3197,4.747 1494,130.45769,197.38406,22.209335,43.526352,4.739 1494,611.2054,-48.891083,41.57489,101.980255,4.737 1494,489.9792,-180.03409,235.32721,423.63284,4.68 1494,3.4941769,-15.648384,16.303411,37.702427,4.671 1494,536.2804,310.94122,142.8526,341.7641,4.59 1494,122.34114,203.95068,21.389694,42.44284,4.584 1494,-70.92203,-188.41776,212.5202,455.97696,4.495 1494,259.40533,188.29625,17.055298,34.7211,4.406 1494,493.22852,227.29321,238.14777,516.3337,4.323 1494,401.68402,192.94426,20.211304,40.14081,4.301 1494,242.79985,185.19731,16.847427,38.604294,4.23 1494,71.8637,194.92592,26.005074,48.159576,4.217 1494,-16.864794,106.83698,53.87538,141.01547,4.16 1494,389.25656,205.24081,30.02472,63.476776,4.111 1494,47.674103,202.6101,26.354683,44.83644,4.111 1494,28.257137,208.26735,33.792614,67.89079,4.084 1494,618.4232,489.528,20.84961,43.035522,4.027 1495,176.90123,212.38036,22.900574,49.525314,10.424 1495,82.681854,213.83142,37.297783,73.62842,8.153 1495,266.84277,216.30646,17.81485,36.887115,7.974 1495,157.68672,208.76688,29.89148,61.341766,7.834 1495,235.45264,207.43964,16.47676,37.254654,7.763 1495,185.02972,219.53394,21.71193,46.71692,7.549 1495,283.47324,211.76451,16.667694,32.797974,6.592 1495,259.50626,212.59691,17.904358,41.582306,6.522 1495,66.055305,214.91797,36.623978,78.5892,6.492 1495,-5.2683105,-18.171309,17.128496,42.110065,6.387 1495,252.02353,211.26402,17.631805,42.03267,6.154 1495,553.4079,251.7259,32.49591,72.30058,6.105 1495,-12.5532675,476.32318,31.58025,64.326355,6.008 1495,-11.027384,-31.989214,29.038422,69.01566,5.872 1495,-6.236353,487.99374,18.985325,45.105255,5.865 1495,218.00452,212.21072,19.103943,42.80594,5.608 1495,613.55054,453.50458,39.23181,107.93555,5.539 1495,142.17613,205.0214,30.282745,69.54175,5.462 1495,254.51111,210.219,28.105804,65.72009,5.377 1495,193.88383,214.38239,20.21669,45.31555,5.372 1495,276.02606,217.18663,18.58197,34.643402,5.371 1495,627.16766,-17.979858,17.272034,46.34721,5.214 1495,610.815,-48.059288,41.87677,99.90744,5.204 1495,-73.256676,265.22125,201.91757,462.68854,5.181 1495,626.0753,487.3553,22.011353,46.25641,5.161 1495,558.3149,188.7351,24.096558,53.23445,5.109 1495,-17.586615,-63.297005,55.498497,144.88223,5.025 1495,-21.777054,402.13568,79.727005,176.06049,5.003 1495,490.33704,-181.7269,235.05292,426.0781,4.983 1495,583.43396,410.62964,71.43164,177.09998,4.902 1495,586.0387,-101.29491,74.97815,236.60364,4.855 1495,168.46579,192.88849,29.482376,59.90364,4.594 1495,202.27121,222.61984,19.801682,43.160736,4.574 1495,536.3961,311.00018,142.58044,342.01947,4.532 1495,243.04054,215.72772,19.218246,44.775208,4.518 1495,-37.56309,-129.35353,117.11702,278.09784,4.471 1495,133.25313,220.7177,30.812897,70.54231,4.41 1495,268.989,215.70572,28.644073,59.45102,4.384 1495,53.05327,221.53372,33.759132,73.01703,4.355 1495,-70.64262,-187.47574,210.90063,453.79214,4.255 1495,493.43686,226.126,237.89566,517.1776,4.217 1495,260.4876,207.90923,14.385834,29.232376,4.172 1495,3.9126058,-15.882216,15.57514,38.595318,4.161 1495,165.66232,219.76103,30.657242,68.62352,4.137 1495,19.726004,231.734,31.62934,67.105515,4.097 1495,401.9548,207.60878,17.574677,38.41017,4.091 1495,148.13062,221.06956,33.21277,68.28551,4.08 1495,412.18903,207.90121,16.199768,35.62448,4.029 1495,394.5013,206.71622,19.065613,40.349014,3.95 1495,617.70557,489.04108,21.970337,43.37317,3.931 1495,353.3783,204.52385,20.778809,39.24083,3.91 1495,126.66557,210.84381,27.394318,68.071045,3.882 1495,535.1919,180.17523,30.173218,69.39139,3.864 1495,602.7533,157.0794,17.380005,37.628754,3.846 1495,-6.5018487,227.23541,19.50087,46.78708,3.791 1496,129.29868,215.36351,23.970062,53.42787,19.638 1496,142.21004,213.42265,29.297989,61.620285,11.118 1496,-4.9384503,-16.595562,16.509697,40.44487,8.4 1496,117.85782,216.01726,29.368668,67.93266,7.54 1496,-13.15784,476.27094,32.275826,64.2395,6.64 1496,196.98459,205.68066,28.460983,62.75412,6.574 1496,-10.892038,-31.398588,29.423834,69.84776,6.486 1496,92.7545,209.68948,30.288437,77.088165,6.475 1496,-6.4350586,488.2276,19.200466,44.789673,5.958 1496,136.69327,221.30626,23.36322,58.05916,5.712 1496,626.3922,487.48044,21.449951,46.291595,5.446 1496,226.32437,219.88736,19.378128,40.144714,5.289 1496,613.3268,452.89044,39.871704,109.18536,5.267 1496,-73.253784,265.19336,201.56326,462.70068,5.215 1496,218.1907,217.98592,20.415192,44.59877,5.163 1496,490.1648,-181.3134,235.49677,427.00552,5.157 1496,177.62657,213.09306,21.479874,52.86165,5.127 1496,627.28516,-17.541317,16.848389,46.29364,5.121 1496,-21.82915,402.01758,79.7285,176.10315,5.011 1496,585.82764,-100.821236,75.02472,235.66873,4.993 1496,-17.686651,-63.140114,55.871635,144.00366,4.953 1496,583.317,410.56934,71.50165,177.13806,4.939 1496,623.04865,-33.767536,26.274841,75.7584,4.925 1496,4.5275474,243.65628,29.363718,67.10498,4.831 1496,418.2934,201.75523,20.992188,47.370926,4.809 1496,234.81729,221.74481,19.000137,37.026337,4.797 1496,182.13971,207.85051,29.291702,64.82463,4.746 1496,76.363304,207.25731,32.023697,74.81392,4.691 1496,377.70203,213.6479,21.948608,40.862244,4.667 1496,536.5177,310.4915,142.57104,342.5494,4.623 1496,250.60677,224.16827,17.746628,31.283447,4.597 1496,390.0392,205.25635,28.454773,63.803894,4.568 1496,603.0642,-56.904007,53.72809,136.45448,4.523 1496,3.7826097,-13.389215,15.180605,35.777256,4.496 1496,147.43011,211.92474,37.658844,80.506195,4.454 1496,-37.375587,-128.40106,116.77188,276.5988,4.44 1496,518.08875,179.85434,29.60608,55.6102,4.434 1496,493.43048,227.17047,237.85132,515.7611,4.307 1496,111.009384,228.83322,29.026169,68.64136,4.28 1496,-3.5888884,3.487259,15.062888,36.669224,4.256 1496,-70.5613,-187.4441,210.69873,453.5429,4.236 1496,326.69113,209.96445,28.579132,64.01828,4.145 1496,369.2557,217.9204,22.263031,41.639145,4.129 1496,594.45325,-46.290512,44.556213,98.300446,4.069 1496,243.98666,225.37277,30.31076,59.45572,4.041 1496,164.39566,211.30756,38.056213,84.77643,4.002 1496,407.14032,196.31812,28.441467,62.301056,3.962 1496,426.6095,197.9741,19.479187,41.931458,3.947 1496,125.99788,225.93163,28.273193,73.66872,3.933 1496,4.594543,-0.1188755,15.286293,33.242065,3.929 1496,17.908197,238.00885,35.098427,61.596313,3.819 1497,93.82477,208.03835,28.27378,57.898422,57.223 1497,113.34407,205.6864,31.523727,67.87488,15.877 1497,78.60308,204.61671,32.026375,70.68535,7.312 1497,-11.205742,-31.961365,29.601715,71.62615,6.412 1497,-5.7395735,-17.824118,17.804798,42.182735,6.259 1497,-6.4697504,488.6112,19.06041,44.17639,5.961 1497,-13.096992,476.82053,32.037273,63.209076,5.824 1497,69.40166,211.65796,30.496216,74.85016,5.541 1497,421.4743,201.03683,29.233643,73.88278,5.302 1497,613.1621,453.6818,40.244934,108.19473,5.285 1497,626.4133,487.9564,21.467468,46.071075,5.238 1497,325.9639,199.08887,30.587341,71.5163,5.199 1497,-73.59155,265.02173,201.89601,463.21057,5.196 1497,98.98016,207.3556,38.071823,78.976974,5.12 1497,-17.121336,-63.225838,55.502,143.3158,5.116 1497,490.1581,-181.88626,235.37888,428.25793,5.091 1497,627.253,-17.823421,16.928894,46.599827,5.088 1497,-17.19233,436.9391,54.86625,137.72205,5.086 1497,583.27734,411.06805,71.64038,176.66156,4.986 1497,585.7275,-101.18275,75.2204,235.99368,4.964 1497,611.059,-48.57745,41.602417,101.843124,4.958 1497,52.89924,213.22383,31.673477,76.53117,4.867 1497,-40.692295,366.68564,111.52054,274.71072,4.765 1497,395.87375,202.94998,30.479645,60.615753,4.762 1497,1.8495,209.75491,26.768946,74.130035,4.701 1497,337.27832,199.13547,31.837158,71.77109,4.678 1497,35.589012,206.1141,33.23896,74.27664,4.597 1497,120.521255,227.25694,22.654083,59.299088,4.595 1497,536.6247,311.13556,142.34393,341.72083,4.555 1497,-5.9355955,216.38765,18.3237,43.379654,4.445 1497,-10.94186,211.98027,28.849361,70.43233,4.444 1497,154.17319,201.67735,20.86319,46.867172,4.417 1497,-37.5491,-128.33751,116.418045,277.47183,4.348 1497,233.4306,218.6417,21.285004,34.356354,4.291 1497,335.79968,203.35979,22.86206,43.429245,4.287 1497,-70.37416,-187.0537,210.97002,454.16925,4.265 1497,493.23468,226.95987,238.27075,516.00903,4.22 1497,11.167974,209.87622,31.956411,75.32245,4.121 1497,157.87305,192.15175,28.19046,58.04326,4.118 1497,2.9146385,-15.602648,16.902637,39.42193,4.075 1497,383.64334,221.69858,22.39444,43.767456,4.068 1497,83.11433,209.01755,41.549362,97.71524,4.053 1497,130.88889,209.267,38.879105,85.93735,4.033 1497,499.32254,94.52716,18.374054,36.754242,3.96 1497,-5.011671,0.29540825,16.873594,42.722168,3.799 1497,401.5689,231.56882,21.675446,40.646423,3.749 1497,-9.901979,-7.6278076,40.041157,102.20528,3.731 1498,33.878437,208.27238,31.46774,66.1711,78.521 1498,76.05497,212.84247,31.65564,63.700684,9.202 1498,6.0086308,202.49162,28.959791,74.31169,8.681 1498,60.916134,217.87733,31.341824,63.055984,7.659 1498,104.15689,200.94757,31.119965,67.19891,6.898 1498,54.74408,216.03055,25.1913,55.34323,6.729 1498,23.59047,206.37114,29.054504,79.38347,6.691 1498,-5.328765,-17.818932,17.34759,42.905216,6.534 1498,-12.891495,476.45923,31.956799,63.55121,6.523 1498,-11.059992,-32.329933,29.501858,72.090904,6.311 1498,626.0482,487.2124,21.995605,46.277832,6.052 1498,-6.4191732,488.25995,19.227123,44.5448,5.962 1498,-17.196606,-63.3801,55.278828,143.14038,5.4 1498,116.328926,199.58153,27.355446,63.51146,5.355 1498,532.36884,-182.84238,148.79413,422.77603,5.205 1498,-73.794754,264.88928,202.25237,463.08337,5.187 1498,613.3763,453.53738,39.767273,108.365265,5.179 1498,627.3086,-17.319086,16.855225,46.081223,5.096 1498,610.9206,-48.140568,41.647522,100.004555,5.084 1498,583.49084,410.9616,71.43683,176.8786,5.051 1498,314.16302,211.05023,21.049866,54.12509,5.049 1498,-21.897457,401.5485,79.66716,176.14499,5.005 1498,585.9282,-101.09357,75.23053,236.36447,4.813 1498,-8.374073,209.03383,37.14982,96.63612,4.639 1498,536.6745,310.82886,142.22333,342.37207,4.523 1498,190.47537,220.02281,31.883926,53.76027,4.462 1498,3.3608127,-15.568258,15.985422,39.30133,4.39 1498,307.692,197.53677,16.000763,31.5634,4.362 1498,94.52141,209.37689,29.747375,63.3378,4.274 1498,306.3071,206.859,21.331299,53.443832,4.251 1498,201.30333,225.06146,20.786087,34.437744,4.246 1498,-7.8438005,180.79712,38.100933,85.93811,4.238 1498,322.04395,213.44489,20.505157,51.689026,4.238 1498,-70.651695,-187.81482,210.9671,453.59503,4.228 1498,16.127222,202.59793,24.027266,57.87024,4.172 1498,492.88458,226.98346,238.49084,516.5989,4.171 1498,411.23358,235.37996,18.650604,35.797623,4.164 1498,-38.264706,-127.897194,116.89693,279.61975,4.109 1498,5.048295,211.0105,39.81949,106.80084,4.026 1498,578.84485,155.99829,32.87799,74.47957,3.978 1498,300.36377,197.74399,15.813965,30.528519,3.968 1498,618.02277,488.92432,21.876099,43.894226,3.965 1498,44.33384,211.82935,29.01847,78.57321,3.954 1498,298.07437,206.50902,21.068756,52.469162,3.95 1498,379.6447,208.54755,31.28061,65.70026,3.943 1499,2.2665799,203.15497,26.513136,75.68713,61.891 1499,11.351883,202.43211,34.34971,80.26729,11.0 1499,77.87804,211.54869,28.614426,59.05812,9.207 1499,23.686962,206.82117,34.227207,79.41113,8.98 1499,174.63121,234.67973,24.33075,42.319687,8.792 1499,101.37099,206.47452,29.531357,65.957184,7.915 1499,-5.4990044,-17.931652,17.401258,41.93156,6.777 1499,-12.90679,476.39346,31.53853,64.07504,6.485 1499,-11.181314,-32.255375,29.68683,71.98827,6.017 1499,627.2662,-17.013294,16.833801,45.409927,5.957 1499,626.1526,487.74445,21.753174,45.91742,5.846 1499,3.3015096,213.69466,36.069004,97.22377,5.814 1499,-6.3759995,488.41174,18.931898,44.454956,5.707 1499,-7.0172825,214.7948,27.130627,79.9039,5.646 1499,118.65422,199.4758,28.993591,70.90042,5.423 1499,605.9099,146.45892,28.913635,65.62569,5.405 1499,62.060947,211.56488,29.486431,62.994446,5.238 1499,490.43024,-181.2826,235.13873,428.83664,5.181 1499,-17.240513,-63.437237,55.76211,143.25003,5.176 1499,-73.77648,265.5937,202.25043,462.25446,5.152 1499,-17.19396,436.75037,54.800446,138.01099,5.133 1499,610.9694,-47.59865,41.58783,98.8625,5.129 1499,586.01294,-98.96703,74.54431,233.02545,5.116 1499,613.5616,452.88327,39.52643,108.94089,5.106 1499,583.3765,410.9595,71.54193,177.09323,5.035 1499,2.2441602,237.44969,19.95374,62.378708,4.845 1499,-40.74383,366.20956,111.4391,275.15775,4.731 1499,42.51438,210.35248,33.66497,69.548584,4.586 1499,536.7168,311.09998,142.00519,341.50696,4.555 1499,-14.485578,223.7771,50.038692,158.28644,4.468 1499,379.3473,220.03232,21.892395,51.350372,4.393 1499,617.8704,489.1733,21.937683,43.948395,4.335 1499,56.599804,215.81024,24.136776,49.041992,4.325 1499,-70.456314,-187.51105,211.17609,454.20648,4.296 1499,493.3821,226.87619,238.14633,516.2379,4.229 1499,387.4214,216.9461,30.014801,67.64429,4.114 1499,-38.501934,-126.84795,116.84215,280.00064,4.074 1500,1.0644042,209.67776,31.38551,85.13342,16.098 1500,-7.851946,223.17886,28.334757,77.5874,7.632 1500,408.24634,228.6198,21.266174,47.01259,6.753 1500,-5.357828,-17.749043,17.17839,42.131905,6.524 1500,114.56707,256.64923,33.315147,63.582275,6.49 1500,-13.168492,475.53995,32.1517,65.15494,6.319 1500,-11.19664,-32.401943,29.528131,71.63335,6.119 1500,122.79973,239.25041,31.730286,68.2,5.823 1500,626.29065,488.53482,21.606384,44.76242,5.649 1500,38.474045,211.078,31.743126,72.46118,5.544 1500,-6.4041905,488.35724,18.968222,44.52368,5.445 1500,610.7228,-47.33866,42.038147,98.16293,5.35 1500,490.78668,-181.56438,234.68878,429.09415,5.284 1500,-73.76067,264.94498,202.35974,463.7545,5.217 1500,0.077735186,159.77995,27.42366,97.16365,5.14 1500,-17.192963,436.55963,54.80046,138.68646,5.139 1500,586.047,-99.62442,74.54047,234.39522,5.115 1500,8.390708,194.20998,33.93223,81.693436,5.111 1500,-17.072855,-63.509922,55.39241,144.33556,5.085 1500,613.5351,453.3173,39.065247,109.03531,5.08 1500,627.2856,-18.293232,17.126282,46.96787,5.059 1500,218.1596,217.81274,18.515472,35.507523,4.983 1500,583.28186,410.29224,71.694885,177.75854,4.918 1500,-41.061142,365.86066,112.03221,275.6125,4.706 1500,302.24008,206.85724,29.533417,65.47528,4.685 1500,536.7028,310.64114,142.18665,341.75803,4.653 1500,618.49756,490.25714,20.451355,41.98584,4.609 1500,-4.954307,213.51102,20.372494,53.38156,4.58 1500,3.8795364,225.4103,37.145508,104.54521,4.575 1500,15.185953,213.67783,35.39666,75.57919,4.455 1500,-4.465767,254.2375,18.065779,52.879135,4.43 1500,316.36664,225.27957,32.6239,67.53732,4.43 1500,329.02805,217.67487,22.580536,50.95526,4.404 1500,-13.84543,227.03242,48.959908,152.88701,4.366 1500,493.6472,227.40106,237.76321,515.68805,4.311 1500,59.67672,215.50392,31.043404,61.18181,4.284 1500,-37.810417,-128.32216,116.814995,278.69022,4.238 1500,-70.6112,-186.89606,211.10327,454.17484,4.22 1500,99.74442,206.21613,29.085457,67.9086,4.082 1500,101.1007,225.06123,42.751045,88.329025,4.029 1500,28.589785,202.20268,33.533623,63.569443,4.018 1500,314.09644,215.18166,20.573914,49.852036,3.969 1500,340.3461,221.888,33.189087,72.88434,3.94 1500,-9.4212265,152.18512,28.928633,80.07283,3.842 1500,52.87068,220.49979,28.173096,69.89703,3.821 1500,412.55133,217.90143,27.343872,58.420654,3.807 1500,9.38319,188.34084,52.87527,113.8853,3.782 1500,493.02686,241.66351,14.816956,27.236664,3.708 1501,149.3524,217.42458,28.691818,59.545822,19.215 1501,8.258545,206.81747,40.85385,116.2861,13.54 1501,-0.091427565,213.08075,29.183266,88.96222,9.608 1501,476.20367,216.70944,30.624512,64.4874,8.694 1501,162.72223,211.07086,31.256256,68.88794,7.225 1501,20.775032,213.41422,38.101265,78.75516,6.489 1501,-5.58722,-17.907051,17.478981,42.159374,6.391 1501,-13.231658,476.05988,32.06642,64.43573,6.344 1501,457.39285,150.12874,19.899445,51.718277,6.022 1501,-9.950317,213.98389,29.634026,73.99057,5.936 1501,4.475639,253.1081,32.59791,85.166504,5.901 1501,283.11185,214.81815,17.04123,38.30568,5.851 1501,-10.87098,-32.27884,29.00378,71.59736,5.75 1501,-6.7176123,488.52118,19.411953,44.58661,5.583 1501,626.2336,487.67938,21.714417,46.25116,5.562 1501,10.384018,212.27545,64.270294,176.7937,5.518 1501,-73.54253,264.89035,201.92725,463.98477,5.356 1501,100.04269,220.15639,29.795082,63.028854,5.284 1501,613.705,453.93448,39.254272,107.8082,5.171 1501,13.249211,207.66942,30.376202,70.05568,5.15 1501,490.43445,-180.6878,235.2461,428.1122,5.149 1501,627.2184,-17.76451,16.93335,46.384098,5.112 1501,-0.7377875,276.53827,30.307074,83.52292,5.052 1501,585.9585,-99.912865,74.58258,235.90479,4.983 1501,610.96185,-47.96326,41.956238,100.448204,4.977 1501,-17.514418,436.6035,55.264687,138.47336,4.863 1501,583.20447,410.41302,71.519775,177.80084,4.863 1501,34.775257,200.27216,40.043766,88.0802,4.852 1501,-17.31949,-62.444534,55.841103,143.67155,4.84 1501,-40.53291,365.10587,111.30383,274.53696,4.796 1501,536.4424,310.3435,142.818,342.34106,4.701 1501,214.05597,204.65018,26.9673,55.611725,4.673 1501,85.06088,220.2227,29.708435,69.31569,4.522 1501,-70.96538,-188.53476,211.94806,456.33884,4.474 1501,-37.86332,-129.8003,117.35697,281.5031,4.412 1501,189.80666,211.14632,29.068542,65.471146,4.373 1501,493.52216,227.00433,237.73608,515.99963,4.364 1501,-10.503504,273.69446,31.025972,71.53644,4.245 1501,122.12127,228.89276,21.026863,48.36786,4.235 1501,283.73157,205.17896,16.99527,32.241516,4.175 1501,136.62906,219.15483,28.475754,62.524887,4.158 1501,275.62183,214.98975,17.400543,39.58258,4.147 1501,22.580074,266.6137,36.754223,74.599884,4.139 1501,436.57864,150.26811,32.411194,79.91823,4.113 1501,-12.28504,217.65967,52.569366,158.42957,4.028 1501,-5.2637777,263.75983,19.555748,46.416046,3.975 1502,58.881348,219.58884,45.314163,96.20163,88.542 1502,104.67247,221.9137,44.320114,91.756836,82.21 1502,269.00742,218.89929,28.27475,58.95575,16.975 1502,284.30148,214.09485,31.134247,63.229797,16.759 1502,80.884766,221.72348,45.94831,93.59512,10.36 1502,-5.4630733,-17.223677,17.423714,41.39239,6.469 1502,-11.380938,-31.510044,29.815947,70.702644,6.016 1502,-12.969245,476.72363,31.745525,63.64447,5.958 1502,627.1262,-16.892248,17.073975,45.41432,5.685 1502,547.34296,204.58878,31.437134,77.382965,5.526 1502,-6.362462,488.5543,19.054142,44.32834,5.489 1502,120.43224,212.00157,52.657845,114.8521,5.421 1502,-73.305145,263.35144,202.5007,465.4071,5.329 1502,109.35311,259.91034,32.201775,70.206696,5.322 1502,610.7203,-47.3434,42.163635,99.29684,5.244 1502,55.576744,242.45488,31.578163,75.02864,5.229 1502,-17.164217,436.86304,54.720642,137.83649,5.161 1502,613.5785,453.6065,39.061646,108.89917,5.012 1502,311.9507,211.07002,27.483246,65.02153,5.008 1502,281.2517,212.93123,23.195953,47.235428,4.957 1502,144.84373,223.95633,44.45987,93.84201,4.932 1502,583.225,411.00958,71.54431,177.00458,4.912 1502,-17.410074,-61.787308,55.453217,143.6345,4.8 1502,237.88446,225.87549,27.457703,60.968384,4.733 1502,536.2908,310.22235,143.5719,342.2707,4.725 1502,490.43915,-180.13959,234.35443,423.59662,4.706 1502,-41.46078,364.5454,112.54343,276.91357,4.672 1502,586.303,-100.81594,75.15198,234.12555,4.666 1502,-70.35234,-186.27905,211.80038,453.55185,4.657 1502,215.40616,228.20743,26.255219,48.540405,4.646 1502,331.19055,206.05542,29.543121,58.758545,4.636 1502,222.05841,228.37189,27.80922,67.079956,4.636 1502,75.4451,244.92032,27.886719,68.68982,4.632 1502,502.28394,210.15468,30.924988,62.438644,4.602 1502,603.18335,210.42265,29.611267,87.581314,4.546 1503,301.81708,231.81197,45.730194,93.45189,95.977 1503,266.2617,231.05809,48.03073,96.32088,88.745 1503,505.96127,214.29607,32.691437,67.455826,12.964 1503,337.68967,227.50708,35.769684,75.22449,8.235 1503,308.86517,270.87238,30.533752,62.160004,7.497 1503,-6.225604,488.19772,18.75116,44.471222,6.793 1503,290.75177,226.2186,39.182312,85.68707,6.716 1503,-12.3231735,477.31018,31.103764,63.431885,6.57 1503,252.8235,238.0824,37.652115,73.8208,6.295 1503,-11.114497,-31.841345,29.235111,70.39695,5.994 1503,-5.832525,-18.020094,17.697538,41.94858,5.992 1503,559.2152,213.1197,23.729553,53.001938,5.805 1503,281.4258,272.09442,31.950592,61.77841,5.681 1503,627.34906,-16.980223,16.754822,44.752224,5.673 1503,323.0766,234.28392,28.310974,59.479477,5.139 1503,623.1596,-34.12985,26.303772,72.97463,5.132 1503,-73.78172,264.2801,202.3046,462.93866,5.051 1503,-17.007088,436.65186,54.68127,137.51355,4.968 1503,626.4602,488.66357,21.504639,45.559875,4.964 1503,-20.346684,-87.34912,72.171844,196.67131,4.959 1503,613.5108,454.2706,38.986023,107.98996,4.956 1503,328.30585,241.0666,35.56372,71.62001,4.876 1503,603.07605,-55.45778,53.442444,139.75432,4.861 1503,-36.449055,-130.8697,116.89206,278.64554,4.86 1503,536.5104,310.35425,143.65881,341.62512,4.833 1503,583.27795,409.92334,71.62158,178.22736,4.821 1503,523.5326,211.49045,31.496033,63.756042,4.819 1503,585.70435,-98.26363,74.758606,234.12686,4.769 1503,245.06226,218.82672,57.367706,115.14807,4.73 1503,-71.37077,-188.38478,212.29242,456.41254,4.663 1503,-40.900726,365.8159,111.62239,275.62234,4.642 1503,491.8775,-179.91669,233.57446,424.82803,4.601 1503,493.65402,227.10327,237.58817,514.2721,4.579 1503,-3.8445487,222.39853,16.189594,38.616425,4.523 1503,537.7175,216.40652,22.988037,51.74597,4.515 1504,510.90854,225.63774,57.028595,127.23268,95.954 1504,558.6826,233.8891,52.047546,116.85724,88.373 1504,288.10464,226.24754,38.741028,71.0587,47.335 1504,-12.726429,477.1943,31.866108,63.262115,6.416 1504,-6.480372,488.653,19.076527,44.003906,6.141 1504,-11.18372,-31.585949,29.515022,70.936005,6.043 1504,594.8561,252.76056,41.683838,119.49872,5.912 1504,-5.8555894,-17.472101,17.6093,41.935753,5.879 1504,526.39514,229.63716,66.01892,147.85448,5.674 1504,535.67236,307.19775,145.09143,343.42493,5.608 1504,582.06067,244.69598,36.93994,80.53119,5.538 1504,582.895,412.2942,72.49432,176.2113,5.386 1504,627.4404,-17.33706,16.718811,45.682297,5.381 1504,613.5427,453.69077,39.271545,107.954865,5.203 1504,-73.44468,265.00873,201.84827,461.80994,5.121 1504,270.84863,229.66162,33.276764,66.77521,5.112 1504,626.2877,487.5519,21.549805,45.21768,5.11 1504,-16.748356,436.90958,54.32431,137.86246,5.094 1504,532.2832,-183.40176,150.1872,428.32498,5.074 1504,532.50214,232.51897,38.81006,94.59715,5.03 1504,622.99976,-33.69758,26.653015,75.36469,5.004 1504,-20.089565,-88.04195,71.93725,197.79854,4.902 1504,494.99548,229.79932,236.54382,511.95282,4.868 1504,-36.159283,-131.27307,116.943085,278.90674,4.765 1504,-40.685844,366.03296,111.422935,275.1565,4.762 1504,570.4,288.00085,34.155396,78.20975,4.747 1504,586.44696,-99.58824,73.98633,232.66562,4.726 1504,569.2474,228.85925,34.14734,73.83435,4.697 1504,-71.881584,-189.2116,213.19403,456.4157,4.653 1504,558.02423,218.54497,34.3031,69.008865,4.609 1504,603.19165,-57.407467,53.60327,136.4751,4.578 1504,589.87683,209.95654,49.416748,122.58246,4.528 1505,233.66866,227.89908,35.704575,75.77573,45.501 1505,16.584288,216.03539,35.279007,71.061844,13.865 1505,224.30122,226.6382,31.087143,67.64494,8.933 1505,238.54799,229.92084,23.985245,48.565247,6.511 1505,-12.766417,476.51044,31.565573,63.735474,6.483 1505,-5.876519,-16.19973,17.795908,41.460426,6.425 1505,-11.100641,-31.615814,29.801825,71.46963,6.29 1505,-6.4557467,488.0959,18.946274,44.95587,6.227 1505,490.68784,-180.7014,234.30435,429.48654,5.312 1505,613.4569,453.8792,39.239014,108.24762,5.276 1505,627.5185,-17.239626,16.807983,45.347187,5.188 1505,-73.50755,264.43732,201.77278,462.88483,5.16 1505,585.78687,-99.12267,74.541626,233.2497,5.151 1505,626.1968,487.33966,21.812317,46.22931,5.063 1505,-17.131346,435.7424,54.689827,138.36136,5.03 1505,583.1955,411.19254,71.70331,176.9501,4.933 1505,185.18637,-5.147484,21.703888,41.47379,4.932 1505,611.17163,-48.85431,41.54724,102.28276,4.877 1505,-17.216671,-63.594463,55.590652,146.86148,4.781 1505,-40.66553,366.63724,111.35916,274.97556,4.765 1505,536.7294,310.0385,142.30493,342.63007,4.676 1505,5.786663,222.9758,38.978428,95.74307,4.67 1505,180.26926,-16.453026,32.25348,64.45184,4.587 1505,202.51544,-3.8354902,19.944656,37.887592,4.585 1505,-36.907486,-129.91571,117.496666,282.86688,4.465 1505,2.6068425,-15.25219,17.143744,39.02609,4.454 1505,493.26215,226.30344,238.27533,516.59644,4.3 1505,9.633026,184.1242,55.499817,116.10333,4.213 1505,28.674688,219.09746,27.166521,47.88765,4.204 1505,-12.21446,198.804,30.489597,68.75087,4.124 1505,193.9106,-6.01412,20.90332,40.962387,4.061 1505,-70.84955,-188.30173,211.53413,455.1749,4.022 1505,228.6464,-15.577219,30.949219,61.43847,3.889 1505,-5.809541,204.15982,18.16689,40.67746,3.879 1505,232.87979,227.68192,21.609192,39.30081,3.763 1505,1.0578346,200.85887,29.56867,71.94771,3.762 1505,247.65831,220.30942,33.460434,60.60086,3.752 1505,247.88206,228.04744,20.01033,38.916855,3.736 1505,198.27263,-31.881989,28.374466,69.48507,3.731 1505,256.08734,230.05609,20.5141,39.758972,3.693 1505,-5.276331,188.07372,17.881618,40.304337,3.683 1505,-6.3372765,226.21289,18.194748,41.519226,3.656 1505,177.98306,-15.995745,18.028748,39.877617,3.652 1505,-5.150035,155.6221,17.298843,39.87358,3.643 1505,22.670773,241.86504,27.967243,62.25499,3.626 1505,618.0382,489.1655,21.578735,43.56668,3.624 1505,257.09134,238.05006,42.924408,85.72664,3.621 1505,235.3486,3.6342068,19.288925,37.47455,3.615 1505,211.22107,-14.951392,16.82405,37.267338,3.588 1505,-5.543475,2.013134,18.380665,42.926514,3.587 1505,461.10175,8.085793,15.54248,32.635426,3.572 1505,313.09787,246.6423,22.785278,40.153076,3.57 1505,-8.450831,228.11307,38.84751,97.477844,3.529 1505,219.60675,-1.9680691,18.351608,34.96466,3.514 1505,-9.724333,-5.0974503,39.873703,102.73622,3.478 1505,-5.361638,170.63441,17.857044,41.993027,3.473 1505,-5.947365,91.31053,18.23124,40.62851,3.454 1505,612.8524,299.80066,36.752808,108.121155,3.442 1505,-5.779022,245.28719,18.041996,44.71306,3.44 1505,-11.401195,171.72322,32.215748,70.72197,3.433 1505,468.96973,7.3496437,15.892578,32.96086,3.406 1505,620.0009,-3.7968178,17.514343,38.86167,3.403 1505,218.92572,-15.224729,16.710434,37.17423,3.382 1506,389.33557,220.79617,36.496796,83.35007,88.407 1506,172.54509,203.90347,34.375748,70.63565,77.186 1506,184.13467,227.72343,22.626251,49.67064,7.103 1506,171.20435,220.33058,23.904175,49.487564,6.602 1506,-12.941151,476.48578,31.974613,63.37628,6.526 1506,-6.4373016,488.33,19.065924,44.394135,6.368 1506,-10.961725,-32.212063,29.689335,72.88778,6.087 1506,-5.829768,-17.289026,17.838982,42.56319,5.962 1506,160.43854,197.85892,34.057938,68.14163,5.831 1506,627.56946,-17.010399,16.564575,44.858162,5.325 1506,626.3103,488.3264,21.615417,45.11905,5.269 1506,490.83966,-181.18115,235.02063,429.2987,5.255 1506,613.4052,454.15402,39.634033,107.380646,5.202 1506,-73.358986,265.5581,201.48541,461.89038,5.149 1506,585.6864,-98.817474,74.73871,232.56483,5.056 1506,-17.09224,-62.748936,55.960922,144.38258,5.046 1506,-22.000616,401.54547,79.78639,175.93976,4.982 1506,583.0221,411.16275,71.82385,176.93008,4.919 1506,536.275,310.3149,143.57288,341.3633,4.867 1506,189.09586,206.73068,25.282944,51.33383,4.81 1506,610.9818,-48.543316,41.898315,100.77927,4.724 1506,92.27232,185.18152,34.003876,67.00888,4.71 1506,418.90683,232.91989,41.124725,95.51282,4.61 1506,493.50967,227.77985,237.71945,513.52136,4.471 1506,-5.4528375,1.7774906,18.319412,42.37549,4.384 1506,-70.16357,-188.56363,212.0586,457.71765,4.374 1506,-37.42917,-128.89667,117.32075,285.04514,4.339 1506,11.704793,-15.657539,56.929104,130.25746,4.304 1506,618.0646,490.41122,21.57257,42.07364,4.236 1506,195.34393,192.80888,33.584305,65.05647,4.1 1506,375.72113,215.31136,30.536377,63.958084,4.023 1506,406.4325,219.87405,23.031433,43.784912,4.018 1506,97.799065,155.33948,33.041985,64.9568,4.012 1506,2.731731,-15.662528,16.905266,40.26881,3.983 1506,392.89883,219.00528,22.199005,37.4899,3.98 1506,397.29245,221.7233,25.48523,47.129486,3.977 1506,356.63776,224.30954,39.376617,87.09714,3.959 1506,178.94806,238.51604,19.385132,41.401993,3.943 1506,107.960815,191.5566,32.914825,60.03073,3.803 1506,374.10815,-33.413,28.463013,73.71941,3.785 1506,389.43335,-34.34526,28.576538,70.28328,3.77 1506,171.13739,240.68536,18.87474,38.673645,3.739 1506,-9.170824,-4.6192017,39.95745,100.60256,3.654 1506,190.95233,209.63577,43.433197,82.59805,3.641 1506,382.10873,217.44159,53.891968,137.94165,3.618 1506,82.16844,166.38141,34.02526,75.84143,3.613 1507,333.83057,220.72821,46.212128,93.44629,96.717 1507,88.59717,201.72255,37.07846,73.72746,61.566 1507,79.632,219.73175,30.385696,61.701416,8.608 1507,-5.0355763,-17.216776,17.092867,42.23523,7.125 1507,-12.979402,476.72632,31.948513,63.555542,6.467 1507,-10.523194,-32.80598,29.040585,71.08456,6.245 1507,-6.4763556,488.4018,19.26651,44.39392,6.229 1507,71.3573,191.22557,31.270103,69.6465,5.92 1507,101.741486,228.81117,23.823914,48.59749,5.818 1507,100.515396,192.23434,27.049942,53.099686,5.552 1507,627.2934,-16.632408,16.592346,45.023117,5.455 1507,108.59216,204.15509,26.66481,53.633667,5.401 1507,491.5556,-182.32932,234.34888,430.28757,5.324 1507,-73.65114,265.2232,201.8422,461.45233,5.165 1507,585.5739,-101.07845,74.420654,240.57913,5.16 1507,-17.179653,436.19394,54.69262,138.63406,5.064 1507,67.48996,178.77585,53.64612,100.127594,5.061 1507,60.169914,180.55655,32.141884,71.0961,5.015 1507,613.28,454.35428,39.472717,108.088776,4.971 1507,623.0602,-33.875473,26.145447,75.31853,4.96 1507,582.9913,411.26862,71.826355,176.69714,4.94 1507,-17.42229,-61.863503,56.27532,143.0308,4.901 1507,536.2008,309.95688,143.46057,342.7382,4.871 1507,626.3167,488.56192,21.51593,45.209137,4.861 1507,-40.513344,366.82504,111.05945,274.51334,4.708 1507,55.119385,155.28168,35.54634,67.06038,4.648 1507,82.56916,246.1227,21.108757,44.238693,4.63 1507,-70.646965,-189.52043,213.21973,458.0183,4.626 1507,360.53043,214.66188,35.566803,58.082718,4.589 1507,493.30518,227.0773,238.3117,514.9485,4.491 1507,602.7516,-56.265026,53.791992,141.39355,4.437 1507,360.11874,215.68996,22.512848,40.140152,4.311 1507,3.8313878,-14.75797,15.635818,38.092518,4.259 1507,507.482,199.08702,29.228271,69.07396,4.176 1507,-38.37493,-127.43656,117.83587,286.06195,4.156 1507,185.81366,182.77742,31.58519,61.69255,4.077 1507,367.0144,221.19165,44.011536,98.52069,4.054 1507,356.2574,-16.509325,33.115173,65.54489,4.007 1508,22.17398,202.67224,61.483383,132.30719,36.947 1508,-5.9308243,-16.989038,17.535381,41.415745,8.923 1508,38.675392,219.93521,39.39785,87.84375,7.668 1508,28.827644,254.87935,32.14599,72.32774,6.986 1508,-11.6529,-32.024303,29.67978,71.46278,6.332 1508,-6.5491714,488.54666,19.399632,44.573395,6.157 1508,-12.966196,477.2104,32.064648,63.083374,5.995 1508,-73.56423,263.46216,202.67471,464.27844,5.407 1508,626.82214,488.97623,20.65979,43.929413,5.293 1508,491.0583,-180.45575,234.3241,429.44962,5.232 1508,585.65137,-97.79233,74.786865,231.68524,5.136 1508,613.46204,454.4079,38.874878,107.97363,5.07 1508,627.40796,-16.981056,16.932922,45.647766,5.016 1508,2.585518,-14.307968,17.16607,37.41404,4.937 1508,-21.800247,402.05737,79.5846,175.60986,4.933 1508,-20.686188,-86.282585,72.493454,194.9986,4.852 1508,536.4622,310.06427,142.92139,341.29822,4.839 1508,583.0459,411.07217,71.80383,177.24496,4.835 1508,623.10803,-33.755295,26.39972,75.83801,4.827 1508,-37.598465,-126.53151,118.290405,272.8476,4.484 1508,493.3468,226.02905,238.34155,515.57104,4.462 1508,603.2278,-56.516945,53.602905,138.15837,4.444 1508,-71.50521,-189.8085,212.31769,457.26962,4.302 1508,51.974655,211.30568,38.300804,73.068954,4.233 1508,-10.065746,-17.218388,39.186333,97.17842,4.13 1508,170.2645,-18.613794,17.715378,41.100452,4.08 1508,162.28468,-18.181206,18.186981,40.363556,3.889 1508,147.39551,-19.29366,34.078934,62.957737,3.864 1508,11.774071,-14.393768,57.170372,130.33418,3.85 1508,290.71423,229.55647,37.76413,68.28679,3.837 1508,40.509346,256.1324,25.863861,56.57727,3.815 1508,-8.061214,17.35448,37.63738,110.19577,3.803 1508,13.029882,227.55063,56.34426,151.63293,3.719 1508,441.94168,184.08049,32.998383,80.27489,3.69 1508,491.32874,1.6924973,19.836853,45.096375,3.685 1508,619.0678,491.47083,20.004883,40.5177,3.679 1508,296.5916,182.91301,58.64322,122.86366,3.674 1508,594.5138,-46.418247,44.551575,99.824745,3.635 1508,428.76495,153.96521,33.80121,87.38989,3.635 1508,465.17215,7.3258934,32.80945,72.834885,3.613 1508,-6.258991,1.144722,18.819864,41.62117,3.559 1508,361.9243,275.0141,34.526825,56.14987,3.554 1508,268.30127,-0.24686813,17.4021,33.671875,3.55 1508,28.233232,207.09082,39.76883,78.05319,3.517 1508,275.82016,-0.8623142,17.231812,35.31655,3.503 1508,-10.193824,203.6438,40.341854,97.84607,3.497 1508,314.96426,183.34291,29.99878,70.300995,3.43 1508,51.89794,199.81445,59.867348,135.64911,3.419 1508,-5.230523,262.21646,16.807709,42.097076,3.41 1508,498.89554,0.91962814,19.717255,44.172752,3.4 1508,165.99487,-32.57152,27.975555,68.2183,3.368 1508,312.94046,215.65125,31.539978,72.56174,3.337 1508,252.52533,-1.8148918,17.227295,33.939323,3.335 1508,154.02254,-4.982875,21.592926,38.123257,3.317 1508,6.1220026,224.45737,43.20868,104.78421,3.315 1508,284.1246,-2.1190271,17.135223,35.732166,3.309 1508,444.4119,-2.8496017,18.168304,34.895863,3.291 1508,-5.5521655,180.12283,64.25097,177.58316,3.285 1508,620.2522,-2.761364,17.071655,38.8963,3.275 1508,396.71942,-2.3164988,16.413757,34.463154,3.255 1508,428.48203,-1.6213255,16.84436,32.253315,3.251 1508,1.8211687,489.20636,20.542332,44.48712,3.245 1508,459.6765,-10.178963,31.397736,64.92954,3.237 1508,178.99031,-16.951391,17.14299,38.724083,3.229 1508,412.7524,-1.0855446,16.0737,32.513454,3.213 1509,-5.7764015,-17.243923,17.558582,41.725994,7.376 1509,-6.054111,487.9743,18.52444,43.82245,6.834 1509,-12.428956,475.77487,31.01419,64.027985,6.467 1509,-11.138673,-31.57094,29.339695,71.08365,6.263 1509,627.1456,-17.39291,17.037231,45.87914,5.437 1509,613.1305,453.8104,39.656616,108.22415,5.261 1509,-20.300177,-87.2129,72.01053,196.07568,5.127 1509,490.528,-180.2435,234.49792,428.4203,5.078 1509,165.5238,-1.7173252,30.959503,61.99742,4.955 1509,585.97534,-98.39482,74.471375,232.49652,4.95 1509,583.05975,411.30164,71.776306,176.78833,4.938 1509,186.1954,-2.8697376,19.979233,37.91535,4.935 1509,-36.261654,-129.99295,116.45943,277.57462,4.926 1509,-71.761475,-190.2694,213.08443,457.5782,4.919 1509,536.5834,309.89227,142.7594,342.15985,4.847 1509,610.8978,-47.921112,41.998596,99.554016,4.825 1509,-22.36244,399.87418,80.242775,177.15659,4.799 1509,-74.193565,266.16113,202.38531,461.5951,4.772 1509,626.19916,487.67413,21.677673,45.853394,4.758 1509,493.4353,227.36331,238.20654,515.1847,4.411 1509,195.00555,-3.8639202,18.644958,37.830162,4.399 1509,3.3181477,-14.759078,16.138802,37.666267,4.31 1509,203.94089,-3.4615593,18.052444,35.837532,4.254 1509,-5.052173,2.4686546,16.60618,39.723312,4.12 1509,-9.865053,-20.001808,38.796635,98.54782,3.942 1509,170.02869,-2.3611374,20.653809,38.21751,3.841 1509,619.56384,-3.5638733,18.005676,39.294003,3.807 1509,100.168304,-0.898983,17.142906,34.98835,3.691 1509,2.1832733,488.7219,19.842964,42.45096,3.662 1509,92.40981,-1.662632,17.134941,34.75205,3.618 1509,618.17944,489.24332,21.230957,43.279205,3.594 1509,1.9215155,-40.4042,43.158913,99.74325,3.59 1509,212.43304,-3.086999,16.998688,35.225464,3.586 1509,179.73573,-2.7728138,30.153107,59.7099,3.584 1509,166.4412,-33.47592,28.65622,72.96689,3.58 1509,597.74646,248.33313,28.77417,75.51007,3.557 1509,9.013702,-91.91151,74.590965,207.05598,3.547 1509,348.39526,-1.6350908,16.908875,33.812775,3.536 1509,306.48907,241.99431,20.502258,37.477127,3.525 1509,2.8222466,-22.323536,49.87139,137.05833,3.485 1509,-5.5807295,470.53064,16.658142,41.700928,3.449 1509,298.8452,242.26314,19.891968,35.389847,3.422 1509,10.642333,-15.685531,16.586617,37.977345,3.419 1509,299.9367,4.078068,17.75586,39.398903,3.401 1509,108.25443,-0.7487488,17.060112,34.228394,3.4 1509,363.08398,260.01633,34.58963,57.34079,3.395 1509,332.63135,-3.3080826,16.97647,36.042965,3.377 1509,450.45367,224.92908,20.591003,47.18445,3.362 1509,492.8496,-0.8006649,16.2052,31.82781,3.354 1509,177.94766,-2.8805084,20.61267,38.6762,3.331 1509,500.75806,282.0095,31.44043,57.703217,3.303 1509,565.1008,-0.76622105,15.358948,32.024292,3.27 1509,442.34467,228.11438,20.37918,42.388855,3.269 1509,355.33005,4.393526,17.670685,36.957893,3.242 1509,308.60568,-2.9622622,16.283386,36.016518,3.233 1509,162.95227,-15.694597,16.908447,37.387596,3.226 1509,613.3455,192.4499,36.00171,104.142075,3.223 1509,557.022,-0.37689686,15.322876,30.894146,3.219 1509,508.3916,-0.48198414,16.519226,31.707336,3.217 1509,340.58072,-2.8419828,16.826782,35.420414,3.213 1509,532.7628,282.70502,29.10907,61.778625,3.204 1509,572.92804,-1.1798944,15.795776,31.745605,3.187 1509,291.21524,242.80542,19.418854,34.318176,3.185 1509,597.68555,200.20445,38.52887,94.99007,3.181 1509,-4.753996,95.370636,17.511189,45.20636,3.177 1509,507.1344,-14.261208,16.022095,34.78089,3.172 1509,524.67596,-0.6454077,16.471008,31.40747,3.168 1509,363.77365,4.1814804,17.057373,36.55064,3.166 1509,591.21436,275.60336,27.713257,63.603943,3.164 1509,532.1414,-136.8555,115.186584,274.30624,3.164 1509,10.597389,281.88953,57.095856,128.5958,3.15 1509,220.37544,-3.0458088,16.80214,34.81916,3.149 1509,574.0722,248.60414,30.764038,64.03029,3.14 1509,613.6688,109.2984,36.299377,114.086334,3.135 1509,500.61734,-0.61700916,16.03769,32.506157,3.134 1509,186.51831,-15.817324,16.971893,38.755486,3.127 1509,266.61926,240.84541,19.569885,37.03035,3.127 1509,315.91394,3.8887177,17.9057,38.55193,3.118 1509,267.62943,-2.5056849,18.007904,36.984818,3.107 1509,491.75104,-14.618128,15.520508,35.019527,3.098 1509,499.36795,-13.498198,15.891876,34.19202,3.086 1509,612.8197,296.62268,37.086792,115.39938,3.075 1509,107.18884,-14.304455,15.898689,36.22134,3.07 1509,235.24918,-38.87475,58.431946,135.88422,3.068 1509,80.25986,-41.11456,46.59616,94.16724,3.064 1509,171.06476,-16.14179,16.84613,38.211243,3.057 1509,532.8646,-0.6422701,16.03778,31.498554,3.055 1509,540.86945,-0.22372437,15.78186,30.2583,3.054 1509,325.8226,-16.17789,29.448364,62.44278,3.052 1509,276.03754,-2.1457157,17.112946,36.728035,3.046 1509,267.00992,-37.627983,58.374725,135.00658,3.039 1509,19.038153,4.409586,19.24298,39.47155,3.022 1509,315.40494,-16.477333,15.972748,38.275063,3.015 1509,539.7001,-13.855497,15.026245,34.56327,3.014 1509,94.66638,-32.796158,27.455368,69.631966,3.014 1509,91.220474,-15.136671,16.140228,36.60444,3.01 1509,59.8032,2.8986511,18.308846,40.31871,2.999 1509,257.26077,333.50894,34.937225,61.976868,2.999 1509,523.4006,-14.533833,15.654236,35.104633,2.995 1509,284.2724,-2.092887,16.627289,35.820194,2.989 1509,546.5065,413.14462,83.48999,167.01242,2.989 1509,148.08061,-15.7442,32.718018,66.849,2.989 1509,267.11368,-15.775421,16.057037,37.911728,2.983 1509,515.2984,-13.813322,16.023682,34.45031,2.968 1509,-4.895972,25.068676,16.109724,41.496113,2.96 1509,-8.403093,166.00966,38.34899,105.78844,2.959 1509,324.78134,-3.6558723,16.660858,37.175335,2.955 1509,27.710505,3.490654,18.949583,39.7535,2.944 1509,566.6367,273.75082,28.040894,65.534515,2.94 1509,-10.5334015,73.2906,29.067493,72.651505,2.94 1509,597.8551,461.47357,38.656006,99.15735,2.936 1509,-5.060383,217.16475,16.094606,39.074265,2.935 1509,-9.701606,228.95987,38.875893,105.276245,2.931 1509,615.636,246.17517,24.007935,78.52429,2.931 1510,570.2146,234.6913,42.182495,89.753525,61.014 1510,617.2538,238.0062,20.358643,44.314087,16.561 1510,-5.6284857,-17.563883,17.32933,41.746075,6.708 1510,627.34155,-17.23333,17.279968,45.10912,6.563 1510,623.0974,-34.222034,26.398193,75.45126,6.545 1510,-5.926775,489.17352,17.977264,42.1532,6.294 1510,592.8639,237.23102,40.26465,98.77356,6.214 1510,-12.250295,476.5522,30.386143,63.69574,5.899 1510,357.2423,279.3509,31.346893,63.2547,5.818 1510,-11.037733,-31.934044,29.038889,70.122536,5.379 1510,612.2474,236.36261,35.773193,104.02191,5.225 1510,626.02167,487.24698,21.744995,46.263763,5.225 1510,536.59753,309.73602,143.0567,339.13043,5.142 1510,602.87744,-56.180458,53.69519,133.60817,5.129 1510,532.3263,-181.95584,149.41443,424.18054,5.111 1510,582.9863,411.37177,71.98041,176.95453,5.069 1510,-73.29054,265.0923,201.85252,462.7329,5.062 1510,582.3961,240.80849,24.871399,64.22774,5.043 1510,613.1918,454.6425,39.924133,106.970795,5.019 1510,-20.338188,-87.20454,72.24437,196.75879,4.978 1510,-21.903818,401.28094,79.795975,176.13733,4.91 1510,-36.34532,-130.99164,116.93555,277.80685,4.803 1510,-72.06196,-189.68391,213.48685,456.96313,4.794 1510,586.4138,-98.22325,73.44849,231.14044,4.721 1510,347.45844,220.20944,54.351837,131.94547,4.645 1510,379.50287,279.59576,31.641174,56.230927,4.588 1510,493.23593,228.65305,238.89389,512.71423,4.559 1510,624.93396,236.17026,19.062317,43.822083,4.426 1510,619.2283,-16.960188,17.540894,41.938114,4.417 1510,594.07043,-46.647423,44.182007,97.421135,4.32 1510,570.912,269.1995,34.237488,67.64676,4.213 1510,171.66003,4.8507614,18.471252,35.38615,4.201 1510,618.14136,488.66916,21.238647,43.870636,4.108 1510,612.55865,202.0908,35.643127,96.21294,4.016 1510,332.63226,187.79037,55.14621,152.02258,3.977 1510,559.0402,250.73755,37.974,73.78131,3.874 1510,386.2556,262.02966,32.847626,65.11334,3.867 1510,343.6302,276.928,25.468811,55.103058,3.855 1510,488.4299,274.84036,21.90921,44.58966,3.846 1510,614.06525,-20.540554,27.972412,71.527306,3.829 1510,209.50565,236.25938,37.285004,58.155563,3.772 1510,-5.140872,1.4654217,16.701183,39.690865,3.75 1510,602.37744,251.87949,51.74298,142.19305,3.721 1510,3.8681002,-15.399004,15.620185,38.05351,3.689 1510,-9.936775,-20.586319,38.752533,99.74801,3.68 1510,-5.124066,138.57428,16.645088,40.75241,3.65 1510,562.23816,206.12231,63.495544,148.052,3.634 1510,601.9096,234.98647,21.93573,42.584457,3.606 1510,2.3211212,490.5625,19.097267,39.866943,3.58 1510,-8.13657,198.39778,37.650608,105.43373,3.552 1511,532.3144,248.40247,45.711365,105.590576,96.989 1511,379.36246,249.37196,48.49582,108.738144,55.12 1511,448.8391,247.28021,23.071442,50.89673,42.441 1511,464.8014,248.69366,24.25232,47.354675,15.129 1511,-5.5996284,-17.58518,17.336044,41.243748,6.005 1511,-12.7724695,476.3657,31.77563,63.72104,5.95 1511,627.2338,-17.42722,17.13861,45.36528,5.705 1511,-11.133713,-31.996046,29.461514,70.386,5.703 1511,-6.491999,488.40817,19.377213,44.707306,5.646 1511,565.4647,243.35574,38.181763,86.77261,5.56 1511,536.1154,309.04126,144.30707,338.8595,5.396 1511,583.06635,412.402,72.54828,176.89847,5.392 1511,610.55194,-46.640907,41.881836,98.105125,5.203 1511,613.37,454.20856,39.498413,107.49811,5.177 1511,587.03394,275.273,32.808167,66.84372,5.121 1511,626.4147,488.51178,21.46521,45.043396,5.031 1511,380.99612,293.67477,33.629456,74.9603,5.003 1511,-22.687096,399.35327,80.56107,177.62518,5.002 1511,-17.634624,-62.035645,55.894535,144.89223,4.906 1511,581.9465,239.80765,36.238403,88.23712,4.884 1511,-36.297764,-130.7728,117.112854,279.7318,4.812 1511,-73.6354,266.6576,201.446,460.18213,4.804 1511,494.92102,230.96275,237.09448,511.82513,4.8 1511,612.165,249.46768,35.19232,107.89676,4.662 1511,532.3313,-183.09874,149.5033,426.22006,4.604 1511,-71.78671,-188.95055,213.18936,455.88715,4.568 1511,533.70557,247.31631,30.17743,72.17145,4.416 1511,599.06036,233.13574,33.07611,95.06848,4.406 1511,586.0517,-98.34944,74.997986,232.56572,4.267 1511,420.24457,250.01294,30.125977,71.04254,4.192 1511,92.53906,-1.2591124,16.691124,32.909046,4.157 1511,185.35187,301.27866,33.42247,69.065735,4.149 1511,613.79425,215.02792,33.07379,100.28989,4.074 1511,475.6033,245.04134,28.450287,55.375412,4.062 1511,408.01202,243.0712,55.199097,130.55511,3.98 1512,419.06683,237.54219,46.00241,115.26128,97.686 1512,308.1141,241.63045,24.200287,47.58806,18.413 1512,331.60275,243.10559,26.449432,43.9942,16.49 1512,174.30916,243.65216,68.11992,177.69348,9.202 1512,-5.7871304,-18.010017,17.527708,42.381435,6.183 1512,588.29504,218.68414,31.03711,67.94083,6.095 1512,314.24225,233.36292,33.94232,55.350464,6.086 1512,-13.239496,476.9388,32.236626,63.165253,6.075 1512,-10.976582,-31.756876,29.281672,71.64498,5.865 1512,-6.6262603,488.78113,19.45173,43.92578,5.84 1512,536.53375,309.46545,144.06635,340.7975,5.318 1512,613.36176,453.67725,39.607605,108.26654,5.301 1512,-22.996193,398.37598,80.58647,178.82947,5.238 1512,610.5487,-46.46465,42.08893,97.41393,5.22 1512,627.2764,-17.33455,17.07544,44.843174,5.199 1512,449.11633,245.3247,42.744507,107.06262,5.177 1512,475.42264,272.8848,32.22351,64.59012,5.092 1512,583.0932,411.15067,72.126526,177.54196,5.068 1512,626.2411,488.28763,21.606934,45.36032,5.056 1512,494.4018,229.99884,237.23041,510.45276,4.905 1512,-17.495434,-61.88693,56.13554,143.77663,4.862 1512,-73.36782,265.48053,201.17468,460.70148,4.83 1512,395.00348,235.5022,17.77185,35.97534,4.797 1512,-36.555973,-129.79713,117.01123,278.84836,4.728 1512,-6.743305,344.74976,19.794277,42.581573,4.55 1512,493.25525,230.35541,28.831177,59.525635,4.527 1512,-71.55794,-189.09953,212.84998,456.57312,4.522 1512,288.1527,250.59302,22.62143,40.722595,4.487 1512,532.4371,-184.71388,148.6391,428.16895,4.448 1512,401.9818,236.77515,17.377289,35.29019,4.402 1512,282.2633,259.1154,21.0932,38.07132,4.366 1512,460.0737,233.19221,17.402863,37.46846,4.31 1512,596.9522,230.32556,38.500122,108.33551,4.293 1512,423.44855,241.15149,29.431091,70.50537,4.292 1512,586.4856,-99.499886,74.80707,233.69012,4.268 1512,437.9281,250.34232,34.640533,77.779816,4.17 1512,460.782,233.38908,51.755035,119.91203,4.075 1512,389.20377,238.43475,17.739899,36.75891,4.06 1512,322.81427,235.84589,38.954468,66.945984,4.037 1512,3.1754656,-15.740561,16.308846,39.201126,4.011 1512,292.27307,228.38995,42.88263,63.253357,3.99 1512,499.2279,237.50548,34.042725,68.95058,3.979 1512,-5.071571,298.974,16.40863,38.438293,3.965 1512,165.63821,321.14447,34.022003,84.18768,3.92 1512,612.6199,232.81453,37.418213,114.29555,3.911 1512,180.09769,241.78978,42.210724,123.92534,3.878 1512,202.12654,237.60426,68.18773,161.708,3.871 1512,-5.7355447,314.92862,16.622072,35.229034,3.862 1513,350.81293,234.75269,44.46219,107.99744,97.522 1513,235.38855,228.40216,29.734161,61.710693,78.575 1513,204.02554,222.62906,34.584076,61.613464,78.143 1513,190.91454,224.81216,34.42073,58.38437,7.697 1513,-6.345686,488.60806,18.827938,43.97879,6.571 1513,-5.224979,-16.760454,16.8049,40.21348,6.321 1513,-12.741428,475.79666,31.481121,64.01303,6.29 1513,433.96014,227.99225,20.827911,42.75476,6.248 1513,378.09235,233.9591,33.413055,73.76672,6.113 1513,473.95538,217.52786,20.757172,48.460663,6.103 1513,-10.858068,-31.480043,29.45497,70.300674,6.014 1513,315.83307,225.26659,19.185425,37.508377,5.933 1513,217.34953,217.76736,33.893677,61.985138,5.897 1513,0.7409239,349.70975,31.89743,74.61038,5.672 1513,627.3315,-17.238293,16.95465,44.89133,5.394 1513,613.7263,454.02432,38.993652,107.89542,5.123 1513,-73.34771,264.84045,201.88483,463.12787,5.072 1513,426.39328,244.27455,33.462616,59.179794,5.069 1513,536.01843,309.5646,144.58588,341.20053,5.053 1513,-22.392048,400.0741,80.104,177.1474,5.016 1513,457.5665,218.48825,20.315735,50.817413,4.945 1513,626.2641,487.70325,21.514282,45.56659,4.92 1513,583.12024,410.76517,71.87659,177.20737,4.854 1513,611.51746,-48.467888,41.491333,102.75908,4.82 1513,-17.622585,-62.074352,55.973267,143.76634,4.8 1513,385.87518,248.0232,42.16391,99.761475,4.785 1513,438.2996,216.78256,27.08023,65.25784,4.774 1513,623.1855,-34.241283,26.143005,73.30233,4.671 1513,494.14273,228.9631,237.3652,511.06314,4.621 1513,-36.460007,-130.21527,117.086296,278.44427,4.615 1513,373.33063,242.28908,24.703857,60.57704,4.545 1513,-70.84683,-188.96127,212.03223,458.2334,4.543 1513,465.99426,217.48055,21.249237,51.244553,4.533 1513,161.96907,231.96303,42.609818,67.587204,4.376 1513,242.0146,251.43472,18.672623,37.39264,4.365 1513,532.70325,-184.59404,148.09448,428.3759,4.269 1513,115.5725,217.3303,32.611916,62.129837,4.234 1513,586.44116,-99.625374,74.802795,233.89264,4.216 1514,368.46478,222.03345,50.188843,120.201904,96.276 1514,197.55634,212.75584,31.763748,62.80977,93.652 1514,228.11102,215.78398,32.317535,72.08223,83.631 1514,335.63348,214.029,22.861877,39.548325,7.135 1514,-6.485007,488.16312,19.043493,44.158783,6.272 1514,-11.274349,-31.431244,29.554195,69.523674,5.965 1514,-5.6901827,-17.38799,17.368816,40.89193,5.844 1514,183.92326,207.30733,33.99968,65.6075,5.779 1514,627.3394,-17.233982,16.90625,45.15323,5.742 1514,-12.867757,476.26352,31.696095,63.4133,5.74 1514,209.6683,211.91194,35.27884,66.92583,5.707 1514,467.21124,218.48024,19.72528,45.951218,5.479 1514,535.8251,310.22775,144.44806,341.33414,5.273 1514,202.48737,230.97464,21.11525,49.47284,5.273 1514,-73.1153,264.47333,201.58673,463.6211,5.221 1514,613.33264,454.19843,39.58191,108.03223,5.217 1514,623.0164,-34.615234,26.527954,74.02722,5.098 1514,582.9211,411.84073,72.27063,176.5397,5.079 1514,-20.147194,-86.09925,71.978775,195.3532,4.938 1514,-21.938131,402.0839,79.70235,175.49802,4.909 1514,323.12378,218.63931,21.307373,42.282654,4.889 1514,626.17523,487.99023,21.66986,45.249084,4.817 1514,549.2516,208.88231,31.980164,65.54579,4.75 1514,470.78842,207.72292,26.07071,59.250717,4.741 1514,-36.303734,-129.30916,116.717476,276.54037,4.71 1514,388.59302,227.588,25.283142,63.57155,4.659 1514,-70.30565,-188.81052,211.53554,458.281,4.63 1514,393.46234,245.80708,31.474304,87.82823,4.627 1514,494.13605,227.68341,238.03345,512.15405,4.587 1514,397.82056,227.03125,24.062378,57.838562,4.506 1514,331.17767,224.4622,19.086365,40.471786,4.464 1514,603.33075,-56.520657,53.307922,135.08202,4.453 1514,490.47177,207.35744,18.83554,38.837204,4.324 1514,391.11658,217.82927,55.045227,124.814224,4.292 1514,532.8232,-184.25598,147.8133,428.3055,4.291 1514,598.4179,196.5251,34.727783,85.08632,4.287 1514,455.41113,213.49086,27.394897,60.86415,4.258 1514,589.9691,215.93906,29.365479,69.37619,4.239 1514,486.24283,203.4317,28.404572,62.086853,4.238 1515,445.7393,227.13086,49.89749,127.779724,97.697 1515,236.2551,210.50012,31.298737,67.59372,95.706 1515,263.94064,212.24805,33.185455,73.16937,63.207 1515,245.89908,209.10963,38.161316,73.271225,9.987 1515,396.00952,217.92084,18.984314,41.194153,7.17 1515,401.33142,209.88571,21.244873,37.360077,6.741 1515,462.5418,228.53279,34.621094,83.080795,6.564 1515,224.82626,203.52682,32.650574,72.293976,6.331 1515,-12.670617,476.8443,31.660793,63.075012,6.312 1515,-5.788044,-18.353727,17.717646,42.645386,6.226 1515,-6.4233828,488.52124,19.21474,44.5166,6.154 1515,-11.158052,-31.914845,29.592953,72.17244,5.965 1515,536.3989,310.49963,143.24927,342.29102,5.403 1515,627.3496,-17.090818,16.99237,44.631374,5.27 1515,-73.29627,264.14133,201.50604,463.5153,5.177 1515,613.3625,453.8217,39.60254,108.1113,5.151 1515,409.25177,219.70659,19.379547,42.252365,5.054 1515,494.90796,227.88022,237.01758,514.42737,5.037 1515,583.1134,411.0721,72.16809,177.97122,5.036 1515,470.69403,220.26288,23.861053,58.569733,5.002 1515,-20.110132,-86.37359,71.82086,196.41975,4.834 1515,-21.983948,401.82367,79.71844,175.59497,4.82 1515,626.3495,488.2769,21.447632,45.46164,4.813 1515,622.93915,-34.53571,26.677063,74.01584,4.778 1515,439.13147,230.69165,33.905792,86.7124,4.758 1515,-36.143337,-129.93646,116.89473,278.068,4.737 1515,603.29443,-56.366287,53.62085,137.43843,4.69 1515,387.9529,215.6892,19.68332,44.341507,4.616 1515,-70.82432,-188.94824,211.7677,456.99683,4.59 1515,472.78436,239.36331,34.3107,84.374054,4.464 1516,514.10913,234.26907,60.066345,159.00607,97.488 1516,224.69037,216.47076,45.907898,93.04419,97.288 1516,256.173,218.94333,44.6868,94.64871,91.817 1516,441.95816,220.0025,18.456879,39.834106,12.381 1516,530.3972,310.12146,32.930237,81.756775,10.286 1516,449.9499,224.57314,19.277832,42.39189,8.377 1516,435.54352,216.43507,18.818542,40.30751,7.452 1516,-5.6816435,-17.84722,17.441887,42.35244,6.676 1516,-11.28623,-31.95369,29.599527,72.00925,6.135 1516,237.41815,254.1446,29.595673,56.599228,5.9 1516,-6.430996,488.61816,19.080017,43.648926,5.865 1516,-12.832724,475.6433,31.428034,64.22089,5.817 1516,467.61703,212.49039,18.440033,46.604095,5.725 1516,498.54184,208.88437,21.327362,50.921173,5.549 1516,627.204,-17.427414,17.258972,45.136616,5.534 1516,281.13828,220.19443,35.200897,72.26633,5.526 1516,535.44946,307.73962,144.73792,347.64697,5.371 1516,583.494,411.33533,72.104126,178.26538,5.351 1516,622.9493,-34.520752,26.440063,73.63458,5.295 1516,613.45105,453.9785,39.368835,108.07687,5.247 1516,-73.151596,264.33328,201.64742,463.29648,5.174 1516,265.21368,254.85855,30.614197,63.20752,5.161 1516,263.60138,232.13336,27.936676,66.30548,5.146 1516,458.61005,224.57248,19.716827,44.70276,5.053 1516,-20.21862,-86.28678,72.07963,195.74356,5.027 1516,494.25928,229.04062,237.36359,516.36865,4.934 1516,590.5259,212.08473,58.651,196.09001,4.897 1516,-22.005096,401.31198,79.737854,176.02585,4.82 1516,-36.298843,-129.84805,116.81613,276.76907,4.778 1516,428.27893,214.47685,19.309021,40.5905,4.678 1516,-70.73529,-188.77534,211.61482,456.6458,4.659 1516,626.39215,487.94336,21.386658,45.9765,4.636 1516,603.41174,-56.69629,53.317688,135.44032,4.555 1516,492.22913,-180.28917,232.28448,421.55057,4.482 1517,157.45984,214.32053,61.745453,136.08469,98.928 1517,570.1569,244.13889,62.94861,196.32681,97.563 1517,182.79892,224.82022,61.32318,130.6016,39.881 1517,441.33664,225.62859,20.208405,37.86525,17.929 1517,234.87425,249.81308,32.36769,65.660706,15.653 1517,448.82816,223.90652,20.172028,40.866882,14.51 1517,592.966,261.59848,52.984985,160.04034,7.689 1517,435.31406,228.55762,20.219452,44.661987,7.619 1517,535.7285,226.19542,26.687927,72.45665,7.104 1517,456.39682,223.83084,20.375153,40.242004,7.073 1517,170.88513,267.06808,33.55342,81.1647,6.446 1517,535.54486,304.16974,145.65906,348.93243,6.211 1517,210.0523,244.7866,35.54364,78.75606,6.024 1517,-12.7583885,477.1731,31.345287,63.240723,5.845 1517,-5.754719,-17.72216,17.73796,41.617798,5.741 1517,487.13837,218.64343,27.555725,66.05902,5.705 1517,491.11353,227.2641,241.74231,517.35834,5.577 1517,-12.373384,-40.257614,41.33043,100.6868,5.54 1517,609.06976,241.07483,42.30847,120.515686,5.53 1517,-6.691365,489.35892,19.481464,43.206696,5.481 1517,627.1992,-17.75086,17.188965,45.31197,5.398 1517,212.48706,231.08467,54.46338,118.88933,5.328 1517,-73.49076,264.04773,202.42181,464.964,5.304 1517,622.9135,-34.376217,26.713257,73.717636,5.107 1517,613.41455,453.80127,39.5047,108.9209,5.02 1517,-20.246723,-85.68506,72.09712,194.79256,5.009 1517,586.9239,346.01044,34.065613,84.76349,4.937 1517,626.2818,488.26935,21.361084,45.173218,4.865 1517,-22.163694,401.0827,80.07629,175.83466,4.745 1518,28.500538,216.17294,90.09329,192.97525,94.578 1518,441.73325,222.98094,21.179688,45.98854,10.613 1518,450.94864,217.98935,19.62265,40.389008,9.525 1518,26.38463,172.84508,138.00807,319.16858,9.22 1518,79.37859,221.87128,70.94218,153.35065,9.137 1518,537.2907,199.66716,27.611633,77.73897,7.716 1518,88.92549,219.79214,36.367462,60.741608,7.694 1518,-71.18858,258.41577,201.2906,469.662,7.619 1518,456.27243,223.68452,21.323029,42.687607,7.48 1518,452.83954,225.47507,29.637756,66.73544,7.145 1518,533.55066,227.34653,29.619568,70.95145,6.681 1518,-6.173701,-18.41834,18.101126,42.751766,6.532 1518,-11.268176,-31.690323,29.59901,71.373375,6.427 1518,69.12564,219.35178,43.223007,77.38138,6.344 1518,613.7959,199.06798,25.990112,81.46544,6.182 1518,496.8368,218.27135,22.266724,51.1989,6.069 1518,431.3715,219.65515,28.791504,63.801483,5.94 1518,-12.820389,477.06296,31.405184,63.656586,5.692 1518,11.702349,203.13977,74.62474,170.22388,5.613 1518,-6.5501666,488.69888,19.27312,43.805634,5.588 1518,627.3142,-17.316391,17.217773,45.087337,5.38 1518,93.647095,215.7912,47.565582,89.395996,5.291 1518,174.44598,248.04756,31.804352,58.846146,5.189 1518,-9.791079,217.04686,69.73717,217.65633,5.133 1518,481.8602,213.15959,26.584991,58.33162,5.132 1518,613.2157,454.02087,39.894287,108.01825,4.99 1518,583.0859,410.9593,71.80084,177.14966,4.988 1518,42.383606,210.58752,62.0487,109.6983,4.966 1518,-17.247375,-62.159695,56.443615,142.83331,4.936 1518,626.2989,488.5323,21.364075,45.273315,4.929 1518,-71.14064,-190.09259,213.66148,460.8812,4.917 1518,623.0824,-34.49449,26.476807,74.27321,4.893 1518,535.94965,310.5064,144.16095,341.7978,4.842 1518,-29.606022,168.49731,143.796,357.65063,4.743 1518,-1.2901068,211.87991,29.715454,78.10495,4.686 1518,111.11708,224.30591,46.420135,95.98163,4.613 1518,532.3922,-182.59888,148.82971,424.62384,4.584 1518,546.46277,227.16512,33.38092,72.77641,4.571 1518,493.47058,226.5029,237.91687,515.3225,4.567 1518,-11.794787,223.74329,30.513233,73.12958,4.549 1518,-18.22973,435.38586,55.800446,139.62439,4.524 1518,603.4077,-56.79467,53.32086,135.60677,4.432 1518,-42.61341,359.2904,112.68214,280.35156,4.432 1519,460.30502,223.25461,18.843903,48.02365,27.98 1519,442.60028,217.29507,21.040802,50.174377,22.339 1519,450.19687,223.64615,19.580292,46.242798,9.146 1519,472.36163,222.0292,20.825989,50.014526,8.589 1519,537.50494,208.19014,30.506287,73.37227,7.742 1519,618.7613,249.99954,20.992859,65.60028,6.474 1519,464.03027,219.26279,23.824493,69.25937,6.326 1519,-5.3828754,-17.415169,17.284084,41.845043,6.062 1519,-12.674455,477.38913,31.216385,62.981598,6.029 1519,-6.6943293,488.94104,19.587841,43.775635,5.763 1519,-11.10994,-32.10911,29.28382,71.152275,5.455 1519,627.33875,-17.097857,16.927246,44.883156,5.45 1519,480.85046,220.0309,21.673035,53.8665,5.407 1519,626.3887,487.88574,21.263916,45.826843,5.343 1519,-73.29619,265.2536,202.32564,463.3681,5.284 1519,115.18361,258.04102,30.722122,69.13013,5.193 1519,613.2744,454.40118,39.689392,107.143005,5.166 1519,-17.087463,436.66345,54.654263,137.5221,5.151 1519,610.7614,-46.96507,42.02124,98.411156,5.013 1519,583.02563,411.23962,71.83777,176.87408,4.973 1519,-20.386944,-86.35813,72.21685,195.14183,4.872 1519,453.99353,201.00598,25.970306,60.229187,4.872 1519,535.9965,310.88,144.14764,341.65118,4.808 1519,163.082,265.66702,33.612915,60.181427,4.794 1519,-71.93211,-189.24448,212.932,457.1237,4.774 1519,-41.2184,364.0216,112.17012,277.99878,4.708 1519,-36.633026,-129.93895,117.10994,277.22574,4.663 1519,532.3676,-182.72696,148.97583,424.68613,4.63 1519,0.20133853,274.20837,28.491636,74.58548,4.595 1519,493.52542,226.5162,237.67789,515.35535,4.59 1519,432.7678,218.05058,27.201721,64.3159,4.558 1519,487.3307,216.95108,26.6792,72.80475,4.467 1519,586.46594,-98.52762,74.51361,232.06906,4.406 1519,98.998276,252.10468,42.031616,89.65509,4.254 1519,541.56494,230.70435,29.386597,79.37494,4.191 1519,500.49432,224.31906,28.976929,74.4252,4.125 1519,554.8176,209.66289,33.320923,64.756485,4.009 1519,496.32004,214.17902,25.77707,63.17621,4.006 1519,-9.983901,-20.263248,38.7767,98.43184,3.974 1519,618.3245,490.34775,20.926575,42.523346,3.762 1519,440.3299,215.0211,35.63138,73.83525,3.761 1519,-9.07929,293.31625,38.398987,100.66861,3.76 1519,107.4908,233.86276,51.765915,119.58646,3.716 1519,65.005325,278.7115,38.220215,70.56836,3.699 1519,3.2175362,-14.746382,16.191372,38.108,3.697 1519,344.46445,-2.055893,22.800201,39.164215,3.6 1519,527.49133,223.52435,27.821777,75.63013,3.594 1519,221.15927,212.65738,31.49002,65.861664,3.593 1519,341.49255,-31.543346,29.439514,71.87368,3.547 1520,466.4626,228.6644,20.152832,45.895233,27.342 1520,449.6524,226.40872,21.177185,46.25586,15.1 1520,458.11234,228.9594,19.775574,44.13469,8.409 1520,-5.774324,-17.820288,17.881424,42.232018,7.101 1520,540.36975,222.34778,28.357422,65.78076,6.472 1520,-11.086285,-32.032867,29.599846,72.05193,6.34 1520,-12.730896,478.43665,31.364578,62.037415,6.225 1520,-6.599524,489.63678,19.330824,43.060425,6.095 1520,440.99493,221.46906,26.187103,63.049164,6.08 1520,469.47675,224.10388,25.381073,64.31067,5.539 1520,626.0148,487.12585,21.935608,46.26056,5.423 1520,506.43494,224.53394,22.45636,57.956085,5.333 1520,597.04016,242.17805,28.603516,63.53273,5.284 1520,627.15094,-17.876225,17.454163,45.43061,5.217 1520,622.67676,-33.78099,27.000488,73.30082,5.177 1520,-20.36252,-86.66477,72.15371,196.08601,5.088 1520,613.4083,454.1399,39.37622,107.243286,5.069 1520,-22.160149,400.82172,80.23195,176.53986,4.96 1520,-73.17522,266.76813,201.57115,461.14948,4.949 1520,582.9682,411.28867,71.90735,176.80606,4.94 1520,-36.161972,-129.9268,116.68268,276.9556,4.86 1520,536.0659,310.49963,144.19806,341.02356,4.84 1520,532.47876,-183.12807,148.7572,426.2179,4.659 1520,603.3372,-56.138733,53.421143,134.38348,4.656 1520,-72.00886,-189.76242,213.2048,457.3953,4.654 1520,480.0079,226.54254,21.463074,50.757507,4.65 1520,493.7566,226.815,237.3299,515.4939,4.615 1520,590.83673,256.1588,29.694946,66.84473,4.567 1520,616.7032,246.32364,22.539978,56.543396,4.543 1520,586.4027,-98.42049,74.561646,232.68713,4.355 1520,122.875755,293.3299,31.985146,71.55823,4.23 1520,-5.8107376,264.417,17.578499,39.41098,4.189 1520,-9.3151655,-20.124313,38.30744,98.83482,4.14 1520,613.1194,248.35425,35.907593,109.71161,4.065 1520,347.2224,231.80783,19.850677,35.56125,4.055 1520,617.8204,489.10587,21.537598,43.415863,4.028 1520,3.0956364,-15.667587,16.489084,39.089073,4.0 1520,594.1523,-45.24045,44.875793,96.90221,3.958 1520,251.4991,226.6241,19.884903,42.02092,3.932 1520,607.0859,255.88164,28.344666,70.09004,3.932 1520,495.57495,228.38506,26.846375,69.80815,3.905 1520,435.18146,229.0193,20.079193,49.63472,3.834 1520,-7.6171074,295.40585,37.25244,101.16913,3.685 1520,-5.5682707,-0.08310509,18.038467,43.1671,3.617 1520,172.16638,-2.5469017,16.9328,35.29822,3.614 1520,180.15924,221.38708,32.5195,65.62576,3.577 1520,1.8092132,-40.020725,43.100227,98.87082,3.57 1520,618.7146,-19.390205,17.850403,43.46828,3.457 1520,596.27026,255.8868,41.92993,114.47032,3.446 1520,156.11421,-2.8764048,17.460297,34.94785,3.444 1521,473.35962,228.72984,21.620575,47.26219,18.077 1521,459.26807,227.79114,21.036041,48.054382,13.806 1521,-0.28957844,350.76862,34.875637,84.06946,10.607 1521,-5.795999,-17.531826,17.63164,41.666656,6.87 1521,-12.783955,476.53244,31.724388,63.824554,6.442 1521,-6.4727902,488.18573,19.26519,44.8385,6.348 1521,465.35037,230.46188,21.672699,56.574005,6.079 1521,477.08325,224.19498,27.806946,72.11481,5.991 1521,-11.342489,-31.885868,29.74215,71.801056,5.889 1521,437.12994,222.18346,28.083008,73.88817,5.646 1521,627.33655,-17.272778,16.980103,44.67613,5.55 1521,622.7854,-34.339695,26.682434,72.79363,5.361 1521,-38.568123,366.72794,109.20571,270.93295,5.277 1521,626.364,488.38184,21.398804,45.4458,5.202 1521,-8.546833,362.1604,30.578169,75.82135,5.115 1521,-17.393162,-62.6417,56.3731,143.41576,5.082 1521,613.417,454.07007,39.61676,108.007324,5.015 1521,583.0583,411.04547,71.81409,177.0213,5.009 1521,-73.03973,266.91214,200.7049,459.2252,4.949 1521,536.2049,310.27225,143.85675,341.71713,4.866 1521,-36.173576,-129.7721,116.89144,277.133,4.851 1521,603.429,-56.30884,53.302795,133.71785,4.814 1521,-17.937893,434.51572,55.474262,141.10587,4.689 1521,-71.86862,-190.3196,213.25967,458.13232,4.659 1521,588.7424,243.00497,30.051025,73.15668,4.608 1521,493.401,227.30252,237.8927,515.0283,4.571 1521,528.1112,217.10837,25.442566,65.51584,4.506 1521,422.48245,230.72725,27.950836,69.102554,4.495 1521,532.53815,-182.72787,148.83942,425.67798,4.494 1521,559.24384,234.66791,27.854492,71.51697,4.481 1521,586.4539,-98.06145,74.475525,232.2973,4.372 1521,459.60913,204.46881,30.515839,65.786865,4.304 1521,612.4216,236.33167,37.32544,107.86145,4.193 1521,594.09705,-45.64102,44.931824,95.90585,4.101 1521,618.2481,490.66806,20.873962,42.38028,3.948 1521,447.7287,221.88107,28.4552,69.91998,3.924 1521,-6.0033216,355.70508,20.842617,54.693268,3.857 1521,573.57794,237.99724,30.636047,73.92543,3.837 1521,3.058011,-15.700184,16.455204,38.69076,3.816 1521,345.7395,240.73349,20.72171,42.99713,3.776 1521,597.46875,234.30148,38.651733,101.34732,3.764 1521,-10.180912,-6.3129654,40.81963,100.42492,3.743 1521,1.922307,-39.513878,43.53742,97.84933,3.73 1521,-11.698012,345.43506,48.417206,143.3628,3.642 1521,454.54007,224.5406,37.134247,82.781906,3.541 1521,483.47766,226.92812,37.82617,82.77031,3.492 1521,619.1346,-18.563244,17.266113,41.806263,3.487 1521,566.67615,188.78426,35.841675,78.048386,3.407 1522,497.50156,216.702,20.740631,48.223175,49.348 1522,489.09247,218.15091,22.007446,45.032074,29.417 1522,480.5545,216.19962,25.851501,67.65805,9.333 1522,511.4383,214.64627,22.209473,49.43634,8.142 1522,-6.568437,488.51733,19.21269,43.95215,7.095 1522,493.909,225.63089,28.981262,69.20911,7.087 1522,-12.930817,477.05,31.697655,62.87555,6.745 1522,485.6925,237.87366,29.177124,67.83032,6.603 1522,-6.114276,-18.765476,18.163883,42.74112,6.5 1522,487.6204,203.1104,36.012238,70.30055,6.482 1522,461.77295,222.11981,29.167114,69.70764,6.398 1522,-11.219526,-31.997051,29.468803,70.588455,6.139 1522,590.1913,226.60011,27.51178,68.26604,5.561 1522,504.69604,221.16849,21.376831,55.30832,5.47 1522,516.72205,233.04376,30.338318,72.50177,5.398 1522,-16.931993,436.22427,54.234955,138.24118,5.378 1522,627.3731,-16.88795,17.037964,44.15663,5.255 1522,621.709,476.90143,29.781006,67.51898,5.179 1522,-17.563374,-62.72692,56.3465,142.7652,5.08 1522,-72.981415,266.1772,201.09836,460.7182,5.05 1522,616.1927,237.58496,24.205261,80.18939,5.021 1522,583.01086,410.9745,71.91235,177.00586,4.986 1522,536.278,310.7077,143.3559,341.2343,4.842 1522,623.09827,-34.41282,26.45343,73.02819,4.736 1522,-71.76051,-190.43011,212.91792,458.23007,4.658 1522,-40.533302,366.8897,111.05488,274.40656,4.613 1522,498.2582,191.09575,39.71573,79.4294,4.609 1522,-36.273132,-129.46988,116.742455,277.6485,4.6 1522,493.19135,228.15549,238.1676,514.8639,4.599 1522,603.40375,-55.93663,53.535583,136.01794,4.524 1522,491.36234,-178.84763,233.5314,422.4989,4.513 1522,473.97485,224.2485,22.3396,55.81009,4.364 1522,586.19434,-99.490005,74.9021,234.00354,4.282 1522,229.34375,219.4349,28.499207,62.59427,4.072 1522,515.676,206.6454,27.32904,65.666214,4.009 1522,617.47144,488.7618,22.053162,44.721832,4.005 1522,599.4651,217.51538,37.020996,102.77844,3.957 1522,-9.9018755,-6.7851753,40.271854,101.3732,3.878 1522,2.1796536,-39.069782,43.28673,97.58499,3.795 1522,477.39545,179.25893,30.455322,79.68828,3.769 1522,512.68744,229.28271,23.521729,55.972473,3.742 1522,531.11017,230.01651,30.28009,65.20346,3.702 1522,612.6775,243.98209,37.141724,116.220245,3.696 1522,594.58295,-45.88002,44.75348,99.48966,3.663 1522,2.9545588,-17.390738,16.92817,39.571613,3.651 1522,361.30466,-17.339954,18.26529,42.528694,3.651 1522,357.18268,227.01045,31.647919,56.754837,3.564 1522,131.05173,250.59808,18.832504,36.82733,3.53 1522,470.1867,239.17737,28.275574,68.25348,3.511 1522,600.78796,236.78868,21.918396,52.872818,3.466 1522,457.21887,234.78848,22.982178,54.720215,3.46 1522,133.69627,-3.0190887,29.373215,64.55939,3.457 1522,362.80585,243.55438,19.7016,35.958435,3.419 1523,534.62024,210.66588,28.05072,64.42796,36.025 1523,529.1671,214.28978,23.594604,49.93315,22.504 1523,526.8329,224.15874,28.646057,75.96596,7.232 1523,591.3889,231.11621,29.006226,70.50757,6.993 1523,-12.96739,476.72305,31.94079,62.525055,6.744 1523,-11.089606,-32.175682,29.641937,72.75348,6.73 1523,520.71313,216.41432,27.024963,65.9005,6.558 1523,-5.815977,-17.860628,18.025694,42.898228,6.486 1523,-6.3711333,488.52753,19.011135,43.73529,6.455 1523,532.8312,243.78256,33.478027,75.012634,5.73 1523,614.55426,231.34763,26.230957,80.260925,5.647 1523,510.94238,222.5989,30.02533,71.23309,5.605 1523,540.6977,224.089,29.323425,77.32747,5.53 1523,597.75073,242.00604,31.66211,78.08026,5.433 1523,627.3567,-17.00529,16.892883,44.335876,5.351 1523,626.4133,488.1874,21.319336,45.079193,5.278 1523,613.4089,454.10046,39.442017,107.68799,5.122 1523,-72.76605,266.0194,200.76288,460.46265,5.084 1523,-21.6113,402.21735,79.316124,175.88367,5.06 1523,583.0439,411.28958,71.83258,176.76303,5.004 1523,-20.09612,-86.71681,71.838135,196.23653,4.982 1523,622.93134,-33.906517,26.627502,72.81004,4.977 1523,557.7652,218.94983,28.91925,72.45474,4.946 1523,545.04266,203.14609,34.030945,66.51547,4.878 1523,516.7746,243.47464,31.543152,71.5311,4.801 1523,536.34265,310.4715,143.32593,341.42987,4.77 1523,490.87247,-179.9317,233.94675,424.2531,4.672 1523,-36.21298,-128.47232,116.84221,277.3763,4.663 1523,-71.748924,-190.45134,212.75516,458.49127,4.65 1523,493.057,227.32507,238.66467,515.6003,4.47 1523,603.22314,-56.18171,53.500366,136.00958,4.451 1523,586.01245,-97.95675,74.99658,232.75076,4.321 1523,-9.625998,-20.07259,38.973072,98.72449,4.284 1523,618.7181,490.21414,20.648132,42.260345,4.146 1523,501.10266,228.6923,30.795532,73.75685,4.132 1523,601.13574,233.48216,22.703613,48.05449,4.072 1523,410.90674,-1.6783409,18.891296,34.909454,4.035 1523,546.9762,241.76807,32.80609,74.13135,3.985 1523,237.43665,226.50711,29.65326,67.2088,3.977 1523,2.9607015,-16.018892,16.815533,39.802242,3.965 1523,1.878252,-38.692924,43.49022,98.594536,3.922 1523,539.5922,265.12457,32.26703,66.52957,3.846 1523,612.5665,244.95126,37.617493,117.6279,3.787 1523,411.9607,260.8162,17.52893,35.798218,3.785 1523,524.75397,196.62845,48.20221,99.54544,3.75 1523,402.55396,-3.9818268,19.126465,37.616554,3.636 1523,609.11194,239.48053,23.227417,52.173523,3.625 1523,626.9811,224.22107,17.752563,45.070923,3.62 1523,2.0282924,489.20566,20.287992,43.246124,3.551 1524,561.40186,224.9761,25.255432,67.25195,70.825 1524,-5.364086,-17.132591,17.37987,40.89126,7.126 1524,544.9927,225.15201,28.245422,70.004,6.771 1524,-12.642342,476.81488,31.35062,63.462097,6.234 1524,599.34863,209.5068,35.78894,106.61981,6.011 1524,-11.472849,-31.19946,29.704292,70.523506,5.879 1524,-6.429096,488.7942,19.033165,43.829163,5.794 1524,614.85974,164.20308,26.374634,80.35048,5.79 1524,627.1323,-17.649466,17.34497,45.564125,5.586 1524,2.8267794,-14.363243,16.557644,37.412697,5.487 1524,622.71594,-34.10188,26.682861,74.038086,5.458 1524,618.32184,223.14195,20.957397,62.213608,5.131 1524,613.4003,454.34802,39.508118,107.40143,5.031 1524,-17.707388,435.2622,55.177254,139.38007,4.998 1524,-72.95034,266.22412,201.02756,460.89197,4.988 1524,582.93256,411.62628,71.83948,176.63129,4.984 1524,536.3691,309.7747,143.2127,341.53732,4.927 1524,581.5321,245.78215,27.935913,77.107254,4.88 1524,-19.974968,-86.95098,71.62391,197.08511,4.866 1524,603.31757,-56.18468,53.626953,136.37915,4.725 1524,-40.721394,366.8069,111.27829,274.77222,4.678 1524,532.029,-182.48523,149.47034,422.494,4.64 1524,-36.21365,-128.37541,116.43933,276.68826,4.63 1524,626.3359,488.23373,21.423767,45.52414,4.617 1524,572.84924,229.85716,26.210022,69.91493,4.526 1524,493.53894,227.34879,238.29059,515.1041,4.455 1524,566.2095,244.94342,28.666992,78.93396,4.426 1524,-71.36832,-189.26192,212.57028,455.1975,4.385 1524,616.21875,243.45801,23.856201,79.796265,4.347 1524,548.8488,223.66026,39.231018,96.75136,4.344 1524,-9.69048,-20.786623,38.258007,100.491714,4.312 1524,586.05884,-98.40105,74.92163,233.16154,4.288 1524,554.1079,189.00241,54.53662,114.24423,3.96 1524,612.8204,259.70892,37.750793,118.47464,3.941 1524,590.2009,231.2373,27.26709,72.16852,3.824 1524,604.52594,174.62698,31.196655,103.84573,3.805 1524,584.50836,230.93831,22.27002,48.650864,3.786 1524,170.60849,246.49326,30.046844,63.122772,3.786 1524,10.1263,-16.06689,16.858181,37.675488,3.778 1524,506.78024,-13.085116,16.875702,33.899403,3.683 1524,543.13965,248.2196,27.940369,72.674866,3.621 1524,594.62384,-46.254425,44.795166,100.33208,3.564 1524,252.54472,-3.3862276,16.731949,34.804115,3.54 1524,573.7075,219.17769,53.352417,140.15782,3.54 1524,596.97125,256.1275,40.183105,114.93271,3.494 1524,618.981,-19.02546,17.446655,43.484108,3.463 1524,179.07446,241.91467,33.190094,59.655396,3.447 1524,586.7897,146.376,59.694946,192.75558,3.416 1524,301.0589,-13.473513,30.301758,59.45594,3.411 1524,1.9708657,-40.95251,42.929607,100.27869,3.407 1524,441.9986,-15.175518,17.574402,38.103992,3.403 1525,-5.4831796,-16.676832,17.260788,41.121037,6.884 1525,-12.281428,479.9322,30.652489,61.491272,6.339 1525,611.35693,-47.30771,40.98163,101.998634,6.122 1525,-11.192253,-31.025354,29.02067,70.764404,6.093 1525,537.03015,243.57532,21.342957,43.975098,5.965 1525,-18.0885,-62.62481,57.043533,144.76115,5.912 1525,-6.4184465,490.06348,18.956104,42.464966,5.766 1525,585.40826,-94.65116,74.23712,227.12646,5.421 1525,-17.286373,438.10553,55.303783,136.29822,5.399 1525,626.4877,488.3487,21.201782,46.07245,5.21 1525,627.3174,-17.080986,17.075378,44.764156,5.058 1525,582.9939,411.53992,71.79059,176.43439,5.015 1525,-73.30445,266.8523,201.33548,460.18396,4.933 1525,490.65125,-180.54465,234.09802,427.0583,4.899 1525,-40.835438,366.0962,111.45421,275.28577,4.78 1525,536.30273,310.17648,143.33258,341.9727,4.777 1525,613.23303,454.05344,39.685303,108.0715,4.734 1525,492.9938,226.70819,238.60104,515.44403,4.442 1525,-36.369114,-129.25589,118.132645,275.5251,4.421 1525,-72.30869,-189.58867,213.36386,456.0381,4.25 1525,484.5111,-1.8463879,30.674866,61.839386,4.169 1525,498.19952,-14.921637,18.07843,39.838158,4.12 1525,5.9910784,263.06494,32.78941,82.57257,4.109 1525,3.0563326,-14.489666,16.062492,37.83891,4.105 1525,493.20013,-33.338467,29.625854,74.89759,3.993 1525,451.95377,-5.7977257,29.499146,70.051636,3.911 1525,500.00946,-0.6016197,32.292786,61.96926,3.875 1525,505.9698,-15.642333,18.17389,39.28313,3.865 1525,451.8946,29.091682,30.370056,79.37848,3.632 1525,490.1904,-15.802731,18.35376,41.625282,3.572 1525,-5.3701067,1.956377,17.620531,41.596268,3.556 1525,476.75186,6.6397133,32.358307,75.29874,3.533 1525,543.5796,250.8019,21.777405,43.39131,3.494 1525,612.1905,229.69945,37.907654,115.244125,3.456 1525,-10.678299,-0.1775589,40.940727,93.35356,3.424 1525,531.16095,-131.79211,114.63788,264.31915,3.377 1525,575.3576,189.24135,53.357117,148.37633,3.372 1525,496.85666,-2.2158775,21.719757,40.707077,3.364 1525,468.78372,-14.289328,32.391693,68.396736,3.356 1525,477.70084,-15.861088,55.031036,114.51857,3.311 1525,574.03784,-16.990986,52.957703,118.71718,3.248 1525,614.86615,-21.66705,26.975342,68.936,3.247 1525,10.449233,-24.661575,59.440628,120.16456,3.234 1525,5.7950535,467.51187,37.21441,95.791595,3.23 1525,427.48425,-36.163525,59.013092,122.026306,3.227 1525,465.99652,-17.112339,18.708984,43.397537,3.217 1525,589.0501,-54.53968,54.026,138.06357,3.208 1525,509.74362,-15.130413,54.914215,113.8044,3.193 1525,612.5825,44.37113,38.832397,110.62087,3.191 1525,2.07752,491.1117,19.504042,42.18799,3.184 1525,-9.499329,66.890526,39.12841,108.28974,3.183 1525,477.77493,-33.31421,29.598114,78.845276,3.168 1525,563.0767,-15.474312,33.778015,65.88032,3.16 1525,458.51535,-32.895576,59.12259,121.12168,3.147 1525,2.0277143,-38.879513,43.4455,96.93217,3.14 1525,626.3057,48.2651,19.445007,47.940765,3.135 1525,614.8146,195.62262,26.244629,89.28412,3.122 1525,618.3445,490.87195,20.837463,42.84851,3.121 1525,473.60223,-16.943436,18.86264,43.073357,3.108 1525,346.84753,-17.169117,17.273315,38.945904,3.1 1525,457.69354,-18.494726,18.670746,44.687138,3.062 1525,370.74936,-12.651302,16.6091,35.37723,3.059 1525,619.1308,-17.956583,17.303406,41.744713,3.057 1525,546.5952,413.9212,83.42084,166.0846,3.04 1525,400.2494,-42.076355,47.127777,90.06361,3.02 1525,515.4894,12.377327,33.175232,76.27297,3.012 1525,617.50824,55.23528,20.957092,50.170223,3.012 1525,513.9017,-13.789053,18.299744,37.778927,3.009 1525,602.7282,-23.562992,52.201477,131.05798,3.007 1525,603.561,265.02393,53.227356,152.13446,3.002 1525,-5.9468575,187.60367,17.328308,37.97516,2.978 1525,509.519,-32.919086,29.556976,73.18435,2.968 1525,362.87845,-14.21663,16.905426,36.283913,2.954 1525,2.8786683,4.2200775,18.924318,41.357796,2.952 1525,546.2528,-16.018465,34.119385,69.574005,2.951 1525,465.1494,14.9935875,34.098694,77.1673,2.935 1526,627.0715,-17.164028,17.324646,44.582314,7.079 1526,-5.558045,-17.5425,17.369675,41.77978,6.783 1526,623.2298,-34.399387,26.084473,74.815735,6.357 1526,-11.198828,-32.383842,29.363638,71.02962,5.965 1526,-12.932423,477.45978,31.587158,62.58661,5.654 1526,603.2122,-55.609398,53.374084,134.48799,5.513 1526,585.4246,-95.87796,74.70056,228.38698,5.276 1526,626.1164,487.21155,21.872253,47.501953,5.172 1526,-17.497417,-63.122276,56.441868,143.82512,5.098 1526,-6.635883,489.25296,19.452894,43.416656,5.075 1526,-22.229465,400.4826,80.13338,176.75116,5.053 1526,-73.53795,266.32028,201.78154,460.85672,4.971 1526,582.89844,411.0491,71.858154,176.99411,4.941 1526,613.30756,453.70093,39.43329,107.45679,4.784 1526,490.27466,-179.40656,234.59784,425.64505,4.762 1526,536.47894,310.5826,142.7254,341.7847,4.749 1526,-71.9493,-190.01614,213.5137,457.21503,4.73 1526,-36.161396,-130.53154,117.094666,278.6353,4.619 1526,3.676219,-15.857624,15.737016,38.17811,4.372 1526,492.96918,225.84946,238.633,516.35266,4.351 1526,594.6504,-44.467583,43.217102,97.69166,4.333 1526,619.8744,-2.4876938,17.52179,36.655552,4.325 1526,614.49963,-21.528614,27.540161,69.68142,4.201 1526,298.86288,-15.473674,16.736786,36.599396,3.932 1526,434.71448,-13.96854,16.987946,37.89706,3.786 1526,-10.06174,-7.101471,40.39273,101.03181,3.765 1526,2.0602489,-40.62328,43.138382,99.06415,3.661 1526,442.4576,-14.709589,17.001862,38.51608,3.657 1526,370.57678,-12.24714,16.92627,37.70287,3.647 1526,341.89307,-15.030762,30.620087,64.36352,3.605 1526,306.80133,-14.531832,16.867462,36.644684,3.603 1526,378.51315,-13.987957,16.911407,37.974308,3.585 1526,362.5287,-13.651703,17.07309,38.833096,3.546 1526,314.76907,-14.967874,16.83139,37.162548,3.529 1526,356.6037,-13.432823,32.123596,60.883247,3.493 1526,283.02985,-16.15077,16.385406,36.94263,3.425 1526,426.8059,-15.138075,16.763916,38.11724,3.404 1526,354.53516,-13.637861,17.196167,38.28811,3.38 1526,291.0665,-14.76264,16.435516,36.113857,3.379 1526,346.91953,-14.829816,16.962616,38.633472,3.348 1526,-4.6913214,215.73212,17.199928,41.846832,3.267 1526,530.8745,-133.02538,115.94348,267.14594,3.265 1526,5.2890387,463.9464,38.04119,99.149414,3.261 1526,294.82355,-33.56381,27.69107,70.8251,3.248 1526,574.55725,192.32584,32.692383,86.18417,3.233 1526,436.22717,-15.579863,31.68341,65.26015,3.229 1526,611.353,-14.547493,16.26886,38.294247,3.218 1526,450.2862,-13.771481,17.010834,37.425922,3.214 1526,275.13626,-15.77976,16.410034,37.15328,3.196 1526,19.712624,294.67087,33.020676,70.872345,3.19 1526,322.995,-14.321638,16.726013,37.15011,3.184 1526,-5.386277,0.22070503,16.911184,41.20854,3.158 1526,334.19528,-3.3985653,28.596497,63.387222,3.158 1526,75.12317,1.1525021,20.009308,43.574005,3.13 1526,330.95795,-15.414808,16.688232,38.25574,3.084 1526,418.88782,-14.185634,16.61621,37.081398,3.072 1526,308.6557,-16.236757,32.37381,63.71296,3.07 1526,627.7259,11.621311,17.473083,43.866867,3.069 1526,430.2705,-33.868576,28.241577,73.99077,3.066 1526,546.4104,413.23676,83.59216,167.32788,3.06 1526,411.00955,-14.726368,16.62741,37.3887,3.054 1526,314.4601,-0.2680416,19.011688,34.126762,3.046 1526,-10.105505,228.31355,39.514915,105.8365,3.043 1526,530.479,177.44823,30.673218,70.87686,3.026 1526,612.4649,232.94836,38.17926,112.9389,3.019 1526,611.7703,0.40837097,17.331116,34.197594,3.017 1526,325.13068,-15.436707,31.208282,65.885895,3.006 1526,458.34906,-1.4617615,19.640167,36.986343,2.999 1526,299.60245,-0.42934608,17.733551,32.628227,2.982 1526,466.53864,-1.4712048,19.183594,37.679893,2.979 1526,267.36246,-16.677532,16.061493,37.42937,2.967 1526,10.486843,-15.828137,16.231194,37.725014,2.967 1526,365.6438,-32.532482,28.522034,72.69349,2.945 1526,386.65973,-14.080758,16.902222,37.136818,2.933 1526,240.2223,-41.82469,47.2675,90.25981,2.903 1526,-8.039441,167.0142,38.336662,103.44536,2.898 1526,617.52466,489.63843,22.22882,44.20758,2.897 1526,469.02634,217.25412,30.411957,63.559235,2.896 1526,509.34543,-20.060776,54.165436,125.60976,2.87 1526,339.1379,-14.084784,16.707275,37.267067,2.868 1526,573.68677,-21.924145,53.861816,129.66196,2.866 1526,219.00215,-16.00248,15.94957,38.148827,2.864 1526,395.04028,-1.7051926,18.659698,36.05447,2.855 1526,394.77847,-15.046457,16.85147,37.559406,2.842 1526,-0.19958496,374.82306,97.98927,259.8493,2.842 1526,596.1861,198.3531,40.644714,108.9106,2.834 1526,11.139448,-35.568813,58.682602,132.2888,2.832 1526,598.1445,460.28818,37.969788,99.63101,2.83 1526,403.05078,-1.6585579,18.806458,37.214638,2.819 1526,60.357304,-14.134542,31.266193,63.41205,2.804 1526,272.58313,-42.091324,46.722565,91.26854,2.804 1526,612.6726,45.480644,39.0495,110.53312,2.802 1526,372.1498,-2.0228615,30.366516,61.170746,2.8 1526,570.5519,-15.04871,17.130737,38.19834,2.795 1526,612.1827,0.0752449,38.8385,105.54018,2.79 1526,307.0437,-0.29389954,18.40503,33.59325,2.789 1526,578.513,-13.614042,17.062744,36.961845,2.785 1526,259.34863,-16.473888,16.125916,37.35295,2.78 1526,475.06686,-1.1656418,18.246674,36.1494,2.771 1526,22.39264,308.5312,149.38113,338.35803,2.766 1526,474.73547,-15.70649,16.491821,39.132812,2.758 1526,458.31384,-14.677717,16.729004,37.84274,2.756 1527,-5.7055616,-17.993912,17.495756,42.93892,6.573 1527,-12.6150055,476.28262,31.179228,63.59903,6.481 1527,611.46893,-47.444862,40.986145,102.147026,6.178 1527,-11.198681,-31.919605,29.563313,72.59606,6.149 1527,-6.457963,488.63074,19.07163,43.61682,6.104 1527,627.06683,-17.254171,17.360107,45.117195,5.827 1527,-20.359976,-86.17548,72.273094,195.4789,5.118 1527,626.16174,487.43097,21.849487,46.79236,5.116 1527,585.81744,-96.595825,74.53583,231.33055,5.08 1527,-73.649864,265.37366,202.22021,462.14648,5.045 1527,532.2294,-181.51526,149.33813,420.33047,5.024 1527,-22.13074,400.13452,80.21732,177.23468,5.008 1527,582.9634,411.24506,71.93701,176.64539,4.899 1527,536.48,310.21628,143.34375,341.40042,4.864 1527,-36.292576,-129.25586,117.15637,275.68085,4.831 1527,613.05005,454.0115,39.910522,108.14511,4.83 1527,-72.052986,-189.85677,213.57617,457.2143,4.756 1527,493.3822,226.29834,238.08179,515.84686,4.526 1527,3.061359,-15.796884,16.53744,39.920784,4.071 1527,619.10846,-18.05475,17.52716,42.068695,3.989 1527,2.0771766,490.04587,20.010056,41.89383,3.968 1527,-9.53087,-20.326817,38.42475,99.29462,3.955 1527,538.25964,-16.288952,17.581299,40.45336,3.884 1527,612.59753,200.92186,38.151245,113.05684,3.825 1527,377.40668,-5.619404,21.283936,43.93423,3.823 1527,615.02496,34.550236,26.220825,68.52939,3.624 1527,458.27148,-15.429045,17.746613,42.660786,3.603 1527,2.0042014,-39.422417,43.023373,97.89329,3.588 1527,482.83698,-16.246157,17.60675,40.452076,3.548 1527,474.69354,-16.553295,17.882568,41.596657,3.522 1527,-0.7183969,301.98114,28.034323,76.58612,3.449 1527,371.56134,-13.570061,32.77414,67.323524,3.41 1527,442.91705,-4.814438,20.47165,40.4414,3.4 1527,585.5718,38.766792,33.171265,65.330795,3.385 1527,490.84976,-17.413961,17.568207,41.0798,3.381 1527,469.64093,-32.254524,28.636993,75.31126,3.365 1527,-5.001779,-0.94659996,17.174355,44.212852,3.357 1527,596.64667,198.39093,39.9505,110.38318,3.351 1527,5.4779553,465.20117,37.951363,97.33118,3.329 1527,454.03394,-32.384323,28.361023,76.214775,3.308 1527,386.9835,-14.6064205,17.120972,38.918022,3.27 1527,283.2086,-16.40873,16.832642,36.62766,3.259 1527,486.32312,-33.27801,28.01007,75.17409,3.25 1527,429.7741,-15.402636,30.203064,64.37276,3.239 1527,466.35898,-14.686767,17.86493,41.94323,3.237 1527,397.722,-33.86446,28.302795,73.81081,3.228 1527,589.12103,-55.12316,55.072693,139.47173,3.228 1527,330.39893,-41.097847,59.040497,130.67542,3.221 1527,286.75162,-34.264603,28.258636,67.649055,3.204 1527,515.73206,226.6875,31.097107,66.166565,3.178 1527,381.84015,-33.96502,28.145264,75.974014,3.165 1527,394.8991,-15.17111,17.240936,39.8867,3.147 1527,450.42117,-14.875797,18.021881,40.570297,3.131 1527,298.3765,-43.57,58.525635,132.37541,3.129 1527,499.03534,-16.564888,17.614807,40.152573,3.118 1527,572.47144,173.62643,54.730164,150.27463,3.099 1527,626.2862,19.866863,19.057556,43.92347,3.099 1527,300.03403,272.6906,31.65689,60.498657,3.097 1527,514.6286,-17.103947,17.99768,39.74723,3.085 1527,506.8939,-17.471237,17.5878,40.123035,3.083 1527,357.65515,-33.649666,30.156097,76.58177,3.078 1527,530.3395,-15.641647,17.832886,38.749607,3.077 1527,603.5768,72.718796,52.768982,152.19864,3.073 1527,475.02994,-38.601326,59.459503,130.0641,3.065 1527,291.18982,-15.774706,16.822144,36.236916,3.064 1527,-10.349888,426.5466,40.72489,98.29721,3.059 1527,272.36746,-43.25925,46.803925,92.31455,3.057 1527,156.31865,-3.7678404,17.186462,36.498837,3.054 1527,428.26627,210.99971,30.971222,70.221634,3.049 1527,342.06525,-33.539967,28.818176,72.845924,3.047 1527,438.83557,-4.7435207,29.003845,64.796036,3.04 1527,546.14185,412.93982,84.18317,166.8982,3.036 1527,275.13815,-15.520033,16.920837,35.881855,3.035 1527,10.252605,-16.735111,17.033285,40.309193,3.028 1527,361.46454,-5.9249306,23.013245,44.09073,3.028 1527,36.841625,-16.12995,30.910595,64.65944,3.016 1527,219.0144,-36.917374,60.589203,130.34624,2.998 1527,434.97073,-5.0804396,19.845001,41.07198,2.984 1527,100.201256,-16.026575,31.417458,64.84529,2.975 1527,3.6936212,285.43924,32.883305,76.36026,2.971 1527,240.04317,-41.471054,47.36873,91.91834,2.971 1527,612.21423,58.12465,38.440002,110.92296,2.97 1527,496.35788,-42.652767,46.567963,93.10861,2.961 1527,299.0778,-16.507978,16.70288,36.806213,2.958 1527,22.42464,307.81277,149.42307,338.73715,2.954 1527,74.879105,-36.41873,59.43506,126.15533,2.949 1527,42.562523,-35.609802,59.001274,125.72277,2.946 1527,402.1953,-14.624952,17.692627,39.92188,2.939 1527,611.94006,139.03902,36.999268,112.0078,2.937 1527,626.08746,39.31986,19.115784,50.622295,2.922 1528,-5.53947,-17.065144,17.709694,43.12469,7.389 1528,-6.1356964,488.65237,18.844707,41.916656,6.548 1528,-12.368462,476.79706,30.866083,63.6709,6.323 1528,-10.841352,-32.441837,29.114056,72.68219,6.29 1528,627.2433,-17.672434,17.236145,45.75576,6.156 1528,603.30804,-53.862137,53.462585,134.50743,5.653 1528,623.2172,-34.153862,26.33014,75.10183,5.601 1528,-20.39103,-85.237015,72.27977,193.56339,5.525 1528,-36.08761,-128.3557,115.93097,274.0667,5.356 1528,626.0305,486.95694,21.944214,46.88266,5.333 1528,-22.553822,399.53738,80.49643,177.34958,5.106 1528,-73.94015,265.00647,202.43875,462.97827,5.073 1528,2.8781457,-14.347207,16.803495,39.997425,5.058 1528,585.5602,-97.95775,75.25006,231.93802,5.04 1528,613.57324,453.88638,39.431885,107.74283,4.969 1528,582.959,410.6526,71.96741,177.34009,4.891 1528,-71.88918,-190.54776,212.79605,458.43814,4.802 1528,536.21826,310.73972,143.47809,341.4645,4.802 1528,531.9182,-182.05809,148.83167,417.98926,4.61 1528,-9.07178,-20.261066,38.389717,96.8273,4.555 1528,493.1599,226.32803,238.5329,515.88635,4.494 1528,406.40405,-2.5136452,28.381073,59.787857,4.405 1528,4.900097,-15.8155365,30.610455,69.0376,4.286 1528,105.23495,-7.6781483,22.946602,44.011787,4.237 1528,124.7502,-12.381399,32.289078,64.590004,4.114 1528,594.675,-46.509903,43.15619,102.44091,4.093 1528,330.4037,233.87706,34.23419,57.91829,4.088 1528,121.62483,-6.021492,22.715805,44.95115,4.087 1528,-5.402732,-1.4750385,18.078323,44.78409,4.079 1528,90.80784,-14.227921,34.08808,64.7364,4.046 1528,8.602936,-88.0301,74.67321,202.56712,3.992 1528,544.81976,249.15051,21.466187,46.987854,3.955 1528,315.31497,233.39348,33.19644,61.05812,3.942 1528,130.58226,219.25009,32.373734,72.08917,3.927 1528,474.25006,-3.7484207,20.27417,40.07322,3.912 1528,290.32428,-4.640788,20.933777,41.099342,3.897 1528,444.84164,223.90668,31.529327,71.364136,3.863 1528,597.9916,192.71378,39.207764,101.456604,3.86 1528,533.57886,234.13345,29.318848,64.31464,3.854 1528,490.9457,-14.486892,16.516571,37.225075,3.824 1528,458.25165,-5.6356983,21.119629,44.12239,3.813 1528,199.95593,188.74124,57.9068,131.60727,3.793 1528,163.53447,-2.8754158,18.812424,39.83257,3.777 1528,9.974625,-15.374441,17.465189,40.257668,3.759 1528,109.765816,-34.540714,29.547447,72.8466,3.755 1528,20.373692,-13.645893,32.585323,64.49707,3.754 1528,197.91165,-32.3587,28.299316,71.22641,3.736 1528,604.8377,96.42363,48.996277,142.15823,3.734 1528,413.96713,-32.516357,28.061218,73.79575,3.733 1528,443.03223,-3.5710106,19.39273,40.715622,3.725 1528,116.231674,6.037533,34.460297,69.84485,3.708 1528,86.31276,-32.928482,28.989288,71.89812,3.701 1528,139.22665,-4.063856,30.450806,65.90304,3.698 1528,482.32742,-2.556448,19.201355,37.446777,3.696 1528,330.3284,-5.396166,20.852966,43.343407,3.693 1528,-5.9153795,214.41885,17.719131,43.762054,3.686 1528,171.61362,-1.1685543,18.355087,35.996193,3.674 1528,426.23715,-15.987438,17.635223,39.44328,3.671 1528,178.92923,-19.821827,42.35623,87.1559,3.643 1528,119.92482,297.57846,25.089554,39.50049,3.622 1528,362.67297,-17.177462,17.687714,40.84456,3.618 1528,313.8183,-6.244463,21.34436,45.76198,3.591 1528,138.77025,-32.570213,57.297897,129.29382,3.588 1528,300.78244,-15.679235,31.80896,71.66161,3.565 1528,346.02615,-15.589559,17.930481,40.6628,3.559 1528,329.13873,231.7815,22.322723,40.250153,3.552 1528,612.2539,267.35748,38.17737,109.64551,3.552 1528,114.964226,219.47334,33.163414,71.57402,3.546 1528,507.98132,0.7751312,17.144287,32.484863,3.53 1528,322.07776,-6.766306,20.891327,45.489136,3.502 1528,442.377,-16.658129,17.490723,39.900364,3.489 1528,154.34103,-3.6378345,20.164398,42.10309,3.486 1528,182.15843,-33.03574,28.290253,68.30609,3.482 1528,434.53708,-15.120381,17.367462,38.22781,3.477 1528,417.5499,-3.3296127,20.249786,41.375473,3.471 1528,619.13336,-18.471832,17.338684,42.763863,3.462 1528,450.4947,-5.018221,20.094849,43.55388,3.453 1528,338.33438,-14.350586,17.576294,39.39318,3.448 1528,612.7412,175.74454,36.77423,106.003815,3.429 1528,58.085243,-15.296751,18.048714,38.042225,3.425 1528,452.59702,-16.28161,31.734528,69.063805,3.425 1528,420.31335,-14.687138,31.122314,64.635605,3.421 1528,166.1634,-33.358612,28.434082,70.38499,3.42 1528,324.84888,-4.214882,30.117706,65.8282,3.412 1528,357.42413,-32.865654,29.259857,73.26502,3.412 1528,298.73227,236.5142,34.22824,58.162888,3.406 1528,12.842526,-20.066036,56.356823,119.98949,3.404 1528,214.36606,-32.997253,28.039886,71.24788,3.403 1528,445.30032,-17.666794,54.59781,123.161415,3.403 1528,187.22246,-38.58123,58.43222,131.83174,3.39 1528,133.49998,-33.269012,29.172745,77.61515,3.368 1528,170.91785,-15.838137,17.25093,38.09226,3.364 1528,462.1915,-32.704834,28.572693,75.71984,3.363 1528,368.36084,-40.63351,46.54059,91.88672,3.357 1528,149.07019,-32.271034,29.24826,74.18615,3.351 1528,523.57086,0.67128754,17.404419,33.81692,3.349 1529,610.64484,-48.11982,41.582947,100.6179,6.142 1529,627.09924,-18.785667,17.492493,47.580044,5.996 1529,-12.642878,-39.471733,41.573788,100.75864,5.986 1529,-12.745004,477.02252,31.473598,62.87805,5.83 1529,-6.4839916,488.67474,19.342762,43.917908,5.596 1529,626.088,487.92953,21.79718,45.427155,5.436 1529,-6.013418,-17.91518,17.867535,42.97039,5.294 1529,613.5589,454.31036,39.574097,106.96991,5.223 1529,586.0953,-99.99563,74.62482,234.18903,5.081 1529,489.76715,-180.39851,235.30682,427.25024,5.02 1529,-73.50493,265.83362,201.43102,461.15173,5.015 1529,583.20074,410.5418,71.746216,177.38715,4.977 1529,-22.028502,401.35828,79.87617,176.15741,4.888 1529,536.28644,310.3202,143.41388,341.70972,4.795 1529,521.74207,217.64209,32.02191,62.81137,4.704 1529,-19.670021,-87.26112,71.03035,197.99693,4.66 1529,539.4305,211.0226,33.600586,62.013687,4.583 1529,493.2779,226.58698,238.3858,515.8037,4.473 1529,-36.765934,-126.29762,117.18193,276.90366,4.449 1529,395.54492,253.82101,17.029968,31.644043,4.447 1529,610.84766,179.53952,37.515625,118.93817,4.296 1529,475.82004,-16.314262,16.251495,38.290276,4.247 1529,603.9339,-28.888336,52.366882,137.32544,4.245 1529,458.7785,-19.337662,17.512726,42.988857,4.218 1529,618.1506,490.63904,21.246643,42.09912,4.081 1529,483.6129,-14.50428,16.441864,36.83677,4.038 1529,467.4732,-17.29507,16.73706,40.207767,4.013 1529,575.84955,72.91687,53.145874,169.91055,3.928 1529,-70.91225,-188.7335,211.91376,454.35858,3.912 1529,619.22064,-18.629171,17.62738,44.627502,3.866 1529,460.57825,224.1766,29.671661,59.571686,3.834 1529,24.961958,216.43312,22.125895,47.38011,3.831 1529,430.93146,-35.010365,27.827423,70.9906,3.822 1529,487.11978,-32.790295,27.336395,65.23837,3.82 1529,595.76904,157.4993,40.592163,119.3472,3.799 1529,490.98657,-14.867542,16.750397,36.969093,3.78 1529,69.53163,-33.85002,29.770569,72.54253,3.777 1529,612.255,264.4525,37.555542,115.07022,3.75 1529,281.94055,212.31119,22.77658,46.392853,3.732 1529,84.47422,-34.966164,30.601006,71.222404,3.724 1529,473.1532,189.29808,22.011719,44.483307,3.722 1529,120.86746,220.37517,22.174866,37.983597,3.674 1529,598.7322,-25.50849,38.428894,95.91428,3.67 1529,137.16585,222.2872,23.82402,34.133728,3.647 1529,33.338936,220.33072,22.359642,42.382538,3.635 1529,315.13156,-16.556908,16.657318,38.37291,3.617 1529,574.17926,-29.259384,53.915283,136.15009,3.603 1529,-8.492926,37.988804,37.63295,105.72566,3.577 1529,450.3752,-19.442629,18.417786,43.214962,3.553 1529,446.43427,-34.82406,27.572327,71.201,3.548 1529,394.4345,-41.176643,59.793243,135.14099,3.506 1529,490.27753,224.90408,22.4646,50.025787,3.495 1529,402.94904,251.93411,17.407776,34.030334,3.475 1529,610.2282,125.71501,29.950378,85.80168,3.467 1529,348.63928,216.6081,32.305206,49.59796,3.451 1529,367.9453,-43.431404,47.127167,91.872086,3.446 1529,298.6971,-16.721985,17.401123,39.866215,3.417 1529,619.355,1.7548752,19.381653,43.314674,3.407 1529,-5.9602833,206.52888,18.407913,44.43898,3.375 1529,388.00592,252.75554,17.188599,32.184708,3.373 1529,434.3144,-19.561714,18.718597,42.93184,3.368 1529,331.60596,-16.101929,16.1521,36.66362,3.364 1529,470.9946,-34.296837,27.328186,68.19587,3.357 1529,492.2176,-0.9434376,16.460571,32.59561,3.342 1529,323.3264,-15.810759,16.612305,37.17493,3.324 1529,538.5937,-18.195728,17.266052,40.759857,3.318 1529,507.55426,-2.6390057,17.132874,32.818604,3.316 1529,-11.057,20.91182,29.09251,75.6296,3.313 1529,532.2908,-137.48708,114.868286,274.7439,3.287 1529,15.7306385,-39.977654,46.642883,98.59668,3.271 1529,307.06076,-15.827175,17.028046,38.658146,3.25 1529,37.551556,211.413,28.96201,57.46878,3.236 1529,390.89954,-34.66284,28.702972,68.86656,3.229 1529,612.4254,27.160034,38.220093,115.8857,3.222 1529,534.3792,-33.575577,28.101318,70.19162,3.221 1529,195.0106,153.46457,19.335846,36.61827,3.218 1529,346.60248,234.15855,20.595978,34.34694,3.207 1529,589.76965,-10.919334,52.768494,158.36255,3.201 1529,83.08163,196.69032,42.731216,86.25429,3.193 1529,336.28284,-42.629547,46.971527,92.41132,3.192 1529,379.94003,-59.522625,56.97522,132.23073,3.177 1529,546.4163,412.35992,83.82068,168.20374,3.172 1529,410.1001,-16.87096,17.900421,38.145706,3.171 1529,2.7087588,-16.109846,16.609257,39.756325,3.169 1529,573.5598,166.48091,54.184875,158.13933,3.167 1529,5.593754,203.04335,28.211693,70.00499,3.166 1529,623.47656,-11.221251,26.368103,71.04798,3.157 1529,497.48773,-46.732643,45.188965,102.98589,3.154 1529,89.6542,-18.310558,18.693886,40.530544,3.152 1529,561.4292,-46.05526,45.10559,99.56459,3.15 1530,-12.7240095,476.42603,31.480965,63.429626,5.948 1530,-12.822468,-39.366783,41.881123,99.94594,5.678 1530,610.24774,-47.638905,42.31598,99.242325,5.655 1530,-6.5390053,488.5499,19.382412,44.637848,5.634 1530,585.7533,-96.18469,74.47565,228.34511,5.38 1530,-5.752707,-18.320686,17.620821,42.890656,5.325 1530,626.9982,-18.882189,17.576294,46.498074,5.32 1530,489.7718,-180.3345,235.39093,428.96802,5.155 1530,613.33636,454.06464,39.50818,107.80267,5.076 1530,-20.483389,-84.55366,72.46148,194.12544,5.058 1530,-73.24947,265.40997,201.3151,461.9743,5.053 1530,626.62286,488.29285,21.03595,44.93152,5.043 1530,583.11426,410.61234,71.77655,177.38077,4.949 1530,-21.938492,401.83978,79.694664,175.74103,4.921 1530,107.41637,-4.43906,30.241135,62.11052,4.769 1530,536.5949,310.56268,142.63971,341.56598,4.769 1530,-36.417763,-125.74096,117.475235,271.37708,4.628 1530,-71.34605,-190.20093,212.1753,457.60336,4.464 1530,493.00583,226.6163,238.56998,515.65845,4.284 1530,405.4395,198.5344,31.980896,63.263855,4.275 1530,-9.593309,-5.1353226,40.199646,99.81194,4.236 1530,225.9367,207.8063,45.444763,94.628265,4.21 1530,92.19216,-14.733433,55.239388,116.87831,4.189 1530,170.75595,-18.463116,57.14496,119.00751,4.154 1530,280.92892,233.64706,23.134521,45.074615,4.079 1530,480.59454,9.668373,33.647156,88.202324,3.913 1530,585.7505,-17.026556,18.295715,39.948536,3.838 1530,252.35995,219.7422,31.373047,59.39128,3.812 1530,385.63718,192.15874,34.560577,59.99086,3.801 1530,2.6575513,-16.060837,17.004711,39.423946,3.762 1530,123.881256,-17.059692,55.754486,119.12021,3.759 1530,257.1524,207.93857,45.076385,90.62689,3.742 1530,477.33356,-1.5322113,29.458008,67.08081,3.741 1530,360.90344,197.08672,37.710938,58.21959,3.73 1530,441.81155,-15.81704,18.846344,38.48851,3.729 1530,59.55964,-13.309425,56.219063,115.91665,3.711 1530,618.6097,490.97095,20.544922,41.11847,3.705 1530,487.6695,123.02237,23.811462,48.723206,3.675 1530,399.9615,194.89526,25.496277,46.700912,3.636 1530,422.10297,-33.075176,28.910492,71.21633,3.618 1530,425.84125,-16.269915,18.227844,39.137394,3.614 1530,444.23947,-23.784172,57.891266,124.78046,3.581 1530,130.3148,-16.878534,17.917465,38.840378,3.579 1530,483.2436,-15.876057,32.888855,68.44357,3.554 1530,394.67987,-38.19252,59.2229,129.89111,3.544 1530,264.81915,229.61467,24.532135,48.89067,3.526 1530,581.7766,-35.190525,27.960815,72.86613,3.525 1530,67.73788,194.53024,32.340767,59.358597,3.518 1530,474.46683,111.865166,33.408203,68.01966,3.501 1530,147.37555,210.76505,32.485153,48.815643,3.464 1530,554.4332,-15.491538,17.563171,37.489017,3.461 1530,362.688,-20.93938,59.50403,120.07718,3.416 1530,438.31244,-32.68683,29.399353,69.98469,3.415 1530,272.70038,172.39165,21.534332,39.176224,3.408 1530,92.751,201.04245,30.268303,63.618835,3.388 1530,-5.3338013,56.185654,17.301247,42.841797,3.384 1530,234.97337,175.17302,59.133713,120.420395,3.37 1530,618.8732,-7.534281,19.759338,42.937332,3.356 1530,521.3397,-40.352432,60.922974,131.89809,3.335 1530,531.4717,-134.52939,115.56213,268.91837,3.312 1530,603.03656,-15.98811,53.33441,141.96208,3.305 1530,-6.0856657,38.316593,18.8946,45.890484,3.302 1530,192.56848,-7.850521,45.99344,92.01254,3.272 1530,138.4601,-18.030745,17.801956,39.703613,3.271 1530,332.71683,-15.569347,56.378265,114.27106,3.266 1530,78.24409,206.77153,33.685074,58.706955,3.265 1530,546.84625,-15.356962,17.463928,37.667004,3.264 1530,292.2568,225.27959,30.860504,60.652542,3.263 1530,-4.82728,244.12402,17.2154,44.60858,3.261 1530,433.8261,-15.286591,18.354553,38.21084,3.256 1530,526.2875,-34.27925,27.959839,68.20281,3.244 1530,412.933,-14.543158,31.261993,58.685394,3.239 1530,309.3305,228.49832,31.050201,56.49298,3.239 1530,572.3195,-23.166164,56.527283,132.44588,3.225 1530,490.30402,-38.345108,60.239624,131.25,3.222 1530,418.13092,-15.361184,18.168213,37.701115,3.204 1530,594.1118,-17.04203,18.411743,40.39821,3.199 1530,597.56885,-22.920055,40.416626,95.71658,3.196 1530,35.141426,-14.198837,33.779404,65.64754,3.188 1530,58.491077,-17.7674,17.689236,39.54047,3.168 1530,546.5204,412.42545,83.74725,168.48727,3.165 1530,276.0581,184.70004,31.273468,62.054337,3.155 1530,-5.100816,72.39799,16.597403,41.362114,3.146 1531,-13.255871,-39.219635,42.33593,98.981514,6.597 1531,-6.327331,-17.728466,18.788153,43.566143,6.537 1531,-6.5970087,489.41098,19.575352,43.47403,5.975 1531,-12.905233,478.19345,31.578794,62.472626,5.94 1531,610.4304,-48.928757,42.192505,99.961555,5.866 1531,626.94183,-19.275944,17.624573,48.473522,5.549 1531,-20.120142,-84.70114,72.21838,194.33946,5.196 1531,613.29645,454.43378,39.549316,107.02112,5.181 1531,586.2412,-97.37933,74.10327,229.83258,5.152 1531,490.36557,-180.2731,234.58652,427.5659,5.055 1531,-73.55881,265.1817,201.2304,461.9803,5.046 1531,583.0604,410.20288,71.85864,177.75952,4.913 1531,-17.38732,435.28952,55.036064,138.69498,4.906 1531,-71.34509,-190.70569,212.74765,458.3847,4.83 1531,-36.303238,-128.16548,116.95475,274.08743,4.825 1531,536.3157,311.0849,143.047,340.8376,4.789 1531,-40.616333,366.5193,111.141426,274.85657,4.693 1531,626.3163,487.24368,21.57074,46.40445,4.432 1531,493.34897,225.9266,238.16318,516.18054,4.356 1531,517.051,208.88849,36.453186,67.64905,4.301 1531,-6.8025436,231.24342,19.869583,47.29576,4.299 1531,302.20322,-34.5565,28.96994,68.54257,4.227 1531,298.30115,-16.547495,18.489197,38.443916,4.192 1531,306.1814,-16.053686,18.621094,38.59589,4.116 1531,138.85645,-13.377884,16.11679,32.76575,4.07 1531,418.31146,206.314,36.844116,64.67941,3.924 1531,267.26965,-2.635787,19.05655,35.899128,3.922 1531,2.244286,-16.787394,18.319077,41.796387,3.875 1531,155.25336,-14.003567,16.16275,32.500774,3.86 1531,494.34338,-35.49171,28.624878,71.51406,3.82 1531,163.2475,-14.122982,16.570526,33.72455,3.804 1531,139.3031,-0.73753834,16.929138,29.969006,3.789 1531,97.7711,204.66467,36.58043,56.49005,3.767 1531,276.69205,-15.437757,32.92682,58.870663,3.719 1531,8.587444,-87.86441,74.68349,203.07895,3.714 1531,1.6389525,233.56888,25.228395,72.199066,3.704 1531,446.1883,-34.407448,28.707275,71.6033,3.7 1531,528.88477,-43.665348,45.855896,94.83052,3.633 1531,49.714874,-14.191505,44.47032,77.77737,3.609 1531,147.08041,-13.150378,16.160095,31.759464,3.604 1531,79.04745,207.35077,38.91722,57.94629,3.6 1531,35.701694,-32.57763,30.599995,66.46262,3.593 1531,20.136353,-33.297684,31.201897,72.23045,3.581 1531,-4.750532,259.55743,16.834976,43.292267,3.561 1531,58.07556,-27.825157,60.67305,115.264084,3.548 1531,-11.390571,221.22998,30.422085,70.454834,3.528 1531,90.69442,-2.1358643,19.554436,32.45265,3.52 1531,283.26324,-4.4266644,19.600586,36.4878,3.506 1531,340.29233,78.08129,31.971039,67.09641,3.481 1531,163.23334,205.61838,34.23764,62.88214,3.475 1531,189.14764,-16.454817,30.690018,61.302284,3.469 1531,155.82907,-1.5875759,17.425491,28.731308,3.465 1531,441.7511,-18.071846,18.815796,41.992794,3.463 1531,497.09778,-43.728,45.739685,94.60736,3.454 1531,297.1886,-38.821007,60.643707,134.19391,3.437 1531,444.69266,-59.82278,55.964233,131.3416,3.417 1531,275.0412,-3.580268,18.983795,36.952442,3.397 1531,67.213104,201.43184,35.623055,57.486465,3.392 1531,74.75395,-0.5271158,20.20916,31.67656,3.383 1531,560.6614,-44.601456,46.10797,95.470825,3.363 1531,290.3886,-15.811401,18.102509,37.183437,3.361 1531,465.0189,-44.33922,45.75943,94.11567,3.359 1531,131.99886,-1.5051765,16.61705,31.700687,3.358 1531,186.69487,-17.330898,16.877548,39.208614,3.34 1531,80.051895,-38.617836,47.68042,88.185356,3.336 1531,412.13837,113.57916,32.673187,67.607056,3.333 1531,79.03364,205.366,26.213745,35.705154,3.316 1531,361.43384,91.13732,21.731903,44.484764,3.314 1531,170.83144,-15.827641,16.696777,36.464745,3.314 1531,266.3124,-16.766134,17.356659,37.803364,3.295 1531,450.23685,-17.843552,18.6362,41.002148,3.283 1531,618.805,-19.13427,17.924011,45.558136,3.282 1531,-8.472022,118.381516,38.473373,104.26993,3.271 1531,314.02597,-17.754921,18.61438,40.24564,3.265 1531,123.98185,-2.3931417,17.221565,31.585533,3.253 1531,-10.035011,-1.870842,39.801815,95.840614,3.245 1531,198.29897,-34.245796,28.298492,69.02285,3.245 1531,239.89603,-41.123913,47.49362,92.375175,3.243 1531,396.17688,117.077805,32.83194,67.52495,3.236 1531,336.17078,-43.25656,47.32016,95.73127,3.233 1531,74.546265,-14.601032,17.80101,35.232407,3.232 1531,571.13873,-45.154675,58.719055,140.7216,3.222 1531,208.39674,-41.706253,46.942917,93.06691,3.215 1531,171.99617,20.073177,31.956558,66.36873,3.213 1531,427.6051,114.57393,31.828522,70.266815,3.21 1531,522.693,-4.953102,20.695374,39.655804,3.192 1531,426.4891,-43.9613,58.9321,137.68045,3.185 1531,274.44714,-15.910559,17.074066,36.978443,3.184 1531,282.34952,-16.84326,17.453735,37.218365,3.177 1531,318.25458,-34.612648,28.82135,69.37289,3.176 1531,476.918,-61.166584,55.71335,132.28943,3.172 1532,-5.809061,-16.74623,17.747501,41.465168,6.933 1532,-12.68147,479.5062,30.962921,61.664948,6.388 1532,627.08704,-17.867065,17.376465,45.58207,5.954 1532,-11.366875,-31.545614,29.844103,72.34795,5.839 1532,-6.5674505,489.97253,19.111263,42.635315,5.659 1532,610.5695,-47.732235,42.10962,98.56063,5.518 1532,585.6878,-95.33349,74.38336,227.4667,5.496 1532,-20.403545,-85.42689,72.371185,194.75429,5.306 1532,621.71173,476.5387,29.590393,66.57318,5.228 1532,490.35892,-181.07187,235.01822,429.27893,5.116 1532,-73.63316,265.37152,202.17905,462.39905,5.065 1532,-35.829185,-128.00818,116.62482,273.5876,5.058 1532,-22.059803,401.48093,79.94715,175.77158,5.003 1532,582.94684,410.26886,72.17267,177.80621,4.933 1532,536.3975,310.68677,143.03558,341.07312,4.912 1532,169.4043,209.12335,43.815918,67.34735,4.769 1532,2.9364872,-15.221941,16.85044,39.026608,4.677 1532,-70.99841,-189.86008,212.34201,458.23764,4.602 1532,5.4492164,88.87839,31.034883,67.743256,4.404 1532,493.37592,226.11554,238.52924,516.16235,4.362 1532,-9.03626,-19.688578,38.507137,98.618965,4.247 1532,12.37323,-18.05278,57.124382,120.90014,4.215 1532,401.4555,-12.635391,43.885864,79.01012,4.211 1532,345.86276,-5.5652466,34.006775,63.60485,4.075 1532,145.6223,207.5883,47.659134,73.19594,4.048 1532,4.3503103,-15.328344,30.47879,64.11297,4.036 1532,394.18304,-15.335105,18.249237,36.092648,3.922 1532,10.037224,-15.393526,17.844706,38.217857,3.918 1532,-5.6169004,117.55893,17.605682,43.55307,3.917 1532,326.08704,-33.25727,29.688293,74.45715,3.905 1532,123.52156,-3.6473541,18.284271,32.891556,3.856 1532,-6.4889264,95.043236,19.821512,46.219917,3.838 1532,619.3092,-17.890549,17.308777,42.29974,3.817 1532,315.22748,-15.523241,16.408905,37.133945,3.76 1532,-11.803428,89.629395,30.116089,68.165955,3.674 1532,1.8330908,491.8178,19.888062,41.357788,3.619 1532,180.86514,-12.922834,31.140762,66.56305,3.599 1532,25.878077,-15.956497,18.11873,38.84373,3.567 1532,627.57605,478.86884,19.120605,43.74884,3.566 1532,383.8069,-35.416454,48.00705,86.08786,3.529 1532,2.1463084,-0.06998825,20.423338,45.876617,3.471 1532,18.132025,-14.99794,18.167978,37.818703,3.461 1532,458.40317,-16.125696,17.24466,37.619427,3.459 1532,182.00006,182.41956,59.276764,106.29773,3.45 1532,194.77155,-3.5989475,19.546143,41.70375,3.44 1532,524.0235,-3.9176588,17.617004,36.251152,3.434 1532,5.3393803,467.2536,38.538147,94.54767,3.432 1532,90.011215,-19.203821,18.387001,38.576008,3.428 1532,531.7582,-133.99568,114.54016,267.80997,3.421 1532,19.665516,-14.754219,32.084534,61.384766,3.411 1532,612.93225,436.96475,39.88916,97.22995,3.411 1532,330.21237,-14.26098,17.594482,37.51554,3.408 1532,163.39333,-14.2664585,15.892044,37.817554,3.389 1532,140.31389,-1.329958,17.128448,31.708939,3.389 1532,355.184,-18.357563,33.21704,64.51414,3.382 1532,617.65063,488.90506,22.002136,43.5784,3.362 1532,323.33524,-14.038978,16.794922,36.447807,3.353 1532,156.57083,-1.3440189,16.86055,34.410744,3.35 1532,-5.8152175,136.40831,18.080708,41.30188,3.332 1532,32.1996,-5.957161,46.55832,88.631424,3.327 1532,153.44984,206.47621,62.116623,119.95116,3.325 1532,3.5191727,-10.865326,42.2329,103.06651,3.319 1532,155.71153,-14.528763,15.678986,37.23559,3.312 1532,386.42917,-15.094254,17.98642,36.180813,3.299 1532,128.83707,204.30145,46.62184,75.16632,3.293 1532,335.36475,-38.91659,48.106323,90.80968,3.286 1532,-1.2619364,70.01952,29.87342,73.63508,3.284 1532,522.76416,-16.171503,16.594421,37.27838,3.283 1532,387.50665,1.051302,34.28244,58.388428,3.275 1532,187.37228,-1.8977623,18.85521,38.923794,3.275 1532,378.72052,-2.28784,20.19397,36.078354,3.27 1532,171.88074,-2.6695023,17.734741,36.64713,3.269 1532,68.484665,-17.34838,32.238052,62.214714,3.264 1532,416.95514,-15.194626,34.77487,61.800705,3.261 1532,463.9717,-40.93871,47.22647,91.25045,3.227 1532,490.5464,-38.55973,59.918335,129.58192,3.223 1532,409.5964,-15.948853,18.635223,39.00422,3.221 1532,372.54907,-2.7925014,33.25598,59.062584,3.216 1532,533.9514,-17.533127,29.672363,63.735363,3.211 1532,345.50323,-15.9484825,18.565216,39.481365,3.209 1532,330.86658,-1.6924171,32.99176,65.73059,3.202 1532,402.19128,-14.978355,18.319641,36.623734,3.193 1532,606.61676,-34.490814,27.563904,72.270096,3.191 1532,85.42958,-33.11189,28.859962,64.472595,3.186 1532,12.827372,-2.6184254,30.085146,60.53617,3.184 1532,-5.909414,0.041067123,18.689577,44.163734,3.183 1532,431.69998,-39.51919,47.754517,90.677956,3.182 1532,34.291477,-4.2418118,20.312195,39.40394,3.173 1532,42.922432,-31.105686,58.20897,122.183945,3.161 1533,-6.0301867,-18.033363,18.028788,43.408314,5.975 1533,-11.489078,-31.963367,30.040768,72.360466,5.868 1533,626.213,487.52945,21.763184,45.881073,5.746 1533,610.802,-47.941357,42.06067,99.7448,5.677 1533,-6.5526047,490.07385,18.667606,42.266357,5.602 1533,-9.050863,464.93054,38.20995,90.91724,5.478 1533,-12.943136,478.81006,31.027512,61.506042,5.385 1533,585.8811,-97.08295,74.26941,230.17949,5.299 1533,490.51355,-180.65176,234.6576,429.22147,5.268 1533,627.3292,-16.889778,16.779358,44.546185,5.176 1533,-20.383106,-86.03509,72.30766,194.80171,5.12 1533,613.4104,454.0634,39.69641,107.25186,5.054 1533,-22.091036,401.58942,80.2371,175.66699,4.948 1533,583.1412,410.34546,71.82782,177.64783,4.93 1533,-74.05702,265.5255,202.29202,462.27173,4.859 1533,-36.393166,-129.39711,117.19283,275.45453,4.851 1533,536.5723,310.1833,142.61615,341.35596,4.844 1533,-71.7713,-189.73724,213.1874,457.2042,4.764 1533,617.90784,489.5025,21.70514,43.59259,4.547 1533,493.1115,225.66382,238.5528,516.12854,4.346 1533,-9.638985,-19.94366,38.81246,96.38582,4.164 1533,-5.565425,-0.042085648,18.147392,44.73494,3.97 1533,283.16727,1.9752617,19.676208,41.71377,3.789 1533,1.8041801,-38.34659,43.543903,95.18604,3.765 1533,203.28699,3.2751255,19.528442,39.49208,3.729 1533,269.84158,-13.700697,29.59198,61.237953,3.659 1533,555.8017,-2.8469725,18.46521,35.649582,3.655 1533,2.0800924,-16.414663,17.683632,40.77028,3.614 1533,220.27753,-1.9688148,17.199799,34.271835,3.582 1533,27.516953,-14.0169525,31.824898,60.643265,3.579 1533,275.99597,-3.125494,17.451538,37.717278,3.569 1533,-4.7411447,235.39714,15.456133,36.420914,3.563 1533,491.91223,-3.6728725,17.769806,37.20986,3.541 1533,619.99646,-3.9265747,17.565979,38.855324,3.465 1533,75.72603,-3.817603,18.014503,34.524624,3.453 1533,188.98207,-1.6179848,16.784317,32.33754,3.44 1533,172.21426,-1.624836,17.167511,31.56324,3.433 1533,566.0779,-32.6985,28.32373,70.5962,3.396 1533,603.60657,-28.001476,52.773376,142.19194,3.381 1533,2.262622,491.89697,19.344894,40.604736,3.36 1533,571.53394,-5.972431,19.16455,40.164932,3.323 1533,451.46756,-4.7034893,18.75589,38.747795,3.317 1533,267.42865,-0.6609783,18.788452,43.761795,3.314 1533,252.3544,-4.2629814,17.066528,38.318848,3.296 1533,228.15498,-3.0436258,17.286942,35.95557,3.286 1533,539.6703,-15.806818,16.126953,37.492115,3.285 1533,285.14246,-13.901081,29.99591,61.531982,3.276 1533,212.03133,-1.7122431,17.128693,34.86843,3.271 1533,610.3162,489.84888,20.570251,42.296814,3.268 1533,236.38872,-3.3395405,17.247025,36.4302,3.261 1533,615.6023,-19.705658,26.707153,69.485,3.258 1533,563.62665,-4.9338675,18.90741,39.168457,3.256 1533,411.15625,240.1988,52.795105,131.91539,3.247 1533,5.605179,466.83084,38.146164,94.50479,3.233 1533,180.44054,-1.6753483,16.809708,32.12998,3.206 1533,205.12404,-13.958477,29.739227,61.26581,3.201 1533,2.8377295,-21.002682,50.785904,129.67505,3.201 1533,540.63184,-1.9048424,16.417664,33.94754,3.191 1533,532.10455,-136.11539,114.56,271.15524,3.176 1533,459.6475,-5.2206144,18.35965,38.221863,3.17 1533,554.94037,-16.286953,16.828796,37.544323,3.166 1533,573.75525,-24.907982,53.2912,135.00394,3.155 1533,316.46304,-2.6782494,17.147552,33.594322,3.146 1533,196.97574,-1.3825731,16.700806,33.60141,3.141 1533,84.03449,-4.7336617,17.67971,34.746407,3.131 1533,396.1098,4.535816,17.335968,38.09828,3.118 1533,582.13385,-33.700447,28.219604,71.578285,3.116 1533,187.68044,-14.330405,15.484772,35.094093,3.102 1533,308.28522,-2.434761,17.2966,34.49927,3.101 1533,443.39252,-4.385314,18.91217,38.331608,3.1 1533,290.7464,3.1525536,19.792603,40.061893,3.086 1533,74.830086,-33.824417,59.827385,125.46483,3.081 1533,546.3738,411.8346,83.97833,168.47827,3.08 1533,379.23447,213.40448,57.708954,139.73553,3.078 1533,133.10995,-17.533176,31.04181,61.67571,3.075 1533,198.72095,-33.730892,27.71376,71.514,3.075 1533,229.92136,-14.468315,29.323456,61.55052,3.072 1533,86.89043,-33.28791,27.930481,65.668,3.071 1533,547.22034,-14.859409,16.65039,36.563366,3.062 1533,467.7728,-5.279866,18.262299,38.81296,3.059 1533,548.1383,-1.6123466,17.283813,34.550694,3.041 1533,203.19614,-14.893005,15.606842,36.97037,3.036 1533,427.88562,-4.7945786,18.299133,38.778984,3.03 1533,535.079,-33.448895,27.351868,68.68819,3.015 1533,156.1767,-2.3164272,17.56958,34.38865,3.006 1533,75.29608,-16.137484,16.34311,35.47186,3.004 1533,491.0306,-16.490635,16.471832,38.34744,3.004 1533,555.04346,-40.6435,57.694275,134.0196,3.003 1533,278.2883,-32.47731,27.858429,70.29786,2.994 1533,250.90717,240.59892,33.288086,58.29036,2.994 1533,41.903034,-33.147537,60.029858,125.59055,2.971 1533,475.81943,-3.8064957,18.19992,37.37606,2.97 1533,612.7309,331.69257,37.74829,112.21002,2.969 1533,435.45322,90.93333,32.12845,67.49688,2.963 1533,236.01715,240.6771,32.36841,59.9411,2.962 1533,598.1012,461.51926,38.43091,98.706635,2.96 1533,419.61053,131.13164,30.950409,74.30846,2.951 1533,598.2776,-22.81404,39.70923,94.202385,2.946 1533,240.1252,-39.823208,47.116196,91.076164,2.945 1533,299.77847,-2.3458176,17.572784,34.575233,2.941 1533,500.11063,-4.1038027,17.173248,38.334785,2.938 1533,300.09415,260.01163,17.70871,30.451843,2.932 1533,260.23343,-5.0147,17.172241,39.070404,2.93 1533,140.30215,-2.9719448,17.17778,35.70513,2.911 1533,432.2238,-40.74449,46.690887,94.21445,2.91 1533,90.76503,210.02667,33.572357,57.471924,2.904 1533,422.17902,-16.444927,29.7984,64.888016,2.902 1533,67.6043,-3.7410393,18.089989,35.919704,2.9 1533,244.61388,-3.7437763,16.938065,37.89827,2.897 1533,435.68924,-4.7787685,18.614197,39.329132,2.896 1533,111.93371,-39.353676,47.72982,90.33517,2.892 1533,457.94635,96.75062,20.419128,38.957787,2.89 1534,-11.364939,-31.56629,29.73585,70.51618,6.842 1534,-6.033418,-17.923235,18.131042,42.06806,6.829 1534,627.1962,-17.612118,17.261475,44.971233,5.567 1534,625.9524,486.75742,22.110352,47.04605,5.505 1534,-13.050758,477.12375,32.053055,62.730194,5.459 1534,613.6358,453.77417,39.377625,108.007324,5.295 1534,610.8679,-47.358265,41.943665,99.16533,5.195 1534,-22.272778,400.33066,80.18904,177.27011,5.147 1534,-20.410465,-86.74014,72.33174,196.14551,5.029 1534,583.2276,410.5799,71.644714,177.4455,4.939 1534,-6.409574,488.6759,19.03295,43.89673,4.909 1534,-73.44096,266.82092,201.64896,460.07532,4.876 1534,531.7112,-181.80789,149.93701,419.774,4.874 1534,-72.10509,-190.39978,213.59514,458.16183,4.823 1534,585.94653,-97.03737,75.105835,230.40057,4.798 1534,-36.350334,-130.21498,117.26009,276.55194,4.752 1534,536.48425,310.48712,142.91705,341.4237,4.651 1534,493.00653,225.89627,238.4035,516.8356,4.448 1534,-9.795451,-20.131384,38.79407,97.80609,4.276 1534,2.985431,-16.299976,16.971941,38.65575,4.255 1534,-5.941474,-0.5688877,18.30023,43.833206,3.939 1534,315.4896,-5.2867937,19.325714,39.050312,3.888 1534,617.67755,488.4698,22.113953,44.268616,3.786 1534,1.8314314,-38.780846,43.317917,97.429115,3.771 1534,331.4416,-4.8909073,18.951752,39.50122,3.709 1534,307.14877,-5.957634,19.612854,39.96845,3.68 1534,459.75586,234.12569,18.510315,35.094254,3.44 1534,339.52368,-5.006399,18.281464,39.87835,3.371 1534,323.33734,-5.1294346,19.189758,39.58776,3.367 1534,224.55254,-41.91304,45.935715,90.54422,3.344 1534,256.9755,-42.69776,45.443207,91.63997,3.323 1534,619.0011,-18.4232,17.230042,42.589104,3.318 1534,202.70622,-5.1369514,20.020996,41.26958,3.302 1534,299.2163,-5.97974,19.712952,40.02783,3.245 1534,194.53706,-4.532387,20.06517,41.44262,3.218 1534,204.2638,-16.00227,32.291397,66.91937,3.203 1534,236.60216,-5.3182487,30.336441,66.9245,3.175 1534,10.177732,-16.588675,17.16773,38.92448,3.167 1534,282.71313,-8.339355,20.552246,43.05085,3.164 1534,288.94098,-41.634727,45.600403,90.89083,3.154 1534,-5.0894737,90.391945,16.595938,40.752388,3.145 1534,243.63197,-18.769554,33.250534,71.60477,3.14 1534,347.6929,-5.059947,17.837921,39.153194,3.138 1534,546.3941,412.39856,83.71521,167.78528,3.114 1534,464.34344,-39.201767,46.958862,90.834496,3.106 1534,613.2058,111.296524,36.703125,104.59491,3.101 1534,441.331,-16.22696,18.722046,42.003002,3.095 1534,2.8014064,-20.402493,50.390083,133.50723,3.076 1534,431.649,-41.05445,47.218323,92.67917,3.073 1534,598.0647,461.17493,38.73065,99.55066,3.044 1534,186.42911,-4.768301,20.58879,40.501053,3.027 1534,234.33542,-40.6425,58.372192,130.98616,3.009 1534,218.49814,-17.322418,17.520172,39.862473,2.997 1534,5.2829638,463.616,38.25956,98.95993,2.992 1534,210.70203,-6.8981857,20.55008,42.458878,2.989 1534,274.7141,-9.166285,20.613495,45.212242,2.957 1534,266.32416,-8.720126,21.11734,45.737976,2.957 1534,325.01468,-15.297085,31.193756,63.02484,2.956 1534,399.83594,-41.434082,47.280304,92.326744,2.956 1534,266.9283,-40.379776,57.39023,131.46545,2.949 1534,474.4609,235.01457,18.913147,35.961502,2.944 1534,314.96692,-35.399673,59.12268,129.17383,2.935 1534,90.855804,-16.271303,16.557182,38.075066,2.925 1534,358.2678,-15.528687,29.609283,64.338066,2.924 1534,98.88744,-15.699791,16.79055,37.43651,2.922 1534,310.2689,-32.72299,28.207062,69.39554,2.913 1534,176.43607,-41.440125,46.942215,92.84653,2.913 1534,-5.2898865,249.25717,16.603209,40.246033,2.901 1534,2.8061252,0.26314735,19.679953,43.23353,2.894 1534,496.07877,-39.090374,47.57907,90.1294,2.874 1534,-9.060535,263.51843,39.193333,102.609924,2.873 1534,-5.061035,72.665886,16.772501,41.30829,2.873 1534,613.4456,220.07481,36.13263,113.88335,2.857 1534,554.99835,237.50842,18.610962,34.08966,2.853 1534,62.16835,-15.2265,29.224289,66.86559,2.849 1534,220.35338,-15.582529,33.560486,66.48091,2.847 1534,250.35083,-7.4020224,21.539917,45.453625,2.847 1534,-4.9315963,56.992393,16.612383,40.421967,2.835 1534,-9.676842,167.46527,39.029167,104.851166,2.824 1534,473.65594,-28.0818,61.900024,119.46057,2.809 1534,110.7042,-33.736965,28.113457,72.799,2.807 1534,181.00726,-3.913515,30.01538,63.14508,2.806 1534,539.544,245.28577,19.254517,41.343933,2.806 1534,144.39592,-40.8173,46.82007,92.71533,2.803 1534,45.34086,89.65999,32.986237,69.35762,2.798 1534,439.80328,-3.1085815,22.751465,42.11231,2.796 1534,106.68266,-16.073364,16.730186,38.251537,2.791 1534,442.28693,-30.534178,61.12732,121.326866,2.789 1534,130.59203,-15.583892,17.111755,37.00089,2.789 1534,342.092,-32.9645,28.251343,70.991165,2.783 1534,418.1272,-17.122938,18.710205,41.181026,2.772 1534,29.257128,-14.760595,29.552382,63.16874,2.765 1534,613.79407,176.1037,36.04059,104.877014,2.754 1535,475.29608,58.787685,33.154236,73.61195,6.653 1535,627.39246,-16.168879,16.77655,43.72089,6.651 1535,-6.201554,487.90414,18.868465,44.89206,6.26 1535,-12.608549,476.39236,31.546116,64.31979,6.18 1535,-5.929649,-17.089743,18.019583,42.023052,5.983 1535,-11.42187,-32.014862,29.963604,72.08911,5.967 1535,626.193,487.5097,21.703674,45.69806,5.878 1535,611.4617,-47.280136,41.253174,101.85236,5.857 1535,623.4248,-33.78037,25.886475,73.00259,5.596 1535,-17.545898,-62.871704,56.32376,141.68501,5.117 1535,-22.032017,400.9512,79.89216,176.76236,4.998 1535,-72.8265,266.2667,201.0177,460.74918,4.99 1535,583.2164,410.65356,71.694824,177.36914,4.947 1535,613.5833,454.1802,39.13629,107.44211,4.836 1535,-36.198162,-129.94492,116.58984,277.10788,4.801 1535,490.76196,-180.593,233.73328,425.6111,4.717 1535,-71.96899,-189.92389,213.58813,457.41437,4.662 1535,536.2499,310.80716,143.19623,341.38058,4.656 1535,585.85095,-98.13939,75.24255,231.42154,4.639 1535,492.88388,225.90546,238.4495,516.8426,4.479 1535,618.0402,40.028778,20.943848,51.699112,4.456 1535,619.68567,-16.536106,16.363342,39.950054,4.101 1535,618.1699,489.32254,21.372986,42.903778,4.077 1535,2.7765636,-16.861683,17.55329,40.78631,4.015 1535,438.99277,189.28346,27.949402,58.71811,3.988 1535,488.696,58.190063,33.268463,71.45819,3.855 1535,138.99136,3.5042515,19.348404,40.49627,3.831 1535,499.38565,214.05563,31.439789,68.39749,3.716 1535,-9.766131,-6.3292656,40.02861,100.79387,3.696 1535,5.5006504,-34.66246,29.458029,76.67038,3.543 1535,26.925873,-15.178995,33.726025,62.39373,3.532 1535,42.08851,-17.838202,18.065372,39.73032,3.493 1535,107.35138,1.0550842,19.558258,41.98152,3.486 1535,123.35475,1.4952984,19.906937,42.946434,3.463 1535,93.312256,-13.776508,29.866516,60.39891,3.457 1535,9.146006,-92.28501,74.740456,208.56358,3.428 1535,448.5593,202.21771,21.695862,42.56711,3.374 1535,132.66058,-15.910495,30.852234,63.427143,3.364 1535,117.36235,-15.229807,30.835999,63.567368,3.363 1535,58.799496,-17.53482,17.462582,39.023453,3.345 1535,147.34172,3.9467087,19.008041,38.117546,3.344 1535,21.91407,-34.66268,29.204773,72.57703,3.341 1535,33.87092,-16.970243,18.245316,38.827164,3.303 1535,457.71735,205.89629,21.671753,43.93103,3.287 1535,41.482353,-3.664442,21.512966,37.484413,3.287 1535,50.603672,-16.692402,17.90475,38.821896,3.274 1535,12.011404,-16.214733,32.51622,64.864296,3.258 1535,92.038155,-3.763835,18.043365,36.72191,3.242 1535,155.54639,4.4319744,18.66455,36.727875,3.228 1535,131.01051,2.5972977,19.907639,41.645065,3.204 1535,621.86426,23.807064,26.557922,69.533554,3.185 1535,612.22784,267.5564,37.8808,111.35339,3.16 1535,115.14761,1.2355576,19.862411,41.96142,3.142 1535,-9.411865,358.21033,38.598564,104.3331,3.094 1535,546.4411,412.4344,83.697815,167.99554,3.09 1535,485.77274,207.09827,30.501434,71.798676,3.05 1535,518.5189,214.2272,31.153748,66.681366,3.046 1535,613.6561,206.41074,37.03882,104.60968,3.04 1535,435.96454,209.60162,20.983215,36.335968,3.036 1535,-8.64279,103.77492,38.475857,103.48357,3.033 1535,86.78878,-32.781975,27.54013,68.691475,3.022 1535,627.50635,3.133442,17.880127,43.17492,3.004 1535,273.36826,-15.374424,35.69763,63.420147,3.004 1535,2.1086593,488.9333,19.766481,44.17395,2.977 1535,80.18047,-40.731594,46.79184,92.08131,2.964 1535,2.8646636,459.8494,32.331306,73.084076,2.954 1535,26.083546,-5.17004,21.419807,38.85444,2.94 1535,250.38206,-15.38049,17.296036,37.096645,2.908 1535,37.729027,-31.904055,29.028854,69.017975,2.905 1535,363.3969,224.74246,17.21634,28.024933,2.897 1535,615.6148,-20.251844,26.266357,67.78839,2.88 1535,9.83053,-17.865181,18.270308,41.0119,2.873 1535,-5.700568,2.761465,17.87804,40.711403,2.872 1535,611.9906,-14.478562,15.61908,36.776196,2.871 1535,149.39699,-17.624596,30.331543,61.352783,2.866 1535,172.12569,-3.316822,17.359268,34.48161,2.864 1535,138.99889,-15.916536,16.253052,37.79989,2.861 1535,48.180344,-41.70257,46.40934,91.83664,2.857 1535,99.79508,-3.6301956,17.820122,37.438236,2.856 1535,100.32791,171.71304,30.707672,63.638947,2.85 1536,607.68317,229.06213,21.083374,50.890717,52.311 1536,362.08893,56.92027,33.677826,71.96974,9.467 1536,600.21796,222.40543,34.410706,92.516846,7.124 1536,616.7199,227.45952,19.223389,45.163376,6.775 1536,626.7481,-17.34748,17.680603,47.108833,6.513 1536,-5.755396,-17.498775,17.56819,41.69587,6.107 1536,621.7936,-32.889637,27.682678,75.93429,5.858 1536,-11.367474,-31.839787,29.674496,71.93287,5.838 1536,-12.758764,475.73557,31.592632,64.27078,5.816 1536,602.19183,-56.22454,53.497192,136.1065,5.556 1536,591.5138,226.96187,29.088501,62.613388,5.536 1536,626.22144,488.26498,21.524048,45.084076,5.476 1536,-6.449128,488.06357,19.143734,45.27713,5.168 1536,-73.20568,265.53363,201.47919,461.49,5.119 1536,580.44104,229.4295,30.085144,63.674316,5.109 1536,613.3535,453.78687,39.553223,108.02576,5.034 1536,-21.959276,401.38657,79.807976,176.52383,5.017 1536,626.9548,226.71608,17.641174,45.096207,5.007 1536,583.0971,410.75717,71.66174,177.31345,4.976 1536,-17.406494,-61.53556,55.705727,143.24388,4.91 1536,586.0774,-98.008194,74.28601,230.58522,4.879 1536,495.11426,220.94989,27.478577,68.14554,4.819 1536,491.64078,-182.04027,233.16422,426.32294,4.799 1536,536.1415,310.20807,143.63031,341.50397,4.742 1536,-36.833427,-130.26726,117.496574,277.99207,4.727 1536,493.3954,226.34186,238.12292,516.0837,4.533 1536,613.1074,243.68086,36.98816,116.73198,4.517 1536,603.3053,224.60645,19.327637,41.79831,4.482 1536,619.1181,-4.584692,19.087341,43.12377,4.469 1536,322.62866,213.01996,19.709839,35.206863,4.423 1536,446.53394,220.75449,26.468323,61.34503,4.389 1536,-71.8588,-189.45038,212.5777,455.93085,4.365 1536,594.3772,-42.839874,44.923462,97.266174,4.333 1536,580.8329,229.87433,39.65088,105.0177,4.275 1536,618.64844,489.62692,20.870056,43.18936,4.218 1536,259.8243,211.84055,16.540192,29.423843,4.106 1536,422.9577,217.7218,28.612305,64.3136,3.995 1536,507.01614,228.18488,33.06064,68.10852,3.901 1536,612.2387,202.31664,32.569763,93.29942,3.77 1536,329.45868,215.1413,20.132751,36.648163,3.73 1536,58.978928,3.4098701,19.504333,40.362415,3.67 1536,418.15338,213.26328,22.71698,48.004852,3.63 1536,337.9503,211.4499,21.36676,37.966827,3.615 1536,626.11804,240.63399,19.789307,52.987167,3.59 1536,-9.634193,-6.168686,39.736343,100.844246,3.573 1536,173.918,196.6996,31.152802,52.364624,3.567 1536,-5.005257,0.18861961,17.149916,42.64776,3.564 1536,589.43964,-16.180628,31.259766,66.80328,3.534 1536,318.0041,208.29732,15.243042,25.637177,3.532 1536,485.99268,233.10672,29.650085,64.52298,3.525 1536,3.2193093,-14.910776,16.19407,37.626865,3.457 1536,590.14734,231.9331,51.364624,170.15076,3.451 1536,346.2171,210.0921,21.19049,39.406647,3.442 1537,525.05914,218.91672,28.882202,71.638214,10.509 1537,341.4593,49.78664,33.822144,65.069046,8.945 1537,-5.799507,-17.423853,17.406357,40.698746,7.203 1537,306.46576,204.27159,19.30597,39.762573,6.722 1537,-6.1126137,488.16974,18.407778,44.256775,6.425 1537,-12.505598,476.61813,31.195972,64.331696,6.179 1537,-11.512547,-31.447466,29.621317,69.577385,6.125 1537,626.52515,488.15778,21.192505,44.59784,5.443 1537,613.61835,453.49396,39.26239,108.86444,5.413 1537,511.08395,218.32635,29.305328,71.18341,5.341 1537,627.33026,-16.790573,16.983765,44.182137,5.332 1537,-17.551853,436.2742,54.94239,138.3143,5.223 1537,622.9972,-34.422523,26.511536,73.708885,5.143 1537,-73.237625,265.58563,201.63402,461.41583,5.136 1537,-17.488525,-62.280487,55.76728,143.53052,4.951 1537,313.41092,201.98381,19.355316,34.604218,4.95 1537,329.81277,210.77733,19.433167,39.725845,4.928 1537,583.2353,410.47137,71.62201,177.47858,4.811 1537,-40.74078,366.22736,111.489136,275.0562,4.776 1537,536.266,310.05896,143.65948,341.75928,4.751 1537,322.93475,203.48195,18.735016,34.093063,4.734 1537,-36.979,-130.44586,117.386185,278.43695,4.68 1537,534.5242,209.81766,34.34503,76.70706,4.58 1537,493.6775,226.6803,237.7472,515.0481,4.545 1537,603.20123,-55.836594,53.62805,135.35136,4.522 1537,-71.653336,-189.99568,212.60182,457.71478,4.479 1537,493.13135,208.21587,27.631287,67.787735,4.464 1537,491.22235,-178.9708,233.71655,421.99368,4.461 1537,3.326174,-14.942816,16.101858,36.9158,4.245 1537,502.91745,213.42976,26.97403,69.030624,4.243 1537,200.58037,214.8057,23.150772,42.17511,4.202 1537,483.9751,214.16222,29.119873,77.59337,4.168 1537,163.44817,201.61737,34.078506,54.71747,4.168 1537,586.13934,-98.83984,75.302185,231.52428,4.128 1537,455.1213,219.1335,29.721497,75.72313,4.128 1537,191.78322,206.74658,24.995941,44.12967,3.834 1537,409.4382,217.4848,23.539337,49.560852,3.822 1537,147.22826,192.22998,32.53798,53.78453,3.794 1537,313.92252,214.93016,18.950226,37.381943,3.792 1537,282.38303,249.38663,19.374146,36.19989,3.785 1537,147.43463,195.69601,41.463547,86.183136,3.773 1537,260.3132,234.40909,31.590881,60.41986,3.762 1537,324.4781,215.08812,18.258392,38.89154,3.724 1537,266.40112,249.86862,19.885132,36.64279,3.719 1537,4.6604757,-1.9223738,15.957185,34.383415,3.709 1537,469.16962,220.45892,30.904877,79.73035,3.682 1537,229.08673,221.83131,30.572388,63.84175,3.679 1537,274.6217,249.85738,19.493835,35.154587,3.643 1537,594.536,-45.331276,44.97113,98.05864,3.638 1537,550.35876,209.14061,34.36554,80.972855,3.586 1537,-9.560959,-6.488968,39.69876,99.97496,3.583 1537,618.5527,490.36954,20.704407,41.57602,3.582 1537,423.46777,217.40288,26.725037,65.25224,3.581 1537,-5.01878,1.7223854,16.695126,39.299088,3.561 1537,307.63303,222.03647,17.95108,34.99521,3.561 1537,209.40854,211.90167,22.777832,38.54918,3.526 1537,131.63179,193.39658,41.263794,87.885345,3.523 1537,300.63818,187.86942,17.026825,31.003769,3.509 1537,365.69217,195.05356,32.4946,67.91934,3.499 1537,522.1024,215.39882,22.0354,54.354874,3.44 1537,338.0979,219.1135,18.31015,36.89029,3.428 1537,277.27283,239.87419,31.072845,58.417557,3.422 1537,619.4164,-18.044128,16.875854,41.556988,3.399 1537,257.57724,247.33376,21.08551,39.5735,3.392 1537,10.528767,-15.6286745,16.410118,37.451218,3.391 1537,1.7083764,-40.487473,43.47511,99.51435,3.366 1538,353.72592,21.728992,34.78775,65.32802,8.886 1538,-5.6588306,-17.623394,17.374393,41.89119,6.71 1538,-12.775387,476.54712,31.954557,64.00183,6.588 1538,626.7397,-16.55669,17.467957,46.30585,6.324 1538,532.1488,202.53423,28.672424,60.357864,5.978 1538,-6.387418,488.22452,19.234894,45.05899,5.946 1538,587.0549,214.56873,20.079712,41.660217,5.905 1538,-11.165462,-31.83721,29.518753,71.25767,5.741 1538,611.1138,-46.493618,41.52539,99.0942,5.682 1538,601.4733,212.74959,21.542297,42.702225,5.573 1538,625.7798,487.0903,22.416565,46.51236,5.541 1538,613.4199,453.6376,39.736206,107.90512,5.186 1538,-73.38316,265.51422,201.44315,461.89313,5.094 1538,343.3194,193.78609,22.893097,47.402237,5.054 1538,-21.760746,402.35535,79.60048,175.85303,5.025 1538,-20.201145,-87.02653,72.03163,196.6298,4.999 1538,-36.63617,-129.55142,116.91784,278.37936,4.811 1538,583.121,410.73663,71.69641,177.59088,4.787 1538,491.21924,-181.85585,233.27283,424.43527,4.726 1538,536.33307,309.815,143.00653,342.74854,4.664 1538,320.77457,195.6745,18.90152,41.844986,4.6 1538,-71.52187,-189.92392,212.38882,457.73718,4.554 1538,586.45184,-99.30272,74.340515,232.65875,4.466 1538,618.76917,-4.5012054,18.976196,42.758595,4.444 1538,493.33145,226.90128,238.10947,516.3822,4.375 1538,519.0058,202.15088,28.95697,59.546204,4.346 1538,598.373,201.52065,34.799377,101.8878,4.34 1538,582.5304,203.63571,37.12915,97.25131,4.334 1538,377.7033,202.56308,22.153717,40.696518,4.299 1538,608.9571,209.11565,19.383911,37.635544,4.261 1538,543.803,210.0,22.092407,47.092102,4.188 1538,217.49586,215.3101,21.573593,37.658478,4.183 1538,106.364624,-2.4707298,21.079155,38.794174,4.132 1538,331.01285,204.49931,20.006989,42.700546,4.076 1538,-9.85441,-19.88506,38.60917,99.16464,4.051 1538,616.571,204.72604,20.078552,50.35797,4.045 1538,203.03354,217.66885,20.103302,35.49037,4.01 1538,454.9406,206.80406,27.958435,68.68001,4.008 1538,613.0998,204.26328,34.68451,107.30957,3.839 1538,-5.0543876,2.0104866,17.108707,40.694633,3.823 1538,3.2549376,-15.003057,16.030191,38.385754,3.8 1538,595.0935,217.75385,19.771729,44.751587,3.796 1538,579.73486,215.52356,19.535156,47.13391,3.772 1538,197.33438,-12.551943,31.260574,63.73448,3.695 1538,98.33416,-3.0319424,20.92743,39.194824,3.691 1538,132.59732,185.25221,29.992584,62.334366,3.677 1538,436.53387,206.95772,29.7359,65.791214,3.665 1538,149.81783,194.06512,31.484055,62.615173,3.661 1538,89.94827,-1.8283195,20.613289,36.551437,3.633 1538,252.53918,147.95673,16.60727,29.571854,3.607 1538,292.216,242.48788,33.088562,61.289917,3.553 1538,168.9086,204.08066,21.685822,47.37776,3.54 1538,91.89421,-11.832058,33.42756,60.86449,3.539 1538,611.16705,-2.1457558,19.557678,40.67204,3.525 1538,268.46088,147.3231,15.899963,29.467865,3.52 1538,617.6643,489.70764,22.237793,43.44348,3.485 1538,209.7091,210.49641,21.877518,37.510345,3.47 1538,90.21816,-15.586375,17.727211,38.27053,3.427 1538,596.39636,-15.67008,32.45099,67.03144,3.407 1538,570.3956,-15.111337,17.41156,37.969727,3.395 1538,622.26117,-9.353327,26.411804,69.536194,3.387 1538,445.14172,213.9086,29.122986,71.04501,3.371 1538,528.9008,205.85751,21.693665,42.772934,3.37 1538,358.30292,39.4738,39.095276,67.70656,3.357 1538,465.68466,200.55069,21.912262,47.94034,3.348 1538,9.232745,-92.139435,74.79292,209.14304,3.344 1538,221.27386,208.13528,28.610794,57.487762,3.336 1538,-4.1973405,263.50677,15.762577,40.540466,3.326 1538,211.13905,-0.34749794,32.71164,60.77382,3.321 1538,-4.1735935,236.18056,16.184145,39.36235,3.321 1539,377.19507,219.03027,22.095886,46.51584,6.818 1539,-5.5674167,-17.318514,17.208607,41.8343,6.647 1539,-12.769246,475.91357,31.692776,64.57129,6.028 1539,370.51202,212.94936,20.445984,43.676376,5.673 1539,626.44543,488.1596,21.411621,45.266113,5.622 1539,627.28076,-17.487957,17.231445,45.337566,5.591 1539,-6.3287067,488.53555,18.988188,44.61795,5.582 1539,-11.24732,-31.845968,29.400064,70.90132,5.568 1539,469.5204,218.76595,30.664429,78.61467,5.518 1539,613.4471,453.85657,39.411438,107.786804,5.442 1539,368.01813,14.923092,35.415833,74.26973,5.397 1539,603.2684,-55.924713,52.927063,137.87752,5.279 1539,540.5826,211.02075,26.322449,70.19769,5.278 1539,325.00226,214.59653,28.951782,70.36331,5.253 1539,622.86646,-34.377087,26.658081,74.47782,5.185 1539,-73.2923,265.4131,201.21799,462.5476,5.097 1539,385.57938,225.59799,20.583649,45.029053,5.02 1539,-17.348228,436.1922,54.890556,138.53094,4.977 1539,340.9643,208.85646,28.27353,61.625534,4.859 1539,583.1394,410.38,71.74036,177.69641,4.842 1539,-17.56662,-62.049187,56.385162,142.61905,4.83 1539,535.93286,310.13898,143.87512,341.62323,4.764 1539,-40.68923,366.47952,111.44858,274.2701,4.731 1539,491.03696,-180.83427,233.45432,424.65073,4.627 1539,-37.073654,-128.52144,117.01125,276.96823,4.484 1539,585.9501,-98.35481,74.44751,231.77951,4.445 1539,493.703,226.95197,237.73071,515.06,4.415 1539,-71.35827,-188.83908,211.8042,454.87585,4.379 1539,550.28815,212.2237,27.161926,60.690186,4.313 1539,3.4798741,-14.8176155,15.741301,37.77815,4.259 1539,360.39825,210.0383,26.678284,56.75717,4.217 1539,539.6638,213.92854,19.704224,42.051743,4.189 1539,385.72635,214.58621,18.537811,32.78003,4.173 1539,618.86487,490.7343,20.657288,42.475647,4.172 1539,561.3624,220.8424,21.593872,46.855347,3.908 1539,-4.3848515,2.4110909,15.994652,39.056427,3.834 1539,338.0465,210.85033,21.294891,45.112656,3.806 1539,352.33936,216.37051,22.954834,51.42401,3.764 1539,595.1246,-45.6797,43.097717,101.23406,3.761 1539,401.35834,216.25403,21.23767,40.022217,3.724 1539,121.503784,234.08835,20.267395,37.285248,3.65 1539,619.07153,-18.15349,17.36206,42.296024,3.638 1539,534.1194,234.04846,29.832764,69.313354,3.62 1539,583.87274,203.89284,34.302246,91.07695,3.581 1539,546.9192,215.17154,17.294434,34.510513,3.558 1539,-5.1699014,186.90977,16.549849,39.726913,3.55 1539,599.57886,204.53468,34.121826,107.17912,3.474 1539,332.15686,226.89368,30.823853,72.47223,3.469 1539,66.99244,-12.93927,33.955055,61.52245,3.468 1539,394.11975,227.1882,19.574463,44.034607,3.447 1539,131.46114,232.08896,20.044632,40.312775,3.437 1539,362.92395,200.55618,20.14795,39.947586,3.432 1539,-9.999573,-5.9510727,39.846443,101.23196,3.407 1539,619.2543,57.69464,18.305908,46.809998,3.36 1539,563.41565,215.25174,17.289185,31.882553,3.355 1539,1.8383908,-39.33486,43.365314,96.636536,3.306 1539,568.87964,217.27768,20.12738,42.021637,3.301 1539,308.6753,209.30531,39.10309,93.83836,3.296 1539,276.10767,160.73843,16.438019,30.371384,3.295 1539,315.8423,208.81006,52.872986,143.47876,3.285 1539,11.014018,-15.848085,15.8730135,38.4078,3.284 1539,452.2934,222.69258,30.616913,68.64455,3.276 1540,392.6053,5.757702,37.104736,68.3873,9.278 1540,389.98224,217.04549,27.914978,62.66487,7.637 1540,-5.540917,-17.716629,17.550554,42.544254,7.281 1540,627.2866,-15.594667,16.774353,43.673393,7.132 1540,-10.618482,-31.58751,29.066147,71.46949,6.567 1540,-6.5165424,488.66318,19.283731,44.22519,6.129 1540,-12.689413,477.5775,31.529947,63.057556,6.031 1540,626.9141,488.5075,20.705627,44.08734,5.996 1540,610.5799,-46.092957,42.126038,97.49339,5.943 1540,517.0426,223.9971,30.084229,65.18756,5.719 1540,373.33252,215.182,30.038635,63.20294,5.387 1540,613.5021,453.9283,38.831238,108.543976,5.308 1540,104.503296,10.039288,37.360367,70.05444,5.27 1540,619.3853,-15.443676,16.740051,40.36341,5.109 1540,-73.19348,266.1435,201.30019,461.2945,5.099 1540,-16.966213,435.21713,54.585884,138.7385,5.055 1540,-17.260544,-62.142494,56.016758,142.64,4.977 1540,583.382,410.90213,71.31683,176.85464,4.852 1540,346.44547,221.26282,19.283173,42.99124,4.749 1540,-40.850822,365.95612,111.52117,275.29968,4.728 1540,393.31787,212.71188,20.759216,43.36133,4.723 1540,490.94922,-181.14241,233.40509,424.64572,4.722 1540,396.94403,-31.707771,29.31488,77.15526,4.688 1540,-36.990894,-126.98425,117.0108,274.43445,4.665 1540,574.8839,204.24619,28.463623,64.47302,4.654 1540,132.47641,224.5001,32.95697,64.49312,4.652 1540,536.13257,309.7611,143.55933,342.3897,4.646 1540,405.90378,3.8218842,25.338745,48.76857,4.552 1540,421.0205,213.3742,28.814758,67.50516,4.539 1540,586.1703,-99.11397,74.47858,232.76416,4.47 1540,523.79956,231.33762,32.88806,72.9552,4.404 1540,623.30817,-19.801294,26.354858,69.383934,4.399 1540,493.70703,228.31824,237.78357,515.0205,4.375 1540,619.12805,490.79758,19.847351,40.958344,4.296 1540,346.2359,221.4925,31.535675,72.627014,4.264 1540,-71.12157,-189.13689,211.07484,454.74872,4.216 1540,408.66757,224.80019,23.700653,52.094254,4.192 1540,3.1778665,-15.051405,16.108103,39.157455,4.083 1540,599.443,197.27614,34.958496,100.961044,3.886 1540,603.7174,-3.3229742,18.652344,38.479355,3.832 1540,498.60004,208.07501,22.130066,47.967285,3.826 1540,582.53345,199.41179,36.22174,95.86653,3.816 1540,398.64682,23.321583,39.057373,73.071396,3.797 1540,612.9062,216.04553,35.48584,117.29639,3.724 1540,362.2243,221.13295,22.201508,49.251358,3.676 1540,-9.496971,-6.740494,39.693367,101.18719,3.652 1540,403.7815,219.41206,39.64911,95.918655,3.642 1540,351.00937,207.81314,27.985016,55.889374,3.638 1540,-4.975298,0.27998543,17.917288,42.509636,3.619 1540,112.31769,-9.427025,45.11882,80.214294,3.607 1540,502.26422,218.16818,28.83899,72.94275,3.577 1540,339.38098,218.971,19.010193,45.261734,3.554 1540,540.42163,242.43457,33.30658,66.35791,3.536 1540,602.865,-15.658872,16.959473,38.79608,3.535 1540,410.0069,-13.464874,33.68036,65.11844,3.526 1540,27.749428,-15.273714,32.722374,62.892395,3.505 1540,409.5755,-15.91419,18.035278,42.281017,3.493 1541,-5.3338265,-16.574413,17.10703,41.754723,6.514 1541,-12.774569,476.8058,31.647207,63.71808,6.275 1541,-6.4074636,488.14902,19.262583,44.82724,6.205 1541,-10.864937,-31.043436,29.331163,70.32253,6.106 1541,414.91888,5.379492,37.334778,62.357635,5.941 1541,626.36176,487.71136,21.38733,46.26123,5.697 1541,365.21988,215.87418,28.32071,55.355255,5.618 1541,477.14917,222.21655,27.744171,68.60126,5.479 1541,613.4711,453.47186,39.35736,108.53192,5.284 1541,400.5943,221.97113,25.707428,62.602783,5.117 1541,422.62653,-0.91558266,24.625946,40.065155,5.094 1541,-73.32795,265.29498,201.3363,462.3736,5.081 1541,627.3978,-17.826632,17.261475,44.912563,5.072 1541,611.3804,-47.62527,41.396667,100.31081,5.027 1541,-21.880217,401.8396,79.757835,176.13672,5.011 1541,583.1129,410.65042,71.782166,177.24728,4.862 1541,-17.354582,-63.12476,55.868713,145.2051,4.82 1541,536.3419,309.9369,143.17603,341.57343,4.755 1541,398.84003,183.32039,27.25113,69.19861,4.735 1541,490.63632,-181.22696,233.79916,424.40033,4.682 1541,423.61798,-10.090897,37.394897,59.767254,4.625 1541,597.7271,218.80424,28.995544,71.43007,4.589 1541,-37.406578,-127.925735,117.06235,277.6117,4.505 1541,493.56097,226.93329,237.87262,515.35345,4.469 1541,586.0377,-98.83059,74.63605,231.86923,4.462 1541,7.792507,200.25125,29.989094,72.03262,4.438 1541,3.3840923,-13.478886,15.972605,37.687668,4.396 1541,375.8166,216.73724,22.569183,42.79666,4.185 1541,-71.15805,-188.64935,211.54698,454.12674,4.167 1541,252.99384,249.3566,16.771088,37.150513,4.126 1541,612.7546,218.49576,36.480896,109.11453,4.088 1541,111.33149,25.100285,38.442238,69.088455,4.066 1541,618.1464,489.50092,21.058777,43.37567,4.044 1541,-4.7777324,2.6277618,16.033878,38.243393,4.031 1541,581.7295,224.03223,30.19983,66.08423,4.011 1541,424.2619,-15.029797,19.95514,39.549107,3.968 1541,408.66992,209.83414,20.132751,43.58734,3.931 1541,404.27576,-14.5056305,35.439148,65.380974,3.875 1541,260.3437,249.70558,16.95813,36.39119,3.857 1541,518.39087,224.19165,31.348755,73.39728,3.829 1541,617.6818,217.49002,22.085388,53.710938,3.769 1541,351.44315,215.02197,28.209259,52.53488,3.754 1541,-5.793872,201.6973,18.445183,42.930603,3.737 1541,343.1214,220.25034,25.310272,62.98416,3.731 1541,414.3016,-32.289032,29.659393,69.84752,3.73 1541,409.94122,-17.52964,19.14206,38.944725,3.699 1541,530.1831,222.65042,31.142944,76.40344,3.639 1541,402.51907,-17.2145,18.115356,39.286495,3.559 1541,362.31854,212.5662,19.256409,32.258667,3.514 1541,97.61375,216.69829,32.617195,70.42235,3.497 1541,411.0949,222.44235,27.715057,64.52939,3.493 1541,409.5951,-4.6783943,23.308685,40.392628,3.493 1541,17.693102,208.87854,29.353132,74.27887,3.476 1541,86.9948,208.33942,32.901833,69.13632,3.398 1541,524.0204,13.892536,31.28064,64.83536,3.384 1541,597.4943,229.02016,40.288574,108.90675,3.362 1541,87.117584,182.82446,29.95694,66.06229,3.348 1542,482.0918,213.38873,33.73059,77.18939,9.758 1542,408.28415,210.2759,23.352814,50.054214,7.824 1542,-5.633285,-18.33223,17.519238,42.707005,6.749 1542,530.53735,219.30359,31.160034,65.82538,6.657 1542,-11.003695,-32.316273,29.400509,72.29194,6.458 1542,-12.423377,476.89478,31.476559,63.26526,6.099 1542,-6.059706,488.0522,18.71919,44.851807,6.042 1542,626.0103,487.1449,22.064697,46.05359,6.008 1542,610.44604,-46.12464,41.799744,97.26867,5.746 1542,613.3751,453.11307,39.55127,108.55411,5.682 1542,402.07764,205.91913,21.658936,41.72374,5.512 1542,627.1994,-17.398314,17.384644,44.71529,5.106 1542,-73.141754,266.16528,201.49292,460.3988,5.09 1542,-21.716343,402.27414,79.52643,175.95206,4.987 1542,491.07812,-181.66302,233.91443,426.7079,4.939 1542,-37.378815,-125.8066,117.375275,279.6643,4.848 1542,583.2148,409.9856,71.63556,177.75043,4.807 1542,586.1832,-95.93307,73.53162,227.19675,4.745 1542,536.12103,310.05743,143.61707,342.26752,4.708 1542,424.39664,210.081,23.437714,46.819336,4.693 1542,388.32776,205.20233,28.585327,55.662018,4.686 1542,-17.362122,-62.666462,56.196766,142.52568,4.661 1542,417.16812,206.78464,22.043274,41.471558,4.63 1542,493.5414,226.64328,237.67813,516.06445,4.446 1542,472.77942,206.65892,31.55249,74.166306,4.419 1542,617.93994,489.17438,21.762146,43.536743,4.372 1542,613.61475,196.30566,34.91223,101.98859,4.296 1542,598.47327,188.20676,36.46289,91.06174,4.198 1542,164.40431,29.768574,30.622223,66.72774,4.178 1542,-71.44164,-189.71748,212.15234,454.50464,4.147 1542,27.551394,151.04254,31.615927,59.514236,4.035 1542,3.1901007,-15.925533,16.517418,39.35712,4.033 1542,-5.361723,153.66231,17.593441,42.463882,4.028 1542,-9.481349,-5.5665627,39.547592,100.29892,3.987 1542,379.44504,226.21033,19.079498,42.05359,3.971 1542,386.54666,224.76767,20.024353,42.116974,3.913 1542,517.9156,224.15005,32.12384,71.39856,3.825 1542,376.52917,205.89734,29.048645,57.263,3.805 1542,598.22797,216.706,38.861267,111.367676,3.745 1542,565.1206,-30.392002,29.6651,72.78073,3.735 1542,2.5057662,185.50475,18.591547,41.794403,3.729 1542,3.111533,161.2651,20.108807,43.23918,3.612 1542,2.0024252,227.89664,20.484737,43.612274,3.607 1542,-7.458125,230.04324,37.269466,102.50183,3.477 1542,4.9562454,-17.910511,29.850452,66.92223,3.476 1542,612.3766,232.15143,37.833984,117.22418,3.475 1542,5.3528633,221.76324,37.26283,106.68994,3.467 1542,-6.338649,218.77834,18.229832,41.47435,3.457 1542,578.8333,-13.913326,33.452454,63.78649,3.419 1542,10.332532,-16.719025,17.217312,39.798992,3.396 1542,-9.702945,73.003174,40.106102,102.5264,3.366 1542,569.28296,-14.805223,17.953247,40.384956,3.343 1542,5.3324594,153.2255,29.780575,63.846603,3.34 1542,13.438929,132.29855,53.812515,128.84207,3.325 1542,557.496,-2.9619713,29.764893,64.741714,3.291 1542,570.4258,-17.466705,55.539062,123.065735,3.287 1542,582.54395,211.43733,38.20752,97.68504,3.28 1543,457.8849,206.90904,18.758484,39.34749,9.234 1543,620.2673,201.0628,19.63446,56.39981,8.229 1543,131.94441,4.419426,32.02693,83.16366,6.856 1543,414.5086,215.59499,27.696838,58.966812,6.516 1543,403.4875,208.77618,18.68634,37.824905,6.318 1543,410.4083,220.13356,21.040222,45.746567,6.269 1543,-11.219554,-32.825703,29.55407,74.1343,6.242 1543,-12.713263,477.00598,31.50231,63.24182,6.122 1543,-6.2137437,488.54892,18.86968,44.569244,5.86 1543,-5.9534473,-18.319223,17.659279,44.129135,5.839 1543,627.1545,-18.485033,17.347595,47.2237,5.561 1543,613.52576,453.5605,39.072388,108.48932,5.385 1543,610.5442,-47.433605,41.86847,98.460434,5.275 1543,626.66223,487.68823,21.056335,45.011353,5.26 1543,-16.826036,-61.792778,56.314827,145.3434,5.152 1543,-72.8812,266.13956,201.09174,460.603,5.04 1543,-21.83693,402.43622,79.74282,175.79602,5.015 1543,586.2144,-98.30051,73.93884,232.1908,4.926 1543,583.3398,410.60806,71.4234,176.92935,4.868 1543,491.31244,-181.40189,234.06061,426.45074,4.831 1543,395.88058,218.7955,17.980072,43.84424,4.723 1543,536.04456,310.72058,143.70374,341.7251,4.691 1543,-37.207687,-125.744095,117.49605,273.51254,4.572 1543,400.58917,214.8714,26.783508,61.122925,4.56 1543,493.56677,226.5552,237.67908,515.98315,4.488 1543,421.95923,201.77061,28.291748,65.289505,4.35 1543,613.4629,202.50662,37.050476,109.078,4.283 1543,-71.17066,-188.63202,210.8233,454.0039,4.082 1543,618.6659,490.2548,20.519348,42.07846,4.03 1543,497.78928,206.69177,20.886383,48.646606,3.729 1543,597.9602,201.49692,39.05713,105.47891,3.671 1543,443.3871,200.95117,20.754028,46.932755,3.67 1543,-9.309083,-3.6677208,39.202274,99.3492,3.571 1543,420.67383,226.34938,30.938904,64.113846,3.559 1543,142.82709,8.920715,37.30568,79.20224,3.55 1543,2.7587068,-16.518803,16.537086,40.49469,3.536 1543,619.0957,-6.554867,19.173706,44.02244,3.523 1543,626.2017,194.92331,17.962708,45.926834,3.471 1543,432.56604,208.64328,22.774536,53.709442,3.456 1543,416.24603,206.75848,20.671112,42.882492,3.419 1543,596.936,-18.269842,32.01294,69.44081,3.402 1543,603.17377,-26.698135,53.043518,138.30975,3.401 1543,386.882,214.42336,19.321136,42.217056,3.38 1543,375.28946,209.56018,27.138245,57.726868,3.37 1543,613.3239,165.6415,33.799377,100.176865,3.27 1543,-8.9542055,104.09621,39.004696,103.66115,3.25 1543,460.42346,207.41737,26.913422,59.88533,3.235 1543,-5.0737686,2.8505917,17.49206,41.292793,3.222 1543,139.31985,-11.787731,32.596954,69.358154,3.212 1543,-7.656251,262.05106,37.09339,105.398834,3.203 1543,450.84015,211.45758,21.16867,49.83316,3.164 1543,1.7916822,-38.472687,42.952824,101.20711,3.148 1543,573.1003,-21.132133,53.471863,130.75023,3.118 1543,413.04193,-14.542252,31.679596,67.90576,3.106 1543,612.3212,247.91649,38.41095,115.460464,3.078 1543,546.6173,412.54346,83.53192,167.67065,3.07 1543,434.3431,-16.66286,18.341797,39.46093,3.062 1543,165.71373,214.1261,28.039001,58.661316,3.056 1543,597.81866,461.0119,38.5802,100.10327,3.056 1543,580.8192,-16.421204,31.508362,71.030106,3.051 1544,401.61197,210.57574,24.439484,56.74414,38.137 1544,327.84973,213.31367,19.873169,37.547348,8.993 1544,494.17114,219.05708,30.504822,75.80174,6.984 1544,-12.870722,476.61853,31.837769,63.70746,6.401 1544,610.4125,-47.471024,41.926086,98.424835,6.107 1544,627.0285,-17.894474,17.52533,45.734413,6.017 1544,-12.755779,-38.036522,41.676235,98.8305,5.904 1544,-6.455819,488.3872,19.031013,44.322205,5.82 1544,240.44043,219.25223,23.191284,41.264862,5.683 1544,-5.9491158,-18.54772,18.06285,43.83927,5.657 1544,383.86475,208.9701,30.912048,64.011475,5.532 1544,-20.36647,-83.80348,72.6236,192.78792,5.473 1544,586.1875,-96.77751,73.72101,228.33998,5.4 1544,626.162,487.72537,21.74176,45.89627,5.328 1544,32.61211,11.961945,33.66669,69.47068,5.319 1544,618.56,-6.134532,20.263123,43.21573,5.149 1544,-36.426716,-125.65273,117.12033,271.30692,5.1 1544,-73.07578,265.89944,201.13705,460.9514,5.075 1544,-22.038197,401.359,79.83052,176.70435,5.012 1544,491.5094,-181.0964,234.06311,426.6828,4.997 1544,613.34546,454.51944,39.65674,107.20157,4.981 1544,475.5678,-3.5110836,18.511414,37.38054,4.901 1544,582.9747,410.6654,71.96826,177.50928,4.889 1544,536.40173,310.5161,143.50916,341.1198,4.887 1544,482.6023,221.32039,21.074432,53.91365,4.7 1544,493.9566,227.05695,237.40234,514.341,4.549 1544,231.28264,216.83575,27.83757,57.309082,4.522 1544,414.0999,217.32127,21.98529,45.225143,4.427 1544,226.53918,220.83672,20.874542,40.911636,4.344 1544,-71.638695,-189.86162,211.12384,456.44452,4.281 1544,450.56305,-16.674284,17.963135,39.35931,4.104 1544,458.18692,-17.509058,17.79068,40.867542,4.102 1544,470.6667,-31.388382,28.037415,68.29237,4.013 1544,445.493,-17.379583,32.07242,64.32563,3.956 1544,438.8131,-34.184376,28.227264,73.50143,3.923 1544,467.05774,-15.87966,16.939758,39.385204,3.918 1544,104.367485,-1.9161854,22.223938,39.930298,3.897 1544,-8.858911,-2.9958267,39.29008,95.98303,3.854 1544,425.6976,-17.43885,18.774261,41.3311,3.843 1544,404.81622,211.56902,34.56671,76.612015,3.829 1544,418.79407,-16.54975,34.54248,66.90933,3.805 1544,454.7244,-32.82793,28.047546,70.05558,3.797 1544,483.61203,227.40079,41.01425,106.873474,3.736 1544,434.2239,-16.745743,18.58783,40.51608,3.69 1544,97.11034,-10.443647,35.241806,62.865128,3.685 1544,617.8736,490.82047,21.714111,42.33725,3.635 1544,357.8324,221.9635,28.34314,62.53302,3.624 1544,396.5086,-16.770575,32.919067,65.96852,3.603 1544,442.81888,-5.5748043,20.560486,40.906364,3.597 1544,520.0391,282.65732,24.44983,54.627808,3.584 1544,498.65088,278.25912,33.228943,67.39676,3.561 1544,598.1506,-23.073029,39.173096,91.916275,3.512 1544,417.27124,-15.487995,18.667755,39.919334,3.442 1544,409.82794,-16.242682,18.480743,40.32784,3.438 1544,611.9705,-2.5314217,38.296814,106.480484,3.437 1544,626.8519,-0.27607918,18.869019,47.67063,3.435 1544,324.87424,216.81198,30.131256,53.50403,3.424 1545,413.42456,213.16704,23.152008,49.401688,60.342 1545,546.7994,210.33583,19.994385,43.744797,44.689 1545,529.6781,208.95987,19.298523,41.459686,35.496 1545,261.33694,213.358,22.95813,44.480072,33.199 1545,537.9162,209.22025,20.087646,41.372864,11.445 1545,-5.5433226,-16.993591,17.431688,41.821545,7.369 1545,268.9717,211.10849,23.503174,43.153305,6.939 1545,-11.335739,-32.294212,29.748308,71.614136,6.829 1545,-12.6572895,475.5572,31.797808,64.949646,6.142 1545,626.4037,487.9825,21.324951,44.79715,6.11 1545,536.62964,205.66711,32.927795,72.01602,6.055 1545,-6.2094116,487.58728,18.881226,45.41638,6.01 1545,525.7569,209.50307,27.497375,64.41499,5.921 1545,626.9335,-17.192656,17.13794,45.57281,5.669 1545,613.6161,453.67413,39.006958,108.32501,5.397 1545,622.41406,-33.11232,26.883179,74.66468,5.316 1545,402.74255,206.95663,27.5047,61.881073,5.281 1545,-17.833044,-62.419167,56.38369,141.2554,5.205 1545,532.6371,-183.83688,148.76398,428.21585,5.145 1545,-21.787125,401.91592,79.58241,176.19687,5.024 1545,-72.903564,265.57,201.20032,461.07886,5.021 1545,3.2874382,-15.500807,16.241137,38.826664,4.937 1545,446.24414,215.29042,29.41565,63.125168,4.868 1545,252.98448,221.05887,20.165665,36.805664,4.846 1545,583.46375,409.9914,71.250854,177.8111,4.844 1545,-36.857983,-127.94041,116.80565,274.26547,4.825 1545,536.3598,309.56146,143.80707,342.53912,4.774 1545,586.6076,-100.88045,73.94171,234.99922,4.694 1545,-5.2100334,1.7721233,17.385178,40.778114,4.564 1545,493.83838,227.1289,237.38531,515.60944,4.506 1545,603.1835,-56.792015,53.55365,136.20775,4.473 1545,618.6407,490.2498,20.613342,41.854218,4.372 1545,-71.4104,-190.08006,211.53882,456.76398,4.365 1545,548.91956,207.16537,35.501953,84.6821,4.212 1545,41.796883,217.84811,24.712212,45.65753,4.111 1545,-9.678184,-6.6217422,39.705555,101.20364,4.084 1545,594.39746,-45.741814,44.84729,97.31791,4.038 1545,421.5252,211.3097,23.857483,47.379395,4.027 1545,25.703941,219.96439,21.411186,46.01773,4.005 1545,533.5285,204.95009,14.271362,27.125183,4.003 1545,-5.9453516,230.79391,17.844257,41.468475,3.893 1545,29.799007,216.12575,32.255856,62.458878,3.733 1545,243.90674,223.52551,18.668152,33.29608,3.723 1545,620.0225,-4.887842,17.773254,40.386658,3.632 1545,17.34823,221.56786,20.69264,46.61168,3.627 1545,6.2740684,-34.084637,28.289042,72.95287,3.626 1545,260.6589,211.32542,34.516693,68.109024,3.613 1545,266.34277,228.4559,19.749023,41.419434,3.596 1545,56.549217,-0.8988724,22.286049,38.413746,3.571 1546,421.8313,211.36829,28.620941,60.20764,90.576 1546,596.0051,211.87547,19.298035,44.743362,54.219 1546,577.6121,210.11049,20.938782,50.50981,19.765 1546,155.17865,216.92473,32.25821,64.83403,13.489 1546,586.5267,211.87317,19.772583,44.269073,12.064 1546,585.20715,209.48657,32.26892,76.865906,9.333 1546,-5.2151847,-16.646656,17.283867,41.369225,7.867 1546,599.3367,207.28894,31.234497,82.49051,7.663 1546,-12.828608,476.29675,31.576345,64.3454,6.978 1546,-11.004026,-31.516563,29.890133,71.40341,6.826 1546,-6.512231,488.23767,19.217522,44.690796,6.48 1546,566.7017,211.3149,29.660645,69.68675,5.976 1546,165.94257,231.97205,23.074936,45.113556,5.845 1546,626.3223,487.4097,21.559204,46.617218,5.841 1546,408.4808,209.05742,31.652405,63.966843,5.828 1546,627.4145,-17.67705,16.858826,44.990208,5.748 1546,610.4493,-47.102108,42.12494,97.52952,5.349 1546,3.1490552,-14.844391,16.393873,38.886612,5.335 1546,152.63335,238.43016,25.237015,43.965927,5.25 1546,532.5404,-184.79851,149.35681,429.5497,5.155 1546,-73.18685,265.65097,201.66156,462.55154,5.089 1546,536.40515,308.96417,144.20154,342.84198,5.067 1546,-16.99775,-62.91962,55.604076,144.0508,5.06 1546,390.618,206.81348,27.646515,59.65631,5.059 1546,168.30894,208.0451,34.531357,55.031372,5.042 1546,613.4014,453.695,39.775757,108.21362,4.986 1546,-21.657238,402.71857,79.542465,175.4154,4.957 1546,583.2426,410.13556,71.69318,177.63855,4.872 1546,193.57042,219.00386,21.808731,40.372574,4.656 1546,-37.00294,-128.06102,116.903564,275.40295,4.589 1546,494.00116,227.35596,237.81586,515.0919,4.575 1546,586.85724,-98.45665,72.93939,231.73953,4.522 1546,-9.342624,-6.408787,39.07556,100.92557,4.228 1546,-70.3495,-189.05295,210.65862,455.74792,4.211 1546,550.9242,210.55064,35.40442,76.76378,4.19 1546,612.6073,186.55772,33.384033,93.19896,4.125 1546,27.038174,261.8658,31.595356,59.450653,4.07 1546,145.57451,200.28307,48.24861,98.45912,3.862 1547,468.60126,219.66713,36.98474,81.889084,93.0 1547,-5.2823877,-17.695974,17.316597,42.28053,7.532 1547,431.02283,228.82347,29.248413,79.72737,6.407 1547,-13.049423,476.93344,31.918573,63.363617,6.388 1547,-11.305054,-32.312298,30.057648,71.15052,6.342 1547,610.72656,-47.968494,41.65045,101.11123,6.213 1547,627.33875,-16.839735,16.802551,45.29,5.953 1547,-6.4854097,488.20364,19.210571,44.359344,5.927 1547,621.7242,477.00128,29.559631,67.57153,5.321 1547,586.39703,-98.64447,73.679504,232.0303,5.216 1547,-17.590662,-62.434208,55.94409,142.51155,5.113 1547,455.1543,215.85701,31.637451,79.719284,5.085 1547,438.00323,214.7825,37.55786,86.60382,5.009 1547,491.48187,-181.11702,234.04169,425.35623,4.966 1547,-73.2548,265.8282,201.48907,461.451,4.951 1547,-21.846947,402.04004,79.69727,176.02258,4.938 1547,583.27704,410.44675,71.63495,177.37613,4.93 1547,498.09485,224.87682,40.809387,87.3528,4.839 1547,469.4803,246.65375,28.656036,73.43634,4.831 1547,536.521,310.67548,143.10297,340.92365,4.822 1547,479.52905,213.02196,34.294373,71.0544,4.798 1547,493.8078,228.01776,237.37738,513.7263,4.575 1547,-37.248898,-129.10405,117.29671,276.2432,4.533 1547,619.9421,-2.780756,17.750183,39.1585,4.375 1547,3.1793423,-15.502327,16.47431,39.359196,4.326 1547,-71.154724,-189.44193,211.91338,456.40433,4.229 1547,426.2787,-18.914162,18.624908,42.557377,3.827 1547,612.8816,437.23566,39.684814,97.16986,3.795 1547,533.85974,-33.400734,29.154663,73.52437,3.775 1547,475.52167,2.8423214,19.561829,38.597862,3.753 1547,485.3299,-17.324589,30.987427,67.021,3.699 1547,182.6727,218.15012,25.465256,42.311676,3.662 1547,598.44916,-24.856379,38.736023,95.467926,3.562 1547,574.03577,-27.622078,53.32086,132.25139,3.55 1547,-9.989866,-7.224697,39.48156,102.49284,3.544 1547,617.6726,489.21954,22.052002,44.84967,3.543 1547,491.90155,-4.4302654,18.413727,39.803185,3.539 1547,518.0084,-33.424942,28.60022,71.777115,3.526 1547,418.18256,-17.468481,18.479156,41.072227,3.5 1547,483.84567,-4.19269,18.305695,39.10234,3.48 1547,555.987,-16.71723,32.3349,63.700806,3.436 1547,565.58344,-35.292423,28.869446,73.23251,3.435 1547,627.3978,479.32983,19.135498,44.17798,3.428 1547,538.3938,-18.37825,18.239746,42.99746,3.427 1547,540.0444,-16.221182,33.03131,66.43969,3.424 1547,501.91473,-16.6084,30.48462,66.62345,3.413 1547,416.8661,202.52867,52.352844,116.032394,3.412 1547,463.035,219.80664,51.418976,133.20386,3.392 1547,507.14966,-17.133114,16.59198,40.483887,3.369 1547,615.43994,-17.54147,26.841675,70.4648,3.352 1547,603.2055,-29.836872,51.7442,139.10736,3.345 1547,493.3932,228.41736,25.146362,55.44812,3.329 1547,499.90604,-5.2775116,18.571198,41.408737,3.31 1547,429.38596,-34.993015,29.742493,71.140434,3.301 1547,554.5928,239.22865,34.777466,63.77449,3.293 1548,594.47705,217.9621,43.90387,121.76111,84.261 1548,602.4555,264.7544,31.737183,72.693665,8.909 1548,610.8437,217.54129,29.813171,82.33655,8.209 1548,-5.651249,-18.232296,17.695934,42.114887,6.801 1548,627.3379,-16.905987,17.137756,45.43981,6.479 1548,-12.960913,475.60892,32.036957,64.31375,6.234 1548,622.7807,-32.657585,26.861023,75.02326,6.145 1548,-6.3390436,487.8319,18.879093,45.008484,6.038 1548,613.46533,453.49426,39.36035,108.242065,5.831 1548,-11.4025545,-32.192795,29.6652,69.7192,5.631 1548,626.6387,488.21814,21.346497,45.259277,5.507 1548,602.47687,-55.877365,53.26776,135.97495,5.4 1548,-17.76289,-62.618637,56.047512,142.8568,5.205 1548,536.3115,308.53516,143.31079,343.99463,5.187 1548,586.1847,-97.88029,73.66748,230.78882,5.088 1548,596.12244,268.43445,40.01111,119.21088,5.009 1548,618.3927,490.79932,21.21698,41.821045,4.977 1548,624.7529,229.33101,20.788147,55.684097,4.935 1548,582.83813,410.58133,71.8147,177.03519,4.92 1548,588.9306,220.10207,58.668213,205.89336,4.874 1548,619.2522,-5.2522717,19.074097,44.502563,4.835 1548,-17.820864,435.29202,55.582756,139.75229,4.829 1548,-73.211586,266.35345,201.03607,460.82452,4.801 1548,491.06644,-180.8765,233.77914,427.05405,4.716 1548,-40.74232,365.97095,111.4496,275.1244,4.674 1548,492.6407,228.76935,239.12396,514.5829,4.592 1548,617.47565,234.02776,30.342651,84.533646,4.563 1548,-37.069508,-129.65753,117.063675,277.37173,4.506 1548,614.52783,-17.930477,28.089478,72.78643,4.458 1548,594.2811,-44.302025,44.226868,98.081726,4.386 1548,-71.34769,-189.93175,212.31778,457.04626,4.321 1548,614.9556,276.40564,23.58844,63.648193,4.289 1548,545.82904,197.30821,41.883423,90.09975,4.275 1548,616.501,209.64554,20.868896,48.62259,4.159 1548,609.9726,258.4929,38.554626,115.51755,4.147 1548,3.3308144,-16.660078,16.289232,38.988445,4.078 1548,601.6654,182.31601,50.121826,129.48846,4.057 1548,523.9596,188.14227,28.588135,73.89514,3.997 1548,610.61755,490.70926,20.309692,40.30002,3.9 1548,497.7871,-18.844204,19.35315,43.07004,3.896 1548,626.14886,210.86372,18.767273,45.370926,3.86 1548,528.43634,191.42929,40.690247,96.01456,3.756 1548,580.59106,253.53311,43.489502,107.949554,3.728 1548,560.33234,224.51657,54.522034,142.34372,3.671 1548,582.86237,113.94334,63.519592,216.22363,3.645 1548,-10.419971,-6.1656494,40.101433,102.27965,3.608 1548,602.4067,490.09018,20.496277,40.44565,3.583 1548,517.9235,-33.38523,28.965271,71.58985,3.579 1548,562.3277,204.1349,43.70453,90.118546,3.511 1548,619.9146,204.25542,29.510193,74.34059,3.501 1548,489.91882,-19.296762,19.193604,42.87826,3.494 1548,586.78406,-3.427722,19.956604,37.677734,3.49 1548,571.9634,-14.169153,32.412292,62.403152,3.461 1549,-5.239413,-17.203264,17.077518,41.30144,7.316 1549,626.8185,-17.10691,17.618896,45.961765,6.894 1549,-12.686874,476.15042,31.369873,63.655304,6.278 1549,-11.084486,-31.431158,29.635023,70.155014,6.2 1549,-6.331057,488.3232,18.580332,44.268646,5.952 1549,626.7563,488.9336,21.05371,44.25708,5.902 1549,613.4696,453.26324,39.078674,108.82214,5.665 1549,622.45496,-33.77175,26.75,76.28729,5.486 1549,585.8337,-96.83674,74.13428,228.85132,5.076 1549,583.1516,410.5083,71.598206,177.38818,5.058 1549,-73.255035,266.02185,201.38551,461.28467,5.023 1549,602.21655,-54.988297,53.9328,131.92276,4.928 1549,-21.954117,401.85425,79.687584,175.86975,4.923 1549,536.59656,309.9652,142.5857,342.13367,4.783 1549,-20.239517,-87.29655,72.02499,196.33015,4.744 1549,-36.684097,-130.42311,116.96665,278.78983,4.701 1549,490.57468,-179.09068,234.11069,425.76123,4.697 1549,618.8999,492.18216,19.976685,40.389923,4.696 1549,614.03467,-16.824657,27.129333,71.32128,4.454 1549,3.8059843,-14.647361,15.527088,37.189884,4.357 1549,-71.43628,-189.55771,212.19838,457.29056,4.334 1549,493.6743,226.53421,238.15195,516.9241,4.264 1549,594.09326,-43.81773,44.36444,95.231575,3.934 1549,187.33813,215.93382,30.329468,59.112747,3.867 1549,-9.977763,-20.259502,38.566544,99.981766,3.859 1549,149.55722,-12.853096,31.041306,63.059944,3.793 1549,2.375691,488.79813,19.640184,44.12784,3.792 1549,4.8805943,-1.0328827,15.508791,34.19731,3.762 1549,626.4814,1.4366932,18.517517,48.11093,3.718 1549,597.1425,214.36002,38.289368,90.5986,3.709 1549,-4.2786717,2.271244,15.909231,38.31846,3.678 1549,411.04904,-14.425007,16.397797,37.98771,3.67 1549,618.64,-16.443487,17.312134,42.722862,3.639 1549,538.4605,-14.936981,17.025085,37.104282,3.637 1549,394.94022,-16.285328,16.823944,39.198963,3.603 1549,612.87787,235.53108,38.47046,113.16902,3.594 1549,426.6783,-13.886643,16.443176,37.701103,3.567 1549,571.417,247.42635,33.83362,58.244064,3.567 1549,378.31976,-16.628181,17.34314,39.50109,3.491 1549,492.31033,-14.031837,31.674103,66.30482,3.472 1549,452.33112,-14.261608,32.204254,61.033855,3.453 1549,549.6892,-14.071539,30.680786,59.80361,3.405 1549,418.8716,-12.802973,16.267548,36.965565,3.395 1549,370.7083,-15.369694,17.50763,38.73953,3.388 1549,11.152868,-15.28657,16.12013,36.74291,3.379 1549,390.02548,-33.138058,28.796783,70.65232,3.366 1549,484.9073,-0.12742233,30.306213,60.65685,3.358 1549,12.579074,0.18878937,16.358936,32.0676,3.348 1549,442.5201,-14.2002735,17.149658,37.68175,3.328 1549,610.8764,491.53705,19.35315,38.23224,3.326 1549,522.53986,-15.643604,17.164673,37.73001,3.307 1549,386.77673,-15.181591,16.827759,38.188427,3.305 1549,357.27576,-16.803375,31.358612,63.9861,3.296 1549,374.05817,-33.62311,28.586731,71.2656,3.295 1549,-9.121274,53.59053,38.316986,106.110214,3.286 1549,564.2234,-14.431557,31.395264,60.12371,3.261 1549,546.6369,-13.062132,16.934387,35.795544,3.253 1549,594.6479,489.9307,19.644531,39.59958,3.248 1549,138.61533,-15.06255,16.746368,39.14776,3.238 1549,570.53314,-13.766384,16.756836,37.05474,3.234 1549,19.433548,-14.06388,16.128555,35.732677,3.233 1549,514.8591,-14.364458,16.925049,37.0825,3.202 1549,555.0608,-13.459024,16.692627,35.965534,3.199 1549,434.60077,-13.047008,16.946045,37.214382,3.181 1549,612.9815,197.94087,35.23004,94.21324,3.179 1549,458.27838,-14.624083,17.309021,37.86045,3.162 1549,362.82455,-16.940033,17.015686,40.031166,3.159 1549,474.39215,-14.131965,17.338318,37.827038,3.154 1549,572.77026,205.09497,51.84131,114.394226,3.135 1549,586.46185,490.56055,20.357605,40.357788,3.126 1549,546.9425,412.05615,83.23114,169.03607,3.125 1549,597.46313,460.9298,38.822937,100.23749,3.123 1549,403.19843,-14.6071,16.669617,37.91061,3.117 1549,9.15387,-93.58313,75.05038,210.18904,3.113 1549,204.93935,217.34424,28.006882,58.543915,3.027 1549,163.59758,-12.162994,31.954422,61.610138,3.014 1549,506.80725,-15.6470175,16.96051,38.342457,3.013 1549,530.67224,-14.508703,17.018372,37.09779,3.006 1549,27.634756,-14.785199,15.831476,36.387302,2.995 1549,413.98413,-33.63051,28.249176,73.80987,2.992 1549,468.11066,-13.997873,32.677917,63.189438,2.987 1549,173.2403,207.58943,33.61975,58.85771,2.981 1549,562.99365,-12.249774,16.740112,35.880344,2.974 1549,458.54916,-0.5897999,19.525787,34.53134,2.972 1549,603.126,490.70697,19.035522,39.056458,2.969 1549,361.19513,235.26572,19.401764,32.297516,2.968 1549,-8.243084,230.04573,38.050312,104.85518,2.959 1549,450.48956,-13.714039,17.070862,37.17665,2.954 1549,142.41797,-34.302837,27.781082,75.11248,2.954 1549,531.05884,-134.07462,115.70984,266.8245,2.949 1549,437.07706,-14.708595,31.05191,60.53371,2.944 1549,170.00919,-13.422749,17.140625,37.44188,2.943 1549,6.3974895,-33.391598,28.109747,69.8596,2.942 1549,466.487,-13.280573,17.2789,36.818268,2.937 1549,588.24493,-14.801411,31.86676,63.565605,2.93 1549,613.4046,366.28488,36.956116,110.83115,2.93 1549,45.240562,10.501954,14.7558975,29.763935,2.919 1549,555.161,0.28112793,18.809753,32.33165,2.917 1549,155.22205,-13.662573,16.615646,37.595913,2.908 1549,586.6476,-13.938872,16.654968,37.336685,2.903 1549,627.6566,207.7037,18.084717,47.13739,2.9 1549,59.88399,-15.146219,15.373478,36.03612,2.9 1549,613.56396,-2.996933,36.82544,111.46722,2.89 1549,348.6256,238.21275,18.289062,32.499374,2.88 1549,146.98076,-13.068491,16.669754,37.933765,2.877 1549,490.489,-15.124859,17.175812,38.66448,2.869 1549,482.37045,-13.343635,17.078033,37.152878,2.868 1549,-8.827987,105.38948,39.19068,101.16666,2.865 1550,-5.4718666,-16.955662,17.048975,40.776745,6.213 1550,-11.205797,-31.160328,29.770748,69.96603,6.183 1550,627.34344,-19.093145,17.031494,47.84072,5.93 1550,-12.6769905,478.40652,31.22697,61.96689,5.827 1550,-6.515176,488.88885,19.217207,43.784058,5.815 1550,610.6912,-49.054413,42.120605,100.8213,5.777 1550,626.19495,486.99088,21.718018,47.914093,5.762 1550,-16.980112,437.64648,54.523453,136.98694,5.181 1550,583.0248,411.4805,71.61334,176.17624,5.067 1550,490.8011,-180.61047,234.36395,427.40176,5.033 1550,612.6938,453.58966,40.095764,108.17963,4.977 1550,586.1925,-98.25009,74.18378,231.31592,4.969 1550,-73.081406,266.12488,201.17392,461.148,4.961 1550,-20.454206,-87.139015,72.423874,195.76767,4.908 1550,156.2366,230.6061,31.54866,56.065536,4.846 1550,-36.953453,-130.43845,117.57694,277.4208,4.741 1550,536.8333,310.45523,142.56543,341.68063,4.726 1550,-40.5765,367.14954,110.836006,274.70984,4.685 1550,-71.51663,-189.3184,212.53737,457.17712,4.556 1550,493.49725,226.78299,237.88837,516.13574,4.353 1550,174.89444,228.15387,24.314468,44.252106,4.32 1550,502.1855,-15.694833,29.346558,63.250957,4.24 1550,3.58698,-14.569952,15.645253,37.12591,3.921 1550,-10.07357,-19.358078,38.768414,97.55455,3.88 1550,514.46155,-15.948312,18.008667,40.93578,3.78 1550,-4.595683,3.5946445,16.16098,37.799385,3.714 1550,494.108,-33.34962,28.311981,73.94749,3.704 1550,506.47534,-16.421082,17.848938,41.426414,3.664 1550,490.5284,-14.446013,16.96463,38.486275,3.547 1550,617.59045,489.41544,22.110718,45.203278,3.505 1550,217.64157,238.88203,21.726044,39.842575,3.467 1550,346.3562,-17.653154,17.54834,40.19114,3.46 1550,619.62177,-18.817284,17.154968,44.147186,3.455 1550,490.9275,235.86792,20.781952,43.969055,3.441 1550,1.9312477,-39.709724,42.96668,98.15168,3.371 1550,475.32184,-15.991338,16.510773,37.97775,3.363 1550,534.44257,-33.705727,27.672913,67.651695,3.34 1550,598.1699,187.3317,38.41565,106.57663,3.332 1550,196.88744,231.02911,29.427597,59.477966,3.328 1550,498.13116,-14.605885,17.645447,39.922363,3.32 1550,8.8449745,-92.666435,75.588806,208.07713,3.312 1550,538.7768,-16.756609,17.070923,39.310436,3.28 1550,509.9848,-34.041237,28.831848,74.67901,3.267 1550,459.5261,-17.124517,16.742798,38.801723,3.24 1550,612.48236,200.19736,36.725708,113.32645,3.234 1550,354.49802,-17.041683,17.805695,39.62464,3.221 1550,11.053371,-15.68363,15.769224,37.063587,3.201 1550,467.7283,-16.019396,16.46344,37.979424,3.191 1550,522.27185,-16.653065,17.482117,40.791786,3.17 1550,334.37302,245.13875,29.832672,56.969284,3.155 1550,477.4171,223.44057,30.009674,61.054947,3.149 1550,590.6394,-35.91047,27.527344,72.1742,3.135 1550,546.7304,414.0644,83.37897,165.96625,3.133 1550,395.68832,-16.114689,16.240509,37.194637,3.127 1550,139.6423,231.30577,36.624863,56.215714,3.117 1550,5.55879,467.25446,37.880615,96.097046,3.111 1550,412.79504,-60.178596,55.89865,131.34773,3.089 1550,571.8829,-43.612617,58.576233,141.23003,3.087 1550,575.57104,165.67368,52.03247,143.26593,3.069 1550,603.47723,-30.555016,52.408447,145.79471,3.063 1550,598.22424,-24.725416,40.126587,96.5492,3.058 1550,493.15222,224.7523,28.730286,62.002457,3.052 1550,138.24721,-16.171953,17.671951,38.587105,3.042 1550,3.6574059,6.577286,17.301325,35.345707,3.037 1550,2.6042032,-20.418922,50.477978,134.76869,3.032 1550,117.690125,-34.09242,29.723816,70.9478,3.031 1550,-8.170013,262.15082,37.638817,105.96863,3.03 1550,-4.870076,298.67215,15.533714,38.318207,3.013 1550,175.78957,-39.90741,47.074585,91.37787,3.011 1550,483.0855,-13.704817,16.675812,37.052383,3.004 1550,619.99286,-1.2560158,19.03656,47.55818,3.003 1550,338.36502,-15.311263,17.422974,38.37265,2.987 1550,172.62305,-35.01174,30.119965,74.443275,2.985 1550,531.87756,-134.6688,115.1723,270.01196,2.983 1550,318.18344,-2.2678432,30.246368,62.002853,2.977 1550,69.56501,-17.832985,30.005547,63.800182,2.975 1550,400.64978,-44.17569,46.387817,93.14436,2.967 1550,106.34438,-19.106558,18.086296,41.066498,2.962 1550,330.50012,-15.525835,17.251495,38.474174,2.926 1550,612.0191,399.3099,39.361633,107.187744,2.917 1550,449.38052,-43.43302,45.082672,93.14619,2.917 1550,2.103752,489.91553,20.170494,43.77649,2.916 1550,133.68655,-32.670124,29.694061,70.59718,2.915 1550,427.76517,-17.396563,16.161102,38.372356,2.913 1550,547.0355,-16.261791,16.911255,37.921864,2.909 1550,391.01843,-33.804703,27.400421,67.234924,2.909 1550,163.46138,234.27322,40.31923,73.92313,2.905 1550,162.97632,-15.292751,34.025208,64.69698,2.902 1550,207.91716,-39.15495,47.49089,92.89099,2.899 1550,177.0295,-2.1861134,35.08995,63.860123,2.888 1550,374.64603,-34.851818,27.725464,67.964455,2.88 1550,102.44793,-33.773853,28.991829,70.93934,2.874 1550,154.21205,-16.204678,17.46846,38.3543,2.869 1550,422.85092,-33.458557,27.871185,67.01146,2.869 1551,-12.671318,477.37405,31.482548,62.765472,6.102 1551,611.26306,-46.05165,41.098022,99.99849,6.081 1551,-6.5603447,488.5468,19.292263,44.19452,6.005 1551,627.14575,-18.161417,17.397766,45.3713,5.529 1551,626.1887,487.87247,21.737549,46.686493,5.273 1551,585.6342,-94.30697,73.746765,227.3982,5.265 1551,-12.805088,-40.53985,41.82225,101.18979,5.14 1551,490.9325,-180.97768,234.13306,429.44138,5.073 1551,583.0097,411.58328,71.70825,176.82266,5.061 1551,-73.27832,265.74475,201.66275,461.48273,5.035 1551,-6.200823,-19.099287,18.27,44.357536,4.973 1551,613.21124,453.946,39.460815,107.52841,4.957 1551,-22.003677,401.6928,79.6042,176.15283,4.956 1551,536.4782,310.11768,143.1864,342.00836,4.825 1551,-20.395271,-86.1661,72.163025,196.044,4.679 1551,-36.816124,-128.61652,118.00681,275.80902,4.469 1551,493.69012,226.96823,237.87,515.33374,4.408 1551,-71.69974,-189.47064,212.7586,455.79947,4.385 1551,609.37445,36.867203,28.849792,80.97293,4.142 1551,-5.2935886,217.919,17.245174,40.066956,3.867 1551,341.489,-33.83508,29.108337,68.42034,3.725 1551,363.2428,-18.458805,16.605377,39.80429,3.659 1551,252.17938,-4.568798,18.072815,36.71786,3.655 1551,-5.5536656,233.1726,17.3858,40.483093,3.632 1551,345.73358,-19.206482,18.46814,41.752316,3.481 1551,380.23895,-2.627142,17.410706,35.573814,3.471 1551,348.85724,269.70483,15.567841,23.148926,3.468 1551,612.3475,40.058388,38.231384,113.62612,3.456 1551,294.13852,-33.003628,28.488281,66.86795,3.438 1551,619.1465,-18.91439,17.281189,42.517876,3.433 1551,-6.069623,313.9558,17.272125,38.246857,3.4 1551,275.91437,-6.5287952,17.956055,40.05732,3.387 1551,188.65862,-2.821453,16.761337,34.37127,3.372 1551,617.97125,490.6967,21.359436,43.148956,3.352 1551,284.32343,-6.098233,17.830994,39.12343,3.337 1551,172.43533,-3.9626474,16.54979,35.35751,3.323 1551,267.66638,-5.252823,18.088684,38.188374,3.307 1551,358.5569,-33.660347,28.26535,67.177956,3.3 1551,-5.999981,262.46176,18.117367,40.52884,3.185 1551,259.96674,-5.2155714,17.972473,38.646637,3.176 1551,1.8227947,489.49182,20.282738,43.633118,3.168 1551,278.58838,-33.806175,28.127594,69.00265,3.161 1551,-6.456516,298.0742,18.119606,37.122894,3.144 1551,371.22147,-16.395714,16.58081,38.01123,3.14 1551,356.34995,268.2658,16.39679,23.95459,3.131 1551,204.3646,-2.4643154,17.167877,33.712643,3.124 1551,354.73282,-18.4488,17.168701,40.06213,3.114 1551,243.91203,244.85255,34.387985,52.81932,3.113 1551,474.32697,-37.0753,60.608032,129.67764,3.108 1551,-1.6133213,245.80922,29.106134,64.71959,3.107 1551,220.04187,-2.4486399,17.621887,34.354546,3.101 1551,546.8342,414.19025,83.168396,166.73969,3.081 1551,531.2776,-132.98236,115.2489,266.07114,3.079 1551,598.0283,201.01108,37.417175,93.50534,3.077 1551,244.2443,-4.5768957,17.651398,37.110573,3.065 1551,217.5408,198.63768,62.591766,114.28075,3.056 1551,622.1013,14.459644,27.767334,68.64827,3.048 1551,596.8004,23.094364,31.558899,73.340546,3.043 1551,368.06442,-41.1807,46.962463,93.02943,3.036 1551,613.70807,194.68169,34.91217,101.10704,3.031 1551,379.2423,-16.409111,16.21576,37.99686,3.022 1551,303.93063,-42.48905,47.38217,92.61719,3.017 1551,180.8175,-3.9053555,16.499084,35.944115,3.015 1551,196.52025,-2.7902298,16.890488,34.533283,3.002 1551,155.4597,-16.785152,16.19548,37.45322,2.996 1551,-9.330554,325.14334,38.67172,105.35742,2.985 1551,396.48926,-3.2596788,17.23053,37.28797,2.982 1551,236.2511,-4.1846886,17.49591,35.750977,2.981 1551,2.536542,-17.85169,17.439991,42.228966,2.98 1551,-7.637105,42.594357,37.773632,103.367966,2.98 1551,346.05383,-35.32923,60.567627,127.66505,2.976 1551,-11.210838,-3.2079926,41.535984,101.201805,2.971 1551,337.9184,-16.817888,19.074158,39.21183,2.967 1551,561.8882,-16.613413,35.007324,64.26446,2.965 1551,266.10706,-40.268623,60.227722,133.58356,2.956 1551,332.20526,274.2058,17.72882,26.662506,2.955 1551,106.68918,-17.26049,16.95964,39.72038,2.947 1551,422.3283,-32.956028,27.550293,70.769844,2.946 1551,212.04323,-2.3864613,17.53714,34.732918,2.945 1551,395.2853,-17.172453,16.082642,38.798927,2.943 1551,341.20502,270.00882,15.633423,23.071533,2.936 1551,158.95692,-34.049557,27.253036,69.17051,2.932 1551,163.54733,-15.758503,16.031677,36.892185,2.929 1551,240.10757,-41.176636,47.251892,91.41408,2.921 1551,208.09975,-40.07102,47.502197,90.54229,2.913 1551,462.00394,255.15736,15.036896,30.896988,2.907 1551,537.8689,-16.732952,18.049805,38.23339,2.903 1551,378.9135,-34.880722,59.707703,128.80405,2.899 1551,464.37762,-40.557888,46.616516,92.23879,2.896 1551,556.5007,-35.08587,29.93805,75.1189,2.891 1551,114.818085,-16.743538,17.31668,39.191574,2.887 1551,602.9487,-23.055664,51.901245,130.73428,2.886 1551,432.55298,-40.664692,46.58841,95.17662,2.873 1551,386.72086,2.2004147,20.267792,41.840515,2.873 1551,498.94162,-18.914793,42.481476,86.859764,2.872 1551,596.5876,236.32108,40.26013,101.61664,2.865 1551,459.0578,-16.676958,16.122559,37.472015,2.856 1551,84.882965,-17.116322,30.702827,66.05767,2.852 1551,626.7754,8.309069,19.245483,47.424683,2.851 1551,590.2704,17.351036,51.475586,156.05292,2.85 1551,246.15143,-18.830841,29.380646,63.941612,2.849 1551,406.3814,-32.924377,27.688599,69.841354,2.844 1551,460.15314,-2.2729702,17.4245,35.354828,2.84 1552,-5.781908,-17.625896,17.889324,41.733467,7.164 1552,-10.993019,-31.488884,29.277622,71.032394,6.942 1552,-6.4928637,488.48883,19.335373,44.148193,5.891 1552,627.2546,-17.128447,17.008972,44.7465,5.808 1552,-12.695063,476.6786,31.44719,63.09076,5.663 1552,626.1882,487.61316,21.712097,46.825867,5.419 1552,-20.348043,-86.254135,72.2047,195.46991,5.157 1552,-73.43586,265.68774,202.13449,462.24097,5.122 1552,611.36774,-48.05042,41.431885,102.0389,5.095 1552,583.11633,411.30966,71.56879,176.81241,5.089 1552,532.1468,-182.80528,149.3266,422.7724,4.857 1552,-36.456524,-129.91177,116.95372,276.87762,4.854 1552,536.5948,309.9212,143.25629,342.4074,4.851 1552,-22.086077,400.90622,79.93935,176.33267,4.824 1552,585.98236,-98.59314,75.03888,232.08957,4.82 1552,-71.90568,-189.9353,212.77249,458.12283,4.814 1552,613.2758,453.95514,39.493713,107.76581,4.714 1552,3.068705,-14.643791,16.815989,37.786892,4.615 1552,493.57367,227.34393,237.50085,515.2775,4.544 1552,-9.411192,-5.2812424,39.976585,99.11625,4.196 1552,477.57208,235.33034,12.461731,25.004837,4.153 1552,485.72388,234.15593,13.057587,25.040909,4.054 1552,5.7321787,-2.501133,29.801315,64.18947,3.987 1552,265.51633,-0.37366295,35.530396,63.00241,3.981 1552,10.27781,-14.9656315,17.125992,37.87823,3.976 1552,493.4339,235.30289,13.458038,24.13556,3.895 1552,137.92224,220.76913,35.14348,70.36673,3.843 1552,1.917963,-37.102234,43.070976,95.7461,3.759 1552,485.49655,243.28267,14.465271,27.03682,3.715 1552,2.994728,2.6525269,20.111998,43.173233,3.619 1552,492.73544,244.15697,15.522644,26.692612,3.608 1552,461.5427,237.2865,14.159149,30.406433,3.592 1552,-5.4035354,1.1485043,18.346458,41.61509,3.578 1552,8.790148,-90.41986,75.00813,207.25359,3.522 1552,26.663174,-15.174677,16.906338,38.240906,3.451 1552,619.3093,-18.158072,16.988342,41.598587,3.44 1552,477.09836,250.37408,15.540955,28.97583,3.43 1552,469.5091,239.97902,13.707581,28.021164,3.4 1552,27.776772,-14.418573,30.824371,62.168427,3.399 1552,623.4307,-22.183933,27.058105,68.72762,3.399 1552,10.859613,-1.9183731,19.198576,37.115906,3.342 1552,261.11942,-30.875837,29.832947,73.17078,3.332 1552,617.92865,490.3706,21.337463,43.64319,3.307 1552,460.59055,224.9169,15.432709,30.398071,3.263 1552,21.228241,-1.7635155,29.573647,60.513306,3.243 1552,155.45041,-16.023638,15.827499,37.90966,3.236 1552,571.26953,212.09314,34.73944,61.983093,3.222 1552,612.656,248.71773,38.220093,112.53197,3.21 1552,276.42123,4.8639603,41.947144,69.02422,3.18 1552,626.96985,43.040604,17.91571,43.43181,3.171 1552,27.252352,-1.7834167,18.801695,36.646736,3.162 1552,271.69507,-40.267326,46.73944,92.488655,3.16 1552,546.9791,413.95844,83.009155,166.73773,3.154 1552,156.36853,-3.8121328,17.27069,36.773388,3.151 1552,246.61421,-33.79764,28.600388,74.417305,3.148 1552,34.754684,-3.2671614,18.255875,37.396576,3.136 1552,163.25378,-15.599733,16.13205,37.235676,3.112 1552,242.28178,-16.382824,18.196548,39.749603,3.075 1552,3.2577038,-18.235641,49.561096,131.40755,3.071 1552,185.72914,190.22473,59.256332,122.57721,3.059 1552,18.640858,-14.312075,16.87767,37.33933,3.051 1552,135.17416,203.92397,60.966156,118.61693,3.051 1552,171.73582,-4.2821608,17.68747,37.279766,3.033 1552,265.08603,-14.169935,18.52295,39.399387,3.003 1552,91.15491,228.79745,58.299652,109.89395,2.996 1552,175.83961,-41.719967,47.54155,91.34698,2.994 1552,498.42993,207.22697,42.613037,73.536026,2.985 1552,525.25696,219.07062,30.810974,53.066742,2.979 1552,508.29956,226.24002,15.7317505,23.946625,2.975 1552,612.7796,185.78996,36.542664,112.94554,2.965 1552,144.01784,-40.842506,47.2697,91.605576,2.953 1552,515.5811,220.38835,17.501709,25.101837,2.933 1552,500.89362,235.76862,14.958496,24.486603,2.932 1552,171.05177,-17.028202,16.155289,38.195774,2.926 1552,538.4711,219.24051,20.533752,30.93869,2.925 1552,582.2478,178.78102,38.036865,97.447495,2.922 1552,147.41328,-15.1362915,15.830811,37.04575,2.903 1552,207.94641,-41.535923,47.473236,92.12015,2.902 1552,1.9114804,489.3732,20.183884,43.699432,2.886 1552,60.29241,-2.6918964,17.876503,35.05992,2.884 1552,403.32574,229.36758,33.65271,55.839417,2.879 1552,627.26746,67.050186,17.226562,43.539352,2.877 1552,250.12762,-16.228935,18.354065,39.477257,2.876 1552,515.58905,206.72087,18.37445,30.293274,2.867 1552,230.72183,-34.68987,28.935059,73.79399,2.864 1552,-9.636376,373.85553,38.327023,105.21188,2.863 1552,43.523987,-3.5028353,17.668991,36.846535,2.844 1552,112.0868,-40.747375,47.284676,93.04613,2.834 1552,22.13399,-32.455643,28.069532,70.49858,2.834 1552,598.7105,170.90933,36.97876,109.36685,2.832 1552,292.75748,-34.5671,29.336761,72.99137,2.832 1552,154.8996,-36.36783,60.422943,128.16328,2.831 1552,180.18192,-4.6107225,17.420853,38.001286,2.829 1553,487.8778,219.77612,38.207275,88.62402,91.119 1553,526.1368,220.37518,38.12372,93.19751,83.612 1553,503.81854,225.53311,35.572266,79.50412,11.024 1553,-5.0840874,-17.121403,17.31698,42.03628,7.486 1553,251.50494,224.36823,18.787994,33.06241,7.442 1553,-11.253738,-32.634876,30.1075,73.33332,6.123 1553,-6.7953253,489.16632,19.93914,43.236267,5.969 1553,-12.851552,477.96695,31.627731,62.689728,5.804 1553,323.58585,215.80229,20.054047,32.270706,5.66 1553,626.2138,487.6489,21.698425,46.87741,5.657 1553,268.27405,233.32986,15.039581,28.531464,5.227 1553,-73.408424,264.85123,202.10931,462.60934,5.146 1553,582.93634,411.6729,71.83081,176.13019,5.107 1553,275.44095,234.40857,15.491333,26.285675,5.056 1553,627.25793,-18.034481,16.781738,47.53801,5.044 1553,-16.83068,436.64987,54.825157,138.59744,5.028 1553,-17.555895,-62.670628,56.464996,142.33112,5.022 1553,474.19482,-4.825865,20.694763,40.964233,5.018 1553,492.36145,-181.66776,232.80487,425.47205,5.011 1553,536.40137,310.1911,143.7143,341.34546,4.989 1553,613.11554,453.8772,39.66559,107.85034,4.957 1553,586.27875,-100.36743,74.11444,234.16461,4.832 1553,611.11566,-48.62979,41.602722,101.89473,4.8 1553,-40.944958,365.32114,111.55209,276.2195,4.785 1553,383.89545,218.46107,22.259644,40.483994,4.779 1553,482.17575,-5.4448395,20.643616,41.86284,4.68 1553,258.94833,230.77557,16.011444,33.850403,4.67 1553,542.0111,225.78922,33.46521,66.03061,4.661 1553,330.74487,223.91536,16.583344,26.364395,4.622 1553,284.23785,235.08963,14.959534,24.273712,4.546 1553,565.5406,220.45956,37.206726,100.56537,4.495 1553,494.83444,229.32535,237.01682,512.94763,4.468 1553,490.2414,-5.0449524,20.79834,40.655945,4.456 1553,-9.1223545,-5.964897,39.50595,99.74739,4.435 1553,2.4083924,-15.683746,17.318357,40.40136,4.411 1553,-36.58332,-127.438896,116.98789,275.10947,4.327 1553,299.47855,218.57346,17.530884,29.665817,4.249 1553,486.2896,-32.197857,27.759277,71.62291,4.152 1553,537.897,199.88017,51.832336,111.06047,4.105 1553,-71.33709,-189.23952,211.35754,453.8266,4.079 1553,317.45428,231.7506,15.302124,26.442978,4.021 1553,469.1995,-15.923506,31.364197,65.35731,4.003 1553,256.54565,221.27657,21.049438,31.77127,3.973 1553,479.81845,218.86736,33.81839,70.02409,3.873 1553,348.2873,227.77734,15.929321,24.430695,3.852 1553,521.417,226.76068,26.686523,68.23712,3.851 1553,339.2558,226.43628,16.667969,25.260529,3.819 1553,324.81732,229.43224,16.062927,27.500656,3.78 1554,496.39215,234.4208,47.639587,104.74469,97.05 1554,536.60254,228.33443,45.85437,114.79256,85.264 1554,211.33873,230.42548,19.329697,29.93106,9.191 1554,283.28812,227.8947,15.332306,25.74681,6.485 1554,-8.859206,464.7381,37.624023,92.05292,5.975 1554,278.59418,233.08968,13.57077,25.935074,5.967 1554,627.323,-16.859661,16.772522,45.3443,5.759 1554,-6.362357,489.75656,18.95213,43.12906,5.624 1554,-6.091581,-18.361645,18.110968,42.774628,5.541 1554,-11.418547,-32.3384,29.711514,71.84692,5.524 1554,626.379,488.29056,21.409363,45.340057,5.396 1554,309.54337,229.76955,14.137817,24.306137,5.385 1554,583.0317,411.92642,72.286865,176.22397,5.241 1554,536.4883,310.9938,143.1336,339.60385,5.213 1554,-17.588299,-63.496933,56.771206,146.94415,5.177 1554,623.10925,-33.476192,26.232666,75.04118,5.136 1554,586.12695,-97.965324,74.15692,229.4867,5.107 1554,506.0461,269.13666,32.289703,74.212555,5.102 1554,-73.06654,264.94043,201.17477,462.59967,5.068 1554,491.61758,-181.39462,233.79044,426.92517,5.057 1554,581.2328,233.13641,38.64441,109.68805,4.997 1554,613.5225,453.8254,39.156067,107.99051,4.989 1554,317.41943,231.02428,13.600464,23.843155,4.932 1554,-21.637383,403.10858,79.31277,174.57281,4.775 1554,227.49078,234.4204,16.842957,29.725113,4.672 1554,302.40698,234.89014,13.304657,22.598297,4.668 1554,603.1995,-57.081024,53.41577,134.75322,4.616 1554,458.22696,-18.336329,18.352905,40.377182,4.563 1554,495.2527,229.74838,236.98395,512.09155,4.471 1554,218.61438,233.53061,17.149857,32.59619,4.445 1554,325.92633,232.52548,13.219635,24.55832,4.397 1554,450.39795,-17.885723,18.310577,40.60733,4.376 1554,-36.531796,-127.17951,118.2605,276.27435,4.355 1554,293.47293,234.95949,13.203735,22.696732,4.34 1554,453.82504,-34.38897,29.00113,73.15097,4.331 1554,428.2477,-16.515308,32.22351,68.69174,4.274 1554,442.3796,-18.745085,18.060333,42.274902,4.184 1554,560.9537,237.33376,33.064636,74.97197,4.078 1554,-71.19213,-187.79605,211.06097,454.42123,4.06 1554,594.05817,-45.88631,44.896362,95.39791,4.059 1554,438.0982,-32.479115,28.848541,74.17155,4.057 1554,363.4206,229.84529,20.886993,40.52794,4.036 1554,434.25595,-16.59484,18.024384,40.43609,3.964 1554,520.5486,242.2222,36.846252,89.848175,3.936 1554,270.51703,233.77856,14.175751,25.408447,3.935 1554,426.22952,-5.241871,21.077148,42.32655,3.904 1554,468.08243,236.50177,42.405365,97.05719,3.902 1554,470.09537,-32.80457,28.737305,71.03641,3.896 1554,548.25714,273.67374,30.521057,75.690094,3.879 1555,593.8537,225.57889,44.728333,172.78723,69.602 1555,602.181,246.91516,34.70868,87.56445,8.566 1555,614.6642,319.75922,26.842468,84.461365,7.863 1555,603.48444,294.2759,35.38971,86.70859,6.451 1555,-8.541821,464.22635,37.31814,92.75229,6.088 1555,-11.537542,-32.471436,29.819002,73.39957,5.707 1555,626.049,486.3363,21.894348,46.885376,5.509 1555,-6.384059,489.3172,18.854706,43.068604,5.508 1555,615.7473,244.77626,23.568298,66.9944,5.419 1555,-5.891831,-18.39152,17.59309,43.64885,5.319 1555,627.2611,-17.240564,16.775146,46.296085,5.223 1555,610.84467,-48.02984,41.95349,100.23169,5.183 1555,586.08575,-97.659454,74.225464,230.35034,5.154 1555,536.1538,309.51282,143.44409,343.07532,5.029 1555,-72.90241,265.60187,200.98325,461.0667,5.001 1555,317.0636,221.18121,14.794922,24.9915,4.984 1555,531.94495,-182.55159,149.69781,422.3697,4.976 1555,613.3545,454.0618,39.556885,107.05936,4.86 1555,-17.300735,-63.11857,56.601154,144.96245,4.859 1555,-21.54496,403.28754,79.18507,174.9021,4.825 1555,582.5022,410.36438,72.20148,178.45923,4.735 1555,209.02191,222.23785,20.913162,30.352951,4.721 1555,492.49557,227.36255,238.90329,515.6674,4.627 1555,268.26648,229.92337,15.762695,28.812408,4.619 1555,259.30716,214.89383,19.100983,32.484253,4.567 1555,-71.222145,-189.54762,212.18759,457.1753,4.537 1555,601.19836,290.98395,51.823547,141.89154,4.403 1555,583.91943,143.94495,62.75952,224.68787,4.317 1555,-36.765633,-129.76309,117.234924,279.24927,4.301 1555,275.79324,223.84494,15.774139,28.503876,4.191 1555,590.4727,299.71014,35.297546,78.25397,4.176 1555,355.58514,220.41882,17.266418,34.38301,4.161 1555,370.8453,225.01262,18.638184,36.34938,4.118 1555,268.289,238.95148,17.449188,33.2287,4.016 1555,301.3105,221.2198,14.911346,24.259506,3.971 1555,617.6264,230.3916,20.140747,52.224,3.923 1555,470.03687,-33.936886,28.378601,74.53756,3.831 1555,490.5277,-20.039345,18.454987,43.37291,3.819 1555,284.70615,225.07422,15.414154,26.274597,3.79 1555,617.8198,488.11987,21.716248,44.115417,3.783 1555,219.23886,233.94156,15.305603,25.290283,3.754 1555,265.71283,212.57382,17.086151,28.506363,3.749 1555,609.37317,225.45705,38.582275,127.951645,3.729 1555,523.80566,-15.497641,32.48639,60.184944,3.719 1555,484.6712,-21.003355,31.55011,69.74183,3.653 1555,211.29428,232.2502,16.428635,27.504776,3.634 1555,561.92065,230.3755,42.590942,103.090866,3.609 1555,482.14923,-18.996105,18.646088,42.421318,3.56 1555,378.7035,222.90314,17.145813,32.420593,3.526 1555,624.76385,244.93182,20.950623,53.409424,3.462 1555,502.1773,-34.617958,28.270264,73.82181,3.424 1555,532.988,-33.21767,30.281006,72.11945,3.405 1555,611.9619,338.63824,39.194397,117.13153,3.378 1555,252.44647,220.25716,17.53955,31.465927,3.367 1555,234.66997,219.39803,19.348862,30.825348,3.357 1555,466.18317,-16.84938,17.904633,39.70392,3.333 1556,239.89127,216.5449,22.296661,33.814774,8.592 1556,322.1433,218.83629,17.83731,31.804153,8.236 1556,-8.561173,464.60864,37.43689,92.550415,6.601 1556,-11.538292,-32.924297,29.934547,72.68254,5.706 1556,-5.9486322,-18.629248,17.826546,43.070206,5.7 1556,627.1308,-18.064264,17.032166,46.478172,5.489 1556,-6.3638935,489.06125,19.001064,43.3519,5.34 1556,622.95264,-33.724487,26.241028,75.85508,5.319 1556,191.19337,222.93387,24.65976,33.411224,5.17 1556,585.71277,-97.67687,74.79022,231.43625,5.118 1556,621.7775,478.06662,29.310059,66.075714,5.103 1556,-72.70563,266.00403,200.65448,460.75232,4.963 1556,490.97205,-179.97041,233.80463,426.52103,4.949 1556,-21.460968,403.49716,79.130646,174.80075,4.828 1556,-17.428429,-62.704,56.62688,143.7145,4.828 1556,583.0671,410.80743,71.76813,177.07922,4.816 1556,377.4991,216.44415,19.513855,34.216797,4.739 1556,603.37854,-57.863808,53.532227,135.70493,4.723 1556,536.2754,310.5286,142.98608,341.89804,4.683 1556,370.4126,213.94072,20.162628,34.526855,4.668 1556,-70.9222,-190.19235,212.00125,457.32767,4.52 1556,594.04205,-46.913963,44.92047,97.974205,4.437 1556,-36.706287,-129.32234,117.261795,279.41962,4.392 1556,493.10788,226.22537,238.47305,516.114,4.311 1556,617.7277,252.22246,18.87976,45.040817,4.141 1556,480.2176,229.87578,23.24002,48.009018,4.106 1556,493.11548,-13.674301,29.9292,63.42283,4.002 1556,505.92453,-17.66327,17.909393,42.277847,3.799 1556,501.4668,-33.295246,28.81549,73.55249,3.766 1556,386.7776,216.7599,18.940033,36.12773,3.758 1556,522.58984,-17.35615,17.398926,43.174522,3.732 1556,514.3299,-16.936804,17.705566,41.883034,3.708 1556,498.03708,-15.682926,17.869781,40.514442,3.69 1556,364.27588,233.79646,18.03241,38.320023,3.67 1556,248.32085,211.94972,19.241714,29.365341,3.634 1556,2.6816983,-17.162066,17.03731,40.43839,3.608 1556,5.865562,467.13446,37.438377,96.21991,3.592 1556,202.11081,229.88199,17.812836,28.348053,3.573 1556,490.34286,-15.663784,17.415344,39.665295,3.561 1556,486.96875,-0.5824547,28.29956,60.84597,3.548 1556,-8.219327,116.233734,37.952946,107.01315,3.535 1556,617.8341,489.53156,21.607483,43.268494,3.524 1556,208.13123,215.72972,21.615112,35.054825,3.466 1556,594.6517,247.69014,19.458984,37.171738,3.436 1556,292.7251,217.8559,14.82901,26.321854,3.387 1556,300.85913,219.61267,14.761047,25.619827,3.378 1556,619.68494,-17.80252,16.810974,43.32378,3.371 1556,-5.7157907,219.6718,17.401558,38.737534,3.351 1556,349.13913,219.98006,15.912323,31.628769,3.34 1556,284.7343,217.46904,15.215881,27.081848,3.282 1556,-10.33949,8.767441,39.962753,105.44721,3.26 1556,180.13306,210.65816,42.129486,66.59206,3.259 1556,508.8046,-16.365679,30.375824,62.88572,3.239 1556,530.598,-16.158957,17.218628,41.430504,3.229 1556,531.861,-134.65515,115.42523,271.02567,3.206 1556,226.47028,212.2193,41.224945,70.45209,3.191 1556,-5.8206854,202.32709,16.932415,38.875946,3.184 1556,211.1666,231.09087,17.74385,28.720718,3.17 1556,532.1315,-17.455284,31.864258,65.18805,3.152 1556,193.41362,207.99205,32.36232,47.46788,3.124 1556,486.388,-32.861774,27.93866,72.2192,3.106 1556,-8.693095,56.038296,38.02591,106.20532,3.101 1556,276.57898,215.1051,15.934387,28.038849,3.1 1556,477.95856,-14.903673,30.362396,64.4476,3.091 1556,612.60333,437.22766,39.666016,97.41919,3.085 1556,218.51135,223.21759,19.727798,33.252533,3.079 1556,9.395123,-91.7206,74.43381,210.23335,3.076 1556,517.94257,-33.28414,27.892334,72.936134,3.046 1556,538.8274,-17.48969,17.051636,41.243153,3.042 1556,-6.1734123,184.3988,18.000425,40.594864,3.03 1556,483.15106,-2.6232357,19.202148,37.551025,3.018 1556,309.66354,219.77519,15.179962,26.685577,3.017 1556,612.9926,266.07468,36.94275,112.70026,3.016 1556,571.0139,242.5838,19.34076,45.83734,3.009 1556,546.3261,412.7746,83.82599,167.12726,3.006 1556,603.2813,250.70755,19.135315,36.12671,3.005 1556,1.7398667,-40.41797,43.53247,99.64022,2.995 1556,187.09021,230.12064,20.08017,32.467438,2.983 1556,-9.168121,231.18652,38.423603,100.47778,2.956 1556,223.83958,204.81702,28.66298,52.207123,2.94 1556,241.5407,208.42844,42.21205,73.38937,2.925 1556,-8.772354,294.13208,37.62629,105.583405,2.922 1556,-5.848712,235.23883,18.006973,39.10205,2.919 1556,523.6196,280.58698,16.76007,30.31018,2.917 1557,594.58636,221.71494,40.77826,106.31363,23.428 1557,565.31366,235.03296,47.73767,87.66467,6.532 1557,-8.4402275,464.71606,37.37402,91.87537,6.033 1557,209.28442,211.9076,24.481049,42.005142,5.881 1557,-6.6334915,489.0973,19.438253,43.424927,5.816 1557,613.56696,453.59067,38.54718,106.87558,5.769 1557,378.61893,221.66113,19.078857,33.96527,5.654 1557,-11.384845,-32.242687,29.545204,71.65651,5.61 1557,626.94855,-18.026562,17.44751,46.907322,5.591 1557,612.0686,227.87216,27.999878,86.976715,5.529 1557,-5.979706,-18.009138,17.887728,42.350643,5.394 1557,575.8463,266.41208,39.9964,66.43817,5.242 1557,409.60455,247.7196,20.979218,38.421387,5.192 1557,610.7885,-48.247772,42.28961,100.21033,5.167 1557,-72.94182,265.7954,200.96562,461.31555,5.028 1557,536.2268,309.5976,143.54614,342.2771,4.997 1557,372.3894,216.83812,17.863556,31.363327,4.995 1557,625.97485,486.94592,22.028564,46.220093,4.958 1557,405.19107,233.91615,29.994019,62.846603,4.896 1557,349.07074,221.00584,16.226044,29.858215,4.892 1557,582.8257,411.8152,71.853516,175.9878,4.852 1557,585.79675,-98.910614,74.85211,233.17673,4.847 1557,-21.700354,402.81268,79.36957,175.39862,4.825 1557,532.42664,-182.19206,149.02295,423.06656,4.767 1557,-17.700531,-61.6648,56.739548,142.89879,4.76 1557,482.9134,230.75464,30.123108,63.160828,4.65 1557,493.54968,227.8808,237.94025,514.35364,4.489 1557,-71.00366,-190.53961,212.03503,457.84555,4.454 1557,364.28558,215.61804,16.8656,30.45816,4.449 1557,-36.625626,-128.48572,117.37187,277.57315,4.393 1557,574.0653,234.69746,53.88324,139.9724,4.223 1557,159.15762,220.14763,25.155441,37.30507,4.151 1557,609.40955,228.7238,22.316284,53.78267,4.136 1557,209.6687,217.64246,31.840714,62.330566,4.133 1557,147.30331,204.44003,42.172516,72.14133,4.111 1557,609.7108,244.15854,36.98419,112.39331,4.093 1557,223.89917,207.91772,21.47284,33.707138,4.072 1557,395.06335,224.99525,19.742401,34.581833,4.022 1557,355.52728,219.91455,15.619934,29.575348,3.99 1557,590.0451,251.55951,49.98175,156.59473,3.961 1557,329.74216,215.9854,17.99176,32.229004,3.943 1557,612.05615,294.0763,38.41815,116.96741,3.925 1557,386.2875,218.40146,18.918915,33.634155,3.891 1557,496.10522,234.56517,22.90393,49.548874,3.884 1557,481.38055,230.21854,21.989655,40.040405,3.781 1557,409.7292,235.6472,19.687164,34.599716,3.714 1557,225.67535,203.41258,42.147797,76.77754,3.698 1557,548.53973,232.74084,44.29425,87.12213,3.663 1557,401.88718,232.4326,18.579987,35.36348,3.631 1557,474.14548,233.18857,22.450409,45.092896,3.608 1557,2.4963374,-15.93527,17.085346,38.797466,3.605 1557,585.0954,149.5493,61.012634,198.89076,3.553 1557,234.2878,205.84795,19.336014,32.01184,3.538 1558,410.41772,222.90953,21.68338,38.956345,9.512 1558,389.00854,212.30275,28.457092,58.5403,8.275 1558,-6.4429045,488.3226,19.088055,44.293365,6.299 1558,-12.850633,476.60052,31.495827,63.620544,6.163 1558,400.56003,224.29448,23.750122,43.856552,6.066 1558,-11.396327,-32.57355,29.675549,72.40328,5.653 1558,626.03406,487.9787,21.4068,45.470703,5.566 1558,363.41248,211.90387,21.419403,38.411316,5.502 1558,118.61328,229.82506,25.010498,37.235977,5.46 1558,-6.0710535,-18.570415,18.140926,43.355755,5.456 1558,627.3711,-16.488804,16.667603,45.04425,5.429 1558,613.2543,453.82397,39.100464,107.08447,5.392 1558,-73.37497,265.40863,201.57465,462.21783,5.155 1558,413.63116,223.61073,28.199219,55.45732,5.145 1558,622.9996,-33.718445,26.36316,75.19085,5.122 1558,185.9584,212.828,22.571564,42.3181,5.043 1558,-16.97519,435.7516,54.592457,138.93793,5.024 1558,536.5142,309.77405,142.88312,342.86133,4.975 1558,-17.639017,-62.426826,56.94085,143.73293,4.869 1558,378.00238,219.23758,21.271423,38.407898,4.8 1558,582.756,411.35162,71.95654,177.00922,4.769 1558,585.7467,-100.20855,75.38147,235.15271,4.713 1558,-40.70511,366.59497,111.32315,275.00977,4.681 1558,603.1897,-56.29609,53.87451,136.78229,4.63 1558,113.44687,208.13515,44.097946,70.13628,4.572 1558,433.63834,214.10559,35.31906,64.90869,4.429 1558,493.8581,226.95612,237.5924,515.20996,4.415 1558,532.3968,-182.36879,148.79022,422.4771,4.411 1558,-36.440815,-128.49725,116.95535,278.6198,4.343 1558,369.92,217.6813,21.671509,36.987366,4.337 1558,-70.97192,-189.3184,212.16586,456.48926,4.329 1558,340.67105,225.36755,31.85382,64.62311,4.241 1558,419.1757,220.62949,40.28885,89.122284,4.122 1558,422.51553,222.09082,24.121796,41.685883,4.047 1558,386.13144,219.91548,21.90561,41.720993,4.04 1558,620.2676,-2.2242107,16.999207,37.56829,3.971 1558,178.5603,206.54694,41.285767,75.24457,3.906 1558,490.09143,114.20147,19.315979,45.29487,3.892 1558,594.44855,-46.31204,44.66266,98.81548,3.829 1558,152.44388,225.02615,23.451324,38.41147,3.816 1558,120.24708,186.21944,59.416313,98.264786,3.766 1558,618.2206,489.81683,20.906372,43.462524,3.761 1558,145.57417,209.7484,44.02536,70.20772,3.682 1558,139.17532,212.98051,34.22348,54.623062,3.612 1558,580.1763,217.15962,41.727783,111.5569,3.577 1558,538.7653,-16.73364,17.01648,38.30558,3.546 1558,2.440805,-16.683376,17.16194,40.191,3.514 1558,-8.0814705,226.6318,37.41913,105.012634,3.49 1558,256.08514,183.44878,23.585632,40.518494,3.478 1558,467.76385,278.60614,33.556885,59.981934,3.466 1558,403.7238,218.22198,40.4133,92.003296,3.462 1558,193.84322,204.42154,41.311737,78.52377,3.462 1558,594.39954,194.07243,45.321594,165.06868,3.458 1558,417.9565,203.27077,34.641937,67.14815,3.431 1558,516.42206,213.75089,40.998962,89.98102,3.424 1558,539.3671,-1.5599232,18.199951,35.51387,3.349 1558,392.73727,207.32477,21.051056,40.492462,3.344 1558,426.94324,242.06444,20.277466,39.444077,3.342 1558,210.43387,201.89288,41.838562,81.44116,3.338 1558,442.2665,252.22534,21.068329,38.255737,3.338 1558,611.3176,262.16687,36.73169,116.262024,3.328 1558,242.44614,195.45381,43.064056,82.86293,3.324 1558,547.4188,218.50684,41.211304,101.79132,3.28 1558,-8.548538,71.06114,38.47139,105.50694,3.276 1558,373.27438,209.31244,39.43744,86.67755,3.275 1558,615.5825,-18.704115,26.571777,69.84061,3.267 1558,226.12067,198.70346,42.21167,82.330536,3.258 1558,563.31903,217.88394,40.930298,107.588135,3.252 1558,493.76477,191.54608,53.454895,120.49646,3.236 1559,412.2646,213.91241,20.516449,49.445404,29.135 1559,422.43567,209.89973,30.52246,66.831985,8.884 1559,404.11383,211.13148,19.249695,43.467834,6.812 1559,627.0295,-17.904974,17.246399,46.613853,6.406 1559,394.51263,215.66983,19.08197,41.66855,6.385 1559,-8.5917425,464.944,37.395073,91.58444,6.156 1559,621.9535,476.96576,29.287292,67.012695,6.099 1559,-6.5361795,489.6774,19.35938,43.03824,6.039 1559,610.2494,-46.354366,42.557617,96.33329,5.971 1559,440.45807,231.56155,23.444641,50.58911,5.695 1559,-5.953865,-18.523396,17.99727,43.24736,5.488 1559,50.108,217.26816,33.01602,69.08069,5.433 1559,-11.347476,-32.39151,29.957294,72.80081,5.331 1559,585.7109,-97.47444,74.86163,230.43268,5.112 1559,-73.2368,265.7149,201.4094,461.3797,5.109 1559,385.28442,216.16711,20.699493,43.160706,4.899 1559,-21.671297,402.90982,79.24674,175.12094,4.867 1559,536.3523,310.1755,143.26776,342.4152,4.862 1559,153.52881,213.26614,21.252853,39.694885,4.831 1559,-17.660591,-62.235554,56.73498,143.24521,4.819 1559,582.84906,411.85464,71.896484,176.69919,4.774 1559,408.29156,209.01605,35.99762,84.24524,4.748 1559,531.99286,-182.20755,149.62201,420.96173,4.719 1559,353.6914,204.1007,21.228058,39.680817,4.689 1559,357.54877,205.81052,29.444977,66.58621,4.642 1559,218.71695,202.94334,18.85707,35.695694,4.503 1559,493.73764,226.99423,237.75723,515.4719,4.411 1559,-71.086395,-189.37708,212.29588,454.98413,4.295 1559,-36.718586,-129.33041,117.17195,280.68015,4.24 1559,416.83862,220.67061,21.625488,57.78926,4.233 1559,618.80835,-17.3313,17.492432,43.645153,4.199 1559,377.52533,211.76459,21.892517,44.005783,4.149 1559,521.2213,251.35059,35.384033,58.829895,4.109 1559,617.89417,488.16913,21.702454,45.362366,3.971 1559,506.40668,-16.976448,17.588501,42.7991,3.931 1559,586.52893,-17.128984,17.83667,40.93466,3.885 1559,506.87592,264.50153,22.514648,44.24469,3.882 1559,364.51764,224.05612,31.97342,65.69757,3.865 1559,432.97562,199.07051,38.55435,83.323715,3.794 1559,390.10474,207.49559,37.236145,89.583755,3.793 1559,501.16675,-3.6458778,28.141907,61.816254,3.789 1559,2.2843301,-17.250053,17.449608,40.92731,3.78 1559,62.636528,214.36795,45.088997,80.039795,3.762 1559,606.71436,-33.453957,27.798706,74.03577,3.626 1559,578.29364,-16.764051,18.064758,40.737514,3.625 1559,147.8071,189.22928,31.322403,58.27054,3.583 1559,436.88306,214.33566,23.68396,52.23889,3.553 1559,133.66547,201.39778,30.647903,52.669556,3.537 1559,72.54986,188.69896,61.49299,111.062485,3.536 1559,146.43762,201.16652,42.486618,79.89345,3.507 1559,602.5135,-27.433506,53.63861,141.08768,3.474 1559,41.430634,186.56786,56.78089,115.524124,3.47 1559,500.07675,244.46143,35.23404,62.805603,3.432 1559,431.05737,204.7344,22.259735,48.33937,3.428 1559,146.16171,217.12982,20.047928,41.169617,3.426 1559,413.16925,189.73837,50.46991,108.0235,3.424 1560,447.96002,208.20998,26.226837,59.946915,43.646 1560,443.71506,218.89389,21.223114,53.630768,13.158 1560,106.70937,197.90704,34.015343,59.559692,12.006 1560,456.0721,209.65857,28.989227,65.75818,8.046 1560,431.61914,206.56412,29.742706,62.128693,7.16 1560,412.8274,213.14206,29.069305,61.946777,6.703 1560,378.31787,209.50252,22.418243,44.020645,6.47 1560,393.68622,216.04018,21.148651,45.85045,6.422 1560,603.00037,-56.147385,53.04956,137.77577,5.708 1560,423.77884,211.24629,23.755585,50.77162,5.699 1560,627.29376,-17.548958,17.114685,45.03995,5.639 1560,-8.683334,465.2363,37.389545,91.148834,5.623 1560,-12.596016,-39.38711,41.450153,101.720894,5.559 1560,-6.6438055,489.51193,19.347528,42.914276,5.553 1560,385.59055,212.74634,21.298248,47.880432,5.526 1560,613.2003,454.81223,38.99536,106.52225,5.413 1560,4.894793,234.54115,30.55898,63.669662,5.304 1560,625.9635,486.91306,21.767822,46.56125,5.181 1560,374.6067,191.73682,31.342133,53.261642,5.177 1560,623.0985,-34.244095,26.358215,73.686584,5.055 1560,-73.59587,265.36035,201.22754,462.15222,5.052 1560,585.2357,-97.60993,75.219055,231.12277,4.901 1560,-21.901497,401.89783,79.54768,175.76624,4.875 1560,-6.193923,-18.701797,18.123293,43.90269,4.821 1560,583.1071,411.24146,71.63989,176.9516,4.801 1560,536.8128,310.287,142.5755,342.98486,4.773 1560,-20.01559,-86.92379,71.928635,197.11635,4.721 1560,450.6677,233.02881,19.881042,47.9245,4.667 1560,-36.775978,-128.50536,117.51261,277.55023,4.599 1560,119.9736,193.53697,33.191223,62.552048,4.588 1560,490.3726,-179.18433,235.04727,423.16974,4.511 1560,458.23047,233.35432,19.477295,48.09874,4.505 1560,500.98523,200.0406,39.396606,105.4745,4.35 1560,494.2659,227.60178,237.20877,516.0233,4.319 1560,464.50497,196.96358,31.660858,68.87587,4.297 1560,386.73865,195.14098,30.683044,61.152115,4.176 1560,1.8136477,34.570282,26.935148,77.12387,4.163 1560,367.81964,197.17207,24.187653,39.928955,4.154 1560,-70.8963,-189.4386,211.52025,455.6461,4.136 1560,-8.61084,229.37534,37.742428,98.48999,4.122 1560,0.024244785,197.3775,49.29199,125.54175,4.034 1560,203.82712,196.06992,18.786957,34.80513,4.025 1560,594.81213,-45.163086,43.489807,100.46172,4.003 1560,420.65442,223.41476,30.117218,63.98828,3.875 1560,398.14178,213.6541,30.928589,61.965134,3.862 1560,123.6082,220.12907,31.967682,53.386948,3.862 1560,443.86737,189.48578,50.11371,102.83777,3.835 1560,2.9553204,252.08623,19.653444,42.65074,3.823 1561,76.075874,207.45007,30.914207,64.273346,20.694 1561,489.79443,202.13098,39.109497,96.24878,19.373 1561,404.6858,200.10175,30.267242,62.145447,8.001 1561,-8.70755,465.9377,37.613785,90.36984,7.189 1561,-6.4274116,489.74118,19.18339,43.200653,6.94 1561,627.2633,-17.601246,17.005493,45.009388,5.953 1561,-5.850492,-18.327553,17.388563,43.240288,5.75 1561,481.96347,-0.11445618,32.731354,79.664894,5.561 1561,622.98065,-34.757626,26.309998,74.49736,5.38 1561,603.3127,-55.732155,53.506836,136.49698,5.202 1561,-12.428402,-40.977127,41.130775,102.36865,5.198 1561,621.6883,476.41055,29.529724,67.66403,5.17 1561,-20.795956,406.62823,78.05168,172.02576,4.996 1561,-39.493473,371.75433,109.19429,273.3587,4.962 1561,-72.46863,267.48462,199.49013,459.87512,4.811 1561,583.02924,412.12494,71.68787,176.24304,4.793 1561,536.80273,311.27597,142.11255,341.7582,4.754 1561,418.6862,206.37827,31.124725,60.204376,4.727 1561,490.32953,-179.43855,235.18262,424.3776,4.701 1561,391.3055,196.31,33.843445,60.33731,4.697 1561,-20.070171,-87.321846,71.83768,197.59485,4.675 1561,586.0304,-99.50342,74.9444,233.56476,4.583 1561,-36.410603,-129.32579,116.89076,278.7559,4.499 1561,73.67562,228.77072,22.110924,47.268036,4.437 1561,-70.96918,-189.4558,212.10233,456.5321,4.349 1561,5.3288803,470.008,38.2807,92.12573,4.343 1561,494.0883,228.50372,237.51498,515.2521,4.233 1561,502.73895,201.37749,35.126892,68.733536,4.208 1561,595.11426,-46.977486,43.437683,102.19262,4.127 1561,379.9685,195.97607,31.95282,58.36383,4.058 1561,619.2512,-17.878534,16.816895,41.77221,3.936 1561,201.78113,193.8351,19.874542,35.145157,3.862 1561,499.28342,-14.940098,32.628082,68.03011,3.859 1561,1.9156039,490.46997,20.041447,42.828857,3.83 1561,53.76059,208.22714,32.65941,62.772522,3.807 1561,451.6946,205.2253,41.722992,95.15956,3.761 1561,412.81863,-5.114773,31.127869,69.418976,3.76 1561,464.46106,199.95647,54.60846,126.084366,3.679 1561,60.055862,189.1998,54.59633,103.46915,3.669 1561,420.75424,-16.251755,32.318512,69.002075,3.595 1561,494.7469,237.1719,28.666199,74.75778,3.577 1561,188.26883,188.40448,31.869232,53.354782,3.564 1561,231.84201,160.66016,30.455841,59.98764,3.543 1561,417.9134,-4.1590633,21.767242,43.151497,3.493 1561,195.47731,483.37817,32.736557,57.889404,3.492 1561,90.804886,217.62196,29.604538,57.8593,3.491 1561,580.8937,229.43948,40.048096,111.9129,3.46 1561,2.6874518,-16.177664,16.518557,39.541637,3.46 1561,208.73643,475.39078,22.350693,33.956055,3.45 1562,549.9421,183.60588,48.730896,122.68715,79.235 1562,449.62643,181.90456,18.295135,50.700623,34.468 1562,36.83519,187.77934,30.515182,67.96005,18.28 1562,602.1351,228.03616,32.30475,73.950775,10.807 1562,589.6162,222.45778,31.79663,76.93877,7.788 1562,627.23584,-16.699268,16.989868,45.536114,6.779 1562,-10.978479,-32.647526,29.867628,75.67874,6.335 1562,-5.566675,-17.24329,17.4842,43.784504,5.993 1562,-8.555267,465.55304,37.335022,91.00586,5.876 1562,573.61597,184.26524,48.910828,127.58913,5.844 1562,621.9271,477.44318,29.08728,66.62201,5.723 1562,622.43774,-33.53223,26.862122,76.521904,5.569 1562,-6.4657173,489.76508,19.171146,42.67212,5.242 1562,-16.66753,-62.52232,55.337692,144.93242,4.952 1562,569.4162,214.02899,32.085632,89.4881,4.915 1562,566.8942,243.40361,22.83844,58.291855,4.86 1562,-72.71188,267.3412,199.79178,458.57605,4.847 1562,536.65826,309.65134,142.28998,343.91898,4.834 1562,-21.714054,403.05377,79.27171,174.7779,4.824 1562,583.1454,411.93106,71.39441,176.34732,4.808 1562,603.1211,-56.0151,53.64154,135.6041,4.772 1562,489.84943,-181.21089,234.84363,423.7708,4.745 1562,233.14735,155.87486,20.194336,42.94861,4.645 1562,445.78406,178.80905,17.320862,38.74193,4.586 1562,590.16364,198.6698,44.497498,137.1366,4.498 1562,-37.04954,-128.60854,116.94556,278.8936,4.458 1562,493.3327,227.85663,238.26764,515.5808,4.416 1562,586.2794,241.55376,23.983887,61.921158,4.335 1562,-71.689835,-190.27759,212.32773,455.5131,4.312 1562,586.36163,-102.00498,75.24457,235.75378,4.254 1562,614.61774,242.89746,23.039856,56.274963,4.248 1562,615.17096,-18.077332,26.632568,71.39671,4.225 1562,531.5357,175.05458,18.929749,40.548157,4.171 1562,453.70926,-7.1879883,27.635681,68.83633,4.138 1562,439.62378,167.21983,34.37744,81.0661,4.128 1562,619.284,-15.207079,16.54242,41.001724,4.087 1562,604.72327,256.418,30.464172,93.728485,4.054 1562,626.84595,0.6925087,18.482117,48.443092,3.988 1562,530.4955,186.03784,54.875244,144.07831,3.751 1563,502.98712,209.12086,27.977905,68.03624,34.457 1563,0.5247712,212.51431,25.820097,82.641846,28.34 1563,67.78398,187.77016,31.585411,58.85231,8.124 1563,622.7081,-32.898422,26.844116,75.46705,7.055 1563,626.8164,-18.099726,17.419373,46.800804,6.439 1563,537.3924,178.77419,19.384644,32.334732,5.927 1563,-12.8226,477.5161,31.456192,62.612976,5.913 1563,-11.293409,-32.570667,29.8836,72.07846,5.84 1563,-6.64415,489.09338,19.427137,43.461975,5.691 1563,-5.805981,-18.466496,17.841818,42.7968,5.546 1563,-16.820318,437.28394,54.470078,137.20367,5.281 1563,613.64984,454.1033,38.75824,107.433075,5.136 1563,-73.39194,265.9887,201.24953,460.79755,5.021 1563,-19.961048,-87.46055,71.65279,197.51924,4.838 1563,536.7695,309.79346,142.06958,343.29285,4.829 1563,626.0687,487.6426,21.817505,46.057465,4.812 1563,582.96936,411.3266,71.74774,177.15692,4.773 1563,-40.33272,367.25208,110.56911,275.15112,4.737 1563,602.6152,-56.09205,53.773865,134.89575,4.704 1563,467.03046,219.04738,31.073181,79.39177,4.694 1563,618.76276,-6.1335096,19.536316,42.7732,4.669 1563,78.57919,185.99281,26.188507,46.703003,4.666 1563,585.998,-100.265564,75.12335,234.97122,4.651 1563,485.29205,202.16571,39.52484,103.16531,4.587 1563,185.41487,202.89383,20.226639,34.243225,4.577 1563,170.47086,203.00194,19.075012,34.914597,4.543 1563,-36.87096,-128.58076,116.76964,279.56552,4.508 1563,-71.2509,-190.02191,212.68575,457.14676,4.483 1563,-10.003216,198.8833,45.758797,140.69452,4.453 1563,499.33112,211.79094,39.22638,104.02315,4.359 1563,532.3758,-181.87115,148.43402,421.73618,4.358 1563,449.768,220.31302,36.02835,76.585144,4.344 1563,607.02936,-34.765976,27.076172,71.99109,4.338 1563,493.71283,227.87628,238.02032,515.13806,4.31 1563,614.4664,-21.309029,27.354004,71.66485,4.265 1563,594.22064,-44.852036,44.99298,97.29366,4.211 1563,234.64774,184.64272,19.899841,42.81978,4.2 1563,229.63303,154.51707,34.73477,72.09311,4.17 1563,459.84482,183.96246,49.411713,126.191376,4.106 1563,513.8021,202.02663,39.55182,98.88368,4.081 1563,8.494589,174.97173,57.08928,121.56291,3.969 1563,37.345676,186.34831,31.75346,63.076294,3.836 1563,516.45306,217.25273,25.16687,51.70189,3.802 1563,-5.111544,90.788246,16.264246,38.304314,3.799 1563,616.5963,195.594,24.486511,69.14722,3.794 1563,53.51342,185.74971,32.068924,55.36679,3.783 1563,490.18112,215.00517,22.082367,56.37819,3.778 1563,178.2067,205.71143,20.415405,34.9216,3.741 1563,2.2395444,250.3603,19.776016,49.80867,3.74 1563,-10.54214,-19.663647,39.16198,100.51849,3.721 1563,-9.750763,268.90735,39.043907,110.22952,3.693 1563,2.6540298,-16.039822,16.862843,39.278667,3.62 1563,180.90996,173.96309,30.50711,60.120087,3.586 1563,7.9063487,213.2863,32.818703,74.18916,3.582 1563,490.8263,256.69858,20.95932,45.85074,3.573 1563,-4.9687653,256.101,18.751434,48.187622,3.554 1563,66.61746,194.22597,41.46871,84.94319,3.535 1564,39.932674,183.18213,25.333614,55.99211,10.878 1564,10.086089,162.51744,29.274601,73.31337,6.883 1564,-8.439336,464.6774,37.192448,92.167206,6.186 1564,490.52216,228.73572,33.561462,69.56732,5.842 1564,571.333,197.18546,56.23987,130.80936,5.822 1564,579.315,197.80032,31.632751,74.03198,5.744 1564,3.1625009,163.78012,24.302332,82.701416,5.737 1564,-11.656214,-32.736515,29.80836,72.2634,5.73 1564,610.6578,-47.71434,42.200195,100.108826,5.635 1564,626.94977,-19.06041,17.531189,46.627945,5.476 1564,625.97,487.10385,21.70581,45.99533,5.463 1564,-6.4680433,489.2897,19.150871,43.208282,5.42 1564,-6.1586905,-18.653471,18.020142,42.739735,5.361 1564,613.28735,454.9732,38.61548,106.23901,5.276 1564,-3.7645679,173.78172,17.487396,49.285538,5.085 1564,-72.92719,266.7464,200.50494,459.48187,4.953 1564,585.21985,-97.2394,74.85327,231.19345,4.948 1564,-21.723757,403.09662,79.310715,174.8565,4.863 1564,536.83374,310.02557,142.32123,342.01917,4.842 1564,19.676832,169.99982,32.756775,69.5043,4.837 1564,582.9266,411.78192,71.73285,176.71906,4.706 1564,-17.324596,-62.07099,56.464455,143.97964,4.696 1564,229.1615,161.15694,30.314117,62.21994,4.675 1564,169.36165,191.8993,23.61943,41.524124,4.654 1564,-36.795994,-129.20045,117.31166,282.4767,4.587 1564,532.1292,-181.17213,149.15326,420.22214,4.483 1564,-71.07242,-189.48721,212.48465,455.91144,4.385 1564,493.9236,227.86963,237.69699,515.4772,4.313 1564,33.869606,177.72427,41.318336,84.59085,4.183 1564,502.96185,234.06718,24.437073,53.32155,4.175 1564,590.4219,212.74695,48.94281,137.46655,4.024 1564,618.35583,-8.486256,20.48523,45.465626,3.941 1564,-6.9133034,179.64757,36.803123,97.9987,3.924 1564,561.3305,212.73401,46.508484,97.27606,3.911 1564,1.6451073,161.47891,47.3728,120.39322,3.791 1564,479.32053,238.3305,31.118683,62.466553,3.743 1564,-7.3257923,164.19986,26.683292,72.80319,3.625 1564,546.9092,226.17165,44.927612,87.87019,3.528 1564,618.1227,488.03012,21.211487,44.2399,3.52 1564,530.361,24.504341,34.259766,80.01779,3.516 1564,462.14633,-34.48003,27.648438,77.641495,3.478 1564,28.041615,159.55426,33.574577,63.432693,3.415 1564,492.18585,-12.465164,30.67694,69.69156,3.41 1564,611.6883,191.47064,38.34375,112.75168,3.399 1564,-4.8371778,156.38347,17.119827,42.529083,3.395 1564,474.44135,-16.295212,17.03769,43.641582,3.369 1564,2.444003,-16.817335,17.277012,39.537136,3.368 1564,-8.4379425,53.382473,38.50376,104.95865,3.365 1564,-4.1478987,193.34781,18.028465,49.969055,3.363 1564,-11.215619,-3.4151993,40.79941,101.091354,3.336 1564,505.22754,179.7778,59.11664,130.60898,3.331 1565,135.36333,182.21545,24.213547,44.926636,7.449 1565,204.34637,154.90543,29.403336,60.54843,7.028 1565,626.79156,-18.61185,17.832458,47.4172,6.353 1565,603.3066,154.82281,17.661255,31.325104,6.089 1565,610.07367,-45.582912,42.65155,95.66555,6.033 1565,-12.775011,477.61658,31.054718,62.52472,5.651 1565,-6.013127,-18.885006,18.044556,43.576633,5.645 1565,113.78376,188.51039,19.620506,39.768066,5.63 1565,621.72186,476.56464,29.300354,67.39038,5.552 1565,-6.618844,489.31735,19.34517,43.131195,5.545 1565,107.1035,187.19981,18.860062,39.74884,5.315 1565,585.6611,-95.33861,74.53436,228.24214,5.291 1565,-11.2746,-33.030293,29.746555,73.64706,5.275 1565,-16.927456,-61.934868,56.25113,144.64401,4.933 1565,-72.971375,266.268,200.68927,460.1712,4.92 1565,-21.743603,402.14694,79.24556,175.69681,4.907 1565,583.2087,411.1327,71.52368,177.40314,4.816 1565,121.64684,193.93939,20.180214,37.91008,4.786 1565,531.8142,-181.86945,149.97717,418.86716,4.777 1565,536.9227,310.33954,141.97528,342.33832,4.698 1565,-36.707306,-129.06264,117.02821,278.77457,4.536 1565,-70.84994,-189.67871,212.16922,455.74536,4.228 1565,493.01807,227.3006,238.3003,516.62054,4.145 1565,545.8634,-16.896973,18.379211,38.6392,4.065 1565,-4.556836,157.57831,16.796684,39.354584,3.966 1565,597.50287,160.08264,16.805115,30.678085,3.961 1565,559.4985,-39.941086,48.08008,88.720795,3.919 1565,99.616936,190.1868,19.24228,37.814667,3.87 1565,307.48065,-14.815025,33.594666,64.22508,3.801 1565,617.599,-6.6765366,20.88507,44.969185,3.782 1565,597.2314,-18.542305,41.429626,87.85323,3.755 1565,-8.707781,7.3908806,38.706608,105.22267,3.744 1565,609.70105,153.28302,19.016357,33.700027,3.725 1565,538.5715,-16.63647,17.463562,38.032383,3.697 1565,220.2816,152.63812,29.88124,62.371277,3.678 1565,617.7918,154.59233,18.461548,37.896393,3.599 1565,347.37607,-14.566149,33.02185,62.845802,3.559 1565,622.5422,-11.10742,27.288025,70.930275,3.543 1565,627.5674,479.7855,18.58136,42.302032,3.423 1565,618.2897,488.7668,21.061646,43.90927,3.416 1565,2.9083185,164.88272,18.398373,43.104553,3.416 1565,602.0814,-23.653976,54.038025,135.42177,3.408 1565,2.5819683,-16.93639,17.233809,40.6943,3.39 1565,129.93542,175.17938,40.992706,69.98953,3.37 1565,571.98047,-15.69046,57.382263,125.700775,3.342 1565,83.31687,194.74716,18.6708,34.51503,3.339 1565,301.97015,-34.10244,29.285034,72.31583,3.322 1565,588.09564,-17.30313,34.172302,66.32259,3.25 1565,170.357,180.71436,18.692245,38.1212,3.243 1565,113.72565,182.28876,43.779602,74.35867,3.241 1565,553.2389,-18.163115,18.977783,39.773193,3.231 1565,292.312,-16.26132,32.34607,62.62079,3.213 1565,104.91859,169.11397,22.177826,40.121017,3.212 1565,25.477869,171.44177,21.418028,48.979904,3.197 1565,-8.483162,167.50018,38.331684,95.58435,3.186 1565,612.31244,56.20401,37.11255,116.604996,3.158 1565,-4.511604,199.01927,16.317196,39.85959,3.148 1565,331.5382,-12.820263,33.429474,61.29038,3.141 1565,340.9998,-32.76696,29.628418,71.926895,3.138 1565,76.1368,201.22528,17.817017,29.702637,3.118 1565,163.12639,179.94771,19.303558,37.64026,3.102 1565,9.651144,-92.93602,74.11274,211.2512,3.099 1565,357.20367,-33.454803,29.78247,72.61763,3.095 1565,549.57733,-32.2821,29.356567,69.25802,3.085 1565,528.098,-40.453648,47.17578,91.148796,3.078 1565,590.159,-9.89241,51.575623,167.30946,3.065 1565,4.7035084,191.79102,29.044691,59.284073,3.062 1565,98.53325,174.2895,41.807755,71.21318,3.023 1565,590.11896,157.92126,17.166565,33.477417,3.014 1565,613.14075,437.44833,38.610474,97.76669,3.008 1565,597.6914,462.12198,38.09424,97.28244,3.008 1565,91.39499,192.4909,19.0532,36.455734,3.008 1565,298.36194,-16.44494,17.477203,38.10359,3.0 1565,546.8645,413.15247,82.78119,167.78406,2.994 1565,377.51346,-17.554806,18.725708,39.868332,2.99 1565,555.89716,-14.908029,35.361877,59.24599,2.989 1566,140.00299,171.04813,31.004013,63.73288,10.043 1566,604.4448,180.67432,15.80658,27.44838,8.965 1566,-6.536744,488.84326,19.314854,43.89685,5.982 1566,-12.654188,477.6643,31.249147,62.681763,5.834 1566,627.35675,-16.956059,16.74878,44.512314,5.82 1566,-11.367138,-32.562386,29.862011,72.673,5.626 1566,597.7882,179.80392,16.545715,28.420364,5.587 1566,623.13525,-34.43622,26.244629,73.98312,5.531 1566,-6.067126,-18.280903,18.15674,42.600876,5.516 1566,626.2939,487.711,21.589966,46.29486,5.161 1566,-73.46038,265.80145,201.23976,461.14935,5.028 1566,-17.331268,436.27783,54.603336,138.46295,4.96 1566,613.4816,453.91287,39.335266,107.8342,4.9 1566,-17.350618,-62.67459,56.907257,145.38551,4.802 1566,582.94055,410.9865,71.763306,177.39606,4.792 1566,603.2519,-55.68683,53.398193,137.93202,4.77 1566,536.58563,310.0393,142.3872,342.55316,4.766 1566,-40.495216,367.15277,110.87789,274.62164,4.657 1566,585.74445,-99.593025,75.79022,234.40408,4.654 1566,154.55588,170.762,34.050507,61.109634,4.419 1566,26.141615,212.67017,20.42306,36.937653,4.362 1566,-36.996193,-127.38197,117.27946,277.7004,4.361 1566,532.25616,-183.86626,148.7575,421.9241,4.351 1566,493.3307,226.1416,238.49658,516.8967,4.333 1566,590.40247,177.4781,16.88092,30.242615,4.323 1566,618.31,173.90428,16.707947,34.891068,4.247 1566,610.06616,178.9414,16.314758,29.783981,4.132 1566,597.88806,160.91153,36.193176,81.41264,4.106 1566,-70.61532,-188.68831,211.78049,454.43323,4.017 1566,5.9411774,198.70276,29.38683,61.31909,3.991 1566,589.3194,164.91354,17.25293,29.72078,3.836 1566,2.4968815,-16.597486,17.33756,39.723072,3.698 1566,20.815636,200.43336,30.872234,56.048996,3.664 1566,594.8989,-46.073032,43.88159,102.270424,3.65 1566,619.5288,-17.617828,16.588623,40.9802,3.647 1566,613.7784,65.30434,35.00403,107.73851,3.641 1566,57.11062,211.85316,21.558289,35.11577,3.603 1566,41.35383,214.19785,21.357246,35.410004,3.595 1566,618.03467,490.0802,21.24939,43.568665,3.566 1566,33.849895,219.37427,20.420895,33.72209,3.558 1566,3.1799555,201.16966,40.499554,101.819046,3.517 1566,598.7748,90.36073,37.361572,99.59671,3.44 1566,-5.3037524,218.00534,16.936207,36.599564,3.337 1566,620.3901,104.57416,17.601929,46.805756,3.31 1566,-8.197311,41.607048,37.51648,103.84168,3.308 1566,45.742325,188.92203,31.191658,56.67923,3.257 1566,580.5886,173.09143,40.48645,79.173706,3.245 1566,597.0299,163.9547,17.110474,31.493225,3.232 1566,-5.3804216,154.6346,17.418276,39.924057,3.208 1566,619.0494,185.74265,18.980164,38.735962,3.2 1566,1.4262152,-39.32203,44.149925,100.49818,3.143 1566,595.81604,119.08924,17.163147,32.38784,3.131 1566,3.1521273,224.4943,18.69558,33.152283,3.114 1566,-5.39137,138.74525,16.873875,39.727783,3.11 1566,-10.624052,-2.1223946,41.647964,98.80643,3.08 1566,585.0241,161.13223,27.288391,50.77684,3.054 1566,35.007378,180.94704,31.725517,60.246384,3.044 1566,-8.848137,261.417,38.179977,107.04724,3.041 1566,157.11763,-16.75383,54.374237,135.30092,3.032 1566,-5.326971,122.11098,16.794708,40.16794,3.021 1566,615.7593,-21.998058,26.055908,69.05785,3.021 1566,-10.0938015,210.58774,38.98302,102.543,3.016 1566,1.9682443,489.48877,20.236876,43.95166,3.009 1566,613.65845,117.73422,35.205627,99.71701,3.006 1566,611.18176,185.5022,19.157043,36.43756,2.987 1566,628.17267,176.31804,16.520386,41.263855,2.984 1566,613.8447,187.92433,37.56891,108.90254,2.97 1566,-5.346756,170.25578,17.435942,41.413864,2.956 1566,546.5875,412.89108,83.44946,168.07828,2.953 1566,598.0822,188.18506,39.35382,101.84689,2.942 1566,5.5391655,466.6693,37.781536,97.23865,2.925 1566,-10.085359,103.667915,40.160187,102.491936,2.901 1566,17.002949,203.39236,43.818424,92.01688,2.881 1566,316.2649,-14.645126,32.010864,66.34042,2.881 1566,138.05164,153.0423,57.00833,112.34845,2.875 1566,603.8172,164.41641,18.084167,32.526413,2.865 1566,139.71437,305.91223,17.511063,27.434143,2.844 1566,360.63443,198.4075,22.698425,36.166428,2.831 1567,87.58556,164.08221,32.96824,69.62872,8.477 1567,-6.6906905,490.2269,19.350868,42.500397,6.066 1567,-6.146245,-18.937862,18.172226,43.676056,6.054 1567,-12.356444,479.62262,30.505928,61.64026,6.042 1567,620.3598,175.86575,15.914612,36.211624,6.011 1567,626.126,486.4636,21.762085,48.17386,5.724 1567,-11.516237,-32.350945,30.057095,72.38112,5.624 1567,106.40753,163.74918,33.182037,63.757812,5.463 1567,627.3793,-16.80576,16.68457,44.66268,5.442 1567,-8.794548,464.36536,37.509735,92.677124,5.383 1567,-17.911032,435.69562,55.962784,139.89343,5.173 1567,-17.497692,-63.30274,56.8173,147.38911,5.131 1567,623.244,-34.23632,26.121704,73.585915,5.061 1567,613.073,453.5863,39.415344,108.330505,4.996 1567,-73.46839,266.36798,200.95612,461.00958,4.98 1567,583.16644,411.18243,71.54175,176.54071,4.918 1567,603.3051,-55.77423,53.443604,137.10172,4.854 1567,536.65643,310.50253,142.79437,342.17703,4.641 1567,-40.600136,367.60175,110.9276,273.721,4.629 1567,259.7201,-13.323956,33.86432,61.183823,4.573 1567,626.8022,180.68224,16.18158,39.69394,4.556 1567,585.7634,-99.28346,75.91565,234.09555,4.503 1567,532.5947,-183.6047,148.32965,421.8193,4.33 1567,493.17264,227.05865,238.52097,516.3127,4.304 1567,-37.26643,-127.90718,117.89546,277.80746,4.283 1567,92.3876,187.39314,30.59642,68.84337,4.111 1567,77.43439,151.45279,53.380463,110.4704,4.05 1567,299.39618,-14.527035,32.823975,62.309685,3.893 1567,-70.570496,-188.31393,211.62418,453.59518,3.771 1567,595.2382,-46.340435,43.505554,102.44583,3.734 1567,122.56756,217.7981,19.998146,43.419434,3.702 1567,283.14005,-10.753635,33.78766,57.619736,3.669 1567,128.7242,207.0846,21.871902,42.29599,3.582 1567,297.93707,-14.717144,17.756622,38.178173,3.565 1567,139.64365,231.22685,16.802734,30.656693,3.529 1567,595.93134,182.00098,39.77704,88.7959,3.501 1567,-7.9985714,40.26009,37.93232,105.01169,3.499 1567,309.3978,-33.71081,28.988403,71.28093,3.48 1567,619.3993,-17.309464,16.358826,41.031082,3.476 1567,253.50208,-34.03375,29.438934,72.526306,3.468 1567,-4.910548,88.38585,16.578613,41.6763,3.466 1567,452.50928,169.52007,26.435883,65.73988,3.414 1567,2.425694,-17.258942,17.310051,40.659107,3.394 1567,116.761055,174.32344,32.18348,65.3943,3.367 1567,292.82358,-32.801056,29.837708,72.00947,3.363 1567,313.9417,-4.6697626,20.78241,38.920002,3.362 1567,617.6059,487.26135,22.068298,47.46631,3.359 1567,130.60684,228.41,17.189575,32.8154,3.337 1567,266.26645,-15.628159,18.05716,38.54733,3.331 1567,104.72614,157.84656,58.290245,110.89197,3.276 1567,289.8595,-13.900444,17.772644,37.20197,3.265 1567,619.87585,195.35568,18.029907,38.024445,3.224 1567,66.85891,176.91537,43.133118,82.6243,3.206 1567,613.85254,190.87436,37.794434,103.01065,3.173 1567,546.76263,412.76956,83.21771,167.42679,3.161 1567,410.9226,185.37901,19.401428,37.632187,3.161 1567,5.3436923,467.83398,37.965336,95.52173,3.149 1567,198.86932,143.47977,28.581161,70.714355,3.116 1567,265.9117,-3.2571297,21.82248,38.979485,3.099 1567,1.696856,-40.427856,43.751217,102.496025,3.077 1567,-10.790328,-2.6421852,41.44936,99.869,3.068 1567,306.17004,-14.9337845,17.888336,38.064907,3.033 1567,297.43375,-1.617302,20.93927,36.85191,3.03 1567,-8.814174,98.743355,38.343807,108.2131,3.028 1567,148.17943,231.98811,16.294968,29.532486,3.02 1567,281.67334,-15.0363245,18.090363,37.918797,3.013 1567,325.894,-33.72612,29.285187,69.77492,2.99 1567,186.76553,-16.299948,16.911774,38.7136,2.982 1567,42.259933,143.39447,58.525124,121.17325,2.975 1567,452.11426,180.84995,39.712982,84.69766,2.971 1567,123.37456,78.503716,19.316956,37.129066,2.968 1567,321.99863,-17.202518,18.32486,39.452965,2.968 1567,269.57162,-33.923634,29.358917,73.82139,2.956 1567,220.45036,-15.181289,32.224197,61.03289,2.956 1567,-8.285643,183.13196,37.155594,100.23599,2.951 1567,130.45477,195.98923,42.748383,81.20404,2.95 1567,404.11932,182.30804,38.92743,85.815125,2.941 1567,273.91336,-14.171707,18.422913,37.369606,2.939 1567,188.21112,228.10922,15.922638,25.867874,2.937 1567,-5.1834717,59.476883,17.817204,41.349197,2.935 1567,420.1858,182.82718,40.091614,83.87265,2.933 1567,202.61354,-16.444767,16.901367,38.957333,2.93 1568,48.90384,151.7556,42.584183,87.6089,12.36 1568,-6.62266,488.7675,19.471628,43.97513,6.422 1568,-13.048568,477.27045,32.272305,62.88495,6.314 1568,-11.524018,-32.503223,29.837051,72.27676,5.731 1568,-6.044181,-18.396795,18.118233,42.74785,5.443 1568,627.32214,-17.455109,16.996704,45.31801,5.286 1568,-17.010605,-62.381775,56.1872,146.51938,5.256 1568,622.90436,-34.327206,26.63733,73.92882,5.122 1568,626.56555,488.53217,21.499939,45.021484,5.119 1568,613.31647,454.1889,39.50299,107.67792,5.108 1568,-73.55415,265.4115,201.74675,461.8902,5.106 1568,55.711864,181.2037,29.452946,64.53781,5.086 1568,603.20056,-56.118286,53.488953,137.55434,4.974 1568,583.2738,410.80475,71.4754,177.23248,4.938 1568,-21.893936,401.89328,79.563805,175.6719,4.928 1568,536.6516,310.5841,142.6828,341.68896,4.666 1568,490.0388,-178.63654,235.03696,422.52136,4.428 1568,585.44073,-98.47577,75.80365,233.09511,4.427 1568,-37.05507,-126.164154,117.758255,275.01147,4.396 1568,492.872,226.45377,238.80878,516.61304,4.394 1568,37.398064,158.06436,31.954933,81.53705,4.336 1568,82.23746,169.36023,36.23449,71.36406,4.036 1568,-70.62356,-189.13116,210.81778,455.46237,4.018 1568,30.048439,104.8551,63.204613,135.02426,3.971 1568,598.0013,156.53073,37.69513,100.28473,3.928 1568,277.78656,-33.31947,28.830963,69.84564,3.912 1568,42.97962,195.70538,22.146584,51.32773,3.869 1568,186.91718,-15.71218,16.779327,39.083347,3.863 1568,375.94147,219.01166,23.831512,39.08136,3.832 1568,612.3634,202.59491,39.00226,108.02759,3.826 1568,71.00494,143.34651,37.531937,80.43184,3.821 1568,281.40714,-17.02923,19.376678,39.840454,3.696 1568,618.5311,490.80545,21.01892,41.776886,3.69 1568,613.1849,78.65358,37.126343,109.20567,3.682 1568,620.5865,181.9148,17.647888,44.974625,3.63 1568,-8.036385,7.544674,38.633495,105.2682,3.624 1568,61.04281,215.44835,30.321205,61.35353,3.593 1568,179.04712,-14.439909,16.642563,38.33491,3.572 1568,12.70797,-11.621632,55.750862,123.27469,3.536 1568,2.5844717,-16.63582,17.273499,39.63724,3.533 1568,596.0079,197.76865,41.11847,105.49072,3.528 1568,170.7234,-15.63828,16.72052,38.937138,3.501 1568,14.043226,150.0654,54.466484,121.25049,3.462 1568,612.313,157.70932,35.491882,104.299255,3.459 1568,619.2179,-18.694036,16.96167,42.965614,3.413 1568,41.796524,136.2664,36.66738,79.63243,3.395 1568,157.88799,-15.086676,29.788025,63.74643,3.377 1568,313.94067,-16.825413,17.976318,39.22258,3.366 1568,300.90317,-32.97784,29.884644,69.13528,3.348 1568,1.690036,489.37238,20.581758,43.694336,3.339 1568,37.521652,205.591,32.193367,63.93927,3.308 1568,266.23367,-17.939585,18.270844,39.767715,3.276 1568,-8.897852,179.86656,38.00853,101.90962,3.263 1568,98.2121,195.19147,42.860275,81.385895,3.263 1568,627.3241,192.2238,17.183044,43.299942,3.247 1568,362.4229,214.316,20.346985,35.503906,3.221 1568,66.43655,181.35072,32.00582,67.44884,3.182 1568,23.860922,164.19989,30.509253,74.0332,3.147 1568,274.21024,-16.335611,19.22226,39.48411,3.146 1568,-5.819892,110.452286,18.408398,44.57956,3.141 1568,250.70634,-16.043499,16.666122,37.119194,3.141 1568,546.7164,412.60144,83.33093,168.12378,3.112 1568,3.075856,477.92508,33.65614,62.30185,3.111 1568,181.27072,-33.283527,29.073349,69.94787,3.082 1568,219.15613,159.65674,30.120392,71.791534,3.075 1568,580.68616,158.63359,40.11035,95.10066,3.058 1568,289.19574,-15.588769,19.67566,37.669796,3.052 1568,363.78326,206.74466,32.33658,54.487274,3.048 1568,72.4837,156.62009,56.406616,114.000885,3.048 1569,153.8717,152.74219,57.64235,137.37402,51.245 1569,2.323426,200.46776,31.801098,80.71507,6.667 1569,-12.816453,476.90402,31.688969,63.51474,6.158 1569,611.14526,-46.52376,41.292114,99.49235,6.153 1569,165.34302,215.43565,39.445816,78.23125,6.077 1569,-6.4504523,488.7799,19.148777,43.9729,5.94 1569,-11.140949,-33.39142,29.538633,75.184204,5.924 1569,-5.954704,-18.240456,17.742956,43.829376,5.543 1569,627.4326,-17.172615,16.942688,44.53292,5.514 1569,-74.29935,264.57916,203.75604,463.49664,5.447 1569,613.40466,453.85117,39.5542,107.70645,5.202 1569,-16.694614,-61.585754,56.15195,144.68681,5.045 1569,-8.465242,199.76718,30.27419,77.41812,4.987 1569,583.1266,411.1248,71.769775,176.926,4.971 1569,585.7824,-95.10647,74.2063,226.17505,4.964 1569,626.26575,487.2251,21.629272,46.08972,4.886 1569,-21.99015,401.63257,79.84301,175.6651,4.831 1569,536.46265,310.37598,143.11487,341.6958,4.77 1569,490.42953,-179.04062,234.47354,424.75644,4.693 1569,-36.847275,-125.82173,116.8419,273.82782,4.632 1569,-6.3192677,226.89569,37.36476,98.221985,4.631 1569,6.619332,176.69797,58.53176,126.00314,4.504 1569,-5.2807736,217.7486,19.833668,51.87433,4.475 1569,493.2666,226.23297,238.21912,516.32477,4.426 1569,161.52,181.70499,35.693954,96.28073,4.148 1569,195.93066,210.03372,33.04541,70.26004,4.145 1569,-70.82266,-189.09709,210.61119,456.26385,4.143 1569,-8.898277,-4.5310287,39.36635,99.40338,3.986 1569,183.94707,162.36765,57.45352,129.44363,3.979 1569,27.730423,215.92375,36.419014,71.50682,3.975 1569,154.94856,156.61241,39.827408,77.169785,3.97 1569,191.03409,230.9325,47.57321,78.84473,3.72 1569,194.87503,169.71086,35.199448,75.2083,3.572 1569,-4.988077,187.11292,17.968075,44.80214,3.555 1569,78.11421,239.38754,29.248222,60.760864,3.493 1569,618.28503,489.0712,21.38086,43.496307,3.454 1569,207.98746,236.60114,47.210922,73.62164,3.393 1569,-4.725118,241.82199,18.356024,48.60681,3.373 1569,340.97562,175.39098,32.01129,68.630356,3.355 1569,619.2002,-18.142948,16.738586,41.55727,3.319 1569,612.01953,230.3592,37.343628,117.435104,3.256 1569,164.78275,193.43063,60.058746,115.96213,3.249 1569,-8.90832,36.163925,38.365784,106.48479,3.247 1569,1.982491,-38.70036,42.686172,100.64617,3.246 1569,175.87675,238.46681,34.32422,61.418472,3.218 1569,8.968113,-89.06044,73.966995,205.64679,3.217 1569,146.39539,213.72867,47.552597,89.11597,3.203 1570,394.00476,134.12592,65.12393,160.09784,17.276 1570,627.046,-18.031784,17.432678,47.061348,6.991 1570,622.39233,-34.562145,27.002136,75.7048,6.39 1570,-11.671707,-32.398335,30.193966,71.79348,6.078 1570,-5.9694376,-18.64999,18.113258,43.079895,5.739 1570,-6.4403715,488.61536,19.029703,44.113647,5.525 1570,-8.819536,463.9067,37.78102,93.01816,5.459 1570,626.2005,487.75537,21.682556,46.10553,5.39 1570,602.90106,-57.24623,54.1156,130.14221,5.389 1570,-73.27594,265.21536,201.76106,461.70908,5.083 1570,536.2657,310.41333,143.21149,340.8213,5.06 1570,-17.102015,-62.562557,56.68828,145.62994,5.044 1570,208.68924,225.99658,36.449753,75.10211,5.015 1570,593.9436,-45.221355,44.835022,91.49712,4.968 1570,586.0214,-95.24644,74.36804,225.29831,4.95 1570,618.7822,-17.52677,17.918701,43.331676,4.895 1570,582.94385,411.43008,72.12927,177.10226,4.867 1570,613.34674,454.63544,39.63672,107.18848,4.822 1570,491.22003,-179.92957,233.61957,426.58676,4.818 1570,-21.981598,401.8121,79.731384,175.80875,4.81 1570,-36.87282,-127.252556,117.29451,274.64572,4.564 1570,493.55118,227.05194,238.66916,513.6901,4.411 1570,614.0427,-19.83243,27.730896,69.12546,4.408 1570,382.93384,74.88309,94.693726,259.9172,4.404 1570,179.9871,206.20671,34.20018,69.66533,4.395 1570,400.5869,198.18588,45.853485,125.016174,4.314 1570,-71.08252,-188.92694,211.51163,456.15836,4.281 1570,218.17313,-15.85312,17.576416,39.425827,4.17 1570,2.7194734,-17.10126,17.189472,40.21324,4.029 1570,201.59203,176.41443,60.898087,128.70758,3.979 1570,617.9458,490.54156,21.347778,42.109375,3.938 1570,423.52673,185.0905,59.296814,142.31313,3.917 1570,219.82977,202.73274,31.738815,70.834854,3.881 1570,210.1867,-14.051036,17.671265,38.735294,3.88 1570,289.71268,-15.106285,35.063263,62.13417,3.823 1570,196.56708,201.11183,32.32811,69.869125,3.758 1570,409.4409,254.20348,35.369537,73.38396,3.719 1570,490.0212,-20.85468,58.791107,124.38849,3.638 1570,-8.323494,22.529469,37.507114,106.24989,3.618 1570,226.77686,-15.192843,17.158066,37.76383,3.577 1570,245.61775,-33.3557,29.403824,70.119225,3.564 1570,585.9333,79.70982,33.183228,75.63127,3.531 1570,443.99377,-17.830135,54.64868,123.47832,3.528 1570,571.99805,97.496864,34.93744,75.07958,3.515 1570,-8.240276,196.8805,37.57123,104.43735,3.506 1570,533.20166,-33.21919,29.999939,69.81966,3.502 1570,490.3175,-16.108755,17.92627,38.742832,3.49 1570,397.85736,184.58107,36.18564,90.685074,3.467 1570,306.92337,-15.217581,34.62564,60.31919,3.447 1570,163.6568,207.1247,33.559753,64.82153,3.44 1570,521.78784,-17.514706,19.178894,40.515343,3.427 1570,349.2588,-20.351616,55.48297,119.94543,3.424 1570,233.56255,-39.030636,60.131577,133.11394,3.415 1570,230.46884,-33.04464,28.982635,69.49505,3.405 1570,202.27812,-15.206336,17.577744,38.926655,3.387 1570,496.2532,-40.64045,47.05661,88.51432,3.365 1570,612.27686,-5.555004,39.371216,112.74147,3.364 1570,58.529896,207.20131,30.674625,68.90007,3.358 1570,221.02715,227.81497,45.537735,88.03549,3.355 1570,610.45294,-14.645065,17.826477,38.67113,3.34 1570,570.9493,-14.37381,34.0119,59.200188,3.34 1570,317.24725,-18.24916,55.30078,120.175316,3.331 1570,465.9381,-0.6080723,20.035675,37.07128,3.287 1570,530.8838,-19.93544,42.307434,82.49606,3.287 1570,-9.804908,101.22049,39.513447,104.33911,3.286 1570,413.32578,-16.409824,54.42569,121.07915,3.285 1570,513.4594,-15.751578,18.956604,38.76558,3.275 1570,382.1184,-17.559235,54.24112,118.66248,3.271 1570,482.88867,-15.071461,17.462921,38.531628,3.262 1570,474.71216,-14.8064165,17.0643,38.14366,3.243 1570,186.13899,-2.704749,20.52649,36.961372,3.241 1570,235.08496,-15.678648,16.766632,38.39987,3.228 1570,-5.378058,265.239,16.445047,38.561035,3.222 1571,109.45459,215.54341,24.341171,41.80107,20.885 1571,209.6185,208.34485,31.05719,59.83011,11.069 1571,275.61578,202.99017,40.189636,95.401245,8.49 1571,198.03816,213.42569,30.540176,62.010315,8.23 1571,-6.1394367,488.3053,18.791805,44.294495,5.943 1571,-11.72085,-32.39263,30.162313,72.10875,5.876 1571,-9.063262,464.775,37.61832,90.62607,5.698 1571,627.3222,-17.440735,17.2016,44.74037,5.58 1571,-6.1658053,-19.060814,18.273706,43.60765,5.35 1571,613.4035,454.163,39.800903,107.28177,5.316 1571,74.16803,213.61491,22.414307,50.955948,5.297 1571,55.551384,207.88864,25.942238,44.193512,5.294 1571,-73.703224,264.6106,202.1759,462.9655,5.279 1571,622.8665,-34.424892,26.782837,73.58656,5.149 1571,100.15195,209.89241,39.611465,78.876114,5.104 1571,-17.709436,435.98468,55.464973,138.1546,5.09 1571,457.14023,77.65701,32.983215,69.292725,5.037 1571,117.903625,213.70908,24.459808,38.17656,5.019 1571,536.15735,310.81677,142.97131,340.89624,4.957 1571,582.8595,411.38773,72.36334,177.07217,4.917 1571,-17.564928,-61.97318,56.854485,142.52847,4.847 1571,585.66785,-95.966675,74.752625,228.86641,4.829 1571,-40.687668,366.11935,111.34467,275.5474,4.746 1571,490.79315,-179.6576,234.38092,425.70224,4.746 1571,603.3859,-55.54154,53.052124,137.09178,4.709 1571,626.4123,488.26657,21.418457,45.485992,4.666 1571,493.5835,226.65265,238.46191,514.5272,4.474 1571,345.1645,207.98544,21.303833,38.350616,4.418 1571,337.5444,208.89803,20.444122,36.83789,4.338 1571,-37.19738,-127.604454,116.80654,283.97266,4.296 1571,-70.23709,-188.49312,211.99062,454.69775,4.289 1571,4.3799314,198.8429,39.871506,88.96637,4.246 1571,46.675323,204.48154,27.339233,41.8291,4.212 1571,285.6141,240.02086,34.8721,68.6147,4.209 1571,180.33386,207.86969,42.033264,82.53177,4.138 1571,217.59344,174.1318,56.61548,117.23178,4.105 1571,456.92123,215.73048,59.55136,132.0255,4.081 1571,483.07532,210.48961,34.22815,69.79692,4.075 1571,162.90726,209.77335,43.163605,85.059875,3.962 1571,131.02629,211.36014,40.793,81.70923,3.938 1571,65.32364,208.5167,24.016174,47.01831,3.885 1571,450.7339,207.08289,43.27762,101.4068,3.882 1571,12.174723,175.32375,55.134468,105.73912,3.868 1571,-13.910512,120.73158,48.299366,142.11522,3.835 1571,281.1549,169.10536,54.865784,126.97121,3.834 1571,275.8272,183.75458,30.719421,76.648285,3.763 1571,99.8488,213.64078,23.021942,39.669693,3.757 1571,287.83142,192.83969,20.687927,49.745544,3.721 1571,-5.3024807,186.59503,18.285759,40.794647,3.714 1571,221.79048,207.6114,23.1624,46.365616,3.711 1571,190.05768,181.7424,52.651245,107.49939,3.69 1571,1.6869366,187.37003,21.36791,40.750458,3.677 1571,126.89589,209.03049,23.64154,37.311813,3.648 1571,305.81088,206.44266,41.27191,93.96854,3.643 1572,283.58884,207.15865,21.010132,44.894394,45.373 1572,382.17078,204.88773,34.158813,56.408386,28.865 1572,371.87268,210.10974,34.530487,64.07651,9.045 1572,256.62848,207.53882,22.255676,41.984573,7.598 1572,394.21555,207.4173,32.128143,66.88684,6.747 1572,295.825,207.21217,20.939453,40.289597,6.091 1572,610.17694,-47.202694,42.21637,97.37216,6.075 1572,250.12308,214.12737,22.378876,49.018784,5.859 1572,-6.4960647,488.45834,19.350937,44.472076,5.776 1572,627.03485,-18.601505,17.622864,47.086613,5.717 1572,-6.19801,-18.448391,18.199762,43.214123,5.7 1572,368.37115,207.67647,25.759705,45.26143,5.676 1572,-11.601572,-32.5799,29.897581,72.37138,5.65 1572,-12.912134,477.08386,31.792837,63.224976,5.466 1572,376.68246,204.94102,26.46112,43.22223,5.32 1572,490.80032,-180.70602,234.35202,428.00897,5.256 1572,626.02094,487.00912,21.813232,46.761932,5.218 1572,-73.498215,264.9685,201.4338,462.26794,5.15 1572,586.32806,-96.838104,73.74103,229.60335,5.092 1572,613.42847,453.7417,39.622314,107.315796,5.082 1572,-21.856869,401.79773,79.50224,175.88403,4.813 1572,229.05357,202.04492,29.381607,56.75403,4.812 1572,583.1975,410.8233,71.656006,177.28534,4.802 1572,536.37463,310.26715,143.0794,342.74933,4.746 1572,-17.467176,-62.301647,56.624893,143.97852,4.737 1572,289.4439,219.30122,18.01004,44.532425,4.675 1572,264.67517,206.33882,19.883148,36.728622,4.601 1572,277.4732,205.1221,20.069946,40.2706,4.452 1572,401.19098,203.62346,40.88144,86.53825,4.442 1572,493.60248,227.36362,237.88257,515.3833,4.413 1572,-37.39172,-128.53531,117.19321,284.18002,4.348 1572,383.93143,178.88045,45.37567,78.03612,4.348 1572,278.3148,198.30153,35.31317,71.79765,4.292 1572,-69.976036,-189.16237,211.60443,455.67896,4.216 1572,617.7149,-7.6019917,20.940002,45.98044,4.051 1572,258.20837,223.00345,19.290985,43.492584,3.951 1572,355.86197,203.28867,43.44455,86.994385,3.944 1572,116.07703,177.85661,40.424255,75.71837,3.872 1572,240.9411,208.47212,24.327087,46.431778,3.797 1572,606.0363,-33.322475,28.194153,74.06741,3.772 1572,418.5874,203.71625,41.843536,91.953705,3.753 1572,387.02115,-16.298489,17.24411,38.52603,3.728 1572,506.10562,-4.5584545,20.355682,40.729485,3.724 1572,394.5354,-17.376263,17.451752,39.57707,3.718 1572,404.22388,201.95578,25.81668,54.76425,3.683 1573,359.9709,212.77307,25.854065,45.633545,43.351 1573,487.9438,216.87941,23.635132,50.445236,27.823 1573,326.51556,212.41953,22.91504,43.5289,10.426 1573,485.712,208.3788,36.556732,95.02171,10.107 1573,-12.91697,476.15445,31.571793,64.56247,6.525 1573,-6.5303946,488.18228,19.238052,44.937958,5.967 1573,471.44946,211.14328,28.292969,63.15085,5.965 1573,627.2818,-17.637585,17.046936,44.969997,5.62 1573,-11.399883,-32.804146,29.96628,72.59381,5.569 1573,626.06824,487.38504,22.082031,46.52127,5.568 1573,613.41736,452.69174,39.85266,108.54758,5.495 1573,-6.094246,-18.391747,18.17558,43.234726,5.233 1573,610.5085,-47.845123,42.099915,98.19667,5.125 1573,-73.18349,265.3097,200.97261,462.33386,5.091 1573,-17.221495,-63.310173,56.607506,147.54628,5.088 1573,60.677715,197.72716,33.55295,59.653824,5.014 1573,585.9701,-98.65387,74.58093,231.02715,5.012 1573,-17.2516,436.12686,54.80773,139.3497,4.959 1573,536.516,310.5761,143.1023,341.51447,4.912 1573,491.08893,-179.9747,234.30621,425.22888,4.905 1573,582.91064,410.79898,71.843445,177.58835,4.779 1573,-40.52973,366.99457,111.07895,274.00543,4.74 1573,495.49008,209.6931,20.852203,40.817856,4.558 1573,493.87753,226.88815,237.16971,514.9381,4.503 1573,290.16266,207.21556,21.924408,39.91687,4.49 1573,547.436,147.90685,32.23065,73.60228,4.463 1573,362.4367,224.28252,19.70813,50.466263,4.447 1573,-36.596966,-127.272385,116.85748,276.7867,4.407 1573,336.7012,219.03574,22.485321,50.489807,4.348 1573,452.52182,206.13457,39.890656,95.48082,4.318 1573,-70.209694,-188.98448,211.21814,456.23523,4.252 1573,139.26213,195.97469,32.48616,52.417603,4.22 1573,181.03204,182.88028,38.834015,75.739655,4.212 1573,502.29404,218.4295,22.457306,48.14612,4.152 1573,514.06287,219.79147,42.04242,94.08548,4.143 1573,319.4132,219.15576,27.595703,60.08084,3.965 1573,296.78235,214.94305,22.441742,43.24884,3.954 1573,344.90656,213.65569,23.50586,48.766556,3.874 1573,315.32782,211.25906,22.143188,42.055862,3.81 1573,617.5719,489.13208,22.28003,44.247375,3.801 1573,464.6506,202.74657,52.85379,119.179,3.711 1573,195.94348,182.63528,38.680206,76.184296,3.707 1573,159.17694,166.88368,51.78708,107.92671,3.668 1573,455.69577,208.14653,28.787506,58.54869,3.639 1573,491.06216,186.12619,50.769623,123.83865,3.616 1573,355.37482,206.20532,22.753876,42.59555,3.575 1574,566.93054,214.65703,29.197266,69.05281,68.914 1574,403.5754,213.8901,27.572937,59.931183,57.686 1574,575.9567,210.41965,32.62964,69.04367,12.193 1574,550.5083,217.31258,30.023376,63.346542,11.226 1574,545.4046,226.60202,22.549133,47.666595,9.773 1574,363.17285,216.77005,19.549744,36.235962,6.745 1574,626.8723,-18.523788,18.00531,46.42036,6.628 1574,622.80896,-33.589043,27.053345,75.09302,6.271 1574,154.32227,212.1093,20.180618,34.47191,6.233 1574,-8.57225,465.0847,37.43057,92.10007,5.911 1574,562.81683,229.35387,21.359314,58.142838,5.842 1574,626.23016,486.85593,21.578064,46.479828,5.717 1574,-6.0621176,-18.835203,18.062637,43.82144,5.667 1574,-11.436775,-32.962563,29.722279,72.71908,5.63 1574,613.56573,454.25836,38.620483,107.236145,5.594 1574,-6.6710563,489.6029,19.464678,43.04602,5.577 1574,-17.218401,-62.741043,56.55024,146.33475,5.278 1574,-72.731514,266.08655,200.47406,461.13892,5.016 1574,337.64038,210.68346,21.74768,36.69867,5.001 1574,602.7959,-54.191242,53.515747,135.28673,4.947 1574,582.99146,411.77942,71.517334,176.42651,4.924 1574,536.3894,309.5742,143.87695,343.1614,4.919 1574,596.99677,219.17068,38.960144,94.91626,4.914 1574,-21.717403,402.5185,79.40827,175.5351,4.864 1574,585.6512,-97.26082,74.69464,230.16795,4.816 1574,200.8647,220.97786,22.721039,35.004776,4.797 1574,613.70795,219.33917,36.145325,106.66431,4.618 1574,122.644165,211.94315,20.27887,39.463562,4.542 1574,532.4091,-183.47269,148.85406,424.99362,4.494 1574,618.5788,488.94815,20.486877,43.611053,4.458 1574,560.5747,211.48175,23.633728,50.28369,4.456 1574,493.92178,227.3136,237.39487,515.59546,4.449 1574,409.51633,221.47717,28.944397,69.40619,4.427 1574,-36.642723,-125.98583,116.88447,274.35754,4.382 1574,618.9464,-18.999714,18.215515,44.12239,4.323 1574,157.05415,201.03847,27.599915,46.906357,4.277 1574,525.687,226.8489,27.52539,57.553986,4.272 1574,387.04736,216.69531,19.500336,42.74121,4.263 1574,192.66757,206.84053,22.22342,39.67575,4.253 1574,391.87137,220.69069,29.046112,68.69319,4.229 1574,-70.078606,-189.13997,210.8935,456.18768,4.214 1574,188.83669,181.6626,52.415924,101.848175,4.166 1574,326.19922,203.34053,28.510132,53.359146,4.151 1574,211.0405,196.8086,40.354446,72.417816,4.135 1574,346.4624,216.18124,20.40686,39.62645,4.052 1575,449.20355,211.05933,32.567505,70.66565,84.545 1575,386.3492,214.87575,20.826965,38.045258,24.138 1575,369.61908,213.66106,21.484558,35.57863,10.318 1575,415.8097,207.62769,21.495605,44.115967,9.061 1575,-10.962338,-31.651674,29.758698,73.68135,7.237 1575,627.19495,-17.285099,17.368042,46.04917,6.954 1575,-5.5389204,-16.424988,17.554295,42.67233,6.799 1575,623.1739,-34.54049,26.211609,76.500694,6.163 1575,-6.5097666,488.63278,19.314293,43.950287,6.106 1575,-12.986748,477.32877,31.764654,63.098602,5.965 1575,354.5139,211.35149,21.292938,40.852127,5.948 1575,402.31296,213.35097,19.910797,43.79207,5.71 1575,155.47476,204.58937,33.343536,57.285843,5.498 1575,358.49298,205.9162,28.566986,55.343536,5.471 1575,613.47253,453.90466,38.773438,107.46472,5.407 1575,168.98053,214.06854,36.17685,58.36435,5.357 1575,-16.945227,437.4923,54.553947,137.43774,5.334 1575,-17.15238,-61.05189,56.66944,142.54318,5.301 1575,602.7957,-55.29611,53.66327,132.91855,5.285 1575,444.4061,229.55698,33.30298,76.628235,5.254 1575,626.3518,487.7411,21.265076,46.22119,5.122 1575,-73.3096,265.65762,201.25993,461.40097,5.04 1575,586.2352,-97.3412,73.902466,229.37814,5.027 1575,378.1584,214.74245,21.763855,35.303635,4.963 1575,583.1083,410.91913,71.5755,177.17548,4.887 1575,536.3624,310.5641,143.5329,342.5332,4.805 1575,-40.58822,366.9691,110.93032,274.90994,4.752 1575,23.11457,200.99411,28.06337,64.96689,4.742 1575,393.39783,218.48384,20.078156,44.56276,4.734 1575,381.24542,211.85272,28.36148,63.154266,4.673 1575,490.83105,-179.454,234.49377,423.1496,4.606 1575,-36.295002,-125.95836,116.337616,276.90897,4.578 1575,493.9361,226.35919,237.17725,514.92596,4.573 1575,594.32983,-45.319946,43.88385,98.1589,4.538 1575,197.49344,194.34853,37.713943,77.086716,4.537 1575,5.229698,196.58452,38.239174,94.515396,4.509 1575,26.43021,167.69534,55.705143,120.28772,4.502 1575,343.4943,201.2675,27.825165,53.501144,4.29 1575,404.68918,210.20569,37.999054,81.29358,4.273 1575,618.8996,-17.40028,17.560974,43.782898,4.252 1575,460.57104,209.88214,24.248047,51.256866,4.207 1575,-70.21056,-188.77795,210.85657,455.6955,4.197 1575,455.67844,236.27448,34.655914,72.90521,4.189 1575,-8.878447,49.747627,38.3292,108.19738,4.165 1575,2.58395,-13.599724,16.647806,38.988686,4.164 1575,81.829605,193.69138,43.990395,87.4332,4.139 1575,73.93475,208.27092,20.86206,43.401505,4.03 1575,411.63324,223.97739,18.107635,38.80182,3.973 1575,191.22357,221.58575,25.927368,45.537018,3.959 1575,136.26093,207.87009,23.682465,47.09668,3.949 1576,532.691,213.69785,43.147278,100.42239,93.988 1576,366.7482,205.56262,26.43808,41.47139,9.032 1576,408.87366,211.88629,21.351746,40.881683,8.764 1576,392.62646,210.61226,23.736298,41.065323,7.976 1576,400.5461,208.82707,23.490204,38.060318,6.896 1576,440.03638,205.72238,24.005188,42.71974,6.697 1576,-12.974502,476.83563,31.741592,63.436035,6.233 1576,101.642494,197.01468,27.638786,64.67627,6.214 1576,492.1745,2.959179,29.895996,80.242905,6.16 1576,417.01035,215.61343,20.537628,50.253143,6.019 1576,27.803507,204.22948,30.356657,58.369766,5.829 1576,-6.465767,488.8947,19.215382,44.178894,5.797 1576,610.3633,-47.433434,42.198364,98.47148,5.689 1576,627.1789,-17.571325,17.029175,46.332443,5.609 1576,613.1844,454.047,39.645508,107.063965,5.552 1576,-16.837456,437.22046,54.37207,137.35107,5.51 1576,626.2407,487.8214,21.548218,45.15045,5.39 1576,-12.512758,-39.514183,41.316605,101.45984,5.362 1576,208.77365,209.02834,21.913696,33.67369,5.338 1576,-6.034874,-18.532616,18.067976,43.695843,5.325 1576,94.454636,219.18747,30.823975,60.87097,5.268 1576,583.08417,411.39783,71.71594,176.5581,5.046 1576,-73.39851,265.76428,201.28256,461.6709,5.021 1576,536.1911,309.5772,144.37622,342.46442,5.013 1576,585.9944,-97.44368,74.29645,229.32953,4.927 1576,386.43115,217.10004,21.707031,38.702682,4.825 1576,-40.52145,367.19434,110.90314,274.3153,4.716 1576,185.1377,212.23634,22.431122,37.192673,4.706 1576,-19.892689,-86.69506,71.509285,196.74355,4.67 1576,485.1738,-10.846193,29.874237,70.502686,4.628 1576,494.42267,227.6156,237.30975,514.1296,4.616 1576,81.687485,209.10625,18.733078,43.070786,4.604 1576,490.71167,-179.83795,233.828,422.30286,4.597 1576,353.6035,204.72604,22.825836,39.288116,4.59 1576,618.3899,490.2704,20.96582,41.957397,4.469 1576,354.90393,176.64302,42.21292,73.77777,4.392 1576,-37.139484,-127.14555,116.99739,277.60956,4.358 1576,394.55096,224.3982,18.82196,36.736267,4.335 1576,-70.11741,-188.32808,210.93661,454.95056,4.323 1576,380.3637,193.34099,33.43329,58.168533,4.298 1576,-10.447001,211.62427,38.786236,100.45386,4.237 1576,115.5043,239.52689,32.79184,66.76004,4.236 1576,443.57037,222.92123,17.756165,42.98523,4.227 1576,547.4781,216.548,36.049377,77.25986,4.179 1576,449.36002,201.86462,31.37024,57.317932,4.133 1576,512.9832,213.07196,55.68048,142.5647,4.121 1577,472.07025,203.03302,22.030823,53.110474,38.681 1577,429.77554,203.468,30.978546,55.264694,27.001 1577,411.14752,201.1618,33.063477,56.338776,21.537 1577,395.30685,200.31499,33.841858,60.187485,15.259 1577,627.0402,-16.930058,17.295044,46.297405,6.922 1577,-12.692567,476.38058,31.453442,64.29367,6.391 1577,458.27518,200.7365,21.383911,48.484863,6.294 1577,-6.47701,488.03934,19.320145,45.089752,6.153 1577,622.3872,-34.0116,26.992554,77.38044,5.919 1577,-11.13492,-32.790764,29.537226,74.436966,5.83 1577,443.57986,194.1971,30.805542,59.98799,5.794 1577,80.09593,208.6232,23.374344,48.137207,5.783 1577,-5.898118,-18.237705,17.849613,43.820065,5.678 1577,613.6594,453.13287,39.03839,108.19226,5.626 1577,202.0281,202.0197,19.744217,38.278,5.4 1577,626.31793,487.54178,21.49939,46.346527,5.292 1577,602.58276,-56.4308,53.965454,133.46289,5.27 1577,-17.057095,437.13004,54.628143,137.38986,5.205 1577,-16.920586,-62.043232,56.534847,144.0081,5.193 1577,586.28467,-96.81652,73.72394,228.83228,5.186 1577,381.21188,197.36697,31.327667,56.76532,5.099 1577,-73.10027,265.86755,200.95389,461.7489,4.979 1577,377.1134,202.04874,21.022278,40.62932,4.921 1577,583.17786,410.77505,71.597595,177.43161,4.883 1577,465.57922,198.00131,22.070984,48.617676,4.852 1577,536.5393,310.62335,143.23694,341.86212,4.839 1577,490.60828,-179.86682,234.39465,425.30573,4.827 1577,-40.902863,366.62982,111.46221,274.4129,4.796 1577,468.10114,202.72867,38.45404,88.26163,4.557 1577,615.3062,-16.919735,26.305054,70.61777,4.519 1577,493.83044,227.31406,237.49756,515.71326,4.455 1577,-37.0381,-126.99351,116.39675,276.5429,4.343 1577,120.85064,213.11926,22.400185,43.33972,4.289 1577,618.6941,-16.804775,17.405396,43.9356,4.266 1577,-69.97226,-188.85939,210.9002,456.122,4.24 1577,67.82179,199.3219,40.34002,75.782715,4.213 1577,548.838,-14.326923,29.37561,65.97135,4.192 1577,533.58215,-15.705074,29.501709,70.82303,4.167 1577,594.11707,-44.723392,44.29486,96.5832,4.079 1577,171.84218,207.19928,34.0822,54.382965,4.052 1577,185.18338,206.15947,21.051117,38.633453,4.013 1577,233.47018,196.96053,20.762299,36.06572,4.0 1577,482.1159,205.38904,39.932068,89.19263,3.978 1577,180.59264,183.50412,38.180893,75.35669,3.962 1577,20.476522,196.0846,32.133278,72.49878,3.958 1578,477.67224,198.61484,31.786652,67.86142,41.848 1578,510.8393,192.49432,33.480347,70.15399,33.654 1578,457.7119,201.28793,34.692993,79.63132,14.483 1578,42.836372,194.62517,32.573875,61.632797,11.187 1578,499.20862,195.25047,33.98236,61.628067,8.419 1578,490.3772,200.86163,31.276917,65.2074,7.676 1578,-5.805973,-16.495773,17.953136,42.091946,7.278 1578,523.2205,198.79167,27.305359,57.311295,7.057 1578,-11.177831,-31.832432,29.647987,73.10657,6.98 1578,0.79946876,197.52856,22.967293,47.46527,6.722 1578,3.253914,190.85902,38.352577,92.5724,6.3 1578,-8.494006,464.77347,37.28879,92.138824,5.953 1578,29.041853,173.38293,51.209763,101.25464,5.835 1578,-6.6348605,489.2871,19.415169,43.284424,5.754 1578,622.4805,-34.088326,27.149048,76.30248,5.595 1578,602.80206,-56.333385,53.950195,134.36977,5.332 1578,626.13086,487.53912,21.707947,47.02014,5.228 1578,402.5044,199.2714,18.692871,42.23259,5.21 1578,-73.529884,265.37585,201.3346,461.8659,5.182 1578,613.3439,454.30875,39.14966,107.40134,5.112 1578,586.18555,-99.90842,73.62775,235.11458,5.102 1578,395.39444,202.08606,17.660645,39.079712,5.071 1578,-16.992577,-62.80227,55.924797,143.32979,5.024 1578,491.01453,-181.09741,234.41766,425.89752,4.988 1578,583.038,411.41803,71.64569,176.74036,4.958 1578,505.61313,209.45752,32.240204,70.81018,4.925 1578,-21.625214,402.45,79.31033,175.4361,4.913 1578,626.9748,-17.545647,17.370422,45.75651,4.873 1578,536.6121,310.46936,143.32013,342.33386,4.821 1578,614.29376,-19.19881,29.039001,72.11903,4.78 1578,65.11875,195.19351,44.908104,81.265594,4.756 1578,2.6707518,-14.476732,17.266005,39.60727,4.74 1578,30.535656,194.67465,32.558285,62.92975,4.736 1578,-4.166555,190.22577,18.415157,41.787216,4.628 1578,593.86383,-44.84502,45.48871,96.391716,4.574 1578,132.21445,181.52,37.424194,83.29216,4.513 1578,-37.445854,-126.808235,116.68243,281.0295,4.491 1578,493.80783,228.70966,237.42801,514.47217,4.48 1578,619.08075,-4.2578964,20.04718,41.022446,4.437 1578,-8.9075,-6.7410507,39.297306,99.34001,4.417 1579,551.19006,211.15051,28.225586,67.86035,81.225 1579,585.7578,213.0795,19.660522,50.55771,31.726 1579,94.32013,194.97467,24.034317,44.429657,20.587 1579,509.73627,201.47597,28.561707,76.34737,17.843 1579,533.6504,209.12535,30.801575,67.673965,17.011 1579,593.63116,217.68826,18.553955,43.07257,15.16 1579,583.6657,207.96852,33.770264,91.87605,10.82 1579,18.268301,208.24478,34.687065,76.92398,8.184 1579,579.639,217.4988,19.693237,58.72261,7.832 1579,118.54409,193.44316,22.770882,42.39946,7.551 1579,600.39215,219.19981,19.609558,40.20964,7.515 1579,-11.209553,-31.980984,30.469826,75.21525,7.37 1579,518.36096,203.07365,34.02649,80.35948,7.057 1579,-6.285533,-16.237514,18.883076,43.621353,6.819 1579,423.26575,199.68098,23.03595,47.794006,6.715 1579,627.2143,-17.070932,17.265747,44.956657,6.678 1579,610.9958,-45.500946,40.92987,99.56967,6.098 1579,-6.674143,488.81204,19.632362,43.840057,6.06 1579,-13.125239,477.69946,32.057636,62.49359,5.997 1579,621.5992,475.81757,29.75409,68.687805,5.842 1579,-16.814243,436.70966,54.26088,137.73431,5.629 1579,-4.2592096,-12.6029625,30.52914,64.9422,5.582 1579,240.38882,190.68976,22.0177,45.206284,5.497 1579,597.6449,203.97015,34.33374,102.91162,5.428 1579,-73.90471,264.57974,202.12738,463.1251,5.111 1579,1.4316499,-14.985825,18.397625,42.664734,5.095 1579,536.26575,309.19806,143.76501,343.66766,5.022 1579,-16.627405,-60.59567,56.137314,143.16455,5.008 1579,491.10974,-182.11188,233.94672,426.21783,4.994 1579,5.894506,198.00063,31.805933,79.5789,4.839 1579,582.785,411.5431,71.890015,176.42902,4.827 1579,586.76306,-98.34897,72.68909,231.34518,4.772 1579,-40.611694,366.45648,111.076256,275.2857,4.733 1579,8.347904,178.30206,58.778675,119.421326,4.711 1579,227.40944,186.61627,31.671097,62.82692,4.682 1580,576.1108,194.94847,38.896423,115.24831,86.615 1580,415.03052,199.943,27.99347,66.99036,59.254 1580,61.360847,194.08636,24.714783,45.70186,16.014 1580,595.6929,195.99213,36.093445,119.91522,9.154 1580,612.9266,199.45625,31.52539,119.955,8.964 1580,378.0326,196.27037,18.84143,39.98636,8.375 1580,-5.3698735,-16.251719,17.48859,42.070393,8.057 1580,-10.730619,-31.783577,29.838755,73.67142,7.657 1580,194.25983,193.42998,21.043365,34.050827,6.386 1580,88.91029,197.48517,23.767693,43.033554,6.317 1580,-12.768377,476.49362,31.200844,64.308136,6.077 1580,3.0781984,-13.202853,16.408688,39.40622,5.953 1580,619.1603,226.6115,20.943481,58.510452,5.949 1580,-6.5809336,488.76654,19.222603,44.489075,5.697 1580,627.1976,-18.11764,17.228577,46.96093,5.513 1580,567.96796,221.20213,31.263245,82.530045,5.397 1580,-16.878574,438.20816,54.698456,136.68863,5.317 1580,-17.347939,-60.84792,56.710358,139.69696,5.306 1580,153.60078,189.09378,19.954437,31.416779,5.287 1580,610.9148,-49.202175,41.8385,101.70913,5.203 1580,401.75574,195.69312,27.037415,71.31677,5.134 1580,458.3403,199.91846,33.60318,63.674683,5.114 1580,612.8209,454.1547,40.348083,106.87198,5.059 1580,626.5997,487.95892,21.1781,45.89673,5.05 1580,226.06078,193.39214,20.40918,38.132446,5.045 1580,19.130632,-11.280209,32.563744,61.364758,5.004 1580,490.82037,-181.8969,234.37689,427.40967,5.003 1580,-73.59865,265.34412,201.42998,462.31226,5.001 1580,536.2887,309.9311,143.71545,343.21375,4.925 1580,586.0228,-99.6961,74.36633,234.78973,4.893 1580,5.693252,-14.332083,29.935707,65.86573,4.868 1580,582.9335,411.44046,71.88977,176.85165,4.843 1580,71.66894,198.58052,22.60952,45.096558,4.745 1580,217.48827,196.68019,21.022491,37.015106,4.739 1580,-41.000282,366.7798,111.62834,274.17468,4.724 1580,-36.86529,-125.6299,116.19263,274.2377,4.67 1580,472.7959,218.10864,33.004883,66.69287,4.582 1580,424.02145,199.61876,33.303406,66.12633,4.499 1580,493.75836,227.85608,237.59467,514.7502,4.438 1580,80.78851,190.3364,25.227486,42.35576,4.36 1580,613.0584,245.56381,35.119812,112.704285,4.272 1580,-4.381673,1.1288605,17.366558,42.519844,4.245 1580,381.16473,190.52095,26.010498,54.231842,4.19 1581,432.30685,199.8483,28.197174,74.428345,83.834 1581,451.35696,200.33638,34.72049,74.04976,74.249 1581,30.089668,205.21278,25.97017,45.248703,12.183 1581,74.33687,214.19588,20.318054,46.45659,8.407 1581,185.66695,209.15958,19.414871,30.795883,7.542 1581,-10.492115,-33.095226,30.268042,78.13624,7.393 1581,57.028603,204.00293,21.840385,42.789124,7.237 1581,-5.4183664,-17.049988,17.951845,44.22254,6.994 1581,610.34985,-46.86173,42.118713,97.97601,5.783 1581,218.7687,208.78592,18.226624,35.626373,5.749 1581,13.02704,198.37862,32.357388,59.794968,5.712 1581,-6.6085987,489.4894,19.371544,43.045868,5.598 1581,-8.642622,464.57587,37.407333,92.21857,5.577 1581,621.72784,477.46298,29.632751,67.0358,5.554 1581,211.23047,208.84074,19.07022,37.45558,5.32 1581,626.9265,-18.681078,17.919983,47.405964,5.318 1581,585.9358,-97.10829,74.076355,228.86292,5.304 1581,2.8668404,-4.531204,31.521278,73.95167,5.271 1581,203.56201,211.47072,18.62703,33.923843,5.256 1581,-16.775696,-61.171486,56.107597,139.20914,5.229 1581,48.036858,207.71306,24.391296,44.751144,5.176 1581,536.51776,310.53497,143.34137,341.86108,4.992 1581,-73.14981,265.7329,200.55986,461.50256,4.962 1581,491.0224,-180.83012,233.98895,426.389,4.941 1581,66.68002,213.07445,20.400757,45.376358,4.918 1581,582.811,412.1047,71.98126,176.40329,4.905 1581,-21.6095,402.86105,79.144295,175.13889,4.797 1581,36.089634,194.11505,31.43333,56.144135,4.735 1581,-36.766464,-125.47761,115.99138,274.6509,4.589 1581,494.04034,228.22351,237.66998,514.27496,4.45 1581,194.16328,211.26166,18.349152,32.847015,4.36 1581,20.124731,196.47711,38.138428,78.77246,4.341 1581,64.648994,197.84937,21.883827,44.736572,4.326 1581,-69.950516,-189.4322,210.36172,455.82098,4.255 1581,170.63399,211.38226,19.973892,32.088745,4.156 1582,451.06165,178.49268,29.576721,84.892456,70.992 1582,476.47598,175.56851,30.883698,82.797424,62.396 1582,167.16118,178.592,21.288544,43.06305,8.597 1582,462.7766,180.89578,23.676575,69.15042,7.214 1582,2.798289,172.06093,20.527164,55.108337,6.553 1582,-6.5284343,488.90723,19.401247,43.439026,6.192 1582,486.44196,174.58588,33.00757,75.39987,6.072 1582,-8.497919,464.85944,37.38147,92.08002,6.031 1582,626.91296,-18.556927,17.334778,47.149364,5.904 1582,621.9492,477.14917,28.992432,67.506836,5.877 1582,-11.3011,-32.530224,29.559746,73.35353,5.867 1582,-6.063063,-17.821175,17.949385,43.176357,5.558 1582,610.4395,-46.814926,41.99524,97.11397,5.434 1582,490.5872,-179.39548,234.88315,426.47192,5.143 1582,21.945251,165.3561,28.099693,59.25998,5.105 1582,-17.193739,-62.00393,56.46193,141.38402,4.989 1582,536.5423,310.24652,142.36981,342.71344,4.952 1582,582.9357,411.53595,71.71527,176.63788,4.913 1582,-73.21316,266.80453,200.4143,459.4473,4.872 1582,-21.886797,402.08002,79.56608,176.17755,4.864 1582,586.38965,-100.08635,74.546265,232.42796,4.757 1582,-37.225983,-127.23231,117.67254,279.24222,4.738 1582,493.63794,228.68777,237.95947,515.13513,4.378 1582,-9.25355,-6.378128,39.32218,98.86987,4.335 1582,36.40979,-10.734306,31.625763,66.389305,4.321 1582,218.35822,171.56805,18.610565,35.538834,4.27 1582,210.04529,172.36092,19.34697,36.24109,4.193 1582,474.18695,201.97646,22.927124,63.07457,4.104 1582,16.99595,176.20758,22.610868,52.34517,4.037 1582,5.438068,156.30292,27.915241,64.11992,4.034 1582,202.77634,176.995,18.762833,36.810913,4.008 1582,-70.42608,-189.5197,211.46774,455.9671,3.963 1582,472.98264,171.24927,24.512299,65.46765,3.9 1582,185.7528,178.51703,20.977997,40.634583,3.795 1582,27.515888,180.26639,31.165112,71.416245,3.763 1582,-4.6947045,192.81937,18.075165,47.6893,3.75 1583,470.42203,205.39307,37.747528,87.5614,93.733 1583,508.17773,203.69504,36.480774,88.43442,79.656 1583,153.10332,214.57254,20.612381,35.709763,10.603 1583,-0.91070294,216.44203,23.840048,57.233902,7.198 1583,-6.4744825,488.93164,19.241882,43.450195,6.264 1583,-12.770571,477.80725,31.582926,62.48181,6.236 1583,-11.150303,-32.903572,29.202957,74.59632,6.082 1583,84.42542,202.72232,27.631073,54.822144,5.947 1583,626.1456,487.27505,21.747314,46.649933,5.649 1583,69.84183,194.98875,38.363037,83.6765,5.599 1583,-6.0726967,-18.412094,17.945047,44.14045,5.521 1583,627.4196,-16.848919,16.764465,44.97782,5.499 1583,490.03757,203.38258,35.38846,82.93999,5.362 1583,-73.456924,264.96942,201.78795,462.97626,5.293 1583,-16.949484,-61.22097,56.29712,144.72934,5.202 1583,491.65768,-181.86142,233.80435,426.63477,5.143 1583,-17.25074,436.4497,54.765884,138.53851,5.128 1583,623.11816,-33.74474,26.160522,75.49938,5.022 1583,536.21606,310.1363,143.54797,342.43024,4.992 1583,613.0367,453.05383,39.601746,108.88861,4.94 1583,378.95874,198.50058,20.932617,47.65799,4.9 1583,583.1271,410.4792,71.57678,177.177,4.876 1583,586.4718,-101.24248,74.05542,235.33415,4.826 1583,-40.6391,366.11255,111.36819,275.42456,4.743 1583,494.0419,229.69745,236.98502,512.32465,4.705 1583,82.95005,204.38617,40.77575,87.1922,4.644 1583,-36.33347,-125.96386,116.62904,277.032,4.637 1583,5.18991,209.15161,36.431774,90.99951,4.444 1583,603.15344,-56.799614,53.45813,137.25342,4.409 1583,65.12466,197.1774,27.88121,58.623,4.388 1583,234.46739,194.13722,19.780563,36.08261,4.358 1583,526.35675,201.6572,34.8407,73.57919,4.333 1583,218.3249,201.05093,18.872513,34.201508,4.327 1583,99.33666,207.89815,41.179726,84.751114,4.302 1583,188.69917,219.45767,16.055527,31.5513,4.253 1583,455.58014,200.35228,31.967163,76.83324,4.17 1583,170.76506,218.5164,18.70366,34.598648,4.14 1583,-7.5201297,213.72742,36.29394,95.77197,4.132 1583,196.28021,216.88364,15.901794,28.768112,4.065 1583,161.29678,217.55838,19.185837,34.171997,4.052 1583,203.42426,218.29994,15.250839,26.195496,4.037 1583,-69.56299,-187.43367,210.25398,453.40167,4.003 1583,34.602516,208.17789,33.165314,66.64877,3.984 1584,575.46454,211.0036,43.47827,107.23096,97.115 1584,529.837,220.85233,40.378967,99.19211,92.985 1584,592.4757,203.6934,41.776062,109.44502,23.223 1584,610.8528,202.33511,27.975952,88.274414,16.538 1584,47.681717,208.72438,28.113312,55.523422,13.289 1584,603.1854,215.07755,45.132996,118.374725,8.645 1584,518.9768,217.21956,32.322388,86.51427,7.581 1584,393.64743,206.32999,20.947784,37.606186,7.523 1584,-10.792893,-32.012417,29.299747,74.71076,7.488 1584,-5.847433,-16.62467,17.931536,43.12271,7.289 1584,152.00713,218.82825,22.574814,33.48993,6.108 1584,-6.384798,488.49088,19.015316,44.354645,6.06 1584,-12.740271,476.51755,31.383545,63.790863,5.966 1584,70.18617,210.3817,24.875587,45.29895,5.666 1584,554.7602,222.31454,34.007507,87.02725,5.646 1584,626.4187,487.3487,21.338379,46.574036,5.447 1584,536.18396,308.91974,144.2533,342.19525,5.364 1584,627.4586,-16.92498,16.621094,45.60222,5.302 1584,-73.92966,264.5297,202.66203,463.504,5.257 1584,-16.76344,-60.239136,56.423138,140.83812,5.225 1584,-17.37877,435.51886,54.969795,138.85107,5.197 1584,623.1863,-33.984215,26.125,76.22521,5.168 1584,583.104,411.6486,71.70795,176.19077,5.168 1584,492.05875,-183.28574,232.81058,427.39764,5.106 1584,613.4479,454.08078,39.228577,107.51932,5.048 1584,397.00677,203.3072,28.470367,53.388443,5.036 1584,4.857838,0.07822037,30.722992,71.85202,4.993 1584,51.72702,198.12912,39.075134,74.912506,4.917 1584,543.76324,215.56453,32.856506,81.3018,4.886 1585,143.71066,221.12456,23.973175,40.332474,20.89 1585,23.346071,214.00316,23.564566,47.438553,15.542 1585,39.170452,214.29782,23.653027,50.16635,12.042 1585,44.663345,210.57516,27.059685,68.17474,8.196 1585,15.018436,205.21754,27.181404,64.98033,7.615 1585,-12.891727,476.2496,31.81751,64.06296,6.106 1585,597.93384,247.85823,29.207275,58.396194,6.086 1585,585.62836,244.63461,23.13977,47.862915,5.934 1585,-6.4146214,488.6168,18.99915,44.407257,5.932 1585,-5.7130346,-17.428444,17.839878,43.78102,5.921 1585,218.36856,221.38272,17.807114,34.035706,5.803 1585,-11.579741,-32.431927,29.887138,73.18534,5.793 1585,621.3982,476.7113,29.812134,67.61206,5.533 1585,32.464417,219.27286,22.574333,51.112732,5.465 1585,2.1087146,195.83484,26.247416,72.308044,5.409 1585,-10.028421,200.68582,28.518238,72.92502,5.387 1585,622.7837,-33.4178,26.728516,76.20937,5.38 1585,211.55183,221.3812,17.1344,34.385605,5.353 1585,566.39624,233.33803,28.445068,61.31694,5.31 1585,627.3019,-17.901375,16.871582,46.850815,5.263 1585,-73.934265,264.8597,202.06076,463.61075,5.237 1585,2.8257406,215.1916,39.23635,101.2628,5.105 1585,401.42102,199.24469,26.394867,59.537415,5.06 1585,491.0266,-182.14557,233.7063,428.83496,5.049 1585,586.008,-99.395645,74.26477,232.87999,5.002 1585,589.5654,227.71436,29.161316,66.55066,4.952 1585,-17.364403,435.492,54.96349,140.07074,4.937 1585,583.22284,410.71924,71.59412,177.24652,4.877 1585,-17.00209,-61.90352,56.569614,143.03664,4.867 1585,536.45654,310.05322,143.24994,341.99146,4.824 1585,-41.0794,365.74905,111.92862,274.84824,4.799 1585,602.92773,-57.389294,53.5506,139.03845,4.742 1585,42.982635,237.7733,18.692848,44.18199,4.439 1585,408.18896,218.03067,21.056335,37.183746,4.432 1585,250.49532,214.90042,18.234818,32.526627,4.381 1585,216.72061,208.58118,21.921295,35.807068,4.368 1585,493.5636,226.96155,238.07043,516.1342,4.339 1585,72.44153,208.35046,24.64759,50.124054,4.336 1585,177.31738,220.25726,22.15683,36.45349,4.318 1585,133.50185,215.3852,37.993973,73.76962,4.292 1585,258.77966,215.41248,18.178467,30.857101,4.284 1585,-70.24262,-188.72812,210.68839,454.5488,4.272 1585,34.445423,216.83241,41.957867,89.88954,4.271 1585,-37.732845,-125.70385,116.79674,277.55893,4.215 1585,2.75666,-15.823932,16.907934,41.5685,4.12 1585,594.389,-46.921566,44.50226,100.21813,4.114 1585,13.807054,197.35692,51.940033,98.32155,4.113 1585,158.55197,218.89651,24.87172,42.577423,4.098 1585,-8.664421,-5.674,38.975033,98.86719,4.091 1585,266.64972,217.04126,18.164398,28.948746,4.031 1585,-6.1803493,198.64697,19.058819,48.412186,3.995 1586,116.95064,227.02272,24.010986,44.150772,16.394 1586,417.78714,220.37451,19.98114,43.73996,11.619 1586,422.58496,206.14557,27.851501,61.153046,6.791 1586,32.998165,199.20718,35.333836,62.95578,6.596 1586,-13.210003,477.92084,32.079384,62.67627,6.371 1586,-11.27359,-32.587013,29.643003,73.98524,6.254 1586,491.87372,162.93457,31.538452,81.30417,5.884 1586,-6.6746264,489.0874,19.59544,43.683533,5.682 1586,-6.241432,-18.254192,18.109259,43.76809,5.63 1586,18.99368,192.09764,40.496815,78.790726,5.353 1586,-16.687641,437.86652,54.436092,137.21704,5.338 1586,411.23468,225.71613,20.09787,45.15088,5.289 1586,585.7389,-97.78273,74.41113,231.26942,5.215 1586,-73.69653,264.45724,201.70596,463.8129,5.166 1586,-16.991331,-60.959736,56.33954,142.55019,5.14 1586,626.09424,487.0728,21.860962,47.071045,5.118 1586,610.57275,-46.893394,41.91803,98.03533,5.055 1586,613.0062,454.22745,40.11792,107.711334,5.042 1586,489.9862,-180.19807,235.15979,428.55182,5.006 1586,627.2092,-18.505184,17.177612,46.605244,4.962 1586,583.0979,411.0784,71.80023,177.15036,4.869 1586,-9.39861,211.23788,38.195724,99.31506,4.824 1586,3.196154,213.62547,19.953518,40.698227,4.81 1586,250.4689,212.58333,17.629547,34.036026,4.793 1586,-40.59918,366.97806,111.225266,274.8397,4.792 1586,536.29614,310.73236,143.13867,341.56128,4.775 1586,194.03027,228.0305,19.005737,36.986557,4.633 1586,4.040141,204.8411,39.750813,96.89804,4.566 1586,267.97568,217.7233,16.355652,28.178574,4.44 1586,182.32898,207.73232,29.22583,54.24678,4.416 1586,493.50327,226.65225,238.09067,515.95166,4.404 1586,-37.049652,-125.99558,117.2928,278.11743,4.358 1586,4.565766,199.59892,28.798382,59.440567,4.35 1586,432.6975,209.86557,21.047058,47.089172,4.343 1586,58.092476,200.57127,34.83216,63.596573,4.337 1586,240.56781,204.15814,21.815094,42.353134,4.282 1586,259.13824,214.12361,17.228668,32.00386,4.213 1586,-70.28306,-188.00098,210.6969,454.40552,4.197 1586,100.50723,222.62982,39.68318,85.368225,4.022 1586,341.88623,209.93471,28.304474,53.376114,4.0 1586,115.05794,221.08017,37.6864,72.76782,3.982 1586,-4.0533085,206.11559,17.054398,39.465866,3.976 1586,-8.582832,4.663254,38.10991,109.518654,3.967 1586,232.97957,201.02882,22.145218,42.520493,3.957 1586,-9.058649,178.67162,38.85687,89.10225,3.913 1586,28.053547,181.6914,51.39716,108.699615,3.783 1586,130.87785,226.73792,39.727524,81.89813,3.741 1586,192.72961,214.39926,22.66983,38.58098,3.739 1586,413.24112,219.60887,28.709503,67.70802,3.692 1586,619.2155,-6.397255,18.495667,42.907005,3.616 1586,2.3975158,-15.898872,50.476307,152.95667,3.608 1586,403.48294,231.79672,19.862976,46.52014,3.593 1586,412.11462,180.5677,51.87317,115.901535,3.581 1587,61.938026,217.73253,27.465279,58.84175,33.828 1587,415.51794,220.17773,24.576233,48.65497,12.565 1587,216.72421,203.39008,21.012177,39.900024,6.613 1587,-10.899825,-32.19783,29.451813,75.106064,6.477 1587,-6.744686,489.2462,19.610943,43.49063,6.404 1587,-5.939917,-17.670778,17.81505,44.134174,6.366 1587,-12.956795,477.64502,31.636358,62.825684,6.282 1587,6.1830196,196.40395,29.57797,80.72426,6.138 1587,627.32153,-17.558372,16.865479,45.82517,6.078 1587,164.33688,206.4609,29.614532,55.93091,5.914 1587,626.43195,488.195,21.33966,46.564453,5.548 1587,-16.781687,437.27786,54.521835,137.40817,5.503 1587,622.88306,-33.403786,26.461426,75.4495,5.308 1587,613.2692,453.67224,39.900024,107.293335,5.224 1587,585.57947,-97.44681,74.43811,232.07547,5.219 1587,-73.39568,265.3776,201.59427,462.0427,5.087 1587,-16.705608,-61.229683,56.44676,143.18365,5.037 1587,233.71025,204.78638,20.72609,36.644745,4.968 1587,77.44735,222.3863,24.964409,54.99553,4.961 1587,424.65094,211.54297,31.157227,60.53232,4.897 1587,400.54913,218.47392,29.07257,61.819565,4.869 1587,582.98267,410.51117,71.91058,177.57745,4.835 1587,490.28445,-180.48927,234.56296,428.01187,4.817 1587,536.4272,310.48062,143.06683,342.4542,4.786 1587,-40.638924,366.94238,111.09802,274.64172,4.785 1587,603.0345,-56.80601,53.510986,135.11485,4.627 1587,184.47441,208.70226,23.606674,44.651398,4.528 1587,-36.882294,-124.33084,116.85503,272.9044,4.45 1587,493.7829,227.02261,237.82062,515.35645,4.435 1587,48.503784,208.0693,31.63575,69.68344,4.433 1587,459.63678,208.95003,30.15506,72.88518,4.334 1587,26.622791,198.80536,32.55827,67.32501,4.306 1587,-8.341123,-4.4144325,39.211838,97.34566,4.228 1587,-70.24512,-188.49753,210.16345,455.02026,4.205 1587,224.98672,208.31688,21.076385,39.075546,4.095 1587,594.38184,-45.42741,44.452087,96.55588,4.016 1587,2.6959753,198.57532,22.728855,57.17836,4.001 1587,84.7837,218.49457,30.791618,62.509094,3.985 1587,618.03894,490.35962,21.480957,43.08954,3.978 1587,-11.975941,187.92346,30.927174,67.48653,3.974 1587,132.901,188.1918,31.658768,58.377502,3.971 1587,66.5427,216.95149,38.880486,91.14604,3.89 1587,-7.815613,209.33089,37.276173,106.6143,3.864 1587,619.6139,-17.042599,16.626831,41.99305,3.86 1587,241.9035,212.78362,19.732666,33.764374,3.838 1587,249.31342,209.6125,20.30368,31.613632,3.718 1587,443.65674,-21.543278,55.134003,132.07626,3.713 1587,2.3778253,-15.629513,16.993563,40.727295,3.694 1587,70.654045,216.9159,23.687248,44.863983,3.694 1587,611.79517,173.62447,35.554382,108.89586,3.685 1587,418.43878,216.72946,40.264893,91.26099,3.678 1587,612.26526,266.03696,37.979004,110.53735,3.662 1587,-5.985107,211.71538,18.74465,48.455276,3.651 1588,432.21796,217.68803,23.28128,48.141922,25.638 1588,0.05137205,210.06244,25.093527,67.63928,16.952 1588,153.09843,211.11932,22.640884,46.6734,8.388 1588,174.56207,201.70093,24.750793,42.728485,6.825 1588,484.09778,213.37427,31.255737,73.302795,6.739 1588,413.87347,215.1871,29.709167,62.89215,6.452 1588,-8.46074,464.55002,37.320293,92.42264,6.164 1588,421.57507,210.38092,38.387756,67.126495,6.06 1588,610.7088,-47.773964,41.703003,98.31306,5.971 1588,-6.4581966,489.12637,19.188644,43.51297,5.944 1588,168.5581,210.5925,22.866821,42.788986,5.746 1588,-11.412756,-33.064785,29.594728,74.08901,5.737 1588,585.96344,-95.08537,74.05499,226.4853,5.617 1588,-6.093355,-18.09032,17.869064,43.424545,5.328 1588,-16.53788,-61.558342,56.11388,144.07137,5.145 1588,-72.96483,265.2979,200.9653,461.80206,5.097 1588,612.9669,453.862,39.794617,108.23346,5.064 1588,626.3476,487.8761,21.19336,46.852722,5.054 1588,532.2303,-182.053,149.659,420.3481,4.947 1588,-3.3549285,213.68106,19.715914,50.286957,4.944 1588,-21.558496,402.78333,79.24635,175.60095,4.898 1588,161.05371,219.1083,22.636078,43.88797,4.879 1588,627.4147,-17.561554,17.04834,45.290062,4.872 1588,582.9464,411.058,71.92352,177.22458,4.867 1588,536.4123,310.735,143.26056,342.18445,4.794 1588,-36.660122,-124.13008,117.378265,270.2958,4.646 1588,406.29276,204.80508,27.73587,64.871735,4.623 1588,471.0312,209.84369,30.451538,74.22717,4.474 1588,225.63017,204.00415,20.647324,36.29518,4.467 1588,148.994,197.69019,38.550232,81.060425,4.458 1588,24.65799,211.28156,23.404396,47.960754,4.417 1588,493.6996,226.00781,237.95941,515.85565,4.41 1588,-70.453384,-188.97067,210.80453,455.64676,4.244 1588,10.016464,211.02306,31.912537,61.40016,4.206 1588,217.03671,202.85802,21.9646,37.987946,4.196 1588,-8.432778,222.25827,37.396336,104.79877,4.09 1588,445.7107,218.01086,23.943787,50.628845,4.005 1588,233.90883,199.45918,19.440552,34.131622,3.965 1588,620.23505,-17.04111,16.865723,40.23627,3.95 1588,-8.800661,-3.8273315,39.84074,96.529205,3.871 1588,439.46143,226.9354,21.601624,48.9581,3.842 1588,572.579,-22.003502,55.550903,122.90955,3.825 1588,140.74763,214.5522,31.45642,64.582596,3.758 1588,490.48267,-33.240257,58.71277,120.54106,3.679 1588,162.87671,203.97061,40.119034,86.80972,3.672 1588,419.5839,221.45926,41.551086,107.56952,3.665 1588,612.3447,30.839256,39.250366,104.97874,3.665 1588,495.40125,213.56412,23.3974,54.408722,3.657 1588,540.527,-20.361858,56.56555,121.77141,3.641 1589,-10.775747,-31.982563,29.886868,73.88923,7.664 1589,-5.9086347,-16.573252,18.154066,43.346436,6.941 1589,-6.47969,489.11063,19.227873,43.843597,5.963 1589,-13.061213,477.79034,31.785095,62.885986,5.946 1589,627.1701,-17.174503,16.777344,46.040348,5.446 1589,161.95564,197.84615,21.197906,40.590958,5.375 1589,613.5221,454.2127,39.075256,107.90369,5.344 1589,585.8383,-97.71017,74.51337,230.89258,5.343 1589,622.8245,-33.917217,26.181091,76.64729,5.316 1589,-17.34987,-62.151436,56.726807,141.20459,5.243 1589,626.3687,487.96973,21.37732,45.01892,5.212 1589,-73.3772,265.56412,201.63622,462.09848,5.154 1589,490.28854,-180.57405,235.04501,427.7816,5.115 1589,472.53516,216.75427,29.845764,70.19861,5.103 1589,442.49432,214.11217,31.110596,64.72035,4.932 1589,-36.65439,-126.40789,116.756256,274.0057,4.864 1589,168.38174,192.96278,21.15773,37.705612,4.859 1589,-17.177002,437.9116,54.58783,137.3284,4.848 1589,115.85353,207.70003,31.60408,65.2791,4.815 1589,583.08905,410.43292,71.749756,177.86523,4.803 1589,536.5205,310.13525,142.745,342.6275,4.757 1589,-40.507973,366.69058,111.02134,274.9471,4.756 1589,602.8335,-56.48319,53.738464,136.00386,4.746 1589,137.62662,217.96739,20.32698,40.215317,4.703 1589,-5.4569836,202.75803,17.680416,41.003677,4.614 1589,-5.4664927,186.50058,17.699318,41.999878,4.502 1589,-2.126063,-14.791664,29.56209,68.034904,4.429 1589,493.3022,226.00403,238.01447,516.1761,4.404 1589,1.5599036,-36.00325,43.869614,95.90414,4.279 1589,145.21501,200.59647,20.354889,35.73346,4.277 1589,-70.715195,-189.62663,211.18349,456.67468,4.251 1589,224.18744,186.77878,23.006897,42.999954,4.249 1589,155.12125,212.72137,19.851349,37.3152,4.164 1589,-5.4680915,-0.26782227,19.86353,46.348274,4.139 1589,2.0194793,-14.890253,17.691626,41.42604,4.13 1589,396.18515,214.20065,18.613708,40.324142,4.116 1589,163.54361,194.63269,39.470932,81.56827,4.107 1589,-8.72419,-4.762764,39.696663,96.75681,4.094 1589,594.1836,-45.099213,45.017212,97.62389,4.014 1589,618.75055,489.65033,20.403625,42.425964,3.91 1589,-8.510162,34.31524,38.350906,107.06303,3.873 1589,-14.918637,151.22015,49.1902,144.74072,3.865 1589,129.31912,214.93808,21.091751,47.16217,3.804 1589,220.71169,208.81082,30.798782,60.131195,3.779 1589,402.92667,205.14656,18.943787,39.87462,3.757 1589,149.9439,179.69736,39.061874,77.09219,3.702 1589,379.12238,215.18265,18.769928,38.99408,3.689 1589,138.57037,204.25194,19.428986,38.29329,3.659 1589,619.9446,-2.9760056,17.381409,39.875446,3.626 1589,146.1563,220.05849,20.090683,36.009415,3.624 1589,154.73735,196.09625,20.484726,34.59233,3.615 1589,234.4567,223.93243,20.268585,36.394775,3.612 1589,362.09918,204.59448,20.447357,46.26953,3.516 1589,-4.6206374,222.1069,17.115873,45.42868,3.481 1589,35.21998,211.7334,30.634933,61.152313,3.468 1589,131.31898,195.58511,40.4767,84.21521,3.462 1589,215.5632,193.43903,24.219345,43.56195,3.444 1589,10.188589,-26.281902,58.288948,121.51726,3.433 1589,32.541843,-36.367996,45.91612,91.14424,3.411 1589,179.53445,195.54822,40.803986,82.634705,3.395 1589,-4.809577,153.96567,17.317163,42.54106,3.383 1589,233.08685,195.66602,20.97107,37.649017,3.377 1589,218.83258,232.12636,19.04596,37.263535,3.364 1589,236.4137,239.82841,17.656296,33.695175,3.322 1589,180.3566,166.75821,38.778748,77.53783,3.321 1589,329.61868,185.53296,21.13385,45.79335,3.299 1589,206.8065,185.28622,26.23256,47.960403,3.294 1589,-8.027939,217.90918,37.351727,97.247314,3.288 1589,17.925278,-14.082565,35.717255,66.75715,3.286 1589,531.8388,-135.4758,115.287964,270.84793,3.281 1589,4.626422,-2.1937675,40.790554,106.51613,3.281 1589,91.60763,167.04515,56.360786,117.57094,3.279 1589,351.4923,189.0586,27.540436,60.399963,3.247 1589,169.23541,184.56961,32.335846,54.408142,3.246 1589,241.79185,233.73247,19.788528,34.291153,3.237 1589,195.46786,195.11917,41.17543,83.86243,3.226 1590,476.613,209.44922,25.090729,52.786865,46.635 1590,464.70862,204.70514,29.296234,64.52112,11.464 1590,482.46555,209.26068,29.558136,66.40323,7.028 1590,146.47388,196.17274,21.06308,40.662582,6.978 1590,158.12285,190.47433,24.967987,36.05461,6.587 1590,-12.781832,474.43604,31.638025,65.712524,6.435 1590,-6.2483478,488.17676,18.726864,44.391357,6.426 1590,-11.46907,-32.951523,29.829588,73.285835,6.166 1590,-6.134296,-18.652407,17.954468,43.834126,5.606 1590,-16.712017,-62.349937,56.003822,145.12105,5.414 1590,627.36884,-17.154472,16.776672,45.304367,5.269 1590,-73.43576,265.51285,201.62468,462.23898,5.194 1590,613.42084,454.35724,39.196655,107.24335,5.164 1590,585.8109,-98.82197,74.82477,231.94391,5.124 1590,490.0932,-179.86102,234.91888,426.49756,5.047 1590,623.125,-33.734478,26.269897,75.63607,5.041 1590,452.99335,197.39278,32.89438,66.24431,4.954 1590,-22.069405,401.39886,79.85393,176.06793,4.925 1590,626.2806,487.53738,21.56842,45.244904,4.892 1590,536.4486,310.37885,143.03265,342.38458,4.85 1590,583.1321,410.78738,71.57019,177.17465,4.822 1590,603.2489,-57.102837,53.461304,135.4523,4.662 1590,-36.56349,-127.96321,116.79127,275.4684,4.641 1590,208.66287,182.76448,22.283783,47.485504,4.544 1590,493.63327,227.18768,237.68558,515.8734,4.488 1590,-70.79411,-189.87885,211.74815,457.5153,4.433 1590,74.3418,231.1973,20.430733,44.055267,4.217 1590,-8.87093,-5.1022797,39.310513,98.77544,4.123 1590,594.1848,-46.823997,44.958923,96.704315,4.091 1590,227.13304,176.76218,19.658035,33.743103,4.017 1590,491.95865,214.01888,29.825531,68.64397,3.951 1590,293.09988,168.10071,38.28607,84.04967,3.944 1590,308.97717,169.12762,39.523468,85.2776,3.923 1590,162.30888,176.67404,32.50113,51.58145,3.85 1590,467.58533,210.10947,40.397003,98.58652,3.81 1590,434.82574,206.65692,41.628662,86.124664,3.793 1590,213.98856,211.62518,30.985565,67.721375,3.777 1590,1.8864202,-38.884457,43.032867,101.07328,3.712 1590,56.774254,231.60135,22.51918,46.16165,3.699 1590,324.95624,178.46918,38.648865,90.08368,3.636 1590,3.759209,224.49548,39.17656,95.01453,3.573 1590,148.31224,175.84451,38.837845,80.6409,3.572 1590,39.770226,232.04991,23.591114,43.518936,3.521 1590,-5.086789,247.1582,16.19336,38.36737,3.473 1590,261.69122,163.67447,37.234222,78.87993,3.462 1590,356.7901,180.71075,38.62265,89.23901,3.459 1590,89.693535,236.07764,19.7891,35.600037,3.447 1590,442.93195,-17.517242,17.65326,39.122913,3.429 1590,438.55035,-34.070255,27.91217,64.40681,3.404 1590,618.2955,488.96945,20.967346,42.58072,3.4 1590,573.6298,154.70784,53.796936,158.53209,3.399 1590,-9.418295,214.00548,38.496967,98.23506,3.384 1590,499.5133,207.96562,38.976624,87.12428,3.384 1590,11.773968,-16.109978,56.54102,120.947395,3.382 1590,277.1395,168.94604,38.70334,83.00342,3.371 1590,336.7709,185.81311,21.311066,46.389374,3.343 1590,212.53583,178.98267,39.75067,85.20227,3.335 1590,80.26628,227.3977,20.76052,40.28244,3.315 1590,531.8661,-137.65186,115.05438,273.3028,3.28 1590,227.91629,179.99532,40.45877,84.46953,3.276 1591,515.2463,207.12494,32.561096,70.06659,48.598 1591,-6.0635147,-18.786379,18.154604,43.375477,6.208 1591,-11.373774,-32.55224,29.654078,72.200356,6.169 1591,504.13446,199.9752,32.380005,70.67177,6.115 1591,623.1228,-34.15361,25.95404,74.475365,6.006 1591,450.8566,174.23093,29.389557,79.612915,5.954 1591,-12.884917,477.08765,31.766056,63.19983,5.856 1591,626.9386,-18.588049,17.341125,46.26952,5.592 1591,-6.4247017,488.64044,19.33899,44.09381,5.587 1591,585.7941,-96.16612,74.10504,227.56555,5.489 1591,526.4636,210.24042,32.299133,74.85376,5.25 1591,-16.968983,-62.461884,55.77229,145.85988,5.24 1591,626.3054,488.6826,21.39624,44.463104,5.218 1591,490.4579,-181.46825,234.52063,428.56357,5.197 1591,603.0347,-57.549202,53.380737,134.42433,5.09 1591,613.4126,454.21805,39.300415,107.86398,5.066 1591,-73.26169,265.96844,201.25577,461.11444,5.036 1591,-21.856247,401.56018,79.56305,175.86957,4.952 1591,583.263,410.37723,71.40613,177.72427,4.917 1591,594.1632,-44.961235,44.75653,93.94807,4.783 1591,536.533,310.76813,142.94025,342.41962,4.666 1591,348.3861,185.086,27.610138,58.16989,4.603 1591,-36.881184,-129.2959,117.20679,278.43283,4.459 1591,-71.02921,-189.89703,212.26385,457.22617,4.415 1591,355.30945,-14.695118,32.80362,67.43421,4.381 1591,133.17384,183.58412,28.6241,55.939835,4.373 1591,493.43,226.68094,238.07391,516.43225,4.342 1591,109.079254,191.28859,27.74266,53.489685,4.336 1591,325.41724,174.84863,39.377563,95.907166,4.321 1591,54.83913,185.19902,30.335514,68.27797,4.274 1591,490.10846,152.84888,62.193054,127.29202,4.271 1591,98.999115,192.36014,41.14122,88.757965,4.185 1591,143.77425,189.80182,22.455032,41.18341,4.172 1591,619.2111,-18.823694,17.701843,43.151855,4.154 1591,68.994415,231.74731,30.813232,67.206726,4.024 1591,-9.772339,-5.7703896,40.05528,101.079575,3.877 1591,618.1269,490.80844,21.010803,41.70407,3.86 1591,405.70837,192.73148,28.26059,77.85904,3.852 1591,119.48926,189.69954,28.23758,54.859818,3.824 1591,528.2622,-40.827682,47.668884,90.92892,3.797 1591,506.5279,196.44525,21.595947,41.23488,3.742 1591,129.7266,195.71164,22.020203,41.400116,3.737 1591,430.0423,197.82916,28.594818,74.96353,3.717 1591,79.93867,192.10199,24.319489,46.299484,3.691 1591,2.7226954,-17.618414,17.00631,40.844154,3.687 1591,65.20534,190.14667,41.6781,90.28998,3.686 1591,309.6149,167.57845,39.02054,90.02736,3.669 1591,513.9414,228.60533,23.180542,57.862656,3.668 1591,573.2132,-20.031105,55.524353,123.492775,3.61 1591,1.922133,-40.939228,43.16915,103.4655,3.57 1591,356.58868,177.12408,38.34027,96.23944,3.559 1591,426.8953,-39.565117,58.85956,131.6151,3.543 1591,129.99957,192.67548,41.910553,89.29895,3.532 1591,444.47025,215.99883,32.19037,72.24504,3.518 1591,37.079933,184.18811,29.89257,63.57994,3.513 1591,82.45991,191.89706,42.558464,90.25601,3.495 1591,535.4108,203.91531,22.519043,48.20125,3.455 1591,560.70776,-40.293636,47.11493,90.28518,3.448 1591,211.48668,180.48676,40.9187,83.17798,3.436 1591,458.62164,-37.62751,59.20044,130.4729,3.395 1591,539.1385,-33.795288,60.020813,123.51101,3.39 1592,600.6673,186.102,36.850403,113.20555,67.81 1592,352.23938,180.25304,21.836365,40.748627,13.041 1592,112.98145,194.87459,22.449547,44.04985,9.926 1592,617.0141,200.86044,22.461365,69.81952,7.579 1592,614.18256,233.71675,25.479248,89.63426,6.623 1592,-5.8487983,-18.390627,17.687569,42.955776,6.539 1592,-6.2877655,488.28372,19.044395,43.89621,6.258 1592,-12.880058,475.36737,31.480457,64.664185,6.145 1592,-11.187129,-31.830624,29.332909,70.987404,6.063 1592,88.7249,192.37425,20.81852,40.119965,5.664 1592,356.10596,169.83014,37.15146,102.25186,5.385 1592,430.63678,184.8912,30.16446,73.71005,5.153 1592,489.66266,-182.17903,236.32062,429.16745,5.149 1592,96.49919,192.59264,21.066887,37.993225,5.115 1592,-73.6236,265.2676,201.68498,462.0073,5.109 1592,610.68304,-48.503155,41.838074,101.257835,5.106 1592,621.67505,477.37863,29.358337,66.69113,5.086 1592,342.41165,165.88953,35.935852,96.31323,5.071 1592,627.37177,-17.53541,16.660706,46.05843,5.066 1592,326.69266,163.6979,36.56363,98.506805,4.989 1592,536.4822,309.66534,142.68378,343.57928,4.955 1592,587.2939,114.700676,57.447693,206.28119,4.923 1592,-17.201057,-63.029343,55.563652,146.6064,4.887 1592,582.9938,411.10583,71.74951,177.25818,4.842 1592,-21.98288,401.73248,79.74051,175.89233,4.829 1592,586.30414,-102.02707,74.84552,237.19441,4.745 1592,599.1462,233.83902,38.865967,125.362335,4.507 1592,226.16217,177.50406,20.645218,36.552353,4.484 1592,-36.67362,-130.0498,117.0679,281.71994,4.475 1592,493.4474,227.38574,237.91803,515.7075,4.472 1592,201.75294,176.64412,20.966553,42.759613,4.465 1592,93.51616,165.49269,54.03563,111.99541,4.455 1592,107.13365,192.5864,20.97615,38.2995,4.441 1592,309.9305,164.16016,37.776703,93.92114,4.272 1592,81.64055,193.59769,42.420914,85.561615,4.26 1592,-70.619156,-188.82791,211.91148,455.637,4.257 1592,389.19998,175.32033,37.04297,92.62273,4.207 1592,618.63513,215.03381,27.954529,84.67279,4.109 1592,564.96405,182.20982,39.996826,91.59828,4.044 1592,197.39172,177.24391,30.788742,63.900116,3.966 1592,117.470665,177.81639,37.9627,80.17366,3.938 1592,611.986,255.37856,36.709534,127.10875,3.934 1592,410.8225,184.05603,31.157043,77.19412,3.926 1592,591.94226,207.58142,34.92737,77.61185,3.913 1592,372.44037,171.8942,36.494934,97.07727,3.912 1592,214.13452,169.31769,28.903336,56.698578,3.89 1592,338.15454,174.7518,21.88144,42.729187,3.86 1592,129.64458,195.0395,42.763794,83.386765,3.847 1592,137.12766,186.19138,21.435364,35.938065,3.836 1592,3.153872,-16.577188,16.368902,39.568775,3.755 1593,88.35237,194.98653,22.377869,45.74797,26.039 1593,63.82106,193.75774,22.840103,43.632935,14.121 1593,367.69717,184.12486,21.687256,38.557007,7.972 1593,123.14163,181.91458,20.15802,39.914658,6.468 1593,622.8782,-34.0083,26.981445,73.75308,6.308 1593,-12.900191,476.17398,31.565205,64.08157,5.996 1593,-6.3191433,488.40274,18.956074,43.75992,5.907 1593,-6.1277523,-19.006504,18.184526,44.212067,5.848 1593,-11.303349,-32.580498,29.483376,72.24751,5.682 1593,626.6892,488.50458,20.826538,44.56781,5.427 1593,554.36176,197.6744,20.282288,41.09227,5.36 1593,627.38367,-18.146568,16.763428,45.67183,5.319 1593,613.68384,454.96463,38.815002,107.59915,5.296 1593,601.9907,-55.829742,54.19458,137.74513,5.209 1593,-17.225382,-62.62353,55.97619,146.18246,5.145 1593,-73.77631,265.08124,201.96567,462.42926,5.139 1593,585.72626,-101.297325,74.99225,237.61206,5.118 1593,310.04462,173.92816,31.635925,58.14978,4.991 1593,489.8503,-181.52048,235.72598,425.93588,4.991 1593,-21.955742,401.4959,79.75203,176.01593,4.839 1593,583.12537,411.03818,71.571045,177.10233,4.836 1593,536.50085,309.92798,142.92664,342.88184,4.787 1593,376.48047,188.33215,21.394257,41.291107,4.573 1593,438.517,182.13795,37.328827,79.16734,4.572 1593,362.79468,181.53497,19.418213,33.91107,4.523 1593,618.9707,490.60266,19.741333,41.627197,4.453 1593,493.56476,227.21954,237.64746,515.1551,4.439 1593,93.02628,195.5868,25.874702,60.251892,4.328 1593,593.83704,-43.309093,45.10846,99.99007,4.322 1593,467.51422,190.59042,29.582336,67.294525,4.295 1593,-37.199333,-128.95117,117.16523,279.57468,4.255 1593,-5.29288,185.75165,18.451769,43.971222,4.24 1593,355.97577,178.74521,40.202026,93.27777,4.237 1593,388.97183,183.42662,38.631897,82.41347,4.225 1593,-70.366615,-188.97221,211.67197,456.01984,4.209 1593,618.64087,-5.635087,19.282166,42.5765,4.145 1593,363.9701,191.46878,18.856903,39.927948,4.094 1593,224.9074,181.9963,20.996506,34.540207,3.993 1593,69.18311,191.48288,27.369621,56.92177,3.955 1593,-10.615205,-4.4605484,40.314285,101.69642,3.935 1593,422.60797,182.40994,38.14984,77.49237,3.913 1593,462.70294,170.97765,29.00586,67.46892,3.904 1593,415.75748,222.46375,21.424164,34.517883,3.868 1593,-9.836942,170.62357,28.651588,70.64075,3.862 1593,355.43408,183.79472,20.450348,41.469803,3.827 1593,385.93948,189.60324,21.884186,43.738205,3.806 1593,211.87616,183.25452,41.64096,77.80151,3.769 1593,465.08728,210.32812,22.751495,50.902374,3.746 1593,443.82098,195.69273,17.394684,37.253983,3.703 1593,453.4525,199.23358,31.932068,69.48721,3.701 1593,245.63425,167.97098,37.095734,74.42049,3.666 1593,443.83832,180.0647,17.535522,34.779114,3.658 1593,613.74023,114.30043,34.703857,103.633316,3.653 1593,417.1139,197.62868,20.279877,37.081345,3.6 1593,226.8826,195.13156,43.786224,85.22586,3.582 1593,81.587135,187.47046,42.2762,86.50864,3.575 1593,114.83745,186.75555,20.966354,45.26767,3.554 1593,371.6284,179.3562,39.610474,88.385315,3.538 1593,407.87103,195.89171,22.141937,39.75284,3.504 1593,53.10405,181.97815,37.54709,82.81955,3.499 1593,190.4524,148.48518,52.567596,104.66353,3.495 1593,234.93552,186.80876,18.309586,29.897781,3.484 1593,587.6435,190.95657,19.037415,33.674454,3.481 1593,599.043,160.06839,34.95172,90.098236,3.461 1593,574.0377,-34.589165,28.891296,80.167274,3.458 1593,467.43677,221.99388,31.116638,68.80647,3.457 1593,404.99115,185.52832,37.679718,79.82028,3.452 1593,602.0544,1.8806458,33.286255,82.42423,3.438 1594,30.182785,193.18274,23.292286,43.5932,49.979 1594,48.554047,193.97667,25.524216,45.661545,46.753 1594,40.0213,192.41954,24.689224,44.30789,20.234 1594,375.46054,178.74582,21.110962,46.212708,19.019 1594,613.69867,180.16202,25.445923,80.994965,9.588 1594,20.210325,179.36417,40.001198,68.227036,6.736 1594,565.1034,182.52731,32.290466,68.311584,6.668 1594,-13.103941,475.4953,32.061783,64.74298,6.558 1594,363.808,179.2445,19.913269,40.683044,6.439 1594,-6.703683,488.6521,19.626171,44.298767,6.407 1594,318.67722,170.73862,23.562408,49.130127,6.316 1594,604.0513,163.23497,32.229126,75.29387,6.229 1594,-12.805597,-39.79209,41.603523,100.99181,5.851 1594,383.48483,176.6764,21.56961,49.924164,5.76 1594,355.31738,173.71991,18.225739,41.334457,5.705 1594,-6.0581837,-18.728695,17.939213,43.39758,5.65 1594,622.30066,-34.08452,27.40149,75.00199,5.424 1594,627.0601,-17.22474,17.34784,44.572918,5.315 1594,35.746616,183.38905,37.90971,67.65141,5.293 1594,489.67316,-181.00418,235.24628,428.02353,5.221 1594,616.6173,166.9866,22.11267,54.38057,5.179 1594,-73.764046,265.6371,201.53018,461.67358,5.079 1594,613.41565,454.6764,39.48108,107.34418,5.076 1594,599.8034,177.50517,36.543762,113.12486,5.057 1594,583.04034,411.5196,71.706726,176.37549,4.895 1594,-21.927135,401.0671,79.82893,176.1506,4.891 1594,586.2588,-100.3059,74.54938,235.35425,4.851 1594,536.6057,310.4688,142.61029,342.40472,4.838 1594,106.27461,193.31432,19.703888,38.224396,4.801 1594,7.5468683,181.8444,27.527328,69.16792,4.784 1594,603.008,-56.24244,53.73706,134.51996,4.723 1594,593.7686,-45.068836,45.27643,97.65064,4.533 1594,626.38495,488.1156,21.514587,45.21454,4.392 1594,493.46918,227.56418,237.98438,515.2716,4.373 1594,-70.74897,-189.76044,212.04715,456.84332,4.354 1594,-19.997404,-86.93953,71.40119,197.28107,4.347 1594,580.64935,181.66362,39.509155,103.22148,4.333 1594,-37.519478,-128.21133,117.89233,281.6077,4.269 1594,-5.418386,197.16441,17.723383,44.78566,4.214 1594,534.0227,-33.841698,29.091309,71.13527,4.204 1594,612.1311,193.56712,36.438843,122.354996,4.118 1594,548.18286,184.74423,40.465454,99.52374,4.002 1594,359.64062,175.99118,28.954529,62.499054,3.94 1594,217.7722,184.54033,19.487473,31.379883,3.86 1594,348.17822,173.19746,17.91397,36.738174,3.837 1594,11.303947,180.53787,56.78958,138.8801,3.832 1594,619.14667,-3.0082445,18.823181,37.978363,3.804 1594,560.14716,158.21631,48.91742,110.74832,3.804 1594,56.061646,204.89523,20.617363,44.830063,3.801 1595,16.081032,239.86467,25.463345,50.302567,46.433 1595,386.20612,224.48946,20.081757,41.765213,25.202 1595,2.6435661,238.15254,22.156357,48.324783,14.269 1595,6.472268,231.9591,34.94215,81.07568,8.859 1595,594.48395,227.42813,21.515259,52.985626,8.847 1595,606.5653,227.42076,28.442078,69.09175,6.617 1595,380.0191,221.19402,18.712433,33.506226,6.61 1595,616.68585,221.46982,21.464355,58.489685,5.878 1595,-6.5756536,488.8378,19.420465,43.51883,5.806 1595,-12.672315,477.6025,31.329666,62.299774,5.706 1595,610.83405,-47.867207,41.472412,100.79262,5.703 1595,-4.4335556,234.74239,19.27497,44.014023,5.556 1595,-6.0125628,-18.445545,17.933254,43.22891,5.476 1595,-11.367736,-32.77231,29.750008,73.36435,5.465 1595,361.27396,221.71938,20.550568,38.00807,5.334 1595,626.5805,487.88165,20.954529,45.3443,5.29 1595,613.38293,453.76514,38.8562,108.479126,5.202 1595,-73.06281,265.3144,201.47961,462.75836,5.133 1595,585.9915,-97.80143,74.01776,231.41241,5.077 1595,-17.31786,437.3823,54.776196,137.95706,5.031 1595,531.94855,-181.22038,149.40216,420.80338,5.016 1595,371.1306,224.10521,19.987244,39.004654,4.934 1595,85.370415,208.73535,31.491959,64.674225,4.915 1595,-17.49556,-62.421967,56.58137,143.65771,4.841 1595,536.5148,310.65564,142.79993,342.17358,4.749 1595,627.0686,-17.489397,17.187988,46.55496,4.734 1595,583.1145,410.61295,71.67096,178.07352,4.729 1595,-40.517784,366.50424,110.948074,275.23502,4.704 1595,-8.415717,225.69356,29.440235,65.03404,4.605 1595,-4.895345,105.28728,18.190365,44.34897,4.575 1595,28.108873,236.51607,25.584486,48.69188,4.317 1595,-36.866405,-128.14969,117.67114,277.89667,4.293 1595,350.90985,216.86453,26.62741,51.76126,4.261 1595,493.78632,226.81644,237.58453,516.47644,4.261 1595,-70.8622,-188.45708,211.74188,455.20227,4.234 1595,325.9863,213.88431,29.437012,58.59378,4.038 1595,231.11423,214.96782,34.70401,75.64308,4.009 1595,450.33362,-14.026024,16.714355,38.29791,3.887 1595,578.2754,207.78113,47.213074,162.42401,3.804 1595,-4.7954884,220.58276,17.675919,41.172943,3.724 1595,34.406948,230.9563,39.943943,80.95282,3.681 1595,443.06308,-14.342874,16.01709,37.851402,3.677 1595,387.8456,217.91315,28.742096,59.79724,3.654 1595,611.9142,294.489,35.584534,116.08569,3.609 1595,590.0493,207.62119,56.217407,200.78079,3.596 1595,197.49496,214.67259,37.64885,75.19603,3.568 1595,-9.635845,95.3247,29.159782,67.49659,3.567 1595,94.730774,229.55878,23.521805,47.904846,3.554 1595,490.0221,-17.356289,18.707916,42.6245,3.548 1595,-12.93045,231.4007,48.88968,151.59607,3.547 1595,457.9158,-15.050125,17.784729,39.0637,3.543 1596,392.7321,191.84608,18.243134,44.501434,37.831 1596,615.2456,200.68813,21.60962,52.01602,12.438 1596,371.81763,189.92604,17.397003,41.0652,9.536 1596,380.0162,190.82854,18.41092,45.427658,6.834 1596,-12.511499,477.14932,31.236263,62.95645,6.087 1596,73.52858,200.92267,21.432602,41.70543,5.837 1596,-11.700001,-32.450306,30.124332,72.32181,5.819 1596,-6.0440354,-18.53007,18.07776,43.160652,5.718 1596,400.727,197.84042,20.026062,46.582428,5.669 1596,-6.609062,488.9422,19.274405,43.34076,5.664 1596,622.9957,-33.390923,26.750366,76.45676,5.587 1596,363.45337,190.9377,17.936768,42.666336,5.468 1596,613.1231,453.75638,39.388245,109.5975,5.388 1596,602.9416,-55.127136,53.362366,135.0726,5.363 1596,626.7904,-18.579027,17.134766,47.913086,5.273 1596,387.6428,187.41742,19.006805,38.485153,5.081 1596,-72.77457,266.2204,200.9464,461.03717,5.069 1596,-21.846294,401.91544,79.49768,176.07413,4.982 1596,-17.181128,-61.486286,55.931206,143.83788,4.982 1596,583.1196,411.3162,71.480286,176.7432,4.901 1596,586.06287,-100.40763,74.340454,235.21219,4.85 1596,490.03445,-181.08318,234.4697,426.93005,4.81 1596,536.4174,310.6137,143.35376,342.25494,4.658 1596,626.3315,487.72104,21.191833,46.228485,4.645 1596,622.4649,204.71999,26.783203,80.26457,4.586 1596,218.45074,205.59952,20.402954,32.658936,4.57 1596,-36.72637,-128.8738,117.20936,277.8389,4.469 1596,597.82275,180.14717,36.58734,88.040146,4.395 1596,493.09998,227.15207,237.80365,516.2228,4.377 1596,-70.49133,-189.72272,211.53864,456.72635,4.372 1596,193.68036,200.32198,20.179504,30.669708,4.136 1596,67.20567,205.012,20.915314,41.945587,3.965 1596,-10.228861,-5.226513,39.829655,100.759445,3.889 1596,318.8523,189.15565,28.910706,64.724686,3.802 1596,68.530365,177.14633,30.524368,66.16618,3.783 1596,625.431,199.47507,18.898193,48.361847,3.704 1596,569.4022,-2.2009525,20.658752,52.27893,3.698 1596,575.1765,-5.351324,27.725342,63.820274,3.67 1596,214.52818,185.09895,35.967667,72.44078,3.659 1596,594.21155,-46.344566,44.180176,101.05591,3.649 1596,355.40942,190.79352,18.388947,42.53656,3.648 1596,619.21625,-16.754398,17.283752,43.894344,3.624 1596,2.4656696,-16.971844,17.130535,40.0285,3.557 1596,367.8456,187.89996,26.134674,64.07756,3.527 1596,376.32556,183.78802,35.970856,70.58438,3.516 1596,1.8666387,-39.35252,42.868793,100.342026,3.492 1596,410.22964,196.1365,19.193146,43.77527,3.464 1596,586.9191,-14.317575,16.134277,41.05156,3.463 1596,68.67108,206.97134,29.869606,65.642365,3.439 1596,594.2137,-3.2908611,19.56311,41.371254,3.369 1596,181.16774,169.25195,38.70883,76.693954,3.368 1596,1.7365754,488.6636,20.412418,43.482025,3.363 1596,555.0798,-13.926637,16.236511,40.821106,3.351 1596,578.8376,-13.850452,16.35138,40.141087,3.315 1596,387.38602,202.7019,19.46634,43.54222,3.309 1596,197.36128,172.61926,39.28395,73.44589,3.287 1596,220.26541,-1.7506084,16.238007,33.32752,3.276 1596,602.6574,-3.4811382,18.176208,41.00628,3.269 1596,148.6789,177.6374,40.75244,80.59151,3.241 1596,58.44079,206.85083,20.724998,41.054657,3.238 1596,553.68555,-1.4392548,20.913574,51.75636,3.23 1596,252.45201,-3.785616,16.442642,35.395664,3.226 1596,557.23376,-2.8911057,28.466187,64.2599,3.204 1597,400.21747,198.1847,18.872742,46.01451,33.924 1597,371.04913,198.36081,18.73587,35.143295,10.192 1597,40.25432,200.77798,24.45092,44.03337,9.341 1597,378.20667,200.14804,19.250336,41.08194,9.083 1597,362.3136,201.63376,20.119232,38.960632,7.333 1597,35.86582,206.21634,20.381336,44.87416,7.03 1597,626.7335,-17.10588,17.144653,47.327183,6.989 1597,353.82623,200.06573,20.927063,38.24547,6.882 1597,388.06793,201.35376,20.060364,43.810944,6.706 1597,-12.705841,475.1047,31.610548,64.550934,6.29 1597,-6.18227,487.93454,18.847359,44.580414,6.007 1597,622.44073,-32.42918,26.547852,76.294334,5.861 1597,406.7016,201.03293,20.790527,45.51529,5.754 1597,615.17065,-15.911427,24.940552,72.142426,5.648 1597,33.355923,194.55582,39.98511,69.31857,5.615 1597,-11.464319,-32.462387,29.790659,72.77001,5.408 1597,545.7019,184.55574,18.807129,35.678223,5.408 1597,-5.7485814,-18.101389,17.502045,42.362816,5.375 1597,184.66525,208.15811,23.867477,36.099884,5.359 1597,602.5127,-53.485497,53.01355,133.163,5.224 1597,-72.95696,265.87143,200.9285,461.2101,5.117 1597,626.4893,487.76834,21.084167,45.506866,5.059 1597,613.0575,455.21274,39.386353,107.49112,5.044 1597,-17.902662,435.8588,55.39698,140.34348,4.986 1597,586.14636,-98.399284,74.10504,231.93811,4.967 1597,583.0019,411.64087,71.79431,176.60278,4.932 1597,618.6223,-16.44135,16.92688,46.253017,4.882 1597,-17.104755,-61.324966,56.116894,143.86389,4.793 1597,-40.476627,366.9112,111.022156,274.68158,4.761 1597,128.24658,207.72807,22.75473,38.10338,4.738 1597,536.28094,310.72644,143.52911,341.76807,4.725 1597,489.78732,-180.79538,235.01321,425.63638,4.711 1597,180.79092,191.12453,38.19313,71.68547,4.692 1597,346.7427,194.11142,22.082,40.05284,4.606 1597,539.7525,175.84079,18.860535,38.31836,4.535 1597,493.40607,226.40454,237.67822,515.4136,4.471 1597,-70.02982,-189.45415,211.03519,456.57977,4.412 1597,-37.270058,-128.37106,117.52395,280.28824,4.291 1597,390.85297,189.55396,34.532013,70.80951,4.278 1597,588.72876,-12.661579,29.523193,64.53241,4.204 1597,5.3007126,193.97781,38.42873,91.577515,4.163 1597,28.315058,205.53844,19.479666,47.44406,4.156 1597,30.502441,180.879,31.706516,64.91872,4.149 1597,333.19904,186.71776,30.557495,60.31523,4.13 1597,174.51404,205.4348,30.922653,54.51094,4.128 1597,218.0769,214.99496,20.441849,34.317,4.023 1597,378.654,191.76523,17.427002,31.741882,3.977 1597,136.7059,209.58345,21.344345,34.859406,3.973 1597,417.179,202.8751,21.18103,43.90242,3.927 1597,602.76526,-15.383368,16.803955,43.851505,3.913 1597,618.5877,490.22086,20.38147,42.10263,3.881 1597,610.5001,-3.138195,19.079346,44.245922,3.83 1597,366.1385,200.05922,28.39386,59.32219,3.82 1597,317.58228,197.0264,29.914398,62.77829,3.773 1597,-9.924023,-4.4440765,39.66902,100.87276,3.757 1597,548.72845,2.066883,28.305664,65.96889,3.751 1597,606.5503,-31.635073,26.827026,77.921394,3.741 1597,395.20142,210.39333,19.742676,48.740677,3.704 1598,419.03375,204.9394,22.595154,49.054184,49.508 1598,383.88477,202.104,21.590546,40.130173,16.839 1598,6.626475,198.32603,29.1219,56.339676,9.467 1598,369.4677,206.18993,22.028107,41.673264,7.42 1598,626.9564,-17.49688,17.208557,47.09511,7.255 1598,3.0493248,213.27727,20.21423,47.072464,6.87 1598,377.6881,207.46065,21.749786,43.050705,6.602 1598,-6.399377,488.13803,19.091316,44.142,6.427 1598,-12.819824,475.185,31.501099,65.03192,6.218 1598,424.22458,217.57005,20.933838,50.03102,6.032 1598,409.7836,205.74101,26.598297,61.437057,5.862 1598,610.67615,-46.643547,41.394287,100.17792,5.628 1598,-4.0504413,201.38472,17.840284,42.493027,5.509 1598,-11.409786,-32.862465,29.828323,73.724304,5.502 1598,429.39456,205.2474,23.249725,44.92633,5.49 1598,-73.01392,264.9888,201.18079,462.92905,5.192 1598,613.02325,454.8872,39.681885,107.74695,5.079 1598,-6.126586,-18.303051,18.017103,42.889397,4.993 1598,614.66724,-18.289291,26.124329,74.34703,4.949 1598,583.11884,411.26495,71.54639,176.82141,4.918 1598,-21.897173,402.15588,79.60493,175.41443,4.889 1598,586.09937,-98.87587,74.1264,233.52756,4.875 1598,-17.26542,-61.82827,56.320145,144.03505,4.821 1598,536.3367,310.42944,143.78125,342.3744,4.761 1598,490.33905,-181.7937,234.39777,426.7138,4.759 1598,420.97775,202.81555,33.524506,75.252106,4.739 1598,626.54004,487.76086,21.197754,45.764893,4.732 1598,619.0514,-17.273142,17.050842,45.759087,4.688 1598,363.31396,210.02974,18.875793,40.720932,4.633 1598,403.24664,212.43736,21.253052,49.066757,4.572 1598,493.39844,225.85211,237.61218,515.76196,4.538 1598,391.0453,197.52739,19.67804,39.089767,4.393 1598,-36.88479,-128.45343,117.51674,279.4742,4.328 1598,-69.82124,-188.54382,211.18204,455.1181,4.315 1598,605.61487,-32.49792,28.067383,78.87217,4.271 1598,140.92116,207.82335,32.20201,56.713303,4.116 1598,379.25003,195.60182,20.387695,37.43196,4.072 1598,393.26077,208.23941,21.176727,43.86145,4.032 1598,2.4634147,205.52414,39.051662,90.51807,3.914 1598,605.56506,190.90689,29.18927,72.167755,3.906 1598,-5.018649,218.78421,18.160362,45.426697,3.875 1598,355.15973,206.84329,19.634705,40.269577,3.843 1598,-15.2513075,200.83136,51.22299,147.85919,3.797 1598,21.05988,201.71622,24.502377,45.487152,3.745 1598,481.5051,1.9229507,33.02115,64.73312,3.741 1598,374.17328,203.60384,36.29883,73.41301,3.74 1598,492.3551,-5.0718956,31.535522,65.62791,3.71 1598,201.67056,221.39262,19.449005,37.324265,3.698 1598,196.19678,205.624,37.18039,70.986664,3.629 1598,-10.438909,-4.917042,40.003662,101.87018,3.627 1598,-0.36552906,173.19293,28.666477,75.25209,3.62 1598,1.8782091,488.7372,20.392052,43.11087,3.582 1598,598.98535,154.62357,35.234314,94.99394,3.578 1599,459.74652,212.58577,27.136475,62.778427,69.871 1599,392.75967,221.17749,22.742493,45.032715,7.486 1599,399.47968,214.56891,23.957886,46.731262,6.706 1599,626.84644,-18.075895,17.29663,48.525936,6.511 1599,-12.248158,476.3239,30.386513,63.884766,6.198 1599,-6.1871376,488.60822,18.628532,43.141113,5.965 1599,377.97366,223.53679,20.325287,41.390213,5.91 1599,-11.671478,-32.816006,30.03738,72.58316,5.536 1599,622.4104,-33.282238,26.832214,77.12489,5.471 1599,405.0116,212.38791,28.485107,59.108856,5.292 1599,-6.149971,-18.815327,18.07774,43.198685,5.288 1599,602.474,-56.149296,53.75598,132.50735,5.154 1599,-72.70892,264.9159,201.49495,463.1952,5.119 1599,613.26,453.65164,39.505127,109.01431,4.993 1599,586.1748,-98.21239,73.94861,230.64458,4.968 1599,583.1428,410.9001,71.5625,177.19672,4.937 1599,383.98227,218.99213,23.215576,42.878113,4.902 1599,536.0607,310.4721,144.18097,342.253,4.884 1599,-21.788471,402.34335,79.4637,174.9523,4.797 1599,-17.402252,-62.21181,56.432716,145.00381,4.732 1599,493.82553,226.52261,237.3342,514.72754,4.725 1599,469.26172,210.19283,24.905945,52.14955,4.663 1599,490.21185,-179.70163,234.98871,423.53412,4.644 1599,593.9238,-44.176247,44.821716,94.945305,4.615 1599,-40.963364,365.6605,111.56656,276.9578,4.585 1599,615.77094,-19.824757,25.606018,74.50646,4.563 1599,626.33594,487.6323,21.536255,45.8013,4.463 1599,145.70943,204.55794,31.375473,57.064987,4.418 1599,430.46982,200.52782,27.296173,60.743546,4.406 1599,452.57846,213.31477,23.91159,54.951767,4.337 1599,-36.5731,-128.76811,117.43823,278.5262,4.32 1599,349.1025,217.89906,28.413666,59.60518,4.307 1599,407.91473,208.4515,21.908752,40.257782,4.246 1599,121.67888,217.15736,33.941727,75.87584,4.214 1599,-70.43811,-188.58621,211.48073,454.40353,4.132 1599,439.99295,202.51874,28.927612,63.490295,4.105 1599,58.015526,241.6943,36.387207,72.59509,4.101 1599,465.2322,210.46281,37.30667,81.898544,4.049 1599,71.92331,244.24548,35.789337,70.584045,4.038 1599,416.6879,215.55122,22.238983,49.974106,3.69 1599,426.02277,213.27,21.264832,51.96138,3.682 1599,471.19626,233.8346,22.817871,52.585815,3.67 1599,500.10803,-15.331047,32.454712,68.389275,3.662 1599,334.46136,224.98506,29.21344,64.19389,3.63 1599,564.244,-3.0016975,30.826477,63.83132,3.615 1599,515.11835,-13.977102,33.328247,66.082016,3.605 1599,171.48207,209.92514,19.37564,34.007187,3.599 1599,486.75403,-2.291666,29.701904,63.5429,3.596 1599,522.256,-15.861715,17.788147,41.772785,3.584 1599,2.164991,489.71014,19.59381,42.17157,3.567 1599,531.901,-16.138523,33.39691,68.05019,3.555 1599,573.3506,-19.595436,52.61548,124.63032,3.524 1599,484.02313,220.25461,39.40277,90.79877,3.464 1599,618.8893,-17.54318,17.405579,46.00209,3.46 1599,134.42035,200.6339,31.66687,71.50807,3.453 1599,613.8789,149.13622,34.79944,98.88414,3.452 1599,397.51868,193.98991,52.78296,101.75249,3.444 1599,-5.078788,122.3887,16.188091,36.76367,3.436 1599,478.81088,219.29092,23.619232,48.47879,3.435 1599,548.5051,-17.015636,32.204773,68.87549,3.412 1600,539.2221,210.2856,34.763367,83.98357,85.736 1600,433.94983,213.91562,24.457123,49.037598,15.036 1600,416.78424,211.32326,21.473785,42.043106,8.276 1600,528.23987,210.53162,33.961792,72.11163,6.744 1600,546.00494,242.92577,20.660767,56.286057,6.661 1600,393.47565,209.72485,19.956116,42.762085,6.57 1600,-6.308154,489.19727,19.008404,42.592102,6.446 1600,-12.945217,476.4897,31.831566,63.82953,6.365 1600,426.6768,211.55534,22.368622,42.381622,6.357 1600,422.32874,213.2868,30.541473,65.08838,6.257 1600,139.78778,222.57854,17.43724,31.44664,6.211 1600,385.5816,210.23415,19.602234,43.38771,6.206 1600,627.10504,-17.755291,16.981567,46.423733,6.103 1600,146.3801,225.10892,17.738785,29.560394,6.052 1600,622.9971,-33.324432,26.365662,75.85965,5.929 1600,444.82663,213.4282,25.80008,50.123856,5.731 1600,548.8711,208.96399,25.616394,54.11624,5.688 1600,-5.9804964,-18.693445,18.026537,43.123775,5.623 1600,-11.365557,-32.560646,29.684053,72.116905,5.6 1600,43.119774,208.1821,29.67694,57.829712,5.575 1600,410.57178,215.27115,21.177917,45.202118,5.568 1600,161.40749,221.29921,18.451538,30.65657,5.534 1600,400.8731,210.33386,20.185059,43.60199,5.239 1600,434.10916,209.76602,37.837494,84.82129,5.173 1600,613.47284,454.31116,39.06427,107.67096,5.112 1600,-72.9984,265.35806,200.79306,462.58945,5.089 1600,155.60611,224.33067,17.266357,28.233017,4.95 1600,-17.641373,-63.237675,56.557865,145.41722,4.946 1600,583.12366,411.08505,71.714294,176.97043,4.939 1600,536.1338,310.12964,144.3819,342.1394,4.927 1600,-18.008825,435.93692,55.43844,141.06088,4.926 1600,602.7092,-56.258083,53.5542,131.98447,4.798 1600,-40.460487,367.48288,110.89898,274.14053,4.73 1600,586.3418,-99.67119,74.2923,232.62592,4.692 1600,494.06247,226.62393,237.52188,515.31165,4.599 1600,130.55151,224.09656,17.269348,33.685364,4.58 1600,593.5862,-45.090805,44.983276,94.55287,4.547 1600,532.68195,-182.87999,148.77362,424.23672,4.543 1600,626.29504,487.75327,21.510681,45.882294,4.512 1600,-36.94941,-127.189896,117.47413,275.99234,4.287 1600,501.1946,210.78688,30.19162,64.81529,4.275 1600,-70.1738,-188.08337,211.01245,454.53305,4.207 1600,618.91327,-6.565099,18.948364,44.036198,4.204 1601,470.3288,209.91566,22.795654,48.459885,31.908 1601,418.8828,191.13632,30.440308,74.39227,13.659 1601,457.3257,201.94171,28.123016,69.42413,6.432 1601,144.97217,228.36444,23.05899,40.704956,6.422 1601,622.46924,-33.720074,27.745483,76.05749,6.32 1601,-6.233124,489.44452,18.857977,42.141785,6.292 1601,478.76178,214.00203,24.8656,54.09944,6.241 1601,-12.646833,477.80988,31.160025,62.480957,5.935 1601,382.54178,194.99603,22.49884,51.353912,5.864 1601,-11.7329445,-32.136284,30.010517,72.01909,5.805 1601,-17.345694,-63.627243,56.889282,148.51729,5.488 1601,-6.227909,-18.561766,18.170908,43.167046,5.355 1601,613.2324,454.45975,39.519043,107.2186,5.308 1601,626.57806,488.5061,20.919006,44.71643,5.212 1601,-72.84314,265.70676,200.69507,462.32535,5.127 1601,593.49066,-45.0456,45.420227,95.73349,5.093 1601,490.39386,-181.11697,234.32098,425.95505,5.086 1601,602.6773,-56.64005,53.8302,133.04257,5.006 1601,536.1907,310.42877,143.70032,342.78168,4.856 1601,582.9608,410.96045,71.817505,177.74915,4.855 1601,-21.64115,402.3851,79.17704,175.05472,4.818 1601,586.4623,-99.61895,73.884094,232.24234,4.754 1601,486.8617,213.6401,29.61621,69.9137,4.743 1601,626.88293,-19.24979,17.902771,46.988495,4.696 1601,493.6933,227.36002,237.56744,513.77844,4.485 1601,-36.30896,-126.76209,117.18531,275.51065,4.473 1601,429.97098,191.70557,23.753967,55.678864,4.276 1601,-70.0969,-187.50336,210.68814,454.00635,4.193 1601,578.5056,194.46036,32.74176,70.73065,4.099 1601,-7.353928,52.309246,37.765526,104.537735,4.089 1601,575.1846,175.58774,48.542908,123.98984,4.087 1601,107.33836,211.30975,18.573112,32.18625,4.062 1601,106.62376,221.0336,19.631447,40.844086,4.014 1601,497.05084,202.7245,21.03534,42.728546,4.005 1601,451.18286,199.65651,20.431183,43.173126,3.972 1601,24.510286,188.6013,60.988785,108.94435,3.914 1601,617.63934,-8.591929,22.056335,46.106373,3.888 1601,154.67328,230.43092,32.754303,52.120285,3.871 1601,132.32996,225.72241,31.950668,56.48651,3.857 1601,415.84366,214.40317,27.748077,65.61191,3.817 1601,9.231911,-1.7302246,56.15934,134.1437,3.809 1601,391.82422,199.71301,21.937408,50.93123,3.801 1601,468.68106,203.84839,36.9032,92.1723,3.773 1601,113.548615,216.0091,19.051498,34.45822,3.722 1601,417.22336,186.6813,22.86914,50.174805,3.681 1601,533.9928,-33.47931,29.216248,71.5097,3.669 1601,2.4977696,228.09573,39.95699,92.710144,3.644 1601,2.146099,490.8583,19.965004,40.969513,3.643 1601,618.6718,490.8368,20.442017,41.439697,3.56 1601,503.45444,216.13484,23.309113,45.44902,3.531 1601,111.320724,217.71324,28.25972,57.28218,3.524 1601,566.1612,198.1448,39.611633,97.638824,3.502 1601,440.03467,194.89545,22.624573,48.8071,3.496 1602,451.8128,209.00774,19.51532,46.6765,22.259 1602,387.47717,188.10458,28.805481,66.135925,8.25 1602,425.35153,205.16867,21.60144,57.773407,7.922 1602,539.7397,201.70485,32.44806,82.606674,7.516 1602,0.5784941,263.6144,29.822353,77.9949,7.082 1602,623.1133,-33.878075,26.302979,76.840355,7.078 1602,105.16753,218.1232,19.78273,39.07602,6.894 1602,627.09576,-18.117777,17.18927,47.090176,6.825 1602,626.33673,487.11032,21.467346,45.674164,6.056 1602,180.4288,226.44469,31.320389,52.460983,5.921 1602,337.85956,215.53761,19.839417,41.942184,5.909 1602,80.5114,214.82925,20.573875,40.632156,5.867 1602,-11.3304615,-32.43236,29.894712,73.44034,5.78 1602,442.1621,211.45897,22.305115,55.84929,5.748 1602,613.3768,453.62598,39.59442,108.243774,5.746 1602,42.56169,272.83936,31.5541,63.839905,5.659 1602,-9.224876,464.27127,38.003162,92.99997,5.575 1602,456.28494,214.39557,20.968842,55.052155,5.575 1602,-6.5157294,489.72806,19.049124,42.361176,5.511 1602,-6.205386,-18.669285,18.244642,43.69792,5.474 1602,555.95404,189.02988,31.933533,71.32434,5.364 1602,602.957,-55.81047,53.40802,131.46913,5.257 1602,-72.776276,265.8468,201.13155,461.9585,5.192 1602,532.6105,-182.43274,149.18762,422.58972,5.086 1602,-17.27905,-61.793335,56.84755,144.91682,5.058 1602,344.82892,215.79051,21.33606,48.380417,5.045 1602,593.6024,-45.236988,44.928955,95.46475,4.963 1602,348.58716,217.25725,30.308716,66.22032,4.947 1602,586.363,-99.63229,74.45337,231.71388,4.92 1602,359.7422,204.92981,29.217468,54.13916,4.907 1602,-21.909857,401.92902,79.80205,175.82806,4.883 1602,162.4697,229.13783,32.991287,58.182266,4.823 1602,583.0548,410.2765,71.712524,177.9347,4.823 1602,536.29553,310.0042,143.36609,343.54938,4.815 1602,-12.284565,258.07162,29.413202,73.48572,4.679 1602,550.9677,198.14598,24.666382,55.381638,4.649 1602,112.34603,219.14609,20.150017,41.163605,4.61 1602,28.704361,273.0017,33.39501,64.261505,4.565 1602,-36.717392,-127.18189,116.80703,275.2144,4.462 1602,493.52417,226.46179,237.62848,515.2617,4.434 1602,443.5498,196.87083,18.539917,43.258743,4.394 1602,-70.593185,-188.2618,211.1328,454.2079,4.362 1602,149.90111,227.6795,32.68364,58.57892,4.314 1602,122.44132,226.94574,18.4468,35.151184,4.275 1602,200.73485,232.8281,22.53746,38.039062,4.271 1602,618.8659,-18.49682,17.96582,43.97925,4.206 1602,527.5848,204.40546,32.789124,73.600525,4.189 1602,-7.3006067,269.34882,19.932106,46.49887,4.152 1602,615.01,-20.543175,27.560913,73.608986,4.118 1602,167.21162,232.94208,23.248566,34.262024,4.116 1602,17.89796,276.82382,31.584232,67.87381,4.085 1602,618.8069,489.375,20.519531,42.855774,4.085 1602,573.86127,185.40689,28.649841,74.61105,4.014 1602,197.40445,217.79163,36.584366,72.016205,4.002 1602,192.33818,234.04839,23.552612,40.2502,4.002 1602,175.9079,233.81316,22.808502,34.885574,4.0 1602,618.78,206.61905,19.149353,56.897003,3.98 1602,477.91913,220.5686,29.184296,69.26941,3.926 1603,504.84113,211.21017,27.609924,66.285,56.26 1603,34.216095,243.90863,33.54831,63.389893,8.994 1603,384.93057,217.18864,22.245758,45.255905,8.133 1603,626.03876,488.61096,21.801208,44.236084,5.966 1603,-11.750525,-32.317295,30.00972,72.15769,5.919 1603,-12.339953,478.30994,30.720589,62.39081,5.782 1603,-6.4003897,489.85046,18.973656,42.43622,5.607 1603,627.4244,-17.980513,16.975342,45.521095,5.552 1603,-6.0912848,-18.407417,18.008118,42.719494,5.471 1603,113.79323,266.03522,21.133972,39.168457,5.28 1603,-72.81244,266.25995,201.11812,462.80365,5.262 1603,371.20245,218.27538,19.427185,40.20549,5.222 1603,491.02942,-181.97952,234.0108,427.77277,5.108 1603,610.71436,-48.702698,42.029724,101.205826,5.097 1603,613.524,453.92114,39.238464,107.342224,5.095 1603,184.74944,220.1737,21.532532,29.97667,4.963 1603,100.99919,236.647,39.00157,71.16757,4.962 1603,-17.594765,-63.65561,56.417625,147.65233,4.907 1603,-21.774025,401.94995,79.51354,175.74084,4.903 1603,586.08014,-100.40343,74.497925,234.8564,4.898 1603,618.1646,491.08597,21.182678,41.004547,4.853 1603,438.29166,213.89977,29.768158,73.00856,4.843 1603,50.033882,251.69931,34.487602,59.642456,4.819 1603,440.47064,182.31293,26.425568,72.56308,4.769 1603,583.1283,410.55322,71.65271,177.81824,4.751 1603,536.35266,310.08295,143.32178,342.99664,4.749 1603,36.356552,214.21529,31.139565,59.448776,4.574 1603,71.14215,254.04445,24.377121,42.406204,4.475 1603,364.513,220.68794,17.468689,38.33696,4.417 1603,493.89044,227.43481,237.24432,515.30756,4.41 1603,85.59151,233.37991,38.459854,74.799164,4.36 1603,573.17786,203.60193,30.378845,66.08139,4.33 1603,470.27704,216.02391,28.972809,69.51436,4.31 1603,-36.868088,-127.386734,116.73663,276.90085,4.305 1603,-70.53728,-187.6109,211.46245,453.5945,4.265 1603,115.152054,256.1643,31.045135,54.8313,4.231 1603,512.1378,215.04427,31.545715,77.86687,4.224 1603,378.594,215.68097,20.870789,37.417404,4.086 1603,393.17267,220.99629,21.960663,46.24794,4.085 1603,516.6534,214.53404,23.628052,46.059616,4.076 1603,373.42188,208.79889,38.192047,72.87952,4.062 1603,533.23755,-31.952011,28.338623,73.87166,4.022 1603,378.83395,181.74237,54.200348,109.426056,3.954 1603,432.24176,193.2418,29.183258,78.521805,3.953 1603,65.20664,228.45291,21.1706,38.565643,3.895 1603,557.4129,196.66574,30.293762,66.99982,3.817 1603,88.65688,260.1163,24.108269,44.451447,3.814 1603,196.86592,204.2571,38.853012,71.26433,3.8 1603,-5.3060102,265.62396,17.43687,39.230713,3.76 1603,457.3032,184.53207,19.113129,49.30867,3.747 1603,170.82497,231.25017,19.206497,30.082108,3.733 1603,187.66983,220.18167,29.45694,49.75183,3.703 1603,2.4900723,275.5856,19.752558,34.22412,3.698 1603,584.14386,197.38666,23.44867,46.667633,3.687 1603,486.18564,208.35672,28.528168,71.074554,3.668 1603,210.83972,229.9555,18.604996,32.52545,3.666 1603,2.1122289,491.37122,19.68676,41.532104,3.666 1603,62.836296,228.68279,52.746056,104.64284,3.634 1604,409.10947,180.93555,32.13376,74.2854,7.229 1604,-13.043612,475.55374,31.765919,64.73227,6.484 1604,38.989906,207.28365,29.680138,55.210526,5.868 1604,-6.3923445,488.94504,18.995163,43.610504,5.8 1604,610.6858,-48.722282,42.034546,100.165886,5.728 1604,-11.382484,-33.05114,29.730244,73.929375,5.526 1604,-6.306701,-19.271423,18.402218,44.654728,5.511 1604,170.93283,221.70224,17.575958,30.173325,5.47 1604,626.28674,487.22134,21.447144,45.92227,5.238 1604,-17.255648,-64.05238,56.18815,149.20245,5.227 1604,-73.551025,265.06894,201.72516,462.69437,5.222 1604,627.43463,-18.879692,17.03949,47.96202,5.211 1604,613.415,453.73492,39.45294,108.07489,5.168 1604,586.1174,-99.239456,74.482605,232.4751,5.076 1604,532.597,-182.39339,148.69232,422.29257,5.07 1604,163.62213,221.90677,17.965012,31.303268,5.001 1604,-22.002287,401.53055,79.678406,176.00644,4.912 1604,536.406,310.58704,143.22034,342.23834,4.899 1604,-9.233771,196.29466,26.270805,69.31938,4.831 1604,582.995,410.11304,71.80115,177.98224,4.827 1604,1.0699999,222.92102,18.881031,57.06314,4.778 1604,22.634766,201.27855,28.39793,59.00386,4.69 1604,-5.297743,186.26646,17.638802,43.404465,4.684 1604,482.94916,116.350204,31.177856,79.60124,4.667 1604,-16.46642,174.84094,49.776978,127.42581,4.604 1604,493.74152,227.04672,237.70264,514.8568,4.56 1604,485.26764,214.22429,28.082092,78.062546,4.518 1604,82.95871,225.31319,17.950401,35.89067,4.437 1604,435.97644,200.2136,41.49048,83.51071,4.421 1604,12.80265,183.75076,53.718353,103.35727,4.338 1604,618.98096,176.02248,19.09906,54.934372,4.338 1604,-37.334892,-126.76837,117.035194,277.75494,4.279 1604,410.91217,174.73685,53.0885,112.49304,4.238 1604,-69.8582,-186.94499,210.43245,452.32233,4.141 1604,-4.431494,209.69922,17.368193,45.037323,4.122 1604,469.9371,242.88222,32.84323,65.99382,4.118 1604,178.29253,222.48553,17.444473,29.071304,4.11 1604,90.82032,223.45079,17.834885,36.759933,4.091 1604,3.3934581,221.91904,39.191746,94.414,3.973 1604,114.963135,229.98897,30.76503,54.18538,3.96 1604,490.05963,177.11305,32.4494,78.68858,3.956 1604,483.09686,254.19232,31.862793,66.46045,3.907 1604,156.4032,229.16391,17.614014,28.86792,3.808 1604,451.99048,211.42018,41.15448,90.11705,3.802 1604,212.19113,204.76736,39.092987,73.13925,3.77 1604,618.31506,489.35507,21.011475,42.895233,3.707 1604,422.75427,-35.19409,27.97815,76.527466,3.644 1604,612.39325,215.20071,36.95746,115.1178,3.643 1604,398.98047,194.23575,31.680267,61.840546,3.643 1604,588.7114,183.66667,29.190918,71.960754,3.602 1604,74.644684,222.54651,18.594437,38.67383,3.601 1604,393.33032,208.89285,21.926971,40.621857,3.593 1604,-10.789839,-3.839962,41.038853,102.186066,3.586 1604,429.9191,-15.523424,30.594452,67.82304,3.564 1604,323.74728,210.5944,17.52182,30.74936,3.554 1604,202.8883,170.8675,19.651733,40.129776,3.548 1604,386.84842,204.09534,42.320953,88.22891,3.502 1604,478.53003,170.21988,52.59381,123.2587,3.488 1604,403.17316,205.633,41.097168,84.49713,3.48 1604,-9.744983,227.77013,38.1595,98.25105,3.48 1604,450.0092,214.6384,22.046814,43.860962,3.477 1605,415.47137,210.93945,19.862946,41.377472,14.241 1605,377.51843,209.85124,18.11557,33.345367,7.514 1605,523.5284,183.16275,29.28949,73.999176,6.399 1605,622.80206,-34.649567,26.91687,75.1998,6.241 1605,-6.607704,489.08167,19.405788,43.573242,6.015 1605,539.1978,93.40892,32.45331,80.0338,5.899 1605,396.21902,216.58258,17.350983,39.391235,5.768 1605,317.39536,210.65591,17.401947,31.061752,5.755 1605,-12.650721,477.94476,31.251612,62.447998,5.71 1605,195.97404,220.86641,32.796417,56.15349,5.605 1605,626.9661,-20.137506,17.877136,47.584015,5.595 1605,593.71204,-46.75986,45.435608,93.870544,5.536 1605,21.418518,208.91887,28.510262,57.94368,5.491 1605,-12.405903,-39.83631,41.066795,101.243286,5.445 1605,-6.1899014,-18.971205,18.051182,44.171597,5.352 1605,603.2565,-58.095005,53.11078,132.32617,5.334 1605,613.0171,454.51306,39.5448,107.764465,5.162 1605,405.91556,187.01457,37.12204,76.72542,5.137 1605,490.49313,-182.33633,234.48856,428.5588,5.13 1605,586.2902,-98.61676,74.157104,229.99185,5.077 1605,-72.96574,265.9911,200.69012,460.84497,5.054 1605,-21.74501,402.53778,79.35211,175.09955,4.857 1605,626.6089,488.6148,20.940247,45.708923,4.839 1605,583.167,411.32175,71.57666,177.03763,4.829 1605,536.4513,310.3382,143.45459,343.15955,4.708 1605,-19.965553,-86.799995,71.36972,196.56326,4.616 1605,405.9378,211.49815,17.728455,38.230118,4.54 1605,411.12827,204.66867,19.617554,36.806076,4.532 1605,493.8736,226.90085,237.25891,515.6428,4.429 1605,-37.36525,-126.289925,117.304924,276.40482,4.398 1605,439.92432,197.25204,26.299103,67.544525,4.373 1605,-70.247734,-188.00452,210.8978,454.2882,4.239 1605,210.98495,203.45334,38.438385,77.03674,4.118 1605,-4.253365,201.89613,18.244953,45.176834,4.107 1605,5.4481244,204.12225,27.56783,71.40344,4.101 1605,511.51675,184.73322,28.221039,66.648834,4.098 1605,373.15552,186.67723,38.215454,74.23183,4.024 1605,341.49084,228.68669,32.40686,68.82051,4.02 1605,181.53471,202.20471,38.029404,78.26877,4.019 1605,485.6032,191.63472,25.315247,53.90146,3.908 1605,351.1034,180.58012,51.386505,105.31694,3.903 1605,511.16806,172.4543,50.713776,121.481125,3.864 1605,-7.1540155,202.04927,35.98386,96.01433,3.845 1605,386.12454,209.85786,17.267426,33.06131,3.833 1605,390.46982,187.15445,38.65158,73.8132,3.832 1605,412.2271,221.61845,17.467163,43.78795,3.824 1605,477.6752,201.86665,30.13736,65.96858,3.798 1605,2.5407748,212.83426,19.237875,56.259705,3.792 1605,-8.209924,8.166855,38.141903,103.90232,3.747 1605,560.2821,-42.303085,47.719604,90.65816,3.745 1605,421.6797,184.0661,37.01297,79.869934,3.653 1605,333.26965,210.73769,31.5766,59.66124,3.591 1605,484.93207,179.22678,37.82953,82.53476,3.57 1605,457.09225,179.14973,21.10138,43.895706,3.507 1605,525.7205,85.81346,30.274841,81.27559,3.501 1605,316.7394,199.32848,16.40738,28.359344,3.5 1605,492.92505,161.38635,53.73358,118.7583,3.46 1605,37.117916,210.778,29.197628,55.869827,3.449 1605,207.48053,214.13159,24.358994,43.09497,3.446 1606,439.08533,209.92276,19.536438,44.14508,19.575 1606,417.4915,210.4813,20.80722,42.221542,8.164 1606,385.86575,206.41069,19.9404,39.35179,6.686 1606,428.45947,212.28062,18.976166,41.64734,6.476 1606,-11.120842,-32.271023,29.49694,73.492256,6.347 1606,-6.1639,-17.607492,18.089731,43.825836,6.274 1606,329.1001,215.80354,23.349548,45.017776,6.114 1606,407.6751,202.82831,26.008667,54.10724,5.96 1606,-12.451501,477.88715,30.776821,62.817017,5.641 1606,627.3994,-17.236801,16.81195,45.615547,5.592 1606,613.37555,454.0033,39.597717,107.00244,5.49 1606,623.1012,-33.973938,26.286987,76.04315,5.422 1606,-72.916,265.16486,200.95966,462.60327,5.3 1606,-6.4068007,489.5144,18.944944,42.907654,5.249 1606,586.0806,-99.95864,74.7381,234.42569,5.195 1606,-19.870295,-84.63262,72.00853,195.37785,5.14 1606,490.09467,-181.70544,234.94507,428.32245,5.072 1606,314.93915,217.99438,20.837402,37.892014,5.049 1606,-17.326767,436.08795,54.846855,139.05145,4.963 1606,234.07535,208.84833,19.125809,31.80249,4.954 1606,-36.378532,-123.92953,116.86868,272.79434,4.912 1606,626.35785,487.82492,21.518616,45.704376,4.854 1606,583.23413,410.61438,71.49414,177.43811,4.794 1606,536.48096,309.85663,143.07745,343.65387,4.693 1606,-40.513863,366.4571,110.961006,275.7439,4.647 1606,603.12805,-56.663525,53.488464,137.10393,4.619 1606,420.27847,187.68936,39.345734,76.00775,4.617 1606,403.35217,211.77805,20.394287,41.377533,4.608 1606,6.412443,0.8191719,32.158707,77.17276,4.585 1606,183.47594,212.54158,22.694244,35.08821,4.497 1606,320.56055,210.16136,21.142029,34.46512,4.481 1606,493.5469,226.76614,237.76889,515.7445,4.436 1606,435.65967,185.09842,39.26123,81.00934,4.241 1606,-70.12817,-187.98434,210.70828,454.94214,4.215 1606,242.6085,212.33575,18.413712,29.723022,4.154 1606,9.642577,-8.717617,58.747856,121.41997,4.123 1606,4.1344776,221.76181,29.494463,69.54553,4.096 1606,322.51477,223.6829,21.200073,40.12047,4.058 1606,-14.875248,151.7714,48.16827,144.63724,4.037 1606,-10.516613,-16.845276,40.56808,98.03994,3.981 1606,235.60422,199.63954,16.606506,27.827667,3.921 1606,66.684105,217.72119,33.380974,63.788788,3.921 1606,22.556665,9.09874,38.48118,75.90069,3.92 1606,19.628284,226.4086,32.104855,60.579376,3.883 1606,11.436787,176.53552,57.1573,118.55792,3.857 1606,2.6461549,-15.621664,17.134943,40.714092,3.826 1606,594.6925,-46.93866,44.190735,100.53941,3.806 1606,461.86572,196.73567,28.233215,71.59001,3.785 1606,1.3585138,-35.710766,44.092896,98.86718,3.783 1606,115.955734,195.90164,40.39,76.12424,3.747 1606,177.92061,218.32127,20.759323,34.365173,3.719 1606,315.83685,205.94582,18.76532,29.591705,3.712 1606,192.06421,209.94293,22.240372,33.65204,3.696 1606,598.43744,121.813644,36.522095,95.80722,3.688 1606,452.49515,-17.063015,31.114105,63.994595,3.679 1606,-5.891833,-0.0016841888,18.579287,45.057648,3.665 1606,-5.6479545,201.92538,18.036732,42.53755,3.663 1606,235.28688,239.76775,17.467194,31.920364,3.656 1606,612.3115,201.3055,38.646667,112.60252,3.635 1606,59.74408,204.98032,57.67003,116.050934,3.597 1606,618.3857,489.502,21.099243,43.245483,3.594 1606,620.1526,-2.5825586,17.082764,36.988804,3.563 1606,114.62869,236.15889,34.15306,68.84007,3.549 1606,-5.1406693,169.80954,17.623001,42.587387,3.545 1606,334.03253,204.2319,29.430359,54.40555,3.544 1606,83.46663,193.91264,42.033737,80.23476,3.542 1606,-5.514632,103.22799,18.015514,41.478676,3.532 1606,226.60892,203.71295,20.010178,34.429733,3.53 1607,467.3312,212.12607,19.912567,46.011414,43.843 1607,392.7455,209.2484,20.9122,44.200546,15.699 1607,315.76166,213.88542,17.732422,34.76799,9.426 1607,-11.114918,-33.171543,29.755096,76.015274,6.83 1607,146.12006,208.19835,20.160492,36.439438,6.684 1607,-5.9995418,-17.393042,17.793865,43.9036,6.17 1607,400.47607,212.996,21.14029,47.9935,6.142 1607,408.8628,209.5037,21.38031,43.41075,6.066 1607,330.46555,215.35364,20.756683,39.349518,6.001 1607,-13.060656,476.66238,31.95267,63.074493,5.998 1607,491.06403,172.73294,30.596924,79.40106,5.876 1607,-6.6314907,488.35773,19.500612,44.464294,5.765 1607,627.3907,-16.946053,17.11853,43.750824,5.492 1607,622.9665,-33.66363,26.613647,74.544525,5.447 1607,602.555,-55.342037,53.10205,135.80107,5.391 1607,-3.7227774,161.38884,16.67522,44.919266,5.38 1607,416.7311,211.21576,21.434357,43.595413,5.342 1607,626.3773,488.45367,21.163452,45.555054,5.326 1607,585.7235,-97.43851,74.58679,229.31883,5.301 1607,-16.979092,-62.32554,56.457424,145.00531,5.299 1607,2.162968,161.02373,17.58699,48.675766,5.159 1607,-73.14287,265.46375,200.84373,461.77417,5.156 1607,613.1963,454.0131,39.524902,108.022736,5.068 1607,574.1786,-10.967968,52.166443,115.228226,4.931 1607,-21.974728,402.00848,79.65228,175.39374,4.869 1607,490.12973,-179.95305,234.71402,425.91428,4.847 1607,473.43338,219.07025,19.016388,45.836548,4.822 1607,583.06036,410.98398,71.58386,177.25479,4.815 1607,536.6672,310.24332,142.94958,342.51938,4.717 1607,333.6285,203.11015,27.709045,48.93187,4.692 1607,4.637997,204.32231,28.170433,72.08675,4.668 1607,460.3869,205.79797,21.33078,44.96344,4.651 1607,540.7621,-11.48,53.741577,115.96814,4.508 1607,480.08667,213.6105,21.902832,49.9252,4.494 1607,-37.108913,-126.39724,117.04402,278.88953,4.481 1607,509.42188,-12.934486,53.517517,116.77238,4.464 1607,425.07034,211.91782,21.558258,43.763123,4.416 1607,493.61365,227.11127,237.68732,515.2909,4.376 1607,135.78331,202.63263,29.678436,55.4776,4.323 1607,441.74442,202.72269,21.374176,48.26024,4.323 1607,-70.06735,-188.4826,211.36153,454.82718,4.29 1607,310.14655,210.92667,17.34906,30.887772,4.278 1607,322.00305,216.0908,21.002472,39.39203,4.229 1607,476.07886,-16.971722,55.42206,122.50896,4.189 1607,619.5609,-15.478903,16.91217,39.221016,4.093 1607,455.95798,200.25462,34.516235,78.44911,4.074 1607,107.9113,207.60284,30.638672,58.946167,4.056 1607,-15.087772,123.75712,50.132824,135.98889,4.055 1607,76.54035,179.87692,56.17222,109.7059,3.971 1607,330.94986,205.43051,19.451813,32.104996,3.97 1607,484.91977,206.74876,37.496246,87.285416,3.963 1607,594.57806,-44.3538,44.060913,97.309364,3.961 1607,-9.180012,-4.7102013,39.70863,98.220856,3.928 1607,43.541485,161.2309,56.493702,109.68704,3.894 1607,2.3949547,-15.616442,16.865297,40.504868,3.866 1607,451.4169,207.77356,21.186584,49.04492,3.793 1607,546.6962,222.43839,19.009888,35.991333,3.78 1607,34.158806,212.7301,32.632126,54.66986,3.78 1607,67.28308,180.96454,41.479874,77.27301,3.768 1607,468.5968,192.05371,29.192535,65.0094,3.74 1607,-9.890191,212.57834,38.665924,100.42517,3.721 1607,597.56384,174.51096,38.251648,109.103546,3.7 1607,444.35358,-20.265244,54.930054,125.11611,3.695 1607,618.49036,490.77844,20.861938,42.063354,3.685 1607,-4.860076,180.57095,17.972692,48.383087,3.672 1607,-4.85326,138.27051,17.675674,44.173584,3.666 1608,520.8288,210.63135,22.418152,53.896576,52.41 1608,401.47382,214.20157,21.993134,55.328156,14.079 1608,407.9991,208.91393,19.58252,45.34041,8.556 1608,0.58169484,184.79199,23.164074,52.481873,7.438 1608,5.015385,217.49797,29.167564,69.511795,6.726 1608,320.64792,210.56215,21.754272,40.226532,6.693 1608,425.42816,208.7552,20.739868,44.663315,6.569 1608,533.1312,204.60443,23.138428,52.34497,6.32 1608,610.9362,-46.613804,41.22406,97.67738,6.149 1608,447.06345,208.56578,24.97995,49.565018,6.133 1608,516.49567,203.76529,35.62738,85.224976,5.939 1608,-11.444751,-32.680286,29.611382,72.217705,5.917 1608,613.3962,452.73453,39.374817,109.33267,5.899 1608,506.7297,202.23462,27.072601,71.7352,5.883 1608,-9.011264,463.93872,37.605034,92.77722,5.689 1608,-6.1591363,-18.235796,18.143944,42.828495,5.67 1608,62.092606,212.94673,30.60736,55.401047,5.648 1608,-6.5849447,489.22665,19.155457,43.245148,5.468 1608,129.34282,212.19707,19.444717,33.132675,5.433 1608,433.33984,206.72168,21.480988,48.83348,5.318 1608,-6.3035126,201.60873,19.141537,49.414246,5.298 1608,626.14197,487.53616,21.245972,45.052338,5.225 1608,-73.11734,265.65668,201.18452,462.00983,5.19 1608,627.0106,-17.464003,17.038391,45.37771,5.113 1608,586.2111,-98.801285,74.29028,231.4376,5.032 1608,-17.037395,-61.924484,55.733093,146.338,5.016 1608,583.2211,410.539,71.48334,177.07953,4.976 1608,-21.814732,402.02197,79.326324,175.75488,4.97 1608,122.79268,209.30031,18.660828,34.40518,4.883 1608,491.0286,-181.44647,233.50009,426.71442,4.86 1608,536.23206,309.96045,143.89417,342.38806,4.78 1608,416.78693,208.2128,20.545593,43.183746,4.692 1608,28.942947,171.48659,54.52681,114.357376,4.614 1608,391.9821,219.46964,29.486877,72.69238,4.516 1608,493.41284,227.40921,237.72205,515.68994,4.509 1608,-14.67312,122.015205,49.23458,139.68369,4.464 1608,-37.301872,-128.89275,117.52359,283.93396,4.372 1608,-10.427399,-4.3362923,40.00368,102.72571,4.319 1608,4.181068,173.89108,38.299,89.258575,4.287 1608,527.911,218.84926,22.116394,59.804672,4.286 1608,-70.5162,-189.22537,212.15863,455.24323,4.241 1608,475.1172,8.676922,30.779144,79.53044,4.232 1608,76.35945,212.14442,30.421753,56.82997,4.225 1608,59.350376,175.82126,56.173595,110.780914,4.195 1608,56.66126,219.71921,25.426815,41.30365,4.135 1609,614.3392,211.58792,24.359192,77.316315,54.984 1609,76.29729,212.97221,24.215294,46.35283,13.813 1609,113.018295,211.42438,19.713562,43.018494,13.615 1609,601.1132,208.85284,35.741577,107.371765,9.029 1609,129.9693,211.38992,22.464706,42.183365,8.694 1609,41.62864,240.64159,23.708641,47.054153,8.146 1609,424.85925,209.12572,20.5307,48.346878,7.365 1609,-12.77225,475.88593,31.37918,64.336914,6.475 1609,216.4515,233.8056,22.756683,37.585205,6.345 1609,-11.58173,-32.752663,29.753607,72.47892,6.01 1609,-6.569976,487.91165,19.27661,44.827057,5.968 1609,-6.207451,-18.836481,18.2259,43.53607,5.822 1609,322.7052,216.5074,23.128204,47.05815,5.329 1609,610.4018,-47.865818,42.30597,99.72931,5.329 1609,439.04126,207.98477,27.12555,67.42758,5.319 1609,-73.69675,264.67242,202.0886,463.60516,5.274 1609,612.90784,226.66562,36.36548,114.000854,5.26 1609,585.828,-97.33204,74.44049,230.97034,5.242 1609,613.321,453.75415,39.356018,109.10852,5.157 1609,-17.004028,-61.722164,55.65409,145.8214,5.148 1609,621.1604,198.36607,26.92334,77.48479,5.137 1609,627.4651,-17.946075,17.04303,46.55858,5.094 1609,490.63583,-181.25418,234.319,429.22845,5.068 1609,28.76918,219.88431,31.69688,58.746063,5.019 1609,626.63904,488.25778,21.154907,45.28018,4.964 1609,536.213,310.29794,144.0711,341.91934,4.929 1609,583.0329,410.84326,71.87909,177.44922,4.919 1609,465.27808,203.13278,21.026123,47.017,4.911 1609,202.26971,233.45891,21.365555,37.006607,4.901 1609,-22.002459,401.5239,79.758606,175.8995,4.856 1609,-10.19945,-4.5986137,39.696777,102.32915,4.824 1609,405.11935,203.87128,30.76593,59.22705,4.781 1609,493.38574,226.24011,238.07166,514.7598,4.689 1609,120.47882,214.0901,23.01471,42.791245,4.633 1609,593.39465,162.14676,48.77954,127.476166,4.62 1609,418.97433,189.84857,41.015656,77.94934,4.538 1609,581.3463,199.87888,29.1344,63.837402,4.408 1609,384.05194,180.95473,50.169495,107.80629,4.297 1609,-69.90561,-188.05788,210.87422,454.4781,4.27 1609,212.77469,204.93161,38.450577,73.64194,4.23 1609,-8.10524,33.74952,37.768127,109.25201,4.209 1609,197.15509,205.68472,39.948334,71.28305,4.19 1609,-37.569164,-127.915764,117.18942,280.2089,4.187 1609,-14.663982,185.78253,48.505463,135.12354,4.179 1609,450.03278,210.44249,41.27722,86.61162,4.117 1609,-5.2990413,168.61609,18.25398,45.837143,4.07 1609,-5.9976997,186.58763,18.423023,42.816742,4.067 1609,617.0846,201.41945,21.381714,52.942,4.061 1609,2.4384785,-21.229958,48.848587,140.79463,4.038 1609,521.3581,8.509296,33.69934,79.39705,4.033 1610,341.86417,208.77016,24.428192,48.13936,19.142 1610,505.98254,195.19781,20.746887,42.37761,7.773 1610,4.0651226,185.9678,29.901762,73.38388,6.989 1610,512.36945,188.88283,21.542847,44.456512,6.692 1610,-5.815114,-18.336222,17.70308,43.010094,6.568 1610,-12.897104,477.9533,31.461334,62.408142,6.222 1610,-6.521186,489.0165,19.127188,43.16971,6.214 1610,450.43384,196.2656,44.476685,81.64453,6.102 1610,498.228,187.51703,23.113007,44.57663,6.091 1610,-11.138743,-32.637436,29.62231,72.766594,6.06 1610,622.90826,-33.79501,26.50653,75.95828,5.742 1610,106.21407,236.04396,33.85972,55.756577,5.713 1610,627.33344,-17.787216,16.792908,46.60114,5.492 1610,613.27386,454.57288,39.59955,107.39075,5.282 1610,486.2292,182.19078,30.279724,63.318924,5.255 1610,585.8214,-98.67051,74.57312,230.55731,5.192 1610,337.51666,196.92056,22.848877,47.628128,5.166 1610,500.05704,180.28049,38.982574,77.18933,5.163 1610,-16.948105,-63.711796,55.179836,147.99223,5.134 1610,-73.1264,265.93665,200.91348,462.33276,5.114 1610,482.43576,214.17284,32.960236,65.72365,5.082 1610,490.27603,-180.47554,234.79422,426.32578,5.046 1610,-5.280756,206.12534,19.573702,52.173157,5.03 1610,582.9325,411.7116,71.81061,176.61566,4.947 1610,603.05695,-57.813484,53.25531,134.3886,4.925 1610,536.212,310.87692,143.40527,342.4501,4.903 1610,-21.699604,402.49802,79.29375,174.97696,4.843 1610,-4.3596716,187.8184,18.05389,44.081085,4.74 1610,626.2765,487.83096,21.615295,45.67447,4.638 1610,593.7708,-45.839146,45.14093,94.4522,4.632 1610,515.1418,190.79294,40.569824,87.214264,4.622 1610,464.5084,216.77551,36.497223,67.50546,4.596 1610,493.58322,226.9024,237.78726,515.61884,4.557 1610,458.33368,171.83293,56.733093,101.2039,4.367 1610,-9.246738,-6.131752,39.53342,102.87555,4.328 1610,547.9913,187.07544,41.58673,101.47809,4.291 1610,-37.503742,-128.75278,117.5121,282.85474,4.277 1610,-70.280075,-187.5558,211.03224,453.39624,4.259 1610,-5.066909,122.91435,17.735683,42.895737,4.259 1610,-7.775325,181.77133,28.011349,71.321106,4.246 1610,517.15186,187.46187,26.704102,63.86104,4.171 1610,453.33145,221.52533,32.29605,70.201904,4.16 1610,-6.542332,199.58792,36.196922,94.136505,4.146 1610,531.6324,189.81253,41.680664,94.47946,4.129 1610,132.55257,228.76831,38.944443,82.20856,4.109 1610,328.6853,204.48148,29.903442,60.181,4.099 1610,347.6602,190.42049,28.80362,61.367783,4.087 1610,147.2869,238.58372,34.63025,58.90654,4.07 1610,355.48428,208.21075,38.884857,87.34689,4.054 1610,488.20773,210.19624,24.469635,44.06476,4.039 1610,68.6492,196.01404,30.175758,56.741302,4.034 1610,3.1752563,-16.493523,16.181774,40.139412,4.027 1610,116.10352,216.4779,40.099876,75.66232,3.955 1610,194.28622,192.14034,18.567032,34.433853,3.928 1610,259.07153,202.45424,17.717926,36.273483,3.918 1610,64.9895,206.61264,23.158615,41.884033,3.89 1610,473.66827,195.02217,36.966217,61.676407,3.869 1610,93.94523,208.97667,51.39248,104.64696,3.767 1610,619.61664,-16.61626,16.503723,42.669872,3.745 1611,349.7456,199.01811,26.471008,70.093735,41.336 1611,486.24356,209.36993,22.455292,51.1669,32.351 1611,122.70016,206.33261,21.91401,40.828827,15.541 1611,554.0636,192.53284,21.738525,49.614166,11.926 1611,471.48254,203.36331,30.478577,67.280945,10.952 1611,566.92584,190.55624,24.122498,51.06447,10.779 1611,56.195454,206.25412,22.122105,42.08058,10.588 1611,462.8977,200.41866,28.438202,60.422714,8.699 1611,550.5855,182.28941,36.752625,81.16911,7.053 1611,577.6727,180.87468,39.628784,89.84526,6.643 1611,36.503784,204.78654,27.97641,61.01042,6.593 1611,-12.728788,476.94226,31.350035,62.94922,6.047 1611,358.35248,197.20163,23.119232,53.119965,5.897 1611,-5.749111,-17.179287,17.479332,41.10649,5.877 1611,622.6777,-33.73772,26.620117,75.38646,5.869 1611,627.0533,-19.284307,17.322266,47.39331,5.866 1611,346.82227,195.4536,19.784332,50.979156,5.831 1611,-6.529686,489.238,19.176027,42.899506,5.728 1611,-11.488813,-31.77579,29.97876,71.44242,5.64 1611,106.23956,211.64182,20.830307,38.250443,5.458 1611,613.12244,455.11353,39.46228,107.188965,5.338 1611,490.25677,-182.10127,234.7055,427.28693,5.161 1611,-73.27692,265.4363,201.25363,462.19003,5.062 1611,-16.943222,-62.909035,55.293102,146.84523,5.053 1611,483.1938,198.53032,36.211243,79.92305,5.009 1611,602.7091,-57.48948,53.312134,134.32323,4.977 1611,586.34406,-99.561226,74.18567,232.52383,4.944 1611,438.5197,196.37013,29.010162,71.08232,4.824 1611,-21.947151,401.4696,79.68389,176.00458,4.798 1611,536.42456,310.5278,143.20099,342.51138,4.798 1611,582.98175,411.77216,71.76654,176.59125,4.796 1611,494.37024,211.91687,22.600647,55.119476,4.792 1611,339.77533,195.42801,18.764648,43.926773,4.741 1611,593.99524,-45.09106,44.939453,95.29898,4.593 1611,561.63763,175.2284,42.8208,83.18317,4.547 1612,517.7189,200.39119,27.31128,61.805344,84.72 1612,362.26904,208.41876,28.684906,65.24155,57.445 1612,26.946516,203.16351,31.594294,68.43942,6.685 1612,-6.0255885,-18.496716,17.900623,42.89591,6.35 1612,369.9638,187.72466,32.17981,72.21452,6.347 1612,-8.568268,465.4014,37.40143,91.73184,6.101 1612,-11.435446,-31.940899,29.615023,71.090836,6.097 1612,352.05426,187.20157,46.52301,103.32248,5.884 1612,-6.492891,490.49496,19.203407,42.083405,5.873 1612,508.57184,203.39804,22.410461,49.542923,5.783 1612,215.18904,228.14545,25.964447,39.66855,5.669 1612,613.335,453.4008,39.269592,107.75864,5.596 1612,91.95856,202.82892,32.173737,70.00818,5.53 1612,203.35213,222.415,31.893845,54.86479,5.408 1612,627.43176,-17.113415,16.783936,45.38745,5.375 1612,13.634348,185.79306,54.00782,121.080536,5.331 1612,490.90802,-181.85255,234.20111,428.34433,5.214 1612,626.1298,487.22086,21.814514,46.667816,5.203 1612,610.7552,-48.25798,41.859253,99.8959,5.137 1612,586.2909,-99.63246,74.091736,232.34659,5.104 1612,-17.24306,-62.491837,55.797874,147.34395,5.027 1612,-72.57718,266.4574,200.09201,461.5221,4.944 1612,490.56543,204.09276,20.951935,47.212845,4.914 1612,536.443,309.94415,143.62,342.82886,4.893 1612,355.125,204.53287,23.536987,50.725067,4.883 1612,494.597,202.44073,27.230774,62.33255,4.848 1612,-21.448936,403.61697,79.11699,174.29977,4.829 1612,583.0762,410.8798,71.694824,177.353,4.78 1612,532.0072,206.6636,31.730103,73.0452,4.701 1612,25.083424,210.09033,21.833546,48.635773,4.561 1612,493.67712,227.33347,237.52008,514.59546,4.537 1612,386.31024,206.32768,40.7265,90.81633,4.522 1612,-37.189323,-126.59974,117.1551,275.9302,4.34 1612,364.72607,227.55444,30.0802,70.66559,4.266 1612,547.68176,202.55835,31.224548,72.730225,4.261 1612,336.56796,185.43219,24.88269,61.677307,4.258 1612,224.80222,219.75711,34.397705,61.792267,4.25 1612,95.76119,205.75949,22.457306,40.35675,4.205 1612,6.1341915,202.73825,30.442583,72.07739,4.178 1612,104.35385,209.53532,22.206505,43.480087,4.162 1612,-70.32349,-188.57349,211.28929,455.2403,4.15 1612,39.892616,214.9253,22.572853,43.29126,4.121 1612,490.76593,-6.473159,19.453064,38.108746,4.098 1612,210.53185,203.43835,39.453888,71.42355,4.075 1612,443.10535,133.90793,29.251953,75.10971,3.997 1613,551.3787,207.10292,30.96991,68.48015,90.293 1613,375.34857,210.96617,36.239197,77.917984,84.584 1613,1.0738277,197.2243,21.678646,55.29883,23.714 1613,47.350533,195.03052,30.91452,60.475235,16.544 1613,3.7712038,205.29836,30.327463,68.50227,9.415 1613,97.78274,236.82596,33.566658,63.276855,6.226 1613,494.3869,200.01352,29.4599,73.67001,6.191 1613,-5.94899,-18.164652,17.744436,42.213467,6.15 1613,518.79376,197.67119,34.583496,77.90608,5.873 1613,-11.630529,-31.886063,29.768015,71.55536,5.865 1613,-6.679165,489.0756,19.567421,43.5419,5.702 1613,-12.850451,477.03757,31.523014,62.79367,5.628 1613,-7.1600113,203.59267,27.118637,70.64024,5.627 1613,610.31586,-46.96491,42.38629,97.89372,5.61 1613,121.47788,238.44662,33.444893,64.4715,5.502 1613,627.17944,-17.255142,16.960632,45.257496,5.461 1613,341.04764,208.44821,38.872223,75.94531,5.457 1613,353.9412,190.49194,19.797089,39.163406,5.318 1613,491.09497,-182.49478,234.06177,429.42862,5.26 1613,366.42023,203.18509,31.098145,71.95218,5.252 1613,-73.04027,265.36255,201.23013,462.92535,5.138 1613,586.3804,-98.97215,73.910034,231.76703,5.095 1613,486.5119,192.22742,28.133545,66.427246,5.051 1613,-17.293858,-64.440956,55.50204,148.1337,5.05 1613,613.2923,454.09512,39.119812,108.48837,5.036 1613,533.4862,204.60611,32.291443,71.12131,5.007 1613,581.26044,204.60767,36.81299,100.52081,4.965 1613,393.82117,194.95992,33.812653,75.143814,4.959 1613,626.3397,487.57217,21.51056,46.06729,4.834 1613,583.2739,410.18674,71.54291,177.84665,4.821 1613,536.39685,310.19037,143.58179,342.93365,4.795 1613,-21.749638,401.6343,79.25363,175.72092,4.783 1614,420.6458,209.90404,40.028046,100.36897,98.042 1614,617.48114,206.25061,22.180237,76.850525,72.649 1614,29.139648,211.1126,25.76091,53.35295,17.784 1614,603.6323,196.94653,33.32898,103.72632,8.538 1614,388.83804,207.32834,38.272736,83.39389,7.681 1614,622.1632,-32.88639,27.730225,74.69137,6.538 1614,612.552,210.67743,33.258423,111.20715,6.446 1614,-13.342245,476.99033,32.508446,63.363434,6.355 1614,-11.391371,-31.957487,29.764992,70.5391,6.134 1614,517.25885,187.42422,28.966187,72.104034,6.124 1614,-6.6351852,488.7049,19.345009,44.23175,6.057 1614,-5.7499733,-17.305197,17.567135,41.161083,5.999 1614,489.67267,189.91516,31.733032,74.94562,5.981 1614,14.463706,207.78094,30.13131,70.24896,5.673 1614,612.7837,170.83008,33.680847,105.43335,5.626 1614,602.84894,-57.76017,53.825317,133.57097,5.532 1614,593.9881,-46.038303,44.68445,95.78739,5.416 1614,626.92773,-19.940563,18.186157,48.365314,5.38 1614,-1.7921722,315.02734,34.394676,80.83292,5.357 1614,613.3568,453.73712,39.49048,108.51965,5.27 1614,533.6944,190.95428,27.40448,72.09964,5.25 1614,-40.396156,362.04694,111.78957,276.1773,5.231 1614,-73.66433,264.73352,202.06778,462.9361,5.122 1614,536.28455,308.29367,144.12634,344.4479,5.077 1614,208.58421,199.85852,20.10559,39.900085,5.068 1614,491.07703,-183.34755,233.60956,427.70175,5.01 1614,156.88866,196.83275,30.685425,59.85051,4.981 1614,624.3493,208.50856,19.337463,55.957565,4.98 1614,-17.249388,-62.60663,55.76796,145.53555,4.976 1614,586.4411,-99.4371,74.17865,231.94032,4.936 1614,583.0129,411.34302,71.831726,177.01196,4.851 1614,352.83096,243.6469,21.993927,31.851608,4.825 1614,613.08093,-22.32616,29.53064,75.67774,4.76 1614,542.2599,199.38358,27.903198,67.92197,4.75 1614,621.98145,477.30255,28.920715,66.49237,4.731 1614,217.15295,205.85509,21.361359,47.520813,4.655 1614,204.11775,198.78448,30.695694,68.53467,4.637 1614,448.44763,215.64914,41.80478,102.46454,4.632 1614,493.9142,227.90668,237.91672,514.1604,4.613 1614,1.2223375,194.23149,27.316948,74.51228,4.542 1614,-36.791073,-127.75814,116.66829,277.6721,4.54 1614,-70.80298,-190.08243,211.21193,457.05612,4.506 1614,-17.897272,434.391,55.408478,141.37073,4.501 1614,369.9118,190.17381,21.775574,38.71962,4.485 1614,393.4204,197.80157,20.046051,42.439423,4.449 1614,351.5538,195.98524,24.323273,43.358612,4.404 1615,498.0469,217.91617,65.28311,157.376,94.104 1615,209.14813,206.09534,21.927475,41.79323,10.986 1615,362.42834,204.1151,21.317657,40.3163,6.284 1615,-6.791923,488.40674,19.891947,44.55548,6.105 1615,-13.102949,477.49292,32.38259,62.48761,5.903 1615,610.17834,-47.37741,42.19226,98.787415,5.89 1615,626.78516,-19.589676,17.751282,50.71025,5.599 1615,-12.507291,-39.987137,41.371826,101.11795,5.581 1615,626.371,488.81683,21.525635,44.43579,5.393 1615,498.9964,175.82402,30.906494,75.15907,5.377 1615,583.06464,412.20947,72.53656,176.1908,5.319 1615,-6.1764984,-18.558613,18.035398,43.656616,5.304 1615,536.1945,309.37408,144.76776,343.76074,5.269 1615,613.3318,453.9395,39.512207,107.67163,5.018 1615,-72.98969,265.74774,201.06613,461.64294,5.002 1615,585.75977,-100.66464,74.71057,235.72397,4.935 1615,217.22577,211.94717,20.944519,43.019928,4.889 1615,494.27277,228.85355,236.56952,512.97266,4.822 1615,-20.069666,-86.078156,71.57513,195.86206,4.811 1615,490.8629,-182.34695,234.05804,426.8245,4.809 1615,411.2392,201.89018,18.79779,36.12468,4.806 1615,-22.06007,401.73938,79.530655,175.67578,4.777 1615,-36.34322,-127.19095,116.62726,276.54645,4.655 1615,191.95161,198.67531,21.333237,40.702408,4.583 1615,430.841,272.80392,24.483215,43.54361,4.561 1615,-70.8013,-189.64844,211.5988,456.37958,4.506 1615,536.52484,202.5273,60.34259,135.34746,4.462 1615,580.23364,186.92274,39.627136,101.49254,4.422 1615,618.5255,491.11765,20.72107,41.598175,4.305 1615,492.23587,179.44664,59.30655,121.41026,4.276 1615,416.9318,205.61333,21.392975,45.21837,4.245 1615,520.1724,188.24445,59.09851,124.808105,4.166 1615,427.16183,-0.086172104,19.022003,35.81611,4.077 1615,291.46313,196.46297,41.192444,85.78462,4.008 1615,357.2156,197.13162,39.401245,87.26108,3.988 1615,508.80725,271.99722,40.963196,95.210144,3.983 1615,476.38965,-25.241722,54.582947,131.42902,3.966 1615,477.49905,-11.5982895,30.073547,65.406006,3.962 1615,211.15567,207.76366,32.155792,64.285355,3.927 1615,224.47708,209.26762,20.14267,36.8826,3.924 1615,428.97534,-12.053139,32.002075,63.39721,3.908 1615,276.15695,195.28952,39.582733,73.79587,3.903 1615,386.94043,202.02815,20.482208,40.262527,3.885 1615,434.326,-13.12293,17.306854,37.34618,3.839 1615,-6.101223,217.50412,18.216255,38.917084,3.818 1615,566.3126,-35.29593,28.592712,71.57035,3.808 1615,618.499,-19.655926,18.673157,48.959946,3.803 1615,613.97784,115.25026,35.35254,104.22533,3.803 1615,198.992,201.71582,28.479843,56.253815,3.783 1615,599.31934,168.76181,35.451538,113.22107,3.778 1615,558.7834,166.67996,50.69818,123.607544,3.737 1615,560.13806,190.6435,64.223755,178.81628,3.726 1615,426.61066,-14.361387,16.739594,37.97792,3.709 1615,378.01978,203.37628,20.68573,39.950607,3.685 1615,587.66705,177.38663,59.55005,200.12936,3.644 1615,595.8571,-16.075272,32.076782,68.20808,3.615 1615,195.8417,210.33499,41.219025,83.46979,3.602 1615,533.67896,-35.14102,29.139587,73.51561,3.601 1615,259.25595,217.989,18.558502,28.860947,3.581 1616,84.05853,199.48656,27.820885,62.779953,11.028 1616,73.091354,201.3986,29.487549,67.165054,6.971 1616,92.777954,206.29395,31.005936,71.21323,6.644 1616,-5.937191,-17.66037,17.928608,42.73015,6.253 1616,-11.282999,-32.25584,29.821579,72.350395,5.941 1616,108.83223,211.30621,30.232529,71.007324,5.826 1616,-9.193512,463.61954,38.008965,94.65762,5.553 1616,-6.6294727,489.7741,19.216967,42.90381,5.418 1616,627.3151,-18.29315,17.221619,46.235085,5.301 1616,610.42194,-47.845093,42.10791,99.50353,5.251 1616,626.4037,488.06665,21.464966,46.008423,5.113 1616,-72.76846,266.25592,200.51274,461.33136,5.046 1616,585.8756,-99.46445,74.84924,233.79071,5.013 1616,-20.294533,-86.23279,71.84099,194.94598,4.987 1616,613.56824,454.65326,38.97516,106.523865,4.985 1616,582.96014,411.077,71.75549,177.50595,4.974 1616,513.013,194.40308,22.606506,46.414215,4.959 1616,-21.675493,402.1153,79.356995,176.07831,4.921 1616,490.17413,-179.44205,234.84143,426.11874,4.911 1616,536.4531,310.1485,143.21716,342.40326,4.773 1616,-36.52473,-127.64122,116.19084,275.55927,4.717 1616,401.0492,194.70326,21.35675,41.744125,4.555 1616,348.28223,193.02634,17.384521,30.164047,4.451 1616,-70.964096,-189.60414,211.68733,456.06177,4.446 1616,-9.642672,-19.654835,38.60534,99.34337,4.342 1616,493.12018,226.41098,238.12012,515.69507,4.331 1616,367.82422,201.24759,22.707153,41.116104,4.162 1616,424.32574,198.6638,21.70816,45.79811,4.088 1616,419.7343,213.01857,30.850555,66.3217,4.04 1616,2.808299,-16.614935,16.71342,40.013027,4.009 1616,166.64438,187.92044,28.369324,55.312927,4.0 1616,2.974484,-20.661697,48.77984,132.66302,3.984 1616,235.71611,207.5043,17.642075,30.09668,3.829 1616,101.391846,226.5898,29.95819,71.56737,3.757 1616,618.2126,490.45093,21.013062,42.894897,3.749 1616,614.1257,114.449196,34.90381,102.67193,3.734 1616,355.98264,192.782,17.371399,32.923203,3.733 1616,356.10022,193.52536,40.38327,82.92691,3.679 1616,131.91461,181.38702,27.273468,58.693893,3.676 1616,363.4409,194.04051,19.253662,34.284866,3.649 1616,85.02971,225.31723,30.97467,72.96951,3.631 1616,120.421295,217.88431,24.10846,54.568634,3.588 1616,390.87616,191.0553,28.470917,58.492294,3.577 1616,259.35168,215.06862,19.395142,32.671005,3.569 1616,104.01631,202.15916,22.514305,51.733475,3.563 1616,409.92535,198.79897,21.339539,42.431458,3.515 1616,90.67636,179.6768,54.889008,108.405136,3.508 1616,115.345856,202.24887,40.601654,78.14456,3.508 1616,556.08905,-2.1786404,29.862244,61.728004,3.407 1616,9.342606,-91.2645,73.78381,206.94632,3.378 1616,493.60095,187.6546,29.481262,60.87422,3.37 1616,537.52765,198.77884,19.831848,39.59355,3.367 1616,371.09927,196.73297,40.574432,80.90222,3.346 1616,242.67694,208.70905,18.14798,31.572006,3.342 1616,537.7621,-17.02051,18.385925,40.762135,3.309 1616,177.74849,200.78687,22.35971,43.40393,3.26 1617,339.70276,201.69223,17.840149,35.03244,10.705 1617,411.26392,209.91641,18.812134,34.834442,10.057 1617,396.71838,207.72456,16.570251,33.30864,8.011 1617,403.3709,209.04704,17.107239,34.123444,7.254 1617,347.13818,201.43051,18.476562,34.910355,6.613 1617,50.30819,177.30994,31.322762,68.421234,6.274 1617,-12.608214,476.23962,31.363071,63.780518,6.158 1617,-6.316934,488.6253,18.817772,43.939514,5.95 1617,417.05045,210.8243,19.982056,40.2278,5.938 1617,354.21643,202.4211,19.281769,36.93782,5.921 1617,-5.7586355,-17.615318,17.58477,41.351612,5.912 1617,-3.622092,194.53894,28.736809,66.09723,5.78 1617,-11.449787,-31.999485,29.660799,71.0831,5.696 1617,96.2876,181.85048,32.642334,59.665863,5.59 1617,626.9468,-19.380074,17.917847,46.96273,5.58 1617,622.20416,-33.4885,28.004822,75.03379,5.515 1617,332.95346,201.04419,16.340088,31.284698,5.509 1617,626.71027,488.68112,20.888855,44.276703,5.49 1617,355.0265,213.07285,20.128265,44.441498,5.388 1617,613.1386,454.4103,39.81598,107.60611,5.364 1617,602.2909,-55.41684,53.75464,131.78989,5.326 1617,-73.67088,265.1081,202.16045,462.57855,5.259 1617,-17.222008,-63.081,55.811707,145.07286,5.184 1617,34.694004,178.98953,39.90717,92.53265,5.072 1617,585.7991,-97.96777,74.660645,232.59587,5.044 1617,594.0056,-43.494236,44.466003,94.39228,5.026 1617,583.0663,410.70697,71.750244,177.52277,4.985 1617,-22.187397,401.58627,79.97563,176.25443,4.969 1617,490.17493,-179.93588,234.6142,426.4921,4.794 1617,536.2014,310.39044,143.7049,342.3001,4.746 1617,324.5264,197.78479,16.966461,28.25296,4.69 1617,493.1352,226.36002,238.1123,515.2754,4.561 1617,378.87375,202.57742,18.112701,33.536102,4.549 1617,146.19162,192.57816,21.009918,36.96608,4.538 1617,130.25534,192.62506,42.38141,85.249115,4.488 1617,-36.816994,-127.45534,116.83303,277.37207,4.446 1617,370.59424,202.85133,19.15738,35.741837,4.359 1617,97.330925,192.41168,43.636513,84.734924,4.317 1617,407.55145,190.9602,27.009155,56.63054,4.301 1617,43.407204,166.46448,56.09265,117.440796,4.285 1617,361.48865,202.67981,19.78479,36.05005,4.263 1617,-70.348015,-188.75273,211.24835,455.56354,4.252 1617,4.3416367,190.95377,36.88834,101.89307,4.146 1617,218.31967,217.07782,18.122726,31.553436,4.143 1617,210.16212,214.12251,19.552765,36.115677,4.142 1617,387.87918,203.96304,17.847809,32.51123,4.086 1617,618.9703,491.09103,20.055603,41.526703,4.055 1617,13.132412,162.57239,53.241688,119.451416,3.999 1617,613.68335,114.95303,35.737183,103.34601,3.959 1617,66.0745,193.17105,43.859467,84.82834,3.931 1617,-10.051122,-5.7955093,40.50646,99.24592,3.919 1617,604.4818,4.420307,30.288818,74.47266,3.907 1617,3.1012588,-15.75239,16.434042,38.347122,3.896 1617,163.10901,196.29617,41.50801,82.91742,3.876 1617,421.6447,195.43683,29.702301,59.61905,3.847 1617,-5.5673685,196.10997,19.867569,44.871613,3.837 1617,-7.7954807,208.44827,36.712486,105.14053,3.827 1617,177.39655,198.42186,21.050598,36.99945,3.813 1617,193.19853,203.83165,22.048904,40.82579,3.799 1617,181.20026,190.20554,28.051025,51.345825,3.798 1617,-13.91562,156.169,48.032993,138.42712,3.731 1617,243.72589,197.1247,40.223022,68.81616,3.703 1617,356.2918,200.5055,37.18094,80.72797,3.666 1617,228.3213,199.47902,39.573837,69.050766,3.662 1617,170.90813,202.77002,21.090225,37.336716,3.661 1617,436.44275,199.4516,28.181458,64.30707,3.625 1617,202.41553,210.76866,20.28772,39.875824,3.617 1617,316.71927,198.97487,17.523315,28.502228,3.594 1617,1.312412,223.25012,19.769197,52.419037,3.586 1617,1.8989491,-41.28059,43.073795,101.02431,3.585 1618,426.70544,207.87984,19.909271,43.547028,24.306 1618,171.0022,211.05322,24.031296,46.95822,22.171 1618,411.24506,206.23604,20.6055,45.703186,19.046 1618,13.895828,193.44017,33.116577,72.69844,10.354 1618,380.0763,200.72179,28.350647,61.75316,9.212 1618,340.5022,200.73389,16.545593,36.59442,8.835 1618,-5.736431,-18.122063,17.55023,42.188988,6.64 1618,497.8509,227.26294,22.237854,44.146942,6.575 1618,-13.20519,475.81122,32.24348,64.06671,6.355 1618,610.2543,-47.82282,42.526733,99.00504,6.171 1618,-11.370562,-31.599487,29.594488,70.72257,6.052 1618,347.59906,200.41046,17.511047,37.678192,6.001 1618,354.12708,199.28319,19.682983,41.246292,5.919 1618,500.86908,221.33641,28.62909,62.430832,5.611 1618,449.6806,224.83888,21.481873,41.19319,5.493 1618,165.0003,199.5008,36.467163,75.980835,5.344 1618,-6.453967,488.1625,19.063953,44.25125,5.314 1618,487.1222,221.35493,29.115906,64.453964,5.308 1618,-17.237541,-63.975166,55.716145,148.29163,5.285 1618,7.8662252,179.89108,54.642696,106.137665,5.237 1618,323.76904,196.65154,16.39563,29.73468,5.151 1618,120.6508,196.82431,21.790955,44.446274,5.134 1618,-73.48527,265.24338,201.65204,462.8278,5.123 1618,613.39734,453.3104,39.379456,109.11691,5.083 1618,627.00354,-19.326187,17.212158,47.973446,5.079 1618,456.46393,218.30653,21.792847,39.214188,5.068 1618,0.19069433,190.03107,28.046173,77.345245,5.051 1618,417.8338,200.66658,20.60733,42.514816,5.019 1618,536.06714,310.03467,144.06775,342.8391,4.912 1618,4.005288,213.32501,39.80053,101.256165,4.894 1618,-22.207531,401.63583,79.90178,175.97604,4.844 1618,582.87177,410.97525,71.93262,177.49557,4.841 1618,489.88998,-180.54898,234.93362,424.31912,4.764 1618,369.46274,204.07285,24.211731,49.3248,4.757 1618,358.29584,196.20137,26.966034,52.531616,4.69 1618,7.0205793,165.26187,31.453655,79.65434,4.686 1618,429.8488,209.44125,24.554443,57.79184,4.665 1618,626.6135,488.0993,21.100098,45.486694,4.66 1618,448.77948,207.93494,22.235687,41.906586,4.648 1618,586.2162,-99.7272,74.628296,234.058,4.622 1618,493.83926,226.90451,237.20474,514.7366,4.597 1618,-36.547565,-128.41614,116.46152,277.43817,4.592 1618,-5.7080975,203.1408,19.011982,48.62271,4.454 1618,331.6925,198.73077,15.705109,29.46312,4.418 1618,453.19067,223.30226,29.06482,57.089645,4.383 1618,440.03418,206.16129,22.954895,43.903793,4.279 1618,509.28375,228.12222,30.182861,62.60193,4.266 1618,-70.29036,-188.58723,211.21028,455.26544,4.259 1618,442.6674,229.80707,21.137909,39.62152,4.206 1618,591.0607,208.15642,28.212952,65.27821,4.196 1618,419.42365,208.49255,39.87259,86.46619,4.133 1618,532.66846,224.01956,30.577759,70.2944,4.128 1619,457.86566,204.1516,20.293335,48.850647,63.441 1619,474.64813,201.37804,22.554657,52.292038,39.956 1619,462.7673,198.58961,26.072693,59.003616,13.326 1619,6.6532135,197.60234,40.56257,97.13252,11.41 1619,95.72043,195.85095,23.787857,48.17221,10.772 1619,449.084,205.04129,25.47293,62.417084,7.957 1619,31.197205,199.55804,37.149994,70.6709,7.792 1619,1.5124083,193.2029,27.352077,71.73015,7.233 1619,355.1454,196.11087,16.80365,32.160812,6.783 1619,-5.673994,-17.937006,17.3701,42.13368,6.663 1619,349.1211,196.02753,16.055847,29.730225,6.015 1619,610.2265,-47.0225,42.07727,97.194954,5.861 1619,-11.311901,-32.38206,29.53083,71.36338,5.793 1619,445.9876,204.45581,19.531555,45.925583,5.788 1619,627.0008,-17.932854,17.723633,46.545788,5.714 1619,-5.717335,203.82202,19.15218,49.409805,5.652 1619,585.7624,-96.75991,74.39813,228.94177,5.631 1619,103.59948,202.30453,22.727203,47.21547,5.559 1619,20.863129,192.90395,35.13199,67.7773,5.531 1619,139.89938,189.78674,32.7222,58.428223,5.513 1619,-12.589085,478.9167,31.285675,61.413452,5.452 1619,613.1222,454.22525,39.523804,106.8497,5.418 1619,137.95119,190.20059,21.313934,36.61548,5.278 1619,-6.4656115,489.61026,19.099754,42.98001,5.205 1619,-73.27109,264.99658,201.17987,462.50256,5.184 1619,332.359,199.40927,17.19162,33.021347,5.172 1619,469.73175,190.50797,35.082123,75.450775,5.169 1619,481.99448,204.62341,30.07254,68.371765,5.16 1619,626.5825,488.0868,21.04663,46.15851,5.131 1619,490.44318,-180.46384,234.51666,426.60074,4.984 1619,212.59222,200.73834,31.37178,57.831726,4.918 1619,150.22531,195.13193,24.717697,39.946304,4.868 1619,12.417334,191.4196,29.309465,61.99086,4.859 1619,536.5121,310.3673,143.28381,342.5374,4.856 1619,271.73312,215.87651,23.842194,35.646515,4.841 1619,500.61328,209.94427,31.739075,79.59195,4.838 1619,582.7861,411.55078,71.803894,177.03052,4.831 1619,395.03754,192.88548,19.981934,37.30815,4.82 1619,-17.419165,437.479,54.80098,137.73694,4.816 1619,-17.19402,-62.89216,55.9,145.2664,4.788 1619,41.176983,214.99692,32.562824,74.8483,4.777 1619,-40.54978,367.1613,110.93499,274.71518,4.634 1619,-37.12836,-127.87379,116.644684,278.27515,4.49 1619,168.10226,194.65492,23.782593,40.196884,4.473 1619,493.76917,226.37021,237.50488,516.09094,4.457 1619,111.51115,197.69228,23.881203,50.601166,4.435 1619,-70.456474,-189.91248,211.70929,456.87524,4.418 1620,536.5018,204.86557,29.291199,67.54639,94.868 1620,561.43427,204.00668,30.34906,69.48782,91.508 1620,549.4807,207.44978,31.62384,68.76781,30.584 1620,485.1721,214.66524,23.925507,46.957687,23.312 1620,424.8015,201.07504,21.267334,35.616165,7.586 1620,564.23334,205.15619,37.64203,105.41156,7.203 1620,-5.9484797,-17.696478,17.852737,41.906963,6.335 1620,-11.484513,-32.04044,29.812714,72.29113,6.127 1620,-12.860514,476.37253,31.631712,63.743683,6.069 1620,-6.4378266,488.55692,19.119799,43.83383,6.067 1620,372.60358,204.14462,15.979034,32.32347,5.931 1620,627.2117,-16.893883,16.972656,44.64545,5.671 1620,599.26624,202.50735,35.47583,104.99823,5.613 1620,613.3329,454.18643,39.56781,107.62259,5.44 1620,610.8332,-47.90744,41.97998,100.07665,5.188 1620,145.15126,192.81227,21.704819,36.53972,5.171 1620,-73.11337,265.37918,201.17111,462.07492,5.102 1620,536.01843,309.1047,144.71454,342.58206,4.955 1620,491.44107,-182.15602,233.38852,425.50223,4.952 1620,626.45105,487.35065,21.092163,45.415894,4.937 1620,-17.10957,-62.291256,55.944813,144.20406,4.861 1620,583.0626,410.27356,71.72443,177.8695,4.854 1620,494.28012,227.63367,237.18466,514.57983,4.758 1620,-22.095676,401.26892,79.75694,176.17102,4.742 1620,420.71423,208.42418,30.22174,63.667618,4.719 1620,561.3701,226.37973,22.143005,62.59259,4.708 1620,347.5392,197.10428,19.005219,31.042603,4.705 1620,137.6635,183.5645,21.946777,40.94841,4.676 1620,-36.75978,-127.58264,116.42787,277.8239,4.613 1620,259.3308,215.83067,30.409546,59.389908,4.48 1620,580.9908,221.7461,39.40692,118.23523,4.426 1620,586.9701,-101.82795,73.9801,234.9758,4.423 1620,379.16327,203.63048,15.650391,32.488037,4.408 1620,293.3893,217.2683,31.375244,56.835037,4.402 1620,-5.972537,193.66275,18.724575,43.140533,4.388 1620,-70.18019,-189.32701,211.21623,455.30255,4.271 1620,364.51566,202.52362,16.821198,30.956985,4.254 1620,7.4208345,189.4383,27.736404,60.105118,4.219 1620,396.38947,203.95917,16.90625,39.379135,4.209 1620,547.59656,215.04996,41.964417,115.4303,4.154 1620,125.358475,174.84149,28.792892,59.050995,4.127 1620,148.2612,186.23856,30.583313,50.026398,4.105 1620,352.70325,201.90778,19.064178,32.691406,4.091 1620,152.26585,205.01053,23.041885,36.900772,4.055 1620,-9.883548,-6.913101,39.87129,101.81264,4.014 1620,520.32324,203.9873,30.113647,67.68524,3.974 1620,307.7181,215.45499,31.55664,56.102264,3.961 1621,531.4601,217.93372,32.75409,67.46121,94.352 1621,7.602346,203.99187,22.428408,51.550003,14.632 1621,105.4017,199.43259,19.625473,37.502106,9.585 1621,387.68573,208.92581,15.171051,34.716736,7.266 1621,513.9785,65.37858,33.42163,76.1115,6.852 1621,381.5266,210.6052,15.280579,32.200424,6.521 1621,-4.916009,199.10968,19.103197,49.61557,6.393 1621,-11.430186,-32.153053,29.701664,71.367,6.258 1621,121.68173,199.81064,22.318283,37.238693,6.214 1621,-6.089742,-17.968586,18.04333,42.390488,6.162 1621,-12.821896,476.7877,31.508455,63.40927,6.058 1621,442.3933,204.65186,22.033295,41.30298,5.953 1621,627.4407,-17.39161,16.726685,45.70954,5.913 1621,-6.4422555,488.5862,19.147453,43.94278,5.827 1621,259.54282,222.35931,33.215393,60.702026,5.822 1621,526.4111,62.74421,23.49121,54.32393,5.786 1621,412.17014,207.85976,16.815643,37.85678,5.727 1621,345.69077,224.10274,32.22644,61.503555,5.681 1621,128.25113,202.44011,23.529388,44.76892,5.63 1621,626.433,487.51807,21.008728,45.29187,5.549 1621,3.5247314,203.11215,36.31194,78.45459,5.39 1621,380.97507,219.26077,29.526031,60.816315,5.39 1621,-17.384117,-63.77503,56.0199,148.32841,5.277 1621,-73.51762,265.36017,201.85004,462.5511,5.159 1621,613.55524,454.1524,38.6781,108.2677,5.075 1621,-22.18689,400.95422,79.802475,176.53827,4.94 1621,583.1518,410.8595,71.59924,177.34985,4.921 1621,376.511,222.45255,23.805298,46.216858,4.919 1621,1.1766696,213.78091,22.240067,56.402435,4.888 1621,275.49677,223.9839,31.975433,60.247513,4.876 1621,536.0445,309.8094,144.51764,342.5346,4.874 1621,500.79993,69.40822,32.29651,76.80199,4.82 1621,520.80994,213.55829,32.57312,64.42917,4.783 1621,522.08545,202.39221,52.851196,96.75595,4.772 1621,491.35754,-180.36859,233.71423,425.02084,4.737 1621,623.0714,-34.00762,26.18097,75.423035,4.707 1621,293.75342,209.84015,35.463562,78.618225,4.67 1621,271.75702,227.46738,25.33435,43.25885,4.642 1621,552.70154,216.17601,35.2334,60.427444,4.634 1621,373.32703,209.97275,16.844208,33.007233,4.628 1621,602.94684,-56.953983,53.896423,139.44073,4.627 1621,-8.847738,213.96909,38.31408,91.46832,4.613 1621,445.8343,208.59714,28.29596,61.58908,4.598 1621,493.8485,226.8678,237.40198,515.2726,4.582 1621,76.41249,193.17365,27.526909,59.445175,4.533 1621,-36.806778,-128.27388,117.23662,277.7765,4.527 1621,585.97125,-100.55368,75.4892,234.28693,4.511 1621,112.231026,196.83194,21.148186,35.13257,4.481 1621,329.06177,235.63495,23.038757,41.140625,4.409 1621,395.22122,208.13815,15.103241,34.699738,4.346 1621,-70.52919,-188.44131,211.1217,455.08124,4.295 1621,393.36072,227.05278,22.766266,48.61302,4.282 1621,-8.785577,203.71393,26.42221,71.34274,4.225 1622,611.10034,226.44493,27.518799,77.97566,62.363 1622,442.87662,203.67867,21.59607,52.250076,33.591 1622,79.93134,204.34445,22.45288,42.455856,15.748 1622,103.97846,201.62283,23.050201,45.350983,14.398 1622,403.58514,206.2511,18.395813,40.351547,8.392 1622,65.21208,200.39238,21.934921,47.721817,7.003 1622,468.1194,203.78654,29.800537,68.683,6.741 1622,-6.446197,489.23102,18.920803,42.953552,6.664 1622,467.30145,206.64128,20.19931,47.966614,6.612 1622,-13.140417,477.16147,31.998863,62.935883,6.542 1622,627.0197,-17.199636,17.065857,47.597157,6.519 1622,596.99396,205.21318,43.39618,110.22978,6.243 1622,-11.506258,-32.406822,29.848883,72.34068,6.039 1622,-6.0471354,-18.293783,18.012094,42.745926,5.9 1622,110.9682,201.30252,23.874115,56.393066,5.524 1622,620.5236,215.75842,26.402405,75.65485,5.516 1622,610.9767,-46.47899,41.46527,98.890114,5.399 1622,613.50885,453.86697,39.105835,108.15457,5.326 1622,585.61945,-97.7685,74.89105,229.0571,5.317 1622,455.39304,207.03857,27.385864,60.974213,5.222 1622,-73.50002,265.4902,201.71442,462.26163,5.17 1622,626.2723,487.41855,21.555725,46.277374,4.992 1622,87.83211,205.48488,22.471375,52.324875,4.977 1622,-22.18117,401.6584,79.75256,175.8935,4.958 1622,-17.026436,-62.31653,55.972233,143.78735,4.946 1622,535.93054,310.2355,144.24414,342.45956,4.929 1622,603.06024,226.84457,47.05542,126.14978,4.881 1622,324.9572,235.1466,33.29306,56.065308,4.868 1622,583.0325,411.25687,71.6806,176.98148,4.818 1622,490.65494,-179.3592,234.53793,426.3153,4.748 1622,493.59674,226.93198,237.90045,514.7921,4.613 1622,390.5973,202.83618,35.158905,81.96359,4.556 1622,-37.04374,-127.338806,116.60836,276.4633,4.447 1622,-9.613414,-5.758644,40.00284,98.643524,4.401 1622,-70.38042,-188.96371,211.09406,455.46323,4.378 1622,596.42566,257.45813,40.815857,113.69583,4.309 1622,98.81262,205.07564,40.609543,87.557236,4.263 1622,440.32617,201.03922,33.19919,80.71469,4.25 1622,70.24418,201.06628,27.59842,62.331818,4.225 1622,357.80072,207.04301,36.470245,81.13475,4.179 1622,97.95971,207.92973,21.793724,56.146408,4.125 1623,511.26477,202.87505,26.86377,55.34639,46.488 1623,55.151093,209.70575,22.992249,43.973297,37.897 1623,33.64882,208.16454,23.090065,47.494217,36.809 1623,91.16725,209.04558,23.618408,47.010147,18.229 1623,59.492195,206.80545,28.410515,58.560608,10.167 1623,21.869411,199.84822,28.237095,67.395706,9.64 1623,72.48516,209.11441,24.173607,51.272186,9.59 1623,612.5243,5.025448,27.655823,85.041595,9.089 1623,523.9786,205.44157,25.253174,50.048035,8.893 1623,448.48236,206.56644,21.178833,52.013336,8.008 1623,-11.396232,-32.2062,29.684647,71.55207,6.038 1623,610.72375,-45.47298,41.776367,98.27402,6.024 1623,-6.031797,-17.976383,17.882706,41.88758,5.846 1623,498.50568,197.52716,28.409668,63.50598,5.793 1623,585.3979,-96.519875,74.59509,230.26907,5.732 1623,79.36446,206.68439,29.75766,55.738586,5.667 1623,436.54688,211.03087,27.369324,73.468124,5.665 1623,-6.636387,489.45325,19.29737,43.140564,5.527 1623,-9.798943,463.10638,38.47165,94.39508,5.454 1623,-16.96634,-62.561653,55.92446,144.68347,5.283 1623,-73.88511,264.78946,202.25027,463.874,5.269 1623,7.688223,197.60364,28.756212,75.96564,5.253 1623,613.3841,454.46002,39.311462,106.99646,5.157 1623,596.812,23.978424,32.750916,86.64668,5.061 1623,626.0921,486.9664,21.743896,46.19925,5.02 1623,519.73,202.0544,22.25586,40.663574,5.002 1623,627.04614,-17.829811,17.677246,46.17581,5.002 1623,583.0941,410.88577,71.701904,177.26608,5.002 1623,536.0867,309.78485,144.4682,342.0688,4.932 1623,85.557335,203.88318,37.186317,71.491394,4.885 1623,37.44169,206.37149,27.867912,67.30426,4.883 1623,3.8987923,215.36221,40.36324,103.30545,4.843 1623,491.2125,-180.16124,234.56174,425.84808,4.835 1623,-22.184479,401.06958,79.82582,175.90839,4.783 1623,21.108706,223.93085,30.215002,77.98645,4.744 1624,602.41376,207.13531,22.431702,54.01172,74.613 1624,582.8349,206.04114,22.638977,52.28961,59.662 1624,594.18634,207.71411,22.157227,49.66263,45.535 1624,82.52904,209.80328,22.732353,48.971497,38.202 1624,1.2501657,202.27757,22.032328,61.028824,26.211 1624,20.927963,192.6095,33.121754,65.331726,18.774 1624,503.076,198.98502,25.455994,70.86215,18.301 1624,609.62396,202.21556,25.237427,69.30058,10.015 1624,493.75565,206.51756,29.42807,82.91963,9.486 1624,94.92665,212.64014,24.130142,47.036713,7.992 1624,4.64161,188.34125,31.521564,69.79349,7.792 1624,568.00696,201.52228,30.914795,62.210144,7.072 1624,72.513306,202.8663,36.29117,74.28848,6.368 1624,-6.3344336,489.32825,18.829218,42.968628,6.16 1624,-11.16881,-32.868614,29.325298,73.32311,6.158 1624,31.109257,201.92783,34.67188,68.81613,6.131 1624,-12.422293,476.83853,30.58314,63.381317,6.123 1624,-6.754439,195.94467,36.211746,93.75784,5.96 1624,627.1684,-18.022411,17.308167,46.23307,5.862 1624,-6.0314054,-18.336077,17.890793,43.326675,5.8 1624,104.13215,209.14275,22.696404,45.536774,5.733 1624,583.2157,196.54022,36.326965,72.30548,5.631 1624,415.9689,207.68869,22.999268,41.104065,5.446 1624,-4.0284986,201.61993,19.350525,48.809067,5.378 1624,-16.783957,-62.583313,55.93992,144.01479,5.258 1624,16.328947,204.20404,25.402506,66.75592,5.241 1624,622.9041,-33.914555,26.459656,75.30461,5.182 1624,613.1729,454.44455,39.322693,107.73282,5.094 1625,559.319,208.83275,28.210571,83.97734,73.433 1625,52.506035,204.38617,31.560738,66.61615,9.869 1625,551.1221,205.00552,27.255127,73.76962,9.791 1625,428.33545,209.68896,18.200317,35.950684,7.475 1625,549.4385,205.33472,44.362244,119.849,6.816 1625,-12.872505,476.18335,31.583427,64.2511,6.666 1625,-6.523971,488.604,19.167301,44.059998,6.209 1625,-11.444269,-32.325916,29.466032,71.98426,6.098 1625,469.81763,265.36362,29.329773,68.29825,5.747 1625,627.2962,-17.400099,16.886902,45.492474,5.621 1625,38.586758,211.82805,29.967785,69.62904,5.508 1625,-6.168104,-18.062572,18.01065,42.356506,5.393 1625,-73.58339,265.41876,202.23647,462.388,5.227 1625,-17.111109,-61.81877,56.366768,143.02701,5.125 1625,536.5847,309.81317,143.11444,340.74188,5.092 1625,613.3952,454.35046,39.203796,107.63037,4.962 1625,582.9851,410.84763,72.04047,177.50009,4.932 1625,-22.091047,401.23984,79.87638,176.21085,4.925 1625,626.1939,487.56757,21.565857,45.57605,4.841 1625,599.16833,197.09837,36.621826,111.39467,4.818 1625,603.19586,-57.009094,53.489685,138.62057,4.744 1625,538.76044,210.45047,35.566223,98.859314,4.701 1625,43.684814,183.1101,50.571228,107.761536,4.7 1625,-36.535255,-125.775215,116.81166,273.28937,4.684 1625,545.5606,206.99277,22.564148,56.14792,4.553 1625,490.657,-179.56145,234.55075,422.61673,4.522 1625,623.0655,-34.055374,26.258545,75.65349,4.514 1625,493.9853,226.40982,237.62408,514.6144,4.482 1625,-9.280725,-5.579155,39.572567,97.33577,4.461 1625,433.17227,216.64407,18.731842,36.576324,4.439 1625,-70.809364,-189.30894,211.18628,456.40985,4.289 1625,586.4458,-103.14902,75.575745,236.97253,4.278 1625,581.09076,226.14871,38.91455,112.55063,4.24 1625,63.08574,222.1677,24.180496,59.751556,4.201 1625,110.515366,196.6531,29.112946,65.489624,4.199 1625,203.28981,230.37448,18.23668,38.97635,4.124 1625,516.069,228.06288,38.684814,96.7108,4.109 1625,164.59915,197.42844,28.472961,61.223022,4.087 1625,66.27326,207.86276,30.142357,61.16046,4.071 1625,617.58966,80.93041,21.286316,57.385963,4.006 1625,15.328247,190.96971,53.0745,122.42775,3.954 1625,568.637,207.33224,29.627808,72.93875,3.857 1625,595.0668,-47.63603,44.214355,102.69059,3.812 1625,483.23288,265.12582,30.684357,68.0314,3.809 1625,493.62903,230.7864,52.561707,120.06305,3.752 1626,613.08374,178.46391,24.971985,79.15663,24.363 1626,13.712287,167.00873,27.496513,69.203766,15.927 1626,1.317209,168.08282,26.96322,79.226456,12.249 1626,602.72125,173.12259,31.930176,119.79379,8.356 1626,436.1992,172.54231,19.50241,41.170944,7.318 1626,-6.3300486,488.6244,18.726845,43.41327,6.532 1626,-12.754017,475.99823,31.397314,64.28369,6.377 1626,627.0676,-16.051477,16.861816,44.691654,6.372 1626,624.5429,183.46234,20.373535,54.607315,6.007 1626,-5.672872,-17.34252,18.198898,43.999332,5.972 1626,-9.557331,151.57639,29.028202,70.161896,5.82 1626,-11.979797,-41.07737,41.45633,100.152626,5.766 1626,-12.751002,167.68256,47.588764,138.1731,5.669 1626,1.6401505,204.05522,21.305805,59.623886,5.659 1626,0.5992317,159.40971,43.68272,110.77638,5.596 1626,610.98474,-45.4939,41.42932,98.1954,5.454 1626,-5.1617627,171.0453,18.891546,46.083954,5.364 1626,525.8039,259.2107,27.615173,67.53836,5.345 1626,613.33,453.96042,39.112366,107.74692,5.29 1626,-73.21498,266.55023,201.14066,460.0418,5.128 1626,491.4174,236.35304,31.606598,77.876755,5.064 1626,-36.98275,-129.05927,117.13236,281.27097,5.049 1626,-21.89259,402.0511,79.56253,175.7544,4.929 1626,586.2174,181.77133,35.134827,105.29642,4.921 1626,583.13684,410.56348,71.65552,177.68079,4.897 1626,536.8292,310.4204,142.54944,341.02014,4.877 1626,-4.106141,191.55566,19.316486,58.1763,4.875 1626,-19.662077,-87.97314,71.52954,197.44972,4.857 1626,613.88135,3.4228363,26.241821,68.79367,4.693 1626,489.5677,-177.88998,234.89093,422.09445,4.601 1626,585.7354,-99.78387,75.22534,234.09995,4.592 1626,626.083,486.93448,21.76947,46.62027,4.589 1626,23.423967,182.70201,22.713148,55.635727,4.495 1626,-71.07537,-190.53406,212.55942,457.3308,4.473 1626,493.53918,228.66846,237.72168,513.9892,4.445 1626,10.540719,142.0002,52.700516,114.88228,4.259 1626,34.495056,177.5028,40.56151,85.19052,4.083 1626,12.624359,-29.606949,55.907097,128.75519,4.074 1626,-4.8952317,139.29381,17.272293,44.46649,4.048 1626,442.81598,184.64464,16.162415,38.80478,3.897 1627,4.2461157,199.26459,38.054565,92.79678,15.535 1627,456.39203,222.12611,19.542053,37.912308,12.273 1627,-5.7494903,-17.263376,17.85978,42.41771,8.394 1627,-6.1312838,488.59122,18.472221,42.88266,7.306 1627,-11.387541,-32.22048,29.65328,72.40995,7.11 1627,-12.5473385,476.0565,31.216223,64.53549,6.816 1627,602.7091,-55.12194,52.9494,140.74478,5.586 1627,627.2201,-17.905693,17.233643,46.3755,5.532 1627,614.40845,51.260975,25.160828,87.12761,5.522 1627,18.201473,210.8574,30.713276,71.870895,5.41 1627,-20.427067,-85.0143,72.226166,193.93816,5.307 1627,612.9355,454.43024,40.02295,107.8288,5.295 1627,439.1884,73.03009,33.428345,82.14371,5.233 1627,425.08276,217.69907,20.195404,42.068726,5.118 1627,-73.65991,265.13385,201.91125,462.16998,5.109 1627,-36.183487,-127.01294,116.03917,273.66248,5.077 1627,536.33453,310.29422,143.44275,341.01083,5.011 1627,603.73444,40.55969,29.141052,73.778946,4.977 1627,582.8793,410.97214,72.1604,178.08096,4.975 1627,106.239075,200.7209,29.58023,63.4337,4.921 1627,-21.91367,401.99142,79.48471,175.44626,4.876 1627,2.8436697,-15.343608,16.744354,39.908916,4.84 1627,147.38263,202.61852,32.513275,58.741318,4.72 1627,561.5965,-131.09451,113.89581,281.56683,4.71 1627,493.8245,226.18265,237.33237,517.2086,4.656 1627,136.18506,201.05353,30.142838,64.895355,4.649 1627,626.4963,487.99008,21.26117,45.507416,4.597 1627,-9.523691,-19.059483,39.033287,98.17035,4.516 1627,-71.09598,-190.50513,211.58603,457.16403,4.516 1627,622.8214,-34.03051,26.470093,76.73475,4.474 1627,2.107172,214.08049,23.280619,60.089462,4.422 1627,-12.622402,203.48132,49.086746,136.30469,4.389 1627,490.58862,-178.96262,234.69116,424.8367,4.363 1627,464.86133,228.09834,18.971008,36.440353,4.357 1627,157.81023,221.89923,26.237137,42.58606,4.227 1627,34.394516,220.42288,42.073425,92.12076,4.045 1627,2.0888245,34.524548,32.659336,78.229294,4.019 1627,-9.849015,201.51195,30.533955,71.00014,3.997 1627,29.510647,211.50905,23.316689,54.692154,3.981 1627,0.96056104,180.85648,27.886494,81.07602,3.972 1627,617.9209,270.47165,21.610596,55.177185,3.886 1627,2.376092,490.08755,19.576786,40.84134,3.886 1627,1.5338445,-39.00431,43.71251,98.24635,3.807 1627,565.98914,307.99448,37.894592,74.67908,3.802 1627,-6.1165004,-1.1710033,18.99163,46.662407,3.779 1627,8.809473,-88.41514,74.62176,204.88211,3.778 1627,52.478657,41.616215,31.389439,75.32803,3.729 1627,-5.5141535,470.73703,16.73579,40.01602,3.675 1627,18.542944,6.0353394,33.33008,78.251045,3.672 1627,-10.266719,171.47113,30.198544,75.53847,3.643 1627,122.07768,225.73262,20.966537,48.46498,3.627 1627,44.65571,-12.32605,32.410973,67.557,3.61 1627,125.950485,219.96678,30.026062,67.93782,3.603 1627,-5.096093,220.41475,19.241817,49.05162,3.601 1627,130.07303,-1.3622437,33.226974,63.157936,3.559 1628,459.13995,216.88614,19.636658,41.277008,50.224 1628,452.28745,212.81415,19.935211,42.9657,8.924 1628,-5.9533525,-16.7947,17.690529,41.961124,6.332 1628,-6.001319,489.51053,18.317024,41.825348,6.173 1628,-11.319996,-31.782652,29.567299,72.962135,6.158 1628,627.1687,-17.477182,17.270874,45.543793,5.982 1628,-12.147044,478.0458,30.29398,62.779205,5.479 1628,622.7837,-33.777843,26.583984,75.753716,5.345 1628,-16.828856,-63.092186,56.212334,143.95238,5.148 1628,582.9924,411.67807,71.732605,176.57083,5.057 1628,-73.11127,265.91516,201.13081,461.5061,5.039 1628,612.9906,455.30243,39.30652,106.17944,4.984 1628,443.54706,217.23737,18.8443,43.930817,4.951 1628,536.3513,310.40106,143.83801,342.15594,4.948 1628,-36.38944,-127.08636,116.6488,273.555,4.833 1628,-21.740341,402.62106,79.26615,175.31955,4.831 1628,626.43915,487.931,21.131042,46.1268,4.822 1628,586.37213,-99.07957,74.73743,231.97873,4.811 1628,602.97235,-57.197136,53.751648,133.52377,4.725 1628,594.1942,-45.95329,44.97467,95.932365,4.674 1628,493.90356,226.00433,237.22974,515.55273,4.594 1628,490.79617,-178.3338,234.77988,423.2809,4.551 1628,434.68585,218.67654,18.85971,43.856995,4.431 1628,-70.90096,-189.03596,211.5568,455.74384,4.258 1628,463.79712,212.06055,20.827454,37.48561,4.158 1628,-9.541157,-5.95158,40.209614,98.63188,4.065 1628,452.45193,205.47885,37.04236,68.07541,3.997 1628,88.28255,224.92628,23.143806,41.31752,3.987 1628,427.38095,213.83041,19.367706,45.28131,3.984 1628,1.8664575,-39.04904,42.99731,98.89544,3.895 1628,213.27594,197.29182,29.85942,61.904404,3.871 1628,470.10913,217.45633,21.891022,44.035797,3.789 1628,429.02356,55.501118,35.611694,81.93559,3.708 1628,2.7631164,-15.189396,16.479706,39.179962,3.693 1628,619.37744,-17.39315,16.807495,42.595943,3.666 1628,-8.276613,199.2196,37.562275,101.081604,3.634 1628,417.3432,202.60036,25.91858,55.733932,3.575 1628,2.4537282,491.0235,19.23848,40.208862,3.538 1628,50.355663,196.3467,43.094112,88.24483,3.519 1628,467.27698,232.38632,15.733093,34.881714,3.477 1628,-5.4898033,185.98828,17.822657,43.092728,3.472 1628,236.62552,197.92847,29.208893,56.60289,3.469 1628,76.49555,212.56406,33.21205,60.568573,3.441 1628,392.6109,189.77266,25.788483,58.889954,3.409 1628,372.89246,215.27711,32.1687,65.96416,3.408 1628,418.7049,44.996403,35.32556,65.884,3.403 1628,438.5492,195.37874,38.642822,71.04524,3.36 1628,614.97614,-19.778719,27.1698,70.204315,3.346 1628,460.80878,231.44415,15.208984,34.19983,3.327 1628,10.882923,-32.075294,58.12306,126.530525,3.323 1628,83.256226,210.33704,41.200912,83.69916,3.262 1628,388.42615,212.9263,31.890625,67.29642,3.196 1628,618.49347,490.53787,20.62091,42.967255,3.186 1628,-4.7223177,214.53186,17.273098,43.526672,3.174 1628,452.48166,231.83273,15.891937,34.790833,3.157 1628,474.93198,235.89975,15.773285,32.900177,3.144 1628,3.9233434,190.52115,38.470478,103.83737,3.131 1628,612.4496,232.68878,38.01056,112.986206,3.128 1628,112.31515,-40.697056,47.19123,92.599846,3.086 1628,572.48804,248.69392,16.904419,31.2191,3.08 1628,-8.859348,260.12143,37.710953,105.33255,3.078 1628,300.3395,-2.3234262,16.786987,33.622307,3.078 1628,407.13406,196.14511,25.639801,59.651123,3.063 1628,-5.3706036,1.7891483,18.232286,43.32821,3.052 1628,546.9281,414.52478,83.20093,165.96497,3.051 1628,197.11119,203.99133,30.419449,62.993256,3.017 1628,204.09735,-2.1617317,16.712646,34.121616,3.003 1628,-10.156086,101.00577,39.40142,107.17267,2.978 1629,480.95462,218.54478,22.749023,50.03914,65.407 1629,474.08597,213.83385,22.446503,47.908463,8.394 1629,-11.106147,-31.885685,30.452248,73.57054,6.464 1629,467.97604,221.13087,20.23407,50.041397,6.299 1629,-12.638992,475.98013,30.944366,63.9075,5.717 1629,-6.084572,488.77258,18.426088,42.796448,5.66 1629,-6.0520353,-16.489305,18.58496,42.651836,5.595 1629,627.0925,-17.674852,17.11206,45.412968,5.453 1629,454.75708,217.01439,26.830505,60.693222,5.443 1629,-20.410294,-84.790054,71.94658,194.37671,5.329 1629,-73.21824,265.76764,201.59805,461.9461,5.13 1629,613.082,454.76395,39.4552,107.64505,5.126 1629,610.96765,-47.764153,42.16516,99.58537,5.088 1629,583.026,411.55658,71.74951,176.64996,5.085 1629,626.2947,487.92328,21.360596,45.526245,5.039 1629,205.10039,199.49313,31.468994,68.76721,4.999 1629,536.2135,310.54187,144.03827,341.05078,4.994 1629,-22.0402,401.6418,79.77446,175.97482,4.889 1629,494.13376,227.21594,237.03665,514.4237,4.756 1629,586.1602,-100.274086,75.112915,233.51257,4.74 1629,491.07468,-178.0167,234.2579,422.25916,4.63 1629,487.8559,212.55164,29.571228,57.785126,4.598 1629,-36.02507,-125.75061,116.83867,270.83072,4.568 1629,443.3813,228.71855,20.269073,43.637466,4.374 1629,-8.93709,-18.380835,39.20426,98.79136,4.328 1629,217.83858,202.53407,20.497879,39.28203,4.285 1629,-70.88821,-189.23457,211.17181,455.75604,4.202 1629,488.9084,234.14359,19.039368,43.106964,4.099 1629,470.08978,195.96107,38.190735,75.05495,3.922 1629,618.5459,489.92706,20.718933,42.9563,3.687 1629,404.28027,187.42093,29.249725,63.943604,3.672 1629,450.87805,221.57861,20.738312,46.22754,3.661 1629,1.6312361,-38.37327,43.348682,100.89845,3.642 1629,-7.8174043,20.038239,37.475037,104.8401,3.64 1629,612.71796,230.58759,37.62439,113.189575,3.576 1629,437.42218,217.24121,38.466034,71.16229,3.575 1629,418.45288,27.610203,34.712524,70.98433,3.537 1629,619.2011,-17.417776,17.131287,42.61336,3.526 1629,333.53226,211.165,29.201233,59.74092,3.524 1629,396.5001,214.22882,30.51059,64.51489,3.489 1629,217.9822,202.40935,31.441055,64.030106,3.457 1629,355.17215,224.04094,33.716217,61.20076,3.435 1629,-5.551815,161.04474,17.288528,40.367783,3.378 1629,1.6407788,-14.742594,18.073818,40.874527,3.376 1629,330.1761,211.492,20.78241,41.73448,3.278 1629,156.32704,-2.7065697,16.800186,33.85277,3.272 1629,340.79462,221.85213,31.43686,59.04506,3.242 1629,-5.441606,248.53488,17.3529,37.920654,3.218 1629,56.87211,41.276447,34.555687,68.12645,3.197 1629,596.9081,212.19333,39.497253,107.55737,3.168 1629,492.9743,-3.421545,16.33078,33.528385,3.161 1630,571.3142,213.43427,34.216064,71.90588,74.862 1630,560.67725,218.61928,29.866455,65.83537,23.043 1630,457.63828,171.9141,32.626343,81.68335,6.943 1630,-6.3014174,488.96002,18.90673,43.04419,6.548 1630,-5.9771433,-17.426718,17.729023,42.657295,6.003 1630,-11.2723875,-32.27649,29.47065,73.00241,5.974 1630,-12.78838,476.77106,31.695694,63.318542,5.881 1630,-20.46577,-84.77685,72.33602,193.82817,5.546 1630,627.4157,-17.531595,16.822815,45.961796,5.496 1630,534.6737,214.44177,41.537292,84.16974,5.217 1630,626.5761,488.6085,21.075989,44.800873,5.217 1630,611.0961,-48.014065,41.312073,101.130035,5.174 1630,545.4967,206.43105,50.75537,111.15526,5.167 1630,583.3411,211.55296,34.083252,65.65419,5.111 1630,536.2817,310.25952,143.987,341.94128,5.078 1630,582.7589,411.97974,72.000244,176.29858,5.054 1630,612.8867,455.0016,39.805298,107.192505,5.049 1630,613.4941,219.24272,36.284424,103.99666,5.036 1630,585.4066,-96.94519,74.60388,228.70282,5.016 1630,595.3521,229.75851,40.5177,101.395996,5.009 1630,-72.683205,266.43988,200.46237,459.9062,4.978 1630,555.9583,189.10513,58.743286,103.54953,4.949 1630,-21.909164,401.9178,79.40409,175.60608,4.859 1630,-35.959213,-125.587524,116.94967,270.52728,4.848 1630,570.4509,211.59651,52.454407,123.20091,4.717 1630,490.25684,-179.2847,233.61285,424.7,4.692 1630,-9.565072,-17.465508,39.419426,96.37247,4.624 1630,493.79105,227.67755,237.86533,514.4159,4.606 1630,580.6316,232.23541,27.859863,70.730774,4.457 1630,217.85959,204.22559,18.672073,29.757874,4.417 1630,-71.01514,-189.35214,211.46971,456.32227,4.188 1630,566.2266,235.99068,27.636597,66.80559,4.022 1630,574.38794,-14.301567,52.86499,123.84581,3.988 1630,339.864,211.98254,19.281738,35.30754,3.931 1630,1.5243459,-37.231846,43.63986,97.53859,3.906 1630,4.92124,9.124924,31.064905,69.91336,3.858 1630,509.49542,-17.130524,54.63214,120.6783,3.831 1630,233.70456,210.4477,20.218933,32.32141,3.673 1630,446.03467,163.08005,50.386597,120.59573,3.661 1630,-5.59873,1.7144794,18.090374,43.69114,3.658 1630,540.47656,-15.6912155,54.91736,120.983154,3.63 1630,2.8316116,-15.641453,16.661112,39.71879,3.615 1630,618.77704,490.8863,20.448547,41.40448,3.592 1630,522.92413,-14.330055,16.82782,38.46076,3.571 1630,517.18713,-12.955971,31.35083,65.442184,3.561 1630,611.41943,-3.4788322,39.165894,111.528564,3.533 1630,11.115384,-22.32618,59.055843,120.073006,3.526 1631,382.9329,217.0504,24.734344,50.223923,55.963 1631,399.726,219.89989,23.367126,53.497696,37.293 1631,205.76999,264.22714,29.337036,51.87964,10.593 1631,3.0967867,283.51755,33.22646,86.38751,6.378 1631,391.3758,211.85402,33.601074,83.754105,6.376 1631,405.37204,213.20287,34.55902,87.16762,6.333 1631,-6.3105307,489.6219,18.82217,41.442566,6.206 1631,-12.021563,479.1286,30.25595,62.19153,6.11 1631,250.16243,267.3107,21.687119,38.001007,6.023 1631,627.2601,-17.838137,17.147766,45.506084,5.976 1631,622.9568,-34.85622,26.43689,73.869965,5.897 1631,613.5208,453.96436,38.98529,107.90192,5.891 1631,-11.252312,-33.13117,29.451008,73.21698,5.546 1631,272.35236,210.49069,22.563477,45.563354,5.522 1631,377.184,209.9725,33.06241,85.721344,5.517 1631,-6.0688686,-18.74404,18.070206,43.700737,5.5 1631,392.34058,214.38243,23.449799,48.772873,5.291 1631,-73.24901,266.38324,201.74107,462.367,5.216 1631,603.5305,-56.060272,53.19287,133.90617,5.17 1631,62.170948,264.33875,31.664211,70.26016,5.081 1631,219.26796,266.89725,29.180954,49.16205,4.917 1631,-41.14681,363.1618,111.68982,279.29315,4.907 1631,161.84952,226.21552,22.716003,47.325592,4.874 1631,626.4222,488.15088,21.26123,45.118896,4.849 1631,263.12396,205.23549,25.96106,59.85942,4.78 1631,-4.035672,141.12932,15.617336,38.321976,4.778 1631,583.1975,409.9486,71.55078,178.05841,4.74 1631,536.55786,309.87598,142.99988,342.13745,4.725 1631,-17.497496,-62.150986,56.589073,143.08289,4.715 1631,229.41943,232.50458,38.28363,77.996704,4.622 1631,586.10785,-100.90113,75.40021,235.16718,4.61 1631,258.0268,266.3466,21.124664,31.736023,4.53 1631,-5.8462296,175.78864,18.429752,44.20874,4.53 1631,-17.725983,434.439,55.29975,141.73929,4.496 1631,490.3634,-180.03043,235.33923,423.64758,4.483 1631,242.66998,263.10492,21.130524,33.71991,4.451 1631,197.4708,231.79646,37.95404,77.43837,4.429 1631,-70.86835,-188.44775,211.5278,454.21515,4.417 1631,-4.3242173,155.72702,16.501305,40.83583,4.415 1631,493.90906,228.36584,237.06128,513.8067,4.333 1631,-6.0155077,216.89935,17.973068,41.76892,4.33 1631,321.05344,208.61903,20.318634,30.593521,4.251 1631,-37.35273,-127.41389,117.35396,282.03104,4.245 1631,594.68994,-45.930267,43.78186,98.87678,4.119 1631,367.4231,219.40988,30.296387,63.892242,4.103 1631,-13.92664,292.59784,49.389076,144.54883,4.078 1631,281.44577,208.16841,20.021088,36.026123,3.982 1631,619.2875,-19.241875,17.17987,43.466156,3.979 1631,225.59181,257.89523,20.306564,33.3703,3.953 1631,245.25613,230.9169,37.861664,81.22815,3.912 1631,383.15854,215.88596,51.39029,135.46991,3.9 1631,421.65417,234.7286,39.24701,103.3298,3.851 1631,164.86237,216.77821,38.81308,78.15254,3.816 1631,212.31606,231.2814,38.0699,77.9256,3.79 1631,-14.10161,151.8339,47.36258,143.8635,3.789 1631,1.9432259,491.43237,19.547205,40.631775,3.789 1632,408.61346,216.44934,24.997253,52.206757,75.45 1632,426.97522,218.86307,21.147827,48.23166,62.364 1632,272.79797,261.01697,22.399658,39.003357,11.816 1632,411.7425,219.70592,30.594482,70.50185,6.49 1632,613.4146,452.69855,39.244995,108.78131,6.45 1632,231.88968,259.8801,24.203735,41.728363,6.333 1632,421.81976,210.97119,33.167084,73.65863,6.264 1632,290.34842,211.63866,20.1221,43.66629,6.109 1632,291.16943,215.44064,30.91388,73.373474,5.755 1632,627.1949,-18.320522,17.38977,45.76593,5.749 1632,-6.1486006,489.46265,18.807114,42.046143,5.573 1632,-12.054477,477.623,30.551643,63.58557,5.57 1632,622.7881,-34.763443,26.74524,74.42979,5.56 1632,-11.48184,-32.488308,29.904957,72.65048,5.416 1632,-6.1064296,-18.685902,18.199663,43.313087,5.267 1632,-73.08166,266.1817,201.21368,462.55072,5.196 1632,248.18642,260.3637,22.431686,39.7482,4.996 1632,603.3428,-56.204113,53.298157,134.06471,4.995 1632,626.422,487.5402,21.224243,46.10446,4.984 1632,-17.641565,-62.1308,56.956947,142.48718,4.948 1632,314.2567,176.28587,16.194366,39.56459,4.812 1632,436.27853,212.25705,35.614746,84.99759,4.798 1632,-40.85526,363.9572,111.42935,277.10712,4.796 1632,536.702,309.85333,143.26508,342.93292,4.738 1632,583.13403,409.6817,71.57147,178.43976,4.699 1632,586.1076,-100.76489,75.52203,235.03741,4.647 1632,258.47073,260.05484,20.966156,37.598602,4.509 1632,-70.95994,-188.22429,211.78616,454.37396,4.455 1632,494.10803,227.60086,236.77637,514.91223,4.431 1632,-4.929692,154.51073,17.089417,41.44771,4.424 1632,490.4168,-180.73709,235.63629,422.9626,4.368 1632,267.23193,258.17355,20.331604,32.693054,4.366 1632,-5.185012,139.20142,16.99039,41.20372,4.357 1632,-17.988035,434.37527,55.677734,141.8143,4.349 1632,282.1568,259.1882,19.753052,32.491516,4.347 1632,385.31714,223.29247,21.912537,41.799423,4.311 1632,225.80472,234.38377,19.585083,37.28755,4.307 1632,276.80515,254.12514,28.924622,51.96068,4.304 1632,594.5818,-45.774174,43.973328,98.465836,4.294 1632,261.70206,233.95427,37.067963,78.05916,4.258 1632,-37.19481,-127.42952,117.14844,280.41803,4.25 1632,420.02832,230.70541,39.600433,101.49512,4.218 1632,218.89108,235.86157,19.340698,35.00824,4.174 1632,232.9288,245.39607,20.889648,37.57225,4.152 1632,209.5302,235.6577,20.784378,35.808304,4.149 1632,336.15247,201.73067,31.93747,63.62407,4.085 1632,522.0242,182.25317,23.144714,44.501938,4.072 1632,340.79138,203.85536,23.951813,35.12285,3.984 1632,618.9584,-19.117788,17.674194,42.893368,3.943 1632,-8.8739605,240.56714,29.023514,73.42938,3.823 1632,373.38947,219.91504,30.498901,61.34842,3.78 1632,389.16885,218.83426,32.21759,64.00577,3.744 1632,-6.1289225,266.9303,38.05527,99.53055,3.726 1632,288.51312,259.92627,23.058594,42.38733,3.711 1632,245.8827,233.94281,37.361526,76.65881,3.703 1632,296.9623,206.54189,19.530304,38.54576,3.686 1632,612.87994,199.43396,36.75653,116.998474,3.677 1632,229.12523,232.97034,37.716812,76.12622,3.66 1632,314.93512,194.66924,16.553864,30.388123,3.638 1632,597.017,460.0363,39.42279,100.453766,3.611 1632,-9.579082,210.0584,28.25415,74.85057,3.601 1633,433.0696,217.82758,22.577698,58.535034,72.523 1633,414.4057,217.51471,24.859283,57.6015,70.718 1633,423.8271,217.02972,23.823029,55.64023,23.354 1633,266.47916,252.01877,19.650421,35.409363,7.448 1633,436.27133,213.34607,34.48764,84.226685,6.224 1633,-6.2081265,489.33334,18.849463,41.576813,6.174 1633,420.77426,213.1565,37.1586,96.310974,6.11 1633,-12.025809,477.96118,30.54031,63.046997,6.031 1633,627.10913,-17.860523,17.232178,45.196568,5.788 1633,613.4982,453.76862,38.858643,108.33588,5.736 1633,622.9279,-34.33601,26.443054,73.43188,5.612 1633,-11.368352,-32.51313,29.643272,72.3986,5.453 1633,405.6983,216.71896,37.801086,96.72009,5.44 1633,-6.0624657,-18.362968,17.917946,42.98145,5.421 1633,626.397,487.40366,21.119751,45.789032,5.303 1633,-72.81639,266.2727,200.83272,461.7041,5.088 1633,281.6735,217.89117,19.853882,42.228516,4.969 1633,603.41345,-56.206337,53.279297,134.21992,4.927 1633,230.78836,232.31052,35.361115,74.67673,4.903 1633,-17.302395,-62.542133,56.462307,143.79509,4.869 1633,-21.761879,402.21307,79.65582,175.25494,4.844 1633,113.09757,243.81706,22.763664,43.96086,4.818 1633,287.35162,223.79913,22.404907,45.289185,4.759 1633,583.221,410.22607,71.44293,177.79663,4.743 1633,536.60223,309.69336,143.33746,343.0426,4.739 1633,586.05725,-100.560196,75.45801,235.0181,4.687 1633,259.69302,248.88585,19.82904,33.952316,4.676 1633,274.2567,247.82333,19.786194,35.046753,4.642 1633,493.9415,227.66687,236.9064,514.6845,4.418 1633,-70.958954,-188.13889,211.72379,454.20523,4.408 1633,532.8533,-186.0756,147.34595,428.10013,4.348 1633,618.5323,488.66342,20.768677,43.095245,4.322 1633,246.74869,232.49979,34.827423,76.494995,4.321 1633,594.29724,-46.091137,44.027832,99.082466,4.285 1633,-4.828231,138.68732,16.99781,41.286026,4.273 1633,117.60804,236.72546,30.190758,66.168396,4.241 1633,214.5978,230.10513,35.965866,72.49997,4.217 1633,306.62256,178.16798,17.229736,39.676544,4.2 1633,-37.085464,-127.59197,117.29603,280.57864,4.187 1633,399.4778,222.48486,32.013885,68.68207,4.073 1633,250.28247,252.55183,20.97937,37.73033,4.039 1633,232.31714,251.36542,23.550476,38.87262,4.023 1633,49.388065,217.78384,34.36456,66.80609,4.004 1633,278.2016,222.39139,28.66986,64.88962,3.967 1633,289.41904,204.93048,19.748505,40.415787,3.959 1633,197.25615,218.43156,38.23404,73.68169,3.943 1633,334.9989,198.72188,22.378876,38.671616,3.834 1633,272.45007,208.302,26.087372,62.779114,3.833 1633,290.06915,214.55276,32.267212,71.704254,3.823 1633,62.092113,280.37924,30.026325,57.322083,3.762 1633,452.62897,218.25143,37.240723,103.03937,3.736 1633,619.14276,-18.858696,17.222717,42.61474,3.709 1633,262.35358,232.03091,35.63861,78.30844,3.692 1633,218.03625,247.02608,23.08191,37.35228,3.625 1633,226.108,227.39839,19.186127,30.730423,3.619 1633,499.12378,172.61653,30.648193,56.03488,3.596 1633,1.3569081,173.27818,25.588037,73.68964,3.53 1633,386.91724,234.35611,43.420746,101.537445,3.511 1633,276.68018,228.5486,17.949738,36.21898,3.489 1633,301.89966,209.15544,29.231354,72.1028,3.484 1633,1.7609096,490.92175,20.081064,40.501038,3.46 1633,12.216642,244.74835,70.90456,187.10931,3.441 1633,-5.73213,197.77588,18.480639,44.25238,3.384 1634,445.48416,220.28772,27.435486,64.0477,73.608 1634,428.28662,222.45604,30.971832,63.698776,72.715 1634,450.23563,217.65738,36.106903,94.03952,7.123 1634,259.46362,254.0181,20.628998,34.48694,6.767 1634,420.2022,222.059,40.883545,107.83794,6.319 1634,-11.408737,-32.221893,29.710789,72.47203,5.707 1634,-6.0493593,489.7179,18.519592,41.636597,5.705 1634,622.73425,-34.313843,26.667725,73.81003,5.672 1634,626.9925,-18.008272,17.439941,45.63646,5.572 1634,-11.976841,478.64145,30.41285,63.08603,5.522 1634,613.4344,454.4256,39.481934,108.44971,5.483 1634,-6.0408354,-18.477804,17.933006,43.428654,5.289 1634,-72.60187,265.88342,201.11609,462.11804,5.251 1634,603.5426,-56.389698,53.10907,133.70517,5.078 1634,-5.859435,213.19699,18.960194,48.251007,4.995 1634,-13.6716385,183.71394,46.653305,140.38335,4.94 1634,-17.461851,-62.408985,56.748512,143.1468,4.883 1634,583.01685,410.87805,71.64081,177.46606,4.876 1634,626.68176,488.02054,20.841797,45.551056,4.828 1634,536.6621,309.9478,143.57886,342.46973,4.803 1634,586.253,-100.38726,75.119995,234.68497,4.728 1634,-21.675718,402.1227,79.48956,175.41379,4.691 1634,-71.06833,-188.38084,211.92558,454.79004,4.511 1634,494.6018,227.05475,236.3081,514.0996,4.489 1634,282.00623,224.47278,20.525757,44.316406,4.487 1634,532.75085,-186.04303,147.65698,428.42236,4.466 1634,284.78323,210.96005,27.840149,68.58548,4.437 1634,3.5845816,233.70811,38.43522,89.205215,4.42 1634,594.41565,-45.644985,44.15869,97.85485,4.273 1634,-37.15851,-127.88575,117.22223,279.13318,4.261 1634,427.5087,220.06393,55.157684,150.55933,4.063 1634,452.63898,239.80452,39.60724,115.18022,4.06 1634,409.00555,222.28697,37.24826,93.70384,4.06 1634,7.345442,216.36569,27.921541,72.57208,3.983 1634,391.57043,209.47354,35.09961,80.93198,3.981 1634,212.70212,227.09409,30.521378,51.07373,3.956 1634,397.95258,223.07411,55.45331,146.93608,3.942 1634,229.3673,234.657,37.963943,70.63124,3.84 1634,-8.7772455,119.28509,38.37518,102.753395,3.821 1634,-4.05974,298.33475,29.446217,79.164734,3.787 1634,251.24469,254.49948,20.252808,35.252197,3.785 1634,290.11508,208.9654,18.075409,34.05127,3.744 1634,618.9066,-19.045193,17.56195,43.182156,3.614 1634,266.2573,250.71075,19.628876,31.902893,3.609 1634,-10.931925,216.34271,29.793833,68.35086,3.594 1634,203.29582,235.3999,30.048203,47.44928,3.587 1634,-4.3665476,139.9948,16.106503,41.27446,3.576 1634,1.3923132,204.3245,26.13213,71.87134,3.571 1634,-9.046997,249.7316,38.100574,94.0083,3.557 1634,309.36215,213.95706,29.40329,71.10907,3.532 1634,-10.630822,-5.1240273,40.4203,100.3224,3.529 1634,12.316896,191.37201,53.526527,119.6087,3.489 1634,467.0318,220.83585,38.124603,98.882996,3.487 1635,471.06165,214.29906,33.420746,79.65517,80.315 1635,34.32934,274.5589,35.224766,77.76691,9.589 1635,457.08636,215.95502,34.45056,73.371,6.994 1635,486.70148,215.17862,32.85077,78.791595,6.867 1635,623.08466,-34.508423,26.336243,73.831375,5.851 1635,627.2265,-18.013138,17.209534,45.44485,5.829 1635,613.44763,453.21155,39.10315,108.541504,5.771 1635,-6.2283535,489.7352,18.758749,42.141083,5.636 1635,-11.525899,-33.04712,29.919895,73.372154,5.579 1635,-8.884909,464.56274,37.707954,92.58832,5.512 1635,267.88846,248.4604,18.882812,32.7502,5.462 1635,-6.036747,-18.761507,17.988468,43.557224,5.359 1635,436.89987,222.25638,39.527313,93.10196,5.352 1635,-72.5011,266.89496,200.90504,461.48407,5.149 1635,536.4415,310.2375,143.50806,342.12384,4.963 1635,-1.2397861,188.90157,29.826502,69.72868,4.963 1635,603.4652,-56.351585,53.245544,134.4472,4.96 1635,-21.668125,402.41812,79.52927,175.3721,4.858 1635,-7.1428566,200.17368,19.917004,41.77272,4.853 1635,463.60632,208.08943,50.23053,127.10976,4.826 1635,-17.578684,-62.04486,56.907486,143.31581,4.769 1635,583.0129,410.08633,71.64838,178.02267,4.759 1635,494.77707,228.56989,236.22012,513.0575,4.655 1635,586.266,-101.22008,75.460144,235.75986,4.59 1635,626.1953,487.3921,21.471191,46.12561,4.565 1635,-70.66629,-188.15857,211.44037,454.77374,4.564 1635,-5.646848,185.47783,18.563435,39.62982,4.391 1635,424.017,206.50755,35.488068,80.51601,4.388 1635,292.61768,204.08409,29.025635,69.866745,4.333 1635,533.1635,-184.7801,147.37427,426.78763,4.257 1635,-37.182262,-127.254486,117.2312,279.0082,4.253 1635,97.37237,264.4111,30.893501,65.64517,4.225 1635,594.6058,-45.492638,43.86676,98.3696,4.162 1635,228.31949,220.72227,39.016632,70.3705,4.155 1635,497.4674,222.14629,40.61676,92.0403,4.142 1635,-11.869054,181.8713,29.147724,65.346954,4.026 1635,244.26227,219.17345,38.647247,73.11937,4.003 1635,528.89856,181.59468,22.884338,43.69612,3.997 1635,68.53334,205.9204,40.23915,87.93474,3.994 1635,487.4539,212.65616,21.523926,50.29834,3.97 1635,52.0158,204.93443,41.53119,90.26674,3.939 1635,-8.510467,250.4663,37.449245,98.75694,3.834 1635,290.28186,211.90916,20.574188,42.632492,3.731 1635,220.80687,221.11827,29.753372,45.803604,3.686 1635,619.1879,-18.605564,17.171814,42.506027,3.637 1635,389.85522,199.97522,37.709717,89.97043,3.596 1635,447.63513,218.0837,30.57547,60.04268,3.583 1635,260.94092,217.35727,37.94113,75.37198,3.546 1635,2.6038444,-17.193443,17.066616,40.466587,3.537 1635,-8.651992,102.942795,38.57744,104.78757,3.533 1635,-0.22376418,223.97026,27.701967,68.9583,3.523 1635,12.852302,181.62158,54.01483,124.421265,3.506 1635,259.5908,243.66225,18.439636,30.740036,3.498 1635,283.00577,213.33746,20.347443,39.21617,3.486 1635,84.77017,208.48752,39.847206,87.78427,3.463 1635,250.46552,241.73267,19.421936,31.376831,3.459 1635,402.04614,241.90952,34.00891,64.18472,3.448 1635,339.9797,10.546494,31.141663,87.47262,3.444 1635,354.39832,201.10666,31.362976,67.749725,3.437 1635,-14.914818,151.90561,48.653206,144.91293,3.437 1635,297.08948,205.34464,19.850342,39.555603,3.422 1636,510.29773,215.41489,41.795227,102.30267,94.482 1636,276.45605,248.73889,17.576904,32.103394,6.844 1636,627.0142,-17.93955,17.493835,45.33473,5.861 1636,612.9923,455.37924,39.54773,106.523895,5.669 1636,-5.944852,488.76416,18.373922,42.595215,5.662 1636,-8.766254,464.35962,37.43689,92.671936,5.617 1636,-11.361718,-32.8104,29.71481,73.40839,5.423 1636,622.7925,-34.24169,26.712585,74.3951,5.337 1636,-73.090126,266.7342,201.30676,461.2674,5.322 1636,-6.070688,-18.452332,17.945297,43.343773,5.186 1636,583.08203,411.39624,71.6311,176.5008,5.056 1636,-40.542988,363.70508,111.14014,276.21448,4.999 1636,603.4773,-56.033184,53.278748,133.86713,4.982 1636,626.65906,488.86948,21.038757,44.401398,4.967 1636,536.4408,309.15097,143.80939,342.69168,4.91 1636,-17.502716,-62.459774,56.791588,143.36917,4.897 1636,268.1219,249.2876,18.362976,32.15088,4.838 1636,-6.3207045,231.5236,20.064142,45.98271,4.697 1636,518.4525,187.24197,53.68927,123.095245,4.617 1636,-0.41385174,187.97438,28.258633,70.32701,4.583 1636,-70.714294,-188.3056,211.53748,454.19092,4.552 1636,-6.0645,190.95427,19.062626,44.050827,4.543 1636,586.0353,-100.55061,75.829346,234.98804,4.536 1636,283.20392,248.2292,17.76648,32.752,4.474 1636,-17.82739,433.98004,55.335205,142.10797,4.465 1636,318.14847,210.54031,28.124603,67.77939,4.46 1636,494.73108,230.52002,236.72156,512.206,4.4 1636,532.77576,-184.12474,148.419,426.52368,4.384 1636,356.49725,-32.72444,29.254944,80.463554,4.377 1636,-37.288162,-127.574394,117.22317,280.1268,4.262 1636,594.5514,-45.76653,44.042908,98.54223,4.257 1636,323.99585,198.79654,14.862518,28.203003,4.161 1636,3.279568,198.4873,39.391598,102.354126,4.15 1636,101.5512,213.01431,29.888527,62.86203,4.118 1636,-16.567892,253.16159,51.36589,136.03159,4.105 1636,546.0355,229.263,41.835327,102.3302,4.104 1636,-10.220756,284.54285,30.882454,71.6962,4.077 1636,22.035387,300.41675,35.21379,64.67236,4.044 1636,524.7367,255.2554,30.466003,73.539795,4.043 1636,84.53502,218.1348,31.031502,62.77179,4.041 1636,120.28351,220.63283,23.255783,43.272842,3.984 1636,228.24258,220.73901,39.450745,71.51233,3.949 1636,64.44625,192.0646,50.97706,122.24222,3.93 1636,533.4557,217.42287,34.431335,83.69362,3.916 1636,-14.314103,177.92744,48.141464,149.98314,3.898 1636,503.76105,238.23608,33.45038,77.220825,3.886 1636,-5.0614624,130.96193,16.384186,40.751617,3.877 1636,60.109413,291.10635,31.353218,53.20578,3.86 1636,306.06174,205.51796,19.220795,39.743286,3.818 1636,244.2862,220.38115,39.03708,73.98091,3.816 1636,300.45636,204.5811,27.023132,63.878403,3.808 1636,483.18985,232.64734,45.26834,97.90857,3.792 1636,-1.2207508,292.86954,32.92846,84.519135,3.784 1636,298.02454,207.76945,19.658478,40.74614,3.772 1636,13.24547,170.10321,51.4823,131.66107,3.762 1636,410.45956,239.52333,19.49347,33.566513,3.718 1636,117.200584,225.21082,38.4542,78.59326,3.716 1636,466.5797,239.70192,42.372864,96.0786,3.664 1636,89.11683,245.51628,21.334312,38.658524,3.643 1636,342.14432,49.12717,25.986542,88.231384,3.631 1636,618.7029,491.32986,20.619873,41.060394,3.63 1636,-6.6030874,214.60388,19.50946,45.203705,3.622 1636,-11.416778,179.57564,29.148602,69.418015,3.603 1636,106.957634,225.76529,19.65136,36.557587,3.573 1636,83.00251,238.32495,40.50834,82.69586,3.568 1636,-10.023952,315.8466,31.086143,75.17041,3.555 1637,581.0224,218.35568,45.48889,115.58011,94.996 1637,599.78217,229.98515,32.285034,85.78285,10.342 1637,608.3747,221.37125,37.40625,111.522156,6.235 1637,-6.115979,489.5187,18.651333,41.92514,6.026 1637,284.96854,250.8462,17.035156,30.630325,5.905 1637,613.16516,453.55072,38.898743,108.59601,5.874 1637,1.1220014,324.86618,27.939983,74.120575,5.846 1637,627.24066,-17.764853,17.211182,45.162342,5.84 1637,363.3841,208.44092,19.483215,32.723373,5.822 1637,-11.936325,477.77374,30.119505,63.30786,5.816 1637,-6.2025876,-19.006874,18.27974,43.86423,5.565 1637,623.05676,-34.439888,26.474548,74.08454,5.52 1637,626.7289,487.8846,20.79419,45.87137,5.406 1637,-11.418001,-32.69118,29.593721,72.7515,5.355 1637,576.0459,249.18103,32.876953,83.16809,5.344 1637,-73.12508,265.9905,201.41,462.91208,5.262 1637,536.68054,309.65607,143.28735,341.38214,5.251 1637,603.4966,-56.164955,52.747925,135.13048,5.022 1637,-17.701063,-62.778015,56.891815,143.0438,4.943 1637,614.7105,227.6858,23.137817,53.378525,4.913 1637,582.7349,411.4218,72.00604,176.677,4.907 1637,-40.82225,363.9205,111.4239,277.3544,4.893 1637,611.03467,261.70816,38.52472,107.52765,4.855 1637,-17.872637,434.98776,55.180725,141.54544,4.655 1637,493.5905,229.13043,237.58075,512.46826,4.611 1637,-71.0059,-188.33856,211.42645,453.83005,4.6 1637,-6.497158,223.79463,19.271267,45.272934,4.531 1637,365.452,209.68631,28.16275,59.05185,4.488 1637,585.8733,-101.322296,75.72955,235.37793,4.468 1637,-6.199651,178.84016,18.772053,47.798996,4.376 1637,276.21335,251.0721,18.060944,30.356644,4.375 1637,603.04333,177.8189,50.09027,127.160355,4.357 1637,532.6528,-183.7184,148.19293,426.12933,4.286 1637,314.33093,207.96567,18.552948,36.70793,4.246 1637,299.41873,208.18694,18.92154,39.411545,4.23 1637,305.13318,211.5515,20.295105,45.64009,4.18 1637,194.27716,240.03186,19.62436,39.722717,4.17 1637,-11.111851,219.44583,30.044556,70.181305,4.138 1637,-37.202297,-127.75889,117.13211,280.2376,4.126 1637,308.89072,206.59406,27.013458,63.31198,4.1 1637,547.2356,234.51047,44.826843,102.87958,4.1 1637,90.42738,220.17043,33.020554,58.429153,4.094 1637,565.9046,218.98709,62.567444,187.77994,4.086 1637,291.1967,250.76852,17.27353,32.356934,4.01 1637,-5.789182,198.33801,18.553127,45.25595,3.997 1637,132.24481,233.08627,40.23517,73.25763,3.975 1637,560.2557,198.56607,57.345337,124.1366,3.964 1637,38.55452,210.23677,38.312508,84.2762,3.93 1637,593.2593,251.09595,40.413635,107.97565,3.874 1637,594.7671,-45.902443,43.6969,99.3407,3.861 1637,-5.4382615,312.30292,18.466986,45.84445,3.776 1637,-13.607508,185.10379,46.79476,143.27576,3.761 1637,331.80292,199.7783,15.797943,26.994324,3.724 1637,567.98645,222.30302,33.049805,82.22841,3.71 1637,122.24515,219.6657,20.940598,38.860672,3.696 1638,627.1547,-18.234875,17.356018,45.748497,6.537 1638,-12.389416,476.93286,30.538664,64.05139,6.458 1638,-6.4324846,488.54437,18.962114,43.903442,6.409 1638,372.05383,196.37521,29.837372,60.43332,5.887 1638,375.10104,198.55128,20.52951,36.734375,5.798 1638,612.7734,454.19965,39.904724,107.59235,5.768 1638,623.0284,-34.780968,26.358093,75.01687,5.658 1638,-73.00003,265.67673,201.36118,463.33353,5.344 1638,315.33362,196.82243,18.260742,41.107452,5.307 1638,-6.108596,-18.8837,18.190437,43.90871,5.237 1638,-12.507776,-40.718285,41.496056,101.19654,5.19 1638,115.21255,225.65839,18.866127,38.257416,5.016 1638,603.4437,-55.84678,53.171387,133.49463,4.969 1638,322.21887,196.21954,18.560883,39.200333,4.963 1638,626.4949,488.27972,20.769775,45.699524,4.943 1638,-40.97208,362.03668,111.959656,279.15155,4.89 1638,582.94763,411.09152,71.901855,177.29996,4.803 1638,585.9923,-100.5317,75.652466,234.84738,4.771 1638,292.4734,242.74725,18.096375,30.919556,4.771 1638,536.41406,310.1659,143.26215,341.84302,4.77 1638,316.15424,193.3269,26.973755,65.346924,4.71 1638,179.00262,232.55525,31.37352,58.072067,4.698 1638,-21.82589,400.06854,79.466385,176.72247,4.612 1638,-19.668072,-86.65156,71.00667,196.54233,4.591 1638,-70.943344,-188.17024,211.58224,454.21582,4.582 1638,307.65894,195.75764,18.749207,42.868973,4.527 1638,-16.121971,151.72151,50.388916,142.33446,4.52 1638,493.55466,227.20435,237.89304,515.0964,4.428 1638,532.5736,-184.46754,148.17651,424.75876,4.394 1638,61.029213,223.34052,30.487251,58.908325,4.39 1638,245.82414,214.26875,28.336075,50.820694,4.384 1638,-37.305904,-126.79509,117.01541,280.07172,4.167 1638,292.87085,185.63518,14.297638,27.023102,4.153 1638,-9.232725,119.07084,38.476654,100.968925,4.14 1638,139.24712,246.59608,22.176605,38.110672,4.114 1638,2.2904396,240.26863,33.68661,81.76482,4.111 1638,411.65085,-33.401047,29.433716,81.452965,4.098 1638,331.48846,197.36093,16.678284,30.30223,4.053 1638,594.6138,-45.596764,43.93213,98.1268,3.9 1638,295.05457,189.93877,25.797516,67.27132,3.887 1638,-5.716943,202.48135,17.15089,39.39563,3.876 1638,13.249316,221.71979,54.12714,105.76453,3.809 1638,43.31199,223.9474,32.329277,62.98784,3.805 1638,132.13324,234.62495,40.695404,68.96309,3.799 1638,-5.238035,219.28342,16.08368,37.624084,3.727 1638,284.01538,243.00475,18.50357,31.639297,3.656 1638,619.2803,-18.884136,17.131958,42.77146,3.654 1638,425.39587,-20.29062,19.177124,47.764774,3.63 1638,155.9496,239.0408,30.567444,53.74823,3.622 1638,67.12166,205.63391,31.347443,66.57196,3.573 1638,-9.593482,71.69179,39.55766,106.169235,3.538 1638,-9.419752,210.25278,38.67537,89.47977,3.517 1638,383.3508,203.15387,22.878174,44.78711,3.478 1638,325.44705,191.49983,28.377167,62.142853,3.462 1638,416.40454,-20.323996,20.242065,51.770134,3.444 1638,619.4749,139.86359,18.893982,42.70186,3.44 1638,2.2918808,488.64185,19.694473,43.504578,3.439 1638,-9.8953705,306.37225,31.483929,78.933655,3.439 1638,100.190216,231.41571,40.939774,73.59155,3.424 1638,418.77594,64.21262,29.275818,79.78759,3.38 1638,440.99615,245.48108,34.788635,62.02234,3.363 1638,426.4975,156.94951,33.670837,76.33989,3.359 1638,-17.407337,266.662,52.811787,149.32623,3.352 1638,279.30536,239.03505,26.816162,50.33943,3.338 1638,106.68407,202.26187,19.563454,41.33972,3.334 1638,116.693184,232.00304,39.918022,71.77733,3.31 1638,-14.247797,216.99194,48.99784,140.67694,3.306 1638,340.87634,180.68823,15.176697,29.9608,3.303 1638,-4.381386,156.61835,18.234457,49.61821,3.29 1638,597.2857,461.701,38.79657,98.66693,3.27 1638,279.48566,187.39572,25.084015,60.97531,3.269 1638,11.586142,241.6198,70.19001,186.22206,3.249 1638,613.70355,112.79826,35.77179,103.353806,3.244 1639,443.13373,33.632713,30.127258,92.631485,11.67 1639,362.1125,204.78082,21.842133,38.82193,8.707 1639,274.97678,253.33546,19.457275,35.565445,8.226 1639,361.99408,204.26888,30.695892,62.554276,7.29 1639,1.3395786,224.95218,24.154512,78.82761,6.355 1639,627.2187,-18.381252,17.444885,45.875027,6.04 1639,-12.047346,477.5933,30.359262,63.98831,5.653 1639,612.96436,454.37875,39.704712,107.36911,5.575 1639,-6.1721935,489.46674,18.84312,42.26178,5.561 1639,200.72058,232.13269,21.994995,38.00049,5.429 1639,623.153,-34.35892,26.415527,74.78569,5.416 1639,-11.401558,-32.670986,29.863289,72.365776,5.39 1639,-72.96629,267.51782,201.75002,460.73816,5.185 1639,-6.174309,-18.712046,18.252234,43.404404,5.148 1639,603.90295,-56.036186,53.013794,133.20604,5.1 1639,626.4023,487.78992,20.79364,45.9964,5.018 1639,306.0095,201.12961,19.172821,36.23468,5.008 1639,375.78015,211.60156,22.45221,44.182358,4.935 1639,-17.453232,-62.53192,56.761864,143.59169,4.855 1639,582.9594,411.35303,71.879395,177.08783,4.851 1639,-21.876942,401.87683,79.79756,175.59656,4.845 1639,282.92813,252.40005,18.64267,30.579285,4.827 1639,110.40132,266.23145,28.58879,55.224243,4.797 1639,536.63,310.69254,142.91742,341.11313,4.716 1639,586.04407,-100.71379,75.733826,234.7372,4.493 1639,298.57394,204.88405,19.999817,40.66162,4.416 1639,-70.8648,-188.80988,211.7341,454.84973,4.413 1639,532.6228,-183.70987,147.96167,423.76083,4.392 1639,493.5357,227.2649,237.84491,515.2855,4.357 1639,-37.308388,-127.60962,117.303535,280.25903,4.28 1639,12.300377,181.49893,54.785873,130.12073,4.09 1639,-14.082621,185.6055,48.398117,143.08249,4.073 1639,594.86273,-45.888004,43.592346,98.47231,4.056 1639,227.02242,239.40352,21.378311,34.54442,3.941 1639,229.97522,220.815,28.529053,54.886658,3.926 1639,347.28088,30.046513,29.222137,82.11131,3.923 1639,-15.676434,118.45483,51.280315,143.86401,3.888 1639,263.48727,249.25499,27.940704,50.885147,3.852 1639,234.5134,242.79066,22.280243,35.936356,3.842 1639,-9.434651,103.00763,39.50412,104.63754,3.838 1639,314.74026,198.69989,16.924042,29.909607,3.811 1639,3.1955218,205.45404,40.266117,101.54193,3.782 1639,-9.935179,321.64862,39.476486,109.12338,3.758 1639,445.14877,274.64853,31.29721,67.46652,3.737 1639,-4.9834223,216.54926,18.337101,46.381714,3.694 1639,16.248877,285.99908,35.302177,47.299957,3.691 1639,-4.9507694,153.33818,17.487534,44.628265,3.663 1639,409.46063,185.15262,19.712067,40.16667,3.609 1639,-12.384572,276.295,32.06388,62.50586,3.597 1639,619.2089,-19.778515,17.217346,43.88833,3.567 1639,-9.290623,244.73766,27.64842,72.395706,3.544 1639,400.7049,152.49908,30.563232,72.154175,3.544 1639,212.52777,228.28638,29.325867,51.324036,3.532 1639,2.4829865,-17.166906,17.44769,40.366146,3.519 1639,90.78021,271.68762,33.965805,50.633545,3.487 1639,-9.85207,207.14354,28.743334,71.76387,3.462 1639,234.03781,219.30003,19.518402,31.966873,3.442 1639,244.21475,246.48729,30.055695,51.381485,3.429 1639,613.61975,127.34639,35.472412,103.71921,3.398 1639,240.5209,251.20695,22.642517,37.874283,3.392 1639,-4.209817,170.44057,16.819946,43.11647,3.376 1639,-10.761358,-4.8732185,40.5304,101.341736,3.368 1639,84.239426,231.009,40.551643,77.35364,3.359 1639,206.55508,238.5119,22.361633,37.85565,3.351 1639,144.01884,243.44823,34.378433,62.459732,3.343 1639,-5.7440686,271.17267,18.321066,42.614624,3.325 1640,66.464745,285.2598,30.656685,66.16144,21.429 1640,222.00885,269.22784,24.16249,44.277283,11.983 1640,266.44098,269.79794,20.79831,35.29959,9.026 1640,274.39496,270.55176,20.546509,34.530396,8.81 1640,358.7056,209.21121,20.218353,36.90045,8.802 1640,355.6718,208.92055,29.308075,65.42076,7.61 1640,271.72427,197.60478,24.664246,61.27394,5.99 1640,627.1587,-17.962181,17.326538,45.584503,5.93 1640,-11.667698,478.51117,29.66559,63.810913,5.828 1640,-5.8590913,489.12103,18.333454,42.1015,5.813 1640,290.90305,205.6053,19.466766,37.971878,5.69 1640,613.02203,454.35974,39.426147,107.24164,5.629 1640,-6.1478863,-18.75835,18.082184,43.544163,5.422 1640,623.04755,-34.36471,26.456848,74.311485,5.392 1640,-11.387095,-32.801746,29.827751,72.758644,5.386 1640,298.3088,205.22247,17.960388,30.0811,5.38 1640,230.74011,269.31003,23.353638,39.281555,5.318 1640,492.24503,-9.214115,37.106964,93.27356,5.31 1640,603.43286,-56.000988,53.145386,135.59308,5.18 1640,626.23676,487.662,21.344055,45.899597,5.042 1640,-73.31255,267.51373,201.5148,459.94086,5.026 1640,249.38902,267.98816,22.219437,37.904663,5.011 1640,258.3632,268.05536,21.15683,37.250336,5.007 1640,-21.883142,401.4004,79.817894,176.3617,4.991 1640,-17.526192,-62.891136,56.57839,143.9696,4.914 1640,582.99023,411.01028,71.83856,177.38742,4.88 1640,-4.6321115,302.834,16.384026,33.397034,4.869 1640,307.91928,201.85928,15.442902,25.168655,4.823 1640,536.6703,310.4912,142.9386,341.4619,4.778 1640,236.51085,265.43597,30.913803,47.49176,4.768 1640,281.01007,265.71954,21.424286,34.33322,4.752 1640,-4.793814,162.24954,16.476706,40.428528,4.718 1640,366.65027,211.73921,23.398712,46.537918,4.652 1640,585.43286,-100.13316,76.107544,233.10596,4.49 1640,-70.83828,-189.61642,211.37427,455.7429,4.474 1640,489.82477,-178.54068,235.00299,421.3758,4.391 1640,493.67432,227.24796,237.65198,515.2582,4.38 1640,196.63498,229.89278,29.312729,58.33058,4.361 1640,-37.038925,-127.78986,117.251526,279.9782,4.244 1640,344.23145,203.70647,30.288788,67.392105,4.115 1640,-15.241614,179.65274,48.109623,147.28555,4.113 1640,286.55603,264.8701,24.348206,42.356018,4.1 1640,400.687,166.1209,19.9198,47.187668,4.097 1640,186.5192,243.34505,32.275375,56.86476,3.968 1640,594.89166,-46.445404,43.638245,100.47169,3.946 1640,317.5079,200.90419,14.320374,24.353577,3.912 1640,-8.955435,102.09163,38.93123,104.38899,3.896 1640,212.18338,235.13019,39.438766,75.58728,3.896 1640,74.90853,274.129,29.645615,57.525757,3.892 1640,370.88242,212.16678,30.695953,64.18152,3.886 1640,-4.4849577,198.27678,18.484737,47.72853,3.842 1640,4.1643643,315.70172,17.93745,29.059204,3.763 1640,2.167025,491.4695,19.175556,39.999237,3.738 1641,356.91357,208.42061,20.064392,45.065063,14.291 1641,206.93225,290.02988,24.111984,46.743103,12.201 1641,18.739876,295.9104,34.01539,78.91565,9.336 1641,189.12152,283.0296,29.95433,54.765076,8.812 1641,273.22815,287.80756,22.043213,35.605164,8.687 1641,355.6214,211.56934,29.777405,69.21036,6.575 1641,-12.1241,477.68472,30.711277,63.586212,5.762 1641,-6.1460886,489.56982,18.726698,41.873413,5.707 1641,627.168,-18.598206,17.25116,48.402184,5.685 1641,266.58023,285.05197,19.756622,28.046326,5.664 1641,613.2978,453.89948,39.43225,108.31677,5.644 1641,289.11838,209.1463,21.077423,39.139282,5.397 1641,33.035183,293.25378,33.014957,62.812775,5.375 1641,229.13895,279.5777,31.734894,55.039825,5.305 1641,-6.179335,-18.980492,18.293095,43.884167,5.296 1641,-11.520519,-32.99396,29.971184,73.153786,5.231 1641,256.8103,287.59152,22.248505,31.55899,5.113 1641,622.7947,-34.31306,26.616333,77.80347,5.079 1641,-73.48092,267.7057,202.18549,460.20386,5.076 1641,621.92017,477.6602,28.868652,66.2045,5.032 1641,-17.627678,-62.113274,56.832394,142.87656,4.909 1641,-41.17209,364.52908,111.63735,276.86435,4.883 1641,536.7073,310.30286,142.93842,341.69214,4.852 1641,582.8159,410.611,71.92682,178.06393,4.796 1641,290.41364,198.58026,18.818481,33.94586,4.733 1641,585.8034,-99.595924,75.80182,231.02441,4.731 1641,7.2615767,286.87137,36.597786,102.55759,4.68 1641,346.2724,204.19138,28.611603,70.265045,4.663 1641,603.2836,-57.758476,53.115784,135.5617,4.654 1641,276.49432,281.02914,29.036804,55.66916,4.593 1641,490.0093,-180.01228,235.3981,425.4711,4.591 1641,246.02386,283.75964,29.375519,45.763702,4.43 1641,493.6203,227.65863,237.8186,513.8755,4.416 1641,-70.87334,-189.70331,211.69011,455.14716,4.35 1641,-17.69631,434.44965,55.246223,141.37518,4.349 1641,-36.90184,-127.64574,117.201256,279.98926,4.338 1641,199.4787,286.90332,24.336365,42.26349,4.284 1641,368.1432,211.42961,20.81482,40.31305,4.241 1641,5.1614943,268.31955,29.250065,70.97049,4.212 1641,296.7237,202.99901,19.28836,33.882065,4.191 1641,594.4891,-46.758087,44.69568,96.59549,4.15 1641,401.02325,165.36357,19.518585,44.58052,4.105 1641,615.27966,-21.72817,26.872986,77.502235,4.078 1641,-9.450826,182.80759,38.505123,100.86258,4.055 1641,-3.7436194,156.17236,16.055643,40.595505,4.054 1641,-5.1479225,285.43225,17.651459,47.048584,4.038 1641,-9.018543,102.01921,38.74116,102.895996,4.004 1641,38.481846,288.10144,23.569439,38.042023,4.001 1641,-9.886698,284.2175,27.820618,75.96451,3.996 1641,251.05511,284.0653,20.242065,28.783295,3.964 1641,-5.5689945,292.44562,35.602097,100.714355,3.943 1641,-3.6904187,140.329,15.376188,39.03244,3.817 1641,197.46422,270.21536,36.833817,71.55621,3.802 1641,307.5097,198.51843,16.196106,29.403809,3.793 1641,311.1718,193.02785,34.53543,83.16557,3.774 1641,3.15901,149.56015,17.271309,42.593033,3.762 1641,351.34213,179.92984,45.777588,117.117035,3.745 1641,280.71707,204.47581,26.090454,57.83882,3.74 1641,-6.203608,216.93597,18.24356,41.773163,3.71 1641,242.00958,283.02036,21.002686,31.875,3.663 1641,356.31042,200.76521,17.671326,29.751358,3.661 1641,394.85175,257.41562,35.303955,63.71173,3.637 1642,359.9034,206.17943,23.213959,49.438614,25.318 1642,286.28296,221.66164,25.121582,73.58894,7.165 1642,164.3863,303.87186,31.412766,62.007874,7.14 1642,180.76431,308.2652,28.19429,61.495453,6.979 1642,627.16156,-17.982944,17.223755,45.49082,6.095 1642,-11.405209,-32.4813,29.753368,72.04164,6.003 1642,-12.244751,477.73087,30.774868,63.10257,5.925 1642,613.36584,453.90393,39.1485,108.02985,5.656 1642,-6.3020186,489.3844,19.000454,42.10315,5.636 1642,611.0351,-47.91296,41.53296,101.37115,5.486 1642,359.24454,194.98175,33.61197,84.585175,5.451 1642,268.81488,304.02142,30.481903,57.230835,5.257 1642,-6.0842695,-18.354404,17.978874,42.8162,5.245 1642,343.65088,199.76645,29.807678,73.65784,5.236 1642,289.6298,200.3877,20.003052,38.3891,5.14 1642,626.7376,488.57922,20.727478,44.862305,5.062 1642,285.12286,199.03305,28.356201,61.01944,5.003 1642,265.97247,312.97446,22.744293,41.54254,4.934 1642,-17.37149,-62.52552,56.618225,144.48694,4.895 1642,-73.49466,266.76587,201.43144,460.99768,4.889 1642,536.55817,310.18896,143.00348,341.45642,4.88 1642,582.8838,411.03525,71.920166,177.40103,4.834 1642,-21.830729,401.52686,79.96096,176.11041,4.817 1642,585.98694,-100.37615,75.488525,234.7511,4.779 1642,50.90996,273.99188,34.597927,75.27487,4.742 1642,493.8303,226.90457,237.39517,515.36816,4.412 1642,-70.819336,-189.08942,211.29022,454.60965,4.382 1642,490.13382,-179.5906,235.48032,423.35205,4.373 1642,-36.79219,-128.01189,117.03103,278.0338,4.311 1642,282.28796,202.45512,21.843323,43.26616,4.265 1642,370.32428,211.20549,30.939697,66.51842,4.165 1642,247.61145,312.1847,22.958008,32.786896,4.086 1642,307.12988,198.91148,16.315063,28.63533,4.078 1642,297.9634,198.38416,17.75415,31.769516,4.052 1642,205.97461,301.5135,31.32486,61.547424,3.965 1642,-8.489079,249.33261,37.749966,97.49521,3.925 1642,-5.3168955,264.00073,17.612553,42.890198,3.911 1642,299.9204,199.4057,29.432068,55.89328,3.866 1642,1.6373765,308.76266,22.349077,53.085846,3.85 1642,1.6280937,245.55522,22.01072,49.71025,3.785 1642,0.43628454,209.53659,22.03542,48.818756,3.771 1642,618.9652,-18.602749,17.23529,42.853245,3.766 1642,366.11496,213.07196,23.468475,53.20038,3.748 1642,268.65048,205.5639,17.096924,37.989655,3.745 1642,-4.938019,208.4896,18.661118,45.89604,3.716 1642,-5.197539,232.14177,19.01171,45.12169,3.68 1642,333.49136,198.31467,29.262543,65.770294,3.675 1642,-5.1129923,139.24774,16.419094,40.06772,3.664 1642,598.6474,146.79652,37.241394,101.69209,3.663 1642,274.96567,202.53777,20.306366,42.954926,3.661 1642,375.85492,208.09721,21.965027,42.714096,3.632 1642,613.5133,111.95285,36.568237,105.61954,3.602 1642,254.05077,200.80876,13.107864,27.844757,3.577 1642,-9.710446,71.850235,39.658314,106.081314,3.558 1642,249.27126,301.14542,19.74327,30.049957,3.524 1642,138.13676,253.6587,31.872116,60.584488,3.51 1643,365.6509,202.53511,24.09674,45.6187,24.235 1643,627.2039,-18.014107,17.221985,45.566425,6.029 1643,287.17032,195.61604,26.09665,65.744156,5.916 1643,-6.124372,489.52188,18.747694,41.896942,5.772 1643,622.9944,-34.59588,26.294678,74.89246,5.725 1643,368.36963,200.7195,30.006592,71.71086,5.717 1643,-8.709369,463.94128,37.3775,93.288574,5.701 1643,-6.1057644,-18.757212,18.021036,44.078964,5.654 1643,613.25995,453.58295,39.21173,108.14172,5.642 1643,-12.608014,-40.60999,41.633663,101.01453,5.171 1643,36.132946,279.37558,35.076374,79.99997,5.145 1643,297.06366,196.94533,21.047028,42.884094,5.047 1643,603.3905,-56.148094,53.408203,133.67426,5.035 1643,-73.03027,265.5293,201.03749,461.71594,4.948 1643,-22.043205,401.27502,79.951096,176.67896,4.885 1643,582.96405,410.75348,71.72992,177.47192,4.803 1643,536.599,310.01617,142.78162,341.93463,4.787 1643,-19.978392,-86.03145,71.61078,195.34837,4.707 1643,586.1683,-101.691444,75.60492,236.35126,4.584 1643,282.78632,194.42703,20.750244,48.480713,4.561 1643,626.165,486.9025,21.438538,46.581146,4.55 1643,493.58612,227.25574,237.67822,515.34796,4.407 1643,-71.58508,-189.21619,211.70743,454.58035,4.407 1643,594.42114,-45.17657,44.01538,97.75405,4.404 1643,-36.59555,-127.851845,116.76491,276.47733,4.378 1643,489.8085,-180.20996,235.74203,423.20084,4.31 1643,159.20457,225.84459,25.917175,75.126785,4.308 1643,299.00333,195.41597,28.891571,67.59117,4.284 1643,138.9812,268.25824,20.821548,38.821747,4.251 1643,305.3751,196.08803,19.314606,35.596893,4.21 1643,164.6261,337.11606,28.007568,58.515686,4.164 1643,467.62576,159.99077,17.849518,28.46791,4.156 1643,290.9303,222.93967,29.51236,83.69733,4.127 1643,-9.022145,266.26566,37.959316,90.59323,4.122 1643,354.36774,180.43135,43.910095,114.47511,4.074 1643,260.99332,491.22815,30.89264,51.931885,4.03 1643,-4.919221,250.14897,17.346493,41.481613,3.934 1643,310.53586,184.73529,35.673004,80.65015,3.874 1643,268.43723,182.78714,15.176086,30.718384,3.852 1643,352.26904,198.40704,31.204926,67.7377,3.811 1643,474.81757,159.4139,18.450867,28.682251,3.787 1643,619.2716,-18.797375,17.10022,43.18656,3.759 1643,141.08838,251.04689,29.838913,57.358902,3.757 1643,339.32306,-10.876652,32.9942,67.285225,3.731 1643,267.97177,192.20334,18.354187,38.3835,3.7 1643,37.47188,261.46625,31.207973,62.75107,3.686 1643,574.9727,155.91824,50.756287,135.86252,3.68 1643,202.28172,268.97482,19.492325,30.467499,3.677 1643,148.36485,332.5907,29.689224,69.613464,3.669 1643,276.21487,491.26605,31.130981,51.843628,3.663 1643,326.05014,183.98103,35.362762,79.35408,3.658 1643,412.18564,160.77274,19.279633,39.775177,3.655 1643,130.6544,263.2503,20.803162,37.81125,3.649 1643,279.28638,206.25204,27.866669,72.4371,3.647 1643,290.21252,194.75041,20.101074,39.107407,3.59 1643,274.1245,331.92227,34.21689,63.26544,3.569 1643,316.31076,191.44327,16.39505,29.435944,3.53 1643,244.44986,491.77368,31.926666,51.64966,3.523 1643,598.08954,122.24133,37.100708,97.71625,3.514 1643,388.10806,201.39838,39.514587,90.03729,3.51 1643,-5.045909,137.99643,17.012653,44.91638,3.499 1643,10.19847,269.941,19.909637,38.032776,3.473 1643,3.2176275,261.04733,18.302998,40.111237,3.445 1643,31.228552,253.93431,27.536661,60.050095,3.433 1643,253.0611,272.34073,16.92453,30.884003,3.429 1643,613.0731,187.44244,35.834717,111.36255,3.422 1643,614.0527,113.89003,35.66461,105.33479,3.42 1643,332.27994,162.95123,15.857758,34.21057,3.417 1643,411.18335,256.53522,33.908936,61.84915,3.407 1643,271.04272,188.71487,26.259705,59.54875,3.357 1643,127.347984,240.15369,49.537086,118.46088,3.308 1643,354.10568,-13.686834,16.9841,39.499554,3.296 1644,376.03217,205.37685,21.571442,41.903244,15.582 1644,253.86044,200.92673,14.354126,25.14592,6.424 1644,627.07544,-17.878466,17.479065,45.37941,6.129 1644,-11.424661,-32.79319,29.763264,73.18419,5.891 1644,613.3338,454.50623,39.591614,106.58295,5.816 1644,377.70416,204.35492,29.696716,67.096405,5.784 1644,622.859,-34.320877,26.529541,74.246605,5.686 1644,-6.2937236,489.34064,18.778288,41.600464,5.618 1644,-8.754373,464.05777,37.439007,92.88565,5.585 1644,305.48367,195.84247,20.401062,45.76834,5.545 1644,-6.0274644,-18.657175,17.956213,43.18805,5.425 1644,-22.337664,401.20627,79.68899,177.05124,5.131 1644,46.005894,289.5165,36.046062,73.08911,5.027 1644,297.01724,194.82928,26.087952,66.46994,4.987 1644,603.2655,-56.162266,53.265564,135.36044,4.945 1644,306.6235,195.8512,28.537048,69.12839,4.883 1644,583.0224,410.53558,71.73865,177.78412,4.82 1644,-20.146996,-85.88599,71.84297,195.40422,4.781 1644,312.90796,197.72626,19.71997,41.87616,4.749 1644,536.458,310.5628,142.8758,341.56512,4.709 1644,585.84845,-101.68026,75.90326,236.24557,4.69 1644,244.65501,492.43942,31.15718,50.786957,4.658 1644,626.2855,487.96933,21.374084,45.809113,4.64 1644,-72.19763,268.06848,199.39085,459.1203,4.63 1644,33.278446,291.09662,35.877483,80.33475,4.56 1644,268.91922,492.08783,31.353607,51.32007,4.51 1644,355.92682,5.6114883,30.027924,84.26358,4.497 1644,-36.491703,-128.04529,116.86783,275.93832,4.408 1644,275.5139,198.1691,18.061493,37.67488,4.356 1644,493.69724,226.719,237.58072,515.33655,4.355 1644,489.73267,-179.61314,235.92749,423.0609,4.345 1644,260.2225,200.9008,14.285614,25.305176,4.343 1644,-71.4467,-189.4413,211.93742,454.92847,4.335 1644,149.97784,389.2192,25.397339,46.257843,4.25 1644,594.4955,-45.860043,43.967407,99.149475,4.227 1644,282.55664,200.38869,20.123901,44.87738,4.19 1644,228.83345,490.22455,31.772781,52.835083,4.186 1644,2.5541086,268.38632,17.831928,39.56778,4.139 1644,29.31623,271.63953,30.497536,56.900085,4.096 1644,291.23364,193.17522,20.748474,46.019073,4.04 1644,300.56064,246.09378,30.871918,89.398285,3.976 1644,388.66736,201.39594,37.111755,88.05005,3.894 1644,619.0956,-18.54692,17.412476,42.820175,3.88 1644,83.7551,263.39508,30.586952,66.31323,3.847 1644,133.89268,384.52252,30.959763,56.898438,3.813 1644,132.02502,258.89948,32.535706,61.6705,3.779 1644,360.02954,198.91,29.931854,63.661957,3.767 1644,-10.249747,-19.53855,38.984627,100.17753,3.754 1644,284.08887,491.0943,31.217896,51.320435,3.744 1644,268.26453,202.19315,16.205719,31.51738,3.73 1644,326.02722,184.09483,35.81775,80.1031,3.723 1644,597.3865,462.0396,39.341187,98.56952,3.66 1644,348.37628,-9.930164,32.278015,67.42599,3.622 1644,-4.672927,252.02444,16.847137,40.274475,3.604 1644,368.52753,182.18767,44.93683,113.40852,3.596 1644,279.17636,181.54793,34.4906,83.114975,3.568 1644,188.05203,214.11856,54.584396,110.87958,3.566 1644,-7.414143,253.94583,36.700844,91.67786,3.561 1644,285.2541,215.49539,53.274017,162.62271,3.547 1644,613.57623,113.56,35.92975,105.730225,3.534 1644,599.2962,150.16177,35.579956,98.885574,3.514 1644,338.75543,160.05937,18.67685,42.739334,3.514 1644,-9.798264,293.9577,38.124714,98.4574,3.499 1644,341.42563,184.85953,36.746185,79.315704,3.497 1644,291.18884,369.68268,33.132935,66.09607,3.496 1644,405.20886,202.65424,38.06534,90.679565,3.496 1644,114.52646,265.72638,43.43509,95.838196,3.445 1644,-5.290832,294.4706,18.020218,42.94989,3.43 1644,262.90613,179.99113,34.946106,83.9427,3.373 1644,-8.196125,71.86423,38.009384,103.739746,3.37 1644,184.75847,299.5414,22.865112,35.746002,3.367 1644,115.17268,285.21573,19.843765,37.471436,3.355 1644,199.01096,367.58765,83.49576,166.18372,3.35 1645,377.42847,204.2697,22.4263,42.355545,17.68 1645,303.1056,200.94101,26.70523,70.05353,6.776 1645,627.13275,-17.5364,17.4021,45.268005,6.129 1645,-5.900279,489.5478,18.332798,41.445618,5.783 1645,613.114,454.62476,39.65387,107.13989,5.752 1645,-6.058781,-19.05588,18.116964,43.786045,5.689 1645,3.5422194,275.53723,15.781891,31.568542,5.634 1645,-8.569089,464.7008,37.318035,91.77246,5.623 1645,623.0617,-34.612606,26.233643,74.40693,5.601 1645,-11.425009,-32.69768,29.728165,72.79752,5.398 1645,378.03595,206.7657,31.482819,68.16246,5.345 1645,-22.23611,401.26523,79.4498,177.26071,5.3 1645,287.81622,207.2872,51.719025,158.94907,5.03 1645,603.32263,-56.00273,53.37079,134.41545,5.021 1645,626.4912,487.68237,20.99347,46.039,4.986 1645,536.5455,310.5657,142.9212,341.5256,4.884 1645,582.87445,410.74457,71.9895,177.75012,4.844 1645,-20.20731,-86.09067,71.934845,195.58206,4.824 1645,33.417473,287.36224,32.04415,71.34317,4.662 1645,585.971,-102.789185,76.0589,237.83725,4.563 1645,-71.920685,269.39923,199.37845,457.6745,4.491 1645,-36.441227,-128.00534,116.6817,276.12872,4.484 1645,261.54446,492.2484,30.275543,51.331543,4.445 1645,493.67432,226.73767,237.53406,514.591,4.442 1645,-5.0444927,283.9366,17.856247,37.0495,4.441 1645,357.37164,3.3124313,30.008423,64.71,4.405 1645,-4.1900535,271.23926,16.122444,35.030823,4.382 1645,131.79282,259.7381,32.455597,69.00342,4.331 1645,594.48486,-45.955647,43.99524,99.43837,4.282 1645,196.76894,270.81677,29.55951,61.472046,4.278 1645,-71.55837,-188.99487,211.92987,454.33838,4.276 1645,490.0162,-179.35117,235.75919,421.91864,4.257 1645,314.5425,197.53531,18.509247,33.366318,4.257 1645,309.28906,189.86336,34.44568,87.60982,4.236 1645,1.5263087,285.9561,19.422415,36.08139,4.183 1645,244.67186,492.65665,31.094376,51.22928,4.154 1645,243.57268,194.91505,18.010025,35.654083,4.135 1645,432.59375,157.82724,20.191833,45.92038,4.113 1645,321.66333,196.8837,18.35083,33.82408,4.085 1645,51.910866,283.4018,31.505348,60.043213,4.05 1645,292.2448,223.53188,32.82257,80.372116,3.936 1645,117.005936,273.6926,29.13034,64.26889,3.859 1645,613.8929,115.56781,35.292908,104.068726,3.855 1645,612.0374,200.08928,37.621033,112.7231,3.843 1645,341.75146,184.27847,36.567505,79.02457,3.824 1645,-0.33715963,279.05826,25.311136,62.108246,3.81 1645,325.65182,184.18271,36.13562,81.742645,3.807 1645,202.89838,230.86418,57.50769,110.33568,3.77 1645,-10.435901,-20.335564,39.117558,100.557465,3.762 1645,306.1104,198.75291,19.841003,41.33258,3.748 1645,276.8277,492.14178,30.781067,51.25476,3.739 1645,599.5049,150.8368,35.02063,96.806656,3.713 1645,39.66519,304.6911,34.24015,71.32095,3.71 1645,619.3173,-18.19724,17.004822,41.99496,3.702 1645,278.87103,190.72299,26.406921,64.21648,3.691 1645,390.8944,205.68439,22.821747,46.19243,3.69 1645,-9.6883335,168.16931,39.891438,107.53879,3.682 1645,220.77618,270.68475,30.508606,58.11429,3.669 1645,-11.26993,279.47638,28.454952,67.314545,3.657 1645,362.22992,-12.86992,17.147552,39.72259,3.651 1645,388.53064,194.15671,37.597015,83.88458,3.64 1645,219.99129,212.88559,54.403366,111.67917,3.638 1645,229.3117,491.10873,31.229187,51.834564,3.616 1645,252.07228,194.47719,16.335037,30.446335,3.615 1645,298.69138,199.15459,21.822388,49.908585,3.612 1645,-5.4430304,301.23795,17.966553,44.146545,3.604 1645,132.83055,401.7915,30.655151,61.21585,3.584 1645,2.3478622,-17.348997,17.484203,40.68502,3.54 1645,-8.958902,309.07864,37.449226,102.51947,3.511 1646,374.83765,206.5346,22.513672,44.933838,33.585 1646,308.26978,200.33118,26.896088,68.24359,6.553 1646,-6.3435183,489.6115,18.96606,41.84607,6.457 1646,374.62866,196.53166,34.086365,82.22313,6.377 1646,627.20526,-17.524288,17.10968,44.871243,5.71 1646,-11.952605,478.17413,29.967968,63.259766,5.66 1646,-11.510921,-32.788456,29.918537,72.62452,5.642 1646,-5.976784,-18.610752,17.955101,43.29231,5.579 1646,626.59106,488.02008,20.931396,45.837708,5.519 1646,623.0482,-34.65812,26.32611,73.845924,5.503 1646,613.0616,454.63034,39.422485,106.79727,5.425 1646,-22.49762,401.2232,79.86213,176.63525,5.265 1646,305.92252,203.38455,20.65567,45.016525,5.199 1646,288.16614,205.26018,52.064117,160.93416,4.982 1646,299.6352,207.71565,21.3208,50.68541,4.963 1646,582.88354,410.69315,71.97339,177.80191,4.912 1646,-20.166832,-85.95439,71.828186,195.39832,4.892 1646,260.55954,197.14825,14.957611,28.986908,4.875 1646,536.5161,310.53156,143.0033,341.58142,4.875 1646,603.3959,-56.46948,53.26233,136.07925,4.803 1646,314.28165,201.47755,19.357086,39.559998,4.728 1646,41.4264,295.53336,31.739388,72.39627,4.573 1646,586.1111,-102.93947,75.83319,238.27814,4.532 1646,-36.32439,-127.88112,116.6044,276.32486,4.495 1646,493.75107,226.52582,237.44034,514.5146,4.46 1646,-72.08413,270.0281,199.40265,457.03757,4.441 1646,-5.554878,297.19617,17.932913,41.669647,4.387 1646,1.9036794,296.38913,20.377474,41.78485,4.34 1646,490.11768,-179.87714,235.5564,422.98517,4.335 1646,-71.577614,-189.49924,211.86313,454.70105,4.333 1646,302.6616,220.10498,28.777466,74.453735,4.289 1646,269.33292,492.78348,30.852692,50.93161,4.215 1646,594.5919,-46.47102,43.81665,100.389305,4.197 1646,23.211533,295.6019,32.40857,68.29404,4.144 1646,131.83998,262.14075,32.51384,67.45346,4.084 1646,599.6857,152.29137,34.780945,95.97856,4.065 1646,612.8683,186.75188,36.634033,109.40346,4.053 1646,321.37592,201.11035,19.37854,38.529495,4.043 1646,253.95607,195.4323,15.196091,30.464005,4.022 1646,288.03973,198.63382,25.019531,62.95819,4.009 1646,109.2945,272.65973,32.330482,60.96692,4.001 1646,-4.1241627,269.77112,15.699232,35.979004,3.961 1646,313.30273,392.86243,32.222748,70.83981,3.956 1646,3.5944242,274.4232,15.694695,32.275696,3.94 1646,355.3557,-9.417206,33.105225,65.52367,3.925 1646,613.91034,147.04337,33.910828,101.825165,3.923 1646,195.75523,281.61407,30.489197,56.37677,3.843 1646,359.81134,202.55513,28.688965,63.870346,3.837 1646,-10.338406,-20.19528,39.208035,100.66151,3.778 1646,244.36623,492.87833,31.587784,50.891327,3.765 1646,388.59534,197.95418,36.8002,82.38692,3.741 1646,234.31967,272.3427,18.445816,27.752563,3.723 1646,292.79004,392.899,33.147217,67.598755,3.684 1646,184.80598,243.43307,59.479416,112.96115,3.649 1646,392.17566,209.19577,21.440094,40.669495,3.62 1646,2.671374,-16.600231,17.011889,40.117493,3.608 1646,268.4737,197.24553,14.542847,29.002731,3.606 1646,12.276317,277.4898,14.766801,29.667847,3.601 1646,341.8103,187.19827,36.766815,77.944244,3.6 1646,-4.7836833,121.189545,14.942471,37.552307,3.59 1646,619.2492,-18.114975,16.98944,41.401478,3.571 1646,-9.4857645,167.1399,39.4004,108.7092,3.566 1646,324.12897,219.62274,39.563934,106.19916,3.524 1646,-8.406435,70.51146,37.98641,105.911026,3.519 1646,326.74026,196.165,35.264862,80.31517,3.514 1646,618.6599,490.28375,20.709534,42.27191,3.484 1646,199.09142,372.8473,84.54909,162.47083,3.481 1646,275.78748,197.99126,18.583374,36.694687,3.474 1646,378.97876,202.25641,17.389923,28.211853,3.466 1646,52.360695,286.1029,30.96576,64.509735,3.462 1646,262.7392,190.18092,35.879578,87.53343,3.462 1646,2.013101,490.4926,19.893457,40.94861,3.456 1646,405.9677,204.3806,37.45285,88.206436,3.44 1646,382.6099,208.45576,20.436554,36.198196,3.431 1646,330.9116,199.00543,16.50476,31.256699,3.426 1646,222.85367,280.3272,28.081299,56.388153,3.42 1646,-11.459432,290.7516,28.4725,66.12045,3.407 1647,373.7109,207.91484,22.237732,44.743546,15.911 1647,-6.0449944,489.53516,18.760128,42.329834,7.232 1647,302.00427,202.6073,27.302032,66.5813,6.761 1647,-11.395937,478.5195,29.038277,64.1019,6.604 1647,627.3663,-17.35419,16.953552,44.493374,6.103 1647,373.14166,210.9623,30.350342,66.91197,6.085 1647,613.0444,453.6608,39.63318,107.96866,5.655 1647,-16.544897,439.3819,54.049835,135.40167,5.536 1647,-6.2529974,-18.851112,18.379902,43.785954,5.42 1647,623.16943,-33.955162,26.127502,73.63984,5.354 1647,-11.340518,-32.929886,29.643093,73.599815,5.341 1647,2.6066394,282.56137,17.500595,32.245026,5.312 1647,-40.09362,371.06067,109.40992,271.9762,5.205 1647,260.5788,198.55444,15.857941,26.89064,5.096 1647,582.90967,410.4262,71.96063,177.95026,4.9 1647,-17.397675,-62.033676,56.61355,142.9409,4.865 1647,603.3017,-56.372013,53.374023,135.37352,4.841 1647,536.46594,310.58557,143.2052,341.31482,4.828 1647,269.57147,493.00763,30.196503,50.726562,4.82 1647,626.3467,487.10272,21.12555,46.75702,4.747 1647,253.35461,196.73854,16.341827,27.974869,4.658 1647,586.12384,-102.16571,75.755066,236.66402,4.639 1647,493.86487,226.85083,237.12146,514.29785,4.482 1647,-71.74931,269.92383,198.9143,457.6496,4.466 1647,-36.393448,-128.20374,116.78836,276.08658,4.454 1647,298.86816,201.33725,21.496796,47.47554,4.44 1647,322.6754,198.70224,17.399078,32.552338,4.419 1647,594.4123,-45.859688,43.965637,99.54352,4.415 1647,2.083832,490.45734,19.284122,40.68506,4.369 1647,-71.49689,-189.31967,211.7833,454.8598,4.359 1647,310.6159,193.06116,33.77356,84.8385,4.327 1647,490.0679,-179.33571,235.54306,422.36157,4.292 1647,279.8902,195.64413,26.112396,62.34778,4.242 1647,360.72388,200.75937,30.047455,62.200836,4.239 1647,314.99548,199.83519,17.927063,32.204605,4.198 1647,288.07956,202.84218,52.901855,153.1563,4.187 1647,291.90475,393.3592,34.575592,65.004425,4.127 1647,306.2587,201.19708,19.516785,38.286423,4.082 1647,244.92758,492.24243,30.51648,51.341064,4.047 1647,5.7434025,470.6493,37.775063,91.0625,3.979 1647,340.12115,165.5396,18.111877,40.98091,3.968 1647,109.69491,271.37033,32.032158,60.338684,3.937 1647,355.77573,-10.283432,32.408752,67.4731,3.936 1647,619.43176,-17.942524,16.683899,41.27272,3.927 1647,40.69706,293.32837,33.08204,73.92151,3.926 1647,612.52594,201.90396,37.424133,112.193634,3.917 1647,613.83826,115.267166,35.7818,103.97821,3.889 1647,-5.710541,297.46744,18.303535,40.155884,3.871 1647,52.044407,283.36163,30.6982,65.97531,3.844 1647,198.18367,273.26996,28.74324,61.42151,3.8 1647,266.28058,494.1782,20.81778,37.633698,3.765 1647,388.6277,204.34955,37.741486,84.217896,3.691 1647,405.37476,206.85646,38.43817,85.38948,3.683 1647,598.1563,122.16253,37.32312,95.78153,3.666 1647,597.7812,189.19682,38.900024,106.53639,3.648 1647,580.7298,189.69174,39.924377,102.458405,3.638 1647,281.80792,493.6929,20.660706,37.034393,3.604 1647,-0.53825617,289.82605,26.300505,61.672546,3.578 1647,131.68726,263.0226,33.268265,64.96655,3.57 1647,-4.2326694,269.9018,16.185497,35.959625,3.553 1647,325.0618,185.90167,36.72458,80.70712,3.527 1647,262.5838,180.81274,35.628296,84.32385,3.527 1647,421.16675,206.19554,38.395935,85.81569,3.469 1647,305.62946,223.97864,32.476135,75.12866,3.457 1647,362.27136,5.249592,31.096008,73.9187,3.453 1647,229.03099,489.3747,31.568985,52.65851,3.431 1647,341.55746,185.34251,37.61737,79.22093,3.43 1647,367.299,183.29399,46.59845,112.25987,3.422 1647,-10.412481,-5.3408165,40.274414,101.38628,3.414 1647,217.45633,282.15536,20.614197,38.480194,3.41 1647,284.10257,492.56387,30.964813,50.745575,3.399 1648,372.0882,206.10976,19.981476,40.035095,9.619 1648,303.14795,200.25491,27.125153,70.35425,8.395 1648,372.4746,203.96587,28.874542,64.93025,6.823 1648,627.3306,-17.172878,16.986694,44.756786,6.448 1648,2.4950771,280.41925,17.629456,34.917603,5.958 1648,623.0767,-34.68816,26.080444,74.63751,5.863 1648,-12.285929,477.20358,30.36311,63.708466,5.578 1648,-6.2594595,488.82758,18.868439,42.212036,5.575 1648,613.31537,453.5792,39.457336,107.92996,5.548 1648,-11.423388,-32.568623,29.717466,73.05372,5.369 1648,-22.460146,400.22217,79.85392,177.49463,5.16 1648,-6.248345,-18.465439,18.253336,43.160347,5.125 1648,603.3573,-55.58942,53.388306,134.21596,5.051 1648,195.92105,279.4834,31.692032,59.50351,5.049 1648,310.79044,193.69997,32.981873,84.10298,4.996 1648,380.13745,214.15794,31.22754,71.64308,4.99 1648,626.53625,488.12344,20.759827,45.909393,4.914 1648,582.8883,410.4441,71.986694,177.86835,4.889 1648,-20.223183,-86.339264,71.936035,195.65375,4.878 1648,536.5119,310.6153,143.00659,341.07855,4.872 1648,-72.216965,269.20596,199.96033,458.0991,4.58 1648,27.512623,295.574,32.67752,69.72479,4.559 1648,619.44354,-17.857458,16.701965,42.169514,4.526 1648,-36.413692,-128.77792,116.65259,276.6364,4.502 1648,586.05273,-102.50369,75.91321,237.40118,4.499 1648,493.6114,226.59961,237.46838,514.7335,4.449 1648,109.20579,271.07196,32.033897,62.368073,4.349 1648,268.7183,492.80493,31.906433,51.198364,4.34 1648,-71.33556,-189.05832,211.62823,454.8732,4.338 1648,120.85208,271.1904,58.650803,109.27658,4.331 1648,38.703674,298.77734,35.871887,72.18271,4.312 1648,490.0083,-179.56992,235.65845,422.59787,4.3 1648,594.5962,-45.5175,43.751038,98.70301,4.3 1648,187.04733,242.4176,56.999878,114.63922,4.251 1648,612.1661,200.38312,37.856995,112.40466,4.22 1648,51.993607,283.5371,31.732964,64.8801,4.125 1648,298.96155,200.00638,21.613647,49.217804,4.116 1648,123.80034,269.54822,32.788162,63.17105,4.113 1648,229.06752,490.90875,31.888931,51.620728,4.101 1648,279.07834,196.2907,25.839905,62.121414,4.048 1648,299.37195,200.62082,54.806976,158.64407,3.969 1648,362.35266,7.921406,31.431519,82.3499,3.969 1648,275.7513,201.13815,19.043549,35.689575,3.937 1648,321.50806,198.3707,18.548645,31.9178,3.863 1648,312.01077,203.33044,22.036346,45.540695,3.852 1648,326.0993,195.53625,35.33264,80.7655,3.825 1648,101.447495,282.524,29.432693,60.865814,3.801 1648,221.40012,273.76526,29.6931,59.129517,3.791 1648,11.734488,276.79684,15.161655,30.943176,3.789 1648,202.26102,161.72069,21.069824,48.652985,3.77 1648,383.3618,207.42754,22.048431,47.353348,3.765 1648,613.7831,114.377,35.613953,105.07498,3.765 1648,-10.354357,-20.06403,38.946526,100.534164,3.735 1648,220.79684,214.71263,53.04947,112.30696,3.734 1648,287.11447,197.96815,27.723114,69.697586,3.73 1648,360.84576,199.80806,28.552582,64.084946,3.718 1648,599.87195,151.51852,34.41815,97.83931,3.708 1648,262.99695,192.77666,36.064972,82.82704,3.702 1648,1.5742916,293.98956,19.685398,39.638,3.701 1648,260.593,198.3559,15.23584,27.050705,3.673 1648,207.41614,277.98264,24.545776,45.62027,3.643 1648,244.2711,492.49728,31.88655,50.645782,3.631 1648,410.3283,251.27747,35.142944,62.543945,3.568 1648,388.66772,202.48453,37.80539,91.54114,3.559 1648,-8.262566,269.59744,37.607685,92.78168,3.554 1648,341.6066,184.85968,37.322205,81.77597,3.54 1648,-4.1702223,270.19016,16.168007,36.182037,3.521 1649,307.86218,199.77637,28.360657,68.48984,7.295 1649,370.77054,207.12433,21.156403,36.719803,6.945 1649,627.1499,-17.597843,17.340454,45.12243,6.49 1649,1.7952996,278.54443,18.83839,36.821686,6.389 1649,371.30078,201.53275,28.53955,60.41751,6.356 1649,-6.1242046,488.85654,18.726624,42.27591,5.798 1649,622.9235,-34.26769,26.589417,74.77347,5.772 1649,32.91021,286.93262,34.26998,73.627594,5.754 1649,-12.156153,477.27133,30.073433,64.224396,5.733 1649,426.4085,158.50497,21.827911,60.670837,5.698 1649,-11.416768,-32.808437,29.785458,73.43552,5.65 1649,286.48245,216.7353,55.056732,180.10545,5.444 1649,613.216,453.57333,39.489807,108.059296,5.443 1649,21.881084,285.8624,32.872753,57.917908,5.415 1649,-5.957484,-18.580553,17.98466,43.70305,5.383 1649,203.01501,271.25278,29.910568,59.753387,5.249 1649,1.4178133,290.5474,21.159897,40.178375,5.21 1649,-22.344284,400.4992,79.64714,177.53796,5.158 1649,298.3026,206.34793,22.805664,51.072815,5.066 1649,253.9325,198.96297,14.462921,27.992615,5.046 1649,536.54736,310.36108,143.09863,341.3402,4.901 1649,582.87634,410.26215,72.00165,178.12921,4.878 1649,-17.491838,-62.324776,56.82415,144.00502,4.834 1649,603.1587,-56.399452,53.523438,133.49304,4.807 1649,378.37976,210.75644,31.10028,67.62512,4.674 1649,626.3948,487.30524,21.052673,46.582764,4.642 1649,586.054,-102.06825,75.81213,236.54663,4.636 1649,359.6728,201.38496,30.148315,62.778854,4.611 1649,-72.19104,269.11124,200.0651,457.80978,4.589 1649,269.4194,492.56305,30.761108,51.731445,4.545 1649,124.15312,261.2178,34.147385,66.197754,4.53 1649,285.9385,200.55743,28.912384,68.99225,4.503 1649,493.5266,227.01657,237.45575,514.1543,4.494 1649,-36.463078,-128.47493,116.8759,276.46573,4.48 1649,594.0465,-44.988754,44.50769,97.12064,4.479 1649,48.88793,284.65964,34.0922,61.64737,4.477 1649,200.87831,280.56995,22.716965,40.876373,4.394 1649,281.53366,202.42984,20.527374,41.059265,4.368 1649,619.06696,-18.265835,17.417725,42.728752,4.361 1649,490.03168,-179.58533,235.72974,422.79764,4.326 1649,185.36378,240.8624,59.20787,113.092865,4.298 1649,-71.290474,-189.19275,211.58463,455.10596,4.29 1649,259.80038,198.40276,14.744537,27.369293,4.255 1649,3.957796,286.26517,30.853163,57.095,4.246 1649,314.4415,197.46765,18.518982,33.25569,4.227 1649,216.86359,282.59387,21.661072,37.42212,4.19 1649,-4.264365,268.6719,16.84165,37.865784,4.124 1649,599.4575,152.92867,35.33539,96.79295,4.078 1649,235.23203,285.37686,19.519714,32.31952,4.066 1649,136.42686,257.34372,35.017914,69.99884,4.045 1649,262.47998,181.99843,35.969177,83.24196,3.982 1649,221.55817,276.0497,30.446075,53.57611,3.933 1649,612.3715,187.41142,37.19806,109.76311,3.904 1649,320.75177,200.98163,19.004272,35.632843,3.892 1649,-10.763388,281.95407,28.817799,65.07431,3.887 1649,305.97717,202.36218,20.94638,46.614548,3.887 1649,613.47156,113.41814,36.246155,105.644,3.865 1649,11.286517,276.07803,16.386517,31.23767,3.862 1649,122.49145,246.21817,57.02732,112.428955,3.781 1649,579.93304,187.17813,40.403076,102.382904,3.775 1649,-3.0451941,293.12222,30.347319,70.15085,3.768 1649,614.8675,-21.760027,27.16034,71.0531,3.763 1649,355.6405,-10.645481,32.557556,67.00491,3.76 1649,245.76447,191.56007,36.63202,84.681076,3.758 1649,-5.3052797,287.26343,18.744476,40.79706,3.749 1649,26.559578,288.65057,20.027203,33.29117,3.747 1649,109.159386,270.62262,33.263664,61.69159,3.737 1649,275.1784,198.34096,19.371948,37.58258,3.72 1649,252.34612,491.2387,32.123917,51.914185,3.69 1649,217.20123,232.54486,60.071655,122.15204,3.657 1649,284.5474,491.88522,30.738312,51.4086,3.636 1650,370.89737,207.73817,20.286987,35.90419,9.413 1650,627.3704,-17.14213,16.843994,44.804825,6.552 1650,-12.155992,478.15726,30.14751,63.084442,5.81 1650,623.1976,-34.33444,25.939087,74.28145,5.801 1650,-6.120123,489.34686,18.615826,41.40985,5.773 1650,38.658176,297.5065,36.021626,68.55698,5.731 1650,432.742,164.19221,20.019531,55.829575,5.686 1650,307.76364,199.58438,28.49353,68.29025,5.635 1650,613.05365,454.95593,39.607727,107.052124,5.547 1650,370.93658,201.0505,27.40979,60.15689,5.512 1650,-0.022443533,219.51686,27.696518,69.98076,5.498 1650,626.73047,488.12463,20.593018,45.277954,5.496 1650,133.70818,259.84427,31.541122,70.71936,5.452 1650,-11.570061,-32.83332,29.917067,72.80965,5.345 1650,-6.3784575,-18.850164,18.339266,43.65083,5.164 1650,-22.30754,401.24402,79.75241,176.90161,5.078 1650,286.6731,222.4559,53.311676,178.32788,5.064 1650,-17.425238,-63.070015,56.452705,145.229,4.99 1650,582.87537,410.77203,72.02606,177.90411,4.962 1650,203.36159,275.576,29.006546,58.061157,4.895 1650,536.6181,310.72644,142.83014,340.9496,4.844 1650,603.11804,-56.174126,53.553406,134.69443,4.759 1650,-72.40578,268.51163,200.10611,458.82004,4.612 1650,586.0099,-102.4464,75.877686,237.61325,4.534 1650,253.67474,199.8417,14.993011,26.677109,4.519 1650,493.7238,226.75562,237.51224,514.6398,4.458 1650,-9.730482,229.2402,29.059946,68.948944,4.45 1650,305.00964,201.33879,22.346283,46.783813,4.448 1650,-71.075066,-189.07268,211.61316,455.04254,4.421 1650,594.486,-45.79704,43.89386,98.87195,4.39 1650,339.73648,157.55882,18.681305,41.199265,4.381 1650,-36.84816,-128.52127,116.94327,277.43027,4.38 1650,2.1872377,286.3284,20.998135,38.503967,4.347 1650,619.4715,-17.529015,16.603271,41.302063,4.263 1650,533.05853,-185.74512,147.4112,427.94962,4.255 1650,259.90863,200.19392,15.330383,26.4572,4.236 1650,3.5334826,269.66553,30.040863,58.63614,4.171 1650,28.241673,292.00446,34.45657,65.16513,4.139 1650,92.181435,288.79987,32.363075,58.23239,4.138 1650,612.7198,201.2987,37.09247,111.18402,4.124 1650,144.68376,246.39644,32.222244,74.53612,4.122 1650,-5.077442,227.376,19.790806,47.947998,4.022 1650,-4.533083,141.47723,16.056877,40.467148,4.02 1650,618.5138,490.43713,20.563843,41.580322,4.019 1650,269.4766,492.34406,30.801392,51.61682,4.019 1650,313.73337,200.28317,20.494385,38.219513,3.972 1650,-9.398502,263.83313,38.78593,95.52124,3.96 1650,599.5163,151.28067,34.986694,96.32913,3.897 1650,359.44043,206.39383,30.513214,61.74286,3.868 1650,188.95796,277.43637,31.541122,58.252167,3.849 1650,186.87772,238.15042,56.970093,112.99475,3.84 1650,-11.874678,312.39682,29.769222,71.8414,3.828 1650,355.6381,-10.211899,32.634888,66.46374,3.804 1650,373.1876,201.2007,38.23752,89.419815,3.793 1650,296.1677,199.08827,26.614227,63.124985,3.776 1650,46.884872,287.24362,36.60724,63.69748,3.771 1650,-5.7514596,312.03253,17.477852,38.97461,3.755 1650,141.35695,398.998,29.256943,59.167572,3.728 1650,2.2040443,300.68396,19.616213,38.88745,3.707 1650,125.96519,397.57654,31.040749,58.95172,3.679 1650,245.04117,492.77277,30.958466,50.76245,3.656 1650,137.48904,239.17899,57.618195,108.216736,3.625 1650,321.52927,197.77594,18.303833,32.66565,3.62 1650,596.87085,198.53111,39.721313,108.48384,3.607 1650,346.5188,164.7211,17.355042,40.900574,3.592 1650,575.9044,155.35527,49.594604,132.78163,3.58 1650,613.6176,114.167534,35.961975,105.60114,3.566 1650,-9.77034,8.312412,39.50543,104.10951,3.551 1651,368.4473,206.20001,20.881866,36.939667,13.011 1651,307.71286,200.1194,28.588776,63.55809,8.02 1651,627.54614,-16.689064,16.541626,44.042976,6.377 1651,366.9304,205.37769,27.142975,65.78848,5.684 1651,18.37735,214.88802,32.537262,54.251297,5.614 1651,613.1678,453.97717,39.549988,107.43353,5.543 1651,-6.142841,488.77402,18.728844,42.336823,5.516 1651,-12.05824,477.04773,30.056366,64.37988,5.482 1651,610.68823,-46.735573,41.678406,98.66218,5.471 1651,626.3618,486.85696,21.082031,47.027496,5.264 1651,-12.548914,-40.65518,41.471306,100.93664,5.231 1651,260.16,200.85503,15.670532,28.530731,5.204 1651,137.43079,273.14963,20.958527,37.404724,5.153 1651,156.5204,258.81015,30.697906,57.64337,5.085 1651,295.9853,197.423,27.062683,65.80914,5.036 1651,165.15257,240.08064,29.043213,71.44838,5.018 1651,-6.0251055,-18.658287,17.996025,43.654816,5.016 1651,177.00046,368.164,23.01381,41.703644,5.007 1651,268.41803,492.1747,31.604889,51.974884,4.951 1651,582.9115,410.78732,71.93335,177.59744,4.945 1651,-73.04824,265.59415,200.29678,462.11716,4.929 1651,-22.026987,401.75308,79.89402,176.27036,4.862 1651,-0.7306981,207.6889,30.716555,67.747955,4.798 1651,-5.7110167,155.25606,18.4786,42.912018,4.79 1651,536.5287,310.49396,142.83301,341.0639,4.751 1651,-7.501092,215.33829,19.848856,44.065887,4.682 1651,284.30328,491.71127,31.455719,51.87149,4.648 1651,586.1636,-101.73009,75.69769,235.84035,4.593 1651,305.89166,199.0123,20.567017,40.530975,4.584 1651,153.1218,270.83057,22.879333,40.56714,4.565 1651,-19.669891,-86.36024,71.25755,196.2394,4.491 1651,-70.754005,-188.9961,211.61005,455.20007,4.482 1651,313.74667,201.51175,19.921997,35.941483,4.47 1651,493.53815,227.25256,237.38055,514.52637,4.464 1651,612.178,200.56757,37.570007,111.90411,4.453 1651,29.391031,214.7463,25.840292,40.432556,4.433 1651,155.26262,349.5583,29.43489,67.21829,4.365 1651,252.50795,491.81265,31.761703,51.901215,4.352 1651,156.5055,248.81718,52.4467,112.409805,4.319 1651,490.03607,-179.4404,235.7287,422.55444,4.296 1651,-37.05916,-127.962715,117.129135,279.8871,4.295 1651,146.39503,278.19257,21.675507,38.25528,4.265 1651,254.00024,198.28535,14.555481,29.039688,4.245 1651,-12.384767,205.01028,30.7154,66.99985,4.182 1651,-5.5895844,228.63536,18.96393,47.735764,4.138 1651,235.86465,195.01367,17.35794,35.91246,4.112 1651,619.737,-16.88847,16.140137,40.108,4.058 1651,321.62878,198.21506,18.607971,31.401215,4.028 1651,357.1945,3.2348137,30.045044,65.38646,4.0 1651,287.31216,192.51819,26.107727,64.02319,3.942 1651,-13.079916,188.71686,47.831665,135.30365,3.922 1651,18.443392,226.72208,41.51561,91.68347,3.921 1651,450.14362,271.8885,34.06732,66.1593,3.906 1651,318.11783,203.42935,24.53714,48.990906,3.839 1651,-5.863843,138.94388,18.018023,42.29271,3.825 1651,9.210375,215.21594,26.61497,47.262085,3.732 1651,128.79752,273.05017,21.595306,36.743958,3.716 1651,217.80847,286.23627,20.02797,33.619934,3.686 1651,624.2499,-21.56121,25.988892,69.62601,3.613 1651,-5.46177,264.9678,17.31654,39.56546,3.601 1651,4.3805146,223.57173,39.048267,99.590775,3.594 1651,173.30382,260.84006,53.543716,117.16931,3.591 1651,339.22733,163.95113,19.6622,42.029053,3.59 1651,-9.291129,261.76022,38.85487,99.431305,3.569 1651,1.0238183,161.65096,21.482384,46.949875,3.56 1651,591.67426,158.73032,48.046997,138.93057,3.56 1652,368.5039,208.6198,21.332458,39.040497,9.881 1652,303.31027,204.76526,25.897491,60.39395,6.511 1652,-5.961276,489.57288,18.308094,41.57715,6.444 1652,206.97534,318.42282,24.603653,49.583954,6.323 1652,627.18274,-17.152626,17.02649,44.6043,6.302 1652,289.51318,316.7197,24.06192,39.04831,6.282 1652,193.52812,306.87003,32.769943,60.68634,6.178 1652,-11.8489895,478.07782,29.48103,63.433655,6.069 1652,291.70044,302.8006,31.803131,59.617462,6.01 1652,-11.507032,-32.847603,29.99869,73.68622,5.808 1652,623.11383,-34.362293,26.194641,75.00677,5.732 1652,612.90137,455.07437,39.95813,106.71463,5.569 1652,314.2814,206.33955,19.128204,38.18541,5.552 1652,626.6226,488.52676,20.658142,44.93222,5.441 1652,365.15762,207.15364,28.737976,67.01784,5.336 1652,-6.288684,-18.714092,18.178452,43.669025,5.331 1652,21.446962,303.68356,32.33515,71.520294,5.249 1652,582.86597,410.72678,71.94873,177.61533,4.995 1652,-73.129715,265.9615,201.34824,461.8122,4.947 1652,603.3307,-55.768967,53.50653,133.90193,4.857 1652,-40.951775,364.40466,111.728874,277.1045,4.854 1652,37.204815,219.21547,40.433765,89.19447,4.846 1652,536.518,310.24838,142.7669,341.27786,4.81 1652,-17.295063,-62.33005,56.518898,143.76535,4.643 1652,298.21118,201.88866,19.03891,44.176056,4.613 1652,586.05927,-101.568924,75.6546,235.8291,4.595 1652,-17.76065,434.9273,55.601543,141.09814,4.57 1652,-2.1353877,152.0704,27.457815,73.326416,4.482 1652,493.55072,227.3092,237.39825,514.4664,4.458 1652,-70.84773,-189.16653,211.5141,455.28217,4.447 1652,90.761795,274.92313,31.130722,74.32718,4.428 1652,576.20935,158.32254,50.501648,136.38385,4.395 1652,307.6795,288.3021,31.286133,75.82968,4.389 1652,594.3978,-45.145714,43.951294,98.19047,4.364 1652,619.4744,-17.38773,16.76178,41.30425,4.336 1652,533.00635,-185.45718,147.55615,428.1076,4.321 1652,314.12854,203.80777,29.512085,58.548676,4.309 1652,611.5464,201.68045,37.82434,112.76126,4.255 1652,-37.285774,-127.15328,117.29875,280.2807,4.224 1652,14.498777,187.28906,51.110397,126.34381,4.195 1652,197.7958,230.46658,27.806946,62.511566,4.175 1652,362.76605,10.61087,31.66333,84.27614,4.042 1652,320.61316,203.53436,19.261597,35.772736,4.027 1652,-8.994256,215.78038,38.25855,99.5009,3.999 1652,0.58817506,283.46674,24.652262,75.93466,3.996 1652,3.8225687,197.9088,38.65603,100.58205,3.914 1652,122.4684,258.7532,20.316132,32.402588,3.911 1652,355.224,-11.576756,33.388,68.38089,3.869 1652,130.04977,257.69742,21.074463,32.115387,3.861 1652,618.47766,490.7437,20.652649,41.263977,3.857 1652,45.668716,300.7764,25.668884,52.83838,3.846 1652,-9.768256,168.19821,28.648846,80.943726,3.82 1652,194.94347,263.46234,42.383636,77.36676,3.816 1652,-6.819805,291.6948,37.0447,102.97034,3.775 1652,375.2436,213.52917,21.109283,41.01477,3.737 1652,613.4319,113.35567,36.051086,105.78389,3.723 1652,597.1685,198.87975,39.27124,109.09029,3.697 1652,-5.1247306,156.34544,18.356344,43.37581,3.661 1652,330.30682,206.34436,19.468689,36.202362,3.639 1652,243.91243,266.0689,16.127487,26.241455,3.626 1653,199.63623,240.90367,23.240387,43.332474,9.843 1653,314.33832,217.68877,19.289612,41.378983,8.499 1653,371.19797,211.0512,20.960083,38.459534,7.4 1653,221.58237,285.6971,30.326065,53.917755,6.835 1653,238.15091,294.02664,24.448914,44.86975,6.405 1653,627.1276,-17.38433,17.18341,44.885426,6.398 1653,1.8092334,162.93712,21.428774,54.729034,6.267 1653,-6.0185204,490.15442,18.53473,41.52594,6.247 1653,297.4509,290.1636,21.850983,32.089905,6.113 1653,-11.503882,-32.515484,29.934986,72.331116,5.961 1653,-11.951218,478.88525,30.194477,62.822144,5.848 1653,622.8334,-34.185402,26.525879,74.28919,5.741 1653,613.06573,454.30792,40.069275,107.446594,5.605 1653,305.123,292.13712,21.709656,43.41043,5.48 1653,372.22058,211.18341,29.321198,66.469666,5.41 1653,-5.947365,-18.324478,17.915989,43.063576,5.357 1653,65.53342,290.77533,34.16086,70.07425,5.159 1653,626.4256,488.44827,21.082092,45.334686,5.097 1653,-73.46828,266.01538,201.70097,461.80823,5.039 1653,603.2289,-55.818832,53.437256,134.16008,5.009 1653,-21.9944,401.41754,80.07049,176.04443,4.926 1653,307.96945,228.09244,18.555328,38.365967,4.868 1653,582.93066,410.9491,71.947754,177.41559,4.862 1653,-4.836039,155.89249,17.630991,42.428055,4.853 1653,-17.477533,-62.379852,56.565765,143.90192,4.824 1653,536.57605,310.3625,142.79529,341.26154,4.767 1653,585.9656,-101.474174,75.746155,236.37134,4.674 1653,304.73178,204.31267,26.123627,61.232956,4.653 1653,261.17163,279.39722,31.27124,57.57126,4.509 1653,-70.70231,-188.66496,211.37567,454.9981,4.507 1653,493.6944,227.47482,237.22107,514.3019,4.433 1653,533.0055,-185.30981,147.62506,427.65723,4.367 1653,365.03482,7.291107,30.509003,65.46418,4.326 1653,300.73694,230.37955,16.928345,35.287476,4.324 1653,-37.081104,-127.7311,117.11772,279.0905,4.31 1653,594.45,-45.396492,43.96747,98.29082,4.303 1653,619.2134,-17.607573,17.019592,41.8391,4.293 1653,309.4871,278.16223,29.69104,60.931824,4.206 1653,5.521772,162.33847,28.728163,77.77966,4.195 1653,-5.2212143,317.2977,16.59356,34.642914,4.18 1653,266.10104,242.08922,18.439667,28.532974,4.073 1653,13.168368,175.86884,52.64346,124.42944,4.027 1653,619.11725,148.66936,17.714722,37.711304,4.022 1653,-8.608225,213.44067,37.76267,104.272095,3.998 1653,225.48128,230.73842,20.89598,43.161636,3.983 1653,316.24985,201.71342,27.526947,53.257767,3.945 1653,439.21906,170.3841,21.536255,52.426147,3.937 1653,392.90408,224.2306,20.921844,43.053055,3.868 1653,268.28186,197.33286,15.756073,30.002762,3.839 1653,-5.1948733,177.21204,19.147694,51.615173,3.834 1653,243.36893,283.2002,31.621521,54.07007,3.823 1653,356.69214,-11.806412,32.70041,66.78339,3.798 1653,384.48114,214.08794,21.809113,44.31978,3.783 1653,599.08167,148.82469,36.43274,98.17705,3.773 1653,618.48596,490.98196,20.725708,42.045563,3.76 1653,274.85052,247.01099,41.011078,85.77472,3.718 1653,4.254917,197.16283,38.685802,104.823715,3.7 1653,2.094397,491.48077,19.640821,40.09027,3.694 1653,265.9076,282.71655,20.781128,32.163086,3.691 1653,2.6112814,-16.572773,16.977245,39.942436,3.636 1653,296.41702,209.99265,24.355316,61.32422,3.616 1653,613.5808,146.50424,34.5719,101.00308,3.586 1653,597.4564,186.72203,39.828003,106.05983,3.58 1653,-5.175907,122.57463,17.590002,41.75067,3.562 1653,30.964088,184.92752,53.402634,131.82254,3.558 1653,388.72787,203.92566,38.767273,88.446106,3.557 1653,-12.632318,150.44504,45.693657,142.25198,3.554 1653,52.32279,202.87488,41.089336,95.882965,3.541 1653,68.86754,219.01749,40.82315,91.157715,3.537 1653,227.65372,215.00714,40.208893,84.88428,3.534 1654,313.19214,283.02716,22.025085,38.601227,9.032 1654,247.5293,286.61978,22.206879,43.53067,8.788 1654,297.3689,284.6374,21.267792,37.66974,7.306 1654,254.97675,284.96378,22.759033,40.560974,7.266 1654,321.87152,217.07457,20.416992,42.34105,7.005 1654,627.06836,-17.586008,17.414001,45.307896,6.473 1654,305.0554,281.72266,22.468048,33.506683,6.388 1654,-6.041321,489.53574,18.669842,41.720245,6.234 1654,-11.926716,477.97162,29.986343,62.967102,5.928 1654,622.871,-34.41826,26.503174,75.16419,5.922 1654,379.3272,210.82011,21.104675,36.894836,5.709 1654,626.4658,488.83868,20.940674,44.840637,5.637 1654,94.15035,286.46033,27.994423,60.393585,5.537 1654,-11.5803385,-32.751728,29.818577,72.6106,5.509 1654,110.727875,224.73392,28.592346,68.09799,5.302 1654,612.9107,454.41977,40.097168,107.091095,5.26 1654,-73.50824,265.83618,201.88652,462.25525,5.138 1654,278.36676,271.13278,29.171753,56.187378,5.056 1654,603.23694,-56.209587,53.301025,135.20058,4.992 1654,-22.02948,401.11493,80.091385,176.22552,4.964 1654,-6.0336246,-18.265259,17.823227,42.486702,4.928 1654,-17.595089,-61.795174,56.927063,142.4975,4.906 1654,582.9224,410.7959,71.78552,177.46173,4.877 1654,258.96,276.1113,31.133514,51.10785,4.772 1654,536.60333,310.31696,142.8576,341.90594,4.759 1654,380.22525,207.21573,28.499695,59.0206,4.756 1654,312.54974,205.11685,24.869629,57.17865,4.72 1654,585.98486,-102.29971,75.861206,237.62321,4.651 1654,308.58362,229.84665,16.744995,34.194702,4.633 1654,393.3235,215.61966,19.632568,38.42955,4.562 1654,316.15125,268.7676,31.11435,59.774445,4.54 1654,-70.51805,-187.93263,211.09406,454.15442,4.526 1654,619.05347,-18.000973,17.198242,42.6388,4.421 1654,493.46954,227.53888,237.34235,514.3567,4.412 1654,256.87344,223.79779,20.30368,43.380554,4.369 1654,323.1352,208.9341,28.785889,68.47429,4.356 1654,378.9837,11.451485,30.8721,87.2594,4.348 1654,533.0482,-184.93417,147.58887,427.6373,4.332 1654,224.61494,246.53769,20.422195,42.36841,4.33 1654,594.50574,-46.20675,43.908997,99.51658,4.275 1654,-37.19887,-127.72353,117.1904,280.06284,4.247 1654,618.47327,490.3769,20.65326,41.91388,4.234 1654,282.53247,275.54333,20.169586,31.665955,4.199 1654,13.219895,176.41261,53.485878,125.257675,4.193 1654,-5.3822875,164.16101,19.310284,50.394684,4.174 1654,1.79847,157.05457,21.390057,55.38121,4.101 1654,371.265,-10.345448,33.32257,66.847496,4.053 1654,76.30883,292.09677,33.507942,57.942535,4.024 1654,68.22988,199.48305,39.92327,98.20006,4.015 1654,-3.7373278,317.72824,15.280909,33.098633,4.001 1654,3.9774334,315.51978,16.136889,28.06363,3.929 1654,217.15598,252.26634,21.48796,40.51619,3.9 1654,-5.5461907,208.1253,17.843363,42.599762,3.879 1654,316.75818,232.29366,16.892578,35.883774,3.873 1654,-14.093712,150.19391,47.543407,144.7655,3.831 1654,290.84805,276.18234,20.018158,30.58081,3.812 1654,328.9096,206.55489,21.782257,37.541306,3.769 1654,35.648117,200.77733,40.69462,98.81334,3.76 1654,300.0158,233.7192,16.955261,31.139572,3.736 1654,44.572838,180.19905,54.59043,123.29283,3.699 1654,85.02548,203.5236,40.536896,94.02998,3.696 1654,304.92657,209.64404,23.876404,58.702484,3.671 1654,5.427042,234.09416,29.337439,64.311356,3.664 1654,387.06213,219.65308,30.687134,64.53516,3.66 1654,-7.989706,214.70654,37.752373,101.45398,3.635 1655,238.6339,278.87494,29.205032,51.91571,8.245 1655,378.48126,208.97075,21.795227,39.597076,7.194 1655,254.4314,285.05322,23.887024,40.25934,6.831 1655,312.47845,283.4562,22.31845,32.307587,6.796 1655,296.49838,284.66623,22.98703,36.360046,6.272 1655,627.3165,-17.246033,16.930359,44.690033,6.245 1655,-12.10914,476.60107,30.489027,64.540405,5.836 1655,77.856995,291.0108,30.25618,64.94385,5.816 1655,-11.518488,-32.780876,29.928724,72.84384,5.813 1655,626.4383,488.14246,20.955505,44.977173,5.807 1655,-6.0700502,-18.705658,18.046677,43.342117,5.708 1655,613.01416,453.11218,39.20746,108.15704,5.708 1655,623.032,-34.437115,26.184631,74.36328,5.473 1655,-6.1564207,488.61572,18.949081,43.236694,5.424 1655,320.98648,208.01566,22.687866,44.642426,5.345 1655,311.3868,197.26567,26.595947,63.313553,5.167 1655,-73.2779,265.6273,201.58353,462.08585,5.044 1655,-17.643055,-61.983837,57.07014,142.23222,4.895 1655,-22.148268,400.71027,80.09838,176.45343,4.883 1655,536.7253,310.2151,142.80731,341.61157,4.855 1655,603.10535,-55.888165,53.14209,134.65689,4.797 1655,583.01184,410.158,71.66699,178.22592,4.756 1655,585.98364,-101.69822,75.81171,236.2547,4.687 1655,493.6643,227.76852,237.08142,514.53467,4.532 1655,379.97134,209.82167,28.354614,63.12126,4.47 1655,-70.6321,-188.79869,211.33499,454.8698,4.456 1655,277.2214,272.5801,30.190155,54.552063,4.369 1655,-37.074516,-127.58858,117.332726,278.64526,4.363 1655,618.27563,489.71512,20.70636,42.358307,4.357 1655,533.04395,-184.60648,147.65546,426.46527,4.356 1655,594.5507,-45.408108,43.699463,98.52879,4.226 1655,-5.8778477,211.23038,17.895336,37.35132,4.18 1655,3.954132,324.19995,16.910204,28.42218,4.081 1655,29.128456,174.88608,53.511307,130.50443,4.051 1655,1.2802768,156.9303,21.800243,54.337463,4.027 1655,315.82645,278.27762,30.746918,54.595886,4.023 1655,329.21872,205.37831,21.20694,37.84523,3.988 1655,-5.8358927,226.92438,17.46949,37.15262,3.981 1655,259.1106,282.48276,31.54123,50.358185,3.979 1655,613.17413,127.88684,35.914,104.33096,3.942 1655,393.99356,215.2283,18.910187,38.96797,3.93 1655,373.48706,-31.846107,29.25293,78.81669,3.919 1655,1.478405,269.63892,21.537758,44.40686,3.874 1655,619.39197,-17.474407,16.79358,41.07338,3.818 1655,-4.3363924,319.6711,16.065975,32.57608,3.816 1655,282.12427,275.18893,20.71933,30.986969,3.8 1655,290.39838,277.05508,20.385284,29.047363,3.77 1655,306.0352,278.82516,20.004608,28.064056,3.758 1655,300.6755,277.80582,30.489227,46.16574,3.741 1655,612.50385,201.03854,37.984314,112.666565,3.731 1655,-4.9543567,156.3961,18.185947,42.96051,3.725 1655,-14.663565,150.53232,48.327522,142.03543,3.696 1655,385.258,-13.526555,17.968262,41.80029,3.665 1655,-10.894005,-4.729023,40.684525,99.611115,3.618 1655,377.6997,-13.587147,18.238373,41.937088,3.608 1655,2.6765914,-16.592524,16.973303,39.83586,3.559 1655,597.49194,111.79738,38.65753,104.307816,3.545 1655,217.10013,253.3864,21.232224,38.349228,3.541 1655,597.48883,187.2829,39.33496,106.732056,3.514 1655,282.47278,253.88867,19.389679,29.07367,3.497 1655,-9.4483185,120.67469,39.203953,101.67376,3.476 1655,-7.8230357,227.17566,37.88886,105.527466,3.454 1655,303.70966,207.51949,26.786194,64.23253,3.431 1655,12.691565,195.0392,54.676712,139.82384,3.43 1655,-5.222571,298.08246,17.23653,38.714233,3.418 1655,274.46597,251.98975,20.097748,31.296204,3.408 1655,67.676834,202.47336,41.928383,96.73489,3.395 1656,237.92307,287.06046,24.541351,46.793457,13.926 1656,44.269386,294.84485,30.075409,66.46701,11.6 1656,311.5886,287.1618,22.753082,37.146973,8.677 1656,222.29526,277.72498,32.12256,61.76999,6.458 1656,627.37866,-16.949295,16.932983,44.557205,6.366 1656,305.9035,285.50748,21.589783,31.319183,6.1 1656,-6.292206,489.5307,18.96724,42.39685,5.903 1656,613.0777,453.83,39.43573,107.84445,5.801 1656,-11.846547,478.33676,30.019463,63.152863,5.631 1656,-11.509529,-33.05686,29.911602,73.31992,5.617 1656,-6.067701,-18.566158,18.043446,43.384045,5.464 1656,611.218,-47.970882,41.32361,101.56814,5.246 1656,626.82654,488.38547,20.513306,44.80899,5.236 1656,374.86438,206.59586,27.00418,62.81604,5.231 1656,377.667,207.73094,18.75415,34.26808,5.133 1656,316.62967,275.7079,32.096344,58.365265,5.091 1656,-73.09733,267.06274,201.72772,461.00378,5.057 1656,-40.60875,365.63293,111.13629,274.82495,4.932 1656,-17.52115,-62.152332,56.762863,143.15202,4.863 1656,583.03534,410.33948,71.650024,178.2685,4.749 1656,268.69443,274.8298,30.517944,53.767944,4.704 1656,288.84912,282.46933,22.601501,31.491028,4.654 1656,536.7866,310.4583,142.41998,341.4372,4.653 1656,59.29487,290.68472,30.947807,62.617767,4.652 1656,372.98065,-30.983795,29.223816,77.28633,4.632 1656,585.8845,-101.84987,76.160034,236.46854,4.598 1656,29.080677,292.5297,34.228313,70.035645,4.597 1656,-18.09195,435.7057,55.71312,139.61194,4.578 1656,384.2609,213.164,20.567352,42.55783,4.475 1656,493.7951,227.80179,237.19519,515.07214,4.398 1656,-70.61362,-189.74568,211.5321,455.8927,4.388 1656,-36.845814,-128.10666,117.31003,280.11713,4.362 1656,489.6063,-179.2055,236.2305,422.9112,4.231 1656,78.05086,237.40457,29.505562,63.815704,4.213 1656,305.635,191.27602,20.445923,41.20587,4.184 1656,296.91684,287.21863,23.086365,33.49362,4.133 1656,-4.7444825,202.92715,17.816448,39.595642,4.13 1656,246.06728,286.6234,23.675735,39.786865,4.104 1656,-5.1397843,279.86084,17.701954,42.40323,4.073 1656,619.4909,-17.450705,16.54779,41.12928,4.034 1656,-5.0204277,139.01543,17.197115,41.72325,4.005 1656,-6.378168,215.18503,18.00591,42.526276,3.996 1656,-14.954749,147.5409,48.3357,146.61584,3.928 1656,296.48862,198.90598,26.679749,68.75668,3.891 1656,376.48633,-15.652106,19.58316,46.345776,3.87 1656,251.06874,283.0071,32.117935,50.771637,3.839 1656,1.8494195,489.7849,19.675072,42.363342,3.834 1656,274.37796,275.6582,20.143402,29.64859,3.802 1656,3.7204683,309.8954,32.98207,58.350555,3.791 1656,393.49646,218.13545,19.074585,39.119003,3.766 1656,48.401123,287.3875,22.925613,41.6886,3.731 1656,623.7942,-21.368752,26.476501,69.94328,3.682 1656,3.1734478,143.25269,31.847452,80.82771,3.639 1656,226.96136,233.25449,41.203674,82.94562,3.63 1656,308.16684,257.82562,32.50345,66.029144,3.624 1656,275.50903,253.4667,41.003967,79.293945,3.586 1656,291.7295,267.26337,32.2106,53.149323,3.561 1656,-10.662136,-4.955982,40.216423,101.01134,3.549 1656,0.37005663,164.86078,49.14972,144.07666,3.52 1656,12.819829,263.17825,54.150646,116.58032,3.512 1656,618.98285,490.31125,19.996277,41.69821,3.504 1657,220.33858,297.5376,27.455612,54.790344,10.17 1657,372.51038,210.46129,20.039642,40.913864,9.702 1657,303.86035,301.18408,25.082977,43.194946,9.284 1657,315.22485,288.5814,32.89023,62.92511,6.54 1657,627.08044,-17.967018,17.383667,45.454758,5.966 1657,-5.9419994,490.13782,18.338062,40.7807,5.909 1657,622.8032,-34.516445,26.614746,74.59302,5.843 1657,626.3539,487.53833,20.85669,45.726013,5.706 1657,-11.556845,-32.714397,30.010023,72.65912,5.605 1657,-8.705316,464.99036,37.6762,92.20123,5.554 1657,230.99002,301.8809,22.796432,42.853607,5.429 1657,612.7785,453.75906,39.999573,108.23392,5.407 1657,-6.007962,-18.225288,17.916782,42.64435,5.185 1657,4.338436,303.19766,31.746662,87.90134,5.125 1657,-73.004196,267.305,201.41313,460.96783,4.984 1657,-40.755077,364.08817,111.21356,276.6965,4.917 1657,603.5048,-56.29882,53.295166,134.83649,4.907 1657,-17.40464,-62.543175,56.68564,143.3475,4.843 1657,536.85754,310.55005,142.57776,340.71802,4.824 1657,582.81165,410.80313,71.91278,177.79965,4.798 1657,-5.0394287,187.09743,17.398003,38.96428,4.626 1657,383.77762,214.67682,21.089874,41.825867,4.588 1657,585.91895,-102.02186,76.16431,236.35583,4.586 1657,374.10767,211.87135,26.780212,65.6331,4.578 1657,294.21692,190.34042,26.689453,61.051483,4.561 1657,493.46786,227.33105,237.27933,514.61725,4.531 1657,-70.46967,-189.39613,211.10199,455.93274,4.442 1657,297.3914,298.12372,22.920776,32.320038,4.434 1657,-36.686584,-128.2775,117.011604,279.0462,4.345 1657,489.7969,-180.00343,235.79135,423.44177,4.314 1657,-6.055272,247.9585,18.925514,42.380554,4.282 1657,241.77426,293.64755,19.914093,29.22284,4.274 1657,69.00832,274.8396,34.62774,73.07117,4.219 1657,261.15344,290.72757,30.925385,60.24225,4.209 1657,594.6271,-46.48599,44.00586,99.51961,4.135 1657,618.3004,489.31204,20.908997,42.478424,4.13 1657,-6.2589645,217.80685,18.085598,41.563812,4.12 1657,192.56442,256.20258,20.53064,40.171387,4.113 1657,372.0605,-31.792625,29.586578,79.20623,4.102 1657,-6.1174035,201.06229,18.664953,40.967484,4.074 1657,0.97869277,299.41995,21.983725,49.203156,4.067 1657,186.18791,238.9021,19.655884,43.13159,4.03 1657,619.0231,-18.682081,17.38556,42.87113,3.984 1657,-6.026102,298.5061,20.120667,45.811462,3.978 1657,252.1452,236.73389,17.690857,33.900482,3.957 1657,266.47113,284.29968,19.152618,28.303406,3.92 1657,17.259138,302.21942,34.1584,70.056915,3.911 1657,-7.564739,181.32329,36.861633,100.16997,3.902 1657,-0.6324458,241.92984,25.976244,66.27301,3.878 1657,-10.153524,286.97058,30.730593,72.0213,3.821 1657,-5.3255806,284.76593,16.978893,39.03369,3.817 1657,612.68787,201.77489,37.011963,111.98729,3.81 1657,283.6889,193.67917,19.21872,35.272675,3.717 1657,393.80505,225.86931,19.745636,37.33,3.711 1657,311.572,294.29724,22.854462,41.304596,3.637 1657,614.932,-22.356083,26.865967,70.47476,3.573 1657,-10.91289,220.3984,29.324238,67.85669,3.565 1657,459.3128,274.45737,32.197845,64.56372,3.563 1657,201.69435,266.50565,19.558304,34.985962,3.559 1657,613.21027,127.29232,36.117798,106.2208,3.558 1657,274.3209,292.29987,20.447723,28.70691,3.555 1657,597.9235,113.56648,38.740845,104.77702,3.551 1657,306.20197,292.40384,20.047424,33.05768,3.548 1657,2.4930072,-16.51681,17.361324,39.22785,3.54 1657,612.7547,265.92603,37.68329,113.807465,3.498 1657,206.65219,290.71735,33.17479,63.384003,3.492 1657,-5.0506783,153.14328,17.38443,40.62648,3.489 1657,-8.466351,101.0247,38.578262,106.51949,3.488 1657,598.21783,189.34818,38.39618,105.8757,3.483 1658,369.50626,209.86603,19.811401,39.336853,16.155 1658,296.80905,310.7461,24.749207,43.216034,8.882 1658,196.40976,303.02722,31.24826,66.12042,7.482 1658,-6.3242984,489.3158,18.842852,42.570557,5.998 1658,215.5008,313.08395,23.557968,48.138,5.863 1658,-11.390221,-32.877342,29.737331,72.76724,5.787 1658,627.16815,-17.796656,17.35852,45.393734,5.723 1658,626.2074,488.0566,21.36267,45.308136,5.706 1658,613.2577,452.79892,39.237305,108.16318,5.53 1658,-9.219791,463.76822,38.046616,93.36105,5.44 1658,291.7905,203.9367,19.048737,39.781647,5.282 1658,-6.1172895,-18.61517,18.119057,43.439972,5.217 1658,33.19951,290.10205,35.777473,80.92053,5.209 1658,610.9284,-47.958508,41.585876,101.06531,5.184 1658,-73.33413,266.62317,201.85522,461.57263,4.983 1658,-17.587996,-62.198517,56.810707,143.3339,4.835 1658,536.6892,310.16867,142.56482,341.55508,4.781 1658,582.90173,410.37512,71.79541,177.69336,4.758 1658,-21.9664,400.71625,79.97862,176.58313,4.718 1658,585.95844,-101.51366,75.850525,235.84148,4.682 1658,28.16069,280.1321,32.429153,57.788727,4.563 1658,299.63123,290.58328,33.259064,62.19864,4.556 1658,371.63318,215.84857,28.893372,64.13516,4.494 1658,493.4455,227.0456,237.63531,515.34454,4.433 1658,376.02576,210.0959,18.54309,31.920456,4.423 1658,-36.485245,-128.0873,116.62005,277.1383,4.381 1658,489.85742,-180.29425,235.6222,424.19235,4.374 1658,-70.78667,-188.98141,210.9903,454.84998,4.336 1658,618.1078,489.7755,21.290527,42.339844,4.053 1658,313.41153,206.91727,21.437134,42.302094,4.038 1658,2.752086,267.08713,18.00713,42.209656,4.003 1658,385.46445,216.40215,19.478973,40.35698,3.973 1658,2.4569802,299.57806,19.543829,47.91037,3.941 1658,314.57233,279.60016,31.827393,83.435974,3.935 1658,161.27872,259.0065,23.059235,47.20407,3.919 1658,-4.8042192,318.49564,17.425373,44.68857,3.861 1658,281.4193,189.22139,23.291199,59.614777,3.813 1658,171.33243,258.56912,32.23282,60.72226,3.767 1658,275.94714,308.52087,31.912537,55.7677,3.754 1658,365.31387,207.80455,17.681854,28.212662,3.74 1658,-8.656645,265.8228,37.68286,94.21323,3.652 1658,-5.5754046,284.5472,19.45887,46.211304,3.643 1658,2.4610515,489.84796,19.11253,42.249207,3.629 1658,618.70337,-19.039295,17.572083,43.59988,3.625 1658,1.5182638,317.72366,20.114624,45.8414,3.591 1658,371.101,-15.702892,31.553986,72.35143,3.529 1658,245.88423,300.05765,29.727676,62.35205,3.517 1658,194.43103,265.95544,18.14235,34.0838,3.479 1658,257.79245,299.36377,20.442627,30.943848,3.478 1658,287.17987,189.19489,52.34268,131.31128,3.467 1658,237.92654,216.51749,26.128723,62.102142,3.451 1658,227.66106,304.46976,30.669693,57.320587,3.437 1658,-11.043185,311.46152,28.721214,71.336945,3.413 1658,413.4102,211.11163,14.724884,31.368958,3.391 1658,2.7424753,-17.121433,17.203234,40.593,3.377 1658,307.2126,209.47903,28.829132,66.65732,3.374 1658,-8.255019,70.19299,38.198708,106.12009,3.361 1658,215.81564,221.35562,25.803253,61.504425,3.354 1658,33.552242,286.67258,21.913174,37.994843,3.354 1658,404.8105,211.20312,15.587921,32.130325,3.352 1658,165.21008,236.61516,27.469055,67.94191,3.332 1658,-9.93142,167.628,40.171806,105.63127,3.329 1658,177.32831,262.34198,20.71733,41.557526,3.318 1658,43.82589,278.33682,32.093666,62.148346,3.283 1658,362.99045,206.5369,25.011017,63.097473,3.28 1658,420.4103,206.52417,40.15503,86.4451,3.259 1658,596.88025,201.8114,40.265503,106.2222,3.239 1658,294.5618,191.1694,26.177399,62.17636,3.207 1659,370.65854,214.1012,19.755402,37.477722,17.08 1659,367.83588,212.88423,26.3685,62.435196,8.442 1659,141.66583,252.00157,26.43193,68.38551,6.345 1659,-6.0755796,490.34232,18.548662,40.880646,6.142 1659,612.9697,452.5187,39.759888,108.9346,6.13 1659,627.2185,-17.786976,17.237183,45.715244,6.001 1659,-11.51745,479.92926,29.678968,62.25299,5.917 1659,623.14417,-34.64608,26.39508,74.405876,5.502 1659,-11.5750675,-32.770634,29.897055,72.813705,5.396 1659,195.06477,319.38684,29.853897,62.640533,5.322 1659,626.33655,487.72754,21.080566,46.001953,5.299 1659,-6.1306834,-18.407858,18.072435,43.163868,5.201 1659,603.4578,-56.084236,53.09015,134.59602,4.99 1659,-21.950148,400.9547,79.88281,176.55334,4.921 1659,100.42054,275.98038,29.458122,63.882446,4.911 1659,-72.89323,267.2206,200.67613,460.42978,4.875 1659,-20.005665,-86.15886,71.5822,195.76265,4.847 1659,585.85297,-100.683945,75.8692,234.44624,4.752 1659,536.70605,310.39105,142.58301,340.57928,4.711 1659,583.04236,409.96872,71.74042,178.20016,4.679 1659,298.84155,317.66403,32.19403,60.18582,4.619 1659,291.2295,205.23468,19.350006,39.945953,4.568 1659,-36.292236,-127.66999,116.62243,276.76288,4.434 1659,493.6562,227.2922,237.23096,514.355,4.402 1659,0.7609606,314.54785,25.927292,84.33118,4.367 1659,489.90753,-179.9157,235.76642,424.29166,4.357 1659,-70.94344,-189.62224,211.58759,455.77106,4.311 1659,594.762,-46.26672,43.640503,99.47308,4.211 1659,617.9215,488.82513,21.431152,44.298584,4.211 1659,212.17224,321.81042,28.171448,58.408234,4.12 1659,-5.1436996,283.9154,17.559444,42.378204,4.017 1659,201.12341,268.77603,19.931854,33.28772,3.883 1659,2.1745772,491.58078,19.144783,39.873688,3.844 1659,84.79524,290.49332,31.008682,56.930603,3.831 1659,298.69608,200.48856,17.7818,38.415695,3.809 1659,384.1225,212.86072,21.89746,42.866302,3.728 1659,-10.690364,271.15637,28.99157,71.91345,3.71 1659,2.6951957,306.23074,19.208511,45.426697,3.697 1659,467.4037,274.2217,34.7016,68.486115,3.684 1659,-10.626522,-20.46968,39.30867,100.466965,3.682 1659,-8.348941,70.172,38.007683,105.31116,3.679 1659,-5.2459774,313.31732,17.733185,45.322845,3.676 1659,-4.92428,269.2011,17.121494,38.933716,3.666 1659,252.94594,203.44788,14.581345,27.233902,3.653 1659,271.76184,191.99438,49.344696,129.88458,3.579 1659,619.1904,-18.64632,17.078857,42.8129,3.55 1659,306.7762,222.44568,30.746338,73.11194,3.535 1659,284.6471,207.4338,18.473724,35.004044,3.531 1659,443.22003,203.54402,18.582764,32.80191,3.485 1659,4.4067087,300.7622,31.150192,77.1532,3.476 1659,295.08823,203.22319,25.259125,64.76262,3.464 1659,268.93924,202.12022,16.159576,31.935104,3.452 1659,158.84435,232.50676,52.650192,110.4554,3.444 1659,-9.934884,297.33112,27.994053,73.95358,3.406 1659,2.5973506,-16.181576,17.025589,39.339962,3.36 1659,202.30751,224.21506,18.481354,36.493317,3.359 1659,296.57132,322.70096,22.954224,36.23941,3.344 1659,276.05026,325.18185,32.185303,53.72354,3.343 1659,612.94574,125.878204,36.29474,107.36594,3.334 1659,164.65788,236.28552,28.211014,60.30359,3.319 1659,260.90982,203.50624,14.877655,28.96672,3.313 1659,276.42215,491.64496,31.376038,50.930542,3.309 1659,352.1793,179.59198,47.3851,115.03607,3.291 1659,372.4804,203.55847,37.935272,86.39987,3.265 1659,426.66772,257.94778,34.53299,61.33496,3.26 1659,603.7677,220.54576,52.042908,147.29665,3.245 1659,149.19542,272.09137,23.356735,47.657623,3.239 1659,426.13278,238.96785,20.32779,33.175888,3.233 1659,612.45654,346.41974,37.276184,112.331604,3.223 1659,155.29538,251.99384,29.83432,66.43347,3.211 1660,369.94565,208.02179,20.04245,37.0318,13.903 1660,116.2497,255.81853,29.451378,71.31621,9.054 1660,292.28055,325.92136,31.435852,57.891052,6.745 1660,-6.0122395,489.39157,18.56881,42.0502,6.055 1660,52.68091,295.61517,32.769943,70.54971,5.898 1660,627.1198,-18.053635,17.454468,45.816376,5.813 1660,371.14468,214.91402,31.803894,62.006393,5.792 1660,613.1762,452.87695,39.35431,108.30945,5.712 1660,626.3723,487.94485,21.037476,45.670563,5.542 1660,-11.395736,-32.931767,29.754536,73.30543,5.53 1660,-8.757472,464.87616,37.618214,92.4104,5.522 1660,622.94763,-34.551735,26.48053,74.44343,5.48 1660,-6.2447553,-18.661201,18.286093,43.600113,5.113 1660,603.4807,-56.318428,53.146545,135.17749,5.025 1660,-22.004015,401.05515,80.181816,176.67801,4.959 1660,-73.165504,266.10278,201.19638,461.4911,4.948 1660,-17.555672,-63.23327,56.52877,145.70717,4.873 1660,286.3962,188.4261,26.012604,63.069366,4.804 1660,585.94415,-101.46515,76.09161,235.54124,4.689 1660,536.5336,310.3439,142.89227,341.13217,4.666 1660,583.0648,410.01892,71.68848,178.30719,4.662 1660,177.93292,323.9952,32.30519,68.90781,4.418 1660,493.64334,227.44904,237.31277,514.5911,4.414 1660,-36.748814,-127.10968,116.57068,277.65448,4.275 1660,489.54755,-179.14035,236.32928,422.99124,4.273 1660,594.556,-45.844963,44.065674,99.31197,4.273 1660,-70.83527,-189.10313,211.3971,455.24475,4.263 1660,196.38748,329.17316,29.277649,58.941864,4.241 1660,233.59901,268.48868,20.212112,33.712402,4.017 1660,282.2386,193.90048,22.03186,44.240295,3.991 1660,348.9532,203.4104,16.526978,28.525146,3.921 1660,618.15344,489.12524,21.205444,43.665466,3.914 1660,16.022575,312.507,24.302166,38.215363,3.907 1660,222.00375,249.51277,29.962051,55.099747,3.884 1660,185.75761,203.94641,20.559586,40.09906,3.78 1660,268.38284,491.64578,32.026855,50.781586,3.709 1660,618.89294,-19.15847,17.508179,43.82943,3.709 1660,132.39043,182.78757,30.22911,71.32074,3.678 1660,235.77682,193.1659,16.783508,31.859955,3.641 1660,252.33255,192.20691,15.942902,31.002884,3.608 1660,359.05576,196.01239,36.409576,81.11377,3.601 1660,284.40314,491.79764,31.913666,51.227448,3.528 1660,-8.280302,40.905727,38.249687,106.196304,3.521 1660,33.13654,308.336,24.275295,43.98703,3.439 1660,322.98154,217.71411,41.22885,108.40161,3.426 1660,64.23877,287.5259,32.195343,72.43936,3.413 1660,194.9285,205.6612,19.040085,38.49884,3.393 1660,285.39432,191.50317,55.250885,156.75769,3.386 1660,-5.710998,303.22604,18.0082,42.532074,3.358 1660,2.2664928,490.83026,19.372976,40.507446,3.356 1660,298.84393,310.20386,34.081146,61.37628,3.32 1660,194.0233,275.51337,42.683258,85.37509,3.295 1660,364.73358,206.07118,18.982208,30.399292,3.287 1660,2.521516,-16.896679,17.430893,40.457592,3.248 1660,11.152346,266.13885,55.96167,108.63495,3.237 1660,306.44437,320.62363,34.147797,67.5556,3.233 1660,273.0443,188.65773,25.410645,55.380203,3.21 1660,144.16222,160.68872,21.8629,53.52791,3.209 1660,420.20663,205.76791,40.541412,85.37161,3.201 1660,458.8852,273.1043,34.027374,64.105896,3.199 1660,365.93347,182.19336,48.872467,114.80859,3.195 1660,252.66304,490.9481,31.761398,51.84427,3.193 1660,210.15587,256.97168,43.133163,88.315704,3.177 1660,227.9581,262.79523,31.37555,62.63672,3.172 1661,369.20395,209.14186,20.846771,46.46187,18.465 1661,84.512794,266.57565,32.118454,76.95627,7.335 1661,371.24396,215.63173,28.564117,64.87108,6.578 1661,188.43956,337.8665,28.27034,60.62393,5.841 1661,-5.954743,489.52884,18.461344,41.58835,5.837 1661,627.06415,-18.123096,17.399231,46.13289,5.774 1661,-11.750891,478.32556,29.87845,62.9834,5.755 1661,613.20917,453.1658,39.576477,107.955414,5.68 1661,-11.3943615,-32.606167,29.675772,72.60149,5.616 1661,626.2501,487.49207,21.270264,46.029724,5.477 1661,622.73486,-34.85402,26.536072,75.147385,5.464 1661,-6.1015472,-18.51315,18.076717,43.036182,5.436 1661,603.4871,-55.909805,53.224915,135.48802,5.201 1661,291.50195,330.5938,31.286163,65.13873,5.18 1661,-40.140324,364.52164,110.56766,275.77792,5.162 1661,95.62832,270.18536,33.14228,75.23486,5.044 1661,-73.254814,265.83752,200.96194,461.94214,5.005 1661,-17.582573,-63.017143,56.630043,145.34477,4.839 1661,171.0148,334.36603,30.382568,66.88321,4.817 1661,-17.636984,436.6781,55.314384,139.85535,4.724 1661,536.4415,310.45047,142.81763,341.06564,4.689 1661,585.9228,-101.1846,75.944214,235.21088,4.671 1661,582.93536,409.87158,71.87421,178.6576,4.631 1661,268.38678,492.15442,31.777985,51.36023,4.452 1661,594.5135,-45.964176,43.91565,99.94879,4.431 1661,292.67877,491.11557,31.252472,51.718353,4.394 1661,493.38394,227.43774,237.65659,514.48224,4.377 1661,-70.582085,-188.48395,211.48135,454.41324,4.344 1661,-36.83336,-127.23459,116.63889,278.21994,4.333 1661,489.64053,-178.71056,236.08646,422.864,4.28 1661,103.29087,212.13512,24.152145,44.085403,4.202 1661,358.82077,200.6022,36.349457,89.21692,3.995 1661,141.18315,218.17503,53.079376,119.97511,3.892 1661,112.14097,209.66788,24.03666,45.511246,3.766 1661,618.9881,-18.995077,17.606628,43.758938,3.758 1661,290.4436,279.57037,18.430725,37.65027,3.751 1661,-6.9708753,327.52032,36.72913,98.65558,3.714 1661,70.94128,272.76526,31.276093,66.25766,3.672 1661,260.86398,199.16183,16.041473,30.739517,3.645 1661,365.01996,206.15921,19.489563,33.14572,3.625 1661,-8.407888,41.53089,37.871902,105.42358,3.621 1661,227.52753,257.9965,29.582031,50.74521,3.576 1661,-8.631712,309.90344,32.685837,79.4216,3.541 1661,158.2773,226.333,53.533905,126.06569,3.51 1661,282.94284,199.2733,19.634613,37.355484,3.51 1661,233.45673,279.26263,20.057999,31.91742,3.508 1661,290.11658,198.55139,20.003204,39.189087,3.505 1661,252.50275,491.1107,32.492706,51.874847,3.502 1661,26.524368,288.70944,33.639286,59.794464,3.494 1661,268.92786,197.68617,16.075836,30.5475,3.451 1661,325.81982,81.3112,27.483856,75.13774,3.439 1661,2.1678567,491.3906,19.277918,39.857758,3.439 1661,253.09892,198.56026,15.404678,30.00708,3.392 1661,300.05295,291.1801,32.526062,64.298706,3.386 1661,193.82697,255.55203,45.403915,88.76337,3.372 1661,618.03,488.87555,21.372925,43.773865,3.354 1661,612.47565,203.60422,37.379456,111.11279,3.35 1661,178.31375,222.95403,20.105255,37.254623,3.34 1661,384.39883,216.4175,21.213776,45.14302,3.333 1661,79.41562,234.69832,51.334183,113.79234,3.326 1661,283.74286,189.94644,55.635468,154.09073,3.324 1661,58.21627,270.15057,31.201958,63.959686,3.276 1661,301.15887,203.91327,28.791199,59.056366,3.272 1661,614.9724,-23.178316,26.608032,71.57773,3.25 1662,367.57657,209.74469,21.283905,43.429718,16.538 1662,-6.3778687,489.2035,19.102577,42.638794,6.49 1662,-12.140078,478.57663,30.207893,62.52762,6.07 1662,626.1736,488.1246,21.352783,45.514313,5.863 1662,-11.393538,-32.71641,29.817776,72.857735,5.742 1662,613.0514,453.23587,39.50592,108.691315,5.729 1662,627.0423,-18.22747,17.568542,45.66699,5.687 1662,182.92351,360.24634,22.264755,44.96051,5.47 1662,611.1024,-47.957676,41.504456,101.51157,5.372 1662,-72.72232,265.2428,200.36197,461.64954,5.099 1662,-6.15497,-18.624836,18.186607,43.077362,5.073 1662,-41.055527,364.72742,111.542625,275.64478,4.916 1662,48.21343,277.3602,37.177746,78.884125,4.893 1662,-17.499311,-62.491386,56.758965,144.82043,4.74 1662,536.41425,310.55463,143.03577,340.39648,4.719 1662,582.94617,410.45792,71.83588,177.84518,4.659 1662,585.90094,-101.150116,75.876465,235.23691,4.648 1662,143.01718,159.84958,23.010925,51.783554,4.634 1662,277.03998,491.57605,31.361755,52.188843,4.557 1662,217.25854,277.9647,21.572968,35.361664,4.478 1662,493.3966,227.74515,237.55127,514.35986,4.472 1662,-71.096275,-189.23842,212.0503,455.84106,4.452 1662,364.08093,209.1385,19.26242,29.303009,4.369 1662,269.42868,198.35188,16.00473,29.083557,4.326 1662,290.55447,336.8682,32.237885,63.247925,4.279 1662,-17.773998,432.99493,55.276196,143.29492,4.26 1662,489.45654,-178.66623,236.45581,422.23645,4.236 1662,-37.201927,-127.039505,117.24449,279.05014,4.18 1662,205.96498,262.05606,31.318985,54.0047,4.153 1662,618.26105,489.21674,21.112122,43.66815,4.134 1662,160.04463,358.08224,23.035782,49.956482,4.13 1662,260.6141,490.73105,31.908295,53.1622,4.014 1662,66.279724,204.74239,32.82345,58.789444,3.993 1662,292.51233,490.66602,31.45346,52.875732,3.94 1662,618.7593,-19.237383,17.70581,43.489105,3.902 1662,2.3524785,307.82123,30.141045,74.80008,3.821 1662,419.31335,254.129,34.78607,67.017975,3.821 1662,358.1741,195.05112,37.116455,82.27908,3.818 1662,261.94217,200.9639,14.870422,28.452087,3.766 1662,268.29703,339.39047,31.05597,52.367157,3.738 1662,165.3591,207.42265,31.084915,63.019638,3.732 1662,163.89114,342.82474,30.819092,66.87845,3.73 1662,-4.7379394,314.19165,18.991642,43.663666,3.729 1662,347.886,205.32175,17.057495,27.325714,3.726 1662,-0.4813409,282.67255,50.71847,119.614685,3.652 1662,181.67252,200.89264,29.356766,62.43622,3.649 1662,2.1433158,488.8911,19.599144,43.15497,3.645 1662,169.53645,369.81802,20.80542,37.675995,3.642 1662,370.90863,216.4997,29.628937,67.45038,3.608 1662,51.164326,205.84671,34.177578,68.897766,3.584 1662,253.45366,195.71732,14.477737,27.092651,3.561 1662,290.73047,200.30412,19.163483,37.128586,3.525 1662,1.9779718,306.7679,23.044077,43.82196,3.489 1662,-5.7295585,290.7239,18.387133,42.961884,3.478 1662,276.90396,200.63936,17.081451,33.00363,3.432 1662,420.00397,204.88008,41.382782,85.942795,3.43 1662,167.36768,277.5545,23.109756,40.08893,3.419 1662,223.75156,267.6384,22.569,37.62152,3.379 1662,3.743049,287.4901,32.517952,67.5054,3.366 1662,264.07114,347.567,21.224884,30.09079,3.359 1662,127.121796,221.15385,51.807922,132.94118,3.32 1662,-8.9773445,334.54062,37.763863,114.81064,3.31 1662,288.24704,348.17444,23.266113,44.96164,3.292 1662,-11.3769865,-2.8647385,41.187244,101.53178,3.289 1662,-8.721018,69.03633,38.901653,110.04024,3.26 1662,597.06934,174.74646,39.716736,112.06293,3.252 1662,151.75865,161.9223,21.68483,48.443176,3.247 1662,2.5678782,-16.580105,17.356228,39.781345,3.214 1663,370.58453,210.02377,20.269806,43.376404,16.093 1663,88.412155,237.56746,22.660828,33.21068,10.215 1663,-1.1934054,298.52,32.217083,86.03067,6.873 1663,627.18085,-17.926472,17.334229,45.48527,5.877 1663,-6.468387,489.3285,19.291037,42.7583,5.819 1663,-11.9977455,479.07547,30.044249,61.764313,5.674 1663,613.03125,453.64432,39.888306,108.2695,5.628 1663,623.0051,-34.589855,26.50354,74.23706,5.547 1663,196.93188,271.40393,31.186615,56.670593,5.485 1663,-6.1471725,-19.128464,18.2487,44.26388,5.285 1663,220.44232,263.33157,29.842346,59.91989,5.262 1663,626.408,488.42358,21.065613,45.56848,5.252 1663,-12.670589,-40.87179,41.660778,101.07158,5.217 1663,-40.46109,365.17285,111.09814,275.18213,5.153 1663,174.24374,375.90607,22.7966,42.135956,5.062 1663,603.27405,-56.239094,53.424072,134.74884,4.977 1663,-72.63925,266.25143,199.76813,460.81522,4.894 1663,583.0128,410.27386,71.81152,178.0318,4.727 1663,585.9873,-101.46521,75.91162,235.49837,4.678 1663,536.46924,310.68915,142.91827,340.74432,4.674 1663,284.93875,491.66895,31.165253,51.982788,4.628 1663,0.9194732,200.4617,26.765837,79.96753,4.622 1663,-19.94225,-86.54208,71.41434,195.97418,4.607 1663,151.98866,375.9546,22.37175,44.245453,4.575 1663,-70.86944,-189.36057,211.96213,455.7723,4.502 1663,286.02246,196.91748,26.623535,62.914978,4.496 1663,594.28845,-46.0936,44.274414,99.50106,4.476 1663,216.3124,286.355,22.846756,35.22928,4.428 1663,493.6786,227.44434,237.14343,514.8627,4.394 1663,-18.146967,435.63763,55.872993,140.33429,4.388 1663,201.16005,292.58417,22.219757,36.11554,4.358 1663,268.68652,492.01663,31.672089,52.116913,4.334 1663,160.54617,206.02336,23.400055,43.661545,4.321 1663,372.89493,196.25063,36.566193,83.31389,4.304 1663,-37.13415,-127.649284,117.24945,278.63293,4.268 1663,489.26297,-178.79338,236.63821,422.53683,4.226 1663,183.49054,198.06915,29.396912,68.9382,4.219 1663,156.02898,357.3789,31.037216,67.347046,4.204 1663,83.37306,243.89662,21.112991,33.259354,4.198 1663,359.6378,196.64551,35.351868,81.61499,4.106 1663,-9.737712,291.32925,30.740997,75.62137,4.098 1663,149.37402,201.64056,30.705872,58.796295,4.057 1663,364.86792,209.64085,19.845062,34.881577,3.996 1663,192.70815,291.4404,22.66829,38.753998,3.924 1663,73.680145,237.12762,21.072617,36.104492,3.86 1663,236.49017,266.69843,30.773804,57.65387,3.813 1663,-5.4841304,212.38698,18.474125,46.9962,3.789 1663,252.60892,491.84665,32.084473,51.81375,3.789 1663,224.30545,267.0586,45.381226,96.58493,3.761 1663,619.2048,-19.00712,17.14801,42.793,3.746 1663,612.5369,202.23656,36.598694,113.20436,3.708 1663,249.58809,266.96155,22.97145,40.723877,3.696 1663,618.20514,490.02396,21.28534,43.211823,3.695 1663,9.075623,293.72046,34.36097,75.51318,3.69 1663,268.0111,354.40765,33.283295,55.207123,3.661 1663,83.65039,210.33466,41.517677,85.288635,3.658 1663,290.6622,357.2019,31.513336,64.315796,3.622 1663,202.74507,275.54828,56.75847,119.76105,3.609 1663,-8.838064,100.96831,38.366455,105.60603,3.599 1663,347.29984,207.33783,18.658447,33.63994,3.597 1663,180.65947,276.4071,30.390488,57.11606,3.585 1663,-5.214177,167.6249,17.337254,43.78607,3.544 1663,235.27936,229.49033,55.810516,129.31155,3.529 1663,355.28714,207.20229,19.074432,34.45755,3.498 1663,192.67294,267.3769,44.699585,94.18567,3.477 1663,-14.153469,282.1944,49.28266,136.56305,3.458 1663,115.1931,265.35977,32.311844,66.3967,3.44 1663,172.87009,257.44907,54.139526,120.655396,3.433 1663,-10.386205,8.366539,39.850304,106.06461,3.419 1663,590.7835,158.61066,50.58319,152.13522,3.404 1663,209.82431,293.12247,21.165909,34.97699,3.399 1663,276.96988,273.31674,30.673584,71.61804,3.395 1663,282.53778,210.2725,58.00235,166.25276,3.391 1663,100.517845,201.8462,40.37278,82.083145,3.385 1663,216.66031,266.847,23.60141,43.559296,3.383 1663,297.39813,493.31454,21.510986,38.39261,3.375 1664,373.92926,210.95027,21.069824,41.554703,11.206 1664,-5.9428225,489.20688,18.616323,41.79367,5.93 1664,161.85457,208.57445,21.362274,40.75824,5.632 1664,627.17395,-17.977787,17.128174,45.396088,5.601 1664,-8.897259,464.60284,37.60292,92.370544,5.502 1664,613.0803,454.20065,39.44684,107.815155,5.394 1664,623.0887,-34.22498,26.390625,73.84946,5.393 1664,626.1529,487.68845,21.234314,45.6091,5.349 1664,-11.288597,-33.294476,29.826794,74.58981,5.286 1664,-5.9540596,-18.382109,18.030382,43.536503,5.259 1664,187.80585,280.77423,32.127853,54.490356,5.141 1664,-22.223377,401.63037,79.66576,176.60168,5.119 1664,284.71896,491.9302,31.468018,52.144257,5.037 1664,-17.63914,-62.749214,56.736824,144.18443,4.924 1664,-72.7999,267.59216,199.77943,459.97375,4.79 1664,603.4088,-56.922943,52.894287,135.48827,4.742 1664,582.9104,410.6022,71.822205,177.59158,4.717 1664,170.21744,285.38995,34.33699,56.84024,4.699 1664,536.58496,311.13324,142.88281,340.12524,4.694 1664,165.83646,388.88565,24.165802,43.993073,4.688 1664,-5.2458563,170.39525,17.950485,42.156235,4.656 1664,585.76605,-101.730255,76.15643,235.86269,4.647 1664,373.43784,195.43799,36.265472,85.756714,4.564 1664,493.73602,227.18927,237.26361,514.8917,4.489 1664,-70.844666,-189.10406,211.77444,455.39548,4.407 1664,-4.963059,215.17986,17.193031,43.83745,4.405 1664,268.49078,492.08752,32.065796,52.69934,4.335 1664,-37.32252,-127.94284,117.37433,280.0309,4.232 1664,489.1881,-178.89426,236.9292,422.21906,4.226 1664,594.60657,-46.448887,43.872925,99.43752,4.211 1664,196.03087,267.0112,30.934921,60.880707,4.207 1664,383.33997,210.54776,20.927277,39.44586,4.025 1664,183.54677,291.6482,25.02504,40.536407,3.967 1664,5.8874965,205.55624,27.28479,70.21915,3.941 1664,153.17822,209.34851,22.165894,38.026245,3.938 1664,252.30019,491.31888,32.19905,52.11032,3.915 1664,122.13443,281.8507,20.189026,42.987885,3.815 1664,146.22649,163.5771,20.808502,45.632797,3.805 1664,-4.308011,157.797,16.791622,37.118454,3.798 1664,-4.536896,188.68755,18.03412,49.550064,3.793 1664,617.9479,488.97498,21.470398,43.60858,3.78 1664,359.9845,195.44583,35.955383,82.70407,3.753 1664,326.73865,197.51373,35.64319,77.43732,3.751 1664,310.30246,195.10608,34.623627,80.72891,3.729 1664,165.81439,203.16707,28.340546,60.63994,3.727 1664,141.95782,210.3663,29.267456,56.399017,3.699 1664,198.4701,368.53986,83.688995,165.30951,3.689 1664,139.60419,376.01224,30.544052,65.641174,3.637 1664,209.04422,282.5227,21.968506,40.31839,3.607 1664,253.33427,197.13173,14.011368,27.715881,3.601 1664,-8.755508,102.45884,38.552734,104.16961,3.601 1664,-7.572006,294.93265,36.151928,103.493866,3.59 1664,201.49686,300.7892,21.823639,33.344147,3.581 1664,619.1346,-18.649426,17.222717,42.37093,3.558 1664,114.5937,280.78845,20.67942,46.12393,3.544 1664,2.6938105,-17.197586,17.165977,40.972965,3.5 1664,13.014881,167.75027,53.633175,139.66019,3.493 1664,212.18834,272.54474,29.147964,58.99817,3.489 1664,435.4807,260.20395,34.13086,60.825928,3.488 1664,354.92462,208.33994,18.203857,32.800995,3.418 1664,2.226144,490.32776,19.43651,40.58185,3.404 1664,-9.170764,184.87424,27.705666,72.18509,3.4 1664,300.1341,490.2127,31.498566,52.65869,3.394 1664,484.02042,163.68593,15.065399,32.039932,3.382 1664,613.03723,126.60775,36.554077,106.54734,3.374 1664,29.195465,197.85526,30.156994,62.86078,3.37 1664,262.026,370.20886,83.18829,166.0102,3.362 1664,-14.961081,179.41402,49.223434,152.2429,3.35 1664,231.64746,368.06836,82.543304,163.15295,3.34 1664,138.11409,211.83173,21.739365,36.28157,3.339 1664,343.0152,195.11566,35.097626,79.33978,3.339 1664,388.6847,262.19595,30.982056,67.40274,3.338 1664,100.2224,274.5716,30.254288,62.895508,3.327 1664,3.2479472,160.48029,18.3698,35.821472,3.31 1664,146.10342,207.12277,20.838379,33.57396,3.306 1664,388.15005,205.66618,38.48172,87.80989,3.305 1664,305.71106,231.4534,21.57669,46.823578,3.301 1664,296.99585,492.75604,22.055847,38.899902,3.282 1664,161.4372,291.90625,22.467133,37.19211,3.277 1664,612.7351,203.35162,36.87555,110.52014,3.267 1664,165.73463,368.78915,84.617676,165.33456,3.264 1664,419.55734,274.8601,32.198486,69.31186,3.258 1664,612.5048,344.97586,37.120667,112.741974,3.252 1664,268.24545,365.83795,32.085693,52.592163,3.248 1664,282.87097,199.49588,19.341675,40.506485,3.245 1664,420.36465,205.57535,39.840393,87.16284,3.203 1664,-10.074544,151.20944,28.617027,67.27457,3.185 1664,-0.91602206,213.84444,24.8682,78.59392,3.184 1665,376.6196,210.11346,20.409027,42.188293,28.6 1665,626.4027,487.93542,20.850586,45.64386,6.123 1665,627.00793,-18.01133,17.425537,45.669247,5.726 1665,622.49744,-34.37964,27.004272,74.42484,5.705 1665,-6.0516834,489.2308,18.6315,42.695282,5.673 1665,-11.521034,-32.84085,30.027145,72.78754,5.626 1665,-8.772867,464.73502,37.515846,92.039154,5.596 1665,-5.0438113,170.11638,17.7885,42.27487,5.553 1665,613.29553,452.4878,38.55664,110.03204,5.525 1665,203.9703,285.40326,31.319855,63.2464,5.467 1665,-22.203999,401.06317,79.42549,177.17822,5.264 1665,-5.89375,-18.343678,17.822437,42.80709,5.154 1665,603.4181,-56.22693,53.209045,134.17291,4.927 1665,536.3849,310.94434,143.20569,340.68237,4.813 1665,-17.471495,-61.710167,56.87709,142.82872,4.744 1665,-72.68222,267.39355,199.69562,460.5476,4.724 1665,582.99084,409.8014,71.735596,178.74207,4.717 1665,147.5625,408.3034,30.32071,54.398468,4.712 1665,585.9492,-101.256516,75.913086,235.00484,4.675 1665,-14.492605,184.67267,46.93006,142.47821,4.594 1665,374.24536,195.8677,35.388916,83.827545,4.546 1665,132.64688,253.61058,33.491028,76.894,4.539 1665,493.4752,226.332,237.48618,515.0366,4.528 1665,-71.09248,-189.4907,212.1427,455.46582,4.518 1665,356.04932,211.94911,17.13617,28.537567,4.444 1665,144.63522,207.43631,23.11119,42.961075,4.423 1665,-2.0782423,162.92136,26.754993,73.893875,4.41 1665,277.47586,490.8789,30.874939,52.838135,4.315 1665,-4.910555,199.63957,17.801935,43.698257,4.303 1665,-37.520065,-127.43442,117.371414,279.42795,4.252 1665,489.48553,-177.77808,236.37317,421.8171,4.252 1665,594.5088,-45.782455,44.184875,98.7988,4.224 1665,-4.8879437,219.29028,17.719212,39.636627,4.195 1665,19.867527,222.99,41.527653,89.52562,4.134 1665,-3.7906995,157.27689,16.20545,37.67543,4.125 1665,216.07184,288.17926,22.971878,42.625977,4.119 1665,36.756695,224.79393,40.79581,86.583694,4.065 1665,252.12509,491.43924,32.14261,52.391083,3.982 1665,2.217,164.90973,19.21083,39.708145,3.965 1665,300.0788,231.97339,29.393433,75.329956,3.912 1665,333.5211,66.121056,28.219086,71.37354,3.893 1665,1.460762,207.14542,49.761158,127.75244,3.836 1665,-3.9980836,142.53757,14.697308,35.705887,3.835 1665,188.10365,245.27693,55.157455,118.519455,3.787 1665,133.30563,209.78294,31.628983,66.60469,3.719 1665,-9.598275,72.733154,39.910473,103.5712,3.61 1665,620.7004,122.91596,17.759338,42.498528,3.569 1665,618.3678,489.42557,20.873291,42.823273,3.567 1665,0.4721892,214.2034,26.300657,64.14606,3.561 1665,618.93744,-18.68052,17.687134,42.884186,3.559 1665,326.62134,199.54971,35.73343,80.31882,3.538 1665,221.06477,286.72943,30.388092,62.12274,3.526 1665,189.02374,285.9045,31.561646,62.273987,3.507 1665,342.39227,197.36629,35.015106,80.4276,3.506 1665,2.7403784,-15.994173,16.90675,38.976833,3.495 1665,219.56245,238.1737,55.46132,124.07587,3.475 1665,-10.804403,293.65982,30.116568,71.490875,3.471 1665,306.13452,217.34294,20.250519,37.64952,3.461 1665,364.4008,212.19781,17.43396,29.21556,3.46 1665,372.95834,208.85512,17.60437,29.817139,3.436 1665,292.54187,490.3464,31.236969,53.257355,3.434 1665,394.56027,207.41975,18.268402,32.617844,3.423 1665,2.1768272,490.59222,19.472301,41.065002,3.417 1665,12.443188,158.55441,54.843174,128.54434,3.384 1665,152.64368,216.71013,20.839966,39.656204,3.353 1665,133.92198,396.73242,31.57042,62.016937,3.329 1665,309.2477,207.92647,35.359802,84.015854,3.319 1665,299.59027,209.99217,19.167328,36.836655,3.313 1665,388.29312,205.7378,37.923065,86.76422,3.308 1665,-10.378361,150.81302,28.606127,67.86919,3.305 1665,-10.694542,-4.573448,40.416527,102.15579,3.293 1665,290.3966,206.5163,19.860931,40.41652,3.29 1665,360.12485,197.27194,35.87558,80.913605,3.29 1666,374.75336,207.76532,22.497894,44.349533,13.262 1666,626.30054,487.28766,20.949097,46.35193,6.089 1666,627.2473,-17.682276,17.129028,45.141792,5.991 1666,-5.939168,488.80264,18.45654,42.69577,5.95 1666,-11.83987,476.39648,30.105387,64.723816,5.705 1666,613.0748,453.97498,39.359375,107.80731,5.64 1666,623.0914,-34.40017,26.293152,73.67221,5.566 1666,-11.676798,-32.096104,29.896336,71.38468,5.522 1666,-6.021953,-18.109406,17.949463,42.11192,5.353 1666,-22.20647,401.4479,79.42476,176.56693,5.102 1666,4.0019655,218.05234,32.10085,73.56613,5.076 1666,-17.611282,-62.32392,56.862194,143.41396,5.065 1666,603.4201,-56.310707,53.254944,134.21902,4.89 1666,536.5244,311.02777,143.02948,340.84357,4.757 1666,582.9864,410.5455,71.80939,177.94669,4.73 1666,585.8717,-101.77922,76.11261,235.85019,4.634 1666,-72.60784,267.00418,199.80179,459.9554,4.608 1666,-5.5826306,168.56491,18.401548,42.500732,4.598 1666,277.6543,491.95923,30.74115,51.72461,4.583 1666,125.15664,257.83307,31.140648,76.41809,4.58 1666,-5.019146,198.35709,18.237297,44.627014,4.547 1666,3.0979192,162.27441,19.916782,41.51033,4.488 1666,373.94153,194.91566,36.427246,84.20262,4.477 1666,493.40674,226.49316,237.66718,514.8209,4.432 1666,-70.796555,-189.21391,212.01057,455.14966,4.422 1666,383.01852,206.74991,21.121155,38.563156,4.332 1666,-2.9860306,318.03787,27.37762,79.6239,4.295 1666,594.61566,-46.08392,43.87201,98.56966,4.292 1666,618.0131,488.70813,21.326721,43.545288,4.283 1666,-37.280743,-128.03732,117.28436,279.45905,4.179 1666,-14.289288,216.56038,48.130756,129.45341,4.167 1666,489.13342,-177.51193,236.8772,420.92706,4.158 1666,124.88205,203.25359,29.911423,61.502426,4.158 1666,1.1111927,192.41235,26.539434,69.59323,4.117 1666,189.15558,249.0712,53.410645,119.12842,4.097 1666,1.4267445,237.97733,27.366077,71.31348,4.086 1666,84.864105,195.4281,38.718277,87.82269,4.077 1666,12.821257,199.04501,52.708405,112.89145,4.055 1666,211.7859,275.05374,31.015793,65.34149,3.992 1666,619.3189,-18.270267,16.87793,42.027363,3.935 1666,-10.339458,157.01477,28.886902,67.98811,3.924 1666,309.20798,193.97855,36.209137,84.53946,3.915 1666,292.23,490.51782,31.10788,52.24536,3.907 1666,289.38632,493.00696,21.557922,37.959167,3.861 1666,35.565243,224.44849,41.473347,82.18628,3.849 1666,-6.189466,222.77756,18.638533,44.093536,3.829 1666,144.9549,205.4114,23.096558,45.11171,3.826 1666,152.58836,202.71944,23.063461,41.90425,3.701 1666,93.45597,184.79958,52.540443,119.478195,3.686 1666,260.37158,490.08044,31.83783,52.821655,3.654 1666,299.12653,200.45813,19.87146,37.919434,3.652 1666,145.75836,223.00423,19.983597,42.616287,3.631 1666,150.39554,207.617,30.23529,71.213135,3.622 1666,194.0928,271.85065,31.651901,66.35309,3.621 1666,220.88138,239.27725,52.886353,122.8407,3.592 1666,18.851004,234.77911,32.50138,64.23242,3.588 1666,-9.326118,71.901276,39.452065,103.10065,3.558 1666,325.45486,196.43802,37.60263,80.05368,3.527 1666,230.21263,274.32718,31.057022,65.9447,3.518 1666,2.700376,-16.282438,17.107416,38.56783,3.501 1666,314.7088,208.50247,57.383636,154.1387,3.493 1666,51.885914,211.0033,41.632854,87.39459,3.472 1666,294.66006,193.31696,37.067383,85.392395,3.439 1666,382.2023,179.43811,50.34561,118.38623,3.425 1666,-14.27491,152.24237,48.556465,143.30142,3.416 1666,2.1832013,489.90204,19.426191,41.05768,3.415 1666,-10.466443,8.77364,40.02983,105.35794,3.403 1666,-0.38751483,161.27034,26.877836,75.16048,3.398 1666,304.89832,228.03798,30.86792,81.0078,3.398 1666,136.88101,201.91107,22.451736,41.076797,3.395 1666,68.847115,198.27948,40.724007,84.532166,3.394 1666,-4.419665,140.36816,16.442513,39.26538,3.383 1666,451.76175,244.30475,41.374786,95.05792,3.382 1666,353.65698,181.94624,47.013763,113.198105,3.381 1666,-6.194504,252.64693,19.233137,47.399582,3.37 1667,371.91342,211.08151,20.08847,39.28888,13.899 1667,-6.1265397,489.44077,18.89778,41.60324,6.004 1667,627.2161,-17.301537,17.100525,45.020885,6.001 1667,-11.557222,-32.342045,29.95797,72.542496,5.735 1667,626.3221,488.02396,21.04425,45.775726,5.731 1667,-6.1729503,-18.471428,18.210514,43.320934,5.593 1667,-12.0180435,477.54404,30.356504,63.388824,5.579 1667,613.00775,453.42444,39.65033,108.64441,5.516 1667,622.99963,-34.260193,26.358948,73.71389,5.406 1667,-22.159586,401.75446,79.403015,176.32,5.135 1667,603.4931,-56.447556,53.20575,134.8909,4.934 1667,582.96014,410.91605,71.687744,177.26962,4.874 1667,203.97165,303.25906,31.643707,62.280212,4.838 1667,373.37836,197.02586,36.66095,83.46144,4.82 1667,-17.49027,-62.33387,56.817307,143.69167,4.777 1667,536.4214,310.85226,143.02173,340.9788,4.727 1667,585.6874,-101.42288,76.12036,235.57515,4.701 1667,0.9738445,238.56271,28.12385,73.28842,4.554 1667,-72.65435,267.02924,199.7652,459.4118,4.53 1667,10.076951,236.62337,32.320568,66.627914,4.477 1667,-70.714836,-189.38103,211.8548,455.68262,4.463 1667,126.03615,264.4972,30.855576,73.57794,4.462 1667,493.2379,226.59055,237.83112,515.1124,4.419 1667,188.73949,252.91597,55.145798,114.438126,4.403 1667,4.0621877,215.702,31.694138,72.09607,4.358 1667,-4.6190925,163.20636,17.511673,40.683746,4.326 1667,-37.19238,-127.564384,117.19043,278.33044,4.293 1667,284.58548,492.18518,31.21576,51.734497,4.27 1667,618.2003,489.36307,21.01001,43.14456,4.264 1667,489.34384,-178.32205,236.53824,422.3204,4.214 1667,359.0045,196.83261,36.860504,81.81018,4.201 1667,187.4566,280.7843,32.102966,64.575195,4.158 1667,594.67554,-45.93928,43.85382,99.12499,4.029 1667,384.5794,212.71492,19.79364,44.51921,4.014 1667,228.04451,272.26462,16.56668,25.478058,3.973 1667,180.21379,295.7452,31.976791,66.36896,3.966 1667,290.7001,204.47047,20.390991,41.32022,3.938 1667,220.87517,245.08202,52.49559,117.921524,3.831 1667,211.6487,235.0043,42.31836,76.26926,3.809 1667,-10.621696,149.93512,28.897856,68.845,3.782 1667,-6.1869383,253.394,19.57459,48.18419,3.757 1667,-5.55876,278.3016,18.094982,41.421417,3.713 1667,619.21466,-17.757992,16.86322,41.50666,3.71 1667,134.01715,202.39432,29.652832,60.320038,3.707 1667,269.0334,492.1427,31.941833,50.55066,3.657 1667,1.2888992,189.08939,24.937332,71.22586,3.646 1667,297.20197,493.62775,21.549683,36.992676,3.622 1667,2.9734807,164.00865,19.886387,40.63678,3.608 1667,139.41414,167.67873,19.861816,39.61621,3.599 1667,306.29187,230.50966,30.327393,87.22975,3.595 1667,388.70102,208.43045,38.279907,84.63281,3.584 1667,-9.388527,311.90698,28.035776,74.19495,3.542 1667,2.0057483,490.43805,19.926989,40.814514,3.54 1667,282.0007,493.87845,21.380463,38.28116,3.532 1667,337.99463,58.072987,29.667236,81.44789,3.525 1667,-6.146303,229.45383,18.508509,45.30493,3.512 1667,309.44623,194.905,36.079254,85.52646,3.512 1667,293.21332,204.11116,37.84549,90.97722,3.507 1667,-6.0654078,298.0312,17.409422,38.945496,3.496 1667,84.01791,206.12036,40.539505,91.630646,3.495 1667,451.74136,243.21869,41.435944,99.08606,3.465 1667,2.406619,-16.926899,17.44484,40.378838,3.46 1667,235.82953,271.33063,16.4906,27.198364,3.451 1667,-8.700903,102.52188,38.319168,103.90863,3.445 1667,-4.4665203,140.3095,15.806466,37.5692,3.422 1667,176.1838,274.2182,47.030838,101.328735,3.417 1667,73.681854,222.61528,22.432022,34.36879,3.416 1667,343.04532,195.24838,35.86679,82.59418,3.394 1667,243.27444,277.10648,31.769745,59.639343,3.387 1667,325.92227,197.42902,37.15454,81.16806,3.352 1667,280.1639,191.03542,26.121613,62.340027,3.351 1667,151.61475,210.51183,28.93602,68.74864,3.331 1667,209.76666,233.00056,20.167099,37.4543,3.289 1667,-15.256813,243.40973,48.433105,136.02502,3.283 1667,-10.797012,-4.4044495,40.439796,101.06058,3.272 1667,283.92767,219.48923,56.509644,169.00162,3.271 1667,298.84656,200.27437,19.409302,36.338226,3.263 1668,370.14163,210.29799,21.724213,39.99373,10.573 1668,627.0939,-17.849628,17.12146,45.10442,6.15 1668,-5.9991655,488.99963,18.529846,42.69629,5.866 1668,622.9436,-34.279243,26.423767,73.5055,5.749 1668,-11.850449,476.82294,30.02588,64.520325,5.602 1668,-5.4254937,170.7472,18.381876,41.485046,5.382 1668,-11.388774,-32.644165,29.77304,72.82933,5.381 1668,613.1048,453.38004,39.452026,108.61099,5.331 1668,-22.136927,401.7775,79.34924,176.43356,5.225 1668,1.2091303,238.42085,28.356926,73.95494,5.199 1668,204.8897,302.6301,30.48529,61.20273,5.101 1668,-6.188918,-18.532213,18.23507,43.48525,5.056 1668,626.59827,488.0778,20.722046,45.855133,5.019 1668,-17.478737,-62.154984,57.009773,142.6658,4.957 1668,603.44653,-56.269447,53.09247,135.20091,4.927 1668,125.56144,264.59808,31.539543,74.40311,4.834 1668,29.96522,219.88611,28.892859,53.36035,4.823 1668,582.91364,410.57507,71.79767,177.60382,4.804 1668,536.5596,310.91516,142.97876,340.53638,4.748 1668,371.3338,209.55464,28.240417,64.15422,4.685 1668,585.9296,-101.62459,75.99017,235.65372,4.617 1668,-72.80786,267.05475,199.90968,459.7226,4.58 1668,188.02965,293.90768,31.024445,68.402466,4.56 1668,-70.83557,-189.15865,211.8032,455.30255,4.497 1668,493.48447,227.12665,237.60257,514.80426,4.422 1668,2.1916854,220.48955,21.1255,47.147537,4.409 1668,284.62958,490.9204,31.31134,52.08252,4.403 1668,10.429964,232.70497,31.514925,70.77312,4.368 1668,5.6038,209.45876,28.744974,69.56175,4.247 1668,-37.30379,-127.698975,117.300354,278.92282,4.241 1668,489.60022,-178.03456,236.33087,422.0577,4.21 1668,187.58012,252.53624,56.53453,114.57594,4.171 1668,594.7625,-46.247288,43.804016,99.61784,4.153 1668,-5.2467775,206.49907,17.869019,44.606033,4.152 1668,-9.961351,163.84135,26.885162,70.61421,4.151 1668,64.94959,217.89124,21.129768,42.24298,4.14 1668,-5.94527,229.6488,18.27683,45.55899,4.114 1668,84.75086,288.65018,31.23272,66.06796,4.09 1668,-4.5767765,156.85104,16.667515,38.46602,4.064 1668,39.281765,217.37903,20.964836,37.365417,4.054 1668,302.74838,208.1055,26.803894,64.89548,4.048 1668,619.1826,-18.556581,17.088684,42.43036,3.94 1668,280.03998,191.37628,26.424805,60.199493,3.94 1668,3.2995808,263.8763,31.97175,69.8746,3.927 1668,133.44675,203.03021,29.639557,60.212402,3.894 1668,14.260693,197.8689,51.693073,116.45166,3.889 1668,305.56595,233.56125,30.136505,86.85379,3.886 1668,396.9095,208.32979,15.0896,28.255539,3.881 1668,-9.245785,101.52159,38.8604,105.23828,3.873 1668,-9.319972,312.64014,27.942955,74.2193,3.719 1668,80.58365,294.3595,23.898163,47.460968,3.708 1668,384.16855,212.34192,20.79068,44.99472,3.697 1668,-5.3216195,277.8475,18.37586,42.246643,3.649 1668,289.44662,201.91542,21.020874,44.948288,3.631 1668,283.4593,219.81067,30.243774,80.866516,3.606 1668,2.8897274,166.12045,19.868853,39.985016,3.606 1668,353.15594,184.85738,47.58844,112.70085,3.576 1668,-13.508105,185.87813,46.635757,139.48088,3.546 1668,150.3231,212.51419,30.709488,67.8367,3.529 1668,2.174412,490.46497,19.318003,40.738525,3.52 1668,269.2791,490.67337,31.589752,51.747528,3.519 1668,174.91086,273.87396,49.025528,101.95245,3.514 1668,187.52634,271.17065,32.085938,55.918854,3.497 1668,451.93164,242.37366,41.37195,99.06531,3.453 1668,-15.233388,243.42343,48.74455,134.77286,3.441 1668,172.93097,288.64526,31.395187,71.75873,3.437 1668,282.109,493.23315,21.442627,38.586792,3.411 1668,297.1556,493.18863,21.636078,37.475433,3.404 1668,48.161346,221.59085,21.978416,39.974243,3.402 1668,2.0084512,272.07877,22.29479,45.76178,3.396 1668,388.22302,197.43117,39.188446,84.453964,3.385 1668,125.836426,213.56938,30.104645,62.13875,3.379 1668,35.483356,222.91574,42.142666,86.4462,3.367 1669,368.02338,209.1944,21.14563,43.142105,14.322 1669,32.275246,221.49646,33.294754,56.38336,7.779 1669,45.394547,219.63077,25.404778,44.33426,6.319 1669,-6.054065,489.3986,18.69861,41.924408,6.05 1669,627.0897,-17.792774,17.44519,45.325558,5.704 1669,-11.472421,-32.70711,29.810825,72.968605,5.632 1669,621.2951,477.13208,29.753723,67.138794,5.626 1669,-8.875391,464.10245,37.458157,93.416534,5.559 1669,-6.145082,-18.420498,18.110704,43.308617,5.406 1669,622.77783,-34.538723,26.718323,73.87946,5.3 1669,1.3829696,237.81235,26.704618,73.178314,5.249 1669,-22.089184,402.05927,79.32097,176.11578,5.196 1669,603.5716,-56.003765,53.06891,135.06879,4.925 1669,-5.1841707,169.68071,18.260849,41.708755,4.924 1669,-17.479473,-62.46662,56.687374,143.20264,4.798 1669,583.0603,410.48758,71.63403,177.66525,4.787 1669,536.4305,310.89752,143.02136,340.86536,4.743 1669,358.46237,196.44196,36.190704,80.93741,4.704 1669,56.098534,219.5225,23.554016,43.089554,4.632 1669,585.8607,-101.879814,76.194275,236.33466,4.555 1669,10.901078,228.80205,32.97244,69.7697,4.534 1669,-70.9777,-189.42157,211.99136,455.6487,4.493 1669,-72.72179,267.25623,199.8014,459.37006,4.476 1669,196.13295,303.44556,31.585312,57.846527,4.454 1669,493.27185,226.9086,237.6759,514.73315,4.426 1669,1.8102145,227.986,20.991905,47.076996,4.307 1669,252.89731,315.5408,30.95819,65.97519,4.256 1669,-37.3419,-127.687546,117.52449,279.3552,4.215 1669,284.61514,491.4865,31.156311,52.458862,4.141 1669,489.1043,-177.8865,236.9721,421.417,4.131 1669,594.72955,-46.20928,43.735535,99.845695,4.102 1669,5.1001797,210.5638,29.115267,66.90483,4.06 1669,310.0336,196.62314,35.77719,82.56088,4.041 1669,133.82552,203.50745,29.029373,59.364044,4.034 1669,-3.984554,157.6986,15.900815,36.210236,3.928 1669,171.6146,256.14175,57.926727,123.40643,3.928 1669,-5.8727903,231.35901,17.933294,43.630737,3.922 1669,372.722,194.93518,37.203247,83.08438,3.902 1669,2.7773821,165.85231,19.077848,38.907974,3.892 1669,-10.40163,157.99002,29.139923,67.52489,3.768 1669,3.4785438,265.37274,31.730104,69.78104,3.733 1669,343.62732,195.70685,35.70102,80.539276,3.73 1669,-5.687685,253.50821,19.098108,48.554443,3.705 1669,-5.381236,278.30487,18.029175,41.580627,3.701 1669,363.44824,205.63033,19.65506,32.853424,3.687 1669,124.9771,265.1463,32.189835,71.42053,3.671 1669,618.44025,489.1891,20.768799,43.568848,3.668 1669,325.7821,198.27066,36.817627,78.38925,3.645 1669,-9.138718,102.39342,38.94989,104.10744,3.637 1669,291.136,220.0858,39.489258,101.41048,3.626 1669,618.9234,-18.55677,17.457764,42.71355,3.619 1669,266.2915,322.37012,21.098083,42.11496,3.616 1669,612.9278,434.29,39.455566,101.56247,3.59 1669,-14.350702,187.27347,47.51606,136.8854,3.583 1669,282.93005,228.38824,58.226105,166.5008,3.568 1669,139.68645,166.03406,20.4431,40.286575,3.513 1669,212.76703,303.1418,31.49237,58.163544,3.507 1669,29.623625,197.07445,53.745773,120.74428,3.49 1669,-5.204377,216.50671,17.328045,40.679565,3.475 1669,299.00485,200.7995,19.263855,37.014557,3.47 1669,180.85834,143.97612,28.136993,75.05232,3.468 1669,302.9086,209.2404,27.545135,60.14357,3.456 1669,2.4695807,-16.703722,17.337265,40.127193,3.434 1669,385.01062,212.50768,21.132202,46.36699,3.431 1669,203.81895,286.9521,31.45523,63.5596,3.427 1669,-10.862282,-4.8174553,40.462933,101.20738,3.417 1669,315.6539,210.79022,55.855835,146.98145,3.413 1669,-5.2260237,199.5349,17.40548,42.743973,3.405 1669,297.49997,493.39166,21.044098,36.70746,3.402 1669,220.12921,239.27141,54.504242,117.91734,3.382 1669,614.4705,-22.59948,27.343384,71.08021,3.38 1669,2.0758038,490.7214,19.624094,40.59305,3.35 1670,34.66703,219.2031,31.492912,55.361053,9.517 1670,627.12415,-18.209433,17.353027,45.855133,5.996 1670,622.7354,-34.46461,26.737549,74.29598,5.988 1670,626.5022,487.35538,20.733032,46.306732,5.895 1670,-6.0168934,489.8137,18.763733,41.352264,5.717 1670,-11.880803,478.2299,30.417358,62.819916,5.549 1670,366.6391,210.31673,22.376892,37.889847,5.534 1670,612.90924,453.44705,40.10681,108.62161,5.53 1670,-11.538882,-32.591988,29.964565,72.82216,5.52 1670,-22.177109,401.81104,79.32716,176.29504,5.194 1670,-6.05047,-18.5557,18.057545,43.011913,5.079 1670,603.3157,-56.563286,53.212524,134.73468,5.079 1670,1.3247323,234.87103,27.51412,75.349915,5.012 1670,126.03072,264.1528,31.195808,73.46579,4.991 1670,55.50394,219.70943,24.6776,44.025528,4.873 1670,582.9211,410.58243,71.780334,177.76242,4.848 1670,-17.574501,-62.095715,56.78917,142.88722,4.808 1670,-4.915054,167.9065,18.58866,43.541595,4.787 1670,536.5205,311.14993,142.98071,340.70627,4.733 1670,585.8336,-101.66672,76.08588,235.77174,4.646 1670,-70.95034,-189.45712,211.84427,455.69748,4.552 1670,59.470634,214.26389,31.948524,61.81357,4.541 1670,-72.86323,266.7047,199.97238,460.0321,4.539 1670,358.66187,195.10165,36.674286,81.772064,4.517 1670,133.9337,202.5349,29.943008,61.689316,4.477 1670,493.237,226.68246,237.58759,514.78735,4.421 1670,-4.6619835,197.89412,17.333408,46.16426,4.414 1670,594.45184,-46.027367,44.207092,99.077644,4.349 1670,284.54678,492.35974,31.298492,51.51941,4.341 1670,0.4694128,209.18854,26.963795,65.11615,4.295 1670,-37.483467,-127.274734,117.376465,279.16745,4.227 1670,489.54236,-178.46227,236.52844,422.05322,4.221 1670,179.86307,300.66577,32.950592,64.23682,4.157 1670,375.20294,212.1681,22.689545,43.85469,4.094 1670,302.5842,208.9717,26.743317,61.617477,4.035 1670,-9.355012,169.37933,28.389278,72.643036,3.971 1670,618.95374,-18.825558,17.624023,43.169537,3.963 1670,2.192843,163.6373,21.268358,41.15834,3.95 1670,-14.614332,188.04825,47.747223,133.92825,3.943 1670,204.2062,303.24115,31.283478,58.95276,3.934 1670,617.9038,489.05896,21.234314,43.30414,3.867 1670,229.21729,286.20767,29.832764,61.658478,3.857 1670,188.94272,249.33463,54.97847,116.437256,3.851 1670,47.38086,217.5582,22.7202,40.554077,3.838 1670,309.8629,195.23274,36.059143,84.629105,3.807 1670,-5.8967023,229.86188,18.348566,43.87674,3.751 1670,396.75748,203.71468,16.459534,32.101715,3.73 1670,-5.3953857,279.55313,17.689028,39.20807,3.716 1670,373.2158,193.82169,37.228424,83.95175,3.696 1670,-9.664562,72.20162,39.984566,104.69132,3.641 1670,615.113,-21.387625,26.781616,68.72744,3.641 1670,15.14221,200.41837,50.932144,109.49753,3.639 1670,269.5035,491.32755,31.402893,51.43033,3.625 1670,149.64258,201.6555,29.101898,62.850906,3.624 1670,343.44244,194.06105,36.096558,82.051956,3.616 1670,-15.774782,238.22015,49.62835,138.92773,3.615 1670,251.68777,316.6568,33.177917,66.18036,3.599 1670,388.606,207.00993,39.500977,84.57744,3.593 1670,325.41418,196.71826,37.31012,80.24548,3.585 1670,245.76907,286.30255,29.568054,63.40741,3.548 1670,291.7311,217.75565,39.182556,105.30948,3.541 1670,216.5632,312.50885,23.13739,38.74112,3.535 1670,188.0278,288.4279,31.987335,64.61032,3.523 1670,2.6253743,-16.43414,17.303139,39.579346,3.503 1670,144.62534,211.78624,23.0074,46.710587,3.492 1670,307.20157,219.9038,39.67856,102.04152,3.482 1670,385.92017,222.48027,20.768951,42.652267,3.452 1670,220.38004,238.8434,53.69867,120.95717,3.415 1670,419.7721,234.72023,40.926086,95.68901,3.412 1671,35.766113,216.44545,30.363121,57.376785,7.77 1671,627.1015,-17.837513,17.33545,45.372482,5.861 1671,-12.020103,477.61942,30.731476,63.421722,5.676 1671,622.97064,-34.536827,26.48639,74.268005,5.614 1671,-0.8190048,218.13882,28.194483,69.992676,5.599 1671,59.97146,212.29828,30.903671,63.018982,5.454 1671,-6.1373615,489.46518,18.876194,41.89151,5.437 1671,613.1665,453.47852,39.4339,108.51538,5.39 1671,5.147811,204.51585,29.906006,65.76265,5.375 1671,-11.431856,-33.08441,29.695929,73.806,5.325 1671,626.5886,487.59238,20.684082,46.194,5.316 1671,-5.950592,-18.695585,17.906729,43.692448,5.308 1671,-22.1218,401.86908,79.25543,176.41394,5.244 1671,603.62335,-56.123085,52.87451,135.12979,4.925 1671,-17.567282,-62.293373,56.772316,143.3865,4.85 1671,583.0001,410.24133,71.659,177.93713,4.781 1671,536.41254,310.9392,143.20026,340.71655,4.737 1671,361.5424,207.99355,23.968018,39.69786,4.732 1671,585.6374,-101.28035,76.23834,235.76613,4.726 1671,126.051674,264.33423,30.943703,75.661285,4.512 1671,4.389732,240.72469,31.146759,70.91347,4.494 1671,-72.68933,266.80902,199.94492,459.7083,4.494 1671,55.996494,219.16605,24.071194,45.29962,4.482 1671,-70.847305,-189.19879,211.77245,455.53577,4.479 1671,493.08398,226.74982,237.72461,514.6908,4.446 1671,204.46428,300.1487,31.338318,64.58273,4.416 1671,-5.747406,183.43053,17.975838,43.756973,4.377 1671,-6.1264396,230.09389,18.663033,45.132187,4.285 1671,-37.219273,-127.57838,117.29683,278.40933,4.26 1671,489.14975,-178.08804,236.78592,421.99817,4.247 1671,-5.2882547,201.76846,17.688343,41.64377,4.203 1671,180.71062,292.9198,30.288452,66.69916,4.159 1671,-6.0844474,169.51865,18.364681,40.213394,4.156 1671,133.06612,203.34468,29.823822,60.588516,4.144 1671,187.13864,250.8188,56.88434,113.60753,4.069 1671,358.10144,195.04762,37.30664,80.54085,4.065 1671,150.46399,213.36948,30.318054,75.29642,4.065 1671,594.6742,-46.561306,43.82379,99.98654,4.059 1671,277.39362,491.4596,30.805298,52.12744,3.973 1671,195.83313,286.22168,32.11104,68.19931,3.949 1671,302.38086,211.01729,26.742798,60.305283,3.908 1671,-0.109142065,178.21762,27.01764,71.62448,3.855 1671,397.0732,204.62082,15.866913,30.923264,3.837 1671,212.02614,284.28195,32.496124,65.48801,3.78 1671,291.4305,217.53516,38.81607,105.35828,3.695 1671,-14.870948,212.67165,48.85055,134.22636,3.693 1671,619.17944,-18.359703,17.182068,42.35797,3.655 1671,219.45038,241.05478,55.032898,119.050385,3.655 1671,-4.9261107,157.0549,17.301592,36.91472,3.615 1671,618.3555,489.71628,20.82196,42.51169,3.596 1671,117.65835,213.69582,29.961205,61.88069,3.585 1671,251.25853,316.6507,34.01561,63.51056,3.582 1671,-8.790227,102.68942,38.526367,102.88083,3.568 1671,2.1064544,216.72626,21.237968,43.131195,3.546 1671,405.06805,205.13754,14.473022,29.053802,3.529 1671,289.54657,493.189,21.416779,38.117523,3.512 1671,282.8761,198.83867,19.692566,40.1606,3.492 1671,-11.54661,157.73193,29.782408,64.540344,3.491 1671,286.78326,198.3218,25.959686,63.960403,3.487 1671,282.46295,222.5842,58.438232,177.65494,3.481 1671,210.92415,233.73439,43.560944,75.24718,3.419 1671,452.29172,243.46875,41.220825,99.97998,3.405 1671,373.10367,191.68633,38.045166,84.68968,3.396 1671,-10.759788,-4.85297,40.338512,101.53218,3.389 1671,309.44016,197.21501,35.684814,82.07179,3.389 1671,343.03528,195.50157,36.486145,80.385666,3.375 1671,34.862724,221.56834,42.950203,84.97798,3.368 1671,160.60226,276.70316,47.434784,95.33179,3.366 1671,13.958321,195.5889,52.003197,113.88629,3.366 1671,2.071466,490.89764,19.838793,40.81903,3.36 1671,227.60336,284.5815,32.151245,65.24356,3.353 1671,234.85764,226.00131,55.92682,114.17093,3.347 1671,2.7471626,-16.592562,17.013529,40.195232,3.346 1671,617.9683,125.26633,21.309937,47.591736,3.337 1672,5.058345,245.65164,29.345325,67.23224,6.499 1672,627.2623,-17.440979,17.024048,45.224342,5.921 1672,623.188,-34.23011,26.22113,73.74354,5.83 1672,612.9866,453.37408,40.256958,108.66815,5.812 1672,-5.9253545,490.0673,18.41551,41.274994,5.732 1672,-11.671534,479.34415,30.012278,62.49417,5.588 1672,361.95645,211.3324,20.003723,32.96881,5.519 1672,203.23474,285.74707,31.682373,65.309265,5.446 1672,626.42175,487.7057,20.677856,45.867554,5.341 1672,-22.06837,401.7596,79.281555,176.5015,5.231 1672,-12.675354,-40.98401,41.51039,101.407036,5.201 1672,603.50336,-56.11915,52.95929,135.6205,5.121 1672,-5.99979,-18.647266,17.959566,43.55626,5.098 1672,14.506233,257.04517,24.656658,49.682922,4.948 1672,125.915924,265.12094,30.658447,76.869354,4.942 1672,582.9945,410.2635,71.72388,177.92554,4.801 1672,536.4895,311.03198,142.90771,340.64838,4.732 1672,-5.7669287,244.96884,18.943329,48.95703,4.657 1672,585.7156,-101.70448,76.33118,235.84758,4.605 1672,-19.912657,-86.67752,71.31255,196.43102,4.559 1672,-72.666466,267.63098,200.03806,458.89026,4.52 1672,277.72275,492.93127,30.153748,51.15808,4.506 1672,-70.728195,-189.68745,211.57019,455.90442,4.458 1672,493.09494,226.65085,237.89932,514.9475,4.432 1672,303.08386,209.8223,26.999878,60.029694,4.323 1672,133.4331,203.27756,29.54596,57.795197,4.277 1672,-37.22212,-127.48258,117.425644,278.7326,4.232 1672,397.19122,205.84575,15.098236,27.831665,4.215 1672,189.0091,252.0826,54.75168,113.17293,4.174 1672,489.3012,-178.04138,236.76263,421.6495,4.157 1672,594.9953,-46.605045,43.400635,100.76818,4.091 1672,152.4603,210.61876,29.586823,71.339584,4.066 1672,-4.370062,163.3391,17.03983,39.521683,4.026 1672,187.65129,285.73837,32.998108,68.2684,4.02 1672,619.372,-18.107534,16.745972,42.197304,3.967 1672,146.08199,163.98299,22.007553,44.93669,3.935 1672,59.555717,210.46805,30.047081,64.377045,3.883 1672,358.29767,194.4309,36.690857,82.18977,3.869 1672,289.86462,493.51926,20.59671,37.335968,3.861 1672,2.080797,241.0921,22.284866,55.166565,3.849 1672,-14.718719,244.17865,47.774326,134.36676,3.848 1672,617.80316,489.2382,21.31372,42.76645,3.706 1672,-9.439458,72.727196,39.51584,103.83732,3.703 1672,377.02945,213.7532,21.731415,43.01114,3.698 1672,43.773262,212.00323,30.093002,60.655853,3.695 1672,-5.109672,183.66243,17.231735,45.043808,3.673 1672,309.82132,195.72327,35.842987,85.11755,3.647 1672,292.4852,491.57632,30.468658,51.9003,3.634 1672,260.28116,316.73065,32.83676,68.045044,3.633 1672,84.40659,289.44324,30.55172,67.30661,3.589 1672,57.690907,291.91263,32.356182,68.770294,3.573 1672,145.38368,213.61504,21.923996,44.062393,3.566 1672,2.2141523,491.97186,19.216564,39.25122,3.56 1672,343.51373,194.04597,35.899292,82.58977,3.484 1672,-5.3519225,210.28334,17.106382,41.063095,3.465 1672,325.73837,197.27289,37.12036,80.89154,3.441 1672,80.81123,294.90967,23.43695,49.331665,3.419 1672,229.2295,284.89694,30.758255,62.34134,3.403 1672,452.2736,243.20654,41.447296,99.67273,3.357 1672,-13.363881,185.87941,46.557163,138.62895,3.354 1672,305.80182,231.56503,30.51587,88.914,3.35 1672,-10.51548,8.685642,40.13058,105.62341,3.349 1672,199.58574,288.55966,24.223679,46.655457,3.343 1672,2.4720645,-17.295296,17.253654,40.666386,3.334 1672,404.92795,206.539,14.372528,26.633621,3.326 1672,-4.877396,277.27887,18.213224,42.367218,3.321 1672,274.36945,494.22733,20.901123,38.04355,3.313 1672,160.79807,278.81375,46.807297,93.874115,3.31 1672,-5.776128,225.237,18.089828,42.457916,3.281 1672,211.38184,234.96835,42.132385,75.43994,3.267 1672,89.38332,205.7842,22.997643,35.51454,3.256 1673,5.312852,241.83275,29.313698,71.09303,6.385 1673,627.1833,-17.750076,17.22174,45.758602,6.079 1673,-11.428196,-32.711296,29.7673,72.88887,5.687 1673,623.01416,-34.79495,26.349487,74.9276,5.651 1673,-5.8518543,490.5306,18.26727,40.997772,5.609 1673,-6.04539,-18.499422,18.07306,43.24328,5.57 1673,-11.596394,479.9152,29.600115,61.598663,5.535 1673,613.04114,452.98642,39.698975,109.129425,5.331 1673,-22.080956,401.97653,79.30403,176.22867,5.234 1673,626.36847,487.28955,20.819397,46.62744,5.142 1673,396.80182,205.07364,16.2818,29.889236,4.928 1673,603.4099,-55.813774,53.186646,135.587,4.913 1673,-17.643559,-62.80571,56.718246,144.03809,4.85 1673,307.01227,208.70328,29.32019,66.285736,4.829 1673,360.7211,212.26573,20.299377,32.459915,4.791 1673,582.98,410.32147,71.66797,177.78876,4.774 1673,536.5118,311.03235,142.8631,340.75012,4.708 1673,-72.640884,267.38623,200.05998,459.41284,4.574 1673,585.84033,-101.58195,76.1012,236.03503,4.539 1673,358.01895,195.41821,37.091095,82.75357,4.482 1673,-5.3478475,170.64615,18.012108,41.478195,4.38 1673,493.08685,226.9636,237.95697,514.9065,4.379 1673,-70.84913,-189.2229,211.92331,455.40695,4.375 1673,125.33035,264.3286,31.622131,73.14676,4.308 1673,-37.144226,-127.450836,117.45161,278.7509,4.252 1673,284.56528,491.73474,31.159271,51.927612,4.156 1673,594.86456,-45.938084,43.610413,99.91455,4.141 1673,133.83546,206.33896,30.256622,63.669464,4.133 1673,-6.139494,232.23912,17.927448,42.703354,4.126 1673,488.9996,-177.80893,237.06613,421.16025,4.125 1673,300.36832,229.07565,30.961761,79.8891,4.071 1673,343.146,194.16667,36.56717,82.670944,4.063 1673,150.39655,204.00946,30.17215,69.71271,3.983 1673,187.35838,251.74347,56.5887,113.253845,3.891 1673,325.4001,197.29344,37.559082,80.48909,3.888 1673,-9.590603,312.02368,28.479816,74.59448,3.875 1673,-15.227752,244.18533,48.034817,134.49963,3.818 1673,179.94917,141.53807,31.021622,74.70668,3.766 1673,2.2316957,239.9375,21.79118,56.953674,3.758 1673,619.11804,-18.477877,17.058105,42.93737,3.755 1673,403.7369,205.7145,15.752869,27.898819,3.746 1673,-10.489048,164.61028,28.156296,69.90456,3.744 1673,-0.8051336,173.05685,26.292318,75.10118,3.711 1673,373.41815,192.84444,37.3768,85.79585,3.663 1673,-5.902605,250.73471,19.513288,50.334198,3.66 1673,-14.950763,149.69968,49.31104,145.0419,3.658 1673,388.48935,204.83401,17.1958,32.185577,3.631 1673,288.49316,191.54425,49.642273,116.97455,3.565 1673,17.067123,272.69846,21.418709,41.49884,3.547 1673,219.3424,241.84749,54.967712,119.39467,3.528 1673,233.50726,327.2655,21.021515,31.62088,3.528 1673,-4.453994,157.1564,16.482937,37.388443,3.519 1673,249.90662,415.08347,19.749084,27.611023,3.512 1673,3.1216474,166.07846,19.528622,38.373047,3.511 1673,269.31598,490.90347,31.294556,51.440765,3.499 1673,-6.0287943,297.54855,17.158451,37.836853,3.468 1673,2.3938174,-16.855232,17.209824,40.575836,3.455 1673,212.4929,304.95892,31.903076,59.30081,3.439 1673,-5.1327333,276.76587,18.020332,43.37094,3.438 1673,220.4845,290.82803,32.787125,58.61563,3.434 1673,225.29051,314.3267,22.399078,37.07492,3.433 1673,388.91995,194.8628,38.92798,85.72229,3.427 1673,377.50494,212.45328,21.177795,45.149994,3.422 1673,0.65815926,266.96518,50.008904,148.71771,3.42 1673,252.64651,194.38425,14.953369,31.230652,3.401 1673,146.12735,165.61972,20.755814,42.626526,3.385 1673,105.61019,208.5696,21.209877,32.79161,3.369 1673,210.87216,233.31519,43.278305,74.24402,3.356 1673,452.2433,243.50146,41.044098,98.59723,3.355 1673,338.1152,59.38117,29.323212,80.63405,3.312 1673,2.5110312,492.8602,18.828827,38.896698,3.308 1673,219.70038,189.76897,17.301819,34.10692,3.301 1673,196.79237,295.80618,29.868973,63.714935,3.294 1673,307.22906,220.20055,39.412964,99.765274,3.284 1673,283.98914,223.90436,31.455261,80.02484,3.283 1673,277.74673,191.28583,36.529327,89.63937,3.281 1673,235.87628,415.34393,17.502289,25.75946,3.274 1673,36.485622,298.61942,31.158459,73.289795,3.254 1673,281.9653,493.69107,21.189148,37.832672,3.244 1673,295.1205,204.74918,27.510681,69.62637,3.242 1674,352.91595,204.71452,22.359344,36.638046,6.041 1674,-6.0887575,-18.662882,18.201683,43.56388,5.738 1674,627.12354,-17.96725,17.463562,45.799343,5.684 1674,-5.8637004,489.82022,18.380772,41.404694,5.671 1674,626.4492,487.26288,20.927368,46.06256,5.655 1674,-11.262531,-32.84336,29.798344,72.84036,5.579 1674,622.84265,-33.866478,26.579956,73.83715,5.549 1674,-9.096617,464.12946,37.65161,93.11951,5.506 1674,-5.7809286,249.52856,18.609615,42.43701,5.426 1674,613.0447,453.17706,39.967163,109.12213,5.375 1674,-22.0677,402.01645,79.275795,176.28836,5.278 1674,603.53656,-56.339775,53.042114,136.17921,5.113 1674,583.0221,410.28943,71.655945,177.98578,4.848 1674,-17.374605,-62.059593,56.66149,143.08978,4.814 1674,536.52655,310.98706,142.802,340.7525,4.715 1674,4.257412,250.33742,31.136986,63.768417,4.662 1674,585.80664,-101.4157,76.18005,235.66162,4.562 1674,-72.634346,267.03943,199.96997,459.79834,4.554 1674,-6.760913,232.79095,18.69704,42.02707,4.547 1674,301.43192,210.24841,28.160309,60.781433,4.518 1674,203.67438,300.77603,31.821548,62.23111,4.488 1674,-70.71213,-189.25433,211.68356,455.50046,4.444 1674,125.34881,263.9912,31.52404,75.352875,4.435 1674,492.99866,226.57474,237.95178,515.2457,4.409 1674,189.1464,281.69177,30.947525,70.65958,4.255 1674,-37.369713,-127.42227,117.29507,279.21765,4.244 1674,284.0388,219.58469,30.39801,83.43869,4.182 1674,489.19876,-177.91118,236.66422,421.6842,4.182 1674,134.72995,210.2479,28.131699,66.31354,4.131 1674,-0.21107197,226.21637,28.231197,67.80005,4.1 1674,139.83273,169.11932,20.51413,41.98163,4.091 1674,595.0222,-47.033745,43.5614,101.17297,4.024 1674,3.0533826,160.5436,20.052067,44.45569,3.995 1674,-4.3462915,154.67693,16.925228,40.515335,3.97 1674,151.62599,208.57129,29.360611,72.31119,3.96 1674,-12.163012,228.1297,30.227385,70.95599,3.922 1674,291.29926,218.57101,38.414124,106.59915,3.892 1674,2.366215,-16.957314,17.503176,40.772133,3.883 1674,-10.571817,149.08589,28.734575,68.056625,3.849 1674,211.06937,281.472,32.4644,67.98651,3.839 1674,188.11887,248.35497,55.71904,115.863205,3.824 1674,283.67755,221.35986,56.82309,179.27344,3.814 1674,618.2421,488.55228,20.911438,43.326447,3.794 1674,-8.775433,101.44064,38.80561,104.299164,3.765 1674,284.95547,492.26102,30.737396,51.395355,3.734 1674,18.294012,233.68782,32.625618,65.45787,3.715 1674,357.4414,193.58882,37.404022,81.333115,3.707 1674,618.995,-19.143887,17.49707,43.153637,3.661 1674,309.42834,196.71422,36.03888,84.000626,3.644 1674,342.91458,194.53644,36.266693,80.65027,3.632 1674,252.19131,316.65933,32.401764,63.311127,3.616 1674,220.50778,238.5578,53.55661,119.35791,3.589 1674,313.6337,212.29947,20.69284,31.827728,3.56 1674,-15.917649,243.92882,49.495163,133.7787,3.532 1674,80.61096,292.90796,23.889236,49.312347,3.529 1674,-4.05667,140.87639,15.003238,37.961014,3.497 1674,12.8793545,200.09367,53.565422,117.58168,3.477 1674,145.64053,219.83772,21.11264,45.675156,3.47 1674,35.110996,226.46361,43.013325,85.672195,3.436 1674,615.0465,-21.997166,27.039734,70.317505,3.432 1674,2.3901772,491.03723,19.03101,40.109497,3.429 1674,253.03049,195.53302,14.637787,31.050278,3.409 1674,8.292936,221.41318,30.82379,65.496735,3.405 1674,-9.758442,312.7559,28.732698,73.00418,3.384 1674,-5.2317505,278.78394,18.080263,40.869873,3.381 1674,306.78857,221.01527,39.435333,102.15422,3.379 1674,396.38028,204.94823,16.35379,30.319183,3.378 1674,-14.2839155,186.10464,47.14002,138.76633,3.375 1674,168.32193,206.03108,21.41977,39.904892,3.368 1674,170.72694,283.53232,33.48915,71.76074,3.368 1674,2.618326,274.51004,20.980679,43.21869,3.36 1674,388.3341,202.4707,40.786194,88.622986,3.345 1674,3.8977575,164.37842,29.564514,72.99521,3.339 1674,236.32368,491.2139,32.280014,50.959015,3.326 1674,57.452423,291.01544,32.659622,68.56854,3.319 1674,297.78302,494.18777,20.946564,36.504913,3.307 1674,84.51371,287.93057,31.407326,67.499084,3.291 1674,269.1462,490.82336,31.599365,51.873535,3.287 1674,180.12437,300.25305,31.66951,62.837585,3.286 1674,14.667673,259.6927,24.583162,45.738953,3.266 1674,315.5115,210.7202,55.539825,148.865,3.259 1675,-5.7681184,489.854,18.095308,40.76306,6.512 1675,-6.0250545,-18.657463,17.930893,43.64784,5.81 1675,-11.448244,-32.738037,29.695627,73.34603,5.755 1675,-11.5034485,478.8673,29.544565,62.614258,5.728 1675,627.1566,-17.801598,17.504883,45.235294,5.695 1675,613.05884,453.14014,39.590027,108.85797,5.426 1675,626.4828,487.46832,20.725708,45.984924,5.221 1675,-21.979856,402.11594,79.2162,176.23453,5.201 1675,622.74146,-34.525837,26.86023,74.09793,5.138 1675,125.41495,263.19977,31.060944,76.88733,5.054 1675,17.478798,229.76553,33.87086,67.375916,4.9 1675,-17.45759,-62.43978,56.5465,143.30273,4.815 1675,583.0225,410.3231,71.72754,177.95724,4.794 1675,603.4231,-56.02401,53.233093,135.39595,4.781 1675,536.5256,310.77893,143.04108,340.70288,4.769 1675,585.7687,-101.14405,76.14343,235.27808,4.623 1675,-72.448425,266.99277,199.74138,459.53555,4.506 1675,0.8965707,244.19907,28.297863,70.48172,4.498 1675,493.15088,227.13397,237.85645,514.39825,4.458 1675,-70.80425,-189.57477,211.9913,455.56174,4.447 1675,-6.1469336,247.98965,19.059597,45.165955,4.445 1675,144.82846,162.36217,23.983704,44.94072,4.256 1675,-37.369614,-127.380905,117.38167,278.68744,4.24 1675,-5.5362434,167.19505,18.44454,44.76393,4.22 1675,489.13498,-177.82362,236.83133,421.25748,4.204 1675,309.25024,195.76297,36.545074,81.31601,4.158 1675,-6.5306396,231.53578,18.51318,43.17836,4.121 1675,188.18779,249.8328,55.659134,116.23761,4.114 1675,594.6142,-45.74396,44.112854,100.085815,4.051 1675,204.95421,301.57706,30.696518,61.532806,4.004 1675,2.4534333,492.0862,18.634571,38.26175,3.915 1675,277.35898,491.06564,31.377625,52.207672,3.907 1675,150.5017,203.91428,29.851105,69.518005,3.835 1675,396.7607,208.33682,14.950592,25.700195,3.82 1675,0.2242446,171.87718,26.608515,76.808304,3.749 1675,2.1170235,236.46567,22.077887,50.761414,3.716 1675,304.1679,209.27365,26.322998,56.7453,3.702 1675,203.43315,275.95786,30.5542,65.41565,3.677 1675,2.6836996,-17.077145,17.048069,40.56539,3.657 1675,12.686715,201.1306,53.28965,114.59297,3.647 1675,133.16919,201.79445,29.966354,59.915695,3.646 1675,325.4154,196.38768,37.863403,79.584274,3.624 1675,618.90906,-18.990177,17.724976,42.449345,3.614 1675,357.2208,192.6683,38.07184,82.80771,3.598 1675,342.67868,192.31375,36.84375,82.43057,3.574 1675,299.1172,201.28308,18.595917,36.28946,3.567 1675,-11.935744,226.19739,29.715485,71.92767,3.549 1675,219.87541,242.33368,54.66954,119.97882,3.538 1675,352.92108,204.27174,23.633026,43.393692,3.491 1675,-15.896039,240.95093,49.115223,137.52936,3.47 1675,-9.188628,312.07324,28.385868,74.787476,3.458 1675,220.1813,276.15778,30.679749,61.988464,3.443 1675,34.76151,225.23184,43.528744,85.96582,3.434 1675,85.052216,295.26,31.058807,64.08826,3.434 1675,291.6956,220.53305,39.39218,96.44583,3.42 1675,-4.264621,139.84335,15.971883,40.009842,3.4 1675,292.1666,489.46396,31.40158,53.474518,3.371 1675,289.0877,492.92288,21.972748,38.810516,3.351 1675,-10.322908,160.39166,28.094627,73.498886,3.341 1675,-14.086772,186.86023,47.437122,137.62067,3.334 1675,452.05084,244.27704,41.05374,97.84839,3.306 1675,-5.432378,277.81076,18.640228,42.075287,3.293 1675,307.64026,222.51482,39.751526,92.910355,3.284 1675,-9.088593,102.45357,38.73878,103.64429,3.251 1675,229.37805,284.47626,31.962921,63.05954,3.25 1675,419.73056,235.98788,40.989075,95.06995,3.248 1675,614.56976,-22.661709,27.461487,70.138176,3.234 1675,130.45016,422.22955,84.026794,157.74225,3.227 1675,169.82635,341.7328,21.587708,33.51169,3.22 1675,618.1144,489.49484,21.041565,42.9606,3.21 1675,-5.749316,197.12749,18.235842,46.091415,3.183 1675,284.23358,223.0028,31.913727,75.96875,3.175 1675,187.48245,274.22318,32.68994,62.10797,3.166 1675,143.95078,204.79587,23.458496,46.221466,3.152 1675,277.37643,191.64252,37.18332,86.66983,3.151 1675,236.20622,491.15042,32.208145,50.256256,3.148 1675,260.26373,207.17874,40.006104,85.057556,3.14 1675,295.5843,201.10486,26.61792,60.617798,3.14 1676,-5.985002,489.63126,18.547686,41.55136,6.006 1676,627.16327,-17.759037,17.27716,45.91283,5.804 1676,621.4703,475.65506,29.596252,68.10855,5.722 1676,623.09717,-34.6339,26.20642,74.83609,5.622 1676,203.8449,287.8064,31.649353,62.372437,5.58 1676,-11.762014,478.67163,30.106136,62.516785,5.578 1676,-6.0509877,-18.68563,18.091846,43.007145,5.413 1676,-11.629944,-32.86685,29.911463,72.90996,5.351 1676,-22.08274,401.86227,79.24883,176.36905,5.211 1676,603.54114,-56.23207,52.895752,136.7977,4.919 1676,-17.575624,-62.33034,56.79815,143.1482,4.909 1676,125.4563,264.86426,31.878387,75.76242,4.882 1676,603.38794,429.36475,56.624207,144.88751,4.819 1676,536.435,310.95575,143.00763,340.82916,4.775 1676,585.72156,-101.38752,76.1861,235.51007,4.683 1676,-5.3466773,168.41841,18.407278,42.89264,4.611 1676,220.45724,285.05283,32.402725,61.670746,4.611 1676,195.82732,301.6365,32.2798,62.611908,4.574 1676,-72.60238,267.30255,199.87106,459.29413,4.524 1676,492.95172,227.10977,237.91193,514.6056,4.485 1676,-70.73729,-189.08481,211.97409,455.25772,4.412 1676,489.165,-178.09436,236.78214,422.01212,4.228 1676,1.5282786,244.677,27.17659,68.53467,4.215 1676,-37.24381,-127.66925,117.50151,278.24408,4.208 1676,133.2889,202.78102,31.072678,60.316055,4.203 1676,187.56181,256.06714,57.171295,110.57764,4.053 1676,180.37086,289.82968,29.787186,72.48425,3.975 1676,145.05733,163.83578,23.19188,42.25122,3.966 1676,2.9464161,163.67447,20.118988,41.53679,3.93 1676,595.22095,-46.967297,43.313965,101.22908,3.928 1676,284.5914,491.7944,31.77951,52.050507,3.893 1676,-5.8566713,248.50375,18.30727,43.51001,3.891 1676,150.05692,201.16588,30.006027,64.092575,3.823 1676,-10.2089,157.27826,29.083889,67.54149,3.768 1676,291.5368,228.0957,32.863464,78.59802,3.749 1676,299.06854,201.10054,17.902588,36.319717,3.73 1676,219.46591,245.24411,54.43622,117.84714,3.724 1676,619.10675,-18.705622,17.173828,43.225376,3.652 1676,299.4328,211.06651,20.054932,45.50145,3.64 1676,235.79211,490.7655,32.806335,51.3844,3.632 1676,253.02705,196.87027,14.450668,28.563248,3.562 1676,297.5582,229.78625,21.281342,51.10074,3.555 1676,306.7007,207.30565,19.014862,40.295074,3.552 1676,305.4145,229.70967,31.763245,90.617966,3.546 1676,12.926922,198.59424,53.38824,117.9848,3.533 1676,117.25516,211.70288,30.681091,63.649963,3.531 1676,187.50449,278.1912,32.740936,59.737366,3.511 1676,618.04224,487.89758,21.28833,43.996582,3.494 1676,211.79694,301.83835,32.8181,58.12613,3.49 1676,2.3166795,491.3925,19.262423,40.322235,3.484 1676,268.9479,491.2627,32.026154,51.32483,3.475 1676,34.91715,225.606,43.416744,85.90196,3.473 1676,144.36449,213.22278,23.024612,44.29181,3.471 1676,615.42017,-23.028988,26.36267,70.824715,3.439 1676,10.26532,240.13397,30.701408,63.622314,3.422 1676,2.5825782,-16.930481,17.373388,39.975872,3.408 1676,287.17218,191.65317,26.64737,60.28534,3.4 1676,3.0102575,157.49327,29.745815,65.67296,3.389 1676,-8.67846,171.1171,39.058533,96.40317,3.384 1676,-6.4871483,230.88838,18.452961,44.09816,3.352 1676,157.03174,255.55942,57.86859,121.91986,3.35 1676,308.725,195.8431,36.449127,83.36412,3.343 1676,-15.711233,242.00574,49.10462,136.94684,3.342 1676,-10.755443,-4.5301285,40.198208,101.88338,3.335 1676,-5.377934,281.0439,17.744864,37.92343,3.322 1676,387.78073,208.6115,17.941864,36.847397,3.31 1676,-6.325754,298.4378,17.415516,37.121582,3.279 1676,251.31854,318.19684,33.325073,63.957336,3.258 1676,-8.722615,101.6745,38.500896,105.37506,3.256 1676,235.88474,274.86954,30.833221,63.78302,3.245 1676,35.203762,213.69,32.12296,57.32016,3.241 1676,-9.5996895,311.96878,28.374914,74.559875,3.233 1676,125.51665,180.33463,53.870377,126.391754,3.227 1676,57.69712,292.44946,32.45421,68.81363,3.222 1676,210.98856,235.48956,43.474625,76.06702,3.205 1676,293.67877,195.35965,37.534424,86.0831,3.19 1676,164.58113,279.4671,32.99797,72.826935,3.186 1676,139.56479,267.06155,31.555649,70.68469,3.183 1676,620.44714,119.37729,18.817993,45.029114,3.163 1677,627.1604,-17.84071,17.333618,45.383587,5.737 1677,612.8768,453.72702,40.063232,108.67264,5.511 1677,-12.113438,477.55466,30.471476,63.655,5.508 1677,-6.1369963,489.40933,18.730976,42.269196,5.425 1677,622.89667,-34.294605,26.614075,73.88122,5.415 1677,626.52856,487.93738,20.708435,45.888123,5.39 1677,-11.282257,-33.19054,29.73429,73.72124,5.216 1677,-22.079449,401.80435,79.35529,176.42422,5.204 1677,126.36708,263.846,30.904709,75.042114,4.963 1677,-5.986904,-18.792953,17.976784,43.576103,4.919 1677,-17.555944,-62.69825,56.616135,143.93001,4.862 1677,603.47986,-56.18261,53.02899,135.18141,4.842 1677,582.9321,410.83185,71.760864,177.50513,4.817 1677,2.5317872,162.02832,20.860737,42.63002,4.714 1677,536.5183,310.99417,143.12073,340.35092,4.71 1677,5.3740063,253.40314,30.943228,60.003174,4.607 1677,585.80756,-101.5469,76.17621,235.77841,4.603 1677,-72.64821,267.39587,199.91776,459.4906,4.515 1677,493.19522,226.98395,237.71884,515.14526,4.405 1677,277.08554,491.4035,31.954498,52.072815,4.396 1677,-70.77228,-189.08656,212.08289,454.95477,4.365 1677,-5.288751,169.07631,18.164154,41.528214,4.353 1677,10.277449,230.27054,32.763565,67.35086,4.301 1677,204.16467,285.1731,30.99408,66.473755,4.25 1677,-37.24898,-127.57572,117.45419,279.00943,4.229 1677,489.30344,-178.41623,236.53146,422.15222,4.205 1677,145.27661,166.30682,21.278229,38.70459,4.143 1677,594.7373,-46.15571,43.917053,99.828026,4.138 1677,212.10265,301.99933,31.849762,60.613586,4.108 1677,133.60597,202.3536,30.26616,62.851044,4.073 1677,3.7109375,155.51442,30.257778,65.9996,4.066 1677,219.38501,284.79068,32.085724,64.56296,4.025 1677,188.40105,254.75676,55.25183,110.60625,3.98 1677,-5.8727546,248.62952,18.394884,44.02423,3.955 1677,352.99716,206.07439,21.02652,34.331482,3.87 1677,-9.801564,312.88422,28.155369,72.77078,3.853 1677,291.26813,218.23347,38.826843,103.41081,3.803 1677,13.228679,199.90417,52.5473,117.64209,3.757 1677,291.81293,489.1188,31.817017,53.75949,3.732 1677,211.10263,235.29422,42.80298,75.64691,3.69 1677,-6.35112,223.64156,18.035633,43.58403,3.68 1677,-4.4372993,140.67665,15.864111,38.593536,3.645 1677,619.0669,-18.762484,17.430115,42.68354,3.605 1677,-0.32902837,214.07117,27.138126,70.05591,3.585 1677,289.10712,493.34134,22.09784,38.103058,3.533 1677,251.98505,195.11566,15.411682,31.87445,3.527 1677,-9.8937645,141.97086,28.740284,67.07596,3.524 1677,150.59602,201.18564,28.853195,66.262115,3.518 1677,160.63927,278.6637,47.598434,93.48114,3.478 1677,20.616026,215.52432,31.588373,60.758484,3.418 1677,220.84497,244.54195,52.484528,116.293686,3.404 1677,57.57677,290.33994,32.159252,70.09677,3.402 1677,-9.090787,170.69907,39.22104,96.80301,3.382 1677,397.11377,205.29655,15.5894165,28.587128,3.362 1677,35.273773,224.5026,42.98642,87.63513,3.36 1677,304.77652,224.28342,31.226776,75.18576,3.354 1677,-8.586255,102.768265,38.439,102.95438,3.323 1677,-6.0482225,298.88254,17.14228,37.588043,3.316 1677,-5.3297114,280.0908,17.583996,39.17685,3.315 1677,-11.980347,226.30043,30.124256,72.46196,3.312 1677,618.3337,490.06467,20.904541,42.34445,3.303 1677,-8.354174,234.64902,38.97811,93.72479,3.29 1677,315.42874,208.19662,55.711365,154.22665,3.257 1677,250.88106,271.02356,18.898117,31.021027,3.239 1677,2.0927458,490.5601,19.514828,41.06485,3.236 1677,2.6639867,-16.757689,17.118414,40.338356,3.215 1677,427.61804,258.8306,33.91211,62.872772,3.212 1677,44.005844,299.13712,29.832993,68.383606,3.212 1677,-10.704901,-4.8271675,40.568573,102.41086,3.205 1677,289.69086,203.85677,19.7164,42.758743,3.199 1677,235.87436,489.72394,33.017944,51.503906,3.196 1677,1.8589711,344.67606,19.310478,46.35028,3.18 1677,357.4384,192.83386,37.47177,81.820984,3.158 1677,283.2744,222.99487,56.634705,178.96515,3.153 1677,123.475784,262.47607,55.86876,123.04797,3.152 1677,157.33046,213.65771,54.478394,116.94885,3.146 1678,611.5406,230.12009,32.49701,131.75626,9.595 1678,-11.412481,-31.91605,29.836147,72.206505,6.036 1678,619.0229,222.47636,20.163269,55.773727,5.93 1678,-6.0789943,489.28287,18.811407,42.19632,5.677 1678,612.881,453.94043,40.056335,108.59479,5.5 1678,627.1438,-17.583939,17.347534,45.446217,5.405 1678,626.4205,487.4845,21.020447,45.621887,5.357 1678,-8.943976,464.3723,37.59051,92.96796,5.296 1678,-22.069864,401.86676,79.20061,176.36224,5.213 1678,611.25055,-48.579803,41.428955,102.49786,5.145 1678,-6.0872803,-18.26055,17.95539,42.76459,5.045 1678,-17.565468,-62.08352,56.658035,143.29169,4.943 1678,536.18353,310.2739,143.40399,341.7626,4.93 1678,596.4632,215.96078,42.25055,179.80627,4.864 1678,582.8961,411.2253,71.73047,177.05057,4.828 1678,-5.922865,168.55324,18.87076,42.332855,4.611 1678,-0.8054769,167.35464,27.489437,77.275925,4.55 1678,492.90405,228.10596,238.12305,514.2428,4.55 1678,585.87286,-102.09663,76.06433,236.62369,4.539 1678,-72.47562,267.4693,199.74612,459.00848,4.498 1678,397.21072,205.49406,15.980438,26.997498,4.384 1678,-70.69149,-189.06,211.8118,455.05493,4.373 1678,125.171364,264.344,31.785378,73.049835,4.353 1678,-37.227776,-127.71841,117.39321,278.5001,4.242 1678,284.9783,222.48085,29.144562,76.79155,4.239 1678,404.3501,205.78526,15.368042,25.959946,4.224 1678,604.1519,189.40762,46.63495,143.62491,4.166 1678,489.64417,-178.16925,236.39716,422.2788,4.13 1678,150.30458,209.39899,30.831223,70.88568,4.094 1678,-5.782447,249.805,18.064095,42.26306,4.033 1678,137.20154,211.98166,23.524185,45.7175,4.017 1678,204.97926,302.13672,30.754837,60.898865,3.994 1678,277.5043,490.90887,30.87091,52.196167,3.968 1678,290.2787,203.24226,20.77716,43.470108,3.967 1678,584.7927,233.35278,34.472717,116.11481,3.904 1678,621.1339,222.62665,25.576294,84.76984,3.901 1678,298.61395,204.33446,20.305786,42.663483,3.88 1678,1.2073648,247.90788,27.453768,66.97789,3.875 1678,625.8924,218.9585,18.142395,47.90915,3.84 1678,2.5513685,161.84317,20.758202,42.116318,3.803 1678,344.6686,199.04218,21.965637,38.18535,3.798 1678,302.08716,209.41943,27.315369,59.903503,3.778 1678,187.51099,255.86325,55.97046,110.602844,3.768 1678,617.9176,278.0275,19.592651,69.1788,3.672 1678,306.32416,206.94995,19.914215,40.07448,3.671 1678,141.28091,202.62802,29.249725,62.875366,3.652 1678,189.197,296.07675,30.150818,63.562775,3.633 1678,-6.071163,231.80586,17.96183,43.03917,3.632 1678,171.63118,285.4417,33.337723,67.243744,3.616 1678,291.7184,219.83289,37.996185,101.712585,3.597 1678,292.35925,489.0129,31.021149,53.835968,3.574 1678,342.29355,193.87099,36.668365,80.29173,3.573 1678,308.94534,194.53955,36.090485,83.826965,3.571 1678,2.4430008,-16.285349,17.104671,39.260017,3.566 1678,-10.995016,161.94638,28.591925,69.41069,3.558 1678,452.1579,243.71246,41.02359,98.94037,3.549 1678,561.7398,226.4014,50.15033,149.54977,3.538 1678,10.357657,239.6753,31.329758,64.38013,3.509 1678,220.3193,244.67218,53.04538,118.04724,3.505 1678,575.4865,250.36885,51.972107,175.19237,3.491 1678,357.59702,200.43799,38.019012,86.99164,3.478 1678,-8.8030205,72.36371,39.03598,103.41492,3.475 1678,249.69916,414.465,20.138306,29.489136,3.467 1678,618.23096,489.37054,21.061768,43.13922,3.462 1678,307.18472,220.78587,39.066223,100.20558,3.455 1678,-9.508791,312.51437,28.129599,74.906525,3.44 1678,622.45593,294.50412,26.030945,87.000824,3.434 1678,-0.81573725,213.38493,27.427734,70.30611,3.423 1678,305.9788,236.38124,22.694885,51.68013,3.393 1679,585.6263,219.87323,46.196777,168.61206,65.571 1679,594.00574,216.54083,33.6792,87.42944,8.129 1679,-5.980572,489.07404,18.640942,42.39569,5.79 1679,627.1529,-17.743946,17.258484,45.442383,5.643 1679,-12.000146,477.09692,30.204304,64.1286,5.633 1679,-11.415757,-32.69268,29.89886,72.33497,5.599 1679,626.44434,487.8535,20.940613,45.887115,5.597 1679,613.0427,453.57367,40.04126,108.18347,5.561 1679,622.7785,-34.474365,26.627869,74.52113,5.459 1679,-22.080175,402.15286,79.27868,176.30917,5.323 1679,536.0897,308.34302,143.70776,343.59235,5.231 1679,-6.151087,-18.6178,18.093557,43.25888,5.088 1679,603.54944,-56.40986,52.87439,135.85234,5.002 1679,572.5898,224.52696,32.289368,75.06413,4.893 1679,-17.55475,-62.420567,56.79135,143.22223,4.875 1679,582.8248,411.29156,71.71796,176.79956,4.864 1679,-5.365652,170.55841,17.67754,40.46573,4.833 1679,125.16358,263.70764,32.24671,74.48996,4.774 1679,607.07654,220.27031,40.698242,125.04518,4.755 1679,284.4978,491.00787,31.59195,52.637817,4.618 1679,492.69272,227.83234,238.32828,514.3012,4.59 1679,585.99664,-101.43182,75.70001,235.44766,4.578 1679,-72.521736,267.39355,199.80849,459.0531,4.481 1679,-70.77979,-189.34465,212.01508,454.8913,4.434 1679,616.52167,231.22336,22.098206,64.25867,4.328 1679,568.65015,231.65894,42.637817,127.43854,4.287 1679,621.52264,224.69211,27.785461,77.3244,4.286 1679,-37.34893,-127.63637,117.51064,278.6335,4.259 1679,195.88362,302.42126,32.21689,62.795563,4.242 1679,17.006584,230.66084,32.580963,68.30766,4.194 1679,613.7479,276.28067,26.147827,97.77811,4.123 1679,489.73474,-178.18808,235.99432,421.70657,4.058 1679,594.7543,-46.209904,43.829468,100.17052,4.041 1679,4.159402,252.9138,30.968906,62.190933,4.019 1679,-6.2484064,238.882,18.7785,44.77147,4.01 1679,187.75536,252.7181,56.591843,113.43706,3.973 1679,133.95262,207.25137,30.175491,62.201263,3.965 1679,-10.611141,164.06519,28.17323,69.082535,3.892 1679,605.86035,221.20143,24.984558,55.873093,3.86 1679,12.882959,200.55664,52.3462,117.96173,3.821 1679,548.0368,248.11743,40.6167,113.65088,3.797 1679,0.46568274,174.61201,27.18455,72.7988,3.735 1679,220.05998,237.15387,53.88936,123.12579,3.705 1679,150.9358,210.2616,30.747665,70.606445,3.694 1679,-0.65642357,213.64459,27.928057,71.42221,3.672 1679,619.02686,-18.69724,17.432007,42.661606,3.668 1679,597.61975,277.6987,29.979065,93.32172,3.661 1679,617.5916,260.64194,21.053162,52.78299,3.648 1679,553.4534,233.73253,79.900635,240.07106,3.642 1679,282.73196,320.23395,20.142242,43.64084,3.641 1679,268.83347,491.2869,32.254425,51.239166,3.627 1679,-9.177259,72.27977,39.169014,102.9756,3.625 1679,200.79199,283.59735,22.048645,40.340393,3.597 1679,611.9434,186.17874,38.589478,103.556915,3.581 1679,-6.5923285,223.68877,18.38055,43.271744,3.576 1679,274.53076,319.29703,20.242462,43.546967,3.519 1679,85.57717,296.59958,29.892342,65.45584,3.513 1679,452.0201,243.3513,40.91562,99.65645,3.499 1679,-8.706511,234.31082,39.158775,93.6969,3.491 1679,163.68893,292.04092,33.411987,66.536285,3.483 1680,593.452,227.14818,44.812195,105.23857,97.25 1680,546.6702,219.96263,50.849182,123.884995,89.522 1680,610.76056,220.42908,28.912292,76.545044,9.861 1680,622.67944,-34.52266,27.04071,73.809715,6.066 1680,560.9114,223.38982,64.640015,177.53175,5.735 1680,613.10046,453.57068,39.786377,108.350586,5.72 1680,626.7464,487.96823,20.380615,45.658295,5.687 1680,-6.0700502,489.636,18.600807,41.71039,5.686 1680,627.2191,-18.063938,17.463196,45.54265,5.643 1680,-11.725759,478.19803,29.844154,63.233795,5.544 1680,535.6451,309.33203,144.63757,342.75647,5.44 1680,-11.3651285,-32.872826,29.644054,73.31992,5.425 1680,-6.064484,-18.692791,18.143414,43.26143,5.256 1680,600.5941,180.31909,51.123535,126.909,5.195 1680,-22.154613,401.42752,79.34947,176.65262,5.133 1680,582.80035,412.11465,71.847595,176.509,5.011 1680,603.5003,-55.9088,52.897766,134.59735,4.917 1680,305.65283,210.31139,21.844116,47.691635,4.845 1680,541.626,220.95366,36.660828,87.03847,4.828 1680,-17.629658,-62.09703,56.771175,142.83527,4.809 1680,194.0471,284.4173,31.759247,69.76257,4.775 1680,494.10736,229.46204,237.03223,511.16864,4.738 1680,597.16254,255.64656,39.348938,130.14629,4.658 1680,-72.503174,267.1787,199.87175,459.29907,4.525 1680,624.48755,223.34561,21.238403,51.265472,4.475 1680,-70.779945,-189.46915,211.80762,455.04373,4.405 1680,586.397,-102.06742,75.308716,235.96262,4.362 1680,4.535699,249.71307,31.165764,65.700195,4.325 1680,566.03033,243.74733,38.762695,90.873886,4.261 1680,-37.206932,-127.63803,117.57848,277.91467,4.242 1680,124.98233,263.45084,32.422394,73.70514,4.176 1680,589.105,227.40297,59.920837,197.12651,4.17 1680,532.51624,-186.0778,148.8601,431.61954,4.162 1680,616.5704,232.62547,29.939636,88.2661,4.143 1680,597.81726,214.67914,31.940308,73.00525,4.133 1680,-5.1325917,162.73795,18.009338,39.309814,4.128 1680,560.59595,209.91016,42.918945,92.67816,4.119 1680,594.9089,-45.810596,43.703857,99.51976,4.001 1680,173.08112,256.24585,55.66577,125.807526,3.963 1680,580.2361,211.8192,43.56549,88.54805,3.953 1680,515.9171,233.08131,42.64026,111.93822,3.944 1681,572.6228,225.06496,43.257446,100.73448,94.725 1681,524.2757,218.167,48.748962,124.817856,89.655 1681,541.7217,219.59451,44.735474,107.67236,12.244 1681,612.92053,222.406,35.637146,106.60681,8.047 1681,-11.771481,478.36017,30.135405,62.925476,5.849 1681,-6.120883,489.61047,18.804771,41.522583,5.716 1681,-6.07399,-18.422838,18.122524,42.682854,5.586 1681,627.1372,-18.075695,17.462463,45.579628,5.517 1681,565.41205,219.99278,33.683044,90.5085,5.51 1681,-11.499512,-32.99925,29.992096,73.29134,5.477 1681,626.68274,487.9682,20.590454,45.830994,5.447 1681,535.6227,308.4186,145.24982,343.1711,5.446 1681,622.9095,-34.63218,26.648071,74.46772,5.441 1681,-21.978273,402.15674,79.19439,176.11243,5.229 1681,612.9784,454.06326,39.641846,108.26486,5.219 1681,582.9616,412.09064,71.71283,176.4607,5.103 1681,-17.671679,-62.036213,56.98398,142.08733,4.975 1681,501.82153,214.86394,68.23224,184.49031,4.875 1681,603.35486,-56.29589,53.259583,135.20082,4.865 1681,561.0635,225.36441,66.48773,179.91687,4.833 1681,564.75757,242.41159,41.888367,119.209656,4.707 1681,494.3362,230.05704,236.54758,511.68588,4.681 1681,612.60565,185.2576,37.954407,99.53555,4.679 1681,587.7967,229.40622,40.94403,112.51849,4.54 1681,-72.61193,267.3239,199.95575,459.40094,4.518 1681,500.6389,230.59273,42.37259,111.79921,4.493 1681,483.93634,224.22922,40.014343,102.64349,4.465 1681,-70.74559,-189.47423,211.8413,455.5843,4.446 1681,134.00961,202.95784,28.943146,60.080704,4.392 1681,586.35614,-101.92132,75.237854,235.34518,4.352 1681,-37.23238,-127.61427,117.356445,278.42438,4.287 1681,594.7962,-46.604836,43.82953,99.802025,4.161 1681,532.7241,-185.74583,148.95044,432.4624,4.112 1681,284.11145,491.60925,32.205414,51.54785,4.096 1681,290.45892,202.43895,20.387878,43.730362,4.083 1681,595.11475,205.88428,39.95996,88.24805,4.049 1681,531.3901,214.45242,33.98175,77.55542,4.038 1681,1.4168239,245.03549,27.646944,69.177,4.017 1681,589.3546,211.70882,56.757812,186.66502,4.016 1681,9.803596,238.87363,31.159199,66.55301,3.991 1681,612.92944,257.7687,37.26599,121.43689,3.989 1681,590.35315,220.90355,24.893677,62.418472,3.95 1681,-5.6018806,160.62122,18.74404,42.59558,3.891 1681,345.05457,198.81966,19.964935,37.25096,3.878 1681,1.3988388,159.54431,22.234365,44.68576,3.877 1681,226.5217,276.87274,18.704895,28.026245,3.863 1681,554.204,257.5729,32.78839,78.11612,3.847 1681,125.723495,263.1024,31.264328,75.20026,3.836 1681,397.01642,203.71913,16.381378,29.912247,3.835 1682,546.71173,219.60786,41.458496,96.93434,96.941 1682,511.08496,220.39935,44.09137,100.66016,84.6 1682,528.9343,220.367,48.613037,115.21887,11.3 1682,612.9673,453.3066,39.875122,108.978546,5.67 1682,581.1928,230.75851,37.478516,114.098755,5.666 1682,626.5763,487.03244,20.680298,46.148956,5.557 1682,-6.0619636,488.95917,18.620369,42.156616,5.496 1682,627.354,-17.42287,17.153809,44.893013,5.456 1682,623.04364,-34.441772,26.640198,73.36999,5.377 1682,-8.972496,463.86325,37.63041,93.58499,5.358 1682,535.7049,308.51495,144.8667,342.7973,5.289 1682,-12.626984,-41.268818,41.617676,101.358955,5.23 1682,-22.061682,402.16034,79.2027,176.07819,5.218 1682,582.9889,411.40222,71.6167,176.6742,5.053 1682,9.526085,238.929,31.88224,65.33772,5.017 1682,-5.3329983,167.90579,18.33876,45.36302,4.936 1682,-6.207424,-18.846828,18.165237,43.963657,4.93 1682,126.657906,263.96683,30.376564,76.16147,4.858 1682,494.63733,230.27553,236.39429,511.69592,4.715 1682,603.733,-55.948486,52.79425,136.29831,4.709 1682,396.8139,203.59866,16.342987,29.663269,4.544 1682,-72.53087,267.42447,199.73656,459.42136,4.512 1682,-19.990908,-86.9005,71.2474,196.68019,4.491 1682,542.83765,212.03212,30.57129,79.80086,4.485 1682,2.322818,243.6416,27.432903,70.08954,4.45 1682,539.5997,219.22363,56.289856,166.60449,4.44 1682,-70.74718,-188.61978,211.63826,454.26987,4.384 1682,204.47894,284.82953,32.650192,63.027435,4.285 1682,586.318,-103.00698,75.71051,237.39886,4.277 1682,134.71083,214.62468,27.650162,61.567093,4.186 1682,306.6029,214.09215,19.709778,41.118103,4.139 1682,-37.341293,-127.463684,117.44102,278.95102,4.134 1682,565.8971,219.29504,34.677185,82.270325,4.084 1682,490.73572,-177.85768,235.08185,418.35004,4.051 1682,-0.49982667,212.17708,27.375662,71.66576,4.015 1682,467.7646,225.93814,41.66504,98.55823,4.014 1682,300.844,232.19476,30.374329,78.36572,4.013 1682,3.0240512,161.3194,20.516861,46.86226,3.937 1682,499.8616,217.36905,65.605804,179.1442,3.933 1682,-6.276622,238.13531,18.868164,45.158447,3.885 1682,295.87967,206.65456,25.98581,62.356247,3.884 1682,517.10266,212.39961,30.76593,67.8033,3.858 1682,483.03186,234.47359,44.507874,102.36015,3.798 1682,145.08894,209.3149,21.941513,42.966934,3.766 1682,591.6134,208.84808,58.256348,200.20258,3.735 1682,502.89883,217.12253,35.624054,80.754974,3.728 1682,451.17587,240.43156,41.586273,100.183426,3.695 1683,504.7146,218.61264,35.175537,89.3978,84.008 1683,523.28357,220.44054,35.703064,85.65187,72.149 1683,626.38794,487.23776,20.849915,46.257416,5.82 1683,627.219,-17.974129,17.20166,46.029903,5.771 1683,-8.994816,463.84662,37.54707,93.67975,5.638 1683,-5.9560323,489.7395,18.252289,41.76941,5.503 1683,-11.551743,-32.44233,29.724228,72.613495,5.41 1683,622.96027,-34.56475,26.459656,74.12032,5.246 1683,612.8163,453.75323,40.185303,108.42413,5.197 1683,-22.066252,401.86047,79.31345,176.3045,5.193 1683,494.5309,211.31711,53.302277,156.10837,5.031 1683,536.1342,309.86945,144.0459,341.67108,4.978 1683,582.9463,410.91364,71.69812,177.28766,4.973 1683,134.06409,204.41508,29.501404,57.912918,4.95 1683,-17.669645,-62.002686,56.952133,142.20306,4.933 1683,-6.0874186,-18.201515,18.082039,42.423233,4.921 1683,603.48364,-56.340942,52.994324,136.4515,4.741 1683,124.75656,263.88974,31.793762,73.313416,4.645 1683,468.1297,224.59236,39.75943,97.11528,4.543 1683,-72.41706,267.1149,199.77005,459.33932,4.532 1683,494.10675,229.05444,236.94415,512.8075,4.522 1683,485.61404,226.54587,43.113922,107.33246,4.438 1683,-70.72169,-188.8438,211.6932,454.81726,4.401 1683,204.51003,301.12976,31.020554,61.221466,4.38 1683,586.1309,-102.45376,75.96326,236.69028,4.35 1683,4.6078134,254.62817,31.09675,59.337097,4.185 1683,-37.16178,-127.42585,117.22842,278.42798,4.178 1683,188.07437,250.68326,55.573853,114.24121,4.131 1683,490.51624,-178.59491,235.51892,420.80853,4.103 1683,277.3058,490.77054,31.431458,52.543365,4.088 1683,345.8658,199.33138,19.433258,36.63159,3.963 1683,-9.07805,72.836716,38.85017,104.197464,3.884 1683,532.2932,231.65948,39.13147,117.46765,3.879 1683,617.9678,488.64838,21.362305,44.267334,3.84 1683,-5.385007,170.45349,17.356869,39.732758,3.81 1683,543.34436,217.97626,39.500183,101.340515,3.801 1683,595.30743,-47.79644,43.493896,101.701126,3.747 1683,397.15146,205.12158,15.580658,29.29184,3.739 1683,451.76974,228.80112,40.51587,97.69025,3.728 1683,-5.7996264,249.53728,18.19952,42.752823,3.722 1683,178.3429,276.38077,33.92549,59.597473,3.697 1683,528.8661,214.91095,23.748413,61.231445,3.685 1683,149.94241,203.47905,29.148315,61.210983,3.632 1683,220.28777,241.47641,53.20955,121.92755,3.615 1683,12.76319,198.91222,53.225037,120.260544,3.584 1683,195.85112,286.01157,31.708633,66.78763,3.518 1683,-6.4720864,231.1635,18.465425,43.997635,3.512 1683,-8.781317,234.5176,38.989838,94.1689,3.486 1683,292.54114,489.52448,30.883362,53.582886,3.475 1683,490.98444,178.55025,56.76715,121.09218,3.472 1684,488.34448,215.28387,37.091248,82.93915,67.394 1684,505.3661,218.97438,32.541748,76.08,23.706 1684,513.5243,215.49216,38.41333,104.44571,5.996 1684,-6.10252,489.94308,18.659765,41.185333,5.9 1684,627.1674,-17.548092,17.26239,44.983788,5.664 1684,490.5763,214.71265,50.08716,130.93683,5.641 1684,626.50323,487.72604,20.506775,45.692963,5.567 1684,622.887,-34.517685,26.580261,73.80163,5.528 1684,-8.792735,464.01718,37.501293,93.32541,5.505 1684,613.0061,453.58832,40.069763,108.41858,5.497 1684,-11.478229,-32.49109,29.882538,72.926544,5.484 1684,-6.118202,-18.670113,17.96926,43.45897,5.31 1684,203.98761,303.6434,32.238144,61.27664,5.267 1684,-22.019077,401.98462,79.165985,176.34247,5.21 1684,451.40735,226.60342,39.8172,97.07794,5.18 1684,-17.616938,-62.669632,56.69448,143.58092,4.982 1684,536.2777,310.54153,143.61194,341.23984,4.88 1684,582.91815,410.6049,71.77734,177.68655,4.85 1684,4.4599304,254.33333,30.852768,59.46663,4.821 1684,603.53656,-56.047504,53.13153,134.51117,4.711 1684,126.06929,266.1376,31.150284,72.0849,4.625 1684,494.00284,228.58292,236.8339,513.28687,4.558 1684,-72.55715,267.14856,199.92526,459.68207,4.556 1684,462.32788,220.6751,56.466797,153.61433,4.507 1684,586.0609,-102.30973,76.01233,236.72794,4.431 1684,-70.79139,-188.81418,211.72882,454.55273,4.406 1684,252.39008,316.30457,32.572876,65.367615,4.365 1684,134.30214,212.76677,28.263535,64.210556,4.326 1684,188.88083,303.41547,30.645538,62.2778,4.194 1684,490.1073,-178.42413,236.05975,421.2243,4.165 1684,-37.407715,-127.6323,117.5168,278.91925,4.091 1684,-5.6653843,248.77216,18.094204,43.537964,4.021 1684,187.61946,251.95651,56.000412,111.01361,3.994 1684,594.9109,-46.129707,44.006836,99.13115,3.917 1684,276.90472,490.95334,31.569427,52.31076,3.901 1684,194.44124,277.3519,31.266708,66.278595,3.811 1684,172.22543,291.8353,30.615204,68.05209,3.767 1684,396.951,205.62947,16.261627,27.263351,3.712 1684,17.65013,231.24203,31.896448,67.343414,3.688 1684,-4.2986,155.39473,16.853514,40.210052,3.652 1684,-6.2008853,174.31575,19.436163,46.86206,3.622 1684,35.39743,225.78171,42.768967,85.3009,3.62 1684,12.937691,199.1055,52.963142,117.69458,3.607 1684,133.6445,247.28683,27.756485,75.394165,3.596 1684,292.04657,489.95493,31.652466,53.24234,3.596 1684,617.93054,488.69385,21.078003,43.846558,3.586 1684,84.837555,287.50937,30.989052,68.69586,3.583 1684,-0.11492729,215.72127,27.09631,69.57326,3.558 1684,-0.16956449,167.56757,26.76998,81.652695,3.555 1684,210.79456,236.36932,43.15912,73.829285,3.542 1684,-6.360202,231.19434,18.231787,43.95233,3.502 1684,-15.934148,242.55551,49.327812,135.41974,3.478 1684,144.63481,221.16954,21.478134,45.8553,3.461 1684,-10.871406,-5.1715965,40.332104,102.029144,3.452 1685,491.39206,215.76224,34.602753,79.582855,57.794 1685,473.0735,213.75171,36.030212,79.16968,30.443 1685,477.6706,213.01712,50.620667,130.9985,7.519 1685,498.33926,220.74393,39.8497,112.87988,5.738 1685,-8.793805,463.917,37.428955,93.38861,5.719 1685,488.6534,214.31476,23.03836,63.796753,5.686 1685,622.97375,-34.68731,26.56836,74.5945,5.643 1685,627.2131,-17.896555,17.327698,45.630875,5.637 1685,-6.0120816,489.1931,18.530466,41.79071,5.566 1685,-11.471081,-32.610355,30.062458,72.681206,5.535 1685,626.4723,487.76193,20.697021,45.77719,5.346 1685,612.8925,453.28418,39.98236,108.80835,5.323 1685,-21.992645,402.21332,79.137085,176.24933,5.303 1685,-6.1196127,-18.981129,18.116158,43.87325,5.198 1685,126.2599,263.3569,30.551514,78.68152,5.123 1685,454.06418,224.02327,41.450836,94.314285,4.992 1685,-17.578846,-62.38578,56.62443,143.3688,4.94 1685,603.7054,-56.31221,52.91809,136.51624,4.896 1685,536.2035,310.888,143.74622,341.10272,4.889 1685,582.91254,410.6441,71.73132,177.62622,4.827 1685,494.05713,228.26535,236.64185,513.5868,4.645 1685,515.6353,229.1139,40.055603,108.19524,4.558 1685,585.9216,-102.69242,76.19501,237.1293,4.525 1685,-72.556435,267.12103,199.81702,459.40906,4.502 1685,-70.726944,-188.76218,211.70522,454.55307,4.438 1685,204.71835,302.40305,30.993774,62.34671,4.423 1685,251.66193,316.84607,32.107727,63.00064,4.256 1685,-4.746122,161.32263,17.819828,41.655975,4.243 1685,277.1808,491.94894,30.967041,51.812775,4.24 1685,-37.248806,-127.630486,117.350235,279.0075,4.196 1685,489.99646,-177.79001,236.29901,421.141,4.151 1685,85.239975,292.81888,30.756035,67.59161,4.122 1685,252.41516,196.33594,15.332245,29.705276,4.113 1685,434.31244,229.49052,42.69104,95.82008,4.037 1685,1.2070048,246.48294,27.042301,68.59036,3.959 1685,195.93115,284.19833,31.181961,69.607025,3.924 1685,18.126852,231.75558,32.351242,67.35101,3.9 1685,295.7166,204.60684,27.138947,62.80832,3.826 1685,133.25774,205.44681,30.188934,56.00821,3.819 1685,-9.195437,72.95766,39.05458,103.399796,3.816 1685,595.415,-47.38535,43.38617,101.86592,3.785 1685,396.40814,202.78308,17.319397,31.257446,3.781 1685,188.48813,250.54564,56.161682,113.79433,3.728 1685,13.075166,198.7337,53.379524,120.66199,3.689 1685,-2.8469229,318.99908,27.354294,78.939026,3.681 1685,129.394,211.70256,22.119034,37.936066,3.641 1685,80.378784,293.67365,24.598778,48.798676,3.634 1685,105.46831,207.84964,22.477798,34.23024,3.595 1685,-5.9892054,249.2731,18.147285,42.8869,3.593 1685,3.4610343,153.98676,29.878641,68.45279,3.561 1685,289.55838,493.50595,21.263031,37.742157,3.554 1685,619.09143,-19.226135,17.340088,43.278027,3.553 1685,-6.2765446,231.99509,18.153023,42.64331,3.52 1685,210.7183,235.7075,43.667526,73.05376,3.496 1685,236.24138,316.98294,32.31575,59.711823,3.495 1685,2.494578,-17.047173,17.338388,40.413242,3.486 1685,220.1511,276.21646,31.101013,62.951996,3.484 1685,357.62283,188.5342,37.99817,84.65239,3.467 1685,150.41338,203.77475,29.770416,60.584564,3.462 1685,123.46623,263.19446,55.544083,124.19592,3.448 1686,485.11377,215.19684,31.287598,76.624756,85.946 1686,457.34827,212.89108,36.442566,79.55435,75.976 1686,472.2068,219.36624,34.12195,75.72531,21.34 1686,-8.865515,464.0125,37.579838,93.6474,5.797 1686,-6.0259867,489.41403,18.732117,41.889618,5.766 1686,627.18604,-17.708725,17.306274,45.73181,5.631 1686,-6.0501933,-18.991043,18.08503,43.853455,5.626 1686,612.9053,453.434,40.009033,108.84787,5.504 1686,623.0896,-34.486538,26.318481,74.023224,5.404 1686,463.28094,216.33124,50.197937,127.49713,5.337 1686,-11.483563,-33.05243,29.809452,73.302315,5.215 1686,-22.070438,401.6636,79.284225,176.49222,5.162 1686,626.5899,487.5664,20.883362,46.060425,5.144 1686,536.2108,310.6308,144.03632,341.44647,5.005 1686,496.64764,216.96387,38.225098,99.06714,4.986 1686,-17.747705,-62.13473,56.973022,142.04158,4.883 1686,302.40118,210.36295,25.736572,57.055145,4.873 1686,582.946,410.5182,71.753235,177.78992,4.856 1686,603.461,-56.008102,53.39746,136.02783,4.768 1686,494.21295,227.33221,236.6607,513.8839,4.696 1686,133.42197,205.12456,29.579193,57.902176,4.658 1686,-72.590515,266.9662,199.88376,459.83105,4.613 1686,299.4284,204.98918,19.154785,41.467224,4.6 1686,188.15048,252.62921,54.568054,112.37616,4.562 1686,-70.69304,-188.94327,211.70284,455.06326,4.491 1686,586.18945,-102.41256,75.82562,236.30511,4.478 1686,204.54172,300.37814,31.664246,62.0278,4.44 1686,-5.1443977,169.97046,17.884382,41.515427,4.382 1686,-37.228516,-127.28911,117.37691,278.13812,4.208 1686,1.2579846,246.54185,27.747898,69.20357,4.16 1686,490.45648,-178.12695,236.15985,420.73795,4.149 1686,396.57346,204.43309,16.585785,29.594406,4.126 1686,2.5735068,169.32709,19.152607,44.411606,4.11 1686,125.584656,265.2337,31.278503,73.3519,4.062 1686,516.942,230.70325,39.24756,105.522095,4.053 1686,435.6615,216.91425,51.015717,121.611145,4.023 1686,404.16943,205.18964,15.570251,27.836533,4.005 1686,419.37628,227.19186,39.733673,97.38779,3.937 1686,149.82281,204.8831,29.92398,61.333755,3.92 1686,179.05786,283.34888,33.358887,71.21335,3.913 1686,4.198495,160.60146,28.572002,70.28163,3.91 1686,-9.8742,162.60498,27.826504,71.57321,3.849 1686,595.067,-47.098595,43.6792,100.77851,3.846 1686,212.21375,284.8962,31.030762,65.11087,3.844 1686,279.5772,192.07611,26.234528,61.233215,3.813 1686,-0.23872614,214.7875,27.11821,70.36957,3.796 1686,221.77878,276.74997,30.425644,62.183533,3.771 1686,483.12027,236.6844,42.26358,112.60332,3.75 1686,187.21014,275.80298,32.37291,58.73285,3.739 1686,12.745979,197.48721,53.260735,120.208374,3.721 1686,17.54121,232.1655,32.961163,67.18021,3.696 1687,451.12506,214.49377,33.25952,72.522095,93.149 1687,478.67923,216.89647,28.17746,73.66371,87.091 1687,485.01465,222.89148,37.108887,108.49597,7.58 1687,473.68738,219.05324,23.144653,56.931534,6.226 1687,-11.463691,477.7701,29.56351,64.07004,6.195 1687,-5.896719,489.33014,18.336903,41.869507,6.099 1687,627.19836,-18.038412,17.23761,45.755905,5.81 1687,622.9125,-34.493656,26.533936,73.80517,5.789 1687,626.50055,487.65594,20.557251,46.024597,5.595 1687,-11.248142,-33.331593,29.476204,73.39158,5.488 1687,447.40234,214.2564,49.305786,131.70845,5.449 1687,-6.0595484,-18.753311,18.179989,43.78469,5.302 1687,-22.05692,401.91962,79.28192,176.25244,5.272 1687,612.8193,454.01852,39.98175,107.66214,4.983 1687,-17.62532,-61.821266,57.131268,142.19803,4.926 1687,536.31335,310.6338,143.99457,341.3993,4.919 1687,583.00665,410.5344,71.74225,177.77994,4.828 1687,603.7142,-56.459465,52.961487,136.2865,4.812 1687,494.2948,226.78723,236.6023,514.03015,4.638 1687,-72.50694,267.0987,199.74089,459.63654,4.543 1687,586.22217,-102.47098,75.87427,236.60432,4.466 1687,187.45679,250.86266,55.96405,113.192245,4.402 1687,-70.614944,-188.99149,211.69133,454.88138,4.394 1687,203.22227,286.42776,32.42531,63.62436,4.324 1687,-37.31256,-127.589355,117.428566,278.7539,4.163 1687,291.7835,227.47916,31.248077,72.368256,4.151 1687,490.6463,-178.51724,236.06927,420.04193,4.115 1687,133.6629,204.94186,29.261292,57.5502,3.967 1687,-6.35789,232.05377,18.187698,42.299805,3.931 1687,-4.8832054,161.79097,17.740036,41.514145,3.927 1687,277.46655,490.43085,30.716705,52.5791,3.913 1687,1.9753307,490.9021,19.35439,40.242065,3.911 1687,18.243034,229.51154,32.274307,68.24127,3.906 1687,1.1511469,246.01512,27.149578,69.05507,3.904 1687,150.72186,205.53276,30.027374,67.077805,3.902 1687,125.587425,262.75705,31.971474,76.60141,3.892 1687,420.90482,222.82303,39.795563,97.681274,3.874 1687,436.06006,228.25175,41.954803,107.51131,3.859 1687,595.31604,-47.560482,43.51996,101.10421,3.821 1687,617.8396,488.70374,21.191101,43.23352,3.821 1687,-5.972312,249.15141,18.224724,43.345352,3.82 1687,4.0586567,159.899,29.85378,69.25914,3.814 1687,13.533552,199.02646,52.503937,119.83087,3.728 1687,84.2563,289.0275,32.005836,66.70676,3.653 1687,188.07686,292.82605,30.682236,66.25549,3.637 1687,208.83078,308.77863,22.822037,43.559204,3.625 1687,397.09274,205.37366,16.339203,29.03009,3.6 1687,211.16743,235.1782,42.805893,74.68388,3.558 1687,305.84683,233.49039,24.41922,56.367188,3.53 1687,154.54451,205.68762,20.687332,37.200684,3.518 1687,-4.374785,139.99811,15.650427,38.310608,3.508 1687,1.5727949,223.43149,22.106056,44.818573,3.506 1687,-9.090008,171.91632,39.3927,95.50729,3.487 1687,299.0401,199.58047,18.657623,39.08629,3.466 1687,619.07684,-19.28824,17.517456,43.34965,3.461 1687,2.4676733,-17.054497,17.433727,40.770973,3.449 1688,443.48376,213.92192,31.888306,63.75258,89.862 1688,461.8963,216.9768,31.306366,67.77075,66.792 1688,467.74048,214.48453,36.96353,98.901855,7.521 1688,-11.415058,-32.433445,29.665768,72.58167,5.712 1688,-6.022353,489.70462,18.575306,41.578033,5.526 1688,621.34595,476.34265,29.674438,67.703186,5.374 1688,627.1987,-17.848528,17.320679,45.535294,5.354 1688,-8.8022175,464.33664,37.483765,92.92136,5.333 1688,-6.1246386,-18.425459,18.08841,43.139668,5.276 1688,-22.058254,402.0819,79.28352,176.20227,5.215 1688,622.7139,-34.333805,26.835754,73.930885,5.129 1688,-17.570152,-62.064785,56.808468,142.70903,4.885 1688,445.60977,213.38974,52.192932,135.8858,4.885 1688,582.9204,410.25677,71.77759,177.90582,4.866 1688,536.4106,310.82758,143.59393,341.20728,4.861 1688,603.35,-55.987244,53.13147,135.78311,4.783 1688,493.68118,226.39279,237.34634,514.9501,4.572 1688,-72.656715,267.20673,199.91833,459.58746,4.527 1688,586.1244,-101.432655,75.94537,235.38052,4.509 1688,-70.49149,-189.0867,211.64929,454.98694,4.396 1688,126.329155,263.50653,30.408333,77.05191,4.357 1688,451.69348,218.37256,32.382294,82.90552,4.317 1688,396.96835,205.549,16.575653,27.828323,4.236 1688,-37.19625,-127.511246,117.36475,278.7442,4.214 1688,-5.532979,169.47514,18.313126,41.154373,4.204 1688,277.38037,492.34717,30.847595,51.10388,4.198 1688,301.63757,207.23286,28.631927,64.05931,4.196 1688,137.45207,205.27353,23.316727,46.779343,4.195 1688,490.21167,-178.67029,236.11395,420.9573,4.188 1688,187.69788,252.071,56.86798,110.60478,4.114 1688,-4.619234,156.42918,17.088495,38.554977,3.984 1688,289.59012,493.33612,21.275238,37.909058,3.95 1688,203.68614,299.22614,32.406235,63.43976,3.934 1688,-6.7255664,231.84921,18.538754,43.31491,3.927 1688,428.22632,209.88109,36.26834,76.30147,3.888 1688,1.5973008,246.94127,27.569187,65.866714,3.843 1688,177.71013,279.92432,34.32814,64.94766,3.834 1688,9.6937475,232.30246,32.557655,65.31439,3.821 1688,612.9696,434.0731,39.359375,101.43167,3.777 1688,211.15164,236.47766,43.436462,72.574524,3.744 1688,594.97125,-47.055218,43.967224,100.96727,3.737 1688,153.8573,204.51634,22.080658,39.63217,3.726 1688,-5.5886955,249.59032,18.2832,42.418716,3.716 1688,303.8918,228.07861,33.57846,92.82721,3.712 1688,418.39783,213.39955,50.749207,125.45567,3.704 1688,485.3416,231.12505,39.145935,106.92873,3.665 1688,252.35355,193.77097,15.70166,30.443604,3.662 1688,12.92973,200.31808,52.97507,118.046234,3.63 1688,2.6127493,163.21611,20.874308,40.46974,3.63 1688,294.17468,224.37521,30.980042,73.5423,3.612 1688,81.163414,294.37805,22.901443,49.374023,3.603 1688,150.91963,203.61131,30.133362,68.38051,3.59 1688,88.30011,205.64249,24.150833,35.60707,3.559 1688,-8.861089,101.811035,38.747963,104.676636,3.536 1688,292.63745,490.89035,30.626373,52.02823,3.524 1688,-10.943296,150.33359,29.666023,66.73233,3.516 1688,3.4297013,157.93683,29.89261,62.236435,3.471 1688,325.39642,194.37862,38.08545,83.09599,3.461 1688,305.82547,232.70999,24.007446,57.415527,3.446 1688,618.0647,488.76447,21.346252,43.514893,3.441 1688,217.81943,318.32977,21.953156,35.79834,3.439 1689,437.66812,212.57736,29.430878,64.54147,78.471 1689,460.1162,215.31552,26.707855,64.27609,45.902 1689,469.2311,213.3481,33.16269,87.36479,6.774 1689,-11.9039,477.6494,30.108717,63.90442,6.219 1689,-6.0350485,489.53094,18.601013,41.672607,6.018 1689,626.3111,487.49612,21.01184,46.21463,5.819 1689,-11.504545,-32.74373,29.764034,72.719894,5.729 1689,-6.048975,-18.706028,18.029297,43.133316,5.64 1689,622.9877,-34.076126,26.48352,73.99297,5.619 1689,627.06287,-18.252264,17.511475,45.90811,5.474 1689,452.49893,230.4397,39.88913,104.99103,5.454 1689,613.134,453.31982,39.54254,108.91687,5.354 1689,-22.096088,401.88477,79.311966,176.38733,5.265 1689,204.81158,299.6649,30.796143,63.14023,4.958 1689,-17.728155,-62.091576,57.08451,142.26202,4.887 1689,536.2382,310.4428,143.78223,341.5042,4.871 1689,582.9973,410.5378,71.69165,177.60367,4.853 1689,181.31548,299.36804,31.11177,63.05609,4.797 1689,603.35944,-56.52506,53.210144,136.94984,4.75 1689,133.48785,205.57596,29.595642,57.91623,4.617 1689,493.79605,226.67068,237.20706,514.67505,4.594 1689,-72.59494,267.265,199.89056,459.36737,4.535 1689,586.0715,-102.0513,76.05548,236.74445,4.488 1689,-70.53865,-189.20206,211.62419,454.95206,4.396 1689,433.24084,208.24493,46.760834,123.03552,4.36 1689,295.3076,201.98453,27.574158,67.09122,4.25 1689,-37.282852,-127.606186,117.36807,278.82388,4.207 1689,422.18384,220.93967,39.29074,100.88876,4.16 1689,490.3967,-178.5091,235.81155,420.4828,4.149 1689,4.24831,254.04677,32.38767,60.56981,4.085 1689,618.06104,489.1579,21.178223,43.408325,4.074 1689,-5.591449,169.33029,18.177431,42.054977,3.952 1689,194.70377,286.1227,31.622955,68.334625,3.951 1689,284.89087,491.45935,30.64862,52.03125,3.921 1689,172.32043,253.79605,58.295868,126.003174,3.881 1689,-5.7850904,248.06168,18.246655,43.771423,3.869 1689,125.854675,262.76926,31.466171,77.51572,3.864 1689,30.1706,222.02019,24.296837,40.132645,3.8 1689,626.65643,193.22714,18.361023,43.58824,3.733 1689,595.2093,-47.967937,43.676086,102.09443,3.716 1689,2.0623093,490.733,19.661968,40.33481,3.692 1689,153.35046,205.3245,22.137146,39.16382,3.691 1689,-6.0971446,299.29874,17.284918,37.190735,3.677 1689,83.81743,287.5626,31.8544,65.20578,3.668 1689,391.31854,196.36075,36.176086,79.16995,3.635 1689,-6.576332,230.17044,18.652313,44.481293,3.618 1689,407.42978,199.9417,35.094666,75.09456,3.615 1689,24.670197,279.83783,20.45813,35.054688,3.613 1689,261.49292,323.78653,31.668121,71.67914,3.598 1689,-11.5217285,161.9295,29.272089,71.038956,3.544 1689,-9.254031,73.65088,39.193344,102.41788,3.533 1689,-2.7112627,325.03052,25.867775,79.15231,3.531 1689,139.28964,248.93524,56.95479,124.28296,3.511 1689,618.124,194.60039,20.761719,40.895874,3.508 1689,228.08698,281.85245,31.820587,67.401886,3.497 1689,211.45349,284.2879,31.835571,67.74899,3.471 1689,118.042786,214.55342,29.92514,60.207474,3.47 1689,150.89183,212.4458,31.074112,75.45471,3.463 1689,304.71164,202.91722,21.664398,47.20897,3.455 1689,144.46254,207.49615,23.386032,44.85263,3.45 1689,121.80104,210.40105,21.865128,37.495987,3.449 1690,432.40515,208.21158,28.672974,68.63336,64.739 1690,456.57138,212.81175,25.682007,63.5634,54.592 1690,442.3106,208.25356,30.632233,76.33482,13.457 1690,454.42798,213.98044,35.70581,101.53311,7.194 1690,-5.9508777,489.04556,18.368908,42.207,6.462 1690,-11.742574,477.62808,29.622646,64.10568,6.239 1690,-6.0510454,-18.698442,17.907368,43.048233,5.904 1690,627.18134,-18.205328,17.440979,46.145905,5.633 1690,-11.517939,-32.784157,29.77085,73.02746,5.589 1690,626.42957,487.74307,20.784546,45.762787,5.505 1690,622.8787,-34.598885,26.681091,74.83599,5.48 1690,612.9781,453.6741,39.767334,107.796844,5.289 1690,-22.03269,401.76672,79.260056,176.45319,5.214 1690,468.8745,217.32986,36.885864,102.071594,5.038 1690,-17.678297,-62.21411,56.91784,142.25159,5.019 1690,536.3871,310.7392,143.58313,341.53192,4.813 1690,583.02893,410.2284,71.64386,178.14038,4.806 1690,-5.728961,168.90813,18.40281,42.465286,4.771 1690,603.50183,-56.290283,53.1593,136.94151,4.746 1690,-72.572014,267.0079,199.91919,459.7111,4.577 1690,493.8518,226.08636,236.98962,515.161,4.526 1690,586.0658,-102.06776,76.1275,236.38867,4.451 1690,244.33621,274.82556,30.604828,64.956085,4.444 1690,220.3827,275.31714,29.888565,66.74002,4.407 1690,-70.29547,-189.02412,211.57399,454.7602,4.397 1690,421.74313,220.54282,38.13385,102.39337,4.317 1690,-37.323315,-127.436806,117.21646,279.27518,4.228 1690,-6.280818,239.91545,18.50705,43.36714,4.199 1690,126.18874,263.3868,30.987907,74.657776,4.196 1690,490.28906,-178.57413,236.18188,420.43823,4.145 1690,134.17992,205.8657,29.184616,56.230118,4.14 1690,150.67065,203.25928,29.09497,60.102448,4.057 1690,293.30798,225.68236,30.645996,74.530624,4.008 1690,391.7572,195.20267,34.878265,80.47183,3.977 1690,188.16168,252.34653,55.63585,112.82724,3.96 1690,-11.524243,162.27814,28.678375,70.716,3.934 1690,5.3127184,253.5595,30.34982,59.81871,3.922 1690,440.52292,209.90627,22.107574,43.53203,3.858 1690,203.41443,277.2693,31.177124,70.17877,3.85 1690,410.35934,197.57451,34.028137,77.754654,3.836 1690,396.96365,205.85074,16.16153,28.701233,3.83 1690,277.05426,491.215,31.365845,52.16562,3.826 1690,433.7448,208.92618,47.125824,124.68408,3.793 1690,2.0959914,490.5343,19.180035,40.550537,3.781 1690,-8.825732,101.55272,38.445522,104.920334,3.755 1690,595.298,-48.01055,43.65271,102.5898,3.701 1690,295.93475,203.11255,26.561768,68.28601,3.695 1690,299.12225,199.64659,18.593903,40.238342,3.692 1690,618.33093,489.68472,20.680847,42.629547,3.676 1690,449.8499,210.72942,21.326996,41.311234,3.595 1690,485.58484,234.1001,39.374573,107.31268,3.585 1690,-4.4676046,155.27386,17.064816,39.81009,3.561 1690,305.7577,232.49844,23.573517,57.734985,3.525 1690,147.13812,167.75075,18.59787,39.70874,3.51 1690,25.241436,280.00198,19.357594,33.72351,3.499 1690,5.237027,165.47482,28.620121,77.77928,3.498 1691,425.35336,209.43741,25.406708,65.144745,73.805 1691,447.7481,216.9228,23.94577,57.265366,55.87 1691,453.74487,208.87785,31.993958,81.80525,8.709 1691,442.5636,212.794,21.114105,52.285492,6.188 1691,-11.7487955,478.45578,29.737171,62.979645,6.071 1691,-6.1772685,-18.871523,18.19045,43.40863,5.917 1691,-5.981139,489.69324,18.579376,41.43689,5.833 1691,622.8354,-33.969505,26.662231,73.6518,5.782 1691,626.94604,-18.261848,17.707214,46.10294,5.644 1691,621.4148,476.4879,29.513062,67.593445,5.601 1691,-11.499149,-32.769733,29.76836,72.58387,5.447 1691,-22.026377,402.0873,79.189415,176.30411,5.283 1691,421.28952,214.8263,36.656494,104.045044,5.19 1691,603.6279,-56.309967,52.893738,136.30537,4.973 1691,438.4079,215.76991,36.639526,101.515396,4.96 1691,453.67395,232.44891,38.423492,105.55109,4.905 1691,-17.58205,-62.17861,56.77553,142.78423,4.869 1691,134.19307,206.22412,28.71524,56.74713,4.861 1691,582.98425,410.29877,71.67639,177.8186,4.839 1691,536.4283,310.57654,143.58002,341.77002,4.81 1691,204.6023,300.72223,30.861053,63.236053,4.669 1691,-72.57213,267.33514,199.762,459.36615,4.553 1691,493.627,226.06958,237.29834,514.9543,4.496 1691,-70.66318,-188.56808,211.82396,454.20468,4.428 1691,295.78717,204.56766,26.330292,65.54172,4.413 1691,586.1139,-103.03675,76.38269,237.56891,4.314 1691,188.51859,293.6612,31.4702,66.72977,4.289 1691,-37.35159,-128.05647,117.45679,279.795,4.167 1691,4.396813,254.23056,30.686913,61.42456,4.156 1691,252.84406,196.75089,14.374023,28.857422,4.15 1691,490.35663,-178.49551,236.26569,420.08255,4.093 1691,277.2209,491.45715,31.263794,52.17102,4.083 1691,404.19345,207.53203,15.670319,27.297577,4.019 1691,396.82065,206.82779,15.486816,27.61087,4.013 1691,125.10481,263.9225,31.172333,71.95926,3.975 1691,188.72333,252.64369,55.668274,114.80553,3.873 1691,413.8829,202.51073,31.41568,81.39046,3.851 1691,613.1249,433.27615,39.950928,103.1044,3.84 1691,210.39267,285.3985,32.471634,65.322815,3.758 1691,595.3656,-48.0934,43.440613,102.02068,3.748 1691,151.12262,206.72736,29.442291,68.27069,3.721 1691,-5.5360622,249.5301,17.695534,42.228134,3.698 1691,392.67245,198.14186,33.15439,76.931015,3.69 1691,285.4806,222.29355,28.7771,77.559906,3.635 1691,-5.068004,169.71591,18.219448,41.535934,3.587 1691,-9.325365,73.727936,39.15011,102.64555,3.581 1691,145.76057,221.18887,20.675735,44.283905,3.579 1691,-6.218911,231.50858,17.921364,43.122437,3.522 1691,1.9548428,490.83603,19.651339,40.171783,3.509 1691,618.3346,489.0234,20.890503,43.481842,3.486 1691,194.20926,279.33124,33.3284,65.980774,3.483 1691,618.6331,-20.034016,17.79242,44.566395,3.481 1691,-15.681496,244.14642,48.869545,135.1258,3.469 1691,2.5087345,-17.014462,17.388023,40.1804,3.453 1691,164.00607,282.07816,33.109573,69.53497,3.431 1691,25.251646,279.58597,19.148394,34.17343,3.415 1692,419.4054,214.77011,25.41745,50.00464,50.797 1692,441.14072,215.31546,25.313019,49.660553,46.145 1692,432.07135,215.93105,23.791443,45.25847,11.049 1692,424.72018,204.62503,31.805511,80.06619,9.604 1692,439.60138,206.55528,33.916504,90.558426,7.624 1692,411.11603,203.28123,32.19989,82.4662,6.582 1692,-5.7116995,489.83524,17.994968,40.99704,6.043 1692,453.85974,206.76744,34.666077,93.99477,5.922 1692,627.2227,-17.622234,17.250916,45.453075,5.7 1692,-8.901091,464.2239,37.440674,92.95511,5.472 1692,626.45886,487.3126,20.877686,46.483734,5.447 1692,-11.460779,-32.87767,29.833792,73.76849,5.419 1692,613.28937,452.532,39.457703,109.86417,5.29 1692,-21.993408,402.0188,79.195724,176.38489,5.185 1692,622.998,-34.49077,26.561584,74.26646,5.167 1692,133.75269,206.36987,28.73648,56.67398,5.153 1692,-17.64787,-62.185795,56.85707,142.80006,4.996 1692,-6.093101,-18.571758,18.034565,43.6188,4.89 1692,536.35657,310.718,143.64001,341.7001,4.816 1692,603.59644,-56.15664,53.045166,136.37636,4.793 1692,583.134,409.55713,71.59247,178.59698,4.755 1692,-5.626479,168.44673,18.537853,43.915085,4.693 1692,-72.572716,267.09302,199.82594,459.6056,4.528 1692,493.50525,226.09976,237.49805,515.06824,4.503 1692,-70.76798,-188.64883,211.87244,454.7712,4.502 1692,4.622357,253.56216,30.869705,60.132324,4.481 1692,585.9357,-101.985535,76.28693,236.58594,4.464 1692,220.81955,287.344,32.02507,62.668884,4.316 1692,196.24591,293.2331,31.12857,65.640015,4.263 1692,202.56772,278.52402,31.424881,64.98712,4.253 1692,416.32797,206.34305,49.712616,130.35458,4.239 1692,187.94142,252.144,55.90834,112.10887,4.228 1692,277.20572,491.52902,31.506744,51.84427,4.174 1692,-37.37335,-127.827446,117.36623,278.63934,4.161 1692,490.19992,-178.8944,236.31528,421.07736,4.117 1692,150.95209,204.42606,29.427933,66.07541,4.039 1692,252.28683,195.26028,15.541962,30.369766,4.0 1692,126.40427,264.17816,29.218124,73.924774,3.95 1692,-5.8430886,247.9702,18.597858,44.98915,3.914 1692,292.0792,490.30316,31.358337,52.87964,3.896 1692,301.91736,207.19716,26.257996,62.01268,3.875 1692,-10.840237,149.45856,29.488535,69.30635,3.855 1692,283.94983,221.94879,30.835022,80.17413,3.822 1692,282.34607,321.71857,20.921478,40.721558,3.808 1692,289.9175,220.08057,39.727722,100.452515,3.791 1692,144.80032,208.21304,22.814636,44.30298,3.771 1692,187.7677,274.93246,32.63765,60.454163,3.753 1692,595.37976,-47.42602,43.45813,101.607544,3.749 1692,2.3714983,161.75342,21.256752,41.751434,3.735 1692,-0.48217058,211.43622,27.937422,73.529785,3.722 1692,-4.507086,154.90422,17.056583,39.983505,3.711 1692,211.91689,300.57693,31.673538,60.4075,3.699 1692,51.839462,217.04204,32.659134,58.813156,3.686 1692,-9.29899,72.26279,39.315613,104.401306,3.668 1692,35.193596,224.07867,43.43882,86.63959,3.627 1692,13.437693,197.03748,53.02192,118.519104,3.616 1692,2.5615406,491.76807,18.428547,39.318176,3.598 1692,-8.863839,234.70767,39.02947,92.78482,3.584 1692,2.538339,-16.674006,17.117071,40.330982,3.574 1693,416.272,213.55203,22.8143,48.80478,48.968 1693,433.56866,216.25005,21.553253,47.216415,41.842 1693,424.74838,214.7702,21.777954,45.44812,19.004 1693,409.22095,202.87949,32.542328,85.06589,6.197 1693,423.56567,205.41379,33.67096,83.24637,6.03 1693,-5.8807783,489.48364,18.486599,41.60022,6.023 1693,-11.733475,477.5661,29.84128,63.67206,5.837 1693,627.201,-17.794678,17.387512,45.640923,5.836 1693,437.56274,207.59094,34.75479,85.243164,5.705 1693,622.9678,-34.66578,26.539795,74.57855,5.699 1693,-11.573711,-32.669853,30.026325,72.540924,5.632 1693,-6.048914,-18.204157,18.034718,42.936584,5.536 1693,626.5889,487.9594,20.410583,45.5755,5.48 1693,612.88074,453.90292,40.12256,107.94156,5.364 1693,-22.05655,402.1635,79.34952,176.23541,5.288 1693,-17.650736,-61.611305,57.125977,142.03683,4.881 1693,583.02594,410.77362,71.632935,177.56781,4.877 1693,134.69821,204.82704,29.133667,56.381638,4.844 1693,536.45056,310.89966,143.2055,341.1996,4.747 1693,603.58453,-56.121853,53.115356,135.52234,4.731 1693,1.483897,246.4148,27.664915,67.92993,4.641 1693,-72.61009,267.2156,199.84525,459.65524,4.525 1693,187.4988,284.04926,33.222397,70.135864,4.523 1693,-70.65806,-188.83282,211.67749,454.94864,4.515 1693,586.01495,-101.47598,76.10425,235.91974,4.488 1693,493.31345,226.12741,237.72043,515.40076,4.411 1693,149.59073,202.7535,29.424332,61.401993,4.333 1693,387.4144,208.67639,17.927734,34.340378,4.322 1693,125.587036,264.07635,31.008606,71.924255,4.273 1693,413.63132,212.2023,18.480377,34.160034,4.265 1693,490.26953,-178.86987,235.67883,422.08044,4.254 1693,-37.4765,-127.68174,117.487564,278.62692,4.205 1693,-5.81709,248.7313,18.432762,44.374146,4.033 1693,17.3601,232.77106,33.48899,65.6142,4.022 1693,277.3624,492.96875,30.874481,50.144653,4.01 1693,453.3102,224.4204,38.42752,100.77379,3.979 1693,43.227516,215.21034,32.604004,56.965134,3.959 1693,187.94202,251.07056,55.43553,114.3031,3.906 1693,295.50052,204.46167,26.31192,65.398865,3.885 1693,203.35199,276.7778,30.31131,65.597015,3.881 1693,84.09801,289.1214,31.81607,66.12375,3.88 1693,2.6083028,276.51767,20.647488,39.754852,3.88 1693,-5.974864,298.4743,17.022493,37.23114,3.869 1693,-4.375617,155.56363,16.692287,39.51233,3.839 1693,-5.5422573,168.71112,18.272505,43.8098,3.83 1693,396.06726,209.1586,16.014648,28.082321,3.791 1693,594.94824,-46.870422,44.1062,100.252304,3.79 1693,2.4152374,-16.267895,17.384953,39.432556,3.78 1693,170.77318,284.58994,34.740585,69.77954,3.746 1693,-6.473298,231.29759,18.498322,44.443222,3.718 1693,252.47253,196.776,15.07135,29.90863,3.699 1693,618.06934,489.63593,21.076477,42.426453,3.694 1693,292.19778,490.6294,31.35019,51.78015,3.688 1693,121.70933,210.15631,21.998573,36.408997,3.659 1693,-8.819857,101.92703,38.505306,104.92224,3.658 1693,619.09656,-18.737165,17.41504,42.974262,3.655 1693,2.3127794,490.49426,19.300652,40.570435,3.654 1693,236.13106,492.1158,32.816177,49.744354,3.648 1693,58.832188,206.40208,30.60323,57.175125,3.639 1693,57.597572,291.34137,32.519653,69.01898,3.631 1693,3.9041638,267.04602,31.06239,65.13995,3.622 1693,416.10492,209.0085,49.243652,131.45879,3.61 1693,-0.71279883,214.21315,27.284908,71.61156,3.599 1693,3.693273,158.38538,29.412046,76.63805,3.563 1693,290.42358,203.98604,19.206665,43.60933,3.558 1693,-2.530036,320.48462,26.356064,77.736145,3.548 1693,289.484,493.76642,21.520569,37.084778,3.545 1693,-15.979555,246.06345,49.310593,132.73343,3.525 1693,380.5595,209.38547,18.081818,33.42711,3.506 1694,416.60535,216.55746,22.297974,43.948364,30.472 1694,424.4959,217.64325,21.759583,48.264862,16.863 1694,412.1893,213.3803,19.148407,33.951782,6.486 1694,421.96228,207.83203,34.57669,83.10336,6.116 1694,-6.062627,489.37466,18.622051,41.776398,5.957 1694,-11.827298,478.22815,29.894966,63.257385,5.803 1694,627.2858,-17.65976,17.184753,45.659065,5.748 1694,407.12344,215.51332,29.486359,63.51863,5.741 1694,621.1874,476.6775,29.86029,67.251465,5.612 1694,-11.48358,-32.71466,29.819767,72.34953,5.526 1694,-6.0397534,-18.944616,18.065186,43.73926,5.467 1694,-22.113834,401.80286,79.245605,176.35779,5.259 1694,623.07654,-34.492924,26.40155,74.5253,5.178 1694,-17.850933,-62.010517,57.225014,142.30801,5.092 1694,134.47345,206.1343,29.121277,56.7946,4.862 1694,582.9244,410.42902,71.73816,177.73486,4.793 1694,536.1813,310.8026,143.56616,341.50305,4.749 1694,603.2774,-56.398697,53.401672,137.46622,4.613 1694,-72.4874,267.0852,199.77744,459.57812,4.537 1694,196.87134,298.9347,30.00177,62.767853,4.503 1694,151.4154,210.55563,29.691849,68.13785,4.462 1694,493.27344,226.4845,237.69751,515.00806,4.449 1694,430.62924,214.35925,22.15921,41.581696,4.425 1694,585.88306,-102.28263,76.51935,236.6564,4.374 1694,-70.512535,-188.74367,211.56879,454.47284,4.346 1694,4.9274087,254.70055,30.403128,59.542557,4.272 1694,145.11522,214.72656,21.821869,42.499146,4.223 1694,-37.412796,-127.22402,117.58884,278.52002,4.16 1694,-6.1578455,168.86078,18.694118,42.861404,4.142 1694,489.70758,-178.47035,236.43262,420.93613,4.139 1694,189.19191,249.32645,54.06703,116.27142,4.038 1694,277.33096,491.66333,31.294434,51.83606,4.033 1694,613.0856,434.28333,40.01306,101.73804,4.009 1694,180.87119,303.6302,30.311447,61.060425,3.906 1694,375.2981,195.01263,34.95691,80.436584,3.906 1694,203.02023,280.3519,30.830704,63.4859,3.889 1694,124.84031,261.72433,31.555428,76.65637,3.871 1694,-5.8254538,249.54468,18.27287,43.404358,3.869 1694,395.29828,208.35094,19.600433,37.54718,3.821 1694,359.23682,193.58328,35.887207,81.458954,3.816 1694,-4.8584685,155.0524,17.341608,39.686462,3.813 1694,2.8499043,161.39467,20.736712,42.409332,3.793 1694,-4.5247025,139.32965,15.906525,38.58487,3.769 1694,435.89526,213.8217,37.248657,89.131424,3.744 1694,125.63919,216.37077,29.299454,59.86177,3.738 1694,452.84164,224.7615,39.27292,100.169464,3.737 1694,52.382416,218.43976,31.235481,57.751465,3.727 1694,83.67856,288.63937,31.598831,68.25195,3.711 1694,295.31113,203.91873,25.871552,66.21823,3.676 1694,595.2032,-47.612076,43.92816,102.11223,3.642 1694,211.75119,235.22964,42.058105,74.86975,3.635 1694,253.29988,314.58746,31.168228,64.53171,3.597 1694,17.241209,231.11115,33.349487,68.37579,3.575 1694,619.2362,-18.820225,17.225708,42.81119,3.565 1694,405.18893,209.76286,18.270172,31.812378,3.565 1694,415.47906,210.02478,50.506805,130.12006,3.534 1694,404.8126,223.24261,39.923492,101.6875,3.531 1694,-11.340124,155.97531,29.43979,68.38391,3.522 1694,2.5598073,-17.315163,17.270985,40.665802,3.509 1694,13.026805,200.35947,53.34428,119.34332,3.504 1694,234.29579,325.51572,19.80931,33.599396,3.499 1694,368.2396,210.09634,22.743408,45.9458,3.492 1694,129.3828,211.9868,22.270065,38.015076,3.489 1694,4.80978,157.86453,29.705673,70.81711,3.48 1694,392.09958,199.66158,35.33374,78.51665,3.477 1694,299.88858,232.48264,32.715546,80.76596,3.451 1694,618.1411,488.4572,21.164917,44.017883,3.447 1694,-15.9464855,245.83353,49.325584,133.30338,3.426 1694,426.42523,247.3074,35.140045,62.87805,3.41 1694,-9.185629,74.10949,39.228874,101.67628,3.408 1694,212.82135,303.8506,30.882843,59.811615,3.402 1694,292.18414,490.86374,31.202972,51.945526,3.387 1694,-6.4272313,231.30943,18.434828,43.951187,3.371 1694,121.3356,213.20781,21.91504,35.43907,3.35 1694,377.8085,210.5897,20.869232,44.58264,3.341 1695,409.33774,213.30194,21.626984,47.100708,49.661 1695,422.62,214.44305,20.574097,46.312866,12.9 1695,408.89795,205.01695,32.374573,82.873825,8.008 1695,404.5662,209.41507,18.761108,38.68138,5.957 1695,-11.87573,477.26028,30.212955,63.762848,5.755 1695,-11.375984,-32.37687,29.743872,71.94233,5.692 1695,-6.1861544,489.30728,18.97631,42.090973,5.665 1695,613.0019,453.8168,39.867004,108.21982,5.62 1695,622.9487,-34.745747,26.626404,74.01773,5.512 1695,421.97812,207.94078,34.22577,82.38429,5.476 1695,627.1902,-17.463099,17.10315,44.836044,5.474 1695,-6.0504193,-18.443314,18.000488,43.255177,5.397 1695,626.6689,487.92508,20.66388,45.760284,5.308 1695,-22.266888,401.6729,79.45389,176.4737,5.18 1695,203.45003,286.87408,31.63443,64.80823,5.049 1695,-17.64489,-61.819557,57.108826,142.46489,4.92 1695,582.9621,410.68564,71.78009,177.62595,4.83 1695,603.2633,-56.03402,53.522705,136.37624,4.716 1695,536.3961,311.2297,143.52185,340.6216,4.696 1695,194.04987,279.05994,31.893906,64.19458,4.539 1695,-72.54803,267.14398,199.78506,459.5678,4.53 1695,1.4513564,245.83731,27.891558,68.99518,4.498 1695,493.42676,226.47836,237.47656,514.8611,4.469 1695,585.90326,-102.03975,76.45972,236.15472,4.416 1695,-70.72349,-189.04515,211.59357,454.58875,4.412 1695,387.11035,209.61603,18.376953,38.146988,4.387 1695,399.53067,217.5438,28.618256,67.157074,4.286 1695,397.73962,209.00354,17.358887,33.690643,4.252 1695,489.94388,-178.90881,236.14426,421.16534,4.178 1695,-37.343906,-127.272705,117.47934,278.59427,4.174 1695,-5.980939,248.7417,18.440346,43.4505,4.111 1695,393.28387,205.42654,27.064056,61.19919,4.106 1695,9.773751,238.01013,31.78653,68.20557,4.096 1695,150.66936,216.62372,28.699417,74.27487,3.992 1695,301.76642,207.64719,27.559204,58.71054,3.961 1695,125.7433,263.35562,30.540451,75.9393,3.948 1695,134.01933,206.16801,28.801224,55.14824,3.943 1695,284.1318,491.18246,32.329315,52.374115,3.927 1695,338.64563,59.618645,29.139435,80.79731,3.824 1695,139.51491,165.98375,20.161575,42.412415,3.818 1695,2.535311,163.71655,19.840178,41.028397,3.744 1695,13.052158,201.64285,53.43507,117.47601,3.739 1695,85.052826,288.65256,30.551132,67.825806,3.735 1695,360.0788,193.68027,35.04773,81.38971,3.696 1695,437.197,208.21895,35.59555,86.28435,3.685 1695,154.2554,207.19698,20.834167,36.531372,3.665 1695,-5.3227797,169.02168,18.521818,42.50995,3.649 1695,594.88696,-46.49018,44.361816,101.00634,3.647 1695,-6.168479,299.2139,17.158583,37.141083,3.642 1695,-6.5774765,230.85362,18.681772,43.750473,3.593 1695,144.9953,210.1073,22.604584,41.249817,3.592 1695,453.49847,227.82132,38.660828,99.93152,3.588 1695,220.54001,286.49063,31.168396,62.431,3.585 1695,188.79666,255.95245,54.10019,109.40277,3.58 1695,-8.791765,102.43704,38.496544,105.407074,3.536 1695,179.2375,275.76074,34.660065,59.41516,3.535 1695,379.96808,210.44135,17.873749,35.941467,3.531 1695,121.74302,211.75014,21.90792,34.87419,3.527 1695,376.79047,195.13513,33.321198,80.06909,3.513 1695,619.25024,-18.121576,17.035461,41.377075,3.477 1695,-5.4520464,280.3583,17.736343,38.370453,3.468 1695,2.5237072,-16.584759,17.125114,39.789886,3.465 1695,-8.862406,171.94183,39.451393,95.08612,3.459 1695,342.21765,183.39746,37.09491,80.844635,3.457 1695,-10.0894985,162.56017,28.506231,72.331894,3.45 1695,326.25122,194.85492,36.53018,79.73535,3.447 1695,50.62565,217.92151,32.995605,57.73581,3.438 1695,1.7365277,490.10547,20.078314,41.455444,3.436 1695,415.92908,210.85838,49.48828,129.66054,3.415 1695,618.1124,490.48657,21.153564,41.74109,3.377 1695,189.87022,299.0632,30.633606,61.64911,3.371 1695,249.59084,414.82935,20.441086,28.924835,3.366 1696,418.4508,214.67078,20.061035,46.409912,49.144 1696,401.53638,211.25934,21.38208,47.616974,33.788 1696,409.2786,214.98523,21.58368,42.85547,17.316 1696,408.2797,206.53914,33.204742,82.25554,7.257 1696,421.70285,209.67839,34.187103,82.14546,6.069 1696,-5.755788,489.74875,18.16257,41.444,5.965 1696,613.0436,453.34995,39.85193,109.36899,5.687 1696,627.2141,-17.875847,17.399841,45.78013,5.601 1696,393.28098,202.85281,32.19098,84.835846,5.522 1696,-11.460243,-32.65346,29.85284,73.00591,5.322 1696,-9.016359,463.7755,37.61811,93.54913,5.321 1696,626.4729,487.04663,20.821167,46.826294,5.31 1696,-22.01351,402.11508,79.196785,176.3403,5.274 1696,623.1089,-34.307465,26.44336,74.55003,5.259 1696,-6.070319,-18.278946,17.98058,43.022675,5.135 1696,-17.776537,-61.811543,57.031647,142.1591,4.909 1696,582.96814,410.46313,71.75958,177.7528,4.841 1696,536.2912,310.8843,143.72577,340.93857,4.775 1696,603.55145,-56.321613,53.142517,136.90178,4.759 1696,-72.51497,267.37717,199.74289,459.29556,4.529 1696,145.23398,209.89151,22.22406,41.834,4.525 1696,493.4502,226.70578,237.31952,514.3627,4.515 1696,296.08182,203.89677,26.064636,64.745804,4.47 1696,125.38359,264.436,31.034119,74.81653,4.452 1696,-70.484314,-188.56898,211.52405,454.38007,4.424 1696,205.61836,302.49216,30.828156,61.992493,4.37 1696,585.91486,-102.16046,76.4931,236.80804,4.369 1696,-37.259056,-127.64584,117.26388,278.1891,4.232 1696,286.32373,199.22644,25.886597,62.50287,4.194 1696,-5.6735587,168.57204,18.378355,42.30461,4.179 1696,18.51472,231.49301,31.955784,66.58679,4.161 1696,151.94864,211.80682,29.227951,69.3938,4.105 1696,489.93988,-178.13962,236.33057,420.33957,4.089 1696,1.7725849,246.39189,26.964882,67.31612,4.006 1696,134.55579,207.54846,28.027618,55.332916,4.0 1696,277.61548,491.15674,30.931519,52.209595,3.977 1696,423.1116,220.42241,22.803558,55.418167,3.968 1696,130.40102,213.4198,20.605042,36.80211,3.893 1696,121.68689,216.51193,20.360504,33.51541,3.835 1696,384.3047,203.86276,27.504211,61.03177,3.83 1696,306.4553,211.55617,19.587982,45.758194,3.824 1696,452.6407,243.7993,40.30017,97.65578,3.821 1696,282.74942,203.25967,19.561584,44.06595,3.81 1696,-6.598084,231.7692,18.387224,43.441376,3.808 1696,244.04594,208.84323,17.183548,32.39897,3.737 1696,436.89246,230.87726,39.42755,93.87128,3.73 1696,595.14703,-47.310898,43.88684,101.59284,3.719 1696,-4.344189,155.84169,16.633713,38.15898,3.69 1696,113.28884,224.09998,20.371712,32.42398,3.68 1696,3.9855838,155.56165,29.311539,68.953705,3.679 1696,-5.8056116,249.05553,18.107538,43.20723,3.653 1696,84.23225,287.08038,31.84845,70.388855,3.628 1696,217.56163,318.25095,22.968277,38.013855,3.626 1696,-10.2677555,161.66014,27.939827,70.99809,3.571 1696,189.12488,249.39178,54.919403,117.8147,3.563 1696,415.6986,215.066,48.79663,126.44841,3.522 1696,289.48785,492.848,21.566559,38.89627,3.52 1696,80.73314,293.4932,24.023987,51.154236,3.5 1696,297.98224,199.14075,19.73529,39.870316,3.487 1696,187.15958,278.895,31.440613,68.61786,3.477 1696,12.663414,198.0227,53.14984,119.5426,3.476 1696,2.2812824,491.4562,19.282665,39.583527,3.452 1696,-9.732574,312.32227,28.393766,73.85394,3.449 1696,358.68375,184.06639,37.00592,77.775375,3.42 1696,-4.5122223,140.52534,15.519434,36.962845,3.414 1696,196.60336,295.18698,29.619766,65.110535,3.411 1696,-8.750885,102.00838,38.43777,104.706985,3.4 1696,211.4794,233.31326,42.57776,75.88013,3.392 1696,614.24036,478.90942,28.525208,62.63794,3.358 1696,57.64508,291.04865,32.26143,70.44052,3.357 1697,416.9485,215.48512,19.659607,45.344284,43.984 1697,396.72855,212.28568,19.826202,45.686462,16.587 1697,407.45966,206.977,34.21817,83.86549,5.892 1697,411.53143,212.29274,19.356659,36.387085,5.84 1697,-12.059201,478.1947,30.292793,63.101257,5.779 1697,627.15564,-17.862782,17.23767,45.676517,5.66 1697,622.86774,-34.645927,26.65387,74.09071,5.657 1697,621.3538,476.20563,29.492493,67.99664,5.633 1697,-6.111815,489.6482,18.67266,42.003296,5.608 1697,-11.248714,-32.66479,29.792042,72.970345,5.571 1697,392.25986,203.60379,33.159027,86.30386,5.254 1697,-22.120152,401.8282,79.37753,176.25269,5.237 1697,-6.046355,-18.769741,18.168701,43.41339,5.136 1697,-17.662975,-61.72542,56.932964,142.43037,4.886 1697,582.9618,410.63235,71.72357,177.60458,4.849 1697,536.3082,310.8474,143.64777,341.2168,4.744 1697,603.2987,-56.501472,53.44513,135.23703,4.705 1697,134.39091,213.31866,28.794937,63.35669,4.681 1697,-5.9879065,167.73778,18.632969,43.010834,4.551 1697,-72.59171,267.15494,199.78345,459.62387,4.541 1697,421.07935,209.48956,35.001648,82.42032,4.533 1697,401.805,221.51505,19.88147,48.61386,4.527 1697,137.90584,208.9918,22.04332,42.388596,4.526 1697,125.79281,262.29886,31.597755,78.64087,4.48 1697,493.2646,226.53671,237.54987,514.9425,4.44 1697,1.8632019,244.46417,27.164417,68.84186,4.425 1697,585.927,-101.48098,76.31293,235.62354,4.424 1697,-70.435165,-188.65584,211.52885,454.2605,4.408 1697,294.91034,203.25104,26.322693,66.378876,4.324 1697,188.16194,249.62177,54.917908,117.34601,4.181 1697,-37.341084,-127.274445,117.4185,279.0797,4.168 1697,489.84634,-178.15652,236.31467,421.037,4.167 1697,151.21895,205.16399,29.181137,69.04518,4.147 1697,253.5518,198.82837,13.194077,25.531677,4.117 1697,205.07318,303.3612,31.646332,59.743652,4.05 1697,84.44478,289.30765,31.325401,66.981445,4.029 1697,277.68225,492.77866,30.523773,50.50302,3.927 1697,594.6566,-46.791603,44.63208,99.161766,3.85 1697,390.3172,209.06683,18.383911,35.693085,3.829 1697,17.606464,231.36714,32.693943,67.55138,3.771 1697,612.96466,434.39664,39.98645,101.31113,3.756 1697,284.19086,221.10463,29.704376,81.01616,3.751 1697,-5.7769227,248.40616,18.576502,44.199768,3.738 1697,-0.09431958,213.20789,27.072632,71.39441,3.701 1697,211.45888,234.04251,42.498047,75.08679,3.689 1697,145.57436,214.38565,20.863327,42.460297,3.683 1697,129.69205,210.86974,21.90979,39.408875,3.666 1697,273.9895,494.5501,21.295563,37.86853,3.617 1697,187.27525,273.3129,32.932205,65.21649,3.579 1697,2.6129186,-16.74129,17.42242,40.13739,3.507 1697,305.8521,232.54749,31.187836,84.80249,3.503 1697,122.89165,259.39597,55.762802,125.15765,3.502 1697,13.221018,198.86533,52.435738,119.35022,3.488 1697,260.47116,205.37225,14.365631,25.54065,3.444 1697,158.00893,213.11293,53.55873,115.917435,3.44 1697,-6.64287,230.59564,18.580666,44.65085,3.432 1697,145.14941,163.12903,21.661041,47.112823,3.431 1697,-8.963708,102.6067,38.542336,104.209526,3.411 1697,30.726664,222.05872,23.889723,39.8219,3.388 1697,-5.6186824,425.85095,16.776075,39.706696,3.37 1697,-11.232397,154.97441,29.874842,69.52844,3.369 1697,1.931389,490.91003,19.779896,40.649353,3.368 1697,289.52295,493.91843,21.422455,37.79355,3.363 1697,-8.855833,168.86052,39.295456,98.53209,3.362 1697,154.12123,206.49794,20.671844,38.386032,3.356 1697,452.59155,243.16006,40.626892,100.05774,3.355 1697,379.39703,208.44777,20.102448,40.2397,3.336 1697,44.02703,220.16374,31.063332,55.56642,3.316 1697,619.0817,-18.75457,17.31665,42.645,3.314 1697,618.20935,488.84952,21.071838,43.561066,3.304 1697,220.33109,237.72786,53.320404,124.386856,3.292 1698,409.5501,213.84322,20.384308,48.088333,17.875 1698,392.52356,209.31174,21.31604,47.776276,13.136 1698,401.74414,211.49513,21.039612,45.4897,7.762 1698,-11.543094,-32.529118,29.787487,73.17949,5.978 1698,627.35803,-17.42397,17.217896,44.756287,5.948 1698,-6.1118774,-18.593859,17.99012,43.01843,5.714 1698,623.0273,-34.607704,26.52649,73.96035,5.55 1698,391.35815,204.41895,34.747986,86.781586,5.519 1698,612.9635,453.93915,39.727173,107.98004,5.439 1698,-8.743873,464.04346,37.437164,93.26898,5.416 1698,405.5766,208.78711,35.998993,84.39703,5.402 1698,-6.0630302,489.71594,18.676842,41.868042,5.193 1698,-22.181425,401.68298,79.50805,176.4638,5.18 1698,626.42444,487.39035,20.905151,46.52408,5.083 1698,-17.667238,-62.38699,56.838264,142.76546,4.947 1698,126.11138,263.88306,30.706139,76.16492,4.806 1698,583.02136,410.49896,71.72937,177.69818,4.805 1698,150.5091,201.88016,30.361862,63.747833,4.759 1698,536.2667,310.9151,143.45099,341.0716,4.736 1698,-5.0423884,169.53511,17.737793,41.667953,4.716 1698,603.35156,-56.183037,53.57135,136.25516,4.671 1698,-72.638176,267.0885,199.8682,459.5033,4.567 1698,134.7666,204.22758,27.77063,57.76628,4.508 1698,-70.49981,-188.66223,211.47351,453.98343,4.491 1698,196.06804,295.7647,30.315964,61.502533,4.467 1698,493.1855,226.81897,237.67499,514.69684,4.451 1698,585.8539,-102.02206,76.54779,236.51508,4.439 1698,420.70618,210.41086,37.2305,83.45212,4.227 1698,-37.571644,-127.9703,117.35928,280.10388,4.135 1698,277.08246,491.49878,31.277039,52.007812,4.123 1698,489.75583,-177.86899,236.33804,420.7215,4.116 1698,84.730774,294.58804,30.948425,68.12259,4.1 1698,173.28952,254.69441,55.81018,126.24681,3.971 1698,13.259277,198.74803,52.539864,118.31813,3.941 1698,52.682243,218.20105,31.73545,57.60251,3.878 1698,-0.6523299,214.34424,27.273941,68.69705,3.861 1698,292.2659,490.14124,31.320038,52.9646,3.829 1698,-6.037421,248.75598,18.595247,43.272583,3.814 1698,181.10938,299.6009,30.611435,62.461426,3.78 1698,3.161549,163.91963,18.892092,39.78923,3.754 1698,452.31827,240.22119,41.47534,102.260315,3.741 1698,295.29333,203.66086,26.38974,67.022,3.738 1698,595.01483,-47.038353,44.289856,100.92964,3.732 1698,-6.118039,299.36984,17.287521,36.89145,3.709 1698,167.74382,202.09012,22.826462,44.03839,3.708 1698,17.057854,230.32512,33.407597,67.58055,3.688 1698,-6.6175756,231.13002,18.603249,43.527542,3.666 1698,144.9284,205.59944,23.187912,45.789352,3.662 1698,4.1936374,253.81012,31.989899,60.292847,3.654 1698,619.1592,-18.340221,17.344482,41.739784,3.645 1698,253.26292,197.0574,13.842514,28.335785,3.599 1698,376.85156,201.99815,34.66327,87.9756,3.593 1698,-8.883278,101.03451,38.738255,106.04572,3.585 1698,188.10472,277.62146,30.58931,59.63385,3.576 1698,63.579483,215.14813,22.543533,40.428253,3.561 1698,-13.890406,185.24576,46.484398,139.30502,3.555 1698,342.8131,181.67165,37.317627,82.337845,3.544 1698,436.9569,229.59502,39.865448,98.17171,3.536 1698,35.325024,225.51122,43.015324,86.538376,3.529 1698,213.1853,302.93457,30.326523,60.636597,3.491 1698,141.37112,176.23499,16.401123,31.339142,3.486 1698,289.31366,493.2922,21.730988,38.10733,3.48 1698,234.33083,304.70343,21.383652,40.975403,3.472 1698,2.486844,-17.027037,17.225796,40.05738,3.45 1698,0.36305904,280.20856,50.34442,145.40173,3.443 1698,358.01822,183.87738,37.618225,79.84744,3.435 1698,-3.9025674,155.8711,16.30212,39.28418,3.42 1698,204.05449,249.8134,55.16176,130.93703,3.411 1698,-10.180267,163.00134,27.704823,71.37567,3.401 1698,-3.0932927,326.06903,26.611588,77.59079,3.378 1698,292.21826,220.42229,37.973053,100.98961,3.361 1698,162.00981,195.2975,34.158417,68.36525,3.35 1698,80.63325,292.3249,24.203606,51.036987,3.349 1699,407.93118,213.68732,20.495667,50.33795,17.081 1699,391.34018,213.34271,21.18396,45.6192,15.966 1699,402.77008,208.89993,19.37381,41.33693,7.17 1699,406.13513,206.18422,34.184692,85.665085,6.619 1699,392.42987,201.82031,33.56961,85.70773,5.748 1699,626.5472,487.96393,20.633911,46.068787,5.617 1699,-6.005606,489.64148,18.600649,41.801636,5.528 1699,627.2845,-17.340687,17.231018,44.809155,5.513 1699,-11.339472,-32.61108,29.65067,72.22517,5.479 1699,-8.895942,464.0824,37.48973,93.14624,5.43 1699,-6.1172543,-18.804413,18.09737,43.624287,5.427 1699,-22.005753,402.1073,79.21721,176.23907,5.231 1699,125.2099,264.40918,31.138702,76.28729,5.222 1699,623.039,-34.399147,26.497803,73.943825,5.204 1699,613.1711,453.042,39.629883,109.31543,5.08 1699,-17.726389,-61.573433,57.241158,141.62343,4.878 1699,583.0578,410.10297,71.64728,178.20758,4.792 1699,536.4248,310.8373,143.31543,341.17538,4.732 1699,603.5177,-56.18731,53.24469,136.44034,4.698 1699,376.97168,200.65515,33.166534,85.75461,4.667 1699,203.9586,280.29443,29.831848,62.788025,4.608 1699,-72.58304,267.21246,199.77463,459.37225,4.517 1699,493.2057,226.45056,237.52917,514.87994,4.444 1699,585.8929,-101.81751,76.413635,236.16772,4.408 1699,-70.48327,-188.59378,211.40466,454.2194,4.353 1699,-5.2038007,167.86986,18.182962,43.56955,4.33 1699,146.37532,165.1471,20.256683,40.55243,4.278 1699,11.0741005,237.15205,29.890438,66.70128,4.24 1699,284.4336,491.4251,31.368286,51.846436,4.178 1699,-37.51046,-127.30852,117.60145,278.9489,4.145 1699,141.21295,202.57843,28.920654,60.48999,4.129 1699,489.68716,-177.54544,236.40378,420.2703,4.126 1699,137.61829,208.45026,21.97902,43.109024,4.077 1699,134.29355,213.74251,28.115128,63.6671,4.028 1699,360.95758,196.47327,34.48236,78.32233,3.89 1699,-6.4481688,231.2017,18.158508,43.597733,3.829 1699,342.67267,185.01395,37.006348,79.54599,3.802 1699,421.22913,215.90273,37.496796,90.18565,3.798 1699,213.14299,294.3606,30.646393,61.54306,3.791 1699,1.8335009,244.76688,26.984913,69.463104,3.789 1699,2.7374613,162.58308,20.270157,40.876938,3.722 1699,18.27609,228.06648,32.061577,61.875076,3.692 1699,594.98724,-46.552406,44.230408,100.765915,3.678 1699,618.1327,489.76904,21.080444,43.337036,3.66 1699,-1.5457845,162.61028,26.601963,72.96826,3.652 1699,84.81958,296.19348,30.783615,65.74341,3.622 1699,-5.621212,248.7478,18.011288,43.2583,3.603 1699,189.07516,251.71977,55.30893,114.36684,3.601 1699,151.2846,205.09158,29.940292,66.13916,3.597 1699,220.42159,276.88672,30.808182,61.875427,3.583 1699,253.42148,197.23512,13.753845,27.52333,3.546 1699,452.41562,243.9404,41.456604,98.00369,3.54 1699,395.07614,204.59314,18.634155,37.725708,3.532 1699,-5.2240634,280.58246,17.4617,38.99594,3.505 1699,269.08377,491.58795,31.781525,50.935425,3.492 1699,2.6015055,-17.02605,17.267971,40.404488,3.475 1699,306.5811,212.14978,20.710419,44.65216,3.458 1699,171.62712,293.9115,30.956558,66.08905,3.427 1699,-8.825539,102.45797,38.727165,104.87351,3.378 1699,298.87286,204.87506,20.105103,41.916855,3.373 1699,58.48304,295.21347,31.56417,69.59192,3.345 1699,12.646155,199.1531,53.081963,117.76227,3.339 1699,197.51498,296.20755,30.326355,61.683716,3.332 1699,34.97464,224.22307,43.496506,86.90138,3.323 1699,-16.089592,243.07516,49.21917,136.39828,3.307 1699,187.64389,276.77557,32.24231,57.269012,3.291 1700,387.6314,211.32259,20.52658,48.390457,17.376 1700,402.0123,213.38152,20.549225,44.059677,16.244 1700,-11.507051,-32.51222,29.86841,72.4712,5.724 1700,-8.856533,464.3061,37.614494,92.93939,5.66 1700,-6.0735846,-18.842836,17.968613,43.684937,5.626 1700,-5.973237,489.6726,18.520489,41.857178,5.545 1700,390.26904,216.30821,26.090942,64.65199,5.502 1700,626.4616,487.6258,20.574158,46.177185,5.49 1700,627.0496,-18.075089,17.350403,45.849937,5.393 1700,612.9381,453.60376,40.05255,108.18359,5.213 1700,-21.999712,402.11063,79.22473,176.13474,5.193 1700,622.6833,-34.49376,26.724304,74.516365,5.142 1700,134.68802,204.55421,28.678757,58.623276,4.966 1700,-17.48698,-62.31371,56.882133,143.08482,4.881 1700,582.9457,410.56488,71.71405,177.61902,4.831 1700,536.3789,310.61298,143.31073,341.37933,4.786 1700,126.2137,263.86023,30.541641,74.05948,4.734 1700,603.4454,-56.537666,53.280334,136.55716,4.647 1700,203.03436,285.1441,31.804504,65.43884,4.605 1700,-72.56613,266.92548,199.78616,459.60724,4.53 1700,376.4615,202.2597,34.40619,84.85541,4.524 1700,197.14969,305.15918,30.640991,58.137024,4.514 1700,403.899,218.60278,27.354828,67.11194,4.482 1700,493.19867,227.03912,237.5683,514.4024,4.478 1700,150.47552,201.59254,29.537888,63.260056,4.393 1700,585.71936,-101.99014,76.66498,236.53976,4.377 1700,-70.35804,-188.63564,211.36957,454.0711,4.336 1700,188.275,253.2105,55.547195,113.856705,4.22 1700,4.6666026,255.19305,31.08112,59.111206,4.192 1700,489.65115,-178.01846,236.16367,420.7187,4.125 1700,-37.494358,-127.81519,117.51172,279.82687,4.115 1700,171.6964,287.21725,32.962738,67.861664,3.999 1700,181.21512,303.16245,30.922714,59.084076,3.936 1700,188.05168,279.9444,31.935654,66.020386,3.867 1700,-8.607817,101.464035,38.15341,105.61725,3.858 1700,212.00919,302.7369,31.852356,57.128998,3.844 1700,-5.740857,248.70348,18.132534,42.722305,3.797 1700,277.34662,490.9849,31.130066,52.074005,3.789 1700,594.9494,-47.093754,44.232666,100.81866,3.76 1700,-4.7138267,162.06816,17.232555,41.104828,3.724 1700,83.91611,290.1326,31.777039,67.737,3.688 1700,301.88364,209.38353,27.037994,58.85756,3.661 1700,208.01329,310.97934,23.863525,41.62326,3.651 1700,618.89905,-18.924276,17.634705,43.00101,3.634 1700,618.0714,489.35928,21.013733,42.98349,3.631 1700,144.78575,207.78255,22.628433,44.86499,3.628 1700,-6.313506,230.9065,18.434929,44.362,3.606 1700,17.602922,230.76733,32.40219,67.84985,3.604 1700,220.6318,240.44633,52.947968,118.5956,3.592 1700,451.95804,245.69516,41.71573,96.88156,3.56 1700,220.24051,285.10474,31.7034,61.354492,3.548 1700,25.039022,280.77344,19.425234,33.08258,3.542 1700,2.6131792,-17.086018,17.08498,40.341328,3.493 1700,57.46079,292.09058,32.726284,68.823975,3.435 1700,4.9138727,176.94443,28.686954,75.91879,3.361 1700,211.38321,232.35408,42.942886,77.359055,3.351 1700,396.60687,181.66322,50.884308,117.92674,3.337 1700,407.80734,209.38008,19.563873,37.3983,3.333 1700,138.0315,199.86504,19.981628,35.380325,3.331 1700,242.62132,307.13913,34.436813,61.918518,3.327 1700,0.010980368,212.47462,26.52772,71.276474,3.326 1700,12.686658,195.74167,53.605305,120.02054,3.314 1700,2.205329,491.63403,19.384438,39.989746,3.313 1701,401.45087,212.09976,20.863464,45.134583,39.162 1701,386.23358,210.50894,21.254242,48.27298,31.936 1701,390.66107,209.9147,26.513763,63.045776,8.546 1701,377.3651,202.24536,33.515686,85.27014,5.918 1701,-6.036632,489.40063,18.71082,41.617798,5.76 1701,-11.509,-32.303345,29.9305,71.505394,5.667 1701,-8.952845,464.5438,37.550438,92.70114,5.525 1701,627.0729,-17.624142,17.367065,45.32953,5.45 1701,626.53217,487.5337,20.670837,45.876343,5.424 1701,622.7484,-34.352173,26.794373,74.08453,5.417 1701,612.94745,453.68576,39.8407,108.52945,5.375 1701,-22.017971,402.19055,79.24694,176.23279,5.282 1701,-6.0795426,-18.130074,18.046507,42.2651,5.241 1701,-17.679499,-61.944153,57.098526,142.11761,4.891 1701,-6.20995,169.97768,19.03778,42.750595,4.887 1701,582.9831,410.2616,71.7182,178.03015,4.817 1701,126.023636,264.0323,31.014694,77.45767,4.807 1701,194.65042,284.52728,32.792694,67.339386,4.781 1701,403.08932,216.10095,28.226562,69.50958,4.758 1701,603.49817,-55.88488,53.357544,135.45534,4.746 1701,536.389,311.10046,143.3078,340.8949,4.742 1701,-72.5807,267.39786,199.733,459.35153,4.515 1701,493.26825,226.32477,237.55084,514.9292,4.425 1701,-70.588005,-188.75366,211.58652,454.18423,4.384 1701,585.86725,-101.60274,76.34155,235.73547,4.38 1701,139.46115,164.70163,20.721817,45.07953,4.276 1701,407.36313,208.26073,20.12851,38.193283,4.182 1701,104.72543,208.15257,23.030487,33.95958,4.178 1701,489.67902,-177.82574,236.36578,420.86703,4.158 1701,2.0985425,163.28348,20.976393,39.758087,4.14 1701,-37.57833,-127.76465,117.574486,280.14902,4.128 1701,180.79932,294.82843,30.978973,65.07428,4.109 1701,133.74097,201.91396,29.796356,59.820267,4.104 1701,277.22693,491.15308,31.197937,52.3291,3.939 1701,343.42444,196.02649,34.627655,78.80789,3.839 1701,-6.386333,238.9331,18.965416,43.58728,3.837 1701,594.7003,-46.34919,44.594543,100.043755,3.83 1701,203.37128,301.1903,32.196808,60.721283,3.787 1701,-0.36268473,215.26215,27.469793,68.83453,3.758 1701,618.26074,489.0608,20.7547,43.148743,3.713 1701,121.594666,210.12059,22.05655,37.21736,3.709 1701,84.52865,288.82617,31.454079,66.26868,3.686 1701,13.318291,197.07904,52.20758,120.8385,3.686 1701,-10.597599,165.08394,28.395496,67.18341,3.683 1701,-8.317469,171.34604,38.573246,96.23135,3.682 1701,-4.6366982,156.02403,17.327581,38.571167,3.673 1701,189.11133,253.35228,55.19142,113.01497,3.667 1701,3.7609684,163.04634,31.177004,72.431,3.659 1701,367.36813,202.65167,29.008087,59.39099,3.567 1701,294.54657,203.72607,26.805237,67.13727,3.546 1701,73.03201,207.8433,22.861557,34.924637,3.525 1701,309.3671,194.58348,35.736603,83.25685,3.523 1701,10.832321,238.23212,30.135124,66.04993,3.518 1701,23.760633,222.78197,24.007044,40.924667,3.494 1701,-6.34495,224.34955,17.873964,41.622894,3.452 1701,-9.13018,101.974785,39.156906,104.70951,3.451 1701,292.72168,490.57147,30.632782,52.332825,3.444 1701,289.6067,493.02698,21.282349,38.039795,3.442 1701,1.4384437,244.51587,27.063238,69.55646,3.441 1701,211.50435,285.44156,31.320343,63.503082,3.439 1701,284.78708,222.23318,29.512238,78.1532,3.42 1701,-4.3335357,140.66135,15.515425,36.77173,3.407 1701,452.4844,243.28906,40.930084,100.6781,3.397 1701,235.44691,491.31857,33.725906,50.997345,3.387 1701,2.5257683,-15.855189,17.225746,38.471,3.386 1701,305.00888,233.41302,32.238403,85.77374,3.38 1701,89.22154,207.83525,23.356743,33.725693,3.379 1701,-9.667648,312.27646,28.62065,72.136536,3.377 1701,57.79202,291.9232,32.012882,69.911835,3.372 1701,150.09038,200.89503,29.968826,63.672134,3.36 1701,39.666134,222.66986,24.002186,37.69925,3.344 1701,-6.451027,191.45786,18.488237,43.68428,3.336 1701,-6.1783576,298.54874,17.369692,37.845673,3.323 1701,619.1477,-18.277111,17.515991,42.13601,3.317 1702,395.15332,213.01485,19.097626,41.903366,10.689 1702,384.52682,210.62216,20.793915,43.59529,10.551 1702,-12.029686,478.27225,30.33693,63.49704,5.927 1702,-6.022773,489.56702,18.610048,41.59955,5.805 1702,626.4429,487.72684,20.692993,46.265778,5.618 1702,-6.2744074,-18.879498,18.32454,43.713158,5.61 1702,613.1264,453.00885,39.676453,109.0824,5.599 1702,-11.512523,-32.954617,29.811901,73.569336,5.574 1702,627.2209,-17.37303,17.141907,45.183285,5.451 1702,-21.958645,402.16354,79.12558,176.40646,5.222 1702,623.1018,-34.750813,26.343506,74.21914,5.197 1702,382.8703,217.37248,25.699463,61.592575,5.005 1702,-17.765696,-61.819157,57.064896,141.40628,4.916 1702,583.005,410.3664,71.75012,177.85175,4.829 1702,388.90375,197.7165,36.658417,83.734146,4.799 1702,125.08902,265.14517,31.429214,72.81134,4.77 1702,536.453,311.04858,143.23706,340.51868,4.75 1702,399.75037,216.38124,20.535217,51.639664,4.716 1702,603.4237,-56.145042,53.412598,136.34132,4.544 1702,-72.60316,267.00806,199.71338,459.6067,4.501 1702,493.10938,226.85556,237.7002,514.8003,4.487 1702,-70.502426,-188.93262,211.5903,454.7668,4.403 1702,585.7624,-101.99835,76.676025,236.32713,4.375 1702,277.42618,492.13907,30.903809,51.36844,4.191 1702,-4.977451,170.19633,17.380539,41.06627,4.14 1702,4.795741,231.05417,33.99773,75.750885,4.139 1702,-37.5844,-128.05426,117.69238,279.5264,4.125 1702,489.56702,-177.80194,236.40112,420.42218,4.103 1702,0.07824421,212.7157,27.416748,72.71347,4.094 1702,164.28104,291.92224,31.341217,65.41452,4.085 1702,205.31342,301.16055,30.479813,62.012634,3.947 1702,303.4915,208.30513,26.440186,60.881027,3.89 1702,342.5689,184.52838,37.226257,80.02939,3.872 1702,17.364878,223.50772,33.181503,63.98108,3.847 1702,369.02744,203.28255,28.858887,58.4066,3.806 1702,-6.143674,238.37234,18.833431,44.56897,3.799 1702,2.0978057,490.95038,19.444378,40.463196,3.785 1702,404.46964,207.04625,37.814453,86.89674,3.782 1702,172.95383,256.4659,56.635864,124.54318,3.761 1702,84.39187,290.02817,31.02768,66.77188,3.748 1702,373.94354,185.29051,37.14624,82.00752,3.711 1702,618.07056,489.02612,21.19342,43.412415,3.681 1702,186.80817,279.20413,32.766113,66.04062,3.677 1702,475.53128,222.39633,18.2565,31.933716,3.643 1702,157.51558,200.43672,31.635788,66.12926,3.641 1702,594.8086,-46.47872,44.430054,100.50283,3.635 1702,137.66031,210.14426,21.355957,40.007584,3.629 1702,289.34338,493.6489,21.868591,38.14804,3.614 1702,451.99542,241.74017,41.640625,100.1178,3.572 1702,43.798515,216.39954,32.467056,57.076294,3.566 1702,468.19412,220.71606,18.200226,33.30304,3.564 1702,443.1792,259.3194,33.30789,63.843384,3.557 1702,253.50668,275.28113,30.503601,59.644836,3.557 1702,228.69525,284.18088,30.978699,64.669556,3.55 1702,130.10695,212.31143,20.690414,36.638535,3.53 1702,356.99734,200.56743,29.376068,58.03575,3.506 1702,12.801852,198.32129,53.343243,117.413574,3.502 1702,-5.9257836,299.2134,16.71511,36.554047,3.48 1702,-4.2446537,156.20573,16.450195,38.61293,3.452 1702,140.84308,169.0011,19.036346,36.897324,3.447 1702,3.031695,165.1639,19.614359,37.662994,3.433 1702,28.677103,220.14249,25.61778,43.698303,3.42 1702,-8.773399,101.49336,38.669033,105.62677,3.419 1702,420.3482,206.43233,38.93863,87.4445,3.417 1702,-10.925558,-5.1673927,40.83765,101.50958,3.412 1702,57.71862,289.99506,32.134247,69.64017,3.406 1702,-2.0185828,157.25534,27.630348,66.12802,3.397 1702,292.38318,490.5294,30.912659,52.31833,3.37 1702,80.89616,294.01505,23.540642,49.703003,3.37 1702,309.61102,193.7384,35.96753,82.630005,3.342 1702,460.23724,219.91083,17.569489,33.02913,3.335 1702,-8.602453,234.29718,39.109085,93.438354,3.333 1702,138.10995,326.17383,21.079895,32.4151,3.33 1702,249.41943,413.6845,20.919708,29.936768,3.319 1702,401.6785,204.60799,17.498016,34.950226,3.313 1702,212.83014,288.18546,30.444489,62.77072,3.31 1703,394.9484,211.75581,18.11026,42.93756,26.697 1703,377.25876,212.74788,20.085052,40.559265,21.871 1703,386.44608,212.36775,19.36737,41.153275,9.362 1703,-5.93296,489.56732,18.454954,41.36615,6.027 1703,626.4742,488.11667,20.806335,45.43094,5.893 1703,-11.452041,478.24857,29.63921,63.32779,5.887 1703,4.4394493,247.04422,32.090164,67.55112,5.812 1703,-11.567706,-32.60033,30.114948,72.80557,5.806 1703,400.6538,207.85652,17.1503,36.974,5.588 1703,627.07117,-17.744038,17.456726,45.18254,5.569 1703,376.14868,202.26596,34.089172,84.30243,5.563 1703,612.9103,453.30875,39.8739,108.92703,5.335 1703,-22.020636,402.14432,79.17637,176.20071,5.291 1703,622.62354,-34.400593,26.996338,74.06084,5.245 1703,390.74847,216.12404,26.092682,65.29454,5.139 1703,-6.0504723,-18.45567,18.07109,43.013195,5.087 1703,-17.62199,-61.857147,56.998486,142.25185,4.926 1703,125.55564,264.7307,30.05407,74.13315,4.844 1703,582.98865,410.49515,71.769775,177.89676,4.816 1703,536.42706,311.21582,143.37018,340.52234,4.741 1703,603.3857,-56.304806,53.382202,135.96306,4.608 1703,-5.563821,168.66621,18.387878,42.45656,4.464 1703,-72.66073,267.31168,199.73146,459.21823,4.455 1703,493.16635,226.54266,237.63858,514.8977,4.437 1703,-70.64488,-188.62527,211.56197,454.0039,4.395 1703,585.81085,-101.53253,76.43616,236.15294,4.384 1703,-6.1189327,239.23032,18.614803,44.07852,4.247 1703,-37.44891,-127.77984,117.714066,279.3416,4.141 1703,489.77908,-177.60268,236.06882,420.7057,4.108 1703,204.90198,303.44354,30.787292,60.97766,4.012 1703,618.1286,489.63226,21.088196,42.827454,3.999 1703,173.21255,258.90988,55.88054,122.479004,3.872 1703,369.0279,212.70325,27.710938,62.899048,3.815 1703,180.9944,302.74643,31.370636,59.747986,3.811 1703,594.69073,-46.28924,44.575867,99.48496,3.771 1703,194.87561,278.9789,31.172089,65.47464,3.767 1703,252.4129,313.599,32.861755,68.01709,3.762 1703,2.9366934,153.62341,29.883955,66.63371,3.755 1703,276.98074,490.14713,31.865814,52.277313,3.736 1703,404.7623,208.02907,37.66339,85.597275,3.688 1703,302.2725,210.76917,28.088379,58.898743,3.67 1703,138.46768,209.44328,20.343674,41.049606,3.661 1703,293.24884,221.6376,28.691132,70.21417,3.639 1703,310.00137,194.56287,35.518402,82.715515,3.617 1703,-10.6988735,161.25162,28.633389,71.77818,3.585 1703,326.4731,196.7202,36.15204,78.8947,3.572 1703,-8.221418,233.73941,38.599663,93.28558,3.568 1703,85.21824,295.46387,30.579323,67.786316,3.522 1703,203.62349,250.44016,55.679367,114.25516,3.494 1703,-4.627118,155.84116,16.894232,38.44449,3.481 1703,2.2683735,490.98242,19.150047,39.82849,3.458 1703,619.00525,-18.702057,17.680237,42.526627,3.451 1703,134.74039,215.65317,26.9254,62.158936,3.444 1703,-6.4047523,297.7772,17.641632,37.926758,3.443 1703,90.594604,208.40018,21.997803,32.131943,3.442 1703,2.5175202,-16.822046,17.192575,40.066772,3.441 1703,30.950167,221.02638,24.309557,40.96971,3.434 1703,130.94719,212.47293,20.225586,36.761993,3.423 1703,123.01953,208.48407,18.956253,33.41942,3.422 1703,-8.708801,102.20897,38.55951,105.097305,3.415 1703,154.12283,204.13586,21.052185,38.670807,3.399 1703,16.371725,236.00728,33.18927,67.9229,3.396 1703,146.15019,204.79196,19.94609,38.78363,3.393 1703,-8.426066,169.54527,38.795452,97.78038,3.357 1703,382.35736,184.42232,47.214447,113.43614,3.354 1703,235.82826,413.2905,17.913025,28.468414,3.353 1703,342.4917,186.37448,37.363037,78.536896,3.339 1703,266.5395,314.8687,32.260986,66.607635,3.309 1703,-4.3770323,140.64726,15.576322,37.39543,3.301 1703,-6.4218907,223.22537,17.978668,42.922516,3.299 1703,249.98521,413.8463,19.82457,30.13504,3.287 1703,451.80432,246.79526,41.815002,94.67883,3.282 1703,130.44571,421.6638,83.87215,158.58206,3.269 1703,420.4808,222.27615,40.656433,84.789795,3.259 1704,385.9929,213.95174,20.378754,39.36351,15.307 1704,376.2457,212.61012,20.607208,40.111877,13.897 1704,392.8276,211.55334,19.28711,35.88179,8.039 1704,305.55267,211.65128,22.240753,47.39084,6.173 1704,626.3285,487.67026,20.971924,45.971527,5.822 1704,-11.498247,-32.681213,29.969923,73.19279,5.676 1704,-6.0056973,489.10757,18.749615,42.266144,5.613 1704,627.1569,-17.639046,17.24121,45.19707,5.539 1704,622.8673,-34.65622,26.600098,74.01745,5.48 1704,613.2782,453.3275,39.18219,108.954285,5.411 1704,-6.1792016,-18.562302,18.275293,43.390205,5.353 1704,-9.103153,463.74274,37.720516,93.66742,5.313 1704,381.42505,217.8421,27.694397,60.25232,5.293 1704,-22.151321,401.67694,79.51494,176.41339,5.205 1704,125.113335,264.43915,31.931664,74.04382,5.191 1704,388.7641,208.01358,36.2677,82.67935,5.038 1704,-17.71246,-61.58131,57.262867,141.60547,4.874 1704,583.03455,410.286,71.654724,178.01074,4.795 1704,536.323,310.992,143.3645,341.12103,4.703 1704,603.4019,-56.30303,53.392883,135.86044,4.695 1704,5.756727,255.3397,30.020655,59.680252,4.689 1704,-72.73502,267.0569,199.9039,459.873,4.57 1704,133.52327,198.41565,28.475616,59.432983,4.562 1704,-70.55085,-188.99474,211.50461,454.76416,4.506 1704,585.9261,-101.62222,76.39166,236.1985,4.453 1704,493.1793,226.74246,237.67953,514.9718,4.415 1704,202.61559,285.26205,32.867645,65.618774,4.297 1704,-5.775095,168.47798,18.823168,42.588104,4.267 1704,277.07254,492.17276,31.023956,51.48166,4.266 1704,119.12334,197.97316,27.988297,57.142044,4.265 1704,392.42615,225.846,21.465302,45.876602,4.22 1704,-37.46537,-127.30725,117.38073,278.7743,4.199 1704,489.63226,-177.75856,236.24878,421.06638,4.159 1704,367.99127,211.71043,26.77649,64.97081,4.143 1704,84.00376,287.23785,31.386955,66.208374,4.025 1704,-9.894002,311.80338,27.933517,73.53812,3.986 1704,-5.2791557,250.50377,17.236124,41.27678,3.982 1704,349.48795,202.3705,28.858917,56.451736,3.874 1704,594.79395,-46.61261,44.511597,99.44037,3.847 1704,617.6186,212.88109,20.873474,50.96077,3.77 1704,372.68002,188.6278,38.47519,80.972595,3.768 1704,618.2537,489.46893,20.870667,43.034973,3.754 1704,371.42148,207.83743,18.85199,32.770615,3.748 1704,298.28793,200.58585,19.725067,37.63405,3.727 1704,-4.5852304,154.04192,17.111551,40.54271,3.67 1704,260.38205,489.40253,31.739288,53.10254,3.651 1704,253.17819,199.23763,13.792328,26.803085,3.622 1704,57.513348,290.28192,33.356205,70.14584,3.591 1704,13.328524,197.71863,53.036133,120.281555,3.575 1704,290.9925,202.07388,20.49823,43.28395,3.571 1704,400.80884,209.02325,17.490845,33.3291,3.55 1704,180.62796,291.8858,30.215881,66.859924,3.543 1704,-10.800299,162.38379,29.378204,71.15851,3.543 1704,-6.239641,232.14154,17.91582,42.48883,3.534 1704,220.14113,287.1178,32.515152,61.097107,3.519 1704,144.19011,200.74658,22.573822,43.896957,3.514 1704,187.83966,250.97499,56.40822,111.42268,3.51 1704,2.0961409,490.37463,19.63847,40.819214,3.497 1704,273.5067,493.47845,22.055237,39.165527,3.491 1704,-8.870314,102.47197,38.621666,105.16527,3.487 1704,619.1557,-18.567112,17.2901,42.18603,3.485 1704,108.84998,183.97797,53.921806,124.195984,3.465 1704,400.1935,231.96947,21.507782,41.399918,3.431 1704,129.85034,199.94681,21.071762,37.24872,3.431 1704,157.47194,196.51184,31.992859,69.59918,3.42 1704,293.7835,203.45392,36.467194,89.40411,3.419 1704,363.9135,209.22221,20.147278,36.371185,3.406 1704,2.5520182,-16.863373,17.363014,40.25049,3.392 1704,215.96193,311.2109,24.250381,40.482178,3.351 1704,-8.523983,170.53778,38.84561,97.34619,3.337 1704,2.3594809,161.33606,20.59668,41.577927,3.327 1704,35.21564,223.43768,43.437176,88.365295,3.32 1704,12.187848,245.53723,70.98787,190.0506,3.314 1704,50.79212,209.03758,42.623634,92.01112,3.31 1704,-10.702697,-5.1587906,40.653797,101.103806,3.301 1704,309.83948,195.4237,35.06256,84.403015,3.298 1705,378.37323,210.09863,20.586975,43.56035,16.7 1705,384.39548,214.97324,22.08435,47.40567,6.466 1705,13.796887,243.4118,30.822525,64.94537,6.057 1705,626.5135,487.81235,20.532349,45.667023,5.707 1705,623.10986,-34.680634,26.367615,73.57418,5.648 1705,-11.756635,478.06668,30.045868,63.28714,5.609 1705,-5.9819365,-18.59736,17.979053,43.572697,5.565 1705,-11.326661,-32.66005,29.58741,72.940834,5.504 1705,-6.0696645,489.3677,18.724937,42.127716,5.49 1705,627.2614,-17.611513,17.123108,45.04814,5.432 1705,613.00604,453.18848,39.975525,109.1087,5.309 1705,-22.004753,402.09952,79.195526,176.35397,5.291 1705,374.75815,193.7938,34.94925,83.03,5.204 1705,313.32425,206.84784,30.5596,65.43323,4.984 1705,-17.913582,-61.970512,57.20088,142.05562,4.95 1705,582.996,410.2799,71.73364,177.99158,4.828 1705,536.58636,311.4099,143.16614,340.23444,4.74 1705,-5.4645996,249.63916,17.573404,42.987976,4.669 1705,603.2907,-56.173283,53.502136,136.11388,4.583 1705,-72.67223,266.77646,200.00623,460.37308,4.57 1705,368.3879,205.87222,27.301514,62.094574,4.518 1705,301.02975,222.57889,31.445374,78.36917,4.49 1705,493.3142,226.92438,237.46735,514.6559,4.46 1705,585.71484,-101.423584,76.50043,235.80045,4.454 1705,393.89032,207.53351,18.3255,39.17737,4.454 1705,-70.70055,-188.91986,211.60887,454.51215,4.395 1705,84.37547,288.1802,31.631004,69.5694,4.254 1705,388.05316,196.87123,37.56488,82.84148,4.172 1705,-5.956916,168.64851,18.877924,44.174286,4.153 1705,-37.61379,-127.536125,117.59253,278.95795,4.143 1705,489.5874,-177.58733,236.44763,420.37448,4.136 1705,-0.0445199,255.25598,26.957039,65.21539,4.065 1705,59.6334,217.4121,30.668556,56.603653,3.996 1705,133.58453,200.56259,28.477676,59.603424,3.99 1705,115.84754,207.72787,39.98104,103.42145,3.927 1705,188.51677,243.9666,55.18196,116.327286,3.906 1705,276.886,490.72055,31.508728,52.541534,3.877 1705,343.40878,195.00717,34.970764,79.03067,3.867 1705,2.4767833,-16.889132,17.467073,40.676197,3.866 1705,467.3007,220.61331,19.796906,34.176025,3.86 1705,189.22868,304.28323,30.503067,58.788483,3.836 1705,618.27484,489.01846,20.957458,43.286224,3.824 1705,25.770597,241.18156,30.201014,66.96419,3.807 1705,147.04948,168.3346,18.77806,37.886765,3.793 1705,594.8624,-47.001434,44.269592,101.03419,3.789 1705,57.7354,289.55563,32.87781,71.427124,3.774 1705,251.65219,318.86105,32.218903,62.089233,3.771 1705,12.092112,199.25433,53.75541,121.89093,3.77 1705,132.12744,207.12845,41.04306,105.4494,3.758 1705,-6.2659907,231.71474,17.709465,42.978683,3.738 1705,619.4122,-18.858313,17.008484,42.045685,3.708 1705,-4.688013,156.33339,17.101543,38.173767,3.693 1705,2.2738087,247.95938,20.200445,46.72461,3.668 1705,328.98053,210.44652,21.891174,46.739273,3.654 1705,-10.521671,164.57721,29.034286,68.17169,3.654 1705,-9.668887,311.77893,28.471558,74.85574,3.596 1705,219.49881,237.44028,54.708893,121.23279,3.594 1705,205.0779,303.66757,30.493515,59.688812,3.591 1705,2.9466367,162.96202,20.932108,42.30664,3.575 1705,-15.636536,245.60922,48.63137,135.0112,3.555 1705,-8.716774,103.28377,38.59733,104.223404,3.55 1705,326.31317,197.52655,37.441437,77.934326,3.479 1705,451.8719,245.04308,40.91562,97.024765,3.468 1705,22.760803,266.5588,22.081326,43.35251,3.438 1705,287.9087,191.88277,51.135773,115.765854,3.436 1705,31.705725,225.80042,23.429323,35.42102,3.426 1705,235.97473,492.69824,32.847656,49.852173,3.424 1705,168.33127,318.23926,23.964417,39.223267,3.382 1705,211.14723,231.43788,42.371567,76.896164,3.381 1705,154.72563,233.05713,56.783096,125.411804,3.373 1705,12.536335,243.76407,70.15436,192.10083,3.356 1705,324.97528,220.90018,38.725037,95.87204,3.345 1705,83.13483,214.85678,41.43598,93.40662,3.34 1705,130.69598,422.12787,83.64545,157.91412,3.34 1706,377.72122,211.89462,21.167297,39.17621,12.993 1706,195.69174,285.7044,31.33937,67.67166,5.669 1706,-11.378157,-32.800102,29.93272,73.38118,5.659 1706,622.8412,-34.278645,26.782532,73.73056,5.555 1706,627.1823,-18.077042,17.35846,45.55808,5.516 1706,626.3994,487.30984,20.81604,46.425995,5.505 1706,-8.911603,464.28683,37.477276,93.06778,5.469 1706,-6.1412134,488.85416,19.026957,42.45279,5.422 1706,613.1093,453.18558,39.778015,109.09665,5.356 1706,-22.071758,401.9408,79.15431,176.28345,5.167 1706,51.06024,243.2693,31.426544,77.83357,5.109 1706,-6.2131414,-18.565247,18.466919,43.535446,5.045 1706,-17.712172,-61.88917,57.131874,142.00238,4.948 1706,3.9837253,254.1106,31.754324,61.353638,4.919 1706,283.35657,227.36957,32.13153,76.18103,4.887 1706,20.050919,241.90181,30.22026,62.5186,4.876 1706,536.6186,311.154,143.09894,340.3073,4.746 1706,583.1182,409.77145,71.752625,178.66849,4.717 1706,603.4129,-56.301414,53.394714,135.25229,4.678 1706,211.02792,285.93265,32.145584,63.335175,4.632 1706,-72.66417,266.93823,200.08951,460.34045,4.584 1706,67.34276,225.18837,41.176514,84.097336,4.502 1706,374.01764,193.4538,36.653107,84.29947,4.497 1706,252.22292,317.7812,32.791977,61.128265,4.464 1706,585.9242,-101.50339,76.29602,235.82231,4.451 1706,493.28613,226.88797,237.65833,514.9,4.445 1706,-70.79434,-188.94926,211.78238,454.55157,4.441 1706,277.2518,491.91306,30.948212,51.57248,4.394 1706,144.60223,157.32147,23.378876,45.29094,4.335 1706,-4.9970083,250.14282,17.19141,41.681152,4.274 1706,2.6030297,249.96481,19.29495,44.53418,4.267 1706,178.74194,286.01843,33.235306,69.10672,4.254 1706,-37.402298,-127.877304,117.369415,279.26462,4.185 1706,203.6827,299.7544,32.11519,61.532593,4.175 1706,489.69144,-177.91971,236.08188,421.09592,4.152 1706,244.46896,276.95792,31.252716,59.6091,4.138 1706,227.92511,283.25662,32.568695,62.14044,4.091 1706,358.57303,205.54141,30.399445,57.073944,4.08 1706,393.02487,208.8832,18.977814,35.243332,4.046 1706,189.12491,249.98495,54.383926,113.84894,4.024 1706,291.23975,322.7281,19.52652,42.131622,3.965 1706,83.35118,211.49597,41.60209,84.29083,3.948 1706,220.70776,242.23856,52.990723,116.11478,3.827 1706,594.76855,-46.67681,44.427185,99.39077,3.811 1706,52.478886,215.52264,40.12122,85.58081,3.804 1706,38.970406,237.7461,28.638702,73.470825,3.798 1706,388.65295,204.2694,38.143982,86.11699,3.793 1706,-15.565208,239.73659,48.478622,139.95854,3.785 1706,-6.019239,231.61383,17.568157,43.44998,3.783 1706,-5.731228,167.2793,18.662125,46.19464,3.776 1706,383.3543,214.47432,22.48294,48.33867,3.768 1706,-1.3203192,265.46738,28.259659,67.556854,3.765 1706,352.9646,208.8735,22.088776,36.568527,3.744 1706,100.25969,218.48239,40.52774,87.49124,3.711 1706,295.60565,198.37886,27.411774,64.83287,3.702 1706,13.373405,213.03308,52.632545,116.86841,3.683 1706,292.3017,490.65088,30.884766,52.37732,3.672 1706,304.4541,229.0358,32.199005,71.09189,3.657 1706,-4.6372194,154.20175,17.043205,41.15741,3.656 1706,-0.14943123,222.60022,26.76237,71.87927,3.645 1706,142.82594,247.57777,28.63771,74.21855,3.632 1706,2.161961,-16.984062,17.772009,40.680264,3.625 1706,-8.839434,101.876686,38.580948,105.27181,3.624 1706,23.925365,271.39633,22.156399,43.448456,3.619 1706,127.77234,204.75891,50.10977,124.880615,3.607 1706,282.78632,323.81213,19.876953,39.742188,3.59 1706,2.4320972,159.72131,20.944994,46.012253,3.581 1706,-10.128511,159.40294,28.981363,76.37224,3.543 1706,-5.660617,425.26553,17.386536,40.10263,3.535 1706,286.7721,197.77293,50.22238,124.553024,3.522 1706,-10.566207,-5.4345055,40.693214,101.61589,3.512 1706,273.799,493.9342,21.929932,38.6698,3.498 1707,377.72137,210.03212,22.28894,42.382126,7.795 1707,627.2593,-18.099268,17.331177,45.717094,5.725 1707,-6.044085,489.96616,18.597618,41.315216,5.724 1707,45.600716,209.28154,28.909752,73.77049,5.676 1707,626.3357,487.36172,20.86853,46.24594,5.589 1707,-11.755533,478.2719,29.888107,62.89966,5.466 1707,622.7079,-35.043003,26.682068,74.48991,5.415 1707,612.999,453.71115,39.845093,108.66232,5.315 1707,-12.424093,-41.600197,41.42301,101.74939,5.27 1707,-6.109539,-18.570484,18.137535,43.48674,5.193 1707,-40.572197,365.79657,110.73641,276.75317,5.045 1707,86.08867,205.47342,37.159203,89.88583,4.973 1707,582.97144,410.29724,71.81525,177.90674,4.87 1707,101.49805,206.00742,36.80481,89.142944,4.863 1707,-18.108633,435.06186,55.4383,141.77249,4.786 1707,536.4534,311.2313,143.16888,340.52115,4.751 1707,66.16508,239.62701,31.85884,63.336365,4.719 1707,603.1805,-56.33808,53.47357,136.11298,4.696 1707,180.37628,288.9401,31.441208,68.68179,4.681 1707,-73.043396,266.46457,200.28482,460.99808,4.604 1707,195.75629,292.16974,31.31813,65.01199,4.582 1707,-1.6685271,316.84503,27.20519,79.1933,4.522 1707,-20.013031,-87.13888,71.233185,196.58566,4.517 1707,95.378586,216.74985,23.912117,43.39868,4.488 1707,585.7755,-100.87583,76.37537,235.24344,4.454 1707,-70.57608,-188.5341,211.29068,453.78967,4.451 1707,492.9138,226.65735,238.01706,514.8958,4.418 1707,-4.7830687,251.18503,16.822601,38.887238,4.41 1707,188.41484,256.53674,55.097733,120.68555,4.357 1707,53.365906,210.51013,37.267334,86.33063,4.27 1707,489.36957,-177.58766,236.43744,421.11514,4.183 1707,-15.483432,225.66772,49.76798,134.75293,4.167 1707,13.57162,209.50485,51.75664,110.337494,4.136 1707,-37.728535,-127.280396,117.45067,279.85684,4.114 1707,53.342438,243.53214,29.50064,76.26636,4.087 1707,164.83466,289.71243,32.75595,66.1445,4.033 1707,157.75078,199.36868,30.652054,67.57388,4.027 1707,294.11414,196.32184,28.931366,69.39569,4.003 1707,373.3355,201.79904,38.429016,86.06668,3.956 1707,617.98334,489.01047,21.330322,43.313934,3.95 1707,2.2664666,162.3486,20.974424,44.889175,3.939 1707,-5.277641,161.78966,18.270994,42.56877,3.931 1707,22.657314,238.75879,28.672901,60.383423,3.917 1707,3.0062776,249.97574,18.842794,41.608887,3.891 1707,56.12116,205.43346,21.108852,33.47592,3.884 1707,117.751755,204.95544,38.059143,92.6835,3.874 1707,594.81116,-46.812626,44.337097,100.72143,3.866 1707,326.1746,430.13385,26.44629,53.47415,3.841 1707,33.491096,208.59824,48.958763,115.143036,3.839 1707,70.06096,208.96779,36.757393,86.71147,3.771 1707,-13.883757,153.4606,48.506874,138.85434,3.765 1707,277.2845,490.57922,31.144287,52.964355,3.764 1707,283.43875,226.01376,32.82715,81.16431,3.751 1707,253.49577,198.51082,14.129227,25.893707,3.743 1707,619.0546,-18.887093,17.584534,42.6018,3.728 1707,186.66782,277.66187,32.949036,61.00943,3.717 1707,341.8283,183.42526,37.720886,80.285126,3.657 1707,213.88914,293.81207,28.666672,60.74002,3.608 1707,386.09146,201.81357,29.05954,61.129242,3.583 1707,42.032387,208.28568,25.239708,48.116913,3.567 1707,219.84332,243.86871,55.044983,115.50824,3.564 1707,-9.330074,163.21344,28.705408,70.567566,3.551 1707,313.89227,204.33463,30.83139,62.611206,3.52 1707,143.16893,209.92937,28.815247,59.14827,3.518 1707,410.84976,237.57645,20.459503,37.1875,3.513 1707,134.24106,204.45784,27.3443,54.141953,3.512 1707,387.84763,204.48666,39.55545,85.8938,3.506 1707,4.023249,233.07666,37.719246,89.794556,3.493 1707,-8.957642,103.62932,38.646553,104.73938,3.483 1707,157.8656,255.89351,55.8947,118.6895,3.457 1707,28.932018,202.66595,31.366665,67.90399,3.421 1707,0.82417727,254.6376,25.70484,62.712585,3.416 1708,376.17862,209.92218,22.126251,43.453278,15.131 1708,117.45874,205.638,37.951904,87.09332,6.384 1708,-5.795211,489.84573,18.159159,40.837677,5.976 1708,-11.518061,478.9321,29.180323,62.94223,5.898 1708,621.2688,476.778,29.748169,67.02069,5.778 1708,627.2694,-17.402946,17.242798,44.94446,5.645 1708,-11.524593,-32.439682,29.946766,72.58912,5.549 1708,622.79614,-34.66931,26.661133,73.93762,5.361 1708,-5.9929667,-18.421988,17.971334,42.95235,5.356 1708,102.74916,205.54895,37.415115,86.23193,5.162 1708,-40.510643,367.03558,110.56917,274.33344,5.16 1708,374.24713,193.5377,36.309204,85.13829,5.002 1708,142.69629,420.94,25.673676,44.776062,4.936 1708,-17.638939,-62.24785,56.95697,142.81284,4.867 1708,536.4041,311.0955,143.35529,340.49057,4.793 1708,133.13248,205.30606,38.69931,90.13245,4.785 1708,144.11539,161.00856,23.06662,45.32132,4.779 1708,582.8441,410.4148,71.98938,177.73462,4.773 1708,-17.40073,435.19385,54.86008,142.11017,4.652 1708,603.4996,-55.870476,53.321655,135.8642,4.622 1708,-72.83125,267.36835,199.809,460.4759,4.583 1708,585.80023,-101.34873,76.47888,235.75064,4.443 1708,493.201,226.46982,237.96777,515.0122,4.44 1708,269.18234,492.3088,31.239624,51.322296,4.407 1708,-70.38953,-188.43379,211.431,453.98297,4.38 1708,294.35553,204.55461,27.910095,63.59404,4.201 1708,394.15027,205.11378,19.285736,35.74298,4.188 1708,308.79697,200.29063,27.83908,64.76091,4.175 1708,489.5829,-177.67538,236.09454,420.80072,4.155 1708,125.39252,410.51093,30.802933,59.13913,4.101 1708,-37.641796,-127.456215,117.40782,279.44128,4.1 1708,-5.0974727,161.898,17.939732,42.559143,4.087 1708,284.4611,491.62622,31.58139,51.9718,4.079 1708,12.878623,201.67876,54.9636,123.35774,4.016 1708,-5.477372,222.49365,17.778366,44.188293,4.002 1708,-0.60438395,161.29012,27.397722,77.652374,3.978 1708,613.16156,435.011,40.10132,100.83789,3.94 1708,114.008545,217.6126,32.368988,52.58873,3.912 1708,594.8238,-46.158966,44.487488,100.220276,3.76 1708,187.68924,250.39941,55.445526,115.698364,3.735 1708,618.07306,488.7606,21.300903,43.798126,3.72 1708,619.27386,-18.846245,17.459595,42.13299,3.713 1708,321.8837,411.657,33.197205,71.89612,3.702 1708,388.22235,196.07571,38.86487,84.385895,3.694 1708,2.4371374,491.3486,18.78613,39.08127,3.69 1708,-13.104689,178.97787,45.80857,147.50076,3.69 1708,260.57874,315.72583,33.09149,64.80023,3.681 1708,290.10684,406.63943,33.753296,63.406647,3.671 1708,148.40039,204.57774,39.76146,96.22569,3.634 1708,341.72363,183.24606,38.099976,79.24628,3.604 1708,282.40372,325.63748,17.800476,36.235565,3.558 1708,358.64334,183.96866,38.21216,79.87955,3.523 1708,2.616266,-16.376354,17.087011,39.682663,3.509 1708,251.3851,492.0512,32.68091,51.580566,3.497 1708,444.22552,228.35739,55.26825,133.14453,3.491 1708,108.290474,263.8209,33.36277,74.96872,3.471 1708,285.97983,187.55559,25.983124,68.557724,3.452 1708,199.01009,376.0808,84.24617,163.0487,3.451 1708,205.23688,279.3462,27.494766,60.865295,3.437 1708,36.638245,206.71713,40.247322,88.79581,3.409 1708,298.27917,197.62077,19.23117,42.51564,3.404 1708,305.86768,205.52744,20.101807,44.37784,3.4 1708,119.63768,425.51398,65.198166,121.06854,3.392 1708,171.93939,290.70737,30.776093,62.768066,3.385 1708,118.85826,214.18668,24.580948,35.04683,3.381 1708,325.99634,182.04236,37.742798,80.7879,3.328 1708,484.8471,243.28168,40.774048,98.86896,3.319 1708,138.74194,244.57616,56.235855,125.49342,3.318 1708,2.341888,162.82555,21.567213,44.268234,3.318 1708,67.44453,271.72232,42.893806,97.74844,3.315 1708,262.8644,373.0916,83.331635,163.31042,3.303 1709,378.46613,210.14572,20.291199,43.67723,13.613 1709,166.1325,389.4202,24.431763,42.638916,8.037 1709,626.4982,487.3538,20.668152,45.789703,6.203 1709,-5.901803,489.9104,18.297462,41.060486,6.144 1709,-11.87745,478.56,29.995419,62.846436,5.733 1709,627.3274,-17.211731,17.109985,44.90371,5.461 1709,613.04785,453.46866,39.82898,108.816864,5.395 1709,368.2515,204.57706,27.234192,58.513123,5.344 1709,623.08875,-34.478985,26.441833,73.644806,5.227 1709,-11.476713,-32.78298,29.776558,73.1504,5.156 1709,-22.362234,401.643,79.807526,176.6665,5.11 1709,291.9069,215.42902,32.763855,71.839966,5.024 1709,-6.2265325,-18.670385,18.257719,43.4117,4.933 1709,-17.741167,-61.81533,57.160736,141.6053,4.91 1709,374.44885,215.95837,27.006714,63.289,4.905 1709,-72.64236,266.97873,199.6831,461.00308,4.883 1709,582.8541,410.4562,71.9035,177.96695,4.842 1709,536.2268,310.99097,143.367,340.64948,4.715 1709,493.2851,226.95493,237.9408,514.9287,4.533 1709,603.33417,-56.29374,53.51758,136.36526,4.482 1709,585.85034,-101.60799,76.29761,235.94714,4.468 1709,2.510258,162.78993,20.049458,41.333755,4.45 1709,-70.324554,-188.48029,211.2191,453.924,4.401 1709,270.7651,285.80145,28.832336,66.46121,4.383 1709,276.9995,490.75974,31.603363,53.345062,4.343 1709,618.4774,488.3006,20.781677,43.941284,4.341 1709,287.5152,196.44432,26.823486,68.941666,4.324 1709,132.87794,201.66406,38.703903,77.823456,4.26 1709,489.71252,-178.25713,235.95581,422.1058,4.24 1709,298.33032,209.50403,20.567352,46.281662,4.21 1709,-5.1333833,237.5908,16.89709,36.41313,4.179 1709,-37.488045,-127.018585,117.235054,279.1737,4.134 1709,170.31508,287.02158,34.34543,57.22763,4.096 1709,353.83972,177.78426,47.777985,115.62666,4.095 1709,-4.63685,161.5295,17.50995,41.973267,4.056 1709,-8.57832,183.01758,37.43321,100.27545,4.023 1709,282.3676,300.8239,19.441223,40.333954,4.019 1709,362.24377,206.17014,21.898712,44.112244,4.006 1709,198.24568,367.49237,83.78691,166.39984,3.923 1709,372.8741,182.77225,39.023438,83.71451,3.903 1709,192.04892,290.51596,24.627716,42.368835,3.896 1709,144.51353,164.6133,22.225906,41.835007,3.872 1709,253.55894,197.29137,13.501083,28.421753,3.866 1709,275.71246,308.97983,20.175049,40.186127,3.828 1709,301.1729,373.8598,30.850555,58.94452,3.792 1709,-10.507731,148.742,29.048466,69.60129,3.785 1709,2.2547114,491.6458,19.11332,39.021973,3.78 1709,109.29596,203.37979,30.41214,62.43875,3.763 1709,261.9302,367.93314,82.972626,167.1304,3.716 1709,-9.014245,102.16501,38.885056,103.50751,3.712 1709,341.81915,182.91289,38.73291,78.08641,3.703 1709,383.32275,202.1905,48.60669,126.275345,3.685 1709,148.41086,367.16946,30.860855,68.41678,3.684 1709,70.449905,220.0509,26.956367,59.62732,3.635 1709,165.59233,367.77954,84.696396,166.80249,3.634 1709,595.02386,-46.79798,44.203735,100.78814,3.63 1709,282.80005,211.3569,58.56955,173.54794,3.617 1709,260.36237,490.39914,31.798645,53.750214,3.593 1709,-3.587446,319.54968,14.614113,33.667114,3.591 1709,133.2205,366.35785,84.31476,171.10162,3.581 1709,118.4982,198.6481,37.368927,80.11078,3.573 1709,215.69551,299.42722,23.429993,38.868896,3.557 1709,28.69402,186.54387,53.693874,129.93483,3.546 1709,292.23688,490.37216,31.508911,53.378082,3.543 1709,325.78433,182.79346,38.899353,78.02005,3.537 1709,396.42865,213.73886,53.117493,134.10733,3.516 1709,143.52972,208.97542,22.271484,33.936386,3.496 1709,200.61108,297.54712,24.226288,38.651154,3.495 1709,136.60529,203.23325,21.283524,33.038193,3.475 1709,413.9024,205.21925,51.88208,125.480606,3.458 1709,166.0332,204.57971,30.354965,59.128235,3.457 1709,452.74063,239.95972,40.838898,102.44159,3.443 1709,129.17113,206.67607,22.95256,36.37349,3.435 1709,148.6772,204.74191,38.99144,88.12866,3.411 1709,315.07727,370.95776,30.110352,62.70761,3.411 1709,260.638,203.66702,14.707825,29.284134,3.403 1710,382.4045,210.0327,21.46817,45.3403,14.445 1710,-0.39722443,216.99976,26.3689,68.07883,10.61 1710,-5.9423294,489.20663,18.500484,42.110626,6.47 1710,613.042,453.3797,39.567627,108.35712,5.94 1710,-11.661868,477.9291,29.515179,64.05118,5.793 1710,-11.627759,-32.921703,30.012718,72.49614,5.567 1710,626.6056,487.8851,20.392395,46.100555,5.556 1710,-6.009716,-19.024307,17.96503,43.450222,5.483 1710,627.0905,-17.766525,17.420227,45.048176,5.442 1710,301.6197,205.17372,25.984406,60.71367,5.217 1710,622.81165,-34.386105,26.610596,73.222305,5.137 1710,-72.939064,265.44525,200.59357,463.13873,5.137 1710,299.8235,214.1741,19.488678,41.429565,5.107 1710,4.2289677,212.7293,37.015297,88.908005,5.032 1710,-21.708714,402.39166,79.49911,175.66937,4.948 1710,-4.8160305,227.6835,20.43741,50.94464,4.928 1710,-17.457586,-62.002144,56.86464,143.152,4.798 1710,582.93134,410.69873,71.78351,178.08533,4.789 1710,293.27,226.48833,31.046967,68.95027,4.736 1710,536.52686,310.80267,142.95404,340.89673,4.68 1710,-4.8740525,171.42029,17.279068,39.557755,4.638 1710,603.44244,-56.071438,53.369995,135.93193,4.555 1710,585.8448,-101.298805,76.26544,235.75095,4.517 1710,493.23712,227.28961,237.71307,514.93066,4.471 1710,390.3287,212.79349,21.56778,47.193695,4.411 1710,-70.18203,-187.97777,211.20532,453.6493,4.367 1710,190.38605,338.039,26.625381,58.536224,4.333 1710,290.3516,328.7247,31.402924,63.033997,4.316 1710,270.62686,202.0603,53.931915,133.91754,4.315 1710,489.627,-178.16884,236.27826,422.15048,4.243 1710,-5.716013,186.23978,18.272776,44.042618,4.201 1710,-12.4429455,187.04715,46.09259,131.7521,4.194 1710,19.447578,221.69661,32.555374,60.96492,4.138 1710,374.99295,204.47726,36.401398,86.39398,4.136 1710,-37.528244,-127.5553,117.45044,280.23944,4.107 1710,149.11551,209.18126,38.084717,80.75963,4.099 1710,170.89493,331.05984,29.187927,70.25333,4.03 1710,618.2216,489.9968,20.786621,42.772675,4.011 1710,158.72354,218.99878,23.613312,40.73584,4.007 1710,12.514097,193.56677,50.372215,111.03238,3.957 1710,184.2119,276.04678,20.808258,35.56833,3.908 1710,316.93396,204.15771,28.964325,60.779907,3.892 1710,35.952534,230.01323,30.648159,52.464554,3.886 1710,-4.888283,210.86691,18.869667,45.61075,3.847 1710,368.24033,207.13205,27.673096,63.89621,3.836 1710,-11.885749,282.13095,29.709335,65.97217,3.832 1710,594.8529,-46.28859,44.272827,99.90328,3.83 1710,68.79392,216.24014,30.468224,63.220184,3.779 1710,389.02875,206.42908,37.63687,87.48297,3.727 1710,452.78265,246.05682,40.429657,95.30328,3.708 1710,397.74286,216.2754,51.67279,127.98497,3.664 1710,341.82477,185.9826,37.816498,79.035,3.656 1710,132.52948,208.6966,37.83426,81.70624,3.654 1710,420.1289,232.68942,40.525055,94.69699,3.627 1710,152.51917,216.03673,23.19365,34.964172,3.603 1710,268.24835,490.8105,32.16693,52.436035,3.602 1710,3.6232085,164.0344,19.342937,37.100708,3.593 1710,139.13309,165.24225,21.126465,42.66176,3.588 1710,-8.754433,197.44255,29.731894,71.25688,3.588 1710,-5.4843087,248.64131,19.15686,49.71129,3.584 1710,279.38425,328.29916,30.541168,57.0567,3.544 1710,444.23505,263.0337,31.851532,60.763763,3.538 1710,-9.031653,101.44208,39.00075,106.01611,3.536 1710,164.80745,213.5065,39.087296,92.9957,3.531 1710,90.312965,227.62613,20.75016,37.997223,3.53 1710,284.19672,490.55838,32.251526,52.567047,3.505 1710,72.93079,219.13318,21.840797,38.49362,3.498 1710,2.249239,490.37436,19.324682,40.496735,3.475 1711,384.44537,216.45737,21.525146,46.247437,17.882 1711,291.6403,304.7429,32.021393,58.100433,6.719 1711,194.88477,308.57315,30.840057,65.87891,6.297 1711,626.90015,488.27734,20.08966,45.286804,6.265 1711,215.1493,220.20709,28.248062,66.4754,5.993 1711,-6.035285,489.54086,18.45288,42.036224,5.952 1711,295.29813,216.37817,25.409729,68.05725,5.812 1711,612.8367,453.8957,39.55603,108.055176,5.725 1711,306.92084,221.25124,18.462708,42.011948,5.695 1711,209.7917,241.87808,22.34262,45.298065,5.635 1711,-8.715571,464.5262,37.49342,92.91562,5.575 1711,-11.448884,-32.767986,29.900444,72.74834,5.421 1711,627.1544,-17.766209,17.32489,45.1583,5.393 1711,18.728266,301.8807,40.344215,87.94141,5.315 1711,375.90472,205.0381,35.39038,87.31654,5.277 1711,622.89294,-34.52783,26.568848,73.951256,5.265 1711,-6.0860453,-18.56681,17.957348,43.16303,5.23 1711,212.20264,313.13397,28.268341,59.404785,5.054 1711,-72.94949,266.2057,201.18338,461.35242,5.04 1711,291.34622,232.14845,19.299805,44.235275,5.022 1711,-41.223732,362.43146,112.72132,276.51178,4.974 1711,-17.530018,-61.982277,56.818504,142.98613,4.951 1711,582.8772,410.35358,71.880615,178.13373,4.807 1711,536.45294,310.7259,143.14734,340.93854,4.751 1711,603.3634,-56.032345,53.380493,135.51816,4.685 1711,67.26316,217.52187,30.386032,54.186142,4.657 1711,389.0634,207.38124,36.63144,88.47008,4.478 1711,493.47687,226.50305,237.59216,515.3617,4.471 1711,585.80597,-101.173744,76.44891,235.72287,4.426 1711,-70.26835,-188.66547,211.27142,454.839,4.404 1711,9.820151,253.46695,71.37623,174.31796,4.393 1711,-18.091715,434.5235,55.753525,142.28723,4.384 1711,-5.895434,302.99646,18.593128,47.46936,4.328 1711,147.41916,169.30405,21.431946,39.967743,4.187 1711,489.77924,-178.01758,236.0033,421.03333,4.186 1711,37.33272,304.8873,37.695873,77.28238,4.173 1711,122.44999,166.9797,19.560951,45.96898,4.17 1711,-37.452667,-127.80473,117.54568,281.33664,4.135 1711,103.975876,213.42366,23.950768,36.795227,4.103 1711,-10.774144,313.2958,40.845787,93.08243,4.058 1711,160.66306,255.24806,33.895203,63.143356,4.033 1711,359.92145,198.46957,35.334137,80.493866,4.032 1711,196.57532,222.14795,41.561203,89.58722,4.019 1711,-6.2667184,171.41183,18.08686,39.095184,4.008 1711,618.7404,490.4034,20.199524,42.1008,3.96 1711,199.20255,221.72145,27.981873,55.442,3.956 1711,281.00662,222.83638,24.946808,60.33879,3.943 1711,79.70936,229.50061,24.617844,35.83127,3.925 1711,157.7956,211.5691,53.165375,106.16246,3.895 1711,172.5164,223.73407,27.81073,49.883484,3.876 1711,43.548183,223.03856,32.219456,62.20024,3.876 1711,343.4595,196.93675,34.520477,79.4659,3.853 1711,154.11385,240.04836,21.223099,34.824142,3.851 1711,-8.765631,99.66362,39.029884,110.27014,3.842 1711,620.626,124.34935,17.398804,41.532135,3.841 1711,288.63623,313.0116,24.440277,37.156647,3.82 1711,594.78534,-46.40013,44.33087,99.34462,3.792 1711,100.70792,218.08694,31.267487,54.7742,3.783 1711,117.40718,160.28546,29.024063,69.961655,3.676 1711,121.6098,223.53183,21.06543,35.15039,3.633 1711,226.5187,238.00217,41.771667,91.196625,3.617 1711,304.65594,232.5587,22.115112,53.60237,3.601 1711,255.23729,193.54547,50.961166,129.16089,3.578 1711,326.8512,202.20451,37.01877,90.80055,3.56 1712,213.45537,292.4668,28.881027,58.984863,11.687 1712,391.64783,216.16638,23.122925,44.888733,10.598 1712,313.78384,232.31398,21.238007,45.558792,8.749 1712,192.59065,230.72523,22.340439,45.033493,7.633 1712,310.1372,203.67186,25.954681,67.78627,6.001 1712,-11.724295,478.63766,29.87208,62.829865,5.731 1712,272.79367,300.42654,33.49411,67.34161,5.67 1712,230.79639,299.80667,22.917755,49.518402,5.629 1712,-6.0997987,489.78955,18.674997,41.61548,5.555 1712,627.19244,-17.981434,17.204285,45.490475,5.476 1712,612.8897,453.66806,39.594727,108.221466,5.413 1712,-6.115163,-18.646656,18.18047,43.66397,5.404 1712,622.9593,-34.40633,26.597534,73.877045,5.357 1712,389.55276,212.3929,36.33731,87.410446,5.348 1712,-11.342254,-32.699844,29.806591,73.45487,5.346 1712,226.74286,221.3591,27.009567,60.14334,5.237 1712,297.15802,296.08197,23.053497,36.259674,5.168 1712,94.69902,224.39551,30.308311,65.41638,5.107 1712,-17.697437,-62.00205,56.970325,143.9458,5.007 1712,-22.399015,400.16513,80.3307,176.99301,4.999 1712,-72.89693,265.52832,201.11858,462.7937,4.975 1712,295.54623,212.57501,26.705994,65.19559,4.921 1712,301.04486,296.14948,28.120026,52.50598,4.822 1712,536.6987,310.9049,142.86249,340.9757,4.785 1712,582.83417,410.3317,72.06482,178.11215,4.72 1712,603.4717,-56.279457,53.303894,136.53603,4.695 1712,199.9473,228.93457,21.891464,39.25824,4.622 1712,561.9413,136.68906,18.89502,36.998383,4.583 1712,626.6908,488.0153,20.707825,45.703766,4.575 1712,493.40408,226.64474,237.9271,515.01306,4.456 1712,100.83063,218.76578,39.429108,89.619965,4.451 1712,-70.205826,-187.82623,210.92465,454.80997,4.414 1712,585.914,-102.56956,76.5224,237.33295,4.358 1712,213.01242,223.6721,39.0661,89.30653,4.358 1712,210.39038,234.79907,19.338867,37.315918,4.304 1712,374.82162,207.12466,30.483673,62.623474,4.295 1712,154.84189,169.2974,21.024124,40.011017,4.276 1712,133.33087,217.11606,37.15149,85.36841,4.253 1712,489.85632,-178.6301,235.98047,420.928,4.166 1712,-37.105618,-127.273834,116.890045,279.49588,4.106 1712,250.87852,241.32782,19.4366,32.77368,4.073 1712,67.658226,294.25998,39.837624,79.52927,4.065 1712,196.54115,222.4922,39.600082,83.63512,4.036 1712,302.9617,246.23865,32.051483,69.35358,3.987 1712,403.8122,213.3847,37.413208,89.52411,3.981 1712,253.78372,291.18103,30.896698,59.51596,3.961 1712,181.2407,213.55305,37.76158,82.209885,3.961 1712,219.11705,233.82004,20.16603,39.988922,3.894 1712,116.86027,215.70303,36.97451,87.71954,3.893 1712,185.38727,222.05702,23.251938,38.652634,3.844 1712,-4.944498,425.23615,16.546001,38.02713,3.843 1712,595.00726,-47.282925,44.122253,101.18487,3.815 1712,173.10515,237.7987,30.726776,68.23114,3.796 1712,103.16746,220.43936,23.0513,43.01706,3.796 1712,427.8009,264.8316,32.361206,57.044373,3.79 1712,436.354,278.3669,33.949036,68.49945,3.71 1712,229.66827,265.90564,38.546783,80.90881,3.682 1712,260.9927,269.65305,39.34671,78.00482,3.678 1712,77.31444,219.96075,28.830032,60.552643,3.674 1712,420.97632,215.69327,38.558716,90.99048,3.648 1713,229.83786,279.4791,27.43576,57.02643,16.266 1713,199.88757,239.17996,24.850723,48.173523,8.324 1713,298.25665,282.4806,21.490417,40.020233,7.99 1713,312.57117,226.39177,26.52069,63.466446,7.727 1713,393.88898,213.43134,22.246582,38.298157,6.593 1713,-6.008953,489.786,18.43835,41.069397,6.407 1713,313.51157,212.35713,18.400238,42.069397,5.992 1713,-11.762,478.68295,29.644058,62.877167,5.928 1713,301.0789,261.3101,30.417725,64.52548,5.438 1713,627.3086,-17.599827,17.205322,45.579582,5.407 1713,623.0117,-34.621162,26.463074,74.56163,5.389 1713,98.11423,268.95435,36.28546,85.23755,5.27 1713,-5.912381,-18.714897,17.942524,43.11635,5.25 1713,-11.530475,-33.045643,29.956696,72.92507,5.244 1713,242.66757,280.8704,31.470795,54.150604,5.234 1713,613.222,453.55658,39.497864,108.512024,5.221 1713,305.1526,205.80138,24.490173,61.474686,5.167 1713,-39.489082,365.41992,110.039406,274.2832,5.05 1713,262.0105,270.54422,29.67804,56.013367,4.978 1713,-17.590279,-62.62626,56.76588,145.49252,4.972 1713,-72.63404,266.57156,200.24219,461.75754,4.97 1713,281.16635,281.27417,21.868988,33.312195,4.838 1713,536.5639,310.6869,143.20837,341.20483,4.819 1713,582.9225,410.4518,71.894104,178.19308,4.755 1713,228.32756,229.87366,39.807877,84.11023,4.662 1713,603.3677,-56.06096,53.296753,135.91324,4.528 1713,493.40042,226.92523,237.77054,514.50305,4.525 1713,-17.527763,434.36926,55.33971,141.2091,4.517 1713,626.4238,488.06293,20.984009,46.04419,4.488 1713,276.56772,249.71062,37.47635,82.56929,4.459 1713,196.83006,213.32742,38.937378,80.734406,4.444 1713,586.0663,-103.40368,76.60956,238.24579,4.278 1713,-70.17467,-187.66006,210.89093,454.3034,4.262 1713,213.13498,226.33917,38.790894,81.46265,4.231 1713,245.1069,249.68353,37.807465,81.8587,4.227 1713,383.31934,210.11948,28.809113,50.624237,4.221 1713,-36.871246,-127.319595,116.633316,277.83093,4.22 1713,205.3076,256.49426,31.882202,61.185883,4.197 1713,215.46426,271.69785,33.108917,62.164032,4.096 1713,489.72974,-177.76071,235.85626,418.87817,4.029 1713,0.2611351,338.31918,28.593481,86.84125,3.995 1713,153.90634,164.84647,22.450562,43.65497,3.955 1713,222.32361,214.64821,26.581253,53.54988,3.912 1713,181.56236,208.6695,28.59526,55.595917,3.909 1713,-0.3819394,307.51233,28.830397,81.671326,3.859 1713,403.6475,210.11638,38.631897,90.53093,3.803 1713,389.76868,210.99832,37.942993,88.16757,3.795 1713,266.50647,274.6016,19.701874,30.06308,3.795 1713,9.58296,332.34543,32.566093,78.79187,3.772 1713,372.74048,208.96286,28.406494,50.76587,3.738 1713,85.45364,283.35153,35.450348,73.0195,3.733 1713,594.86414,-46.880573,44.207214,100.583664,3.73 1713,577.71216,204.12013,22.510742,34.415543,3.716 1713,-13.361856,331.73642,48.02854,142.76208,3.693 1713,182.3454,234.99426,30.041306,60.939697,3.68 1713,305.04843,286.70966,21.522675,43.76889,3.675 1713,274.4727,275.03802,19.929535,30.19513,3.641 1713,404.60388,215.15523,24.321014,45.49095,3.638 1713,323.62393,206.92139,38.401703,89.66077,3.638 1713,240.93723,215.61137,21.690002,48.012375,3.614 1713,289.7976,283.3734,22.218506,37.97223,3.612 1713,330.6456,211.64618,19.18164,37.892456,3.583 1714,315.82187,234.2865,23.213806,47.658203,16.384 1714,403.28955,218.64204,19.263,40.929276,11.552 1714,288.82794,273.0327,22.557373,33.482758,8.934 1714,239.60071,272.10583,24.437622,47.634735,8.119 1714,249.7637,224.50327,21.403473,40.841827,7.493 1714,301.30225,258.0025,30.698303,55.411255,6.149 1714,278.99213,269.68848,28.65744,50.129364,5.855 1714,296.47974,275.76196,22.434723,37.74283,5.844 1714,-8.623318,465.1359,37.515007,91.65671,5.615 1714,627.31177,-17.058395,17.040405,44.603317,5.514 1714,-5.9729033,489.28705,18.501394,42.098938,5.482 1714,129.55309,274.6875,30.902817,79.02539,5.457 1714,-11.442661,-33.293056,29.781254,73.20177,5.387 1714,613.06665,454.4196,39.797974,106.57486,5.25 1714,406.346,216.68518,25.040588,60.966003,5.129 1714,-6.0229135,-18.55737,17.927937,43.08362,5.104 1714,260.4284,268.19495,31.708862,51.557648,5.007 1714,-22.34682,400.4729,79.9998,176.84741,4.967 1714,-17.564037,-62.42959,56.719967,145.54752,4.964 1714,622.93243,-34.41758,26.512634,73.42275,4.915 1714,626.5205,488.99387,20.914307,44.962677,4.89 1714,-72.50768,266.25244,200.29684,461.14636,4.858 1714,582.81995,410.47955,71.99823,178.45862,4.853 1714,312.02945,208.19269,25.778595,63.79721,4.772 1714,536.564,310.64215,143.31293,341.3349,4.758 1714,228.89798,230.91466,39.13977,78.7202,4.718 1714,218.9672,224.53575,29.014587,53.690628,4.602 1714,603.1143,-55.877995,53.40149,135.57523,4.523 1714,493.43292,227.19257,237.75922,514.4579,4.492 1714,314.6601,219.03027,18.861969,37.155334,4.334 1714,414.5149,220.09949,21.721558,45.487762,4.328 1714,245.17484,231.57431,37.785095,80.03903,4.299 1714,-70.28926,-187.96385,210.89703,454.273,4.257 1714,213.17682,248.91977,30.237,59.14154,4.17 1714,-36.93283,-127.48855,116.92395,278.5898,4.149 1714,586.109,-104.01001,76.87488,238.8871,4.044 1714,274.429,272.0453,21.800293,34.203033,3.964 1714,233.6629,265.72308,24.911377,42.879364,3.947 1714,489.9329,-178.15613,235.93637,418.49084,3.944 1714,197.64722,228.26349,30.77893,58.930298,3.882 1714,442.43088,268.55432,35.165405,64.830444,3.815 1714,397.409,216.83183,19.01593,36.361908,3.789 1714,261.9604,232.65009,37.54663,80.58472,3.745 1714,152.54567,165.67787,22.635635,46.00345,3.74 1714,410.7445,218.15988,16.542511,30.370361,3.714 1714,390.51303,197.47183,37.519257,84.269226,3.695 1714,427.62885,266.367,33.901276,69.38281,3.688 1714,257.83694,213.29932,18.106873,33.16507,3.679 1714,618.02466,491.49402,21.26886,41.138184,3.663 1714,180.84741,213.50146,38.77614,79.34277,3.659 1714,74.13739,297.3362,31.85138,62.39337,3.651 1714,594.52936,-45.54954,44.814392,98.93059,3.65 1714,421.56525,223.92392,38.00476,100.081024,3.643 1714,399.1651,198.03099,46.782288,115.320206,3.616 1714,281.74518,492.472,21.371857,39.162476,3.557 1714,295.10458,218.44374,26.653778,60.433304,3.519 1714,148.77942,208.8804,38.841766,91.17496,3.501 1714,314.75613,239.32397,32.545044,66.600586,3.492 1714,2.8569002,-16.94122,17.025955,40.035072,3.491 1714,265.43268,272.67163,21.50653,34.012756,3.477 1714,-9.786168,9.577862,39.84876,106.10901,3.472 1715,423.2923,216.42064,22.437988,46.080612,16.052 1715,91.913994,304.5735,31.154816,72.130585,10.716 1715,409.58408,219.40466,22.690857,47.207825,8.937 1715,319.00842,235.0281,22.962341,42.346252,7.363 1715,232.14575,232.94324,22.51056,43.061523,6.991 1715,290.57895,269.9227,20.881744,34.24182,6.711 1715,144.8668,259.82034,32.94301,75.609314,6.577 1715,252.82549,263.9713,28.598495,54.242096,6.347 1715,229.50089,216.0286,36.637268,77.450165,6.192 1715,627.30566,-17.975685,17.378113,45.264008,5.651 1715,282.979,217.37814,18.362427,42.985138,5.552 1715,-6.267493,489.18906,18.987001,42.1763,5.549 1715,-11.454954,-32.971333,29.94317,72.81079,5.547 1715,420.5217,204.74442,36.838593,84.812164,5.495 1715,613.1593,453.08206,39.678528,109.07077,5.486 1715,622.6873,-34.19148,26.94519,73.725334,5.482 1715,-12.236568,477.4646,30.565016,63.412903,5.355 1715,626.9641,488.91418,20.217651,44.533325,5.223 1715,-6.239619,-18.496637,18.217789,43.18074,5.182 1715,214.772,212.0887,36.742493,77.16725,5.109 1715,-22.330639,400.08215,80.05362,176.86853,4.917 1715,582.7926,410.45517,71.99451,178.09286,4.885 1715,248.973,261.39746,23.638107,42.732483,4.871 1715,314.20917,214.89218,18.445068,40.20407,4.855 1715,197.58002,202.87277,37.591476,77.15106,4.829 1715,-72.74202,267.30072,200.42151,460.0191,4.827 1715,-17.524803,-62.74061,56.615147,144.66403,4.795 1715,264.58728,217.95065,19.931274,43.457184,4.789 1715,264.18698,270.49112,22.395966,39.765106,4.777 1715,308.628,245.7802,30.062347,62.673416,4.761 1715,407.68954,196.18391,35.0679,84.04234,4.758 1715,536.45496,310.81104,143.1648,341.2621,4.75 1715,283.11087,265.42294,19.952942,31.544037,4.695 1715,245.0361,230.01457,36.417816,77.040146,4.657 1715,603.32385,-56.243225,53.37207,135.22891,4.617 1715,261.6723,233.71188,37.128174,77.33423,4.579 1715,308.9054,204.4939,26.034332,63.94156,4.517 1715,493.4107,226.85278,237.76147,514.89575,4.506 1715,380.8941,-32.052277,28.848694,78.42476,4.398 1715,269.03418,265.58118,29.057129,48.633057,4.219 1715,306.4803,221.2178,19.657654,41.912354,4.213 1715,-70.202774,-188.8049,211.01015,454.68698,4.206 1715,-36.798874,-127.02882,117.013336,277.285,4.168 1715,293.4415,242.82288,30.75647,63.219116,4.107 1715,261.74118,202.05585,13.1779175,25.217606,4.1 1715,297.0612,266.83817,21.843872,31.966461,4.1 1715,181.66861,209.76138,37.47162,81.565704,4.074 1715,562.4774,-130.03754,114.203125,281.16736,4.034 1715,436.5089,206.65533,38.15567,86.153015,3.945 1715,302.07697,222.55249,28.893188,66.37378,3.925 1715,391.34384,216.30042,29.073639,58.674683,3.897 1715,153.94678,166.07227,21.307358,45.955048,3.83 1715,489.85284,-176.85526,236.00592,417.27222,3.808 1715,594.59784,-46.398922,44.749023,98.93675,3.784 1715,278.95148,256.95636,28.596222,51.833374,3.762 1715,367.166,-36.60949,27.810791,79.53127,3.73 1715,618.70233,491.8799,20.057251,40.28293,3.722 1715,475.01187,203.93521,18.371338,32.77765,3.665 1715,273.1779,218.39926,19.818573,43.034546,3.636 1715,323.85645,205.52924,39.245544,89.32822,3.635 1715,217.25171,224.911,23.144028,46.01735,3.619 1715,283.67374,237.19077,16.84317,30.333435,3.591 1715,148.40005,220.92462,38.42108,93.179504,3.59 1716,108.71014,297.17114,29.201363,68.29901,24.241 1716,439.98688,217.46263,20.49945,46.28035,12.87 1716,306.12607,256.6107,19.864044,32.97525,8.634 1716,300.1954,258.37415,19.08899,37.374115,5.826 1716,622.9291,-34.789803,26.656006,74.37016,5.796 1716,-6.038427,489.67838,18.76091,41.41501,5.736 1716,627.20544,-17.982504,17.447388,45.91616,5.692 1716,-11.413537,-32.413773,29.908226,72.29395,5.69 1716,264.63736,253.46252,22.782532,40.366272,5.662 1716,-8.851656,465.74033,37.73867,91.071014,5.591 1716,437.87317,205.56657,37.21399,86.66933,5.257 1716,-6.1642003,-18.475391,18.2376,43.073917,5.246 1716,155.2353,255.18419,32.60591,71.85066,5.236 1716,626.5443,488.60767,20.727356,45.826538,5.207 1716,269.768,253.7114,28.04187,53.478394,5.183 1716,612.85876,454.2223,39.916626,107.28052,5.115 1716,-17.651522,-62.583656,57.083427,144.86348,5.039 1716,-21.987867,401.64865,80.0611,175.65005,4.989 1716,582.87274,411.21527,71.871216,177.15088,4.803 1716,230.77368,210.87552,35.465088,79.067566,4.725 1716,603.4447,-56.355995,53.198914,137.18929,4.684 1716,536.54736,310.60522,143.10413,341.656,4.679 1716,427.2641,226.7646,19.894257,45.876846,4.666 1716,-72.683624,268.9629,200.221,459.04272,4.649 1716,-0.23909688,296.43277,25.621206,63.738922,4.488 1716,493.6624,226.97653,237.42468,514.99927,4.469 1716,245.40144,213.98792,36.97087,79.587036,4.404 1716,291.35632,255.18982,19.610107,33.6192,4.377 1716,-36.53499,-126.96443,116.67454,275.80496,4.304 1716,281.71875,256.21954,20.181458,36.52527,4.231 1716,-70.72888,-189.20229,211.33864,454.96954,4.21 1716,373.16113,211.60364,27.082886,57.280212,4.202 1716,-6.2289085,322.07526,19.327831,46.395752,4.144 1716,378.52588,216.09512,19.10199,35.82605,4.009 1716,-9.556751,9.197243,39.302402,105.2509,3.989 1716,261.00522,215.58734,37.14923,79.178345,3.924 1716,562.01654,-129.87115,115.276306,279.95816,3.914 1716,254.71062,244.89948,29.233139,63.71808,3.887 1716,416.4555,219.7286,26.613495,60.517,3.872 1716,302.26566,241.1768,27.392975,54.78676,3.872 1716,423.68323,204.80167,37.365997,86.80371,3.774 1716,452.2145,205.5291,37.91812,86.9619,3.709 1716,489.48737,-176.69507,235.80139,416.92392,3.686 1716,317.66785,232.69737,28.562866,64.97035,3.68 1716,-4.9533277,306.52606,17.852018,42.80133,3.672 1716,238.02142,238.81696,30.050812,69.09943,3.671 1716,313.56046,255.85318,20.547852,35.216248,3.661 1716,249.651,244.2908,23.74472,45.02655,3.622 1716,358.6649,194.26747,37.894592,79.10106,3.621 1716,389.82516,197.30089,37.059113,81.35802,3.615 1716,435.0131,209.92404,20.290222,37.045685,3.559 1716,197.89029,202.11014,37.931625,77.318726,3.559 1716,1.969223,490.51242,19.697975,40.043976,3.531 1716,618.3351,490.81277,20.796326,42.46927,3.507 1716,322.29007,227.89926,19.239471,38.838776,3.506 1716,215.16615,209.5781,36.0511,79.007965,3.496 1716,421.4048,-19.588085,28.430664,76.88384,3.491 1716,595.06433,-47.508125,44.103394,101.78216,3.465 1716,446.70047,219.86226,23.289276,50.76329,3.464 1716,341.73596,191.79196,38.345978,84.28467,3.442 1716,-9.132427,53.314102,38.25175,107.0179,3.413 1716,621.62036,76.56938,25.785156,74.77968,3.407 1716,619.08417,-19.149706,17.450134,43.450443,3.403 1716,2.5145066,-16.432562,17.341425,39.541435,3.393 1717,108.26069,291.43265,28.068825,70.943634,12.885 1717,291.55432,247.73314,18.829254,34.42897,7.503 1717,436.22742,220.9299,21.70404,45.91678,6.909 1717,1.756978,318.0305,21.85085,41.621216,6.422 1717,-11.489466,-32.56074,30.088888,73.11864,5.746 1717,-6.258788,489.1538,19.066757,42.459045,5.711 1717,-8.637274,465.09076,37.430992,91.23297,5.649 1717,627.3467,-17.390505,17.155334,44.97491,5.643 1717,265.6909,244.29483,21.139679,39.36978,5.591 1717,623.2074,-34.32553,26.335144,74.1145,5.326 1717,284.1106,248.14462,18.852844,34.75476,5.298 1717,612.8391,454.49734,39.964966,108.005585,5.283 1717,626.80426,488.88672,20.448303,45.350647,5.129 1717,154.11559,251.74478,31.000565,70.74457,5.119 1717,-6.073923,-18.805658,18.113083,43.75503,5.062 1717,247.41711,215.31612,28.290314,61.034622,4.949 1717,-17.519863,-63.281815,56.775936,145.27402,4.943 1717,582.8905,411.5978,71.83795,176.85971,4.874 1717,-21.973427,401.72913,79.8409,175.40344,4.856 1717,536.67236,310.66006,142.95886,341.49057,4.721 1717,603.37024,-56.41573,53.25464,137.82936,4.699 1717,274.7019,246.2879,19.585358,38.1062,4.643 1717,-72.35189,269.35138,199.7789,457.86688,4.634 1717,257.54886,212.85712,19.650269,40.57962,4.521 1717,493.5406,226.80914,237.58978,515.78625,4.449 1717,298.47736,248.01709,19.107208,34.95746,4.378 1717,230.65778,208.12524,35.01776,79.63333,4.299 1717,-36.389763,-127.03119,116.481285,276.1852,4.28 1717,265.87094,219.72542,17.914215,37.302353,4.275 1717,-70.74943,-189.34369,211.2623,454.8201,4.25 1717,-5.018176,287.0894,17.545605,38.210052,4.117 1717,561.46027,-130.15266,115.58447,280.11475,4.108 1717,261.34662,213.0629,36.735992,80.04306,4.106 1717,218.01907,223.96004,20.746643,36.120895,4.07 1717,252.57114,191.85939,14.163055,26.639603,3.96 1717,341.93854,186.50119,36.585327,89.37009,3.941 1717,198.33601,199.9559,36.70465,78.84625,3.896 1717,4.2491016,295.20557,28.81692,59.181274,3.874 1717,251.2857,217.03804,18.888458,40.630783,3.866 1717,503.87637,60.17263,32.994232,67.729294,3.805 1717,276.78613,215.10733,38.17041,83.03189,3.786 1717,447.08624,220.61218,22.362457,50.32077,3.775 1717,549.54645,68.42253,27.452942,70.96849,3.71 1717,489.44058,-176.00565,235.84879,416.5917,3.706 1717,-9.121565,296.37195,28.0998,64.5452,3.691 1717,214.8549,198.7233,34.809006,78.4147,3.659 1717,2.789431,304.9478,19.261564,38.428284,3.635 1717,232.91718,222.79642,20.588196,35.47287,3.62 1717,-5.2198195,318.83383,18.969572,42.018494,3.611 1717,316.56046,178.196,15.517487,28.328201,3.557 1717,619.2297,105.919716,17.87384,46.236885,3.555 1717,257.93863,233.42844,20.352661,40.03311,3.518 1717,253.84215,239.71413,29.514603,58.246017,3.514 1717,619.538,-18.661104,16.819519,42.518078,3.474 1717,-9.929401,9.553738,39.90959,104.58818,3.471 1717,362.5075,212.87233,19.730072,40.001175,3.47 1717,181.68037,198.42018,37.47345,83.90001,3.432 1717,333.517,171.77052,15.038269,30.198257,3.41 1717,291.86188,214.43353,39.173615,83.70038,3.384 1717,323.95352,177.75902,16.224945,29.662384,3.375 1717,313.5647,210.79066,20.075897,43.389175,3.361 1717,340.55707,176.85515,16.937866,35.791107,3.36 1717,-8.969699,54.893017,37.881966,105.293106,3.34 1717,-7.1343956,297.34644,36.518017,98.35788,3.327 1717,245.58102,192.3752,14.535431,25.7659,3.324 1717,358.28784,187.58617,36.389893,88.146805,3.309 1717,163.98918,207.47975,38.372482,87.63588,3.282 1717,453.552,-33.36999,28.60614,87.51479,3.27 1717,469.6783,271.72278,29.866669,59.49716,3.267 1717,325.14978,188.7496,39.22528,89.71796,3.249 1718,469.85742,215.80441,28.45401,69.617615,86.333 1718,484.432,218.30704,26.629517,67.26227,71.307 1718,283.18622,252.26666,19.320526,37.913147,6.919 1718,610.9978,-44.49836,41.17926,97.40326,6.65 1718,584.7393,-13.007835,34.4516,73.454544,5.84 1718,-12.009421,477.6525,30.348759,63.373688,5.724 1718,-6.106978,489.51617,18.736914,41.80133,5.71 1718,626.7364,-18.267494,18.107605,45.366245,5.679 1718,-11.657647,-32.59287,29.925686,72.400986,5.6 1718,458.2489,219.30798,30.266235,76.44171,5.559 1718,117.14447,291.45737,28.059769,67.5759,5.407 1718,612.94385,454.50494,39.62683,107.60651,5.364 1718,-6.120555,-18.5363,18.083916,43.147675,5.256 1718,593.87476,-40.001167,44.63025,94.975075,5.18 1718,-17.726992,-62.040817,56.928116,143.17804,5.063 1718,230.2842,212.63388,35.762894,79.40817,4.956 1718,536.48755,311.00717,143.92834,340.4966,4.881 1718,-21.888885,402.2582,79.77069,174.86166,4.836 1718,582.8317,411.06653,71.89575,177.36658,4.795 1718,626.5009,487.90247,20.828308,46.200256,4.786 1718,246.08955,217.48828,27.590988,57.12384,4.785 1718,494.74054,227.87439,236.46112,513.1641,4.708 1718,160.08362,256.9551,32.211212,70.5437,4.687 1718,-72.452194,269.22513,199.9798,458.16684,4.64 1718,585.4927,-99.32156,75.12598,233.13219,4.599 1718,440.11716,213.23048,34.883453,87.091324,4.5 1718,198.51935,209.85526,36.006195,82.560394,4.385 1718,462.78394,214.05753,52.049377,124.60077,4.338 1718,275.03207,251.76917,20.071442,39.991577,4.32 1718,-36.36504,-128.17404,116.34856,276.56747,4.311 1718,257.16437,244.53119,21.637695,39.685486,4.304 1718,-70.71986,-189.19379,211.2844,455.47385,4.294 1718,257.7218,221.72102,19.854523,36.425644,4.259 1718,490.17102,-177.04077,235.99689,419.2529,4.23 1718,519.90894,62.367386,28.969238,82.23822,4.215 1718,241.01538,221.59416,20.89975,35.05632,4.212 1718,423.89288,210.13667,35.04422,81.65013,4.185 1718,494.40463,217.38867,21.959564,50.04419,4.172 1718,600.85077,-18.760563,19.424438,47.656628,4.152 1718,480.99094,212.79483,22.058716,52.64389,4.124 1718,498.08762,222.65524,39.33731,88.76907,4.098 1718,618.1914,-19.5955,19.496521,45.277554,4.026 1718,-10.840163,286.13593,30.309917,68.08374,4.007 1718,214.42435,210.86278,35.171524,79.922806,3.969 1718,246.8631,224.9573,34.436737,79.865326,3.967 1718,483.07947,226.03429,40.45697,97.58592,3.957 1718,613.66956,-7.0012207,27.658081,74.05732,3.915 1718,266.83594,222.47508,18.771515,34.27672,3.9 1718,465.72888,214.07559,22.960693,50.780426,3.893 1718,181.38052,209.5386,37.702286,87.819214,3.766 1718,290.72208,250.826,19.691315,32.463516,3.685 1718,293.5306,201.91208,26.861725,62.00882,3.625 1719,544.72705,215.73073,39.083923,94.15721,79.522 1719,561.09314,220.58748,31.221375,73.27757,16.578 1719,128.98172,296.71304,23.926132,54.70526,6.719 1719,163.86458,254.43767,29.982162,70.63338,6.714 1719,520.0662,218.47415,41.40631,99.26657,5.981 1719,257.29605,216.9425,20.492401,40.037506,5.705 1719,-8.764443,464.77618,37.602257,91.93921,5.638 1719,579.4219,15.256599,32.268066,73.16371,5.611 1719,-6.2237473,489.72626,18.69481,41.517273,5.585 1719,-11.268738,-32.96404,29.507324,73.17395,5.491 1719,627.2497,-17.997875,17.35083,45.480072,5.462 1719,579.6709,220.21852,37.487793,101.00069,5.454 1719,-6.124304,-18.76751,18.161854,43.86166,5.435 1719,611.16223,-46.729523,41.374268,101.11462,5.372 1719,353.77063,213.61296,21.600922,34.433044,5.282 1719,-5.001297,303.7366,16.593128,33.602386,5.054 1719,626.48846,488.04877,20.732117,46.096924,5.027 1719,613.1263,454.04166,39.51825,108.17844,5.003 1719,-17.73975,-62.069035,57.077038,143.11859,4.987 1719,236.7309,215.22401,30.76181,60.99907,4.986 1719,536.30585,310.47296,144.20905,341.54608,4.983 1719,500.9152,211.9491,39.978302,96.897644,4.957 1719,582.9615,410.9161,71.82526,177.37015,4.896 1719,565.3734,18.381237,32.4657,79.05998,4.861 1719,-22.01705,401.59143,79.8236,175.37231,4.83 1719,251.93266,212.11302,29.614151,67.18709,4.807 1719,527.63434,213.72725,53.802307,145.29851,4.79 1719,258.32922,236.61398,19.47052,38.150085,4.681 1719,240.51872,215.41371,21.636154,37.05504,4.679 1719,-72.28458,268.6487,200.15521,458.09543,4.668 1719,494.81287,227.63174,236.47894,513.5802,4.616 1719,452.90912,203.60867,38.382965,89.6434,4.556 1719,553.3671,195.91353,52.700256,112.30492,4.364 1719,-36.447136,-127.76134,116.657005,275.68884,4.357 1719,-71.00114,-189.07625,211.77417,454.81635,4.287 1719,330.7123,204.47322,32.15103,52.31288,4.255 1719,361.80853,217.35847,21.306946,33.797943,4.247 1719,560.40656,-128.44945,115.696106,278.8913,4.223 1719,371.1238,219.69318,22.388947,35.53987,4.119 1719,484.2849,204.23273,40.174683,91.45294,4.083 1719,275.29846,244.92245,19.958832,37.65088,4.051 1719,523.96436,177.68303,58.65271,121.96495,4.015 1719,378.979,226.20288,20.309387,37.529846,4.014 1719,437.32944,213.93733,38.430725,91.91936,4.003 1719,421.84464,216.56567,38.36139,90.33502,3.959 1719,489.55286,-175.98927,235.77905,416.69962,3.948 1719,618.78107,80.192825,20.47052,60.145264,3.938 1719,282.96924,245.5437,19.70285,36.57727,3.864 1720,110.34903,296.55225,26.719238,66.956085,24.525 1720,626.65643,-20.475924,17.396423,51.826977,6.72 1720,274.87827,250.65813,19.949707,36.354446,6.48 1720,154.2224,263.51517,29.110046,68.0376,6.252 1720,-12.142629,478.53247,30.484089,62.702515,6.061 1720,-6.423144,489.89865,19.27827,41.614227,5.774 1720,611.65765,-48.774094,40.81311,104.80288,5.749 1720,-6.007475,-18.7121,17.878624,43.49173,5.509 1720,281.897,250.0621,19.726532,31.812683,5.357 1720,-11.4595175,-33.08761,29.770576,73.21912,5.35 1720,362.23077,214.78337,21.109863,33.22058,5.334 1720,612.9618,453.95938,39.709167,108.19406,5.139 1720,346.78082,213.42197,19.200745,30.845886,5.075 1720,571.70166,67.7892,29.212524,75.39595,4.988 1720,536.4772,310.24066,143.89368,341.47443,4.909 1720,-17.154203,-63.326157,56.56073,145.60486,4.896 1720,-22.160881,401.4016,80.04091,175.71008,4.811 1720,485.76697,214.32356,38.520874,90.20012,4.802 1720,626.4608,488.20676,21.006104,45.945892,4.801 1720,582.8517,410.9704,71.92786,177.37726,4.801 1720,212.75357,214.12775,28.116562,56.727478,4.772 1720,-72.50339,269.08807,200.01717,458.30304,4.705 1720,494.07056,227.29645,236.92133,513.7165,4.686 1720,500.9393,214.07198,38.402008,88.99397,4.649 1720,267.61838,251.75629,19.641754,36.55487,4.55 1720,369.25116,217.5749,22.175507,31.123169,4.461 1720,234.73091,217.42377,18.784592,35.24823,4.418 1720,4.2756104,286.361,28.176699,63.23587,4.403 1720,-70.69424,-189.3389,211.54031,455.27753,4.361 1720,504.6771,236.51668,21.628326,34.806015,4.342 1720,-36.578693,-127.50545,116.63341,276.5534,4.316 1720,-9.021367,8.488407,38.995495,104.87781,4.263 1720,581.3238,198.0744,37.903564,94.769806,4.196 1720,209.72404,219.97435,21.591873,40.88121,4.193 1720,378.23743,221.84683,21.01886,31.255417,4.162 1720,242.26715,222.46404,17.233612,34.99031,4.142 1720,338.70685,213.67381,19.582764,29.564423,4.115 1720,229.36221,213.91557,36.914215,78.13893,4.095 1720,558.187,212.6902,31.12201,69.675766,4.092 1720,222.69768,217.87366,27.51793,56.036713,4.059 1720,385.85852,219.83183,21.597778,31.618988,4.034 1720,289.8092,221.58826,19.856201,34.71109,3.978 1720,489.8506,-177.86613,235.44537,419.5906,3.973 1720,-8.953657,287.04913,29.453886,68.38748,3.949 1720,236.39804,155.75058,15.074341,32.771805,3.912 1720,597.9641,206.54373,37.434998,103.66974,3.903 1720,517.2706,206.82706,37.88324,82.82718,3.885 1720,315.3191,199.7774,31.049866,51.3647,3.881 1720,84.983406,311.36508,30.21415,62.78708,3.869 1720,249.86052,245.94104,19.714249,35.118713,3.84 1720,354.94147,212.02954,20.550903,34.286377,3.827 1720,190.57715,214.61746,28.138214,58.13913,3.821 1720,585.4739,-100.76505,76.38672,234.79822,3.796 1720,469.57242,213.77615,37.566864,91.61722,3.786 1720,289.35504,248.75427,20.496033,34.213257,3.75 1720,251.5436,-15.309588,16.591904,39.349453,3.747 1720,1.3888144,312.47174,22.346113,49.511932,3.674 1720,235.68637,-4.271165,17.904953,33.616413,3.643 1720,261.06592,247.89987,39.326202,105.33017,3.641 1720,259.19385,248.10617,19.485687,33.9144,3.633 1720,1.6615951,491.15173,20.265072,41.01001,3.597 1720,389.63596,212.6943,38.076874,86.0502,3.583 1720,422.52692,207.42801,36.018677,82.84793,3.562 1720,321.35846,216.1495,21.013062,29.882797,3.549 1720,330.6258,215.46533,19.592957,28.30658,3.543 1720,347.06262,-17.83549,17.986938,39.98146,3.538 1720,333.37695,201.49329,29.164734,47.58513,3.528 1720,-7.079238,294.40433,36.437473,101.41879,3.515 1720,313.17047,216.89395,20.618225,31.184738,3.509 1720,394.5504,222.8707,19.963867,35.31711,3.507 1720,416.92645,226.19318,21.880127,42.41751,3.5 1720,572.2677,212.02043,53.23163,145.94899,3.478 1720,230.35452,-34.73681,28.55423,68.823586,3.478 1720,-9.167577,102.28285,38.580814,105.298294,3.475 1720,453.89948,208.40326,36.29019,83.73511,3.474 1720,242.34422,235.64606,18.15596,34.041595,3.424 1720,227.55495,-4.396845,17.674469,33.68909,3.418 1720,379.30548,-15.294295,16.44458,37.930176,3.415 1720,236.74867,246.73732,30.980392,64.072525,3.382 1720,540.5663,214.32861,30.812378,60.037537,3.378 1721,118.28729,260.2402,31.323914,75.840454,18.871 1721,224.1049,246.6366,25.513245,47.244934,7.925 1721,393.55457,215.48802,21.615417,34.380142,5.987 1721,-11.928502,479.70663,30.3233,61.33133,5.946 1721,-6.324724,490.13718,19.208157,42.15219,5.882 1721,266.62402,249.4165,20.058685,31.120483,5.616 1721,-11.422913,-32.58606,29.665115,72.34396,5.494 1721,377.36606,217.39102,21.862,31.075394,5.437 1721,627.26416,-18.01316,17.1651,45.674694,5.43 1721,-6.1885414,-18.499163,18.13397,43.31672,5.384 1721,346.72928,205.01474,20.484894,35.263412,5.361 1721,485.86658,203.31038,37.134094,93.028336,5.304 1721,-17.24477,-62.713047,56.275227,146.19603,5.209 1721,613.06836,454.18176,39.805054,107.58533,5.199 1721,273.9209,248.87486,20.166504,32.53679,5.126 1721,239.30759,250.84602,23.5513,39.188614,5.013 1721,500.6754,203.63654,38.160217,95.76303,4.995 1721,598.01526,210.57259,36.461792,99.7271,4.985 1721,516.5853,211.85345,38.31299,99.70105,4.978 1721,611.69684,-48.62065,41.14154,102.63434,4.943 1721,-22.432253,400.02936,80.17746,176.92206,4.931 1721,536.3407,310.74933,143.80493,341.50323,4.886 1721,582.91925,410.38788,71.94928,178.21869,4.837 1721,-72.242386,266.39423,199.84955,461.3363,4.832 1721,470.90674,203.98618,36.448364,88.41809,4.819 1721,582.12384,212.30412,37.69928,95.619095,4.814 1721,614.05115,182.68723,35.328674,99.79703,4.785 1721,626.56665,487.97302,20.903992,45.815613,4.733 1721,233.33917,207.2243,20.151154,37.944168,4.718 1721,494.06317,227.3093,237.14075,514.7152,4.659 1721,466.16394,215.8597,21.81366,40.50334,4.414 1721,549.8201,201.37228,37.457153,94.152954,4.393 1721,370.25684,214.05733,21.169617,31.927032,4.308 1721,353.35303,200.52869,21.530548,39.597137,4.29 1721,490.1218,-178.7674,234.69278,419.52148,4.267 1721,-70.239525,-188.87791,210.80774,454.47925,4.262 1721,-37.09827,-127.60779,117.03894,277.9142,4.244 1721,455.45547,203.56676,36.22226,83.97398,4.227 1721,386.04468,220.99039,21.07785,31.738297,4.218 1721,595.8806,219.98486,28.618225,63.16327,4.201 1721,533.1052,202.10043,37.91992,96.677795,4.139 1721,259.00415,252.1349,20.284454,34.55815,4.096 1721,565.95013,211.3414,38.040283,94.65161,4.051 1721,397.5885,208.17863,28.40924,54.334274,4.032 1721,339.59885,207.15744,19.064117,32.257904,3.957 1721,-8.532872,7.0650215,38.383575,106.86513,3.907 1721,408.07968,217.55676,22.983582,34.9579,3.846 1721,586.2449,-103.42183,76.185486,235.78902,3.819 1721,219.44817,208.8864,19.804184,35.135513,3.818 1721,573.48975,216.93507,52.336304,146.84013,3.79 1721,144.13045,193.8755,22.290375,38.958008,3.763 1721,225.5101,201.632,20.963715,36.186386,3.713 1721,332.23575,215.00165,17.086945,29.373688,3.71 1721,250.50682,249.53493,20.563553,33.02156,3.708 1721,372.00098,209.17708,31.888641,49.7668,3.667 1721,467.58713,206.96783,59.458344,156.13336,3.666 1721,196.12381,206.60938,29.255539,54.652008,3.666 1721,219.03735,240.17502,23.78949,41.20999,3.665 1721,591.37585,210.463,57.38031,199.03358,3.647 1721,361.57373,205.62805,21.57779,37.572235,3.626 1721,240.16608,204.05473,20.706604,40.373367,3.606 1721,-6.1943574,330.74832,18.50695,39.966187,3.577 1722,216.75198,263.7267,23.561554,38.741547,21.967 1722,98.48382,272.24023,36.125114,76.754395,14.774 1722,257.9514,261.60416,21.995422,35.806213,7.151 1722,5.404395,331.51733,36.471138,102.59766,6.736 1722,-6.4001837,489.95032,18.981232,40.820557,6.357 1722,-12.11432,480.12738,30.460217,61.138733,6.222 1722,-11.525579,-32.23177,29.816727,71.984825,5.767 1722,496.0223,227.48822,23.838898,39.90387,5.67 1722,230.8919,262.21365,23.2928,35.964935,5.637 1722,627.20435,-17.630693,17.153809,45.15115,5.615 1722,623.0647,-34.663265,26.267212,74.12595,5.353 1722,-39.427258,363.14478,110.33823,275.0974,5.212 1722,265.35373,259.93567,21.716827,30.505249,5.19 1722,-6.229343,-18.316992,18.186522,42.643944,5.16 1722,626.4438,487.53455,21.266113,46.549988,5.114 1722,613.0565,453.37195,39.748657,109.1427,5.038 1722,-17.28167,-62.278698,56.41986,145.60687,5.01 1722,485.50403,222.41855,30.368103,56.30603,5.008 1722,583.14435,410.04373,71.62848,177.41763,4.919 1722,535.728,310.8542,144.77881,341.23907,4.862 1722,-72.52907,267.795,200.1665,459.99088,4.824 1722,493.9755,226.81345,236.93283,515.6478,4.715 1722,603.6135,-55.905266,52.894897,136.89525,4.689 1722,598.4286,191.82825,36.417908,81.67175,4.604 1722,-18.372665,435.81216,56.193794,140.50424,4.598 1722,128.26715,198.72137,20.997055,40.1109,4.517 1722,272.06952,259.6417,23.466705,40.339447,4.415 1722,609.2123,227.63449,23.122864,40.621674,4.401 1722,578.4858,196.35872,19.89093,38.294067,4.357 1722,-70.135,-189.26326,210.97604,455.27228,4.318 1722,220.77812,199.86996,26.68158,58.112915,4.297 1722,-36.946762,-126.78395,116.677635,277.40775,4.205 1722,250.92563,257.1479,20.707031,31.05716,4.075 1722,-5.6841116,358.58386,19.32193,47.99698,4.074 1722,461.32428,218.78531,30.371826,50.82251,4.055 1722,490.24594,-178.30176,234.62253,418.2092,4.037 1722,359.86737,202.75671,22.881409,37.952652,4.017 1722,-10.833278,329.9689,46.602722,139.78452,3.984 1722,482.24973,229.0782,21.636963,37.477463,3.951 1722,196.95848,208.58536,38.97931,82.8779,3.94 1722,585.8873,210.45891,19.336548,36.77066,3.883 1722,43.7322,296.80167,31.159248,64.76544,3.882 1722,108.83357,264.70462,36.511047,66.08707,3.856 1722,378.02515,211.67273,22.477295,38.56244,3.853 1722,501.83408,208.10713,36.467438,77.50499,3.826 1722,1.9971365,491.32712,19.400946,40.351166,3.824 1722,586.78033,-103.62625,75.59509,238.84236,3.8 1722,229.0548,234.79634,40.389053,74.524216,3.775 1722,245.43826,234.37108,39.11557,76.399155,3.752 1722,-8.599632,8.269241,38.599792,106.20892,3.744 1722,612.5887,185.40195,35.173767,92.01517,3.722 1722,411.8485,231.2054,16.956787,28.931473,3.693 1722,533.6629,221.47653,29.753357,57.18161,3.66 1722,434.9411,226.19968,20.140747,33.039886,3.649 1722,474.6539,230.41629,20.751373,35.207886,3.638 1722,470.22812,207.2119,37.323914,76.6479,3.625 1722,419.19907,228.73846,17.439575,31.393188,3.619 1722,181.14334,195.30838,37.460556,80.2684,3.611 1722,-11.075268,336.84253,31.081375,74.53766,3.588 1722,206.51813,205.20546,28.59961,53.37883,3.551 1722,211.51865,210.21075,40.746216,86.097534,3.483 1723,208.25243,271.22952,26.308304,51.297546,19.705 1723,100.37278,278.89917,33.662086,73.981995,14.189 1723,271.81873,273.23233,25.31726,42.024445,6.32 1723,223.38698,272.12646,23.194748,39.166992,6.101 1723,527.6551,236.1304,25.293274,40.42572,5.918 1723,627.1986,-17.738583,17.169922,45.447014,5.723 1723,-6.0055246,489.16528,18.671295,42.38611,5.666 1723,-6.252107,-18.700623,18.228695,43.6922,5.626 1723,622.9579,-34.78383,26.391174,74.51693,5.56 1723,-11.544665,-32.784836,29.903324,73.1072,5.536 1723,-12.023202,477.51575,30.05511,64.02295,5.416 1723,612.83496,455.1147,39.66516,106.34784,5.381 1723,531.116,230.09229,31.414856,60.238953,5.123 1723,583.109,411.6374,71.4942,176.57806,5.112 1723,-17.624725,-62.38228,56.648815,145.08484,4.964 1723,536.0108,310.0373,144.8471,341.7199,4.867 1723,626.4179,488.01566,20.861267,45.923065,4.78 1723,265.35272,272.858,22.155151,32.86795,4.718 1723,-72.29335,267.8327,199.77608,459.74908,4.711 1723,-40.25953,365.08667,110.8919,274.7185,4.71 1723,494.63498,226.8205,235.9523,515.49066,4.66 1723,603.53,-56.50631,53.125244,136.57202,4.582 1723,-18.050495,436.06345,55.80496,140.0773,4.581 1723,517.3656,228.53564,30.702515,61.447083,4.409 1723,485.0183,224.7633,30.91864,55.902557,4.244 1723,-36.832886,-127.01565,116.578674,277.63837,4.222 1723,256.94324,273.1949,23.061584,39.9765,4.181 1723,-70.04052,-188.94589,210.89404,454.78845,4.161 1723,490.24612,-177.35625,234.70175,417.26196,3.993 1723,308.01898,197.04063,31.896637,55.67462,3.962 1723,227.67159,265.7236,31.417496,49.03241,3.954 1723,246.2797,254.82297,36.94931,74.75751,3.891 1723,473.96103,233.08127,20.324677,33.967377,3.775 1723,586.5861,-103.38531,76.045166,237.35709,3.757 1723,-9.395378,8.607288,39.16291,106.02406,3.756 1723,340.8957,201.6954,30.611633,50.616302,3.735 1723,549.0542,229.97127,30.336548,62.117844,3.705 1723,480.60196,225.97745,20.539673,34.930145,3.675 1723,499.9583,226.72763,31.812012,56.464905,3.672 1723,110.72662,270.59134,33.295807,68.88205,3.644 1723,-6.6905904,326.2596,36.715935,103.63165,3.642 1723,362.4655,215.36156,20.014832,33.098022,3.622 1723,545.16614,240.3772,22.139893,41.37317,3.563 1723,573.12695,223.15262,28.412231,57.90515,3.558 1723,235.04572,232.01978,17.97763,30.773071,3.552 1723,594.9424,-46.759422,44.37329,100.215096,3.528 1723,213.19185,229.97966,37.96231,82.46629,3.509 1723,619.2154,-18.859848,17.297424,42.458195,3.465 1723,597.8422,187.3891,36.420044,92.73529,3.436 1723,2.5284445,-17.10472,17.250734,40.461346,3.432 1723,217.5988,267.2571,21.417587,37.362457,3.415 1723,469.02832,247.21252,17.107178,32.029175,3.408 1723,379.53772,178.27402,19.029541,43.152603,3.407 1723,-4.8540487,357.59857,17.435795,47.15851,3.406 1723,581.49286,208.54642,36.708374,81.829315,3.377 1723,181.27113,210.06969,37.940613,82.8271,3.374 1723,385.89462,190.47552,17.72409,38.42755,3.368 1723,473.95398,217.06937,20.652191,35.78656,3.36 1723,252.22043,239.71999,15.842255,28.2303,3.359 1723,410.51434,236.92928,20.046143,33.177322,3.346 1723,196.56964,211.10852,37.641006,85.526794,3.326 1723,454.06616,202.845,36.631622,74.55655,3.309 1723,2.0022523,490.71237,19.599062,40.618927,3.284 1723,379.83374,200.26132,19.131714,35.055634,3.254 1723,533.1182,202.30653,37.69409,75.19585,3.254 1723,250.11356,270.03253,22.347198,35.01361,3.23 1723,165.41968,208.70422,37.3844,81.901855,3.224 1724,197.90695,266.68427,27.882263,56.32379,31.752 1724,105.98068,262.90155,30.615448,66.83023,22.61 1724,50.674473,301.9208,32.947186,79.671234,8.21 1724,215.07721,269.4834,24.767014,43.576202,7.112 1724,-5.8825865,489.9627,18.464125,41.039307,6.125 1724,-8.735829,465.29974,37.567703,91.42566,5.623 1724,269.89908,271.11606,26.431305,42.329742,5.578 1724,627.1754,-18.176151,17.596619,45.853973,5.519 1724,-6.161973,-18.051418,18.142944,42.972275,5.472 1724,-11.473294,-32.80198,29.833958,73.040146,5.407 1724,621.7771,478.32413,28.983337,66.80246,5.241 1724,583.1995,412.20673,71.436646,175.90326,5.145 1724,-17.330664,-62.1833,56.636642,145.08046,5.108 1724,622.79736,-34.604794,26.86383,74.88563,5.105 1724,417.25732,223.95752,23.323883,34.60074,5.004 1724,265.45926,268.0843,22.050873,29.790161,4.973 1724,-22.219736,400.68683,80.22132,176.00165,4.893 1724,-72.76315,266.8239,200.41965,461.54565,4.888 1724,536.0337,310.12265,144.34357,342.4435,4.726 1724,603.3602,-56.47096,53.10132,137.17073,4.712 1724,494.1252,227.47293,236.6365,515.1847,4.521 1724,-9.208866,7.3787384,38.919113,105.338875,4.499 1724,199.62105,206.48051,27.786499,58.938126,4.304 1724,257.77338,266.90936,21.626465,29.64267,4.279 1724,-37.048954,-127.03268,116.50203,277.37402,4.262 1724,292.41644,196.8276,32.029846,55.88765,4.228 1724,485.3461,244.6828,16.32022,31.356262,4.218 1724,-69.80601,-188.551,210.51642,453.56165,4.144 1724,378.6938,206.18904,20.82544,35.23015,4.025 1724,249.66911,268.44455,22.692703,36.11557,3.947 1724,489.85315,-177.11113,234.38098,415.73785,3.84 1724,-1.6283047,307.96805,28.07586,63.168915,3.813 1724,328.78445,200.52213,22.780487,41.30713,3.812 1724,274.4299,261.37042,18.30893,29.117737,3.78 1724,-6.0487804,312.3587,20.132881,41.936493,3.777 1724,424.6474,231.16832,21.84674,33.180557,3.773 1724,228.6767,234.44797,40.480743,78.638245,3.693 1724,315.7651,189.74649,31.13095,54.839996,3.692 1724,212.75568,232.35828,39.410553,80.088135,3.642 1724,525.1435,226.59398,31.597473,50.79277,3.601 1724,118.449036,197.18811,28.158356,58.92694,3.579 1724,562.1919,-128.03001,115.13043,281.84918,3.565 1724,559.83746,230.67273,24.27185,38.50653,3.524 1724,561.7854,213.54233,34.263367,60.209564,3.515 1724,337.63947,202.41547,22.286072,38.69095,3.496 1724,569.4573,239.70526,20.34961,34.864258,3.495 1724,181.17958,195.17116,37.96988,83.54216,3.471 1724,613.1067,164.21516,35.34735,100.38393,3.424 1724,209.80441,216.38802,19.671204,42.03282,3.375 1724,618.7341,-19.54858,17.951477,43.580006,3.374 1724,357.35022,186.18213,31.405151,56.699097,3.373 1724,361.10034,205.69983,22.602722,35.397675,3.37 1724,547.9804,219.79085,31.91449,52.99803,3.346 1724,2.476319,-16.733654,17.41454,40.422688,3.317 1724,158.06848,184.13817,51.293533,108.87724,3.295 1724,195.66345,209.2829,40.00293,88.8645,3.291 1724,597.4535,194.92316,36.304993,87.49118,3.272 1725,191.31064,294.6186,24.184021,47.675964,19.487 1725,69.61263,305.64722,28.980568,69.70209,10.371 1725,271.14673,295.78424,24.838531,40.353485,6.85 1725,-6.0217323,489.451,18.384441,41.190674,6.627 1725,-11.629577,478.63928,29.457596,62.70819,6.104 1725,113.08594,261.92395,31.6456,72.666595,5.824 1725,202.21265,291.8119,30.731201,48.448578,5.812 1725,522.4561,249.99696,19.881775,30.36351,5.648 1725,626.59515,488.23877,20.504944,45.77417,5.429 1725,627.3565,-17.422098,17.19574,44.969276,5.354 1725,-11.333725,-32.896523,29.728184,73.174805,5.347 1725,622.81213,-34.224075,26.696838,74.0211,5.198 1725,443.1477,241.82324,19.916595,31.518616,5.165 1725,394.4627,220.836,20.789825,39.66812,5.15 1725,583.0919,412.01898,71.54608,176.26013,5.097 1725,-6.0321546,-18.49656,18.046125,43.31727,4.999 1725,612.70337,455.69324,39.606567,105.91351,4.967 1725,-17.733326,-61.997307,56.86911,143.51743,4.964 1725,-21.807367,402.1422,79.69914,175.24005,4.882 1725,260.56595,215.42229,29.341461,63.93071,4.85 1725,536.03204,309.9242,144.58539,341.62097,4.831 1725,228.65588,282.25064,31.340454,54.230743,4.795 1725,-73.02162,268.2758,200.54747,459.07065,4.747 1725,494.15363,227.78131,236.68793,514.5921,4.659 1725,603.3094,-56.55581,53.406555,136.75743,4.594 1725,265.22122,292.89117,22.425934,30.459686,4.569 1725,331.5893,208.71898,30.270569,53.304886,4.451 1725,377.0671,219.60797,21.928589,37.498627,4.369 1725,386.3142,220.54825,21.285248,37.408875,4.267 1725,-36.814163,-126.202965,116.613396,275.7556,4.254 1725,369.76382,214.31902,22.13095,41.173157,4.249 1725,-70.38856,-188.76234,211.08548,453.9839,4.237 1725,489.93353,224.282,21.252686,37.284836,4.086 1725,198.65135,219.27599,28.006119,61.33824,4.082 1725,483.76,238.05789,17.264343,32.152283,4.053 1725,213.20703,270.02274,38.57837,73.94458,3.95 1725,45.819984,314.00858,28.822105,60.569946,3.91 1725,612.9142,181.73138,36.20111,101.29028,3.884 1725,200.70267,304.00726,19.553513,38.264404,3.846 1725,2.465856,491.12772,19.022446,39.672577,3.83 1725,323.40857,216.2518,31.568176,59.0018,3.782 1725,411.58096,229.6471,17.719421,34.131104,3.735 1725,507.67346,254.97733,16.91919,31.634033,3.728 1725,271.352,229.08278,21.24936,46.894882,3.712 1725,490.4101,-175.38254,234.17944,413.62778,3.702 1725,129.03467,210.26775,20.662964,37.72989,3.657 1725,226.85019,247.29659,42.58072,83.72453,3.645 1725,523.98224,263.08514,16.760315,28.272156,3.629 1725,402.28253,222.5801,21.214752,40.696335,3.626 1725,-8.62784,69.653595,37.981537,109.00194,3.596 1725,174.80603,199.96646,52.554214,115.8103,3.56 1725,561.8981,-127.875534,115.85632,279.9516,3.53 1725,191.0079,208.89235,52.892014,124.67073,3.524 1725,212.0553,226.29031,40.24048,87.4848,3.521 1725,310.26425,214.51886,30.467987,52.9003,3.518 1725,-1.340946,300.71136,27.504318,67.450806,3.517 1725,619.0331,-18.778543,17.46045,42.30035,3.508 1725,274.77786,218.96236,31.509125,59.921127,3.498 1725,492.04596,246.88994,16.599945,33.144516,3.479 1725,147.45268,213.06644,40.56624,83.68588,3.478 1725,499.51627,244.75594,16.957977,33.319016,3.477 1725,202.21404,234.35283,19.791916,38.229874,3.466 1725,101.06884,255.24858,32.292244,73.34413,3.454 1725,516.0124,262.33853,17.546326,29.439178,3.446 1725,480.1523,224.35577,25.68576,50.803345,3.442 1725,321.5416,225.45895,22.763214,39.435974,3.433 1725,-4.6156735,343.7685,15.695013,38.494934,3.399 1725,494.39526,217.14981,26.690796,52.595795,3.391 1725,2.5512462,-16.42707,17.239546,39.99887,3.387 1726,180.01047,292.43658,29.97287,58.60611,19.951 1726,270.91678,300.3423,25.509277,44.644318,7.197 1726,197.27112,301.47797,22.917572,45.534546,7.035 1726,-5.979707,489.45685,18.627155,42.565125,6.075 1726,-11.960521,478.8866,30.205338,62.585876,5.82 1726,622.90796,-34.485947,26.503418,74.40927,5.646 1726,627.0544,-17.988228,17.420227,45.876167,5.642 1726,-11.4210205,-32.819405,29.823689,72.63706,5.534 1726,-6.083894,-18.446674,18.060452,43.08201,5.356 1726,228.40553,288.75128,31.04634,55.437744,5.331 1726,626.3876,488.01706,20.784302,46.181854,5.2 1726,583.1562,411.8421,71.49866,176.28821,5.11 1726,612.6446,455.04944,39.752014,106.53345,4.984 1726,212.59732,288.18475,32.953354,54.8815,4.941 1726,-17.797226,-61.662758,57.215137,141.75928,4.935 1726,536.1885,309.97327,144.38562,341.3161,4.877 1726,603.26544,-56.75802,53.521362,139.6258,4.877 1726,-73.31475,267.77725,201.13986,459.79123,4.784 1726,-21.73259,402.17383,79.604095,175.00378,4.782 1726,410.3642,219.82527,21.517792,36.559494,4.72 1726,120.66867,272.57028,22.183868,48.390656,4.714 1726,494.0053,228.51657,237.05731,514.13,4.708 1726,265.0539,296.63586,24.407349,34.390747,4.621 1726,474.77982,246.0555,17.547333,29.732468,4.363 1726,233.34064,290.4021,21.894669,31.91336,4.338 1726,-36.705265,-125.88096,116.42305,275.62296,4.292 1726,248.2233,296.45166,24.107513,31.592224,4.242 1726,-70.35097,-188.89558,210.86047,453.60492,4.192 1726,598.69714,224.43828,35.654785,83.42369,4.098 1726,613.74225,182.69096,34.75995,99.556595,4.095 1726,623.076,79.1957,24.86383,68.37214,4.002 1726,202.5279,294.73502,31.681107,52.519165,3.931 1726,614.9146,247.51231,24.02417,42.976944,3.913 1726,402.2841,220.09941,21.960724,34.358337,3.892 1726,329.80624,224.14296,21.059662,38.88878,3.835 1726,616.9671,87.19878,20.2641,52.032333,3.807 1726,-8.545676,69.95628,38.244705,106.143936,3.797 1726,-11.620217,296.469,29.467842,60.45981,3.764 1726,136.28683,209.33815,21.735764,35.906296,3.754 1726,325.79605,207.02945,31.189972,52.35898,3.754 1726,518.104,225.23393,37.21399,78.47179,3.742 1726,79.60222,281.99487,27.499413,65.62201,3.686 1726,561.7484,-128.50984,115.733215,280.00735,3.666 1726,56.35765,298.98346,28.0802,58.946503,3.62 1726,392.74133,219.54152,22.8638,34.06703,3.617 1726,489.82285,-175.67433,234.55142,415.44226,3.606 1726,533.57947,223.19043,36.699707,80.14349,3.581 1726,242.03056,290.78055,21.57515,30.38678,3.568 1726,2.7794397,291.08386,33.148407,58.67282,3.545 1726,340.04248,207.10884,31.721283,53.785812,3.498 1726,209.35825,291.23648,21.012161,31.503815,3.475 1726,337.52347,222.48405,21.854523,40.408554,3.472 1726,372.36487,201.5448,31.310608,56.96759,3.466 1726,5.3092966,467.64847,38.388702,95.31314,3.465 1726,618.95056,-19.177685,17.620361,43.459576,3.454 1726,2.140078,490.87784,19.218817,40.731415,3.451 1726,603.6963,129.50453,50.197754,137.75963,3.449 1726,549.4606,226.38187,37.902893,78.86014,3.434 1726,2.6079798,-16.67356,17.153275,39.867435,3.433 1726,582.918,230.72003,37.411377,76.65997,3.428 1726,561.73364,248.38922,21.916626,31.370056,3.386 1726,261.1639,218.19412,29.351288,60.05597,3.374 1726,308.5548,209.65063,30.12564,54.874603,3.366 1726,502.06143,224.71635,36.896942,78.54439,3.364 1726,590.6304,231.40292,57.948364,210.63431,3.359 1726,280.02148,224.30292,23.355225,44.004913,3.355 1726,367.68155,218.26825,24.33957,39.447998,3.344 1726,568.78204,243.25525,21.656555,30.94458,3.338 1726,-10.201912,200.1801,40.59196,104.36043,3.307 1727,275.26056,302.56628,32.494537,52.61566,7.524 1727,180.60251,300.48456,27.230713,62.5885,7.189 1727,-5.798274,488.87576,18.415895,42.12607,6.474 1727,505.8546,244.81126,19.185303,29.709152,6.093 1727,191.56827,309.18112,22.43097,48.834747,6.077 1727,442.15668,211.41142,21.538025,40.75464,6.063 1727,-11.387986,-32.771183,29.671871,72.87162,5.609 1727,627.1527,-17.576536,17.287476,45.263393,5.598 1727,-5.1020455,283.76776,17.400438,36.882233,5.552 1727,622.959,-34.42389,26.65149,74.456665,5.549 1727,-11.305251,477.75995,28.938984,63.734375,5.536 1727,626.545,488.41925,20.715088,45.608826,5.333 1727,-6.1079984,-18.458952,18.027878,43.078316,5.251 1727,583.1472,411.93854,71.49719,176.05334,5.093 1727,612.7055,454.29343,39.758728,107.72061,5.057 1727,603.42554,-56.453598,53.145813,139.59496,5.042 1727,-17.596992,-61.711857,56.921566,142.3683,5.025 1727,273.1238,305.0663,24.321625,35.347626,4.996 1727,408.61407,212.64333,23.513794,39.967148,4.938 1727,340.1931,200.76338,31.848663,54.22592,4.896 1727,-73.188736,266.745,201.29323,461.30664,4.895 1727,536.3762,310.04163,143.7934,342.04425,4.784 1727,-21.889874,402.0296,79.50247,175.3822,4.776 1727,493.73856,227.65408,237.20016,514.303,4.588 1727,228.05588,296.3841,31.322845,56.825836,4.486 1727,425.38702,212.73878,22.968628,38.45172,4.449 1727,234.057,298.2823,21.208633,32.075348,4.415 1727,134.27974,261.34805,22.45578,45.38379,4.41 1727,214.94586,298.75967,31.283401,59.387238,4.38 1727,-36.609024,-126.88847,116.216606,276.30493,4.317 1727,347.36862,209.06602,33.46103,57.54857,4.291 1727,566.0418,238.23978,28.653503,60.92874,4.227 1727,219.01447,245.30855,18.253464,27.451767,4.208 1727,-70.41152,-188.36372,210.7124,453.15198,4.202 1727,360.35498,208.14983,24.095886,43.11699,4.197 1727,599.7658,190.44907,34.10681,89.780975,4.131 1727,182.1311,217.07562,29.696075,63.69101,4.053 1727,426.23907,143.4896,16.325165,39.699844,3.987 1727,-11.012324,271.27942,29.503063,62.306793,3.973 1727,141.4981,216.55669,29.521637,62.744797,3.92 1727,204.2615,302.51385,30.36351,56.102264,3.867 1727,242.221,294.02698,20.202652,26.508911,3.849 1727,288.98358,291.68405,34.726105,62.409332,3.82 1727,-7.969537,71.20676,37.760757,105.53735,3.817 1727,561.6697,-128.64563,115.05054,281.09433,3.801 1727,488.96753,-176.40369,235.73975,416.77835,3.77 1727,393.61157,211.78342,22.168427,37.390244,3.741 1727,324.93463,200.25764,32.489685,56.922165,3.714 1727,280.06137,300.33008,22.791748,32.711975,3.708 1727,2.0971012,279.8946,19.645037,37.729645,3.701 1727,250.13013,294.46082,19.76883,26.536926,3.678 1727,226.33742,297.42758,21.038666,33.313354,3.667 1727,414.0718,204.67772,27.493408,52.37819,3.658 1727,198.88008,306.60794,22.265778,44.51535,3.625 1727,452.74567,180.54474,38.866608,80.8949,3.615 1727,2.17808,489.45715,19.081472,41.122986,3.591 1727,619.23987,-18.022333,17.14563,41.982807,3.581 1727,261.28674,296.9372,32.155975,50.086487,3.567 1727,513.6097,243.59117,19.40741,30.207077,3.562 1727,256.71198,299.17484,21.67517,29.233429,3.541 1727,252.06393,304.20813,30.996368,48.580444,3.536 1727,622.5658,67.00986,25.557495,73.9021,3.515 1727,437.31857,204.09552,38.75534,76.11612,3.473 1727,429.74484,205.75406,28.848297,51.16913,3.453 1727,458.8365,221.46866,17.992981,32.517822,3.444 1727,-6.1720934,297.14374,17.44143,35.065186,3.44 1727,186.61058,248.09047,18.92656,35.22975,3.439 1728,449.32617,215.71382,22.103027,38.670868,6.623 1728,180.7562,309.4109,29.306122,68.24585,6.595 1728,-6.300673,489.22345,19.108849,43.082275,6.386 1728,466.33908,216.66153,20.514832,41.935333,6.158 1728,-11.564428,478.51462,29.494793,62.95883,5.937 1728,-11.3611145,-32.44151,29.57592,72.85801,5.836 1728,627.1665,-17.793629,17.429749,45.654808,5.765 1728,-6.2708673,-18.714592,18.30672,43.496464,5.697 1728,195.52853,314.2317,28.736313,58.77118,5.396 1728,417.58667,211.80705,21.909485,38.038162,5.328 1728,622.9811,-34.694923,26.517334,74.42698,5.323 1728,536.57825,248.09576,21.524414,33.0437,5.258 1728,283.55118,312.29605,31.771332,57.470795,5.161 1728,626.50836,488.10983,20.54187,46.085724,5.059 1728,612.7298,455.1913,39.31073,106.32535,5.045 1728,-17.575552,-61.860767,56.860786,142.19658,5.041 1728,582.96643,411.93048,71.68817,176.32233,4.998 1728,603.64014,-55.95063,52.63275,138.43864,4.897 1728,536.1762,309.83514,144.16107,341.74774,4.88 1728,-72.7381,266.76398,200.61075,461.07013,4.816 1728,602.33234,226.12283,20.887024,31.818085,4.809 1728,457.77612,216.72693,21.959015,39.983124,4.777 1728,-21.886143,402.32565,79.66257,175.05124,4.777 1728,361.07275,214.6908,21.64273,34.656128,4.727 1728,617.95135,237.97015,19.788635,44.028687,4.622 1728,599.3052,219.9648,34.356873,86.830185,4.57 1728,493.86227,227.55344,237.34549,514.37415,4.569 1728,282.15308,214.17949,30.40326,63.856644,4.562 1728,424.48956,215.65396,22.237396,37.228226,4.454 1728,-36.581985,-125.89424,116.440796,275.59836,4.316 1728,529.19354,245.63252,20.73706,30.881973,4.086 1728,561.8426,-128.24014,114.20044,280.17407,4.083 1728,-70.23303,-188.46696,210.6214,453.37408,4.036 1728,605.3326,215.47333,27.859802,54.049683,4.023 1728,489.53995,-177.85532,234.96628,419.03824,3.953 1728,362.4524,227.9767,20.808105,32.284958,3.953 1728,440.59705,214.94983,22.548584,37.605713,3.948 1728,345.34735,190.26012,58.778748,95.04579,3.944 1728,339.0964,215.37614,44.098816,66.915115,3.917 1728,260.271,314.04645,31.592133,57.54181,3.916 1728,147.18494,226.29039,30.986069,74.10411,3.89 1728,613.85645,182.87033,34.510742,99.704926,3.88 1728,1.9762212,489.9488,19.450401,42.312134,3.855 1728,234.97543,266.28503,18.036133,29.53537,3.833 1728,339.86566,204.0639,32.750244,53.03308,3.789 1728,-4.600167,205.01733,18.076546,39.823593,3.773 1728,210.12003,263.3374,19.34134,31.33374,3.758 1728,616.70374,220.12778,20.141296,41.889618,3.758 1728,433.18927,220.00398,20.802246,34.6382,3.735 1728,-7.7581587,72.55528,37.55903,103.42888,3.731 1728,271.4147,212.246,27.706573,65.55896,3.719 1728,284.29636,208.89511,16.088684,28.332901,3.683 1728,158.63417,197.94156,52.76921,122.46817,3.606 1728,229.13123,309.74982,29.863861,62.9924,3.593 1728,209.98532,308.55533,19.762482,30.61435,3.577 1728,368.28732,202.54333,45.50482,65.65698,3.552 1728,226.5731,265.89056,19.136703,29.670227,3.497 1728,165.72449,312.07657,32.952057,68.47803,3.491 1728,-5.6414356,279.9448,17.349205,39.685333,3.489 1728,2.2183692,-16.911188,17.642761,40.42673,3.481 1728,242.46371,309.00586,19.782928,30.12616,3.463 1728,305.58978,222.06808,21.212433,36.94626,3.453 1728,474.49268,226.99524,17.650635,33.742188,3.448 1728,-4.829811,250.95993,16.853378,41.482483,3.421 1728,619.1386,-19.278656,17.375244,43.329815,3.419 1728,583.0681,213.38037,36.680176,79.48865,3.406 1728,606.3581,202.02779,47.7619,125.14363,3.369 1728,1.6724014,-39.75127,43.897324,99.08514,3.355 1728,353.46298,219.84215,22.302551,34.3118,3.34 1728,591.4925,211.24673,57.13141,195.4873,3.334 1728,218.59271,265.30032,19.165985,29.84439,3.332 1729,291.05875,320.03427,31.824982,58.32544,6.181 1729,188.42197,317.57407,28.839294,65.69125,5.926 1729,-11.326885,-32.424026,29.596205,72.12894,5.764 1729,-6.1976295,-18.952192,18.294773,43.46801,5.751 1729,-5.983851,489.13208,18.56606,42.655334,5.64 1729,627.32,-18.196386,17.322266,45.756966,5.509 1729,-11.564909,477.68823,29.825048,63.52661,5.416 1729,561.44275,256.8755,21.219116,33.336487,5.349 1729,603.434,-55.668068,52.60138,136.58655,5.346 1729,623.0661,-34.521957,26.456482,74.152504,5.188 1729,612.7776,454.81363,39.652466,106.807465,5.109 1729,-17.7613,-62.54586,56.748894,143.85672,5.061 1729,583.06104,411.67426,71.67432,176.78973,5.018 1729,-72.87293,266.45386,200.76196,461.73767,4.865 1729,536.12274,310.52362,143.81317,340.90216,4.845 1729,626.46783,488.27023,20.801208,46.041656,4.767 1729,-40.82192,365.29083,111.44595,276.80682,4.724 1729,493.4345,227.24927,237.84918,514.668,4.627 1729,203.27156,319.63248,27.767029,58.651978,4.543 1729,441.27597,220.55554,22.238861,37.561066,4.479 1729,173.79297,318.65732,31.843338,67.60541,4.446 1729,-17.796928,435.0175,55.507782,141.51633,4.398 1729,585.5919,-98.9023,75.47125,233.78326,4.278 1729,-36.917603,-127.17305,117.238304,277.81403,4.271 1729,-4.771248,236.9935,17.709015,39.00049,4.2 1729,-5.888709,201.66002,18.777687,42.981064,4.16 1729,-10.576106,197.98743,29.08794,65.84973,4.118 1729,-5.278805,218.98645,18.058186,39.82849,4.086 1729,0.073286295,260.16107,33.89427,77.02649,4.002 1729,581.8745,232.25516,38.924927,79.72272,3.963 1729,489.27615,-177.22267,235.35458,419.22983,3.962 1729,-69.9579,-188.41196,210.67844,453.43143,3.944 1729,465.8221,219.82918,21.880524,40.316147,3.929 1729,598.17786,224.73091,36.20398,88.02452,3.927 1729,368.44864,218.43571,22.947723,34.774323,3.911 1729,613.6914,180.67769,35.374146,102.32918,3.865 1729,370.1486,214.20715,43.880493,67.935455,3.783 1729,495.40985,220.6366,23.440796,39.311554,3.773 1729,595.3264,-46.072,43.313354,101.65491,3.749 1729,452.49774,212.80762,29.817474,52.655212,3.73 1729,347.40552,208.41301,33.86151,53.314285,3.69 1729,0.10074377,207.93018,27.998167,66.71564,3.67 1729,344.0647,228.8677,22.89325,34.398712,3.646 1729,322.11353,216.15128,43.97824,82.085205,3.633 1729,2.191155,239.2369,20.791958,38.394516,3.603 1729,-6.223142,137.339,18.564844,42.71556,3.573 1729,-4.098186,250.47247,18.20653,40.55121,3.522 1729,375.191,213.26709,22.149963,34.446564,3.476 1729,2.2295606,-17.081715,17.661871,40.56387,3.467 1729,144.18552,244.89467,30.762665,68.45549,3.458 1729,-7.9351416,71.54384,37.921837,105.20186,3.454 1729,306.46722,215.14388,33.82193,53.99373,3.422 1729,313.44754,230.63925,21.540985,36.674164,3.419 1729,361.3678,228.43869,21.954498,31.587524,3.418 1729,172.77164,222.10806,28.56215,62.478455,3.409 1729,377.43475,182.44482,57.85132,99.78235,3.407 1729,300.1833,272.44147,17.05246,32.413635,3.405 1729,457.8056,226.83324,19.387238,34.385574,3.395 1729,354.03244,219.07236,43.50116,74.66043,3.395 1729,376.81882,227.92615,20.9505,29.373383,3.381 1729,297.3595,222.10513,33.352966,61.369232,3.359 1729,449.61432,226.73148,19.6203,33.99411,3.35 1729,619.0764,-19.64644,17.382874,43.576267,3.342 1729,-15.130386,153.7392,49.426075,139.71722,3.287 1729,227.19519,264.80048,18.738525,32.666687,3.285 1729,564.5378,231.65831,40.252686,78.2563,3.244 1729,590.637,212.21472,57.74933,194.32837,3.237 1729,284.7632,490.95898,31.37616,51.772095,3.227 1729,577.5539,257.25168,20.02417,32.041992,3.195 1729,199.05241,331.88394,22.134842,48.129425,3.185 1729,2.1412563,490.21167,19.228466,41.5036,3.181 1729,158.34598,211.1636,52.269104,118.60831,3.177 1730,602.16907,271.2227,20.219238,33.696594,6.64 1730,603.30774,-55.72359,52.739014,137.98247,6.398 1730,-11.436925,-32.900158,29.824371,72.76701,5.939 1730,-6.186812,490.04886,18.657225,41.53604,5.851 1730,627.1293,-18.176174,17.508728,46.07336,5.813 1730,-6.0271215,-18.267328,18.041563,42.748077,5.639 1730,-11.915612,479.46475,29.667885,61.59781,5.45 1730,-8.907044,464.9482,37.622036,92.13309,5.405 1730,617.0747,268.03122,18.95459,37.491272,5.368 1730,386.23508,225.35545,21.521759,33.928238,5.364 1730,622.9059,-34.678066,26.610474,74.65379,5.344 1730,612.75995,455.5166,39.81482,106.352905,5.174 1730,492.9933,223.10085,29.283447,54.329453,5.091 1730,298.3649,339.12085,33.700256,60.383575,5.082 1730,594.9311,268.16083,20.709839,31.649445,5.05 1730,583.04675,411.73978,71.66211,176.78592,4.984 1730,-17.774475,-61.537254,57.071114,142.03003,4.963 1730,626.5871,488.44318,20.744568,45.847595,4.942 1730,-72.49646,267.07513,200.37576,461.04034,4.824 1730,536.38916,310.4447,143.55865,340.8329,4.802 1730,504.7028,230.72842,23.754974,44.89151,4.758 1730,-41.06041,365.29474,111.94823,275.75812,4.748 1730,-6.017973,293.61127,18.278666,41.430206,4.676 1730,493.79544,228.37442,237.27206,513.68884,4.642 1730,462.3712,226.57883,25.864655,41.169983,4.62 1730,-18.065678,435.84656,55.677197,140.53198,4.501 1730,609.1766,270.0588,20.517395,32.07361,4.389 1730,614.013,215.4596,34.999817,96.9068,4.353 1730,610.25397,44.352165,28.549316,76.140625,4.348 1730,585.4863,-99.362854,75.70538,235.91058,4.282 1730,-36.724773,-125.99767,117.35278,276.14526,4.276 1730,595.1331,-44.919064,43.436462,101.6824,4.211 1730,181.39792,341.27307,27.993927,68.58609,4.159 1730,627.1177,265.67303,18.180115,41.929565,4.15 1730,181.15556,238.70085,28.850159,72.97612,4.111 1730,598.6007,226.23407,37.11743,84.64081,4.102 1730,472.68707,233.06953,22.66861,39.649155,4.087 1730,175.3169,221.31378,49.286804,128.05267,4.013 1730,482.0192,231.77875,22.424286,42.29828,3.999 1730,199.91971,356.0689,22.251099,47.814667,3.993 1730,489.80194,-177.89548,235.50354,420.7397,3.991 1730,-70.163284,-188.85112,210.72743,454.19836,3.978 1730,-10.83153,260.37625,28.480358,64.58722,3.829 1730,-5.2988415,265.63452,17.437881,40.48886,3.803 1730,620.91437,37.093174,28.61383,71.731186,3.78 1730,-5.708079,219.34293,16.963263,37.75714,3.776 1730,570.1966,196.55125,22.36267,42.854553,3.744 1730,2.4512668,-16.521864,17.329092,39.765575,3.731 1730,17.725965,303.5475,36.603683,85.56369,3.706 1730,521.7246,242.7833,20.357971,35.83777,3.646 1730,549.2581,219.29854,38.901245,82.66661,3.595 1730,311.5377,246.97253,22.217468,48.835815,3.594 1730,241.96394,297.6887,19.748184,31.629608,3.572 1730,354.76712,219.0513,33.56662,53.195007,3.559 1730,-8.023186,74.02183,37.772305,101.85754,3.546 1730,187.86116,219.44142,28.390991,67.251144,3.497 1730,369.73975,232.34799,44.1037,77.1922,3.487 1730,555.04004,273.1927,17.813293,26.414062,3.445 1730,314.08603,231.35669,33.148407,55.11444,3.437 1730,613.50354,160.81902,35.594482,107.395096,3.435 1730,556.09143,263.74002,16.994202,25.75708,3.423 1730,353.9545,230.22887,43.721954,66.6028,3.418 1730,599.115,263.09036,35.399414,85.44064,3.401 1730,393.56818,201.10477,58.11139,96.674225,3.392 1730,296.8897,230.16911,33.4451,70.26332,3.389 1730,618.9833,-19.61876,17.49939,44.247757,3.37 1730,2.1059918,491.41626,19.51929,40.78485,3.341 1730,582.416,228.60115,38.26062,81.79198,3.338 1730,250.21307,299.22238,19.72342,31.740723,3.327 1730,602.94684,57.090965,52.055298,150.29227,3.313 1730,238.76654,303.04486,72.90631,180.76389,3.302 1731,242.52037,282.805,20.449356,31.327179,7.688 1731,627.10486,-17.196217,17.414429,44.967148,6.612 1731,505.52136,218.76727,22.671204,43.117065,6.55 1731,613.94507,11.795769,27.143433,83.739685,6.241 1731,-11.744425,478.58334,29.97732,63.028473,5.991 1731,602.27,-54.625656,53.598877,137.08646,5.938 1731,-6.1673393,489.51144,18.719803,42.00003,5.917 1731,623.1997,-34.282207,26.171143,76.29461,5.89 1731,200.85898,364.98602,21.940018,44.839203,5.567 1731,-11.380057,-32.865402,29.73449,73.4635,5.18 1731,612.6806,455.509,39.833557,106.04843,5.129 1731,-6.2080946,-18.838919,18.181885,43.66827,5.121 1731,583.0724,412.22342,71.604004,176.01389,5.109 1731,314.13763,341.9955,33.348175,64.90167,5.049 1731,626.6472,488.80222,20.638184,45.22525,5.049 1731,48.964165,280.40744,34.492706,77.56134,4.947 1731,-72.8328,266.02228,200.67026,461.80988,4.9 1731,-18.005764,-63.653347,56.94981,146.42894,4.878 1731,-21.643585,402.51547,79.55037,175.54312,4.857 1731,536.0427,310.91968,143.96344,341.33246,4.762 1731,465.85208,211.11082,22.87442,40.939026,4.718 1731,585.7987,-99.47586,75.26141,234.06126,4.589 1731,493.4499,227.66821,237.63373,514.1383,4.574 1731,497.12,216.00078,22.849548,44.67183,4.545 1731,594.6142,-42.379158,43.877136,99.62792,4.496 1731,233.99908,285.63458,21.795166,33.09204,4.411 1731,485.02048,213.27995,27.975128,56.116104,4.402 1731,-36.790787,-126.846954,117.21347,277.59723,4.265 1731,417.72397,-12.153822,17.493378,34.314384,4.245 1731,292.88028,491.02057,31.151703,53.124878,4.194 1731,-8.456253,68.94415,38.170006,106.27222,4.192 1731,-15.568514,236.8379,50.10621,139.14207,4.179 1731,472.451,217.54358,23.353119,43.618225,4.109 1731,489.44702,-178.02405,235.78424,420.3234,4.106 1731,242.24481,267.9898,19.994354,31.40747,4.087 1731,-5.4711313,246.3435,17.59371,44.181885,4.077 1731,-5.8681016,281.12222,17.888288,37.92386,4.047 1731,219.79355,263.56796,32.122192,55.13333,4.031 1731,521.03424,218.05923,21.898376,43.987885,3.959 1731,249.837,267.9685,19.828278,29.962738,3.958 1731,425.94327,-13.576728,17.09964,35.594635,3.934 1731,189.73282,350.06827,28.615295,63.38852,3.858 1731,181.6832,245.46268,28.968582,68.88461,3.821 1731,-70.32248,-187.91136,210.96103,452.11914,3.799 1731,249.95216,295.7893,19.262497,29.815887,3.727 1731,619.14215,-17.547775,17.109741,42.435192,3.71 1731,363.29483,206.09198,33.623505,56.387634,3.701 1731,189.46255,227.86182,26.798279,68.31067,3.7 1731,418.338,1.2688074,18.799438,30.008137,3.695 1731,-5.785514,298.39877,17.607193,38.40674,3.677 1731,302.7362,354.40607,32.90802,56.003815,3.669 1731,-5.7335467,324.33282,20.519054,50.11963,3.662 1731,225.08856,283.96533,22.766678,35.97879,3.599 1731,395.5066,207.84647,31.089905,57.55652,3.585 1731,618.73663,254.74538,19.969482,40.432144,3.57 1731,378.90558,182.75092,56.770447,99.739624,3.566 1731,514.739,223.32611,19.71521,39.786774,3.55 1731,163.55089,250.76797,29.597778,61.73993,3.55 1731,535.58374,220.33241,22.876831,38.46483,3.543 1731,193.45619,253.2467,43.679153,94.872375,3.543 1731,277.31216,490.93665,31.232574,52.541626,3.54 1731,1.9256121,490.42404,19.49877,41.336517,3.498 1731,224.81549,272.9096,45.169067,89.097565,3.498 1731,-7.5264,218.50073,37.255936,95.36249,3.479 1731,434.7324,-13.280283,16.704315,35.11701,3.471 1731,-10.088824,291.98767,38.811222,99.95859,3.456 1731,479.61917,213.10628,24.189972,42.357376,3.436 1731,3.864175,242.03226,39.084534,93.850525,3.429 1731,410.63397,175.84045,56.426422,105.98804,3.425 1731,523.86346,196.19832,28.250305,63.603653,3.411 1731,308.4193,491.09207,31.045776,52.163788,3.399 1731,243.71158,270.13373,28.934357,46.433136,3.389 1731,-1.3714242,259.8299,53.038944,142.15262,3.389 1731,173.83344,224.36002,51.306213,127.54886,3.364 1731,23.73535,267.02484,25.07044,40.782166,3.363 1732,626.9883,-17.328358,17.219543,45.432755,7.022 1732,171.13995,264.71558,32.417038,60.40039,6.197 1732,188.0967,264.6928,30.394852,58.319183,6.184 1732,610.9261,-45.479454,41.20819,98.67022,5.659 1732,-8.794299,464.15927,37.547028,92.94925,5.569 1732,-6.036598,489.65094,18.386986,41.467896,5.535 1732,-11.317354,-32.474697,29.757088,72.979065,5.506 1732,206.38466,372.2054,21.68544,44.332703,5.341 1732,-6.140402,-18.56699,18.245836,43.727673,5.241 1732,583.05206,412.11508,71.62744,176.254,5.194 1732,0.6625807,310.26395,29.982317,83.08145,5.157 1732,612.5542,455.51904,39.83905,106.31531,5.069 1732,234.2514,294.93884,20.21756,31.70929,5.041 1732,626.59265,488.49835,20.783325,45.553284,5.025 1732,-40.619904,365.3702,110.97492,275.9462,4.953 1732,-18.279846,-64.03303,57.1994,147.10236,4.949 1732,535.7936,310.23645,144.52393,341.43042,4.853 1732,-5.269714,299.6965,18.326937,42.809723,4.852 1732,-72.3456,268.14352,199.6776,459.81985,4.847 1732,290.32947,361.7633,19.220581,24.533386,4.798 1732,292.62216,491.52698,31.663452,52.62268,4.737 1732,322.182,352.0459,32.71588,62.987152,4.716 1732,520.1554,221.47287,23.355469,43.52765,4.672 1732,493.69922,227.92407,237.38019,513.6772,4.666 1732,619.06104,-17.024723,17.311707,43.147198,4.62 1732,614.4503,10.457684,26.413574,82.594284,4.554 1732,585.86536,-99.3925,75.34949,233.003,4.426 1732,621.9247,3.6600647,26.322998,74.37654,4.411 1732,-17.541933,434.19693,54.866913,142.17734,4.371 1732,370.09955,209.80208,34.516968,58.1223,4.35 1732,528.6855,219.76678,23.09784,42.494995,4.297 1732,-8.297149,69.11038,37.84738,107.16446,4.286 1732,401.4876,224.78526,22.525208,36.969376,4.257 1732,204.70451,242.64198,53.73265,121.16466,4.198 1732,597.83594,191.9178,36.87274,87.41472,4.187 1732,-6.2627892,212.33896,19.500128,48.49063,4.156 1732,310.76447,355.57245,31.15448,55.73416,4.151 1732,-9.422341,287.99136,28.802212,68.68356,4.149 1732,-36.94693,-126.83341,117.82941,278.27905,4.131 1732,308.38138,490.71265,31.843079,52.24292,4.127 1732,490.08743,-178.62494,234.72104,421.11295,4.078 1732,614.2161,181.44858,34.9339,97.4028,4.061 1732,202.2038,242.82007,19.431946,45.688293,4.025 1732,392.01672,225.72432,24.134247,38.107162,3.957 1732,-1.8888521,195.5654,28.406612,70.33035,3.956 1732,181.52621,356.40582,28.074081,67.96326,3.785 1732,-9.626955,326.60614,31.882757,77.41449,3.708 1732,607.5656,199.40596,48.629578,126.04784,3.7 1732,-70.344765,-187.60619,210.92169,451.7345,3.692 1732,-5.444808,193.2719,19.664154,44.219864,3.685 1732,426.57443,218.41315,32.017242,60.136505,3.672 1732,404.24,219.5633,30.727356,56.180176,3.664 1732,536.7154,211.9288,21.404297,41.410538,3.658 1732,581.0502,240.43306,38.700256,91.79909,3.63 1732,198.1611,251.40245,28.335617,66.48534,3.621 1732,1.3929915,302.55774,20.899815,43.025208,3.611 1732,407.80603,212.99513,21.305939,37.583023,3.604 1732,158.32025,259.8448,32.045975,61.024506,3.601 1732,2.4334102,-16.790274,17.512934,40.518852,3.6 1732,611.0062,-14.770687,16.748718,39.522472,3.576 1732,612.5439,41.847847,38.316956,112.10815,3.566 1732,181.06352,246.71852,29.16771,66.07283,3.563 1732,291.78632,275.38104,33.27231,69.44733,3.557 1732,451.13553,-13.509607,16.510803,35.20417,3.547 1732,242.09183,295.32098,19.959106,30.865051,3.531 1732,524.7074,202.53389,51.434937,100.42766,3.523 1732,581.6642,214.44603,37.117798,77.925,3.519 1732,593.64624,239.63829,20.248901,36.88411,3.517 1732,249.52316,296.33,19.625305,29.18573,3.516 1732,-8.609656,215.14319,38.17814,101.28491,3.51 1732,554.31067,257.5983,19.017883,28.807129,3.49 1732,597.37067,239.69778,38.051025,95.40527,3.486 1732,459.0021,-0.0020627975,18.06894,31.615242,3.448 1732,-5.758255,284.65213,17.569757,38.85501,3.447 1733,202.30542,380.2819,20.529434,45.217346,7.392 1733,627.0083,-16.898922,17.252869,45.67377,7.184 1733,411.14438,219.41302,18.131073,32.976303,7.042 1733,622.6855,-33.030285,26.700745,75.88584,5.853 1733,-5.804648,489.9658,18.129654,40.8602,5.769 1733,-8.586876,464.6403,37.388435,92.66763,5.647 1733,602.69434,-55.610344,53.022278,137.80426,5.5 1733,-11.44081,-32.63395,29.76107,72.878815,5.37 1733,-6.1321964,-18.52183,18.023746,43.20269,5.251 1733,612.6972,455.13715,39.800964,106.86835,5.124 1733,583.0444,411.69064,71.72662,176.63773,5.067 1733,64.63089,282.76578,35.224113,77.5795,5.036 1733,371.13837,213.02869,32.674347,58.118378,5.01 1733,180.00542,263.96747,31.330887,60.546814,5.0 1733,-17.897728,-64.19802,56.86011,147.52768,4.987 1733,-21.957733,401.60162,79.585075,176.29254,4.947 1733,526.8509,225.00687,25.885864,57.953766,4.94 1733,535.8094,310.57733,144.7492,341.18994,4.85 1733,626.7611,488.3354,20.425476,45.469116,4.85 1733,242.84773,293.7199,19.656876,32.978302,4.775 1733,464.078,235.86407,23.855103,35.488983,4.767 1733,-72.39111,267.21326,199.46591,460.10974,4.726 1733,-2.1290815,315.6982,28.141083,83.71777,4.69 1733,493.925,227.8324,236.77454,513.166,4.658 1733,558.12726,200.19753,28.329529,62.64415,4.644 1733,410.38922,230.18462,20.523987,39.79158,4.643 1733,300.2731,492.1525,31.924835,51.63449,4.623 1733,163.64607,262.59714,31.360947,63.310425,4.592 1733,290.8917,368.1675,18.53189,25.451416,4.486 1733,19.059868,221.5744,41.484894,99.93536,4.37 1733,626.60834,2.2330036,18.410278,46.373207,4.361 1733,585.84845,-101.32002,75.72626,236.46289,4.344 1733,-4.9364624,194.87665,17.755388,44.196396,4.326 1733,187.12389,240.74388,55.14775,119.27614,4.274 1733,-5.650747,214.47884,18.284771,46.07878,4.269 1733,185.53032,382.9557,19.284973,42.4151,4.247 1733,614.54126,-17.400764,27.432251,71.007095,4.242 1733,491.5335,-14.732931,16.106934,35.862698,4.241 1733,467.9097,213.37245,30.808594,61.347244,4.228 1733,619.2232,-16.911133,16.960144,42.494915,4.168 1733,-12.790579,184.33899,47.2472,142.04333,4.155 1733,-37.08112,-126.41617,117.535995,277.61212,4.138 1733,329.667,221.87576,31.96283,60.413513,4.115 1733,621.50867,24.151134,27.204956,77.79048,4.105 1733,499.42764,-13.642586,16.026398,35.408367,4.07 1733,483.6593,-14.233173,16.08847,34.593327,4.068 1733,536.4059,229.71921,20.282349,41.605255,4.066 1733,247.7858,277.77008,22.147858,36.84839,4.064 1733,490.18936,-178.42142,235.14542,420.05392,4.034 1733,323.09375,198.29251,16.994904,29.526352,4.032 1733,1.7893922,196.79277,20.497084,45.7856,3.994 1733,190.24344,252.43631,26.775833,64.547485,3.973 1733,475.51804,-14.990062,16.453674,34.899612,3.965 1733,581.24304,192.62189,36.9881,81.89563,3.94 1733,6.342697,208.44922,38.76084,107.32495,3.915 1733,-8.382692,70.11995,37.977654,105.87746,3.906 1733,323.3053,354.70096,32.63434,57.485535,3.883 1733,284.68442,491.535,32.13034,51.949615,3.864 1733,179.53314,364.60522,28.906311,66.374176,3.796 1733,594.41064,-43.117844,44.50708,97.98646,3.795 1733,-70.561745,-188.23038,211.06976,452.29788,3.787 1733,-4.922982,300.12854,17.32213,40.39319,3.776 1733,502.65103,214.2904,28.783234,58.55597,3.746 1733,483.49536,207.03513,32.09796,58.177063,3.741 1733,190.45435,225.76985,28.511444,68.858505,3.699 1733,573.8347,191.18741,29.819519,64.36153,3.678 1733,481.20407,213.54292,22.184784,38.724533,3.64 1733,235.00548,293.40048,20.30632,33.606934,3.625 1733,397.5627,219.25346,30.010284,57.266495,3.621 1733,552.6937,221.42194,19.620789,40.74536,3.593 1733,220.88869,241.58139,52.967148,117.92767,3.586 1733,-10.311073,197.89412,29.340172,65.549545,3.585 1733,597.093,184.86302,36.096497,90.40352,3.576 1733,314.75528,213.9972,56.664062,148.90027,3.574 1733,252.3605,267.24545,29.612701,56.68216,3.569 1733,507.55902,-14.699184,15.6727295,35.93954,3.561 1733,204.04442,193.08478,30.414139,69.44739,3.55 1733,320.44055,227.96382,24.61621,49.312912,3.546 1733,281.1715,270.9488,23.612854,39.15625,3.532 1733,196.76985,271.47952,31.884552,54.569885,3.525 1733,-9.182241,134.6749,39.476753,102.018616,3.473 1733,177.9605,378.24414,20.646088,45.312225,3.47 1733,614.3862,9.480194,26.223145,76.09886,3.463 1734,207.10657,388.07938,21.412643,42.548798,9.096 1734,584.50006,229.81155,21.606934,38.99695,6.63 1734,-11.6083145,479.18994,29.749758,62.497437,6.221 1734,490.74478,230.62137,20.881226,38.35605,6.009 1734,-6.1222606,489.8758,18.642849,40.908203,5.987 1734,627.0788,-17.975477,17.413757,46.00865,5.928 1734,603.6474,-55.04358,52.450256,138.67989,5.543 1734,4.6783757,205.9111,30.631584,70.348145,5.455 1734,-6.2614036,-18.585411,18.348433,43.391296,5.329 1734,-11.701954,-33.071716,29.947966,74.47778,5.314 1734,622.8071,-34.83262,26.596313,74.76155,5.307 1734,582.9409,411.38687,71.8064,176.85226,5.115 1734,626.3459,487.283,21.095642,46.43222,5.102 1734,612.6743,454.79132,39.997864,106.81207,5.017 1734,179.98154,272.0014,31.080536,62.400635,5.007 1734,186.74318,393.9282,17.95781,39.887543,4.978 1734,-21.941088,401.6014,79.61378,176.05447,4.937 1734,535.705,310.5255,144.71478,341.03784,4.913 1734,-17.84527,-63.535934,57.06498,145.75305,4.834 1734,1.1911798,204.09367,22.171722,50.388657,4.771 1734,-72.55922,267.32828,199.96889,460.47495,4.771 1734,197.74493,213.46788,28.058975,71.43352,4.767 1734,417.74738,225.2642,19.690247,34.85402,4.637 1734,494.03668,227.1116,237.0456,513.7035,4.622 1734,531.2257,-12.279919,16.046692,35.78949,4.533 1734,523.6222,-14.12081,15.843018,37.101765,4.529 1734,585.3736,-100.14635,75.96088,234.81082,4.492 1734,495.67346,222.88556,23.394287,41.936676,4.473 1734,315.16516,212.78053,53.558838,152.44554,4.451 1734,-0.102853775,319.10052,27.09064,78.10104,4.423 1734,565.88745,220.54022,26.175964,53.002625,4.401 1734,552.53687,219.85359,25.867432,54.852097,4.382 1734,293.09177,492.24667,31.074432,51.686005,4.374 1734,-7.9214134,69.81839,37.51052,105.19583,4.345 1734,483.63602,234.04709,19.687103,34.493805,4.276 1734,-36.65083,-125.860306,117.20119,277.19415,4.256 1734,298.04272,375.1382,18.774658,25.412933,4.227 1734,165.72702,271.32016,29.704208,60.378845,4.187 1734,309.099,491.6362,30.977905,52.109283,4.174 1734,-5.7931066,222.59953,18.48562,44.566727,4.17 1734,546.84436,-10.819681,15.942871,36.1809,4.126 1734,538.8638,-11.716083,16.192871,35.779175,4.105 1734,532.9542,-183.06773,147.31866,423.3551,4.086 1734,233.16287,300.37134,22.253067,34.913788,4.0 1734,456.87787,244.84283,21.80954,33.05017,3.938 1734,330.69604,365.45523,32.703796,63.898834,3.926 1734,3.8933802,229.18578,40.781628,96.60304,3.925 1734,19.306423,232.52524,42.384804,88.08148,3.912 1734,39.863377,264.46698,23.421345,42.097412,3.893 1734,452.45306,241.5146,30.608276,54.50917,3.876 1734,423.18784,234.49625,22.639526,33.81659,3.873 1734,511.8598,224.23984,24.740906,44.92856,3.858 1734,-6.4766884,199.61938,19.435108,45.08098,3.85 1734,471.2701,226.17955,25.619171,52.157333,3.826 1734,-11.097086,194.29573,29.848997,70.15239,3.816 1734,-70.41734,-188.4057,210.9716,453.0404,3.813 1734,379.65588,219.10799,31.209473,59.472733,3.797 1734,449.42868,239.85706,21.872437,35.263,3.764 1734,249.3233,303.10892,20.419983,29.31363,3.763 1734,515.71545,-14.703642,15.86676,36.88026,3.739 1734,227.87692,278.2705,31.655792,55.11667,3.735 1734,595.0655,-44.692173,43.50305,101.8365,3.715 1734,546.9199,228.75429,21.833496,44.17,3.689 1734,618.97076,-19.07149,17.48999,43.553097,3.684 1734,523.9414,212.97334,29.370483,60.452133,3.675 1734,511.47064,-35.0511,27.458313,71.07339,3.65 1734,441.64545,245.30074,21.803925,32.494217,3.647 1734,-13.718067,184.50598,47.532135,141.44482,3.639 1734,404.24405,221.90826,42.48752,66.081726,3.591 1734,2.189871,-17.595135,17.637913,40.849937,3.564 1734,614.9862,-22.515266,26.946045,71.92497,3.539 1734,308.7099,282.33804,30.769226,72.44678,3.535 1734,284.78763,375.1541,16.79483,25.800018,3.534 1734,554.96497,-12.602538,16.402344,38.4221,3.533 1734,157.08127,239.15845,52.635376,115.58539,3.532 1734,286.10953,215.35019,57.714935,142.07254,3.517 1734,-5.817548,250.08406,17.990002,40.621506,3.507 1734,474.94922,235.06508,18.76648,31.551254,3.489 1734,191.98622,291.4073,23.884018,37.440125,3.459 1734,328.71445,231.70428,31.682526,66.81329,3.457 1734,2.1626716,491.09448,19.096931,40.066162,3.442 1734,627.0769,26.599718,18.041565,45.757607,3.433 1734,535.2405,220.0498,27.304016,54.115173,3.385 1734,500.39465,211.22433,32.199097,56.43631,3.377 1735,215.10634,388.52603,21.380325,44.46576,24.382 1735,528.6846,223.95615,25.736877,47.321228,7.421 1735,509.7644,218.46689,27.659973,52.049927,7.11 1735,179.55637,269.51038,31.656433,67.29376,6.426 1735,-11.819625,479.24048,29.99187,62.046387,6.4 1735,-6.3430204,489.54092,18.980215,41.092804,6.017 1735,-0.22315383,322.55026,28.523335,76.89725,5.578 1735,195.3601,267.89774,30.321518,65.42215,5.567 1735,622.912,-34.432915,26.38556,74.8406,5.457 1735,-11.415764,-33.010143,29.950003,73.60244,5.455 1735,332.70126,375.58035,32.754486,56.323456,5.418 1735,626.9956,-18.078999,17.438965,46.1104,5.416 1735,626.68134,488.48648,20.74762,45.831573,5.305 1735,426.07092,245.07169,20.549072,29.348328,5.23 1735,-6.05982,-18.855158,18.222446,43.792095,5.223 1735,612.922,454.5762,39.76587,107.559906,5.103 1735,582.976,411.42957,71.77838,176.82776,5.055 1735,-22.02576,400.85474,79.81355,176.92511,5.004 1735,-18.08389,-63.53138,57.06037,146.34938,4.968 1735,603.6516,-54.905067,52.71826,137.1496,4.894 1735,194.78258,393.20554,19.085983,39.39441,4.857 1735,535.89014,310.95526,144.29901,340.98907,4.852 1735,46.852654,269.67535,24.550652,43.220306,4.823 1735,301.10193,293.0623,30.300415,63.8071,4.74 1735,542.17883,226.13365,22.717102,43.275986,4.739 1735,-72.6278,269.00192,200.04413,459.26236,4.736 1735,-5.1483226,251.3894,17.138645,39.247803,4.586 1735,517.5399,221.56102,29.952393,58.911392,4.576 1735,493.6994,227.13538,237.31189,514.2711,4.554 1735,569.95984,227.97617,20.881592,46.32007,4.498 1735,-6.1717706,215.49237,18.591297,44.356567,4.465 1735,-4.9439683,266.43878,15.896412,36.709625,4.43 1735,-5.555601,193.37207,17.347551,41.20993,4.348 1735,-8.000891,70.70242,37.609474,103.6882,4.344 1735,251.29724,272.31122,30.354492,54.358154,4.33 1735,585.4701,-101.64904,76.243286,236.08487,4.298 1735,-36.846745,-126.92471,117.926895,278.71786,4.205 1735,167.0111,268.124,31.354446,61.74756,4.189 1735,309.0215,490.96188,31.081024,53.01242,4.084 1735,532.4401,-183.34128,147.8559,423.12457,4.069 1735,201.94714,289.94037,34.704376,54.675262,4.021 1735,73.10009,287.85345,33.84384,81.97479,4.01 1735,598.1061,190.2598,36.12207,91.01633,3.96 1735,456.8799,231.50525,21.10141,36.132904,3.956 1735,-7.960743,145.22073,37.340775,105.01608,3.953 1735,618.98334,208.1092,19.852722,43.325485,3.936 1735,417.39563,246.032,21.315369,29.059036,3.931 1735,553.4884,226.07092,21.092224,43.17212,3.881 1735,316.7473,290.8045,30.880188,68.04419,3.837 1735,188.73444,232.03143,54.31891,113.25336,3.835 1735,584.9928,218.96312,20.360535,42.718063,3.778 1735,-11.216865,211.87141,30.152092,69.777695,3.754 1735,201.91263,260.8513,20.222046,50.281433,3.741 1735,-70.31861,-188.09021,211.09424,452.30786,3.738 1735,185.95908,287.95493,34.326782,56.052185,3.663 1735,331.51135,201.96039,17.792877,32.45047,3.658 1735,-5.672806,232.14952,18.327991,45.04097,3.654 1735,435.11612,252.28615,19.574982,30.446884,3.65 1735,595.1545,-44.820637,43.622192,101.698654,3.641 1735,421.448,233.34337,30.045105,46.70323,3.639 1736,223.63913,393.71115,22.525864,47.386017,19.821 1736,626.8974,-17.916199,17.99878,46.832733,6.751 1736,46.497673,236.0762,28.837738,64.13245,6.522 1736,622.3003,-33.406746,27.293701,75.499626,6.209 1736,-12.062099,478.44122,30.454643,62.69397,5.98 1736,-6.3766108,489.18237,19.18597,41.975464,5.903 1736,-11.400943,-32.43817,29.795113,72.24683,5.561 1736,618.44617,-6.0463333,20.043274,46.955788,5.435 1736,201.2303,396.13928,19.09311,42.993713,5.366 1736,1.7720377,318.35822,33.656765,83.59335,5.347 1736,440.98425,240.03664,20.862091,32.422897,5.331 1736,612.8432,454.66342,39.89435,107.62167,5.298 1736,603.31946,-55.282578,53.092163,136.72868,5.289 1736,626.63586,488.1446,20.72467,45.928528,5.198 1736,-6.1509314,-18.36646,18.292103,43.174847,5.145 1736,612.4677,-19.3057,29.271423,74.85644,5.137 1736,583.0775,411.72272,71.68152,176.42065,5.127 1736,180.9573,270.28888,30.66713,67.98657,5.119 1736,-22.04042,400.7336,79.73767,177.05246,4.984 1736,-18.266949,-63.90348,57.257298,146.49832,4.954 1736,-4.846144,202.51242,17.528397,41.484238,4.931 1736,415.6404,235.65353,23.312164,37.477325,4.931 1736,547.6155,212.44136,30.264404,63.992813,4.907 1736,535.85376,310.86594,144.51294,341.09756,4.866 1736,566.49786,218.35661,27.940857,57.87877,4.791 1736,-72.524414,268.88126,199.99738,459.44638,4.751 1736,195.90857,273.13672,31.392471,67.72186,4.594 1736,-5.314661,308.56937,18.393185,40.02585,4.512 1736,353.9486,367.40405,33.535767,61.875214,4.492 1736,493.62946,226.44531,237.52496,514.751,4.492 1736,585.28107,-100.930595,76.21124,235.43652,4.483 1736,48.40261,274.18878,23.064758,42.11087,4.435 1736,325.4007,490.96054,30.86084,52.311127,4.392 1736,205.13557,255.35614,27.703506,71.38208,4.303 1736,617.8097,222.66893,21.342407,48.525314,4.282 1736,-13.915775,182.27376,46.79464,142.4077,4.261 1736,585.3259,224.13174,23.670471,51.56137,4.244 1736,-9.883094,299.56717,27.778416,63.45053,4.175 1736,532.4542,-183.4993,147.91443,423.03445,4.173 1736,-37.01825,-126.607185,117.865295,277.9629,4.134 1736,-8.238161,70.53874,37.812218,104.265274,4.129 1736,603.36536,-1.3600616,30.571472,68.05049,4.059 1736,-9.974545,329.74747,31.046495,80.14639,4.046 1736,197.55222,237.08923,29.037903,69.25006,4.02 1736,533.52545,217.97815,30.43274,56.1344,3.895 1736,249.4321,309.85898,20.876862,35.967743,3.857 1736,-5.3011346,369.3361,19.37638,47.88852,3.851 1736,331.16315,226.20651,57.472565,152.16592,3.84 1736,1.9170344,252.64828,22.050045,45.395447,3.801 1736,206.22006,253.23846,50.38565,125.23944,3.794 1736,82.337326,288.39566,33.511185,78.97272,3.787 1736,434.59152,244.41998,21.24466,32.371582,3.769 1736,-4.387783,188.42133,16.092934,37.629852,3.76 1736,594.6011,-44.195633,44.59076,99.57723,3.757 1736,211.09882,288.09436,33.47722,56.756775,3.752 1736,341.00177,376.32278,33.450623,56.859406,3.709 1736,-70.57029,-187.53078,211.34668,450.99982,3.668 1736,597.2497,192.25566,36.83246,86.16817,3.657 1736,1.8212616,490.8012,20.104717,40.987305,3.642 1736,3.9529026,218.31534,39.591034,94.58893,3.64 1736,-8.789778,113.94075,37.9496,107.07765,3.637 1736,387.29462,222.17746,30.6792,51.259674,3.635 1736,20.79432,231.37047,41.568214,93.57411,3.626 1736,-0.52690744,209.71457,27.434334,72.34799,3.598 1736,500.87305,195.83478,31.328308,65.60266,3.583 1736,-10.579674,203.79355,28.921179,68.40506,3.581 1736,1.2695694,310.6568,21.43312,41.03531,3.58 1736,300.53726,490.98267,31.52707,52.078247,3.557 1737,230.87228,397.61227,23.989502,49.719055,26.353 1737,434.42368,233.89041,20.789276,38.929993,16.677 1737,91.35599,292.88654,33.380836,74.53549,7.709 1737,626.8862,-18.66167,17.320251,49.374886,7.205 1737,562.7802,211.37164,27.959656,66.460815,6.847 1737,622.5172,-32.92651,26.43512,77.959305,6.304 1737,-6.164812,489.7218,18.68583,41.578735,5.934 1737,-5.705526,312.0377,17.570303,46.09314,5.897 1737,-11.923131,478.747,30.051907,62.145447,5.671 1737,205.19427,279.53558,28.522598,61.86606,5.471 1737,-11.528187,-32.554325,29.914368,72.37062,5.464 1737,210.85373,410.73254,17.964554,36.06201,5.379 1737,532.63995,213.53696,29.57483,56.700287,5.295 1737,3.5448563,322.10583,35.27516,84.173706,5.216 1737,626.6773,488.5949,20.561768,45.598206,5.195 1737,-6.096108,-18.453905,18.082664,43.09562,5.173 1737,583.18036,411.80984,71.55231,176.51431,5.148 1737,603.24347,-54.54321,52.936584,136.39035,5.145 1737,-40.53467,365.13403,111.07739,275.10004,5.102 1737,612.869,455.09695,39.515686,106.83469,5.095 1737,187.95662,271.29312,30.468796,68.91025,5.016 1737,-18.321283,-64.543625,57.206367,147.80524,4.933 1737,-5.6554484,288.73428,18.065224,44.936737,4.912 1737,-17.471573,436.91656,54.951454,138.8982,4.901 1737,535.9676,311.23907,144.29181,341.44855,4.773 1737,-72.52666,269.20822,200.17877,459.52457,4.706 1737,404.4762,228.63232,30.502747,55.48523,4.581 1737,213.52655,256.71225,29.274994,69.68927,4.534 1737,585.4809,-101.19983,76.064575,235.20471,4.529 1737,-6.556855,331.313,19.622963,48.603607,4.494 1737,-11.84181,319.17667,29.97611,74.19644,4.482 1737,493.6052,225.94144,237.3912,515.63745,4.441 1737,3.5858345,226.2865,39.83476,104.31311,4.434 1737,387.70474,222.62584,33.24774,53.47316,4.433 1737,273.95297,290.73456,20.64386,36.616272,4.387 1737,-4.5912,251.62813,17.386305,39.481888,4.354 1737,616.0894,-19.259836,25.338318,77.786674,4.32 1737,1.2850213,245.44348,20.762001,41.23346,4.312 1737,17.463043,319.7316,35.408623,75.80887,4.204 1737,532.5211,-183.62213,147.84119,423.48883,4.162 1737,218.90213,264.30615,55.892883,124.39484,4.13 1737,-36.643013,-126.7677,117.78568,277.98117,4.111 1737,-4.9754043,266.8907,16.926119,38.493835,4.087 1737,-8.11451,70.10777,37.742924,103.21709,4.082 1737,204.93896,254.24011,52.086212,113.00464,4.053 1737,322.7319,299.5809,32.245667,68.16321,4.008 1737,619.1003,-18.420124,17.052246,47.785725,4.005 1737,63.76773,270.8494,25.128944,44.13144,3.95 1737,316.4494,203.71605,17.01538,30.265213,3.947 1737,594.9169,-44.875328,43.694397,100.27406,3.899 1737,226.45557,388.23627,39.5968,84.69455,3.891 1737,617.56696,224.56061,21.098999,52.657715,3.878 1737,265.68683,288.8077,21.768677,38.028168,3.875 1737,28.831007,232.88882,54.695892,118.68561,3.873 1737,-4.821342,236.39737,17.716274,39.974243,3.865 1737,347.17877,-10.691231,33.476685,66.12273,3.861 1737,-5.561202,202.54533,18.028603,40.34749,3.84 1737,362.28378,374.8733,32.905304,62.379242,3.827 1737,243.4512,286.42618,32.511963,53.12845,3.787 1737,-9.878119,291.75574,26.634743,71.790405,3.775 1737,598.87787,190.96918,35.058167,89.62683,3.77 1737,549.9916,206.94527,32.04303,62.068344,3.765 1737,224.13948,283.03012,23.796097,44.67398,3.76 1737,-7.961788,216.08658,37.016582,99.843994,3.758 1737,52.303703,266.26672,33.04473,63.904327,3.701 1738,627.22046,-17.38418,16.611938,45.073833,8.962 1738,623.2936,-33.755886,25.848938,73.69535,8.633 1738,107.161476,284.8905,31.657585,67.513916,8.026 1738,539.92847,215.63211,29.7099,57.06009,7.934 1738,-5.7532988,490.10342,18.20509,40.835175,6.529 1738,31.38464,311.53992,28.994343,67.86316,5.881 1738,-11.299164,479.9464,29.06662,62.449524,5.862 1738,4.954735,295.46573,27.440308,66.25537,5.771 1738,234.06454,398.41278,22.033966,43.65793,5.575 1738,-11.434986,-32.79663,29.723616,73.52379,5.439 1738,556.1714,201.51785,33.572144,68.72763,5.365 1738,-5.976317,-18.397926,17.935509,43.44198,5.28 1738,353.46555,-9.27548,34.40796,57.934998,5.233 1738,583.22943,411.98898,71.429504,176.23941,5.155 1738,603.7933,-55.20952,52.581177,135.77437,5.072 1738,613.03,454.9427,39.363525,107.026794,5.003 1738,-18.187918,-65.27559,56.94835,149.0329,4.996 1738,-22.108309,401.13617,79.96171,176.51447,4.967 1738,-10.193989,283.8571,28.943626,70.42755,4.958 1738,-5.8324504,295.2376,19.281641,46.78424,4.895 1738,15.330691,273.70154,52.717754,124.58597,4.891 1738,620.16077,-16.99739,16.284424,41.399548,4.876 1738,-72.65565,269.1672,200.51791,459.4219,4.802 1738,197.56111,269.71732,28.736801,68.68945,4.801 1738,570.552,219.81818,28.838318,59.78589,4.733 1738,536.0077,311.50958,144.08728,340.99237,4.704 1738,626.59705,488.5018,20.71399,45.410065,4.625 1738,-5.860797,275.61243,19.06895,41.17914,4.61 1738,493.61646,226.35721,237.51855,515.4663,4.456 1738,42.8669,309.18814,32.201504,70.47012,4.303 1738,1.7121136,293.80606,20.406197,51.370575,4.277 1738,585.6202,-101.6727,76.079956,235.80678,4.275 1738,15.447857,302.90222,23.129448,46.752136,4.244 1738,-7.569096,70.52019,37.72528,99.93956,4.155 1738,362.92035,373.83322,32.772644,60.233856,4.149 1738,532.573,-183.9274,147.66394,423.3409,4.095 1738,614.9608,224.44455,23.005005,51.38803,4.076 1738,-36.66434,-126.54787,117.91327,278.2248,4.07 1738,101.83086,270.13403,29.422073,63.252045,4.043 1738,373.57544,288.6993,29.584167,69.69183,3.989 1738,-15.374022,181.08582,49.929413,146.73502,3.984 1738,323.8152,297.54852,31.729126,71.58658,3.923 1738,340.8328,490.98502,31.291595,52.30417,3.91 1738,517.2211,219.89085,32.34723,55.777298,3.877 1738,425.2685,234.74565,20.695892,34.858566,3.871 1738,316.9055,205.29659,15.309509,28.520859,3.869 1738,343.11447,-33.50886,28.92453,76.47178,3.824 1738,2.4890847,491.97504,18.782661,38.83661,3.816 1738,361.0535,-13.592363,18.542694,41.67263,3.771 1738,388.27875,229.47704,30.025055,55.3351,3.756 1738,282.20303,310.1483,19.22232,33.152008,3.753 1738,474.48715,223.00468,21.633118,43.38301,3.679 1738,18.208378,259.1891,42.657795,88.42081,3.678 1738,478.09207,208.58563,27.600128,59.81067,3.656 1738,181.8498,277.00397,30.440262,57.223267,3.656 1738,458.78403,225.15709,18.41858,37.668076,3.643 1738,219.65753,261.0401,29.76059,65.090546,3.642 1738,25.642672,306.34375,22.691992,46.238953,3.62 1738,226.79564,277.16632,42.215744,99.36276,3.62 1738,20.004227,319.63812,33.279064,74.23181,3.603 1738,219.74655,292.4127,31.993011,53.13553,3.602 1738,595.2303,-44.658752,43.330383,99.83345,3.601 1738,213.10213,278.18396,29.346436,62.266785,3.589 1738,350.89233,374.97293,32.884705,57.40268,3.583 1738,363.42725,-32.36487,30.839539,75.37644,3.579 1739,233.33315,396.0614,21.95816,44.477417,12.558 1739,408.73904,230.51593,21.128448,39.315155,9.109 1739,5.3818846,289.48486,32.40424,70.17963,7.706 1739,215.8905,297.12268,24.753891,40.3244,6.388 1739,216.5471,263.60046,22.850876,51.376984,6.38 1739,41.78852,306.45584,37.276657,75.66275,6.142 1739,611.413,-47.47499,41.144714,102.46204,5.981 1739,108.960434,282.6238,30.907333,69.75955,5.899 1739,-11.527288,-32.69113,29.937561,72.11104,5.767 1739,204.35403,257.23306,32.130707,66.98575,5.741 1739,-6.219504,489.9778,18.69982,41.308014,5.584 1739,-8.856939,464.03595,37.602283,93.33563,5.517 1739,626.49225,487.92828,20.62024,46.239014,5.491 1739,-5.98623,-18.784792,18.186546,43.515156,5.478 1739,627.25195,-18.326607,17.298828,45.60793,5.449 1739,196.1141,265.62875,30.69455,71.10745,5.42 1739,3.154385,290.3507,20.21205,48.354126,5.387 1739,355.2173,-32.285316,30.455688,70.71868,5.228 1739,556.41376,216.99529,31.169128,58.166702,5.22 1739,617.20123,210.96959,22.779907,75.080124,5.21 1739,583.1286,412.57837,71.56201,175.66992,5.18 1739,220.65173,255.9852,28.700668,67.58746,5.123 1739,542.0397,215.1752,28.529663,55.177063,5.015 1739,612.76807,455.85538,39.70172,105.82364,4.996 1739,17.630264,290.1542,32.172115,63.361877,4.978 1739,-22.180176,400.694,80.04407,176.63931,4.895 1739,-17.839952,-64.056656,56.851257,146.39291,4.881 1739,-5.452615,300.89532,18.552402,44.336884,4.82 1739,322.8814,301.1637,32.769165,65.99924,4.815 1739,-72.68349,268.60822,200.6508,459.4041,4.76 1739,536.11743,311.2664,143.73334,341.37473,4.664 1739,573.6389,216.71912,28.513916,57.985046,4.5 1739,585.5926,-100.563446,76.04248,235.10295,4.5 1739,307.34256,293.6681,33.128204,64.72122,4.5 1739,493.43652,226.41486,237.71643,515.5636,4.469 1739,-7.8685594,69.55249,37.45224,103.57008,4.338 1739,490.12177,-178.44571,234.44781,423.00977,4.287 1739,-36.843014,-127.1702,117.78261,278.09454,4.191 1739,-6.178731,217.0285,19.050915,43.38565,4.178 1739,339.89368,289.6181,33.812653,64.666595,4.141 1739,-11.396339,295.351,30.65215,70.358,4.131 1739,211.34268,401.3336,18.889633,40.825775,4.072 1739,-6.0591354,278.99725,19.217785,45.27414,3.981 1739,12.776523,266.332,56.604977,126.323975,3.98 1739,55.507454,297.49506,36.72307,66.73941,3.926 1739,-15.380985,212.22357,48.996777,148.47333,3.901 1739,205.75452,285.21524,30.065552,58.187653,3.886 1739,182.2222,273.7156,30.250763,60.966644,3.856 1739,-5.5702376,200.93504,17.848032,43.128693,3.827 1739,623.8465,-22.723354,26.864502,70.17113,3.826 1739,74.8927,257.98447,33.990547,61.4794,3.816 1739,2.4484038,-17.13121,17.538834,40.42514,3.784 1739,-70.73823,-187.6174,211.26834,451.6699,3.781 1739,102.35673,265.9496,30.430977,67.08383,3.763 1739,0.23200154,264.4311,25.237133,65.39609,3.757 1739,0.70759773,177.43082,49.62819,139.86475,3.736 1739,538.1184,230.19867,20.709106,44.201843,3.707 1739,-5.8153534,329.5576,19.00486,40.322266,3.693 1739,476.2608,217.8795,30.16333,60.33113,3.69 1740,50.688126,306.3993,35.173477,70.18411,10.343 1740,116.119194,274.2982,30.760948,71.18381,6.858 1740,230.32866,408.07214,21.838455,40.895325,6.796 1740,547.9255,213.56746,31.024292,60.820724,6.672 1740,-5.9488297,489.24622,18.565727,41.96637,6.127 1740,213.73611,241.59146,28.210724,72.5766,6.036 1740,626.912,-18.190586,17.802917,45.19263,6.031 1740,-11.436033,-32.437542,29.638739,72.48758,5.875 1740,603.7259,-53.66851,53.17047,134.2942,5.853 1740,209.54285,415.01596,18.574554,36.061493,5.779 1740,623.29663,-34.316757,26.299622,74.52584,5.684 1740,-11.659943,478.04398,29.766716,63.314056,5.478 1740,-6.2805467,-18.775116,18.368414,43.175755,5.463 1740,612.80304,454.61316,40.029297,107.37842,5.307 1740,583.09656,412.4722,71.60828,175.61655,5.141 1740,563.1153,216.52165,31.798767,59.460342,5.018 1740,210.02881,298.3537,33.567566,51.897827,4.984 1740,-21.945982,401.56854,79.73063,176.06189,4.961 1740,-18.258528,-64.6817,57.07728,147.38277,4.871 1740,626.4735,488.20474,20.96582,46.503082,4.721 1740,585.7479,-100.58232,75.80896,235.00291,4.678 1740,-72.53381,268.8278,200.15987,459.12802,4.598 1740,535.9882,312.05237,143.83789,340.6787,4.564 1740,618.4057,215.89806,19.583374,46.705,4.445 1740,490.11145,-178.57674,234.69568,423.31726,4.443 1740,493.5042,226.13611,237.64471,515.75006,4.393 1740,269.1001,283.73407,30.109009,60.74466,4.293 1740,-4.436758,302.33197,15.842598,34.707092,4.264 1740,-8.276285,68.51409,37.881752,107.0872,4.208 1740,196.66486,413.8493,17.178299,33.690186,4.201 1740,12.80437,187.07329,53.154278,130.17946,4.158 1740,292.178,301.27563,34.46042,66.911316,4.09 1740,-37.19229,-127.64127,117.96824,279.2801,4.044 1740,597.132,191.72836,36.46234,83.825836,4.008 1740,6.627097,220.35658,28.63855,67.9276,3.978 1740,315.85468,199.156,17.849213,36.477448,3.974 1740,-5.4649534,282.07974,17.567862,41.347015,3.969 1740,-0.32430172,201.16435,28.921791,63.73616,3.92 1740,252.03998,114.88156,18.24112,34.513824,3.901 1740,595.02295,-43.797977,43.737793,100.63056,3.874 1740,89.85955,270.04993,21.90673,40.03714,3.868 1740,-8.294444,215.61603,37.514072,100.23157,3.801 1740,-70.93552,-187.13809,211.22139,451.6328,3.796 1740,613.03674,11.76717,27.723083,67.89357,3.788 1740,197.47072,285.78598,30.476639,60.536926,3.787 1740,205.16832,267.50238,30.389618,73.99475,3.778 1740,614.1727,-21.79355,27.924194,72.70885,3.769 1740,573.22437,204.15022,32.58307,67.03844,3.76 1740,627.2896,1.6945572,18.749817,45.13601,3.76 1740,224.98239,275.23376,44.766846,97.8212,3.751 1740,612.89166,164.52487,35.27411,99.348114,3.732 1740,348.94162,491.7941,31.344604,51.24826,3.73 1740,35.62761,311.1602,34.573563,65.07248,3.692 1740,627.47174,25.739492,18.376587,46.563103,3.686 1740,425.18295,220.88045,23.457062,41.839706,3.679 1740,97.93128,267.3299,21.563698,35.907715,3.668 1740,323.10992,297.55585,33.859924,71.93259,3.653 1740,401.92905,232.22922,20.904266,34.999786,3.616 1740,35.908684,216.73703,40.77775,93.12247,3.612 1740,476.77466,217.55582,30.529846,59.165314,3.592 1740,404.357,222.36769,28.545166,52.308517,3.56 1740,2.3396218,-17.296394,17.743547,40.446964,3.558 1740,-8.949484,112.813995,37.967484,108.9545,3.549 1740,-6.3051796,216.80737,18.619068,42.369934,3.546 1740,618.5261,179.7143,18.413635,42.50937,3.515 1740,210.65665,262.1587,41.74272,91.59476,3.506 1740,2.107492,490.80075,19.653315,40.078033,3.502 1740,216.79413,239.19437,19.823883,44.650574,3.496 1740,194.39552,257.87988,32.455368,67.80075,3.485 1740,540.94037,-36.589924,29.413391,71.0356,3.481 1740,619.0636,-18.436296,17.4599,42.639023,3.481 1740,231.164,301.2568,24.015411,39.651123,3.471 1740,602.5248,-1.962265,18.815857,38.19698,3.467 1740,262.3095,373.5657,84.25,164.6036,3.466 1740,84.66234,283.56076,31.276978,63.342255,3.461 1740,371.27414,223.54565,18.322449,33.56897,3.457 1740,327.43768,372.2569,82.90958,163.11871,3.428 1740,450.99176,-15.533419,33.753265,63.63128,3.415 1741,224.56688,419.07394,22.525497,48.115295,8.924 1741,68.15302,298.16913,33.582703,69.177,7.938 1741,627.117,-17.969648,17.599915,46.24126,7.436 1741,623.0121,-34.108467,26.490417,75.332306,7.107 1741,202.00334,426.34885,18.854126,38.248474,6.114 1741,212.41565,241.17798,28.573517,76.14978,5.884 1741,603.4513,-53.719097,52.819763,134.32277,5.649 1741,-8.679754,464.55713,37.482048,92.02557,5.579 1741,626.52734,489.1395,20.707825,45.075592,5.549 1741,-6.2213955,490.04944,18.79041,41.234436,5.433 1741,207.93611,308.81003,25.136414,39.8649,5.399 1741,-11.468748,-32.65136,29.82275,73.123024,5.297 1741,583.2574,412.40295,71.42529,175.599,5.166 1741,-6.019581,-18.635267,17.987167,43.191692,5.129 1741,618.9199,-18.045662,17.650146,44.258743,5.11 1741,612.7909,454.99673,39.82019,106.86624,5.098 1741,-40.47085,366.94293,110.73634,272.89996,5.05 1741,-18.17495,-65.68761,56.874893,149.18083,5.048 1741,618.81934,222.61253,19.722046,51.381912,5.037 1741,261.5541,292.21194,29.048859,60.21753,5.035 1741,125.74831,274.4531,30.073364,70.09,4.975 1741,583.4701,214.88704,29.259766,59.61107,4.966 1741,205.74043,277.58826,29.956497,68.77466,4.902 1741,610.9636,-15.50515,17.114014,40.991264,4.787 1741,585.7908,-101.118744,75.53076,236.03757,4.712 1741,2.5972354,194.63873,33.53669,68.002655,4.682 1741,-72.95483,268.6103,200.37753,459.22418,4.62 1741,549.3795,209.41899,30.717651,57.20558,4.584 1741,490.0165,-179.25093,234.91946,424.5617,4.581 1741,535.64636,312.11447,144.04272,341.189,4.546 1741,612.5563,-19.724016,29.019592,73.24263,4.538 1741,-17.566683,435.37997,55.329773,140.21146,4.469 1741,325.63046,291.9218,30.557343,63.40622,4.467 1741,597.881,189.5395,35.446594,88.11369,4.43 1741,-5.4713945,220.63582,17.30418,45.269943,4.371 1741,339.1811,300.5428,33.624573,63.857178,4.36 1741,493.09454,226.17374,237.9867,515.31506,4.349 1741,565.3805,215.50342,29.609863,59.313354,4.344 1741,613.4262,164.05902,34.72516,100.36566,4.317 1741,411.78326,216.81763,29.417236,60.977783,4.278 1741,-8.6332035,214.07712,37.752434,103.76709,4.177 1741,210.23268,272.1862,20.724686,49.670013,4.124 1741,595.3208,-44.220264,43.437866,99.91678,4.11 1741,273.25284,297.9869,21.427307,39.547882,4.089 1741,569.95325,-19.34022,18.317627,40.40588,4.076 1741,582.31024,-34.4633,28.24939,70.803665,4.046 1741,-37.270607,-128.20947,117.97181,280.27704,4.045 1741,138.1157,266.18542,20.098984,35.83664,4.031 1741,-6.7264357,203.39844,20.319454,47.48221,4.026 1741,182.17421,268.6707,28.397964,70.64725,4.021 1741,594.50494,-15.815419,16.939087,39.295784,4.02 1741,12.575636,179.74388,55.1196,124.33766,3.962 1741,622.5593,5.274704,26.638428,71.32188,3.873 1741,603.99524,173.73296,17.845825,30.695679,3.85 1741,234.22003,410.9659,30.233734,54.927155,3.849 1741,117.035355,258.9388,31.498672,65.39383,3.808 1741,565.1325,-34.356976,28.593567,68.926735,3.8 1741,602.4488,-16.00634,17.192383,40.271404,3.795 1741,292.51468,309.98386,31.214691,62.443146,3.774 1741,19.370731,214.61644,31.93179,60.267868,3.766 1741,-8.828918,69.5047,38.33861,105.991455,3.762 1741,198.864,259.7414,29.02031,67.45868,3.736 1741,433.1847,221.25626,23.023956,48.963837,3.689 1741,-70.95807,-186.72066,211.22913,450.7331,3.679 1741,618.4575,491.55505,20.72638,41.343384,3.671 1741,205.62589,251.18375,49.56682,116.2746,3.652 1741,281.46213,300.2567,20.808563,34.931213,3.646 1741,96.00205,267.58923,24.414978,38.52417,3.609 1742,627.0068,-17.819868,17.650269,46.37988,7.027 1742,623.08026,-33.824917,26.410767,75.102196,6.972 1742,408.70563,216.62233,22.89154,47.68651,5.885 1742,72.17194,301.58875,33.358055,72.05231,5.859 1742,205.02203,253.26953,30.42955,74.85089,5.73 1742,-6.1884003,489.3831,18.857113,42.36093,5.71 1742,225.88402,415.55988,23.191086,46.826843,5.7 1742,603.3266,-53.676598,52.970947,134.09062,5.632 1742,269.92148,303.34116,29.29837,57.169342,5.557 1742,-8.880626,465.01474,37.524826,91.5607,5.391 1742,-11.1859,-32.640404,29.534777,72.99946,5.296 1742,550.3866,216.04811,29.17981,59.336502,5.267 1742,612.82245,455.6619,39.409668,106.41617,5.266 1742,583.23883,412.328,71.451355,175.85052,5.126 1742,208.34302,317.8807,24.920914,34.578033,5.117 1742,-6.0764785,-18.4559,18.093502,43.49473,5.099 1742,-18.051231,-65.041336,56.81597,148.48785,5.025 1742,-21.979603,401.11377,79.763885,176.5149,5.011 1742,626.7148,489.00122,20.321655,44.626953,4.958 1742,585.8562,-100.964455,75.63684,235.22171,4.89 1742,281.60962,319.73096,19.98114,35.197876,4.808 1742,535.7406,311.6708,144.08209,341.41464,4.616 1742,619.192,-17.577211,17.290161,44.00306,4.593 1742,490.17126,-178.76328,234.6966,424.27795,4.583 1742,-72.776245,268.27652,200.21042,459.301,4.579 1742,3.9327037,193.8067,30.973795,67.963684,4.494 1742,612.94635,-19.702139,28.552979,74.50718,4.412 1742,493.22156,225.9165,237.89197,515.6309,4.392 1742,201.93927,422.51953,19.906662,37.397278,4.281 1742,292.23383,313.40915,31.443085,60.681885,4.241 1742,595.451,-44.613716,43.306396,99.982735,4.225 1742,-36.988617,-128.73315,117.825294,279.96432,4.221 1742,355.21674,234.2951,30.936981,75.94946,4.215 1742,210.99594,301.69452,32.2162,52.888092,4.108 1742,-8.381816,70.40785,38.294704,104.80357,4.083 1742,611.0979,-15.652871,16.869873,41.17666,4.054 1742,582.3582,-34.543312,27.816772,70.37409,3.983 1742,587.1938,206.56058,30.952393,65.5802,3.895 1742,-5.957571,224.77573,18.1072,40.933655,3.894 1742,597.4522,189.60353,35.940002,88.7534,3.893 1742,216.95706,262.51434,22.88559,55.190308,3.861 1742,-70.81453,-187.42097,211.33934,452.73688,3.853 1742,332.58936,209.5585,16.362823,31.143005,3.851 1742,-5.163114,241.6485,17.294384,40.743164,3.837 1742,381.60324,211.68286,28.472778,59.171234,3.812 1742,574.3289,217.86972,29.114685,61.49948,3.783 1742,234.07513,406.0359,29.385193,53.78128,3.769 1742,197.29337,296.57147,30.562561,58.620422,3.737 1742,594.39777,-16.020233,17.036438,38.949596,3.733 1742,389.36865,196.86714,32.94745,66.739,3.663 1742,431.61395,215.4443,23.750793,45.756653,3.659 1742,-10.848532,230.38213,29.119505,66.98033,3.654 1742,28.012241,208.21562,31.588135,55.602676,3.653 1742,2.4316144,258.5062,19.552513,42.790314,3.64 1742,386.48553,232.02652,18.745544,33.944397,3.615 1742,140.94063,265.84326,29.362595,67.15427,3.612 1742,570.14746,-19.340652,18.075073,40.14164,3.584 1742,618.8624,227.50665,19.707642,52.127136,3.568 1742,622.2962,5.01276,26.485168,72.22035,3.545 1742,602.5139,-16.192102,16.819092,39.793144,3.543 1742,339.12506,303.91095,34.45227,58.363617,3.529 1742,309.47107,208.70888,15.665985,31.93695,3.522 1742,265.50098,297.19592,22.523346,45.123108,3.52 1742,-7.8778305,215.48338,37.62744,102.8138,3.519 1742,13.881004,205.52533,25.919949,46.718246,3.515 1742,340.7323,197.06885,15.763214,30.438156,3.499 1742,556.3294,-36.085857,29.279175,69.09581,3.482 1742,330.6142,110.36325,18.166962,27.71077,3.477 1742,-0.45849204,262.6554,26.576042,69.90918,3.469 1742,347.82288,197.83287,16.54602,29.767838,3.465 1742,-8.907522,116.539215,38.456642,104.44916,3.46 1742,96.9202,266.2947,24.426453,41.199585,3.454 1742,218.31053,265.9372,55.534164,123.02185,3.445 1742,315.97366,208.72379,16.565247,31.119507,3.442 1742,283.42664,306.90265,31.18927,57.756622,3.441 1742,261.7663,372.57227,84.96741,166.08044,3.404 1742,80.82493,263.46857,23.253517,46.414154,3.394 1742,-5.6554193,205.36656,18.833023,45.791702,3.388 1742,613.3449,164.48431,34.78125,99.21475,3.387 1743,63.179398,302.08517,31.87059,70.96188,10.152 1743,206.20369,240.98338,29.081406,75.88286,9.984 1743,225.1878,417.91666,22.496292,48.04138,8.678 1743,622.6411,-33.72616,26.576172,75.84272,7.345 1743,626.7538,-17.515987,17.82782,46.065586,7.296 1743,408.54752,213.26605,22.895203,50.675903,6.483 1743,202.37044,427.68182,18.883438,36.166565,5.785 1743,-11.814188,477.66415,30.169184,63.696564,5.773 1743,-6.2873416,489.04196,19.107962,42.460236,5.703 1743,-11.334131,-32.32527,29.731344,71.88624,5.501 1743,612.74713,454.81845,39.640503,106.91861,5.28 1743,603.1474,-54.269463,53.259155,135.68369,5.26 1743,583.30054,412.14468,71.37781,175.87039,5.19 1743,626.4863,488.00964,20.763916,46.254395,5.181 1743,618.9105,-18.113205,17.817444,44.048553,5.16 1743,-6.010242,-18.08234,18.036541,42.633766,5.153 1743,385.98206,232.76764,18.781677,36.568054,5.081 1743,613.4591,-18.43391,28.155762,73.72738,5.03 1743,361.5543,120.83356,20.449432,42.868744,5.018 1743,355.1441,226.7919,31.230774,76.6297,4.975 1743,-21.992817,401.026,79.78308,176.52051,4.954 1743,-6.3494196,206.63054,20.064377,46.880753,4.953 1743,-18.138756,-65.03038,56.874283,148.15326,4.915 1743,3.5367656,198.84589,31.837494,68.31976,4.887 1743,585.64825,-100.293915,75.738464,234.9142,4.846 1743,14.741323,207.42525,26.029673,46.116364,4.595 1743,535.71136,311.9178,144.0567,341.18402,4.587 1743,-72.6447,268.39185,200.10864,458.97552,4.579 1743,118.59124,267.28363,29.72895,63.563812,4.521 1743,379.29156,226.87558,18.508972,34.616547,4.519 1743,611.10223,-16.386112,17.226562,41.107258,4.49 1743,489.95514,-178.19925,235.19537,423.7697,4.48 1743,549.72534,208.28165,29.961182,60.413666,4.365 1743,493.20163,226.04355,238.06863,515.62195,4.35 1743,204.5379,296.40598,32.822113,55.882538,4.235 1743,-37.03869,-128.16817,117.62583,279.94247,4.194 1743,217.70065,238.35236,30.820068,80.22754,4.152 1743,269.21863,291.89685,29.254333,61.675934,4.084 1743,617.36365,8.092421,20.346985,53.33454,4.009 1743,77.709145,295.96527,25.532974,60.170807,3.895 1743,197.72998,231.42474,29.271652,74.861694,3.839 1743,606.7299,-33.556675,27.616516,74.777115,3.821 1743,131.48502,269.78027,29.578964,63.371704,3.81 1743,0.053931475,199.25145,23.693592,47.25032,3.789 1743,-70.8683,-187.81015,211.35643,452.65918,3.755 1743,618.3142,227.00793,20.677734,52.275574,3.731 1743,-8.411857,68.06042,38.072548,107.15186,3.723 1743,213.57559,274.2921,29.054092,73.32391,3.687 1743,201.29868,312.33417,24.665771,40.276794,3.652 1743,209.24696,236.5805,21.123947,48.92987,3.65 1743,292.43964,309.4303,32.595703,65.22876,3.566 1743,437.76932,-35.41902,28.804504,67.28626,3.56 1743,581.35394,-33.27336,28.381287,67.37693,3.554 1743,1.6409373,489.95612,20.27507,41.34961,3.55 1743,621.9601,3.9413223,26.21283,73.56597,3.549 1743,202.9656,240.03456,53.13315,123.27666,3.53 1743,36.408848,303.64377,31.675556,62.374176,3.517 1743,19.066898,213.8576,31.666714,65.47067,3.516 1743,193.66489,256.92712,43.01001,93.38843,3.514 1743,588.21643,204.19795,31.57965,66.56746,3.506 1743,262.5598,375.07422,83.77319,164.28064,3.497 1743,623.13605,206.02905,26.555481,68.9353,3.487 1743,201.9561,265.7981,22.313705,57.601593,3.481 1743,403.04266,212.2001,39.617584,74.830475,3.481 1743,574.1563,218.97693,27.647766,60.20816,3.48 1743,602.5167,-17.259912,16.927673,40.878487,3.444 1743,68.907585,249.61226,30.665993,71.22072,3.438 1743,233.93802,410.9403,29.333832,51.460297,3.433 1743,-5.030961,335.12305,17.237034,34.648804,3.422 1743,577.5372,-17.763597,18.571594,39.73582,3.416 1744,59.26011,304.07935,34.59649,69.80826,9.407 1744,206.21198,240.7326,28.886063,75.763306,9.123 1744,224.77188,421.48154,22.432327,48.029785,8.373 1744,626.87714,-17.154762,17.792297,45.600574,7.7 1744,622.667,-33.759872,26.585571,75.37605,7.323 1744,552.41656,216.91978,25.380371,47.664627,6.038 1744,619.0718,-17.830292,17.544678,43.733086,5.682 1744,378.8786,230.20638,20.686096,38.999985,5.662 1744,-11.998346,477.90585,30.072418,63.638153,5.61 1744,-5.904048,-18.45657,17.883377,43.575962,5.528 1744,-11.43852,-32.69499,29.83904,72.794586,5.509 1744,200.89197,305.97925,36.17343,51.005493,5.488 1744,201.29922,429.4148,19.908997,37.212463,5.411 1744,626.51697,488.55646,20.656738,45.19452,5.364 1744,-6.176716,489.5192,18.896427,41.721893,5.327 1744,583.2954,412.4573,71.3916,175.5328,5.171 1744,612.67,455.54883,39.6933,105.94385,5.156 1744,268.42328,296.3327,30.305328,60.132874,5.025 1744,-22.019691,401.1847,79.85025,176.51093,5.018 1744,613.5355,-17.477856,28.077942,71.85779,4.951 1744,-18.070826,-65.2565,56.816704,149.0417,4.944 1744,4.5814095,202.07352,30.806427,62.91104,4.942 1744,602.84644,-54.207832,53.496033,134.51321,4.911 1744,392.56897,118.10664,22.298706,40.978302,4.884 1744,291.28882,309.66605,32.909668,64.38052,4.879 1744,611.22266,-15.977064,17.037354,40.721275,4.84 1744,585.81134,-100.24301,75.62915,234.57597,4.799 1744,197.13066,252.23978,30.227493,72.70709,4.753 1744,409.45435,217.84073,22.707245,49.79004,4.709 1744,217.7307,238.61015,30.43013,79.91307,4.615 1744,-72.56242,268.2707,200.09117,459.38794,4.582 1744,535.81323,311.94263,144.0581,341.15472,4.551 1744,-5.6450467,222.63359,17.660042,43.479843,4.548 1744,490.03723,-178.06561,234.95703,423.4585,4.437 1744,493.24835,226.08554,237.97937,515.7113,4.37 1744,45.48707,313.16867,32.565765,63.412567,4.236 1744,-36.909374,-128.24973,118.082565,279.09152,4.17 1744,281.86316,317.8464,21.62967,38.373444,4.106 1744,125.958954,270.4249,27.745865,62.224396,4.101 1744,-5.3233314,334.51053,17.58698,35.58676,4.08 1744,1.3527298,208.05247,22.51429,46.0625,4.071 1744,276.07306,309.3416,32.809143,61.614532,4.045 1744,14.376782,210.88477,26.30708,42.387894,3.93 1744,288.4393,325.1986,21.803772,36.881165,3.925 1744,188.63205,293.04507,33.574203,60.993378,3.873 1744,598.0565,190.50305,35.512268,88.95679,3.852 1744,602.46375,-16.753845,16.98236,40.49646,3.817 1744,268.19583,267.94705,57.678528,125.857666,3.79 1744,315.9156,211.54753,15.655457,31.547424,3.788 1744,-70.96332,-187.18631,211.28717,452.35757,3.755 1744,618.3985,226.07388,20.775085,55.33969,3.741 1744,284.14215,296.50797,30.590454,58.216278,3.692 1744,391.43033,193.41766,33.836975,67.02692,3.676 1744,554.66113,209.8699,20.697876,33.744507,3.653 1744,282.3743,289.91113,58.262634,134.456,3.647 1744,606.93774,-32.81597,27.380066,73.724014,3.625 1744,261.1954,309.00284,30.87262,63.556976,3.625 1744,621.7474,3.6316566,26.263245,73.21153,3.623 1744,257.78043,289.2134,45.68985,100.107056,3.623 1744,196.78795,409.18192,27.577408,63.262268,3.614 1744,72.89925,295.98016,32.22383,66.31894,3.598 1744,181.04018,272.64087,30.217743,74.49213,3.568 1744,308.45538,305.78607,32.440186,69.60043,3.539 1744,274.38333,316.64334,20.480377,39.056152,3.537 1744,203.61038,242.36415,53.29242,118.00383,3.528 1744,264.9311,305.1099,22.526733,41.327698,3.525 1744,2.6083512,-16.525126,17.115494,39.627613,3.49 1744,203.9898,272.52124,30.179352,75.513824,3.49 1744,36.679012,278.78662,29.49664,65.62558,3.486 1745,626.906,-17.014196,17.723816,45.803913,7.905 1745,225.05322,418.97675,23.031158,48.735565,7.747 1745,202.03874,429.55612,18.975739,34.903717,7.683 1745,622.8435,-33.85815,26.355713,75.54176,7.235 1745,-11.742892,478.5543,29.776611,63.411163,5.944 1745,-6.092372,489.80942,18.739576,41.752655,5.917 1745,619.0069,-17.933126,17.570312,44.1242,5.869 1745,213.73761,239.41083,27.905685,81.4436,5.867 1745,556.1621,217.16232,29.233643,55.50461,5.808 1745,68.96362,297.57175,30.61998,66.64102,5.711 1745,-11.373035,-32.670685,29.800823,72.83643,5.645 1745,622.1841,246.851,18.023071,44.039474,5.482 1745,209.28159,299.7332,36.677643,55.90561,5.393 1745,410.2031,119.67917,21.669617,45.437622,5.246 1745,126.33298,269.17926,28.247421,67.21246,5.225 1745,612.8209,455.36377,39.834473,105.72461,5.172 1745,603.0567,-54.1617,53.213318,134.82097,5.169 1745,583.22565,412.49335,71.491516,175.70404,5.161 1745,611.1895,-16.016888,17.12262,41.13354,5.119 1745,-6.0776434,-18.26568,18.080988,43.264687,5.052 1745,204.87054,255.77695,29.355606,69.436615,5.018 1745,-21.927277,401.43933,79.78675,176.1579,4.973 1745,626.41016,487.7578,20.947083,46.431396,4.955 1745,277.65662,294.994,27.82959,58.611847,4.949 1745,-18.099678,-65.32227,56.80105,148.6718,4.941 1745,388.3893,306.18805,30.874298,67.29843,4.885 1745,617.1415,6.6911697,20.617798,54.77108,4.858 1745,408.75534,218.38725,23.443756,47.3687,4.843 1745,234.25879,412.6505,30.016724,53.488037,4.814 1745,585.7607,-100.55808,75.67926,235.185,4.807 1745,-6.345047,203.9651,19.231758,45.801468,4.715 1745,363.57498,304.56427,32.87845,59.105865,4.689 1745,535.75525,311.8992,144.07202,341.08078,4.607 1745,-72.69587,268.61832,199.91202,459.48935,4.526 1745,490.12845,-178.67789,234.83731,424.29474,4.524 1745,291.49744,310.07852,32.248535,61.461395,4.432 1745,493.2278,226.30304,237.99533,515.3439,4.376 1745,195.94287,302.98395,34.985657,54.797607,4.325 1745,283.42645,327.8752,18.98233,33.68036,4.3 1745,273.17096,301.1024,20.86383,40.790985,4.246 1745,337.32895,308.6983,34.786896,62.912964,4.238 1745,269.04507,168.66515,14.538788,27.43097,4.179 1745,137.61664,271.2127,20.623276,41.671326,4.179 1745,193.94,306.37323,22.32962,41.57617,4.159 1745,-37.069725,-127.99171,117.80819,279.82205,4.157 1745,20.239267,210.30815,30.944262,63.342484,4.13 1745,360.6467,321.75427,24.704742,40.29605,4.095 1745,12.810614,176.30429,54.36178,129.6213,3.956 1745,562.4173,238.71054,18.358337,38.785217,3.937 1745,621.9727,3.7572289,25.854553,72.92346,3.916 1745,377.6792,227.98676,20.964844,42.236053,3.907 1745,598.5859,193.71735,36.27423,88.37286,3.879 1745,262.13522,167.05536,14.662415,28.230286,3.799 1745,598.4855,-35.343285,28.343811,74.43653,3.792 1745,602.5327,-16.964748,17.052979,41.020893,3.788 1745,2.0677333,491.24213,19.501755,40.07904,3.74 1745,-70.93698,-186.66255,211.19458,451.55048,3.739 1745,267.52475,258.83807,57.29187,120.46753,3.734 1745,-8.673801,69.81652,38.439236,104.59528,3.727 1745,258.52097,290.473,44.06607,96.41882,3.708 1745,262.79538,375.51367,83.89554,164.19537,3.693 1745,371.41708,316.02917,32.511444,62.276306,3.68 1745,140.43355,270.3523,28.160538,59.8244,3.675 1745,197.1835,409.74542,27.924805,59.631714,3.673 1746,626.84656,-17.282972,17.8125,45.393517,7.443 1746,622.6394,-33.526627,26.591858,74.87173,7.366 1746,419.46533,122.62138,19.446564,40.47078,7.139 1746,214.52493,252.36823,28.417892,75.32587,7.13 1746,92.82593,295.28827,31.522156,64.9346,6.543 1746,408.42697,221.13255,23.584747,47.30986,6.463 1746,216.26923,296.759,34.319244,51.23828,6.412 1746,3.9460766,327.67035,16.124762,26.649475,5.749 1746,-6.347638,489.2036,19.08471,42.353333,5.512 1746,233.4954,403.036,20.860962,42.89099,5.494 1746,-12.177514,477.45068,30.48602,63.70691,5.49 1746,619.00256,-18.018839,17.581543,43.630592,5.423 1746,-11.399078,-32.53526,29.821032,72.21077,5.307 1746,603.1331,-54.05191,53.2099,134.38948,5.219 1746,-6.1723614,-18.809332,18.142008,43.80401,5.175 1746,583.36273,412.12653,71.35773,176.41205,5.071 1746,612.7959,455.72235,39.3891,106.00696,5.069 1746,-22.2048,400.6928,80.077194,176.6399,5.017 1746,207.04474,263.8772,27.575226,74.42944,4.867 1746,-18.115955,-65.08425,57.045948,148.25702,4.852 1746,616.80084,6.618202,21.0896,54.337982,4.831 1746,626.5294,488.30157,20.650208,45.851196,4.812 1746,-73.12071,267.89697,200.75754,460.0028,4.792 1746,-3.5997252,320.89603,15.51063,32.61148,4.768 1746,595.9586,264.87732,16.703064,26.728882,4.764 1746,585.72266,-100.72169,75.81677,235.06616,4.757 1746,536.20435,311.0827,143.69653,340.84967,4.687 1746,226.65643,254.0636,31.09372,70.74927,4.654 1746,292.16318,301.69586,33.68759,62.70691,4.643 1746,573.03394,264.0649,15.445068,24.569489,4.641 1746,611.15564,-15.726434,16.896057,40.279217,4.604 1746,225.07616,238.31226,18.975021,45.57733,4.572 1746,210.52722,410.05106,19.265549,38.7269,4.555 1746,613.2996,-18.10042,28.494934,71.408516,4.552 1746,354.19513,232.139,32.141052,80.62225,4.541 1746,493.30807,227.25507,237.8851,515.21124,4.423 1746,604.17017,265.24796,16.123962,26.330292,4.361 1746,490.17828,-178.0328,234.79498,422.68167,4.349 1746,588.83997,265.46432,16.52478,24.952423,4.299 1746,618.9873,262.41388,17.476807,36.226257,4.27 1746,363.19333,390.8878,32.83731,59.50183,4.218 1746,369.7019,224.5412,21.533386,49.558258,4.181 1746,-37.02099,-128.04495,118.101395,279.84567,4.086 1746,621.25397,-3.5187378,27.998596,74.72924,4.065 1746,219.42221,241.13913,18.106903,48.893036,4.053 1746,602.5659,-16.907156,16.735168,40.53768,4.013 1746,580.4192,264.26727,15.496399,24.365204,3.948 1746,332.9447,390.05817,29.284576,53.56952,3.884 1746,-8.901932,71.1971,38.737892,103.67622,3.839 1746,581.49554,-32.97887,28.154053,66.80178,3.808 1746,598.2856,-34.28187,28.562378,73.675354,3.804 1746,276.7959,287.1252,29.554688,55.49173,3.789 1746,363.1986,298.28152,31.087036,63.780792,3.781 1746,224.43971,280.45667,44.08867,86.48102,3.759 1746,153.76999,265.06686,20.031769,36.924652,3.747 1746,-8.209847,151.89188,37.478603,99.85388,3.725 1746,410.50977,218.80319,33.004333,66.56409,3.705 1746,147.53088,272.2533,28.94905,62.286438,3.701 1746,424.7567,207.10344,21.28125,40.132706,3.7 1746,281.80853,310.9563,21.580688,32.704834,3.695 1746,613.2366,179.4151,35.888916,103.05176,3.692 1746,-70.6915,-186.6032,211.01793,451.1186,3.674 1746,205.64896,254.4607,50.24385,110.62787,3.673 1746,589.03046,280.24136,16.399902,28.942657,3.664 1746,577.55023,-18.30072,18.844666,39.887554,3.636 1746,254.58876,257.71936,52.885025,115.256134,3.588 1746,284.0012,244.11914,56.186768,119.33429,3.569 1746,138.79549,265.82697,21.625198,41.63849,3.563 1746,425.6054,135.55614,17.663483,39.87755,3.552 1746,288.95026,309.7446,22.887878,35.75592,3.547 1746,525.257,230.5769,31.32965,60.15735,3.542 1746,236.5963,273.27606,53.63591,118.00394,3.523 1746,597.6747,188.78488,38.09082,94.247284,3.499 1747,626.7135,-17.584555,18.092285,46.383488,7.926 1747,432.05713,117.72377,21.508911,38.858673,7.857 1747,230.6334,243.91656,28.480606,72.459595,7.192 1747,622.5563,-34.02887,26.692383,76.870415,7.17 1747,226.18561,238.97986,20.839172,45.171814,6.195 1747,618.6425,-18.832645,17.849487,45.725197,5.755 1747,-6.002365,-18.847408,18.00848,43.430122,5.714 1747,370.38712,228.9101,20.435303,39.37445,5.596 1747,355.23026,354.24738,32.410583,55.628357,5.427 1747,-8.9096985,465.04587,37.64488,91.79062,5.412 1747,-11.575475,-32.71685,29.93644,72.00341,5.399 1747,-6.2077065,489.81885,19.038996,41.622986,5.362 1747,618.57043,226.2577,20.57666,54.36711,5.198 1747,614.4247,-6.397146,26.512695,72.8435,5.151 1747,583.123,412.31165,71.601135,175.89807,5.132 1747,612.7671,454.89868,39.71997,106.82709,5.119 1747,409.1902,223.66443,22.71933,44.654663,4.97 1747,-18.157732,-65.2569,56.9776,148.43092,4.919 1747,212.8553,251.755,30.5271,61.88568,4.894 1747,-40.466003,366.61148,111.02639,273.9105,4.881 1747,-73.19934,266.9865,200.8948,460.36505,4.87 1747,626.47314,488.19193,20.952454,45.74814,4.838 1747,535.86145,310.04425,144.13745,340.60126,4.756 1747,603.3751,-55.19608,53.245728,136.83606,4.723 1747,-4.8461957,234.20389,17.466337,44.34619,4.694 1747,158.69048,267.36633,27.648926,65.62152,4.687 1747,493.5457,228.13617,237.34592,514.4083,4.56 1747,-17.856937,436.11365,55.692616,138.99469,4.557 1747,585.823,-101.685,76.02875,236.85207,4.536 1747,227.7166,376.914,19.106354,37.14447,4.493 1747,591.1074,214.92372,30.303772,66.58861,4.347 1747,610.91296,-17.090368,17.620117,43.04202,4.297 1747,490.3811,-178.4555,234.70648,421.95456,4.259 1747,597.7872,192.04703,37.212097,86.007935,4.074 1747,221.78436,261.36993,28.932938,65.708435,4.065 1747,-9.29927,115.072876,38.535915,104.98236,4.062 1747,-37.177116,-127.81374,118.07539,279.93643,4.054 1747,-0.16534686,224.83531,24.756807,69.259415,4.028 1747,555.59705,219.95818,28.478333,59.535934,4.017 1747,-14.9650955,151.17827,49.274246,143.51436,3.967 1747,-8.724684,71.08868,38.486458,103.29777,3.938 1747,-4.6424537,204.93866,16.765308,37.15953,3.891 1747,411.48923,220.90726,31.41867,63.62091,3.863 1747,252.91327,355.99084,27.017548,53.804108,3.814 1747,-5.2845707,301.7179,17.777172,36.06131,3.734 1747,606.9552,-35.055973,27.807983,78.39425,3.718 1747,-15.115255,213.88147,49.52501,145.7453,3.707 1747,-5.265683,279.1692,17.232855,43.572174,3.705 1747,221.25806,230.73318,49.940247,128.28772,3.703 1747,-70.52536,-186.0653,210.72229,451.31128,3.678 1747,257.8099,358.71994,18.673431,32.903625,3.674 1747,132.24275,268.34335,31.894394,67.32376,3.665 1747,363.4004,297.62314,17.415466,31.833069,3.64 1747,423.08505,224.04791,25.038147,46.356934,3.624 1747,332.79968,352.44617,30.222748,55.155365,3.615 1747,2.5785108,-17.104118,16.980423,40.179195,3.596 1747,-10.311241,264.09723,28.641895,70.30054,3.565 1747,29.84591,171.06102,51.346016,128.54219,3.564 1747,229.29166,223.17288,28.164795,62.235382,3.54 1747,122.99962,278.86212,28.596207,64.88437,3.535 1747,560.875,217.1959,20.983704,38.819504,3.462 1747,625.6627,12.724352,19.17279,53.537613,3.455 1747,-10.167685,215.34836,27.705988,68.25256,3.448 1747,341.49286,229.56494,29.27118,75.58563,3.428 1747,613.6189,83.71467,35.445435,105.56899,3.425 1747,613.0319,163.18861,35.153503,102.123764,3.385 1747,-10.969475,303.36304,30.658775,61.93799,3.367 1747,237.26454,353.54782,27.100967,63.65988,3.33 1748,2.885834,255.42392,20.38832,55.381348,6.886 1748,623.0688,-33.277096,26.83899,73.927086,6.781 1748,626.6495,-18.231937,17.85675,46.017063,6.653 1748,347.12177,343.06476,33.953705,56.287262,6.172 1748,131.3643,277.50983,28.221344,65.14972,6.149 1748,-0.92146516,218.07698,25.727274,77.90791,6.08 1748,-6.221621,488.9548,18.90333,42.380035,5.774 1748,-11.505904,-33.066807,29.799335,72.927505,5.52 1748,-9.070667,464.6925,37.713375,92.16565,5.505 1748,-6.217271,-18.601294,18.196888,43.354485,5.452 1748,-0.35515547,265.60318,26.187485,72.66498,5.326 1748,225.01044,259.82016,21.856003,47.141968,5.203 1748,626.5032,488.26224,20.620789,45.66983,5.084 1748,583.21954,412.11795,71.46539,175.93808,5.077 1748,-9.057317,204.94963,28.827873,70.36125,5.056 1748,-73.38984,266.62177,201.5391,460.8908,5.026 1748,240.3917,243.8835,27.199463,65.17876,5.011 1748,616.353,224.29607,22.19403,54.53804,4.969 1748,-18.033407,-65.50774,56.68505,148.96674,4.969 1748,612.97156,455.0539,39.388184,107.20404,4.95 1748,504.9431,248.25566,20.367798,34.568253,4.915 1748,371.16208,229.73698,20.698029,37.387497,4.904 1748,-40.835934,365.02463,111.54112,275.51102,4.89 1748,339.98776,235.94832,30.447296,75.07356,4.816 1748,603.1926,-56.67896,53.466248,137.81839,4.775 1748,0.4347384,203.95671,20.61591,47.13832,4.717 1748,536.07776,310.86398,143.60425,340.29605,4.63 1748,332.54144,340.8212,33.26703,50.943085,4.554 1748,493.39264,227.56012,237.4721,515.1808,4.499 1748,12.670744,188.94147,52.687233,137.39813,4.443 1748,117.46585,281.8193,32.510574,59.001465,4.427 1748,-17.915945,434.86063,55.675102,141.03946,4.411 1748,562.58765,-130.18356,113.512695,280.37222,4.404 1748,563.3425,214.74542,30.805786,61.10797,4.271 1748,490.3263,-178.72922,234.8711,422.33017,4.182 1748,618.7592,-19.328335,18.06366,43.864574,4.166 1748,233.87709,361.3113,20.01175,42.14807,4.136 1748,-37.598385,-128.43939,118.42694,280.43497,4.052 1748,-4.9143724,228.7958,19.049221,50.438507,4.017 1748,-7.819929,231.71881,38.74903,100.71875,3.99 1748,-4.7890396,194.45386,18.54572,46.04123,3.87 1748,285.0483,218.17627,15.103516,29.67424,3.823 1748,226.99272,245.33752,41.64357,97.26648,3.814 1748,-3.6315732,261.2465,18.05481,47.117798,3.726 1748,418.75168,191.47002,32.087402,68.73802,3.724 1748,75.15273,220.47949,57.378548,123.39441,3.721 1748,217.41875,261.12283,21.152191,46.314606,3.702 1748,556.6695,132.71432,16.242065,27.828918,3.683 1748,589.3246,215.62494,30.494507,66.3978,3.671 1748,573.1356,136.6413,15.386963,24.723465,3.652 1748,-70.478745,-185.75276,210.6877,451.27954,3.637 1748,259.9953,345.65015,26.945984,51.81488,3.591 1748,348.32578,217.71768,54.1297,132.71408,3.587 1748,620.4158,94.74298,16.470337,39.05368,3.557 1748,564.28455,139.44594,16.730286,28.107422,3.53 1748,359.53537,343.20987,34.52823,62.463806,3.512 1748,2.334559,203.78304,31.159098,69.985214,3.488 1748,165.89134,265.38898,27.198074,61.478394,3.478 1748,231.83621,232.2831,26.816986,65.80138,3.459 1748,-9.788545,356.64725,38.940464,107.56845,3.451 1748,-9.908874,176.31442,30.210888,67.925415,3.438 1749,0.21064162,219.40898,24.280687,85.81831,8.915 1749,-0.5666828,259.50885,27.648945,80.86597,7.036 1749,623.08844,-34.022503,26.537292,73.14157,6.98 1749,370.22824,230.1448,20.421936,35.325317,6.64 1749,216.4569,264.06592,22.34645,42.674774,6.449 1749,627.09094,-18.704231,17.598022,45.530827,5.972 1749,227.8021,270.82172,32.619476,56.229004,5.962 1749,-5.9183455,-18.556248,17.916683,43.23497,5.742 1749,-8.848784,464.5491,37.63534,92.12283,5.413 1749,352.27924,348.03873,34.62451,58.503204,5.385 1749,-11.526431,-32.58656,29.887508,71.77104,5.384 1749,-8.9761915,191.52452,28.732346,72.5771,5.326 1749,-6.230457,489.53455,18.941338,41.974487,5.245 1749,129.17627,282.97885,25.397964,58.239685,5.16 1749,612.92487,453.9676,39.805237,108.664,5.105 1749,583.20276,411.62436,71.5329,176.48074,5.062 1749,-73.48724,266.16397,201.57869,461.4188,5.031 1749,-18.054115,-64.48748,56.68484,147.47148,5.014 1749,626.5715,488.09805,20.62732,45.86441,4.924 1749,473.0978,247.95528,20.314362,35.837112,4.922 1749,338.84784,231.69377,30.377625,79.21199,4.834 1749,-40.81848,365.56485,111.470024,275.38913,4.82 1749,536.0941,310.8257,143.77966,340.34445,4.725 1749,-4.6159973,204.52916,18.45266,43.51921,4.639 1749,603.54834,-56.92347,53.09375,137.93515,4.616 1749,493.36932,226.80878,237.32513,515.1112,4.555 1749,-4.835432,223.22878,18.964382,47.261765,4.501 1749,399.9892,176.82605,30.94043,81.50409,4.44 1749,0.1446855,215.23833,21.327906,45.307144,4.418 1749,-7.703991,244.20782,29.18623,76.40613,4.345 1749,-17.620762,434.5469,55.33161,141.79843,4.265 1749,239.34668,279.90875,24.631104,41.77362,4.264 1749,340.95868,348.86584,33.854523,52.127502,4.261 1749,585.47253,-101.8198,76.82092,237.06268,4.214 1749,164.5598,263.69034,26.818039,62.950745,4.211 1749,-37.17151,-127.42108,117.99307,278.3515,4.156 1749,11.78144,198.76956,55.760506,138.32101,4.065 1749,490.58167,-177.85086,234.67865,421.41467,4.057 1749,-15.001013,157.24973,49.779427,141.94382,4.048 1749,2.220205,216.12401,39.149166,107.56059,3.997 1749,323.54608,342.923,32.019135,55.315857,3.966 1749,547.33563,134.6279,17.764465,35.183746,3.96 1749,229.02655,342.16486,27.442108,66.9892,3.939 1749,568.9939,210.20554,34.728577,63.607666,3.868 1749,-5.287299,188.17334,18.632183,42.777237,3.833 1749,220.96915,243.12357,52.87329,122.951935,3.794 1749,1.8601489,207.21524,30.582714,62.928894,3.756 1749,-70.60118,-186.30156,210.85638,452.65155,3.752 1749,250.25027,350.60907,20.499176,43.41391,3.733 1749,285.88098,209.62599,13.13855,27.715958,3.726 1749,2.717582,-16.880718,16.996647,39.958073,3.716 1749,276.81775,266.48724,30.214417,54.69922,3.708 1749,285.33014,198.18507,13.445251,27.148575,3.681 1749,301.80588,209.33153,14.199097,28.384048,3.638 1749,308.20102,209.01364,15.45517,30.139389,3.633 1749,62.224777,173.39888,52.761826,127.45964,3.613 1749,-3.4994793,264.00168,18.141537,53.070496,3.588 1749,595.47046,-47.82113,43.764465,102.336845,3.574 1749,-3.4089441,243.72331,18.601196,50.70656,3.566 1749,587.3347,213.2928,33.09137,64.82912,3.555 1749,-11.003944,277.54227,30.40969,70.07449,3.489 1749,221.8034,240.80847,31.190674,62.529236,3.474 1750,-2.2148228,212.69173,26.597395,80.054184,8.755 1750,458.0559,242.3063,20.875336,37.920715,6.371 1750,627.18445,-18.563244,17.385315,46.15833,6.271 1750,-5.7646456,489.8543,18.164066,41.328552,6.261 1750,-13.106875,-41.53665,42.052425,104.13509,5.825 1750,-8.85132,465.3664,37.72897,91.55792,5.761 1750,603.55347,-55.29895,52.979492,138.04803,5.594 1750,217.70413,261.15924,20.53714,44.154327,5.559 1750,623.2471,-35.063473,26.374146,75.20733,5.356 1750,626.50134,488.29474,20.642334,45.816223,5.344 1750,122.60542,280.29834,31.511093,66.215576,5.34 1750,346.84265,348.10825,32.680664,55.380524,5.338 1750,231.86206,274.9756,23.947342,41.349457,5.32 1750,612.7349,455.88422,39.7666,105.84241,5.255 1750,583.1397,412.1062,71.51636,176.1604,5.209 1750,-6.0936365,-18.482979,17.907356,43.368332,5.181 1750,226.58432,364.67783,18.5681,41.054565,5.03 1750,-73.32793,266.6813,201.33128,461.07285,4.949 1750,-40.695457,365.66095,111.212074,274.96613,4.931 1750,-5.1783752,300.0866,17.774052,37.100952,4.861 1750,535.8914,311.2482,143.92548,340.40854,4.698 1750,493.1961,226.4779,237.6524,515.00055,4.537 1750,562.14325,-130.41107,113.8952,280.67743,4.322 1750,324.19727,343.91446,31.68573,53.89514,4.31 1750,1.2410235,209.09726,19.9982,42.42488,4.27 1750,1.9556409,267.29404,19.586777,44.783234,4.254 1750,-19.683327,-87.69772,71.26883,199.00044,4.205 1750,-37.195114,-128.126,117.86597,278.94684,4.128 1750,490.5753,-178.37872,234.78226,421.83237,4.101 1750,297.463,334.06082,19.953796,26.425446,4.012 1750,-8.799942,228.93614,38.67041,102.67085,3.951 1750,459.1774,237.90042,30.78482,57.158447,3.935 1750,68.511154,184.16367,41.772537,93.74979,3.921 1750,2.3263955,491.3955,19.004198,39.60547,3.868 1750,-4.782671,197.00421,17.277187,40.92868,3.861 1750,-5.125873,280.24234,17.746506,41.822357,3.843 1750,162.3388,261.29843,28.34282,65.22943,3.823 1750,84.40877,190.12668,32.009346,61.299484,3.739 1750,277.62408,265.14642,30.041534,50.562927,3.738 1750,-10.630307,275.13077,28.732117,67.615875,3.735 1750,221.17052,234.27658,29.502457,59.171204,3.718 1750,223.2557,346.46786,26.874008,63.174927,3.716 1750,-4.9798965,224.36531,19.439228,54.95552,3.687 1750,206.1918,238.17058,50.990845,122.62837,3.677 1750,360.11752,343.69376,34.1073,62.19586,3.654 1750,595.965,-46.86686,42.480774,103.754684,3.636 1750,207.95633,252.45023,27.829865,64.4704,3.611 1750,-9.691769,118.28639,39.318466,102.39345,3.611 1750,-70.45081,-185.88904,210.76105,451.79916,3.608 1750,464.172,234.35403,21.200989,37.16931,3.583 1750,45.015747,172.89449,29.224777,62.808945,3.581 1750,286.32385,211.12875,12.68277,26.248932,3.527 1750,-11.345153,301.6363,30.610096,61.204773,3.472 1750,226.79767,251.94052,41.13803,95.67279,3.468 1750,-9.104347,181.34892,28.578194,72.10335,3.468 1750,220.1239,264.43924,31.744858,59.61801,3.464 1750,256.51447,350.80054,20.005066,40.22589,3.443 1750,338.77106,231.09875,30.453156,74.893616,3.415 1750,-14.871573,154.99309,48.727386,140.85915,3.411 1750,278.47293,210.60626,13.460846,27.73114,3.404 1750,586.04315,207.63048,32.111755,66.75758,3.393 1750,83.649414,215.508,32.311234,63.103333,3.336 1750,2.5019848,292.50543,18.568953,36.174774,3.323 1750,0.2142787,188.54883,47.85556,139.68408,3.319 1750,619.3142,-19.907343,16.984863,43.856106,3.316 1750,450.95035,240.99797,20.003967,32.702408,3.305 1750,258.8954,346.1038,29.89441,57.073425,3.292 1750,612.91614,64.019936,35.85022,107.67309,3.292 1750,4.859706,213.06,24.263573,49.421875,3.291 1750,290.35306,277.9096,21.402527,34.72632,3.289 1750,18.33108,199.9821,41.806053,101.24983,3.285 1750,306.2045,333.87018,19.842896,27.353577,3.268 1750,77.79532,170.78769,56.17682,128.25919,3.266 1751,457.30542,228.43228,21.164917,37.570404,7.428 1751,560.5476,107.74918,21.191406,41.680626,7.419 1751,116.45877,273.2989,28.991684,65.94937,7.318 1751,627.24097,-17.49783,17.090698,45.24123,7.048 1751,154.83195,256.8161,29.649414,66.56918,6.616 1751,-5.9196525,489.98273,18.494146,40.99768,6.539 1751,-11.497818,480.26486,29.285604,62.038544,6.353 1751,1.3592839,205.81519,21.501818,40.856873,6.102 1751,-5.992143,-18.763393,18.030523,43.890682,5.783 1751,623.3257,-34.49322,26.093933,75.27156,5.768 1751,603.26166,-54.23819,53.085327,138.33856,5.756 1751,-11.444201,-32.552692,29.882305,72.882706,5.638 1751,613.0724,201.68704,25.585083,63.709625,5.497 1751,-17.531359,-64.70912,56.454895,149.0954,5.357 1751,220.59323,258.14624,31.626328,59.330383,5.144 1751,583.2307,411.83936,71.35742,176.28455,5.096 1751,217.8287,244.82721,20.739182,46.34143,5.092 1751,556.85956,101.19177,17.726929,32.346863,5.09 1751,612.89716,454.47702,39.583557,108.0643,5.084 1751,-72.94544,266.83652,201.1702,460.83536,5.01 1751,-21.733362,401.9902,79.68684,175.55466,4.978 1751,-6.3421535,199.79132,19.984425,41.776184,4.903 1751,626.5986,488.03464,20.727173,46.254547,4.828 1751,-1.3776183,177.87048,27.736929,64.27066,4.792 1751,346.92795,345.39246,34.637573,49.928955,4.792 1751,-6.0472097,216.42548,18.048452,39.302734,4.731 1751,231.00813,275.817,25.566147,38.147583,4.714 1751,536.1373,311.31302,143.45319,340.8403,4.64 1751,493.25574,226.40851,237.6969,515.5925,4.516 1751,563.2391,97.323586,28.766785,57.57833,4.516 1751,-5.540408,302.28387,19.346802,34.86783,4.483 1751,286.29752,198.57245,11.99704,26.586334,4.439 1751,-37.154346,-128.16891,117.2733,279.09354,4.39 1751,568.48816,104.36272,19.999268,37.097946,4.323 1751,585.47675,-101.766396,76.62311,236.53687,4.268 1751,224.8456,238.05704,20.584412,47.45056,4.261 1751,206.82558,241.18166,26.813263,63.5179,4.219 1751,2.4490368,491.54718,18.802307,39.14807,4.177 1751,443.17276,232.16023,18.888885,31.291275,4.058 1751,332.74054,340.10254,31.3154,50.424652,4.052 1751,278.70798,205.25468,11.955109,26.518112,4.028 1751,533.3686,-183.58542,146.83331,423.02054,4.016 1751,290.57288,336.64618,19.418793,25.845001,3.995 1751,-5.3377795,179.27975,18.2021,42.99382,3.986 1751,3.892616,204.56519,31.1595,60.74527,3.905 1751,217.37244,270.7389,23.791748,41.475647,3.875 1751,-16.496044,210.28119,51.622433,145.48163,3.874 1751,-0.15410185,317.70694,22.15203,34.66626,3.848 1751,-70.6636,-186.42696,211.11032,451.8922,3.825 1751,82.0243,266.74612,20.963028,37.75244,3.793 1751,-14.612817,121.90617,48.88037,138.41957,3.73 1751,2.4931092,-17.00585,17.157373,40.788467,3.704 1751,619.61127,-18.173496,16.569275,42.531067,3.676 1751,0.19766569,306.00546,22.456436,32.461884,3.656 1751,445.97253,207.99286,28.586823,61.95572,3.646 1751,225.63718,250.18976,43.03006,95.23517,3.641 1751,-12.379646,200.77367,29.9931,66.8271,3.639 1751,-10.439931,166.09695,30.206211,66.66629,3.618 1751,360.18866,335.2481,34.352417,55.858307,3.532 1751,-5.3808155,234.7479,17.187601,39.6196,3.513 1751,205.8864,227.83383,49.80641,114.849945,3.502 1751,3.7429285,192.67459,40.771866,109.35574,3.495 1751,-11.31434,296.79776,31.270596,57.853607,3.475 1751,620.6811,63.3759,17.196655,39.025375,3.439 1751,319.13037,339.45938,27.460083,48.77762,3.429 1752,117.60443,276.52057,27.748062,66.58496,13.05 1752,627.11304,-18.219303,17.314148,45.679157,6.231 1752,-6.119702,489.9035,18.59702,41.92224,6.039 1752,-5.4305935,187.18323,18.940245,40.36284,5.829 1752,626.86835,489.8788,20.30487,43.793854,5.751 1752,623.1322,-34.09104,26.302917,73.82827,5.694 1752,-8.765705,464.55,37.518597,91.5072,5.688 1752,603.09094,-53.94039,53.210693,137.92932,5.621 1752,457.76218,235.08502,21.695404,37.407776,5.503 1752,-6.1823897,-18.721527,18.176804,43.344048,5.428 1752,-11.645529,-32.82758,29.88023,72.39602,5.395 1752,-5.457375,167.95525,18.599148,44.34897,5.338 1752,218.89784,247.70378,20.648178,46.26729,5.262 1752,612.6922,455.47183,39.492615,106.6976,5.154 1752,583.24817,411.68988,71.44238,176.56854,5.121 1752,338.6926,218.67137,32.45276,81.85597,5.117 1752,-17.735653,-63.312553,56.845562,146.2074,5.029 1752,101.98494,275.42273,30.866913,65.54553,4.988 1752,-6.2210464,216.53168,18.14021,38.758728,4.976 1752,-72.75891,267.19012,200.67609,460.94806,4.943 1752,-21.904251,401.20184,79.74964,176.12006,4.943 1752,268.0568,261.5056,30.425323,62.56433,4.882 1752,155.68985,257.79373,29.08142,63.238068,4.717 1752,235.89897,381.49368,19.095001,42.418243,4.63 1752,536.06354,311.8551,143.58252,340.60962,4.553 1752,363.54477,357.08707,33.169586,63.632843,4.527 1752,442.51697,237.36177,18.963745,32.957565,4.519 1752,493.20844,225.96085,237.85455,516.11426,4.489 1752,585.5406,-100.40796,76.04913,235.42583,4.457 1752,-10.866404,175.11296,30.121153,63.681183,4.418 1752,0.3743863,312.0994,21.844606,32.637604,4.388 1752,-37.122746,-127.99252,117.2372,278.74207,4.386 1752,619.441,104.64455,19.671082,50.964203,4.323 1752,218.57382,388.44232,17.511902,37.558838,4.278 1752,-1.2698972,165.69725,28.55019,65.41847,4.266 1752,-5.1991596,308.04407,18.647085,36.30841,4.207 1752,533.05,-183.73276,147.39264,423.85855,4.164 1752,-70.58151,-186.79752,211.35074,452.611,3.913 1752,320.5722,210.44786,53.50122,148.46803,3.87 1752,432.79266,240.11609,22.038116,35.793396,3.855 1752,69.559906,217.48686,30.400482,61.041824,3.84 1752,439.94763,186.6738,22.553955,49.034622,3.82 1752,121.38945,269.68054,21.166336,44.4545,3.775 1752,284.8157,261.85098,31.234283,59.899933,3.773 1752,-5.556123,234.23184,17.25742,40.06308,3.761 1752,40.495907,195.00453,23.915516,41.567062,3.726 1752,1.5147543,180.23314,21.237743,39.460907,3.724 1752,278.4587,200.70737,14.990723,31.310211,3.702 1752,-14.108221,150.37842,47.7759,142.0806,3.689 1752,618.5161,492.5952,20.25647,39.87256,3.672 1752,219.57863,278.27344,31.570068,52.670288,3.668 1752,-17.79753,247.61504,51.290504,130.91304,3.63 1752,493.26257,138.39932,27.149658,76.28064,3.613 1752,273.41608,288.76602,21.960693,40.088013,3.613 1752,94.97138,246.503,54.074364,109.61919,3.606 1752,180.58224,239.28847,37.627075,96.33009,3.603 1752,619.2671,-19.051142,17.16272,42.944283,3.601 1752,292.00238,285.222,32.47592,62.233643,3.596 1752,59.543,220.82692,57.158752,118.02577,3.596 1752,-4.834666,124.38928,16.23704,38.11487,3.589 1752,426.02484,238.35898,19.843658,32.970978,3.588 1752,445.5899,234.1819,29.737976,57.21797,3.582 1752,206.70288,235.64798,26.98761,63.624725,3.569 1752,450.25702,235.74466,20.64624,34.916504,3.549 1752,612.7074,31.789494,36.847412,105.893845,3.532 1752,459.1095,231.57074,31.000793,61.0365,3.527 1752,205.58554,274.3893,28.990692,56.23123,3.517 1752,144.26788,237.95895,49.000732,124.02188,3.508 1752,300.3789,190.41902,15.444611,33.97505,3.479 1752,128.75858,258.47952,21.91269,42.52475,3.458 1752,406.9756,134.99039,31.175964,73.57652,3.442 1752,217.14468,290.68936,23.020416,37.3006,3.441 1752,196.27228,240.6518,40.002213,98.3678,3.431 1752,411.0826,237.68874,33.13568,60.201096,3.425 1752,-0.6785166,193.47572,23.83844,43.123398,3.408 1752,41.728554,239.6307,20.150093,34.677612,3.393 1752,556.8827,185.50511,29.685364,57.46869,3.392 1752,285.5136,194.19777,14.680267,30.726593,3.377 1752,-8.058136,120.98921,38.23529,98.224915,3.365 1752,2.6420074,-17.013287,17.251144,40.12793,3.362 1752,-5.496607,249.81488,17.966982,40.092285,3.348 1752,-1.0081339,222.90912,28.051289,67.015076,3.317 1752,83.146706,261.97592,41.689262,74.696594,3.305 1753,229.90594,419.2135,24.066391,48.773346,13.555 1753,617.30035,272.66925,21.319153,40.090546,6.639 1753,128.02298,280.5023,23.67102,56.37915,6.237 1753,-11.364862,-32.25881,29.651884,72.01601,6.152 1753,-6.288247,489.9001,19.011974,42.01648,6.102 1753,-11.935931,479.75705,29.845234,61.683807,5.994 1753,627.32776,-17.986557,17.146057,45.675934,5.889 1753,603.28894,-54.090607,53.264343,137.8826,5.723 1753,-6.097546,-18.254156,18.118464,43.090256,5.499 1753,623.3509,-34.835396,26.203613,74.39875,5.427 1753,612.6207,454.919,39.891846,106.86322,5.162 1753,583.15955,411.68842,71.57739,176.36237,5.128 1753,-40.6821,365.59396,111.02803,275.00516,4.976 1753,-17.771622,-62.869514,56.879684,145.49992,4.906 1753,424.00647,244.95981,22.055054,41.324036,4.854 1753,3.9277048,268.35495,18.267712,39.871246,4.85 1753,626.38446,488.55466,20.937866,45.567657,4.754 1753,-5.1124616,173.16153,17.167398,38.354126,4.713 1753,-72.69726,268.95343,200.48318,459.24152,4.682 1753,535.9746,312.1789,143.8263,340.52557,4.678 1753,-17.408756,437.39417,54.899227,138.69446,4.578 1753,-36.97786,-127.788605,116.969,278.63733,4.456 1753,493.12982,226.09799,237.79181,515.2158,4.426 1753,418.5411,242.782,19.739899,33.681717,4.423 1753,252.6706,286.72928,31.089111,65.95584,4.399 1753,-0.8889079,201.80954,23.82102,55.015015,4.388 1753,585.6144,-100.440125,76.0296,235.2854,4.283 1753,532.92365,-183.92555,147.45715,424.34406,4.224 1753,-4.9918175,300.84393,18.558455,36.64032,4.207 1753,268.9891,289.85617,30.512756,61.17328,4.202 1753,332.21063,398.71173,29.260376,62.67389,4.108 1753,434.16187,245.30132,18.666138,33.80098,4.098 1753,-5.1154814,199.13779,19.348362,48.50714,4.085 1753,356.6311,492.00415,31.655823,52.482666,4.043 1753,-4.683792,280.96902,16.687664,39.033173,3.966 1753,-70.645775,-187.47905,211.34802,453.01947,3.944 1753,196.7262,243.54453,38.012573,95.80536,3.918 1753,-14.814139,152.09125,48.143524,141.18054,3.916 1753,422.29187,230.51637,36.80423,77.26515,3.876 1753,-16.502893,211.32687,51.17717,146.17447,3.845 1753,443.14246,244.3946,18.858429,33.806503,3.827 1753,280.8406,297.80948,22.332123,41.59842,3.729 1753,161.92458,259.8962,28.95929,66.89563,3.679 1753,-8.652222,120.35684,38.600418,100.101685,3.67 1753,2.5277858,-16.195843,17.212925,39.508858,3.622 1753,1.7589593,491.25592,20.044466,40.845947,3.591 1753,437.45428,229.5688,36.44879,77.869,3.577 1753,85.798386,219.71088,30.128448,61.11624,3.556 1753,0.42443633,244.19725,24.357931,60.24019,3.479 1753,389.226,216.04007,37.661163,76.47406,3.474 1753,459.23416,237.99953,30.9404,63.177933,3.465 1753,62.27658,169.66638,53.603256,131.7121,3.444 1753,-10.580088,10.080772,40.3272,104.370026,3.426 1753,625.87854,277.38107,20.138977,45.800568,3.409 1753,284.29935,310.28864,31.705048,60.968292,3.408 1753,406.6553,227.64642,35.598083,78.39075,3.405 1753,179.17,251.36557,40.62999,100.86087,3.4 1753,-5.65233,221.14456,18.120598,46.62439,3.383 1753,3.7653697,187.75693,39.322483,114.95993,3.369 1753,0.521816,263.2779,26.473446,68.86368,3.36 1753,445.06537,216.43245,28.066895,60.561783,3.349 1753,374.32318,212.00433,36.439697,80.078,3.337 1753,-3.8862977,250.77911,15.752148,38.243896,3.31 1753,0.9030974,189.54735,19.87644,44.654358,3.301 1753,619.33826,-19.360964,16.926697,43.12708,3.296 1753,297.7197,310.55157,21.161285,35.91275,3.294 1753,-10.894968,287.18655,30.629778,63.344666,3.292 1753,2.792598,301.0396,33.912273,51.973846,3.272 1753,309.53442,195.58215,14.6927185,28.528198,3.27 1753,12.675449,156.92758,52.883266,125.42807,3.238 1753,202.01317,423.4252,18.977951,38.88675,3.23 1753,30.097721,167.91032,52.671207,134.07234,3.229 1753,84.95082,162.21844,31.787567,69.17706,3.202 1754,224.90556,431.18073,23.64302,47.075348,12.831 1754,-5.905943,489.8067,18.435297,41.50995,6.452 1754,332.8082,414.0892,25.11444,49.990417,6.402 1754,627.28033,-17.674305,17.278687,44.964573,6.127 1754,-11.521945,479.57132,29.644146,61.762238,5.732 1754,445.47375,211.27109,22.754272,42.918015,5.693 1754,603.31036,-54.486526,53.27649,138.23044,5.411 1754,623.26733,-34.746296,26.377686,74.33923,5.376 1754,-6.0132813,-18.329876,17.975018,42.590366,5.343 1754,-11.414643,-32.4857,29.913445,72.503395,5.263 1754,583.09247,412.3607,71.598145,175.81174,5.13 1754,612.70233,455.3067,39.855774,106.45532,5.04 1754,626.47296,488.5425,20.536865,45.311615,5.003 1754,-40.8396,366.75922,111.09391,275.1253,4.981 1754,26.099491,245.56845,34.59464,62.68042,4.98 1754,200.93086,431.0406,19.23494,39.360107,4.976 1754,-17.752983,-62.438118,56.93893,144.28563,4.784 1754,200.69476,318.3208,23.960266,39.7258,4.757 1754,535.8354,312.16217,143.9165,340.0583,4.684 1754,-72.472305,268.4773,200.53842,459.3496,4.611 1754,-17.152287,435.91647,54.80044,140.08456,4.434 1754,-37.102802,-128.40704,116.84624,278.60474,4.405 1754,493.0983,226.36029,237.88913,515.0527,4.363 1754,413.85693,238.20453,27.546234,58.274414,4.314 1754,451.93173,215.83713,31.616852,61.84903,4.291 1754,532.776,-183.53322,147.8841,424.39468,4.221 1754,-5.6658483,250.93857,18.406939,42.423035,4.186 1754,585.64233,-100.61453,76.09265,234.62744,4.166 1754,10.4331455,252.34505,34.389816,66.15135,4.155 1754,424.73422,246.8926,22.778656,41.942825,4.145 1754,260.41385,287.57437,30.173157,62.668793,4.104 1754,-70.8077,-188.09464,211.51508,453.8729,4.018 1754,438.95816,221.7464,27.821442,58.438446,3.929 1754,274.99854,317.84338,32.795258,62.666046,3.885 1754,2.1789157,491.6973,19.276007,38.922943,3.743 1754,170.58826,246.00658,21.333923,40.683548,3.713 1754,204.39867,290.60764,31.552734,66.489136,3.671 1754,-10.271635,239.15707,30.266075,67.41623,3.639 1754,449.34116,243.06706,21.354462,35.08104,3.636 1754,394.5077,217.08658,19.929138,39.00824,3.633 1754,388.9708,232.3398,27.936066,53.766037,3.618 1754,209.70798,430.31903,19.747925,39.400055,3.616 1754,457.44675,243.52347,21.120453,36.873047,3.615 1754,618.2959,490.6217,20.681519,42.489563,3.584 1754,-10.421635,9.360218,40.036133,104.90602,3.583 1754,1.5952468,258.24677,22.852032,44.736084,3.579 1754,273.54556,310.24274,21.501984,40.862366,3.562 1754,196.33023,417.4683,28.12259,61.295532,3.527 1754,232.68997,422.10565,30.533508,54.001495,3.519 1754,-0.83501697,266.9993,27.918112,60.641113,3.517 1754,264.5698,379.54523,80.53299,161.83124,3.505 1754,44.974922,299.0218,26.702179,36.17755,3.453 1754,458.9104,238.61823,31.727295,62.47815,3.447 1754,276.57385,287.11493,30.464142,61.11911,3.445 1754,-5.278887,276.29922,17.71568,42.231567,3.436 1754,298.693,396.5085,19.359009,28.731476,3.423 1754,586.1452,241.55382,19.285767,34.362595,3.392 1754,2.556324,-16.737986,17.312738,39.516735,3.381 1754,194.6534,420.0459,83.27626,159.3855,3.378 1754,619.15765,-18.598091,17.085999,42.000595,3.359 1754,-14.470134,218.76205,50.60899,130.79272,3.329 1754,-7.592868,136.00609,38.188683,101.24754,3.3 1754,452.26324,193.62463,31.41748,58.06543,3.246 1754,262.09317,317.98703,30.957825,61.587006,3.242 1754,-9.844899,325.03613,38.975998,106.25955,3.236 1754,-6.1462393,294.66437,18.167961,39.660187,3.231 1754,442.17575,234.83795,20.23349,35.40329,3.215 1755,228.85855,420.7248,25.621597,47.28195,13.497 1755,416.85117,247.17172,21.923798,36.77945,6.195 1755,627.0605,-17.829805,17.44336,45.31309,5.896 1755,-11.824808,479.03302,30.094812,61.87451,5.709 1755,603.27997,-54.320557,53.24707,137.86607,5.706 1755,-11.544962,-32.56483,29.929611,72.03234,5.609 1755,-6.159216,489.65167,18.932497,41.385315,5.499 1755,623.0442,-34.5662,26.431885,73.876366,5.495 1755,-6.050195,-18.381,17.92037,42.86731,5.323 1755,612.64905,455.44165,40.082947,106.47882,5.306 1755,-40.215893,361.89294,111.17424,277.7932,5.144 1755,583.132,412.09833,71.685974,176.33044,5.106 1755,-17.619122,-63.181076,56.76788,146.22925,5.074 1755,-5.0057306,281.9021,16.502151,40.659943,5.026 1755,626.4029,488.4752,20.852844,45.698273,4.87 1755,67.92378,201.79594,31.931473,71.23439,4.814 1755,536.0929,311.6192,143.84875,339.70978,4.758 1755,-72.11415,268.86105,200.25717,459.4772,4.754 1755,202.34686,430.1485,18.743546,33.689026,4.499 1755,493.33023,227.46277,237.26498,513.7692,4.49 1755,208.36494,314.13486,23.461517,41.345764,4.451 1755,424.3155,249.29909,22.070007,39.95775,4.391 1755,-17.566763,435.91776,55.382103,140.42642,4.372 1755,-37.226204,-128.23131,116.730965,280.13974,4.266 1755,532.7571,-183.43115,147.8739,424.6713,4.18 1755,585.74194,-100.678635,75.94147,234.95294,4.166 1755,618.51636,269.04,19.059814,37.65103,4.125 1755,569.67194,273.20908,21.094849,39.335022,4.091 1755,447.6443,219.75029,21.545624,41.775833,4.076 1755,-71.1707,-187.45255,211.96971,452.5972,4.039 1755,450.02582,245.01012,21.200653,33.932938,4.036 1755,14.024879,238.36661,53.076042,111.370026,3.963 1755,-7.7491665,327.0987,38.53058,99.65451,3.962 1755,-11.751184,262.2824,27.8119,63.727325,3.951 1755,-4.505074,245.61562,17.158396,38.502975,3.883 1755,445.40527,225.41673,28.868591,59.119278,3.834 1755,-5.7620406,296.8147,17.573376,40.48532,3.802 1755,227.43927,397.27686,39.485077,76.196045,3.784 1755,433.61157,250.67336,20.049774,33.969772,3.784 1755,19.202806,260.9917,31.817167,67.77725,3.755 1755,79.54831,288.56204,23.028442,31.48883,3.721 1755,283.93073,317.69727,17.487244,35.65515,3.719 1755,-5.127251,175.7031,17.317417,43.575943,3.712 1755,2.0020878,280.8574,17.322079,40.123688,3.712 1755,-15.110141,237.09196,50.17118,135.3368,3.652 1755,-14.648437,153.45416,49.0718,141.74475,3.635 1755,-0.11681795,275.11075,53.224594,139.41388,3.616 1755,265.02673,378.53012,79.23926,161.49039,3.567 1755,-5.2447186,224.7702,17.053993,40.856964,3.562 1755,275.71536,310.1902,17.827728,36.491425,3.534 1755,442.7548,252.1181,19.550812,32.70349,3.533 1755,512.97876,259.51437,20.428284,34.23529,3.515 1755,329.1773,408.44885,24.538208,46.308136,3.504 1755,500.40887,145.39072,26.890564,78.85649,3.493 1755,266.57468,311.11826,18.718933,35.387726,3.487 1755,198.21512,296.15332,30.808762,62.881256,3.481 1755,618.9637,-19.206867,17.25824,43.05538,3.405 1755,194.63101,416.81354,82.83478,161.91003,3.4 1755,457.88406,246.09824,21.030457,34.694733,3.392 1755,241.69516,409.65234,30.86554,54.90445,3.388 1755,420.6235,235.95895,38.093475,69.99786,3.366 1755,-12.149923,318.65915,31.036263,76.584045,3.359 1755,460.79523,237.38992,28.17395,61.985474,3.359 1755,356.6455,491.18893,31.840698,52.867706,3.347 1755,-6.50916,355.8963,19.619068,47.68518,3.344 1755,196.70746,242.38123,39.743362,100.62103,3.335 1755,118.06198,221.80449,29.487335,63.654037,3.326 1755,613.9062,482.47424,28.897705,59.111572,3.316 1755,388.768,237.57112,28.105316,51.023514,3.305 1755,180.8739,287.6012,31.718857,69.56836,3.303 1755,209.026,424.5631,19.755219,38.119537,3.291 1755,411.76086,241.70499,29.676178,62.24756,3.286 1755,33.63471,231.50241,44.040203,82.893555,3.283 1755,-10.333239,9.926758,40.082764,105.38187,3.269 1755,88.34611,289.60068,21.7565,29.074524,3.268 1755,11.317757,255.1153,67.73516,175.95398,3.262 1755,2.7505736,-16.424973,16.917221,39.169006,3.237 1755,227.21497,419.14804,81.93027,159.00851,3.231 1756,234.6843,404.93527,20.557312,42.496735,9.568 1756,0.4129362,198.59349,25.45182,78.40651,6.21 1756,417.28348,248.82333,21.021545,35.77954,6.096 1756,627.2754,-17.912432,17.115112,45.347656,6.083 1756,603.29565,-54.42251,53.22345,137.66788,5.977 1756,-8.509081,466.0263,37.33527,90.917786,5.777 1756,4.991108,198.81656,34.712128,98.108215,5.777 1756,623.24664,-34.510185,26.320496,73.888374,5.771 1756,-6.401694,489.68073,19.267988,41.29724,5.613 1756,-11.3756895,-32.69327,29.76968,73.00461,5.27 1756,612.71124,455.6195,39.72296,106.260376,5.241 1756,626.6611,488.4922,20.439209,45.398438,5.088 1756,583.10754,412.3275,71.71112,175.9967,5.083 1756,482.2954,258.67194,20.651917,32.041626,5.063 1756,-6.1890287,-18.426304,18.103,43.321552,5.032 1756,-21.617664,402.40057,79.30269,175.52362,4.962 1756,-72.339386,267.92963,200.00838,460.7,4.873 1756,424.6089,253.25623,19.487427,33.055725,4.866 1756,210.96149,285.777,34.180893,62.08029,4.813 1756,-17.612734,-62.463684,56.78689,144.94344,4.745 1756,536.31854,311.60535,143.6018,339.05383,4.671 1756,493.70496,227.08926,236.6748,515.1494,4.51 1756,72.23061,276.29742,34.77987,77.390015,4.451 1756,2.630552,174.70493,30.547022,83.48132,4.414 1756,447.73907,213.81584,20.78891,42.668747,4.394 1756,300.853,299.5831,31.42398,68.47461,4.323 1756,211.42654,255.06189,31.53775,71.82648,4.322 1756,-37.086998,-127.97927,116.74786,279.7941,4.292 1756,-13.639975,203.62177,47.699043,149.87354,4.252 1756,532.71313,-183.15167,148.07239,424.29813,4.223 1756,585.73413,-100.86379,75.917114,235.14822,4.196 1756,339.42303,385.52734,32.276794,53.032074,4.193 1756,435.01276,251.34561,18.030579,29.335632,4.104 1756,577.6464,265.61612,20.134277,34.886047,4.042 1756,197.15987,242.47809,28.83319,60.05249,4.028 1756,-70.86175,-186.70622,211.21515,451.37988,3.994 1756,96.384766,240.81815,23.372955,44.483887,3.963 1756,538.1268,274.83484,20.449158,38.59259,3.922 1756,144.83853,282.80505,21.204483,27.354828,3.917 1756,69.37336,255.69827,31.69445,74.0842,3.892 1756,443.7863,251.17883,17.843964,28.657288,3.862 1756,-11.089331,209.42435,29.671793,77.89862,3.797 1756,239.90335,398.61987,20.774384,40.614227,3.797 1756,114.31627,275.40793,19.735123,27.970734,3.78 1756,325.7768,390.04974,28.808838,51.29953,3.741 1756,323.03833,297.59897,32.67932,71.7999,3.705 1756,450.47833,240.56876,18.877258,32.64972,3.621 1756,211.98642,411.00803,17.326355,37.72809,3.608 1756,189.40736,270.13382,30.542358,72.329254,3.599 1756,106.74668,273.98,19.467094,28.915955,3.541 1756,263.6966,373.28207,81.26062,164.59048,3.493 1756,412.02368,242.6363,29.18103,58.117416,3.465 1756,-5.097689,225.58768,18.686811,50.532623,3.457 1756,619.3415,-18.877878,16.942078,42.255775,3.405 1756,513.68353,269.7348,20.165588,38.014374,3.404 1756,14.072514,223.63235,52.851025,126.02173,3.392 1756,158.53043,238.97604,51.41121,112.89581,3.373 1756,0.7692611,330.2054,32.07605,71.825775,3.359 1756,570.7722,266.77982,18.833496,32.946716,3.357 1756,-8.813382,274.3229,37.350883,103.62033,3.331 1756,148.38701,247.32877,38.159042,75.96539,3.327 1756,377.28073,380.22925,34.17737,63.32486,3.324 1756,519.3985,258.77148,29.637085,58.783844,3.311 1756,388.29053,235.80608,29.389404,51.131485,3.311 1756,-5.820918,473.72897,16.85157,37.314056,3.308 1756,231.27693,373.2544,81.6093,161.70813,3.285 1756,198.93881,370.56348,82.175995,167.60254,3.259 1756,-8.470398,41.91889,37.935925,104.735466,3.254 1756,4.944152,253.08455,38.038677,99.79164,3.246 1757,234.3435,405.32712,20.670502,44.099884,10.548 1757,627.13324,-18.11205,17.360107,45.6654,6.252 1757,481.0782,254.84686,20.587921,35.538086,6.137 1757,-5.922633,489.80145,18.66037,41.83905,5.672 1757,623.0807,-34.555504,26.335266,74.083565,5.667 1757,603.36365,-54.84811,53.202515,138.23161,5.666 1757,-11.977863,479.3203,30.284851,62.591675,5.664 1757,-11.478442,-32.87795,29.774235,72.76579,5.459 1757,-6.106767,-18.78689,18.080168,43.380558,5.279 1757,22.192005,322.91586,34.55072,81.6207,5.277 1757,612.5788,455.64313,39.93756,106.36224,5.268 1757,583.1065,412.0474,71.67871,176.36423,5.118 1757,-17.588808,-62.766357,56.80281,144.8092,4.974 1757,-72.12018,268.4652,199.83905,460.3775,4.89 1757,-40.40863,365.7411,110.81811,275.59583,4.875 1757,626.58466,488.24368,20.732544,45.765656,4.809 1757,536.2843,311.66354,143.55774,339.22134,4.741 1757,94.30884,284.8772,36.040466,74.439575,4.566 1757,292.3624,305.0807,31.228363,61.86389,4.546 1757,493.6714,227.1799,236.76575,514.74866,4.543 1757,114.232666,272.85028,19.642975,33.027496,4.48 1757,-37.02008,-127.90998,116.70904,277.31635,4.34 1757,-17.6028,434.8435,55.497086,140.2973,4.3 1757,281.29803,308.2427,21.626373,39.549347,4.28 1757,417.25818,250.8386,21.992126,34.195038,4.28 1757,-5.478344,232.30089,17.957129,46.14711,4.218 1757,585.72894,-100.86873,75.93768,235.10893,4.178 1757,532.73303,-183.54166,147.87549,424.7764,4.162 1757,-7.880191,244.84177,37.945045,103.088715,4.101 1757,211.35742,252.69223,31.19516,73.55292,4.072 1757,-70.834816,-187.16264,211.49557,452.23523,4.035 1757,34.26268,241.89487,41.863525,90.91702,3.955 1757,218.67136,409.74002,17.41661,36.94577,3.918 1757,391.9405,230.75482,19.815002,40.891846,3.911 1757,154.80609,277.5968,18.527802,25.583893,3.88 1757,139.24965,276.78207,18.33226,26.581024,3.87 1757,250.04793,391.8605,18.049362,30.079254,3.845 1757,211.70572,411.1825,17.878326,35.44568,3.832 1757,146.9552,276.87094,18.71936,27.180878,3.83 1757,204.58951,243.56741,29.776093,58.126556,3.811 1757,107.41055,218.71426,31.44371,63.52127,3.782 1757,122.73451,275.00116,19.13498,30.600342,3.772 1757,619.24646,-19.573933,17.237549,43.60099,3.726 1757,246.78658,401.49283,21.132462,41.293335,3.711 1757,-10.351227,9.009529,40.077568,104.26194,3.7 1757,2.2411644,490.9203,19.16077,40.592346,3.692 1757,104.716324,275.52405,22.463852,42.805664,3.627 1757,275.53033,295.37488,31.19281,62.467957,3.612 1757,17.679539,230.54385,41.490097,94.67328,3.593 1757,211.82848,287.8939,32.91028,62.429108,3.558 1757,395.05267,219.76678,18.289978,35.232986,3.535 1757,106.74732,263.1024,19.761452,35.20584,3.519 1757,92.80361,259.04782,31.858665,61.49875,3.512 1757,475.53528,251.53969,18.533386,30.860123,3.503 1757,228.72382,388.21426,38.274445,89.87927,3.497 1757,2.7799225,-16.430578,16.942421,39.715076,3.488 1757,386.52045,225.28416,19.816498,37.840836,3.474 1757,348.57178,491.65457,31.573853,51.48709,3.473 1757,448.90326,216.13991,20.356018,39.988846,3.451 1757,198.1817,254.71408,31.103363,76.74103,3.439 1757,65.289444,207.9011,20.619522,40.21161,3.434 1757,213.76067,394.89777,25.966904,60.127563,3.427 1757,130.67947,275.11462,18.96846,28.318115,3.418 1757,529.8736,273.45367,22.244812,39.984314,3.413 1757,-9.548969,154.12184,39.000114,102.51048,3.403 1757,289.2838,310.13437,21.985138,37.858063,3.399 1757,250.922,390.20758,29.691986,56.068237,3.398 1757,-4.5121846,296.77182,16.693405,41.574585,3.366 1757,-10.082597,235.99203,29.123592,69.525696,3.356 1757,387.84143,237.35649,29.976318,54.657608,3.334 1757,263.4391,372.59634,81.53308,165.02335,3.332 1757,338.40866,231.74551,34.719574,84.8324,3.329 1757,349.2473,383.6514,31.805908,56.297363,3.322 1757,199.22783,370.34564,82.00038,167.66669,3.313 1757,-14.483942,271.87463,50.61589,152.2768,3.299 1757,205.68332,220.68936,51.345367,124.03674,3.295 1757,-5.3270507,282.22607,17.122915,40.221863,3.243 1757,231.37216,372.66718,81.49155,161.58142,3.222 1757,5.5763044,466.96933,37.870163,96.012115,3.216 1757,402.59192,219.93643,17.646057,36.090637,3.204 1757,164.87003,247.98474,36.709503,75.391235,3.194 1757,326.00156,386.73505,28.855927,48.211456,3.187 1757,618.2478,490.55038,21.171448,42.71884,3.187 1757,299.17618,374.04645,18.636047,27.121277,3.186 1758,233.10086,421.1458,22.560486,47.812225,14.736 1758,110.7222,274.09348,26.52504,67.348175,7.981 1758,335.48825,403.47128,25.07788,48.54123,7.602 1758,627.2276,-17.898298,17.238647,45.71141,5.895 1758,603.3587,-54.41745,53.1532,137.74843,5.763 1758,-6.062262,489.58112,18.896791,42.469666,5.637 1758,-8.761768,465.10757,37.4309,91.2236,5.543 1758,213.43723,243.17717,27.883453,72.78255,5.503 1758,626.49744,487.76132,20.581543,46.35501,5.46 1758,623.2354,-34.8277,26.270935,74.732414,5.339 1758,-11.306792,-32.714283,29.81506,72.70868,5.272 1758,612.6693,455.29965,39.63501,106.12155,5.198 1758,-5.9552474,-18.483654,17.938108,43.371017,5.186 1758,583.08905,412.012,71.616455,176.2222,5.119 1758,-21.96374,401.69815,79.44286,175.95535,4.929 1758,-17.516956,-62.920708,56.719936,145.44142,4.866 1758,282.9795,315.89005,19.024872,41.42517,4.779 1758,130.84196,275.67703,17.72258,31.088104,4.751 1758,536.05194,311.65686,143.83356,339.8181,4.729 1758,-72.52098,268.46094,199.65685,459.66736,4.68 1758,-4.926049,335.3185,18.192566,35.21805,4.656 1758,208.617,242.50104,21.789581,48.105835,4.605 1758,493.55292,226.88461,236.95703,514.4822,4.463 1758,105.28014,210.05273,31.406105,69.81894,4.312 1758,585.7139,-101.3167,76.00104,235.46802,4.254 1758,-37.09135,-127.8288,116.58763,278.69446,4.203 1758,532.83484,-183.27402,147.78027,424.68106,4.187 1758,209.17206,423.8138,18.863235,38.179016,4.134 1758,155.97627,272.05933,17.45375,24.229156,4.071 1758,202.41306,422.6648,18.026215,38.902496,4.032 1758,94.26439,186.54639,51.67935,121.2995,3.991 1758,277.47076,301.25113,29.268127,66.01837,3.987 1758,416.65857,245.39378,22.056091,37.03853,3.983 1758,1.67974,339.06284,21.402477,34.22699,3.979 1758,424.45776,249.19911,20.689575,35.705673,3.965 1758,-70.86583,-187.04567,211.47853,451.47913,3.943 1758,290.3511,315.97815,19.93814,41.747284,3.926 1758,121.59064,273.61536,18.000473,36.69052,3.916 1758,53.99887,194.1776,38.752747,106.33861,3.91 1758,66.32092,287.23645,32.290497,70.87521,3.882 1758,148.16109,278.66437,17.36914,25.431946,3.879 1758,356.93237,491.01047,31.57077,52.25894,3.848 1758,-8.705666,38.934765,38.16084,107.63957,3.829 1758,595.71985,-46.33799,42.664124,103.71746,3.827 1758,68.57362,195.48402,37.574463,102.020035,3.823 1758,388.11374,232.21536,29.115204,51.8573,3.804 1758,-8.74804,243.29965,38.379658,105.14456,3.802 1758,42.452347,223.28853,20.906227,43.976395,3.737 1758,2.6762223,-16.615576,16.91873,39.84621,3.656 1758,-10.610151,322.57428,29.931208,62.21982,3.638 1758,617.96173,489.962,21.104126,43.17154,3.593 1758,-10.88143,-3.7472534,40.771214,99.46938,3.589 1758,481.06122,250.63504,20.756226,34.43628,3.583 1758,264.4032,376.2659,80.11035,164.57077,3.56 1758,206.48727,224.71744,49.648224,118.76517,3.55 1758,3.935796,334.8311,28.497324,57.462433,3.548 1758,43.8969,308.6782,34.57114,70.58203,3.522 1758,292.47733,299.79214,30.334076,66.37216,3.502 1758,227.4011,397.06357,37.521454,89.12128,3.492 1758,353.63483,265.2541,33.348877,70.80313,3.472 1758,-4.737637,317.40363,16.50893,36.08777,3.453 1758,165.82385,246.43292,35.04135,76.86267,3.443 1758,73.83828,256.52954,32.64705,72.00726,3.43 1758,378.96695,212.46655,18.34793,34.31523,3.426 1758,619.31433,-18.840004,16.913208,42.74667,3.423 1758,85.66349,201.78114,31.140404,72.762436,3.398 1758,493.2547,229.30206,53.093933,105.93524,3.388 1758,194.6748,416.86136,82.91113,161.98788,3.36 1758,357.51288,394.14795,30.973389,59.806274,3.331 1758,116.44832,246.16734,37.95433,80.518936,3.326 1758,309.38956,307.1692,29.743774,69.0488,3.306 1758,216.48979,315.3089,22.351944,37.82837,3.305 1758,-8.532853,168.89423,38.503307,101.31171,3.3 1758,182.42444,243.2723,35.93524,77.95012,3.297 1758,297.73566,314.40836,20.72052,42.030853,3.284 1758,241.67996,410.86288,29.81723,55.880585,3.279 1759,232.95673,423.13824,22.794922,42.7677,12.86 1759,116.203415,272.06793,29.403,68.23639,7.639 1759,214.13866,246.14658,27.539108,69.29932,6.203 1759,627.19653,-18.239109,17.399109,45.67427,5.977 1759,52.358353,309.20615,36.756912,71.2059,5.896 1759,-8.704372,465.98007,37.485687,90.02664,5.841 1759,603.28674,-54.648376,53.316162,138.36768,5.667 1759,626.724,488.70645,20.350464,44.94156,5.649 1759,-6.2533045,489.45044,19.197891,42.87915,5.543 1759,623.1788,-34.641907,26.447998,74.32514,5.532 1759,-6.1590314,-18.891401,18.198929,43.466152,5.484 1759,-11.64309,-32.80881,30.08348,72.418625,5.218 1759,612.7747,455.3308,39.39032,107.12628,5.146 1759,583.2672,412.04712,71.46997,176.26367,5.08 1759,-21.809721,402.387,79.385666,175.20255,5.003 1759,-17.632824,-63.07879,56.81051,145.06898,4.977 1759,335.9926,407.07602,23.19986,47.0755,4.906 1759,73.26175,218.84749,20.69902,46.061478,4.866 1759,536.1176,311.85095,143.79663,339.38953,4.752 1759,128.61353,272.6118,20.050049,37.654907,4.692 1759,-72.39877,268.7824,199.56311,459.01746,4.607 1759,481.01105,255.1256,21.154327,36.07338,4.561 1759,493.51834,227.63394,236.82675,513.47375,4.509 1759,209.44711,249.85507,22.01155,48.286163,4.463 1759,217.67616,311.07166,21.354828,39.149933,4.445 1759,299.33948,390.08093,18.611542,27.066803,4.39 1759,-36.8224,-128.12256,116.61598,277.29684,4.296 1759,532.75476,-183.34613,147.91321,425.07703,4.208 1759,585.82776,-101.304985,75.86853,235.4725,4.145 1759,67.0508,189.50092,40.386093,93.36908,4.077 1759,-70.95233,-187.50885,211.48358,452.6934,4.041 1759,-5.004531,335.33136,17.30164,34.092285,4.035 1759,228.09552,397.34625,39.12552,75.09943,4.03 1759,426.53683,251.89001,18.887115,31.156006,3.957 1759,-8.276272,243.40303,37.852116,106.5128,3.933 1759,435.13788,250.98268,19.203186,32.29811,3.895 1759,138.1408,275.4723,19.028275,31.89029,3.801 1759,618.54346,491.1541,20.237915,41.776855,3.799 1759,595.62476,-47.133545,42.692078,105.10605,3.792 1759,587.07965,277.43222,19.38617,36.689606,3.778 1759,285.46585,308.65225,29.876587,62.525787,3.76 1759,-10.239019,9.476559,39.928078,104.67401,3.751 1759,240.95757,411.91885,30.080246,53.27231,3.741 1759,202.13036,250.57358,20.997147,43.16098,3.714 1759,292.13077,379.8575,18.79007,29.402893,3.713 1759,210.85762,429.5636,17.56189,33.963623,3.71 1759,194.03337,246.8437,20.24498,40.244736,3.688 1759,501.86755,149.17502,27.181702,73.01611,3.634 1759,455.75427,230.3415,19.93518,36.892715,3.615 1759,66.71929,210.67747,21.299202,49.323288,3.593 1759,282.61554,314.3406,20.687775,42.312744,3.593 1759,489.5087,251.30664,19.331055,34.926086,3.571 1759,5.604602,468.84033,37.71216,93.03955,3.571 1759,-4.368536,319.5122,15.128109,33.323395,3.553 1759,155.5438,278.37543,17.75122,25.433014,3.553 1759,213.79037,273.36514,30.992355,77.81058,3.538 1759,436.34418,236.3192,38.413544,69.964554,3.532 1759,317.66333,303.28027,30.380524,71.45526,3.521 1759,-9.17745,151.486,38.770477,102.07535,3.517 1759,450.16595,222.15498,28.891235,59.120224,3.499 1759,172.48474,249.73878,18.435303,33.262985,3.492 1759,101.314705,204.6208,30.224998,64.96486,3.482 1759,420.73676,236.30357,38.40857,69.4171,3.463 1759,264.99136,377.85742,79.50647,163.48071,3.458 1759,354.14993,268.41083,33.452362,68.45715,3.44 1759,580.1216,247.70535,38.285583,79.24945,3.428 1759,-11.681863,330.41946,28.968304,61.485138,3.42 1759,194.55478,417.93326,83.08008,160.9188,3.417 1759,565.23846,248.3558,38.808655,77.67999,3.389 1759,300.84964,298.81863,30.93509,68.61362,3.381 1759,508.75256,233.35623,29.27301,53.55774,3.374 1759,619.2427,-19.177122,17.129456,42.51468,3.369 1759,53.427155,192.92244,40.731262,104.82381,3.362 1759,-0.5995834,334.45932,27.178066,56.526794,3.359 1759,158.73312,241.73787,48.964706,112.25188,3.338 1759,37.41487,209.30344,31.209381,70.67871,3.32 1759,1.9892949,490.70343,19.761324,41.06952,3.295 1759,425.68652,228.42395,20.293762,38.789093,3.286 1759,2.5460887,-17.657192,17.274288,40.66292,3.286 1759,443.19836,250.31773,19.479218,35.245285,3.281 1759,297.15826,377.44623,79.75198,158.53174,3.265 1759,596.95404,241.234,37.723022,84.30754,3.256 1759,2.7380073,339.4332,20.405457,33.065857,3.251 1760,238.14377,415.15112,22.497711,44.61203,13.43 1760,117.971344,277.8208,28.001541,68.05731,9.987 1760,209.71657,420.83295,19.591156,38.360107,6.831 1760,627.1193,-18.14474,17.315552,46.02336,6.192 1760,-11.687878,478.44977,29.797043,63.318054,5.881 1760,603.2923,-54.356987,53.312805,138.02034,5.842 1760,245.89607,410.66183,21.664322,41.071777,5.833 1760,623.17194,-34.78649,26.218811,74.68937,5.717 1760,-11.412826,-32.714817,29.785755,72.933266,5.696 1760,-6.047612,-18.527655,17.946774,43.561222,5.575 1760,-6.1144066,489.32254,18.909897,42.65915,5.344 1760,128.47707,275.28818,19.3797,43.802124,5.258 1760,626.439,488.125,20.849548,46.00122,5.25 1760,612.6349,455.33215,39.882263,106.39679,5.192 1760,583.1902,411.63852,71.63428,176.72812,5.095 1760,-21.87669,402.31097,79.328064,175.40704,5.037 1760,-17.542004,-63.118576,56.758347,145.57126,5.006 1760,291.176,302.4663,32.188995,62.11444,4.81 1760,536.0032,311.8368,143.8468,340.06213,4.732 1760,-72.23672,268.72153,199.41272,459.9556,4.682 1760,204.66681,401.78778,28.247131,64.60474,4.557 1760,282.69403,317.0616,19.66272,39.784485,4.51 1760,493.4334,227.00385,237.09381,514.0845,4.467 1760,138.82481,277.98666,17.829727,30.442963,4.402 1760,-8.325188,243.16124,37.411945,107.70912,4.349 1760,-37.022984,-127.916214,116.705,277.89835,4.247 1760,69.30661,221.96365,38.611244,88.724365,4.213 1760,585.7925,-101.1697,75.89142,235.51178,4.209 1760,532.8308,-183.58441,147.86572,424.89426,4.19 1760,214.40544,246.35606,29.389206,74.198685,4.17 1760,228.03131,396.47455,37.667236,85.27899,4.118 1760,443.84912,220.36249,28.546783,56.121124,4.063 1760,434.3466,244.43288,20.861176,35.182022,4.055 1760,-5.410993,334.75342,18.023756,34.226624,4.042 1760,277.51422,311.24545,30.488525,61.81732,4.02 1760,296.3139,314.3132,21.991272,40.173737,4.012 1760,-70.85651,-187.0769,211.31705,451.54947,3.988 1760,333.98984,398.8736,28.073395,52.611206,3.982 1760,-10.223346,8.922985,39.99116,105.98714,3.947 1760,122.73183,273.75208,18.839554,38.681976,3.942 1760,419.19586,248.93213,18.381683,28.563843,3.928 1760,-5.2943172,215.97787,18.823627,42.55301,3.88 1760,-8.9716015,151.9435,38.72229,102.49794,3.875 1760,595.7421,-47.03834,42.45172,105.09515,3.845 1760,155.14188,278.5698,18.44223,25.036804,3.841 1760,12.050068,200.32489,53.37467,138.48907,3.819 1760,217.32098,415.80185,19.565552,39.22058,3.818 1760,85.38635,223.19911,38.55796,85.05638,3.807 1760,330.96896,198.45383,18.755524,33.258713,3.783 1760,72.419136,289.8844,32.13507,65.67203,3.746 1760,533.221,254.0634,27.140259,55.04631,3.725 1760,420.10983,233.92299,38.788788,73.62593,3.711 1760,58.948994,303.09064,32.719234,72.116974,3.709 1760,82.4364,270.5863,32.134262,69.55179,3.7 1760,264.23926,377.54218,80.6546,162.16522,3.668 1760,490.05307,203.19968,18.949951,37.976562,3.63 1760,180.99028,242.21805,36.39328,83.148834,3.575 1760,1.9027257,338.628,21.777992,33.4599,3.573 1760,426.5921,226.39993,18.21405,31.92804,3.542 1760,403.64163,218.54716,40.316803,77.31908,3.54 1760,2.4970822,-17.071514,17.182371,40.51891,3.485 1760,619.2531,-19.339764,17.023376,43.61178,3.479 1760,-11.456207,330.56818,29.754858,59.781616,3.461 1760,400.80368,247.70993,20.44281,32.494965,3.456 1760,-4.435883,319.97665,15.593811,33.262695,3.441 1760,-11.475153,216.30072,28.66357,67.79385,3.436 1760,194.29399,416.40976,83.2133,161.95578,3.435 1760,249.7824,401.61526,18.858292,29.317688,3.434 1760,217.61504,313.1752,22.19223,39.099762,3.421 1760,492.74106,254.47511,31.167389,62.42769,3.413 1760,5.6095877,467.8646,37.77858,94.74539,3.403 1760,426.78326,246.57623,19.451538,31.168457,3.398 1760,442.5594,239.83063,19.708069,36.14203,3.388 1760,203.50847,418.68616,18.484055,38.790405,3.386 1760,62.194576,202.25,29.775188,69.472046,3.385 1760,229.08017,416.47403,18.774445,41.30835,3.369 1760,101.93015,229.27539,38.731453,82.259155,3.367 1760,586.62524,276.87878,18.617493,35.184174,3.36 1760,308.3291,309.47247,31.209412,64.27365,3.359 1760,618.25494,490.27173,21.174072,42.906372,3.358 1760,356.53305,491.09058,32.282013,52.276733,3.334 1760,298.08255,370.4681,19.811218,29.700012,3.333 1760,296.3515,377.43304,81.289734,158.03613,3.329 1760,474.42413,215.15964,21.84494,46.69815,3.328 1760,449.72076,183.33917,32.932465,72.52406,3.327 1760,30.075996,211.29459,53.233803,134.55896,3.327 1760,2.1900625,490.59506,19.259716,40.65274,3.323 1760,513.4949,266.95752,21.062622,43.53607,3.321 1760,371.36234,263.4207,31.511505,69.99271,3.319 1760,117.80118,247.70547,36.80812,82.082275,3.318 1760,53.290234,231.05902,39.898106,94.900024,3.312 1760,290.1079,309.06744,20.538483,39.076263,3.31 1761,124.258354,277.0859,29.190819,65.4169,8.848 1761,70.607994,304.5962,31.497421,69.060974,6.05 1761,627.2094,-17.760479,17.179382,45.349766,5.904 1761,623.13727,-34.77482,26.22882,74.30026,5.767 1761,-8.721205,465.6412,37.427338,90.85678,5.697 1761,603.36584,-54.63149,53.36609,137.83319,5.553 1761,-6.133933,-18.933086,18.135052,43.787292,5.541 1761,-11.53372,-32.75066,29.802801,72.94148,5.528 1761,-6.247909,489.25327,19.004953,43.049774,5.458 1761,626.71277,488.27908,20.323914,45.818207,5.414 1761,137.06384,270.75455,19.166306,37.917023,5.24 1761,612.84094,455.14456,39.437622,107.18472,5.178 1761,583.1103,411.71936,71.66046,176.51508,5.047 1761,-17.533768,-63.175816,56.773438,145.14247,5.039 1761,220.09283,283.45016,35.38185,58.480896,5.009 1761,-21.744713,402.2697,79.300224,175.55908,4.948 1761,-72.384415,268.0611,199.4481,459.6579,4.787 1761,146.70984,272.81378,18.02626,32.32895,4.765 1761,535.96387,311.3781,143.74817,340.41095,4.728 1761,221.72888,253.33337,30.602493,71.32532,4.654 1761,163.30672,271.93976,17.621964,25.760742,4.638 1761,493.62067,226.8179,236.86871,515.42017,4.519 1761,292.05695,294.54977,30.985107,63.208313,4.367 1761,561.4318,267.798,20.844849,35.550903,4.335 1761,532.7093,-183.3813,148.02002,424.39926,4.274 1761,-37.079464,-127.342316,116.76828,276.14603,4.23 1761,-8.115023,228.12288,37.595085,108.517105,4.229 1761,585.9058,-100.990616,75.64844,235.42926,4.196 1761,299.37494,366.52335,19.221558,26.2789,4.138 1761,432.27585,232.1694,21.222748,37.152527,4.121 1761,411.09705,245.84218,18.89502,30.764328,4.017 1761,419.0704,238.23688,19.46054,33.012787,3.997 1761,171.42252,271.8818,16.95607,24.16922,3.994 1761,-70.788284,-186.9213,211.33377,451.59827,3.978 1761,69.40718,196.66728,38.157425,102.582596,3.952 1761,156.24625,271.0486,17.324738,26.936554,3.848 1761,520.03107,266.11145,21.526306,34.84903,3.845 1761,240.7263,399.05893,21.579086,42.329407,3.836 1761,595.6352,-46.817055,42.712524,104.35815,3.811 1761,348.85483,377.58105,30.869324,56.47876,3.787 1761,-10.368502,8.643719,40.014477,104.67447,3.771 1761,109.20369,224.29633,28.445587,55.59073,3.761 1761,84.23204,202.35574,39.88517,94.772675,3.759 1761,218.83727,406.43805,16.672302,34.974243,3.716 1761,-4.9913692,319.41678,16.03817,32.78293,3.693 1761,53.03171,201.5097,34.8734,67.691284,3.69 1761,263.2272,372.29633,81.24408,165.4372,3.627 1761,618.6922,490.04205,20.149963,43.535217,3.621 1761,276.90488,294.27588,29.71878,60.003754,3.53 1761,12.923832,196.47513,53.551952,140.54443,3.517 1761,231.25537,371.4609,81.5101,164.40726,3.504 1761,198.2852,368.41833,83.01671,170.87329,3.499 1761,-5.8678017,331.83813,17.305748,34.969177,3.48 1761,179.56326,250.36143,18.87555,33.262344,3.471 1761,378.22952,369.18106,33.323242,58.493988,3.459 1761,328.70825,370.98224,79.75134,163.82587,3.452 1761,80.15503,286.08115,30.964424,67.358185,3.415 1761,619.3631,-18.971952,16.998047,42.81298,3.41 1761,179.92465,246.17264,37.588623,78.606445,3.386 1761,348.5298,491.28174,31.650116,52.40515,3.379 1761,2.615943,-16.937548,17.079594,40.310696,3.362 1761,282.3331,308.37775,19.877686,38.778015,3.355 1761,449.8905,198.53918,32.339386,72.58649,3.335 1761,35.680157,209.33136,41.426792,104.12018,3.334 1761,529.9883,150.8692,17.706116,45.547897,3.329 1761,426.4618,239.26227,20.319702,35.78955,3.323 1761,138.13345,247.06445,18.83902,34.90686,3.309 1761,5.534625,467.9744,37.81111,94.838776,3.303 1761,435.74164,217.96704,31.342255,58.77173,3.292 1761,295.95496,372.36884,81.45679,161.8169,3.283 1761,119.216354,246.00089,36.065903,78.79788,3.269 1761,479.86676,218.47325,20.422485,45.2816,3.268 1761,130.56812,267.3795,19.255463,34.3031,3.265 1761,2.7971232,201.6835,31.236748,70.945526,3.259 1761,305.80124,357.29285,19.739563,28.131195,3.235 1761,360.15546,372.87866,80.34387,161.52832,3.233 1761,538.9951,157.44211,17.55194,46.16446,3.224 1761,404.50543,230.5324,37.81836,75.99043,3.21 1761,116.18729,232.04715,29.636932,59.960785,3.192 1761,497.38263,270.79764,20.50653,36.206665,3.169 1762,228.481,271.6505,32.34767,58.891083,8.715 1762,153.15921,269.7905,20.225266,36.106262,6.058 1762,143.72343,267.81277,22.026993,41.73233,5.893 1762,-6.256723,489.0135,19.11685,42.42047,5.876 1762,627.0735,-17.782125,17.461792,45.39093,5.87 1762,603.37286,-54.795746,53.206482,137.56161,5.655 1762,-11.837284,-32.164326,30.297852,71.47223,5.476 1762,-8.63665,465.61774,37.337807,90.72046,5.47 1762,623.01013,-34.660435,26.48462,74.47709,5.411 1762,612.8997,454.37698,39.777344,107.93143,5.277 1762,-6.0945377,-18.693777,18.080307,43.14416,5.269 1762,583.0962,411.78162,71.71741,176.47974,5.092 1762,134.75092,264.91843,27.568604,64.483734,5.01 1762,363.44562,358.63406,32.45868,58.617462,4.997 1762,-17.841833,-62.116413,56.97888,143.90152,4.954 1762,-72.56402,266.83502,200.24213,460.74835,4.95 1762,-21.741444,402.63483,79.420654,175.14178,4.925 1762,92.02255,275.21774,30.127243,73.7359,4.861 1762,218.28386,245.54051,19.849167,39.028763,4.8 1762,-6.0721645,220.21077,18.663433,45.25389,4.7 1762,535.93604,311.09854,143.90216,340.0864,4.694 1762,626.6288,488.37854,20.512451,45.779602,4.665 1762,493.7771,227.43402,236.7074,514.7574,4.585 1762,-37.019485,-127.564606,116.65808,277.19113,4.374 1762,172.04912,269.2015,17.8676,26.460388,4.349 1762,114.19769,241.9913,21.495605,43.719757,4.333 1762,224.54408,246.63898,25.85202,64.95801,4.295 1762,196.54526,236.26805,38.71637,74.537094,4.267 1762,179.14557,269.36377,17.115662,25.576385,4.236 1762,-8.020305,243.96472,37.38215,104.43927,4.222 1762,585.8419,-101.261734,75.944885,235.43456,4.189 1762,532.6497,-183.75317,148.01678,424.454,4.182 1762,182.44225,248.94614,36.71025,71.94757,4.156 1762,213.4918,268.2514,30.31218,64.724335,4.09 1762,52.299038,229.35909,33.04024,68.55943,4.066 1762,339.7979,360.6514,33.05719,55.329376,4.053 1762,195.65735,248.89235,19.213623,31.814468,4.031 1762,-70.69268,-187.22461,211.48273,451.98822,3.977 1762,188.12918,286.52655,33.203796,58.00998,3.971 1762,187.09964,248.81262,19.414413,31.55371,3.969 1762,30.774305,203.69238,52.11994,131.02594,3.947 1762,595.6,-46.198193,42.85132,102.96309,3.932 1762,2.1214604,287.11398,19.867437,45.396027,3.915 1762,146.6697,264.8056,29.941788,56.93808,3.896 1762,209.97267,246.189,20.545273,35.70343,3.894 1762,222.40424,237.88647,47.769897,122.655945,3.867 1762,0.7808709,190.95006,48.386272,134.3091,3.792 1762,-11.054543,209.6504,28.322702,67.133286,3.784 1762,499.1153,247.6274,40.33368,72.71178,3.767 1762,202.34323,242.35342,20.082596,32.876587,3.736 1762,376.91022,358.77982,33.313354,64.85745,3.728 1762,460.20746,256.44144,30.013336,56.07541,3.727 1762,105.80025,250.05182,22.168106,50.34143,3.721 1762,132.41745,235.39665,39.385193,78.56618,3.719 1762,80.83793,289.2445,30.777107,67.932526,3.693 1762,83.37921,218.45798,31.165222,60.558655,3.692 1762,119.830414,247.42886,38.26294,76.730774,3.691 1762,84.69423,236.26416,40.730133,87.35034,3.677 1762,298.96405,351.33035,19.274231,26.850311,3.667 1762,165.03082,235.37396,38.648224,75.55762,3.662 1762,538.04407,268.4062,20.20575,30.787354,3.655 1762,225.96576,379.85486,18.975098,42.714478,3.652 1762,107.68335,252.88983,29.84262,69.30969,3.645 1762,426.52454,232.21352,18.691986,36.253952,3.63 1762,235.16463,248.88824,54.823105,131.92255,3.61 1762,99.09419,262.87653,30.757614,70.99234,3.606 1762,485.1609,256.01547,32.559937,58.601257,3.594 1762,258.78406,362.4834,28.608185,59.569305,3.586 1762,1.5119278,219.30606,22.543667,46.6243,3.585 1762,411.5136,230.38643,18.843445,34.5851,3.573 1762,478.86807,236.9421,52.81015,97.98714,3.568 1762,64.1909,205.7599,51.08458,120.92604,3.528 1762,503.48938,155.21327,27.39264,72.15494,3.52 1762,2.5219715,-17.164719,17.285545,40.074783,3.515 1762,108.224045,236.16138,21.013214,43.04309,3.501 1762,64.012634,213.05197,24.477325,47.362793,3.487 1762,2.0001543,489.80963,19.83637,41.36737,3.462 1762,204.30487,226.79712,56.178925,107.72778,3.453 1762,225.48657,242.8569,18.979385,35.75226,3.448 1763,241.53593,275.35214,21.298965,40.424164,6.625 1763,627.30286,-17.45464,17.118042,44.892254,5.856 1763,61.090008,203.09636,29.483768,72.26622,5.802 1763,623.222,-34.919662,26.274475,74.196724,5.678 1763,-8.845724,464.5302,37.612587,91.82623,5.508 1763,603.1223,-54.068764,53.43933,137.48598,5.473 1763,-6.1819987,-18.73303,18.154497,43.76216,5.354 1763,-6.1577826,489.28296,19.007471,43.16638,5.252 1763,612.785,454.77832,39.98822,106.66791,5.233 1763,-11.401944,-32.90241,29.830597,73.22678,5.169 1763,583.0945,411.83682,71.72363,176.37418,5.092 1763,-72.83328,266.53082,200.49167,460.77216,5.013 1763,229.52573,258.16797,28.337097,60.22928,4.987 1763,76.631775,218.99742,32.797127,72.25511,4.956 1763,94.9261,293.42856,29.704483,61.131348,4.951 1763,-17.597504,-62.74817,56.78881,145.08109,4.846 1763,-21.88847,401.99847,79.72598,175.49261,4.842 1763,142.3923,260.99692,28.913925,63.044952,4.782 1763,362.99725,343.8495,32.46585,59.027252,4.711 1763,-5.2995863,297.79855,16.678312,38.355316,4.71 1763,530.2631,269.8303,20.643188,33.78653,4.703 1763,536.0765,310.9058,143.34985,339.6788,4.666 1763,334.0412,265.8678,30.688538,69.665924,4.653 1763,626.31274,488.20258,21.14148,45.871155,4.637 1763,493.70425,227.42197,237.082,515.10596,4.549 1763,161.61353,263.12604,20.141235,35.33618,4.371 1763,-37.001587,-128.35193,116.63229,277.75952,4.292 1763,260.61966,348.81396,27.01944,55.502472,4.269 1763,64.49708,194.14069,51.03885,118.53363,4.209 1763,585.76306,-101.53198,76.093994,236.0121,4.191 1763,532.8739,-183.904,147.54791,424.81784,4.172 1763,247.78261,282.7983,21.664383,37.780792,4.112 1763,-70.8208,-187.67213,211.77344,452.89087,4.093 1763,419.5263,232.42645,18.494202,38.370453,4.092 1763,124.658066,223.15457,29.293274,56.694366,4.078 1763,225.42543,259.98,20.592575,47.27649,4.05 1763,-4.5391846,318.09726,16.05859,34.17215,4.049 1763,152.56053,262.58792,20.956802,38.902863,4.034 1763,403.25146,220.67122,19.087097,40.325516,4.025 1763,-9.941492,8.031345,39.727962,106.00227,4.018 1763,218.19708,249.39133,18.962769,32.417114,4.002 1763,85.45137,217.09898,38.839462,90.49165,3.998 1763,180.48448,266.66504,17.578033,28.987366,3.934 1763,246.69283,346.2259,27.981949,62.036957,3.86 1763,350.45294,352.86148,33.04135,55.794067,3.824 1763,181.99844,246.62628,38.032684,75.14819,3.823 1763,196.02754,234.6627,39.632675,78.72322,3.816 1763,306.24353,335.11185,19.08728,27.412506,3.796 1763,238.15169,245.24432,27.528214,68.504456,3.785 1763,619.32166,-18.60936,16.961365,42.13263,3.783 1763,343.80154,274.46753,24.126556,48.684845,3.759 1763,236.30258,272.44196,30.193909,65.785614,3.745 1763,-5.83152,283.0341,16.777796,38.705963,3.741 1763,70.96551,214.4973,23.543007,49.479935,3.738 1763,101.36491,221.09334,39.923317,84.531784,3.719 1763,458.45975,237.57092,20.526154,37.87854,3.703 1763,210.76749,241.65662,18.256012,31.856201,3.691 1763,105.71272,225.77988,21.012054,34.227386,3.681 1763,233.71178,364.47278,19.010452,42.251343,3.656 1763,187.50787,261.06622,17.033676,27.845306,3.637 1763,299.30453,335.46158,18.91623,26.489166,3.602 1763,172.13234,264.90463,17.79776,30.988861,3.601 1763,340.54773,343.50354,31.321655,57.352417,3.575 1763,326.58685,345.81186,29.106232,55.117798,3.535 1763,215.76797,249.99501,26.12999,59.04753,3.482 1763,149.40244,245.1083,37.65326,75.17853,3.481 1763,225.77051,243.54498,18.791946,32.93512,3.477 1763,411.10904,229.45755,18.25647,37.393585,3.476 1763,112.56928,225.94653,24.64936,43.371674,3.451 1763,243.4067,166.86646,16.160294,33.466232,3.425 1763,166.22504,246.44312,36.85486,74.97595,3.407 1763,-8.930437,153.44687,38.448143,100.93233,3.397 1763,2.2117019,490.62772,19.632982,41.59317,3.395 1763,460.99747,252.3193,30.310822,60.683685,3.391 1763,222.83247,249.81126,52.38246,130.08272,3.378 1763,455.86887,182.80496,32.888184,73.290375,3.378 1763,121.635704,225.07088,20.884697,35.306442,3.363 1763,206.5004,228.7683,50.873688,116.52724,3.353 1763,396.0292,249.48576,17.930634,30.166306,3.345 1764,239.09427,252.99295,29.458008,57.361176,9.374 1764,107.061264,286.8899,29.101974,64.56311,8.532 1764,146.9618,232.35736,31.473999,58.738342,7.186 1764,2.8396149,321.4393,18.743824,28.788452,6.113 1764,58.975502,205.1518,31.746162,68.08234,6.089 1764,233.41583,262.664,22.74643,41.203247,6.009 1764,-8.810387,465.63925,37.377457,90.6362,5.859 1764,-11.339834,-32.478474,29.951906,71.99027,5.824 1764,247.53906,273.9566,21.265503,36.59851,5.824 1764,262.73138,343.09387,21.548767,44.314514,5.669 1764,603.32587,-54.356117,53.175964,137.62561,5.632 1764,627.2271,-17.919905,17.185669,45.42372,5.594 1764,-6.0768914,490.12653,18.796192,41.467773,5.495 1764,623.06165,-34.85756,26.38208,74.18884,5.332 1764,245.92352,338.6866,27.381256,62.013702,5.215 1764,-6.077643,-18.216244,18.034645,42.573833,5.192 1764,-4.0853996,318.42966,16.551422,32.191925,5.187 1764,626.309,487.2388,21.097229,47.05081,5.16 1764,583.2465,411.9446,71.562744,176.22476,5.129 1764,612.689,455.25836,39.825073,106.33734,5.07 1764,-73.152084,266.3982,200.97801,460.95044,4.996 1764,74.48016,209.95572,32.281166,68.54025,4.947 1764,-21.976189,401.63037,79.943855,175.88293,4.903 1764,475.99603,261.4606,19.66748,45.358185,4.889 1764,299.31622,328.3391,18.156555,25.653503,4.862 1764,-17.357994,-62.279137,56.542427,144.77571,4.836 1764,-5.360564,276.1353,17.249401,37.180237,4.804 1764,226.04332,259.39328,21.239182,36.56134,4.724 1764,536.03235,310.7563,143.40216,340.10895,4.681 1764,-4.1391144,303.2897,16.205618,33.293488,4.651 1764,306.39835,327.64896,18.549316,26.960846,4.554 1764,493.4325,227.2507,237.43304,514.3904,4.541 1764,354.01892,336.2205,32.593567,57.762085,4.504 1764,-36.9798,-127.61969,116.55301,277.0161,4.402 1764,62.813026,188.82678,51.43725,128.73792,4.373 1764,256.82056,348.01794,20.79599,46.007324,4.339 1764,585.48816,-100.55582,76.036804,234.84009,4.283 1764,411.34793,234.58884,17.61856,34.704926,4.231 1764,24.382664,215.04904,22.854336,46.305786,4.226 1764,490.00983,-178.43993,235.28998,420.2689,4.114 1764,149.09708,255.72072,29.733627,68.64989,4.1 1764,59.29139,311.3364,32.517586,46.79251,4.095 1764,240.72018,353.3038,20.416016,45.927277,4.084 1764,-70.9398,-187.9911,211.51111,453.23645,4.052 1764,418.16058,235.5096,18.324524,34.10341,4.051 1764,93.35647,217.78189,30.100807,64.95175,4.05 1764,158.7028,251.43094,22.131027,40.547882,4.048 1764,522.23315,273.57037,18.349365,31.051819,3.991 1764,100.77028,217.93605,40.55049,90.41258,3.991 1764,314.9479,326.9969,18.380646,27.157959,3.946 1764,169.78119,262.34286,19.38652,34.0365,3.934 1764,-6.0824337,239.82292,18.1848,44.287155,3.907 1764,-2.1531618,204.73505,26.36749,68.57526,3.882 1764,2.441712,306.59164,17.732515,30.524261,3.877 1764,595.4739,-46.066666,42.950867,103.38127,3.843 1764,402.9874,225.52199,18.779327,36.972366,3.813 1764,133.09863,242.12137,31.863907,61.51776,3.809 1764,222.66983,240.76523,52.72235,112.133606,3.798 1764,-9.723667,8.785606,39.418648,107.10009,3.77 1764,31.562962,181.8634,52.648884,128.6117,3.759 1764,619.14905,-18.900467,17.197998,42.498398,3.702 1764,332.99585,335.45404,29.379395,54.353485,3.695 1764,17.639011,200.02444,42.32492,100.469604,3.666 1764,231.29437,335.94748,28.961395,67.92615,3.648 1764,-10.910954,147.48141,29.581123,72.24283,3.617 1765,355.82642,334.58926,32.066467,59.263397,6.088 1765,627.2189,-18.268103,17.346497,45.726627,5.869 1765,-11.521845,477.52615,29.509285,64.6304,5.791 1765,603.0751,-54.277775,53.36725,136.8768,5.773 1765,-6.17789,488.93097,18.988327,42.263367,5.771 1765,-6.1294146,-18.774311,18.171408,43.25534,5.608 1765,118.90014,287.9952,29.162392,60.31259,5.488 1765,255.78104,343.90308,24.990845,61.746307,5.454 1765,-11.431842,-32.437416,29.871437,72.84675,5.418 1765,53.559074,194.50339,38.884933,106.22504,5.386 1765,626.4065,488.04044,20.702148,46.091644,5.288 1765,623.20154,-34.762383,26.30835,74.48406,5.188 1765,-5.59682,309.87036,18.094513,35.721283,5.099 1765,-73.30978,266.1339,201.31265,461.35425,5.089 1765,583.1278,411.63657,71.60669,176.67032,5.057 1765,-21.989576,400.8836,79.97968,176.52905,4.96 1765,-17.17237,-62.423027,56.40274,144.65768,4.944 1765,612.7671,454.45773,39.721436,107.71799,4.943 1765,536.16754,310.48495,143.09631,340.29556,4.727 1765,242.83063,237.11328,43.055878,104.49426,4.65 1765,240.82303,351.27777,21.002258,51.248688,4.581 1765,-1.1407375,308.3513,28.074,50.470123,4.558 1765,493.2321,227.14172,237.46927,514.784,4.543 1765,115.80757,237.1704,32.159134,70.06261,4.503 1765,-36.803566,-128.42119,116.632805,276.58633,4.455 1765,241.93494,273.6064,21.657104,39.83914,4.389 1765,62.021797,192.15253,51.197235,133.07648,4.366 1765,490.1269,-178.70348,235.15509,420.1323,4.237 1765,409.7383,241.56381,19.299469,34.94934,4.216 1765,227.69432,252.04288,42.06935,96.83499,4.214 1765,197.07487,243.4704,38.48851,78.59851,4.211 1765,-8.87294,6.971031,38.955544,107.340034,4.211 1765,585.8794,-101.63452,75.734924,235.21686,4.184 1765,299.26114,329.61862,18.153137,24.138763,4.108 1765,37.528576,194.03601,40.85203,107.304596,4.103 1765,-70.784836,-187.93066,211.34404,453.60535,4.091 1765,245.11108,338.01685,28.275665,62.99814,4.027 1765,212.4159,242.34134,40.41127,86.109955,3.907 1765,129.20068,237.46664,34.007263,68.27753,3.892 1765,137.62315,233.24062,23.33995,46.15056,3.884 1765,13.44882,189.65598,54.00084,139.83627,3.881 1765,-4.6102123,292.05267,16.564285,38.490875,3.865 1765,595.3701,-46.170624,43.059265,103.014336,3.861 1765,178.9791,256.79358,18.402374,31.611206,3.83 1765,306.57965,329.5517,18.269348,24.668518,3.827 1765,458.55283,273.5526,21.165497,40.58194,3.798 1765,-5.1614447,152.94922,18.342121,43.93988,3.786 1765,181.84029,244.12823,38.407898,74.793945,3.778 1765,-8.080544,212.82887,37.405807,105.97093,3.747 1765,331.14914,338.16025,31.28479,50.054993,3.727 1765,449.62512,273.91476,21.451385,39.39502,3.692 1765,515.84906,152.37366,29.747986,84.16757,3.688 1765,287.10294,335.63736,28.62082,59.6481,3.684 1765,59.81762,201.07835,30.156013,60.97679,3.681 1765,437.00824,260.85638,28.676514,60.67993,3.631 1765,-12.537352,311.01712,29.673685,55.89145,3.58 1765,267.2203,342.8221,28.629791,53.357574,3.524 1765,8.095385,316.81866,22.97777,29.49353,3.519 1765,-5.6954727,326.98227,17.828098,36.79547,3.515 1765,345.55792,251.39793,20.778137,39.596573,3.513 1765,332.74155,491.06897,31.69345,52.60376,3.509 1765,2.1093047,490.31525,19.488605,40.185425,3.491 1765,165.5227,242.61153,36.596375,74.54851,3.485 1765,257.6847,249.56165,44.991364,99.59729,3.459 1765,341.01193,340.05402,34.868683,56.449615,3.424 1765,83.693665,213.27252,39.129425,96.60541,3.42 1765,237.57758,244.06885,28.975098,63.410095,3.418 1765,3.4424715,307.57062,18.3073,31.63684,3.403 1765,101.37271,219.81999,39.705307,91.341934,3.399 1765,196.40825,259.78372,16.871796,28.302582,3.382 1765,-8.878948,133.80264,38.98543,104.24658,3.378 1765,303.87552,305.18427,69.14862,178.41418,3.369 1766,1.5644062,226.41772,31.05572,84.03534,8.06 1766,603.3014,-53.30047,53.24768,134.65462,6.082 1766,627.1275,-17.85079,17.36908,45.52464,5.932 1766,-11.475235,-32.559658,29.817228,71.92578,5.76 1766,626.6909,488.5483,20.318604,45.083527,5.559 1766,-8.679085,465.46115,37.401466,91.337494,5.543 1766,623.0614,-34.794666,26.516724,74.27481,5.49 1766,-17.166206,-62.573032,56.112568,146.67894,5.473 1766,-6.060752,488.98532,18.759274,42.300873,5.388 1766,-5.8777456,-17.887007,17.81279,42.34925,5.271 1766,612.6173,455.03915,39.746643,107.160675,5.26 1766,583.2043,412.1223,71.522644,176.15955,5.14 1766,-4.287573,220.50647,17.414404,39.77246,5.13 1766,-73.205734,266.35706,201.53366,460.99268,5.055 1766,-21.773418,402.10626,79.80017,175.68268,4.961 1766,261.5199,361.43622,26.214233,54.47873,4.845 1766,10.377173,185.32062,57.646194,129.66534,4.71 1766,536.1539,310.99048,143.13531,340.73938,4.598 1766,585.5936,-99.5737,75.398315,232.83667,4.56 1766,493.40692,226.8075,237.18024,515.75836,4.496 1766,-10.386126,241.8135,31.820833,76.625336,4.473 1766,-36.84671,-128.74133,116.77313,276.82806,4.404 1766,370.46692,346.38632,33.167572,58.952362,4.384 1766,44.98308,186.2457,54.42184,121.56494,4.379 1766,490.23615,-179.80481,235.52985,422.91562,4.374 1766,-4.30202,205.32144,17.301014,39.345062,4.337 1766,204.13266,261.46957,16.750275,34.527405,4.293 1766,51.346222,206.39497,33.260498,63.65541,4.258 1766,194.48386,256.02386,18.917099,32.61252,4.172 1766,-70.907524,-188.86295,211.7699,455.16864,4.163 1766,180.69858,257.0704,26.407455,60.061157,4.156 1766,186.14505,256.12494,19.450668,33.859802,4.118 1766,594.87274,-45.999928,43.09955,102.52703,4.05 1766,417.00455,229.47133,19.999481,37.469894,4.047 1766,-8.62788,6.9233437,38.36354,106.9655,4.026 1766,0.7870567,225.44128,22.832186,50.376892,4.021 1766,240.84174,283.31485,23.757233,44.602264,3.999 1766,214.21065,241.2995,37.025314,86.17645,3.974 1766,-4.940886,241.18617,20.61641,51.919693,3.915 1766,197.34047,234.80342,37.499756,76.426926,3.892 1766,211.80786,261.35135,16.958801,34.35788,3.885 1766,349.02255,349.03113,32.22406,58.657593,3.845 1766,-9.380836,208.16893,29.23285,69.149,3.823 1766,140.47699,283.36914,28.774109,61.9834,3.757 1766,3.2972956,205.4055,29.102612,65.267044,3.72 1766,240.96222,376.68085,19.867981,41.27121,3.699 1766,3.8202631,291.84915,20.545954,41.010284,3.696 1766,3.825109,251.44504,39.64703,89.390686,3.68 1766,409.68146,231.7469,19.960205,37.171432,3.636 1766,82.788376,199.13751,42.739838,99.34021,3.626 1766,233.72015,246.77481,20.482483,36.60666,3.606 1766,2.8045392,-15.652933,16.85502,38.688652,3.576 1766,63.85055,208.66457,23.324902,42.68254,3.571 1766,405.06635,230.21469,37.459747,77.888,3.533 1766,49.41011,210.3324,22.913803,43.33278,3.532 1766,-10.542325,321.91937,39.349243,107.98901,3.499 1766,-13.427223,232.8305,49.863396,134.46777,3.48 1766,-5.436536,277.41635,18.199059,42.99341,3.464 1766,497.37177,200.13629,20.450867,37.64537,3.462 1766,307.03082,342.2695,18.520569,27.011871,3.457 1766,236.25961,356.05334,28.465485,67.222595,3.446 1766,181.88377,231.4549,36.938797,76.24359,3.389 1766,618.38293,491.11313,20.556824,41.598846,3.359 1766,-5.8756886,311.50067,17.957804,38.187683,3.356 1766,385.8637,221.42007,20.121368,39.572845,3.317 1766,619.18066,-18.342306,17.135315,42.091682,3.316 1766,13.185353,-15.278976,55.01431,130.04701,3.306 1766,-5.211017,185.25728,18.081541,43.704712,3.301 1766,534.55457,147.50638,26.276855,72.4801,3.278 1766,7.167841,288.62378,29.888342,58.20688,3.242 1766,99.02791,306.90613,32.07849,50.29785,3.241 1766,66.474365,191.89828,42.182175,95.37192,3.24 1766,2.0856495,490.25095,19.645975,40.65988,3.226 1766,96.7595,315.04834,24.13874,32.700317,3.222 1767,255.76358,385.27347,21.626495,45.63376,7.058 1767,233.48558,394.9478,18.794754,39.121887,6.682 1767,611.47107,-47.37966,40.645874,103.02781,6.269 1767,627.0669,-17.89544,17.35608,45.148666,5.927 1767,-11.567442,-32.567944,29.833298,71.98502,5.832 1767,227.65921,278.09076,33.08261,61.510986,5.768 1767,-8.774637,464.78125,37.482647,91.99402,5.736 1767,-6.1786613,-18.15664,18.148785,42.99837,5.382 1767,621.6378,477.59375,29.189331,66.86438,5.245 1767,-17.018778,-61.288074,55.971245,144.13058,5.15 1767,-5.8646874,489.35825,18.455603,42.387115,5.135 1767,583.14435,412.04572,71.59448,176.28088,5.123 1767,-40.4176,362.42987,111.47188,278.37213,5.062 1767,-72.49327,267.92065,200.26387,459.62598,4.971 1767,416.91858,218.38614,20.085236,41.996613,4.812 1767,35.872265,187.6515,41.770008,94.099625,4.667 1767,536.25305,311.59863,143.15863,340.54456,4.607 1767,194.93665,247.67076,19.516724,37.850662,4.492 1767,493.38312,226.60703,237.3023,516.01575,4.469 1767,585.6991,-99.725464,75.25781,233.41956,4.467 1767,-36.835686,-129.03777,116.79548,278.5498,4.386 1767,-7.959087,4.528042,37.452785,107.173386,4.349 1767,-17.45338,434.886,55.403877,139.91333,4.347 1767,489.86145,-179.70587,235.87585,423.04883,4.337 1767,158.48288,276.0095,28.706161,59.87027,4.284 1767,90.48969,201.00891,33.28144,60.270325,4.279 1767,39.28601,208.03615,23.002762,46.851974,4.245 1767,263.17358,382.79037,20.507477,43.496765,4.216 1767,197.6437,238.53607,36.08542,87.93329,4.21 1767,409.92706,222.62424,18.903381,38.417572,4.19 1767,385.14722,365.39078,33.615417,66.002716,4.168 1767,-70.44859,-188.62823,211.19533,455.1791,4.139 1767,183.49414,241.70778,36.61331,82.97807,4.135 1767,-8.883628,349.36554,31.867088,77.3425,4.029 1767,200.46553,253.86803,19.556717,37.231155,3.994 1767,207.51053,235.69661,50.90329,124.31749,3.962 1767,402.50592,245.47545,20.35205,34.82988,3.803 1767,427.03796,216.07474,19.25415,43.762085,3.733 1767,210.23772,255.77034,17.540375,33.53737,3.721 1767,-15.958519,306.86267,51.90048,144.88342,3.714 1767,356.90118,491.62823,31.226288,52.024963,3.673 1767,356.49615,242.824,29.10791,71.007385,3.611 1767,44.59002,194.88055,30.081955,56.34726,3.543 1767,230.8281,368.70825,82.21689,164.3601,3.504 1767,65.42049,186.83789,44.994164,99.62695,3.474 1767,-5.274484,140.72015,16.915213,38.51866,3.468 1767,2.8831148,188.78036,40.051743,101.91446,3.45 1767,347.9434,372.52734,31.950745,50.43637,3.449 1767,262.65347,370.68954,81.96127,164.20096,3.442 1767,2.7337623,-16.548952,17.09491,40.084324,3.435 1767,149.66096,221.21535,38.260727,86.53221,3.431 1767,603.7064,-24.53378,51.46295,132.74896,3.427 1767,50.741535,283.82327,33.436108,48.138306,3.361 1767,155.846,311.6664,17.9198,32.269073,3.361 1767,243.19662,393.81097,18.36203,40.61154,3.355 1767,165.65897,241.90399,37.142426,81.41565,3.351 1767,29.07874,234.52536,54.731182,117.22836,3.346 1767,15.1385765,170.4424,53.837803,123.30507,3.298 1767,132.44768,204.62662,40.635025,90.70178,3.282 1767,-4.937564,375.02856,20.57325,55.06787,3.282 1767,145.14522,302.32492,21.952988,36.382416,3.279 1767,589.6755,-53.173378,53.163025,138.16225,3.278 1767,483.08447,265.48764,30.43628,62.35132,3.265 1767,246.70749,365.27136,35.712585,76.670135,3.263 1767,115.71515,201.86212,41.89412,93.48297,3.262 1767,328.0056,368.9754,81.27667,165.96558,3.244 1767,-8.454248,53.723785,38.28971,106.054855,3.24 1767,618.99585,-17.799255,17.324463,41.18207,3.232 1767,42.7016,168.23767,56.190422,129.05524,3.229 1767,229.06451,377.45508,26.589767,63.780823,3.216 1767,197.23434,367.17972,84.79715,169.77603,3.2 1767,436.72772,261.29337,29.111328,59.627777,3.193 1767,213.79915,265.7168,30.480698,69.25659,3.191 1768,248.95767,401.897,21.975891,44.474884,6.379 1768,611.089,-46.9886,40.985107,101.23739,5.959 1768,-8.948403,465.2262,37.73432,91.03497,5.796 1768,-11.376316,-32.761837,29.704197,73.072174,5.751 1768,627.0956,-17.944092,17.414978,44.863228,5.647 1768,301.30923,303.79968,31.05954,59.422363,5.489 1768,-6.051932,-18.674004,17.997753,43.99227,5.299 1768,626.5357,488.40942,20.550232,45.69098,5.247 1768,-16.462662,-62.544533,55.273777,145.54095,5.194 1768,612.7028,455.50323,39.56317,106.451355,5.189 1768,-6.311413,489.39905,19.207415,42.56543,5.14 1768,583.09656,412.19373,71.66528,176.00635,5.11 1768,-73.05156,266.39954,201.69456,461.90662,4.976 1768,231.70387,303.69556,24.95427,42.40576,4.883 1768,228.58208,247.35577,29.890793,82.48273,4.822 1768,-41.003098,361.58295,112.557945,278.47217,4.774 1768,-17.725983,436.93414,55.73059,137.51105,4.718 1768,282.21582,309.44525,19.339325,36.54431,4.645 1768,536.21606,312.40152,143.03821,339.7856,4.598 1768,298.32874,310.87384,20.570648,37.29767,4.541 1768,585.97705,-99.109566,74.80591,232.17029,4.507 1768,489.66217,-180.15298,236.22314,425.15894,4.505 1768,493.30206,225.87909,237.36993,516.15826,4.406 1768,313.1046,308.97253,22.680145,41.561096,4.369 1768,255.5848,394.58466,22.164566,44.91519,4.351 1768,-37.28141,-128.46785,116.79713,277.87732,4.313 1768,226.4555,403.84085,19.300858,42.753937,4.292 1768,-10.039653,287.5768,39.658512,106.74274,4.203 1768,-70.616005,-188.00095,211.29556,454.27222,4.18 1768,410.16162,219.2012,19.381866,38.903503,4.146 1768,-1.3041377,233.4182,27.98658,61.91707,4.12 1768,289.74402,309.31564,20.084137,37.103027,4.023 1768,284.95947,302.92947,30.526855,57.71527,3.972 1768,263.09973,373.15952,81.34247,164.18399,3.928 1768,418.09506,215.70044,20.251343,43.166534,3.862 1768,603.2505,-25.667461,52.597595,132.95004,3.858 1768,129.97968,226.54776,22.648987,39.95746,3.807 1768,315.96365,301.47324,32.19644,63.847992,3.781 1768,402.71942,220.99628,18.612183,37.590363,3.747 1768,-5.747967,233.23853,19.377193,44.049347,3.726 1768,90.93078,277.61902,32.754074,47.629974,3.699 1768,-8.801519,-7.398411,38.41017,104.876434,3.686 1768,231.17651,371.4172,81.64276,162.58066,3.66 1768,217.90237,262.39136,56.002045,130.94275,3.645 1768,328.68793,372.4614,80.34039,162.21506,3.636 1768,2.6260571,-17.741926,17.144108,41.73125,3.624 1768,121.48695,224.9089,22.388687,42.1998,3.621 1768,-5.2705536,137.38089,17.130806,41.96454,3.586 1768,434.74515,215.08853,19.98584,46.54947,3.585 1768,3.8799405,240.03778,37.688034,91.8703,3.576 1768,266.2691,386.30878,30.482147,57.775787,3.576 1768,245.06544,367.03268,39.640488,80.01584,3.527 1768,295.45813,373.6795,82.177124,160.742,3.523 1768,-9.028906,245.4508,38.192257,97.42877,3.515 1768,393.65137,220.7294,20.244019,39.92285,3.495 1768,332.49234,298.6507,31.542755,65.55856,3.494 1768,36.069237,226.85075,32.242714,56.604416,3.486 1768,360.47766,373.78287,80.32431,159.70016,3.462 1768,5.1721582,468.32437,38.422775,93.6091,3.457 1768,10.577385,236.9477,58.27056,133.76343,3.447 1768,613.24927,147.59496,35.192993,101.14314,3.438 1768,198.03862,368.33905,84.20378,169.14069,3.427 1768,31.25021,235.3287,25.107098,41.590546,3.423 1768,212.94305,282.77875,30.732025,66.529205,3.37 1768,-4.2227597,25.718262,15.215393,37.638718,3.332 1768,435.58395,268.3919,31.37378,64.03461,3.326 1768,357.02405,491.27203,31.07666,52.446777,3.314 1768,618.8906,-18.173151,17.609741,41.208344,3.301 1768,-4.9626436,219.04536,17.919811,41.360397,3.293 1768,357.19543,380.05844,31.572906,55.00006,3.291 1768,618.36414,490.5603,20.55243,42.48932,3.29 1768,447.82928,224.54813,51.03592,116.467896,3.287 1768,-13.4865675,191.96597,48.137177,130.75223,3.28 1768,427.35034,216.60138,20.015991,42.593964,3.273 1768,12.234983,-28.595097,55.39482,136.21204,3.221 1768,547.0569,414.50452,83.35895,165.79486,3.186 1768,1.1733639,259.23178,21.514061,43.093323,3.18 1768,34.382557,236.62115,40.87685,75.26453,3.179 1768,-9.947129,120.71901,39.657097,102.98476,3.168 1768,35.579758,278.3559,34.798676,64.44974,3.164 1768,156.75104,-20.940556,54.10338,135.64024,3.158 1768,597.82336,156.24399,36.968018,90.12445,3.153 1768,11.975622,204.79498,53.006462,108.78253,3.137 1769,255.64719,394.59964,21.151642,48.033447,11.657 1769,262.51047,390.72925,21.650055,47.083862,7.621 1769,627.167,-16.875725,17.11316,44.055508,7.267 1769,-10.879852,-31.55258,29.400866,69.27323,6.992 1769,-5.6635895,-18.342833,17.765385,43.780453,6.972 1769,623.21387,-34.448444,26.054993,74.73382,5.972 1769,-8.806472,465.92612,37.70022,90.27432,5.704 1769,603.10205,-54.46541,53.28784,131.21124,5.578 1769,2.6205146,331.6692,37.391357,88.92877,5.566 1769,-17.090103,-62.585266,54.868195,142.89447,5.538 1769,-6.0180545,489.7227,18.755487,42.00186,5.378 1769,626.5768,488.183,20.468628,46.245087,5.221 1769,583.1633,411.78442,71.63025,176.58813,5.092 1769,233.50629,404.0829,19.8143,38.737427,5.05 1769,-40.525417,361.3713,112.03792,278.13797,5.01 1769,612.5793,455.50168,39.707703,106.332794,4.963 1769,3.1468034,-16.7827,16.59431,40.905193,4.885 1769,-72.71816,267.4451,200.64038,461.02426,4.847 1769,-17.76464,437.66687,55.59351,137.29492,4.774 1769,585.9483,-99.165985,74.74664,232.88358,4.59 1769,536.6024,312.50534,142.47253,339.42838,4.582 1769,229.2724,286.50348,32.731384,62.482056,4.548 1769,101.22262,224.344,30.250755,61.280365,4.448 1769,489.49417,-179.5541,236.44772,423.90973,4.421 1769,-37.359985,-128.65546,116.73391,277.47415,4.4 1769,493.51447,225.65164,237.25531,516.60205,4.377 1769,594.2294,-43.292007,43.839355,95.23944,4.356 1769,282.64127,307.93976,19.27179,37.041534,4.284 1769,619.261,-16.16015,16.750977,40.28707,4.258 1769,-70.55534,-187.96005,211.09656,454.2687,4.228 1769,298.48132,310.13715,19.555145,35.83377,4.186 1769,27.189331,209.92291,30.921432,69.442505,4.171 1769,-4.6438684,1.9848518,16.142706,38.79178,4.092 1769,290.59943,308.48575,19.221985,36.097137,4.007 1769,74.2131,228.61685,33.903557,58.150146,3.992 1769,224.1285,231.78328,22.677353,44.953964,3.948 1769,389.8358,210.37639,27.066986,66.300735,3.852 1769,144.9098,228.72716,22.893356,46.952744,3.836 1769,117.678345,225.25682,38.252625,80.53035,3.825 1769,57.722923,253.46333,35.54676,65.42375,3.82 1769,53.261612,-34.174347,29.183075,66.82277,3.804 1769,-8.532536,197.11996,37.987663,102.43524,3.782 1769,109.170845,-33.82624,29.691673,66.546844,3.772 1769,13.268116,193.39537,55.6014,130.02235,3.769 1769,162.06912,-13.154528,33.420044,64.15474,3.729 1769,-5.2493563,230.53255,17.317749,45.64888,3.714 1769,-9.266366,-7.6024284,38.879864,102.57207,3.695 1769,85.45546,-34.384132,29.430794,66.84627,3.69 1769,132.76457,227.01535,38.86049,80.8515,3.669 1769,37.919037,-33.186924,28.857002,66.32238,3.603 1769,-11.18607,324.88174,47.6654,150.017,3.592 1769,28.470318,217.3839,56.227802,127.03877,3.589 1769,270.37668,388.09946,22.086884,44.122772,3.562 1769,614.68945,-19.734968,27.16809,67.75972,3.55 1769,69.21219,-34.51855,29.646683,66.22728,3.496 1769,475.5033,277.15237,30.879395,57.00882,3.49 1769,263.0858,372.44955,81.31424,162.9346,3.476 1769,106.57592,-16.248642,17.906418,37.844254,3.468 1769,597.89844,152.8005,36.618774,91.40863,3.463 1769,242.09131,404.01108,19.686005,40.160553,3.442 1769,-0.63566446,188.31073,27.230364,71.30234,3.439 1769,-5.606112,281.49875,17.003164,39.41272,3.438 1769,314.37262,365.28503,20.131226,28.024078,3.438 1769,120.75116,227.84476,21.20581,37.904633,3.419 1769,245.61395,366.3728,38.729675,77.32733,3.406 1769,59.03119,230.31917,32.729668,54.766953,3.387 1769,284.78296,296.03113,29.423218,56.744415,3.377 1769,187.85872,225.36014,54.622345,114.40497,3.373 1769,526.9083,281.99957,28.01239,55.31253,3.356 1769,5.5032167,-34.603737,28.38377,70.5748,3.354 1769,-9.741715,345.22003,31.900036,79.447235,3.353 1769,260.92075,366.77353,37.684784,78.00574,3.348 1769,36.14409,186.84853,30.316551,63.590836,3.339 1769,203.80142,276.41144,31.676804,63.84314,3.329 1769,-5.6755304,138.25279,17.337013,41.310074,3.311 1769,493.0017,278.4903,29.563354,57.999207,3.311 1769,5.2317142,469.4666,38.331284,92.787964,3.302 1769,126.81294,230.1172,23.185196,44.62578,3.294 1769,43.34014,3.4225407,18.898266,35.33792,3.293 1769,614.30084,481.27118,28.366333,60.943054,3.292 1770,66.71053,303.68695,34.136475,79.41928,8.47 1770,257.22226,403.5134,21.192413,45.809143,8.459 1770,-5.5575,-17.768435,17.48687,41.966858,7.472 1770,-10.59023,-31.369139,28.988949,68.6578,6.345 1770,626.9891,-17.407646,17.541504,45.97285,6.269 1770,622.38885,-33.497833,27.273926,76.294395,5.964 1770,389.2613,216.4165,29.760895,71.96365,5.524 1770,-9.055523,464.55127,37.852867,91.582886,5.518 1770,602.36395,-55.713444,53.48413,129.10728,5.46 1770,-17.097,-61.39688,55.899147,140.50992,5.391 1770,621.6594,477.13287,29.06128,67.467834,5.346 1770,-6.282631,489.33664,19.232683,42.77481,5.286 1770,352.59192,390.0359,22.783875,44.580566,5.271 1770,418.43896,210.14755,19.306946,38.590134,5.115 1770,26.771904,186.5223,31.73159,62.925278,5.04 1770,583.1281,411.22098,71.67584,177.26773,4.992 1770,123.493484,242.075,32.07979,70.16484,4.924 1770,593.62115,-43.834976,44.58136,92.001205,4.891 1770,234.60603,412.56003,17.65387,36.24521,4.865 1770,-22.131176,401.34222,79.92639,176.07965,4.853 1770,614.6328,-16.937778,27.028015,67.62254,4.843 1770,235.0386,292.67947,34.315704,57.85846,4.835 1770,11.528151,343.36566,17.803148,28.86377,4.758 1770,-72.7545,267.49097,200.49294,460.73798,4.748 1770,-4.7693987,336.32007,15.61585,32.576965,4.7 1770,536.7672,312.35806,142.40973,339.48447,4.686 1770,435.00195,209.42642,20.089447,46.018845,4.679 1770,489.8213,-180.35083,235.53265,424.06693,4.656 1770,296.15048,306.7907,21.942657,47.742615,4.61 1770,-37.005016,-128.15045,116.52635,277.28552,4.59 1770,4.2876377,180.92528,30.458677,72.92093,4.577 1770,586.5485,-99.87587,74.54913,232.08945,4.544 1770,3.3083165,-14.7920265,16.323505,36.359303,4.539 1770,127.65216,259.9303,35.769165,88.459595,4.521 1770,134.40646,247.20401,25.461197,50.767273,4.49 1770,-70.79709,-188.18811,211.42354,454.15546,4.335 1770,493.18536,225.36453,237.4848,516.3539,4.334 1770,220.58928,289.20465,32.752075,59.677094,4.303 1770,94.097176,236.6524,56.75318,115.7724,4.204 1770,439.8604,205.50804,26.499725,62.391525,4.15 1770,282.5655,305.2003,20.93637,46.209198,4.109 1770,285.38983,297.1269,29.079803,64.549225,4.047 1770,426.9865,211.93292,19.367676,43.188034,4.031 1770,618.6764,-15.845708,17.60437,42.07907,4.015 1770,204.69649,273.46774,15.872208,21.017792,4.003 1770,70.10541,247.96532,61.35141,124.51076,3.967 1770,263.68207,397.3968,21.72165,43.415222,3.965 1770,204.3007,278.1259,30.500748,62.4982,3.952 1770,221.6092,264.5842,29.802994,60.681213,3.916 1770,-9.095064,-7.5572853,39.55033,100.96556,3.88 1770,-4.5974793,320.52603,14.778482,32.829163,3.854 1770,13.07802,168.5779,53.020042,115.10875,3.812 1770,162.27374,-17.533058,33.68225,59.777763,3.734 1770,10.29479,-15.645699,16.909094,35.970333,3.706 1770,3.8729143,343.664,19.18291,32.241943,3.698 1770,410.12466,214.61333,18.983612,40.734756,3.693 1770,366.02444,385.401,29.812042,54.258606,3.683 1770,263.9951,372.9145,79.4783,163.76605,3.609 1770,601.15875,-0.09790039,20.637634,47.22407,3.564 1770,573.27893,-20.792511,52.053955,124.84728,3.558 1770,20.094986,201.41365,32.120934,78.038864,3.55 1770,606.214,-2.6689816,27.950806,58.077072,3.55 1770,74.737686,207.53555,58.02156,114.50781,3.529 1770,99.12254,224.60284,32.216583,62.833984,3.526 1770,245.62288,385.96048,39.370132,91.81363,3.51 1771,263.0984,405.47824,21.591888,44.23529,15.058 1771,487.19235,282.63324,24.41101,46.063507,8.622 1771,99.15497,298.08914,33.7256,71.29108,8.148 1771,627.0139,-18.004036,17.120361,47.76626,7.172 1771,-5.3184547,-17.007996,17.0624,39.84201,7.124 1771,622.5434,-34.104233,26.65863,76.39754,6.555 1771,156.87614,272.6535,35.66368,65.45108,6.502 1771,-11.153286,-30.47848,29.270811,66.40502,6.002 1771,-6.1698427,489.6181,18.967545,41.704773,5.584 1771,-11.881671,478.23407,30.211704,62.857117,5.555 1771,626.504,488.64468,20.598633,45.57321,5.508 1771,19.625347,307.29773,31.741402,56.648193,5.125 1771,583.2105,411.2562,71.696106,177.02786,5.042 1771,-16.402401,-63.532883,54.995243,144.5456,5.029 1771,612.7789,455.0017,39.516113,106.86914,5.02 1771,-21.757473,401.9946,79.65793,175.19913,4.842 1771,242.34688,410.204,18.599655,38.886444,4.802 1771,-72.802925,267.73157,200.46982,460.6858,4.786 1771,602.846,-56.44616,53.264893,130.93277,4.774 1771,619.06006,-16.54591,17.131836,43.51671,4.761 1771,441.01315,204.154,19.582489,44.71501,4.741 1771,240.20995,303.1066,25.278793,45.20999,4.741 1771,536.69446,312.75793,142.55731,338.78198,4.686 1771,489.66882,-179.92825,235.16821,423.20718,4.606 1771,3.7934165,-14.349871,15.594723,34.720425,4.552 1771,-36.763184,-129.40707,116.46893,279.80762,4.531 1771,313.32825,311.46112,20.577942,37.026367,4.449 1771,493.1562,225.24512,237.32306,516.5514,4.338 1771,586.51074,-101.77893,75.10608,234.75429,4.262 1771,594.116,-45.36022,44.288574,93.91914,4.257 1771,-70.5202,-188.064,211.15063,453.91794,4.246 1771,306.09744,310.58755,20.057587,36.880157,4.225 1771,238.3688,260.75208,28.444305,64.80475,4.173 1771,86.45908,303.36697,34.097435,64.44656,4.08 1771,419.12857,208.86397,17.85141,35.44026,4.065 1771,63.440098,324.7323,21.673016,28.168915,3.999 1771,227.25131,294.73065,33.922577,60.937683,3.995 1771,249.12354,299.2838,21.075775,36.20291,3.878 1771,147.39796,223.62703,34.008972,52.25731,3.78 1771,603.22656,-15.939616,15.972961,39.90974,3.759 1771,267.58456,-13.227455,15.673065,32.802574,3.754 1771,49.56128,324.86032,22.668709,31.039886,3.71 1771,26.415644,175.93567,31.714537,55.8304,3.701 1771,122.46921,220.21347,34.59424,65.46512,3.701 1771,363.34045,-14.342415,16.464722,33.733345,3.684 1771,1.8092692,491.0468,20.164007,39.903503,3.673 1771,-9.08609,-8.72123,39.48381,103.67492,3.662 1771,259.53503,380.87097,36.8685,90.17172,3.642 1771,299.37982,-15.183964,16.18451,33.63513,3.637 1771,283.4585,-14.665947,16.193237,33.706585,3.632 1771,205.83585,279.56497,29.208328,63.15863,3.595 1771,325.32367,302.18466,30.233154,64.71884,3.581 1771,271.85123,399.1069,20.591583,40.44763,3.569 1771,35.464703,313.22925,33.755238,50.10623,3.566 1771,237.93802,392.3119,26.207947,62.657166,3.564 1771,-7.9581046,192.86726,37.729103,110.92421,3.559 1771,247.6094,311.2857,23.879517,41.992157,3.558 1771,389.3483,199.00928,28.950104,65.037964,3.504 1771,355.7703,387.9067,29.005554,51.574493,3.487 1771,611.3911,-14.90187,16.544983,40.455032,3.487 1771,355.61255,-13.530392,16.512756,33.120518,3.475 1771,263.0146,372.43277,81.3418,165.63144,3.473 1771,371.34457,-13.870691,16.367462,32.930916,3.453 1771,322.45456,373.22192,19.667358,27.489227,3.442 1771,166.15805,273.60434,23.126373,45.017395,3.44 1771,275.36676,-13.065444,15.993286,32.560314,3.432 1771,315.2447,-15.942794,16.305054,34.46535,3.429 1771,328.08002,372.51614,80.82208,163.15659,3.429 1771,-6.041243,103.64599,17.877916,42.538902,3.425 1771,331.5654,-15.162318,16.257477,34.218452,3.422 1771,4.882416,299.7071,31.41893,63.005127,3.413 1771,347.6662,-14.761391,16.379944,34.081455,3.398 1771,618.46625,491.1059,20.698547,41.787964,3.344 1771,11.025076,-15.144061,15.811762,34.18202,3.344 1771,587.17566,-14.713489,15.770142,37.402798,3.342 1771,298.4368,310.72546,19.792694,35.06601,3.341 1771,295.49396,373.00482,82.012085,161.57635,3.335 1771,379.4202,-15.489599,16.222687,33.60173,3.335 1771,307.15613,-14.938188,16.281067,33.471237,3.328 1771,2.7353644,309.42606,18.908743,39.71335,3.304 1771,251.25894,405.70242,18.306183,42.44928,3.296 1771,251.57498,-14.350989,15.7846985,33.568203,3.284 1772,258.48944,396.88022,21.61145,47.231476,7.891 1772,-5.5393305,-16.877829,17.356062,39.940487,7.751 1772,623.2217,-34.31684,26.754517,73.55804,6.858 1772,627.284,-17.82866,17.08722,45.312122,6.594 1772,-11.317106,-30.3978,29.671097,67.60049,6.247 1772,5.3359723,185.75291,29.726593,81.12642,6.159 1772,626.5819,488.31235,20.38208,45.834503,5.907 1772,158.54707,271.28946,31.892715,68.53885,5.755 1772,-6.2837133,489.62045,19.106213,41.67209,5.608 1772,-11.823233,478.35254,29.99765,62.72119,5.581 1772,603.4823,-57.046165,53.069885,130.52663,5.329 1772,298.26196,309.9237,20.193512,35.620483,5.304 1772,612.393,455.79608,39.807373,105.612366,5.085 1772,-16.492245,-63.307133,55.366962,143.1887,5.065 1772,583.1194,411.24948,71.774414,177.31406,5.001 1772,-73.16571,267.26077,201.06026,461.16135,4.933 1772,-21.858315,401.96454,79.942726,175.13434,4.849 1772,3.3646977,-14.442609,16.06168,34.943497,4.772 1772,490.09656,-179.58049,234.44348,423.6911,4.736 1772,594.152,-47.071697,44.399475,94.32367,4.722 1772,-36.32765,-127.96125,115.70137,277.94943,4.703 1772,434.27444,206.58609,19.805695,43.0403,4.669 1772,536.8482,312.4798,142.48315,339.15277,4.663 1772,305.54706,310.166,21.31726,36.553467,4.617 1772,402.1756,208.22018,18.792572,33.949097,4.544 1772,493.36676,224.7757,237.40082,517.2486,4.32 1772,-70.72624,-188.48724,211.16287,454.66116,4.304 1772,619.4152,-16.188164,16.703857,39.10087,4.302 1772,586.5914,-102.1604,75.1189,235.1721,4.229 1772,422.8073,273.49976,30.617096,72.953766,4.146 1772,587.10675,-13.24135,15.765503,34.416027,4.09 1772,247.6279,306.1643,23.017975,37.87372,4.073 1772,2.4432464,319.32867,19.032381,32.61441,4.021 1772,-4.5157347,317.87805,17.213905,35.240936,4.004 1772,618.58344,491.16138,20.181763,41.56781,3.979 1772,27.451363,305.80087,32.726345,58.959167,3.928 1772,270.5675,390.6264,21.52481,42.51001,3.88 1772,483.29987,286.74487,30.918518,62.45645,3.877 1772,-11.010273,177.1138,30.525005,75.01997,3.868 1772,236.73828,383.594,27.65976,64.77377,3.845 1772,571.2058,-12.102119,15.630371,33.598713,3.828 1772,289.99887,307.6068,20.91983,36.30475,3.793 1772,377.75507,205.00565,22.27884,38.229492,3.789 1772,11.642842,181.7885,54.70789,140.82607,3.789 1772,313.60052,311.2097,21.454895,37.12567,3.785 1772,105.88631,290.6744,34.429794,70.85831,3.769 1772,538.9689,197.79987,21.346008,40.543976,3.764 1772,-6.8450665,192.73708,37.60466,107.7368,3.746 1772,14.492026,186.39627,34.170807,69.99643,3.732 1772,474.9198,-14.3031025,16.062805,36.06666,3.723 1772,364.46826,380.78418,31.595337,52.88324,3.703 1772,-5.1945543,282.26144,17.764915,41.753967,3.683 1772,563.2632,-10.969312,15.606384,32.98799,3.663 1772,262.7669,370.23224,81.49338,163.97296,3.655 1772,579.2483,-11.807838,15.6427,33.46715,3.655 1772,595.2162,-12.149212,16.00354,34.132633,3.641 1772,292.51614,299.12552,30.939331,54.03653,3.614 1772,-5.948921,178.08643,18.717093,42.75592,3.611 1772,209.371,282.3817,21.41034,38.971283,3.598 1772,325.0403,295.5474,31.103302,66.8345,3.595 1772,3.5053897,4.3866196,17.55759,36.736874,3.593 1772,-8.771585,-7.823757,39.366966,101.20833,3.575 1772,260.4507,367.2443,38.274963,79.33334,3.572 1772,234.37271,399.60666,19.845291,43.420715,3.56 1772,-4.921532,2.2648354,16.297781,39.051052,3.531 1772,615.5355,-20.440237,26.237,65.68707,3.486 1772,231.2864,368.03995,82.24042,163.73141,3.424 1772,196.07135,289.57074,31.80754,60.925903,3.402 1772,544.41284,177.9484,47.19397,128.09625,3.392 1772,237.45615,281.22974,31.721619,59.728333,3.383 1772,554.39575,197.45389,19.981262,38.70523,3.38 1772,467.33698,-13.102618,15.983826,34.995632,3.354 1772,43.29269,-14.520449,16.05914,32.30672,3.34 1772,9.404152,-92.215706,73.6486,209.889,3.339 1772,-10.963988,270.06485,29.601555,68.70883,3.331 1772,197.51721,366.33008,85.285034,170.78937,3.327 1772,394.17255,374.71768,32.705505,62.588287,3.311 1772,1.8605208,-40.980644,42.9515,100.49192,3.309 1772,555.3619,-11.688575,15.446838,33.263027,3.305 1772,0.72105527,169.24298,27.484133,68.93373,3.302 1772,75.73356,-14.633194,15.46656,32.150063,3.292 1772,482.9959,-14.273409,16.148651,35.693592,3.284 1772,-8.190986,68.94321,37.22018,108.34024,3.266 1772,10.833799,-15.519203,16.296967,34.399582,3.263 1772,295.13837,371.82886,82.51166,160.3888,3.249 1773,256.48907,386.70087,20.283203,44.3089,16.244 1773,99.63101,294.967,34.25699,70.19714,11.27 1773,234.24863,261.80194,19.42517,49.427307,8.941 1773,-5.274133,-16.875374,16.815817,41.145832,7.119 1773,627.1488,-18.850122,17.33496,47.29468,6.2 1773,-11.219836,-31.097572,29.48473,69.184845,6.12 1773,-12.079304,478.02396,30.006788,62.87497,5.883 1773,623.0647,-33.714687,26.771667,75.54708,5.872 1773,230.10583,271.13455,26.414062,62.05414,5.778 1773,109.06314,219.46562,30.880539,63.109146,5.684 1773,-6.4417696,489.26602,19.344196,43.092926,5.602 1773,603.6663,-58.10234,53.482788,133.33577,5.454 1773,233.60681,392.5925,20.180801,41.37024,5.351 1773,-0.99781394,193.47511,26.505318,82.05931,5.231 1773,621.55176,477.4355,29.259338,67.32898,5.121 1773,-16.650053,-65.56581,55.06655,149.50565,5.102 1773,583.0665,411.2301,71.80652,177.3628,5.022 1773,-73.23341,266.81335,200.84409,461.84192,4.981 1773,594.491,-47.954834,44.35681,96.90498,4.948 1773,74.71835,216.77098,30.72435,68.77922,4.934 1773,-21.976702,401.66586,80.04611,175.47061,4.868 1773,490.37357,-179.95273,234.27182,424.83725,4.852 1773,476.73328,289.9103,29.98999,61.523773,4.81 1773,536.9071,312.16278,142.30945,339.43585,4.642 1773,92.04349,220.35179,33.005295,61.286636,4.633 1773,426.6818,206.78284,18.952484,39.55391,4.488 1773,-36.009003,-128.27393,116.14784,277.92487,4.439 1773,94.628555,212.93332,51.7565,113.0462,4.407 1773,3.6872208,-14.877789,15.72054,37.812534,4.385 1773,586.48364,-103.1479,75.5921,237.48544,4.338 1773,193.29205,279.5691,21.565887,41.06909,4.311 1773,493.24335,225.1763,237.55408,517.4712,4.311 1773,240.34329,298.41638,23.35672,37.769073,4.28 1773,385.1551,367.6279,33.432495,60.524567,4.275 1773,158.54066,273.28195,32.77542,63.804596,4.255 1773,229.25143,372.1428,27.93982,67.48221,4.203 1773,-70.743866,-188.08853,211.20053,453.89258,4.196 1773,201.18484,282.81567,20.977798,37.906403,4.054 1773,-4.135954,317.46002,16.44249,34.8219,4.051 1773,264.26,380.8328,19.477203,44.68045,3.944 1773,356.1798,371.49097,32.60614,53.356354,3.887 1773,62.68705,211.74533,29.613792,73.84604,3.881 1773,539.2717,310.29147,18.934875,26.845978,3.866 1773,2.3645144,319.7797,17.571114,31.152374,3.825 1773,539.5065,-15.825497,15.763672,36.555637,3.823 1773,3.318888,164.40555,28.544506,71.420135,3.773 1773,394.52008,209.96744,17.543243,32.651337,3.77 1773,571.2599,-15.42523,15.828491,37.16792,3.768 1773,619.68353,-18.808369,16.847961,43.92932,3.746 1773,368.4605,208.5195,22.79718,38.029922,3.74 1773,-4.733689,282.8109,17.021433,40.706818,3.736 1773,20.817444,304.2683,29.733608,52.101532,3.704 1773,271.58725,381.07413,20.911652,42.47278,3.694 1773,619.6888,211.49113,18.903198,44.073105,3.686 1773,242.56427,231.58235,20.25061,35.781113,3.654 1773,18.64648,315.21753,20.416584,34.528503,3.637 1773,582.6395,210.85997,37.68628,96.77788,3.629 1773,33.787495,318.47556,21.128525,32.99533,3.609 1773,50.677395,327.1841,21.291233,29.637207,3.603 1773,357.2143,491.96997,30.861877,51.503784,3.602 1773,61.96923,208.77725,52.23841,116.478516,3.579 1773,-5.025043,268.17752,16.556461,38.855835,3.563 1773,203.41872,278.62607,17.792374,24.84784,3.546 1773,-4.4139843,301.57925,16.414078,38.504517,3.545 1773,231.32321,237.66495,26.752533,64.803314,3.527 1773,298.76294,309.5681,19.859833,37.514954,3.504 1773,241.92915,391.63083,19.540543,42.22061,3.493 1773,122.58792,225.50328,31.51326,55.8517,3.453 1774,418.97955,207.948,18.232483,37.91571,9.271 1774,-5.1850195,-16.153826,17.037018,39.816307,7.893 1774,90.97916,297.47604,34.362953,68.12387,6.682 1774,-10.748296,-31.01719,29.336693,70.233116,6.431 1774,627.40393,-18.4296,16.974426,47.655983,5.977 1774,623.42633,-33.77784,26.121338,76.62148,5.906 1774,-6.498231,489.05914,19.477993,43.20343,5.814 1774,-17.216043,-65.61994,55.444633,151.11992,5.751 1774,-9.106806,464.53372,37.969772,91.91525,5.463 1774,386.7836,207.37993,17.745544,35.02234,5.394 1774,626.5709,488.06598,20.561157,46.416687,5.339 1774,4.10847,0.8835602,16.523746,32.573536,5.199 1774,248.72202,386.88846,20.891449,42.088562,5.11 1774,612.84247,455.04727,39.57135,107.119415,4.989 1774,583.04663,410.0395,71.81787,178.57526,4.97 1774,-73.41615,266.8191,200.8079,461.5468,4.93 1774,3.4758568,-12.90093,15.98057,35.575924,4.926 1774,603.3234,-57.780502,53.40265,136.58954,4.842 1774,490.14832,-180.26172,234.79309,426.00876,4.839 1774,-22.006836,401.60397,79.91007,175.52145,4.791 1774,234.00555,291.82123,22.038147,39.69171,4.761 1774,371.16644,363.80408,33.40341,61.223175,4.697 1774,536.9532,311.64984,142.21924,339.02716,4.67 1774,586.1187,-101.38456,75.784424,235.40543,4.614 1774,-36.033775,-128.70853,116.29705,277.46042,4.452 1774,-71.05896,-188.53914,211.26936,454.12164,4.331 1774,493.18933,225.06064,237.52173,517.24084,4.329 1774,439.18027,201.51483,26.189484,71.528656,4.281 1774,152.61043,273.7539,31.32866,64.293976,4.264 1774,594.71136,-47.730362,44.258484,99.54606,4.081 1774,53.20668,220.1387,33.116524,67.72241,4.042 1774,10.412399,0.9639244,17.412756,30.451752,3.975 1774,5.5191193,301.7605,29.248089,60.08029,3.951 1774,228.07898,367.3615,30.238586,66.120605,3.799 1774,-9.860996,-5.8644676,40.30156,103.13071,3.777 1774,226.9903,259.40167,20.071472,41.504944,3.682 1774,224.91495,384.81116,21.165314,48.01523,3.55 1774,228.05656,289.8807,31.68013,65.176056,3.529 1774,-4.64732,282.9548,16.807377,40.85843,3.523 1774,11.879961,-22.28416,58.24601,128.64609,3.506 1774,495.03128,70.98829,26.947601,72.09261,3.498 1774,384.4421,360.2909,34.80661,60.855682,3.495 1774,619.7462,-17.742632,16.686218,43.37778,3.489 1774,-6.0672035,212.19093,19.117037,47.024002,3.487 1774,10.456924,-13.122857,16.260214,35.07767,3.455 1774,-12.666453,60.54384,31.290318,67.27367,3.451 1774,357.38464,362.58575,31.925781,55.62921,3.442 1774,394.59863,208.89845,16.856415,35.796417,3.372 1774,192.52754,279.88428,22.336212,42.64621,3.271 1774,618.45276,490.67865,20.740906,42.920288,3.224 1774,307.9243,-12.161089,15.5182495,33.10006,3.214 1774,140.85356,222.3916,31.452713,53.622192,3.212 1774,-7.9169774,38.864464,37.652374,102.826546,3.209 1774,348.58292,490.3605,31.830048,52.736053,3.19 1774,229.57533,365.25635,84.81694,167.11987,3.18 1774,196.48236,363.09265,86.22211,172.2854,3.178 1774,482.59265,284.2236,31.0,65.33826,3.176 1774,2.0963483,489.63962,19.720308,42.450653,3.161 1774,-10.873523,199.13312,28.939518,70.773834,3.147 1774,261.08038,367.50012,85.04434,167.01172,3.139 1774,300.93686,200.27617,14.864166,28.495804,3.128 1774,546.8768,411.24384,83.452576,169.97015,3.127 1774,26.001585,315.31952,19.3716,32.245575,3.126 1774,49.95491,326.05243,21.017754,27.865753,3.115 1774,281.76373,301.3567,21.829956,35.93631,3.108 1774,35.001778,322.3866,20.149971,32.054413,3.105 1774,19.357317,-12.462816,15.623911,34.329803,3.1 1774,292.9282,201.77304,14.648773,28.530823,3.099 1774,-4.665186,2.8669167,16.883944,38.13696,3.097 1774,565.2267,192.85287,39.150208,107.296906,3.09 1774,185.87915,284.1298,22.535172,45.78711,3.083 1774,426.0547,215.66983,19.17691,44.203094,3.083 1774,299.94165,-13.263292,15.446503,33.730686,3.082 1774,492.95465,-1.1783066,15.576538,30.55704,3.08 1774,-6.008353,343.4269,18.06493,39.49713,3.071 1774,353.93466,220.11377,32.4032,74.28479,3.058 1774,3.5343087,309.67264,17.786343,37.12732,3.052 1774,2.1115732,63.940723,34.112255,66.55498,3.051 1774,368.40408,365.81564,25.123322,40.1817,3.046 1774,214.1756,268.073,28.83014,59.46991,3.027 1774,455.4217,247.14987,25.122772,55.117554,3.021 1774,581.8947,183.84264,38.208984,102.74477,3.019 1774,339.74585,368.87674,31.93219,50.22577,3.016 1774,259.09406,374.14395,28.13034,54.27997,3.01 1775,83.00177,294.85825,35.819496,72.484436,9.94 1775,242.08563,393.87207,21.760223,43.3248,9.737 1775,412.56177,206.30505,19.232819,38.315002,8.493 1775,440.01523,209.79607,23.2883,52.709763,7.469 1775,-5.641353,-18.004757,17.495182,42.495136,7.127 1775,216.20428,252.53845,27.60611,69.84625,6.673 1775,627.28186,-18.1504,16.894104,47.312016,6.189 1775,387.5658,209.93652,18.33429,43.871124,5.784 1775,-11.135888,-32.050064,29.444736,72.61957,5.684 1775,626.42175,487.87073,20.787598,46.33087,5.51 1775,-8.929778,465.06573,37.817154,91.57483,5.328 1775,623.19183,-34.293106,26.252014,77.45002,5.319 1775,-16.735699,-65.268234,55.35418,151.02554,5.283 1775,-6.2572403,489.76007,18.920746,41.669617,5.265 1775,219.08768,397.27493,17.970139,39.396667,5.079 1775,494.74695,313.7827,28.812805,56.039764,5.031 1775,583.2507,409.84067,71.708435,178.918,4.982 1775,490.73053,-181.02716,234.03204,428.2131,4.937 1775,612.7517,455.3111,39.696655,106.62616,4.927 1775,-22.068172,401.34045,79.99715,175.96912,4.913 1775,585.9392,-100.26749,75.44678,233.96196,4.884 1775,-73.36387,267.1844,200.68076,461.31952,4.832 1775,602.9509,-56.87787,53.264893,136.05519,4.74 1775,378.02075,370.1568,32.569916,58.25479,4.734 1775,394.05127,205.6149,18.783691,41.584854,4.729 1775,537.0353,312.1975,142.20874,338.9745,4.657 1775,144.6977,273.292,31.456177,69.17502,4.602 1775,218.85092,253.58676,20.538818,41.648773,4.535 1775,299.41937,359.1956,18.473114,26.497559,4.526 1775,-36.258545,-128.03093,116.37413,277.90884,4.432 1775,493.3355,225.18515,237.61841,516.46045,4.302 1775,-70.76085,-189.30115,211.15947,454.81998,4.286 1775,379.75186,205.62863,18.441742,37.87094,4.254 1775,564.0349,329.9284,19.155518,30.646515,4.126 1775,577.89514,328.39325,20.929443,34.31955,4.113 1775,224.36784,297.1492,24.196365,39.977386,4.074 1775,3.0982935,-16.178444,16.23091,39.484074,4.029 1775,225.74033,395.83087,18.231537,40.799316,4.026 1775,594.63074,-46.042313,44.39978,97.51375,3.904 1775,35.69885,331.44418,19.360912,27.237366,3.849 1775,-4.1132836,223.86386,17.645285,44.51526,3.833 1775,1.1738718,213.57143,21.801764,50.994278,3.788 1775,436.81888,197.16107,37.862183,93.397156,3.738 1775,179.93994,277.23618,31.69812,62.042236,3.696 1775,70.41334,303.79938,35.173347,61.887817,3.691 1775,301.17975,294.94507,32.111725,63.258484,3.618 1775,43.474083,212.84547,33.241478,67.834305,3.611 1775,341.0287,491.05872,31.356445,51.777832,3.549 1775,619.98315,-17.583406,16.313293,43.397068,3.549 1775,10.067698,318.13464,18.86351,36.269806,3.54 1775,57.286156,219.64616,22.968819,40.67079,3.539 1775,283.52863,311.4163,18.06192,32.32968,3.537 1775,305.83932,365.44846,19.134094,27.808868,3.528 1775,-12.790474,42.26785,30.902325,70.93437,3.524 1775,4.051826,43.31779,30.872189,72.89711,3.523 1775,599.37683,189.6961,36.150024,106.4881,3.518 1775,426.5997,286.6008,30.255524,57.826233,3.497 1775,-9.597189,204.558,29.078722,69.51787,3.473 1775,204.98175,272.79645,30.813507,64.45233,3.463 1775,235.61446,399.0126,19.40538,40.671173,3.457 1775,613.41266,236.60107,36.776306,108.47754,3.445 1775,27.282421,327.00247,19.073483,29.447815,3.416 1775,251.40373,-0.04267311,17.981766,33.898155,3.38 1775,618.1367,490.43344,21.255615,42.970367,3.33 1775,221.57358,379.4115,25.97136,64.577576,3.294 1776,246.77177,392.88712,23.076248,48.587006,16.561 1776,394.0991,209.70572,19.643524,48.12039,10.24 1776,81.87866,300.24796,35.54602,77.03168,7.46 1776,442.3379,209.12018,21.622223,50.07422,6.063 1776,-5.277398,-17.211323,17.115623,41.83516,6.032 1776,415.4272,205.21365,19.807526,43.000748,5.844 1776,627.1964,-17.984388,17.236572,46.480755,5.83 1776,-12.784187,-40.209637,41.87956,101.392845,5.614 1776,-9.081484,464.6305,37.83274,92.08832,5.369 1776,626.47797,488.01807,20.604492,46.29303,5.167 1776,623.15094,-33.80949,26.403381,74.90686,5.083 1776,-6.2684293,489.4817,18.95772,42.496216,5.068 1776,491.15558,-181.08173,233.47028,428.0795,4.983 1776,583.17206,409.70767,71.786194,179.03006,4.948 1776,-22.105558,401.20984,79.99702,176.11578,4.906 1776,603.6601,-56.0568,52.65204,133.89493,4.88 1776,612.799,455.11862,39.59857,106.885956,4.845 1776,-20.129444,-86.817,71.63936,196.51028,4.842 1776,-73.20697,267.0736,200.57712,461.91687,4.832 1776,386.8068,208.07495,20.158478,44.127304,4.801 1776,585.79224,-100.3936,75.41937,234.40408,4.794 1776,536.9471,312.51202,142.17902,338.53802,4.684 1776,-36.338726,-128.09514,116.70816,277.36063,4.608 1776,144.24942,275.01645,31.118546,72.53763,4.516 1776,224.64201,396.5567,20.521957,42.425507,4.49 1776,433.20026,279.95538,31.318481,63.087646,4.357 1776,493.17566,224.96179,237.84558,516.7781,4.346 1776,-70.906204,-189.10457,210.99226,454.6178,4.295 1776,339.85193,378.49918,32.45218,48.77481,4.267 1776,3.4956253,-15.486996,15.981225,38.780445,4.207 1776,378.3997,369.937,33.009125,58.494507,4.07 1776,422.22583,285.65616,30.042786,64.027374,4.069 1776,379.99713,206.42339,18.444366,36.38875,3.973 1776,594.87415,-47.375633,43.488403,98.779625,3.814 1776,504.47656,315.94946,31.966003,61.90335,3.812 1776,232.81114,300.13535,23.421707,35.833466,3.794 1776,604.65857,219.15204,52.093018,144.5326,3.762 1776,243.27986,371.83514,37.383957,92.99817,3.755 1776,515.31433,296.88458,33.946045,62.832092,3.751 1776,437.68246,202.68639,37.21524,92.71901,3.75 1776,3.2340634,316.1344,17.930109,39.540314,3.718 1776,309.5553,296.62692,30.139893,63.53888,3.692 1776,255.13034,386.2835,21.805298,47.519073,3.69 1776,525.6649,311.1417,30.94989,58.362396,3.658 1776,-5.398073,208.45868,18.9999,43.319305,3.615 1776,356.49777,372.65192,33.064117,53.31897,3.604 1776,179.45181,-14.867762,16.976242,37.69627,3.599 1776,460.0158,278.71442,17.970337,36.149475,3.502 1776,482.5365,-13.228235,17.332336,36.796463,3.499 1776,614.18024,272.26758,35.75775,104.50864,3.488 1776,262.50754,370.24542,82.2825,164.41534,3.464 1776,262.57733,389.41217,22.68628,41.84439,3.45 1776,440.15424,283.4671,21.033844,41.066315,3.45 1776,-8.042305,71.36862,37.407146,103.145966,3.433 1776,213.10579,274.44485,30.539658,64.51593,3.428 1776,197.7936,366.01416,84.22032,169.25366,3.423 1776,598.0653,277.8083,38.885498,98.25296,3.406 1776,230.76262,367.67746,82.408005,164.02579,3.397 1776,327.4672,369.76083,81.65097,164.32584,3.377 1776,348.4826,489.83585,32.049072,52.727936,3.368 1776,414.2154,-33.39223,29.494385,68.39764,3.308 1776,619.93756,-17.49728,16.432922,42.331604,3.307 1776,194.48624,-14.336689,17.23671,36.67948,3.291 1776,298.46356,311.03937,20.312805,36.223053,3.261 1776,444.41852,-15.025066,30.70929,61.195408,3.26 1776,-6.9897738,201.61745,36.67556,100.62523,3.258 1776,188.00072,279.75403,29.43428,58.246765,3.242 1776,474.98764,-13.45554,16.747742,35.59274,3.238 1776,10.61365,-15.170197,16.45966,38.239445,3.234 1777,393.1505,210.25507,21.041504,50.472443,12.721 1777,411.11972,206.61626,20.288635,39.892517,6.559 1777,440.39856,210.07854,21.74231,42.06816,6.507 1777,627.28613,-17.374659,17.035645,45.967274,6.399 1777,626.7927,488.4586,19.952332,45.42154,5.923 1777,-11.525814,478.31088,29.666132,63.4274,5.727 1777,-5.7292676,-15.86768,17.459486,40.63637,5.623 1777,-6.0801005,489.39557,18.76706,41.764282,5.604 1777,623.1498,-34.44474,26.210632,76.47874,5.389 1777,-11.6353035,-31.093279,30.466204,71.83387,5.222 1777,612.5802,455.7302,39.506897,106.08536,5.152 1777,420.7851,296.45587,29.221008,64.03653,5.017 1777,583.3265,410.0027,71.634766,179.04425,4.981 1777,491.4766,-180.44553,233.18661,427.41376,4.971 1777,585.98926,-100.122284,75.1051,234.12991,4.901 1777,-22.08892,401.4323,80.02758,175.89685,4.894 1777,233.74759,292.82614,22.774841,37.550446,4.886 1777,-20.074135,-86.47474,71.49253,195.81221,4.856 1777,-73.14248,266.70874,200.2565,461.22418,4.786 1777,603.4866,-56.695812,52.832153,133.88501,4.696 1777,504.9519,330.49765,31.938477,61.807434,4.687 1777,255.22699,380.45737,20.207733,46.72812,4.613 1777,-36.4459,-128.8175,116.15331,277.96585,4.584 1777,536.8002,312.62335,142.19556,338.4792,4.559 1777,138.70833,279.82672,29.461899,71.47247,4.554 1777,445.1098,208.3449,29.21698,60.83467,4.547 1777,378.63147,361.076,32.724182,58.86621,4.518 1777,206.45575,267.14923,28.467224,62.450928,4.373 1777,-70.68048,-188.84924,211.38446,454.45096,4.37 1777,539.7031,-12.903178,15.258423,33.71182,4.33 1777,386.39154,210.34229,20.705566,43.625626,4.268 1777,493.1139,224.51364,237.82251,517.3917,4.259 1777,378.9792,211.44284,20.864075,51.78482,4.235 1777,2.9699035,-13.970597,16.54384,37.655678,4.17 1777,120.2354,225.52881,23.826584,40.52704,4.129 1777,99.9525,211.73547,32.114532,61.631653,4.082 1777,70.154175,306.5257,37.292282,73.911285,4.074 1777,239.80478,299.35022,23.709381,36.951965,4.033 1777,238.55948,370.5698,27.580048,63.462067,4.01 1777,418.91852,215.19298,17.790955,39.56299,3.876 1777,494.88422,261.78616,26.252686,64.840485,3.828 1777,547.947,-12.186007,14.897583,33.058342,3.808 1777,127.90356,230.31546,24.17582,42.06082,3.724 1777,531.6826,-12.558474,15.352966,32.907536,3.697 1777,620.0431,-16.783348,16.237488,41.904827,3.67 1777,595.12354,-46.441833,43.392944,97.42537,3.667 1777,284.56747,273.29608,30.216492,57.51068,3.65 1777,618.70764,490.81396,20.019226,42.154663,3.612 1777,514.66144,317.44846,32.08087,64.517426,3.607 1777,235.56064,268.7583,31.752716,69.11749,3.605 1777,222.42973,269.9725,29.432755,63.15146,3.593 1777,555.4467,-13.7832775,15.199097,34.268536,3.529 1777,604.16876,218.05334,51.956238,148.23029,3.497 1777,316.8657,280.99286,33.704834,72.83072,3.485 1777,-4.4360247,334.23853,15.552375,34.358337,3.48 1777,349.57812,368.59726,30.919281,54.247375,3.48 1777,347.9517,491.4596,32.87256,51.0531,3.469 1777,415.56107,184.8212,50.789795,114.3483,3.425 1777,365.76807,363.73834,31.063965,54.564148,3.421 1777,613.97986,270.2551,35.89966,108.64603,3.41 1777,494.62775,323.4082,29.121338,64.77341,3.41 1777,615.5093,-20.223461,26.597595,70.571594,3.332 1777,132.57141,207.68066,39.232666,86.510864,3.318 1777,396.3584,207.5918,27.613922,68.86743,3.299 1777,-8.24565,72.2729,37.543278,102.75876,3.298 1777,216.5177,272.39844,22.691193,47.67038,3.286 1777,511.49936,328.00623,21.232697,43.28482,3.286 1777,1.9519061,490.48602,19.850224,40.473022,3.281 1778,393.92957,210.9442,19.152405,45.137222,12.119 1778,409.78778,203.97565,18.76413,41.96234,7.268 1778,378.87265,208.74715,19.724457,43.213776,6.804 1778,627.30066,-17.736443,17.038452,46.0886,6.679 1778,460.35733,200.43582,28.625824,74.524536,6.506 1778,386.62158,209.80841,19.735718,43.11461,5.86 1778,623.19507,-34.162224,26.263306,76.09292,5.623 1778,436.26324,206.78526,19.994202,37.59114,5.553 1778,626.68756,488.2941,20.278625,46.01358,5.474 1778,-11.333244,-33.0662,29.819857,72.52757,5.458 1778,-11.87421,477.4559,29.99444,64.09769,5.273 1778,-6.1818724,489.53156,18.895008,41.77893,5.231 1778,-5.9310555,-18.92302,17.906137,43.58921,5.136 1778,-17.76454,-63.810028,56.59664,146.24669,4.905 1778,-72.666595,266.59766,200.36081,461.2215,4.857 1778,612.8167,455.72055,39.347534,106.22171,4.822 1778,585.8115,-99.31587,75.213135,231.76317,4.771 1778,-40.94444,364.21222,112.20572,275.1353,4.771 1778,532.05286,-182.42456,149.05872,422.7583,4.734 1778,583.5078,409.96625,71.56232,178.72571,4.723 1778,603.32544,-55.253105,53.003784,133.81581,4.692 1778,114.64771,284.88654,29.872475,78.9689,4.676 1778,232.11548,294.08856,23.940674,37.85916,4.662 1778,178.69022,277.8084,31.838974,63.957397,4.594 1778,438.2568,198.34119,37.222168,95.91049,4.539 1778,242.22948,387.98306,20.129715,44.91098,4.459 1778,537.05145,312.4519,141.91718,338.7876,4.458 1778,28.639498,316.43082,37.964973,84.67984,4.451 1778,-17.707344,435.3037,55.926754,139.82178,4.44 1778,436.29248,311.61615,29.102753,60.483948,4.358 1778,446.59134,178.12299,49.99008,128.27539,4.311 1778,492.86298,225.72363,237.55011,517.017,4.281 1778,226.80658,292.1671,32.467316,63.23288,4.117 1778,-36.936497,-127.631935,117.1895,278.37393,4.09 1778,-70.40011,-188.11577,210.94324,453.1341,4.058 1778,226.52628,393.97522,18.492416,38.364105,3.985 1778,378.08508,364.60852,31.469543,65.34061,3.984 1778,229.14366,369.48267,28.847916,64.93109,3.902 1778,619.7781,-16.480976,16.478699,41.271736,3.791 1778,447.78778,204.67445,26.460571,56.453873,3.756 1778,212.86652,260.92633,30.055054,70.663086,3.756 1778,594.5002,-44.488617,44.16809,96.560074,3.73 1778,-5.024166,340.25613,16.92873,37.830933,3.697 1778,423.51178,195.09567,35.509705,82.55249,3.678 1778,371.77997,206.32419,20.104431,34.39337,3.64 1778,293.63614,288.41653,29.776886,61.957,3.58 1778,-9.222549,329.25455,39.022675,93.65143,3.574 1778,12.705178,282.01535,60.51509,134.05862,3.544 1778,441.7038,212.90483,20.382538,47.148422,3.538 1778,218.98833,387.8029,19.173538,42.235962,3.506 1778,164.98383,283.35876,30.860825,55.183655,3.465 1778,217.93379,250.36116,19.63031,36.131393,3.453 1778,533.445,354.8093,28.677917,64.05911,3.44 1778,522.38196,273.44946,32.216248,63.503357,3.439 1778,618.2103,212.9312,20.953552,53.252945,3.402 1778,560.94257,9.816122,21.778015,38.803932,3.391 1778,348.19415,491.5857,32.19873,51.92639,3.374 1778,28.54895,178.6508,54.68715,143.66469,3.337 1778,539.2453,-12.604496,16.012024,35.378822,3.32 1778,-4.902442,172.12297,16.879025,38.96466,3.315 1778,309.93268,285.83905,30.87619,68.33267,3.313 1778,188.8782,269.6019,29.837433,63.281433,3.295 1778,-8.385429,71.22023,37.958908,104.13429,3.288 1778,326.93204,368.91068,82.22385,166.21042,3.286 1778,305.806,300.06393,21.706177,43.982117,3.279 1778,539.8521,2.9119558,18.251953,30.880512,3.274 1779,394.79053,209.58824,18.270752,43.41765,9.844 1779,387.4593,207.08887,17.857239,45.636185,8.218 1779,435.59808,201.91805,18.511597,38.106583,7.274 1779,405.49838,203.77763,16.69577,41.914124,6.843 1779,462.5916,199.37341,26.862396,71.369934,6.392 1779,378.71906,208.57466,18.67508,42.712067,6.227 1779,456.20917,327.0822,33.72589,68.438324,6.215 1779,372.57513,204.39455,18.475616,38.61125,5.897 1779,-11.676969,478.1903,30.072857,63.13513,5.759 1779,-6.372999,489.03433,19.422592,42.393463,5.737 1779,613.5742,453.07327,39.19525,109.40463,5.562 1779,627.3512,-18.319456,16.883545,47.312763,5.497 1779,-6.051283,-18.808443,17.920837,43.527214,5.465 1779,610.6709,-47.6958,41.56775,98.86723,5.228 1779,-11.3900385,-32.81903,29.749706,72.96965,5.224 1779,-8.3324995,347.30234,30.424007,78.9722,5.206 1779,233.09283,276.32532,23.213013,45.15573,5.165 1779,363.1228,353.2569,32.622437,57.488525,5.162 1779,-17.66927,-64.6128,56.40634,147.29956,5.054 1779,-73.036835,265.9299,200.56763,462.74637,5.035 1779,584.0818,408.42487,70.54956,178.9914,5.015 1779,-40.762054,363.65894,111.9718,276.84497,4.86 1779,490.7695,-180.67145,234.08401,426.01572,4.659 1779,585.94586,-99.809715,75.12677,231.34497,4.612 1779,451.09302,206.19975,19.80603,45.579926,4.607 1779,-17.909382,435.69104,55.99301,139.48303,4.593 1779,626.40466,487.89352,20.701172,46.252045,4.568 1779,536.302,311.2815,142.44745,340.01978,4.46 1779,588.47107,384.38104,29.420532,70.01169,4.38 1779,217.46298,266.7353,21.69336,45.46591,4.369 1779,550.4766,276.31433,29.725525,75.05536,4.338 1779,442.4103,210.42807,19.264008,40.984726,4.31 1779,492.75793,225.73126,238.4154,517.1347,4.261 1779,110.9115,308.29233,22.667236,47.610382,4.101 1779,180.33139,269.1268,28.918365,68.71454,4.068 1779,-36.89558,-127.51766,117.22919,278.83664,4.05 1779,330.01343,358.16922,20.826263,27.39325,4.042 1779,94.67941,298.8095,33.691116,69.87912,4.01 1779,-70.24423,-187.83499,210.6994,452.2288,3.993 1779,457.80005,203.6054,21.711945,57.92018,3.99 1779,574.08453,187.73251,53.699158,125.92862,3.965 1779,573.31726,392.64316,29.466064,67.37842,3.92 1779,222.28233,267.06174,30.985504,63.747803,3.87 1779,447.68005,176.41454,47.25293,128.9463,3.868 1779,-6.434889,197.29013,36.150932,102.56891,3.815 1779,53.37285,227.03677,32.321976,57.142548,3.796 1779,252.58736,362.17865,27.206955,54.61667,3.775 1779,243.41402,275.9414,31.88942,60.981964,3.738 1779,616.34534,-20.971186,25.194458,73.477,3.674 1779,468.31213,193.33395,39.036682,107.11365,3.599 1779,68.187454,216.77544,39.914,92.23134,3.575 1779,523.0917,-18.278122,16.378601,41.97367,3.551 1779,597.2904,225.57028,39.126343,98.806946,3.508 1779,350.592,360.13644,35.41504,60.797607,3.451 1779,437.54703,187.98929,36.32959,78.53842,3.444 1779,515.5316,-16.551325,16.200073,40.18625,3.427 1779,564.62366,230.77057,42.135376,91.489746,3.426 1779,298.81976,343.80966,18.888336,27.03537,3.422 1779,100.940094,218.70944,39.851364,92.263336,3.414 1779,365.76892,203.03912,28.130585,65.87439,3.403 1780,404.69028,203.20427,16.804626,41.897507,11.285 1780,394.9266,209.77939,18.522522,42.711487,9.266 1780,451.15085,205.20505,18.515717,42.831604,9.109 1780,355.8527,342.18866,31.966278,58.3461,9.103 1780,436.06683,202.15494,17.271942,36.27417,8.398 1780,387.8331,207.55772,18.300598,43.6055,8.226 1780,371.67444,204.64624,20.279175,37.995956,7.088 1780,461.83044,201.1445,28.01117,69.86099,6.917 1780,613.23944,452.07648,39.67279,110.52728,6.352 1780,457.66144,205.97377,21.088318,55.99724,5.945 1780,627.5237,-18.325726,16.912598,47.15377,5.567 1780,-6.1729107,488.94788,19.004683,42.209656,5.544 1780,328.489,346.459,21.361938,33.37961,5.496 1780,463.71417,336.6483,33.623505,72.38895,5.424 1780,-11.476903,-32.69829,29.891293,72.32851,5.403 1780,-9.024081,464.9993,37.76461,91.687164,5.39 1780,610.6617,-47.49373,41.76355,98.27136,5.363 1780,-5.8992634,-18.494724,17.84759,43.23394,5.313 1780,166.64238,266.668,26.032715,67.61655,5.266 1780,626.7783,488.19635,20.45929,45.52649,5.266 1780,583.662,408.78357,70.95862,178.29742,5.126 1780,564.0104,284.69495,33.040222,78.70508,5.068 1780,-73.15787,265.38043,200.79999,462.10364,4.982 1780,378.57022,209.97676,18.736755,40.51146,4.979 1780,-17.859238,-64.18629,56.807545,146.56425,4.95 1780,-22.083311,401.24954,79.94357,176.28073,4.864 1780,585.9547,-98.65696,75.101685,229.13452,4.855 1780,490.75507,-180.54071,234.22137,425.93607,4.728 1780,241.34834,277.21735,20.67595,36.882446,4.71 1780,536.16327,310.42493,142.5075,340.20923,4.416 1780,252.10617,342.86835,29.644989,63.530243,4.407 1780,353.41296,344.58176,24.326294,38.293854,4.404 1780,410.64008,207.1386,16.900818,40.517,4.327 1780,492.6291,225.59058,238.82098,517.5381,4.22 1780,233.96745,367.49252,19.744583,39.73706,4.218 1780,584.04486,285.46674,32.35144,73.586365,4.211 1780,475.8689,193.50485,30.888977,75.96469,4.106 1780,603.57495,404.81506,30.843323,67.88287,4.089 1780,-37.018917,-127.883995,117.309586,279.74857,4.083 1780,367.32837,341.1358,34.561737,67.275055,4.047 1780,-7.031885,279.92102,18.72782,39.90567,4.042 1780,323.77994,342.4057,18.575714,30.432068,4.028 1780,-6.266649,296.27332,18.450869,40.168,4.023 1780,116.51791,201.169,39.8014,95.67212,3.965 1780,-70.11938,-187.51108,210.48242,451.84314,3.952 1780,299.0961,325.13983,18.546356,27.574219,3.874 1780,443.45392,210.61609,18.562042,40.339584,3.809 1780,345.28976,345.8347,22.778137,34.15088,3.758 1780,-11.895258,283.06317,30.016935,67.09079,3.737 1780,596.92285,457.31223,39.81012,104.2095,3.721 1780,331.735,342.18503,30.160889,47.27127,3.712 1780,132.81279,200.5527,38.78032,95.185486,3.691 1780,-3.5274649,172.885,16.185516,40.319656,3.689 1780,620.4337,-4.453455,17.240906,40.441223,3.684 1780,580.65356,217.33223,40.750305,91.75841,3.652 1780,515.3736,-16.584175,16.450867,40.09727,3.649 1780,299.34512,335.7997,17.719574,26.271606,3.641 1780,320.76575,343.03973,25.361267,48.93213,3.616 1780,522.94,-17.385138,16.76007,41.03219,3.591 1780,340.7208,490.72336,31.26056,53.029144,3.59 1780,148.91139,202.60236,39.107437,93.55548,3.559 1780,580.91504,198.16534,28.515747,74.91458,3.522 1780,616.704,404.1936,21.76001,53.641235,3.513 1780,196.98853,271.10855,29.71907,65.673004,3.512 1781,403.65384,204.19673,16.25119,42.244278,19.507 1781,348.97778,326.21667,31.450348,55.32602,13.193 1781,593.1348,217.18106,24.506287,53.595093,12.532 1781,395.43317,208.60652,18.387604,44.107864,11.524 1781,437.21448,207.15033,16.362427,35.281982,9.741 1781,450.69458,206.05531,18.403198,42.006897,8.339 1781,462.8802,202.31662,27.411713,77.73355,8.009 1781,387.14642,206.96742,17.165771,40.015717,7.729 1781,377.36548,208.41806,18.70523,37.583405,7.162 1781,-11.648634,477.68994,29.926218,63.95813,5.944 1781,627.3659,-18.708052,17.148987,48.062267,5.831 1781,-6.0978184,488.72534,19.027763,42.83954,5.735 1781,-6.0996585,-18.833876,17.925577,43.15212,5.578 1781,360.48065,323.77795,34.12198,61.51648,5.534 1781,613.408,453.2777,39.134705,109.32971,5.466 1781,-11.472083,-32.764977,29.729923,72.32793,5.411 1781,575.42206,210.01813,27.461487,69.95093,5.316 1781,610.46356,-46.650578,41.94983,97.84573,5.302 1781,581.16974,226.19008,39.334167,88.29085,5.251 1781,4.2506514,241.039,39.301044,93.53784,5.219 1781,583.82684,409.23886,70.79358,178.32327,5.215 1781,449.71338,337.24335,32.208252,67.26193,5.205 1781,626.6753,488.72482,20.726562,44.71579,5.199 1781,250.57028,266.5336,20.776031,39.207825,5.185 1781,-73.22534,264.49725,201.58957,463.5645,5.068 1781,-17.791016,-64.6062,56.754223,146.60335,5.029 1781,459.1205,206.05884,20.36493,59.05548,4.971 1781,586.12024,-98.89331,74.84302,229.38193,4.833 1781,596.89374,225.36533,37.016846,91.10132,4.806 1781,-21.982002,400.91577,79.852585,176.66852,4.792 1781,264.04382,334.41864,21.248413,45.881226,4.706 1781,491.04752,-180.56027,233.7941,425.90543,4.687 1781,536.34753,310.42877,142.63733,340.89923,4.608 1781,27.789068,233.56464,30.099611,59.72516,4.403 1781,370.47076,203.02646,20.205841,38.37639,4.394 1781,468.98804,196.66403,36.685333,103.45157,4.351 1781,-6.2442675,279.7145,17.965988,39.416473,4.312 1781,493.0432,224.7015,237.92908,517.49744,4.308 1781,-36.849045,-127.28592,117.22916,278.44644,4.112 1781,443.5628,210.85428,17.6344,39.859528,4.048 1781,-70.34694,-187.55153,210.65215,452.722,3.998 1781,564.4723,391.49643,31.786682,71.661804,3.941 1781,331.94217,324.6057,31.599213,48.279083,3.937 1781,-0.22299051,213.19147,25.066074,75.65509,3.882 1781,261.05627,299.57986,38.618835,80.42496,3.816 1781,366.29025,206.18231,26.306488,61.719757,3.813 1781,27.735897,209.24672,54.564518,116.17528,3.806 1781,565.177,226.87096,40.89142,92.61122,3.788 1781,522.89307,-17.724068,16.705078,41.15135,3.775 1782,402.24298,202.6177,17.519135,45.11841,17.842 1782,582.43494,209.00862,28.264893,61.792618,14.546 1782,395.34763,207.51161,19.979248,46.67375,11.189 1782,345.1225,313.2066,26.787018,41.97644,10.139 1782,436.71967,206.86482,16.49884,35.317596,9.918 1782,450.64215,205.01265,18.260986,41.766785,9.275 1782,377.11395,207.68723,18.621399,37.579453,8.285 1782,271.9662,315.06305,23.506256,44.530853,7.723 1782,327.13287,312.4484,25.615509,41.018677,7.541 1782,354.03683,305.48062,33.417664,57.078217,7.123 1782,580.6348,216.6897,39.252014,99.28351,6.418 1782,252.46095,304.87183,29.56456,60.28424,6.298 1782,0.11484146,210.73636,26.825335,82.12009,6.185 1782,-6.0225496,489.62744,18.644686,41.75183,5.865 1782,627.48224,-19.099852,17.144226,48.608276,5.735 1782,463.9239,198.91647,25.80954,73.45297,5.664 1782,623.15375,-34.08471,26.505188,76.75652,5.652 1782,365.58365,206.70291,27.4469,61.53528,5.538 1782,-11.297841,-32.72319,29.699772,72.38335,5.47 1782,386.97412,206.75528,20.760986,47.899292,5.403 1782,-6.0990434,-18.91152,18.06156,43.659065,5.379 1782,-8.700319,465.4545,37.402275,91.0936,5.336 1782,596.0432,220.19798,38.779053,100.78975,5.217 1782,-73.48972,264.51685,201.95416,463.6034,5.2 1782,603.0073,-57.39025,53.45575,133.69405,4.982 1782,613.51495,453.77353,39.029663,109.0018,4.948 1782,583.8805,409.75684,71.17883,178.30444,4.882 1782,-17.681135,-64.140976,56.651146,145.8933,4.881 1782,568.7173,205.04602,30.75116,73.16858,4.817 1782,-41.265938,361.84344,112.500114,278.75317,4.786 1782,-21.633533,401.75067,79.47998,175.9389,4.783 1782,586.2057,-98.8163,74.73151,229.25797,4.77 1782,594.0809,-46.310314,44.68982,95.396866,4.752 1782,263.63226,321.17688,23.258118,40.80139,4.746 1782,20.552383,207.49185,27.621521,62.139343,4.725 1782,532.135,-181.95645,149.41321,424.25427,4.706 1782,536.5318,310.42004,142.80328,340.65784,4.637 1782,626.57465,487.81067,20.652466,46.216064,4.622 1782,590.29364,224.84991,25.126343,55.013794,4.532 1782,612.6236,222.11975,36.559692,104.43158,4.368 1782,309.56415,302.47137,30.377197,56.54883,4.363 1782,493.31354,225.0072,237.59802,516.6282,4.345 1782,441.46115,324.02603,32.225555,70.686615,4.339 1782,4.5421114,199.63812,37.847652,102.88626,4.33 1782,-4.3586774,207.48128,17.703644,38.21045,4.203 1782,132.94,215.77634,38.693756,93.068695,4.18 1782,458.604,304.40076,32.325897,60.29196,4.15 1782,-37.135826,-127.23211,117.10425,279.43094,4.118 1782,116.42105,204.56798,39.58177,92.96004,4.107 1783,401.3341,206.09923,18.536072,41.46576,12.916 1783,371.69507,210.93773,19.909119,37.41835,12.04 1783,566.5331,219.153,23.709229,44.75679,10.067 1783,315.22986,298.611,32.539764,54.617676,9.329 1783,345.5711,299.5056,24.882385,38.4039,9.213 1783,435.9145,206.56673,17.895935,36.992035,8.376 1783,412.7071,318.6902,32.771423,70.46207,8.278 1783,462.4451,200.97202,28.06186,82.02005,7.919 1783,327.4657,298.96747,25.16153,41.26364,7.86 1783,449.6609,204.14525,19.681213,43.23996,6.516 1783,571.7156,216.7158,30.141663,59.0959,6.44 1783,-11.665983,477.32104,30.073069,64.0224,5.751 1783,269.75797,292.7616,26.504608,53.427887,5.749 1783,-6.120801,488.65662,18.999226,42.744995,5.668 1783,627.3486,-19.32309,17.204407,48.72494,5.658 1783,610.41125,-47.123596,42.129883,97.490814,5.638 1783,-6.0239644,-18.421192,17.94665,43.195663,5.327 1783,373.1936,206.44687,27.633575,56.47577,5.293 1783,-11.481712,-32.889812,30.073555,73.47954,5.244 1783,626.5248,488.178,20.682983,45.820892,5.228 1783,-17.78357,-63.857697,56.743057,144.88593,5.096 1783,-73.41412,265.1874,201.80528,463.17258,5.088 1783,613.0289,455.24783,39.264893,106.50827,5.074 1783,386.3495,209.70767,20.697906,45.208252,4.893 1783,586.1108,-99.01975,74.94635,229.35165,4.862 1783,583.5045,410.531,71.50458,177.52087,4.854 1783,354.14243,294.72253,31.872833,53.352997,4.785 1783,336.4778,297.3834,23.663757,34.916443,4.785 1783,-21.764736,401.7705,79.45253,175.55505,4.774 1783,-40.993916,363.5492,111.839264,278.07153,4.753 1783,532.0882,-182.06738,149.49658,424.1613,4.713 1783,394.8449,211.25877,20.188599,45.60182,4.662 1783,376.7608,204.08546,20.02298,37.659683,4.653 1783,536.6175,311.78644,142.71106,338.92963,4.629 1783,516.1198,361.59793,29.683899,75.100494,4.354 1783,448.90997,183.25247,48.01355,127.21091,4.329 1783,493.4291,225.78214,237.48392,515.2002,4.304 1783,422.91257,310.20615,34.125427,66.946594,4.257 1783,565.48285,217.49013,39.50128,102.61034,4.25 1783,574.5093,194.19815,47.791687,130.41705,4.207 1783,39.238575,207.78345,29.77261,68.77438,4.155 1783,18.420769,203.7413,42.86219,89.61813,4.12 1783,-37.096058,-127.817566,117.07797,279.65424,4.115 1783,-70.03163,-187.82455,210.27977,452.85928,4.096 1783,458.84628,306.19647,18.816711,37.069946,4.064 1783,353.34717,292.60193,21.339966,33.366486,4.044 1783,440.07797,200.55563,35.555634,94.887024,4.027 1783,302.9765,293.7062,30.41507,60.01996,4.009 1783,4.465587,240.23174,39.31352,90.88185,3.859 1783,474.6204,194.76485,30.622162,82.32222,3.858 1783,259.98074,245.5618,16.705597,28.143219,3.835 1783,281.01395,298.11267,19.743591,36.789246,3.831 1783,323.00214,272.05704,42.27652,74.56262,3.811 1783,4.134028,203.30403,38.524796,95.88408,3.811 1784,560.6438,220.17061,22.192017,49.56111,14.349 1784,263.0125,289.30188,28.085938,57.63336,10.668 1784,394.62277,210.80797,17.290955,43.9496,10.556 1784,388.75806,307.39453,31.715698,69.206085,8.74 1784,370.44257,213.08766,19.403473,38.746475,7.256 1784,434.2276,207.57736,17.374207,36.699448,7.213 1784,98.693855,252.62903,30.680809,80.003296,6.684 1784,378.9146,213.96393,19.345001,40.62503,6.176 1784,610.45337,-47.008045,41.962646,98.068306,6.016 1784,344.8199,294.8215,23.311035,38.337738,5.716 1784,573.97363,215.23343,28.661194,59.717316,5.713 1784,450.91687,205.95564,17.468506,41.486496,5.569 1784,-11.317206,-32.64871,29.638676,72.81664,5.553 1784,362.9025,219.32399,19.671051,42.021805,5.551 1784,-8.7443905,464.97345,37.395752,91.784546,5.544 1784,388.01315,209.07161,17.786652,39.21086,5.476 1784,-6.142516,489.37494,18.809162,41.5968,5.459 1784,-6.0501075,-18.670755,17.973267,43.407017,5.457 1784,626.5652,488.43372,20.696167,45.683105,5.418 1784,627.3746,-19.870987,17.222656,49.15942,5.322 1784,612.83057,455.90683,39.44055,106.36081,5.106 1784,-40.798874,360.8886,112.41963,278.54205,5.082 1784,275.62567,293.75653,28.582031,58.894714,5.073 1784,310.0667,287.08453,30.043884,61.59018,5.002 1784,-73.03298,266.49506,201.18164,461.95667,4.96 1784,-17.619957,-63.975647,56.671375,145.43388,4.953 1784,583.22363,411.5314,71.55878,176.56863,4.927 1784,441.81628,207.8154,17.64447,37.996796,4.902 1784,586.20404,-98.39322,74.73529,228.31015,4.891 1784,460.5854,203.78879,30.245575,78.23309,4.872 1784,364.313,209.56535,18.756714,34.475616,4.867 1784,61.178432,234.81335,33.311863,63.666443,4.821 1784,531.808,-181.51999,149.96393,422.72852,4.82 1784,476.16022,350.38406,30.280212,74.88812,4.74 1784,536.3708,311.0805,142.92242,341.06903,4.681 1784,347.21054,288.11438,31.016937,58.0195,4.502 1784,588.8432,210.52307,27.33191,64.92087,4.421 1784,558.62683,197.73576,48.87549,113.43526,4.378 1784,-17.729662,434.80386,55.696327,141.18478,4.356 1784,493.4878,225.94836,237.6156,516.16986,4.332 1784,3.738395,200.22444,32.243637,69.09389,4.322 1784,-5.6943345,197.74796,35.24023,102.10257,4.147 1784,337.90314,293.32095,21.28598,30.520508,4.123 1784,-70.18325,-187.96663,210.37744,452.60675,4.087 1784,-36.90502,-127.43491,116.91242,279.10898,4.051 1784,353.46997,222.4101,20.347626,43.912872,4.036 1784,522.9183,-18.353973,16.496765,41.243042,4.027 1784,424.3958,204.02881,35.496613,90.819,3.97 1784,323.46573,293.9666,32.369904,56.85907,3.956 1784,-6.9346466,341.6162,37.009716,101.0885,3.943 1784,552.16516,206.63486,35.601013,88.71927,3.914 1784,448.67548,182.65442,48.28589,129.11981,3.878 1784,328.8641,292.0867,22.439667,31.046051,3.871 1784,302.768,302.63412,31.473297,58.775604,3.866 1784,507.3142,-17.300947,16.191101,40.28504,3.859 1784,37.5107,211.0797,29.291393,60.963272,3.839 1785,367.24704,309.80612,29.346924,66.280426,25.51 1785,380.5609,208.35242,18.558807,43.229355,12.537 1785,442.2071,206.87595,19.74939,45.52086,10.394 1785,254.78867,287.20972,27.429596,54.864716,10.05 1785,361.82147,209.09157,19.282776,40.205887,8.61 1785,455.97992,201.46475,24.429321,69.59677,7.896 1785,271.68604,293.04276,23.841675,40.98053,7.066 1785,451.7011,351.82037,29.72461,74.65436,6.477 1785,-6.172105,489.84167,18.893057,41.436096,6.0 1785,51.398293,203.17139,30.21933,70.44629,5.899 1785,615.9757,203.076,22.48462,79.62926,5.701 1785,-11.627765,479.0101,29.566566,62.794037,5.679 1785,434.3047,204.03465,20.052734,41.298157,5.658 1785,425.19562,204.0396,19.317963,38.6194,5.566 1785,610.857,-47.75925,41.370728,99.94684,5.526 1785,627.5868,-19.1992,16.949036,48.252457,5.427 1785,-11.467305,-32.77379,29.798874,73.08844,5.403 1785,29.627651,188.48041,52.420307,123.59796,5.278 1785,350.51526,208.0017,28.185333,61.261734,5.251 1785,370.91977,208.25441,18.263824,41.13826,5.201 1785,-73.140305,265.33432,201.48561,463.37198,5.045 1785,330.47784,290.6992,20.484985,31.84732,5.04 1785,583.4642,410.20993,71.30237,177.73721,5.038 1785,387.39893,203.09293,16.960693,38.32831,5.02 1785,626.62164,488.47256,20.67517,45.46103,5.012 1785,612.74713,455.07526,39.98065,106.7608,5.005 1785,-6.131296,-18.422455,18.000786,42.87906,4.989 1785,-17.583492,-64.18424,56.581726,146.43767,4.976 1785,-41.228542,362.17804,112.60234,278.32135,4.965 1785,449.65732,205.53955,20.572052,51.69049,4.914 1785,585.9806,-98.65173,74.552734,230.24219,4.901 1785,491.04984,-180.94133,233.56656,427.7132,4.895 1785,-17.305513,436.99316,55.31024,138.46393,4.819 1785,337.7414,291.12976,20.73175,34.42639,4.793 1785,536.53174,311.96075,142.36688,340.32623,4.547 1785,321.49155,290.3558,21.275146,31.04483,4.528 1785,110.024475,277.62286,34.21158,80.50491,4.383 1785,347.33386,213.76117,20.266174,44.257416,4.282 1785,37.597923,201.0688,32.141754,68.43361,4.274 1785,264.94482,290.78232,21.926788,38.194366,4.27 1785,493.44415,225.50479,237.71259,517.2682,4.248 1785,19.22494,195.05873,43.103508,91.923325,4.22 1785,-69.86494,-187.67038,210.21237,452.78793,4.184 1785,468.6536,198.41295,29.336517,78.39189,4.146 1785,277.40356,267.35413,37.31482,78.840546,4.122 1785,68.90029,221.9684,29.67485,67.69389,4.116 1785,-36.966404,-127.32631,116.71149,279.0076,4.111 1785,448.41113,175.98407,48.362213,126.77728,4.09 1785,421.92416,195.34651,36.77176,83.08885,4.049 1785,576.2461,206.6708,28.80896,66.72543,4.038 1785,588.2147,202.43236,28.273193,69.16307,3.896 1785,461.91013,357.29996,23.394623,55.480347,3.875 1785,2.7617335,192.2983,47.919983,132.44182,3.871 1785,302.1231,282.81387,29.407684,51.53833,3.87 1785,597.86896,207.9801,31.425842,69.190674,3.828 1785,582.92255,212.9402,37.546997,95.43379,3.827 1785,323.3749,267.96332,40.22647,79.234375,3.825 1786,246.56645,286.227,27.911362,55.266052,9.669 1786,353.25742,207.79868,18.955353,37.04512,9.49 1786,433.01083,202.1112,21.782501,47.976974,9.403 1786,427.3685,355.5937,30.935486,76.725494,8.716 1786,440.24078,204.35022,22.631958,54.911957,7.506 1786,445.74033,202.88293,27.365479,69.372406,7.19 1786,346.74805,315.0741,32.502747,70.32391,7.145 1786,261.8797,296.63052,22.965637,42.44394,6.643 1786,412.5924,212.60008,17.626373,37.838226,5.992 1786,427.4809,209.78224,20.24887,44.18434,5.855 1786,-11.474873,-32.90713,29.784584,72.96422,5.835 1786,-8.662063,465.12735,37.519184,91.566986,5.737 1786,627.4451,-19.436739,17.173767,48.60387,5.699 1786,-5.981386,-18.450768,17.920387,43.11344,5.595 1786,610.4132,-46.99396,41.832947,97.98285,5.557 1786,-6.0371685,489.63596,18.718655,41.365204,5.555 1786,322.42377,291.94794,21.540283,32.278778,5.332 1786,621.66626,477.68857,29.144287,66.69052,5.14 1786,585.8835,-98.91635,74.89319,230.38986,5.044 1786,379.0564,204.22849,17.17572,41.862625,5.018 1786,-73.074554,265.76697,201.26218,462.24622,4.945 1786,490.8464,-181.28491,234.42654,427.94586,4.938 1786,583.7088,409.73517,70.993225,178.00934,4.907 1786,-41.00505,364.99792,111.90197,274.99268,4.832 1786,-17.704662,-63.81103,56.713703,145.53566,4.817 1786,342.52258,206.74677,27.079285,59.687836,4.804 1786,42.068024,305.59576,36.703827,79.34317,4.804 1786,458.79898,203.61356,32.49942,70.07852,4.8 1786,-17.277382,436.32837,55.259544,138.94165,4.74 1786,418.89996,212.07478,19.00293,38.933975,4.519 1786,288.10016,284.81183,28.459381,57.74881,4.507 1786,92.50679,232.24437,31.040955,51.391525,4.427 1786,536.6986,312.3634,142.11438,340.73657,4.427 1786,83.57383,239.41205,34.25653,61.650024,4.299 1786,65.78917,213.7112,42.377167,85.53551,4.253 1786,-70.109314,-188.14536,210.52478,453.39383,4.156 1786,-36.86791,-127.16695,116.65048,278.57806,4.139 1786,493.11523,224.965,237.90955,517.40955,4.139 1786,301.49805,288.42914,28.222137,51.417023,4.122 1786,31.193539,200.65149,52.575825,122.52014,4.108 1786,406.53592,194.71234,35.7435,79.05475,4.097 1786,52.48062,203.75397,31.732635,73.50546,4.082 1786,432.1965,181.56715,47.462585,119.37816,4.062 1786,362.17285,210.99577,18.915344,41.85417,4.019 1786,589.8518,199.29886,29.01886,71.82504,3.893 1786,-4.4947805,335.35657,17.44292,35.62439,3.892 1786,474.73523,-21.211807,17.989655,45.495346,3.782 1786,506.62384,-16.851091,16.845337,41.439526,3.688 1786,261.66068,267.58832,37.78528,78.67966,3.684 1786,115.356766,281.8705,30.94838,71.09125,3.634 1786,0.96608996,330.39743,32.344383,56.59909,3.63 1787,425.2328,203.1815,21.128754,44.386963,14.219 1787,238.92174,286.18735,26.739517,54.607452,11.566 1787,345.7544,206.043,19.439758,41.392853,10.391 1787,322.9611,301.58438,31.964996,85.69101,10.045 1787,408.06778,204.14975,19.542145,38.852173,8.332 1787,439.45825,204.58716,27.825684,64.82214,8.324 1787,419.80954,209.36728,19.03366,41.884796,6.454 1787,339.68292,203.17017,18.736023,36.109253,6.329 1787,312.6302,291.94424,24.36853,41.424805,6.116 1787,316.87756,293.79086,30.264496,69.92105,6.035 1787,-5.967467,490.13153,18.388908,41.160034,5.96 1787,627.55286,-18.964611,17.185852,47.34431,5.914 1787,623.3896,-34.276306,26.151672,76.0072,5.661 1787,411.31573,215.73334,17.332367,40.240448,5.657 1787,353.22028,205.78885,19.309204,44.879196,5.648 1787,-8.919168,465.1042,37.80435,91.64606,5.615 1787,279.1723,283.01315,28.639374,62.922455,5.405 1787,-11.397314,-33.31278,29.734224,73.40431,5.334 1787,612.92847,455.08597,39.545044,106.88687,5.284 1787,-6.012295,-19.125793,18.065964,44.249516,5.28 1787,363.49567,206.13542,20.083435,48.47856,5.087 1787,398.4341,270.6868,28.401276,62.140717,5.06 1787,583.68274,409.80823,71.30847,178.17004,5.007 1787,-17.798447,-63.71067,56.9327,146.28467,4.996 1787,585.8182,-99.2123,75.02887,231.19055,4.99 1787,626.7937,488.76117,20.280334,44.914307,4.933 1787,490.70715,-181.33539,234.54077,428.37976,4.932 1787,326.20804,292.4227,24.40451,43.005066,4.93 1787,602.97034,-56.66191,53.200256,133.93852,4.925 1787,403.5468,356.07846,30.576538,78.581024,4.924 1787,-21.837769,402.07565,79.770584,175.39297,4.899 1787,-72.979034,266.11908,200.75299,461.40216,4.846 1787,370.54584,201.3436,18.324432,43.804,4.714 1787,406.00616,195.02725,34.279816,80.7059,4.661 1787,44.569836,206.17783,30.546871,71.213135,4.557 1787,594.55255,-45.80128,43.65558,95.88818,4.507 1787,536.58136,312.86652,142.38019,340.1397,4.453 1787,251.89278,286.34442,29.01091,52.259155,4.319 1787,404.69366,218.1719,16.855988,37.05162,4.273 1787,493.16406,225.24509,237.99634,517.44507,4.174 1787,-3.9758964,328.3238,15.578455,34.79416,4.155 1787,334.02408,204.79594,28.275604,61.67714,4.13 1787,-70.12108,-188.00925,210.41739,453.05923,4.121 1787,51.68901,298.99042,36.141647,77.78479,4.111 1787,-36.913116,-127.66048,116.81213,279.77856,4.098 1787,122.34625,278.6119,29.1333,68.5676,4.075 1787,458.7247,194.1769,32.67691,75.29207,4.069 1787,432.97223,179.50732,45.53601,119.97574,4.053 1787,396.8427,211.5618,17.878937,37.97969,3.925 1787,85.33865,230.28287,30.157372,52.396057,3.909 1787,423.4165,195.233,36.40979,91.208405,3.881 1787,248.40675,290.67566,22.19725,38.500244,3.881 1787,433.0927,202.58228,21.100067,46.72023,3.791 1787,462.95148,-35.20487,28.304352,74.751434,3.765 1787,316.14078,203.03064,27.994232,67.22839,3.755 1787,4.82821,337.81088,17.72118,31.495148,3.679 1787,261.89447,267.6621,37.63513,78.50632,3.672 1787,441.24728,198.16853,21.520538,46.405716,3.663 1787,66.76381,214.53662,29.9691,64.063324,3.663 1787,72.61787,239.69669,21.822136,42.763794,3.654 1787,506.5592,-15.746004,16.415588,41.313847,3.641 1788,419.201,203.82504,20.945465,41.949814,13.75 1788,608.1603,203.20923,27.51239,73.68634,11.075 1788,338.88196,208.89438,17.850159,32.44899,9.484 1788,401.3131,202.33832,19.172485,38.381058,9.313 1788,230.91682,282.72412,27.323227,58.61328,9.14 1788,345.899,208.18355,17.452026,34.74901,8.429 1788,332.61154,205.69951,17.460419,31.406967,7.533 1788,305.98526,312.3042,32.200775,72.607605,6.225 1788,372.11493,350.57642,32.733826,84.18875,5.895 1788,611.06384,-48.83242,40.898315,99.640114,5.833 1788,-6.2116966,489.6268,19.079857,41.70462,5.712 1788,626.62524,488.67883,20.462646,45.28119,5.659 1788,-8.854578,465.30872,37.58248,91.38281,5.57 1788,438.93555,201.58244,27.22931,72.94234,5.54 1788,-6.0909376,-18.49331,17.882195,43.464314,5.428 1788,-11.391668,-33.118248,29.60188,73.852585,5.411 1788,372.66724,271.66574,28.04596,65.478,5.366 1788,612.9835,455.09628,39.611694,107.04056,5.167 1788,627.4151,-18.902569,17.22174,47.25266,5.145 1788,583.61334,409.8997,71.45508,178.25436,5.051 1788,585.933,-99.77571,74.90344,231.77853,4.963 1788,-17.51582,-64.51376,56.340965,147.11363,4.929 1788,490.50217,-181.31721,234.76639,428.38904,4.919 1788,-21.968746,401.5567,80.01629,175.71912,4.913 1788,-73.18589,266.0094,200.98233,461.77393,4.879 1788,433.55954,203.21623,20.663055,43.392685,4.7 1788,617.7235,200.19269,19.446228,54.815125,4.688 1788,621.9357,201.05673,26.22583,77.8634,4.583 1788,536.57275,312.68774,142.10718,340.71814,4.51 1788,431.14117,179.07025,48.21414,121.66144,4.481 1788,4.44047,337.37064,17.9665,31.257812,4.371 1788,240.8042,287.65265,22.494934,41.396423,4.347 1788,422.70752,193.90317,37.247925,94.71799,4.295 1788,354.62766,205.689,20.287476,48.260635,4.224 1788,492.9018,225.17447,238.31128,516.66785,4.211 1788,363.6524,203.70215,17.449585,39.861053,4.171 1788,357.43195,268.10675,43.523926,107.73456,4.161 1788,-69.943855,-187.78406,210.36032,451.96927,4.101 1788,599.5504,212.99164,37.121277,110.012695,4.084 1788,-37.155212,-127.216934,116.682945,279.189,4.073 1788,452.73926,192.14078,38.17856,103.806,4.005 1788,410.85553,209.9852,20.334717,38.993103,3.977 1788,324.72836,207.94328,19.876862,38.56639,3.86 1788,-3.9582434,334.2128,16.199303,34.856903,3.844 1788,52.24423,299.2431,36.453136,76.52112,3.658 1788,584.28723,205.4031,37.346436,101.06265,3.634 1788,468.42725,191.40479,39.23056,110.26001,3.628 1788,244.41728,284.0524,29.19484,54.476562,3.626 1788,341.5604,203.52306,28.393402,61.31581,3.618 1788,627.1877,201.83887,18.23993,50.143555,3.613 1788,324.71106,204.38474,28.782043,60.719757,3.61 1788,454.3299,-34.74718,28.714966,74.44384,3.609 1789,417.89047,202.66669,21.793945,46.194885,18.729 1789,337.923,207.33356,18.195831,35.504578,12.644 1789,233.25975,289.8466,21.106522,42.803345,10.132 1789,331.94614,207.41716,17.391388,32.893326,9.484 1789,399.8504,202.55762,19.385925,38.79561,9.38 1789,340.27805,346.09015,32.261627,82.344025,6.527 1789,363.62552,199.98288,17.829712,38.445557,6.445 1789,422.52386,193.44806,35.74182,88.952484,6.214 1789,-6.1696587,489.11548,18.975433,42.929565,5.928 1789,433.67062,204.61725,20.91632,47.405716,5.748 1789,611.04236,-47.70298,40.933228,98.34933,5.652 1789,438.58017,201.76744,26.641815,66.824326,5.643 1789,-11.493013,477.90628,29.515038,63.56314,5.462 1789,-11.465802,-32.739117,29.700676,72.63476,5.393 1789,612.72577,454.82382,39.710693,107.190704,5.294 1789,627.5627,-18.08365,16.705261,46.632618,5.248 1789,-6.1214256,-18.540623,17.992462,42.983208,5.244 1789,406.76303,193.1676,34.383087,77.410675,5.163 1789,-17.561049,-64.174835,56.62377,147.17807,5.123 1789,626.52625,488.22318,20.671753,45.875885,5.095 1789,583.12396,410.69955,71.80371,177.79861,5.054 1789,324.85632,203.48264,17.513794,32.61212,5.018 1789,391.80304,195.12634,34.583527,75.18994,4.991 1789,345.71625,202.74591,17.667603,36.164597,4.935 1789,585.9864,-100.116875,74.88898,232.25714,4.895 1789,490.06656,-181.03494,235.53763,427.762,4.847 1789,283.0576,308.8736,30.339874,73.51007,4.841 1789,-72.882225,266.44086,200.56412,460.95795,4.816 1789,-40.69441,365.85345,111.254135,274.66663,4.814 1789,329.00043,201.61722,25.18451,57.00284,4.81 1789,59.531494,210.84303,32.062515,64.81056,4.787 1789,355.86838,204.72191,18.559875,44.88127,4.587 1789,536.3869,311.56775,142.68542,341.3219,4.583 1789,-18.144176,435.752,55.91054,140.68439,4.53 1789,435.77072,199.43384,39.70459,102.56772,4.411 1789,493.06552,225.19028,238.28226,516.7969,4.278 1789,614.57574,197.52985,25.950378,86.37546,4.142 1789,244.08484,283.6406,28.92337,53.437927,4.112 1789,-70.13457,-187.5969,210.44745,452.50214,4.106 1789,-37.150608,-127.98335,116.690445,279.40765,4.084 1789,410.13138,199.14485,20.28534,40.881683,4.078 1789,315.18378,213.80481,20.013977,41.56952,4.073 1789,68.15669,200.6674,39.900436,92.58333,3.926 1789,402.46942,211.68472,20.538818,46.50186,3.863 1789,451.33606,199.18855,29.955627,73.22356,3.807 1789,-3.9337206,320.37283,15.238654,33.899506,3.765 1789,42.85489,302.53925,35.490288,80.775085,3.756 1789,447.64267,167.83087,49.508026,138.28363,3.682 1789,395.4625,198.2991,57.253296,139.69928,3.679 1789,317.5315,239.29005,53.63202,121.87709,3.597 1789,271.4126,278.6496,27.899597,62.62445,3.569 1789,-7.9946146,262.14044,38.181305,103.500885,3.525 1789,589.5327,205.27359,28.09497,68.43811,3.514 1789,425.4596,197.88402,21.335419,44.705948,3.506 1789,1.9353789,489.66306,19.831856,41.78055,3.488 1789,218.78944,245.91565,17.73729,29.0448,3.483 1789,2.562632,-16.935123,17.110466,39.936253,3.477 1789,458.36246,-21.264378,18.496826,46.191105,3.447 1790,418.2265,202.66568,20.996338,45.209106,18.658 1790,337.47757,203.08167,18.890656,42.129395,16.427 1790,395.57236,203.33446,19.060394,36.15129,13.026 1790,330.60974,205.71759,19.009583,38.36316,12.815 1790,324.88855,203.9095,17.67926,37.84195,11.69 1790,230.1462,272.86588,26.58754,57.667908,10.371 1790,432.9443,203.61029,20.411133,46.462204,8.177 1790,262.94247,310.6111,27.067657,65.29071,7.465 1790,308.54037,340.96216,31.228546,77.44888,7.327 1790,401.8048,207.86725,20.437958,39.96991,6.411 1790,622.97296,-34.370205,26.04889,76.83552,6.319 1790,627.11957,-17.26118,16.850891,46.23815,6.204 1790,328.63092,199.07654,24.959778,66.158264,6.104 1790,-6.178645,489.4175,18.938786,42.31241,6.031 1790,425.94327,205.3753,19.350555,45.877487,5.599 1790,-6.1348095,-18.520145,18.131144,43.24964,5.455 1790,-8.930538,464.08768,37.61931,92.9241,5.364 1790,626.47437,488.4864,20.683533,45.939575,5.348 1790,-11.36539,-32.83393,29.680023,72.99848,5.343 1790,602.68774,-55.976322,53.467896,133.02585,5.328 1790,421.2642,194.37665,35.747345,88.35132,5.202 1790,239.2258,284.46518,20.347198,40.52771,5.091 1790,585.6653,-99.996666,75.440125,232.48407,5.061 1790,-17.598204,-63.77865,56.758606,146.85062,5.051 1790,-40.787273,362.00714,112.02348,278.48944,5.029 1790,612.6472,455.2815,39.50177,106.50763,5.024 1790,-73.03723,266.9054,201.1442,462.1172,4.997 1790,391.63318,196.1159,33.933685,72.55548,4.953 1790,583.09686,411.11707,71.83789,177.45874,4.934 1790,33.725067,210.32262,41.022972,87.441635,4.807 1790,489.8419,-180.40137,235.70224,427.07523,4.714 1790,536.15857,311.29962,143.19653,341.1634,4.606 1790,341.31436,198.97423,36.27652,75.24617,4.535 1790,410.57886,198.37486,20.660126,42.432144,4.476 1790,496.8803,109.87782,19.163208,44.279434,4.424 1790,-18.015247,434.68256,55.569103,141.3659,4.421 1790,274.57904,275.1936,18.278717,32.88266,4.406 1790,406.2466,195.032,35.71582,84.77525,4.39 1790,452.42676,197.13544,28.203247,84.17273,4.371 1790,12.427034,188.95142,53.010002,122.41742,4.333 1790,320.4756,336.97253,34.766754,76.01959,4.321 1790,493.28638,225.53192,237.87024,516.3592,4.254 1790,281.17645,279.5315,22.949951,43.496155,4.219 1790,308.2143,215.75983,29.945526,72.02637,4.21 1790,363.98312,197.16788,16.735596,31.276718,4.201 1790,595.15784,-45.290157,43.21936,95.40988,4.199 1790,-70.18468,-187.8889,210.38448,452.7442,4.161 1790,-37.352856,-127.42232,116.884476,279.78915,4.057 1790,-5.031407,196.08191,36.064926,101.48291,3.922 1790,357.15256,199.0709,35.574524,73.11351,3.922 1790,619.7241,-16.120987,16.713867,41.873955,3.918 1790,260.64517,262.0905,37.177338,84.131165,3.912 1790,440.95764,206.06615,21.181519,56.72963,3.905 1790,458.55157,-20.42108,18.1539,45.25682,3.901 1790,448.9074,173.048,46.546814,134.26462,3.889 1790,344.9376,199.98683,18.292969,38.86618,3.872 1790,303.7769,266.87946,26.442474,66.56891,3.856 1790,-10.377085,205.52911,29.169056,74.58661,3.854 1790,316.75726,210.3996,54.177948,134.35889,3.847 1790,-5.9412727,261.86856,19.714739,46.670105,3.803 1790,245.90408,278.5121,27.79712,59.89627,3.798 1790,574.05664,-19.447632,51.767822,120.22057,3.767 1790,314.834,210.64825,21.207306,48.143555,3.737 1790,-6.5044117,312.45065,37.42569,101.03439,3.732 1791,418.2866,201.18979,19.887573,46.043594,29.177 1791,393.7761,200.95274,19.51175,37.744644,12.959 1791,627.2898,-18.44315,17.016968,46.6836,6.929 1791,432.82352,202.33675,19.290314,42.624954,6.438 1791,273.71277,324.25845,30.020233,75.35104,6.375 1791,-6.151908,489.72052,18.896282,41.5119,5.799 1791,426.03125,205.85641,17.996155,43.725784,5.798 1791,329.84482,203.24495,21.289032,46.34828,5.798 1791,-8.659478,465.88336,37.457695,90.62909,5.736 1791,236.81847,296.46597,30.68193,72.414825,5.554 1791,622.94745,-34.991898,26.53363,76.360176,5.479 1791,-17.584558,-64.17194,56.78179,146.94115,5.17 1791,321.58368,202.55022,21.598846,44.852814,5.079 1791,626.47754,488.54538,20.778687,45.910553,5.071 1791,-73.14376,265.15598,201.13138,462.96732,5.022 1791,-11.185596,-32.882706,29.603497,73.89238,5.006 1791,612.77716,454.81592,39.860474,107.2738,5.003 1791,228.16063,269.90823,31.074997,62.045532,4.976 1791,585.77246,-100.8395,75.73584,233.23401,4.972 1791,582.99036,411.92874,71.86804,176.38327,4.958 1791,-6.071087,-18.466364,18.119274,43.59599,4.935 1791,336.6399,201.33104,19.61911,39.445984,4.869 1791,603.03595,-57.305054,53.496033,135.76901,4.801 1791,-41.061028,364.23883,111.5691,277.88275,4.783 1791,-21.387974,403.05865,79.25037,174.56708,4.765 1791,411.96487,197.2895,20.275085,42.54364,4.753 1791,489.68146,-180.52971,236.03986,426.4432,4.708 1791,315.88586,201.58757,18.549805,35.34517,4.706 1791,455.0335,189.46404,36.183838,100.942154,4.683 1791,341.4718,197.40668,36.431793,77.693665,4.646 1791,536.2105,310.7495,143.30817,341.68616,4.644 1791,421.665,194.17854,35.24362,87.60896,4.6 1791,1.9099808,189.56888,46.49612,122.74829,4.594 1791,402.15213,207.22853,19.35794,42.007065,4.582 1791,325.43045,199.92584,37.565826,87.27878,4.555 1791,388.7879,208.89261,18.547363,39.16353,4.532 1791,390.18967,195.42157,35.405426,82.25348,4.507 1791,493.0492,225.90762,238.06628,515.5713,4.379 1791,-69.88254,-187.42023,210.19826,452.27408,4.246 1791,406.06595,195.51498,36.242584,83.19882,4.214 1791,442.68253,-20.160591,17.988617,46.05232,4.181 1791,619.7479,-18.023401,16.944092,43.976036,4.171 1791,595.25195,-46.41078,43.277527,97.120346,4.104 1791,-13.28441,203.49236,49.08309,137.33498,4.087 1791,486.18494,186.72015,35.949463,105.287415,4.045 1791,34.078644,216.3097,40.301735,84.97473,4.029 1791,-37.400185,-127.44397,116.68833,280.25662,4.014 1791,12.565852,240.07451,33.365963,65.37459,4.006 1791,469.72034,187.28625,36.28949,104.636444,3.952 1791,17.037785,210.14587,39.98566,87.074554,3.905 1791,262.9129,295.60632,29.43039,77.86804,3.884 1791,450.9292,-19.390966,17.637146,45.3051,3.866 1791,251.01367,336.23367,31.71466,65.6019,3.842 1791,375.06546,197.1369,37.150665,83.714966,3.833 1791,357.2369,198.79506,37.665466,83.58714,3.778 1791,331.97708,204.41245,56.108826,136.75922,3.775 1791,441.0765,205.42908,19.754486,46.412567,3.746 1791,438.3106,193.22551,37.291077,94.146835,3.719 1791,-5.9862328,262.34824,18.618673,41.59555,3.702 1791,434.04535,-19.01449,18.515076,45.350082,3.685 1791,242.0326,246.41849,41.903015,84.672485,3.672 1791,615.3812,-22.857067,26.71289,78.236855,3.665 1791,379.7316,210.46564,18.820496,38.5914,3.625 1791,61.832104,296.60382,35.66347,76.723724,3.606 1791,502.47052,177.37836,34.934143,106.766754,3.59 1791,458.40976,-18.103853,17.558807,42.958,3.581 1791,2.1480536,490.56232,19.78157,40.70294,3.564 1791,220.55392,229.06921,30.180817,64.701416,3.555 1791,285.41312,220.38347,30.355133,68.41753,3.541 1791,-9.945214,256.83875,39.046673,101.22107,3.527 1792,418.57404,197.70888,20.737518,47.91359,27.016 1792,393.05542,197.8953,20.520325,38.94011,22.533 1792,474.2596,200.03165,20.630463,51.744568,8.679 1792,315.17,200.46863,20.001373,45.179337,6.591 1792,235.57787,298.24713,30.751205,77.724884,6.588 1792,-11.446371,478.7922,29.469471,62.60489,5.829 1792,627.2429,-16.844517,16.479675,45.393646,5.695 1792,-6.0814686,489.6851,18.748596,41.641693,5.66 1792,465.4829,196.32611,24.955292,76.14798,5.585 1792,337.06134,199.63432,18.711304,44.240555,5.584 1792,-11.496611,-32.719776,29.947205,73.15441,5.482 1792,-17.408184,-64.836945,56.52602,147.58005,5.325 1792,612.8265,455.06378,39.874207,106.88318,5.267 1792,626.6641,488.1099,20.354797,46.04245,5.262 1792,-40.777138,361.37805,111.72878,279.0315,5.185 1792,611.3615,-48.36766,41.23944,101.669525,5.11 1792,-6.2020836,-18.669538,18.105963,43.40196,5.073 1792,-72.97188,266.17917,201.03293,461.80618,5.037 1792,310.31927,195.354,36.162903,80.95648,4.989 1792,583.1595,411.91125,71.582214,176.31787,4.952 1792,585.64905,-102.95799,76.441284,236.37138,4.788 1792,244.7273,243.05014,29.2565,76.21414,4.75 1792,489.51093,-179.9494,236.4881,426.03436,4.611 1792,536.50903,310.98688,142.91516,341.25153,4.594 1792,286.0594,213.4194,29.359344,70.71457,4.577 1792,325.40503,197.45502,36.4881,77.9765,4.553 1792,-17.52563,435.81964,55.355568,139.9068,4.5 1792,340.82248,194.79674,36.444427,78.440994,4.429 1792,493.4232,226.34088,237.72818,515.2788,4.397 1792,487.28687,200.01439,20.719421,50.075806,4.351 1792,293.58646,198.2467,37.367218,94.05899,4.337 1792,484.96356,186.94095,36.38202,104.02731,4.33 1792,215.51526,235.5288,26.41391,60.160294,4.315 1792,476.98517,201.73422,26.47583,73.55887,4.235 1792,388.88037,176.29953,38.40027,73.10907,4.229 1792,434.95895,194.67691,17.601715,36.175003,4.227 1792,400.5573,200.36691,20.817047,41.80255,4.192 1792,-37.13111,-128.49615,116.4283,280.6799,4.155 1792,-70.21703,-188.03612,210.79959,453.04663,4.103 1792,412.10416,206.18806,19.39737,42.515396,4.023 1792,-8.693876,309.8419,37.92035,101.45441,3.941 1792,422.40668,192.88431,35.20514,85.284,3.922 1792,306.9173,203.11787,22.390625,50.347244,3.854 1792,302.46085,206.82239,53.40738,139.80426,3.834 1792,425.42303,206.87875,17.665466,42.54117,3.811 1792,426.6767,192.74402,18.000275,41.257202,3.777 1792,1.9597679,491.46152,19.586237,39.83902,3.721 1792,231.07774,248.51584,28.865707,66.62363,3.701 1792,270.2586,201.11346,52.025604,126.091,3.689 1792,290.47522,240.50981,43.080627,103.84209,3.627 1792,323.46494,218.50128,41.36615,109.8551,3.616 1792,-9.803394,99.59776,38.809723,111.163925,3.551 1792,-8.091774,41.811363,37.15728,102.98826,3.506 1792,439.005,192.77618,36.37921,89.19653,3.495 1792,501.90234,187.46753,37.14862,105.768524,3.484 1792,555.03107,-14.450663,15.971191,37.060215,3.467 1792,219.37573,283.74188,33.51651,79.85745,3.453 1792,406.66122,185.95781,35.039978,72.77864,3.453 1793,438.87424,203.40807,20.629547,46.034668,27.202 1793,489.4153,205.90346,21.812408,52.370987,20.22 1793,495.51093,202.66379,26.448364,74.44675,18.187 1793,331.78735,205.6526,17.902649,37.904343,9.278 1793,347.0299,208.01675,20.20288,40.979324,8.778 1793,448.17657,203.1556,20.210114,44.022354,8.555 1793,408.59805,199.36632,21.123291,41.148987,7.575 1793,326.4471,204.32375,26.774597,65.82277,6.237 1793,-6.21251,489.3119,18.935242,42.294983,5.851 1793,627.4281,-16.215275,16.829224,43.377148,5.785 1793,-11.42056,-32.688526,29.687569,72.39852,5.741 1793,457.02206,201.5336,20.717041,43.071014,5.686 1793,-8.851874,465.0237,37.578888,91.56485,5.641 1793,336.54083,206.15944,21.463745,43.646957,5.538 1793,623.3569,-33.64347,26.143127,73.01426,5.461 1793,626.70526,488.3047,20.449036,45.65515,5.455 1793,612.84735,454.77997,39.568542,107.21991,5.359 1793,-6.1384907,-18.495184,17.987104,43.03493,5.294 1793,-17.585789,-64.32705,56.585026,146.9815,5.088 1793,143.64255,266.52747,20.985321,40.85501,5.068 1793,602.8486,-55.496876,53.23651,135.48914,4.97 1793,583.1119,412.02066,71.545105,176.37961,4.95 1793,-72.50644,267.15927,200.00574,460.03665,4.891 1793,585.67236,-104.588615,76.25702,239.14178,4.847 1793,-40.17597,366.78577,110.46704,274.49585,4.812 1793,490.29752,-180.6546,235.56155,425.34375,4.648 1793,352.7841,202.78674,19.649628,37.46135,4.579 1793,536.3445,311.1363,143.15735,341.74603,4.563 1793,466.55548,198.71706,19.882385,40.371857,4.541 1793,-18.003807,434.8999,55.871716,140.41718,4.534 1793,-4.283538,344.6637,29.253078,92.056,4.407 1793,493.35992,226.6914,237.78265,515.6207,4.284 1793,510.224,198.2551,22.947449,54.167755,4.155 1793,218.93298,286.21545,30.65207,82.04462,4.136 1793,248.67572,232.59633,20.346832,44.241257,4.125 1793,309.80267,200.26926,36.547394,90.91431,4.081 1793,595.3143,-46.400566,43.353027,97.493835,4.073 1793,234.85597,251.33923,30.88237,71.43396,4.034 1793,-70.33639,-187.6973,210.61292,451.67697,4.023 1793,-37.22916,-127.82434,116.76283,279.89807,4.018 1793,481.88776,198.58934,22.081207,45.90683,4.009 1793,474.55478,199.37202,20.80243,40.06108,4.003 1793,290.80505,242.2191,42.778625,99.66966,3.978 1793,614.23206,84.096146,35.39795,100.92996,3.904 1793,340.97336,197.7459,35.89557,76.0605,3.889 1793,2.617197,315.14108,18.054611,31.532074,3.889 1793,437.8792,188.92136,36.0661,71.64163,3.872 1793,293.15945,197.64673,36.551605,95.42691,3.852 1793,105.76491,277.14157,28.4189,67.08026,3.784 1793,152.50172,265.8916,19.68016,35.727905,3.765 1793,499.3797,183.21518,35.87091,87.42178,3.751 1793,-5.5067844,315.8633,17.542198,36.75992,3.739 1793,233.23257,248.63809,21.018097,44.79248,3.735 1793,619.9405,-15.314421,16.356445,38.59123,3.652 1793,-7.916901,217.20392,37.185978,102.05835,3.644 1793,597.6783,90.08875,37.37787,91.67272,3.593 1793,224.23836,310.83395,31.783066,77.29776,3.59 1793,299.65112,304.9318,19.508667,27.522156,3.579 1793,181.5839,245.2681,37.600525,75.57669,3.553 1793,306.9155,303.43365,19.82132,28.87201,3.54 1793,-4.1844296,303.6362,16.018147,34.80551,3.536 1793,214.35635,240.88472,37.470856,86.91258,3.527 1793,-8.557398,68.71207,38.094006,108.99927,3.518 1794,456.92285,199.95432,20.142914,48.658096,38.959 1794,506.03168,204.51962,21.927063,46.704224,31.248 1794,347.0183,200.56209,18.059967,41.093094,26.179 1794,518.593,203.10233,21.759521,50.736053,19.655 1794,361.71533,201.58188,19.444,43.95334,12.201 1794,423.79166,195.218,21.005066,44.29814,10.244 1794,353.2273,200.05524,20.746735,48.403824,9.665 1794,385.04498,203.12411,21.384918,45.575928,6.785 1794,-6.0877743,489.56183,18.624533,42.40631,6.16 1794,124.23784,273.60577,28.96901,70.09476,6.047 1794,627.26324,-17.972591,17.11139,47.010983,5.899 1794,623.1393,-34.235905,26.391052,76.2776,5.634 1794,368.18912,200.94255,21.65805,47.143448,5.628 1794,-8.916788,464.81125,37.5881,91.654816,5.614 1794,339.3611,195.94183,23.53659,61.86847,5.445 1794,602.6408,-57.517563,53.17218,136.01904,5.212 1794,626.44904,487.77325,20.650818,46.301147,5.19 1794,503.20407,186.10321,34.845367,73.09003,5.187 1794,612.88245,454.30438,39.377625,108.125916,5.145 1794,343.05942,196.5882,33.355133,75.42938,5.135 1794,-17.57836,-64.971634,56.66794,147.76045,5.114 1794,-11.392318,-32.998436,29.791786,73.41009,5.097 1794,-6.058142,-18.936068,17.959332,43.752186,4.999 1794,-72.811844,266.3924,200.33401,460.9124,4.964 1794,583.2207,411.8049,71.41077,176.44388,4.943 1794,-21.78043,402.34726,79.477936,175.09244,4.842 1794,498.19208,196.5967,22.061035,45.33934,4.682 1794,586.1092,-105.17976,76.15466,239.35571,4.68 1794,490.55145,-181.08762,235.0216,424.2956,4.669 1794,536.49786,310.92493,143.26678,341.75513,4.621 1794,375.0653,193.75179,33.825134,74.4171,4.562 1794,67.15433,309.7879,34.488625,69.744385,4.541 1794,326.33063,200.18529,35.973297,88.15828,4.44 1794,595.3248,-47.22541,42.806396,97.13891,4.425 1794,493.57635,227.03012,237.1391,515.13,4.391 1794,464.65973,202.39018,19.709442,50.23889,4.377 1794,309.98035,192.6011,35.16159,85.88223,4.289 1794,137.21353,272.6372,18.763931,37.04068,4.282 1794,340.6912,195.68242,17.727875,37.239212,4.25 1794,129.597,270.3565,19.926575,41.03601,4.23 1794,472.70175,199.65973,19.517242,45.03012,4.19 1794,-37.020554,-127.56679,116.591896,278.46408,4.175 1794,-8.476272,243.73692,37.772003,107.151505,3.996 1794,12.947443,209.24986,53.493904,127.10988,3.995 1794,-70.517586,-187.84232,210.70578,451.72037,3.979 1794,287.7594,211.02568,50.944153,132.27205,3.9 1794,206.53574,241.18886,26.164764,52.555374,3.888 1794,346.63214,237.55722,31.916443,62.552246,3.884 1794,283.03537,221.35333,18.5831,43.599274,3.862 1794,271.62717,203.43497,49.342834,124.21564,3.836 1794,260.41028,231.12398,38.792603,96.00731,3.808 1794,293.39108,198.62598,36.782715,96.16669,3.778 1794,490.58252,197.70168,20.604248,39.793167,3.773 1794,515.85474,183.8013,35.55829,79.148834,3.773 1794,431.66113,190.4672,20.823639,42.06584,3.766 1795,463.16522,204.83302,21.258545,51.25627,47.058 1795,512.3038,206.47214,23.20819,49.299805,39.768 1795,385.55145,201.98752,20.459137,44.826813,13.52 1795,523.14996,205.15265,25.545776,51.15796,11.354 1795,425.41284,200.7972,20.231995,42.502853,9.393 1795,345.46588,207.67346,18.920593,37.584442,8.306 1795,361.95807,207.34973,20.79956,45.137268,7.145 1795,471.203,202.12064,21.556854,49.426575,6.141 1795,-6.038654,489.45667,18.842752,41.858704,5.796 1795,-8.86475,465.27142,37.473392,90.85803,5.702 1795,-11.48925,-32.642097,29.776814,72.483154,5.633 1795,627.23596,-18.162315,17.239685,46.724163,5.594 1795,496.84338,198.04471,27.313965,57.566345,5.519 1795,611.3123,-48.38951,40.695374,100.53214,5.479 1795,612.86597,454.99384,39.52301,106.47528,5.434 1795,-17.591885,-64.72254,56.719467,147.32849,5.336 1795,-6.0534573,-18.636257,17.92055,43.1715,5.282 1795,354.65503,207.95247,20.11438,41.855286,5.115 1795,396.29053,196.36261,27.043488,58.723312,4.956 1795,-21.785746,402.67065,79.69332,174.81274,4.884 1795,522.4502,94.77257,19.048767,49.627243,4.874 1795,583.2435,411.83652,71.30206,176.20663,4.86 1795,376.48688,196.04596,32.896088,74.44562,4.812 1795,-72.72841,267.41974,200.03778,460.41235,4.811 1795,342.11426,200.7776,26.080017,61.591812,4.758 1795,586.07556,-105.15297,76.12628,239.51279,4.67 1795,490.7212,-181.42636,234.97656,424.3001,4.645 1795,536.4956,311.45508,143.1322,341.28778,4.564 1795,480.0595,203.65376,21.811035,48.657394,4.537 1795,392.51175,199.33792,19.722504,41.429108,4.469 1795,77.48442,290.03006,35.503403,74.89786,4.444 1795,368.66623,200.31161,23.393951,53.76938,4.377 1795,493.69897,227.24191,237.1991,515.2883,4.312 1795,317.10507,224.1751,30.337097,70.30586,4.269 1795,626.4713,487.5942,20.95459,46.298187,4.269 1795,487.46967,199.0952,25.816711,53.42192,4.173 1795,-37.120056,-127.71206,116.827354,279.30533,4.109 1795,571.29816,-25.839066,55.12195,135.58635,3.963 1795,-70.43201,-187.91391,211.00957,451.66983,3.943 1795,236.4631,236.55325,29.988129,69.28464,3.838 1795,82.74235,207.1148,30.927666,66.81677,3.83 1795,292.518,202.11462,38.612305,91.01715,3.802 1795,434.8282,208.78369,17.71939,43.279312,3.707 1795,503.70755,201.49492,35.550995,71.780106,3.692 1796,519.19214,203.67348,25.94104,59.963913,57.888 1796,472.27393,206.64691,18.855072,51.08072,30.526 1796,507.53384,199.74739,25.734222,62.44835,15.185 1796,337.9253,209.00821,20.466125,40.22838,14.784 1796,404.9905,195.53955,25.89087,69.065125,10.104 1796,426.36804,199.77954,18.804443,46.786636,9.421 1796,418.18604,203.92763,19.704163,48.483353,6.407 1796,479.47025,205.49916,20.18863,50.822495,5.946 1796,-6.126707,489.75043,18.726206,41.384827,5.826 1796,-11.4496975,-32.566628,29.779835,72.41058,5.754 1796,621.79755,478.5076,28.978271,66.57376,5.582 1796,-8.9749775,464.7266,37.71106,91.81479,5.466 1796,332.30072,208.91856,30.95343,62.75786,5.448 1796,-6.0718346,-18.62844,17.852085,43.14093,5.401 1796,-17.552923,-64.990524,56.59957,148.09865,5.394 1796,627.4469,-17.79926,17.071533,46.177837,5.35 1796,383.36627,203.20743,22.09845,48.060608,5.302 1796,611.30896,-49.28922,40.579224,101.31226,5.097 1796,391.9416,6.869808,32.721924,84.86859,5.022 1796,583.3158,411.5124,71.23346,176.57416,4.953 1796,343.77927,214.82123,21.236664,38.383575,4.922 1796,-40.574677,365.98447,111.12326,275.24783,4.753 1796,526.2359,206.09111,30.85553,64.0815,4.721 1796,-72.46932,267.64923,199.96918,459.1009,4.706 1796,536.3451,310.37097,143.27411,342.68042,4.636 1796,490.8578,-182.06633,234.98322,424.04153,4.599 1796,586.3245,-105.37868,76.08319,239.98695,4.594 1796,-18.041372,435.40045,55.784668,139.55402,4.523 1796,493.7815,227.40854,237.14319,515.3408,4.355 1796,375.06226,196.38548,33.911865,77.221634,4.266 1796,-10.254507,254.11247,28.411497,64.13765,4.187 1796,-37.06292,-128.06749,116.847015,279.62518,4.106 1796,-5.498228,264.52454,17.656885,41.588684,4.097 1796,331.9389,203.49886,19.279083,36.697327,4.086 1796,497.58478,198.4956,26.242004,60.874634,4.079 1796,361.53223,206.00575,18.818176,42.431274,4.077 1796,433.00214,200.2661,19.518585,48.890213,4.04 1796,299.08972,342.53152,17.659729,26.503998,3.915 1796,-70.441284,-188.05357,211.08633,451.64917,3.914 1796,-8.175441,68.612976,37.700127,108.405914,3.777 1796,292.24222,241.47601,40.888702,102.339905,3.773 1796,470.2617,197.551,34.18924,70.13287,3.657 1796,259.3189,240.01321,42.230164,98.244354,3.657 1796,421.1889,197.85066,34.381134,84.88304,3.585 1796,-4.909156,206.57253,16.957184,39.517715,3.575 1796,405.23883,203.51694,36.618713,93.73718,3.56 1797,534.5397,205.06773,26.75592,59.177994,47.757 1797,483.28384,206.11229,21.7435,52.307053,32.794 1797,521.59705,200.91208,26.615051,61.35681,31.414 1797,340.66452,209.0728,20.172546,41.161514,12.219 1797,368.12238,204.50241,20.357697,47.115326,10.406 1797,386.63422,200.05875,22.04956,51.536285,9.643 1797,491.10287,200.17593,27.05954,61.931244,7.684 1797,433.48804,201.3219,20.416412,43.132996,5.881 1797,-8.68208,465.83075,37.49862,90.26654,5.596 1797,627.5552,-16.530003,16.676697,44.018753,5.544 1797,-11.403925,-32.628742,29.813711,72.4897,5.54 1797,-6.299687,489.49692,19.10288,41.788177,5.529 1797,-6.104168,-18.829802,18.033066,43.520954,5.522 1797,612.88086,454.95633,39.789368,106.99234,5.431 1797,-17.630665,-64.16152,56.74435,146.1869,5.257 1797,611.3423,-48.60211,40.882385,100.32146,5.194 1797,626.71313,488.32916,20.312927,45.480713,5.073 1797,353.44495,213.35898,19.94397,46.010956,4.952 1797,502.39807,199.53519,28.091553,60.75766,4.918 1797,583.29205,411.0149,71.3775,177.29932,4.914 1797,-21.792202,402.19534,79.89482,175.32175,4.887 1797,375.2561,194.45091,33.765686,77.43776,4.806 1797,-72.68353,266.75934,200.07678,460.79144,4.75 1797,536.6627,310.08926,142.9956,342.33347,4.703 1797,323.52908,212.68646,19.74112,40.612167,4.609 1797,490.67297,-182.30711,234.55188,423.5065,4.576 1797,332.50745,210.15732,30.83728,69.29382,4.568 1797,493.8394,227.48447,237.10666,515.64246,4.446 1797,586.3743,-105.25723,76.0719,239.56235,4.443 1797,440.68518,198.66486,19.196411,41.22534,4.373 1797,428.8599,207.73174,27.885132,71.15315,4.213 1797,49.965324,209.55801,20.562004,39.620453,4.209 1797,-36.910393,-127.74604,116.83935,278.5288,4.182 1797,512.569,203.04503,26.171387,66.20915,4.181 1797,292.59906,238.96971,40.03354,103.45497,4.125 1797,292.9566,207.06546,36.85437,86.410126,3.961 1797,474.1364,199.0819,25.151062,67.68834,3.956 1797,363.0637,213.59633,18.806671,45.37422,3.883 1797,-70.42611,-188.34741,211.2604,451.68433,3.862 1797,332.40295,210.74884,20.627197,40.03772,3.761 1797,261.00592,238.72885,39.438324,102.45166,3.76 1797,1.8178844,490.6121,20.182331,40.60611,3.748 1797,53.780228,200.29614,29.489113,59.4281,3.713 1797,542.4533,206.10597,32.2948,62.727066,3.71 1798,541.0098,205.22046,27.219788,60.88336,55.73 1798,500.39554,203.32932,25.391144,62.66098,47.569 1798,348.0676,208.47786,20.092133,43.715347,26.374 1798,370.73608,207.59012,20.683716,47.74382,20.304 1798,532.52405,210.17448,23.283691,57.546677,9.473 1798,435.24112,203.34195,19.485382,38.57254,9.033 1798,448.10852,206.84163,22.43869,44.92961,6.42 1798,-6.159915,490.04993,18.829094,41.51294,6.266 1798,518.5592,199.5675,28.169617,62.437164,6.247 1798,362.24582,212.75655,20.991974,43.71498,5.874 1798,627.3421,-17.265066,16.975403,45.071663,5.793 1798,443.24457,212.85973,19.054443,37.67723,5.76 1798,-8.769797,465.62534,37.67803,90.75705,5.699 1798,341.90698,204.74074,29.335693,71.063095,5.691 1798,-6.0109477,-19.183105,18.109818,44.232014,5.568 1798,483.73578,199.37779,19.837982,52.419678,5.337 1798,393.64844,200.62936,21.591919,45.448654,5.293 1798,611.0829,-48.00486,40.871826,98.79196,5.275 1798,511.47565,201.24765,22.856995,55.16092,5.171 1798,613.14,454.25784,39.32611,108.062225,5.122 1798,626.5808,488.5979,20.819397,45.197144,5.079 1798,-11.3174515,-32.85491,29.699413,74.115265,5.061 1798,-17.529802,-63.189552,56.60576,145.69398,4.995 1798,583.1862,411.239,71.51373,176.87842,4.93 1798,-21.934015,402.23547,79.6951,175.0711,4.865 1798,536.42615,310.19287,143.61566,342.36804,4.745 1798,489.942,195.2052,24.931183,65.22461,4.684 1798,490.99152,-182.40085,234.552,423.92416,4.621 1798,-72.43337,268.38977,199.41855,458.60034,4.573 1798,376.00214,199.4576,20.751831,46.793564,4.511 1798,494.0417,227.42865,237.15643,515.2118,4.51 1798,451.52164,198.90189,28.572815,62.004883,4.476 1798,586.3888,-104.29447,75.802,237.79233,4.467 1798,428.40683,211.34224,18.349457,37.15709,4.393 1798,308.80777,202.1013,37.143646,87.574905,4.266 1798,-36.743626,-127.46687,116.92653,277.85767,4.255 1798,291.5881,255.23357,41.3378,101.201614,4.142 1798,436.9823,-0.59786224,32.671448,78.902626,3.974 1799,544.05676,202.79298,28.615173,55.98326,49.138 1799,514.39435,201.42728,28.215698,59.11313,36.908 1799,355.25266,204.53949,19.677582,42.307632,29.907 1799,457.06662,196.49303,20.106232,43.568497,28.004 1799,443.81503,198.11319,20.050476,40.35298,12.44 1799,379.84073,200.02621,18.18332,47.257965,9.997 1799,61.726593,314.72372,31.932777,68.68787,8.337 1799,554.7999,200.98889,26.616028,52.9162,6.487 1799,-6.357491,489.65222,19.103771,42.301086,5.906 1799,523.85095,195.03867,29.288757,62.745056,5.657 1799,-8.899274,465.28226,37.588688,90.677704,5.589 1799,397.9021,197.11856,27.510803,59.94211,5.583 1799,627.5514,-17.280668,16.822693,44.7526,5.419 1799,-11.488465,-32.781136,29.90802,72.83495,5.383 1799,-17.537182,-64.42094,56.448013,147.83699,5.151 1799,-6.203637,-18.683678,18.180145,43.472744,5.114 1799,613.0804,454.28217,39.627014,107.98004,5.094 1799,610.8871,-48.04659,41.54944,98.49313,5.003 1799,441.39624,185.121,33.425873,74.967316,4.999 1799,583.1861,411.06323,71.50189,177.11554,4.955 1799,536.5378,310.0324,143.5722,342.83136,4.821 1799,370.1502,207.33966,19.64032,43.689774,4.804 1799,-22.02232,401.26163,79.789536,175.61203,4.763 1799,452.2693,176.75974,37.696503,78.49979,4.727 1799,-72.66145,266.901,200.20569,460.17188,4.725 1799,40.953125,202.25711,22.064762,40.633972,4.718 1799,462.9044,201.56067,21.038818,45.002945,4.68 1799,493.94516,227.65964,237.12967,514.3314,4.573 1799,533.3537,-183.88835,147.3562,427.08374,4.493 1799,309.68997,195.52225,36.73645,81.07791,4.491 1799,451.84482,203.49387,17.777985,41.371735,4.483 1799,626.5938,487.96927,20.810242,45.902435,4.481 1799,468.83307,189.43164,30.302399,64.294235,4.432 1799,396.70764,193.23618,17.658203,40.99695,4.32 1799,547.0927,175.82599,38.688477,81.34534,4.318 1799,485.46936,193.99858,36.621643,88.814896,4.266 1799,386.3315,193.49234,17.987,42.721603,4.264 1799,185.25174,257.92786,20.708954,33.86862,4.262 1799,586.43726,-105.01518,75.796326,239.17834,4.239 1799,-5.9318933,296.69476,17.921726,42.735565,4.15 1799,-37.281204,-127.17848,116.95347,279.0481,4.147 1800,467.48193,202.94713,19.483093,45.368637,49.032 1800,551.00446,206.15088,28.235168,60.51523,32.361 1800,362.4632,207.7495,20.957245,48.844894,26.68 1800,543.8438,207.26274,23.407043,59.016403,18.567 1800,507.46936,196.59984,19.40741,50.94571,14.923 1800,451.37973,199.21956,20.780304,46.184006,14.479 1800,68.99462,319.9603,30.357582,75.60687,8.039 1800,459.20425,206.16846,19.9357,42.73369,7.985 1800,525.89746,201.69434,31.482727,75.67682,7.095 1800,509.4151,198.11855,27.379272,71.43022,6.887 1800,-11.568129,477.3098,29.638517,64.466736,6.589 1800,397.7923,201.77234,27.231812,60.97528,6.478 1800,375.45682,212.2742,22.548187,46.138855,6.369 1800,359.08093,203.9542,34.17798,72.23489,6.132 1800,-6.44975,488.8598,19.545376,43.066956,5.842 1800,626.704,488.6869,20.41388,44.797607,5.592 1800,-11.434374,-32.79308,29.599323,72.217514,5.513 1800,457.17575,194.35327,31.438599,72.028534,5.424 1800,355.63495,204.84346,20.687744,44.692062,5.146 1800,-6.1342716,-18.58279,17.979563,43.00213,5.145 1800,612.9966,454.6858,39.406006,106.901855,5.075 1800,386.26306,206.08188,21.207062,48.609406,5.036 1800,-17.427542,-64.26761,56.50006,147.21739,5.025 1800,583.1829,410.74432,71.55029,177.52399,4.922 1800,470.86734,193.3652,32.04419,74.99338,4.905 1800,-22.204351,401.2752,79.87153,175.70874,4.824 1800,405.0632,207.40771,30.035065,69.882996,4.809 1800,-72.98245,266.7622,199.99821,460.6765,4.786 1800,536.3982,310.54193,143.6919,342.6612,4.771 1800,610.5602,-48.043125,41.723145,98.864655,4.662 1800,490.84058,-182.7649,234.75037,423.72592,4.57 1800,493.8715,226.65714,237.38962,514.5314,4.498 1800,627.0337,-17.92116,16.887695,46.865723,4.414 1800,586.1323,-104.20526,75.76654,237.69902,4.407 1801,551.54944,210.3025,28.187866,71.94951,66.12 1801,480.3816,210.40076,22.842041,45.667633,49.591 1801,461.8898,209.54488,23.199738,47.182297,33.342 1801,530.3462,210.33043,20.546814,47.533096,24.648 1801,516.791,207.07202,20.200012,45.35083,24.511 1801,536.7847,211.62114,21.877441,52.050735,15.123 1801,562.1157,211.47675,28.634155,69.71652,9.986 1801,544.9979,213.27095,23.398804,58.248276,9.402 1801,361.6943,217.40207,23.403503,46.6575,9.256 1801,409.45764,209.2945,25.979034,65.20831,6.847 1801,358.87012,208.93988,35.018555,82.40967,6.348 1801,521.17163,206.35635,23.828491,62.338776,6.345 1801,420.75385,205.62967,26.599365,65.331024,6.061 1801,71.08563,323.0329,28.000717,74.645386,5.722 1801,626.9535,-17.077763,16.804565,47.07182,5.593 1801,621.82794,477.40027,29.005493,67.36926,5.511 1801,-6.0810375,489.56244,18.686962,42.068115,5.439 1801,623.0053,-33.29675,26.094788,75.620605,5.371 1801,-8.985433,465.36545,37.682915,91.02872,5.347 1801,-6.045329,-18.591686,18.01963,43.698303,5.25 1801,-11.459787,-33.252777,29.866016,74.05737,5.073 1801,583.1266,410.34256,71.54108,177.80783,4.987 1801,536.0696,309.6019,144.48743,342.99722,4.961 1801,-22.249931,401.1704,79.99649,176.1211,4.941 1801,-17.694386,-62.770573,56.64775,144.75542,4.912 1801,455.367,194.8045,36.62445,69.578735,4.804 1801,-72.95678,266.90973,200.14728,461.068,4.79 1801,602.9312,-56.709568,52.914246,139.08662,4.775 1801,580.9449,212.36816,37.380432,97.733215,4.732 1801,390.96463,201.15897,34.003693,75.86081,4.687 1801,491.5411,-183.71388,233.69254,424.81992,4.677 1801,82.393105,319.63666,30.189262,68.19284,4.642 1801,374.23962,207.20067,34.726593,80.873245,4.609 1801,494.25153,227.06561,236.8714,515.322,4.591 1802,565.6303,214.1196,28.315613,63.739258,75.895 1802,495.97528,208.54144,21.242249,48.29883,67.819 1802,577.1809,215.18423,29.10199,69.02945,45.759 1802,366.96747,218.24382,22.710114,44.986893,34.401 1802,530.42975,208.07645,19.717468,47.658783,33.528 1802,545.0979,208.69481,20.504578,49.34749,16.751 1802,470.98996,208.41049,23.172882,48.40811,14.81 1802,537.98584,204.82901,20.34491,47.54843,10.09 1802,239.3952,232.9213,27.244324,70.070496,8.254 1802,552.348,207.96745,26.775818,59.124954,8.105 1802,59.722363,335.69952,33.945156,77.33264,6.684 1802,-6.1941476,489.49915,19.007998,42.532654,6.263 1802,621.6971,478.06326,29.125916,66.310394,6.134 1802,627.27954,-17.899271,17.229797,45.959305,5.994 1802,357.99466,206.49976,34.198578,81.97424,5.862 1802,479.64417,208.76611,23.69928,47.73825,5.848 1802,-11.504776,-32.62917,29.916967,71.744576,5.804 1802,417.249,207.67322,24.61081,71.15744,5.776 1802,-11.624275,478.59232,29.64639,62.83664,5.483 1802,403.24832,211.54817,19.371948,53.365982,5.474 1802,429.1138,205.93643,25.900726,65.40198,5.447 1802,612.98,453.84708,39.731506,108.16019,5.353 1802,-6.0393453,-18.571442,17.929138,43.10849,5.256 1802,-17.571127,-63.279106,56.69468,145.7462,5.107 1802,622.6976,-34.27549,27.000183,76.29555,5.092 1802,491.83356,-184.05116,233.37103,425.93884,5.046 1802,525.0935,200.84157,18.580383,40.61638,4.938 1802,583.30774,411.1812,71.36743,177.08661,4.935 1802,-72.914856,266.91107,200.35826,461.1424,4.873 1802,536.1988,309.44983,143.93402,342.82385,4.831 1802,-5.5183644,225.05511,18.778357,51.263428,4.796 1802,603.08966,-56.863186,53.13562,136.77596,4.791 1803,572.81995,202.00937,27.169434,65.44754,89.85 1803,506.41705,202.97719,21.910583,48.202606,74.715 1803,366.4676,207.66844,21.748047,49.100784,66.802 1803,539.1529,196.7944,21.284668,50.25717,55.777 1803,606.2534,209.16333,29.691345,71.25348,53.231 1803,472.446,199.97021,24.015137,48.426056,25.368 1803,552.4919,197.10173,21.109436,48.155884,23.047 1803,562.22943,194.51884,27.46991,68.97374,14.972 1803,414.68573,202.72812,25.68451,68.75223,14.25 1803,394.95734,230.30933,19.460052,46.00049,8.555 1803,98.823044,290.69452,35.629974,85.38846,6.388 1803,627.13574,-17.507614,17.26062,45.33443,6.347 1803,543.71387,194.26422,24.949524,67.484314,6.277 1803,586.79114,204.08994,31.069641,73.64496,6.194 1803,-6.375781,488.70074,19.393253,43.473145,6.051 1803,622.8318,-33.572296,26.765076,75.15709,5.939 1803,223.16206,220.81265,27.711899,68.754486,5.932 1803,-11.44909,477.10138,29.545769,64.064026,5.903 1803,626.8649,488.79123,19.988037,44.814423,5.858 1803,429.5907,191.74396,28.32544,73.00711,5.742 1803,-11.463013,-32.762276,29.824718,72.5141,5.683 1803,487.8972,202.6607,23.658722,52.63437,5.558 1803,503.57468,200.18033,33.69388,69.74005,5.46 1804,572.99493,204.54156,30.87262,69.95331,86.564 1804,546.38916,200.22162,23.88855,50.279922,82.141 1804,518.56256,203.59521,23.977417,50.55989,77.056 1804,363.23206,205.02205,25.192505,57.99797,75.727 1804,480.06165,203.70749,21.529846,50.44333,54.553 1804,599.8606,204.40479,27.673523,60.9422,44.244 1804,587.9347,205.007,29.506226,63.47386,27.376 1804,560.9861,198.63339,22.845093,53.361847,17.362 1804,465.82202,203.14708,23.97934,48.5681,12.355 1804,614.69366,210.43901,23.607605,58.72664,7.692 1804,413.80096,206.07443,24.146881,65.88278,6.798 1804,435.36426,199.59645,18.364136,50.853165,6.722 1804,453.33167,198.16826,28.97107,64.116165,6.655 1804,421.79022,203.00319,26.207672,65.109055,6.483 1804,352.8576,198.81058,27.884216,62.10025,6.359 1804,444.87473,200.76358,26.487305,67.46146,6.231 1804,623.0385,-33.883728,26.636475,75.411964,6.228 1804,626.69543,489.20016,20.42218,44.44876,6.197 1804,-6.247469,489.4556,18.878735,42.63083,6.155 1804,-11.5323305,478.20465,29.113716,63.731262,6.091 1804,430.22186,203.25714,29.045898,73.65607,6.018 1804,627.2085,-17.270838,17.400635,45.22983,6.008 1805,366.17276,205.7035,27.828674,63.55211,92.054 1805,539.0513,198.83049,26.6922,53.026566,75.994 1805,586.4176,199.65215,31.536743,74.304214,66.055 1805,566.78644,195.53732,23.876648,56.20105,45.603 1805,575.36755,193.17207,28.546997,70.89488,31.132 1805,605.52496,200.6417,27.351746,65.286316,30.03 1805,485.01514,195.18858,29.494995,79.98598,18.173 1805,548.2427,198.67012,27.786194,60.06859,14.864 1805,442.75476,197.17445,19.018494,53.691956,12.071 1805,404.50806,214.5801,24.963135,69.20451,10.794 1805,439.71295,191.24931,31.702423,85.783585,7.382 1805,471.2958,188.28992,28.41272,80.15686,6.896 1805,626.7808,489.0412,20.315247,44.67047,6.55 1805,-6.117205,489.19174,18.598991,42.319366,6.243 1805,-11.4747925,477.7655,29.24709,64.20978,5.81 1805,621.52924,200.74187,26.958618,72.58507,5.652 1805,622.61847,-33.980297,26.970093,74.88838,5.624 1805,613.06573,454.24582,39.710144,107.789154,5.599 1806,378.5769,208.20056,28.884308,66.10559,88.705 1806,412.34613,207.2156,29.428406,76.54202,83.955 1806,603.0123,193.19592,30.50586,82.53357,74.397 1806,573.9034,191.65565,27.591309,64.80611,51.733 1806,514.0083,199.83536,24.566345,49.09395,47.083 1806,592.1163,191.32135,29.017395,74.21991,20.513 1806,493.91577,207.6337,25.081665,42.441177,9.986 1806,614.83167,196.38284,22.42456,61.493896,8.774 1806,370.55457,200.85889,27.733337,65.32266,7.192 1806,548.0623,190.54681,30.553955,81.46088,6.977 1806,525.5795,196.40903,29.043762,69.63382,6.395 1806,626.6811,489.17416,20.531921,44.75638,5.873 1806,620.3141,199.37329,27.717285,77.5437,5.872 1806,-12.176617,477.37018,30.553497,63.26935,5.79 1806,-6.375779,488.59567,19.24448,42.905914,5.765 1806,423.03503,212.74135,31.566742,80.80669,5.712 1806,-11.527473,-32.769695,30.008947,73.07701,5.637 1806,627.0196,-17.486822,17.272278,46.342842,5.569 1806,361.9666,199.52759,21.680878,55.3936,5.475 1806,538.8527,197.4359,28.980286,79.55635,5.461 1806,612.9977,454.03467,39.82794,108.05481,5.454 1806,56.324097,226.34747,33.305153,69.19916,5.44 1806,391.90213,202.41284,33.665802,80.63599,5.421 1806,558.3188,190.69798,31.471802,72.083084,5.329 1807,389.37592,200.85411,30.626038,72.83659,90.565 1807,422.49387,205.1903,30.827972,73.11331,78.437 1807,540.6982,194.56639,26.584045,61.46141,35.486 1807,613.7869,188.77109,23.959534,82.49887,35.013 1807,409.82275,196.72342,33.741882,84.19495,10.455 1807,610.4776,186.92807,20.04535,61.16037,9.566 1807,590.89307,174.16823,27.666626,81.48897,8.602 1807,375.52124,195.539,29.130615,65.134155,8.084 1807,600.7699,180.45657,26.320923,79.83905,7.881 1807,617.7427,184.37279,18.944275,53.228104,7.569 1807,433.42166,232.97038,20.221863,54.143448,7.09 1807,502.2367,196.54674,34.883728,91.356094,6.416 1807,510.25134,206.62245,24.144592,48.1019,5.813 1807,627.0035,-19.12905,17.39801,48.843235,5.756 1807,626.38617,488.86353,20.725647,44.91797,5.751 1807,369.54633,199.47719,23.906616,54.476105,5.739 1807,-11.920943,476.53732,29.968353,64.865326,5.728 1807,454.6908,200.08325,34.36554,92.23071,5.682 1807,613.055,453.89008,39.882385,108.28265,5.659 1807,-5.8825274,196.95407,19.379013,48.7838,5.574 1807,-11.342615,-32.545937,29.687073,72.180565,5.557 1807,-6.0925655,488.77982,18.89884,43.005035,5.451 1807,2.0225334,191.56425,25.671957,66.04549,5.449 1807,622.52374,181.31964,24.515198,76.1167,5.437 1807,44.085655,224.24524,26.494942,44.919617,5.364 1807,-6.069467,-18.679537,17.911652,43.32453,5.326 1807,227.19727,194.72256,20.297623,45.553864,5.324 1807,-17.892859,-66.58819,56.140686,151.63077,5.284 1807,627.72516,181.44589,16.393433,43.515076,5.227 1807,196.47658,226.21463,30.429031,65.32938,5.103 1807,415.6537,199.94403,45.799927,116.27142,5.095 1807,163.71951,231.28474,33.568054,66.87395,5.038 1807,602.6596,-56.85224,53.201965,142.58072,5.037 1807,622.3678,-33.695652,27.120178,78.048454,4.941 1807,-73.01366,265.67004,200.60214,462.9807,4.892 1807,583.0071,410.70346,71.73059,177.73209,4.867 1808,436.6308,208.8622,32.9368,83.57652,85.093 1808,569.87756,196.38371,26.304688,58.40471,83.423 1808,406.26782,205.3615,31.685791,78.60759,53.326 1808,617.7273,201.07434,22.323303,64.53223,21.942 1808,385.1599,200.78195,22.734192,53.43106,9.309 1808,400.22906,198.43903,26.224945,70.871765,8.288 1808,416.78012,202.41698,34.798584,83.008865,6.709 1808,602.25104,196.01883,33.87372,85.1405,6.653 1808,390.12915,195.88274,27.509552,67.23927,5.893 1808,-5.8949637,488.93225,18.53402,42.60736,5.837 1808,-9.124986,464.68085,37.670574,92.22449,5.777 1808,626.9918,-18.902758,17.559875,49.83364,5.709 1808,-11.349976,-32.779343,29.738903,72.629906,5.647 1808,-5.408474,220.6781,17.626337,46.223328,5.645 1808,626.39923,488.64453,20.675415,45.191467,5.492 1808,602.7335,-57.249332,52.76941,141.90378,5.477 1808,432.44226,238.14398,30.477112,64.6723,5.435 1808,612.8643,454.3484,39.95746,108.284,5.366 1808,-5.9796753,-18.72828,17.822685,43.40891,5.263 1808,-17.80724,-66.694695,56.180687,151.05415,5.229 1808,564.161,196.98874,37.32019,90.819916,5.167 1808,616.6897,39.83522,22.963501,81.331055,4.944 1808,583.0541,411.21353,71.65607,176.98312,4.931 1808,533.2494,198.70045,36.339172,80.22682,4.878 1808,536.142,308.385,144.28522,344.08777,4.872 1808,-72.481606,265.68262,199.9747,462.22095,4.868 1808,-22.080387,400.7765,79.657455,176.5846,4.842 1808,533.5549,-184.88393,148.03271,430.21072,4.836 1808,447.39032,204.48845,31.747925,75.23628,4.808 1808,622.9753,-34.1187,26.38678,79.40086,4.634 1808,494.19452,227.30078,237.28528,514.48083,4.62 1808,621.4018,204.67465,26.345032,86.65506,4.506 1809,464.20316,203.3462,38.5614,103.04457,88.839 1809,592.3959,196.19829,25.466736,67.37544,43.514 1809,427.6164,203.07474,33.63437,93.36954,29.613 1809,415.5484,202.71075,30.136902,81.22693,10.856 1809,440.27493,212.0517,31.75357,86.072845,7.447 1809,398.61148,198.64497,27.340118,65.92638,7.08 1809,-1.4657927,226.2676,30.961285,80.714645,7.063 1809,208.20601,230.79831,23.250381,44.92221,6.652 1809,478.2367,214.06834,32.817078,84.88405,6.123 1809,627.3663,-17.067837,16.973328,44.91295,6.095 1809,626.64386,488.87677,20.382202,44.915894,5.969 1809,197.31952,230.96193,29.687134,68.372574,5.8 1809,118.28522,206.06503,30.282196,57.008514,5.784 1809,581.90845,201.04063,38.12805,102.814285,5.546 1809,-11.870011,477.83334,30.117878,63.007904,5.495 1809,-11.31757,-32.787186,29.648785,72.244804,5.41 1809,-6.1440706,489.08337,19.00381,42.878174,5.4 1809,376.8802,199.33195,20.924683,49.59787,5.398 1809,622.8011,-33.970467,26.71222,74.54809,5.209 1809,-17.821157,-66.29647,56.278603,150.42213,5.189 1809,612.84827,453.70526,39.72754,108.34192,5.185 1809,-6.050891,-18.603868,17.852383,43.284237,5.117 1809,500.5084,222.21823,39.475677,98.25653,4.998 1809,381.71082,196.53032,27.905212,59.69536,4.982 1809,536.46106,309.7721,143.78613,342.79138,4.98 1809,582.99506,410.1701,71.86017,178.32806,4.87 1809,603.45886,-57.185966,52.80017,134.69032,4.836 1809,127.55243,211.21802,25.601593,40.16504,4.818 1809,-72.697914,266.12686,199.84222,461.88156,4.798 1809,-21.744179,402.45245,79.46916,175.19397,4.796 1809,533.46545,-184.01752,148.27075,426.6842,4.681 1809,471.4119,240.35513,23.906403,67.51178,4.669 1809,453.90042,201.88983,34.7753,84.58893,4.668 1809,493.89325,226.41968,237.61676,513.98346,4.621 1809,-10.7067585,216.62221,31.376934,79.2032,4.62 1809,618.2099,490.42346,20.926025,42.315735,4.573 1809,213.65506,214.05452,37.37352,82.11015,4.524 1809,183.23366,211.22751,37.23044,82.45056,4.466 1810,445.32474,201.45808,43.136505,113.48186,88.219 1810,498.72424,202.38113,41.538696,118.3183,81.284 1810,615.6341,189.98148,24.12268,87.09494,25.995 1810,436.81393,204.79903,33.832367,85.46828,12.735 1810,383.10034,196.22981,22.905884,51.183533,10.781 1810,423.78387,199.79694,32.98587,82.524994,7.136 1810,626.847,-18.194798,17.339172,48.510174,6.329 1810,369.64087,196.52458,22.341858,49.255096,5.745 1810,407.46722,194.23299,26.72757,70.2408,5.726 1810,-8.727613,464.7931,37.484238,91.69757,5.676 1810,626.3525,488.27902,20.760193,45.638885,5.613 1810,622.5537,-33.800697,26.522156,77.25056,5.609 1810,-11.40835,-32.717358,29.727669,73.01393,5.583 1810,-6.4149,489.1146,19.257431,42.830963,5.542 1810,-18.049147,-66.67135,56.298683,151.24242,5.428 1810,-5.9577613,-18.474262,17.592188,43.206898,5.274 1810,602.8795,-57.89359,53.280823,137.93959,5.19 1810,613.1041,453.50543,39.440735,108.43878,5.079 1810,536.3358,309.55658,143.79736,343.51337,5.039 1810,583.0093,410.94864,71.72095,177.34006,4.981 1810,491.9423,-183.08647,233.51004,426.85968,4.946 1810,372.9301,187.9867,38.19052,77.46707,4.918 1810,-21.61182,402.63074,79.2991,175.0982,4.823 1810,602.4453,190.43689,32.81671,115.64938,4.787 1810,-72.27255,266.34314,199.35309,461.72766,4.78 1810,494.05292,228.05121,237.41193,513.3101,4.634 1810,586.89966,-102.841385,74.11804,235.672,4.607 1810,117.57191,205.27278,37.43618,92.2957,4.392 1810,389.265,188.94641,37.83551,78.739746,4.382 1810,115.16174,209.01001,30.21283,50.98288,4.38 1811,544.50226,196.20885,47.545837,145.1045,92.161 1811,475.07605,202.41954,48.183594,126.520096,72.944 1811,455.2371,189.87627,26.026215,79.35527,18.328 1811,377.843,192.89267,19.82489,44.70218,14.195 1811,460.40985,198.80687,31.31012,87.27287,11.569 1811,468.92297,214.1654,32.29608,88.32599,6.938 1811,-6.256464,489.12167,19.043482,43.291412,6.305 1811,-11.790064,478.3531,29.908155,62.578003,5.694 1811,394.91968,191.356,28.610565,63.79512,5.671 1811,549.4607,249.71039,32.54419,89.83539,5.65 1811,622.485,-34.21732,26.73584,78.00939,5.594 1811,627.2019,-18.34055,17.160583,47.513393,5.551 1811,98.88945,215.12032,34.84218,64.826126,5.322 1811,-13.087929,-41.494488,41.99852,103.90559,5.322 1811,612.7546,453.86377,40.133728,108.18469,5.31 1811,428.8899,188.20427,28.045044,84.83882,5.304 1811,558.74347,230.91191,34.31494,91.72948,5.265 1811,-6.011977,-18.56452,17.904507,43.314537,5.113 1811,536.5676,310.9292,142.87695,341.9745,5.068 1811,582.72015,411.67905,72.17096,176.65616,5.011 1811,490.03525,249.78241,32.65561,75.31207,5.0 1811,114.15866,217.65881,31.328125,68.051025,4.954 1811,626.78143,488.9777,20.628174,45.129913,4.926 1811,557.38086,192.68176,59.63257,168.86737,4.871 1811,603.0878,-57.81603,53.17206,134.06218,4.868 1811,-72.614845,264.95538,199.72263,463.3692,4.831 1811,490.30646,-182.02966,234.51117,425.3247,4.825 1811,-21.750383,401.86108,79.422195,175.23956,4.749 1811,586.8888,-101.48093,74.22632,234.11462,4.673 1811,117.87843,210.7297,24.482819,41.7191,4.623 1811,461.8023,236.46106,27.75943,71.67816,4.573 1811,594.3677,-45.778057,44.831604,95.19002,4.559 1811,407.49408,184.76974,35.248657,80.769714,4.508 1811,494.65366,227.78342,237.03238,512.60266,4.49 1811,171.74426,234.3128,32.333115,64.10779,4.275 1812,591.784,191.94812,43.99286,177.19855,90.851 1812,500.1891,194.62083,59.106018,162.98677,79.354 1812,600.5596,266.56015,35.09265,94.72571,15.024 1812,383.91736,196.75851,20.128387,46.608627,10.384 1812,-11.86699,479.34946,29.9651,62.048004,6.513 1812,-6.3011217,489.45627,18.95103,42.406525,6.49 1812,494.93283,201.6078,33.750397,91.884445,6.4 1812,627.1489,-18.253975,17.31726,47.23277,6.372 1812,603.2807,211.09897,31.513855,106.66855,5.892 1812,538.5724,194.15958,56.540222,151.78311,5.73 1812,626.7436,488.1353,20.493652,46.04718,5.634 1812,-11.494117,-33.13523,30.028316,72.56418,5.56 1812,180.6419,229.82285,30.911911,68.20526,5.554 1812,444.45572,198.19754,28.047882,77.41873,5.505 1812,622.775,-34.09033,26.759521,76.03723,5.478 1812,-5.774789,-18.749874,17.482468,43.40103,5.403 1812,-18.04102,-66.58283,56.432,151.71468,5.347 1812,536.1363,309.21616,143.75781,344.96268,5.219 1812,613.2033,454.21655,39.612915,107.967896,5.063 1812,491.33472,-182.96088,234.16302,426.97662,5.023 1812,474.8604,197.75974,31.701202,96.467896,5.009 1812,582.6488,411.906,72.302734,176.76697,5.007 1812,100.22269,221.7862,31.238312,70.218445,4.909 1812,614.1267,192.69403,23.779358,47.96678,4.877 1812,586.3253,-102.16573,74.58624,235.57877,4.858 1812,603.23364,-57.77011,53.224182,134.5724,4.784 1812,-21.93081,401.54428,79.49124,175.82645,4.767 1812,-72.50069,265.98404,199.51312,461.74155,4.647 1812,406.16168,187.23547,27.543488,67.36737,4.612 1812,37.24634,214.87442,31.141758,58.08438,4.563 1812,594.04395,-46.50246,44.890625,95.96131,4.553 1812,493.64594,228.43277,237.42249,513.34705,4.493 1812,401.82343,193.5737,21.705872,49.576614,4.478 1812,229.39777,224.40138,36.305542,94.006516,4.322 1812,610.6726,292.16833,38.190796,111.50601,4.305 1812,561.4703,191.22159,51.61371,157.6936,4.256 1812,574.3263,178.18588,82.418335,240.5621,4.206 1812,193.50104,241.52994,21.14621,48.9852,4.169 1812,110.06516,216.86787,24.893425,44.59703,4.163 1812,-6.090275,216.59726,18.33006,38.383774,4.159 1812,243.29308,235.43698,31.994034,61.68274,4.158 1812,185.58382,234.51161,21.51596,41.75099,4.157 1812,389.6463,181.84615,39.043457,81.80803,4.135 1812,518.73254,-2.3466702,25.224182,55.487503,4.072 1812,8.561035,218.39714,22.962374,35.92836,4.011 1812,422.2318,184.50801,38.350433,84.630936,3.96 1812,608.92065,195.88524,30.637024,85.09346,3.942 1812,114.18469,210.29362,31.265823,61.621994,3.935 1813,549.79596,197.87253,66.48309,185.29367,78.595 1813,531.7319,192.03088,60.457947,162.56848,11.391 1813,-6.032995,489.42044,18.750654,42.23178,6.126 1813,544.6222,196.36221,36.158875,87.17667,6.119 1813,627.2917,-17.699434,17.13977,45.90261,6.105 1813,-11.598105,478.7301,29.685658,62.46875,6.079 1813,576.6534,287.63202,36.88153,86.93381,5.919 1813,180.66959,227.96674,29.909515,66.223145,5.746 1813,107.33211,214.75995,31.646805,54.33481,5.743 1813,622.9177,-34.16586,26.631714,75.816444,5.701 1813,626.81696,488.5966,20.233337,45.404755,5.684 1813,-11.487959,-33.03681,29.781092,72.95986,5.628 1813,612.9917,455.2209,39.454346,106.38513,5.511 1813,558.8573,191.22632,35.534546,63.109085,5.344 1813,535.47345,308.46136,144.52032,347.0816,5.273 1813,581.67926,234.20737,54.121155,156.802,5.242 1813,243.22006,-32.2222,32.352173,75.279,5.171 1813,-17.852728,-65.08198,56.31575,149.30394,5.083 1813,-6.0886593,-18.887436,17.934319,43.508827,5.081 1813,490.7816,-184.37004,233.88101,427.41028,5.073 1813,498.4891,211.21477,39.94925,113.617386,4.997 1813,582.82715,412.50452,72.29974,176.63123,4.932 1813,603.298,-57.164932,53.109253,133.36539,4.897 1813,229.4972,-34.47249,31.447113,72.60067,4.842 1813,-72.227234,266.21637,199.32742,462.1645,4.791 1813,512.5618,199.44563,32.226624,81.550705,4.773 1813,259.21494,-32.779964,32.07895,74.00656,4.719 1813,586.4801,-100.33157,74.278076,232.28183,4.694 1813,494.3256,224.50558,237.24301,518.4519,4.67 1813,515.5296,208.67255,44.13098,124.3916,4.643 1813,-40.079247,365.83813,110.6067,275.17908,4.633 1813,593.9788,-45.70499,44.926697,95.938385,4.506 1813,411.45337,208.22125,29.365448,64.930725,4.426 1813,-17.640802,435.9534,55.15162,139.23477,4.413 1813,467.19647,203.23468,31.096344,83.04138,4.412 1813,162.69946,238.20468,33.657684,69.02356,4.338 1813,214.52751,220.2566,35.549637,79.66957,4.221 1813,198.5097,212.71028,35.74948,78.185684,4.198 1813,538.2615,210.8601,33.378784,104.0199,4.197 1813,415.79083,198.30817,21.93106,47.197372,4.17 1813,178.54999,241.35388,20.851562,48.4516,4.159 1813,230.35403,224.60452,35.86606,77.585846,4.158 1813,116.84623,214.77417,40.136055,90.12897,4.066 1813,147.70648,238.40991,32.406815,76.96881,4.046 1813,611.89185,267.4574,37.49463,112.575806,4.043 1813,612.8253,316.1536,38.19391,102.6319,3.955 1813,119.96834,217.92195,22.209427,40.711807,3.945 1813,247.92838,-18.220905,22.165283,45.300766,3.942 1813,569.5725,197.4292,33.652527,75.339905,3.939 1813,483.61035,-13.4033985,31.732727,69.1268,3.889 1813,217.32765,243.67151,21.457748,45.795715,3.833 1813,-36.96805,-126.70071,117.747856,281.83264,3.808 1814,391.1911,200.46132,22.266113,48.87915,7.248 1814,171.05315,218.2541,31.665543,57.536606,7.16 1814,-6.1836357,489.58694,18.953476,42.55594,6.148 1814,-11.727762,479.19424,29.828014,62.16568,5.949 1814,-11.441655,-32.766094,29.772995,72.47522,5.922 1814,622.58716,-34.10678,27.14093,74.46434,5.892 1814,627.1101,-18.377115,17.665344,46.09678,5.725 1814,156.1391,219.32027,34.804077,61.22972,5.54 1814,612.85077,455.10168,39.539307,106.85559,5.534 1814,626.89954,488.84317,20.306946,44.83011,5.489 1814,-6.1056175,-18.845808,17.962666,43.426228,5.403 1814,498.6288,-8.369099,45.055634,84.18501,5.334 1814,490.6054,-183.38818,234.10437,428.8086,5.291 1814,-17.892313,-63.340443,56.719902,145.97157,5.221 1814,603.01953,-56.862396,53.6333,135.3331,5.049 1814,585.91565,-98.258095,74.072754,230.06546,4.977 1814,-72.6081,266.18756,200.6199,462.32715,4.909 1814,-40.429173,364.12396,111.465256,275.935,4.862 1814,583.0927,411.52075,71.6991,177.46387,4.793 1814,-17.94903,436.10608,55.658127,138.79639,4.703 1814,184.33746,233.96713,22.04129,47.82794,4.679 1814,536.6576,311.75043,142.64716,341.16827,4.587 1814,507.5803,-10.834667,56.640045,118.64607,4.584 1814,594.36475,-45.796783,44.37494,98.2711,4.515 1814,522.5796,-17.177574,32.48932,77.09093,4.502 1814,0.040296316,376.25833,25.615732,86.751526,4.499 1814,188.44266,231.14291,32.565918,65.6474,4.46 1814,124.50271,204.56723,30.955986,60.040436,4.453 1814,200.29199,242.24445,22.514633,46.30652,4.341 1814,532.73755,247.46925,33.371094,84.25426,4.28 1814,531.6792,-33.97282,30.183167,79.021706,4.266 1814,538.67706,-17.65429,55.93158,133.12927,4.187 1814,493.51385,226.18106,238.13257,515.70386,4.182 1814,550.0571,-8.596767,31.44574,77.44478,4.124 1814,-5.9882426,246.28165,17.73184,44.650513,4.106 1814,509.83353,-34.671803,29.629486,86.57828,4.105 1814,401.5821,-0.9611511,21.750305,51.568493,4.093 1814,-10.55518,340.39597,30.73405,72.893524,4.083 1814,528.7176,-12.157089,43.87799,89.98536,4.069 1814,492.72095,-13.8707905,31.142822,71.29048,4.06 1814,554.5939,285.4524,20.86853,52.694885,4.037 1814,99.7578,215.79419,32.07312,60.359375,4.019 1814,-37.082275,-125.825134,117.0774,279.1129,3.968 1814,198.96704,210.75946,36.04631,76.46948,3.945 1814,139.35666,210.73367,33.244537,65.68631,3.932 1814,211.64047,234.0414,29.74759,65.901505,3.911 1814,182.6166,200.69629,36.43309,73.84238,3.837 1814,-9.02513,167.29759,39.21785,100.071396,3.802 1814,505.18658,-19.867245,19.347473,49.537952,3.796 1814,-69.89014,-186.7431,210.39398,450.38278,3.784 1814,153.63394,223.14665,24.033936,42.559402,3.777 1814,0.82726836,236.91074,26.10081,77.8396,3.751 1814,541.9151,210.2938,28.412903,79.40469,3.734 1814,-7.9673996,70.23833,37.75997,108.40016,3.724 1814,466.52625,-12.405922,43.83719,82.765,3.72 1814,161.5634,230.1706,35.336243,77.18732,3.717 1814,589.1786,-20.37321,31.553589,67.83575,3.706 1814,462.58582,-33.682564,28.981995,79.55561,3.675 1814,452.5621,-3.4072704,30.92154,69.011055,3.674 1814,537.0389,-20.99187,19.920715,49.280495,3.663 1814,618.92224,-6.946477,19.954468,42.382015,3.662 1814,112.80357,216.34003,22.36316,38.4144,3.618 1814,572.39026,-21.690811,54.894104,138.76813,3.612 1814,476.4484,-22.936699,61.581635,118.35031,3.608 1814,387.38837,183.55252,40.81079,78.22757,3.564 1814,4.2761555,237.64606,38.44787,105.07117,3.559 1814,-5.525137,218.72653,17.32735,41.141174,3.554 1814,-5.012903,263.60944,17.82548,44.411743,3.544 1814,35.694798,241.75507,40.595074,92.65503,3.538 1814,429.4228,-16.830086,30.765198,71.46777,3.538 1814,147.20041,235.81706,35.384583,68.89888,3.534 1814,389.31134,-13.750647,30.791931,64.15641,3.534 1814,-13.950667,197.73022,48.570045,142.09875,3.522 1814,549.7329,263.3692,31.722778,71.54538,3.511 1815,391.958,201.11523,20.243774,42.092407,16.849 1815,170.23569,227.87955,30.738419,55.359985,7.099 1815,-6.16664,489.29065,18.951712,42.527588,6.305 1815,627.1727,-17.50068,17.06305,46.89702,6.108 1815,167.8526,220.46616,25.516266,42.325714,6.065 1815,-11.479202,477.97968,29.687195,63.011536,5.848 1815,399.8567,206.56636,22.179688,52.06575,5.839 1815,177.03583,235.98856,32.296936,62.597473,5.743 1815,599.5311,204.55374,41.55249,183.58743,5.627 1815,490.64215,-184.81143,234.29742,431.34573,5.37 1815,-11.436444,-32.475464,29.704372,72.04452,5.31 1815,623.0211,-34.008392,26.211365,76.91731,5.292 1815,612.7132,454.75525,39.921997,107.19702,5.281 1815,-6.042346,-18.545883,17.891588,43.075703,5.248 1815,601.6981,-55.41126,54.243652,140.96881,5.229 1815,626.57263,487.99695,20.594421,46.208984,5.222 1815,610.904,20.765015,28.226929,86.30356,5.2 1815,-17.705597,-62.703823,56.669662,144.29419,5.087 1815,388.61636,184.74036,37.96051,73.24579,5.025 1815,587.52747,-26.343391,54.041443,149.64249,4.991 1815,-72.08584,265.66922,200.47125,462.1888,4.932 1815,579.97266,233.04137,37.791992,123.0352,4.883 1815,582.93286,411.67307,71.765564,177.21152,4.858 1815,536.51904,309.66125,143.12909,342.8274,4.827 1815,191.85678,239.87689,22.976517,47.63617,4.753 1815,561.78394,-127.79104,113.191284,289.05743,4.706 1815,199.05313,212.75308,36.19989,78.64966,4.647 1815,-40.883934,362.63098,112.487495,276.58844,4.632 1815,612.67267,256.80737,33.788757,132.76984,4.481 1815,-18.098255,435.52747,55.957138,139.79492,4.449 1815,559.4711,204.32367,51.883606,144.37207,4.426 1815,493.56036,226.98181,237.76361,515.4665,4.416 1815,107.393,211.55486,34.160027,62.513016,4.379 1815,-9.136631,261.61237,38.664536,101.80597,4.329 1815,491.6408,-19.422838,31.32904,75.32869,4.318 1815,575.87665,154.91026,52.120728,180.58974,4.231 1815,615.92114,225.19493,24.008728,99.14418,4.22 1815,215.64293,219.39804,34.191452,84.1936,4.156 1815,555.6402,-6.9933395,57.855408,138.70258,4.088 1815,442.75934,218.2528,30.401184,77.4859,4.067 1815,-37.28047,-124.979706,117.142265,278.10977,4.024 1815,181.12924,203.0793,36.83191,75.85454,4.013 1815,182.5519,229.64429,23.166672,40.453552,4.011 1815,67.95625,228.7526,39.318794,93.23721,3.963 1815,-14.916279,188.06749,49.26613,136.81288,3.934 1815,136.39517,232.47371,23.249847,40.11168,3.934 1815,-5.6979313,217.62111,17.537514,40.58452,3.878 1815,201.55107,241.19284,22.102478,44.762512,3.864 1815,-69.831184,-186.99857,210.26425,451.08252,3.829 1815,230.84016,230.10213,35.053482,90.606186,3.806 1815,112.22841,215.10583,23.253067,39.73033,3.799 1815,137.4892,221.4742,34.861755,62.130966,3.788 1815,577.2981,287.6701,32.616455,82.48685,3.684 1815,89.9435,218.43866,19.740646,39.870667,3.675 1815,38.797432,239.18729,35.232735,75.18146,3.672 1815,615.0419,-19.557932,27.10907,76.43479,3.669 1815,-9.368111,308.50928,38.574146,105.19812,3.634 1815,-8.131346,71.29962,37.37534,107.2811,3.602 1815,446.92273,181.83105,49.91092,125.763214,3.595 1816,390.53775,198.12407,22.244415,43.377,8.784 1816,411.34088,204.68959,28.043823,69.73186,7.516 1816,-6.3918533,488.97418,19.19725,42.96173,6.378 1816,627.0984,-16.849304,17.088379,44.892056,5.919 1816,-11.828814,478.01547,29.801437,63.11374,5.654 1816,-9.56518,257.03973,28.689207,69.38809,5.529 1816,610.56903,-46.65416,41.640747,100.35287,5.502 1816,433.40253,198.72,20.109192,49.741653,5.395 1816,626.6838,488.1641,20.468445,45.610626,5.386 1816,170.60834,233.1037,30.414307,64.73767,5.374 1816,-6.0794287,-18.64456,17.96067,43.552807,5.237 1816,-12.5485115,-41.813972,41.520126,102.11559,5.182 1816,428.88727,200.39392,17.4216,35.92578,5.148 1816,585.9978,-99.23605,74.558716,232.2683,5.097 1816,398.32947,202.06418,29.769104,62.256805,4.969 1816,583.18866,411.94373,71.48993,176.55103,4.963 1816,-72.12987,267.27475,200.2548,460.6254,4.944 1816,612.7806,455.47385,39.383423,106.28897,4.922 1816,-40.182014,363.27707,111.37875,276.7654,4.879 1816,490.32538,-181.80553,234.72742,426.1732,4.767 1816,-10.787542,228.9513,27.752287,69.08301,4.67 1816,215.43349,215.175,34.20688,85.903244,4.664 1816,-8.162203,370.86566,31.904425,78.67761,4.655 1816,536.6221,310.49704,142.91351,342.34952,4.65 1816,410.01544,201.71225,21.731415,43.949066,4.648 1816,-5.9366503,249.74927,18.412956,44.19507,4.588 1816,421.25226,197.94543,29.04358,69.4769,4.523 1816,453.5889,203.31621,30.19101,77.01326,4.515 1816,-5.068203,232.89867,17.546574,42.449905,4.474 1816,166.51344,201.16249,36.545013,80.668594,4.433 1816,493.36148,226.66437,237.84982,515.32367,4.41 1816,-18.267185,430.27014,55.7307,145.17896,4.388 1816,182.42964,208.05101,35.504837,83.27034,4.376 1816,199.91568,208.21426,35.007736,82.87253,4.305 1816,-20.005407,-87.51443,70.71051,197.37627,4.29 1816,156.21329,220.99312,32.61238,71.021164,4.142 1816,605.5161,-13.6653385,28.905884,65.47512,4.081 1816,619.1489,-16.025572,16.622131,42.687435,4.076 1816,441.77576,202.25078,20.21048,49.129425,4.059 1816,183.63014,233.72723,22.050705,50.973083,3.952 1816,229.953,220.74469,35.309753,83.546936,3.945 1816,-37.383305,-124.44174,116.99773,277.68265,3.906 1816,434.71188,185.61224,40.222168,81.70233,3.866 1816,-69.99438,-186.91881,210.21396,451.00525,3.852 1816,-16.087624,333.69836,51.57684,150.3859,3.818 1816,534.85864,-16.5831,28.230408,65.74666,3.789 1816,-5.402149,170.3518,17.988617,44.651535,3.778 1816,60.50745,224.90149,30.80534,67.91748,3.744 1816,-5.1986055,122.212555,15.832823,38.64044,3.69 1816,192.74721,233.64821,22.585373,49.33809,3.684 1816,485.028,-32.889824,29.277466,75.08069,3.672 1816,573.6512,-21.153088,52.611755,129.55772,3.67 1816,603.481,-13.248286,15.737061,38.91482,3.662 1816,36.2872,221.60684,31.066536,63.39102,3.616 1816,602.1067,-25.839073,53.13977,134.37712,3.599 1816,201.10562,234.1427,22.738205,46.06299,3.566 1816,-7.9905357,263.0711,38.705257,102.495636,3.561 1816,414.0695,-34.352077,28.741241,73.8466,3.539 1816,-5.133748,296.10983,16.705803,40.69168,3.529 1816,549.0894,-16.396313,29.166687,68.73353,3.506 1816,554.8035,-15.311213,16.736145,42.01148,3.505 1816,418.2693,-17.60032,18.089935,41.168865,3.503 1816,159.68681,214.51305,24.692795,38.955643,3.475 1816,570.5614,-16.49768,17.033142,44.31076,3.474 1816,-8.310785,71.63484,37.73191,105.72475,3.471 1816,540.7312,-22.927933,54.934753,130.11356,3.468 1816,611.32275,1.7455692,17.783264,37.765602,3.435 1816,46.11555,210.1022,51.413273,113.3244,3.42 1816,604.49164,0.25039673,17.009949,37.65486,3.376 1816,330.30847,-15.618237,17.46814,39.74067,3.364 1816,410.3226,-17.631573,17.899445,41.524845,3.353 1817,432.17126,199.75876,21.953522,50.064774,22.993 1817,396.6958,199.50836,22.972107,47.883514,20.263 1817,498.4804,208.35677,31.894897,92.70476,6.39 1817,-6.11841,488.90894,18.747978,42.61084,6.138 1817,-11.622211,478.16925,29.642456,62.67206,5.588 1817,-11.486387,-32.76837,29.786911,72.946655,5.5 1817,627.432,-17.235378,16.927063,45.16935,5.493 1817,-6.0891857,-18.594593,18.009972,43.258434,5.492 1817,623.014,-33.675602,26.446167,74.62708,5.485 1817,170.16716,231.62888,30.901382,62.332153,5.44 1817,136.62482,254.96123,32.378113,81.70369,5.408 1817,626.34283,487.6184,20.978455,46.287903,5.235 1817,603.0764,-55.52999,53.317017,132.10466,5.067 1817,-17.645487,-63.201492,56.67446,144.42766,5.065 1817,416.25146,197.65735,29.961731,70.90927,4.956 1817,-5.1629453,230.42778,17.842136,44.863846,4.95 1817,583.0915,411.26273,71.58618,176.93112,4.92 1817,-72.34246,266.36206,200.0326,461.43518,4.915 1817,201.1383,238.52235,22.808395,38.62126,4.909 1817,-21.992851,402.0664,79.702934,175.32617,4.822 1817,612.8985,454.0899,39.661377,107.35681,4.791 1817,490.64728,-181.6163,235.12189,426.13403,4.786 1817,586.1256,-100.855446,74.555664,233.6846,4.748 1817,536.4948,310.58328,143.29266,342.33664,4.705 1817,183.90746,235.79172,22.392822,45.650055,4.561 1817,469.08432,185.23843,38.1662,85.153534,4.533 1817,212.71222,230.6505,29.311417,54.96779,4.454 1817,66.59315,310.5534,32.750282,49.159515,4.444 1817,493.7119,227.09232,237.29688,514.75525,4.439 1817,13.272659,207.66815,50.69087,121.53162,4.353 1817,388.04535,202.29686,21.053894,43.52382,4.344 1817,485.29395,183.72037,38.573303,89.86746,4.313 1817,225.2995,240.48897,22.191742,36.167496,4.296 1817,-0.27264,198.65016,26.985897,74.93022,4.292 1817,594.4958,-45.143425,43.88025,96.13229,4.283 1817,448.53265,203.31194,22.128387,48.223038,4.167 1817,452.12958,186.3531,37.875763,81.08247,4.083 1817,-10.777863,216.87326,27.81707,69.213165,4.065 1817,92.135475,213.696,31.53244,52.627975,4.007 1817,572.66394,-19.920212,52.23224,128.59805,3.985 1817,21.564692,220.45325,28.955519,70.64963,3.963 1817,314.88867,-15.05039,33.68683,63.730743,3.96 1817,450.8815,-17.238884,35.06363,65.036865,3.941 1817,310.00012,-34.038094,29.267944,73.68368,3.914 1817,198.8489,211.31085,35.924805,79.05011,3.902 1817,-37.379425,-124.616974,117.32852,277.62085,3.89 1817,-69.86911,-187.00334,210.27963,450.9264,3.89 1817,182.27614,211.70367,36.533096,79.327515,3.886 1817,-5.081427,139.91397,16.964428,37.037918,3.885 1817,230.87495,223.10043,35.00621,79.74451,3.884 1817,499.60907,182.68152,40.25641,92.83804,3.814 1817,-8.240056,71.054985,37.41469,106.33561,3.787 1817,313.5056,-17.131784,18.761383,41.04301,3.764 1817,293.07315,245.61461,30.096283,54.586533,3.733 1817,598.0874,157.82793,36.976807,88.94879,3.733 1817,36.7606,224.5203,38.91601,99.58002,3.728 1817,321.0605,-17.087418,19.345428,41.00007,3.723 1817,388.58466,188.74374,38.041626,73.23804,3.686 1817,574.4001,164.77676,49.94287,125.98312,3.662 1817,99.33879,288.16022,29.283707,61.3909,3.646 1817,404.4421,201.43921,30.015411,68.69116,3.645 1817,345.2603,-16.213749,19.008972,40.110195,3.639 1817,2.646401,228.84094,19.122807,47.564575,3.61 1817,50.943146,320.5238,21.985733,30.952911,3.601 1817,421.61725,201.94745,37.80652,93.96948,3.574 1817,507.0508,-17.031172,17.11679,42.277767,3.561 1818,401.2909,201.78044,23.32965,50.31874,43.881 1818,113.53432,256.69998,30.371048,71.13016,8.529 1818,446.73495,199.40384,26.824493,78.168915,6.489 1818,-6.0419774,489.2579,18.73558,42.31363,6.331 1818,626.9604,-18.02025,17.420837,47.213684,6.046 1818,241.85449,227.92397,21.233734,45.50795,5.921 1818,622.42694,-33.916016,26.90564,76.76754,5.832 1818,-11.657112,478.46237,29.566746,63.17459,5.697 1818,-11.262936,-32.539253,29.741201,73.008156,5.676 1818,626.69714,488.43942,20.427734,45.355255,5.558 1818,-6.0813594,-18.320034,18.139168,43.634106,5.376 1818,603.0107,-56.26497,53.411804,136.34111,5.206 1818,490.36578,-182.10776,234.7431,427.879,5.126 1818,612.8367,454.26932,39.631226,107.71896,5.025 1818,586.17865,-100.37375,74.24811,233.6519,4.822 1818,-17.722643,-62.774033,56.76397,144.12657,4.82 1818,-72.374756,266.42523,199.8718,461.75677,4.808 1818,583.16266,410.87775,71.589294,177.58673,4.805 1818,65.62667,300.37408,30.318314,67.22693,4.804 1818,-21.960182,401.87814,79.653435,175.20749,4.753 1818,284.68823,251.07874,32.164307,58.120483,4.742 1818,536.6044,310.76862,142.94421,341.72754,4.634 1818,162.11578,232.75943,31.569672,65.12894,4.479 1818,249.10078,235.99776,19.710983,41.955093,4.474 1818,230.77954,224.72528,28.030334,61.124084,4.429 1818,493.66867,226.55963,237.52646,516.0186,4.379 1818,594.05054,-45.241432,44.59442,98.23686,4.281 1818,432.01807,196.05743,28.086273,71.20676,4.196 1818,502.0494,-35.059822,27.695526,78.22202,4.166 1818,205.78706,229.09875,28.404968,57.757812,4.123 1818,540.4255,-33.208694,29.729187,77.04448,4.102 1818,462.56015,-36.36364,27.259613,73.82058,4.043 1818,572.5553,-19.60051,53.177185,136.16866,4.038 1818,217.15808,231.54677,23.184341,40.413925,4.03 1818,387.1455,199.16443,22.281372,50.949814,4.016 1818,485.8696,-33.873604,28.60379,75.174545,3.991 1818,500.76538,181.84492,39.37793,78.23375,3.983 1818,-37.283295,-124.55893,116.995544,277.2607,3.966 1818,185.23636,247.02017,21.874771,40.376038,3.912 1818,421.99902,196.52261,27.340088,65.107635,3.881 1818,619.3989,-17.214966,17.876892,44.12455,3.872 1818,391.65616,186.6259,36.89157,75.59419,3.858 1818,-12.224603,217.83475,29.867031,64.83505,3.846 1818,-6.330509,230.5908,18.33582,42.367813,3.843 1818,-14.818191,150.11816,48.7495,141.35126,3.836 1818,-69.79886,-186.61946,210.26172,450.8139,3.831 1818,87.76965,223.80678,22.59938,33.412216,3.819 1818,2.3540914,-16.789062,17.43863,40.593685,3.808 1818,470.54507,-20.406544,29.332489,67.38272,3.796 1818,195.06836,205.52274,19.90625,40.734818,3.777 1818,259.1873,261.93924,43.279785,113.98569,3.772 1818,506.6302,-18.25914,17.766907,44.605682,3.769 1818,248.08112,218.90776,20.812042,44.627182,3.76 1818,329.18182,-19.462957,18.693237,42.442024,3.747 1818,215.49284,212.98262,34.534927,76.99553,3.739 1818,394.7476,-17.285225,17.458832,39.197365,3.738 1818,498.4925,-16.919334,17.82135,43.55954,3.726 1818,318.02875,-34.53095,28.907166,71.966156,3.698 1818,174.90878,238.57803,23.257507,45.58368,3.676 1818,517.4198,175.29773,39.01709,83.07263,3.662 1818,79.44489,214.68852,52.949852,117.01997,3.64 1818,257.58502,242.37866,19.775146,37.15497,3.619 1818,489.80118,-18.87268,18.538422,43.973534,3.591 1818,225.95566,228.79504,22.732407,43.710907,3.589 1818,166.37183,202.2944,37.04782,77.45529,3.553 1818,-5.146897,215.19269,19.209507,42.68976,3.547 1818,575.10944,168.48642,49.78253,141.58359,3.541 1818,-8.680354,69.52845,37.65084,107.44079,3.529 1818,82.13905,220.52145,33.095848,54.43637,3.506 1818,481.40228,-18.581347,19.05365,43.69556,3.497 1818,321.22845,-17.059845,18.916962,39.83546,3.496 1818,288.63696,247.73158,22.990509,37.80632,3.493 1818,313.6098,-17.326704,18.528534,40.295334,3.467 1819,405.7165,200.81876,26.060486,66.84854,33.462 1819,451.41895,201.73077,20.418793,42.502945,19.455 1819,80.31063,266.99533,39.142487,74.4426,10.8 1819,481.78766,214.79211,28.101868,77.441345,6.908 1819,-6.3486075,489.58514,19.010126,42.46222,6.514 1819,210.1629,231.07384,21.739182,40.063004,6.309 1819,612.79193,-18.431124,28.378235,74.482765,6.087 1819,622.4032,-33.435856,27.547058,76.957146,5.904 1819,626.5425,488.07962,20.558044,45.83383,5.782 1819,-11.691235,479.23444,29.506584,62.011353,5.744 1819,-11.532493,-32.465694,29.94551,71.98678,5.569 1819,602.4157,-55.607746,54.27533,135.89804,5.516 1819,-6.15884,-18.536589,18.17889,43.048393,5.217 1819,626.93225,-18.527176,17.789917,47.55243,5.184 1819,612.7622,455.84824,39.60486,105.54648,5.158 1819,585.994,-100.738335,73.85675,238.70502,5.115 1819,490.63336,-182.2974,235.1496,428.0197,5.06 1819,202.50992,232.3017,20.794434,37.83716,5.021 1819,-72.995186,265.18344,201.0047,463.8809,5.002 1819,474.9187,199.16167,27.079742,68.988174,4.939 1819,583.19037,411.61948,71.52246,176.71426,4.876 1819,431.29834,196.64104,26.177551,53.91902,4.858 1819,-17.720953,-63.43024,56.763977,144.63084,4.825 1819,233.43954,229.82051,21.476685,43.61284,4.82 1819,593.8319,-45.039024,44.69861,99.418304,4.711 1819,553.9114,196.68785,22.598022,40.468826,4.706 1819,-21.853672,401.5033,79.65402,175.32397,4.695 1819,161.86783,236.79936,32.45877,70.63521,4.599 1819,194.04623,232.71072,19.98085,37.89624,4.588 1819,536.38104,310.6897,143.10101,342.06995,4.568 1819,493.81006,226.50522,237.35461,515.6538,4.383 1819,438.37958,188.96135,36.42697,76.08119,4.37 1819,155.08943,257.4494,32.300583,74.17435,4.267 1819,604.98486,-6.5264893,28.014343,70.4192,4.168 1819,100.982346,260.2,36.552414,61.338074,4.064 1819,77.28999,244.45993,35.547874,66.490326,4.048 1819,428.14496,-12.891174,32.6698,66.79061,4.04 1819,248.66058,234.90837,21.083038,45.194168,4.001 1819,580.9217,-34.56117,28.888855,79.920586,3.951 1819,-37.28356,-124.260895,117.27613,277.1086,3.881 1819,460.5986,-14.403682,31.339722,59.32573,3.877 1819,-0.18267155,214.0862,27.236584,70.84288,3.834 1819,493.6114,224.99419,23.236816,54.57692,3.81 1819,-69.91363,-186.71713,210.37427,450.78702,3.79 1819,305.07584,-17.804,19.096832,41.025433,3.732 1819,591.10565,-16.18612,50.457947,189.47299,3.721 1819,485.41998,-17.237198,31.610779,65.321045,3.701 1819,420.43744,199.04597,30.174438,60.267136,3.686 1819,238.76183,228.1763,27.237625,64.44208,3.673 1819,414.91748,203.24283,20.809143,44.76245,3.66 1819,441.84448,-3.9956875,21.381378,43.842102,3.648 1819,443.07135,-13.872578,32.922638,63.441315,3.618 1819,463.098,198.71915,29.819153,75.44052,3.589 1819,299.8928,-16.852995,33.146484,65.31788,3.587 1819,613.8382,190.55763,36.13568,104.652695,3.572 1819,57.393143,248.93132,34.087784,54.230576,3.557 1819,574.504,-22.926464,53.985107,143.66608,3.508 1819,214.99397,209.97594,36.05037,79.33186,3.508 1819,428.95023,200.23282,18.732574,41.431473,3.508 1820,423.36258,202.21684,21.483246,57.55504,37.401 1820,461.3882,200.45192,21.982422,43.881058,23.023 1820,200.7827,232.35709,22.602478,39.542908,6.804 1820,623.38806,-33.462,26.233398,77.78313,6.582 1820,-6.1613874,489.49405,18.615223,42.458344,6.567 1820,627.41223,-16.918755,16.612122,46.24964,6.368 1820,626.6338,487.8284,20.518005,45.956085,5.57 1820,-11.333912,-32.775337,29.971786,73.08972,5.564 1820,-5.9288144,-18.349873,17.88892,43.429256,5.535 1820,-8.90988,464.80988,37.667297,91.25897,5.431 1820,230.09671,225.25064,28.006104,61.771606,5.426 1820,612.8285,453.86823,39.593628,108.75751,5.119 1820,455.51233,197.86407,33.52243,72.03735,5.116 1820,-73.02565,264.51086,201.59903,464.0758,5.056 1820,602.98096,-55.557785,53.86035,133.36041,5.019 1820,491.2396,-182.08217,234.48544,427.75793,4.986 1820,251.98326,231.64941,30.54509,62.337402,4.914 1820,469.3549,200.75842,23.590973,44.901443,4.883 1820,-17.850325,-63.37288,56.998062,145.4393,4.872 1820,583.1681,411.1399,71.549194,177.18848,4.857 1820,586.1343,-101.10112,74.48682,234.94093,4.82 1820,446.99292,196.67242,27.76007,62.354218,4.765 1820,-21.85104,401.15643,79.89114,176.06165,4.732 1820,-41.42708,362.97693,112.55844,277.80237,4.678 1820,536.35315,311.18094,143.29315,341.77744,4.639 1820,126.19911,205.67018,29.028534,54.27269,4.628 1820,357.1673,-33.768497,30.008179,73.25469,4.574 1820,189.77477,223.04802,28.785812,59.504745,4.55 1820,441.9239,198.08885,20.610413,46.02191,4.535 1820,215.09041,216.06224,35.271378,82.10634,4.516 1820,32.174904,233.40155,34.871986,63.563477,4.464 1820,493.57483,227.1777,237.50183,514.91943,4.461 1820,511.06934,192.06927,29.812744,68.71341,4.389 1820,131.61172,217.14822,32.590057,62.256165,4.388 1820,409.77405,199.0623,29.1221,70.59816,4.375 1820,594.8036,-46.42125,43.669495,97.941826,4.3 1820,26.917086,207.10258,33.61869,70.37886,4.282 1820,614.92725,-17.799746,26.93158,69.34862,4.16 1820,204.62222,223.08066,28.515427,55.30667,4.128 1820,620.00433,-2.2251205,17.202637,39.83747,4.122 1820,308.263,-14.991684,31.678955,69.71924,4.083 1820,432.1377,200.66696,20.04718,49.291336,4.021 1820,427.06885,205.24466,27.030884,70.58597,4.011 1820,-37.15714,-124.433266,117.32321,276.62515,3.985 1820,492.9819,-17.597378,31.274933,69.95115,3.977 1820,525.8519,85.39148,28.469482,87.969025,3.938 1820,154.03699,250.5578,33.68466,76.73505,3.859 1820,388.9289,-32.983635,29.107056,70.076744,3.853 1820,342.05865,-33.68823,29.617004,72.10577,3.818 1820,45.436787,304.58307,38.981457,71.731415,3.808 1820,-10.481058,293.2762,39.37603,100.16641,3.807 1820,-69.99234,-186.33032,210.25641,451.15237,3.791 1820,330.0153,-18.705593,18.78067,42.968853,3.784 1820,322.11835,-15.826618,18.195923,40.720596,3.756 1820,530.6562,208.66388,35.190613,86.860565,3.745 1820,27.987999,249.15193,33.753696,70.01192,3.743 1820,566.48035,191.59578,28.791443,63.596573,3.742 1820,240.71738,228.00383,22.799133,48.02971,3.677 1820,611.42615,-0.38217545,18.116943,37.42324,3.659 1821,432.76373,207.04268,22.421753,47.950287,77.445 1821,473.62582,202.67857,21.370941,44.89537,42.564 1821,448.30167,203.93103,23.665436,53.84021,15.97 1821,455.81818,198.67998,22.51062,52.008713,8.981 1821,462.01288,202.20976,29.439209,70.783646,7.925 1821,622.0653,-32.049137,27.371216,75.99413,7.056 1821,436.51953,205.91286,27.879211,65.90135,6.939 1821,613.65814,-18.384117,28.005188,70.61692,6.271 1821,-6.290567,489.05066,19.03237,43.40271,6.267 1821,626.9514,-17.567654,17.318115,48.257984,5.99 1821,-11.832581,477.9447,29.707296,63.398926,5.937 1821,238.60767,225.46164,28.10144,66.75415,5.884 1821,-11.608435,-32.48676,29.884483,71.88801,5.431 1821,612.8649,454.46265,39.745422,107.27588,5.341 1821,626.6064,487.7593,20.5047,46.408417,5.276 1821,-72.79292,265.19012,201.04727,464.0738,5.111 1821,602.20386,-56.026363,53.65924,135.3191,5.085 1821,-6.2812877,-18.52612,18.254751,43.03986,5.075 1821,490.94165,-183.47154,234.5553,428.81503,5.016 1821,-18.058594,-63.605145,57.01794,145.78722,4.957 1821,583.0869,411.58044,71.62671,176.6712,4.921 1821,222.17416,225.39671,29.180725,63.41304,4.85 1821,201.96793,231.026,21.925186,41.401855,4.832 1821,-41.38193,362.99545,112.38394,278.62027,4.81 1821,586.2511,-102.55574,74.41272,237.3078,4.792 1821,536.35065,310.3896,143.49945,342.35126,4.716 1821,-21.700953,401.0865,79.55792,176.09302,4.709 1821,527.45844,202.4118,22.82367,45.745575,4.613 1821,588.65125,190.3042,32.02942,68.71179,4.611 1821,1.68877,291.35046,29.752584,73.8656,4.482 1821,-9.732558,295.46442,30.119785,71.43057,4.464 1821,493.65494,226.21628,237.48471,515.8506,4.439 1821,92.841934,214.02345,33.016212,59.09175,4.387 1821,99.203156,221.92862,40.207138,90.73331,4.226 1821,532.1893,182.70287,39.054688,78.20604,4.222 1821,594.1981,-45.02662,44.1109,97.93211,4.213 1821,468.62665,191.74602,35.808746,73.7408,4.082 1821,389.20712,-35.473175,29.214386,71.47618,4.027 1821,618.56226,-16.933586,18.202026,45.73862,3.985 1821,204.3106,227.38527,29.383728,59.05046,3.985 1821,-37.08712,-124.5978,117.15012,276.67795,3.957 1821,581.7304,174.59007,30.377502,71.07118,3.934 1821,573.7763,-22.087673,53.31659,137.26038,3.91 1821,424.24323,192.48505,36.099854,69.078735,3.855 1821,-70.193855,-186.67453,210.54703,451.45236,3.846 1821,511.90106,178.04547,47.86786,117.16995,3.832 1821,171.4159,224.37965,32.845215,71.29561,3.81 1821,109.46671,218.72255,27.744438,50.365646,3.796 1821,193.64963,234.5517,21.393326,45.48645,3.783 1821,610.6656,179.47096,36.7417,119.2007,3.772 1821,245.93643,216.093,35.45166,85.20143,3.761 1821,611.98773,227.7813,38.417053,123.21434,3.643 1822,442.04437,204.3399,23.337555,57.61444,64.02 1822,477.9051,205.977,26.370056,78.626236,25.198 1822,456.15558,200.04623,21.748108,52.562607,19.161 1822,623.6142,-33.521523,25.470337,72.72981,8.406 1822,221.69415,224.043,27.507019,63.59909,8.401 1822,626.7662,-18.591745,17.456116,46.355175,7.623 1822,-6.0754437,488.9663,18.632301,43.36493,6.43 1822,230.47067,226.1268,25.517258,49.414093,5.884 1822,626.779,488.34958,20.117981,45.19034,5.824 1822,462.6327,199.63666,27.118256,73.0387,5.788 1822,-11.456728,477.12106,29.26131,63.88913,5.583 1822,67.57385,218.96667,31.838669,56.039825,5.544 1822,-11.37795,-32.876007,29.72298,72.5251,5.404 1822,610.01166,-46.68605,42.597595,96.98605,5.382 1822,620.13947,-7.737731,18.542603,39.377575,5.165 1822,612.86035,454.70688,39.865356,107.78659,5.106 1822,-72.98195,265.2727,201.0544,463.3617,5.096 1822,162.40614,224.8066,30.690475,69.89787,5.086 1822,-6.063405,-18.64812,17.893234,43.268124,5.075 1822,-17.865446,-65.06494,56.68052,147.78998,5.063 1822,490.75436,-182.857,234.59488,426.81873,4.901 1822,583.14685,411.11487,71.65857,177.35541,4.867 1822,-21.80972,401.69485,79.488174,175.57773,4.849 1822,437.61237,205.11874,35.459686,82.62369,4.811 1822,536.18835,310.50885,143.75366,342.17108,4.722 1822,187.82346,244.07553,18.44934,36.981873,4.702 1822,486.51257,207.78658,21.35736,52.068558,4.69 1822,268.28363,227.9784,31.678436,65.01404,4.649 1822,586.37854,-101.67224,74.33667,235.52911,4.587 1822,493.77948,226.77267,237.42218,514.8286,4.491 1822,229.58255,213.55525,36.222534,85.114365,4.277 1822,598.1316,201.97748,29.402893,57.87213,4.243 1822,205.76657,229.93025,28.951385,59.096115,4.203 1822,387.20276,198.68626,17.966248,35.749985,4.142 1822,390.45197,212.08038,29.923553,63.670593,4.027 1822,583.0444,196.4927,28.99762,58.76062,3.973 1822,177.7707,235.23184,19.192123,36.160126,3.969 1822,-37.05288,-124.33072,117.15319,276.18884,3.947 1822,182.78464,205.6468,35.890594,84.70378,3.946 1822,605.48303,-18.920403,30.608032,59.239445,3.858 1822,194.44313,247.57982,21.143845,40.445023,3.843 1822,61.374702,205.3413,50.777153,106.65849,3.831 1822,534.1574,193.75134,35.742676,78.62927,3.8 1822,-70.14248,-186.55986,210.36298,450.90698,3.789 1822,496.66803,210.88657,22.143188,50.32309,3.725 1822,245.26033,213.11406,36.458786,85.655136,3.683 1822,618.81305,490.65482,19.962646,41.69644,3.675 1822,217.32605,241.96442,20.218018,42.22473,3.669 1822,-6.736964,183.78857,35.74273,99.02875,3.667 1822,435.45407,172.07469,40.847076,82.142715,3.665 1822,148.83421,240.67177,31.00505,75.275375,3.633 1822,167.5302,231.46014,21.704575,41.66809,3.603 1822,322.06506,-18.262772,18.295715,43.916912,3.58 1823,448.70743,204.38718,25.937897,59.519653,75.078 1823,483.9925,203.31273,19.611603,47.395508,31.575 1823,623.03326,-32.892242,26.520264,74.69118,7.692 1823,473.46634,203.91724,26.406036,60.817688,7.214 1823,626.8473,-18.376617,17.58014,46.90652,6.215 1823,518.71375,204.96037,28.980103,78.64168,6.004 1823,613.0327,454.10907,39.833008,108.21796,5.805 1823,485.3078,203.89595,27.542542,71.52074,5.569 1823,-6.486624,489.6376,19.049389,42.253876,5.534 1823,-8.997035,464.13843,37.86135,93.21118,5.42 1823,626.5545,488.57452,20.636902,45.299133,5.415 1823,532.14655,203.19846,29.889587,70.372925,5.398 1823,-11.354914,-32.454662,29.647991,71.889404,5.388 1823,-73.697136,264.61484,202.31863,464.0153,5.322 1823,-6.103078,-18.309732,18.068905,42.91132,5.152 1823,27.123058,211.25946,30.514366,66.44318,4.994 1823,-17.825378,-65.108826,56.662014,148.34218,4.968 1823,602.2993,-56.431866,53.50244,130.83385,4.92 1823,583.19586,410.4464,71.604065,177.84216,4.909 1823,-41.29619,360.1986,112.95555,279.72705,4.905 1823,493.2406,207.82773,21.993286,46.14685,4.854 1823,618.4546,-17.09996,18.559326,43.784405,4.832 1823,536.1116,310.06952,143.98926,342.30597,4.814 1823,387.03583,199.76445,17.178345,35.203598,4.807 1823,-21.46617,400.54785,79.34745,177.32959,4.741 1823,533.25183,-182.83136,147.49493,424.88983,4.715 1823,586.7651,-102.11027,73.956116,235.25171,4.66 1823,137.80989,236.1483,19.816605,35.251358,4.653 1823,493.8028,226.98953,237.26996,514.74524,4.596 1823,593.586,-44.65398,44.64911,93.15918,4.508 1823,133.62552,204.6129,36.17888,89.64455,4.397 1823,531.49207,-15.571468,33.36487,68.88002,4.127 1823,5.078461,210.96327,30.896439,73.11195,4.114 1823,81.74485,323.5265,32.270546,74.79974,4.077 1823,-5.2754617,71.15172,18.036089,44.719315,3.977 1823,-37.427223,-125.41362,117.49464,277.67126,3.939 1823,484.87445,209.099,38.493347,106.594055,3.935 1823,11.358833,218.37697,56.155457,138.20671,3.924 1823,-70.09128,-186.8087,210.26254,451.0454,3.876 1823,598.3888,152.52878,37.327698,93.19661,3.807 1823,489.58258,-6.904642,21.340546,43.38684,3.807 1823,138.17204,249.78262,18.286652,32.07007,3.802 1823,539.89496,200.14908,19.412231,46.04474,3.788 1823,432.5024,197.54085,29.615356,64.30553,3.763 1823,36.982933,218.13391,38.45912,85.87677,3.762 1823,-9.565119,274.49228,38.733067,109.86954,3.743 1823,546.3929,-14.288204,33.286255,67.23082,3.734 1823,-5.807143,201.41191,18.52915,43.106567,3.715 1823,-8.104103,229.24823,37.10747,103.29144,3.693 1823,501.8463,-34.18529,29.162842,72.61276,3.687 1823,148.95312,204.79802,36.65222,91.30232,3.67 1823,260.4828,228.83623,39.170044,99.26808,3.629 1823,-9.040903,69.5798,38.383965,106.069,3.612 1823,455.70615,198.41699,21.81903,47.03598,3.608 1823,117.16324,216.66174,38.041977,89.35724,3.607 1823,581.2765,205.19908,39.239014,102.15712,3.586 1823,618.2925,490.4582,21.003723,42.91913,3.543 1823,597.5394,203.7716,38.606567,105.35779,3.54 1823,612.7977,146.41463,35.600586,101.168045,3.538 1823,122.692856,232.74597,20.714493,38.616577,3.52 1823,4.585943,231.98123,39.002113,111.52008,3.516 1823,276.853,232.14066,38.70865,95.04178,3.516 1824,489.2179,199.87048,21.969818,52.105255,91.884 1824,453.569,204.62314,28.715118,62.755768,88.737 1824,506.50803,200.66528,20.768036,51.07521,65.002 1824,92.18299,221.13724,31.81588,79.68341,6.057 1824,622.53546,-32.992058,26.10785,75.46759,5.951 1824,613.25635,453.42474,39.516174,108.455444,5.809 1824,-6.298349,489.21408,18.971542,41.79538,5.771 1824,-11.8326645,477.59518,30.14668,63.523834,5.77 1824,626.616,-19.121233,17.493835,49.649693,5.726 1824,-6.0207314,-18.66806,17.918257,43.418446,5.509 1824,-11.629376,-32.933212,29.783848,72.181755,5.377 1824,539.9452,204.9865,28.388306,55.258102,5.371 1824,439.3971,199.07027,33.306274,80.21489,5.363 1824,92.62054,187.62215,51.581047,116.49864,5.363 1824,621.89746,478.0104,29.137146,65.72653,5.228 1824,-17.741333,-65.45715,56.492905,149.49231,5.072 1824,-72.72492,266.72247,200.69832,461.44147,5.061 1824,166.99033,242.6414,22.054352,40.470596,5.002 1824,103.27182,208.57619,32.81595,71.10863,4.986 1824,602.7599,-55.79754,53.158325,134.71806,4.977 1824,93.11573,269.75525,32.724937,77.54611,4.973 1824,536.3,309.9533,143.87897,342.35272,4.841 1824,583.21814,410.04825,71.50476,178.14474,4.821 1824,-21.670128,402.28464,79.564064,175.08633,4.819 1824,79.64227,205.71371,50.4545,127.63678,4.789 1824,533.6776,-183.53563,147.18005,426.66135,4.645 1824,498.0285,197.10321,21.397644,51.694733,4.6 1824,494.2353,227.5188,236.94122,515.0256,4.513 1824,586.6619,-103.979355,74.24713,239.73953,4.327 1824,133.72836,216.45764,37.546387,89.80548,4.203 1824,62.68755,198.7142,29.93359,61.101135,4.144 1824,474.74,200.3579,20.24646,42.706512,4.114 1824,451.4737,176.39621,40.320007,81.67572,4.029 1824,594.2207,-45.52899,44.213806,98.677376,4.019 1824,-37.517593,-124.925476,116.766235,278.31412,3.992 1824,-5.463251,344.8306,18.983763,42.72351,3.979 1824,615.949,-20.314169,24.40271,71.89634,3.963 1824,512.7538,218.4592,20.500061,45.025726,3.95 1824,492.76355,-38.384827,30.078918,79.8771,3.947 1824,-5.586109,246.3756,18.053299,45.139053,3.945 1824,428.5359,210.79523,29.311249,79.53552,3.941 1824,51.76165,220.64536,42.380333,96.91052,3.923 1824,500.5606,192.75903,35.09784,69.68106,3.897 1824,260.30768,232.31282,39.313904,92.72136,3.896 1824,68.49515,218.52515,41.324417,98.35834,3.888 1824,-69.75432,-187.41425,210.40543,451.08395,3.88 1824,165.38023,226.42429,37.80336,79.765686,3.845 1824,389.2424,-33.42226,28.4682,72.52399,3.815 1825,544.13934,196.03142,29.090393,73.979416,91.31 1825,507.427,199.90976,24.200989,58.480255,84.529 1825,469.97845,208.20157,28.803406,71.37317,82.217 1825,58.96145,213.53069,34.777275,79.40987,14.088 1825,555.70325,198.5557,24.353271,55.560913,7.496 1825,502.4057,205.2142,33.879395,80.964386,6.476 1825,627.64496,-19.58073,16.920105,46.27761,6.119 1825,623.7259,-34.727886,25.579407,73.98141,6.107 1825,613.31146,453.23087,39.78601,108.79953,5.813 1825,-8.806544,463.95004,37.637764,93.07388,5.781 1825,60.179016,197.27017,50.651276,118.80847,5.675 1825,-6.3750052,489.3087,19.133299,42.336945,5.449 1825,-11.596194,-32.91639,29.914978,72.99663,5.365 1825,489.38055,199.19978,21.247955,53.305847,5.322 1825,-6.095109,-18.650745,18.03937,43.42148,5.269 1825,-72.96174,266.46094,201.46335,461.85437,5.17 1825,260.57562,228.18916,37.809998,96.6938,5.141 1825,-40.780697,362.52545,111.782135,277.7719,5.046 1825,-17.77934,-64.39564,56.630005,147.86536,5.02 1825,626.5673,488.289,20.790833,45.313293,5.018 1825,603.62756,-56.278645,52.441284,134.10027,4.968 1825,536.2809,310.01205,144.0321,342.8373,4.945 1825,533.6232,-183.59264,147.51935,428.8218,4.926 1825,583.20013,410.13977,71.6698,177.78131,4.829 1825,-17.733107,434.37476,55.10186,141.53015,4.814 1825,5.404396,313.95886,36.448853,88.74527,4.763 1825,68.011604,229.51024,29.862503,85.13701,4.69 1825,494.33517,228.33078,237.11356,514.1395,4.678 1825,265.09436,234.04446,20.952667,45.45941,4.678 1825,581.75653,201.45224,37.80536,102.07138,4.576 1825,454.9447,208.91632,40.34906,104.78253,4.505 1825,275.34207,229.84229,39.962616,96.59125,4.484 1825,-0.50789356,269.10318,28.69085,67.10104,4.332 1825,290.99713,227.94998,39.983337,100.134705,4.324 1825,587.19446,-104.652054,73.874146,238.95763,4.158 1826,552.6729,196.92984,29.405151,69.354095,76.943 1826,513.6777,201.0939,36.85663,79.582184,35.235 1826,29.451508,209.42236,30.498425,63.622345,16.103 1826,66.57952,204.038,43.97087,98.14993,10.034 1826,261.66562,219.63692,28.434662,71.64284,7.215 1826,627.2754,-18.637215,17.456055,47.21378,6.546 1826,384.68207,205.2528,20.5708,41.100967,6.441 1826,272.58868,227.39049,21.912415,50.069656,6.401 1826,581.66846,198.7139,36.095703,83.971344,6.312 1826,536.61176,199.25291,37.10309,77.89131,6.291 1826,52.482338,215.49326,35.400322,79.722626,6.268 1826,622.82666,-33.989296,26.88147,75.342094,6.049 1826,-6.148777,489.11102,18.833492,42.33496,5.857 1826,-8.75901,464.92584,37.561497,92.02106,5.668 1826,-11.268596,-32.75775,29.726585,72.31984,5.664 1826,-6.1027045,-18.958862,18.166178,43.840767,5.564 1826,88.71338,241.34827,32.937325,72.73584,5.388 1826,613.1124,454.12082,39.614014,107.079865,5.232 1826,17.561825,187.7309,53.161373,107.46002,5.214 1826,278.57437,214.66191,33.937225,92.038864,5.152 1826,-17.470915,-64.40635,56.401787,148.68263,5.151 1826,-72.88676,266.14563,200.73407,462.02966,5.118 1826,244.8088,218.78223,30.694458,72.572815,5.0 1826,491.37567,-183.84848,233.35712,425.97733,4.942 1826,583.1462,410.55307,71.56879,177.19412,4.932 1826,-0.80319524,324.04315,28.124105,99.23508,4.91 1826,547.32434,203.4462,39.773743,106.19647,4.904 1826,-40.519066,364.88367,111.049706,276.35486,4.865 1826,287.38892,216.93555,21.757874,43.969025,4.854 1826,536.4269,309.47928,143.69653,342.74875,4.791 1826,603.4147,-56.422997,52.353394,137.66295,4.785 1826,293.09103,220.67497,36.543915,100.80379,4.749 1826,380.46594,206.16174,29.960876,60.79956,4.714 1826,-17.772062,436.2921,55.4896,140.53882,4.673 1826,493.54803,228.47641,237.69354,514.2269,4.583 1826,280.59833,221.99251,21.60028,47.124313,4.486 1826,626.5963,489.04712,21.027039,44.72296,4.423 1826,454.2873,200.52623,29.374939,72.08211,4.343 1826,75.45021,221.4813,54.3441,110.599884,4.298 1826,590.8251,207.41225,23.922302,47.01126,4.267 1827,591.78815,198.94304,32.18695,77.25911,95.413 1827,544.2561,208.48067,40.9693,87.18895,88.324 1827,20.835037,206.46407,42.66034,114.54567,19.901 1827,4.6075306,206.80707,38.92063,107.38855,15.364 1827,611.6416,196.2118,27.441467,76.13957,6.601 1827,-5.9656196,489.52234,18.527617,41.421326,6.6 1827,392.59332,206.31477,19.965942,38.28035,5.847 1827,37.374527,215.4676,30.769165,76.76344,5.775 1827,389.48978,206.82893,28.814026,64.77791,5.769 1827,-11.464953,-32.458748,29.861473,72.17314,5.678 1827,-11.767673,478.3415,29.96996,62.277527,5.591 1827,626.98584,-19.468487,17.759338,48.22435,5.553 1827,560.2822,203.76384,40.052734,84.576645,5.538 1827,3.6387038,222.81833,49.47739,154.4158,5.531 1827,613.1605,454.97525,39.860107,106.4487,5.373 1827,622.48883,-34.87539,27.446411,76.97806,5.34 1827,-6.1079593,-18.37167,18.006048,42.659435,5.32 1827,1.7454207,201.26657,26.401962,84.806244,5.281 1827,532.68604,-182.5415,149.2525,428.0164,5.213 1827,-72.62843,265.78235,200.92126,462.0973,5.208 1827,218.39261,251.98624,23.247269,42.83136,5.205 1827,-17.83994,-64.374016,56.859135,147.81476,5.152 1827,626.5967,489.44543,20.780884,44.203613,5.136 1827,583.17163,411.23703,71.73352,176.76126,5.016 1827,536.32404,309.34973,143.97052,342.57764,4.907 1827,603.2793,-57.60917,53.127502,139.61526,4.891 1827,-40.486183,363.062,111.33069,277.95972,4.787 1827,579.08344,220.28316,42.73529,110.73485,4.781 1827,-6.295402,223.98201,37.7084,108.73988,4.764 1827,612.2375,215.94719,36.436768,103.238266,4.756 1827,386.46146,202.50713,19.083649,37.305878,4.748 1827,529.0281,203.9592,54.533447,137.44485,4.741 1827,517.4459,208.70221,42.74225,91.51587,4.725 1828,585.16095,210.50934,46.230286,97.26648,81.723 1828,3.212781,222.15677,29.674019,81.95465,7.639 1828,-1.7093134,268.75177,25.65342,78.24921,7.272 1828,627.04456,-17.925514,17.161133,47.31693,7.189 1828,607.0153,215.64328,39.277954,110.418884,7.113 1828,128.82082,252.20493,27.012375,65.1481,6.74 1828,-5.9363737,489.30637,18.492544,42.07846,6.069 1828,445.44452,-33.313503,27.805908,79.153,5.832 1828,-11.696458,476.6018,29.691654,63.869385,5.748 1828,285.79822,227.62433,28.406464,64.97778,5.743 1828,193.77313,261.0485,29.806046,71.28952,5.729 1828,613.37714,455.0609,39.90204,106.01904,5.63 1828,622.36914,-32.78705,27.082703,74.460594,5.62 1828,577.67224,215.18245,33.61151,82.89427,5.599 1828,-6.1903534,-19.007517,18.129288,43.889862,5.538 1828,602.8118,-56.07062,53.27942,135.31152,5.363 1828,-12.502354,-40.6398,41.311256,101.44521,5.276 1828,626.77496,488.77432,20.447083,44.616486,5.262 1828,393.08975,209.44199,21.06189,34.58821,5.211 1828,-72.82669,266.71448,201.01733,461.27783,5.195 1828,536.2905,309.448,143.94067,342.80945,5.089 1828,556.92194,211.26053,26.655579,48.322754,5.031 1828,272.384,237.73848,22.450989,41.85045,5.025 1828,583.04974,411.23563,71.79962,176.82895,4.974 1828,266.63776,244.6384,18.92096,39.086426,4.964 1828,-39.83093,364.14365,110.55577,275.8052,4.876 1828,281.83167,236.42969,22.192749,42.304565,4.844 1828,619.328,-17.740406,16.919922,44.70676,4.786 1828,532.822,-182.30444,148.5445,424.7925,4.772 1828,263.18423,221.3943,35.062042,87.83916,4.626 1828,493.49463,227.6864,237.84802,514.21954,4.604 1828,-14.494367,354.21368,50.64703,156.99133,4.557 1828,-20.05044,-86.3251,70.99057,196.38084,4.518 1828,-1.3640809,363.29938,28.419676,105.87488,4.476 1828,-18.222683,427.53534,56.03009,149.48132,4.431 1828,117.834175,254.32306,29.001137,68.09613,4.42 1828,-8.807396,234.2211,28.37012,81.98361,4.332 1828,586.79395,-100.64194,73.89258,234.28665,4.202 1828,618.7965,3.8415737,18.816223,44.959724,4.181 1828,588.13257,183.7114,53.779724,177.7439,4.168 1828,431.07037,-36.49252,27.707886,82.203064,4.132 1828,547.6531,217.98969,42.536194,95.13251,4.13 1828,614.4522,-19.210762,27.163025,71.64462,4.106 1828,-37.520416,-124.50298,117.21943,275.2288,4.08 1828,573.7827,219.1387,55.849487,172.87717,4.071 1828,606.15063,-34.6696,27.996826,77.38849,4.058 1828,406.69327,216.4159,29.876099,67.346985,4.051 1828,298.8072,254.9235,20.397186,41.233856,4.013 1828,407.36322,206.46982,21.823547,39.56932,3.975 1828,293.91223,241.40254,28.592163,66.46483,3.956 1828,275.65985,255.2727,41.302612,105.54962,3.939 1828,-70.28538,-187.67088,210.33246,452.12622,3.938 1828,387.82376,201.92111,19.914917,36.851868,3.928 1828,450.90997,-10.54583,30.89508,67.54687,3.89 1829,-5.899344,485.8036,19.067694,46.34912,8.899 1829,-10.97746,471.04346,29.470905,69.82855,7.34 1829,626.93787,-15.816778,16.867004,44.01991,7.252 1829,282.98618,214.97552,19.110107,43.373596,6.788 1829,622.44995,-33.314583,26.669678,75.40583,5.881 1829,626.7997,489.56708,20.477661,43.646484,5.681 1829,-18.403017,423.0613,56.268127,152.90433,5.547 1829,613.34814,455.92297,39.45453,104.69769,5.444 1829,161.8245,217.74916,21.898499,32.315933,5.414 1829,-17.66257,-65.06628,56.802227,148.78122,5.395 1829,602.84906,-54.228848,53.137573,136.75095,5.374 1829,77.19081,279.77527,27.984238,66.0957,5.351 1829,-6.1407547,-18.69674,18.113218,43.40909,5.29 1829,-11.4795,-32.492012,29.831331,72.332954,5.227 1829,278.6243,207.67506,34.306915,88.37633,5.171 1829,104.23132,243.82292,27.222473,72.484116,5.115 1829,-72.76457,266.77875,200.94128,460.8493,5.064 1829,-37.886116,365.4048,109.01145,272.4624,4.971 1829,583.4313,410.50455,71.50659,177.19199,4.909 1829,3.4358716,297.1976,31.135868,70.731964,4.641 1829,614.27356,-16.186174,27.531921,70.71703,4.605 1829,532.4707,-182.24603,148.92645,423.19388,4.569 1829,1.2557197,369.14017,40.77046,114.39737,4.567 1829,536.6549,311.2114,143.05835,341.2476,4.547 1829,555.90314,197.76411,32.25067,63.90016,4.511 1829,586.1753,-100.5088,74.8764,234.66562,4.506 1829,619.4247,-13.607355,16.290466,40.46047,4.49 1829,2.1845074,484.71588,19.628534,46.663025,4.386 1829,419.61603,216.48013,30.677277,67.80307,4.385 1829,618.0566,5.7293854,19.430786,43.812225,4.38 1829,493.47192,227.2128,237.50983,514.67566,4.355 1829,564.389,201.5683,38.529175,80.1445,4.329 1829,-5.482052,464.72385,17.931011,49.13156,4.268 1829,612.8791,4.4839325,25.964966,79.1455,4.241 1829,293.12924,208.43095,34.978516,86.66884,4.234 1829,494.27594,-34.920563,27.64801,77.3508,4.174 1829,21.29523,371.91953,38.090412,88.6611,4.167 1829,388.9575,208.33752,39.606323,74.77051,4.159 1829,-37.11708,-123.865555,117.1321,273.78467,4.116 1829,-7.9945326,401.702,38.62362,105.61395,4.029 1829,-70.38097,-188.22995,210.44882,452.82123,4.015 1829,551.1994,204.20158,25.717773,46.59233,3.993 1829,509.8764,-34.162262,27.642273,72.567375,3.988 1829,-9.477083,384.1788,31.773256,76.232666,3.98 1829,441.6071,233.42162,21.391724,40.043564,3.962 1829,392.83188,201.2729,21.771088,41.196655,3.937 1829,453.35107,216.00461,39.63571,90.0614,3.916 1829,262.6244,208.98793,34.980255,87.739975,3.894 1829,171.11906,220.47308,33.31378,58.24362,3.859 1829,-7.151984,219.36874,36.272358,98.30505,3.776 1829,246.04596,210.77055,35.538635,84.307816,3.753 1829,260.62845,236.0647,39.9653,105.703735,3.744 1829,-12.228818,295.81985,30.486034,65.32254,3.738 1829,-6.805315,377.96326,19.885813,42.72296,3.737 1829,580.03186,193.44298,30.930847,61.502945,3.687 1829,544.1695,182.26067,50.403687,107.607254,3.669 1829,627.4749,3.840002,17.94983,44.99787,3.644 1829,229.25949,234.32913,40.110443,106.53235,3.629 1829,418.90784,216.551,21.829895,40.742096,3.618 1829,-5.852146,299.4064,18.890911,39.34912,3.6 1829,618.5699,492.20786,20.290955,40.036163,3.595 1829,12.8686285,197.14656,52.841736,125.02522,3.581 1829,405.37012,205.61487,31.308014,60.125,3.561 1829,3.0868745,330.65027,30.78272,70.536835,3.546 1829,-14.658318,363.0774,74.17824,180.51373,3.529 1829,1.7792392,299.9532,22.10328,40.51181,3.508 1829,612.04694,-11.140617,15.416931,36.81736,3.506 1829,462.23474,-35.726665,28.114532,77.11204,3.499 1829,185.71985,236.72667,20.37413,33.29161,3.481 1829,245.02234,234.3055,38.77899,107.01192,3.46 1830,-5.911833,488.66528,18.465874,42.39966,7.487 1830,622.01105,-32.91169,27.192383,76.51724,6.516 1830,-12.16166,477.98563,30.44498,62.988983,6.42 1830,282.5258,214.30402,20.04599,49.06366,6.372 1830,626.71423,-16.985863,17.146484,46.544506,6.261 1830,580.5561,202.45613,38.570435,75.739,6.132 1830,-6.190585,-18.840885,18.089607,43.643486,5.542 1830,612.8598,453.7204,40.100708,107.07599,5.508 1830,-11.334076,-33.132607,29.899197,72.964745,5.43 1830,-17.521992,-64.60719,56.778908,148.29001,5.33 1830,532.5858,198.2272,30.73175,89.24686,5.301 1830,92.085495,253.73656,30.0672,77.94014,5.277 1830,595.90234,214.88693,35.20935,58.781097,5.174 1830,-72.54006,266.20312,201.13177,461.75366,5.085 1830,603.0504,-57.360962,53.549072,133.9878,4.979 1830,583.0697,410.9657,71.75665,177.03235,4.953 1830,596.14923,166.08783,39.643677,83.9512,4.86 1830,-22.701845,399.75986,79.99097,176.96402,4.77 1830,614.0646,-19.280693,26.857788,72.000854,4.76 1830,286.05075,208.38478,25.861298,63.297165,4.749 1830,536.187,310.5981,143.91248,341.9872,4.724 1830,532.41205,-182.57535,149.27057,424.11328,4.691 1830,432.81677,238.71976,22.134888,36.209778,4.58 1830,420.79144,210.79538,39.039978,81.36282,4.563 1830,626.42084,488.30573,21.04596,45.230774,4.521 1830,493.69623,227.30725,237.2414,514.53577,4.483 1830,58.04668,282.8413,30.25233,76.67996,4.469 1830,260.57816,220.75023,38.128387,105.44731,4.461 1830,586.4747,-100.25101,74.59656,233.14479,4.401 1830,277.71902,210.68947,36.146606,99.89885,4.384 1830,619.1508,-16.060036,16.982117,44.29859,4.374 1830,2.7276917,489.78253,18.771513,40.23163,4.287 1830,612.9884,153.56119,36.59375,94.68718,4.284 1830,499.53217,227.8073,32.70807,66.07298,4.26 1830,227.38385,235.54482,41.546936,104.002304,4.234 1830,244.73154,223.0507,38.725525,103.856125,4.198 1830,563.5778,198.36574,31.185913,66.50987,4.176 1830,393.88187,201.23462,21.223083,41.288864,4.174 1830,-37.11987,-125.163506,117.0405,275.0847,4.102 1830,484.2752,209.30598,41.524902,81.58775,4.094 1830,538.12714,195.93634,53.461487,145.9336,4.072 1830,-70.33118,-188.03107,210.77377,453.143,4.061 1830,388.45428,205.94926,38.998352,79.353775,4.042 1830,500.51044,195.43576,40.108154,82.373505,4.037 1830,594.60443,-46.34829,44.317017,96.40194,3.904 1830,30.600416,245.90709,53.625694,127.412735,3.876 1830,573.4266,195.75735,32.52881,61.5567,3.871 1830,613.66174,208.76212,37.813477,96.065796,3.857 1830,451.7427,211.8394,41.09967,81.05376,3.831 1830,233.10326,221.99963,20.847519,37.19922,3.76 1830,152.81134,215.82622,21.025497,32.065826,3.737 1830,292.93484,207.69417,35.435516,90.23872,3.733 1830,194.3255,241.28165,19.361725,26.81662,3.726 1830,543.2363,200.72565,23.171387,64.758545,3.671 1830,295.8149,214.85881,20.652588,47.523117,3.663 1830,-9.405649,356.3157,38.88684,105.67746,3.643 1830,2.423259,-17.457008,17.094042,40.551044,3.617 1830,418.01495,219.93758,20.424835,35.24913,3.597 1830,517.1709,-34.88327,28.329712,75.639305,3.58 1830,412.89648,-34.009712,28.638092,80.51045,3.522 1830,86.54349,235.88669,30.07299,65.069244,3.479 1830,-7.919626,219.36021,37.029667,98.77022,3.466 1830,204.3415,232.19096,17.594162,27.683792,3.46 1830,461.69888,193.6428,54.205597,114.90712,3.453 1831,281.18878,215.04019,22.426056,49.916412,11.672 1831,589.337,205.97812,24.890564,49.559967,8.049 1831,545.7528,210.9295,38.14392,96.7005,6.796 1831,-12.691742,476.6512,31.25502,64.64249,6.409 1831,582.1598,207.4891,37.593567,74.77219,6.212 1831,626.65924,-16.255657,16.970215,45.509426,6.159 1831,567.6959,205.34462,23.381226,53.809372,6.104 1831,-6.393423,488.3011,19.354193,43.747864,6.03 1831,622.2718,-33.226032,26.763489,75.932846,5.775 1831,626.4243,488.6034,20.8349,44.791504,5.724 1831,-11.731199,-32.56095,29.957512,72.28638,5.39 1831,-6.015508,-18.589142,17.797434,42.888786,5.371 1831,-17.740711,-64.686264,56.978973,148.34384,5.334 1831,316.89648,207.65005,15.818634,29.807068,5.222 1831,613.1698,454.85812,39.446167,106.209076,5.187 1831,-73.49115,265.44092,202.22012,462.437,5.126 1831,-22.590244,400.6187,80.30165,177.53339,5.092 1831,434.32614,223.41136,31.259338,71.00514,5.076 1831,602.9154,-56.315987,53.17926,134.78516,4.976 1831,583.0769,410.49228,71.77307,177.58865,4.874 1831,207.90775,271.58505,25.22165,52.100006,4.857 1831,536.1021,310.4158,144.13031,341.52182,4.838 1831,532.4869,-181.88457,148.91595,423.47958,4.671 1831,594.40076,215.55205,33.241394,57.750107,4.611 1831,619.45935,-2.5749626,18.531494,40.915054,4.578 1831,494.05328,227.49341,237.11786,514.499,4.499 1831,586.29535,-99.690796,74.36456,233.4072,4.438 1831,615.16473,-17.478565,26.352234,72.102066,4.396 1831,574.1222,207.051,29.582886,61.41809,4.322 1831,2.7100396,227.89542,41.074184,105.99396,4.303 1831,536.0367,201.83751,37.954224,80.39516,4.279 1831,558.27405,203.26633,27.496887,71.49423,4.257 1831,73.26171,284.984,38.114136,64.88583,4.194 1831,612.97925,172.3224,35.505554,92.05397,4.179 1831,-1.3819158,276.38284,28.5889,69.949615,4.166 1831,287.05984,222.84698,23.817413,51.002136,4.157 1831,-37.15017,-124.082634,117.22515,274.11884,4.1 1831,115.43087,219.95023,19.044197,31.367432,4.092 1831,27.424488,207.34773,56.154034,127.495255,4.071 1831,267.33856,296.20383,17.86856,24.595764,4.035 1831,-70.3396,-187.93925,210.53479,452.8451,3.99 1831,121.571396,222.75479,20.056946,32.813675,3.987 1831,501.10733,197.38367,39.469147,76.2449,3.978 1831,85.62184,257.2692,31.409836,80.478,3.976 1831,541.67474,-36.279613,28.083069,79.533295,3.971 1831,613.67316,210.96277,37.52124,93.86896,3.968 1831,434.95422,225.37811,22.011078,41.121155,3.884 1831,594.5471,-45.744507,44.667114,96.67106,3.863 1831,11.04939,224.55798,57.766865,133.29834,3.855 1831,573.6415,-35.021038,28.244934,76.34478,3.841 1831,275.02103,296.40088,17.757172,26.103516,3.815 1831,165.38339,349.09357,34.95549,73.621826,3.813 1831,596.24927,163.38708,39.303345,88.20184,3.81 1831,229.1943,224.0365,37.82843,88.562195,3.806 1831,144.4572,344.55344,38.487976,86.280975,3.77 1831,245.10788,219.0456,36.375,92.10846,3.758 1831,277.63736,208.22894,35.662292,88.204956,3.755 1831,618.1669,490.8208,21.011047,41.85559,3.743 1831,529.94147,206.3685,51.812622,153.64578,3.711 1831,1.6788697,488.85486,20.29651,42.960144,3.68 1832,230.21414,331.64194,35.55246,78.91556,8.369 1832,-6.1811495,490.45197,18.538837,40.50403,6.849 1832,-12.132597,480.87436,30.436413,60.076447,6.646 1832,626.99927,-19.540836,17.881104,48.79565,6.226 1832,622.7512,-34.225594,26.818176,78.2362,6.022 1832,613.4176,454.45377,39.992188,106.31467,5.953 1832,-5.987811,-18.741825,18.032825,43.96055,5.785 1832,-11.359024,-32.488174,29.791986,72.046684,5.65 1832,490.331,263.7499,23.813782,42.585205,5.516 1832,-9.455225,461.84564,38.218643,93.56134,5.3 1832,602.6896,-57.310577,53.612427,135.98984,5.258 1832,-17.538998,-63.90841,56.94832,147.98174,5.184 1832,116.27133,215.1005,40.93878,81.35303,5.156 1832,-39.86939,365.10202,110.803604,275.1901,5.128 1832,99.64897,216.49551,41.309555,81.01352,4.94 1832,536.15125,309.97583,144.07513,341.83398,4.875 1832,583.00305,410.63547,71.8844,177.20755,4.845 1832,-72.32852,267.28464,200.39566,458.986,4.826 1832,66.95678,232.32446,42.589592,100.51965,4.776 1832,-18.527737,431.8683,55.365734,144.20355,4.76 1832,130.84662,223.46637,42.17459,92.84076,4.745 1832,586.10626,-99.56709,74.4151,234.07704,4.727 1832,626.35565,488.14886,21.216675,45.01996,4.715 1832,532.63525,-182.7805,148.79388,423.72647,4.702 1832,-5.4308834,425.3814,16.731833,41.189056,4.68 1832,83.8611,228.32314,41.35932,90.66283,4.652 1832,1.8895805,492.52432,19.001385,38.40976,4.607 1832,493.61282,227.72641,237.63321,514.3972,4.565 1832,287.7343,223.63115,24.9599,44.374954,4.545 1832,51.653168,222.65034,41.289703,98.00935,4.541 1832,149.12527,210.89282,38.191315,81.50104,4.532 1832,-5.1475167,476.7807,15.626209,34.49124,4.509 1832,593.82715,-47.01235,44.962463,99.52148,4.487 1832,588.93634,205.4237,30.503052,62.60144,4.471 1832,533.78485,199.62015,29.140747,60.58902,4.278 1832,576.9424,194.61855,49.034912,141.31017,4.276 1832,223.1189,279.4162,54.316284,137.96082,4.249 1832,598.59064,193.37999,36.167603,92.47664,4.152 1832,-37.189846,-124.07941,117.25784,273.49954,4.126 1832,618.02563,211.63846,21.319885,52.26361,4.071 1832,-70.50253,-187.5964,210.59714,452.1216,4.053 1832,407.44388,205.75383,22.725311,40.026093,4.027 1832,63.065037,242.41748,27.016735,55.938965,4.018 1832,48.26027,235.41853,25.208122,58.96501,3.949 1832,612.9035,203.93396,36.822205,114.566895,3.913 1832,75.71344,230.17924,56.977448,145.21736,3.864 1832,627.751,199.79877,18.041199,48.635056,3.819 1832,164.35535,209.72072,38.101532,80.79082,3.793 1832,420.10715,218.02951,40.227264,81.75693,3.781 1832,3.6034398,200.95493,17.752186,39.928833,3.692 1832,-3.391523,203.20825,16.111183,38.488495,3.626 1832,220.50739,248.77606,30.339005,64.953674,3.62 1832,453.1701,240.05965,31.035828,65.24834,3.61 1832,457.69763,220.06732,21.309143,35.733154,3.606 1832,2.5988925,-16.812685,17.126543,40.386944,3.583 1832,589.57794,-37.26881,28.812805,81.09234,3.581 1832,303.57855,220.7099,22.865265,42.499542,3.537 1832,618.9861,-19.945736,17.911133,47.879868,3.521 1832,437.07883,219.1854,40.45508,82.59714,3.516 1832,589.95966,205.6582,58.04767,203.26935,3.477 1833,-1.5190649,335.3605,29.849815,80.90054,10.068 1833,243.68219,358.96973,29.823029,79.02704,8.022 1833,623.19116,-34.143497,26.679932,75.50563,6.923 1833,626.94666,-18.3905,17.430847,46.309837,6.803 1833,612.9603,454.34143,40.059753,107.24011,5.959 1833,-0.35267472,198.8333,26.165167,64.597244,5.934 1833,-6.3593507,488.61334,19.103054,43.192688,5.799 1833,154.36023,240.41087,33.02719,58.037094,5.652 1833,-11.389658,-32.665596,29.727745,72.63981,5.64 1833,-17.449795,-64.36754,56.83609,148.81238,5.631 1833,-6.026554,-18.857885,18.001085,43.891228,5.523 1833,-12.358767,476.86194,30.918427,63.3844,5.457 1833,85.67085,218.2218,39.174484,88.03528,5.151 1833,101.988785,218.71901,39.53029,87.54918,5.037 1833,602.98535,-56.662163,53.629578,136.44823,5.027 1833,-39.647312,366.7597,109.90396,273.2707,5.02 1833,626.5832,487.8855,20.980652,46.284607,4.908 1833,583.0134,410.80383,71.91504,177.302,4.872 1833,-72.819115,266.58893,200.01059,461.18585,4.857 1833,615.6387,218.08597,22.088684,40.188843,4.824 1833,536.27637,310.8735,143.9461,341.01944,4.79 1833,230.64969,363.08054,31.187714,73.29379,4.779 1833,424.21613,211.13315,20.219116,45.24124,4.666 1833,117.53261,211.53613,38.943634,84.82141,4.616 1833,-18.77867,434.69717,56.514984,141.63443,4.595 1833,493.84494,227.1055,237.32419,514.64453,4.576 1833,532.4647,-182.63358,148.72595,423.60953,4.572 1833,585.99854,-99.71547,75.06842,232.4155,4.549 1833,132.7928,223.55315,38.88919,92.606125,4.372 1833,69.52277,220.40643,39.599434,86.4834,4.364 1833,594.4191,-47.46128,44.06604,102.49061,4.335 1833,598.0235,196.59473,36.203857,79.96231,4.316 1833,496.4077,233.92206,20.91034,37.910156,4.254 1833,491.39676,248.27916,31.30429,62.496506,4.243 1833,165.67285,219.057,36.81952,86.60297,4.192 1833,-37.393166,-125.296135,117.50864,274.44836,4.135 1833,-5.6165843,353.02237,20.418867,54.438812,4.112 1833,613.8185,149.14539,35.6239,100.28198,4.087 1833,-8.851072,323.69745,30.581379,72.877075,4.023 1833,298.33426,300.8943,30.569244,91.324524,3.988 1833,619.119,-19.319908,17.561035,44.94126,3.961 1833,-70.57138,-186.22108,210.60709,450.82825,3.952 1833,469.173,-32.38605,28.211975,78.896,3.917 1833,565.24506,207.52075,30.533875,61.24301,3.903 1833,167.40146,249.069,24.56366,40.17401,3.891 1833,59.256836,242.55211,34.28827,69.30141,3.882 1833,-4.8828077,206.76312,18.166748,44.06862,3.879 1833,214.30582,218.8909,35.70929,87.812836,3.868 1833,1.434083,187.20816,47.00981,135.3801,3.845 1833,9.461108,333.83295,32.24982,74.1481,3.837 1833,111.952576,245.35754,23.697662,45.512634,3.775 1833,230.12567,235.97835,28.979828,59.225845,3.742 1833,-5.9810963,380.0169,20.100374,47.123688,3.728 1833,181.58289,217.2702,36.208847,86.963684,3.711 1833,245.60855,219.5901,35.82361,85.88628,3.672 1833,108.18149,218.31479,54.548843,136.23587,3.668 1833,-7.9307833,213.4072,36.82382,105.68005,3.661 1833,-4.4875236,190.00797,16.998089,37.809067,3.655 1833,-7.6905165,355.0513,37.169697,103.341156,3.654 1833,604.1748,95.65414,52.01953,138.40451,3.637 1833,45.808205,192.55392,53.729378,120.37857,3.636 1833,597.60614,159.59052,37.931885,91.07024,3.623 1833,198.307,220.75089,36.708008,85.58008,3.605 1833,496.19452,246.61403,21.894531,42.55449,3.597 1833,262.22028,214.13184,35.345886,78.78845,3.593 1833,582.8721,200.78918,37.436035,74.03223,3.59 1834,589.86505,212.57082,31.386414,56.14348,8.429 1834,433.96515,218.82593,20.012756,42.312653,6.837 1834,427.5934,213.6078,19.157806,40.733063,6.481 1834,623.3029,-34.418743,26.42804,76.77133,6.367 1834,200.77084,228.82312,22.34285,40.84729,6.217 1834,-5.979866,489.52518,18.608124,41.987335,6.131 1834,612.9563,454.6502,40.335632,105.88837,6.075 1834,627.0013,-18.32118,17.197449,46.985626,5.868 1834,-11.711618,478.5742,29.692137,63.20157,5.696 1834,2.950272,230.51176,18.07998,36.001846,5.611 1834,-11.230421,-32.860504,29.617807,73.38945,5.569 1834,626.3041,488.1847,21.022217,45.393005,5.437 1834,-17.430267,-63.554688,56.762623,147.98532,5.435 1834,-6.071582,-18.967377,18.037457,44.504265,5.227 1834,-4.8723693,230.79152,17.160751,39.194016,5.141 1834,415.74365,210.09772,26.881592,56.728638,5.052 1834,603.0684,-57.188538,53.487244,138.10439,5.046 1834,582.9899,410.5108,71.972534,177.61365,5.014 1834,-72.7655,265.73492,200.86272,462.81683,5.005 1834,-40.783966,361.01587,112.32804,278.88293,4.877 1834,535.8842,310.62158,144.40192,341.80664,4.866 1834,-17.441076,435.71765,54.926056,141.49048,4.604 1834,493.67386,226.72842,237.54868,514.9603,4.583 1834,596.1426,197.44794,36.273376,78.40036,4.579 1834,585.94794,-99.849365,75.04846,233.396,4.551 1834,532.2919,-183.13995,148.83997,424.2704,4.519 1834,606.6842,216.0347,24.55896,42.44452,4.502 1834,574.519,207.92505,31.304321,60.08676,4.496 1834,613.58246,150.55844,35.830383,98.50664,4.49 1834,6.7424273,254.86667,64.33349,151.33408,4.406 1834,594.635,-48.209465,43.898865,103.959885,4.28 1834,-37.42458,-124.60179,117.38162,273.32773,4.228 1834,228.42392,224.5394,39.42691,97.82596,4.206 1834,578.5728,221.68858,42.558777,88.1588,4.173 1834,262.21564,225.03326,28.403015,67.98279,4.11 1834,595.3271,222.13428,39.380432,90.26947,4.079 1834,188.19739,219.78522,31.645462,60.68152,4.078 1834,618.4245,489.98688,20.748413,42.353027,4.064 1834,619.22144,-19.419424,17.305908,45.67309,4.019 1834,203.02138,221.37047,31.302505,59.847397,4.016 1834,245.21864,216.9556,35.685654,94.05679,4.008 1834,-70.60406,-187.4694,210.45163,452.29596,4.007 1834,313.93008,318.81653,30.760956,67.30945,3.915 1834,29.386091,225.1979,30.775812,55.066254,3.827 1834,5.5673814,219.54405,27.800817,57.102707,3.811 1834,501.39423,-31.351051,28.869873,72.85914,3.803 1834,-4.1732383,204.09196,17.731907,41.149857,3.785 1834,617.0873,210.61604,20.004944,38.98172,3.728 1834,292.7039,221.1944,29.933746,72.60004,3.721 1834,232.92923,232.78386,22.517334,37.68608,3.718 1834,596.879,162.27266,38.389465,88.856064,3.715 1834,613.9261,233.96912,38.331665,106.29291,3.672 1834,-9.430124,279.77722,39.231277,104.58618,3.643 1834,259.9988,228.22198,39.06894,102.92798,3.634 1834,172.72571,216.20831,29.418457,53.845184,3.616 1834,277.86566,206.97726,35.77289,93.36224,3.614 1834,10.075352,232.33156,19.593752,34.670242,3.599 1834,-14.329945,187.94821,48.55908,135.21124,3.59 1834,596.7027,461.41254,39.97003,98.684875,3.574 1834,604.3491,95.205635,51.926514,139.07028,3.564 1834,605.4142,171.60147,48.68097,123.12344,3.547 1834,217.73343,232.87851,24.187378,38.554535,3.541 1834,214.17273,213.84637,36.292984,88.12036,3.497 1834,40.224945,220.0021,23.412975,40.505737,3.475 1834,2.3929973,491.09006,19.266794,40.31723,3.431 1834,-5.1704044,250.48064,17.140486,37.937027,3.416 1834,-8.208456,326.2041,38.56154,97.82825,3.406 1834,2.0375204,209.5346,20.292896,45.357697,3.394 1834,554.80096,199.5044,19.201904,42.87184,3.386 1834,515.83124,206.95912,40.131958,81.54158,3.366 1834,-11.884987,314.97412,30.528221,71.23105,3.36 1835,142.38033,227.04732,26.337753,37.424484,8.338 1835,431.27356,214.27213,21.664185,42.322052,7.988 1835,626.59015,488.8488,20.66156,44.214752,6.759 1835,-12.26831,477.3527,30.441734,63.60263,6.081 1835,-11.518368,-32.567455,29.886253,73.02678,5.9 1835,-6.389899,489.03595,19.167404,43.001526,5.626 1835,627.17163,-18.483725,17.183228,46.502537,5.608 1835,622.7807,-34.685425,26.790344,76.70469,5.459 1835,-6.1928034,-18.699852,18.174713,43.57572,5.457 1835,-17.353561,-63.136395,56.72196,146.01805,5.432 1835,612.87115,453.86545,39.533386,108.782135,5.302 1835,618.45074,490.1525,20.683533,41.87149,5.215 1835,-72.91711,266.20877,200.86969,462.50485,5.173 1835,603.0967,-56.379925,53.5412,132.37003,5.141 1835,582.96436,411.64337,71.75867,176.31018,5.024 1835,-21.705688,402.62964,79.29544,175.1222,4.929 1835,129.7576,230.86394,22.547562,34.37178,4.884 1835,619.80536,188.59442,17.296936,38.097626,4.88 1835,532.0804,-182.89052,149.60107,423.12863,4.745 1835,536.2903,311.03665,143.65405,341.2888,4.704 1835,586.08234,-98.85615,74.88751,230.50824,4.694 1835,593.7033,-45.75512,45.192932,95.24049,4.63 1835,493.3295,226.62128,237.60788,515.4171,4.519 1835,477.4195,-16.415136,29.686096,68.21023,4.239 1835,-70.54423,-187.31535,210.47812,451.83978,4.174 1835,-37.531746,-124.33798,117.22057,273.84198,4.139 1835,439.70395,218.10606,20.386719,39.05919,4.102 1835,415.2906,209.13162,28.419495,54.595245,4.099 1835,-14.310559,187.42293,48.18404,132.40446,4.097 1835,-5.5070696,231.00818,18.131634,39.2782,4.061 1835,614.398,149.20256,34.55768,98.1268,4.053 1835,104.957794,224.75098,21.274742,29.120636,4.036 1835,23.70963,226.00658,24.374306,37.886368,3.973 1835,97.19135,223.38194,20.360184,28.118256,3.958 1835,486.18964,-35.03545,28.57306,77.74842,3.954 1835,597.2814,215.78635,39.12622,96.04196,3.948 1835,425.4212,206.4943,21.98111,43.239456,3.934 1835,586.6181,218.99728,19.98175,37.306885,3.921 1835,603.9648,194.34229,16.219177,30.51094,3.901 1835,245.08594,216.01753,37.52368,95.52843,3.893 1835,596.30194,193.86748,17.604553,31.469559,3.884 1835,498.07025,-17.075525,18.20465,42.101486,3.867 1835,261.58658,218.19775,37.553345,93.48248,3.837 1835,4.953288,210.02724,37.571354,83.22548,3.814 1835,501.29736,-34.14175,29.474976,72.16482,3.808 1835,514.702,-15.746749,17.376709,39.963192,3.803 1835,490.4224,-18.22675,18.043823,44.24279,3.802 1835,482.51785,-16.70311,17.840424,43.107174,3.776 1835,-10.600279,207.26471,29.967493,67.92108,3.774 1835,228.8257,216.4892,39.008163,97.1236,3.757 1835,578.6166,203.39,42.641724,85.39174,3.747 1835,619.17975,-19.647335,17.76007,45.503582,3.744 1835,474.3947,-16.864986,17.280731,42.8512,3.726 1835,278.06003,217.84323,30.326538,65.86514,3.673 1835,506.2262,-17.914782,17.696472,41.91352,3.652 1835,617.8574,208.94104,21.89148,48.59259,3.649 1835,122.48833,226.59885,21.963867,32.975433,3.628 1835,65.27837,223.75755,20.901772,30.84372,3.608 1835,211.811,216.07333,39.361145,99.33365,3.585 1835,131.91985,220.56482,40.246277,72.56433,3.578 1835,-10.423937,99.248474,39.49794,109.96207,3.538 1835,522.5147,-16.367737,17.405457,40.75689,3.524 1835,598.42566,156.75014,37.080383,89.23033,3.489 1835,-10.353641,-3.1251717,40.68503,98.88321,3.45 1835,262.04242,217.67026,28.44397,56.29123,3.45 1835,0.71511626,195.313,20.796804,57.44925,3.441 1835,19.25787,200.9447,39.721287,77.2265,3.402 1835,-5.326824,251.0216,16.735744,36.257385,3.383 1835,453.89655,-2.9233818,29.035248,65.28655,3.368 1835,578.9773,-15.552618,17.773193,37.36581,3.335 1835,619.48846,-2.4483223,19.583008,48.627506,3.315 1835,82.08165,234.27412,19.681976,26.41774,3.278 1835,114.52468,225.53088,21.034706,31.172546,3.245 1835,73.483765,236.24252,20.079155,26.695587,3.22 1836,94.344345,231.29091,26.092773,37.237167,9.961 1836,627.35016,-19.115196,16.959595,48.205128,6.146 1836,625.74634,486.8832,21.627441,46.64865,6.012 1836,-11.392216,-32.571594,29.550333,72.693436,5.813 1836,433.7198,206.38666,22.192535,38.90001,5.813 1836,612.68896,457.09293,39.50226,103.46463,5.67 1836,-12.089716,478.07162,30.627197,62.947968,5.663 1836,-6.13862,489.3041,18.789684,41.879547,5.623 1836,622.72345,-34.519463,26.430115,77.19525,5.543 1836,-17.435553,-62.97136,56.88466,146.71411,5.46 1836,-6.147894,-18.274292,17.990744,43.03559,5.239 1836,-72.474365,266.79492,200.58603,461.3495,5.141 1836,103.20894,235.00473,25.023727,39.115173,5.102 1836,602.9503,-57.661613,52.99579,134.92531,5.086 1836,586.3253,-98.022156,74.225464,229.62286,5.0 1836,583.1933,412.5858,71.374084,174.892,4.998 1836,-21.52874,402.61038,79.04299,175.01834,4.914 1836,597.90784,186.17279,37.282043,90.89966,4.813 1836,531.9723,-182.96439,149.63806,423.03198,4.684 1836,536.3026,310.68665,143.56854,341.63232,4.631 1836,267.88043,290.88684,16.53305,30.786896,4.593 1836,74.83852,231.7431,34.44516,51.96344,4.54 1836,594.11707,-47.202927,44.473145,98.67281,4.487 1836,493.3506,226.99606,237.68884,515.3136,4.475 1836,73.08053,233.68974,23.235352,30.509384,4.242 1836,-70.60475,-187.84985,210.31902,452.89975,4.233 1836,-6.3931456,231.2505,18.669128,41.318832,4.196 1836,579.881,199.11835,39.64868,89.344055,4.163 1836,-37.434395,-123.864815,117.467445,272.79285,4.101 1836,-2.6290584,221.04851,27.324585,58.61885,4.085 1836,440.9331,217.04391,19.590881,35.42659,4.068 1836,129.76443,239.17584,20.229446,30.934387,4.065 1836,121.217545,237.16318,21.936356,33.761993,4.064 1836,485.82037,-18.096878,29.86731,67.17042,4.027 1836,613.96246,180.18372,36.15851,98.556335,3.999 1836,213.35928,220.3155,37.1958,92.486404,3.942 1836,229.71179,220.83182,37.391144,92.11032,3.876 1836,146.14598,236.38362,20.332138,28.31392,3.87 1836,4.0863156,213.82506,31.516682,57.323257,3.808 1836,429.78482,215.55316,28.513214,55.514618,3.8 1836,-5.851903,195.40016,16.982449,38.29306,3.775 1836,105.99148,230.39919,33.08486,56.650925,3.763 1836,-12.823202,226.56068,29.34071,63.91194,3.762 1836,619.29877,-19.218466,17.497375,45.583076,3.739 1836,501.79944,-34.49073,27.940308,74.76509,3.69 1836,49.08233,229.9462,21.90104,29.053284,3.682 1836,2.4685073,240.87236,18.168612,35.9496,3.672 1836,468.61874,-18.788593,30.984283,70.22119,3.629 1836,474.11884,-18.869228,18.223755,44.90288,3.62 1836,613.47906,130.34232,35.92737,102.648254,3.605 1836,563.5454,211.48325,39.26233,91.72592,3.604 1836,138.83946,241.66605,19.29692,29.660858,3.587 1836,261.01636,294.10693,16.102722,26.90738,3.545 1836,613.9169,478.73184,28.678223,62.236053,3.516 1836,528.79175,-44.170628,45.789062,93.590126,3.515 1836,1.957463,490.72156,19.929577,40.68579,3.504 1836,60.067654,226.76642,32.628956,46.612305,3.498 1836,490.03113,-19.917227,18.61316,46.12815,3.488 1836,154.52386,251.47302,18.842148,28.926697,3.458 1836,-9.93094,-2.8209038,40.482258,98.58664,3.456 1836,518.1813,-33.44851,28.299438,69.79373,3.437 1836,597.1285,465.80637,38.329712,93.512054,3.405 1836,245.6861,216.71742,36.73706,95.11934,3.403 1836,482.15198,-18.480825,18.491028,44.541683,3.397 1836,415.74814,206.8999,29.311523,54.669373,3.384 1836,147.33633,249.9307,18.399689,29.676727,3.374 1836,178.94229,220.88548,18.536575,31.699966,3.351 1836,561.2931,-44.469566,45.742798,96.36807,3.32 1836,43.375317,219.63408,32.542286,46.70439,3.319 1836,-5.754648,247.73877,16.627535,39.170288,3.298 1836,522.45105,-20.149452,17.528076,43.795654,3.287 1836,165.77461,210.9053,37.729813,76.239624,3.26 1836,83.568954,220.41855,41.771393,68.35742,3.252 1836,89.580795,227.4531,22.484528,33.57367,3.246 1836,-5.56432,177.88383,17.105469,39.362198,3.241 1836,-6.117234,212.55179,17.895847,39.421524,3.24 1836,514.3964,-19.520191,17.947998,45.198513,3.239 1836,532.12366,226.66963,33.072937,65.13942,3.229 1836,548.4493,201.60846,39.482544,93.07962,3.225 1836,2.5282896,-16.417704,17.14842,39.491222,3.213 1836,-4.946904,298.17188,15.321802,35.246826,3.209 1836,466.51825,-16.444273,17.864258,42.081806,3.206 1836,497.61685,-19.698296,18.833954,45.964863,3.189 1836,478.04498,-35.029343,28.698517,77.82386,3.185 1836,170.19508,259.19214,20.019165,29.207428,3.185 1836,57.107155,231.18826,21.82888,29.198273,3.18 1837,627.2378,-19.639828,17.354797,49.109207,8.164 1837,1.2039471,240.55304,32.952232,57.447693,7.958 1837,622.9658,-34.459846,26.471985,77.384155,7.494 1837,-11.63228,479.08453,29.825905,61.9317,6.334 1837,-6.1125603,489.13693,18.801456,41.85074,6.043 1837,451.54263,211.7065,31.59674,54.340225,6.029 1837,-12.339739,-40.01953,41.1196,101.61164,5.647 1837,33.55614,243.92442,22.747082,36.168777,5.511 1837,-6.126519,-18.555569,17.957594,43.58296,5.421 1837,-72.72641,265.79514,201.21179,462.44547,5.274 1837,603.20044,-58.405914,53.70044,136.0417,5.269 1837,1.8633091,255.5113,22.581594,37.70955,5.221 1837,583.0867,412.12274,71.51477,176.06995,5.105 1837,594.0378,-46.932934,45.06024,98.30079,5.079 1837,612.9678,455.22845,39.38141,106.83569,5.035 1837,-21.448755,402.97736,79.089485,174.92761,4.909 1837,-5.4089646,285.94376,15.983963,31.503998,4.906 1837,626.47595,488.19073,20.717407,45.861023,4.895 1837,535.98926,310.6077,144.3742,341.7003,4.871 1837,586.25995,-98.160416,74.43823,229.48296,4.821 1837,-19.821735,-85.15386,71.13124,194.40472,4.786 1837,-11.973577,245.77112,31.420574,59.789795,4.699 1837,169.22874,226.65944,22.020264,33.620255,4.689 1837,48.06743,246.343,22.780983,36.065994,4.643 1837,531.91534,-183.01976,149.86761,424.14795,4.635 1837,493.87238,227.72797,237.23834,514.3001,4.585 1837,-5.95017,266.05478,18.766726,37.12967,4.492 1837,2.6878166,276.63995,20.105345,30.731262,4.483 1837,620.5174,-1.3953438,17.591797,46.376118,4.395 1837,3.47305,288.01697,16.97784,26.736664,4.386 1837,619.5002,-20.231709,17.250854,46.78093,4.336 1837,581.0627,217.00987,39.791748,76.6013,4.313 1837,596.9303,198.6041,38.90857,83.8038,4.276 1837,613.8055,147.72647,36.07135,101.24957,4.267 1837,13.910385,240.56932,25.494041,44.293747,4.219 1837,621.36816,235.01167,17.866882,39.224655,4.193 1837,-37.16371,-122.97852,117.254845,271.77634,4.152 1837,-71.003914,-188.16095,210.6694,453.31012,4.12 1837,9.625028,287.2075,17.941547,26.43863,4.1 1837,7.357806,265.73834,22.848904,32.930695,4.032 1837,606.8784,-35.72599,27.149231,73.00687,3.965 1837,457.6337,222.39413,32.957397,61.0036,3.926 1837,-6.242484,247.23007,19.300625,40.85382,3.924 1837,518.11444,-17.654108,30.034424,63.6481,3.907 1837,25.076733,246.59435,22.938484,36.235367,3.878 1837,176.83707,231.19026,20.629028,34.093857,3.875 1837,534.02576,-33.92647,27.87738,73.91559,3.863 1837,-1.7796028,261.2168,30.15382,56.026337,3.788 1837,616.4531,251.71248,25.856445,71.08705,3.783 1837,521.79553,-19.054024,18.490967,44.705013,3.753 1837,270.60782,235.49431,28.045563,63.63582,3.728 1837,549.59094,-34.698875,27.770264,70.65821,3.711 1837,506.12033,-18.40707,18.071442,43.455357,3.697 1837,598.62494,236.5781,38.27411,98.79825,3.685 1837,624.2613,220.66852,25.176575,70.490326,3.682 1837,628.07874,234.1603,17.86853,44.042557,3.655 1837,37.165916,238.33496,29.29551,48.735962,3.617 1837,1.9838583,490.9478,19.48769,40.353455,3.597 1837,211.13095,262.87845,21.865738,38.447693,3.593 1837,214.21587,227.04291,36.476562,83.793335,3.585 1837,229.23322,239.44894,37.393005,83.45041,3.58 1837,555.77185,246.24641,27.757141,40.815414,3.541 1837,-15.613246,152.69888,50.895336,143.62094,3.493 1837,562.6203,217.91089,42.37915,73.2486,3.484 1837,514.4875,-17.702091,17.994568,42.635197,3.446 1837,-5.0219555,187.5208,17.027763,41.161118,3.427 1837,483.33896,254.96509,18.888184,37.441406,3.413 1837,-8.219236,10.836353,38.78356,99.8629,3.402 1837,164.38698,216.77972,40.92682,71.337036,3.395 1837,353.4886,218.4372,18.640442,27.695526,3.393 1837,185.77264,234.67276,20.384613,34.70401,3.389 1837,509.8531,-34.082596,28.883972,74.00583,3.381 1837,612.7748,266.38785,38.533936,108.96927,3.369 1837,-14.183207,218.68863,49.80864,126.15201,3.346 1837,529.9718,-18.95978,18.808228,44.934814,3.327 1837,497.99014,-16.522308,18.186066,42.142254,3.322 1837,621.25586,249.21703,18.685791,41.887222,3.287 1837,5.528538,467.52963,38.15433,97.194916,3.254 1837,282.5713,232.0653,29.447968,67.645874,3.249 1837,579.7692,247.56139,42.390686,102.1035,3.239 1838,471.5825,229.71202,23.766052,41.28203,7.78 1838,217.11517,261.88623,21.433624,38.872192,7.186 1838,-6.070008,489.48553,18.699839,41.928772,5.958 1838,-12.568827,-39.393513,41.459297,100.79215,5.936 1838,610.6171,-48.72697,41.672913,101.04061,5.613 1838,-8.682985,464.7253,37.543716,92.02603,5.551 1838,137.2445,243.35208,23.485474,31.767487,5.427 1838,-6.1508284,-18.452435,18.08159,43.006485,5.321 1838,627.47974,-17.653673,16.476013,46.124996,5.295 1838,-72.69751,265.9587,201.04251,462.21597,5.249 1838,582.99146,411.86758,71.76343,176.49948,5.219 1838,612.6494,455.15427,39.820984,106.63626,5.124 1838,536.00287,310.1239,144.25372,340.79773,4.977 1838,-19.964191,-84.66433,71.23626,194.23537,4.96 1838,-21.658928,402.61496,79.21036,175.23917,4.902 1838,143.15164,246.92946,25.11493,34.921677,4.876 1838,626.4674,487.94125,20.695923,46.36081,4.791 1838,493.97397,228.55042,237.24857,513.0439,4.663 1838,532.1147,-182.53633,149.51056,424.96213,4.595 1838,586.3967,-98.48601,74.14313,229.9609,4.56 1838,474.40393,223.79651,31.955658,59.79544,4.545 1838,466.24057,224.91403,21.265533,39.672363,4.52 1838,-37.030605,-121.66068,117.71652,270.36047,4.275 1838,597.5846,224.57727,36.48529,82.38611,4.238 1838,454.02072,223.53285,32.533203,57.783646,4.152 1838,-70.96464,-188.25142,210.45401,453.34155,4.013 1838,229.1546,243.32233,36.64081,78.81323,3.983 1838,555.3385,262.62076,31.30835,56.697083,3.949 1838,214.24966,242.21658,36.6839,80.72757,3.933 1838,613.41516,182.55966,35.09308,97.54196,3.84 1838,168.97958,247.4185,23.147095,35.015762,3.827 1838,-5.087286,236.03384,18.119152,37.21115,3.812 1838,245.90431,240.5041,36.90425,79.45213,3.811 1838,517.2348,-18.4172,31.418457,64.80399,3.72 1838,580.14343,264.0436,40.63965,105.11133,3.705 1838,538.7724,-18.413477,17.142456,41.39113,3.66 1838,155.59914,242.12964,33.26863,52.01056,3.619 1838,605.9209,204.9901,49.14685,120.198746,3.599 1838,481.29333,231.19926,41.213745,76.6826,3.59 1838,547.32336,-17.406258,17.020447,39.82244,3.57 1838,567.59393,272.8474,22.822998,42.33127,3.549 1838,261.5118,237.10886,36.617767,79.1037,3.483 1838,581.9586,230.37979,39.05133,77.55966,3.477 1838,-5.1637983,34.198933,18.22548,41.93388,3.46 1838,-5.6538963,20.317581,17.651833,40.663536,3.455 1838,2.1696167,490.99,19.792835,40.2854,3.439 1838,2.3408031,237.01657,20.219793,36.800995,3.421 1838,613.4655,252.61995,36.46765,109.08751,3.41 1838,597.75165,254.40446,38.26996,100.291214,3.404 1838,506.1958,-17.01058,17.764648,40.923637,3.385 1838,612.2686,126.07051,36.656494,110.337296,3.382 1838,-9.032131,64.97776,38.670055,109.338524,3.37 1838,619.8979,-17.4199,16.458374,42.76003,3.358 1838,2.4375284,-16.751217,17.283146,39.601925,3.357 1838,276.91425,234.96437,37.339294,80.38634,3.356 1838,498.1897,-14.829227,17.712952,38.772133,3.353 1838,-5.504814,249.50154,17.268066,37.012955,3.336 1838,163.93256,235.59941,40.14142,77.81581,3.327 1838,542.51514,226.70703,50.628113,107.75458,3.306 1838,514.7699,-16.562328,17.663208,39.860355,3.305 1838,186.97752,236.61948,19.777237,33.966095,3.296 1838,530.5372,-18.056164,17.509033,41.767475,3.29 1838,177.46301,253.12473,21.467743,34.25238,3.286 1838,446.79926,219.87248,27.614227,51.05864,3.285 1838,566.8999,248.69933,35.464905,55.88289,3.259 1838,59.33545,242.21043,17.933739,23.992752,3.25 1838,-16.354927,152.44217,51.45255,145.41989,3.246 1838,522.67755,-18.606602,17.57251,41.86849,3.235 1838,180.7826,238.5717,39.213882,78.01625,3.228 1838,-10.16943,-1.7049942,40.784767,95.64412,3.223 1838,477.37927,-0.86079216,30.94992,61.002068,3.208 1838,125.68312,240.57349,30.69432,47.461975,3.205 1838,130.22743,238.73846,21.95404,30.89148,3.205 1838,57.74215,194.92572,60.30861,102.8371,3.204 1838,207.43362,258.76538,29.238342,63.124542,3.182 1838,608.42004,248.05063,22.479858,35.049377,3.173 1838,355.4359,241.69856,17.83429,32.962204,3.168 1838,546.68494,414.23566,83.52063,165.66559,3.165 1838,-11.829403,237.86365,29.537817,61.24762,3.144 1839,479.7882,224.80864,22.145447,43.56508,45.282 1839,467.93176,223.2289,21.347961,43.76631,8.659 1839,-11.314145,-32.823498,29.730305,73.44467,6.257 1839,-6.3783574,488.48834,19.013508,43.25128,5.692 1839,627.1886,-16.978403,16.787537,45.192272,5.593 1839,622.8626,-33.25237,26.220093,74.69233,5.32 1839,-72.73335,265.19928,200.91505,463.39764,5.317 1839,-9.031254,464.26593,37.791496,92.05005,5.302 1839,-17.661608,-62.367523,56.746147,144.64803,5.217 1839,-6.2434793,-18.048088,18.012451,42.961132,5.181 1839,535.85767,310.18927,144.39905,340.6045,5.122 1839,582.9381,411.3744,71.92151,177.18054,5.113 1839,612.78296,454.88138,39.798462,107.20645,4.992 1839,-21.78976,402.09088,79.41042,175.4848,4.937 1839,495.21182,230.15608,24.23117,43.87224,4.932 1839,532.4175,-183.37578,149.05103,426.07556,4.791 1839,494.1245,227.97318,237.07819,513.3181,4.752 1839,562.14343,275.01193,33.327454,65.66077,4.696 1839,-0.5404568,233.68202,29.608067,60.616043,4.669 1839,626.40857,487.95804,21.042053,46.046844,4.642 1839,586.5006,-99.9389,74.184204,233.97485,4.541 1839,603.10175,-56.87394,53.458313,134.1865,4.529 1839,468.32068,206.2541,40.40506,71.034164,4.466 1839,573.85583,274.1146,26.49884,47.916138,4.408 1839,456.92032,215.84387,26.06372,53.908813,4.347 1839,593.8279,-45.31922,45.27649,95.41396,4.319 1839,597.08246,222.79515,38.998413,88.60951,4.301 1839,482.44305,222.91959,40.418884,82.981445,4.299 1839,620.05963,-2.8646927,17.381287,37.25078,4.295 1839,7.1941757,234.43053,21.838264,32.47905,4.276 1839,-70.388336,-187.71883,210.00388,453.52307,4.264 1839,572.5958,233.64575,51.811462,116.81024,4.196 1839,-13.027631,235.261,32.09667,63.68495,4.194 1839,-10.45051,-3.1719055,40.651085,98.7353,4.187 1839,540.13055,224.42505,55.639343,107.88641,4.163 1839,-37.426064,-125.64837,117.45052,274.98007,4.135 1839,-6.5897017,247.67247,19.2454,39.176895,3.924 1839,613.39844,162.25858,34.759033,105.05026,3.92 1839,-4.641983,229.56195,17.253311,36.583374,3.853 1839,560.50055,246.52214,35.6828,67.04195,3.823 1839,613.6494,214.07965,36.29474,98.18085,3.814 1839,575.792,246.26149,34.93268,64.618576,3.759 1839,19.260208,232.52931,33.075348,55.832077,3.714 1839,128.24565,224.3455,22.793259,31.10051,3.668 1839,474.62073,-16.962605,16.938538,40.77027,3.628 1839,617.94806,253.052,20.660583,42.948975,3.61 1839,474.5729,218.87411,21.090576,39.247253,3.605 1839,169.8886,252.96127,20.67479,29.804993,3.581 1839,597.74506,256.367,37.658325,97.846985,3.559 1839,-16.232008,153.89047,51.57489,140.67313,3.554 1839,596.7621,-3.1625996,16.856995,35.420036,3.504 1839,189.96443,252.08975,29.994995,54.31247,3.481 1839,482.72968,-17.259462,17.522278,41.178265,3.468 1839,-10.158709,135.28946,40.20572,104.79503,3.406 1839,2.5763197,-16.241377,16.950676,39.082336,3.4 1839,588.1471,-3.2966738,17.441101,35.92507,3.366 1839,198.0359,226.50758,36.60814,81.2935,3.365 1839,149.29544,212.16522,38.99968,73.081024,3.363 1839,450.13068,229.73244,43.749023,103.29582,3.343 1839,1.9944465,490.3825,20.065151,41.38629,3.34 1839,555.5486,195.56169,56.280518,118.68916,3.335 1839,31.873571,234.9882,24.12895,38.34468,3.333 1839,612.7921,267.55618,38.221985,109.2876,3.324 1840,497.80188,218.24403,24.7099,50.294113,17.643 1840,507.62177,218.48523,27.286499,51.103943,11.003 1840,-6.2291427,488.78168,19.036856,42.660156,6.431 1840,-12.543267,477.90677,31.125492,62.733,6.353 1840,627.26355,-17.116945,16.807434,45.839355,5.688 1840,-11.446058,-32.71736,29.667109,72.95884,5.417 1840,-6.3164845,-18.396576,18.295395,43.65375,5.409 1840,-17.402103,-63.11733,56.65478,147.7825,5.399 1840,622.78613,-33.889927,26.364319,76.30753,5.28 1840,612.9702,454.98773,39.717224,107.01984,5.214 1840,626.59375,488.40247,20.748413,45.39966,5.207 1840,-72.78588,265.8111,200.78455,462.22577,5.182 1840,-17.937021,436.4461,55.146072,140.5296,5.048 1840,582.5031,411.66553,72.13263,176.3703,5.033 1840,586.18353,-97.84443,74.015564,230.75427,4.966 1840,536.3904,310.9807,143.43134,340.26318,4.897 1840,603.07104,-56.257286,53.299805,134.5192,4.788 1840,491.4148,-180.97583,234.05365,426.01483,4.776 1840,-40.411865,367.27606,110.80332,274.54895,4.666 1840,493.92462,228.08054,236.93317,513.4823,4.549 1840,42.39476,234.28328,20.077614,27.054062,4.476 1840,530.6626,221.31346,41.028503,89.88692,4.319 1840,-6.059064,214.423,18.426685,39.053925,4.24 1840,10.1326,56.105244,35.657845,74.743256,4.235 1840,593.8117,-44.07674,45.30902,95.04002,4.229 1840,-36.824776,-124.02742,117.23629,273.189,4.229 1840,512.5796,212.28305,40.480286,78.27408,4.203 1840,-70.33841,-187.78755,209.80463,453.38873,4.198 1840,74.60384,232.1622,19.993439,31.999725,4.108 1840,66.68847,230.6607,20.227638,32.158844,4.08 1840,527.55084,-38.054688,47.97705,88.48449,4.015 1840,402.57907,219.99512,17.484558,32.603546,4.011 1840,487.94232,203.7127,29.031006,61.210907,3.999 1840,615.0819,315.10504,25.165405,56.867554,3.958 1840,1.9898212,490.94067,20.113556,40.446472,3.957 1840,34.31101,234.58961,20.488853,26.59871,3.887 1840,51.22196,232.10396,19.559551,28.83342,3.857 1840,570.9671,-1.4197788,18.673767,34.205788,3.788 1840,-6.4832973,231.97191,17.714588,37.682205,3.762 1840,499.54602,222.5075,41.534058,108.53735,3.745 1840,246.09439,213.96648,34.64798,85.01906,3.721 1840,-14.439396,185.81381,48.65707,130.77908,3.72 1840,571.1015,206.45828,21.875366,45.971725,3.71 1840,619.7344,-16.94117,16.718994,42.762,3.699 1840,495.63025,-40.255035,47.14978,90.910866,3.647 1840,618.48444,490.38278,20.66095,42.30539,3.63 1840,482.92444,223.51555,43.04236,112.916885,3.518 1840,468.22845,-19.54446,31.801483,70.35526,3.494 1840,2.5682473,223.40274,18.74365,33.537292,3.487 1840,546.9105,224.8208,42.13849,90.65155,3.473 1840,-7.391185,68.49638,37.7557,105.82643,3.468 1840,261.35217,211.63974,36.235657,87.2449,3.462 1840,26.291292,233.57901,20.650206,26.807556,3.447 1840,214.51866,220.89803,35.1353,83.88585,3.409 1840,231.15073,219.1622,35.10504,82.966644,3.403 1840,59.058643,230.88136,19.891903,30.297104,3.39 1840,-10.664014,-1.6127205,41.270493,99.65877,3.374 1840,612.6155,326.78775,38.800232,116.02731,3.366 1840,562.59863,-15.066769,42.766052,81.536575,3.36 1840,-9.626595,134.96542,39.82515,103.7538,3.359 1840,396.0941,217.52269,17.605682,31.998856,3.348 1840,19.40927,223.1192,32.552536,48.390686,3.316 1840,522.2165,198.57513,33.2865,62.670105,3.298 1840,217.83904,248.96562,20.645004,32.814224,3.288 1840,-5.875307,472.03824,16.985416,39.424713,3.27 1840,563.3606,-0.35515404,18.450378,35.051125,3.255 1840,546.39453,414.5094,84.19891,165.81915,3.239 1840,2.4223356,-16.840477,17.220207,40.331112,3.237 1840,198.15579,213.94669,36.930435,79.57028,3.236 1840,5.208907,209.86346,37.342117,79.792725,3.234 1840,577.97986,203.06102,21.00885,42.098145,3.214 1840,595.66455,322.34317,42.330383,116.93558,3.211 1840,5.4344025,465.97595,38.518974,97.9563,3.203 1840,170.62117,244.72491,20.810791,31.089172,3.19 1840,581.20667,218.04405,40.98401,93.31062,3.188 1840,507.4025,-30.768951,59.120758,119.053345,3.179 1841,535.2917,198.8385,27.164917,59.218353,31.651 1841,521.063,194.27246,28.402954,67.76404,5.791 1841,627.451,-17.32879,16.842834,45.01085,5.729 1841,-5.867524,489.08087,18.273933,42.38629,5.598 1841,395.3628,208.10324,17.530579,27.680939,5.481 1841,612.9325,455.5689,39.57373,105.88342,5.448 1841,-12.246599,477.8629,30.819487,62.301636,5.366 1841,-12.4254465,-39.733997,41.388187,100.62102,5.31 1841,610.47327,-47.55281,42.14911,98.291664,5.285 1841,-6.0400057,-18.49788,18.017038,43.48309,5.283 1841,543.96954,194.31035,31.920044,65.45647,5.267 1841,626.6888,488.65915,20.82428,45.434845,5.115 1841,583.34424,411.63672,71.30914,176.36133,5.098 1841,-72.496216,266.05057,200.24747,461.36472,5.079 1841,-21.843412,401.8969,79.60391,175.9129,4.95 1841,-20.299797,-85.506996,71.88538,194.72453,4.924 1841,532.4527,-182.71101,149.10272,425.5889,4.865 1841,586.4471,-100.16991,74.38898,234.32863,4.713 1841,536.3633,310.3553,143.51599,342.5135,4.704 1841,544.62274,217.3657,20.426453,48.568314,4.531 1841,410.4625,204.10605,18.957336,31.784348,4.528 1841,-37.081436,-126.03666,117.19001,274.1314,4.445 1841,-5.004076,214.36446,16.543652,39.112,4.417 1841,493.41098,227.03815,237.72604,515.2201,4.413 1841,387.9215,206.12154,17.565369,28.599182,4.382 1841,-70.33172,-189.13573,210.31384,455.6718,4.32 1841,402.52026,208.31479,19.076874,29.37085,4.273 1841,618.6874,491.13605,20.454163,41.385254,4.232 1841,473.7633,-16.173117,18.206665,41.137157,4.149 1841,466.22333,-13.880161,17.536621,39.08277,3.859 1841,476.69876,-14.9941025,31.666687,65.00459,3.819 1841,458.9421,-14.969123,17.067383,39.346153,3.748 1841,481.7418,-17.000694,19.180908,41.531006,3.741 1841,485.7433,-33.534275,29.373352,73.794785,3.62 1841,-9.610777,-3.788826,39.922554,99.615364,3.585 1841,619.9979,-3.158968,17.796997,37.49666,3.57 1841,197.90926,200.05823,37.1295,78.153625,3.56 1841,-0.17554998,187.882,25.723648,63.44673,3.531 1841,454.96323,-2.9350643,29.20517,64.58787,3.485 1841,202.34239,234.73793,19.863708,32.81398,3.481 1841,468.9,-3.4303646,30.658386,63.61467,3.439 1841,2.303965,490.86502,19.207506,40.311737,3.436 1841,489.92365,-18.517614,19.188019,42.65464,3.399 1841,230.20392,206.01471,34.94055,81.09772,3.393 1841,-5.2259626,197.29424,18.50447,43.08206,3.389 1841,214.67317,199.23149,35.752457,78.212296,3.358 1841,612.2341,231.08813,38.387634,116.470215,3.344 1841,371.4928,201.21979,17.347656,30.877136,3.304 1841,536.37286,176.12888,52.484375,112.11743,3.288 1841,597.6008,463.06665,38.403564,97.04791,3.253 1841,501.2128,-34.28255,29.000885,69.932,3.251 1841,489.89102,193.82513,20.248291,47.16829,3.232 1841,379.28387,205.18071,17.076172,28.66452,3.231 1841,162.1473,245.81133,21.33371,40.800552,3.214 1841,-8.737544,258.88083,37.926765,106.90439,3.205 1841,-5.15562,231.10075,16.886705,40.544876,3.187 1841,122.79415,190.95897,32.520546,56.16342,3.183 1841,9.351006,-89.75001,74.29087,207.35628,3.18 1841,612.51245,185.96826,37.01422,113.23355,3.149 1841,461.8721,-32.986053,28.472992,73.71681,3.149 1841,547.0964,414.38586,82.84772,165.91357,3.143 1841,-11.536108,154.8846,30.15376,70.821106,3.13 1841,186.4424,234.93678,21.769333,33.431656,3.117 1841,217.96786,235.24475,20.12497,30.993866,3.105 1841,-8.017951,40.373043,37.594364,103.83081,3.089 1841,80.33453,-38.927406,46.40719,93.21309,3.085 1841,602.9543,-27.697548,52.774963,142.52884,3.084 1841,111.915054,-39.487278,47.15596,92.423195,3.083 1841,-5.232771,137.43124,16.889076,40.209503,3.083 1841,501.7815,198.77872,39.015503,77.615875,3.072 1841,612.91113,128.41884,34.594666,106.46123,3.064 1841,246.39212,198.64674,34.517548,76.642105,3.062 1841,3.0896492,213.25073,17.196615,35.888885,3.057 1841,73.53735,-9.365982,59.033524,123.80275,3.05 1841,599.1615,148.76242,36.69867,96.92937,3.047 1841,120.67435,195.15387,22.072662,37.887634,3.046 1842,586.7559,209.31473,32.590515,68.31613,72.902 1842,574.684,201.28079,32.42633,74.92807,10.488 1842,-5.7939415,489.21475,18.008211,42.18344,6.491 1842,594.12195,191.02786,40.002014,84.050995,6.077 1842,-12.646942,-39.56078,41.497025,101.416985,5.57 1842,-5.971304,-18.601534,17.914658,43.931053,5.552 1842,-9.183243,463.6997,38.026855,93.0531,5.409 1842,612.37366,217.47794,36.54309,104.15274,5.306 1842,613.1206,455.85287,39.25757,106.2988,5.224 1842,627.2452,-18.270056,16.85675,46.78699,5.211 1842,-72.618355,266.15027,200.452,461.51404,5.194 1842,610.69104,-48.100636,41.914856,99.2631,5.147 1842,583.1623,411.9555,71.47601,176.0611,5.026 1842,626.71106,488.45325,20.682678,45.35901,4.987 1842,-21.785248,402.3736,79.55036,175.68414,4.984 1842,536.06573,309.90497,144.21295,342.93658,4.853 1842,-20.309029,-85.97571,71.760086,195.24149,4.791 1842,532.673,-182.48692,149.1889,425.19266,4.707 1842,595.6165,222.48006,39.627502,113.56377,4.704 1842,586.48737,-100.247444,74.12909,233.43341,4.701 1842,493.61157,226.72034,237.4497,515.36804,4.626 1842,576.3514,197.66058,49.325012,119.857056,4.584 1842,-37.17338,-126.08321,117.22879,274.78464,4.422 1842,-70.294014,-188.75076,210.26575,455.3783,4.37 1842,6.117754,185.74503,28.684946,70.01897,4.162 1842,19.16254,195.20222,32.72585,65.32243,4.127 1842,181.51949,214.009,36.503433,79.49469,4.115 1842,549.1021,206.17232,40.843445,86.42781,4.068 1842,185.6918,248.6953,19.757477,32.11177,4.056 1842,602.84686,138.63266,52.603577,128.82394,4.052 1842,598.8082,230.56062,23.06781,55.028946,3.919 1842,598.51294,202.16866,24.803833,47.850266,3.884 1842,198.14716,212.82257,35.35251,79.06204,3.857 1842,612.4558,262.91904,39.229126,117.13394,3.802 1842,570.1715,156.56667,59.054016,119.11827,3.793 1842,165.35127,226.80148,38.23134,87.391815,3.654 1842,486.09332,-34.20101,29.143555,72.70172,3.608 1842,-5.3151417,169.62387,17.38454,41.42993,3.603 1842,2.3201818,490.73166,19.135185,40.562897,3.583 1842,230.47392,209.81805,33.664474,80.62741,3.5 1842,605.37213,219.07028,24.186707,54.28476,3.469 1842,-5.044545,229.46672,16.925758,44.074356,3.43 1842,214.54727,210.97754,34.227356,80.50491,3.409 1842,613.46704,112.2643,36.224792,105.929596,3.34 1842,2.5702577,-16.791683,17.067656,40.933304,3.337 1842,618.6061,491.07312,20.583618,41.81476,3.309 1842,-9.296689,-4.2263603,39.216824,100.94905,3.286 1842,611.02734,185.88283,36.25049,95.620834,3.281 1842,489.93616,-19.646349,19.015106,43.8717,3.276 1842,58.478718,167.58601,57.846813,116.53627,3.227 1842,526.7415,197.1795,26.782532,61.036224,3.194 1843,450.42065,228.565,19.852905,35.179382,6.776 1843,546.51404,197.66956,21.318176,42.80185,6.75 1843,-6.037527,488.2987,18.55869,43.065308,6.127 1843,627.13354,-18.382294,17.09668,47.16061,5.947 1843,-12.046288,476.51428,30.759773,63.673462,5.737 1843,-11.523308,-33.24263,29.80832,73.54409,5.696 1843,-5.9879947,-18.540438,17.962309,43.599663,5.579 1843,146.34093,247.42967,22.039429,32.343033,5.501 1843,-16.46339,-62.380646,55.763393,146.11049,5.291 1843,622.77344,-33.326317,26.473145,76.32668,5.248 1843,-72.39632,265.99066,200.32327,461.72284,5.196 1843,626.4646,488.15384,20.937683,45.792694,5.192 1843,170.12779,249.76744,20.988022,29.856064,5.148 1843,613.09534,454.7718,39.349976,107.036316,5.036 1843,583.1524,411.55457,71.571594,176.49774,5.023 1843,586.4259,-99.24869,74.26129,232.46692,4.971 1843,-21.781214,402.2471,79.54207,175.66098,4.967 1843,532.3881,-183.10316,149.17627,425.12747,4.917 1843,177.90363,250.06267,21.824768,29.68245,4.9 1843,603.0243,-56.895943,53.41284,133.20021,4.835 1843,536.0938,310.38617,143.91113,342.35272,4.79 1843,493.50055,226.64801,237.51025,515.17413,4.592 1843,-37.032143,-126.53734,117.37029,274.85684,4.504 1843,593.66736,-45.13009,45.376465,95.18909,4.486 1843,147.82846,236.04057,31.039627,52.58818,4.392 1843,466.8819,231.47888,18.739868,37.237396,4.328 1843,-70.199844,-188.59532,210.3052,454.40594,4.301 1843,4.364898,196.98859,29.122044,75.14221,4.221 1843,539.4521,197.02812,20.538696,39.470505,4.071 1843,613.0521,202.81737,37.62079,110.61717,4.021 1843,526.9494,194.87057,25.863708,67.5444,3.76 1843,452.89807,219.6051,27.574371,49.314636,3.722 1843,2.6274676,-16.584612,16.840488,39.952526,3.641 1843,598.1165,154.50597,36.863586,91.36009,3.613 1843,-8.515788,5.6165695,38.52697,108.304825,3.597 1843,613.56165,148.81892,34.99414,97.23418,3.594 1843,164.46362,215.30544,38.12668,74.40044,3.584 1843,426.4807,223.2724,19.889954,35.468872,3.553 1843,508.00104,-3.3798018,17.794983,37.076603,3.548 1843,2.3506188,489.91226,19.22138,41.542816,3.529 1843,160.94489,249.72255,21.162827,30.95317,3.517 1843,619.47284,-17.860651,16.973206,44.131203,3.508 1843,538.7878,-16.30364,16.804688,37.842213,3.451 1843,597.0828,192.34674,38.861633,98.81714,3.447 1843,522.7389,-16.447462,16.87384,38.243614,3.432 1843,548.5387,185.33624,38.50421,76.68753,3.428 1843,611.9502,248.16238,38.23523,113.467865,3.402 1843,133.2586,227.60939,38.535553,83.02351,3.391 1843,108.082016,206.3083,31.53685,55.750656,3.382 1843,1.6849482,205.68742,21.351795,52.960373,3.323 1843,565.1678,183.04254,39.243958,78.884155,3.322 1843,12.586538,-17.074856,56.71853,125.19934,3.31 1843,291.95535,227.4958,17.57077,32.524185,3.289 1843,213.6253,210.55334,36.385986,76.21268,3.279 1843,-8.021155,169.22188,38.506527,98.93248,3.261 1843,11.887647,234.6204,31.981525,66.46843,3.257 1843,533.8831,186.29976,38.546936,74.54338,3.256 1843,618.217,490.1299,21.305237,43.16922,3.255 1843,506.87347,-16.299099,16.7854,38.104046,3.251 1843,523.75867,-4.086939,18.533203,37.919884,3.245 1843,457.15247,-3.3978615,22.307404,39.84665,3.239 1843,284.18277,226.43243,16.90155,31.691437,3.235 1843,428.17743,-10.683256,32.747253,68.38977,3.232 1843,539.90027,-4.227337,18.215515,38.12721,3.228 1843,-10.973282,51.26871,29.276901,78.98978,3.199 1843,441.30374,-19.52344,19.68689,43.08396,3.183 1843,149.61598,200.26242,37.65567,82.24634,3.179 1843,197.32103,211.6908,36.481125,74.736725,3.175 1843,581.98584,177.73647,37.918213,83.06529,3.166 1843,124.11684,251.3241,17.482666,29.54303,3.156 1843,491.99988,-4.666356,18.029877,37.798462,3.125 1843,459.0999,-15.70516,33.445923,64.61943,3.122 1843,35.97548,204.51776,32.747963,62.64801,3.107 1843,444.04086,235.5585,18.760468,35.29019,3.102 1843,518.3202,-33.182884,28.070923,71.52175,3.1 1843,546.8573,413.90152,83.255554,166.46054,3.096 1843,420.1674,-36.517044,30.499268,70.06669,3.084 1843,478.36716,-34.11004,28.369934,70.77655,3.076 1843,181.30083,213.84377,37.340927,74.01866,3.068 1843,523.2458,197.21867,19.535828,38.77942,3.063 1843,442.01477,-15.276663,35.335846,64.14594,3.061 1844,-11.195354,-32.33221,29.801918,72.51649,6.715 1844,489.01318,212.85497,30.24945,59.29573,6.215 1844,-5.8901224,-17.449913,17.755394,43.147823,6.131 1844,-6.2186995,488.7569,18.80853,43.0047,6.035 1844,-12.516971,477.0099,30.89877,63.718018,5.652 1844,627.34735,-18.232437,16.94049,46.852123,5.49 1844,610.5568,-48.255173,42.120117,99.97594,5.324 1844,612.8074,454.9637,39.813965,107.16739,5.308 1844,-17.101852,-61.57528,56.32961,142.8331,5.208 1844,-72.371635,265.99457,200.27353,461.69415,5.148 1844,583.10254,411.8698,71.617004,176.25385,5.082 1844,-21.956135,402.10132,79.643036,175.5022,4.882 1844,626.5736,488.2367,21.008545,45.229492,4.877 1844,536.0529,310.3935,143.9798,342.53217,4.827 1844,490.04883,-181.71846,234.91394,425.22867,4.821 1844,586.6027,-101.29489,74.28754,235.43419,4.566 1844,493.52606,227.28156,237.29669,515.3311,4.552 1844,-37.13592,-125.11135,117.61928,273.92636,4.361 1844,131.48943,237.46623,20.564545,34.875412,4.298 1844,-70.25315,-188.82574,210.41489,454.92242,4.235 1844,484.972,-33.635033,29.40448,69.738976,4.142 1844,444.44934,-15.450254,31.156586,66.7349,4.121 1844,569.9622,194.43307,21.51117,36.127808,4.101 1844,561.31036,195.98323,23.575195,37.684006,4.066 1844,599.7001,181.71408,35.976135,95.236206,4.02 1844,143.8014,242.44478,22.047974,31.609665,3.985 1844,433.9718,-16.505852,18.349396,43.11804,3.893 1844,441.66592,-17.172901,18.809875,43.34248,3.872 1844,613.70123,178.16995,34.7547,101.95627,3.867 1844,453.7639,-33.758545,29.05194,75.713165,3.864 1844,565.7845,184.37827,38.76764,77.30768,3.817 1844,458.2248,-17.84389,18.607452,43.64635,3.794 1844,2.6148415,-15.199486,17.057255,39.039047,3.788 1844,436.92328,-32.62936,29.143799,77.29586,3.767 1844,582.8254,181.35254,37.034973,81.48001,3.766 1844,1.6266525,182.03822,22.273537,52.260605,3.765 1844,-9.08607,-5.8420563,39.44921,100.8253,3.748 1844,473.5132,-19.304098,19.12674,44.793663,3.724 1844,19.731638,188.92232,31.924597,62.306427,3.689 1844,554.1833,191.83138,20.618103,37.761642,3.672 1844,450.06485,214.9553,20.808289,38.92993,3.649 1844,460.92255,-16.557837,31.193176,64.089226,3.643 1844,227.01923,216.63278,19.604279,35.174255,3.629 1844,62.60353,187.33319,25.438599,45.15338,3.607 1844,105.796875,220.4508,21.318207,31.466202,3.59 1844,469.32196,-33.351105,29.634613,73.10139,3.574 1844,490.05627,-20.016342,19.062378,44.0236,3.57 1844,2.45115,490.3669,19.321503,41.689606,3.548 1844,626.48535,183.01187,17.279541,47.638428,3.541 1844,35.971672,186.65994,32.79606,63.706314,3.538 1844,450.32108,-16.932964,18.500458,42.3997,3.535 1844,90.015305,208.21654,34.32749,50.851547,3.509 1844,3.7893486,-20.610271,49.579,132.84071,3.475 1844,-5.6851044,1.6268024,18.296951,43.652054,3.463 1844,465.59555,-17.56471,19.165527,42.677464,3.433 1844,422.03366,-34.251087,29.050903,75.620476,3.43 1844,501.9126,211.30096,29.681152,58.633545,3.424 1844,620.0605,-4.8119545,17.5047,40.688007,3.42 1844,-5.231615,171.06827,18.506186,43.143097,3.416 1844,612.0874,263.53046,39.178955,113.706635,3.364 1844,5.4171314,188.11765,27.760008,72.987274,3.342 1844,549.9394,183.82376,38.920288,75.7233,3.308 1844,-10.504219,37.772263,29.015465,74.76822,3.294 1844,292.09283,226.57364,17.450165,33.293365,3.288 1844,65.64405,191.1745,33.80474,60.40059,3.269 1844,234.92311,220.6918,18.213028,34.96469,3.233 1844,498.73715,-19.3381,18.25235,42.03012,3.211 1844,-5.3531413,211.52185,17.388626,44.944458,3.21 1844,457.80884,198.22403,20.522736,39.88452,3.209 1844,612.4834,218.22253,37.821106,108.60217,3.196 1844,-1.3095379,-16.823301,27.638714,70.22274,3.188 1844,132.83023,204.20299,38.28871,76.00685,3.184 1844,50.88993,181.32698,32.540558,62.340073,3.178 1844,502.14905,-32.79791,28.90326,66.51118,3.178 1844,547.1207,210.03467,19.685852,42.651993,3.168 1844,481.77057,-17.943546,19.083923,42.959652,3.163 1844,618.4687,491.03125,20.846436,41.510864,3.159 1844,9.739103,-90.01584,73.603745,207.12708,3.15 1844,50.780216,208.67157,33.194958,63.062683,3.147 1844,-8.705572,259.5393,38.099068,106.539215,3.144 1844,546.9852,414.46982,83.0683,166.01694,3.132 1844,-14.29081,147.96411,47.832603,142.44928,3.125 1844,572.3208,-3.240491,17.578735,36.58125,3.106 1844,-9.903187,164.81143,30.021929,70.68884,3.098 1845,-11.130638,-31.88053,29.456028,72.510864,7.021 1845,-5.634019,-16.575405,17.68737,42.386574,6.663 1845,-6.4396644,489.11273,19.168283,42.54962,6.086 1845,627.463,-17.47189,16.752197,45.724777,5.846 1845,-12.563767,476.99118,31.198215,63.286774,5.644 1845,623.31635,-33.93553,26.1828,75.6402,5.639 1845,484.22046,199.67136,30.082458,61.84659,5.296 1845,-17.207333,-61.796967,56.62912,142.58661,5.223 1845,546.25085,216.80228,32.264404,70.77701,5.193 1845,-72.29676,266.1894,200.08655,461.81476,5.115 1845,583.03033,411.746,71.670654,176.26645,5.011 1845,613.02234,454.42017,39.51703,107.36194,4.983 1845,-21.863453,402.2923,79.45169,175.41925,4.883 1845,536.0078,310.2232,143.89056,342.76923,4.877 1845,602.7924,-57.038994,53.52832,134.82176,4.857 1845,490.20428,-181.79082,234.40216,425.27972,4.731 1845,626.45575,487.5896,20.85492,46.54602,4.688 1845,586.3982,-101.603745,74.75043,234.81503,4.567 1845,493.54913,226.99347,237.46368,515.4068,4.542 1845,594.213,-45.86882,44.712463,96.45746,4.483 1845,2.6654923,-14.132658,16.857124,38.67596,4.38 1845,42.88701,183.2516,31.749992,58.773026,4.323 1845,-37.61511,-124.280846,117.73749,273.9445,4.289 1845,499.93567,196.33647,39.931152,78.81798,4.261 1845,-5.2976713,1.6245422,17.994781,42.753002,4.202 1845,-70.096275,-189.12537,210.56973,455.30096,4.148 1845,489.26407,227.6898,22.190216,38.934708,4.139 1845,290.89185,238.56082,18.782135,34.798096,4.131 1845,-9.091162,-5.422516,39.512436,99.009995,4.098 1845,283.38864,237.33354,19.050049,35.406204,4.076 1845,19.44834,175.70822,33.21425,67.604324,4.063 1845,561.5299,195.3929,32.32776,67.9153,3.967 1845,-6.234612,216.00058,17.577078,39.731857,3.957 1845,297.92386,237.02151,19.518036,31.39325,3.851 1845,582.82605,193.53705,37.651672,86.50931,3.837 1845,540.3136,201.62938,50.92456,106.586685,3.834 1845,599.1372,186.47787,35.556946,93.61316,3.793 1845,620.1161,-17.060175,16.030151,41.783108,3.776 1845,-5.5931387,40.69787,16.920925,42.043846,3.733 1845,516.93567,196.78198,40.50934,79.69556,3.693 1845,12.577062,174.71773,53.980015,108.189285,3.608 1845,613.9446,146.54123,34.560364,104.20004,3.583 1845,470.57477,-19.390385,28.963074,71.997375,3.525 1845,-5.5352535,231.46124,17.01064,41.6734,3.51 1845,474.2308,-17.94085,17.727203,43.427803,3.502 1845,286.62048,231.7965,26.685822,58.412125,3.487 1845,2.030387,489.9762,20.051636,42.292725,3.442 1845,226.01663,224.03268,19.379654,32.573547,3.405 1845,-6.10787,191.46367,19.143492,45.112625,3.397 1845,121.20072,238.0455,20.89196,37.194763,3.384 1845,-13.956688,156.04724,49.018993,135.5503,3.384 1845,466.82227,-17.456211,17.324585,41.8133,3.368 1845,246.03355,226.81013,29.103622,58.131027,3.358 1845,-5.2235947,57.118202,17.029173,42.04122,3.356 1845,-9.960805,86.42268,39.390186,104.71591,3.354 1845,567.01605,196.16234,22.135315,42.621567,3.327 1845,1.8264174,-38.28808,42.94677,98.5174,3.316 1845,613.61,193.56299,35.11505,101.68707,3.305 1845,483.73776,215.49377,40.900665,77.617096,3.303 1845,490.5521,-17.619907,17.731415,42.55678,3.296 1845,-5.7110267,170.17014,17.928577,42.764862,3.285 1845,-1.7638993,-17.10457,28.51184,67.93234,3.284 1845,-5.1274705,72.0711,17.837572,44.78814,3.275 1845,4.7007713,195.68988,38.75123,96.55463,3.258 1845,549.6331,191.29723,30.811157,58.07242,3.231 1845,580.5735,226.05093,40.68866,88.89783,3.22 1845,331.3943,206.50826,16.522766,28.554642,3.173 1845,275.54648,233.48404,18.917877,33.884796,3.161 1845,197.827,211.41733,35.78534,75.61282,3.159 1845,-11.520438,164.78282,31.280537,70.47334,3.159 1845,-8.50185,226.48889,37.97975,108.81824,3.123 1845,485.12756,-5.716213,27.778687,64.50684,3.123 1845,324.0761,207.85245,15.961121,29.341095,3.111 1845,10.130043,-89.23669,72.86727,206.42563,3.08 1846,627.4794,-16.896467,16.967407,44.962296,6.456 1846,-11.052623,-31.592955,29.345448,71.28606,5.954 1846,-5.7815876,-16.923338,17.656898,43.122078,5.809 1846,623.0872,-33.556442,26.302917,74.907295,5.758 1846,304.9161,246.89978,21.55185,38.321167,5.738 1846,-8.834772,464.09476,37.77732,93.2233,5.613 1846,-6.3157277,489.5404,18.86287,41.68982,5.59 1846,297.47766,248.36298,20.867432,35.85669,5.224 1846,-72.15639,266.47855,200.06165,461.6616,5.157 1846,289.87817,248.52036,20.52005,34.307373,5.142 1846,35.191704,183.20554,30.91375,59.68225,5.139 1846,583.11664,412.09323,71.54248,175.83084,5.111 1846,-17.0348,-63.187843,55.975105,143.3984,5.103 1846,-21.847984,402.2031,79.53999,175.43149,4.901 1846,547.8806,225.99615,29.305603,65.206665,4.835 1846,612.97345,454.7426,39.57013,107.48859,4.794 1846,603.1352,-56.66627,52.990234,136.46254,4.734 1846,626.695,488.26727,20.733643,45.88611,4.713 1846,536.1157,310.536,143.54541,342.34485,4.695 1846,586.0752,-99.90207,74.96881,233.19254,4.676 1846,532.4616,-182.63266,148.91583,422.95108,4.567 1846,262.3247,239.34038,26.18219,54.392532,4.469 1846,-12.608195,196.7518,30.382504,70.03534,4.44 1846,493.56152,226.76697,237.59705,515.6252,4.418 1846,-37.113842,-126.289085,116.97458,276.061,4.346 1846,273.9219,246.076,20.168915,36.71257,4.313 1846,-70.09151,-188.67332,210.44658,454.5103,4.251 1846,3.8349557,193.18253,31.358507,69.127045,4.221 1846,-9.050808,-6.5733147,39.107666,100.608246,4.216 1846,-6.0458517,229.27286,17.897873,44.416718,4.071 1846,19.228987,185.96396,34.92472,64.14577,3.943 1846,312.83618,246.16852,21.19339,37.173157,3.936 1846,2.9199004,-15.271246,16.767675,40.727245,3.801 1846,-6.7376337,211.64198,19.34774,45.207138,3.79 1846,620.3352,-1.174345,16.729004,35.656784,3.778 1846,-13.544932,163.42926,49.237385,136.60748,3.714 1846,248.17786,233.52722,27.507263,63.006897,3.682 1846,597.3957,162.72456,37.8714,85.41226,3.603 1846,594.41003,-46.454376,44.641846,98.29598,3.57 1846,541.94714,190.5233,52.303284,115.17949,3.518 1846,293.89868,245.96538,27.91269,60.13655,3.481 1846,47.913536,189.24223,23.509056,46.017075,3.475 1846,-4.9618053,1.0174255,16.733595,42.078617,3.398 1846,114.052956,237.62488,20.141716,38.37964,3.388 1846,580.7789,193.01688,39.216736,99.19656,3.355 1846,2.034855,-39.56327,42.439426,98.64523,3.345 1846,198.47443,202.72778,36.321686,78.10205,3.337 1846,515.63605,215.09192,41.301147,81.170135,3.31 1846,2.2193193,491.38623,19.643555,40.547424,3.302 1846,118.321625,234.48189,27.615616,54.5511,3.29 1846,612.98303,150.37,35.991577,97.41205,3.281 1846,11.269304,164.84158,53.860435,116.11972,3.269 1846,532.8853,215.63889,32.450134,62.87088,3.254 1846,0.24155617,184.48138,24.831598,53.329773,3.248 1846,613.47,188.88602,36.32672,108.94525,3.206 1846,598.142,189.9964,37.95105,104.28595,3.2 1846,150.35574,204.62567,28.881027,60.078064,3.168 1846,546.8352,415.0388,83.32843,165.06131,3.167 1846,3.5702717,162.43097,31.657125,69.725296,3.15 1846,147.90143,209.4191,18.862625,35.516235,3.122 1846,215.2964,212.85294,34.29413,80.516205,3.122 1846,498.9581,213.48141,41.05954,84.30197,3.12 1846,-4.903937,47.67767,16.779469,44.030552,3.109 1846,10.243008,-91.02927,73.01428,208.27675,3.09 1846,573.50867,-20.334778,53.3916,129.17477,3.086 1846,490.64102,-15.769383,16.697235,41.914196,3.079 1846,182.99786,211.91058,34.329407,79.80029,3.078 1846,-9.92391,105.38901,40.45433,102.78235,3.076 1846,606.41455,-33.43404,26.891357,69.89291,3.068 1847,-10.830592,-31.639992,29.114124,71.998405,6.949 1847,-5.768241,-17.32243,17.7557,43.50342,6.947 1847,622.65283,-33.42678,26.637695,75.008965,6.108 1847,-12.025547,477.0244,30.60144,63.440735,5.862 1847,-6.1614723,488.7665,18.779488,42.817535,5.539 1847,627.3214,-16.926632,16.561523,44.78702,5.449 1847,602.5573,-55.67293,53.83783,135.86946,5.381 1847,-17.139914,-63.463657,55.832306,143.50345,5.331 1847,-72.139496,266.45264,199.9213,461.37476,5.116 1847,583.1988,412.1517,71.3916,175.96017,5.073 1847,621.7128,477.2937,29.181091,67.35498,4.995 1847,-21.722946,402.6292,79.325165,174.92236,4.941 1847,586.14655,-97.78734,74.261536,230.64813,4.925 1847,536.0837,309.83536,143.95856,343.18674,4.819 1847,599.3445,185.83879,35.844604,99.059525,4.599 1847,532.6594,-182.19904,148.87714,422.6474,4.584 1847,619.76086,-16.874598,17.069153,42.151253,4.471 1847,493.29532,226.76517,237.62271,515.5167,4.459 1847,305.2998,260.06274,20.982788,34.20407,4.431 1847,311.94485,259.43686,23.391632,42.618835,4.414 1847,2.9375978,-15.301192,16.89187,41.350414,4.397 1847,-37.105915,-126.18268,117.02493,274.89413,4.352 1847,594.3649,-44.033096,45.046814,96.60475,4.274 1847,297.2313,260.28506,21.547821,36.166656,4.257 1847,602.35425,193.5346,19.653992,33.526367,4.246 1847,-70.14684,-188.92393,210.79947,455.232,4.242 1847,269.6702,254.23189,28.011658,53.068375,4.241 1847,371.31952,204.61958,19.150513,40.315918,4.222 1847,186.09592,223.45961,31.556396,53.36476,4.189 1847,510.1098,-34.84362,27.730835,76.62816,4.151 1847,219.45728,229.71695,20.545639,35.611908,4.145 1847,-9.312674,-6.7934036,39.48802,101.18591,4.078 1847,248.06734,242.7016,28.154007,61.645996,4.034 1847,282.24994,258.30313,21.092896,32.32141,4.013 1847,288.97098,259.55084,21.92575,36.073853,3.964 1847,1.133213,180.70784,28.281794,70.04518,3.913 1847,198.70706,213.4681,35.08139,75.758835,3.888 1847,-5.0730443,230.91386,17.19065,42.18248,3.882 1847,565.6985,195.97954,40.099182,92.386,3.864 1847,235.04936,217.77887,17.212479,33.651474,3.858 1847,574.1216,-17.091843,52.722412,121.179306,3.765 1847,-10.947833,170.57028,30.845314,70.43048,3.751 1847,226.08673,224.573,19.492874,35.13141,3.741 1847,-11.751765,200.44847,30.335747,67.00209,3.735 1847,484.75067,203.28917,27.347961,61.257095,3.727 1847,198.82286,227.14336,23.470383,40.02974,3.69 1847,42.83207,202.39151,33.33898,53.88678,3.676 1847,385.77396,204.49934,19.41867,39.717804,3.672 1847,619.132,254.38408,20.665466,55.66829,3.658 1847,-5.872154,214.2234,18.025017,42.62947,3.642 1847,614.9149,-19.34707,27.35736,69.15949,3.622 1847,581.5221,193.42592,39.003296,96.09575,3.608 1847,529.9374,-18.113129,18.67456,44.267975,3.602 1847,215.13261,213.49194,35.369827,78.4816,3.598 1847,612.9302,-2.5668297,36.541138,113.389984,3.553 1847,317.0601,252.39622,27.161957,56.392838,3.535 1847,-6.2629104,191.62155,19.44962,45.873596,3.53 1847,2.2375798,-40.234955,42.263733,98.49187,3.502 1847,-4.9012585,0.66581535,16.460655,42.08457,3.482 1847,612.8306,189.99622,35.160156,108.44214,3.478 1847,514.0026,-20.369692,18.930786,46.119488,3.399 1847,617.4783,197.20064,20.078918,50.66121,3.397 1847,622.3992,184.85262,27.447632,74.91429,3.381 1847,2.095087,490.30072,19.982924,41.828857,3.356 1847,209.94484,228.96802,21.732193,36.583893,3.323 1847,538.2501,-17.970032,17.985535,43.234215,3.283 1847,521.9213,-20.383596,18.805603,46.894665,3.246 1847,266.303,255.10797,20.562592,36.562744,3.238 1847,505.8407,-21.68449,18.999329,46.399227,3.234 1847,74.11139,248.00908,20.593582,35.21254,3.219 1847,124.48094,207.64697,30.218842,58.248566,3.218 1847,227.49925,211.77843,16.619873,34.481537,3.216 1847,525.7062,-34.526573,28.16809,76.91466,3.201 1847,59.310272,222.24779,33.591812,57.100998,3.201 1847,493.54587,-20.051561,31.613434,68.251755,3.19 1847,546.612,-15.779341,17.080627,41.10431,3.185 1847,410.86432,213.71696,17.546173,34.735413,3.165 1847,-5.726529,170.89749,18.732208,43.63138,3.165 1847,-13.6898365,152.76761,48.78347,138.58444,3.151 1848,-11.039091,-31.117926,29.514507,69.751144,7.593 1848,-6.0171986,-17.564388,18.230558,43.04297,7.415 1848,610.38434,-46.27373,41.736755,97.254234,5.814 1848,-6.0854855,489.50803,18.698757,41.77585,5.733 1848,627.07117,-17.658073,17.307373,45.35951,5.638 1848,-8.675005,464.90778,37.544502,91.98541,5.635 1848,-17.246157,-63.629894,56.015953,143.21686,5.259 1848,583.11755,411.73657,71.44141,176.52063,5.166 1848,-72.17792,266.79333,200.09074,461.6012,5.152 1848,626.5187,488.15036,20.718811,45.638947,5.085 1848,613.02844,455.1079,39.246277,106.90143,5.002 1848,297.70374,272.1686,20.688843,32.46402,4.968 1848,-21.691727,402.7312,79.25937,175.24359,4.923 1848,586.0307,-97.58937,73.93689,229.6043,4.845 1848,311.71155,272.54523,23.689789,42.381714,4.807 1848,536.42395,310.3318,143.09229,342.41235,4.781 1848,178.69673,219.64288,31.027924,56.73642,4.761 1848,532.4157,-182.0034,148.80243,422.8277,4.488 1848,-37.2717,-125.53748,117.11339,275.32956,4.391 1848,493.2986,226.64688,237.59402,515.854,4.382 1848,4.61413,193.00337,31.133379,65.97984,4.292 1848,-70.0363,-189.35512,210.56134,455.16663,4.277 1848,2.6461391,-15.594404,17.3885,40.05653,4.275 1848,82.136795,213.61491,20.870064,31.40718,4.214 1848,513.66223,201.16501,22.444092,46.347076,4.193 1848,-9.302454,-6.3806534,39.63394,100.88932,4.104 1848,590.67126,-18.32964,49.37805,124.12416,4.098 1848,-6.0690117,212.54001,18.937004,44.153534,4.082 1848,619.3743,-4.3119984,19.100464,38.358055,3.939 1848,289.643,270.85794,21.197418,33.920837,3.921 1848,317.3329,266.88025,28.732056,54.083496,3.89 1848,426.25018,-11.049427,33.856445,64.784515,3.85 1848,614.8058,-19.406042,27.798584,65.33438,3.777 1848,-5.086884,1.4899483,16.879978,40.955627,3.758 1848,-9.438247,209.49533,38.701534,107.039,3.736 1848,260.61682,265.7073,30.531433,60.02469,3.73 1848,537.86066,-17.2944,17.852417,43.33435,3.721 1848,-12.290194,199.91293,30.629297,67.05606,3.699 1848,598.66693,192.00185,38.085144,103.12871,3.664 1848,345.11273,253.81862,33.58322,65.8654,3.563 1848,581.676,192.7353,39.132202,98.9691,3.515 1848,169.97697,220.27155,24.565186,40.037598,3.5 1848,73.94011,208.98296,21.323196,32.670914,3.484 1848,570.6761,-17.46177,17.809143,41.109234,3.472 1848,305.37653,273.0321,21.044983,34.370575,3.456 1848,167.6254,211.81467,35.42256,80.15604,3.451 1848,578.654,-8.292332,43.41443,93.922455,3.442 1848,2.0363688,-39.814896,42.515747,98.234116,3.396 1848,277.761,266.63586,29.404724,50.946747,3.396 1848,421.43005,-32.12972,29.700653,76.51196,3.377 1848,10.611689,169.7307,54.463524,115.43477,3.374 1848,196.82697,204.32567,38.629486,78.238144,3.363 1848,113.46627,254.48407,21.254112,31.846558,3.358 1848,4.5287886,202.53275,39.410847,105.79477,3.348 1848,-13.254435,151.5191,48.37568,137.09003,3.343 1848,612.72144,-3.8398094,38.058044,108.89931,3.324 1848,2.1539383,490.70956,19.597582,40.678864,3.281 1848,613.39954,188.67471,36.30896,110.09885,3.277 1848,1.3492429,200.91405,23.32831,48.457397,3.268 1848,150.0217,208.89449,30.177155,64.15526,3.252 1848,5.4106045,467.06256,38.216667,97.684326,3.242 1848,554.20294,-16.627714,18.085693,42.512146,3.237 1848,425.4567,-14.261375,18.289764,40.76732,3.216 1848,547.06415,414.7264,83.01416,166.06155,3.214 1848,-6.181261,190.60638,19.282932,45.761337,3.21 1848,562.3963,-16.415638,17.872742,41.90007,3.2 1848,418.00015,-14.074503,18.013367,39.698395,3.189 1848,433.53485,-13.46443,18.0719,39.58817,3.181 1848,-9.106349,86.30982,39.0379,104.19314,3.177 1848,246.05247,257.9927,30.399063,64.63376,3.169 1848,-5.2071614,119.25556,16.742855,41.161797,3.161 1848,618.29333,490.4947,20.706055,42.595825,3.158 1848,560.82074,-40.03052,46.322937,91.06855,3.146 1848,419.4775,211.56473,18.035675,38.03145,3.146 1848,282.84482,269.06442,19.806519,30.29953,3.129 1848,161.08829,218.50919,24.329895,40.684174,3.087 1848,-8.731385,261.90988,37.8225,102.7616,3.087 1848,332.81726,260.27753,31.496216,58.220764,3.078 1848,10.042364,-91.30692,73.21374,209.08974,3.063 1848,-5.474147,246.7784,17.805809,43.29393,3.052 1848,545.94257,-15.80556,18.396423,41.788025,3.05 1848,100.87788,227.2962,38.999886,89.15802,3.044 1848,530.3595,-15.540855,17.7146,41.099247,3.032 1848,116.48477,220.28436,36.41983,84.09369,3.03 1849,-10.849295,-32.06219,29.114717,71.10791,7.631 1849,-5.615287,-19.11912,17.798897,44.193253,7.306 1849,611.4094,-49.618,40.703613,105.96216,6.21 1849,-6.057775,489.47964,18.632162,41.486725,6.014 1849,-11.959958,478.3158,30.316998,62.805054,5.668 1849,627.46124,-18.42866,16.843872,47.592113,5.337 1849,-17.801573,-63.002327,56.59346,141.24191,5.25 1849,585.7684,-97.277405,74.27307,229.49944,5.189 1849,-72.604416,266.70184,200.63495,461.19598,5.094 1849,626.5107,487.91373,20.814453,46.154205,5.072 1849,612.9623,454.27078,39.49353,107.71182,4.946 1849,-21.695068,402.57538,79.31387,175.1972,4.873 1849,583.24615,411.72662,71.70404,176.84467,4.821 1849,536.35474,310.9331,142.51636,340.8407,4.648 1849,532.6431,-181.78827,149.14124,421.5183,4.51 1849,-37.536983,-125.73463,117.3116,275.79776,4.347 1849,-70.20729,-189.76353,210.95007,455.92767,4.336 1849,493.54892,228.36713,237.50748,514.8601,4.298 1849,-9.5990095,-6.640068,40.00489,100.82205,4.281 1849,165.77045,203.17667,37.55336,79.12308,4.147 1849,168.85541,212.16505,21.429504,41.37996,4.078 1849,442.6147,-17.045227,17.400757,40.080456,3.999 1849,318.76263,282.55762,28.970032,56.11377,3.943 1849,2.94034,-17.481514,16.877434,42.034348,3.886 1849,589.5206,-56.802376,52.730103,139.09337,3.796 1849,475.6261,-2.7027206,18.086426,34.94584,3.786 1849,259.65717,279.99948,31.642456,60.65088,3.737 1849,540.8694,213.13153,54.219543,117.713196,3.724 1849,501.02664,-14.378017,31.083832,62.380455,3.698 1849,33.5992,200.42444,34.661694,52.944107,3.685 1849,453.89526,-32.81651,28.985413,69.60565,3.685 1849,-5.0588703,154.15681,17.484324,43.9803,3.679 1849,-13.327248,149.28119,47.30954,141.02936,3.677 1849,450.18152,-16.019873,17.942902,38.76919,3.677 1849,5.090288,171.0301,29.46189,75.78859,3.595 1849,506.53806,-13.864611,17.197052,36.747448,3.578 1849,386.39508,196.23238,19.880493,48.447815,3.549 1849,522.4426,3.4757233,21.072144,43.099,3.546 1849,491.56918,-2.205823,17.963043,35.343178,3.506 1849,619.9586,-18.842566,16.870361,44.31765,3.502 1849,203.42043,242.12927,18.437057,31.742249,3.474 1849,2.1206546,-39.10903,42.727787,96.93382,3.464 1849,458.003,-16.98566,17.890106,39.40441,3.458 1849,297.57285,286.42688,20.092072,34.69742,3.455 1849,539.7108,-19.241913,55.159058,124.748436,3.435 1849,514.6697,-12.343265,16.934814,36.001583,3.424 1849,576.88635,202.9281,47.290527,124.74957,3.417 1849,490.8655,-15.355908,16.821808,37.268887,3.394 1849,497.63647,278.17947,35.216064,74.90149,3.392 1849,4.195907,206.31453,39.468204,101.15282,3.371 1849,498.95605,-13.833247,17.024841,36.49826,3.371 1849,-4.781228,37.896072,17.383343,47.058105,3.371 1849,613.0698,0.7590561,35.777527,104.32499,3.37 1849,17.87125,177.36497,41.767952,81.125015,3.365 1849,181.2232,201.69034,37.14142,79.59485,3.359 1849,445.05145,-16.573563,30.559265,60.155495,3.355 1849,434.4461,-15.793783,17.769592,38.884228,3.345 1849,524.489,-10.780249,30.676147,61.42324,3.335 1849,466.9325,-3.1811447,18.796509,36.02585,3.33 1849,522.73157,-12.6511135,16.857178,36.570404,3.321 1849,410.14276,-15.13184,17.38855,38.517914,3.314 1849,474.6635,-16.163794,17.017029,37.54354,3.312 1849,510.13287,-1.5147705,28.724915,57.366253,3.298 1849,418.2471,-14.464772,17.416168,37.22418,3.279 1849,361.1172,271.12628,34.620056,65.80716,3.276 1849,-8.854693,87.20842,38.41291,103.40253,3.272 1849,426.36316,-16.234114,17.404694,38.82325,3.27 1849,-4.73306,201.79153,18.481705,47.337555,3.255 1849,289.08475,286.77966,21.431396,34.604706,3.246 1849,-5.456375,230.60825,17.857738,43.063538,3.241 1849,429.85516,-16.735746,30.210785,63.779076,3.238 1849,277.48468,282.36102,30.135498,49.0506,3.224 1849,-8.2192745,228.34064,38.101913,105.15747,3.222 1849,28.993958,171.07233,52.967216,112.38385,3.219 1849,394.50977,-14.804024,17.067871,38.781525,3.219 1849,549.5266,-16.765461,30.478882,67.15741,3.206 1849,150.35556,199.20514,37.59088,80.9527,3.202 1849,469.9215,-33.565308,29.086609,69.83839,3.199 1849,412.2255,-14.384264,31.064606,62.704224,3.159 1849,438.5533,-34.150295,28.676605,72.2018,3.156 1849,-10.084314,189.421,29.155298,70.30165,3.15 1849,402.3549,-13.953831,17.132446,38.028557,3.143 1849,483.8884,-2.5981178,17.662445,35.760677,3.14 1849,75.11576,211.82527,20.243752,35.716446,3.135 1849,474.57245,241.58896,60.092957,119.19412,3.13 1849,573.066,-21.643814,52.572815,122.487465,3.125 1849,507.1231,1.8273602,19.810608,41.955177,3.105 1849,460.9439,-15.304443,30.50888,60.107067,3.1 1849,52.532574,178.82443,41.472797,80.977936,3.094 1849,554.8742,-15.532573,16.595886,39.903133,3.089 1849,-5.4922285,247.69846,17.779388,41.547913,3.07 1849,94.48841,233.6697,28.95932,60.725327,3.065 1849,538.6632,-13.441236,16.772278,38.1389,3.054 1849,78.824425,201.73877,29.949928,61.52231,3.054 1849,485.7281,-15.9477625,30.375793,61.567257,3.037 1850,1.0777044,190.14427,21.468815,51.979477,7.946 1850,-5.7121067,-18.859825,17.812847,43.910015,7.099 1850,-11.045801,-31.79478,29.549656,70.30167,6.995 1850,610.8145,-48.486748,41.2464,101.43478,6.062 1850,627.1489,-18.178032,17.31311,47.693752,5.653 1850,-8.830135,464.45084,37.590855,92.559784,5.359 1850,453.28876,272.31406,26.024567,67.47751,5.282 1850,-17.486006,-62.962322,56.150307,141.99294,5.164 1850,586.62244,-98.52076,73.52612,229.62909,5.037 1850,-72.61774,266.66986,200.55705,461.38654,5.036 1850,583.19714,412.17642,71.689026,176.05014,5.009 1850,-6.2754545,489.5011,18.84617,42.223877,5.009 1850,532.5709,-182.44377,149.49207,423.0152,4.986 1850,626.46136,488.37924,20.861328,45.780853,4.941 1850,613.0347,455.29312,39.292175,106.69223,4.888 1850,615.5776,-19.519268,26.045837,75.09892,4.858 1850,-21.810513,402.02777,79.375015,175.29999,4.82 1850,536.9429,310.4144,142.54895,340.25638,4.814 1850,-9.102731,-6.326187,39.582607,100.712685,4.466 1850,-70.25565,-189.7385,211.04822,455.33517,4.398 1850,494.08966,226.77335,236.90637,514.6565,4.37 1850,-1.8139207,200.18787,27.62456,66.79877,4.3 1850,-37.788776,-126.16957,117.211044,278.2665,4.248 1850,4.2982473,198.33316,36.430504,86.845215,4.133 1850,113.473015,208.20975,20.120247,40.098923,4.129 1850,16.50494,202.51144,21.441898,37.91501,4.112 1850,405.86685,-34.146023,29.282043,73.52087,4.06 1850,409.2783,-20.248285,20.309692,44.551105,3.989 1850,539.8908,265.23563,30.781738,72.11496,3.929 1850,394.6269,206.7361,19.99054,38.66263,3.919 1850,619.7029,-2.9109535,17.766052,40.36522,3.907 1850,101.50215,195.4334,30.471481,65.23912,3.79 1850,-14.005451,168.09099,48.886967,131.15266,3.754 1850,417.17798,-20.225054,20.203491,43.793396,3.742 1850,122.57152,197.8904,18.935577,38.471786,3.741 1850,465.12054,-44.606445,45.43759,93.49438,3.731 1850,490.86642,-44.295624,58.840607,133.34512,3.719 1850,296.61722,315.2892,22.770111,42.213287,3.702 1850,421.1824,-34.49175,29.784882,68.870735,3.675 1850,2.9599214,-16.723274,16.727041,40.675056,3.648 1850,-9.045162,225.76656,37.896454,104.611984,3.627 1850,24.81886,206.80856,20.749714,35.41417,3.622 1850,574.3383,-24.840042,52.46576,126.80454,3.616 1850,401.7839,-18.4207,19.247772,43.265587,3.614 1850,147.44815,211.92389,20.745499,38.36914,3.601 1850,425.61432,-21.5237,19.343231,44.64199,3.595 1850,457.6866,254.86978,30.784607,73.72247,3.593 1850,89.2395,210.96078,21.059486,40.961334,3.588 1850,5.1160536,181.1839,29.379242,58.843994,3.583 1850,603.01935,-30.178886,52.741028,133.82593,3.557 1850,284.8868,305.35938,30.475739,50.794373,3.555 1850,290.23386,309.42834,18.768036,30.825317,3.549 1850,-4.9158216,201.09317,18.702108,48.74066,3.511 1850,281.3888,313.90466,22.072784,32.94403,3.477 1850,513.18634,-42.689205,45.629333,92.28898,3.476 1850,598.4107,-27.273003,38.541748,95.590775,3.471 1850,553.66345,263.57172,31.863525,69.01285,3.447 1850,80.57324,221.07741,22.272202,40.856247,3.424 1850,534.1155,-34.666718,28.687622,72.34914,3.397 1850,1.9361281,-39.85574,42.804035,98.018196,3.383 1850,394.03717,-17.913206,18.166351,42.655914,3.374 1850,445.7685,242.37247,30.907806,81.81433,3.362 1850,619.5963,11.4291935,18.61377,42.66368,3.356 1850,71.53478,243.05013,28.846397,58.72151,3.345 1850,595.8796,-14.46863,15.765259,36.352894,3.341 1850,389.5617,-17.6343,31.062622,69.66851,3.34 1850,432.74286,-45.083755,45.99646,92.398865,3.312 1850,-9.063349,31.76297,38.646744,111.60664,3.298 1850,445.06943,-60.03802,55.380066,131.83987,3.274 1850,596.8955,0.36111832,16.15741,32.74727,3.266 1850,-4.6021075,170.56554,17.562407,44.15802,3.248 1850,613.2336,204.59494,36.797913,111.48761,3.232 1850,597.89026,204.42099,37.8313,107.29312,3.231 1850,106.20362,215.26782,20.468712,40.77072,3.212 1850,69.45705,207.30096,30.54657,60.55298,3.204 1850,150.4086,210.56323,37.19574,83.100464,3.2 1850,129.61575,200.42859,18.911865,37.418518,3.19 1850,154.57178,208.9248,20.877045,38.536514,3.189 1850,-5.129106,154.74081,17.386568,42.30963,3.186 1850,523.48334,-41.68219,57.73419,134.02472,3.167 1851,-11.129688,-32.078438,29.477339,70.247116,7.226 1851,-5.984727,-19.230164,18.11924,44.03696,6.723 1851,622.5967,-34.069912,26.817505,75.46607,6.323 1851,-6.0626583,489.0346,18.714968,42.12494,6.271 1851,627.14136,-17.873344,17.073853,46.159023,5.889 1851,-12.131287,477.84335,30.633287,63.169037,5.775 1851,-17.758142,-63.22973,56.493156,141.551,5.241 1851,602.3736,-56.3117,53.596497,132.37115,5.233 1851,586.4825,-98.39124,73.68317,231.14438,5.163 1851,532.82825,-182.3904,149.05347,423.55066,5.127 1851,583.09357,412.1758,71.58392,176.0433,5.089 1851,626.4175,487.74847,20.99524,46.426697,5.071 1851,-72.32255,266.98032,200.40302,460.5507,5.037 1851,612.87665,454.67233,39.61969,107.38162,5.035 1851,0.1972866,199.37358,27.468641,71.166214,5.025 1851,-21.72102,402.73465,79.19138,174.84372,4.895 1851,619.50226,-4.938591,19.308838,41.2194,4.859 1851,536.4689,310.55432,142.55054,340.49817,4.671 1851,615.9587,173.18224,25.081665,90.50014,4.608 1851,594.119,-44.951332,44.67743,95.55206,4.535 1851,615.2395,-19.053097,26.875061,68.31534,4.411 1851,493.36017,226.75653,237.45087,515.64813,4.407 1851,-70.46066,-189.17241,211.46338,455.24292,4.399 1851,612.654,201.60933,35.301636,108.85185,4.398 1851,-5.3111963,198.22713,18.5621,47.708313,4.325 1851,-37.874985,-126.43503,117.172554,278.91425,4.218 1851,600.3936,187.48636,35.908752,106.750854,4.188 1851,401.8729,-19.225018,19.297272,44.040028,4.164 1851,-9.468449,-6.514576,39.694035,100.92604,4.124 1851,474.44278,254.21417,32.161774,64.60968,4.1 1851,7.4603424,214.16988,23.180332,44.200546,3.965 1851,5.627302,184.6977,29.44853,66.22238,3.856 1851,-4.926509,173.66052,16.873978,38.58278,3.844 1851,409.51215,-22.038528,19.495483,47.50295,3.804 1851,2.6036906,223.78535,31.566914,73.71034,3.726 1851,588.8203,-14.774045,30.128967,58.151054,3.718 1851,573.8785,-33.48243,29.03418,69.98467,3.669 1851,283.04868,339.3049,32.0112,57.07791,3.668 1851,578.5294,-10.549747,44.397827,98.06993,3.661 1851,2.8502398,-17.532307,17.046108,41.620422,3.581 1851,-9.471265,192.45084,28.370316,71.575165,3.574 1851,556.176,-5.8070917,17.739868,37.044796,3.553 1851,575.5931,180.62079,51.02887,142.8263,3.54 1851,-5.081818,220.78246,18.168139,46.842087,3.5 1851,394.26666,-18.221508,18.120697,42.45882,3.464 1851,-14.340378,156.07153,48.378838,136.80511,3.445 1851,420.99518,-35.201244,29.660522,71.26523,3.442 1851,523.05286,-41.706955,58.250793,129.14017,3.438 1851,594.7666,-5.1204376,19.701294,37.707886,3.432 1851,566.0637,-16.103716,29.46051,60.254738,3.427 1851,-5.2154493,274.69287,17.64891,43.94342,3.423 1851,405.89575,-33.5475,29.429718,74.12939,3.404 1851,100.80219,203.1173,30.078423,65.327255,3.376 1851,596.4657,-13.472881,40.550293,102.76436,3.374 1851,269.03867,329.10672,31.418823,54.667114,3.362 1851,1.9851589,490.58542,20.114243,40.946198,3.328 1851,0.081967115,255.4047,25.557343,70.40585,3.312 1851,296.22443,350.51184,24.171997,37.01407,3.296 1851,2.0437908,-39.54381,42.749916,96.99525,3.295 1851,36.957825,234.71931,29.09018,66.222244,3.294 1851,195.65584,240.90321,30.367554,74.05061,3.27 1851,583.3712,177.42838,36.648376,89.30859,3.26 1851,493.62872,-33.511623,28.379211,67.89476,3.246 1851,586.228,-5.4036503,20.494812,38.063896,3.237 1851,-5.072517,294.9701,16.583567,40.124878,3.225 1851,491.54956,-40.829376,58.324463,128.37367,3.216 1851,3.31286,281.9479,18.108576,41.904846,3.21 1851,-8.776612,50.989624,38.411465,107.84471,3.208 1851,570.8442,-5.6520348,19.528198,38.609943,3.199 1851,279.92212,345.71613,24.735382,37.506683,3.186 1851,5.165968,467.4457,38.338478,96.74509,3.173 1851,490.48764,-15.16962,17.27414,36.498707,3.159 1851,514.20374,-11.385635,44.786865,90.61542,3.157 1851,510.1349,-33.223026,28.216492,66.60069,3.15 1851,546.8029,414.93753,83.38513,165.4689,3.142 1851,548.1843,-5.0297003,17.695862,37.278103,3.116 1851,386.50333,-15.436133,17.390228,39.257656,3.104 1851,612.432,-4.9528656,38.719604,112.079994,3.104 1852,-10.858878,-32.30395,29.860493,72.759315,7.383 1852,281.62042,370.14337,20.920044,41.679993,7.182 1852,-5.6936865,-18.341993,17.893045,44.091854,6.458 1852,626.98254,-18.315018,17.350708,47.395214,5.559 1852,610.4796,-47.629917,41.91089,99.920876,5.512 1852,-6.3179946,489.45798,19.196602,42.163727,5.461 1852,-8.744198,464.97144,37.564552,91.498535,5.46 1852,532.5299,-181.54688,149.32611,422.6118,5.331 1852,296.28137,374.35068,22.682617,37.095276,5.312 1852,269.86737,358.3565,30.327576,55.260376,5.19 1852,586.6438,-98.71896,73.56067,232.28557,5.107 1852,-17.47041,-62.32684,56.690556,140.95584,5.1 1852,-72.35658,266.3314,200.36118,461.40848,5.067 1852,58.280968,217.07584,30.817993,62.948853,5.0 1852,583.2677,411.49487,71.44861,176.62585,4.965 1852,626.29016,487.85123,21.163086,46.150177,4.914 1852,-21.702362,402.83356,79.32837,174.81573,4.881 1852,613.0731,454.4956,39.455933,107.14209,4.877 1852,536.2416,310.86584,142.94165,341.05298,4.665 1852,-70.99333,-189.07133,211.9571,455.06708,4.463 1852,-9.235603,-6.4216995,39.926956,100.48423,4.393 1852,492.96027,225.76343,238.33673,516.41077,4.388 1852,-37.654663,-125.86072,117.59041,276.52866,4.368 1852,267.26477,369.0986,20.456665,40.62979,4.255 1852,-0.25911808,214.50377,22.801804,57.0822,4.195 1852,404.84998,-22.712212,31.369263,66.06802,4.183 1852,73.49242,217.9986,21.610085,41.025238,4.141 1852,-3.9453218,201.36252,17.200935,43.315445,4.114 1852,262.1216,349.56018,28.2594,55.301636,4.021 1852,388.13422,-17.329754,32.711395,65.427826,3.847 1852,615.5254,-20.90821,26.478088,68.997955,3.832 1852,42.821617,232.38075,32.808464,68.63542,3.827 1852,421.08456,-35.19325,29.05832,70.357635,3.816 1852,68.34833,208.54181,39.59246,88.92786,3.723 1852,284.87506,361.6441,28.599274,63.652954,3.704 1852,-11.073972,241.20357,30.582375,68.080185,3.692 1852,55.18978,221.0463,23.93618,40.486908,3.617 1852,540.75507,-21.502583,56.477966,120.71791,3.603 1852,578.33984,-9.324669,44.718445,94.767525,3.586 1852,582.1842,-34.15422,28.633667,71.78794,3.555 1852,393.69843,-18.009975,18.39328,41.77289,3.545 1852,1.756773,-38.62962,42.89022,97.337166,3.541 1852,281.53918,354.4611,19.520508,34.71988,3.538 1852,442.35446,-19.128357,18.482697,40.986656,3.478 1852,462.15015,-33.829037,28.337769,69.269714,3.475 1852,82.215126,217.99304,21.037369,40.51123,3.468 1852,-4.9180875,168.59647,17.699066,43.43216,3.467 1852,613.0923,203.50438,37.11151,110.663284,3.461 1852,-8.420234,48.824272,38.08728,109.19111,3.453 1852,619.11615,-18.702522,17.627869,45.369892,3.416 1852,603.2081,-26.401928,52.989746,135.6213,3.404 1852,437.7552,-33.210846,28.86737,69.24989,3.388 1852,373.589,-16.351772,30.788086,66.71674,3.372 1852,-4.9891214,-0.43529892,18.540886,44.820705,3.359 1852,277.27405,346.73004,28.363892,54.29077,3.352 1852,44.313545,184.70879,54.467697,116.513504,3.345 1852,464.1808,-42.50164,47.147705,93.80906,3.344 1852,2.6202374,-16.25752,17.334064,41.8737,3.343 1852,-6.1570826,137.90388,18.583328,43.278137,3.321 1852,575.0582,163.29529,50.694214,131.74146,3.32 1852,64.69304,215.5719,21.222183,36.31198,3.313 1852,531.403,-17.759687,41.364258,82.72409,3.292 1852,-14.178427,154.72842,48.70536,139.19028,3.289 1852,409.61353,-21.032461,19.968353,45.13291,3.243 1852,506.08667,-17.073265,18.150024,39.583855,3.227 1852,401.51248,-19.244247,19.555695,43.94417,3.227 1852,84.00219,208.8996,40.3937,88.67761,3.217 1852,613.5755,145.87286,35.054565,101.69641,3.214 1852,598.0501,191.43825,38.864136,104.67949,3.21 1852,598.24945,150.24846,36.8161,94.70427,3.197 1852,1.8828368,-16.49134,52.048637,147.90576,3.183 1852,496.56497,-41.986145,46.948334,94.15632,3.181 1852,458.49884,-18.253605,18.099365,40.555515,3.163 1852,513.7719,-10.1992,44.987915,89.932755,3.147 1852,597.6587,-22.283318,39.238037,92.575134,3.144 1853,1.0244584,190.3831,22.013174,52.46086,7.945 1853,-10.945921,-32.3069,29.515972,71.91243,6.729 1853,-5.982366,-19.26388,18.22358,44.731907,6.382 1853,-5.9817142,489.6656,18.62388,41.40509,6.181 1853,-11.846375,478.95248,30.169586,62.90518,5.864 1853,281.18756,374.594,22.296875,39.494934,5.712 1853,610.45245,-47.727165,42.146362,100.83975,5.632 1853,532.5934,-181.58325,149.33826,422.47018,5.415 1853,-17.519304,-62.645607,56.2731,141.43845,5.208 1853,586.7248,-98.599174,73.38983,232.92096,5.097 1853,-72.108604,266.9184,199.82658,460.48273,5.024 1853,583.26953,411.23425,71.4317,176.91351,4.994 1853,621.64905,476.38336,29.116943,68.28815,4.937 1853,-21.713026,402.89563,79.242836,174.72632,4.873 1853,627.0863,-18.97748,17.43219,47.697296,4.861 1853,536.14166,311.19336,142.87384,341.15845,4.671 1853,282.2176,359.13995,19.646942,30.716583,4.625 1853,-70.52965,-189.50934,211.5974,456.0619,4.568 1853,404.8866,-21.932766,31.485016,65.32044,4.539 1853,68.44077,206.6437,39.312363,90.42642,4.41 1853,492.9914,225.53906,238.22394,516.6563,4.355 1853,83.64364,209.56998,40.60923,87.28525,4.326 1853,-37.89095,-125.8973,117.33472,277.4633,4.319 1853,289.15292,379.17047,21.215363,39.690674,4.313 1853,387.56464,-16.214642,33.008026,64.9569,4.21 1853,-9.117739,-5.8631134,39.501926,100.23669,4.205 1853,288.46713,361.70053,19.64383,37.067993,4.087 1853,296.42767,376.47174,22.431396,37.15512,4.032 1853,-4.111353,171.17088,16.96537,41.007034,3.972 1853,-5.0430794,202.06879,19.175198,47.300537,3.901 1853,52.86028,205.21017,39.28098,91.77365,3.857 1853,393.61005,-17.321619,18.418457,41.04219,3.825 1853,615.62225,-21.763607,26.827332,69.18934,3.797 1853,261.7278,351.9781,29.858917,58.07419,3.787 1853,-14.506278,183.64943,47.872345,139.91545,3.688 1853,409.46936,-21.07853,20.07666,45.045395,3.681 1853,421.43906,-35.235886,29.055664,70.259636,3.652 1853,269.75827,365.06808,31.791931,53.84326,3.609 1853,505.61456,-18.723314,19.507446,41.997124,3.605 1853,2.253282,491.03882,19.432997,40.15735,3.588 1853,580.74146,201.53671,40.20343,107.13837,3.566 1853,2.861948,199.42798,31.902239,76.59445,3.542 1853,417.3915,-20.647198,20.202332,44.687,3.526 1853,540.13525,-21.48368,58.07428,121.299904,3.523 1853,611.903,-4.9582253,39.013245,113.13695,3.517 1853,525.00275,200.07193,27.559265,64.55698,3.516 1853,573.2969,-23.40223,55.166992,127.0387,3.515 1853,468.58124,200.18167,28.282104,61.19922,3.51 1853,613.72974,190.06384,35.785034,107.28949,3.498 1853,598.0759,201.49748,38.15625,111.56111,3.493 1853,612.9491,232.70612,37.411987,115.15918,3.477 1853,-8.358127,50.33468,38.173347,108.60764,3.474 1853,597.8219,158.06161,37.676086,87.73566,3.463 1853,-6.003573,257.3946,18.560896,40.44641,3.455 1853,613.50977,149.44,35.069885,98.646484,3.445 1853,373.95828,-16.508614,30.834167,66.424034,3.443 1853,57.61621,279.63147,21.078812,41.894012,3.419 1853,116.701935,244.056,40.0542,76.83771,3.391 1853,401.6664,-18.77193,19.184082,43.02625,3.39 1853,173.01498,256.14804,32.19223,74.0571,3.373 1853,100.94145,227.99808,39.143997,80.47781,3.366 1853,547.63745,202.58365,42.023865,101.19809,3.354 1853,528.34644,-41.44111,47.332397,93.148796,3.343 1853,496.557,-43.117516,46.977234,93.47888,3.339 1853,2.0235467,-39.62452,42.69628,98.15608,3.327 1853,-4.377223,186.60855,18.024498,42.924026,3.32 1853,131.70125,231.15228,41.1566,77.91144,3.316 1853,464.42554,-43.272667,46.93573,93.51283,3.302 1853,304.8824,374.59998,21.884949,38.598663,3.276 1853,19.624115,198.85695,33.06838,68.67287,3.254 1853,570.3094,-17.109505,17.29364,38.22945,3.216 1853,597.27216,-22.593416,39.931152,94.76566,3.211 1853,-9.51366,245.69705,38.32618,102.1275,3.207 1853,274.7375,357.38797,19.712982,32.380432,3.182 1853,2.3343003,265.3111,19.690178,39.271484,3.177 1854,-10.948838,-32.650906,29.880089,72.866554,7.196 1854,-5.7507524,-19.329103,18.023277,45.361,6.761 1854,-12.116882,476.81842,30.710426,64.196106,5.944 1854,610.3823,-47.79556,42.01123,100.2847,5.78 1854,627.2259,-18.370472,17.352356,47.175842,5.421 1854,532.53973,-181.70558,149.40668,422.45932,5.355 1854,280.86743,374.0897,22.466248,40.849945,5.325 1854,-6.3475943,488.93362,19.215214,42.704803,5.292 1854,-17.36954,-62.663197,56.20024,142.14984,5.132 1854,626.27344,487.34753,20.993286,46.93457,5.093 1854,-72.163635,266.6598,199.87886,460.94977,5.044 1854,586.7781,-98.88504,73.40381,232.68234,5.033 1854,583.2031,411.4622,71.53662,176.73825,5.001 1854,289.13766,378.64093,21.269623,40.81259,4.905 1854,612.98987,455.59167,39.20807,105.63806,4.87 1854,-21.821106,402.54785,79.46283,174.80225,4.841 1854,1.560272,189.59232,22.098763,52.931427,4.761 1854,295.98102,376.07794,23.30423,38.33319,4.69 1854,570.71387,200.13594,21.138306,50.800705,4.682 1854,536.2524,311.19983,142.69342,340.86316,4.681 1854,81.39556,214.65627,21.621605,39.995102,4.564 1854,281.98578,358.11478,19.764252,31.40033,4.557 1854,-70.47537,-189.26881,211.45804,455.49664,4.539 1854,404.92035,-21.731266,31.983002,65.50413,4.498 1854,493.1308,225.81165,238.03497,516.19116,4.339 1854,64.72714,215.66245,21.299683,41.827484,4.272 1854,-9.012004,-6.3500595,39.49096,100.749985,4.248 1854,-37.824383,-125.86538,117.37401,277.69028,4.244 1854,270.56613,352.11023,28.743286,57.259827,4.212 1854,387.60193,-16.326267,33.066986,64.42207,4.18 1854,289.34506,356.96368,19.828766,32.98529,4.094 1854,74.44711,217.6235,21.122665,40.02295,3.916 1854,-4.948768,195.45372,19.866608,47.537216,3.87 1854,393.58038,-17.079601,18.304993,40.5851,3.846 1854,116.52572,219.5725,31.732964,64.094315,3.752 1854,615.2031,-20.705952,27.241638,67.52638,3.747 1854,613.56464,189.25894,36.067993,108.507385,3.737 1854,446.58472,194.51941,26.99649,69.13922,3.705 1854,381.8228,1.9592781,32.311066,66.41638,3.698 1854,602.7761,-27.305977,53.70813,136.22974,3.687 1854,-5.7617483,154.39229,17.900578,43.09857,3.66 1854,409.48193,-20.83848,20.158325,44.52517,3.65 1854,578.04315,-10.045773,45.041077,95.29613,3.635 1854,51.101738,212.16367,30.866722,67.91965,3.607 1854,420.80753,-35.490204,29.711823,70.89516,3.595 1854,-5.9490776,258.82776,17.281025,35.537415,3.584 1854,48.29865,276.61102,23.137592,36.610504,3.581 1854,619.4784,-6.5774117,19.099854,41.73561,3.572 1854,12.805672,174.87164,55.736618,125.30127,3.531 1854,401.4833,-18.401556,19.432556,42.39367,3.53 1854,28.170767,202.87013,31.89577,65.06102,3.516 1854,373.7177,-16.242779,31.006256,66.607185,3.505 1854,287.2946,367.80286,21.464874,36.321533,3.489 1854,63.20012,175.83745,51.9028,126.41481,3.486 1854,417.3626,-20.101637,20.109741,43.778362,3.461 1854,132.62746,228.8391,31.617538,64.813126,3.44 1854,129.61096,225.60974,24.79837,43.4375,3.436 1854,299.4498,369.07254,31.732025,52.73929,3.417 1854,531.11975,-19.187002,42.029663,83.48771,3.399 1854,4.7704372,200.83682,30.034513,70.17081,3.393 1854,596.0229,-13.612568,41.137512,101.47098,3.391 1854,-13.536322,150.04945,47.077972,142.49687,3.351 1854,540.099,-23.710987,57.810608,122.06473,3.35 1854,506.3457,-16.31705,17.815735,39.037064,3.347 1854,2.8283107,243.52756,17.63523,33.487488,3.31 1854,82.31976,209.78181,30.598366,59.202408,3.306 1854,1.8948507,-39.63096,42.668827,98.56609,3.306 1854,148.22484,209.82533,39.928375,88.02696,3.301 1854,454.57666,185.90567,27.397217,63.905457,3.294 1854,-6.0476546,137.72513,18.14835,43.81662,3.289 1854,598.1464,191.44244,37.737732,104.06427,3.279 1854,613.86224,145.80478,34.563538,102.79805,3.276 1854,464.63586,-44.140892,46.75415,95.27432,3.267 1854,-4.8581643,241.96504,15.999912,36.33171,3.267 1854,522.3658,-16.623983,17.438416,38.703,3.264 1854,-8.431816,50.390038,38.214584,108.328316,3.262 1854,239.37106,316.29837,69.98404,172.97809,3.252 1854,444.71188,-59.62499,56.362976,131.50632,3.239 1854,437.63947,-32.90572,28.811676,68.33807,3.235 1855,-11.200762,-32.150528,29.786776,71.70548,7.319 1855,-5.749364,-19.130445,17.815165,44.737503,6.967 1855,-1.7695451,240.20996,23.570875,48.76294,6.837 1855,281.27634,373.435,21.956085,41.541016,6.691 1855,-5.9619102,489.4525,18.605553,42.065918,5.726 1855,610.7159,-47.757965,41.749023,101.12185,5.667 1855,296.8202,379.80518,22.148804,39.802063,5.665 1855,281.63693,362.37054,20.011871,35.782196,5.365 1855,532.54114,-181.52496,149.3186,421.60544,5.33 1855,289.4466,379.327,20.527039,39.629333,5.324 1855,-17.684595,-62.907654,56.274757,141.51933,5.278 1855,627.14124,-18.204308,17.213318,47.468628,5.257 1855,-8.861061,464.02316,37.410545,93.462555,5.233 1855,586.6072,-98.5705,73.48901,232.29575,5.157 1855,583.265,411.69592,71.36487,176.28845,5.06 1855,-41.269703,361.58002,113.53694,275.76263,5.039 1855,-72.464226,267.43335,200.7268,460.1975,4.932 1855,621.51807,476.44702,29.362732,68.12048,4.78 1855,536.2118,311.31458,142.82678,340.7953,4.661 1855,-70.60464,-189.32126,211.66629,456.05704,4.599 1855,2.3492777,187.47282,20.710361,48.30104,4.502 1855,404.72052,-21.265537,31.881836,65.152855,4.382 1855,289.3816,357.7016,19.544159,32.327698,4.368 1855,492.99872,225.82721,238.2602,516.3814,4.351 1855,262.27673,355.97305,28.428223,56.76291,4.348 1855,172.49925,255.34752,30.980957,70.12883,4.315 1855,-9.373589,-6.8157997,39.655243,102.222305,4.213 1855,-1.7038321,309.81366,58.43969,135.07886,4.197 1855,-37.813076,-125.461975,117.418625,277.98138,4.16 1855,304.60394,374.34018,22.855621,40.54718,4.12 1855,270.53427,362.10052,30.139374,56.633484,4.041 1855,387.91214,-15.873487,32.721344,64.73068,4.013 1855,-11.917367,315.8108,41.356415,93.86453,3.992 1855,-18.171904,431.5446,56.065056,145.04086,3.95 1855,615.7311,-20.740282,26.25415,68.648766,3.923 1855,-0.117156506,206.08119,35.15244,72.88017,3.896 1855,287.4309,367.74664,20.877777,36.58969,3.885 1855,13.181831,220.49283,53.357063,125.02606,3.875 1855,-8.063012,231.47098,37.266613,101.583954,3.834 1855,73.77672,218.76198,21.050034,36.054565,3.807 1855,24.236538,317.64606,61.417866,129.10675,3.807 1855,-14.898681,137.80536,50.008728,143.77472,3.798 1855,409.45227,-20.540869,20.090698,44.894726,3.736 1855,-4.788085,170.45453,17.067436,41.82196,3.705 1855,602.93506,-27.614182,52.813843,136.98328,3.695 1855,-8.123831,49.68279,37.862045,110.72783,3.691 1855,420.81555,-35.377792,29.274963,70.400345,3.668 1855,117.03785,256.12308,29.22451,55.92624,3.656 1855,393.7112,-16.7459,18.172028,40.278767,3.627 1855,-10.378231,357.3909,39.536263,100.739624,3.626 1855,3.020721,-17.096624,16.775496,42.212692,3.608 1855,578.5585,-9.73045,44.78717,96.12096,3.598 1855,133.07513,229.54617,30.974518,60.91504,3.578 1855,66.059845,218.68651,20.595154,37.02124,3.551 1855,401.68896,-18.212603,19.095459,42.743187,3.548 1855,613.3619,189.48802,35.98175,108.27046,3.534 1855,274.56314,356.71878,19.928925,33.006683,3.524 1855,44.512817,337.35052,38.71705,85.534546,3.515 1855,275.17203,379.1913,19.672821,38.65158,3.513 1855,82.18091,217.45418,20.961823,37.149445,3.511 1855,382.1603,1.6888275,32.534668,68.27635,3.496 1855,84.4102,207.62773,30.685272,54.107986,3.494 1855,-6.357664,232.9689,20.630083,44.376007,3.493 1855,531.06287,-16.315224,42.07605,80.40756,3.487 1855,1.9125891,-39.65768,42.884155,98.187454,3.485 1855,545.51697,-7.651436,45.766174,87.90157,3.478 1855,90.15656,218.71695,19.89721,36.50769,3.466 1855,-1.2547266,313.05817,28.324963,59.96353,3.459 1855,28.034939,267.71576,18.391472,31.743591,3.438 1855,-5.5762334,259.61893,18.159506,43.080017,3.421 1855,417.25372,-20.281218,20.080688,44.33014,3.386 1855,619.5118,-6.4602795,18.680786,42.656746,3.384 1855,462.19223,-34.41847,27.984741,69.72535,3.358 1855,30.463507,207.31119,52.74418,127.02051,3.346 1855,612.44965,232.64163,37.155334,113.887024,3.336 1855,592.50665,166.71237,48.378906,131.82333,3.336 1855,239.31705,317.2727,69.8056,171.09412,3.328 1855,521.99866,-16.823933,17.823181,37.819324,3.323 1855,225.77292,346.1521,34.63504,64.62286,3.312 1856,108.632065,289.51266,34.23729,78.57037,20.152 1856,-11.088413,-32.336502,29.500284,72.390884,7.188 1856,-5.845523,-19.499308,18.014534,45.174118,6.857 1856,-12.008059,478.16324,30.515017,62.94461,6.25 1856,281.3925,374.97476,21.868622,38.694916,5.719 1856,-6.075364,489.1409,18.781666,42.4039,5.691 1856,610.4084,-47.32189,41.973816,100.14357,5.623 1856,532.53534,-181.42133,149.32715,422.18295,5.392 1856,281.4912,362.19495,20.307495,35.189484,5.386 1856,627.22266,-18.385857,17.255127,47.570045,5.367 1856,64.140945,216.54562,22.214577,40.020203,5.211 1856,-17.84476,-62.869656,56.56269,140.82239,5.185 1856,586.84753,-98.62955,73.28241,232.91005,5.045 1856,-72.50195,267.16663,200.35356,461.21863,4.987 1856,583.24347,411.49304,71.49054,176.48822,4.982 1856,-22.141472,400.93484,79.9586,176.42996,4.781 1856,297.1455,380.0785,22.00299,39.182343,4.765 1856,613.1408,454.33017,39.21942,107.878265,4.725 1856,73.11209,216.63031,22.021133,37.776276,4.707 1856,536.088,310.90634,143.03735,341.1426,4.682 1856,58.074104,214.06323,32.7987,63.732666,4.679 1856,404.31366,-21.581896,32.428253,64.42008,4.622 1856,-70.82903,-189.25887,212.0404,455.74237,4.513 1856,81.33281,213.94704,21.719666,37.67717,4.451 1856,626.3546,487.52744,21.022339,46.787323,4.405 1856,493.06607,225.87595,238.31711,516.40405,4.391 1856,387.77527,-16.318684,32.848633,64.73796,4.375 1856,112.36904,285.38022,25.742348,45.142395,4.35 1856,289.57678,379.8826,21.011688,38.156647,4.328 1856,262.1676,356.60605,29.193481,56.24951,4.302 1856,-38.028164,-125.72428,117.39456,278.23773,4.296 1856,-9.399626,-6.6497383,39.70642,100.719345,4.29 1856,289.1876,357.53873,19.891266,32.25238,4.272 1856,269.7919,365.52063,31.123505,54.021027,4.27 1856,-4.140374,174.13611,16.127712,37.50801,4.174 1856,-4.508485,203.51016,17.694391,39.234253,4.101 1856,35.591568,207.67085,39.754692,96.25844,4.066 1856,75.05654,210.59032,32.291565,56.950638,3.93 1856,578.5023,-9.277035,44.246033,95.550354,3.882 1856,393.54486,-16.825699,18.179352,40.30734,3.858 1856,-4.881371,155.86717,17.325262,40.926376,3.852 1856,18.937542,203.80826,39.5302,91.9371,3.843 1856,1.9998294,204.04501,19.577557,42.30858,3.802 1856,24.42527,230.17259,24.612785,45.955826,3.779 1856,58.941772,224.80566,54.025772,122.819336,3.773 1856,569.9595,203.86137,20.947388,41.15883,3.77 1856,409.38013,-21.394934,20.266022,44.78615,3.754 1856,120.702705,281.96457,31.490364,66.583405,3.739 1856,602.6338,-26.532337,53.140015,135.74495,3.721 1856,615.59186,-21.099821,26.420105,68.82578,3.694 1856,540.6086,-21.616634,56.54132,120.725845,3.69 1856,304.6995,374.71677,22.577911,39.421143,3.673 1856,274.6105,356.4678,19.930756,33.1232,3.619 1856,43.24154,206.84055,54.06492,124.46481,3.618 1856,417.28607,-20.9375,20.26416,44.175,3.607 1856,-14.574288,123.45109,49.414455,142.19077,3.595 1856,109.838806,216.70718,29.51268,65.423706,3.582 1856,401.498,-18.263117,19.374664,42.131927,3.564 1856,287.48782,368.39432,21.175873,34.69699,3.529 1856,373.87567,-15.55183,30.52771,65.611176,3.497 1856,596.70966,-13.434296,40.170654,101.28344,3.497 1856,612.64844,233.3735,37.756714,113.48123,3.47 1856,1.925376,490.3925,19.810715,41.096893,3.468 1856,2.6975636,-17.626663,17.134548,42.990276,3.454 1856,522.46375,-16.942402,17.66681,37.70767,3.447 1856,90.3488,211.26584,20.797256,34.630875,3.44 1856,1.9093609,-39.3035,42.837044,97.3039,3.438 1856,619.3296,-18.792025,17.639954,44.593613,3.414 1856,613.5787,189.5445,35.947815,108.60571,3.41 1856,531.05365,-17.71144,41.441895,82.97808,3.391 1856,-4.353177,189.21065,16.710571,38.78212,3.391 1856,62.774715,179.61655,50.299152,113.29886,3.385 1856,446.14362,197.66708,27.768616,65.56497,3.376 1857,132.64803,269.50165,28.523773,72.12985,11.564 1857,82.12246,315.1446,31.515953,81.91638,11.064 1857,1.1435068,193.38719,23.197313,51.47957,7.386 1857,-11.308384,-32.094334,29.803345,71.8724,6.652 1857,-6.0157356,-19.474915,18.258205,44.787025,6.443 1857,281.5157,373.93985,21.723328,41.0466,6.247 1857,610.4877,-47.88988,41.92285,100.49214,5.798 1857,-12.257984,478.64764,30.592022,62.42328,5.609 1857,627.21814,-18.197506,17.059814,47.461082,5.585 1857,-17.634186,-62.91503,56.11739,141.52353,5.401 1857,-6.156708,489.8078,18.943886,42.02881,5.369 1857,532.47314,-181.48376,149.35107,421.84836,5.313 1857,296.55457,379.54492,22.4469,40.36035,5.179 1857,586.6641,-98.7209,73.53369,232.54149,5.125 1857,612.9867,454.41464,39.33142,107.63211,5.096 1857,583.26276,411.28967,71.40588,176.77985,4.982 1857,626.41315,487.9234,20.832886,46.00128,4.931 1857,-22.327614,401.20544,79.96461,175.84802,4.857 1857,-72.33315,266.86737,199.44962,460.55573,4.802 1857,282.1154,362.167,19.354736,36.136383,4.629 1857,536.36975,311.18823,142.63159,340.86096,4.625 1857,404.13605,-20.564342,32.364197,63.682404,4.508 1857,-70.62949,-189.26157,211.70047,455.3736,4.476 1857,387.7267,-15.517328,33.184174,64.002785,4.432 1857,-9.25044,-7.021961,39.407875,102.02721,4.344 1857,493.1511,225.61435,238.17453,516.49426,4.34 1857,-37.928425,-126.20362,117.35417,278.17734,4.322 1857,-4.583259,173.12456,17.33711,39.444077,4.15 1857,262.2009,356.73593,28.31015,56.906372,4.117 1857,-4.493742,197.80084,19.631992,45.461014,4.079 1857,3.2827902,195.98657,30.273552,75.98547,4.032 1857,409.46655,-20.284004,20.13797,44.069813,3.939 1857,393.45642,-16.547668,18.402374,39.820023,3.868 1857,578.192,-9.885059,45.277344,95.48532,3.818 1857,-13.428458,155.13681,47.12641,140.97263,3.804 1857,135.74472,288.6267,33.33107,69.86896,3.799 1857,525.28284,194.51689,28.45337,63.143814,3.79 1857,530.8811,-17.017527,41.949707,81.18221,3.757 1857,287.60455,368.34906,20.440125,35.88568,3.757 1857,540.36707,-21.15981,57.16461,119.554794,3.735 1857,615.4774,-20.722958,26.552917,68.55081,3.724 1857,602.7275,-27.910336,53.216003,136.22435,3.698 1857,304.75354,375.5365,22.055847,38.998566,3.688 1857,401.5218,-17.537933,19.463379,41.47408,3.666 1857,12.626781,177.63019,54.03895,124.3634,3.626 1857,417.39673,-20.007992,19.918457,43.859127,3.622 1857,275.00287,377.97284,19.960358,38.670166,3.618 1857,-5.2014933,217.0201,18.435516,49.39882,3.606 1857,289.6584,357.2824,18.986847,32.80304,3.57 1857,619.44714,-18.211596,17.468262,43.773216,3.519 1857,-10.503774,167.6063,30.469868,67.72101,3.502 1857,596.7008,-14.53767,40.509155,102.37723,3.495 1857,37.166733,375.05542,29.3516,40.3024,3.488 1857,421.0324,-35.34022,29.21231,70.80239,3.456 1857,-5.243948,155.53772,17.648733,41.297165,3.435 1857,373.56903,-15.897427,31.141388,65.668144,3.427 1857,563.26855,-17.937708,41.424927,83.80914,3.394 1857,2.0888782,-39.845802,42.57275,98.08866,3.387 1857,-7.5675964,261.1116,36.965332,104.89044,3.364 1857,-8.490755,68.37708,38.745235,107.09374,3.364 1857,496.4074,-41.463608,47.389587,92.62634,3.341 1857,574.813,163.37543,51.351074,133.465,3.34 1857,274.81995,356.1743,19.46936,33.337128,3.325 1857,381.88278,3.2352333,32.6351,64.956116,3.299 1857,285.39212,368.82703,28.865356,60.56604,3.296 1857,126.52551,251.48792,28.573914,64.16022,3.277 1858,87.25911,314.46866,31.994827,74.06012,13.586 1858,-11.240153,-32.11156,29.70963,71.6798,7.315 1858,-5.841031,-18.85368,17.902866,44.145363,6.755 1858,281.11057,373.59366,22.572784,41.692566,6.551 1858,-11.979902,477.94522,30.409502,62.829376,6.007 1858,-6.1017475,489.11084,18.686327,42.325256,5.887 1858,135.0597,271.644,27.980103,68.45303,5.84 1858,610.49475,-47.185574,41.905823,99.66144,5.635 1858,289.08685,377.9558,21.848267,41.92459,5.438 1858,281.77942,362.697,19.877258,35.2977,5.43 1858,490.70258,-182.78287,234.22125,428.63635,5.339 1858,627.1502,-18.428555,17.360046,47.20049,5.268 1858,626.54346,487.82257,20.739868,46.375793,5.165 1858,586.6068,-98.76668,73.5968,231.7806,5.13 1858,-17.47817,-62.654793,56.278717,141.74107,5.119 1858,583.1701,411.49844,71.49451,176.60721,4.989 1858,612.9535,454.86575,39.372803,106.89914,4.946 1858,-22.0537,401.80502,79.59683,175.5784,4.84 1858,-72.280365,267.1297,199.31174,460.65924,4.817 1858,536.1183,311.128,143.07947,341.14264,4.695 1858,296.25388,375.65427,22.92517,39.17505,4.597 1858,-70.64596,-189.31671,211.68942,455.6747,4.51 1858,262.09207,356.39142,29.22519,56.32126,4.494 1858,493.085,225.45706,238.16537,516.65027,4.396 1858,-8.987837,-6.165882,39.362152,100.297165,4.388 1858,30.179913,210.61569,30.247456,65.67789,4.371 1858,-37.709595,-125.89312,117.20553,276.23907,4.327 1858,269.9186,368.84598,30.14914,56.377228,4.263 1858,405.5467,-34.683846,29.132507,74.248886,4.244 1858,287.4682,368.4971,20.663239,35.362976,4.242 1858,388.25073,-16.60611,32.3985,65.31406,4.236 1858,289.42285,358.0525,19.287323,31.73117,4.137 1858,-10.47741,216.49791,28.815353,67.89787,4.035 1858,-5.568607,230.70879,18.119259,42.666,3.883 1858,467.94174,198.41275,28.75293,62.136078,3.813 1858,615.32263,-21.363602,27.124634,68.30685,3.774 1858,-5.1825724,169.89522,17.639853,42.967148,3.771 1858,274.77386,357.28033,19.539581,31.680573,3.722 1858,393.69592,-16.657042,18.23233,40.54373,3.689 1858,173.93608,255.30396,31.705017,78.15918,3.658 1858,-14.18551,182.15811,48.513683,143.27374,3.573 1858,619.6398,-7.1153183,19.018738,42.010002,3.541 1858,299.50555,369.52087,31.254608,53.197144,3.532 1858,409.46744,-20.406563,20.016083,44.494133,3.503 1858,82.71824,224.9191,19.949646,31.498596,3.503 1858,602.87897,-26.778381,52.920227,134.7808,3.492 1858,578.03094,-8.875946,44.773254,94.40895,3.474 1858,0.4313481,178.35413,25.700132,78.79651,3.473 1858,42.891617,210.86368,33.584938,60.485962,3.466 1858,612.6329,233.60434,38.26349,115.16211,3.454 1858,401.5106,-17.999943,19.324402,42.400723,3.443 1858,613.87885,190.79532,36.14258,105.14914,3.437 1858,75.79416,225.4627,31.918732,54.099976,3.429 1858,530.97107,-18.354233,41.895508,83.371155,3.428 1858,470.69244,-33.41063,28.04132,68.36269,3.423 1858,496.4467,-42.617523,47.109222,93.86101,3.421 1858,-7.7960563,260.33112,36.77863,107.36029,3.418 1858,-5.9871316,154.14438,18.947943,42.43991,3.413 1858,1.8337035,-39.3814,42.974476,97.927864,3.407 1858,421.18842,-35.437252,29.50409,70.8253,3.406 1858,-5.3438115,185.7193,17.924883,45.34587,3.402 1858,-3.7948852,349.40424,14.689312,34.96585,3.383 1858,59.612923,225.38531,31.850998,63.175415,3.375 1858,12.15003,204.38634,53.975197,121.33153,3.352 1858,-8.729802,31.742165,38.536835,110.957695,3.347 1858,417.45593,-19.794672,19.933014,43.7075,3.331 1858,57.55256,219.90657,21.347855,36.264755,3.311 1858,164.67221,250.98451,30.042892,72.19182,3.28 1858,335.04453,373.20932,25.651123,39.539,3.28 1858,4.0489097,358.92755,16.000254,32.712555,3.276 1858,464.38446,-42.859936,47.04956,93.85896,3.275 1858,526.56445,195.69997,25.914246,63.734238,3.268 1859,91.14374,309.9221,28.99649,75.62872,14.005 1859,280.57,371.60684,23.101227,43.306244,9.336 1859,135.54843,273.48923,27.92073,65.37564,7.175 1859,-10.97129,-32.317734,29.466385,72.364975,6.991 1859,-5.8998346,-19.611675,18.235065,45.361458,6.434 1859,-6.058917,489.75388,18.700954,42.01651,5.886 1859,610.3983,-46.727837,41.82672,98.6057,5.637 1859,296.16623,375.09525,23.033264,39.041473,5.581 1859,-8.780475,465.41003,37.593685,91.17328,5.414 1859,288.76688,376.56815,21.935333,42.6597,5.381 1859,532.5763,-181.39697,149.31836,422.0153,5.351 1859,35.857506,218.16199,31.047852,57.96228,5.3 1859,-17.579016,-62.237663,56.462677,140.97682,5.148 1859,627.1368,-18.069235,17.18512,46.442207,5.099 1859,586.7195,-98.59233,73.42731,231.73322,5.059 1859,626.3887,487.48898,20.892273,46.55838,4.982 1859,583.31287,411.40854,71.45514,176.67075,4.979 1859,282.05502,359.59424,19.552216,30.107697,4.962 1859,262.04953,357.2142,29.028107,56.816986,4.949 1859,613.1202,454.51447,39.151245,107.19275,4.894 1859,-21.912537,402.2912,79.405396,175.14453,4.816 1859,-72.28201,266.8306,199.13492,460.67392,4.771 1859,536.2107,311.4188,142.85022,341.0508,4.627 1859,288.58084,362.63028,19.192902,35.859924,4.563 1859,-9.091841,-6.5441093,39.52713,100.63063,4.506 1859,-70.74119,-189.53242,211.89413,455.43494,4.473 1859,1.8571281,184.93394,20.860445,54.701736,4.383 1859,493.03104,225.54105,238.26718,516.5482,4.37 1859,-37.739075,-126.09762,117.354324,277.59824,4.323 1859,566.2525,196.98692,26.865295,58.441635,4.168 1859,387.78046,-16.6425,32.580444,65.114845,4.009 1859,404.5401,-22.483292,31.755646,65.70065,3.974 1859,273.78415,366.49887,23.155914,38.686005,3.948 1859,-4.96664,170.15852,17.654018,42.6196,3.943 1859,577.2468,195.90771,21.995361,45.746918,3.916 1859,12.749435,189.80865,53.655853,116.56131,3.89 1859,299.48,370.29535,30.975922,51.89737,3.782 1859,-0.97856045,198.00949,25.78675,72.52725,3.755 1859,578.53394,-8.169201,44.901123,93.82077,3.727 1859,393.65842,-16.809084,18.102264,40.62206,3.712 1859,274.6861,358.0375,19.69812,32.07379,3.71 1859,269.5329,366.95212,30.966095,64.040405,3.708 1859,2.041092,491.2124,19.758076,40.447388,3.705 1859,-4.936738,193.75783,18.732578,51.262253,3.695 1859,59.877567,227.7511,32.54247,59.948853,3.672 1859,-14.277539,149.09576,48.00968,146.04688,3.656 1859,5.566307,177.50926,29.111496,70.16249,3.648 1859,613.40216,188.87659,36.428833,109.17624,3.617 1859,276.898,352.0244,36.88324,90.83212,3.611 1859,21.652248,217.5787,30.298721,59.567047,3.566 1859,45.586235,226.9586,27.097572,40.390213,3.553 1859,612.115,-4.146305,38.80188,110.10603,3.54 1859,401.4413,-18.55586,19.039948,42.708088,3.512 1859,1.8446946,-38.862343,42.919052,97.42895,3.467 1859,172.06189,256.99585,33.20923,73.22714,3.465 1859,590.3889,-22.226559,51.05298,129.90831,3.421 1859,2.6561255,-17.998672,17.714201,43.684814,3.418 1859,615.3287,-20.697567,26.834534,66.95062,3.416 1859,458.58823,-19.327238,17.911957,39.90176,3.402 1859,409.53915,-21.067095,19.845001,45.024815,3.398 1859,373.99683,-16.683784,30.648499,66.51222,3.39 1859,297.30615,362.28082,19.437866,36.529358,3.383 1859,612.84094,234.03775,37.525513,113.22269,3.37 1859,417.53973,-20.442774,19.73233,44.054626,3.352 1859,540.5511,-20.717834,57.253784,120.57542,3.338 1859,421.17905,-36.04097,29.210938,70.71317,3.334 1860,92.322044,308.81567,27.258827,75.813385,14.586 1860,-11.020418,-32.326885,29.36202,71.82345,6.787 1860,-5.914772,-19.601036,18.107925,45.01017,6.417 1860,-12.013418,479.2946,30.401844,62.303192,5.971 1860,610.4303,-47.582863,41.961548,100.324234,5.904 1860,-6.2214556,489.83557,18.957481,41.76538,5.74 1860,627.114,-18.40175,17.287537,47.246372,5.368 1860,281.29065,374.09424,21.98761,41.689026,5.35 1860,532.41425,-181.24573,149.51996,421.28818,5.282 1860,137.03285,270.98602,31.240173,66.86783,5.233 1860,-17.711426,-62.77672,56.474354,141.36674,5.229 1860,586.6326,-98.42477,73.53717,231.54095,5.101 1860,297.10815,380.49414,22.11316,39.42148,5.05 1860,626.37946,487.7718,20.838684,46.502686,5.009 1860,583.2057,411.55075,71.48584,176.48819,5.0 1860,612.8992,454.3369,39.4364,107.25775,4.916 1860,282.206,363.41925,19.078735,34.476654,4.872 1860,-21.940323,402.06668,79.45318,175.31119,4.86 1860,-72.20294,267.07507,199.08546,460.39307,4.821 1860,404.51337,-21.663212,31.791565,65.65299,4.718 1860,536.1678,311.20758,142.88922,340.77295,4.685 1860,-70.65105,-189.262,211.99556,456.06265,4.424 1860,493.07135,225.9343,238.23389,515.828,4.365 1860,289.2145,379.0061,21.254517,40.56067,4.288 1860,-37.817795,-126.35269,117.59001,278.38522,4.287 1860,-9.307031,-6.3912506,39.709415,101.181244,4.264 1860,262.04953,356.4959,28.431335,57.37805,4.194 1860,388.02863,-15.905901,32.51364,64.25293,4.168 1860,393.68512,-16.473434,18.05835,40.53068,4.158 1860,401.58554,-18.07515,19.069092,42.47245,3.941 1860,409.60394,-20.741026,19.644989,44.707676,3.921 1860,304.9718,374.56796,22.303772,38.643433,3.904 1860,615.4024,-20.482544,26.771118,67.40904,3.858 1860,-4.8666615,171.26332,17.541092,40.881104,3.829 1860,2.2192132,188.77083,21.1196,56.55284,3.758 1860,373.77377,-15.896124,30.7753,65.69853,3.705 1860,577.82404,-10.013126,45.439514,94.75569,3.68 1860,287.8966,369.26917,20.175476,34.116577,3.624 1860,-7.5159206,258.897,36.612022,109.08731,3.619 1860,29.450256,169.88141,53.48519,125.47235,3.616 1860,-4.950766,154.15668,17.52794,42.325027,3.605 1860,602.6907,-27.493591,53.255432,134.6456,3.584 1860,586.7312,198.35059,19.783325,38.55728,3.577 1860,545.451,-8.892616,45.679016,89.48286,3.541 1860,28.525707,195.94055,30.355297,58.884094,3.502 1860,619.79224,-6.233712,18.858826,41.397038,3.491 1860,421.5463,-35.70476,28.6456,70.86118,3.483 1860,1.9163913,491.13684,19.959164,41.01599,3.468 1860,596.25104,-14.268539,40.99359,101.04643,3.453 1860,578.84576,198.60297,19.87262,39.349747,3.437 1860,1.9081974,-39.65562,42.882042,97.84604,3.409 1860,289.93176,358.79797,18.64029,30.961517,3.392 1860,525.09753,197.72565,28.52295,63.406433,3.383 1860,417.46262,-20.031021,19.617096,44.0138,3.361 1860,275.3277,357.52606,18.600739,31.776428,3.337 1860,0.6531358,152.49796,49.739853,133.26712,3.335 1860,173.18102,257.65805,32.475708,75.29654,3.321 1860,531.09186,-17.41533,41.688904,83.26735,3.298 1860,597.8014,154.48288,36.35309,91.846085,3.298 1860,5.542098,467.78168,38.050262,94.59894,3.288 1860,576.0111,169.11191,48.86505,125.913055,3.285 1860,613.4611,189.38623,36.54706,108.69357,3.283 1860,386.401,-14.390599,17.579468,38.35296,3.189 1860,2.687683,260.61908,31.722538,65.44821,3.186 1860,-7.9235926,69.916916,38.5232,104.16951,3.183 1860,442.9558,-38.620483,60.432007,132.89851,3.182 1860,464.476,-42.783318,46.929474,95.30938,3.162 1860,117.00486,235.03745,40.946404,92.1568,3.151 1860,-5.125018,249.38751,16.931635,41.16266,3.149 1860,274.03333,367.19693,21.993713,37.911774,3.148 1860,514.4026,-9.898586,44.861206,91.10811,3.148 1860,613.4934,147.15102,34.87683,100.36049,3.131 1860,563.4754,-18.118391,41.559265,84.29005,3.118 1861,91.26518,309.4136,28.918976,75.9234,11.823 1861,-10.90251,-32.344494,29.423014,73.07647,7.011 1861,-5.7423444,-19.275768,18.042866,45.212505,6.681 1861,2.301017,187.89757,21.089762,55.159454,6.267 1861,281.9962,374.04013,21.435822,41.119415,5.934 1861,-5.9191275,489.3525,18.581291,42.072968,5.831 1861,134.23256,278.27798,28.229263,66.28125,5.706 1861,610.63464,-47.553062,41.706604,100.59893,5.634 1861,627.1514,-18.00084,17.149841,47.20661,5.578 1861,-8.606293,465.57416,37.35662,90.434875,5.365 1861,532.47626,-181.39932,149.31085,421.62164,5.268 1861,-17.645647,-63.031876,56.392487,141.68806,5.142 1861,586.5786,-98.57974,73.6062,231.60413,5.091 1861,583.2103,411.5447,71.48053,176.5057,5.004 1861,626.34534,487.71365,20.955017,46.482025,5.001 1861,612.908,454.7768,39.58551,107.19061,4.998 1861,282.01953,362.3634,19.341705,35.917114,4.989 1861,296.46124,376.6932,22.251678,37.79828,4.837 1861,262.32062,356.39908,28.088318,57.108826,4.821 1861,-21.90255,402.36884,79.37279,175.18195,4.806 1861,-72.210266,267.18732,199.03464,460.08612,4.776 1861,536.2391,311.13336,142.81989,341.13953,4.654 1861,-70.41456,-189.50356,211.65121,456.18622,4.468 1861,492.96216,225.74026,238.33209,516.3506,4.373 1861,-37.70281,-126.26768,117.53551,277.312,4.349 1861,387.6501,-15.350111,32.936584,63.66079,4.336 1861,-9.230581,-6.5149765,39.590218,100.811745,4.333 1861,404.7105,-21.977812,31.774536,65.94611,4.308 1861,289.82718,378.93503,20.552032,39.819366,4.196 1861,-4.7928414,170.7789,17.450527,42.0459,4.14 1861,289.69525,357.90973,18.782196,32.17041,3.949 1861,305.06625,375.97662,21.945618,38.421783,3.924 1861,270.21304,364.91455,30.950867,55.18573,3.852 1861,393.3579,-16.744354,18.531403,40.560574,3.841 1861,275.15332,356.58524,18.873901,32.800903,3.798 1861,578.1845,-9.751778,45.042053,95.29899,3.763 1861,615.749,-20.235245,26.448853,67.59512,3.718 1861,602.92773,-27.25298,53.10614,133.86537,3.715 1861,2.6123242,-17.409044,17.500912,43.513985,3.709 1861,-0.111676455,193.84805,26.574808,85.120636,3.689 1861,545.4219,-7.836151,46.227905,88.52786,3.651 1861,287.5716,368.80682,20.27826,35.2619,3.584 1861,12.000959,172.72864,54.56685,124.21838,3.499 1861,619.85535,-6.3311863,18.560913,42.02516,3.485 1861,409.3106,-21.133842,20.165558,45.055145,3.476 1861,401.33575,-18.08373,19.490784,42.50847,3.462 1861,-4.217098,194.63786,18.60633,46.695465,3.442 1861,1.9010425,-39.855156,42.824127,98.4241,3.414 1861,-5.4988265,154.42151,18.139523,42.087875,3.406 1861,373.90567,-15.636757,30.951172,64.87945,3.392 1861,417.40216,-20.733017,20.178284,44.593388,3.387 1861,-7.9075336,259.54077,37.07079,107.607056,3.383 1861,2.138534,490.67346,19.64341,40.397217,3.369 1861,596.38477,-14.424675,40.52002,102.102325,3.364 1861,613.47375,190.88416,35.796387,107.46405,3.339 1861,382.21857,-34.049694,28.685333,74.5387,3.333 1861,522.8232,-37.340546,59.77887,123.65696,3.327 1861,514.27014,-8.722443,45.318604,88.821396,3.303 1861,78.823006,322.96094,34.736168,68.139404,3.214 1861,-13.151689,151.03465,46.821827,144.88686,3.203 1861,464.39465,-43.133713,46.865784,95.137436,3.194 1861,-8.518618,216.0488,37.951923,101.728,3.178 1861,-8.394144,69.06004,38.670864,105.873795,3.164 1861,556.14636,-23.745193,58.709473,121.943344,3.157 1861,239.2289,316.3389,69.904434,172.57059,3.144 1861,578.5889,203.26399,20.458557,43.781662,3.139 1861,598.14014,203.41469,38.09131,107.421646,3.138 1861,1.9079864,260.94507,32.685528,65.45004,3.135 1861,505.77588,-16.576576,18.533997,39.17436,3.113 1861,297.61884,362.61526,18.91269,36.095154,3.109 1861,2.5885582,169.83023,40.014965,100.20355,3.108 1862,92.095764,309.56314,28.234665,76.50836,11.312 1862,-11.121764,-32.31109,29.544472,72.55986,6.652 1862,-5.799694,-18.909304,17.93657,44.67487,6.31 1862,-11.972047,478.65198,30.338749,62.315735,5.713 1862,-6.141547,489.32608,18.841892,41.793304,5.65 1862,610.5267,-47.510506,41.935547,100.72747,5.618 1862,-17.671646,-63.128944,56.1981,141.87222,5.383 1862,532.43304,-181.23961,149.50323,421.2231,5.258 1862,0.02672553,200.8465,26.256695,74.62506,5.253 1862,586.43677,-98.39578,73.73712,231.18553,5.193 1862,627.15686,-18.555939,17.380493,47.316162,5.161 1862,133.80072,275.8977,29.180542,62.13318,5.141 1862,583.2421,411.31012,71.38245,176.62555,5.008 1862,612.9264,454.2669,39.29956,107.5965,4.839 1862,626.41406,488.20694,20.795105,46.072296,4.819 1862,-21.838936,402.48993,79.284195,175.06604,4.815 1862,281.89297,358.03192,19.956848,31.59668,4.756 1862,-72.242836,267.16913,199.11572,459.99915,4.721 1862,536.3515,311.1682,142.81122,341.05566,4.709 1862,276.73138,366.05728,30.292969,55.29358,4.564 1862,-70.62343,-189.30458,211.92468,455.67957,4.42 1862,493.1452,225.61905,238.12036,516.48035,4.406 1862,288.29175,373.9629,22.470306,41.37497,4.377 1862,296.88904,379.67123,22.347778,40.922485,4.351 1862,-9.054657,-6.6077614,39.34913,101.54822,4.318 1862,-37.699005,-126.943954,117.48287,278.69556,4.3 1862,578.1559,-7.946926,45.354797,93.35785,4.235 1862,270.3991,351.86716,28.571869,57.781372,4.216 1862,405.41153,-35.2178,29.253418,75.152245,4.183 1862,387.72284,-16.164549,33.080566,64.60008,3.962 1862,288.056,361.26526,19.85141,37.200653,3.925 1862,393.48962,-17.409786,18.470062,41.252094,3.871 1862,-4.1418905,170.85971,17.268028,41.33142,3.813 1862,305.07227,374.7921,22.119873,39.909576,3.812 1862,445.98102,205.27591,27.590149,66.03348,3.776 1862,545.7243,-7.2995605,45.768066,87.845474,3.761 1862,373.73627,-15.853577,30.759277,66.11192,3.744 1862,611.9546,-3.8723106,38.907715,110.79636,3.731 1862,-6.1867323,209.74576,19.469765,48.56134,3.693 1862,2.1822488,490.72485,19.794676,40.87616,3.625 1862,615.4133,-21.301004,26.88794,69.59346,3.584 1862,409.27863,-20.859217,20.34143,45.150253,3.581 1862,522.74963,-15.633799,16.934143,36.99652,3.566 1862,596.3123,-12.735699,41.137268,100.8418,3.484 1862,4.611459,358.89276,15.655854,32.539368,3.462 1862,401.42014,-18.705862,19.573212,43.045803,3.408 1862,420.68497,-35.218643,29.544342,70.198326,3.399 1862,619.86884,-6.738757,18.644897,42.353962,3.358 1862,262.28882,364.40707,29.219574,56.49466,3.354 1862,-2.314763,259.01523,29.526302,68.77902,3.35 1862,554.47375,-35.969612,60.070374,124.9351,3.341 1862,2.8092992,-17.347425,17.020805,42.73868,3.332 1862,506.3522,-15.931788,17.663177,37.328503,3.331 1862,274.5188,355.94022,19.96405,33.726715,3.315 1862,417.24567,-19.81309,20.154541,43.843433,3.31 1862,-3.5305238,348.4057,14.81019,35.98291,3.309 1862,1.9524026,-40.210358,42.64748,97.958824,3.298 1862,530.8975,-16.843685,42.376038,82.289246,3.298 1862,-7.6105556,215.83484,37.00088,100.85193,3.292 1862,386.28445,-14.827778,17.788757,39.038677,3.281 1862,514.1223,-9.524857,45.35608,90.10191,3.25 1862,575.6923,166.78363,49.695984,131.18484,3.245 1862,538.5043,-16.386806,17.234497,36.733353,3.234 1862,612.70276,235.06708,37.165344,111.56641,3.233 1862,1.1084068,173.7334,25.017174,71.391464,3.231 1862,458.22858,-39.163254,59.4115,130.9895,3.221 1862,458.963,-18.410032,17.316772,39.723614,3.198 1862,382.24023,-34.01564,28.819946,74.41428,3.185 1862,28.485306,167.98695,54.00563,126.91371,3.179 1862,-8.110947,50.347797,37.88843,109.206345,3.177 1862,140.17133,224.7818,28.517715,63.823242,3.173 1863,91.27478,310.24597,28.732857,74.73239,21.882 1863,-11.016778,-32.343735,29.586277,73.069084,7.199 1863,-5.858718,-19.062431,18.028994,44.817726,6.516 1863,134.50993,274.03894,28.718246,65.20273,5.959 1863,610.4343,-47.07505,42.121704,99.66571,5.648 1863,-11.89205,478.77475,30.22149,63.073517,5.498 1863,627.245,-18.04948,17.162231,46.69739,5.428 1863,568.9765,200.68555,23.140564,47.77568,5.378 1863,-6.0083647,489.6451,18.68291,41.791473,5.358 1863,532.53314,-181.79657,149.37738,422.19052,5.314 1863,586.50323,-98.090256,73.59332,231.04726,5.163 1863,-17.749083,-62.88997,56.464363,141.6667,5.142 1863,281.72,362.2512,19.971863,36.113068,5.137 1863,583.2201,411.69803,71.45532,176.42667,5.011 1863,281.5205,373.89337,21.979004,42.07849,4.99 1863,621.598,476.7788,29.247925,68.03656,4.985 1863,-21.884918,402.2614,79.44903,175.17273,4.847 1863,4.6486187,215.91365,29.662828,63.419144,4.808 1863,-5.499678,239.6138,17.61935,40.685974,4.791 1863,-72.368576,267.23358,199.34515,460.31976,4.789 1863,405.46295,-34.867134,29.13739,74.45229,4.689 1863,536.18536,311.32,143.00177,340.9024,4.665 1863,262.31226,356.45413,28.293182,56.759766,4.437 1863,-70.588066,-189.37933,211.70157,455.59067,4.431 1863,493.07135,225.8382,238.08649,516.2618,4.387 1863,-37.86715,-126.14217,117.65877,277.70322,4.293 1863,387.72122,-15.913744,32.938385,64.66853,4.25 1863,18.186415,203.66895,41.616615,88.24542,4.235 1863,-9.316487,-6.1853256,39.546963,100.790436,4.213 1863,289.1717,377.95346,21.534515,41.81143,4.14 1863,296.2171,376.77594,22.934479,37.776917,4.095 1863,578.11053,-8.711941,45.357788,95.70665,4.085 1863,440.43454,204.41458,22.02887,54.168976,3.953 1863,269.8689,365.20905,31.006287,55.91153,3.849 1863,409.24963,-21.153446,20.244843,45.19434,3.803 1863,458.60504,204.9395,21.025726,48.553467,3.803 1863,545.6076,-8.343304,45.73004,90.267426,3.801 1863,73.15014,223.9834,21.194458,31.888382,3.796 1863,-0.38107634,189.27203,26.425789,73.37207,3.729 1863,-13.766129,167.42435,48.83473,142.96982,3.701 1863,602.68256,-26.261036,53.121643,135.35492,3.688 1863,-5.718932,213.07315,18.711678,45.23642,3.682 1863,615.47266,-20.998562,27.108582,68.314316,3.622 1863,393.5016,-16.566782,18.373108,40.670975,3.601 1863,289.39664,357.54538,19.327637,32.61841,3.599 1863,555.77686,-21.723656,59.16858,121.04495,3.566 1863,523.5942,-22.252056,59.026184,119.70393,3.552 1863,34.739803,204.15808,41.22517,85.95474,3.546 1863,401.37598,-18.208853,19.556793,42.803814,3.535 1863,274.86237,357.22754,19.29718,32.453156,3.526 1863,-11.013544,216.69606,29.494585,66.50212,3.524 1863,2.7378333,-17.522064,17.138,42.952236,3.495 1863,596.3374,-12.272953,40.84204,101.81273,3.492 1863,619.4441,-18.362915,17.488647,43.100197,3.45 1863,0.4578638,155.17322,50.091576,131.23877,3.421 1863,513.59784,-10.716446,45.829834,90.76166,3.418 1863,445.8876,204.44505,28.16867,64.109055,3.391 1863,-5.211706,171.69926,17.742634,40.879715,3.386 1863,-7.4542475,243.80875,36.184822,105.7348,3.371 1863,417.29962,-20.839125,20.173523,44.76888,3.368 1863,1.8902731,-39.48419,42.881104,97.66436,3.337 1864,91.489334,308.2655,28.41484,75.713715,16.213 1864,281.1277,372.4833,22.410492,42.833588,7.49 1864,-11.00301,-32.034363,29.252901,70.96377,6.858 1864,-5.8563466,-19.412283,18.114677,44.62644,6.858 1864,133.40726,282.42685,30.70195,75.58493,6.596 1864,-11.770854,479.57535,30.185036,61.838593,5.846 1864,296.49966,378.37302,22.771515,42.03589,5.666 1864,610.4319,-47.193493,41.95227,99.507645,5.609 1864,-6.137564,489.77972,18.77876,41.732788,5.604 1864,627.07,-18.051096,17.21344,46.947327,5.55 1864,288.9217,376.39404,21.732239,43.065735,5.473 1864,532.49646,-181.53424,149.30176,422.02057,5.305 1864,282.17535,359.37408,19.298767,30.600708,5.223 1864,-17.744425,-63.19636,56.318954,141.63495,5.198 1864,586.7013,-98.685715,73.39569,232.65802,5.13 1864,626.52814,487.97195,20.65149,46.10379,5.063 1864,583.2565,411.74005,71.396545,176.32892,4.987 1864,612.8176,455.12418,39.576782,106.36142,4.916 1864,-21.927685,402.22186,79.324196,175.08649,4.789 1864,-72.394516,267.00092,199.22499,460.26276,4.759 1864,36.62543,207.43147,32.93188,64.47597,4.71 1864,536.2004,311.38727,143.01581,340.87396,4.659 1864,137.07831,261.89066,31.161575,69.256775,4.587 1864,-5.3348536,197.56949,19.062828,49.2489,4.509 1864,262.12787,356.08557,28.479156,57.73633,4.463 1864,-70.524414,-189.27582,211.70056,455.5827,4.453 1864,493.20465,225.88708,238.06458,516.19446,4.369 1864,288.28497,362.32877,19.202148,36.36383,4.332 1864,-37.865547,-126.37189,117.53442,278.04413,4.299 1864,-9.353108,-6.722595,39.516212,101.35904,4.233 1864,405.68707,-35.012074,29.18927,74.079445,4.133 1864,275.10788,377.06088,20.427765,40.480865,4.054 1864,619.28296,-6.5915213,19.09259,41.556614,4.05 1864,387.921,-16.129608,32.403137,64.424545,3.891 1864,18.416079,202.11713,40.83557,88.97571,3.849 1864,578.485,-8.218555,44.699158,92.81053,3.784 1864,304.62988,374.33722,22.816406,40.368378,3.725 1864,409.48932,-21.036522,20.200043,45.132347,3.706 1864,-5.808668,217.63377,18.977173,48.09474,3.652 1864,283.13403,354.0901,28.49997,56.25934,3.638 1864,275.03134,357.46503,19.189575,32.329895,3.626 1864,421.12106,-35.509315,29.152313,70.02186,3.599 1864,602.7619,-26.265484,52.737915,134.60428,3.579 1864,4.5693693,198.6392,37.288887,99.58675,3.573 1864,-13.666613,154.19937,47.823708,141.26193,3.572 1864,28.753036,175.35638,52.584717,116.290405,3.567 1864,-0.59718966,209.12575,26.226294,73.510056,3.564 1864,444.78894,204.16098,29.590973,65.2894,3.559 1864,139.81279,224.62924,28.972153,64.475525,3.544 1864,570.406,202.91005,20.230713,41.097977,3.515 1864,164.0615,256.7893,29.637863,61.05481,3.513 1864,393.50616,-17.11789,18.201141,40.853924,3.512 1864,531.2508,-18.724674,41.611877,83.006424,3.498 1864,125.112686,241.39955,30.654343,59.759354,3.462 1864,2.8968704,-17.312202,17.209946,42.173874,3.447 1864,417.39078,-20.248337,20.083466,44.267944,3.434 1864,-10.156507,197.59123,29.179138,71.95961,3.406 1864,48.176308,215.67642,34.61772,55.12085,3.384 1864,545.6868,-9.271778,45.210938,88.802734,3.384 1864,78.984116,323.05112,34.557457,66.195435,3.368 1864,373.8742,-16.049961,30.588928,66.57311,3.36 1864,596.6764,-12.026371,40.228577,98.96657,3.343 1864,613.77374,189.7903,36.66815,108.56508,3.281 1864,-8.646922,274.872,37.494274,109.73157,3.273 1865,87.89479,314.09708,31.391357,73.912445,14.873 1865,-11.089859,-32.084064,29.765007,71.957825,7.404 1865,-5.672267,-19.514355,17.865738,45.401184,7.015 1865,281.22745,374.29578,22.166443,40.798096,6.379 1865,610.3988,-47.33768,41.98938,99.66706,5.747 1865,-11.949483,478.11838,30.335976,63.200287,5.629 1865,-6.133082,489.29324,18.868225,42.105743,5.483 1865,626.8456,489.02017,20.179077,44.95822,5.366 1865,532.5123,-181.59343,149.37085,422.0658,5.31 1865,134.60818,274.9291,28.527023,65.142365,5.279 1865,288.79572,378.7888,22.276337,40.701355,5.222 1865,-17.773417,-62.675655,56.509575,141.44861,5.132 1865,612.7967,454.95523,39.65338,107.15689,5.125 1865,627.2126,-18.402544,17.332031,46.60901,5.091 1865,281.74832,362.26953,19.802063,36.0054,5.04 1865,586.7201,-98.66228,73.434204,232.34398,5.034 1865,48.26338,213.43188,26.504581,46.363556,5.023 1865,583.1474,411.56964,71.48328,176.59814,4.994 1865,26.417723,207.55891,33.96644,69.27611,4.992 1865,-21.952955,402.08105,79.40299,175.37103,4.861 1865,5.25169,184.05156,29.813293,77.29677,4.844 1865,-72.355835,267.1853,199.29759,460.11987,4.799 1865,536.1803,311.12415,143.02252,341.08533,4.669 1865,-70.53035,-189.37021,211.82446,456.0638,4.492 1865,270.3239,366.51202,30.407562,55.45169,4.412 1865,493.21408,225.86859,238.10513,516.07605,4.38 1865,139.8055,225.62515,28.94693,62.689026,4.36 1865,405.6508,-34.972298,29.090302,75.08725,4.319 1865,296.20892,376.5033,22.920074,38.0412,4.264 1865,19.321268,189.64546,30.513727,67.61311,4.246 1865,-37.981594,-126.2509,117.51935,278.06564,4.242 1865,387.5433,-15.961569,32.618744,64.14488,4.205 1865,-9.312004,-6.367275,39.69315,101.04654,4.205 1865,262.14685,356.54865,28.243988,57.50241,4.165 1865,289.46954,357.99014,19.2182,32.100555,4.156 1865,393.52512,-17.048275,18.335602,40.877346,3.99 1865,36.63241,195.11327,40.333527,83.114944,3.924 1865,66.5586,211.08134,33.71071,59.721237,3.883 1865,287.56262,368.74933,20.636108,35.238617,3.793 1865,409.46814,-20.853456,20.003235,45.352585,3.778 1865,12.817535,178.38878,54.038307,120.028854,3.754 1865,401.5843,-18.344196,19.22406,43.103935,3.74 1865,525.019,195.88528,29.127563,66.56534,3.739 1865,-10.362777,186.15543,28.737747,73.783844,3.736 1865,72.11148,217.69527,23.976242,36.753128,3.734 1865,373.9526,-16.084661,30.58957,66.42106,3.594 1865,-0.3837037,207.82947,26.282791,72.52515,3.581 1865,421.25308,-35.37509,28.623474,71.4353,3.563 1865,578.5753,-9.915096,44.49359,96.36319,3.541 1865,417.39334,-20.38411,19.836548,45.014496,3.506 1865,571.01276,206.82756,19.365784,44.997208,3.501 1865,44.329662,181.24323,52.89745,111.21948,3.5 1865,-13.630831,154.02197,47.201897,142.77533,3.499 1865,143.55374,222.53029,22.646072,39.62834,3.477 1865,276.90768,352.76785,36.3956,90.45755,3.474 1865,602.7381,-26.973652,53.264404,135.81409,3.47 1865,274.67914,357.0201,19.681702,32.725464,3.463 1865,381.01825,2.3909988,32.81714,67.38986,3.441 1865,79.14684,211.39441,24.062218,38.05774,3.424 1865,-4.930157,170.64633,17.27121,42.109146,3.415 1865,549.739,196.25192,26.75293,57.30156,3.409 1865,2.8490515,-17.32314,17.046562,42.68695,3.399 1866,91.973694,308.91138,28.388046,76.61359,11.547 1866,-11.106643,-32.567127,29.362823,72.19673,6.934 1866,-5.9690742,-19.318588,18.15731,44.894684,6.613 1866,281.16992,367.75854,21.138885,37.219025,5.884 1866,610.1965,-46.978886,42.25055,98.93055,5.791 1866,627.2409,-17.907204,17.220642,46.170002,5.593 1866,134.45482,272.73392,28.824997,67.677704,5.441 1866,-8.661542,465.3152,37.378807,90.90228,5.343 1866,532.4874,-181.48857,149.49445,422.2268,5.326 1866,-17.856405,-62.6546,56.711525,140.8526,5.3 1866,-6.02682,489.85535,18.628979,41.381897,5.098 1866,586.7224,-98.44218,73.53522,231.17236,5.087 1866,583.35974,411.66806,71.2923,176.40433,5.029 1866,297.3854,380.1478,21.34134,38.09494,4.954 1866,288.75217,374.0431,21.815857,39.74939,4.93 1866,612.8818,455.20035,39.31427,106.56839,4.886 1866,626.70953,488.33023,20.342957,45.82254,4.846 1866,-72.52125,267.1698,199.46342,460.14917,4.797 1866,-21.94458,402.40146,79.4899,174.98123,4.791 1866,282.33942,358.747,19.195587,30.961365,4.628 1866,536.242,311.4405,142.75494,340.96832,4.574 1866,262.0536,355.96603,28.734344,58.46454,4.541 1866,-70.70425,-189.60483,211.82254,456.1191,4.515 1866,-37.84658,-125.84701,117.42538,277.7573,4.408 1866,-9.167352,-5.9641075,39.7872,100.29544,4.359 1866,493.05038,225.83405,238.1531,516.7401,4.313 1866,404.57654,-21.595766,31.823181,65.83638,4.308 1866,27.706213,204.88992,32.25358,70.42935,4.299 1866,288.73984,362.6158,18.70633,35.749725,4.283 1866,5.5483904,186.7911,28.739132,76.3259,4.258 1866,270.17328,364.68097,30.440643,54.754578,4.188 1866,0.96512556,159.30841,47.89697,130.4685,4.142 1866,48.570213,214.63783,25.702011,45.29329,4.052 1866,71.4155,219.39525,23.587753,33.977142,4.028 1866,421.4395,-35.49628,28.942535,72.077545,3.981 1866,-5.385989,154.85309,18.134308,42.23448,3.944 1866,388.17917,-15.972446,32.526733,64.9882,3.937 1866,619.89984,-5.016474,18.510742,39.725334,3.892 1866,593.63184,196.87834,20.174805,30.969208,3.841 1866,18.865122,192.17636,29.792074,70.09854,3.809 1866,393.6764,-16.65878,18.195587,40.584213,3.777 1866,66.106834,212.11688,32.45468,56.387695,3.768 1866,-0.29855847,221.47183,26.48691,70.3457,3.744 1866,36.348778,192.2864,40.69265,84.457306,3.729 1866,409.4795,-20.600292,19.79477,44.644592,3.728 1866,-5.202863,196.00215,18.465685,50.811646,3.721 1866,305.24463,375.02307,21.348114,38.772583,3.66 1866,401.4824,-18.035738,19.365417,42.75237,3.659 1866,602.8639,-26.807755,53.464478,136.13922,3.609 1866,615.4766,-20.354965,27.065857,67.65005,3.597 1866,-4.8668413,228.56473,17.62872,43.733337,3.58 1866,-4.517977,172.67798,16.989588,41.15349,3.554 1866,-9.511262,185.87846,28.091904,74.302536,3.53 1866,1.7821789,-39.116344,43.092354,96.929855,3.519 1866,577.7092,-8.797585,45.28009,95.01338,3.503 1866,417.69598,-19.565754,19.548553,43.778706,3.4 1866,1.270541,192.18356,21.586391,59.584473,3.37 1866,274.9503,356.5657,19.335083,33.013885,3.368 1866,613.33887,190.77533,36.153687,108.277466,3.342 1866,596.2963,-12.268188,41.019592,101.235374,3.323 1866,89.81456,235.54039,21.889732,33.44359,3.296 1866,12.004585,198.0801,54.295464,121.281906,3.263 1866,425.7032,-20.515572,19.282227,44.320557,3.239 1866,522.40485,-38.290993,59.42987,124.43795,3.229 1867,92.58773,308.1512,27.79969,74.524994,10.338 1867,-5.7635922,-19.341066,17.99594,44.582344,7.127 1867,-11.058453,-32.105846,29.510506,71.92455,7.104 1867,280.8024,372.71094,22.6604,42.563354,6.409 1867,610.4572,-47.5622,41.786682,100.416565,5.762 1867,627.21246,-17.835785,17.072815,46.800133,5.66 1867,-6.087785,489.00195,18.897806,42.44696,5.504 1867,134.4484,275.4036,28.665558,65.34827,5.436 1867,-11.87477,477.59686,30.19896,63.575134,5.417 1867,626.4765,487.85995,20.624634,46.266266,5.292 1867,532.5555,-181.62996,149.42169,422.22852,5.279 1867,-17.602232,-62.968544,56.21254,141.45894,5.205 1867,586.6939,-98.313354,73.3811,231.63173,5.14 1867,583.19543,411.58185,71.446655,176.5296,5.024 1867,262.0448,356.24216,29.334259,57.026978,4.922 1867,288.75403,378.4226,22.126434,42.163177,4.867 1867,612.8432,455.2244,39.407776,106.41098,4.859 1867,-72.34297,267.0041,199.27487,460.14435,4.8 1867,-21.941196,402.22046,79.459625,174.89294,4.75 1867,536.20844,311.12433,142.91144,340.90082,4.646 1867,281.9021,358.78683,19.682648,30.906525,4.623 1867,-70.55147,-189.38736,211.67833,455.63528,4.467 1867,296.3013,376.18655,22.929932,38.77664,4.372 1867,-37.93649,-126.07349,117.437805,277.50467,4.369 1867,493.07495,225.90524,238.17822,516.3646,4.349 1867,0.115237236,184.97748,25.238377,73.74628,4.315 1867,-9.191508,-6.416149,39.442787,100.551926,4.256 1867,404.53186,-22.856258,32.198975,65.9324,4.079 1867,381.24863,-13.9163685,31.752838,63.287796,4.075 1867,573.6397,-23.61089,53.49054,124.12607,3.984 1867,623.54724,-21.903135,26.440674,71.18828,3.971 1867,-4.7898817,173.36478,17.103638,39.568573,3.956 1867,71.86571,222.2522,22.998642,33.259094,3.907 1867,18.911093,194.01265,30.924765,66.95628,3.869 1867,541.3667,-22.177994,55.878357,120.771484,3.808 1867,273.3473,366.0087,23.198395,39.323486,3.781 1867,602.46326,-26.612663,53.18445,134.70447,3.765 1867,288.29572,361.46875,19.8609,37.26834,3.743 1867,11.8905525,173.50896,54.937824,123.20064,3.709 1867,5.083382,221.9989,27.948948,67.81238,3.657 1867,393.46265,-17.297115,18.637878,40.741898,3.63 1867,409.15753,-21.019978,20.436127,44.992935,3.629 1867,-13.330475,152.07654,47.42069,144.54813,3.578 1867,2.9353542,-17.411118,17.144007,42.692543,3.566 1867,299.25116,370.06607,31.951904,53.535095,3.552 1867,389.72855,-33.595394,29.072998,74.03244,3.538 1867,531.47485,-18.02896,41.21704,82.28703,3.511 1867,-5.4662647,156.21597,17.533453,40.385635,3.51 1867,3.756454,184.27022,39.419693,101.09117,3.484 1867,-5.7573466,196.55089,18.983086,50.28955,3.463 1867,-5.3589144,226.73003,18.06678,45.243607,3.462 1867,575.7671,169.4719,49.15161,125.57913,3.415 1867,-8.852009,50.03537,38.71445,108.63612,3.404 1867,620.0898,-5.766431,18.255798,40.397465,3.397 1867,417.20703,-20.383999,20.060455,44.47897,3.382 1867,-7.696763,215.90964,37.28189,100.6423,3.374 1867,421.09546,-35.146027,29.214966,70.32468,3.369 1867,27.1445,211.06108,32.194748,62.946762,3.343 1867,274.50977,356.91916,19.668213,32.81366,3.299 1867,496.69327,-43.09808,46.986725,94.02336,3.266 1867,505.72354,-18.247831,18.815582,40.103848,3.263 1867,563.85077,-17.914534,40.913635,83.87776,3.257 1867,618.35535,490.19775,20.906189,43.09784,3.256 1867,401.38458,-18.624691,19.84552,42.899696,3.242 1867,1.9927597,-40.037956,42.59494,98.108955,3.236 1867,464.5792,-43.96832,46.82306,95.03398,3.232 1867,597.46436,-23.307667,39.198364,93.02643,3.216 1868,92.83951,310.28525,27.965958,74.16141,12.403 1868,-10.995368,-32.545856,29.578709,71.92055,7.217 1868,-5.780652,-19.416962,17.922457,44.881145,6.832 1868,281.64066,374.85715,21.25528,39.389526,5.684 1868,610.4168,-46.96981,42.180542,99.487785,5.661 1868,-11.986188,478.08197,30.40353,63.740234,5.545 1868,626.6058,488.31073,20.390015,45.69336,5.453 1868,134.79196,274.42966,28.50528,65.814575,5.446 1868,627.2067,-17.97743,17.095947,46.640217,5.397 1868,532.473,-181.82936,149.44928,422.6195,5.321 1868,-17.569029,-63.024178,56.32263,142.18193,5.191 1868,586.61993,-98.465294,73.44733,232.24222,5.123 1868,-6.059978,489.71555,18.891457,42.29538,5.117 1868,583.31964,411.72882,71.31622,176.37158,5.045 1868,281.9422,362.0147,19.568146,36.4086,5.033 1868,612.8448,454.76337,39.514526,107.191956,4.848 1868,-72.2618,267.02243,199.17647,459.9528,4.814 1868,-21.897911,402.22998,79.317276,175.01404,4.767 1868,289.82233,379.4719,20.773102,39.024048,4.684 1868,297.2779,380.0718,21.86621,39.517212,4.647 1868,536.3537,311.38486,142.69305,340.94498,4.574 1868,262.0624,356.20557,28.60971,57.770752,4.472 1868,-70.659874,-189.36882,211.69614,455.49402,4.454 1868,-37.617012,-125.74967,117.40153,276.89227,4.392 1868,492.99435,225.80103,238.2167,516.51526,4.33 1868,-9.090389,-6.779278,39.333992,101.460236,4.198 1868,387.67633,-16.127542,32.59906,64.86229,4.082 1868,586.7593,199.33577,20.589233,39.25241,3.977 1868,289.1721,357.58713,19.731232,32.61783,3.953 1868,3.7228131,209.64282,29.489616,70.058105,3.873 1868,405.6372,-35.06742,29.225647,75.12306,3.865 1868,-5.5916414,226.35022,18.765633,46.6734,3.821 1868,-4.973548,172.81354,17.060024,39.039886,3.775 1868,393.52368,-16.765932,18.349121,40.885193,3.747 1868,269.63605,366.17923,31.253693,54.24414,3.713 1868,78.42338,217.74976,24.824997,35.863937,3.689 1868,274.9223,356.50702,19.506744,33.052856,3.661 1868,619.8908,-5.7259874,18.299377,41.09457,3.659 1868,578.4771,-8.630024,44.774353,95.36981,3.648 1868,-5.6192446,247.92871,17.248825,41.27179,3.638 1868,602.6318,-26.763142,53.425232,136.10802,3.634 1868,381.81506,2.7031326,32.436157,68.59374,3.571 1868,-5.229453,153.7145,17.601017,42.259567,3.547 1868,615.644,-20.339632,26.527039,68.09004,3.524 1868,26.896347,206.15817,32.74164,66.788666,3.501 1868,19.786894,188.59627,29.614576,73.42442,3.498 1868,528.49963,-41.343895,47.06317,92.11802,3.479 1868,140.33334,225.8886,27.849854,63.893234,3.469 1868,-5.0998454,197.50458,18.106953,48.20717,3.437 1868,287.7625,368.98572,20.374512,34.715515,3.43 1868,2.0391555,491.03598,19.788431,40.852753,3.415 1868,374.03775,-16.002943,30.840332,66.24308,3.41 1868,300.07956,369.75604,30.838348,51.79944,3.378 1868,0.5791807,152.78757,49.485676,135.28384,3.375 1868,2.8390737,-17.53304,16.987896,42.883698,3.368 1868,-8.403864,49.166267,37.928024,110.66845,3.357 1868,-10.954162,212.23724,29.441025,70.941345,3.336 1868,-3.6122217,348.85703,14.904672,35.325104,3.332 1868,43.31634,214.33105,33.691433,64.8396,3.332 1868,1.9496727,-39.972107,42.74808,98.623665,3.316 1868,72.50279,214.23486,34.91108,58.713562,3.315 1868,401.53522,-18.283024,19.323853,42.99821,3.307 1868,438.01038,-33.095634,28.42926,68.18677,3.302 1868,576.34576,170.7882,48.88507,125.091446,3.291 1868,613.73267,190.14291,35.971924,107.86575,3.282 1868,409.5575,-20.91022,19.82022,45.292004,3.276 1868,266.20285,378.68408,21.28183,36.16089,3.271 1868,506.42535,-4.016037,20.152344,36.277298,3.27 1868,597.588,-22.060043,39.626465,92.89286,3.264 1868,525.6861,-16.432928,30.349243,61.64656,3.25 1868,-7.92673,259.9586,36.91412,108.7301,3.231 1868,554.5625,-38.107185,59.84546,127.04586,3.227 1868,496.77216,-42.547035,46.729126,93.477234,3.21 1868,442.4837,-18.559729,18.07901,40.119236,3.208 1868,276.69766,351.03558,37.231964,90.608734,3.204 1868,-14.310865,166.32155,49.81842,146.02654,3.199 1868,458.6233,-40.931076,59.115173,132.87675,3.196 1868,417.41208,-20.101252,19.691986,44.406296,3.189 1869,92.20018,308.58783,28.529633,76.287384,9.657 1869,134.9153,274.9007,29.235718,65.65848,8.69 1869,-11.159263,-32.213047,29.7019,71.7529,6.915 1869,-6.0284686,-19.028664,18.231142,44.30545,6.594 1869,-11.741886,478.97012,30.081825,62.830353,5.822 1869,610.48047,-47.507896,42.001526,100.078705,5.783 1869,281.07843,373.16406,22.467041,42.26651,5.584 1869,532.5659,-181.68944,149.29993,422.7723,5.432 1869,-6.1427665,489.79715,18.878176,41.57321,5.43 1869,-17.793816,-62.948032,56.314674,141.43506,5.156 1869,586.80396,-98.78811,73.34485,232.85025,5.111 1869,583.07874,411.83496,71.59155,176.315,5.068 1869,626.46484,488.09286,20.741882,46.433258,5.026 1869,627.1819,-18.803268,17.522217,47.61253,4.97 1869,612.7642,455.0153,39.671997,106.95749,4.931 1869,-72.28044,267.00146,199.12418,460.08276,4.784 1869,-21.935558,402.27512,79.371735,175.12308,4.737 1869,281.19113,361.5268,20.719849,36.92746,4.737 1869,536.2307,310.89758,142.84161,341.00195,4.668 1869,296.35495,376.01904,22.595184,37.8226,4.488 1869,-70.54297,-189.26076,211.84198,455.50836,4.43 1869,493.20938,225.74854,238.25699,516.456,4.32 1869,261.64697,355.81982,29.48581,57.956482,4.313 1869,406.02026,-34.97974,28.741852,74.7773,4.277 1869,288.7664,378.30136,21.673706,41.521667,4.269 1869,-9.302013,-6.896557,39.482056,101.71918,4.264 1869,-37.887604,-126.5289,117.54729,278.37122,4.229 1869,-5.883088,230.13971,18.714031,41.17221,4.099 1869,2.9644156,223.0993,30.649708,67.05969,4.054 1869,388.20355,-16.528238,32.00226,64.90385,3.989 1869,578.1443,-9.392754,44.744385,94.59817,3.956 1869,26.80231,211.83469,33.896847,61.570465,3.92 1869,3.4756422,187.62636,39.697765,95.58745,3.913 1869,289.32605,358.20303,19.667511,32.117554,3.828 1869,63.171417,220.81958,24.322906,35.049835,3.824 1869,-13.941222,152.17395,47.675884,142.0152,3.823 1869,2.036553,491.32138,19.396187,39.91983,3.808 1869,89.06788,237.33409,22.858177,33.883743,3.791 1869,53.467514,219.74953,26.26146,38.88655,3.787 1869,1.0739017,237.94678,22.147211,42.385986,3.785 1869,12.280323,176.34573,54.641186,117.55832,3.785 1869,56.914425,214.17984,36.0314,59.33835,3.763 1869,304.9311,374.96243,21.882019,38.73236,3.669 1869,602.94763,-27.286102,53.17578,136.70961,3.665 1869,287.13016,367.9147,21.37024,35.810608,3.609 1869,421.15952,-35.235115,29.099335,71.33394,3.577 1869,618.3804,198.81973,19.69928,43.255814,3.575 1869,602.2457,205.48515,20.49469,39.738968,3.519 1869,531.2584,-19.075834,41.62805,82.87152,3.493 1869,409.7554,-20.666542,19.886993,45.14954,3.49 1869,615.44666,-21.76382,27.157593,69.30122,3.464 1869,613.0952,201.46501,36.89856,115.1656,3.464 1869,393.57526,-16.886892,18.130554,40.761795,3.453 1869,2.5726004,-17.06649,17.652664,42.28573,3.416 1869,134.29713,251.50058,28.63829,65.05463,3.414 1869,-4.653163,171.40067,16.958427,41.233902,3.386 1869,598.0926,200.54349,38.33972,110.88248,3.386 1869,34.701904,201.49019,41.989395,87.438156,3.362 1869,540.80493,-23.378029,56.717285,123.35251,3.356 1869,596.4368,-12.97731,40.797424,101.42012,3.345 1869,-5.903201,248.45575,18.43082,41.04077,3.338 1869,575.7481,173.49182,50.52594,122.51846,3.335 1869,374.13306,-15.99852,30.159302,65.72278,3.328 1869,165.207,256.85822,29.232697,65.74933,3.322 1869,80.298,220.363,23.198135,33.214645,3.314 1869,401.54785,-18.296461,19.270966,43.044445,3.304 1869,417.54788,-19.969645,19.714417,44.278904,3.304 1869,-7.8818035,215.36537,37.13006,101.061295,3.303 1869,-12.220709,226.48878,30.44761,65.42177,3.3 1869,-8.468662,50.204445,38.37803,108.08407,3.295 1869,1.6621661,194.67215,20.54131,52.072662,3.27 1869,2.0390987,-39.530792,42.61924,97.7731,3.269 1870,92.80641,309.06635,27.525314,75.60602,12.653 1870,-11.306849,-32.077305,29.635563,71.0089,7.298 1870,-5.898324,-19.536058,18.01043,44.768127,7.052 1870,281.2663,374.3692,21.786682,40.059998,6.793 1870,-11.947735,477.2315,30.382725,64.38336,6.432 1870,571.7457,269.39056,31.24414,73.02289,6.213 1870,134.54451,280.12354,27.392471,65.369934,5.932 1870,610.57837,-48.192543,41.858276,101.43083,5.697 1870,281.63824,362.28418,20.05307,35.7294,5.347 1870,532.5678,-181.1559,149.56232,422.75586,5.314 1870,-17.704826,-62.825775,56.310577,141.61456,5.166 1870,-6.16683,488.84888,19.105455,42.774414,5.162 1870,612.8689,454.8373,39.64276,107.16745,5.162 1870,626.4866,487.92712,20.79834,46.117737,5.128 1870,627.24835,-18.439863,17.289307,46.867508,5.065 1870,289.33923,378.19684,21.005219,40.88025,5.031 1870,586.71497,-99.17,73.55591,232.66154,5.022 1870,536.69324,311.34833,142.42407,338.26416,4.891 1870,583.0097,410.83264,71.906006,178.04797,4.856 1870,-21.821388,402.69278,79.26039,174.71494,4.814 1870,-1.2503409,212.40903,28.260685,66.82553,4.787 1870,-72.298294,267.29504,199.07736,459.98334,4.769 1870,296.50256,376.49924,22.60382,36.73999,4.751 1870,-5.8114014,229.91447,18.453386,41.665054,4.65 1870,-70.545105,-189.21259,211.73764,455.47906,4.48 1870,71.59924,222.1789,23.194344,32.96637,4.437 1870,493.61322,226.82538,237.6983,514.9655,4.434 1870,270.24573,365.03226,30.90738,56.443024,4.42 1870,-9.2566595,-6.882332,39.46475,101.52921,4.418 1870,387.7681,-16.602331,33.047394,65.509476,4.389 1870,404.42908,-20.678436,32.12503,64.53893,4.336 1870,4.831054,189.98322,29.033558,71.1355,4.298 1870,-37.956142,-126.364334,117.330536,278.1394,4.283 1870,289.41888,358.2363,19.595306,31.68518,4.214 1870,-4.210574,172.14883,16.73766,39.04515,4.195 1870,12.817194,178.9836,54.33596,115.688095,4.16 1870,495.69577,268.18707,23.797638,38.326263,4.145 1870,262.3036,356.41534,28.6344,57.920074,4.136 1870,89.91295,223.71797,21.209976,31.367645,4.114 1870,54.93141,219.03917,25.413734,40.79854,4.067 1870,19.025276,209.33833,32.953274,61.90059,4.046 1870,-5.413849,198.82213,18.425362,45.747665,4.009 1870,1.3586545,196.2979,21.487967,51.038925,3.913 1870,287.8602,368.01233,20.37561,35.572754,3.787 1870,393.47806,-16.850416,18.389954,40.654232,3.777 1870,43.942245,216.46042,32.847748,61.68509,3.749 1870,274.83157,357.72955,19.226318,32.06131,3.703 1870,550.5388,264.48727,39.816345,78.44418,3.698 1870,80.34009,221.68237,21.900887,31.864822,3.693 1870,139.88748,225.07657,28.53186,63.43402,3.682 1870,58.887066,215.14903,32.445118,56.09044,3.675 1870,564.0331,292.92056,30.878784,63.20169,3.642 1870,603.11115,-28.427021,52.827576,138.12701,3.641 1870,409.28107,-20.47986,20.130493,44.48961,3.638 1870,2.8986728,-17.445766,16.957535,42.339703,3.632 1870,1.9376099,489.99304,19.982445,41.830566,3.591 1870,615.39026,-22.092913,27.110474,68.99791,3.56 1870,3.7655008,200.13179,38.802357,98.13435,3.537 1870,373.85226,-16.09056,30.822296,66.715,3.527 1870,401.33682,-18.138233,19.493134,42.362843,3.525 1870,381.41327,2.4244232,33.3396,66.98663,3.511 1870,297.22318,361.85605,19.65686,36.86847,3.473 1870,-13.6966095,154.0858,47.550926,141.0901,3.458 1870,619.6708,-6.8800344,18.931702,41.32368,3.448 1870,517.10077,261.67856,39.389893,79.67282,3.421 1870,563.13745,279.9448,21.489258,39.78592,3.415 1871,93.83513,308.03326,27.519928,76.87128,9.878 1871,-5.743072,-19.083178,17.95641,44.73228,6.884 1871,-11.133259,-32.19751,29.73383,72.69091,6.677 1871,281.65582,374.26794,21.283234,40.00702,5.987 1871,610.4607,-47.510345,41.92816,100.269485,5.649 1871,134.98694,275.64227,28.812836,63.290253,5.62 1871,627.1579,-18.308329,17.267517,47.72476,5.396 1871,-8.810614,464.94565,37.46769,91.328094,5.385 1871,282.2492,358.23544,19.457184,31.0542,5.332 1871,-17.873518,-62.767754,56.65526,140.9309,5.314 1871,532.484,-181.78685,149.26031,422.2456,5.277 1871,-6.007755,489.23596,18.720917,42.327393,5.217 1871,612.7785,454.8595,39.654846,107.16345,5.184 1871,586.53424,-98.47457,73.5116,231.73514,5.18 1871,626.5832,488.3035,20.503113,45.8024,5.021 1871,583.2234,411.76498,71.45227,176.29312,4.992 1871,289.74698,378.93854,20.436218,39.448547,4.951 1871,-72.381836,267.3263,199.40918,460.03296,4.819 1871,296.6226,376.7904,22.052734,37.650696,4.817 1871,-21.988873,402.30444,79.46213,175.03638,4.8 1871,288.24765,361.9347,19.358856,36.20865,4.729 1871,536.3435,311.43872,142.81818,340.60205,4.666 1871,262.14304,350.42148,29.06845,59.581696,4.486 1871,403.74905,-22.624744,32.74112,65.40047,4.482 1871,-70.65053,-189.24628,211.80824,455.33627,4.48 1871,-9.186491,-6.3799515,39.54441,101.05952,4.44 1871,3.7226331,215.69722,29.391983,65.64766,4.421 1871,492.945,225.86618,238.09308,516.19385,4.389 1871,387.84174,-16.651258,33.303894,64.72845,4.382 1871,-5.6042824,230.89464,18.306326,41.632828,4.353 1871,277.80276,354.31885,27.550903,53.60614,4.252 1871,-37.87997,-126.27785,117.3598,278.56876,4.245 1871,2.1087313,239.51251,20.506004,41.734497,4.217 1871,26.57467,209.94882,32.236183,63.115692,4.162 1871,305.2132,375.17612,21.717041,39.006775,4.118 1871,-4.8605,171.7418,17.313902,41.085007,4.062 1871,455.83795,240.69046,21.980621,44.161102,4.02 1871,578.2286,-9.465393,44.719666,95.96579,3.9 1871,393.42618,-17.339808,18.77829,41.150112,3.898 1871,401.06464,-18.894936,20.058868,43.208668,3.856 1871,409.1008,-21.205935,20.459503,45.045418,3.854 1871,164.22424,258.05923,30.671677,64.60666,3.751 1871,274.89902,355.87708,19.569489,33.45352,3.731 1871,88.72543,221.52167,22.89521,34.081833,3.717 1871,-5.372734,250.29951,17.414938,39.620285,3.708 1871,602.86206,-26.913853,52.724182,135.98993,3.706 1871,-14.150051,168.80942,49.365513,141.93753,3.695 1871,417.18997,-20.952139,20.352417,44.229103,3.684 1871,446.11432,238.63766,29.939606,65.26117,3.681 1871,65.66627,211.14801,34.0895,60.356934,3.624 1871,615.5218,-21.114462,26.619202,69.687706,3.621 1871,596.6924,-12.733353,40.14911,101.55426,3.568 1871,618.8035,183.44626,18.191711,41.573883,3.565 1871,12.85428,176.39746,53.701347,118.93088,3.511 1871,2.8360505,-17.097158,17.178219,42.58749,3.498 1871,373.88318,-16.228142,30.746582,66.09836,3.489 1871,619.2923,-18.707464,17.581299,44.645443,3.468 1871,147.75961,235.58238,40.409058,88.979324,3.466 1871,132.17503,234.56343,39.018066,89.88072,3.449 1871,382.4461,-34.09018,28.339172,75.40181,3.443 1871,613.285,189.72324,36.409546,107.7984,3.424 1871,48.908165,216.44324,26.121956,43.741547,3.423 1871,2.1311474,195.70428,20.999191,51.616135,3.399 1871,139.8755,223.57794,28.40419,65.11151,3.377 1871,-5.021627,198.43643,17.996407,46.39583,3.373 1871,297.26633,362.08197,19.307617,36.35669,3.368 1871,1.8513107,-39.223198,42.915806,97.09984,3.367 1871,2.3406827,490.53302,19.356104,40.68219,3.366 1871,-11.610866,217.15176,30.442196,67.132904,3.357 1871,421.0833,-35.274124,29.3208,68.85034,3.332 1871,19.703238,196.5311,29.852755,65.0423,3.325 1872,91.764206,308.58557,28.291885,78.879974,12.328 1872,-11.301258,-32.06334,29.543537,70.02451,6.864 1872,-5.8422747,-19.564476,18.022907,44.570133,6.486 1872,-5.9750915,489.41812,18.624956,42.3107,6.103 1872,-11.593398,478.12048,29.977707,63.549744,6.032 1872,-0.11176467,187.86778,25.337013,73.67403,5.825 1872,610.45483,-47.683693,41.937866,100.14202,5.713 1872,134.83371,274.31497,28.096039,66.470245,5.69 1872,627.0907,-18.481224,17.46106,47.418198,5.41 1872,532.385,-181.79268,149.5224,422.44336,5.31 1872,621.3969,476.4792,29.33258,68.414,5.266 1872,281.6541,362.4342,19.90158,35.217743,5.158 1872,-17.625658,-62.795284,56.299713,141.54619,5.146 1872,586.6371,-99.01765,73.55524,232.53687,5.078 1872,-5.3344946,196.96994,18.976414,49.529602,5.065 1872,583.20886,411.9053,71.43115,176.15659,5.05 1872,-72.215195,267.27405,199.04306,459.81738,4.783 1872,-21.799812,402.4941,79.17916,174.97696,4.775 1872,3.9299989,199.00668,38.4127,98.02841,4.699 1872,289.0489,374.48953,21.718872,40.168213,4.696 1872,536.2582,311.04126,142.90613,341.43848,4.641 1872,297.28775,379.04117,22.02127,41.72467,4.623 1872,277.0641,366.3511,30.365967,56.39279,4.598 1872,270.46545,352.1321,28.537964,56.72818,4.472 1872,-13.676409,153.57341,47.87735,141.24995,4.452 1872,-70.594955,-189.32094,211.77966,455.16724,4.437 1872,405.646,-35.448666,29.30127,75.15547,4.41 1872,-5.9625144,229.6495,18.882298,42.614655,4.403 1872,-37.98171,-126.2623,117.53024,277.80728,4.39 1872,493.12314,225.98373,238.18253,516.1471,4.351 1872,-9.198932,-6.2626114,39.5459,100.22733,4.334 1872,18.28819,201.79105,41.83484,90.12085,4.276 1872,-4.387414,173.3017,17.122719,39.274536,4.274 1872,388.05325,-16.421112,32.55237,65.215515,4.163 1872,304.99277,374.77673,22.01474,39.437683,4.114 1872,289.52618,358.38153,19.118286,31.539368,3.922 1872,2.0639176,490.3392,19.456738,41.202423,3.813 1872,19.648201,187.51488,31.114136,70.33028,3.705 1872,117.7585,235.72037,40.441635,91.81555,3.696 1872,615.6792,-21.497866,26.854126,69.9785,3.68 1872,598.32556,192.7554,37.444702,102.19815,3.672 1872,-5.5598574,249.66212,17.598083,39.83159,3.667 1872,28.646564,174.23468,52.86717,118.5567,3.662 1872,613.7481,189.64616,36.049194,108.40517,3.658 1872,409.22003,-21.414177,20.55658,45.95989,3.651 1872,393.46713,-17.168785,18.79419,41.4174,3.65 1872,613.83563,148.01355,34.652832,100.20662,3.553 1872,274.67007,357.11032,19.520172,32.84662,3.538 1872,567.32275,195.59059,26.939392,59.89412,3.538 1872,-7.7905536,216.44118,37.202896,99.70509,3.531 1872,603.0921,-27.960331,53.06018,137.5758,3.513 1872,-11.580249,215.70078,30.223583,67.47238,3.495 1872,578.1829,-10.131321,44.7995,96.51402,3.425 1872,1.8476593,240.24951,21.017187,39.738953,3.404 1872,-5.437691,138.35617,17.376228,41.79492,3.392 1872,417.3132,-20.85792,20.235199,45.29908,3.387 1872,2.0017076,-39.52744,42.657543,97.604485,3.37 1872,261.72656,364.44376,29.346497,56.41931,3.37 1872,-4.7641535,156.49066,17.096746,40.129868,3.351 1872,581.19275,201.70943,39.640015,105.764206,3.346 1872,-9.082888,50.197598,38.724472,109.96689,3.346 1872,619.85425,-6.3746986,18.749939,42.370403,3.344 1873,92.1983,308.33566,27.931015,76.794525,11.618 1873,135.10811,276.37292,28.75087,64.815186,7.415 1873,-10.919256,-31.94303,29.53851,71.876205,6.979 1873,-5.664647,-18.960043,17.945717,44.62128,6.623 1873,281.15317,373.34995,22.256012,42.407135,6.149 1873,-12.060326,477.10922,30.821793,64.167755,5.816 1873,610.57263,-47.1224,41.789917,100.02265,5.605 1873,289.28745,377.8649,21.625153,42.668823,5.482 1873,-6.1905184,488.84308,19.260998,42.891113,5.46 1873,627.1501,-17.881636,17.315247,46.87472,5.454 1873,532.375,-181.36887,149.43835,421.59116,5.255 1873,626.4599,488.19244,20.671143,46.08142,5.224 1873,282.1713,358.83188,19.771729,31.475403,5.098 1873,586.6087,-98.61743,73.60358,231.84813,5.066 1873,-17.518991,-63.103413,56.172104,142.48918,5.048 1873,583.2475,411.70923,71.38385,176.48682,5.036 1873,269.84616,363.69128,31.162018,58.12671,4.992 1873,612.69794,455.12726,39.50049,107.07623,4.991 1873,-72.42695,266.87616,199.25778,460.40314,4.816 1873,-21.886404,402.3895,79.36981,174.99716,4.805 1873,-1.2115395,212.43484,28.137857,65.51254,4.742 1873,35.788788,211.60797,34.424767,59.237762,4.694 1873,536.2144,311.05792,142.88165,341.47852,4.663 1873,296.48022,375.79318,22.760712,38.717712,4.647 1873,288.3036,361.67508,19.810608,37.014343,4.641 1873,0.95466375,192.04071,20.851007,57.69345,4.564 1873,387.85217,-16.222698,32.562897,65.593506,4.487 1873,-70.49284,-189.34247,211.77405,455.4847,4.427 1873,404.56104,-21.967274,32.349792,65.96281,4.415 1873,261.8619,355.25006,29.047943,58.51596,4.41 1873,492.93546,225.811,238.23776,516.45056,4.369 1873,-4.309038,195.80403,18.029856,50.81662,4.327 1873,-37.89741,-126.373985,117.54141,278.24783,4.309 1873,48.060753,216.64651,26.630783,43.209167,4.303 1873,3.580252,185.32669,29.569757,76.88052,4.261 1873,-9.146562,-6.886013,39.431843,101.66995,4.207 1873,-5.9109898,229.30026,18.482956,42.029633,4.139 1873,615.22375,-20.35727,26.64209,68.723816,4.127 1873,19.125885,207.84634,33.635033,63.04239,3.779 1873,578.12177,-9.700336,45.077454,95.8436,3.777 1873,409.574,-20.749287,20.038727,44.690193,3.768 1873,602.81995,-26.737106,53.16156,136.30162,3.761 1873,393.6499,-16.94207,18.293,40.855663,3.754 1873,164.66882,254.69861,29.12947,71.20715,3.708 1873,12.009857,175.28006,54.00271,117.28299,3.686 1873,274.24777,359.63507,21.241974,37.411194,3.681 1873,-13.662521,167.40695,48.65777,142.69858,3.652 1873,3.9521337,199.04593,37.80301,98.70773,3.635 1873,421.06674,-35.90913,29.287811,71.45684,3.628 1873,417.35898,-20.124586,20.204254,44.40068,3.603 1873,2.7036977,-17.198553,17.35073,43.175056,3.592 1873,-6.0057583,249.24892,18.231441,39.57744,3.553 1873,617.8984,186.73553,18.435303,39.114975,3.542 1873,401.46072,-18.057281,19.372375,42.448013,3.538 1873,442.25842,-19.326015,18.449127,40.956814,3.518 1873,277.1787,353.0543,29.415985,52.777344,3.448 1873,613.4069,190.01584,36.191467,108.125336,3.439 1873,299.7949,368.72516,31.409363,53.43936,3.437 1873,619.405,-5.6875553,18.81189,41.66485,3.418 1873,296.96252,361.41495,19.979187,37.88498,3.416 1873,90.91597,249.11748,31.802795,58.80513,3.415 1873,613.5777,148.60884,34.842712,100.464066,3.385 1874,91.93021,306.94348,28.427727,77.92926,12.86 1874,484.496,235.84895,34.84268,74.25429,6.772 1874,280.95648,372.54102,22.550476,40.903687,6.33 1874,-10.978725,-32.64558,29.247917,71.66552,6.313 1874,-5.9402184,-19.343235,18.204945,44.452393,6.217 1874,610.44794,-47.996998,42.00598,100.30055,5.998 1874,-11.734671,477.22424,29.980953,64.97693,5.769 1874,135.04047,274.16962,28.384552,64.902405,5.692 1874,-6.07257,489.35065,18.887167,42.247253,5.69 1874,532.66473,-181.86021,149.41302,422.8568,5.342 1874,626.46454,487.68268,20.552063,46.36023,5.203 1874,-17.6536,-63.101288,56.282364,141.3492,5.198 1874,627.28784,-18.407019,17.191223,47.386772,5.084 1874,586.6428,-99.247055,73.60132,232.49643,5.025 1874,583.22986,411.89566,71.512695,176.31076,4.985 1874,612.9427,454.944,39.3183,106.68381,4.852 1874,296.24762,375.71875,23.19458,38.169495,4.845 1874,-21.895369,402.28827,79.28258,175.01349,4.809 1874,262.1821,356.01944,29.529999,57.21982,4.798 1874,536.20496,311.48883,143.12817,339.89056,4.756 1874,-72.315285,267.18665,199.0629,459.8999,4.743 1874,281.77435,358.67636,20.212646,31.30597,4.74 1874,-5.5036592,228.28293,18.279816,43.18863,4.594 1874,4.7477903,212.25995,29.625286,65.173706,4.578 1874,19.190212,205.98837,33.666466,66.43851,4.524 1874,493.7019,227.02829,237.38623,514.77356,4.444 1874,287.97305,361.1994,20.160767,37.494263,4.42 1874,4.86178,176.33496,29.816702,71.10042,4.396 1874,-37.97663,-126.409615,117.62534,277.81628,4.361 1874,-70.51339,-189.25562,211.89471,455.49402,4.352 1874,-9.1601,-6.5574493,39.419064,100.53719,4.344 1874,289.35806,377.15436,21.235687,41.277832,4.197 1874,480.54468,214.93338,50.733643,117.80734,4.183 1874,405.91046,-34.889256,29.033722,75.14104,4.086 1874,388.2669,-16.467834,31.956207,66.27714,4.042 1874,-4.9371448,196.06714,18.355093,50.014282,4.026 1874,409.63412,-21.04465,19.950958,45.539467,3.98 1874,496.78198,240.28497,32.370117,78.18201,3.904 1874,-5.266775,248.28981,17.343838,41.05815,3.826 1874,11.803517,174.76805,54.287624,118.85454,3.815 1874,274.1526,359.75357,21.86502,38.037903,3.733 1874,-5.28024,171.85092,17.18097,42.270218,3.697 1874,2.2004461,236.22751,21.039158,43.28363,3.685 1874,79.940796,215.75421,23.898544,37.602997,3.67 1874,276.7815,353.02075,29.64264,52.927277,3.594 1874,36.576374,202.19788,33.974117,68.17328,3.589 1874,509.7992,208.05878,29.196106,61.504272,3.583 1874,393.6762,-17.057428,18.19873,41.2242,3.564 1874,299.77902,369.25092,31.258911,51.54239,3.554 1874,2.0023477,490.38684,19.827864,40.829834,3.545 1874,270.14807,365.6432,30.029785,57.530487,3.539 1874,480.23816,223.2799,27.66684,62.7453,3.539 1874,615.79785,-21.985462,26.731323,69.43552,3.52 1874,597.94995,203.0728,38.189392,106.833145,3.52 1874,401.70377,-18.453375,19.110565,43.433685,3.512 1874,603.1746,-28.340088,52.927673,139.28963,3.499 1874,462.22327,-34.546513,28.105103,68.08208,3.494 1874,417.3779,-20.301384,19.956238,44.83029,3.49 1874,172.52946,258.8922,32.882553,74.90344,3.486 1874,10.810846,192.82231,31.617285,70.2888,3.485 1874,613.50745,203.665,36.720764,110.45268,3.478 1874,575.95776,171.87254,49.803223,124.20076,3.473 1874,-13.2972765,152.36609,47.14833,143.05042,3.471 1874,421.06418,-35.513493,28.68634,71.31567,3.469 1874,2.1750224,183.26822,20.674961,48.95999,3.463 1874,-0.2466631,194.29695,26.697681,73.00444,3.442 1875,92.188194,310.38504,28.255142,76.98303,14.191 1875,-5.805703,-18.963057,18.029556,44.237152,7.269 1875,-11.128402,-31.692322,29.803085,70.86659,7.144 1875,619.36285,207.7894,20.507507,60.70819,7.067 1875,-11.782435,477.53842,30.262558,63.99289,6.231 1875,135.02399,274.4508,28.713043,64.51987,5.679 1875,610.38464,-47.385944,42.081787,99.80625,5.65 1875,-6.2670326,489.03125,19.09252,42.76416,5.523 1875,627.11566,-17.731934,17.245605,47.161774,5.493 1875,-6.14921,238.31151,18.504671,41.254684,5.454 1875,490.51544,-182.6791,234.05255,428.6044,5.28 1875,-17.513319,-62.826557,56.018677,141.80049,5.203 1875,4.332737,209.93378,30.354832,60.57773,5.07 1875,586.72327,-98.59955,73.52063,231.45717,5.024 1875,583.18945,411.92728,71.40393,176.04257,4.999 1875,626.41284,487.7191,20.73529,46.45981,4.979 1875,281.4784,373.9544,21.957794,40.592773,4.935 1875,282.25174,358.06705,19.622528,31.217194,4.889 1875,612.82574,455.0619,39.366394,106.548584,4.792 1875,-72.394135,267.27814,199.24188,460.0517,4.792 1875,-21.875494,402.38605,79.29138,174.91516,4.761 1875,536.2321,311.06097,142.82477,341.25616,4.657 1875,0.8679879,203.77148,21.50955,52.6203,4.582 1875,-4.9283185,199.56961,18.5961,48.221848,4.537 1875,18.29116,203.54144,41.69072,85.91785,4.518 1875,-70.62816,-189.71613,211.94334,455.8662,4.468 1875,493.13232,226.04837,238.11938,516.3685,4.365 1875,-37.879833,-125.89136,117.54062,277.6428,4.314 1875,-9.14967,-6.8854446,39.31514,101.56441,4.311 1875,1.5939093,226.6122,21.592499,41.27446,4.259 1875,289.4128,379.50708,21.463226,38.877563,4.183 1875,-14.266433,167.66525,49.392136,139.91568,4.168 1875,269.60696,364.5922,31.754059,55.8154,4.159 1875,387.87787,-16.453169,32.564667,66.03336,4.111 1875,288.5096,360.96252,19.550903,37.011658,4.082 1875,405.73868,-34.720333,29.49585,74.54705,4.042 1875,296.6518,376.566,22.470795,36.835663,4.041 1875,261.3349,352.09982,29.867615,58.172455,4.02 1875,-5.881015,222.28348,19.217802,41.290436,3.99 1875,613.52954,203.4771,35.65393,108.34694,3.963 1875,28.797237,175.95525,53.39307,112.39577,3.847 1875,12.268357,221.26367,31.900658,65.18347,3.83 1875,615.4036,-20.63535,26.733887,68.23828,3.803 1875,2.8272505,-17.597927,17.146152,42.99864,3.753 1875,578.0968,-9.557041,45.245544,94.44878,3.747 1875,409.7084,-20.599943,19.806702,44.318085,3.693 1875,570.93634,204.00195,19.935486,43.33319,3.693 1875,-0.3605652,157.30132,50.83269,124.93068,3.664 1875,23.96484,222.26012,25.05999,47.56688,3.651 1875,620.03656,-5.538992,18.363464,40.998222,3.647 1875,-11.600909,217.26657,29.889996,64.04068,3.641 1875,393.59985,-16.817654,18.082703,40.452145,3.56 1875,35.145786,210.40508,35.046482,60.323868,3.557 1875,599.06177,201.72751,37.18286,104.90683,3.525 1875,2.1389377,490.31714,19.748213,41.317993,3.521 1875,580.9493,204.40433,39.729492,100.18283,3.501 1875,-4.5105815,174.7957,16.928799,38.003357,3.492 1875,602.8502,-26.91188,53.372864,135.15503,3.49 1876,613.36646,205.2241,25.81311,75.44878,54.792 1876,92.20641,309.4052,27.564034,76.18713,22.893 1876,-5.7091546,-19.200033,17.782244,44.822933,7.182 1876,-11.031694,-32.205357,29.485025,71.661705,7.168 1876,599.08563,209.2884,37.492493,105.95415,6.491 1876,-6.1972103,489.84204,19.103338,41.451965,5.695 1876,-11.837284,479.0704,30.328724,62.426117,5.689 1876,610.539,-47.35103,42.02069,100.504395,5.651 1876,281.4429,374.20706,21.582733,39.121796,5.638 1876,627.1493,-17.814138,17.12854,47.1377,5.484 1876,626.596,488.2175,20.380066,45.669037,5.402 1876,490.8338,-183.19614,233.89398,429.64316,5.395 1876,-17.35173,-63.325302,55.78683,142.83572,5.23 1876,134.1503,273.78137,29.42746,67.26257,5.224 1876,583.20166,412.2602,71.3869,175.81073,5.026 1876,586.91296,-98.89739,73.13269,232.65009,4.98 1876,612.73645,455.89532,39.454712,105.82031,4.949 1876,281.51685,362.01508,20.297241,36.08026,4.927 1876,-0.80494523,213.19096,28.476501,66.01869,4.884 1876,-72.268135,267.00644,199.06158,459.95328,4.76 1876,-21.934797,402.20013,79.387,174.854,4.739 1876,536.0813,310.97864,143.08551,341.5099,4.729 1876,269.82794,364.23212,31.539093,56.288574,4.573 1876,296.47623,376.62894,22.646484,36.805725,4.508 1876,-70.51377,-189.21872,211.74432,455.15067,4.438 1876,493.03796,226.11197,238.49438,516.6654,4.338 1876,-37.78008,-126.84216,117.37082,278.02786,4.289 1876,387.98102,-15.774191,32.605072,64.6272,4.284 1876,-9.005466,-7.0760155,39.15804,101.74507,4.237 1876,-5.9946775,203.32426,18.918243,47.368362,4.228 1876,404.43234,-21.078548,31.911346,64.69783,4.192 1876,525.48254,197.94077,28.277771,65.61182,4.145 1876,612.9682,228.45914,36.83838,114.462616,4.131 1876,289.24915,380.15454,21.127533,38.299744,4.024 1876,615.32837,-20.321552,26.522583,68.98053,4.002 1876,-4.657069,174.01187,17.134369,38.838364,3.958 1876,-5.8756304,228.97888,19.061329,42.276,3.921 1876,289.4721,357.35385,19.459778,32.41037,3.902 1876,304.95856,375.07935,22.173279,38.348694,3.897 1876,11.447492,176.78108,56.31757,119.12941,3.881 1876,261.96484,352.40875,29.490356,58.230835,3.88 1876,612.7806,152.81342,35.22357,102.661026,3.791 1876,65.51315,212.58644,34.283752,60.87358,3.77 1876,578.1322,-9.34753,45.22589,96.29169,3.747 1876,602.8877,-26.706043,52.99463,137.86887,3.739 1876,-14.148807,152.2309,47.69655,143.25049,3.723 1876,1.0177183,182.08179,25.409702,67.04791,3.701 1876,2.6395416,187.52469,40.917084,97.390045,3.692 1876,393.61902,-16.706678,18.299988,40.19579,3.672 1876,591.05554,195.84204,28.326843,60.85025,3.66 1876,623.56836,212.50717,20.14392,56.836334,3.648 1876,598.3892,169.07956,37.730408,90.314575,3.629 1876,401.5904,-17.623426,19.179382,41.593544,3.599 1876,602.85425,204.23625,23.12201,52.886,3.569 1876,62.95643,218.79535,25.365372,39.024353,3.567 1877,93.62357,308.14642,26.908882,77.03198,14.012 1877,-10.787376,-32.791714,29.628885,73.505035,7.279 1877,-5.7208037,-19.410666,18.16862,45.49469,7.03 1877,533.4606,172.33061,28.841309,74.097885,6.113 1877,435.10437,272.03268,37.24048,85.676056,5.99 1877,627.2104,-17.739576,17.046265,46.303753,5.911 1877,-12.127516,478.77448,30.617935,62.599854,5.795 1877,610.3612,-47.221695,41.959656,98.559494,5.779 1877,138.82248,263.35815,30.287552,69.53418,5.732 1877,-5.902586,197.88742,19.396465,47.19568,5.714 1877,281.27713,374.51636,22.391266,40.71991,5.655 1877,585.85455,-98.34389,74.591064,231.18379,5.498 1877,-6.303728,489.88742,19.190094,41.70462,5.457 1877,613.1464,454.05896,39.272522,108.431274,5.352 1877,0.083162785,212.14975,27.151466,67.34219,5.2 1877,490.4729,-181.8012,234.84662,428.79727,5.084 1877,12.175698,174.8135,53.890793,122.60455,5.064 1877,626.48596,487.41553,20.7406,46.523315,5.031 1877,-17.430475,-62.59851,56.38405,141.92264,5.029 1877,133.84584,281.91263,30.823349,73.69577,4.964 1877,296.08502,376.08063,22.96167,38.9256,4.937 1877,289.20743,378.55826,21.27536,41.264008,4.889 1877,535.6896,310.23993,143.46448,340.59442,4.859 1877,583.50714,411.86014,71.5755,176.35648,4.856 1877,-21.854515,402.66537,79.291245,174.71494,4.797 1877,561.7917,320.56458,34.08844,87.32184,4.764 1877,492.6532,226.33719,238.40625,516.2457,4.735 1877,-72.26222,267.815,199.00592,459.25458,4.728 1877,1.1355937,196.9386,21.96165,51.60417,4.577 1877,282.16016,358.71997,19.309204,30.322906,4.454 1877,-70.66185,-189.10497,211.95404,454.9013,4.408 1877,-38.089684,-126.10149,117.73138,278.61618,4.278 1877,4.262216,196.50008,37.702477,101.82808,4.252 1877,-5.690406,228.1716,18.32312,43.330444,4.224 1877,388.2213,-16.234543,31.959076,66.11027,4.199 1877,-9.014975,-6.6201057,39.36218,101.04613,4.126 1877,-13.4833145,153.95456,47.227016,141.8721,4.108 1877,28.242268,210.94728,31.88847,60.423782,4.102 1877,262.12796,355.84012,28.857422,56.706726,4.064 1877,405.6578,-35.295063,29.41803,74.77803,4.001 1877,573.52655,-23.30149,54.719543,126.99731,3.937 1877,620.04626,-4.3590946,17.94989,38.76278,3.908 1877,288.29056,361.57773,19.624725,36.813812,3.84 1877,615.7199,-20.682583,26.204529,67.094604,3.795 1877,172.80135,254.36043,32.089462,78.6992,3.75 1877,35.97695,190.91797,40.1382,88.115906,3.658 1877,-11.632552,215.18033,29.905724,67.37955,3.636 1877,532.714,289.80435,63.76587,143.68332,3.635 1877,2.572099,-18.285707,17.546843,44.51033,3.584 1877,299.7687,369.08554,31.342865,52.79886,3.535 1878,588.1383,204.13693,28.620667,68.4267,75.923 1878,578.26807,200.19183,28.405396,76.20337,28.925 1878,93.73562,309.53732,27.101974,74.73309,13.773 1878,135.04758,270.3991,27.089813,66.73041,7.698 1878,-10.976777,-33.003963,29.477139,73.80285,6.842 1878,-5.8745556,-18.77337,18.140287,44.926765,6.678 1878,610.51825,-47.304966,41.849182,99.476364,5.731 1878,-5.8160186,490.11725,18.340862,41.4942,5.616 1878,-8.525833,465.07077,37.372917,91.216644,5.517 1878,627.0716,-18.190365,17.332092,46.65967,5.316 1878,532.5796,-182.16785,149.29755,423.4484,5.29 1878,626.50665,487.56262,20.602844,46.483826,5.276 1878,276.76917,365.90158,29.831238,54.99771,5.175 1878,583.1242,412.98798,71.49707,174.98932,5.159 1878,4.0693593,214.4162,31.30978,62.342346,5.131 1878,612.55804,455.68512,39.559265,106.0069,5.078 1878,288.9108,378.1375,21.725769,41.535217,5.052 1878,-17.310242,-62.688385,56.17159,141.97858,5.037 1878,586.714,-99.03306,73.59235,232.01874,4.969 1878,613.5665,217.91745,35.248474,104.38071,4.944 1878,296.70557,379.65057,22.385406,40.433655,4.896 1878,568.88086,202.21608,28.021484,81.71266,4.867 1878,-21.82005,402.59763,79.28337,174.86942,4.831 1878,0.8619487,184.92311,24.174562,76.00212,4.81 1878,-72.30328,267.3656,199.09103,459.9779,4.806 1878,18.042809,217.36829,34.73071,61.897797,4.8 1878,555.79144,198.17859,30.470032,76.61832,4.69 1878,281.6085,361.884,19.987213,37.2601,4.667 1878,536.3392,310.5997,142.5766,341.35843,4.663 1878,262.02426,356.2564,28.704254,58.591583,4.532 1878,12.193041,178.10307,54.289444,116.447556,4.508 1878,576.6759,198.26662,48.32257,119.17549,4.456 1878,-70.36895,-188.79745,211.5174,454.61374,4.321 1878,492.9524,226.30719,238.74426,516.66656,4.311 1878,-37.990246,-125.829124,117.59482,278.72464,4.262 1878,-9.116992,-6.5160637,39.288883,100.76448,4.234 1878,-5.6356373,201.92627,19.250296,51.46045,4.222 1878,405.13208,-21.968536,31.25293,66.50043,4.152 1878,388.10898,-16.504435,32.067352,65.82602,4.13 1878,149.35875,224.72647,28.9655,54.593384,4.106 1878,63.840164,216.77585,24.108757,38.61989,4.067 1878,-13.536162,154.29204,47.558132,139.9059,4.063 1878,304.99646,374.6421,22.084167,39.169647,3.929 1878,-7.4408045,213.62143,36.79674,102.65051,3.898 1878,615.32587,-20.372818,26.999573,67.75194,3.858 1879,572.7168,204.38745,29.496582,69.463684,83.871 1879,94.72313,308.6049,26.817055,74.98465,10.69 1879,282.18793,371.4941,21.17862,37.89508,10.122 1879,561.36304,202.79066,29.00122,68.03795,8.772 1879,296.93262,376.49423,22.14917,34.67868,7.063 1879,-10.892227,-32.45202,29.560349,72.31599,6.92 1879,578.5218,200.64688,34.884644,94.533356,6.867 1879,-5.766799,-18.766146,17.859856,44.24214,6.694 1879,135.53603,271.31415,27.013428,69.08478,6.369 1879,-5.9957433,489.65585,18.51539,41.266632,5.997 1879,610.3061,-47.010326,42.21637,99.29471,5.884 1879,269.7367,361.1445,32.201843,52.58612,5.558 1879,-11.784164,479.10434,30.177225,62.017548,5.535 1879,532.90125,-182.53032,149.30096,425.55215,5.525 1879,282.5175,357.66086,18.583832,31.101929,5.499 1879,598.2443,212.13312,37.490112,113.27545,5.228 1879,627.266,-18.291597,17.33789,47.20599,5.209 1879,4.465989,190.47357,28.799732,67.10364,5.202 1879,626.46265,487.9525,20.7547,46.215088,5.151 1879,-17.526218,-62.570206,56.488815,141.66548,5.127 1879,612.93384,454.60968,39.480713,107.823975,5.099 1879,583.1522,410.99512,71.81329,177.16217,4.953 1879,587.9383,197.3209,30.287048,64.40437,4.906 1879,536.1576,309.51526,143.23914,341.61108,4.862 1879,-5.7285094,197.73859,18.698967,45.087234,4.856 1879,-72.23445,267.2313,199.23581,459.95047,4.853 1879,587.2847,-99.45476,72.92493,232.34093,4.817 1879,-21.843891,402.24768,79.20967,175.18079,4.802 1879,503.04214,297.25778,35.35849,83.49332,4.774 1879,267.15042,371.94916,20.9198,36.100708,4.762 1879,63.490402,217.57298,24.913239,40.989883,4.696 1879,535.0477,197.03757,36.62567,79.27933,4.644 1879,65.806786,213.16434,34.253426,58.55667,4.579 1879,274.68015,361.59985,21.057892,35.19632,4.54 1879,47.169758,214.40494,27.671383,47.95874,4.429 1879,305.6296,376.19223,21.57959,35.07553,4.423 1879,493.17767,226.44986,238.67938,515.51086,4.419 1879,572.621,200.01901,52.395447,164.46964,4.409 1879,547.3531,196.15436,51.039185,137.28125,4.391 1879,-70.40551,-189.02968,211.7381,455.49762,4.37 1879,3.7528145,198.73808,38.597515,98.42995,4.368 1879,615.2402,-20.998245,27.116394,68.94277,4.348 1879,-9.078097,-6.1043434,39.525814,99.934235,4.33 1879,-37.745544,-125.62534,117.53887,278.48917,4.319 1879,-0.10796428,210.55632,28.727535,69.37846,4.299 1879,614.08704,215.72913,35.156067,118.08624,4.289 1879,287.94678,363.79825,19.167358,32.442657,4.244 1879,445.33923,178.72287,28.706512,82.6597,4.185 1879,-5.6087,155.79855,17.37553,39.713882,4.181 1879,19.010502,214.1885,33.68691,60.579773,4.171 1879,12.456608,176.49818,54.384617,118.23851,4.154 1879,353.93417,356.6665,37.43759,55.530518,4.137 1879,-5.542908,172.73872,17.647402,39.370728,4.133 1879,139.71101,246.99225,28.581314,70.99426,4.095 1880,560.2628,204.43767,27.431335,66.177536,65.915 1880,103.137474,307.18958,27.825829,75.10867,19.244 1880,572.3074,211.30151,24.567383,56.723907,11.128 1880,141.23888,265.2303,29.12503,69.27518,8.507 1880,-11.069021,-32.85047,29.464499,72.73076,7.218 1880,-5.7186456,-19.162184,17.888836,44.78966,6.702 1880,-6.1674347,489.49594,18.845469,41.553497,5.923 1880,627.1949,-18.018013,17.128723,46.946667,5.848 1880,-12.023432,479.03107,30.532095,62.048157,5.822 1880,610.53015,-47.721367,41.8407,100.01974,5.721 1880,544.23596,199.34277,30.45813,73.17224,5.383 1880,532.7769,-182.34111,149.07745,425.5015,5.371 1880,626.50934,488.192,20.615662,45.874603,5.23 1880,-17.440332,-63.079117,56.08014,142.24742,5.104 1880,612.65027,455.41415,39.594482,106.49698,5.095 1880,583.1041,412.12637,71.54059,176.07663,5.077 1880,-5.5252514,204.55518,19.38121,50.478302,5.043 1880,536.3325,309.45642,143.3982,340.8645,4.902 1880,-72.478745,266.7367,199.79033,460.41925,4.889 1880,-21.86406,402.08298,79.433426,175.25351,4.817 1880,587.15686,-99.58749,73.12256,232.85034,4.777 1880,-2.0873332,206.56401,27.170866,67.72319,4.566 1880,493.64594,226.61368,237.43365,514.7991,4.476 1880,577.557,200.3266,30.829346,65.48193,4.369 1880,-70.61856,-189.31778,211.57327,454.87305,4.32 1880,-37.900005,-126.4569,117.540436,279.17865,4.311 1880,-9.14521,-6.871456,39.4166,100.922516,4.279 1880,337.60718,333.9525,36.364563,53.982178,4.255 1880,-13.471099,152.13278,47.415085,140.03088,4.19 1880,590.01654,194.19208,30.040161,61.836212,4.183 1880,2.5943053,184.90947,29.969152,75.132095,4.136 1880,295.10913,342.35944,26.48407,39.87372,4.117 1880,597.8591,204.7222,36.666138,98.52612,4.058 1880,45.17437,213.28993,31.614502,53.258347,4.054 1880,284.15787,335.12408,31.891174,59.86789,4.024 1880,56.012917,218.4942,23.370674,36.9093,3.966 1880,525.83887,196.48871,28.177917,68.67444,3.962 1880,-4.4656672,173.02315,16.802368,39.953186,3.936 1880,-5.965849,229.90378,18.72506,42.67282,3.911 1880,74.169815,222.17227,23.779945,38.216064,3.887 1880,579.5299,213.94977,38.77478,97.716125,3.829 1880,613.87854,218.04855,35.746765,109.61456,3.775 1880,78.083984,214.73306,30.00039,51.855377,3.774 1880,548.74255,212.93466,39.80597,93.636444,3.705 1880,388.73254,-17.27422,31.059875,66.0433,3.662 1880,-11.339451,215.37746,29.4594,69.20213,3.659 1880,56.06384,346.17804,34.874805,50.015076,3.656 1880,11.513033,172.91306,54.823532,114.75998,3.627 1880,277.1713,326.32193,28.538727,50.53708,3.6 1880,602.8527,-27.944454,53.55713,137.67426,3.592 1880,2.0928926,491.47284,19.816528,40.1214,3.576 1880,406.26004,-35.517853,28.44522,75.44064,3.559 1880,619.46893,-17.837631,17.028015,43.435028,3.552 1880,615.85565,-21.01725,26.233215,68.269066,3.552 1881,557.25586,204.24724,27.34076,64.763626,74.616 1881,545.4075,201.59906,29.70398,68.86963,19.291 1881,-11.127629,-32.715153,29.47668,72.58881,7.236 1881,-5.7997775,-19.018703,18.000238,44.33295,6.919 1881,-6.027687,489.6626,18.623615,41.626526,6.11 1881,610.2735,-46.774876,41.96527,98.491104,5.807 1881,627.08215,-17.848293,17.139648,46.8667,5.794 1881,-11.901417,478.92743,30.141294,62.722534,5.577 1881,532.92993,-183.17142,149.25818,427.48312,5.479 1881,11.20075,204.30418,53.363083,134.76021,5.396 1881,1.0157633,213.11256,27.893913,76.05284,5.383 1881,583.16473,411.77728,71.42828,176.18011,5.122 1881,-17.393103,-62.766865,56.40931,141.73122,5.105 1881,626.4324,488.37283,20.758118,46.13559,5.05 1881,-72.558174,266.47913,200.55107,461.11072,5.02 1881,612.9719,454.56097,39.543213,107.394165,4.95 1881,16.108086,232.14362,37.3516,67.72095,4.887 1881,536.2432,309.78345,143.80084,342.4214,4.865 1881,80.614784,215.69843,23.588478,40.294006,4.778 1881,90.67921,216.09721,32.45117,64.3257,4.777 1881,587.40247,-99.58562,72.703674,233.16646,4.761 1881,579.43823,205.14983,38.15033,95.50774,4.746 1881,-21.587914,402.39404,79.185005,175.08942,4.738 1881,33.867004,217.86356,34.763474,56.53409,4.72 1881,73.3674,218.62762,21.994293,36.223022,4.59 1881,528.67596,200.55225,23.669922,55.42131,4.524 1881,493.96906,227.01105,237.3822,514.94714,4.467 1881,1.7449296,193.86993,20.908195,58.83084,4.46 1881,325.53036,302.35638,31.769745,57.131317,4.293 1881,-0.5428648,159.66061,51.808292,126.901215,4.281 1881,-37.850437,-125.45992,117.331024,277.82016,4.265 1881,-70.373215,-188.86401,210.99281,454.96457,4.244 1881,51.967064,217.01723,31.61126,53.537186,4.203 1881,567.8931,203.05353,21.528809,52.63159,4.178 1881,159.81454,259.9694,32.34967,65.92651,4.162 1881,-3.9415312,198.80316,17.388569,47.615936,4.089 1881,-8.958576,-6.278553,39.337788,100.006195,4.045 1881,132.387,300.80045,20.697632,49.673706,4.011 1881,28.319752,195.61598,52.36279,124.671646,4.006 1881,388.74677,-16.674847,31.335785,64.66449,4.003 1881,297.23157,307.56894,21.996002,46.02655,3.996 1881,259.49185,298.30444,31.733704,65.797516,3.923 1881,48.44403,232.65453,22.764313,36.514786,3.883 1881,116.13219,215.23265,29.080078,58.44899,3.865 1881,547.37085,206.5618,39.195557,98.230194,3.856 1881,198.18527,213.37071,25.82811,59.329758,3.829 1881,2.8947127,216.74161,39.073093,107.829956,3.828 1881,518.0274,207.3757,38.95111,84.41574,3.788 1881,406.0414,-35.792664,28.946991,75.08448,3.787 1881,581.2932,192.83177,28.947876,60.237,3.782 1881,615.55,-19.85537,26.384216,67.12826,3.767 1881,603.0253,-26.774208,52.92157,135.14407,3.752 1881,2.866643,-17.494038,17.180305,42.943134,3.745 1881,560.5597,203.65584,38.128723,87.36595,3.733 1881,619.64606,-6.324094,18.620667,41.613388,3.715 1881,17.759918,190.75362,41.986576,87.828964,3.715 1881,3.0196958,314.1626,19.67944,39.607544,3.711 1881,57.256752,234.38167,22.017822,34.103806,3.691 1882,542.45184,206.00314,28.047913,61.70294,72.785 1882,528.14984,202.74387,31.226013,65.89917,9.413 1882,-11.012305,-32.293465,29.509872,72.05776,7.116 1882,-5.8389244,-19.403576,18.045103,45.111324,6.649 1882,-4.703062,215.01474,17.89937,45.098267,6.555 1882,610.33746,-47.31064,42.131104,99.69893,5.754 1882,553.6884,206.4634,29.01233,61.32637,5.722 1882,-11.955597,476.72736,30.045185,64.40967,5.537 1882,-6.078451,488.75458,18.783632,42.821655,5.478 1882,627.1273,-18.31147,17.236023,47.304127,5.47 1882,532.67896,-183.15582,149.1095,426.56174,5.194 1882,-72.59192,265.60187,200.83852,462.3819,5.17 1882,583.15784,412.10944,71.43762,176.01813,5.047 1882,-17.510868,-62.867798,56.37721,141.84966,5.044 1882,1.2951112,220.53572,21.227608,46.842422,5.014 1882,626.42065,488.17383,20.803528,46.194885,5.012 1882,318.18158,272.0204,27.978577,55.884766,4.948 1882,612.8535,454.91418,39.542175,106.73218,4.944 1882,587.08014,-99.265274,73.115234,232.15324,4.863 1882,-21.5074,402.83945,78.992096,174.76779,4.822 1882,536.10364,309.77258,144.0556,342.29907,4.802 1882,268.7712,269.51932,30.064667,57.276184,4.509 1882,493.82077,227.48053,237.31296,515.10516,4.437 1882,-70.50665,-189.22685,211.40237,455.28235,4.341 1882,313.25568,277.40213,22.142273,44.832245,4.325 1882,333.40152,268.11798,29.588837,59.020874,4.285 1882,-6.0541706,234.12872,19.234205,48.02826,4.251 1882,-37.844826,-125.79109,117.55095,279.02826,4.249 1882,-15.0761175,192.4473,51.214684,129.1423,4.099 1882,215.39001,225.74359,22.245758,37.492218,4.083 1882,615.55896,-21.244324,26.887024,69.86622,4.023 1882,-9.2303295,-6.3008614,39.371307,100.88327,3.98 1882,-15.135963,121.62975,49.88658,143.11398,3.979 1882,3.012436,-17.811968,17.14439,43.524014,3.814 1882,-9.030012,199.02643,28.041466,65.60397,3.807 1882,299.3634,277.45898,17.6557,28.63263,3.776 1882,286.2388,270.9063,28.127563,49.54724,3.738 1882,459.80362,204.54616,27.185059,59.673203,3.731 1882,405.94305,-35.823124,28.67096,74.78147,3.714 1882,613.66064,148.978,34.804382,99.13539,3.695 1882,100.67077,216.23016,39.532753,88.38922,3.692 1882,290.5431,274.71417,19.356323,31.163696,3.681 1882,519.84674,195.86276,28.655823,64.97717,3.678 1882,409.4481,-20.854395,19.798157,44.81833,3.66 1882,546.12646,210.6564,39.08087,96.96112,3.655 1882,578.0645,-9.484646,44.92688,96.26016,3.646 1882,122.35696,226.68488,20.677864,34.086853,3.64 1882,83.783646,214.54308,40.698105,90.46394,3.639 1882,564.3235,203.20335,29.361084,62.04265,3.631 1882,252.4963,266.65625,32.153778,62.33432,3.621 1882,417.42902,-20.265839,19.809692,44.015594,3.596 1882,614.5377,190.91507,35.09497,108.0379,3.593 1882,421.1822,-35.14853,28.875122,69.85222,3.583 1882,393.83624,-16.790684,17.905823,40.23741,3.557 1882,113.856804,225.50392,21.58033,36.954605,3.542 1882,602.55743,-27.605007,53.38031,136.23764,3.515 1882,4.3692636,213.80965,28.398438,65.992935,3.49 1882,581.38983,206.1662,38.30365,101.01605,3.44 1882,105.584946,218.45041,21.480896,38.530487,3.408 1882,401.72275,-17.99111,18.819702,41.72432,3.406 1882,390.22687,-34.249054,28.320435,74.53192,3.405 1882,619.4512,-18.59591,17.319885,43.94643,3.402 1882,536.9644,200.79608,21.615295,43.906494,3.392 1882,522.16876,-17.239323,17.878357,39.25579,3.388 1882,-5.0116568,155.82605,16.682737,40.202408,3.384 1882,281.6551,273.99927,22.092041,39.894135,3.384 1883,535.47217,207.82622,27.7547,58.494156,48.174 1883,546.4942,211.78891,26.634583,52.57019,8.94 1883,521.4521,203.49008,31.442444,68.71805,8.051 1883,-5.785606,-19.165207,18.038132,44.980293,7.288 1883,-11.050282,-32.532528,29.492092,72.97108,6.81 1883,1.7148948,272.91757,21.414267,44.290894,6.425 1883,610.5432,-48.046936,41.862793,100.57206,5.795 1883,-6.357572,489.1761,19.506481,41.91858,5.734 1883,-8.57769,465.65332,37.29719,90.65106,5.591 1883,627.0568,-18.8098,17.39972,46.97473,5.336 1883,532.68604,-182.89418,149.22736,426.08667,5.241 1883,-72.13446,265.84427,200.46208,463.0294,5.237 1883,621.52313,477.18155,29.568787,67.80594,5.216 1883,583.0985,412.0409,71.54932,175.98285,5.122 1883,-17.602919,-62.954582,56.384254,141.58961,5.116 1883,-21.448818,402.94135,78.91928,174.72656,4.873 1883,536.0139,309.6809,144.19373,342.53925,4.858 1883,586.9609,-99.17183,73.14075,232.6833,4.854 1883,269.92755,253.46689,27.676208,55.221313,4.771 1883,254.39217,251.74353,27.235489,60.426697,4.624 1883,493.9098,227.31778,237.09668,515.47375,4.492 1883,2.4446976,290.6465,18.924692,38.246094,4.398 1883,-70.29681,-188.751,211.07004,454.4793,4.375 1883,312.93268,261.17783,21.537994,36.980408,4.238 1883,-37.778385,-125.443924,117.28354,278.81775,4.193 1883,-5.5454535,283.19305,19.02038,43.761993,4.126 1883,-9.312248,-6.876053,39.484425,101.34735,4.092 1883,118.11191,239.27501,29.682724,60.494095,3.964 1883,225.94882,219.0766,21.152756,40.783966,3.943 1883,287.0596,256.66928,27.15512,49.12039,3.924 1883,-14.349977,151.34126,47.977596,142.23729,3.816 1883,546.281,215.11528,39.412354,92.97487,3.738 1883,406.13788,-35.211834,28.637573,75.79841,3.718 1883,297.70795,262.8104,20.571991,33.42389,3.698 1883,409.7821,-20.543259,19.458984,45.45841,3.691 1883,-4.164128,251.60416,15.980988,41.05426,3.685 1883,570.0735,203.31097,22.062805,46.149994,3.681 1883,603.13745,-28.357258,52.905334,138.9147,3.66 1883,555.67377,204.40042,30.372314,53.824615,3.638 1883,602.951,196.3364,18.278809,31.911041,3.629 1883,-5.187849,155.76329,17.398289,41.04625,3.622 1883,530.99554,212.54353,39.519104,91.19878,3.61 1883,2.6769114,-17.089907,17.365562,42.814617,3.563 1883,101.80805,236.30444,29.988579,55.185547,3.551 1883,180.59314,241.44928,31.785095,62.461487,3.538 1883,-5.750429,213.46745,18.490881,46.33336,3.529 1883,578.9654,208.70256,20.18872,45.47606,3.519 1883,-5.6112647,139.40283,17.576717,40.809982,3.513 1883,602.85535,205.872,20.032715,40.215454,3.5 1883,612.8804,232.89903,38.36786,113.48009,3.5 1883,389.57294,-17.8163,30.429047,67.288666,3.496 1883,-8.402361,49.930874,38.188255,110.00371,3.495 1883,149.363,215.99681,38.286804,76.96132,3.492 1883,283.06873,259.0253,19.222504,32.09912,3.477 1883,401.63174,-18.043068,18.87268,42.99421,3.452 1883,301.80902,257.98352,28.05133,49.201843,3.448 1883,10.92145,240.20517,72.481705,195.50626,3.441 1883,417.30457,-20.101286,19.919678,45.35473,3.418 1883,1.6007352,490.15454,20.730856,40.606384,3.409 1883,496.39035,-43.5013,47.554047,94.09744,3.391 1883,-8.994829,254.9992,38.155907,92.0199,3.362 1883,-4.860272,171.41069,17.080423,41.646255,3.361 1883,170.81006,243.5838,21.051956,39.17932,3.352 1883,597.60126,157.04733,37.392334,90.67749,3.324 1883,306.09058,260.86218,19.898315,30.285675,3.322 1883,420.8758,-35.626266,29.417969,71.09833,3.317 1883,393.8147,-17.007288,17.8378,41.25618,3.303 1883,613.68604,192.67612,35.342407,102.90979,3.295 1883,1.8378925,-39.95471,42.753365,97.8925,3.289 1883,484.35178,209.22913,40.49588,86.40085,3.267 1884,534.8293,214.52605,26.945557,62.48445,55.071 1884,1.4535457,365.45206,19.8853,65.94171,6.617 1884,-10.952109,-32.779743,29.730755,74.030785,6.22 1884,627.2622,-17.73509,17.186646,45.55261,5.924 1884,-11.785984,476.9888,29.941662,64.98251,5.919 1884,610.7444,-47.853653,41.553345,100.44396,5.869 1884,-6.216714,488.70193,19.11456,42.818207,5.814 1884,-5.9006877,-17.673733,17.8973,43.685493,5.725 1884,-17.376059,-63.138767,56.333153,142.7033,5.183 1884,532.4453,-182.7409,149.46814,425.16193,5.158 1884,529.86926,209.50546,23.629028,52.651398,5.107 1884,583.1238,412.0125,71.43262,176.01593,5.095 1884,626.5184,487.6715,20.572815,46.654175,5.095 1884,-72.39437,266.8997,199.95233,461.25668,5.081 1884,612.7998,455.47913,39.360962,106.31897,5.043 1884,-22.150589,400.23178,79.424416,177.09116,5.013 1884,586.7313,-98.8843,73.37219,231.6427,4.91 1884,536.0236,310.1413,144.18744,342.51642,4.84 1884,232.87866,223.84305,20.828064,34.120636,4.649 1884,550.66785,211.30742,23.262207,52.290115,4.536 1884,546.79626,215.15277,39.09784,97.26611,4.506 1884,494.08588,226.72253,237.09198,515.6068,4.439 1884,-70.45375,-188.85614,210.89394,454.64655,4.336 1884,60.566296,218.60281,32.331867,59.92154,4.296 1884,-37.505123,-125.20917,116.92403,277.21652,4.18 1884,0.103400946,327.5616,26.159855,73.70065,4.152 1884,186.44568,225.4903,20.480072,40.635254,4.131 1884,-8.832306,-7.025177,39.1956,101.00114,3.889 1884,612.99255,233.5756,37.44232,111.55122,3.871 1884,6.821387,353.32056,32.50088,72.71039,3.863 1884,519.8397,208.42226,37.36853,85.336716,3.853 1884,526.5901,201.0841,49.706116,119.16962,3.829 1884,-4.8655996,298.55185,16.093395,38.34729,3.82 1884,149.48378,233.44577,28.585464,60.594055,3.781 1884,-4.0391593,331.31638,16.91405,42.66342,3.735 1884,574.2214,196.72232,27.79602,59.40689,3.695 1884,619.562,-17.735449,17.141968,42.5928,3.676 1884,-7.203227,356.4529,35.538948,106.40317,3.672 1884,528.41626,-41.84794,47.211914,90.85413,3.664 1884,598.49963,203.51692,36.73053,109.02861,3.657 1884,414.43405,-36.892525,27.733734,75.12656,3.64 1884,402.48047,-18.803062,17.615204,42.425137,3.615 1884,582.25757,205.28049,37.612976,102.77985,3.61 1884,246.52393,240.02934,30.036163,67.09483,3.604 1884,393.82666,-18.080475,17.834686,41.504807,3.597 1884,-4.1273165,347.10547,17.169865,45.05237,3.582 1884,410.72046,-20.566002,17.837646,45.565025,3.581 1884,496.30322,-43.110725,47.24231,93.14353,3.578 1884,578.918,-9.928509,44.03125,95.323944,3.563 1884,290.88824,252.64838,18.269714,34.332703,3.563 1884,-4.1813874,378.66434,18.610872,58.48398,3.562 1884,-9.283734,317.7089,28.506649,70.85217,3.546 1884,564.8908,217.05962,39.74164,101.96547,3.529 1884,196.44525,229.37268,30.69049,58.994812,3.522 1884,49.342617,274.26758,21.653103,36.77841,3.52 1884,602.9595,-28.03167,53.56775,134.21375,3.511 1884,234.83788,252.9617,20.197311,41.357758,3.506 1884,613.5474,148.2488,35.362244,101.07074,3.501 1884,41.055035,274.29547,20.940159,36.56189,3.487 1884,163.58788,216.09924,31.333466,62.753113,3.468 1884,44.322853,214.64557,29.657898,63.28369,3.462 1884,596.93146,-13.309422,39.85736,100.40892,3.458 1884,-5.0197296,282.67914,16.044827,37.578644,3.434 1884,193.95631,247.05476,21.205124,37.61052,3.431 1884,1.7873013,489.69415,20.33232,41.72357,3.426 1884,56.557365,228.40764,22.389648,39.215164,3.426 1884,597.87714,159.7191,37.523743,90.25711,3.398 1884,177.84512,224.0487,20.908905,41.70227,3.372 1884,613.94006,191.56836,34.90216,107.795135,3.369 1884,194.93509,229.06186,20.477203,39.301514,3.357 1885,540.3931,207.3224,30.351196,60.625687,49.287 1885,551.7125,210.65819,31.528687,64.73726,7.175 1885,618.47095,201.07387,21.12384,58.027023,6.312 1885,-11.127996,-32.802258,30.587328,74.6699,5.943 1885,-6.221578,488.8413,19.040615,42.284912,5.548 1885,627.32733,-18.341625,17.163147,46.662094,5.52 1885,-8.957092,464.771,37.59513,91.90967,5.508 1885,626.621,488.5891,20.34961,45.362732,5.486 1885,-5.643947,-17.242905,18.040022,43.302853,5.466 1885,622.9737,-33.69999,26.56189,75.74233,5.344 1885,-16.862778,-62.377945,56.262543,142.95454,5.233 1885,532.48846,-182.94693,149.26154,425.72763,5.229 1885,583.2851,411.87952,71.38678,176.20496,5.09 1885,-72.64069,266.03107,200.94211,462.47333,5.086 1885,564.1523,209.09337,28.57959,57.183548,4.949 1885,603.13855,-57.51764,53.743713,136.38919,4.914 1885,536.121,310.05133,144.14502,342.55927,4.817 1885,612.97015,455.02853,39.162415,107.153595,4.775 1885,-21.806301,401.02338,79.599915,176.64972,4.758 1885,586.8502,-100.55129,73.54675,234.71042,4.696 1885,417.10016,-19.953176,20.252441,42.95773,4.608 1885,429.74792,-33.466244,29.120636,71.03905,4.588 1885,494.20612,226.18637,236.86334,516.40735,4.448 1885,-70.34065,-188.94171,210.7809,454.4367,4.357 1885,594.15344,-47.6695,44.786133,99.630714,4.343 1885,-37.478935,-124.22298,116.90555,277.5233,4.236 1885,409.51816,-20.587729,19.75174,43.927914,4.154 1885,425.45535,-19.323599,19.582184,43.10388,4.152 1885,433.71747,-17.420525,19.211304,41.327103,4.107 1885,581.69336,204.7095,37.79419,101.84732,4.098 1885,538.5916,202.72359,20.76587,38.856216,4.023 1885,226.60277,223.2577,20.08548,35.5486,3.917 1885,613.47034,148.94876,35.2641,100.476654,3.909 1885,233.77539,218.14351,19.548126,31.858337,3.897 1885,2.3704112,-16.802094,17.940763,42.49986,3.872 1885,49.955734,255.97801,33.569153,55.899796,3.855 1885,-7.880597,4.19289,38.5132,108.95752,3.851 1885,614.463,203.06264,35.938293,114.73595,3.807 1885,481.23355,233.09209,21.474426,41.6472,3.79 1885,528.35693,206.81215,32.397583,72.807816,3.782 1885,411.94122,-19.638361,32.56836,61.297966,3.763 1885,435.30743,220.19835,18.781128,37.47975,3.668 1885,194.02872,225.70212,21.410873,41.37668,3.646 1885,397.38416,-21.844456,30.79837,67.092964,3.613 1885,-9.724581,326.649,38.073513,99.34213,3.601 1885,-4.8248463,252.54721,17.431728,37.079163,3.569 1885,211.05307,229.0611,19.712128,38.464233,3.564 1885,599.20074,202.46907,36.92444,112.06352,3.556 1885,1.3139272,-16.90538,51.091507,151.5828,3.545 1885,202.67267,228.61732,20.861816,38.930557,3.544 1885,445.72543,-33.764046,29.095245,71.84123,3.501 1885,29.265234,333.53558,31.410799,76.2056,3.478 1885,442.06763,-17.563808,18.589355,41.63678,3.469 1885,531.72095,216.05649,40.224182,96.3992,3.466 1885,564.5536,216.2558,39.434082,100.53009,3.465 1885,559.88794,206.26218,22.511475,45.95839,3.435 1885,68.52934,241.01416,29.249374,53.105957,3.419 1885,402.1842,-18.164185,19.092407,42.148216,3.411 1885,599.4184,200.68954,27.117859,61.138123,3.403 1885,218.84412,223.465,20.039093,35.48047,3.402 1885,435.9162,-17.058125,32.82025,61.020115,3.38 1885,1.2058973,-39.315823,43.146748,99.466156,3.367 1885,-8.284058,203.97969,38.10785,98.05739,3.334 1885,-5.3222313,156.20207,17.639372,39.547653,3.333 1885,618.5099,490.94086,20.343506,41.606262,3.315 1885,381.12854,-17.71881,30.886597,65.010826,3.307 1885,5.2552376,465.77344,38.393208,98.07239,3.303 1885,543.7123,195.39798,46.628357,111.23624,3.272 1885,530.8458,201.672,22.535034,46.777496,3.262 1885,619.5787,-4.8886433,18.272034,40.65428,3.251 1886,583.3502,205.11731,27.093872,69.40149,50.067 1886,424.76373,211.73262,21.393127,50.277695,11.064 1886,594.6252,206.92004,28.37445,66.60242,7.34 1886,-5.500396,-16.415382,17.431381,41.959854,6.279 1886,-11.02433,-31.403791,29.501778,72.55101,6.137 1886,576.7426,196.3609,43.897827,114.87924,6.097 1886,-6.260025,489.5224,19.051888,41.612366,6.096 1886,627.18915,-17.975582,17.128357,46.84571,5.945 1886,626.92334,488.3033,20.438782,44.83438,5.88 1886,-12.002506,478.34824,30.47493,62.467194,5.755 1886,622.86163,-33.369324,26.38385,76.600525,5.742 1886,613.1007,454.10617,39.25653,108.112885,5.217 1886,-72.7702,265.9024,200.85966,462.74512,5.084 1886,532.98676,-182.47154,148.64014,425.08084,5.044 1886,535.64484,309.2936,144.50775,344.0024,4.921 1886,-21.706387,401.83554,79.48184,175.9036,4.901 1886,603.1283,-56.899197,53.257263,135.46956,4.897 1886,-16.918293,-62.348404,56.166077,143.3891,4.876 1886,583.22125,411.41095,71.813416,176.98639,4.87 1886,586.66864,-100.11778,73.818054,232.7539,4.865 1886,522.1195,318.24966,35.447327,100.21332,4.769 1886,568.8019,199.27904,32.15686,74.239395,4.768 1886,613.92065,184.28079,33.209167,98.861786,4.76 1886,493.60236,226.43646,237.47949,516.55096,4.612 1886,535.03735,313.73697,35.412903,87.318695,4.447 1886,597.2641,213.77701,36.489624,105.85596,4.429 1886,165.83708,222.37346,29.013367,52.984665,4.344 1886,308.27206,258.65906,16.413635,28.92273,4.301 1886,-37.53633,-126.33046,117.26391,278.5741,4.25 1886,-0.6575012,191.40425,26.441385,69.79503,4.235 1886,-69.890656,-187.97,210.30313,453.5648,4.214 1886,299.27536,243.84665,17.456665,31.671112,4.183 1886,594.1717,-46.255592,44.77649,97.44175,4.112 1886,-5.2589364,171.74223,17.19662,40.33246,4.02 1886,-9.209017,-6.5747414,39.31807,102.09926,4.0 1886,564.7304,214.22037,40.487427,106.41864,3.997 1886,613.5404,231.07146,37.59973,116.02763,3.992 1886,-5.218153,156.96321,17.066374,38.86151,3.969 1886,-5.122144,187.68864,17.897608,41.918976,3.903 1886,605.8991,202.31664,27.518066,66.465744,3.901 1886,301.08594,257.26666,16.50879,27.590149,3.878 1886,509.41147,281.06128,58.451447,151.54742,3.801 1886,33.95015,245.18289,41.82373,85.28107,3.75 1886,619.01086,490.4889,20.160156,41.333557,3.745 1886,100.43225,230.1463,39.46515,75.11401,3.74 1886,-9.730549,179.67453,28.883957,70.41876,3.709 1886,619.5869,-17.436897,16.679688,43.81326,3.702 1886,161.94724,237.16492,21.712128,33.974243,3.683 1886,315.49554,258.61575,16.591248,30.398682,3.679 1886,591.1877,206.80481,56.92389,199.09442,3.678 1886,-11.295902,213.38345,29.796543,73.10983,3.622 1886,218.89487,231.12485,20.41391,36.854645,3.571 1886,81.30675,248.0603,33.78566,62.665222,3.505 1886,150.55815,221.26431,31.297653,52.503876,3.486 1886,-7.731742,233.59242,36.355267,99.08037,3.438 1886,-5.1450977,206.44878,18.781076,45.728043,3.429 1886,529.1455,186.83981,21.561462,41.3611,3.426 1886,2.0557613,491.1153,19.754467,40.218994,3.39 1886,154.52403,239.52771,21.099442,32.044495,3.364 1886,2.5656824,-14.540228,17.125317,39.124477,3.35 1887,420.73895,273.8134,32.822388,90.103424,6.713 1887,-4.146375,190.72736,16.446104,37.856003,6.371 1887,-6.2935724,489.50217,18.98223,42.045563,5.956 1887,-12.161341,477.84204,30.49093,63.321472,5.726 1887,627.3298,-18.226357,17.119324,46.365807,5.693 1887,610.667,-48.08728,41.803833,100.05979,5.613 1887,-11.246281,-32.491386,29.875986,75.1214,5.47 1887,-5.9491663,-17.10553,18.017612,43.19847,5.457 1887,586.14404,-98.990265,74.51453,231.29927,5.163 1887,118.96325,280.47913,26.625755,73.1705,5.116 1887,532.8834,-181.89513,149.06354,423.706,5.063 1887,432.6642,268.8158,32.992767,79.88733,5.012 1887,-72.5677,266.0835,200.05878,462.27283,5.002 1887,-16.850027,-62.605877,55.921265,143.82884,4.959 1887,583.64795,407.84253,71.65723,181.25635,4.915 1887,612.9405,454.41946,39.439575,107.998505,4.906 1887,-21.597183,402.34067,79.08424,175.23013,4.829 1887,496.47495,320.1239,36.25644,78.771484,4.725 1887,626.38495,487.60596,21.046448,46.435547,4.676 1887,537.0389,312.01483,142.1352,339.7613,4.629 1887,67.4802,226.42276,42.4441,92.13818,4.496 1887,482.58386,329.75174,34.606018,89.11771,4.491 1887,476.54385,297.77118,54.568695,132.25653,4.381 1887,82.88647,235.43921,41.428215,95.35608,4.334 1887,493.9948,226.25662,237.10358,514.8782,4.334 1887,-37.51897,-126.290405,116.97345,279.1462,4.216 1887,-8.833512,-5.4937325,39.094555,102.952255,4.1 1887,-69.47461,-188.02873,210.13596,452.81293,4.094 1887,394.61914,-15.182314,17.161072,38.965263,4.06 1887,100.88307,230.49658,39.996475,88.88141,4.049 1887,2.4287963,209.40768,19.845549,44.97905,3.981 1887,120.057434,235.6676,23.730957,42.557434,3.965 1887,503.65753,319.23975,22.82312,51.248566,3.88 1887,115.528076,243.7934,31.177795,68.49872,3.826 1887,511.51184,344.9689,24.611206,56.83899,3.805 1887,378.6214,-14.986598,17.508942,38.8526,3.777 1887,150.26506,212.17345,37.446213,77.97713,3.753 1887,109.79277,215.14005,52.06842,111.187744,3.722 1887,453.0177,208.19183,38.519745,87.69479,3.699 1887,619.4752,-17.996515,17.198547,43.02282,3.641 1887,4.6172657,197.78476,37.034973,96.31253,3.602 1887,386.81842,-13.669625,17.249756,37.761734,3.596 1887,35.906864,204.54453,33.04497,61.886017,3.578 1887,402.4271,-15.388706,17.10138,39.02666,3.573 1887,-4.388341,350.4128,16.100182,36.218536,3.553 1887,469.37115,207.05986,37.78833,90.46669,3.551 1887,-14.188994,155.30222,48.947662,137.67636,3.548 1887,484.7246,211.64546,39.245483,98.02977,3.509 1887,2.082222,490.88196,19.836096,41.007446,3.498 1887,413.44913,232.54211,53.415253,132.92053,3.49 1887,173.08531,229.60548,30.298538,57.575424,3.463 1887,1.7829895,198.10022,18.22202,39.304962,3.456 1887,-8.031715,99.70975,38.158596,107.424866,3.455 1887,-10.233032,194.46887,27.409794,65.3403,3.449 1887,410.37808,-18.057331,17.90924,42.223312,3.446 1887,389.1562,-33.619488,29.192932,73.37583,3.403 1887,600.0855,294.51605,35.099365,99.358734,3.38 1887,-10.260615,83.98149,28.28135,68.91017,3.342 1887,-5.413677,220.62155,17.711813,42.07901,3.34 1887,573.6758,-25.010365,54.042603,129.6662,3.323 1887,436.38696,232.08992,41.18634,95.37764,3.32 1887,-4.910494,173.72073,16.318392,38.58171,3.309 1887,613.6727,303.54095,34.288025,105.515015,3.29 1887,378.5336,2.2943687,33.289703,62.12926,3.28 1887,442.07718,-19.487194,18.355713,41.524895,3.274 1887,1.6410446,-18.186066,51.619984,151.86684,3.27 1887,418.26898,-18.177837,18.147217,42.810753,3.267 1887,452.47348,236.11008,41.72818,105.83826,3.228 1887,87.46405,228.80923,33.211624,59.851624,3.197 1887,597.8386,-24.75991,39.3432,95.422356,3.185 1887,-4.474967,155.18732,15.719352,40.64348,3.173 1887,2.1687407,-16.759663,18.181717,42.457836,3.164 1888,355.45395,270.90848,31.20575,85.03433,7.923 1888,391.5143,299.64813,26.42154,74.86383,6.314 1888,-11.64637,-32.53977,30.759104,73.37264,6.189 1888,622.75165,-34.010365,26.79889,76.08713,6.125 1888,-6.006502,488.72482,18.772535,42.591766,6.115 1888,-6.258235,-17.385082,18.549963,42.602757,5.987 1888,627.1037,-18.055548,17.256104,46.55503,5.952 1888,-11.937837,477.03845,30.298409,64.039795,5.596 1888,-16.990864,-62.444794,56.099476,142.2571,5.296 1888,626.59204,488.0544,20.578918,46.151215,5.251 1888,613.2004,455.22632,39.060364,107.145935,5.18 1888,498.2621,294.66367,18.78601,34.522217,5.161 1888,-72.28642,266.286,200.00308,461.8839,5.028 1888,583.3761,409.67877,71.63257,178.91406,5.023 1888,586.2574,-99.390945,74.16931,232.07645,4.993 1888,602.78265,-57.358425,53.615723,134.75262,4.99 1888,532.8934,-183.13228,148.93488,426.11212,4.92 1888,-21.756493,402.112,79.38459,175.62427,4.827 1888,537.02655,310.66095,142.19379,340.20758,4.816 1888,113.45605,247.58832,23.210579,49.195984,4.809 1888,594.1729,-46.356007,44.644775,97.040405,4.766 1888,124.82797,247.25864,30.374252,68.22629,4.547 1888,515.48975,296.8302,18.171387,45.7623,4.45 1888,493.8944,226.37375,236.72363,514.84155,4.4 1888,-36.86155,-125.1534,116.47469,274.55252,4.399 1888,-70.318344,-188.62659,210.70665,453.6532,4.184 1888,388.20935,216.859,40.022827,100.68608,4.104 1888,117.70377,235.20068,29.095222,57.8656,4.029 1888,377.12213,281.8691,20.989319,56.188385,4.019 1888,2.2643077,-17.15385,17.878448,41.740303,3.971 1888,615.4278,-21.311317,26.559998,72.5508,3.942 1888,-7.6240215,4.9228287,38.143036,106.43491,3.922 1888,371.22583,260.47345,31.176147,86.52988,3.823 1888,397.0099,-17.544334,32.382355,64.93013,3.811 1888,394.23627,-18.036041,17.769958,40.877193,3.769 1888,373.21625,219.12611,38.56534,94.65172,3.767 1888,409.52435,-19.339525,18.986877,42.9074,3.746 1888,166.2546,230.57349,28.409485,54.202637,3.719 1888,619.4782,-17.88473,17.243713,43.42795,3.705 1888,613.5363,147.37726,34.96399,101.43855,3.654 1888,101.57526,240.19641,30.680801,64.251465,3.654 1888,-5.385605,234.46155,17.701237,39.07373,3.636 1888,386.4998,-15.672134,17.171112,38.95182,3.574 1888,404.3156,312.3423,29.972229,73.068726,3.571 1888,2.1422453,489.8327,19.833424,41.116272,3.569 1888,129.0629,236.78246,31.080536,55.017258,3.56 1888,367.25284,217.72446,27.224518,64.40341,3.55 1888,418.00232,-19.143059,18.594727,42.80949,3.545 1888,613.80286,204.0384,36.17102,111.51613,3.489 1888,401.6338,-17.981152,18.890167,40.521736,3.481 1888,476.7972,232.12851,52.71695,132.45242,3.461 1888,506.5292,296.0657,17.728058,37.360535,3.445 1888,366.24966,232.29001,52.441284,131.05704,3.439 1888,367.40817,270.83212,23.330017,61.532715,3.42 1888,566.0061,-18.004803,30.796204,68.27354,3.413 1888,354.09534,241.41077,22.108948,40.677673,3.405 1888,-5.074424,309.22656,16.82312,37.81247,3.403 1888,504.29385,300.825,31.035797,75.81247,3.385 1888,149.95645,223.15598,36.250504,78.37979,3.381 1888,182.9208,215.68805,35.359985,76.342926,3.376 1888,597.7693,203.67468,37.42981,108.525024,3.376 1888,-4.171888,38.3834,16.670176,46.612206,3.363 1888,357.7068,231.69296,29.874329,62.80478,3.36 1888,444.86447,230.90762,50.940887,135.3685,3.332 1888,309.6037,225.33044,36.97467,94.443054,3.328 1888,390.6858,-33.80733,28.365662,72.7978,3.325 1888,351.58826,207.74065,50.634155,125.46254,3.319 1888,3.726716,-37.232624,30.590233,81.13403,3.315 1888,475.9634,215.256,18.769226,38.85974,3.3 1888,523.78455,-14.252572,14.820618,35.768154,3.281 1888,384.1991,223.0038,23.32959,47.27144,3.278 1888,-3.7570057,334.4504,15.3813,33.365936,3.269 1888,4.1457725,338.02853,15.501091,29.346313,3.263 1888,160.37653,208.11024,47.2511,110.19768,3.26 1888,346.42148,239.82399,20.23822,39.982376,3.255 1888,3.3317738,228.12964,17.443409,36.15808,3.253 1888,75.21538,246.57565,34.353714,63.163513,3.235 1889,622.91766,-33.333378,26.95636,75.35803,7.056 1889,627.22626,-19.03513,17.202332,47.1948,6.226 1889,-11.531076,-33.302948,30.641344,74.586494,6.039 1889,-8.7383795,464.24445,37.67586,93.348694,5.773 1889,602.3783,-58.094635,54.19507,133.45175,5.74 1889,-6.401931,488.639,19.138134,42.61563,5.575 1889,-6.097027,-17.675632,18.348438,43.927208,5.459 1889,594.3852,-45.39529,44.066467,95.23395,5.413 1889,530.12946,213.05502,28.692444,68.990875,5.399 1889,-17.213442,-63.45266,56.38684,143.56947,5.261 1889,586.2329,-99.59158,74.56122,231.9951,5.023 1889,-72.06502,266.7323,200.22678,461.4651,5.016 1889,583.32654,411.3831,71.34662,176.81857,4.991 1889,613.13446,454.65463,39.38257,107.7858,4.956 1889,626.6176,488.39795,20.602905,46.16577,4.947 1889,490.92657,-181.80266,234.43939,425.91278,4.923 1889,326.37802,215.72527,35.464264,96.25609,4.9 1889,-21.580313,402.5962,79.322365,175.22058,4.879 1889,386.43286,209.01755,20.016113,46.2222,4.765 1889,1.4884084,-17.881117,18.33364,43.82637,4.69 1889,536.9179,310.5061,142.32458,340.8883,4.652 1889,501.39642,209.67336,26.598145,68.35344,4.377 1889,614.6401,-20.49474,27.683899,70.296364,4.374 1889,-37.05005,-126.63474,116.39081,276.86746,4.341 1889,493.60553,226.97647,237.08997,514.37036,4.338 1889,309.83615,264.90417,27.870636,75.98508,4.111 1889,-70.572556,-188.25778,210.87593,452.8982,4.102 1889,-8.21815,5.403511,38.18264,106.48503,4.033 1889,328.72888,225.62169,21.783203,52.916214,3.983 1889,519.39996,206.17596,30.397156,67.98816,3.901 1889,182.90118,211.71951,35.086823,79.66678,3.871 1889,450.69324,204.51993,32.609314,71.48627,3.797 1889,388.36084,-18.447746,32.896606,68.607925,3.755 1889,619.0415,-18.394844,17.625854,44.29013,3.741 1889,498.12476,208.17986,19.747803,49.766434,3.683 1889,-7.7784586,259.133,36.95623,107.04462,3.681 1889,401.4183,-16.701641,19.033966,40.255207,3.657 1889,329.63788,208.41716,29.835388,61.396774,3.641 1889,437.20563,271.81772,32.57721,85.790344,3.612 1889,392.95245,212.11482,20.40332,46.679703,3.587 1889,394.1841,-16.925915,18.156586,40.715824,3.585 1889,449.3457,212.35855,22.36267,45.031525,3.565 1889,72.82249,222.8147,22.54493,43.598785,3.557 1889,110.106316,219.24666,27.53846,56.422714,3.555 1889,591.4663,-25.100582,50.936584,136.51274,3.521 1889,333.4909,197.30696,50.918945,121.571396,3.504 1889,510.77255,212.95909,22.791656,50.75734,3.48 1889,198.85077,212.07034,34.17871,79.37549,3.445 1889,-8.701058,133.13028,38.39716,109.10971,3.438 1889,409.56226,-19.288975,18.202301,43.21348,3.336 1889,185.7626,231.09166,20.675568,35.68077,3.331 1889,165.70029,212.34642,35.95703,79.88512,3.318 1889,311.77823,215.31067,34.329834,94.975586,3.316 1889,612.7162,-4.4205017,37.835266,109.54279,3.29 1889,146.9484,225.24689,31.283752,64.114075,3.285 1889,395.65567,285.3946,16.732391,33.416626,3.27 1889,378.9592,210.11325,18.783844,34.7034,3.244 1889,4.386078,-35.847332,29.547516,79.56303,3.232 1889,26.17453,224.57088,35.489822,64.72023,3.23 1889,398.09555,-34.36062,29.23236,74.659065,3.222 1889,133.03728,226.64531,30.321777,61.13997,3.217 1889,-5.47189,122.54465,18.000868,41.284424,3.202 1889,382.15344,219.27045,50.862732,127.18402,3.199 1889,177.97844,237.82872,20.897202,38.873917,3.19 1889,436.75714,203.75653,32.80603,67.80725,3.174 1889,193.45383,232.35062,21.151596,35.023224,3.172 1889,1.888653,490.02243,20.241045,41.862946,3.145 1889,351.54303,202.5791,49.08905,133.55481,3.144 1889,6.897751,237.77405,36.407997,108.17096,3.139 1889,215.355,211.064,33.90071,82.53378,3.138 1889,-11.16288,222.366,30.272316,69.80899,3.137 1889,508.21143,-2.4507408,16.855286,34.192463,3.137 1889,-6.38387,234.71066,18.812126,42.3555,3.111 1889,571.8476,-41.863354,58.75055,134.31615,3.091 1889,507.0021,-15.411339,15.990509,37.086067,3.09 1889,-16.721767,147.04437,52.09737,147.12183,3.076 1889,-4.9314823,213.00739,15.990156,36.712418,3.065 1889,561.50507,-44.13591,45.360107,95.278885,3.061 1889,247.61517,223.57033,26.844421,64.734726,3.054 1890,77.316925,237.72424,32.06514,74.078064,6.835 1890,-11.283493,-32.5369,30.864046,73.56248,6.709 1890,-6.000331,-17.279564,18.425743,43.555878,6.235 1890,627.4712,-16.502094,16.598145,44.303524,5.852 1890,-6.095194,488.49963,18.870731,43.427124,5.628 1890,-8.972216,464.41983,37.78483,92.832245,5.569 1890,623.3582,-34.176353,26.322083,75.75031,5.361 1890,-17.111061,-62.091385,56.03594,143.02353,5.174 1890,83.48766,216.31848,37.426277,83.7666,5.142 1890,-72.312706,266.2819,200.20865,461.90817,5.018 1890,612.92865,454.0708,39.59729,107.60022,5.013 1890,583.3777,411.6263,71.15814,176.19705,4.96 1890,586.2556,-100.196625,74.618164,233.13222,4.945 1890,-21.602608,402.9184,79.11465,175.04315,4.916 1890,490.05127,-181.51794,235.125,425.4496,4.895 1890,602.9839,-57.0432,53.201904,134.05243,4.895 1890,626.3417,487.54065,20.79895,46.74463,4.761 1890,536.48694,310.77032,142.94476,342.43634,4.601 1890,-11.416936,206.35168,29.750599,65.78732,4.539 1890,285.8908,246.69905,27.015991,69.40437,4.535 1890,100.58884,211.90103,37.2088,85.90494,4.532 1890,493.35556,226.59445,237.49368,515.8751,4.296 1890,594.1515,-45.427757,44.68988,94.471344,4.293 1890,323.33722,198.46136,29.91388,67.362335,4.268 1890,-37.30329,-125.41318,116.699646,275.4135,4.226 1890,5.0317755,220.18384,28.932453,65.77661,4.216 1890,538.89,-15.657943,17.329529,36.90592,4.207 1890,-70.016235,-187.59119,210.11986,452.85162,4.152 1890,619.96075,-15.36458,16.311646,40.387512,4.139 1890,262.92072,233.44867,29.392578,66.60773,4.127 1890,-4.880931,203.19221,17.54396,40.35727,4.078 1890,615.7047,-19.58657,26.47998,69.735855,4.055 1890,1.8927985,-16.778805,18.281582,43.431858,4.008 1890,69.586136,228.69876,32.906754,58.91327,3.964 1890,-5.885682,227.95325,18.945728,45.89032,3.963 1890,164.7366,216.12326,29.95636,62.294037,3.948 1890,391.27637,263.51132,30.032898,81.26355,3.863 1890,215.53531,207.60162,34.233505,81.19589,3.847 1890,329.61212,215.16061,18.951752,43.944946,3.837 1890,-8.590398,-6.1085663,38.6022,100.98817,3.836 1890,357.3076,222.12856,38.726624,89.040146,3.805 1890,198.68393,207.46878,34.335785,79.618256,3.697 1890,149.86002,215.68901,30.07837,61.395584,3.64 1890,-9.019662,132.05428,39.21084,109.14934,3.593 1890,458.65662,-16.79829,17.416016,41.07946,3.592 1890,573.3591,-22.524582,53.537903,123.78923,3.587 1890,374.95743,243.88165,36.96573,86.279236,3.57 1890,420.61768,-19.586132,32.766296,70.73281,3.568 1890,117.683495,208.71965,36.380226,88.2151,3.565 1890,56.86558,230.08896,22.536686,38.86389,3.56 1890,185.11919,233.39398,20.613205,37.090393,3.522 1890,230.8014,207.07568,34.643112,82.551025,3.504 1890,340.50714,198.41774,39.27957,99.646194,3.499 1890,182.75687,206.03711,34.82576,82.36865,3.495 1890,293.5052,258.7614,28.46579,70.004425,3.495 1890,82.71821,230.03252,26.75306,44.899002,3.478 1890,3.6427355,-36.218594,30.24971,82.12776,3.475 1890,523.63226,-2.2145462,17.30658,33.654163,3.471 1890,525.7873,-15.376946,28.923096,56.941902,3.462 1890,597.1708,-5.141285,41.701355,106.93074,3.392 1890,372.00403,208.43503,40.00644,92.616425,3.382 1890,53.422966,234.41994,29.27208,62.39839,3.38 1890,319.21216,182.14919,50.726654,119.94197,3.379 1890,546.3609,-14.6462145,17.393616,36.581497,3.372 1890,620.25916,4.4872456,17.904785,39.3724,3.356 1890,530.9992,-15.008085,17.107422,36.393932,3.353 1890,598.5253,182.98236,35.27661,98.949524,3.341 1890,9.014272,-18.297386,18.513615,44.90756,3.324 1890,554.2487,-15.759201,17.266724,36.949284,3.317 1890,338.23,216.1499,18.850067,41.07437,3.299 1890,371.25275,264.75156,16.612305,28.678009,3.284 1890,2.0460672,489.9107,19.916222,41.759827,3.264 1890,-12.735794,187.16212,46.445896,136.0084,3.251 1890,613.3103,142.00978,35.81012,110.30028,3.222 1890,3.9522743,206.51701,18.697111,39.51558,3.221 1890,360.64874,199.12566,22.10379,39.104614,3.218 1890,278.84274,235.88052,26.39148,68.74066,3.203 1890,355.49286,265.54907,18.164185,31.066101,3.189 1890,442.44278,-19.255346,18.150238,44.29083,3.177 1890,603.4345,-14.568956,15.569519,37.195408,3.176 1890,451.0171,-16.899883,17.601837,41.84265,3.174 1890,82.14512,258.9216,22.248543,46.27307,3.169 1891,257.2642,223.19664,22.96283,50.357803,12.274 1891,365.49118,261.5671,35.77423,75.21442,10.061 1891,-11.412258,-31.973839,30.062988,73.59826,6.671 1891,-6.734477,-17.64322,19.10849,45.21321,6.494 1891,486.18677,225.48305,22.502808,49.694107,6.187 1891,-6.310297,488.94916,19.182503,42.283875,6.073 1891,-8.776937,464.8383,37.70876,92.02261,5.827 1891,622.9377,-33.621323,26.654663,75.05744,5.584 1891,-17.280437,-61.383297,56.49905,141.35255,5.384 1891,627.0692,-18.744022,17.507141,47.093727,5.305 1891,583.10956,411.95288,71.52606,176.08295,5.092 1891,626.579,488.08173,20.565552,46.21344,5.044 1891,-72.312004,266.06348,200.1128,461.7577,5.042 1891,612.648,454.5656,39.694458,107.24188,4.926 1891,-21.568867,403.10828,79.101074,174.93921,4.916 1891,1.1354357,-17.194023,18.447699,44.9597,4.901 1891,362.25806,265.96664,21.885681,45.114532,4.829 1891,603.10297,-57.541,53.246277,133.6106,4.803 1891,536.0904,310.41376,143.57928,342.40753,4.704 1891,489.9525,-181.7074,235.07196,424.395,4.688 1891,268.5483,217.94049,27.693512,65.3454,4.676 1891,586.16614,-102.937645,75.54773,236.75363,4.543 1891,-8.824092,-6.5314865,39.363888,99.8662,4.482 1891,594.03406,-45.63315,45.024597,94.61808,4.481 1891,493.3826,227.49722,237.32236,514.29407,4.454 1891,-37.151436,-125.18338,116.67934,273.80072,4.31 1891,-69.97378,-187.77377,210.16565,452.7235,4.121 1891,260.56036,225.59163,31.242615,83.67793,3.982 1891,350.66956,256.87747,29.251862,60.322784,3.869 1891,1.6597939,-21.001728,33.4489,72.853966,3.79 1891,101.341324,228.2681,31.601547,60.955017,3.666 1891,-6.1699653,248.26268,17.803375,40.946976,3.629 1891,-5.525491,234.89731,16.8706,37.97876,3.568 1891,450.84653,-19.125504,18.103668,43.40943,3.504 1891,-5.381984,265.1734,16.923079,39.96634,3.495 1891,523.01215,-15.452122,16.229126,36.861076,3.484 1891,350.84427,282.63446,32.056732,55.975037,3.48 1891,483.7053,218.58347,19.394867,37.95514,3.478 1891,280.54407,225.00969,19.614197,47.38289,3.452 1891,247.04242,209.59213,36.48819,80.97247,3.414 1891,1.9379222,490.15933,20.18697,41.291107,3.406 1891,534.6857,179.46901,36.786682,81.00401,3.387 1891,489.15604,211.43425,19.52713,36.837463,3.365 1891,186.26358,219.1014,31.887955,60.07057,3.355 1891,325.31732,240.54704,37.862885,84.22365,3.325 1891,273.8168,217.33076,19.873749,39.806137,3.324 1891,-4.9589343,168.70668,16.720207,40.95323,3.308 1891,-9.5599785,34.490593,38.844887,106.89246,3.307 1891,325.4266,186.73978,12.982849,25.014252,3.295 1891,598.84204,181.81001,35.32007,99.64781,3.287 1891,323.86243,201.04558,39.006042,96.543686,3.273 1891,-5.234133,86.93546,17.402073,44.901512,3.242 1891,112.87414,253.79137,23.355812,41.659714,3.23 1891,555.26056,200.19499,17.698547,33.34987,3.209 1891,109.63884,218.1734,25.537888,43.162415,3.207 1891,546.48615,195.25314,18.869934,35.162766,3.195 1891,5.58525,467.17322,38.270344,97.16492,3.176 1891,339.9901,205.72772,39.383118,93.4523,3.157 1891,550.3613,180.4026,36.520386,81.99364,3.148 1891,-5.2910643,55.28264,17.016018,44.416702,3.141 1891,347.73645,264.52,16.389526,28.484467,3.14 1891,547.11206,414.47043,83.036194,166.04398,3.131 1891,458.6638,-19.01025,17.983856,42.702396,3.119 1891,540.6195,-14.933856,31.384644,60.002247,3.113 1891,-4.849549,216.84207,15.950813,37.561523,3.105 1891,495.00443,-33.52936,26.911407,68.96194,3.102 1891,522.0619,-39.45066,60.400513,140.11949,3.093 1891,518.66534,-33.937317,27.893616,70.00588,3.088 1891,230.59259,210.02768,36.940277,77.319305,3.078 1891,235.3881,222.772,18.485458,34.496002,3.076 1891,9.962587,-89.705055,72.71191,205.0841,3.074 1891,507.21713,-16.201784,15.839874,37.50825,3.063 1891,-5.6163406,282.35043,16.608711,37.37613,3.062 1891,78.35444,189.55615,53.49273,109.89322,3.057 1891,500.10742,-3.7134914,16.975159,35.989357,3.056 1891,322.3615,309.34854,20.111328,30.5596,3.049 1892,-11.512574,-32.649513,29.662743,73.32567,6.22 1892,-6.0328584,-18.099121,17.674128,43.76685,5.905 1892,235.65775,249.87848,30.035278,69.96991,5.706 1892,-6.296518,489.0083,19.040182,42.414185,5.698 1892,-8.748523,464.48383,37.67743,92.47168,5.689 1892,627.1022,-18.031982,17.023865,46.70186,5.653 1892,622.873,-33.642876,26.5625,76.06991,5.374 1892,626.638,488.34534,20.544556,45.61023,5.21 1892,3.0377126,207.26543,19.860846,34.081894,5.082 1892,-72.36375,266.05035,200.31256,461.98615,5.046 1892,583.2438,411.94113,71.38751,176.10196,5.027 1892,509.19815,232.77809,16.201874,25.236008,4.995 1892,-16.966784,-61.909477,56.168663,142.71286,4.966 1892,-21.636105,402.79684,79.22741,174.97208,4.906 1892,612.91254,455.1363,39.322205,107.03815,4.848 1892,603.04456,-56.798615,53.322266,134.28964,4.817 1892,462.26978,3.2119122,28.132141,62.63633,4.797 1892,341.28735,266.9678,33.809143,72.82733,4.76 1892,586.1604,-102.432785,75.41113,237.07092,4.668 1892,490.25458,-181.74979,234.76562,424.20102,4.632 1892,536.4614,310.38934,143.23718,341.9126,4.571 1892,-8.602097,-5.495693,38.93782,99.88524,4.566 1892,245.36607,263.925,30.12291,77.32727,4.56 1892,594.1474,-44.877483,44.946716,94.89743,4.456 1892,493.59418,227.06265,237.02441,515.29407,4.382 1892,-37.01195,-124.68329,116.68155,273.7192,4.375 1892,236.52133,237.51523,16.93695,29.994324,4.351 1892,515.4333,224.70767,16.111633,26.22499,4.343 1892,-69.692696,-188.1245,209.85928,452.89362,4.085 1892,370.01013,208.06033,21.525879,38.636917,3.898 1892,553.93835,211.07002,21.163147,41.64563,3.709 1892,291.3123,316.72076,19.235413,31.232391,3.667 1892,522.8147,218.08345,17.77362,30.717834,3.616 1892,338.28903,268.96152,20.193207,40.476562,3.56 1892,2.7724748,-16.208603,16.690012,39.943775,3.555 1892,510.0055,215.60585,13.100037,26.51503,3.54 1892,346.7653,210.83394,31.644623,60.206863,3.489 1892,542.1709,-33.734653,28.244263,69.48026,3.457 1892,619.3562,-17.472795,16.855713,43.26863,3.446 1892,-6.1152315,260.41965,18.915264,43.83841,3.445 1892,559.6208,200.62523,27.097473,56.53093,3.443 1892,250.34494,228.78564,16.40274,31.233215,3.44 1892,323.67923,271.06186,17.18747,29.506622,3.44 1892,548.8507,-18.543056,30.917786,63.689934,3.435 1892,195.2334,223.97466,31.534454,57.96431,3.433 1892,-5.5604844,313.51993,16.819695,39.75592,3.427 1892,1.8458366,490.75073,20.181862,41.01935,3.411 1892,353.13928,268.02002,34.929108,79.39453,3.403 1892,402.0213,208.51729,22.757416,41.093338,3.398 1892,-8.659047,229.32751,37.440434,101.52753,3.372 1892,348.9775,213.59332,49.942047,130.57709,3.304 1892,-5.3009505,214.44664,17.12171,38.210617,3.291 1892,466.92413,-14.073448,17.026062,40.69429,3.281 1892,589.61115,-17.07175,30.240295,58.88284,3.261 1892,475.44965,-16.673115,55.84784,126.63855,3.253 1892,508.62506,-34.098194,58.07843,136.99211,3.249 1892,297.35678,312.66803,20.531372,31.95398,3.244 1892,558.4153,-34.745495,28.806152,70.97912,3.234 1892,414.87994,177.32777,50.42154,116.58702,3.23 1892,598.3886,157.5987,35.445557,89.36919,3.229 1892,133.28766,228.42375,29.087708,64.00313,3.227 1892,242.94208,229.69102,16.920776,31.989578,3.223 1892,618.45984,490.75568,20.687317,42.40802,3.205 1892,-5.86053,230.67346,17.91906,43.190887,3.194 1892,-4.301005,188.62628,16.989485,39.061996,3.191 1892,5.5648813,466.68198,38.31362,97.60733,3.19 1892,614.1434,148.44075,34.387207,99.60039,3.142 1892,9.778876,-89.17242,72.86083,205.90196,3.141 1892,459.47473,-16.489025,17.081055,42.37549,3.135 1892,546.9778,414.88135,82.94055,165.22314,3.129 1892,539.276,-5.50599,19.348389,40.166183,3.118 1892,483.00092,-15.981813,16.810303,38.463356,3.116 1892,2.51894,-20.87341,49.497204,131.07655,3.084 1892,309.60825,223.95227,37.32837,89.01721,3.079 1892,341.95764,227.70073,28.705688,76.22035,3.055 1892,-8.964539,36.31433,38.346634,106.25519,3.035 1892,462.54254,-34.748795,28.526245,80.51385,3.033 1892,327.36313,247.211,37.742767,90.40161,3.03 1892,260.06665,214.1424,15.565796,29.86705,3.02 1892,534.1281,-17.414513,29.746338,64.09876,2.999 1892,528.3642,-42.924385,46.774292,97.72347,2.994 1892,213.94498,213.43512,36.643463,83.46164,2.991 1892,474.19708,-15.424215,16.824493,40.677597,2.991 1892,-4.558955,153.85196,16.326305,41.01918,2.989 1892,615.235,-20.816776,26.588196,71.62191,2.988 1892,517.2572,210.49983,30.012817,57.40349,2.982 1892,613.7695,188.38123,36.02826,109.280914,2.967 1893,472.68405,1.0522804,24.614471,51.457855,6.943 1893,214.71805,261.54156,20.777786,47.620483,6.919 1893,-11.311384,-32.411644,29.729383,72.56873,6.89 1893,-6.050128,489.02823,18.649017,42.276886,6.634 1893,-5.98593,-17.965836,17.970913,43.577595,6.5 1893,-11.884679,478.35605,30.01957,63.220123,6.28 1893,627.2011,-18.1488,17.264954,46.596466,5.868 1893,309.61798,234.49062,27.583496,68.405075,5.569 1893,622.8226,-33.929962,26.611633,75.865974,5.544 1893,-72.37761,266.24475,200.1174,461.59888,5.104 1893,583.25146,411.4522,71.479004,176.78021,5.017 1893,-17.282114,-62.31267,56.260895,142.02428,4.984 1893,-21.566563,402.9875,79.12819,175.01636,4.968 1893,612.8224,454.80127,39.805664,107.15735,4.954 1893,585.7761,-103.11776,75.91974,238.04898,4.747 1893,538.805,230.4137,18.744568,28.140198,4.659 1893,490.3743,-181.5254,234.77182,424.36804,4.658 1893,626.2667,487.72726,21.061218,46.621918,4.655 1893,536.3523,310.66647,143.18237,342.3112,4.638 1893,-9.11251,-6.403015,39.39142,100.05099,4.51 1893,199.65457,209.14195,33.99887,83.91902,4.465 1893,578.99054,241.94318,18.992798,33.07672,4.382 1893,493.36502,226.77289,237.51706,515.83057,4.352 1893,603.0125,-57.505367,53.637756,138.4073,4.323 1893,-37.06139,-125.24389,116.67163,275.20728,4.288 1893,571.8857,234.23976,17.849304,29.885513,4.279 1893,-69.86812,-187.82114,210.24255,453.5676,4.255 1893,474.7215,-14.075783,17.543793,42.565655,4.183 1893,2.569946,-16.279348,17.405634,40.58055,4.158 1893,-5.646125,232.94069,17.255074,38.822433,4.083 1893,214.66074,208.02515,34.378265,89.75015,4.082 1893,599.2311,157.73071,35.533264,90.16998,4.078 1893,-5.166991,185.29956,17.890865,41.216064,4.074 1893,613.856,163.14687,33.625977,101.586044,4.074 1893,259.37436,304.42905,17.794922,26.769257,4.013 1893,476.91327,-31.153904,29.339203,76.65508,3.96 1893,583.60876,239.63132,26.073608,53.862854,3.886 1893,145.74602,233.82768,21.31659,36.447067,3.862 1893,467.1053,-15.290081,17.689392,42.5826,3.83 1893,2.2095413,490.7102,19.415504,40.81836,3.801 1893,217.10121,230.08875,18.634125,39.488647,3.775 1893,216.79425,214.80423,19.167938,39.24054,3.754 1893,204.35892,255.26784,17.747086,33.610703,3.744 1893,230.26913,220.10138,34.868683,88.36804,3.72 1893,295.399,244.3168,27.608185,59.305542,3.703 1893,457.6856,-18.25603,18.518555,44.406376,3.695 1893,594.76575,-47.152447,44.534363,101.05065,3.689 1893,184.16217,207.91386,33.964203,81.32814,3.666 1893,594.17804,243.98798,19.435364,40.485535,3.62 1893,302.78903,252.95622,30.138275,74.50972,3.601 1893,36.21051,195.00545,32.258125,52.19371,3.579 1893,481.65326,-12.506431,17.551819,41.169357,3.577 1893,-4.61403,173.00095,16.247501,38.119827,3.572 1893,619.70544,-17.745085,16.930359,42.914764,3.564 1893,167.53615,207.0359,34.316757,79.82292,3.55 1893,279.8801,225.39055,33.880493,83.69847,3.539 1893,137.64375,233.75876,21.283463,36.368347,3.529 1893,580.40106,227.29562,17.64331,30.368896,3.477 1893,554.4044,222.04651,17.039612,26.788864,3.452 1893,-9.139005,35.70422,38.473488,107.43642,3.408 1893,462.00165,-33.18906,29.83191,78.25245,3.381 1893,-5.201945,137.54192,16.55557,39.648865,3.373 1893,490.00003,-14.790638,17.493622,40.426323,3.366 1893,263.56342,224.03981,35.661102,86.235214,3.35 1893,218.27873,246.04099,17.928665,37.60901,3.337 1893,2.0274591,-38.68329,42.534027,98.70595,3.314 1893,19.515352,189.41138,33.518852,57.397583,3.303 1893,134.23853,201.4317,35.948364,75.49921,3.303 1893,613.5945,115.29509,35.196716,104.96724,3.284 1893,445.9925,-33.656322,28.316711,73.39841,3.281 1893,562.9669,231.42796,18.06659,30.92006,3.278 1893,598.90125,197.28441,36.079163,98.02858,3.245 1893,321.50958,238.34676,31.701508,68.67192,3.233 1893,5.6032763,467.42307,38.1426,96.403656,3.231 1893,212.50037,255.45041,18.108795,37.42749,3.229 1894,434.02368,206.14525,21.198029,38.175003,10.916 1894,368.89166,209.71669,22.967133,41.89328,6.344 1894,-5.9161067,489.11728,18.523554,41.915558,6.084 1894,623.10114,-34.07616,26.493896,76.23122,5.982 1894,-11.561876,-32.5798,29.937246,72.95417,5.934 1894,-5.9373093,-17.569105,17.708849,43.054417,5.909 1894,627.39343,-17.61825,17.005249,45.631973,5.646 1894,-8.938049,464.30167,37.743053,92.225006,5.626 1894,-17.298124,-62.765892,56.276352,141.1797,5.221 1894,-72.623886,266.149,200.42157,461.95673,5.099 1894,583.3179,411.611,71.354126,176.55276,5.018 1894,-21.715397,402.6385,79.23811,175.03674,4.9 1894,626.44214,487.7266,20.709717,46.490326,4.833 1894,585.98914,-103.07502,76.03418,236.8974,4.688 1894,490.15747,-180.93578,235.06335,423.57516,4.686 1894,613.061,455.10638,39.183777,107.12787,4.661 1894,536.6252,310.9628,142.72571,341.99277,4.544 1894,603.30084,-56.82554,53.24176,134.4343,4.448 1894,493.53986,226.25513,237.27228,516.2748,4.319 1894,-8.885731,-6.455883,39.337173,100.05698,4.291 1894,-37.05422,-124.51291,116.55992,273.89133,4.253 1894,-69.906586,-187.78346,210.32072,452.9394,4.198 1894,418.06335,207.35999,20.236664,36.782883,4.112 1894,355.94073,-36.887753,29.597229,66.04234,4.092 1894,594.2089,-46.021328,44.759766,95.97609,4.027 1894,-5.723034,207.2603,17.800915,39.891113,3.993 1894,620.02765,-3.5525923,17.430298,37.863754,3.981 1894,578.44604,232.4533,16.558716,26.456284,3.734 1894,182.30832,206.80896,35.2731,86.822235,3.73 1894,166.8503,207.45892,35.025864,80.740234,3.707 1894,345.81406,205.71468,22.381287,45.074005,3.679 1894,144.85735,228.46779,21.905045,33.681625,3.672 1894,-5.2935305,234.12595,16.50323,36.83792,3.63 1894,2.1892147,490.079,19.700684,40.64218,3.595 1894,595.39087,-14.092477,16.08374,37.728603,3.562 1894,-9.314987,136.02232,39.791702,100.953156,3.556 1894,474.3156,-19.679337,18.226776,44.1407,3.512 1894,-9.051257,35.316006,38.36317,106.26112,3.431 1894,-5.93474,249.3956,17.587029,37.16455,3.416 1894,42.034153,224.01338,20.33398,30.315765,3.351 1894,355.14014,197.49805,18.445251,33.015564,3.346 1894,491.10425,-16.158815,17.072906,38.63084,3.343 1894,157.80486,214.5564,28.582153,52.15161,3.303 1894,3.0742545,-15.073459,16.537512,39.560352,3.262 1894,587.1123,-14.756063,16.278687,38.31399,3.25 1894,603.77124,-14.208247,15.362732,37.33466,3.246 1894,152.16429,230.03722,22.658035,35.993027,3.241 1894,406.0152,-34.68238,28.398987,72.32265,3.229 1894,138.4785,237.5692,20.427444,32.918655,3.226 1894,2.6844306,206.55205,19.833,38.36154,3.225 1894,352.79495,-21.061195,21.263214,43.258244,3.197 1894,212.63031,223.49875,17.332275,36.28647,3.192 1894,452.57004,198.71019,29.323242,57.66774,3.177 1894,436.1283,194.33647,29.752075,51.893677,3.168 1894,554.5068,-2.541504,20.577942,48.627556,3.167 1894,427.4733,204.69727,20.304413,36.002533,3.167 1894,219.9686,225.51553,16.72226,33.9917,3.156 1894,1.9070053,-39.379692,42.443596,97.24605,3.135 1894,-4.8467426,185.64494,16.902153,40.80179,3.134 1894,-5.318884,54.459705,16.914986,42.96977,3.127 1894,566.10223,-32.66106,28.385315,70.00157,3.124 1894,465.9936,-19.81868,18.972046,45.854916,3.111 1894,614.1111,480.17944,28.689697,61.357056,3.107 1894,198.24966,206.33171,35.31418,88.576004,3.104 1894,547.1393,414.46603,82.77515,165.85843,3.096 1894,361.3728,222.44695,23.000732,39.983078,3.085 1894,590.13556,-25.732265,52.610413,144.53278,3.084 1894,341.2489,-36.086178,29.930756,68.16387,3.076 1894,571.6066,188.52936,15.377869,30.913086,3.071 1894,169.20715,212.43109,22.301483,40.58432,3.058 1894,-15.553503,170.15729,50.21727,132.03394,3.053 1894,98.58229,234.75111,18.737999,28.698013,3.051 1894,373.70776,-36.513687,28.776337,66.70463,3.038 1894,5.566231,466.29013,38.09945,97.36368,3.038 1894,491.81213,-1.5241203,18.10028,35.048794,3.027 1894,563.2073,178.66542,17.542175,33.71376,3.022 1894,11.447039,180.55199,55.294556,103.31456,3.008 1894,588.8813,-17.282207,30.050293,58.432457,2.997 1894,532.2433,-140.01346,116.26123,283.60565,2.992 1894,615.6458,-21.336353,26.334045,70.13389,2.991 1894,9.8232,-89.655846,72.65784,206.89163,2.986 1894,539.3998,-4.7786865,18.604858,41.609848,2.978 1894,148.85147,223.564,38.9843,85.85144,2.978 1894,611.7762,-13.546185,15.735718,36.86977,2.959 1894,132.84428,204.76202,38.195786,70.02048,2.955 1895,148.01059,223.2456,30.776794,63.10016,7.349 1895,228.44887,240.66095,30.948471,71.084595,7.268 1895,-6.2647247,488.53442,19.04975,42.26654,6.624 1895,-12.023152,477.3469,30.104992,63.657623,6.407 1895,627.17554,-17.941154,16.959229,47.147675,6.328 1895,-11.466326,-32.284184,30.407806,73.58216,6.014 1895,-6.3220596,-17.298843,18.51762,43.11625,5.773 1895,622.7981,-33.709465,26.466797,77.401146,5.641 1895,-17.353987,-62.93005,56.421883,141.94073,5.416 1895,-72.72396,267.34033,200.95932,460.0592,5.066 1895,-39.9793,359.83765,112.49062,277.76257,5.048 1895,583.29535,411.72165,71.36377,176.37692,5.045 1895,619.4542,177.76627,15.738281,35.291992,4.947 1895,612.9821,454.48746,39.48065,107.85666,4.876 1895,585.6161,-102.98517,75.93964,237.37996,4.807 1895,222.83806,226.56186,28.0047,66.20343,4.779 1895,618.46606,234.08127,17.663147,33.586395,4.736 1895,602.7224,-54.797802,53.477478,137.21695,4.675 1895,536.31647,310.73453,143.11932,342.2534,4.6 1895,490.28308,-179.86902,234.40778,424.09998,4.582 1895,626.502,487.91937,20.778809,46.24823,4.554 1895,477.30426,-1.3153534,27.613617,72.76756,4.553 1895,-9.114828,375.635,39.22603,99.691895,4.458 1895,-5.0069666,200.83362,17.637314,44.13121,4.455 1895,-18.593771,427.3937,56.01558,147.43759,4.438 1895,16.223326,206.04678,21.797327,46.56198,4.394 1895,493.45844,227.00851,237.6247,516.095,4.387 1895,3.4427845,203.86786,20.037329,52.640625,4.289 1895,228.84949,216.84895,28.492493,59.73964,4.275 1895,-36.95403,-126.5299,116.68158,276.7258,4.242 1895,-70.529366,-188.02858,210.91666,452.60706,4.125 1895,-1.0979319,328.8283,58.141167,152.84595,4.093 1895,-8.189076,4.9120903,38.41861,106.51013,4.018 1895,298.67975,234.09348,18.14801,32.050232,3.995 1895,613.9575,236.02277,15.079285,25.569519,3.883 1895,620.1423,194.06305,16.530945,42.532684,3.865 1895,-10.750197,191.66318,28.798138,66.00778,3.851 1895,627.255,223.81537,16.223694,38.044556,3.85 1895,146.6849,217.96854,22.773026,42.550476,3.841 1895,459.67108,211.27885,19.91925,40.14293,3.795 1895,1.7459548,489.27213,20.069765,41.632477,3.763 1895,614.8259,229.16707,24.859436,63.383102,3.744 1895,615.9948,-20.0387,25.830688,73.48754,3.711 1895,7.3727465,197.37842,26.736656,64.5636,3.701 1895,159.45578,218.17201,22.504913,47.05223,3.653 1895,290.93594,233.93814,18.545227,33.17511,3.632 1895,441.80508,207.5597,20.72647,39.946075,3.614 1895,-9.167823,331.69498,40.44728,100.52011,3.565 1895,196.96866,230.13889,38.071625,87.31055,3.548 1895,36.926064,360.72702,36.541145,85.76358,3.539 1895,619.54944,-17.572392,16.70343,44.601437,3.521 1895,279.29254,221.34221,33.196777,78.98091,3.508 1895,201.80286,283.84625,20.797684,37.821655,3.498 1895,598.25464,237.09605,12.092163,22.561417,3.455 1895,14.289953,229.49945,52.937798,123.16571,3.442 1895,613.394,181.80426,34.588806,100.06317,3.438 1895,-13.08972,217.43614,48.031258,141.75862,3.421 1895,274.55258,230.57362,20.303162,35.07109,3.409 1895,2.5720887,-16.264208,17.589392,41.591972,3.408 1895,622.69836,222.54677,26.924316,66.84892,3.401 1895,293.53256,222.8639,34.846466,80.38057,3.356 1895,-4.553493,278.30878,15.4398,41.264038,3.349 1895,238.66779,237.66225,22.77182,48.16588,3.31 1895,574.0131,-24.939827,53.81726,130.60785,3.293 1895,164.30807,208.64655,37.80783,84.69812,3.286 1896,627.18555,-18.361912,17.238953,47.63002,6.501 1896,-9.09141,461.1815,38.11071,96.10861,6.295 1896,623.0195,-33.729164,26.560242,77.47247,6.221 1896,-11.420922,-32.082684,30.410656,73.32346,5.985 1896,-5.6015825,487.84894,18.286198,44.110535,5.897 1896,-5.840973,-16.676664,17.91732,42.252445,5.699 1896,-17.339355,-62.672714,56.51728,142.46344,5.49 1896,137.85403,248.16139,21.101654,41.516953,5.253 1896,626.49677,488.32938,20.804504,45.808563,5.206 1896,-18.138418,425.2116,55.498985,150.83673,5.115 1896,603.30585,-55.867466,52.909607,135.90594,5.09 1896,583.2568,411.61148,71.3667,176.53079,5.05 1896,218.86023,250.13084,20.880035,40.117447,5.04 1896,612.9856,454.52222,39.49536,107.80609,4.954 1896,297.98352,249.90889,18.919525,34.067673,4.874 1896,5.0343895,221.23108,37.212452,106.66742,4.867 1896,-73.07166,265.5794,201.09683,463.26996,4.844 1896,-40.474342,363.8361,111.614586,276.5189,4.782 1896,585.49854,-103.297035,76.48682,237.96466,4.669 1896,57.751602,279.7186,33.89379,65.652435,4.633 1896,536.4312,310.6764,143.1336,342.19495,4.582 1896,387.296,208.53267,19.046143,34.032715,4.471 1896,490.55597,-179.5315,234.81818,422.71567,4.448 1896,493.60834,226.46497,237.143,515.77515,4.38 1896,619.5488,-17.735022,17.16632,44.385685,4.293 1896,-36.966747,-125.73324,116.61302,276.05817,4.244 1896,-8.042906,5.1464157,38.543823,107.093704,4.242 1896,-11.288555,209.39607,29.685997,68.5515,4.226 1896,13.644147,200.78822,50.223507,116.488754,4.211 1896,595.173,-47.444405,43.16681,100.97111,4.208 1896,-6.226759,216.34052,35.211437,101.99628,4.153 1896,-70.429756,-187.7732,210.80664,451.79764,4.092 1896,42.496643,234.6308,56.334747,124.61383,4.03 1896,-5.7039547,244.26253,18.99517,45.30629,3.907 1896,203.82394,243.39012,16.919159,32.794205,3.899 1896,293.41754,231.71928,33.930115,81.57106,3.898 1896,279.58167,230.26178,33.691406,82.721436,3.865 1896,-8.73371,417.45526,29.503033,83.28348,3.853 1896,81.50072,261.6754,20.835709,38.280457,3.851 1896,2.5664563,488.4135,19.084631,42.272217,3.811 1896,515.35895,-0.6927147,17.779236,35.402622,3.753 1896,2.4098587,-15.506783,17.280197,40.616104,3.698 1896,153.12952,240.88551,21.749725,38.336105,3.698 1896,140.88445,244.7442,27.437714,56.4328,3.688 1896,109.041565,317.92877,34.78676,84.76657,3.635 1896,-5.234442,171.86082,17.074755,40.206787,3.534 1896,523.199,-13.051944,15.36084,38.107937,3.485 1896,-5.483029,156.39879,16.19632,36.41252,3.484 1896,440.9468,201.1923,21.11737,37.710648,3.483 1896,171.11732,223.90955,20.668884,35.555206,3.475 1896,312.6621,248.67105,22.182251,35.743835,3.474 1896,-7.985715,259.6238,38.106083,104.328094,3.466 1896,539.5435,-11.81765,15.583435,35.87546,3.427 1896,-5.358875,140.07127,16.33685,35.84778,3.425 1896,208.53271,244.97453,29.81865,74.39235,3.416 1896,-6.5247064,311.76172,18.871851,38.083588,3.395 1896,99.36927,221.14012,30.479088,63.63832,3.382 1896,1.2524343,-14.185745,51.616924,144.84995,3.382 1896,-10.030928,180.87265,30.484116,70.524475,3.375 1896,-4.9597697,188.18349,18.322884,42.45082,3.364 1896,56.11995,248.38568,62.655083,140.3117,3.345 1896,2.505188,-18.930397,32.28074,72.02727,3.334 1896,523.4754,2.8366652,16.51007,30.576462,3.324 1896,195.89835,243.36533,17.342804,33.02417,3.294 1896,0.85264325,207.29741,23.035639,48.71602,3.271 1896,618.2672,490.6246,20.806946,42.767,3.27 1896,0.19382238,379.51834,29.325354,82.75198,3.266 1896,305.88583,248.48804,19.94223,35.561096,3.24 1896,215.36325,224.33446,33.516373,78.3094,3.236 1896,490.85925,-16.685356,17.459778,41.975086,3.234 1896,5.1231346,457.20917,38.008488,107.58783,3.229 1896,-14.292337,155.9061,49.39691,138.70782,3.202 1896,90.30257,263.44952,19.615349,35.08145,3.187 1896,225.37727,242.44801,19.702805,41.11818,3.185 1896,36.25375,228.29137,39.158916,93.100174,3.168 1896,603.5755,-17.562454,16.322693,41.29389,3.166 1896,182.41286,224.05302,34.747116,79.23784,3.161 1896,298.35458,235.92206,19.045807,32.903656,3.153 1896,166.86517,224.58078,35.583115,79.59613,3.145 1896,-5.5456457,262.30457,17.891289,43.26236,3.144 1896,493.75537,-1.0739632,27.633545,58.168736,3.136 1897,207.54587,247.61586,24.23996,45.780563,11.685 1897,-11.242258,-32.009476,30.38391,75.065956,7.257 1897,-6.3523583,-16.903667,18.362385,43.81784,7.002 1897,-17.341917,-62.24276,56.70014,142.70775,5.786 1897,627.46454,-17.765188,16.859802,45.873703,5.74 1897,-6.0633445,489.54813,18.740746,41.361664,5.49 1897,-12.260548,478.44537,30.759146,62.318542,5.392 1897,57.486668,228.96736,33.95399,61.85585,5.162 1897,120.80217,238.05194,23.748734,45.925293,5.03 1897,583.2604,411.80338,71.44055,176.49606,5.027 1897,612.97235,454.30432,39.589172,108.0578,4.975 1897,626.5747,487.9527,20.670166,46.35132,4.906 1897,-40.999184,364.36682,112.04702,275.35144,4.851 1897,-72.38189,265.82947,200.14902,462.34338,4.808 1897,623.03723,-33.75852,26.421753,75.351135,4.737 1897,603.1279,-56.97429,53.37915,139.1475,4.64 1897,536.33044,310.58807,143.38342,341.90875,4.575 1897,532.5198,-183.47318,147.96515,423.36258,4.511 1897,1.6282243,-16.028416,17.650503,42.96266,4.487 1897,585.61456,-104.38779,76.67029,239.25113,4.473 1897,-8.646446,-6.448704,39.08342,101.10188,4.457 1897,44.928127,226.14212,34.056805,62.102356,4.372 1897,493.6119,226.45514,237.2449,515.58813,4.343 1897,-36.649826,-125.82381,116.18942,274.8691,4.309 1897,255.31833,210.0014,27.202301,62.73294,4.131 1897,-69.91718,-187.66278,210.13812,452.1437,4.052 1897,214.7776,259.85928,24.153091,44.40497,3.95 1897,1.5468955,-19.209757,33.59786,70.88947,3.939 1897,449.73538,202.21454,20.61377,36.606964,3.895 1897,-18.78225,432.81946,56.839268,143.48694,3.75 1897,559.30365,225.85504,21.77533,43.23065,3.685 1897,191.43903,241.26555,30.420532,61.38835,3.68 1897,129.58263,234.44,20.080582,41.534576,3.658 1897,199.81702,227.11273,27.31012,57.02249,3.633 1897,100.08045,236.11444,30.359322,55.13733,3.602 1897,547.2266,208.76324,39.375427,87.70215,3.573 1897,324.22238,237.47403,39.788605,96.11124,3.565 1897,135.42143,318.96643,34.82161,81.82449,3.56 1897,132.93674,230.28984,39.50888,78.44942,3.556 1897,595.16406,-48.92617,43.608948,102.72109,3.54 1897,542.137,217.88364,26.386414,60.346405,3.533 1897,116.178734,251.30891,30.857521,60.967697,3.518 1897,0.94501734,-14.711845,51.776455,143.2601,3.475 1897,148.93448,243.79907,39.918823,75.38403,3.475 1897,129.1454,277.4249,34.96051,73.2793,3.464 1897,497.51874,-15.671812,18.203247,44.53599,3.424 1897,435.07602,212.91824,20.733612,44.056732,3.365 1897,613.0479,30.783474,36.27289,108.283295,3.352 1897,138.99782,228.41533,17.859161,35.580154,3.324 1897,165.13272,243.26678,38.002975,72.849304,3.321 1897,505.83325,-16.833534,18.072327,43.003536,3.295 1897,2.0454626,491.32434,19.642372,40.11444,3.292 1897,-9.299893,354.85724,39.01922,108.204895,3.261 1897,257.65988,203.21397,20.489655,38.537186,3.253 1897,-10.10723,316.51526,32.47394,66.40704,3.251 1897,116.459305,216.42769,39.91391,81.941574,3.187 1897,619.7588,-16.849241,16.320251,41.55546,3.165 1897,451.64944,198.00925,28.370422,51.698074,3.163 1897,292.4957,238.9063,38.946198,93.27455,3.145 1897,396.28024,203.93527,16.456238,30.46141,3.124 1897,-5.9228764,229.79506,18.256502,42.444443,3.106 1897,178.91878,240.91312,19.391708,33.27713,3.1 1897,564.8207,205.24261,39.023987,91.2038,3.092 1897,-5.3717446,199.53458,19.046774,43.38083,3.086 1897,547.17865,414.41214,82.84607,166.18936,3.071 1897,186.1777,241.65302,19.405792,33.022278,3.07 1897,492.93976,-32.46241,28.218628,80.572784,3.064 1898,521.20605,215.7496,19.60498,39.992676,16.993 1898,194.92232,237.89772,21.144745,45.671677,7.541 1898,560.9524,112.07563,20.668335,58.49897,6.539 1898,627.47906,-17.307152,16.626526,45.965416,6.068 1898,-12.032835,477.49808,30.250704,63.992096,5.833 1898,-11.401811,-32.351307,29.942013,74.41459,5.666 1898,-16.967886,-61.930588,56.309113,143.19513,5.502 1898,-6.1629515,489.32318,19.04166,42.564697,5.454 1898,-5.962166,-17.370495,17.652176,43.100143,5.391 1898,611.05615,-49.077988,41.048462,100.74392,5.187 1898,516.0752,210.40445,19.605286,36.42624,5.156 1898,141.15475,292.6693,35.609283,80.07703,5.065 1898,626.4876,487.63614,20.765442,46.46634,5.043 1898,583.22375,411.3282,71.39014,176.77277,5.023 1898,612.89465,454.57776,39.6239,107.70947,5.003 1898,-22.120943,401.4523,79.51219,175.70468,4.845 1898,-72.70669,265.70117,200.3703,462.0681,4.765 1898,536.48206,311.24353,143.01123,341.57056,4.581 1898,125.4507,241.75702,29.494736,63.779602,4.571 1898,532.57196,-183.0693,147.90277,422.53967,4.526 1898,585.44995,-105.14711,76.787964,240.36267,4.471 1898,493.38028,226.48087,237.66037,515.3185,4.341 1898,-36.860115,-125.381836,116.73743,274.1787,4.268 1898,178.97336,236.7496,18.107971,33.78293,4.258 1898,183.14288,233.1052,31.020386,67.831726,4.2 1898,459.96887,197.91727,27.546112,54.82425,4.198 1898,209.02103,240.41483,21.896332,43.58551,4.195 1898,-7.946974,6.9511757,38.2241,105.84569,4.139 1898,527.60626,210.53348,20.930054,36.12407,4.12 1898,624.2652,-22.510832,25.504944,72.24327,4.116 1898,35.968895,211.28409,32.105705,60.960052,4.045 1898,-70.108406,-187.62875,210.15775,452.3657,4.024 1898,522.2505,207.68681,18.282715,30.442932,3.957 1898,-1.4128876,225.13112,27.452374,65.45546,3.918 1898,-6.5815954,231.03706,19.14484,40.38646,3.848 1898,134.0047,226.62845,37.495056,82.37445,3.723 1898,114.07861,232.11324,20.01384,34.248886,3.708 1898,109.93181,234.19028,28.769333,59.128113,3.647 1898,599.29913,121.10957,34.075073,93.52048,3.621 1898,596.67834,1.2829189,14.964294,32.296257,3.566 1898,-9.573338,136.18973,39.83104,101.067215,3.566 1898,602.9686,-30.633526,53.34839,143.96875,3.538 1898,5.5811524,200.08736,36.633125,96.85466,3.506 1898,13.171423,199.24725,54.27468,131.21423,3.478 1898,171.51782,238.8477,18.662674,32.46266,3.447 1898,476.35962,-13.431923,30.484436,76.79865,3.41 1898,-14.33567,152.71213,49.063934,139.21011,3.4 1898,-3.906801,383.83405,14.237687,33.50244,3.398 1898,588.4441,0.6371765,16.117004,32.825333,3.387 1898,583.25604,123.92967,35.578613,89.72676,3.386 1898,620.0384,-16.893831,15.975037,42.235806,3.372 1898,120.36757,248.10165,23.31807,47.920197,3.357 1898,149.77573,226.76042,36.466644,79.28795,3.354 1898,475.0919,-15.483179,17.132355,43.98782,3.305 1898,-5.1199703,202.61931,16.902674,39.767273,3.293 1898,587.5744,-13.563801,14.898804,36.73236,3.29 1898,-4.5031915,187.29395,16.750044,40.950882,3.283 1898,613.7377,97.74333,33.85327,105.477554,3.278 1898,549.75574,103.168755,36.25525,99.76096,3.271 1898,153.66396,264.13547,34.836227,64.00394,3.246 1898,1.8308103,490.41553,20.042706,41.321045,3.241 1898,2.52854,-15.530616,16.911602,40.268196,3.238 1898,603.6478,36.393723,51.10553,135.73897,3.179 1898,547.13916,413.76154,82.97412,167.08728,3.141 1898,102.63338,220.50378,27.22232,57.03192,3.14 1898,86.57706,212.79636,26.994614,65.87656,3.104 1898,54.337463,199.71684,37.36393,93.86952,3.101 1898,565.9403,104.52976,36.20703,98.21163,3.068 1899,582.5259,106.10518,25.79895,78.10156,8.994 1899,626.93317,-19.63675,17.742249,48.437637,6.285 1899,623.21515,-33.88693,26.262756,76.90737,6.119 1899,-17.097485,-62.201286,56.505787,143.76881,5.82 1899,153.07138,279.30823,31.82219,72.402405,5.704 1899,-11.046783,-32.60318,29.635069,74.85099,5.647 1899,-8.857291,465.28055,37.640133,91.16208,5.552 1899,-6.006898,-17.55938,17.73573,43.315857,5.535 1899,613.1962,455.60645,38.955505,106.213745,5.351 1899,-6.1760435,488.52472,19.165508,43.391785,5.096 1899,583.2855,411.4733,71.30469,176.96005,5.033 1899,626.3702,488.04413,21.039856,46.59668,5.027 1899,-21.805214,402.31015,79.282104,175.37021,4.857 1899,-73.0556,265.7613,200.42181,461.53546,4.806 1899,585.3704,-105.158745,76.42694,242.41522,4.699 1899,532.3018,-183.0116,148.06128,422.78067,4.645 1899,536.34827,310.85974,143.3247,341.83594,4.629 1899,543.6445,215.76375,24.999268,37.974777,4.573 1899,619.6408,-19.075611,17.376465,45.108837,4.57 1899,-7.724229,6.294361,38.333916,103.955765,4.52 1899,603.1355,-56.79486,53.337402,140.67992,4.404 1899,-36.842957,-124.182205,116.4207,271.46277,4.326 1899,493.3255,226.66907,237.5285,515.456,4.311 1899,598.71826,116.594444,34.439514,97.092354,4.308 1899,615.6464,-23.313389,26.406921,76.91826,4.27 1899,613.8848,113.7224,34.100647,102.27014,4.138 1899,200.21277,231.81442,25.319595,59.630676,4.12 1899,456.89908,209.56819,23.454193,44.369095,4.09 1899,-70.70351,-187.84613,210.47165,452.31427,4.045 1899,209.5154,243.56885,20.462112,43.80127,4.0 1899,290.70953,238.05931,19.97647,38.83879,3.976 1899,490.76312,-16.162918,17.171814,45.88331,3.894 1899,-10.154655,135.86841,40.01514,103.04823,3.861 1899,309.88776,227.26862,35.938538,97.87842,3.856 1899,493.5347,-34.957123,27.524445,83.625916,3.834 1899,121.35059,244.109,20.756813,43.619034,3.821 1899,-11.509848,219.80502,29.743025,69.89679,3.777 1899,87.265305,215.01561,27.315948,67.0804,3.753 1899,500.96133,-19.189835,30.150665,79.30965,3.696 1899,-4.4937286,365.62708,15.826308,35.587036,3.631 1899,-8.039914,263.24847,37.10383,100.79947,3.627 1899,-6.1562657,222.80956,18.180283,42.836136,3.615 1899,170.28952,241.43895,19.755417,33.08467,3.595 1899,595.2029,-47.597214,43.299988,105.13147,3.545 1899,0.8230996,-10.805595,51.544575,131.1621,3.535 1899,294.70547,227.98764,34.15619,94.57788,3.533 1899,479.4191,211.63858,22.181519,38.957504,3.504 1899,253.18185,212.41599,30.437897,60.518982,3.5 1899,159.02097,274.33276,22.50473,48.25299,3.499 1899,213.5092,220.01508,35.697037,84.22858,3.498 1899,589.1778,-18.90219,29.60205,70.42913,3.498 1899,562.01514,208.36148,20.815125,35.764954,3.497 1899,613.5445,66.57095,34.036926,108.171005,3.495 1899,598.10785,153.81114,36.849915,95.794174,3.495 1899,605.304,133.74747,51.10437,130.7089,3.486 1899,-5.8158875,265.2166,18.970722,41.932953,3.485 1899,582.5808,118.43431,36.42987,95.14424,3.48 1899,484.24707,207.87169,39.213562,89.16957,3.468 1899,1.6558838,489.06253,20.43898,43.235077,3.436 1899,324.43805,225.5311,37.664948,102.98828,3.408 1899,262.93423,222.8871,29.660095,62.257584,3.375 1899,279.28036,228.05641,34.40576,92.23439,3.351 1899,617.95544,490.1791,21.501587,43.923553,3.351 1899,-15.217228,153.11377,50.771004,139.24078,3.342 1899,483.61203,-15.274943,16.916962,42.872066,3.34 1899,149.4444,245.36649,38.292847,85.6261,3.316 1899,4.128813,217.71965,30.872118,70.71916,3.301 1899,538.50574,212.62354,20.849731,31.459183,3.292 1899,2.1623726,-15.932592,17.216652,40.38405,3.284 1899,549.12115,182.27954,38.433105,82.03296,3.265 1899,-8.591184,49.615566,37.8937,106.45563,3.245 1899,5.7252145,468.971,38.246716,93.51904,3.208 1899,114.11068,227.53162,21.694649,44.51187,3.204 1899,1.6720533,-39.73867,42.879925,99.620346,3.195 1899,610.6816,111.27399,20.059875,51.33661,3.172 1899,-2.5508893,-19.608982,29.274824,72.519936,3.163 1899,4.366598,249.05249,30.702822,64.4505,3.16 1900,496.36365,219.11275,21.96405,38.360214,8.731 1900,570.63257,217.53491,19.851807,37.20381,7.687 1900,-11.32709,-32.459366,30.161053,75.34381,6.427 1900,614.1,95.81131,24.160889,84.31293,5.864 1900,-6.2527714,-17.005726,17.772781,43.186337,5.748 1900,-17.16244,-62.064987,56.626633,144.54434,5.657 1900,627.35986,-18.435452,16.89795,47.21169,5.634 1900,-9.009798,464.247,37.704422,92.55768,5.499 1900,622.7257,-33.57051,26.347229,76.59558,5.462 1900,626.4648,488.13385,20.844177,46.087463,5.187 1900,-6.234176,488.07956,19.100517,43.83481,5.167 1900,612.92285,454.75955,39.552734,107.040375,5.156 1900,158.69652,288.4797,31.970016,76.71912,5.011 1900,583.1833,411.23938,71.35565,176.86444,4.878 1900,-22.30299,401.25687,79.64472,175.712,4.873 1900,585.5224,-102.76519,75.51227,238.74435,4.86 1900,-72.907074,266.22845,200.20128,461.44806,4.839 1900,536.45746,310.1148,143.22028,342.27423,4.716 1900,491.3604,-180.14336,233.47107,424.90225,4.691 1900,602.52716,-55.431133,53.378723,140.69844,4.633 1900,-7.811253,6.8547173,38.34301,104.72493,4.422 1900,493.5365,226.31512,237.57867,515.88916,4.334 1900,-36.88785,-123.64493,116.833084,271.74298,4.266 1900,512.0542,216.85397,23.138,39.697845,4.171 1900,619.0206,209.13127,15.575562,33.385696,4.134 1900,-70.79434,-187.99168,210.63019,452.50635,4.109 1900,207.45834,252.19174,22.429886,47.69348,3.989 1900,476.6013,214.98984,31.096222,53.026398,3.961 1900,489.7146,225.66487,22.543823,40.493637,3.94 1900,499.31897,-16.621319,17.742554,44.592865,3.898 1900,599.17365,192.53824,34.110474,86.24457,3.746 1900,605.63275,96.118614,49.406433,137.36243,3.739 1900,613.6305,148.12515,35.51526,101.109344,3.658 1900,500.46085,213.20308,37.415497,75.22328,3.657 1900,137.51222,253.16475,19.90593,41.069138,3.609 1900,605.11707,170.42236,49.340576,124.76236,3.605 1900,619.81573,-18.4138,17.065308,44.404854,3.57 1900,-15.343405,152.65735,51.464676,140.49377,3.57 1900,2.356168,-15.293133,16.784441,40.498875,3.567 1900,581.7672,210.5778,36.956665,91.82149,3.566 1900,-11.7545395,246.08995,29.370155,65.47316,3.566 1900,516.4379,213.96219,38.42035,78.535,3.547 1900,554.97656,235.55443,19.455566,35.685867,3.518 1900,529.5538,230.70157,19.306152,32.64102,3.455 1900,-8.714133,50.32958,38.13318,105.77652,3.409 1900,-4.1310782,350.57935,14.811228,34.559387,3.409 1900,566.6159,207.55861,35.133484,81.4713,3.401 1900,485.79932,213.57394,37.403625,74.44464,3.401 1900,-10.262556,135.30287,40.13073,105.30716,3.39 1900,587.7197,214.20612,15.759705,30.164673,3.371 1900,261.04886,221.30788,30.538849,66.92375,3.335 1900,516.8031,-19.71787,31.055176,75.509636,3.327 1900,506.10898,-16.77804,17.318512,45.52732,3.308 1900,1.8524718,-38.909447,42.82536,99.47381,3.296 1900,-6.6931906,265.4882,19.357536,39.0625,3.283 1900,-5.5505934,222.65192,18.240211,45.818542,3.273 1900,0.9200716,-10.009033,51.0989,134.0048,3.247 1900,618.1511,490.66696,21.01361,42.502106,3.24 1900,508.77216,-36.13445,27.79303,83.81798,3.22 1900,577.8461,213.44664,17.19806,34.02318,3.22 1900,36.16137,228.14221,39.842506,80.59778,3.219 1900,-3.1680381,-17.581182,29.642994,71.18898,3.214 1900,572.73157,-25.192135,53.649414,148.60454,3.209 1900,576.76514,227.49382,20.65039,35.623123,3.2 1900,473.591,221.56137,21.266022,40.594177,3.178 1900,627.4083,211.01828,16.949707,41.590973,3.178 1900,585.89166,223.28348,19.226501,36.129303,3.175 1900,563.56464,225.2265,20.259155,38.16446,3.173 1900,597.32294,157.16682,37.880554,93.79076,3.173 1900,546.51105,209.57294,19.153503,32.84279,3.169 1900,306.18137,245.86467,19.64746,31.11763,3.166 1900,591.1413,205.43256,57.88092,203.80505,3.163 1900,598.2781,217.75456,38.529175,106.30946,3.15 1900,598.01843,104.74211,27.87976,69.46011,3.129 1900,-8.395107,261.6597,36.77483,104.95291,3.115 1900,66.487785,367.48563,19.57267,32.34073,3.107 1900,82.486305,348.01633,31.594345,62.872803,3.101 1900,-4.031001,366.43732,14.967847,33.034485,3.1 1901,606.5447,218.28491,22.907227,48.219574,39.9 1901,615.3254,216.01295,21.196716,48.79512,14.582 1901,598.2311,212.05173,34.462036,79.90469,7.51 1901,595.90247,216.57077,23.054504,48.70224,7.034 1901,-11.314598,-31.951647,30.082067,74.77488,6.658 1901,-6.467309,-16.619068,18.37255,44.11125,6.263 1901,-11.909855,478.4984,29.951284,62.97223,6.017 1901,-17.19266,-61.47754,56.68479,142.35268,5.651 1901,611.0399,-49.369804,41.0188,101.67515,5.588 1901,-6.2839212,489.44547,19.014908,42.327118,5.475 1901,612.74426,454.59732,39.937256,107.519806,5.436 1901,627.0271,-18.4903,17.150696,46.73687,5.431 1901,619.73944,206.64383,17.542969,40.675674,5.277 1901,583.1935,412.22803,71.47131,175.66504,4.98 1901,-72.78693,266.14737,200.24847,461.50278,4.936 1901,-22.078442,401.96875,79.65115,175.56476,4.884 1901,536.5316,310.40686,143.35583,342.386,4.632 1901,490.92474,-180.70451,233.29388,425.1955,4.609 1901,621.7495,477.9715,28.775146,66.36658,4.548 1901,158.6521,285.68152,32.39737,73.792694,4.449 1901,585.86884,-101.85001,75.24921,234.82437,4.442 1901,-7.6021776,5.204674,38.06242,104.75058,4.416 1901,-0.7712734,204.98727,26.273024,76.48648,4.374 1901,297.40085,245.2161,20.499176,36.880432,4.348 1901,493.60745,227.48969,237.63412,516.0189,4.299 1901,-37.109577,-124.33239,116.593796,272.1956,4.291 1901,551.3578,222.97221,23.933228,37.460007,4.192 1901,626.22375,215.98586,18.881287,45.813522,4.19 1901,-70.47836,-188.26424,210.36522,453.28674,4.18 1901,1.7182261,-15.627679,17.368628,42.456375,4.15 1901,579.474,224.79102,42.360596,111.540344,3.956 1901,613.62646,229.49438,37.236206,112.97937,3.913 1901,612.16254,187.29735,33.57245,90.89763,3.843 1901,270.23685,236.8229,28.423615,54.674255,3.834 1901,604.1915,96.86108,51.4057,138.66147,3.822 1901,1.8599164,-18.962288,33.31276,71.12761,3.777 1901,597.56555,163.28763,37.17816,92.155945,3.715 1901,-5.837693,257.445,18.748856,41.41922,3.656 1901,-9.763521,136.49173,39.79438,102.453445,3.636 1901,-11.70475,247.82843,30.333641,61.190918,3.569 1901,-5.452955,229.81305,17.981323,45.685852,3.562 1901,12.573895,212.66922,52.959827,110.39459,3.55 1901,519.51843,215.83842,23.47174,39.51645,3.523 1901,-12.855423,217.26193,47.118465,137.39932,3.518 1901,1.9050276,490.68628,19.762615,41.581116,3.49 1901,522.35803,-16.631842,17.513733,42.544136,3.483 1901,304.90945,244.32967,20.63559,31.925644,3.42 1901,-4.7667575,170.7125,16.826714,41.0092,3.418 1901,2.081499,-19.832333,49.542564,130.3464,3.39 1901,4.1777887,252.33536,38.372673,104.919556,3.315 1901,514.5055,-15.317665,17.748169,40.024647,3.289 1901,619.69025,-18.113617,17.054077,43.547615,3.285 1901,502.72415,197.67279,27.439178,60.92444,3.276 1901,52.218155,208.72498,40.599266,83.861115,3.252 1901,622.40985,222.5083,28.164368,70.52985,3.187 1901,-9.713734,66.10387,38.652943,109.655075,3.176 1901,198.17725,232.36734,27.546356,59.45932,3.162 1901,613.6811,77.15317,35.781128,113.17456,3.159 1901,85.44257,204.10074,38.868713,91.776276,3.152 1902,191.55823,252.38199,23.064743,44.481842,11.314 1902,-11.245905,-32.132004,29.9841,75.94736,6.948 1902,-6.3683863,-16.687603,18.054455,44.054775,6.287 1902,603.16705,-57.179665,53.114075,136.33528,5.85 1902,-5.826417,489.57916,18.233263,41.267334,5.734 1902,627.07544,-19.558712,17.460632,48.95077,5.608 1902,-17.173504,-61.644245,56.726845,143.80392,5.533 1902,-12.027579,478.01425,30.187515,62.80191,5.348 1902,622.93134,-34.322784,26.157898,76.68826,5.346 1902,613.107,455.26044,39.231873,107.02722,5.047 1902,583.1628,412.35608,71.56537,175.67725,5.016 1902,626.32654,487.3528,20.82428,46.974884,5.016 1902,-22.24806,401.93652,79.74924,175.83887,4.955 1902,-73.01575,265.5703,200.48523,461.61694,4.774 1902,536.3129,310.87488,143.8028,341.36023,4.693 1902,298.76505,253.24289,18.355103,35.66922,4.678 1902,490.9703,-180.72495,233.46909,425.152,4.629 1902,594.3141,-47.04717,44.13141,98.7519,4.628 1902,585.8694,-100.33602,75.150024,233.20944,4.549 1902,493.64655,226.90427,237.52277,515.5984,4.416 1902,-1.9490159,209.3339,28.054049,80.19461,4.363 1902,-7.7473984,6.1828575,38.481632,105.267426,4.326 1902,-36.602962,-123.18939,116.38611,270.98993,4.319 1902,-70.560745,-188.21803,210.40005,453.25574,4.138 1902,290.56866,252.0621,19.77539,37.23282,4.105 1902,154.34679,291.82114,32.653122,86.74771,4.069 1902,209.0384,258.23846,21.22586,39.65103,4.036 1902,2.0690184,-15.277792,16.941277,42.437515,4.025 1902,149.02701,259.91983,38.091354,84.76788,3.86 1902,481.3758,235.55777,21.46814,40.721924,3.755 1902,2.3812497,491.5055,18.71729,39.452393,3.686 1902,613.8567,147.00282,35.144714,101.01128,3.671 1902,29.368195,208.00748,53.76619,123.88486,3.665 1902,196.36862,253.31421,29.374008,57.95929,3.645 1902,544.6836,229.1632,21.48407,37.10228,3.585 1902,314.64783,254.69987,18.534088,34.82921,3.525 1902,10.901978,-9.53529,57.702415,128.478,3.505 1902,53.51264,225.67195,29.56527,64.603195,3.496 1902,-4.0577006,-16.70963,30.572544,71.53494,3.474 1902,80.76213,234.59372,23.121834,46.21277,3.468 1902,101.69936,220.34657,38.527977,89.54265,3.466 1902,538.7007,-15.619259,17.172302,40.963104,3.462 1902,1.7748237,-38.65525,42.992596,98.71987,3.46 1902,282.27917,248.25992,20.87796,33.17108,3.391 1902,548.923,-34.942326,28.076477,77.555435,3.369 1902,-3.9340587,396.67392,15.003948,34.2041,3.358 1902,85.39438,217.13072,38.03334,91.044754,3.332 1902,410.85852,202.92667,20.12738,41.366592,3.307 1902,604.2264,61.47248,50.50354,143.9852,3.299 1902,61.36531,205.25874,52.202995,121.41765,3.284 1902,321.5113,251.90833,19.856567,38.046875,3.272 1902,618.94995,-19.851788,17.934326,45.954533,3.243 1902,11.193373,219.55295,33.292778,69.45538,3.219 1902,-4.0234995,381.6522,14.565535,34.755157,3.211 1902,-9.016209,49.730446,38.539265,105.674736,3.208 1902,116.62171,221.92828,38.21499,88.36755,3.199 1902,129.68805,258.39203,51.739716,118.62598,3.188 1902,306.4449,253.48184,17.869934,35.220337,3.178 1902,545.8612,-14.951873,17.31836,41.244904,3.157 1902,68.8094,232.03479,29.978348,68.01788,3.148 1902,545.7792,211.55794,30.342896,54.972275,3.148 1902,598.05994,155.74548,36.990845,92.81021,3.147 1902,11.443741,221.64421,54.952316,124.67305,3.142 1902,-7.7690086,248.85097,37.321648,102.39397,3.136 1902,-4.714856,68.65969,17.318502,45.40351,3.123 1902,546.5969,415.0599,83.6969,164.29703,3.112 1902,-4.6257644,364.4804,15.752302,36.818817,3.097 1902,99.46998,336.61835,36.173973,89.47513,3.085 1902,-4.8072834,102.15281,16.611982,42.9414,3.074 1902,606.5644,169.1084,49.451965,123.436035,3.065 1902,-5.855224,328.96646,17.491787,39.908478,3.049 1902,534.65186,-33.56761,27.350098,75.75852,3.031 1902,-5.0732927,118.899,16.150425,42.123962,3.03 1902,-5.1558394,313.829,16.359789,38.789185,3.024 1903,186.07729,241.18217,21.770035,40.92964,9.352 1903,31.635458,224.02248,24.851175,48.603928,7.988 1903,20.234882,215.14862,31.2123,67.25629,7.311 1903,5.8598375,208.98825,29.687183,71.1008,6.165 1903,626.99286,-18.742971,17.524414,47.942806,5.977 1903,623.17944,-33.44815,26.660034,75.54845,5.898 1903,-11.3128395,-32.00551,30.04684,74.91111,5.897 1903,-17.248194,-61.81971,56.71026,142.7029,5.669 1903,-6.1661634,489.35104,18.775814,42.1315,5.541 1903,603.0874,-56.957542,52.95215,136.46487,5.513 1903,564.24176,221.38388,25.858643,41.969208,5.496 1903,-6.1702275,-16.84648,17.85867,42.717876,5.447 1903,-12.211347,477.853,30.634026,63.295807,5.274 1903,490.06,230.58429,21.870178,47.560425,5.24 1903,42.40513,220.10268,33.451134,59.89827,5.101 1903,582.9838,411.71707,71.730225,176.53262,5.016 1903,612.8837,455.04825,39.652283,106.59665,5.009 1903,-40.448,366.38525,111.12918,274.12524,4.939 1903,536.25336,310.03964,143.76263,342.17813,4.783 1903,626.3491,487.80075,20.923218,46.64908,4.757 1903,178.89386,236.82057,21.889664,37.73146,4.726 1903,76.82059,222.72736,30.58374,62.291473,4.712 1903,585.9875,-100.22571,74.7005,234.37427,4.711 1903,-72.7086,266.00793,200.54526,461.37708,4.707 1903,531.9004,-182.571,149.43848,424.13297,4.693 1903,493.5037,226.22049,237.70285,515.7932,4.498 1903,-8.896505,-4.399452,39.585495,98.532486,4.441 1903,617.57166,216.72888,21.92163,51.817535,4.394 1903,54.91758,228.60144,25.924736,41.110596,4.344 1903,11.662233,209.53851,55.553,119.91077,4.263 1903,-36.80531,-122.876305,116.56052,270.98843,4.259 1903,1.0846817,271.4535,20.501326,38.310913,4.254 1903,541.03314,216.34972,28.208557,60.358505,4.219 1903,-18.070478,433.80878,55.98317,141.96527,4.126 1903,415.0185,197.59747,26.829376,61.071136,4.112 1903,551.40894,213.79402,30.202026,57.78395,4.096 1903,-70.38486,-188.74811,210.47617,454.79843,4.069 1903,168.9509,235.97395,21.623596,36.321335,4.039 1903,189.76936,237.6565,26.43692,56.58246,4.022 1903,594.48883,-46.39814,44.7088,98.94709,3.944 1903,619.1998,-18.24149,17.868713,45.381157,3.933 1903,51.361588,209.82625,42.303795,85.96059,3.932 1903,89.83426,225.28268,30.673645,66.7518,3.907 1903,504.2139,228.71794,21.870941,48.607437,3.895 1903,150.87283,300.46173,36.05191,80.85474,3.872 1903,-6.467104,228.6202,19.536171,45.15126,3.81 1903,-4.6564126,269.68915,17.986092,37.235992,3.782 1903,51.861916,302.11636,39.16829,56.58969,3.689 1903,200.80136,247.1175,22.363434,44.22357,3.675 1903,161.3132,234.56528,21.261322,32.78882,3.618 1903,612.95166,208.2306,37.8161,98.955124,3.574 1903,63.96714,227.97928,27.151527,44.973267,3.559 1903,10.420904,-9.967209,57.90325,129.22246,3.549 1903,596.3708,207.58337,38.866455,90.81128,3.514 1903,-8.3546295,35.698143,38.090466,104.94199,3.469 1903,2.0510924,490.7483,19.527807,41.069214,3.452 1903,561.6956,231.8953,21.38263,40.49539,3.431 1903,579.8066,212.77234,39.68341,83.13971,3.428 1904,178.6426,236.90906,22.373566,39.71039,7.381 1904,627.13324,-17.892323,17.167053,46.934742,6.225 1904,-11.372995,-32.296555,29.52161,73.18199,5.863 1904,-6.0588026,-18.334314,17.655844,43.354378,5.827 1904,623.0287,-34.178116,26.186096,77.79059,5.658 1904,-6.1427574,489.09976,18.937326,42.14627,5.626 1904,-17.090494,-61.89334,56.57847,142.66318,5.57 1904,-12.029696,477.65372,30.35794,62.938446,5.347 1904,626.64886,487.8083,20.4776,46.454224,5.266 1904,66.67959,214.88303,32.016083,71.321655,5.171 1904,612.9276,454.79404,39.521667,107.18002,5.155 1904,583.09515,411.58475,71.566956,176.54892,5.067 1904,199.36667,248.01154,23.23558,44.558716,5.066 1904,602.97217,-56.693977,53.27368,135.45944,4.985 1904,-40.490562,365.91428,111.16674,274.5591,4.952 1904,54.13393,217.88773,33.326458,66.60843,4.869 1904,536.17993,310.09613,144.01648,342.05585,4.809 1904,-72.86051,265.93524,200.56288,461.66302,4.764 1904,490.77908,-180.96242,233.49106,426.29007,4.737 1904,586.02795,-99.1703,74.53418,232.70325,4.705 1904,117.31391,225.89337,27.78228,60.609253,4.587 1904,143.86278,296.0764,35.3974,84.86676,4.501 1904,493.48862,226.20346,237.75516,515.7395,4.491 1904,183.75029,243.4588,23.818436,51.57721,4.432 1904,-18.06754,434.41406,55.916973,142.3263,4.333 1904,184.1536,224.92276,23.302155,39.194824,4.303 1904,-36.77831,-125.178925,116.33638,274.08936,4.296 1904,-9.066354,-5.1310005,39.735195,99.36925,4.264 1904,88.807144,222.68011,22.390053,46.13025,4.253 1904,594.3225,-44.896854,44.66333,96.61652,4.145 1904,-70.09185,-188.39005,210.35196,454.99927,4.127 1904,191.92725,230.38803,21.23529,40.37094,4.086 1904,100.89019,219.25769,39.460793,87.23999,4.062 1904,587.9868,216.32146,28.802185,56.54985,4.045 1904,564.0931,-12.828846,14.957886,37.112312,4.027 1904,571.5681,-13.606204,15.115784,36.655758,4.007 1904,132.97444,229.84633,40.11653,80.712814,3.949 1904,113.06894,226.31212,22.218292,41.92012,3.853 1904,555.91486,-15.425472,15.5564575,39.334194,3.849 1904,576.09705,215.29474,29.112244,61.682556,3.832 1904,106.21034,233.80635,22.027527,47.477707,3.819 1904,615.32086,-21.930286,26.593689,78.8126,3.803 1904,-5.712204,213.55852,18.366278,46.603622,3.724 1904,84.572464,214.33055,39.167465,89.66762,3.67 1904,0.33985853,268.18658,22.053463,43.011536,3.653 1904,27.52099,203.33614,54.707397,119.778854,3.509 1904,-5.210207,250.09099,18.024052,42.83531,3.504 1904,425.7224,189.0022,20.760284,40.86183,3.481 1904,-4.2710867,382.6804,14.68401,34.944122,3.48 1904,-8.132265,51.13405,37.59796,106.16214,3.459 1904,324.82437,222.55534,29.34143,63.493057,3.428 1904,619.58215,-17.078447,16.83368,44.130463,3.419 1904,1.8944407,-13.3665085,51.433914,137.75102,3.416 1904,226.2883,259.02386,20.449081,32.676758,3.375 1904,182.27052,215.30185,37.156067,79.617035,3.373 1904,10.34724,216.14941,55.96612,127.09015,3.347 1904,197.57458,215.14287,36.267456,76.21806,3.342 1904,2.069577,490.43463,19.719421,41.275146,3.34 1904,1.9668031,-38.93728,42.634426,98.414276,3.324 1904,116.14205,239.75336,41.538826,82.9245,3.304 1904,-4.545792,314.21005,15.850706,37.586945,3.298 1904,89.431465,264.73938,59.881157,128.2507,3.288 1904,60.338802,210.25548,57.034794,124.29619,3.266 1904,421.52118,190.51382,30.05365,67.70203,3.25 1904,2.6498115,-16.516905,16.89999,40.21026,3.245 1904,547.68115,-15.687178,16.096558,40.01903,3.244 1904,27.546873,220.97395,31.881914,62.573563,3.234 1904,-5.1273913,171.22334,16.503115,40.010315,3.215 1904,-5.3057957,272.12518,18.790323,42.60852,3.202 1904,-8.384518,262.9753,38.29077,101.12225,3.189 1904,-5.0314856,137.36975,16.746933,42.19919,3.175 1904,623.47754,201.37888,26.155334,73.975494,3.172 1904,597.7621,219.77832,37.785522,98.35083,3.159 1905,199.99284,244.66855,23.39708,50.041565,7.639 1905,-1.2498748,223.61583,27.609232,67.464554,6.665 1905,185.55225,246.27037,20.005234,42.89174,6.543 1905,-11.28977,-32.562275,29.562185,73.03851,6.066 1905,627.1716,-18.739185,17.069824,48.80948,5.87 1905,-17.111763,-62.100185,56.68846,143.76154,5.735 1905,-6.117124,489.34195,18.72195,41.751984,5.701 1905,-6.2571173,-18.19104,17.9001,43.33275,5.335 1905,626.526,488.07086,20.634521,46.25299,5.29 1905,583.12964,411.9118,71.51599,176.31525,5.255 1905,-12.107395,477.69336,30.42372,63.1109,5.224 1905,612.9254,455.73273,39.568787,106.174255,5.134 1905,610.53925,-47.31171,41.82733,99.129944,4.982 1905,-22.11175,401.93506,79.67941,175.79077,4.907 1905,-72.91676,266.43182,200.79195,460.82794,4.798 1905,536.1684,310.4417,143.69757,341.95184,4.783 1905,-6.2727585,231.69254,19.759363,44.03778,4.698 1905,490.59668,-180.3575,233.94849,425.49945,4.697 1905,585.7403,-98.03417,75.100464,230.85867,4.587 1905,493.56213,226.5246,237.71783,515.7001,4.491 1905,180.73407,243.17606,19.029907,36.78607,4.385 1905,-11.585901,214.90985,29.286804,68.62018,4.3 1905,450.33044,200.54393,20.245178,47.215652,4.285 1905,578.6446,-12.305742,16.43811,38.92447,4.184 1905,-37.119698,-123.82678,116.73278,275.17938,4.177 1905,571.5112,-0.9601383,29.165161,62.81745,4.157 1905,10.599942,221.36641,55.622227,123.52232,4.144 1905,132.46059,253.28868,31.775528,67.622696,4.131 1905,-70.44304,-188.92392,210.45448,454.94943,4.043 1905,128.96884,233.11668,23.9413,40.418808,3.984 1905,316.99612,236.35997,27.652344,58.133804,3.915 1905,7.2923207,221.22348,25.064728,49.851746,3.831 1905,183.45848,231.37706,36.867386,72.236984,3.818 1905,-9.490113,-3.6385422,40.229317,99.586,3.803 1905,554.65063,-19.33947,17.955994,44.123306,3.796 1905,143.86264,300.73456,35.6062,81.64615,3.774 1905,-7.9549336,50.801876,37.93193,108.32274,3.765 1905,32.35605,228.63675,23.303513,46.943268,3.679 1905,16.097694,226.62563,25.585938,48.053177,3.664 1905,571.4623,-15.084497,16.709045,42.539352,3.662 1905,563.5827,-16.122883,17.06372,41.88682,3.656 1905,454.7202,198.91223,25.947388,62.77005,3.654 1905,196.58676,238.38658,36.08481,73.031296,3.636 1905,35.273922,219.74098,40.715267,86.5963,3.542 1905,587.10443,-13.745911,15.685059,38.486187,3.538 1905,598.2134,222.1883,37.587646,96.20679,3.463 1905,617.01636,238.40312,23.366089,50.83043,3.452 1905,-5.6273484,211.93958,18.58208,39.82657,3.449 1905,-0.9794378,269.89606,27.660324,63.659668,3.447 1905,-5.443719,247.4362,18.446625,44.91298,3.447 1905,-14.052829,188.09189,49.304543,138.81021,3.421 1905,-5.7148943,187.14395,18.110039,40.85083,3.415 1905,113.41147,231.00323,21.927597,43.462555,3.4 1905,1.9602001,490.97354,19.924982,40.411957,3.373 1905,61.303997,236.27864,31.95029,75.57359,3.35 1905,572.35956,-15.310181,54.24347,131.93016,3.339 1905,-6.0641594,280.5664,18.90813,41.687164,3.337 1905,-5.341143,329.26672,17.103662,38.025024,3.335 1905,131.16785,235.89821,30.544067,58.217148,3.333 1905,-5.36747,170.02815,17.726782,43.031113,3.317 1905,137.7741,264.70435,21.949478,40.463684,3.307 1905,589.54987,-15.641785,29.561401,64.42472,3.307 1905,107.92612,236.92688,31.28305,67.40088,3.306 1905,2.6716053,-16.22323,16.866522,39.117664,3.29 1905,194.12189,243.52385,21.339462,41.180893,3.288 1905,51.42768,210.03601,40.63761,83.60663,3.271 1905,138.0181,224.4914,19.898605,40.06842,3.263 1905,622.36316,220.70409,26.75061,69.51976,3.242 1905,581.9381,-33.605213,28.015991,74.515396,3.238 1905,614.17224,481.20316,28.504028,60.662567,3.231 1905,547.1191,414.75607,83.05823,165.77884,3.213 1905,-4.0475388,314.19214,15.011515,36.29358,3.212 1905,304.84256,264.31894,22.701324,38.650635,3.192 1906,182.34778,226.15071,27.714157,57.52104,17.578 1906,-11.14066,-32.59511,29.670502,73.42858,6.68 1906,-5.955155,-17.863388,17.808659,43.360218,6.065 1906,191.78108,220.40962,23.453506,46.69371,6.014 1906,627.055,-17.07395,17.175232,46.084446,5.766 1906,-17.215206,-62.053844,56.662064,144.35645,5.658 1906,622.90515,-33.89965,26.598877,76.908226,5.395 1906,-6.373816,488.99326,19.082012,42.04294,5.279 1906,197.94897,231.604,23.985535,49.696655,5.276 1906,-12.563809,477.21152,30.95486,62.992157,5.252 1906,583.0545,411.6681,71.69861,176.62408,5.067 1906,626.5242,488.44748,20.763184,45.786102,5.004 1906,116.42111,230.75293,33.238907,66.10327,4.999 1906,612.7623,455.23682,39.734924,106.82593,4.99 1906,602.72577,-56.16307,53.384155,135.4047,4.955 1906,-0.2739179,206.63692,27.035587,67.036514,4.822 1906,-72.50894,266.3739,200.44754,462.4005,4.799 1906,-40.55193,364.49176,111.4427,275.278,4.774 1906,536.17334,310.43842,143.67053,342.18903,4.762 1906,-5.792415,212.27922,18.461464,45.233536,4.751 1906,585.5504,-98.3565,75.233215,232.28622,4.628 1906,42.89048,229.48431,33.520332,60.54486,4.593 1906,489.93097,-180.46466,234.57599,424.31775,4.575 1906,125.51756,220.68224,32.276443,57.351883,4.551 1906,493.39798,226.86032,237.76755,514.9791,4.532 1906,56.486847,230.6373,23.549988,40.514374,4.22 1906,-37.2145,-125.32784,116.42194,277.50934,4.16 1906,-18.532553,433.12738,56.133514,143.54224,4.106 1906,-69.82751,-187.55469,209.82901,453.13217,4.024 1906,40.029243,233.60098,24.273216,34.269867,4.019 1906,594.2014,-44.187447,45.034668,97.23935,3.992 1906,-5.357995,140.80899,16.80854,38.752594,3.953 1906,108.089676,247.38849,35.40869,64.42236,3.851 1906,-5.3123693,156.15572,17.943607,42.049088,3.84 1906,185.18408,214.87701,23.493195,40.777557,3.822 1906,614.3264,-20.105782,28.048828,73.767136,3.808 1906,8.207598,218.99063,23.01462,46.206512,3.803 1906,-9.771315,-3.285904,40.18431,100.70075,3.799 1906,173.3486,239.81961,30.748352,58.48456,3.771 1906,2.4514933,-15.820366,17.19101,39.70316,3.731 1906,161.4548,236.85307,20.427307,37.504044,3.671 1906,198.13815,204.04129,35.827545,75.18875,3.661 1906,-10.824684,200.2062,28.268927,68.200165,3.656 1906,-4.0712156,187.32433,16.460352,39.831345,3.645 1906,-14.006584,185.29352,47.17916,138.10236,3.644 1906,412.86084,205.14061,52.70163,119.863785,3.619 1906,-6.0415277,238.05006,17.66304,40.903458,3.606 1906,465.653,163.05896,21.312866,45.842636,3.567 1906,130.07063,230.77136,43.31009,71.55054,3.556 1906,619.4291,-15.8969,16.5083,43.578846,3.548 1906,2.6079888,189.84236,17.154005,38.122772,3.522 1906,121.1228,238.92627,24.009933,40.239136,3.502 1906,199.7509,214.79591,22.46251,40.89891,3.477 1906,155.4678,226.48727,20.473541,37.810455,3.468 1906,147.38599,239.96652,43.402405,72.69049,3.457 1906,571.8403,-15.443626,55.234253,135.91548,3.445 1906,362.66736,194.47179,56.979187,110.52016,3.435 1906,-4.150072,397.90097,16.46016,37.490173,3.401 1906,315.74353,222.78046,29.77539,62.714355,3.394 1906,170.74814,235.71056,21.600784,42.472,3.384 1906,194.79597,237.20444,40.349976,85.15042,3.369 1906,588.1708,-4.3790054,29.51184,66.558014,3.352 1906,2.753387,142.66306,17.073397,35.816147,3.344 1906,85.08025,226.6992,29.651268,69.410416,3.336 1906,-7.0928154,50.35513,36.752773,108.1098,3.334 1906,215.25235,211.05386,34.443207,78.40024,3.332 1906,379.77734,207.08534,54.15085,118.160904,3.327 1906,134.63248,279.24924,36.219955,72.7713,3.313 1906,282.8027,239.42346,18.647552,36.75122,3.303 1906,262.4867,233.07724,35.724792,86.0564,3.293 1906,379.15906,252.90654,19.87799,36.301468,3.293 1906,-4.859447,257.8344,16.232613,39.654114,3.288 1906,18.981436,225.88147,33.071167,51.6109,3.27 1907,181.9827,239.5138,29.645233,55.07263,10.284 1907,627.4882,-17.438313,16.915833,45.813156,6.679 1907,-11.307327,-32.828655,29.781565,73.38142,6.171 1907,-12.110634,476.8777,30.22551,63.062927,5.998 1907,-6.290152,489.4713,18.998798,41.926636,5.918 1907,-17.529457,-62.62007,56.93173,145.38933,5.667 1907,623.13776,-33.312088,26.57611,75.151115,5.611 1907,-6.1328745,-18.046835,18.01575,43.11139,5.404 1907,167.09442,230.921,31.184479,55.018723,5.354 1907,602.74896,-56.3556,53.653503,137.17929,5.083 1907,582.97107,411.6424,71.87201,176.63715,4.987 1907,613.0113,454.81415,39.539856,107.54834,4.971 1907,189.44568,221.63942,28.66269,62.79973,4.935 1907,-41.022644,363.62787,112.18459,275.86945,4.885 1907,-72.41498,266.5882,200.6012,462.3543,4.707 1907,536.25635,310.36206,143.27374,341.47406,4.698 1907,585.566,-97.95095,75.194214,232.25607,4.637 1907,531.81995,-180.6804,149.44531,420.71313,4.605 1907,626.4927,488.2929,21.01648,45.648438,4.493 1907,493.51102,226.76813,237.54153,515.6125,4.409 1907,393.7479,262.1641,20.900055,39.06366,4.352 1907,0.99027514,199.08415,27.985933,65.56117,4.335 1907,200.55534,219.54883,21.727615,42.309296,4.288 1907,4.598682,197.70027,37.788765,102.243576,4.28 1907,53.99592,226.30856,30.820778,65.53931,4.241 1907,619.88556,-3.6762104,17.937988,39.76973,4.181 1907,283.39807,241.28664,18.678284,36.29283,4.05 1907,161.20334,233.2351,23.548004,37.5513,4.03 1907,-37.497517,-125.01461,117.228516,276.04294,3.996 1907,587.9858,-5.0403366,31.796509,75.87445,3.868 1907,25.093132,224.66364,34.543747,64.25073,3.865 1907,-5.660649,214.30087,18.86116,44.101654,3.864 1907,296.72797,241.2542,20.57129,37.70662,3.851 1907,125.28946,238.09842,29.76706,54.725586,3.848 1907,-18.349049,431.26794,55.893627,145.74878,3.818 1907,-69.524155,-187.38628,209.50645,451.69904,3.805 1907,-1.067791,288.07257,27.907999,75.16016,3.722 1907,118.509125,303.41757,36.064453,86.52988,3.716 1907,594.1046,-44.310837,45.098267,97.85739,3.692 1907,289.7552,242.70914,20.43637,41.467712,3.691 1907,477.80487,-9.882715,30.05185,69.31892,3.678 1907,14.075621,188.97081,50.817184,121.36412,3.674 1907,495.12195,49.145454,35.47235,85.623924,3.66 1907,614.9211,-17.775593,27.296082,69.631714,3.554 1907,36.47904,214.02063,40.399036,89.584045,3.516 1907,-12.497799,182.11697,46.002464,145.62613,3.488 1907,300.63687,234.33893,27.652252,54.496704,3.466 1907,-10.313058,-2.2519531,40.328518,100.06904,3.465 1907,444.57626,-19.441845,55.76419,120.61551,3.447 1907,374.93964,248.10922,28.342102,59.735138,3.434 1907,-5.590721,248.4296,17.185907,39.874817,3.43 1907,443.87677,212.43091,53.688416,115.06561,3.406 1907,1.960609,490.4687,19.912664,41.0614,3.393 1907,498.2527,-3.0794754,31.314697,67.976135,3.388 1907,77.750854,229.62572,27.385979,59.327225,3.381 1907,411.225,216.51862,55.166138,112.515686,3.37 1907,-4.296398,397.66095,16.656681,38.556763,3.364 1907,95.13851,281.5055,54.37806,138.71707,3.361 1907,198.1607,246.60138,24.216827,46.37982,3.359 1907,2.3994188,-16.817978,17.194515,39.80068,3.332 1907,-10.913514,198.1768,29.568623,65.06023,3.326 1907,197.05476,214.68648,37.23175,75.71507,3.281 1907,366.245,243.90384,28.403198,55.473633,3.28 1907,379.85333,214.09782,56.174774,113.777054,3.279 1907,49.337746,223.91768,23.831627,46.66725,3.235 1907,56.552513,285.07645,61.772903,140.61624,3.199 1908,189.36723,231.49335,29.950668,52.18164,9.523 1908,532.6162,201.63565,30.046082,54.730865,6.998 1908,-11.355982,-33.170353,30.02368,74.631035,6.187 1908,621.9572,-34.116753,27.273865,80.91038,5.983 1908,-6.214001,489.33875,18.513607,41.854675,5.723 1908,-17.491562,-62.644547,56.900173,145.50235,5.705 1908,-12.072195,478.4799,30.107756,62.207123,5.6 1908,612.99335,453.8114,39.708557,108.62598,5.586 1908,602.4776,-56.89135,53.111694,139.45074,5.517 1908,-6.123464,-18.235937,17.800896,43.75105,5.497 1908,626.5601,-20.843355,18.26007,51.779156,5.429 1908,626.7251,488.0382,20.429688,45.85913,5.316 1908,108.805374,298.96338,36.272415,87.21298,4.9 1908,-72.909485,265.99832,200.97702,463.19577,4.897 1908,206.22124,234.73859,23.064926,48.187195,4.892 1908,518.272,197.36658,38.825012,87.5578,4.887 1908,583.1144,411.53558,71.59509,176.92816,4.877 1908,490.75928,-182.07626,233.50623,426.3598,4.865 1908,-41.003006,363.30286,112.22252,275.49078,4.825 1908,585.6449,-97.497696,74.78223,231.32414,4.822 1908,5.2030478,208.8508,37.8478,103.01065,4.726 1908,594.519,-42.580627,45.68213,97.448265,4.678 1908,536.62396,310.4707,143.2948,342.3004,4.674 1908,526.5118,176.42807,49.974854,114.01291,4.526 1908,176.06439,236.90486,29.461288,59.558975,4.474 1908,548.27905,198.24625,39.352722,89.52493,4.398 1908,129.10107,233.4714,33.99211,64.149536,4.35 1908,493.52994,227.11877,237.42636,516.27264,4.331 1908,-18.706459,432.5362,56.107353,144.33685,4.249 1908,-36.97322,-125.80833,116.64644,275.40442,4.206 1908,17.854149,203.23882,41.02762,89.767685,4.144 1908,-69.78958,-187.66826,209.99876,453.6573,4.139 1908,-1.5871167,219.48529,29.611143,66.47522,4.133 1908,413.59888,-36.606873,29.390259,71.466805,4.13 1908,197.58401,215.45003,28.562286,59.53093,4.101 1908,613.94855,-23.578241,28.608215,86.95508,4.099 1908,-4.2546697,189.6781,16.703094,40.509705,4.065 1908,-2.2399426,260.34027,30.419981,71.77811,4.021 1908,541.24524,-33.782047,29.531982,76.49271,3.87 1908,486.05084,-33.907814,28.983826,68.89494,3.865 1908,34.961742,213.18153,41.09538,88.459366,3.82 1908,-6.4360037,231.27888,19.524883,43.66646,3.729 1908,-3.2536387,284.99976,31.47573,81.103546,3.722 1908,393.73584,250.19395,21.325562,42.0363,3.694 1908,541.5833,190.06941,27.126343,56.34935,3.691 1908,490.25903,-17.814548,17.954803,38.765255,3.679 1908,-4.9728475,203.41158,18.014502,42.514023,3.664 1908,562.366,-9.409378,45.63324,87.08911,3.655 1908,-13.751225,156.60678,48.811543,139.3085,3.639 1908,569.62244,-26.870178,62.222107,135.63715,3.632 1908,-10.234424,-3.3773918,40.168144,99.66399,3.612 1908,185.59207,230.86377,21.956696,40.194305,3.597 1908,501.22595,200.48334,40.46942,86.196655,3.569 1908,105.223015,226.41219,31.508293,70.50725,3.565 1908,481.91266,-15.684902,17.896942,37.348133,3.543 1908,199.52618,240.80211,23.545288,51.369034,3.523 1908,528.13794,199.54785,23.571411,42.77652,3.522 1908,498.4663,-17.300926,18.417603,38.635506,3.504 1908,506.53275,-18.99273,18.382904,40.911694,3.501 1908,-11.267914,248.65962,30.02841,72.15782,3.487 1908,439.66742,262.39362,24.622894,43.908478,3.479 1908,-11.062946,213.3687,29.600693,66.279526,3.466 1908,170.34195,238.90456,20.216904,34.69719,3.451 1908,-14.84568,209.00333,49.297398,151.68613,3.447 1908,-11.952019,276.9526,31.536978,69.98422,3.428 1909,183.72021,228.12924,30.324966,56.32428,8.191 1909,199.95146,227.90771,22.18776,50.620422,7.391 1909,-6.0404215,488.8714,18.421963,41.852966,6.563 1909,627.3977,-16.478153,16.654541,44.463623,6.361 1909,611.06287,-46.886337,41.44922,99.95649,6.025 1909,-11.379902,-32.990036,29.829956,73.871376,5.998 1909,502.96423,250.95486,24.095032,41.639038,5.918 1909,-11.932579,478.59863,30.159792,62.338196,5.897 1909,4.587742,222.25066,31.743492,73.33925,5.425 1909,-6.2486415,-18.62688,18.251875,44.094772,5.41 1909,-17.647074,-61.783028,57.05796,144.86806,5.398 1909,612.9733,454.93195,39.71576,107.289856,5.09 1909,585.9667,-96.398094,74.17523,227.44589,5.002 1909,529.9152,258.762,21.4234,43.20465,4.967 1909,583.02014,411.04868,71.88623,177.28983,4.957 1909,-72.74787,265.82907,201.45258,463.24905,4.934 1909,531.90216,-181.30292,149.97296,421.053,4.932 1909,-40.452744,362.58838,112.28936,277.50903,4.932 1909,532.4682,251.78644,32.281677,60.656067,4.925 1909,626.543,488.14346,20.98639,45.649506,4.925 1909,536.4294,310.37866,143.50586,340.99634,4.905 1909,117.924515,233.06686,29.636383,56.851624,4.812 1909,493.46317,227.50934,237.97879,514.389,4.542 1909,544.91364,261.7731,23.138,42.86554,4.456 1909,396.58908,-17.097963,33.279877,65.44696,4.351 1909,-36.91837,-123.58877,116.66341,271.47235,4.24 1909,-69.95245,-188.89319,210.10878,455.32474,4.23 1909,200.93971,210.58417,21.766357,34.17227,4.194 1909,35.253246,225.79347,39.933094,79.88521,4.156 1909,-18.651045,429.5614,55.909546,146.93555,4.154 1909,596.7909,243.90323,38.57379,97.58859,4.146 1909,-3.3525395,21.770607,30.01486,76.86421,4.146 1909,521.23364,252.9797,22.958374,42.783752,4.132 1909,88.44338,268.2264,59.97239,135.80276,4.117 1909,403.8531,232.1428,31.957214,63.790024,4.076 1909,12.487435,214.00833,51.7407,112.457855,4.071 1909,580.1638,246.4813,40.916138,89.65192,4.022 1909,394.15527,-16.575665,17.870605,38.667606,4.021 1909,44.633774,235.157,55.674416,116.23741,3.997 1909,152.46829,251.64532,21.944717,33.6817,3.966 1909,437.50766,266.82227,29.245605,62.598236,3.914 1909,444.5821,227.97342,29.57196,67.32614,3.909 1909,69.100655,233.87387,40.53576,75.849915,3.878 1909,546.7349,246.2213,41.827454,87.37749,3.856 1909,83.97518,231.38977,40.66497,77.49298,3.846 1909,195.64026,213.60544,37.20392,73.234375,3.833 1909,131.1098,230.32309,41.285675,70.36401,3.816 1909,401.7714,-16.68415,18.92862,39.20812,3.814 1909,493.57846,251.28569,31.7388,70.31233,3.8 1909,619.626,-16.818808,16.210144,41.751713,3.797 1909,61.30609,245.26453,55.978775,131.17596,3.787 1909,2.534529,490.65247,19.014425,40.01123,3.756 1909,524.3436,229.47162,53.065613,112.313965,3.749 1909,-8.586831,261.80365,38.115326,101.37698,3.704 1909,563.2816,237.6812,41.232666,84.49403,3.677 1909,623.7124,-20.43772,26.510864,69.90415,3.666 1909,620.0519,199.12999,19.822449,44.8405,3.649 1909,99.75897,233.27588,42.91754,74.340515,3.649 1909,621.84515,174.36111,26.099548,69.70163,3.646 1909,612.7721,226.74968,36.476257,101.76753,3.564 1909,393.89465,-3.6364803,21.15097,38.594315,3.552 1909,127.07846,229.60507,23.33728,40.658234,3.523 1909,132.25345,221.86322,30.547318,54.64691,3.513 1909,147.63196,228.17107,40.533478,69.41753,3.488 1910,500.0279,281.49396,30.641113,68.10791,6.905 1910,-5.834011,488.80368,18.410793,42.978058,6.818 1910,-9.434148,462.70416,37.930252,94.785706,6.292 1910,622.51953,-34.08215,26.93103,77.35778,5.521 1910,-11.469191,-32.53969,29.812584,72.649025,5.419 1910,627.0754,-17.485619,17.064758,46.710228,5.409 1910,585.5142,-98.186935,74.55542,233.32076,5.386 1910,188.28096,220.82372,29.760803,62.53264,5.223 1910,-6.069052,-18.324955,18.081244,42.908985,5.174 1910,171.91318,219.24965,30.996445,56.706436,5.087 1910,-72.78672,264.72998,201.39389,464.28058,5.07 1910,-17.188227,-62.655426,56.16124,145.80739,5.049 1910,-18.27258,429.13107,55.78232,147.97617,5.001 1910,613.22504,453.88937,39.414185,108.25693,4.938 1910,536.39856,311.63397,142.91693,339.76642,4.825 1910,602.45953,-56.338905,53.571228,136.50789,4.813 1910,583.0653,409.4051,72.030396,178.87878,4.794 1910,626.3342,487.7778,21.29242,46.105743,4.708 1910,532.425,-181.87589,149.16565,421.123,4.702 1910,63.68282,237.94934,23.80473,35.497375,4.56 1910,-41.437492,363.35608,112.60371,277.4635,4.56 1910,493.1482,226.22714,238.14606,515.33215,4.429 1910,-37.278336,-124.43631,117.067085,273.4363,4.269 1910,2.776084,231.27715,31.365173,69.12297,4.257 1910,119.036644,238.78343,24.04383,38.970108,4.239 1910,-70.08609,-187.74213,210.2496,453.65137,4.234 1910,54.28825,230.77092,29.532742,49.72252,4.196 1910,614.71906,-19.241827,27.398499,73.411674,4.108 1910,81.12685,241.18816,21.06311,31.190384,4.097 1910,376.5699,234.4398,29.325989,62.274673,4.089 1910,424.85245,253.52342,27.059814,69.25624,4.049 1910,575.589,178.7897,53.254883,163.11566,4.003 1910,618.9728,-4.8945866,18.712036,43.219727,3.893 1910,57.8667,280.9396,61.459686,149.61008,3.872 1910,594.33936,-43.951965,44.612915,97.58323,3.871 1910,263.19662,214.3673,35.272797,92.33278,3.866 1910,2.586338,489.38248,19.066822,41.097687,3.808 1910,36.9374,218.23901,38.74814,74.464294,3.79 1910,195.38835,234.40398,41.119858,89.78688,3.697 1910,460.5168,222.28006,30.510132,60.993774,3.675 1910,509.98538,280.47482,23.629059,45.934143,3.673 1910,-9.974258,134.99057,39.978523,107.3129,3.654 1910,474.77658,259.7722,32.790558,76.01779,3.615 1910,101.0529,232.93723,40.737823,68.69086,3.606 1910,115.51358,230.05411,40.571045,67.699554,3.573 1910,420.06543,-15.346996,31.990479,65.59916,3.562 1910,83.1374,256.58163,18.466003,30.037506,3.557 1910,19.240349,217.8382,39.21561,77.56378,3.525 1910,-8.82531,292.95004,38.019493,104.979645,3.521 1910,283.87115,224.65024,17.841675,36.599426,3.5 1910,-8.730745,218.55457,60.530426,176.74524,3.46 1910,-13.187967,205.0441,48.728874,132.9379,3.455 1910,92.35985,309.9583,37.48784,84.32449,3.431 1910,277.68793,216.34784,34.73297,91.44037,3.421 1910,12.966034,231.58768,55.8796,139.44345,3.417 1910,426.2413,-16.00278,17.50409,39.610138,3.41 1910,-5.21192,223.04932,17.433485,37.979828,3.408 1910,596.9186,332.38525,38.72467,103.83307,3.407 1910,231.605,202.65793,34.84059,87.37268,3.382 1910,91.30996,256.15637,18.045212,29.35971,3.36 1910,-11.152121,226.43585,28.987162,64.78992,3.357 1910,2.5442748,-16.302103,17.162912,39.894436,3.356 1910,348.01367,202.82831,31.965607,61.15686,3.345 1910,364.8616,21.691975,32.975983,77.80002,3.294 1910,158.17549,199.62067,54.89836,97.890625,3.268 1910,612.8152,333.9705,37.91754,107.739044,3.263 1910,0.9823799,245.34056,21.370018,48.533676,3.26 1910,84.70208,232.06564,39.321693,72.5567,3.254 1911,172.16791,237.11147,29.234497,55.17418,13.593 1911,31.97945,234.84044,24.465305,46.992874,9.392 1911,-12.176248,479.18637,30.438007,62.16147,6.666 1911,-6.1071844,489.1076,18.509491,42.2948,6.385 1911,18.587149,235.6312,34.58703,59.221466,6.372 1911,463.81427,229.18803,22.662231,46.833786,6.356 1911,610.40216,-47.435577,41.936768,99.59265,5.846 1911,0.4341507,235.39894,28.422157,62.47084,5.75 1911,-6.035383,-18.585354,18.022251,43.07269,5.503 1911,-11.513429,-32.338852,29.813965,72.04819,5.386 1911,12.777464,214.17061,52.354813,109.57274,5.33 1911,48.592865,237.4626,23.107643,39.712387,5.197 1911,-17.39414,-62.92289,56.405647,145.59827,5.056 1911,586.2517,-97.4359,74.18524,230.38068,5.017 1911,-72.16748,266.02856,200.56999,461.38055,5.016 1911,190.26686,238.65915,28.085678,60.175232,5.013 1911,613.20105,454.07248,39.526123,107.74136,5.006 1911,536.41675,311.13748,143.50665,339.978,4.93 1911,3.5045743,227.64171,38.955544,97.511185,4.917 1911,626.5487,487.1918,21.13385,46.164093,4.884 1911,626.9675,-19.041363,17.354004,47.252598,4.856 1911,493.51486,227.16089,237.65652,515.3294,4.774 1911,491.11182,-181.12126,233.87292,426.36194,4.753 1911,-18.450937,433.25974,55.90545,143.5568,4.735 1911,554.5798,191.1123,31.469055,64.43173,4.717 1911,394.89874,226.64394,30.882385,67.542404,4.643 1911,582.8678,408.5183,71.78772,180.17926,4.612 1911,445.64944,255.51259,27.710297,76.38786,4.59 1911,-40.838566,362.58813,112.42494,275.54565,4.536 1911,35.502182,225.06209,40.650955,81.50029,4.519 1911,89.85872,241.4071,21.068695,34.263306,4.44 1911,459.30283,236.64133,30.562744,64.37012,4.419 1911,576.0348,165.20695,49.959045,128.93196,4.396 1911,113.40958,243.81659,22.010254,41.696472,4.35 1911,57.05277,246.49736,19.959545,34.113846,4.269 1911,611.30054,344.48993,38.059326,114.48462,4.223 1911,-70.101326,-186.50067,209.93292,452.5985,4.183 1911,-37.485413,-124.26582,117.332245,273.64185,4.166 1911,571.9773,287.8828,54.62787,136.71698,4.163 1911,483.36703,227.98134,40.927277,87.30162,4.134 1911,391.29218,227.42332,25.187927,41.07805,4.133 1911,490.2341,240.58824,21.763092,43.916153,4.131 1911,39.924908,228.41638,24.464985,39.444702,4.127 1911,558.895,182.76074,24.07898,46.65326,4.063 1911,106.68698,242.31808,21.027008,37.99164,4.062 1911,548.13525,168.75597,31.255127,64.40904,4.013 1911,437.05176,-35.67208,31.270935,79.41717,3.985 1911,467.81842,230.7898,40.54248,85.039734,3.949 1911,120.34563,249.96745,22.355469,41.75679,3.923 1911,380.3287,226.94493,32.303772,58.81508,3.913 1911,-10.3902445,204.92401,28.92495,70.639465,3.862 1911,-13.532145,190.5245,47.445114,132.2861,3.825 1911,395.49777,260.41458,19.914673,48.48941,3.809 1911,571.3209,195.3985,32.531982,58.598175,3.783 1911,69.2256,232.70107,39.27938,80.54686,3.77 1911,340.8345,213.14285,38.76529,79.774506,3.745 1912,166.27817,243.04007,29.614609,62.23175,15.938 1912,444.69403,271.4707,29.821198,73.442535,13.119 1912,487.8966,299.8338,33.034668,69.302795,11.519 1912,407.95312,252.36557,22.480957,58.069946,8.371 1912,398.98038,232.22699,24.084076,47.71454,7.12 1912,-5.5915504,488.4957,18.249783,44.35385,7.1 1912,-11.869727,475.29547,30.264381,65.92236,6.868 1912,627.0972,-16.775665,17.160034,45.205135,6.408 1912,610.9272,-46.31578,41.06958,99.9851,5.688 1912,-11.445282,-33.0149,29.935879,73.111336,5.668 1912,-6.047342,-18.722713,18.144981,44.02156,5.533 1912,101.52464,239.50386,29.759903,59.09935,5.461 1912,612.8506,454.9416,40.068115,107.50067,5.372 1912,392.36298,244.23837,27.763824,70.6983,5.255 1912,-18.46885,426.6801,56.329773,148.75928,5.158 1912,-72.54233,266.93982,200.7655,460.84192,5.113 1912,-17.002361,-62.21176,56.37552,145.73262,5.051 1912,477.36606,234.61255,31.249786,72.72333,5.034 1912,585.1625,-95.359825,74.83197,227.22092,4.997 1912,582.9221,410.30267,72.23718,178.23212,4.982 1912,-40.043125,365.35385,110.62196,275.4125,4.905 1912,536.85016,311.51508,142.96338,338.91498,4.855 1912,626.60236,488.4593,20.985657,45.084778,4.838 1912,406.74167,228.62093,22.986267,43.072617,4.581 1912,112.25666,238.69702,21.24784,40.141113,4.549 1912,493.5138,227.16553,237.31598,513.1375,4.51 1912,-70.48156,-188.55634,210.21136,455.48257,4.372 1912,490.38965,-178.6575,234.62354,423.48242,4.367 1912,-37.31568,-124.542755,117.28091,272.93576,4.313 1912,619.26855,-16.661636,16.745544,42.084877,4.304 1912,181.80545,242.12772,28.85498,62.933105,4.159 1912,382.77118,240.0694,28.187012,65.91803,4.088 1912,2.32908,488.19556,19.026144,43.498413,4.053 1912,97.76321,241.67146,23.26139,43.5916,4.001 1912,491.83344,203.62685,54.754333,121.33247,3.906 1912,404.46503,242.45775,36.972992,80.800674,3.849 1912,162.48355,245.17038,22.883957,40.953613,3.838 1912,498.88403,237.72833,32.15796,68.67847,3.816 1912,411.084,226.95226,30.450684,62.336716,3.764 1912,619.24066,213.33696,17.715637,43.160995,3.758 1912,461.1795,239.20876,59.488586,122.43169,3.647 1912,26.336012,250.52658,23.393888,40.495026,3.642 1912,2.5021756,-17.568787,17.311289,41.21899,3.633 1913,157.31296,246.2454,28.711945,54.82985,22.121 1913,481.84482,279.28876,31.364838,73.786194,13.769 1913,176.86293,246.87115,24.164444,52.411987,9.586 1913,48.1983,240.78604,24.828175,44.510437,6.774 1913,627.1782,-19.695644,17.480713,48.247585,6.69 1913,87.664375,236.33772,28.959785,59.374405,6.275 1913,610.7049,-48.678856,41.920166,100.828865,6.24 1913,-6.1448646,488.5539,18.793894,43.238525,6.065 1913,-12.301631,476.49374,30.670063,63.81967,5.696 1913,1.3957822,237.84143,23.297016,48.29364,5.611 1913,-6.115916,-18.479437,18.095463,43.111755,5.426 1913,-12.572239,-39.680813,41.49431,101.109695,5.365 1913,-72.52568,265.91617,200.96498,463.20224,5.364 1913,532.2155,-30.806103,29.881409,74.27529,5.222 1913,585.918,-96.34333,74.31891,227.05148,5.183 1913,514.20654,237.41708,42.363342,80.38202,5.027 1913,536.647,310.90753,143.19702,339.55548,4.955 1913,613.20593,453.8524,39.446655,108.89023,4.903 1913,-21.761065,402.1863,79.37093,175.4089,4.885 1913,583.161,409.51218,71.969604,179.05966,4.878 1913,-20.418453,-84.381714,71.81387,193.20842,4.762 1913,531.75604,-181.58948,149.76727,421.474,4.745 1913,626.2904,486.98578,21.356812,46.37793,4.629 1913,522.3164,224.14406,54.007812,113.36101,4.598 1913,493.42798,228.15274,237.68701,513.4292,4.58 1913,163.61215,231.4339,30.450592,61.938843,4.575 1913,435.67706,255.52725,31.264618,69.636505,4.56 1913,473.3334,244.4967,57.7211,115.902466,4.54 1913,65.046646,241.75687,21.929352,43.43512,4.53 1913,37.644188,219.73822,37.503067,75.55951,4.508 1913,-70.72556,-187.51836,210.43701,454.01788,4.4 1913,103.808044,239.4235,22.57283,44.664185,4.342 1913,-37.626583,-123.89969,117.433136,271.73218,4.303 1913,336.60922,235.95987,26.95169,56.23947,4.264 1913,367.1127,240.29941,29.172028,65.23944,4.165 1913,474.1272,-13.689543,33.358612,63.30149,4.14 1913,26.397797,239.49657,34.692093,55.586563,4.132 1913,620.21045,265.46338,17.922485,37.12036,4.099 1913,547.3825,247.23106,41.96814,88.94234,4.05 1913,4.995513,228.66113,36.2918,93.18976,4.041 1913,501.26996,-34.546272,29.308838,77.67222,4.032 1913,53.054413,218.10942,37.33236,76.992874,3.999 1913,619.5831,-19.436527,17.559448,45.014023,3.97 1913,492.4902,231.30579,57.895294,108.72449,3.936 1913,528.4217,246.94989,36.87262,61.751404,3.922 1913,0.8939314,199.73578,25.845993,72.630615,3.92 1913,130.21053,235.052,21.393173,37.428497,3.912 1913,469.538,283.69492,34.424713,79.78958,3.908 1913,437.46545,-7.4639397,30.764252,66.515526,3.844 1913,389.93475,249.83281,29.399078,73.09877,3.802 1913,537.05334,-18.277075,19.8125,45.688274,3.798 1914,176.59525,243.31943,22.564087,52.0679,15.123 1914,151.93205,240.52197,28.284286,56.358337,14.486 1914,367.4376,202.7083,25.312622,51.413513,8.96 1914,473.83786,227.89232,32.82065,70.218124,7.69 1914,-5.937134,488.77524,18.442638,43.083466,6.717 1914,622.2883,-33.364597,27.674194,76.45636,6.066 1914,357.0903,203.3009,32.42758,74.46765,6.05 1914,84.29634,231.3287,30.271713,60.09668,6.017 1914,80.31544,236.23285,23.372269,42.1308,5.734 1914,-11.483512,-32.937267,29.736023,72.37086,5.504 1914,602.46454,-56.780136,53.97467,132.24529,5.494 1914,-16.743029,-62.11698,56.358208,145.13571,5.381 1914,592.9388,-44.670162,45.453613,94.6609,5.366 1914,-12.000887,478.085,30.304445,62.70865,5.323 1914,612.923,453.97882,39.91919,109.16223,5.31 1914,-72.5348,266.1341,200.81314,462.5855,5.282 1914,-5.921255,-18.283934,17.888718,43.060352,5.245 1914,586.3358,-97.4606,73.84412,228.34018,5.023 1914,43.699883,206.3744,31.59645,58.555008,4.944 1914,-21.840305,402.16394,79.46211,175.45593,4.904 1914,61.81935,214.84305,33.122444,59.192657,4.896 1914,536.56396,310.10168,143.04114,341.38202,4.869 1914,490.57266,-181.36044,234.71085,425.59396,4.814 1914,582.82794,410.57516,71.55994,177.42343,4.8 1914,626.63904,488.03397,20.91681,45.17044,4.8 1914,626.9522,-19.978916,17.844849,48.57156,4.651 1914,70.81172,215.97313,37.158516,78.36629,4.619 1914,615.73566,319.5796,24.209839,59.266357,4.585 1914,493.52963,226.75385,237.3489,515.47565,4.538 1914,574.5544,205.14539,54.212402,164.24066,4.51 1914,170.07277,250.23402,21.265823,47.871506,4.509 1914,165.76012,216.05475,36.23259,79.49219,4.422 1914,-4.2873745,218.33954,17.216888,42.15869,4.415 1914,369.65845,202.37152,40.451294,79.011475,4.38 1914,-37.508415,-125.30357,117.3675,273.26987,4.365 1914,-70.25521,-187.29836,210.26376,454.5022,4.227 1914,18.819248,207.81677,32.990784,60.205017,4.207 1914,96.35804,236.94662,20.902237,41.4494,4.166 1914,353.02887,217.13676,24.337006,49.12593,4.161 1914,557.817,-34.854794,29.093384,70.311584,4.16 1914,56.303062,218.62901,23.28315,40.8752,4.133 1914,485.0482,293.09024,28.386139,71.01105,4.127 1914,112.05205,261.89362,24.70105,40.40384,4.116 1914,-5.261612,235.91434,17.63494,44.628235,4.095 1914,98.69175,254.32625,32.88671,56.91133,4.081 1914,453.47113,268.01523,28.60962,75.61096,4.071 1914,580.87726,-33.66417,30.5224,76.438614,4.059 1914,364.91846,238.95024,31.259888,64.177536,4.004 1914,74.08577,227.4153,23.442596,39.896866,3.969 1914,6.257716,205.6955,29.042824,65.05963,3.949 1914,526.16846,-34.99978,29.145996,73.13808,3.928 1914,342.08865,208.37444,32.25302,68.81581,3.848 1914,385.75842,201.22067,41.80905,81.41086,3.847 1914,181.2746,214.74187,35.724243,78.33394,3.836 1914,611.60114,294.01898,38.3349,119.99872,3.834 1914,1.0910332,221.00885,24.151676,66.206635,3.826 1915,141.8236,243.95766,28.938187,52.62535,18.303 1915,69.44071,237.2915,29.666573,58.374573,10.917 1915,38.94847,224.70035,23.84259,41.71988,7.459 1915,-11.488306,-32.97246,29.67518,73.00123,6.05 1915,-6.1545696,489.4276,18.746128,41.777466,5.944 1915,-12.40871,478.3645,31.047981,62.52301,5.6 1915,-5.9900866,-18.147194,18.002426,43.394928,5.569 1915,381.30365,236.36421,31.575958,67.57005,5.442 1915,627.19617,-17.25794,16.785889,46.563927,5.421 1915,-72.70324,265.48578,201.31375,463.294,5.377 1915,-16.915361,-62.15807,56.37513,144.08987,5.36 1915,585.6256,-98.43532,74.78296,231.25735,5.284 1915,485.23407,220.80318,40.36139,93.351974,5.159 1915,404.15665,244.28818,30.623627,66.11386,5.148 1915,613.11456,454.3609,39.552795,108.05182,5.095 1915,534.4795,222.4868,58.708313,151.07625,5.055 1915,626.5647,488.75522,21.217346,44.63443,5.039 1915,31.52152,233.954,24.8063,41.550247,4.993 1915,113.59654,238.41995,23.140427,39.559753,4.985 1915,164.64804,236.23613,27.931137,56.75081,4.979 1915,582.92664,410.54803,72.04254,178.29199,4.927 1915,535.89514,310.3307,143.90344,341.1944,4.851 1915,622.6874,-33.402447,26.322144,76.38119,4.806 1915,-21.779385,402.17984,79.37442,175.39902,4.797 1915,491.0179,-180.7209,234.52579,425.6807,4.776 1915,18.990826,230.7696,32.003777,56.472214,4.693 1915,498.60245,228.37413,42.200043,102.19585,4.665 1915,579.6375,212.67894,30.318726,68.65425,4.616 1915,494.21185,227.25757,236.92963,514.7681,4.57 1915,65.608734,235.76921,22.66655,42.314285,4.562 1915,602.9433,-56.817486,53.513245,137.945,4.553 1915,540.8715,291.70746,36.68994,87.26407,4.547 1915,401.8678,246.29637,19.741333,36.76967,4.528 1915,507.7701,217.08263,16.682465,27.15271,4.475 1915,564.3378,216.26462,40.66803,113.666046,4.411 1915,54.124416,243.90604,32.79716,62.821472,4.379 1915,446.0271,-34.92422,29.246338,72.970345,4.349 1915,363.8245,226.04004,30.174225,65.77667,4.347 1915,514.8113,216.52544,16.648804,27.200516,4.343 1915,-37.963646,-124.57751,118.17568,272.7629,4.25 1915,510.6122,219.7274,54.360565,137.86781,4.236 1915,390.1929,246.6763,31.574036,70.36429,4.214 1915,78.59383,235.49817,24.01207,42.8291,4.187 1915,26.315441,213.70369,33.107433,55.623276,4.175 1915,148.27188,231.31157,38.254944,71.86479,4.169 1915,-70.29634,-187.48901,210.39256,453.75974,4.154 1915,612.26855,339.7091,28.547607,83.34378,4.128 1915,160.77208,253.70657,23.322006,49.620728,4.099 1915,470.3616,210.86322,38.470154,77.29938,3.991 1915,2.0831866,491.3961,19.47396,40.228912,3.939 1915,130.791,242.02768,22.333801,40.997986,3.935 1915,4.3552756,231.56366,31.230734,62.6839,3.909 1915,1.5156245,231.9331,20.705776,45.223267,3.881 1915,618.4317,490.5282,20.84845,42.06427,3.86 1916,126.779175,245.95674,27.607925,55.257767,9.914 1916,-11.304879,-31.357315,30.048119,72.2262,7.38 1916,622.9345,-34.179516,27.000305,75.89077,6.536 1916,-6.257307,488.72382,18.985596,42.818176,6.212 1916,-5.8179703,-17.01066,17.875692,43.407726,6.176 1916,-12.407589,477.17465,31.08843,63.093414,6.162 1916,627.1975,-19.465578,17.312012,48.51511,6.039 1916,535.0363,293.04126,37.44391,69.697174,5.632 1916,-72.66152,265.46283,201.50183,463.4361,5.434 1916,499.19238,-2.5852318,32.0354,66.20254,5.291 1916,585.6327,-96.49169,74.40662,228.3518,5.256 1916,57.61238,242.5932,32.77137,63.457886,5.142 1916,583.0457,410.78314,72.36041,178.43115,5.122 1916,-17.451935,-61.88725,56.443604,143.06775,5.079 1916,535.9826,311.30493,143.99408,339.73523,5.047 1916,613.26337,453.51627,39.497253,109.30948,5.031 1916,-21.869871,401.9112,79.5724,175.65045,4.958 1916,594.58624,-46.471928,44.452515,99.20292,4.939 1916,603.01514,-58.633465,53.4162,138.09303,4.883 1916,490.77478,-181.42628,234.39502,426.47244,4.772 1916,493.468,227.46844,237.76889,514.75275,4.763 1916,141.59634,233.02534,27.559082,60.252243,4.652 1916,626.4638,487.66397,21.12262,46.05136,4.589 1916,149.0751,224.31458,37.679123,78.58954,4.584 1916,133.4969,249.07962,29.553574,71.261475,4.508 1916,498.9364,190.97745,33.092773,66.507385,4.486 1916,-37.552864,-124.45972,117.769196,272.40283,4.286 1916,-70.56242,-188.46709,210.96707,455.74573,4.27 1916,84.02083,242.73732,40.46415,75.37651,4.264 1916,114.403244,245.49226,21.532059,40.884018,4.244 1916,75.73963,273.205,32.596916,55.714355,4.239 1916,398.12097,214.94754,28.37622,73.823975,4.194 1916,516.0486,-0.8542633,32.564636,64.33114,4.186 1916,577.1377,274.1242,22.774963,43.019592,4.156 1916,70.19253,271.8998,26.883812,42.066345,4.136 1916,521.52295,262.0582,59.42273,120.11722,4.105 1916,446.78116,260.9328,29.033356,65.60388,4.071 1916,506.6658,-13.974461,58.413055,121.26161,4.069 1916,2.6435895,-15.230436,17.11372,40.710045,4.026 1916,-9.325451,-4.815632,39.745796,99.51749,4.003 1916,410.44815,212.98752,29.099823,69.20648,4.001 1916,159.3869,235.72174,22.239044,40.841797,3.961 1916,60.476303,209.22864,54.28621,114.346436,3.955 1916,104.241714,245.44325,22.09195,38.574814,3.923 1916,472.14725,231.8095,56.68802,117.27315,3.919 1916,476.74542,-14.959515,55.72632,121.682205,3.916 1916,-4.5082135,186.80472,17.517336,43.912735,3.903 1916,2.2672868,204.35776,19.6925,53.32144,3.902 1916,573.5721,217.29457,50.96765,131.39769,3.895 1916,-7.0990047,198.46213,36.714256,99.28836,3.852 1916,94.32942,221.32053,53.163483,109.05444,3.851 1916,521.5543,-3.9473343,21.336487,40.130493,3.805 1916,537.0094,224.40091,56.093933,127.198944,3.783 1916,122.91135,242.53352,20.717468,40.589706,3.765 1916,451.86313,222.33014,41.40515,87.873474,3.75 1916,529.6576,-3.2708015,21.440552,40.652912,3.72 1916,194.19937,229.84416,21.247986,31.920425,3.704 1916,-5.880902,0.62125206,18.920126,44.053352,3.694 1916,530.6414,-15.748302,42.656433,85.45555,3.692 1916,116.97457,215.69777,39.553,80.6693,3.673 1916,36.596863,244.33524,41.01149,84.61633,3.656 1916,251.01065,-10.419706,32.03543,60.85903,3.605 1916,251.26831,1.9207859,19.547607,33.930466,3.597 1916,525.38666,280.33463,32.566345,65.539795,3.594 1916,11.945353,242.76993,70.42298,191.0358,3.594 1917,102.03812,242.5185,28.805145,59.83008,13.744 1917,21.724983,233.82727,31.26717,74.89435,8.537 1917,-5.8076024,-17.511414,18.118954,42.925762,7.701 1917,111.62717,253.32133,24.742981,57.912003,7.276 1917,626.73785,-19.946651,17.701172,50.903076,7.009 1917,193.16916,221.09566,23.53801,34.163666,6.801 1917,133.09311,241.96648,29.076004,71.83992,6.794 1917,119.12742,245.45192,23.996223,49.27672,6.359 1917,-11.157316,-31.975855,30.620213,72.982,6.302 1917,-5.91566,489.51288,18.35994,41.612244,6.151 1917,-12.395695,477.26022,30.913052,63.67813,6.078 1917,622.1553,-32.976334,26.797363,78.13302,6.033 1917,34.686348,270.6302,32.134056,60.999176,5.882 1917,602.40125,-55.273926,53.4458,133.54453,5.777 1917,-72.89148,264.85754,201.96541,464.55383,5.482 1917,347.02283,-6.740649,20.007568,41.25265,5.364 1917,613.0398,454.47144,39.94757,107.34497,5.361 1917,86.89131,229.42763,37.70997,78.94826,5.321 1917,611.2363,343.08344,37.50934,115.97589,5.306 1917,97.852264,243.67613,21.330254,44.790848,5.251 1917,586.02563,-96.67625,73.78265,229.27014,5.24 1917,8.734076,232.56741,36.143158,93.569824,5.214 1917,370.18066,238.31128,30.254944,60.846863,5.172 1917,-17.678062,-62.8222,56.131615,143.65321,5.029 1917,532.1449,-181.28284,149.73071,422.1269,5.001 1917,-17.970507,436.21527,55.555435,140.54865,4.94 1917,593.8178,-42.18779,45.26886,94.2,4.934 1917,116.87484,229.75357,37.735115,79.66861,4.919 1917,-5.138096,239.01926,18.093498,45.08905,4.903 1917,614.7593,-22.227734,26.130737,80.31952,4.875 1917,536.47577,310.33368,142.81897,341.59637,4.738 1917,626.3717,487.51337,21.266968,45.95685,4.733 1917,-40.750954,365.77878,111.272316,276.0131,4.71 1917,-5.817498,210.29214,19.548447,50.348175,4.666 1917,583.08154,408.49774,71.45587,179.18011,4.596 1917,35.231052,226.90482,37.905537,85.579285,4.594 1917,-6.971905,233.31708,36.74093,96.09949,4.49 1917,406.3557,243.86327,30.516571,71.763626,4.457 1917,493.2063,227.34836,237.60089,515.13184,4.439 1917,-9.592427,-8.501877,40.221054,106.15726,4.34 1917,38.637737,259.11972,25.517857,45.07315,4.337 1917,579.59845,-32.07106,30.1734,74.64233,4.332 1917,-37.525467,-125.71359,117.09371,275.99112,4.326 1917,402.53323,231.32881,18.975006,43.907333,4.326 1917,53.101265,243.54196,37.607613,79.11676,4.318 1917,72.26402,239.27704,22.015778,41.437256,4.293 1917,69.466644,229.62683,37.74472,78.915344,4.259 1917,50.819225,276.47272,31.461704,54.94931,4.182 1917,409.509,234.4395,20.146698,40.212906,4.165 1917,140.82095,242.07019,24.712357,45.231262,4.161 1917,405.98648,-32.426964,29.014679,72.98629,4.156 1917,132.08147,217.34164,38.56273,76.864105,4.146 1917,2.6600294,-15.700823,17.43254,41.408363,4.14 1917,354.02652,-6.0881615,20.316498,43.25297,4.126 1917,457.65967,230.85385,22.421051,43.910217,4.126 1917,12.725822,204.25946,53.325394,117.3172,4.111 1917,380.55222,-17.698048,30.367767,74.537224,4.095 1918,77.04141,247.56055,30.882698,70.94208,9.391 1918,-6.0117483,-18.353788,18.406664,43.588684,6.592 1918,-12.564346,475.60065,31.122314,65.04352,6.506 1918,622.1664,-32.683365,27.350098,75.05155,6.224 1918,-6.192754,488.1677,18.707397,43.25894,6.129 1918,626.7072,-19.724445,17.835754,48.742054,5.886 1918,-12.307922,-41.32032,41.213173,100.8106,5.753 1918,602.8936,-55.529488,53.563232,131.36493,5.45 1918,-72.836136,265.74155,202.012,463.01407,5.429 1918,451.24728,218.34181,31.712463,80.34099,5.381 1918,593.3575,-44.168472,45.226135,94.323746,5.379 1918,115.58681,243.4173,29.8376,67.41998,5.235 1918,585.9641,-96.56836,74.08777,227.02322,5.094 1918,-17.586445,436.50757,54.839016,139.6997,5.028 1918,0.10507345,277.11346,28.824348,63.572296,5.011 1918,467.67288,208.6171,33.533936,77.98813,5.007 1918,536.59094,310.46143,143.06635,340.35608,4.963 1918,532.39813,-181.02515,149.74304,422.4477,4.961 1918,91.66763,246.38187,28.680588,65.89798,4.954 1918,626.342,488.41522,21.303772,45.273743,4.917 1918,48.595127,292.00424,24.620876,39.197144,4.905 1918,613.18207,454.74356,39.20105,107.2905,4.84 1918,-40.776157,365.41837,111.29126,276.07614,4.832 1918,618.0683,-8.916514,21.45343,49.180138,4.818 1918,582.9615,410.43475,71.98309,178.14581,4.813 1918,-20.429752,-85.28429,71.53832,192.669,4.727 1918,181.52443,218.47159,30.465393,50.199738,4.726 1918,2.2993116,256.62537,19.677166,41.457825,4.668 1918,-5.2057447,204.05249,17.525362,41.086838,4.644 1918,493.94714,228.30582,236.96448,513.1742,4.603 1918,34.525642,280.75427,33.125183,52.50174,4.452 1918,-4.6747084,263.83664,17.901978,40.180695,4.435 1918,-11.204029,263.84467,29.889772,67.80524,4.421 1918,448.31906,222.62045,49.22696,116.681366,4.387 1918,413.84338,257.27332,28.156738,58.559845,4.35 1918,604.9683,-3.9845505,30.68872,66.12374,4.23 1918,-37.52085,-123.96881,116.823845,272.279,4.224 1918,63.498707,252.82103,32.316097,61.907944,4.219 1918,443.82047,247.13382,32.621307,75.60025,4.202 1918,-70.18401,-188.37727,210.7575,454.46973,4.199 1918,116.2331,218.69348,38.78933,77.45575,4.162 1918,99.62695,253.5487,40.159332,86.12897,4.136 1918,16.80052,279.92273,35.433716,52.372772,4.117 1918,195.62996,219.04234,31.656296,50.58467,4.091 1918,440.62903,-2.2495728,33.890686,71.36592,4.046 1918,18.284418,247.64673,41.83963,77.548035,4.032 1918,430.90482,242.2186,29.425323,60.563263,3.998 1918,467.74896,234.37949,39.795776,87.756195,3.963 1918,-4.538912,218.93439,17.490942,43.976868,3.94 1918,564.2481,236.30017,38.525146,84.22119,3.932 1918,-6.485607,291.57294,19.812656,43.748108,3.91 1918,-14.455698,218.8056,48.767807,134.81604,3.909 1918,425.64935,-19.05378,60.243958,125.70752,3.877 1918,542.8168,230.7965,51.93213,118.41667,3.868 1918,192.25107,219.5853,23.664474,37.810455,3.856 1918,47.848892,247.90567,21.547699,41.983826,3.801 1918,532.26184,249.30547,40.292603,86.930435,3.781 1918,599.8731,212.84776,34.172424,98.346695,3.753 1919,516.9745,204.91614,32.156067,69.622925,13.741 1919,54.00454,242.38187,30.992294,74.19293,10.87 1919,529.9195,199.25755,34.081482,75.301834,7.432 1919,-5.9321613,-17.949915,18.170086,42.596333,6.437 1919,626.51294,487.96606,20.424316,46.08435,6.342 1919,-12.520121,476.3365,31.131067,63.72589,6.327 1919,-6.0597634,488.8708,18.621183,42.961975,6.034 1919,-11.355834,-32.28684,30.192307,72.646355,6.002 1919,1.4296579,244.72101,21.025906,43.299316,5.906 1919,627.33386,-17.197973,16.733154,46.470333,5.86 1919,96.97493,236.91132,32.591354,69.94098,5.731 1919,5.2476444,240.25966,36.536644,86.02568,5.594 1919,38.765854,228.68405,37.235657,79.57999,5.552 1919,622.8938,-33.482426,26.194885,76.35524,5.458 1919,612.84045,455.33652,39.745544,107.155914,5.449 1919,86.052025,215.59567,37.59204,80.847565,5.382 1919,-72.916885,265.5567,201.63713,463.0899,5.37 1919,546.67535,204.23549,41.590942,96.59172,5.327 1919,528.29095,201.9498,23.628723,54.177216,5.311 1919,19.171904,239.937,39.368637,79.75926,5.276 1919,-17.367208,-62.842777,56.119064,141.8357,5.269 1919,569.0549,202.47865,31.461731,70.10625,5.197 1919,-3.7575305,223.13666,16.20217,36.965332,5.079 1919,-5.1514482,246.55025,18.509624,43.580246,5.028 1919,-21.927176,401.8243,79.695786,175.96945,5.0 1919,138.73027,214.22812,18.841736,30.98732,4.995 1919,-13.967983,218.47281,48.38789,132.86545,4.947 1919,-5.3566875,201.9169,17.550352,42.503967,4.924 1919,130.21124,206.85869,19.3974,34.88719,4.868 1919,390.59238,228.6536,27.980255,48.624176,4.857 1919,201.22276,217.04399,23.155197,31.532318,4.793 1919,154.69458,215.49156,18.564178,27.931717,4.767 1919,532.38007,-181.88441,149.23444,423.96243,4.755 1919,583.1334,409.76196,71.44629,178.6333,4.755 1919,57.903793,222.46849,31.310928,70.54588,4.753 1919,146.3728,215.10808,19.270477,29.52304,4.734 1919,603.21265,-56.71914,53.700745,134.85335,4.725 1919,536.1983,310.97922,143.84369,341.52652,4.687 1919,69.06929,253.72867,29.702744,70.61371,4.658 1919,-0.942626,269.61838,27.238174,72.01929,4.656 1919,586.3301,-99.73717,74.25214,231.67337,4.63 1919,162.69742,215.18634,18.932556,28.074524,4.63 1919,9.31452,229.47554,19.668797,34.421738,4.624 1919,454.92377,231.82463,28.622742,70.3152,4.613 1919,493.72235,227.81366,236.89667,514.85706,4.604 1919,170.35524,216.51352,19.763199,28.356445,4.409 1919,612.2794,328.51154,36.233032,115.61725,4.344 1919,-70.461815,-187.6687,211.07587,454.1562,4.307 1919,-37.478214,-124.91902,117.19867,274.20438,4.302 1919,411.41006,228.46379,29.618927,59.56743,4.251 1919,69.50142,214.32849,37.91462,80.80759,4.231 1919,-15.155978,153.96391,49.916622,139.44069,4.214 1919,594.1306,-46.003998,44.947693,96.377716,4.198 1919,509.7957,193.10355,28.83908,64.77557,4.187 1919,510.24075,221.81978,30.22409,70.894424,4.186 1919,-6.2234716,263.46432,19.567074,41.257538,4.176 1919,538.374,-17.763212,17.432556,42.17629,4.15 1919,130.79932,219.70126,19.491745,33.923584,4.149 1919,5.251931,236.24495,27.280869,56.792313,4.116 1919,185.53429,217.8893,22.712494,29.157059,4.029 1919,1.9707566,-17.929394,18.310427,41.617405,4.004 1919,117.018585,211.3904,38.360275,77.202774,4.002 1919,177.99152,216.70572,21.785553,29.61705,3.991 1920,29.167727,263.58182,32.8125,73.58139,7.928 1920,-6.2064705,489.43353,18.713022,41.718933,6.247 1920,610.08997,-46.412052,42.36371,96.703674,6.088 1920,-11.544659,-33.051853,30.967344,72.05505,5.892 1920,4.4777536,244.43094,37.659836,89.90582,5.886 1920,627.12146,-20.157368,17.626526,48.867733,5.809 1920,-6.242053,-17.36839,18.568134,42.44207,5.697 1920,-12.319246,477.5775,30.589191,62.99536,5.51 1920,-72.8069,265.48077,201.84358,463.38348,5.441 1920,14.444836,239.28442,50.35467,110.227844,5.425 1920,-17.291397,-62.02414,56.098137,143.89552,5.288 1920,-4.999713,265.20956,18.275799,40.53186,5.232 1920,586.0538,-96.497086,74.08649,227.12915,5.223 1920,613.131,453.90268,39.287292,108.180756,5.145 1920,582.92737,411.1834,72.18701,177.20227,5.037 1920,-21.840752,401.92514,79.73427,176.07797,5.02 1920,36.19506,243.67757,38.26996,81.6125,4.961 1920,536.4815,310.904,143.27893,340.68427,4.882 1920,181.0762,218.89708,30.864944,51.626358,4.864 1920,626.39606,487.30087,21.164917,46.337677,4.847 1920,2.049551,257.82153,20.012934,42.71866,4.84 1920,490.62488,-179.10695,233.8924,423.18454,4.687 1920,69.75664,233.0419,37.498978,75.727905,4.667 1920,1.0545707,284.67996,25.986753,70.88974,4.644 1920,81.847496,249.6093,31.324806,72.741135,4.532 1920,-14.55534,186.33878,49.265392,141.13065,4.531 1920,493.4776,226.7752,237.9538,514.06866,4.473 1920,484.8741,-34.230785,29.90329,75.47252,4.45 1920,54.404587,231.6166,37.59453,78.06273,4.392 1920,-37.04869,-124.939224,117.60186,274.84338,4.39 1920,-6.0396805,251.60086,35.604385,95.08203,4.374 1920,509.31055,-34.029152,29.417542,76.28846,4.179 1920,-4.9032073,215.98384,18.271633,45.067123,4.123 1920,548.7908,-34.943817,29.108948,73.22527,4.073 1920,117.40734,218.8529,38.40029,70.40149,4.064 1920,192.1799,228.17892,23.85962,38.26303,4.018 1920,-70.52783,-187.4398,210.88434,452.94812,4.016 1920,137.43106,229.50592,20.605469,30.7258,3.986 1920,209.1449,230.30731,22.81134,36.89746,3.981 1920,-6.146037,292.77716,19.185589,45.4722,3.976 1920,-9.349479,-5.7603264,39.82003,103.65013,3.955 1920,-11.458235,268.5743,29.45161,63.926422,3.921 1920,507.76443,275.6691,36.93344,66.822296,3.909 1920,470.3051,-33.707783,29.513153,75.1772,3.888 1920,517.8684,237.78703,59.961426,124.76277,3.884 1920,489.04483,-20.536121,19.979584,45.158936,3.787 1920,481.37863,-18.622599,19.610992,43.382416,3.781 1920,201.73178,234.46608,21.563599,38.00255,3.769 1920,491.3242,-14.280811,34.82077,65.67393,3.717 1920,509.2376,184.86174,55.092346,134.89876,3.705 1920,13.8304405,247.43106,66.3145,177.41971,3.704 1920,129.34442,227.31227,20.96048,31.630905,3.665 1920,-8.914768,220.48364,61.013187,170.5589,3.659 1920,48.16238,258.00156,24.183018,45.660828,3.642 1920,270.04065,209.72661,29.846619,68.98103,3.633 1920,524.3685,-20.356636,32.678833,71.20771,3.62 1920,83.831245,218.6673,39.07547,76.585144,3.614 1920,18.268974,212.775,42.43515,88.068054,3.594 1920,513.3538,-19.53322,20.03186,44.32045,3.583 1920,230.01105,228.21951,28.585144,56.722748,3.574 1920,618.09576,488.5951,21.468811,43.993286,3.571 1920,560.7084,-42.88344,46.23889,94.73034,3.546 1920,617.78375,-10.503044,21.19696,47.357407,3.544 1920,138.42906,226.87376,34.181625,51.577896,3.539 1920,0.68689585,-18.237656,52.996155,155.36763,3.538 1920,536.64465,222.27515,59.774353,123.72229,3.537 1921,622.5556,-33.374,27.237854,76.6435,7.137 1921,-6.088146,-16.983221,18.046001,41.689724,7.023 1921,627.03595,-19.968222,17.775513,49.33068,6.921 1921,274.39502,205.94078,31.609558,64.5164,6.559 1921,-11.940151,-32.74368,30.222338,71.2982,6.332 1921,-6.12123,488.94678,18.587276,42.867737,5.928 1921,476.56967,221.82309,29.62555,72.07892,5.769 1921,-12.277665,476.3304,30.652256,63.87784,5.54 1921,-17.57716,-62.52162,56.065884,143.05911,5.524 1921,602.2383,-55.916576,54.0271,134.24625,5.378 1921,-72.77413,265.3761,201.44888,462.76257,5.268 1921,613.41754,454.4176,39.189026,108.11926,5.247 1921,585.6639,-95.86838,74.14142,229.10277,5.116 1921,626.08344,488.24503,21.634583,45.27597,4.996 1921,-21.866287,402.23676,79.619835,175.60046,4.939 1921,618.175,-9.617039,20.784424,50.49299,4.776 1921,583.1312,410.16064,71.60339,178.05334,4.757 1921,2.2306204,-15.95167,17.618855,40.516144,4.683 1921,536.3948,310.31732,142.7699,342.07794,4.67 1921,63.569622,237.47488,30.345623,63.340393,4.656 1921,545.0834,217.78416,32.78363,74.27516,4.596 1921,531.95685,-180.5026,149.60504,419.2123,4.538 1921,-36.926228,-124.45114,116.92122,271.10843,4.478 1921,-9.538116,-6.9544563,39.754265,100.72768,4.452 1921,205.60803,213.28223,29.432922,49.312317,4.417 1921,493.7149,227.18567,237.48535,514.6158,4.406 1921,1.1893749,276.47113,20.9526,39.67273,4.309 1921,593.93744,-44.096558,44.510925,97.221794,4.231 1921,-70.569435,-188.4498,210.95978,454.33655,4.109 1921,20.343084,265.07327,33.10566,63.331726,4.083 1921,-4.4641743,252.09174,16.141068,37.658325,4.011 1921,618.0118,489.97632,21.365173,42.46515,3.933 1921,18.98087,226.56154,39.66875,85.1982,3.864 1921,140.76106,103.93388,32.24974,73.10185,3.782 1921,261.66904,209.80952,37.53586,83.46907,3.672 1921,308.2695,235.22731,17.924957,32.149033,3.668 1921,26.322405,-15.75135,58.624046,117.95838,3.623 1921,307.4029,247.09946,19.1846,32.909515,3.608 1921,1.9124007,-24.005116,51.98192,133.08264,3.599 1921,36.100258,228.83977,39.074455,79.67149,3.582 1921,14.533541,223.24756,65.95989,169.41559,3.532 1921,9.288748,-87.63069,73.60099,202.44357,3.442 1921,287.73395,216.0268,21.854431,46.264374,3.437 1921,299.98706,230.91135,18.389923,35.5643,3.362 1921,154.89502,171.06421,57.530396,111.12695,3.358 1921,272.70166,202.2333,23.002563,37.46689,3.349 1921,-12.803249,218.40286,47.499733,139.06107,3.347 1921,4.234376,259.20255,31.654167,60.67856,3.337 1921,-5.073499,272.1376,17.412481,34.10092,3.335 1921,2.2925055,490.17532,19.57561,41.92502,3.327 1921,169.854,215.9915,33.89032,53.413895,3.315 1921,202.33939,230.4552,21.401627,31.483948,3.314 1921,-6.0877647,96.64493,18.5789,40.936462,3.312 1921,612.11383,248.00615,36.75818,117.56624,3.225 1921,354.7326,255.56244,19.016113,35.355774,3.215 1921,262.99673,199.50017,31.029175,59.490524,3.21 1921,-5.2699423,233.75346,17.630413,41.93727,3.202 1921,461.7945,224.68112,31.845062,72.62842,3.189 1921,108.36831,218.3364,31.195824,59.891785,3.183 1921,45.50091,217.08984,55.183994,109.49133,3.182 1921,610.1838,-17.619925,18.08191,44.772205,3.155 1921,495.01886,188.69968,50.794373,121.49841,3.129 1921,-9.1897545,34.94904,39.216576,103.74536,3.128 1921,432.78406,-38.129128,45.342743,93.81483,3.124 1921,33.596405,-1.8489094,35.04879,62.048447,3.116 1921,52.166397,255.02438,31.004189,71.04492,3.113 1922,69.37901,235.47032,30.168884,72.50899,6.57 1922,-6.34715,488.60837,18.8558,43.19046,6.545 1922,626.66797,-19.102966,17.656494,48.00395,6.089 1922,51.833054,221.69153,33.48368,74.651245,6.009 1922,610.27673,-46.384926,41.920776,99.10871,5.881 1922,-12.738012,476.8979,30.983053,63.551453,5.81 1922,276.62054,203.87123,33.338806,68.53502,5.74 1922,-12.776363,-40.981625,41.630882,101.08605,5.658 1922,613.04553,454.52072,39.464905,107.67911,5.393 1922,-73.32427,264.74292,201.9729,463.63135,5.371 1922,-17.267372,436.92004,54.860256,139.58997,5.271 1922,-6.0886517,208.42204,18.733398,44.505142,5.18 1922,317.08746,233.49858,29.647797,57.66597,5.173 1922,490.8952,-181.48097,234.19489,427.50116,5.152 1922,586.32635,-97.31311,73.77716,229.80432,5.133 1922,-19.799202,-84.69979,71.39855,194.13734,4.885 1922,29.577417,228.5531,29.820616,66.44287,4.858 1922,582.8776,410.97247,71.99115,177.48749,4.847 1922,536.2084,309.9272,143.07068,343.31378,4.764 1922,-40.53118,366.71558,111.071045,275.1615,4.711 1922,-6.1040964,-17.732597,17.885065,43.08871,4.694 1922,-14.835064,201.53592,49.23192,135.5877,4.693 1922,626.55096,488.4422,20.829285,45.20526,4.606 1922,-5.214393,187.59149,16.798061,39.041214,4.528 1922,-36.973972,-124.16407,117.00076,274.03244,4.527 1922,298.1512,229.17644,20.463074,38.122055,4.525 1922,2.2838485,263.5273,21.623924,49.462524,4.518 1922,493.48993,226.57547,237.93799,515.74243,4.433 1922,4.681251,253.82486,38.1922,100.84357,4.417 1922,597.6032,-19.44566,40.379333,90.77115,4.324 1922,-15.469406,118.41687,50.938667,141.45334,4.324 1922,-70.50475,-189.27744,211.48749,456.10147,4.314 1922,10.399168,-19.890793,62.346382,126.603386,4.254 1922,-0.82146645,202.05443,26.266531,68.584335,4.203 1922,566.26196,-33.37083,28.844543,75.35025,4.193 1922,13.731127,214.65056,52.947388,116.968124,4.15 1922,1.8711412,490.30118,20.265505,41.652863,4.12 1922,289.8443,222.92381,22.656738,45.306503,4.107 1922,580.82404,-10.341381,30.570679,85.68733,4.036 1922,565.78815,200.02496,33.061096,83.545715,4.026 1922,3.5698307,219.5809,38.01188,90.90784,3.932 1922,328.30347,243.88936,23.812866,40.594345,3.927 1922,-5.2637963,169.7271,16.760275,40.996292,3.792 1922,293.6665,223.36789,29.565063,59.502716,3.728 1922,313.7894,234.44731,20.17868,39.93907,3.726 1922,0.70357084,247.54787,21.832678,47.32112,3.725 1922,59.129257,208.65277,30.823326,57.99164,3.711 1922,-8.749767,4.2522316,39.566917,104.8354,3.696 1922,485.84195,214.3331,26.709564,65.24875,3.693 1922,582.14526,232.46078,38.407654,111.93338,3.67 1922,-11.258069,190.56447,28.943947,67.924545,3.641 1922,-10.219013,101.89891,39.79735,105.35785,3.641 1922,475.86395,-15.886028,34.158752,64.73831,3.63 1922,77.301926,228.28278,34.3712,69.906555,3.611 1922,202.47115,218.7077,20.337921,27.577667,3.605 1922,-4.8350067,241.71028,17.570948,43.19365,3.566 1922,2.2415197,196.56033,20.28291,41.050125,3.565 1922,80.745255,233.03706,43.02469,95.263596,3.539 1922,549.13934,-18.987528,30.53772,66.873634,3.537 1922,-5.054406,275.26483,18.027103,44.672882,3.536 1922,19.698784,195.9784,39.310875,86.02402,3.521 1923,622.96313,-34.015175,26.53302,76.19447,7.023 1923,-5.9059896,488.7642,18.638672,42.543182,6.801 1923,627.5371,-16.5652,16.792175,45.610394,6.336 1923,-12.048128,476.95013,30.299774,63.59723,6.268 1923,83.46821,226.21204,30.15007,67.68036,6.265 1923,-5.9992695,-17.373861,18.000175,42.76211,6.145 1923,-11.370229,-33.169285,30.417744,73.55195,5.872 1923,-17.601751,-63.18552,56.295868,142.514,5.549 1923,613.0886,454.0994,39.609802,107.97537,5.52 1923,313.60077,239.22473,19.725403,33.05591,5.259 1923,-72.79845,265.47937,201.39838,462.59326,5.197 1923,-5.8406944,247.13304,19.030058,41.61873,5.13 1923,602.64764,-56.99298,53.758484,131.98875,5.109 1923,-21.754719,402.56772,79.476776,175.22403,4.973 1923,563.26935,208.38289,33.733215,73.684006,4.917 1923,490.58212,-180.89523,234.05582,425.20218,4.902 1923,0.5262518,231.63147,29.014404,64.50055,4.89 1923,594.02203,-45.256355,44.390686,94.4452,4.816 1923,586.7724,-98.50546,73.87756,229.04088,4.808 1923,536.54614,310.11246,142.9372,342.66525,4.746 1923,582.8961,410.7493,71.828735,177.4938,4.708 1923,619.51,-2.6281166,17.90979,39.418293,4.651 1923,626.3232,488.34778,21.43634,45.59491,4.548 1923,11.537795,237.88486,32.309235,58.69934,4.513 1923,36.54281,225.10638,38.52549,82.821045,4.441 1923,41.420532,251.92216,24.607841,43.755203,4.387 1923,493.5476,226.53195,237.71155,516.38513,4.386 1923,-8.7799635,-6.3409843,39.5014,100.723434,4.36 1923,-37.47811,-126.23587,116.62294,275.44772,4.36 1923,70.00125,233.94336,31.633575,65.342834,4.295 1923,8.716928,251.65038,24.480942,40.841232,4.24 1923,-70.71163,-189.01422,211.29291,454.92014,4.11 1923,139.29228,207.07591,32.09462,57.78151,4.104 1923,-13.895902,205.13696,49.15765,135.51471,4.102 1923,13.660467,214.19164,52.851036,114.95186,4.094 1923,627.7988,1.42696,17.2146,46.88566,4.056 1923,-10.49806,222.46536,29.744274,64.60373,4.049 1923,1.6775537,234.30566,21.06302,38.874847,3.998 1923,614.85394,-17.577187,26.421204,67.026825,3.928 1923,276.03482,204.27487,31.278778,67.98807,3.854 1923,303.8053,234.43071,26.55542,47.706833,3.79 1923,1.7779374,-39.57824,43.052994,96.59918,3.779 1923,-4.9915876,225.54182,18.21491,41.931015,3.753 1923,298.6542,235.32262,20.242767,31.88713,3.732 1923,485.32315,-34.036053,29.578278,70.370285,3.728 1923,282.36234,225.18788,22.489838,41.824936,3.724 1923,52.891083,216.45035,38.950287,76.99515,3.705 1923,260.08243,189.80797,31.978088,57.765747,3.683 1923,575.7154,197.18304,22.81305,51.89911,3.667 1923,490.18707,-19.389389,18.352417,42.390453,3.653 1923,9.361401,-32.25894,58.78802,127.87628,3.62 1923,2.124133,-16.001617,17.793346,40.856846,3.574 1923,611.1094,-12.913997,16.251526,37.460773,3.564 1923,321.7539,237.51564,19.880035,31.848892,3.54 1923,465.85483,-17.779085,18.640686,41.60885,3.514 1923,571.76044,234.42719,29.631897,67.81207,3.508 1923,598.97156,180.85815,36.05963,103.016785,3.473 1923,-8.876672,35.044243,39.0294,104.505684,3.443 1923,575.1218,184.80052,50.16333,143.08534,3.443 1923,602.9659,-14.077171,16.422424,37.704044,3.441 1923,458.60046,-17.437603,17.675446,40.745106,3.42 1923,508.94708,-60.30282,55.80304,130.21544,3.407 1923,496.59064,-45.672466,46.117493,93.90828,3.383 1923,285.6059,230.00377,27.870483,54.67302,3.38 1923,-15.149311,139.12863,51.794132,140.50623,3.373 1923,549.74786,-34.36435,28.697632,65.58456,3.369 1923,603.7933,-0.30128288,17.96051,34.616745,3.365 1923,-4.5728655,199.61095,18.96838,48.146423,3.361 1923,247.16748,191.38994,30.191498,60.46315,3.356 1923,2.0122666,489.8762,19.866861,40.743805,3.337 1924,-11.537085,-32.638477,30.323298,73.20737,6.086 1924,-6.2292743,-17.64352,18.31518,42.495384,6.045 1924,-11.945999,477.68906,30.685093,63.296234,5.839 1924,162.94272,226.39551,32.660034,63.141113,5.754 1924,610.5205,-48.056133,42.155334,99.344444,5.709 1924,-6.0549026,489.19577,18.788239,42.335297,5.699 1924,0.006659031,216.79428,28.850721,63.827057,5.622 1924,438.11966,214.09154,27.96997,77.86055,5.598 1924,627.28253,-18.629307,17.240845,47.228474,5.574 1924,613.1603,454.165,39.5459,107.98489,5.571 1924,-17.62798,-63.14896,56.532238,143.98651,5.439 1924,-72.803894,265.8741,200.99687,462.0845,5.221 1924,320.65344,251.29915,22.278687,38.072617,5.114 1924,-5.4528046,227.54008,19.365505,44.942398,5.111 1924,532.3508,-182.0731,149.25897,422.77103,4.956 1924,-21.733007,402.81168,79.36391,175.26767,4.901 1924,536.4803,310.00003,142.90863,341.48886,4.888 1924,626.4062,488.01093,21.140137,45.750793,4.855 1924,61.837517,225.35077,31.384369,60.817047,4.817 1924,12.823153,226.77728,29.520197,57.87155,4.799 1924,582.90735,410.51596,72.11249,177.96695,4.798 1924,586.76404,-98.928314,73.90033,231.53099,4.796 1924,1.2142587,202.21004,21.81173,53.35524,4.727 1924,423.95657,216.44595,28.562805,68.13162,4.603 1924,493.54886,227.17966,237.87485,515.0895,4.506 1924,516.8369,-15.487101,30.31781,65.95619,4.477 1924,-37.670506,-126.47581,116.8172,277.72818,4.336 1924,96.71626,213.07072,29.425049,58.962418,4.298 1924,-13.235164,186.67271,47.91743,136.67812,4.243 1924,500.9489,-17.600613,31.594055,68.657265,4.208 1924,-9.762115,-4.7013206,41.146324,100.587585,4.207 1924,451.16003,254.99268,32.54721,78.56464,4.203 1924,1.7953038,-16.748383,18.055645,41.23534,4.172 1924,-70.310455,-187.70001,210.7537,454.00095,4.095 1924,565.3039,-34.972095,28.893005,71.361404,4.031 1924,13.472552,195.25616,52.363796,110.79532,3.991 1924,461.4629,239.25732,50.757812,124.14862,3.982 1924,75.46706,208.16187,29.195229,62.002625,3.912 1924,27.868776,231.46744,31.402586,54.305115,3.861 1924,1.3019681,-40.570206,43.695114,99.19293,3.855 1924,420.68893,236.8395,39.815216,94.93208,3.797 1924,339.17047,242.88031,30.361938,56.4057,3.796 1924,532.8762,-18.765722,30.559692,66.69154,3.785 1924,-4.185114,190.13652,18.236626,40.12883,3.761 1924,285.58743,241.86133,29.74997,50.16382,3.753 1924,329.71832,247.72548,20.302582,35.75618,3.742 1924,510.34283,-33.429592,28.960815,75.54254,3.72 1924,485.61206,-16.340858,30.79889,66.66509,3.719 1924,314.89462,248.70776,20.50595,34.477905,3.675 1924,-15.964637,120.24152,51.591618,142.05469,3.656 1924,4.790039,222.7467,37.983727,100.83093,3.632 1924,-4.7303953,172.03165,17.37783,42.13127,3.622 1924,44.14433,225.17879,32.244373,58.49266,3.609 1924,296.7547,246.4654,22.172607,34.63263,3.577 1924,2.2882032,490.51166,19.40662,41.552612,3.476 1924,-5.3766413,155.963,17.364288,41.122635,3.459 1924,-4.996948,205.50407,18.813934,47.351776,3.449 1924,618.1572,490.02823,21.085205,42.91971,3.445 1924,490.36465,-6.1443005,20.873596,43.70279,3.427 1925,-11.243173,-31.438044,30.093063,74.783,7.04 1925,49.00463,237.36765,22.775085,35.879456,6.666 1925,-6.233615,488.7217,18.816952,42.43271,6.42 1925,-12.528904,477.43332,31.122787,63.00534,6.332 1925,-5.9456015,-16.237034,17.773102,43.0774,6.247 1925,579.1023,316.1743,29.413147,56.19168,5.835 1925,622.78394,-33.006443,26.777283,75.463844,5.7 1925,32.13129,229.62775,25.21487,40.685913,5.491 1925,627.2641,-18.60591,17.019043,47.69448,5.432 1925,319.24588,268.35895,23.207428,39.739197,5.3 1925,613.13654,455.94934,39.048523,105.36127,5.17 1925,626.5241,488.48407,20.950989,45.385193,5.15 1925,-72.76668,265.95346,200.87408,462.36697,5.112 1925,20.806639,217.93663,31.673418,56.66716,5.084 1925,603.29926,-58.29415,53.679443,137.66762,5.072 1925,-18.054922,-61.552162,56.53163,144.60037,5.029 1925,532.4988,-181.43916,149.44513,421.62628,4.955 1925,586.39154,-99.55953,74.38049,232.82098,4.886 1925,-21.70823,402.84995,79.42206,175.07217,4.872 1925,594.49774,-47.57577,44.17572,99.083145,4.855 1925,536.9939,310.8238,142.41827,340.40485,4.776 1925,582.82574,410.1167,72.01984,178.81494,4.763 1925,561.2484,328.08063,22.092285,42.169952,4.724 1925,615.9214,321.91992,24.498596,49.386078,4.589 1925,4.7525883,213.80194,28.891096,65.522064,4.486 1925,494.0625,226.50955,237.38623,515.6199,4.387 1925,291.8853,267.3298,32.068054,46.537598,4.363 1925,-3.6387086,14.784798,36.869293,85.47638,4.348 1925,-9.724817,134.76022,39.85988,102.9906,4.293 1925,-5.902619,217.87163,18.543219,41.879654,4.235 1925,-37.81919,-127.67489,117.91392,277.87332,4.23 1925,260.49954,260.4632,32.101746,57.859497,4.226 1925,42.80405,244.45842,18.762447,33.647476,4.182 1925,-70.0074,-187.35844,210.50317,453.54993,4.096 1925,73.42833,232.34271,22.973763,40.831818,4.01 1925,598.96484,283.41852,36.185913,90.5112,3.992 1925,37.37553,204.61032,30.335796,57.840088,3.981 1925,1.8980038,219.57088,20.764597,42.769028,3.935 1925,1.9680768,490.48608,19.97149,41.014038,3.906 1925,517.87103,-21.62812,29.38562,67.3147,3.906 1925,2.1074433,-15.088188,16.872543,41.383408,3.904 1925,57.193523,244.11282,19.463879,35.437744,3.874 1925,-3.7593532,-16.508774,29.953363,72.17731,3.84 1925,618.1826,490.56723,21.0,42.49301,3.775 1925,41.087017,222.83426,22.126186,35.67621,3.77 1925,-13.872507,185.62,48.15058,137.6106,3.766 1925,445.14532,219.63132,30.12732,71.561554,3.743 1925,460.5023,-15.051094,31.321136,67.469185,3.718 1925,235.74928,192.49988,29.077805,63.966217,3.7 1925,343.60568,251.59576,34.990784,62.143005,3.677 1925,468.1906,216.1741,28.669128,64.53085,3.668 1925,465.85464,-5.5685368,21.161194,43.226425,3.663 1925,3.949312,220.10641,38.43251,108.57721,3.661 1925,297.5915,269.74286,20.144592,28.988342,3.65 1925,479.03867,222.1201,27.388763,64.41533,3.645 1925,613.8563,330.31125,37.845947,111.231415,3.642 1925,494.08966,-33.696907,28.841797,72.72069,3.613 1925,277.59097,265.06717,31.242096,48.99649,3.59 1925,357.70624,197.85208,28.00885,68.720245,3.525 1925,458.53375,-3.3997574,20.16043,39.554638,3.521 1925,333.1404,260.9658,30.947388,57.074585,3.51 1925,528.7987,-44.71829,45.549316,95.45804,3.51 1925,122.48475,244.89597,21.039238,42.2872,3.508 1925,-10.965966,207.17358,29.551327,67.011536,3.496 1925,51.861847,225.58295,31.452423,48.999817,3.487 1925,619.44617,-18.483976,17.32727,43.83269,3.468 1925,473.87958,-17.911732,18.121216,42.172256,3.44 1925,496.76892,-44.30748,45.88678,92.70493,3.423 1925,38.26071,232.40088,28.925972,53.801514,3.399 1925,604.1946,188.63503,52.780273,149.10173,3.376 1925,565.3574,319.02286,28.993408,53.983307,3.371 1926,-5.968179,488.31174,18.43277,43.2731,6.285 1926,-11.534556,-31.68797,29.660007,70.82178,6.106 1926,-5.979595,-17.585331,17.707954,41.599285,5.963 1926,622.9562,-33.635345,26.416931,76.37488,5.692 1926,627.2769,-17.49371,16.914978,46.504593,5.636 1926,-12.389002,476.47665,30.932749,64.27701,5.508 1926,613.1495,454.72342,39.76056,107.51413,5.484 1926,490.67236,-181.03246,234.34277,425.97452,5.1 1926,-72.74903,265.81305,200.6094,461.5962,5.011 1926,29.339954,218.11003,32.554634,58.913345,4.984 1926,378.9383,194.493,28.559448,67.24089,4.968 1926,-17.460615,-63.343094,56.06141,146.89499,4.847 1926,536.44073,309.97565,142.75513,341.8365,4.842 1926,603.004,-57.151802,53.762573,135.4037,4.841 1926,-21.93529,402.09882,79.54683,175.45728,4.833 1926,3.23372,209.4497,28.579199,74.69757,4.815 1926,586.5565,-99.45664,74.233826,231.52728,4.804 1926,40.56913,222.16035,25.629105,41.870377,4.785 1926,113.82782,215.78773,20.416534,33.933243,4.659 1926,582.96106,410.049,71.8562,178.83002,4.618 1926,626.4484,488.40173,21.16095,44.96338,4.515 1926,493.8394,227.81628,237.54758,514.87463,4.425 1926,594.1636,-45.68978,45.05658,97.42836,4.357 1926,-70.52074,-188.8599,211.14766,455.2817,4.318 1926,-37.29143,-125.720695,117.29079,274.33478,4.309 1926,486.8445,223.49187,22.711182,46.656815,4.236 1926,121.84064,209.6926,20.24739,32.60466,4.203 1926,516.45624,253.32565,31.233215,75.107025,4.145 1926,461.51413,222.8508,30.119598,65.82608,4.001 1926,533.08923,240.6641,37.882507,86.374176,3.999 1926,141.39452,209.89409,33.211487,65.33342,3.964 1926,523.79236,251.41122,19.741028,44.748535,3.915 1926,482.17496,-17.604942,18.546143,41.203423,3.874 1926,620.3222,-3.7040787,17.35785,39.742233,3.87 1926,590.2448,207.15259,56.915527,205.81775,3.854 1926,547.67596,240.32863,37.92334,90.08891,3.836 1926,101.18402,204.87141,30.399551,55.57802,3.81 1926,501.68576,232.55083,38.174652,87.58995,3.799 1926,2.2044854,490.12442,19.441286,41.581573,3.78 1926,276.29413,290.98218,30.953552,56.758453,3.747 1926,-5.457369,55.162186,19.739796,44.840103,3.745 1926,124.23928,203.27704,30.153908,56.48636,3.678 1926,3.0760586,-15.93654,16.34822,37.929157,3.668 1926,483.9325,227.19662,38.22223,91.1449,3.626 1926,478.51782,-33.958557,28.357117,71.560234,3.606 1926,474.05316,-18.348392,18.296753,40.701145,3.548 1926,549.73,-33.02976,28.703796,69.799355,3.535 1926,105.83702,210.098,21.140823,35.080856,3.512 1926,363.47354,-16.49397,15.815033,36.68242,3.461 1926,581.897,195.91194,38.632874,103.04555,3.461 1926,468.8142,222.83684,39.00293,98.284195,3.459 1926,527.9333,251.5037,23.870544,59.577026,3.447 1926,490.09064,-20.14831,18.679626,44.052364,3.38 1926,350.5022,-36.03525,28.197754,67.556206,3.351 1926,355.4442,-15.831331,16.170624,36.06973,3.3 1926,612.8039,359.51593,37.197937,114.89365,3.299 1926,85.844536,206.98125,37.67578,84.31294,3.295 1926,36.83525,202.5202,38.17578,85.01575,3.292 1926,331.33136,-17.315773,16.316803,38.590973,3.289 1926,493.7417,-35.55301,28.705261,71.436615,3.287 1926,324.76807,67.611824,32.02176,62.894142,3.285 1926,528.48914,-43.198902,46.670288,93.23967,3.284 1926,347.32617,-16.360699,16.490723,36.614857,3.267 1926,599.3319,184.13551,35.437622,102.48726,3.262 1926,325.56598,285.75027,30.208984,57.681458,3.253 1926,466.2927,-17.080769,17.859802,39.021057,3.249 1926,314.88458,-17.51876,16.730072,41.718544,3.223 1926,1.9737625,-41.5479,43.028545,103.25434,3.223 1926,163.19424,227.2496,30.828293,63.487274,3.212 1926,496.56824,-44.34435,45.91986,92.64561,3.194 1926,220.59512,216.18669,28.70697,67.97377,3.188 1926,156.06787,-2.8947258,17.301575,36.367138,3.182 1926,488.8666,235.6115,22.487152,61.344894,3.178 1926,461.3959,-16.85128,30.933044,64.01414,3.161 1926,555.111,-7.605486,19.78064,41.561646,3.157 1926,546.65765,257.08533,19.424988,38.954834,3.139 1927,-5.8111715,-17.601887,17.562094,41.834053,6.06 1927,-11.517253,-31.840506,29.883099,71.61459,6.052 1927,627.3633,-17.513288,16.788452,45.482624,5.574 1927,-12.670849,477.02853,31.070333,63.71231,5.472 1927,626.5115,488.42676,20.827026,44.583984,5.448 1927,477.93964,228.4575,27.31665,60.652298,5.425 1927,-6.1531696,489.10587,18.73608,42.621918,5.407 1927,613.28406,454.71558,39.460938,106.79303,5.314 1927,623.06476,-34.089138,26.185059,75.6205,5.227 1927,490.70316,-180.47345,234.37796,426.51816,5.097 1927,586.0646,-98.28307,74.51312,230.27853,5.09 1927,-72.49182,266.01566,200.43976,461.92844,4.973 1927,146.37921,221.66328,31.680862,61.516403,4.899 1927,-21.823997,402.13232,79.588524,175.30731,4.88 1927,-17.66426,-62.819763,56.389904,144.58041,4.829 1927,583.1281,410.3927,71.67224,178.0105,4.791 1927,603.12585,-57.181572,53.5343,135.07587,4.723 1927,314.9325,-16.655014,17.695435,41.774685,4.685 1927,536.6332,310.53275,142.21863,340.53696,4.684 1927,-71.05427,-189.28923,211.60089,454.92157,4.428 1927,-37.11961,-126.9647,117.30606,274.82755,4.386 1927,585.3294,270.6512,19.375977,49.467316,4.333 1927,493.71783,226.79709,237.8753,515.1229,4.32 1927,330.71335,-13.692945,16.825256,38.698284,4.298 1927,494.87048,224.01694,30.180115,67.829926,4.273 1927,594.1981,-45.87157,44.945923,96.69164,4.267 1927,81.85462,215.26889,20.425835,40.259415,4.252 1927,59.07699,206.97162,30.070724,68.06979,4.179 1927,486.24286,-34.24996,28.263,70.900215,4.174 1927,90.66873,211.13588,20.376999,37.954712,4.153 1927,501.86304,-35.139507,28.331177,70.136246,4.039 1927,582.43976,255.03276,35.67035,103.70387,3.978 1927,322.98053,-14.868601,17.139465,40.53648,3.859 1927,160.99738,281.29364,20.031525,37.43289,3.858 1927,339.60553,-12.514315,15.630829,34.810318,3.838 1927,3.0168664,-15.911832,16.379835,38.69739,3.835 1927,331.36826,0.5437794,18.479767,37.677727,3.757 1927,470.08295,-34.4169,28.944153,72.4196,3.753 1927,275.6363,319.93088,31.588623,59.369476,3.626 1927,454.1623,-35.618336,28.883179,74.53293,3.597 1927,110.29762,203.80565,26.351547,55.350998,3.579 1927,474.25537,-18.730011,18.42746,41.42723,3.578 1927,325.13525,-13.447763,29.358093,63.434868,3.527 1927,68.00788,201.02815,29.894882,59.76216,3.509 1927,466.2057,-17.822044,18.717072,41.20946,3.502 1927,105.934555,213.50345,20.129868,36.783264,3.483 1927,134.04431,221.53177,32.906006,68.812836,3.482 1927,618.6109,491.26248,20.393677,40.51468,3.459 1927,613.1585,266.85806,37.412415,111.14923,3.445 1927,619.7082,-16.77292,16.482483,41.24808,3.445 1927,2.1314156,490.99625,19.853647,40.784332,3.412 1927,-7.436591,197.68858,36.756992,103.829636,3.408 1927,567.1064,256.22635,37.289795,99.2128,3.396 1927,528.595,-42.87521,46.24115,94.51662,3.393 1927,490.04544,-18.406876,18.570465,42.11468,3.367 1927,1.8998337,-40.945095,43.01794,100.29956,3.361 1927,76.65338,210.22054,29.681763,63.410538,3.344 1927,99.51798,218.06953,18.597664,35.06311,3.343 1927,597.9507,236.54953,36.261047,97.44272,3.336 1927,-10.211174,-5.8789062,40.622437,99.910965,3.312 1927,86.49393,209.32199,36.70176,83.25104,3.304 1927,477.24493,-17.6407,30.648254,62.113846,3.304 1927,544.5283,233.82112,48.343872,129.42296,3.257 1927,4.534892,217.04492,29.684513,68.96579,3.249 1927,126.70146,208.76117,27.35582,62.3302,3.223 1927,333.46442,-10.056316,55.93457,112.597015,3.222 1927,460.19373,-17.01247,32.14273,65.44467,3.22 1927,364.24933,-15.246109,57.11371,115.946884,3.204 1927,500.11975,224.82057,38.033752,95.35063,3.2 1927,531.6852,-136.47705,116.122375,271.8363,3.188 1927,347.98438,-13.415522,15.194366,34.302467,3.177 1927,306.9265,-17.011925,17.647217,42.017982,3.171 1927,411.90442,-15.70166,15.589294,34.921577,3.167 1927,557.77637,263.10162,28.953674,68.89987,3.163 1927,-5.442606,0.33290672,17.380463,41.965492,3.142 1927,123.82584,290.4915,16.802208,24.670105,3.116 1927,507.43958,-40.778206,58.804382,137.25932,3.103 1927,339.495,1.1586075,17.157959,34.596542,3.094 1927,598.028,462.85257,38.215393,97.43741,3.092 1927,21.21143,214.2677,30.521648,64.76074,3.083 1927,9.595203,-91.258575,73.95459,207.96117,3.074 1927,612.42285,332.6694,37.624634,112.695526,3.071 1927,482.0998,-17.423082,18.555084,40.821854,3.052 1927,458.4,-18.087233,18.052887,41.436203,3.052 1927,-9.764755,133.18082,39.848976,108.37468,3.027 1928,-5.87397,-17.249357,17.574818,41.44692,6.351 1928,-11.31332,-31.631968,29.763975,71.57719,6.239 1928,-6.1541657,488.7378,18.853863,42.992615,6.044 1928,135.18347,213.24873,29.419876,67.09914,5.938 1928,622.67725,-33.030006,26.282959,75.4526,5.651 1928,613.3109,455.1952,39.08777,106.88873,5.553 1928,-12.243149,477.78036,30.784492,62.927704,5.514 1928,627.1444,-17.682096,16.852173,46.806072,5.405 1928,490.6501,-181.07007,234.4198,427.42044,5.13 1928,-40.883842,358.18497,113.5091,279.1638,5.121 1928,626.52704,489.10333,21.070923,43.88202,5.104 1928,586.20905,-98.37271,74.30682,230.73901,5.06 1928,493.10376,231.86809,27.594849,57.792435,5.05 1928,-17.799551,-62.252193,56.100845,145.29634,4.98 1928,602.9859,-57.459534,53.512207,136.39333,4.915 1928,-72.48581,267.94226,200.52203,459.3285,4.862 1928,583.42944,409.4121,71.31122,178.97461,4.749 1928,536.6067,310.299,142.05841,341.2907,4.694 1928,574.2244,271.1302,29.605347,74.38818,4.509 1928,-70.912704,-189.75516,211.61942,455.5347,4.487 1928,2.5294173,152.72926,17.996588,37.46251,4.477 1928,-37.14219,-127.66402,117.14814,275.14743,4.356 1928,493.4674,226.268,238.08789,516.5254,4.355 1928,-0.6469774,307.6812,30.110332,70.976685,4.31 1928,118.77023,211.88493,28.846008,64.250565,4.279 1928,594.34076,-46.670406,44.627075,98.73485,4.267 1928,2.9652767,-15.02915,16.228632,37.557735,4.255 1928,-9.785246,314.96036,40.862396,100.03967,4.243 1928,-18.090694,432.36816,55.76256,144.49353,4.188 1928,81.64593,215.54848,20.991257,39.10205,4.147 1928,275.39685,346.53705,32.582123,57.227234,4.12 1928,-3.2577434,149.39061,15.489378,38.047684,4.07 1928,5.6208706,308.0329,64.80558,153.55731,4.028 1928,-3.865869,27.345444,29.35858,90.566864,4.012 1928,5.631318,229.1495,28.829872,74.170044,3.972 1928,-9.714084,374.8722,38.97283,100.05017,3.908 1928,617.6364,280.8675,19.106934,47.02649,3.896 1928,93.16563,205.38063,29.435165,56.264877,3.884 1928,89.6927,215.70909,21.841461,37.252304,3.819 1928,578.7794,268.8108,20.10254,43.756287,3.811 1928,395.4871,-28.519407,58.38504,120.247734,3.792 1928,-12.506971,295.55124,30.585989,64.81134,3.721 1928,516.52856,227.68723,38.18109,93.562195,3.651 1928,443.75238,-3.1291637,18.291351,35.772995,3.646 1928,599.0305,252.43219,34.63446,96.8631,3.641 1928,149.97003,212.26485,24.603973,41.831345,3.639 1928,509.95358,230.082,33.74533,64.46213,3.638 1928,582.4281,258.25854,36.157654,101.32156,3.631 1928,488.09558,340.56628,23.943298,41.3356,3.611 1928,-10.574304,-3.1900597,41.115818,97.24278,3.609 1928,571.48755,-5.971737,19.256287,41.99479,3.595 1928,290.2628,346.95428,33.27011,58.065247,3.581 1928,486.70062,-35.030716,27.840881,73.17747,3.562 1928,579.7086,-5.875284,18.555725,42.217316,3.559 1928,362.5604,-30.001638,57.935486,119.39757,3.545 1928,1.9552523,489.9801,19.956444,41.677307,3.47 1928,-6.2556133,307.02493,18.673586,40.73523,3.465 1928,619.6488,-17.512978,16.871521,43.276993,3.441 1928,474.9797,-17.42007,17.32837,40.90253,3.426 1928,516.4605,340.33804,32.954895,56.786682,3.385 1928,296.4225,358.33185,23.748993,36.164307,3.38 1928,497.37137,235.20631,34.834198,75.24782,3.371 1928,501.9372,-35.46443,27.570984,71.22981,3.355 1928,35.482246,344.02927,39.79161,85.19177,3.339 1928,1.9042253,-40.88414,42.87757,100.18073,3.332 1928,500.45953,332.7893,32.52289,55.712982,3.331 1928,482.90656,-18.047993,17.558289,41.80992,3.317 1928,495.79773,-42.495403,47.040955,93.76483,3.315 1928,614.0551,146.95801,34.84308,102.89664,3.313 1928,-9.478273,150.31816,39.027412,103.95207,3.308 1928,105.40592,215.21747,21.49292,36.720856,3.308 1928,76.24105,210.2858,30.929543,61.927612,3.304 1928,613.2046,208.4874,36.451477,106.02722,3.295 1928,10.566767,-16.173075,16.767445,38.360214,3.269 1928,618.47284,491.76688,20.671082,40.33127,3.268 1928,429.7085,-15.898899,29.57431,59.885555,3.249 1929,-5.678548,-17.64027,17.467705,42.310123,6.89 1929,-5.9580655,489.20065,18.623192,42.034576,6.198 1929,-11.099508,-31.946192,29.532206,71.777664,6.159 1929,125.87262,219.98087,30.579193,67.5578,6.104 1929,627.3086,-16.906277,16.720337,45.11119,5.75 1929,622.9087,-33.47399,26.289246,75.1246,5.592 1929,-11.810759,478.4884,29.805077,62.97888,5.514 1929,613.2769,454.6407,38.785583,106.562744,5.428 1929,490.5939,-181.28201,234.43484,427.7849,5.152 1929,586.1886,-98.46669,74.35742,231.33066,4.995 1929,-17.588028,-62.025646,56.047523,144.5575,4.918 1929,-72.484535,265.42194,200.53235,462.56317,4.88 1929,615.2246,281.57288,26.193604,76.6774,4.807 1929,603.17395,-57.656612,53.41223,135.51334,4.784 1929,-22.372122,400.30493,80.06228,177.30023,4.756 1929,536.4658,310.48285,142.07758,341.50616,4.685 1929,583.28235,409.4062,71.42322,179.01727,4.649 1929,626.21075,487.84955,21.468384,45.394104,4.646 1929,-71.218445,-190.33229,211.87202,456.2265,4.459 1929,493.21753,226.15375,238.3407,516.8088,4.374 1929,-36.95561,-126.958206,117.01451,274.05005,4.342 1929,594.0152,-46.0613,44.970764,96.4769,4.287 1929,281.2913,367.26987,22.442963,35.734314,4.232 1929,620.0855,-2.4314156,17.130737,36.9011,4.226 1929,297.22266,368.0641,22.31961,34.09207,4.033 1929,3.0738926,-15.396556,16.063034,38.413956,4.019 1929,-3.7135243,31.196014,29.721687,90.355515,3.844 1929,381.4554,-10.604591,56.45633,115.05564,3.779 1929,140.4653,219.81187,28.59018,66.15929,3.776 1929,348.2538,-11.978527,55.809967,117.53722,3.776 1929,276.795,358.74686,31.095337,57.32013,3.748 1929,486.43427,-35.865417,28.217407,76.69106,3.717 1929,499.56177,236.79309,30.573975,60.570312,3.682 1929,575.47614,244.4159,49.301758,151.52612,3.657 1929,2.2926288,491.142,19.260439,39.784637,3.579 1929,-10.875046,-2.7771568,41.00141,97.37807,3.518 1929,613.9944,146.90543,35.256775,102.539734,3.479 1929,112.68429,215.50299,22.726646,35.214874,3.464 1929,509.7011,237.33902,34.69171,61.135742,3.462 1929,598.7513,-17.214634,28.480835,63.240776,3.438 1929,-8.03418,291.37292,37.438316,106.47302,3.412 1929,598.2002,279.6263,28.38684,77.523865,3.411 1929,-7.5129833,199.40494,37.891533,103.31729,3.395 1929,117.175095,208.75659,29.301483,57.95514,3.382 1929,516.46234,236.68112,39.561768,94.72775,3.362 1929,502.01797,-35.603485,27.895538,75.10545,3.358 1929,572.31616,-7.7510986,18.106445,41.75782,3.341 1929,261.04327,343.40585,30.251556,56.699677,3.34 1929,-5.3729057,0.6892128,17.327866,42.620537,3.336 1929,488.8758,232.71857,28.798218,66.63672,3.318 1929,482.46753,-18.774927,18.518158,43.699562,3.275 1929,597.8345,153.40723,37.061707,93.89845,3.275 1929,83.280716,329.8975,38.567352,79.036285,3.268 1929,322.59924,-17.279207,17.839264,42.3723,3.259 1929,67.328,301.88345,34.245445,65.23459,3.232 1929,-8.69206,357.80536,37.637184,105.83551,3.231 1929,1.9589591,-40.95911,42.742714,100.61942,3.227 1929,281.48068,348.54544,20.524689,31.276001,3.21 1929,291.0928,356.39737,31.304901,56.380157,3.198 1929,411.91125,1.4749804,17.53012,29.984451,3.181 1929,412.8689,-17.960758,56.966064,121.33075,3.173 1929,272.72787,363.79507,23.417694,35.841522,3.162 1929,531.6486,-136.35522,116.15167,273.30942,3.161 1929,598.17255,186.12369,38.09308,101.76425,3.153 1929,-9.6017,150.9226,39.253586,106.607086,3.146 1929,10.44867,-15.857845,16.565552,38.69438,3.134 1929,607.0065,-33.608273,26.885193,71.957405,3.134 1929,101.29269,207.52725,30.547905,50.20749,3.123 1929,613.421,206.95541,35.803894,108.72421,3.114 1929,496.08875,348.0618,25.233643,42.21042,3.11 1929,1.7013907,-17.26847,50.45626,128.11774,3.101 1929,9.299376,-90.48726,73.8521,205.94072,3.098 1929,574.3262,-25.321365,52.984497,136.49066,3.097 1929,-5.091887,472.34543,16.059671,39.029755,3.096 1929,522.75183,-42.19738,58.142456,139.99437,3.096 1929,599.0727,234.9886,37.081604,94.89296,3.094 1929,145.02309,209.5936,21.135208,38.353317,3.078 1929,-8.396666,69.21536,38.1944,105.95407,3.066 1929,422.3496,-34.309963,27.868317,68.03172,3.06 1929,587.14545,-16.932692,16.373108,40.782112,3.055 1929,330.2306,-16.774542,17.874573,42.442074,3.038 1929,618.052,489.07678,21.408508,43.519653,3.028 1929,615.6118,-19.053146,25.83081,67.413895,3.028 1929,148.85129,271.10217,27.978699,61.525085,3.026 1930,-11.288235,-31.442875,29.794304,72.16932,6.021 1930,-5.903919,-17.604029,17.628895,42.318497,5.934 1930,-6.250414,488.64658,19.05003,42.941742,5.899 1930,627.33826,-17.050436,16.769165,46.116814,5.719 1930,275.23718,352.79425,32.993835,57.7955,5.595 1930,143.79417,237.48682,24.253036,46.670837,5.563 1930,-9.094371,463.38748,37.682716,94.47464,5.536 1930,613.18884,454.48297,39.061768,106.56055,5.5 1930,622.9198,-33.526558,26.45282,76.65016,5.364 1930,491.14325,-181.41568,234.19623,427.63586,5.156 1930,-39.26982,364.1576,110.737404,274.0271,5.107 1930,126.24101,221.0566,30.366135,59.977707,5.052 1930,586.181,-99.2104,74.37341,232.78648,4.939 1930,536.2468,310.65622,142.88153,340.77713,4.841 1930,603.1103,-57.30665,53.381653,136.4821,4.837 1930,-72.32285,266.76178,200.10175,461.4604,4.83 1930,-20.261772,-86.09619,71.70915,194.50172,4.805 1930,626.42053,487.9013,21.218079,44.963806,4.796 1930,583.22906,408.87988,71.6275,179.47534,4.754 1930,618.80334,288.1827,21.634155,59.68448,4.654 1930,493.22223,226.38348,238.31134,516.38446,4.554 1930,-70.857956,-190.30328,211.55606,456.43018,4.471 1930,-37.040546,-126.72409,117.13289,274.17633,4.405 1930,-18.378834,430.17877,55.849762,146.20453,4.362 1930,518.43854,233.44754,33.5672,62.244995,4.341 1930,260.08188,350.89706,32.28244,53.36148,4.34 1930,599.5274,268.21353,36.26007,108.962036,4.331 1930,335.99088,357.10352,24.889923,37.78235,4.314 1930,507.40353,338.43835,33.757294,62.15692,4.313 1930,72.85305,217.9685,20.77526,37.694763,4.307 1930,594.1063,-46.664185,44.95807,97.23036,4.124 1930,-10.588095,-19.693747,39.76226,100.64405,4.116 1930,437.66138,207.04282,40.7511,85.56711,4.094 1930,66.210144,211.14915,34.454544,62.346115,4.082 1930,272.78943,360.34717,24.507507,39.13144,4.078 1930,-4.9560623,213.60475,18.07305,45.31273,4.051 1930,380.45154,-13.709522,56.93521,116.1862,4.051 1930,-7.3278785,375.35428,37.23304,105.97183,3.984 1930,619.81116,-16.382381,16.44336,42.51862,3.959 1930,100.91254,311.8123,37.99823,80.585266,3.948 1930,-7.7519894,163.97757,37.986137,108.19925,3.946 1930,581.648,267.08673,39.720642,107.53906,3.905 1930,3.0946832,-15.663889,16.207531,38.605618,3.889 1930,498.613,236.60974,32.265533,62.375427,3.874 1930,152.14816,244.77483,22.039337,45.706436,3.871 1930,348.7906,-16.526035,56.053345,121.07597,3.869 1930,491.33395,337.41824,34.297638,61.27069,3.775 1930,483.43042,231.03966,40.556396,81.13258,3.764 1930,613.85657,269.04855,35.152283,111.20862,3.76 1930,279.42258,354.28162,23.082947,33.856964,3.671 1930,-3.297714,31.393898,29.036297,90.100235,3.662 1930,287.082,365.72995,25.155212,38.123596,3.617 1930,451.753,217.66798,40.34842,85.50319,3.601 1930,354.736,338.81317,33.141968,53.968628,3.572 1930,509.4434,-35.391605,28.482697,74.84471,3.562 1930,1.9656527,489.60327,20.020498,41.61267,3.548 1930,-10.023775,207.13382,28.924757,74.76514,3.543 1930,486.29422,-35.247616,28.273285,76.06316,3.533 1930,412.50183,-17.830624,57.319885,120.61902,3.52 1930,-5.035404,238.09055,17.463001,44.856323,3.456 1930,143.70583,223.01306,23.773102,39.986633,3.426 1930,161.26324,239.62877,20.21872,45.82701,3.425 1930,-15.40555,362.29022,74.60271,185.22046,3.424 1930,614.1486,147.72174,34.77643,103.09024,3.421 1930,1.9506001,-41.467762,42.88671,101.53651,3.334 1930,616.03906,-18.951155,26.102295,71.11351,3.309 1930,155.45114,226.87616,30.860596,71.2406,3.293 1930,-6.8420362,213.20796,36.305202,100.94896,3.274 1930,289.5654,354.78558,34.19919,57.553375,3.262 1930,1.4075065,-15.515831,51.150524,128.1609,3.259 1931,-11.385323,-31.730982,29.801706,72.089355,6.253 1931,-6.037435,-17.628603,17.761204,42.076595,5.912 1931,618.17883,281.51794,23.154846,60.854187,5.744 1931,143.94339,217.58044,34.03961,68.33835,5.554 1931,-6.4145894,489.34875,19.1229,42.505676,5.524 1931,627.33606,-17.424511,16.727783,45.97657,5.488 1931,613.26917,455.0533,38.906006,106.303375,5.415 1931,623.0398,-33.32108,25.9375,75.87275,5.345 1931,-12.325031,477.9487,30.396837,62.86093,5.291 1931,279.5,340.19882,25.522217,39.006073,5.28 1931,532.2499,-181.51157,149.47131,421.03983,5.144 1931,282.99222,333.3456,32.457184,58.99469,5.126 1931,602.8144,-57.36955,53.470703,135.82793,5.102 1931,-3.3559513,311.09964,29.854002,64.80008,5.086 1931,391.71646,248.99918,30.261047,76.82861,5.007 1931,626.31213,487.66852,21.316406,45.56311,4.948 1931,586.4053,-98.70998,74.06317,231.31978,4.905 1931,-20.321062,-85.53372,71.81212,194.01118,4.881 1931,-72.207344,266.32086,200.68942,462.26947,4.834 1931,536.2251,310.21127,142.86847,340.84598,4.814 1931,339.43304,329.01572,35.879883,50.05771,4.728 1931,-41.058994,362.97534,112.811676,276.11255,4.667 1931,583.11975,409.59702,71.74609,178.94888,4.629 1931,507.12665,337.1905,35.366882,59.549347,4.624 1931,-36.802876,-125.9439,117.08864,272.9725,4.496 1931,493.55353,226.23395,238.03162,516.29834,4.477 1931,594.1032,-47.07704,44.59973,97.74928,4.415 1931,-70.762344,-190.42068,211.33067,456.51965,4.403 1931,508.75168,235.62878,35.236603,61.865723,4.216 1931,-10.70747,-18.577183,39.8678,98.86099,4.105 1931,117.17736,300.13068,36.191765,82.22656,4.075 1931,-18.527798,433.06934,56.10692,143.51099,4.059 1931,575.71936,242.37146,49.75067,155.72455,4.05 1931,295.3619,340.79114,25.494598,39.520203,4.031 1931,401.51593,-11.8320465,43.665344,77.83856,4.024 1931,620.0709,-16.831282,16.168945,42.24841,3.976 1931,2.7482605,-15.905483,16.59243,38.4543,3.923 1931,126.01486,213.40276,33.112167,66.84111,3.919 1931,498.91864,230.19217,31.88507,59.564026,3.901 1931,378.46545,-27.931923,59.596527,117.721855,3.89 1931,281.1418,334.03207,20.874207,29.608673,3.89 1931,328.03326,339.5245,25.183014,36.44336,3.886 1931,560.0211,238.72983,51.106445,128.88959,3.797 1931,-6.673307,318.9264,20.091932,43.582428,3.77 1931,160.73334,217.15489,34.87628,63.3835,3.699 1931,486.53802,-35.02046,28.598755,73.83289,3.681 1931,483.3241,222.08484,40.18445,80.006836,3.643 1931,620.04584,179.55385,16.013428,41.529602,3.589 1931,298.88953,336.08792,32.855133,54.888947,3.581 1931,542.30396,228.15889,51.212097,135.46342,3.573 1931,411.4653,-14.952957,57.21396,115.47318,3.514 1931,600.24475,261.10858,35.46765,122.97116,3.507 1931,435.88943,211.03232,39.696655,98.18515,3.498 1931,614.3258,146.46654,34.333862,103.79097,3.485 1931,1.8429518,-39.59511,43.311672,99.42939,3.481 1931,515.1097,236.56589,41.151184,93.98053,3.477 1931,320.65863,334.78098,22.621674,33.507843,3.469 1931,-5.181968,263.85248,17.027071,41.401245,3.463 1931,572.1069,306.8145,54.03546,153.94144,3.463 1931,496.34628,-43.121777,46.39322,94.45332,3.457 1931,482.72174,-18.913887,18.17096,42.28517,3.451 1931,346.75983,-27.589813,60.478333,120.40318,3.432 1931,427.7793,-4.181035,19.328491,36.398296,3.431 1931,451.27466,-19.080332,33.338654,65.31931,3.417 1931,142.32425,205.00111,51.944473,108.80144,3.413 1931,304.46863,335.85886,22.041931,34.9718,3.395 1931,25.811129,216.31323,58.532127,135.33191,3.387 1931,-9.282788,231.11746,38.969185,101.28003,3.387 1931,588.8006,232.63213,58.45398,212.08437,3.379 1931,421.96048,-34.238003,28.483307,69.22499,3.37 1931,354.41666,329.20087,34.240143,63.4794,3.356 1931,287.93353,338.64542,22.395782,32.83261,3.351 1931,-8.481704,167.02077,39.036045,103.42888,3.346 1932,-11.420839,-31.966145,29.995306,71.60858,6.255 1932,380.99338,255.48415,28.549225,70.23189,6.243 1932,-6.0587206,490.10663,18.721722,41.369263,5.792 1932,-5.98706,-17.545479,17.653576,41.8285,5.757 1932,627.2257,-17.487232,16.990967,46.498466,5.75 1932,613.3594,454.93323,38.791626,105.70764,5.549 1932,-11.760577,478.99622,29.894783,62.117676,5.42 1932,610.351,-47.41392,42.24817,99.54001,5.276 1932,26.520367,213.413,35.23424,59.67737,5.199 1932,532.4345,-181.82683,149.37793,422.36224,5.139 1932,-17.84138,-61.763893,56.451332,143.86308,5.04 1932,615.82794,280.36118,25.06842,84.27988,4.973 1932,586.2656,-98.7069,74.15497,231.66946,4.962 1932,536.2436,309.6902,143.36816,341.06042,4.922 1932,-22.121891,400.799,79.694984,176.64728,4.848 1932,-72.38978,266.00186,199.99796,461.73544,4.829 1932,626.1376,487.03317,21.63147,45.93631,4.822 1932,581.5825,265.00085,39.143494,107.1087,4.665 1932,583.1196,409.6176,71.771484,179.13495,4.627 1932,494.01587,227.95691,237.4751,514.3789,4.547 1932,275.21085,312.41962,31.873749,60.51303,4.507 1932,498.99023,233.42642,31.17035,57.973267,4.483 1932,-4.1948314,367.79395,15.929554,35.69107,4.456 1932,-37.037197,-125.51294,116.98956,272.7116,4.398 1932,-70.370964,-189.50543,210.95541,456.21616,4.388 1932,-6.7817106,222.40662,19.41695,42.241272,4.384 1932,131.25734,279.6154,33.071,87.504425,4.237 1932,514.8313,229.33688,39.697998,82.72873,4.185 1932,599.77014,264.53094,35.49243,111.8353,4.171 1932,79.633934,220.09213,32.98062,63.012817,4.148 1932,507.15198,341.91937,34.308655,57.628357,4.112 1932,387.93134,242.21587,30.22174,70.3965,4.104 1932,40.46507,273.93265,32.71139,67.88547,4.096 1932,619.44696,-4.428437,18.032593,40.521442,4.06 1932,443.7896,220.69702,29.996399,68.685,3.982 1932,394.7441,-14.365166,59.23282,113.34193,3.931 1932,566.2307,254.98059,40.230713,102.79242,3.806 1932,398.80704,241.81413,23.932678,49.21373,3.779 1932,-1.0201395,33.076096,34.578823,85.75888,3.752 1932,332.1624,306.0139,31.170471,53.219757,3.751 1932,548.5546,241.3935,40.50122,96.35254,3.749 1932,-10.830393,-3.1987305,41.09836,97.336876,3.733 1932,486.3628,-35.441246,28.301697,75.65297,3.64 1932,3.0707269,-15.93186,16.282885,38.441578,3.58 1932,482.5279,-18.828524,18.421661,42.729557,3.575 1932,613.229,207.80142,36.058594,108.98505,3.562 1932,484.59766,230.23546,38.988037,81.03609,3.525 1932,-12.482575,219.12006,29.983776,66.329254,3.518 1932,364.63434,285.03574,30.238586,66.46503,3.495 1932,598.2975,-21.37713,39.92389,91.369255,3.454 1932,614.0641,147.47598,34.72992,102.80145,3.446 1932,-9.799996,132.45415,39.460487,108.7896,3.427 1932,496.97263,342.04428,24.025665,43.32196,3.423 1932,-3.8349974,381.489,15.382074,34.34082,3.39 1932,538.44556,277.39948,60.01538,128.95032,3.381 1932,573.0869,312.1264,54.9209,177.6222,3.374 1932,2.1351247,491.56848,19.434404,39.845093,3.372 1932,524.76355,214.21051,50.78534,120.0307,3.366 1932,1.9522572,-40.304676,42.749786,99.68448,3.362 1932,515.19836,349.00543,36.170593,66.30673,3.317 1932,1.1568689,-16.917576,51.3842,126.70592,3.312 1932,598.712,218.30545,37.67511,99.58292,3.302 1932,589.29675,233.2013,58.2453,210.62598,3.288 1933,373.30353,228.93396,39.120544,91.349304,96.502 1933,32.782246,249.8848,24.504341,38.68347,6.483 1933,-11.469852,-32.369118,29.800884,71.90047,6.394 1933,-12.370031,477.1036,30.632153,63.779755,5.901 1933,-6.2283792,489.15427,18.823269,42.770233,5.823 1933,-6.1481667,-18.268595,18.046217,42.844837,5.698 1933,615.8555,281.77466,23.549255,76.96518,5.657 1933,610.6096,-48.392128,42.012573,100.94467,5.5 1933,627.3808,-17.450287,16.745483,46.159534,5.488 1933,40.083473,246.25311,25.215607,37.09442,5.351 1933,612.9635,455.78888,39.096497,105.13031,5.336 1933,395.76257,233.63641,27.08963,57.58783,5.141 1933,-73.058945,265.60992,201.04169,463.01447,5.086 1933,532.6539,-182.18251,148.97461,423.05203,5.056 1933,-17.692768,-61.71708,56.41584,143.90706,4.948 1933,586.2854,-98.69478,74.19037,231.48666,4.923 1933,536.39197,310.57217,143.35297,340.57126,4.838 1933,21.38947,235.88606,31.30608,61.455704,4.831 1933,-22.017603,401.5365,79.88004,175.67377,4.815 1933,583.13495,410.2576,71.783325,178.39438,4.643 1933,51.2601,238.27924,32.80052,52.449524,4.58 1933,56.2511,252.90941,22.93032,33.381516,4.565 1933,60.391205,209.3128,53.86296,112.3147,4.553 1933,390.99442,225.24097,24.029419,52.999207,4.542 1933,364.384,221.85782,34.73056,81.6474,4.536 1933,494.42947,229.33472,237.14926,512.44403,4.503 1933,626.4236,488.27057,21.228088,45.12195,4.454 1933,400.01282,228.35042,40.178772,95.8607,4.407 1933,-70.417564,-188.2932,210.70233,454.4386,4.374 1933,-37.340508,-125.04372,117.13235,272.8586,4.266 1933,-3.9022768,29.424423,29.39095,89.6075,4.139 1933,380.0154,221.9537,29.304901,64.428314,4.136 1933,613.4456,208.11899,35.78949,105.81839,4.105 1933,310.30594,289.94504,29.898682,54.595,4.072 1933,28.387669,219.1785,54.18762,110.152985,4.063 1933,620.23596,-3.665391,17.377075,39.281506,4.051 1933,339.87613,238.14536,40.01297,83.81726,4.051 1933,83.716415,217.35693,41.162437,77.510376,4.043 1933,49.207493,238.59076,23.10735,35.110474,4.042 1933,-4.3541417,247.4677,17.643904,44.929184,4.031 1933,498.78726,223.94397,30.960297,67.02185,4.012 1933,-5.4656405,226.3712,17.697819,43.305313,3.944 1933,599.2821,268.54657,35.73474,110.12186,3.915 1933,-10.908786,-2.4760666,41.259384,96.51585,3.858 1933,95.040665,208.14012,51.26999,120.14488,3.833 1933,57.382378,231.75252,22.719482,33.268967,3.761 1933,514.83923,228.91489,40.296387,84.75986,3.757 1933,598.6437,216.01613,37.460815,98.650925,3.736 1933,-0.23860216,227.36331,25.065727,71.18298,3.736 1933,614.0165,146.63918,35.118164,103.63867,3.729 1933,582.26904,269.25778,39.028442,102.54443,3.724 1933,43.021523,199.47646,55.860733,104.67311,3.72 1933,380.41895,261.83228,29.89325,71.21051,3.656 1934,373.82065,235.07632,36.875885,83.858826,94.892 1934,-0.2577591,361.33075,28.615454,101.667786,7.478 1934,626.77484,487.4543,20.115112,46.316437,7.359 1934,-5.8412004,488.13657,18.220432,42.50186,6.584 1934,-11.275664,-32.552864,29.64095,71.311485,6.32 1934,-11.7055,476.96115,29.446009,62.9946,6.045 1934,188.17737,224.65144,31.77069,63.923233,5.912 1934,-5.8945236,-17.999294,17.70067,41.916428,5.781 1934,-9.636404,458.51904,38.93595,97.531006,5.701 1934,612.7642,457.70477,38.84088,103.31622,5.545 1934,610.81354,-48.231804,41.820007,101.274895,5.508 1934,627.48425,-17.35257,16.601074,46.370583,5.389 1934,401.44107,236.62518,39.704254,95.84589,5.248 1934,-72.365204,267.17783,200.68935,460.33292,5.221 1934,8.434819,255.5734,25.989529,58.18631,5.215 1934,515.1965,229.26625,40.895447,83.85472,5.186 1934,532.5068,-182.30342,149.12805,423.30334,5.105 1934,387.54114,233.55115,26.899841,62.17688,5.089 1934,507.24796,241.76697,32.88907,59.444458,5.067 1934,276.40247,267.98367,30.766968,47.990326,5.028 1934,-18.49041,423.69522,55.78154,152.74667,5.018 1934,-17.51661,-61.545033,56.30302,144.29877,5.005 1934,-37.47054,365.68494,108.371475,272.03387,4.957 1934,586.1341,-98.69212,74.32214,232.2112,4.95 1934,-10.756396,343.82126,47.4159,143.5209,4.842 1934,171.75856,231.5299,32.36403,84.145996,4.775 1934,536.54974,310.7179,143.45526,340.3111,4.771 1934,583.1407,411.35837,71.88043,177.68082,4.737 1934,304.52936,274.96762,21.726288,39.027588,4.664 1934,288.44568,275.08826,22.631927,38.741882,4.629 1934,339.27432,249.63943,34.06668,67.54056,4.62 1934,-5.814391,360.89136,18.422514,47.358,4.557 1934,366.3098,223.80255,33.49652,79.794556,4.547 1934,253.41423,268.059,29.590714,57.65979,4.49 1934,494.46866,230.00394,236.74045,512.14075,4.484 1934,-5.357214,259.62372,18.0055,38.276917,4.418 1934,-37.07189,-125.90024,117.09975,273.2823,4.31 1934,121.028984,241.7178,21.721474,30.942688,4.291 1934,-70.59256,-188.46472,210.94772,455.0605,4.263 1934,397.79874,230.35614,25.741241,50.07788,4.236 1934,484.02115,228.78479,40.563446,85.99487,4.215 1934,495.90045,209.17996,35.11737,81.63913,4.167 1934,-9.474894,355.36465,29.797194,81.582794,4.147 1934,148.64725,215.89064,40.44217,78.14421,4.085 1934,99.480194,225.43733,41.039047,79.02983,4.067 1934,167.9921,238.81876,26.136017,46.36902,3.973 1934,618.6419,490.08688,20.025818,42.39572,3.968 1934,132.19789,215.16312,39.814194,77.3609,3.953 1934,91.51489,223.49748,32.590836,60.72612,3.912 1934,194.63365,258.6797,30.29332,75.98547,3.886 1934,4.36483,267.36554,19.486898,37.02304,3.885 1934,12.278845,229.63437,52.88862,111.70386,3.883 1934,-10.503135,-3.5328102,40.75424,98.25694,3.87 1934,231.73157,259.32584,29.331635,69.92682,3.839 1935,375.35693,231.66286,33.23639,88.33226,89.073 1935,4.4029007,229.31004,32.587208,74.90358,7.357 1935,357.73636,235.15434,33.615997,74.30089,6.844 1935,85.15908,236.20096,32.010826,64.20148,5.911 1935,-6.071279,487.7752,18.59946,43.648804,5.788 1935,626.4106,487.98654,21.161194,45.311005,5.767 1935,-11.2008,-32.856457,29.448854,73.13838,5.702 1935,613.0187,455.10373,39.688232,106.59311,5.549 1935,-5.9653034,-18.57154,17.946796,43.60595,5.479 1935,-12.287608,476.7226,30.442986,63.223694,5.461 1935,627.35864,-17.098236,16.857605,44.8688,5.348 1935,532.75214,-182.28767,148.75067,424.22095,5.333 1935,610.81964,-48.39093,41.96649,100.21593,5.202 1935,-72.87071,264.66846,201.2916,464.77258,5.162 1935,116.473755,224.09323,39.256897,80.03128,5.067 1935,347.2718,232.4107,32.170105,68.36487,5.049 1935,386.5939,244.98898,30.90683,79.459595,4.985 1935,536.30914,309.8042,143.78644,341.2351,4.967 1935,-17.277473,-62.420288,56.090397,144.39061,4.966 1935,533.6367,239.61891,34.949585,63.198837,4.947 1935,180.7766,222.37454,31.513214,54.736267,4.904 1935,-22.329006,400.04434,79.939804,177.21158,4.881 1935,500.06152,231.44539,40.51422,82.27855,4.804 1935,36.556908,220.37627,38.704063,81.64412,4.787 1935,403.3098,236.246,37.490967,97.80679,4.78 1935,586.35223,-99.02453,74.13458,233.15012,4.71 1935,583.0513,410.04843,71.798035,178.30618,4.677 1935,15.890231,231.94418,34.546707,69.675415,4.605 1935,12.046888,220.80075,54.97441,134.14749,4.576 1935,494.3765,229.1123,236.79965,512.1786,4.538 1935,68.48342,222.99945,41.474274,80.12793,4.33 1935,613.5009,207.26102,35.643738,107.56381,4.32 1935,-37.268173,-124.90871,117.05318,274.0427,4.318 1935,599.1538,211.4483,36.948914,102.48645,4.311 1935,-70.08111,-188.6784,210.54987,454.92807,4.279 1935,615.021,280.14713,25.355835,67.245544,4.255 1935,99.94117,229.85785,42.108833,87.35022,4.196 1935,131.09206,227.90326,39.89415,86.102295,4.154 1935,-9.854903,234.33244,29.842888,69.04335,4.111 1935,516.0679,232.39934,40.72986,77.47786,4.085 1935,321.86172,253.17575,31.475739,66.19086,4.061 1935,613.99084,148.80414,34.86261,100.06465,4.046 1935,539.84064,-16.801498,31.309753,65.98072,4.009 1935,-5.0950737,181.70282,17.775627,44.503662,3.963 1935,-12.661621,209.4895,46.94422,149.146,3.92 1935,41.71207,237.92313,57.14831,129.93524,3.917 1935,187.5959,227.71628,33.719025,70.01129,3.895 1935,1.0400355,239.16005,24.249725,53.673782,3.892 1935,618.358,489.64288,20.745422,42.556274,3.838 1935,-10.0434675,-6.0401382,40.30276,99.7387,3.83 1935,174.21715,231.31299,32.621964,66.9422,3.816 1935,52.28422,220.24934,39.41437,81.140335,3.812 1935,598.0946,270.20474,37.88336,100.75403,3.796 1935,77.69943,208.76906,53.124313,112.08067,3.79 1936,394.0259,213.1102,42.861664,101.38403,91.034 1936,375.96927,214.91885,41.613464,100.98132,21.034 1936,136.97287,229.04552,31.005676,67.44316,7.154 1936,359.27502,213.31699,39.33087,85.30313,6.538 1936,99.621544,227.35786,39.865746,96.119156,6.358 1936,-11.509535,-32.301613,29.756016,72.48771,6.207 1936,-6.1927705,488.43494,18.968956,43.260742,6.162 1936,-12.2784815,476.8695,30.929287,63.533386,5.782 1936,388.69662,206.69019,35.033844,79.17474,5.701 1936,626.6461,488.1854,20.753235,44.816315,5.652 1936,-6.0367084,-18.204393,17.706692,42.505684,5.585 1936,613.2957,453.94406,38.9729,108.053925,5.333 1936,407.58063,207.25766,48.910156,124.11841,5.296 1936,532.4029,-182.82526,149.33228,424.5969,5.108 1936,145.1892,279.2544,31.09401,82.25647,5.069 1936,610.48193,-47.815773,42.22345,100.32507,5.065 1936,627.3309,-17.546785,16.934204,46.581158,5.064 1936,536.2003,310.016,144.22882,341.43408,5.047 1936,-72.68324,265.22415,200.55087,463.46494,5.041 1936,586.08344,-98.556694,74.09534,232.32281,4.96 1936,-22.283287,401.20166,79.69504,176.0224,4.906 1936,76.306595,225.73357,31.210175,71.18251,4.893 1936,-17.349285,-61.97201,56.18634,144.24287,4.857 1936,422.63675,216.85767,25.752686,54.950073,4.791 1936,583.11414,410.6276,71.64264,177.23105,4.778 1936,404.7691,253.16241,29.718384,73.065674,4.753 1936,436.45837,220.19925,38.24228,102.04846,4.6 1936,115.31101,230.99127,31.08953,66.72662,4.556 1936,494.05365,228.76709,237.92383,511.60413,4.541 1936,211.6259,219.58105,31.802444,67.608154,4.489 1936,537.55707,228.19171,31.482727,70.2561,4.456 1936,-37.190033,-124.85672,116.9443,272.48767,4.432 1936,-69.88231,-187.63333,210.09135,453.68878,4.257 1936,580.61,227.55228,38.63861,94.70334,4.217 1936,586.77875,-15.579073,33.089783,62.1577,4.201 1936,546.79144,238.80835,40.100952,92.92853,4.19 1936,114.80911,236.33575,41.038376,100.35034,4.077 1936,131.92735,215.6413,46.239548,116.39557,3.992 1936,412.56897,217.55986,25.854767,60.698868,3.987 1936,148.38339,220.87746,34.87796,85.073105,3.982 1936,538.9414,-16.654305,17.609253,38.6015,3.974 1936,129.72299,225.53188,26.068665,51.980515,3.922 1936,533.1586,-19.000101,30.042053,62.277473,3.901 1936,237.22287,241.58,28.733673,69.23186,3.9 1936,140.55867,248.97742,29.528702,79.815796,3.856 1936,-10.050571,-3.92416,40.432106,96.96608,3.855 1936,223.46964,215.98296,21.687088,40.060074,3.823 1936,64.71061,225.29254,24.111572,45.890564,3.807 1936,165.7557,216.50354,36.773438,80.9953,3.792 1936,83.838196,237.91249,41.548836,99.830734,3.78 1936,618.15405,489.62885,21.294128,42.676697,3.77 1936,266.59894,256.51624,18.791595,35.065796,3.765 1936,385.03812,211.39432,26.228699,55.991455,3.761 1937,425.812,219.33076,45.819183,107.22084,86.258 1937,133.95648,228.29588,35.575775,69.65614,6.739 1937,123.45387,220.75311,34.176483,64.44266,6.576 1937,-11.325748,-32.21872,29.41761,71.85369,6.214 1937,145.11896,235.92236,35.032562,80.23053,6.052 1937,-6.1981277,488.3506,18.594656,42.952454,6.037 1937,-6.116116,-18.389694,18.071688,43.300907,5.922 1937,165.61081,235.60641,29.740082,64.884094,5.863 1937,233.60196,216.3071,19.521225,36.69287,5.605 1937,-12.6502075,477.2618,31.238749,63.261017,5.571 1937,237.30055,229.35762,27.2397,70.02754,5.529 1937,413.26562,230.17416,31.549103,90.57312,5.523 1937,623.18384,-33.710373,26.07605,75.84321,5.382 1937,627.4523,-17.775206,16.688477,46.125458,5.364 1937,459.27625,226.73175,33.968018,75.1557,5.227 1937,-17.467464,-62.007645,56.44695,143.54976,5.179 1937,-72.70622,265.98807,201.0026,462.4747,5.129 1937,536.6258,308.68213,143.53424,343.1184,5.101 1937,613.09686,454.6657,39.133484,107.095215,5.09 1937,532.573,-183.64497,149.58209,424.68692,5.025 1937,467.09842,221.71027,40.031464,100.356445,4.915 1937,586.2437,-99.59524,74.364136,232.70529,4.907 1937,159.63069,231.52766,24.258438,49.480667,4.833 1937,-22.057545,401.5035,79.96875,175.8818,4.831 1937,297.02765,255.5704,20.730896,36.668793,4.823 1937,181.82495,219.64969,36.100525,83.1637,4.813 1937,582.8958,410.32703,71.831665,178.06238,4.779 1937,494.16382,227.49536,237.44696,513.2779,4.709 1937,262.93906,243.79959,26.72696,59.11725,4.692 1937,290.1754,255.46152,19.457428,35.593384,4.672 1937,602.9763,-57.580425,53.71936,136.25938,4.658 1937,283.37018,255.36414,18.53125,35.245544,4.571 1937,626.62604,488.31073,20.764404,44.67334,4.57 1937,324.4057,252.34535,30.605133,70.8145,4.557 1937,594.03107,-46.62758,44.960022,97.790695,4.447 1937,437.76245,213.88055,53.7706,129.16528,4.416 1937,-37.346935,-124.14093,117.164185,272.14417,4.361 1937,229.62515,218.38568,28.76706,65.98956,4.325 1937,422.29498,224.90433,33.287476,76.946625,4.292 1937,-70.48244,-188.65385,210.881,454.92078,4.281 1937,176.26813,239.88457,22.724197,46.2968,4.25 1937,-10.2059765,-4.6483574,40.654617,97.66872,4.212 1937,-4.77775,211.27242,16.765726,40.733475,4.195 1937,119.17451,221.87315,25.78196,40.516434,4.158 1937,304.7391,252.57558,21.841217,39.002396,4.127 1937,95.37218,201.52422,51.399597,127.267075,4.116 1937,615.6222,337.99496,26.276611,82.61615,3.967 1937,227.69273,212.85136,18.37941,32.797012,3.883 1937,83.65282,217.09427,39.935608,88.11517,3.854 1937,402.11035,225.0758,54.61029,134.20001,3.836 1937,387.0677,235.41821,41.70868,98.4895,3.833 1937,275.20578,253.38,18.269653,38.371765,3.832 1937,-4.29235,28.480251,30.474972,78.97595,3.826 1937,2.7161777,-16.800077,16.879099,39.7502,3.826 1937,80.22543,226.3098,22.371292,36.501236,3.823 1937,454.11578,216.02707,26.677338,59.08658,3.814 1938,479.13943,221.2669,59.22946,124.09552,98.325 1938,502.75702,220.28087,50.698547,110.51979,7.225 1938,-11.450515,-32.84035,29.820396,72.994064,6.265 1938,246.45886,223.97711,26.893127,74.82489,6.176 1938,627.1483,-18.011312,17.131836,46.404873,5.959 1938,-6.127865,488.34015,18.66056,42.700256,5.87 1938,-12.385387,476.45416,30.989532,64.236206,5.797 1938,166.5052,210.38626,33.43254,68.906494,5.628 1938,613.1599,453.6858,39.751404,107.61047,5.621 1938,622.6744,-33.65578,26.54657,75.42534,5.614 1938,535.32056,310.37943,144.64154,341.03146,5.47 1938,-6.157612,-18.339989,17.97119,43.34425,5.386 1938,626.5159,488.231,21.082703,44.433197,5.374 1938,582.86755,411.08563,72.410645,176.34406,5.333 1938,-72.46094,265.97232,201.317,462.66855,5.282 1938,451.86346,213.71027,44.715546,87.19556,5.268 1938,468.0458,219.52214,49.16678,95.995804,5.148 1938,532.7134,-182.45937,149.61365,426.13187,5.108 1938,-17.326857,-62.800495,56.31627,145.12415,5.034 1938,296.51288,260.74857,22.552551,39.44583,5.034 1938,275.29196,245.83238,18.489197,38.5851,4.979 1938,-21.902489,402.0504,79.8279,175.63855,4.954 1938,290.72055,252.9451,20.570007,39.04883,4.946 1938,519.51776,211.01743,57.103577,128.62863,4.897 1938,586.3525,-99.43421,73.78247,232.10477,4.84 1938,494.80942,231.39801,236.56314,509.5852,4.837 1938,603.06805,-57.04442,53.369263,136.03159,4.665 1938,403.49948,254.84917,21.044006,49.6837,4.465 1938,436.414,-31.187916,29.503906,75.98013,4.438 1938,429.40158,215.82896,55.5455,123.34651,4.429 1938,142.76077,216.26317,24.864365,36.99724,4.427 1938,249.02234,221.33252,19.300385,41.314148,4.415 1938,180.54024,222.05035,31.683975,70.42944,4.386 1938,-37.13692,-125.271324,117.08499,273.44598,4.379 1938,270.29626,239.99919,27.74942,57.18416,4.345 1938,-70.67465,-188.42627,210.98071,454.59534,4.186 1938,422.62817,-32.723637,28.734314,75.39521,4.152 1938,593.96674,-44.98528,45.099182,96.51319,4.132 1938,0.15995026,264.2901,23.17553,51.368713,4.097 1938,440.93445,-18.3017,20.008087,45.10646,4.06 1938,131.6224,215.73174,31.856354,53.337753,4.052 1938,449.15042,-17.19188,19.569427,43.146408,3.954 1938,459.5204,-17.47456,32.617126,64.84217,3.949 1938,49.15844,249.19424,32.472572,63.31595,3.941 1938,488.23578,261.291,36.921753,89.90622,3.933 1938,280.9212,246.35107,27.43396,55.11908,3.902 1938,243.90326,220.69432,17.929962,32.29869,3.886 1938,2.2437298,489.64136,19.391207,40.745117,3.82 1938,457.7495,-19.273638,18.89325,43.771187,3.81 1938,283.72217,247.99232,18.589783,35.479507,3.803 1938,619.45593,-17.637781,17.03125,42.276043,3.799 1938,-9.974888,-5.818516,40.725975,99.99611,3.774 1938,116.43355,217.42558,30.045883,54.193375,3.767 1938,147.00366,210.92775,33.057297,61.523087,3.743 1939,-5.9051723,488.68295,18.449589,42.173187,6.748 1939,-12.05309,478.1075,30.50055,62.54312,6.377 1939,616.4768,268.40756,24.424011,61.24234,6.247 1939,627.21893,-16.898632,16.826782,45.60443,5.989 1939,77.43895,251.28264,28.98027,60.459976,5.856 1939,-12.608583,-39.84295,41.41853,100.88252,5.727 1939,-5.9206095,-18.383759,17.76532,43.183712,5.725 1939,612.95734,454.04834,39.83795,108.0282,5.401 1939,250.4589,212.45198,19.424103,32.500183,5.34 1939,622.71124,-33.362778,26.572754,76.509605,5.258 1939,-72.38543,266.04773,200.5433,462.6018,5.232 1939,586.0083,-97.43376,74.24469,229.71721,5.158 1939,535.7052,310.0845,144.09344,340.5128,5.13 1939,-17.657331,436.8416,55.32894,140.73999,5.017 1939,532.4114,-181.98839,149.73828,423.63983,5.005 1939,582.6681,409.73636,72.06647,178.8234,4.956 1939,493.24692,228.37646,237.62173,514.5526,4.891 1939,602.7965,-55.85765,53.41809,136.26767,4.771 1939,-20.201698,-85.62528,71.52979,193.68578,4.748 1939,329.70587,230.9463,31.543518,60.37706,4.704 1939,-40.59234,366.83987,111.12354,275.2336,4.665 1939,534.6437,288.38763,60.1214,138.41925,4.537 1939,613.3877,241.52429,27.153137,69.499084,4.507 1939,599.08356,242.6803,36.68524,105.10852,4.476 1939,133.74101,252.58844,31.02356,64.459595,4.394 1939,626.54895,488.05927,20.917786,45.570557,4.386 1939,-37.04372,-125.605446,116.80853,272.96906,4.376 1939,1.2678635,235.60075,28.486187,66.910355,4.331 1939,485.80133,-33.14037,28.405212,73.598595,4.331 1939,573.64484,249.37843,54.481384,140.55956,4.315 1939,-70.32004,-187.2125,210.8,453.39877,4.194 1939,86.70938,235.19386,37.11821,87.24135,4.167 1939,476.94034,-15.045706,30.953613,65.097755,4.126 1939,-4.65053,218.75305,17.918892,38.81784,4.122 1939,298.0733,243.51607,19.489563,39.532944,4.096 1939,101.50425,230.07646,36.080498,81.95924,4.085 1939,562.0773,314.8515,42.359436,108.83484,4.081 1939,612.2827,250.72011,35.863342,111.984695,4.076 1939,612.39703,329.004,38.67749,115.37274,4.066 1939,590.2396,274.1193,51.59082,159.69263,3.992 1939,569.46576,323.01675,59.112976,172.93088,3.979 1939,563.8549,258.2765,43.06189,98.10593,3.975 1939,497.5183,329.48376,35.154114,73.86853,3.965 1939,468.42438,306.57968,30.43866,67.82358,3.942 1939,253.16519,214.26347,28.72638,70.83626,3.929 1939,516.9117,311.95502,30.744385,66.663574,3.881 1939,485.0479,318.86563,34.601868,70.96896,3.873 1939,2.185876,489.88235,19.814903,40.51474,3.862 1939,493.3022,-9.666203,30.964539,65.789856,3.811 1939,243.41498,209.8794,19.131256,33.698242,3.803 1939,505.23575,293.93457,61.70468,129.36514,3.803 1939,593.901,-44.08502,45.435913,96.32086,3.778 1939,555.5248,-2.811821,18.421814,35.550453,3.776 1939,517.54297,-32.902725,29.120117,71.94721,3.733 1939,497.2087,-17.113682,18.981964,41.741463,3.727 1939,541.1585,268.62958,93.66266,244.59174,3.727 1939,489.35886,-17.742474,19.085815,42.61642,3.715 1939,301.83902,237.8469,27.289642,55.45636,3.693 1939,58.727844,250.24931,34.254883,59.18889,3.669 1939,283.9462,241.04015,18.079468,35.235397,3.665 1939,246.03946,211.52765,27.668793,56.501587,3.661 1939,583.1648,242.15141,39.057434,88.8741,3.64 1939,446.49402,218.85553,52.043213,127.15045,3.635 1939,482.0055,-16.589457,18.591888,41.828312,3.627 1939,613.06995,195.91985,35.25537,106.5464,3.604 1939,279.66977,237.59949,26.880768,55.852478,3.59 1939,132.54378,214.22194,38.69272,86.05452,3.571 1939,306.47272,263.85178,19.785034,38.549347,3.56 1939,530.9118,323.68503,42.954712,114.58551,3.543 1939,2.9279404,-16.142607,16.679665,39.37833,3.539 1939,619.7607,-16.05194,16.481262,42.100945,3.525 1939,551.39233,267.0429,61.585205,139.54962,3.506 1939,546.46185,259.26315,43.848083,97.47052,3.503 1939,462.25635,231.40543,52.045227,130.94232,3.481 1940,165.89285,234.54121,28.378983,62.284042,6.543 1940,-12.296189,476.03754,31.200802,64.576965,6.164 1940,-6.0959234,487.89413,18.603195,43.573578,6.147 1940,-11.492124,-32.40928,29.66563,72.112564,6.118 1940,19.565868,229.93239,31.144028,68.571365,6.014 1940,-5.960163,-18.28827,17.826124,42.67203,6.011 1940,4.2090025,228.02954,30.359768,75.356445,5.945 1940,613.381,454.71274,38.994568,106.656586,5.512 1940,-72.718475,265.7422,201.06851,463.20398,5.322 1940,-17.423351,-62.188698,55.919918,144.52307,5.059 1940,586.1001,-98.8685,74.5647,231.88449,5.026 1940,627.3962,-17.641737,16.714844,45.842922,5.01 1940,-21.724863,402.59613,79.456436,175.445,4.964 1940,532.21893,-181.55627,149.79883,421.79004,4.879 1940,626.6271,488.8955,20.64624,44.741394,4.873 1940,583.25995,410.69116,71.54834,177.66156,4.862 1940,623.1694,-33.76131,26.03009,75.62793,4.848 1940,536.4532,311.2904,142.92096,341.04126,4.713 1940,298.68686,241.23558,19.523834,34.978622,4.68 1940,125.416,245.87161,31.455444,60.821045,4.583 1940,493.46313,227.14331,237.55066,515.02246,4.504 1940,331.4306,232.47458,30.036102,63.012848,4.466 1940,603.1669,-57.1537,53.65381,138.9551,4.427 1940,525.5163,274.7141,28.835388,71.29437,4.398 1940,249.00499,211.13333,21.060287,34.383057,4.394 1940,436.6423,200.24336,31.535614,71.190506,4.276 1940,-37.494503,-125.225075,117.338196,274.2227,4.253 1940,310.05063,228.37202,33.99057,82.753525,4.251 1940,-70.07694,-187.97237,210.43097,453.62103,4.228 1940,594.95166,242.33865,28.598083,68.751465,4.173 1940,107.89356,248.76314,32.178886,62.769913,4.161 1940,252.49902,213.88165,29.267334,66.58185,4.16 1940,133.39743,228.04726,36.075012,75.754745,4.154 1940,-13.930223,185.48251,47.96945,139.97171,4.061 1940,294.8981,228.8332,34.320282,90.69783,4.032 1940,454.57526,206.50693,24.764221,54.606903,3.887 1940,2.1910882,488.6773,19.450594,42.238464,3.798 1940,594.535,-46.547554,44.673523,100.19418,3.772 1940,35.818817,226.93114,39.523735,87.877884,3.759 1940,32.53857,241.56645,24.28381,47.02501,3.692 1940,-9.746109,134.5232,39.815956,105.5262,3.667 1940,1.1155498,232.52516,21.693598,51.97789,3.632 1940,279.5944,225.07404,34.958893,92.94592,3.631 1940,264.52542,220.11667,32.902985,85.88611,3.579 1940,-10.433022,-5.0809784,40.395157,99.81511,3.563 1940,53.80531,213.1337,37.402332,82.660736,3.554 1940,150.41388,219.03717,37.003174,78.27362,3.536 1940,472.8985,284.8716,22.543823,52.78601,3.531 1940,475.05283,227.44386,52.135834,141.01768,3.528 1940,388.29016,231.0599,39.75476,91.79675,3.476 1940,312.79758,238.85841,21.947021,45.942276,3.473 1940,221.50998,236.00545,29.994507,54.663498,3.458 1940,1.747694,-40.01858,43.477646,101.0473,3.411 1940,481.87354,-17.979877,19.019562,41.713608,3.364 1940,445.71588,201.9154,54.34024,143.617,3.336 1940,-8.755803,255.84949,37.997654,108.147766,3.327 1940,506.21783,-20.414324,18.483643,44.186787,3.311 1940,304.85257,241.69368,20.657837,42.68965,3.284 1940,618.44244,491.73526,20.437805,40.825043,3.277 1940,460.6427,204.86345,32.067566,62.76967,3.275 1940,486.06415,-35.663963,28.793518,75.25506,3.27 1940,473.99905,209.64851,22.485016,49.2343,3.262 1940,2.9555714,-16.274675,16.6058,38.880527,3.261 1940,613.468,361.74826,38.28949,116.771484,3.26 1940,14.439823,203.47884,51.30261,118.04045,3.233 1941,-5.921218,487.83072,18.633183,43.852753,6.887 1941,372.03983,227.37328,38.158722,93.66353,6.385 1941,626.19434,487.1301,20.933838,47.43869,6.367 1941,361.39767,233.16547,36.76773,74.9046,6.191 1941,-12.217493,476.028,31.128853,64.18732,5.847 1941,-5.9980497,-19.116861,17.889168,44.078167,5.788 1941,-12.575504,-40.092674,41.39499,101.325096,5.741 1941,613.04474,455.77997,39.575256,105.9986,5.618 1941,350.63354,238.82059,32.960052,68.99841,5.508 1941,-72.575645,265.80084,200.88525,462.5782,5.253 1941,622.84094,-33.92121,26.254578,77.11717,5.116 1941,627.21405,-18.120409,16.931335,47.228653,5.099 1941,585.8896,-98.777374,74.57153,231.57825,5.096 1941,-21.771599,402.42642,79.583466,175.56741,4.97 1941,491.36096,-181.4904,234.05164,426.22342,4.849 1941,477.56158,203.16125,29.559204,63.134796,4.772 1941,583.4069,410.1682,71.2984,177.88416,4.753 1941,154.00443,238.63489,33.373413,57.880737,4.735 1941,-20.134642,-86.507,71.35348,196.12122,4.7 1941,602.84143,-56.920322,53.50592,135.49199,4.688 1941,325.82016,230.58061,35.885498,79.68663,4.575 1941,536.3715,311.09918,142.7232,341.34528,4.522 1941,-6.4019995,217.38156,18.086006,40.712128,4.444 1941,4.3266478,213.10973,30.08812,71.04631,4.396 1941,-37.445473,-125.43465,117.432465,275.6126,4.331 1941,493.26318,226.90204,237.6134,515.72687,4.324 1941,-70.50153,-188.2709,210.54614,454.59567,4.31 1941,612.97943,359.8275,37.404602,119.26068,4.154 1941,310.27,231.55981,35.13025,80.18555,4.132 1941,-14.520044,179.55191,48.19928,142.07797,4.12 1941,179.5442,239.80157,32.691498,60.227356,4.094 1941,593.86096,-46.250633,45.09192,97.126945,4.049 1941,492.3386,-16.869293,33.20529,63.844067,4.025 1941,140.76692,242.4599,31.151642,59.726257,3.974 1941,293.0554,238.69662,38.239624,93.89435,3.929 1941,387.3683,235.32898,40.071655,98.20709,3.841 1941,618.45844,488.8684,20.748657,44.299377,3.802 1941,-5.543255,127.81145,17.81689,45.039032,3.8 1941,254.12636,220.1074,26.386307,60.80223,3.791 1941,99.49101,235.01598,40.795578,96.85741,3.768 1941,2.2207685,489.15015,19.170029,41.53546,3.75 1941,67.29158,233.85516,42.184624,98.68201,3.722 1941,404.3694,236.77934,37.67383,102.676285,3.719 1941,521.1393,-20.21471,20.241882,42.85801,3.711 1941,410.21805,237.99258,22.8768,40.302185,3.686 1941,501.64737,-33.811443,29.89267,72.57834,3.675 1941,165.52066,218.73238,36.450912,78.165665,3.672 1941,516.9033,-34.758083,29.412842,69.62808,3.663 1941,298.47934,246.8937,20.207886,38.0495,3.632 1941,306.21133,243.13622,19.608368,39.05107,3.631 1941,619.58624,-18.120024,16.921692,44.76767,3.614 1941,485.7701,-34.30078,29.450592,73.02734,3.61 1941,474.62796,217.5351,21.133331,46.992126,3.577 1941,4.550885,229.97585,39.231792,108.822495,3.574 1941,512.8762,-18.924194,20.63031,42.573227,3.555 1941,117.45799,218.89146,37.649216,75.72853,3.529 1941,571.3352,-4.390106,19.13739,37.05554,3.514 1941,1.9099939,227.47812,21.215715,50.97403,3.513 1941,555.7142,-5.528246,19.131348,36.529537,3.496 1941,248.69601,223.41652,21.568024,41.60811,3.487 1941,505.0787,-19.224968,19.743439,42.48712,3.486 1941,137.10068,241.0906,22.744324,35.390076,3.449 1941,234.25244,230.20523,21.727844,40.981476,3.437 1941,352.6608,230.2255,23.459198,50.5466,3.435 1941,26.144138,236.30385,35.07745,61.55925,3.431 1941,243.44196,265.69235,18.151245,35.806213,3.424 1941,313.46887,243.37157,21.643585,41.592026,3.417 1942,386.8792,232.66656,38.998352,100.06128,7.987 1942,-12.34893,477.42285,30.768593,63.31244,6.667 1942,-6.0226774,488.30646,18.626217,43.14862,6.632 1942,-11.582336,-32.414417,29.87931,71.63314,6.588 1942,-5.9964867,-18.844742,18.047428,43.270382,6.054 1942,-72.6382,265.42947,200.89218,463.09872,5.352 1942,108.29103,225.24161,32.892273,57.574066,5.328 1942,627.40955,-17.30999,16.705566,45.68718,5.281 1942,-17.179508,-62.86978,56.123333,145.70613,5.178 1942,422.3088,233.57217,39.24115,108.39838,5.156 1942,306.35498,247.48004,20.190369,34.88159,5.126 1942,613.1122,453.86868,39.455566,108.39316,5.092 1942,585.8625,-98.50331,74.778076,230.68523,5.043 1942,-21.937151,402.0511,79.759926,175.87189,4.981 1942,623.01953,-33.827423,26.409729,76.29431,4.979 1942,583.09454,409.5954,71.629944,178.48724,4.959 1942,90.394226,225.67223,34.27337,58.986862,4.902 1942,626.5076,487.9314,20.741882,45.484863,4.874 1942,536.3637,310.77957,143.01276,341.49948,4.862 1942,491.16547,-181.04256,234.1734,425.65094,4.832 1942,132.61961,223.80685,39.46228,88.01544,4.798 1942,165.5062,217.4982,37.144867,74.975494,4.742 1942,396.16815,221.68417,50.07617,123.081726,4.645 1942,603.2195,-57.331665,53.393738,136.25674,4.643 1942,299.2107,247.83267,19.66397,33.727325,4.611 1942,493.07437,227.36478,238.20908,513.55457,4.553 1942,476.61023,-11.599827,33.45645,60.83603,4.497 1942,66.51679,223.41104,34.79194,67.12579,4.49 1942,508.66785,318.95514,30.704834,76.63098,4.489 1942,481.9599,-15.655245,18.556152,39.950516,4.456 1942,442.4733,219.49619,52.621277,146.5289,4.433 1942,-37.50328,-125.59664,117.64076,274.99554,4.413 1942,149.66663,218.19789,38.239685,74.934494,4.403 1942,116.78193,224.34604,40.717293,89.04602,4.378 1942,238.15443,233.9727,28.59816,57.897354,4.223 1942,313.7408,248.22395,20.55896,34.679733,4.22 1942,364.46082,243.91103,33.172363,63.733627,4.22 1942,-70.164764,-187.59875,210.35567,453.59125,4.213 1942,50.3136,222.93164,34.90851,67.6781,4.154 1942,247.0151,221.68039,34.190887,79.286804,4.124 1942,375.5936,230.4086,37.658905,83.12378,4.093 1942,571.5413,328.4667,55.15674,168.79184,4.07 1942,483.53497,199.10793,31.623657,63.16472,4.062 1942,2.764691,-16.976067,17.023544,39.97954,4.017 1942,136.3689,233.40395,25.044891,37.7191,4.0 1942,-14.068933,180.36826,48.323418,141.38849,3.99 1942,181.49731,215.43227,36.89241,76.80327,3.964 1942,5.191579,211.5194,37.893326,97.24245,3.951 1942,169.47488,241.04543,23.662186,43.07985,3.948 1942,594.07544,-46.054455,45.012024,97.16726,3.946 1942,198.4758,214.03604,35.732346,77.653595,3.832 1942,474.1641,-16.640965,17.875732,40.021477,3.828 1942,266.19714,233.71393,22.206207,42.654602,3.755 1942,2.0708756,490.00122,19.432814,40.847717,3.705 1942,230.42075,220.09908,29.296082,58.090927,3.686 1942,120.59613,242.04001,22.614334,40.574097,3.684 1942,98.71426,231.137,42.894997,98.06641,3.671 1942,-10.161505,-5.194416,40.443047,101.88956,3.636 1942,499.97147,196.06615,37.933624,96.451614,3.62 1942,489.312,-17.176231,18.845276,41.993378,3.612 1942,380.27072,227.25525,54.724823,161.68573,3.605 1942,12.507253,173.00063,53.482594,114.87703,3.603 1943,-5.86664,488.7898,18.302717,42.66394,6.368 1943,626.81757,488.78644,20.460327,44.24536,6.208 1943,-13.046041,-39.719658,41.796383,101.59086,6.04 1943,123.57649,227.54141,32.214615,62.035583,5.985 1943,610.5983,-48.153152,42.096497,99.86448,5.945 1943,-11.89302,477.8083,30.190655,63.06079,5.91 1943,436.5195,284.89993,31.873688,60.160675,5.685 1943,-6.1024904,-18.795086,18.023605,43.594257,5.643 1943,108.93714,225.55263,31.231422,59.95723,5.582 1943,-72.82768,265.36322,201.0565,463.0755,5.316 1943,627.291,-18.726809,17.195557,47.38401,5.113 1943,571.28436,183.31128,29.526733,66.13974,5.063 1943,613.10254,454.8628,39.496033,107.39142,5.025 1943,586.4126,-98.78879,74.1228,229.84305,4.964 1943,583.2464,410.31314,71.66559,177.62497,4.928 1943,491.44354,-181.88048,233.95453,425.74387,4.922 1943,536.3449,310.51917,143.1148,341.58533,4.916 1943,-21.84514,402.0897,79.58711,175.913,4.911 1943,-5.0817566,205.41595,18.350817,38.568176,4.868 1943,-20.252949,-84.83481,71.73973,194.17058,4.78 1943,314.1887,246.35233,20.61789,36.28131,4.719 1943,493.30774,226.94037,237.47931,513.99304,4.687 1943,5.0991545,208.25,36.561222,86.618835,4.66 1943,-14.149401,185.65454,48.755455,136.70184,4.655 1943,92.35408,221.28267,32.178757,63.27043,4.547 1943,1.1311662,213.40977,21.692602,39.835144,4.545 1943,-37.521057,-124.4221,118.2087,272.1608,4.541 1943,231.0193,211.6007,35.20793,80.32121,4.413 1943,429.3631,243.6696,53.33377,118.271286,4.412 1943,458.96185,258.54953,57.154724,144.44626,4.387 1943,382.20367,229.51263,28.758698,55.67383,4.386 1943,316.07236,235.51202,29.409332,55.05139,4.355 1943,397.5971,224.9825,28.626312,64.100876,4.328 1943,-70.4558,-188.39392,210.83893,455.01022,4.317 1943,19.258152,212.81561,39.921158,77.916016,4.297 1943,419.58615,257.46158,41.27002,84.46661,4.205 1943,65.95181,212.76651,34.327118,69.45615,4.204 1943,557.1676,189.50471,33.854553,68.72218,4.178 1943,187.5058,234.45325,31.85234,61.3006,4.061 1943,214.48494,210.96413,36.2713,79.740005,4.045 1943,404.62585,254.86252,39.172363,84.89606,4.031 1943,583.39166,191.41245,22.47284,47.406128,3.913 1943,250.50577,214.67828,17.919678,27.21936,3.851 1943,132.9733,203.12,40.099335,76.76062,3.815 1943,51.825176,221.63242,34.335773,66.75668,3.81 1943,523.35657,185.81113,31.822998,72.30936,3.803 1943,563.2517,192.73834,41.29181,100.44867,3.798 1943,618.8648,491.11948,19.917603,40.47525,3.769 1943,399.05542,276.81293,28.112274,65.15015,3.744 1943,197.67905,203.71082,37.59131,75.897644,3.743 1943,35.747334,201.34589,40.715923,74.34924,3.742 1943,202.22716,245.97156,21.665741,40.88611,3.724 1943,305.48108,240.7576,21.125854,36.128418,3.721 1943,149.15862,212.8193,39.264572,78.66794,3.715 1943,474.35846,-18.946457,18.1763,42.244953,3.711 1943,106.09079,231.94687,22.709229,44.186157,3.705 1943,234.96642,251.73184,18.233475,34.38971,3.691 1943,497.0012,294.31036,42.296356,110.65042,3.678 1943,2.8032672,490.25378,18.871748,40.70874,3.677 1943,-9.75186,202.48341,28.147165,61.01686,3.674 1943,151.92995,226.49413,25.021072,38.38713,3.668 1943,-0.058060884,227.14825,25.787212,74.58087,3.665 1943,163.60873,222.683,40.937332,92.232956,3.66 1943,11.280268,-11.346798,60.23899,118.32225,3.65 1943,243.97057,237.15706,29.765518,60.13768,3.635 1943,377.61896,231.3063,23.605682,37.673065,3.617 1943,450.4292,252.50482,41.795563,95.23712,3.614 1943,469.72876,-34.37337,28.642212,72.118706,3.61 1943,242.36938,251.76677,19.879883,36.911087,3.599 1944,506.18445,249.21931,22.030579,42.262222,12.179 1944,399.89557,233.3435,25.60492,49.991333,7.574 1944,-6.1152163,488.9733,18.88567,42.135468,6.839 1944,440.68558,243.1821,23.861053,45.722595,6.421 1944,419.0821,209.80942,18.831543,39.239258,6.178 1944,626.44885,487.24435,20.799683,46.54312,6.159 1944,524.99243,243.90099,27.80896,52.9814,6.017 1944,-12.179994,477.40622,31.226788,62.776825,5.981 1944,627.33594,-16.853474,16.814392,45.104675,5.886 1944,-11.550288,-33.16912,29.780697,72.84801,5.801 1944,-6.0165596,-18.738289,18.09684,43.729725,5.67 1944,612.7732,455.1309,40.1062,106.8638,5.632 1944,380.20862,234.29498,33.277374,60.95868,5.59 1944,622.928,-33.754044,26.332947,75.306274,5.424 1944,-72.820885,265.44238,201.02335,462.82587,5.284 1944,514.06635,254.53748,21.585754,41.472412,5.141 1944,-16.874039,-62.158363,56.33158,144.87935,5.14 1944,586.1354,-98.56162,74.214355,231.26303,5.03 1944,-21.908808,401.8653,79.76398,176.02655,5.003 1944,532.5936,-183.13835,149.28754,425.25925,4.945 1944,583.0687,411.2992,71.65485,176.67822,4.832 1944,536.3367,310.2954,143.80981,340.8197,4.762 1944,401.76135,210.75667,21.458313,43.06642,4.743 1944,603.24835,-56.64055,53.46399,134.58246,4.644 1944,413.09555,223.98138,28.658295,60.684296,4.64 1944,-36.746613,-124.47339,117.48739,271.29852,4.627 1944,493.9527,227.80722,236.90515,513.646,4.57 1944,588.1579,190.88814,30.927124,66.175644,4.401 1944,498.31082,246.47484,21.441498,41.344193,4.305 1944,230.98843,210.52011,34.645447,81.28143,4.29 1944,-70.24686,-188.43628,210.6892,455.97156,4.27 1944,411.7763,208.12543,18.535217,37.45366,4.218 1944,490.97366,247.97961,19.97055,41.00067,4.163 1944,372.41757,223.1471,32.208862,57.62726,4.137 1944,576.4759,172.49936,48.667175,126.77658,4.136 1944,345.7506,243.66637,22.793335,39.28929,4.118 1944,593.81793,-45.019993,45.33008,95.60285,4.052 1944,75.093346,169.13214,57.55581,114.96402,3.994 1944,-11.806726,24.709637,29.891039,72.73567,3.967 1944,618.5646,488.57608,20.463867,44.1257,3.966 1944,442.51514,-5.939623,21.157013,43.258705,3.913 1944,420.41956,236.99352,32.51184,62.05571,3.905 1944,102.33433,222.33942,29.160744,61.02533,3.905 1944,355.18695,233.75748,35.390015,56.157715,3.9 1944,351.34027,231.19637,25.227448,35.943405,3.897 1944,437.76706,-18.265688,31.473846,67.466866,3.866 1944,473.98077,-18.39086,18.432922,43.980186,3.789 1944,389.1413,216.13197,31.36438,61.07469,3.782 1944,478.0421,-34.491043,28.389038,74.82517,3.777 1944,215.07079,210.57607,36.060486,79.82146,3.77 1944,423.99594,213.30704,20.123657,43.497986,3.768 1944,468.57532,-17.420761,30.356873,67.760284,3.721 1944,619.9138,-16.324442,16.450317,40.720814,3.712 1944,449.88083,-17.596117,18.526337,42.15647,3.708 1944,116.613785,199.59523,39.926926,76.113815,3.698 1944,573.5772,197.20874,31.02832,68.94385,3.69 1944,452.58246,-18.447489,31.595398,70.01951,3.683 1944,11.15719,-13.441097,58.6893,118.61287,3.68 1944,164.07288,229.3294,31.806946,56.944702,3.637 1944,4.8075438,217.51886,38.542564,109.63934,3.612 1944,250.42438,214.73808,18.179108,29.264252,3.591 1944,423.9735,229.35071,22.861969,45.60666,3.584 1944,482.40506,-17.188969,17.722076,42.170345,3.583 1944,612.848,211.27225,37.47693,120.39139,3.523 1944,596.2903,154.5965,37.25299,98.32788,3.51 1944,2.0096474,490.23907,19.979002,40.934998,3.456 1945,433.59024,195.30942,22.248016,45.134766,16.862 1945,446.27457,195.10551,23.13498,45.127304,8.39 1945,-11.177841,-31.978918,29.784061,73.2184,6.68 1945,-6.1050367,488.81253,18.46811,43.25406,6.325 1945,-6.055975,-17.400047,17.928074,43.063896,6.276 1945,34.047474,213.70772,34.781048,68.148056,6.069 1945,627.3252,-17.25705,16.795532,45.59761,5.715 1945,-12.339426,476.58658,30.739243,63.885834,5.601 1945,585.8396,-97.60086,74.52832,230.16647,5.205 1945,-72.607185,266.10425,200.46695,461.12616,5.169 1945,622.97327,-33.423073,26.290955,75.65486,5.112 1945,-17.298252,-62.16282,56.30756,143.58945,5.1 1945,-22.015575,401.86023,79.75831,176.0238,4.999 1945,583.04224,411.46872,71.770996,176.89444,4.988 1945,613.0199,454.65106,39.503967,107.9436,4.969 1945,491.41556,-181.78835,233.89584,427.27075,4.958 1945,626.19586,488.17422,21.497986,45.4086,4.854 1945,536.42017,311.09772,143.1919,339.82788,4.778 1945,603.16156,-56.831284,53.30011,135.64883,4.74 1945,-37.189426,-126.72253,117.7482,275.59265,4.527 1945,493.29437,227.41006,237.90924,514.1041,4.526 1945,589.93384,248.5405,29.045105,58.123596,4.421 1945,-5.8772497,120.128,18.140438,44.38035,4.315 1945,-70.40711,-188.67242,211.10297,456.51645,4.282 1945,593.9191,-45.3504,45.19403,95.94073,4.059 1945,140.27364,213.56152,32.99266,51.93985,4.047 1945,-5.4511685,103.4745,17.531706,43.112778,4.009 1945,291.6277,221.04399,17.997925,37.144424,4.004 1945,-9.348042,-4.9883423,39.713974,100.28717,3.991 1945,535.0779,262.15915,32.78601,64.583984,3.963 1945,74.643166,189.5452,33.97371,61.964966,3.907 1945,21.182308,213.02066,32.570087,68.38077,3.905 1945,49.47838,210.89369,35.15972,63.49028,3.87 1945,80.86241,186.5139,22.238037,40.44478,3.817 1945,152.86415,224.00992,22.694138,32.585876,3.734 1945,435.71744,179.45288,39.14203,86.99463,3.68 1945,572.45703,252.26233,31.695007,67.06006,3.671 1945,620.2355,-3.192933,17.250183,38.308117,3.625 1945,388.25436,-17.30174,31.89267,68.90619,3.615 1945,2.5765455,-15.679826,16.988945,39.837257,3.593 1945,523.3199,-15.99652,16.996094,38.616302,3.553 1945,4.302725,190.19032,38.89971,103.538284,3.516 1945,618.1768,490.30597,21.402405,42.593323,3.509 1945,-4.6801167,86.55329,16.562666,43.144463,3.478 1945,580.79333,252.70631,40.2041,100.12776,3.436 1945,506.09634,-18.870914,17.78952,42.930485,3.427 1945,-6.035888,212.65291,18.093708,46.330063,3.424 1945,244.99313,207.22057,28.293518,58.937973,3.42 1945,364.92032,-3.634243,31.33609,66.17323,3.418 1945,3.0818272,-21.45385,50.605957,133.37552,3.397 1945,514.95917,-16.602041,17.639465,39.811607,3.382 1945,-8.790932,170.30138,38.871147,95.99245,3.377 1945,340.78442,217.8366,28.97937,56.405136,3.342 1945,-1.3284433,-17.170372,28.26415,71.72628,3.318 1945,27.554008,167.74846,56.651405,118.617905,3.307 1945,393.8437,248.43463,20.37146,36.225098,3.307 1945,2.2534342,490.24063,19.158337,40.75888,3.295 1945,267.7754,176.12752,15.475128,33.90628,3.287 1945,390.22833,228.16693,29.28302,60.731934,3.258 1945,-5.2490177,136.86322,17.491344,44.294235,3.257 1945,502.11255,-33.76627,27.536865,72.18257,3.255 1945,47.91502,-39.584156,46.90897,91.305305,3.237 1945,-5.0567255,248.2341,16.945763,40.007324,3.233 1945,394.68155,-16.719467,16.81717,39.74435,3.223 1945,-5.7638097,231.16252,18.561098,43.794144,3.223 1945,613.4276,250.46762,36.394653,112.60162,3.219 1945,486.5439,-35.801216,27.974274,77.209145,3.209 1945,572.22266,-1.2993927,17.386047,34.093895,3.204 1945,-8.973139,67.43625,38.461025,105.48953,3.196 1945,588.54254,-2.7767305,17.231628,35.593166,3.195 1945,-5.8288946,1.1398449,18.953949,44.073296,3.195 1945,156.31032,-1.4143171,16.650955,32.032528,3.166 1945,426.92715,-13.496548,33.954193,62.9006,3.164 1945,420.60553,170.8052,41.455658,81.64432,3.164 1945,125.50404,174.76756,53.35219,107.10802,3.139 1945,-5.0764775,298.6313,16.850079,40.81427,3.123 1945,493.30887,-19.901382,29.720367,68.54547,3.122 1945,531.6653,-135.69281,115.63452,269.5358,3.116 1945,9.065123,-90.79524,74.265366,207.43239,3.114 1946,480.58112,216.86896,21.073822,43.776215,36.27 1946,465.15173,216.15732,21.580414,44.836456,26.865 1946,-11.317308,-31.898933,29.963518,73.62593,6.175 1946,-6.1505566,488.70398,18.566591,42.979187,6.173 1946,2.5280619,199.86478,21.152527,45.72258,6.133 1946,474.4336,220.33691,19.132202,45.271088,6.012 1946,-6.031081,-17.289928,17.974556,43.636917,5.633 1946,-12.312868,476.57492,30.857735,64.030914,5.573 1946,471.2425,206.08673,34.817535,76.8974,5.565 1946,627.4493,-17.47279,16.837952,45.564484,5.353 1946,585.9532,-97.84097,74.41608,229.91855,5.283 1946,613.1144,453.94406,39.603638,107.76511,5.228 1946,-72.649254,265.64005,200.75473,461.94028,5.202 1946,622.7465,-33.798286,26.677307,75.62116,5.199 1946,-16.806725,-62.086517,55.608894,144.14192,5.124 1946,491.38675,-181.81271,234.35818,428.2995,5.081 1946,487.73157,228.85861,19.722107,41.817505,5.029 1946,-21.84636,402.2328,79.63909,175.88727,5.013 1946,626.4336,487.76538,21.1958,46.336304,4.964 1946,582.91095,410.03882,71.75653,178.16425,4.802 1946,603.18396,-57.246956,53.467957,135.60643,4.787 1946,536.33276,310.5537,143.21252,341.51147,4.732 1946,453.37775,197.3,32.074646,61.99315,4.647 1946,442.09882,232.73468,18.970093,34.0618,4.558 1946,493.90332,226.78217,237.22516,515.202,4.542 1946,-36.837925,-126.491905,116.912125,275.07175,4.536 1946,4.298917,199.09906,30.393005,66.4422,4.441 1946,17.852425,203.27222,20.312141,41.18831,4.433 1946,80.55356,221.20863,22.164902,37.68071,4.426 1946,-8.940399,-6.1042747,39.231407,101.207825,4.393 1946,61.554916,220.2963,30.195045,54.15274,4.358 1946,-70.29314,-187.78154,210.65134,455.19116,4.259 1946,593.9206,-46.137653,45.065735,96.048904,4.206 1946,-5.501058,211.42761,18.668392,43.715515,4.18 1946,25.57077,206.03711,18.56968,36.430542,4.165 1946,117.10273,197.2948,37.641426,80.80432,4.117 1946,612.4153,329.53656,37.174194,113.81464,4.055 1946,83.00286,219.19151,31.440025,58.47673,4.047 1946,460.20898,225.5021,19.694641,40.0141,4.027 1946,101.67763,200.77293,39.12593,77.02577,3.983 1946,446.22247,217.14403,29.062256,54.837967,3.87 1946,619.7153,-17.00642,16.837708,41.6933,3.86 1946,11.407018,-20.31493,58.45773,127.09041,3.843 1946,246.09683,228.80235,27.274323,56.48192,3.703 1946,2.5444233,-15.781111,17.06575,40.702732,3.627 1946,2.0660424,489.84058,19.676939,41.318726,3.597 1946,480.94244,202.23404,33.23224,60.586395,3.587 1946,441.47476,-5.69042,22.363068,41.126076,3.578 1946,-5.0259447,185.75992,17.172138,42.201035,3.574 1946,72.94774,227.06035,22.417442,38.464035,3.56 1946,133.35623,199.17195,37.38344,78.53218,3.553 1946,68.33586,201.7763,39.91394,73.538635,3.549 1946,-9.800683,185.83339,28.417183,66.847275,3.516 1946,199.2713,199.69872,34.636383,76.72728,3.515 1946,435.74854,-5.9797935,32.786194,64.61241,3.489 1946,214.81932,198.14807,34.236847,79.3866,3.484 1946,217.10324,204.61865,19.819809,33.574295,3.448 1946,429.68567,-33.241325,28.815918,72.6293,3.442 1946,596.3944,325.96402,38.894714,112.94852,3.421 1946,457.49774,-6.87869,22.481323,43.470577,3.397 1946,391.1339,209.8669,27.821442,54.348526,3.396 1946,492.67023,-16.221327,31.16388,65.54577,3.356 1946,572.3559,302.1593,53.19171,154.79474,3.35 1946,-14.918652,180.02145,48.901546,139.59125,3.338 1946,450.3143,-16.7481,18.090546,40.124134,3.337 1946,420.79663,-6.591894,31.656067,69.00025,3.324 1946,-5.2219443,1.4981918,18.131033,44.244396,3.313 1946,617.9165,489.299,21.649292,43.83484,3.306 1946,3.9046693,206.81268,39.031425,99.192566,3.279 1946,469.6382,-32.61704,29.062805,69.88326,3.264 1946,433.9392,233.96597,19.221924,34.317993,3.261 1946,406.1651,194.51013,29.625122,62.21582,3.26 1946,18.110064,206.88496,31.201223,57.601883,3.247 1947,524.42194,207.93762,32.27246,67.64783,16.003 1947,541.22955,206.97826,25.66919,52.037857,8.428 1947,433.61432,199.10474,19.239227,48.222748,6.95 1947,-5.977588,-18.313225,18.252983,44.223713,6.514 1947,-11.107583,-32.975304,29.372639,73.16794,6.401 1947,-6.019101,489.3862,18.50232,41.878754,6.054 1947,627.08417,-17.923843,17.144287,46.564083,5.579 1947,-12.310871,478.60568,30.422499,62.355927,5.469 1947,613.50354,454.66562,38.77356,107.5408,5.433 1947,622.85913,-33.743084,26.510864,75.8806,5.307 1947,-17.286541,-62.908443,55.61946,142.37308,5.201 1947,586.0558,-98.51749,74.40527,230.2886,5.098 1947,491.34967,-182.33632,234.08588,428.5611,5.028 1947,-72.735275,266.01025,200.47469,460.8891,5.02 1947,-21.899595,401.8634,79.5998,175.72119,4.913 1947,0.1756835,189.83601,22.553665,49.67964,4.896 1947,602.9791,-57.421005,53.452026,133.8371,4.84 1947,583.1289,410.89172,71.53998,177.3186,4.768 1947,536.282,309.89536,143.45612,342.46475,4.736 1947,626.5285,488.04123,21.000854,45.790924,4.702 1947,593.8377,-45.444427,45.181885,94.58244,4.589 1947,-37.441643,-126.03469,116.58266,276.98877,4.514 1947,512.39923,214.10641,29.931335,63.53015,4.502 1947,3.7321985,204.03922,31.671885,56.64383,4.471 1947,493.61127,227.1818,237.63837,515.1874,4.403 1947,438.4408,185.24606,28.760132,64.55893,4.324 1947,529.90344,210.67041,40.084595,97.20337,4.312 1947,-70.25735,-188.61833,211.3583,454.99768,4.196 1947,426.7145,195.39294,19.960419,47.42012,4.05 1947,-9.310733,-6.435417,39.36287,101.834885,4.046 1947,297.94116,202.13675,21.585022,46.99646,3.952 1947,275.84097,226.20518,17.273834,32.35295,3.943 1947,427.85303,-16.737846,34.039307,65.243454,3.935 1947,422.62302,-33.419075,28.724915,72.782074,3.825 1947,545.2737,216.51389,40.922546,94.80823,3.824 1947,501.26816,212.55142,29.232697,64.519135,3.773 1947,520.42584,208.07928,23.610046,46.739212,3.714 1947,14.905317,210.34883,24.507704,40.930206,3.6 1947,534.42804,101.363144,33.223694,72.80458,3.583 1947,2.2435741,491.11548,19.628458,40.480347,3.566 1947,268.7294,227.266,16.545593,29.273514,3.546 1947,19.580963,205.58322,31.5934,57.626312,3.544 1947,68.406,197.18454,39.737938,74.59949,3.542 1947,83.92623,183.36299,40.746735,78.37254,3.504 1947,2.6260865,-16.532536,17.246012,41.826603,3.496 1947,100.13568,182.00523,40.18283,77.74443,3.468 1947,619.35846,-17.655527,17.126282,43.000942,3.435 1947,499.61884,235.21237,20.569458,38.767975,3.428 1947,2.2423935,-39.972656,42.56344,98.42467,3.427 1947,493.5043,234.5742,30.197174,65.353745,3.417 1947,464.38922,-43.49293,46.787415,92.212036,3.408 1947,433.7691,-16.814352,18.311005,39.494473,3.408 1947,425.9422,-4.6609344,21.299957,40.77735,3.394 1947,510.60245,185.21623,55.63028,103.90144,3.38 1947,618.6143,490.60764,20.76532,42.385834,3.379 1947,557.3021,324.60522,30.526306,60.755127,3.343 1947,-10.259581,200.44217,30.133673,62.93924,3.343 1947,-12.61532,180.63202,47.1361,136.58148,3.324 1947,116.59311,181.82037,39.607056,78.0405,3.315 1948,456.14374,218.55386,18.441956,38.183838,22.02 1948,476.1627,216.12749,19.541779,37.674683,15.27 1948,466.25085,215.99602,18.910156,37.552902,9.067 1948,528.4707,254.0771,21.142456,39.0399,9.01 1948,480.8797,219.20042,20.67566,45.155075,7.767 1948,-6.1664543,488.7833,18.709606,42.961456,6.212 1948,-11.474491,-32.67137,29.991825,73.66268,5.853 1948,-12.53366,476.207,31.2496,64.10599,5.806 1948,-6.2159348,-17.73761,18.356144,43.71063,5.669 1948,627.2686,-17.402405,16.901672,45.20304,5.346 1948,-17.5268,-62.528507,56.77603,140.98355,5.329 1948,484.95056,207.57074,29.536987,57.71997,5.314 1948,613.10675,454.20657,39.755676,107.7775,5.296 1948,-72.542885,265.51917,200.62326,461.9226,5.208 1948,454.93488,212.76218,25.194489,63.527313,5.155 1948,585.87006,-98.60815,74.59418,231.57965,5.101 1948,532.5553,-183.22357,149.49658,424.41592,5.025 1948,-21.958828,401.9381,79.724846,175.85687,4.956 1948,622.90765,-33.75696,26.426453,75.15839,4.951 1948,432.11765,218.88838,22.005585,47.80223,4.946 1948,583.0526,411.31836,71.76312,176.95135,4.881 1948,536.20996,310.62012,143.42737,341.82227,4.75 1948,626.45844,487.70956,21.161926,45.868744,4.658 1948,603.38293,-56.60169,53.481934,136.22894,4.628 1948,-37.166542,-124.92922,116.34189,274.5771,4.555 1948,460.10648,-32.359676,30.431305,73.968704,4.532 1948,493.9635,227.5918,237.30127,514.53107,4.492 1948,505.43973,248.02556,20.685211,43.149185,4.474 1948,0.39021492,200.93279,21.309393,45.938385,4.456 1948,-8.5477915,-6.0881386,39.177837,99.40222,4.426 1948,471.77435,207.67247,34.184174,81.9044,4.351 1948,497.2395,228.49594,21.096008,47.369446,4.289 1948,92.38841,177.00519,54.87529,109.37692,4.279 1948,59.912918,175.80711,55.23738,106.50331,4.134 1948,-69.89556,-188.92105,211.00201,455.367,4.093 1948,538.48364,-4.760889,19.813171,39.41137,3.937 1948,131.74658,199.9627,40.963608,75.1062,3.937 1948,594.11444,-45.689667,45.03662,97.889305,3.916 1948,456.69907,-19.277493,20.369171,45.283436,3.908 1948,115.3347,198.88383,41.352554,76.09389,3.884 1948,525.8167,248.53401,29.70404,68.08055,3.848 1948,329.80804,197.05042,21.716461,40.096725,3.826 1948,2.0012527,489.80673,19.859089,41.86551,3.819 1948,465.12805,-19.215149,20.09436,44.64153,3.786 1948,473.91034,-20.836248,19.219543,45.2273,3.772 1948,82.8374,218.50247,34.481857,49.755096,3.731 1948,422.55734,199.42459,36.318542,79.34488,3.703 1948,1.8114185,-39.03913,43.01455,96.6423,3.69 1948,-4.663296,188.95026,17.53204,40.03154,3.67 1948,308.6555,194.24617,39.131714,78.89183,3.657 1948,473.91534,227.31052,22.044281,51.48456,3.621 1948,452.42926,184.99774,39.58551,84.41354,3.617 1948,4.7785735,198.45474,37.593933,87.35306,3.616 1948,246.03558,234.58182,28.491882,61.462067,3.613 1948,442.96512,217.81956,19.29425,41.201065,3.572 1948,257.91135,238.5645,21.195862,42.310287,3.556 1948,412.82376,220.24411,31.280975,66.68698,3.555 1948,613.04205,362.78857,37.02722,111.924225,3.534 1948,515.1101,250.80861,19.893188,41.82463,3.528 1948,438.34387,-34.51634,29.54657,76.35099,3.519 1948,467.46902,-9.858778,30.869568,65.42987,3.518 1948,438.9044,204.84131,34.714233,83.321106,3.513 1948,485.1701,226.94077,36.55841,88.30994,3.494 1948,452.6878,217.9733,37.2948,97.42395,3.493 1948,457.05902,-33.867203,59.28241,125.48003,3.478 1948,547.03595,-5.98744,19.453613,40.964348,3.473 1948,555.73083,-5.5709305,18.450256,39.90034,3.448 1948,10.979555,-19.736355,58.31449,121.47722,3.428 1948,495.65265,207.88715,33.429626,64.41315,3.427 1948,-8.927149,35.258667,38.649826,106.220474,3.426 1948,510.23523,-34.42036,27.968262,70.36589,3.41 1949,498.9053,204.18771,26.97464,63.262817,53.648 1949,522.39966,206.30392,26.647278,69.11392,50.027 1949,510.21997,204.39049,26.874146,69.32143,11.723 1949,530.6734,203.60849,28.443909,64.065155,10.816 1949,-11.419546,-33.35238,30.058996,74.642235,6.278 1949,-6.1405993,488.33945,18.790936,43.142548,6.104 1949,610.42535,-48.571655,42.020325,99.51809,6.099 1949,1.8320489,219.56502,18.524614,40.171494,5.643 1949,627.27545,-19.012589,17.35968,46.985416,5.515 1949,-12.69767,475.95203,31.665339,64.35779,5.405 1949,613.156,454.21738,39.58789,107.58133,5.397 1949,626.618,488.11047,20.917725,45.48175,5.392 1949,-17.270096,-62.148945,56.33749,141.62657,5.291 1949,-72.77057,266.0777,200.66864,461.32977,5.093 1949,-6.4773064,-17.945595,19.017227,44.519444,5.041 1949,491.40137,-180.89188,233.56616,424.98734,4.99 1949,-21.909737,402.1752,79.70227,175.58365,4.948 1949,586.3364,-98.89078,74.01691,229.95198,4.914 1949,536.4683,310.48883,143.15082,342.02472,4.782 1949,582.9804,411.10474,71.67401,177.07678,4.776 1949,-8.462227,-7.0285034,38.678978,99.33411,4.538 1949,493.81738,228.06277,237.59528,514.8435,4.442 1949,468.30502,205.23737,27.833832,65.78351,4.407 1949,-37.564594,-126.17064,117.12987,276.90244,4.372 1949,-70.60919,-189.32794,211.44208,455.4306,4.246 1949,542.2743,206.85007,22.792236,53.36029,4.24 1949,-4.422903,224.97762,17.06789,40.8105,4.238 1949,317.20062,196.07277,30.678955,59.42714,4.136 1949,456.29944,206.67648,26.674988,63.456024,4.039 1949,532.0521,-17.753113,31.70758,72.401146,4.022 1949,531.75574,212.61424,38.013306,93.74681,3.85 1949,547.85,221.59933,38.799255,91.203674,3.823 1949,517.8871,-8.182514,30.755554,73.28516,3.743 1949,1.0982031,-18.348515,19.292715,43.976074,3.668 1949,452.1469,-15.682049,32.190247,65.8374,3.563 1949,0.7874799,-16.602798,52.40117,135.8476,3.542 1949,493.40146,222.54686,30.176544,74.908585,3.513 1949,618.5808,490.33115,20.58258,42.39743,3.474 1949,-5.88166,238.609,17.176744,40.046585,3.46 1949,500.4346,208.8782,38.89328,97.792145,3.429 1949,-5.0676527,168.33319,17.430447,47.289734,3.426 1949,251.6024,242.66759,18.11467,34.112686,3.401 1949,-9.513132,33.20921,39.364788,108.584595,3.4 1949,497.72095,174.28528,42.72986,81.95093,3.389 1949,1.7451954,-40.119865,42.732613,98.55746,3.387 1949,513.4484,174.98853,43.914062,82.047,3.363 1949,589.4337,-58.691505,53.817688,135.94853,3.352 1949,258.47534,242.18465,19.28717,34.61345,3.348 1949,612.7148,330.76715,35.792664,111.983826,3.347 1949,-2.6479995,-20.473751,30.049856,74.88214,3.343 1949,2.0524192,489.57138,20.026003,41.761505,3.341 1950,577.6717,206.16486,34.043518,72.68384,88.349 1950,607.5737,203.61584,30.725159,68.64734,77.161 1950,497.11505,207.16855,20.82611,42.357254,8.562 1950,559.7239,207.39136,33.57794,74.32431,7.078 1950,596.30817,221.77051,39.628967,112.0874,6.752 1950,-6.165898,488.4081,18.795282,43.367767,6.049 1950,-12.506098,476.06958,31.03087,64.154724,5.956 1950,613.1988,453.91345,39.6015,108.28552,5.92 1950,612.7615,226.88274,36.974,113.61607,5.825 1950,-11.525661,-32.712116,30.342676,73.811584,5.582 1950,626.5919,487.46805,20.830017,46.25699,5.483 1950,-6.1629796,-17.189602,18.267454,42.601555,5.473 1950,627.2705,-17.734684,16.884033,46.2694,5.404 1950,-17.157236,-61.707115,55.836166,143.98685,5.33 1950,-72.60191,266.17166,200.65239,461.3127,5.133 1950,623.1869,-33.47196,26.077698,75.74366,5.098 1950,619.16113,209.14117,27.445312,77.32471,5.072 1950,532.8742,-182.2551,148.6839,425.76025,5.011 1950,535.86884,308.99963,144.20044,343.5636,4.946 1950,582.93097,412.10388,71.704285,175.42981,4.939 1950,573.9161,203.50287,50.64038,139.34283,4.935 1950,-21.854923,402.50314,79.59186,175.37558,4.909 1950,601.01245,201.47375,23.880798,54.5784,4.828 1950,493.30774,228.42902,237.7262,515.3154,4.764 1950,603.12665,-56.9187,53.378235,134.90062,4.664 1950,586.68713,-100.353165,73.5813,233.66173,4.633 1950,550.08185,218.83391,32.211914,68.78328,4.52 1950,-0.22716045,187.99998,26.488129,71.74959,4.501 1950,-37.028446,-126.37559,116.78148,275.9338,4.449 1950,532.69727,-14.980583,31.307373,64.33354,4.372 1950,433.4892,-17.187786,18.695251,40.185158,4.329 1950,605.7545,192.37366,42.59912,112.87134,4.25 1950,590.7819,203.02284,24.467773,55.597336,4.197 1950,1.5341604,217.59117,20.926243,40.0912,4.161 1950,284.7469,201.04282,31.445068,52.560562,4.14 1950,425.5135,-17.737457,19.012726,40.190224,4.133 1950,422.0116,-33.097584,29.12503,71.363,4.109 1950,441.81427,-17.835583,18.452423,40.51404,4.08 1950,-8.552704,-5.723007,38.812828,101.90737,4.037 1950,320.3436,202.79733,23.111603,43.967545,4.029 1950,485.278,218.58969,28.159729,69.39932,4.022 1950,624.43646,201.6023,19.498596,52.330597,4.001 1950,612.5424,359.51736,38.310608,119.24002,4.0 1950,-69.94914,-187.97495,210.68123,453.98663,3.962 1950,594.21625,-45.95287,44.771362,96.52563,3.957 1950,35.01172,221.00082,33.326073,48.493195,3.864 1950,569.8948,314.08234,58.884888,164.23096,3.78 1950,418.04767,-16.263916,18.471619,38.368694,3.775 1951,539.70605,202.70328,31.282227,71.12796,14.872 1951,361.13235,201.07298,24.34726,41.413834,9.245 1951,364.36066,193.7076,30.327179,60.469437,7.093 1951,3.308307,221.87717,33.320484,48.429565,6.473 1951,-11.228401,-32.30989,29.694635,73.91946,5.855 1951,612.8401,453.3304,40.068848,108.54678,5.742 1951,352.5667,201.92352,24.638062,45.397644,5.634 1951,334.5899,199.05191,27.8768,62.46054,5.62 1951,622.8104,-34.11728,26.712402,76.471275,5.57 1951,-6.070843,488.5762,18.685768,43.02603,5.487 1951,183.74489,227.86697,24.18605,39.767456,5.47 1951,-12.532909,476.31665,31.13787,63.842957,5.382 1951,-6.109128,-18.368788,17.869488,43.936462,5.374 1951,627.39417,-17.39006,17.06012,46.111618,5.338 1951,-17.119186,-61.413414,56.430954,142.9543,5.321 1951,626.7556,488.2122,20.48816,45.115875,5.319 1951,586.1096,-97.840866,74.19116,230.84497,5.246 1951,-72.973236,265.65692,201.21765,462.1242,5.198 1951,22.808537,232.5411,23.947712,29.789124,5.196 1951,342.76263,200.4342,24.07132,42.363647,5.124 1951,491.27753,-181.44131,233.71796,427.45505,5.085 1951,-21.914883,401.8216,79.717896,176.0274,4.975 1951,172.65237,227.68643,32.128754,58.437347,4.851 1951,602.9711,-57.085182,53.589233,136.74129,4.813 1951,582.928,410.6283,71.839966,177.46338,4.77 1951,536.2275,310.732,143.70288,341.83368,4.753 1951,-9.081082,-4.301277,39.82986,100.37488,4.565 1951,493.7896,227.10376,237.4256,514.0516,4.465 1951,31.788197,227.27298,23.715382,33.63794,4.404 1951,340.9569,187.50758,40.44339,80.2827,4.335 1951,201.8021,230.90627,21.12564,36.84883,4.31 1951,-70.35877,-189.33505,210.9751,456.46152,4.307 1951,-37.23978,-126.11597,117.01128,276.32816,4.294 1951,41.29693,226.48906,22.747765,31.405655,4.228 1951,520.0675,207.20186,39.490906,89.585434,4.153 1951,116.11065,131.48198,31.054161,66.32231,4.144 1951,-5.64354,186.26343,17.823635,39.66832,4.115 1951,619.87085,-2.8512573,17.59375,39.379562,4.073 1951,165.94063,218.11734,31.156113,54.291565,4.044 1951,-14.99989,192.02463,50.346153,122.51236,4.022 1951,388.5501,221.19328,41.39615,88.671005,3.997 1951,356.9458,208.47855,40.191345,93.98892,3.992 1951,-6.4417286,224.80586,19.897871,38.343307,3.989 1951,308.85095,188.3375,39.05597,76.6749,3.976 1951,371.98883,213.67546,40.868042,92.01872,3.91 1951,544.631,205.85976,38.355286,94.30501,3.884 1951,-5.728557,169.97441,18.3356,41.282715,3.88 1951,594.01434,-46.44345,44.838623,98.459274,3.873 1951,458.7442,219.17007,20.994507,42.943695,3.828 1951,-6.624832,211.3282,18.56987,38.203003,3.784 1951,107.19842,170.06601,56.903374,114.31784,3.76 1951,470.27673,217.37627,30.47345,65.50215,3.758 1951,558.5883,209.54613,24.473938,52.166214,3.723 1951,486.9765,215.39565,29.521545,67.74843,3.703 1951,498.80762,207.32825,38.713257,88.96936,3.694 1951,-7.7255716,52.69717,37.045826,106.020645,3.672 1952,337.00717,206.12582,23.206451,44.836838,8.479 1952,622.75946,-33.826405,26.651855,77.26912,6.569 1952,358.95462,209.48433,24.658844,46.39772,6.493 1952,-11.300743,-32.716038,29.846375,72.18594,5.854 1952,-6.1064715,488.5123,18.48152,42.687042,5.841 1952,-12.612076,476.37,31.191912,64.03247,5.619 1952,613.1054,454.79666,39.687683,107.0134,5.468 1952,-17.382254,-61.821358,56.23726,146.76735,5.464 1952,593.9675,-45.93305,44.503235,95.73797,5.456 1952,603.0376,-57.620193,53.81433,133.89293,5.426 1952,-6.1816545,-18.633533,18.23456,43.621292,5.391 1952,626.95715,-19.695671,17.643616,48.848125,5.284 1952,351.02295,206.99927,24.095306,38.52928,5.208 1952,-72.74939,266.03333,200.80511,461.5719,5.133 1952,586.3012,-96.81895,73.99115,227.49704,5.131 1952,168.26796,231.11545,23.32866,37.2005,5.104 1952,583.0547,411.2058,71.95422,177.03143,4.991 1952,-22.000286,401.81262,79.76585,175.85187,4.984 1952,626.358,487.8658,21.215332,45.934845,4.915 1952,490.57092,-180.09494,234.23132,425.76108,4.878 1952,536.19507,311.00842,143.39807,341.24396,4.731 1952,493.37305,227.5661,237.8136,515.5379,4.556 1952,-5.6568756,178.86557,18.01062,42.664032,4.491 1952,339.3616,185.85233,30.098969,59.865128,4.406 1952,-70.19887,-188.78781,210.74696,455.3614,4.307 1952,-36.90764,-127.22618,117.34777,278.17453,4.292 1952,323.88486,185.49548,40.99875,78.977234,4.166 1952,340.1958,198.18045,39.257355,75.57022,4.155 1952,186.15674,231.79439,20.376236,35.547867,4.123 1952,343.883,214.39848,22.636414,48.323257,4.032 1952,308.21375,183.6802,40.183533,81.44467,4.019 1952,90.92517,217.6113,32.44069,52.14215,3.974 1952,153.88783,229.89958,23.520996,37.16243,3.958 1952,618.9678,-20.475872,18.518066,47.065292,3.958 1952,209.70639,231.38483,20.128738,36.657806,3.928 1952,278.29623,198.09189,36.15445,76.12503,3.912 1952,348.80725,184.13432,51.888916,109.78999,3.907 1952,108.30567,223.11032,32.628914,58.73114,3.824 1952,194.424,233.2275,20.094116,34.75264,3.81 1952,361.6264,-0.92660713,21.494904,34.123558,3.799 1952,618.4651,490.1861,21.014404,42.934814,3.705 1952,217.6023,231.46931,19.685486,37.100876,3.68 1952,203.27948,236.80081,19.374908,35.10086,3.645 1952,117.14417,199.86244,38.962074,76.78725,3.623 1952,-15.094631,150.16394,48.866825,139.18152,3.609 1952,-4.91921,200.75562,17.394804,40.428833,3.577 1952,363.40457,-15.526781,32.818848,59.029266,3.551 1952,75.92522,177.91603,53.801865,113.278305,3.531 1952,2.3377223,-16.98817,17.169586,40.10429,3.52 1952,-10.564813,-2.2407875,40.823044,100.80655,3.52 1952,293.52954,199.99995,37.07077,74.9644,3.518 1952,130.4013,221.96175,33.040955,50.614822,3.517 1952,564.9951,-34.70826,30.111572,73.90177,3.51 1952,485.45422,-34.678684,29.31958,70.65998,3.504 1952,262.3429,198.99129,36.565582,74.06105,3.504 1952,470.11166,-34.43284,28.742126,73.3912,3.498 1952,172.34956,221.28168,29.270218,53.233643,3.495 1952,180.26862,202.44208,38.25731,76.43323,3.484 1952,2.249176,490.25452,19.523903,41.08081,3.473 1952,492.20422,236.27536,18.832306,35.31134,3.47 1952,346.70514,-1.7717209,21.152802,35.54518,3.428 1952,528.79553,-44.565895,46.14044,92.49266,3.421 1952,381.02368,173.85854,52.405945,121.56328,3.419 1952,378.22125,-16.886726,17.522217,39.984516,3.418 1952,326.42932,178.1778,30.251465,58.261703,3.387 1952,104.833534,222.49522,24.097603,37.861893,3.378 1952,156.289,-3.5285091,16.985413,34.917835,3.376 1952,508.13098,-61.7564,56.223755,130.69547,3.369 1952,245.8005,198.7417,36.524994,74.51071,3.354 1952,158.04231,227.55067,30.567444,53.047836,3.348 1952,336.42175,192.14503,22.91394,40.95279,3.344 1952,496.60474,-44.914062,45.936768,91.67841,3.325 1952,340.91254,-16.208199,32.70468,60.682278,3.305 1952,372.16144,194.73618,40.049866,79.444855,3.304 1952,598.82684,240.25563,36.4693,103.60582,3.258 1953,356.14166,210.60509,29.66629,58.929153,7.908 1953,622.63666,-34.23452,27.478699,77.78417,6.43 1953,627.1133,-19.28215,17.732178,48.919952,6.049 1953,-6.1293554,489.7275,18.783611,41.677277,5.755 1953,-12.896933,-39.861588,41.74192,101.69246,5.503 1953,-12.333417,477.74802,30.778023,62.847015,5.498 1953,-6.2052765,-18.757088,18.208952,44.013813,5.457 1953,602.8136,-57.11454,53.837402,133.26044,5.211 1953,-72.895775,265.62814,201.00494,462.74503,5.188 1953,593.8797,-44.818584,44.422607,95.013016,5.172 1953,586.06775,-96.89453,74.068726,228.3088,5.16 1953,613.16626,454.32535,39.50293,107.36661,5.064 1953,87.3114,234.99658,25.667305,42.06543,5.033 1953,-21.777632,402.5075,79.62358,175.42108,4.919 1953,366.46844,215.91469,23.38733,44.79033,4.899 1953,490.54428,-180.73325,234.28958,426.4781,4.887 1953,583.0742,410.74237,71.61212,177.27832,4.885 1953,626.12024,486.79892,21.408752,46.543976,4.808 1953,63.41846,232.12427,25.526257,44.658203,4.751 1953,104.68425,233.79243,24.165375,43.840164,4.682 1953,536.2539,310.47156,143.5517,342.2434,4.659 1953,91.91524,234.16866,32.933846,69.73341,4.614 1953,-19.648758,-86.45853,71.125824,196.30992,4.612 1953,342.16977,199.29858,38.493195,78.612854,4.57 1953,515.9415,222.52025,41.495667,91.61366,4.553 1953,547.9525,221.40977,40.261475,101.57237,4.491 1953,-5.1252136,228.35638,17.921314,43.966064,4.473 1953,493.29086,227.31177,237.45468,514.892,4.471 1953,618.45624,-9.833125,20.709045,48.39309,4.448 1953,-36.912773,-126.824066,117.12511,276.99704,4.396 1953,67.65445,233.61668,32.419266,68.61046,4.356 1953,169.85338,238.48935,22.002213,34.957977,4.316 1953,2.2110116,230.94872,21.597769,44.815384,4.296 1953,-70.40284,-188.08337,211.11163,454.73767,4.249 1953,186.27875,232.26321,20.67073,35.75055,4.249 1953,505.51935,-14.074236,19.428406,39.16896,4.088 1953,263.09512,196.75824,11.845337,22.12085,3.98 1953,499.7279,226.09549,42.925293,92.10843,3.971 1953,270.9402,197.18214,11.853485,22.173904,3.892 1953,-2.789421,31.202972,29.391422,76.1026,3.882 1953,575.8013,209.98572,50.580627,158.4143,3.871 1953,534.0386,-34.481808,29.712402,74.61616,3.836 1953,348.9677,189.03682,49.57483,108.21892,3.817 1953,564.9061,223.40703,40.67444,107.71266,3.793 1953,525.18933,201.50279,52.90753,121.72624,3.782 1953,570.1898,-17.055231,18.393799,40.03969,3.752 1953,100.959366,215.07788,37.944687,79.46936,3.725 1953,-10.883429,224.79803,29.219194,65.42566,3.694 1953,501.43643,-31.160456,29.832245,72.74474,3.694 1953,269.4675,205.69049,13.664459,23.751831,3.681 1953,617.8012,487.92682,21.704529,44.723328,3.65 1953,308.1833,198.55289,37.92633,81.822845,3.631 1953,513.26196,-14.342468,19.068115,38.990067,3.607 1953,579.1168,-15.381189,33.48047,64.3032,3.586 1953,293.51028,200.34052,37.157806,80.04968,3.572 1953,325.24033,202.27267,39.454193,76.37155,3.572 1953,-4.4697623,135.85504,17.197866,41.188843,3.563 1953,261.40768,205.08905,13.758728,24.1241,3.554 1953,54.574642,234.16577,31.996632,66.47809,3.525 1953,497.9028,-14.153673,19.08487,39.273483,3.507 1953,521.46155,-16.143486,18.762085,39.96974,3.507 1953,5.333147,224.27547,37.170235,94.40819,3.496 1953,178.11511,233.0115,20.610504,34.059143,3.49 1953,2.0610416,491.5787,19.823435,40.308014,3.488 1953,612.26495,245.82736,35.881104,122.14453,3.465 1953,515.75006,-32.250668,31.40332,70.88107,3.437 1953,-9.382299,274.90405,38.78682,108.60153,3.42 1953,523.3939,-14.631918,34.164185,64.991844,3.403 1953,-8.215153,41.95148,38.283043,105.94702,3.394 1953,-6.6152897,206.47433,36.225464,93.30203,3.365 1953,117.59563,213.87903,37.234116,79.8663,3.343 1953,547.18463,-16.549019,34.448914,66.25275,3.325 1954,385.2603,217.69968,21.125214,35.935867,23.016 1954,3.0905068,228.24065,30.380413,69.40178,10.877 1954,381.14648,212.58458,29.398987,58.89604,8.457 1954,398.60538,213.88225,24.53299,43.527695,7.611 1954,-6.079217,488.87692,18.552837,42.026825,6.442 1954,622.6099,-33.939247,26.992981,76.93122,6.033 1954,-12.348907,477.04895,30.48289,63.414,5.913 1954,18.796837,235.19608,32.9209,59.47284,5.709 1954,627.3119,-18.087955,17.156738,47.06123,5.705 1954,-17.297512,-63.799377,56.19012,148.43236,5.48 1954,32.08001,239.76122,27.133533,47.53041,5.472 1954,626.4767,488.2944,21.046265,44.77469,5.472 1954,-6.0386934,-18.715477,17.891926,44.13136,5.4 1954,-11.43285,-33.255035,29.933561,73.96675,5.312 1954,585.98254,-97.48158,74.51276,231.26135,5.292 1954,613.4644,454.5799,38.970215,107.50348,5.273 1954,-73.260735,265.367,201.64056,462.3498,5.206 1954,602.93506,-57.6133,53.5177,135.4812,5.068 1954,490.37787,-179.9155,234.75916,427.67615,5.059 1954,583.2162,411.1756,71.55249,176.9718,4.945 1954,-21.959549,401.90506,79.70909,175.71786,4.9 1954,436.80103,-34.217674,30.701538,69.64717,4.732 1954,536.06573,310.64075,143.73334,341.7788,4.711 1954,-5.9144597,221.52507,19.198662,46.6501,4.709 1954,-14.0518675,189.76193,48.610058,132.00943,4.663 1954,365.7757,209.31825,31.315247,65.56267,4.617 1954,594.184,-45.391384,44.684692,96.25049,4.512 1954,392.64587,219.51382,21.523376,47.741547,4.504 1954,13.928685,227.02325,26.815739,53.10663,4.483 1954,493.61203,226.98785,237.61752,515.13275,4.482 1954,-9.425841,238.33383,30.431496,69.84247,4.45 1954,-4.5984073,188.9157,17.39022,40.234802,4.424 1954,-5.603634,204.6287,18.716965,39.646027,4.337 1954,492.64703,-2.2446575,30.86383,60.831955,4.295 1954,-36.857147,-126.99392,116.82301,276.7388,4.287 1954,619.4137,-5.7834463,18.940979,43.357964,4.251 1954,13.89194,208.49641,51.65951,112.329025,4.207 1954,4.9320707,243.39447,38.36794,115.1781,4.206 1954,-70.50865,-188.31529,211.0794,454.87256,4.197 1954,422.92053,-34.849052,28.65689,71.22338,4.184 1954,293.56335,223.49147,28.816406,55.948715,4.076 1954,323.94717,227.17279,29.63086,63.732483,4.07 1954,379.22104,188.26434,51.377472,102.40344,3.979 1954,310.20123,227.8217,28.38736,58.984573,3.954 1954,1.8387842,220.53665,23.071186,52.80191,3.953 1954,385.50623,207.33296,19.121002,32.086777,3.91 1954,440.79077,-18.829788,20.32196,43.327534,3.906 1954,-11.510208,206.99171,30.642813,66.40004,3.894 1954,618.4215,489.9671,20.575623,41.943054,3.873 1954,433.1441,-19.424175,20.393066,44.244324,3.85 1954,340.71017,202.95966,39.052856,73.09973,3.841 1954,413.03342,173.38217,52.182037,116.978485,3.828 1954,460.55084,-33.37618,29.875732,73.824234,3.802 1954,425.66595,-20.159843,20.042236,44.29631,3.782 1954,-5.5494976,167.669,18.385391,46.077682,3.757 1954,305.49725,233.6851,22.487549,44.38762,3.735 1954,35.826836,213.4127,38.15883,80.0237,3.695 1954,2.191925,490.52814,19.691393,40.485107,3.674 1954,517.1151,-3.1512089,29.848022,63.93708,3.67 1954,-10.762458,-4.293442,41.22331,99.38604,3.605 1955,-5.9210243,488.95712,18.476593,42.29062,6.845 1955,361.21323,233.64517,21.71463,37.02307,6.532 1955,449.38068,214.40889,19.505096,38.54796,5.784 1955,-11.254874,-32.575,29.504604,72.88403,5.734 1955,-11.891089,477.93417,29.972023,62.880035,5.637 1955,289.29456,272.17612,20.29303,42.53128,5.588 1955,-6.0154223,-18.631668,18.006193,43.69849,5.547 1955,622.9881,-34.03113,26.331665,76.917046,5.491 1955,627.3863,-17.266624,16.84906,46.058895,5.479 1955,-17.14774,-63.135246,55.84453,147.31842,5.321 1955,325.5856,219.23718,29.429382,59.457703,5.199 1955,-72.982666,265.14288,201.15178,462.83368,5.175 1955,358.74402,214.82468,35.306213,73.624115,5.153 1955,490.65335,-182.4426,234.2344,429.28787,5.129 1955,369.4472,235.4395,21.812439,36.990677,5.102 1955,613.40045,454.8369,38.971313,107.12036,5.024 1955,583.08704,411.6407,71.57184,176.6258,5.009 1955,373.49542,213.77493,35.84903,72.976105,5.006 1955,-21.84699,402.24774,79.62345,175.51947,4.938 1955,585.4507,136.76868,54.024902,156.6253,4.892 1955,536.0081,309.77402,144.39197,342.58536,4.843 1955,586.3022,-98.86761,73.88098,232.97113,4.77 1955,-6.965967,242.86421,21.008873,46.839096,4.753 1955,444.39603,213.2004,17.656952,31.680695,4.704 1955,626.4106,487.74164,21.281921,45.845337,4.673 1955,493.60645,227.07162,237.32184,514.36584,4.583 1955,603.1908,-56.80716,53.296265,136.38686,4.582 1955,-36.538845,-127.10811,116.60768,276.68396,4.453 1955,-5.9044065,212.14449,18.063282,40.168884,4.417 1955,354.146,230.41238,21.761963,35.2399,4.405 1955,342.38477,213.80066,36.096497,75.32794,4.362 1955,-70.602905,-188.84827,211.56433,455.2029,4.294 1955,-6.515157,227.10588,19.927765,43.14421,4.181 1955,377.1905,230.98782,22.638184,37.786224,4.18 1955,610.5315,146.60674,38.095093,121.4518,4.158 1955,548.164,208.5647,41.902893,80.23999,4.129 1955,-9.86642,7.3560104,39.96131,104.493004,3.997 1955,312.43793,195.8773,20.36026,42.330093,3.926 1955,293.05396,207.39272,38.464905,79.475296,3.916 1955,594.36206,-45.803726,44.556274,97.868195,3.902 1955,561.5392,147.69199,66.68359,180.76547,3.878 1955,389.95795,211.46727,35.91623,74.51515,3.873 1955,382.7525,215.60071,23.099365,44.772766,3.862 1955,539.964,216.39073,33.69165,63.366013,3.85 1955,619.8197,-16.9633,16.502441,42.590324,3.848 1955,260.38687,205.34946,38.88446,78.39084,3.804 1955,-17.052992,156.72406,52.56598,140.0816,3.792 1955,310.66312,209.96606,38.083588,78.2005,3.744 1955,426.22174,210.94238,18.575684,39.19751,3.724 1955,-5.4841323,194.86292,17.683681,38.24234,3.693 1955,406.31564,200.06291,36.97107,76.252426,3.687 1955,5.9737253,164.7134,27.85136,67.876495,3.676 1955,516.28955,-15.173443,31.526367,66.68725,3.673 1955,-1.9062448,185.65337,28.55362,70.24602,3.581 1955,-8.742552,212.22913,38.40018,88.91235,3.573 1955,228.53833,204.70108,38.531982,78.417725,3.563 1955,283.4386,244.4283,30.365479,64.20381,3.55 1955,-12.137968,197.6432,30.3891,67.93858,3.534 1955,336.64334,232.64746,22.35138,39.886475,3.524 1955,0.5506635,243.29184,22.905659,53.256653,3.513 1955,563.4353,183.47697,42.87683,91.655716,3.507 1955,16.77874,201.3716,43.123596,79.56813,3.493 1955,346.04007,232.41658,21.240509,37.97917,3.487 1955,322.57507,230.81361,22.378662,42.46431,3.469 1955,573.5488,-21.839603,53.057312,131.71593,3.449 1955,429.37973,212.38652,30.070648,61.34813,3.448 1955,541.56366,-19.143864,55.8667,127.79146,3.443 1955,199.92424,230.34816,21.884628,35.99666,3.429 1955,618.0433,489.64957,21.271667,43.163177,3.427 1955,562.5474,10.64624,32.51996,73.16202,3.422 1955,-5.0159845,176.59392,17.53143,42.531555,3.417 1955,3.966341,233.67355,38.615707,106.22458,3.417 1955,564.1189,228.53806,40.97583,88.84235,3.399 1955,390.85272,32.260914,31.486023,74.78528,3.389 1955,-8.364357,67.85984,38.455544,107.109886,3.362 1955,244.27751,205.55312,39.053207,78.26723,3.353 1956,555.9462,216.02759,33.741333,67.69098,44.866 1956,459.42102,241.07886,30.12909,57.29309,8.384 1956,-6.0047817,489.17816,18.405418,41.68994,6.365 1956,393.9782,220.54552,20.400208,35.89299,5.882 1956,-12.531638,477.75455,30.968578,62.560516,5.869 1956,-6.1327715,-18.529251,18.135822,43.150627,5.754 1956,-11.503043,-32.36015,29.658203,71.93419,5.663 1956,546.3008,224.74782,43.87384,96.569595,5.661 1956,621.85693,-32.90808,27.797302,76.169014,5.632 1956,335.2094,215.71204,22.969452,43.726013,5.511 1956,613.248,453.51648,39.341675,108.98523,5.298 1956,-17.31567,-63.439293,55.944103,147.6764,5.257 1956,626.7186,-20.013557,18.068481,49.21255,5.184 1956,446.98743,239.81372,30.61377,56.26593,5.144 1956,-73.20863,265.67273,201.20561,462.00696,5.098 1956,579.24603,225.84837,40.69464,87.6436,5.044 1956,603.35455,-56.49903,53.096558,134.28305,5.007 1956,553.3997,204.62665,51.90625,97.8172,5.001 1956,299.39883,210.96439,17.704407,31.680725,4.992 1956,536.25146,310.27362,144.1557,341.09625,4.908 1956,497.938,241.13449,32.569946,62.909576,4.894 1956,514.07635,227.38815,41.263367,84.664185,4.891 1956,-22.116165,401.48053,79.98982,176.21295,4.885 1956,626.49347,486.95795,21.102844,46.54651,4.884 1956,583.1086,411.16156,71.76373,176.67487,4.859 1956,585.7063,-98.35583,74.96472,233.12204,4.809 1956,484.28833,236.85997,39.533875,91.20055,4.77 1956,494.17688,228.95895,236.80457,512.25305,4.603 1956,543.26733,217.88617,34.44641,71.129456,4.596 1956,490.84894,-180.41322,234.72723,424.35922,4.574 1956,593.8836,-45.319294,45.11371,97.79833,4.509 1956,-36.76107,-127.97644,116.9557,277.35367,4.487 1956,457.65973,258.5001,22.064545,43.315094,4.361 1956,-70.4079,-188.39314,211.19867,454.2245,4.244 1956,617.6102,-10.471594,21.695679,50.87227,4.111 1956,324.03003,221.04074,19.519043,39.53427,4.096 1956,422.11578,227.58069,37.442047,78.40326,4.056 1956,339.62213,208.5535,29.827087,56.98813,4.055 1956,571.6883,187.03004,55.11798,106.96855,4.048 1956,598.6266,226.5676,36.96234,94.55228,4.033 1956,355.57584,214.03496,40.13907,87.511185,4.024 1956,2.5211043,239.9383,19.564411,34.624146,4.018 1956,324.32785,218.60217,40.163757,84.145325,3.87 1956,388.17654,217.15547,38.945892,85.272995,3.866 1956,571.73145,231.98947,27.189575,50.93509,3.82 1956,405.39203,221.15047,38.084076,82.4026,3.806 1956,468.76788,230.71759,37.594147,77.806274,3.804 1956,285.29248,234.86852,52.849243,119.28401,3.77 1956,-5.5379725,230.08945,18.08273,39.56015,3.722 1956,372.03668,213.7984,39.772858,87.88403,3.668 1956,530.2024,231.76993,45.334473,95.52344,3.65 1956,521.5256,273.30936,22.791382,35.824738,3.634 1956,339.78885,214.85788,39.58618,86.71692,3.613 1957,529.7824,213.95023,22.200806,45.257355,26.053 1957,410.03262,207.06232,23.66507,47.203796,14.108 1957,367.50424,194.5202,25.144836,48.05208,7.11 1957,627.22766,-17.032785,17.051147,44.987267,6.355 1957,404.66995,197.68816,37.554962,81.66115,6.317 1957,-11.16832,-31.986729,29.573944,72.594185,6.153 1957,-5.882888,-17.758764,17.772503,42.424843,5.897 1957,-17.107286,-63.036003,55.96164,145.8809,5.525 1957,610.49695,-46.197056,41.713745,98.85268,5.329 1957,-6.235106,489.07996,18.867943,42.823914,5.304 1957,376.45145,206.85992,22.335785,44.502075,5.136 1957,612.914,454.34747,39.699524,108.40289,5.133 1957,-12.241398,477.57336,30.855648,62.517517,5.125 1957,-72.95703,266.2979,200.88756,460.74933,5.05 1957,626.59937,487.7798,20.744934,45.97113,4.961 1957,-21.92686,401.16,79.76352,176.52023,4.902 1957,586.03625,-97.38402,74.22095,228.77939,4.899 1957,582.96985,411.61322,71.78076,176.7345,4.818 1957,360.9037,205.41972,24.532532,50.612656,4.751 1957,516.15594,203.39719,39.594727,91.595795,4.745 1957,536.58386,309.96976,143.25879,342.48618,4.722 1957,489.7673,-179.32611,235.04715,424.1321,4.567 1957,-36.92685,-127.91785,116.18943,277.99854,4.495 1957,547.95795,-0.60783577,30.20758,61.031624,4.484 1957,371.0483,190.23064,37.940704,75.64299,4.426 1957,291.40527,200.70653,18.93332,39.232895,4.404 1957,493.61407,227.33383,237.71051,515.3894,4.402 1957,298.53308,202.08215,18.009155,35.09343,4.351 1957,357.0993,197.69002,39.073914,81.07951,4.341 1957,315.74368,203.42426,16.58435,34.16121,4.311 1957,-9.922677,-4.620117,39.90006,99.65529,4.31 1957,-70.641335,-189.4934,211.12762,455.41058,4.305 1957,543.0698,220.97101,23.166382,41.029236,4.289 1957,1.9234186,223.01941,19.290064,39.3042,4.272 1957,419.20007,203.41121,39.76291,95.19377,4.074 1957,306.9025,194.47481,18.610931,34.96849,3.962 1957,483.12222,204.45871,41.516876,96.31082,3.941 1957,555.2046,-13.10181,31.870667,65.31335,3.794 1957,228.51279,194.05127,29.27768,54.897644,3.753 1957,619.55927,-16.729122,16.464783,41.934063,3.706 1957,526.4946,-1.8970451,28.570557,59.917168,3.699 1957,522.63165,222.72362,22.675598,37.771683,3.691 1957,2.8955226,-16.104828,16.466316,39.27757,3.661 1957,452.318,203.94092,40.505524,98.38672,3.64 1957,530.1302,202.7644,38.723083,81.497345,3.61 1957,-4.617216,216.5794,17.940887,41.52176,3.61 1957,394.35086,210.79825,22.860382,44.093338,3.571 1957,351.9436,198.29942,26.24704,46.9879,3.57 1957,435.9171,203.78903,40.274353,97.29123,3.565 1957,1.8567109,-40.515137,43.13233,100.43402,3.536 1957,546.2231,-13.582214,17.365906,38.871246,3.535 1957,533.34937,-12.587036,31.087769,63.09777,3.531 1957,619.3015,228.2464,19.665405,48.973907,3.526 1957,-14.793233,153.15504,49.47217,138.92699,3.474 1957,404.57767,216.08847,21.549591,40.5744,3.469 1957,-7.5919414,37.299316,36.973404,104.98038,3.464 1958,454.5595,228.89046,24.502625,53.15193,24.519 1958,438.7069,227.38104,28.408722,70.789,9.966 1958,66.5683,242.56255,19.91677,34.65172,8.428 1958,452.9974,224.09625,35.594208,87.25885,7.817 1958,-11.4995575,-32.057953,29.616186,70.863625,6.515 1958,59.154716,241.7954,19.585915,34.805435,6.376 1958,-5.8963227,-18.491478,17.781738,42.635445,6.353 1958,-12.197248,476.61057,30.57311,64.44693,5.97 1958,622.8406,-32.997913,27.202759,74.48742,5.889 1958,-6.0279913,488.72955,18.537828,43.608154,5.761 1958,626.9205,-19.341127,18.124573,47.568317,5.738 1958,323.53607,223.13359,18.52594,33.955673,5.623 1958,612.98566,454.1497,39.634094,108.338104,5.235 1958,-17.070965,-63.18414,55.695454,145.8904,5.19 1958,-72.530045,265.7436,200.91269,462.11884,5.167 1958,327.31625,208.25523,26.886932,51.169357,5.154 1958,50.27041,239.7499,20.261902,37.712234,5.121 1958,626.47,487.7263,21.145996,45.767975,4.995 1958,-21.759272,402.4383,79.4844,175.39288,4.969 1958,583.0649,411.19464,71.72876,177.17664,4.947 1958,67.4871,241.81714,29.778862,53.925232,4.842 1958,536.21204,310.71445,143.94476,341.8488,4.835 1958,602.35376,-56.23888,53.70691,132.18642,4.734 1958,314.6345,224.77103,18.771576,34.816895,4.663 1958,597.2659,-33.678688,29.482788,73.64446,4.622 1958,493.8012,226.76443,237.3255,514.531,4.595 1958,617.91254,244.54619,20.246643,49.50615,4.588 1958,585.7667,-98.95326,75.11188,231.66913,4.555 1958,308.89594,224.38191,17.259216,32.75212,4.489 1958,489.20166,-178.11346,235.56897,423.12952,4.381 1958,81.316635,242.28242,20.045547,35.29637,4.338 1958,52.370575,238.91466,32.11689,57.055374,4.263 1958,-36.873962,-127.3536,116.31375,277.23843,4.196 1958,82.88895,240.28023,30.282509,58.466873,4.145 1958,2.9710567,-17.056498,16.659702,39.188354,4.137 1958,617.4001,-8.289095,21.422607,43.738815,4.127 1958,-70.8104,-188.46512,210.71118,453.0651,4.062 1958,389.32703,197.72098,28.507446,72.42139,3.992 1958,425.2963,212.28253,35.484314,84.089905,3.859 1958,405.68433,198.46053,37.55301,82.320175,3.725 1958,-10.310702,-5.2814255,40.540733,100.0228,3.64 1958,612.75226,203.73047,34.359314,111.32007,3.633 1958,587.66376,-13.542753,31.682495,60.739395,3.614 1958,462.07147,219.26164,23.642212,47.79213,3.57 1958,432.16724,192.93738,52.282654,114.38208,3.541 1958,585.4575,-17.430109,19.042847,42.863422,3.534 1958,617.5315,189.47693,25.009521,79.042145,3.532 1958,37.2641,234.80237,29.754799,53.311707,3.503 1958,570.3278,-17.792692,17.852722,42.685047,3.477 1958,440.28625,220.9438,22.483551,45.383774,3.474 1958,1.8092704,-41.585583,43.35702,101.91649,3.455 1958,609.5659,-17.55444,19.28534,42.392124,3.45 1958,466.3739,226.7536,38.43277,86.45331,3.444 1958,-7.9191732,40.41009,37.262035,103.492065,3.42 1958,300.73013,225.5394,16.50879,31.828247,3.414 1958,73.89137,240.31894,19.199905,32.501343,3.409 1959,549.4318,210.35052,34.78424,78.29193,80.867 1959,572.9915,206.99338,31.436646,65.25754,53.41 1959,580.50916,205.4232,34.43402,93.63747,16.157 1959,338.58545,209.27806,20.97055,40.74298,9.724 1959,398.37402,199.19594,26.146606,67.87663,7.022 1959,627.12787,-18.554895,17.1958,46.9091,6.496 1959,563.95776,211.63577,28.02771,66.7117,6.393 1959,622.4061,-34.175087,26.980774,76.74056,6.353 1959,-6.3085723,488.9153,19.100758,42.87497,6.337 1959,-5.802058,-16.67775,17.396492,41.490578,6.203 1959,-3.2364464,232.98428,28.224165,74.162384,6.186 1959,-12.560064,477.4473,30.918106,62.81082,5.822 1959,434.91626,192.28384,22.700623,55.228714,5.594 1959,-11.266495,-31.339565,29.547693,71.859665,5.482 1959,-72.90963,265.5125,201.10495,462.36542,5.166 1959,51.663025,226.46593,31.03421,61.77913,5.126 1959,614.5119,-18.97129,27.099792,73.826614,5.1 1959,-16.678,-61.42189,55.434555,143.37825,5.089 1959,540.8063,205.56577,52.93268,128.01886,5.086 1959,582.9653,411.6392,71.72803,176.41385,5.07 1959,613.0215,454.45587,39.358826,107.88934,5.003 1959,536.03375,309.66852,144.35284,342.98334,5.002 1959,-21.822304,402.48386,79.5222,175.31906,4.937 1959,626.661,488.41348,20.562195,45.54831,4.913 1959,34.331287,223.57309,33.693302,65.91458,4.884 1959,443.33246,174.6206,29.711182,74.143936,4.874 1959,572.5835,206.36922,50.89026,142.04564,4.842 1959,602.8501,-54.84548,52.918457,133.76161,4.764 1959,493.49454,227.54352,237.6688,514.1973,4.734 1959,585.9185,-98.66005,74.46265,229.91898,4.665 1959,532.60657,-181.52457,148.17126,421.39993,4.6 1959,-37.406536,-127.32382,117.313034,275.51337,4.586 1959,16.822323,223.2692,33.356552,63.76642,4.457 1959,64.287575,220.78204,34.44776,58.33484,4.339 1959,559.8203,197.60538,44.16101,106.87485,4.323 1959,328.99414,192.884,27.235565,54.941498,4.234 1959,323.11554,207.73105,19.400604,39.212677,4.212 1959,555.80853,235.1169,30.80194,71.03337,4.14 1959,-70.76492,-187.34598,211.2424,453.37012,4.038 1959,596.66284,214.51044,38.23755,108.62537,4.028 1959,-8.4565735,-5.4496307,38.170635,98.17687,3.977 1959,535.94794,228.83838,30.165955,65.9129,3.912 1959,594.6308,-44.896145,44.11438,98.62315,3.91 1959,474.50253,0.016613007,31.05835,64.38306,3.908 1959,613.579,204.2774,36.262695,108.07178,3.902 1960,-5.3816795,-18.659515,17.95838,45.204346,7.531 1960,369.2055,213.3256,22.799072,44.366226,6.842 1960,-6.2038045,488.75818,18.86277,43.106995,6.502 1960,623.3276,-33.966076,26.764893,76.55753,6.22 1960,-10.612464,-32.888054,29.097675,75.4527,5.945 1960,314.74213,204.74844,19.376678,37.226562,5.905 1960,-12.296103,476.77145,30.70144,63.98471,5.901 1960,612.9156,454.3457,39.650208,107.444885,5.66 1960,627.06757,-19.627506,17.86261,48.72919,5.591 1960,-72.84463,265.22403,200.95074,462.52365,5.167 1960,-19.948887,-87.481964,71.9288,197.758,5.086 1960,602.756,-58.392586,53.46521,134.923,5.05 1960,-21.843182,402.16614,79.52417,175.6062,4.973 1960,489.43872,-180.32866,235.55127,427.6137,4.96 1960,-36.44235,-128.92786,116.07559,278.5295,4.912 1960,582.81055,411.4527,71.98779,176.92584,4.88 1960,593.96594,-46.725822,44.69464,96.42988,4.844 1960,-71.403114,-189.28088,211.70096,455.18808,4.734 1960,376.55215,206.63167,21.702484,36.013214,4.729 1960,536.3168,310.4674,143.26111,342.07288,4.727 1960,586.1869,-101.412964,75.05975,236.76723,4.683 1960,626.00146,487.17654,21.6156,46.90158,4.671 1960,538.7069,85.8865,54.9541,130.35663,4.47 1960,493.5575,226.12119,238.06165,516.1643,4.427 1960,2.7783763,-16.903791,16.871937,43.524246,4.356 1960,530.6603,96.87344,42.430176,99.605865,4.186 1960,618.7588,-20.121147,18.302612,46.32545,4.097 1960,396.4813,68.39597,29.27475,67.47698,4.084 1960,359.55902,195.54071,28.89096,56.427185,4.068 1960,-9.350698,-19.288128,40.07508,102.093765,4.013 1960,5.7165585,69.61984,29.58932,68.33295,3.994 1960,382.54092,73.858215,27.110016,70.490234,3.978 1960,0.43116093,43.10886,25.968754,85.33374,3.964 1960,505.17407,231.275,32.694214,68.76947,3.896 1960,378.411,199.4652,29.899261,54.524277,3.888 1960,137.98308,225.06836,20.372284,30.575378,3.788 1960,508.92014,78.10814,55.3107,131.58975,3.731 1960,570.6907,-16.517792,17.2182,38.06671,3.729 1960,575.73755,72.4619,50.216553,161.46976,3.726 1960,-4.9792686,72.953384,19.67661,51.97969,3.691 1960,117.959274,204.89574,37.82193,77.278336,3.666 1960,3.5673213,240.94724,18.396921,34.032837,3.62 1960,9.882698,-28.455612,58.953285,130.26808,3.576 1960,101.697784,206.0705,37.547775,77.27405,3.571 1960,500.13425,98.4722,42.776093,100.64026,3.565 1960,406.27884,57.135376,29.981415,69.72699,3.541 1960,403.4172,215.80823,18.783752,32.316513,3.528 1960,578.6297,-15.96498,17.417786,38.11488,3.51 1960,41.180717,224.29176,22.809422,33.796677,3.499 1960,-4.520721,97.88983,17.071684,45.497406,3.492 1960,-14.675825,185.02011,48.3059,134.1716,3.462 1960,1.9583404,489.80942,19.871037,41.68747,3.432 1960,122.41452,233.58789,19.800339,32.246643,3.406 1960,394.6851,214.6171,19.22348,34.264557,3.403 1960,90.43418,-14.974426,57.891396,118.59446,3.388 1960,562.6106,90.90466,40.912964,110.465485,3.385 1960,480.43124,183.62201,28.752563,61.646088,3.364 1960,580.182,-16.774227,32.570312,61.31046,3.363 1960,-9.392606,33.13974,28.947521,75.538345,3.312 1960,410.83337,218.76927,18.750977,31.384354,3.305 1960,106.73569,232.23537,20.092392,29.783401,3.303 1960,10.5112095,-18.86916,17.4808,45.291237,3.272 1960,1.4920378,-39.704987,43.86453,102.64006,3.254 1960,-9.955029,100.421616,39.32426,108.23677,3.254 1960,58.038635,-13.695759,57.85572,116.03418,3.252 1960,274.4259,188.9589,19.43689,37.497757,3.25 1960,617.77356,489.29425,21.862,44.320618,3.245 1960,133.81021,204.33989,37.302383,77.88423,3.238 1960,68.56117,212.45,37.166138,73.488174,3.231 1960,36.29384,202.20894,38.95556,73.67424,3.228 1960,563.03265,-15.547291,16.831726,37.138325,3.219 1960,260.09622,196.18306,37.575043,93.040695,3.214 1960,275.50076,-15.392794,15.797577,37.370277,3.181 1960,368.9558,201.69945,21.76535,34.27719,3.179 1960,245.83603,196.97353,36.97928,91.13463,3.163 1960,597.4093,461.1047,38.663452,99.539215,3.143 1960,114.588326,232.85222,20.747795,31.05281,3.142 1960,146.46007,226.13716,20.294724,29.990372,3.136 1960,531.95593,-137.79153,116.3913,282.36188,3.135 1961,334.30292,194.83743,22.140808,44.17816,8.311 1961,79.22923,222.1301,23.329254,35.187836,7.822 1961,-11.453323,-31.698944,29.652388,72.53082,6.291 1961,-6.042165,489.30487,18.529448,42.322266,6.168 1961,437.87616,195.91699,39.64157,93.241516,6.039 1961,627.3563,-17.53787,17.131958,45.629974,5.898 1961,-6.0554256,-17.652487,17.689047,42.157475,5.661 1961,-11.886929,477.7114,30.154305,64.125275,5.637 1961,612.9925,455.1682,39.09906,106.953,5.593 1961,610.50714,-47.736004,42.00299,99.18301,5.325 1961,586.29156,-97.06981,74.17743,228.57848,5.275 1961,626.59064,487.53375,20.830933,46.350037,5.258 1961,-72.56358,266.93756,200.14066,460.8813,5.06 1961,87.72717,229.50345,22.67939,31.399902,5.01 1961,-16.716547,-62.537437,55.347755,145.27222,4.986 1961,-21.476679,403.42563,79.01853,174.81473,4.956 1961,490.2486,-180.26459,234.7232,425.35123,4.864 1961,583.3175,411.83685,71.22827,176.40057,4.861 1961,437.30057,-32.685802,28.907745,72.866005,4.657 1961,73.38545,221.43979,32.845642,55.563354,4.612 1961,536.87946,311.4764,142.27466,341.53152,4.57 1961,317.17307,199.70667,14.737579,32.591705,4.559 1961,61.158165,217.2203,30.103737,51.87805,4.419 1961,-70.78676,-188.23819,211.56612,453.717,4.352 1961,48.384804,228.44879,22.570847,35.261414,4.345 1961,-37.16268,-128.98994,116.59577,279.76672,4.312 1961,493.6289,226.18921,237.75659,516.72955,4.249 1961,405.41,-33.32622,28.641815,74.83447,4.216 1961,-8.865462,-5.170784,38.69442,100.35503,4.208 1961,404.16904,193.07649,39.80002,88.123886,4.183 1961,56.012474,221.26189,23.461998,39.19084,4.0 1961,344.06845,198.35469,21.228485,42.6425,3.987 1961,36.597767,218.0989,31.901142,54.740845,3.964 1961,84.638245,210.69006,38.559982,73.02188,3.905 1961,385.56543,198.14597,21.09201,44.65924,3.877 1961,391.74908,188.4171,26.878784,63.361923,3.866 1961,428.40344,196.96579,32.72525,69.06326,3.796 1961,97.3136,230.5119,21.83899,29.296356,3.772 1961,372.971,190.42708,28.595825,59.344788,3.757 1961,619.9561,-17.035841,16.227966,41.685127,3.755 1961,368.4105,198.22937,23.201294,45.22757,3.743 1961,2.3446476,491.00684,19.235685,40.511658,3.72 1961,527.7442,-41.874516,47.496643,89.44715,3.707 1961,404.71112,166.34402,31.178406,74.25522,3.702 1961,556.6205,-33.775593,29.970947,70.2164,3.667 1961,100.66998,209.90297,37.820297,73.601425,3.666 1961,105.61935,231.92328,20.788055,27.968414,3.654 1961,566.17175,172.00406,31.200562,66.704544,3.6 1961,-12.6344185,184.51816,46.528034,140.46652,3.598 1961,2.8658347,-15.961307,16.37935,39.053123,3.566 1961,462.17206,-35.481537,28.477997,76.39246,3.565 1961,450.16064,-18.105219,18.679504,41.778534,3.531 1961,137.64642,217.30693,20.25998,29.611832,3.504 1961,387.83017,-16.693884,34.11093,64.98752,3.466 1961,428.8432,-14.564438,29.811646,61.869537,3.459 1961,129.45364,217.07118,20.845673,29.413147,3.445 1961,442.39264,-18.81734,18.68158,43.15473,3.435 1961,-3.99279,65.35591,18.167295,50.20823,3.431 1961,398.2614,152.43127,29.76294,71.86304,3.427 1961,26.692139,223.4755,31.728329,56.45529,3.405 1961,386.2892,157.84149,20.461914,42.446655,3.377 1961,417.4452,174.27153,50.806396,123.056076,3.37 1961,420.4956,-31.744078,30.338776,74.49193,3.368 1961,384.17923,168.8498,50.11264,116.33215,3.367 1961,409.24866,-18.27752,19.504028,44.66426,3.348 1962,366.29764,213.39001,24.449799,40.30815,7.531 1962,-5.784212,-17.165058,17.410337,41.498337,6.266 1962,622.5382,-33.750763,27.214355,75.860985,6.112 1962,-11.196918,-31.399487,29.633175,71.96613,6.065 1962,626.9783,-18.43332,17.621216,47.165417,5.746 1962,612.6898,456.27655,39.41278,105.38135,5.68 1962,-12.095126,477.43713,30.432774,63.778076,5.487 1962,-6.2467427,489.77457,18.848478,42.142242,5.451 1962,490.2448,-182.12482,234.85358,430.1122,5.346 1962,586.24304,-99.60779,74.33588,234.75429,5.252 1962,626.4635,487.94003,21.004395,46.191437,5.221 1962,347.91855,212.85222,17.344543,37.18924,5.078 1962,-72.54294,266.67374,200.40042,461.30612,5.067 1962,-21.605526,403.3202,79.10392,174.53516,4.888 1962,602.9516,-57.33423,53.47357,135.55685,4.87 1962,583.1735,412.43286,71.44916,175.65466,4.851 1962,-16.57118,-62.50256,55.392906,145.435,4.759 1962,43.01345,230.86743,31.422195,51.98529,4.694 1962,536.5811,311.58112,142.89178,341.14252,4.528 1962,430.0369,202.87825,30.72638,70.25682,4.516 1962,-0.6065905,47.797344,25.340525,77.20862,4.472 1962,-70.65639,-187.93573,211.32251,453.40985,4.409 1962,-37.113007,-128.59988,116.583115,279.92725,4.345 1962,619.3188,-19.279362,17.339111,44.535393,4.335 1962,593.60724,-45.88592,45.52899,96.56186,4.326 1962,-1.5217364,235.86226,26.911766,60.675766,4.305 1962,493.58398,227.61014,237.58716,515.33435,4.235 1962,-7.601472,5.4608154,37.91823,106.87887,4.162 1962,516.7017,-34.973347,29.83783,75.262886,4.141 1962,339.18616,207.41483,17.871216,31.66687,4.141 1962,-15.145956,184.98233,47.840195,136.97183,4.083 1962,330.89185,205.98215,17.45993,32.02791,4.032 1962,201.91954,223.05873,19.275513,36.41188,3.987 1962,-5.116314,172.6285,17.518915,42.099518,3.906 1962,56.255737,243.62888,23.103912,35.63382,3.889 1962,54.156708,214.76501,36.77224,74.8786,3.869 1962,85.49342,215.92244,37.180214,72.94374,3.864 1962,555.8692,-15.5527725,33.13141,67.22276,3.857 1962,69.64261,215.23517,36.718735,74.7417,3.845 1962,28.888903,229.11978,30.39997,56.765594,3.828 1962,3.0987744,-15.229033,16.070389,37.91658,3.802 1962,362.42987,153.79398,28.674377,82.28317,3.798 1962,502.04434,-35.408073,29.186676,76.29785,3.78 1962,324.4093,205.88672,16.703918,32.67993,3.713 1962,-9.908533,170.86064,29.320868,71.90718,3.693 1962,513.01587,-20.955505,21.070984,46.556084,3.643 1962,6.942148,172.07504,29.851908,69.97055,3.639 1962,377.49396,-19.158289,19.182434,44.755672,3.547 1962,505.37692,-22.014397,20.564362,47.316334,3.536 1962,381.063,-8.854111,29.443756,66.6174,3.533 1962,316.85855,211.90302,15.032166,35.838074,3.517 1962,586.5088,185.06557,31.847046,77.52385,3.48 1962,355.43655,212.20897,19.376007,35.615295,3.467 1962,341.59833,-33.620968,29.314392,76.468506,3.458 1962,371.79764,205.70872,29.726074,50.501236,3.435 1962,573.3536,142.60236,52.353333,147.3778,3.428 1962,187.2821,223.83873,21.379318,32.110687,3.423 1962,248.54718,489.97626,22.954132,42.321533,3.423 1962,393.63345,-18.596891,18.627716,42.650585,3.42 1962,2.0715046,490.84055,19.63416,41.174164,3.417 1962,-4.331904,53.716896,17.413597,51.206993,3.406 1962,-5.245528,77.78311,19.009928,52.781372,3.386 1962,-5.216835,245.45328,18.993814,43.792175,3.354 1962,309.70587,211.34552,15.550629,37.36389,3.342 1962,345.72476,-18.069427,19.119415,44.64959,3.338 1962,394.89417,-16.170898,33.348083,61.755566,3.331 1962,101.204216,215.19992,36.660896,71.808105,3.328 1962,272.47394,489.65417,23.054077,42.815247,3.298 1962,123.112885,226.71182,18.725311,29.623016,3.291 1962,532.7674,-32.961452,30.719788,74.55899,3.283 1962,385.33432,-17.932455,18.993408,42.971718,3.271 1962,106.93008,231.78871,18.640594,29.350967,3.264 1962,573.8299,-23.20375,54.434143,131.20811,3.259 1962,561.9242,-18.084057,18.618591,41.756874,3.251 1962,565.8015,160.42422,39.55786,99.62961,3.24 1962,373.00287,-35.047134,30.31717,76.13941,3.237 1962,251.71281,485.13385,32.00688,55.831543,3.231 1962,406.21384,193.1397,29.867676,63.72908,3.225 1962,570.23035,-19.013662,18.023804,41.067234,3.221 1962,388.84363,-34.84364,29.635345,73.74143,3.204 1962,-4.9295573,156.00204,16.950567,41.04187,3.201 1962,476.6696,139.26112,54.181183,125.22972,3.199 1962,294.0125,-35.983253,27.72165,70.05542,3.194 1962,0.99593997,178.00276,21.119326,49.460785,3.182 1963,365.96698,216.72632,18.238586,36.18216,12.803 1963,-11.323414,-31.882557,30.053846,73.548195,6.186 1963,626.7903,-20.35236,18.010437,49.17263,5.978 1963,622.45966,-33.713223,27.221436,75.10001,5.938 1963,-6.05547,-16.83695,17.660986,41.64765,5.874 1963,-8.885361,464.27917,37.750683,92.550476,5.649 1963,505.2735,210.10971,30.021973,69.28787,5.495 1963,-6.0894976,489.9814,18.533855,41.483307,5.423 1963,365.73016,197.96695,26.447418,58.09851,5.342 1963,613.072,454.46497,39.488403,107.7168,5.236 1963,490.188,-181.87907,234.901,428.8553,5.212 1963,-16.832695,-62.122246,55.228687,144.34184,5.172 1963,-72.57883,265.95813,200.53468,461.3357,5.096 1963,586.2649,-98.07643,74.09033,230.01224,5.019 1963,602.7165,-55.91768,53.75531,131.68819,4.931 1963,583.15564,411.5677,71.47357,176.6341,4.907 1963,-21.667452,402.66968,79.23364,174.99658,4.894 1963,626.5259,488.3405,20.88385,45.33203,4.776 1963,539.84924,193.44864,18.744995,46.98346,4.764 1963,536.6131,310.71033,143.08954,341.8269,4.667 1963,-4.870495,235.94821,17.737165,37.796112,4.65 1963,593.36633,-44.13101,45.425293,93.737686,4.605 1963,-36.79665,-128.43323,116.502914,277.53467,4.505 1963,348.2633,218.46234,16.223083,35.071075,4.446 1963,493.76035,226.7739,237.26395,515.47546,4.406 1963,98.57055,226.91614,19.091454,28.617966,4.378 1963,339.37415,213.15266,16.543213,31.24376,4.34 1963,-70.935326,-188.4845,211.57434,454.18283,4.315 1963,485.25607,200.29578,28.377594,67.97717,4.26 1963,72.95564,233.82639,19.52916,31.55478,4.152 1963,65.17955,234.7629,19.238022,32.80394,4.14 1963,-7.2309375,5.0820236,37.56613,108.385574,4.11 1963,429.0694,211.60469,29.967041,61.61464,4.044 1963,357.07626,218.81245,17.33905,35.896423,4.012 1963,90.520584,226.85332,20.103386,30.270035,3.985 1963,50.788933,244.45622,19.401192,33.4438,3.982 1963,-15.253481,152.59674,49.84813,141.9173,3.924 1963,58.389545,246.13747,18.676487,31.507095,3.918 1963,2.5969667,-15.595608,16.873257,39.50026,3.857 1963,618.0548,-9.527437,20.920898,46.616013,3.827 1963,1.4524865,240.67978,20.399933,39.911316,3.817 1963,378.2831,220.0792,19.114105,38.191193,3.797 1963,388.96204,-33.97085,28.927979,74.251205,3.777 1963,367.818,159.4166,27.758728,81.59558,3.765 1963,405.85242,-14.6364765,29.442047,62.6075,3.632 1963,81.070335,227.47311,20.359451,31.81488,3.573 1963,-9.686377,120.62093,39.528267,101.69758,3.493 1963,393.56555,-17.875912,18.735626,44.235817,3.422 1963,394.1362,161.20209,19.089844,46.492996,3.416 1963,506.0011,-17.7765,18.76709,42.68836,3.41 1963,494.33182,207.2544,30.931305,66.687164,3.395 1963,2.7451718,-19.093369,31.264837,70.05883,3.362 1963,366.12552,-35.688164,28.92215,75.60642,3.357 1963,499.31946,-16.501472,32.12433,67.27568,3.337 1963,332.59943,216.54053,16.56955,35.40274,3.327 1963,466.8653,211.78717,20.317963,43.318695,3.324 1963,443.5893,208.35294,30.911194,56.37326,3.302 1963,412.897,-33.840683,28.439392,73.71714,3.264 1963,2.2262077,491.71216,19.385483,40.26068,3.256 1963,411.20667,233.66573,18.195343,41.849716,3.256 1963,371.3529,224.5907,16.688934,34.307587,3.245 1963,418.00183,233.06404,20.32434,43.554977,3.244 1963,588.31335,-15.184988,33.053528,64.2719,3.235 1963,493.219,-35.166786,29.065369,76.63837,3.214 1963,479.33606,184.49701,50.208557,110.92291,3.21 1963,612.53577,-3.7067184,38.07251,111.00015,3.205 1963,541.7272,188.3663,27.37976,66.641754,3.2 1963,401.84097,-16.688026,18.75418,42.645363,3.195 1963,283.4804,-1.1457024,18.440216,36.103275,3.188 1963,-5.3657,220.59375,18.131672,39.212708,3.187 1963,524.63873,-17.037594,30.856812,66.419975,3.174 1963,516.7744,196.59409,37.60376,78.12863,3.17 1963,598.4903,152.83835,37.429626,95.818054,3.165 1963,-4.033588,74.22071,17.434065,41.894493,3.162 1963,258.23425,211.53783,19.73233,32.025345,3.143 1963,454.00497,203.10262,28.637573,54.68834,3.115 1963,-10.180217,68.00573,27.887619,65.74326,3.114 1963,9.5356865,-92.6331,73.789474,210.12057,3.11 1963,363.59692,204.13748,18.972778,36.38965,3.11 1963,560.3489,-40.622395,46.930664,92.38478,3.108 1963,528.4846,-41.062447,46.85797,93.12822,3.108 1963,415.34332,181.27783,49.98755,118.435974,3.107 1963,410.13135,-16.78857,18.127197,42.690823,3.095 1964,395.06787,218.06854,20.427765,43.969482,20.581 1964,354.00116,217.69499,20.444153,35.914917,9.658 1964,407.40753,218.71878,21.644562,49.950012,8.407 1964,397.47955,201.95709,26.662567,62.59784,6.554 1964,467.81567,4.0628014,30.923096,87.785355,6.421 1964,-11.547157,-31.743256,29.906906,71.73949,6.304 1964,547.1858,199.66861,33.481384,69.82059,6.118 1964,-6.0942917,-17.590147,17.965494,42.07801,6.086 1964,-12.154371,477.4826,30.588243,63.968506,5.849 1964,-6.2684155,489.3903,18.830294,42.48398,5.802 1964,609.8546,-45.342567,42.61737,95.11758,5.774 1964,567.70154,209.79265,23.742065,46.032196,5.597 1964,626.38544,487.16937,20.960815,46.11133,5.585 1964,474.01617,208.9396,32.552185,86.10489,5.295 1964,612.911,454.5742,39.416748,107.611176,5.276 1964,627.0692,-19.170004,17.225159,47.28672,5.242 1964,490.24796,-181.68431,234.79202,428.49893,5.146 1964,-72.59668,266.32495,200.56697,461.10425,5.071 1964,337.4967,215.27194,19.19461,43.981415,4.964 1964,-20.124973,-86.720085,71.748215,195.7082,4.953 1964,458.6218,-10.621323,34.827576,74.39144,4.849 1964,-21.858246,402.4895,79.3954,175.29504,4.845 1964,583.0806,411.55002,71.533325,176.57132,4.842 1964,402.88773,230.16116,18.726227,41.12979,4.834 1964,2.8084075,229.08095,19.043324,39.876877,4.81 1964,586.20844,-97.7041,73.75751,231.61028,4.792 1964,536.5048,310.28735,143.23889,341.99634,4.725 1964,565.7136,193.58408,36.63678,89.51129,4.7 1964,-36.657524,-128.06532,116.440155,275.8057,4.621 1964,433.08038,229.31735,21.065674,44.53427,4.456 1964,493.86047,227.70303,236.91797,514.75415,4.437 1964,347.70227,217.99748,19.365845,39.75206,4.423 1964,-5.4674015,231.13004,17.694258,40.494507,4.391 1964,-9.177155,-20.51944,38.470196,101.179504,4.382 1964,586.18726,-2.803255,35.811707,68.551,4.377 1964,557.85425,-34.576675,29.673584,75.05398,4.364 1964,-70.68112,-188.98529,211.48074,455.40372,4.316 1964,482.9901,-2.2229576,31.580688,77.84511,4.305 1964,500.62085,202.79193,32.758545,71.14557,4.283 1964,464.03476,172.94467,48.06436,130.49515,4.224 1964,533.6753,200.79422,32.662537,64.694305,4.173 1964,452.77087,2.6230698,31.62854,81.6122,4.092 1964,544.3226,176.8713,49.01483,112.65924,3.971 1964,286.8833,197.53026,27.074585,52.170273,3.928 1964,513.50635,198.02765,30.85968,67.57333,3.897 1964,490.82123,11.349453,30.002686,87.192764,3.8 1964,337.44046,-7.80793,22.649689,46.90816,3.796 1964,598.6986,190.42125,37.05591,102.295425,3.781 1964,286.6148,-33.66527,28.685913,74.379425,3.774 1964,575.79736,172.39713,46.968933,121.54776,3.756 1964,617.5272,-8.384314,20.647339,45.53765,3.739 1964,540.7636,-36.173077,29.896057,74.59964,3.733 1964,537.45135,-7.5448666,20.765442,44.16555,3.719 1964,379.83902,225.42395,17.971191,37.372192,3.673 1964,300.9834,-33.968708,29.198517,76.41532,3.668 1964,327.88806,207.3015,26.66748,61.058243,3.66 1964,437.31696,-1.0725479,29.919922,76.48386,3.655 1964,444.3418,-12.733593,33.614594,73.93182,3.655 1964,573.2513,-14.765911,32.35736,66.92109,3.652 1964,497.1936,-2.2843933,35.460693,78.05963,3.649 1964,605.87244,-32.053566,29.087463,72.137634,3.611 1965,384.0357,218.74188,21.366058,40.67575,65.244 1965,444.70514,209.36043,29.08014,75.91594,9.584 1965,354.44067,213.05467,19.875305,44.202408,7.147 1965,371.3841,225.47998,18.978394,37.82257,6.829 1965,363.104,226.19029,18.443115,37.69789,6.414 1965,-6.062871,488.65863,18.687908,43.023804,6.136 1965,-11.595045,-32.084534,30.612268,72.8581,5.981 1965,610.2125,-45.16162,41.868835,97.206764,5.605 1965,627.20337,-17.799143,17.154297,45.64594,5.552 1965,-12.040235,476.93256,30.557552,63.439392,5.481 1965,375.55798,213.27492,33.914215,65.74553,5.432 1965,-6.133063,-17.342688,18.29367,42.352264,5.396 1965,613.2113,453.6257,39.29065,108.93765,5.336 1965,490.38498,-182.23767,235.11246,431.11188,5.211 1965,-72.72992,265.7613,201.0912,461.75848,5.199 1965,-16.954863,-61.759254,56.089676,141.91228,5.122 1965,391.8241,226.45857,19.832336,37.156967,5.121 1965,626.5226,487.42355,20.810913,46.31552,5.069 1965,346.56345,208.68106,20.925293,45.508347,5.058 1965,-21.83757,402.08386,79.517365,175.51538,4.921 1965,536.56055,309.87878,143.32623,342.46417,4.876 1965,556.2289,-3.6183662,30.852966,65.4657,4.853 1965,583.0358,410.89688,71.65631,177.3436,4.806 1965,585.74915,-97.69144,74.037476,232.75081,4.716 1965,-36.963364,-127.72256,116.576645,276.00073,4.538 1965,494.15268,226.31525,236.98819,515.1144,4.479 1965,584.02216,198.75656,32.593933,78.45157,4.462 1965,-70.84505,-189.10245,211.40872,455.27066,4.346 1965,537.4984,-0.80148697,33.346558,68.28369,4.307 1965,202.3036,224.3022,20.219742,36.121597,4.268 1965,338.9302,208.71245,20.035309,42.049942,4.239 1965,418.53854,231.62468,20.861176,40.308945,4.195 1965,501.03418,-33.578087,30.124329,73.26556,4.172 1965,574.0735,182.13809,50.874084,146.03928,4.143 1965,508.68515,-17.803036,33.00418,68.942085,4.078 1965,618.6913,-4.386936,18.88916,40.9324,4.064 1965,433.08496,209.17502,29.703674,69.802734,4.01 1965,-14.934973,184.66682,49.180878,133.64525,3.969 1965,122.73401,201.96127,18.667953,39.54669,3.923 1965,106.927734,216.78267,18.484802,31.195816,3.91 1965,-8.3189125,-5.49263,39.145203,99.85685,3.893 1965,483.90457,99.62509,19.10083,48.98767,3.869 1965,380.06622,232.45369,16.823578,35.470413,3.834 1965,5.4355993,57.096382,28.579144,78.40496,3.831 1965,-5.1741734,186.6442,18.588583,42.75197,3.819 1965,322.55582,-15.231508,17.087128,39.352943,3.813 1965,612.2812,199.49806,37.487,117.061386,3.79 1965,436.4419,99.59985,29.057648,100.45474,3.774 1965,477.791,-33.286808,28.477753,70.09483,3.772 1965,97.58668,218.09747,20.32698,31.742004,3.709 1965,588.7303,-5.1439743,30.601135,69.082565,3.704 1965,176.59314,222.11572,21.951782,33.769485,3.697 1965,606.0989,-33.770546,28.216125,75.60943,3.69 1965,596.0439,196.00273,38.387146,115.89491,3.673 1965,313.9663,-16.744335,17.7771,41.123466,3.659 1965,573.3149,-31.500168,28.615906,76.281685,3.655 1965,4.8550806,209.86363,37.864952,80.65871,3.628 1965,596.7815,-19.239004,40.074646,89.989204,3.616 1965,612.80536,311.2694,37.405212,113.79675,3.604 1965,184.906,223.84099,22.313065,33.32161,3.601 1965,155.32886,177.83997,55.133636,105.96283,3.596 1965,74.09173,224.17458,22.085686,33.935623,3.581 1965,-5.4160285,232.38943,17.468874,35.804718,3.563 1965,1.5291047,-39.367104,43.29723,98.28437,3.557 1965,488.14502,-7.4236917,22.709229,41.222496,3.522 1965,251.57228,231.54982,20.225784,36.518448,3.52 1966,565.47986,220.1685,45.968384,103.06093,89.67 1966,459.64157,222.97772,30.379425,69.129944,89.3 1966,623.1405,-34.311028,25.999146,78.22825,6.659 1966,558.8651,226.88083,34.431946,79.5961,6.617 1966,370.19165,220.15273,21.67157,44.309128,6.418 1966,-11.290221,-31.472946,29.837154,72.371,6.279 1966,627.1614,-18.66199,17.02124,48.40267,6.117 1966,-5.936614,-17.456877,17.71329,42.467457,6.114 1966,-6.2673426,489.46198,18.744991,42.22931,5.82 1966,482.0386,224.7401,41.021515,88.11037,5.653 1966,-12.407981,477.87723,30.73928,63.362946,5.473 1966,587.84406,210.72948,46.41797,126.07915,5.384 1966,580.6061,221.376,37.25598,75.58191,5.382 1966,626.67535,488.7708,20.715881,44.842224,5.263 1966,612.9566,454.93893,39.767456,106.8237,5.203 1966,-72.86301,265.66846,201.05066,461.6294,5.134 1966,583.0135,412.50735,71.740906,175.51889,5.121 1966,536.0515,309.96463,144.383,341.91672,5.072 1966,-21.886217,402.5093,79.646645,175.41537,4.916 1966,602.7383,-54.782906,53.090515,138.91487,4.905 1966,-20.027138,-87.018585,71.72078,197.01576,4.848 1966,448.026,205.0041,51.28018,101.37944,4.826 1966,494.14917,227.29645,236.78503,513.8164,4.742 1966,333.5048,224.90495,15.136932,30.263382,4.717 1966,469.25153,219.38446,24.560669,51.528473,4.67 1966,74.408966,219.44707,21.354622,40.116623,4.637 1966,585.34247,-99.59365,75.67975,234.71805,4.593 1966,615.7228,-20.090324,25.996643,76.27017,4.582 1966,-36.333496,-128.18109,116.70031,277.03323,4.558 1966,87.25548,226.94872,23.418472,39.036545,4.521 1966,509.69232,267.44385,23.979492,37.428192,4.519 1966,43.50547,229.08882,20.514961,38.571518,4.51 1966,612.8549,231.7465,35.940613,109.52431,4.495 1966,49.742313,219.10538,20.650745,43.353943,4.377 1966,194.56407,230.70082,19.932693,31.295639,4.375 1966,-9.446249,-19.745922,38.59214,101.358154,4.273 1966,-70.77586,-188.46172,211.47566,454.64844,4.261 1966,490.76886,-177.77654,234.48737,422.1258,4.238 1966,570.1527,223.70137,55.53247,156.25359,4.145 1966,202.92459,231.95763,19.137054,31.318405,4.136 1966,618.6932,240.18335,19.922852,54.400085,4.086 1966,3.0295615,217.12424,18.817123,45.523926,4.085 1966,410.95715,60.538185,36.050354,65.157104,4.003 1966,325.8791,226.2242,15.362183,29.750046,3.917 1966,448.34143,225.88376,30.05481,71.737976,3.89 1967,3.2478273,181.90057,30.388891,68.75563,8.935 1967,408.3478,215.7587,21.8721,49.52353,7.82 1967,426.19687,207.93869,29.25351,58.2576,7.608 1967,627.15155,-18.450977,17.25055,47.368855,6.156 1967,-11.442457,-32.183,29.787102,72.39651,6.146 1967,-5.9591923,-17.492214,17.672073,42.61419,6.04 1967,413.6573,196.06764,29.82129,66.67552,5.79 1967,623.10974,-33.004055,26.564453,74.949715,5.678 1967,-12.413094,477.42044,31.03149,63.21225,5.487 1967,-6.518004,489.05762,19.093119,42.92218,5.482 1967,453.10147,227.3643,30.109436,62.19722,5.351 1967,602.44763,-57.10331,53.99597,139.77382,5.207 1967,-72.69466,266.32077,200.91432,460.32376,5.083 1967,613.0051,455.06134,39.40393,107.21777,5.079 1967,446.6084,215.55945,31.188843,56.47357,5.032 1967,489.6958,-180.38376,236.25366,427.45447,5.013 1967,583.0221,411.35693,71.77478,177.16333,4.909 1967,-21.819687,402.03015,79.335556,175.60211,4.862 1967,626.59906,487.76526,20.683594,46.40393,4.838 1967,-19.994055,-86.87131,71.53389,196.13734,4.835 1967,331.4599,212.03035,20.003448,40.511505,4.824 1967,585.59985,-101.14282,75.94525,235.13953,4.822 1967,516.1018,195.04144,30.329956,86.63165,4.797 1967,536.4633,310.69397,143.34454,341.85266,4.737 1967,427.2514,228.69606,19.511597,44.61415,4.656 1967,-36.641655,-128.0028,116.67888,277.58273,4.61 1967,493.95248,227.2395,236.84866,514.5934,4.506 1967,417.5092,221.73508,21.3461,46.939117,4.488 1967,-5.4944324,181.63832,19.968023,49.321457,4.389 1967,-70.9454,-188.98882,211.67383,455.30847,4.337 1967,267.0459,224.13347,18.346497,32.899796,4.296 1967,-9.121695,-20.369123,38.32685,100.32657,4.124 1967,221.13547,216.80086,15.298111,26.665924,4.082 1967,511.7294,224.22052,33.393524,83.91058,4.005 1967,444.8872,182.28189,34.017853,68.6499,3.958 1967,506.81552,185.16504,49.701263,132.57861,3.947 1967,9.320971,207.92569,19.377798,42.566864,3.922 1967,434.61288,200.35938,31.301697,61.676453,3.905 1967,418.76767,168.32849,41.30652,87.47011,3.891 1967,0.88182926,203.14975,26.06062,65.12775,3.886 1967,282.24875,214.24559,18.461975,32.785294,3.871 1967,337.65353,207.95801,21.343323,39.072662,3.767 1967,618.75854,-16.771101,17.782959,43.761673,3.761 1967,-14.278315,178.48515,47.897835,137.94313,3.702 1967,307.9883,226.25414,17.686462,33.214584,3.698 1967,318.56665,-35.26308,28.138672,77.334076,3.684 1967,282.0151,-15.767559,17.761597,39.891216,3.658 1967,444.6537,184.80356,51.86441,114.07565,3.651 1967,301.71423,199.58997,28.344635,55.210052,3.636 1967,194.892,225.69408,20.06047,30.31218,3.6 1967,276.03192,213.04883,17.214417,29.184067,3.529 1967,300.6201,226.5291,16.81488,31.28209,3.52 1967,-5.1270323,52.03723,17.695616,46.723633,3.502 1967,2.8175764,-16.239252,16.74776,39.82473,3.451 1968,491.48343,153.48215,52.804535,139.25479,19.438 1968,463.54184,222.25024,23.77536,43.163757,10.574 1968,448.44336,222.96078,21.88971,40.3909,7.173 1968,478.42633,209.19597,32.19348,67.01155,6.882 1968,-11.640687,-31.760836,30.34311,74.511055,6.475 1968,-5.8779,-16.481981,17.525415,42.50882,6.042 1968,627.1941,-18.339676,17.127136,47.107513,5.869 1968,626.4379,486.882,20.870361,46.410065,5.67 1968,-12.660124,477.87207,31.322805,62.951782,5.637 1968,612.8213,454.17776,39.32483,108.46774,5.515 1968,622.9687,-33.941956,26.000671,75.98598,5.23 1968,468.2433,216.51738,29.729431,56.92021,5.182 1968,-6.4211698,489.53537,19.092896,42.140778,5.164 1968,490.3039,-180.12277,235.58936,427.61148,5.081 1968,-72.608025,266.02893,200.59534,461.15503,5.043 1968,585.83826,-97.70164,74.59253,229.7554,5.016 1968,603.07855,-57.200615,53.02954,135.03218,4.913 1968,-20.098125,-86.70331,71.80565,196.22493,4.902 1968,-21.798536,402.38165,79.30132,175.29944,4.847 1968,441.23682,196.47296,27.544495,64.426056,4.84 1968,490.5757,213.10484,35.679596,76.42525,4.804 1968,583.14685,411.64883,71.44977,176.35495,4.735 1968,536.799,311.25916,142.63434,341.05243,4.691 1968,-36.21534,-128.04219,116.59312,276.39468,4.651 1968,455.7378,199.895,27.911133,62.830643,4.633 1968,494.4255,228.13019,236.82693,514.2668,4.425 1968,507.64096,144.55225,33.424774,77.17261,4.354 1968,379.54556,-18.977844,33.56964,70.033,4.293 1968,-70.828575,-188.52948,211.32593,455.16544,4.29 1968,594.559,-45.47882,44.684265,95.06275,4.29 1968,-9.501846,-20.123156,38.577972,100.13917,4.182 1968,316.03876,217.1363,16.82965,28.016861,4.178 1968,619.9022,-17.483524,17.175232,43.85321,4.112 1968,499.53052,162.38097,32.8927,98.34151,4.064 1968,0.7275295,154.707,24.1996,81.0273,3.992 1968,339.19452,212.45612,20.451416,36.840897,3.926 1968,459.56485,232.28868,19.011322,37.15416,3.839 1968,211.45653,231.0841,17.168182,29.097046,3.831 1968,2.5266004,-14.732256,16.664064,39.195255,3.767 1968,203.58975,232.00319,17.401901,29.461868,3.669 1968,179.25906,225.87665,18.887787,27.830643,3.597 1968,452.91113,220.44444,39.554626,71.77055,3.596 1968,252.85757,235.21689,16.59317,27.119385,3.587 1968,437.53323,220.03206,39.564087,72.92439,3.557 1968,219.23409,232.39804,17.008148,27.720093,3.518 1968,-5.518364,88.613716,17.516697,43.38021,3.505 1968,426.70325,-40.446693,57.43216,134.12724,3.504 1968,12.1363735,-21.614784,55.775337,132.0793,3.495 1968,348.19858,-34.4445,29.424469,71.47723,3.48 1968,394.7087,211.48831,18.622528,36.73198,3.438 1968,323.90988,215.2212,17.618164,30.799759,3.385 1968,326.11066,-34.76368,28.740448,69.94615,3.383 1968,493.89288,140.36307,31.950928,83.0585,3.36 1968,244.35443,233.93066,17.501831,27.69159,3.357 1968,518.9614,154.53357,34.501526,86.431854,3.318 1968,503.60294,197.65996,34.356476,96.90901,3.315 1968,477.0059,174.94188,31.852173,81.53316,3.286 1969,353.7051,199.11723,21.970581,39.872986,7.617 1969,-11.471205,-32.718422,30.580433,73.85111,6.011 1969,-11.697561,476.71478,29.922794,64.59906,5.961 1969,-6.108713,489.01523,18.622145,42.65146,5.849 1969,610.4537,-47.71307,42.191833,99.183525,5.774 1969,5.9014583,44.278122,28.146416,71.50435,5.394 1969,-20.296593,-85.608536,72.04725,194.5773,5.253 1969,-5.939207,-17.301546,18.226921,42.65628,5.161 1969,586.16797,-99.04157,74.89343,230.74896,5.122 1969,-72.646645,266.1787,200.5766,461.31567,5.072 1969,583.1762,411.93848,71.40973,176.06555,5.016 1969,613.02924,454.65955,39.27899,107.27649,5.002 1969,489.38013,-181.40982,235.57776,426.83826,4.923 1969,627.1625,-18.780294,17.201477,47.250328,4.91 1969,-21.819115,402.31927,79.399895,175.46185,4.867 1969,626.2513,487.20563,21.185303,46.772522,4.862 1969,-36.27193,-126.707855,116.1268,273.6932,4.783 1969,347.5882,202.01881,19.573944,39.49832,4.755 1969,536.50305,310.75787,143.29742,342.38422,4.655 1969,478.43735,196.76508,25.940979,60.54785,4.515 1969,493.65704,226.96747,237.52167,515.56146,4.393 1969,-70.69039,-189.51189,211.14026,456.53772,4.336 1969,536.8975,181.50531,19.74408,40.223038,4.322 1969,440.66998,-3.4258919,33.318237,62.544548,4.197 1969,-9.282857,-19.626759,38.48579,100.086075,4.054 1969,258.25076,204.22835,19.64032,31.570435,4.011 1969,155.12033,215.3808,18.496399,28.936752,3.996 1969,569.1229,185.60901,32.28827,80.778625,3.974 1969,90.406784,216.60683,19.536613,38.423325,3.954 1969,402.32275,203.03664,21.295105,38.460358,3.903 1969,464.03506,187.64874,29.803772,67.34221,3.88 1969,323.12854,200.2931,18.305481,31.805511,3.879 1969,487.67206,203.76744,21.189636,46.77646,3.834 1969,2.500186,49.850742,20.902409,53.49377,3.832 1969,425.60406,-15.079031,18.759155,39.983524,3.796 1969,360.72937,209.0859,19.25351,35.93994,3.79 1969,341.14102,202.82501,17.995514,36.70308,3.757 1969,81.78728,216.70439,19.765427,39.042694,3.748 1969,-5.258936,185.37875,18.820238,43.549652,3.719 1969,339.31882,189.78384,18.239319,31.133102,3.707 1969,4.343978,209.64688,29.301544,67.86502,3.695 1969,432.88086,-15.7519045,19.443634,41.630886,3.672 1969,440.73163,-18.311193,19.653046,43.100857,3.65 1969,533.163,-31.667767,29.104065,63.13124,3.558 1969,427.79663,-13.158836,33.41913,63.456623,3.55 1969,539.1234,-23.644577,59.069824,132.92882,3.529 1969,527.84204,-41.42005,47.09088,91.29067,3.516 1969,1.4332914,-38.83822,43.13889,99.986595,3.498 1969,266.02612,208.97707,19.266815,30.180283,3.472 1969,571.9445,174.79613,52.56714,143.709,3.468 1969,274.0567,208.08136,19.620026,29.695633,3.451 1969,75.78305,210.62903,30.326996,58.389557,3.429 1969,560.2111,-42.453686,46.950012,92.085,3.425 1969,105.80748,209.80818,19.421944,38.40866,3.404 1969,189.64409,220.60443,15.396286,22.067795,3.401 1969,531.17175,187.91017,19.32544,38.86302,3.4 1969,619.5889,-19.406942,17.682068,44.114258,3.394 1969,197.19241,220.39853,15.395294,22.78624,3.386 1969,449.58194,-18.8204,19.205292,42.124615,3.382 1969,573.44495,163.01744,37.241943,80.123535,3.381 1969,244.12485,218.54642,16.896698,27.57611,3.379 1969,-5.3678946,134.58212,17.891344,44.009247,3.371 1969,252.86592,219.26514,16.956741,26.777863,3.369 1969,422.23666,-33.91709,29.236694,74.73961,3.361 1969,122.486145,211.1896,18.969955,35.14966,3.347 1969,444.2772,-32.752438,30.118805,72.18756,3.313 1969,156.3327,-1.358923,17.18982,32.69156,3.298 1969,490.44122,-31.588354,58.74713,124.14936,3.297 1969,513.5807,-17.847496,19.336609,39.09323,3.295 1969,402.4203,183.81139,19.873474,40.89662,3.283 1969,-5.3602943,151.87418,17.904856,44.585754,3.282 1969,205.26944,219.94446,14.205597,23.05658,3.277 1969,172.1125,211.84924,16.710297,26.371063,3.262 1969,171.9982,-0.4439335,16.812225,31.825758,3.254 1969,83.74442,202.55861,30.49385,56.42418,3.246 1969,458.71533,-32.516266,58.067444,123.13879,3.237 1969,2.3975575,-16.592304,17.595634,41.15812,3.212 1969,529.68005,-16.889078,19.339172,38.55164,3.206 1969,418.23584,-14.07482,18.062744,39.059193,3.193 1969,558.2948,174.05159,30.84552,78.705795,3.185 1969,236.01128,220.09807,16.070358,24.779068,3.178 1969,606.38214,-20.207642,29.31903,66.42432,3.17 1969,531.5724,-135.90172,115.84857,270.25613,3.165 1969,380.7729,41.974316,31.651978,75.64548,3.151 1970,530.4087,206.63773,31.501404,70.54416,7.912 1970,383.47156,213.28432,23.80194,47.874466,7.658 1970,389.11362,202.39043,28.368256,56.97966,7.109 1970,-11.261274,-32.142242,29.988546,76.57157,6.9 1970,71.10777,213.05486,25.149689,44.876175,6.5 1970,370.09113,210.2714,21.04654,40.239807,6.147 1970,420.8524,194.15799,29.851715,60.15738,6.111 1970,-6.263112,-16.38713,17.96238,44.101444,5.763 1970,610.5632,-47.9209,41.45819,100.823814,5.709 1970,-9.192026,463.90894,37.85981,92.61127,5.598 1970,-6.1451845,488.60577,18.73534,43.30188,5.595 1970,626.47614,487.4746,20.815247,46.102295,5.57 1970,-20.299356,-86.03274,71.94624,194.28563,5.146 1970,612.9666,454.62582,39.352356,107.34897,5.057 1970,-72.870224,265.35504,200.61145,462.1225,5.054 1970,583.21387,411.794,71.46393,176.41473,5.041 1970,-21.814293,401.91248,79.4769,175.706,4.895 1970,586.3537,-99.0222,74.28851,230.08554,4.871 1970,589.5439,177.69214,33.032654,62.24791,4.854 1970,627.136,-20.301632,18.092041,46.803642,4.839 1970,532.7334,-182.49876,148.64203,423.57755,4.82 1970,536.2485,310.58093,144.0011,342.74756,4.794 1970,-36.521282,-126.74851,116.28462,273.94528,4.7 1970,493.79877,226.66754,237.08624,515.2018,4.507 1970,73.328995,229.27724,22.540054,43.069168,4.355 1970,-70.64318,-188.9804,211.24905,455.61163,4.354 1970,405.28488,197.64581,29.62497,57.767685,4.335 1970,598.1634,175.39754,36.67395,99.13603,4.281 1970,259.4543,233.19754,19.106628,30.41034,4.247 1970,429.81897,204.3914,28.302338,58.86989,4.233 1970,306.23346,176.50851,17.784485,38.64363,4.218 1970,350.20404,203.23792,26.390625,50.22586,4.216 1970,-9.322101,-18.741652,38.648308,98.7934,4.2 1970,121.70745,218.66586,21.611015,37.84198,4.103 1970,612.8137,186.51794,36.63501,108.413025,4.062 1970,379.32672,222.9146,18.678528,38.080246,4.056 1970,2.0294971,-15.45304,17.096432,43.01465,4.043 1970,518.2689,198.19423,31.810059,70.20604,3.97 1970,252.38914,235.05115,19.092606,29.535034,3.945 1970,432.32742,193.38315,21.55835,43.49707,3.927 1970,617.7233,179.0387,23.905212,62.555466,3.911 1970,580.9384,188.29901,40.657166,97.007385,3.871 1970,465.14923,197.97675,22.509003,45.582,3.838 1970,603.12964,-27.181545,52.532837,134.74556,3.789 1970,436.15936,188.43391,29.619385,60.305054,3.681 1970,605.0021,-35.11346,29.32135,74.56664,3.614 1970,60.33525,218.86432,33.981537,58.81122,3.613 1970,511.34338,189.65756,28.557678,62.617966,3.59 1970,541.43286,161.33597,53.99182,110.56186,3.543 1970,618.0796,-20.725105,19.338257,45.940273,3.516 1970,425.82153,215.72496,20.628296,40.943314,3.497 1970,8.838444,-89.32956,73.87596,205.00168,3.497 1970,577.34045,189.79276,23.348267,43.34781,3.484 1970,446.0409,204.01859,27.709076,57.438843,3.424 1970,532.98816,184.24075,38.94806,73.928955,3.413 1970,172.52135,222.4022,16.440292,24.027405,3.411 1970,589.9624,-35.328716,28.604614,73.96125,3.383 1970,564.0551,165.77368,40.06427,79.32298,3.38 1970,362.60992,213.12239,20.501373,38.871475,3.369 1970,561.78784,188.8332,23.171692,43.690018,3.35 1970,451.16394,211.77827,41.602966,83.83296,3.344 1970,485.1187,181.71674,39.34778,78.70361,3.325 1970,1.7682886,-37.565056,43.06602,98.33005,3.313 1970,573.89655,-24.345684,53.938904,127.420715,3.31 1970,-4.897371,263.32162,16.583342,39.476593,3.284 1970,589.1985,-57.083466,53.447083,133.76157,3.255 1971,369.39548,203.93355,23.76419,44.1071,17.644 1971,451.28036,179.08144,28.695526,74.278946,12.795 1971,384.36774,205.5099,21.822876,40.089508,6.748 1971,424.273,207.69922,21.098541,46.42659,6.283 1971,-11.232384,-32.53256,29.782291,74.361206,5.876 1971,-6.225424,-18.685919,18.230019,45.192463,5.606 1971,-8.965671,464.18115,37.90402,92.78955,5.581 1971,627.3609,-17.614555,16.715149,47.625065,5.526 1971,611.41345,-49.942245,41.211548,105.80195,5.249 1971,-6.226577,489.44415,18.821386,42.241943,5.179 1971,461.78265,183.86908,21.487427,50.995697,5.08 1971,-72.585205,266.12366,200.39574,461.1455,5.058 1971,-16.889015,-63.00735,55.81916,143.52336,5.04 1971,583.0151,412.21747,71.70148,175.97693,5.027 1971,626.5904,488.27032,20.869995,45.749207,4.938 1971,393.05508,205.40126,21.823914,38.73477,4.937 1971,-21.684992,402.76205,79.22238,174.9639,4.891 1971,585.8039,-102.14687,75.64398,237.40717,4.828 1971,489.83832,-181.39104,235.4798,425.958,4.796 1971,612.92413,455.5685,39.21942,106.355804,4.788 1971,536.3287,310.43143,143.51532,342.38632,4.739 1971,613.3326,205.84552,27.195984,85.84564,4.615 1971,-36.69727,-128.26773,116.36217,277.16046,4.545 1971,414.2881,-3.1346645,28.213135,63.296173,4.472 1971,493.5951,226.69516,237.55511,515.2809,4.464 1971,-70.747765,-189.323,211.3117,455.49112,4.368 1971,427.97836,197.99597,29.072693,59.34436,4.274 1971,-1.0599029,188.09967,27.328318,64.763336,4.171 1971,316.02136,180.91165,15.8498535,30.279419,4.087 1971,72.76456,197.5766,21.88536,41.084778,4.08 1971,438.8818,189.71288,29.871826,69.02272,4.061 1971,58.68347,196.03947,20.62854,41.775925,3.998 1971,373.92725,206.80606,26.8461,57.455444,3.918 1971,402.42264,216.15039,19.12558,39.332245,3.914 1971,45.877476,195.49756,29.532528,56.38568,3.791 1971,-8.766066,-6.2611427,39.03086,101.0452,3.695 1971,297.36978,205.32912,20.19217,34.490967,3.678 1971,407.14047,197.00739,27.814026,58.02893,3.672 1971,283.11765,202.70491,19.023682,33.65573,3.613 1971,426.63727,-14.012751,16.609467,38.612816,3.595 1971,2.539109,192.73776,39.212204,97.70364,3.585 1971,1.7404366,-39.191853,43.00256,97.63747,3.561 1971,619.90283,-3.9253922,17.869446,40.66806,3.532 1971,404.16,-16.445282,30.930573,71.06063,3.514 1971,419.08035,-13.830132,16.715607,39.526325,3.483 1971,289.26266,205.11519,19.83841,35.239807,3.435 1971,425.67737,1.9063225,22.11322,48.265068,3.419 1971,43.774967,198.66644,20.989674,41.35028,3.415 1971,450.51804,-16.480927,17.808136,40.90045,3.404 1971,276.12863,201.84921,18.217896,35.65654,3.403 1971,428.18713,-13.134636,30.785461,65.655975,3.372 1971,117.33311,234.17949,14.385963,24.274887,3.324 1971,232.461,192.18082,20.511658,41.2939,3.29 1971,2.5203223,-17.657999,17.417444,43.934208,3.283 1971,9.499739,-92.07114,73.84126,208.84421,3.272 1971,554.3792,-17.065033,17.627869,42.236782,3.243 1971,442.3933,-16.48831,17.395142,40.55551,3.239 1971,618.7836,246.0664,19.377625,52.692566,3.22 1971,539.9532,137.12726,55.94684,117.5078,3.218 1971,410.5451,-15.681116,17.138153,42.30192,3.209 1971,548.6517,-15.939991,32.154724,65.16034,3.196 1971,589.27026,-58.922466,53.491272,145.31578,3.188 1971,124.6579,226.0791,14.9423065,25.736557,3.168 1971,-5.959966,213.73026,17.922245,41.921417,3.152 1972,18.554289,209.83755,21.048986,43.45224,8.292 1972,598.0267,196.01982,36.37097,94.547134,6.623 1972,590.0929,217.16364,31.50708,70.56964,6.478 1972,-11.494801,-33.107918,31.144266,73.65808,6.209 1972,403.74084,220.53867,19.317993,38.16922,6.192 1972,627.1412,-18.364355,17.378479,46.512447,5.901 1972,528.04816,221.88498,31.106873,67.13425,5.782 1972,-5.8382487,-17.643547,18.354832,43.45265,5.639 1972,-11.904473,477.34384,30.273655,63.517914,5.622 1972,-6.2433367,489.5974,18.84691,41.942383,5.589 1972,622.709,-34.041275,26.841309,76.309,5.504 1972,-17.307343,-62.608524,56.004654,143.17593,5.297 1972,613.0309,454.2914,39.425415,107.85843,5.168 1972,490.85648,-182.52696,234.30038,427.17447,5.095 1972,626.4033,487.70053,21.032837,46.343475,5.068 1972,427.6162,9.841164,36.28241,66.987686,5.007 1972,-72.978546,266.09485,200.80624,461.45392,4.984 1972,32.756126,209.50845,21.997044,36.386093,4.982 1972,579.097,194.92424,46.051086,119.66536,4.953 1972,532.667,199.48558,39.313843,81.321915,4.925 1972,582.98114,411.84277,71.767395,176.39844,4.92 1972,535.99176,309.79907,144.29724,342.92468,4.891 1972,-21.700577,402.86853,79.31288,174.78381,4.861 1972,586.5424,-101.6134,74.79974,234.46886,4.854 1972,548.771,200.86299,39.27191,79.70653,4.832 1972,602.9099,-57.465836,53.482666,137.73933,4.765 1972,566.52893,200.59517,38.376343,82.65379,4.747 1972,-36.64334,-127.3474,116.30888,274.8945,4.675 1972,9.025768,200.3978,26.673534,66.72861,4.592 1972,612.73303,183.53224,35.281982,102.39165,4.592 1972,493.85727,227.41043,237.40604,514.52295,4.465 1972,416.87747,218.29216,21.764648,43.276382,4.36 1972,-70.85229,-189.2504,211.20535,455.63177,4.347 1972,387.9685,226.20563,17.509277,29.291763,4.267 1972,607.5236,216.4732,23.709534,61.492615,4.252 1972,594.5177,-46.900776,44.576843,99.54593,4.136 1972,-8.450214,-4.929516,39.06767,99.78357,4.003 1972,-5.3987656,205.67474,18.184078,46.046402,4.002 1972,1.8030095,24.89758,26.272907,77.29637,3.923 1972,5.751314,45.69676,28.754583,71.86162,3.919 1972,2.708838,203.31073,20.391651,51.67375,3.9 1972,533.94824,211.85962,23.966187,39.319214,3.868 1972,406.43726,210.88496,27.068909,53.995377,3.799 1972,619.64624,-18.087433,17.086792,42.97259,3.723 1972,-5.3011107,55.85012,18.86369,50.901337,3.718 1972,40.262688,214.58414,19.781944,34.409958,3.715 1972,553.9929,211.73813,21.980713,37.416077,3.696 1972,113.905334,198.9092,21.482529,43.99344,3.656 1972,380.85452,231.025,15.976898,27.385681,3.646 1972,512.7562,186.92548,51.943848,110.55847,3.616 1972,1.6788268,-39.12192,43.0967,98.30729,3.55 1972,590.2307,180.18958,56.027283,194.28601,3.542 1972,36.04363,66.09329,31.89645,66.66138,3.534 1972,500.72852,193.91306,39.943237,78.14148,3.517 1972,612.54736,230.60976,36.829773,116.25563,3.494 1972,542.9669,217.85956,23.908142,39.920227,3.458 1972,117.44493,193.93112,29.750427,59.22725,3.443 1972,434.8407,-18.774017,43.482056,85.50707,3.432 1972,-6.2864947,200.8931,35.798443,98.78342,3.431 1972,-9.860058,194.3303,27.459543,69.662796,3.43 1972,8.773863,-90.10948,74.20665,206.03954,3.429 1972,53.62047,65.49721,28.70111,66.32114,3.404 1972,24.824724,220.9495,18.232714,36.417175,3.381 1972,156.70544,-2.414132,16.14798,33.978737,3.377 1973,426.0236,214.68494,19.270172,42.746094,29.91 1973,402.52744,210.81592,18.839478,39.182907,13.418 1973,449.68097,208.17613,19.398376,45.944138,11.412 1973,626.9964,-19.008165,17.860718,47.427113,6.113 1973,622.7223,-34.001038,27.33966,75.90707,6.046 1973,-12.161622,-39.804974,41.28899,100.73761,5.568 1973,-8.693147,464.37762,37.62108,92.494385,5.443 1973,612.80084,455.63885,39.36676,106.06793,5.442 1973,-6.1443596,490.06696,18.653631,41.69629,5.394 1973,-20.162136,-85.86054,71.84961,194.33974,5.326 1973,-6.234192,-17.786095,18.293537,43.679764,5.281 1973,602.99744,-56.368748,53.5791,134.83318,5.207 1973,-72.71146,265.92438,199.96065,461.34198,4.963 1973,626.31616,487.59598,21.20874,46.373444,4.953 1973,-22.015009,402.0253,79.61763,175.7991,4.924 1973,536.4249,310.80954,143.91992,341.02115,4.875 1973,-36.611526,-126.69372,116.125374,274.55652,4.872 1973,582.98425,411.89438,71.8313,176.31497,4.734 1973,585.871,-100.04881,75.14575,234.65535,4.669 1973,490.00647,-178.6745,235.59094,423.3877,4.656 1973,6.3168135,51.446617,28.950909,73.344635,4.637 1973,408.70114,215.58505,19.969055,41.795715,4.563 1973,494.34204,227.5599,236.76526,513.2556,4.499 1973,452.7359,210.63486,37.617188,85.29489,4.456 1973,619.25195,-19.491999,17.883972,45.923595,4.422 1973,-70.70991,-190.10365,211.15079,456.70514,4.418 1973,0.66298366,28.638165,28.62406,77.41208,4.392 1973,420.36566,221.9157,19.766602,41.380234,4.363 1973,594.406,-44.290405,44.099365,97.95979,4.219 1973,432.37787,221.48506,21.230194,40.59349,3.968 1973,219.20045,216.81508,20.373337,34.275482,3.93 1973,436.86795,209.26309,37.052185,83.6452,3.925 1973,571.0925,185.91235,53.474182,133.2732,3.894 1973,484.83167,219.18042,40.39337,83.080505,3.888 1973,456.53638,213.16064,20.778198,47.619446,3.781 1973,561.1469,201.23671,33.513306,67.80473,3.702 1973,483.97778,163.6977,17.849884,41.191757,3.636 1973,-9.919238,83.70647,39.406338,106.23299,3.63 1973,211.19275,215.6086,20.529175,35.11142,3.629 1973,537.4265,192.92451,56.30713,123.21785,3.615 1973,422.18518,209.34045,34.14319,70.68558,3.608 1973,468.52826,213.87076,38.977783,85.82739,3.593 1973,538.52856,219.59323,35.312805,81.36023,3.588 1973,9.220402,-89.79276,73.66286,205.15205,3.585 1973,2.5652008,-16.927334,17.393944,41.60243,3.539 1973,507.568,229.55492,58.67755,116.08482,3.509 1973,494.17334,192.38574,53.625183,116.27887,3.508 1973,466.5489,212.94781,19.91449,44.54303,3.505 1973,516.2529,205.86168,42.556152,88.64116,3.46 1973,425.7535,203.51176,18.605469,36.1969,3.321 1973,494.73883,209.60501,27.719604,59.46396,3.246 1973,194.23767,213.83348,21.121521,36.01056,3.243 1973,203.01215,215.27599,19.843857,36.0988,3.219 1973,546.49524,172.09639,41.098877,98.362656,3.214 1973,475.89313,226.49623,57.63153,122.00426,3.21 1973,597.5109,206.16682,39.5343,101.62596,3.205 1973,499.87912,181.98517,29.894989,76.098816,3.203 1973,19.451355,57.39176,31.55619,68.19403,3.185 1973,618.0203,489.10968,21.165222,44.565857,3.171 1973,611.70276,-6.380295,39.01245,117.269966,3.166 1973,610.8126,-16.935694,17.59552,42.66797,3.154 1973,406.3291,206.44823,36.30609,66.31984,3.149 1974,414.7229,208.39958,22.36435,44.216324,71.507 1974,451.79565,209.63159,22.1622,52.347046,58.203 1974,482.91547,203.33595,19.277863,46.713837,25.527 1974,-11.114206,-31.411568,29.670427,71.9902,6.475 1974,-5.6715417,-16.7646,17.512112,41.675056,6.47 1974,622.2845,-33.47257,27.009277,75.95044,6.253 1974,-6.292673,489.16193,18.926083,42.544983,6.001 1974,421.78058,212.29099,22.939636,48.43582,5.909 1974,432.63885,212.59727,22.996857,50.08171,5.831 1974,626.6668,-19.944279,17.751892,49.48278,5.633 1974,407.8223,206.3299,34.382477,65.91052,5.585 1974,441.7008,211.85982,26.093689,60.898056,5.551 1974,-12.264127,477.04407,30.559914,63.69568,5.453 1974,626.5437,488.06384,20.83667,45.530884,5.259 1974,612.9807,454.4178,39.5166,107.91608,5.136 1974,394.1687,202.72578,20.631653,43.890778,5.116 1974,-72.84171,265.89136,200.70274,461.21143,5.098 1974,602.86786,-57.550392,53.44934,131.82826,5.076 1974,-17.001646,-61.956657,56.103485,142.72401,5.074 1974,593.9094,-45.820908,44.878784,93.897545,5.008 1974,462.65118,210.5915,22.192596,54.90117,5.004 1974,-21.970818,402.05527,79.71404,175.71695,4.942 1974,583.0401,411.32773,71.64197,176.85226,4.932 1974,473.04184,207.08682,25.73996,61.38858,4.929 1974,535.94293,310.14386,144.50067,342.6153,4.855 1974,493.88135,226.42337,236.8772,514.90735,4.744 1974,-36.762684,-127.410164,116.39879,277.3662,4.705 1974,487.55038,207.8369,21.759949,51.264633,4.701 1974,490.87952,-180.87845,234.57886,422.86478,4.654 1974,411.76892,217.19308,20.038483,49.55475,4.606 1974,457.46887,222.80075,20.527008,52.0076,4.494 1974,402.86374,211.84756,21.160889,47.995056,4.48 1974,586.6217,-102.32788,74.82446,235.76585,4.379 1974,-8.776431,-5.694557,38.90013,99.48733,4.333 1974,2.7636003,-14.544901,16.219284,38.198853,4.255 1974,-70.410065,-190.1466,211.33664,456.4095,4.189 1974,-5.794071,182.06445,18.744482,45.024002,4.112 1974,218.41673,215.52005,20.166306,34.00441,4.041 1974,476.6294,200.64047,19.50293,40.76683,3.993 1974,617.81354,-10.919277,20.47467,48.910175,3.928 1974,209.8313,215.19516,21.363434,34.849,3.911 1974,115.333595,181.91435,40.53118,78.69371,3.879 1974,-5.17857,139.98523,17.748877,41.21454,3.867 1974,598.1147,172.96796,37.31555,105.75134,3.616 1974,3.7264872,171.62044,31.709099,83.50325,3.599 1974,618.21747,490.13058,20.873535,42.594208,3.575 1974,613.04956,172.9533,36.685425,108.634964,3.458 1974,445.5402,204.37732,19.698425,41.683212,3.44 1974,226.30698,215.17986,19.670944,35.012253,3.422 1974,201.84709,210.03917,21.75444,35.562088,3.408 1974,274.2976,207.16702,18.756714,35.32019,3.399 1974,586.8256,-2.9830875,18.934082,39.898994,3.361 1975,503.65463,225.49115,28.896759,63.69922,84.117 1975,442.14362,221.73892,23.462616,55.367706,81.037 1975,546.8973,219.5757,24.225891,49.07463,48.307 1975,453.42834,228.65895,23.850342,48.380142,10.828 1975,488.53174,223.9428,28.516846,68.21971,8.37 1975,556.4692,220.48886,25.178406,50.14435,6.098 1975,-5.940424,-17.111954,17.5899,42.960022,5.909 1975,-6.1338067,489.30566,18.453669,42.20233,5.71 1975,610.1122,-48.037437,42.430786,98.36992,5.583 1975,-11.273843,-31.877565,29.773129,73.53521,5.512 1975,-12.475889,476.98468,30.677546,63.66974,5.491 1975,536.0702,309.4763,144.7185,341.66336,5.125 1975,-72.76902,265.9237,200.84674,461.07068,5.121 1975,613.08435,454.29736,39.4115,108.03601,5.112 1975,582.9716,411.4426,71.775635,176.65115,5.006 1975,-16.862988,-62.95676,55.45138,144.45154,4.887 1975,627.2916,-18.453592,17.217285,46.350616,4.887 1975,393.05356,211.55388,22.957123,44.76396,4.877 1975,-21.789307,402.7019,79.453445,175.13855,4.871 1975,479.74628,209.83395,28.564941,66.512665,4.796 1975,495.04584,227.64407,236.06592,513.60046,4.789 1975,626.5892,487.9506,20.77832,45.70993,4.706 1975,533.10803,-183.72156,148.08026,426.92087,4.587 1975,536.19385,216.18512,34.613037,75.66736,4.502 1975,432.72345,227.34169,27.099274,67.229904,4.443 1975,-36.681686,-128.14531,116.45796,280.08548,4.407 1975,-8.543033,-6.3958626,38.6619,101.57327,4.398 1975,540.22406,226.57388,20.385803,47.276276,4.307 1975,586.93414,-101.594345,74.40094,234.17818,4.287 1975,451.31207,212.24821,37.301575,70.1942,4.28 1975,516.4121,236.70343,24.435608,51.029907,4.248 1975,469.3709,228.69643,37.82437,73.55693,4.228 1975,-70.34117,-189.064,211.36696,455.58536,4.177 1975,423.67212,222.88963,28.803131,60.239334,4.16 1975,0.68983436,182.66516,25.572954,71.61224,4.16 1975,343.25806,204.25754,26.56308,67.70798,4.131 1975,499.45633,218.52606,21.467377,53.44156,4.08 1975,462.36066,231.35553,21.793365,42.513885,4.005 1975,-14.88652,148.98961,48.580772,143.06496,3.987 1975,373.38928,203.64534,29.280457,56.78856,3.939 1975,2.8315525,-15.546862,16.640532,40.014854,3.826 1975,554.2964,-16.49398,17.269226,39.95474,3.795 1976,502.32007,222.96016,35.631348,83.09895,95.76 1976,469.0652,220.14307,37.379395,78.85535,7.29 1976,489.08368,232.0122,29.656006,71.46405,6.515 1976,-11.566542,-32.614567,30.850449,74.13918,6.505 1976,627.3151,-18.04533,17.152649,46.944473,5.983 1976,-6.08701,489.93515,18.58842,41.154816,5.679 1976,623.03937,-33.695023,26.252747,76.54858,5.579 1976,-5.953847,-16.577686,17.918507,42.244938,5.544 1976,-16.794977,-62.8678,55.427643,145.79857,5.508 1976,-8.968841,464.34988,37.867496,92.74808,5.414 1976,612.93555,454.7592,39.497986,107.1185,5.228 1976,472.07684,254.38567,19.686188,38.92064,5.166 1976,-72.98299,266.10785,200.96014,461.31964,5.11 1976,466.5024,249.40317,20.614899,35.98883,5.056 1976,582.91943,411.75543,71.84534,176.53217,5.044 1976,453.74362,208.13454,38.913666,74.75017,5.022 1976,536.35284,310.0018,143.95929,340.71182,5.0 1976,-21.808155,402.2459,79.62764,175.52667,4.882 1976,626.4424,487.2641,20.992065,46.8537,4.861 1976,603.40125,-56.9999,53.49237,135.9722,4.833 1976,228.52698,214.93202,39.406494,95.67192,4.787 1976,491.20953,-181.41824,234.17657,425.4883,4.749 1976,-36.98885,-128.95117,117.147125,280.73795,4.679 1976,494.86426,229.46133,236.23682,511.91135,4.67 1976,546.183,-16.241608,18.09259,40.095642,4.652 1976,196.11383,215.06622,40.262527,93.70972,4.642 1976,548.1056,-17.635227,32.60797,66.31005,4.574 1976,586.2826,-100.87395,75.01404,234.25221,4.55 1976,442.3944,216.77454,20.779419,41.7247,4.362 1976,431.7587,213.9724,22.535065,44.897842,4.345 1976,2.4479933,-15.315161,17.12812,41.181896,4.318 1976,553.58636,-17.279228,18.5625,41.466053,4.248 1976,211.94496,215.49141,39.216415,94.26796,4.235 1976,593.91254,-46.600998,44.9693,97.30415,4.161 1976,570.45844,-19.261673,17.60968,42.22785,4.059 1976,562.0903,-17.66589,17.930359,41.34832,3.991 1976,-70.08008,-188.7929,210.87866,453.81152,3.98 1976,181.87555,209.06078,28.821854,55.97377,3.909 1976,563.5479,-19.810192,32.54071,66.29643,3.881 1976,530.2324,229.44533,40.59735,88.26097,3.822 1976,538.69165,-17.06955,17.160461,40.008644,3.8 1976,444.94113,230.00247,28.36795,54.488403,3.783 1976,619.9743,-17.68913,16.506714,43.498257,3.781 1976,-2.9924047,-17.06214,29.353031,70.80634,3.762 1976,179.94926,214.276,40.619827,93.35321,3.681 1976,261.5992,215.8377,37.233063,94.88257,3.652 1976,-15.511023,117.98732,50.99759,147.68724,3.641 1976,-3.948933,196.56213,16.76789,39.552826,3.605 1976,-8.622936,-5.706974,38.498413,101.718735,3.562 1976,472.7701,241.76581,19.825226,34.819946,3.558 1976,436.2059,188.00809,39.811737,83.33768,3.515 1976,278.11755,225.10252,30.029602,63.45323,3.503 1976,534.1856,-18.816935,30.597595,67.962234,3.5 1976,244.67264,215.1322,37.40869,95.372314,3.495 1976,515.71924,224.05258,25.489624,55.73047,3.408 1976,-6.023589,214.72537,17.559196,42.199158,3.38 1977,335.33447,190.14839,22.027893,41.607025,6.586 1977,-6.4923944,489.0793,19.063616,43.787445,6.49 1977,-11.957593,476.84357,29.791485,64.87372,6.182 1977,-11.41403,-33.0969,30.77442,74.6979,6.088 1977,458.02118,194.76564,29.33078,65.98375,6.034 1977,627.3222,-17.121958,16.731262,44.717484,5.775 1977,622.9878,-33.32921,26.14801,74.203094,5.486 1977,354.3968,195.58392,21.450928,37.834473,5.475 1977,-5.871353,-17.353209,18.25635,43.58349,5.435 1977,626.5791,488.31,20.87915,45.71228,5.316 1977,-16.909405,-62.157288,55.8089,143.32318,5.235 1977,613.3902,454.71985,38.690735,107.46057,5.226 1977,490.59738,-182.00648,234.36954,426.9812,5.018 1977,583.2405,411.9656,71.473145,176.19589,4.855 1977,-72.595215,267.8922,199.78247,459.2433,4.826 1977,-21.970974,402.5289,79.42848,174.87503,4.81 1977,250.04153,158.67242,17.096558,39.53537,4.746 1977,-36.69397,-127.73261,116.30107,277.76624,4.643 1977,536.70514,310.81158,142.82214,342.09692,4.641 1977,603.2628,-56.36024,53.266968,136.8812,4.593 1977,585.9083,-103.15353,75.76062,238.39447,4.55 1977,502.06335,179.5742,37.44098,84.04909,4.387 1977,493.4273,226.97934,237.77014,515.93286,4.305 1977,-71.02355,-189.84496,212.1944,456.6789,4.302 1977,619.8554,-17.210901,16.6568,41.569626,4.276 1977,-8.459591,-5.659401,38.85063,100.26719,4.221 1977,531.7663,180.26224,18.039001,40.896973,4.194 1977,595.60535,-15.783713,16.700989,40.80736,4.114 1977,594.52313,-46.25179,44.383667,98.71454,4.038 1977,524.6334,179.9002,28.209656,66.224106,3.999 1977,331.53506,177.90738,21.451233,45.15912,3.977 1977,370.21106,-16.855179,18.642395,41.33834,3.863 1977,538.02673,-17.292547,17.223022,42.522907,3.857 1977,157.07362,189.87653,29.723587,55.441483,3.84 1977,385.4605,-18.10132,19.401825,41.880726,3.692 1977,444.83398,-34.356354,30.153229,67.17184,3.682 1977,377.52222,-18.632736,19.025452,42.82441,3.654 1977,2.0532048,489.12424,19.791006,43.651337,3.639 1977,-4.9397187,168.96768,16.737185,42.088287,3.627 1977,546.78894,-16.53204,17.240051,42.1577,3.615 1977,357.41388,188.11058,28.030273,51.220596,3.597 1977,345.60764,196.01106,21.241913,36.57811,3.592 1977,373.998,-33.964203,29.317932,76.63414,3.585 1977,545.8245,220.17091,31.548584,71.931015,3.529 1977,162.3311,210.30396,44.38887,96.75824,3.521 1977,404.59915,-33.275326,30.461945,72.97556,3.498 1977,516.57104,-19.631674,32.19586,65.290794,3.479 1977,524.16437,174.27394,17.11084,35.36441,3.468 1977,615.7934,126.12758,24.207092,68.93451,3.463 1977,2.1354933,-16.325417,17.859375,42.35981,3.443 1977,558.4801,231.18507,23.003784,42.748093,3.438 1977,195.76903,194.8715,40.819946,100.02992,3.434 1977,1.8048978,-38.49669,42.684475,98.80489,3.428 1977,508.2093,-33.978275,29.859192,71.98133,3.428 1977,570.6513,-16.876581,16.957092,40.517605,3.407 1977,532.64746,179.83525,40.01947,85.28996,3.398 1977,425.30573,-19.039211,19.519592,41.370087,3.391 1977,511.31076,181.60951,21.572052,54.119965,3.388 1977,449.87515,-19.74646,19.381744,42.01068,3.381 1977,603.28906,-16.844894,16.116821,40.747646,3.378 1977,494.05273,-34.162937,29.304932,75.06836,3.37 1977,140.44801,194.47679,31.829178,58.100113,3.361 1977,442.05685,-19.498095,19.241486,41.74793,3.359 1977,154.01537,201.37097,21.78743,34.8956,3.352 1977,537.3386,179.2603,19.010437,35.71727,3.314 1977,-9.232664,35.29014,38.579857,107.61193,3.31 1977,146.14479,211.68439,19.547531,31.097824,3.299 1977,489.7617,-18.27632,18.939789,41.216152,3.282 1977,420.4923,-31.59585,30.373444,69.31734,3.28 1977,180.49963,187.87389,38.84955,88.56444,3.273 1977,575.0105,-36.03376,27.60205,74.10519,3.264 1977,152.44304,233.7219,60.20282,112.39517,3.26 1977,587.53,-15.95006,16.384277,39.751198,3.257 1977,362.65405,-16.770065,17.564758,40.330883,3.249 1977,522.8422,-19.385458,18.118164,43.1852,3.241 1977,389.00558,-32.898575,30.112396,73.81483,3.237 1977,140.39194,218.78702,18.060455,29.716125,3.235 1977,382.4863,189.59299,27.918823,56.554718,3.229 1977,497.74988,-16.757494,19.65564,40.90895,3.221 1977,542.05865,175.2204,50.143555,120.477905,3.21 1977,605.7915,132.80019,49.150635,128.9055,3.21 1977,505.28653,-17.709473,19.728058,41.93184,3.185 1977,510.6122,166.26588,50.664703,117.31038,3.173 1977,533.99445,-33.855003,27.84552,73.858986,3.156 1977,471.2754,202.23207,22.758728,48.00226,3.149 1978,344.35394,194.63145,21.870605,46.339554,7.865 1978,335.88934,150.6258,34.18283,84.64278,6.904 1978,-11.353322,-32.244522,29.79282,75.785545,6.474 1978,-5.7458687,-16.301203,17.51035,43.152245,6.288 1978,-6.228424,489.328,18.724653,42.943115,6.043 1978,626.91815,-19.454956,17.892029,49.040775,5.981 1978,-9.014167,464.16345,37.632828,92.66681,5.904 1978,622.5999,-33.77724,27.12793,77.67306,5.862 1978,613.1887,454.33325,39.06952,106.88849,5.521 1978,626.706,488.6176,20.657654,45.26935,5.416 1978,490.3053,-182.28946,234.47144,429.38477,5.24 1978,585.6949,-100.44056,75.0293,235.18939,5.065 1978,-19.745712,-87.6072,71.33806,198.03871,4.92 1978,-72.72869,267.1048,199.96518,459.9698,4.909 1978,-22.056297,401.7066,79.54715,175.76166,4.879 1978,583.00385,411.74582,71.64142,176.70633,4.764 1978,602.8035,-57.46293,53.143738,139.34822,4.758 1978,536.6013,310.05334,142.98962,342.8379,4.741 1978,-36.653973,-127.51874,116.721085,279.2634,4.722 1978,-8.504963,-5.8875275,38.972935,100.504456,4.695 1978,362.3565,198.9483,22.405273,47.91066,4.546 1978,439.54495,211.20322,27.82431,63.458984,4.472 1978,-70.68251,-190.15848,211.86377,456.94882,4.437 1978,493.5071,226.61652,237.92038,515.92725,4.341 1978,320.99484,193.47449,22.178925,46.504288,4.21 1978,2.9038596,-14.080664,16.107477,40.27431,4.156 1978,619.083,-7.967867,20.016602,48.624985,4.115 1978,597.6192,199.3808,32.32538,76.31427,3.987 1978,244.29568,171.66098,19.084106,41.292023,3.974 1978,556.1644,187.30948,29.792236,57.81836,3.972 1978,441.9679,-14.265865,33.48645,68.92744,3.9 1978,350.6241,-33.397995,28.806122,73.943275,3.881 1978,611.28296,197.01282,28.142944,81.73337,3.857 1978,594.5586,-46.978626,44.366943,100.45723,3.85 1978,154.31883,205.8979,20.980988,33.33841,3.799 1978,269.5373,-36.61108,28.218567,66.459625,3.796 1978,162.44519,206.0631,21.341248,34.380722,3.759 1978,404.55795,-6.0056267,32.236725,67.21425,3.745 1978,421.10104,-7.1339073,32.40573,70.18301,3.74 1978,365.66553,185.83484,31.632477,61.63205,3.692 1978,572.32983,-24.435509,54.876343,152.31221,3.691 1978,2.2357779,489.82434,19.596508,42.328186,3.666 1978,458.4299,-36.90403,59.16684,131.67448,3.637 1978,253.04826,-36.373466,29.068405,65.89757,3.585 1978,425.63138,-32.508003,59.93109,125.02547,3.566 1978,317.57587,-33.926796,28.999115,76.07132,3.564 1978,452.54218,-34.121468,30.467194,76.71027,3.547 1978,410.67154,11.644306,34.46698,74.02365,3.536 1978,218.93341,200.74619,19.6913,33.874863,3.506 1978,146.99345,207.88643,20.426102,30.08017,3.486 1978,618.7276,490.78345,20.300476,42.010498,3.479 1978,-7.996417,85.19147,38.136623,103.446686,3.469 1978,353.73682,-16.812103,18.550903,40.860985,3.461 1978,582.4317,180.3238,39.628357,80.937454,3.453 1978,394.81064,-33.418465,60.526733,121.84696,3.451 1978,436.36676,6.0539436,35.06668,75.52351,3.451 1978,427.14093,34.100018,32.940186,72.86749,3.436 1978,532.1244,-136.56389,115.55908,279.79904,3.435 1978,321.69147,-15.844086,18.860016,43.387062,3.434 1978,563.97534,181.555,42.076233,76.33356,3.42 1978,1.7176843,-39.110397,42.956444,100.265945,3.386 1978,361.34277,-35.12699,60.519897,125.947,3.35 1978,372.74402,10.054691,32.43152,77.9211,3.349 1978,417.5974,-8.066589,22.413574,48.16746,3.338 1978,286.40042,-36.078846,27.898468,70.29028,3.335 1978,425.85617,-18.68333,18.415924,46.30275,3.32 1978,430.3402,-34.025955,29.34552,81.41638,3.309 1978,-9.294452,36.424458,38.59514,108.30789,3.303 1978,567.09235,195.3278,23.249329,41.798706,3.295 1978,540.7841,162.80376,56.38684,109.230606,3.287 1978,-15.449538,147.0101,48.998817,142.11746,3.273 1978,2.4365807,184.18222,19.818779,42.247437,3.241 1978,347.0382,213.8007,18.354248,36.83516,3.234 1978,333.2345,-33.62358,29.455566,73.441345,3.217 1978,490.34116,-40.144146,59.21158,137.4699,3.199 1978,451.13745,214.79024,28.55658,62.247604,3.194 1979,368.27884,212.2152,22.256897,40.693054,7.538 1979,-11.594273,-32.068546,30.530527,75.76361,7.01 1979,395.8294,216.04929,29.313965,65.47116,6.849 1979,-6.502462,-16.752155,18.16287,43.35425,5.887 1979,249.79749,224.11612,23.474396,43.61435,5.869 1979,-11.776363,476.0833,29.084133,64.95654,5.817 1979,612.9665,454.8242,39.404175,106.960175,5.782 1979,585.34924,-96.14549,74.33948,229.94888,5.541 1979,460.45892,215.2243,27.85318,67.02411,5.363 1979,610.5222,-47.87184,41.988464,101.32351,5.314 1979,-6.1883516,489.522,18.527472,42.391754,5.145 1979,-16.57709,-62.243942,55.937645,144.51805,5.081 1979,531.80884,-181.10245,149.74951,419.86142,5.045 1979,-21.91576,402.58435,79.35571,174.97888,4.979 1979,-72.48205,266.78467,199.8837,460.20203,4.968 1979,426.47675,229.05191,19.34613,39.21707,4.943 1979,536.65784,309.96954,142.7633,342.4809,4.841 1979,627.1423,-18.040508,17.131897,46.911453,4.841 1979,372.01697,-5.495117,30.1391,75.08519,4.775 1979,582.9315,411.4418,71.804565,176.89572,4.704 1979,596.1731,193.0091,28.30658,63.90567,4.644 1979,-36.585423,-127.30654,116.69154,277.57816,4.637 1979,626.1998,487.94464,21.612732,46.11676,4.477 1979,438.5992,219.22626,28.37741,63.55014,4.421 1979,6.736648,83.03496,29.76733,83.8336,4.405 1979,-70.57889,-189.27974,211.44183,456.2069,4.395 1979,493.8814,226.06668,237.60968,515.8862,4.334 1979,329.60983,209.23459,20.35611,41.09842,4.319 1979,461.47476,-34.336582,29.778717,79.06093,4.301 1979,589.0741,-18.763855,52.18628,164.15729,4.198 1979,377.58038,-18.714718,19.208282,44.91805,4.127 1979,379.94373,-14.070147,32.33029,70.263306,4.114 1979,-8.4710455,-4.892315,39.201965,99.845276,4.092 1979,-5.1469145,97.95068,19.055897,51.36525,4.013 1979,530.193,1.6148262,33.95465,81.76726,3.969 1979,525.1588,-16.367815,32.25354,66.56754,3.968 1979,311.2789,197.56381,25.46994,55.620773,3.964 1979,365.54858,-33.986496,29.079071,78.17968,3.933 1979,466.91864,-7.6889534,33.48059,73.93327,3.845 1979,1.9769287,-16.056786,17.3192,42.22209,3.779 1979,369.86813,-17.899158,19.082397,44.474316,3.758 1979,518.18195,-33.90396,29.316895,74.83,3.748 1979,438.15933,-34.973103,29.348541,74.566795,3.717 1979,385.6314,-18.135544,19.380188,43.767635,3.703 1979,187.34871,220.56204,20.03418,31.606293,3.702 1979,522.3559,-17.645,17.96283,41.566563,3.676 1979,492.5601,-33.073166,30.574127,77.14245,3.62 1979,389.73962,0.87319183,30.30429,80.73921,3.592 1979,572.6354,3.06884,55.210144,166.92407,3.59 1979,180.0044,223.71526,17.851608,29.628052,3.555 1979,419.21524,230.33841,18.45169,37.733246,3.545 1979,349.54797,-34.58773,29.173584,77.989525,3.541 1979,548.91986,-36.053524,29.126953,72.68032,3.541 1979,389.07068,-33.163155,29.697296,75.00743,3.54 1979,393.57907,-18.042196,19.27417,43.943707,3.535 1979,2.1026325,96.93295,24.242584,86.69885,3.534 1979,378.82434,10.108406,30.93274,81.70061,3.507 1979,613.9591,3.5739174,25.831299,84.86832,3.506 1979,476.58777,-31.030468,30.248016,73.68271,3.505 1979,583.17175,198.58276,29.703552,61.25775,3.484 1979,1.8610573,-38.49858,43.212013,100.441635,3.469 1979,-5.806589,179.90671,19.518393,50.197693,3.464 1979,285.16614,198.78317,27.60318,66.59445,3.453 1979,425.6766,-37.220383,61.143616,129.48082,3.448 1979,529.687,-17.879124,18.988892,42.437057,3.44 1979,-4.8080096,68.11678,18.017267,48.2389,3.436 1979,356.63998,-7.4150887,32.186584,69.85378,3.431 1979,-4.084716,-17.25026,30.992706,74.26658,3.418 1979,401.622,-17.989975,18.944885,44.012024,3.411 1979,266.46335,173.16116,17.962646,41.30725,3.403 1979,598.1349,160.31427,37.493652,88.39032,3.402 1979,571.1951,206.79901,20.26947,29.717438,3.395 1979,473.58292,-17.784355,19.780243,44.47265,3.385 1979,548.6819,77.88406,37.782166,79.1308,3.368 1979,539.29065,-19.570566,33.311157,66.61341,3.355 1979,505.03586,-3.492796,21.864777,42.654068,3.332 1979,619.3126,-5.967766,18.737976,44.38941,3.33 1979,171.065,218.09976,20.26065,31.76326,3.325 1980,336.50723,179.1141,24.069275,49.29039,22.387 1980,400.63867,198.12263,20.27774,41.754776,19.788 1980,355.11478,185.91837,21.681915,55.843185,12.86 1980,483.47876,212.09888,31.01892,82.03815,9.384 1980,510.7053,198.38007,41.023956,110.7771,7.479 1980,622.9308,-32.64664,26.643799,73.85427,6.532 1980,627.3373,-17.22445,16.905518,45.530563,6.506 1980,-11.308615,-33.378708,29.768938,73.32443,6.246 1980,-6.065719,-18.420542,18.336535,44.472946,6.018 1980,612.89716,455.62613,39.435303,105.709015,5.75 1980,317.5622,181.03104,29.964508,61.423477,5.657 1980,-12.281823,477.1049,30.678211,63.713226,5.622 1980,-6.358583,489.07352,18.978846,42.754425,5.608 1980,385.52948,199.65785,23.362427,49.64978,5.335 1980,490.00153,-181.0519,234.9607,425.3621,5.289 1980,626.4147,488.008,21.039307,45.76587,5.123 1980,-16.779545,-63.424725,55.56081,144.66846,4.993 1980,-72.30951,266.95093,199.93927,459.59814,4.981 1980,501.1702,220.9864,33.072296,78.44588,4.929 1980,-21.6959,403.03598,79.24679,175.02725,4.862 1980,342.0396,178.62155,29.700775,65.299194,4.802 1980,536.5303,310.19482,142.99377,342.91077,4.777 1980,-36.65393,-128.72858,116.79216,281.15112,4.756 1980,603.26843,-57.873314,53.513245,135.02971,4.755 1980,582.9148,411.82803,71.80316,176.51407,4.726 1980,471.7251,218.31497,30.619995,68.268005,4.679 1980,586.2104,-97.74957,73.97711,230.99141,4.65 1980,493.45892,209.12901,25.911865,64.467545,4.618 1980,497.71335,-10.431454,45.762177,82.35649,4.517 1980,1.0956025,83.27994,25.260878,82.4763,4.512 1980,1.9898808,-18.543787,18.163956,45.329285,4.504 1980,444.26175,-1.5940742,33.156647,73.19003,4.457 1980,452.7571,-33.41716,30.70517,77.868225,4.413 1980,493.75958,227.4072,237.77307,515.3247,4.406 1980,458.0609,-2.0733337,32.59961,74.76079,4.344 1980,594.10583,-45.91357,45.08539,95.77405,4.311 1980,194.19916,195.87843,22.540497,40.349808,4.31 1980,-5.0146365,105.43868,18.091133,48.442543,4.269 1980,-70.48183,-189.68474,211.7386,456.60004,4.262 1980,613.87274,147.43533,34.591675,99.59956,4.138 1980,620.04694,-3.2696657,17.932861,38.101063,4.095 1980,477.52826,175.7815,38.197266,80.040436,4.059 1980,527.2334,-38.62781,48.08612,90.75738,4.047 1980,490.7202,-1.3336926,35.408264,59.520615,4.045 1980,382.1726,-34.228333,29.571045,73.64527,4.039 1980,-9.693676,92.29126,26.897272,72.800415,3.941 1980,421.0762,-31.464611,30.226044,72.779015,3.901 1980,-9.550972,-7.114254,39.515423,102.92778,3.89 1980,397.79968,-33.550808,29.4516,73.95303,3.887 1980,599.0331,151.55823,35.17627,92.07866,3.885 1981,432.79578,202.5986,22.70111,51.492905,53.305 1981,361.06735,200.57707,21.768616,43.60022,8.973 1981,384.25238,176.327,25.75708,73.04802,7.616 1981,-5.8254185,-17.67848,17.441364,43.245396,6.377 1981,-11.362972,-32.815163,29.937054,72.70319,6.056 1981,357.45288,167.29428,27.225739,69.26323,5.872 1981,623.2313,-32.901592,26.776001,74.99642,5.851 1981,364.13916,188.25484,28.104675,65.20625,5.564 1981,-6.062689,489.63647,18.50668,41.560303,5.455 1981,626.9198,-19.048985,17.514282,48.13353,5.301 1981,-16.960295,-64.30495,55.655457,145.36504,5.283 1981,-8.814097,463.81772,37.656162,93.053375,5.282 1981,626.3598,488.1374,21.21521,45.24121,5.257 1981,613.03687,456.1634,39.133606,105.816895,5.232 1981,-72.63053,266.34863,200.558,460.3233,5.066 1981,585.3326,-96.80918,75.346985,230.09918,4.901 1981,-21.823505,402.24432,79.481094,175.55426,4.883 1981,583.0211,411.72174,71.71088,176.55902,4.767 1981,536.7455,310.45465,142.74536,341.46344,4.758 1981,-36.419804,-129.17213,116.71286,280.1371,4.692 1981,603.14996,-57.42769,52.8963,135.75774,4.59 1981,489.73492,-178.43695,235.2627,423.96533,4.589 1981,493.8886,226.13,237.6159,515.871,4.284 1981,547.7514,238.67102,33.738953,55.91455,4.231 1981,337.61752,201.01706,21.491974,42.441452,4.218 1981,-70.47429,-189.29117,211.70744,456.00177,4.202 1981,315.48724,211.96803,17.831268,34.116898,4.192 1981,-5.78963,228.75745,17.789156,42.471527,4.169 1981,208.4835,203.08977,23.702225,42.417435,4.086 1981,594.29,-46.18194,44.82953,97.18299,4.063 1981,2.8247933,-16.356787,16.769373,42.163883,4.053 1981,623.03375,217.52696,28.095032,73.13191,4.007 1981,342.41022,195.8714,27.72165,56.84694,4.0 1981,376.82703,161.4344,27.76587,72.36954,3.975 1981,569.0409,38.741596,35.86609,67.73045,3.885 1981,-1.0455012,141.88318,52.239418,135.0758,3.778 1981,-9.964247,-6.9205284,40.136086,104.2316,3.762 1981,330.29834,200.04407,20.146637,40.97513,3.75 1981,423.80212,195.94669,35.708984,74.71323,3.707 1981,446.98505,202.99489,22.945038,44.264984,3.622 1981,320.73114,201.01837,20.14743,39.450134,3.591 1981,1.9493628,-40.627956,42.800488,99.451195,3.584 1981,243.54369,228.86281,18.700333,33.36412,3.583 1981,30.107374,83.141556,30.999613,62.2538,3.562 1981,-8.899485,182.04362,38.189846,99.524185,3.558 1981,605.10187,213.9202,28.958252,68.04941,3.53 1981,124.03863,221.18466,16.6419,32.82457,3.512 1981,1.3167214,122.379585,20.971699,48.151848,3.51 1981,260.17737,204.7024,28.106995,62.28116,3.481 1981,314.06696,196.41763,20.01706,38.98416,3.476 1981,201.73471,209.36574,23.045563,40.128143,3.454 1981,190.49823,200.22931,30.696716,55.978363,3.442 1981,18.100845,97.25958,41.071564,96.26239,3.421 1981,185.37799,204.40518,22.150696,36.3199,3.413 1981,427.98975,196.44653,21.095093,45.47731,3.412 1981,75.346596,221.18855,17.463951,31.577911,3.4 1981,618.50586,490.9296,20.60315,42.370026,3.388 1981,354.46674,209.10287,21.651093,43.35289,3.348 1981,4.8569098,97.43213,37.88182,102.73636,3.348 1981,-4.831857,117.96273,17.923315,43.44407,3.334 1981,108.64056,222.02591,16.09449,29.481247,3.319 1981,-13.7506275,56.4168,48.962357,141.3732,3.3 1982,508.6893,212.51306,27.838898,58.526123,72.309 1982,421.96777,214.24419,28.0914,63.781693,8.12 1982,-11.1594925,-33.180622,29.6638,75.56679,6.309 1982,-6.103488,-17.627985,18.663769,43.99426,5.829 1982,627.0156,-18.196293,17.325317,46.296112,5.734 1982,-12.353369,477.10373,30.78113,63.716217,5.693 1982,-6.390936,488.90808,19.01308,42.69104,5.434 1982,626.57715,488.01645,20.74121,46.119232,5.335 1982,-16.978962,-64.49292,55.55394,145.23692,5.123 1982,622.9289,-33.592415,26.36316,75.55828,5.036 1982,612.88965,454.87592,39.59442,107.38684,5.036 1982,583.0097,411.56946,71.80591,176.75592,5.026 1982,-72.46073,266.16858,200.31717,460.58984,5.016 1982,-21.828249,402.4003,79.47819,175.42368,4.838 1982,536.1437,310.48627,143.92865,341.3081,4.802 1982,585.5363,-97.13941,75.37488,230.61676,4.798 1982,602.92426,-57.30614,53.467896,138.88588,4.719 1982,493.6926,226.87183,237.6232,514.70984,4.581 1982,490.74988,-179.1195,234.04272,424.30554,4.575 1982,481.29147,49.352013,37.830597,83.43351,4.554 1982,-36.706863,-129.35129,117.25963,279.956,4.553 1982,499.1251,207.122,27.309235,64.40132,4.451 1982,1.5855342,-18.15462,18.378166,44.053898,4.209 1982,-70.56705,-188.85623,211.56647,454.9774,4.185 1982,-10.182208,-7.53553,40.05177,105.63277,3.858 1982,300.39984,216.4941,28.069641,58.283127,3.849 1982,346.87283,231.4243,19.704742,33.748734,3.838 1982,425.89575,237.19353,20.220154,43.229233,3.831 1982,355.5747,228.476,18.64087,33.07686,3.818 1982,-0.9318614,23.329296,26.11012,95.45885,3.783 1982,2.100408,-28.612904,50.35835,148.6554,3.763 1982,417.48123,172.29568,34.315033,83.9238,3.756 1982,361.07162,217.94287,19.817596,35.04988,3.643 1982,47.15274,88.62967,28.33538,67.1994,3.577 1982,379.7214,219.36241,18.032043,35.28865,3.558 1982,42.704506,114.28622,21.15403,42.03556,3.506 1982,2.151326,142.68803,20.537823,39.748215,3.47 1982,615.5988,-20.848827,26.582336,72.149536,3.461 1982,-4.754391,135.97098,16.907616,39.175674,3.449 1982,468.27203,49.500603,34.180054,80.72202,3.424 1982,234.98795,221.49544,20.40596,33.71797,3.422 1982,4.951459,-35.622307,30.060665,78.777794,3.411 1982,618.37177,489.98303,20.929688,43.046143,3.379 1982,26.323185,94.189896,30.871075,58.37761,3.377 1982,-0.72408795,113.507805,24.698942,62.85743,3.291 1982,2.1304727,490.31616,19.837202,41.92401,3.29 1982,555.9888,270.7103,21.05951,40.463623,3.275 1982,615.9268,67.910934,23.565308,54.027298,3.258 1982,619.5089,-18.119678,16.789368,42.83945,3.245 1982,463.4677,233.34239,21.605835,45.621933,3.214 1982,219.20041,218.88538,19.01567,35.324295,3.156 1982,526.1702,216.41158,24.216492,47.496994,3.108 1982,-5.6171374,244.4577,17.401524,42.329163,3.102 1982,242.97493,218.4684,21.355026,32.982025,3.098 1982,297.26282,217.7458,21.664154,36.299942,3.097 1982,394.27094,215.53621,19.305115,40.78215,3.088 1982,226.7976,221.5972,19.838776,33.956757,3.062 1982,494.00653,43.346436,38.96869,74.3228,3.053 1982,18.104885,101.574005,39.524277,83.15527,3.044 1982,546.64307,413.85455,83.55237,166.39252,3.042 1982,-9.359992,198.29056,38.7105,101.699585,3.038 1982,349.70038,209.43979,30.160614,50.98822,3.017 1982,61.24609,102.56247,29.510273,67.39282,3.012 1982,515.57587,54.570137,31.400635,71.81137,3.001 1982,163.28127,-15.11306,15.648468,36.362152,2.997 1982,80.17122,-40.53678,46.612083,92.57324,2.989 1983,615.0999,207.85555,24.893616,79.576096,10.231 1983,514.3031,206.12315,32.489746,63.531906,7.853 1983,394.8952,204.92455,19.17569,40.43892,7.808 1983,623.1102,-33.73512,26.634277,73.25571,7.151 1983,-10.72345,-33.936348,29.766953,77.94429,6.719 1983,-5.63021,-18.64569,18.058498,45.984158,6.698 1983,627.2422,-19.809364,17.690002,46.842762,6.079 1983,508.97495,202.01186,27.024689,53.045013,5.897 1983,-12.173972,476.96085,30.599915,63.60385,5.655 1983,387.45386,207.99687,20.585052,39.351135,5.613 1983,-6.1940184,488.85406,18.949333,42.515564,5.502 1983,-17.614233,-63.480118,56.262794,146.44263,5.259 1983,603.25397,-56.89988,53.175232,135.07037,5.198 1983,490.4031,-180.53609,234.30222,428.88766,5.185 1983,612.88464,455.11963,39.489502,106.566284,5.125 1983,626.6555,487.36703,20.666199,46.680573,5.103 1983,531.25604,217.9716,32.557922,59.931503,5.046 1983,585.8473,-97.1148,74.15088,230.88684,5.027 1983,-72.50581,266.7068,200.1462,459.7223,4.941 1983,-21.779293,402.5976,79.404526,175.11536,4.896 1983,582.84595,412.04666,71.76599,176.21164,4.865 1983,-36.183,-129.83961,116.887634,278.09866,4.85 1983,536.19806,310.45587,143.4375,341.81616,4.814 1983,594.4123,-47.44858,44.23706,100.84265,4.562 1983,459.45728,-16.334625,17.593628,37.970356,4.541 1983,474.54114,-16.983004,17.689453,39.31742,4.533 1983,260.81305,204.68297,17.189697,32.406113,4.497 1983,-71.48835,-189.89294,212.33066,456.33752,4.457 1983,252.41103,215.49202,17.854477,33.958786,4.403 1983,493.5455,226.29178,238.34482,516.3092,4.394 1983,451.25854,-15.192218,17.162659,36.94588,4.346 1983,2.8728735,-17.027546,17.347689,45.83837,4.338 1983,467.33853,-15.480076,17.956512,37.68464,4.337 1983,605.8341,-34.60303,27.878723,70.81799,4.281 1983,5.6406546,-12.181583,27.28666,80.50629,4.277 1983,598.1195,209.50235,39.43872,107.46231,4.044 1983,520.5639,227.90791,24.145569,51.472733,3.916 1983,243.78812,212.28056,18.057281,36.475204,3.911 1983,516.8433,192.8591,25.551575,45.967148,3.82 1983,443.04785,-15.530901,16.827026,36.53792,3.818 1983,402.7735,210.99374,18.054138,42.448166,3.809 1983,482.4115,-16.958652,18.049774,39.573826,3.761 1983,267.2486,209.80211,18.745178,35.519592,3.754 1983,618.90875,-20.488827,18.68988,44.580933,3.683 1983,525.60046,207.50328,26.807251,48.389847,3.68 1983,496.30347,196.3869,28.316772,64.76779,3.586 1983,21.921478,-6.1265507,29.373528,72.73351,3.581 1983,0.2824211,-34.456963,52.052372,143.64297,3.551 1983,490.19315,-18.553026,18.55606,41.75231,3.543 1983,585.4436,99.95695,61.560852,213.87161,3.54 1983,-10.435085,55.324104,28.860312,72.834435,3.491 1983,-5.3718624,168.7002,18.421003,43.17366,3.453 1983,-5.8878403,69.68921,19.41907,44.836937,3.452 1983,-5.268511,-2.4565525,18.605078,51.75316,3.425 1983,536.6813,238.46178,22.187073,44.855423,3.405 1983,-10.100077,-5.0442505,40.47158,103.72521,3.404 1983,9.733249,-18.56615,18.07721,47.990917,3.4 1983,478.35803,-34.693462,28.45343,70.33444,3.392 1983,621.3275,52.925827,27.454163,81.68683,3.39 1983,523.69257,-15.608068,31.943909,73.566185,3.362 1983,4.513999,73.512054,38.660255,106.04906,3.352 1983,500.5226,-17.481245,32.042572,69.39918,3.328 1983,2.0639598,490.00906,19.988138,41.82376,3.297 1983,6.053876,62.828014,27.399132,69.56654,3.286 1983,252.52502,204.92307,16.748749,30.909561,3.277 1984,424.69135,207.3495,20.340515,44.03337,13.745 1984,483.46957,192.95956,28.085419,63.73752,9.659 1984,-5.929599,-18.591326,18.781218,46.028687,6.91 1984,-10.827775,-34.01442,29.970459,78.88985,6.898 1984,401.2877,203.71748,22.75711,46.6857,6.579 1984,269.26398,216.18275,15.186096,30.014969,6.29 1984,409.6811,207.59105,21.664185,45.586823,6.102 1984,610.2468,-45.393127,42.098022,95.72897,6.074 1984,-9.065603,464.08243,37.81881,92.90524,5.502 1984,-6.1194444,489.20773,18.664162,42.386566,5.496 1984,627.0973,-18.427092,17.315063,45.39619,5.424 1984,-17.47874,-63.7818,56.548206,143.74205,5.342 1984,606.80347,-33.909554,27.552246,72.75942,5.306 1984,551.45514,6.7083893,35.44989,84.00274,5.235 1984,586.062,-94.11331,73.25934,225.00299,5.21 1984,-72.82345,265.93228,200.6788,461.19992,5.067 1984,626.43445,487.38626,20.882446,46.57608,5.061 1984,613.0376,454.9732,39.207336,107.01758,5.052 1984,583.09625,412.18182,71.48682,175.94879,4.959 1984,275.8454,213.8322,17.054749,31.542831,4.95 1984,490.4436,-180.75183,233.7826,426.56918,4.927 1984,-21.845673,402.12122,79.4159,175.46613,4.858 1984,261.25888,215.6214,14.911713,29.580765,4.827 1984,-36.575752,-128.8021,117.02442,276.8473,4.811 1984,618.8589,-4.8985586,19.788391,40.088413,4.75 1984,536.4143,310.6878,143.47607,341.9848,4.702 1984,595.9221,-15.519004,32.720825,62.38351,4.63 1984,-71.11078,-189.79607,212.00568,456.6317,4.521 1984,252.82166,215.33017,14.703949,29.981873,4.471 1984,-9.588451,-5.9958954,40.175415,100.44053,4.456 1984,236.59935,214.78816,15.402176,33.26425,4.438 1984,543.91547,195.05565,36.585938,79.5146,4.399 1984,585.25525,-15.798224,18.294556,40.479595,4.382 1984,493.5644,226.80084,237.6358,515.5259,4.379 1984,589.17145,-32.883762,28.73053,71.8472,4.334 1984,539.04443,144.01236,33.961,104.19136,4.287 1984,563.2523,-4.063389,32.290894,67.53014,4.212 1984,470.5992,-32.392887,28.282928,69.68668,4.207 1984,482.34094,-15.656038,18.154602,39.594135,4.18 1984,433.1281,212.19998,19.109497,42.301453,4.065 1984,578.78973,-11.709728,43.054077,82.375946,4.046 1984,244.91234,214.20909,14.870132,31.44011,4.044 1984,284.09982,211.83995,15.7752075,29.38063,4.041 1984,116.63174,209.43306,31.309486,60.168045,4.029 1984,-5.452751,69.192505,18.500078,46.069412,4.029 1984,228.22357,213.26247,16.509384,35.15074,3.995 1984,5.913533,77.39464,29.57005,72.54283,3.903 1984,465.8725,-2.690631,20.917633,36.30735,3.889 1984,531.8728,187.75266,34.03882,87.30588,3.887 1984,474.51492,-16.382404,18.082886,38.613266,3.848 1984,2.312224,-23.543472,50.47341,135.0871,3.847 1984,594.50964,-2.985777,19.750916,38.50792,3.842 1984,-5.632633,34.680588,19.404514,51.248947,3.828 1984,219.57275,212.70503,17.393097,36.673508,3.8 1984,458.82358,6.189087,34.586823,75.199936,3.788 1984,489.93137,-16.62031,18.626251,42.542397,3.771 1984,465.97076,-13.938324,42.98987,84.07127,3.73 1984,548.0201,-15.467085,32.07263,69.87057,3.712 1984,5.137018,-9.728401,29.62985,78.01775,3.711 1984,587.04596,-32.541653,53.795654,128.12079,3.666 1984,-10.257822,34.78714,29.061049,77.40416,3.637 1984,457.6322,-2.7642593,21.21521,36.10936,3.63 1984,497.82242,-15.541666,18.946442,42.98481,3.629 1984,565.33057,-32.16555,29.67102,73.422905,3.623 1984,-5.5634236,99.4818,18.128635,44.809708,3.598 1984,533.6676,-32.924564,29.255127,75.474205,3.589 1984,458.69775,-13.027222,33.69153,61.52791,3.572 1985,-5.350208,-18.067692,17.595142,44.15699,6.333 1985,610.27606,-45.868866,42.278748,95.65859,5.824 1985,-12.012601,477.35983,30.342113,63.51071,5.768 1985,-6.197915,489.2212,18.93671,42.625366,5.627 1985,-10.562297,-32.934223,29.418278,75.752144,5.406 1985,443.79706,214.43034,20.754639,43.949417,5.32 1985,-73.12343,265.31616,201.27007,462.1911,5.214 1985,-17.283384,-64.41778,56.216385,144.08708,5.199 1985,585.579,-95.18858,74.56262,226.16003,5.113 1985,583.0175,411.88797,71.5932,176.27377,4.986 1985,612.7993,454.48917,39.611633,107.56436,4.948 1985,251.84323,215.51146,15.884766,33.017258,4.907 1985,-21.902723,402.03375,79.58276,175.62506,4.889 1985,410.87552,208.34831,20.587341,45.997177,4.883 1985,-5.445376,200.79388,18.01379,44.660217,4.852 1985,626.9298,-18.687101,17.83551,46.69081,4.816 1985,533.7637,-1.8410454,38.09796,82.59241,4.788 1985,536.2782,310.40985,143.57275,341.83618,4.765 1985,489.99942,-179.21692,234.44363,424.7504,4.712 1985,380.15283,208.22273,31.30072,63.562424,4.71 1985,-37.09282,-128.5164,117.10778,277.35886,4.544 1985,626.50494,487.5571,20.972351,46.61508,4.539 1985,493.49768,226.05591,237.71619,515.5213,4.474 1985,4.369912,218.88077,38.342587,106.10242,4.458 1985,501.04425,87.85872,31.32904,73.444016,4.449 1985,259.75177,214.99648,16.684479,33.170425,4.442 1985,-71.122215,-190.28244,212.09412,457.1506,4.427 1985,588.9092,185.84164,29.569458,82.37393,4.26 1985,2.3905897,-17.072765,17.37339,43.67202,4.167 1985,492.86188,95.01053,29.29065,80.63742,4.116 1985,564.39514,-2.8329868,32.098755,66.76537,4.05 1985,267.7245,217.69359,17.015533,31.032852,3.941 1985,-9.848873,-6.902855,40.43316,100.79492,3.881 1985,579.6461,157.47073,37.378174,71.40004,3.877 1985,243.88335,210.82503,18.01793,34.88623,3.863 1985,1.2734586,207.08878,19.905598,47.24881,3.845 1985,59.394623,221.86899,32.160286,61.460236,3.84 1985,19.606892,70.269226,31.72202,71.35797,3.81 1985,-15.053864,152.33011,49.19912,138.78561,3.769 1985,5.0707316,213.12387,32.04916,64.446014,3.726 1985,1.8140221,-40.26049,43.611645,97.45339,3.687 1985,576.7457,148.13943,49.665466,137.40762,3.686 1985,52.23452,233.46176,31.677086,65.121735,3.635 1985,600.06055,10.215435,35.256042,70.95758,3.627 1985,-5.244658,51.777,19.260561,49.69628,3.608 1985,-9.205614,115.63689,38.995243,108.50583,3.592 1985,0.9253478,231.47145,25.25524,75.44914,3.551 1985,1.3226616,70.4193,25.74691,74.04242,3.544 1985,571.59296,-16.189713,55.741882,121.66807,3.543 1985,11.321184,173.99892,55.506653,120.850266,3.54 1985,418.73184,212.85576,17.932556,43.626358,3.484 1985,-10.120801,196.18999,27.478718,69.226,3.475 1985,546.13275,-14.573627,35.01892,65.69212,3.474 1985,35.464424,210.43474,42.351257,92.47542,3.454 1985,115.79902,210.68765,32.718178,61.500214,3.44 1985,396.0567,213.67653,30.12384,67.47771,3.434 1985,605.78687,-34.33946,28.650879,74.82338,3.43 1985,612.5207,169.64868,35.959045,112.276306,3.421 1985,513.1443,-18.842457,19.931946,46.757305,3.402 1985,537.43286,-17.019142,18.90924,41.28299,3.396 1985,9.686755,-17.563414,18.444344,43.15477,3.387 1985,516.20984,-33.37727,30.868347,82.35436,3.375 1985,601.919,-23.159504,53.862854,130.43524,3.326 1985,275.16464,214.2642,19.121185,34.530792,3.325 1985,354.13092,220.24832,32.66153,58.43518,3.319 1986,488.48993,207.55177,21.785065,45.326996,73.019 1986,503.81586,207.8468,23.705566,45.325104,12.087 1986,613.07117,215.00111,26.199707,76.34941,12.031 1986,432.24908,192.43195,23.146545,54.581863,8.627 1986,622.0785,-32.889774,27.539368,77.96361,6.904 1986,626.7842,-19.457878,18.07605,49.80429,6.365 1986,-10.495127,-33.54955,29.592018,76.672844,6.16 1986,-6.1082244,488.87143,18.802172,42.63138,5.856 1986,-11.880202,477.5228,30.103813,63.701508,5.819 1986,-5.586962,-18.669863,17.994534,45.503147,5.801 1986,602.4247,-55.89952,53.53357,134.37776,5.483 1986,526.8474,21.247066,34.526917,82.25708,5.275 1986,585.3962,-97.840805,74.925354,231.29445,5.215 1986,-72.71168,266.23456,200.65237,460.59613,5.106 1986,-17.9622,-63.975075,56.6398,144.14944,5.095 1986,583.20996,412.19537,71.47156,175.97406,5.017 1986,613.07404,455.008,39.257385,106.74762,4.958 1986,495.56427,212.65216,21.102295,49.181946,4.922 1986,594.3628,-43.939285,45.179504,95.769005,4.891 1986,-21.936493,401.92383,79.59194,175.67236,4.875 1986,484.92612,195.07202,38.714386,68.72867,4.854 1986,626.4379,487.59296,21.04834,46.199463,4.811 1986,-4.2481613,182.4196,17.650246,45.58806,4.805 1986,536.21533,310.28986,143.76703,342.21307,4.788 1986,0.46738267,52.14927,27.199755,81.248314,4.743 1986,490.71893,-179.36887,234.23578,425.7828,4.74 1986,251.56494,207.72925,17.272156,34.741806,4.668 1986,-36.880383,-129.30542,117.43919,279.93256,4.594 1986,493.68,227.31943,237.58862,514.8711,4.488 1986,-71.16024,-189.68732,211.96542,456.7221,4.44 1986,-10.530521,-5.781185,40.830055,103.14229,4.277 1986,266.9904,213.9321,18.632202,36.097473,4.271 1986,258.86835,214.02898,18.141876,34.541275,4.254 1986,464.6156,196.74034,24.057953,56.12648,4.146 1986,613.21265,-21.17905,29.173523,78.91008,4.127 1986,361.23273,235.68463,22.3667,31.42215,4.097 1986,553.3517,-19.468845,20.089966,45.87063,4.053 1986,541.65967,-33.976933,28.503296,75.78245,4.044 1986,544.97095,-18.739704,20.278137,44.233467,4.02 1986,-5.4612103,64.2064,20.306795,51.801804,4.015 1986,244.30899,214.15576,15.615448,32.514694,4.009 1986,353.61407,233.94441,21.39737,30.735916,3.998 1986,618.8276,-19.775032,18.46344,50.344814,3.928 1986,475.1643,200.92435,19.51178,46.383728,3.893 1986,-4.719347,19.24568,18.305845,49.28913,3.883 1986,3.4464586,-19.767204,31.137518,78.06157,3.841 1986,570.2468,-32.439262,60.31311,127.08768,3.832 1986,237.07132,216.43048,14.770905,29.966461,3.826 1986,527.04724,-33.4234,27.80951,76.36912,3.8 1986,2.5543551,-16.747139,17.33614,44.308826,3.785 1986,355.27713,228.15201,33.266296,54.40912,3.74 1986,615.039,5.9559402,24.429504,83.10301,3.712 1986,598.5482,212.90768,38.356323,101.35071,3.686 1986,275.72415,221.62532,18.50293,38.65782,3.684 1986,420.7542,196.55458,31.062988,68.36757,3.679 1986,563.9336,-6.8744106,30.765076,72.82622,3.661 1986,585.05927,-6.7252827,24.22583,58.28459,3.655 1986,252.75816,222.17067,16.375626,32.34723,3.584 1986,558.3761,-34.317005,28.231506,78.38307,3.575 1986,510.81622,224.04492,21.951965,40.292114,3.557 1986,2.037952,-23.921886,51.118748,145.8036,3.54 1986,529.7378,-17.678883,18.60138,40.159847,3.526 1987,567.7724,195.04704,32.77173,79.32649,93.255 1987,481.4532,201.75336,19.296051,44.764236,9.141 1987,600.5947,197.26193,35.847717,101.175415,8.52 1987,622.6481,-33.418983,27.52002,73.83681,7.186 1987,-5.348872,-17.769173,17.714947,44.810757,6.691 1987,-10.804312,-33.791016,29.790573,76.92406,5.888 1987,555.3916,170.32326,55.60547,109.39253,5.83 1987,457.91995,202.41722,22.60373,50.171432,5.652 1987,602.79376,-56.22256,53.531372,131.05525,5.612 1987,-9.021302,464.1497,37.754272,92.64249,5.609 1987,-6.2546053,489.02597,18.891132,42.470734,5.357 1987,626.91736,-19.003143,17.965698,46.86241,5.348 1987,-17.970243,-63.680298,56.226105,142.68756,5.252 1987,277.2306,218.0316,15.97699,27.20546,5.195 1987,586.3414,-98.36094,74.0672,230.19125,5.181 1987,580.11743,197.19041,25.490356,57.43193,5.162 1987,613.1304,455.4041,39.055603,106.460754,5.102 1987,-72.94096,266.21362,200.7333,460.854,5.066 1987,583.3619,411.91458,71.32123,176.21036,5.041 1987,593.4668,-44.949993,44.87549,94.58284,5.011 1987,615.2394,217.21709,25.214966,81.74272,5.006 1987,551.3883,195.01837,32.625732,71.059235,4.993 1987,285.5923,218.51793,16.09021,26.124283,4.957 1987,626.3556,487.9092,20.930664,46.213104,4.88 1987,-21.92584,401.80307,79.45555,175.64029,4.859 1987,489.9812,-180.70605,235.09436,425.8058,4.834 1987,474.50714,199.26772,20.639893,41.065735,4.779 1987,-36.775517,-128.4282,116.65349,277.42023,4.735 1987,536.242,310.12094,143.73358,343.00784,4.728 1987,612.94434,-20.450527,29.96466,68.862076,4.723 1987,2.9780297,-16.892385,16.984526,44.38924,4.657 1987,533.64307,195.96866,38.50946,77.44803,4.638 1987,292.7339,216.333,17.194824,28.867096,4.427 1987,493.6403,227.47406,237.6511,514.8128,4.425 1987,-70.798645,-190.00131,211.55914,457.2538,4.358 1987,-5.633582,187.13544,17.889008,39.508682,4.348 1987,3.8235664,192.11852,39.207672,97.9597,4.322 1987,331.7734,217.5829,17.863922,30.383957,4.251 1987,468.4131,183.23564,37.77246,78.29256,4.175 1987,299.4949,216.71896,17.880981,29.324036,4.164 1987,618.2457,-20.106573,18.95819,45.67403,4.006 1987,573.37103,-22.24762,54.408997,125.32243,3.868 1987,-9.662471,-6.041424,39.848766,99.54344,3.824 1987,515.3057,199.30319,30.842896,61.549683,3.821 1987,596.17847,-3.9703484,42.197327,105.228,3.769 1987,269.47516,218.42636,14.634369,26.821243,3.719 1987,494.01767,-34.182953,28.628693,73.60189,3.715 1987,10.234298,-18.721634,17.619453,46.55294,3.71 1987,-5.564314,171.30235,17.729935,39.04489,3.69 1987,-9.512414,199.10608,38.763058,99.092834,3.68 1987,613.22595,229.04878,37.192627,114.49608,3.674 1987,346.92035,232.82744,18.724792,28.220718,3.663 1987,29.27435,65.247696,32.74526,63.88559,3.641 1987,236.15787,215.37326,15.88974,30.189453,3.62 1987,43.01422,62.49866,33.052612,66.5289,3.575 1987,1.6406679,195.74428,21.126713,41.106476,3.553 1987,203.38783,206.63235,17.293839,32.95871,3.551 1987,338.9909,230.52791,19.721527,29.589218,3.538 1987,355.26962,234.68698,18.460815,29.643677,3.524 1988,-11.382954,-32.621677,30.484571,72.355194,6.925 1988,562.86774,-0.2427063,31.8656,62.82321,6.632 1988,-6.2924247,-17.93242,18.572544,43.270752,6.587 1988,-6.110151,489.7413,18.609016,42.13968,5.958 1988,339.77594,246.02837,19.657684,33.82991,5.843 1988,602.45654,-54.285748,53.219482,131.38426,5.693 1988,623.2545,-33.440014,25.963501,74.221756,5.687 1988,-8.884228,464.847,37.626312,91.393005,5.614 1988,613.1997,455.64362,39.100586,106.51111,5.573 1988,-17.594498,-62.700447,55.99691,143.7309,5.564 1988,585.6256,-95.485306,73.82507,226.68251,5.36 1988,627.0709,-16.707716,16.704468,44.43023,5.156 1988,508.7222,125.14688,28.842072,71.391205,5.122 1988,-72.60484,266.17252,200.42766,460.99277,5.068 1988,583.2853,411.68292,71.329895,176.30273,4.914 1988,-21.799038,402.4273,79.31137,175.15863,4.866 1988,490.21613,-179.39542,235.10516,425.0298,4.76 1988,595.02344,-0.15907097,18.75647,41.3079,4.745 1988,593.9979,-41.6735,44.157898,94.700294,4.726 1988,536.5093,310.39154,143.07825,341.78046,4.704 1988,2.8102887,195.7461,30.988771,68.857086,4.658 1988,580.11206,-10.745625,33.011047,62.6317,4.633 1988,626.369,487.56073,20.99054,46.651978,4.628 1988,587.04175,-2.353857,20.084473,42.25892,4.617 1988,226.323,210.73947,20.448883,35.360107,4.485 1988,235.49472,215.07014,17.41957,33.20453,4.477 1988,-37.04093,-129.23671,116.75312,277.94818,4.468 1988,493.9798,227.5625,236.98218,514.6708,4.432 1988,577.17993,-3.4820862,21.937622,44.843452,4.41 1988,-70.664444,-189.50189,211.49934,456.55594,4.31 1988,548.87854,-4.957367,34.700684,68.38366,4.219 1988,-9.565373,-5.0566063,39.820175,101.77258,4.141 1988,615.14465,-18.576418,26.25824,68.05883,4.055 1988,1.3759208,-21.912899,50.347027,139.72095,4.047 1988,572.3286,-33.873886,30.549866,77.759705,4.005 1988,550.45715,-34.222885,29.530212,78.069466,3.97 1988,253.61908,226.85455,15.333038,28.54602,3.951 1988,595.5303,-11.931009,29.34845,62.911278,3.947 1988,442.17706,-17.249805,18.207642,39.744144,3.83 1988,456.60986,149.46948,20.8349,51.670578,3.821 1988,569.2666,-16.966528,19.17456,42.93598,3.809 1988,261.85315,228.42998,15.161987,27.17949,3.759 1988,572.47144,-13.663155,52.806152,111.70289,3.743 1988,376.90903,254.01434,23.06314,35.988525,3.719 1988,489.44733,194.01503,22.232666,51.023224,3.684 1988,450.4623,-16.316462,18.08075,39.12669,3.682 1988,-1.1901867,219.41963,28.338133,72.87779,3.674 1988,332.3148,246.6031,18.568268,31.82283,3.671 1988,453.16226,-33.24112,30.254547,72.02341,3.638 1988,308.49115,232.55133,18.026459,34.228333,3.624 1988,425.60135,-4.235359,22.117584,41.079647,3.622 1988,243.82156,216.28299,16.777985,31.905258,3.609 1988,-6.1280007,212.15921,19.172483,46.45926,3.592 1988,218.8068,210.3121,20.424713,33.81122,3.584 1988,602.13605,-0.39300156,17.664246,39.268745,3.544 1988,437.92355,-33.55084,29.274384,71.02031,3.542 1988,597.1364,-4.3677483,39.614746,98.60257,3.533 1988,341.4096,234.38719,27.931396,49.717728,3.528 1988,619.5364,-15.969832,16.559265,40.84211,3.527 1988,210.55759,214.8881,20.024307,31.615738,3.495 1988,378.3815,240.16565,34.891937,51.8786,3.494 1988,433.71826,-16.210928,18.21399,39.067154,3.49 1988,2.3906589,-17.861916,17.66383,42.13972,3.485 1988,1.9473219,-39.494946,42.872448,98.522156,3.484 1988,546.2593,-17.053827,18.593079,39.839413,3.462 1988,3.6104548,204.6947,39.923904,102.46698,3.454 1988,-10.94561,196.81001,30.59453,73.17207,3.412 1988,425.88376,-16.941797,18.17807,40.15869,3.385 1988,2.233287,491.2446,19.454578,41.189484,3.375 1988,553.0512,-17.647995,20.06836,41.902077,3.359 1988,19.30073,204.63644,31.189459,61.95694,3.357 1988,352.8838,244.63373,22.082947,39.370117,3.311 1988,90.355385,167.53839,59.0776,115.23752,3.285 1988,-8.303915,32.592876,38.819305,107.820404,3.278 1988,469.09314,-33.08203,30.225098,71.61879,3.257 1988,92.08268,203.75641,31.910286,54.35147,3.246 1988,473.65787,-3.186016,21.498383,38.24738,3.214 1988,494.98553,121.14979,27.677307,74.05166,3.208 1988,590.75507,4.8504066,26.576538,62.80891,3.192 1988,530.77893,-132.50847,115.43335,265.28473,3.189 1989,462.9442,201.66211,27.674438,59.76831,33.831 1989,-6.036527,-18.128157,18.040749,43.858295,6.337 1989,-11.115703,-33.131187,29.538555,73.25068,6.283 1989,316.55728,235.44986,30.22284,61.16574,6.203 1989,-6.0752172,489.43558,18.490799,41.947968,5.787 1989,627.2027,-18.000599,17.144592,45.552414,5.721 1989,-9.046073,464.00452,37.761517,93.06561,5.58 1989,613.3761,454.67758,38.90393,108.139496,5.435 1989,490.40677,-182.5297,234.8104,429.40256,5.409 1989,622.84753,-33.643887,26.555603,75.0074,5.393 1989,314.21893,245.34943,21.476013,40.73639,5.346 1989,-16.726301,-63.656593,54.96112,144.99863,5.087 1989,-72.56237,266.11102,200.30174,461.06158,5.082 1989,626.5069,487.9631,21.041626,45.57193,5.061 1989,538.58813,178.09729,33.186646,68.84532,4.974 1989,-21.906551,402.01898,79.490456,175.59814,4.889 1989,583.1887,412.0342,71.549194,176.20029,4.88 1989,586.1645,-101.0957,74.54297,236.54628,4.73 1989,536.4092,310.12482,143.2063,342.20367,4.719 1989,524.6038,180.63847,33.818665,66.705444,4.704 1989,602.815,-57.363075,53.67743,139.57869,4.7 1989,1.093502,187.76251,30.019228,59.992294,4.64 1989,-37.2723,-130.55095,117.295105,283.62936,4.506 1989,550.3907,168.48395,31.201782,73.90527,4.485 1989,493.64243,227.0043,237.61789,515.8385,4.388 1989,-1.737119,202.46675,28.666712,69.76396,4.275 1989,331.33447,240.4764,31.23404,61.99205,4.231 1989,423.54617,185.83731,25.144928,73.469604,4.218 1989,-70.43155,-189.15967,211.81993,456.04745,4.214 1989,574.6253,174.03876,53.08673,140.51074,4.199 1989,201.36469,198.01094,22.831467,38.177094,4.147 1989,2.8470755,-17.042248,17.021679,42.377663,4.137 1989,322.09457,253.31071,20.316498,37.52382,4.086 1989,328.67355,247.75804,21.784546,42.659286,4.04 1989,306.68027,245.01149,21.218262,37.670456,4.002 1989,477.40686,205.00558,25.29889,54.50174,3.951 1989,611.8016,182.54239,35.38971,114.72635,3.95 1989,357.6906,-35.431187,28.182465,69.7678,3.93 1989,188.16043,190.95496,31.091644,52.715637,3.923 1989,598.57965,177.57846,37.224854,110.677,3.881 1989,-9.984901,-7.5628967,40.014183,105.39523,3.86 1989,619.9391,-5.3623486,18.476807,39.927727,3.847 1989,345.8925,251.55162,20.345276,35.78099,3.781 1989,618.21313,490.42902,21.078125,42.447144,3.773 1989,-4.5842047,172.462,17.273926,39.099686,3.771 1989,470.40012,198.12616,25.415863,45.438217,3.763 1989,594.39276,-47.485073,44.626343,102.57089,3.734 1989,-4.8835564,137.67154,17.77724,43.012817,3.657 1989,459.75403,199.44916,20.327576,41.129364,3.645 1989,-5.672082,199.88026,19.65873,44.184677,3.559 1989,-4.349994,157.84789,16.905643,38.3246,3.541 1989,205.80814,194.16162,28.315186,54.258026,3.521 1989,451.1911,206.00041,40.79535,84.78755,3.496 1989,-9.767827,174.85793,30.40889,67.29463,3.481 1989,583.96295,160.37381,37.94458,106.21344,3.436 1989,1.35836,178.68506,21.560913,43.658813,3.399 1989,-15.415184,150.76224,49.199482,139.13425,3.362 1989,341.838,-35.714878,28.40332,68.20363,3.362 1989,5.666791,-35.282703,28.36839,77.49348,3.353 1989,-5.306599,90.07243,17.369646,41.08011,3.346 1989,339.1495,263.99802,17.125183,34.409515,3.34 1989,184.00969,197.98212,24.871384,37.56317,3.335 1989,337.7616,249.15656,21.009094,39.877686,3.306 1990,454.50598,208.70016,28.860779,65.20615,37.176 1990,464.78085,207.92178,31.048584,69.53256,7.854 1990,-11.884656,-33.022675,31.166637,74.862434,6.354 1990,240.56763,242.58188,23.165894,43.88611,6.351 1990,-5.981953,489.82684,18.433344,42.00409,5.922 1990,208.92273,224.15056,28.112717,57.402573,5.904 1990,622.60144,-33.62278,27.312744,74.65206,5.884 1990,626.7683,488.02805,20.077759,45.075714,5.655 1990,-8.898324,464.2564,37.698997,92.659,5.639 1990,-6.244576,-17.58123,18.30755,43.544395,5.618 1990,627.0279,-19.397661,17.75885,48.321552,5.528 1990,-17.082584,-62.409184,55.892212,142.94975,5.29 1990,273.76035,253.96849,23.972198,41.96974,5.256 1990,486.22073,-35.13199,29.460297,76.46988,5.181 1990,-72.63284,266.20398,200.27408,461.36023,5.083 1990,583.36523,411.74164,71.31775,176.38538,5.063 1990,613.169,455.77893,38.801514,106.184326,5.062 1990,489.85638,-181.11395,234.9726,426.04123,5.048 1990,602.5626,-58.590588,53.824707,138.37679,4.947 1990,-21.78064,402.51953,79.39239,175.12903,4.889 1990,256.40884,241.61133,21.554688,41.671204,4.871 1990,585.91266,-98.19743,74.50049,229.65498,4.861 1990,515.76154,-17.520336,32.145203,74.741,4.754 1990,594.02734,-45.83108,45.009766,98.73653,4.754 1990,536.59314,311.13568,143.08447,341.99274,4.737 1990,-37.148693,-128.10663,116.571106,280.13608,4.579 1990,229.59877,230.8064,29.748642,59.118652,4.552 1990,520.84894,206.65402,23.664795,45.05638,4.4 1990,493.78772,227.12613,237.31836,515.297,4.389 1990,499.3694,-19.035156,35.039307,71.0,4.362 1990,-70.310135,-189.85913,211.58879,456.67847,4.332 1990,532.7416,189.24496,31.071045,63.261093,4.287 1990,539.5959,-21.003712,31.611572,74.63869,4.266 1990,565.63074,194.47888,30.21106,92.072296,4.256 1990,177.48412,203.323,22.761642,33.109238,4.198 1990,-15.9880085,152.18018,49.834877,135.12897,4.178 1990,395.11377,170.04048,28.137909,65.58275,4.071 1990,525.12683,-34.743652,29.687744,79.7034,4.066 1990,513.62805,-18.570974,20.07129,46.723427,3.988 1990,372.05948,170.48265,28.966888,71.28096,3.976 1990,446.38446,189.17494,28.897156,81.25923,3.951 1990,248.88052,250.57266,21.19986,38.172913,3.924 1990,1.8370324,-16.73508,17.726112,42.746803,3.915 1990,505.34454,-20.092552,20.490479,46.18443,3.914 1990,-8.876599,-5.913685,38.757694,101.88939,3.91 1990,489.02982,-20.662128,20.272797,44.859634,3.826 1990,448.36798,188.53786,47.354095,104.321335,3.782 1990,349.36,165.97003,33.551147,77.32938,3.78 1990,481.99783,-18.590183,19.404816,41.17109,3.764 1990,496.8647,-20.72102,20.557861,45.366116,3.722 1990,484.2843,209.77878,39.323425,85.55737,3.701 1990,618.2484,-8.656733,20.176758,44.52968,3.618 1990,470.52658,-34.042995,29.129333,71.99582,3.607 1990,618.6144,490.2156,20.011658,41.668365,3.59 1990,223.89006,238.74062,24.132431,44.01143,3.543 1990,393.1909,174.63313,21.123077,43.85608,3.541 1990,-8.774186,119.46627,38.19975,101.956,3.504 1990,1.7213178,-39.618904,42.894817,99.27084,3.488 1990,549.33734,174.99323,31.218445,78.875916,3.475 1990,-10.888072,62.541805,30.182701,75.4487,3.463 1990,3.3133006,199.15422,38.61873,87.9203,3.452 1990,537.5302,-20.146967,18.917175,48.82508,3.441 1991,485.2718,216.25624,30.08612,64.311325,25.822 1991,627.10974,-17.696507,17.11914,46.460617,7.461 1991,-11.14102,-31.162703,29.674438,72.52937,6.63 1991,-5.812707,-16.682858,17.489609,41.74036,6.508 1991,181.6308,225.64078,34.179565,67.75351,6.442 1991,623.17004,-33.715008,26.158508,76.24863,6.291 1991,-11.98492,477.90442,30.279804,63.373108,6.153 1991,-6.1760974,489.63818,18.721434,41.775208,5.825 1991,499.13867,210.3033,30.493225,69.52391,5.392 1991,603.0129,-55.780746,53.227295,131.94016,5.334 1991,-16.921139,-62.314625,55.76491,144.59503,5.223 1991,613.073,454.81262,39.34131,106.7724,5.028 1991,626.4566,487.7037,20.793152,46.07901,5.01 1991,586.156,-98.90982,74.30853,232.22717,5.0 1991,-72.72396,266.2572,200.43323,460.91724,4.985 1991,490.65985,-180.08342,234.64581,426.41614,4.974 1991,536.46674,310.25537,143.3139,341.9297,4.899 1991,582.94824,411.49844,71.84247,177.05673,4.839 1991,-21.794033,402.49387,79.44052,175.29031,4.818 1991,593.52167,-44.0504,44.8974,94.374374,4.608 1991,339.8199,159.0423,29.41336,79.07312,4.584 1991,475.3616,217.90999,22.501709,54.32878,4.507 1991,493.7163,226.81113,237.34784,514.9729,4.476 1991,-36.698303,-128.33435,116.931366,279.27164,4.451 1991,189.71225,221.06046,24.317963,44.7995,4.376 1991,470.9674,208.76585,37.569885,87.11696,4.222 1991,619.7434,-16.681955,16.803467,42.65382,4.187 1991,403.44873,205.92801,33.673615,63.593597,4.134 1991,-70.198105,-189.19554,211.51405,454.52606,4.126 1991,616.0298,-18.399632,26.553345,69.51568,4.109 1991,362.89752,169.81424,29.598785,76.80827,4.102 1991,-9.164027,-4.831291,38.748642,99.4835,4.078 1991,2.9361587,-14.4963455,16.249973,38.482716,4.027 1991,170.8101,245.95723,39.64897,53.629227,4.012 1991,477.8949,207.27084,51.017883,120.914215,3.952 1991,164.93332,216.1996,31.775131,57.12419,3.84 1991,297.94867,187.75266,21.81604,46.867523,3.751 1991,397.77734,163.6471,29.706726,77.086685,3.694 1991,524.8412,-20.176235,32.526367,70.49561,3.621 1991,403.5226,-17.105564,17.165833,40.31606,3.621 1991,350.95135,167.89954,29.881653,78.1362,3.612 1991,2.0541096,490.98904,19.558504,40.769073,3.606 1991,492.84436,-34.856174,29.614868,76.38633,3.605 1991,211.39734,251.72057,33.10942,62.77864,3.573 1991,579.3562,-35.04742,30.685486,72.60755,3.565 1991,584.9026,-20.210213,18.785278,43.09466,3.559 1991,410.6848,-16.6929,17.292114,41.84693,3.473 1991,454.7769,201.61717,38.77539,73.9601,3.398 1991,395.4068,-17.460293,16.479431,40.564037,3.386 1991,586.00916,-20.034632,35.05847,68.158035,3.368 1991,576.6328,-18.147228,19.702515,42.095303,3.354 1991,191.5251,239.39001,36.024643,66.60254,3.34 1991,521.6889,-7.5758924,21.209473,45.152287,3.336 1991,506.34113,197.1989,32.609253,72.27696,3.311 1991,421.3858,-33.401066,28.00055,72.013054,3.274 1991,569.1377,-17.162134,35.558655,64.67994,3.262 1991,518.13403,-34.40307,28.944702,75.11927,3.251 1991,538.29614,-19.150204,17.72937,44.13027,3.233 1991,137.60678,218.7829,20.175217,28.78537,3.228 1991,495.94196,-40.59308,47.189636,92.08244,3.211 1991,473.7711,-18.308176,18.750702,44.254345,3.192 1992,529.0319,208.69307,35.79364,71.13463,39.291 1992,121.36481,217.3429,35.789673,68.25839,7.577 1992,209.26933,255.81277,36.78528,71.16193,7.254 1992,346.06262,136.0495,31.406586,86.79039,6.851 1992,627.1683,-19.235949,17.302673,49.51721,6.55 1992,-5.684599,-16.453417,17.448784,42.281094,6.135 1992,622.68115,-33.624184,26.544373,78.069664,6.036 1992,-6.123331,490.23026,18.445992,40.890656,5.955 1992,-11.220469,-31.737581,29.774796,74.24288,5.951 1992,613.1661,455.20404,38.94519,106.763306,5.768 1992,-11.681904,478.6918,29.774359,62.767303,5.717 1992,377.26382,160.30292,24.775116,59.503265,5.656 1992,492.5008,-2.489338,29.312134,59.321064,5.574 1992,602.8758,-56.26505,53.201782,135.00238,5.231 1992,483.79395,-9.764429,30.012634,57.52948,5.23 1992,626.40045,487.23645,20.998352,46.343506,5.165 1992,490.78156,-180.8826,233.97565,427.04538,5.151 1992,503.05283,203.21687,39.990936,76.77162,5.121 1992,283.0403,171.83289,18.707,42.410233,5.076 1992,586.05115,-97.347305,74.14844,228.30595,5.061 1992,536.7758,310.39612,143.24774,341.44318,5.023 1992,-72.44765,266.5504,200.38428,460.97644,4.991 1992,-16.96509,-62.10617,55.748764,144.15373,4.889 1992,523.3574,212.71616,24.12793,57.332886,4.814 1992,-21.657255,403.3263,79.18807,174.32562,4.79 1992,582.83704,411.43842,71.83655,177.20874,4.713 1992,446.52686,145.05896,51.999146,127.39639,4.636 1992,594.3657,-44.732697,44.47235,98.28955,4.551 1992,482.36243,210.5072,43.220276,84.24115,4.517 1992,494.04077,228.58984,237.30566,513.496,4.48 1992,541.55096,201.7224,25.36438,48.662094,4.446 1992,-36.84592,-128.24283,117.02147,279.4311,4.43 1992,515.8683,212.97722,43.654175,93.59459,4.394 1992,-8.797106,-5.47641,39.17804,100.02413,4.312 1992,267.2744,172.21371,19.052155,42.240326,4.288 1992,461.6057,-11.246225,30.156677,56.01803,4.274 1992,469.97626,-31.712408,29.216095,71.12378,4.217 1992,-70.61537,-188.63118,212.02248,454.49866,4.109 1992,2.7402587,-14.392653,16.405252,39.436516,3.996 1992,483.3278,184.07916,41.375397,76.266174,3.98 1992,619.33374,-19.194042,17.800964,46.7437,3.895 1992,542.5458,202.66049,42.18158,90.87332,3.802 1992,572.2805,-21.711727,54.540527,124.78116,3.794 1992,504.22488,219.59555,22.68283,46.127686,3.762 1992,569.5642,-16.273586,18.477295,41.197937,3.747 1992,500.057,-15.407761,33.681763,65.95173,3.745 1992,515.0697,-15.9064865,33.84027,68.84556,3.676 1992,489.03674,-16.766651,19.243835,42.381924,3.651 1992,531.69745,-4.363323,33.339233,69.7946,3.65 1992,444.4617,-13.506763,31.087921,64.107834,3.634 1992,457.96024,176.31476,56.66794,115.6095,3.619 1992,528.8576,175.94392,44.4494,83.23192,3.618 1993,596.13904,227.18292,31.357971,66.578,11.253 1993,622.42883,-33.87604,26.921265,78.53564,7.009 1993,587.4686,105.68986,51.950928,180.65106,6.587 1993,-11.284299,-31.128117,29.72919,71.94915,6.494 1993,626.7424,-19.472933,17.823975,49.92065,6.423 1993,-6.03581,-17.482483,17.823229,42.284718,6.151 1993,532.1581,-180.02324,149.68567,420.76767,5.719 1993,-8.763938,464.62628,37.55562,91.79779,5.567 1993,67.02069,220.86028,36.071877,73.296524,5.471 1993,612.96954,455.18726,39.220886,107.09412,5.436 1993,83.21513,252.28265,33.60376,60.961548,5.428 1993,-6.0706925,489.41293,18.597206,42.15512,5.396 1993,609.20056,207.39627,31.165161,84.66626,5.305 1993,626.4658,487.98798,21.120544,46.272522,5.116 1993,-72.545044,266.47888,200.48145,460.9662,4.961 1993,-21.816048,402.60645,79.211174,174.96838,4.836 1993,537.0833,310.66565,142.24176,340.2744,4.816 1993,602.6754,-57.334743,53.325012,134.97173,4.805 1993,582.8696,412.03265,71.95984,176.52899,4.757 1993,-16.940744,-62.482464,55.698006,144.80138,4.752 1993,586.3616,-97.796555,73.50995,236.76646,4.592 1993,-36.747948,-127.775444,116.82138,278.40018,4.554 1993,594.3322,-44.91736,45.064392,95.63936,4.525 1993,618.3944,-8.704134,21.089905,48.73603,4.504 1993,-70.93647,-188.8471,211.97476,455.05304,4.276 1993,493.89142,227.23581,238.10986,515.1315,4.229 1993,-6.1721663,198.50595,18.926628,43.20288,4.048 1993,190.71762,251.41728,35.062393,79.646194,4.044 1993,-9.019245,-5.419613,39.354576,100.160355,4.012 1993,511.19632,-3.5874119,24.294342,42.433266,4.006 1993,577.6842,182.5365,53.384216,146.36346,3.811 1993,349.48856,-4.7008305,29.586823,65.33999,3.785 1993,97.49081,250.75552,36.770836,57.098633,3.766 1993,609.8561,138.66693,37.54431,136.84528,3.763 1993,440.1843,-17.249702,20.095825,42.392506,3.761 1993,-6.109984,227.50606,17.752682,42.034836,3.746 1993,380.5169,72.51053,34.95636,88.18387,3.738 1993,424.85202,135.95505,36.108124,92.42734,3.731 1993,505.9941,-17.616905,19.732758,42.82975,3.685 1993,549.7078,-10.382019,88.696045,309.72845,3.645 1993,611.6828,230.73727,37.59027,109.983765,3.616 1993,494.6104,-35.666195,28.665833,75.622345,3.611 1993,412.57907,127.16796,53.490295,151.60031,3.608 1993,2.745388,-15.393917,16.664333,39.020435,3.608 1993,607.88794,238.72447,23.57837,60.056534,3.606 1993,583.0767,-5.330841,65.42059,240.50093,3.6 1993,432.01843,-39.55741,46.813354,91.365265,3.58 1993,370.26898,-14.973256,18.581726,40.833054,3.57 1993,4.603889,199.65178,38.005135,87.370316,3.543 1993,490.03363,-17.898186,18.254028,40.80656,3.521 1993,498.40234,-17.622086,19.163635,41.036896,3.517 1993,193.40076,224.67264,34.994095,77.03903,3.51 1993,393.19913,1.077961,33.99289,69.76523,3.504 1993,428.66425,-31.055122,30.131226,71.66227,3.499 1993,464.04004,-39.669037,47.398224,90.264885,3.487 1993,386.9909,159.17004,42.024445,110.631256,3.467 1993,-4.4176955,114.27822,17.979357,46.409615,3.445 1993,362.21332,-16.555407,18.39627,42.023098,3.445 1993,71.41887,256.4396,26.870857,45.225525,3.401 1993,-5.5243835,176.73357,18.240961,42.537766,3.389 1993,361.65472,90.81525,57.571716,150.03333,3.351 1993,498.89954,-15.465881,42.454773,79.74181,3.34 1994,415.40613,72.03474,58.464966,185.02454,10.575 1994,543.7942,-16.718979,90.86371,311.20135,9.933 1994,191.80342,233.22539,26.139175,68.26445,6.995 1994,622.4657,-33.377068,26.996277,76.64332,6.976 1994,532.0085,-178.65974,150.3504,421.425,6.663 1994,626.6964,-19.396467,17.748901,49.161858,6.524 1994,-11.732645,-33.023457,31.06727,73.53638,6.328 1994,-6.1258993,-17.465107,18.289286,43.47993,6.077 1994,428.3038,149.40988,34.035095,95.87923,5.846 1994,626.66736,487.55722,20.641846,45.814117,5.603 1994,-8.855014,464.1219,37.72818,93.211975,5.595 1994,-6.0702186,489.61328,18.565273,41.577454,5.468 1994,-17.221066,-62.73618,55.79253,142.74748,5.372 1994,613.1988,454.18164,38.995544,107.89191,5.343 1994,582.8207,-54.814316,68.35474,216.0554,5.319 1994,-72.4977,266.48676,200.74606,460.95026,5.069 1994,341.31503,83.012085,29.947052,77.32822,5.03 1994,611.3645,115.687294,38.66327,124.28658,5.002 1994,602.5867,-56.135258,53.749878,137.99579,4.995 1994,536.68616,310.1268,142.60797,341.09708,4.943 1994,481.93433,22.70552,34.011414,93.55707,4.857 1994,538.7068,-33.75694,32.169617,74.86685,4.787 1994,-21.828323,402.46164,79.434975,175.1434,4.785 1994,582.9687,411.09494,71.89044,177.41177,4.749 1994,420.63812,-31.546806,30.01065,77.09292,4.728 1994,181.55371,241.28542,28.304855,68.39012,4.694 1994,41.52502,212.99097,39.0127,78.006775,4.553 1994,-37.07776,-128.17606,116.63125,277.52213,4.548 1994,570.8526,146.08131,57.374207,159.79619,4.521 1994,50.46421,239.64932,34.022476,61.165344,4.5 1994,618.729,-10.278403,20.52887,51.244648,4.484 1994,493.97113,227.15472,237.89465,515.3562,4.345 1994,425.09875,-17.942652,20.075073,45.896366,4.284 1994,-70.80317,-189.13051,211.75192,456.30066,4.276 1994,389.3476,-33.232025,28.752014,75.24274,4.269 1994,76.15712,257.0391,32.908134,56.26999,4.242 1994,173.53253,232.34084,27.556625,67.56102,4.233 1994,315.69348,200.98853,18.255768,30.004684,4.177 1994,594.287,-44.37809,44.673706,99.80626,4.157 1994,-8.965492,-6.0306396,39.108925,100.80831,4.071 1994,1.9755846,-17.012054,18.00472,42.443184,4.004 1994,553.2064,-21.966663,20.406006,45.65291,3.963 1994,408.7718,13.333214,36.563293,85.69956,3.941 1994,594.63947,160.91736,40.780334,119.38428,3.894 1994,557.1451,-35.29946,29.262146,69.35126,3.856 1994,299.77362,198.62863,16.667938,35.74234,3.847 1994,299.32837,77.4397,30.883118,56.114365,3.843 1994,424.37964,-6.279999,34.012238,68.011765,3.781 1994,187.26173,236.11523,20.860977,47.442993,3.76 1994,528.29987,-17.492535,36.586365,72.80028,3.727 1994,484.2744,-19.535536,31.982239,78.2336,3.679 1994,312.52505,89.86171,22.536926,39.202194,3.651 1994,489.94165,182.167,19.668701,45.158188,3.603 1994,148.19577,256.8279,32.72708,70.27789,3.589 1994,539.70105,151.07628,60.596436,148.37459,3.581 1994,409.71317,-18.240635,19.541962,46.128998,3.58 1994,487.7914,-62.342957,246.02237,459.1114,3.564 1994,57.14337,208.2313,34.382355,79.11063,3.552 1994,307.091,200.04959,18.237946,35.27539,3.548 1994,60.341244,253.24658,32.362232,59.197205,3.522 1994,467.562,271.5921,17.560791,28.437714,3.511 1995,553.9939,-19.442535,87.937195,323.9855,15.06 1995,204.34467,246.92538,30.447495,71.07898,9.946 1995,164.91528,246.08003,31.923798,74.291245,7.034 1995,190.65335,250.7492,27.975113,62.86554,6.998 1995,621.3949,-33.83436,28.183838,77.699715,6.718 1995,626.4911,-19.730812,18.514282,48.50802,6.253 1995,-11.224246,-33.210854,29.79279,75.43909,6.168 1995,57.12552,247.37675,36.58914,63.771133,6.136 1995,532.6544,-178.44058,149.64832,423.2543,6.135 1995,612.2129,-21.170597,29.962036,81.597496,5.83 1995,-6.233785,489.02158,19.045313,42.713226,5.773 1995,-12.185063,477.2835,30.54572,63.77069,5.771 1995,585.9652,56.81231,52.328552,216.04327,5.712 1995,612.9613,454.49597,39.44684,107.72974,5.6 1995,-5.886708,-18.13929,17.97505,44.43248,5.497 1995,181.25092,241.89828,28.211288,65.528656,5.424 1995,42.51998,248.78108,35.901154,60.353287,5.417 1995,603.05566,-56.544952,52.858032,136.43567,5.336 1995,201.4497,247.97319,22.598923,51.203873,5.146 1995,626.3396,487.75476,20.951355,45.601135,5.134 1995,-72.75256,266.08954,201.2253,461.58844,5.079 1995,-17.261286,-63.391197,55.842903,144.69211,5.037 1995,537.0221,310.0157,142.20337,341.1184,4.864 1995,-21.871944,402.14047,79.55545,175.26236,4.787 1995,583.0577,411.4467,71.81329,176.91104,4.677 1995,575.1269,133.38536,54.79004,176.25032,4.635 1995,593.9756,-44.876965,45.70044,97.30684,4.617 1995,67.32858,260.38876,34.42119,61.901672,4.519 1995,-36.979378,-128.4094,117.10777,277.68024,4.426 1995,518.19165,-36.64209,28.885498,82.89362,4.362 1995,195.48248,259.69937,32.57367,71.31192,4.327 1995,586.7342,-98.29583,73.02869,238.81512,4.3 1995,-70.96583,-188.78688,211.41089,455.65283,4.26 1995,523.317,-9.270092,35.89508,71.61436,4.254 1995,493.69336,226.54376,238.15686,515.8715,4.249 1995,324.335,205.45259,15.61618,28.81659,4.076 1995,45.318535,218.33548,37.223885,74.8064,3.929 1995,308.23013,217.31905,16.71811,27.640518,3.919 1995,122.51022,268.91846,34.690186,61.148407,3.889 1995,331.14154,57.089172,29.922546,65.38957,3.794 1995,-9.616552,-6.0135117,39.798477,102.239296,3.767 1995,617.6894,-20.714996,19.707703,50.317383,3.714 1995,176.05002,256.62167,22.373383,50.559418,3.655 1995,82.07689,258.8972,35.757957,59.393066,3.654 1995,2.6370091,221.3456,17.458683,40.21791,3.645 1995,542.9398,-1.67836,36.023743,67.83374,3.621 1995,338.68057,206.05188,16.005249,27.844376,3.602 1995,317.07892,215.37344,16.235962,28.80484,3.584 1995,154.53403,262.30457,34.83545,71.059784,3.535 1996,622.60254,-32.546936,27.800781,73.826584,6.745 1996,532.3958,190.7083,33.069458,80.29988,6.552 1996,216.36581,244.08693,31.985336,61.236435,6.065 1996,44.025784,222.508,34.750553,77.18408,5.924 1996,626.70667,-20.17577,18.492554,48.650146,5.859 1996,-11.052635,-33.478943,29.867226,75.84583,5.858 1996,602.59717,-55.81388,53.150208,135.15704,5.849 1996,189.13953,242.27464,30.477417,65.15666,5.827 1996,-5.8735094,-17.598343,17.705948,44.239464,5.778 1996,-12.449892,477.68936,30.970112,62.8873,5.742 1996,585.417,-95.87872,74.52106,228.3258,5.715 1996,339.9308,208.58192,18.132233,32.767853,5.68 1996,613.06995,454.02618,39.123962,108.16565,5.644 1996,-6.295514,489.42252,18.990164,42.240326,5.385 1996,626.38464,487.25766,20.900513,45.85605,5.234 1996,-17.163965,-63.762764,55.88443,145.86972,5.157 1996,-72.79032,265.7821,201.26282,461.43982,5.035 1996,490.0774,-180.74423,234.63513,426.6565,4.928 1996,205.59523,250.32228,32.890106,66.68355,4.862 1996,-21.841297,402.47473,79.51143,175.10962,4.774 1996,583.0862,411.2712,71.61481,177.03433,4.731 1996,593.9358,-44.200836,44.56482,98.241974,4.696 1996,536.7434,310.9367,142.57452,341.2364,4.645 1996,165.31784,247.83165,32.929245,67.4973,4.552 1996,59.30976,246.20801,32.537468,61.41638,4.498 1996,364.2528,25.930656,30.44757,69.66017,4.454 1996,581.9075,-33.85586,28.91034,74.11767,4.402 1996,77.65117,263.96448,31.80754,57.241302,4.362 1996,-36.975094,-129.0873,117.09155,278.6996,4.342 1996,538.85895,-15.71641,17.056335,41.389503,4.329 1996,-71.09905,-188.64304,211.58728,455.04752,4.242 1996,493.4121,226.50317,238.08563,515.5708,4.231 1996,585.7525,-19.406797,18.904602,43.77055,4.182 1996,578.3858,-17.569365,17.946838,41.926098,3.921 1996,152.90663,235.47658,58.881577,122.38228,3.893 1996,89.34909,269.7191,33.636826,54.086487,3.873 1996,593.8727,-18.441961,19.507751,42.786633,3.753 1996,-9.335499,-5.7674828,39.45221,102.49217,3.707 1996,179.57092,225.59482,32.278214,72.42584,3.693 1996,56.300243,258.50226,25.295704,42.26758,3.685 1996,546.60626,186.23105,32.263916,74.739136,3.596 1996,394.66418,-15.47039,16.885986,41.22984,3.587 1996,491.24817,-33.0355,59.033936,126.47086,3.555 1996,523.10516,-31.649649,59.230713,126.34028,3.554 1996,540.8216,31.63834,31.805481,80.18228,3.518 1996,3.3153415,25.848694,31.770771,87.53372,3.505 1996,526.4364,171.66193,51.529785,116.77493,3.492 1996,618.0922,-20.942142,19.636414,47.27394,3.492 1996,531.3801,-133.26164,114.76965,267.67627,3.474 1996,546.5782,-14.742683,16.953003,40.87597,3.466 1996,574.8955,-16.904171,54.362427,138.67107,3.408 1996,530.6177,-14.693346,17.060059,40.97776,3.393 1996,1.7708802,490.69156,20.234032,41.69809,3.346 1996,499.53412,192.27191,41.457947,95.761536,3.279 1996,410.9275,-13.753811,16.569305,38.496403,3.273 1997,-5.778023,-17.12822,18.209679,43.132874,6.883 1997,-10.81532,-31.835844,29.658619,73.542915,6.128 1997,-12.146093,476.79358,30.698177,64.63965,5.92 1997,612.9817,453.4912,39.33789,108.88501,5.889 1997,627.08356,-18.87238,17.362183,47.6015,5.882 1997,626.46204,487.6424,20.745544,45.59088,5.773 1997,-6.2754784,488.8311,19.118654,43.21237,5.522 1997,419.05734,-4.1593723,31.140564,67.846146,5.15 1997,622.6141,-33.86773,26.669067,76.19555,5.125 1997,59.822838,254.32901,31.661926,58.461243,5.108 1997,-17.005516,-63.385338,55.595512,144.84715,5.076 1997,-72.71888,266.08145,201.26035,460.83115,4.987 1997,509.76605,-4.105356,35.176514,62.048645,4.918 1997,403.0551,0.9188347,32.278473,84.45096,4.843 1997,603.1923,-57.803463,53.229126,137.83127,4.835 1997,50.529247,223.45595,33.347248,76.09926,4.826 1997,585.9092,-95.94821,74.64349,228.0093,4.822 1997,582.91754,411.5807,71.77899,176.82117,4.77 1997,-21.769712,403.22458,79.51028,174.29117,4.758 1997,536.6841,311.0283,142.5274,340.66605,4.695 1997,449.2744,-1.972971,34.280945,63.258354,4.686 1997,489.77612,-179.68861,234.65198,423.15973,4.672 1997,-36.969788,-129.26639,117.43831,279.54886,4.527 1997,-71.18335,-188.78014,211.93536,455.29407,4.245 1997,388.16974,-7.468685,34.92694,80.9193,4.228 1997,493.501,226.55005,238.12485,515.73004,4.208 1997,492.38162,-2.7105503,35.269135,62.894867,4.166 1997,472.98068,-3.053833,33.8078,70.49286,4.15 1997,445.11542,-9.44326,57.355774,107.826866,4.105 1997,89.93483,276.50507,23.135399,36.69577,4.054 1997,-9.7722645,-7.7205276,39.82083,103.254555,4.002 1997,356.00928,-13.669716,34.029236,64.383095,3.962 1997,594.6035,-47.94142,44.870483,101.01245,3.958 1997,494.60513,-36.12603,49.345917,85.25352,3.944 1997,168.55125,267.75104,35.47888,75.818665,3.934 1997,432.85364,193.13075,35.135498,69.31856,3.88 1997,300.54788,-11.518751,31.721252,62.717407,3.866 1997,412.7882,-32.46711,29.826416,76.005035,3.855 1997,1.6880989,-15.588191,18.14533,41.58711,3.791 1997,173.60312,290.54037,39.94644,69.98053,3.769 1997,411.61557,-11.346073,55.036316,110.408554,3.738 1997,214.63702,248.0781,28.100983,64.40521,3.731 1997,371.44397,-6.6693497,31.892334,72.32659,3.652 1997,-6.2588816,153.48004,19.902952,44.81578,3.587 1997,388.98376,-33.631424,29.940796,77.76029,3.585 1997,437.05804,-12.074766,31.731598,66.64222,3.578 1997,76.87526,261.42197,31.618484,55.085358,3.561 1997,463.10425,-34.176167,48.84137,85.73975,3.559 1997,432.55588,-1.7101746,45.170135,85.58401,3.507 1997,72.57738,265.32776,24.689072,41.098114,3.507 1997,315.92645,-9.929852,32.822266,63.07422,3.466 1997,1.9410264,489.81995,20.01414,42.368958,3.462 1997,43.802452,254.72098,32.79609,57.378174,3.459 1997,-10.347719,52.00245,29.84073,77.8691,3.428 1997,4.14099,47.85761,31.861109,91.13495,3.421 1997,1.9693375,-40.341557,42.678047,99.95756,3.419 1997,364.1637,-30.10936,58.29547,121.0787,3.405 1997,619.32764,-18.734545,17.083557,45.28982,3.399 1997,365.65338,-33.19791,29.207397,75.07528,3.384 1997,55.716408,259.49426,25.54673,42.27133,3.377 1997,184.38809,267.09125,22.172592,46.63614,3.364 1998,-5.9238997,-18.155344,18.135658,44.019184,6.717 1998,-11.047292,-32.757225,29.68343,75.00854,6.491 1998,626.9259,-18.771334,17.567566,47.16491,6.25 1998,622.67706,-32.96915,26.79065,74.37045,6.197 1998,-12.329983,478.69412,30.783598,62.121735,5.979 1998,613.0524,453.90836,39.008423,107.92197,5.671 1998,-6.411165,489.57642,18.977884,41.76581,5.322 1998,214.37477,240.71268,28.122635,64.54205,5.219 1998,-17.174015,-64.21711,55.669895,146.37178,5.038 1998,-72.57261,266.443,200.71503,461.00928,5.015 1998,490.76794,-180.60344,234.42493,426.58942,5.009 1998,626.4365,487.59015,20.68457,45.876038,4.982 1998,603.35455,-57.091206,52.945496,138.13599,4.955 1998,-21.811676,402.58078,79.38223,174.96243,4.826 1998,42.118816,259.57498,35.54984,57.627747,4.77 1998,196.42091,235.17564,30.262283,68.490616,4.759 1998,536.7882,310.91608,142.45587,340.77032,4.735 1998,583.0412,411.68167,71.70636,176.75943,4.734 1998,585.66113,-96.00113,74.69983,228.1963,4.731 1998,-37.084232,-129.54259,117.545975,280.29425,4.444 1998,2.6317234,-17.988373,17.724886,43.993923,4.3 1998,493.96173,227.45047,237.43933,515.0027,4.29 1998,307.08408,200.63234,16.318054,25.491959,4.182 1998,362.25397,209.62494,18.848389,33.823914,4.166 1998,4.5683136,179.253,31.508125,96.946915,4.15 1998,-70.98619,-188.63211,211.51857,455.055,4.138 1998,-10.31032,20.845676,28.791468,81.21991,4.049 1998,356.3954,209.10655,17.76117,31.235016,3.95 1998,408.03937,36.565773,34.12329,85.19934,3.936 1998,416.53796,198.09615,21.37323,49.55696,3.932 1998,-5.8722644,250.43483,18.134241,40.408005,3.907 1998,28.659962,86.201096,30.704426,62.718094,3.9 1998,300.35373,202.90482,18.62503,33.5876,3.788 1998,594.4392,-46.167732,44.95996,100.75686,3.761 1998,480.57465,-5.7517242,54.78363,134.60403,3.731 1998,182.73634,232.12572,28.758987,72.13646,3.63 1998,316.72202,213.62273,16.763214,35.910095,3.623 1998,396.87762,198.4319,29.558563,60.64885,3.588 1998,363.601,199.25226,29.061646,55.684906,3.575 1998,-5.1913347,27.862322,18.656166,50.862976,3.566 1998,496.9189,-12.378962,32.98044,71.441216,3.56 1998,31.472395,221.22214,36.40365,76.13153,3.5 1998,509.2258,89.00465,58.483612,208.44293,3.497 1998,1.8895674,490.99014,19.706352,40.93045,3.491 1998,-5.485607,121.60664,17.50948,40.28479,3.468 1998,542.4904,-33.392685,27.843933,76.28799,3.437 1998,0.5762291,30.471386,27.678165,95.750595,3.435 1998,324.02316,215.33237,17.033295,34.06862,3.376 1998,619.24585,-19.217793,17.701294,44.99554,3.359 1998,521.2728,166.55739,34.784424,101.00444,3.354 1998,299.6323,215.43924,18.052185,34.48651,3.342 1998,332.6886,217.76834,16.745972,30.6996,3.341 1998,257.26736,215.36275,21.547699,38.70427,3.328 1998,154.31964,238.08968,56.14621,115.14717,3.306 1998,339.9464,217.44888,17.536469,30.505554,3.286 1998,2.2762704,-25.680382,49.582306,151.23747,3.277 1998,58.07484,266.1144,34.30753,57.964996,3.277 1998,5.1931167,-35.29159,29.492575,79.12899,3.262 1998,347.82504,217.76735,17.694672,31.192123,3.254 1998,10.247859,-19.749723,18.332191,46.441856,3.238 1998,352.01187,207.59169,26.226013,50.40303,3.237 1998,315.7155,201.5289,15.861603,24.848495,3.213 1998,563.68335,-7.9696636,31.218262,67.35434,3.199 1998,306.6355,205.67421,18.953644,39.167862,3.193 1998,40.638603,204.36403,32.980354,63.205215,3.187 1998,53.821583,269.22244,27.252476,40.852386,3.181 1998,-9.314647,50.128178,30.426361,81.18446,3.18 1998,83.60925,261.8226,34.01042,59.305298,3.164 1998,421.21844,184.49466,28.496948,67.89366,3.161 1998,437.37155,-35.446724,30.490356,79.11587,3.148 1998,203.97809,281.72858,31.49176,70.50229,3.133 1998,-11.512975,233.2321,29.169685,73.599625,3.121 1998,203.4127,139.18713,19.260468,51.472794,3.106 1998,208.27394,250.94624,23.963455,56.481827,3.105 1998,-10.676665,143.99734,29.533924,74.961395,3.103 1998,-6.1669865,313.0561,17.58303,40.674805,3.081 1998,597.1483,200.59654,38.59424,112.183426,3.08 1998,39.36068,269.99304,26.612389,39.44098,3.077 1998,597.06903,460.7693,38.701843,99.548645,3.073 1999,315.25424,215.70682,19.271484,36.69867,7.442 1999,3.3268845,262.2493,34.522736,63.84912,6.416 1999,389.18393,194.22858,28.777832,68.22626,6.216 1999,-11.298266,-33.372715,30.386272,75.82922,6.181 1999,-5.894294,-18.84586,18.02216,45.37517,6.142 1999,626.3783,488.3429,20.934448,45.266174,5.929 1999,627.20514,-17.224113,16.884277,45.303333,5.787 1999,613.01306,454.01846,39.62378,107.93399,5.701 1999,314.23083,207.69786,19.536896,28.21614,5.68 1999,-11.869435,476.71567,30.271877,64.37857,5.656 1999,-6.0787745,489.1129,18.757404,42.572998,5.47 1999,-2.170496,239.72581,30.039738,77.78096,5.196 1999,2.4638617,210.38297,31.965986,69.286835,5.132 1999,-72.80191,265.95038,201.21112,461.96942,5.112 1999,622.9339,-33.948914,26.228638,75.376816,5.103 1999,299.8392,209.97858,16.908813,26.133698,5.089 1999,-17.19952,-63.232754,55.79407,144.46199,5.005 1999,603.2634,-57.248177,53.127197,140.51715,4.91 1999,-21.932465,402.35263,79.74939,175.18582,4.886 1999,425.43427,176.99026,29.630402,83.10947,4.808 1999,490.1499,-179.22495,235.14441,425.86807,4.795 1999,536.772,311.36124,142.43481,339.77634,4.794 1999,583.0338,410.78217,71.79346,177.73694,4.769 1999,156.04607,256.7212,31.31047,66.76807,4.721 1999,585.7764,-97.852005,75.29932,231.88408,4.714 1999,196.03004,248.47784,32.753998,67.65857,4.615 1999,-36.576977,-128.47191,117.10443,276.02893,4.579 1999,207.68324,229.14113,32.558487,66.29683,4.46 1999,493.67706,226.59708,237.86273,514.84094,4.343 1999,-6.404803,263.9258,19.864973,44.308105,4.314 1999,179.00394,248.6919,33.48468,66.03851,4.308 1999,492.2491,188.76329,31.82779,83.9875,4.304 1999,4.5036087,50.59643,31.179646,80.11569,4.282 1999,-9.344725,-6.050171,39.468388,101.19431,4.259 1999,161.47137,238.34395,44.419357,70.97569,4.259 1999,17.206913,263.3012,36.0297,62.273895,4.247 1999,-70.97367,-189.01376,211.59503,456.13382,4.162 1999,-6.3426948,218.18855,20.210354,44.586197,4.151 1999,382.50302,200.54343,22.986206,57.353058,4.006 1999,349.73553,-35.8701,29.862213,80.150185,3.974 1999,307.43887,210.0967,17.321259,28.4059,3.929 1999,-13.198528,265.73398,31.6054,65.99277,3.929 1999,339.2248,214.16042,19.111816,35.957092,3.927 1999,618.18677,489.53033,21.051453,43.02942,3.881 1999,411.29907,137.28636,52.233643,143.07137,3.795 1999,316.06152,203.2626,28.435822,52.98404,3.775 1999,405.39703,152.73853,39.803772,104.18506,3.711 1999,50.836365,276.737,34.0457,57.78604,3.71 1999,505.61353,189.43774,30.878662,70.93234,3.644 1999,1.6682887,-39.000454,43.280613,99.35943,3.636 1999,0.589422,65.155785,24.11128,73.75144,3.617 1999,9.493565,219.87526,34.544975,82.64635,3.588 1999,1.0912061,276.74783,22.24309,42.614807,3.572 1999,30.161171,48.844406,28.308868,85.89049,3.562 1999,84.11144,282.1678,32.11055,59.140625,3.498 1999,-10.239911,190.71251,30.814316,67.870285,3.483 1999,492.75684,-34.6439,29.665405,70.124596,3.478 1999,619.81024,-16.616758,16.19751,41.64733,3.474 1999,34.579662,259.12408,34.897846,67.77396,3.458 1999,144.59702,234.63522,45.03125,74.84152,3.453 1999,369.1179,205.73705,27.745392,59.264847,3.449 2000,147.8325,252.02145,30.702744,77.752686,7.231 2000,185.2085,244.75557,31.910934,67.15956,7.047 2000,-12.125626,476.79068,30.660162,64.28909,6.39 2000,-5.831503,-17.097916,18.20966,43.007942,6.357 2000,300.22162,212.05254,14.674103,22.531876,6.227 2000,626.84033,490.25494,20.719238,43.150146,6.133 2000,-6.195956,489.02496,18.890526,42.43994,5.882 2000,613.31964,454.0413,39.43817,108.36368,5.689 2000,-11.164814,-32.322193,29.860065,73.97425,5.465 2000,618.75604,492.2989,20.146057,39.807373,5.433 2000,627.2196,-18.154713,17.237305,46.592766,5.402 2000,611.1647,-48.474487,41.64624,101.80581,5.117 2000,121.427345,250.35614,32.789833,84.05292,5.069 2000,-72.50221,266.84216,200.49664,460.54578,5.016 2000,-19.862797,-87.226364,71.60301,197.45471,4.971 2000,-21.946064,401.8113,79.74632,175.69907,4.875 2000,531.63477,-179.17746,150.48962,418.90515,4.869 2000,583.11383,410.39923,71.71924,177.96411,4.84 2000,585.8743,-96.74577,74.58795,229.46083,4.819 2000,162.39775,250.85721,34.498383,68.45825,4.767 2000,536.5641,310.94354,142.60394,341.1988,4.747 2000,-36.215706,-128.48335,116.65452,278.59354,4.601 2000,299.4346,215.74365,17.979828,32.79666,4.517 2000,539.1378,-18.699162,32.46228,80.37697,4.506 2000,493.42493,226.30566,238.22357,515.6546,4.345 2000,314.59604,217.5151,19.077423,33.050323,4.275 2000,316.6256,209.93835,15.1345825,25.12648,4.219 2000,-70.585396,-189.49477,211.49033,456.31348,4.21 2000,432.54492,-9.758072,45.929565,84.86146,4.196 2000,2.1278338,-15.886305,17.731133,40.92488,4.113 2000,563.10474,-21.629656,32.14691,72.11131,4.052 2000,307.0376,216.19421,18.43988,33.548294,4.019 2000,306.5984,211.53331,14.99353,24.123306,3.875 2000,-9.228192,-18.215782,38.54543,98.99349,3.87 2000,1.8655288,489.90555,19.94136,41.38626,3.804 2000,492.7809,-9.4686775,29.427582,76.91266,3.785 2000,522.2226,185.53896,32.0036,85.63835,3.691 2000,537.23395,207.49611,35.138367,89.58714,3.647 2000,294.22977,206.926,12.3272705,20.002045,3.566 2000,429.36646,14.865154,36.048035,87.383316,3.541 2000,9.286281,-17.341202,18.089779,41.885326,3.523 2000,525.8054,-18.050657,32.17865,77.37439,3.496 2000,-7.0397377,62.532574,37.40629,110.78125,3.483 2000,597.7046,461.1089,38.730774,100.415344,3.454 2000,440.7522,-26.84211,61.809418,123.10908,3.442 2000,11.011694,-13.245743,57.203148,160.61684,3.433 2000,198.24503,241.97227,22.955063,43.32759,3.425 2000,500.3786,186.18478,41.977356,102.54343,3.392 2000,282.8639,215.71368,18.696808,32.660538,3.326 2000,130.49084,230.56146,31.918518,74.55554,3.326 2000,505.36496,-19.821354,19.332489,45.306942,3.324 2000,17.958206,-17.121857,17.590164,40.61456,3.294 2000,511.89478,165.74414,53.8584,150.72827,3.278 2000,26.044132,-17.721424,17.753685,40.270077,3.261 2000,346.18536,-18.491276,17.97522,46.65286,3.193 2000,284.81946,209.82327,14.795593,22.903824,3.187 2000,325.9173,-20.582167,30.520996,72.08578,3.182 2000,619.44574,-18.225147,17.06482,43.713196,3.173 2000,338.73996,-18.949612,18.149109,44.666725,3.165 2000,325.45288,203.59422,30.280792,51.45912,3.146 2000,-12.301778,282.12222,30.72836,69.22653,3.139 2001,306.0326,214.08954,17.769348,33.821304,10.135 2001,314.63077,217.35829,17.964722,32.567184,7.633 2001,80.216484,266.7927,56.789467,126.32297,7.256 2001,379.39395,219.04662,20.128296,41.172684,6.999 2001,-6.418504,-17.73621,18.348927,43.096584,6.29 2001,-11.904436,-32.441696,30.12841,73.731094,6.254 2001,613.4254,453.9478,39.45691,108.164734,6.145 2001,626.56946,489.40887,21.03357,44.64435,5.992 2001,-6.067025,490.04608,18.592564,41.692688,5.863 2001,-11.847239,479.25177,29.989206,61.98938,5.85 2001,355.126,217.30165,20.013031,36.69478,5.543 2001,627.035,-18.977997,17.581116,47.30706,5.449 2001,623.01,-34.154804,26.439392,75.75627,5.358 2001,-72.54777,267.36877,200.56189,461.45782,5.243 2001,101.6914,275.23837,36.95774,84.44272,5.222 2001,515.0013,160.27353,39.996826,116.47595,5.077 2001,490.87262,-181.00421,234.64325,427.14484,5.023 2001,-16.772497,-63.23027,55.47467,145.85846,4.994 2001,162.96877,252.16597,32.66118,75.401535,4.975 2001,603.41956,-56.56986,52.748352,137.25642,4.971 2001,1.7766702,-17.392227,17.95846,42.920887,4.957 2001,583.01953,410.9036,71.75922,177.57114,4.906 2001,322.89917,217.97488,18.421814,33.349915,4.9 2001,300.9718,210.6333,16.706787,24.728882,4.891 2001,53.69881,64.38762,29.760845,75.39691,4.826 2001,362.6459,217.49023,19.682098,39.803406,4.708 2001,536.6743,310.74622,142.35205,341.31018,4.692 2001,-21.59563,401.29218,78.95269,175.99084,4.677 2001,585.84186,-96.64451,74.55829,229.26093,4.638 2001,618.73755,491.82993,20.276245,40.898773,4.637 2001,330.77942,220.46147,18.358154,30.215317,4.617 2001,486.58307,168.98225,39.090576,104.0529,4.556 2001,302.78027,207.74004,25.767517,55.95912,4.477 2001,-36.55046,-129.35133,116.69248,280.7266,4.453 2001,348.0146,219.55727,18.729858,32.20746,4.433 2001,301.38644,218.69069,16.654694,34.902634,4.426 2001,493.65118,227.04044,237.87628,515.12256,4.284 2001,-70.423676,-189.82416,211.71841,457.2076,4.263 2001,8.423767,232.09344,77.81381,208.00696,4.218 2001,338.54935,219.50694,19.751251,31.224075,4.198 2001,385.68842,225.7947,18.612854,40.06508,4.187 2001,532.4494,-20.864157,30.02887,69.698395,4.166 2001,370.95013,216.64746,19.566833,37.498306,4.145 2001,36.092342,245.07545,65.96268,150.09386,4.119 2001,283.81442,213.71837,18.283234,34.452347,4.118 2001,307.78262,205.55363,14.920074,23.897919,4.072 2001,76.564545,81.6998,30.478775,77.30939,4.023 2001,190.14001,190.40457,29.787415,64.40607,4.021 2001,324.07922,210.94617,16.207947,24.99553,3.942 2001,541.704,-35.102077,28.203857,74.46184,3.928 2001,90.61039,96.70245,20.529762,49.878113,3.927 2001,594.80493,-46.515865,44.132874,101.484116,3.918 2001,-6.780181,50.097435,37.016655,107.63505,3.898 2001,500.79193,3.3934174,33.019592,87.90097,3.891 2001,2.4552572,491.73407,19.116894,39.63684,3.85 2001,-7.9804325,3.7517052,37.86389,112.430756,3.738 2001,597.28296,460.9619,39.192932,100.30469,3.689 2001,213.8328,197.00311,35.811005,84.63562,3.662 2001,9.767731,-18.856829,18.245422,42.350197,3.658 2001,510.6573,-17.987392,29.871521,72.49326,3.63 2001,5.3825855,189.62799,28.77746,79.426636,3.63 2001,103.042496,254.89935,58.76747,111.89508,3.609 2001,-9.771988,111.3769,30.829758,76.553246,3.606 2001,571.0122,-16.879766,32.367065,75.789665,3.591 2001,67.78039,268.07892,46.347054,113.93994,3.585 2001,364.9272,115.396095,33.04883,78.10061,3.574 2001,-11.66421,343.36804,29.919205,71.85828,3.558 2001,73.707344,83.362915,21.965378,55.781708,3.548 2001,501.0755,176.25766,41.387756,106.57596,3.525 2001,580.7613,-34.22895,29.129395,80.31245,3.454 2001,477.21725,-4.6689606,36.952423,87.890076,3.427 2001,309.68158,215.70825,28.732697,59.80493,3.419 2001,488.42346,-6.4821587,21.962463,45.921795,3.418 2002,109.893074,262.37735,44.357033,89.382416,25.88 2002,596.08105,164.50159,34.322083,76.34543,10.551 2002,306.45087,212.32794,18.48471,33.117355,7.936 2002,323.04376,212.28307,18.46994,32.405167,7.305 2002,298.92203,212.91928,19.051392,33.28746,7.041 2002,314.62094,213.94957,18.0495,33.011078,7.028 2002,-6.0590954,-16.86744,17.668518,41.803944,6.649 2002,-11.55938,-32.343983,29.93043,71.510635,6.591 2002,612.9768,453.70108,39.73181,107.95053,5.988 2002,338.63406,214.86655,20.143402,35.154205,5.822 2002,573.76825,169.74606,31.284424,75.389404,5.789 2002,330.58844,214.34644,18.694702,34.626297,5.782 2002,-11.779554,476.8183,30.333374,64.05383,5.668 2002,602.779,-57.37204,53.071594,140.46326,5.606 2002,-6.1884284,489.12906,19.110905,43.315155,5.565 2002,627.1868,-18.293247,17.24176,46.831818,5.508 2002,626.59705,487.86636,20.971619,45.76999,5.5 2002,487.57733,-13.065916,36.81671,61.523277,5.416 2002,-17.24608,-63.422256,55.60164,145.76549,5.384 2002,369.54523,215.58298,23.085938,38.753372,5.363 2002,58.959312,77.2961,33.556664,74.219696,5.259 2002,396.16882,-33.01962,30.514526,77.20879,5.183 2002,-72.266266,267.50714,200.51724,462.11298,5.108 2002,302.40536,208.76231,26.834778,53.365158,5.052 2002,490.20142,-181.54901,234.84412,427.31293,5.005 2002,582.9725,411.16254,71.7746,177.06903,4.936 2002,622.903,-33.874844,26.381165,75.82825,4.933 2002,478.54193,-4.6616974,48.98645,86.716034,4.799 2002,499.4361,-33.69307,31.674377,71.75944,4.772 2002,536.50476,310.56427,142.76428,341.7724,4.764 2002,274.12625,212.00394,21.384491,36.796616,4.747 2002,532.55774,53.128143,37.360962,78.59335,4.677 2002,290.55032,213.55191,20.161407,33.28984,4.674 2002,-40.27245,364.48102,110.90788,276.52618,4.664 2002,470.09363,199.724,30.73053,61.23947,4.653 2002,585.78125,-97.3934,74.50714,232.83629,4.579 2002,116.58644,228.97104,58.39853,122.70798,4.54 2002,-36.564705,-128.80176,116.54396,278.95285,4.532 2002,618.6652,489.33633,20.429138,42.726532,4.499 2002,443.00385,-7.407734,33.188538,71.29928,4.312 2002,-17.798063,432.81842,55.504356,143.7063,4.299 2002,493.35852,226.45541,238.28076,515.475,4.299 2002,-70.67289,-189.10237,211.19348,456.13635,4.27 2002,282.218,213.9307,20.350952,33.772247,4.258 2002,454.6182,207.13303,23.628937,50.329315,4.236 2002,2.80441,-16.262642,16.510582,41.170048,4.234 2002,384.9751,213.60303,22.860565,44.967834,4.093 2002,373.95663,211.95645,28.404816,53.12619,4.084 2002,582.6255,169.00517,38.084595,98.46037,4.083 2002,180.17288,186.7239,39.50937,80.537384,4.077 2002,418.94904,-16.86734,33.842834,72.163475,4.069 2002,128.50061,254.98024,34.718475,82.27171,4.03 2002,-2.0126152,332.345,26.934444,91.91812,3.996 2002,505.4026,-5.3558216,34.301514,60.107857,3.964 2002,468.48737,-34.750492,31.125702,79.775505,3.963 2002,317.81638,210.8857,27.646545,54.67723,3.937 2002,610.34143,152.77483,29.170044,77.88078,3.883 2002,358.72467,213.70253,29.402802,51.542313,3.878 2002,307.9053,227.67294,18.166138,34.585052,3.832 2003,312.8617,208.64455,19.548523,35.679245,14.3 2003,331.45462,210.13074,19.579132,33.524323,10.716 2003,538.329,-22.623657,91.28381,309.7707,6.986 2003,-5.999065,-18.660015,18.194498,43.86031,6.616 2003,-6.2686434,489.12546,18.781166,43.445404,6.42 2003,-11.443987,-32.49352,30.111433,71.11013,6.053 2003,626.7938,-19.13501,17.427124,48.36983,6.044 2003,622.76385,-33.21573,26.417786,76.34881,6.012 2003,-12.083116,477.64334,29.928097,63.998993,5.999 2003,281.3299,213.22592,21.312744,37.84114,5.913 2003,490.58972,-184.47546,234.09277,430.35696,5.907 2003,626.60815,488.68655,21.054077,44.471893,5.828 2003,322.64145,211.34691,17.624329,33.940628,5.682 2003,613.2717,454.05713,39.359985,107.87402,5.63 2003,346.73672,216.72328,18.009369,32.954605,5.522 2003,603.32263,-56.6249,52.604126,139.52437,5.26 2003,-16.496563,-64.44829,54.899864,147.31447,5.158 2003,338.6339,213.81674,17.154297,33.799316,5.116 2003,-72.61511,267.51703,200.70221,461.03308,5.112 2003,536.5235,310.1145,143.1297,341.16772,4.943 2003,-40.667324,361.7411,111.8775,278.364,4.932 2003,582.86255,411.5983,71.94617,176.7211,4.932 2003,394.60327,-5.9340286,31.60431,72.23756,4.884 2003,0.8825171,294.31274,35.9406,89.17584,4.838 2003,130.36046,187.66296,42.56259,76.88556,4.735 2003,493.89136,227.49545,237.67554,513.9802,4.46 2003,-4.141058,195.84,17.091309,45.380875,4.398 2003,-5.056182,118.98032,18.432693,45.010277,4.386 2003,-18.065922,433.72333,55.471558,142.12964,4.376 2003,307.16376,206.43396,19.079681,31.990234,4.345 2003,-37.11455,-128.91753,116.628265,283.5808,4.327 2003,-70.480934,-188.58305,211.34903,455.09552,4.316 2003,585.9213,-97.82623,73.81018,234.5509,4.295 2003,530.8134,159.40999,40.064392,114.19383,4.288 2003,98.76377,196.32773,34.701027,60.351166,4.28 2003,199.27994,224.48022,28.00795,55.535065,4.23 2003,524.8226,-14.83201,32.32141,70.02258,4.106 2003,398.29785,215.84299,26.824585,56.438446,4.076 2003,618.86053,490.68027,20.168274,41.273285,4.06 2003,-0.38224697,101.29535,25.88969,70.47168,4.048 2003,-7.996954,3.7939758,38.14671,111.918335,3.993 2003,382.5752,-34.619488,28.934082,80.48018,3.989 2003,504.27127,5.881298,34.827972,75.22983,3.931 2003,-0.7596433,320.61853,32.194183,102.212036,3.924 2003,116.77969,193.64015,36.58165,62.412827,3.901 2003,385.56012,216.58174,21.08078,42.05742,3.847 2003,598.1701,125.62048,38.85956,116.279205,3.844 2003,308.66278,217.46143,16.5531,31.996582,3.798 2003,436.21796,-2.3690338,31.702911,68.7142,3.787 2003,-13.019485,302.2546,51.88492,150.23691,3.772 2003,565.9411,23.63041,58.200073,195.68903,3.769 2003,596.50397,233.27626,39.84131,103.92949,3.767 2003,594.5385,-43.913406,44.485596,98.64477,3.767 2003,555.4395,146.20209,53.90503,158.73666,3.751 2003,2.622106,-17.473444,17.346622,41.989315,3.75 2003,-5.7222843,89.72987,18.511293,42.839203,3.725 2003,-4.9552827,215.18768,16.258217,39.03572,3.714 2003,619.1427,-19.147339,17.497375,45.860912,3.705 2003,409.62338,-16.58043,18.817596,44.798447,3.676 2003,145.98083,198.21164,39.92276,74.75607,3.675 2003,229.94347,211.06334,34.793777,73.82863,3.646 2003,421.66833,206.67085,38.455933,84.02394,3.617 2003,5.1237154,-35.85892,30.019985,77.34464,3.607 2003,525.16797,183.2732,32.89209,70.686905,3.606 2003,515.31305,-2.3467426,31.365784,67.65733,3.557 2003,414.41693,215.2942,26.980011,58.595535,3.53 2003,437.2791,207.224,39.04416,82.476135,3.506 2003,-10.175734,310.72586,33.857758,77.273926,3.505 2003,-0.28228164,160.44965,26.071692,75.3434,3.498 2004,319.32492,217.55638,19.22992,39.04271,35.796 2004,194.182,239.7117,21.697586,57.617584,12.318 2004,340.83252,219.0676,17.715027,33.55374,10.799 2004,62.231834,220.05823,36.752342,68.8031,10.746 2004,354.818,217.2554,17.825195,32.19368,9.576 2004,197.82306,245.46912,28.008972,71.38989,9.306 2004,380.67145,219.42851,16.4693,27.541946,7.757 2004,209.23723,240.29112,21.07373,48.365555,7.704 2004,347.27112,216.60358,18.379395,32.530136,6.88 2004,627.2442,-18.00176,17.048279,46.806335,6.408 2004,565.3371,202.53754,34.62561,79.509796,6.308 2004,613.30634,454.27615,39.0719,107.55301,6.13 2004,280.20578,218.29816,20.916382,39.28119,6.121 2004,-11.696766,478.63043,29.982574,62.86963,5.973 2004,-6.356101,489.82025,19.23162,42.657715,5.936 2004,-11.029905,-32.81281,29.75793,74.25574,5.706 2004,-5.963843,-18.605791,18.198456,45.181393,5.677 2004,626.6674,488.46005,20.68457,45.315216,5.568 2004,363.30286,220.06999,16.185791,28.636612,5.522 2004,623.10724,-33.340115,26.170044,75.69798,5.418 2004,198.34637,215.20943,34.596664,79.66734,5.38 2004,27.420055,63.38353,33.740177,88.80582,5.372 2004,-72.399216,266.33405,200.54572,462.48682,5.138 2004,329.3969,220.82527,18.789886,34.73645,5.132 2004,-17.04479,-63.84244,55.619614,145.34172,5.103 2004,569.7008,129.40002,57.471313,160.64453,4.984 2004,536.43933,310.31494,143.36047,341.51123,4.943 2004,373.0252,220.01183,16.282043,28.426254,4.89 2004,582.86346,410.91068,71.912415,177.70871,4.86 2004,131.86035,202.08249,41.134644,78.898834,4.811 2004,603.1079,-57.58332,52.85559,138.4712,4.769 2004,213.2997,230.29945,27.844696,60.141647,4.719 2004,-21.773666,402.74283,79.16295,174.57126,4.691 2004,469.12704,206.82175,38.317352,79.26987,4.685 2004,490.85114,-181.82585,234.59045,425.46246,4.671 2004,53.156696,244.90906,30.572514,66.6994,4.647 2004,493.77374,226.99817,237.63873,513.9522,4.535 2004,69.50748,235.00066,37.217995,70.60939,4.477 2004,527.17114,-1.5498924,36.322144,69.69925,4.474 2004,80.26947,199.09671,42.205902,84.77902,4.464 2004,183.91801,216.86867,35.180206,79.016464,4.362 2004,586.07117,-100.631584,75.35205,234.02393,4.349 2004,-70.3594,-188.22604,210.73575,455.6987,4.339 2004,156.73465,237.29959,31.200546,59.56485,4.33 2004,484.70618,205.00601,37.859436,80.561554,4.323 2004,387.0835,220.83534,16.536743,27.875198,4.323 2004,100.0538,199.4968,41.245148,80.77609,4.314 2004,-36.783463,-127.502365,116.60901,278.6105,4.296 2004,323.48083,230.51285,16.68219,33.681366,4.054 2004,594.41034,-46.712685,45.08496,99.131584,4.009 2004,115.627365,197.64792,41.02646,80.045685,4.005 2004,148.19727,200.26291,40.064056,82.060394,3.971 2004,537.5224,-18.927559,18.825867,44.11425,3.964 2004,-6.2017584,216.86197,17.99057,40.47354,3.934 2004,-3.8272228,104.60425,16.816767,41.292908,3.884 2005,350.54477,217.93312,21.973846,40.617447,27.766 2005,324.47302,221.24707,20.29486,37.178284,22.789 2005,338.01935,220.20786,19.71643,36.069977,8.362 2005,258.71356,221.60722,18.991272,32.436584,8.324 2005,376.54114,82.40235,33.478363,74.135155,6.842 2005,613.351,453.92233,39.57776,107.96579,6.022 2005,585.9258,196.28424,32.269897,74.272095,5.939 2005,-6.2575316,489.72403,19.228512,42.71811,5.706 2005,-8.835892,465.1998,37.624706,91.4874,5.67 2005,627.1612,-17.947956,17.458801,44.960693,5.55 2005,626.74005,488.36633,20.7453,45.27246,5.541 2005,610.673,-47.0974,42.0047,99.343956,5.512 2005,538.25745,226.00793,21.693665,39.53894,5.392 2005,-12.773362,-39.230667,41.80534,100.472626,5.388 2005,481.83008,219.13994,20.698364,32.50432,5.282 2005,545.5,217.19072,22.535217,43.439102,5.265 2005,-6.101527,-16.851357,18.555988,42.703735,5.252 2005,455.33878,90.332146,28.195831,62.217354,5.225 2005,253.53607,219.05467,17.48758,28.114944,5.224 2005,496.09668,221.0114,24.038086,37.72084,5.167 2005,514.79724,219.07913,41.348083,94.91864,5.11 2005,265.21176,219.0302,18.342987,31.262497,5.098 2005,146.17616,257.99738,32.63362,90.816925,5.063 2005,585.92303,-98.9355,74.88458,231.14635,5.009 2005,-72.85495,267.03687,200.91821,461.015,5.003 2005,583.06555,410.97913,71.728516,177.27026,4.955 2005,19.846334,73.94833,30.326315,76.44998,4.828 2005,490.8128,-180.91716,234.47498,425.5263,4.822 2005,67.030594,224.10397,32.686844,64.21747,4.8 2005,536.31665,310.56406,143.77856,341.08438,4.77 2005,-19.90282,-86.709404,71.59888,197.10768,4.737 2005,-17.834866,436.22498,55.694355,139.79022,4.708 2005,528.04083,192.93869,49.195007,111.77316,4.683 2005,500.69525,214.2323,38.13849,84.075134,4.612 2005,-40.569893,365.0681,111.08796,276.11652,4.588 2005,-1.1744165,199.46156,29.5219,74.91197,4.586 2005,381.4652,233.42032,15.750549,28.006592,4.563 2005,467.17075,94.04023,28.886139,62.07435,4.561 2005,361.46268,225.54489,18.459625,33.278595,4.534 2005,197.93306,250.28964,28.87352,66.5058,4.485 2005,445.0342,228.9834,17.757568,32.4877,4.458 2005,494.0768,227.23184,237.17471,514.10376,4.455 2005,-36.92946,-127.19145,117.0909,277.34805,4.427 2005,171.4224,257.13916,32.082214,75.07382,4.374 2005,315.2544,227.17575,19.436584,32.348175,4.339 2005,-70.74565,-189.38004,210.77887,456.14676,4.291 2005,474.09186,219.45242,19.818512,33.622345,4.233 2005,485.53513,212.16072,36.397064,74.72594,4.216 2005,573.66077,206.31793,31.482178,69.57791,4.198 2005,548.44824,209.15752,39.142517,91.31398,4.197 2005,330.78217,232.69824,17.72586,29.82425,4.179 2005,618.9818,491.02325,20.07727,41.88806,4.128 2005,418.52246,205.39941,28.010681,52.49362,4.08 2005,539.2059,-15.463146,33.49469,66.785934,4.056 2005,577.35187,170.9037,47.94055,123.35008,4.039 2005,50.80295,215.5369,33.193363,69.7175,3.987 2005,271.93256,227.59663,23.754547,42.376694,3.984 2005,396.56207,63.9222,33.974884,71.00975,3.976 2005,561.00696,42.659843,33.4328,88.94538,3.936 2005,264.92078,228.1799,21.12973,37.523712,3.933 2005,306.99216,222.05695,19.435486,33.386536,3.932 2005,467.93488,223.28682,18.743347,32.735977,3.902 2005,529.3944,227.09372,22.02356,39.07486,3.872 2005,-8.4969635,-5.237976,39.097965,100.64056,3.839 2005,179.73305,241.38055,29.717728,76.87598,3.822 2005,131.17125,259.32318,33.347565,89.06314,3.807 2005,533.4015,-33.72651,29.071411,75.963776,3.789 2006,322.92627,217.89008,23.874817,54.765533,79.698 2006,354.98798,219.73875,22.681335,44.45793,71.021 2006,2.1683133,60.741753,29.11836,88.99003,15.586 2006,366.9022,216.63754,21.267853,41.57614,13.468 2006,148.30284,277.99692,32.221115,75.95358,6.744 2006,335.23474,220.71,20.698944,44.267838,6.537 2006,170.23094,274.24957,33.014877,71.39136,6.419 2006,272.23627,225.52629,21.402191,33.265244,6.342 2006,-6.3444686,-17.418318,17.91706,42.64538,6.253 2006,-6.176033,488.85425,19.321695,43.53784,6.177 2006,-11.594685,-32.24263,30.038986,72.30927,6.124 2006,-11.656158,477.22556,30.077257,63.68161,5.966 2006,613.2897,453.17255,39.29242,109.216,5.877 2006,268.13977,229.63445,29.466553,55.800125,5.818 2006,626.99023,-18.497917,17.494568,47.208294,5.424 2006,626.66406,487.97433,20.663208,46.050568,5.192 2006,-16.432491,-63.20102,54.836723,146.54935,5.165 2006,622.4214,-33.26203,26.86261,76.04559,5.036 2006,-72.85092,265.8985,200.69522,461.93256,5.03 2006,544.218,211.8857,25.550537,39.847733,4.973 2006,603.5616,-56.310295,52.2984,138.94576,4.946 2006,253.00879,233.83812,32.55188,58.685074,4.943 2006,583.19543,410.8475,71.59656,177.14407,4.919 2006,449.78198,220.25781,22.486084,41.244934,4.913 2006,30.18425,86.633064,30.52414,75.66802,4.899 2006,2.9341388,298.12323,31.30777,73.94745,4.897 2006,258.1332,227.047,19.380585,30.91632,4.893 2006,536.6031,310.40628,143.58759,341.37778,4.841 2006,275.9762,237.36832,32.07025,68.23483,4.668 2006,-21.987783,400.6881,79.56431,177.08191,4.662 2006,171.18272,228.31412,17.965439,29.74112,4.627 2006,374.05847,213.61325,21.753937,39.09311,4.625 2006,383.36255,70.398544,36.73752,73.87381,4.625 2006,241.55153,230.1462,19.945297,31.999802,4.605 2006,426.78717,244.3018,19.078247,35.007706,4.605 2006,491.14484,-180.85754,233.72333,425.90918,4.592 2006,19.634966,79.3741,31.738096,74.04117,4.571 2006,147.61667,247.03058,42.19426,90.05475,4.515 2006,127.83533,223.48805,21.689514,39.71547,4.473 2006,43.20617,89.908424,30.001808,73.3561,4.473 2006,493.84006,227.09775,237.29239,514.5642,4.457 2006,585.25134,-99.90878,76.05365,232.04567,4.456 2006,-36.628124,-129.43748,117.026306,280.18134,4.39 2006,234.6352,233.57411,19.56755,28.396194,4.382 2006,132.13727,276.06946,32.913864,80.119446,4.361 2006,152.66435,220.10106,21.723602,36.542343,4.323 2006,266.31323,229.88586,20.791138,34.852417,4.29 2006,-70.46713,-188.62228,211.0027,454.93652,4.266 2006,474.14465,218.42633,32.16391,64.10788,4.134 2006,1.8675905,-16.560547,17.661047,41.56654,4.118 2006,237.51,228.20006,29.507706,52.651382,4.111 2006,227.47887,232.56013,19.563248,28.466171,4.111 2006,160.47748,290.6543,23.491302,59.525787,4.082 2007,305.18427,203.74533,30.04889,68.95322,92.259 2007,346.19507,207.45267,27.872803,59.93402,70.48 2007,353.63602,200.34993,31.880585,60.02806,6.774 2007,484.80646,216.83618,32.59668,56.56024,6.166 2007,626.5049,487.5112,21.134888,45.6445,6.079 2007,616.5075,225.00914,22.313965,45.744125,6.025 2007,613.19977,452.94553,39.375793,109.2576,5.898 2007,-11.425177,-32.661472,30.547056,74.28544,5.797 2007,378.33527,219.29428,23.035553,37.637207,5.745 2007,-6.1064615,-16.906693,18.484375,43.226776,5.697 2007,478.80814,56.01962,35.563873,79.64555,5.6 2007,622.76624,-33.67928,26.48706,73.7684,5.582 2007,-6.3099813,489.0413,18.871193,42.626373,5.474 2007,384.23395,226.79065,23.586609,34.57312,5.467 2007,-12.071743,477.352,30.260311,64.102356,5.445 2007,627.0092,-17.547342,17.462158,45.16409,5.327 2007,335.09338,202.72401,31.568054,56.6707,5.247 2007,367.3167,208.12611,23.1875,44.085495,5.179 2007,-73.38974,264.8178,201.70409,463.49683,5.131 2007,-16.221981,-63.2491,54.864025,145.83273,5.119 2007,497.5855,212.45625,32.137756,52.92375,5.053 2007,59.455406,289.87616,37.775963,71.65137,5.033 2007,400.78824,234.112,23.636505,35.188477,4.954 2007,551.6545,210.40526,23.192993,41.131577,4.953 2007,535.9158,309.59174,144.96777,343.15088,4.942 2007,583.1332,411.28036,71.52478,176.52524,4.932 2007,242.00763,211.52863,22.396942,44.353973,4.914 2007,603.3941,-54.86284,52.556824,132.40356,4.883 2007,202.34865,226.50679,35.3096,61.194138,4.79 2007,-40.996216,362.32312,111.93408,278.21967,4.781 2007,569.61383,214.3114,20.823486,34.50238,4.759 2007,229.34796,215.62915,30.428955,59.063324,4.746 2007,218.86172,224.10365,32.30916,59.46254,4.699 2007,493.7232,227.60294,237.26349,513.35803,4.689 2007,377.26285,56.596127,36.214935,81.95178,4.645 2007,469.42633,211.49893,31.71997,52.285583,4.64 2007,586.0366,-98.84003,74.60571,232.68983,4.608 2007,319.35858,200.93701,23.015533,40.466187,4.581 2007,-37.2139,-129.37238,116.83894,280.33868,4.485 2007,-18.59146,433.42896,56.21264,142.8722,4.481 2007,490.98026,-180.95877,234.16489,425.92056,4.382 2007,323.36285,201.00414,32.489197,54.5121,4.37 2007,-1.6668952,320.37244,27.909885,80.14194,4.368 2007,510.2716,215.65814,24.793152,43.293304,4.349 2007,613.53564,-20.17901,28.4375,71.6634,4.291 2007,-70.400795,-188.28357,210.81796,454.41727,4.246 2007,618.64746,-3.870634,19.353699,40.24492,4.224 2007,458.85822,246.64238,19.76529,30.21135,4.213 2007,618.6578,489.86328,20.734192,41.62195,4.093 2008,283.05173,206.68375,32.495667,73.57709,87.067 2008,228.36792,205.24654,35.13797,81.182175,82.547 2008,2.7693236,205.7561,21.049236,38.264084,8.796 2008,434.05292,33.474213,36.10498,87.525986,8.715 2008,418.99173,211.23372,34.891754,60.080765,8.342 2008,428.83102,195.75195,31.374664,59.52205,8.163 2008,415.6079,225.17924,25.680786,44.21141,8.104 2008,534.39996,228.50618,25.385742,38.729843,8.05 2008,24.615536,207.60945,22.287243,36.67917,7.602 2008,48.443825,209.88817,23.28659,37.216263,7.317 2008,-6.057155,-19.236237,18.496769,44.098915,6.362 2008,-11.321244,-32.764374,29.624428,69.93416,6.355 2008,401.45813,226.21767,34.92926,57.67943,6.326 2008,627.21747,-17.891489,17.095947,45.72726,6.313 2008,440.9314,196.49498,34.19461,61.53386,5.85 2008,531.0305,221.63083,40.49646,64.38339,5.565 2008,383.9356,220.68964,36.818665,58.377136,5.549 2008,8.494631,199.81073,22.15299,40.06865,5.538 2008,603.18695,-56.367813,52.75482,135.38121,5.415 2008,183.63687,224.93996,23.873337,37.442307,5.402 2008,362.20697,218.01015,38.30179,53.436142,5.382 2008,506.8977,221.5899,20.643494,40.86148,5.339 2008,-8.76402,464.41064,37.576,93.11157,5.31 2008,623.1469,-34.09146,26.103577,75.15453,5.303 2008,-6.142559,489.47842,18.731232,42.13089,5.288 2008,-73.252,264.849,201.15602,463.7544,5.218 2008,33.207817,209.26186,23.54634,36.906174,5.163 2008,613.23425,453.3091,39.55133,109.433014,5.115 2008,521.9267,230.57973,21.335083,37.645493,5.054 2008,3.906802,203.28508,39.10431,77.988144,5.028 2008,583.10004,411.5406,71.65039,176.57587,4.982 2008,-16.890215,-63.46252,55.975677,146.4165,4.944 2008,263.68054,209.62408,38.719025,80.21826,4.89 2008,536.271,310.1029,144.48718,342.21082,4.826 2008,-21.989986,401.32794,79.64217,176.07788,4.779 2008,-15.172382,155.55823,48.78258,129.79205,4.767 2008,0.29405117,174.6014,25.65409,64.42906,4.752 2008,594.0054,229.05492,21.809814,36.976425,4.741 2008,512.37317,229.59254,21.857117,37.387802,4.727 2009,176.30914,221.89476,53.76555,85.28908,89.158 2009,91.234085,204.8256,56.499054,117.53267,76.963 2009,192.26315,211.90729,34.90744,70.56,8.264 2009,521.36554,228.16397,23.008179,38.905884,7.851 2009,627.02747,-17.834703,17.338379,47.038296,7.448 2009,252.30566,204.46622,36.83249,63.477936,7.124 2009,622.8242,-34.499756,26.615723,77.398186,7.048 2009,-5.9754953,-16.921343,17.414738,41.83515,6.709 2009,153.54214,217.69734,40.54956,55.100693,6.158 2009,182.48956,251.37462,32.565582,59.659744,6.149 2009,-11.335604,-31.612694,29.581375,72.15853,6.022 2009,553.8142,228.22504,22.039612,35.716583,5.915 2009,375.40356,19.504532,38.837708,82.920685,5.905 2009,-8.74937,463.7872,37.488956,93.77194,5.706 2009,99.235855,236.40945,36.260178,81.97397,5.575 2009,-73.7577,264.27615,202.26471,464.9017,5.436 2009,227.24768,217.83961,35.57025,56.050095,5.397 2009,211.1466,219.91463,33.970856,62.327744,5.389 2009,145.7588,226.63052,49.62619,84.476074,5.368 2009,613.12006,455.01245,39.303345,107.147766,5.323 2009,-6.0512066,489.01752,18.713112,42.497314,5.269 2009,626.35406,487.65033,21.205627,46.112183,5.242 2009,242.26657,216.95648,35.613007,64.81433,5.237 2009,265.37778,185.57245,35.054016,66.24684,5.052 2009,298.94397,202.13345,19.352081,42.12088,4.975 2009,583.1876,412.06976,71.44299,175.8125,4.965 2009,-16.503712,-61.469486,55.3881,144.29933,4.9 2009,386.0863,250.41379,34.603363,48.05652,4.884 2009,11.651127,-9.616646,56.195026,119.26951,4.813 2009,585.7372,-97.24274,74.83716,228.97351,4.799 2009,536.4662,309.9136,143.72559,341.27536,4.785 2009,602.8576,-56.412003,52.90503,131.72833,4.776 2009,-22.18473,400.73355,80.06059,176.21664,4.757 2009,101.12588,204.16022,38.07363,74.91699,4.744 2009,535.3591,232.63112,25.116516,37.551132,4.743 2009,56.274956,130.1906,22.9926,45.305893,4.655 2009,614.7744,-19.906174,27.323914,70.2812,4.601 2009,118.61626,209.22507,62.64389,118.356384,4.533 2009,-36.676113,-128.25534,117.21117,278.16742,4.526 2010,74.361916,208.32642,35.9494,74.804016,12.001 2010,371.2993,217.5835,30.580414,58.97943,9.518 2010,-2.345339,280.0291,28.234554,76.03812,7.983 2010,-7.094489,238.45007,38.704098,109.33063,6.939 2010,59.489403,211.98596,61.76838,99.17291,6.915 2010,-5.5003643,-17.664097,17.199736,42.135323,6.317 2010,-6.193465,490.31097,18.798326,41.072937,6.183 2010,-11.105908,-32.42524,29.570118,71.68326,6.077 2010,622.5471,-33.222385,26.99939,75.09372,5.947 2010,283.0638,-0.13613129,42.512695,78.58052,5.809 2010,377.32574,231.54285,32.680206,60.297607,5.774 2010,-11.704573,479.2939,29.658356,62.18979,5.74 2010,626.953,-18.52114,17.612366,47.40997,5.626 2010,84.02936,208.35368,39.492508,58.592697,5.54 2010,-0.11725664,206.62906,46.574158,129.2663,5.455 2010,355.50427,225.77708,35.85605,61.127487,5.446 2010,-74.40889,264.1703,202.97655,464.07013,5.263 2010,603.2485,-57.655304,53.899048,132.20366,5.238 2010,626.4576,487.70224,20.768066,46.266754,5.235 2010,-16.47021,-63.344833,54.985954,147.33273,5.202 2010,613.0252,455.20502,39.266357,106.944824,5.121 2010,593.82117,-46.116535,44.99121,93.89694,5.105 2010,583.09106,411.9283,71.618286,176.47507,5.027 2010,536.3519,310.51443,143.6615,340.7734,4.898 2010,585.96155,-97.55405,74.70178,227.38039,4.884 2010,-6.141077,169.47401,19.326588,43.463272,4.778 2010,-17.723125,437.33838,55.62375,139.07178,4.741 2010,523.22,257.16818,35.083252,52.094116,4.674 2010,531.80164,-180.87093,149.6955,420.9449,4.65 2010,-40.697113,365.32,111.46667,276.81793,4.505 2010,493.95416,227.55994,237.08862,513.53186,4.493 2010,-37.549328,-128.63843,117.61235,276.04556,4.476 2010,292.54092,-30.386747,29.919434,71.71398,4.464 2010,3.5033643,-15.836644,15.633003,38.95667,4.438 2010,122.381714,3.5024452,35.785065,84.77103,4.371 2010,119.22783,-27.823051,64.85887,118.64321,4.363 2010,463.86032,247.80898,36.629486,51.96248,4.34 2010,451.66028,256.51016,34.06244,51.806488,4.268 2010,-71.09508,-188.98453,212.11781,455.58575,4.246 2010,104.02088,220.66446,38.758385,56.97638,4.195 2010,472.86438,259.8088,35.10196,59.127594,4.184 2010,295.7333,-2.6757927,22.44992,41.073803,4.179 2010,8.042871,189.38043,59.087532,116.523315,4.167 2010,416.3667,244.76003,23.906189,41.404068,4.125 2010,296.6531,-16.17108,19.075195,40.495144,4.122 2010,111.15727,-37.616444,49.237457,89.329636,4.097 2010,472.72797,232.11572,34.151276,56.77173,4.004 2010,275.5472,-13.61257,36.156097,65.0176,3.971 2010,132.60057,-32.638466,30.319077,71.71785,3.971 2010,437.3105,247.99261,32.474976,52.92462,3.965 2011,337.03094,241.97725,25.691528,45.841476,16.928 2011,193.65259,209.70068,33.03058,71.20569,8.305 2011,-11.142205,-31.241676,29.538948,71.924805,6.788 2011,-6.242565,490.0421,18.771284,41.53882,6.54 2011,-5.9096837,-17.385666,17.605242,42.46429,6.469 2011,178.80083,209.44196,35.069885,68.35956,6.334 2011,-11.659824,478.78226,29.98801,61.632782,6.068 2011,320.80225,248.69856,23.09851,39.4218,5.829 2011,326.70593,234.30437,39.022675,74.07393,5.684 2011,627.32764,-19.107906,17.616333,47.94633,5.603 2011,626.586,487.66394,20.522034,45.950623,5.504 2011,622.9687,-33.823906,26.932129,76.172554,5.395 2011,-17.482466,-62.41912,56.4253,143.99365,5.316 2011,613.0498,454.52075,39.18805,107.70886,5.29 2011,371.06534,237.55992,34.284973,52.122635,5.1 2011,539.058,260.77386,33.87268,50.94577,5.048 2011,-73.41283,265.04227,201.60007,462.7363,5.042 2011,585.6331,-99.07172,75.3916,231.54549,4.944 2011,582.97076,412.0693,71.67456,176.35654,4.917 2011,536.4987,309.9759,143.54675,340.57043,4.908 2011,163.26923,211.22328,34.002594,65.08864,4.837 2011,-22.166153,401.1598,79.777016,175.64606,4.811 2011,490.74072,-180.01915,234.72803,425.26547,4.801 2011,211.36855,217.20062,31.406189,61.463867,4.797 2011,404.15283,235.08313,33.548218,52.822815,4.733 2011,602.8265,-57.487457,53.28015,142.04933,4.708 2011,-2.560426,23.416103,37.32158,81.10121,4.695 2011,226.87798,71.30252,32.34236,86.565094,4.68 2011,-37.05237,-126.48696,117.27084,272.51627,4.66 2011,242.6219,284.61813,35.81212,55.845306,4.534 2011,493.89386,228.32617,237.17328,513.08984,4.504 2011,337.74292,239.4436,41.437225,82.218506,4.474 2011,350.6795,248.7463,24.630371,41.288208,4.415 2011,566.1582,264.1301,25.897217,44.15924,4.383 2011,-70.62509,-190.59624,211.26923,458.60223,4.383 2011,296.58588,234.57927,31.243378,53.601456,4.249 2011,549.9993,259.71234,38.108032,55.07599,4.233 2011,182.62285,172.24495,60.37207,114.20946,4.105 2011,144.80829,-13.693628,46.26744,84.16346,4.091 2011,144.95818,188.99246,47.1474,79.355865,4.091 2011,306.42017,239.60843,32.44165,53.663177,4.047 2011,248.47276,228.07887,23.370132,44.638504,4.033 2011,614.5231,257.31815,23.090332,42.048126,4.032 2011,522.8928,254.47159,33.39679,55.835022,3.936 2011,99.57816,265.98447,38.28681,65.364624,3.934 2011,1.9888067,-40.273445,42.8818,99.3027,3.876 2011,355.1349,234.4614,33.76355,55.38031,3.816 2011,156.24982,182.99475,60.358994,110.772675,3.813 2011,595.0777,-48.17084,44.00305,103.428024,3.806 2011,-5.554519,474.32114,16.234646,38.228973,3.8 2011,2.78405,-15.472065,16.456722,38.88304,3.75 2011,401.23846,243.55066,24.620178,37.600647,3.749 2011,230.02684,215.77296,31.988693,63.142044,3.724 2011,477.84045,-35.874653,27.851105,67.654526,3.718 2011,376.49414,251.68704,23.576996,33.623962,3.713 2011,52.29167,176.60478,30.599472,63.479553,3.695 2011,509.4696,-34.545322,28.850647,71.45804,3.658 2011,506.927,-19.462532,18.254639,42.170204,3.657 2012,606.3837,245.88011,23.950195,44.129227,8.509 2012,-11.373343,-31.539091,30.083023,73.79651,6.566 2012,506.70532,214.3032,19.086243,35.439026,6.552 2012,-5.9671397,-15.959052,18.541277,42.637066,6.361 2012,627.3577,-17.349686,17.41455,45.872253,5.813 2012,584.3339,247.48305,23.23944,35.971725,5.594 2012,626.4669,487.50296,20.73944,46.522125,5.556 2012,-8.914701,464.5119,37.753242,92.14789,5.441 2012,582.66876,237.51585,36.859924,69.87331,5.393 2012,-6.1064625,489.26886,18.561537,42.18329,5.329 2012,-17.78598,-62.67434,56.6077,141.55453,5.253 2012,622.71094,-34.150238,26.899658,75.71502,5.169 2012,-73.30737,265.06723,201.66269,462.59122,5.143 2012,160.09152,227.38432,33.095398,51.364456,5.127 2012,1.6114372,-15.28829,17.925005,41.728165,5.109 2012,583.1435,412.40466,71.49725,175.70245,5.075 2012,585.5986,-99.12564,75.112854,231.38506,5.052 2012,615.7515,238.44167,21.139587,42.393845,5.013 2012,490.89178,-180.97964,233.97186,428.94193,5.006 2012,536.4832,309.47174,143.66913,341.0445,4.934 2012,612.9149,455.18808,39.34247,106.38309,4.92 2012,4.8211536,175.88155,31.755522,81.39897,4.859 2012,-6.3036923,204.03172,18.880081,45.716843,4.843 2012,-21.855244,402.3768,79.61461,175.56296,4.836 2012,596.97723,231.51784,35.420105,79.53642,4.8 2012,603.2879,-55.607445,53.063416,133.76189,4.752 2012,-36.90738,-127.183556,117.269485,273.80548,4.685 2012,577.8498,252.80704,22.814087,35.243286,4.678 2012,195.77583,228.87003,39.8002,75.94324,4.587 2012,493.7409,228.40378,237.57916,513.59717,4.58 2012,364.449,2.1014824,29.728577,57.28202,4.514 2012,-9.480306,-5.9272156,40.133366,97.98425,4.477 2012,76.73091,223.07213,34.92296,59.622818,4.408 2012,394.6495,269.87585,35.57321,64.79419,4.398 2012,188.81396,217.74269,33.62593,56.077866,4.392 2012,-70.99176,-189.03546,211.35162,457.24802,4.374 2012,309.3805,273.8465,40.68628,57.938293,4.242 2012,593.14716,248.78546,22.77649,36.949036,4.236 2012,147.7602,225.00443,42.213425,78.649994,4.213 2012,619.19507,-2.0262184,18.520508,37.901024,4.208 2012,614.0624,-18.817066,28.621033,69.88594,4.135 2012,89.705215,232.86478,36.572327,58.03485,4.089 2012,202.12608,231.4602,26.001343,44.37198,4.018 2012,-3.9989233,-15.695061,30.56522,66.414955,3.915 2012,594.08466,-45.057568,45.031006,95.35863,3.9 2012,613.1191,183.18036,36.523315,98.637085,3.856 2012,148.97011,208.4456,34.057617,63.22966,3.846 2012,283.69778,265.1605,37.251007,63.803802,3.816 2012,293.6494,-33.41273,29.17987,70.101456,3.804 2012,567.35876,262.11786,23.628845,31.111603,3.797 2012,295.66534,283.44937,37.862457,58.45227,3.767 2012,298.09872,-6.351942,20.743958,38.56356,3.733 2012,2.4812865,-20.433086,50.817436,129.09778,3.728 2012,547.6644,246.46532,34.661865,53.747635,3.697 2012,-5.674877,229.66864,18.095398,43.67151,3.696 2012,250.67781,226.55759,33.700577,62.673218,3.662 2012,379.08066,-14.715521,16.297607,36.66775,3.659 2012,173.24557,230.0988,26.040283,41.915665,3.653 2012,210.82172,228.65796,29.609177,59.05603,3.653 2012,218.04033,-17.694904,18.408783,40.87439,3.635 2012,356.42883,127.0116,30.222137,66.647095,3.626 2012,354.9803,-1.1236553,19.380005,35.706207,3.573 2012,237.68881,-37.81722,29.068512,75.121544,3.553 2012,378.7816,-1.2303505,18.777863,35.481956,3.547 2013,-10.994835,-32.94751,29.363068,72.07912,7.095 2013,-5.448353,-19.22691,17.64603,44.61407,6.727 2013,545.3764,239.48637,20.944641,37.285904,6.686 2013,622.4616,-34.073654,26.859985,79.36756,6.241 2013,626.51086,-20.036926,17.789734,51.225708,6.019 2013,-6.2100067,489.38037,19.092768,41.89441,5.811 2013,553.60266,242.11598,19.009521,33.68538,5.786 2013,-12.459089,477.82495,30.84633,62.436035,5.566 2013,-18.058477,-64.29473,56.45111,143.5425,5.432 2013,626.6358,488.1472,20.52069,45.66812,5.38 2013,490.9523,-181.54088,233.90231,428.44073,5.065 2013,583.0751,412.0149,71.56818,176.08179,5.065 2013,-73.458206,265.63367,201.61725,461.8556,5.021 2013,613.0292,454.1034,39.296875,107.772766,4.969 2013,563.85846,240.49765,31.659363,57.83423,4.964 2013,-72.115814,-189.86234,214.0234,457.3041,4.953 2013,536.5334,309.5525,143.74744,341.4956,4.88 2013,-35.954178,-131.04425,116.75098,278.31973,4.821 2013,586.01416,-98.64838,74.667114,230.42784,4.791 2013,-21.793877,402.04483,79.512726,175.60794,4.774 2013,602.6411,-56.146023,53.576782,134.31166,4.726 2013,3.5430849,227.25375,30.55982,71.02167,4.54 2013,3.1680584,-17.908499,16.69709,43.668854,4.526 2013,493.62033,227.91483,237.4725,513.55396,4.492 2013,561.69855,245.9317,21.645569,38.863647,4.462 2013,533.53125,235.0818,30.026245,49.54033,4.254 2013,313.6407,276.06104,36.14218,60.233917,4.236 2013,547.54895,240.13785,30.725647,53.93103,4.23 2013,24.44946,225.54332,23.387913,40.43303,4.222 2013,594.25885,-46.22847,44.658997,97.933075,4.159 2013,76.08385,222.94092,33.28656,58.789734,4.124 2013,10.325367,-20.421194,17.773216,44.19653,4.062 2013,1.794396,232.112,19.144138,42.348938,4.049 2013,476.5443,0.6547928,16.626587,30.888336,4.026 2013,81.369484,230.86928,22.670288,38.154953,3.905 2013,282.14032,264.9927,37.082825,64.96512,3.835 2013,179.30383,-3.3757992,18.913757,36.383087,3.788 2013,171.19305,-3.781742,19.24405,36.992218,3.78 2013,1.8480444,-40.6655,43.121227,97.94792,3.747 2013,248.88976,268.53818,37.315414,58.98819,3.735 2013,475.94144,-14.17973,15.388031,34.927227,3.729 2013,468.64917,0.90449524,16.468903,29.682348,3.703 2013,418.73642,245.16273,34.0961,60.67552,3.667 2013,523.3952,1.2476959,18.185242,33.237465,3.643 2013,618.9117,-20.582697,17.847656,49.988194,3.641 2013,531.4366,0.26239777,18.483032,34.39227,3.605 2013,468.2121,-13.611298,15.201141,33.9632,3.587 2013,21.832245,-33.251358,29.287788,71.03938,3.578 2013,57.191513,233.43256,20.543617,37.147217,3.564 2013,459.75223,-14.04134,15.543793,34.522655,3.547 2013,-10.779094,-6.8595734,40.67599,101.0369,3.505 2013,507.74695,1.7831402,17.559937,32.390343,3.489 2013,483.54324,-13.263651,15.644745,34.744476,3.458 2013,427.50565,-14.522451,15.866913,34.08243,3.45 2013,580.2833,222.81952,39.567993,77.03168,3.421 2013,45.76004,224.5746,30.571152,59.74669,3.385 2013,327.60016,276.15485,37.42502,59.592712,3.38 2013,570.3354,241.32124,20.229065,34.800064,3.364 2013,166.2605,-33.075928,28.080551,70.35771,3.347 2013,515.35583,1.0517559,17.492554,33.450104,3.33 2013,443.24826,-14.415863,16.264526,34.716595,3.32 2013,-0.77994704,-22.54796,26.349333,70.99963,3.302 2013,267.18616,-16.140686,16.35379,37.878975,3.299 2013,1.8707979,490.8806,20.343967,40.97003,3.299 2013,60.40168,215.29697,31.024849,56.181366,3.288 2013,187.30956,-3.2831736,18.439713,36.40031,3.273 2013,293.97467,282.03418,26.962372,40.23291,3.263 2013,73.66899,239.11624,22.618507,36.53125,3.243 2013,573.6574,-35.4756,28.285828,76.11808,3.229 2013,577.88916,-17.621847,17.73413,42.750473,3.215 2013,484.1489,0.39065552,16.583557,32.828316,3.204 2013,538.87463,-15.037975,16.64148,38.112812,3.202 2013,613.158,237.64706,36.84131,107.4032,3.194 2013,11.118229,-35.338394,58.553333,131.90652,3.187 2013,596.8318,222.7923,36.199707,92.190125,3.174 2013,163.0736,-16.355183,17.223495,39.133247,3.163 2013,-4.755507,68.587234,17.495562,46.552803,3.162 2014,-5.8820925,-17.987762,17.782932,42.446487,6.528 2014,627.3119,-16.983063,16.788513,45.231285,6.12 2014,-11.395199,-31.60202,29.860157,71.56061,6.073 2014,85.52449,209.90073,32.586838,58.15732,6.027 2014,230.64697,269.9472,24.82837,34.318512,5.777 2014,239.22441,276.13422,23.772568,34.94232,5.414 2014,-8.939794,464.32623,37.680805,91.87964,5.27 2014,-6.216786,488.90454,18.876865,42.389526,5.183 2014,100.6805,208.7825,29.238998,56.278778,5.144 2014,623.13513,-33.737194,25.99121,75.816734,5.08 2014,583.003,411.81348,71.696045,176.41748,5.039 2014,-73.06851,265.75458,201.06346,461.68915,4.997 2014,602.8889,-55.97588,53.36389,139.38069,4.997 2014,612.7904,455.29114,39.419678,106.48645,4.937 2014,-20.080055,-88.72963,72.02298,198.7302,4.886 2014,105.101685,208.43558,20.269226,34.77809,4.838 2014,536.4425,310.3982,143.48706,341.33484,4.799 2014,-21.87241,401.84497,79.351425,175.59918,4.79 2014,-71.760254,-188.91356,213.66058,456.23743,4.718 2014,626.24066,487.16266,21.07721,47.105408,4.715 2014,218.47223,249.91362,35.94084,57.261032,4.642 2014,-35.973316,-132.0026,116.779785,279.68073,4.61 2014,291.7666,263.6579,32.606506,58.432343,4.554 2014,493.8057,226.87378,237.17294,515.2111,4.551 2014,490.5057,-180.73729,234.35696,423.89566,4.478 2014,3.0360484,-16.259407,16.76103,39.251537,4.452 2014,258.6508,282.11505,18.118256,31.0531,4.45 2014,248.27599,269.49866,23.407944,36.64798,4.347 2014,585.90436,-100.86102,75.584656,235.29305,4.307 2014,204.24768,-14.238176,14.907974,34.108826,4.054 2014,619.1062,201.76346,20.489807,42.83734,4.05 2014,275.3771,-12.088236,15.6423645,35.42362,3.836 2014,306.97614,-11.215031,15.60611,34.010822,3.829 2014,195.92215,-14.064601,15.505844,34.03966,3.825 2014,239.66829,260.3689,22.62004,36.657898,3.807 2014,253.13516,255.83006,33.026764,63.640457,3.779 2014,-5.652802,247.67514,18.236526,39.493866,3.763 2014,275.9864,0.43239594,17.348938,33.430435,3.759 2014,440.567,-18.419167,19.779114,41.77004,3.712 2014,450.5315,220.54388,31.232605,58.831482,3.681 2014,315.79858,2.206503,16.704163,29.703247,3.666 2014,267.49606,289.871,17.44693,28.170227,3.665 2014,283.15625,-11.781069,15.573669,35.17482,3.656 2014,187.48312,-15.094564,15.601471,34.87186,3.646 2014,204.6012,-0.501359,15.623474,29.689812,3.629 2014,-9.917129,-20.757927,38.582558,100.09627,3.628 2014,298.93607,-11.728332,15.835327,34.02098,3.626 2014,275.32208,293.35846,18.682373,31.162537,3.626 2014,282.73172,285.92096,19.931183,34.693085,3.601 2014,283.3898,1.1627254,17.857727,32.11786,3.597 2014,10.164971,-16.688,17.345383,39.665985,3.593 2014,268.9691,0.5872555,16.48117,31.469393,3.592 2014,315.3995,-12.887668,15.279358,35.05385,3.572 2014,92.03392,-13.497711,15.103043,34.82254,3.568 2014,351.81592,246.62367,33.952972,58.154465,3.565 2014,233.20946,286.23303,19.929504,29.233276,3.555 2014,267.60776,-13.775463,15.473877,35.50198,3.551 2014,212.23865,-13.05542,14.625732,32.79531,3.514 2014,339.87454,252.462,34.634796,58.89087,3.492 2014,447.40106,229.508,24.23523,39.13376,3.472 2014,76.0173,2.8749266,16.52658,28.232159,3.462 2014,204.74312,243.71732,35.365997,62.42285,3.455 2014,233.37564,249.07533,34.52423,60.317123,3.427 2014,259.88153,295.6359,16.77533,27.129578,3.356 2014,221.04416,-0.67147064,15.358719,28.83059,3.353 2014,506.1344,221.52557,20.363525,26.12471,3.339 2014,324.28027,1.3160591,17.081879,31.949944,3.338 2014,250.85495,288.71704,17.965515,27.835419,3.318 2014,84.26243,-12.540691,15.100288,33.602627,3.317 2014,299.4895,1.4632597,17.766235,30.391907,3.3 2014,75.88277,-13.9202,15.223022,34.39463,3.294 2014,188.51921,-0.72161293,16.434723,30.174078,3.29 2014,212.80695,-0.183321,15.215637,29.619833,3.289 2014,-5.2552996,-1.1395035,17.919312,43.98483,3.286 2014,619.86426,-16.022923,16.231567,41.833286,3.275 2014,108.161804,-15.569945,15.498291,37.593365,3.268 2014,436.5692,-33.35137,29.99588,71.02857,3.266 2014,545.0095,216.44167,22.451843,34.554718,3.259 2014,2.66813,247.3151,19.566635,36.30542,3.257 2014,211.92404,267.03812,33.765533,49.00949,3.253 2014,455.65625,228.02524,22.916748,33.37503,3.25 2014,497.28116,220.56154,20.126556,25.328964,3.249 2014,115.46283,-16.186668,16.21457,38.06158,3.245 2014,196.44453,-0.91751194,15.819229,30.411655,3.23 2014,307.308,2.2502966,17.158295,29.945084,3.228 2014,5.4862537,-20.035599,28.993994,68.965546,3.214 2014,92.27843,197.63264,31.983803,54.910233,3.211 2014,158.32048,-34.44163,27.930267,69.13951,3.21 2014,448.80252,-18.26974,19.92517,41.422592,3.208 2014,377.53757,-18.411734,18.454071,42.65812,3.202 2014,96.04461,216.8689,45.47587,76.33649,3.201 2014,432.5407,-16.277592,20.300629,40.191685,3.19 2014,331.06656,-14.944301,16.273163,37.132698,3.19 2014,220.23302,-14.162104,14.480408,33.39345,3.19 2014,436.52502,202.86563,39.88452,75.057556,3.171 2014,2.0318632,489.975,19.82045,41.520477,3.155 2014,323.58282,-13.220315,15.809082,35.17713,3.15 2014,98.40858,200.02634,20.525154,34.530304,3.141 2014,179.58487,-15.166869,15.536438,34.66955,3.134 2014,613.0653,128.48346,36.227417,107.63229,3.129 2015,584.9953,222.5954,28.927979,69.62842,91.369 2015,596.8383,225.3988,23.025818,56.279633,7.807 2015,-5.424408,-18.438435,17.630814,42.947254,7.385 2015,613.4477,224.1564,34.833008,96.40228,6.177 2015,-11.141783,-32.63472,29.475489,71.03914,5.974 2015,-6.218806,489.29926,18.785711,42.049927,5.908 2015,249.53001,261.16452,21.203049,35.681488,5.823 2015,-12.064028,478.6187,30.358429,63.028137,5.807 2015,627.12897,-17.439356,16.985718,45.679707,5.802 2015,361.97144,236.01501,22.792114,30.618317,5.405 2015,592.78064,222.99489,36.954956,89.21355,5.242 2015,610.5168,-47.330544,42.19226,98.19833,5.158 2015,575.7476,213.51787,47.91046,122.40376,4.956 2015,582.91724,412.197,71.59564,175.94937,4.953 2015,-72.82002,265.86725,200.65524,461.23273,4.939 2015,626.5308,488.0769,20.865723,45.945007,4.938 2015,612.815,454.55704,39.575134,107.410736,4.925 2015,536.1884,310.402,143.93805,341.87143,4.865 2015,-20.297733,-88.03079,72.0504,197.71416,4.85 2015,-21.7897,402.18106,79.46315,175.457,4.823 2015,-71.79379,-189.5581,213.04689,456.79074,4.674 2015,-36.24538,-131.20467,117.32881,278.76526,4.602 2015,493.86,226.92554,237.22546,515.2244,4.544 2015,585.9531,-99.120384,75.83942,232.40677,4.514 2015,532.5748,-183.54886,148.74237,424.10413,4.308 2015,312.7751,231.20047,21.86438,28.64746,4.212 2015,257.60898,237.96918,20.793121,30.710815,4.183 2015,264.83246,232.2469,19.959717,30.086868,4.085 2015,3.387872,-17.582842,16.48893,40.10514,4.032 2015,91.88294,2.945921,16.911888,27.143398,3.968 2015,75.664536,1.9671144,17.093018,27.66853,3.895 2015,2.068634,490.64944,19.525166,40.90628,3.797 2015,59.19066,-13.523937,16.557434,34.81739,3.791 2015,-9.788103,-21.068027,38.929596,100.762924,3.773 2015,59.920288,-0.59054756,18.077065,31.331375,3.771 2015,569.13965,218.88936,31.095703,64.34538,3.763 2015,-4.0120564,220.71086,15.678693,37.357956,3.747 2015,607.85486,224.05545,22.57965,51.486786,3.718 2015,83.775116,2.8269157,16.947464,27.657646,3.713 2015,91.38767,-12.193665,15.681999,33.244926,3.698 2015,612.8326,188.54636,35.45111,95.58206,3.694 2015,75.06365,-12.146117,15.706917,33.21988,3.655 2015,83.36663,-11.007628,15.502251,32.461224,3.639 2015,-5.021028,205.06433,16.525078,38.068893,3.613 2015,98.53454,6.8582325,20.17315,32.424973,3.611 2015,182.39098,-33.668255,28.378235,70.82874,3.589 2015,263.36932,242.57353,21.608154,33.251633,3.583 2015,67.27662,-11.918868,16.007217,33.34787,3.563 2015,10.56088,-18.346815,17.267242,40.719265,3.548 2015,-4.783399,247.5989,15.873159,37.51477,3.529 2015,354.70062,229.40695,22.371704,29.868347,3.517 2015,232.59758,-18.165918,20.299057,42.337757,3.495 2015,345.53357,226.74355,20.545685,28.125336,3.43 2015,619.5871,-17.130169,16.529358,42.568405,3.419 2015,67.85668,0.7090063,17.42836,30.018414,3.409 2015,504.07874,229.60146,23.484375,36.759018,3.381 2015,106.73797,-12.308811,16.32492,33.74478,3.379 2015,321.20074,230.91418,21.236267,29.35968,3.328 2015,257.56757,228.69713,18.929565,27.560959,3.321 2015,297.62195,233.86667,21.508514,27.764923,3.32 2015,11.32394,-33.04464,57.52515,134.25455,3.285 2015,245.43031,250.37715,30.513077,61.273056,3.285 2015,198.1987,-32.359898,29.531616,71.743774,3.276 2015,99.51218,-11.500367,15.835152,32.93159,3.266 2015,2.0376992,-40.196205,42.973545,100.625435,3.239 2015,307.45212,222.7654,40.63217,64.64354,3.216 2015,50.940247,-13.53241,16.781898,34.28163,3.216 2015,617.6847,231.80186,20.522095,53.29048,3.211 2015,93.56747,-11.6326275,30.031776,55.790443,3.205 2015,55.30613,-32.005177,27.679161,66.35899,3.188 2015,329.5019,231.89078,20.71991,29.207489,3.165 2015,70.380325,-31.956657,27.911926,66.885765,3.163 2016,507.2965,212.4599,31.14795,76.598755,92.866 2016,-5.1979184,-16.360859,17.15133,40.39518,6.713 2016,-11.033774,-31.742165,28.990124,69.27703,6.685 2016,-6.291232,489.0438,18.984554,42.467926,5.989 2016,-12.357473,477.43515,30.964022,63.207245,5.799 2016,410.14493,229.98746,22.083282,39.91867,5.627 2016,602.4634,-57.121857,53.29962,138.83826,5.576 2016,-17.56821,-63.062374,55.986507,141.7773,5.472 2016,612.92914,454.67438,39.490845,107.29205,5.413 2016,499.0948,218.18689,25.381165,62.44171,5.242 2016,-72.641464,265.5238,200.78949,462.26538,5.164 2016,234.52074,232.95322,19.832626,30.481476,5.155 2016,626.9809,-17.61647,17.205017,45.90567,5.139 2016,626.6114,487.80618,20.720398,45.855743,5.044 2016,536.2829,310.03607,143.69202,341.85895,5.008 2016,585.7166,-96.68316,74.63403,230.33511,4.988 2016,492.201,191.47546,56.00763,100.66501,4.918 2016,582.80023,411.85297,71.8714,176.60773,4.9 2016,-21.631123,402.72974,79.33299,175.22913,4.849 2016,3.610919,-14.74747,15.9557295,36.622036,4.746 2016,494.51263,229.01141,237.06018,512.8641,4.576 2016,491.5879,-178.6498,234.27814,423.87265,4.55 2016,-37.17624,-131.02681,117.24945,279.25247,4.385 2016,622.4098,-33.48558,26.838562,75.454796,4.341 2016,-71.02593,-188.27176,212.30469,453.90256,4.29 2016,470.2818,210.09906,36.6297,77.48605,4.163 2016,614.3037,34.860718,26.02124,72.61784,4.078 2016,235.26207,223.08076,19.56636,27.990906,3.895 2016,517.4205,210.26727,33.508423,73.72424,3.854 2016,424.77362,233.94392,21.715149,39.906876,3.795 2016,3.1887555,22.463966,19.300714,43.391953,3.746 2016,529.62366,220.4188,40.35852,89.4176,3.742 2016,406.46008,235.1035,29.502472,61.36354,3.718 2016,331.2526,206.41568,31.204926,52.596405,3.693 2016,129.77428,242.7304,21.442688,33.162796,3.665 2016,80.98221,243.19788,22.228745,33.265198,3.657 2016,122.79984,244.0268,19.573952,31.548828,3.592 2016,444.28714,244.71202,18.58017,38.118637,3.565 2016,618.2935,489.8075,21.05597,43.23059,3.56 2016,416.02817,236.0341,22.269196,40.56877,3.544 2016,622.4703,21.79573,26.574402,69.16103,3.533 2016,433.54306,234.61986,20.263428,40.86348,3.53 2016,-5.220204,23.352942,17.357256,42.50727,3.499 2016,1.9995749,490.26495,20.05095,41.367126,3.466 2016,229.3785,229.43056,18.257019,26.498383,3.465 2016,19.660421,-15.482962,16.034155,37.382423,3.462 2016,241.01332,225.111,20.018326,31.339386,3.368 2016,27.321835,-17.319014,16.438473,39.54668,3.336 2016,221.01285,228.13342,16.386444,24.391968,3.33 2016,100.16029,230.6901,39.487442,77.20877,3.322 2016,11.292536,-16.246998,16.163013,37.633312,3.317 2016,494.17706,216.54276,54.308594,142.56836,3.28 2016,115.64757,230.40764,40.815964,78.91765,3.262 2016,-4.502798,5.228716,15.679916,35.554863,3.26 2016,619.5902,-3.3299103,18.261047,40.318825,3.257 2016,2.1362948,-42.39396,42.794857,98.291885,3.256 2016,83.16731,-14.905407,16.559097,35.297924,3.256 2016,237.32458,215.77632,16.680542,25.265015,3.245 2016,328.08295,217.15947,24.285278,36.472168,3.235 2016,615.30383,-19.058878,26.536255,72.455826,3.208 2017,494.61737,204.50394,40.12451,89.377716,95.663 2017,-5.3056,-15.843383,17.397633,40.907917,8.523 2017,623.1688,-33.834915,26.663574,75.74213,7.832 2017,472.46606,202.36436,38.46353,90.0807,7.783 2017,627.3263,-18.348618,17.246704,47.397575,6.631 2017,-10.962586,-32.065605,29.637398,73.49739,6.172 2017,2.9597287,-13.233733,16.897154,38.251713,5.553 2017,-9.050797,464.12106,37.797287,92.72653,5.389 2017,613.07526,455.08264,39.24292,106.74048,5.337 2017,-6.199953,488.81934,18.804234,42.487915,5.146 2017,626.6752,488.30582,20.664185,45.806732,5.144 2017,585.8686,-96.657326,73.98126,228.36453,5.104 2017,-72.656105,265.77902,200.87097,461.7803,5.09 2017,484.35352,197.14325,36.245483,78.21628,5.07 2017,536.3523,310.49283,143.33276,341.91647,4.989 2017,-17.63454,-65.317406,55.57821,147.17126,4.984 2017,-21.754726,402.45807,79.42165,175.26501,4.855 2017,582.91846,411.4908,71.93292,177.01382,4.813 2017,491.0242,-178.27379,234.27274,423.65555,4.741 2017,602.8542,-56.35035,53.38263,131.96925,4.645 2017,494.51343,229.26385,237.03735,512.791,4.528 2017,-36.80031,-130.91934,117.378426,280.7412,4.412 2017,619.12085,-18.41943,17.888306,44.4647,4.223 2017,-70.88992,-188.54366,211.8296,454.77618,4.219 2017,593.6808,-43.806057,44.85608,93.01719,4.17 2017,508.98776,202.01202,36.00894,78.67084,4.164 2017,10.229303,-15.643433,17.475813,38.986313,4.025 2017,388.22803,219.72055,32.563904,68.55557,3.954 2017,615.79016,-21.621628,26.151367,71.70699,3.935 2017,148.85405,225.25703,31.310684,50.154922,3.929 2017,154.85696,236.00198,19.744308,29.173126,3.886 2017,-0.38883805,-15.866901,26.948505,69.30716,3.77 2017,488.83838,169.33624,60.289062,114.3374,3.757 2017,178.12448,230.07689,20.686554,32.252945,3.725 2017,-4.9385567,0.67874527,17.77232,44.07977,3.617 2017,507.57034,229.84813,29.76596,69.12001,3.604 2017,530.7742,217.91751,41.558228,94.02194,3.521 2017,520.13995,193.228,33.97632,71.433014,3.521 2017,290.5887,224.19034,18.802094,28.417297,3.43 2017,1.2849474,-42.736412,44.375126,103.11492,3.382 2017,586.10236,0.8606663,20.651245,46.220512,3.339 2017,384.21338,224.3024,23.921661,47.280884,3.336 2017,391.43768,246.28929,30.413086,72.24678,3.313 2017,402.38022,239.77962,31.432526,67.06163,3.31 2017,588.52734,-15.532043,29.931274,67.79337,3.281 2017,202.94064,218.9284,18.506027,29.843597,3.271 2017,163.07104,212.75793,40.185547,69.91345,3.241 2017,497.04614,233.7926,22.958435,61.85193,3.237 2017,400.886,226.33334,24.914948,53.474945,3.231 2017,2.7130008,230.72296,18.299189,36.20923,3.223 2017,179.56146,206.18207,39.749084,67.745056,3.197 2017,169.9785,231.28062,20.161118,32.028366,3.113 2017,618.7912,491.03925,20.497131,42.643066,3.11 2017,597.32776,462.13757,38.65741,97.291504,3.091 2018,-5.6319804,-17.29438,17.628231,42.699738,7.536 2018,576.55414,178.33856,53.98169,163.14673,7.49 2018,627.1449,-17.536171,16.982788,45.783173,6.282 2018,428.67853,217.62856,32.292786,74.02568,6.147 2018,-10.792425,-32.333702,29.400427,72.525185,6.002 2018,623.20416,-34.23171,26.023804,76.061104,5.63 2018,-6.162733,489.09943,18.618366,42.736145,5.495 2018,-9.08722,464.17032,37.905594,92.40622,5.494 2018,613.05707,454.2661,39.627747,107.99707,5.29 2018,-72.37712,266.6776,200.26491,460.8451,5.033 2018,602.64374,-56.049164,53.414307,130.92949,5.017 2018,626.52295,487.91098,20.639648,46.30484,4.985 2018,582.92224,410.79294,71.89758,177.32736,4.904 2018,586.0821,-96.03233,74.02435,227.58957,4.9 2018,536.5001,309.95612,142.89368,342.6541,4.861 2018,-21.65825,403.00095,79.23381,174.91458,4.86 2018,-17.414059,-64.52302,55.769997,146.47488,4.856 2018,489.66772,-179.46146,235.10974,424.36255,4.706 2018,-36.727192,-130.10358,117.34311,279.21634,4.589 2018,493.1845,225.80487,238.47675,515.78534,4.369 2018,305.79932,215.77138,20.86905,36.59572,4.339 2018,-70.98594,-188.67218,211.8291,454.3976,4.292 2018,453.0011,214.63614,31.492035,75.37283,4.274 2018,-4.990701,42.115677,17.139673,43.779236,4.251 2018,593.7615,-43.633728,44.950806,93.20565,4.227 2018,-4.7477603,61.086044,16.329687,36.25316,4.192 2018,593.7813,177.9101,42.674805,106.13446,3.982 2018,615.3311,-19.998175,26.927185,70.65241,3.815 2018,128.9904,235.97258,21.353989,35.22719,3.765 2018,619.29724,-3.8044987,18.805054,39.97023,3.742 2018,590.0366,304.23468,31.775024,62.428436,3.74 2018,611.1964,163.73999,39.140625,108.31879,3.738 2018,-5.14373,76.20505,16.793354,36.97007,3.676 2018,2.9183526,-14.680914,16.831537,39.110252,3.608 2018,610.02936,206.84592,37.502014,126.74011,3.572 2018,307.04187,203.75089,30.034271,53.627808,3.571 2018,616.4295,223.23096,22.299377,56.812866,3.515 2018,587.12054,185.94673,33.82782,61.70157,3.499 2018,-5.3413525,0.18424034,17.714506,43.13466,3.49 2018,573.3696,-3.2941284,30.046143,62.6848,3.447 2018,595.1985,243.20462,41.14453,112.15393,3.442 2018,313.64142,231.18704,18.751617,32.886658,3.434 2018,565.57245,190.96153,45.83661,112.022964,3.401 2018,290.71255,222.69234,19.465973,32.085724,3.399 2018,425.858,0.60637474,22.752228,49.33674,3.397 2018,307.54163,229.91937,18.168396,31.42212,3.345 2018,409.94684,-17.86993,18.665894,43.727215,3.343 2018,2.4024158,490.3986,19.060856,41.103424,3.288 2018,300.94012,232.0007,16.72818,28.253815,3.278 2018,417.85764,-15.388715,18.219696,41.099983,3.265 2018,411.1104,-14.938183,32.599457,67.620895,3.249 2018,602.2725,225.59279,32.28949,76.39049,3.234 2018,-5.011734,88.12639,17.343372,42.106506,3.209 2018,587.74976,197.74706,59.493774,205.84297,3.206 2018,611.95654,266.73465,38.737793,110.03586,3.205 2018,450.95566,-2.668478,31.47226,63.334435,3.2 2018,-0.69272995,12.84161,28.09971,74.7939,3.198 2018,9.418254,-94.40414,75.17575,212.27603,3.178 2018,145.48886,235.83167,22.381378,37.399445,3.178 2018,612.7276,-2.1397705,37.953796,105.57475,3.177 2018,555.3543,305.80637,29.963867,63.45761,3.158 2018,398.6203,-34.59201,27.439331,77.55111,3.155 2018,1.2580848,-41.273872,44.553226,102.3493,3.146 2018,435.0894,-14.948755,33.080353,66.9625,3.082 2018,146.99918,218.52512,39.679443,69.36972,3.08 2018,585.1208,-1.6662254,22.77832,50.604515,3.04 2018,2.68803,52.3236,17.98598,39.86274,3.038 2018,426.61893,-15.77746,17.283203,39.77772,3.034 2018,477.48804,211.34978,31.285828,73.976944,3.007 2018,546.72186,412.3446,83.29706,168.04102,3.006 2018,537.821,-0.8411007,22.065186,47.68995,2.985 2018,586.2339,-15.677075,17.154907,37.79629,2.984 2019,-5.2706347,-17.470158,17.672436,42.749363,8.576 2019,622.2008,-34.068718,27.780273,75.85862,6.988 2019,-10.424107,-31.96273,29.139715,72.031265,5.882 2019,626.82666,-18.870453,18.034302,47.16994,5.853 2019,602.9706,-56.282303,53.76062,132.63304,5.83 2019,-5.8927054,489.89783,18.41738,41.250732,5.753 2019,-11.528501,478.3412,29.541859,63.448853,5.503 2019,3.4886944,-14.994406,16.696632,39.194138,5.46 2019,593.81696,-43.96856,45.246094,93.9853,5.424 2019,490.2685,-182.19754,233.95624,428.9743,5.32 2019,613.0914,453.46732,39.337463,108.50363,5.257 2019,-72.36145,266.2173,200.94704,461.52454,5.108 2019,-16.946077,-64.77778,55.431534,146.37482,4.98 2019,-21.721716,402.5467,79.44405,175.22943,4.924 2019,582.9382,410.61548,71.81415,177.41058,4.901 2019,536.8075,310.55896,142.80566,341.78156,4.841 2019,-36.497387,-129.84544,116.91002,278.44235,4.735 2019,586.1272,-95.96293,73.507935,228.30093,4.721 2019,510.60974,5.3044777,40.619446,88.77409,4.641 2019,-5.3106794,-0.7639656,17.962383,43.866493,4.551 2019,626.23114,487.16132,21.267029,46.72766,4.538 2019,618.12494,-9.431178,21.472168,46.84289,4.446 2019,-71.31076,-188.78816,212.34633,455.16138,4.39 2019,493.45215,226.67297,237.94287,515.29767,4.351 2019,0.010644197,-19.05672,25.672634,67.90272,4.249 2019,496.69815,-13.745504,47.18033,82.87828,4.218 2019,572.08636,208.84267,54.537415,131.9315,4.112 2019,612.9464,4.570423,28.56897,79.46472,4.052 2019,-5.24951,107.023155,17.944092,39.59046,4.003 2019,529.0876,-13.7687435,46.02722,88.30614,3.985 2019,571.8878,-15.355827,56.272522,159.92542,3.984 2019,538.35675,194.86961,59.51587,134.83388,3.936 2019,235.7277,218.7727,16.980392,26.938507,3.918 2019,305.6473,226.62871,21.50238,36.658768,3.905 2019,-5.650387,89.5764,18.267786,40.14102,3.893 2019,187.38739,232.97688,18.317535,27.558182,3.876 2019,2.6898365,289.89822,18.902256,33.102905,3.705 2019,9.967637,-5.9552803,20.23822,40.62928,3.691 2019,453.90436,-35.43382,29.319336,81.58387,3.653 2019,331.58185,216.52353,20.595856,38.92688,3.643 2019,11.434598,-25.646866,58.93137,130.50809,3.641 2019,-6.2109175,266.82578,18.541214,40.479126,3.638 2019,-9.232029,-6.4277,40.498093,99.93779,3.612 2019,196.31578,217.31436,38.483185,69.68579,3.572 2019,463.16705,-40.243835,48.973633,88.923134,3.519 2019,155.30074,227.9021,17.66632,26.023834,3.504 2019,533.4468,-33.969475,29.407104,79.69165,3.49 2019,562.455,227.87166,46.352234,99.55757,3.488 2019,122.66318,219.45422,20.947678,35.17653,3.409 2019,2.353704,491.49176,19.160177,39.71985,3.386 2019,422.73346,-35.142723,28.291077,73.55657,3.377 2019,51.88922,249.2127,40.512985,72.91797,3.346 2019,536.41565,-30.505959,62.21216,130.57333,3.342 2019,522.7294,-12.111824,33.24591,70.319534,3.331 2019,604.39825,5.8053894,51.489563,155.92773,3.33 2019,-1.4742529,200.55263,27.404844,72.22887,3.33 2019,546.83636,200.08978,36.597046,64.170105,3.321 2019,0.5427635,263.49283,26.638363,63.373383,3.308 2019,565.909,-34.59762,29.293274,73.77923,3.3 2019,236.73836,232.79643,16.64534,27.623306,3.296 2019,35.205498,58.25208,31.013756,71.05521,3.25 2019,1.6038346,-41.622097,43.93043,102.53553,3.244 2019,12.460468,243.26227,70.56984,186.36682,3.235 2019,-5.81563,24.368704,17.717588,43.549126,3.23 2019,307.56186,217.43207,31.135925,60.47284,3.227 2019,474.3778,-33.296856,63.128296,121.813416,3.227 2019,-6.001109,71.937675,18.679117,42.20452,3.216 2019,6.545929,-34.277367,27.34829,73.42266,3.198 2019,441.81128,-38.070084,62.32544,123.477776,3.182 2019,-5.9260654,57.212257,18.333414,40.575974,3.174 2019,530.3683,-130.83644,115.7395,270.49124,3.158 2019,171.56114,234.51643,17.360962,24.315598,3.156 2019,562.45337,-16.265915,43.746582,87.99725,3.143 2019,481.13385,-19.155802,20.179626,45.186172,3.132 2019,537.376,-19.0966,19.702576,43.891125,3.11 2019,243.67575,225.67255,17.361267,28.106995,3.105 2020,-5.8624797,-18.062237,18.463774,44.190514,9.85 2020,-10.88345,-31.62183,28.932749,72.605576,7.015 2020,2.4787288,-16.401472,17.74112,41.57207,6.243 2020,-17.584698,-65.64289,56.056057,146.12265,5.8 2020,627.11945,-17.9209,17.055603,46.07762,5.644 2020,-8.913476,464.06628,37.617855,93.17578,5.577 2020,613.19745,453.45758,39.548523,109.513,5.501 2020,610.686,-47.459393,42.163757,99.25445,5.311 2020,585.2807,-94.65976,74.5827,227.87117,5.279 2020,-6.2681913,489.32056,18.97099,41.903076,5.274 2020,-72.58464,266.09186,200.6085,461.22565,5.12 2020,626.63824,487.59262,20.61444,45.68918,5.11 2020,-4.9956985,0.9533348,18.027725,43.795044,5.047 2020,-21.7384,402.54895,79.363266,175.14832,4.855 2020,148.63493,219.64673,30.047592,48.917603,4.841 2020,583.0842,410.82416,71.65021,177.18744,4.83 2020,-36.78808,-129.69266,117.45436,277.54996,4.767 2020,489.59518,-179.23843,234.9932,425.6019,4.764 2020,536.6396,310.64865,142.84747,341.69522,4.714 2020,145.7788,226.89781,22.54683,33.961258,4.663 2020,9.877752,-17.435535,18.134958,41.58127,4.333 2020,493.48483,226.18927,237.90768,515.97473,4.33 2020,-5.6879473,39.763695,18.211365,42.824577,4.254 2020,10.358243,-37.3221,58.935886,132.4483,4.234 2020,-70.75021,-188.54999,211.8532,454.17834,4.156 2020,162.14969,206.14148,41.55333,70.8363,4.143 2020,547.46716,-2.2147026,31.735046,69.07471,4.113 2020,612.376,52.30004,26.736694,84.722786,4.087 2020,122.94686,216.11455,18.189552,31.528183,4.069 2020,315.74506,202.84163,31.54712,59.557846,3.988 2020,484.61646,-2.9665031,30.765259,78.92311,3.871 2020,-6.078413,56.618927,18.374315,39.611603,3.838 2020,-9.383698,-6.1265182,40.733303,96.824135,3.822 2020,43.405067,-15.408314,34.092094,66.73954,3.814 2020,-14.613633,17.826218,48.6839,148.00627,3.739 2020,236.52524,193.9535,30.411346,51.939392,3.687 2020,-5.9559445,72.45892,18.259321,39.730896,3.62 2020,-0.6819725,-16.539097,28.02167,68.27125,3.616 2020,160.19951,224.34544,23.718826,37.912674,3.614 2020,0.9880829,-42.46921,44.55445,101.32402,3.605 2020,388.12515,233.46072,18.529327,34.333374,3.599 2020,380.73267,235.88225,17.91568,30.736526,3.592 2020,38.0981,52.622055,28.954933,64.434586,3.575 2020,371.83307,234.45279,16.463379,28.069824,3.555 2020,347.6326,186.2771,54.02719,103.68732,3.469 2020,18.49752,-16.532612,18.189247,39.551384,3.439 2020,615.14417,-20.648481,26.652344,69.25092,3.432 2020,27.095734,-14.814619,32.76824,65.58745,3.422 2020,131.70052,207.12357,43.45146,66.11594,3.413 2020,530.51965,-130.81528,116.20978,265.54712,3.39 2020,177.54518,211.85608,40.608932,73.83856,3.384 2020,458.93616,-26.927025,59.129944,121.60436,3.384 2020,526.47394,-33.205574,28.32489,83.3271,3.365 2020,619.2854,86.84827,19.132812,59.221695,3.362 2020,461.0645,-1.5966587,31.769684,65.68909,3.355 2020,251.5256,215.79057,18.323212,29.780884,3.351 2020,587.8632,-16.386734,31.707947,64.28834,3.351 2020,406.90518,225.14935,30.939209,59.20276,3.348 2020,622.0489,67.63608,25.636108,80.33057,3.34 2020,45.378166,66.67584,32.19055,60.738297,3.336 2020,42.020424,-32.26705,60.75379,123.38327,3.324 2020,443.77182,1.6969318,31.090698,61.856842,3.323 2020,115.3051,-33.11603,31.078522,73.91514,3.302 2020,115.71022,214.719,17.583786,32.36992,3.289 2020,-4.668486,199.9637,17.914307,44.568573,3.275 2020,618.34314,489.53607,20.972412,43.241272,3.274 2020,115.4669,219.7334,41.86351,70.13953,3.274 2020,12.1421795,16.742073,55.91588,129.96689,3.267 2020,469.69223,6.397434,32.8685,77.98709,3.266 2020,572.4519,-5.2898617,31.046326,66.3627,3.23 2020,1.996938,490.8673,20.00725,41.053406,3.226 2020,35.66782,0.4982834,32.14372,65.76311,3.213 2020,348.54578,240.02988,30.593658,62.286224,3.205 2020,120.993576,-18.846779,19.006592,42.73004,3.199 2020,339.5896,210.26898,42.850647,69.686646,3.18 2021,-5.2123923,-16.006697,17.444527,41.488186,8.189 2021,-10.732719,-31.678957,30.024208,72.200966,6.627 2021,578.2192,2.184555,36.14209,90.965294,6.287 2021,610.3628,-45.072254,42.01703,95.78677,5.935 2021,-17.89232,-63.967484,56.204185,145.12674,5.917 2021,627.00977,-17.803406,17.540771,46.897263,5.853 2021,-12.256198,476.6969,30.68087,64.13977,5.619 2021,104.04573,243.15709,23.921638,38.74324,5.496 2021,584.9909,-93.18396,74.720276,226.40005,5.485 2021,-6.1894083,489.0087,18.80045,42.825104,5.385 2021,-72.885635,266.0691,201.19334,461.93872,5.129 2021,613.2884,453.60223,39.393494,108.77637,5.106 2021,583.23694,410.6878,71.62561,177.35913,4.85 2021,2.8719652,-14.00906,17.21109,38.859436,4.834 2021,-21.683006,402.86243,79.37619,174.4964,4.833 2021,489.83282,-178.75072,234.90106,425.16916,4.717 2021,626.40814,487.1982,21.191895,46.29709,4.684 2021,592.2106,9.087616,39.05835,86.82634,4.611 2021,536.57825,311.239,142.98828,341.20532,4.599 2021,10.784504,-32.196262,58.32439,133.21889,4.583 2021,256.75635,191.23114,20.911713,38.113464,4.555 2021,-36.979103,-130.9874,117.65948,280.84015,4.465 2021,-6.2976384,30.326078,19.744703,45.229668,4.439 2021,34.57336,225.78758,33.81989,61.008804,4.423 2021,-5.923744,236.78465,18.175182,36.363937,4.421 2021,246.46187,183.39786,28.41121,54.718872,4.393 2021,186.38252,201.15376,18.076797,28.97725,4.338 2021,493.31482,226.2273,238.07,515.69214,4.329 2021,-5.1002836,2.338583,18.171246,40.964172,4.255 2021,-5.969178,69.78849,18.01957,43.61196,4.196 2021,94.32518,232.4414,28.620598,52.25183,4.185 2021,-70.95666,-188.92308,212.2431,454.64777,4.121 2021,436.6435,223.2894,27.483856,61.44284,4.079 2021,618.90985,-3.15423,18.587585,40.999855,4.039 2021,3.0604916,-0.17232895,18.966904,37.89676,3.965 2021,90.43796,249.92029,19.919922,34.002014,3.836 2021,331.75354,201.01907,30.124268,61.082886,3.78 2021,-5.964825,251.167,16.909079,33.36873,3.768 2021,188.75885,217.16165,14.857956,23.478058,3.744 2021,82.56919,253.41425,20.976982,33.449707,3.728 2021,85.97108,-35.93302,29.254448,80.72702,3.633 2021,2.3647523,167.76324,20.591433,47.18155,3.625 2021,564.6122,-14.522619,32.85852,67.87674,3.6 2021,0.89690447,-40.903687,44.86079,100.275505,3.581 2021,530.54553,-130.09479,116.39142,264.2856,3.573 2021,-8.375739,-4.465721,39.53556,97.80129,3.537 2021,562.80066,-4.1974316,20.662964,41.35898,3.525 2021,9.942755,-15.646028,17.557173,38.5409,3.51 2021,29.178627,62.031605,30.746178,62.272762,3.502 2021,2.7725215,251.78151,19.32695,30.494156,3.493 2021,616.0546,11.079704,23.52594,55.967857,3.49 2021,96.38912,203.90526,45.409676,71.81279,3.471 2021,412.1594,233.28362,18.008392,33.59932,3.451 2021,236.04993,206.792,16.966354,28.613266,3.448 2021,570.38824,-16.148731,17.598206,41.248596,3.441 2021,243.39903,206.87894,18.063034,30.223923,3.433 2021,-16.168121,186.68536,49.747063,132.10956,3.431 2021,-3.8066025,169.0303,17.272179,44.41867,3.425 2021,587.72076,-1.6327515,32.119507,66.04056,3.4 2021,251.02481,206.18571,18.525421,31.242172,3.38 2021,-8.515745,170.42737,39.312744,96.85132,3.342 2021,507.69647,-2.9286156,18.550537,40.34993,3.32 2021,26.99198,-14.774948,17.15581,37.668198,3.302 2021,3.4240913,3.9527931,40.950535,103.25603,3.295 2021,348.12476,188.97379,56.359955,97.43442,3.288 2021,605.5138,-34.336838,28.758545,77.32358,3.283 2021,34.595028,-14.349455,17.08385,37.487736,3.277 2021,-5.0560293,266.36664,15.722853,32.626038,3.271 2021,73.81219,206.57782,60.623466,97.72272,3.265 2021,554.24854,-16.41692,17.471375,40.26926,3.26 2021,572.3412,-9.528358,58.240295,133.39952,3.239 2021,227.78967,200.06699,17.441895,27.21054,3.237 2021,112.31706,250.51582,21.723389,36.613937,3.236 2021,30.309145,-34.202366,29.093748,74.44444,3.231 2021,42.204914,-15.035015,17.316456,37.986004,3.213 2021,585.33856,-1.2048206,22.036987,41.72065,3.195 2022,-5.3658104,-15.652554,17.59594,41.774242,7.957 2022,-10.988555,-33.068356,29.81237,73.97779,6.695 2022,487.26166,225.83353,21.20813,41.009613,6.569 2022,610.5434,-47.528973,42.028748,98.37502,5.807 2022,-6.24339,489.204,19.099297,42.53354,5.628 2022,-12.369833,477.27182,30.70267,63.614227,5.616 2022,626.72266,487.99094,20.506836,45.286896,5.552 2022,585.4566,-95.910446,75.02936,227.046,5.303 2022,613.2384,454.7845,38.947815,107.51782,5.241 2022,2.9349113,-13.52983,16.80107,39.058636,5.181 2022,-72.64125,266.45657,200.43073,460.217,5.027 2022,-17.502602,-63.651638,55.92108,145.43736,4.942 2022,-21.581097,403.23398,79.234116,174.80399,4.902 2022,583.0603,411.1583,71.59802,176.9169,4.842 2022,490.46872,-179.20349,234.35355,425.4587,4.816 2022,627.06335,-18.204323,17.588867,45.061314,4.741 2022,536.46173,310.79803,143.08472,341.52692,4.709 2022,10.11405,-29.74958,58.935234,133.88826,4.49 2022,493.33664,226.48425,237.99527,515.7231,4.398 2022,-36.966476,-131.04214,117.84405,280.82214,4.394 2022,-71.16382,-189.23503,212.17084,455.07135,4.298 2022,251.71022,194.3227,30.189987,52.711395,4.225 2022,-5.9123764,54.48027,18.720192,42.16449,4.118 2022,-5.7539806,0.90058136,18.694416,44.859505,4.036 2022,-9.353705,24.530766,29.89703,70.617966,4.028 2022,339.5512,202.29842,30.224731,63.190475,3.91 2022,-4.4712315,169.05919,16.644314,41.390198,3.878 2022,85.40344,-34.906136,28.923538,71.87474,3.832 2022,6.197655,-3.0893517,29.13992,68.88899,3.814 2022,-1.1919546,-15.851875,27.983246,67.89514,3.704 2022,555.246,261.07886,30.69574,70.94507,3.652 2022,10.263493,-14.424691,17.45826,39.507057,3.608 2022,618.7274,490.23254,20.104492,42.334045,3.604 2022,250.03065,200.6258,21.082413,32.220093,3.57 2022,18.406858,-13.446901,17.204641,39.655357,3.517 2022,-5.2110405,69.91365,17.147478,42.521317,3.516 2022,134.12251,-35.007404,29.178116,74.211464,3.454 2022,484.85855,225.91553,29.468903,69.6734,3.438 2022,18.879993,3.745308,32.541473,81.07551,3.425 2022,-5.575405,232.59729,16.413265,37.980774,3.421 2022,-4.797113,216.96475,16.97536,40.00168,3.409 2022,-0.36481857,39.572433,27.359585,65.71542,3.404 2022,121.52192,-16.757751,18.603401,40.592873,3.326 2022,474.95526,-16.890862,16.959595,38.94666,3.316 2022,531.19446,-133.87424,115.85498,266.452,3.298 2022,617.941,-4.704214,20.210571,39.713593,3.281 2022,458.65613,-15.743221,17.075958,37.31755,3.258 2022,236.2629,207.63281,16.76477,27.688477,3.246 2022,588.9062,-55.36936,54.243164,134.04222,3.233 2022,572.0071,-19.173424,56.608887,135.23663,3.232 2022,237.34158,192.31044,30.298798,51.947372,3.226 2022,413.61295,251.69559,14.397766,25.892944,3.221 2022,189.05197,217.28423,14.086578,26.63826,3.213 2022,-5.5318966,137.76086,17.23008,41.355865,3.201 2022,454.2782,-32.452477,28.538849,70.25242,3.179 2022,109.201385,-34.534065,28.807297,70.33358,3.178 2022,490.48245,-17.676846,17.056335,40.38401,3.168 2022,467.82953,-16.53948,32.1308,67.24456,3.154 2022,2.291026,-8.748577,43.0759,104.03374,3.153 2022,-12.356119,47.892838,29.217606,69.083374,3.146 2022,467.04388,-15.366036,17.008179,37.37879,3.142 2022,-5.1233983,22.408245,18.878622,47.19414,3.142 2022,603.1263,-26.565216,53.730896,134.64821,3.113 2022,605.36066,-34.071423,29.044678,72.190216,3.078 2022,258.3151,205.92946,19.215454,31.529922,3.058 2022,74.42723,-17.342468,18.022102,40.973698,3.058 2022,603.52,57.481262,52.605103,151.15866,3.056 2022,482.78638,-16.193178,16.99356,38.623337,3.019 2022,450.82147,-15.327873,17.013458,36.642815,3.014 2022,316.53662,215.90544,30.507446,55.916977,3.008 2022,26.048492,-14.265146,17.303062,39.793026,3.007 2022,538.19934,222.13538,34.902588,77.98834,2.984 2022,81.91818,-17.464617,19.380753,43.153725,2.982 2022,89.37618,-18.659805,19.35559,44.08489,2.982 2022,173.0307,215.683,14.831116,29.170364,2.98 2022,501.6922,293.5194,29.340027,72.4158,2.975 2022,242.91716,207.70029,18.655441,28.853195,2.974 2022,497.07138,231.59558,20.89804,47.12494,2.962 2022,43.05217,41.920853,33.25437,70.39696,2.962 2023,-5.6983895,-17.36764,17.640106,42.194927,7.341 2023,626.99146,-16.761423,17.172241,46.325245,6.483 2023,-12.121893,477.28482,30.546907,63.76169,6.213 2023,376.28983,212.37181,23.158691,40.75093,6.175 2023,-6.186015,488.9729,18.864742,42.600708,5.985 2023,622.3223,-33.73056,26.851807,77.23649,5.72 2023,626.7564,488.59396,20.337952,44.763214,5.57 2023,-11.100965,-32.1492,29.251743,72.466774,5.5 2023,585.683,-96.24786,75.05298,227.29558,5.17 2023,602.8382,-55.54523,53.05542,130.7151,5.165 2023,612.96423,455.8262,39.19275,106.01041,5.095 2023,-72.64166,266.5313,200.6078,460.36444,5.043 2023,582.96326,411.8683,71.654785,176.56671,4.913 2023,-21.695812,402.7006,79.33247,175.2894,4.878 2023,-20.18528,-89.02577,72.11122,199.08115,4.694 2023,536.4894,310.95428,143.07068,341.7058,4.693 2023,614.93384,-17.768764,27.130493,73.55322,4.658 2023,162.16476,208.61823,19.388718,30.4281,4.626 2023,490.12976,-178.08359,234.90265,424.53098,4.608 2023,-36.729057,-131.69849,117.18907,280.6098,4.377 2023,493.2782,225.58286,237.86145,516.8873,4.329 2023,544.58484,221.5074,32.70282,67.29329,4.325 2023,-71.473434,-188.98914,212.29655,455.00702,4.316 2023,-9.396057,-21.278927,38.916027,103.73869,4.113 2023,594.15106,-43.82897,44.57379,93.7321,3.897 2023,370.02533,206.55205,23.491882,39.35901,3.892 2023,-5.669992,3.65773,18.016008,42.08587,3.814 2023,619.42816,-15.780782,16.532166,43.23494,3.677 2023,1.994493,490.4137,19.90278,41.42102,3.614 2023,3.4578013,-14.845365,16.00856,37.880733,3.607 2023,379.2788,214.84737,30.82605,55.624435,3.595 2023,554.63354,-16.467766,17.113342,40.619274,3.466 2023,228.2041,196.43532,30.612244,51.321518,3.454 2023,589.1947,-6.646429,30.593323,66.9367,3.448 2023,548.69073,-16.408405,30.622986,67.18433,3.41 2023,602.8791,-14.429614,16.588074,39.887455,3.385 2023,585.9845,-15.313679,17.582397,39.461258,3.343 2023,618.65344,491.56012,20.038635,41.173706,3.219 2023,531.01373,-15.926399,17.70642,42.561855,3.211 2023,237.56136,191.61417,15.419617,28.313782,3.183 2023,-8.5261965,294.35223,37.621304,107.54187,3.139 2023,43.113792,-16.847023,16.957508,38.92933,3.115 2023,546.22473,-15.110085,17.31958,41.0596,3.083 2023,565.01013,-16.606647,31.039124,66.7572,3.077 2023,537.87354,-16.502106,17.687927,43.172596,3.076 2023,615.8645,9.854195,24.79663,68.524994,3.072 2023,594.49133,-14.235085,17.304077,38.92732,3.05 2023,531.17285,-135.00752,116.01068,266.87665,3.037 2023,581.61664,-32.472073,29.247498,73.01033,3.025 2023,-4.1709976,187.45604,15.848039,39.545532,3.012 2023,1.9442201,-42.40503,43.279083,102.77309,3.006 2023,623.0157,-1.9727592,25.629333,69.28253,2.998 2023,546.6615,414.1837,83.32068,166.13516,2.982 2023,-4.0875382,171.44446,15.654381,39.240646,2.941 2023,433.92856,-42.42491,44.709686,94.795135,2.931 2023,585.45447,-2.673256,21.6333,38.90501,2.919 2023,241.52374,204.96298,20.13797,29.834396,2.892 2023,34.929863,-15.782675,17.02584,37.304585,2.88 2023,251.85,217.28949,16.792633,29.034775,2.871 2023,5.5444946,465.98877,38.079273,98.79651,2.87 2023,157.16168,213.0912,16.82196,27.997116,2.86 2023,476.5656,274.49994,16.509155,29.291718,2.851 2023,541.13354,-33.53933,28.486267,75.37565,2.849 2023,598.00256,462.81024,37.558533,97.87134,2.837 2023,300.4665,220.4469,30.078247,51.95999,2.834 2023,10.652716,-15.835071,16.703976,38.704544,2.833 2023,523.72974,-17.576147,16.451477,41.852192,2.82 2023,305.2615,231.9838,21.545746,31.360321,2.814 2023,613.4598,-3.2475815,36.92688,107.81529,2.807 2023,234.59932,214.31783,18.560455,32.215927,2.806 2023,359.34128,200.9101,31.04602,55.624207,2.801 2023,70.307724,-36.27389,27.666786,72.06499,2.798 2023,401.95233,-43.00293,44.87033,97.2444,2.782 2023,401.73602,236.2798,20.881134,37.99315,2.78 2023,369.71417,-42.32492,45.2442,96.49163,2.779 2023,81.25908,-45.40414,45.411972,97.307976,2.743 2023,562.97876,-14.512168,17.09198,38.743904,2.741 2023,337.55835,-42.13943,45.471313,96.22729,2.741 2023,-5.5381584,265.35788,16.376297,36.08026,2.74 2023,533.1948,-16.67718,29.359314,67.583916,2.737 2023,347.14185,-16.812948,15.855103,37.36538,2.735 2023,-9.270859,69.50369,38.558514,107.268936,2.718 2023,180.5674,489.3937,31.149506,51.81064,2.717 2023,243.1247,214.987,17.866577,30.920166,2.712 2023,363.61588,220.76839,19.782227,35.746597,2.706 2023,-5.1865196,23.732939,18.586525,45.7237,2.704 2023,604.25653,188.33777,50.337646,141.32666,2.702 2024,376.16785,211.17293,22.372223,42.651657,8.006 2024,-5.018034,-17.249374,16.93669,42.18021,7.353 2024,-10.762693,-31.919945,29.240152,71.06199,6.454 2024,-12.043128,476.59323,30.551552,64.469635,5.964 2024,-6.084895,488.931,18.862728,42.36435,5.81 2024,622.70593,-34.292618,27.04358,77.45573,5.745 2024,627.23486,-18.799646,17.42041,47.802635,5.444 2024,626.5225,487.5036,20.791687,46.582764,5.214 2024,613.021,455.02625,39.317932,106.49695,5.191 2024,3.5602183,-14.932764,15.841927,38.791706,5.163 2024,585.8099,-96.03598,74.6579,227.12822,5.152 2024,603.22095,-56.986275,53.855347,132.69429,5.134 2024,377.5158,198.40988,33.0838,58.90802,5.11 2024,-72.67793,265.76965,200.59137,460.88428,5.034 2024,-17.395996,-62.672874,56.076725,142.43576,4.998 2024,583.0032,411.91245,71.66876,176.2518,4.933 2024,-21.685745,402.78525,79.307724,175.05936,4.887 2024,593.3548,-46.287376,45.2016,94.24944,4.841 2024,536.51697,310.95312,143.07715,341.367,4.757 2024,490.03177,-179.35301,235.00558,425.25363,4.715 2024,-36.502487,-130.09676,116.95594,278.4705,4.612 2024,-71.13574,-190.13182,212.23701,456.83264,4.463 2024,233.66098,213.49652,19.883514,34.325592,4.382 2024,493.55484,226.00443,237.59195,516.1653,4.318 2024,619.6083,-7.901848,19.085754,43.402786,4.261 2024,122.03777,206.25554,20.613441,38.719925,4.179 2024,225.09499,212.48407,21.296738,34.62259,3.986 2024,561.39856,-17.557276,19.751587,39.831516,3.978 2024,233.5892,191.85246,19.84552,36.529007,3.904 2024,286.3424,194.26527,29.284393,59.10463,3.842 2024,10.849312,-16.934841,16.230965,38.706356,3.799 2024,553.6031,-17.799664,18.822632,39.81826,3.718 2024,204.33618,203.48953,16.720154,26.281189,3.639 2024,135.6974,200.93858,23.144302,37.29901,3.63 2024,76.81248,-1.0347767,15.83313,31.468983,3.624 2024,227.46664,202.72482,30.739563,54.352325,3.619 2024,69.35819,-1.4100924,15.708641,31.417728,3.58 2024,211.1741,202.77968,19.075226,28.947357,3.576 2024,75.30171,210.7565,20.991081,36.485138,3.543 2024,2.0257425,490.41455,20.092789,41.333008,3.42 2024,-4.657775,217.87675,15.649158,35.33278,3.402 2024,557.82245,-33.95395,29.402771,70.97953,3.398 2024,2.4750614,-40.822037,42.62986,97.591995,3.386 2024,569.389,-18.711464,19.799194,40.606514,3.372 2024,28.05024,-16.974607,15.47496,37.60254,3.37 2024,-4.6854286,0.14495468,17.389835,40.00741,3.352 2024,-10.167734,-6.4086304,40.293465,102.00834,3.325 2024,60.115166,-14.338364,14.87191,35.507557,3.313 2024,75.55058,-13.712578,15.243973,35.58424,3.28 2024,300.08725,220.15234,30.115265,58.47336,3.278 2024,268.794,-3.76503,16.019775,35.194805,3.266 2024,-0.2680254,-21.30866,25.401825,65.19538,3.239 2024,241.60994,215.01971,20.171188,33.3049,3.236 2024,212.5542,197.20312,31.881653,50.2502,3.225 2024,19.442446,-16.92267,15.937136,37.21791,3.215 2024,236.8984,177.21431,15.514038,36.67015,3.208 2024,217.89114,207.63402,21.316101,31.219986,3.187 2024,288.66122,224.95428,22.764038,39.325043,3.164 2024,531.04865,-133.21317,115.93103,265.7713,3.161 2024,78.207214,-33.96383,27.85048,68.28711,3.116 2024,284.2831,-4.0422297,16.636261,36.007645,3.111 2024,58.31795,-40.75859,60.92918,134.06862,3.097 2024,2.8111494,0.79766464,18.322111,38.677605,3.076 2024,300.22662,-3.8743076,16.901093,36.373566,3.061 2024,-5.281418,199.62581,17.31103,42.311874,3.056 2024,553.76355,-4.1065807,21.457397,38.542366,3.054 2024,546.7061,414.24808,83.359314,166.06711,3.052 2024,577.31494,-18.238197,19.650879,39.916515,3.032 2024,111.81329,-41.44067,47.18747,93.98016,3.014 2024,252.7024,-4.1793575,16.707275,34.59889,2.992 2024,80.090546,-43.096924,47.006805,95.34008,2.984 2024,618.2798,489.46622,21.21753,43.81613,2.975 2024,62.252922,4.4823923,14.4657135,30.028893,2.973 2024,261.0335,-4.2545166,16.069214,35.736797,2.971 2024,545.9133,-15.729381,17.974365,37.524258,2.966 2024,533.8191,-33.492355,28.751953,72.72445,2.944 2024,276.68146,-4.1158867,16.140991,36.73982,2.937 2024,116.84747,213.55942,17.203262,33.094086,2.937 2024,570.9956,-39.46273,58.769043,133.29218,2.92 2024,278.5949,-33.213028,27.285553,69.83493,2.916 2024,144.61108,197.15694,44.951828,68.149155,2.915 2024,365.5282,194.57669,51.006348,96.576385,2.91 2024,154.94147,-29.278633,59.81366,128.57953,2.904 2024,36.244488,-15.559525,15.304604,35.936108,2.899 2024,305.6306,193.89804,22.063202,43.735672,2.896 2024,63.606285,-34.04276,26.594917,67.86817,2.89 2024,305.84943,237.35556,20.78659,33.489594,2.886 2025,138.36626,205.75323,19.661545,30.49524,8.852 2025,-5.678631,-17.606808,17.840147,42.611668,7.223 2025,-10.929652,-31.951275,29.595245,72.36582,5.882 2025,610.46173,-48.326775,42.015015,99.8161,5.735 2025,-12.249714,477.4331,30.526836,63.67755,5.711 2025,626.3452,487.273,20.853027,46.81006,5.619 2025,-6.1878576,489.33493,18.607998,42.386627,5.542 2025,384.44788,209.54901,23.696075,40.255417,5.44 2025,-17.738693,-64.115776,56.801037,143.31683,5.35 2025,586.0075,-96.50387,74.16705,227.069,5.261 2025,627.2087,-18.00711,17.16217,45.881325,5.153 2025,-72.8263,265.74283,200.80798,460.8215,5.083 2025,583.08997,412.13434,71.54944,176.02826,5.053 2025,490.79163,-180.72922,234.88757,427.41544,5.02 2025,-36.481205,-129.64673,116.87465,279.628,4.887 2025,612.9709,455.38068,39.084167,106.505066,4.858 2025,542.30615,-34.556446,28.522705,73.87398,4.847 2025,-21.710938,402.6057,79.38961,175.09357,4.833 2025,536.4092,310.87128,143.35974,341.67206,4.771 2025,538.83923,-17.621038,16.942932,42.011555,4.745 2025,123.21941,203.39835,18.732063,33.574295,4.619 2025,2.6582873,-16.157143,17.06496,39.942513,4.582 2025,554.4652,-16.795372,17.411987,41.231144,4.463 2025,546.84625,-16.024975,17.292603,41.069485,4.454 2025,-71.04734,-189.125,212.09494,455.78967,4.433 2025,131.80037,208.29938,18.572845,30.015762,4.428 2025,493.56247,226.5069,237.40726,515.4773,4.423 2025,212.62714,193.82585,30.607132,54.943695,4.405 2025,381.10507,182.1955,54.232452,102.80817,4.385 2025,11.185085,-32.618385,58.161335,127.51708,4.356 2025,42.043823,-34.31625,59.330154,128.21326,4.12 2025,-5.5372667,-0.22535324,18.778667,46.020435,4.115 2025,526.065,-35.0467,28.885254,74.5582,4.039 2025,146.45496,214.26233,16.259521,25.105316,4.027 2025,107.51747,206.13202,18.146507,33.71495,3.985 2025,-9.589651,-6.580765,40.39714,98.204155,3.937 2025,331.11798,190.44058,29.686157,62.19539,3.905 2025,170.11179,202.69894,18.123306,29.270782,3.897 2025,317.217,215.22177,30.50534,66.197235,3.885 2025,80.33416,199.0754,22.99575,39.924484,3.827 2025,619.0305,-18.09529,17.874268,42.730736,3.795 2025,114.89155,204.97768,18.451378,34.04521,3.788 2025,1.4017415,-40.31413,44.36708,96.64733,3.752 2025,162.7546,205.82199,19.072723,29.601746,3.733 2025,29.505466,-12.422085,30.359829,63.768223,3.729 2025,558.1859,-35.08189,28.476135,72.06039,3.698 2025,10.130019,-16.784258,17.648434,39.890087,3.672 2025,42.514782,-3.0330906,20.641201,39.482727,3.658 2025,598.1772,-23.788359,39.43335,91.24669,3.641 2025,2.2772229,490.77277,19.416365,41.378906,3.615 2025,506.11984,-5.8184032,20.593536,40.824547,3.608 2025,531.0497,-16.083511,16.592285,40.56065,3.606 2025,4.4276466,192.85518,29.327915,65.505356,3.606 2025,2.0626855,0.6690655,20.853115,47.07643,3.601 2025,31.95051,-7.5980034,47.514412,91.74562,3.598 2025,346.6296,-17.681164,17.413696,41.82514,3.585 2025,501.52036,-34.68969,29.27005,74.3444,3.574 2025,522.96814,-5.5385513,19.178284,41.146626,3.559 2025,154.08807,209.93065,18.758057,27.661575,3.529 2025,218.09233,202.21602,21.292648,35.182114,3.513 2025,325.17206,-4.392185,30.17804,67.61638,3.504 2025,58.613365,-2.7341251,20.32064,36.24904,3.487 2025,61.631958,-32.22757,29.133026,67.946556,3.482 2025,411.93484,181.66296,54.219635,103.616516,3.472 2025,74.24184,-14.176535,17.538094,35.25846,3.471 2025,-5.390861,203.18488,18.305628,46.7827,3.449 2025,51.75098,70.108406,32.371777,57.05333,3.44 2025,-5.227828,182.08023,18.745235,46.67572,3.436 2025,603.017,-28.225376,52.977966,133.31496,3.423 2025,144.5038,200.32509,44.078445,67.02519,3.375 2025,432.982,-44.319324,45.616364,94.79956,3.373 2025,66.51244,-2.4728355,20.422638,35.7253,3.369 2025,283.1759,216.04475,33.186768,56.409622,3.367 2025,562.5583,-15.873629,17.256775,39.757298,3.366 2025,26.792465,-15.561256,16.94957,38.5748,3.341 2025,4.927272,-5.4100075,29.070164,66.44532,3.341 2025,225.44882,206.11522,20.847946,35.668198,3.333 2025,48.723747,1.2111835,22.332603,43.829445,3.332 2025,234.73985,195.99799,17.555466,33.156204,3.32 2025,400.89026,-45.394287,45.77527,95.93793,3.317 2025,509.6445,-15.256437,30.38742,62.88569,3.311 2025,66.58742,-13.705849,17.33799,35.189034,3.301 2025,514.71533,-6.295063,19.927551,41.950245,3.295 2025,58.44937,-15.054597,17.496483,36.882336,3.292 2025,42.418476,-15.742802,17.535446,39.482956,3.291 2025,354.7312,-16.924427,17.579407,41.441753,3.283 2025,403.31732,194.31866,41.48123,77.9787,3.282 2025,130.2841,204.09406,42.845093,72.379395,3.273 2026,403.94595,212.67818,22.190979,43.79573,28.645 2026,6.0702825,200.01575,24.49609,53.67952,18.433 2026,137.39148,212.38869,19.319397,29.042542,9.06 2026,-5.3384,-16.561197,17.437418,41.760765,7.712 2026,414.39844,215.86217,22.32196,41.75688,7.536 2026,356.1626,207.88701,18.176697,35.22635,6.601 2026,-4.234003,189.9695,17.259193,38.57994,6.447 2026,-10.779357,-31.843536,29.391384,72.86126,6.2 2026,-8.766622,464.78076,37.616753,91.62836,5.734 2026,-17.83592,-63.797894,56.36978,142.59966,5.712 2026,627.166,-17.64558,17.174805,45.89551,5.516 2026,3.6635327,193.27316,18.86308,38.415802,5.381 2026,-6.076658,490.01593,18.538258,41.563538,5.346 2026,626.47815,487.83704,20.877747,46.284546,5.338 2026,622.5793,-33.42339,26.53363,75.7042,5.303 2026,585.8412,-97.94254,74.47119,230.75647,5.225 2026,490.9054,-182.0694,234.81665,429.65012,5.216 2026,282.92325,199.46526,30.411285,65.861404,5.13 2026,-72.92273,266.33594,200.64377,460.89587,5.076 2026,4.1825523,197.50192,36.618687,86.39041,5.057 2026,-4.790942,201.45335,19.441437,48.762848,5.051 2026,612.75586,455.067,39.469788,106.29654,5.029 2026,583.1338,411.97107,71.48932,176.24902,4.969 2026,603.1611,-56.765953,53.35675,135.86803,4.908 2026,-21.709604,402.7894,79.2783,174.45987,4.831 2026,-36.99448,-130.27159,117.0811,282.09613,4.772 2026,-5.089996,1.6126728,18.317253,43.76197,4.742 2026,10.630291,-33.19915,58.21578,126.41363,4.742 2026,536.402,310.21396,143.55652,341.99283,4.72 2026,3.184191,-13.757534,16.510036,37.820415,4.579 2026,122.74046,213.2215,19.840698,34.933075,4.505 2026,-71.08551,-189.30492,212.20746,455.63763,4.458 2026,493.79794,226.76779,237.3992,515.21045,4.418 2026,402.80414,201.97139,37.934357,71.910385,4.32 2026,-15.687952,124.657715,51.7443,137.44315,4.304 2026,3.3215773,-0.9367008,18.174519,38.70633,4.273 2026,-9.675879,211.19777,38.302284,99.45708,4.217 2026,452.69006,-1.0825462,30.490936,65.859634,4.208 2026,593.9404,-45.58925,45.163452,97.26998,4.166 2026,-4.653515,171.88382,16.530836,41.728912,4.118 2026,484.48605,-3.2323341,30.02768,69.72742,4.11 2026,1.5554285,-39.9054,44.250816,95.664246,4.062 2026,-8.968643,-7.357422,39.622448,99.254036,4.03 2026,-6.57948,176.86078,36.986385,88.79471,4.021 2026,-5.075289,20.842587,18.170946,48.863132,3.84 2026,619.5453,-16.97592,16.909546,42.377495,3.818 2026,163.7721,216.35155,16.496948,25.934036,3.782 2026,42.611027,-36.297073,58.386707,128.86766,3.77 2026,143.39578,205.90765,20.42958,29.413605,3.765 2026,130.21573,210.85957,20.506042,35.61168,3.756 2026,42.979546,-5.665886,20.527267,42.337646,3.664 2026,317.79706,218.77612,30.338165,61.625397,3.662 2026,-4.285412,154.17767,17.25248,42.968582,3.622 2026,10.255957,-14.5009365,17.1145,37.378555,3.61 2026,293.94107,-4.0943832,32.142303,63.288513,3.609 2026,170.23308,210.95087,17.144882,26.590622,3.574 2026,357.85175,-33.518524,28.874573,71.57792,3.571 2026,19.056374,204.74191,30.696663,61.661743,3.558 2026,299.06833,-1.9342766,19.79361,37.611557,3.519 2027,426.14914,209.72137,22.974762,50.20981,63.286 2027,501.88928,208.27252,31.26416,65.875,34.248 2027,128.60497,209.16022,23.259567,32.486237,17.323 2027,368.47183,206.34006,22.725037,42.747467,17.186 2027,-5.67288,-16.52612,17.744091,41.05781,7.98 2027,-10.929929,-30.865189,29.127815,70.12667,6.596 2027,-6.288637,489.68445,18.861412,42.027588,6.006 2027,451.91956,212.22163,30.122864,53.93773,5.967 2027,-12.193678,478.46802,30.402876,63.193542,5.909 2027,622.8196,-33.86212,26.58081,77.49342,5.597 2027,44.340508,-2.1394272,16.866844,33.492104,5.471 2027,518.21484,216.9008,23.005371,49.661026,5.468 2027,627.2631,-17.754372,17.0047,47.12445,5.422 2027,613.0421,453.88135,39.626465,108.18933,5.255 2027,490.47162,-181.19186,234.85034,428.85986,5.188 2027,585.9732,-98.933876,74.35181,231.73444,5.025 2027,-5.50569,1.9778214,17.698149,42.04993,5.024 2027,-72.56849,266.31818,200.13107,460.1164,5.024 2027,409.78305,215.25612,21.589355,42.700027,5.008 2027,583.0924,411.39545,71.64691,177.09906,4.923 2027,-17.6466,-63.970062,55.802826,144.58667,4.903 2027,-21.70352,402.92578,79.17611,174.65112,4.894 2027,602.8994,-57.14504,53.38318,136.09761,4.867 2027,383.57803,206.24605,22.555206,39.981873,4.849 2027,536.58887,309.91772,143.51965,342.34082,4.835 2027,3.253429,-14.075288,16.1712,36.603928,4.783 2027,626.40674,487.76697,21.085083,46.5177,4.728 2027,375.77042,203.52368,21.882446,35.531082,4.704 2027,-36.500263,-130.86366,117.08658,281.50085,4.639 2027,420.2132,220.37735,19.006226,41.22946,4.544 2027,493.94897,227.63321,237.1449,515.06665,4.501 2027,68.21261,-0.24126816,17.67974,32.401363,4.498 2027,-9.148842,-5.861191,40.102596,98.75031,4.421 2027,491.6994,171.3365,55.324524,111.847244,4.297 2027,153.32477,207.47247,21.268616,29.914154,4.26 2027,-70.71355,-188.74927,211.96878,454.86652,4.236 2027,36.399925,-3.679844,16.679443,36.49663,4.198 2027,399.2143,199.17804,26.966553,55.663193,4.197 2027,434.77725,229.98311,18.472015,36.383102,4.183 2027,1.6257834,-16.790165,49.620792,125.08244,4.145 2027,75.45655,0.79366684,17.486717,30.480015,4.12 2027,52.3053,-1.3085623,16.992016,32.404022,4.075 2027,107.10373,215.53848,18.884995,29.305756,4.075 2027,440.73727,224.15018,21.444153,42.49112,4.021 2027,428.50092,230.58832,16.651672,35.15448,4.02 2027,3.1038558,3.4958267,18.536804,42.0795,4.017 2027,419.00665,195.95593,39.71463,71.63382,4.014 2027,324.92093,193.8511,30.407013,65.73819,4.007 2027,458.86783,-16.566845,16.844727,38.560223,3.995 2027,593.84424,-45.06463,45.37091,95.66924,3.956 2027,6.3406076,194.31673,28.383865,65.59697,3.91 2027,82.64801,0.00948143,17.401955,31.517216,3.89 2027,619.5602,-4.753607,17.903687,41.682632,3.879 2027,124.35767,214.56604,19.274513,30.833633,3.868 2027,131.577,219.86163,17.437408,27.759827,3.852 2028,546.1722,206.09363,31.967712,74.844666,74.954 2028,444.7921,212.573,28.385712,59.41275,66.125 2028,379.18652,209.31273,22.853546,46.408676,45.484 2028,105.6044,208.39795,21.723183,35.535263,18.799 2028,390.60785,205.83998,21.863434,44.792282,10.073 2028,-5.131854,-16.82749,16.912262,42.13778,7.831 2028,507.39377,224.61572,29.198029,66.791504,7.115 2028,-10.683502,-32.154892,29.343946,74.03797,6.637 2028,525.8695,207.93918,30.181763,69.77609,6.152 2028,610.4047,-47.43623,42.174072,100.37037,5.686 2028,-12.184614,477.34482,30.435247,64.142426,5.645 2028,310.948,193.54247,36.645935,67.87135,5.562 2028,626.62683,487.9412,20.725708,45.53299,5.527 2028,-6.164345,489.25836,18.777134,42.394775,5.505 2028,612.88525,454.6889,39.7417,107.37146,5.328 2028,627.08386,-18.552608,17.588257,47.165718,5.15 2028,-17.63636,-63.75584,55.576656,145.23761,5.139 2028,491.2343,-182.09586,233.65277,427.64944,5.096 2028,-72.54176,265.99933,200.3856,460.82074,5.066 2028,582.89197,412.2964,71.76349,176.04181,5.027 2028,536.45276,309.68677,143.92126,342.63025,5.011 2028,586.3848,-97.87897,73.59747,230.01926,5.004 2028,3.421318,-14.135775,15.6538105,38.38965,4.966 2028,373.3111,206.6746,20.779816,41.77031,4.943 2028,-21.718998,402.49368,79.37898,175.36667,4.894 2028,527.38745,189.58685,55.24768,98.64172,4.871 2028,374.63452,198.89897,35.84906,70.25325,4.725 2028,426.66562,-15.520918,36.47766,69.1906,4.675 2028,-36.862152,-131.41518,117.701225,281.8242,4.592 2028,510.97348,-35.18991,29.058014,74.91018,4.555 2028,494.40863,227.69376,237.37042,514.4636,4.491 2028,552.08234,170.31804,54.397522,114.77132,4.398 2028,505.9803,228.60269,22.490662,42.511383,4.356 2029,491.64038,208.95146,30.850464,72.129654,86.929 2029,399.34842,208.0403,24.421234,45.82045,63.063 2029,81.68791,208.89165,21.597649,35.253708,14.076 2029,414.03232,202.31213,24.667938,49.0549,10.178 2029,482.6194,215.06458,28.670715,69.43713,7.731 2029,-5.162153,-17.568474,17.346146,42.595493,7.516 2029,402.64,207.51622,30.894775,66.70802,7.249 2029,-10.413365,-31.814014,28.973072,72.06775,6.309 2029,-6.116246,489.97784,18.589756,41.430176,6.259 2029,-12.117674,478.26367,30.352304,62.82538,6.106 2029,626.5992,487.6826,20.64618,46.343536,5.634 2029,627.14215,-18.30968,17.359741,46.790405,5.548 2029,613.02765,454.79697,39.370117,107.54605,5.28 2029,622.80743,-33.663948,26.65741,75.62663,5.249 2029,-17.541203,-62.99549,56.487244,142.69923,5.141 2029,586.0859,-98.58151,74.58795,230.74265,5.12 2029,-72.55418,265.4806,200.44553,461.38367,5.068 2029,583.19525,412.1485,71.44537,175.95569,4.967 2029,-21.609423,402.89963,79.23339,174.95328,4.886 2029,602.9032,-57.63098,53.50244,136.05934,4.855 2029,490.9394,-179.86246,234.42682,424.7951,4.849 2029,75.247696,213.30527,21.39177,34.464203,4.771 2029,536.48584,310.4906,143.45068,341.6587,4.743 2029,-36.730568,-130.0661,116.95757,278.43423,4.678 2029,3.2760346,-14.879927,16.596695,39.709206,4.65 2029,494.13327,228.19293,236.73404,514.7047,4.407 2029,-70.86914,-188.9367,211.78949,455.44073,4.326 2029,393.73077,-1.256258,20.8797,50.129593,4.299 2029,593.87555,-46.552353,45.200745,96.94424,4.239 2029,65.855095,214.32265,20.094505,34.040176,4.192 2029,67.75606,194.39261,42.819794,69.199036,4.059 2029,468.17566,-3.1607952,31.070557,64.599464,4.048 2029,512.88745,209.45775,40.672974,88.14046,4.044 2029,259.67764,220.40445,31.865051,57.464874,4.021 2029,-0.36829472,-19.119894,26.29414,68.28332,3.952 2029,430.21722,-4.467928,29.674408,66.40082,3.945 2029,1.9824445,491.0688,19.422638,40.572205,3.934 2029,453.37305,207.62282,38.563904,85.39601,3.933 2029,10.192999,-16.08635,17.13957,39.966755,3.917 2029,88.23418,214.94308,20.774658,35.06369,3.911 2029,444.22034,-3.1712074,30.777344,66.92179,3.884 2029,393.49185,212.70892,28.076294,68.06781,3.882 2029,382.38342,0.32712555,27.82904,63.061436,3.867 2029,-5.1078854,0.5428467,18.153645,42.875168,3.856 2029,11.470866,-16.319817,57.453175,112.46958,3.854 2029,59.712353,-6.0360336,18.440647,38.91847,3.817 2029,313.02075,200.59293,34.763397,58.822113,3.774 2029,57.87195,214.65524,19.652191,33.331238,3.752 2029,-4.2238336,214.56577,16.027784,41.348495,3.746 2029,75.14484,-5.0767307,19.093452,38.256638,3.745 2029,502.756,205.1277,23.56137,57.847458,3.689 2029,474.0241,-16.70499,18.10971,40.23699,3.685 2029,54.764015,-33.638813,27.42614,69.683044,3.659 2030,578.9781,212.13849,41.132874,90.1156,97.299 2030,431.62234,207.73221,32.302948,55.698547,79.945 2030,56.721832,209.6154,20.589394,36.162613,9.053 2030,611.2887,219.29413,36.439636,102.869934,8.462 2030,-5.458642,-17.248997,18.081192,43.540417,6.343 2030,567.56934,217.52109,35.05005,81.53009,6.192 2030,-17.46792,-63.63705,55.976723,143.57516,6.039 2030,627.29926,-17.249794,16.783936,45.949493,5.837 2030,-6.18836,489.70416,18.739498,42.190186,5.693 2030,-12.31937,477.7475,30.729181,63.379944,5.667 2030,-10.144982,-32.548897,29.119644,74.59947,5.571 2030,622.8515,-33.493874,26.339294,75.971115,5.533 2030,233.35677,217.99197,19.599838,30.205093,5.504 2030,445.40036,204.5079,25.566711,46.523987,5.229 2030,536.34045,309.59705,144.0987,343.4212,5.116 2030,582.9647,412.42206,71.56537,175.75482,5.113 2030,-72.928406,265.59863,201.09071,461.46228,5.105 2030,225.87888,215.82608,19.79213,30.599136,5.094 2030,586.13574,-98.820465,74.180725,231.871,5.085 2030,2.3581796,-14.84335,17.288042,41.74163,5.062 2030,532.6331,-182.67996,149.38403,424.5761,5.015 2030,612.77997,454.85938,39.68341,106.737366,5.013 2030,626.4028,487.90454,20.911377,46.300903,5.002 2030,425.25723,206.49725,25.228912,44.449615,4.963 2030,588.94775,248.12029,28.536316,69.32756,4.963 2030,550.81866,209.63269,41.44171,90.765686,4.907 2030,-21.691967,402.39355,79.33342,175.37366,4.896 2030,469.76102,-33.452206,28.718414,75.379364,4.839 2030,-36.767284,-129.96483,117.350296,279.2639,4.706 2030,602.87524,-57.166862,53.542908,136.26578,4.697 2030,493.6598,228.74289,237.896,513.24536,4.615 2030,587.31244,221.4567,51.11444,136.08441,4.603 2030,576.5093,246.02966,25.177124,59.267212,4.56 2030,11.117399,-31.157776,57.23346,125.642204,4.524 2030,227.32721,230.29355,18.92453,29.823914,4.445 2030,42.67652,213.25627,19.836227,35.11972,4.31 2030,50.128403,29.25366,22.638527,53.4058,4.297 2030,612.89154,261.54385,37.99341,110.447266,4.238 2030,194.42352,209.90155,42.722,66.253235,4.229 2030,441.3128,211.63303,30.997406,70.59885,4.219 2030,269.50778,227.34802,26.616455,39.466187,4.217 2030,-70.39962,-188.79443,211.49371,455.51498,4.212 2030,234.61433,230.6441,19.331146,30.453278,4.185 2030,33.319313,175.41359,46.497078,74.25729,4.167 2031,484.7749,203.92938,39.900757,79.65552,92.785 2031,1.5801907,207.59537,21.560833,44.582367,35.789 2031,110.66883,233.8985,27.164253,39.70108,7.804 2031,466.9244,198.53069,34.895325,69.51991,7.541 2031,-5.556404,-16.32308,17.909996,42.67762,6.398 2031,-8.994212,464.54443,37.774597,92.2229,6.039 2031,14.822673,207.23314,22.355652,39.445374,5.583 2031,-10.536371,-32.069996,29.534662,72.7463,5.506 2031,-6.074941,489.71027,18.657053,42.204956,5.458 2031,490.87732,-180.47348,234.97504,427.54922,5.307 2031,586.032,-98.525856,74.351074,231.02084,5.276 2031,610.4205,-48.04315,42.218567,100.25359,5.267 2031,-17.749737,-63.048584,55.75665,144.3562,5.246 2031,437.48257,181.70995,32.65445,74.26216,5.246 2031,627.24677,-18.17081,17.169983,46.50226,5.242 2031,612.99304,454.3371,39.568542,107.86859,5.195 2031,-72.80646,266.13226,200.58257,461.34796,5.081 2031,450.43982,191.04588,41.22525,73.89586,4.974 2031,-5.16639,100.39233,17.706093,45.35241,4.965 2031,135.19566,227.63564,23.848236,40.095383,4.951 2031,583.08185,411.64868,71.59717,176.82056,4.924 2031,204.14365,218.13548,17.497223,28.46782,4.855 2031,512.25146,205.124,42.12744,91.68088,4.843 2031,626.45746,487.74374,21.034058,46.23813,4.835 2031,536.4242,310.40604,143.25488,342.28122,4.819 2031,-40.08524,365.70676,110.50824,275.97318,4.731 2031,217.76514,219.10555,18.522888,29.975067,4.613 2031,-3.9469771,199.09001,18.118652,40.242752,4.54 2031,87.28973,235.44965,38.51181,52.22931,4.539 2031,-36.998898,-131.13133,117.7003,282.27643,4.526 2031,220.63419,230.72264,16.224503,27.272964,4.519 2031,500.39392,204.83414,25.4021,58.903778,4.498 2031,-17.929653,435.37616,55.419415,140.43939,4.478 2031,493.987,228.63577,237.21692,514.0742,4.453 2031,-70.83317,-188.37231,211.91324,454.9029,4.244 2031,260.0227,221.5907,32.030304,56.44864,4.225 2031,2.8195596,-13.955338,16.711206,39.06169,4.207 2031,-5.3508306,119.706436,16.96911,39.949417,4.192 2031,-5.0342445,-1.240694,18.41631,45.881058,4.191 2031,228.36671,231.13472,16.414948,28.202072,4.155 2031,-5.478801,137.79538,18.112354,41.078598,4.113 2031,-8.49571,-5.7502823,39.006004,99.65593,4.105 2031,3.7624598,206.75766,36.427876,75.792786,4.081 2031,211.33011,217.62907,17.680359,30.533737,4.077 2031,10.255983,-29.901543,59.433586,134.18552,4.016 2031,405.53644,-5.2470875,28.875427,63.574814,3.96 2031,98.61456,227.34576,40.964844,79.00452,3.927 2031,218.929,205.20078,17.805374,30.696121,3.911 2031,114.232086,227.92648,42.01767,79.21307,3.906 2032,-4.9927425,-16.897522,17.64667,41.825504,6.481 2032,278.29553,220.0424,26.960876,45.178207,6.418 2032,201.46716,214.37181,20.30014,34.057037,5.849 2032,-6.2657566,489.67468,18.920012,42.10309,5.839 2032,263.4816,219.69014,26.653198,40.279984,5.814 2032,-1.4384282,278.5373,27.924168,71.58179,5.742 2032,-12.279337,479.08643,30.58828,61.95294,5.703 2032,613.22125,453.83652,39.52655,108.191925,5.536 2032,310.12857,205.83794,24.623077,52.766434,5.477 2032,-10.240449,-32.826523,29.032211,72.297424,5.451 2032,627.26733,-17.29366,16.757935,45.763454,5.412 2032,623.1587,-33.627254,26.004028,76.11212,5.393 2032,490.27814,-180.99623,235.02612,429.1382,5.259 2032,585.9657,-97.70648,74.2431,230.44328,5.152 2032,389.60443,-33.53087,28.849854,72.32565,5.085 2032,537.1587,159.54572,56.34015,126.77438,4.91 2032,-73.2269,265.7973,202.26266,460.88788,4.906 2032,-17.349464,-61.847755,55.968185,146.74556,4.904 2032,626.5432,488.18524,20.999146,45.92505,4.866 2032,583.0645,410.85663,71.675354,177.18762,4.84 2032,536.5049,310.19714,142.88184,342.56274,4.812 2032,-41.464737,362.70877,112.688156,276.83627,4.783 2032,603.104,-57.279427,53.3432,135.1498,4.717 2032,-36.448097,-131.10406,117.461296,281.32166,4.678 2032,305.19888,221.89198,20.456604,42.23439,4.652 2032,3.30369,-14.427492,16.933453,39.517445,4.641 2032,-17.67175,435.57156,55.249237,140.62656,4.613 2032,194.03546,212.28412,20.583511,34.54976,4.611 2032,-5.109354,108.583084,16.874996,36.37526,4.528 2032,524.5946,217.32097,33.786682,64.636246,4.496 2032,493.5194,227.09137,237.97937,515.75,4.408 2032,-71.34233,-189.22134,212.44551,456.08844,4.241 2032,594.03516,-46.1165,45.10675,96.55023,4.191 2032,-4.3805084,169.57181,16.148518,41.626526,4.149 2032,-4.6429296,94.14937,15.31777,34.698456,4.08 2032,35.445156,307.80063,40.61423,80.26489,3.954 2032,385.57236,-18.611097,19.370422,44.958485,3.892 2032,-4.8518286,123.44293,16.354782,37.86551,3.874 2032,537.7505,216.2347,33.02112,64.45952,3.849 2032,508.8518,142.37675,57.32318,133.39601,3.763 2032,347.46228,186.7565,32.43994,67.92972,3.753 2032,210.06456,210.7914,17.61583,29.19432,3.737 2032,-10.642487,295.76355,40.080315,94.425964,3.699 2032,576.79706,171.55702,50.206482,138.80968,3.659 2032,481.53253,189.11975,42.154907,96.30728,3.615 2032,612.012,213.01387,36.75995,118.734116,3.613 2032,67.52702,-12.621199,16.20832,35.5428,3.584 2032,-4.9234467,199.65253,17.139366,43.985825,3.578 2032,10.207528,-15.900346,17.003086,40.1926,3.57 2032,499.7248,219.41281,32.90265,64.645905,3.564 2032,59.41347,-14.561485,15.946003,36.82461,3.563 2032,-1.0889196,-18.829943,26.203579,67.5363,3.544 2032,374.682,-33.885838,28.131592,76.0361,3.487 2032,521.7729,1.7693691,21.888367,44.744293,3.46 2032,78.56193,-31.43653,28.34108,69.5278,3.444 2032,217.64403,219.44753,19.356949,29.847824,3.417 2032,74.94538,-0.89190865,19.513268,34.56862,3.405 2032,405.17157,-34.74828,29.512634,71.19058,3.386 2032,537.2512,0.59757614,21.808472,45.709137,3.383 2032,-4.463991,291.13803,19.262493,47.496216,3.366 2032,349.87683,174.69858,51.601257,116.94272,3.345 2032,235.15088,220.21036,18.075531,26.344833,3.337 2032,82.70357,-11.603218,16.781029,34.375397,3.335 2032,294.40952,206.91629,30.247131,53.991608,3.32 2032,597.4119,198.50671,37.74115,112.568115,3.313 2033,-4.9036226,-17.402811,17.123377,41.260033,9.491 2033,-10.888119,-32.094078,28.974916,70.98561,7.172 2033,270.71204,228.11237,25.921143,41.58432,6.816 2033,-12.026623,478.58383,30.145435,63.051056,5.968 2033,622.8436,-34.21005,26.481567,76.049065,5.733 2033,627.3034,-18.027782,17.065125,45.891476,5.707 2033,626.47656,487.8543,21.01648,45.566956,5.618 2033,-6.2961617,489.83322,18.777428,41.673126,5.598 2033,490.49707,-181.4625,234.72723,430.56964,5.295 2033,585.79114,-97.30325,74.66101,229.3719,5.294 2033,613.18396,454.85785,38.850464,106.996765,5.228 2033,-20.14669,-88.22691,72.21402,197.97572,4.928 2033,-73.035515,265.5116,201.37292,462.2589,4.855 2033,3.2420564,-15.005153,16.225891,37.593082,4.839 2033,-40.502647,363.77606,111.50547,276.2381,4.812 2033,583.10315,410.89197,71.63403,177.55084,4.725 2033,603.12915,-57.09073,53.387085,135.46643,4.723 2033,379.5431,199.33603,30.201477,63.443665,4.666 2033,-36.117195,-131.47446,116.72617,279.38312,4.65 2033,536.7106,310.7566,142.4544,341.52063,4.636 2033,60.35533,260.3923,30.438461,60.79825,4.548 2033,-71.91184,-189.40454,212.74448,455.71835,4.462 2033,-17.973478,435.37045,55.62693,140.74942,4.396 2033,493.5886,227.09814,237.55838,515.3453,4.251 2033,226.6655,227.7973,19.295685,29.341644,4.169 2033,275.0558,212.36554,32.43286,61.447998,4.111 2033,594.4176,-46.755173,44.69873,97.11537,4.044 2033,308.39203,206.68533,32.03058,65.531586,3.884 2033,219.19395,235.65889,19.132492,28.36055,3.826 2033,10.4944515,-15.504652,16.495094,37.676476,3.805 2033,-5.2120695,81.37723,17.20111,39.462814,3.784 2033,211.56715,215.08197,18.19249,28.340698,3.772 2033,301.51953,-34.85658,28.885895,69.75505,3.708 2033,402.12906,191.25806,30.587677,80.73953,3.662 2033,-11.042879,343.19513,30.18726,71.63788,3.603 2033,76.16075,1.5590563,17.609123,30.805222,3.598 2033,619.54126,-18.277884,16.92102,42.84053,3.597 2033,618.1141,488.8511,21.395813,44.059174,3.593 2033,59.6827,-0.49097824,17.7855,32.152386,3.569 2033,306.2035,-14.068859,17.057373,35.90969,3.543 2033,-10.622722,244.27371,27.819927,68.55893,3.54 2033,11.135206,-18.786674,58.07229,134.5095,3.519 2033,314.09766,-15.006469,16.749878,35.76898,3.515 2033,-5.8877335,249.52705,18.313517,41.74315,3.514 2033,365.38373,202.04752,30.115204,60.605072,3.512 2033,59.251297,-14.130787,15.904831,34.943485,3.489 2033,299.07956,-15.35298,16.94101,37.457462,3.473 2033,-5.7351475,358.32785,19.160755,44.977356,3.455 2033,-4.9242625,-0.010417938,17.573479,42.612785,3.442 2033,51.770653,-0.8166666,17.727158,33.182068,3.428 2033,0.23334622,-18.086836,25.762566,66.98173,3.425 2033,196.4731,219.79239,15.644974,26.582214,3.378 2033,388.43933,217.24231,29.082184,63.01123,3.374 2033,-9.041848,-4.431061,39.056873,100.3627,3.361 2033,531.6111,-136.71365,115.39813,271.72708,3.348 2033,2.1609325,491.55133,19.224134,40.753723,3.333 2033,612.96515,364.0282,38.513428,112.9126,3.326 2033,43.020405,-14.204098,16.130993,36.021427,3.307 2033,-8.324253,277.5017,37.71224,102.69125,3.261 2033,12.9188385,340.30508,32.25588,77.20972,3.249 2033,213.35435,203.40028,38.665283,69.947556,3.246 2033,204.77512,214.99025,17.313934,27.69246,3.237 2033,-8.281402,357.00598,37.212456,103.80307,3.235 2033,351.27618,190.56293,52.631958,105.14508,3.231 2033,325.88437,-2.776907,30.420258,62.595543,3.218 2033,29.556273,-14.108631,29.206717,60.905174,3.217 2033,137.46724,-19.331144,18.513641,42.542213,3.208 2033,83.87323,1.0635176,17.148193,31.176376,3.187 2033,340.22427,-0.6918831,31.568665,70.964386,3.171 2033,235.74348,256.7563,17.80751,29.471191,3.138 2033,67.90191,0.02519989,17.541664,32.85206,3.123 2033,26.973639,-2.3832893,18.348093,35.44616,3.115 2033,228.58139,206.49948,38.415344,67.933716,3.113 2033,291.5369,-16.01321,16.630524,37.035187,3.108 2033,35.089268,-2.5200663,17.981392,35.008884,3.098 2033,203.00763,226.04956,17.95137,28.348206,3.096 2033,290.10593,211.85826,19.898834,35.559845,3.084 2033,51.46977,-13.290331,15.949993,34.42156,3.084 2033,75.80009,-13.407865,15.166702,34.11646,3.072 2033,322.65012,-14.790594,16.84616,35.88098,3.069 2033,83.51726,-12.936891,15.495346,33.860413,3.054 2033,546.58057,412.39728,83.43823,168.53339,3.05 2033,234.42264,236.24896,18.244461,28.562347,3.042 2033,67.589615,-12.967411,15.516701,33.98407,3.036 2033,283.31378,-17.783741,16.293274,37.787083,3.035 2034,70.421776,311.18726,34.16864,73.53381,12.079 2034,-4.6946626,-16.168056,16.507536,41.012493,7.802 2034,200.15717,217.72897,19.998535,35.673218,6.869 2034,-10.531494,-32.695126,29.34919,72.74029,6.213 2034,627.29553,-17.438152,17.020752,45.774845,5.784 2034,-8.896432,465.53802,37.69468,90.5813,5.768 2034,-6.2852693,489.5558,18.878746,42.46118,5.631 2034,622.9507,-34.197266,26.333435,76.31889,5.594 2034,626.53265,488.7627,20.799255,44.634583,5.577 2034,585.82825,-97.00926,74.53674,228.32887,5.376 2034,176.62848,229.46349,22.027527,32.50215,5.306 2034,194.42212,215.80365,31.726898,59.227173,5.224 2034,490.2081,-181.36288,235.3262,429.5475,5.211 2034,612.9713,454.5158,39.223816,107.912964,5.194 2034,179.02957,220.29482,33.317596,52.78987,5.128 2034,184.96768,229.7865,22.210052,34.6792,5.101 2034,-20.179192,-87.23222,72.165726,196.07265,5.002 2034,3.7843437,-12.778821,15.174076,36.76558,4.939 2034,193.17728,228.07382,21.64412,34.505707,4.905 2034,583.1839,411.5955,71.49194,176.61118,4.873 2034,603.10657,-57.509865,53.093933,134.95506,4.792 2034,268.67432,223.28346,31.907104,61.380722,4.791 2034,-22.070845,401.81677,79.95448,175.1773,4.773 2034,-36.321243,-130.35298,116.60254,277.25006,4.741 2034,-72.8027,266.348,200.58298,461.2858,4.735 2034,536.6622,311.50073,142.57703,340.89832,4.593 2034,-71.81821,-189.92696,212.65059,456.59534,4.563 2034,362.44727,-16.363356,16.924194,39.767326,4.359 2034,594.2567,-46.00609,44.581238,95.22982,4.313 2034,207.47261,214.1271,19.261719,32.28923,4.309 2034,493.51578,226.42575,237.78421,515.49756,4.286 2034,454.88828,244.72217,31.274414,64.4837,4.245 2034,202.80402,208.57018,19.304764,28.723007,4.197 2034,10.991125,-13.184493,15.571371,36.74321,4.074 2034,169.70804,220.39365,22.86293,30.857925,4.047 2034,357.4789,-16.43069,30.200256,67.30094,4.017 2034,164.2663,222.21008,32.22563,47.751587,3.953 2034,26.9245,-13.47653,15.90242,39.005466,3.897 2034,354.91946,-15.153257,16.453796,38.51505,3.88 2034,218.96257,218.22371,16.841385,28.627136,3.829 2034,-4.556815,0.6407757,16.561138,41.242683,3.773 2034,619.78156,-16.977364,16.494202,41.49615,3.77 2034,-9.508455,-18.925676,38.921364,98.52888,3.76 2034,34.996223,-13.432745,16.231136,38.51016,3.708 2034,3.819362,0.96064186,18.135279,40.796394,3.603 2034,209.45468,230.4126,19.390976,33.571106,3.599 2034,618.5354,490.1896,20.450073,41.944794,3.59 2034,227.10516,218.8899,16.477509,27.284134,3.561 2034,11.537178,-0.2211132,17.389767,34.048393,3.537 2034,236.08301,212.78241,16.45787,29.129532,3.53 2034,211.89577,202.93152,38.82773,71.18982,3.467 2034,366.60904,-35.30148,28.160889,75.92132,3.424 2034,203.56393,224.13626,31.937988,59.572662,3.409 2034,2.214363,491.15024,19.40525,41.272186,3.407 2034,10.988126,-32.36022,58.032238,128.98917,3.404 2034,346.83286,-16.188915,16.231598,39.35534,3.37 2034,-6.0781646,330.54593,17.754099,39.428406,3.368 2034,370.56424,-16.069101,17.07901,39.404163,3.367 2034,-4.8992434,347.76392,16.125349,35.37555,3.359 2034,531.7367,-136.34276,114.83502,270.59613,3.351 2034,44.63135,236.99323,31.41988,65.79071,3.335 2034,465.48843,239.64262,32.59091,61.813614,3.329 2034,5.3767276,468.04672,38.119366,94.25784,3.322 2034,349.60538,-3.6118813,30.274109,64.768654,3.309 2034,428.0216,-4.7557993,17.565552,36.464634,3.303 2034,126.574524,278.9723,33.72821,72.98132,3.283 2034,41.94339,-38.453773,60.34546,128.56796,3.282 2034,490.87616,-39.142254,59.921143,130.31711,3.262 2034,444.02164,-3.4859152,17.450653,34.830715,3.251 2034,615.4835,-21.371805,26.500061,71.43016,3.25 2034,19.23197,-12.597709,15.6679325,37.049377,3.242 2034,459.4063,-2.9670563,18.66156,34.88409,3.241 2034,528.48145,-41.842552,46.92621,93.51245,3.235 2034,436.21228,-4.0996237,17.144836,36.269146,3.231 2034,461.6172,-14.051172,29.888702,60.818077,3.184 2034,411.4989,200.14438,53.786255,121.78064,3.18 2034,7.0688057,-18.12492,26.61559,66.76189,3.177 2035,-4.9581904,-16.529219,17.456123,42.489876,7.976 2035,-10.685284,-32.900303,29.771654,73.13992,6.844 2035,308.19638,206.71063,31.699066,60.092896,6.637 2035,2.707675,-13.911947,16.675774,39.946373,6.003 2035,-17.624004,-61.82331,56.458717,140.6006,5.885 2035,-8.960284,464.17407,37.653282,92.02124,5.745 2035,626.5973,488.034,20.672302,45.174805,5.718 2035,622.9828,-34.34342,26.176208,76.36082,5.684 2035,612.76544,454.261,40.026855,108.3902,5.564 2035,530.4785,149.2277,49.296326,128.10365,5.507 2035,-6.1022353,489.79694,18.505266,42.096436,5.501 2035,627.48663,-18.575941,16.648254,46.35611,5.467 2035,490.076,-180.43399,235.37573,429.28113,5.256 2035,523.3472,133.18146,78.62439,207.55084,5.212 2035,106.15706,307.7667,32.332565,61.69052,5.054 2035,-36.22925,-128.9381,116.57364,275.18863,4.975 2035,585.7479,-96.49371,74.407166,228.64429,4.972 2035,-1.3613164,238.77623,28.272976,64.69566,4.951 2035,-73.15418,265.45087,201.44562,462.8017,4.918 2035,282.48532,221.42941,32.322388,61.54019,4.903 2035,536.7267,310.37372,142.44885,342.2674,4.898 2035,582.8205,411.73962,72.01105,176.79456,4.844 2035,11.0543585,-29.77665,57.43399,125.37222,4.793 2035,602.9075,-56.455715,53.52185,136.46364,4.769 2035,-22.148607,400.87915,79.730934,175.8479,4.747 2035,159.40146,116.12317,21.537811,36.21402,4.661 2035,322.2916,210.0942,40.72531,78.06633,4.539 2035,83.85522,239.90863,35.273872,71.69928,4.538 2035,337.49603,214.5406,22.696411,46.04033,4.525 2035,-71.41563,-189.06671,212.17615,456.25003,4.478 2035,-4.882889,0.84690094,18.37367,41.30317,4.463 2035,-6.04336,271.03342,19.144781,40.788483,4.461 2035,494.3442,227.86862,237.47641,514.52966,4.416 2035,496.5665,152.2424,47.129486,116.62961,4.356 2035,1.8930244,-38.064743,43.1348,95.70543,4.274 2035,43.34679,223.88802,32.04491,63.21904,4.27 2035,9.868383,-1.8318806,20.59979,38.10814,4.215 2035,594.09393,-45.18579,44.920593,97.723045,4.205 2035,2.2002494,11.825893,20.911695,44.896866,4.188 2035,298.6358,234.49295,20.685455,38.618958,4.187 2035,293.33002,214.82445,31.71634,58.92546,4.172 2035,51.647533,234.2617,41.001698,74.74748,4.164 2035,59.519592,219.7934,55.878143,107.97516,4.137 2035,4.9862337,-4.11952,29.270023,60.854805,4.099 2035,537.52216,136.99423,40.787903,85.00717,4.046 2035,339.24988,210.72192,40.401245,81.05295,4.035 2035,395.26886,-17.891151,17.887695,39.161003,4.01 2035,492.20657,-3.3914232,18.160675,35.063095,3.99 2035,619.6798,-17.75849,16.7146,41.89084,3.969 2035,90.80287,217.07628,58.30243,108.75908,3.939 2035,302.27145,198.6915,50.985962,94.51309,3.888 2035,114.636765,236.38345,33.978058,69.56915,3.875 2035,127.67702,238.84691,23.935059,42.16057,3.874 2035,513.06226,159.17566,48.614746,123.57379,3.85 2035,35.381077,239.88881,42.111134,76.92265,3.838 2035,618.61395,489.07996,20.62445,43.517456,3.817 2035,427.1668,-2.1857815,19.735779,36.42321,3.815 2035,12.417164,228.50937,53.74074,106.717224,3.784 2035,169.3757,186.67319,60.184113,97.52402,3.782 2035,171.90788,223.72528,17.65329,29.481873,3.749 2035,-1.6045117,-15.586103,27.7082,62.480156,3.747 2035,9.825736,-15.486362,17.461239,39.947617,3.747 2035,347.94357,175.88367,54.80945,116.12268,3.708 2035,475.46432,-3.4782114,18.581055,37.505497,3.697 2035,508.15005,-0.71479607,17.33133,32.882256,3.692 2035,523.9596,151.15982,35.370728,86.271194,3.677 2035,43.020317,-31.793762,57.269485,126.423004,3.674 2035,364.83362,-18.12663,31.10147,67.65536,3.66 2035,500.4645,-2.018837,17.236542,34.01938,3.657 2035,177.09093,214.5711,20.488434,33.076538,3.639 2035,568.6885,145.05174,55.249268,162.74806,3.637 2035,-5.379636,233.69412,17.559715,41.539276,3.624 2036,-5.721739,-17.424942,18.32745,41.952248,8.179 2036,-10.835604,-32.007374,29.251057,71.40697,7.112 2036,-18.202478,-62.815323,56.467613,142.66168,6.027 2036,-6.2042513,489.9978,18.957027,42.57837,5.984 2036,146.4299,240.45567,32.73407,73.16524,5.905 2036,627.21344,-17.358595,16.983276,45.949383,5.746 2036,-11.867891,478.5388,30.137747,62.71579,5.615 2036,622.795,-33.609642,26.490051,76.531876,5.586 2036,32.557518,268.84674,38.56343,75.04892,5.334 2036,613.0656,453.1289,39.496033,109.712036,5.239 2036,626.6183,487.8799,20.866821,45.900604,5.232 2036,490.41263,-180.55252,235.38113,426.85602,5.101 2036,-72.54266,265.81696,201.01825,461.71967,5.003 2036,-36.34866,-129.8724,116.66832,277.435,4.911 2036,583.07214,410.32266,72.01196,177.85294,4.886 2036,585.7537,-98.603455,74.95599,231.53569,4.844 2036,603.2012,-57.470947,53.481262,136.491,4.715 2036,11.425047,-31.340944,56.97779,126.315506,4.697 2036,-21.872143,402.06586,79.724976,175.18872,4.696 2036,536.53766,311.4914,143.0315,340.61115,4.679 2036,-5.5772805,1.5163975,18.946274,42.068573,4.625 2036,3.1620364,-2.3906765,19.007563,37.942398,4.612 2036,124.05982,232.07068,33.102882,59.432495,4.595 2036,317.06018,202.54523,29.61316,64.45276,4.542 2036,-71.41345,-189.05252,212.50122,456.361,4.412 2036,493.3429,225.9819,238.20166,515.7986,4.357 2036,618.46246,489.5553,20.737488,42.894897,4.156 2036,593.9106,-46.10472,45.20807,96.63246,4.098 2036,44.862595,262.93805,27.399574,44.72284,4.047 2036,132.71445,238.99525,33.350937,69.809006,4.02 2036,620.02234,-16.739681,16.56372,41.91818,4.017 2036,505.99188,-17.237486,18.96289,39.75341,3.885 2036,502.2796,-34.481388,28.942017,71.39261,3.877 2036,426.9296,-15.880107,16.626251,37.079742,3.863 2036,491.7541,-16.840826,34.12964,61.54184,3.834 2036,329.53006,186.72833,58.285248,109.62274,3.819 2036,505.2194,250.37662,52.721893,123.65573,3.793 2036,353.63675,220.94035,22.710236,42.46718,3.788 2036,275.99963,220.52164,31.131073,55.953217,3.774 2036,120.970955,247.91296,22.720482,39.976257,3.752 2036,144.80122,218.25856,44.216537,75.20201,3.751 2036,411.33154,-13.900679,15.863403,36.03534,3.736 2036,462.7743,-39.891945,48.984985,88.64073,3.73 2036,419.5578,-14.090505,15.530945,35.730648,3.7 2036,178.56932,200.7384,42.700287,69.985016,3.676 2036,90.83233,211.18065,56.200005,108.40053,3.655 2036,126.67587,220.77647,56.107468,104.82359,3.653 2036,-9.092673,-4.9268723,39.14486,97.84224,3.591 2036,1.6446614,-39.747627,43.570393,96.002396,3.576 2036,75.06508,-3.2489882,19.63533,34.50767,3.573 2036,211.93634,198.64224,41.209686,69.4249,3.544 2036,362.1669,-4.940095,20.905365,41.315193,3.541 2036,234.81326,216.39963,19.224594,31.033142,3.51 2036,248.51096,209.49796,21.988922,34.599335,3.494 2036,431.3302,-39.668087,48.602478,90.58141,3.479 2036,363.88135,-17.588017,31.950592,65.26334,3.454 2036,242.04958,214.50276,21.229965,34.91368,3.443 2036,220.98886,179.95825,53.870758,101.568726,3.441 2036,240.47363,230.77866,24.175842,34.518066,3.431 2036,10.331026,-15.338298,17.414955,38.407562,3.411 2036,194.4672,202.06172,42.618866,66.75136,3.4 2036,443.21527,185.91238,30.552917,83.6926,3.382 2036,65.16175,241.91203,44.69577,76.97334,3.368 2036,43.16353,-32.96826,57.80152,125.64877,3.329 2036,331.2428,219.23083,31.961578,58.01947,3.317 2036,11.470461,243.19695,72.83496,185.03584,3.316 2036,430.37918,-33.40747,28.641785,72.41794,3.285 2036,341.46774,208.72137,32.066772,61.248962,3.283 2036,399.60992,-39.77869,47.638306,93.12917,3.269 2036,99.86703,233.88043,32.582985,61.487793,3.262 2036,47.883575,279.1362,35.561462,66.783295,3.247 2036,-0.99549174,-16.678156,27.500637,64.88737,3.242 2036,500.46503,103.304565,43.43457,97.77658,3.241 2036,163.08517,247.21664,32.17842,67.00836,3.238 2036,82.42714,-4.075145,19.433258,35.904934,3.236 2036,236.76369,203.13339,31.634323,54.51471,3.233 2036,242.83673,205.93097,41.730164,71.563354,3.226 2037,-5.9521155,-17.740454,18.963314,44.66309,6.725 2037,140.35086,216.81139,32.934845,61.807297,6.104 2037,-6.091359,489.81143,18.579884,42.007843,6.036 2037,-10.332136,-32.425465,29.73192,74.61307,6.021 2037,-8.879822,464.17465,37.841408,92.72,5.54 2037,-17.553516,-63.08315,56.235233,142.21942,5.437 2037,622.6968,-33.153427,26.759277,75.704994,5.39 2037,585.66315,-97.110855,74.52496,230.4491,5.358 2037,613.2228,454.31943,39.559937,107.36844,5.336 2037,78.44221,258.93,37.78331,65.9252,5.334 2037,627.25854,-17.578371,17.023743,46.215122,5.325 2037,490.04144,-180.81847,235.5647,430.35867,5.199 2037,-72.73042,264.84598,201.25803,462.8491,5.167 2037,135.6708,212.94737,25.67305,41.951294,5.101 2037,626.39856,488.0037,21.041077,45.529938,4.98 2037,603.1333,-57.52197,53.34497,134.01233,4.939 2037,583.2489,410.34576,71.541626,177.61505,4.868 2037,124.53195,217.03223,32.51915,58.999023,4.783 2037,-21.822018,402.4468,79.49654,174.89804,4.741 2037,536.5282,310.82373,142.73578,341.64423,4.713 2037,-36.549,-129.60405,116.85655,277.87332,4.691 2037,377.64355,219.10768,23.55545,41.754196,4.615 2037,-70.88689,-189.46574,212.27415,457.3714,4.545 2037,152.17252,215.93759,23.042053,38.692657,4.421 2037,136.55054,283.58386,22.258575,39.763397,4.4 2037,493.1656,225.79398,238.24994,516.1354,4.346 2037,11.232388,-31.02053,57.215343,128.72054,4.259 2037,162.39134,219.43242,31.70253,65.346695,4.259 2037,593.681,-45.976654,45.18744,95.132935,4.201 2037,316.92868,-35.787205,29.5018,76.55026,4.089 2037,113.464516,230.1341,44.39193,73.97699,4.027 2037,-9.232727,-6.854,39.739258,100.01605,3.975 2037,473.8313,195.97215,29.706604,83.70506,3.954 2037,121.936104,232.6316,21.907188,37.261215,3.92 2037,123.957,219.39633,56.554245,99.593506,3.897 2037,146.39124,227.70676,43.822693,73.236694,3.852 2037,90.049805,223.56091,58.348373,98.925964,3.809 2037,132.31293,267.99182,32.703217,60.33194,3.759 2037,212.57841,216.1663,15.025009,27.283676,3.736 2037,1.4956975,-40.16973,43.446167,97.95183,3.718 2037,1.9905055,-16.486073,18.618425,43.30479,3.714 2037,524.51385,-2.0256872,17.143982,34.28432,3.685 2037,340.86523,-18.827435,31.029755,65.765724,3.674 2037,619.54205,-16.71826,16.828186,41.519875,3.666 2037,491.71722,-3.221407,18.088257,38.147957,3.657 2037,-5.5612507,-1.22122,19.67821,47.061707,3.649 2037,508.2942,-3.1979408,17.358765,36.451427,3.63 2037,41.50464,181.26932,34.663063,66.22742,3.604 2037,475.8208,-2.1824799,17.788483,35.270107,3.588 2037,112.53365,241.41064,22.661537,35.32367,3.567 2037,42.503098,-37.246704,58.331833,133.21754,3.505 2037,129.59628,239.42966,21.093567,35.986755,3.495 2037,73.75412,202.80493,59.863876,107.741394,3.476 2037,531.9662,-136.28339,114.75171,272.00336,3.426 2037,365.29114,222.75275,32.87549,61.54413,3.411 2037,516.282,-2.5513725,17.196167,35.586014,3.409 2037,330.10168,-19.798166,18.666565,43.450188,3.39 2037,83.1451,228.68835,34.36721,55.24817,3.389 2037,2.2416587,491.20142,19.602816,41.04065,3.38 2037,155.57957,215.6039,58.02031,105.097824,3.364 2037,321.55835,-17.747562,19.30252,42.129204,3.36 2037,40.719627,212.29588,22.760803,38.59433,3.337 2037,177.67775,215.96957,43.29712,71.43283,3.324 2037,460.59064,-2.0406313,17.120575,34.248257,3.313 2037,-5.6070023,126.62598,17.790667,44.59015,3.294 2037,103.16296,241.53116,23.960495,37.02887,3.281 2037,444.05307,-2.8418121,18.345032,37.014694,3.263 2037,-9.816207,118.67024,39.703156,102.81392,3.263 2037,204.44135,217.6268,15.521103,27.16188,3.225 2038,104.86141,252.31061,35.69677,60.7677,9.294 2038,-5.1733084,-17.789202,17.184967,42.10127,8.45 2038,-10.863792,-32.211365,29.359806,71.683235,6.368 2038,-12.177376,478.4354,30.618708,62.63913,6.031 2038,-6.2673607,490.0653,18.922108,41.588257,5.886 2038,3.5029716,-15.503397,16.585754,38.86095,5.845 2038,627.2733,-17.94863,16.989624,46.58587,5.568 2038,585.81256,-97.403,74.77649,230.26013,5.289 2038,613.01825,454.44153,39.807922,107.558105,5.241 2038,490.16504,-180.8569,235.35425,429.56073,5.203 2038,114.87954,219.27301,30.284996,54.112152,5.177 2038,-17.355753,-63.400517,56.005882,145.87975,5.133 2038,610.8282,-48.458973,41.66461,100.333496,5.129 2038,-72.53781,266.25763,200.91057,462.25958,5.063 2038,148.41452,249.18126,33.01552,63.055923,5.012 2038,583.0233,411.05664,71.82904,177.42365,4.942 2038,626.3228,487.46936,21.393127,45.958984,4.807 2038,536.5731,310.9123,142.84058,341.61304,4.803 2038,-21.826735,402.16135,79.59143,175.49881,4.723 2038,129.013,225.68547,20.576523,38.447067,4.68 2038,164.6948,250.78246,30.533691,68.60518,4.653 2038,10.705423,-16.65319,17.006247,39.303,4.575 2038,-36.610756,-130.33762,117.48737,278.43497,4.549 2038,160.9556,275.59595,21.623749,39.372437,4.508 2038,113.114555,222.00146,21.177574,38.435272,4.491 2038,-70.7897,-187.68466,211.54042,455.24872,4.46 2038,181.1783,244.05466,31.61818,67.16223,4.381 2038,493.48737,225.8258,237.93225,516.43713,4.349 2038,316.2831,36.11064,30.73761,73.38559,4.293 2038,111.44471,238.82129,23.848167,42.0979,4.148 2038,154.62775,284.56207,20.983215,32.69641,4.054 2038,173.13522,230.28679,31.736267,66.56624,3.918 2038,101.65421,222.76703,31.148796,62.374725,3.874 2038,120.43413,239.16776,34.29071,61.94812,3.827 2038,5.955212,-34.63376,27.689785,71.61913,3.691 2038,2.0688457,491.38528,19.644873,41.20877,3.576 2038,619.5301,-17.72019,16.555908,42.859825,3.508 2038,137.06082,235.76067,21.982208,39.8687,3.466 2038,435.71902,231.18161,31.318176,73.12512,3.446 2038,18.983242,-17.092106,16.974518,38.84108,3.432 2038,166.7265,219.69194,28.75528,58.580795,3.415 2038,107.40384,227.0841,20.368408,38.198975,3.399 2038,618.1818,489.542,21.048828,42.568237,3.387 2038,301.64893,32.385616,31.191925,77.383545,3.38 2038,74.97582,-15.111124,16.21064,38.453873,3.375 2038,139.79816,239.52896,31.893799,62.06378,3.375 2038,191.9947,236.93811,24.559921,41.224243,3.36 2038,362.597,-15.373607,16.332703,39.882347,3.336 2038,108.22473,219.03227,54.039093,103.497635,3.329 2038,532.0155,-136.49713,114.90436,272.2328,3.293 2038,282.9278,-17.720932,57.18689,125.94771,3.262 2038,150.30338,215.87048,28.01773,57.459717,3.25 2038,-4.773798,2.5010548,17.177822,40.126747,3.2 2038,153.63544,249.93983,23.15953,39.70015,3.186 2038,10.636442,-28.700092,59.2073,130.2834,3.185 2038,558.67786,-34.641003,27.795227,68.44543,3.18 2038,268.34775,-14.517044,31.336304,71.430145,3.173 2038,331.0431,-28.378551,57.933502,128.52,3.167 2038,138.38786,221.09206,18.922302,38.050217,3.164 2038,-5.968522,39.228027,17.903255,42.406693,3.15 2038,184.05414,230.55298,22.945312,37.398743,3.144 2038,-5.222083,168.1475,17.057419,42.54387,3.1 2038,82.84427,-14.55954,16.127563,36.939472,3.096 2039,118.810974,250.17403,27.867554,52.410873,6.979 2039,-5.482563,-17.370548,17.85259,42.5535,6.776 2039,-11.930952,477.5071,30.129358,63.451813,6.205 2039,-6.2256174,488.99365,18.888493,42.819275,5.998 2039,-10.697417,-33.147163,29.402397,74.63354,5.817 2039,627.20044,-17.833683,17.259033,46.65153,5.605 2039,613.17175,453.86462,39.07019,108.43213,5.473 2039,-17.712322,-64.12827,56.1672,143.64731,5.423 2039,489.71832,-182.58505,235.81384,430.40186,5.407 2039,156.74556,240.9411,32.160004,62.599,5.349 2039,626.477,487.29886,20.961975,46.021088,5.159 2039,611.4234,-48.347977,41.927124,104.50936,5.094 2039,-72.28728,266.50787,199.97018,461.72974,4.985 2039,536.67365,309.6275,142.80908,342.30157,4.906 2039,-36.511948,-130.41301,116.81018,278.24057,4.835 2039,-21.730833,403.07718,79.24499,174.26266,4.743 2039,582.8628,410.1504,71.84546,178.37463,4.703 2039,11.877253,-31.1264,56.44481,125.98158,4.573 2039,180.7325,225.21619,31.283936,63.980225,4.541 2039,-70.919044,-188.76425,212.0881,456.44873,4.471 2039,493.3532,227.55627,238.0711,515.33954,4.376 2039,358.77484,-34.673225,28.033386,76.8812,4.358 2039,168.62062,256.31375,23.053818,45.2919,4.234 2039,561.11334,-128.86568,113.9787,284.88766,4.226 2039,55.14438,-33.25605,28.461212,72.25971,4.097 2039,566.6614,-34.435528,28.959717,73.90729,4.08 2039,594.1059,-43.196136,45.42737,103.7856,4.072 2039,119.40042,212.18246,28.441254,57.066925,4.07 2039,574.1238,255.52307,53.540955,134.98743,3.962 2039,2.7439756,-16.133068,16.84222,41.50002,3.915 2039,364.82446,-19.05276,32.256165,69.46361,3.865 2039,-5.5716205,39.551003,18.197424,43.439842,3.861 2039,127.75998,245.35594,34.597183,65.20647,3.821 2039,42.15835,-15.326244,17.526665,37.4752,3.797 2039,613.10876,60.357494,37.695984,115.79147,3.796 2039,313.27094,225.53314,22.11914,43.524445,3.771 2039,-9.582897,-5.8583755,40.229008,97.9866,3.761 2039,-5.0547957,247.21814,16.23032,39.779785,3.757 2039,612.0899,327.2958,38.40265,116.33789,3.742 2039,131.76515,217.26585,39.743713,72.452774,3.741 2039,2.1122837,490.8817,19.276506,41.26129,3.725 2039,40.9253,-1.8911343,22.688408,47.531326,3.709 2039,42.25818,-33.408783,57.901314,126.32588,3.698 2039,1.5659738,-40.89673,44.022205,98.369675,3.688 2039,236.05194,4.3998528,32.253418,75.42424,3.684 2039,331.0011,-4.6362324,20.34201,41.631577,3.634 2039,381.4778,-34.37008,29.260468,75.548965,3.634 2039,106.2595,217.6321,18.830238,34.508102,3.602 2039,193.65375,217.36215,41.001404,75.82025,3.583 2039,163.54095,217.92258,40.762177,74.700836,3.582 2039,265.65607,-40.15158,59.59085,132.59024,3.566 2039,596.1005,55.900803,39.91974,107.88913,3.562 2039,572.4606,46.87548,54.26294,155.6195,3.557 2039,173.5463,244.60663,30.840363,66.16254,3.509 2039,-5.186078,0.64032745,18.644176,44.300545,3.503 2039,466.8647,69.923096,34.554993,78.1344,3.494 2039,45.2089,-11.596968,31.358147,58.681892,3.493 2039,618.41614,488.74576,21.006409,43.70224,3.451 2039,50.771564,-14.661159,17.56792,37.17544,3.448 2039,460.23798,-2.22859,17.195465,35.493904,3.447 2039,234.31938,-31.730751,59.504013,128.90633,3.44 2039,235.85214,217.85918,17.29889,27.480423,3.437 2039,283.03998,-5.784071,19.584656,39.834427,3.433 2039,582.409,-55.221287,70.69647,206.17813,3.422 2039,59.087795,229.37758,17.79343,29.658676,3.411 2039,58.552498,-14.815384,17.797508,37.205425,3.408 2039,554.27045,-16.671333,17.22528,37.97199,3.402 2039,589.08484,281.48438,51.279602,144.90814,3.394 2039,403.78894,-4.155636,30.939728,68.33447,3.391 2039,388.06293,-2.9496517,32.26242,65.106384,3.389 2039,507.0749,-14.633639,16.381165,38.524612,3.378 2039,57.62485,0.7718563,23.655453,43.837234,3.349 2039,580.3927,-34.83292,30.22284,77.09468,3.333 2039,336.90945,178.05194,35.926056,66.13042,3.321 2039,43.109756,232.73833,18.17126,29.576523,3.313 2039,578.1889,-16.5562,18.639648,39.44581,3.306 2039,-9.953422,213.30539,38.913857,102.28995,3.299 2039,34.481094,-13.857708,17.165947,37.509373,3.299 2039,354.3608,-18.409407,18.249542,43.30051,3.293 2039,459.39304,-32.611717,58.747772,130.80165,3.291 2039,124.24122,-34.310272,30.048882,73.62086,3.29 2040,187.99055,228.68855,29.907776,67.25395,9.913 2040,-5.28702,-16.946976,17.810568,42.02279,8.956 2040,-10.855989,-31.500362,29.122984,72.02936,6.668 2040,168.08347,244.65224,25.199585,48.669754,6.364 2040,2.5589955,-14.1310215,17.018084,38.861168,5.841 2040,-6.200152,489.2685,19.098974,42.397095,5.727 2040,-12.223942,477.65576,30.66777,63.62268,5.523 2040,174.1547,231.34967,32.626846,63.437134,5.485 2040,613.2031,453.87885,39.17334,108.14038,5.415 2040,585.7537,-97.88251,74.56036,230.87701,5.367 2040,490.37195,-181.2497,235.16443,430.75873,5.344 2040,610.5495,-47.690422,42.171326,99.28244,5.204 2040,627.1784,-18.05227,17.26532,46.406113,5.179 2040,129.43968,239.3452,34.165985,55.25273,5.132 2040,-72.75981,265.4046,200.83725,462.79437,5.127 2040,379.2906,201.3776,32.924072,58.892822,5.084 2040,583.3596,409.67017,71.46393,178.09589,4.922 2040,626.55383,487.67554,20.928467,45.92511,4.849 2040,-20.244131,-88.56857,72.02533,197.99905,4.813 2040,-21.823593,402.25436,79.43835,175.23184,4.759 2040,536.54156,311.43658,142.47614,341.58405,4.632 2040,-37.115566,-130.12169,116.94997,280.49146,4.581 2040,73.07082,221.13809,23.780281,37.784058,4.54 2040,42.050022,2.3842373,21.280304,39.22824,4.526 2040,312.04642,222.04042,23.81543,43.70372,4.518 2040,-70.75758,-189.02255,211.96242,455.91125,4.502 2040,-10.064087,-21.291073,39.184364,100.93367,4.485 2040,50.230186,215.7167,32.69236,53.649475,4.459 2040,10.03991,-3.965746,19.76387,40.58587,4.441 2040,151.75845,247.74786,25.564392,44.797485,4.43 2040,142.1498,241.98798,27.087753,43.556885,4.251 2040,493.19403,226.33899,238.19415,516.3997,4.239 2040,47.60388,228.97179,23.276512,37.33806,4.197 2040,301.3755,206.59956,29.580383,63.970016,4.146 2040,227.58075,216.15407,18.222778,30.5298,4.136 2040,-5.472065,186.23056,18.076057,42.70009,4.05 2040,49.861717,2.0241985,22.031868,38.50199,4.046 2040,235.48264,216.00601,17.7249,29.707901,4.044 2040,306.26804,181.59756,33.301086,60.71393,4.002 2040,195.71371,204.93195,39.991257,77.55414,3.997 2040,2.7289777,-0.35061455,19.270267,45.81436,3.929 2040,-5.0864553,204.45726,17.69202,39.439972,3.923 2040,26.913282,-3.4784536,19.708231,38.180138,3.881 2040,5.921384,-32.459934,28.055893,72.22264,3.843 2040,175.44238,217.91675,50.579712,103.74762,3.753 2040,-9.531665,120.004974,38.87728,101.70874,3.734 2040,-4.981057,-0.50608826,17.7785,44.592377,3.73 2040,0.522027,222.2328,25.436203,60.34468,3.724 2040,316.39896,169.45303,33.072296,63.812332,3.708 2040,540.3918,-2.7423525,17.131348,36.352215,3.698 2040,-4.7779083,219.80255,17.810272,37.762665,3.659 2040,202.09448,-5.9978247,20.853333,41.673397,3.636 2040,228.2026,8.903721,32.161682,76.10341,3.61 2040,619.12744,-5.0056744,19.166748,41.0999,3.609 2040,198.55814,229.20596,23.638184,42.115204,3.568 2040,10.158911,-33.482613,58.795273,137.4906,3.563 2040,185.11258,226.61276,24.502869,47.532013,3.557 2040,-5.525863,121.39523,17.84217,41.19757,3.526 2040,292.2169,-16.583271,31.654694,67.78911,3.514 2040,37.31899,222.45071,30.757473,55.130768,3.512 2040,212.35954,199.62997,38.20244,77.23187,3.503 2040,33.87608,1.711813,21.402851,40.705536,3.494 2040,18.484785,-4.1039658,19.72988,40.314972,3.492 2040,63.957195,221.937,25.310078,41.721695,3.456 2040,95.97858,214.09973,21.134644,36.18666,3.434 2041,2.5093746,218.39966,22.208803,55.256226,12.567 2041,196.69345,231.17813,29.592697,58.425903,7.84 2041,-5.4223537,-17.451834,17.549786,43.153114,7.686 2041,132.81583,239.1698,32.86502,52.1084,6.769 2041,-6.1822557,489.0933,18.945053,42.369293,6.422 2041,12.368448,207.41316,30.463118,58.983566,6.279 2041,-12.661449,477.8356,31.224024,62.592133,6.253 2041,181.76125,225.04176,32.018677,64.30357,6.175 2041,-4.727638,217.91656,19.34552,45.65689,6.098 2041,627.07874,-17.798454,17.403687,46.994953,5.782 2041,622.4403,-33.559593,26.9375,76.81785,5.735 2041,-10.841894,-32.78015,29.499193,73.80893,5.732 2041,149.7854,241.03531,26.729156,44.356262,5.652 2041,585.6424,-96.2169,74.52191,228.78246,5.56 2041,613.0985,454.04532,39.775513,107.95181,5.427 2041,490.02917,-181.25642,235.39478,430.41122,5.305 2041,-73.157005,265.36203,201.45447,462.87894,5.193 2041,626.44354,488.25092,21.405823,45.506042,5.095 2041,602.8813,-56.770653,53.544495,135.74896,4.951 2041,583.2472,410.51712,71.42639,177.40958,4.949 2041,-17.510456,-64.95185,55.637875,147.52872,4.924 2041,-21.846386,402.19437,79.533295,175.28116,4.843 2041,173.74387,234.47699,30.273865,63.16455,4.798 2041,3.690577,-14.20439,15.932873,39.36511,4.699 2041,536.6454,310.9184,142.62085,341.872,4.639 2041,27.605553,202.28976,32.238464,58.075806,4.627 2041,154.31592,240.24187,34.830536,57.175278,4.545 2041,619.2245,-17.185156,17.4693,43.64315,4.506 2041,168.5359,243.52368,25.669037,46.68805,4.478 2041,-70.945435,-188.95296,211.93346,455.9956,4.369 2041,-37.395798,-131.65526,117.694374,283.71976,4.367 2041,493.26227,226.55673,237.84552,515.8522,4.294 2041,300.58344,215.21895,30.52594,66.86522,4.283 2041,593.93604,-44.66523,45.21942,95.70166,4.197 2041,-5.3346186,204.19397,17.757408,42.086853,4.191 2041,227.30841,221.58037,17.58171,29.1819,4.119 2041,260.22662,222.82684,31.720123,57.375427,3.926 2041,43.668095,197.60909,31.397717,55.493027,3.907 2041,236.05017,224.19061,17.305084,30.772736,3.884 2041,331.4252,-15.219161,16.30014,36.798153,3.864 2041,-9.990612,191.30183,29.699629,68.8654,3.818 2041,10.555926,-15.783695,16.487244,39.776142,3.798 2041,-5.3723044,185.10146,17.237667,43.915665,3.795 2041,27.326193,-15.374738,16.108683,38.393566,3.775 2041,307.032,197.79303,30.394287,66.88934,3.738 2041,-5.089484,0.21053886,17.157618,44.344597,3.706 2041,617.9833,489.89648,21.362732,42.856567,3.666 2041,-5.5698547,203.53215,36.660385,92.50276,3.657 2041,199.83421,227.23032,21.699905,33.501495,3.627 2041,341.79916,-33.00837,28.59842,66.69297,3.617 2041,9.620862,190.55682,55.895588,99.61371,3.567 2041,338.86368,-16.016193,17.315338,37.98814,3.556 2042,-4.8303766,-17.009823,16.64957,41.649326,9.143 2042,-10.351095,-31.388464,28.497679,70.36428,6.947 2042,-6.3311253,489.04413,19.140022,42.557983,6.58 2042,212.98119,230.32185,27.678223,56.37584,6.149 2042,-12.687738,476.94507,31.105692,63.734375,6.054 2042,3.907259,-13.327041,15.160851,36.85349,5.977 2042,627.31726,-17.849606,16.979492,46.147545,5.854 2042,-5.5030704,33.070312,18.144514,38.486298,5.28 2042,585.51385,-96.223495,74.789795,229.00517,5.248 2042,613.2506,454.28717,39.57483,107.62891,5.231 2042,490.03467,-180.52457,235.24945,429.06293,5.229 2042,-72.74573,265.7459,200.9328,461.81232,5.075 2042,622.78595,-33.637833,26.451782,76.03683,5.063 2042,-20.335424,-88.02745,72.2488,197.22963,4.98 2042,583.0641,410.67944,71.7666,177.34827,4.929 2042,470.67688,-2.3826294,63.11194,109.285576,4.919 2042,-22.03978,401.7063,79.666985,175.49036,4.836 2042,626.3026,487.70972,21.21637,46.443542,4.813 2042,536.466,311.2975,142.89142,341.17395,4.766 2042,-36.429146,-130.24324,117.20532,278.1185,4.667 2042,603.05475,-57.254623,53.519226,136.92555,4.581 2042,-71.34909,-189.8432,212.33626,458.00095,4.553 2042,495.96613,-8.011999,46.39496,74.8172,4.504 2042,463.5559,-7.4843483,48.082886,77.699326,4.425 2042,157.96764,241.86697,27.205856,40.765717,4.413 2042,493.41333,226.8866,237.89478,515.19617,4.365 2042,310.83276,206.29512,29.326904,66.796585,4.363 2042,11.411542,-13.870766,15.481721,36.579082,4.298 2042,198.03033,229.93112,30.85736,61.19406,4.162 2042,619.5857,-17.256893,16.802917,42.103336,4.064 2042,12.729945,1.4591904,15.8886,32.286892,4.05 2042,594.0323,-46.569004,44.968384,97.4182,3.999 2042,-11.49572,27.21548,29.867401,65.52449,3.948 2042,493.04547,-32.808502,30.104675,72.020226,3.947 2042,10.436552,-30.653305,59.807823,129.09583,3.904 2042,473.83224,-54.343567,59.85672,123.98747,3.894 2042,-9.923569,-18.964018,39.632557,98.596985,3.865 2042,441.29193,-6.055256,62.545593,113.42708,3.858 2042,364.05106,-14.827084,32.890137,63.56725,3.829 2042,369.47644,-18.439089,19.698639,43.42667,3.783 2042,497.7472,-16.554873,19.677856,40.3001,3.763 2042,27.925531,0.30046368,16.796057,31.760681,3.759 2042,235.93675,4.173992,33.147354,66.31587,3.732 2042,234.20602,-16.12107,17.843811,40.49507,3.681 2042,361.6209,-19.318506,18.96994,44.7757,3.667 2042,2.7580774,29.806868,17.522852,34.130287,3.658 2042,496.914,242.39595,43.40277,90.59584,3.636 2042,372.59943,-33.444115,30.6167,73.19885,3.632 2042,476.9157,51.989296,42.262573,67.07501,3.631 2042,410.64468,-18.422016,60.100525,120.74388,3.622 2042,20.608498,0.7272072,15.9711075,32.41682,3.605 2042,5.6938243,23.576824,30.598305,62.52863,3.602 2042,250.79642,12.035294,34.063812,79.87768,3.576 2042,175.03271,241.55508,25.246094,42.28662,3.568 2042,-3.6691756,3.1034565,15.328066,37.763756,3.547 2042,572.3304,-2.6726751,17.393494,35.229248,3.537 2042,522.67017,-30.086838,59.884644,123.75937,3.522 2042,382.92413,177.61098,30.042603,69.15866,3.521 2042,226.25154,-15.837134,17.704987,40.816196,3.502 2042,273.82104,-15.698509,18.658905,40.94767,3.499 2042,433.11234,-12.921316,45.5907,83.15329,3.464 2042,1.9240797,490.24896,20.333248,41.58716,3.427 2042,19.941326,-13.098034,15.091553,35.658318,3.408 2042,-5.0402713,20.423477,16.364134,35.977936,3.397 2042,531.06116,-134.13675,116.37854,268.87695,3.383 2042,260.1216,37.276707,32.34372,74.93022,3.37 2042,42.428017,-36.79065,60.28881,132.07315,3.368 2042,377.18878,-20.076136,19.16504,43.80805,3.365 2042,481.5074,-13.494755,35.600037,64.98145,3.342 2042,503.57208,25.40343,22.92212,34.389168,3.335 2042,210.59915,-14.579769,44.60089,83.369064,3.33 2042,490.54276,94.78574,36.98178,75.706566,3.329 2042,234.40582,-34.54203,60.797607,127.21386,3.319 2042,282.6691,-23.697067,58.497223,142.61446,3.316 2042,228.36424,204.99149,38.364975,75.186005,3.306 2042,341.0937,-4.8162003,29.436462,65.69273,3.301 2042,281.67987,-17.399773,18.742096,41.63591,3.294 2042,507.16977,-55.763607,58.032867,126.132034,3.27 2042,123.2389,-34.772835,59.80311,132.63734,3.255 2043,-5.633521,-17.92984,17.828226,43.232067,6.965 2043,-10.748169,-32.300602,29.470472,74.04133,6.166 2043,-6.195036,490.08203,18.585907,41.255554,6.157 2043,-11.986521,478.69666,30.064314,61.950012,6.124 2043,627.1852,-17.901844,17.127686,46.850487,5.848 2043,622.6194,-33.907528,26.529724,77.466286,5.648 2043,613.20447,454.18024,39.17566,108.12549,5.598 2043,585.56415,-97.133835,74.629395,230.45232,5.467 2043,490.09305,-181.392,235.51181,430.22162,5.25 2043,-72.727425,265.53918,200.77823,461.8285,5.055 2043,-20.178417,-87.41431,72.060455,196.88191,5.011 2043,626.6284,487.55972,20.862915,46.099274,4.96 2043,-21.873016,402.10986,79.44068,175.30011,4.875 2043,583.23706,410.70667,71.48273,177.38837,4.871 2043,-36.410778,-129.54013,117.050735,277.5703,4.816 2043,603.0084,-57.131954,53.76471,137.51013,4.766 2043,536.7579,311.22372,142.4472,341.38956,4.655 2043,216.02003,222.40924,26.652206,60.913025,4.573 2043,-71.213135,-189.5208,211.9325,457.67676,4.537 2043,493.24496,226.13483,238.12253,516.19965,4.264 2043,2.19917,491.61584,19.724499,40.013428,3.949 2043,2.9110284,-16.069841,16.721735,41.031933,3.948 2043,-9.415022,-20.043,39.12758,99.88187,3.947 2043,619.5037,-17.915445,17.068665,44.199356,3.889 2043,594.05383,-46.414543,44.87549,98.68238,3.876 2043,172.41037,220.82343,30.536926,59.59134,3.843 2043,-4.8748093,1.4681988,17.937485,43.481537,3.836 2043,310.92862,208.846,28.542969,65.347824,3.731 2043,221.46147,234.86777,28.855545,60.45819,3.722 2043,-4.9192085,38.094883,18.208479,46.42869,3.6 2043,11.166086,-31.994843,58.137917,130.84749,3.53 2043,-4.385385,218.1713,16.242153,38.358917,3.529 2043,1.5330005,-40.58856,43.749165,100.50629,3.477 2043,432.70148,161.86586,31.211975,84.81946,3.468 2043,44.395493,-13.371914,31.89534,67.347626,3.446 2043,531.93506,-135.97798,114.52307,271.33884,3.416 2043,75.67511,-16.649271,32.65091,66.79033,3.409 2043,166.38274,207.09006,29.235764,50.564545,3.387 2043,566.11597,-34.253628,28.734985,69.93531,3.345 2043,179.89441,234.25302,32.09404,53.77063,3.337 2043,241.84006,222.01108,18.358429,36.03708,3.316 2043,324.81247,61.541576,33.84738,75.381454,3.316 2043,42.42534,-33.945213,59.666702,126.08631,3.314 2043,428.32208,-2.9464521,18.193085,35.288097,3.311 2043,68.289764,-3.7808418,30.558075,64.574684,3.293 2043,315.3375,196.1951,32.36084,59.283905,3.284 2043,314.61194,234.80583,19.964233,38.01326,3.277 2043,299.17953,-2.6316738,19.046112,34.40995,3.257 2043,306.96048,-3.667925,19.485413,35.959274,3.243 2043,198.1831,218.84479,37.95778,73.32675,3.242 2043,393.82083,-38.278057,60.386993,130.43626,3.223 2043,597.36536,461.0019,38.657043,100.16406,3.222 2043,464.21667,-40.09968,46.91748,93.20384,3.208 2043,-5.6955185,120.84913,17.683624,41.85163,3.205 2043,74.83651,-37.138668,59.655388,132.52928,3.202 2043,444.5578,-2.239193,17.67154,34.93794,3.193 2043,302.59625,-34.89414,28.44635,70.89333,3.187 2043,426.86887,-37.06706,59.382477,129.78943,3.184 2043,223.88062,225.42155,21.83702,38.620377,3.179 2043,492.7507,-1.4536133,16.57837,32.08019,3.177 2043,10.093455,-16.567583,17.281197,41.220352,3.168 2043,148.78033,-34.609943,29.208588,73.53082,3.165 2043,613.3418,331.03928,36.635376,113.78369,3.156 2043,508.02405,-14.361858,15.10144,35.84695,3.154 2043,500.86554,-1.2721176,16.104126,32.74343,3.145 2043,438.46588,-33.257004,27.599762,69.72445,3.115 2043,228.1871,205.68506,38.246338,75.899536,3.106 2043,120.44712,175.32455,60.800255,106.62146,3.097 2043,509.1809,-0.6097851,16.048096,32.01533,3.095 2043,341.31168,-34.69241,29.733826,77.38091,3.09 2043,-5.44559,474.8296,16.093987,36.57556,3.089 2043,251.63078,217.46835,17.087234,35.3031,3.083 2043,315.96805,196.33882,18.935028,33.547195,3.081 2043,316.95483,225.41978,30.40387,63.979965,3.078 2043,581.8261,-34.670704,28.698914,70.4201,3.078 2043,547.04974,412.4976,82.97308,168.65134,3.07 2043,87.31819,171.84216,62.928604,109.42233,3.066 2043,176.05664,-40.64791,47.148743,93.80945,3.056 2043,555.8981,-3.2591305,17.698853,36.961365,3.052 2043,5.6172333,466.52167,38.11364,97.5968,3.042 2043,489.90872,-35.58918,60.15732,129.60352,3.035 2043,90.13333,-6.91096,21.651787,44.55041,3.034 2043,372.6034,194.3981,32.420593,59.58737,3.032 2043,523.35864,-15.272623,15.77655,36.64824,3.024 2043,573.35126,-16.961615,30.788269,61.677246,3.02 2043,192.19545,231.44144,24.120392,45.768463,3.019 2043,173.54312,201.13887,52.470505,102.636154,3.014 2043,449.0474,-8.549541,46.58368,93.71582,3.01 2043,60.317772,-58.86156,57.211113,132.47601,3.009 2043,320.80045,192.68661,22.255096,40.25058,3.008 2043,61.33684,-32.98821,29.59222,73.67477,2.997 2044,-5.627995,-17.820517,17.578363,43.196327,6.933 2044,-11.033251,-32.006824,29.725212,72.45986,6.611 2044,627.16907,-17.639439,17.01239,46.304955,5.998 2044,622.70654,-33.64779,26.42871,76.13247,5.44 2044,585.7512,-96.39454,74.49011,228.64832,5.391 2044,612.98755,454.3952,39.73413,107.02258,5.292 2044,-9.12849,464.24243,37.880753,92.76489,5.121 2044,-72.803024,265.75812,200.9928,461.76862,5.101 2044,490.29724,-181.1655,234.93103,429.6348,5.098 2044,-20.139606,-87.84382,72.09029,197.41933,5.043 2044,-6.2562265,489.52118,18.926022,42.09485,5.0 2044,602.96826,-57.391804,53.498413,135.71745,4.944 2044,583.1306,411.14856,71.638306,176.90576,4.909 2044,-36.28323,-129.5086,116.93268,278.14993,4.874 2044,626.29724,487.40607,21.412415,46.378174,4.824 2044,-21.868439,402.32404,79.604645,175.3028,4.819 2044,536.53613,310.98322,142.70734,341.55383,4.618 2044,-9.775268,-17.096964,39.293167,95.289314,4.433 2044,2.9258966,-15.601408,16.953335,40.72182,4.375 2044,-70.9985,-188.95871,212.13367,456.60068,4.347 2044,593.94464,-46.07923,44.82422,95.99777,4.346 2044,493.2378,226.56467,238.12726,516.04065,4.285 2044,-5.5277824,-0.119651794,18.59129,45.165398,4.243 2044,619.5715,-17.123585,16.929321,42.624386,4.229 2044,11.572693,-14.437351,57.113785,117.71692,4.157 2044,6.5093174,-5.1318207,29.0123,70.15043,4.145 2044,185.44344,235.24936,22.80217,36.15219,3.881 2044,20.551815,-3.170164,29.463959,70.21438,3.84 2044,43.342747,-18.233334,57.158733,118.99106,3.801 2044,309.6315,212.76369,29.072784,64.46898,3.781 2044,10.133457,-16.678604,17.729588,41.727043,3.739 2044,360.16632,185.62178,34.604828,62.762436,3.705 2044,75.36339,-3.167554,19.220123,35.531124,3.704 2044,1.9310665,-37.22873,43.49006,95.46744,3.693 2044,29.035088,-33.383682,30.075333,72.53592,3.686 2044,284.18414,219.52667,30.12436,61.66156,3.656 2044,155.21747,218.81462,17.66504,27.316254,3.573 2044,26.082907,-17.384823,18.641653,41.553036,3.513 2044,531.6871,-135.61601,114.74249,270.32797,3.434 2044,524.135,-2.6377697,17.388489,35.291473,3.401 2044,83.886154,-1.7443752,18.34674,33.436226,3.389 2044,228.82031,204.07457,37.69641,74.058365,3.387 2044,-5.4456253,21.642786,18.385279,46.38169,3.377 2044,121.4467,180.05869,61.373276,102.58316,3.333 2044,2.0564008,-0.060049057,21.23825,47.842552,3.321 2044,357.89948,-4.8589363,29.237701,72.06354,3.285 2044,31.903484,-5.6215096,47.57732,91.210266,3.268 2044,522.46375,-37.446182,59.707947,128.0321,3.225 2044,-9.142487,34.38844,39.27153,107.57274,3.222 2044,113.04111,210.14027,45.825592,70.35832,3.195 2044,34.074524,-17.35676,18.451958,41.1026,3.186 2044,156.93498,184.10916,57.383896,104.832306,3.159 2044,66.73787,-4.7077255,19.977615,38.819145,3.157 2044,54.690445,170.42519,63.9821,111.92784,3.154 2044,319.847,224.72847,23.056183,44.455368,3.152 2044,32.14764,-3.5147324,24.624268,53.131798,3.146 2044,209.95853,236.75114,21.705002,43.634445,3.136 2044,515.7556,-3.6358376,17.912842,36.785225,3.125 2044,314.3472,234.96715,19.752716,38.50197,3.114 2044,91.90827,-1.07411,17.896156,32.005184,3.114 2044,618.2801,489.24606,21.136047,43.789032,3.108 2044,494.12595,-33.0981,27.922516,70.4643,3.09 2044,161.60922,213.0552,18.688614,28.432922,3.088 2044,18.324783,-15.741161,18.103695,40.711582,3.083 2044,43.44941,222.25024,19.82169,34.37787,3.082 2044,-9.689472,199.5592,38.94182,99.42236,3.075 2044,196.53516,215.81403,37.947556,72.64319,3.051 2044,214.51917,216.57172,37.812393,72.35034,3.04 2044,507.1551,-17.075466,16.456482,38.393646,3.034 2044,338.6871,-0.99298286,21.395782,46.429718,3.033 2044,328.8782,227.36162,21.912445,43.08745,3.028 2044,146.5471,212.23819,43.234177,71.32504,3.028 2044,86.65149,174.01883,63.3125,106.75778,3.028 2044,147.013,214.23253,20.287292,28.352005,3.023 2044,41.885162,-18.487389,18.364433,41.58115,3.021 2044,140.18552,164.19066,32.185455,60.69771,3.017 2044,546.8018,412.83344,83.1734,167.66266,3.01 2044,350.08972,-34.174152,28.299438,78.65046,3.0 2044,507.61047,-3.498291,18.35431,36.838165,2.982 2044,-10.579038,14.2859955,27.742275,73.10282,2.981 2044,180.70526,215.64558,39.814682,72.98219,2.98 2044,-4.6703525,214.82956,17.478575,43.04419,2.944 2044,555.24347,-39.259285,59.003906,128.5313,2.942 2044,396.70383,38.871296,30.191498,68.570175,2.941 2044,23.73809,165.34573,62.840157,121.10629,2.941 2045,-4.9709253,-16.655437,17.383465,42.701942,8.251 2045,155.4316,210.70306,19.223862,30.069458,7.139 2045,-10.181803,-32.15076,29.157501,73.63121,6.701 2045,-6.323409,489.19977,18.857874,42.649048,6.057 2045,-12.587651,477.62576,31.048267,63.52939,5.787 2045,622.6097,-33.633537,26.760681,76.07093,5.553 2045,344.08948,227.55649,22.167572,41.283264,5.385 2045,626.4959,487.33276,21.009521,45.989746,5.361 2045,627.0968,-17.895203,17.257507,46.40682,5.354 2045,585.6095,-96.49545,75.04956,227.80063,5.234 2045,613.1823,454.25415,39.30548,107.9621,5.185 2045,-72.784065,265.83917,200.96683,461.47754,5.125 2045,-21.805794,402.47137,79.54722,175.52289,4.893 2045,603.40424,-57.345,53.39862,134.50688,4.854 2045,583.0773,410.97723,71.72955,177.22351,4.85 2045,490.1712,-179.70827,234.89075,425.3967,4.762 2045,-20.14472,-89.08335,71.9826,199.07173,4.742 2045,536.56323,311.19843,142.79712,340.98022,4.684 2045,3.7479758,-16.217772,30.928148,70.76588,4.636 2045,3.2170992,-14.464085,16.499695,40.58837,4.624 2045,3.8302593,-1.5655346,18.115602,41.957863,4.568 2045,-36.63074,-130.85051,117.25481,281.55353,4.556 2045,-4.3138785,0.80317116,18.267279,43.899185,4.495 2045,-71.26775,-189.24535,212.22144,456.0296,4.397 2045,334.82404,219.10764,27.572327,56.259155,4.335 2045,493.57983,226.06808,237.64441,515.33777,4.33 2045,-9.433983,-20.131754,38.630554,98.972725,4.194 2045,593.8406,-46.345543,44.884094,95.61468,4.121 2045,501.16226,-32.421215,30.198273,68.94694,3.997 2045,298.96823,219.67966,30.562378,54.78537,3.822 2045,20.67427,-17.248846,31.153244,67.77492,3.803 2045,74.49225,-15.56311,16.992981,37.107418,3.782 2045,9.8955965,-15.439074,17.352364,41.455975,3.616 2045,332.0245,234.86635,18.621002,33.023758,3.595 2045,619.51324,-17.306412,16.936035,42.492302,3.547 2045,2.1028714,490.47214,19.71355,41.635773,3.532 2045,514.6318,-17.438456,17.908264,39.352478,3.531 2045,506.10318,-17.984049,18.097382,39.849636,3.492 2045,245.26483,216.4377,36.918427,72.9861,3.468 2045,1.8451285,-20.096638,50.176796,133.49536,3.452 2045,522.5739,-18.799149,17.847473,41.11895,3.448 2045,517.8392,-34.50332,29.24646,69.72489,3.447 2045,168.02142,207.89903,20.916122,32.884903,3.435 2045,-4.3475957,230.05466,16.348665,40.77829,3.386 2045,618.15497,489.0376,21.160461,43.989563,3.384 2045,179.50433,216.38486,17.74347,31.048447,3.365 2045,497.94952,-16.085102,18.48816,38.036816,3.358 2045,483.59653,-15.9186325,33.178436,62.30056,3.354 2045,489.22818,-4.942048,22.348785,39.98022,3.349 2045,139.36057,214.79362,18.267471,32.55429,3.348 2045,274.73813,-14.622037,16.470795,36.695225,3.334 2045,267.08347,-15.19286,16.042175,37.21073,3.301 2045,476.05618,-3.2062664,31.133698,58.276268,3.272 2045,66.726974,-14.875578,17.218857,37.04032,3.269 2045,482.32693,-15.23647,17.625397,38.545532,3.265 2045,347.0246,220.19043,31.876587,61.302856,3.252 2045,531.29065,-134.4553,115.88104,266.98087,3.238 2045,333.35904,-18.571606,30.20877,64.25255,3.237 2045,-5.172946,246.8632,15.758507,37.506973,3.216 2045,154.67322,186.82098,56.384537,95.580505,3.191 2045,556.3178,-4.2586,17.795837,36.47252,3.187 2045,-5.0213003,263.42355,16.10035,38.31601,3.18 2045,161.67007,215.00278,17.526947,29.058899,3.143 2045,13.684474,-34.0271,28.71629,77.59324,3.093 2045,146.55165,208.32343,43.882843,72.55533,3.079 2045,83.074814,-14.709312,16.721672,35.959415,3.064 2045,547.93225,-5.205763,18.003601,37.381325,3.064 2045,74.92596,-2.8096504,19.014381,37.254192,3.06 2045,313.67966,199.76733,21.058868,37.88437,3.049 2045,530.7616,-17.445389,17.474365,40.451492,3.039 2045,353.01605,234.83064,21.609344,40.188004,3.038 2045,534.0546,-34.45085,28.467285,70.125755,3.037 2045,26.240868,-17.940857,17.572456,42.543137,3.034 2045,446.25098,3.747982,30.47937,63.905567,3.019 2045,26.612362,-4.601755,20.843685,42.65851,3.019 2045,440.3557,228.17221,33.10901,63.342834,3.01 2045,29.619766,-33.55069,28.491348,74.90113,3.002 2045,347.68176,177.95335,54.91333,116.11238,2.993 2045,149.16939,-34.481415,29.361221,73.6678,2.991 2045,156.41107,221.72353,15.771378,26.604248,2.989 2045,-5.4041934,183.93933,18.594515,45.50084,2.984 2045,546.45044,412.59918,83.58032,167.82245,2.982 2045,310.8318,222.08878,25.214539,43.03238,2.977 2045,-4.515794,86.40107,16.306551,42.709557,2.972 2045,160.05937,203.76207,20.871109,31.80455,2.971 2045,538.84937,-17.784378,17.055542,40.400146,2.971 2045,-8.867612,52.845226,38.289165,106.35002,2.971 2045,45.680077,-15.321133,30.111122,66.75107,2.95 2045,-17.28573,193.60178,52.059586,141.51962,2.947 2045,58.66899,-16.827934,17.300423,39.54399,2.933 2045,285.65,218.87462,32.164948,57.512497,2.92 2045,452.52014,-17.323595,32.25598,68.271805,2.916 2045,282.59824,-16.244242,16.415527,37.764442,2.916 2045,18.384491,-16.162195,17.302608,41.515198,2.911 2045,128.82796,207.09052,45.543686,74.53168,2.899 2046,-4.5273685,-15.849365,16.675407,42.494167,7.786 2046,-6.272255,489.66858,18.950108,41.86908,6.432 2046,622.3274,-33.257313,27.020142,75.25278,6.117 2046,626.96246,-18.740147,17.21875,47.699177,5.986 2046,-12.397202,478.1317,30.574783,62.415405,5.828 2046,-10.116388,-33.197525,29.2433,76.68484,5.823 2046,613.0894,453.8453,39.556824,107.75888,5.585 2046,3.4567146,-12.787386,15.9472885,39.486748,5.354 2046,585.8,-96.94327,74.50647,228.87106,5.292 2046,-73.00033,265.64575,201.3162,461.35706,5.057 2046,626.3648,487.82767,21.170227,45.87027,5.01 2046,490.6537,-180.35068,234.92908,427.68237,4.972 2046,602.61414,-56.8485,53.71399,135.21576,4.958 2046,583.1035,411.09412,71.667114,176.97632,4.905 2046,-21.784334,402.215,79.5427,175.4343,4.846 2046,-19.739702,-88.3473,71.64367,198.88371,4.749 2046,536.2414,310.91437,143.36017,341.66077,4.679 2046,-5.3202944,105.59999,17.36092,42.56044,4.679 2046,-36.105022,-130.97842,117.41977,280.47653,4.607 2046,3.3494787,226.96454,18.105183,37.11316,4.534 2046,-71.54702,-189.75284,212.72098,457.08203,4.458 2046,493.428,226.46725,237.63889,515.53577,4.421 2046,594.12805,-46.209152,44.96521,96.78997,4.351 2046,368.056,206.78532,33.82547,59.933243,4.182 2046,406.20074,208.46933,28.287903,71.1124,4.108 2046,-5.310937,203.34613,18.437614,40.065186,4.104 2046,-9.432893,-18.639587,39.137314,101.63584,4.053 2046,185.46375,213.36842,20.22757,33.47319,4.051 2046,177.24277,212.86952,20.352417,34.909836,4.019 2046,-5.052945,219.59311,17.50396,39.544495,3.98 2046,-5.2582,90.07354,16.978687,40.37818,3.979 2046,162.25299,216.34366,19.618195,35.59259,3.974 2046,169.99799,220.50708,18.452942,33.149506,3.936 2046,589.12964,-17.403034,30.89502,61.858448,3.931 2046,619.1585,-18.510609,17.411194,44.53104,3.845 2046,394.65314,236.76627,20.459106,41.963013,3.747 2046,-5.39558,120.18461,17.944496,46.14599,3.74 2046,385.42874,237.46945,21.733978,39.95569,3.735 2046,457.9909,-5.076729,21.023834,40.863094,3.669 2046,219.13312,209.98087,18.1073,28.835434,3.649 2046,450.297,-4.564164,20.68634,40.42668,3.609 2046,-5.5893383,186.69305,18.951437,41.55876,3.605 2046,474.53394,-20.365133,17.808655,44.24389,3.564 2046,2.5513368,212.78337,19.5361,38.313293,3.564 2046,277.64606,213.5587,35.582916,77.195145,3.485 2046,518.5568,-34.574356,28.040833,72.28539,3.485 2046,192.77496,211.23279,44.678726,68.02292,3.479 2046,2.0264955,490.97705,19.972322,41.125,3.478 2046,-10.431962,105.02936,29.00259,75.2601,3.456 2046,402.73798,236.2912,19.90207,43.244995,3.451 2046,202.13095,179.40614,57.556366,102.72572,3.441 2046,402.6264,209.94632,21.343567,45.33316,3.433 2046,572.0556,-4.426223,18.536133,37.881313,3.43 2046,89.72371,229.72366,19.848015,34.80539,3.392 2046,534.68164,-34.2939,27.589233,70.00184,3.379 2046,618.083,490.08832,21.322632,42.733887,3.367 2046,538.7869,-18.95205,17.469421,42.230614,3.353 2046,11.830704,-8.850327,57.115746,125.035355,3.333 2046,-4.445716,1.0273571,17.765013,44.624153,3.308 2046,10.15169,-13.07078,16.529356,38.371452,3.272 2046,357.1756,218.4262,30.970123,54.348373,3.257 2046,466.4397,-17.62621,17.588257,41.984856,3.246 2046,531.6417,-135.43416,115.46246,268.75354,3.245 2046,582.14374,-34.04443,28.125122,70.43644,3.223 2046,409.37488,203.25421,21.22522,48.172485,3.222 2046,378.46756,215.31558,33.843872,63.553986,3.22 2046,-18.967651,182.21451,53.062725,137.34946,3.219 2046,164.64485,201.62737,28.398117,51.649506,3.218 2046,587.6852,-4.132352,18.761414,36.8671,3.213 2046,453.8855,-32.94416,28.720337,73.69329,3.171 2046,349.87735,225.97707,26.425201,37.970413,3.168 2046,595.77856,-4.5078983,18.687317,37.08043,3.168 2046,614.6143,-20.661121,26.29132,69.38161,3.167 2046,193.14682,212.85634,19.44603,31.216232,3.16 2046,167.36206,182.04025,61.7984,98.177765,3.158 2046,-4.329745,246.7045,16.03967,38.541077,3.151 2046,156.2167,231.29243,17.089706,27.986526,3.149 2046,166.18378,-35.547924,29.17511,74.50416,3.133 2046,102.39605,170.89032,64.90113,115.12338,3.129 2046,495.79593,-43.36328,47.44113,91.79271,3.125 2046,272.6208,204.41335,62.53131,155.4575,3.119 2046,149.76747,212.8888,29.097748,50.15387,3.112 2046,2.6493888,82.22168,17.78655,36.530724,3.085 2046,317.14008,218.74814,33.11139,56.76123,3.08 2046,1.6987216,194.57794,21.901886,40.903,3.08 2046,180.55931,199.86823,30.266312,50.61908,3.076 2046,-4.8226337,74.489,16.331116,38.660828,3.059 2046,262.2813,212.59897,36.33139,78.510895,3.052 2046,144.87354,209.22025,46.37938,70.45749,3.05 2047,-5.688214,-17.807041,17.390863,41.751656,6.428 2047,152.47394,215.78264,20.989532,38.262375,6.18 2047,627.22424,-17.924326,17.378357,46.67804,5.943 2047,-6.1155534,489.50916,18.612745,42.05243,5.782 2047,-12.1194,477.3177,30.342228,63.470337,5.763 2047,-11.091049,-32.494583,29.458775,71.10666,5.725 2047,622.8449,-33.442204,26.512451,76.2696,5.442 2047,612.8684,454.61966,39.658325,107.2363,5.164 2047,585.9844,-97.88951,74.51526,231.23523,5.136 2047,-20.038105,-87.73787,71.97888,197.79314,5.118 2047,603.135,-57.099953,53.458923,136.34602,5.069 2047,490.55176,-180.64806,234.70093,428.37445,5.035 2047,-72.78167,265.91333,200.76633,460.89966,4.989 2047,583.0061,411.7029,71.68982,176.51108,4.924 2047,146.42755,210.36597,20.622162,39.86882,4.9 2047,159.51106,212.97218,22.037155,38.590347,4.858 2047,-36.06169,-130.86464,116.86421,278.06024,4.841 2047,-21.897072,402.01407,79.63605,175.59225,4.823 2047,-71.69684,-190.3524,213.1846,458.15973,4.789 2047,626.23175,486.95856,21.28302,47.149902,4.707 2047,420.79126,211.82565,31.568787,61.796906,4.702 2047,536.3042,310.66837,143.2013,341.82626,4.682 2047,386.31912,187.22858,33.534424,64.23932,4.481 2047,147.10957,228.3021,17.418808,33.57657,4.442 2047,493.3355,226.33502,237.98334,515.5577,4.391 2047,148.75641,199.3527,30.1987,49.89409,4.291 2047,619.5985,-17.208199,16.943298,42.829914,4.232 2047,594.2892,-46.82108,44.9505,98.321526,4.225 2047,139.04077,222.09082,18.938095,38.10205,4.21 2047,3.2556052,-15.662313,16.331387,37.2703,4.18 2047,425.7229,194.1865,31.646667,62.795288,3.968 2047,429.9154,220.04684,30.841309,63.248383,3.824 2047,10.778057,-15.503701,16.84959,36.38847,3.785 2047,442.57666,-18.718851,17.44516,42.15439,3.741 2047,-9.926422,-18.894413,39.39263,100.05435,3.71 2047,293.79144,201.75507,36.305634,74.89917,3.707 2047,152.24428,181.93944,59.375305,101.82155,3.618 2047,42.24816,-31.737125,60.355354,127.092606,3.606 2047,83.74277,-2.6315184,17.91613,35.375256,3.551 2047,1.8682897,41.238804,21.325066,45.519283,3.543 2047,74.572014,-39.482964,60.07969,132.62823,3.521 2047,12.114946,-29.146927,57.588737,131.28445,3.48 2047,278.28436,198.85434,36.249084,77.67847,3.469 2047,485.746,-33.578884,28.776764,69.37072,3.46 2047,226.9454,209.27875,17.826996,36.1911,3.454 2047,168.25583,213.5151,22.446747,37.237137,3.449 2047,76.10332,-3.1200848,17.86007,35.61457,3.448 2047,438.00867,-34.590496,28.878723,73.56233,3.417 2047,274.71082,220.95712,21.613647,37.43112,3.399 2047,177.04181,202.09479,22.956345,39.462692,3.39 2047,2.3250198,491.26514,19.633286,40.71997,3.366 2047,136.1755,200.79092,28.186707,55.22995,3.356 2047,391.1595,225.69673,23.917114,40.353134,3.336 2047,50.809723,-14.4307575,16.646729,37.45547,3.324 2047,414.44196,177.10599,52.17816,114.27951,3.278 2047,501.8079,-34.211056,28.754608,66.56229,3.275 2047,506.7528,-18.898785,17.991028,39.545864,3.261 2047,380.82635,217.88553,29.88794,55.752075,3.256 2047,515.1002,-17.692936,17.606018,38.45244,3.228 2047,309.47742,200.70319,35.66086,76.13098,3.221 2047,75.42015,-15.341413,15.869713,37.104504,3.219 2047,122.9772,232.81949,18.720673,34.27231,3.206 2047,450.34058,-17.954897,17.897583,41.12283,3.204 2047,-5.302821,222.10771,17.3447,44.83,3.203 2047,411.5784,245.34521,17.822083,31.492859,3.196 2047,186.577,173.14256,57.729813,109.56105,3.19 2047,427.4283,245.10106,19.702362,33.96083,3.185 2047,58.95412,-15.612547,16.429005,37.772552,3.133 2047,457.9697,-19.015284,18.613403,41.849762,3.13 2047,398.4594,210.40308,25.667511,46.064728,3.123 2047,464.67065,-42.911953,46.25052,92.13568,3.12 2047,-5.191326,153.43268,17.294409,41.554504,3.114 2047,532.15137,-136.50859,115.252075,273.0521,3.109 2047,67.25114,-15.01457,16.235832,36.66374,3.092 2047,91.8186,-1.6994057,17.122345,33.76893,3.091 2047,617.8504,488.6153,21.64978,44.460754,3.076 2047,145.59406,205.74904,43.732605,73.675,3.071 2047,162.50114,228.00467,18.052628,31.788422,3.055 2047,566.7338,-34.387768,27.41803,70.84293,3.044 2047,42.76287,-14.366207,16.325142,37.582756,3.04 2047,546.7544,413.81122,83.38757,166.92548,3.039 2047,442.19446,243.49799,21.07074,40.869873,3.035 2047,303.05682,-33.950638,27.177094,70.539734,3.028 2047,550.63086,-34.592106,27.274292,70.909004,3.025 2048,99.493744,206.05913,21.25283,38.928818,10.361 2048,119.862,211.79077,21.820862,39.769623,7.267 2048,-5.4825487,-17.661726,17.588957,42.100777,7.23 2048,-10.723036,-32.175983,28.859816,71.08827,6.545 2048,-6.223144,490.09088,18.872456,41.73065,6.142 2048,622.9736,-33.98614,26.372131,77.313324,6.118 2048,-12.096487,478.3325,30.45126,62.832367,5.94 2048,627.1822,-19.010416,17.37445,48.30991,5.7 2048,585.66583,-97.691635,74.854065,229.91397,5.355 2048,-72.97432,265.57568,200.86047,461.69354,5.079 2048,471.65115,218.14111,23.341888,41.265656,5.048 2048,457.48642,213.79944,21.757843,39.64691,5.041 2048,490.4089,-180.24709,235.26749,427.27414,5.029 2048,583.13965,411.60742,71.46393,176.52466,5.01 2048,-20.122156,-88.42813,71.92654,198.02995,4.984 2048,612.9989,454.6607,39.420532,107.34625,4.965 2048,626.3981,487.6277,21.215332,46.644104,4.836 2048,81.29684,211.79184,21.04345,40.394424,4.835 2048,-21.94706,401.7115,79.67377,175.70386,4.821 2048,603.0648,-57.919037,53.417725,137.78491,4.721 2048,-71.54946,-190.44922,213.25659,457.79437,4.721 2048,-36.318764,-131.30916,116.70203,280.0539,4.714 2048,-5.1671457,0.96016693,17.888023,42.717186,4.711 2048,536.3356,310.99252,143.3153,341.32278,4.644 2048,3.259056,-15.499876,16.278372,38.52042,4.545 2048,127.82456,211.04648,23.93209,40.772842,4.544 2048,493.5341,226.1629,237.5217,515.6867,4.438 2048,114.52013,216.06189,18.312271,37.74878,4.389 2048,98.70429,205.09505,40.39373,70.466995,4.119 2048,129.2403,203.20416,43.32242,73.48215,4.081 2048,4.828286,227.85913,29.190166,59.975403,4.033 2048,27.367996,-2.9166374,19.628891,38.134926,3.972 2048,594.25134,-47.138115,44.740967,99.09632,3.926 2048,136.36229,212.45743,24.876541,41.035507,3.887 2048,156.00116,-16.440588,32.335022,62.712532,3.869 2048,-9.808873,-20.677048,39.063187,98.85305,3.837 2048,11.396372,-31.795738,58.406837,130.04446,3.815 2048,26.004272,243.89719,20.306324,38.63672,3.776 2048,90.48723,212.37456,21.426842,39.68463,3.773 2048,3.1779623,2.7983685,18.884933,41.803772,3.702 2048,152.95526,175.80615,60.72162,106.430176,3.69 2048,91.866264,-3.4768372,18.969223,36.92372,3.659 2048,619.49615,-19.139305,17.384216,45.118256,3.645 2048,140.48468,-2.3654804,29.117157,66.59494,3.612 2048,339.94504,230.78108,32.933746,64.248764,3.611 2048,388.06085,216.03201,31.12384,62.682465,3.588 2048,434.41614,-17.52985,18.141205,40.59873,3.577 2048,483.69724,-17.675781,33.443085,69.896866,3.576 2048,108.442245,-12.356562,30.58899,62.62381,3.55 2048,1.686213,-39.55747,43.57593,98.49478,3.548 2048,59.56794,-1.6538506,19.042374,36.622192,3.528 2048,106.36902,-33.742523,59.147675,128.51035,3.524 2048,10.439725,-16.353952,16.73153,38.827892,3.506 2048,418.68985,-17.608212,17.51352,39.326794,3.451 2048,91.70028,237.45813,17.340057,33.66205,3.443 2048,2.0747023,491.35602,19.618614,41.114746,3.425 2048,75.5652,-35.7057,57.60666,128.97755,3.393 2048,461.75156,198.56343,32.571014,58.94081,3.393 2048,532.0264,-136.33473,115.03363,271.6103,3.392 2048,499.37488,-18.79361,32.803528,64.573685,3.369 2048,438.34058,-34.10268,28.691956,73.733,3.358 2048,83.11008,-3.1688776,18.941628,38.188488,3.338 2048,107.0643,225.77132,16.840149,33.835007,3.338 2048,396.42642,-37.07655,29.702179,69.47675,3.316 2048,98.28859,-9.893982,44.67784,94.01898,3.306 2048,294.81726,200.32915,35.540527,79.14778,3.304 2048,42.67153,-34.993675,57.927223,129.99803,3.294 2048,100.014175,-4.1156244,19.44197,37.738224,3.281 2048,448.42883,206.61551,21.996399,40.654083,3.269 2048,53.825375,-16.146336,31.399906,66.42841,3.268 2048,121.999405,-16.480581,18.449692,40.604294,3.262 2048,43.224907,-2.1510162,18.588089,35.71736,3.237 2048,85.3138,218.85976,28.089203,57.563187,3.234 2048,409.874,-20.066645,18.37033,41.772793,3.231 2048,201.57889,-19.266476,18.164032,43.913498,3.23 2048,106.95579,-4.132348,20.122063,39.856556,3.229 2049,29.536772,208.19441,25.056322,49.343124,19.206 2049,-5.2273464,-17.042267,17.082865,41.102676,8.27 2049,-10.743334,-31.467049,28.983435,68.68596,7.168 2049,-12.22712,477.661,29.956013,63.651978,5.78 2049,18.843834,199.9814,40.736656,76.13121,5.647 2049,-6.1071243,489.63126,18.381065,42.154633,5.638 2049,626.938,-18.760174,17.382324,46.646065,5.507 2049,622.8316,-34.202724,26.444458,76.203674,5.503 2049,4.0004053,-14.623524,15.177539,36.71435,5.471 2049,585.9278,-98.587456,74.70111,230.90985,5.122 2049,5.624807,203.05673,28.182425,70.60745,4.985 2049,583.0186,412.15063,71.6402,175.94641,4.978 2049,-72.85331,266.39368,200.6211,460.1123,4.975 2049,626.47144,487.6079,20.818298,46.045776,4.968 2049,612.9142,454.77115,39.37555,107.592316,4.926 2049,490.51093,-180.79225,234.4997,427.7003,4.917 2049,-21.945557,401.7779,79.4973,175.50385,4.838 2049,536.27997,310.69922,143.56067,341.97205,4.787 2049,603.411,-57.537388,52.847473,134.85234,4.694 2049,397.2488,186.19388,32.317474,62.81604,4.674 2049,-19.93456,-88.572655,71.82041,198.51431,4.657 2049,-71.798164,-189.93665,212.99533,456.8116,4.625 2049,-36.475822,-132.01689,117.30944,281.68442,4.519 2049,493.28058,226.7738,237.88062,515.29834,4.468 2049,594.0308,-47.58976,44.7547,96.99429,4.339 2049,344.82434,226.3954,34.914886,54.974197,4.283 2049,12.020357,0.27417183,16.779024,32.129967,4.106 2049,616.30334,219.75787,23.336304,55.87387,4.088 2049,32.84761,193.39923,34.471123,57.128952,3.998 2049,-9.628684,-21.04722,38.829697,100.854996,3.952 2049,11.299009,-14.499152,15.875803,35.922413,3.952 2049,262.4192,202.07973,35.91031,72.74126,3.841 2049,-4.4185586,1.2126846,16.092484,39.57364,3.803 2049,493.50635,-12.526014,30.040771,60.687996,3.784 2049,27.19656,219.92525,19.554329,45.42662,3.768 2049,293.41425,203.39574,36.647552,74.7433,3.65 2049,614.95593,235.60107,26.52063,79.01056,3.631 2049,452.99896,-13.649834,30.470093,63.260803,3.61 2049,27.587334,-0.46340847,16.593811,31.904408,3.564 2049,491.07227,-15.050285,17.061615,39.395344,3.556 2049,35.966995,-0.91968155,16.924393,33.89286,3.555 2049,307.80386,201.54428,37.554108,75.3356,3.498 2049,172.54056,234.62404,16.041916,27.219772,3.468 2049,31.647604,204.25894,42.26052,83.90195,3.443 2049,458.95532,-14.719126,16.201721,37.84848,3.425 2049,-8.611444,201.22884,38.12114,94.04002,3.4 2049,2.142527,218.14368,20.113636,48.39496,3.4 2049,619.3576,-17.89549,17.23639,42.638855,3.396 2049,171.97899,219.40433,18.837173,33.25676,3.394 2049,19.808876,205.41388,23.171299,52.05783,3.367 2049,507.90005,-15.344336,31.470856,65.16339,3.367 2049,11.87201,-30.97752,57.550735,135.54843,3.354 2049,498.31567,-15.077406,17.569214,40.422585,3.31 2049,219.56921,216.39052,16.615707,28.52121,3.293 2049,123.56447,-13.538622,15.319305,36.32378,3.258 2049,278.11255,200.90942,35.34088,75.371765,3.256 2049,20.383385,0.16008186,16.160114,32.213013,3.252 2049,-5.260006,230.2533,17.56242,42.826538,3.245 2049,426.55975,-15.7228155,16.77533,38.910095,3.244 2049,42.88954,-14.11078,15.78735,37.037228,3.237 2049,46.105034,207.92303,25.191505,50.333557,3.231 2049,178.07138,-17.737865,17.699036,42.97865,3.218 2049,442.5676,-15.554026,16.849548,39.605,3.186 2049,7.108867,-34.281445,26.87059,70.910614,3.181 2049,469.7296,-14.86224,29.618225,63.108017,3.172 2049,35.108288,-12.865827,15.92255,35.187443,3.162 2049,0.14956832,-17.054802,25.152914,63.208168,3.156 2049,467.10614,-13.569099,16.080444,36.410545,3.155 2049,186.14139,-18.586979,17.534378,43.61973,3.153 2049,19.683998,-12.82723,15.376308,34.886173,3.153 2049,505.92175,-16.628338,17.687988,41.770348,3.123 2049,450.67798,-14.307113,16.488403,38.278114,3.117 2049,115.8484,-11.472334,15.280266,35.123272,3.11 2049,612.8714,194.08195,34.31781,109.16057,3.1 2049,524.06134,-16.471027,32.51306,65.370735,3.096 2049,434.58005,-15.106476,16.922638,38.921467,3.095 2049,58.929085,-13.663495,16.20726,36.971306,3.095 2050,-5.03109,-17.739737,17.19366,41.272377,7.495 2050,-12.1194315,477.69138,30.345997,63.656525,6.276 2050,-6.1736374,489.20084,18.835148,42.727936,6.082 2050,-11.340065,-32.105534,29.570625,69.93743,5.973 2050,627.0972,-17.901249,17.118164,45.940403,5.781 2050,622.6478,-33.741253,26.671875,75.94206,5.763 2050,613.25146,454.31604,39.199158,107.89142,5.512 2050,585.7576,-97.25232,74.638794,229.37488,5.415 2050,3.7863154,-15.86165,15.747036,37.901104,5.162 2050,468.47073,183.09985,31.28598,73.71033,5.146 2050,490.11957,-179.91757,234.94452,426.15173,5.033 2050,626.84875,488.1222,20.490112,45.12671,5.005 2050,-72.54411,267.1076,200.20035,459.58124,4.894 2050,-19.776924,-88.28808,71.607346,197.86331,4.876 2050,583.2581,411.95947,71.39288,176.11926,4.841 2050,-21.98388,401.9007,79.49947,175.42236,4.835 2050,603.30225,-57.325417,53.302002,134.97202,4.745 2050,-36.102715,-131.70557,116.73484,280.00803,4.656 2050,-71.93663,-190.18312,213.2332,457.55347,4.647 2050,536.53925,311.61627,143.03143,341.17242,4.516 2050,420.7382,-4.9809456,31.223541,72.566345,4.373 2050,27.534115,-15.543848,16.041653,37.69736,4.304 2050,493.33215,227.00119,237.68475,515.6561,4.294 2050,593.84045,-45.765244,45.151855,95.50209,4.203 2050,42.972733,-15.880327,16.604263,37.149506,4.119 2050,35.20757,-15.142554,16.561893,36.564137,4.117 2050,619.42065,-17.181728,17.063904,41.892513,4.061 2050,288.7784,221.46704,23.612091,36.595825,3.942 2050,296.35352,235.74474,22.615143,35.399765,3.834 2050,430.75385,186.76947,28.702698,69.07904,3.769 2050,618.5069,489.84723,20.312134,42.087036,3.727 2050,11.31403,-16.340801,15.986961,38.06857,3.72 2050,29.145908,-17.23321,29.835766,61.306557,3.646 2050,245.94446,200.77185,36.29782,73.28131,3.643 2050,19.778242,-14.942296,15.9163,36.85547,3.619 2050,50.796234,-15.016944,16.878235,36.734924,3.567 2050,515.9935,-16.796402,32.89911,66.52916,3.537 2050,403.29956,177.50447,32.99106,74.129715,3.53 2050,262.07974,203.27768,37.004486,70.97385,3.405 2050,2.8471112,222.9246,18.969393,45.862198,3.404 2050,292.0171,204.63354,38.072693,71.427246,3.395 2050,556.59033,-15.981714,31.551514,66.47051,3.363 2050,531.7109,-134.78911,115.262024,268.88324,3.36 2050,-9.5228405,-21.03838,38.727448,101.31102,3.358 2050,481.31543,171.13846,36.383606,77.47,3.342 2050,346.82385,249.66737,20.340576,27.885696,3.28 2050,58.71275,-16.575592,16.741268,38.563335,3.236 2050,458.0302,-36.90113,61.45398,127.79622,3.232 2050,45.132618,-17.091751,30.362598,61.359886,3.201 2050,490.78232,-37.75244,60.28586,127.056496,3.196 2050,565.7279,-33.899868,29.10553,74.02972,3.178 2050,588.7072,-18.203863,30.673706,62.92576,3.166 2050,-4.032797,248.038,15.991149,38.664246,3.161 2050,425.63702,-16.243893,18.14215,42.20076,3.15 2050,476.35736,201.78214,29.527374,68.52875,3.137 2050,2.1989167,489.93417,19.409111,42.39377,3.131 2050,411.0638,-16.056011,16.401093,39.099846,3.122 2050,259.59924,223.16983,17.97345,30.965118,3.119 2050,497.04443,171.44853,33.3125,69.42697,3.117 2050,597.577,462.18372,38.603455,98.2876,3.117 2050,532.89197,-15.718916,31.563232,67.3382,3.113 2050,522.3591,-37.707367,59.58911,128.4234,3.107 2050,573.6351,-23.344067,53.96295,132.62616,3.084 2050,109.34236,-15.575272,30.091095,64.1636,3.082 2050,107.068245,-15.276796,16.080452,37.809864,3.078 2050,411.48312,-2.9706898,19.01828,37.737335,3.068 2050,572.6616,-17.098145,31.588501,66.06748,3.065 2050,90.950554,-16.13382,16.324905,37.00201,3.06 2050,546.84326,414.3424,83.18475,165.96033,3.058 2050,531.2234,240.03122,17.693542,33.132782,3.051 2050,229.81717,208.21794,38.06665,76.56181,3.023 2050,2.3465037,-42.53188,42.104187,101.96763,3.023 2050,418.74463,-14.354016,16.954865,39.205563,3.019 2050,446.97507,165.8779,53.559937,118.74786,3.005 2050,429.24585,-34.100395,29.883759,78.08736,3.002 2050,99.231445,-15.135214,16.04309,36.67986,2.991 2050,11.260614,-39.135605,57.03173,135.71135,2.983 2050,549.8252,-34.555664,28.828308,75.29193,2.976 2050,278.13635,201.97845,36.595978,72.92618,2.975 2050,66.86311,-15.749514,16.822144,37.395897,2.971 2050,91.703415,-1.7106867,17.852661,32.722363,2.964 2050,75.15306,-3.432415,18.947052,34.14931,2.959 2050,83.45081,5.0946217,19.081932,34.54181,2.939 2050,267.10962,-16.879261,16.174896,38.543964,2.932 2050,-4.9743514,0.7951355,17.323833,40.044697,2.931 2050,490.25952,-18.225534,18.388733,42.12018,2.926 2050,170.18454,-18.031836,17.644135,41.650208,2.907 2050,60.805702,-17.108273,31.249313,60.429455,2.893 2050,42.10839,-43.707603,59.954712,135.91248,2.89 2050,425.4261,-34.12752,61.172363,129.67635,2.88 2051,-5.3496985,-17.310154,17.531784,41.858986,7.788 2051,-10.726461,-31.717117,29.328491,70.31079,6.684 2051,282.5426,221.46979,21.861115,34.14807,6.542 2051,-6.4835014,489.88272,19.12402,42.202057,6.231 2051,623.0504,-33.39855,26.46875,76.29547,6.152 2051,-12.236381,478.47324,30.665962,62.13199,5.927 2051,627.253,-19.638817,17.280396,49.431133,5.782 2051,603.2352,-58.229633,53.535522,136.54152,5.325 2051,-17.750454,-62.47883,56.756653,141.67644,5.254 2051,585.9281,-98.30635,75.00757,230.1903,5.08 2051,-72.850136,266.20737,200.51572,460.57498,5.004 2051,583.0853,411.80487,71.622986,176.42535,4.985 2051,-36.357574,-130.13948,117.14629,281.54395,4.985 2051,594.14734,-47.738674,44.567932,98.3591,4.934 2051,613.05707,454.69412,39.298157,107.599396,4.916 2051,626.5657,487.7366,20.88147,46.01242,4.915 2051,-21.886118,402.23822,79.440155,175.06305,4.834 2051,-71.82538,-190.47746,213.3998,457.60156,4.775 2051,536.4187,310.7553,143.29254,341.54205,4.677 2051,3.4475284,-15.108591,16.211752,38.86338,4.657 2051,532.2477,-182.26645,149.40637,421.9967,4.559 2051,493.49805,227.14459,237.45886,514.6025,4.405 2051,42.188835,-33.24448,58.87039,125.79025,4.177 2051,74.48396,-34.98085,58.958694,128.13623,4.046 2051,344.83978,245.10345,25.263062,37.838196,3.986 2051,-6.180745,153.6366,18.46699,40.143585,3.917 2051,-9.858302,-6.620266,40.421375,99.97914,3.912 2051,11.077528,-30.965046,57.163177,126.92735,3.83 2051,33.549038,-1.1167107,23.124157,47.99699,3.819 2051,284.16187,209.48087,28.250427,54.1279,3.807 2051,2.094934,-38.99155,43.266464,97.21515,3.792 2051,26.62043,-4.342453,20.90282,40.69993,3.774 2051,267.33508,217.57722,19.354095,33.833893,3.718 2051,416.065,187.52115,35.788452,72.41708,3.704 2051,20.571133,-15.298908,31.276932,64.00496,3.673 2051,-10.084507,53.76559,39.533794,106.63278,3.643 2051,-5.38209,138.82428,17.501312,39.42691,3.607 2051,28.711367,198.93468,31.523878,62.203964,3.604 2051,270.9443,211.84456,30.755646,49.4608,3.533 2051,400.85333,238.57791,23.79425,41.39502,3.525 2051,506.21555,-16.156525,17.857574,41.011368,3.476 2051,429.7854,231.01976,28.185791,65.57448,3.451 2051,10.59517,-16.643095,17.05075,40.32122,3.441 2051,65.34469,-8.534649,46.112007,91.9268,3.432 2051,-14.565206,86.36323,49.458675,142.48569,3.402 2051,30.091352,-34.324345,28.538465,73.433914,3.388 2051,33.15824,-6.0765915,46.28978,88.60795,3.387 2051,42.551125,-3.3583946,20.607422,40.080956,3.37 2051,262.92993,205.79704,28.100006,52.06746,3.367 2051,477.6765,3.1507797,29.98236,66.28754,3.357 2051,619.65643,-9.642359,18.656433,45.338905,3.336 2051,36.549683,-14.816122,32.23912,62.66662,3.312 2051,42.81568,212.33289,22.250038,42.7558,3.294 2051,2.2298627,490.41898,19.465637,41.929657,3.289 2051,291.56195,205.26971,38.682495,70.27963,3.285 2051,229.45787,202.41756,37.767654,71.0258,3.284 2051,443.9966,180.99918,54.441772,110.28171,3.261 2051,-5.998596,37.59719,18.312675,44.949547,3.261 2051,451.55286,192.85124,30.9888,72.334305,3.248 2051,566.43915,-34.79052,27.82727,67.416756,3.241 2051,618.38477,489.90543,20.90393,43.158783,3.216 2051,403.67767,230.83957,31.320038,62.586426,3.201 2051,119.04239,175.19333,62.5271,110.505615,3.199 2051,312.98447,218.65579,21.579376,37.7352,3.175 2051,148.18332,215.5134,31.515808,52.37198,3.156 2051,2.1496284,159.19296,21.434452,42.967438,3.148 2051,94.616394,6.925316,30.670883,66.215034,3.144 2051,-5.3553095,0.5421791,17.940945,42.287167,3.143 2051,5.3370237,466.23956,38.457745,96.01581,3.137 2051,493.4056,-5.2815533,30.268768,66.53082,3.127 2051,546.9227,414.38287,83.092896,166.02545,3.117 2051,181.03818,-33.35702,29.371063,72.30299,3.107 2051,18.70492,-16.433414,17.669664,40.266293,3.094 2051,550.06085,-34.928406,28.987366,72.18603,3.093 2051,146.80695,-17.41315,17.147385,41.705887,3.082 2051,19.790241,189.83875,30.678158,61.83255,3.081 2051,386.20563,232.91061,41.89673,103.91803,3.074 2051,245.48984,202.34207,36.7966,70.74875,3.073 2051,437.26245,188.65611,33.844666,73.018875,3.068 2051,165.25832,-35.237774,30.08818,75.846054,3.067 2051,560.30286,-44.97751,46.78418,94.76685,3.042 2051,108.1478,222.49673,16.641289,32.659897,3.036 2051,92.09973,-4.413455,18.2005,35.965244,3.026 2051,384.35675,240.88692,23.473083,38.515945,3.024 2052,359.33154,239.56995,37.708496,62.278748,7.968 2052,-5.16397,-16.922878,17.305614,41.77666,7.869 2052,-10.6382065,-31.915215,29.089752,70.841354,6.647 2052,-6.418515,489.66013,19.080956,42.391754,6.224 2052,3.448062,-13.708407,15.938947,37.527935,6.219 2052,627.258,-17.809954,17.168335,46.420925,6.113 2052,-12.105569,478.20587,30.228024,62.243835,5.974 2052,623.2066,-34.086143,26.242188,76.36604,5.741 2052,626.3424,487.70184,21.175415,46.10565,5.09 2052,585.7723,-99.280174,75.07587,231.9982,5.08 2052,613.1376,454.14172,39.330627,107.86078,5.034 2052,490.6627,-181.06593,234.46902,428.09082,5.01 2052,-72.82192,266.2419,200.69788,460.94803,4.978 2052,603.2996,-57.439846,53.139038,135.42276,4.948 2052,582.981,411.5017,71.760315,176.49017,4.948 2052,-17.256945,-63.949432,55.952103,145.05139,4.862 2052,-21.86071,402.07242,79.423965,175.35751,4.826 2052,536.30676,310.4411,143.50635,341.4732,4.819 2052,442.11758,-16.266277,17.915833,37.94556,4.809 2052,-71.62071,-189.61954,212.72801,457.15753,4.726 2052,449.7972,-16.533443,18.39917,38.591595,4.67 2052,11.320671,1.3576412,18.148218,33.95923,4.602 2052,-36.303635,-131.87526,116.88035,281.01056,4.56 2052,493.3829,226.64285,237.93314,514.86597,4.503 2052,10.873192,-13.323965,16.419708,36.478596,4.334 2052,438.2708,-33.765854,28.567627,71.80078,4.334 2052,466.06665,-16.526772,18.185913,39.315407,4.261 2052,457.98956,-17.318344,18.271393,39.444008,4.159 2052,434.73935,-15.159851,17.017578,36.31686,4.13 2052,474.3545,-17.18731,17.928833,38.963184,4.059 2052,-5.436064,0.12409401,17.67994,42.632256,4.054 2052,594.4553,-46.303555,44.342773,96.86133,4.042 2052,3.5468059,2.5853653,18.346674,41.09707,4.014 2052,370.9537,252.3992,29.010773,41.93634,3.949 2052,392.9499,257.1951,23.73346,38.613678,3.894 2052,19.443438,-12.17123,15.953806,34.965317,3.87 2052,620.12213,-17.564611,16.1969,42.26438,3.853 2052,396.3548,237.77217,32.401245,56.59819,3.841 2052,532.7473,200.06416,28.388184,68.90764,3.811 2052,-5.486721,212.23376,17.605711,46.055542,3.782 2052,213.13155,211.09595,37.392838,72.74698,3.767 2052,461.2677,-33.473454,29.132935,70.64846,3.757 2052,436.47333,-5.498369,34.07077,60.612198,3.728 2052,228.87476,211.09094,36.97357,74.67212,3.711 2052,375.8829,241.25479,36.743256,56.62494,3.703 2052,441.283,3.0404377,23.37027,39.073853,3.691 2052,280.66434,217.41637,20.479279,34.990524,3.637 2052,549.4781,183.96552,30.368713,72.394684,3.623 2052,426.8819,-15.914653,16.473663,36.18602,3.606 2052,27.051975,-11.828668,15.902775,34.29352,3.572 2052,10.87941,-34.149147,58.38958,135.25034,3.483 2052,-5.4299474,185.3815,18.381346,43.43521,3.448 2052,197.51878,211.51384,36.945633,71.5052,3.448 2052,2.168442,490.00906,20.025852,42.362885,3.424 2052,6.4449263,-33.203354,27.580399,74.57441,3.421 2052,367.17767,271.39926,24.952026,42.286346,3.4 2052,34.632046,-11.773555,16.1427,33.832233,3.395 2052,27.203112,1.8718491,18.670115,32.101162,3.356 2052,531.89886,-136.90497,115.699524,274.01324,3.334 2052,19.46614,1.7357655,18.61502,33.170288,3.312 2052,3.1690478,203.89047,39.801792,85.31174,3.293 2052,278.23746,220.62544,28.556793,57.56569,3.288 2052,246.14885,209.41138,36.460526,77.45456,3.282 2052,262.69702,207.9726,35.329712,79.37463,3.244 2052,87.97171,174.20058,61.295654,111.42247,3.228 2052,348.486,229.51921,34.578094,59.864456,3.219 2052,-9.514617,-6.7013245,40.249744,101.15055,3.217 2052,34.916393,-0.5446625,18.865871,33.37387,3.214 2052,456.98425,-3.7900372,22.67517,38.086555,3.199 2052,13.532984,-12.778255,30.120829,60.612915,3.166 2052,99.09737,-14.337503,16.307709,37.34538,3.151 2052,508.76236,203.0885,29.148468,69.20947,3.149 2052,202.2888,224.47229,19.957275,27.215332,3.149 2052,322.8754,227.87433,42.08905,80.68005,3.144 2052,293.74612,208.60858,35.43933,80.53162,3.139 2052,54.94793,174.7276,63.341103,112.12039,3.133 2052,-0.21803737,-18.596394,26.06723,66.65112,3.129 2052,6.5721393,171.04431,59.672886,118.0654,3.124 2052,422.2856,-33.568672,28.436462,70.77337,3.095 2052,618.2724,489.60358,21.017212,43.5802,3.076 2052,251.64705,219.28004,16.758224,28.62233,3.065 2052,90.65823,-15.028291,16.32705,38.12563,3.047 2053,-4.73981,-15.929548,16.42912,40.824833,7.337 2053,-10.96575,-31.207197,29.153257,70.32945,6.117 2053,627.02435,-17.930887,17.51593,46.294537,6.037 2053,602.4613,-56.441116,53.81671,134.9735,5.793 2053,4.2377005,-13.221205,14.976331,36.37879,5.703 2053,-9.06509,464.32007,37.89656,92.867065,5.581 2053,-6.006727,490.5497,18.277874,40.67984,5.526 2053,585.23224,-93.8707,74.72284,226.13045,5.405 2053,626.25323,487.25662,21.104614,46.405,5.179 2053,-17.21687,-63.52804,55.888405,144.02362,5.143 2053,449.46347,180.7831,35.186127,84.286606,5.013 2053,613.3312,455.70834,38.701965,105.819305,4.979 2053,583.34644,411.9343,71.36279,176.29019,4.977 2053,622.76465,-33.389103,26.664795,75.16226,4.967 2053,-21.836838,402.4091,79.51138,175.36978,4.886 2053,-72.65426,266.4345,200.40732,460.805,4.874 2053,401.84543,245.95834,34.78598,61.470215,4.808 2053,-36.00369,-131.03172,116.61473,278.89206,4.79 2053,-71.38396,-189.22163,212.30774,457.16467,4.71 2053,490.15866,-179.45468,234.6547,425.16876,4.672 2053,536.5077,311.22293,142.95593,340.97104,4.622 2053,506.12927,-10.739975,35.46399,63.51095,4.512 2053,107.45529,0.5977535,18.394485,34.227715,4.493 2053,186.13496,233.80368,18.932663,25.898132,4.399 2053,593.87476,-42.7275,45.052734,95.53428,4.363 2053,350.34283,207.2058,29.573883,67.222244,4.333 2053,493.23697,227.08191,237.87338,514.9964,4.283 2053,356.8048,222.70074,29.98581,63.845276,4.228 2053,107.140594,-13.044021,16.222809,35.650845,4.122 2053,59.386497,-12.443593,15.458176,34.486443,4.05 2053,3.9908094,1.0863781,16.213596,32.25865,4.02 2053,170.3887,229.3004,19.513275,28.211258,3.99 2053,99.01119,-11.867963,16.42701,35.480873,3.893 2053,385.21027,243.79353,37.421112,60.0616,3.853 2053,309.14304,209.37067,35.73471,78.80191,3.845 2053,75.06592,-14.476079,16.067749,35.468906,3.821 2053,177.56937,231.67416,19.955933,26.9357,3.792 2053,194.23247,232.63232,18.387589,27.268951,3.77 2053,91.03067,-13.435027,16.23317,36.01351,3.721 2053,67.157616,-12.529564,15.90303,34.252464,3.7 2053,11.173744,-13.792942,15.513508,35.296494,3.675 2053,519.2036,-2.1894093,25.040833,44.284058,3.671 2053,-5.5035343,203.43077,18.845171,46.58133,3.661 2053,2.0033526,-39.730312,42.651455,97.88509,3.632 2053,45.437206,-33.90426,28.64169,70.24769,3.623 2053,11.7695,-31.297794,55.89843,126.76163,3.59 2053,241.80481,216.68736,20.850891,32.659378,3.58 2053,594.6812,24.123226,33.239197,73.03859,3.566 2053,498.73407,-15.386091,17.787476,40.304523,3.562 2053,115.352745,0.37368965,18.342308,34.3892,3.561 2053,513.01373,0.083049774,32.944885,83.18819,3.537 2053,99.44762,0.38783455,18.149231,35.667213,3.501 2053,-5.105657,137.84721,16.761688,39.483337,3.487 2053,294.62015,207.73682,34.98166,82.96625,3.486 2053,420.215,236.488,33.584076,59.78409,3.438 2053,619.1245,-18.336489,17.36084,44.07783,3.436 2053,376.11417,251.89117,35.27542,63.73181,3.434 2053,331.89624,207.38644,16.8667,28.035583,3.431 2053,262.45587,201.2667,35.482025,77.17444,3.417 2053,-5.45111,4.247444,17.359371,38.42503,3.415 2053,495.0758,-35.243786,28.662842,77.31814,3.41 2053,505.39325,-16.428658,19.158203,43.481277,3.409 2053,-1.7020833,-18.155666,27.391771,66.4279,3.404 2053,523.6236,-32.17851,31.126404,74.93998,3.398 2053,615.024,-19.571001,27.121948,72.637215,3.395 2053,164.98108,219.4352,29.393448,44.84468,3.385 2053,75.95485,0.5727205,17.422676,31.769222,3.368 2053,338.87958,227.74013,41.92267,83.021164,3.347 2053,202.91165,233.04445,17.972565,27.813553,3.336 2053,91.66355,0.15896034,18.41436,34.712738,3.332 2053,324.91492,208.96991,28.19043,59.945374,3.322 2053,249.78136,217.90172,20.117966,31.812286,3.301 2053,490.77197,-17.543718,17.112274,40.631,3.251 2053,573.9816,-10.969948,55.19812,111.933975,3.24 2053,-8.936939,-4.9531326,39.17595,98.44474,3.237 2053,612.3215,57.333847,37.914062,111.57625,3.237 2053,83.241776,-13.177032,16.270508,35.04938,3.232 2053,43.554535,-14.656673,15.570213,36.638733,3.23 2053,51.679478,-12.895742,15.255535,34.548634,3.224 2053,211.2446,223.1693,18.222687,29.229538,3.212 2053,462.1914,182.72566,37.748016,77.31331,3.211 2053,530.55096,-130.77638,116.07001,263.63968,3.211 2053,354.3311,236.45476,42.279785,95.301956,3.208 2053,616.2616,34.614616,22.979248,58.98384,3.206 2053,520.8751,-16.370785,19.552856,44.36135,3.198 2053,225.663,214.63782,20.137146,31.885437,3.16 2053,218.14958,214.78622,18.924622,31.515182,3.156 2053,2.3762684,492.50116,18.95137,39.436707,3.141 2054,-5.2338333,-16.618362,17.108143,41.296486,7.201 2054,398.03772,257.1808,40.22751,81.11624,6.332 2054,-10.834623,-32.429955,29.280365,73.077705,5.948 2054,626.9487,-17.925293,17.404907,46.701794,5.943 2054,-12.187171,478.65402,30.473839,62.381134,5.863 2054,-6.1990933,489.67136,18.697128,41.444794,5.863 2054,602.6479,-55.73906,53.00946,134.13942,5.408 2054,426.74503,254.18813,35.73935,62.94426,5.402 2054,585.6238,-96.09589,74.45264,228.07935,5.225 2054,622.63116,-33.595596,26.663757,76.25155,5.216 2054,621.5963,476.1651,29.008484,68.199646,5.051 2054,461.42755,244.52263,31.084717,62.138657,5.026 2054,583.1648,411.54413,71.51361,176.67719,4.995 2054,-72.73252,265.62253,200.64862,461.78543,4.962 2054,-17.685345,-63.78997,55.90972,147.78847,4.946 2054,3.332132,-14.986115,15.813007,37.85568,4.911 2054,-21.705734,402.78854,79.29892,175.00583,4.858 2054,536.4568,311.17877,143.09131,340.38525,4.702 2054,129.22626,222.61557,33.850845,47.813812,4.636 2054,-36.497025,-131.30794,116.98944,280.88113,4.63 2054,-71.073296,-188.89273,211.99707,456.03067,4.602 2054,489.85654,-178.1549,235.38748,423.43234,4.569 2054,152.50053,233.09877,22.429428,30.809036,4.562 2054,493.52075,227.00803,237.46008,514.7119,4.404 2054,219.14453,223.16956,17.828552,27.29544,4.212 2054,227.05031,223.41168,18.62268,27.638672,4.186 2054,614.88947,-19.400793,27.134583,73.3116,4.149 2054,75.52177,-1.9163723,18.618736,36.55581,4.147 2054,593.6048,-43.18083,44.587585,95.67897,4.124 2054,-5.3168488,69.40161,18.153637,47.04238,4.109 2054,1.0202748,191.73645,19.581663,52.857437,4.108 2054,260.48474,206.38393,37.714844,70.3752,4.108 2054,234.85077,222.7212,19.417389,28.77739,4.079 2054,442.2266,254.3531,33.6427,57.983475,4.006 2054,242.44826,222.60739,19.877762,29.454773,3.948 2054,203.84697,222.29526,16.706604,27.128845,3.934 2054,497.39365,166.43463,32.91751,89.999115,3.778 2054,211.4662,222.81572,17.012634,27.110245,3.765 2054,127.63207,230.08276,24.068886,32.25183,3.708 2054,-4.1884236,186.27802,17.547352,42.849014,3.702 2054,357.46994,216.06165,27.912628,68.30371,3.699 2054,143.33932,220.92963,24.957855,37.236237,3.675 2054,1.9485855,491.64874,19.776718,40.070618,3.619 2054,145.2168,240.50475,21.891891,29.517502,3.597 2054,-5.385821,168.59358,17.976,44.745163,3.582 2054,619.2344,-17.915216,17.271301,44.196907,3.543 2054,3.8993847,190.98741,38.663506,99.03047,3.535 2054,408.956,229.41582,57.659668,118.48744,3.531 2054,244.10402,192.3592,40.69255,72.337204,3.52 2054,67.046364,-15.398652,16.523735,37.6827,3.502 2054,381.76694,269.6917,33.66617,74.23761,3.467 2054,325.14157,199.97762,36.89612,78.48195,3.458 2054,59.13137,-16.143227,16.379028,38.75844,3.45 2054,-5.814086,151.1882,18.021149,44.77275,3.447 2054,91.312035,-1.2353153,18.816818,34.099495,3.44 2054,83.28139,-1.6714001,18.706512,35.82422,3.438 2054,12.009606,-31.824863,57.532776,134.74425,3.416 2054,250.06721,223.84001,20.245346,30.160324,3.38 2054,277.25854,203.30315,35.801178,75.55519,3.348 2054,195.85793,221.98566,16.964783,26.68042,3.343 2054,309.72467,199.66096,35.633545,79.38576,3.339 2054,587.337,-17.818,31.838257,72.82028,3.338 2054,74.81688,-16.045544,16.848045,37.96266,3.324 2054,-5.2252293,1.6302719,17.273134,44.582077,3.317 2054,228.90457,207.1388,39.33023,63.615143,3.308 2054,90.630844,-15.252936,16.744995,36.833622,3.301 2054,-9.691301,57.33367,28.241379,67.844406,3.283 2054,162.28441,225.34708,41.236435,81.02203,3.279 2054,293.9459,202.37117,35.86371,76.722824,3.266 2054,118.749306,210.59811,32.56243,53.589294,3.231 2054,98.924576,-14.591437,16.527855,36.214863,3.227 2054,67.64396,-2.6732025,18.100365,37.730648,3.219 2054,-4.804471,43.302635,15.837531,40.702843,3.197 2054,475.2742,245.20653,33.167236,63.88365,3.194 2054,530.6503,-133.48796,115.718994,267.17807,3.167 2054,394.3495,210.14581,56.355408,118.715576,3.159 2054,-8.273025,183.9042,37.285103,97.81271,3.156 2054,147.07793,220.33946,40.924866,67.29567,3.135 2055,214.88557,219.9654,23.961655,42.337097,11.134 2055,626.78845,-16.910765,17.045776,45.796467,7.24 2055,-5.452729,-17.656054,17.35252,42.355736,6.102 2055,-6.1486053,490.27957,18.341587,41.11844,6.047 2055,-10.921184,-32.2254,29.24791,73.12893,5.918 2055,421.4453,169.94118,30.178802,83.18196,5.91 2055,622.657,-32.667492,26.595825,75.57862,5.736 2055,602.35297,-55.399963,53.43689,137.94173,5.578 2055,-8.957673,464.54517,37.745003,92.30481,5.424 2055,-17.512661,-63.6988,56.332737,144.64923,5.118 2055,431.67505,287.34167,39.20938,81.90613,5.076 2055,612.8591,454.57068,39.542664,107.13257,5.057 2055,626.36285,487.7945,21.088562,46.335022,5.053 2055,585.5935,-98.05162,75.472534,233.0425,5.039 2055,-72.640305,265.8672,200.66002,461.45215,4.969 2055,583.1062,411.61597,71.66907,176.52075,4.951 2055,514.95776,271.59662,33.6933,69.08441,4.885 2055,536.66864,310.4757,142.81451,341.40186,4.81 2055,-21.835056,402.5054,79.35913,174.75284,4.759 2055,-36.509396,-130.69313,116.81978,279.7483,4.65 2055,474.46765,281.9711,35.56964,65.03818,4.613 2055,490.34235,-178.393,234.54108,423.2939,4.569 2055,-70.793724,-188.64404,211.73999,455.77408,4.482 2055,493.68362,227.05045,237.06436,514.8236,4.453 2055,228.0476,209.0446,38.419342,69.88869,4.233 2055,214.18022,212.1791,36.30748,69.675064,4.21 2055,3.0096574,-15.600075,16.613047,39.441414,4.159 2055,341.68594,206.56631,37.748505,82.69943,4.076 2055,457.02988,283.19818,36.85373,66.47595,3.992 2055,620.0514,-2.9559917,18.184204,40.93376,3.978 2055,325.38965,201.07492,37.654633,77.268005,3.957 2055,616.48737,-18.562725,25.663818,73.490425,3.906 2055,419.31775,297.66028,37.157745,70.62274,3.817 2055,244.01233,208.04175,37.387177,71.07727,3.762 2055,134.70403,232.95657,24.067047,37.038757,3.752 2055,490.15213,283.1262,36.236908,63.06836,3.747 2055,68.691475,218.37921,33.721825,57.204468,3.723 2055,11.381386,-35.032104,57.805763,130.27977,3.72 2055,357.12738,199.68178,39.489075,83.169846,3.714 2055,1.8880415,-41.326744,43.233944,99.23715,3.707 2055,430.81445,232.5592,27.471039,72.23273,3.679 2055,354.21735,213.6752,17.745544,29.251617,3.624 2055,92.68284,200.43929,32.23369,70.09325,3.593 2055,-9.559335,-7.442169,40.21721,100.86656,3.585 2055,475.94824,235.44286,54.359436,119.35942,3.555 2055,2.4090023,492.13113,18.701372,39.710846,3.542 2055,80.94304,228.81242,36.675056,55.08821,3.529 2055,10.074444,-16.598913,17.569214,40.208622,3.514 2055,260.3922,207.41179,37.921417,71.42851,3.51 2055,309.6776,209.53156,37.065613,78.204346,3.319 2055,209.24492,205.30261,61.81041,151.4674,3.298 2055,479.09393,251.89096,28.318848,64.65546,3.297 2055,42.27467,-41.053993,59.622837,133.35278,3.297 2055,198.03474,206.48425,39.20227,69.12225,3.295 2055,428.59634,223.27231,56.185394,128.93015,3.295 2055,-5.5396423,151.31895,17.774284,45.191345,3.277 2055,386.99487,256.02744,40.629944,94.24515,3.271 2055,-4.8434277,-0.1586914,17.576056,44.779327,3.247 2055,-6.87346,195.99695,36.915783,103.05316,3.246 2055,580.45685,45.797688,29.841675,59.526028,3.178 2055,447.81232,295.69785,37.09552,71.0708,3.164 2055,398.4856,227.26085,55.256165,126.87038,3.15 2055,367.97562,218.0852,49.555573,124.17523,3.149 2055,456.3127,247.18411,61.013275,142.79425,3.144 2056,435.35526,259.43668,28.06015,86.55643,16.882 2056,-5.657343,-18.215267,17.828424,43.654266,7.996 2056,623.1791,-33.36617,26.104858,76.111115,7.754 2056,627.2066,-17.877033,16.964783,47.102375,7.605 2056,4.4782677,238.7424,18.401928,36.969543,7.301 2056,-10.970391,-32.078625,29.45721,71.48436,6.389 2056,-6.065568,489.36072,18.608868,42.123657,5.866 2056,-11.902483,477.8358,29.95067,62.841827,5.616 2056,121.51223,223.75096,36.651237,66.64781,5.568 2056,402.55365,233.31947,28.885193,77.59648,5.414 2056,-3.3718967,236.30058,16.234411,38.595657,5.335 2056,355.0561,199.83617,16.685974,29.55455,5.274 2056,612.9701,454.43182,39.694946,107.50116,5.266 2056,626.86816,489.28235,20.39856,44.99408,5.238 2056,602.72656,-56.413593,53.08191,130.74979,5.087 2056,616.5713,-19.035774,24.084167,69.04241,5.074 2056,193.0496,207.32718,31.9673,76.09708,4.992 2056,583.30066,411.1109,71.51514,177.53693,4.987 2056,585.51746,-97.50756,75.31012,231.18854,4.974 2056,-72.53514,266.56476,200.34903,460.80377,4.896 2056,-17.602907,-63.872025,56.07451,145.48328,4.885 2056,-21.601833,403.04675,78.973694,174.41418,4.818 2056,537.0426,310.42953,142.17725,340.78506,4.66 2056,-36.649326,-130.60616,116.52524,281.86417,4.649 2056,-71.37761,-188.94955,212.02765,455.11435,4.602 2056,602.8571,-15.12438,16.229004,41.97322,4.596 2056,594.9543,-14.245755,16.256592,41.559666,4.541 2056,619.26074,-5.295084,17.743713,41.977974,4.462 2056,490.0595,-177.77847,234.80951,423.1728,4.385 2056,192.99696,203.63358,21.93718,46.849854,4.385 2056,587.03937,-14.876078,16.193542,41.306473,4.347 2056,281.0272,215.4923,20.454224,38.23793,4.305 2056,493.42862,226.74976,237.31668,515.25696,4.299 2056,429.71777,226.37114,30.423248,79.39491,4.261 2056,606.319,-34.113983,26.79181,76.67703,4.176 2056,324.5805,203.03949,14.994354,23.21669,4.149 2056,3.0180793,-16.618122,16.686136,40.546925,4.137 2056,236.72224,199.66559,15.007217,27.400864,3.989 2056,348.6751,201.91116,15.831299,26.323456,3.97 2056,-5.489341,-1.3860703,18.08989,44.546124,3.905 2056,452.31677,289.5431,31.168182,73.33374,3.883 2056,579.37494,-14.236042,16.149048,40.135345,3.87 2056,563.9724,320.93326,31.552307,57.781403,3.869 2056,529.4118,246.53067,35.016174,80.94476,3.853 2056,582.56384,-16.178658,27.699768,66.41763,3.827 2056,342.50705,195.22107,34.62494,79.31683,3.786 2056,332.24915,203.57172,14.752686,23.181473,3.778 2056,611.2416,-14.625371,16.26062,41.63281,3.708 2056,358.1197,203.3243,36.11908,84.3109,3.695 2056,590.703,-34.463997,27.2016,77.44054,3.681 2056,76.80001,-18.152342,30.467941,67.03494,3.658 2056,627.929,-0.5528927,17.196411,47.61039,3.65 2056,207.7009,253.00966,23.94458,50.34404,3.64 2056,229.23999,198.39168,15.785721,28.56282,3.64 2056,195.19177,239.24557,33.824966,67.72354,3.558 2056,571.3263,-14.554866,15.981506,40.333706,3.535 2056,243.81273,199.34894,14.67424,27.89151,3.531 2056,570.35,0.7502861,19.5531,50.10149,3.499 2056,234.34033,-18.66414,17.478088,43.689438,3.495 2056,4.5432806,255.90195,16.124859,29.619385,3.483 2056,2.3230314,491.02374,19.439209,40.414246,3.423 2056,326.48944,201.52289,35.85739,81.563354,3.414 2056,-5.0128336,72.6547,17.098225,42.115936,3.41 2056,442.96002,268.70328,31.788513,87.423035,3.394 2056,135.54968,209.48666,22.85437,47.20584,3.378 2056,-9.783169,-7.306694,40.048523,101.55051,3.368 2056,563.62067,-1.0089302,17.82257,40.501762,3.365 2056,227.00624,-17.014257,17.28064,42.587875,3.363 2056,361.9022,202.41087,18.471588,34.522156,3.359 2056,42.838306,-15.517429,16.639404,38.99047,3.329 2056,11.333699,-35.64951,57.732075,137.92688,3.313 2056,265.41928,-2.3549366,21.561523,35.707382,3.302 2056,249.82552,-18.791943,18.179611,42.03366,3.294 2056,254.68947,-34.84756,28.460678,72.94898,3.277 2056,531.0685,-14.176943,16.257263,40.327442,3.275 2056,288.85263,215.49818,20.057251,38.781067,3.274 2056,265.94745,-17.881254,17.81131,40.099014,3.271 2056,340.29282,202.35857,15.307098,24.853348,3.258 2057,505.27188,286.68225,41.85556,106.60556,18.966 2057,434.8921,260.11252,30.364532,74.95764,10.803 2057,-5.6957207,-18.706297,17.852139,42.4586,9.144 2057,622.8685,-33.74027,26.912292,76.58787,7.677 2057,627.0246,-19.899353,17.477905,49.432514,7.266 2057,-10.879655,-31.990955,28.977188,70.981285,7.222 2057,585.1183,217.19974,20.649658,41.222595,6.635 2057,192.82509,215.3938,18.848785,34.81366,6.309 2057,-5.809102,490.25595,18.295494,41.468414,6.172 2057,621.9863,476.7511,28.82489,67.49652,5.911 2057,-8.7528,464.90228,37.834103,92.31836,5.905 2057,2.7065444,-18.275198,17.468218,40.624493,5.613 2057,-11.435583,479.33475,29.07917,61.911163,5.122 2057,-72.46332,266.7372,199.93472,460.57175,4.933 2057,602.7795,-56.847324,53.296204,130.7793,4.894 2057,-21.723675,402.80786,79.35472,174.74097,4.858 2057,-20.064602,-87.66307,71.9369,197.172,4.837 2057,583.54846,410.01172,71.562744,178.30841,4.703 2057,537.47864,310.93304,141.66681,340.0197,4.692 2057,-36.542446,-130.91238,116.52641,280.53665,4.628 2057,585.89844,-98.46448,75.09369,230.61105,4.605 2057,-71.07017,-189.32379,212.5075,455.91312,4.583 2057,490.9815,-180.4583,233.79846,425.6171,4.547 2057,593.7217,-43.409126,45.174683,91.24591,4.528 2057,493.633,226.52774,237.43463,515.1726,4.332 2057,590.16534,-16.666622,29.797607,66.724556,3.857 2057,619.1697,-20.193192,17.661316,47.201927,3.85 2057,595.3331,-3.6498833,18.731018,40.54343,3.836 2057,201.33206,214.68152,17.008926,31.713928,3.833 2057,251.94604,207.34187,14.724304,27.3703,3.803 2057,-9.906113,-22.464996,38.6049,102.83977,3.796 2057,602.6043,-4.947321,18.835754,40.82808,3.794 2057,221.10185,211.56133,15.614639,30.889877,3.792 2057,9.943709,-19.211987,17.882053,41.524742,3.791 2057,-0.53925633,-22.432533,26.004177,68.308304,3.744 2057,-5.3162107,0.94055367,17.595798,40.765976,3.654 2057,154.77756,228.01015,19.349182,29.812546,3.613 2057,244.76999,206.55167,14.273956,28.205292,3.606 2057,273.7658,-15.750952,18.090942,39.048676,3.564 2057,593.28174,223.16092,21.379944,41.87195,3.556 2057,237.16287,205.79362,14.592941,29.585052,3.539 2057,179.75,221.12994,18.053116,30.196869,3.497 2057,263.48068,-32.729713,27.64264,68.71573,3.431 2057,250.02783,-17.800714,17.527893,40.166626,3.403 2057,2.3956375,491.21606,19.066324,40.607605,3.386 2057,281.94177,-16.688078,17.503601,39.502728,3.371 2057,266.17712,-17.314842,17.998718,38.823555,3.346 2057,229.02397,207.92639,37.34938,73.086365,3.324 2057,545.2337,210.39836,19.88617,35.86075,3.318 2057,234.41267,-18.860474,17.560349,43.202747,3.299 2057,618.7507,488.94922,20.543274,44.031616,3.298 2057,228.39465,212.21654,14.945801,28.639679,3.289 2057,5.387273,467.79224,38.039806,95.32312,3.272 2057,495.9749,249.78737,65.1817,175.7783,3.267 2057,170.8739,220.15262,17.981812,31.176437,3.252 2057,1.7861938,-41.932175,43.23069,100.73766,3.239 2057,-4.315395,169.46866,16.894806,42.186005,3.237 2057,245.70773,218.90729,13.12677,25.863953,3.234 2057,9.500585,-93.85823,74.81803,210.9299,3.226 2057,226.9444,-16.964575,17.597763,41.949142,3.198 2057,586.8315,-16.15347,16.086609,40.15597,3.197 2057,485.42545,296.9023,44.23343,101.84845,3.197 2057,258.11826,-17.36287,17.755829,39.180305,3.194 2057,266.6289,-2.7752838,21.137451,35.111107,3.192 2057,-3.868612,217.44145,15.466295,39.02333,3.187 2057,-5.484741,329.61066,17.756416,40.275574,3.182 2057,212.58969,209.27272,38.64116,70.18315,3.158 2057,580.3321,212.02313,19.14795,34.744522,3.157 2057,-4.4647512,89.64905,16.27903,40.40738,3.151 2057,163.77428,230.19896,41.58464,106.1053,3.146 2057,122.15667,-18.653254,17.820763,42.236168,3.134 2057,105.909805,229.271,20.966377,30.948547,3.125 2057,-4.43274,72.918755,16.341663,41.414314,3.102 2058,504.61475,284.7317,45.056213,93.69055,16.882 2058,-5.245137,-17.099655,16.885914,41.623905,7.442 2058,-11.02887,-32.316982,29.362629,72.71126,6.081 2058,-11.750456,479.42776,29.829311,62.226044,5.824 2058,613.0888,456.34955,38.632446,105.74719,5.472 2058,626.78906,487.665,20.503357,45.970734,5.468 2058,626.9836,-17.526789,17.276611,45.483055,5.463 2058,-6.232567,490.57538,18.653511,41.012207,5.414 2058,602.5715,-55.081787,53.406067,133.60599,5.399 2058,585.36926,-95.81997,74.56476,227.43356,5.285 2058,622.6209,-33.9049,26.510254,74.978615,5.12 2058,-20.212345,-87.21239,72.15907,196.42818,5.097 2058,-72.91548,266.075,200.95535,462.19543,5.062 2058,583.2431,411.70233,71.99127,176.97272,4.849 2058,524.3922,298.01035,25.477234,57.697205,4.775 2058,-21.748371,402.71033,79.415565,174.62885,4.766 2058,3.6171901,-14.090752,15.590241,37.663998,4.751 2058,-36.56616,-130.00052,116.41055,278.05377,4.744 2058,537.3408,311.4192,142.18628,339.29712,4.651 2058,-70.89064,-188.9094,212.41603,456.11658,4.648 2058,369.92023,214.33559,19.718292,32.642227,4.53 2058,490.1694,-179.13435,235.08316,424.96017,4.506 2058,493.9441,227.461,236.98035,514.67163,4.393 2058,170.35333,227.61559,19.330902,33.510544,4.255 2058,363.30054,214.78397,18.794647,30.89038,4.236 2058,613.6242,-18.784012,28.254822,70.42494,4.164 2058,194.04214,214.47426,18.165344,31.18483,4.131 2058,519.1666,269.11627,57.25891,115.85239,4.096 2058,496.29285,254.8457,65.82617,162.4881,4.06 2058,594.067,-41.529327,44.158813,95.04802,4.041 2058,281.37317,-17.551184,18.72232,40.552284,3.932 2058,10.475292,-15.4928875,16.216675,38.522953,3.928 2058,451.5297,233.74007,40.47943,88.20958,3.841 2058,229.93384,218.40085,13.835709,25.93782,3.783 2058,573.608,12.2120285,54.16632,147.26227,3.768 2058,493.64224,290.0562,36.87619,75.821014,3.708 2058,458.95447,231.12767,18.358093,36.499405,3.681 2058,265.96066,-17.251585,18.453522,39.08544,3.628 2058,237.13007,218.52356,13.3242035,24.82811,3.598 2058,252.4339,212.30463,14.992859,30.367905,3.567 2058,514.9541,234.43584,32.875732,67.2903,3.565 2058,347.30453,211.0578,18.770172,30.593048,3.522 2058,465.95697,231.43811,19.349457,37.518494,3.519 2058,273.36096,-16.1894,18.828125,39.04152,3.509 2058,128.0823,218.5117,22.838364,41.9626,3.505 2058,-9.898923,-20.311188,39.015602,99.71511,3.486 2058,612.7927,-0.18257904,36.877686,104.83262,3.468 2058,254.18329,224.31877,13.895386,28.751923,3.446 2058,619.0291,-17.8574,17.26764,43.65628,3.438 2058,9.184359,-92.746445,74.72951,209.24294,3.434 2058,379.0337,176.02731,18.236816,35.42534,3.384 2058,155.04312,227.34712,18.755936,33.093735,3.38 2058,436.0896,223.52238,40.113464,81.95094,3.323 2058,-5.509381,198.3377,18.376347,44.898773,3.315 2058,-1.48669,192.78813,53.37407,130.09315,3.307 2058,2.3699415,492.29437,18.930054,39.855347,3.305 2058,603.8677,27.062119,51.2959,143.09312,3.305 2058,556.7932,-15.741646,56.016357,118.71571,3.292 2058,234.56708,147.9001,19.109665,37.16635,3.254 2058,500.69608,225.51534,29.795807,70.684555,3.247 2058,273.11935,201.99203,60.75641,160.03299,3.246 2058,1.7849851,-40.792458,43.50295,100.76551,3.217 2058,517.17194,1.0604362,29.828064,63.67188,3.213 2058,468.19818,244.10185,33.430054,64.09328,3.212 2058,618.2322,30.272285,19.812805,46.773537,3.212 2058,10.463898,177.29369,58.13591,111.586685,3.209 2058,270.6807,-32.633736,27.874268,68.688065,3.208 2058,30.790745,-16.24619,29.205357,61.94605,3.205 2058,228.76665,141.8866,17.699753,31.61444,3.202 2058,-4.8288717,1.429491,16.699703,40.720566,3.2 2058,517.98615,309.32834,36.402954,80.20175,3.191 2058,530.59045,-134.0683,116.51495,266.2114,3.183 2058,43.836815,3.3045502,18.884598,37.634476,3.18 2058,27.35389,-15.459284,15.893761,37.08507,3.168 2058,585.60376,2.8321,22.659119,47.02613,3.161 2058,433.49988,226.83943,20.222076,35.616745,3.16 2058,221.37709,219.38669,14.58754,25.923874,3.146 2058,128.41779,232.26529,43.523514,78.5184,3.138 2058,43.08456,-14.797909,15.745796,36.8698,3.114 2058,208.1056,203.11621,62.264664,159.04486,3.107 2058,592.9479,10.702997,22.433167,45.962906,3.103 2058,618.99286,489.14615,20.09076,43.570526,3.097 2059,0.63299894,248.69186,24.639904,54.521545,17.309 2059,481.93088,235.16641,21.198578,40.79431,8.712 2059,528.18115,226.11824,23.69165,34.08928,8.386 2059,-5.622158,-17.44805,17.654331,42.103973,7.126 2059,-11.339548,-31.555141,29.79446,72.17612,6.571 2059,622.46466,-34.119724,27.386963,78.29997,6.166 2059,112.982475,228.89224,21.363243,49.311554,6.143 2059,626.5986,488.43423,20.491272,45.25479,5.991 2059,627.1968,-19.254745,17.434204,48.949345,5.886 2059,489.26825,240.35957,19.678589,37.675156,5.686 2059,-9.010722,465.15076,37.82957,90.78143,5.443 2059,612.90686,455.1413,39.208374,106.503174,5.418 2059,129.80356,229.35597,22.74205,46.29399,5.412 2059,-6.28031,489.6519,19.013714,41.87912,5.396 2059,282.50113,-15.956958,16.664886,38.371223,5.284 2059,-73.037735,265.38092,201.20467,463.2785,5.213 2059,602.6049,-58.096085,53.548096,133.6838,5.149 2059,585.8977,-98.31388,74.68768,230.24377,5.141 2059,615.40643,-20.53403,27.028748,74.93425,5.054 2059,473.73706,242.32236,21.170288,35.591003,5.022 2059,172.34184,212.66106,19.143997,32.01001,5.016 2059,583.0532,412.05206,71.58972,176.16266,4.944 2059,569.8461,185.44461,32.735596,77.7413,4.931 2059,-17.30916,-62.39057,56.551277,142.53377,4.921 2059,121.78684,230.139,21.928917,47.15924,4.873 2059,491.08868,-181.2616,233.77557,426.90546,4.865 2059,-21.661808,403.17267,79.219604,174.0669,4.819 2059,496.8025,225.03568,20.007935,33.35019,4.742 2059,536.46924,311.24396,143.82764,340.82574,4.741 2059,593.5024,-45.2029,45.44287,94.11378,4.577 2059,1.4061129,233.42734,39.143322,77.09195,4.543 2059,-71.03626,-189.01242,212.33902,455.60294,4.539 2059,275.03726,-14.696138,16.890503,37.249847,4.533 2059,-9.942578,254.39627,30.223846,63.663696,4.532 2059,-37.20716,-129.98926,117.0854,278.98996,4.515 2059,494.1134,226.9318,236.83386,515.0741,4.422 2059,103.58014,225.26462,23.726768,42.837738,4.402 2059,460.4709,232.53815,31.681976,51.624695,4.358 2059,244.895,215.56947,15.242294,28.227875,4.305 2059,531.0597,-13.778086,32.460938,67.98716,4.284 2059,84.59449,220.79881,31.086288,55.69313,4.225 2059,2.6913512,-15.848228,17.009636,38.91613,4.089 2059,221.21286,220.65298,15.350876,26.578156,4.04 2059,522.6389,-16.552979,17.936768,42.758907,3.995 2059,117.73712,205.66673,38.647278,70.9615,3.911 2059,291.02405,-15.750505,16.331879,37.92436,3.91 2059,371.28723,212.11853,19.824585,31.674332,3.899 2059,518.71924,-2.4338074,29.184143,66.258965,3.87 2059,-14.466171,231.81221,50.453297,123.69182,3.86 2059,267.30664,-16.503273,17.325989,37.226257,3.844 2059,-4.5570173,249.09702,20.330116,45.52484,3.807 2059,508.41406,-13.812103,31.29419,70.894394,3.805 2059,377.61746,213.3984,20.511261,35.443542,3.8 2059,-5.5662813,274.55212,18.292027,42.17572,3.738 2059,97.2175,223.37804,22.028305,37.684097,3.73 2059,299.21637,-16.702345,16.30304,38.23599,3.713 2059,7.4345922,224.91084,59.35543,95.758896,3.709 2059,547.6859,-16.74046,32.148987,63.82495,3.707 2059,529.064,-5.5849705,22.172485,47.913544,3.692 2059,619.04565,-19.837786,18.118286,47.25295,3.648 2059,482.3425,220.427,40.447235,66.10791,3.64 2059,3.3725185,-1.7489643,17.789612,37.927994,3.627 2059,10.210551,-17.025269,17.48936,39.56744,3.614 2059,-5.5386305,184.38788,18.74619,44.149826,3.611 2059,228.04536,220.40733,15.761078,26.827393,3.611 2059,271.06378,-34.12261,27.16858,66.621086,3.587 2059,-5.425249,103.99031,17.843979,44.735474,3.576 2060,139.57668,217.79425,18.170502,34.89508,12.834 2060,599.2532,231.00584,23.448486,44.0623,11.423 2060,85.497215,219.56837,22.103828,36.623978,8.613 2060,-4.7651405,-17.443216,16.507061,41.965183,8.166 2060,33.60102,240.33557,33.14765,64.74396,7.735 2060,4.3360033,239.01538,32.10611,63.72003,7.297 2060,622.5148,-33.675865,27.524292,76.259544,6.694 2060,-10.548787,-32.01804,29.25455,71.99008,6.669 2060,80.06612,225.06528,22.330002,46.542816,6.012 2060,387.06055,213.3995,19.556458,40.71393,5.754 2060,627.1982,-19.692755,17.710815,48.215683,5.669 2060,-8.8065195,464.9945,37.744392,91.76056,5.652 2060,-6.2499547,490.41544,18.674675,40.911102,5.631 2060,373.10352,216.95157,16.744171,32.12123,5.515 2060,74.446686,217.2507,22.614708,44.342743,5.47 2060,626.4714,487.26315,20.807556,46.884674,5.382 2060,612.7685,456.35635,39.143738,105.30423,5.332 2060,58.23295,221.55579,33.41107,64.647095,5.229 2060,-72.90603,265.57996,200.78876,462.43542,5.144 2060,602.8857,-56.96968,53.692444,130.67935,5.084 2060,379.27185,216.66342,18.041412,34.922043,5.014 2060,583.2336,412.98956,71.21155,174.99896,4.955 2060,0.88493824,247.10521,24.111591,45.689346,4.941 2060,585.7868,-98.19058,74.932495,228.79195,4.938 2060,593.34357,-45.15865,45.177673,92.712776,4.898 2060,-17.224176,-63.286118,56.04782,144.52745,4.855 2060,-21.726866,402.71838,79.314064,174.84741,4.807 2060,491.23978,-180.67342,233.4938,427.02292,4.803 2060,3.7239547,-14.559267,15.154219,37.922085,4.796 2060,512.6962,241.34666,19.856934,33.188248,4.782 2060,614.29846,-22.266958,28.081665,73.838806,4.615 2060,574.99243,235.35864,29.156616,65.06,4.6 2060,536.5828,310.90695,143.0907,340.69766,4.538 2060,65.090675,217.2355,22.51603,46.62085,4.53 2060,-37.13166,-129.27444,116.42747,279.49283,4.483 2060,-71.01335,-188.57553,211.82762,454.85422,4.448 2060,94.932175,220.16835,20.65345,35.425903,4.434 2060,580.62085,226.36505,39.16809,87.31702,4.406 2060,490.40387,241.51215,20.077515,36.937134,4.348 2060,584.5956,234.80307,23.85968,46.092834,4.328 2060,493.94263,226.39899,237.04968,516.46454,4.315 2060,596.12933,224.70528,36.484924,90.52818,4.303 2060,21.330835,237.79889,32.824074,67.0116,4.275 2060,36.713596,208.50195,41.346745,75.33441,4.269 2060,132.46693,220.49716,17.864197,37.117096,4.167 2060,618.8473,-20.663048,18.852417,46.83545,4.11 2060,392.5743,215.64667,21.14093,44.703674,4.033 2060,-5.481221,204.0008,17.961885,40.497406,4.029 2060,211.34138,221.7253,17.267029,29.873062,4.019 2060,283.34842,-16.557955,16.118195,39.790356,4.018 2060,291.48965,-16.156963,15.956696,39.844463,3.998 2060,219.88432,222.82948,16.52568,29.598846,3.996 2060,145.061,214.87315,19.060165,32.814407,3.938 2060,204.0998,222.19049,17.552002,29.180283,3.929 2060,615.0895,224.13728,23.434143,54.29503,3.848 2060,-6.038387,248.92668,19.149567,41.32106,3.802 2060,226.45456,219.79634,18.332367,31.45491,3.769 2060,229.93762,201.90428,36.77478,78.1089,3.744 2060,573.5622,-16.38815,31.20636,65.032936,3.703 2060,483.88855,246.67209,19.303314,33.688904,3.695 2060,305.01578,221.7441,21.143707,37.176987,3.695 2060,253.2888,218.33948,14.351395,24.884033,3.685 2060,-0.4857874,221.07849,49.896286,111.888916,3.639 2061,94.7083,209.5236,22.568611,43.48732,42.499 2061,2.6737976,208.60168,20.12809,46.230698,21.431 2061,14.064406,206.87991,22.673103,47.11238,11.441 2061,8.616543,214.81883,21.109503,47.5663,10.239 2061,-4.226754,213.147,18.39986,46.0755,9.577 2061,618.54364,251.25986,21.197632,48.85431,6.865 2061,-5.4558063,-17.909988,17.296644,41.697758,6.721 2061,-11.016917,-31.578367,29.221188,71.80876,6.465 2061,623.3803,-34.23936,26.13623,75.71938,6.317 2061,379.7674,214.03526,18.911438,33.029175,6.157 2061,4.0303802,206.77568,36.34671,78.62779,6.075 2061,386.5545,212.74127,19.374512,34.93257,5.94 2061,-11.962305,478.4395,30.094595,62.15912,5.875 2061,-6.2032356,489.61966,18.874546,42.44101,5.834 2061,627.0832,-19.100582,17.54358,47.36568,5.411 2061,-73.19403,265.41998,200.95142,462.65448,5.216 2061,593.6731,-45.871063,44.852234,93.65924,5.204 2061,603.0897,-56.80531,53.447388,130.5558,5.194 2061,21.964554,208.52335,23.540741,49.838196,5.187 2061,585.775,-96.95931,74.876465,226.11609,5.176 2061,102.72264,206.79109,22.191261,44.035385,5.159 2061,3.0380077,229.14163,19.248386,46.120544,5.035 2061,583.1326,411.83563,71.50726,176.42126,4.988 2061,-17.303673,-63.42749,55.78344,144.88757,4.973 2061,490.829,-180.28156,234.45956,426.61087,4.967 2061,613.12933,454.6957,39.123474,107.43063,4.945 2061,-8.39591,215.009,37.60807,89.87677,4.905 2061,2.9987288,-16.622124,16.47285,38.55958,4.871 2061,626.3552,487.303,21.067993,46.497406,4.861 2061,-21.854225,402.08438,79.41406,175.22897,4.845 2061,536.3198,310.60046,143.44434,341.52478,4.722 2061,408.55637,213.57356,22.212677,45.918716,4.696 2061,-8.607245,185.75139,30.220299,66.48508,4.453 2061,493.55746,226.0841,237.64182,516.0548,4.409 2061,-4.547996,190.95337,18.600306,41.77838,4.258 2061,82.78664,212.67772,25.090347,43.904434,4.243 2061,393.26294,213.30577,19.80893,37.029892,4.23 2061,-38.051586,-129.63483,117.409256,282.06918,4.227 2061,112.03568,208.99791,23.042717,41.961945,4.225 2061,-70.14954,-187.47519,211.44135,454.02744,4.157 2061,-4.5346575,233.56172,17.636898,44.548813,4.118 2061,187.9349,216.32942,18.344421,29.274506,4.093 2061,371.71478,213.73572,19.051971,32.707413,4.087 2061,85.84607,206.07584,38.349487,65.07895,3.965 2061,186.39508,204.7059,20.38144,30.76088,3.837 2061,212.33905,189.8654,39.01831,75.410355,3.82 2061,277.56128,208.91254,28.766907,56.78705,3.687 2061,590.1717,246.41612,26.565125,56.049606,3.663 2061,424.54697,214.9171,23.013916,45.06099,3.662 2061,294.56592,-34.892036,28.9068,71.535286,3.638 2061,-4.6689,154.47025,17.349667,42.105515,3.628 2061,31.356953,214.8805,22.277737,47.50128,3.611 2061,192.71646,209.71352,20.679825,33.022232,3.604 2061,2.3874884,490.83258,19.280754,41.44879,3.559 2062,44.63457,198.85538,28.182583,56.116425,27.961 2062,31.718697,195.25587,30.675331,62.915817,18.94 2062,276.82812,212.33418,28.591309,61.661453,8.394 2062,78.93265,193.22737,24.068771,49.112564,8.115 2062,273.5645,217.021,22.552002,41.499573,7.854 2062,178.9551,210.58514,19.761475,35.993073,7.596 2062,202.50287,213.1993,18.625992,35.75093,6.321 2062,-5.3783665,-18.341015,17.255959,42.7793,6.174 2062,622.7544,-33.006577,26.731323,78.087524,6.031 2062,627.01056,-19.163242,17.456299,49.34113,5.963 2062,-6.3301744,489.3821,19.066652,42.344025,5.928 2062,-11.137442,-33.143726,29.561712,72.50663,5.89 2062,22.416142,202.96033,30.218334,60.68808,5.734 2062,-12.201444,477.419,30.546345,62.946777,5.527 2062,394.4612,211.2093,18.668427,36.614227,5.264 2062,585.4367,-97.05963,75.237976,226.9722,5.249 2062,-73.16943,265.02615,201.14572,462.7568,5.238 2062,626.46533,487.4574,20.720886,46.468506,5.174 2062,264.04083,199.74605,35.226562,79.238144,5.156 2062,613.06775,454.5149,39.33606,107.317444,5.154 2062,490.67603,-180.21802,234.36609,427.50882,5.115 2062,194.83502,211.7885,18.249023,36.47995,5.11 2062,451.47125,187.7923,30.816895,68.912476,5.08 2062,-17.534513,-62.69065,56.607765,141.7163,5.02 2062,583.06647,411.5425,71.58081,176.65707,4.939 2062,4.331006,198.87045,38.86938,79.45792,4.91 2062,-21.842758,402.0118,79.33636,175.54514,4.813 2062,269.5855,40.29284,28.625671,78.62283,4.779 2062,602.8578,-57.220764,53.341614,136.84442,4.737 2062,-70.739685,-188.60791,212.1447,455.2455,4.734 2062,536.34796,310.48138,143.54095,342.08575,4.699 2062,184.30011,203.17644,22.180023,32.686478,4.657 2062,171.54465,211.35828,19.698883,35.17476,4.612 2062,138.89693,213.69406,19.0775,32.39273,4.59 2062,1.8679571,210.20255,21.214157,41.014816,4.519 2062,493.46878,226.17789,237.45334,515.67175,4.449 2062,55.0737,187.10579,23.433624,49.23526,4.392 2062,65.594986,209.15346,42.62847,77.87541,4.281 2062,49.559555,199.68097,41.06671,70.12952,4.259 2062,2.8049474,-16.612629,16.767866,40.516705,4.249 2062,228.32863,189.91644,39.07698,75.05505,4.246 2062,293.1684,199.98431,35.453094,84.34393,4.222 2062,211.9383,191.32854,39.36612,73.175064,4.221 2062,287.3756,215.56628,23.972137,51.5932,4.205 2062,34.091713,202.12625,41.934334,81.13272,4.186 2062,-38.35976,-127.88885,117.41548,283.03534,4.185 2062,387.22595,210.56914,18.653809,36.86142,4.183 2062,114.72526,206.88638,20.290977,35.483948,4.108 2062,594.0334,-46.142365,44.911926,98.01626,4.104 2062,362.2784,206.29437,19.851776,32.194794,4.086 2062,-14.941253,173.36734,50.880398,126.09265,4.067 2062,-9.606178,-4.187481,39.657047,99.74562,4.056 2062,146.10913,213.23965,18.910843,30.049774,3.99 2062,413.4886,196.3156,27.225525,58.255554,3.964 2062,197.0799,201.6178,38.34726,74.631714,3.915 2062,410.94424,204.72324,20.597992,41.727448,3.905 2062,206.71664,208.41533,22.752365,34.149017,3.875 2062,301.27576,204.96034,26.290619,48.85518,3.758 2063,7.0150495,191.43265,27.640701,67.867035,13.051 2063,22.924185,197.14511,22.54006,48.174835,10.996 2063,434.62762,206.618,20.498444,42.6615,9.216 2063,191.87894,213.18178,22.790924,37.90364,6.963 2063,168.02458,202.13165,23.217056,36.68985,6.621 2063,-5.3551903,-18.161562,17.610126,44.563705,6.303 2063,162.64792,210.51157,21.646057,35.155563,6.228 2063,527.7464,202.30167,33.66992,68.95798,6.216 2063,-6.306315,489.76974,19.131786,42.77115,5.899 2063,-10.883927,-33.43479,29.587341,74.72975,5.769 2063,623.0765,-33.638832,26.32257,76.46252,5.759 2063,176.5694,212.10306,22.440598,37.64737,5.709 2063,-9.289965,464.24338,38.032085,92.30881,5.682 2063,284.54236,137.67986,17.168243,46.21257,5.645 2063,-5.998698,187.74454,36.05474,89.28604,5.331 2063,627.20087,-18.785107,17.249268,47.72397,5.315 2063,2.8947878,204.06366,38.650948,90.8681,5.292 2063,-6.684929,191.6347,20.203773,47.297028,5.279 2063,-73.096985,265.16193,200.74553,462.42877,5.209 2063,180.02545,188.82985,38.837753,76.17906,5.145 2063,154.75656,211.96712,20.737885,32.23651,5.069 2063,583.0416,412.1419,71.59271,175.98676,5.03 2063,585.7375,-99.09507,75.201294,230.93213,5.02 2063,491.64276,210.94337,17.629974,40.506454,5.01 2063,626.3661,487.0989,21.00232,46.863434,4.995 2063,613.0175,454.27902,39.270935,107.87326,4.93 2063,-21.808525,402.4396,79.41339,174.88687,4.812 2063,490.2457,-180.76782,234.87119,425.35318,4.799 2063,370.80533,212.18237,19.721985,33.55101,4.727 2063,186.16408,217.82658,19.726578,36.633545,4.72 2063,536.2618,310.57764,143.8695,341.8435,4.714 2063,-17.3189,-62.38719,56.7558,141.30708,4.708 2063,115.778656,210.21368,16.290329,27.28299,4.706 2063,603.1322,-57.39313,53.379944,135.87988,4.7 2063,-70.50107,-187.7981,211.98967,454.46994,4.618 2063,450.86786,218.4975,18.798706,40.840363,4.599 2063,54.3108,196.03468,29.396622,58.430466,4.558 2063,-5.146762,212.05937,18.645538,46.12294,4.534 2063,27.410154,197.68773,28.696001,61.476303,4.529 2063,493.64606,226.23239,237.15717,515.916,4.507 2063,139.5686,208.82896,20.046585,33.03395,4.499 2063,170.51852,217.03806,19.07779,33.42891,4.371 2063,474.35367,213.16089,18.662933,40.13237,4.37 2063,457.86197,213.50894,17.802856,39.610214,4.364 2063,363.38986,206.77957,18.960571,33.382126,4.328 2063,482.9413,206.43575,19.693268,44.354553,4.291 2063,145.52258,201.383,21.18161,34.198486,4.254 2063,247.94385,-2.2391891,28.209015,66.0179,4.226 2063,-38.343307,-128.70456,117.39758,285.18484,4.218 2063,212.42288,188.73856,39.21608,80.199005,4.212 2063,593.92145,-45.59803,44.93872,96.52895,4.207 2063,123.75043,215.24828,16.845184,30.65335,4.2 2063,195.68681,189.42216,39.42929,77.34889,4.195 2063,-9.045009,-5.342224,39.5141,99.76058,4.178 2063,-15.220151,125.89548,51.52871,136.78506,4.115 2063,498.75443,211.75432,18.192719,39.57985,4.112 2063,293.7779,204.89426,28.34198,60.683563,4.11 2063,0.13534307,164.71996,28.67965,78.28575,4.084 2063,71.50082,208.54015,22.886086,37.434982,4.06 2063,34.10914,206.37888,42.381386,83.34247,4.015 2063,467.07596,213.09793,18.908386,40.58522,3.989 2063,11.520433,181.42702,52.21752,100.94652,3.96 2063,164.23502,177.23633,40.594376,75.127655,3.903 2063,293.41824,-15.572758,29.875336,69.73292,3.796 2063,427.6081,217.61693,18.48294,42.434464,3.764 2064,135.74493,214.25104,24.3824,40.973083,8.661 2064,532.7169,201.50423,28.375671,71.35713,7.038 2064,-6.1614695,489.29797,18.809475,42.66638,6.933 2064,-11.743899,479.43835,29.845673,61.948547,6.482 2064,627.458,-17.113628,16.872559,45.162235,6.385 2064,623.0175,-34.166412,26.182312,76.78525,6.223 2064,112.94745,214.87766,22.870361,38.211166,6.207 2064,88.62881,219.42464,23.817665,36.37274,6.042 2064,-12.613307,-38.645874,42.05061,98.0368,5.782 2064,72.852875,219.6178,22.51635,37.828186,5.613 2064,515.152,217.91968,17.805786,36.42102,5.48 2064,626.3812,487.4542,20.948181,46.00003,5.446 2064,155.23149,209.14395,30.934158,48.87973,5.414 2064,121.82117,218.4111,20.46408,36.62816,5.168 2064,-72.85973,265.60284,200.27774,462.226,5.113 2064,176.14386,212.9932,32.78247,48.46277,5.084 2064,583.1509,412.49933,71.4917,175.74176,5.042 2064,-4.964681,198.30893,18.149168,47.784576,5.033 2064,612.9671,454.6786,39.302795,107.445435,4.944 2064,-21.754337,402.9486,79.19838,174.51428,4.871 2064,107.381775,226.16605,18.585396,34.35794,4.849 2064,585.4222,-99.67567,75.71478,232.10123,4.841 2064,506.8,208.71211,17.770264,35.991592,4.825 2064,-6.146966,-17.810005,18.60799,44.473488,4.81 2064,-20.255177,-86.67655,71.83588,194.37764,4.782 2064,490.30154,-180.76071,235.1907,426.38422,4.746 2064,536.2931,310.68488,143.74426,342.10822,4.711 2064,129.93497,207.12224,22.075455,40.107773,4.676 2064,380.51968,218.08185,18.18863,35.041687,4.558 2064,493.90924,226.34119,236.88971,515.3737,4.531 2064,603.2252,-56.768517,53.138855,138.09068,4.522 2064,131.85782,190.70993,41.628067,74.299164,4.463 2064,489.99023,203.70139,18.819244,43.570343,4.454 2064,620.12244,-16.268688,16.02472,40.94114,4.441 2064,162.34555,193.53305,42.44223,72.96118,4.397 2064,-37.376972,-127.77042,116.97214,276.8476,4.393 2064,-70.67707,-188.16498,211.64319,454.6083,4.362 2064,2.3822494,490.42697,19.373308,41.799896,4.336 2064,498.52066,206.64839,18.196014,39.709885,4.328 2064,510.15967,226.29944,15.425598,35.914734,4.235 2064,-8.822632,-4.6121826,39.40322,96.849525,4.211 2064,1.9472325,195.17569,19.97745,54.31363,4.21 2064,262.21832,201.95999,36.745575,81.85062,4.164 2064,530.7864,203.16008,20.016663,47.50003,4.141 2064,82.04541,224.03175,21.035454,38.858597,4.109 2064,520.1548,207.59056,25.866882,60.328903,4.077 2064,294.2826,208.68181,34.967346,83.84883,4.067 2064,228.01022,188.0679,41.207367,74.57297,4.05 2064,483.9068,212.36386,17.03714,42.740005,4.02 2064,144.99515,226.18234,20.064178,32.131012,4.02 2064,211.99959,188.51482,40.85176,73.396164,4.02 2064,98.69068,224.73592,19.392593,36.286057,3.872 2064,153.60948,226.65802,20.250244,32.89096,3.834 2064,412.99716,218.24081,30.095856,65.37164,3.818 2064,170.94727,-14.294631,16.73912,36.383495,3.817 2064,102.835785,204.02551,28.868805,50.6512,3.816 2064,277.31967,200.54762,35.932312,83.59541,3.808 2064,269.49973,20.155022,26.894135,71.1684,3.778 2064,141.40536,192.44295,53.42885,93.51579,3.751 2064,237.44308,-15.746967,54.949554,118.39717,3.75 2064,594.34125,-47.092415,44.585266,100.34156,3.652 2064,-14.716645,147.63747,48.20034,145.45238,3.649 2064,246.94441,199.67825,37.33394,78.06384,3.622 2064,144.07855,209.3656,23.622498,39.674377,3.617 2064,178.95537,-12.529174,16.194702,35.202923,3.544 2064,75.580635,180.44629,56.29516,100.952515,3.529 2064,143.88573,196.6614,62.08745,163.06668,3.521 2065,491.28058,212.16743,21.82306,51.079147,47.063 2065,104.952965,215.80707,24.382301,45.639954,11.453 2065,40.64675,213.6592,23.979141,41.97444,7.371 2065,-10.964522,-32.01239,29.585548,72.96327,7.266 2065,-5.713613,-17.082415,17.697412,43.065968,7.14 2065,-6.210684,489.50928,18.81057,42.213867,6.125 2065,73.85631,210.62373,22.954826,37.561737,6.004 2065,-11.828385,478.39194,29.694744,62.323822,5.726 2065,626.52765,487.3805,20.742126,46.52722,5.493 2065,627.4781,-16.518429,16.756653,45.12779,5.388 2065,610.6847,-48.50594,42.093384,101.054535,5.309 2065,266.82574,226.13054,21.22638,40.570877,5.077 2065,-72.916954,266.34326,200.36565,461.12732,5.05 2065,2.9130769,-14.081243,16.582224,39.915264,5.047 2065,583.1135,412.47498,71.48425,175.66382,5.034 2065,-17.065598,-61.12136,56.519024,141.20944,5.014 2065,490.69214,-181.00546,234.95776,426.37183,4.912 2065,612.9913,455.27658,39.124084,106.58707,4.897 2065,4.0925527,-4.213253,31.296886,64.705574,4.845 2065,-21.805342,402.71085,79.34821,174.62918,4.828 2065,502.39017,209.23341,22.406525,47.524857,4.822 2065,585.93713,-100.5646,75.02106,234.8334,4.761 2065,536.3173,310.89078,143.58508,341.5378,4.721 2065,28.915909,209.88873,32.072956,62.67801,4.498 2065,493.9997,226.11807,236.88214,516.0762,4.474 2065,282.70697,133.12708,19.269165,49.860382,4.432 2065,619.76697,-16.414785,16.8031,41.21714,4.334 2065,-37.87734,-129.55482,117.73631,280.91342,4.279 2065,1.6963899,2.2258492,22.04661,44.868046,4.196 2065,261.29633,202.94116,36.045654,81.74646,4.186 2065,-71.06477,-187.9187,211.94559,453.22934,4.139 2065,86.14343,203.66177,30.428078,50.742416,3.981 2065,-8.632851,-4.2999153,38.31378,97.09248,3.958 2065,312.61374,219.44702,20.089478,39.545807,3.953 2065,-5.3054867,185.70294,17.571802,41.541183,3.946 2065,138.41705,227.5413,20.367142,37.38109,3.912 2065,10.363396,-15.417507,17.009222,40.334385,3.839 2065,486.20807,201.66574,34.899292,72.546844,3.833 2065,-14.641261,169.64102,48.94024,134.49146,3.822 2065,4.624296,199.4362,36.828957,91.033066,3.806 2065,138.52127,-16.251453,17.459274,40.768024,3.638 2065,230.08676,200.58124,37.327972,75.22455,3.566 2065,74.657776,225.2583,20.75985,34.430298,3.557 2065,506.30466,-16.579422,17.381989,38.143063,3.496 2065,90.0306,211.2387,20.972542,31.912155,3.488 2065,120.77936,222.06409,21.824493,41.36734,3.486 2065,303.91333,214.38124,24.999634,56.334152,3.468 2065,-8.759121,121.30366,38.589516,100.47155,3.46 2065,0.5513537,208.03806,26.750883,71.04828,3.447 2065,212.80043,185.1661,39.755707,76.63913,3.433 2065,52.97859,186.57877,39.400112,74.44559,3.43 2065,2.4030595,490.36032,19.274565,41.7623,3.42 2065,489.79083,-18.272842,18.916931,42.49136,3.411 2065,12.376456,-12.923618,32.464355,62.9844,3.41 2065,522.42175,-14.387117,16.67743,38.047096,3.396 2065,247.60072,200.46277,36.145584,80.137146,3.365 2065,128.1902,218.82474,22.425018,40.48642,3.352 2065,92.54347,-12.429815,30.133621,63.253242,3.329 2066,525.9401,210.53491,30.884583,58.234314,83.386 2066,56.633102,221.53316,24.22425,39.155197,12.308 2066,551.5583,200.02902,29.828186,62.83966,11.84 2066,79.824745,214.43373,24.416931,41.749985,11.155 2066,72.541374,223.81796,24.99498,41.287933,8.494 2066,47.8725,223.14128,25.231243,43.511948,8.191 2066,509.83932,208.92369,34.19583,60.812668,7.757 2066,36.023376,217.25124,32.01863,57.546036,7.74 2066,63.489937,213.15964,24.57795,43.28769,7.632 2066,291.86456,-0.2650299,29.700928,72.132805,6.783 2066,277.51294,-1.6249046,29.951324,75.8273,6.556 2066,-6.364491,488.54395,19.21987,43.76007,6.414 2066,539.09656,205.93732,31.078247,62.537964,6.385 2066,-11.878329,477.13403,29.881714,63.500793,6.354 2066,-6.286536,-17.49617,18.809582,43.14421,6.301 2066,-11.577461,-31.219584,29.94675,69.85305,6.213 2066,622.43353,-33.814594,26.503235,74.12404,6.204 2066,591.2946,191.97198,27.56604,62.35771,6.2 2066,250.51103,217.5088,18.47078,34.344727,6.102 2066,261.69916,1.3881836,29.179901,66.06693,6.09 2066,626.7185,487.7123,20.346191,46.10898,5.709 2066,244.23624,213.5483,17.856323,31.223557,5.657 2066,627.0093,-18.607094,17.27649,45.831173,5.42 2066,-17.151058,-63.751244,55.614246,144.81262,5.385 2066,491.0459,-184.10484,234.81738,428.76932,5.213 2066,-72.97555,265.8205,200.90237,461.85248,5.201 2066,1.7410004,-16.22628,18.038235,40.8202,5.198 2066,91.946686,217.62997,32.908035,58.816833,5.144 2066,36.90341,188.73071,41.49623,73.62579,5.132 2066,-4.6101513,153.017,17.398872,41.90628,5.112 2066,583.07874,412.10345,71.526245,176.13629,5.034 2066,612.95074,455.37936,39.08612,106.42166,4.995 2066,266.15945,232.53966,21.734344,41.16057,4.941 2066,535.92596,309.81445,144.8631,342.5382,4.905 2066,514.6653,212.52736,40.981873,93.64458,4.89 2066,-21.867685,402.15115,79.35877,175.38412,4.816 2066,63.328075,228.8646,24.098568,44.41217,4.814 2066,86.58652,219.5675,25.217003,42.718567,4.797 2066,586.5467,-102.3721,74.29077,236.29468,4.778 2066,450.45636,218.94798,21.736145,44.050613,4.767 2066,67.13158,206.53746,40.697647,71.830826,4.696 2066,4.3489923,199.13164,38.4243,84.63304,4.686 2066,-5.1997,185.09354,18.422606,42.227295,4.686 2066,51.43006,204.97513,41.071053,71.805725,4.683 2066,602.81384,-56.75765,53.286255,134.94968,4.656 2066,494.6048,227.02524,236.29364,514.75195,4.637 2066,116.711815,217.44754,31.634056,54.901398,4.583 2066,81.86324,148.12256,27.979294,70.55426,4.551 2066,241.50311,-15.957819,19.250153,40.12582,4.541 2067,575.0614,210.99814,30.380005,64.80069,84.455 2067,28.61969,201.18243,31.597397,65.83783,12.772 2067,13.530144,202.15515,29.724716,64.77875,11.153 2067,4.853882,209.35124,29.994732,72.77681,10.021 2067,235.2282,215.96384,17.275131,34.81421,9.802 2067,426.29916,220.87607,21.938263,42.925873,7.818 2067,496.12482,222.714,22.022278,43.241745,7.726 2067,-5.925804,-19.941093,18.074102,44.396202,7.523 2067,-11.265436,-32.298786,29.073732,69.427925,7.076 2067,241.37466,215.89764,17.997711,37.07289,6.66 2067,299.4314,-1.9392433,31.095795,68.35132,6.177 2067,-10.227957,205.12238,28.858595,67.32733,6.166 2067,593.2219,208.52228,37.755005,62.223328,6.119 2067,588.7658,209.42487,26.736877,49.861786,6.089 2067,35.334976,197.5455,37.0381,87.18277,6.027 2067,-5.360622,202.90387,18.654144,42.14766,6.007 2067,-6.161731,488.649,18.748001,43.19586,6.003 2067,587.2673,-1.1957016,30.84198,65.67373,5.935 2067,-11.663988,477.72565,29.477707,63.31427,5.787 2067,37.660217,200.94766,24.338417,42.660614,5.618 2067,610.72644,-47.436657,42.266785,100.96877,5.52 2067,-17.42481,-64.60754,55.85459,143.36655,5.505 2067,626.63416,488.11035,20.502686,45.82715,5.497 2067,564.6567,-4.7038,32.706665,71.90582,5.414 2067,418.32794,228.18704,21.05716,40.48172,5.328 2067,2.7945006,207.705,21.272434,48.85234,5.325 2067,260.62344,226.70822,28.438385,62.347534,5.316 2067,491.09058,-184.6128,234.35352,429.594,5.266 2067,613.1437,454.8714,39.07733,107.04932,5.204 2067,-73.49735,265.77512,201.29605,461.32693,5.14 2067,-12.280288,174.65076,47.86117,129.39545,5.137 2067,63.33293,131.97807,33.276657,71.67236,5.081 2067,16.764927,184.61658,46.79099,107.44757,5.067 2067,583.1811,412.45352,71.4209,175.65378,5.064 2067,585.87787,-102.11312,74.28479,239.67545,5.057 2067,-4.551542,186.9096,16.631569,41.92694,5.0 2067,9.721424,204.11032,22.739288,47.29785,4.994 2067,-21.830746,402.32687,79.43164,175.18204,4.904 2067,613.17755,217.58951,35.91089,105.13568,4.88 2068,224.8233,218.00133,20.69899,39.702103,14.572 2068,620.7148,215.70544,20.292175,64.73758,10.65 2068,245.99638,212.04599,22.315964,43.180145,8.144 2068,-5.5349727,-18.17049,17.666666,43.929565,7.649 2068,-10.767115,-32.693306,29.44004,72.57729,6.665 2068,233.13768,215.45854,20.569809,38.288483,6.632 2068,440.62515,217.76866,22.56894,50.501144,6.393 2068,622.59607,-33.344677,27.199951,77.37216,6.054 2068,-6.2182565,489.25546,18.931896,42.300385,6.013 2068,39.17901,64.89658,23.087475,50.594772,5.877 2068,-11.864172,478.51337,30.016191,62.28253,5.825 2068,-17.62106,-63.783794,56.067608,146.1476,5.778 2068,514.8885,216.11041,31.64862,57.96817,5.778 2068,401.90497,224.56998,19.426971,35.41504,5.54 2068,14.800604,39.600014,52.982964,129.38287,5.333 2068,626.46643,487.41193,20.811768,46.512695,5.325 2068,602.6548,-55.415344,53.704773,137.09929,5.297 2068,474.0852,-14.396187,35.628784,63.615334,5.239 2068,613.2467,454.77866,38.931335,107.73074,5.201 2068,297.3606,271.26678,20.434967,34.800262,5.174 2068,627.0324,-18.561407,17.580872,47.41242,5.172 2068,238.23671,216.63586,32.54506,64.77579,5.147 2068,525.6325,218.01683,25.579224,43.20195,5.086 2068,-73.09731,265.83044,200.90532,461.33118,5.068 2068,402.83868,235.94582,19.525482,40.532303,4.969 2068,586.1023,-99.57149,74.52197,234.18694,4.96 2068,583.3326,412.2281,71.27832,175.90729,4.942 2068,491.14972,-183.41046,234.06073,428.31192,4.899 2068,456.09418,225.64107,24.53003,47.04396,4.897 2068,-21.79366,402.28036,79.45633,175.37906,4.889 2068,227.23589,214.74245,31.795456,61.08522,4.779 2068,613.0691,203.74347,33.281982,109.82153,4.778 2068,536.257,310.80762,143.73071,341.79144,4.702 2068,-5.4301805,203.03964,18.135773,39.94101,4.683 2068,219.98499,211.47446,19.886368,35.807434,4.58 2068,277.5739,103.88739,25.769348,75.98508,4.554 2068,494.003,227.1069,237.03021,515.25146,4.496 2068,22.053802,55.730232,33.013252,68.06088,4.486 2068,613.3105,-20.1806,29.483215,75.14463,4.482 2068,10.119543,-0.40034103,60.4429,115.21817,4.459 2068,-11.035652,182.01428,28.488228,66.79799,4.456 2068,-71.906876,-187.56642,212.67451,454.31635,4.424 2068,491.95563,0.108091354,31.088745,60.12567,4.384 2068,260.70865,-16.717794,29.937073,70.87514,4.378 2068,309.50748,-2.2635765,30.654144,64.703094,4.355 2068,594.4245,-44.733265,44.196655,100.50088,4.332 2068,-36.720463,-131.64014,118.63121,285.77237,4.309 2068,338.99823,219.91396,17.10556,28.875748,4.287 2068,244.80339,-19.753994,32.14308,71.32281,4.273 2068,212.8406,203.30286,38.65097,73.5621,4.264 2068,3.205818,-17.788979,16.722126,42.796757,4.221 2068,331.208,219.10527,17.92273,30.197388,4.215 2068,-5.6905437,56.6609,18.022104,41.100544,4.192 2068,0.7818651,229.18744,26.549343,72.74408,4.18 2068,218.56017,-17.303623,17.480408,41.772182,4.167 2068,356.44626,216.25313,16.83496,27.929153,4.159 2068,463.06064,-36.776867,28.870453,79.5047,4.155 2068,-4.835926,15.526138,18.100052,45.367874,4.14 2068,463.78586,230.98001,24.139984,48.582336,4.138 2068,242.85376,-17.242435,17.602112,42.14304,4.129 2068,360.48047,218.9031,18.81128,31.868073,4.115 2068,6.0559416,53.453648,30.692677,70.86063,4.045 2068,-14.83748,123.05581,49.81503,140.19482,4.014 2068,360.39258,231.77477,21.799652,34.52388,4.007 2068,618.177,239.00664,20.136963,58.648117,4.006 2068,250.8087,-17.87892,17.690323,44.07825,4.006 2068,276.93066,-15.973749,30.62854,70.68926,3.998 2069,455.27362,224.21991,21.382599,45.626007,34.054 2069,217.84705,219.67625,20.397247,39.316605,13.891 2069,225.20033,219.62312,20.912888,41.390854,13.482 2069,380.81982,221.36113,23.337341,40.94423,10.349 2069,-5.554146,-17.123302,17.683876,42.47448,7.064 2069,230.91692,222.95724,23.329742,43.43341,6.973 2069,419.9028,225.8702,18.86734,33.462875,6.844 2069,425.86002,231.93605,19.299957,32.296097,6.559 2069,-12.006628,477.8681,30.22885,62.769043,6.436 2069,-6.4139132,488.7761,19.279734,43.266693,6.251 2069,623.66187,-34.190437,25.67865,75.973625,6.106 2069,434.4439,225.22388,18.08789,32.62323,5.994 2069,-12.526995,-42.289734,42.083862,104.27194,5.926 2069,459.41907,222.43312,28.371124,60.32274,5.675 2069,384.72278,237.0436,20.498962,35.24547,5.414 2069,-5.162834,237.04546,16.280455,38.19777,5.35 2069,626.50726,487.1777,20.812378,47.01889,5.122 2069,-73.04756,266.37457,201.15936,461.55603,5.119 2069,604.0167,-55.914433,51.86029,134.80849,5.106 2069,613.40216,454.0939,38.78827,108.4332,5.018 2069,20.228462,23.692745,30.423183,86.23274,4.996 2069,583.3574,411.70468,71.29236,176.46512,4.977 2069,297.16418,295.22437,31.248535,59.734985,4.959 2069,469.97858,219.03072,29.547333,53.781418,4.939 2069,207.9529,215.12321,25.9301,47.836075,4.927 2069,6.728859,25.586922,31.382523,90.06697,4.889 2069,-21.900723,402.1562,79.51065,175.47668,4.885 2069,-4.920824,248.88695,17.780094,44.33943,4.854 2069,419.4905,241.28517,20.283203,32.23729,4.784 2069,627.2483,-18.501663,17.178589,46.73669,4.765 2069,536.3697,310.67245,143.66156,341.75174,4.752 2069,317.22397,-5.3874226,28.760468,73.63317,4.719 2069,24.502167,133.04515,32.892998,68.004135,4.679 2069,-36.513107,-131.9262,118.4327,287.54758,4.667 2069,373.3789,215.80733,35.943573,68.35127,4.666 2069,491.09024,-182.08047,234.58878,425.81012,4.645 2069,-5.5242987,37.04617,18.29129,48.245304,4.562 2069,494.2239,226.83191,236.63486,514.34644,4.503 2069,412.58197,223.30133,17.840118,34.413513,4.458 2069,12.092789,17.187798,52.536743,136.42065,4.446 2069,156.77621,-16.29066,56.18019,121.44621,4.404 2069,-71.67995,-188.41641,213.26698,455.30298,4.298 2069,-19.20401,-91.390015,71.46883,205.09874,4.287 2069,379.6914,248.34729,18.891998,33.28064,4.282 2069,3.2216084,-14.037928,16.771738,38.581142,4.258 2069,585.86115,-99.921265,75.34186,231.85487,4.227 2069,212.46448,210.03925,40.223633,68.16443,4.2 2069,27.017586,-12.0398655,16.04741,37.017277,4.187 2069,12.76916,127.34282,53.93236,117.02553,4.122 2069,442.70874,223.18579,18.459747,36.928528,4.079 2069,-9.748993,25.88741,28.694618,72.10872,4.07 2069,186.7898,-14.768974,56.65486,122.21679,4.04 2069,595.16504,-47.858025,42.579346,100.03572,4.021 2069,386.33273,218.63834,29.43631,52.58957,4.014 2069,-4.754731,183.66296,16.673168,44.599487,3.977 2069,299.02487,224.96988,32.13629,57.213318,3.974 2069,331.4066,224.42305,19.411926,31.138214,3.958 2069,433.70816,237.71593,22.53894,42.74614,3.907 2069,194.95241,-4.904228,30.618607,67.64496,3.898 2069,-5.9975777,104.49446,17.195633,41.969757,3.873 2069,445.35498,228.18576,30.04953,66.581726,3.867 2069,233.3419,224.6339,31.519882,58.328445,3.864 2069,-5.6580935,121.63399,17.39541,42.53592,3.826 2069,569.13324,252.87845,22.101624,37.900208,3.797 2069,221.26361,-19.935917,30.791672,67.0747,3.782 2069,485.54706,208.0136,29.439758,66.40199,3.778 2069,425.99033,241.24013,20.786133,38.58049,3.772 2070,480.20294,223.90302,23.21164,53.02414,36.198 2070,472.1658,217.0839,23.40866,58.91092,30.516 2070,408.2439,233.14128,20.866058,33.841995,26.121 2070,444.39285,226.47475,21.187561,39.958725,9.524 2070,-5.203542,-16.2208,17.463696,41.951157,8.548 2070,-10.804376,-32.332764,29.922539,72.69203,7.003 2070,489.90796,221.30508,28.814026,63.54007,6.317 2070,4.604224,25.479595,27.928635,78.85976,6.295 2070,15.162107,124.53937,36.900673,73.340515,6.107 2070,-6.2833905,489.20718,18.90911,42.65988,6.09 2070,199.5752,217.98598,26.619736,40.0345,5.939 2070,-11.945181,478.16736,29.934084,62.56299,5.789 2070,-17.736195,-63.34036,56.50971,147.21066,5.658 2070,415.1909,239.48288,21.88272,34.164673,5.503 2070,409.97876,246.45651,18.732025,32.813232,5.408 2070,627.27405,-18.735184,17.307556,48.239384,5.392 2070,295.89575,2.0471516,23.008636,49.449394,5.171 2070,603.8234,-55.84015,52.09729,135.34587,5.133 2070,613.2043,455.28802,39.023132,106.935974,5.128 2070,-73.005325,265.89386,200.98866,461.39557,5.111 2070,0.15261292,122.036514,29.784746,89.61948,5.031 2070,409.43518,220.75745,20.164429,34.28174,4.997 2070,626.68445,487.52905,20.518372,46.67737,4.993 2070,622.9971,-34.204315,26.707825,77.861824,4.98 2070,583.2252,411.91486,71.477905,176.40833,4.928 2070,297.73703,318.841,35.562347,73.96542,4.917 2070,275.13257,97.181015,28.302765,77.631775,4.871 2070,-21.923618,401.6817,79.48635,175.80646,4.859 2070,212.71158,218.8633,26.871994,41.743393,4.857 2070,415.04684,226.02747,20.43277,35.643066,4.807 2070,532.70654,-183.07112,148.74518,423.05624,4.748 2070,-36.694893,-131.4834,118.39541,285.67545,4.745 2070,536.4072,310.56262,143.60217,341.2439,4.736 2070,283.9881,219.85324,54.952087,112.860596,4.712 2070,379.7207,222.18446,29.521545,55.330673,4.694 2070,-4.9091215,2.9901924,17.535046,41.88176,4.683 2070,316.7404,-12.264713,30.844788,67.04055,4.574 2070,377.3227,234.314,21.71997,35.58014,4.57 2070,186.73386,-13.659504,33.065506,67.44604,4.565 2070,3.52453,-13.948428,16.752329,39.254475,4.521 2070,12.207322,119.50183,53.470978,120.34885,4.52 2070,494.42114,227.53787,236.60675,513.99036,4.51 2070,304.99496,2.0441017,22.591125,48.528114,4.484 2070,404.49033,234.69693,28.738861,51.897095,4.423 2070,585.95026,-99.69997,75.28754,233.5673,4.407 2070,-71.56923,-188.83545,213.09459,456.31976,4.397 2070,322.101,10.495438,31.617004,75.958755,4.379 2070,449.6737,230.54274,19.966034,49.93297,4.285 2070,283.30048,-14.448208,16.517395,39.29323,4.24 2070,207.8706,209.05086,45.198776,68.920975,4.201 2070,425.03528,239.07967,22.000183,34.781387,4.11 2070,-9.832555,116.1386,31.149822,77.16001,4.105 2070,510.94266,237.48164,26.751434,44.775925,4.099 2070,298.32986,-13.911487,17.130005,39.223244,4.056 2070,318.46707,218.27112,51.8396,101.58496,4.04 2070,464.64005,222.47275,26.078583,73.510376,4.012 2070,594.8653,-45.498013,43.60559,98.634415,4.002 2070,157.11736,-14.945667,57.29222,122.55629,3.983 2071,487.27264,221.26169,23.54718,61.132416,71.307 2071,495.83905,226.57849,22.337036,53.026825,48.94 2071,183.90277,219.4887,24.119858,42.937332,38.347 2071,465.67432,226.57108,21.267975,45.498535,18.713 2071,434.19522,228.58037,21.3031,40.516556,17.616 2071,201.09686,218.11649,22.878693,42.33719,10.514 2071,212.97626,218.11467,25.207611,41.98802,9.06 2071,510.3206,234.89604,23.44339,46.34218,7.322 2071,-6.121148,-17.795883,18.411346,43.54613,7.012 2071,-10.443101,-33.165543,30.00343,75.27307,6.945 2071,189.17493,219.1218,28.55687,59.763824,6.76 2071,0.19127727,15.895981,23.86127,86.19527,6.632 2071,622.56036,-33.191887,27.1734,74.04482,6.009 2071,474.59225,225.1865,22.710236,55.125214,5.699 2071,-6.269614,488.43594,18.970852,43.44638,5.686 2071,209.95734,216.66443,41.4097,78.35089,5.663 2071,603.1282,-55.13049,52.922485,135.37823,5.596 2071,-12.155088,477.0548,30.483397,64.109985,5.486 2071,221.0733,228.97006,25.43135,46.822754,5.394 2071,-72.9409,266.03943,200.88753,461.47607,5.129 2071,626.5211,487.67868,20.859985,46.58792,5.107 2071,626.6312,-19.336403,18.177063,48.62308,5.041 2071,583.18774,411.71634,71.49963,176.56326,4.895 2071,-21.844563,402.03864,79.48576,175.62225,4.89 2071,613.1121,454.49475,39.257996,107.41974,4.845 2071,491.21738,-181.877,234.04178,425.77844,4.809 2071,501.93423,214.01822,25.406952,61.912537,4.803 2071,-36.526665,-132.04262,118.06606,287.41727,4.773 2071,536.32007,310.38507,143.97705,341.419,4.736 2071,585.686,-99.70944,75.20953,234.01512,4.709 2071,-17.262205,-63.37522,55.929375,147.99472,4.583 2071,494.56653,227.95322,236.53241,513.79333,4.513 2071,-0.2560115,111.892685,34.583714,83.09898,4.489 2071,483.0011,213.48482,19.51419,46.730667,4.486 2071,-71.44947,-188.90039,213.28232,456.86987,4.482 2072,500.786,225.42145,23.276001,63.007263,66.713 2072,520.4734,223.6793,26.539062,61.603897,31.952 2072,164.15555,217.41139,25.976227,45.686935,21.607 2072,208.3533,215.866,24.015717,41.65741,20.998 2072,462.69254,224.71274,20.920868,43.566864,20.938 2072,510.906,223.09036,25.720154,64.31134,14.132 2072,-5.7279134,-18.21341,17.992374,43.021873,6.797 2072,209.99472,214.42351,34.359375,71.5544,6.604 2072,199.77438,213.12735,30.21341,64.512054,6.456 2072,482.37167,228.0042,20.374298,46.28099,6.401 2072,529.93085,221.88744,30.461609,68.45116,5.937 2072,-6.2414145,489.24426,18.615715,42.58087,5.935 2072,-11.963617,478.5066,29.844805,62.876038,5.903 2072,-11.319685,-31.629795,29.939981,70.78151,5.782 2072,392.00528,222.81987,22.928741,37.898483,5.758 2072,162.361,213.40613,39.490814,71.95886,5.394 2072,611.0705,-48.310738,41.47821,103.71971,5.369 2072,-4.401529,121.80568,30.570295,74.06491,5.308 2072,493.139,230.90366,20.497833,52.209625,5.226 2072,626.6296,487.809,20.572693,46.282135,5.211 2072,-72.628624,266.39154,200.44022,461.0954,5.062 2072,626.9432,-19.322119,17.53778,49.92937,5.045 2072,380.91373,211.40431,31.21576,58.09944,5.014 2072,613.1156,454.67725,39.185486,107.852905,5.002 2072,469.14746,223.80055,26.47049,54.37755,4.996 2072,318.04407,-1.6358337,29.053131,66.321915,4.942 2072,389.6867,203.53795,37.77881,73.5789,4.931 2072,583.25653,411.71396,71.37811,176.68356,4.927 2072,-21.767214,402.59714,79.40087,175.13797,4.879 2072,491.3899,-182.46735,233.83807,425.99136,4.773 2072,-36.06878,-132.01778,117.432014,282.31845,4.764 2072,585.3414,-101.204666,75.6015,237.67107,4.741 2072,-19.708384,-89.671585,71.739105,200.66782,4.74 2072,536.255,310.4328,144.12695,341.16125,4.685 2072,299.957,226.27223,29.979584,64.1013,4.637 2072,3.2826471,-16.763826,17.124935,40.937862,4.631 2072,-71.3017,-188.38977,213.02428,456.668,4.59 2072,406.4345,201.90714,36.901978,74.67877,4.573 2073,528.85144,225.38422,25.29663,64.32251,83.052 2073,506.14697,225.67798,18.87323,45.14258,57.656 2073,149.72128,217.37231,26.128342,41.77777,21.792 2073,137.01285,214.36794,25.679855,46.146805,15.982 2073,490.81577,225.89194,18.51117,41.49362,15.048 2073,208.5151,210.12202,22.515503,42.48787,14.371 2073,215.71957,215.19847,23.335571,42.133377,13.745 2073,537.177,225.44653,30.02179,65.60004,10.656 2073,499.0987,221.17508,19.263916,45.934082,8.852 2073,-5.1960907,-16.874504,17.226835,43.48235,7.509 2073,287.0614,216.15854,24.34732,44.0679,7.015 2073,509.76566,220.02972,23.874481,58.85611,6.984 2073,-10.887323,-32.819084,29.447668,73.58304,6.362 2073,627.12775,-18.928127,17.354675,50.981396,6.158 2073,-6.304101,489.01483,18.762602,42.5542,5.749 2073,615.4979,-21.558048,25.489075,83.5849,5.593 2073,602.41675,-56.5232,53.177673,141.25401,5.411 2073,-11.93892,478.42645,29.940678,62.37317,5.39 2073,131.70006,197.94112,42.04579,68.19655,5.335 2073,623.1338,-33.825737,26.38501,80.2041,5.255 2073,521.1053,214.69408,25.569092,67.27287,5.213 2073,3.2808745,-14.627816,16.189964,41.30346,5.211 2073,-17.640217,-62.886265,55.852573,144.88275,5.162 2073,210.49467,211.17935,41.432648,81.31207,5.105 2073,612.9161,455.3761,39.514343,106.69238,5.103 2073,-72.66054,266.72598,200.45679,461.19626,5.058 2073,585.44543,-101.69801,74.90607,240.21806,5.055 2073,583.3842,411.77173,71.20654,176.27484,4.974 2073,491.53885,-183.53003,233.95078,427.04172,4.883 2073,-21.83842,402.2719,79.44083,175.48248,4.861 2073,626.55994,488.09146,20.679749,46.158844,4.842 2073,-36.29339,-132.09395,117.463066,282.3845,4.771 2073,550.69574,218.7182,25.782043,63.438904,4.701 2073,536.4464,310.76813,143.92822,340.89056,4.636 2073,-71.54671,-188.0702,213.07718,455.52258,4.626 2073,389.39508,209.11311,37.220276,77.1357,4.467 2073,619.3712,-19.665407,17.247864,50.106667,4.462 2073,380.35764,211.05515,30.82611,58.713104,4.462 2074,119.206055,217.0433,21.973114,45.344696,61.251 2074,136.34102,219.65027,21.645615,41.99518,46.334 2074,574.6204,214.63116,24.490173,70.98886,40.745 2074,209.84167,215.11609,22.016602,39.74063,31.111 2074,515.9539,232.17172,19.24884,37.79242,27.698 2074,529.439,225.18198,21.485168,49.112244,16.277 2074,222.66228,215.07901,22.518097,40.190933,14.457 2074,263.11237,219.08266,25.262634,44.71196,13.933 2074,533.52594,222.7211,29.024536,64.525055,12.982 2074,520.4945,226.96025,22.067383,49.191574,10.866 2074,-4.9077206,-17.423912,17.12444,44.091507,8.042 2074,261.4491,215.64392,36.04608,81.723145,7.44 2074,562.27924,214.05962,25.180847,68.69524,7.403 2074,-10.466,-32.7154,29.617867,72.90282,7.149 2074,508.44232,234.30612,19.349548,40.53409,6.685 2074,498.82208,235.87764,20.354614,36.694412,6.443 2074,613.2449,-4.5227203,25.775757,97.266075,6.241 2074,211.35072,213.42363,40.584396,73.579666,6.231 2074,125.57479,207.21361,28.717155,55.67708,6.053 2074,589.8019,-17.983635,49.51642,165.11002,6.05 2074,272.43237,83.797516,29.790741,79.04706,6.041 2074,626.8749,-18.517206,17.661133,50.166317,6.032 2074,-6.114297,490.16318,18.557968,41.29483,5.731 2074,602.2445,-56.205116,53.710327,141.3762,5.719 2074,227.34583,213.9594,39.709778,75.50691,5.679 2074,-11.803438,478.422,29.741095,63.009155,5.598 2074,490.02924,237.43314,21.419617,35.381775,5.497 2074,622.6052,-33.331757,26.99878,79.40375,5.367 2074,585.29004,-100.44766,74.675476,240.28746,5.337 2074,626.529,487.6668,20.58783,46.598755,5.169 2074,3.4339547,-14.8616295,16.088839,41.32868,5.103 2074,-72.71288,266.10608,200.34634,461.7777,5.082 2074,612.9609,454.76614,39.207397,107.28989,5.076 2074,583.44275,411.5514,71.13159,176.41858,4.976 2074,-17.51614,-62.7922,55.903824,144.29762,4.953 2075,215.86882,219.9414,25.684555,67.85663,96.657 2075,233.19925,218.88684,28.04773,70.39139,94.241 2075,423.3298,227.61798,30.809296,75.56128,92.0 2075,33.889057,226.65433,76.51842,154.92523,90.023 2075,406.67752,223.23186,27.587372,77.41554,56.789 2075,9.366186,228.74794,68.02943,154.09746,32.314 2075,324.81256,226.03882,30.452179,63.24518,8.383 2075,320.08136,227.14603,22.870178,45.42633,7.331 2075,308.337,220.74954,32.162262,62.444458,7.089 2075,-6.3343782,-18.3198,18.547937,43.263706,6.779 2075,336.4418,235.4274,23.112946,46.12445,6.698 2075,-11.767821,-32.36132,30.413132,71.4554,6.634 2075,198.94417,214.39285,30.94249,72.834045,6.537 2075,392.733,221.69902,35.079254,92.880325,6.435 2075,242.96112,217.65392,35.48932,79.17055,6.245 2075,-71.671585,260.69165,201.90565,467.3783,6.161 2075,371.4986,221.52573,18.819061,37.5419,6.048 2075,611.15894,-48.14497,41.33252,101.29435,5.934 2075,613.1163,453.53842,39.186707,108.22641,5.857 2075,340.1344,213.51202,30.763702,63.083557,5.812 2075,434.71368,224.23105,29.680817,64.38678,5.725 2075,378.6424,221.4463,18.94104,38.553055,5.597 2076,15.984219,217.45367,72.33148,198.3977,93.975 2076,230.52194,216.04425,30.310944,73.94849,90.727 2076,215.49483,213.70584,30.80162,75.072205,85.853 2076,451.93787,230.78276,34.080383,87.88075,85.775 2076,430.2324,224.34619,32.028687,87.570496,56.108 2076,506.04462,214.01299,20.80487,56.93199,19.757 2076,523.8453,214.3316,20.335083,57.230072,14.786 2076,265.45383,209.17206,19.060974,51.21408,7.669 2076,332.35193,222.87373,30.638977,65.31773,7.601 2076,345.186,226.14908,21.73404,46.81009,7.526 2076,240.86783,209.31636,35.21515,82.57704,7.272 2076,0.17293215,251.69736,57.297535,161.74155,7.085 2076,-71.57676,258.7767,200.37643,469.5657,6.592 2076,-5.2362194,-17.988493,17.587786,42.638622,6.502 2076,356.60477,216.93825,36.6196,89.87572,6.364 2076,328.20294,226.81053,22.753174,48.357986,6.297 2076,-8.019262,267.33588,41.31546,114.90311,6.26 2076,511.02585,203.54376,25.423553,64.84369,6.258 2077,224.72368,216.34148,31.583115,77.78786,92.82 2077,200.00607,214.40678,31.268677,81.73259,92.665 2077,466.3431,232.60335,50.81778,118.9453,83.105 2077,448.03226,229.31082,46.138428,117.510895,79.496 2077,535.7883,209.07472,27.075867,67.87254,46.061 2077,427.48685,218.67862,21.899872,52.50305,45.851 2077,-5.9731555,232.38129,61.42411,207.6452,15.137 2077,372.13306,218.92513,16.14273,31.946884,10.207 2077,411.29437,216.46243,16.104126,41.87686,9.452 2077,405.4713,216.74557,15.905518,39.082718,8.183 2077,202.23024,245.63614,22.885742,51.378815,7.238 2077,389.55304,218.2343,16.020508,36.97357,7.209 2077,396.37854,217.11615,15.415588,38.563828,7.13 2077,347.13098,219.71979,18.790588,43.067413,7.078 2077,-5.3497686,-17.48357,17.792538,43.291756,6.897 2077,328.80634,229.97049,21.77948,45.098938,6.869 2077,356.44168,218.77492,28.929901,69.68504,6.868 2077,461.96317,275.36447,30.836243,70.283264,6.834 2077,355.14246,219.2088,18.57196,43.486755,6.609 2077,337.12213,225.801,21.766998,46.469147,6.522 2078,181.02751,218.81686,39.17537,87.21719,97.437 2078,488.0102,235.6648,64.73779,154.46765,90.641 2078,522.7863,235.79837,68.550354,160.36035,88.352 2078,224.8462,213.59593,34.411118,92.088974,85.049 2078,424.81046,223.09174,24.107056,55.151306,76.693 2078,266.2824,211.89691,19.361115,51.288208,37.917 2078,455.2731,229.84244,24.119324,51.548553,17.894 2078,388.6988,221.74214,16.525513,49.665146,12.242 2078,410.59116,219.96843,17.20523,45.590927,11.136 2078,357.4886,219.26672,28.204803,66.99759,9.31 2078,547.6592,209.65451,30.244446,76.08365,9.141 2078,404.60657,221.88959,16.571594,46.537994,9.108 2078,394.43384,224.26688,17.114044,45.179962,8.863 2078,375.78705,218.37308,27.292023,71.17148,8.079 2078,392.31186,221.2123,23.894379,72.761765,8.044 2078,147.73141,216.23285,38.80005,86.55853,7.175 2078,241.38329,215.93282,29.39824,77.0193,6.993 2078,354.14142,219.9101,19.984222,55.089203,6.932 2078,261.62656,210.03531,33.128265,81.18219,6.684 2078,343.45532,218.13239,25.2706,67.00366,6.588 2078,363.92584,221.09435,16.266724,39.65535,6.493 2078,339.24432,224.0742,19.262817,48.443375,6.492 2079,217.41129,217.61725,39.333344,96.92456,97.497 2079,172.70624,219.17621,43.064316,94.77057,97.042 2079,428.2086,223.07455,27.813263,68.56262,87.765 2079,267.97717,215.02148,19.73825,50.08789,65.033 2079,408.49695,223.03137,19.416107,48.229156,26.814 2079,259.84875,212.43155,20.887634,51.625885,26.016 2079,194.99698,218.32956,42.646973,97.39053,15.884 2079,592.54004,242.61447,21.599915,48.733887,11.459 2079,610.5279,229.27087,23.761597,65.64966,11.314 2079,384.04587,220.41583,26.755524,67.602295,10.917 2079,467.76508,238.2333,21.660461,50.94568,10.065 2079,362.70383,220.06784,19.956635,48.371765,9.976 2079,364.79883,219.30795,28.338684,65.65286,9.728 2079,394.85864,224.61813,20.152039,51.532043,9.326 2079,392.2617,215.49387,32.030457,80.10205,8.277 2079,151.29976,212.16968,39.93988,97.13928,8.25 2079,356.14948,221.9063,17.794922,47.24727,7.702 2079,413.60187,222.51138,29.338226,72.27576,7.689 2079,387.49457,218.96196,17.799347,45.042496,7.305 2079,-6.0348988,-17.360392,18.5719,44.246647,7.022 2079,348.6015,222.72311,16.509155,45.339386,6.694 2079,-10.861429,-33.360146,29.219734,75.26611,6.664 2079,627.896,-16.550776,16.095032,43.726467,6.311 2080,122.14298,218.28253,50.57615,109.72186,94.496 2080,165.84094,213.61751,48.94638,111.15291,87.762 2080,241.31314,215.46577,22.28363,52.16774,67.262 2080,422.80725,222.49185,27.89981,71.517456,59.905 2080,401.04828,223.05742,22.160187,52.148727,53.767 2080,231.70715,213.68327,23.47908,54.342697,53.006 2080,384.75256,221.62122,22.656555,52.82138,48.848 2080,139.71826,211.15125,53.559174,125.32483,23.396 2080,458.26462,234.47742,24.72934,59.955444,22.993 2080,367.78702,218.9882,29.128387,70.9633,11.544 2080,493.17926,214.81235,29.062683,80.13144,10.655 2080,390.7477,220.89763,26.437836,66.1942,9.971 2080,342.1554,210.70946,27.55066,68.20308,7.822 2080,434.76984,226.64363,30.05603,63.298874,7.594 2080,336.5202,216.75002,22.073212,49.62822,7.403 2080,-4.5365167,-17.353565,16.838554,42.32926,7.278 2080,503.52658,213.33984,22.781158,54.130188,7.063 2081,37.789406,219.39827,63.021965,136.17174,98.428 2081,93.88714,213.23123,64.90537,141.94174,98.324 2081,200.08212,212.26123,26.196991,64.746185,92.34 2081,373.00702,224.90703,22.68631,51.474197,74.956 2081,184.16281,210.40225,26.646591,65.26727,69.437 2081,599.00684,231.435,32.338745,88.21222,47.888 2081,417.24518,223.7627,30.770996,84.507935,47.127 2081,397.22623,224.26459,26.99878,67.04132,32.179 2081,351.72247,219.70563,22.09665,55.345154,23.465 2081,455.97885,237.80411,27.845367,69.61694,17.082 2081,496.27475,216.11526,28.13498,71.91208,10.881 2081,305.406,219.42412,20.476532,48.119797,8.721 2081,313.3483,218.26575,21.128662,48.918335,8.559 2081,335.76428,216.95682,30.18454,73.8345,8.548 2081,405.76752,221.11687,29.389832,78.87489,8.373 2081,318.01083,214.15298,27.359467,66.33356,8.235 2081,298.91086,219.65694,18.823181,46.358322,7.764 2082,358.801,226.37164,29.387177,70.10248,95.949 2082,385.68573,227.85239,26.934052,63.56299,95.47 2082,426.76175,225.29715,47.025146,105.6449,91.316 2082,164.15672,216.61493,35.715256,77.6445,89.856 2082,141.65639,216.39714,35.377884,79.53813,86.592 2082,23.292538,212.88376,72.00897,188.63239,84.852 2082,481.95978,238.54501,32.156372,81.3056,35.832 2082,323.66547,214.83762,19.306976,55.638855,15.404 2082,308.0211,213.25732,16.495636,47.674347,10.254 2082,293.7301,214.99933,29.084503,69.91092,9.702 2082,532.7622,214.29694,29.211731,84.149414,8.866 2082,289.2652,221.69092,20.888245,44.447723,8.552 2083,467.67065,226.98766,56.114014,142.50978,97.319 2083,131.14479,217.9752,42.170303,100.06419,96.316 2083,96.85527,220.17389,46.040726,96.81122,96.133 2083,396.34406,232.95596,31.837952,76.59433,89.366 2083,539.3835,242.33618,49.56006,127.34442,68.512 2083,421.3272,234.48868,28.620758,69.91934,56.071 2083,331.18726,213.105,17.961731,49.23851,31.954 2083,313.12436,215.68379,19.274353,53.264084,20.293 2083,0.029799938,213.23895,26.8926,84.87262,15.254 2083,281.60437,219.53442,19.399323,46.9003,10.669 2083,267.21185,219.56163,18.119263,50.518814,9.328 2083,602.1564,215.87613,29.658813,74.0842,8.653 2083,323.10013,215.77232,19.225555,54.076096,8.591 2083,274.70135,223.51984,18.97467,48.158813,8.049 2083,468.1128,233.52466,35.673096,93.954285,7.567 2084,70.889786,213.20888,59.481827,143.47551,96.722 2084,34.51592,215.64842,57.64413,136.34846,94.302 2084,494.15616,234.94226,51.34854,104.53125,81.119 2084,348.5401,212.48187,17.786621,50.03018,34.412 2084,568.66284,224.30124,67.40082,217.0361,31.422 2084,331.54086,211.02368,18.23294,50.610596,26.052 2084,471.87927,232.71109,46.716675,107.76416,24.749 2084,135.3958,205.26425,29.770142,65.09488,24.612 2084,341.5776,213.78403,26.307892,74.42288,11.152 2084,297.77463,214.97937,20.456207,46.917694,11.09 2084,339.28006,214.15228,18.433105,47.752075,9.898 2084,283.27817,212.78432,17.920898,48.976913,9.22 2084,328.4921,209.16454,27.350311,78.34767,8.777 2084,290.72626,213.22998,19.412659,49.138855,7.668 2084,517.19354,251.70613,33.231323,81.377945,7.33 2084,34.089363,219.66667,38.653618,91.01628,7.235 2084,293.66983,205.64133,34.849823,84.18521,7.088 2084,252.37383,213.44664,27.207932,65.28969,6.699 2084,-5.2739754,-18.425398,17.72621,44.253853,6.38 2085,165.35059,216.37868,27.27655,57.934097,84.05 2085,364.76093,219.21579,19.505432,49.236572,51.402 2085,347.22653,214.26346,18.724731,49.817963,26.592 2085,354.554,219.11627,20.148926,49.495728,11.149 2085,305.31427,217.48195,22.455017,47.09813,10.524 2085,260.34406,210.87619,28.285004,66.321686,9.674 2085,335.33398,217.41997,28.750488,67.661575,7.989 2085,289.95248,217.79019,20.274536,50.648468,7.276 2085,357.11243,214.05038,34.526855,77.87674,6.808 2085,614.45483,259.09735,24.59143,58.436768,6.582 2085,-5.389464,-18.455343,17.708822,43.454906,6.327 2085,312.83868,224.60852,22.062805,45.36902,6.274 2085,-10.76621,-33.06861,29.261913,72.85736,6.129 2085,-8.274031,265.1403,45.86949,154.63925,6.044 2085,295.27682,214.04156,26.529816,65.53076,6.032 2085,627.4191,-17.358828,16.789978,45.958076,5.977 2085,-6.2345,489.13284,19.07085,42.37491,5.837 2085,277.96567,213.1392,27.532745,68.0768,5.749 2085,-8.780113,464.98862,37.547165,91.778595,5.708 2085,316.23477,211.87463,30.232788,65.509705,5.699 2085,621.7611,477.61023,28.951416,67.20856,5.677 2085,272.16364,217.11209,21.664948,55.524597,5.558 2085,238.84499,219.14351,27.818466,55.48857,5.443 2085,344.03043,214.45459,34.21039,85.522095,5.424 2085,-17.570555,-64.92035,55.597824,146.90962,5.395 2085,-72.68169,266.59943,200.92181,462.99384,5.381 2085,623.2307,-34.466103,25.863403,76.23069,5.319 2085,-4.0193534,275.99707,28.650877,99.0791,5.145 2085,258.01138,211.11086,20.23642,37.995377,5.017 2085,153.95863,213.74356,30.000092,64.22861,4.905 2085,583.07697,412.2128,71.48547,176.43942,4.839 2085,603.2569,-56.76792,52.93402,138.74686,4.799 2085,-40.437057,364.3083,110.8262,278.7885,4.756 2085,1.5334296,337.86356,28.758053,79.191895,4.738 2085,-17.510477,436.38898,55.2715,140.18,4.706 2085,536.6941,310.70767,142.91864,341.43442,4.663 2085,198.76245,224.63826,28.625061,52.144455,4.66 2085,216.7544,229.39642,22.928818,40.402283,4.653 2085,265.71368,210.599,20.749023,39.388733,4.645 2086,379.39166,221.79733,23.3667,57.773193,85.776 2086,125.750305,211.11607,30.809326,74.13136,71.362 2086,143.61871,220.42848,28.114304,61.395065,63.773 2086,353.75638,220.3517,25.098938,64.26445,46.355 2086,248.1835,214.81314,22.542633,50.446808,20.404 2086,264.88083,211.85109,21.16092,53.580338,19.975 2086,254.58748,211.35109,26.383469,63.139786,9.507 2086,304.8319,214.41843,23.14087,53.629333,8.361 2086,298.39505,221.93024,20.211273,50.100006,7.851 2086,367.27222,218.95354,27.049133,77.17366,7.624 2086,290.51202,221.24939,19.630829,52.35919,7.583 2086,-4.945644,-17.8513,16.909042,42.434822,7.197 2086,268.1435,213.35025,28.12616,73.302246,7.123 2086,334.61945,209.12012,28.220276,73.50842,6.952 2086,273.3589,212.99374,19.750916,45.460938,6.869 2086,152.4845,226.34013,30.037857,57.916977,6.362 2086,348.75598,218.62474,20.912872,46.19615,6.284 2086,-12.886472,-41.7761,42.009396,103.567474,6.276 2086,282.25772,216.26295,19.024048,48.479294,6.109 2086,293.62762,211.40814,36.98053,90.88324,5.881 2086,-8.707027,464.6445,37.47251,92.4592,5.602 2086,-6.275567,489.04846,19.002499,42.289062,5.547 2086,621.8596,477.7144,28.860474,66.94595,5.545 2086,627.29565,-18.264215,17.346985,46.24507,5.532 2086,611.0281,-50.651535,41.860474,103.04265,5.437 2086,309.17377,213.07904,34.952393,88.73407,5.427 2086,-72.796394,265.50555,201.12683,463.01135,5.242 2087,130.35059,225.88809,34.465057,70.6835,90.274 2087,101.10305,220.5322,37.193672,81.439606,88.588 2087,394.37933,225.14618,28.603577,70.502625,79.689 2087,366.74435,226.88889,26.596283,68.34262,43.672 2087,255.10263,218.06491,25.564941,64.76633,20.375 2087,240.43079,222.42062,22.109314,53.51764,16.526 2087,248.66005,222.99054,22.407852,54.503235,13.861 2087,350.74786,219.25748,28.951385,77.70325,11.586 2087,297.12598,222.46663,22.77832,51.871933,8.29 2087,-10.61659,-32.04944,29.301933,72.24245,6.727 2087,-5.17374,-18.015268,17.184528,43.400776,6.694 2087,115.16701,216.4267,31.776672,77.29498,6.46 2087,257.00504,234.93239,31.869019,72.94957,6.446 2087,291.75574,230.67987,19.235962,48.56436,6.39 2087,294.38214,215.36722,35.233612,89.233795,6.13 2087,626.6988,488.19897,20.366577,46.15442,5.857 2087,-8.654705,464.3213,37.678165,93.22278,5.702 2087,-6.408859,489.432,19.115324,42.299316,5.573 2087,627.3303,-17.930841,17.161743,46.976204,5.509 2088,416.26187,229.26526,29.360657,77.49414,94.494 2088,69.42628,215.24432,40.795776,92.522156,90.703 2088,101.86584,217.76793,36.535164,86.126114,90.177 2088,392.82776,232.54362,28.20642,70.11354,71.337 2088,214.27,215.79118,26.19728,62.351913,59.056 2088,229.6951,214.81343,27.817322,64.54845,29.528 2088,201.56548,219.75262,27.295471,63.45111,21.849 2088,243.12595,218.52258,26.854523,67.97406,12.036 2088,289.2547,219.52731,21.91388,50.12973,8.149 2088,283.2327,226.71545,18.393188,46.569794,6.753 2088,302.5493,215.25354,23.666595,53.60669,6.583 2088,626.7489,488.52438,20.290405,45.73752,6.336 2088,88.42785,220.35696,36.236656,83.57941,6.311 2088,-5.5398464,-17.079075,17.14142,41.897938,6.282 2088,627.63007,-17.32851,16.710815,46.168797,5.913 2089,449.9771,230.46004,39.732056,108.309006,97.059 2089,65.11853,212.51277,44.77809,104.73558,96.859 2089,28.390514,208.16434,47.762127,109.56409,93.957 2089,421.2397,230.33054,35.079132,104.646515,78.798 2089,156.04369,213.69414,29.92543,73.037704,49.352 2089,183.40295,210.53938,28.60701,72.38698,44.136 2089,212.77719,207.07271,28.970917,75.41777,18.962 2089,280.73346,216.77016,22.925629,52.12416,11.655 2089,272.79263,218.06186,21.32602,54.41278,10.083 2089,170.01819,209.84114,32.410522,79.900375,9.912 2089,196.43521,210.35414,30.931854,74.30138,9.374 2089,43.680096,203.44562,54.178196,109.83374,9.285 2089,294.5767,214.25832,24.96817,52.000687,8.751 2089,223.34352,212.18369,23.544739,58.89685,8.042 2089,266.1153,217.15198,19.17804,55.424194,7.653 2090,524.5536,238.52328,54.595215,167.54953,98.501 2090,7.2559476,213.84749,58.601414,129.76921,96.743 2090,43.628304,224.70726,55.859726,118.998764,90.961 2090,161.94276,217.00482,38.159805,98.4306,89.306 2090,479.37543,241.79149,55.960632,161.88142,87.504 2090,123.05681,219.06104,41.901382,99.84741,83.186 2090,196.9833,217.41862,36.003235,94.03078,46.631 2090,231.57758,218.59451,28.098694,65.167694,17.016 2090,303.8815,223.84186,23.594055,50.625183,16.322 2090,289.30212,224.02193,21.359528,55.45659,13.577 2090,211.88568,217.3192,28.79654,76.95116,9.749 2090,280.26685,219.80162,24.955536,70.85622,9.713 2090,294.4913,222.75879,27.349945,63.731445,9.667 2090,-5.26101,-17.359493,17.279501,40.271343,8.683 2090,52.45347,277.87357,30.65728,66.1644,8.431 2091,20.413433,218.78024,60.434956,154.60617,96.12 2091,174.51968,212.47186,48.28694,135.69391,95.455 2091,86.34644,214.05392,54.581154,128.14456,94.521 2091,132.07834,216.75652,49.623413,119.01463,93.1 2091,0.15364885,210.87057,51.882553,158.44113,41.706 2091,241.24988,211.29065,26.896912,67.2088,27.728 2091,179.10315,261.93472,31.695404,84.02371,15.211 2091,138.17935,273.0982,31.819885,66.795685,13.915 2091,111.4484,215.37743,54.380928,133.16817,12.149 2091,147.67682,210.50266,59.157364,158.0745,11.028 2091,221.57019,214.11856,27.988129,74.52432,11.015 2091,312.85458,223.825,22.554718,49.245926,10.57 2091,-6.8591967,214.63275,40.62613,121.02203,9.648 2091,295.47015,211.38327,26.368713,74.1199,9.276 2091,153.8016,271.33362,29.270935,65.78558,8.821 2091,320.38232,221.98001,22.32486,44.464355,8.496 2091,193.78549,254.39984,30.340607,85.322754,8.23 2091,328.81165,227.22287,21.798767,40.32486,8.127 2091,304.2688,220.9003,22.829346,54.22751,7.387 2092,4.872365,223.26152,67.42108,172.08278,94.822 2092,83.80973,208.28015,67.437996,184.86725,66.94 2092,53.34093,214.48373,66.419464,174.11374,62.871 2092,195.35341,215.5195,31.663483,79.55405,21.057 2092,300.23645,221.36963,28.569672,66.712524,12.895 2092,255.32727,215.599,22.301697,51.771484,11.621 2092,213.81775,218.73376,30.442902,74.033295,10.227 2092,109.79179,225.67969,62.6856,167.34131,9.766 2092,252.44983,220.80872,29.233124,74.98828,8.325 2092,311.43665,225.98694,22.626648,49.076447,8.321 2092,279.297,216.37648,27.616028,77.332535,8.152 2092,320.8161,230.48032,23.207886,47.496582,7.824 2092,-8.406281,263.0788,39.805836,117.49368,7.13 2092,-71.9827,259.41028,201.3444,469.33728,6.688 2092,297.8164,220.9115,21.763275,40.78189,6.112 2092,-5.9752345,-17.41277,18.060806,43.425964,6.067 2092,81.89446,291.70184,34.97303,91.247925,6.009 2092,627.10205,-18.636765,17.570435,47.260944,5.995 2092,-12.125853,-41.42442,41.30514,101.2504,5.874 2092,621.8956,477.9965,28.750977,66.884186,5.83 2092,309.6317,213.69492,34.784027,91.9418,5.79 2092,181.7136,212.08887,34.69757,79.05243,5.71 2092,329.08188,228.38182,21.783752,44.516617,5.677 2092,623.24,-33.633003,26.53955,76.5689,5.652 2092,-8.514498,464.37897,37.4105,93.07745,5.509 2093,160.71042,220.64908,36.531464,83.04187,26.394 2093,144.28362,220.56213,37.33159,80.35443,22.757 2093,273.48322,228.35541,20.164795,41.807495,15.75 2093,289.5763,225.955,19.791199,47.26207,14.728 2093,245.42737,222.25914,30.648438,67.44081,12.905 2093,261.99414,221.6681,28.271759,70.07634,12.705 2093,282.78815,228.3629,19.078644,39.92726,12.218 2093,257.62103,226.00223,22.283813,51.424286,10.568 2093,276.61258,225.90054,27.902252,67.36914,9.128 2093,3.7226522,211.66617,34.200493,73.212006,8.913 2093,226.07018,218.95255,32.30995,70.796936,8.482 2093,213.66837,217.51807,28.879562,70.074585,8.257 2093,24.09749,210.47916,38.225845,67.51407,6.737 2093,177.03102,219.05554,32.03508,67.06979,6.347 2093,266.1102,224.83209,20.537415,39.767426,6.288 2093,134.92023,222.83624,31.241714,64.90149,6.185 2093,296.77667,228.25476,20.016815,43.211426,6.132 2093,-5.599595,-17.369907,17.191223,42.68998,5.851 2093,621.7967,477.1165,28.902283,67.759125,5.716 2093,155.68591,213.8281,56.031235,131.46921,5.682 2093,-6.20039,488.98264,19.041481,42.704742,5.649 2093,154.50867,247.8073,34.016388,79.402664,5.594 2093,12.249004,199.13626,54.69711,120.50171,5.593 2093,-12.050001,-40.66491,40.947884,101.75208,5.561 2093,-12.151518,477.14087,30.262487,64.24902,5.558 2093,627.1988,-18.895874,17.06305,48.289967,5.249 2093,-72.32772,265.55658,200.04565,462.73822,5.051 2093,-10.481043,204.79454,30.296892,69.74281,4.959 2093,583.1907,411.21613,71.371704,177.20221,4.874 2093,-21.555428,402.44238,79.0874,175.21307,4.859 2093,489.94632,-180.76346,235.33945,427.5889,4.8 2093,290.14838,226.40334,31.115723,68.153915,4.726 2093,585.7845,-102.0565,75.837585,236.55336,4.68 2093,603.05786,-56.567635,53.031555,137.3648,4.671 2093,623.3165,-34.000687,25.604248,75.62878,4.659 2093,536.72,311.2711,142.66748,340.70316,4.634 2094,256.64627,226.81415,20.279816,40.841156,46.611 2094,274.30072,229.19983,19.630493,39.778595,22.503 2094,265.67255,228.21892,18.663544,39.87755,16.576 2094,280.90585,227.26297,20.948639,42.773163,15.821 2094,288.93005,225.62817,22.474548,43.423523,15.267 2094,296.07285,226.67255,23.468262,47.70929,13.802 2094,126.60599,221.39655,37.00879,82.75702,10.851 2094,247.98798,223.77043,27.075073,61.005234,10.795 2094,199.04625,232.00543,25.398697,49.479126,10.362 2094,214.97725,229.87334,26.352692,49.069717,9.05 2094,271.62112,220.15732,27.573517,78.72406,7.273 2094,202.53676,228.14099,32.514816,73.506714,7.138 2094,-5.502474,-17.003183,17.510815,42.454796,6.884 2094,189.20157,226.96675,29.997269,68.79671,6.66 2094,184.25362,234.21259,23.450424,51.74591,6.423 2094,-11.018532,-31.590374,29.261595,71.64928,6.372 2094,-0.39302945,221.27971,26.724464,73.44771,6.196 2094,627.2598,-18.841022,17.310486,49.00307,6.053 2094,261.79205,222.52713,26.357178,66.395935,5.978 2094,284.72516,221.82927,29.03946,76.56291,5.836 2094,227.99484,113.31532,26.861649,97.27367,5.819 2094,243.15756,224.60744,22.283417,47.678085,5.76 2094,228.59775,224.26965,31.67685,60.68286,5.653 2094,-6.2185407,489.48917,18.93203,41.937347,5.552 2094,-8.658363,464.42688,37.53768,92.86493,5.472 2094,154.73592,233.52658,32.87886,61.51941,5.454 2094,621.96783,477.46228,28.612,67.18457,5.382 2094,622.78204,-34.02751,26.354187,77.689445,5.354 2094,212.60583,220.04523,37.5623,79.93469,5.289 2094,121.91177,277.1123,30.43245,79.64142,5.254 2094,303.185,220.9397,23.071442,46.098328,5.196 2094,-5.9834127,217.5037,20.345379,44.64389,5.022 2094,121.57907,206.59372,57.160995,129.96762,5.017 2094,583.3988,411.7452,71.099365,176.6868,5.009 2094,90.93151,223.90097,32.576897,67.40411,4.976 2094,585.37756,-101.0399,76.1449,235.07385,4.956 2094,-72.52558,264.98755,200.23303,462.1725,4.917 2094,-17.033527,-63.419384,55.687183,145.66756,4.903 2094,298.91953,226.08578,30.649231,73.29535,4.788 2094,-21.67999,402.05173,79.31007,175.75674,4.783 2094,602.9186,-56.721554,53.605408,138.36423,4.742 2094,489.65662,-179.46802,235.52838,425.60806,4.694 2094,536.6496,311.56152,142.46667,341.45276,4.636 2094,162.55478,218.83374,42.1071,100.601746,4.566 2095,320.1693,225.57874,21.348938,43.3515,20.508 2095,89.63356,215.8566,48.824295,107.61841,15.465 2095,298.3971,228.70454,18.952972,41.739334,13.255 2095,207.45978,240.71286,24.928833,47.702393,10.129 2095,289.87936,226.1209,20.068909,42.435165,9.276 2095,335.25238,223.24504,23.77893,49.88344,9.245 2095,230.83162,230.81223,25.019073,48.088135,9.039 2095,305.32986,228.6027,19.041016,37.751266,8.323 2095,261.29205,222.17198,30.158173,72.59181,7.582 2095,262.4254,116.086555,24.340424,89.96725,7.55 2095,279.4142,213.72954,33.552277,81.5573,7.264 2095,294.67953,225.82964,26.087097,71.10686,6.771 2095,223.45554,238.08502,25.315582,49.876465,6.597 2095,211.58888,234.66725,31.505463,63.7827,6.565 2095,626.68744,488.11658,20.085876,45.37622,6.443 2095,-5.567426,-17.050575,17.536194,42.3153,6.428 2095,164.71642,250.3314,28.784714,64.737015,6.393 2095,-10.892734,-30.645504,29.369724,71.16249,6.38 2095,282.26495,222.15657,21.627075,41.630753,6.217 2095,612.8891,456.74127,38.45758,105.07385,5.841 2095,243.9856,221.80864,31.850677,70.00978,5.833 2095,31.477905,213.31503,53.69168,119.25528,5.595 2095,180.824,241.44533,30.4599,61.451035,5.554 2095,-6.1427364,489.14856,18.887075,42.26648,5.424 2095,2.73279,-15.391237,16.976023,39.60402,5.395 2095,627.3146,-18.32021,17.155334,47.177822,5.287 2095,583.61365,412.87817,70.982605,175.88855,5.126 2095,623.19916,-34.116608,26.318542,76.21349,5.122 2095,101.47546,229.1188,28.20942,57.707275,5.118 2095,-8.767838,464.53217,37.546795,92.65448,5.099 2095,175.9773,248.57626,21.77713,42.74414,5.066 2095,-17.26083,-63.018543,56.335278,143.41364,5.056 2095,228.74031,224.93193,37.17604,81.596085,4.956 2095,61.109432,217.96243,60.33077,128.05661,4.868 2095,332.70013,248.14758,29.947083,78.82257,4.863 2095,-72.15128,265.31113,200.36765,462.08865,4.862 2095,86.21635,224.6672,37.119453,67.02731,4.843 2095,197.42148,238.21706,28.707748,60.722977,4.816 2095,-40.784985,362.5345,112.18155,277.40717,4.786 2095,585.13727,-100.24992,76.56598,232.50497,4.769 2095,18.71951,256.0897,44.86719,92.04718,4.719 2095,603.1045,-56.51223,53.157227,138.84709,4.679 2095,489.59955,-178.67473,235.5838,424.21973,4.598 2095,186.03983,244.67616,20.533539,35.725418,4.593 2095,-70.6667,-189.03085,212.37024,456.61356,4.562 2096,345.36694,224.71698,20.452179,46.386017,29.732 2096,312.18848,226.61311,20.611755,44.913315,27.213 2096,330.94983,227.7587,18.533966,40.03067,17.404 2096,322.25735,226.84337,19.236511,42.31804,16.142 2096,13.376875,210.65059,56.889847,111.07805,9.683 2096,368.56665,227.87213,23.155762,49.420105,9.144 2096,-5.875163,487.36258,18.701767,45.082977,7.231 2096,206.83014,230.60332,27.354279,66.69862,7.125 2096,304.93903,219.49805,26.723083,81.82831,6.997 2096,-5.339639,-17.109102,17.238329,42.004997,6.594 2096,-11.903227,474.14517,30.30727,67.21408,6.485 2096,222.53598,235.39357,26.09195,56.51744,6.313 2096,626.8192,488.87958,20.134521,45.305725,6.258 2096,-10.832356,-31.780514,29.495773,72.5401,6.199 2096,349.76404,219.52776,25.848724,59.16884,6.117 2096,-3.1980908,228.47148,30.823343,74.25795,6.045 2096,277.03864,229.35713,29.863342,75.2769,5.77 2096,180.3713,249.72467,30.118256,72.07233,5.732 2096,284.6369,106.25012,27.230896,96.06708,5.676 2096,18.473986,217.12231,39.88066,69.85541,5.595 2096,-18.552914,425.9359,56.448048,150.16248,5.407 2096,234.69133,231.58891,31.593521,70.695694,5.391 2096,357.7224,212.83263,36.019775,93.660904,5.337 2096,-17.008186,-62.293953,56.178474,143.22028,5.223 2096,3.1999784,-14.652115,16.439695,38.402733,5.193 2096,627.05896,-18.925882,17.760132,48.02376,5.15 2096,612.68713,455.53445,39.0083,105.14755,5.108 2096,602.98254,-54.9897,53.30713,138.95514,4.998 2096,583.377,410.4916,71.30493,178.35745,4.893 2096,622.5949,-34.51508,27.101501,77.46673,4.876 2096,213.23465,212.41632,39.82788,89.38379,4.862 2096,413.68985,195.68373,27.641327,61.618454,4.862 2096,-72.393196,265.87366,200.43393,462.35718,4.84 2096,440.66577,127.76576,34.87201,70.46596,4.836 2096,585.1,-99.57358,76.17963,232.44125,4.797 2096,-41.083508,364.4524,112.01283,277.63892,4.728 2096,-71.621414,-190.34886,212.80516,458.09564,4.72 2096,165.6583,249.97827,28.33731,62.38806,4.642 2096,309.73984,216.34444,35.388092,106.43263,4.639 2096,261.4602,216.49759,35.476166,90.84412,4.625 2096,34.664864,226.59247,32.695312,80.64978,4.621 2096,192.10971,254.43109,22.340027,53.10547,4.591 2096,489.7124,-179.16965,235.6665,424.8241,4.563 2096,537.1415,311.8874,141.95374,339.80084,4.525 2096,117.50284,335.80298,37.323807,76.06531,4.51 2096,375.57288,297.00266,27.873505,74.628265,4.486 2096,-36.5853,-129.69139,116.18349,281.05673,4.368 2096,2.1640992,219.95668,51.32895,149.19157,4.349 2097,344.10028,221.13736,22.79718,53.850983,50.074 2097,306.75818,219.98643,27.537537,63.10463,17.11 2097,331.67938,224.49506,21.62564,46.01895,10.073 2097,147.87218,234.41531,30.499939,81.895874,9.969 2097,365.3688,228.3049,31.579163,68.12073,8.738 2097,131.63771,248.14037,33.18724,76.77223,7.909 2097,-5.5878887,-17.428896,17.366388,42.257744,7.428 2097,207.20537,239.11794,24.890198,46.865402,6.814 2097,-10.979774,-32.34948,29.531754,72.60224,6.741 2097,358.0515,220.42807,27.824799,61.736847,6.568 2097,-9.332603,462.10526,37.64778,95.04587,6.072 2097,316.56277,219.40814,29.80429,58.601654,6.028 2097,626.80444,488.28543,20.2323,45.993134,5.938 2097,187.73618,234.47922,30.351257,62.408752,5.756 2097,626.92444,-18.49328,17.194153,48.946526,5.633 2097,-6.312829,488.61548,18.912262,42.865417,5.555 2097,611.66956,-49.857548,40.62787,104.61606,5.516 2097,415.34665,192.89992,28.224457,67.281815,5.401 2097,277.60822,105.71964,27.610565,96.72619,5.241 2097,126.77494,229.2731,52.12536,118.63541,5.211 2097,612.9797,455.41425,39.2594,106.37152,5.186 2097,-40.28926,361.96454,112.18417,275.5866,5.094 2097,160.38837,233.65947,33.51828,67.85536,5.05 2097,583.2182,411.36752,71.50134,177.26889,4.934 2097,-72.320656,267.4602,200.64755,458.81427,4.87 2097,200.49059,243.98798,23.603348,50.434082,4.856 2097,-17.007368,-62.353905,55.866913,145.68752,4.853 2097,296.44128,216.94763,33.39789,91.1333,4.834 2097,585.3565,-99.50436,75.86755,232.01587,4.831 2097,282.59842,223.90828,21.321045,38.473373,4.743 2097,-71.64211,-189.83813,212.53809,456.53528,4.635 2097,489.8617,-179.11748,235.42444,425.4886,4.626 2097,4.9144974,302.16937,29.749344,67.1824,4.623 2097,259.4535,222.4514,30.713287,65.46568,4.618 2097,-18.837238,429.91782,56.2095,146.51273,4.602 2097,-36.26514,-130.54646,116.2865,281.84048,4.566 2097,127.21388,262.06723,24.80716,58.51352,4.509 2097,536.85254,312.02734,142.40479,340.28723,4.496 2097,345.08334,212.29485,33.140045,77.57982,4.477 2097,370.42453,217.26953,39.390045,97.23285,4.436 2097,156.52956,217.58522,53.824234,121.201035,4.41 2097,224.74289,237.13742,23.759827,47.777405,4.386 2097,3.384962,-15.487831,15.804621,38.88341,4.33 2097,493.3946,225.84344,237.66382,516.623,4.276 2098,328.84717,216.80975,27.365295,56.733765,83.26 2098,352.00543,217.08075,24.434418,58.81311,43.111 2098,313.0808,221.5585,22.990784,45.62857,40.161 2098,357.84082,219.97296,29.405457,77.207214,8.868 2098,322.7235,221.79123,22.5513,49.990692,7.183 2098,179.90219,224.93912,33.299927,69.2153,7.054 2098,-11.043215,-31.722906,29.371178,70.69199,6.554 2098,626.8168,487.81302,19.975525,46.064728,6.473 2098,-5.648035,-17.37617,17.407299,41.81087,6.325 2098,193.99265,221.19365,32.33496,67.33528,6.084 2098,413.4988,198.55951,29.414734,75.92462,5.894 2098,627.31384,-18.690144,17.086914,47.599182,5.735 2098,612.72864,455.24084,39.214844,105.96954,5.546 2098,65.480354,235.76447,34.137177,76.99213,5.498 2098,-8.71142,465.2187,37.723633,91.9754,5.405 2098,137.38654,228.99237,35.662186,65.959656,5.293 2098,447.767,113.112495,36.28296,77.71169,5.184 2098,312.89352,215.16989,35.46692,73.2283,5.152 2098,-6.313324,490.24582,19.051783,41.182648,5.147 2098,-12.103591,479.76434,30.000282,61.417725,5.143 2098,97.39038,283.43823,33.15901,69.79227,5.115 2098,417.62573,203.80872,43.197784,92.959015,5.079 2098,583.56287,412.04114,71.0697,175.72919,5.013 2098,603.6162,-56.428474,52.728394,138.92561,5.009 2098,-21.600903,402.1228,79.47144,176.12775,4.959 2098,-72.5439,266.30426,200.84036,461.54657,4.936 2098,623.01996,-33.752975,26.531677,75.80335,4.923 2098,229.2793,107.24634,27.538452,86.99692,4.896 2098,-17.131847,-63.002106,56.043606,145.15498,4.863 2098,153.38866,225.45338,36.297607,59.464005,4.86 2098,585.36505,-99.683266,75.9917,232.28638,4.815 2098,156.03864,211.98929,57.02983,124.94638,4.793 2098,489.8219,-179.43344,235.42053,426.70407,4.725 2098,386.90057,205.446,41.15512,91.85298,4.656 2098,252.94241,198.63055,14.715027,31.339172,4.601 2098,292.81406,219.1088,28.171356,69.01901,4.581 2098,212.56207,213.24878,30.645554,67.83627,4.546 2098,434.03122,198.65381,42.43161,84.69354,4.534 2098,175.31271,238.06479,25.69786,52.86255,4.522 2098,272.5519,106.78803,24.830658,89.72411,4.503 2098,208.10751,231.44669,24.165115,48.101868,4.502 2098,-71.42508,-189.2299,212.70596,455.5921,4.448 2098,260.08728,221.5038,31.377686,68.51787,4.419 2098,369.42578,210.0282,39.679443,84.87738,4.387 2098,536.7384,312.3168,142.58783,340.7181,4.368 2098,130.1239,240.35826,34.61618,77.030624,4.34 2098,-36.795395,-130.61462,116.853,281.9643,4.312 2099,343.38245,213.80148,32.070618,67.492096,91.443 2099,374.61157,215.52168,28.74884,63.18373,44.488 2099,-5.317612,-17.147778,17.08039,42.22196,6.694 2099,292.39255,106.07678,26.97174,94.70459,6.473 2099,357.79294,209.94092,33.892242,75.679016,6.436 2099,195.87645,220.20786,30.59616,69.36362,6.428 2099,627.20526,-17.626722,16.98944,47.026695,6.369 2099,207.73547,222.60916,23.784576,51.03711,6.263 2099,-10.83508,-31.85453,29.479431,72.18339,6.108 2099,254.09349,211.25754,29.111069,68.46011,5.847 2099,626.4242,488.38995,20.863403,46.27124,5.682 2099,155.44684,252.38396,32.255432,68.253586,5.63 2099,-5.896292,489.45337,18.389969,41.13086,5.621 2099,-8.577498,464.82794,37.47786,92.39368,5.505 2099,236.55518,212.53392,31.02832,68.29796,5.425 2099,273.1527,219.41599,22.040802,46.319244,5.327 2099,583.6151,411.62344,71.03076,176.59152,5.152 2099,622.8728,-34.325363,26.393066,77.009735,5.151 2099,-40.577156,363.14465,111.05902,277.41418,5.03 2099,224.56757,224.87598,23.574005,46.850647,5.004 2099,-17.258419,-62.68157,56.090687,143.9128,5.001 2099,404.19562,205.78366,38.08423,95.97476,4.993 2099,-72.81457,266.30457,200.59883,461.94482,4.978 2099,436.10223,186.64903,40.75415,77.76875,4.969 2099,116.13005,251.71495,30.504898,64.65639,4.94 2099,3.7597055,-14.340701,15.578498,37.929672,4.923 2099,299.51678,223.41779,29.461914,71.79193,4.825 2099,585.7184,-100.83543,75.90137,233.07898,4.824 2099,386.68015,219.40747,31.000366,79.58765,4.772 2099,612.9743,454.94373,38.87561,106.419495,4.764 2099,261.01645,207.25232,35.517395,82.635925,4.742 2099,603.16296,-56.45729,53.058044,136.23311,4.731 2099,249.94759,221.75725,22.266342,49.09764,4.726 2099,489.8685,-180.46565,235.38675,425.7256,4.722 2099,171.40434,216.4102,54.946854,120.75932,4.719 2099,336.21494,204.4621,47.265167,114.394104,4.702 2099,172.46692,228.06653,31.599014,71.22748,4.685 2099,0.41870832,290.6798,28.44077,78.977234,4.642 2099,215.66724,227.39642,23.9655,51.476013,4.554 2099,450.5531,204.46419,43.719513,96.01512,4.533 2099,472.25793,108.107574,34.610596,74.3212,4.519 2099,-36.445515,-130.23921,116.47223,281.6077,4.516 2099,-71.883804,-190.10684,213.3658,456.6562,4.493 2099,536.60657,311.47406,142.9508,341.64203,4.483 2099,430.83847,203.42345,29.03946,68.522934,4.47 2099,234.24455,224.9006,21.516647,46.33322,4.418 2099,-0.69731236,325.3838,29.153828,76.59552,4.382 2099,309.29126,213.14937,35.08069,86.26457,4.363 2099,-17.421276,434.82513,55.29572,141.79999,4.335 2099,188.90723,206.27936,53.601562,115.891235,4.273 2099,493.0515,226.4385,238.07874,516.61633,4.248 2099,265.23273,221.70822,23.122345,51.415344,4.17 2100,378.79608,216.5259,28.677826,68.16673,93.651 2100,404.28357,218.02373,26.463654,68.76497,89.243 2100,419.0697,222.20093,27.935486,70.74292,10.544 2100,277.09262,213.90036,30.7164,65.308624,8.592 2100,287.82816,221.55133,25.17044,47.82257,7.852 2100,626.7319,487.96426,19.88153,46.1633,7.55 2100,-5.5730486,-17.334381,17.250751,41.581646,7.087 2100,323.9796,105.16258,26.518799,96.49362,7.071 2100,-11.124699,-31.904123,29.365103,70.516815,6.538 2100,273.58167,221.69675,22.36676,50.44156,6.355 2100,242.63582,222.36813,31.64888,66.64029,6.233 2100,-5.8215957,489.8985,18.21105,41.19281,5.971 2100,437.98163,209.61417,36.407562,97.405334,5.928 2100,627.14557,-18.606312,17.25476,47.595364,5.871 2100,-8.906719,463.79892,37.625362,93.23215,5.86 2100,292.741,208.93988,37.647614,79.58655,5.736 2100,612.5822,457.43634,39.020935,103.33771,5.667 2100,340.9851,215.9357,35.493927,82.1557,5.479 2100,255.92232,223.98999,22.587692,52.037567,5.399 2100,622.52374,-34.3197,26.782166,76.555855,5.233 2100,388.85303,213.39711,29.620209,67.51262,5.168 2100,260.61285,210.87328,32.359283,67.77644,5.111 2100,-72.8946,266.6653,200.93356,460.82687,5.103 2100,327.8401,212.10141,35.422546,80.92288,5.026 2100,583.4485,412.48273,71.41699,175.74939,4.95 2100,-2.8031778,359.28525,26.876541,85.380066,4.887 2100,-22.128763,400.17563,79.60359,177.18185,4.866 2100,-19.629128,-88.79927,71.28888,199.35005,4.839 2100,481.56555,207.71272,45.490845,97.78633,4.811 2100,461.8847,195.39973,51.903015,121.62355,4.731 2100,602.97565,-56.499565,53.088745,134.15758,4.714 2100,145.28395,255.86041,33.0439,65.11011,4.68 2100,372.41226,216.92805,23.809082,57.71086,4.679 2100,308.04486,214.68246,36.870728,85.57431,4.677 2100,585.6731,-101.33047,76.107056,233.16736,4.635 2100,-35.880386,-130.73502,116.09483,281.51776,4.608 2100,-71.92957,-189.60019,213.4924,456.3288,4.59 2100,3.2719505,-15.644739,16.017412,37.96059,4.59 2100,618.33905,489.83368,20.276367,42.522217,4.552 2100,490.0086,-180.85817,235.97699,425.03128,4.541 2100,536.75854,310.9852,142.93207,342.0751,4.514 2100,435.97552,273.7745,32.70331,87.57669,4.5 2100,503.935,116.31821,33.439026,71.4151,4.459 2100,412.3205,213.95274,27.880188,62.125748,4.459 2100,363.12436,213.69221,19.84372,41.8013,4.456 2100,355.925,218.98744,31.1362,74.96321,4.455 2100,493.41217,228.28189,237.6416,514.2561,4.416 2100,203.14969,135.729,28.078918,68.80002,4.356 2101,432.6091,220.196,28.919952,67.84349,92.379 2101,410.00946,217.27615,29.439728,67.77667,80.061 2101,421.45233,218.69342,29.354279,67.546265,28.136 2101,443.08014,222.00777,30.257294,65.14101,12.699 2101,-5.430773,-16.979914,17.47016,40.798866,7.148 2101,381.34692,227.81046,29.618988,74.84021,6.581 2101,626.6358,487.54303,20.469849,45.75232,6.537 2101,312.059,225.67845,23.081238,46.8889,6.227 2101,319.7837,217.66206,21.808716,44.11595,6.1 2101,627.22296,-17.963608,17.088196,46.3056,6.085 2101,279.96472,235.17876,23.531616,49.327347,6.067 2101,-10.694865,-30.826483,29.199062,69.75032,5.8 2101,260.9502,232.01505,30.723938,70.82114,5.765 2101,-12.100637,477.80307,30.035933,63.64737,5.651 2101,612.78827,454.43927,39.083313,107.377075,5.642 2101,319.6681,208.4497,47.348328,107.288086,5.516 2101,353.48798,209.2184,47.56018,107.94774,5.498 2101,-6.2820463,489.39752,18.856983,42.196228,5.476 2101,623.11505,-34.23943,26.331604,74.40533,5.365 2101,338.72775,228.13876,41.69519,87.781494,5.341 2101,396.86908,217.5842,34.104492,79.5983,5.291 2101,328.67,218.56516,20.579285,41.24945,5.272 2101,-73.15707,266.22833,201.4512,461.25214,5.098 2101,342.44586,219.24887,29.12033,54.18155,5.019 2101,-17.116386,-63.139526,55.560154,145.80768,5.011 2101,583.623,412.08105,70.63428,175.10223,4.974 2101,449.09848,230.00372,31.488617,82.94574,4.94 2101,603.05084,-54.209503,52.56952,135.14197,4.911 2101,475.5224,282.5404,32.242004,95.2988,4.901 2101,-21.725098,401.92175,79.55095,175.81879,4.891 2101,306.2294,229.94324,44.26407,85.297424,4.878 2101,203.781,-13.552816,15.721542,37.72334,4.793 2101,468.80414,207.83623,38.20392,95.313736,4.774 2101,454.28357,219.86032,22.780914,49.45096,4.772 2101,349.6571,113.98975,26.23584,90.159294,4.754 2101,-35.963398,-130.23244,116.26901,279.95,4.714 2101,162.84238,263.86432,31.442902,59.64807,4.662 2101,-71.77723,-189.42476,213.20926,456.86517,4.605 2101,536.56226,309.55167,143.60712,342.72946,4.603 2101,3.0720305,-14.381839,16.419144,37.571976,4.599 2101,205.73843,267.12402,29.966675,54.875732,4.582 2101,585.5318,-102.774765,76.24237,235.7931,4.551 2101,299.58917,230.20212,31.986145,65.560974,4.545 2101,499.30664,184.48236,31.601013,67.57466,4.537 2101,494.18335,227.18399,236.97876,515.40063,4.488 2101,356.91553,224.48224,31.052246,62.59137,4.48 2101,490.6145,-181.6709,235.672,425.62714,4.462 2101,195.62738,-14.114477,15.735977,37.3354,4.372 2102,439.53046,232.34984,27.260498,81.51311,74.553 2102,456.6289,234.84357,25.229797,74.70874,66.183 2102,423.13763,228.59578,24.552246,58.53566,13.444 2102,429.86444,228.85251,27.703796,70.650635,13.358 2102,470.19138,225.89473,33.57831,92.70787,12.745 2102,414.85876,231.01588,26.82367,80.12813,8.682 2102,321.6214,236.03151,31.000366,78.10405,8.109 2102,366.92215,116.8921,26.477203,97.35537,7.498 2102,-5.472534,-17.69434,17.33683,43.19465,6.942 2102,482.18524,240.95618,28.52005,80.97119,6.7 2102,626.465,487.68594,20.68158,45.935333,6.053 2102,-10.986033,-32.35226,29.590141,74.72303,5.885 2102,627.3642,-19.390545,17.388489,49.765427,5.865 2102,334.85803,229.79848,22.744019,50.70854,5.865 2102,612.6045,456.1264,39.206787,105.36084,5.758 2102,-6.0593414,489.18387,18.594322,42.322235,5.747 2102,-8.718114,463.57394,37.515606,94.1879,5.64 2102,410.15744,227.59268,21.76471,53.075714,5.544 2102,622.73645,-33.377777,26.755188,76.90641,5.121 2102,-72.88388,266.58563,200.78247,460.2495,5.084 2102,-16.799511,-63.486595,55.472195,146.49544,5.056 2102,602.6986,-56.439075,53.54895,140.22029,5.038 2102,-21.816568,401.52753,79.550674,176.26654,4.931 2102,171.17966,278.41687,31.307922,62.576508,4.906 2102,583.1014,412.5247,71.49036,175.81711,4.871 2102,331.6906,244.05443,27.302155,57.903763,4.845 2102,267.9758,262.1151,30.569733,73.60251,4.722 2102,536.77966,310.406,142.6239,341.1112,4.711 2102,-35.885155,-130.6914,116.231415,280.32068,4.673 2102,-71.716324,-189.48737,213.21017,456.486,4.662 2102,358.3794,228.0925,37.566284,97.52667,4.62 2102,288.25787,-16.677608,34.210022,71.0334,4.615 2102,585.4883,-103.08723,76.24487,237.67416,4.587 2102,3.0744767,-15.51746,16.356222,40.215046,4.55 2102,491.4413,-181.66393,235.08463,424.25394,4.502 2102,493.97812,228.03784,236.83365,513.1698,4.42 2102,478.80518,240.90416,23.260193,55.515884,4.378 2102,219.71829,286.16956,29.462189,56.92227,4.362 2102,393.36426,223.9256,33.259003,88.00415,4.352 2103,453.71588,251.7443,35.40689,93.95978,96.544 2103,484.78894,252.0557,35.380615,94.4285,68.656 2103,467.0853,250.64745,38.661133,96.47752,30.403 2103,427.45245,245.68326,30.493225,75.93335,21.386 2103,342.68863,269.6107,24.788818,49.66925,8.208 2103,332.22418,258.15726,28.864319,64.32056,7.738 2103,-5.5931864,-18.06129,17.559437,42.76628,7.254 2103,626.92816,-19.990816,17.999329,48.93228,6.782 2103,626.66003,487.87595,20.61731,45.277008,6.671 2103,-10.872917,-31.869022,29.33324,70.77343,6.505 2103,397.18665,243.75797,28.524414,69.53125,6.441 2103,402.70197,248.86328,16.98233,35.790833,6.193 2103,368.25507,135.60187,26.773682,92.393524,6.147 2103,416.43225,244.52002,30.068329,74.47742,6.095 2103,-6.0335073,489.50723,18.37402,41.761993,6.063 2103,612.89087,453.045,39.517273,109.3555,5.885 2103,394.7896,244.46848,17.431122,35.647705,5.657 2103,-8.772373,463.91245,37.61225,93.92557,5.63 2103,-11.524694,478.5733,29.153627,62.95819,5.554 2103,266.80133,288.24683,30.465942,72.22296,5.552 2103,387.26443,252.92531,20.356964,41.6736,5.353 2103,611.3638,-49.85348,41.177673,106.62304,5.234 2103,410.1261,246.7902,18.169128,39.54579,5.158 2103,-17.017454,-63.074776,56.070328,145.32297,5.092 2103,353.21002,257.5892,31.473816,61.80359,5.082 2103,-73.38321,266.03064,200.89531,460.6457,4.965 2103,-22.015968,401.1553,79.811066,176.47733,4.928 2103,536.7577,310.3879,142.84314,339.87344,4.892 2103,583.29095,412.02823,71.52466,176.384,4.763 2103,215.97415,311.4381,23.880203,47.95404,4.703 2103,-71.863365,-189.74808,213.13821,456.0231,4.682 2103,585.1784,-103.26051,76.52081,238.75081,4.613 2103,-36.20717,-130.291,116.452835,279.72635,4.593 2103,504.82693,266.29874,34.08029,66.81287,4.585 2103,494.4834,230.06116,236.30096,511.15973,4.572 2103,393.70825,257.96683,21.13565,45.704193,4.459 2103,445.7451,245.58615,31.393127,74.45026,4.443 2103,490.23083,231.41656,49.700317,117.29236,4.43 2103,375.14615,240.71785,36.80423,89.099106,4.39 2103,3.1573982,-16.267693,16.398777,39.177456,4.374 2103,532.3205,225.03674,27.57898,74.632935,4.366 2104,456.10062,236.97034,42.14914,109.772156,90.734 2104,429.25336,228.10101,26.772491,68.53638,36.408 2104,483.96875,242.87999,28.155518,90.428085,26.709 2104,240.80324,284.21844,30.254623,80.27078,8.874 2104,474.08307,235.47191,47.247864,121.86748,8.174 2104,396.50415,228.40842,28.930786,67.23248,8.111 2104,-5.5308323,-18.010807,17.265652,42.71121,7.551 2104,402.46655,231.83061,19.088745,40.36064,7.314 2104,443.62747,233.41576,37.715332,99.76875,7.247 2104,395.65598,232.46913,18.026764,42.17198,6.465 2104,-10.999135,-32.24106,29.26044,72.562836,6.386 2104,357.857,116.25281,25.910461,96.77634,6.324 2104,408.82568,231.54977,20.888702,45.307312,6.239 2104,627.4212,-19.279833,17.531433,49.409195,6.158 2104,388.09586,235.02217,18.698212,43.345627,6.065 2104,-9.081026,463.7575,37.758675,94.08038,5.736 2104,270.76236,261.6348,29.291473,77.9462,5.736 2104,314.0634,235.07019,30.898315,67.737305,5.701 2104,415.7733,231.3924,30.90149,76.66437,5.606 2104,-5.868361,489.02832,18.289215,42.183716,5.594 2104,622.7597,-34.461235,26.605286,77.92613,5.59 2104,346.63986,254.40593,19.896118,36.635605,5.543 2104,613.06445,453.29486,39.36621,109.41376,5.491 2104,626.4652,487.57828,20.628357,46.608734,5.481 2104,465.0479,285.69888,23.764343,58.30551,5.428 2104,381.86435,231.50192,28.232147,64.888,5.397 2104,422.74072,234.2001,35.615265,100.72534,5.177 2104,-16.807793,-63.6174,55.21905,146.94154,5.08 2104,-72.79401,266.51904,200.60599,460.80737,5.033 2104,494.7836,222.52591,49.76053,123.618225,4.992 2104,536.8876,310.64166,142.71423,340.59113,4.977 2104,-21.918472,401.1707,79.59866,176.50565,4.95 2104,583.2711,409.9492,71.083374,177.69711,4.814 2104,603.0581,-56.561306,53.167236,138.01767,4.782 2104,326.23828,239.98834,23.784607,44.83008,4.7 2104,281.48364,264.16852,22.098938,58.133087,4.69 2104,417.9231,231.73224,21.344727,47.38571,4.673 2104,-36.03823,-130.27026,116.52256,281.24176,4.665 2104,494.76843,229.43497,235.6994,512.42053,4.625 2104,355.24765,243.76488,19.344666,39.972733,4.572 2104,-71.74925,-189.5101,213.45734,455.41843,4.51 2105,458.5765,229.97371,56.65573,151.83788,98.983 2105,383.13104,217.3794,26.678558,63.678467,8.263 2105,-5.3075867,-16.520979,17.374641,41.35923,8.053 2105,238.79509,261.64166,27.879227,91.42029,7.741 2105,363.37457,224.23364,31.39746,68.27118,7.044 2105,378.28687,225.38345,21.405975,48.903564,6.922 2105,281.8717,221.77873,32.34146,73.18471,6.749 2105,-11.010461,-31.539146,29.455734,72.388824,6.688 2105,-6.0619907,489.2607,18.452425,41.78128,5.767 2105,626.5826,487.83032,20.73523,46.042725,5.647 2105,327.33304,114.764984,26.158447,90.03348,5.615 2105,3.0758631,-13.381544,16.45303,37.755222,5.522 2105,392.78976,224.55264,21.465485,47.117706,5.443 2105,468.13126,264.58386,33.049805,106.835266,5.368 2105,627.0507,-19.595459,17.576904,49.736904,5.298 2105,414.33868,226.163,30.181213,64.234955,5.229 2105,611.1293,-50.47596,41.40851,105.074104,5.193 2105,612.86,454.4263,39.741455,107.46121,5.179 2105,-11.710358,477.52927,29.639208,63.20468,5.175 2105,-72.91681,266.02203,200.62308,461.14996,5.13 2105,536.2406,310.8656,143.39984,341.40808,5.035 2105,396.4483,226.7622,30.581268,68.79932,5.022 2105,283.1324,253.08734,33.665955,69.36066,5.006 2105,583.3208,410.76508,71.41498,177.92194,4.975 2105,419.70642,230.60567,39.572266,94.099655,4.955 2105,-21.891956,400.544,79.08252,177.052,4.943 2105,-16.74793,-62.47123,55.668396,145.73215,4.852 2105,360.42633,229.9681,22.41095,47.829056,4.809 2105,495.21515,229.45895,235.12921,514.03064,4.803 2105,453.21893,251.00653,30.724518,100.35327,4.703 2105,408.14996,231.41042,22.879425,48.461227,4.65 2105,49.249718,347.99377,37.993645,63.381775,4.518 2105,-36.42568,-129.95497,116.894424,282.2199,4.508 2105,496.02817,250.3277,40.87198,126.95514,4.453 2105,-71.45018,-189.65369,213.09676,456.01187,4.441 2105,293.8526,228.51706,22.918793,47.381012,4.389 2105,585.69653,-103.04145,76.444275,237.14468,4.363 2105,491.07028,-181.13007,235.80399,423.83923,4.298 2105,221.67975,243.75502,30.628174,74.07353,4.237 2105,-5.1608715,0.11165047,17.560623,42.08661,4.18 2105,-4.684518,352.15622,19.078163,52.58737,4.168 2105,155.42715,212.22171,57.91301,135.49289,4.15 2105,351.92563,240.23982,35.427002,69.36302,4.124 2105,539.1615,176.47006,30.682983,76.584076,4.07 2105,369.3783,220.5849,21.26471,41.951813,4.05 2105,506.77313,233.49211,52.977234,144.01472,4.038 2105,10.171289,-14.345766,16.755194,37.99435,4.019 2105,352.42416,216.26035,48.086517,112.244995,4.001 2105,434.21735,228.77907,44.984467,96.257675,3.995 2105,122.25905,209.60764,59.108887,138.39789,3.96 2106,496.4064,221.07391,74.109955,224.02472,91.904 2106,477.3484,236.16422,68.44995,180.43082,57.471 2106,244.11623,200.25214,29.663986,76.53662,9.348 2106,523.94116,273.5304,60.057434,173.53119,8.865 2106,355.79736,215.54947,31.282135,67.03677,8.117 2106,507.67715,340.6939,34.5206,98.27939,8.073 2106,-5.674218,-17.931026,17.34081,42.41636,8.012 2106,479.9803,173.87689,123.440674,321.71985,6.91 2106,-11.031435,-32.04331,29.225748,72.21231,6.732 2106,323.55716,252.25203,30.50119,68.90373,6.69 2106,-6.0248446,487.3537,18.532822,44.78528,6.595 2106,344.51352,227.02132,23.3208,52.53871,6.148 2106,377.98282,217.2922,20.750763,46.59601,6.041 2106,-11.505106,476.2752,29.327051,63.72235,5.941 2106,360.7109,210.98792,21.344788,42.067,5.768 2106,495.6855,230.05621,234.08856,512.7169,5.746 2106,626.56793,488.41742,20.566162,45.776245,5.686 2106,533.09937,303.3649,148.07922,352.37607,5.652 2106,482.75574,237.8275,36.930664,90.95421,5.565 2106,107.64163,224.9467,31.90953,68.063644,5.561 2106,613.1995,455.1469,39.154297,106.73999,5.426 2106,329.8572,232.06067,33.07083,71.82422,5.387 2106,296.2597,83.07117,27.27713,101.532104,5.38 2106,-72.696594,265.11646,201.12334,462.31982,5.336 2106,385.87827,216.78142,20.349945,45.484848,5.288 2106,368.16052,217.29582,23.118011,48.07866,5.253 2106,156.32974,242.70633,32.42383,67.86209,5.171 2106,611.3244,-49.104492,41.752502,103.37164,5.064 2106,388.20316,205.24841,39.8291,87.0661,5.06 2106,372.89706,206.34044,39.821503,87.22606,5.04 2106,90.09836,213.28036,59.62445,120.87497,4.959 2106,-16.841888,-64.00125,55.449104,147.92662,4.936 2106,-22.359695,400.41122,79.77967,176.63162,4.865 2106,3.2028227,-16.079765,16.03363,39.56487,4.822 2106,627.2195,-18.641132,17.147034,48.12656,4.797 2106,615.4153,287.0098,25.92163,79.423676,4.697 2106,584.1038,411.7576,71.515015,178.21103,4.563 2106,112.43465,220.9612,44.47644,86.71605,4.515 2106,130.46524,222.90424,40.86357,97.45538,4.515 2106,-6.051516,441.571,19.356943,42.01465,4.476 2106,159.18394,225.73941,48.952255,139.15167,4.4 2106,489.8357,-181.16623,236.1222,424.0121,4.337 2106,119.542175,229.71474,24.033005,46.8311,4.289 2106,-36.803345,-130.55045,117.14602,282.41577,4.287 2107,507.80127,220.1968,97.13367,264.62964,85.74 2107,553.3687,229.37332,83.75781,275.66144,59.196 2107,508.19656,266.40656,58.589752,176.90228,26.261 2107,93.11504,243.33304,54.69674,150.47824,11.51 2107,339.39136,201.40152,28.911499,64.470825,8.865 2107,486.0276,172.71898,234.22803,485.15088,8.806 2107,626.195,485.86404,21.047668,46.988495,7.546 2107,356.27884,199.19363,29.698883,64.152435,7.532 2107,584.4441,203.6706,65.18817,244.17395,7.266 2107,-5.7796245,-17.927843,17.857903,42.148697,6.986 2107,203.92793,194.3303,28.603867,66.54146,6.646 2107,352.53857,199.6873,22.470764,46.9991,6.516 2107,617.15906,485.19156,22.19104,45.934418,6.407 2107,337.03946,199.0926,22.049469,41.159393,6.285 2107,144.38759,249.75053,34.27327,92.15672,6.259 2107,613.04675,451.04294,39.669067,111.84549,6.14 2107,204.96811,241.32544,41.581512,65.1189,5.714 2107,67.3651,230.13899,41.280228,112.78868,5.661 2107,-8.854097,465.00653,37.82186,92.214294,5.627 2107,534.82654,124.180084,138.06537,357.44128,5.607 2107,602.99536,-55.555454,52.858032,139.40344,5.542 2107,-11.051599,-31.50309,29.036797,70.42957,5.531 2107,45.906963,226.32558,53.710896,139.58159,5.502 2107,438.16238,120.901184,214.87357,411.57025,5.381 2107,627.4495,-15.7549095,16.381714,44.465244,5.379 2107,606.8578,241.33252,32.022766,81.714966,5.362 2107,-6.1316643,489.17438,18.864748,42.328247,5.308 2107,230.0959,186.53319,27.852463,60.700912,5.156 2107,-71.98365,266.774,200.07199,461.638,5.135 2107,-21.653673,402.44788,79.28916,175.31055,4.873 2107,-17.140562,-64.95851,55.83921,147.74799,4.85 2107,584.00964,404.42926,70.28821,178.23224,4.758 2107,75.718475,227.50821,54.907227,136.62772,4.756 2107,366.73203,189.59103,27.974243,66.80475,4.683 2107,209.36765,207.04324,34.695496,71.42453,4.574 2107,371.37692,181.95651,40.503418,88.66977,4.572 2107,34.685226,231.7327,43.686478,107.27307,4.555 2107,623.1938,-34.073296,25.778687,75.747986,4.516 2107,505.7447,228.85132,65.62128,131.93091,4.476 2108,313.97375,220.08981,20.747314,44.61319,17.172 2108,305.8397,219.7141,20.570892,43.156815,12.446 2108,326.838,216.69058,23.864014,48.291595,11.796 2108,317.944,214.24426,25.558807,61.553345,9.942 2108,333.23093,211.61378,29.75528,61.89882,9.405 2108,-5.222679,-17.304186,17.347828,42.737476,7.27 2108,-6.156132,488.0118,18.988764,43.785736,6.553 2108,-10.418652,-31.276695,29.262331,71.767555,6.358 2108,345.06134,225.40382,21.776245,47.11348,6.215 2108,-12.079352,476.6728,30.55111,64.71936,5.996 2108,161.92426,217.9649,31.86673,66.51706,5.919 2108,341.61377,209.12442,36.39926,88.598236,5.741 2108,626.8586,488.12076,20.127869,45.127594,5.714 2108,2.4957764,-14.4832115,17.367413,39.800434,5.509 2108,157.57248,268.8201,42.83252,73.375336,5.464 2108,185.0968,227.95815,20.638489,42.183212,5.438 2108,-5.7026887,74.38549,19.0403,42.40255,5.379 2108,612.849,453.28867,39.328003,109.88248,5.286 2108,237.69295,108.63383,26.929062,91.791405,5.258 2108,-72.77826,266.43567,201.7511,461.7483,5.23 2108,-17.437637,-64.84115,55.996796,148.75671,5.178 2108,627.283,-17.643887,16.828796,46.940235,5.137 2108,603.15576,-55.83725,52.772217,140.50299,5.13 2108,173.12314,216.34303,29.80899,56.86876,5.122 2108,229.74661,207.7507,26.115967,59.82727,5.119 2108,155.1834,237.79637,33.000336,64.02486,5.054 2108,-40.46221,358.39536,112.38908,280.99124,5.027 2108,298.48395,213.83768,20.97754,43.45804,4.944 2108,-0.39584875,62.834682,28.842993,65.23042,4.925 2108,177.68231,213.87971,42.387146,79.08879,4.881 2108,-7.2983217,337.99835,37.505295,107.52374,4.778 2108,490.08316,-179.99234,235.18631,425.712,4.762 2108,-0.17904997,316.6091,29.406488,91.75122,4.731 2108,583.1028,410.46558,71.618835,177.82983,4.71 2108,308.0509,256.92352,29.033905,74.55713,4.656 2108,14.996906,73.00516,26.126198,47.079674,4.653 2108,536.7412,311.22235,142.66888,340.31903,4.629 2108,-21.739618,398.13245,79.23876,178.69049,4.52 2108,154.10374,218.00563,57.211792,104.47954,4.507 2108,-10.397935,254.12686,28.946682,71.66998,4.502 2108,6.2924886,269.29602,60.95842,149.7956,4.501 2108,622.62335,-34.428135,26.818542,76.445885,4.499 2108,-5.2767444,252.51126,17.406906,41.533234,4.484 2108,518.91315,184.59457,28.729614,79.55054,4.406 2108,493.5653,227.16748,237.60547,514.51965,4.384 2108,585.31824,-102.825806,77.0426,236.71333,4.379 2108,310.44598,226.98949,26.869019,70.1844,4.265 2108,10.00713,-16.228485,17.62598,41.065178,4.231 2108,536.44666,169.87267,32.562622,74.79765,4.154 2108,-36.612923,-130.7428,118.10713,282.42734,4.094 2108,-70.92736,-188.23949,211.78339,454.13,3.997 2108,281.68643,250.75266,35.19342,66.67407,3.931 2108,435.28287,218.06573,18.919281,32.577118,3.864 2109,281.2189,215.23343,22.919098,48.593414,9.3 2109,57.46044,227.41576,62.710037,129.79756,7.549 2109,-5.270015,-16.889433,16.971241,42.201904,7.523 2109,171.55734,212.69331,28.450928,59.96599,7.287 2109,297.19672,216.74048,23.534607,46.655334,7.229 2109,258.88693,226.62572,29.900421,68.847244,7.173 2109,96.62726,214.88126,32.008774,56.53067,7.075 2109,626.72845,488.451,20.01825,45.61444,6.847 2109,294.20013,209.47556,37.10327,83.93573,6.385 2109,77.17061,215.26662,50.20591,95.05589,6.015 2109,-11.116556,-33.18799,29.233232,74.14734,5.97 2109,627.3046,-17.709278,17.035706,46.980103,5.819 2109,-6.2855773,489.17557,18.970486,42.725983,5.464 2109,612.697,456.7871,38.739136,104.30548,5.378 2109,-8.721486,465.09933,37.52995,91.57449,5.319 2109,603.30206,-54.5638,52.356018,135.7142,5.242 2109,-73.55658,265.0512,201.9549,463.42828,5.219 2109,258.33856,222.99629,21.353577,47.112076,5.132 2109,247.56035,224.44388,27.46791,65.869385,5.126 2109,268.21698,212.8993,32.09854,63.575607,5.11 2109,324.482,224.03082,30.140564,65.32587,4.965 2109,-16.70794,-64.96275,55.02693,150.8594,4.942 2109,583.1055,412.4862,71.82422,176.02588,4.915 2109,-21.6223,402.19543,79.414314,175.28473,4.882 2109,298.17865,207.1737,19.807526,33.027863,4.831 2109,53.76629,213.11374,44.119522,91.95795,4.829 2109,283.26727,222.29965,31.75415,65.73337,4.825 2109,529.83435,171.01161,33.135498,79.89455,4.808 2109,307.66248,202.41118,38.150024,81.40834,4.794 2109,128.99081,228.30621,43.619446,85.77722,4.745 2109,116.37576,213.13518,32.528168,62.123306,4.704 2109,-41.18419,364.31244,111.70456,277.9748,4.677 2109,623.2264,-33.549545,26.317993,75.80134,4.667 2109,93.98274,234.12256,47.779495,96.28485,4.65 2109,252.10278,259.99936,30.268097,72.10712,4.647 2109,489.86893,-179.8002,235.39865,424.64944,4.599 2109,10.034943,199.30423,57.4431,126.60773,4.522 2109,585.4377,-102.504364,76.75006,236.35828,4.472 2109,536.82697,312.24506,142.45477,339.55695,4.47 2109,159.73389,206.8617,51.384888,110.97418,4.44 2109,197.31737,231.09625,30.518509,68.71466,4.44 2109,413.07693,198.49225,30.335114,59.742004,4.434 2109,105.17581,209.02054,54.213303,108.0517,4.426 2109,395.25372,214.44778,18.424194,34.109924,4.376 2109,397.44324,193.42242,27.291107,55.239334,4.253 2109,189.63586,220.6799,29.831848,63.508545,4.253 2109,289.82007,224.01477,20.830719,44.580505,4.241 2109,493.617,226.83179,237.64752,515.53467,4.233 2109,371.79904,194.35962,17.523132,34.767517,4.231 2109,31.175358,202.95784,59.145145,121.45622,4.199 2109,427.61502,199.15575,31.105194,64.778854,4.184 2109,79.504654,286.02478,39.546516,82.60809,4.151 2109,191.81625,75.84244,27.980988,88.516205,4.14 2110,177.15446,208.34412,33.88542,62.590485,14.133 2110,165.27881,211.06229,33.307648,72.57074,11.826 2110,99.33093,204.94302,31.251205,70.67215,8.283 2110,85.620224,201.55652,33.705093,74.07916,7.345 2110,-5.301764,-16.495447,17.31425,41.07176,7.247 2110,626.636,488.19955,20.293945,45.120758,6.951 2110,315.92096,195.53635,16.719574,32.74765,6.934 2110,233.7924,218.97714,23.03627,45.407867,6.145 2110,622.59595,-33.551277,26.993958,75.96055,5.749 2110,612.74915,455.95596,39.29236,105.23215,5.625 2110,-6.465206,489.2508,19.343544,42.29901,5.614 2110,-11.002729,-31.488699,29.481846,69.868256,5.572 2110,368.9892,204.6183,23.561646,37.632507,5.461 2110,-17.727201,-63.78414,55.90113,144.3138,5.46 2110,116.01126,209.5604,39.04213,91.76141,5.451 2110,223.91791,198.42102,48.84735,127.30444,5.419 2110,512.28265,168.43399,36.33026,75.69133,5.304 2110,-12.407913,477.5135,30.847477,63.597046,5.248 2110,499.3582,173.97667,32.332,82.73207,5.2 2110,132.35065,212.51094,39.428192,90.95427,5.194 2110,-73.51632,265.9074,201.73154,463.97833,5.193 2110,362.84744,210.18073,21.134857,37.009857,5.176 2110,3.407737,-14.846203,16.542503,37.674767,5.146 2110,626.66943,-20.004906,18.196228,48.593353,5.127 2110,149.1502,213.17398,39.37274,88.1232,5.035 2110,603.5072,-56.071777,52.338013,138.10843,5.023 2110,372.56543,197.96353,30.209045,52.52884,5.017 2110,59.604675,218.59187,31.276611,62.52275,4.987 2110,583.2144,412.24863,71.789246,175.94229,4.97 2110,213.4928,204.20909,38.475754,91.12117,4.899 2110,243.88084,202.49649,38.75853,98.47745,4.763 2110,37.1565,203.8521,38.82847,88.09209,4.763 2110,-5.193835,2.3873806,17.655848,40.537598,4.725 2110,129.0683,221.3905,22.684464,45.323914,4.719 2110,-41.1588,364.6872,111.81484,276.01312,4.716 2110,210.53644,208.87727,21.080154,38.239655,4.696 2110,95.12244,194.4722,49.683502,121.64334,4.686 2110,489.92194,-180.27985,235.28003,424.37668,4.66 2110,494.68265,171.29236,49.073334,126.8656,4.652 2110,68.891365,207.47563,39.758507,92.88454,4.601 2110,347.21417,223.54735,18.487854,34.068924,4.584 2110,174.37549,193.72723,47.608124,108.80322,4.56 2110,217.37679,216.9028,20.453247,41.139984,4.541 2110,190.06665,202.76863,48.822647,117.45067,4.529 2110,536.728,312.55585,142.52307,339.5752,4.472 2110,118.67734,207.82195,24.138779,49.51509,4.454 2110,236.0547,210.11058,30.946,64.76701,4.425 2110,466.16776,172.56924,48.746613,134.01352,4.407 2110,240.1319,209.32637,21.475739,36.641846,4.372 2110,486.80823,176.5538,37.200195,104.75348,4.365 2110,353.59814,220.52325,19.865875,36.174805,4.363 2110,-5.904038,27.766031,16.999447,37.721413,4.361 2110,3.0974097,27.808117,17.315126,34.528404,4.352 2110,585.63293,-103.0376,76.671814,237.4943,4.348 2110,19.997726,205.69264,39.331364,90.47069,4.318 2110,324.96527,193.58527,36.35553,82.600494,4.271 2110,-4.3898544,61.000736,16.140678,39.871426,4.255 2110,587.5629,107.032265,18.567322,38.172478,4.247 2110,493.49115,226.63751,238.04877,515.9978,4.233 2110,247.11362,208.50873,24.192139,44.664673,4.233 2111,221.38388,210.24481,29.190475,70.97995,25.034 2111,200.32803,196.39067,34.822357,89.36696,11.454 2111,165.2208,206.45972,29.005875,66.16882,10.207 2111,200.70996,213.096,23.42601,52.39705,8.705 2111,-6.1416507,486.6459,19.5057,46.52829,8.651 2111,183.03088,199.8634,35.170746,79.1127,8.154 2111,160.60104,208.98714,23.386536,43.41638,7.703 2111,-11.716069,473.29123,30.90879,67.51364,7.437 2111,149.33752,208.54773,31.44339,69.15286,6.361 2111,-10.930624,-32.87817,30.100943,76.433464,6.357 2111,114.31382,232.98601,33.359688,67.467545,6.344 2111,626.6199,487.3002,20.386719,46.81363,6.087 2111,227.78868,202.35374,38.11345,99.68358,5.983 2111,380.3073,192.96887,30.600891,53.074158,5.947 2111,240.8854,219.97284,34.559753,76.73334,5.755 2111,612.7755,455.16464,39.224365,105.85098,5.754 2111,175.12526,212.24252,25.6604,51.025726,5.735 2111,339.27856,222.67122,18.312378,36.67656,5.635 2111,1.1189139,486.4644,20.84419,45.714203,5.597 2111,160.92715,197.15237,48.025024,116.47653,5.59 2111,192.2988,203.76389,25.530731,43.876785,5.585 2111,345.43677,213.75064,19.473785,35.038025,5.555 2111,545.9599,152.07758,35.26001,82.37448,5.535 2111,145.56757,201.77351,21.647629,47.411835,5.519 2111,-5.5882797,-17.771961,17.727797,44.63181,5.477 2111,627.10815,-17.86689,16.97113,46.49583,5.459 2111,189.60803,202.47864,53.33217,121.4386,5.439 2111,138.05144,199.49687,20.997131,49.626404,5.435 2111,67.87848,216.80975,40.23201,86.48407,5.428 2111,-18.498646,429.57874,56.55576,146.86084,5.368 2111,12.788343,184.52823,54.297157,117.8555,5.363 2111,84.35718,218.84943,39.97335,83.552,5.209 2111,-73.2997,265.6623,201.68173,462.1374,5.191 2111,53.1036,200.91176,38.46685,92.929794,5.106 2111,603.33167,-54.879242,52.63031,137.11574,5.087 2111,376.85422,198.49254,23.360443,39.35968,5.054 2111,184.48744,210.2769,24.472244,49.909348,5.005 2111,-5.420247,233.60048,17.819923,40.44969,4.991 2111,101.53916,209.4417,39.18354,84.263626,4.925 2111,331.68027,219.79091,18.240753,38.807297,4.923 2111,622.901,-34.805073,26.247437,77.38388,4.851 2111,5.7608786,214.4582,30.059746,63.82216,4.82 2111,583.04126,411.76834,71.64551,176.72751,4.811 2111,124.822426,201.5621,51.11312,117.11075,4.806 2111,489.46216,-179.88515,236.1488,424.33698,4.803 2111,-41.032303,363.63583,112.26757,276.51736,4.783 2111,353.67947,210.82182,20.57257,37.52774,4.77 2111,37.02164,199.84935,40.029804,94.54503,4.758 2111,331.46603,198.54822,19.0831,35.912872,4.718 2111,337.81616,203.87115,19.272156,35.90381,4.709 2111,323.82968,197.69133,18.138855,35.90361,4.696 2111,586.00885,-103.09359,76.04425,236.61438,4.643 2111,362.12064,206.8108,21.270813,37.20317,4.598 2111,537.0241,311.99835,142.00842,339.89886,4.575 2111,258.9068,204.20053,40.847565,100.61191,4.564 2112,211.71045,202.48567,38.89412,97.87865,70.573 2112,198.86667,206.78308,30.793747,71.90961,17.93 2112,135.69765,209.0125,23.98291,45.65294,11.024 2112,131.27145,212.20718,31.819427,69.226776,9.48 2112,117.87688,211.99281,31.29103,68.46098,8.931 2112,182.4513,199.979,35.793015,79.60025,8.57 2112,167.94528,198.46451,35.91887,78.318695,8.177 2112,143.85527,203.88066,22.701736,45.629944,7.362 2112,170.49193,214.9797,22.092422,48.027313,7.297 2112,221.18263,211.37361,25.624786,66.092636,7.253 2112,147.91919,208.43555,30.578918,62.299866,7.203 2112,80.02753,233.9618,37.25209,80.1375,7.084 2112,206.22821,195.75594,55.43802,153.85753,6.92 2112,108.634094,60.44644,31.608795,94.24371,6.791 2112,-10.753826,-33.219803,29.877216,76.56721,6.324 2112,161.4866,215.50427,22.987274,47.6055,6.267 2112,389.1952,190.69041,31.419098,53.6949,6.098 2112,626.47375,487.43353,20.967163,46.542664,6.068 2112,612.8605,454.5711,39.979004,106.75714,6.044 2112,-6.207944,489.433,18.854065,41.55191,5.87 2112,-11.806381,478.8748,29.570559,62.410797,5.772 2112,-5.802327,-18.94149,18.323334,46.14801,5.681 2112,376.3664,200.69887,23.399109,37.49724,5.636 2112,35.726334,229.36378,40.01367,78.7888,5.451 2112,623.1988,-34.27612,26.320618,76.38523,5.413 2112,-5.630493,221.2251,18.426796,35.842133,5.364 2112,627.25287,-18.525408,17.465393,47.12166,5.339 2112,88.027534,211.22458,57.450844,113.940765,5.289 2112,174.43582,200.12325,54.858368,124.08653,5.289 2112,-72.828995,265.45776,201.02763,462.43573,5.229 2112,603.1769,-57.17402,53.52002,139.58615,5.128 2112,193.6195,206.99944,24.222198,51.858536,5.024 2112,402.38528,188.77106,31.51889,60.791122,5.008 2112,126.5059,198.77159,50.01937,107.52623,5.008 2112,123.17096,208.0205,24.082031,45.517303,4.994 2112,545.1224,211.23795,34.789062,80.51315,4.977 2112,535.5471,199.4323,29.648132,80.31966,4.968 2112,420.9593,153.79941,39.261597,84.84361,4.949 2112,140.77928,205.01743,53.654236,118.4603,4.936 2112,12.995016,211.60628,53.662453,113.89137,4.919 2112,583.0285,412.12,71.658264,175.5929,4.915 2112,112.62,224.03793,44.822716,90.43591,4.891 2112,489.24933,-181.9924,236.18579,425.29102,4.883 2112,-21.50887,402.76535,78.85245,175.17166,4.877 2113,244.32358,210.8793,39.07956,96.424286,62.891 2113,236.02705,210.4111,31.025223,79.45233,46.714 2113,159.51492,207.7123,22.547577,47.80641,32.37 2113,174.40588,208.53358,23.516785,47.882828,19.561 2113,118.56883,202.32573,24.136429,51.676254,13.664 2113,146.55936,206.46921,22.516144,50.203766,13.179 2113,204.42517,211.74915,31.282547,77.0318,11.315 2113,189.54572,213.34854,30.755127,68.157074,10.324 2113,149.38327,211.16396,30.176056,60.96736,10.032 2113,172.55936,219.78772,31.962494,63.158386,9.085 2113,221.41914,211.42224,34.067154,84.56073,8.129 2113,181.62424,203.85582,27.466934,54.292038,7.645 2113,-5.08024,-17.228823,16.960339,41.63251,7.065 2113,224.99725,207.33595,51.448334,127.41225,6.982 2113,-10.476625,-31.118603,29.036142,68.710205,6.313 2113,254.51704,215.73972,24.942215,66.354645,6.195 2113,166.5577,220.48688,26.19899,49.201965,6.065 2113,623.5642,-33.683674,25.749268,75.95661,6.035 2113,626.52094,488.3066,20.574646,45.40152,5.923 2113,-6.3248944,488.86694,19.202654,42.660767,5.838 2113,627.292,-16.970135,16.543396,45.724537,5.77 2113,612.81305,455.17087,39.834717,106.56076,5.716 2113,258.37506,226.79338,32.137512,74.08235,5.674 2113,155.22772,224.11234,32.630005,66.48581,5.636 2113,165.76424,189.89381,27.277603,66.86397,5.593 2113,423.3327,202.24786,24.444824,37.81447,5.574 2113,-12.222933,477.57803,30.176056,63.684784,5.487 2114,294.82162,205.46896,39.91986,105.47479,78.001 2114,191.5599,207.09222,22.97586,52.461304,70.142 2114,232.43636,208.2861,23.852707,46.65271,57.606 2114,167.67911,207.61584,21.083893,43.728973,23.187 2114,282.10574,206.59074,37.20233,96.03966,22.008 2114,313.37546,241.66333,31.615509,65.01312,15.822 2114,255.50204,205.8669,30.03595,66.3026,14.825 2114,178.8515,209.26244,20.810837,44.77182,14.646 2114,159.77635,203.66309,28.695084,71.47629,12.662 2114,265.09253,204.82004,34.895935,86.70984,11.839 2114,194.00694,210.56873,31.234177,73.55823,9.305 2114,247.57324,203.71153,26.760742,55.253372,8.281 2114,-5.0916996,-16.327034,16.77538,41.159172,7.929 2114,174.35535,198.86757,29.007507,81.66783,7.875 2114,229.40034,218.43286,30.736801,72.32178,7.509 2114,244.73839,217.6853,30.527603,75.40796,6.858 2114,-6.577348,489.11932,19.575932,42.82611,6.544 2114,0.7648015,297.66672,22.215115,43.545074,6.48 2114,-10.8799925,-32.21116,29.445118,71.565094,6.417 2114,627.32214,-18.670942,16.827515,47.742157,6.253 2114,622.895,-33.842735,26.283997,77.04232,6.212 2114,-12.213455,478.89908,30.988869,62.53946,6.143 2114,304.03232,213.55078,23.192139,67.41034,6.057 2114,300.1489,251.22229,30.908081,74.04144,5.812 2114,183.06662,193.98988,35.338593,78.964035,5.781 2115,209.22247,216.57607,20.945435,48.68663,68.804 2115,191.43813,210.59898,23.13594,50.895187,36.001 2115,324.8901,212.95285,38.537384,99.99686,33.463 2115,316.88208,215.97324,30.495087,83.048584,25.089 2115,254.58067,211.76888,22.069382,52.97484,20.531 2115,182.54808,205.02866,29.372711,75.4411,17.603 2115,276.50418,212.59749,30.007904,71.68309,13.442 2115,339.75098,244.10124,29.543,77.6667,11.919 2115,199.07053,208.09395,28.53717,71.76622,11.883 2115,179.08795,206.64326,23.566742,50.19261,9.304 2115,260.49048,212.38733,32.069885,77.850525,8.546 2115,245.23596,219.17145,31.272919,75.105774,8.396 2115,304.36407,220.36214,30.611542,74.33702,7.33 2115,304.1248,212.61871,48.14499,126.33844,7.173 2115,-5.37578,-16.349335,16.816296,40.393665,6.712 2115,230.07755,85.4609,26.996094,93.02677,6.516 2115,315.81345,254.09097,27.999268,81.10837,6.291 2115,622.0432,477.9707,28.615662,66.175354,6.073 2115,211.82422,211.05917,35.986084,82.74411,6.023 2115,-6.2598324,489.62604,19.083649,42.033325,6.004 2115,264.46698,213.17844,21.516052,50.907593,5.985 2115,-11.768841,478.03433,29.854935,63.762115,5.963 2115,256.3669,231.48784,24.455933,55.870956,5.722 2115,167.43921,210.13153,30.10115,70.059204,5.623 2115,-11.209982,-31.696253,29.306181,71.02115,5.53 2115,622.8153,-34.803185,26.675415,78.31667,5.469 2116,312.61533,217.24121,39.83365,111.65381,84.091 2116,182.53908,211.18657,24.023956,49.413284,71.304 2116,201.48369,213.82095,22.664856,52.499237,62.203 2116,331.677,217.07304,39.841705,112.34059,22.494 2116,191.24321,210.44931,25.67987,54.26825,22.194 2116,250.33614,219.20755,23.788498,49.53128,14.342 2116,276.83667,213.90671,28.41864,77.43167,13.552 2116,260.47974,217.05766,32.14731,77.20552,10.076 2116,172.9465,211.52402,22.646439,44.9498,9.813 2116,174.34892,205.9914,30.809784,80.30383,9.373 2116,345.97592,243.28354,30.091003,88.13245,9.238 2116,301.97946,240.0188,30.06659,86.020874,8.71 2116,224.14445,207.19395,19.175735,43.39319,7.249 2116,-5.6613398,-16.857933,17.103302,40.67877,7.219 2116,196.75348,210.0312,35.526855,79.35109,6.982 2116,238.6571,220.06323,32.934937,66.962585,6.547 2116,627.23834,-17.362381,17.0484,46.795174,6.436 2116,231.03531,70.15347,29.906464,94.723694,6.074 2116,-11.384949,-31.597383,29.057522,70.2227,5.867 2116,621.83765,478.48135,28.897278,65.58786,5.853 2116,-8.911326,464.45264,37.68656,92.5661,5.833 2116,-6.310692,488.74115,19.107758,42.975403,5.677 2116,623.09625,-34.621094,26.330078,77.51991,5.478 2117,333.31998,215.85596,49.30136,134.1352,93.706 2117,352.8867,215.30582,48.02246,143.56717,71.996 2117,283.85696,211.71053,36.2959,101.70705,49.43 2117,214.78497,219.25862,23.79248,46.901352,47.129 2117,191.48766,217.48953,23.897568,44.14215,34.398 2117,371.521,271.7913,31.01355,83.460815,19.285 2117,182.71375,212.30603,28.722641,67.96463,15.226 2117,197.02771,215.69987,28.547882,63.79399,14.445 2117,253.93701,216.41364,31.936401,72.00964,9.185 2117,269.73584,213.17918,33.914246,88.711136,8.753 2117,211.47293,214.20673,35.536682,75.84064,8.376 2117,-5.593202,-17.238209,16.967007,41.374107,8.136 2117,208.54929,226.194,25.057144,54.266357,7.899 2117,342.07413,258.1775,31.798706,85.421234,7.374 2117,297.99905,215.71109,28.529694,78.78058,6.822 2117,326.7898,236.78745,30.70874,84.24161,6.141 2117,-11.055429,-31.872698,28.88426,70.50151,6.129 2117,627.63635,-17.489178,16.689453,45.12576,6.053 2117,244.7244,68.87982,31.00595,96.462524,5.757 2117,-6.1737056,488.78223,18.798372,42.856567,5.714 2117,580.64935,194.51639,38.161133,104.39078,5.592 2118,321.02618,218.3019,42.55844,105.059616,96.881 2118,416.22443,225.15439,54.562347,158.9744,88.4 2118,379.576,221.75876,50.751312,150.7351,86.538 2118,223.19986,217.02028,24.134415,50.051437,37.06 2118,255.47334,217.58861,22.492325,56.017807,36.698 2118,303.46393,218.88762,28.876648,73.625015,30.567 2118,240.72592,219.98904,23.576355,56.05002,20.738 2118,227.49712,215.96675,29.607101,75.29619,15.814 2118,274.83148,213.31891,18.563324,38.97139,15.127 2118,-6.0871506,487.31497,19.387127,45.21158,8.312 2118,310.1286,216.80196,32.497284,99.95271,8.251 2118,-11.593569,476.2559,30.24097,65.39682,7.59 2118,429.1049,290.6723,33.58966,93.55884,7.489 2118,338.80826,219.74763,31.06424,83.94426,7.403 2118,393.4216,251.1368,31.160767,110.26808,7.37 2118,268.95258,213.59059,26.673767,65.12532,7.338 2118,292.52057,224.60443,41.93405,103.087036,6.932 2118,259.1907,220.18042,29.472565,70.07443,6.727 2118,-5.5418873,-17.077013,17.403698,42.290386,6.451 2119,352.87277,220.05194,39.574158,103.23987,90.52 2119,316.94324,219.2108,28.68042,70.82033,86.668 2119,406.65146,220.05794,60.273407,188.72044,83.565 2119,462.7334,233.28482,55.019226,187.84647,81.434 2119,242.17249,217.24324,23.442993,48.757248,60.084 2119,222.43292,217.66359,23.578491,48.60692,42.149 2119,435.34613,222.2886,64.305786,196.33218,27.048 2119,267.2131,219.61786,20.94217,50.539917,19.788 2119,390.4918,226.0001,45.173553,121.52385,16.228 2119,233.63309,218.7624,22.644806,48.503403,13.844 2119,206.78384,212.45996,33.641724,74.997284,11.745 2119,339.50534,221.81229,33.492065,88.48035,11.725 2119,324.42188,222.35126,34.09015,84.06714,11.011 2119,296.73636,220.26584,20.986542,52.397125,9.817 2119,230.3589,210.74216,33.565353,81.0051,8.39 2119,626.5896,487.52136,20.355347,47.231567,7.516 2119,-5.3777924,-16.484795,17.064766,42.022182,7.137 2119,268.8609,217.14157,29.154968,80.04846,7.081 2120,418.02826,224.7282,40.292603,110.47249,88.324 2120,368.19812,226.02896,34.18512,84.18561,80.6 2120,509.4063,220.06303,93.9635,269.18005,65.966 2120,313.6089,223.26822,32.194458,83.306,53.263 2120,390.55743,226.7696,31.002594,82.43315,35.845 2120,278.98816,221.77519,29.888916,73.052444,20.369 2120,252.8451,221.80594,31.6987,67.11102,17.429 2120,551.277,225.46976,81.86072,272.90234,15.491 2120,401.95795,228.86255,33.329376,89.04346,14.666 2120,526.08887,226.08496,47.401855,72.87256,10.428 2120,585.3313,278.1594,53.490967,202.29367,9.502 2120,425.8131,285.0596,23.42041,53.773865,9.176 2120,271.35764,226.8876,25.429413,58.03534,9.006 2120,340.8357,64.924034,31.427795,92.89884,8.631 2120,-5.2865543,-17.005884,17.12569,41.266994,7.682 2120,509.29288,228.25662,61.070038,134.71533,7.121 2120,291.68268,220.53212,31.507294,79.57909,6.897 2120,-10.909498,-32.160954,29.155512,71.12243,6.472 2121,526.3707,218.41852,50.749207,140.87976,96.639 2121,450.4544,218.28792,37.28421,108.242294,90.279 2121,490.18857,220.07288,37.901215,116.32941,67.696 2121,476.18115,225.85431,28.66455,90.659546,31.916 2121,374.7428,212.95287,28.01538,70.99074,19.831 2121,316.25327,216.07335,30.93509,66.63875,17.408 2121,349.74567,216.82481,29.40686,72.06685,12.301 2121,530.85016,259.74863,32.96283,94.29501,12.199 2121,331.1229,216.16791,32.3768,65.76138,10.431 2121,406.91516,62.088303,29.941193,91.53645,9.782 2121,505.87094,222.93657,31.39096,97.60896,8.169 2121,359.6737,207.79301,36.618958,99.13478,7.653 2121,494.26572,269.23038,29.729645,72.54578,7.282 2121,468.76428,255.61203,28.845337,73.59918,6.867 2121,627.1102,-18.185465,17.176514,47.512276,6.748 2121,549.03235,214.39928,24.988525,48.702713,6.274 2122,463.54535,222.44438,45.6261,137.08778,94.168 2122,571.74115,218.52844,54.86505,176.84796,93.23 2122,522.46,216.88593,48.468933,156.42883,87.45 2122,301.85675,214.8535,29.438873,70.71559,35.447 2122,496.08734,218.34126,45.11377,145.60863,28.612 2122,491.2428,271.49722,32.718933,88.01932,18.893 2122,341.20306,213.47766,29.168762,68.34726,18.628 2122,142.92998,200.88838,26.40541,61.604324,17.516 2122,517.78314,253.31708,28.217285,97.151855,17.054 2122,313.25867,216.65338,30.551514,68.696106,13.306 2122,357.66537,216.63303,29.159637,68.74133,12.259 2122,538.3767,216.7255,57.068787,171.07272,11.579 2122,326.4975,215.56024,29.982758,67.84384,11.438 2122,387.38745,212.72504,20.077698,43.11859,10.724 2122,380.84866,214.92424,29.301483,65.11119,8.134 2122,146.69406,208.43176,31.401642,74.67642,7.085 2122,596.08966,232.7024,49.58551,155.5387,6.969 2123,263.8269,214.83643,35.902527,91.00824,90.348 2123,493.97427,220.21854,69.589935,215.89255,87.266 2123,469.73557,233.89911,69.73782,187.9469,71.633 2123,523.7905,222.96957,69.55005,212.035,70.669 2123,560.6489,224.26361,69.453125,214.80579,40.823 2123,376.29123,215.35324,19.995392,44.14276,26.333 2123,350.01404,218.905,28.355408,65.93967,18.617 2123,86.82013,196.55582,30.727974,69.3674,17.796 2123,308.04587,219.41707,29.6333,68.257675,13.105 2123,333.41525,215.97566,28.289703,68.71489,13.105 2123,364.73904,220.35431,31.273468,65.63663,9.804 2123,-6.3579106,487.9903,19.567398,44.989502,8.727 2123,-11.933847,474.59525,31.052053,66.26108,8.221 2123,315.26147,206.44687,29.745392,62.223938,8.056 2123,-5.3817225,-16.146317,17.459076,41.737667,7.061 2123,291.8543,214.63281,38.93988,96.32019,7.045 2123,278.24112,218.33281,31.297424,78.95656,6.568 2123,532.03357,301.75555,148.3891,355.54803,6.525 2123,505.06833,317.7409,37.06143,104.983826,6.524 2124,229.33267,214.16481,43.975067,118.91698,85.735 2124,536.1752,234.50626,74.43848,240.82843,81.56 2124,282.39258,226.37445,33.0502,87.90497,40.459 2124,374.59793,215.96547,22.495026,48.594833,37.573 2124,5.409726,189.02887,37.453808,94.23828,24.725 2124,343.50458,219.35449,29.040222,68.55182,18.474 2124,407.71338,217.26115,20.925476,51.519882,13.884 2124,379.36826,216.66829,29.82193,70.61311,11.697 2124,356.03748,221.4394,31.007996,67.58003,11.142 2124,316.08133,222.52054,32.600555,68.93695,10.961 2124,461.3605,170.86691,26.760803,73.445984,9.024 2124,368.48895,225.74211,25.045898,57.296402,8.528 2124,543.1969,291.63477,46.94922,155.97827,8.175 2124,-11.911127,478.8098,30.459692,61.95862,8.03 2124,327.7345,218.85132,22.78357,55.22101,7.7 2124,336.05243,225.35332,23.752228,57.26802,7.603 2124,-6.2962666,488.70026,19.290215,43.16205,7.584 2124,397.6016,217.40567,28.24057,73.184906,7.534 2124,-4.9825063,-16.750383,16.69733,41.602333,7.155 2124,626.1693,487.2865,21.156494,45.231323,6.951 2124,298.88168,226.01529,30.529999,74.480896,6.731 2124,580.23004,251.01895,67.729004,234.05054,6.717 2124,-11.164295,199.06006,31.129528,70.51117,6.576 2125,294.81976,219.60841,38.65979,97.1938,96.93 2125,177.19785,221.87006,60.43843,144.04462,93.674 2125,255.61658,216.35368,38.150024,106.80055,60.606 2125,316.87103,220.16638,33.026978,83.09839,44.436 2125,365.88547,218.3224,23.034027,49.947464,35.781 2125,381.80908,222.89073,28.879242,65.83174,12.576 2125,386.768,217.93065,21.78949,46.094223,8.845 2125,395.2943,225.70148,31.013855,69.405396,8.576 2125,278.82416,213.95795,41.31363,109.25745,8.017 2125,351.97968,217.33344,31.602448,71.14099,7.966 2125,-5.6210794,-16.726082,17.168379,41.029007,6.521 2125,627.36,-18.826813,17.476807,47.74455,6.519 2125,199.78452,218.9635,37.234375,84.67035,6.314 2125,375.5873,221.56572,24.117615,56.45262,6.241 2125,-10.855408,-31.725136,29.252367,71.975174,6.122 2125,623.5975,-34.314426,25.958923,76.34753,6.056 2125,328.11935,218.8545,31.11789,70.09737,5.883 2125,626.6064,488.042,20.393616,45.854614,5.828 2125,-6.251503,489.43292,18.694948,41.963806,5.693 2125,355.7766,227.60747,40.785736,101.23656,5.584 2126,35.77641,220.3404,85.63486,222.37408,92.859 2126,223.36987,217.78056,44.842224,105.93312,84.149 2126,244.02408,217.50264,43.623688,105.165054,82.404 2126,174.72964,231.67918,45.162445,108.50142,68.173 2126,334.6281,217.99236,29.328033,67.73082,12.04 2126,347.26697,220.08852,29.601196,65.56889,11.372 2126,187.27948,215.54489,53.384644,125.30658,9.452 2126,397.7271,129.16223,26.568176,73.89842,8.596 2126,345.10312,218.03206,22.752472,47.03218,8.421 2126,-5.3323364,-17.795938,17.25759,41.73611,7.488 2126,279.49118,216.7505,20.901917,39.12784,7.44 2126,-72.01708,259.33215,202.31516,467.53668,6.79 2126,275.87558,210.17267,17.735199,35.25226,6.764 2126,26.48769,177.05846,138.53346,323.25775,6.549 2126,-10.893194,-31.097572,29.892456,70.47671,6.189 2126,273.9391,213.83884,31.765045,69.52118,6.091 2126,316.97324,223.1936,30.078125,65.06256,5.864 2126,359.09946,227.85045,23.983551,50.54094,5.805 2126,330.90295,217.63074,22.013153,43.855835,5.784 2126,623.4758,-34.221252,25.67389,77.398735,5.679 2126,627.26324,-18.384205,17.021667,47.881207,5.653 2126,-12.267852,476.44382,30.393333,64.21634,5.589 2127,156.92456,222.2656,53.28781,118.53055,96.839 2127,118.83442,214.06685,52.533867,125.81084,90.931 2127,49.65467,231.31073,58.77703,158.68903,52.731 2127,232.08311,214.01608,20.243729,43.62085,29.624 2127,302.87396,217.67781,26.879425,61.88719,21.061 2127,286.57834,217.88931,27.745972,63.6463,10.443 2127,-4.9165964,-17.069626,16.892094,42.023705,7.441 2127,270.4445,217.81085,28.595703,63.93335,6.735 2127,258.4516,225.61624,20.616425,48.468323,6.668 2127,342.2616,231.81514,30.545593,60.797897,6.351 2127,-10.49515,-31.334583,29.09343,71.7226,6.202 2127,267.25262,217.57716,18.375885,42.19487,5.86 2127,281.272,216.31465,21.441345,47.048325,5.843 2127,360.68536,243.45393,22.954437,50.72679,5.7 2127,627.35223,-18.607231,17.049683,47.801144,5.699 2127,315.36914,221.83759,30.215454,63.008972,5.695 2127,-71.93618,264.54517,201.41187,463.31226,5.593 2127,623.4269,-33.928066,26.166077,77.80344,5.589 2127,83.053215,211.5137,67.41857,159.13345,5.424 2127,229.35783,216.36417,29.958145,66.65613,5.357 2127,157.62656,272.2212,31.114609,70.62399,5.345 2127,-8.93473,463.95068,37.754864,93.53955,5.339 2127,-6.3028526,488.94833,19.015028,42.64389,5.337 2127,520.86176,191.89842,21.997192,41.511322,5.134 2127,244.86595,223.10931,31.868423,67.68109,5.128 2127,349.61823,130.49962,27.451447,80.710144,5.124 2127,79.9432,214.00311,46.593132,93.70709,5.05 2127,603.4392,-57.717896,53.10077,137.44493,5.026 2127,626.4097,487.66125,20.70221,46.57544,5.021 2127,259.49548,216.0105,18.250122,36.80632,5.02 2127,583.16394,411.97015,71.46747,176.25177,4.989 2127,612.99243,454.87228,39.273926,106.65604,4.937 2127,-17.232908,-64.41791,55.48809,146.55986,4.89 2127,585.9267,-102.97059,75.927,237.6062,4.857 2127,59.12594,242.09639,36.242073,97.87947,4.818 2127,489.52356,-180.63625,235.96704,426.70392,4.766 2127,536.7185,310.6571,143.04071,341.37976,4.757 2128,54.454926,211.185,62.927963,157.67688,96.42 2128,95.655685,217.01695,60.354202,150.39607,93.968 2128,239.87784,214.37744,26.382996,72.66907,39.414 2128,251.66241,212.06941,27.98117,67.87401,12.514 2128,273.1621,215.64325,21.99408,54.302704,11.482 2128,324.75162,213.50296,24.963074,66.75714,10.841 2128,304.61322,215.06172,21.241302,50.867874,9.814 2128,281.23572,218.59145,22.003174,52.785416,9.065 2128,287.80353,213.36263,23.937317,62.403793,8.403 2128,262.3684,210.54091,26.816711,66.26695,8.231 2128,-5.1907687,-17.24547,17.044588,41.887623,7.56 2128,297.64987,221.44612,22.019196,50.640793,7.026 2128,310.3285,216.92296,27.98523,67.17558,6.601 2128,-10.835338,-31.16503,29.309582,71.756874,6.598 2128,-72.34521,262.70798,202.63937,465.62637,6.031 2128,627.13873,-18.502514,17.156677,47.822765,6.01 2128,623.2928,-33.844505,26.205017,76.93979,5.854 2128,-6.097465,488.82178,18.707508,42.58362,5.709 2128,-17.335033,-64.930115,55.867596,147.84215,5.539 2128,-8.677711,464.35458,37.45923,93.08011,5.512 2128,626.3089,488.1157,20.917175,46.419098,5.373 2128,16.135378,229.64778,43.482292,101.88097,5.341 2128,364.8721,118.58597,26.524506,84.04202,5.202 2128,612.9581,454.9834,39.488525,106.96716,5.01 2128,583.03546,411.84238,71.69049,176.45279,5.007 2128,603.35254,-57.74778,53.264343,138.23167,4.909 2128,-21.246468,400.32742,79.22354,176.31631,4.818 2128,-41.857876,361.7259,112.35101,280.24597,4.786 2128,585.7749,-103.86619,76.37323,239.35608,4.779 2128,536.6643,310.51428,142.89941,340.81018,4.778 2128,489.79773,-180.66629,235.76038,427.0039,4.72 2128,3.3537197,-14.584763,15.921572,38.27267,4.655 2129,40.794697,206.47058,71.400345,206.25098,85.226 2129,15.86802,204.1529,68.29355,207.22498,84.116 2129,358.05176,215.63411,32.490784,80.32008,73.804 2129,-1.4941311,189.47684,59.794334,205.77866,16.79 2129,265.30325,215.73643,22.734406,51.426285,12.605 2129,288.78568,220.44196,22.771057,50.713318,10.43 2129,277.46558,215.68872,27.096008,59.91751,9.515 2129,246.18839,213.76723,28.713654,60.88295,9.31 2129,-5.186368,-17.1137,17.09485,42.03065,7.836 2129,293.7589,215.99475,28.033386,62.64624,7.245 2129,-71.27119,259.26962,199.74997,467.36758,6.782 2129,255.74281,214.1629,23.985062,43.97168,6.42 2129,627.1388,-18.758171,17.342651,48.274155,6.417 2129,-10.942215,-31.369371,29.64326,72.5696,6.383 2129,362.4686,167.37022,20.548004,53.010315,6.09 2129,368.97144,221.0889,31.0466,65.17804,5.867 2129,-6.7945776,244.95317,40.827473,126.71242,5.834 2129,250.20456,212.8566,20.071686,33.343567,5.739 2129,381.70624,228.06393,28.958801,58.61151,5.702 2129,623.07733,-33.931953,26.243958,76.83677,5.526 2129,-36.33042,107.51906,145.48225,378.20892,5.503 2129,-6.2025666,489.4562,18.846838,42.07956,5.494 2129,-8.670921,464.0735,37.45723,93.76416,5.447 2129,-17.83129,-64.63849,56.16604,148.87875,5.42 2129,69.4352,204.48755,66.36198,196.03845,5.328 2129,626.5227,487.87488,20.560364,46.24048,5.308 2129,245.29237,136.30957,25.048538,82.42964,5.256 2129,613.00726,455.31696,39.216553,106.62872,5.179 2129,3.2378025,-14.482243,16.355604,38.66394,4.996 2129,583.0224,411.07135,71.709045,177.76141,4.94 2129,421.367,204.87177,28.588806,64.48819,4.854 2129,186.65338,236.0221,33.062286,58.362183,4.783 2129,-5.6477127,300.67322,39.534313,106.016785,4.776 2129,263.13492,206.61902,34.71707,79.47278,4.742 2129,536.82684,310.9402,142.78668,340.37024,4.734 2129,407.8363,232.26443,22.540344,43.073456,4.733 2129,602.8801,-57.04791,54.08026,139.06844,4.634 2129,292.03372,216.49637,39.283478,101.280945,4.628 2130,0.36167145,267.58548,52.09162,181.45023,37.441 2130,388.42523,227.50493,33.64807,86.76985,23.091 2130,267.64124,219.33414,18.688385,42.00412,19.723 2130,310.0374,213.2423,27.175232,76.789566,16.951 2130,249.3225,217.07466,21.21138,52.784348,15.346 2130,231.21902,216.51657,22.83638,59.781403,13.608 2130,238.79688,213.3591,25.987,66.232086,10.258 2130,304.5674,217.03891,23.258148,61.108612,9.854 2130,257.91867,218.67465,19.925842,42.27893,9.222 2130,-14.727535,195.66843,85.102936,274.99377,8.803 2130,365.35565,163.44345,26.448486,78.0246,8.324 2130,262.88956,212.18605,31.21463,80.84639,8.013 2130,295.2696,210.64052,35.140747,109.97038,7.27 2130,62.12642,212.00331,31.120941,54.550797,7.207 2130,276.9837,216.9222,28.519196,71.291794,7.076 2130,247.80713,208.20364,33.084167,89.83072,7.042 2130,-5.560591,-17.383907,17.415041,42.378918,6.798 2130,288.29474,217.82457,26.985718,73.02663,6.694 2130,-10.872709,-31.879362,29.487316,72.75896,6.314 2130,171.33932,232.74353,34.18872,60.568665,6.277 2130,297.08896,215.37267,20.687897,54.179306,6.211 2130,627.27594,-18.233536,17.16687,46.92774,5.785 2130,-72.22793,267.43063,200.06927,462.1696,5.6 2130,-6.216662,489.18567,18.76991,42.163208,5.51 2130,-9.229208,463.7292,37.53147,93.90839,5.507 2130,320.09067,211.82906,22.033234,63.559677,5.5 2130,-17.158144,-64.88046,55.49125,148.5128,5.358 2130,623.37256,-34.380783,26.061707,76.46363,5.314 2130,626.5186,487.73462,20.574524,46.285095,5.211 2130,612.98267,455.15546,39.393127,106.74225,5.204 2130,-39.62935,355.7874,112.386345,283.51508,5.15 2130,254.68741,210.49841,51.20529,145.60791,5.133 2130,403.12802,238.09444,30.862274,79.82478,5.032 2130,324.5761,216.26837,26.610168,76.9202,4.969 2130,276.8886,227.69046,39.40506,108.05957,4.941 2130,583.138,411.33774,71.62341,177.3132,4.935 2131,302.43307,222.04828,31.123322,78.34131,77.197 2131,424.1452,233.58745,53.953278,153.28432,67.001 2131,315.9624,220.24896,29.75769,80.99005,19.214 2131,248.48242,223.34904,21.751007,52.05385,17.858 2131,207.5697,221.31966,24.781296,52.751205,16.595 2131,223.87694,224.57507,23.881561,49.53015,15.569 2131,179.81905,216.5446,30.23497,71.5854,15.28 2131,258.2,220.15575,18.831726,42.096664,12.033 2131,164.90767,226.38605,31.714096,65.229675,11.758 2131,191.11809,222.94427,23.336548,56.50464,9.582 2131,327.82538,220.98906,22.900513,63.381943,9.186 2131,293.9084,226.39459,31.05655,97.081726,8.388 2131,229.83931,221.11609,28.13826,61.44226,7.958 2131,212.47139,215.21954,35.417374,77.182434,7.81 2131,-5.398617,-17.031422,17.270624,41.458523,7.286 2131,248.74734,214.6823,33.072968,77.272354,6.899 2131,363.86847,162.77261,27.272858,79.29814,6.629 2131,417.21863,247.82014,34.22339,90.27037,6.455 2131,-10.799712,-31.354147,29.218258,71.89201,6.439 2131,627.2073,-18.794048,17.282776,48.236526,6.385 2131,265.37134,220.5609,18.60913,50.1541,6.382 2131,261.84537,218.00134,32.910248,76.08728,5.981 2131,434.08432,238.75069,34.71292,79.45421,5.852 2131,194.42145,213.76797,40.158615,91.6203,5.69 2131,-6.302065,489.60712,18.938124,41.98651,5.55 2131,-8.733001,464.56738,37.530075,92.46277,5.541 2131,622.88873,-33.791653,26.489563,76.88323,5.464 2131,242.69547,218.6504,21.392883,38.599655,5.438 2131,43.599373,214.03874,30.403603,58.503433,5.437 2131,626.69946,489.5796,20.52887,44.52527,5.414 2132,116.17115,221.20068,44.88778,122.82941,83.975 2132,319.74728,218.05254,33.754944,85.541214,68.631 2132,341.60583,216.73428,30.200928,82.663666,27.232 2132,532.93787,217.19502,34.447327,78.20607,18.532 2132,522.54724,231.24817,59.461426,156.93073,13.809 2132,257.0583,214.7444,20.35321,50.83818,11.486 2132,515.6274,232.38608,88.74036,247.6843,10.983 2132,116.30264,262.81995,30.433945,76.035614,9.875 2132,355.32196,217.89789,34.977722,92.55078,9.719 2132,274.50565,215.27496,18.67633,51.003174,9.145 2132,132.54904,245.01689,31.454987,90.069595,8.918 2132,262.4707,214.55501,26.075989,71.101974,8.443 2132,158.63791,216.63802,42.594513,94.68913,8.278 2132,249.41978,220.88297,23.25142,55.233124,8.177 2132,461.31335,261.3331,33.243835,71.864655,7.53 2132,271.3105,215.15681,27.09732,78.74339,7.144 2132,-5.4091473,-16.870846,16.955875,40.784794,7.107 2132,129.41129,209.37314,32.408905,91.695526,6.449 2132,379.16956,161.218,28.5206,74.901474,6.416 2132,549.85895,220.18304,24.085693,58.498444,5.972 2132,626.75146,488.13644,20.216797,45.608917,5.733 2132,-10.82728,-31.395197,29.435017,71.321915,5.726 2132,1.686002,227.19724,25.958559,64.295166,5.652 2133,347.82394,220.72435,34.171173,95.0009,90.983 2133,125.65461,225.37354,46.00431,114.075134,85.493 2133,68.700455,220.743,57.965714,163.35326,81.624 2133,360.90985,217.28848,32.83429,92.87576,16.468 2133,90.55342,218.90204,54.139694,146.57428,15.813 2133,269.71875,222.08447,27.510101,65.42355,11.12 2133,145.80034,234.97896,32.93393,88.576706,8.1 2133,280.64975,217.21237,20.60913,47.547516,7.866 2133,289.9312,216.92596,20.10669,47.904083,7.495 2133,580.4261,224.88013,38.085144,96.42621,7.413 2133,-5.535183,-17.699001,17.199352,41.42874,7.303 2133,567.01733,226.26541,37.417725,91.548035,6.83 2133,559.5216,227.2408,27.96643,62.24785,6.822 2133,295.83887,213.03336,33.186676,87.31171,6.68 2133,380.72308,220.0658,30.303986,86.763306,6.617 2133,627.21674,-18.479229,17.156067,47.45227,6.578 2133,97.5728,276.5796,32.9879,99.26361,6.412 2133,-11.340117,-31.72684,29.320435,68.94785,6.12 2133,286.69824,218.28542,27.607635,74.73949,5.849 2133,509.80756,262.06482,30.13208,83.365265,5.762 2133,333.04834,219.26616,36.514923,98.294815,5.749 2133,254.77203,221.79279,28.536163,63.65741,5.707 2133,268.44608,220.5022,20.40091,43.073883,5.68 2133,623.14636,-34.15385,26.125488,76.39446,5.666 2133,308.63052,219.13904,37.18582,101.91461,5.655 2133,-6.224344,489.06448,18.673153,42.434113,5.617 2133,-8.662757,464.20874,37.43531,92.84863,5.508 2133,-17.078045,-63.55461,55.894695,147.08197,5.388 2133,-72.345345,265.41608,200.54343,462.39178,5.284 2133,296.93256,218.94759,20.58722,57.85762,5.277 2133,554.49805,226.23076,21.311401,44.228195,5.25 2133,388.1709,224.06544,36.567932,102.18596,5.236 2133,613.1646,454.28296,39.296326,108.083984,5.217 2134,111.660995,233.36362,61.270294,153.43564,95.62 2134,61.705093,234.23712,68.12018,158.05621,91.562 2134,360.27563,222.96982,38.16162,99.496826,85.562 2134,382.1421,219.17921,35.457123,102.6635,32.175 2134,17.345636,223.77466,73.20907,205.68732,9.294 2134,288.37592,225.4392,21.79654,52.39952,8.078 2134,-5.5070887,-17.65092,17.187374,41.31822,7.847 2134,294.20667,223.81378,26.686249,68.41235,7.63 2134,306.35236,219.65163,19.391663,41.7343,7.094 2134,-8.269501,229.32512,64.40842,203.84163,6.606 2134,-11.1506605,-31.408077,29.284618,69.513115,6.42 2134,-6.1265397,488.35434,18.618925,44.033722,6.296 2134,-72.76252,261.8473,202.23157,465.6349,5.905 2134,602.7372,-55.813583,53.046265,140.35078,5.829 2134,-9.163379,461.7403,37.767227,94.53705,5.816 2134,626.69385,487.80615,20.454468,46.382324,5.604 2134,627.48016,-18.330072,17.094543,46.476746,5.551 2134,309.6538,226.85661,27.936676,76.24837,5.472 2134,298.1814,219.69308,20.175415,42.14331,5.455 2134,324.62506,219.08401,36.472107,101.353,5.254 2134,518.4045,216.78365,36.102417,103.29707,5.195 2134,613.00116,455.1237,39.517456,106.881805,5.187 2134,623.54486,-34.8581,25.792175,76.27386,5.108 2134,497.27902,211.9017,47.798492,123.95752,5.066 2134,305.14594,229.92538,21.819153,56.501404,4.957 2134,-16.746504,-63.803562,55.24214,148.12369,4.947 2134,583.09784,410.71594,71.683105,177.92358,4.879 2134,536.7272,309.81464,142.50934,341.30878,4.852 2134,419.1736,163.19107,27.448517,84.48778,4.817 2135,371.44406,218.65356,40.007812,106.88501,92.585 2135,401.7495,219.64096,35.261017,104.77124,79.139 2135,18.647957,232.41365,89.199425,262.96704,52.76 2135,388.00232,220.45326,32.596375,95.38423,11.66 2135,12.940059,242.73671,60.427235,193.3474,8.917 2135,288.79437,221.29825,23.456848,53.502594,7.9 2135,-70.75776,266.39606,199.83566,465.06134,6.937 2135,-7.465067,261.0783,48.378464,164.69818,6.932 2135,-5.143358,-16.527088,16.938751,41.136436,6.869 2135,-10.884256,-31.930754,29.291697,71.57146,5.935 2135,627.39124,-18.474674,17.398071,47.696835,5.868 2135,261.01825,217.02785,32.65338,61.829178,5.756 2135,301.48584,218.07593,27.842316,69.90564,5.753 2135,603.42175,-56.17982,52.426697,139.70174,5.612 2135,-12.139958,477.75922,30.007202,63.90735,5.543 2135,280.40424,224.05598,24.012726,47.0446,5.417 2135,623.3788,-34.80432,26.391602,78.05645,5.337 2135,621.7302,477.7461,28.999146,67.23627,5.215 2135,-6.081805,489.84756,18.472542,41.36258,5.184 2135,-16.601814,-64.26005,55.133953,149.3641,5.144 2135,-1.2364423,250.34857,30.412077,88.54443,5.126 2135,583.4539,411.04465,71.23529,176.89212,4.95 2135,522.2652,227.46794,18.944824,37.886917,4.938 2135,536.43396,309.919,142.70947,342.54205,4.79 2135,604.3683,250.13689,31.08191,78.185776,4.767 2135,347.22836,214.22987,16.279358,36.897552,4.666 2135,-36.50338,-130.85284,116.8625,283.31787,4.654 2135,587.72675,224.90762,15.402771,35.72757,4.63 2135,585.8454,-103.50582,75.84784,237.88403,4.618 2135,538.2281,226.7453,19.136719,43.399017,4.617 2135,3.4597147,-13.861314,15.791883,37.333595,4.566 2135,490.93945,-182.43562,234.4643,425.4912,4.517 2135,274.03845,221.94838,23.552124,36.39949,4.509 2135,-32.792736,167.78156,146.02553,375.55133,4.476 2135,341.31818,213.89183,36.48169,98.695724,4.445 2135,-1.8964255,331.95926,28.279783,92.572174,4.398 2135,-18.558264,431.56836,55.84629,145.35327,4.382 2135,297.96625,216.75249,19.198639,37.57521,4.381 2135,319.25677,218.99008,54.194885,129.452,4.376 2135,493.82843,228.78812,237.85614,512.647,4.366 2136,417.44473,220.45798,37.776764,108.89322,83.895 2136,390.93652,215.98154,40.83487,113.91965,80.355 2136,312.2717,213.31725,26.924286,78.39479,39.746 2136,520.3142,233.63568,20.368591,51.364746,8.699 2136,306.1986,215.30565,22.465881,63.388626,8.554 2136,537.6161,237.94666,20.305115,55.334167,8.005 2136,583.6437,221.97374,35.15277,92.61803,7.879 2136,576.5197,228.30518,23.034973,57.598145,7.789 2136,294.90198,212.55946,28.088867,77.69032,7.767 2136,-5.3818674,-16.539085,16.936462,40.535263,7.188 2136,618.938,232.65942,18.327759,47.055298,7.183 2136,627.17926,-19.322292,17.575989,48.58438,6.196 2136,621.32935,474.7769,29.355225,69.97934,6.172 2136,557.63196,222.79733,24.481934,65.31857,6.158 2136,529.35876,238.21434,20.266235,56.516953,6.087 2136,623.1295,-34.196724,26.486267,77.07206,6.045 2136,599.01056,221.08966,34.456482,98.54791,5.83 2136,279.41785,217.82674,27.84262,62.84218,5.814 2136,-11.170411,-31.806667,29.468979,70.74031,5.809 2136,-8.602434,465.44086,37.406715,90.73724,5.641 2136,542.1343,231.82765,26.61499,67.346756,5.605 2136,601.18665,230.40332,21.629944,56.041016,5.579 2136,-6.4167967,489.93698,19.071367,41.73654,5.534 2136,518.1609,226.46086,32.973206,78.981064,5.324 2136,592.3789,229.86623,22.78595,59.116257,5.174 2136,-16.224998,-63.644737,54.8051,146.08838,5.157 2136,-73.06912,265.898,200.88557,462.00647,5.046 2136,505.6445,226.91087,33.355377,82.39049,5.042 2136,603.40283,-57.77034,53.22339,139.15102,5.01 2136,567.20544,223.78777,35.50891,89.06392,4.965 2136,535.82104,307.60992,144.07922,344.3781,4.964 2136,602.9612,426.2785,56.98828,147.42706,4.942 2136,-21.449558,402.89328,78.90527,175.20065,4.894 2136,3.5168207,-14.368168,15.822374,36.85097,4.874 2136,286.98016,209.83945,52.047302,139.983,4.871 2136,289.81924,215.96118,23.266815,55.612793,4.728 2136,-36.316746,-130.46416,116.44475,281.66016,4.701 2136,491.21063,-182.80658,234.55347,425.87112,4.635 2136,494.1852,230.10812,237.27505,512.595,4.588 2136,624.2916,222.6363,24.548706,68.69725,4.567 2137,435.1361,222.64877,42.137604,118.650055,78.699 2137,523.4198,239.82559,33.533875,105.16034,43.312 2137,326.0354,221.71344,30.285553,71.02045,41.185 2137,560.5221,231.04358,26.208923,76.778564,31.04 2137,615.51215,236.66968,20.010376,56.2948,25.622 2137,320.07413,223.10574,23.77533,62.948853,17.821 2137,576.0517,232.62192,24.909302,69.00885,17.203 2137,550.2363,236.73662,27.20044,88.231766,12.985 2137,453.3401,228.82448,31.513397,100.88948,9.703 2137,539.13214,238.10757,29.763245,95.300964,9.032 2137,585.474,239.48239,19.7052,56.330597,8.866 2137,306.23572,238.3615,22.502258,48.551437,7.97 2137,370.34308,217.908,18.648987,34.50963,7.558 2137,-5.119388,-16.796804,16.819265,41.30099,7.439 2137,612.85516,450.91388,39.888916,112.10864,7.294 2137,338.01837,219.18832,27.483765,71.465546,7.246 2137,453.34793,165.56845,28.164032,86.04851,6.989 2137,621.96295,475.8459,28.445618,67.94122,6.541 2138,495.54395,221.79079,45.68811,119.893906,88.242 2138,361.46082,227.52734,29.331085,72.0188,87.595 2138,383.09344,226.7345,30.354797,74.44531,84.693 2138,573.8832,239.73877,47.876953,182.78021,72.728 2138,592.98944,238.40698,44.141174,172.62732,16.462 2138,613.93427,233.94897,25.032043,88.34424,11.102 2138,610.782,249.06776,35.2464,133.32372,8.291 2138,514.3147,234.1294,31.7901,94.79755,7.783 2138,410.92282,218.5313,19.452393,40.2527,6.734 2138,-5.5875463,-17.214937,17.152578,41.90809,6.6 2138,588.2652,230.67809,30.452698,79.32152,6.024 2138,-11.070402,-31.656908,29.514688,73.205635,5.948 2138,466.11697,221.5731,17.819458,37.97017,5.81 2138,613.5828,451.76917,39.222656,111.45111,5.729 2138,-8.956667,464.46075,37.697556,92.769226,5.566 2138,-6.415611,488.51456,19.074064,43.444916,5.547 2138,278.27216,217.70393,29.236206,69.58299,5.542 2138,621.90234,476.9468,28.690857,67.74094,5.523 2138,536.2843,306.93436,143.80243,344.16843,5.461 2138,582.3387,240.11423,29.476318,98.23123,5.42 2138,-16.517393,-65.07326,55.040337,149.1442,5.407 2138,627.08215,-18.382536,17.234314,47.63337,5.349 2138,519.9999,222.10275,49.814026,136.54855,5.236 2138,597.51935,235.03726,30.551697,90.23477,5.208 2138,486.99707,242.18506,35.641357,97.40961,5.174 2138,376.29047,226.82684,23.764893,70.862,5.171 2138,402.00854,217.43794,20.804382,47.195786,5.12 2138,-72.91711,265.77203,200.8038,461.62408,4.977 2138,623.07874,-34.25132,26.09613,77.405235,4.934 2139,540.3942,226.42287,47.65027,130.55443,94.587 2139,399.42432,231.4057,29.331055,80.915344,66.053 2139,408.92746,229.30896,33.797638,88.26941,58.599 2139,423.02545,225.44273,31.058868,89.06178,18.98 2139,500.99228,228.97592,18.421417,42.341064,11.337 2139,-5.298328,-17.051233,16.894287,42.718998,5.977 2139,395.20932,256.2749,24.51004,59.53064,5.685 2139,626.6607,488.27203,20.342407,45.717346,5.641 2139,-6.313023,489.2648,18.889074,41.91855,5.621 2139,-8.900206,464.5535,37.644398,92.85483,5.585 2139,-6.1229534,207.63602,18.185284,40.966293,5.43 2139,612.63806,455.8021,39.43457,105.6246,5.377 2139,-10.870029,-31.965748,29.485538,75.92148,5.345 2139,583.1103,413.758,71.82611,175.24664,5.32 2139,602.7683,-56.55616,52.614685,138.854,5.317 2139,-16.883146,-64.03435,55.36985,147.1188,5.259 2139,536.29504,308.89423,143.88892,342.95258,5.138 2139,559.8122,229.77716,40.05011,110.798584,5.112 2139,-73.28487,266.0256,201.55446,461.59134,4.941 2139,626.9972,-18.877495,17.3125,47.611862,4.921 2139,533.6012,240.03497,31.982422,101.82318,4.812 2139,-21.553423,403.28983,79.14217,174.46664,4.773 2139,406.85437,260.30737,24.03363,58.33087,4.7 2139,-40.91551,365.3324,111.3347,277.56873,4.663 2139,-36.816883,-131.36874,118.24283,285.3486,4.589 2139,495.9607,228.40845,235.87653,514.1179,4.541 2139,4.706358,281.92618,15.875345,30.644684,4.503 2139,623.12036,-33.93768,26.283813,76.87334,4.473 2139,574.3641,220.17754,47.062378,118.62727,4.411 2139,-4.113834,277.33124,15.745899,34.786957,4.34 2139,87.237045,260.1916,38.67659,61.546753,4.284 2139,490.64758,-180.63083,235.15576,422.62393,4.255 2139,585.8477,-104.35468,76.15314,238.62408,4.213 2139,440.39334,224.3515,20.278015,48.83014,4.178 2139,-7.220093,129.82967,37.85597,112.51326,4.062 2140,407.9209,226.98909,35.03,109.06554,94.304 2140,518.1167,224.39078,56.812866,157.9975,93.757 2140,370.8298,226.23453,38.016937,108.671875,91.445 2140,390.06195,226.23041,37.100464,108.4986,21.419 2140,482.0325,228.08575,21.133331,44.868958,11.718 2140,538.3246,229.31223,32.167603,88.27887,7.933 2140,-5.1565228,-17.361553,17.208046,41.793602,6.846 2140,-10.98008,-31.57246,29.5588,71.49673,6.058 2140,627.42163,-16.678152,16.532715,45.547718,6.011 2140,-6.209958,490.1436,18.574656,41.225555,5.899 2140,626.5826,487.82227,20.436707,46.497925,5.664 2140,410.47015,220.29832,21.448212,63.116714,5.635 2140,-16.84597,-63.94106,55.16766,145.68268,5.565 2140,-8.650976,464.49808,37.453674,92.570404,5.509 2140,611.33765,-48.150753,40.95288,102.16877,5.393 2140,583.3669,412.96027,71.91931,175.89935,5.329 2140,612.8975,456.103,39.25775,105.67563,5.302 2140,3.3836842,-14.687841,16.444715,38.30632,5.221 2140,535.79376,308.50836,144.26007,345.1634,5.104 2140,517.998,236.09506,28.058655,96.21857,5.049 2140,-73.21973,266.2722,201.3537,460.8395,4.953 2140,-21.817074,401.9231,79.6301,175.81677,4.85 2140,491.21994,87.6092,18.734467,56.306587,4.845 2140,-36.52461,-131.00552,116.535446,280.30072,4.809 2140,494.6138,228.81183,237.16507,514.1344,4.711 2140,497.43048,225.11049,20.6969,47.811478,4.662 2140,598.9747,232.31479,34.790833,92.17102,4.526 2140,401.93042,221.20593,22.60553,57.63739,4.521 2140,380.87146,224.48053,28.327606,68.139465,4.438 2140,490.64642,-180.92645,235.49316,423.64575,4.411 2140,-71.10722,-189.9422,212.43684,456.09766,4.336 2140,585.7505,-103.53426,75.94299,237.3966,4.33 2140,614.0137,214.73924,33.923035,98.8857,4.296 2141,359.54984,233.99915,44.217743,129.22443,93.146 2141,311.7223,230.849,45.490814,131.81244,74.404 2141,450.3534,238.58725,70.79321,176.30096,74.216 2141,435.84442,228.50395,22.506989,48.81746,11.595 2141,343.31903,234.14812,42.292725,125.318375,9.059 2141,359.29306,221.59406,27.204926,78.590454,8.997 2141,315.78357,299.2093,32.5401,72.66803,7.104 2141,306.87015,263.75983,33.883972,97.724884,6.953 2141,-5.854212,-17.564737,17.850742,41.58508,6.672 2141,475.41687,237.23195,30.745728,86.60014,6.48 2141,-12.139988,-41.286335,40.74344,100.78449,6.042 2141,626.5327,488.03122,20.462036,46.0065,6.023 2141,2.8439105,248.85336,19.814701,36.77112,5.908 2141,444.81296,228.81718,28.591156,70.422104,5.807 2141,369.3485,229.33987,30.823425,84.65762,5.773 2141,206.53412,223.06494,27.461884,70.221375,5.629 2141,583.107,410.59906,71.85065,177.84119,5.596 2141,-6.149442,489.34204,18.741657,41.950928,5.536 2141,-11.833901,477.77933,29.716915,63.52414,5.416 2141,535.94354,308.64368,143.60345,343.39673,5.372 2141,610.8924,-47.694153,41.71167,100.84335,5.342 2141,493.9355,227.90955,237.09589,516.26196,5.268 2141,612.7665,455.88608,39.227417,105.970856,5.163 2141,-73.0829,265.95673,201.32318,462.37274,5.145 2141,620.3576,248.44846,15.797485,33.519165,5.011 2141,357.61325,279.84036,31.380554,84.115204,4.943 2141,-21.609726,402.26614,79.38794,175.70908,4.858 2141,374.54413,290.82162,28.51767,75.47943,4.797 2141,626.85516,-19.804123,17.915283,48.09283,4.733 2141,600.14655,246.2796,32.48163,95.59375,4.717 2141,-3.875864,236.76909,17.844559,40.30919,4.705 2141,490.79138,-182.53117,235.34448,426.85123,4.629 2141,627.83923,240.91718,15.067505,36.81024,4.62 2142,299.21213,225.33841,73.174286,230.40762,93.327 2142,200.33563,213.26953,62.79245,168.34564,92.897 2142,378.5426,220.07735,20.973267,48.644028,43.522 2142,360.40564,216.4692,21.888489,48.77025,42.308 2142,122.02427,214.96619,18.434868,38.553574,8.878 2142,277.66727,209.48114,69.53781,198.3147,7.123 2142,203.13087,270.96533,37.26512,97.52789,6.872 2142,-5.4056573,-16.726416,17.03402,42.08485,6.783 2142,370.0992,218.45944,21.62564,47.48813,6.421 2142,-6.2377934,489.45724,18.939548,41.75656,5.924 2142,112.58056,211.90494,24.971306,59.74826,5.882 2142,138.27074,214.39044,19.508286,39.152496,5.758 2142,-11.000654,-32.552177,29.236502,73.68376,5.755 2142,285.5147,212.59605,29.115692,80.09483,5.594 2142,627.36,-19.051477,17.225342,49.182304,5.506 2142,-8.809524,464.19415,37.61157,93.09033,5.385 2142,326.6314,214.7775,35.632263,88.40869,5.376 2142,626.6007,488.122,20.603638,46.3291,5.363 2142,622.84235,-34.106197,26.39386,76.96851,5.25 2142,-73.03497,264.65424,201.43715,463.26508,5.195 2142,583.33655,411.8199,71.33661,176.58844,5.085 2142,-17.027962,-64.46893,55.222565,146.54716,5.065 2142,612.8962,455.54675,39.419006,106.25653,5.059 2142,393.5349,222.96506,21.056519,48.13388,4.834 2142,287.53894,225.41931,38.367462,109.33746,4.827 2142,536.63025,309.19296,143.29498,342.6304,4.826 2142,585.7502,-102.257385,75.588806,236.11386,4.809 2142,-21.633411,402.20187,79.2805,175.60068,4.79 2142,-36.521,-130.82512,116.5865,282.14154,4.775 2142,490.89087,-181.94913,234.32605,426.33017,4.69 2142,93.25112,210.05154,27.272469,60.503754,4.652 2142,-4.8112717,157.07028,16.526382,37.47493,4.571 2142,401.6162,225.17918,20.774261,48.81047,4.563 2142,603.0462,-55.973824,53.06427,136.48708,4.56 2142,228.9295,202.43988,57.47702,158.03284,4.548 2142,129.63763,215.00983,19.064117,37.728348,4.501 2142,493.9348,227.01657,237.33704,514.9197,4.484 2142,382.08957,203.4986,26.63556,58.780365,4.289 2142,-70.49255,-187.94359,211.39937,454.25134,4.221 2143,50.11751,215.72064,73.9798,215.34283,82.088 2143,197.98233,216.1282,26.034409,52.99945,32.279 2143,214.58685,218.87558,24.482391,51.581085,20.351 2143,24.357225,219.89555,69.01602,207.47157,10.623 2143,-5.508481,-17.783123,17.317677,42.74328,7.271 2143,-12.039842,474.69995,30.524792,65.7207,6.87 2143,-6.1603684,487.40286,19.303207,44.254852,6.862 2143,-6.109922,211.97421,59.78929,196.21033,6.834 2143,-10.979345,-31.837156,29.549587,72.9168,6.549 2143,-72.51294,260.3042,201.63742,465.57544,6.411 2143,626.8104,488.9073,20.145203,45.097656,6.112 2143,88.025055,214.9678,35.040985,73.61487,5.87 2143,220.88123,205.70932,30.304916,63.093994,5.563 2143,611.30774,-47.659027,40.77002,99.90195,5.537 2143,30.172657,169.28021,133.37958,332.65527,5.336 2143,612.835,455.87756,39.242615,106.0437,5.045 2143,583.1855,411.94888,71.433105,176.34415,5.028 2143,490.72144,-181.9609,234.4862,427.66156,4.91 2143,627.272,-17.435883,16.574585,46.249935,4.861 2143,435.0311,-12.326805,32.441925,62.800514,4.712 2143,586.30237,-101.98939,75.117004,234.4454,4.703 2143,536.4642,310.90802,143.45984,341.6125,4.68 2143,-71.76576,-191.0304,214.1324,458.24826,4.666 2143,-17.436546,-65.03934,56.30268,152.82112,4.604 2143,-21.616219,396.0439,78.531876,179.35971,4.529 2143,3.2174253,-16.036974,16.186493,39.782845,4.518 2143,493.50906,227.19702,237.35,514.80005,4.455 2143,1.6932642,487.49545,20.77908,44.19565,4.432 2143,-2.224927,385.99487,35.916058,94.52533,4.277 2143,440.68408,-0.87858963,22.167175,40.735672,4.255 2143,-36.638176,-131.31233,118.27927,294.9602,4.217 2143,-10.967043,438.2644,30.394255,71.69092,4.214 2143,103.2953,218.03012,37.016922,71.70294,4.209 2143,-7.148881,288.47202,40.26216,112.93158,4.19 2143,35.28896,220.15353,47.94621,111.79401,4.09 2143,110.75345,211.94643,25.825714,47.521225,4.069 2143,-21.047844,214.83832,93.67783,295.34473,4.016 2143,-5.9825287,469.57364,17.730404,42.888702,3.991 2143,101.04698,249.40454,35.562744,79.73309,3.925 2143,-11.281244,80.0576,32.531036,72.20848,3.861 2143,-8.624545,243.48264,40.646336,118.904816,3.85 2143,572.5811,-23.634315,53.28607,130.65404,3.82 2143,10.480061,198.67567,59.011158,114.1367,3.792 2143,207.80884,212.17856,24.322357,50.754883,3.752 2144,482.44794,244.0002,61.1933,149.02159,97.085 2144,487.749,255.99597,39.906525,101.6452,7.668 2144,25.007275,217.33032,33.42723,65.578,6.559 2144,-11.286164,-33.215157,30.568604,76.29905,6.206 2144,627.2996,-17.569954,16.77539,46.874336,6.048 2144,-6.1080647,489.1142,18.889673,42.28485,5.875 2144,-0.297122,221.64825,30.797417,69.55963,5.698 2144,626.6088,488.03116,20.601196,46.122955,5.608 2144,583.1326,410.38367,72.33673,178.25061,5.485 2144,-8.562346,465.42987,37.534904,91.98474,5.405 2144,623.22516,-34.13324,25.786621,76.781624,5.305 2144,-5.993271,-17.70091,18.196945,44.12412,5.222 2144,536.3227,310.6964,143.63153,340.06476,5.134 2144,-72.853424,265.30765,201.08228,462.42953,5.13 2144,612.4744,455.82242,39.802795,106.10898,5.118 2144,-17.487295,-63.255314,56.136635,146.97963,5.107 2144,494.36954,229.35532,237.00345,511.97476,4.926 2144,-71.664116,-189.7735,212.9339,457.2842,4.883 2144,603.46265,-56.85161,52.7948,134.83417,4.874 2144,-21.498417,402.92447,79.215,175.16818,4.871 2144,593.8247,317.75323,21.958984,41.18927,4.845 2144,490.5989,-181.2834,234.88705,426.74072,4.751 2144,586.02435,-100.638565,75.41266,232.93938,4.712 2144,-2.0916474,-0.3731346,28.260647,84.611984,4.659 2144,426.49023,246.11853,61.26474,110.74463,4.629 2144,501.66937,260.3649,37.762268,76.42386,4.573 2144,-36.874214,-131.45792,116.86553,283.3641,4.465 2144,479.09305,249.48463,36.61325,83.131516,4.318 2144,125.11359,209.63948,54.599213,120.37538,4.307 2144,11.57893,198.64993,53.132687,108.88815,4.286 2144,163.71762,235.11954,40.62764,90.52774,4.144 2144,-2.5217736,60.629337,27.047012,89.23418,4.123 2144,-13.027803,191.37622,48.413094,130.2218,4.122 2144,416.55896,213.98581,43.192657,83.35791,4.063 2144,594.3739,-45.902565,44.24872,96.46988,4.057 2144,343.3095,240.75742,61.21988,114.95596,3.992 2144,-6.4956894,224.08087,20.249615,45.685028,3.975 2144,399.08203,205.53912,63.86847,161.58624,3.967 2144,93.1505,-18.083225,30.535095,71.6813,3.916 2144,2.1593726,-16.423712,17.192345,43.06387,3.857 2144,396.75806,184.2695,27.066711,67.824005,3.83 2144,395.6269,159.20535,29.870544,67.30455,3.815 2144,130.56075,303.06604,20.186447,34.90619,3.745 2144,41.378647,220.383,34.508194,66.033936,3.715 2144,375.6289,243.12518,60.25769,113.99768,3.709 2144,403.18207,196.17033,39.636475,88.44417,3.67 2144,1.7981982,-26.056862,49.66407,153.21686,3.659 2144,417.37515,282.98453,43.92581,82.61902,3.639 2144,397.83325,210.64973,27.413666,65.41377,3.601 2144,493.0959,-16.943539,29.608643,60.295433,3.594 2144,-10.875998,213.54625,31.00509,67.42958,3.566 2144,596.19214,309.6377,28.852783,61.89032,3.563 2144,3.8835216,226.0827,38.738823,90.78406,3.507 2144,195.83229,228.38354,39.59909,94.27002,3.507 2145,297.02368,238.34131,72.638855,203.82098,94.846 2145,627.00305,-18.635384,17.717896,47.4037,6.111 2145,-6.1595726,489.34042,18.742031,41.750397,5.603 2145,626.50037,487.80478,20.587952,46.59372,5.532 2145,-11.8882475,478.33575,29.893703,63.1391,5.524 2145,622.59863,-34.05429,27.01416,76.26876,5.389 2145,299.9832,257.3001,38.493317,91.80359,5.378 2145,-5.480736,-17.447704,17.213043,41.823063,5.23 2145,585.81604,-98.17853,74.72864,229.66682,5.148 2145,613.6256,-19.961185,28.685425,71.52824,5.096 2145,-12.508889,-39.798477,41.481785,100.34417,5.088 2145,-73.05103,265.66507,200.75323,461.33896,5.07 2145,582.7613,411.79163,72.0014,176.67761,5.061 2145,612.7261,455.38562,39.38855,106.79028,5.028 2145,536.4405,310.6535,142.70618,338.66095,4.956 2145,-21.691757,402.31085,79.33331,175.73651,4.858 2145,490.97366,-181.11742,234.24393,428.21216,4.846 2145,603.17786,-56.055885,52.746155,134.57367,4.814 2145,318.5396,264.73383,38.98117,87.53073,4.666 2145,494.0348,228.24905,237.10828,512.9358,4.536 2145,332.4087,354.5844,37.923462,77.43729,4.465 2145,-19.625374,-90.42268,71.34691,201.18501,4.399 2145,574.9987,232.12387,47.608887,116.001434,4.371 2145,-36.485275,-131.58,117.204384,283.28622,4.352 2145,490.82657,348.14124,33.861176,56.028564,4.21 2145,-71.54803,-188.3382,212.98242,454.4755,4.196 2145,-4.947107,108.92554,16.356401,35.965424,4.172 2145,-4.8823557,237.56145,17.710487,37.56346,4.169 2145,594.2006,-43.925804,44.584106,95.96686,4.159 2145,597.97815,244.9821,35.74292,89.45851,4.098 2145,247.62383,260.1417,62.638626,116.674194,3.968 2145,460.31598,0.17080498,16.121521,32.126045,3.936 2145,493.09476,230.68585,52.692535,114.82715,3.921 2145,313.0158,321.55646,58.42569,139.63446,3.916 2145,618.39685,-5.528866,19.924622,43.176903,3.903 2145,514.94434,236.16153,40.608337,91.559235,3.882 2145,184.09752,239.3628,60.270782,116.42383,3.769 2145,597.804,1.704216,30.705017,65.887886,3.766 2145,412.35092,-13.343464,14.904938,33.91615,3.731 2145,420.35556,-11.735743,14.646912,32.88063,3.727 2145,363.17084,242.23814,71.74194,184.85933,3.656 2145,438.87296,319.74677,33.13629,63.887177,3.642 2145,627.15784,245.81169,17.424988,51.090805,3.623 2145,203.6345,241.47668,75.17796,180.36987,3.622 2145,613.2636,316.2506,39.08777,109.34503,3.616 2145,443.22034,-14.201025,15.648865,35.98117,3.598 2145,615.6777,240.7464,23.194153,69.31903,3.594 2145,570.5434,270.45862,32.867615,59.582825,3.567 2145,428.1671,-12.820917,14.639832,34.03418,3.567 2145,-5.0648336,123.35266,15.979081,36.70346,3.528 2145,-15.440529,154.52498,50.93627,142.16075,3.478 2145,-9.5959425,-3.6954956,39.444126,99.29971,3.453 2145,270.41312,242.60153,65.72153,134.14807,3.447 2145,596.96277,287.53763,41.040466,98.94763,3.437 2145,327.59503,286.78265,51.194214,131.47284,3.419 2145,505.5972,347.8929,34.795258,57.243774,3.368 2145,169.2756,141.45894,24.02977,46.838974,3.357 2145,174.07828,145.82788,29.402878,71.52324,3.348 2146,17.30436,214.79623,101.72532,283.71045,77.194 2146,-5.2975326,-17.22556,16.929996,41.638966,8.164 2146,-71.43745,262.66278,201.55762,469.68427,8.078 2146,454.12457,234.46428,35.41992,80.34227,7.161 2146,476.73465,235.21973,29.999481,66.60968,7.054 2146,-10.8368,-31.446075,29.288073,71.45652,6.997 2146,627.2851,-17.482594,16.332825,48.138096,6.706 2146,626.72906,488.3548,20.22107,45.476257,6.361 2146,472.18887,240.32628,23.644928,52.318466,6.318 2146,491.43845,238.74991,31.796356,61.62494,5.983 2146,622.7914,-33.655853,26.192322,78.937386,5.734 2146,3.6075907,-14.613643,15.48182,37.54501,5.715 2146,-6.1298237,489.42966,18.81656,42.680573,5.629 2146,8.502741,235.82483,70.44318,199.1518,5.628 2146,437.3253,242.31448,31.980011,69.74585,5.457 2146,-8.790189,287.38165,39.2328,111.97171,5.364 2146,-9.56448,463.89767,37.867798,92.53189,5.31 2146,-17.046558,-65.234566,55.305946,150.03534,5.243 2146,612.8844,455.97803,39.29419,105.76898,5.168 2146,603.24005,-56.297215,52.933777,137.55722,5.151 2146,583.16156,412.1141,71.90503,176.34097,5.097 2146,536.32605,311.678,143.47644,338.92416,4.849 2146,491.34943,-181.65456,234.34344,428.01413,4.842 2146,465.05383,238.77196,22.250702,43.827347,4.816 2146,493.7248,227.32806,237.32294,512.8668,4.617 2146,419.75757,245.53409,30.986298,62.94696,4.612 2146,585.7554,-100.10886,75.41437,233.70616,4.572 2146,-42.836693,353.50842,114.56898,284.70294,4.498 2146,619.60345,-15.859392,16.370605,44.306896,4.473 2146,281.45383,352.97327,33.95517,61.836304,4.409 2146,-18.612967,432.45804,55.712227,143.20663,4.407 2146,-71.548935,-190.45697,214.80199,457.77673,4.298 2146,-36.436977,-132.16266,117.431015,284.83905,4.295 2146,481.50513,238.8069,20.227295,38.35402,4.293 2146,-20.880917,233.5752,107.38077,304.35284,4.288 2146,-11.917907,249.94138,43.266254,104.790955,4.256 2146,498.21872,235.6272,19.591095,41.26776,4.187 2146,10.927135,-14.39606,15.831024,36.934853,4.169 2146,-4.402218,172.74817,15.603504,35.320694,4.15 2146,474.91132,238.29716,17.38327,30.511826,4.134 2146,620.1267,0.33357048,18.349792,50.91741,4.057 2146,526.5805,301.2147,35.473206,76.332184,4.039 2146,432.43317,229.67574,48.905792,111.89061,4.021 2146,17.33234,291.51617,155.34573,350.38995,4.017 2146,463.25137,225.33008,45.11081,103.035706,3.933 2146,306.15964,364.1762,35.86142,61.733307,3.928 2146,3.6924076,251.9527,48.211708,131.68066,3.919 2146,459.46927,241.96356,18.930725,32.00714,3.909 2146,618.80725,490.8177,20.021729,41.79718,3.904 2146,136.40742,249.61386,34.759262,60.083557,3.894 2146,-4.833602,155.27206,16.205658,37.07361,3.84 2146,-5.416588,139.39317,16.732586,40.17891,3.838 2146,-5.489297,124.084,17.155235,39.330643,3.814 2146,404.36124,237.37534,38.71524,84.13165,3.81 2146,445.02246,235.24922,28.848083,56.05992,3.799 2146,2.2663856,148.45587,18.332884,39.36917,3.775 2146,411.2978,-14.007675,15.680054,34.26659,3.747 2146,514.07214,298.1587,32.98053,79.47238,3.713 2146,440.97375,242.96748,20.82904,35.95073,3.69 2146,489.55673,238.31233,22.091553,45.31102,3.682 2147,577.1864,221.67763,50.009766,132.05968,95.758 2147,600.4828,227.49466,45.130127,136.61813,14.117 2147,520.49084,216.30458,24.782959,46.17064,13.95 2147,-5.3096366,-17.49736,17.024557,41.10369,8.25 2147,614.9879,246.37463,25.184814,109.15277,7.027 2147,-11.378757,-31.144989,29.744648,68.62096,6.665 2147,627.28894,-17.350168,16.918762,45.517387,6.568 2147,-6.4123306,487.85858,19.393383,43.764587,6.311 2147,514.38635,208.74194,38.234802,67.00894,6.029 2147,-12.01853,475.57224,30.43207,65.26053,5.864 2147,502.8796,213.47002,27.833344,52.93666,5.813 2147,521.8977,204.29243,18.61615,35.74028,5.676 2147,3.9066772,-15.559732,15.67399,37.832237,5.62 2147,626.746,488.40695,20.301392,45.51657,5.527 2147,324.3726,235.38875,37.7063,94.79591,5.419 2147,623.13654,-34.527805,26.164307,75.55592,5.416 2147,611.4532,274.4704,37.270935,111.73425,5.349 2147,513.6693,211.70401,22.183044,41.765106,5.347 2147,-16.56792,-64.3488,54.526127,146.41583,5.325 2147,536.2004,308.69366,143.89752,343.38007,5.172 2147,310.76312,230.52597,35.500183,88.8244,5.141 2147,582.6849,413.3843,71.86566,174.65408,5.119 2147,612.71387,455.0491,39.494507,106.92551,5.102 2147,526.7075,204.96689,21.501465,43.016754,5.082 2147,-40.829357,363.90918,111.91731,276.7483,4.769 2147,603.1826,-55.559566,53.717285,133.66309,4.713 2147,611.1344,200.79193,39.770508,112.990845,4.66 2147,529.933,195.48318,17.710876,35.042587,4.652 2147,11.198516,-16.66989,16.069645,37.8531,4.623 2147,492.96777,228.13809,237.6734,513.5647,4.588 2147,-71.8877,-190.0061,213.60736,456.40677,4.577 2147,-36.096996,-131.992,116.264984,280.28693,4.527 2147,528.9338,201.27309,33.130493,62.118942,4.526 2147,-71.935326,267.4323,199.38184,458.76935,4.499 2147,532.8234,-183.75737,148.07245,425.1382,4.41 2147,-19.112532,433.831,56.76037,142.73566,4.366 2147,585.3736,222.53568,33.891174,78.06442,4.361 2147,27.570532,-15.371916,16.022638,37.31596,4.356 2147,-4.3770404,25.295328,15.383532,39.89396,4.312 2147,587.0735,264.37375,32.647217,87.33664,4.299 2147,328.36523,241.21303,22.654846,51.240616,4.299 2147,354.65857,234.00272,18.86029,40.42987,4.228 2147,586.06476,-104.40039,76.27582,238.01202,4.136 2147,316.02924,241.76453,19.667908,37.78479,4.128 2147,349.25415,238.71405,28.44574,65.65997,4.119 2147,298.34802,246.70418,19.035797,37.111526,4.116 2147,-9.385424,-7.9419327,39.30697,104.45712,4.093 2147,537.4418,195.32243,19.896667,41.993515,4.076 2147,551.62317,187.47066,22.677917,46.52542,4.035 2147,294.8363,229.63391,36.31244,91.01465,3.989 2147,594.7094,-45.37089,43.73419,98.60081,3.98 2147,-4.429076,1.922842,15.606978,38.723625,3.954 2147,267.66263,-13.235747,15.488098,34.893436,3.924 2147,-9.259196,327.88916,39.551136,102.744446,3.9 2147,19.735958,-15.563818,15.587521,37.046196,3.892 2147,306.99182,242.916,18.718048,34.151962,3.89 2147,336.06647,240.21999,21.838135,43.925217,3.843 2148,506.79218,232.55716,51.783142,127.145386,92.384 2148,471.35117,233.25606,52.551483,121.032394,90.389 2148,431.17862,222.074,25.13858,47.37906,13.608 2148,-6.6062713,487.79422,19.907106,44.910126,7.33 2148,-5.483308,-17.18193,17.20129,41.775433,6.824 2148,-10.974735,-31.104094,29.770355,70.80386,6.379 2148,425.09924,213.25989,21.834839,42.725296,6.323 2148,603.07367,-55.76507,52.946777,137.18407,6.245 2148,490.83472,287.1712,33.960022,68.558624,6.013 2148,627.39355,-16.51525,16.741638,44.72164,5.999 2148,497.76678,260.25574,36.499634,90.76782,5.746 2148,-9.50391,463.9635,38.44463,90.45581,5.714 2148,626.6813,488.34454,20.370972,45.437256,5.634 2148,415.02094,206.98561,27.38388,56.806686,5.411 2148,583.2156,412.53162,71.81586,175.50122,5.335 2148,-21.860514,403.70813,79.80888,173.57019,5.267 2148,535.98334,310.32758,144.2409,342.17572,5.265 2148,623.56555,-34.873325,25.581787,76.69601,5.096 2148,445.58923,223.51993,24.794647,43.248108,5.072 2148,612.95026,454.95242,39.310608,107.60123,5.058 2148,205.38017,245.90274,30.330276,73.09506,5.026 2148,-16.858393,-63.21789,55.13878,146.95863,5.016 2148,473.68176,277.06738,35.020508,76.82114,4.998 2148,435.07532,196.60704,30.595032,61.705338,4.907 2148,495.2151,231.01903,235.9331,511.34027,4.753 2148,-72.79035,266.82794,200.21182,459.92706,4.741 2148,-71.78726,-189.22183,213.63084,456.29504,4.658 2148,214.15022,231.16864,35.985214,90.15497,4.65 2148,589.9471,213.60612,29.132263,61.23802,4.635 2148,419.05145,209.27585,41.047974,71.111664,4.603 2148,-36.09267,-131.11188,116.51663,282.6227,4.538 2148,202.70163,251.19565,21.84906,45.505432,4.52 2148,216.37595,250.37833,22.98993,49.72876,4.514 2148,3.323946,-14.481401,15.887175,37.711445,4.466 2148,4.435189,420.2057,29.915997,68.27292,4.434 2148,522.0153,210.91908,61.260986,147.51958,4.311 2148,431.84363,223.57622,42.707123,72.97182,4.31 2148,230.55893,231.8534,34.980255,89.61847,4.274 2148,449.55365,194.38277,19.956818,41.47551,4.27 2148,491.14438,-180.63446,235.06747,423.48148,4.218 2148,133.95686,430.07727,39.079956,80.19672,4.181 2148,441.47507,207.55463,19.087128,38.347733,4.136 2148,4.091238,477.82285,31.25786,63.26584,4.112 2148,585.7436,-102.94428,76.33893,235.70837,4.073 2148,-8.927162,-7.61203,39.26574,103.65822,4.067 2148,-5.048492,441.0098,18.000362,43.273376,4.042 2148,97.89298,475.89767,35.640205,63.691742,4.004 2148,595.1118,-46.509644,43.410156,101.033554,3.985 2149,323.50024,226.67838,64.664764,132.83838,98.386 2149,374.78622,227.57266,59.700928,134.52307,94.022 2149,594.1437,270.70862,30.210632,79.90268,8.284 2149,-5.6576595,-18.005148,17.480427,42.459026,7.065 2149,489.4192,222.70245,23.644653,46.88629,6.852 2149,-10.998539,-32.44281,29.106768,71.71032,6.627 2149,-6.3226056,489.87183,18.973343,41.615906,6.568 2149,312.4845,226.99962,25.321259,39.98622,6.398 2149,-8.619899,465.52524,37.563416,90.99234,6.134 2149,622.70776,-34.8992,27.216675,77.661766,5.791 2149,-4.347734,235.65376,16.971495,40.897446,5.656 2149,626.9711,-20.039986,18.106628,49.298637,5.33 2149,626.60455,488.3368,20.483765,45.945923,5.32 2149,377.8275,290.85043,33.501526,66.384125,5.25 2149,612.90393,455.14566,39.42505,107.11917,5.112 2149,-17.324863,-64.01849,55.50567,147.28087,5.103 2149,583.00256,412.41034,71.65381,175.5998,5.074 2149,-72.909195,266.0177,201.35072,460.6875,5.065 2149,493.26794,225.78766,28.680603,60.84552,5.05 2149,536.6009,310.5789,144.0138,341.1888,5.004 2149,-21.990807,402.6501,79.8595,176.3349,4.954 2149,602.69525,-55.22368,53.038696,135.02797,4.72 2149,494.1087,228.37506,237.40002,513.8668,4.666 2149,-71.8193,-189.64854,213.09717,455.95428,4.656 2149,585.0208,-99.9998,75.980835,231.2429,4.649 2149,613.4231,-23.8919,28.92749,79.10416,4.49 2149,68.50158,237.98993,38.21808,94.52551,4.444 2149,395.39105,258.44232,35.41458,97.56088,4.43 2149,296.8103,227.69934,22.32019,38.8985,4.39 2149,304.62207,233.142,23.577667,38.862396,4.363 2149,3.4350848,-16.371708,16.038467,38.940136,4.344 2149,471.00162,212.26373,28.100525,57.35849,4.306 2149,-36.675007,-130.29675,116.87515,281.80908,4.283 2149,435.03284,212.02719,20.952545,33.04669,4.235 2149,465.57703,210.0767,22.282593,41.94832,4.205 2149,53.685852,228.37712,37.28723,97.488785,4.169 2149,-12.7300205,218.54092,46.956978,139.04297,4.086 2149,2.098884,490.6032,19.331865,40.271484,4.064 2149,490.1094,-178.63983,235.64853,422.90475,4.034 2149,37.159157,236.89252,37.664757,100.035645,3.977 2149,426.9904,215.5693,19.922028,27.470947,3.953 2149,329.7417,197.62648,19.481903,39.978928,3.935 2149,-7.9305005,290.0758,36.761803,109.085754,3.857 2149,-9.651766,-7.3395767,39.684418,103.59313,3.834 2149,508.6181,226.96309,29.756287,65.81511,3.809 2149,2.2993755,-27.221382,49.73674,146.18785,3.715 2149,324.74286,223.46243,35.306732,75.758606,3.712 2150,241.81596,226.97487,55.093124,147.53435,91.799 2150,193.15094,230.83438,58.53041,154.03854,89.515 2150,531.2238,291.4679,33.16931,80.579895,10.035 2150,555.40533,223.89545,32.34607,64.690186,8.198 2150,-5.3709555,-16.511713,17.171867,41.721806,7.34 2150,391.8066,219.56769,28.717682,59.512695,7.189 2150,301.0749,210.1822,16.559113,25.770233,6.892 2150,-6.0689363,489.24423,18.525854,42.110992,6.129 2150,308.08212,212.41113,16.58786,24.865479,6.075 2150,627.1732,-17.787695,17.318726,46.89093,5.868 2150,323.9377,211.13771,16.102081,24.283432,5.655 2150,-10.992194,-32.52059,29.77856,73.177826,5.503 2150,610.4982,-47.417625,42.156433,98.99908,5.486 2150,-11.944265,477.8082,30.215841,62.289337,5.418 2150,402.54498,236.1721,20.085266,42.339493,5.344 2150,211.80994,230.81561,34.407074,99.28558,5.339 2150,404.60748,225.66183,28.237122,57.613495,5.301 2150,451.03296,266.6377,16.978271,37.055847,5.261 2150,181.11444,242.17862,33.66844,83.37988,5.223 2150,330.85965,214.67064,19.194397,27.275482,5.184 2150,435.7663,263.74496,16.511688,35.332245,5.173 2150,-73.184006,265.32336,201.86253,461.65466,5.145 2150,-17.095121,-62.5931,55.74302,142.57649,5.102 2150,612.9979,455.33502,39.311096,106.9787,5.051 2150,626.3331,487.8085,20.959106,46.54721,4.922 2150,-21.691708,401.14026,79.33941,176.49323,4.898 2150,583.0463,411.16,71.84558,177.55002,4.884 2150,536.829,309.78558,143.02997,342.05096,4.813 2150,585.6742,-99.1054,75.54126,229.75473,4.81 2150,316.1832,216.49962,16.795746,23.586319,4.71 2150,443.39066,265.9712,16.573608,35.247772,4.673 2150,338.56522,213.30992,20.896149,31.237793,4.627 2150,3.6679225,-14.518446,15.912003,38.531387,4.597 2150,220.56367,234.63959,58.151108,149.41565,4.497 2150,-36.445126,-130.40901,117.16441,282.4756,4.443 2150,493.97595,226.60254,237.03613,515.6285,4.402 2150,490.5637,-180.46672,234.51321,423.2754,4.368 2150,567.33234,223.01672,23.442444,45.66095,4.354 2150,-70.74497,-188.98315,212.14093,455.47345,4.311 2150,-0.7751751,274.61853,28.666618,71.529144,4.279 2150,580.709,216.99393,38.330994,90.022,4.24 2150,251.27545,263.82443,33.527527,101.5029,4.194 2150,385.78656,218.13658,21.591492,42.16649,4.163 2150,-6.102601,281.02155,18.610582,44.480804,4.023 2150,293.13312,210.25098,16.704102,26.957382,3.998 2150,414.2312,231.55829,27.661224,60.486084,3.964 2150,457.77362,269.98383,16.09668,40.88318,3.961 2150,-5.0151405,-1.08037,17.430695,45.230377,3.873 2150,-5.141078,250.20876,16.790596,38.637527,3.809 2150,378.82703,219.49776,19.834167,38.162216,3.784 2151,111.00629,218.10493,66.32416,198.66026,94.698 2151,168.34103,220.23883,68.517044,195.8805,84.13 2151,134.53072,217.15045,80.95894,212.30518,11.929 2151,-5.248395,-16.191193,17.06501,41.16548,7.67 2151,373.7608,221.31284,28.324097,62.834686,7.063 2151,301.70673,210.5028,13.203644,22.740875,6.418 2151,-10.621347,-31.540836,29.251328,70.00596,6.377 2151,627.2347,-18.316925,17.607788,47.94279,5.981 2151,-6.129422,489.6137,18.535461,41.70508,5.933 2151,545.5965,224.56598,31.727844,64.92035,5.801 2151,626.77765,488.32272,20.28479,45.457428,5.744 2151,-8.629607,464.79456,37.43428,92.950195,5.735 2151,-73.01089,262.67676,202.99152,465.63586,5.672 2151,622.79144,-34.279922,27.188354,77.323814,5.522 2151,-17.100983,-62.8571,55.550087,144.08041,5.412 2151,612.92773,455.45728,39.175537,106.2749,5.269 2151,603.0062,-57.774746,53.447998,138.21275,5.258 2151,149.71297,221.70624,33.35338,67.48651,5.135 2151,-21.933064,401.45978,79.89302,176.03955,4.97 2151,585.71594,-99.77579,75.34009,231.08939,4.956 2151,582.9257,412.2989,71.69928,176.16101,4.943 2151,285.22858,216.4806,14.499237,21.8004,4.888 2151,3.5943036,-13.741955,15.830467,37.245125,4.834 2151,293.37567,216.28206,15.044281,22.60585,4.807 2151,536.68555,310.15182,143.04895,341.168,4.785 2151,594.4189,-48.184986,44.013123,100.75976,4.59 2151,490.90012,-181.063,234.2438,424.5237,4.496 2151,163.68668,225.29002,28.405914,62.14528,4.432 2151,-4.7933574,2.4171638,17.079077,41.59348,4.426 2151,360.79437,217.16615,26.911041,58.723923,4.412 2151,493.91922,226.77359,237.15067,515.37646,4.41 2151,308.12402,217.35966,16.48233,25.159332,4.405 2151,139.11409,218.53696,31.545242,67.0267,4.356 2151,121.096054,226.24614,37.4346,101.29442,4.272 2151,-36.809486,-130.91962,117.27011,282.13788,4.179 2151,-71.042984,-188.5467,212.26668,454.40326,4.118 2151,278.25192,214.10022,12.6622925,22.695969,4.116 2151,614.79205,-20.89732,27.842896,75.41023,4.092 2151,451.86264,280.5913,17.516022,44.178223,4.071 2151,269.12808,213.49387,14.801727,24.39943,3.922 2151,534.4681,223.18591,30.389038,65.65527,3.896 2151,98.26347,171.58408,127.38454,313.61224,3.843 2151,3.6548316,4.276432,17.522121,41.72688,3.821 2151,619.18713,-18.018913,17.528809,44.504776,3.739 2151,389.35413,228.7509,27.091003,60.797287,3.666 2151,491.08853,220.79453,31.033722,63.18033,3.656 2151,307.0737,208.48505,14.902954,26.087265,3.602 2152,65.8082,206.27538,81.017395,277.7066,74.508 2152,4.3178678,220.59195,78.28132,253.48813,57.659 2152,117.19211,227.9513,32.497208,63.548218,22.952 2152,471.69052,296.8732,26.143463,62.601135,19.365 2152,93.436844,211.00089,30.566025,73.21353,8.769 2152,-5.3704224,-16.316414,17.344028,41.197296,7.458 2152,286.11966,214.86978,12.702972,23.47348,7.083 2152,126.60524,220.20401,42.05078,73.83618,7.064 2152,-72.20555,265.4651,199.8194,463.34863,6.908 2152,627.2789,-18.764095,17.68872,47.683067,6.61 2152,-11.227117,-32.10811,29.639603,72.26456,6.375 2152,-6.068431,488.75717,18.39938,42.43991,6.339 2152,364.29688,222.13536,28.835083,63.05757,6.113 2152,622.71545,-34.384975,27.271118,76.70494,6.021 2152,525.14276,334.9865,27.37085,69.41083,6.011 2152,-17.617756,-63.561077,56.05762,146.8041,5.693 2152,108.31084,204.1616,29.894058,66.53557,5.62 2152,-9.127478,463.29288,37.60573,94.4758,5.61 2152,-6.4765787,316.22476,38.895107,116.54364,5.335 2152,603.4132,-57.792313,52.90271,136.49126,5.179 2152,-31.73634,165.06741,144.18822,378.57162,5.127 2152,621.6978,477.08923,28.92566,67.54529,5.099 2152,583.26056,410.78033,71.50171,177.94635,5.012 2152,252.87189,214.11893,15.431671,24.58377,4.971 2152,585.83563,-99.642105,75.06494,230.45224,4.928 2152,3.6581743,-15.046335,16.031982,38.11677,4.857 2152,536.8073,309.85107,142.23578,341.06866,4.756 2152,2.0208693,216.80795,50.675686,166.7276,4.715 2152,270.16446,215.85066,13.242462,20.843094,4.661 2152,300.4227,213.12921,15.444092,27.332825,4.622 2152,491.06384,-181.56561,234.10864,425.9314,4.572 2152,-18.724361,432.39728,56.137672,145.21527,4.545 2152,291.937,213.58844,14.010162,25.847,4.509 2152,76.245636,286.99707,56.544495,177.34747,4.47 2152,594.5289,-47.472034,43.716736,97.60767,4.461 2152,-40.00705,355.64664,111.45715,279.69138,4.396 2152,261.1455,216.20163,14.219421,22.233154,4.387 2152,493.78113,221.01884,28.699219,69.93196,4.351 2152,493.4987,226.37585,237.77438,515.5671,4.336 2152,-70.79808,-189.89436,212.37883,456.30194,4.316 2152,467.16412,293.7879,19.56427,35.04013,4.196 2152,278.22635,217.98888,14.316162,21.72139,4.155 2152,614.749,-20.871487,28.021729,72.24963,4.099 2153,64.56561,219.91182,43.575348,86.63811,78.859 2153,35.06993,216.87926,42.896606,83.793045,36.282 2153,60.28489,210.45631,34.588387,71.06883,11.707 2153,-5.4607716,-17.959026,17.602768,43.223846,7.905 2153,79.104416,235.84798,37.798935,76.64348,6.88 2153,627.3125,-18.646711,17.337402,47.825043,6.745 2153,-11.214137,-31.908335,28.765015,71.77169,6.678 2153,520.37286,330.63187,35.189514,79.23944,6.634 2153,269.00357,218.42511,15.623779,23.105225,6.509 2153,622.8749,-33.844677,26.678894,76.17988,5.906 2153,-6.127805,489.05475,18.672031,42.114502,5.904 2153,252.43613,217.87112,16.316254,22.846725,5.69 2153,357.11096,222.89992,29.121765,60.722946,5.567 2153,-8.975002,464.53302,37.686615,93.13245,5.514 2153,275.0385,217.40413,17.037933,25.460983,5.49 2153,56.382507,204.78749,26.415459,58.83696,5.359 2153,626.4578,487.81467,20.803589,46.033966,5.33 2153,-73.06076,265.06702,202.02269,462.52698,5.295 2153,268.63373,210.04884,14.319366,23.887985,5.176 2153,260.948,217.89659,16.24527,22.803146,5.17 2153,22.301418,205.1989,44.881084,80.35933,5.104 2153,613.2434,454.39917,38.98242,108.249084,5.084 2153,603.1544,-57.462654,52.942383,135.23987,5.074 2153,585.9446,-99.19956,74.8905,229.53668,5.014 2153,3.2692635,-16.463226,16.514668,40.381737,4.967 2153,49.63201,227.1108,39.391647,79.72255,4.963 2153,-17.088017,-64.82823,55.716347,149.22539,4.944 2153,-21.512577,402.50067,79.23428,175.31781,4.942 2153,75.09683,218.6434,27.969307,56.548737,4.9 2153,243.79977,216.21861,16.935059,24.552353,4.838 2153,491.12485,-181.86008,234.022,426.4534,4.731 2153,583.3241,410.6844,71.51843,178.23212,4.715 2153,-71.13878,-189.69812,212.61903,454.89883,4.695 2153,536.83545,310.47827,142.32379,341.2279,4.614 2153,490.28888,328.77728,17.132568,26.486023,4.58 2153,235.48537,215.3744,17.795593,26.113632,4.487 2153,594.50446,-47.082775,43.708496,97.77867,4.317 2153,493.66034,226.5181,237.5401,516.2461,4.309 2153,150.7204,152.39888,27.668198,71.91217,4.224 2153,18.248758,220.07724,54.245453,117.14673,4.161 2153,-13.951727,202.26395,50.524376,133.01657,4.081 2153,483.7453,329.0714,16.68042,25.350616,4.077 2153,45.566757,195.61513,30.601326,73.586075,4.058 2153,555.06616,227.87457,32.150085,68.55359,4.031 2154,290.79312,221.11444,16.820831,26.64946,13.173 2154,60.616013,214.93654,31.136765,58.567825,10.992 2154,28.530313,213.58568,53.318398,110.326065,8.615 2154,0.37359476,244.86209,37.251045,78.38577,8.152 2154,-5.1884313,-17.452759,16.846909,43.50717,7.229 2154,-11.1422205,-32.38175,29.232826,74.47639,7.217 2154,39.912285,219.52808,35.108902,73.68805,7.064 2154,627.1477,-18.680847,17.519653,48.641335,6.282 2154,285.86078,217.91235,15.327881,25.053436,6.163 2154,-6.05686,489.62613,18.412577,41.54007,6.134 2154,622.9058,-34.419655,26.649536,78.158325,6.107 2154,-8.461351,464.42908,37.376835,92.91205,5.995 2154,268.36084,219.09534,16.594116,23.989044,5.83 2154,16.468752,249.30911,39.971,74.744354,5.399 2154,297.45746,220.37775,18.472107,27.590042,5.392 2154,366.23676,217.39787,28.66681,59.749893,5.262 2154,603.0497,-57.45491,53.00348,135.67188,5.236 2154,612.98413,454.59976,39.202698,107.62808,5.23 2154,-9.544839,225.19342,32.86982,75.304565,5.204 2154,276.62262,218.59393,17.41861,24.844986,5.176 2154,-73.00664,265.48383,201.53435,462.34674,5.133 2154,585.7074,-98.87625,75.20642,229.84879,5.032 2154,583.4186,411.9933,71.33777,176.04773,4.95 2154,-17.01239,-64.504486,55.455452,147.6737,4.947 2154,-21.323805,402.6948,78.98895,175.3168,4.926 2154,626.4433,487.39487,20.690735,46.694366,4.923 2154,3.69245,-14.917234,15.751053,39.9253,4.885 2154,260.1314,218.46454,17.463684,25.684265,4.783 2154,-40.95045,365.53473,111.43919,276.8432,4.77 2154,490.53552,-181.0976,234.10193,426.15683,4.715 2154,-71.303856,-190.15103,213.03577,457.15662,4.649 2154,307.19745,216.80139,16.2724,26.388367,4.644 2154,578.508,238.52477,20.680603,36.869766,4.605 2154,158.098,154.31558,28.136414,75.38606,4.601 2154,594.2414,-47.93876,43.887024,97.998184,4.573 2154,536.229,310.2548,143.0741,341.45615,4.552 2154,314.9237,222.22453,20.336609,31.273727,4.515 2154,33.859653,254.08075,37.040394,76.21246,4.485 2154,331.92734,172.96564,28.585114,66.77713,4.418 2154,67.44449,205.12813,39.80745,77.66371,4.418 2154,615.26483,-20.928413,26.867737,74.47059,4.266 2154,493.0987,226.43698,238.35815,516.52966,4.257 2154,-7.3073053,261.187,39.35564,95.68552,4.184 2154,397.67633,226.27405,27.162079,67.098816,4.182 2154,55.27874,212.89099,57.854027,138.62738,4.118 2154,380.49023,222.11418,30.179474,58.3553,3.969 2154,-10.911388,208.33296,52.629307,129.38847,3.917 2154,-37.63989,-130.96806,117.702835,285.99237,3.91 2154,619.44696,-18.22439,17.274902,45.940517,3.878 2154,-0.3368783,-19.844484,26.05982,74.90976,3.804 2154,251.84433,218.39581,17.602936,26.8703,3.745 2154,175.90852,162.11638,22.287521,55.950043,3.737 2154,55.857296,225.41525,24.692287,55.013367,3.714 2154,-0.111563206,140.08978,27.71739,83.27356,3.709 2155,53.38087,210.86333,35.286976,66.31148,21.046 2155,324.96793,218.2975,16.265228,28.156235,15.165 2155,330.83984,215.978,16.024475,28.11621,9.816 2155,339.19788,218.22064,17.010193,29.231384,9.291 2155,347.3553,218.38951,18.212769,29.739822,7.944 2155,-5.3032074,-17.233118,17.462982,42.94664,7.739 2155,317.7033,217.00574,16.882996,27.38002,7.223 2155,36.040672,205.34131,31.670273,69.27408,7.174 2155,-11.062962,-32.796127,29.404821,73.44365,6.292 2155,-9.061941,463.27304,37.774506,94.53714,6.201 2155,300.08823,216.34972,16.56134,25.244995,6.147 2155,613.4828,451.89874,39.027832,111.63385,5.829 2155,308.0276,216.00914,17.085327,25.725311,5.777 2155,-6.1175437,489.29172,18.724901,41.809418,5.752 2155,71.560524,206.759,34.040176,67.535065,5.726 2155,627.0262,-18.879414,17.369324,48.096806,5.716 2155,353.26645,220.84708,20.48053,33.28476,5.441 2155,610.7771,-48.436058,41.82007,101.05459,5.316 2155,621.94305,476.24362,28.636902,67.89212,5.276 2155,-21.361168,402.16333,78.886475,175.86707,5.002 2155,483.04248,279.03806,29.76538,72.32352,4.999 2155,3.0223489,-16.335194,16.239079,40.55306,4.935 2155,-72.800385,266.36502,200.60672,460.26718,4.895 2155,585.88074,-99.61003,75.40558,231.8868,4.872 2155,583.4242,408.9301,71.106995,178.841,4.763 2155,-71.018585,-189.97424,212.56917,457.2965,4.708 2155,364.50208,161.67407,28.952393,74.30505,4.673 2155,291.60632,215.60133,17.217194,27.203842,4.669 2155,536.6584,309.8581,142.94543,342.36017,4.613 2155,489.90646,-180.31473,235.29568,424.88446,4.599 2155,-17.073782,-64.795975,55.521805,147.49763,4.592 2155,493.3604,227.20377,237.6419,515.6636,4.385 2155,421.74667,219.70538,28.635223,60.603577,4.374 2155,-11.084066,152.09251,31.1331,77.21855,4.259 2155,-4.995768,429.37802,17.737988,36.60721,4.134 2155,198.05743,125.1902,29.117783,77.83928,4.049 2155,451.8469,228.21793,28.551208,55.11148,3.998 2155,-38.003487,-131.06656,117.94752,288.78912,3.975 2155,21.237114,202.46442,34.310772,73.36655,3.948 2155,283.4882,214.71521,17.471039,28.734528,3.854 2155,58.59021,195.62175,48.597153,106.51543,3.848 2155,3.5458755,196.7986,30.116428,80.91557,3.807 2155,406.46426,216.0765,27.96408,59.609406,3.756 2155,10.420177,-18.712807,17.190687,41.249264,3.656 2155,-4.2900305,56.25614,16.2636,43.547844,3.564 2155,-9.534184,194.75049,30.132347,78.33606,3.545 2155,388.96317,205.01213,27.794373,57.98552,3.492 2155,77.18795,188.55278,49.64707,117.76381,3.491 2156,329.5769,219.69131,16.379639,33.94719,28.914 2156,324.90424,216.45056,15.476044,30.956085,12.182 2156,337.3906,221.01416,17.776398,33.466156,8.898 2156,300.44687,217.61935,17.354065,29.14412,7.523 2156,353.34824,224.80357,21.688812,40.239334,7.389 2156,308.35107,216.6393,17.537262,30.283096,7.041 2156,-5.5410404,-18.006077,17.754654,43.381153,6.684 2156,318.64948,218.85439,16.858368,31.767517,6.602 2156,347.98065,222.95229,18.410583,33.424088,6.248 2156,-10.9636545,-32.975822,28.999088,72.31404,5.827 2156,-6.170306,489.63474,18.758074,41.881317,5.587 2156,-8.837849,464.31064,37.65285,93.25473,5.563 2156,622.5788,-35.086296,26.853333,79.646675,5.373 2156,621.76306,477.25006,28.609375,67.185974,5.337 2156,291.76773,217.29938,18.230072,29.099777,5.245 2156,626.8193,-20.093008,17.872864,50.66866,5.176 2156,-72.53885,266.56177,200.36429,460.2544,4.978 2156,-21.641197,402.59732,79.269745,175.58133,4.96 2156,602.73206,-57.74304,53.090576,139.12373,4.96 2156,585.6814,-100.36641,75.53192,234.3175,4.897 2156,583.1561,410.4755,71.43872,178.00333,4.845 2156,-17.549936,-63.823627,56.010788,148.25899,4.83 2156,508.68527,-12.099555,14.146027,32.726555,4.737 2156,364.9217,148.50122,29.456543,75.32831,4.649 2156,536.601,310.48914,142.89154,342.41345,4.644 2156,283.23984,216.30653,18.466675,29.2928,4.632 2156,489.79953,-180.56581,235.48276,426.07538,4.632 2156,516.4885,-12.233744,14.339355,33.153408,4.446 2156,-70.94665,-189.42241,212.46469,456.54327,4.423 2156,493.52246,226.30237,237.68213,516.1746,4.39 2156,524.1653,-12.668296,14.701782,33.280315,4.304 2156,594.7745,-46.518524,44.589417,99.66328,4.194 2156,-36.933983,-134.04446,118.0552,290.05273,4.175 2156,614.3728,-24.671923,27.887573,82.66313,4.035 2156,587.70844,340.73718,32.13971,74.938354,3.911 2156,500.90692,-12.419452,14.451782,32.16736,3.907 2156,326.34567,212.66254,25.167542,49.95343,3.856 2156,492.34927,-13.904838,15.15329,33.35899,3.855 2156,2.3756342,-16.767262,17.297401,40.64113,3.793 2156,-5.339176,131.32141,18.585915,47.538803,3.779 2156,539.5293,-14.209003,16.62976,36.012268,3.724 2156,-4.9770913,210.56451,17.531034,41.37285,3.712 2156,342.4028,220.50581,28.657928,54.629166,3.701 2156,102.16431,136.51653,28.843369,77.40379,3.664 2156,427.13184,-16.273533,16.637695,41.279537,3.593 2156,532.1326,-13.072137,15.351624,33.755665,3.557 2156,434.93494,-14.80709,16.656921,39.96276,3.48 2156,-4.772084,41.22409,16.950981,43.026817,3.476 2156,-8.796797,356.0389,37.899696,110.53409,3.465 2156,-10.131378,74.14305,28.431541,74.79271,3.452 2156,-5.5597014,186.0925,17.604725,41.04184,3.432 2156,612.96484,359.77234,37.497925,117.87509,3.409 2156,294.4096,209.57202,26.774017,49.177246,3.388 2156,475.50644,-15.01578,16.01715,33.992836,3.375 2156,442.81818,-14.729802,16.706238,38.565655,3.37 2156,-10.991368,205.91458,29.647694,70.25839,3.349 2156,376.5237,181.40594,20.065369,52.25006,3.345 2156,618.43884,490.00287,20.7182,43.287415,3.318 2156,451.03442,250.47964,22.514343,44.263092,3.312 2156,546.50946,-14.667942,17.077637,37.731678,3.285 2156,3.9079225,221.6087,30.086645,67.65967,3.256 2156,290.69757,130.53705,30.663666,80.01004,3.255 2156,483.61557,-14.087406,15.888824,33.706604,3.254 2156,-4.664255,58.46163,16.490635,42.291443,3.248 2156,353.41354,208.25389,18.768005,37.35547,3.247 2156,450.81668,-14.501953,16.72641,36.315266,3.22 2156,627.9351,480.68118,17.694519,43.80246,3.216 2156,399.8296,220.74825,25.742004,55.877304,3.215 2156,274.87146,214.86765,19.956818,31.762054,3.212 2156,227.18011,-15.146622,16.31041,38.00958,3.212 2156,-10.904399,-3.1441422,40.945766,102.500916,3.211 2156,418.29242,240.33939,19.066101,36.64795,3.19 2156,203.2208,-13.870169,15.299377,36.836254,3.153 2156,437.89832,-32.914787,27.794617,69.89579,3.151 2156,176.80609,93.5641,31.067673,79.65492,3.149 2156,362.55582,192.54562,19.833282,45.601425,3.147 2156,97.947426,145.13354,22.301865,46.350983,3.147 2156,527.77,-33.469578,26.884644,67.46476,3.131 2156,412.20807,221.8343,28.565094,56.632553,3.117 2156,0.86158395,139.2974,19.526653,45.10556,3.108 2156,428.65994,229.0786,29.242615,57.52809,3.095 2156,479.15576,-35.038532,26.395447,65.05443,3.089 2156,2.1727276,491.15094,19.569529,40.592163,3.086 2156,380.6725,165.73125,27.014404,73.066864,3.083 2156,-6.7349234,217.53369,36.678368,105.13483,3.081 2156,531.79266,-138.69751,116.413574,274.819,3.074 2156,5.3316355,465.83948,38.251907,99.93823,3.073 2157,323.39008,224.88776,16.829956,33.85797,23.264 2157,487.8717,272.9519,24.298706,56.334045,8.019 2157,291.96658,220.97826,16.337341,30.14772,7.275 2157,299.23187,222.80849,15.941895,28.692642,7.016 2157,316.92502,220.14882,15.678711,33.715424,6.815 2157,-5.4372573,-17.53013,17.128166,42.872425,6.692 2157,363.33258,155.09848,29.65741,73.33536,6.046 2157,-10.913061,-33.482445,29.276028,74.39675,5.844 2157,-5.9943905,489.41812,18.461384,41.548187,5.808 2157,626.7058,488.08572,20.411865,45.780975,5.773 2157,-8.893382,463.89648,37.756214,94.42279,5.68 2157,622.38086,-35.247196,26.856323,80.99944,5.334 2157,369.72223,181.8096,19.435028,52.140625,5.32 2157,626.78217,-20.911892,17.893799,52.36511,5.315 2157,612.94824,455.02985,39.328064,107.19336,5.296 2157,328.369,226.44417,20.568848,36.051407,5.279 2157,284.21573,221.49524,18.107178,31.010986,5.148 2157,344.93646,222.28998,20.048218,37.337036,5.11 2157,-72.63875,266.1848,200.53128,460.55566,5.085 2157,583.1066,412.06763,71.61456,176.22656,5.012 2157,602.73065,-58.029617,53.274963,138.51375,4.982 2157,-21.688446,402.18753,79.345566,175.7391,4.915 2157,-16.554607,-65.15051,54.73998,149.17209,4.902 2157,585.8125,-99.496605,75.33447,232.06244,4.889 2157,490.12915,-179.74586,235.14948,426.0419,4.692 2157,536.61365,310.53043,142.90222,341.27475,4.614 2157,309.52756,220.48358,14.250977,29.288712,4.471 2157,493.60184,226.99567,237.36777,515.1208,4.397 2157,337.59564,224.18124,19.322876,35.59848,4.336 2157,442.61957,-14.229824,17.033508,35.16071,4.129 2157,-70.28261,-188.37906,211.80911,453.744,4.07 2157,434.5535,-14.275631,16.951752,35.80722,4.056 2157,523.82654,-13.830382,15.122192,34.806202,4.043 2157,-37.41854,-133.58838,117.51653,289.31335,4.005 2157,451.03336,-13.808163,16.404663,34.031055,4.005 2157,378.16473,193.30756,17.864685,43.9348,3.994 2157,3.5112298,-15.011976,15.763486,39.62165,3.809 2157,357.26486,172.55121,28.944916,73.71294,3.795 2157,533.5405,-18.159515,30.794922,63.532993,3.794 2157,618.66925,490.54,20.103882,42.1893,3.774 2157,531.66315,-13.325077,15.358215,34.850742,3.702 2157,539.31354,-14.112445,16.08368,35.812675,3.697 2157,-8.643448,40.147873,38.59288,105.28665,3.667 2157,274.64594,220.56549,19.242584,32.106445,3.65 2157,398.4591,224.41681,31.465881,62.309723,3.612 2157,515.60175,-13.479094,15.762085,34.00742,3.608 2157,356.432,128.16023,29.192932,74.2191,3.557 2157,417.40552,211.11775,42.057007,87.255844,3.509 2157,-8.600551,326.11572,37.354134,108.31793,3.496 2157,154.42198,77.5078,32.005554,73.62303,3.483 2157,360.93594,120.93428,20.004333,48.626938,3.472 2157,459.37476,-14.931568,15.915955,33.639263,3.446 2157,614.5295,-24.77852,27.603333,85.07393,3.443 2157,279.53757,211.13455,26.65207,48.18857,3.437 2157,459.2537,255.03699,18.021393,34.737427,3.411 2157,244.64537,193.20375,28.454636,62.378357,3.4 2157,449.91687,165.07838,19.710083,38.62349,3.395 2157,507.38956,-14.611707,16.11618,34.182354,3.386 2157,353.36572,198.78932,20.768127,48.793045,3.385 2157,612.22284,232.76656,38.010864,112.90306,3.372 2157,10.718622,-15.022214,15.895262,38.41242,3.346 2157,505.60876,232.33769,21.779175,41.244675,3.335 2157,435.1973,210.97539,41.7453,87.23219,3.312 2157,555.6383,228.97305,30.347351,63.819275,3.309 2157,490.85394,-39.506737,57.413208,133.6392,3.303 2157,107.18659,194.84201,18.23069,32.37245,3.289 2157,-5.0470495,146.8479,17.191345,39.825943,3.281 2157,2.138682,491.0401,19.336485,39.96747,3.279 2157,432.13348,251.09111,21.227692,37.532944,3.266 2157,573.9053,-26.903584,53.00348,137.56584,3.233 2157,266.10614,216.56157,20.682068,35.184464,3.229 2157,459.33154,265.6809,20.256195,39.783844,3.22 2157,-9.46775,-6.5624504,38.858627,103.9149,3.215 2157,334.09235,198.48573,27.887482,60.853165,3.201 2157,406.8314,-35.174454,28.335785,72.86261,3.176 2157,437.573,150.64348,29.253174,60.140915,3.173 2157,491.25287,-15.765144,16.346954,34.287,3.158 2157,539.9897,-0.55590916,17.11493,31.746593,3.148 2157,441.85022,165.66867,19.954468,36.825882,3.139 2157,405.60532,226.64822,40.07779,88.17609,3.13 2157,467.79358,-14.368894,15.8172,32.52328,3.123 2157,402.253,-18.467993,17.9057,43.825268,3.119 2157,547.04504,-14.213961,16.562744,37.132877,3.11 2158,315.32605,219.25099,19.260498,44.5569,42.379 2158,329.67136,222.19458,18.958557,42.1138,21.666 2158,292.38876,217.61473,15.130737,31.080887,15.638 2158,337.05133,224.5192,19.602722,41.960968,9.378 2158,319.21765,212.22968,25.06482,54.7334,8.986 2158,274.62357,216.98015,18.52829,33.04338,6.671 2158,627.0197,-21.226053,17.632874,52.441444,6.576 2158,-10.674206,-32.17578,28.571104,72.24331,6.507 2158,-5.18876,-17.271225,17.075918,41.988083,6.488 2158,-12.001453,477.79703,29.98473,63.645294,6.149 2158,-6.1908245,489.5936,18.704638,41.91391,5.946 2158,362.34814,179.90193,19.484741,53.632965,5.661 2158,622.7963,-33.973354,26.621521,77.288216,5.623 2158,626.66693,488.2196,20.459473,45.569946,5.596 2158,284.9726,217.87247,15.898651,29.242996,5.414 2158,612.9723,454.3736,39.301147,107.82269,5.177 2158,603.21735,-57.84234,53.30493,137.7165,5.059 2158,582.9902,411.72458,71.87543,176.93436,5.033 2158,266.79514,219.61096,18.868256,33.332382,5.023 2158,-72.50551,266.71158,200.1484,460.48276,4.986 2158,344.7961,229.49869,21.300262,43.04492,4.983 2158,-21.664503,402.28745,79.22055,175.76309,4.934 2158,585.76355,-99.807556,75.480225,232.0627,4.832 2158,355.72708,138.20534,30.630035,73.82541,4.809 2158,536.5945,309.5897,142.91406,342.0707,4.793 2158,549.8447,298.8936,32.514343,73.45804,4.743 2158,490.27594,-180.41718,234.64136,426.26825,4.728 2158,-17.551834,-65.256584,55.712925,150.83801,4.691 2158,3.1160426,-15.5071125,16.162899,39.616528,4.503 2158,258.4911,215.87587,19.981537,34.655884,4.469 2158,493.7283,226.7847,237.38242,515.6859,4.438 2158,1.827023,77.06941,26.24766,92.06465,4.268 2158,246.39542,206.80537,27.51532,53.319748,4.162 2158,594.9282,-48.208958,43.849365,100.78157,4.143 2158,-70.61512,-188.05293,211.43591,453.22894,4.062 2158,-36.97264,-133.24814,118.115715,291.06552,4.059 2158,305.191,217.27316,25.786835,57.289825,4.053 2158,124.55031,58.088314,29.9086,87.334946,4.003 2158,433.19485,251.7414,23.309906,51.156982,3.969 2158,261.5019,213.80663,28.059906,52.412643,3.914 2158,298.5897,216.36327,15.569366,33.46779,3.832 2158,500.5513,227.33395,28.143097,62.08423,3.778 2158,277.18515,205.79437,15.067505,33.57498,3.729 2158,581.85236,222.58578,38.61908,87.87555,3.724 2158,405.1675,223.37216,29.955719,65.97424,3.72 2158,523.6282,-13.181716,14.955933,34.33133,3.709 2158,242.84666,93.43378,31.925034,90.40979,3.703 2158,619.4541,-21.437218,17.984009,50.268734,3.645 2158,221.5319,198.7331,26.86615,57.078247,3.63 2158,612.9835,224.22763,36.35614,101.73688,3.559 2158,555.59393,-12.685846,14.998657,34.39855,3.549 2158,284.2365,228.59538,17.554596,30.096786,3.539 2158,365.92285,-18.54147,29.900238,72.30905,3.538 2158,547.75793,-11.758818,14.983826,32.67465,3.537 2158,2.0818167,490.8689,19.509876,40.741394,3.532 2158,1.974361,64.28445,44.859257,149.67401,3.498 2158,506.33755,166.79294,19.033112,33.646164,3.478 2158,598.23773,225.7065,37.80652,96.86238,3.474 2158,492.2207,-0.501585,16.912231,30.050125,3.461 2158,571.3742,-0.4801445,17.634216,32.150944,3.432 2158,387.21085,263.353,18.567291,32.04837,3.432 2158,618.62427,490.61826,20.393127,42.356476,3.422 2158,125.1026,203.7088,14.517502,24.498215,3.417 2158,308.20346,212.3641,16.454926,32.69728,3.386 2158,368.57666,174.62717,19.713287,52.871445,3.365 2158,539.8981,-12.351662,14.867432,32.82006,3.357 2158,378.61755,-16.780718,17.244019,40.565235,3.352 2158,-4.9701066,1.8020592,16.666586,42.077393,3.351 2158,507.55334,-13.828636,15.214661,34.610107,3.348 2158,556.3719,1.7687473,16.467407,28.827087,3.332 2158,117.141205,202.25589,14.32579,26.0168,3.331 2158,419.9225,241.40231,40.43869,87.23691,3.301 2158,347.46686,235.94675,29.645844,57.90558,3.293 2158,-7.536083,94.6906,38.37064,114.90703,3.284 2158,514.6699,167.39583,19.31128,32.97473,3.267 2158,266.01843,125.46251,31.327667,77.78136,3.25 2158,563.84485,0.48633862,17.213013,31.696632,3.237 2159,317.76886,224.35301,23.827057,54.033005,79.699 2159,337.4721,227.01988,21.371918,50.37474,47.858 2159,328.23407,227.04474,22.73581,49.70166,22.788 2159,284.82236,221.93837,16.637054,33.166107,9.091 2159,267.896,221.52638,17.570984,35.662735,7.337 2159,-5.324185,-17.368628,17.52848,41.895164,6.853 2159,274.69836,221.69685,17.328644,33.614227,6.799 2159,627.0498,-19.852558,17.604187,50.208313,6.625 2159,-5.863624,489.58264,18.227661,41.2912,6.35 2159,569.70026,240.11803,22.752563,35.493027,5.999 2159,622.65924,-34.561703,26.759094,78.40933,5.752 2159,344.23596,230.16,23.301117,52.723694,5.75 2159,-8.753607,464.8931,37.50811,92.05734,5.743 2159,526.8944,234.78073,26.699585,59.92517,5.51 2159,-11.004808,-31.881735,29.07775,69.2209,5.433 2159,603.09265,-57.30525,53.409363,137.40637,5.339 2159,562.8669,240.78519,31.057007,60.280396,5.206 2159,-16.918924,-64.05661,55.196754,146.47975,5.093 2159,626.6008,487.76663,20.569702,46.537933,5.086 2159,583.1072,411.96506,71.66705,176.14212,5.071 2159,-72.55398,266.43036,200.55382,461.3438,5.066 2159,585.621,-99.09931,75.51611,230.97333,5.065 2159,612.90845,454.3452,39.5708,107.83655,4.977 2159,131.6556,212.00652,16.88649,29.689896,4.954 2159,-21.509314,402.8235,79.124626,175.3086,4.934 2159,548.431,241.47449,33.085815,67.29224,4.898 2159,536.714,310.1955,142.92065,341.92328,4.754 2159,490.29828,-180.32143,234.75781,426.59653,4.695 2159,258.5948,222.97571,19.739899,34.243958,4.665 2159,561.5013,239.35924,22.018982,36.88002,4.607 2159,531.4942,230.28781,40.31024,76.40457,4.577 2159,580.95105,241.92368,40.00421,95.53546,4.494 2159,158.67285,168.13513,22.09253,44.86435,4.429 2159,493.30762,226.99658,238.10645,515.7739,4.426 2159,541.8928,217.43695,51.351868,109.730896,4.397 2159,251.14569,221.2279,19.92743,35.479126,4.389 2159,-36.930313,-131.75336,116.96594,286.32022,4.332 2159,595.0248,-48.034294,43.408813,101.24506,4.295 2159,619.0513,227.55376,18.09314,39.830612,4.264 2159,588.20105,-1.9961319,16.943176,31.634773,4.253 2159,2.7247417,-15.802799,17.070847,39.29259,4.233 2159,-70.40939,-188.30252,211.45247,453.7879,4.226 2159,615.49756,-22.224354,26.76941,77.86971,4.218 2159,286.5515,215.1679,23.810272,48.060745,4.18 2159,351.74628,227.87085,21.617554,44.437927,4.043 2159,544.0458,238.096,22.493164,37.605026,3.92 2159,553.1412,239.10944,21.557373,35.450684,3.861 2159,521.912,232.61047,22.817505,46.05182,3.71 2159,139.14215,212.00098,17.156479,30.051117,3.707 2159,535.39734,237.73695,23.296387,40.067795,3.702 2159,573.529,-29.166065,53.13861,133.03778,3.696 2159,496.0592,270.75354,23.973572,36.03055,3.675 2159,229.48082,211.17914,28.163101,55.096252,3.655 2159,595.91565,-3.8211527,17.047363,34.547375,3.634 2159,234.76886,92.164734,31.072052,88.868805,3.612 2160,340.71112,219.13368,29.334625,68.36424,98.799 2160,367.2572,218.251,26.14737,66.570465,90.655 2160,284.88174,217.84178,17.029022,37.36702,10.787 2160,379.78714,222.14423,27.654297,62.976624,9.486 2160,300.33984,217.26254,15.534973,33.698822,8.475 2160,-5.3773456,-15.623442,17.791681,41.223804,6.859 2160,627.47144,-18.075134,17.10144,46.267967,6.39 2160,306.67664,215.69832,16.098755,35.667572,6.252 2160,-6.0738945,489.57526,18.491568,41.65869,6.191 2160,-12.076449,478.17175,30.214973,63.073242,5.825 2160,292.434,225.17928,16.235779,32.31041,5.6 2160,623.6128,-34.291016,25.934937,74.96656,5.568 2160,603.3071,-56.64313,52.69684,134.90451,5.54 2160,161.55414,154.06592,21.320755,48.92975,5.446 2160,388.86472,219.72987,28.56369,58.524307,5.392 2160,553.80695,226.167,31.501526,61.687424,5.359 2160,290.48785,213.9583,16.61493,33.268402,5.206 2160,-10.513386,-33.00446,29.80757,74.68682,5.194 2160,612.9289,454.5113,39.526855,107.62866,5.163 2160,-17.13282,-63.09176,56.202576,142.8167,5.131 2160,626.6312,487.76822,20.618286,46.32492,5.089 2160,583.00665,412.05255,71.670715,176.07367,5.086 2160,-72.79919,266.16528,200.4707,460.91882,5.06 2160,585.4971,-99.97386,75.76477,232.44968,4.966 2160,-21.695526,401.8418,79.41722,176.10059,4.886 2160,536.5101,309.78125,143.01599,342.6396,4.764 2160,489.74304,-179.73761,235.55054,425.4569,4.545 2160,391.4511,163.74234,20.009949,56.487213,4.506 2160,493.7909,226.34796,237.30109,516.4529,4.406 2160,595.27783,-48.741993,42.645752,101.12462,4.367 2160,2.9499876,-13.079841,17.653952,39.663395,4.345 2160,-37.188293,-130.85068,116.706345,287.9976,4.324 2160,444.50763,278.16028,15.725067,27.671234,4.262 2160,-70.16821,-188.16238,211.06651,453.1482,4.201 2160,285.47772,209.14821,15.068481,31.099594,3.935 2160,-4.2724075,156.03625,15.402733,39.43332,3.688 2160,371.6156,190.67862,41.0347,83.17819,3.688 2160,612.7056,297.3987,38.05066,109.72073,3.643 2160,66.91125,-5.8625965,29.412926,68.47706,3.532 2160,619.8207,-17.404255,16.72406,41.659096,3.52 2160,9.631141,-15.026805,18.85506,41.168335,3.518 2160,437.1131,275.92154,16.63797,29.826752,3.483 2160,5.8043003,-34.73219,28.020426,76.216835,3.451 2160,-5.6322966,105.55808,17.617794,42.932243,3.414 2160,2.1239507,491.16754,19.359566,40.229736,3.376 2160,-9.042898,-5.433506,38.958664,99.330154,3.353 2160,314.24466,214.13672,15.950714,35.607773,3.349 2161,387.23938,220.78215,36.01532,85.215805,91.833 2161,413.213,219.89542,29.73584,88.73273,85.297 2161,327.3355,214.25452,18.132385,35.921356,18.052 2161,307.91034,217.68219,15.816315,32.004944,10.42 2161,418.59482,209.71724,40.127533,85.728165,7.113 2161,172.85605,141.38641,22.66246,54.757095,6.637 2161,-5.6219716,-17.142776,18.181215,43.78535,6.58 2161,627.32007,-17.767483,16.85846,47.213898,5.992 2161,-6.1594033,489.8504,18.417412,41.322083,5.585 2161,-9.043681,463.59024,37.783455,94.504486,5.561 2161,611.0162,-48.043587,41.251526,98.990616,5.483 2161,-12.321636,-40.560265,41.19139,100.70762,5.431 2161,367.39294,207.80107,27.860535,54.87538,5.398 2161,612.9091,454.79623,39.579956,107.189606,5.265 2161,-72.85173,266.45923,200.62767,460.9131,5.059 2161,583.02954,411.99237,71.73175,176.48047,5.043 2161,-21.797962,402.1048,79.501175,175.62085,4.931 2161,626.79236,488.0819,20.39508,46.016907,4.858 2161,585.6113,-100.358185,75.88043,232.00443,4.82 2161,536.9866,310.52997,142.67688,341.4654,4.761 2161,432.79095,233.24422,20.858704,57.5092,4.745 2161,490.26596,-180.51987,235.54886,425.1837,4.6 2161,315.5338,214.4203,16.079987,30.342209,4.577 2161,493.66916,226.2789,237.66177,514.4761,4.342 2161,538.6006,296.45526,22.152222,35.54492,4.323 2161,382.95782,209.04031,28.775543,74.527405,4.297 2161,437.7588,246.5766,27.518433,66.01587,4.175 2161,-37.278294,-131.32686,116.8701,289.1373,4.172 2161,128.83603,200.52373,22.114883,37.347366,4.154 2161,222.47704,189.19846,24.999191,61.830276,4.147 2161,325.0496,209.99931,15.71347,29.496475,4.131 2161,-19.533293,-91.57208,71.034294,202.0103,4.048 2161,395.6844,183.7075,55.170654,113.545334,3.995 2161,-69.94838,-187.3811,211.24773,451.67804,3.95 2161,547.3608,-15.186684,16.009216,36.835514,3.788 2161,454.8636,247.19354,26.03357,73.21509,3.72 2161,539.5249,-15.114276,15.762573,36.47888,3.699 2161,331.71298,208.91487,15.085754,29.10463,3.63 2161,423.0064,217.99423,22.483276,56.591614,3.616 2162,446.6727,241.38632,47.962585,128.43747,96.718 2162,477.0013,240.458,40.39084,123.16896,35.39 2162,340.4103,236.57294,20.37204,46.17151,20.898 2162,393.93616,243.22203,25.211151,45.974808,20.198 2162,468.5808,274.98904,32.79019,93.045685,9.332 2162,320.84302,232.54001,18.715424,45.50052,7.89 2162,-5.220344,-16.769323,17.689587,42.864723,7.877 2162,173.4639,159.07803,23.920258,54.73149,7.378 2162,545.62604,302.3154,30.841919,82.58551,6.27 2162,-6.2592754,489.58038,18.784195,41.37799,6.059 2162,489.96487,251.76477,29.937347,80.68036,5.881 2162,-12.710369,-40.571102,41.245308,100.95242,5.795 2162,610.7152,-46.99045,41.492493,97.333336,5.782 2162,627.33405,-18.05534,17.12024,46.828117,5.634 2162,-8.775868,463.13733,37.473286,94.54309,5.556 2162,626.5594,488.22177,20.647522,45.809967,5.477 2162,-12.44091,478.39108,30.665684,62.300568,5.317 2162,2.8701234,-14.933831,16.625507,38.943314,5.228 2162,612.81024,455.00214,39.73456,107.30609,5.145 2162,459.05792,289.8584,31.610748,81.49271,5.092 2162,-72.92018,266.22076,200.68663,462.00128,5.088 2162,537.0459,310.41132,142.39532,340.3249,5.06 2162,583.14874,410.82797,71.86517,177.94205,5.016 2162,-22.0749,400.97235,79.76495,176.50177,4.922 2162,200.34625,223.50192,25.788788,72.54031,4.829 2162,223.90932,214.75876,23.044876,71.49234,4.826 2162,495.17523,230.03363,235.375,512.35144,4.647 2162,585.85693,-101.26104,75.90991,232.6579,4.543 2162,532.77966,-183.45958,148.02972,423.51062,4.372 2162,-19.368656,-91.35539,70.96176,201.93758,4.316 2162,-71.08165,-188.43561,212.22388,453.68536,4.297 2162,-36.981194,-130.88858,116.57527,285.7398,4.293 2163,567.63257,219.8554,64.60608,236.44441,82.356 2163,360.92593,225.53462,22.229584,52.328568,71.496 2163,417.2906,231.1803,25.112549,48.560425,49.055 2163,331.78595,226.6202,19.586884,47.358078,37.92 2163,217.17955,208.43185,24.838043,72.08624,10.952 2163,191.57594,217.63046,25.438751,67.24429,10.101 2163,206.3144,208.66959,27.58789,77.41449,8.285 2163,174.27003,213.08932,25.941147,75.6109,7.393 2163,-5.679052,-18.086891,17.734388,42.775913,6.839 2163,-12.338633,-41.59618,41.481667,101.6581,6.024 2163,-6.4004984,489.60675,18.858154,42.0802,5.804 2163,535.7389,305.17426,144.6972,348.57587,5.523 2163,227.94028,198.3985,26.806946,74.354126,5.509 2163,-9.163091,462.6711,37.59652,95.43588,5.473 2163,168.49977,137.06024,30.811981,69.43735,5.456 2163,597.0328,319.3717,38.31598,135.39542,5.398 2163,427.71948,232.8576,24.953278,48.805847,5.23 2163,492.30652,226.61398,239.16492,516.79675,5.21 2163,346.3428,221.21957,19.141205,43.745575,5.198 2163,627.2517,-18.097229,17.130554,46.76917,5.143 2163,603.6541,-57.096405,52.24713,137.38045,5.106 2163,613.2095,454.16943,39.553528,108.99829,5.101 2163,623.40753,-34.26867,26.012634,75.43137,5.061 2163,626.7765,487.82303,20.424438,46.802216,4.974 2163,-72.900536,267.12012,200.44945,461.1046,4.949 2163,-22.284872,400.1466,79.87165,177.19086,4.899 2163,184.50217,215.18321,22.551697,63.123123,4.867 2163,419.34018,209.11774,36.344574,78.15668,4.847 2163,453.48404,197.03262,37.58957,85.9238,4.736 2163,490.99542,-181.12128,234.63556,425.20123,4.489 2163,201.26358,213.3711,21.885086,57.51581,4.438 2163,595.4645,253.00972,51.97046,176.7595,4.431 2163,567.33453,280.04938,32.392273,98.22638,4.4 2163,356.33478,220.89459,19.643372,45.147644,4.384 2163,585.8717,-103.300545,76.34082,236.36572,4.382 2163,539.1259,166.10268,134.17297,347.5786,4.356 2164,391.20813,231.9841,28.366394,63.768677,84.687 2164,326.8321,227.76277,21.575745,55.526962,72.766 2164,294.53415,224.26892,21.459717,55.44821,45.817 2164,165.91345,208.53333,31.236115,75.81824,9.566 2164,594.24084,248.71663,22.346619,49.232986,8.883 2164,126.01471,220.58084,29.856506,64.73874,8.451 2164,-4.751634,-16.297491,16.498276,40.56912,7.274 2164,401.3346,233.35538,29.683228,54.111603,7.091 2164,109.2594,214.83963,30.065277,70.07251,6.754 2164,302.40137,225.71927,21.161255,47.736176,5.982 2164,623.8155,-33.894585,25.88086,76.63352,5.895 2164,-6.1602306,489.53418,18.692234,41.809998,5.862 2164,-10.617619,-31.791636,29.399817,71.825035,5.781 2164,627.42194,-18.48696,17.179504,47.637257,5.766 2164,608.8976,239.56891,21.369324,49.66748,5.729 2164,315.07037,226.66664,20.43512,44.419266,5.702 2164,151.59854,217.01556,29.063461,67.44855,5.674 2164,-17.243362,-64.68844,55.280773,150.48045,5.524 2164,-9.188563,463.46762,37.775562,94.303925,5.235 2164,184.70969,195.6833,31.502151,76.62358,5.124 2164,612.68964,454.9099,39.866882,106.98981,5.123 2164,3.6935675,-12.360938,15.17577,35.87825,5.084 2164,626.67487,488.0887,20.50763,46.11966,5.03 2164,582.86066,412.17767,71.8241,176.19336,5.011 2164,-73.02554,265.96344,200.65237,462.4577,4.916 2164,-22.311106,400.6122,79.764824,176.57663,4.884 2164,537.0182,309.58514,142.72644,341.80646,4.882 2164,134.38411,209.64893,33.45363,81.62192,4.861 2164,603.8695,-57.276863,52.27368,139.29712,4.845 2164,490.51913,-179.7216,235.12906,423.87494,4.55 2164,493.87573,228.30862,236.81885,513.744,4.511 2164,116.76346,229.34215,32.211853,71.90535,4.471 2164,293.12927,216.22166,18.654999,41.19301,4.423 2164,585.68787,-103.70444,76.5824,237.7093,4.362 2164,613.6709,232.51756,24.9693,68.11452,4.351 2164,503.86887,260.01312,26.35373,76.300476,4.31 2165,250.70883,225.88756,29.58548,68.58293,95.161 2165,208.87491,222.64438,30.253235,72.73984,74.477 2165,332.16388,234.77481,35.308075,66.485596,68.424 2165,242.26257,226.34666,25.147644,56.360855,8.086 2165,228.62627,226.24252,30.776749,65.51169,6.614 2165,508.1241,288.80554,35.421356,93.774994,6.586 2165,627.2239,-18.43162,17.234436,48.005642,6.231 2165,-4.891382,-16.260872,16.670662,41.035297,6.227 2165,-6.377598,489.29446,18.890354,42.211456,5.85 2165,220.5017,230.67725,23.833298,56.031616,5.814 2165,618.4541,241.7893,18.714172,50.424377,5.741 2165,-12.645942,477.2972,31.041004,63.29178,5.661 2165,-10.715448,-31.976887,29.246447,73.9944,5.546 2165,-17.808771,-62.804466,55.885284,144.24895,5.3 2165,626.7326,488.2142,20.463074,45.919342,5.295 2165,-73.35234,264.94437,201.63702,462.5527,5.09 2165,613.03436,454.8116,39.36914,107.616486,4.964 2165,623.14124,-33.61161,26.14862,75.62351,4.956 2165,-22.008205,401.1489,79.598915,176.37589,4.927 2165,583.1736,410.65015,71.77673,178.30707,4.926 2165,537.14087,310.30927,142.12451,341.1253,4.721 2165,603.4934,-57.69314,52.78296,139.76122,4.708 2165,489.78162,-179.96472,235.49426,425.33047,4.689 2165,585.59265,-101.53782,76.11133,234.74817,4.645 2165,19.045694,213.44557,32.364807,75.035355,4.638 2165,316.03824,201.91809,57.8656,102.27249,4.564 2165,262.95905,222.45512,21.846497,43.045425,4.542 2165,4.0089154,215.6083,34.1058,82.05914,4.501 2165,331.00275,-17.09312,17.595825,41.451256,4.323 2165,493.56735,227.26099,237.53726,515.05835,4.311 2165,-71.32071,-188.66194,212.02283,455.7575,4.293 2165,545.723,294.97366,31.643066,65.42316,4.278 2165,-37.106888,-130.63562,117.26768,282.91156,4.265 2165,620.09515,-18.444427,16.810669,44.048283,4.17 2165,595.5789,242.82878,18.750427,44.04915,4.065 2165,-6.508205,228.3122,36.355053,101.64288,4.057 2165,3.7208133,-12.336714,15.16292,36.60336,4.045 2165,616.1993,249.20709,24.052917,78.79254,3.985 2165,-4.514938,89.79476,18.10599,42.945488,3.932 2165,-10.295148,217.42673,30.00697,71.98013,3.859 2165,580.85736,306.24246,29.649414,66.34558,3.841 2165,352.2544,235.40141,43.129333,86.24791,3.767 2166,128.60019,198.96144,38.4496,109.0905,90.488 2166,185.9075,203.97855,35.663788,101.59244,90.158 2166,423.7172,208.52478,26.168793,60.885437,53.167 2166,286.9463,225.76685,35.490204,71.10266,37.41 2166,-5.1780853,-16.790691,16.795631,41.701157,7.745 2166,-10.772924,-32.118225,29.428493,73.07963,6.862 2166,261.75046,203.25795,13.342377,27.648117,6.202 2166,154.84428,222.61826,31.337357,65.91702,5.796 2166,169.67642,212.71915,39.88443,100.35623,5.594 2166,627.37134,-17.86935,17.24347,47.07818,5.587 2166,-12.676677,478.06525,31.00343,62.342163,5.546 2166,-6.408682,489.63144,18.809853,41.620514,5.531 2166,-8.712535,464.2499,37.630238,93.8483,5.392 2166,613.2068,453.47,39.63617,109.605255,5.361 2166,-72.65166,265.7057,200.87514,462.33936,5.32 2166,216.47063,207.77657,23.677689,48.56639,5.239 2166,203.136,204.72061,32.550217,59.789368,5.134 2166,3.3317285,-14.630387,15.666262,38.458145,5.0 2166,142.75862,213.61035,32.994095,79.54077,4.96 2166,623.23663,-33.998882,26.3974,76.42606,4.934 2166,626.63385,487.43442,20.670837,46.704193,4.923 2166,271.18655,223.55573,34.46393,81.467896,4.881 2166,603.75757,-57.582706,52.390747,138.09666,4.875 2166,-21.658508,402.22467,79.27115,175.60956,4.827 2166,268.07715,198.96614,13.004669,26.87201,4.786 2166,-16.746338,-62.940002,55.868908,145.98952,4.765 2166,433.6941,206.51297,38.58362,89.164764,4.754 2166,224.75218,205.05145,20.932098,40.008575,4.747 2166,583.0099,411.00748,71.67383,177.37473,4.738 2166,536.80554,309.5373,142.65051,342.80682,4.731 2166,166.83075,224.96088,27.48169,72.67383,4.724 2166,489.13242,-179.70894,235.629,425.172,4.683 2167,122.44297,220.67853,54.9663,129.18329,95.853 2167,245.00221,231.87593,46.382217,98.87721,89.311 2167,423.39554,228.92603,28.239471,66.68982,67.742 2167,309.43576,218.02798,21.026215,45.499542,15.968 2167,52.118015,222.24669,41.24206,102.182816,8.457 2167,-5.305245,-17.177406,17.204393,41.66637,7.046 2167,627.55206,-18.458202,17.170532,47.067482,6.036 2167,-8.785911,464.13397,37.658688,93.16254,5.645 2167,-6.20973,489.1498,18.665596,42.426666,5.643 2167,-10.975429,-31.509174,29.632896,70.80793,5.555 2167,431.49628,234.46173,31.731598,69.25995,5.545 2167,131.86703,260.9135,33.590195,91.90503,5.518 2167,621.9215,478.1788,28.471619,66.41879,5.48 2167,623.2693,-33.929752,26.605469,76.03249,5.396 2167,-72.40001,265.18274,201.02655,462.86816,5.312 2167,603.4342,-57.21809,52.73706,138.40004,5.291 2167,613.19147,454.40027,39.210022,108.40808,5.181 2167,235.33481,236.62187,37.553955,83.27095,5.082 2167,583.0959,411.60583,71.609985,176.9126,4.946 2167,130.84293,217.96437,33.48123,86.528336,4.9 2167,-21.88158,401.81958,79.648865,175.4906,4.795 2167,536.7072,309.78558,143.08575,343.10614,4.771 2167,-16.868685,-63.041275,55.491943,146.28758,4.764 2167,-41.363556,364.52637,112.20486,277.89795,4.749 2167,489.69894,-179.6802,235.61813,424.91937,4.637 2167,307.65753,-9.921261,31.73938,58.703514,4.628 2167,585.71136,-102.83243,76.44525,236.11006,4.523 2167,493.77863,227.29993,237.27228,514.7902,4.416 2167,415.75378,214.21753,43.299927,103.63727,4.359 2167,0.65478563,153.3488,31.899876,91.04277,4.336 2167,3.1705523,-14.106015,16.004452,38.365974,4.294 2168,7.5765944,213.38663,75.26589,209.16336,92.417 2168,184.32294,238.97623,55.22249,126.875885,91.536 2168,404.7984,224.55566,30.997742,77.29968,85.889 2168,308.97153,218.46872,23.821136,46.18106,53.133 2168,167.85449,246.36502,29.624832,73.42694,9.394 2168,251.8168,216.13962,16.39795,26.513107,7.213 2168,-72.480675,262.19235,200.26874,468.7211,6.573 2168,-5.340909,-17.396812,17.024433,41.050716,6.323 2168,-8.142842,270.1471,38.36657,116.72949,5.962 2168,381.0901,221.7562,31.269196,59.94037,5.954 2168,257.03214,217.67169,21.713531,38.70294,5.872 2168,-9.122211,463.30176,37.826176,94.59009,5.748 2168,-6.170578,489.11758,18.540787,42.79532,5.62 2168,-11.207811,-31.687223,29.697153,69.81194,5.569 2168,627.2456,-17.073484,17.10205,45.399376,5.538 2168,623.1789,-33.69141,26.144165,74.53223,5.496 2168,-16.913774,-65.83258,55.227898,148.44551,5.478 2168,613.19653,453.9754,39.15503,108.165955,5.263 2168,626.5394,487.63058,20.722778,46.667145,5.252 2168,-12.111115,477.13803,29.76767,62.91037,5.236 2168,188.27867,232.24045,34.007797,86.80936,5.018 2168,247.70033,209.06207,26.066177,50.612854,4.982 2168,265.956,220.46849,21.101135,37.068924,4.955 2168,583.23083,411.43375,71.341064,176.7811,4.922 2168,-32.166027,164.8037,142.80832,368.18628,4.905 2168,536.60864,309.5016,143.53632,342.94653,4.831 2168,421.9118,227.42442,23.558289,46.74559,4.759 2168,603.26953,-57.430817,52.78772,136.46645,4.693 2168,180.45729,262.157,35.4767,98.45981,4.673 2168,-42.17813,358.40234,113.01857,281.21204,4.61 2168,-18.678255,433.45288,56.237312,143.73956,4.603 2168,3.4483683,-15.752996,15.948444,38.720264,4.595 2168,489.6573,-180.24957,235.48828,424.0685,4.56 2168,493.75226,227.86499,236.96222,514.3379,4.468 2169,371.11322,216.14874,34.436768,81.145996,91.447 2169,63.330734,232.40356,65.68283,154.8894,53.286 2169,-5.5366526,-17.736887,17.399002,42.75443,6.822 2169,302.10107,206.0936,26.700562,65.39499,6.667 2169,-6.1778793,489.21777,18.580732,41.796753,5.782 2169,-72.85359,264.38077,201.8255,463.18222,5.719 2169,-11.265431,-32.5636,29.736954,70.756065,5.628 2169,627.5682,-17.750181,16.827454,47.114414,5.561 2169,-8.78296,464.37692,37.568993,93.13406,5.474 2169,212.80312,196.75247,28.433395,51.14406,5.467 2169,45.865013,255.59186,32.095146,73.96936,5.332 2169,359.25626,205.1911,29.802032,72.86127,5.244 2169,626.61444,487.9528,20.683655,46.63211,5.091 2169,583.20105,411.4708,71.46802,176.77121,5.055 2169,611.61804,-50.597054,41.014954,104.680214,5.003 2169,612.9818,454.6469,39.60144,107.84412,4.993 2169,161.63496,209.2762,19.6884,32.35414,4.938 2169,-16.871983,-64.973816,55.62168,147.32843,4.909 2169,111.9846,249.33829,43.067543,127.89484,4.884 2169,-21.266088,400.34583,78.73158,176.57373,4.879 2169,402.7843,222.6081,40.0614,97.20996,4.841 2169,536.5781,310.94568,143.25677,341.78827,4.765 2169,211.96484,195.28334,18.61612,30.404709,4.754 2169,91.077995,238.95705,47.85987,118.794785,4.674 2169,585.07007,-100.859375,76.74933,233.55458,4.608 2169,388.38837,217.62451,25.79715,59.54431,4.587 2169,-16.0454,152.24556,51.3714,139.033,4.521 2169,-41.316193,362.5187,111.73257,279.85117,4.508 2169,488.86804,-178.88445,236.48584,424.72452,4.482 2169,224.65054,203.95546,23.059479,37.974503,4.48 2169,493.6607,227.18607,236.97253,514.0499,4.451 2169,218.55339,197.75002,18.10884,29.57637,4.435 2169,3.6744082,-15.12682,16.286106,39.519493,4.249 2169,-9.075688,135.2523,39.33759,103.064896,4.196 2169,349.95877,214.48373,27.374664,64.74094,4.072 2169,-70.92206,-189.64452,212.4093,455.69452,4.064 2169,228.95892,197.20529,28.606934,52.657852,4.063 2169,4.674567,252.64227,38.629677,107.224915,4.051 2169,-37.253563,-131.51593,117.289505,286.6449,4.041 2169,-5.592355,89.79026,17.588692,40.32203,4.03 2169,376.4383,204.96515,44.991913,115.36932,4.028 2169,-15.2855,216.33902,49.68182,140.73248,3.952 2169,12.702524,231.26685,57.302757,128.3855,3.926 2170,316.6555,227.42322,39.43094,98.62311,90.64 2170,161.13882,216.34222,23.247345,38.986572,7.218 2170,-5.3552923,-18.167555,17.848732,43.911804,6.94 2170,-10.300717,-32.378906,29.06551,74.694115,6.431 2170,-5.8966255,489.51025,18.2871,41.549805,6.184 2170,611.27856,-49.418888,40.921265,102.71191,5.669 2170,-8.829592,464.58093,37.567276,92.92847,5.599 2170,27.463089,246.23273,31.42997,73.80859,5.272 2170,-72.49461,265.83636,200.90247,461.85272,5.214 2170,613.0277,454.8668,39.440857,107.01285,5.203 2170,583.19116,411.18408,71.483765,177.04596,4.971 2170,-21.503916,402.8001,79.052124,175.34717,4.952 2170,-0.56473374,29.495937,26.122108,83.03363,4.91 2170,585.4192,-99.73054,75.86774,231.57422,4.874 2170,626.4073,487.1744,20.884033,47.144806,4.82 2170,537.01013,310.9265,142.58704,341.09247,4.74 2170,2.7730174,-16.695877,17.189583,42.980865,4.72 2170,627.3204,-16.978155,17.029358,45.28017,4.636 2170,489.11353,-179.17352,236.3695,425.30258,4.628 2170,-17.084902,-63.722744,55.479347,146.71922,4.527 2170,185.71082,232.12407,20.868149,33.32341,4.44 2170,493.46652,226.6998,237.37283,515.5702,4.408 2170,-70.1832,-189.0483,212.13573,454.6159,4.328 2170,99.48363,116.236435,26.93834,90.28673,4.326 2170,176.27512,221.25377,24.013275,39.650955,4.321 2170,-3.855185,218.11853,16.232752,40.782166,4.23 2170,-15.998826,223.32266,50.979427,130.0596,4.185 2170,308.0112,201.69374,60.942352,148.74504,3.935 2170,202.23997,-15.557649,17.683914,40.177067,3.821 2170,-37.688026,-130.42422,117.21974,288.06403,3.738 2170,194.48045,-15.528255,17.717361,39.747528,3.708 2170,195.0067,219.78989,19.14769,38.263885,3.677 2170,168.18118,224.54878,22.728775,37.348495,3.671 2170,619.49695,-3.3210783,18.217224,37.666668,3.624 2170,354.96155,237.22238,40.73056,98.83725,3.567 2170,378.649,-15.445417,16.66446,38.106323,3.551 2170,-4.4948177,236.11757,17.178114,39.743942,3.542 2170,210.54918,-14.748641,17.172363,39.34775,3.538 2170,40.288235,231.5464,34.877842,60.140366,3.518 2170,169.53354,212.51413,19.06192,32.43213,3.486 2170,150.92029,211.83536,30.28981,55.579163,3.483 2170,186.6642,-17.59824,17.380112,40.67712,3.477 2170,-7.916105,53.555073,37.499924,104.76282,3.446 2170,302.45886,239.27147,27.5961,71.39195,3.414 2170,335.07053,224.03064,34.709778,68.01245,3.411 2170,162.4189,203.90967,17.906631,31.998505,3.409 2170,218.6782,-15.622604,17.30606,39.88673,3.391 2170,371.1986,-13.332262,16.393616,37.491444,3.373 2170,201.34673,-2.5131874,21.373764,40.593,3.323 2170,604.91797,15.801849,52.09369,141.90808,3.319 2170,-10.189796,212.63544,28.192204,69.09662,3.293 2170,345.22772,221.63533,33.960236,55.917496,3.291 2170,191.8628,197.22313,26.956757,66.01582,3.244 2171,393.03143,228.79276,48.440247,130.9758,91.211 2171,228.8337,209.40138,30.186722,54.26451,7.579 2171,239.98608,214.91605,23.156189,39.89073,6.682 2171,-5.962058,489.06192,18.50698,42.05179,5.977 2171,626.9204,488.13837,20.089539,45.690613,5.93 2171,248.78004,216.86494,23.520645,40.031113,5.857 2171,-5.5155706,-18.713089,17.67912,44.909645,5.757 2171,-11.876438,477.0327,30.090862,64.07623,5.657 2171,-10.571964,-33.402447,29.194868,74.808495,5.609 2171,627.089,-18.789328,17.25,47.425663,5.45 2171,623.03076,-34.247303,26.263916,76.153404,5.312 2171,613.20374,455.0971,39.11682,107.34729,5.275 2171,27.594204,274.74768,34.201366,82.05734,5.271 2171,-17.33841,-63.30373,55.677574,146.22989,5.208 2171,-72.58453,266.44223,201.3515,460.76395,5.2 2171,603.66125,-57.196564,52.602417,136.11107,5.021 2171,583.1318,411.5049,71.557556,176.67197,4.96 2171,-21.587368,401.49042,79.352684,176.39679,4.853 2171,536.7887,310.73618,142.93756,340.4092,4.813 2171,489.97742,-179.46136,235.45691,425.44812,4.776 2171,585.50287,-99.46789,76.07251,231.98373,4.769 2171,41.9807,268.23233,33.695766,79.48752,4.664 2171,493.46207,226.89902,237.76523,514.9076,4.416 2171,594.5253,-46.44082,44.069397,96.52439,4.354 2171,233.43369,209.47191,21.066711,34.982742,4.346 2171,-71.18088,-189.9043,212.24124,456.4285,4.253 2171,-37.03009,-131.13756,117.40958,283.54187,4.229 2171,332.9004,211.85602,27.250427,66.50714,4.2 2171,265.85425,-16.824692,18.110382,41.74703,4.098 2171,-0.23223877,281.58957,24.04034,50.24051,4.096 2171,252.25467,215.09483,29.668518,55.74727,4.027 2171,212.99045,209.06349,30.775757,53.361893,3.963 2171,258.27875,-16.383638,17.991638,40.774864,3.935 2171,-6.6164565,286.33105,19.804882,43.39557,3.893 2171,-11.545653,267.29312,30.199783,68.15213,3.861 2171,-14.548825,252.49274,50.518063,135.432,3.837 2171,2.4535604,-16.306335,17.212465,43.165985,3.612 2171,120.83614,231.6771,22.373924,43.908813,3.591 2171,-4.9323077,254.57887,17.04303,36.211838,3.577 2171,619.81085,-19.059366,17.093933,43.831657,3.577 2171,2.6632237,249.62633,19.394922,36.52147,3.525 2171,-10.301992,338.66846,39.15564,110.03754,3.513 2171,165.43517,122.0818,29.043411,93.19797,3.51 2171,-1.4027965,292.5996,29.055952,74.27731,3.475 2171,618.71515,490.2134,20.115906,42.62619,3.466 2171,109.76803,224.80336,28.606468,56.692703,3.433 2171,1.9517988,490.33893,19.756786,40.748474,3.403 2171,139.029,121.945114,30.88881,96.823044,3.39 2171,-4.833726,238.2154,17.644093,38.204895,3.37 2171,383.54926,257.86014,28.526215,72.67709,3.352 2171,250.18599,-18.370834,17.80272,42.56935,3.325 2171,16.472855,246.77411,45.514164,85.11835,3.308 2171,-16.054695,187.64859,51.662025,138.1489,3.293 2171,-6.1506414,201.55649,17.892277,41.88968,3.284 2172,567.6824,221.37975,65.81427,215.25362,43.808 2172,361.3036,226.75987,21.540771,40.212784,9.521 2172,354.40903,223.47858,20.67038,34.695496,8.679 2172,-4.748328,-16.185886,16.527779,41.680927,8.047 2172,-10.680292,-33.01492,29.039593,74.09577,6.388 2172,627.099,-18.324955,17.48523,47.546745,6.09 2172,-6.163946,489.1541,18.94265,42.097412,5.974 2172,369.45102,220.67172,20.23816,40.495667,5.868 2172,351.02795,219.29688,27.432587,59.39395,5.818 2172,603.01245,-53.641136,52.614014,136.01569,5.717 2172,-16.9691,-63.885117,55.455498,147.48508,5.364 2172,626.5764,487.54727,20.475708,46.64633,5.343 2172,536.13165,306.90515,143.92603,346.5334,5.274 2172,461.19156,218.58461,28.910706,63.875015,5.262 2172,347.0337,227.90591,20.869873,35.92572,5.23 2172,3.8782322,-13.48564,15.255275,37.895985,5.193 2172,-8.648616,464.22974,37.317867,93.35895,5.167 2172,613.01587,455.1195,39.354187,107.05652,5.131 2172,194.84077,236.84146,30.563293,55.3974,5.1 2172,-72.77613,265.84906,201.46143,461.47284,5.079 2172,-40.81452,361.34946,112.459114,277.49002,4.947 2172,339.31674,220.76602,19.409912,28.4944,4.929 2172,315.04178,226.19666,19.027924,26.267319,4.842 2172,492.38022,225.80164,238.88693,517.71606,4.807 2172,585.3251,-100.15667,76.104675,232.07938,4.794 2172,622.8902,-33.7264,26.634949,76.1505,4.775 2172,333.3459,217.52928,29.476532,54.232346,4.63 2172,209.14278,236.64969,20.280014,40.738922,4.552 2172,608.7066,244.93872,42.203186,130.7782,4.552 2172,-4.4457917,1.9128227,16.41239,41.86191,4.547 2172,-36.55049,-131.68248,117.11831,282.26047,4.545 2172,583.0358,411.4143,71.461975,176.87903,4.542 2172,331.29245,224.70619,20.674744,28.267258,4.522 2172,490.0677,-180.16399,234.99957,426.60782,4.521 2172,-71.576584,-189.07077,212.74443,455.35123,4.364 2172,322.57016,227.49126,20.68039,28.101517,4.283 2172,376.66022,217.08505,20.528198,43.237244,4.194 2172,582.6078,-35.882103,28.553162,77.974365,4.153 2172,-10.582757,346.28387,40.70548,97.60147,4.101 2172,595.232,-44.464863,43.361572,99.18932,4.083 2172,583.9595,238.59921,25.547974,40.121155,4.066 2172,-17.647488,432.20776,55.20721,144.6897,3.985 2172,357.0985,214.94533,37.711792,78.84831,3.945 2172,580.3142,237.74484,32.874146,91.38953,3.941 2172,307.6139,224.99165,17.408142,26.017548,3.904 2172,357.50446,209.0322,28.329956,50.98474,3.894 2172,91.26936,-12.176441,15.200729,34.63913,3.852 2172,592.5908,232.5431,33.32373,55.524887,3.837 2172,3.701024,4.8757515,17.433407,40.24364,3.832 2172,587.7062,-14.937025,15.983948,39.943798,3.776 2172,611.0509,212.77478,40.875244,108.36401,3.742 2172,564.5945,235.32597,34.168518,61.199234,3.71 2172,99.39447,236.17111,31.489029,69.73578,3.657 2172,23.639225,334.45715,38.22494,82.54639,3.649 2172,378.01907,-17.54309,18.126617,43.42187,3.642 2172,-11.635784,332.06964,30.805851,69.42908,3.624 2172,300.27307,223.44781,16.66156,27.411957,3.623 2172,120.40122,260.22842,31.59864,71.88211,3.594 2172,593.97485,226.67839,41.634216,110.48375,3.579 2172,2.1854258,318.37485,36.718124,69.4158,3.559 2172,0.58683753,-16.295225,24.66484,68.17275,3.551 2172,394.6905,-16.554447,17.542236,42.35047,3.547 2172,537.8467,166.24811,137.4176,346.5697,3.546 2173,502.7909,226.84923,24.014038,53.026413,16.33 2173,313.03745,217.51181,22.707947,37.22876,7.432 2173,378.56665,230.87248,19.374634,37.05516,7.266 2173,386.5242,226.79659,19.51944,40.454575,6.962 2173,-5.18848,-17.06525,16.81201,41.23792,6.831 2173,-11.051946,-31.950432,29.267548,71.0159,5.99 2173,305.873,221.90334,20.612152,33.188156,5.801 2173,507.84604,211.19972,29.797455,68.860825,5.776 2173,-12.043253,478.15143,29.955763,63.279663,5.693 2173,342.58136,211.5452,27.036407,46.58011,5.563 2173,299.54153,223.26624,18.906403,30.823471,5.545 2173,-6.2156467,489.62097,18.752625,41.76123,5.511 2173,621.82605,477.12897,28.848755,67.8288,5.459 2173,321.8418,221.73065,21.552673,36.2265,5.452 2173,329.71002,218.63867,22.532562,35.934174,5.369 2173,611.3926,-49.40901,41.228027,101.947586,5.139 2173,-73.05648,265.8294,200.96158,461.4124,5.115 2173,-16.946497,-64.45253,55.213364,149.38832,5.105 2173,583.1306,411.73373,71.49127,176.69016,5.012 2173,338.3637,215.71799,21.403564,35.80641,4.98 2173,627.3141,-16.759819,16.892822,44.535866,4.975 2173,-21.579332,402.32486,79.210655,175.69199,4.878 2173,398.01874,222.24838,26.417297,58.841858,4.714 2173,536.5487,310.6499,143.43964,341.8628,4.705 2173,393.4391,223.85413,20.064606,44.7966,4.657 2173,248.68701,230.89435,22.315735,40.206177,4.649 2173,518.71783,205.08963,30.935364,76.94769,4.532 2173,490.32874,-179.46506,235.21844,424.63904,4.484 2173,493.34753,227.2573,237.63812,514.68823,4.456 2173,371.2718,235.75327,19.166595,34.017975,4.426 2173,-70.90156,-189.25058,212.24539,455.8923,4.406 2173,585.51666,-102.79346,76.438416,235.42926,4.4 2173,3.9341373,-13.915545,15.25448,36.546608,4.358 2173,472.9311,239.70047,19.947968,47.143646,4.231 2173,374.20963,207.30246,27.051239,58.122528,4.177 2173,408.1695,232.4818,20.787994,42.927322,4.077 2173,-36.907078,-130.84068,117.10239,287.0335,4.011 2173,28.763416,166.85132,28.66383,76.56253,3.831 2173,171.41046,248.31909,32.1028,49.72882,3.799 2173,331.5954,202.37871,17.337341,32.369385,3.773 2173,291.7167,230.56398,18.167114,28.359177,3.691 2173,347.29263,205.75854,17.223999,29.8497,3.69 2173,-4.7015195,1.8122368,16.457113,39.984818,3.679 2173,176.47595,237.84064,22.643951,41.807495,3.662 2173,293.47998,214.92798,28.518188,49.97467,3.643 2173,-8.027651,4.659519,38.32675,110.53281,3.635 2173,619.61273,-16.908499,17.006042,40.981586,3.566 2173,354.21848,228.51112,20.11435,33.483932,3.523 2173,181.40604,237.8477,29.396149,52.898697,3.505 2173,499.23282,224.71107,40.35202,91.92412,3.48 2173,452.57092,216.35138,40.260498,77.862854,3.452 2173,469.33948,-33.14295,29.287994,77.56131,3.451 2173,274.50317,154.98587,30.195374,78.767456,3.439 2173,339.11533,205.61612,17.081635,30.07724,3.438 2173,363.36737,236.6695,18.915833,32.62744,3.437 2173,86.860565,178.75447,28.013863,64.68359,3.422 2173,209.79753,254.10281,21.068237,31.76184,3.416 2173,359.2815,206.75401,27.984314,54.653305,3.407 2173,353.84933,212.26068,17.86023,32.369156,3.406 2173,2.1429265,491.2346,19.357851,40.326996,3.366 2173,402.9525,199.19308,29.72821,67.9581,3.337 2174,385.37128,225.01108,22.480927,49.323456,21.177 2174,-5.420698,-17.663168,17.269245,42.68052,6.639 2174,-10.999178,-31.950804,29.823463,73.76887,6.114 2174,603.02405,-55.39439,53.12268,140.75166,5.89 2174,259.19122,228.38087,19.03125,32.68309,5.872 2174,626.6908,488.186,20.408142,45.796234,5.864 2174,182.1535,243.9141,28.167816,62.41455,5.83 2174,-6.132039,489.69965,18.524645,41.58893,5.717 2174,396.73856,220.66013,24.470245,54.92099,5.716 2174,265.84418,227.38255,20.024994,34.41783,5.694 2174,-8.592843,464.65637,37.511818,93.2301,5.588 2174,627.28894,-18.18761,17.152954,47.343254,5.416 2174,-12.047348,478.25104,30.037601,62.649292,5.37 2174,612.8514,455.03534,39.466003,106.9953,5.272 2174,447.98108,82.18806,22.856323,47.178917,5.2 2174,-72.27597,266.51776,200.64061,460.93195,5.129 2174,583.0695,412.5556,71.36151,175.83374,5.016 2174,-17.003616,-64.24087,55.45445,147.71191,4.905 2174,-21.589828,402.5646,79.142166,175.32846,4.894 2174,274.48907,227.36552,20.31372,36.872665,4.872 2174,282.5665,228.76622,19.397308,37.28157,4.767 2174,536.3224,309.95178,143.59729,342.9226,4.742 2174,315.07928,215.87085,18.16632,35.028046,4.688 2174,622.9442,-34.07929,26.31427,76.63949,4.633 2174,566.57404,233.5271,27.272339,58.395386,4.632 2174,593.847,191.75906,42.66986,163.38531,4.571 2174,490.2887,-179.9771,235.32141,425.52448,4.509 2174,493.45544,227.08524,237.38159,515.33655,4.433 2174,376.21182,202.57068,26.453339,67.36438,4.418 2174,585.46375,-102.70955,76.450806,236.55956,4.346 2174,262.2247,206.90253,27.95639,52.74716,4.34 2174,-5.858659,200.006,17.894821,43.1028,4.317 2174,251.81891,230.99786,18.121704,29.232086,4.312 2174,617.9354,118.08203,20.332947,46.490723,4.291 2174,329.2246,217.31357,20.983551,42.291656,4.277 2174,-37.126583,-130.45148,117.41106,286.70767,4.251 2174,299.53976,215.52759,18.344238,34.446136,4.224 2174,317.91037,210.10658,25.845367,51.133713,4.098 2174,-70.00126,-188.19754,211.25638,454.01587,4.088 2174,-5.3516674,184.66785,16.953163,42.131226,4.036 2174,3.0737662,-15.725056,16.776505,40.32959,4.034 2174,187.9986,-1.4805241,16.973022,32.821606,3.997 2174,316.3585,209.72968,13.850555,25.812866,3.965 2174,309.07504,213.87411,15.756439,28.563156,3.91 2174,543.9729,215.46326,52.346252,112.00433,3.869 2174,323.49652,3.5848007,30.694702,95.141975,3.836 2174,342.19226,195.45583,29.050873,67.19075,3.825 2174,-7.9913626,99.460724,37.677395,110.03317,3.813 2174,348.3627,-5.8552933,54.42679,122.656815,3.777 2174,329.9845,-1.4975357,30.927185,69.7842,3.696 2174,290.7578,215.06633,19.5047,38.02661,3.656 2174,321.49213,213.85303,16.274109,31.124863,3.638 2174,380.5998,-6.680992,55.398712,116.29503,3.622 2174,196.44278,-2.3921452,16.789474,33.953457,3.59 2174,156.76608,-0.44591522,16.74939,31.685452,3.547 2174,254.1199,222.303,28.26175,50.27916,3.545 2174,238.80684,169.6532,21.892838,47.852936,3.543 2174,233.65323,155.49236,19.67595,47.393356,3.533 2174,614.28595,481.0599,27.973572,61.0148,3.521 2174,165.8832,244.55107,30.664627,61.325027,3.503 2174,516.4146,213.07657,41.88739,76.75412,3.49 2174,595.1788,194.16908,33.257446,84.50575,3.469 2174,203.96817,-1.9451103,17.171906,34.78608,3.46 2174,550.04016,224.42288,30.564209,64.48114,3.441 2174,301.91064,195.42824,13.79892,30.62146,3.412 2174,277.2356,220.58124,28.64154,57.033386,3.396 2174,522.17896,219.19072,21.861633,42.311234,3.381 2175,542.14136,236.3931,48.332947,134.62201,96.675 2175,405.11523,219.97519,27.72113,71.759,27.311 2175,615.7523,248.76613,22.232666,57.56566,10.074 2175,-5.226641,-16.821812,17.11628,42.222317,7.274 2175,-10.791535,-32.39432,29.37854,74.17663,6.365 2175,-6.1360283,489.39117,18.592834,41.828735,5.939 2175,-17.950682,-64.816025,55.953148,148.24464,5.704 2175,622.019,477.66144,28.6297,67.09308,5.682 2175,603.6749,-56.30728,52.683105,138.01532,5.564 2175,581.9091,232.7214,38.888855,92.1723,5.381 2175,-11.986795,477.9347,29.912664,62.9433,5.352 2175,417.3993,223.7411,31.69696,72.79686,5.184 2175,-72.68767,266.0991,200.97928,461.45474,5.137 2175,623.12085,-34.12088,26.43872,74.12403,4.993 2175,583.0074,412.72406,71.66608,176.17914,4.956 2175,536.1098,309.4702,144.05652,342.93115,4.922 2175,-21.676998,401.73288,79.3195,175.8099,4.814 2175,490.8938,-182.18712,234.39636,428.50055,4.75 2175,-4.905794,2.124014,17.414186,41.240166,4.735 2175,42.796803,190.6669,32.802967,71.57245,4.717 2175,291.95398,216.85359,15.720184,28.785095,4.682 2175,585.654,-100.09602,75.54932,232.8852,4.662 2175,621.02893,241.12492,26.598694,74.129654,4.654 2175,556.5133,225.51743,59.325256,166.86453,4.618 2175,627.5701,-17.224966,16.694336,45.03101,4.597 2175,3.426097,-13.544274,15.892045,38.409252,4.561 2175,301.39117,-0.74869156,30.005188,90.84082,4.501 2175,495.2078,228.71014,235.91208,513.6626,4.463 2175,558.99634,235.70186,33.98456,70.59679,4.423 2175,579.6418,255.30075,38.40558,121.51782,4.411 2175,285.04916,215.94276,15.16745,27.309662,4.282 2175,-5.07169,211.6738,16.541544,37.18921,4.262 2175,517.41223,243.69144,40.13214,116.61246,4.239 2175,392.91995,218.0156,30.101257,69.9863,4.142 2175,-36.741894,-131.19623,117.43094,285.56006,4.064 2175,-4.5038104,187.01372,16.283766,38.187164,4.058 2175,595.208,-45.486828,43.73633,98.514175,4.006 2175,-70.80414,-187.84555,211.41281,453.32333,3.969 2175,-15.955638,-7.1557846,51.95288,145.13812,3.902 2175,501.06104,240.57704,39.167908,89.1783,3.856 2175,549.02014,234.87186,31.084106,79.01837,3.85 2175,523.6952,-15.42154,15.724915,39.481876,3.845 2175,315.32935,-5.5340996,30.696655,69.7388,3.73 2175,435.02902,63.95747,28.722778,62.843555,3.58 2175,618.47906,490.381,20.749695,43.02481,3.569 2175,3.543785,3.7991562,18.140144,40.884506,3.54 2175,252.6708,267.3289,16.570068,28.406128,3.53 2175,25.143993,192.8405,57.412037,131.44698,3.52 2175,1.895383,490.54578,19.737528,40.61798,3.511 2175,123.2177,-14.6052685,15.975952,36.66105,3.506 2176,400.66235,212.32922,20.519592,37.305664,20.109 2176,-5.583567,-17.87378,17.620779,44.04907,7.394 2176,-10.653488,-33.86769,28.560577,76.26181,6.929 2176,627.3713,-16.39571,16.854553,44.8809,6.285 2176,626.5586,487.90607,20.577515,46.421326,6.063 2176,493.05356,217.99408,29.759613,66.66376,6.047 2176,-12.001932,477.80173,30.007357,63.464813,5.879 2176,-6.2034655,489.1051,18.918457,42.341797,5.744 2176,623.21094,-33.668156,26.1568,76.05974,5.503 2176,532.4026,258.88672,28.586304,56.23877,5.263 2176,-72.46557,266.10394,200.43033,461.51416,5.241 2176,612.8533,455.11932,39.305542,106.88367,5.147 2176,241.7112,227.77719,18.409286,28.764832,5.137 2176,583.0812,412.88123,71.48218,175.35211,5.135 2176,441.0046,220.95598,22.721466,37.74919,5.099 2176,-17.249237,-64.18344,56.387566,145.85522,5.078 2176,-21.41291,402.9718,78.66768,174.8728,4.971 2176,488.11188,208.35452,26.39215,61.085632,4.942 2176,536.1358,309.96637,144.39154,341.97296,4.892 2176,493.905,227.43643,236.98587,514.8956,4.737 2176,490.52933,-181.7433,234.4957,426.19885,4.735 2176,603.2954,-57.026886,52.808228,136.85374,4.659 2176,593.408,212.27583,19.550842,47.04991,4.62 2176,585.94714,-101.6505,75.36603,234.09529,4.485 2176,13.504583,131.10718,52.32374,129.88538,4.475 2176,2.738604,-16.846985,16.698568,42.660393,4.475 2176,384.93744,214.65552,22.842834,40.74185,4.411 2176,235.39355,221.07657,18.134705,28.759537,4.391 2176,598.11743,195.63351,36.620422,91.08444,4.383 2176,122.589195,209.65332,30.83532,62.755066,4.375 2176,8.337299,188.27469,60.117558,106.59299,4.272 2176,581.14526,230.72115,40.607544,77.011154,4.247 2176,3.331411,230.27985,32.781384,57.81671,4.215 2176,-37.7159,-131.38289,117.28633,287.99078,4.177 2176,407.71365,203.21881,21.399506,37.750854,4.148 2176,405.23657,204.24399,38.37494,73.950836,4.127 2176,-70.00321,-187.59982,211.39548,453.03415,4.057 2176,33.94597,-13.335978,33.044228,63.138374,4.02 2176,512.096,224.7753,20.55304,38.884552,3.989 2176,475.7885,212.29599,18.852844,43.658585,3.988 2176,479.77817,206.57184,24.430237,58.720276,3.968 2176,249.40408,226.52618,18.52771,31.29361,3.945 2176,-9.832126,-5.689926,39.98068,100.72442,3.918 2176,389.87735,204.03679,38.461884,71.77522,3.901 2176,425.7715,210.13416,21.97165,41.202057,3.88 2176,-0.4024291,113.59631,28.03515,95.79465,3.863 2176,58.132156,251.13681,32.989357,64.45859,3.822 2176,613.3927,256.656,37.46924,99.49182,3.819 2176,0.06729007,-21.1558,26.545307,77.93957,3.763 2176,503.29633,225.87401,22.166077,39.34938,3.75 2176,584.7863,207.44254,24.372131,60.555878,3.75 2176,453.8945,201.35312,27.92929,62.198517,3.739 2176,444.16928,212.29321,29.45816,55.247253,3.715 2176,421.36783,204.31688,38.483063,76.44685,3.701 2176,-13.59748,119.24077,47.832138,148.93867,3.699 2176,-5.265373,0.25933075,18.58334,46.124203,3.691 2176,26.221584,-2.585043,28.420948,60.32347,3.669 2176,620.2182,-15.077091,15.77417,40.069912,3.651 2176,618.3914,489.85867,20.632141,43.660614,3.644 2176,81.63036,244.96008,35.97042,68.98114,3.624 2176,-5.1672893,75.97184,16.930002,40.241463,3.621 2176,59.53914,183.1336,57.21704,102.805725,3.607 2176,32.266506,214.9533,45.97237,73.766525,3.605 2176,395.6088,206.71384,19.41507,33.604553,3.567 2176,594.8615,-46.684067,43.97101,98.68256,3.566 2176,10.611183,-18.787893,17.795647,43.62941,3.563 2176,-4.901575,221.79395,17.036896,35.40851,3.541 2176,1.8378633,490.4074,19.83477,40.721497,3.537 2176,588.21875,258.7557,33.369507,64.362976,3.528 2176,286.35648,208.21455,25.720795,67.469955,3.523 2176,292.5008,211.2284,38.338745,78.42554,3.522 2176,83.00972,197.95978,42.489365,75.08365,3.509 2176,-11.59835,232.0198,31.212166,64.55487,3.506 2176,30.170666,144.84293,53.33597,123.31033,3.505 2176,-5.2013884,59.176853,16.568256,39.95944,3.494 2176,261.72885,211.22653,37.443756,77.34949,3.479 2176,373.0999,211.89531,27.17212,49.029587,3.472 2176,-5.0275826,180.97253,18.274807,49.145477,3.453 2177,-5.040083,-16.346159,16.842487,42.230045,7.725 2177,-10.998492,-31.745138,29.632645,73.627846,6.545 2177,-6.026248,489.44183,18.709812,42.02289,6.065 2177,578.73346,238.4748,21.25122,34.197998,5.955 2177,626.81586,488.1635,20.11615,46.147644,5.919 2177,-11.587887,479.4257,29.579483,62.278656,5.834 2177,362.93552,209.78882,18.942719,35.02777,5.693 2177,-72.55519,265.86356,200.78154,462.11874,5.291 2177,612.77026,454.9145,39.46295,107.173645,5.146 2177,-17.340902,-64.57378,55.57721,146.86494,5.106 2177,611.36163,-49.519268,41.240173,103.8305,5.091 2177,320.5034,209.87032,20.035217,34.437286,5.046 2177,583.04663,412.4276,71.61859,176.03735,5.027 2177,591.48627,250.17453,36.15454,66.357605,4.908 2177,410.08304,241.72237,20.472137,32.62828,4.857 2177,-21.28889,403.1265,78.62335,174.76694,4.793 2177,3.6881423,-13.654399,15.531504,39.064774,4.784 2177,490.91962,-182.14117,234.43958,426.722,4.781 2177,536.15485,310.81662,144.14581,341.9147,4.739 2177,627.4305,-17.725597,17.091248,46.232254,4.716 2177,585.8828,-102.25135,75.51892,234.94406,4.67 2177,-5.6056285,40.560013,17.144629,43.16333,4.652 2177,-4.7614884,217.83278,17.5833,40.091568,4.633 2177,493.55865,227.32437,237.27155,515.548,4.594 2177,313.51718,215.32487,21.321442,40.724777,4.583 2177,580.73724,234.30728,29.899902,58.828796,4.555 2177,437.30188,208.52956,28.154205,55.076675,4.35 2177,2.091273,139.33698,26.899012,80.51726,4.333 2177,504.58643,232.13892,21.393433,37.99478,4.28 2177,-37.47535,-131.86609,117.42691,286.62558,4.243 2177,-70.75257,-188.13426,211.76065,453.86786,4.185 2177,-4.99913,58.05949,17.542198,44.42847,4.149 2177,585.0102,232.88057,18.35431,30.299606,4.068 2177,329.31323,214.86511,19.71109,35.173004,4.067 2177,3.8097525,277.66724,31.568924,71.27347,3.962 2177,-5.11425,200.03836,17.273064,43.2209,3.867 2177,52.488617,230.13739,30.233383,63.168396,3.825 2177,507.654,213.6397,29.140625,60.13353,3.825 2177,347.48822,229.84631,18.060822,30.045654,3.795 2177,-4.0877457,86.69095,16.00178,45.161224,3.771 2177,-6.044281,135.81317,19.298048,46.11502,3.758 2177,1.2074494,67.979614,19.225842,50.69657,3.749 2177,576.6502,237.4917,51.20105,143.47852,3.744 2177,108.82768,213.2111,29.83171,55.327225,3.74 2177,566.8967,229.47298,28.463928,51.521927,3.68 2177,48.459785,233.40971,21.84031,41.593094,3.645 2177,3.4257631,4.9511967,17.70052,41.442345,3.64 2177,0.002336502,-16.91625,25.938868,69.28642,3.638 2177,433.5589,213.17322,21.051025,41.276764,3.611 2177,-4.6692066,2.2587948,16.424597,41.654922,3.569 2177,93.79223,200.73009,54.867195,101.30351,3.561 2177,-5.1353683,180.60649,18.096382,45.465576,3.54 2177,614.5818,481.16064,27.73944,61.11554,3.523 2177,339.3298,216.47774,18.77066,32.6174,3.502 2177,613.10504,265.48334,37.830627,111.457886,3.486 2177,310.6393,8.917236,27.840485,96.24038,3.482 2177,126.34331,212.1134,29.997406,51.54245,3.478 2177,153.92694,-19.520779,57.5009,136.05032,3.47 2177,390.1251,211.11018,37.919464,79.98366,3.441 2177,11.224987,217.76538,69.78209,180.18268,3.439 2177,451.55655,201.94037,41.827484,72.93994,3.433 2177,-4.387019,152.12427,18.0814,48.52957,3.406 2177,356.98532,204.35007,38.698883,71.96542,3.404 2177,612.0055,199.27939,36.928345,98.54483,3.383 2177,401.69366,242.69746,21.228851,31.490646,3.378 2177,398.83496,200.50668,51.177917,106.27185,3.377 2177,367.18823,-10.022324,27.682129,78.58238,3.365 2177,292.29352,207.11937,39.51126,79.76863,3.364 2177,-11.716791,27.646202,28.90665,71.193344,3.362 2177,-15.050631,189.69164,50.448265,134.62953,3.355 2177,65.216385,235.01372,22.075676,41.88997,3.342 2177,-10.354295,182.05762,28.376091,74.08618,3.308 2177,450.10117,-19.109245,19.0383,42.946896,3.295 2177,-9.663195,-4.6207314,40.955086,97.87219,3.289 2177,59.45742,-15.34227,16.127296,37.79534,3.285 2177,457.8784,-21.099857,19.553986,44.895786,3.267 2177,307.44498,208.77005,39.71695,75.325836,3.266 2177,595.30554,213.9793,40.838013,87.017654,3.262 2177,573.11835,-28.977592,54.40973,139.3831,3.242 2177,42.912098,-16.684767,16.410435,39.592533,3.236 2177,283.2645,277.50476,17.999298,30.051117,3.228 2178,434.44272,223.9054,22.189667,39.415283,23.638 2178,347.272,223.05727,18.213043,32.432007,22.195 2178,353.06726,217.69637,18.843933,35.494446,8.634 2178,396.0419,221.72961,17.815887,35.356567,8.09 2178,-5.6177993,-16.252453,17.601404,43.55699,7.377 2178,-10.34737,-32.300957,29.28631,76.29143,6.439 2178,2.133962,265.29358,25.533926,61.035065,6.241 2178,-6.1755276,489.3719,18.722963,41.99585,5.918 2178,84.70824,220.97717,30.529068,66.65491,5.905 2178,627.38654,-17.762413,17.017212,46.264557,5.885 2178,-8.874962,465.42105,37.74489,91.33688,5.81 2178,623.2014,-34.227432,26.598938,76.366135,5.755 2178,621.858,477.69315,28.74939,67.06906,5.505 2178,603.3176,-57.158928,52.638245,138.46811,5.399 2178,-72.86078,266.20813,201.12439,462.239,5.244 2178,-17.19078,-63.77358,55.44176,145.8525,5.113 2178,583.1378,411.7428,71.55646,176.53558,5.073 2178,116.42567,220.88643,30.90847,54.87947,4.942 2178,253.23969,229.36455,17.414917,31.769547,4.896 2178,-21.484665,402.70862,78.97511,175.14062,4.849 2178,536.2416,311.34064,144.09204,341.3039,4.757 2178,257.7986,219.80803,18.960022,37.343063,4.723 2178,491.10168,-182.36958,234.35388,425.91364,4.633 2178,494.07425,227.06262,236.76431,514.5041,4.597 2178,434.4944,229.37695,30.45221,53.5343,4.583 2178,236.02652,222.11751,14.838211,26.630066,4.579 2178,586.0129,-101.65668,75.233154,234.81432,4.565 2178,-37.096146,-129.87115,116.85101,283.3803,4.488 2178,99.58658,206.75641,41.136185,73.302124,4.435 2178,378.5342,232.58084,18.08609,31.336151,4.41 2178,-70.5805,-188.18483,211.40137,454.19592,4.355 2178,362.7258,210.05907,18.371185,37.23947,4.333 2178,27.421528,208.01128,30.607285,58.254837,4.295 2178,341.0337,216.92741,18.726593,34.34015,4.247 2178,595.49274,-48.949535,42.90454,102.962944,4.179 2178,14.073647,188.05429,53.406303,106.4509,4.116 2178,-4.4553766,0.85071564,16.953846,45.385006,3.981 2178,-5.124817,273.52478,18.913284,46.295868,3.939 2178,2.8652387,-13.608626,16.345985,40.902042,3.93 2178,245.35126,228.92403,15.849365,28.216537,3.815 2178,236.91658,233.05293,16.20163,27.780594,3.797 2178,20.025543,252.80981,30.903736,62.794495,3.793 2178,130.59827,222.1438,31.780151,55.239563,3.772 2178,395.58795,32.79655,28.323181,86.70282,3.71 2178,69.23247,225.50154,31.528603,59.981064,3.659 2178,446.5888,231.52737,22.28247,37.88678,3.635 2178,13.2656765,-18.629475,55.68933,121.57831,3.599 2178,33.758385,197.9923,42.020386,77.915634,3.597 2178,114.64632,233.04645,41.821243,74.4552,3.575 2178,77.04713,211.75081,53.80471,98.303665,3.564 2178,362.85834,226.9928,18.241486,33.482178,3.54 2178,149.87424,222.6241,25.256073,38.68123,3.535 2178,76.81712,240.36621,31.719559,56.60492,3.489 2178,12.198501,216.44177,69.0016,178.0774,3.489 2178,260.4941,208.89758,28.38031,54.77292,3.469 2178,-4.0754423,23.90035,16.318684,44.715195,3.452 2178,3.5363662,256.19223,36.90465,95.06708,3.45 2178,619.5272,-16.736244,16.973999,41.751167,3.432 2178,210.72842,229.50027,18.047958,28.958069,3.412 2178,93.76103,245.46303,25.982704,44.74901,3.408 2178,228.79889,222.70609,15.431839,28.486282,3.396 2178,188.01407,218.98573,18.570618,31.313522,3.396 2178,295.98547,209.13315,21.962189,41.38089,3.395 2178,2.0731955,490.17847,19.455364,41.035034,3.384 2179,472.95557,223.41162,22.755524,50.516357,84.455 2179,371.42047,223.84056,22.714203,39.981247,42.087 2179,485.715,224.40619,23.142181,47.996063,41.611 2179,424.24158,216.71303,20.053589,43.074387,12.132 2179,-5.7348447,-17.782164,17.530714,42.166466,7.367 2179,219.6747,221.13437,18.967117,37.164276,7.319 2179,626.70166,488.1244,20.28595,46.014954,5.973 2179,494.92847,223.19327,21.981873,44.0177,5.847 2179,-8.791905,464.9303,37.57828,91.87659,5.769 2179,627.2472,-17.843187,16.783203,46.18914,5.735 2179,-11.218315,-32.79958,29.406298,72.65774,5.641 2179,380.85342,220.35968,23.029938,41.41327,5.624 2179,623.1411,-34.347378,25.942688,76.30847,5.593 2179,364.39264,226.91658,21.114716,36.103745,5.474 2179,354.87857,227.507,20.161835,34.96907,5.279 2179,-72.69387,265.90442,201.07831,462.86487,5.272 2179,612.81506,455.10458,39.69287,107.032684,5.256 2179,583.22766,411.39276,71.39038,177.00806,5.109 2179,-6.223301,489.4054,18.861511,41.98694,5.063 2179,603.40875,-56.727886,53.19702,137.49324,5.0 2179,536.1949,310.35114,144.54266,341.66766,4.877 2179,-21.464052,402.82358,78.9598,174.8024,4.845 2179,73.97856,-0.9114914,31.327148,68.25777,4.843 2179,28.580605,240.2498,31.8956,67.99422,4.835 2179,-16.926464,-62.632942,55.94744,143.25156,4.825 2179,494.33075,228.19626,236.53168,513.5066,4.654 2179,544.3788,252.25969,23.769714,34.2303,4.621 2179,-71.058846,-188.39893,211.83594,454.5402,4.618 2179,-36.82261,-128.84627,116.35569,280.56384,4.597 2179,491.00067,-182.03128,234.28851,424.9537,4.501 2179,585.9618,-102.14249,75.46881,234.65445,4.486 2179,467.8593,215.75906,20.45578,41.39038,4.412 2179,533.9144,244.46474,29.165894,51.171585,4.378 2179,39.35991,243.40433,34.562172,69.21286,4.26 2179,84.27107,214.63756,39.300446,77.844955,4.228 2179,377.4007,213.89777,18.1958,36.302902,4.219 2179,70.71315,232.51476,30.208183,64.16353,4.135 2179,482.984,212.62029,38.09613,68.8163,4.115 2179,595.27765,-48.204723,43.268677,103.06777,4.101 2179,244.2414,219.8416,15.24881,30.482742,4.101 2179,3.1951685,-15.651655,16.15654,40.078186,4.056 2179,107.68704,225.83562,30.202332,56.53447,3.972 2179,91.77843,208.6312,54.509537,106.61929,3.949 2179,372.6485,209.10373,35.889343,66.96533,3.922 2179,261.33347,221.90437,15.879761,33.253326,3.854 2179,513.5426,243.33167,21.363708,33.846863,3.852 2179,4.4843636,253.1635,39.172413,94.75758,3.851 2179,91.64751,3.0082817,31.11174,65.376434,3.841 2179,116.0294,213.6029,40.02652,75.726654,3.833 2179,501.13898,227.01472,28.432068,52.99376,3.825 2179,364.27454,-1.2485161,28.577515,67.80412,3.8 2179,455.60034,213.27483,29.89563,57.129654,3.778 2179,363.03217,-16.070612,16.96405,43.943073,3.764 2179,202.24722,219.8388,19.351837,34.704544,3.75 2179,619.8318,-17.466686,16.49768,42.563354,3.75 2179,446.21677,214.6901,28.48825,51.263702,3.741 2179,65.72723,251.76883,42.883064,88.177246,3.729 2179,0.8469379,258.4724,22.772959,51.372894,3.724 2179,61.05305,212.16191,54.247913,106.87227,3.719 2179,3.1391692,-21.548592,48.873505,135.74467,3.692 2179,-8.548427,-6.123104,38.85112,100.11621,3.69 2179,195.97531,212.81601,19.20108,36.720642,3.681 2179,468.81253,224.3062,38.009247,71.91533,3.68 2180,519.3582,224.48653,28.299011,61.16478,90.359 2180,565.24176,220.82489,23.237183,54.882416,74.359 2180,378.6919,224.88083,23.615723,41.807648,60.059 2180,530.7068,222.64236,28.482788,64.48453,40.21 2180,441.96985,221.05898,17.720276,41.29442,39.65 2180,206.86179,219.31244,22.145706,44.756836,37.63 2180,446.96582,218.82129,20.572021,46.807434,12.395 2180,-5.4192896,-17.408737,17.106663,41.174675,8.09 2180,-11.100342,-32.342304,29.389967,70.66562,6.698 2180,434.79855,206.8773,21.129303,57.076187,5.617 2180,-8.731177,464.99716,37.458656,91.67551,5.441 2180,-6.2945995,489.71713,18.924955,41.67459,5.431 2180,626.46155,487.63544,20.717651,46.713318,5.347 2180,616.3699,256.213,23.307556,44.64157,5.313 2180,627.32275,-18.034502,16.942078,45.84546,5.267 2180,-72.891624,265.91458,201.11758,462.31564,5.251 2180,612.8481,455.0511,39.510925,106.73877,5.213 2180,611.29443,-49.211205,41.1864,102.25493,5.143 2180,535.97656,308.78864,145.13232,343.0514,5.102 2180,3.609736,-15.537304,15.790726,37.568512,5.079 2180,-17.381748,-62.47602,56.26514,141.88013,5.051 2180,582.92065,412.5548,71.58246,175.59595,5.051 2180,389.44656,224.7739,23.579865,41.68167,5.013 2180,-21.717373,402.2165,79.33107,175.44281,4.828 2180,573.0516,220.09204,24.382019,50.12097,4.808 2180,494.85602,229.38,236.32025,512.90076,4.745 2180,372.8042,218.96715,36.657898,62.85948,4.631 2180,491.24518,-182.73515,233.60895,425.5601,4.62 2180,4.4171343,240.00034,30.334187,66.938446,4.616 2180,-70.95219,-188.96518,212.56982,455.5558,4.584 2180,-37.299572,-130.63583,116.680786,285.45947,4.583 2180,360.67102,230.68492,22.647766,36.532608,4.394 2180,586.3331,-102.14591,75.0329,234.47586,4.375 2180,549.49316,229.35335,38.98456,69.83092,4.35 2180,541.40155,221.35437,22.952759,54.47696,4.28 2180,1.475662,266.3983,21.368929,48.830383,4.243 2180,-5.2748146,154.93068,17.788212,41.847717,4.201 2180,618.1147,244.61864,20.868408,37.77324,4.19 2180,438.03864,210.43796,34.977448,72.731384,4.157 2180,185.65157,220.35841,20.425934,35.220352,4.156 2181,392.29138,219.30345,27.793,56.31334,86.504 2181,465.26166,215.978,21.263977,49.83603,81.763 2181,618.0934,225.68875,21.75946,78.91751,16.401 2181,476.9442,211.03154,23.13211,51.628403,12.112 2181,183.84676,219.42598,22.792969,41.778183,8.599 2181,-5.1629343,-16.638481,16.623245,41.02168,7.409 2181,382.4176,70.024506,27.339172,74.062805,7.183 2181,-10.931191,-32.0822,29.113659,71.69376,5.947 2181,627.40454,-18.730341,17.004639,47.857494,5.821 2181,465.9802,205.23724,37.332977,71.784454,5.775 2181,372.78995,219.48727,30.717377,53.421936,5.468 2181,621.67194,476.7335,29.107117,68.063934,5.459 2181,-8.690916,464.97717,37.475258,92.18414,5.443 2181,-17.206783,-63.533245,55.540417,146.59789,5.253 2181,-73.138664,265.4994,201.38449,462.41327,5.242 2181,-6.090808,489.6156,18.718204,42.12854,5.22 2181,613.45123,232.3454,33.12982,112.486694,5.211 2181,582.9875,412.0025,71.54657,176.37915,5.03 2181,604.33057,216.89195,32.180176,108.87807,5.022 2181,603.1416,-56.897602,53.07202,139.44481,4.965 2181,536.47534,310.63272,143.70258,341.70773,4.926 2181,85.03404,192.71487,38.165405,73.3967,4.88 2181,89.03363,193.64442,21.901672,39.457123,4.841 2181,622.7747,-33.64713,26.789001,77.068954,4.837 2181,-21.523283,402.905,78.96207,174.81644,4.8 2181,481.77094,216.61525,40.742554,75.24873,4.734 2181,585.8815,-102.11577,75.39465,235.31569,4.708 2181,490.31815,-180.58826,234.95316,426.07602,4.635 2181,494.01196,228.40747,236.94592,513.6835,4.634 2181,3.9407098,-14.241793,15.043829,37.40061,4.505 2181,-70.54613,-189.1521,212.55273,456.06424,4.504 2181,-37.093254,-131.28906,116.521576,286.84775,4.478 2181,367.32227,223.40079,24.16809,40.125122,4.411 2181,161.45927,220.30374,22.312454,37.067352,4.379 2181,97.6595,201.38313,41.791275,75.54314,4.296 2181,449.108,33.801994,30.452667,88.89116,4.181 2181,169.46303,224.20676,21.895706,35.768402,4.079 2181,613.59015,182.70512,34.055176,107.45076,4.026 2181,-0.12468219,254.58197,27.868044,64.60803,4.004 2181,584.1292,211.21494,35.29132,85.99893,3.994 2181,70.516754,184.28046,38.787216,74.371185,3.957 2181,-5.472677,90.875275,17.03013,41.239212,3.923 2181,-6.2722344,232.54567,18.739351,41.879257,3.901 2181,595.129,-46.8228,44.255493,101.90618,3.86 2181,-5.809184,260.19177,19.145416,45.40808,3.857 2181,485.63092,211.84973,23.131042,48.291992,3.803 2181,362.52744,-16.765026,17.490723,42.484406,3.797 2181,604.06116,247.43863,50.57544,149.53091,3.784 2182,510.94177,215.53923,26.453003,62.603836,87.582 2182,419.80637,223.53748,33.66626,70.56781,84.153 2182,159.17667,221.355,26.146133,51.284683,47.511 2182,39.249138,204.61575,29.959015,55.982605,31.974 2182,521.6172,213.43826,28.828186,64.73755,16.588 2182,394.12634,53.528446,31.040558,84.23035,9.66 2182,-5.5880904,-17.252724,17.463612,41.818127,6.754 2182,408.1039,226.19263,31.994843,60.99005,6.427 2182,507.23682,214.61026,20.61316,47.526337,6.285 2182,627.3442,-17.888948,17.045471,47.313572,6.096 2182,5.9920874,202.15831,35.856125,86.30916,5.986 2182,-11.936908,478.0802,29.937378,63.4906,5.905 2182,-6.0877695,489.3432,18.697441,41.89557,5.81 2182,24.066534,196.07777,38.793694,74.76436,5.543 2182,-11.088087,-31.692406,29.481413,71.05766,5.512 2182,51.615124,201.60036,25.154163,46.470825,5.507 2182,626.4453,488.25543,20.737244,46.017517,5.487 2182,583.12537,412.34113,71.33655,175.87079,5.236 2182,-72.98084,265.98544,200.9978,461.881,5.215 2182,-17.30191,-64.9573,55.707115,148.7367,5.132 2182,622.9956,-33.913605,26.279663,76.65692,5.109 2182,384.56018,63.564114,28.228577,72.11247,5.094 2182,612.69666,454.79865,39.335754,105.93646,4.942 2182,603.4266,-56.855152,52.895935,137.80116,4.884 2182,536.1931,310.00653,144.36768,341.92377,4.878 2182,-21.383587,403.2342,78.76964,174.81073,4.861 2182,32.36712,186.10304,46.53157,98.46922,4.831 2182,171.02475,221.75783,25.851501,47.218002,4.813 2182,-14.936241,122.411804,49.631012,140.12982,4.8 2182,-40.43585,366.61807,110.690506,276.47226,4.733 2182,491.0547,-182.18468,234.17444,426.57043,4.679 2182,494.50067,228.99442,236.62085,513.9126,4.618 2183,598.9948,218.62067,26.779907,73.01056,96.576 2183,466.67114,226.30202,45.02411,93.71278,95.863 2183,582.58545,220.51181,29.517761,70.26108,94.428 2183,125.736725,219.35837,30.49768,70.25012,88.993 2183,136.12817,218.82907,31.444427,64.27652,11.298 2183,-5.576699,-17.67161,17.406975,41.74616,7.103 2183,243.9411,210.94879,16.09674,30.4702,6.822 2183,627.2035,-17.97504,16.927063,47.371105,6.202 2183,-11.349522,-32.01924,29.986036,71.96014,5.958 2183,611.92316,232.87592,37.415527,100.35486,5.746 2183,-8.791051,464.1453,37.67407,93.05417,5.497 2183,623.29535,-34.143013,25.690613,77.20209,5.483 2183,594.3248,227.06375,39.253906,92.98135,5.446 2183,-6.214382,489.20764,18.767721,42.39563,5.413 2183,626.79407,487.75385,20.22107,46.459595,5.37 2183,-72.80623,265.39954,201.22127,463.04065,5.311 2183,612.87463,455.1361,39.341614,107.095764,5.25 2183,-16.911085,-65.36891,55.46044,150.8964,5.227 2183,112.01397,205.80705,51.719643,97.0374,5.206 2183,436.32196,221.13712,39.53186,85.32947,5.178 2183,536.49054,310.38647,143.88507,340.7865,5.132 2183,582.95667,412.58575,71.6698,175.30548,5.071 2183,3.1038017,-16.336739,16.268415,38.755825,4.953 2183,410.4978,37.370895,31.75473,88.26424,4.804 2183,622.4408,214.46109,27.572266,74.80197,4.794 2183,-21.464046,402.83383,78.95323,174.8071,4.781 2183,603.8237,-56.718567,52.458496,135.37415,4.781 2183,494.51428,229.79459,236.61353,512.0708,4.757 2183,-40.648727,366.3822,111.0802,276.31958,4.695 2183,-4.177774,212.16754,16.41801,45.793335,4.536 2183,491.0533,-181.31485,233.99698,425.04733,4.521 2183,575.62915,214.06467,47.533813,110.112885,4.519 2183,-36.901375,-131.01999,116.55383,288.22913,4.439 2183,249.7804,217.57011,16.791016,29.694534,4.435 2183,586.0004,-103.02338,75.588806,236.15213,4.412 2183,-70.23823,-187.85606,211.73361,454.1023,4.381 2184,42.880573,222.63281,49.734753,100.059265,79.086 2184,593.0425,235.14609,45.472717,168.83087,31.325 2184,71.7694,229.2873,37.488014,73.01959,12.248 2184,6.1749125,248.60063,29.394157,65.449295,9.385 2184,260.2705,214.88937,17.8078,36.368332,9.277 2184,21.194193,223.89407,46.327232,90.590454,8.093 2184,-5.6092744,-17.143337,17.503706,42.354885,8.069 2184,-10.730961,-31.58545,29.634525,71.9617,7.315 2184,521.2586,217.14282,21.138,45.600616,6.942 2184,56.66721,206.77396,57.815937,107.410645,6.002 2184,627.3439,-18.662296,17.302002,47.805386,5.727 2184,-6.167205,489.41788,18.739017,41.494232,5.464 2184,-73.04355,265.22787,201.9938,462.31546,5.332 2184,603.09717,-55.482693,52.644897,137.80011,5.309 2184,-8.836912,463.75528,37.68475,93.46384,5.294 2184,-17.038166,-65.28587,55.531586,148.72047,5.235 2184,626.949,488.53424,20.263245,45.266968,5.161 2184,536.40576,309.1599,143.55792,343.44458,5.039 2184,612.71686,455.43304,39.59088,106.32074,5.01 2184,2.7893054,-15.394426,16.612116,39.850384,4.978 2184,156.34622,189.0601,33.192062,63.60916,4.965 2184,-6.6852403,241.10364,19.862736,44.256897,4.895 2184,616.73663,245.18431,24.66986,61.81099,4.894 2184,1.6407347,227.8346,48.795208,104.17981,4.892 2184,-21.503143,402.57196,78.78296,175.10852,4.858 2184,18.92832,208.70715,64.54693,161.70258,4.822 2184,-5.4643908,258.53992,18.243446,46.68564,4.733 2184,582.65875,412.58743,71.820496,175.78488,4.724 2184,492.96265,227.89398,238.20435,514.729,4.694 2184,585.3673,-101.985565,76.18384,235.5279,4.661 2184,623.15137,-33.744324,26.496338,75.7602,4.62 2184,0.9683585,227.62367,28.538618,67.83815,4.563 2184,-12.302533,238.73993,47.93075,135.42957,4.542 2184,490.01355,-180.41393,234.79102,424.73624,4.459 2184,-4.6139994,106.26752,17.09972,42.554367,4.453 2184,-70.6852,-188.08441,212.21716,454.41238,4.407 2184,44.63243,263.71445,33.275536,61.169434,4.354 2185,227.88545,215.82387,29.453537,59.716904,85.241 2185,575.8181,211.64873,20.0625,52.17131,28.007 2185,554.26447,215.7284,21.08722,43.202698,8.262 2185,-10.620179,-32.90798,29.538986,75.47418,7.353 2185,558.0195,210.76956,29.845215,75.375916,7.073 2185,583.8824,214.84923,20.900757,51.71974,6.751 2185,2.7014697,264.6996,22.60252,58.275726,6.567 2185,-5.5478115,-16.804413,17.798817,42.489025,6.294 2185,-5.965631,489.79767,18.506817,41.56891,5.803 2185,-8.65996,464.45673,37.41752,92.54773,5.511 2185,627.3329,-18.177216,17.136658,46.11996,5.48 2185,-16.733168,-62.532288,55.51606,146.42041,5.299 2185,-72.92863,265.19824,201.16977,462.39008,5.258 2185,611.4748,-49.813534,40.734802,103.52018,5.256 2185,621.749,477.12875,28.941833,67.710785,5.207 2185,583.07324,411.41864,71.50049,176.74261,4.903 2185,-21.53711,402.72888,78.922226,175.17847,4.877 2185,579.414,206.84793,36.46826,92.95224,4.842 2185,490.32233,-181.5739,234.63428,425.9694,4.834 2185,586.08716,-101.31459,74.98743,234.24709,4.808 2185,536.66675,310.1308,142.98413,341.47357,4.734 2185,2.6716943,-14.222239,16.661812,40.929256,4.543 2185,-36.73744,-130.16698,116.68385,283.2814,4.478 2185,240.15327,212.36292,32.701157,58.89154,4.465 2185,-5.9818244,186.66577,19.28921,43.040436,4.439 2185,566.3038,199.76358,34.03351,78.74869,4.413 2185,445.27484,6.688904,29.894958,72.056244,4.401 2185,493.5608,227.25403,237.36383,514.7316,4.389 2185,2.3403895,77.07822,27.377962,81.78816,4.368 2185,-70.85822,-189.42592,211.56564,455.9115,4.268 2185,491.11832,-28.016918,56.669037,121.122925,4.137 2185,-5.930116,171.27063,18.36605,42.03131,4.046 2185,284.72675,209.27069,15.392914,25.828384,4.044 2185,206.41367,202.8683,29.107254,55.81099,4.035 2185,597.6174,204.97229,36.096558,100.17679,3.892 2185,257.46735,214.18086,21.453186,42.067947,3.832 2185,-9.629505,233.94287,31.73045,74.0108,3.803 2185,219.85828,214.72824,23.54309,46.097534,3.797 2185,-8.140979,261.07355,37.254444,98.875275,3.787 2185,-9.253254,-5.851391,39.262566,104.869675,3.719 2185,267.4978,211.39787,18.951508,36.663956,3.713 2185,201.95566,216.29047,19.763535,32.31604,3.704 2185,492.82568,255.14752,32.00244,58.958496,3.698 2185,88.64547,-18.286686,19.29676,47.380196,3.697 2185,540.3476,-19.914562,54.50537,123.38603,3.639 2185,131.39726,207.81241,30.968689,51.281097,3.629 2185,129.20279,210.66345,21.13498,31.87677,3.622 2185,476.33496,-12.64999,52.971497,120.16051,3.619 2186,140.2102,218.17859,34.313446,69.67627,80.546 2186,603.88855,210.09195,28.796326,61.377655,73.002 2186,-4.765129,-17.363258,16.70209,41.673206,7.514 2186,598.00244,207.72214,36.774902,108.59531,6.699 2186,151.70184,214.62929,34.154358,60.8098,6.582 2186,620.287,205.63443,27.702454,69.06241,6.274 2186,627.2497,-17.014915,16.985657,46.046074,6.216 2186,-10.644883,-31.891373,29.031101,71.49095,6.18 2186,-5.933843,489.89853,18.375563,41.410614,6.062 2186,127.37267,214.40799,31.726631,61.00891,5.911 2186,-11.885767,478.51562,29.900312,62.46234,5.598 2186,613.22266,219.77252,26.24768,63.918,5.597 2186,626.62463,487.83694,20.457825,46.50827,5.306 2186,623.04083,-33.9629,26.223755,76.821075,5.241 2186,-72.69389,266.0589,200.94562,461.102,5.214 2186,582.9029,411.87915,71.85553,176.49268,5.048 2186,612.91113,454.48257,39.635803,107.72836,5.04 2186,-16.927809,-65.007965,55.519974,146.88058,4.989 2186,-21.471605,402.674,78.89624,174.90222,4.842 2186,536.2417,309.97794,143.42432,342.1124,4.841 2186,490.55264,-181.3733,234.5087,426.10013,4.827 2186,3.2808745,-14.421507,15.739122,37.364372,4.745 2186,603.4196,-56.062416,52.791565,134.02414,4.692 2186,586.3409,-102.74268,75.0,236.742,4.689 2186,586.1959,209.18858,37.623962,86.8651,4.557 2186,493.4329,228.112,237.65598,515.1787,4.523 2186,-36.826145,-130.33362,116.99094,282.8321,4.486 2186,617.2649,206.68326,19.473328,45.764526,4.433 2186,-4.6337457,25.854149,16.461893,42.30011,4.418 2186,162.45033,209.24315,31.814667,55.813065,4.411 2186,125.91615,185.10373,56.406815,109.25012,4.393 2186,122.63719,219.14114,21.825378,38.21939,4.272 2186,-70.97041,-189.05887,211.7839,454.39206,4.256 2186,574.6162,206.30602,51.968445,151.54585,4.213 2186,613.1277,226.66808,36.39508,117.927444,4.178 2186,269.12775,221.21135,16.604065,29.623993,4.036 2186,158.33057,222.95807,43.046005,82.89923,3.974 2186,260.63782,218.611,16.302765,29.266953,3.922 2186,275.40765,216.70679,16.83551,31.56746,3.811 2186,130.24768,210.66797,20.824722,33.392517,3.787 2186,385.7774,229.9046,20.82962,39.62906,3.759 2186,10.768867,-15.173306,15.908517,37.843933,3.751 2186,620.2107,-15.875564,16.013123,41.089645,3.744 2186,18.366814,158.3679,42.024643,90.574554,3.733 2186,595.0198,-46.346333,43.559875,96.52089,3.721 2186,476.5072,1.9817314,17.681915,33.017952,3.703 2186,-9.910911,171.55804,28.203846,72.115555,3.677 2186,582.4659,204.42723,31.50116,61.9366,3.657 2186,374.36356,218.91301,27.081512,53.78459,3.656 2186,251.02338,232.93091,19.96756,31.41034,3.648 2186,-4.7771997,185.55536,17.062746,44.083206,3.646 2187,5.4384794,223.90613,33.773785,84.10675,11.697 2187,514.64655,167.03981,18.614075,50.103058,10.462 2187,531.2952,170.50397,19.174194,48.053085,10.314 2187,-5.4892387,-18.117437,17.571758,42.784904,7.058 2187,-11.016481,-32.108356,29.214027,72.57349,6.179 2187,-6.034547,489.56488,18.416065,41.545776,5.745 2187,-8.82573,463.78326,37.545322,93.7337,5.6 2187,203.62323,221.56694,18.018158,25.51744,5.522 2187,627.31635,-17.735989,17.089233,46.460407,5.479 2187,9.500486,210.25726,52.906456,109.58374,5.332 2187,-10.561566,208.0987,29.329487,70.507935,5.269 2187,-10.881416,130.58063,29.150295,67.168076,5.202 2187,-16.972227,-64.71109,55.301117,146.91708,5.116 2187,613.1528,454.60764,39.329834,108.088165,5.113 2187,-73.15077,265.0504,201.51225,462.6963,5.113 2187,-5.4995346,223.46506,18.968828,47.945374,5.037 2187,582.9272,411.49664,71.710754,176.88025,4.982 2187,-21.467987,402.73758,78.92797,175.1401,4.864 2187,623.3038,-33.982204,25.972961,76.423256,4.741 2187,251.47156,223.33154,19.523743,33.083496,4.726 2187,626.457,487.33536,20.648438,46.831207,4.719 2187,536.6527,310.56433,142.8435,341.8839,4.717 2187,-40.6468,365.7678,111.219376,276.65836,4.713 2187,602.7989,-56.490585,53.340027,139.34128,4.713 2187,539.12085,178.78046,17.078125,44.75267,4.704 2187,490.20013,-181.22374,235.3631,424.43732,4.679 2187,19.148197,224.8853,39.214745,61.970383,4.655 2187,585.74133,-104.60417,76.6311,239.3901,4.583 2187,-11.134102,235.96365,32.33566,74.08722,4.488 2187,493.51346,227.36679,237.44211,515.79565,4.454 2187,544.0601,173.14062,19.732483,46.882217,4.262 2187,-37.13819,-130.42615,117.30883,282.87973,4.243 2187,195.94574,219.70789,18.748474,27.413269,4.222 2187,3.1396365,-16.759117,16.619854,40.94964,4.189 2187,-71.032936,-189.35674,212.40033,456.12463,4.18 2187,521.6072,171.43176,18.901611,49.565384,4.039 2187,-12.953403,222.32848,50.569477,133.48103,3.976 2187,311.25497,215.61319,26.582916,71.45105,3.943 2187,465.67737,68.69149,23.638428,44.975952,3.901 2187,-5.9835267,136.71243,18.523058,44.00972,3.887 2187,187.51021,218.04103,18.62497,29.293594,3.863 2187,322.0497,227.48997,19.792145,43.771347,3.721 2187,29.101444,221.12341,24.59082,41.315735,3.695 2187,548.0212,169.55765,39.81256,93.92517,3.65 2187,531.8161,168.0972,39.51703,93.98511,3.647 2187,243.08734,226.6572,19.143036,28.501373,3.643 2187,33.98908,207.56439,42.209133,71.773315,3.635 2187,547.5393,227.78984,40.703857,90.622696,3.633 2187,-5.0449185,205.47961,16.492117,38.806915,3.63 2187,0.19255519,212.02661,28.969315,71.55823,3.597 2187,325.30704,229.26105,26.430145,64.104614,3.542 2187,564.4832,167.34932,40.632874,98.297195,3.518 2187,-10.238262,290.0949,39.808678,106.73816,3.439 2187,258.55048,224.18352,20.39862,35.267105,3.433 2187,575.1393,162.23965,51.002502,131.25772,3.411 2187,613.16095,81.26254,35.742554,106.23163,3.408 2187,0.09480238,116.03975,26.655264,72.543106,3.392 2187,422.08206,211.79643,40.15811,98.65068,3.373 2187,210.92766,222.54727,17.398071,25.268448,3.341 2187,291.8432,212.01439,16.836548,32.811844,3.337 2187,319.23068,205.9455,49.474762,119.457214,3.33 2187,-6.0682592,183.98767,17.76885,44.665573,3.281 2187,131.56282,208.82085,31.589432,49.29268,3.259 2187,68.61634,124.249344,31.608269,59.946945,3.259 2187,2.8562784,215.09444,19.918781,40.978348,3.247 2187,39.52713,232.79114,23.21743,39.149353,3.241 2187,564.9187,226.28024,39.87152,94.25549,3.239 2187,1.8907261,-42.954517,43.015152,103.263,3.239 2187,234.94858,233.5451,18.920975,28.645447,3.237 2187,220.07092,223.68546,16.89505,24.783691,3.237 2188,334.79303,218.1067,21.444336,48.43239,33.59 2188,-5.726204,-18.644938,17.577726,43.784252,7.055 2188,-6.1513476,488.47913,18.837103,43.04962,6.178 2188,-12.032699,476.853,30.180004,64.29739,6.129 2188,343.16827,220.29367,20.238892,42.899994,5.773 2188,321.2397,209.77509,27.126038,65.83142,5.749 2188,627.1902,-17.619904,16.984741,45.915974,5.508 2188,-12.694148,-40.67289,41.76506,101.194496,5.301 2188,621.62573,477.82022,29.2052,67.01657,5.167 2188,242.91054,218.4656,18.503464,34.923615,5.053 2188,-72.983215,265.99677,200.68074,461.02667,4.985 2188,583.1298,411.08875,71.46307,177.55817,4.955 2188,362.33386,232.15958,19.194183,36.39218,4.944 2188,-21.661283,402.55408,79.09452,175.42682,4.893 2188,355.43848,223.67824,19.134338,36.94951,4.886 2188,623.02734,-34.23125,26.191284,75.589035,4.856 2188,536.552,310.83896,143.21393,341.6907,4.719 2188,490.00116,-180.73918,235.34747,425.08466,4.627 2188,585.71704,-102.077484,76.14093,234.12532,4.548 2188,-19.641525,-90.24716,71.48485,199.93793,4.538 2188,506.72388,2.080433,31.270935,83.240265,4.532 2188,493.8066,226.83688,236.98141,515.00916,4.493 2188,-37.292854,-130.5531,117.33306,283.76562,4.468 2188,452.0561,218.29861,39.52832,84.86401,4.439 2188,-4.3307595,218.80199,15.504402,36.632797,4.427 2188,-6.091817,232.84853,18.268272,38.546097,4.398 2188,603.1524,-56.540096,53.354492,137.46497,4.385 2188,251.9319,219.59236,19.19841,38.002396,4.295 2188,-70.5293,-189.15889,211.3545,455.4677,4.243 2188,228.00826,227.29773,17.542831,26.456543,4.231 2188,236.089,225.35902,17.343033,29.456482,4.142 2188,349.5007,210.90146,30.22641,54.112457,3.984 2188,366.25336,42.49652,28.022186,79.035324,3.957 2188,594.9146,-47.53366,44.023743,100.140564,3.903 2188,-4.971492,55.635773,16.922413,42.16931,3.884 2188,165.54352,199.36496,28.440247,49.512955,3.879 2188,467.64197,218.48038,39.76053,86.57129,3.836 2188,358.05212,208.80441,33.806763,80.03204,3.832 2188,261.3571,205.40186,37.558685,87.4245,3.779 2188,1.8208361,489.46646,19.938461,42.015533,3.772 2188,2.2582304,37.18135,19.033636,46.241257,3.697 2188,484.52502,226.97995,40.526184,97.690796,3.693 2188,193.60464,215.85863,19.627808,29.58162,3.645 2188,293.95856,205.19153,35.596375,89.07291,3.641 2188,238.88206,209.58943,27.128922,53.269302,3.627 2188,-4.8028755,138.87836,17.674316,53.960632,3.585 2188,254.68817,212.09296,26.433746,58.678955,3.478 2188,437.6726,208.27583,38.81372,83.58177,3.466 2188,421.9884,206.98138,38.1315,82.9874,3.447 2188,220.13242,227.16191,16.6456,25.44426,3.386 2188,-4.882602,2.438364,17.318954,43.951897,3.381 2188,443.32684,-16.660454,55.52185,133.86368,3.376 2188,388.84222,206.43549,36.526978,82.793396,3.355 2188,-9.075708,131.62665,27.656675,81.7737,3.342 2188,-14.601684,55.376236,48.3282,147.72696,3.31 2188,277.47034,205.72931,37.378265,89.977875,3.291 2188,-3.1728144,201.4716,14.271786,40.218704,3.288 2188,-4.3779144,105.566574,17.558372,44.51085,3.275 2188,509.07806,210.81207,53.276123,124.15509,3.225 2188,289.66592,284.44467,21.428467,36.59735,3.225 2188,405.881,198.71657,36.92392,78.79295,3.214 2188,318.31226,79.21063,24.203003,90.61102,3.209 2188,-10.061565,22.832664,40.2487,102.57066,3.196 2188,458.42096,228.79887,20.531433,40.84529,3.178 2188,618.3098,489.8724,21.106628,44.04074,3.177 2188,620.0713,-17.168287,16.400208,42.08886,3.169 2188,243.98798,232.7182,19.4198,34.23047,3.167 2188,500.58438,226.91003,41.03311,100.6322,3.166 2189,359.07245,227.25635,23.585388,48.62628,87.532 2189,375.81464,229.91267,21.948578,44.11757,11.635 2189,-5.1536083,-16.246023,16.871906,40.507286,9.274 2189,465.05887,220.07326,20.138336,55.676468,8.915 2189,-10.9814205,-30.365757,29.189482,68.41508,6.554 2189,3.8830895,-13.291693,15.103813,36.178123,6.159 2189,-6.2869997,489.82288,18.914017,41.379333,5.758 2189,-8.875033,464.69946,37.656937,92.730225,5.511 2189,613.1974,453.45544,39.105713,109.34784,5.369 2189,380.7629,229.86612,29.167847,53.134705,5.296 2189,627.12,-18.17281,17.380676,47.82263,5.275 2189,4.683941,1.090086,14.373203,32.71766,5.203 2189,368.04193,224.01039,22.0224,44.66475,5.083 2189,-72.78682,266.42365,200.67676,460.46393,5.013 2189,-21.56908,402.93646,79.02988,174.93262,4.912 2189,610.69336,-48.44501,42.031555,100.701294,4.909 2189,583.2638,409.88712,71.5387,178.41183,4.905 2189,536.6376,311.35776,143.39569,340.98038,4.73 2189,-16.957094,-65.189545,55.39286,146.7248,4.683 2189,490.64624,-181.45757,234.91504,426.28793,4.65 2189,357.55984,210.90337,35.86679,71.75346,4.566 2189,257.897,217.44508,19.662079,40.614426,4.543 2189,493.86887,227.50525,236.65427,514.5229,4.507 2189,585.7463,-102.13225,76.08118,235.30797,4.49 2189,-4.1386776,4.002199,15.152988,38.096863,4.428 2189,-37.475163,-130.48949,117.70378,283.15143,4.389 2189,346.06818,227.00267,22.811707,40.317917,4.367 2189,626.3753,487.54437,21.197449,46.681885,4.295 2189,164.38739,206.72893,29.609528,50.19481,4.282 2189,-70.29598,-188.5539,210.78232,454.89963,4.179 2189,261.30103,208.19977,38.17755,87.588165,4.095 2189,-4.5988526,230.67102,17.089293,41.35437,4.052 2189,379.3296,221.40254,18.414368,32.299164,3.975 2189,338.20724,231.51727,20.467804,36.26346,3.857 2189,452.76678,230.00949,39.18924,87.56619,3.826 2189,252.08484,226.37387,19.95819,35.341156,3.696 2189,12.35919,1.8371029,15.336428,31.572985,3.694 2189,-4.4598413,18.247242,16.319183,39.331863,3.657 2189,12.568531,181.74883,54.128933,110.03203,3.613 2189,516.13214,243.3614,41.36206,98.28291,3.566 2189,-9.606676,-4.9556465,41.03595,98.56221,3.565 2189,11.318285,-14.220722,15.3805485,35.8411,3.556 2189,345.85315,215.3316,34.405334,69.3277,3.518 2189,281.43832,213.5038,21.511078,46.695786,3.477 2189,-5.4648185,247.96263,17.171526,38.56993,3.405 2189,293.8882,208.32716,26.963867,54.12303,3.378 2189,453.63,199.05537,38.90747,82.50838,3.375 2189,44.40624,210.79846,29.895687,56.192566,3.357 2189,11.452284,-18.920303,59.008636,128.6793,3.356 2189,276.9782,208.17249,38.017853,91.72388,3.355 2189,1.6901684,490.77658,20.152971,40.514313,3.336 2189,442.8725,-13.876614,16.604858,37.274868,3.333 2189,246.08604,207.73123,39.332016,82.963715,3.333 2189,420.87958,200.69647,37.663147,75.851776,3.327 2189,-5.260093,32.25908,17.80545,42.628433,3.278 2189,432.6576,198.54347,48.860626,110.78017,3.266 2189,293.52545,209.043,36.722015,89.59589,3.257 2189,443.19574,-0.5463066,19.021606,35.106556,3.234 2189,461.4694,208.5149,51.009735,114.40381,3.211 2189,179.73816,186.62541,40.882446,73.54146,3.202 2189,2.4980307,205.80417,18.31868,49.393753,3.194 2189,-4.1223526,201.77637,16.817484,44.10672,3.184 2189,291.4309,291.51166,18.824097,32.54416,3.18 2189,43.287292,67.95036,33.12133,81.44502,3.155 2189,228.45857,203.09998,40.24208,72.46802,3.145 2189,-10.03314,204.71649,26.698885,70.29175,3.136 2189,546.81226,412.10834,83.162964,169.1023,3.134 2189,483.94254,234.05557,40.598053,90.74936,3.133 2189,438.37244,0.6397362,27.371857,56.413414,3.131 2189,273.61755,214.6496,21.162842,46.882538,3.13 2189,491.56445,-16.781195,16.135406,40.26733,3.102 2190,380.1444,199.29486,29.071564,58.61429,26.088 2190,511.1038,192.98575,24.204071,68.271454,9.483 2190,-10.971475,-32.63627,29.58186,74.67045,6.671 2190,-5.547471,-17.429577,17.4604,43.52278,5.966 2190,-6.1856794,489.77063,18.569595,41.589172,5.899 2190,-12.217964,478.46512,30.40931,62.520477,5.501 2190,393.87463,197.62083,33.637543,61.278885,5.493 2190,602.7496,-55.512383,53.003845,140.79353,5.161 2190,-72.96238,265.9826,200.73215,460.39447,5.127 2190,613.0706,454.23264,39.3562,108.33194,5.115 2190,626.57477,487.56277,20.698181,46.84738,5.008 2190,583.0596,411.4134,71.56842,176.81012,4.96 2190,-21.527071,402.88168,78.953255,175.12894,4.959 2190,-17.120434,-64.324135,55.902325,148.35161,4.883 2190,536.4544,310.51227,143.23663,342.15448,4.746 2190,626.8763,-19.27915,17.382141,49.450832,4.689 2190,622.75195,-34.26347,26.684021,77.635635,4.532 2190,493.46893,227.70056,237.35107,514.968,4.511 2190,-37.156033,-132.1737,117.721695,289.21948,4.424 2190,489.1702,-179.47705,236.3837,423.43057,4.396 2190,585.62823,-104.982605,76.6214,240.62189,4.361 2190,-8.410981,153.35783,26.892094,76.317215,4.272 2190,-70.67013,-189.58975,212.19019,456.02264,4.263 2190,290.1565,190.57759,19.413452,52.803543,4.239 2190,410.87628,197.92131,33.149963,68.613235,4.143 2190,-5.475945,21.411064,17.967834,50.13176,4.022 2190,2.916679,-15.628899,16.954985,41.078102,4.018 2190,525.29626,186.9244,27.098145,70.24193,3.998 2190,29.812992,10.644627,32.047924,91.56006,3.958 2190,360.64633,207.37383,22.280426,36.025513,3.887 2190,390.9509,2.888279,28.70163,75.53328,3.852 2190,614.56934,-20.901672,27.71698,75.59424,3.837 2190,2.2264254,247.31439,21.161188,54.927612,3.732 2190,489.84973,129.57445,26.287415,77.08504,3.724 2190,402.3729,2.4743958,21.416199,51.745075,3.708 2190,-8.546,22.710052,38.315132,105.41847,3.611 2190,91.844215,-12.722424,15.306297,36.07691,3.565 2190,293.79236,188.96207,36.98465,91.2962,3.549 2190,420.52444,169.7669,40.045868,80.76521,3.518 2190,495.6909,181.60776,29.331818,75.446045,3.514 2190,278.03116,187.62306,36.363953,92.278885,3.508 2190,437.11273,166.05795,38.81833,81.86708,3.501 2190,-0.2951789,207.60098,27.020525,74.43585,3.491 2190,570.30963,-20.02489,18.29364,44.803116,3.456 2190,35.02822,182.08977,30.74337,60.800476,3.448 2190,493.53986,131.41594,17.773132,45.494766,3.441 2190,-0.050504208,163.6271,24.626425,78.983505,3.422 2190,353.7522,210.00964,20.171387,34.93457,3.417 2190,34.84388,-5.666649,30.560257,75.64173,3.411 2190,-8.996625,243.8821,37.564342,103.48027,3.39 2190,10.927603,-19.490768,57.31138,144.83517,3.373 2190,453.04108,165.13393,39.444733,83.105774,3.347 2190,523.2375,-16.828773,16.560852,40.815315,3.322 2190,572.54333,-16.902573,32.361816,72.431465,3.27 2190,2.0171964,491.67227,19.543755,40.126434,3.257 2190,243.40408,218.04958,20.376984,35.586227,3.256 2190,-15.714308,177.87608,49.062965,141.5425,3.25 2190,18.681488,180.4249,40.669937,89.5065,3.241 2190,261.82526,187.87271,38.242462,89.43411,3.234 2190,478.40894,173.93489,49.369263,112.97423,3.229 2190,510.93692,152.22722,50.41397,121.17641,3.227 2190,279.42633,181.95235,26.644836,64.02269,3.223 2190,-9.904482,-2.4216652,27.564142,71.60942,3.206 2190,235.6128,218.41302,17.384369,30.131927,3.187 2190,251.09781,219.53862,21.473907,38.414047,3.167 2190,443.61972,158.55818,17.423737,40.96205,3.156 2190,350.6361,184.91577,26.049255,56.400726,3.149 2191,410.20184,230.07341,23.133423,52.066757,42.483 2191,489.84753,220.7026,30.295593,64.14694,7.812 2191,418.76013,228.05914,29.154602,61.850525,6.037 2191,-5.2118845,-17.354544,17.143116,42.67564,5.858 2191,-6.1289077,489.3067,18.738503,42.11499,5.763 2191,-11.072026,-32.363926,29.693642,72.940636,5.591 2191,-8.818136,463.79446,37.56495,93.91885,5.577 2191,621.89026,477.03525,28.81543,67.51553,5.287 2191,-72.83458,265.7842,200.88884,461.40744,5.122 2191,583.06976,411.76422,71.565186,176.46417,5.044 2191,611.2476,-50.17836,41.30768,104.754814,5.012 2191,370.4195,250.29007,19.785706,32.07843,4.928 2191,498.11707,221.99725,40.79663,77.931885,4.925 2191,536.27203,310.24002,144.05524,341.68686,4.863 2191,-21.490114,402.78644,78.9269,175.14215,4.856 2191,585.59985,-103.809875,76.29382,238.26808,4.71 2191,371.45724,239.60783,28.509949,48.51265,4.668 2191,494.20935,228.48999,236.26843,513.0171,4.621 2191,428.3054,222.83018,29.481781,59.04622,4.603 2191,471.71832,213.87866,37.461792,80.38425,4.559 2191,478.8933,205.54263,49.21704,104.92255,4.545 2191,-17.51584,-62.33527,56.05606,145.92632,4.519 2191,490.04886,-181.2535,235.83066,424.75244,4.498 2191,513.35913,234.25832,43.25537,77.42027,4.468 2191,-37.38262,-130.95291,117.449684,285.0091,4.423 2191,406.00897,224.79776,33.234497,81.50958,4.303 2191,553.86066,0.46034813,19.64972,37.705093,4.263 2191,-70.33386,-188.70251,211.73796,455.46292,4.252 2191,-4.6524296,76.18434,18.655676,49.418198,4.224 2191,627.1372,-19.450457,17.574036,48.859856,4.22 2191,377.2846,244.04579,18.695007,29.70491,4.163 2191,108.830765,196.55077,27.404907,65.132706,4.16 2191,385.66577,234.41516,18.506836,33.13269,4.061 2191,119.43361,203.04477,29.302826,66.95822,3.936 2191,-5.285709,253.06387,15.840801,36.552124,3.929 2191,540.48285,-11.652672,31.241882,67.839035,3.907 2191,-5.039938,105.17881,16.780506,39.79519,3.842 2191,492.14148,194.49066,15.597321,34.399582,3.702 2191,555.0408,-14.775515,17.057678,39.91094,3.701 2191,59.27352,-14.846322,15.975815,37.3001,3.689 2191,235.00522,233.48785,17.954147,27.137054,3.671 2191,-10.277314,126.390396,30.163494,71.14215,3.67 2191,405.46014,230.98453,20.004578,40.291718,3.64 2191,-4.668123,268.56723,16.358522,34.96573,3.561 2191,60.46769,207.3045,29.285713,55.341278,3.54 2191,3.848511,263.76562,16.498636,31.889557,3.532 2191,539.295,-14.7174,16.742004,39.309566,3.462 2191,395.3634,232.42644,18.446472,33.714005,3.457 2191,571.1753,-15.02397,16.316223,38.070194,3.447 2191,67.59038,-13.849054,15.761368,36.171474,3.442 2191,1.9662237,127.337616,26.082214,77.74661,3.431 2191,-4.844535,1.684391,18.24543,43.416946,3.426 2191,438.63416,200.20265,36.812866,84.12312,3.424 2191,261.93652,209.09767,38.754578,84.43495,3.406 2191,515.62085,203.44165,41.11853,81.02515,3.37 2191,371.02942,234.16953,17.913025,31.75235,3.356 2191,150.48346,194.94452,30.208359,58.55066,3.335 2191,562.51746,244.69237,20.70697,38.9702,3.313 2191,555.3153,-14.521183,30.396484,65.684875,3.309 2191,10.508661,-19.730225,58.716682,138.92528,3.276 2191,227.86966,204.19121,41.645447,69.87215,3.239 2191,227.35504,232.04999,18.278717,27.822357,3.238 2191,293.9102,208.53062,36.48477,88.347916,3.232 2191,158.32933,207.08519,29.236649,54.433304,3.227 2191,75.6876,-14.110343,15.457268,35.95458,3.215 2191,210.49289,218.28293,42.634933,76.49286,3.21 2191,277.83087,209.25647,37.70819,88.122894,3.188 2191,618.22205,489.49115,21.204285,44.755066,3.186 2191,-8.824763,327.5149,37.91227,106.57535,3.185 2192,445.13477,226.28986,28.45691,68.56732,92.499 2192,406.67755,232.33798,21.488983,46.04547,17.139 2192,-5.3920536,-16.94849,17.171616,41.000782,8.221 2192,-11.02716,-30.979702,29.253666,70.48256,7.376 2192,421.31076,221.60611,27.748047,57.958984,7.008 2192,455.50046,226.63326,31.45691,71.88347,6.606 2192,-6.2963467,489.45538,18.930956,42.039917,5.949 2192,627.3734,-18.110569,17.088501,46.6874,5.929 2192,414.74484,234.76031,22.316742,42.69763,5.824 2192,-12.359391,477.43063,30.735874,63.375275,5.785 2192,612.92725,454.764,39.597412,107.733,5.279 2192,623.20856,-34.178104,26.198303,76.20508,5.232 2192,-17.117897,-64.1413,55.558647,145.79436,5.187 2192,626.7117,488.09964,20.432617,45.85263,5.165 2192,-72.80242,266.20554,200.92197,461.07242,5.131 2192,582.87683,411.91046,71.86041,176.35004,5.098 2192,434.10373,226.52382,28.793304,63.74031,5.053 2192,536.3815,310.16672,144.00342,342.4114,4.938 2192,-21.480774,402.89966,78.96317,175.07562,4.917 2192,3.5829616,-14.273743,15.739754,37.44283,4.861 2192,494.37323,227.74924,236.60974,513.5532,4.722 2192,603.1242,-56.84327,53.54059,138.10364,4.72 2192,490.86896,-182.10007,234.92719,424.9489,4.529 2192,467.3442,230.14673,31.729462,61.792297,4.455 2192,-37.040905,-130.91965,116.930176,287.10464,4.365 2192,-70.31857,-188.84651,212.23657,454.89667,4.356 2192,585.9627,-103.80351,76.19153,237.60074,4.345 2192,538.5269,199.23483,53.55719,119.86444,4.31 2192,79.749054,166.97778,22.30754,53.19011,4.25 2192,533.79626,212.02016,28.929016,59.447342,4.173 2192,546.12573,195.7995,32.190918,68.72693,4.138 2192,517.79663,213.5516,39.91919,90.19342,3.993 2192,75.59792,175.76637,28.69349,71.83745,3.993 2192,396.45383,233.49507,22.23999,42.92415,3.936 2192,249.082,208.87209,21.975372,39.74063,3.826 2192,-4.418756,219.67065,16.493248,37.62265,3.82 2192,-4.4030333,2.146618,16.195526,39.987167,3.818 2192,405.55984,219.99834,34.33072,69.70265,3.809 2192,-9.886272,-7.160225,39.960052,101.14584,3.755 2192,442.49524,10.081032,31.98288,70.923775,3.753 2192,84.30374,189.7831,29.309937,68.45259,3.717 2192,283.73718,277.78888,16.94986,28.086914,3.717 2192,61.99456,177.35468,50.578606,110.51477,3.706 2192,439.4834,3.7555408,24.256714,46.88382,3.614 2192,211.22734,188.25677,42.17128,73.542114,3.613 2192,266.1636,207.79636,21.168182,40.19861,3.611 2192,413.02075,-8.181583,54.249115,118.99208,3.578 2192,3.766591,4.4622517,17.931873,39.66314,3.577 2192,595.29395,-48.782425,43.65741,102.78964,3.565 2192,10.903068,-14.689074,16.120476,36.938366,3.531 2192,620.4273,-3.2776995,17.436157,38.45522,3.528 2192,580.31494,243.11954,41.862,95.611115,3.498 2192,1.7023921,490.37628,20.173826,41.052856,3.49 2192,-5.375601,72.98344,17.021059,42.782143,3.484 2192,485.11133,220.9931,38.6427,100.37622,3.471 2192,227.6645,201.75954,41.277237,71.44774,3.467 2192,612.2692,254.51793,38.17987,106.19716,3.426 2193,514.9768,227.96883,35.46051,84.79085,89.433 2193,467.02408,244.46428,29.738739,62.72545,45.676 2193,552.26636,225.71034,21.885864,56.01271,10.767 2193,549.1773,228.67847,36.319153,89.648865,9.001 2193,541.0482,228.83533,31.225464,73.85504,8.785 2193,-5.4627285,-17.362328,17.433285,41.88577,7.491 2193,-11.158121,-32.216152,29.529522,72.21773,6.506 2193,623.04706,-32.794743,26.734558,73.9366,6.327 2193,627.184,-18.806482,17.22815,47.07343,6.235 2193,529.9388,225.374,30.917175,73.002014,5.869 2193,470.0345,9.609512,26.446808,80.82967,5.717 2193,-6.1620836,489.346,18.744415,42.189148,5.655 2193,-12.051044,477.98932,30.098604,63.008606,5.548 2193,-5.241063,233.52357,18.30336,40.448593,5.261 2193,603.4696,-56.019756,53.05713,133.11952,5.197 2193,626.7058,487.88837,20.53186,46.622375,5.145 2193,-73.177216,265.3827,201.72273,462.60913,5.145 2193,582.80035,412.5474,71.90631,175.59995,5.103 2193,-17.052391,-63.993973,55.51865,146.56374,5.063 2193,618.92487,232.2602,18.96875,47.907654,5.052 2193,612.98376,454.61578,39.61377,107.592834,5.032 2193,536.41284,309.9301,143.94348,340.976,4.975 2193,-21.45175,402.71167,79.059975,175.1236,4.834 2193,594.1682,-45.39376,44.190247,98.12572,4.788 2193,3.2311506,-15.78413,16.276123,38.8535,4.727 2193,-40.834805,365.5335,111.36395,276.5849,4.721 2193,487.0227,244.46613,23.351166,51.61389,4.653 2193,494.46896,230.47966,236.11783,510.83868,4.638 2193,84.743484,199.39365,39.684013,89.063934,4.6 2193,491.0136,-181.44208,234.70392,423.90732,4.551 2193,487.05154,3.7577019,22.975555,46.23101,4.548 2193,537.97107,188.57448,21.147339,55.979782,4.526 2193,585.7064,-102.37399,75.67206,235.72966,4.511 2193,386.1189,231.57246,21.878082,37.362595,4.458 2193,100.40048,202.1558,38.19812,86.08687,4.454 2193,-70.69109,-188.73013,212.76953,455.55164,4.406 2193,-36.812103,-131.21892,116.90886,288.56805,4.352 2193,483.43707,232.4247,36.977417,77.44844,4.318 2193,619.0514,-18.573196,18.204102,44.527992,4.245 2193,-0.59669495,229.1582,26.769716,59.98871,4.235 2193,68.850174,185.87126,40.131012,88.948746,4.206 2193,582.8428,227.79514,37.52716,93.545654,4.188 2193,618.8191,165.30005,20.585571,48.944794,4.168 2193,256.66156,227.96686,21.337769,32.515564,4.133 2193,50.915443,195.66376,41.02909,94.58966,3.96 2193,12.867081,192.78064,51.747627,118.052,3.918 2193,-9.821801,-7.4627113,40.0181,102.96278,3.918 2193,378.33743,235.9331,23.28897,38.046387,3.917 2193,474.272,229.84186,30.611847,66.944336,3.891 2193,521.46924,200.03711,55.975708,111.1084,3.882 2193,532.7179,196.63359,29.567871,73.11995,3.88 2194,597.6594,219.93561,33.680176,103.42706,90.358 2194,517.6964,226.95845,32.13031,88.81233,68.28 2194,406.8768,221.3499,22.003082,44.37938,10.97 2194,-5.3917594,-17.01188,17.29746,41.928005,7.21 2194,589.6924,213.47977,28.895264,89.1741,7.109 2194,-10.884781,-31.632486,29.539753,72.67527,6.026 2194,623.2123,-33.623505,26.78595,74.39889,5.822 2194,627.2355,-19.54615,17.692993,46.882687,5.771 2194,-8.673167,464.28882,37.512516,93.302185,5.717 2194,-6.228104,489.53137,18.751554,41.841675,5.695 2194,626.673,488.04428,20.51178,45.964203,5.402 2194,612.90063,455.15616,39.497314,107.11752,5.294 2194,-12.07752,478.30746,30.099895,62.53116,5.226 2194,-72.99638,265.48352,201.36168,462.56018,5.209 2194,505.6391,235.93347,29.410767,73.828674,5.198 2194,526.63806,223.77368,32.381104,70.63568,5.181 2194,583.0454,412.99084,71.53131,175.07104,5.166 2194,-17.327341,-63.164154,56.118027,146.74406,5.104 2194,29.175854,158.6497,34.386692,83.28792,5.078 2194,602.9428,-55.51989,53.082947,135.35294,5.073 2194,415.13727,220.61101,23.651337,45.228165,5.049 2194,551.8544,218.31409,36.088135,82.38422,4.98 2194,536.4994,309.85526,143.85913,341.5964,4.882 2194,-21.538296,402.50284,79.08995,175.40854,4.835 2194,132.8853,206.77248,30.300354,61.62578,4.718 2194,616.4362,218.74573,21.933533,57.374176,4.684 2194,494.0326,230.34268,236.81628,511.64523,4.492 2194,566.1814,-0.62444115,27.951233,62.304565,4.492 2194,585.76715,-104.71464,75.87677,240.65561,4.439 2194,2.8691912,-14.897732,16.399456,38.82821,4.438 2194,490.7585,-181.48056,235.13345,423.4203,4.346 2194,-70.630196,-188.1087,212.62296,454.81976,4.343 2194,-37.18568,-131.55879,117.13687,291.43137,4.323 2194,2.8961706,243.07808,22.675022,45.939194,4.316 2194,564.42834,224.14978,35.862793,93.52356,4.273 2194,11.004761,183.2073,54.834793,119.75339,4.261 2194,491.8623,-13.417473,29.953613,75.92977,4.26 2194,4.0925703,226.64258,37.84991,94.954346,4.2 2194,471.0553,-15.169189,28.823822,68.28621,4.171 2194,70.10858,183.87234,38.94246,92.16739,4.165 2194,600.23065,177.25015,49.854736,127.466736,4.106 2194,471.5841,223.10661,35.34671,83.79793,4.083 2194,608.2955,231.31061,35.382385,105.887695,4.06 2194,86.47571,184.24747,36.745804,92.99069,4.034 2194,53.15705,170.43365,39.948845,94.089264,3.934 2194,429.80664,-3.4055367,28.210052,74.109055,3.891 2195,613.10205,240.77815,27.053589,103.41414,11.434 2195,-5.30503,-17.507467,17.208961,42.663136,7.764 2195,-10.713272,-32.328644,29.47952,72.699524,6.481 2195,426.91614,225.22293,18.333038,33.305023,6.36 2195,536.9812,213.95058,18.661499,30.535095,6.348 2195,622.83606,-33.52942,26.797424,75.5946,6.183 2195,532.8496,214.83832,28.888794,60.633087,6.161 2195,91.22281,213.87773,31.76059,63.62291,6.097 2195,-6.28382,489.20358,18.912504,42.151215,5.988 2195,67.69655,202.83731,39.997353,85.96225,5.638 2195,626.72687,488.08862,20.394592,46.262817,5.606 2195,627.1306,-17.296099,17.012451,46.02359,5.541 2195,-8.772455,464.42648,37.557167,92.45468,5.465 2195,451.52338,242.78503,21.312286,41.84253,5.421 2195,-73.285515,265.0523,201.97513,462.9768,5.231 2195,517.6307,211.58057,39.49347,95.802734,5.094 2195,-2.293532,169.45653,28.115019,75.04706,5.088 2195,-17.206758,-63.949627,56.019936,147.65623,5.064 2195,602.68134,-56.05548,53.486572,138.90271,5.04 2195,583.1142,411.1866,71.523315,177.50937,4.936 2195,52.294945,204.83438,40.478355,87.222626,4.875 2195,-21.616526,402.19217,79.414,175.57217,4.868 2195,536.908,310.25696,143.11243,341.34326,4.858 2195,612.74036,455.4584,39.69586,106.235504,4.858 2195,30.711317,202.04431,50.47499,117.72778,4.634 2195,290.1084,235.47626,21.564636,34.292603,4.615 2195,439.52042,84.98082,21.742981,52.473755,4.597 2195,547.64386,213.64862,39.198486,98.18323,4.593 2195,493.499,227.81854,237.08633,514.04956,4.584 2195,125.42424,234.33511,34.431778,58.111694,4.566 2195,14.842286,178.56937,51.824028,120.7222,4.54 2195,623.2231,130.6842,23.52118,72.941055,4.517 2195,3.4047663,-15.546564,15.921753,39.33858,4.5 2195,585.6774,-104.503815,76.67523,238.82654,4.442 2195,490.2933,-181.78694,235.67532,425.33188,4.42 2195,-70.869934,-188.24463,212.08,454.26678,4.36 2195,242.07909,233.81026,18.436874,35.566635,4.355 2195,-5.2696695,196.09909,17.759274,47.000076,4.308 2195,-37.373955,-130.37476,116.68556,287.01102,4.288 2195,620.64496,138.37953,18.695984,48.181458,4.233 2195,38.69599,201.70976,29.183205,63.727005,4.214 2195,619.36896,-15.997341,16.866272,41.49261,4.201 2195,276.87097,201.91,39.927917,73.608185,4.175 2195,585.54144,242.64563,34.7052,104.00195,4.12 2195,56.686764,205.37474,21.846775,46.423386,4.052 2195,613.4762,289.33237,26.408691,80.593414,3.98 2195,11.177821,221.58429,54.428608,128.43854,3.94 2195,614.1612,-19.456532,27.788635,71.9344,3.934 2195,99.93705,200.49149,39.11489,86.89139,3.932 2195,78.17435,187.91747,49.888535,110.45064,3.906 2195,288.01233,219.4901,23.914642,38.480972,3.887 2195,589.42206,176.33664,57.215393,204.41858,3.885 2195,501.48083,212.45995,38.378235,95.88997,3.847 2195,260.73633,205.48152,40.85736,70.2625,3.836 2195,515.18274,-17.41139,31.804443,76.705345,3.83 2195,532.2621,218.8142,40.75934,103.87013,3.819 2195,243.50143,216.37096,42.026672,69.55327,3.803 2195,210.2081,214.10701,44.112106,70.61214,3.79 2195,433.34415,229.91777,18.015778,34.668564,3.781 2195,611.624,-13.3271675,16.522095,37.641502,3.766 2195,233.60876,229.87303,21.087753,35.308517,3.742 2195,398.13492,76.6985,27.703278,107.032,3.742 2195,292.30728,202.11824,39.857697,74.13704,3.736 2195,451.0167,218.68817,39.000153,79.23065,3.723 2196,588.4641,215.5834,27.777832,53.890778,49.639 2196,-5.4740744,-16.74993,17.28513,41.12623,7.807 2196,55.65152,200.54517,25.113022,47.67131,7.187 2196,51.401886,193.40475,43.15959,102.73343,6.737 2196,-11.090904,-31.595633,29.555635,70.50651,6.705 2196,2.6110065,192.4919,38.21479,101.572495,6.354 2196,413.41782,86.93378,28.154694,90.591705,6.101 2196,454.73782,26.644932,25.243225,87.17822,6.034 2196,603.0669,-55.51709,52.512573,140.1331,5.946 2196,580.08325,193.08444,40.956726,81.306305,5.925 2196,2.3795843,190.25656,18.442963,51.67926,5.79 2196,594.52344,206.52982,35.5755,89.1832,5.703 2196,34.86304,201.22426,44.67023,102.28722,5.554 2196,-6.31871,488.90176,19.004154,42.86563,5.465 2196,-8.854321,464.26373,37.69837,92.999084,5.426 2196,3.8344355,-14.33004,15.4794,36.51101,5.409 2196,63.17245,183.264,51.129368,118.030426,5.28 2196,612.9722,454.37003,39.383118,108.18039,5.279 2196,367.62317,211.71883,22.06305,43.878525,5.266 2196,-73.25383,265.64227,201.7012,461.906,5.233 2196,11.239597,192.47908,53.766872,120.84569,5.214 2196,626.50354,487.66406,20.679138,46.418457,5.117 2196,-2.74032,187.42981,16.869377,45.81859,5.025 2196,583.10767,411.73404,71.83563,176.48788,4.941 2196,-16.827759,-63.184494,55.805805,144.76315,4.902 2196,-21.48333,402.3776,79.14127,175.36752,4.889 2196,627.47266,-18.435211,16.820862,47.64604,4.852 2196,536.16284,310.40826,143.7685,340.9737,4.797 2196,88.74694,200.18881,24.547043,51.333298,4.757 2196,-14.250448,204.50816,48.958267,140.62892,4.621 2196,-71.14232,-188.44202,212.81325,455.41623,4.588 2196,580.7063,214.40192,23.627075,47.214355,4.566 2196,4.1893206,231.19173,38.964626,101.27043,4.544 2196,493.71344,228.31558,237.20728,513.40137,4.539 2196,623.0504,-34.01388,26.097778,76.409355,4.468 2196,558.7119,200.75523,27.461914,59.67195,4.338 2196,490.05325,-181.10622,235.34946,422.89456,4.328 2196,34.058334,202.06192,22.797516,44.132645,4.326 2196,83.11288,187.42805,39.25924,94.237045,4.301 2196,-37.733856,-129.78677,116.79973,287.0485,4.294 2196,585.74384,-104.38757,76.318054,239.56331,4.257 2196,68.61572,191.37697,29.534988,59.013687,4.208 2196,-4.508345,201.74083,17.705225,48.78418,4.191 2196,620.0854,46.769867,16.66925,39.01828,4.125 2196,623.63513,37.557648,24.929382,68.10321,4.078 2196,569.5344,213.8645,22.471436,44.221893,4.057 2196,11.264353,-13.690207,15.591221,34.994297,4.036 2196,491.88766,239.15788,18.71701,32.01033,4.033 2196,627.62714,39.137226,16.153137,40.55218,4.015 2196,579.966,224.20209,41.905457,111.82031,3.966 2196,-6.4057837,174.20432,36.18242,98.84891,3.932 2197,406.64426,89.18152,27.568237,89.1196,8.691 2197,-5.160594,-16.46582,16.960232,40.48675,8.395 2197,368.51956,234.78593,24.31549,43.574448,7.276 2197,613.3888,451.12143,39.4328,111.44028,7.264 2197,609.02576,399.5708,29.897156,72.873505,7.263 2197,0.84460616,187.28883,26.776888,69.53105,7.081 2197,602.315,-57.18963,53.635254,140.61244,6.859 2197,627.7465,-17.944176,16.52472,47.62813,6.589 2197,292.5821,195.29395,26.402527,63.12082,6.467 2197,-11.015383,-32.012363,29.153473,72.58441,6.11 2197,3.4276295,-14.229652,15.9126,37.503006,6.105 2197,2.804923,187.44699,40.299545,105.13019,5.855 2197,49.949703,193.60445,35.454845,76.11278,5.799 2197,-12.177201,478.0808,30.409485,62.726196,5.558 2197,561.96716,275.36035,23.68097,52.4028,5.556 2197,-6.1946864,489.35678,18.893103,42.2247,5.501 2197,-73.35502,265.56747,201.8757,462.54202,5.197 2197,626.3801,487.1924,20.845947,46.327423,5.156 2197,455.0434,30.577564,26.270966,100.90047,5.118 2197,415.486,98.75854,22.161743,62.583855,5.048 2197,623.7598,-34.129745,25.626038,77.11139,5.029 2197,583.4938,408.95926,70.73993,178.13931,4.899 2197,-21.74723,402.0711,79.63153,175.49365,4.882 2197,-16.85691,-63.706978,55.467094,146.58963,4.835 2197,421.86978,102.57944,26.252747,74.91965,4.827 2197,300.44467,198.2178,29.300201,68.36752,4.753 2197,35.919876,175.40326,41.54029,81.25787,4.727 2197,-5.142283,199.16374,19.991316,50.566406,4.672 2197,536.3845,310.4126,143.35333,341.36877,4.595 2197,17.791435,186.68307,44.668633,98.354706,4.572 2197,243.5957,215.5473,31.587372,54.585144,4.556 2197,-37.399677,-130.63504,117.073456,287.9614,4.491 2197,277.82672,199.72537,31.039185,61.72705,4.472 2197,620.5285,400.8999,28.795593,73.703766,4.46 2197,493.24194,227.30093,237.68103,515.5199,4.389 2197,585.5366,-104.23859,76.770386,240.08792,4.358 2197,619.1724,43.845287,17.867493,41.198627,4.346 2197,-71.011536,-188.70929,212.34912,455.89462,4.339 2197,64.986664,181.36981,43.03871,96.462585,4.33 2197,489.43588,-180.20868,236.23209,422.45215,4.282 2197,43.845272,177.00024,54.54526,120.98181,4.272 2197,47.36283,194.513,26.40371,49.265106,4.256 2197,130.2348,197.92303,41.371567,84.01474,4.173 2197,81.444786,193.81818,44.267006,92.06427,4.083 2197,243.78558,231.07161,34.719025,66.996506,4.06 2197,604.0617,367.36505,32.684753,76.05386,4.054 2197,596.8563,455.44867,39.93341,105.84235,4.026 2197,161.99442,204.10533,40.532593,79.28456,4.016 2197,94.01587,181.18506,52.30197,118.31113,3.957 2197,147.6477,203.53871,31.440247,58.694046,3.957 2197,627.39734,37.786003,16.44336,40.211235,3.951 2197,125.47052,175.59053,28.889847,69.98387,3.945 2197,522.3142,242.75006,31.83551,59.283875,3.876 2197,370.41925,233.86307,31.480133,73.8374,3.863 2197,10.379526,-16.310516,16.780962,39.45974,3.843 2198,-5.0959644,-17.163784,17.155071,41.60245,8.29 2198,398.6313,99.28401,27.195099,89.00523,7.395 2198,116.13574,195.86115,41.434525,87.256805,7.051 2198,3.6585426,-14.887806,16.115429,38.349174,7.012 2198,-11.1395445,-32.49892,29.319775,70.455475,6.415 2198,446.86386,16.44794,26.751373,91.09462,6.388 2198,169.0554,233.07057,22.549835,36.546646,6.161 2198,362.09583,229.62885,21.512238,41.84552,6.053 2198,627.6691,-17.721098,16.703552,47.532845,5.935 2198,68.067345,205.90073,30.062141,62.883698,5.748 2198,101.007904,194.30867,40.199707,88.16362,5.726 2198,236.58392,212.53027,31.688965,62.576355,5.674 2198,-6.4304895,489.13123,19.093529,42.757812,5.559 2198,611.5313,-50.107635,40.69159,105.45296,5.524 2198,-8.952088,464.0139,37.780853,93.58261,5.404 2198,11.2181835,-14.7269125,16.200987,36.91885,5.359 2198,130.70131,196.57346,41.22,79.3425,5.353 2198,-17.226534,-64.11063,56.062904,143.93114,5.307 2198,621.8827,477.1872,28.820557,67.69995,5.299 2198,354.07974,221.32307,20.2247,36.55217,5.287 2198,174.70596,229.27748,28.815033,53.132187,5.272 2198,156.88141,196.99438,53.42949,113.70834,5.267 2198,303.4244,245.90219,21.417084,39.37213,5.226 2198,260.66455,206.00476,30.819336,66.698395,5.222 2198,581.6172,210.52444,28.310974,57.782104,5.187 2198,369.20285,224.77771,21.809418,37.009033,5.128 2198,-73.283676,266.02924,201.43776,461.7835,5.123 2198,582.9313,412.5161,71.719666,175.58258,5.075 2198,536.48157,310.07013,143.66974,340.96802,4.939 2198,211.99509,204.48047,39.731934,89.63394,4.913 2198,450.4629,43.395123,28.222229,83.29672,4.909 2198,462.13577,240.54904,23.898804,49.579742,4.87 2198,-21.663708,402.20984,79.41269,175.48438,4.835 2198,121.734505,201.2983,22.252708,43.326263,4.828 2198,3.2015543,5.649437,17.954536,36.142765,4.825 2198,49.884716,197.76553,42.704624,87.82919,4.818 2198,178.13419,207.85107,42.34436,84.32385,4.742 2198,278.33533,207.1378,27.566193,69.733505,4.74 2198,84.34395,186.0475,41.5558,78.91441,4.689 2198,156.02335,220.96385,30.640564,52.75563,4.68 2198,145.63524,202.15501,43.32556,84.456375,4.669 2198,195.00948,206.01947,40.472107,86.614105,4.662 2198,245.69455,203.05136,37.69458,89.55856,4.596 2198,-37.14171,-130.68376,116.78466,286.02997,4.57 2198,113.088394,200.91373,23.29393,51.470276,4.559 2198,365.55804,231.08127,27.85846,55.908752,4.545 2198,494.23706,227.49829,236.30139,513.6711,4.523 2198,287.04816,228.41733,29.512146,66.70953,4.512 2198,60.31063,194.72643,52.12166,123.234024,4.508 2198,288.9439,215.9326,20.950104,41.98384,4.471 2198,11.861382,194.18292,54.361015,124.41095,4.452 2198,223.82593,192.44908,49.45407,118.91231,4.42 2198,585.8567,-103.57342,76.19995,237.64896,4.412 2198,34.033157,195.35895,42.853775,91.41052,4.351 2198,597.77136,188.87234,36.34778,90.56268,4.349 2198,489.74884,-180.9213,235.9029,423.1236,4.315 2198,563.5584,215.32524,43.091064,73.97893,4.308 2198,575.5183,191.38025,49.67517,111.091675,4.308 2198,-70.78288,-188.30649,212.2045,455.94482,4.294 2198,128.36847,206.78488,22.8983,41.79457,4.274 2198,27.915264,-11.874615,15.138561,35.08085,4.229 2198,35.406994,-11.514034,15.453403,34.3739,4.143 2199,86.59323,193.27328,30.458176,68.088715,8.145 2199,388.9456,101.45578,27.097015,87.24365,7.193 2199,99.634514,202.24486,30.541588,61.09349,6.948 2199,-5.4749055,-15.562382,17.049994,40.35022,6.813 2199,602.5377,-56.854958,53.321045,140.1278,6.342 2199,627.33356,-17.532944,16.662537,47.37494,6.159 2199,96.70811,200.63686,21.705978,46.81462,6.096 2199,434.88132,52.163338,28.637787,82.94576,5.932 2199,-12.60417,-41.29858,41.620537,101.22963,5.8 2199,-6.116519,489.74115,18.64634,41.45404,5.772 2199,623.25616,-33.646263,26.05774,77.16128,5.75 2199,-11.950523,478.4864,30.172367,62.840576,5.67 2199,27.953741,189.48936,51.9349,125.25392,5.575 2199,196.70128,223.75877,31.277847,64.2935,5.393 2199,229.91583,224.97745,30.079315,74.33673,5.389 2199,612.7626,454.9233,39.682983,107.02017,5.229 2199,59.29085,189.11713,55.117336,126.61969,5.221 2199,626.7923,488.0078,20.228333,46.15448,5.214 2199,444.15662,238.47865,28.060211,47.167862,5.149 2199,254.32355,252.74976,27.91864,69.61029,5.09 2199,161.34341,226.57838,33.380325,62.868027,5.079 2199,239.70285,239.02681,29.966156,72.372116,5.062 2199,582.873,412.93073,71.80542,175.17023,5.045 2199,-73.44719,265.71457,201.38007,461.64188,4.965 2199,536.48004,310.20523,143.66766,340.97263,4.901 2199,595.4156,-47.96715,42.782776,103.49779,4.88 2199,34.916325,199.80592,30.952068,68.251144,4.879 2199,-21.871479,401.14172,79.5782,176.86145,4.853 2199,105.371216,200.98903,19.924995,37.290665,4.838 2199,69.824455,182.36494,39.310028,87.61748,4.723 2199,213.32312,209.24509,37.29132,84.959564,4.639 2199,17.439451,193.51895,41.984062,96.46011,4.635 2199,130.85959,228.24745,32.54532,59.489273,4.629 2199,4.961312,193.76193,37.741364,102.45047,4.612 2199,91.57024,188.84964,55.178436,130.24313,4.57 2199,-5.0322857,228.90869,17.071255,44.640564,4.542 2199,494.31525,227.62064,236.44281,513.98926,4.494 2199,3.0357118,-13.217521,16.285255,37.30022,4.443 2199,-37.17551,-130.87076,116.94725,285.57596,4.412 2199,245.46927,213.27625,37.01831,80.36124,4.379 2199,-19.330132,-90.68125,70.95917,201.02377,4.373 2199,80.5591,179.12206,50.528275,104.7625,4.361 2199,585.821,-104.34416,76.33685,239.3918,4.359 2199,585.71344,288.65167,29.854736,69.53186,4.336 2199,-70.97746,-188.58824,212.44955,456.24146,4.331 2199,52.4291,181.24551,39.131577,100.23697,4.296 2199,489.65338,-180.65744,236.0329,423.09988,4.273 2199,598.55865,188.90323,37.101624,90.27518,4.168 2199,192.439,206.77193,48.43051,120.00871,4.145 2199,223.076,223.55157,25.349014,52.865356,4.143 2199,114.89051,198.97864,40.74273,82.28244,4.129 2199,121.610535,252.93707,58.65901,126.84918,4.094 2199,90.28367,193.32542,21.713715,39.13286,4.068 2199,122.60781,210.05722,19.555244,40.81723,4.038 2199,266.7854,253.96367,30.380646,66.354416,3.925 2199,420.27075,225.18301,29.740662,64.90903,3.904 2200,382.07404,94.45191,26.11499,89.02819,8.232 2200,440.74008,239.16132,23.184967,47.108154,8.154 2200,188.65111,226.5108,30.816666,59.863342,6.387 2200,-6.2820644,489.15482,18.987652,42.38913,6.021 2200,627.3034,-17.808857,16.67157,47.558086,5.993 2200,197.14821,212.27716,36.946625,80.49487,5.96 2200,-12.191418,477.54263,30.377514,63.7211,5.828 2200,611.75903,-49.935143,40.426758,105.01014,5.808 2200,-17.896051,-64.42765,56.21142,146.59464,5.75 2200,229.76035,215.40872,36.37143,81.69122,5.694 2200,221.87294,228.9436,30.691086,74.88318,5.555 2200,-5.5944004,-16.532967,17.550377,42.806553,5.547 2200,151.7311,231.3289,36.090332,64.37608,5.535 2200,82.509926,194.41772,41.67865,79.47113,5.485 2200,417.68958,238.48909,22.30832,50.782578,5.453 2200,613.07166,454.35614,39.284607,107.6532,5.193 2200,582.96045,411.99966,71.754395,176.31693,5.069 2200,66.61511,184.24353,42.992165,83.93533,5.036 2200,426.9786,60.930103,28.543274,72.24733,4.979 2200,-73.11354,265.6106,200.94746,461.4984,4.942 2200,536.5612,309.98367,143.50641,341.0294,4.92 2200,58.294685,190.75415,56.989548,131.45612,4.89 2200,-22.072216,400.21582,79.768616,177.66626,4.834 2200,167.32736,229.09933,26.35608,41.50009,4.81 2200,626.6646,487.67365,20.477112,46.598328,4.809 2200,24.440214,199.3985,33.4646,65.745544,4.79 2200,251.64236,249.34305,29.533783,66.104126,4.781 2200,-10.622711,-33.312366,29.811764,76.67736,4.693 2200,98.6665,198.96063,42.608894,74.955505,4.662 2200,163.6364,202.97878,41.09175,77.61769,4.632 2200,46.292057,174.22539,53.688488,109.358505,4.59 2200,428.82443,237.59665,30.07312,59.657654,4.575 2200,365.69592,91.068115,29.725708,103.33136,4.567 2200,90.37561,198.62843,56.756836,126.02232,4.525 2200,-37.11936,-131.19188,117.20655,286.4301,4.514 2200,494.17987,228.06033,236.57953,513.5541,4.504 2200,191.21304,207.22626,51.509644,135.46289,4.483 2200,585.8237,-103.890976,76.26819,238.84639,4.469 2200,27.658232,189.7207,53.447456,130.46649,4.462 2200,329.56903,235.3209,22.782837,38.90236,4.435 2200,489.7839,-180.45578,235.95511,423.18875,4.36 2200,138.71857,233.03366,32.74585,59.01877,4.343 2200,88.68748,212.88055,24.46914,44.16324,4.272 2200,-70.884514,-188.30087,212.33658,455.5239,4.239 2200,114.83581,227.99074,31.742043,58.175278,4.239 2200,175.1192,210.87444,50.516327,114.99043,4.221 2200,244.91159,216.27931,36.950073,82.20128,4.142 2200,239.55463,250.42007,27.735382,67.75183,4.105 2200,-4.2460303,232.0017,15.885227,42.906693,4.025 2200,336.35187,218.88689,21.609802,39.153336,4.016 2200,233.80093,230.65771,21.49678,48.671448,4.005 2200,413.6952,61.728523,29.990295,80.85467,3.989 2200,522.892,249.42886,33.0224,61.434265,3.989 2200,329.42746,214.51901,21.021576,39.28073,3.91 2200,183.63309,231.20059,25.739716,43.454803,3.882 2200,290.49786,233.0555,19.714874,28.757248,3.866 2200,-4.8373184,42.070908,17.231949,42.392075,3.859 2200,13.060682,173.82535,52.707146,125.26807,3.824 2200,426.3446,18.240417,27.054626,79.142426,3.785 2201,238.78908,257.36652,28.837814,61.51651,12.537 2201,372.76715,103.19756,27.10492,83.520454,8.209 2201,-5.63031,-17.690456,17.872034,43.304165,7.01 2201,143.84428,228.68518,34.97484,66.11804,6.504 2201,179.55481,225.69499,32.664597,62.984634,6.289 2201,627.35614,-17.604496,16.6026,47.780167,6.165 2201,611.7083,-50.299755,40.498047,105.6334,5.838 2201,162.04529,227.60695,33.53813,58.966324,5.833 2201,-6.0099845,488.9868,18.62824,42.593414,5.664 2201,196.88736,212.42587,37.766846,82.84299,5.626 2201,328.52454,220.70663,21.591888,37.92038,5.62 2201,-11.108403,-32.230846,29.760681,73.52511,5.566 2201,621.79236,477.86447,28.940674,66.74484,5.502 2201,228.98874,216.3881,37.272614,84.070724,5.337 2201,-17.709108,-63.9646,55.804947,145.6523,5.324 2201,77.34407,216.95468,31.900848,56.10077,5.284 2201,-11.91051,477.40033,30.02074,63.733643,5.271 2201,225.67412,256.67273,28.742203,65.675964,5.248 2201,438.50922,242.90569,23.71582,44.573135,5.212 2201,583.05054,411.95975,72.260864,176.69333,5.121 2201,89.10739,-14.273097,18.917137,40.05261,4.974 2201,-73.081726,265.79657,200.83937,461.52716,4.969 2201,-22.411331,399.73474,80.087135,177.82263,4.894 2201,213.55307,215.10638,37.90857,81.5672,4.838 2201,97.318565,228.61159,35.286125,59.16588,4.78 2201,535.6839,311.38177,144.43243,340.0827,4.736 2201,407.30334,68.21202,22.934082,75.879684,4.659 2201,57.9072,196.55637,58.367916,130.13364,4.65 2201,-36.877655,-130.9275,117.17232,284.68185,4.618 2201,17.800566,200.84464,31.592916,67.71008,4.586 2201,131.37946,226.60661,33.26509,63.65602,4.571 2201,493.8009,228.62173,237.15094,512.79395,4.487 2201,585.8248,-104.13867,76.37158,238.94405,4.432 2201,66.10553,188.92584,44.53916,75.069824,4.372 2201,421.93405,20.26268,25.905945,84.43135,4.37 2201,-71.02691,-188.67476,212.47583,455.99268,4.367 2201,489.8294,-180.70297,235.8758,423.59796,4.351 2201,174.89395,212.57593,50.91983,126.2514,4.33 2201,27.154747,193.49132,54.637413,134.76259,4.32 2201,381.86743,97.032745,26.266846,79.89389,4.23 2201,424.1615,64.20057,28.762238,71.518974,4.215 2201,59.620422,202.92923,32.350266,65.270294,4.201 2201,140.56497,206.09567,53.696075,136.63663,4.179 2201,-5.155672,0.46582222,17.610035,44.929955,4.174 2201,189.92313,220.44907,52.74997,140.28778,4.162 2201,90.351685,202.67099,56.150513,127.854065,4.129 2201,505.15448,350.73962,32.45807,75.52768,4.106 2201,485.84552,380.3538,39.87268,81.9353,4.105 2201,174.8416,232.81482,27.037292,45.11499,4.079 2201,524.1356,243.91179,31.83435,57.334335,4.078 2201,580.89575,240.12302,41.364136,101.81995,3.934 2201,-5.146954,231.88611,17.228424,41.754456,3.928 2201,82.443886,200.31248,42.46943,72.084366,3.891 2201,230.17159,247.7472,38.69847,104.871155,3.878 2201,73.2509,231.32198,22.438683,38.576675,3.871 2201,12.310133,179.00157,54.499954,121.25157,3.851 2202,597.3854,216.39476,33.36975,74.99437,59.512 2202,256.0044,220.56735,22.131317,38.970367,7.784 2202,344.02325,234.81717,23.652374,44.161713,7.607 2202,356.82675,229.38257,38.066162,95.52429,7.535 2202,-5.1063633,-15.642252,17.359364,41.387104,7.303 2202,610.2072,203.49493,29.742432,79.20264,7.174 2202,588.7636,212.33221,49.218445,139.09735,6.672 2202,-12.3834915,479.4307,30.220646,61.286224,6.268 2202,39.492775,233.05684,37.717834,65.74254,6.167 2202,-6.357591,489.64673,18.746193,41.100464,6.114 2202,627.31226,-16.922125,16.942139,44.42408,6.048 2202,452.53415,237.80585,31.4393,55.1308,5.865 2202,620.3564,213.52684,28.888855,75.32625,5.857 2202,-17.294937,-64.18713,55.664055,146.8168,5.784 2202,626.6414,487.99493,20.40155,46.179626,5.682 2202,371.1662,229.7293,39.84149,98.39336,5.643 2202,583.0703,215.33453,34.89038,73.94345,5.556 2202,343.1806,228.1513,37.225525,84.50189,5.391 2202,565.8407,214.64937,39.67816,84.064316,5.331 2202,611.2412,-48.339516,41.21118,102.376945,5.329 2202,612.7674,454.94995,39.6131,107.06366,5.198 2202,-10.465287,-32.377155,28.961102,72.020805,5.198 2202,89.84417,227.88724,34.842857,60.17102,5.084 2202,-72.68495,265.35785,200.66434,462.32733,5.04 2202,132.08974,262.531,30.999039,67.64395,5.023 2202,-22.476635,400.1325,79.87843,177.2757,5.019 2202,-9.265306,462.44543,37.971405,94.83508,4.942 2202,496.50323,211.52283,21.79602,47.838562,4.931 2202,582.988,412.05087,71.86621,176.74173,4.927 2202,114.489044,214.68019,43.416016,76.251114,4.925 2202,450.59534,228.63394,41.728455,92.93771,4.835 2202,536.14154,310.74258,143.95184,340.72556,4.773 2202,574.43176,-10.933079,52.44055,124.231,4.77 2202,3.57499,-1.8415852,17.08256,37.84619,4.752 2202,364.95496,236.92896,29.274963,52.06427,4.71 2202,481.79776,229.41095,41.993073,90.45715,4.612 2202,353.5223,13.825588,27.871674,84.49257,4.608 2202,465.6851,231.0236,42.81424,90.08623,4.589 2202,107.92308,233.39233,32.41884,67.90674,4.563 2202,585.90204,-103.62735,75.60687,239.06625,4.526 2202,301.9788,109.970184,26.345917,78.581024,4.508 2202,493.8594,228.63394,237.20432,513.07605,4.495 2202,375.01004,249.12138,25.102692,53.4485,4.465 2202,544.0586,207.84915,51.64264,107.523224,4.464 2202,490.09344,-180.2382,235.60693,423.67734,4.464 2202,93.83302,201.01346,55.225082,105.87692,4.42 2202,-37.1848,-131.37991,117.19933,284.7522,4.397 2202,129.69673,217.71553,43.081512,86.26347,4.395 2202,-0.6670964,228.43703,28.920729,62.86818,4.392 2202,73.021805,231.82346,39.02616,51.095093,4.385 2202,514.777,227.69199,42.348633,91.05301,4.277 2202,340.29865,230.16711,19.847351,30.476105,4.273 2202,324.82425,243.61853,41.71295,95.95007,4.203 2202,387.49445,230.29242,40.08078,96.94678,4.185 2202,413.1912,230.04445,54.291748,125.14635,4.17 2203,492.76108,219.80824,28.632599,63.504562,20.988 2203,497.71106,214.68497,38.82483,86.408264,8.963 2203,140.7315,218.18883,32.720978,56.895004,7.978 2203,-5.513502,-16.743828,17.055468,41.71415,6.635 2203,-11.070303,-31.68113,29.550589,72.9387,6.409 2203,513.66394,224.80666,41.315125,89.050735,6.147 2203,1.5417385,218.42624,30.577593,64.14877,5.545 2203,490.55225,217.94214,56.408447,129.51086,5.392 2203,-9.237982,464.3723,38.069836,92.30713,5.391 2203,-6.180502,488.7855,18.8693,42.87851,5.371 2203,613.0433,454.33493,39.660645,107.97305,5.371 2203,-17.244104,-64.18153,55.24935,150.29231,5.309 2203,-72.94835,266.5573,200.79318,461.65106,5.186 2203,-4.558303,166.94614,16.929523,44.500458,5.155 2203,626.50464,487.5868,20.746582,46.293335,5.046 2203,611.1073,-49.58945,41.49341,103.069145,4.934 2203,-21.642363,402.7582,79.08954,175.22098,4.915 2203,-4.9775596,184.47398,16.720873,42.28116,4.786 2203,536.6205,310.24487,143.01276,340.38904,4.778 2203,582.8623,411.04456,71.92468,177.62378,4.723 2203,3.456469,-13.669796,15.633915,37.774517,4.618 2203,244.35777,4.910858,29.347946,86.83092,4.571 2203,363.40918,240.84889,30.83899,57.73906,4.57 2203,490.30853,-179.02747,235.34454,423.3048,4.537 2203,-10.125402,-5.117607,40.481285,103.21439,4.534 2203,-14.687309,123.10599,49.204475,140.3505,4.486 2203,626.9917,-19.25037,17.502808,49.76166,4.461 2203,586.0249,-103.42463,75.80725,237.33597,4.457 2203,493.54095,228.63391,237.56451,512.48676,4.441 2203,23.853369,220.20729,24.864672,39.13347,4.341 2203,-5.438772,203.17189,17.887093,39.38391,4.339 2203,-15.9547825,188.44592,50.25016,129.81927,4.257 2203,446.59213,203.43677,50.57831,115.11456,4.105 2203,510.06183,222.05045,24.205322,50.235077,4.092 2203,0.4807353,242.0171,22.647373,44.552597,4.08 2203,411.24622,225.66241,18.846619,36.3125,4.055 2203,413.6743,214.91902,52.232635,109.96086,4.029 2203,-9.988881,209.052,29.458977,66.12549,4.015 2203,13.659078,215.34004,31.77245,59.080215,4.007 2203,-37.726814,-130.68732,117.780556,287.78424,4.003 2203,180.87273,223.15706,38.364517,90.257,4.001 2203,-70.067375,-187.00264,211.17767,452.54175,3.988 2203,-4.3890877,138.70862,16.166534,41.926224,3.915 2203,-5.559649,280.35135,18.128258,42.033936,3.905 2203,164.82928,214.81708,39.987946,83.2724,3.876 2203,11.858907,184.32849,54.80891,107.310974,3.854 2203,517.70166,-34.348747,29.703613,70.59959,3.848 2203,197.1952,225.37648,38.282547,89.49638,3.832 2203,1.9268203,266.18683,20.360012,43.21762,3.826 2203,-4.690974,110.03262,17.062561,37.01065,3.806 2203,249.38702,66.31758,21.41098,49.793037,3.77 2203,457.8219,-31.134499,57.990112,122.87886,3.758 2203,126.04984,217.14459,32.35061,63.658173,3.697 2203,-5.9567966,219.0433,18.710163,42.792816,3.66 2203,354.30115,251.9811,35.891693,64.69847,3.601 2203,249.43129,239.37659,20.271011,35.089355,3.578 2203,531.81586,207.7014,33.002502,69.091415,3.571 2203,-4.470735,90.620834,16.380148,37.72194,3.559 2203,348.02136,-15.613319,55.924286,132.13863,3.549 2203,284.05948,215.586,16.128937,28.158813,3.547 2204,581.1813,218.57762,33.91223,65.987076,30.909 2204,591.37524,213.61316,37.052612,90.59314,14.518 2204,516.3158,214.81763,30.309631,63.214233,11.978 2204,277.14944,244.2618,26.51352,48.98082,7.153 2204,-11.623827,-32.03075,30.110962,75.89366,6.778 2204,574.9588,204.74048,50.779297,150.55505,6.571 2204,596.9549,222.87715,26.126648,57.40721,6.531 2204,627.3227,-17.872648,16.956604,46.188587,6.154 2204,149.70496,215.29042,33.329224,69.67018,5.947 2204,247.68631,227.19623,22.138153,36.939972,5.929 2204,-6.3410816,489.2838,18.991463,42.286194,5.729 2204,621.944,477.82007,28.749023,66.98309,5.682 2204,-6.6547017,-17.614292,18.941004,45.33286,5.549 2204,-12.192353,477.3415,30.419456,63.647766,5.508 2204,160.42218,223.14343,33.575623,66.26288,5.429 2204,623.2081,-33.702454,26.199585,75.76178,5.361 2204,-17.641865,-63.113564,56.0181,148.6868,5.344 2204,441.70996,218.9657,19.623688,35.147034,5.307 2204,-72.937836,266.43793,200.90106,461.53967,5.17 2204,611.49524,217.34203,36.603027,108.619125,5.052 2204,491.37476,214.16815,29.49878,70.6886,4.992 2204,-21.500496,403.0595,79.0493,175.02887,4.902 2204,583.12573,412.64508,71.882324,175.86609,4.878 2204,602.89343,-57.018883,53.48993,138.78766,4.816 2204,566.13165,216.31104,41.535706,97.38916,4.783 2204,535.8292,310.84283,144.41486,340.94867,4.74 2204,88.92999,203.91684,22.10524,42.21881,4.659 2204,489.86426,-179.85225,235.50793,423.82245,4.639 2204,498.22983,221.03448,45.987946,86.75745,4.621 2204,319.91824,213.18475,21.107422,33.580048,4.617 2204,493.04764,228.32993,238.3447,513.4343,4.579 2204,1.6583234,-17.126392,17.825188,44.700077,4.572 2204,-4.5292726,121.87363,16.40416,42.358,4.553 2204,239.65637,228.9392,29.21109,57.31392,4.536 2204,546.8207,218.5466,41.62732,90.25464,4.476 2204,-16.653496,189.70164,50.867653,129.20766,4.467 2204,527.2237,216.28024,33.47113,61.22943,4.406 2204,482.2459,225.94078,44.996216,83.21742,4.399 2204,253.37094,1.5263748,31.427002,86.84205,4.36 2204,-8.598981,5.0240784,39.41341,110.16382,4.343 2204,586.1855,-102.19107,75.53595,235.22389,4.332 2204,-5.3454633,152.33487,17.314713,45.45511,4.241 2204,24.413586,223.31653,33.230972,48.451508,4.224 2204,-6.4088316,216.87686,18.996464,43.0968,4.175 2204,-5.9004693,253.03532,18.96956,42.340683,4.102 2204,522.36554,228.08453,32.244507,74.06476,4.092 2204,-37.577316,-131.05457,117.71437,288.13162,4.031 2204,509.5158,207.60977,52.07788,110.483734,3.992 2204,-0.72437406,216.60358,28.056337,66.1517,3.953 2204,503.62766,213.59984,31.155853,61.399246,3.952 2204,-69.96474,-187.20633,211.24518,452.65997,3.935 2204,-3.9337134,-17.213188,30.137339,75.971954,3.925 2204,619.9883,-16.93446,16.240295,42.049942,3.918 2204,61.03302,179.07144,53.94024,109.13977,3.913 2205,365.38608,246.74918,27.282806,49.673035,10.255 2205,-5.467128,-16.92065,17.388643,42.05102,8.154 2205,226.09991,215.94284,28.12706,63.983826,7.146 2205,613.06195,453.22644,39.43811,109.43927,6.349 2205,-11.240252,-32.177593,29.45301,71.37616,5.994 2205,-6.095433,489.5882,18.575863,41.382324,5.51 2205,-8.6682205,464.42105,37.59784,93.15701,5.412 2205,-72.82388,265.39325,201.03293,462.61737,5.302 2205,-12.010922,478.433,30.087048,62.406097,5.277 2205,-17.038006,-65.97529,55.269012,147.94528,5.185 2205,582.55786,412.05023,71.63574,174.8935,5.007 2205,627.28796,-18.757515,17.078003,47.784393,4.983 2205,525.86664,213.68466,28.531067,59.426544,4.978 2205,626.5018,487.44095,20.690063,46.48929,4.977 2205,530.59393,203.3537,20.9823,44.033966,4.968 2205,409.1087,221.22893,22.499756,47.88005,4.967 2205,536.06494,309.74646,144.02753,341.94275,4.956 2205,-21.446154,403.01624,78.93459,175.0105,4.878 2205,493.73956,227.83029,237.16754,515.11523,4.844 2205,329.05853,229.4573,19.902893,35.048584,4.816 2205,611.1132,-49.439106,41.599426,104.00708,4.779 2205,613.19385,222.87569,25.88507,75.91963,4.775 2205,3.1503356,-15.619759,16.333347,39.643456,4.762 2205,615.47174,264.6224,25.141418,73.793274,4.714 2205,489.83734,-180.70615,235.64325,425.78534,4.706 2205,-1.6757643,177.81918,25.553713,73.53792,4.661 2205,209.17075,212.3063,21.897964,43.52133,4.521 2205,215.31439,212.29645,29.293442,59.210785,4.513 2205,-2.0139706,232.91272,27.719095,75.052246,4.429 2205,585.5956,-103.24496,76.308716,236.98694,4.398 2205,389.3622,233.07187,31.9628,56.072266,4.354 2205,372.7323,242.09819,26.191315,42.700027,4.335 2205,10.964926,213.3597,57.338028,112.48195,4.318 2205,408.7506,213.77383,20.63446,34.451935,4.272 2205,83.796844,232.26218,28.325943,36.978394,4.266 2205,623.2594,205.74884,25.236206,71.68298,4.163 2205,69.586845,217.1709,30.58004,55.940277,4.139 2205,292.06702,88.20543,28.724731,80.61438,4.136 2205,481.08398,-12.586683,30.93634,65.3431,4.118 2205,535.3559,220.31323,22.241272,40.46164,4.058 2205,-37.53131,-132.57832,117.53967,290.3282,4.024 2205,611.3154,346.63724,40.599792,112.50421,4.022 2205,-4.5851593,182.76799,18.471344,50.75438,3.987 2205,-14.794739,155.46667,50.171597,139.35602,3.964 2205,-69.96864,-186.79051,211.59837,452.5373,3.963 2205,480.65707,-0.6915226,21.832611,42.119987,3.922 2205,261.60303,213.84451,37.434692,93.89044,3.91 2205,-15.963022,216.58997,50.443237,134.95575,3.837 2205,612.6914,298.44284,40.35968,110.52408,3.83 2205,-10.091391,-6.3400764,40.246143,103.10298,3.83 2205,182.7799,201.6698,36.721573,71.87689,3.802 2205,168.2981,208.04616,21.93422,38.44142,3.797 2205,324.9918,214.62917,37.052307,79.84282,3.762 2205,198.62541,204.91249,36.634567,73.52464,3.734 2205,149.25502,198.77376,39.18341,70.75279,3.727 2205,309.71753,212.55835,36.69455,83.045654,3.714 2205,411.16043,227.99364,30.610992,61.932297,3.704 2205,-5.09591,1.8783283,17.29187,41.953102,3.683 2205,228.82295,220.71297,37.93608,96.93352,3.668 2205,245.6923,206.11319,36.30922,89.96292,3.658 2205,61.589146,202.82503,54.487667,100.22966,3.639 2205,335.83725,228.12135,21.452484,35.63817,3.633 2205,531.5957,201.12936,38.656494,74.580475,3.619 2205,165.81024,206.15778,38.06868,73.02536,3.612 2205,132.34741,199.62968,41.283722,68.830215,3.608 2206,326.2754,76.765785,27.2193,83.9472,8.373 2206,-10.789584,-30.37977,29.172928,68.55038,6.345 2206,-5.7405195,-18.25687,17.834095,43.071175,6.288 2206,627.13135,-18.240726,17.463684,47.62098,5.698 2206,603.2859,-55.42473,52.896057,138.43532,5.572 2206,361.41965,231.96452,21.78952,33.51155,5.568 2206,-12.09593,477.42606,30.1405,63.714325,5.558 2206,623.1577,-33.62579,26.397278,76.168755,5.543 2206,-6.222298,489.45456,18.84725,42.062286,5.365 2206,621.84796,477.929,28.892273,67.03781,5.331 2206,-72.72554,266.24988,200.9102,461.23773,5.187 2206,-16.89782,-64.48706,55.2502,147.61786,5.159 2206,583.1808,411.5689,71.490234,176.62006,5.088 2206,-21.491041,402.86737,78.98001,175.08539,4.86 2206,490.21936,-181.18758,235.469,426.24615,4.707 2206,536.5415,310.82025,143.36334,341.3653,4.693 2206,2.8773153,-16.710306,17.081463,39.786938,4.67 2206,585.6552,-102.74887,75.98999,237.23103,4.599 2206,248.60889,238.12756,22.416443,35.792908,4.521 2206,493.6621,227.04285,237.1217,514.9357,4.493 2206,582.0653,216.40134,37.368958,97.8385,4.334 2206,465.137,209.00157,19.433014,29.894989,4.175 2206,429.042,255.9779,30.141083,67.56708,4.16 2206,377.12845,236.63675,22.790985,41.892,4.13 2206,-37.41261,-131.74428,117.180664,287.5591,4.126 2206,123.86348,185.41539,55.706833,98.91911,4.094 2206,229.44916,231.46516,28.839172,60.97075,4.06 2206,192.67065,228.10854,23.55011,34.560898,4.009 2206,357.17847,1.3305054,28.598206,66.23376,4.002 2206,-70.16089,-187.31422,211.50165,452.528,3.998 2206,533.3729,-31.789988,27.45221,71.54615,3.988 2206,-5.4970984,275.748,19.111523,42.843567,3.973 2206,209.2482,231.92902,22.05896,36.092102,3.972 2206,453.5228,207.58353,37.68521,83.84317,3.949 2206,468.9841,199.28822,37.70749,78.970566,3.934 2206,35.066048,181.6255,42.6873,81.77458,3.923 2206,260.6443,219.0602,37.345886,88.79964,3.919 2206,-9.163357,-6.234783,39.86637,102.56641,3.913 2206,136.0433,223.72258,22.526978,29.69664,3.91 2206,-5.928087,117.379654,19.091967,45.51619,3.897 2206,217.94365,235.24826,21.343475,35.25467,3.875 2206,67.82012,200.66043,41.058395,72.75107,3.865 2206,-4.4907403,252.43173,17.992939,41.365234,3.864 2206,373.2394,216.69379,38.424286,76.311066,3.851 2206,516.0684,-12.236053,15.620972,33.866634,3.84 2206,156.90602,182.49727,53.450912,102.50975,3.837 2206,246.00323,241.71024,27.52649,61.616272,3.8 2206,242.2576,209.07909,19.02713,33.255264,3.776 2206,89.93288,189.17186,57.800415,100.92415,3.742 2206,508.02557,-12.318411,14.602905,32.89398,3.738 2206,595.3573,-47.675514,43.283447,103.523315,3.736 2206,335.7458,89.26064,21.099548,61.181374,3.713 2206,356.30966,232.8697,29.67691,61.79216,3.706 2206,464.8663,220.55054,22.331543,42.347046,3.705 2206,499.54147,181.73863,41.7778,83.153915,3.702 2206,60.647278,110.571686,30.529976,61.243744,3.679 2206,-5.3711786,235.26173,16.588081,39.338974,3.677 2206,388.46616,216.10771,38.516724,76.98509,3.676 2206,368.54294,228.6891,21.556885,32.965195,3.669 2206,51.968136,184.29909,41.919865,79.01842,3.661 2206,2.5271196,278.55847,18.570896,39.470978,3.659 2206,13.2974,180.39676,52.36403,114.9603,3.654 2206,355.11255,225.23724,21.870789,34.14154,3.648 2206,181.40738,218.3178,32.545807,53.016617,3.646 2206,428.11993,-14.133098,14.584045,36.46285,3.632 2206,591.6309,214.89731,24.785095,64.477325,3.626 2206,484.76038,203.7865,37.96228,86.32947,3.553 2206,-8.619621,237.16682,28.089878,70.87547,3.551 2206,537.1863,-2.374155,20.374817,38.389328,3.51 2206,145.95712,199.6961,43.348236,68.65137,3.502 2206,27.65383,103.518974,56.070686,137.99222,3.466 2206,-5.546322,2.8259487,17.590744,40.277046,3.431 2206,619.79803,-17.945648,17.083923,43.600746,3.428 2206,597.9541,223.67975,37.180115,104.92755,3.386 2206,437.3964,210.12823,38.786743,82.298096,3.384 2206,120.26039,226.77556,25.032547,32.692703,3.376 2206,517.726,212.92758,38.16333,94.41928,3.368 2206,11.114084,-26.254871,57.845795,136.24867,3.348 2206,492.9154,-12.199641,14.29541,32.879875,3.334 2206,225.74081,241.65262,21.553802,35.860657,3.324 2207,480.67764,220.09741,22.666534,45.28357,8.914 2207,316.17752,77.710594,28.231598,83.82304,8.688 2207,-5.0323257,-17.55198,17.332703,44.325844,7.236 2207,380.2749,-0.8886337,30.56369,81.437454,6.871 2207,-10.351019,-33.271683,29.380476,75.94447,6.595 2207,-6.0544558,489.4669,18.56249,41.82022,5.937 2207,359.89,235.02986,23.515564,33.01927,5.724 2207,603.1084,-55.760773,52.839172,139.26419,5.596 2207,622.00653,477.6499,28.641663,66.66553,5.529 2207,627.2985,-16.73294,17.01233,45.652153,5.529 2207,-8.741708,463.87796,37.583122,93.40933,5.503 2207,-17.00823,-65.04658,55.46296,147.69838,5.362 2207,169.48373,234.43216,33.347992,57.03119,5.345 2207,622.9029,-33.238388,26.681152,76.3634,5.318 2207,468.7225,210.14297,37.939514,86.81824,5.304 2207,394.10477,263.29062,31.670135,70.33771,5.303 2207,-72.94134,266.2105,201.10583,461.3194,5.212 2207,357.81052,0.7092476,28.281036,68.33496,5.06 2207,482.8305,216.60007,17.482147,30.088623,5.044 2207,583.16016,411.58014,71.4339,176.60089,4.941 2207,585.89197,-101.92363,75.47089,235.42978,4.897 2207,-21.56189,402.93872,79.046326,174.87976,4.876 2207,490.42242,-182.0849,235.64478,426.98047,4.815 2207,376.0453,237.28366,23.654388,35.635345,4.729 2207,483.36728,213.44838,39.993805,93.98161,4.691 2207,536.7609,310.77277,143.37457,340.65857,4.689 2207,3.2123036,-15.530942,16.458136,42.405697,4.671 2207,-15.426483,191.80844,49.656696,128.41629,4.627 2207,23.60065,245.10445,25.3708,47.873734,4.591 2207,619.85956,-16.3824,16.697998,42.072395,4.548 2207,493.9946,227.66528,236.77615,513.6288,4.487 2207,18.269749,200.67871,42.42756,79.02704,4.353 2207,-4.227996,91.9506,17.123035,41.905724,4.296 2207,595.29724,-46.9525,43.156677,102.08809,4.224 2207,302.1602,68.34265,30.367645,92.0336,4.115 2207,0.49689293,-17.630945,25.802698,72.68044,4.108 2207,499.65485,210.76868,39.268616,96.76489,4.098 2207,355.70633,218.19598,41.17325,70.76843,4.079 2207,-37.659153,-131.66028,117.43785,287.6576,4.076 2207,-5.2189875,199.64095,18.043736,44.866074,4.031 2207,33.844418,203.21913,42.87862,75.03319,4.025 2207,491.31696,209.86115,15.336212,26.72876,4.017 2207,-14.864593,119.41452,50.197052,144.7464,4.0 2207,452.74448,221.47893,40.252472,84.92998,3.994 2207,353.16318,-0.29964066,21.815613,55.59877,3.973 2207,516.50903,210.15924,40.44153,95.67706,3.947 2207,380.0829,241.06454,32.74518,71.50815,3.941 2207,-70.05087,-187.48314,211.4337,452.6156,3.934 2207,365.99512,-19.72345,52.53427,126.01703,3.931 2207,-11.647186,221.51932,29.869423,67.38675,3.91 2207,301.86572,207.72525,30.582367,66.56259,3.902 2207,614.8909,-18.007307,27.413452,72.754745,3.872 2207,387.34897,218.61655,42.368805,73.43643,3.853 2207,362.69684,-15.806272,17.362183,45.026943,3.844 2207,90.35718,185.34918,59.780365,100.17023,3.828 2207,368.94232,1.058609,29.105743,78.72735,3.804 2207,123.319046,180.83572,57.78279,103.453,3.784 2207,436.01456,214.28151,40.026672,79.644455,3.726 2207,420.56125,215.36671,40.694397,77.40935,3.726 2207,549.34644,213.04762,40.500732,92.19115,3.696 2207,2.778263,197.2659,40.043694,86.46097,3.685 2207,-4.6489434,173.33397,17.040741,40.392715,3.654 2207,437.88306,286.32153,28.278076,68.42108,3.653 2207,3.4469116,232.39383,38.90945,86.17023,3.64 2207,-3.7953444,1.7650433,17.156193,43.82897,3.604 2207,153.44122,235.8092,34.8434,59.805847,3.602 2207,11.085439,-16.672834,16.835136,42.88914,3.591 2207,395.73053,1.6782227,29.155151,65.10321,3.589 2207,-9.360315,-5.849556,39.62552,101.42632,3.572 2207,-5.1739974,258.74026,17.84836,43.921967,3.566 2207,340.7707,215.71494,40.533997,72.104065,3.543 2207,532.8272,202.88365,39.68805,91.13484,3.512 2207,499.72614,207.99167,15.263916,25.770645,3.498 2207,205.21713,242.78027,27.02121,61.180847,3.493 2208,-4.8807683,-16.502264,16.95164,41.805202,8.512 2208,332.45804,65.51624,27.248627,83.67632,8.211 2208,534.5333,230.54941,23.744934,37.333557,8.017 2208,524.4909,223.67555,33.240112,64.628006,7.676 2208,-10.289651,-31.769873,29.015057,71.981995,7.281 2208,369.28125,256.10797,30.58081,64.34845,6.235 2208,627.1943,-17.691044,17.268982,46.284843,6.091 2208,-4.193197,3.6683998,17.174814,39.611412,5.822 2208,-5.409461,75.800385,17.303562,41.55401,5.489 2208,-6.12664,489.54953,18.703634,42.104095,5.444 2208,-8.873067,464.8459,37.685444,92.443726,5.371 2208,3.7052531,-13.875803,15.8593025,38.515007,5.37 2208,115.11676,233.90355,31.354767,62.47371,5.349 2208,-1.9093502,255.79213,23.726286,46.413834,5.323 2208,626.6733,488.05695,20.43927,46.536682,5.22 2208,-72.66504,266.18152,200.88365,461.77527,5.202 2208,611.119,-48.90074,41.274475,101.5628,5.136 2208,613.00543,454.92023,39.264587,107.08264,5.12 2208,-17.352367,-63.897644,55.618107,146.58067,5.025 2208,583.1086,412.07614,71.58832,176.11087,4.895 2208,209.5635,224.18617,21.455917,44.251205,4.885 2208,-4.5405416,100.08151,17.630054,50.78534,4.871 2208,-21.550875,403.07648,79.12302,174.78448,4.82 2208,3.9095397,5.16292,17.8125,40.296898,4.785 2208,535.98474,309.85614,143.87988,342.00128,4.748 2208,490.38345,-181.47585,234.87277,424.95102,4.508 2208,586.1343,-103.159546,75.724365,236.51949,4.467 2208,181.43643,233.65958,29.071701,58.286316,4.451 2208,493.52646,227.76581,237.18521,514.3843,4.45 2208,91.56311,189.1203,57.280792,101.79022,4.376 2208,522.9729,228.88458,23.121338,43.178284,4.341 2208,130.53787,216.17175,42.460556,74.49963,4.303 2208,102.79332,241.24725,33.292862,58.52069,4.261 2208,-37.570915,-131.9833,117.56353,288.1967,4.161 2208,146.64592,215.75821,42.501083,77.06546,4.151 2208,-6.632758,266.84558,20.161335,43.72754,4.144 2208,195.02753,229.78018,29.587662,60.938293,4.14 2208,536.19836,216.92012,19.765991,29.5419,4.129 2208,531.76416,217.53278,39.344604,99.69293,4.108 2208,598.57623,208.66096,36.747375,103.21617,4.043 2208,581.74603,209.23196,38.395752,102.270966,4.016 2208,356.46103,3.1914368,28.032532,93.261635,3.987 2208,212.82355,211.52557,38.29178,79.34598,3.981 2208,191.03651,243.02051,21.70787,40.658264,3.954 2208,59.23118,188.85239,58.947807,98.52615,3.952 2208,163.77979,214.74136,41.732132,80.00009,3.908 2208,115.19142,200.45459,42.531616,75.3692,3.899 2208,-69.774826,-187.13283,211.0409,452.14783,3.894 2208,404.3628,5.034771,29.105896,95.908264,3.807 2208,129.91385,247.9279,33.28659,57.86342,3.803 2208,197.31433,200.97496,39.096573,79.733505,3.754 2208,-12.456324,257.9815,30.46133,69.63327,3.746 2208,345.3247,214.20894,22.45514,45.740097,3.745 2208,107.65344,214.32935,55.82544,105.97424,3.723 2208,475.3571,229.40942,57.357025,120.43085,3.688 2208,548.42737,215.63745,39.13971,107.28253,3.68 2208,9.657698,187.52948,59.12004,104.17029,3.661 2208,413.2971,-8.736866,51.610718,126.005295,3.637 2208,483.8465,221.20453,41.177185,69.52814,3.634 2208,499.3,227.16156,43.069458,88.90576,3.625 2208,32.967793,199.45708,44.816586,68.769516,3.619 2208,176.80212,201.53485,49.611145,108.046844,3.618 2208,515.1825,230.16495,44.297913,100.54208,3.617 2208,380.1849,236.28413,19.69516,30.926895,3.609 2208,488.42776,268.96948,25.922455,46.65576,3.58 2208,154.72998,169.957,17.263855,33.222366,3.534 2208,-8.72289,88.72897,27.677967,75.12027,3.525 2209,346.61502,60.70825,29.11267,89.872406,8.163 2209,-5.2929916,-16.662622,16.994274,41.549545,7.19 2209,613.1338,450.3092,39.61316,113.08472,6.878 2209,200.93442,231.43378,22.096008,41.828003,6.391 2209,541.66864,242.83551,26.147827,46.77417,6.081 2209,626.91846,486.47574,20.161377,47.141083,5.882 2209,-11.070856,-32.666485,29.741163,71.56691,5.741 2209,183.46803,225.128,21.535538,37.28279,5.718 2209,-8.848095,464.63297,37.69925,92.83255,5.471 2209,-6.1415615,489.7978,18.813202,41.54358,5.429 2209,627.3661,-18.390667,16.932495,46.952534,5.417 2209,623.1991,-34.005615,26.23053,75.76458,5.196 2209,-72.74881,265.80057,200.85222,461.89548,5.124 2209,221.63174,208.45766,27.194885,58.12944,5.105 2209,-6.01687,296.79123,18.344177,41.081757,4.914 2209,-17.193892,-64.541145,55.550255,148.06993,4.914 2209,-21.607834,402.28528,79.374954,175.6325,4.866 2209,582.8274,411.1354,71.62915,175.90439,4.833 2209,398.29636,-6.069908,27.611298,79.35602,4.766 2209,602.7998,-56.62046,53.715576,140.10887,4.765 2209,-4.7122774,171.4678,16.557816,40.984695,4.758 2209,536.4727,310.22388,143.4693,340.82715,4.751 2209,585.4217,-103.53028,76.57831,238.07632,4.596 2209,493.87408,227.9509,237.20612,515.131,4.538 2209,130.75664,201.79324,41.742874,77.5358,4.466 2209,196.8276,204.56758,38.843567,73.47539,4.438 2209,3.9834511,-15.064128,15.721829,39.273846,4.422 2209,180.86005,201.49931,37.739227,72.33394,4.414 2209,489.6027,-179.72415,235.81229,424.50992,4.388 2209,333.93134,51.810886,30.45166,94.55731,4.322 2209,434.36688,-15.40749,32.249603,80.06903,4.317 2209,599.07324,224.8628,34.652832,95.74664,4.288 2209,376.1928,211.52438,23.21054,46.759827,4.193 2209,-37.66278,-131.38033,117.765625,287.12683,4.156 2209,214.47125,221.38576,28.506775,58.371384,4.144 2209,166.51796,199.49457,37.735,70.78638,4.136 2209,-11.004717,269.36127,29.508188,72.46338,4.134 2209,547.0956,227.75519,38.889038,91.276855,4.134 2209,381.1167,0.39471436,28.8302,87.72233,4.065 2209,372.55203,199.89462,38.600677,94.025635,4.039 2209,148.1024,204.26724,41.127472,73.745636,4.037 2209,1.5773249,264.69922,26.974945,77.32007,4.035 2209,357.248,198.77193,38.25482,95.94493,4.017 2209,505.6273,2.5249023,21.983917,30.740913,4.012 2209,360.40652,83.76317,22.315704,58.45244,3.987 2209,531.4211,229.62747,40.235596,90.203674,3.985 2209,583.6003,224.69482,36.066223,94.61554,3.922 2209,-5.463854,90.0131,17.615627,44.292,3.919 2209,226.88342,211.6045,38.324646,74.274124,3.903 2209,388.22577,201.44505,38.188263,92.692825,3.896 2209,29.059624,180.3594,52.563744,116.3819,3.878 2209,-12.270697,297.7528,29.530855,65.83948,3.855 2209,423.3191,-7.900299,29.430908,85.58416,3.828 2209,618.49603,487.1162,20.986328,44.589355,3.828 2209,116.45698,193.03062,40.68476,76.09248,3.822 2209,62.392853,177.63873,53.20836,115.27661,3.763 2209,-69.87814,-187.49641,210.82996,452.05743,3.747 2209,1.1905348,95.90987,20.488768,51.393875,3.723 2209,508.67123,-32.54463,29.692291,70.03385,3.72 2209,258.914,228.71286,33.88925,47.210175,3.718 2209,-14.536852,135.9219,49.76631,143.40915,3.709 2209,138.36852,188.24759,21.369247,40.48047,3.693 2209,159.43625,159.0344,20.987885,42.366974,3.683 2209,565.85406,227.50557,37.82831,90.93028,3.679 2209,-0.4973495,300.88123,28.63899,63.069366,3.676 2209,93.65854,178.32458,53.21431,111.5278,3.672 2209,348.24103,217.5317,32.562073,70.86162,3.669 2209,620.0045,-17.302399,16.216858,41.699005,3.624 2209,193.6029,232.11548,20.35875,36.734924,3.615 2209,-7.2899256,88.419525,37.104565,103.954285,3.607 2209,3.5096037,199.19937,38.893253,96.16617,3.592 2209,208.57246,198.94266,47.834305,102.49881,3.588 2209,459.80014,-0.30265808,18.347748,36.03916,3.583 2209,610.87573,376.62445,39.467896,114.43176,3.555 2210,-5.9091606,-17.273499,17.684689,42.698914,8.088 2210,-11.017912,-33.189648,29.149141,73.78352,6.462 2210,627.13416,-18.423534,17.325562,48.251266,5.941 2210,-6.2203193,489.40192,18.800207,42.7406,5.887 2210,-11.733103,478.846,29.435547,62.238403,5.857 2210,-8.87473,464.0131,37.576485,93.30289,5.385 2210,626.5093,487.6065,20.714844,47.022827,5.337 2210,602.73615,-56.61843,53.672485,141.59363,5.255 2210,623.0869,-33.765404,26.383545,76.9101,5.25 2210,350.47958,50.50702,28.269806,96.87056,5.126 2210,-72.58544,266.08746,200.47836,461.67096,5.109 2210,613.0165,454.5837,39.455322,107.39841,5.043 2210,243.7642,212.039,16.3376,31.98642,4.953 2210,583.12085,411.1208,71.660095,177.46149,4.935 2210,142.20169,243.00554,27.2565,40.162125,4.906 2210,370.47693,241.57628,28.781067,40.937332,4.891 2210,-16.792288,-63.65272,55.17215,146.48126,4.875 2210,536.98236,310.58044,142.96844,340.56757,4.827 2210,-21.662674,402.31375,78.96293,175.17026,4.791 2210,251.03355,213.6845,15.729111,29.138016,4.761 2210,562.62225,-132.59554,113.08087,281.06296,4.617 2210,376.8604,230.4033,34.190735,55.077744,4.598 2210,493.91986,226.4953,236.83667,514.9224,4.441 2210,489.3561,-179.8296,236.22641,424.00235,4.385 2210,431.0473,219.59738,27.68106,58.051086,4.19 2210,451.49048,208.5019,41.72592,88.66521,4.114 2210,-37.703407,-131.02058,117.365166,285.78903,4.096 2210,554.8737,295.56946,28.890442,66.04959,4.047 2210,430.93713,196.50784,52.536987,115.17996,4.042 2210,388.39124,-5.4929504,28.506714,76.388954,4.017 2210,76.68495,201.646,28.54715,57.906036,4.01 2210,412.45923,-5.175396,29.506958,67.57017,4.003 2210,2.6408072,-16.686626,16.767704,41.538498,3.953 2210,446.28207,-2.538723,30.74649,79.59346,3.938 2210,-70.10796,-187.74707,210.8899,452.55716,3.884 2210,484.97852,244.96663,40.748352,92.935776,3.856 2210,161.34146,248.54193,22.063873,37.234436,3.845 2210,354.21527,232.93433,41.96454,69.398254,3.817 2210,500.03357,234.12122,41.43457,91.12842,3.786 2210,234.67253,217.09036,17.427444,35.89824,3.783 2210,387.0961,220.39645,32.43576,57.838318,3.765 2210,457.29443,-0.93828964,30.493988,68.38455,3.759 2210,374.36203,-8.220612,29.741333,85.373856,3.736 2210,-5.453206,212.41301,17.617058,45.13713,3.719 2210,515.88934,250.53448,40.946106,86.035706,3.695 2210,467.2387,208.66391,42.057495,89.46475,3.664 2210,440.27338,221.09671,22.68805,43.194366,3.662 2210,366.02185,46.950237,29.410126,87.747574,3.589 2210,380.25238,206.2401,55.102844,108.15895,3.54 2210,-7.9262266,191.10022,38.535706,90.951935,3.52 2210,612.80554,-2.1520424,36.699707,110.607574,3.518 2210,-5.125776,168.05626,17.861586,47.180847,3.512 2210,6.613765,-35.231655,28.165539,77.81708,3.504 2210,-8.615965,162.15346,26.710417,74.737045,3.496 2210,420.03442,219.5257,41.86975,88.08484,3.489 2210,593.8534,252.91177,31.464355,76.222046,3.404 2210,17.108696,197.08635,42.745384,75.60707,3.392 2210,370.32343,15.5661125,29.749146,98.9646,3.391 2210,619.9783,-18.156565,16.677917,44.548557,3.373 2210,41.771275,-19.587605,17.940548,46.95093,3.363 2210,-8.807447,-4.8164825,38.855072,102.440765,3.347 2210,507.1599,-17.381456,16.966553,38.686058,3.338 2210,531.75146,-14.313296,17.117798,35.239704,3.334 2210,398.0005,194.18282,54.51248,110.53142,3.326 2210,82.5258,196.55238,18.267319,33.972717,3.319 2210,-4.6629963,70.8531,18.686989,47.065216,3.317 2210,380.59232,-7.0055084,52.842163,126.06387,3.312 2210,539.55347,-14.578444,16.513489,35.30384,3.306 2210,530.2202,237.07892,42.729248,88.12915,3.276 2210,543.4816,81.32673,49.544983,127.70138,3.232 2210,561.8365,111.18886,20.171997,36.69049,3.231 2210,197.33818,217.96986,29.42331,66.97533,3.224 2210,-0.33085465,185.6582,23.59201,72.68408,3.22 2210,303.76596,221.13449,22.622437,39.301514,3.217 2211,351.2516,225.30406,21.41925,45.265335,7.608 2211,389.5418,-2.1501617,29.331818,94.10508,7.568 2211,66.111046,269.22144,32.126854,60.36386,6.261 2211,-6.132881,489.35257,18.83609,41.849518,6.16 2211,622.11816,478.72174,28.361206,65.71979,5.778 2211,-11.685481,478.60254,29.609505,63.269287,5.646 2211,627.29285,-16.93775,16.599426,45.698517,5.564 2211,-5.7121077,-17.509909,18.166784,43.722706,5.531 2211,603.0691,-54.508877,52.796448,137.09685,5.502 2211,-12.601109,-39.13025,41.522026,99.01155,5.367 2211,612.54926,455.70746,39.7453,106.09668,5.026 2211,582.88184,412.6782,71.84973,175.7875,5.011 2211,452.80972,208.13173,38.878693,80.021774,5.007 2211,-72.28695,267.8347,200.1368,459.3644,4.953 2211,-21.232243,404.47037,78.459305,173.90799,4.947 2211,78.51577,267.2273,25.270966,44.28824,4.806 2211,623.1269,-33.691944,25.964233,76.00495,4.806 2211,-40.20596,367.81555,110.06259,275.64197,4.8 2211,536.74603,311.31616,142.9674,340.01013,4.736 2211,561.87103,-132.64058,113.818726,280.0758,4.704 2211,251.26898,214.40283,15.940826,30.967987,4.67 2211,-5.2263136,236.36021,17.149494,38.328354,4.637 2211,243.99767,220.02101,15.195938,28.132553,4.635 2211,-4.961605,219.51028,16.941172,38.468536,4.527 2211,-5.7644696,183.3427,18.129305,43.218674,4.501 2211,447.21494,220.67125,28.656708,56.304367,4.452 2211,489.62286,-179.09209,235.8028,424.79422,4.432 2211,356.2294,46.610218,28.16623,96.402985,4.429 2211,493.86774,227.70343,237.29388,514.62585,4.412 2211,411.5547,-3.0515575,28.870544,68.7068,4.246 2211,60.806213,210.38208,54.454597,120.9162,4.245 2211,-19.396538,-90.14876,70.97101,200.86987,4.229 2211,99.58161,223.4068,41.506874,88.555115,4.22 2211,13.832188,178.78116,53.416386,119.326416,4.174 2211,-37.5543,-129.50806,117.239136,284.36752,4.161 2211,373.31952,1.3031006,29.290009,100.88153,4.155 2211,495.13364,268.81488,24.529572,41.09375,4.108 2211,620.20935,-15.656927,16.047607,40.653145,4.086 2211,442.9762,220.27802,19.709686,44.291992,4.054 2211,-70.36193,-188.14072,210.9562,453.5443,4.024 2211,-10.918226,164.52715,27.49883,68.011,4.002 2211,-13.658442,155.48152,47.41426,138.68163,3.977 2211,3.1504302,180.88562,19.922785,50.274017,3.974 2211,142.03633,220.09541,54.121964,119.78569,3.963 2211,51.740765,239.9986,41.09123,85.80713,3.877 2211,83.00589,222.74158,41.449417,88.7865,3.866 2211,498.4167,274.27316,33.04071,58.931915,3.863 2211,393.0238,261.9302,34.694153,54.76053,3.847 2211,107.13222,282.07233,32.69954,60.50638,3.78 2211,2.072143,490.50443,19.492958,40.378693,3.699 2211,-16.180391,211.96649,48.75432,141.55334,3.659 2211,30.100946,189.71088,54.68672,125.00055,3.656 2211,452.4215,19.57573,29.098694,75.09146,3.623 2211,236.00401,220.60175,15.465851,27.060852,3.603 2211,132.69685,251.57744,39.228363,87.93611,3.585 2211,-8.306088,37.62545,38.167274,109.20069,3.578 2211,448.56024,218.7378,20.485535,34.46956,3.535 2211,163.59857,205.55928,39.85228,86.91814,3.534 2211,519.18726,270.66428,24.991394,38.997955,3.507 2211,115.72038,236.30847,40.938766,88.916016,3.472 2211,273.95874,221.84937,21.139954,37.411438,3.44 2211,2.365179,229.98096,19.560343,37.019135,3.428 2211,87.29397,276.46393,23.991966,39.871094,3.426 2211,122.90921,200.689,20.566101,39.699738,3.415 2211,467.077,199.82767,41.36322,84.3139,3.398 2211,597.3833,245.78065,39.78296,94.65257,3.396 2211,381.45197,-10.114082,49.781616,132.49892,3.395 2212,334.38205,221.08264,21.743164,48.49701,10.206 2212,-5.7212744,-16.911812,17.334925,41.936672,6.476 2212,-11.109494,-32.0525,29.63741,72.293304,6.331 2212,602.5858,-56.336708,53.395874,134.98714,6.017 2212,-6.162365,489.68994,18.64063,41.523376,5.935 2212,370.86133,-4.265358,30.07013,72.94475,5.817 2212,627.50214,-16.792892,16.556213,45.209827,5.449 2212,626.66925,487.7438,20.248413,46.40518,5.445 2212,-8.836651,464.80835,37.543762,92.43225,5.214 2212,623.2125,-34.21563,25.885132,75.58896,5.204 2212,612.6719,455.48712,39.44287,106.3172,5.171 2212,-16.513714,-63.86606,55.462215,147.38467,5.099 2212,427.87213,212.20016,18.259918,38.09439,5.061 2212,-73.11577,266.11426,201.0745,461.318,5.037 2212,532.1314,303.55035,28.899963,54.87961,4.904 2212,583.0871,411.47638,71.68683,177.2901,4.82 2212,392.746,244.11133,35.105103,61.830994,4.818 2212,585.5357,-100.80729,76.093445,233.25964,4.812 2212,-21.401066,402.62817,79.05051,175.43646,4.796 2212,536.96643,310.65646,142.77246,340.7576,4.658 2212,489.78668,-178.94724,235.27203,424.71048,4.588 2212,595.53326,-47.472294,42.32544,100.039955,4.553 2212,249.06375,221.07515,21.791656,36.1866,4.439 2212,219.61154,209.645,15.865509,29.815979,4.395 2212,493.9049,226.78973,237.00177,515.4963,4.351 2212,-37.67546,-130.26546,117.43954,284.2265,4.235 2212,33.943893,196.85274,41.706223,84.04402,4.227 2212,3.0200176,-14.823217,16.213064,38.244476,4.216 2212,-5.0959516,296.4869,15.687822,37.821716,4.1 2212,-4.8674192,186.96602,17.094856,41.161087,4.065 2212,50.378937,197.98943,41.95369,83.59761,4.017 2212,-69.88002,-187.85622,211.20589,454.02094,3.991 2212,453.2412,223.39204,29.00351,52.59996,3.983 2212,454.53357,-5.583576,27.66449,67.07346,3.944 2212,177.7836,213.83252,22.574768,32.588257,3.911 2212,586.2688,288.0926,38.22412,63.85608,3.87 2212,570.95135,301.25534,35.466736,59.403534,3.843 2212,420.08417,204.56169,39.93036,71.92586,3.82 2212,-5.38665,230.88885,16.912518,42.778473,3.782 2212,4.8417053,198.00507,37.25758,93.1203,3.769 2212,434.71375,203.42868,40.98706,73.06961,3.749 2212,19.074646,179.98575,39.669815,84.032684,3.74 2212,-5.4232955,278.1978,16.630648,40.901947,3.728 2212,226.57422,209.443,16.558228,30.554962,3.663 2212,66.33437,198.17027,41.836098,83.64107,3.647 2212,571.5974,-61.332603,55.73413,136.63486,3.614 2212,-10.432817,70.37985,40.20877,105.48544,3.607 2212,437.4448,-14.959568,30.32547,72.04635,3.6 2212,116.88529,181.76076,38.36309,76.5327,3.598 2212,379.06,-18.007786,32.109436,78.19321,3.59 2212,53.052845,171.08165,38.028423,77.10141,3.589 2212,541.35266,230.18234,54.729553,117.77878,3.588 2212,-4.590369,172.06924,16.22337,38.49675,3.578 2212,331.81305,28.60513,30.013,100.47174,3.537 2212,-9.51645,258.12024,39.314243,105.17633,3.506 2212,444.10077,195.31804,54.334534,99.96629,3.495 2212,467.1377,215.50699,41.548218,83.3974,3.442 2212,-4.7928305,315.44357,15.920638,37.363983,3.438 2212,-13.122153,179.2731,46.998276,143.21994,3.419 2212,-4.351014,105.97787,16.047794,40.87522,3.419 2212,-4.07011,91.99368,15.196318,37.841278,3.402 2212,-5.333941,201.44154,17.935053,43.46582,3.4 2212,-5.120242,262.20242,17.168934,42.65338,3.38 2212,410.12292,-16.923777,17.537659,41.06147,3.378 2212,27.387083,187.53888,19.60388,36.752472,3.367 2212,13.139253,188.85742,67.92175,177.11163,3.352 2212,422.04846,213.02599,15.755157,29.497665,3.343 2212,483.85452,217.98083,41.049408,84.93927,3.342 2212,620.7936,-0.36902237,16.323608,33.83402,3.324 2212,388.30847,273.37708,27.986633,44.980164,3.321 2212,-10.205874,195.94539,27.539284,65.52586,3.319 2212,69.522194,172.23613,38.799408,74.76611,3.316 2212,529.86835,311.9813,20.841309,37.072113,3.305 2212,0.69811225,193.52759,26.334438,68.88147,3.294 2212,510.90192,223.17015,51.878723,125.26918,3.283 2212,389.5755,-4.1488457,29.893463,63.210426,3.276 2212,442.29245,-15.456032,16.93747,41.074757,3.27 2212,-8.323369,-4.8456497,38.37889,100.811386,3.266 2212,435.3177,-14.866937,16.366882,39.68662,3.247 2212,194.25978,210.375,20.462646,28.12732,3.244 2212,357.6615,-5.818699,30.042511,80.04405,3.243 2213,476.82135,222.12074,17.415161,35.856735,14.661 2213,0.21484971,208.35811,22.237352,50.664963,10.72 2213,5.5300083,197.24268,33.89553,94.09924,7.382 2213,382.39117,229.74373,29.217224,59.71443,6.796 2213,-11.352787,-32.44568,29.312792,71.67907,6.536 2213,626.82495,488.35013,19.793335,45.36435,6.451 2213,-6.148253,489.51593,18.82725,41.70166,5.888 2213,-5.989986,-18.463064,17.628342,43.191933,5.887 2213,-16.739025,-62.646317,55.40993,147.56834,5.699 2213,377.36893,34.63953,29.987488,101.03114,5.457 2213,-8.811112,464.5337,37.607365,92.55505,5.413 2213,611.5467,-50.23993,40.86859,106.05437,5.223 2213,612.57574,456.22095,39.08734,105.05194,5.221 2213,-2.7619529,205.92639,17.120495,41.395477,5.206 2213,-73.08341,266.12177,201.12851,461.528,5.119 2213,19.755707,198.0642,36.065186,82.34578,5.105 2213,-6.6827154,211.07866,35.693005,98.991714,5.034 2213,582.97473,412.812,71.680115,175.44824,5.005 2213,626.9773,-17.94538,16.828491,47.243797,4.882 2213,81.51355,157.65176,22.649887,53.659943,4.88 2213,-21.54728,402.63367,79.16571,175.13995,4.858 2213,536.3338,310.9714,143.51569,340.1757,4.833 2213,490.48468,-180.68619,234.95355,426.90567,4.784 2213,488.4735,222.74165,19.356812,36.59114,4.783 2213,585.73004,-100.58271,75.374695,234.07547,4.761 2213,118.171844,181.40259,36.40605,80.51288,4.725 2213,35.58919,206.60432,39.31631,88.666855,4.625 2213,85.82289,183.4485,37.942482,81.55,4.574 2213,493.8058,227.78427,237.01453,513.90674,4.515 2213,400.69577,229.07178,21.693024,39.78235,4.508 2213,-3.979845,190.10835,16.47773,39.41452,4.465 2213,418.9603,-5.9546013,31.893585,82.29672,4.424 2213,64.60162,183.09886,48.00367,118.60484,4.388 2213,474.18097,280.97955,34.902008,58.303192,4.307 2213,0.41713953,204.36865,49.78461,128.4638,4.305 2213,268.15182,222.22049,14.483917,26.715012,4.296 2213,-6.6934023,179.25537,36.88391,89.37448,4.18 2213,-15.903849,122.89575,51.96093,138.90411,4.113 2213,-3.782152,139.66527,15.109112,38.571075,4.087 2213,393.05377,251.05135,31.610107,69.54973,4.08 2213,353.18454,224.29442,20.70755,37.034378,4.046 2213,379.78668,236.8154,20.180695,35.713715,3.973 2213,50.311794,215.28587,32.322193,65.47743,3.925 2213,-38.013306,-129.75577,117.61545,285.35498,3.906 2213,599.5402,229.30826,36.987,92.80182,3.864 2213,363.41614,231.83699,18.219116,32.833694,3.86 2213,-69.92753,-187.47205,210.86478,452.52365,3.843 2213,47.418335,185.96687,46.60977,122.259384,3.831 2213,392.23645,236.09119,22.368713,42.689575,3.797 2213,103.55447,181.32133,37.342064,80.26741,3.797 2213,468.56134,215.18686,38.258057,82.44702,3.771 2213,121.87152,195.70638,20.754074,45.976303,3.767 2213,-9.529382,107.19388,39.655533,101.83353,3.695 2213,348.86255,37.86889,30.091064,97.45158,3.686 2213,64.03672,203.71591,21.578514,42.15236,3.674 2213,58.08596,199.53372,20.281555,39.701553,3.64 2213,569.3112,248.89569,21.385864,33.740234,3.634 2213,50.852417,197.57213,19.900505,40.133682,3.627 2213,613.32983,239.53961,36.5896,103.16687,3.613 2213,78.20939,173.95523,29.656334,67.5219,3.608 2213,470.28912,290.94196,25.944946,40.99756,3.579 2214,530.1653,223.19543,19.268188,37.772858,14.2 2214,-11.065979,-32.37432,30.080788,73.191185,6.086 2214,-5.9541345,489.7755,18.448277,41.760437,6.032 2214,535.50867,222.30728,21.367432,53.361633,6.017 2214,450.22537,222.46277,19.871338,44.951782,5.989 2214,-8.695191,464.98367,37.52389,92.114655,5.944 2214,626.64185,487.87747,20.323547,46.16104,5.611 2214,611.4549,-49.601982,40.72705,103.751015,5.604 2214,627.301,-17.583584,17.094116,46.63688,5.421 2214,521.10046,220.6589,26.270935,69.377716,5.393 2214,-16.507584,-62.810898,54.926773,144.88757,5.312 2214,-6.071501,-17.60046,18.48521,43.5062,5.295 2214,612.78534,454.3866,39.768433,107.73096,5.233 2214,533.28357,213.89148,36.48523,82.71759,5.143 2214,1.3538343,-16.424044,18.644045,42.34753,5.102 2214,-72.69355,266.3877,200.68434,461.39612,5.074 2214,491.17297,-181.9785,233.89227,428.42734,4.872 2214,583.12756,411.81024,71.35187,176.61707,4.809 2214,-21.527784,402.68054,79.07855,175.17566,4.809 2214,585.95795,-100.95554,75.27716,232.95328,4.722 2214,536.7467,310.40845,143.09583,342.1266,4.645 2214,493.80722,227.27878,237.05814,515.6488,4.362 2214,415.02777,30.262264,27.949371,87.6736,4.324 2214,456.56006,228.60379,19.769836,43.91623,4.07 2214,451.6229,-9.522247,29.29422,82.8303,4.053 2214,-9.179994,-6.4501114,38.73485,101.64295,4.038 2214,595.1262,-47.62101,42.690186,99.9394,3.989 2214,133.08134,196.60947,37.86287,87.79178,3.969 2214,156.54242,192.46573,27.594406,58.770966,3.935 2214,-37.932632,-130.3128,117.813,283.2272,3.915 2214,82.73349,148.09634,31.657234,74.85364,3.898 2214,-5.039525,168.79518,16.695717,41.33246,3.85 2214,179.81381,203.1136,18.254517,37.79013,3.848 2214,137.62689,201.37848,21.308563,46.55864,3.844 2214,4.0730944,-33.896156,29.632267,77.176834,3.84 2214,-5.511856,184.04308,18.096317,41.646088,3.826 2214,-70.14189,-187.79303,211.2045,453.60406,3.797 2214,66.08333,181.79611,42.841194,81.96872,3.793 2214,147.19766,209.507,31.316711,64.3105,3.757 2214,92.98001,181.12549,52.42479,114.51587,3.725 2214,187.26288,204.82866,17.131134,36.602768,3.705 2214,2.1602635,491.65234,18.809767,39.25403,3.701 2214,485.67456,213.42445,36.932556,78.14128,3.679 2214,-8.927359,103.21019,38.679466,105.82443,3.678 2214,31.848373,180.24167,50.55194,124.85672,3.655 2214,29.975328,192.03723,29.327032,70.12573,3.629 2214,169.30869,217.57199,21.803528,38.463104,3.538 2214,548.0181,211.35524,38.46161,88.97633,3.532 2214,338.27426,239.50038,19.395233,33.138412,3.514 2214,4.1454086,206.36018,38.02479,103.955246,3.5 2214,502.58264,214.27174,36.641235,76.65596,3.482 2214,492.2309,242.72935,30.059692,62.028854,3.464 2214,444.43085,211.69608,16.45279,42.253098,3.456 2214,-8.357997,214.10507,37.36511,101.1369,3.452 2214,83.81015,180.4603,42.49388,80.77655,3.449 2214,252.65134,57.545055,31.447632,88.89015,3.431 2214,12.573528,191.44759,53.216167,133.68938,3.408 2214,164.53947,197.61081,38.430984,84.9364,3.405 2214,463.83472,278.12134,22.090027,49.550262,3.387 2214,513.62115,204.9714,47.077637,117.43851,3.36 2214,331.52368,241.09996,18.96109,34.162216,3.34 2214,466.82697,277.64075,30.859863,63.65085,3.331 2214,300.1737,221.80113,15.254272,27.50528,3.321 2214,436.06247,173.78168,40.499237,92.35828,3.308 2214,564.6316,-1.5020065,17.375488,36.307655,3.29 2214,394.04382,-18.674849,18.105164,44.77952,3.284 2214,543.41736,227.09735,20.985596,52.092957,3.276 2214,469.71912,210.92694,38.121643,80.82941,3.24 2214,9.253269,-18.674072,18.487402,43.672256,3.225 2214,181.93848,182.01361,36.31372,81.009125,3.194 2214,46.339363,196.78923,29.00447,70.72267,3.184 2214,618.3979,489.75104,20.892517,43.693542,3.169 2214,570.4817,-15.315744,16.53601,40.329453,3.169 2214,50.338802,182.62001,43.42815,85.81346,3.167 2215,459.0937,214.21227,18.219849,48.600174,21.135 2215,-5.1926084,-16.928211,17.385803,42.579594,6.59 2215,627.2441,-17.657055,16.87085,47.32876,6.341 2215,2.8525221,127.81638,25.902561,73.63845,5.844 2215,-6.1239724,489.02307,18.94548,42.608154,5.811 2215,626.719,488.2405,20.351318,46.12552,5.728 2215,-11.677191,477.52063,29.734482,63.835815,5.691 2215,484.9089,213.52736,38.921783,86.009964,5.634 2215,460.51346,198.59645,27.643463,68.8174,5.587 2215,-10.537319,-32.198086,29.41695,74.23412,5.566 2215,611.0384,-48.181202,41.51648,101.18833,5.442 2215,439.36978,242.3059,21.656647,47.47975,5.315 2215,-16.810884,-63.061676,55.939224,144.00781,5.277 2215,-72.857315,265.5666,201.06041,461.77887,5.146 2215,613.0384,455.09302,39.2052,107.163574,5.042 2215,535.9841,316.1624,35.898743,80.542725,4.944 2215,490.18262,-181.25635,234.83026,427.20026,4.897 2215,582.90875,412.67548,71.876465,175.87097,4.868 2215,-21.581793,402.66467,79.11306,175.16919,4.863 2215,585.92993,-100.81003,75.42474,232.96889,4.816 2215,445.92746,222.25087,27.109161,59.938828,4.789 2215,536.4358,310.64175,143.13641,341.44675,4.75 2215,-4.7115607,132.88191,18.319252,48.48436,4.719 2215,524.0775,224.87491,30.938416,60.229645,4.695 2215,-5.009718,171.68808,17.901653,41.252686,4.607 2215,598.3717,217.6794,37.13275,108.46385,4.501 2215,4.0661263,197.78711,39.089733,100.01398,4.493 2215,116.205154,183.1917,40.1239,78.198685,4.492 2215,2.5852609,-14.407513,17.566236,40.145058,4.474 2215,493.86337,227.06741,237.2305,515.6223,4.457 2215,549.8573,207.83847,37.64203,91.18118,4.406 2215,-37.28981,-131.4802,117.27841,286.1225,4.347 2215,431.23535,187.71085,28.598206,69.24817,4.341 2215,94.28292,178.40416,52.038033,105.03395,4.315 2215,583.5759,213.0585,37.187866,98.46982,4.271 2215,540.77246,219.09071,30.519043,63.813705,4.264 2215,-70.546776,-188.70947,212.21515,455.4361,4.251 2215,449.65295,191.31161,26.27063,77.92111,4.211 2215,469.42218,212.87419,37.6864,82.54399,4.182 2215,-4.986681,190.2578,17.837759,47.17267,4.142 2215,527.58594,197.68523,50.25049,119.37373,4.129 2215,414.64236,7.264847,27.170074,93.840935,4.073 2215,149.97168,206.01196,28.116928,55.774475,4.034 2215,2.2895622,187.5616,28.050411,80.35057,4.034 2215,507.15332,228.61139,31.901611,68.62445,4.031 2215,83.05355,202.75902,42.038727,82.03618,3.99 2215,487.69513,215.18994,22.164124,47.099396,3.835 2215,620.1388,-16.662367,16.163574,42.916958,3.77 2215,146.22221,207.85211,22.039413,41.185837,3.755 2215,611.81464,236.5393,37.434265,110.06622,3.737 2215,16.328661,190.07094,42.63497,93.09245,3.733 2215,377.3849,230.97794,21.792816,34.546204,3.703 2215,131.38689,201.47104,40.931747,78.48807,3.689 2215,465.44467,222.33136,20.504059,41.102875,3.667 2215,493.8888,195.37015,48.613647,117.29428,3.642 2215,-5.2015057,213.53938,18.577477,47.94719,3.636 2215,1.9060129,490.2188,19.849749,40.97711,3.621 2215,-9.10571,121.96001,28.222431,72.459366,3.618 2215,566.8755,207.80797,37.643616,92.127945,3.613 2215,61.09494,175.21512,53.909065,115.83261,3.607 2215,472.71033,208.85355,20.863464,52.935394,3.601 2215,-4.2942567,264.56628,16.505264,39.848938,3.6 2215,162.74783,201.97229,40.654694,77.05975,3.588 2215,452.43167,212.7966,37.97638,81.01657,3.582 2215,411.39307,-12.835266,52.996033,138.3582,3.56 2215,-8.134361,214.53589,38.21155,100.54132,3.505 2215,2.111199,-25.795212,49.477325,143.54395,3.499 2215,216.21732,221.01834,24.760468,38.6792,3.476 2215,-9.440137,181.62674,27.71302,72.112686,3.469 2216,480.31155,220.51486,22.669098,57.011658,52.769 2216,467.75354,222.23071,21.778168,54.30078,30.225 2216,567.25244,221.49225,23.093872,51.51648,25.743 2216,87.280815,210.84857,26.26059,44.932556,8.38 2216,-5.743881,-17.771872,17.687548,42.57682,7.825 2216,97.742035,204.362,32.42778,55.940765,7.351 2216,76.84291,205.52525,31.549133,62.548935,7.189 2216,563.2105,216.93747,35.942566,76.90396,6.94 2216,554.9588,222.48555,23.343872,47.24681,6.567 2216,-11.1985855,-32.081566,29.347706,70.839325,6.556 2216,627.17645,-17.37593,16.948853,45.345165,6.524 2216,404.66425,-4.7706184,27.263702,76.92996,6.453 2216,58.895,185.84644,27.20142,70.65961,5.787 2216,-6.101449,489.60425,18.640377,41.791077,5.614 2216,623.0316,-33.775383,26.13739,74.827324,5.551 2216,164.8374,220.64658,31.161423,52.070557,5.536 2216,-11.716827,477.83243,29.680624,63.55252,5.381 2216,621.99347,477.50925,28.536194,67.42532,5.305 2216,-72.862816,266.30362,201.07574,461.22763,5.153 2216,442.7196,247.46886,18.53009,29.266891,5.049 2216,-16.573101,-64.645164,55.276524,146.5368,5.027 2216,582.88806,412.47202,71.69299,175.6987,5.0 2216,3.3384852,-16.04576,16.285728,39.317974,4.932 2216,-21.460285,403.20694,79.02888,174.78214,4.912 2216,490.32974,-181.52197,235.11948,425.9141,4.825 2216,536.5311,310.54346,143.4212,341.20898,4.766 2216,586.0061,-99.97268,75.09973,231.87076,4.666 2216,-70.6626,-189.73906,212.47388,456.3352,4.651 2216,511.99756,231.133,28.773499,62.868774,4.646 2216,175.59457,226.5578,24.546799,38.604767,4.628 2216,494.18164,227.49808,236.84436,514.7881,4.612 2216,603.258,-57.56827,53.120483,134.36041,4.538 2216,525.24786,231.78589,29.084167,66.64496,4.534 2216,-36.869236,-131.34982,116.31517,289.48477,4.522 2216,543.7534,215.06636,28.19397,60.96541,4.506 2216,67.45705,195.74832,31.399216,65.08548,4.454 2216,406.14932,21.319168,28.854492,96.32286,4.389 2216,2.174697,166.65169,18.769417,49.886627,4.256 2216,115.72785,196.89738,32.9909,57.39604,4.232 2216,84.50616,195.40767,40.0175,83.79671,4.171 2216,463.30264,242.62413,28.440826,65.823074,4.1 2216,467.63687,219.96368,37.86795,81.368835,4.074 2216,594.0311,-46.204422,44.830322,94.890114,4.068 2216,548.14056,226.8699,41.70172,100.86096,4.055 2217,524.93396,222.64534,27.251526,68.343735,81.284 2217,511.32428,216.90471,30.739746,74.89867,50.128 2217,619.2124,233.32382,19.961182,51.368317,12.328 2217,27.618603,203.55807,29.59721,62.845215,10.786 2217,-5.4762993,-16.751085,17.198677,41.65811,7.747 2217,-0.93215346,196.67258,27.140501,72.92709,6.747 2217,627.21265,-17.957447,17.073181,46.66053,6.559 2217,-6.1173444,489.5774,18.740532,41.538208,6.128 2217,-11.900341,479.18192,29.850586,62.3248,5.943 2217,-10.812863,-32.571312,29.022362,72.74607,5.849 2217,6.0909424,189.83112,36.626328,101.53833,5.653 2217,621.95526,477.59003,28.630981,67.25647,5.634 2217,623.1761,-34.012093,26.064148,76.26694,5.435 2217,32.607998,191.49734,41.789722,77.97305,5.112 2217,-16.69406,-63.640068,55.567154,145.53609,5.102 2217,495.69278,221.01167,31.332916,64.25438,5.071 2217,582.94275,412.47845,71.70819,175.86859,5.047 2217,-72.85895,266.47577,200.68988,460.53156,5.041 2217,16.060501,203.1333,24.358234,60.20627,4.965 2217,505.4332,205.5266,27.27835,69.04814,4.9 2217,536.44775,310.14807,143.30933,341.60583,4.863 2217,-21.343697,403.3944,78.83458,174.844,4.862 2217,490.6552,-182.02003,234.74579,426.4757,4.78 2217,39.096313,208.39328,23.884003,41.526825,4.704 2217,585.93024,-101.8695,75.72937,234.28339,4.567 2217,2.5748892,-15.265152,16.53844,39.143387,4.554 2217,161.29767,222.7038,22.445175,33.86093,4.541 2217,494.14026,228.66177,237.30273,513.7793,4.513 2217,-37.544685,-129.80463,117.1267,284.045,4.512 2217,-70.53989,-189.92134,212.08876,457.11707,4.455 2217,139.18181,221.58333,29.340103,52.343796,4.404 2217,603.4339,-57.08419,52.992004,136.01465,4.401 2217,602.5898,247.7209,19.882202,43.552048,4.39 2217,600.2782,221.02983,36.20343,93.952896,4.343 2217,49.45507,195.15338,42.270607,86.175476,4.286 2217,548.3112,231.95627,38.04138,78.05856,4.138 2217,-9.562169,-7.3938637,39.642517,102.07628,4.126 2217,621.9817,211.00806,25.121582,73.25482,4.122 2217,1.8596935,-25.835026,49.882256,143.29152,4.111 2217,13.805363,181.57457,50.28352,121.949326,4.066 2217,-6.4084616,199.71689,19.850258,45.698547,3.983 2217,489.73935,227.20038,20.42041,36.30783,3.964 2217,485.1431,224.48264,29.680206,56.587646,3.955 2217,360.33066,0.12976837,23.920593,55.488853,3.948 2217,620.0837,-17.705757,16.210999,42.836704,3.923 2217,1.9689852,491.0488,19.7023,40.141327,3.879 2217,594.3237,-47.250492,44.358337,98.85276,3.857 2218,618.2122,249.43079,19.796692,46.959045,18.604 2218,426.00018,215.3276,20.459229,45.51419,14.761 2218,-5.190601,-16.826359,16.647303,40.603493,7.543 2218,50.92244,236.19421,29.281204,64.33911,6.436 2218,422.07516,203.8818,36.073486,83.17178,6.39 2218,-11.854799,476.9759,29.86894,64.59796,5.79 2218,-6.1712656,488.92532,18.79834,42.661163,5.726 2218,627.5437,-17.712463,16.95288,46.558983,5.588 2218,-11.095539,-32.081593,29.820726,71.83974,5.513 2218,626.3999,487.3606,20.669312,47.06433,5.509 2218,623.6261,-34.425938,25.667786,76.794945,5.162 2218,-16.740454,-63.519947,55.37007,146.09193,5.138 2218,612.8949,454.5715,39.436646,107.49881,5.127 2218,-72.73023,266.3567,201.06003,461.46924,5.111 2218,583.02216,412.47623,71.57349,175.95969,5.024 2218,603.45,-57.452217,52.43817,138.76787,5.019 2218,-21.478745,403.20642,78.999084,174.6925,4.864 2218,536.4484,310.58075,143.26135,341.72937,4.68 2218,397.0462,208.9361,27.887512,64.08975,4.678 2218,432.04395,219.80702,22.650757,53.0692,4.671 2218,489.97055,-180.29832,235.12045,424.46365,4.629 2218,624.99854,256.5524,20.534607,50.770905,4.608 2218,3.65775,-14.402819,15.345092,37.46121,4.592 2218,-71.0291,-189.51271,212.48979,455.40955,4.543 2218,-37.04389,-131.62245,116.52185,287.2767,4.487 2218,493.14163,227.45389,238.0983,514.8357,4.471 2218,1.5858734,267.59497,21.202585,48.9097,4.444 2218,585.7386,-102.188736,76.22565,234.66635,4.417 2218,434.40228,202.56046,38.502197,91.066925,4.236 2218,10.66537,-15.91562,16.347725,37.737877,4.196 2218,360.91202,233.74619,21.28418,37.02185,3.955 2218,594.76587,-48.047546,44.072693,100.91901,3.816 2218,434.61,-3.5011406,29.685638,75.19606,3.741 2218,342.15286,90.268105,25.775848,79.91097,3.689 2218,620.2336,-17.454815,16.582764,42.37534,3.589 2218,-5.0027614,183.70296,18.091028,47.593018,3.53 2218,62.45357,235.63144,23.839764,45.29187,3.511 2218,-15.246723,219.92966,48.871483,131.41364,3.509 2218,-9.387016,-6.740757,39.407578,102.18985,3.385 2218,1.958797,489.71466,19.669025,41.57422,3.365 2218,614.55176,479.32895,27.839233,62.5455,3.332 2218,613.09894,265.45044,38.121643,109.86063,3.317 2218,379.0119,-17.43351,17.40152,43.387257,3.298 2218,597.7488,252.58942,39.61029,100.24109,3.284 2218,108.77144,207.59882,28.752106,63.63806,3.269 2218,18.88145,-15.801184,16.31812,37.247093,3.253 2218,90.27074,140.81516,21.797348,44.846603,3.244 2218,-14.548702,155.26506,49.347244,141.13857,3.24 2218,-9.659217,54.970737,39.081905,108.875244,3.221 2218,-3.87222,265.77472,18.295902,42.33853,3.22 2218,408.36118,198.42125,37.42758,76.91893,3.205 2218,35.82352,247.07137,30.332134,61.259384,3.191 2218,-4.391739,1.1556358,16.182388,40.45529,3.19 2218,-9.926029,273.62305,38.088886,107.83902,3.186 2218,114.883804,-13.031388,16.853699,36.762104,3.176 2218,492.58664,204.85278,31.938995,69.60712,3.163 2218,499.0967,-13.891305,15.937592,36.560406,3.141 2218,352.00513,93.09807,26.588318,81.125626,3.138 2218,106.713715,-14.356774,17.282455,37.268658,3.113 2218,-10.092114,184.66228,29.499538,71.30907,3.111 2218,612.7306,175.38495,36.063232,109.53021,3.1 2218,20.313763,247.9592,31.222233,58.879333,3.092 2218,2.4521518,-41.007683,42.039356,101.52198,3.077 2218,420.15048,208.37033,18.908203,41.538406,3.076 2218,547.0598,415.11374,82.9527,165.73111,3.069 2218,586.5899,-17.321808,16.978088,38.493027,3.06 2218,507.21896,200.37363,55.20987,127.63089,3.056 2218,362.14542,-17.184816,17.302643,47.584263,3.046 2218,122.77954,-14.786049,16.414764,37.038143,3.046 2218,598.2126,200.99864,39.807922,93.36,3.038 2219,467.1599,219.1655,21.672638,48.157227,20.093 2219,-5.453148,-17.538101,17.475632,41.701756,7.905 2219,234.58209,226.04015,18.481888,28.390533,7.524 2219,419.9712,209.87376,30.123657,66.52501,7.465 2219,455.08563,208.23955,36.27008,75.16646,6.948 2219,444.96356,207.25824,27.76654,67.88147,6.566 2219,-11.056189,-31.097334,29.482065,69.35305,6.354 2219,241.91592,227.11014,19.288055,29.672241,5.671 2219,627.51404,-17.43702,17.105774,46.424694,5.639 2219,-8.778211,464.24054,37.627365,93.304504,5.502 2219,-3.5038142,174.40704,16.058445,38.12172,5.5 2219,-6.066388,489.50293,18.619843,41.938538,5.478 2219,613.1707,453.5947,39.67157,109.16531,5.467 2219,623.52313,-33.52155,26.485413,75.42628,5.337 2219,-73.149536,266.00995,201.15236,461.8026,5.274 2219,-16.955841,-63.74497,56.08287,144.74437,5.129 2219,467.53534,217.26254,38.188507,74.86835,5.064 2219,603.19934,-56.41858,52.683594,138.17712,5.039 2219,227.20312,226.05435,18.762924,27.343628,4.889 2219,583.0521,411.99127,71.63306,176.06183,4.878 2219,-21.494556,402.90152,79.049484,175.03207,4.856 2219,3.6672437,-15.909352,16.065693,38.168427,4.85 2219,251.38913,227.0239,19.157501,30.96109,4.81 2219,478.95575,229.2786,22.724884,40.832336,4.75 2219,424.69025,206.40097,20.412415,43.988052,4.701 2219,536.29877,310.62485,143.69092,341.2211,4.7 2219,577.5118,216.78479,31.70465,64.454956,4.651 2219,1.6123033,184.50032,19.364882,51.26355,4.641 2219,-70.34417,-188.18896,211.84073,455.25464,4.592 2219,347.868,91.48898,26.67929,84.51233,4.589 2219,626.48413,487.26685,20.818481,47.140564,4.587 2219,458.5361,220.94409,22.580872,51.05832,4.58 2219,489.84756,-180.10446,236.22208,423.996,4.575 2219,4.3725295,180.4279,15.495308,34.048355,4.551 2219,494.08453,228.22723,236.78796,514.0844,4.518 2219,585.53595,-103.131355,76.68518,236.0747,4.497 2219,371.1821,115.86702,19.961243,58.356262,4.376 2219,-37.69922,-130.20592,116.47829,288.6822,4.369 2219,620.0987,-4.626672,17.934814,38.635258,4.338 2219,430.94916,202.94403,28.485199,68.27594,4.284 2219,30.988575,181.80173,26.302486,60.90341,4.276 2219,220.60623,218.54878,18.363785,28.0271,4.266 2219,153.27226,191.73187,20.649185,49.94211,4.238 2219,-8.245935,168.80942,26.28691,69.06589,4.169 2219,402.11523,132.00482,19.283539,44.290283,3.991 2219,585.20483,234.72063,20.816833,38.289383,3.942 2219,40.64579,186.8632,22.757347,43.535934,3.927 2219,393.84702,233.01357,20.21759,34.710434,3.86 2219,-3.812606,159.44843,15.762637,36.386642,3.858 2219,334.50943,86.16925,26.172607,87.321686,3.801 2219,-6.237395,261.52997,19.327625,42.210358,3.755 2219,234.60956,215.4993,17.291077,27.202042,3.704 2219,403.35068,225.21414,18.444122,35.134064,3.667 2219,417.1557,223.14111,21.94458,45.396423,3.657 2219,15.047291,163.72757,48.865406,114.54465,3.652 2219,363.05157,232.14937,20.023712,34.676315,3.627 2219,22.603916,194.9306,30.072876,66.8457,3.619 2219,-15.433001,86.86391,51.339844,142.25006,3.607 2219,-0.35694122,190.30116,26.947119,81.7874,3.59 2219,373.75165,125.86118,26.190796,75.89147,3.585 2219,226.23737,215.17973,18.30304,28.124924,3.573 2219,19.52606,241.94221,29.613234,63.640305,3.565 2220,541.8195,221.14958,26.242493,52.26082,24.278 2220,534.04663,214.53738,37.98767,84.77753,10.103 2220,-5.3688564,-17.80411,17.298876,42.400043,8.276 2220,-10.882244,-31.973618,29.040882,70.39366,7.037 2220,476.82468,136.29819,25.25357,80.83766,6.101 2220,626.7046,487.83185,20.23816,46.369812,5.686 2220,-6.3033953,489.24313,19.02211,42.223175,5.61 2220,3.6659389,-15.395778,16.374702,38.264336,5.546 2220,-12.147142,477.82672,30.233011,63.174377,5.468 2220,546.9669,218.82823,39.602966,93.010086,5.45 2220,-73.12089,265.06232,201.41476,463.42194,5.375 2220,-16.674044,-64.3377,55.507217,145.50876,5.271 2220,549.5808,225.30005,24.694885,60.841644,5.254 2220,498.7458,222.35068,42.518616,93.711334,5.148 2220,613.04083,455.60687,38.75659,106.287964,5.142 2220,515.8155,218.40247,42.59015,95.711914,5.042 2220,611.01355,-48.93796,41.863342,102.497185,4.964 2220,211.99466,224.97527,30.500778,56.560867,4.919 2220,627.4067,-17.547226,17.091675,47.279636,4.904 2220,582.8681,412.52466,71.78125,175.82385,4.902 2220,565.08325,224.19029,41.178833,95.57796,4.893 2220,524.3316,212.89551,56.45642,134.49146,4.872 2220,-21.45821,402.76056,78.985794,175.1452,4.828 2220,536.4181,310.71442,143.84668,341.14752,4.814 2220,197.83038,222.92163,30.780243,57.39215,4.737 2220,-40.6364,365.65503,111.069374,276.97144,4.693 2220,489.92725,-179.85326,235.88672,423.76434,4.536 2220,2.0423841,252.41692,31.055176,61.02324,4.526 2220,493.9597,227.99927,236.99527,513.761,4.509 2220,-70.18326,-187.9863,211.5171,454.54202,4.494 2220,484.4237,218.2218,39.970154,82.753235,4.426 2220,-37.50658,-130.31717,116.89255,288.33496,4.353 2220,575.4167,215.32497,48.031067,140.03587,4.332 2220,585.8868,-104.96239,76.433044,239.76176,4.307 2220,-9.641622,108.72293,29.204208,73.28473,4.219 2220,415.59497,220.49619,26.572083,58.37683,4.196 2220,604.97687,245.65396,30.550842,66.44495,4.192 2220,258.4224,220.56203,19.255096,36.589096,4.096 2220,595.2516,254.77888,33.129272,73.15587,3.993 2220,-5.4703674,122.49286,18.919731,45.76111,3.985 2220,99.66493,200.40656,41.41057,84.18851,3.978 2220,320.33374,215.81442,19.59317,42.359894,3.938 2220,231.58218,232.86328,24.074265,43.276825,3.913 2220,53.833202,196.36966,29.304272,58.14821,3.903 2220,-4.9303827,56.898834,16.323742,40.941513,3.889 2220,453.17084,214.34111,37.53882,89.74443,3.863 2220,587.2649,238.87595,33.341064,75.45947,3.849 2220,-0.23107767,164.8545,24.864748,72.59192,3.841 2220,-5.5920753,106.39552,17.951397,43.30455,3.803 2220,381.71265,104.84358,23.965637,72.37282,3.802 2220,559.0221,226.69432,24.347595,61.65892,3.798 2220,36.495342,190.44812,38.895313,77.499146,3.793 2220,18.581516,141.0289,41.43886,92.97899,3.767 2220,-8.297099,246.69354,37.212566,98.673035,3.749 2220,13.735903,176.36194,51.675766,115.24475,3.729 2220,-5.1840305,166.01086,17.94752,47.09088,3.724 2220,468.08197,216.2549,38.048096,85.75322,3.677 2220,222.7025,227.98012,24.239822,42.845444,3.672 2220,-13.52924,108.51359,49.552116,139.81018,3.65 2220,202.84079,224.4405,19.862152,32.314102,3.631 2220,472.99942,203.61081,21.337921,53.482758,3.619 2220,78.54735,177.8522,52.52385,111.82013,3.589 2221,477.25815,221.78325,19.248383,43.515457,73.593 2221,496.37177,217.78961,19.577515,48.893646,25.482 2221,450.4215,217.39685,22.605896,44.536133,11.31 2221,-5.8018465,-17.358618,17.779388,42.19685,7.656 2221,-11.034937,-31.497744,29.36954,70.66597,6.661 2221,469.7577,220.18706,19.412476,41.192,6.66 2221,493.7238,223.84935,26.382843,66.220566,6.582 2221,393.27576,90.9923,25.01648,78.08521,6.18 2221,166.52632,217.0018,27.506256,61.637268,5.952 2221,621.979,477.9047,28.396729,66.52176,5.627 2221,214.97284,215.80904,34.190903,79.33095,5.571 2221,-6.3587036,489.26385,18.968079,42.507996,5.503 2221,-16.93062,-64.27839,55.774307,145.72623,5.473 2221,-12.193687,477.3049,30.267704,63.9606,5.465 2221,5.620612,197.20523,28.503021,64.62094,5.329 2221,-72.755646,266.07263,200.53522,461.78735,5.167 2221,247.24866,225.12103,26.783325,55.373383,5.137 2221,611.20526,-49.34926,41.508667,104.177475,5.12 2221,27.960968,181.57936,29.627525,69.10246,5.067 2221,583.4352,411.87817,71.242004,176.55847,4.95 2221,627.2669,-18.70111,17.093933,47.55533,4.914 2221,2.8721106,-15.351746,16.754417,38.406136,4.881 2221,-21.515226,403.08496,78.92243,174.75305,4.789 2221,181.80719,213.86969,35.216003,79.45563,4.749 2221,470.60193,218.00725,35.929413,81.24159,4.733 2221,536.4358,311.33127,142.92914,341.36697,4.619 2221,-37.14042,-130.37244,116.77844,286.41913,4.575 2221,222.8635,222.83511,21.89917,46.227997,4.51 2221,466.18628,299.36957,33.865295,82.58658,4.485 2221,489.66663,-179.02429,235.88745,423.8047,4.478 2221,-4.744746,150.63437,17.296837,44.7771,4.467 2221,585.7315,-103.61649,76.61005,237.71014,4.454 2221,256.24887,224.09067,22.131195,42.26007,4.388 2221,493.7007,226.83173,237.14029,515.4941,4.369 2221,-70.38619,-187.10071,211.61038,453.87964,4.293 2221,198.50037,230.94557,29.376465,70.70128,4.245 2221,99.959564,201.18503,40.20926,82.39908,4.135 2221,229.68045,215.96553,35.52359,74.9518,4.063 2221,133.14908,197.05377,38.817078,78.04425,4.001 2221,453.6763,217.08797,37.34372,79.57362,3.917 2221,169.3669,208.87581,22.105042,34.995316,3.909 2221,14.38339,178.6305,49.344276,111.117676,3.905 2221,312.26782,223.96704,22.727661,36.786377,3.879 2221,259.2234,226.50153,30.596527,53.42578,3.863 2221,59.21894,31.050045,31.324821,84.03937,3.858 2221,84.26451,199.76424,40.579857,84.44173,3.834 2221,355.5619,231.06499,18.147278,37.470932,3.79 2221,66.34979,210.42288,42.51825,87.33945,3.784 2221,-10.641513,146.68839,29.770512,72.51897,3.767 2221,351.8677,69.05481,25.464874,95.78476,3.759 2222,537.377,215.74976,23.562805,50.029236,77.593 2222,506.5113,211.23824,21.453918,55.421036,65.188 2222,524.0427,215.73885,20.345154,47.607346,43.663 2222,540.76105,210.66096,32.57721,64.38225,10.407 2222,-5.081815,-16.321335,17.604565,42.8969,8.055 2222,495.57162,209.75652,26.792694,71.83095,7.653 2222,-10.151986,-32.070164,29.230751,75.28529,7.559 2222,240.85162,226.08383,21.505066,39.549347,6.757 2222,397.91742,74.19377,28.216003,80.74065,6.746 2222,64.44902,254.84613,36.601944,64.592224,6.518 2222,626.6589,487.6643,20.127686,46.67932,6.437 2222,503.24908,212.20584,33.5625,78.854675,5.58 2222,-6.1635265,489.23737,18.759375,42.24054,5.447 2222,-6.409323,168.47043,18.684574,44.212585,5.359 2222,-8.953601,464.57217,37.666733,92.3154,5.278 2222,-72.614525,266.19653,200.60373,461.58643,5.22 2222,627.38916,-18.353382,16.95166,48.07751,5.2 2222,-17.342934,-61.355743,57.111877,142.55446,5.145 2222,602.72034,-56.24095,53.400024,141.2134,5.096 2222,612.7689,456.10776,38.977844,105.039154,5.073 2222,583.1416,412.72733,71.45892,175.45798,5.036 2222,50.138428,256.81454,35.98855,65.38748,5.028 2222,341.05157,54.699955,29.028503,95.721115,4.877 2222,65.87073,205.32729,43.43982,80.50847,4.842 2222,-21.482555,403.43903,79.05156,174.3941,4.828 2222,82.12643,204.35703,43.575172,82.06961,4.766 2222,623.06805,-34.261654,26.247131,77.192444,4.743 2222,536.4311,310.3986,143.63702,341.59018,4.686 2222,-14.711161,183.86844,48.691483,134.31113,4.675 2222,520.7157,209.00662,33.736694,68.54367,4.64 2222,2.2679484,-13.90085,17.083618,40.352005,4.587 2222,200.48868,219.94577,21.216583,36.40094,4.568 2222,3.6242425,188.1089,39.02118,86.89906,4.547 2222,-37.49936,-128.08418,116.68851,284.65677,4.525 2222,530.0261,222.80707,21.223145,48.292694,4.521 2222,457.55234,77.14426,29.373566,75.69656,4.503 2222,490.3215,-180.64597,234.99051,425.29404,4.493 2222,-70.812485,-188.92737,211.78354,455.57126,4.493 2222,-10.786147,159.63431,28.394135,68.797516,4.427 2222,494.24005,227.1658,237.20801,515.06995,4.423 2222,11.806173,177.78609,55.223145,108.55171,4.322 2222,552.3922,210.70154,35.598267,65.08649,4.321 2222,328.63907,214.34108,20.903503,40.875946,4.269 2222,52.0539,193.72165,41.058624,79.647,4.167 2222,562.2591,-130.90599,114.25751,282.13257,4.139 2222,-5.1573896,-0.2588005,19.5294,45.33835,4.122 2222,99.42796,203.49667,42.425644,81.85904,4.12 2222,116.078705,203.04407,41.53694,83.83487,4.059 2222,1.6989279,-0.940361,22.390709,49.455986,4.053 2222,2.750132,165.4239,26.039158,72.974304,4.042 2222,36.098885,195.27843,41.767624,76.14525,4.026 2222,413.38373,81.9009,28.705505,74.91306,3.998 2223,593.30634,222.90741,24.040588,59.248596,95.211 2223,613.34265,220.38367,24.04419,66.84943,78.571 2223,576.0692,228.71693,20.176575,54.43785,19.822 2223,599.8081,219.28064,31.37915,79.415955,14.812 2223,-5.174275,-16.583738,16.723726,40.650032,9.038 2223,398.47174,268.24066,29.018524,70.50418,6.104 2223,-11.214563,-32.23663,29.193306,70.80238,6.046 2223,627.1172,-18.377678,17.203186,48.380722,5.755 2223,-12.203221,478.4811,30.16227,62.632782,5.672 2223,-6.317437,489.7764,18.866093,41.71518,5.502 2223,613.209,453.6671,38.88037,108.7431,5.474 2223,417.44543,57.965874,29.95633,92.62113,5.335 2223,612.918,230.52089,35.460266,105.034164,5.328 2223,626.7117,487.9839,20.3526,45.92749,5.307 2223,3.434348,-13.90658,15.440593,36.577583,5.268 2223,-72.99283,265.8939,201.10864,461.5319,5.159 2223,603.11865,-57.157227,53.27179,139.93604,4.952 2223,582.9392,411.77893,71.61774,176.56653,4.948 2223,622.8384,-33.93188,26.624634,76.73099,4.941 2223,-16.7436,-64.47414,55.409615,147.43147,4.939 2223,224.25092,244.72354,24.161697,40.11725,4.929 2223,-21.624338,402.56448,79.1529,175.1464,4.839 2223,536.20917,309.69995,143.67963,342.29663,4.81 2223,581.10846,222.39888,39.089233,101.81853,4.805 2223,457.51816,214.81334,32.4299,68.3344,4.72 2223,490.20938,-180.48291,234.4766,425.53247,4.623 2223,434.96063,205.56961,42.804626,84.48996,4.578 2223,619.6316,209.03473,26.688904,71.489685,4.556 2223,570.535,219.92941,20.344727,52.226746,4.554 2223,493.78568,228.50366,237.60873,514.9376,4.466 2223,-37.18425,-130.05334,116.32095,286.79822,4.461 2223,585.8382,-104.09045,76.35144,237.63196,4.404 2223,-70.32562,-189.01822,211.68417,455.7857,4.373 2223,-5.955112,232.23938,17.93193,40.170105,4.302 2223,568.18176,235.38643,28.675232,71.56706,4.301 2223,-13.337909,155.85294,47.612186,136.1203,4.293 2223,186.72382,222.41971,19.382889,38.484528,4.271 2223,-5.4269485,169.21153,18.812428,44.095444,4.236 2223,168.83975,219.73497,22.070755,41.663895,4.183 2223,11.180464,-14.20362,16.021109,36.065117,4.147 2223,-4.8552938,199.32822,17.87475,43.01027,4.052 2223,444.78198,198.78532,52.94867,127.471756,3.963 2223,540.9307,238.65422,30.64679,58.539413,3.959 2223,177.50777,220.79692,21.526276,40.69908,3.957 2223,1.5862763,165.77023,25.629124,61.662735,3.955 2223,357.7849,-4.13089,29.70993,79.449524,3.951 2223,589.9572,220.28574,48.643005,151.53757,3.946 2223,336.0283,220.32735,22.569092,39.69127,3.936 2223,-9.909009,186.61583,27.971783,67.311874,3.812 2223,497.09576,310.17984,33.863342,64.68414,3.76 2224,-5.2841988,-16.882072,17.094086,41.1856,7.469 2224,337.30695,220.79086,23.456879,47.968933,6.673 2224,-10.856119,-31.880655,29.20065,72.143234,5.984 2224,132.57654,167.62775,29.87532,79.62236,5.817 2224,612.98926,454.26666,39.73346,108.64484,5.789 2224,148.03387,173.0894,29.419403,72.817,5.729 2224,179.49503,254.6709,28.377258,63.929626,5.671 2224,-6.1655164,489.6479,18.811478,42.045166,5.637 2224,1.5058732,171.79341,20.959671,55.196854,5.226 2224,-11.723576,477.94507,29.767921,63.456177,5.223 2224,355.85767,31.979641,30.421082,101.878525,5.168 2224,611.60046,-50.613052,40.728638,105.396324,5.152 2224,627.30566,-17.02796,16.980103,45.29747,5.137 2224,583.19543,411.1726,71.5473,177.05615,5.071 2224,-72.67874,266.94482,200.71597,460.71838,5.008 2224,626.86597,488.2438,20.273071,45.611908,4.915 2224,-16.602938,-62.559563,55.696953,145.26123,4.822 2224,-21.805239,402.67157,79.25405,174.82361,4.777 2224,3.5363417,-14.52606,15.577092,37.880814,4.67 2224,-37.3364,-130.6375,116.895645,286.6249,4.628 2224,585.35956,-101.15153,76.30243,233.82663,4.614 2224,536.7298,311.27182,142.43439,340.7383,4.601 2224,34.65231,200.8588,40.90407,78.04245,4.579 2224,81.84867,178.53693,31.24865,73.537506,4.525 2224,489.61346,-179.44585,235.83789,424.78278,4.517 2224,-71.16096,-189.18796,212.70233,455.64038,4.442 2224,-3.8542843,167.2927,18.035145,46.626617,4.387 2224,421.48285,205.44324,38.182068,100.98016,4.384 2224,493.56052,226.33313,237.4838,516.53143,4.363 2224,-4.9487057,232.98228,17.34339,42.318466,4.293 2224,578.798,241.67397,30.817322,69.48381,4.06 2224,83.54718,228.2143,31.990913,77.13385,4.034 2224,-16.47091,187.71147,49.538303,131.06026,4.034 2224,128.83105,181.9988,22.329788,53.766113,4.02 2224,194.06076,245.77982,30.910568,67.06094,3.983 2224,-14.1411295,123.79667,49.033012,139.40472,3.929 2224,433.42145,40.975742,32.702698,89.9906,3.919 2224,490.80518,298.64417,32.884766,54.963196,3.914 2224,27.18195,-14.049887,15.614193,36.679104,3.908 2224,66.670456,209.77072,48.41638,119.36655,3.895 2224,436.86835,198.70615,37.599,97.20743,3.838 2224,451.79437,197.70972,38.30017,99.310486,3.698 2224,356.35333,-16.26192,31.157318,74.85756,3.686 2224,19.680777,214.3677,41.152344,75.51218,3.624 2224,13.486161,150.77179,54.735344,120.012726,3.607 2224,378.22333,-15.576628,17.588867,44.121834,3.558 2224,10.753446,-14.868092,15.912736,37.39986,3.544 2224,624.02655,-21.546968,26.39215,71.7006,3.543 2224,388.68057,191.87498,18.882538,44.74257,3.452 2224,566.9123,240.70593,29.770508,67.61456,3.449 2224,354.7353,-16.736324,17.22113,45.131,3.448 2224,138.21576,-17.74316,17.434204,41.075397,3.429 2224,475.30377,303.1446,30.87024,55.520996,3.397 2224,35.04959,-13.6921,15.937023,36.12817,3.382 2224,620.20044,-15.928101,16.300781,40.043324,3.372 2224,316.8762,-18.738117,57.38501,133.26927,3.343 2224,19.460848,-13.709352,15.564268,36.37459,3.342 2224,474.6217,315.21265,34.175873,90.43057,3.338 2224,-9.452268,108.755936,39.5259,97.88765,3.332 2224,-4.386511,1.2189217,16.121735,40.960205,3.33 2224,0.0222826,199.22997,50.15305,111.4265,3.304 2224,3.284161,239.43854,39.45048,94.999146,3.287 2224,597.36304,460.81354,38.944214,100.388306,3.277 2224,-9.410076,-6.4242783,39.85646,101.035355,3.276 2224,618.6668,490.5732,20.565247,42.417145,3.259 2225,358.35892,229.41864,25.074066,50.570435,22.28 2225,384.94418,10.324875,31.731567,84.2034,7.042 2225,-5.507313,-17.34486,17.367756,42.098793,6.821 2225,-5.821184,489.34662,18.272106,41.94171,6.135 2225,224.28629,215.68211,20.059906,45.36656,5.806 2225,-10.952563,-31.944683,29.737179,72.15982,5.71 2225,-8.871907,463.70364,37.464798,93.348236,5.572 2225,623.1776,-34.121117,26.381104,76.20295,5.508 2225,345.83118,226.63033,24.909515,46.106125,5.447 2225,194.4661,228.70451,31.296448,63.110245,5.304 2225,603.28345,-56.034172,52.34253,132.43498,5.259 2225,613.32404,454.13068,39.157288,108.20331,5.184 2225,-41.27822,359.037,113.54688,279.9148,5.146 2225,627.2755,-18.218616,17.126404,47.131752,5.101 2225,-72.7975,266.01624,201.08798,461.31897,5.067 2225,583.13916,410.9406,71.53992,177.25922,5.046 2225,-16.957113,-63.541553,55.664307,144.46129,5.031 2225,212.7809,220.19994,29.469467,65.82704,4.931 2225,486.63257,210.95026,27.901611,66.27557,4.893 2225,490.49786,-180.7975,234.8725,426.64432,4.811 2225,-9.988272,373.21423,39.53238,101.05267,4.737 2225,585.7486,-99.72666,75.392456,230.70526,4.719 2225,-37.347507,-130.67198,117.04378,286.81854,4.657 2225,536.5441,310.61368,143.25934,341.42807,4.642 2225,-21.449223,398.424,78.739426,178.8988,4.632 2225,593.5733,-43.719963,45.308594,93.91086,4.585 2225,626.4202,487.30984,20.942444,46.874603,4.543 2225,493.63672,226.76874,237.20996,515.5936,4.522 2225,472.84665,216.89091,22.01236,41.865158,4.377 2225,-70.86014,-189.88367,212.42567,456.971,4.357 2225,541.1944,217.56133,30.269165,61.255386,4.265 2225,462.39444,212.05609,26.795929,56.374207,4.254 2225,469.61047,207.82053,36.782898,79.11716,4.223 2225,3.4138203,-15.147404,16.146662,38.85892,4.073 2225,34.594704,170.14624,40.809395,102.905304,3.991 2225,517.41016,211.1432,39.683716,93.47398,3.986 2225,585.3258,-16.12479,35.069336,67.33249,3.94 2225,619.599,-6.1353903,19.012817,41.999973,3.774 2225,189.03868,245.07799,31.784683,63.601456,3.769 2225,12.178974,161.73927,51.23174,118.57237,3.738 2225,362.2915,-17.323612,17.739594,43.48352,3.735 2225,500.63907,212.45416,39.411957,89.99786,3.709 2225,484.12106,220.03601,41.052094,96.63397,3.699 2225,614.27106,-19.894909,28.065979,70.94636,3.695 2225,131.69888,210.5777,40.422882,97.40765,3.693 2225,480.8653,219.86578,22.66748,47.15988,3.685 2225,127.77444,237.84312,22.114662,48.166428,3.661 2225,2.340958,-41.48118,43.03459,100.44157,3.592 2225,-8.720318,193.94159,38.592525,108.92453,3.585 2225,548.4311,206.27727,40.218567,105.46684,3.579 2225,411.91724,-8.114922,54.695557,124.675514,3.579 2225,11.791323,-36.981293,56.760117,134.72952,3.577 2225,524.73737,201.95265,54.452698,138.52269,3.57 2225,223.53731,236.1962,23.223343,48.88739,3.566 2225,339.13727,223.12785,22.03595,40.48552,3.528 2225,444.4507,221.36664,29.530762,62.7865,3.488 2225,461.3322,206.87576,52.032104,130.23337,3.474 2225,42.206757,164.8324,55.442993,145.75201,3.462 2225,393.17734,175.04776,26.339142,72.12271,3.459 2225,-9.688499,-7.8056984,40.37048,101.99094,3.384 2225,461.19354,214.6654,15.237976,29.108765,3.378 2226,518.5039,220.74394,22.907043,59.903397,52.846 2226,505.443,223.17581,22.50885,53.320038,39.48 2226,496.60184,222.74155,21.403107,51.368774,23.662 2226,506.84848,213.74873,31.605377,86.310104,12.579 2226,381.2518,242.34938,26.525574,64.32683,12.518 2226,365.2138,229.28494,30.497406,71.28793,9.741 2226,489.4065,216.25984,31.938477,85.80513,9.403 2226,516.9872,217.84453,34.293762,91.44063,9.273 2226,-5.059712,-16.296352,16.886667,40.944294,7.907 2226,400.6944,243.91254,22.666656,52.18573,7.791 2226,-10.697989,-32.031025,29.243832,72.65948,6.783 2226,394.25525,5.575245,32.62793,83.42114,6.211 2226,-8.605387,464.9585,37.510292,91.70874,5.65 2226,-6.1626935,489.65292,18.755585,42.007782,5.599 2226,368.86768,222.57986,20.60431,44.05954,5.492 2226,613.12787,454.6309,39.539062,107.48099,5.457 2226,626.70404,488.26184,20.460815,45.621155,5.393 2226,149.55566,290.83182,30.851974,68.265594,5.283 2226,623.15283,-34.242676,26.398254,74.21873,5.225 2226,603.3473,-55.87851,52.69922,137.59158,5.139 2226,627.7279,-17.787605,16.819275,45.713226,5.127 2226,583.06067,411.55618,71.51892,176.90768,4.975 2226,-72.22825,267.72595,199.99716,460.15063,4.96 2226,-17.198526,-63.353313,55.718605,144.59946,4.958 2226,472.5144,216.27353,34.091248,89.092316,4.929 2226,491.02887,-182.01546,234.62067,427.44333,4.824 2226,376.99567,227.35747,19.722351,44.177902,4.823 2226,391.13678,244.71608,22.809113,54.2827,4.811 2226,-21.769386,402.0104,79.581314,175.23703,4.788 2226,536.4196,310.27032,143.5716,341.2829,4.77 2226,3.7707539,-13.7316675,15.232582,37.15694,4.724 2226,-10.902493,266.19058,31.159027,70.41641,4.7 2226,531.7063,222.14053,36.817444,94.127716,4.642 2226,-37.37802,-129.72775,117.06475,283.19922,4.612 2226,585.8083,-101.81665,75.64325,234.21785,4.581 2226,494.24533,228.68234,236.63065,513.8539,4.499 2226,347.37506,-12.051071,58.17459,129.02052,4.377 2226,-7.2120476,263.35486,21.211073,47.439056,4.313 2226,-70.80766,-188.96268,212.33214,455.58673,4.287 2226,379.7798,-4.509861,52.840088,118.67793,4.245 2226,410.81985,189.79475,17.714691,49.679245,4.207 2226,132.6766,289.0105,30.51384,65.85367,4.189 2226,480.26,217.41057,49.09558,128.05013,4.158 2226,108.20701,198.6528,30.270912,64.74069,4.068 2226,361.6737,241.8459,23.73059,50.388077,4.005 2226,2.6081252,264.37445,29.760294,75.57291,3.95 2226,595.19104,-46.832115,43.398376,101.197815,3.947 2226,384.8192,236.43489,20.47403,44.588486,3.929 2227,567.38306,231.49881,25.537231,67.0314,43.194 2227,521.8372,229.67517,25.781555,60.828552,28.723 2227,553.3965,233.71127,21.686157,57.629456,26.207 2227,554.442,226.48459,33.693848,89.5535,10.251 2227,436.5241,282.70642,27.781555,85.32272,7.441 2227,-5.469494,-17.60789,17.273651,42.38263,6.874 2227,382.04837,246.54526,27.870697,71.71417,6.42 2227,581.91437,230.14812,35.612732,104.83559,6.028 2227,542.54175,232.01,29.350708,76.95528,6.004 2227,-10.819707,-32.160816,28.917534,72.40287,5.862 2227,627.17804,-18.305214,17.116272,46.51991,5.633 2227,623.01215,-34.283222,26.446411,75.31855,5.571 2227,-6.3110723,489.24973,19.075691,42.272736,5.569 2227,-12.168009,476.7481,30.09988,64.14368,5.312 2227,538.869,231.29622,57.439392,151.78636,5.293 2227,613.30743,454.88266,39.18976,107.23685,5.191 2227,-72.986916,266.90634,200.88448,460.99588,5.137 2227,517.06226,233.31186,38.01941,99.22571,5.103 2227,385.68875,243.54243,19.487885,43.010544,5.081 2227,-21.942028,402.34903,79.58316,175.24234,5.02 2227,-17.15628,-62.826195,56.012695,143.38719,4.98 2227,582.9466,410.6646,71.8327,177.89856,4.97 2227,536.5908,309.49994,143.45532,341.00677,4.939 2227,561.06134,222.25067,43.841064,118.71356,4.932 2227,598.93756,228.8706,34.362732,110.279724,4.868 2227,532.96375,-182.44717,147.97021,423.8556,4.803 2227,603.65796,-57.0602,52.65393,138.44972,4.802 2227,626.5833,487.50613,20.690552,46.765656,4.685 2227,-5.614685,186.1348,17.021065,40.939392,4.611 2227,585.79004,-101.64301,75.51489,235.29202,4.568 2227,547.17004,226.25903,21.296692,53.525818,4.561 2227,494.10538,228.807,237.05368,513.23505,4.54 2227,429.919,249.1941,50.13617,126.08153,4.521 2227,380.61612,-6.4891434,31.125824,80.36999,4.492 2227,3.1042857,-14.84029,15.987213,39.52315,4.424 2227,386.4241,228.06906,19.406708,42.795074,4.416 2227,402.94235,252.58865,18.52304,40.915436,4.41 2227,532.0473,229.21268,29.24591,76.77167,4.387 2227,398.54996,247.68515,26.643707,71.6579,4.315 2227,510.58087,238.91238,31.114624,75.80835,4.277 2227,378.92337,251.11444,20.418854,40.894592,4.221 2227,-37.630497,-128.74939,117.12373,283.21063,4.18 2227,-4.5684137,205.11436,16.557472,39.40979,4.161 2227,-70.26381,-188.974,211.96346,455.79846,4.092 2227,410.8225,1.5842476,31.13623,82.61856,4.077 2227,449.16885,269.5704,40.392548,101.19736,4.062 2227,99.17456,221.17627,42.14096,90.05176,4.053 2227,494.98996,230.78134,52.544525,134.46512,4.038 2227,115.244125,239.3111,43.178223,85.141235,3.986 2227,594.9727,-47.3661,43.351135,101.35687,3.976 2227,3.9865136,211.56564,38.22121,98.038086,3.968 2227,410.74664,246.89474,18.316315,36.049713,3.944 2227,531.8827,239.20245,41.483704,114.19275,3.943 2228,594.1227,195.15724,24.956665,64.80971,70.68 2228,566.7309,198.93001,27.438354,62.2704,28.627 2228,416.8829,177.06253,24.96695,78.32565,15.982 2228,599.00183,184.6142,29.203064,95.946686,14.0 2228,425.96973,177.81451,19.682587,59.037506,7.529 2228,-5.0205803,-17.324179,16.8816,41.743427,7.186 2228,411.01974,183.00726,20.32727,60.09198,6.677 2228,-10.810113,-31.810753,29.517086,72.06604,6.104 2228,412.23666,210.47049,29.473816,86.49603,6.074 2228,337.79556,193.65025,20.05127,41.689285,6.049 2228,583.3656,194.22961,36.536255,109.4957,6.04 2228,0.89758873,141.48648,25.736502,79.28348,5.582 2228,-6.2272654,489.22308,19.034382,42.551147,5.498 2228,627.3661,-17.4928,16.985718,46.18964,5.459 2228,-12.083782,477.14023,30.498617,63.826324,5.433 2228,372.89087,-1.7358818,29.414276,64.648155,5.38 2228,-73.1746,266.72052,201.53064,461.30328,5.352 2228,587.11176,194.72456,21.406921,55.793,5.222 2228,613.10535,454.83395,39.428894,107.75894,5.182 2228,392.24564,-0.40483665,22.614777,48.523613,5.17 2228,626.9546,488.459,20.218994,44.837128,5.159 2228,610.9113,-48.237087,41.58197,100.437904,5.097 2228,-40.890278,360.0476,112.06682,280.8045,4.871 2228,84.735275,256.2389,36.4812,79.533325,4.797 2228,490.0428,-182.62743,235.77393,426.42126,4.786 2228,-17.803812,-65.90786,56.181694,149.6341,4.768 2228,536.4356,309.75626,142.85571,343.34384,4.703 2228,-21.323633,400.0384,79.10926,177.0307,4.695 2228,583.3123,411.90894,71.427795,176.8739,4.636 2228,67.86784,163.30289,40.502937,93.192474,4.59 2228,598.56104,207.40808,36.885376,116.51807,4.52 2228,3.5283895,-14.32686,15.568722,38.223995,4.471 2228,586.34076,-103.7655,75.85297,237.07568,4.461 2228,-5.9755383,231.84914,18.29222,44.00508,4.414 2228,606.6944,189.8691,23.939392,59.588745,4.388 2228,493.44025,227.12766,237.36877,516.494,4.378 2228,402.93948,174.19872,18.060638,56.28743,4.375 2228,420.47787,190.70761,36.47946,89.54526,4.33 2228,-14.889505,150.11499,49.20781,143.47583,4.296 2228,83.2877,164.9834,41.392036,93.9082,4.123 2228,-70.89308,-188.42767,212.53862,454.46976,4.069 2228,613.48883,214.21336,35.338806,114.742935,4.065 2228,28.747143,169.03769,54.38959,122.348816,4.011 2228,-37.04021,-133.22409,117.63547,292.90305,3.986 2228,-9.590273,312.38245,39.335617,99.34097,3.981 2228,573.49854,197.8739,52.600464,165.98407,3.979 2229,449.27353,210.67876,22.329987,55.022324,50.453 2229,463.3394,210.42036,21.352661,58.664047,48.322 2229,432.73148,208.01025,22.139313,50.542694,18.025 2229,439.1023,204.74396,25.396545,61.6398,13.993 2229,353.92493,222.88982,20.950317,42.4048,13.935 2229,387.80322,-1.0480003,31.062683,67.59398,8.079 2229,-5.760807,-17.305984,17.80743,43.517178,7.052 2229,-10.964344,-31.78149,29.678543,74.20072,6.982 2229,426.4664,215.80676,25.79895,63.207825,5.823 2229,453.34872,192.3768,35.90396,81.77045,5.751 2229,-11.955688,477.72552,30.256443,63.465454,5.554 2229,627.32904,-17.92518,17.051208,46.763885,5.478 2229,-6.2569714,489.50275,18.866438,42.169067,5.404 2229,613.2062,453.76172,39.39911,108.49231,5.369 2229,492.6445,270.47815,63.840546,132.29657,5.17 2229,373.03546,-4.539589,30.585785,71.70921,5.155 2229,-72.5786,266.6115,200.32054,459.9923,5.037 2229,626.5007,487.73892,20.549988,46.100067,5.035 2229,-17.43551,-64.87183,55.884277,148.66191,5.019 2229,401.8825,-0.7231827,32.194702,65.63212,5.017 2229,623.0892,-34.26932,26.230408,76.324486,4.997 2229,583.2154,411.09595,72.06073,176.84625,4.981 2229,602.9473,-56.720757,53.24774,139.63806,4.913 2229,51.104576,90.56204,30.501984,76.14285,4.879 2229,-21.5522,403.2311,79.028824,174.3652,4.843 2229,536.21686,310.2201,143.58673,342.09875,4.828 2229,2.8759837,-15.638807,16.415508,40.938828,4.823 2229,490.5166,-181.60359,235.52368,425.10876,4.75 2229,585.9096,-103.175,75.94183,236.2394,4.654 2229,493.65417,228.02594,237.06348,514.5934,4.625 2229,13.999388,151.59256,52.830627,114.243866,4.301 2229,507.886,306.33875,41.016357,90.646576,4.241 2229,44.659286,175.79047,29.265434,69.19682,4.215 2229,-37.24028,-133.48462,118.173676,293.60016,4.194 2229,-70.3124,-188.60544,211.94629,455.36603,4.188 2229,-4.234768,94.75079,17.074944,37.895905,4.049 2229,516.1426,259.58893,64.029175,135.29224,3.975 2229,-4.9993095,0.9012604,17.700401,44.655464,3.95 2229,4.4756937,190.53954,38.861637,99.22743,3.947 2229,76.65352,214.10336,32.255997,65.17117,3.918 2229,202.1091,211.49728,19.818619,35.295914,3.831 2229,483.54645,180.40776,29.953674,78.573074,3.83 2229,419.93512,-18.165268,31.4888,69.28679,3.823 2229,-5.628311,231.9095,17.78828,38.16304,3.794 2229,-13.033114,149.44838,47.93024,139.70891,3.75 2229,-5.127948,153.29324,16.866772,44.774994,3.687 2229,468.571,196.23941,27.827972,74.20535,3.662 2229,30.436438,164.59898,51.676437,118.511185,3.65 2229,-10.08585,-3.9881248,41.18601,100.429016,3.618 2230,522.62317,212.82979,29.455933,81.86784,78.789 2230,509.0763,214.1937,27.815918,70.92697,33.641 2230,370.63898,236.56439,24.653534,48.0343,13.195 2230,488.12564,214.84422,22.81189,48.469772,9.03 2230,489.65045,207.24792,32.591553,82.49243,7.879 2230,-0.19795775,165.7861,31.13857,78.0847,7.584 2230,-5.3054085,-16.846176,17.191975,41.60774,6.597 2230,626.7386,487.6481,20.174316,46.240204,6.103 2230,-6.373502,489.2818,18.908592,42.420715,5.972 2230,627.1252,-18.006079,17.460388,47.266373,5.924 2230,-11.078597,-32.528053,29.884354,72.04485,5.918 2230,478.79596,215.36533,27.447357,62.72867,5.824 2230,-12.463787,477.67606,30.818108,63.221283,5.66 2230,622.89606,-33.94552,26.69696,77.85353,5.43 2230,612.7814,455.7807,38.976562,105.88422,5.321 2230,-17.681145,-64.54359,55.65233,146.32133,5.227 2230,-72.711296,266.282,200.70917,461.3116,5.166 2230,582.9557,412.6208,71.72803,175.64813,4.993 2230,603.06464,-56.540283,53.0235,140.81418,4.969 2230,-21.621115,402.867,79.13549,175.01318,4.917 2230,490.9566,-182.47997,235.73376,425.9642,4.915 2230,536.2732,310.22327,143.96393,341.74866,4.838 2230,-4.8797665,76.77355,16.814802,41.550293,4.721 2230,510.72018,186.70695,51.178864,111.14238,4.676 2230,389.40753,-16.004961,29.798584,67.98495,4.647 2230,372.70016,-15.117477,30.660126,73.14669,4.597 2230,473.55484,212.8542,21.981659,52.380417,4.592 2230,586.2586,-103.90379,75.45734,237.82953,4.591 2230,494.83685,228.67154,236.27734,513.4541,4.582 2230,531.13275,200.10098,30.161926,72.98346,4.546 2230,398.0623,-34.246372,28.238434,74.252945,4.491 2230,210.49155,230.84183,18.048523,28.010406,4.49 2230,203.67963,230.49896,17.389114,28.69159,4.381 2230,-36.9853,-131.46503,117.628235,285.76605,4.341 2230,-5.2090874,45.482864,17.71283,39.29799,4.226 2230,381.30997,234.51254,24.778748,45.500793,4.198 2230,-70.26967,-188.73624,211.92603,456.42053,4.19 2230,3.1234574,-13.85443,15.867552,37.04715,4.166 2230,455.78516,202.47655,35.375275,89.293045,4.165 2230,359.11908,214.84952,36.027466,80.532196,4.142 2230,196.30597,208.26924,39.190933,69.9268,4.113 2230,-5.7077694,61.071304,18.372805,40.80426,4.085 2230,194.15082,222.62733,20.74823,31.934586,4.003 2231,541.74976,220.30511,27.355408,48.467773,79.268 2231,598.3017,213.75334,34.069275,96.95686,32.548 2231,526.1408,220.73819,25.58075,47.217255,22.499 2231,611.428,218.10332,27.149963,78.46797,8.789 2231,-10.951844,-33.432644,29.598991,75.80761,6.691 2231,436.59735,225.58626,30.58319,60.56343,6.639 2231,-5.350772,-17.886726,17.437145,44.431385,6.621 2231,546.60443,214.2979,39.599426,77.39989,6.512 2231,530.7661,213.16824,41.645752,89.03311,6.354 2231,447.79117,230.61435,24.590973,44.374237,6.303 2231,578.487,211.81613,47.50879,138.56668,6.231 2231,627.28107,-17.956745,17.01709,46.940918,6.114 2231,-6.2741404,489.68185,18.91101,41.769928,6.048 2231,622.90625,-33.85272,26.29956,76.54823,5.94 2231,564.8253,199.02426,33.561462,65.07547,5.887 2231,564.1639,215.99614,39.0213,82.32771,5.789 2231,-12.219627,478.9665,30.659191,61.785828,5.662 2231,613.23944,453.2872,39.39966,108.690704,5.628 2231,395.32343,237.50087,32.802185,73.61238,5.56 2231,-72.73807,266.45184,200.72818,461.7923,5.261 2231,124.41397,224.28653,29.582489,57.656982,5.149 2231,-21.572344,402.7438,79.10591,175.173,4.989 2231,536.2709,309.64777,144.20728,342.42487,4.939 2231,582.913,411.8452,71.61127,176.12512,4.906 2231,540.1229,214.5451,55.999756,129.71576,4.88 2231,490.78638,-183.31064,235.45264,425.7022,4.876 2231,410.4147,240.73335,32.344116,74.29033,4.852 2231,-17.622534,-63.34205,56.123672,144.87584,4.829 2231,458.9239,225.98723,33.096985,54.477005,4.817 2231,603.06854,-57.398254,53.307922,138.69772,4.728 2231,494.33948,229.3052,236.4671,512.82935,4.617 2231,-70.73368,-188.95178,212.09396,455.83597,4.576 2231,108.151695,223.45932,30.36454,62.6687,4.572 2231,-36.916004,-131.37529,116.900055,285.82132,4.544 2231,626.5097,487.66647,20.734314,46.4133,4.527 2231,519.11035,209.61052,41.220154,65.534134,4.462 2231,511.69122,222.38803,29.994812,60.715668,4.439 2231,0.051443577,11.476517,24.999407,77.82587,4.428 2231,145.01741,226.60687,24.537811,42.41504,4.401 2231,612.1722,223.67923,36.161316,121.285645,4.383 2231,434.00436,223.64478,22.45993,43.92096,4.359 2231,2.5486612,-16.660759,16.961338,42.777557,4.322 2231,586.46375,-105.29786,75.77173,238.00314,4.312 2231,132.86084,205.99411,39.514038,75.07321,4.257 2231,426.8452,238.4528,32.389526,63.80104,4.25 2231,4.3162274,207.45395,30.326534,71.72128,4.248 2231,589.7,179.88919,55.41913,194.61508,4.215 2232,-5.213396,-16.714436,17.42649,41.77093,7.03 2232,503.93094,228.49956,24.43814,44.402084,6.401 2232,-6.03575,489.0213,18.541643,42.26483,6.132 2232,-11.54593,-32.595234,30.022655,72.911804,5.931 2232,-12.144184,477.04364,30.352013,63.508423,5.795 2232,15.461218,183.13748,49.341797,111.96533,5.442 2232,35.73333,182.68819,40.03962,85.82292,5.428 2232,613.11957,454.04608,39.344482,108.022705,5.423 2232,627.3247,-17.58049,16.943237,45.25841,5.246 2232,-73.00216,266.22113,201.09863,461.4945,5.209 2232,-8.369731,15.730114,37.657665,110.632614,5.046 2232,623.2913,-34.608852,25.881287,75.25651,4.962 2232,626.5243,487.6545,20.746521,45.92691,4.954 2232,-21.629234,402.55914,79.13553,175.3565,4.924 2232,582.98804,410.89,71.727234,177.2013,4.881 2232,536.09424,310.40338,144.06458,341.57758,4.841 2232,-71.00396,-188.46608,212.10571,455.89,4.824 2232,-10.230705,-19.058168,39.59512,102.0035,4.802 2232,483.797,217.36119,40.60327,73.21959,4.782 2232,515.2585,222.58931,32.421753,66.92976,4.735 2232,490.95587,-182.965,235.20166,426.51852,4.731 2232,602.6803,-56.232193,53.27356,139.59001,4.73 2232,4.378755,194.79378,37.84634,107.36391,4.694 2232,494.07672,228.1607,236.50427,513.5134,4.623 2232,510.7519,232.5887,25.651855,49.40193,4.61 2232,-37.253845,-131.04312,117.19908,286.90738,4.579 2232,9.738526,-17.983372,58.98909,137.41025,4.577 2232,586.0538,-105.25341,76.10016,241.24197,4.563 2232,-19.646666,-90.43317,71.59075,202.25163,4.546 2232,40.28695,190.49007,20.539047,39.924225,4.364 2232,498.96167,223.01631,40.576782,76.46846,4.353 2232,59.11519,197.1285,16.758438,31.293457,4.292 2232,4.430271,171.79948,28.369904,69.46582,4.231 2232,489.16382,230.77533,21.913605,38.932556,4.224 2232,510.03198,210.681,51.481445,110.629395,4.173 2232,528.38965,226.64722,22.646301,46.32602,4.153 2232,-12.050658,159.89026,47.14771,138.25916,4.113 2232,42.213295,-13.661747,57.661507,124.25096,4.063 2232,53.315372,195.2798,36.232113,81.92677,3.966 2232,453.86377,213.5712,39.27002,77.010925,3.955 2232,49.987797,194.59769,17.855587,35.216904,3.944 2232,-7.0766997,212.40924,36.81769,104.73779,3.938 2232,467.037,228.09142,42.423584,85.992966,3.901 2232,531.92847,223.77975,30.985718,69.936646,3.899 2232,66.929085,194.63037,17.009132,32.1409,3.889 2232,476.63663,226.66154,29.328186,53.577377,3.885 2232,574.04236,284.1256,51.75775,144.59988,3.877 2232,574.50433,201.00397,52.94513,130.12726,3.788 2232,574.95245,343.15793,39.113525,68.98465,3.772 2232,125.588486,200.34863,53.41931,102.2966,3.753 2232,542.2368,209.30978,52.460144,117.13318,3.743 2232,429.74048,-0.16510391,31.491272,68.83063,3.737 2232,5.8469677,250.90921,37.25248,103.99179,3.734 2232,-16.074564,81.77282,50.805687,151.90463,3.73 2232,-4.5254536,189.8684,18.180517,46.168503,3.708 2232,594.7014,-46.007996,44.148193,101.97845,3.702 2232,42.936592,221.8418,32.890564,64.14731,3.693 2232,392.318,221.31235,20.126404,39.559174,3.692 2232,29.58332,179.46605,29.048328,57.38907,3.687 2232,413.2309,-35.015003,28.898743,74.58243,3.687 2232,2.768221,-15.378806,16.383894,39.51288,3.66 2232,-8.936467,68.12221,38.279144,107.29103,3.637 2232,-0.3693068,266.5852,27.449522,65.77289,3.635 2232,425.01013,-4.7450085,22.890808,53.065758,3.626 2232,26.81098,-15.519461,17.166956,38.50245,3.625 2232,379.6428,215.94849,28.364288,58.52774,3.597 2232,-4.874874,122.00265,17.127075,44.020607,3.585 2232,410.91977,-5.2684593,29.84909,66.91808,3.579 2232,365.8229,-21.093782,31.043549,72.494865,3.572 2232,51.861156,15.883234,32.141224,62.115982,3.557 2232,-4.9997325,139.23679,16.732033,43.004913,3.506 2232,620.1082,-17.778233,16.153809,41.695007,3.472 2232,-8.433048,184.42288,60.72389,174.22974,3.462 2232,66.52157,176.94786,19.701744,36.28676,3.46 2232,581.37604,190.59201,26.220947,65.7789,3.458 2233,384.91455,232.33673,22.688477,52.458252,11.355 2233,390.4015,235.48685,25.340118,64.966,9.473 2233,-5.8924046,-17.99308,18.326052,43.02739,7.041 2233,-11.372523,-31.528742,29.674313,70.663734,6.253 2233,127.78139,208.03287,32.50737,64.43396,6.042 2233,627.4023,-17.401379,17.19806,46.058483,5.868 2233,-12.458817,477.30707,31.106546,62.851562,5.867 2233,-6.2230644,489.0185,18.804638,42.223877,5.781 2233,-72.9382,265.6379,201.06326,462.04752,5.205 2233,626.4522,487.79446,20.797302,46.446625,5.198 2233,610.9846,-48.781425,41.776245,102.32023,5.094 2233,582.9651,412.0176,71.65991,176.29953,5.067 2233,490.443,-182.68927,235.05066,427.60498,5.015 2233,-16.995344,-64.07464,55.9292,146.76834,4.976 2233,-21.610384,402.82913,79.22296,174.98141,4.908 2233,517.14,184.4172,38.644226,89.789215,4.905 2233,612.83575,455.08655,39.564026,106.72705,4.865 2233,586.276,-102.8425,75.105774,237.00818,4.865 2233,536.37134,310.04468,143.75183,342.2483,4.841 2233,-1.5287995,239.115,26.765789,73.78615,4.79 2233,-70.60431,-188.83868,211.7789,456.13986,4.746 2233,394.49713,223.45468,30.170471,59.455597,4.598 2233,493.79337,227.32468,236.7363,514.5773,4.557 2233,379.0703,242.09802,21.422485,45.746582,4.545 2233,-36.92462,-132.01521,116.74129,284.87454,4.483 2233,2.7838712,-16.142235,17.607597,40.058865,4.475 2233,532.788,185.62679,37.98816,86.03145,4.232 2233,-0.3777194,190.83371,48.212963,119.619965,4.142 2233,-4.658848,173.1211,16.981192,37.776947,4.114 2233,24.660362,250.99103,25.60759,53.863464,4.096 2233,35.983196,215.93005,39.303944,84.77832,4.049 2233,548.5345,186.00192,39.021973,86.06424,4.028 2233,2.7762384,182.62595,18.820164,42.794327,4.003 2233,-8.200764,-7.1875687,39.242733,102.58215,3.846 2233,60.87296,207.04404,53.681576,110.20419,3.84 2233,-4.5947566,186.60153,17.275093,42.21457,3.828 2233,-16.196777,203.7923,51.072357,144.12823,3.822 2233,-4.7001147,158.47289,16.401737,36.269775,3.798 2233,11.63459,-24.666195,57.807327,133.58397,3.761 2233,51.763,211.62927,39.79988,79.00906,3.747 2233,501.9385,182.68916,37.910614,94.54314,3.739 2233,-10.163309,169.25581,27.967123,66.24455,3.685 2233,121.644516,237.84749,22.596344,42.106308,3.682 2233,82.97534,211.98444,40.925903,76.946594,3.68 2233,583.6044,183.44948,37.332275,91.45097,3.632 2233,453.8159,-2.8780537,30.871796,62.549652,3.621 2233,555.1464,-16.423786,16.50592,39.15309,3.615 2233,619.97565,-17.3438,16.689148,42.423042,3.588 2233,2.126801,217.98982,31.755959,65.08214,3.58 2233,84.58515,241.49535,30.099968,56.702286,3.541 2233,484.91956,192.80199,39.206543,99.19261,3.53 2233,612.66077,202.84355,36.846375,109.03694,3.503 2233,34.8229,158.47374,33.31514,56.321747,3.492 2233,14.266267,186.2752,53.893784,108.48471,3.488 2233,428.37787,241.09546,29.155548,62.19751,3.483 2233,599.3305,174.7518,35.212708,101.91107,3.448 2233,452.23218,175.60141,39.93274,87.48804,3.431 2233,2.8222494,170.48897,18.210674,34.139343,3.425 2233,54.802666,183.80174,23.981201,41.14801,3.407 2233,22.194447,166.17996,30.080997,58.79619,3.399 2233,-7.225907,174.32852,37.563736,93.14606,3.394 2233,572.4853,-22.449818,54.48517,134.81543,3.369 2234,429.04346,256.6447,32.13559,79.69284,11.93 2234,134.25558,235.60164,24.555847,34.919754,10.996 2234,-4.94386,-16.196419,16.988422,41.198563,7.117 2234,474.47757,305.74442,29.882538,67.35318,6.304 2234,-6.2437897,489.46283,18.878513,42.232483,5.754 2234,-3.073728,261.05466,27.675827,75.541016,5.721 2234,539.18335,232.9866,32.10034,70.648315,5.531 2234,613.0754,453.9699,39.347168,108.133606,5.415 2234,-12.352003,477.102,30.597076,63.87561,5.399 2234,-12.929537,-40.71111,41.855743,102.65962,5.319 2234,-73.07826,265.01746,201.48543,463.50085,5.308 2234,627.41614,-18.472044,17.358948,47.51595,5.159 2234,610.6908,-48.413788,42.106995,100.012344,5.053 2234,3.66018,-14.072149,15.968839,37.16283,5.035 2234,626.5737,487.70316,20.595703,46.15396,5.02 2234,582.32745,222.13773,37.827454,104.9364,4.971 2234,490.87524,-182.60754,234.69574,427.3999,4.958 2234,405.8145,211.5513,27.483673,67.631226,4.922 2234,583.04504,410.546,71.6189,177.82535,4.894 2234,-21.633427,402.16864,79.25409,175.46869,4.853 2234,536.8601,310.325,143.06311,340.9007,4.819 2234,410.00513,209.81923,19.09143,37.9608,4.81 2234,572.26733,228.7864,31.159302,66.94513,4.69 2234,170.51828,227.37135,19.950684,29.765182,4.689 2234,598.6974,213.77008,35.462708,105.59448,4.613 2234,376.81604,244.87012,21.086487,37.756042,4.605 2234,586.0188,-103.18832,75.55176,236.69891,4.568 2234,433.705,224.76566,41.514496,94.907135,4.555 2234,493.91217,227.36514,236.80035,514.5768,4.51 2234,-70.43781,-188.46066,211.55258,455.04358,4.502 2234,-19.63079,-91.758896,71.43598,202.72012,4.421 2234,512.4518,205.97633,22.58075,37.680725,4.404 2234,445.5032,255.88986,25.196564,55.813416,4.349 2234,-37.1122,-132.28235,116.84703,287.42105,4.323 2234,380.36548,250.427,30.054718,56.781128,4.155 2234,177.86009,220.15378,21.15007,36.434875,4.146 2234,612.935,235.27101,35.47284,107.759964,4.138 2234,44.24664,229.82391,31.076458,66.75635,4.07 2234,-3.7475526,231.94138,29.47111,70.43555,4.065 2234,442.96234,204.87744,54.982635,127.926575,4.059 2234,-5.951641,208.19174,18.642906,44.905746,4.054 2234,113.64035,230.46214,20.003845,33.06041,4.044 2234,399.85675,230.08556,28.23944,65.158585,4.036 2234,65.56273,214.81514,34.648666,60.818253,4.034 2234,362.1738,263.3666,21.35196,34.90164,4.025 2234,-9.328986,288.52277,38.691475,108.01865,3.994 2234,556.66254,230.23232,31.669922,68.24364,3.991 2234,-4.384324,170.92004,16.449944,41.717987,3.96 2234,585.0371,232.09709,24.049622,52.742905,3.923 2234,377.91824,260.3093,21.503143,39.596344,3.898 2234,162.13751,227.8281,21.14589,31.683105,3.866 2234,454.39743,249.40208,25.663147,49.858505,3.788 2234,613.49133,147.50755,35.36621,103.83443,3.747 2234,-5.4240074,290.42746,18.698347,45.87433,3.719 2234,-0.9255099,-33.101948,27.21656,67.21435,3.713 2234,483.66614,199.37888,41.36554,96.44791,3.697 2234,467.03693,214.17773,42.185547,97.93933,3.69 2234,619.66974,-18.26176,17.075195,43.82419,3.684 2234,28.35269,261.44806,30.42055,63.17932,3.629 2235,-5.06958,-16.632988,17.192173,42.787514,8.538 2235,-10.527611,-32.63594,29.244959,74.86074,7.551 2235,-6.1082706,489.75983,18.429714,41.275635,6.224 2235,627.2927,-17.729935,16.841736,46.572815,6.004 2235,613.32306,453.1981,39.36969,109.28616,5.874 2235,623.1244,-33.68688,26.097961,76.83388,5.579 2235,-12.224611,479.27423,30.243093,61.5661,5.556 2235,3.133388,-14.126774,16.166729,40.301914,5.368 2235,-8.73618,464.55597,37.711773,92.84149,5.285 2235,-4.4033685,1.0803585,17.672344,44.46071,5.198 2235,-73.01475,265.60007,201.51324,462.74173,5.162 2235,535.797,309.20462,144.14984,342.32175,5.035 2235,252.32683,217.58453,17.8152,32.49791,4.933 2235,121.95869,246.31207,21.456352,39.474487,4.921 2235,-5.180101,215.77907,17.970907,43.76323,4.918 2235,493.38925,226.31012,237.80954,516.77155,4.894 2235,-21.444366,402.6182,79.06375,175.26291,4.852 2235,490.0331,-182.43358,235.45346,428.06732,4.818 2235,585.5468,-101.184685,75.9411,234.18045,4.812 2235,-0.48409104,-15.885973,27.45689,71.301445,4.809 2235,537.61237,301.3326,64.399475,140.80228,4.8 2235,258.02283,219.71788,18.672668,33.56952,4.796 2235,626.36383,487.62262,20.881042,46.389343,4.756 2235,540.7122,212.26657,89.83295,256.28674,4.75 2235,583.2273,410.31033,71.29425,177.19229,4.714 2235,-17.212711,-64.24771,56.039696,149.01059,4.703 2235,-71.034355,-189.53285,211.68478,456.59888,4.569 2235,602.803,-57.18647,53.7619,138.91841,4.52 2235,529.78705,313.87494,44.74951,104.474976,4.46 2235,-10.209484,210.94766,29.10973,70.74652,4.454 2235,-36.719204,-131.94316,117.21831,288.11243,4.414 2235,565.03815,275.20258,58.565857,150.83023,4.41 2235,274.16873,219.29315,19.046722,34.66745,4.384 2235,-1.1319911,248.34094,29.071367,61.48938,4.306 2235,594.4088,314.07574,42.712708,109.48074,4.051 2235,-9.4453,-5.356201,40.43383,106.2459,4.041 2235,267.3139,220.19656,17.984802,33.785507,4.035 2235,-4.172165,184.88116,16.6893,43.3161,4.025 2235,-4.8815637,77.62804,17.240698,47.53118,4.02 2235,381.9833,218.79472,29.85785,54.985367,4.002 2235,554.92786,320.13663,37.71216,77.54556,3.947 2235,-5.5777607,260.34186,19.60616,44.200806,3.921 2235,612.2976,315.63025,39.913696,109.6174,3.897 2235,619.9383,-17.088266,16.192932,42.064224,3.806 2235,-15.71867,186.53693,50.419445,137.21625,3.793 2235,594.58826,-47.11197,44.47235,100.80804,3.789 2235,164.2738,217.59885,30.40512,55.56949,3.729 2235,-4.5779014,22.309462,16.642693,48.31077,3.725 2235,612.5326,359.89142,37.61664,117.064514,3.684 2235,235.20755,231.59293,18.33142,28.41507,3.681 2235,441.50418,216.77988,21.760529,41.397552,3.66 2235,586.0629,228.99278,21.207947,31.528854,3.608 2235,-1.0957325,200.72258,27.658102,73.701584,3.566 2235,468.1601,279.6234,31.849365,74.68912,3.537 2235,2.5067735,206.30411,39.38336,90.355286,3.535 2235,3.4013498,252.33142,38.503143,97.0907,3.511 2235,-4.6076803,233.31622,18.446526,43.58429,3.507 2235,134.42456,229.43425,31.905975,64.73384,3.503 2235,593.66724,300.72266,35.299927,76.82153,3.467 2235,557.37634,-17.510635,29.763306,63.358955,3.467 2235,493.45367,60.538204,29.707764,69.73651,3.454 2235,-11.381523,255.92958,31.14481,65.426254,3.438 2235,345.51538,231.84308,19.57721,31.339447,3.427 2235,481.68402,230.96506,44.465942,92.710266,3.408 2235,578.055,229.54852,21.52124,30.259552,3.392 2235,77.17529,-1.4315109,29.32306,62.173782,3.381 2235,60.474205,209.97975,31.313133,73.87883,3.38 2235,17.341198,187.77834,41.274567,88.59837,3.364 2235,158.4502,196.5065,52.07086,104.97409,3.363 2235,260.94043,210.74109,36.310883,73.32324,3.357 2235,129.56119,246.49597,22.603912,46.008667,3.354 2235,6.533595,-34.820312,27.478672,80.836586,3.337 2235,585.0571,252.12503,52.986267,155.86908,3.328 2235,2.2268558,491.72342,19.240965,39.680695,3.32 2235,474.4675,-17.708271,57.30728,123.05914,3.32 2235,227.778,230.46713,18.16536,29.19342,3.313 2235,-7.3266516,73.5407,37.156754,105.46479,3.31 2235,611.85443,246.99835,38.629272,117.085754,3.281 2235,10.23469,-30.397514,59.344482,142.32657,3.274 2236,329.26425,230.1194,20.158386,35.70952,7.6 2236,120.94509,221.38515,24.1558,48.3452,6.814 2236,-10.616371,-33.41048,30.08462,78.33196,6.106 2236,-5.301683,-17.227154,17.738157,44.65957,5.864 2236,613.088,453.22183,39.753113,110.013885,5.757 2236,-6.1340227,489.8013,18.725632,41.610443,5.496 2236,-9.182789,464.07874,37.95034,93.61279,5.474 2236,-72.52608,266.39252,200.2747,461.35004,5.086 2236,603.19165,-55.760223,52.83374,138.22835,5.0 2236,490.9126,-181.67621,234.3634,428.8547,4.989 2236,-16.847427,-63.57436,55.662285,145.59132,4.967 2236,627.2843,-17.919119,17.08551,47.24939,4.94 2236,585.3466,-99.62503,75.71997,232.08418,4.858 2236,-21.741714,402.73932,79.483734,175.25958,4.848 2236,583.14417,410.75244,71.26257,176.78906,4.809 2236,623.3688,-34.390186,25.778076,77.536804,4.738 2236,387.5034,223.1993,29.507538,62.650192,4.727 2236,536.33105,309.94037,143.46924,342.2188,4.725 2236,324.10974,223.44234,20.436493,35.662643,4.718 2236,573.04285,221.81715,17.683228,28.145844,4.686 2236,254.13943,222.18002,24.304749,42.249573,4.655 2236,626.28705,487.74164,21.084473,46.13452,4.655 2236,501.68634,-34.526566,29.186646,74.54337,4.533 2236,620.25464,227.4657,14.304565,33.256836,4.517 2236,493.62164,226.76562,237.47296,516.16187,4.504 2236,218.2325,226.48318,20.694656,34.282623,4.458 2236,2.2962074,-14.464903,17.65913,43.09803,4.423 2236,-70.583405,-188.60265,211.0001,454.79993,4.422 2236,383.559,223.87648,24.20401,44.630936,4.417 2236,-36.8798,-131.98694,117.06892,285.55414,4.304 2236,539.44775,-7.924862,54.60144,115.64241,4.288 2236,522.9409,-18.850796,17.447937,42.33834,4.26 2236,116.413734,207.35565,39.460503,74.90625,4.217 2236,1.8274927,276.3331,34.36608,66.38928,4.2 2236,506.28998,-20.114302,18.47284,43.767475,4.192 2236,25.95966,286.40347,35.902107,58.22885,4.13 2236,538.60205,222.53496,17.641357,29.182022,4.069 2236,587.8871,223.73131,15.941284,25.311707,4.062 2236,229.84566,210.80447,35.354874,77.05655,3.927 2236,531.33936,222.65121,18.413086,28.650742,3.925 2236,297.80292,200.11804,19.606384,39.620834,3.905 2236,367.84927,218.44603,26.773987,60.135574,3.89 2236,546.618,-2.560938,18.452576,34.873062,3.876 2236,244.83899,209.05756,36.017456,78.54428,3.852 2236,114.14479,212.88452,24.388565,50.144165,3.81 2236,538.3738,-3.2741823,19.449585,36.787968,3.795 2236,-0.7379985,-17.843029,27.28628,77.59796,3.765 2236,531.8583,-14.64445,31.441223,60.38588,3.758 2236,-6.1343327,291.6782,19.53791,48.273346,3.753 2236,556.2836,220.05743,16.616638,27.116318,3.747 2236,482.30444,260.81458,20.198578,30.860535,3.732 2236,498.19684,-20.617294,18.65979,44.152935,3.726 2236,214.70206,211.08746,35.186417,76.227356,3.711 2236,530.88043,-16.600704,16.828125,40.098537,3.684 2236,594.6633,-44.14376,43.99768,98.702065,3.68 2236,233.27731,226.78412,21.389572,34.748505,3.659 2236,169.21292,232.12732,21.510101,42.496094,3.594 2236,507.47528,-12.134365,55.67755,114.65288,3.592 2236,573.3672,-10.563297,52.066223,125.83171,3.565 2236,485.97772,-33.20937,28.331482,72.387955,3.535 2236,-3.9317155,157.15025,15.303354,36.49362,3.533 2236,-8.573251,104.002106,38.19244,104.30191,3.532 2236,611.5829,373.7666,37.908997,116.12796,3.503 2236,507.56097,5.103899,30.310547,63.35341,3.503 2236,-8.710681,-4.952202,39.33961,100.908745,3.497 2236,461.37073,-36.404205,28.72229,78.69083,3.482 2236,612.12805,266.20526,37.860413,113.38602,3.42 2236,585.2465,243.06586,21.967163,35.69812,3.382 2236,515.19556,-18.746828,17.883911,41.70375,3.334 2236,380.65427,4.850788,29.761383,82.987274,3.328 2236,612.6956,332.52835,38.64276,114.43289,3.327 2236,593.3996,251.87192,37.549866,78.7135,3.322 2236,449.5256,0.7346802,31.993225,86.4906,3.318 2236,528.9159,-1.0617867,44.718872,87.69142,3.298 2236,517.8799,-33.836723,28.780823,73.22336,3.296 2236,614.5449,231.56642,13.8394165,27.303848,3.239 2236,94.75824,191.6146,54.85182,107.00522,3.235 2236,1.7940259,-41.06306,43.329323,101.36688,3.234 2236,315.98297,219.07303,19.474121,35.846832,3.23 2237,386.20084,221.23232,20.625946,46.746048,9.656 2237,392.47745,216.3423,21.354584,45.967545,8.585 2237,157.73723,228.60052,29.844925,57.678833,8.104 2237,401.23926,224.6187,20.762543,48.13704,7.372 2237,-10.925917,-32.496773,29.798193,76.09173,6.591 2237,370.44583,222.08669,21.50595,47.236008,6.443 2237,-5.9733543,490.1353,18.295507,41.096375,6.307 2237,-5.483451,-15.756867,17.15929,42.169914,6.266 2237,-11.544794,479.57797,29.373281,61.62143,5.622 2237,613.023,454.2059,39.35498,108.164215,5.511 2237,627.2556,-17.623024,17.156738,46.62931,5.43 2237,367.5983,236.00446,28.744965,70.47034,5.342 2237,-17.562262,-64.039246,56.00712,148.01431,5.308 2237,375.42853,218.01422,25.327942,61.06128,5.296 2237,-8.859037,464.6468,37.67028,92.96979,5.285 2237,307.23764,228.6018,21.281067,41.37961,5.207 2237,132.86081,227.55568,30.184006,54.576492,5.186 2237,499.4608,264.25824,28.886078,43.24695,5.176 2237,610.59033,-48.316837,42.353027,100.21423,5.164 2237,626.5679,488.14517,20.81195,45.761993,5.155 2237,490.96573,-181.7844,234.45786,429.53116,5.102 2237,583.2097,412.03766,71.420166,175.99188,5.031 2237,-72.5672,266.5899,200.10963,460.95734,4.926 2237,585.5418,-99.05252,75.52692,231.0352,4.87 2237,-21.718227,402.7213,79.00488,174.87524,4.847 2237,536.3674,310.32227,143.66345,341.08337,4.769 2237,618.97314,-5.5494204,18.8172,41.89485,4.712 2237,-0.6182921,4.518944,25.238409,75.1089,4.702 2237,403.38626,200.6666,28.504456,64.64761,4.534 2237,493.89432,227.60577,236.97305,515.05963,4.504 2237,359.93927,221.56238,28.299866,68.1044,4.382 2237,-37.283012,-132.25444,117.805214,286.22055,4.345 2237,554.02655,226.72478,20.078674,30.861465,4.297 2237,-70.20347,-187.21014,210.98505,452.7003,4.243 2237,530.57764,9.026384,20.196533,38.999237,4.179 2237,2.9018152,-12.416201,16.048336,39.320667,4.126 2237,562.0076,227.00458,19.973572,30.694458,4.061 2237,356.69153,-0.31235123,29.167908,72.099365,4.048 2237,476.88855,259.47287,31.642609,52.892273,3.973 2237,596.62573,227.48094,15.748413,22.83046,3.968 2237,58.339462,229.3237,32.945366,54.89557,3.904 2237,-9.146675,26.632515,38.210884,103.049675,3.896 2237,389.26895,227.96783,26.68338,69.31604,3.845 2237,400.64404,204.28183,20.760406,47.4469,3.832 2237,186.68805,481.7496,17.665207,26.05185,3.809 2237,571.6688,225.60933,17.605347,24.80716,3.804 2237,597.71106,191.02989,37.128784,85.860794,3.798 2237,-5.5043225,0.9691124,18.880718,45.227413,3.706 2237,343.2393,-6.635494,30.238678,69.12782,3.674 2237,530.1908,-13.149548,43.8526,78.00128,3.669 2237,538.99634,-13.9793625,56.725647,119.44812,3.633 2237,-4.7359376,241.34047,17.38424,43.020462,3.631 2237,579.83154,225.207,16.246033,23.781006,3.616 2237,491.18372,-17.783932,16.978851,41.266945,3.536 2237,589.25244,-8.034622,29.977356,66.358055,3.49 2237,555.2577,-0.91141605,17.96814,33.56161,3.484 2237,506.34314,-16.314693,17.039429,39.67257,3.468 2238,355.56125,218.36737,21.281372,46.442535,16.724 2238,360.18082,224.8885,22.563477,56.275375,10.139 2238,347.99954,233.25424,27.808228,74.773865,8.72 2238,366.84903,217.71219,21.636505,47.00235,6.951 2238,-5.7500477,-17.715155,17.45326,43.233185,6.615 2238,-11.283472,-33.233425,29.781158,74.720856,6.184 2238,-5.9234643,489.26764,18.5711,42.43567,6.14 2238,-11.493993,478.01666,29.629807,63.532715,5.725 2238,626.39984,488.106,21.003967,45.758026,5.39 2238,627.16315,-18.080927,17.369202,47.349514,5.288 2238,365.47888,234.61978,27.770325,66.541046,5.245 2238,610.80005,-47.87498,42.022522,99.73319,5.116 2238,491.34845,-182.39612,234.216,430.2172,5.112 2238,582.9977,412.43542,71.84784,175.776,5.103 2238,132.07086,248.95085,31.543365,64.38408,5.093 2238,612.7991,455.09836,39.59143,106.88046,5.067 2238,585.8355,-99.08977,75.03009,231.0041,4.992 2238,-21.30091,404.14337,78.51058,174.00555,4.901 2238,-72.19013,266.80612,199.71402,460.95462,4.879 2238,577.0895,232.2576,18.583984,38.15204,4.838 2238,536.4767,310.63434,143.55566,340.5041,4.789 2238,265.1284,226.00847,23.655365,43.50679,4.765 2238,574.5742,221.05968,13.824707,23.095276,4.75 2238,-17.029366,-65.84425,55.827797,147.28296,4.747 2238,-40.239,367.50778,110.24,275.66202,4.705 2238,555.73334,-1.0003548,17.21582,31.96201,4.505 2238,493.9228,227.11731,237.34521,514.71423,4.496 2238,-70.77585,-188.08057,211.99312,453.63495,4.414 2238,377.86462,239.29012,21.118896,45.115433,4.381 2238,147.89618,246.15515,30.853607,64.0871,4.355 2238,-37.061718,-130.47551,117.16786,281.3202,4.339 2238,523.1026,-15.40609,15.807922,36.129654,4.142 2238,217.33017,210.61336,21.169281,36.39421,4.102 2238,233.98822,203.92381,21.945007,43.79016,4.089 2238,334.81247,223.26419,27.130402,69.1124,4.077 2238,620.2409,220.73022,13.927856,27.692673,4.056 2238,346.09055,256.66226,22.66446,62.31378,4.014 2238,506.984,-15.193872,16.848938,37.06262,3.981 2238,523.7266,1.4075317,17.977478,36.120583,3.896 2238,580.0903,226.06479,14.055237,24.605225,3.836 2238,35.711964,242.08376,36.10513,73.96123,3.831 2238,619.58185,-18.686056,17.346313,44.560856,3.809 2238,547.5631,0.56753063,16.949951,31.272915,3.794 2238,3.2929277,-17.493895,16.210968,41.458626,3.794 2238,2.1666229,490.39868,19.304382,40.775696,3.788 2238,617.97046,230.05635,20.467651,43.287064,3.77 2238,507.2578,-3.437191,19.212646,40.5266,3.755 2238,613.7236,226.28091,13.415894,23.68605,3.746 2238,343.28128,204.72395,34.798492,80.30617,3.734 2238,305.38052,-5.7847967,22.24704,39.8449,3.695 2238,628.04236,221.60266,15.978394,37.979614,3.633 2238,386.92746,243.3483,19.497253,41.73526,3.62 2238,565.5301,232.7418,37.987427,84.99684,3.609 2238,397.50302,230.86188,29.996735,53.817932,3.601 2238,263.87296,234.0407,28.42871,61.88405,3.597 2238,599.3266,225.00871,34.847656,97.49898,3.557 2238,540.0611,0.1253233,16.832275,31.200554,3.552 2238,515.531,-0.46962738,18.687317,37.22091,3.542 2238,539.72894,-14.262238,15.338562,34.56534,3.537 2238,324.47995,-14.429594,30.740204,66.61028,3.525 2238,285.85107,-18.69022,30.43274,66.62604,3.524 2238,235.51825,-1.8346376,17.460571,34.73349,3.493 2238,312.1602,211.10109,33.676605,80.1566,3.487 2238,498.75916,-14.08475,17.019775,35.729294,3.484 2238,0.011905432,38.248325,25.739422,86.68675,3.477 2238,618.30994,490.10995,20.923523,42.614044,3.473 2238,376.00388,218.27937,20.537292,44.333115,3.445 2238,588.0296,226.42142,14.817017,24.426804,3.443 2238,586.6399,232.69852,17.082336,35.370544,3.442 2238,1.7572284,-43.43592,43.54479,103.52606,3.438 2238,547.5145,-13.866603,15.627441,35.494164,3.424 2238,347.68295,214.86275,20.483276,44.43895,3.423 2238,203.31926,214.72096,20.204437,31.27629,3.405 2238,331.48026,222.30255,18.31546,44.0123,3.396 2238,451.042,-16.648983,16.95819,40.11637,3.395 2238,243.26718,-2.6528568,17.908478,36.82467,3.393 2238,-9.485796,-6.1586113,40.228382,101.77452,3.391 2238,515.0599,-13.8681965,16.711731,36.00978,3.381 2238,251.12222,-15.19906,16.071136,38.709225,3.357 2238,3.30047,244.4931,30.62692,65.29114,3.356 2238,443.49298,-18.472488,17.019836,41.75416,3.347 2238,245.97694,216.26974,29.700516,59.550293,3.334 2239,352.4619,212.39441,21.280914,43.501785,24.477 2239,360.74036,215.88617,19.713257,41.46463,12.313 2239,344.26514,209.23029,25.32257,62.429016,11.671 2239,-5.457386,-17.365953,17.308195,43.48027,7.812 2239,368.74182,218.96465,19.996124,39.46266,7.231 2239,-10.856123,-33.05394,29.344381,75.923676,6.48 2239,341.1574,226.76503,30.560303,73.97313,6.016 2239,-6.0170693,489.61707,18.482079,42.02014,5.903 2239,627.29333,-17.596611,17.174744,45.66462,5.764 2239,339.59296,212.17317,21.861664,46.03795,5.489 2239,-11.686087,477.83514,29.438417,63.432312,5.42 2239,356.09238,217.56898,28.647491,61.784744,5.394 2239,623.1635,-33.88372,26.335266,75.319885,5.309 2239,491.20947,-182.48334,234.28235,429.90533,5.163 2239,-72.86513,265.66122,201.24931,461.94754,5.154 2239,586.0088,-100.23732,75.198364,232.20644,5.126 2239,582.89746,412.1034,72.02734,176.4444,5.06 2239,536.491,310.13348,143.58032,340.62567,4.956 2239,612.7532,455.1951,39.77295,106.833466,4.867 2239,202.07263,211.13223,20.467667,32.44098,4.848 2239,-17.174587,-64.0588,55.809074,146.78503,4.797 2239,-40.742004,364.57672,111.1783,278.12292,4.744 2239,-21.495995,402.14078,79.24536,175.29489,4.73 2239,603.065,-57.830338,53.213196,135.20789,4.698 2239,626.35785,487.53717,21.111877,46.611023,4.681 2239,494.04446,226.64218,237.25674,514.5167,4.527 2239,61.03075,268.16162,36.229794,73.426056,4.497 2239,319.21548,209.43878,26.34607,63.951813,4.477 2239,-37.01665,-129.90802,117.37659,283.9017,4.395 2239,-4.603817,179.14935,18.148687,41.411224,4.329 2239,-70.40538,-188.20047,212.23122,454.3446,4.329 2239,327.16815,214.98149,28.477417,71.34776,4.328 2239,593.8103,-47.04592,45.035034,96.25883,4.264 2239,426.98303,-5.3162794,18.556793,41.43526,4.207 2239,347.15775,257.63898,28.56607,74.79788,4.128 2239,-9.168068,185.23407,29.102966,69.957306,4.096 2239,2.8753715,-14.846517,16.516989,41.371635,4.031 2239,619.91876,-3.3255844,18.309265,38.44595,3.977 2239,357.3657,194.87875,28.413239,60.121094,3.911 2239,421.49463,-18.141623,30.011688,68.70512,3.882 2239,12.242565,183.87756,55.12956,118.3772,3.837 2239,-0.437001,211.47047,28.094315,70.270004,3.835 2239,218.68237,-17.575802,17.054688,40.507183,3.831 2239,-4.887348,196.9962,18.236515,47.080612,3.798 2239,249.57224,225.40323,24.266327,41.977783,3.771 2239,-5.8223543,233.29694,18.735023,41.298462,3.761 2239,-15.605955,124.1226,51.197174,139.737,3.758 2239,294.8592,200.02786,36.510254,81.67905,3.725 2239,11.207557,-30.143185,58.267487,142.43974,3.712 2239,-8.433595,-5.0729256,38.79778,100.97424,3.689 2239,-9.266729,321.13074,38.457115,111.024445,3.663 2239,538.98975,-19.243723,16.799377,40.678368,3.654 2239,90.07208,215.2864,33.5847,54.400055,3.642 2239,1.5898871,194.51103,20.47594,50.47284,3.61 2239,345.70428,199.30023,20.963867,43.880096,3.607 2239,474.5975,-2.1244564,20.69046,40.26921,3.58 2239,209.29205,209.94237,21.494217,35.089615,3.58 2239,99.42605,208.91077,41.71952,73.39444,3.575 2239,226.77522,-15.820039,17.231201,39.090267,3.562 2239,373.3594,212.97467,36.89984,81.5379,3.555 2239,-14.185167,185.23721,48.882828,141.93375,3.526 2239,280.96246,216.95482,21.35379,41.640427,3.497 2239,435.0492,-5.8124237,18.4133,39.281757,3.496 2239,411.10626,-4.4399586,29.342194,65.153275,3.441 2239,219.03458,200.18622,20.543732,38.93416,3.43 2239,614.85864,-19.292147,27.50409,69.53778,3.428 2239,-11.047358,221.67026,30.080881,66.89853,3.418 2239,210.53322,-15.915382,17.1456,39.026035,3.408 2239,436.8767,-20.760471,30.374878,66.602135,3.399 2239,336.67432,205.54453,60.505493,155.73233,3.398 2239,-10.411036,281.56845,33.29004,69.498505,3.388 2239,203.02065,-3.1390657,19.31128,38.03912,3.383 2239,-5.5558844,215.84938,18.197952,42.98015,3.358 2239,531.396,-137.69308,116.31824,274.80142,3.353 2239,539.4813,214.4274,54.677673,108.6311,3.349 2239,490.59116,-16.49789,17.198914,38.328957,3.346 2239,34.496807,195.8452,43.195004,84.63759,3.336 2240,423.64468,216.47488,23.53775,48.050293,66.375 2240,406.21753,218.90558,22.53534,46.76758,32.436 2240,414.82007,217.97737,28.311707,70.294846,8.827 2240,-5.8703413,-18.186867,18.05618,43.637077,7.988 2240,-10.762515,-33.394726,28.899693,74.961784,6.771 2240,627.2541,-18.501703,16.994202,47.410213,5.927 2240,259.64355,215.52518,17.533112,30.102203,5.797 2240,-6.3044834,489.12695,18.894314,42.85266,5.659 2240,-12.074671,476.3637,30.412241,64.857666,5.472 2240,622.9566,-34.010704,26.380615,76.4461,5.401 2240,45.383244,231.48953,36.654263,63.00226,5.261 2240,399.12665,222.67331,29.068512,70.24194,5.227 2240,491.07294,-182.25366,234.01093,429.96854,5.177 2240,-72.91485,265.716,201.55771,462.7459,5.17 2240,612.8291,454.91202,39.74298,107.15878,5.105 2240,585.805,-99.32796,74.82153,232.01048,5.063 2240,582.9903,411.2519,71.85016,177.11761,5.0 2240,626.38043,487.76782,21.102356,46.389465,4.975 2240,602.94714,-57.130077,53.700317,135.41696,4.968 2240,-41.05707,362.64716,112.01837,279.43158,4.818 2240,-20.042236,-88.7017,71.808945,198.6124,4.801 2240,536.54956,310.73187,143.45166,341.05945,4.763 2240,-70.893524,-189.28424,212.10457,455.13705,4.681 2240,-21.333595,401.60703,79.10934,176.11221,4.666 2240,56.605255,225.23566,36.959915,62.393616,4.498 2240,493.84586,226.38849,237.42911,515.4236,4.463 2240,-37.091587,-128.83133,116.713715,280.25986,4.461 2240,252.65933,218.10458,16.657104,27.047256,4.438 2240,-9.357393,-19.412815,38.710632,99.4449,4.388 2240,2.475437,-18.362568,17.390549,43.694687,4.379 2240,425.3388,218.46512,31.147034,72.361206,4.246 2240,430.1322,297.10345,30.54065,64.148224,4.222 2240,59.493195,206.45468,56.677574,109.24252,4.217 2240,417.61115,192.3894,41.957214,79.972595,4.206 2240,358.44415,210.05348,36.478027,79.60689,4.176 2240,594.2851,-45.41849,44.735535,96.71517,4.13 2240,82.89029,210.51735,42.41191,78.56773,4.116 2240,430.70825,202.89479,22.741821,43.72052,4.113 2240,374.86603,205.13623,36.684418,71.970795,4.016 2240,30.059383,203.02391,53.089886,117.43709,3.999 2240,233.64154,-4.799324,21.145126,38.323315,3.976 2240,341.25812,211.6184,38.697662,81.93544,3.946 2240,92.75198,196.48575,56.08261,107.466125,3.945 2240,488.9428,-3.1018438,20.552155,36.863197,3.936 2240,230.21832,-33.720577,28.724396,71.00944,3.752 2240,10.336401,225.04236,59.495506,133.54327,3.742 2240,518.51294,-17.87424,28.67694,64.20796,3.714 2240,434.7356,213.77182,38.40802,85.8165,3.703 2240,315.69003,240.19437,30.901428,67.1756,3.665 2240,281.86102,207.43979,20.73648,40.16156,3.652 2240,453.13278,215.8046,39.01541,90.07623,3.595 2240,-17.328445,224.83774,53.452717,146.34152,3.557 2240,125.1703,200.06133,56.00508,102.42326,3.553 2240,249.93073,-18.365843,18.029602,40.70393,3.533 2240,235.82857,55.028473,31.654678,69.47586,3.523 2240,252.24693,-17.939583,33.73018,63.975243,3.523 2240,323.77213,213.1301,38.78891,81.86636,3.513 2240,72.0429,236.55797,27.419914,44.04036,3.512 2240,266.5763,-18.548307,18.045837,42.67311,3.499 2240,-9.636133,311.1353,38.766518,101.40402,3.493 2240,620.1203,-18.751871,16.746521,44.086815,3.487 2240,150.81886,221.02603,24.828598,36.52481,3.453 2240,476.9577,-32.458927,29.173248,67.32612,3.446 2240,98.22361,238.93123,43.06756,86.95891,3.44 2240,1.6679144,-39.43413,43.638103,98.01542,3.431 2240,115.20702,215.4571,43.099007,72.6364,3.425 2241,481.80997,219.14073,21.889008,52.5446,87.963 2241,464.05444,219.51672,22.976654,51.046234,58.429 2241,470.56732,213.2107,27.892273,56.691437,8.514 2241,-5.2581925,-17.340635,17.645306,41.801003,7.723 2241,400.42035,218.14612,22.966553,38.893616,6.366 2241,0.5625665,256.75677,28.448406,82.493286,6.206 2241,-11.090155,-31.479332,29.519857,69.902885,6.186 2241,501.66034,192.78587,32.284485,82.00969,5.825 2241,627.21375,-18.252193,17.268005,47.191875,5.778 2241,-12.169261,478.75284,30.187298,62.971893,5.757 2241,-6.394554,489.97043,18.94897,41.815704,5.729 2241,405.76038,212.53606,38.20398,79.58827,5.669 2241,10.673401,244.74126,56.747955,116.52748,5.566 2241,610.7526,-47.831017,41.79486,98.65846,5.464 2241,423.37906,212.65634,36.490692,77.42343,5.386 2241,277.7295,18.606888,35.94342,68.385765,5.337 2241,612.8798,453.81448,39.79297,108.31528,5.268 2241,446.72943,217.26424,27.4747,63.176376,5.224 2241,491.3928,-181.93288,234.15048,429.2269,5.197 2241,-72.903336,266.52597,201.59485,461.88858,5.158 2241,389.89978,212.53435,38.5636,79.214584,5.129 2241,17.97168,264.83752,31.510544,70.59332,5.114 2241,-17.642643,-63.165627,56.506596,141.89171,5.086 2241,586.0408,-99.65413,74.53998,231.71225,5.003 2241,2.7214842,-14.369551,17.28926,38.698097,5.003 2241,-21.957378,401.6115,79.8383,176.16376,4.905 2241,626.47424,487.6428,20.696045,46.5502,4.843 2241,582.98267,411.02533,71.69879,177.31537,4.835 2241,536.37866,310.75208,143.74152,341.1338,4.825 2241,-5.9171743,251.2047,18.338173,40.085983,4.76 2241,483.37054,212.22742,34.98645,72.67871,4.628 2241,494.14758,227.36179,236.99188,513.96045,4.556 2241,-36.669594,-129.70355,116.2211,280.59482,4.54 2241,297.82303,215.34798,20.706726,32.394836,4.493 2241,-71.000885,-189.44176,212.24953,455.8401,4.485 2241,124.84888,207.64847,55.220764,115.39334,4.426 2241,191.08687,227.87854,21.822754,35.80667,4.33 2241,-11.849274,240.64488,29.820414,66.43654,4.314 2241,-5.1417265,239.80989,17.163946,35.161392,4.24 2241,-14.929928,225.76422,50.82311,135.90344,4.175 2241,1.4830709,-0.36644936,21.688896,42.935936,4.168 2241,-10.300144,-7.8116455,40.51833,102.18642,4.157 2241,81.44356,232.79886,44.25563,87.550415,4.012 2241,-9.8220625,149.44725,39.325542,106.8633,3.933 2241,97.94841,230.6273,35.047028,62.357986,3.839 2241,109.34108,242.7365,30.76323,55.7657,3.831 2241,290.772,218.71635,20.544983,31.053024,3.784 2241,325.02945,11.253534,30.983124,61.699768,3.737 2241,329.03537,213.62642,21.451447,41.525436,3.729 2242,558.5036,207.97234,23.57135,54.031143,63.675 2242,542.89935,210.72995,23.871338,47.505188,37.118 2242,550.23096,200.64427,36.176514,88.74013,8.798 2242,564.0465,201.12958,35.75183,83.25006,7.925 2242,534.04065,211.36888,29.795837,71.84566,6.976 2242,123.6478,223.36166,32.866394,66.07324,6.644 2242,-6.285358,488.79105,19.002905,42.53116,6.072 2242,-5.612132,-18.211329,17.614563,43.758667,6.022 2242,464.22244,204.62987,21.160675,46.88774,5.957 2242,581.6592,202.254,37.24701,101.77646,5.924 2242,-11.656294,477.8802,29.757692,63.51837,5.836 2242,-12.62989,-40.846413,42.085587,101.19998,5.643 2242,458.63742,204.65764,18.306519,39.909927,5.626 2242,198.76837,211.24562,26.042648,61.827896,5.485 2242,473.43747,218.27477,21.218018,43.806534,5.4 2242,613.09766,455.0608,39.434143,107.320496,5.38 2242,622.5439,-33.712643,27.139404,76.64785,5.379 2242,626.6053,487.8595,20.519592,46.37964,5.365 2242,626.8502,-18.386436,17.700562,47.516247,5.342 2242,85.970924,37.526165,27.950935,82.055435,5.2 2242,-72.88089,266.55368,200.73624,461.8538,5.065 2242,517.63354,212.99663,29.067627,58.523422,4.99 2242,222.64288,223.01419,22.179367,42.09082,4.985 2242,491.03897,-182.4956,234.03397,427.7391,4.964 2242,447.84256,219.59785,23.778809,45.92366,4.921 2242,582.9946,411.83267,71.92474,176.702,4.845 2242,603.0164,-57.05953,53.17749,133.56674,4.84 2242,-21.572113,403.2598,79.103485,174.79684,4.826 2242,536.53436,310.44354,143.24194,342.0019,4.793 2242,484.8532,212.55592,39.636047,75.58717,4.697 2242,586.1129,-100.63678,74.91376,232.62137,4.669 2242,-19.882557,-89.57361,71.71898,199.19638,4.607 2242,557.77905,198.54163,49.85791,133.26257,4.585 2242,527.6153,200.15112,51.09326,131.07379,4.521 2242,-36.821323,-130.02759,116.886475,282.31705,4.494 2242,120.021835,241.95537,29.384811,63.909775,4.48 2242,493.45868,227.50436,237.84064,513.98254,4.447 2242,500.8212,209.48196,39.76883,76.8237,4.423 2242,482.12762,140.75957,30.922424,77.82828,4.417 2242,-70.40793,-188.37685,210.98183,455.3369,4.377 2242,-3.089434,100.3008,27.271109,70.820816,4.342 2242,593.939,-45.027107,45.132263,94.231155,4.29 2242,338.15808,210.20502,21.203796,33.753235,4.216 2242,476.34985,208.23555,28.58252,62.99449,4.099 2242,531.1333,214.74353,24.006104,43.879944,4.092 2242,182.25201,200.05412,38.213562,77.53264,4.05 2242,456.6603,276.57037,34.832367,84.02667,4.043 2242,-5.354321,220.35155,16.220554,35.02455,3.982 2242,125.989624,183.082,50.372192,111.97177,3.947 2242,-1.3485372,258.73505,28.340563,78.04706,3.942 2242,116.37659,180.33981,39.569122,89.684235,3.939 2242,2.0184689,490.40286,19.43258,40.63681,3.93 2243,600.6562,222.32584,27.07837,62.647736,47.662 2243,584.5263,222.05408,22.351257,50.66324,13.049 2243,-5.8834577,-17.91348,18.396744,43.394577,8.582 2243,595.1736,224.25897,21.546753,55.005554,8.392 2243,495.47736,218.04863,21.444763,45.74971,7.267 2243,597.134,221.18172,38.279663,114.362564,7.119 2243,-11.140109,-32.91973,29.750622,74.639915,6.897 2243,621.34375,473.03836,29.508667,71.0914,6.564 2243,580.7046,223.84485,39.91455,111.025085,6.519 2243,583.9784,212.19736,38.321045,72.47037,6.415 2243,571.6493,211.54503,30.899475,60.56163,6.326 2243,610.8741,216.87447,26.6568,81.17998,6.3 2243,500.13547,222.48012,35.716217,82.28633,6.037 2243,488.47748,216.82805,34.440125,80.49202,5.81 2243,622.6848,-34.075962,26.637573,77.33708,5.678 2243,-8.724259,464.47635,37.649258,92.911835,5.641 2243,156.4495,221.85689,30.261108,67.870285,5.463 2243,-6.18915,490.1093,18.902653,41.026733,5.437 2243,627.134,-18.03871,17.145874,47.090946,5.356 2243,-12.194946,478.53287,30.202065,62.091034,5.282 2243,-72.99735,266.03055,201.63434,462.55344,5.188 2243,613.7411,228.82178,35.609436,112.96057,5.006 2243,546.46,231.4163,42.407776,97.68068,4.993 2243,583.00507,411.44537,71.576965,176.59387,4.886 2243,-21.689651,401.9037,79.45501,175.86829,4.86 2243,514.8006,236.19977,41.177673,89.62109,4.853 2243,536.03577,309.82935,144.15741,342.26624,4.843 2243,-17.580582,-63.5595,55.81703,145.79161,4.836 2243,491.15698,-182.31393,233.90533,428.2023,4.833 2243,172.53944,222.49512,31.26532,65.92151,4.806 2243,602.7061,-56.698975,53.45514,136.24959,4.754 2243,53.29715,196.03215,40.819023,90.75728,4.707 2243,586.18555,-101.168976,74.69708,233.66582,4.673 2243,563.5987,220.44022,39.82721,94.93713,4.605 2243,-71.20888,-189.96167,211.85509,457.4949,4.563 2243,494.1968,228.28448,237.14114,514.64594,4.559 2243,2.566992,-17.465754,17.615564,42.854027,4.413 2243,61.585274,193.4711,53.169937,123.22092,4.309 2243,-36.988976,-128.8844,116.64597,280.1563,4.267 2243,174.9483,219.36829,23.153778,41.49292,4.13 2243,594.32874,-45.2218,44.583862,97.63179,4.117 2243,454.79395,214.1953,35.011475,76.33122,4.059 2243,504.11496,218.30879,21.121613,42.63719,3.979 2243,12.11926,-29.114307,57.482174,139.24466,3.967 2243,531.3645,224.90405,41.93683,90.612854,3.937 2243,36.02193,199.70644,43.66698,88.68193,3.927 2243,581.57153,-18.619389,31.337463,64.41327,3.915 2243,617.4993,485.85272,22.183716,46.846497,3.881 2243,568.69025,227.62866,25.258606,55.68698,3.861 2243,11.971188,175.23103,56.65154,118.071884,3.83 2243,82.85103,199.70456,41.121216,91.35611,3.828 2244,470.38058,201.99258,36.770752,78.73129,7.583 2244,-10.5240345,-33.86661,29.772366,76.04167,7.408 2244,-5.3089485,-17.786232,17.905079,44.5961,7.163 2244,485.16055,204.56354,36.70456,84.25293,6.729 2244,452.08768,210.87598,17.653473,40.484177,6.553 2244,455.7167,219.91107,21.596283,43.603027,6.127 2244,2.7684212,-15.748844,17.476868,43.102764,6.031 2244,363.37738,220.48364,32.870056,55.992554,6.005 2244,455.97876,203.67065,36.989197,72.63367,5.612 2244,626.59607,488.2775,20.624695,45.789032,5.584 2244,-12.229648,478.34018,30.502068,62.531036,5.481 2244,418.41528,214.84053,30.470795,59.844955,5.464 2244,472.29608,221.11568,22.989532,46.57866,5.422 2244,627.1802,-17.675488,17.17804,47.105663,5.376 2244,-6.1658125,489.77292,18.672066,41.73709,5.327 2244,444.80728,217.9999,26.976349,59.205795,5.186 2244,-72.80879,265.57825,200.98035,462.42273,5.176 2244,612.9068,454.6375,39.57312,107.60144,5.173 2244,610.85236,-48.74324,42.0119,102.3015,5.072 2244,554.83813,227.04837,33.539307,56.08914,5.061 2244,582.91693,412.3365,71.78204,176.11389,5.012 2244,-16.910906,-64.17907,55.74929,144.49083,5.002 2244,536.1903,310.36896,144.06177,342.04034,4.921 2244,299.12973,198.06671,19.374634,39.035522,4.915 2244,-21.471535,403.27014,78.968506,174.50848,4.852 2244,-0.20347476,-18.581518,26.867664,71.293594,4.836 2244,490.40985,-181.76581,235.50372,427.02072,4.764 2244,585.67847,-101.323456,75.59155,234.49278,4.717 2244,499.9741,207.38185,38.50064,84.30391,4.717 2244,493.65848,227.49445,237.264,514.3708,4.617 2244,35.809258,205.80048,42.447586,83.359314,4.587 2244,95.08484,205.61115,28.947815,55.99362,4.571 2244,480.25964,211.57494,22.579895,47.84828,4.566 2244,458.7117,205.08138,16.755768,34.140274,4.548 2244,9.303035,-17.685102,18.240826,43.672413,4.429 2244,-37.168255,-129.07683,116.80754,280.56732,4.422 2244,4.5315433,202.51279,37.434933,94.176605,4.415 2244,87.3861,255.80243,35.71807,61.217896,4.36 2244,90.549255,223.06148,33.520218,60.832047,4.345 2244,484.86926,-16.25186,29.38147,67.94478,4.343 2244,466.505,213.22849,19.450775,39.83928,4.338 2244,11.889889,182.71677,54.690647,112.68735,4.269 2244,-70.451,-188.43353,211.26514,453.934,4.143 2244,613.2917,207.05386,38.24518,106.6712,4.121 2244,43.324394,185.92229,57.12893,109.99785,4.107 2244,-10.010095,-6.8793716,40.504784,101.763176,4.011 2244,-5.288236,222.92828,17.970243,43.750427,3.985 2244,407.05243,220.29022,29.304443,62.40207,3.978 2244,74.864845,184.42882,57.785454,109.338425,3.895 2244,597.5753,208.47217,37.497437,106.23743,3.866 2244,443.2511,214.33392,19.632172,39.61786,3.861 2244,349.0175,213.69518,30.748138,56.6075,3.855 2244,540.90155,226.76678,30.471558,51.403046,3.825 2244,573.902,-16.370735,53.653503,133.19812,3.825 2244,577.53485,220.86787,33.344666,66.19939,3.792 2244,322.9397,194.27803,18.25061,33.19583,3.787 2244,-4.5100036,199.34625,17.668888,45.984344,3.707 2244,488.35437,216.26662,23.63861,51.222244,3.68 2244,-12.398336,184.5633,46.81881,139.86163,3.678 2244,619.5333,-17.517506,16.978394,44.71548,3.654 2245,506.15308,218.52193,22.157227,48.482162,86.931 2245,523.7619,218.82037,23.421875,50.893127,65.863 2245,487.87262,216.8424,19.10437,41.582947,24.917 2245,465.5292,215.32928,22.089478,42.60437,10.797 2245,-5.035077,-16.24854,16.69485,41.65139,7.653 2245,474.09836,222.72574,20.496063,40.7742,7.421 2245,627.28485,-18.91631,17.516663,48.067314,6.12 2245,-10.783429,-34.005287,29.18301,73.75246,5.744 2245,359.939,230.4017,22.831512,48.477936,5.729 2245,-6.0248256,489.80447,18.509771,41.67325,5.702 2245,626.5084,487.58075,20.754395,46.7818,5.516 2245,623.10535,-33.76209,26.6651,76.49872,5.432 2245,-8.844755,464.7451,37.593872,91.836395,5.249 2245,-6.278684,218.75449,19.173574,41.47809,5.149 2245,612.7929,454.56967,39.700012,107.329254,5.147 2245,-72.736084,266.15466,200.9184,461.7768,5.086 2245,528.4464,212.74301,28.98877,64.94357,5.065 2245,582.9267,412.2224,71.716,176.17352,4.973 2245,380.77548,220.08156,30.187286,57.071274,4.877 2245,603.18677,-58.169224,52.862366,138.96039,4.855 2245,-21.605587,402.93173,79.26317,174.69986,4.852 2245,536.4114,310.07507,143.81506,341.9651,4.816 2245,-17.209398,-64.696976,55.55873,148.1291,4.799 2245,0.4592514,211.10245,27.839033,62.918213,4.768 2245,396.34637,223.27466,33.79431,61.363983,4.721 2245,585.5531,-100.29984,76.02411,231.54703,4.711 2245,490.80322,-180.5318,234.59277,425.9676,4.683 2245,4.8167896,225.56189,38.029015,95.2616,4.613 2245,500.64362,196.98901,40.328613,76.13605,4.605 2245,494.2465,228.228,236.65652,514.89453,4.603 2245,-11.427824,208.77527,30.039085,62.556824,4.458 2245,-37.071953,-129.30511,118.37165,280.55923,4.446 2245,411.28415,-12.641282,15.491913,33.264805,4.366 2245,427.6448,-13.164192,15.372131,33.424477,4.289 2245,11.66971,199.16437,52.732254,109.955475,4.261 2245,315.31567,213.68274,17.495117,34.365036,4.15 2245,-3.7329543,86.41414,17.251394,47.224686,4.15 2245,419.60403,-12.191337,15.352814,32.771393,4.147 2245,3.8315816,-15.06419,15.545006,39.49246,4.127 2245,484.65094,221.16696,29.468018,63.21823,4.125 2245,-70.235016,-187.91666,210.77916,453.4525,4.109 2245,594.8056,-48.54578,44.025024,101.85809,4.088 2245,411.73813,227.60397,32.938538,59.459595,4.066 2245,276.19147,203.63068,30.92035,50.69455,3.997 2245,-12.036644,190.41794,46.86452,133.58325,3.99 2245,483.17084,230.31763,20.484802,40.20581,3.986 2245,489.30884,205.77258,20.867981,36.710373,3.973 2245,281.95367,222.03549,20.195679,30.843597,3.95 2245,475.625,241.56644,19.654663,36.14029,3.914 2245,-9.41152,-4.9855003,39.589733,102.68236,3.871 2245,470.92227,208.39029,36.876648,66.83676,3.845 2245,403.3501,-11.780056,15.748047,33.044292,3.763 2245,34.68308,217.53447,41.03126,83.043015,3.76 2245,-5.323492,203.38773,18.45934,41.693222,3.752 2246,590.9498,217.21672,27.178467,56.82289,48.117 2246,538.8206,222.4747,21.420532,45.096436,15.38 2246,575.12976,220.55495,24.021912,46.566208,11.285 2246,525.5136,217.50055,29.77008,71.00372,10.532 2246,594.82764,210.78574,35.612366,91.789215,8.876 2246,566.0438,216.64145,30.07373,71.58731,8.699 2246,523.26013,216.37656,22.126465,51.659332,6.582 2246,183.7366,227.62389,23.681763,48.04283,6.312 2246,627.02,-18.430283,17.717468,47.193344,5.911 2246,466.13858,288.3493,31.18164,80.075745,5.836 2246,-6.0450196,490.16623,18.594267,41.337616,5.774 2246,580.31116,219.573,41.309998,116.98517,5.673 2246,510.59692,219.34512,31.263977,71.74121,5.607 2246,-18.43216,-61.830513,57.188812,144.99672,5.445 2246,-11.451201,478.8524,29.470814,62.933502,5.434 2246,611.3371,-48.47148,41.271057,101.61629,5.262 2246,539.2327,212.1188,54.10443,136.06494,5.137 2246,626.49164,487.88306,20.686829,46.20331,5.067 2246,582.94867,412.2994,71.77643,175.96304,5.022 2246,612.8745,454.73065,39.406982,107.22955,4.959 2246,-72.33014,266.9417,200.22096,460.7646,4.936 2246,563.3965,222.12967,42.79077,111.64935,4.903 2246,536.4441,309.9741,143.5459,341.20706,4.787 2246,-21.41066,403.97888,78.87039,174.0221,4.784 2246,578.32794,193.52316,43.751587,82.063324,4.784 2246,490.51575,-181.28366,234.70465,425.9008,4.719 2246,585.89294,-102.32371,75.6629,235.88666,4.704 2246,530.7939,214.41597,40.113586,95.858475,4.665 2246,312.999,214.32759,20.8013,39.084793,4.621 2246,-11.037519,-35.006897,30.234037,77.38993,4.571 2246,485.16608,209.4944,38.542664,85.79115,4.521 2246,493.89764,227.67114,237.16217,514.5893,4.462 2246,612.8009,217.1679,35.594482,107.75893,4.448 2246,590.0696,211.50201,48.641113,150.60876,4.37 2246,509.68777,213.84619,55.88681,132.64478,4.355 2246,539.9618,202.9849,26.907715,57.802948,4.352 2246,561.7744,221.04053,23.79834,49.914215,4.324 2246,-6.042225,-18.13982,18.706142,45.305115,4.259 2246,5.442648,214.40463,36.20948,97.5206,4.251 2246,550.81964,219.28853,23.46576,45.85399,4.238 2246,199.58493,228.43723,22.087494,42.75168,4.189 2246,-70.53584,-187.8634,211.11604,453.40332,4.166 2246,190.06259,216.11784,27.322052,55.546432,4.113 2246,-37.126823,-131.28702,117.35707,281.55826,4.102 2246,548.4965,213.5346,37.494568,79.79767,4.059 2246,606.61444,222.14163,25.54309,57.83304,4.007 2247,591.11194,217.64496,21.76709,52.62323,30.119 2247,584.54156,209.0443,32.083252,84.56441,8.695 2247,597.31824,215.57912,26.626953,70.09337,6.965 2247,-5.678073,-17.437794,17.338104,41.186188,6.812 2247,-11.31502,-31.708706,29.37191,70.57703,6.408 2247,627.1445,-18.342247,17.345215,47.653873,6.34 2247,66.85042,220.41978,30.442993,52.515854,6.06 2247,-6.1708593,489.27853,18.864597,42.61606,5.874 2247,608.7078,216.02829,24.633728,67.67352,5.802 2247,622.8963,-33.98417,26.581482,77.12499,5.564 2247,-11.625206,477.41208,29.67118,63.962067,5.457 2247,612.9687,454.7489,39.624695,107.32153,5.309 2247,626.67395,487.65515,20.523804,46.40753,5.197 2247,617.0164,216.6381,20.222473,48.012802,5.114 2247,-16.87497,-63.299324,55.270576,146.2337,4.977 2247,-72.37878,266.9067,200.02866,461.29825,4.975 2247,583.09375,411.81232,71.49634,176.30334,4.899 2247,131.79625,222.68259,30.825226,60.115784,4.874 2247,490.2638,-181.9449,235.03589,427.7248,4.83 2247,-21.455387,403.6128,78.92893,174.11841,4.786 2247,536.6604,310.17398,142.88159,341.3049,4.755 2247,118.64282,222.66513,28.774155,63.43579,4.621 2247,585.64514,-103.3307,76.47894,236.74185,4.547 2247,603.1979,-57.582832,53.085632,140.51825,4.542 2247,148.8372,216.52599,30.931625,60.857956,4.453 2247,574.77344,217.57764,28.902466,74.18451,4.411 2247,587.1851,209.4307,19.759155,43.52687,4.383 2247,493.28995,227.03842,237.68997,515.21643,4.379 2247,143.67123,230.75787,23.537506,47.889465,4.367 2247,-36.629528,-130.71706,116.45921,282.01483,4.145 2247,-70.69905,-187.55072,211.46925,451.7989,4.119 2247,623.87115,217.44772,25.22052,74.4942,4.102 2247,47.199623,214.2843,29.18309,53.19345,4.094 2247,3.2895236,-15.537205,15.976116,37.721016,4.073 2247,53.75225,204.029,38.15132,72.41295,4.054 2247,467.60425,232.99394,31.011627,57.20494,3.958 2247,209.61475,227.204,20.44873,33.34465,3.949 2247,224.8979,235.57924,19.828949,31.006882,3.943 2247,614.0777,184.28554,32.7453,98.04118,3.761 2247,77.53547,221.91957,29.91784,59.09868,3.71 2247,578.91425,200.47952,45.362,139.07492,3.663 2247,-8.197846,39.453876,37.509354,106.42247,3.649 2247,549.58154,204.73642,35.824036,90.44656,3.648 2247,409.88623,-16.86961,18.183105,40.8113,3.646 2247,57.75966,227.49751,24.061897,38.79811,3.589 2247,595.36633,-48.636066,43.806396,102.94103,3.576 2247,2.0666254,490.33194,19.559614,41.336273,3.557 2247,620.03564,-18.334702,16.545044,43.84197,3.552 2247,124.94111,235.34207,31.147621,63.469055,3.541 2247,485.65463,223.10014,29.651093,67.651596,3.532 2247,-9.636297,136.16809,39.918785,104.70001,3.527 2247,504.48166,224.45105,22.54306,55.866882,3.478 2247,86.49703,226.8703,29.427711,65.05414,3.43 2247,28.040031,216.78781,29.88778,53.282654,3.397 2247,-10.096237,-5.5365486,39.631966,101.702255,3.372 2247,516.65875,205.73758,38.515747,90.759674,3.365 2247,217.32397,235.35243,20.157166,30.45839,3.36 2247,202.98587,233.17267,18.699158,29.007416,3.358 2247,161.00609,220.17609,23.076096,45.22226,3.357 2248,613.44354,449.48517,39.46405,114.28613,7.065 2248,-5.7291265,-17.515162,17.396278,42.072018,6.564 2248,-11.068946,-31.733576,29.770485,71.791595,6.244 2248,622.7306,-34.06716,26.682617,74.63247,6.058 2248,-6.063028,489.70117,18.662739,41.722168,5.54 2248,626.9862,-17.765139,17.462158,45.990654,5.471 2248,602.936,-56.01795,53.10437,132.8172,5.277 2248,-11.594494,476.8683,29.331532,64.87073,5.235 2248,599.3323,192.77682,34.899292,104.12894,5.218 2248,395.66623,238.05905,30.363434,61.05951,5.18 2248,622.2712,475.81195,28.307678,68.06824,5.149 2248,-72.64636,265.59015,201.02362,462.46478,5.115 2248,200.07574,230.66924,23.244354,39.995834,5.06 2248,481.35727,229.92395,34.30612,63.678894,5.044 2248,490.15762,-181.48015,235.40366,428.6297,5.024 2248,582.8349,410.18134,71.42139,175.3523,4.886 2248,536.1291,309.61035,144.01434,341.04004,4.861 2248,585.95105,-101.808914,75.65405,234.40395,4.803 2248,-17.24,-62.944263,55.625114,147.02263,4.803 2248,507.46313,233.37273,33.01471,68.535416,4.789 2248,-21.461731,402.977,79.12032,174.88745,4.78 2248,493.6331,229.15387,237.48691,513.395,4.749 2248,490.96857,-16.049213,16.830536,36.99974,4.719 2248,582.3777,207.69342,38.806274,100.84784,4.67 2248,-0.40631175,227.69809,30.65736,66.4653,4.567 2248,523.07446,217.48955,32.918762,69.19606,4.539 2248,572.7819,243.82022,32.536743,57.3244,4.535 2248,594.0239,-44.051197,45.714172,92.42234,4.411 2248,542.6927,200.4547,51.755066,113.93761,4.408 2248,618.12885,199.93709,18.99524,45.691635,4.312 2248,213.05084,214.2034,37.24495,78.26956,4.257 2248,467.73483,225.49823,32.483368,59.49887,4.222 2248,546.9207,220.31787,33.53595,69.92447,4.17 2248,-37.035374,-130.31787,117.38724,279.81726,4.14 2248,3.1468315,-15.377536,15.970974,38.756447,4.127 2248,482.8078,-14.797308,16.904083,35.1475,4.064 2248,187.79472,227.11896,30.009964,52.2536,4.063 2248,123.460785,43.91449,28.846298,59.26123,4.049 2248,421.26642,238.89148,29.665527,62.992126,4.043 2248,609.87506,376.88458,40.67743,114.23834,4.029 2248,-70.84122,-188.1705,211.60577,454.60898,4.025 2248,572.52234,-31.820242,29.22174,65.470955,4.004 2248,417.2675,255.6335,21.300323,55.940933,3.966 2248,-8.954832,-5.9281273,38.734478,102.75877,3.949 2248,-5.6887474,135.01663,18.133644,42.905823,3.933 2248,227.99777,212.86731,37.010284,80.61194,3.879 2248,402.73767,248.34369,30.733246,64.52472,3.841 2248,204.56146,227.82271,27.738022,53.77269,3.84 2248,3.4297454,218.46767,37.77918,102.101395,3.788 2248,348.62726,181.71071,28.547058,65.24797,3.787 2248,-5.7324705,104.99053,18.278568,43.2918,3.761 2248,508.5736,205.02121,53.32202,111.62628,3.726 2248,564.51666,204.47859,39.893005,88.92174,3.689 2248,-13.334746,186.50781,48.791256,137.34885,3.688 2248,619.48987,-17.090775,17.894958,42.203777,3.688 2248,578.5711,187.39737,19.781189,43.700912,3.687 2248,555.69617,240.6999,31.179993,63.646164,3.632 2248,561.06744,173.2004,30.113647,73.13884,3.622 2248,589.5142,191.5495,16.680542,37.864563,3.62 2248,499.25687,-15.516986,17.062775,37.554283,3.552 2248,346.03024,230.48868,19.14383,31.207245,3.545 2248,473.62717,177.96751,58.332123,112.79677,3.536 2248,245.38863,210.36826,36.76317,84.04663,3.536 2248,604.569,15.291573,51.35443,144.02124,3.531 2248,562.8649,-14.626466,33.39679,58.28777,3.527 2248,13.222089,-22.70494,56.021748,134.41171,3.524 2248,576.8584,-16.139402,19.590332,39.864513,3.516 2248,613.10254,204.09915,35.405823,110.712585,3.484 2248,596.25116,453.34473,40.605957,107.95038,3.475 2248,260.07535,221.8865,39.719604,97.26672,3.455 2248,185.85213,235.61292,21.719498,34.730286,3.44 2248,567.6525,327.0942,63.835632,156.38211,3.437 2248,-4.44539,1.128088,16.144352,42.09871,3.43 2249,102.77703,203.4901,22.374077,49.03116,23.395 2249,462.57993,286.0835,30.836884,71.46594,7.405 2249,-5.1150427,-16.869942,16.74138,40.725376,6.888 2249,66.30475,-9.418249,33.406776,60.316277,6.728 2249,-10.814932,-31.106274,29.071745,68.88385,6.109 2249,627.1753,-17.794859,17.513916,46.98649,5.872 2249,-11.914039,477.07608,30.204609,64.10135,5.71 2249,-6.134472,489.15378,18.768864,42.4039,5.386 2249,208.82645,221.21529,22.529327,43.747818,5.199 2249,-17.143435,-60.729187,55.7399,140.39377,5.166 2249,602.7693,-55.819977,53.47632,140.62865,5.138 2249,623.0018,-34.108326,26.695374,77.24088,5.135 2249,613.14923,454.3762,39.45587,107.63681,5.124 2249,-72.83898,265.63928,200.97696,462.53955,5.089 2249,626.4071,487.92102,20.895142,46.357544,4.995 2249,3.774885,-14.400897,15.1889515,36.84394,4.959 2249,-37.242756,-127.50368,116.875885,271.99277,4.947 2249,490.39914,-181.29143,235.2515,428.39648,4.914 2249,544.43384,230.66064,33.305786,67.69812,4.911 2249,-21.694546,402.23932,79.509094,175.45819,4.877 2249,583.1086,411.3059,71.733215,177.10193,4.846 2249,536.52277,310.44324,143.24164,340.2091,4.834 2249,561.7395,-132.21031,114.13733,280.59726,4.804 2249,499.03894,222.05151,41.282715,85.22949,4.749 2249,514.4423,225.77573,42.30609,93.819214,4.612 2249,80.03146,-1.6401615,33.10515,62.20616,4.593 2249,75.63867,-31.783585,30.633621,75.6265,4.486 2249,493.97855,228.17514,237.39963,513.9098,4.48 2249,155.05106,100.697716,31.006851,73.14295,4.37 2249,483.03772,226.06381,41.945312,82.834564,4.356 2249,525.5669,216.5773,31.136963,64.93393,4.248 2249,-70.21405,-188.5092,210.60449,455.84918,4.238 2249,88.75451,195.49823,30.729485,61.322174,4.191 2249,188.05566,221.51755,32.369568,53.99362,4.165 2249,574.68054,198.3856,49.494812,125.36528,4.165 2249,169.78033,224.31656,31.87645,56.786316,4.125 2249,377.10876,221.73454,38.341522,56.460587,4.09 2249,457.32745,241.39789,56.64569,119.571106,4.077 2249,530.38403,234.43297,36.559875,69.4539,4.063 2249,-9.558488,-6.9319305,38.627724,100.44111,4.056 2249,12.048466,-19.477554,55.967594,119.972694,4.017 2249,518.1252,322.46487,32.031006,80.24072,3.996 2249,598.9095,183.21533,35.960022,93.42276,3.947 2249,397.4784,227.77235,39.52594,55.606888,3.943 2249,259.5304,231.90585,33.845184,54.250885,3.934 2249,257.58694,229.82066,23.332306,39.921463,3.931 2249,597.74915,234.82066,38.421753,111.879776,3.902 2249,379.59973,-21.850212,32.616333,72.30185,3.89 2249,11.091768,-14.741457,15.749018,36.109917,3.845 2249,540.67316,201.84123,53.42682,121.09996,3.812 2249,55.298615,-33.9448,28.651772,74.85702,3.79 2249,72.42379,-14.154587,19.541817,42.53806,3.78 2249,467.48047,228.74875,41.356995,83.289856,3.749 2249,384.90677,239.12984,36.527924,56.170364,3.729 2249,617.7326,186.90022,21.052551,55.25847,3.725 2249,539.0529,199.83282,18.591614,37.187286,3.669 2249,446.31467,285.86084,30.948486,62.69333,3.619 2249,613.4968,179.90018,34.617676,98.79773,3.615 2249,155.38797,222.58728,34.767334,58.318817,3.583 2249,612.53815,249.56244,36.657288,114.51721,3.582 2249,523.8805,214.11858,54.517456,125.08284,3.577 2250,70.42047,202.87212,24.271393,46.427765,40.573 2250,627.36053,-17.837744,17.555786,46.1267,6.395 2250,-5.5691123,-17.956825,17.33798,41.6306,6.098 2250,623.3594,-33.72901,26.370117,75.97033,6.054 2250,48.346478,203.56679,25.09708,48.8192,6.053 2250,-11.969596,478.52097,30.233257,62.22635,5.655 2250,-6.1917157,490.01038,18.715305,41.372803,5.582 2250,-12.7515335,-40.536392,41.748726,100.94932,5.4 2250,613.1536,453.87427,39.549683,108.73309,5.178 2250,225.62729,213.68954,29.51155,58.429657,5.101 2250,490.24805,-181.73157,234.85999,429.42255,5.049 2250,602.7611,-57.106224,53.408813,141.65482,5.031 2250,585.1717,-101.12982,76.24365,235.69092,4.907 2250,-21.673918,402.58112,79.17307,175.13348,4.814 2250,-72.73328,266.75128,200.16928,461.2293,4.81 2250,626.4399,487.75912,20.803162,46.220123,4.777 2250,536.93713,311.26874,142.43573,341.75885,4.623 2250,583.51715,408.2286,71.16449,179.83658,4.602 2250,617.2532,356.2165,22.430176,59.157623,4.51 2250,55.22652,196.98004,31.121967,59.639587,4.476 2250,-20.457703,-87.51655,72.1906,195.8047,4.413 2250,-5.639142,197.34186,19.080414,45.690872,4.372 2250,-70.50575,-188.32848,211.31706,455.4369,4.367 2250,546.3622,285.07623,34.574097,75.349365,4.364 2250,43.384926,217.51424,19.679916,37.899796,4.318 2250,620.3928,-5.6924973,17.64447,39.24372,4.275 2250,493.3518,226.45358,237.88245,516.3236,4.247 2250,211.25685,228.84908,32.962357,61.733932,4.225 2250,168.8585,216.36182,21.22435,38.360077,4.17 2250,1.2917709,195.36626,21.262953,49.37268,4.17 2250,3.4293513,-16.193993,16.406292,37.35334,4.119 2250,622.13293,352.21417,26.463196,77.7966,4.107 2250,547.45233,-14.452452,16.064026,34.845547,4.052 2250,-37.372513,-129.65326,117.399414,277.90152,4.052 2250,178.3114,227.64296,34.516052,53.719986,4.042 2250,371.7192,221.93562,33.65396,55.779953,3.907 2250,-5.6480603,73.22275,17.99709,40.81244,3.892 2250,161.79706,227.67676,33.719482,63.200867,3.891 2250,374.81232,-36.14778,27.26596,82.16468,3.856 2250,-1.3494384,-33.242443,27.434944,68.403206,3.77 2250,619.12366,191.86226,20.666504,40.722763,3.763 2250,573.15314,225.71477,52.855225,139.42299,3.761 2250,612.6039,163.13199,36.106995,104.75815,3.748 2250,-10.677166,186.91452,30.074461,66.32405,3.704 2250,67.15883,202.62659,37.620163,68.0506,3.703 2250,597.7422,174.78401,39.08551,93.0435,3.68 2250,539.1726,-14.553871,15.5407715,35.039658,3.651 2250,2.1041055,491.5528,19.56133,40.163086,3.616 2250,-5.654974,170.30627,18.927525,42.65753,3.609 2250,613.7725,199.07825,26.288208,78.52667,3.605 2250,612.78894,360.91888,27.355957,96.21582,3.584 2250,550.70074,231.0542,32.0885,68.19409,3.539 2250,535.0139,296.00034,30.191528,67.49539,3.514 2250,411.3844,-35.234528,60.336975,137.01527,3.508 2250,598.07855,210.74167,37.459717,108.02997,3.492 2250,222.90662,233.94681,25.544174,43.877533,3.454 2250,395.0006,-0.92918015,32.560272,91.53346,3.444 2250,-5.3055806,2.0250244,16.640202,39.211784,3.43 2250,86.52623,205.2214,25.22358,44.940277,3.388 2250,555.3562,-16.63604,17.056763,36.367577,3.387 2250,619.5854,137.85094,19.17157,44.66008,3.358 2250,613.5798,110.892944,36.30188,111.47052,3.351 2250,65.71309,173.43222,43.62474,78.40245,3.345 2250,194.71916,228.36531,34.29251,62.06859,3.342 2250,290.653,231.03311,19.892944,28.96753,3.336 2250,172.42313,-2.8859463,16.611282,34.805088,3.325 2250,148.55153,93.07358,32.450607,74.293,3.317 2250,531.9912,-141.06273,116.12207,280.1205,3.313 2251,13.527837,192.85223,30.29277,64.14755,44.456 2251,0.59637666,195.69661,25.702105,59.006897,9.582 2251,29.141083,201.54391,25.340073,53.1951,7.477 2251,-5.496228,-18.59803,18.049774,43.326714,6.166 2251,74.83174,220.08646,19.336433,34.65631,6.076 2251,-5.9451632,489.88925,18.581387,41.682037,6.048 2251,-12.361675,-39.581074,41.444466,99.567444,5.851 2251,627.3933,-18.937677,17.48407,47.359093,5.512 2251,-8.799345,465.11786,37.622787,91.68164,5.48 2251,613.01874,454.33588,39.528503,107.939026,5.426 2251,623.5532,-33.65308,26.100403,76.06787,5.405 2251,626.49493,487.43622,20.750427,46.633667,5.178 2251,39.530617,208.77826,24.53257,47.11667,5.151 2251,-72.90336,266.4607,200.64856,461.13,5.12 2251,-6.574862,196.46005,20.304035,49.121674,5.086 2251,602.8805,-56.365555,53.38916,140.20583,5.033 2251,583.2573,411.4501,71.45514,176.67856,5.031 2251,490.19586,-180.8135,234.96002,429.03763,4.983 2251,56.916466,209.77086,22.330582,44.170944,4.961 2251,585.3666,-99.35294,75.87921,232.19565,4.932 2251,-21.486832,403.52795,78.99225,174.56897,4.835 2251,536.55237,310.17096,143.52692,341.86792,4.756 2251,-7.027506,199.40886,37.319035,89.201096,4.74 2251,-70.73432,-188.9403,211.77896,456.60638,4.684 2251,230.89967,245.85693,37.939682,56.979553,4.636 2251,-19.993938,-86.59793,71.397385,195.4783,4.493 2251,493.71234,227.01251,237.32184,515.6085,4.38 2251,-5.1332617,138.35725,17.289413,41.84143,4.292 2251,-37.603172,-128.84508,117.2052,280.50232,4.184 2251,358.39716,-35.795135,27.554047,81.94933,4.103 2251,596.3902,191.03143,39.30536,81.82495,4.079 2251,596.8064,228.32289,39.478455,91.633255,4.009 2251,47.15176,195.97987,28.437702,60.140335,3.851 2251,-15.226902,127.100914,51.658844,136.8823,3.838 2251,-10.997337,175.85999,29.796751,65.21881,3.824 2251,459.85852,224.72577,30.962372,55.862732,3.799 2251,315.66684,279.70825,18.737427,33.11487,3.78 2251,597.6804,52.876835,38.442505,99.86102,3.756 2251,314.537,162.68034,30.31607,75.585434,3.731 2251,-15.006241,198.07109,50.516323,150.36806,3.73 2251,2.757588,-17.865837,17.03424,42.021477,3.71 2251,373.72226,-35.86809,28.987976,79.349785,3.671 2251,523.50867,-14.208306,15.610352,37.592598,3.668 2251,65.64566,213.51016,21.001724,40.46112,3.637 2251,-5.513624,179.0328,18.23943,40.119843,3.619 2251,619.7146,-18.780775,17.206116,43.07573,3.576 2251,578.92163,228.84073,41.269287,86.104675,3.57 2251,89.39765,208.55344,21.518326,40.78624,3.513 2251,81.78284,228.49103,17.537888,28.39035,3.502 2251,613.229,48.95232,36.698364,106.41742,3.484 2251,531.44763,-11.942921,15.486206,35.50225,3.457 2251,332.28333,164.77887,29.790802,72.93428,3.436 2251,267.05716,250.62852,31.73108,62.141464,3.429 2251,-5.740039,89.40719,17.401264,40.649254,3.418 2251,2.3387237,491.29135,19.290388,40.741913,3.417 2251,337.81863,169.50354,20.925018,46.484375,3.409 2251,10.536726,-34.297207,58.570374,135.78348,3.362 2251,364.3622,171.44368,29.479523,71.48335,3.356 2251,465.5606,246.44025,20.726868,31.139343,3.353 2251,-7.7416754,3.5413017,38.036396,107.042694,3.353 2251,531.67206,-140.05328,116.152954,276.4825,3.35 2251,618.1553,489.23108,21.360474,44.321167,3.345 2252,233.64006,212.00072,22.406723,40.41063,7.106 2252,-11.697134,-33.606705,31.131731,73.69167,6.162 2252,-6.386341,489.90527,18.91796,41.613342,5.985 2252,-12.36711,479.08444,30.827042,61.599213,5.973 2252,41.356503,216.5263,21.593487,37.544464,5.968 2252,627.43884,-18.334194,17.114258,48.12339,5.929 2252,-6.1491213,-17.886606,18.355267,43.44236,5.575 2252,623.3418,-33.77254,26.322632,77.96651,5.354 2252,612.66675,455.2492,39.75464,106.30371,5.177 2252,-72.913605,265.50238,200.88722,461.6667,5.132 2252,582.9317,412.29413,71.99603,175.81,5.025 2252,536.10785,311.10992,144.27777,340.14362,5.016 2252,585.43335,-98.49888,75.52161,231.15833,5.011 2252,-21.801659,402.31772,79.43431,175.47208,4.963 2252,-18.056347,-61.96064,56.81256,141.94757,4.943 2252,532.2073,-181.82538,148.90784,421.50546,4.884 2252,603.3368,-57.602642,52.866455,139.13708,4.848 2252,626.4348,488.44305,20.999939,45.328674,4.817 2252,493.54578,228.08603,237.34106,512.5818,4.688 2252,-70.93331,-189.22675,211.20367,456.60876,4.634 2252,509.49286,254.97397,40.01129,58.438385,4.481 2252,342.0728,-35.630558,28.209717,81.57925,4.386 2252,-36.94806,-128.32668,117.06,277.08905,4.289 2252,0.8352196,175.63156,28.606407,79.86752,4.23 2252,368.1233,206.00912,24.14035,46.18306,4.134 2252,-6.0610065,87.87234,18.668098,42.775337,3.975 2252,10.432768,-18.258003,58.361618,126.91721,3.949 2252,570.34125,208.86075,56.033325,107.845764,3.938 2252,-5.919528,106.05339,18.897886,42.72374,3.917 2252,386.0698,201.90857,41.865112,80.06128,3.878 2252,595.4951,-48.114796,43.358704,101.938736,3.866 2252,158.607,205.9285,26.840988,55.40439,3.836 2252,267.28156,215.31653,28.496674,54.50113,3.818 2252,535.59766,210.51407,63.697327,105.61673,3.818 2252,402.0869,203.45291,43.355743,77.329346,3.815 2252,-5.219529,247.63728,15.66037,37.355392,3.813 2252,588.09454,42.61045,29.874939,59.499428,3.801 2252,-9.164921,-3.6092987,39.47454,98.59434,3.759 2252,307.54456,186.20628,40.198914,71.285995,3.755 2252,0.055162907,71.18605,28.442827,73.72885,3.742 2252,365.98822,-35.46177,29.072052,75.03275,3.732 2252,109.39789,87.35406,30.817917,69.82566,3.683 2252,-5.8338013,64.58144,18.1205,42.36402,3.654 2252,595.1879,237.53426,40.811707,101.183,3.649 2252,155.11545,219.82964,20.085114,39.329086,3.635 2252,337.74005,200.8635,43.561768,79.10245,3.62 2252,336.87894,267.19467,34.671906,56.516968,3.606 2252,393.69537,-16.328968,32.378387,65.24878,3.58 2252,370.79956,187.80145,43.3136,69.46344,3.577 2252,486.21304,262.6949,39.549286,61.301422,3.561 2252,526.2853,247.03496,40.63037,52.629288,3.54 2252,378.77396,-21.112474,17.804657,45.73901,3.536 2252,417.99994,279.3231,36.66638,58.77066,3.529 2252,142.47995,210.57071,28.809021,53.239807,3.475 2252,416.9269,211.86368,44.854706,83.687164,3.474 2252,2.0413227,491.48218,19.76407,40.73224,3.467 2252,354.28735,210.43376,21.094727,42.090103,3.421 2252,-5.3907013,264.6636,16.575176,38.27133,3.418 2252,315.2158,177.91714,54.175323,105.01877,3.402 2252,495.47897,264.64905,47.403656,74.22742,3.375 2252,57.296925,215.99611,20.640835,35.210434,3.369 2252,320.8794,261.62927,43.891296,97.8515,3.359 2252,73.2413,217.54707,19.925667,32.051056,3.356 2252,83.0052,226.73154,18.217667,27.817108,3.345 2252,502.04767,269.1455,29.396484,46.92627,3.34 2252,619.8842,-17.399712,16.65393,44.51905,3.321 2252,568.6121,241.71799,24.194092,39.62439,3.319 2252,238.3841,213.49611,26.423004,58.037247,3.314 2252,8.822217,-6.100582,33.17848,70.38017,3.308 2252,122.71843,90.08112,32.614,66.94805,3.303 2252,-14.402004,181.72545,49.370968,132.32259,3.3 2252,-5.1524916,229.27757,16.590097,39.43712,3.287 2252,327.8804,214.26826,22.728302,35.16368,3.279 2252,258.9197,225.54645,21.41867,41.275024,3.261 2252,307.6352,204.88327,17.797424,33.94162,3.26 2252,188.06358,236.36441,17.462875,28.307648,3.26 ================================================ FILE: evaluation_script/state_of_arts/MBNet_result.txt ================================================ 1,502.3300,212.4550,19.9220,41.6480,0.03658492 1,370.0030,202.7680,22.6000,44.4990,0.03585266 1,123.9650,203.6010,23.8230,41.8330,0.01197410 2,528.1200,222.7180,23.5050,50.2160,0.25511515 2,71.7040,211.2710,26.6192,49.6190,0.03628834 2,367.0440,208.8040,24.4370,48.4300,0.03257646 3,561.5170,232.4190,23.4390,52.4460,0.38678911 3,577.2990,237.2470,21.7990,46.7510,0.02977509 3,357.5810,210.1920,29.3410,57.4180,0.01765842 3,260.4820,207.4190,22.8350,35.9760,0.01186543 3,24.9199,217.7830,28.5014,50.8460,0.01100857 4,252.1990,205.3790,22.4450,36.7080,0.03629056 4,66.2081,209.2460,24.3067,45.9510,0.02719658 4,118.6750,170.6340,27.9480,61.5490,0.01438743 4,362.5700,207.2460,32.1740,66.6890,0.01081953 5,322.6590,107.3560,35.9880,78.1230,0.01596863 5,266.7750,205.9330,22.2370,35.2730,0.01336757 6,288.6060,205.3330,22.8710,37.0280,0.01723578 7,296.9120,196.1330,23.4630,38.7950,0.02531544 7,90.2454,150.6520,32.1876,67.8690,0.01621271 7,459.7070,194.7570,28.5650,68.4400,0.01602624 8,10.0911,116.4460,37.0278,87.2500,0.03195136 8,284.3680,189.7970,22.8210,37.6020,0.02461022 8,363.9640,194.8020,21.3240,43.4380,0.01069153 9,581.5510,226.4620,31.4830,65.5510,0.05480649 9,346.3820,77.0298,33.8430,61.7702,0.01655808 9,11.4600,127.9500,36.9938,94.7240,0.01548472 9,580.5600,196.4090,30.6370,70.7700,0.01521913 10,128.0600,205.3530,26.6830,50.4590,0.01344550 11,594.3880,137.7570,34.6660,80.4450,0.04053614 11,398.9810,114.2890,35.1180,76.1170,0.01784074 12,292.2300,195.4560,24.4300,43.3100,0.08075617 12,394.0320,205.2910,23.6520,46.0320,0.06791520 13,460.1560,211.9140,21.7670,40.9130,0.04665988 13,470.5560,207.6920,22.5000,46.6920,0.03630104 13,292.9860,194.7990,24.0860,38.3200,0.02480446 13,71.9676,198.4610,27.2068,50.5180,0.01509513 13,383.3680,193.3330,203.7360,49.4080,0.01280779 13,448.3020,202.1840,47.6000,52.0210,0.01246784 14,488.8610,212.7420,22.8900,47.1060,0.22189248 14,573.1850,191.6580,29.1010,74.2640,0.04922399 14,24.0164,200.4040,31.4438,58.7870,0.04473136 14,190.9370,193.4240,21.7610,42.0010,0.03027771 14,564.1360,198.0310,45.4870,113.3700,0.01405389 14,288.8210,196.5530,24.7770,38.3460,0.01296323 15,122.7930,198.4080,25.7490,48.3790,0.05831717 15,528.7660,214.7800,27.2320,56.2120,0.04297545 15,289.2650,192.5270,23.9040,41.4070,0.01977194 16,575.9190,225.7150,24.1180,53.8350,0.41707724 16,441.8200,215.5790,21.4270,40.7580,0.01426109 16,330.4470,136.3820,33.9790,98.8070,0.01155668 17,444.4240,203.2470,20.0330,42.2580,0.26510414 17,461.7670,203.8710,19.5310,40.6210,0.11424617 17,279.9920,187.2350,25.5850,41.3860,0.04058388 17,423.2400,197.4270,156.7970,52.1310,0.01718197 17,495.6960,200.2470,22.3570,40.9900,0.01486200 17,523.4690,206.7710,21.8200,41.9590,0.01299754 17,566.7670,211.7160,31.4240,78.0420,0.01279591 17,82.2770,188.8750,25.8120,48.7990,0.01240788 17,445.8750,201.7410,56.3940,46.1090,0.01222074 18,452.0660,218.0460,21.1180,43.6330,0.38863340 18,467.1290,216.1240,20.6780,42.9980,0.32627153 18,270.4480,197.4660,25.0770,45.7880,0.07455327 18,53.8198,205.1970,26.5480,53.3660,0.04518643 18,548.8990,218.4860,23.6630,46.0890,0.03932830 18,572.6310,233.9360,21.1480,38.9380,0.02775429 18,507.1500,214.0220,23.9010,44.4560,0.02085976 18,439.1530,214.2250,200.8470,52.2810,0.01605531 18,1.0000,145.3690,31.3146,76.7780,0.01212281 19,465.3760,218.3190,21.2030,46.6510,0.54903775 19,483.5650,216.2610,21.4820,46.3040,0.47852004 19,473.6990,215.7950,21.4530,46.2220,0.31159988 19,265.7680,196.3420,25.5770,47.6670,0.10580762 19,372.7490,221.9320,22.9790,46.2530,0.04578874 19,31.7681,205.1950,22.3889,45.8520,0.02968085 19,1.8497,200.4930,75.1752,60.8260,0.01377427 19,1.0000,204.5500,27.7689,73.2480,0.01354790 19,393.6310,210.3190,197.2170,48.4380,0.01143353 20,490.1580,221.6500,23.1390,50.8410,0.69547004 20,514.9070,218.9730,24.6500,50.2460,0.68179643 20,385.6550,215.9230,25.0560,56.8610,0.13898046 20,264.6060,198.3080,26.2390,45.0380,0.05535512 20,440.4570,207.0420,21.0940,41.3620,0.02151216 20,314.3810,198.5800,22.6720,46.5490,0.01943637 21,541.4610,216.7640,26.9740,61.6790,0.81545573 21,575.3220,215.2400,26.0500,58.9740,0.73752683 21,414.5990,202.4530,27.1740,69.0660,0.07501441 21,393.0430,41.2066,30.9280,75.0694,0.05387197 21,563.8490,213.5270,26.4790,54.4780,0.01735353 21,273.9210,197.7550,23.9420,38.2990,0.01463772 21,50.2204,207.5050,24.4386,41.0740,0.01184361 22,454.4090,216.5500,22.5680,47.3720,0.23955737 22,489.3600,106.6850,38.6010,88.0570,0.01970374 22,443.8370,217.6090,20.9100,42.6850,0.01489513 22,433.8870,212.5440,52.1660,51.0760,0.01411521 22,435.3330,217.0840,19.8170,38.3150,0.01376343 22,356.5320,203.4070,22.8240,40.5810,0.01133009 22,273.1940,199.6410,143.3900,48.5380,0.01114425 23,520.2200,206.7330,30.3610,70.6840,0.79282355 23,551.5870,202.0230,21.9570,47.3940,0.06218559 23,481.4250,217.8840,22.1300,43.8670,0.04598576 23,500.7360,205.8080,72.6620,65.0970,0.01433444 23,487.1570,208.0890,29.6290,57.0550,0.01335009 23,533.8300,200.3670,26.9380,58.0240,0.01161852 24,547.5300,214.6660,25.4420,61.5800,0.69059509 24,570.4500,211.4490,27.2300,63.9780,0.39494255 24,615.1580,198.2050,23.3950,55.7660,0.19520831 24,559.6230,213.9210,25.8530,62.0870,0.07460105 24,499.7780,216.2860,24.2610,48.2600,0.01398984 24,299.1130,204.4170,126.9390,51.9420,0.01210645 24,336.5510,211.1370,22.1960,36.5930,0.01190481 24,95.7854,204.9110,27.1056,43.5840,0.01019007 25,326.1090,208.6960,22.1910,38.7520,0.22542062 25,385.5920,199.7280,24.7960,52.8520,0.05209218 25,300.4850,202.7230,150.1000,49.9750,0.03598797 25,339.0090,205.4040,19.8510,36.8420,0.01800790 25,45.9734,197.5070,29.9345,56.6690,0.01420085 25,71.8077,200.5790,26.1007,44.2080,0.01043224 26,312.7710,213.5630,22.0620,40.0110,0.33586749 26,348.4530,203.4230,19.8270,38.3050,0.03546302 26,413.5070,154.8040,35.0390,95.4360,0.02803807 26,386.5020,205.2670,20.6610,38.0990,0.02672165 26,317.1440,202.5320,97.0560,47.6890,0.02293719 26,339.5400,204.2930,20.5940,38.8060,0.02102900 26,36.2540,197.7350,39.8528,52.0110,0.01227868 26,321.4390,206.4020,20.4920,38.1730,0.01009899 27,291.0860,218.3180,24.8650,42.5970,0.41693690 27,370.3260,208.1010,20.6920,37.8160,0.03921177 27,295.0730,195.8110,26.5860,53.0900,0.03031363 27,307.5960,204.5680,151.3020,47.8700,0.03019600 27,3.8825,199.1930,34.7539,54.6930,0.02243719 27,353.0810,207.3460,21.2330,38.8660,0.01695723 27,335.2200,206.0990,71.6010,43.3990,0.01651861 27,548.1090,195.0270,32.3720,76.7010,0.01608257 27,503.3850,207.6800,28.3850,59.6500,0.01372851 27,128.7920,210.2820,23.5350,44.0680,0.01235653 27,339.7790,207.9770,20.2820,33.5240,0.01183030 27,395.0850,203.8070,23.7790,46.2120,0.01034053 28,249.2750,214.2220,27.0410,51.2210,0.62314242 28,422.4360,190.3400,33.0950,75.2420,0.03945169 28,105.5420,204.2170,20.8630,38.9100,0.02343845 28,375.7490,201.8060,22.8490,43.3420,0.02179191 28,296.9320,189.0870,22.9310,39.0710,0.02040774 28,82.3225,196.5420,145.8705,49.4610,0.01331099 28,519.0980,1.0000,41.0330,86.9700,0.01299759 28,290.9280,200.8020,164.4520,47.4380,0.01109023 29,187.0120,213.5000,32.8210,69.5470,0.69847250 29,480.9030,169.4800,47.8050,123.0450,0.10919151 29,385.4980,202.3140,23.3330,45.5930,0.03834751 29,83.6380,203.5360,23.1530,43.7310,0.02332351 29,477.2110,159.3970,34.4800,88.4000,0.01632488 30,91.1003,216.0140,37.9197,84.0320,0.80303407 30,75.9051,195.6580,66.2369,92.9980,0.02723834 30,85.4322,214.0520,29.7748,64.4460,0.02267651 30,356.7000,199.6770,22.0590,42.6400,0.02164162 30,100.9826,247.5830,30.7644,59.5640,0.01674969 30,64.2658,203.0510,20.8196,43.0470,0.01525038 30,461.6850,165.7940,25.0140,49.2090,0.01401868 30,370.3730,204.9690,21.6700,38.8350,0.01011208 31,452.8750,187.8910,21.6550,41.7870,0.02383299 31,47.6519,197.5150,23.8843,46.2290,0.02127566 31,18.1054,192.1100,124.1016,55.3270,0.01859008 31,303.3550,181.4170,206.5020,52.1850,0.01558051 31,330.9870,196.2000,20.8050,33.4970,0.01341201 31,421.7950,196.1380,24.6110,56.1280,0.01303004 31,313.6650,193.8090,105.0860,47.0480,0.01283926 31,113.5980,188.6330,20.2360,40.1840,0.01224038 31,385.5560,195.5280,20.5640,42.7660,0.01141751 32,494.2390,148.1990,32.8370,80.3300,0.04291627 32,332.4020,206.0310,20.7340,38.2190,0.03474786 32,81.6398,198.5930,27.8552,54.3010,0.02392513 32,20.5305,217.3690,32.6186,58.9990,0.02012425 32,297.4190,198.8020,168.9700,49.3480,0.01846556 32,403.4620,215.0220,21.1850,38.4590,0.01471784 32,470.2690,184.0470,24.1420,58.0360,0.01452810 33,425.1460,203.0620,26.9480,59.8270,0.20079330 33,457.6150,208.3510,20.5440,41.4140,0.12291060 33,330.9610,202.0980,22.2460,40.4570,0.03354166 33,33.6656,197.6690,27.1739,51.4480,0.02345459 33,302.0210,196.3950,161.5320,49.9980,0.01752057 33,3.3236,178.4990,213.8674,51.8420,0.01445268 33,438.2260,205.8170,22.4250,48.2770,0.01210712 33,363.7390,201.6380,20.2820,35.6010,0.01103458 33,70.2108,181.3700,24.2384,45.9410,0.01035556 33,144.7350,195.1350,29.3600,47.4940,0.01034206 34,364.9010,207.2370,20.9390,35.5850,0.04072317 34,116.4430,197.0770,23.8280,47.5280,0.04002284 34,329.8870,202.2880,22.0370,42.1860,0.02889351 34,497.0950,199.0030,24.7950,60.3480,0.01910958 34,78.4283,196.6170,147.4277,51.8580,0.01423145 34,304.2500,199.1930,155.8760,50.3170,0.01412373 34,353.3300,200.8470,42.8000,44.9070,0.01228102 34,276.7700,190.6830,22.6790,35.4020,0.01045401 34,126.9220,195.3380,23.4650,48.2550,0.01041877 35,558.1460,218.7510,24.8930,57.3440,0.78899622 35,525.2780,217.0460,28.4080,64.6520,0.62061572 35,375.3810,209.2090,21.5360,38.5740,0.15126584 35,84.0680,198.8480,25.0280,54.1760,0.12485022 35,339.2350,203.2610,23.4780,44.3110,0.02156176 35,557.5310,135.7850,30.0250,78.1700,0.01313787 35,549.3700,213.0080,24.6280,57.4420,0.01302578 35,274.7940,193.0050,22.3130,33.4140,0.01092856 35,47.7338,199.6510,147.4192,52.6590,0.01022835 35,366.5090,203.6790,22.6410,45.2270,0.01020350 36,395.4850,208.9020,23.9590,50.0240,0.58845639 36,577.0390,194.5110,30.6100,69.1320,0.07672097 36,47.2502,199.0360,29.6360,61.2230,0.05839530 36,58.2660,194.4110,30.2322,61.3450,0.01611762 37,434.8690,211.3940,27.5210,59.7500,0.79081184 37,535.3450,137.3950,35.3650,87.9210,0.05904812 37,410.8660,197.9690,22.0540,52.8520,0.02024612 37,10.8748,195.2450,29.8956,72.8360,0.01812957 37,548.9850,204.0540,29.1580,60.9920,0.01504783 37,447.3170,212.5870,21.9340,47.1600,0.01159404 38,507.3860,223.1520,33.0670,80.1080,0.87732774 38,491.1260,221.2890,21.5310,44.2120,0.12046096 38,499.5570,225.0920,25.0720,62.0110,0.02442326 38,600.0140,232.3530,23.4480,38.4990,0.02179528 38,298.4810,201.9750,21.2120,33.6760,0.01091110 39,487.0090,1.0000,38.7430,67.1417,0.03002732 39,474.3120,223.8640,23.6210,48.9990,0.01483665 39,177.6010,204.1640,24.5770,40.2940,0.01419093 39,300.8650,199.0450,22.7170,33.9270,0.01308997 40,469.2270,208.7980,37.5280,89.1190,0.09304341 40,158.0190,209.0130,22.5910,40.1970,0.03697654 40,496.6700,231.1790,25.2740,54.1890,0.03133744 40,299.0130,205.3200,22.1330,35.4080,0.01478578 40,486.1960,212.7300,31.9940,79.7350,0.01476553 41,117.6050,211.7030,24.5100,44.5780,0.13953614 41,288.3460,196.4610,23.7920,38.0250,0.01094847 42,53.5349,209.4040,35.2622,60.9060,0.54708719 42,276.2360,197.2010,22.4180,35.4360,0.03159145 42,595.2550,214.7950,21.3870,43.8190,0.02490900 43,1.0000,225.6980,24.9627,63.2960,0.08206443 43,272.5490,203.6320,23.3030,38.3890,0.01982207 43,402.5860,214.1180,21.2340,35.9390,0.01778301 44,527.9310,96.9374,39.9860,98.1416,0.06362305 45,446.3770,203.7340,23.8070,51.3090,0.46725100 45,441.7690,3.9412,34.9340,66.7284,0.01021910 46,496.6310,214.5540,23.0240,55.6280,0.67689884 46,476.5810,218.0750,24.0250,56.6870,0.33368665 47,538.3500,223.9780,29.9550,63.4650,0.16708493 48,449.1860,209.9900,21.6880,41.4990,0.01012077 49,130.9780,211.7600,25.3020,45.1770,0.01208815 50,527.1050,213.3100,41.5090,88.1630,0.02922045 51,491.8650,161.7380,33.3080,74.8730,0.01834146 52,305.4390,189.4620,22.4430,36.8490,0.01701054 53,489.8370,204.9310,23.7440,52.9170,0.03064976 53,331.7490,207.1640,20.5110,33.8580,0.01828074 53,397.0850,203.3750,157.5930,49.6220,0.01806073 53,561.6670,214.3500,21.8160,44.0780,0.01192520 54,1.0000,219.1110,24.2330,54.1300,0.04104768 54,384.4200,203.8150,19.3840,35.0520,0.02963922 54,483.1530,213.9290,20.6400,39.2960,0.02773225 54,530.7440,205.3350,21.1290,40.4410,0.02576000 54,498.5240,206.5370,22.8570,53.6520,0.02313737 54,465.0720,200.5190,156.3860,51.8310,0.02219746 54,306.8160,196.2940,139.9150,47.5310,0.01585426 54,554.3520,205.9870,23.4980,41.2720,0.01022734 55,552.7420,215.5330,24.2470,51.7050,0.35854536 55,373.1590,204.5120,21.4280,44.7780,0.16368610 55,390.7000,214.8650,21.9870,43.2140,0.15684214 55,571.5930,213.5560,25.3060,56.1910,0.13045232 55,602.3300,203.2420,24.8980,55.0340,0.03833092 55,371.3860,204.8750,44.6840,50.2410,0.01101843 56,419.2910,220.8100,23.1870,48.6420,0.53055263 56,397.4960,217.3440,21.8780,46.4850,0.21800353 56,404.6650,211.6120,50.8250,60.7620,0.01725774 56,108.2500,201.1440,20.7980,37.4490,0.01642394 56,342.1790,197.9640,157.9580,55.1630,0.01338344 56,390.6000,209.3890,44.0830,53.4000,0.01155735 57,489.3090,227.7560,29.5830,70.5590,0.83397770 57,457.8260,223.6460,25.4520,60.4870,0.58694577 57,435.3460,213.6470,18.8310,38.6570,0.08493245 57,76.3993,203.5540,23.3412,44.8730,0.06015286 57,515.0280,138.3520,47.9650,107.6360,0.03009461 57,372.4820,198.3820,18.9680,36.0930,0.01281109 58,469.1200,207.7570,22.6520,47.3770,0.37804976 58,526.2380,189.4810,25.6380,53.9430,0.01704458 58,383.0390,192.1900,20.7470,41.7620,0.01524926 58,36.5266,190.4230,23.8872,52.8010,0.01355063 58,230.2060,167.1300,24.2800,44.5090,0.01289081 58,319.1600,183.0270,220.4390,48.1080,0.01234975 59,530.4500,206.2620,27.7130,61.6110,0.69111252 59,220.4290,156.6740,30.8210,55.7870,0.01663233 59,397.4740,177.9640,24.8620,52.9050,0.01340945 59,264.9620,179.0390,230.8040,52.2220,0.01096084 59,616.8290,175.9390,22.8850,70.9200,0.01056890 60,423.7700,196.2790,22.9040,51.0230,0.31138691 60,537.0000,189.4030,23.0990,48.0880,0.06183429 61,463.6030,193.1710,29.1340,68.5220,0.65064323 61,431.4090,185.4920,84.6070,83.3000,0.01678550 61,477.0960,192.6290,26.1130,60.0110,0.01442210 61,58.6701,183.3110,28.6427,53.5820,0.01140091 62,523.9880,198.3870,36.2310,85.5580,0.85938072 63,609.1150,155.5670,30.6320,115.6800,0.44434327 63,397.9150,178.9690,23.7270,51.2020,0.04260899 63,595.4700,158.3620,22.1650,52.6880,0.02312771 63,360.5180,148.8470,23.9610,46.3600,0.01219551 63,614.7950,213.1760,23.5990,56.4330,0.01043103 64,439.1340,188.9080,40.3450,110.3890,0.15313348 64,47.8712,214.4020,23.6425,45.9160,0.02671223 64,348.3180,201.8490,92.7220,50.6280,0.02016052 64,185.1930,208.7290,21.5570,35.6140,0.01698996 64,402.0140,202.7880,21.0130,38.5620,0.01531252 64,372.3320,204.2280,21.4800,45.6760,0.01529885 64,106.1890,205.5570,161.8310,48.2120,0.01130115 64,521.9440,210.0150,21.2770,38.5890,0.01042356 65,545.5220,243.1730,35.2510,88.2710,0.06622214 65,379.7250,200.3990,23.7610,48.8400,0.03472962 65,414.7640,199.1960,21.8610,40.4350,0.02719767 65,376.4210,201.0660,67.0520,45.1460,0.01834306 65,400.1950,201.9860,21.5890,40.1130,0.01674127 65,348.5420,197.9470,135.6310,52.9650,0.01174366 65,508.9750,183.9460,22.8270,43.7440,0.01065777 65,170.6910,207.2910,24.6940,40.0940,0.01013899 66,539.8120,189.2650,24.5620,48.8140,0.09397858 66,399.5860,209.9220,23.5540,50.6430,0.06945903 66,420.7630,209.4460,20.0490,40.2350,0.06911623 66,383.3030,210.4600,65.8560,44.5600,0.03752628 66,355.7790,201.6010,135.1960,55.5610,0.02474204 66,377.7990,207.0400,25.2040,53.1790,0.02235746 66,409.3710,210.7890,20.7650,43.6250,0.01940399 67,551.9880,184.6780,24.1660,52.1170,0.35180461 67,396.4830,210.7440,21.4410,44.7080,0.14918028 67,376.3050,210.9000,23.5290,53.3660,0.10578447 67,385.4400,210.3000,21.8460,46.6700,0.04722108 67,476.0030,173.8820,29.5430,72.3580,0.01823875 67,615.4350,184.0020,20.2000,45.7020,0.01400619 67,342.0450,201.3650,126.7320,56.4350,0.01204061 67,379.9720,209.6030,49.1690,49.5650,0.01118022 68,563.1080,184.6280,30.6930,73.6750,0.45759404 68,365.4030,214.5300,23.1630,49.1230,0.15855126 68,313.0270,212.7560,21.9600,45.4780,0.12117098 68,345.2470,214.0500,25.8490,58.7470,0.09225549 68,46.0990,218.3700,25.4737,41.9710,0.02320273 68,473.6390,135.0400,32.7570,80.1630,0.01998453 68,411.4490,203.0430,21.6930,47.3900,0.01700537 69,335.9990,208.0580,29.7240,62.1680,0.50855482 69,392.1920,210.0740,26.1530,59.6460,0.50074089 69,364.8070,210.9640,29.7470,64.7650,0.02109291 69,306.8260,214.8780,22.1140,43.6650,0.01850391 69,16.2875,210.4650,152.8095,49.6470,0.01200399 69,257.5150,212.3160,22.3640,43.8840,0.01095290 70,391.8260,213.1940,23.3150,54.1960,0.54576606 70,438.4840,206.7230,28.1570,64.1300,0.49844196 70,415.7000,211.8520,24.3170,58.9820,0.35836518 70,121.1570,206.7130,21.2040,41.8440,0.03224440 70,382.7440,214.8350,22.6250,51.5510,0.01692510 70,146.1910,199.1960,24.7590,51.7930,0.01266341 70,362.9550,222.4640,22.5170,42.3140,0.01086527 70,79.4405,206.8630,29.5235,48.0700,0.01085862 71,459.1100,217.3610,22.1390,56.8710,0.64728308 71,481.7980,210.3280,24.8150,60.7600,0.47580618 71,434.9430,230.7620,21.6290,44.5260,0.06405179 71,262.8110,229.9510,24.6550,40.6390,0.03658124 71,441.1890,222.1040,22.1130,46.4800,0.03013832 71,439.9850,215.0160,38.2120,63.6130,0.01036006 72,511.0130,212.4540,26.8090,59.4960,0.49049279 72,491.4200,222.6690,23.6110,54.6930,0.45751867 72,286.5800,231.9210,23.9270,39.8400,0.01953373 72,216.7780,207.9090,22.5330,45.1190,0.01519628 72,458.1620,215.1440,30.1030,65.0020,0.01205996 73,531.2600,216.1300,35.3950,71.2500,0.50600660 73,578.8740,237.2270,26.0920,45.4430,0.04222421 73,253.0240,224.3400,28.5210,45.1310,0.01467914 73,513.3080,197.5240,65.8900,96.3370,0.01242849 73,134.8060,227.8780,204.4230,55.2960,0.01240081 74,574.7580,229.4920,24.2120,57.0510,0.50032383 74,595.7920,226.1080,30.2710,57.8800,0.30588332 74,227.5530,230.0880,23.5120,40.8450,0.02515177 74,270.7070,227.1660,25.1190,45.6810,0.01980341 74,366.1770,38.4108,24.2670,36.8861,0.01581805 74,559.3070,227.7400,28.2080,58.4150,0.01531823 74,194.4160,228.6630,202.7150,52.1640,0.01294546 74,241.0350,231.4800,22.8080,42.0430,0.01238015 74,297.4120,217.8900,22.0720,40.6560,0.01227025 75,516.4280,222.9800,28.6760,68.2300,0.59707636 75,539.3290,230.6910,24.7690,56.7900,0.43826631 75,585.2500,222.9000,26.1080,52.0990,0.06847836 75,212.2580,223.0660,22.7540,43.2930,0.02857264 75,162.6490,225.4750,24.7950,43.1620,0.02690321 75,127.7760,227.0000,215.6190,51.5950,0.01528161 75,322.3720,7.1964,24.5230,35.4539,0.01284735 75,176.2170,227.0820,26.5070,45.1740,0.01249863 76,548.5430,219.1700,26.9280,67.3980,0.75111103 76,528.0130,227.3700,24.2020,60.0870,0.68735111 76,503.6530,221.8200,27.3510,64.7180,0.62872350 76,128.9780,224.7510,26.3910,45.7110,0.02464552 76,488.1620,217.8320,31.5440,71.8640,0.01637382 76,535.7190,221.0210,27.1590,60.6210,0.01164661 77,584.6310,224.2690,33.0000,77.9850,0.61041933 77,449.5600,225.1930,20.3170,38.6860,0.03579493 78,577.8290,223.3110,44.0760,108.9000,0.82773119 78,460.7920,222.7390,20.6410,40.1120,0.04309141 78,54.4081,207.3980,210.9659,51.3360,0.01223164 78,586.5990,261.5610,28.2760,65.1500,0.01051032 78,616.8430,231.9350,23.1570,76.2680,0.01050044 79,478.5460,216.8110,20.7070,41.3870,0.10070347 79,68.7352,207.4200,27.1388,50.5450,0.06075959 80,510.0320,209.5560,25.1860,55.5430,0.28059462 80,24.1339,207.1900,28.0367,50.1520,0.04876027 80,90.0199,195.6820,23.6911,44.5640,0.01752759 80,365.8600,51.9341,37.5850,75.9599,0.01649222 81,576.5670,214.2790,28.2760,61.2610,0.26757473 81,60.7599,194.5250,29.9815,58.7630,0.04662680 81,1.2246,190.7880,107.7224,67.1550,0.02977047 81,47.7132,184.0720,32.0839,60.8840,0.01583235 81,410.9640,203.9960,22.5280,44.3330,0.01526398 81,9.9190,197.0420,24.0252,47.2310,0.01448770 82,21.7027,192.6760,26.2165,49.5810,0.07150620 82,409.2590,202.7480,20.2200,40.6290,0.01904470 82,20.3984,162.1840,34.8673,74.7250,0.01820089 83,418.7530,201.9790,21.1030,41.1560,0.02478428 83,160.3590,182.7460,26.9840,48.6260,0.01382953 83,22.2698,181.3230,176.7562,60.6830,0.01371185 84,440.3410,231.4480,23.6470,46.3180,0.28694081 84,463.3670,221.8800,24.2950,53.1720,0.02058394 84,116.4680,236.0310,22.6620,39.0720,0.01062793 85,336.8120,213.0050,20.9190,39.5370,0.01660565 85,316.0720,207.3110,22.8150,39.4830,0.01376806 85,52.9052,205.1580,136.0728,53.8540,0.01184342 86,476.5290,204.6180,30.5690,69.2030,0.76371914 86,503.1620,207.0000,27.9660,64.0760,0.52070802 86,457.3980,135.1420,38.3420,94.9630,0.01826929 86,486.0380,207.4910,37.0740,73.0890,0.01072024 87,586.8570,208.8820,35.1810,87.9090,0.82165635 87,548.6740,207.8930,39.0770,89.1550,0.74586117 87,467.3840,137.9220,33.8490,74.3100,0.03101664 87,357.0210,208.5920,21.3250,41.9880,0.03052705 87,557.5650,248.1220,25.0980,50.6150,0.02559619 87,592.5860,245.6370,26.0680,52.9840,0.02206685 87,562.1920,201.0750,41.0950,85.8890,0.02023966 87,601.5300,208.1760,28.5890,63.8210,0.01385501 87,337.0960,213.4280,21.9730,43.3460,0.01273284 88,489.8850,219.2840,20.3880,35.8420,0.01329051 88,325.4020,202.1370,24.9060,44.6550,0.01065147 89,398.6080,206.7370,28.9900,60.7100,0.06720317 89,77.4025,207.9730,27.9495,59.6650,0.03528083 89,489.6180,214.7680,20.3390,37.1680,0.01745838 90,370.7460,195.7030,26.9200,52.2150,0.02071261 90,613.4560,223.6960,20.9450,39.5790,0.01491883 90,466.4870,108.0820,38.4280,91.4330,0.01403464 91,467.6280,217.2900,26.7680,56.4970,0.30865934 91,483.3220,134.7180,39.8500,82.6520,0.02099281 91,401.9000,204.7460,30.2010,62.9970,0.01802378 91,442.5070,224.1090,20.2540,37.3130,0.01589466 91,479.0160,221.8290,25.9700,62.6080,0.01193182 92,512.6090,214.6890,31.4130,63.1850,0.60140193 92,469.5340,128.8190,27.5720,57.0290,0.04358023 92,546.3560,213.5670,22.1210,44.7050,0.03294411 92,441.2610,195.8980,35.9680,84.9670,0.02532553 92,411.0410,202.5200,28.6050,62.0730,0.02155493 92,470.9940,208.7310,25.8780,56.8690,0.02103294 92,199.6020,183.4700,23.7830,35.6930,0.02026132 92,195.5460,172.1030,21.9180,37.6950,0.01367690 93,579.2080,219.1530,33.2860,80.4310,0.76746416 93,596.8100,221.4670,28.8970,67.1070,0.03067939 93,546.1050,217.6290,26.4280,57.2220,0.02755546 93,420.3050,213.2150,25.0350,42.5440,0.02525927 93,360.0670,199.2650,23.6350,37.7630,0.01878206 93,183.5350,173.8270,24.0100,36.1100,0.01447244 93,531.0530,216.5700,39.8360,94.2860,0.01311753 93,25.3036,193.7970,40.0388,69.1760,0.01066614 94,560.2450,215.8210,27.3500,72.9940,0.59623891 94,540.6160,217.1580,26.9070,71.5790,0.57464176 94,439.9020,201.4350,27.6340,57.3620,0.05445774 94,303.4810,189.1770,23.8150,40.9470,0.04104992 94,163.8040,153.9660,32.8310,50.6900,0.01882454 94,370.8570,202.8410,22.5280,36.2380,0.01282090 94,432.8830,204.0720,62.1810,57.8210,0.01175480 94,434.0310,214.0930,23.6820,46.7450,0.01032833 95,578.0460,215.3960,31.3170,81.7150,0.86115527 95,551.4700,217.6260,30.9320,81.1040,0.83435661 95,613.3860,221.1250,23.9590,51.0630,0.41628668 95,272.5110,185.9100,25.5010,45.4540,0.08638123 95,358.9830,201.2790,22.4740,45.3730,0.06816010 95,117.4660,150.2940,25.4360,38.3730,0.06332453 95,338.3530,204.4660,23.2830,40.3120,0.03352976 95,417.8070,227.6610,21.4350,38.5990,0.01928467 95,329.6050,207.4520,22.2800,37.2670,0.01682215 95,423.7060,202.9330,31.8930,65.6390,0.01247083 95,339.6670,196.2280,39.4070,52.1790,0.01098387 95,601.6090,217.3240,27.6140,63.7600,0.01093332 95,410.0170,209.9460,113.8710,66.9170,0.01020260 96,518.3420,215.3840,33.7720,91.2780,0.81164825 96,546.8420,212.8870,33.0610,90.4170,0.77985018 96,586.8460,218.9330,26.6360,54.6190,0.55194449 96,280.4020,205.4990,23.7000,51.5060,0.12964605 96,200.5920,185.6400,25.9320,49.2010,0.12942410 96,289.3700,202.5120,25.2060,51.9710,0.09929695 96,532.6190,215.3590,30.9180,84.8490,0.09211991 96,261.9950,207.9510,23.8210,47.7910,0.06254183 96,360.8400,226.1510,23.1050,42.7340,0.02708987 96,576.7030,209.8640,42.9460,82.6710,0.02434297 96,299.2940,200.7110,24.9120,51.1200,0.02409652 96,373.9740,190.4950,33.2880,74.3270,0.01260026 96,500.7620,203.4260,77.6640,87.6590,0.01085998 97,444.3430,214.5090,37.2870,98.9090,0.77870005 97,470.0210,209.0470,34.0890,106.3980,0.73765820 97,527.2850,225.5390,25.9450,56.0090,0.46729389 97,175.4380,217.5110,27.4490,55.0860,0.21195196 97,216.4700,211.2920,27.6840,56.4720,0.16799615 97,187.7900,216.4460,31.6770,57.5530,0.09474468 97,99.1236,187.9880,32.2284,57.7180,0.04675056 97,277.2500,227.4570,137.0420,59.1820,0.04123477 97,288.1340,231.4100,22.6830,44.2530,0.03671869 97,482.6260,216.6380,28.8050,77.5680,0.02665447 97,448.6970,259.8410,28.2550,58.0700,0.01675639 97,242.4690,220.7130,361.5030,77.5230,0.01609759 97,429.7980,208.5590,91.9250,83.0090,0.01151623 97,330.7700,235.8190,20.4240,36.5860,0.01121737 98,355.6330,214.4990,38.9100,103.6170,0.77018452 98,389.1070,212.6620,38.0930,102.8040,0.76667434 98,465.7220,222.6570,26.4730,61.5330,0.60900718 98,216.8360,216.5830,29.2850,64.8560,0.40423816 98,146.3220,217.1640,32.1250,66.6030,0.18085432 98,98.4374,216.6350,30.9266,68.2430,0.12221222 98,5.2497,190.5200,36.1955,69.3570,0.09897954 98,119.4090,214.7340,36.3360,68.5820,0.05812496 98,220.2590,230.3840,133.7200,60.6820,0.04509653 98,260.8810,238.4000,67.8730,44.3170,0.02834821 98,306.3840,239.2810,21.9610,40.2390,0.02393501 98,397.9570,257.5980,26.9780,55.3840,0.02075556 98,133.2620,211.7390,340.3240,90.2650,0.01318679 98,303.7000,218.4990,98.6330,99.7530,0.01003081 99,290.9950,210.8230,37.7550,109.6810,0.77906114 99,324.2420,215.4630,38.2500,99.5850,0.75131518 99,588.9510,237.9300,42.0450,101.3230,0.71937817 99,423.1530,226.1000,25.1740,57.0320,0.46199107 99,163.2290,215.8730,30.7070,68.2310,0.41364679 99,104.8100,215.1560,32.1060,73.0340,0.39494908 99,53.4492,217.8330,30.2508,69.9100,0.23086224 99,73.0223,215.4750,30.8347,72.0450,0.21485102 99,206.4150,241.9090,78.8720,44.9620,0.02814959 99,295.7050,257.5530,28.1180,61.2850,0.02239337 99,262.7210,239.7960,23.2750,40.8760,0.01659636 99,85.7513,216.8890,41.2557,74.3950,0.01529848 99,154.0230,220.9910,150.6950,71.7830,0.01233669 99,402.0460,224.8650,22.1020,45.4320,0.01114542 99,411.2650,224.7400,23.9080,51.1290,0.01102816 99,243.8190,218.4790,99.0880,97.1730,0.01064113 100,258.8640,213.0690,38.4640,101.5200,0.80718571 100,536.5540,230.8490,45.3830,108.6280,0.78078353 100,289.2160,211.6810,36.3920,102.4710,0.72527099 100,405.4350,223.3670,24.9560,55.2290,0.60165071 100,55.3529,218.2850,33.2377,74.9550,0.49595755 100,107.5470,211.7540,34.8240,81.6440,0.37267733 100,70.1379,217.0020,31.6671,75.0270,0.24952050 100,138.3400,217.2580,35.4360,66.5980,0.14135332 100,276.9020,211.8220,31.2420,95.9230,0.03647430 100,141.5630,224.4020,155.3670,72.1220,0.02639514 100,212.1130,244.1720,19.3330,37.1590,0.01867682 100,228.0380,240.0100,21.0080,38.8230,0.01807945 100,203.0050,245.8730,19.9610,37.2350,0.01772517 100,414.6180,218.4780,23.9440,51.7960,0.01698262 100,170.8950,233.4750,78.7120,58.1900,0.01663898 100,56.5876,217.7120,344.3384,86.0860,0.01467535 100,222.9260,214.3010,105.0650,77.6990,0.01445187 100,298.3420,254.5820,24.2980,53.1270,0.01422223 101,241.4470,216.5660,34.4330,93.9730,0.81495744 101,506.0970,223.1920,36.9530,101.4460,0.79696417 101,268.8870,215.8520,34.9180,92.2060,0.79095304 101,68.0587,211.6200,33.8933,87.3320,0.69846410 101,89.6991,211.6330,32.2399,83.7820,0.51845282 101,125.9860,213.5320,33.7970,81.3330,0.42735147 101,408.5030,223.2390,23.3590,52.2130,0.42658699 101,466.8870,209.8410,28.0630,55.0420,0.09216494 101,141.6900,223.5640,31.5860,65.1290,0.02840924 101,201.9120,246.8290,20.7670,37.1430,0.02130106 101,150.6470,223.6300,147.7130,76.7910,0.01930827 101,231.6760,215.1530,103.0990,76.6660,0.01892316 101,218.1810,216.5540,392.4180,69.3770,0.01520624 101,175.2890,232.7410,66.5230,60.4880,0.01408949 101,336.1720,221.1000,190.7010,55.2410,0.01236098 101,67.3997,212.4500,87.6763,87.4160,0.01083309 101,43.1777,213.5770,366.8343,91.1460,0.01052084 102,223.5330,214.6830,31.4270,87.7300,0.85532945 102,478.8680,223.6210,35.5300,92.2460,0.80270082 102,248.3300,215.0140,33.7730,86.6440,0.79978079 102,532.3310,230.9740,70.8520,185.5440,0.72983855 102,106.5390,210.4280,37.2280,88.8040,0.64974385 102,150.0850,215.1450,32.8610,81.0310,0.60474008 102,92.2517,214.5910,34.0693,89.0390,0.41722745 102,423.8650,219.6120,25.0550,50.1440,0.18185589 102,544.9780,226.4610,37.2640,80.1670,0.05329436 102,135.1380,215.9720,27.9570,74.3670,0.03698052 102,149.5520,224.9710,415.1890,71.9090,0.02398219 102,324.7540,222.7580,183.3590,58.9960,0.02350642 102,388.6360,220.0520,78.0980,56.8740,0.02122637 102,429.4380,221.9880,90.6610,96.7970,0.01797176 102,200.4310,240.2200,22.0630,44.4780,0.01559045 102,558.8430,282.7950,40.7960,128.0730,0.01135921 102,236.9280,225.2730,31.8820,78.7320,0.01028561 103,467.6390,231.7950,59.8520,168.3360,0.79155815 103,164.5910,214.8240,35.4410,90.3550,0.73142362 103,124.8640,212.1860,37.0740,94.0740,0.72131246 103,198.8880,217.7880,29.0330,80.1690,0.72069567 103,219.0900,217.1600,30.5370,82.9950,0.67378110 103,446.0080,225.2450,34.4650,88.2780,0.43239248 103,105.0420,215.8720,37.1140,98.6670,0.28379387 103,179.8120,218.9150,28.7070,79.3430,0.07574207 103,438.1350,213.6730,29.1580,79.3850,0.03117167 103,477.4460,231.4130,35.7180,75.2910,0.02634494 103,455.2490,231.8280,40.3280,103.4620,0.01734066 103,151.1830,223.7990,406.0480,74.7020,0.01485462 103,478.8480,288.0950,40.3250,104.0400,0.01449541 103,355.4570,226.7450,127.2880,77.7730,0.01405147 103,410.1790,214.5370,121.2700,92.2880,0.01184581 103,248.1200,246.0420,23.1960,42.6470,0.01162273 103,237.2140,233.7230,28.1000,58.1990,0.01135580 104,120.3580,208.1900,41.5130,108.1330,0.75409502 104,154.8150,215.0720,38.5720,100.3880,0.74939650 104,403.4420,233.6910,61.4990,156.8550,0.74891543 104,93.6180,217.8980,40.7350,102.2660,0.42638245 104,401.3550,217.4360,30.7540,84.7790,0.21238796 104,413.8830,225.8260,32.0990,80.8150,0.02828651 104,139.9390,212.4020,35.8320,100.7690,0.02816350 104,80.3392,218.3740,33.1248,75.7070,0.02559481 104,367.2180,215.2880,97.5960,110.3130,0.01634211 104,418.5380,308.0890,35.4340,76.1140,0.01407561 104,397.5870,235.2420,42.8340,105.5700,0.01384687 104,424.7740,208.6770,29.4600,68.0930,0.01312757 104,218.2250,246.3200,22.7410,42.2910,0.01189677 104,88.2238,227.4010,406.9912,74.2670,0.01079779 105,308.4660,230.4150,63.1560,166.6070,0.73836625 105,67.3417,208.0470,46.6753,129.4630,0.72296137 105,100.5660,213.7190,42.9870,121.3520,0.64702368 105,14.9828,212.3030,52.0222,131.0660,0.58401066 105,342.9620,214.7400,27.9380,61.6700,0.11138971 105,383.8800,215.9510,26.0110,55.2220,0.07952642 105,1.9283,214.4500,34.4639,91.1290,0.03040857 105,125.4860,229.8960,28.4030,71.9420,0.01460341 105,301.2750,213.4710,90.2240,114.8890,0.01327511 105,27.3027,211.8460,32.1336,66.7040,0.01155321 106,127.5320,234.8930,71.9530,174.3610,0.75500607 106,209.4660,224.0950,29.3160,62.3260,0.53830451 106,278.8150,220.3570,26.0570,58.1910,0.36147889 106,162.1100,228.0100,38.6070,86.6740,0.26614410 106,180.7730,227.5500,28.8090,65.5260,0.02401480 106,219.5300,216.9890,26.9780,59.8150,0.02378532 106,1.6650,237.9790,30.0572,70.8570,0.01719260 106,170.3440,223.8440,80.1820,76.9420,0.01127805 106,116.5700,220.2990,112.3330,103.3150,0.01063706 106,191.2940,231.6670,25.9550,51.5700,0.01044135 107,12.9093,229.4500,33.9111,62.0630,0.07986491 107,26.6030,216.6040,34.8875,70.2010,0.03991392 107,121.8630,224.7310,26.9570,54.0610,0.02178091 107,2.7548,231.8950,27.6489,60.6270,0.01862879 107,102.8780,185.2260,36.5520,88.1390,0.01765680 107,1.0000,214.4320,95.0268,74.7290,0.01739378 107,38.2101,205.6570,30.1410,64.8680,0.01445283 107,517.4550,193.4020,32.7990,62.7110,0.01087555 108,13.2799,209.5850,31.6651,66.3510,0.07631563 108,177.6040,203.9760,23.7020,46.0300,0.03492228 108,454.5960,211.2800,38.5260,71.6510,0.01235105 109,445.9760,202.3630,48.4040,109.9070,0.03086298 109,119.3620,197.5710,29.7280,56.2270,0.02389100 110,453.1110,204.0830,52.9350,124.1520,0.08372569 110,242.9090,199.4190,21.4970,42.1160,0.01660429 110,201.6520,201.2110,160.6260,49.5440,0.01483858 110,513.2880,171.1720,24.4970,50.2970,0.01242001 110,220.6960,202.6530,21.6580,39.4430,0.01181483 111,126.2410,194.6650,27.5210,57.8850,0.01678821 111,137.2100,207.6070,221.4750,47.9720,0.01348418 111,1.0000,154.5970,24.1540,82.4410,0.01187560 112,496.4940,40.1430,35.5280,69.5860,0.03760734 112,609.0290,227.6640,30.9710,78.5120,0.03474164 112,24.6329,210.1100,30.6800,63.7650,0.01903535 112,8.1308,205.2100,28.7665,70.8570,0.01618461 112,134.7950,212.3350,229.1190,47.2260,0.01372610 112,282.7630,211.5310,20.1210,33.0480,0.01358560 112,201.1470,210.8090,23.0440,43.9510,0.01035238 113,39.2355,209.5480,30.2089,65.0460,0.02530508 113,345.2100,221.0550,19.9350,35.2970,0.02199898 113,511.8910,29.8121,27.9560,67.0634,0.02116829 113,167.2820,214.4930,29.6870,55.4870,0.01846479 113,537.1750,205.9390,27.0750,57.5160,0.01771600 113,24.7298,214.2830,32.1807,59.9750,0.01115263 114,329.1970,222.9720,20.8850,36.5120,0.01554675 115,76.4913,207.4810,27.3247,55.1600,0.10949473 115,570.4630,230.6920,23.1290,46.4070,0.01661956 115,68.3619,213.0910,24.7759,46.6740,0.01513284 115,317.1760,216.9760,20.7230,36.3220,0.01082333 116,27.7731,207.7640,29.2428,62.9900,0.17655699 116,212.6440,215.6140,20.2940,34.9890,0.03825475 116,309.0100,218.9500,21.0190,35.3610,0.01570923 117,211.0690,223.0060,20.2680,34.3020,0.02402224 117,2.0399,219.7620,26.3198,56.3090,0.01048070 118,24.1274,212.1660,26.9146,53.9730,0.07509755 118,204.9630,221.0140,20.1690,32.2730,0.03826415 118,307.6910,223.5980,22.9790,40.2160,0.01115072 119,201.6140,226.6550,19.9340,32.0060,0.03902113 119,3.2123,228.9740,21.3290,42.1660,0.02684478 119,306.4930,228.2420,25.1160,48.6960,0.02552092 120,203.4640,224.9710,20.5780,34.4970,0.02509347 120,588.6330,251.5230,22.2570,36.9340,0.01624672 120,313.5770,225.2570,25.7840,53.5660,0.01168433 121,210.3330,217.1750,21.1910,36.3500,0.03465307 121,90.7372,215.4550,21.7408,38.3060,0.01303328 122,83.6326,224.7990,21.1304,43.1840,0.07363202 122,219.6020,227.8330,21.0260,34.5690,0.04992543 122,456.0480,243.9560,43.9420,89.2840,0.01389988 122,352.8550,221.4230,21.2470,37.8930,0.01131013 123,56.1769,221.2850,23.1394,42.8960,0.03370972 123,218.0690,222.5850,20.7930,37.8840,0.02714715 123,555.8060,233.7470,20.7630,38.7160,0.02655054 123,363.3400,220.1130,21.6720,36.0320,0.02459220 124,369.1140,216.1940,25.2850,44.9930,0.05051788 124,566.1740,212.0620,48.2500,100.3760,0.03932641 124,203.0650,222.7770,21.2880,39.2750,0.01646714 124,402.5710,223.2870,21.3440,36.9290,0.01106251 125,173.3130,212.1440,22.2060,39.5580,0.03646280 125,410.2840,206.7530,21.8470,41.4470,0.01204847 125,365.7510,180.3890,34.3770,71.9600,0.01204580 126,137.2670,220.8120,22.9520,43.3800,0.01170291 127,439.1230,212.7840,23.5070,46.4290,0.02619101 127,108.7190,209.2390,29.7530,52.8290,0.01021897 128,85.1652,223.1390,29.1108,71.0190,0.03463965 128,474.9830,233.7470,25.2970,45.6360,0.01073877 129,43.5315,217.9220,35.7136,81.2070,0.06351930 130,457.9960,221.1950,24.3940,47.1540,0.02293530 130,67.5572,198.5830,29.6451,58.5410,0.01647318 131,496.0600,226.1970,27.7730,57.2180,0.01619140 132,298.6430,156.6390,22.6230,42.8470,0.03148662 133,295.6820,157.1860,28.2830,58.5000,0.02716232 134,297.6890,181.3930,31.1180,63.5660,0.10008805 135,317.0750,181.4600,36.6120,79.3150,0.25299031 136,385.2430,160.4480,53.7820,117.6050,0.05424193 138,45.6947,249.1970,45.2410,91.2500,0.01727800 139,298.6950,183.4920,36.6580,65.1600,0.01248796 142,356.6050,178.3970,23.8340,47.3360,0.03214772 143,400.6250,161.6630,29.1850,63.7550,0.12827154 145,1.0000,202.2840,43.8794,79.0990,0.02151532 146,29.1594,160.9290,41.4609,98.0560,0.04637406 147,1.1955,178.8670,40.9334,98.3620,0.01441438 148,1.1275,107.3290,34.7441,89.8490,0.01198610 149,199.1620,82.3290,31.1970,64.5630,0.02900705 149,29.7288,86.2091,39.5496,95.6149,0.01016519 151,197.2520,217.3470,30.3950,56.4740,0.03169651 152,483.2330,232.6820,22.2680,38.7700,0.01037097 153,408.9190,240.9330,26.8260,49.4250,0.54859161 153,608.4880,205.7040,31.2670,104.3400,0.01589836 154,307.7690,248.5590,30.7400,66.1040,0.55502546 155,163.9680,242.5440,41.1030,79.4140,0.69970447 155,420.3460,205.2380,35.1850,89.4420,0.01769664 159,1.0000,173.7820,24.0288,87.1390,0.02387945 159,39.2157,192.9540,36.0484,72.0520,0.01220929 167,63.4870,209.6620,30.3932,67.5920,0.03787166 168,22.2506,191.3590,30.5028,66.5740,0.01247614 173,41.6370,166.4560,39.5385,101.3290,0.02632354 174,25.8463,133.2490,38.2992,88.7730,0.11729183 177,377.7360,174.9590,21.2420,40.4070,0.08503690 177,402.5380,177.3290,22.2900,41.7040,0.08499695 178,405.1420,170.7120,22.5730,49.2720,0.08375322 178,76.8876,179.0850,39.6864,69.5910,0.01810434 178,449.8200,173.5350,24.4480,47.5770,0.01765677 179,447.9430,165.1020,22.8890,43.8590,0.03249522 180,561.0090,156.0940,22.9980,41.8680,0.01370970 180,39.0733,186.7940,36.6784,59.6050,0.01306283 187,502.7610,247.3020,25.9480,43.1890,0.01247148 188,513.2100,228.3480,26.4810,44.4920,0.01467445 192,484.9790,295.3180,38.1530,83.0120,0.01444553 194,266.4970,236.1280,39.5210,107.7550,0.01570354 196,260.0730,224.0190,31.7040,72.3170,0.02018017 196,292.8930,209.8560,42.7300,89.6610,0.01653808 197,138.2940,190.6530,31.2320,66.8200,0.02584229 197,71.2349,188.3440,36.7511,73.7730,0.02289704 197,50.8533,176.7200,106.5227,95.1670,0.01424795 197,80.4741,159.2700,37.3979,90.2350,0.01017674 198,322.9540,176.1260,36.4130,83.7490,0.14404254 198,467.6960,218.1750,27.1350,54.9220,0.03648654 198,323.5900,206.2260,24.2990,54.8200,0.02467580 198,254.0770,160.7570,32.1390,73.2700,0.02165063 198,59.2801,62.3569,30.8091,55.6301,0.01308318 198,361.8140,78.7685,34.9450,97.4455,0.01031943 199,201.9060,147.9780,50.0990,126.6850,0.08187406 199,390.6070,211.9270,29.1340,67.0020,0.03030683 200,448.8790,56.1553,36.0960,82.8367,0.01194147 200,248.2120,162.9340,27.8350,54.5340,0.01137897 201,156.0720,41.6132,40.0430,98.5178,0.11280438 201,162.8700,168.3730,36.8700,82.6770,0.03238057 201,388.6430,133.8250,37.3630,76.7840,0.01053666 202,226.2670,77.5821,40.9990,95.8389,0.01581067 205,254.9540,202.9680,25.9780,46.4300,0.12546408 205,208.1740,244.3710,33.3610,63.5730,0.01248874 206,472.2240,196.8300,26.9100,52.2570,0.06638929 206,399.7920,188.1650,33.6330,73.3460,0.02901759 206,383.4780,183.0490,49.5850,115.6530,0.01131068 207,482.6520,176.3660,30.7870,76.9600,0.13301094 207,553.2470,260.4180,44.1370,88.9810,0.02652494 208,482.2610,179.2980,33.9750,86.2180,0.22163221 208,535.4420,185.6560,35.6770,91.5850,0.11375959 208,459.2810,164.1790,32.2530,85.6930,0.04126102 208,466.4620,189.3220,37.9520,76.5420,0.01077047 209,514.6000,201.2010,31.4950,67.0930,0.56294405 209,478.6950,188.7620,40.6050,105.2870,0.20536955 209,428.3320,141.0980,34.0540,105.5100,0.12487381 209,470.0330,79.2499,36.4250,106.4951,0.04509882 209,465.9400,106.1400,55.8870,151.7960,0.01563752 209,428.2600,121.5650,32.1940,69.7620,0.01453281 209,507.9170,177.1350,60.5130,110.4900,0.01214503 210,531.4730,218.9200,35.5480,81.4170,0.80208051 210,445.0410,160.9520,42.1860,115.6320,0.11322994 210,591.7340,215.2770,45.8820,176.8290,0.04237141 210,442.0810,112.6880,37.8060,97.3480,0.03916977 210,593.4890,304.0040,39.2580,92.8070,0.01145075 211,420.5210,225.2810,23.7560,50.3200,0.02997681 211,456.1530,185.8500,36.9910,96.7770,0.01164309 212,484.8370,227.4630,42.7630,85.3000,0.08628862 214,443.1670,196.5850,31.8820,79.6710,0.01260861 215,512.9070,95.0387,34.3750,84.7813,0.03407940 216,433.8230,34.3249,32.9200,77.3721,0.03620150 218,437.6030,156.0630,32.0700,80.1570,0.06991235 218,420.2890,219.9920,20.1090,37.6500,0.04077101 219,454.7960,222.3090,22.7830,50.9130,0.41819403 219,471.6050,223.6370,22.9170,51.6150,0.34064466 219,551.0540,128.0900,40.3130,102.7040,0.03023611 219,321.6360,229.4920,22.8610,39.8780,0.01100911 220,540.3250,221.0360,29.0940,67.8690,0.38402480 220,508.8920,118.9160,36.8510,84.4490,0.03038221 220,462.3980,222.7950,35.1770,84.7530,0.01742147 220,522.1260,213.3890,38.0160,83.5830,0.01637350 221,322.7290,236.9130,21.6630,35.4220,0.01493792 222,329.5970,237.5740,22.4160,44.8210,0.04552199 224,316.7510,257.4030,20.5400,32.1820,0.03346522 224,299.4510,257.6950,20.4700,32.9720,0.02717849 224,443.2300,236.9080,29.2520,57.1250,0.02489043 225,293.1640,236.8640,20.0410,36.3080,0.03213854 225,609.8130,179.2490,30.1870,95.9660,0.01572929 226,417.1900,165.7750,33.6420,90.2920,0.04642683 226,295.9510,227.6550,20.4940,37.8620,0.04359163 226,329.3190,223.7380,22.6180,42.8420,0.03654087 226,376.5720,174.0810,39.3330,94.5950,0.03509643 226,414.9520,150.2420,29.8600,67.9360,0.02036179 226,234.6630,236.7490,23.8400,39.2520,0.01311680 227,518.9480,162.9220,44.8080,110.7960,0.40796378 227,513.6330,86.3689,34.8180,88.0271,0.17146142 227,410.6210,93.7769,29.5400,65.4001,0.05751258 227,527.6060,201.5400,38.3430,105.2320,0.03960697 227,296.2550,224.7760,19.9010,37.7550,0.02708660 227,332.3850,223.7870,22.5250,40.6440,0.02037056 227,419.1180,223.0050,32.9640,63.7000,0.01455428 228,337.1350,228.1380,20.4710,36.1340,0.04287418 228,399.9020,74.2636,26.2920,58.1434,0.02090461 228,476.3880,13.4733,36.8530,99.1597,0.01668535 228,494.4400,203.0740,38.2400,107.3250,0.01535594 228,311.8570,219.4220,25.9440,49.9170,0.01378036 228,483.4280,79.9316,39.6040,122.0814,0.01210645 228,399.4850,83.7569,34.3720,89.0851,0.01189925 229,461.0860,76.0658,38.1890,98.2112,0.13133577 229,80.3904,198.8480,37.3366,81.2320,0.03162798 229,345.5010,200.2830,23.5800,44.2950,0.02151647 229,313.1160,184.9820,31.9420,58.7420,0.01676487 229,291.0050,196.5660,21.3500,41.6670,0.01239028 229,459.4020,34.9659,32.7430,92.8081,0.01194104 229,17.9546,171.0680,24.2325,45.0410,0.01145145 230,47.7380,239.7690,40.4898,77.6590,0.17706598 230,359.0610,228.8540,25.9080,56.9860,0.05605981 230,1.4071,171.7680,35.0356,86.5010,0.04176969 230,373.8340,221.5780,30.8410,70.4720,0.01522247 231,411.5850,243.5190,27.9880,61.3310,0.27051073 231,333.5140,216.4080,38.3570,76.5100,0.03328932 231,385.9420,236.9070,25.6720,61.4980,0.03136253 231,399.8080,198.0490,41.9850,108.7220,0.02525862 231,360.4640,191.2580,37.7560,98.6660,0.01344869 232,471.7480,243.6370,35.6400,84.4200,0.78081471 232,439.5490,158.8860,36.4270,95.8640,0.03825521 232,439.4610,238.3130,29.6130,80.8010,0.02970427 232,428.2730,46.2634,31.7840,74.3286,0.02419546 233,420.2720,196.5830,35.6340,78.3550,0.01480138 233,371.2300,37.2444,27.9100,57.3537,0.01046998 234,547.2320,134.2920,32.8440,73.8040,0.07162973 234,527.3250,173.7300,40.1730,100.9830,0.02557017 234,72.5262,31.8473,36.2318,93.5127,0.01017711 235,198.1920,222.1410,26.2880,50.4170,0.01956872 240,122.1800,183.9680,28.0970,54.8690,0.01083672 241,13.2369,199.2490,42.2097,71.7210,0.03269931 242,486.2870,183.9000,37.7550,77.5560,0.01877821 245,373.3740,227.5880,68.9550,152.1950,0.01870485 246,402.8090,258.8330,49.5730,99.3010,0.01324442 247,588.3430,227.1180,51.6570,163.6170,0.01012033 248,614.1040,217.8770,24.5030,51.8970,0.01061702 251,606.4300,231.2530,25.7260,50.5300,0.44358864 252,395.2130,191.4230,22.1880,35.7470,0.01995824 252,363.9390,189.8490,20.4680,34.9170,0.01087512 253,354.0860,190.9630,21.8420,39.2460,0.06362297 253,576.3290,301.8870,42.1990,55.0310,0.02812690 253,568.6610,209.3010,26.6410,46.4700,0.02101630 254,566.9790,192.6110,28.6510,63.5150,0.25821117 254,297.5200,187.9870,21.6430,43.8850,0.12661336 254,256.7810,195.4000,20.7750,35.3470,0.01626539 255,617.3640,191.3470,22.6360,61.9730,0.06337866 255,226.2610,174.3820,25.2860,52.1850,0.05438550 255,515.7560,152.8980,34.2450,84.2940,0.01162856 255,178.6240,186.7590,22.2020,38.5000,0.01020789 256,430.1360,208.6300,26.0890,59.3500,0.06332540 256,454.1570,261.0580,36.3180,87.4430,0.05883909 256,171.8220,199.5730,28.4920,53.3120,0.03774401 256,435.8320,247.5010,34.6880,90.4280,0.01685248 256,299.4540,185.5180,21.8370,43.3270,0.01024110 257,86.8984,176.6060,33.9576,65.0380,0.04263337 257,474.2320,258.3040,28.1820,61.4850,0.01474625 258,505.2240,187.2960,22.5670,48.2540,0.01127461 259,594.5290,172.0840,32.7030,85.1510,0.04216964 260,570.4350,191.8740,22.2570,51.8940,0.04696164 260,281.8120,231.2150,25.0630,43.7700,0.02336270 260,587.1330,200.2750,21.7410,46.5010,0.02212266 261,295.2670,227.8480,21.9450,41.1770,0.08421307 261,425.9590,227.0600,20.9090,41.0770,0.07984206 261,414.2290,212.7380,34.8910,60.1450,0.04018159 261,414.0550,224.9360,20.1030,42.4760,0.02225761 261,454.8940,210.1000,24.4450,46.3370,0.01369668 262,463.5040,222.5550,28.0420,65.6410,0.31893042 262,445.3890,225.1310,25.2810,55.0500,0.06586335 262,75.2254,210.0780,26.7446,59.0640,0.03493224 262,295.6640,228.7930,23.8860,50.2730,0.02504035 262,471.7830,205.7220,31.5110,63.2020,0.01830953 263,526.1020,228.7060,27.3610,69.1210,0.65480697 263,498.5580,223.0150,28.6770,79.1230,0.55581027 263,43.2075,202.9700,26.6691,57.1870,0.09885652 263,511.0230,234.2650,26.3680,67.4850,0.06469845 263,299.7810,225.2300,19.6970,34.4420,0.01108804 264,608.1170,221.1670,30.8820,122.3820,0.39152402 264,544.6890,184.1790,28.4650,59.6050,0.02227794 264,292.5040,215.8340,22.0760,42.3870,0.01331004 264,527.4530,181.7690,25.9810,55.0460,0.01149871 265,283.9730,230.9700,21.8650,40.2110,0.02137095 265,524.3930,222.9810,33.5930,61.2200,0.01951194 265,547.5360,202.0150,34.9060,85.4350,0.01112411 266,606.2880,197.9200,32.5940,83.6120,0.03696404 266,94.5547,229.2840,28.4353,50.3350,0.02116006 266,283.6700,226.8550,22.5240,39.5600,0.01745779 266,368.9830,216.7800,22.0590,41.6570,0.01621567 266,563.1960,244.3910,23.3580,43.4000,0.01440006 267,386.8970,219.0190,22.5370,44.7540,0.06761333 267,610.4990,182.6040,28.4100,65.1860,0.05211737 267,297.5530,233.1310,21.3610,38.1000,0.03960686 267,551.3310,226.8020,25.6820,55.6050,0.03519273 267,577.7320,240.5800,22.9710,45.9750,0.01866396 267,562.1310,217.0210,68.8820,67.4650,0.01289269 268,430.5370,190.6110,25.4500,66.0690,0.06502420 269,421.7000,205.6290,23.9500,56.1780,0.35540596 269,395.4440,254.4320,25.2730,49.8970,0.02738296 269,352.8400,207.5870,23.2670,52.6360,0.01133355 269,402.0080,229.0160,22.6830,52.3640,0.01133222 269,77.0774,202.2490,30.1666,62.2710,0.01090514 270,494.9210,217.0240,29.0790,66.0430,0.46594870 270,172.7980,203.0360,20.1960,41.1890,0.07013016 270,446.5900,221.7920,33.0510,78.6900,0.06061694 270,359.6710,212.0950,24.2300,50.2420,0.03856724 271,497.6050,205.1870,38.6300,95.8530,0.76492912 271,558.1080,210.0130,34.1290,89.4000,0.47759926 271,587.9010,213.8500,34.7320,83.2410,0.09344923 271,368.4550,197.7810,21.8760,47.3020,0.03730955 271,151.1150,190.2580,22.1170,43.9560,0.01811839 272,571.9300,220.9440,53.3820,147.6240,0.71844071 272,382.8730,213.0720,27.5880,62.1500,0.04448183 272,576.0460,229.9650,37.8760,84.2190,0.02367665 273,402.6470,180.3550,35.2510,80.3290,0.18864174 273,132.0810,208.7290,23.3490,45.6650,0.03878782 273,494.0810,202.1310,65.2960,144.5240,0.01664033 273,546.3660,246.4900,23.2590,49.1420,0.01406378 274,462.8320,153.4790,46.0200,113.2080,0.23442030 274,379.5680,188.5520,21.0930,35.8790,0.02335749 274,118.5190,196.1980,32.2310,58.5870,0.01233891 275,104.1780,194.0680,32.3700,68.8050,0.66948193 275,495.8240,195.4390,36.9290,95.7840,0.51763755 275,469.2300,192.7710,40.1650,110.2470,0.33895546 275,449.5430,180.7680,22.3080,39.3490,0.02539613 276,77.5959,201.0860,34.7981,76.7130,0.70663422 276,603.6900,191.5850,36.3100,164.1310,0.32170361 276,532.2670,176.0630,21.4140,38.1850,0.07977551 276,72.1312,192.6370,31.8988,56.2640,0.01638341 276,612.6510,205.3750,27.3490,92.9210,0.01611558 277,560.1360,182.5000,24.9250,51.0960,0.22076376 278,594.9590,194.0140,24.4870,43.4730,0.23667304 278,4.0415,189.9810,24.6227,59.6810,0.01814859 278,419.4840,53.0100,34.7240,71.2040,0.01452234 279,441.4710,45.7410,34.8630,69.9560,0.01614105 279,584.5090,172.6730,22.6460,43.0850,0.01091202 280,62.5252,202.9050,36.1329,78.2720,0.02263339 281,109.6920,228.3880,29.4450,57.7630,0.01982934 282,12.2325,211.0870,23.0746,43.7430,0.02432378 283,216.6330,208.8980,20.4660,36.3720,0.07646406 283,283.4460,193.8900,27.6920,66.0280,0.02262732 283,125.4780,205.4210,23.2150,43.3140,0.01639008 284,329.7950,208.1870,21.1790,41.2980,0.24661021 284,497.4930,197.3840,26.2860,54.5400,0.01919130 284,288.8830,185.6030,23.3920,46.9050,0.01247976 285,393.2170,210.2600,24.7820,48.1980,0.20348606 285,457.1240,210.1000,22.7620,46.9350,0.05589464 285,342.4080,182.8170,25.7400,58.7050,0.04578865 285,59.0427,203.2810,22.5857,42.3390,0.01330094 286,450.2830,214.5890,28.3300,59.0540,0.68590307 286,510.1910,214.8740,25.5420,55.8500,0.21567881 286,568.9950,224.6690,22.7780,48.2350,0.05270456 286,534.6770,214.6970,24.0640,55.6680,0.02952190 286,419.4270,210.7520,19.9470,38.6110,0.01732821 286,316.4480,216.4790,28.1800,54.5310,0.01637921 286,63.8254,207.2500,23.4838,46.9140,0.01129146 287,544.0930,214.1100,36.3100,82.3910,0.75526088 287,586.9930,210.3670,27.5530,68.7610,0.24711049 287,24.8680,195.6650,28.9326,67.8710,0.04345373 287,613.3790,208.2250,24.9120,68.1150,0.04192393 287,450.4720,208.4980,20.4930,38.8640,0.03353098 287,423.4250,168.6190,27.6770,69.9290,0.02859763 287,567.6830,205.4970,39.3960,81.6530,0.01457944 288,481.4260,201.4530,26.7530,57.6790,0.14948326 288,17.5304,206.8810,22.1428,43.1380,0.02709992 288,434.0480,63.4967,31.6670,63.9273,0.01234048 289,525.5390,201.1900,26.9570,57.0980,0.55133557 289,502.4430,185.5260,72.6580,90.2140,0.01120553 290,590.7640,202.8300,34.2680,72.9320,0.57586372 290,26.3880,187.6910,33.3330,75.9440,0.22543469 290,448.4100,184.8470,26.0720,60.6790,0.09152596 290,441.0890,194.5130,23.5920,55.6550,0.01580396 290,579.7390,183.4510,54.4280,114.0950,0.01403159 290,13.8241,189.7660,32.6942,69.6500,0.01044704 291,472.8640,201.0850,20.7930,40.3490,0.02520505 292,457.3450,189.7460,30.5470,62.4520,0.01976612 292,419.1540,190.5890,22.2340,43.4510,0.01169734 292,112.2800,179.2880,25.9720,52.7200,0.01102255 293,449.9050,207.6370,22.0930,46.1830,0.08191157 293,529.6470,206.8750,20.9770,43.3370,0.04063962 293,186.8770,210.2800,20.8520,35.7360,0.02925805 293,87.0584,199.6170,25.4046,54.0480,0.02374819 294,555.2340,187.6620,26.6880,62.1740,0.45664501 294,490.3000,188.2230,25.4570,58.8140,0.38138551 294,28.6345,176.0530,33.1200,71.8680,0.10302414 294,474.6420,192.7120,21.0790,47.9700,0.07055666 294,289.6990,198.7620,22.9760,43.2030,0.05444960 294,63.9424,191.4190,26.4578,56.5870,0.04371088 294,445.2580,190.3520,177.8930,58.6210,0.01501374 294,267.2930,203.0590,21.0260,37.0180,0.01459832 294,532.3480,196.6040,62.1300,58.3700,0.01427142 294,488.5660,196.4870,84.4880,55.3430,0.01134319 295,497.2870,207.0340,21.8270,47.0250,0.34427667 295,93.1027,203.5170,25.5733,56.3330,0.05411265 295,343.0310,196.7080,29.5040,65.7470,0.05144310 295,217.9850,185.2860,33.1880,79.5530,0.03328796 295,351.1980,227.6560,27.0870,45.8720,0.03045278 295,367.9240,201.2760,24.9380,54.2130,0.02719353 295,408.0870,191.5520,21.0670,40.6880,0.01897754 295,617.2180,173.5740,18.5320,47.2910,0.01568742 295,337.8460,196.5860,23.7960,50.2020,0.01307301 295,358.1500,208.6740,28.6700,56.5560,0.01042247 295,115.1680,206.7710,24.1440,52.3720,0.01006956 296,544.3510,203.4290,26.3900,56.0730,0.52241558 296,424.5630,185.1380,22.1440,45.8440,0.11560430 296,48.9704,244.7070,26.0404,44.4240,0.02414305 296,381.9190,194.7120,27.4900,67.2830,0.02330031 296,345.5770,193.8070,23.4930,49.1860,0.02113809 296,356.4350,227.7840,20.8720,43.1550,0.01941684 296,179.0680,210.1710,21.1050,41.0330,0.01510046 296,4.6259,138.5180,24.9413,79.4240,0.01371016 296,55.5452,136.3100,29.5819,71.8570,0.01018717 297,587.0590,250.0590,27.5280,59.2130,0.70216817 297,387.0480,237.2050,39.7900,95.3390,0.20509656 297,43.0790,248.3560,29.9701,64.5300,0.09975986 297,432.3450,226.6830,20.7660,41.9620,0.06422150 297,366.1190,271.0190,24.5480,55.9510,0.04613936 297,323.4210,242.5690,21.0970,38.5970,0.03522616 297,33.4292,161.3340,32.4910,82.5710,0.01983953 297,346.8760,234.7300,20.3500,34.9190,0.01316101 298,225.9340,194.7050,33.8860,92.8710,0.25536567 298,397.9620,190.5340,46.7160,117.3730,0.09771349 298,27.9611,195.8030,29.2700,56.5270,0.06229180 298,426.8390,175.9470,23.6430,52.2850,0.05720727 298,503.6320,189.3840,19.9770,40.6920,0.05171686 298,39.8362,192.7680,24.4285,50.9950,0.04691634 298,365.0720,238.0070,23.3530,48.8570,0.04363449 298,338.1150,188.0040,20.1400,35.1040,0.02866478 298,376.0590,190.0350,44.9320,108.3550,0.01778813 298,402.0550,256.6340,26.4800,55.2620,0.01711648 298,232.7160,229.6630,31.3570,69.6870,0.01351652 298,50.8019,189.3870,25.4483,54.9580,0.01193644 299,507.4110,198.0740,22.2500,44.9900,0.37489539 299,2.2098,212.5500,22.9011,52.2570,0.13882777 299,422.2600,190.7680,55.6760,156.0460,0.11060838 299,13.3230,211.0680,25.8006,59.1240,0.07958675 299,205.9830,217.2980,46.7200,118.0320,0.04319678 299,433.0290,189.8170,22.6330,48.3570,0.01885222 299,371.7240,259.0960,24.8530,52.4300,0.01588274 299,337.8500,202.9300,20.7170,33.6080,0.01225676 300,206.3980,228.5620,29.0810,74.6930,0.13556285 300,517.5680,200.9200,21.1480,45.6930,0.09549638 300,501.5340,275.2860,49.7650,121.7660,0.08461613 300,339.3500,203.2880,20.4660,37.6270,0.04058440 300,402.1050,203.3730,20.2160,40.6340,0.01895243 300,449.8900,190.0320,23.0450,51.1430,0.01691893 300,32.0454,163.3190,26.8506,53.0680,0.01142875 301,527.7390,231.4840,21.4620,42.7970,0.44987375 301,353.0860,232.8360,21.2620,38.0310,0.10212106 301,197.6960,296.5340,26.8310,64.9400,0.06237910 301,417.1520,236.8990,19.5840,35.1830,0.04641642 301,405.3850,236.2500,20.1240,32.8100,0.02706798 301,134.4950,298.7570,35.1330,89.5680,0.02677452 301,149.0550,242.6320,42.2330,114.5030,0.01281912 301,465.4250,222.5160,21.0760,44.5930,0.01256106 301,290.6080,237.5190,20.2200,34.2830,0.01243089 301,343.1730,234.5220,21.7110,40.2820,0.01138600 302,529.2440,185.6910,20.8820,42.8720,0.32214311 302,337.9220,176.6110,24.6080,49.2520,0.19546674 302,158.4450,267.5170,32.9860,82.6090,0.08504751 302,417.5030,179.5620,19.8760,40.3340,0.04214623 302,529.8010,233.5180,24.5100,48.7720,0.03171040 302,422.3060,270.5970,27.7130,59.6590,0.01456250 303,545.6740,229.1840,20.7130,41.3250,0.28513998 303,436.9390,231.7490,19.0370,38.9260,0.10291690 303,498.0900,218.0810,20.5440,46.2610,0.06891440 303,348.8900,230.0420,21.1210,42.7680,0.05482493 303,422.4450,233.1900,19.4180,38.0890,0.05469012 303,481.7520,213.4080,22.3400,53.0980,0.03801607 303,141.7810,311.0230,27.1650,56.6050,0.01895046 304,555.3130,186.9420,21.9650,45.2350,0.29468879 304,438.4190,191.5040,19.1210,37.3420,0.08306265 304,456.1890,188.8950,19.7420,40.3840,0.07524545 304,355.5190,189.6710,22.2900,42.7170,0.05936208 304,73.6031,189.7010,21.7043,39.6230,0.05095717 304,194.4380,187.9770,19.3450,32.1190,0.01348966 304,105.6510,288.4580,26.9870,57.5980,0.01194578 304,496.4360,176.1810,22.1230,49.9610,0.01066231 305,555.9790,201.3840,23.8410,53.4290,0.52885753 305,475.0550,210.9380,19.4840,41.4010,0.19787802 305,457.5700,215.3350,20.1700,38.6170,0.18730977 305,363.4700,207.0530,23.6280,47.5990,0.05684876 305,70.6088,213.1170,22.3465,42.6250,0.01983442 305,196.3960,208.7750,18.0130,33.1760,0.01168660 305,465.8290,215.7680,21.9140,40.1650,0.01113174 305,1.0000,152.2090,21.0716,47.1390,0.01099140 306,485.6110,211.4960,21.2520,49.1560,0.34766877 306,467.3630,218.0890,20.5070,42.8190,0.31422508 306,549.2800,213.5340,21.5480,43.3340,0.08655769 306,361.9550,207.7710,25.0670,51.3260,0.08243065 306,50.2749,213.4040,21.8472,42.7810,0.07325015 306,113.1990,216.7020,23.0890,42.5920,0.04751596 306,474.8230,210.5850,23.6990,50.5540,0.03753104 307,496.6930,212.2700,20.9660,46.9530,0.40600881 307,478.2360,214.1260,21.0780,47.3890,0.39514145 307,534.7330,184.9280,26.4450,71.9650,0.19056535 307,354.2930,203.7880,25.0320,48.2020,0.02959649 307,82.6227,207.2870,23.6863,42.6440,0.01925760 307,520.9210,179.9440,27.2850,75.7120,0.01612324 308,508.7580,228.8830,23.2100,51.9180,0.52376658 308,534.1130,225.4060,21.0440,51.3930,0.34515491 308,550.4120,205.3630,25.8020,67.2680,0.23311017 308,525.1160,228.8510,21.2220,48.8870,0.04546871 308,539.5510,219.2770,27.9630,56.5030,0.03946082 308,358.6670,217.7110,24.6360,47.6350,0.03206527 308,558.2580,231.7670,22.3450,45.6940,0.01900602 308,56.6491,216.0480,24.8373,47.5320,0.01475553 308,468.3040,224.2900,20.9710,36.1710,0.01186190 308,524.1630,220.7930,62.2680,62.8200,0.01023741 309,614.0050,221.8310,24.1690,68.8410,0.63321060 309,581.6880,224.6800,28.9750,67.0740,0.63270855 309,604.1640,224.3440,24.7390,64.5670,0.03937112 309,154.8410,194.2450,20.8230,44.6430,0.03523909 309,498.2710,220.6850,23.0140,44.9420,0.01489207 309,612.1390,182.4210,25.2950,80.3790,0.01434809 310,153.2200,181.5900,23.5420,55.4110,0.01129742 311,140.7220,182.0820,27.0700,60.8580,0.02504242 311,418.0690,227.6760,20.9780,40.9250,0.01043713 312,425.4220,213.0960,24.2410,47.3230,0.17581367 312,373.1220,201.7530,21.9850,43.8990,0.02143467 313,451.4480,204.6140,26.2730,58.0470,0.21686789 313,554.9840,211.3890,39.9230,96.5870,0.02319843 313,69.1830,152.0460,31.0949,70.4060,0.01676229 313,484.0040,20.4526,23.0040,46.3343,0.01163772 314,481.2160,220.6970,24.0040,52.5380,0.71299279 314,386.6670,212.2000,19.7770,40.9100,0.10698050 314,544.0530,205.4950,26.7060,63.0560,0.06636152 314,413.3290,70.0018,32.7800,69.1402,0.03173504 314,470.6810,219.7720,22.2160,48.8860,0.01451079 314,474.4130,212.3410,40.9370,73.1010,0.01179713 315,525.5450,207.8880,30.8820,68.9600,0.85647035 315,383.3900,200.1360,21.7930,46.4170,0.29521427 315,336.8150,43.6093,24.2890,47.1619,0.04277698 315,511.9030,194.0160,56.0310,97.2450,0.01710199 316,564.8770,142.9200,34.7770,84.7380,0.12725793 316,399.2080,184.6450,27.8680,62.7500,0.06955598 316,395.5760,206.1380,21.4940,39.7210,0.01223773 316,8.8590,93.3265,34.1347,85.8135,0.01223701 317,432.3390,210.7150,20.2590,45.3330,0.32611653 317,419.4480,208.9370,20.3070,47.0770,0.25999060 317,592.3980,185.3250,31.1880,80.6540,0.07471579 317,616.8730,182.2780,22.2870,64.3690,0.02554612 317,455.5790,198.8400,22.8380,48.5540,0.01603830 317,389.9500,202.4110,22.9340,45.8970,0.01186338 318,458.0110,203.4490,21.3890,49.4660,0.32842422 318,441.9950,202.7350,20.8710,46.4510,0.05948393 318,375.2940,205.5200,23.1710,47.7440,0.04475512 318,202.4100,188.3720,21.7890,43.1500,0.02114996 318,464.4070,194.5090,25.9560,54.9690,0.01188976 318,419.8750,196.3340,20.8390,45.4860,0.01068530 319,475.7220,208.5540,26.7130,59.0490,0.24564879 319,495.4170,209.0840,22.3490,48.9710,0.15662085 319,42.6636,212.1480,21.6816,40.6630,0.05388993 319,191.7730,192.2990,21.7650,44.2280,0.02598630 319,482.8160,185.8180,35.2770,87.5780,0.02439160 319,388.1010,204.4560,19.2970,38.1500,0.01025792 320,521.1720,209.9570,28.5420,69.7760,0.79777408 320,541.6730,209.2380,28.7180,76.3560,0.56047195 320,127.4650,192.3190,24.6440,51.0080,0.10516451 320,476.5030,182.9030,28.0410,74.3160,0.04343310 320,182.3590,190.7340,24.1570,46.5800,0.03965347 320,2.7933,209.4480,21.7580,49.7300,0.03595045 320,338.5190,207.3390,19.8170,38.0930,0.01002681 321,579.7270,194.0080,31.9470,81.4260,0.83733451 321,610.8060,191.2520,27.4160,80.2830,0.61612910 321,338.4380,177.8230,21.5890,41.9010,0.03944905 321,465.8030,175.7980,18.9200,37.3580,0.03490716 321,404.8460,177.5360,19.4470,35.5200,0.01306518 321,369.5710,180.6020,20.8720,36.5090,0.01240124 321,447.1500,230.1580,22.5190,38.9030,0.01052579 322,471.5060,210.0430,22.2520,44.4690,0.35473606 322,418.0940,208.0070,19.7490,39.0360,0.11983070 322,386.1670,208.4850,20.3710,40.3990,0.04638955 322,495.0960,186.7770,25.4450,55.6310,0.03528558 322,425.8920,205.1240,20.1560,39.6600,0.03237153 322,96.6719,201.3610,21.6151,41.2330,0.02103882 322,504.2440,198.8390,21.9360,45.8640,0.02064598 322,293.1230,203.7050,20.6310,34.3390,0.01654180 322,510.9910,206.7420,22.7660,41.3750,0.01158578 322,479.8010,198.4320,23.3280,50.7090,0.01022476 323,484.8460,209.6810,22.6080,46.6220,0.57088900 323,435.2250,208.7020,19.4440,39.3860,0.21627209 323,395.7280,209.9740,21.6110,43.9860,0.14093325 323,83.6992,200.7610,24.3408,53.2720,0.08419943 323,537.8530,202.2250,21.9570,43.2500,0.03436431 323,333.3560,208.0690,171.8010,47.2930,0.01801656 323,360.6440,223.5910,21.8440,39.0690,0.01156304 323,561.5580,182.7820,23.8450,49.1680,0.01140963 323,323.8230,217.5810,23.0660,39.0050,0.01028451 324,513.8880,215.8600,23.9940,51.3500,0.68126452 324,417.6920,207.4620,22.3270,55.0930,0.44416884 324,461.5620,213.1570,19.8020,39.4290,0.25254527 324,592.9150,203.5990,21.8530,47.9620,0.05453654 324,469.5180,207.7800,21.0790,43.9570,0.03791982 324,384.2150,217.9640,22.3900,46.0310,0.02751727 324,355.3100,199.7290,21.0330,46.4910,0.01411999 324,107.5420,212.2320,20.7480,39.1680,0.01192629 324,526.6370,217.0360,21.2140,46.9410,0.01171356 325,569.2950,214.4810,26.9150,60.2270,0.75991035 325,501.3280,216.9300,19.5490,43.3920,0.18912822 325,515.1110,211.4180,18.9860,44.5420,0.15609878 325,452.7340,212.8920,21.5740,43.3820,0.13329202 325,48.0353,197.7880,27.0504,53.2020,0.05680538 325,84.5660,211.5210,20.3020,40.9770,0.04049086 326,546.9880,218.9240,22.1180,49.2890,0.49416217 326,487.8730,212.1890,22.4800,46.7230,0.26824644 326,562.0550,215.6050,19.3510,48.4220,0.06274977 326,447.4290,207.7000,22.5460,43.8710,0.02821495 326,552.0940,205.3540,23.1990,54.4040,0.01709179 326,48.2813,202.7930,23.6113,51.3240,0.01517980 326,184.7130,202.4100,20.7560,37.8470,0.01234251 326,613.0270,210.2270,20.6880,43.2470,0.01073925 327,518.0200,213.0230,25.4030,54.9470,0.71195245 327,592.8020,220.0740,21.7130,53.0780,0.47941515 327,608.4090,217.9070,22.2470,54.7510,0.40564254 327,451.5400,207.2010,20.3290,41.9720,0.03699484 327,509.6730,212.3290,22.7670,51.9060,0.03025947 327,582.7210,214.0910,24.2890,60.4100,0.02481230 327,158.1570,200.2470,23.8190,48.2710,0.01471665 327,401.9440,202.8840,22.8390,44.1190,0.01382917 327,597.6270,227.8120,30.6070,63.3760,0.01049271 328,558.8180,210.4050,28.7410,68.3120,0.85455614 328,619.4120,196.9560,20.0520,51.4460,0.08586601 328,456.6800,199.9000,26.5590,61.6200,0.08236940 328,111.9550,199.8300,23.8730,45.1050,0.02116624 328,419.3150,209.0170,20.3670,39.9580,0.01794916 328,387.2470,198.2010,21.5040,46.3990,0.01086839 329,546.6550,219.1160,22.2060,46.8400,0.16970605 329,478.7190,208.3520,22.4930,45.0300,0.09363066 329,71.2224,195.7120,25.8432,53.9700,0.05808714 329,434.8400,206.9870,21.9980,51.4380,0.03641423 329,591.7650,201.6390,20.7680,45.3800,0.03367887 329,57.0386,194.8880,26.7544,52.6640,0.02573208 329,401.5980,198.6280,21.1940,49.3610,0.01924671 329,330.0100,200.7850,20.8160,40.6030,0.01750176 329,385.1090,196.9170,22.0130,49.3330,0.01670307 329,459.2360,177.3780,23.7190,58.1390,0.01393281 329,576.2920,112.8710,28.5210,60.9490,0.01252295 329,507.7390,138.3990,32.0190,78.2960,0.01237648 330,465.3390,209.2480,21.5620,45.0420,0.28353745 330,525.2280,208.7180,24.3350,54.8720,0.18654352 330,368.9150,199.6940,21.5500,45.7300,0.05861372 330,486.7460,162.1760,29.1860,82.4590,0.03792787 330,25.5037,195.8130,26.0661,50.8620,0.02177090 330,386.9850,202.3670,19.5640,39.7070,0.01861870 330,357.1430,198.3000,20.4640,42.3540,0.01760824 330,329.5270,199.2280,21.2900,40.7520,0.01685096 331,615.7500,207.4450,24.2500,66.7330,0.51333392 331,535.3570,208.7170,26.7790,59.6160,0.47096610 331,446.7710,203.0340,23.1640,51.6550,0.25228161 331,412.7600,206.7940,20.8220,45.2760,0.22961879 331,382.5320,192.6610,25.8660,59.7830,0.12279405 331,339.7540,200.0870,20.7990,42.9510,0.04462218 331,392.1240,206.1840,22.9990,49.2670,0.03371809 331,363.5760,208.7090,20.3320,36.8930,0.01661949 331,370.3570,202.0000,22.3960,48.1740,0.01090820 331,526.9860,177.3270,28.2920,66.3370,0.01073334 331,401.8500,206.0440,24.6860,49.7480,0.01068095 332,447.7470,202.2320,24.7570,63.6720,0.58888841 332,503.9250,208.4090,22.4840,52.2830,0.56362766 332,522.8380,208.8110,21.5860,50.8760,0.42451671 332,422.7820,168.9540,30.2160,94.3360,0.27760687 332,513.3410,208.4580,22.7930,54.0320,0.13485919 332,360.6500,199.1320,20.5220,41.5970,0.10037665 332,381.5260,208.8070,20.2000,35.7550,0.06783930 332,432.7600,194.9520,25.7560,65.5020,0.06426826 332,571.0760,64.0895,28.4270,66.8335,0.05240669 332,453.1140,156.0140,34.8310,96.7360,0.04544301 332,415.1450,175.4050,27.8830,67.5040,0.02822661 332,491.7030,203.5690,19.2770,44.0410,0.02757133 332,598.8990,93.4532,39.5260,187.1428,0.02366596 332,433.2350,162.0510,24.9210,71.5500,0.02091167 332,369.0920,200.7110,20.4000,41.1200,0.01894231 332,484.7530,201.9120,18.8110,41.5470,0.01460055 332,601.6210,172.7330,34.4810,87.3450,0.01401101 332,347.9580,196.5430,21.1380,44.5760,0.01382873 332,274.0810,186.5010,22.4510,39.5840,0.01188240 333,538.6050,201.3810,21.5860,49.2990,0.57336712 333,601.1450,205.3630,26.1470,69.9930,0.24750973 333,472.9980,152.3640,36.4870,95.5770,0.21061635 333,498.1030,227.8620,23.8410,57.1330,0.15604319 333,397.2750,211.6080,20.7490,39.3390,0.13526517 333,522.1420,139.6390,31.4200,82.9870,0.05754012 333,369.9280,192.9880,22.2670,50.7790,0.05355699 333,588.1090,209.3390,23.8700,58.4800,0.05029556 333,519.7240,84.2822,24.1550,52.6128,0.03956748 333,613.3090,186.4050,23.2390,79.8890,0.02411300 333,388.4190,203.8230,21.8570,44.4330,0.02208556 333,483.3350,180.0920,40.7660,104.5680,0.01679163 333,444.4720,155.2730,23.3350,53.5050,0.01574874 333,348.3380,195.9240,20.5470,40.8640,0.01002409 334,553.4620,240.6150,31.9000,77.6390,0.62583715 334,414.2870,227.9210,23.6930,48.4550,0.30138969 334,611.8150,174.9650,27.3410,86.9260,0.05334810 334,405.8720,225.3000,22.3790,50.1330,0.02505979 334,578.7590,119.6330,26.1230,57.9490,0.01886284 334,355.6590,227.1410,21.4290,40.7110,0.01656700 335,431.7710,212.1050,24.7470,52.2220,0.48170725 335,389.4840,208.0790,19.3670,42.7140,0.05196177 335,617.9530,218.1250,22.0470,80.5050,0.05191338 335,481.8850,158.1210,25.6400,64.6480,0.04832618 335,402.9050,205.7790,21.0140,49.1020,0.02488326 335,370.6130,201.9390,20.5390,46.6830,0.02312638 335,121.8350,204.1280,20.4400,42.7830,0.01703187 335,537.9660,53.9317,23.5110,51.8503,0.01106806 335,420.8280,205.0520,23.4390,54.5540,0.01006556 336,401.2620,205.1260,20.1050,45.5390,0.19931553 336,92.6953,193.8620,25.4727,52.0000,0.04677027 336,559.5540,46.8515,21.5490,47.8878,0.04374846 336,579.6320,36.3080,21.2330,47.1983,0.01562551 336,170.8050,202.1220,24.9020,40.8680,0.01498063 336,343.3050,199.7680,21.7020,43.3650,0.01258674 337,47.1079,191.3880,26.5557,59.3070,0.12983313 337,472.8250,158.0990,25.6410,65.0900,0.06076597 337,419.4650,204.8680,20.6380,50.1530,0.05949637 337,502.6090,147.6510,34.0150,86.8830,0.05264647 337,68.3597,181.6570,21.3192,50.5720,0.04763822 337,57.4226,181.7180,22.5439,54.4090,0.02291174 337,396.4480,202.9840,19.7080,38.7340,0.02290148 337,335.8960,162.1610,28.7920,73.9930,0.02042910 337,585.8470,27.3949,22.8350,49.7346,0.01762746 337,609.9150,3.8161,25.9840,62.5154,0.01425087 337,152.9190,198.1140,26.5940,43.3410,0.01409607 337,412.1140,204.1880,20.3140,43.3280,0.01127857 337,338.6590,196.1610,22.8080,43.9560,0.01040893 337,430.2180,204.1480,21.9880,45.6210,0.01025706 338,517.8580,219.6920,28.9670,59.0390,0.53687495 338,432.2010,204.3460,21.3740,45.6490,0.20146494 338,405.4990,204.3370,22.1460,47.3480,0.04776895 338,129.7070,198.0300,23.2100,43.9710,0.02589688 338,338.2870,200.5400,22.7940,42.8810,0.02244958 338,610.6410,123.6800,28.2370,102.4260,0.02074594 338,590.8410,172.7630,29.1830,83.2970,0.01997707 338,37.2022,178.3730,24.5329,50.9070,0.01142123 338,511.5430,203.4320,27.1890,60.1780,0.01024101 339,474.8510,211.6250,21.9060,50.1230,0.33598366 339,610.4830,211.4470,29.0080,113.0420,0.26250398 339,430.6270,210.6820,22.1670,47.4260,0.17418687 339,614.6530,186.6460,22.8500,61.3480,0.11679100 339,450.6570,193.6870,22.9650,67.5580,0.10158601 339,498.5660,218.1240,20.5400,42.4830,0.06800429 339,403.9700,216.3030,22.5100,39.0360,0.05071775 339,441.9840,201.7920,22.6960,58.8220,0.02713513 339,406.5000,212.2520,34.9130,51.3290,0.02049369 339,458.3160,202.8100,27.5810,58.4990,0.01908723 339,490.2840,150.8020,26.9980,60.2740,0.01802913 339,352.6040,195.3790,23.5470,48.8650,0.01723633 339,580.9670,118.7540,30.3810,83.3390,0.01203449 339,349.9710,201.2950,187.0180,53.2830,0.01187145 339,416.0260,208.6730,46.5650,53.6000,0.01078666 339,485.9010,206.5980,35.2580,59.3570,0.01066801 340,468.4850,213.3550,23.7960,56.3350,0.67594916 340,433.5630,213.1460,25.6380,55.4630,0.39941278 340,574.4280,190.0760,32.4070,92.1520,0.37479025 340,531.6210,212.0480,24.2780,58.1260,0.22228786 340,447.5910,212.9880,24.2040,59.0230,0.09407877 340,539.2460,202.6440,28.5180,66.0030,0.06933051 340,604.0800,185.1450,25.8730,78.1730,0.04687368 340,615.7740,184.6150,22.9600,74.5670,0.03029713 340,570.7560,188.0700,23.7580,71.0340,0.02774174 340,115.2690,190.2170,25.7060,50.0410,0.02357474 340,556.1970,192.6090,33.0170,86.5980,0.02156186 340,475.4500,206.4910,27.8490,59.0960,0.01372830 340,458.2120,213.0320,25.0550,60.2510,0.01155781 340,493.9770,194.3310,28.0260,54.2530,0.01086338 340,549.4860,191.0310,26.8470,70.0820,0.01065318 340,72.0524,191.9660,29.4196,59.2280,0.01029515 341,528.9450,218.6470,29.5330,74.4520,0.83140653 341,481.9870,219.0470,30.0120,74.1440,0.77698952 341,502.4240,219.1070,28.2020,78.4260,0.49006227 341,530.1790,142.9670,28.6540,74.0480,0.04417650 341,10.2257,192.4070,32.4294,67.9760,0.01804257 341,512.9550,218.8250,36.2610,79.1190,0.01218533 341,533.0080,196.4690,28.5540,65.7090,0.01100113 342,603.6190,232.1380,34.4920,122.3090,0.35090891 342,552.3390,156.2530,31.4200,73.0210,0.02294115 342,584.7120,201.8700,25.8350,49.9680,0.01625413 342,434.0550,80.4250,24.3470,57.8180,0.01251230 343,500.9160,15.6050,37.8860,97.0600,0.09612223 343,414.9170,201.1560,21.1130,45.9710,0.06354327 343,508.3250,216.9960,27.0890,53.4680,0.03120346 343,400.6980,197.3300,23.7270,53.1440,0.02166429 343,1.7555,143.3720,28.1005,64.2860,0.01506387 343,532.2810,17.0210,23.0590,61.4769,0.01385865 343,518.1960,12.6920,24.6340,76.3889,0.01312467 343,305.2000,181.7370,23.3470,45.8560,0.01174573 344,614.1320,220.2480,24.7870,78.6610,0.46680868 344,414.3260,207.8490,18.5920,34.9060,0.07543076 344,583.6890,221.7720,31.2640,70.5670,0.06593011 344,442.9170,199.0600,30.1910,83.8060,0.04548131 344,597.8520,223.7930,27.4630,73.7580,0.02305359 344,603.2960,182.8840,34.6150,109.3810,0.01670634 344,409.3260,200.0270,32.3060,49.3790,0.01079566 344,4.0358,195.1980,24.3328,51.8020,0.01069291 345,438.1640,202.7780,19.1820,38.3290,0.17425826 345,285.1580,191.3620,19.5030,35.5270,0.01460406 345,101.3320,202.1660,21.1110,41.7520,0.01082039 346,468.5680,203.5680,21.7930,46.4120,0.34976041 346,78.0093,201.0550,21.0881,41.1070,0.08939830 346,284.7150,188.3100,19.6860,36.7080,0.02869270 346,122.4450,197.3950,22.8990,42.4660,0.01511360 346,301.3330,181.1460,25.6720,49.5780,0.01299934 347,521.1700,204.8640,23.4780,52.8470,0.65834212 347,40.8954,202.2590,21.8538,45.6060,0.23123635 347,404.9450,198.4880,20.4790,39.9140,0.02433395 347,32.1560,204.3600,22.6828,47.1640,0.02203364 347,285.7620,188.9500,19.2020,34.5390,0.01550516 347,101.9130,198.5510,167.6730,46.3490,0.01535550 347,114.6890,197.8010,20.0400,39.2910,0.01387994 347,180.1840,201.1680,19.7840,36.4550,0.01371229 348,2.6570,210.6220,22.2751,51.0660,0.41394994 348,417.5100,199.2580,22.0770,47.5350,0.14708881 348,591.6060,214.8580,26.2760,60.2810,0.12550145 348,106.9190,199.2850,25.1870,59.3280,0.06515425 348,174.4140,205.2360,21.0890,41.1440,0.03137108 348,102.1340,210.2120,168.8930,46.1540,0.02569429 348,513.5940,212.4500,21.0320,43.7920,0.01871126 348,603.1900,21.7060,29.9400,83.9790,0.01454722 348,430.1510,65.8682,32.2150,89.8648,0.01085809 349,446.5100,92.7286,28.7480,69.0954,0.01727773 349,121.6290,201.6690,22.2800,41.4930,0.01395857 349,169.2230,202.8740,20.2950,39.3800,0.01231999 349,406.9040,201.8630,23.3990,49.3430,0.01217727 350,606.0750,15.9276,28.8880,57.4174,0.10525806 350,510.1510,42.5212,33.3260,87.5578,0.05942844 350,82.6931,192.0660,20.8869,45.5160,0.03593984 350,103.2660,199.8720,23.8240,45.9340,0.02357465 350,588.6780,6.2134,27.8650,71.7381,0.02003497 350,386.3260,199.6060,18.9470,34.9700,0.01857259 350,485.4610,53.9943,32.8800,82.8267,0.01523044 350,441.8040,193.7120,22.0250,44.5770,0.01061498 351,396.5800,207.5040,19.3120,37.0290,0.06098405 351,523.3640,9.0566,36.0920,88.8341,0.03752937 351,421.5990,200.0830,32.9420,51.6000,0.03521771 351,565.2430,14.7491,31.7690,83.0210,0.02192863 351,394.3000,200.2660,76.3040,52.6230,0.01179296 351,131.2390,203.8510,23.4160,48.8610,0.01080949 352,412.4830,210.8190,20.9140,43.1970,0.04047923 352,508.8180,81.3707,29.0810,63.4773,0.03159489 352,533.4730,137.5320,32.9340,82.3770,0.01564880 352,483.3390,193.8920,34.2550,74.8770,0.01406293 352,405.0860,202.8950,21.5670,47.2570,0.01279428 352,301.0720,206.9310,21.2350,38.7780,0.01127306 353,442.4190,205.6670,21.1110,43.2120,0.02692470 353,305.3080,215.7600,20.6870,34.2520,0.02007326 353,428.1370,215.8140,20.7410,37.2870,0.01889983 353,454.3340,107.3290,33.1370,81.0360,0.01778782 354,461.2230,207.5980,25.4840,52.6430,0.05523189 354,424.6130,178.3800,26.4860,62.4380,0.04514727 354,136.4880,212.6590,21.5390,42.9310,0.01600141 354,449.7840,209.1170,25.5940,58.9240,0.01521570 354,468.3680,200.4920,24.6610,48.1340,0.01436711 355,518.7410,216.5100,24.9440,51.7280,0.44717228 355,511.2150,190.1080,31.2450,68.5370,0.03973493 355,445.8740,141.4600,32.0470,88.5610,0.02650797 355,313.0840,210.5140,21.5190,38.1550,0.02073607 355,511.5790,219.0420,21.2620,45.4470,0.02024798 356,577.0850,194.5550,27.4510,63.7760,0.11929370 356,386.8680,212.0100,23.1410,45.6590,0.05260158 356,487.4480,159.6290,32.4680,74.8070,0.05116959 356,324.3360,209.5440,21.0610,36.4120,0.04411278 356,597.8970,16.7285,34.0200,84.0996,0.03322459 357,332.1180,204.9000,22.4490,39.3660,0.13426141 357,578.4770,91.4310,34.3160,72.7980,0.02462087 357,100.7310,198.7110,18.8450,40.6240,0.02389365 357,434.4740,191.8400,21.1210,46.0530,0.01845431 357,119.8780,196.8600,21.1960,43.6550,0.01677496 358,609.9790,87.5033,27.0480,64.7217,0.09740225 358,337.7920,202.5150,21.9750,41.1020,0.05002513 358,479.8960,78.7425,24.6620,49.3365,0.03477097 358,202.6100,186.9450,22.5490,46.9320,0.01022621 359,414.0070,186.5400,25.3970,56.4670,0.18123798 359,346.1340,195.9110,22.8740,45.5420,0.17940944 359,386.4870,191.1000,18.7550,35.8010,0.01976215 359,20.7717,195.6060,26.1079,55.8420,0.01779518 359,509.7000,181.9380,22.0300,45.5880,0.01402560 359,445.9900,190.5060,28.3890,63.6100,0.01103088 360,440.7010,206.5530,20.4210,42.9670,0.39051434 360,350.1070,197.7930,27.0650,55.0420,0.25942042 360,432.9640,209.3200,19.2570,40.4910,0.11330774 360,359.3450,192.5530,22.8090,46.0220,0.03318389 360,400.4710,198.3810,19.0130,35.6690,0.01778314 360,427.0380,203.1140,41.4190,50.4270,0.01026792 361,358.9240,205.4790,25.8240,53.9490,0.42713380 361,452.4310,218.0510,21.2540,41.8530,0.22008175 361,489.0160,217.5920,20.6710,39.0360,0.19495158 361,468.3840,217.7820,19.4590,41.0330,0.11589961 361,383.4710,203.4550,198.8530,49.3510,0.02057845 361,367.8190,198.3390,23.1750,45.9030,0.01560243 361,348.0100,200.8700,54.6350,51.5650,0.01402098 361,445.1830,211.1140,93.1320,49.3150,0.01391994 361,124.5700,201.1710,20.5980,36.7950,0.01367756 361,601.0520,228.0210,23.2190,39.1530,0.01273322 361,421.6830,206.5280,18.9090,33.8420,0.01194635 361,140.4290,201.2480,19.9480,36.8180,0.01177184 361,469.0330,213.5830,37.2530,49.1300,0.01043369 362,509.2470,214.5900,25.2150,57.2140,0.61770737 362,492.3370,217.9430,23.1860,52.8110,0.60688192 362,566.4940,214.4190,24.4910,53.1320,0.52931345 362,370.5360,223.3270,21.0520,39.2260,0.11654156 362,442.6780,201.8270,20.7170,40.3820,0.03728631 362,363.0350,199.7450,33.4340,61.1150,0.01231305 363,585.1320,211.3230,31.4580,80.3960,0.66076773 363,565.0750,217.7290,29.4090,74.0950,0.54588908 363,464.7910,200.8760,22.3720,47.9560,0.25094223 363,483.9940,206.8580,19.4960,41.1090,0.15678400 363,400.2470,184.2910,21.3090,43.2490,0.04197251 363,372.6530,225.2290,20.6560,38.6760,0.03593759 363,62.8848,201.7430,27.6132,59.9830,0.03370226 363,473.5510,206.2510,22.5020,42.7230,0.01424038 363,370.3090,199.7160,23.2310,55.7970,0.01296972 364,541.5720,204.4270,24.0300,53.4360,0.55805904 364,517.1220,204.1360,22.1600,48.8880,0.43148500 364,376.6320,216.6810,23.8640,49.9610,0.23971708 364,533.8250,203.6380,21.7200,51.1140,0.04454765 364,10.0090,189.9920,27.5906,61.8060,0.03981237 364,371.2150,199.6810,37.7210,60.1410,0.01490479 364,509.0390,196.6320,20.5700,46.2330,0.01460706 364,314.0720,178.8610,233.6530,52.1120,0.01047186 365,387.0050,208.5540,29.4250,66.8450,0.40516621 365,618.7290,205.5790,21.2710,62.8820,0.05290707 365,552.1890,192.1580,21.4150,43.5470,0.02307569 365,99.8675,180.3420,23.8905,49.9040,0.01330859 365,376.6050,190.7610,53.1660,67.5630,0.01208196 366,419.9640,205.4890,36.4520,92.6850,0.69363081 366,222.8780,153.1750,31.7580,64.7330,0.03621530 366,416.1920,200.6020,28.1190,70.2550,0.03075667 366,498.1610,196.1220,20.4140,37.7470,0.02130478 366,411.5660,193.6860,25.2800,53.3670,0.01529991 366,337.4210,180.1670,24.1810,43.8350,0.01142657 367,446.9630,221.1870,40.9990,99.5710,0.81546128 367,395.1360,192.5730,25.3560,57.3610,0.19304281 367,541.3680,193.0180,22.3200,46.5720,0.16225828 367,451.7590,189.1350,21.1100,46.0210,0.09452391 367,431.2320,198.0950,74.2600,102.2300,0.03942699 367,442.1330,185.4590,21.1420,48.2070,0.02916569 367,417.8350,180.8870,21.2660,54.9040,0.02863768 367,433.3130,175.4090,22.2840,54.2350,0.02750407 367,471.6290,187.9100,20.0410,41.5510,0.02597240 367,221.3970,150.2830,32.9290,74.0620,0.01925142 367,592.1380,183.8700,27.7430,66.2880,0.01848172 367,582.4410,166.0090,27.8360,65.9070,0.01187235 368,467.1160,269.9770,38.8210,105.6800,0.62118119 368,413.1410,233.0640,20.2190,38.7500,0.05848154 368,600.1980,233.6220,22.0340,47.6720,0.05493338 368,525.4050,223.1490,24.3870,49.6580,0.03860473 368,429.7180,234.5030,25.2710,63.1430,0.02633266 368,97.3566,226.7290,23.9154,46.1220,0.01795919 368,454.9430,226.4170,24.6740,57.2670,0.01330491 368,500.5220,225.4530,21.1210,43.8230,0.01040133 369,500.1230,229.5840,48.4010,127.3930,0.62635565 369,428.6830,200.9210,20.7800,40.4880,0.13645364 369,473.7810,202.4450,29.7590,81.9650,0.07602361 369,496.4320,242.1120,25.8550,55.7330,0.03180156 369,480.7890,213.2590,46.3230,109.7360,0.01305874 370,447.8390,200.5500,21.9970,43.4100,0.42601708 370,499.3350,204.9710,21.3380,43.1770,0.38162291 370,538.7730,250.6290,47.7460,131.8180,0.37695706 370,556.4450,237.2000,46.8840,139.9890,0.19093077 370,542.9670,303.6790,32.6990,80.0830,0.13412578 370,540.0490,253.2830,32.1390,68.7730,0.06311361 370,527.2620,189.4960,20.9560,41.0320,0.04683311 370,492.0400,187.4470,22.6000,54.0230,0.03431764 370,564.9230,286.3270,32.0740,78.6010,0.01533795 371,535.5990,204.1790,23.9410,54.5140,0.61391461 371,472.4070,202.2020,24.6400,49.8470,0.57137835 371,570.4430,188.8510,22.9330,47.9370,0.24827227 371,517.4580,188.9410,21.2360,52.9380,0.12238761 371,401.1990,192.5760,24.4660,48.2680,0.01539312 372,590.8840,211.2960,27.5750,65.2920,0.83830577 372,506.8070,212.6260,23.3210,52.5540,0.67933100 372,418.8380,209.4290,21.4500,42.2360,0.01887831 372,563.7990,197.3610,22.3590,56.3560,0.01649857 372,583.5810,208.0940,24.1790,57.9680,0.01374468 372,24.6358,221.6920,29.2647,57.0120,0.01310525 372,492.3380,211.6450,22.7420,49.6390,0.01162412 373,552.6860,210.9630,31.8740,75.8250,0.41732121 373,385.5340,223.9600,22.3990,40.6600,0.03080498 373,490.7860,211.6910,28.7070,55.0200,0.01231402 374,396.4500,233.9530,18.8760,37.1690,0.09156456 374,378.2950,163.4830,27.9950,63.0340,0.04537005 374,412.0100,230.6050,20.0420,40.2450,0.03734040 374,401.6470,229.8360,23.8280,44.4720,0.02302720 374,126.0810,219.3190,25.8200,49.7640,0.01752991 374,183.9080,209.7480,22.6240,47.3490,0.01585380 374,527.5700,221.4180,28.3740,70.7010,0.01345309 374,276.7550,203.9190,23.3420,43.2090,0.01166567 374,146.6410,222.2200,23.8370,46.3420,0.01158132 374,355.1900,55.3116,23.4540,35.1660,0.01100730 375,411.3360,223.7170,20.1530,43.7040,0.40659508 375,419.7080,223.0950,23.1830,45.9260,0.34740734 375,115.7980,226.4290,23.1720,43.8250,0.05265572 375,46.1921,207.2410,26.4965,48.2380,0.02556557 375,167.7790,199.2600,23.0790,45.6010,0.02221865 375,398.5600,217.3470,63.3840,55.1440,0.01488121 375,346.3780,214.6030,166.8700,56.0330,0.01287892 375,427.9240,220.1890,23.9700,44.4260,0.01163468 376,430.1020,225.3390,20.1630,43.9950,0.36255196 376,445.5990,223.2510,23.0160,48.1280,0.35387170 376,107.7130,205.5380,22.8440,41.8310,0.03571315 376,4.0202,200.1270,26.2320,59.7650,0.02554986 376,419.4570,147.5820,28.4510,63.0380,0.02063054 376,436.2320,215.7340,48.2160,63.9150,0.01494609 377,458.8730,218.8350,24.9310,56.6460,0.73742932 377,477.4870,218.7720,24.9820,56.0610,0.64453858 377,117.4160,179.8750,24.7330,60.6530,0.02479995 377,104.4130,188.2650,22.6140,53.2190,0.02020460 377,466.4520,211.2340,48.1850,74.5970,0.01854024 377,24.8670,182.6800,159.3130,60.9710,0.01423728 377,56.9449,193.5480,66.8741,48.1150,0.01014434 378,530.5410,220.0850,30.2020,72.7410,0.87159485 378,505.2660,219.5040,29.5570,75.2930,0.86047071 378,519.2320,220.3550,27.7830,71.4170,0.46059608 378,498.8480,212.8620,27.1220,62.1940,0.02411149 378,54.6554,194.9290,25.7230,51.7210,0.01938913 378,393.8800,185.6550,25.3690,51.3250,0.01253861 379,567.7600,206.6410,33.8060,77.4840,0.78964514 379,609.9220,219.6340,30.0780,103.5930,0.71118706 379,382.6550,197.7640,21.7160,44.3030,0.06335437 379,1.0000,183.1280,24.5048,66.4590,0.03817519 379,160.9990,187.7510,22.0560,38.1920,0.02011415 379,404.3290,186.7840,22.7300,44.7420,0.01350260 380,405.0060,201.0750,21.4700,43.3300,0.11590781 380,469.7510,196.2310,27.3710,51.4470,0.01195190 380,513.2270,177.6810,26.2190,59.9490,0.01085881 380,346.3760,196.9880,20.1950,35.7010,0.01028181 381,439.1810,203.2920,23.5890,52.7370,0.59783095 381,478.7000,63.0516,28.2950,71.7124,0.12116484 381,414.3190,193.2810,25.9790,56.4050,0.03872182 381,602.5040,13.5706,22.5710,43.5913,0.03275202 381,352.9380,195.4310,23.5360,41.8310,0.02410556 381,490.8210,76.9198,22.8950,55.2512,0.01273180 381,107.8250,200.5010,23.3330,42.4270,0.01147124 382,483.3660,173.5440,28.7270,74.6900,0.76598603 382,73.8947,162.3740,22.9945,47.7710,0.15191096 382,448.0100,152.5310,26.2720,66.2760,0.06054082 382,467.9890,85.9679,21.0840,43.7041,0.03301844 382,360.6120,162.2230,23.6040,40.3570,0.01598870 383,541.4570,214.0690,34.6410,95.3930,0.80067813 383,462.5480,196.3920,22.9940,49.9360,0.52571046 383,42.3350,212.6420,27.1911,50.8450,0.16208072 383,370.4830,204.6670,23.6200,42.7310,0.10086478 383,471.5140,178.4240,25.6810,66.3810,0.02937962 383,538.2510,210.1480,28.1620,64.8690,0.02074188 383,510.4650,207.1610,24.4510,60.1490,0.01463799 384,493.6230,208.5680,23.1240,48.8740,0.38277081 384,379.2480,211.3290,22.9410,44.7020,0.11372193 384,478.2830,145.8160,29.9630,77.1920,0.05853856 384,147.3510,209.5770,24.8080,45.9750,0.02814777 384,3.8923,210.8470,20.5756,48.4950,0.02545601 384,25.5229,214.6520,23.0951,43.0970,0.01916153 384,354.6060,205.8400,21.4840,42.4160,0.01627780 384,1.0000,205.8780,120.3730,55.8930,0.01363690 384,483.1890,173.5810,32.6400,75.2400,0.01232701 384,537.9090,68.2541,19.9320,40.3779,0.01231238 384,605.9370,31.7970,29.0330,85.1490,0.01208383 385,548.4810,214.0990,24.6690,56.8240,0.72535890 385,393.4790,211.6710,21.2380,44.3730,0.09756583 385,379.6710,216.0180,22.3740,45.5130,0.05219632 385,503.8630,201.7780,22.0250,47.4830,0.04546608 385,139.1490,208.0090,22.5800,42.5230,0.01918865 385,372.4420,211.8970,20.3300,43.6560,0.01154271 386,400.7740,215.3240,23.8780,56.5160,0.14600463 386,420.3930,215.1430,20.5500,46.8200,0.10421934 386,109.5020,211.0940,22.7340,48.7300,0.04881854 386,483.3450,208.4290,20.0670,40.7020,0.02867616 386,123.2290,206.2540,24.0490,51.2240,0.02423005 386,243.2200,208.1450,23.2880,43.3460,0.01529646 387,466.1040,118.1940,33.9180,86.0360,0.09387474 387,594.2750,217.3340,22.9460,41.0890,0.02198630 387,387.3690,195.8320,22.1120,49.2880,0.01808438 387,77.7059,205.4090,28.8681,54.4530,0.01140492 387,2.3564,174.3770,28.2090,74.7810,0.01084282 388,516.3550,220.2990,26.3580,54.3230,0.32011232 388,467.6000,210.3150,23.3880,46.7740,0.30550563 388,252.3870,204.0990,20.9270,46.7850,0.02873890 388,478.2550,72.1690,24.7530,50.8550,0.02236914 388,232.6680,216.5500,21.7920,35.8140,0.01450735 388,492.6840,210.0840,28.4710,64.6820,0.01430413 388,485.8130,138.8680,32.2950,66.8530,0.01099291 388,508.1270,210.8790,24.6310,57.5650,0.01042011 389,591.9190,221.1640,37.2240,107.0370,0.40331954 389,515.5040,209.8650,23.2670,51.4440,0.30586892 389,543.5580,210.7140,20.9280,43.6540,0.16193649 389,250.8100,209.2980,20.6560,39.5130,0.08716000 389,225.0990,210.7400,21.4190,40.7610,0.08383338 389,2.6615,201.1270,26.5658,62.3610,0.06492647 389,609.1610,224.7410,29.0510,97.3440,0.05027747 389,589.5060,222.8380,28.1600,67.8530,0.03386100 389,497.1670,205.3060,25.7950,61.0570,0.03154600 389,1.3111,120.1820,28.3095,76.8490,0.01596602 389,502.7840,205.8410,62.8650,54.3370,0.01302757 389,417.4300,196.6080,24.1760,56.7790,0.01215630 389,552.5820,211.2460,20.0630,42.4370,0.01120446 389,613.2570,274.2350,24.2950,58.0490,0.01046995 389,530.1950,210.8620,20.0870,45.5080,0.01045388 390,574.9120,207.8600,30.1410,65.5750,0.37789556 390,609.0940,214.3130,22.4820,54.2410,0.28912228 390,219.5830,210.2470,22.8570,45.5250,0.10700657 390,250.1740,214.7880,20.5950,38.6370,0.09537996 390,433.7980,202.1140,22.7580,52.0540,0.09033827 390,590.1190,211.6240,23.9600,60.2720,0.04847243 390,418.0910,213.4740,21.4960,40.3130,0.03577944 390,565.3840,211.8760,26.2200,59.8830,0.01633114 390,485.9910,208.1370,27.1310,69.4270,0.01272648 390,473.4950,1.8634,25.6090,53.0592,0.01031655 391,236.8230,212.7160,22.6720,46.3350,0.39419323 391,450.4460,201.0700,26.0050,59.6580,0.29031241 391,207.1990,213.8460,22.4570,44.2900,0.09576275 391,512.5600,215.8150,23.2760,45.3850,0.06596647 391,433.0060,214.7530,21.2330,44.4550,0.04578258 391,442.1800,215.3560,22.7760,47.1530,0.01357228 391,492.6450,217.6070,49.1470,50.2980,0.01342867 391,439.3830,201.4740,69.2150,61.0890,0.01144600 391,483.6470,228.6250,19.4600,34.4280,0.01031182 392,449.6070,215.5010,22.3840,52.3330,0.60889685 392,408.0600,215.0910,22.2750,48.7840,0.25926182 392,475.9980,215.6870,21.3830,47.7770,0.11291964 392,437.4350,213.2910,63.6530,54.0960,0.01605637 392,185.6220,210.0300,23.1740,43.5770,0.01449982 392,436.1560,213.7040,199.0320,58.3150,0.01429414 392,486.1060,220.8910,21.8570,40.9380,0.01178183 392,440.5700,210.6630,21.7080,52.3860,0.01002469 393,432.9140,215.3180,24.6690,61.3130,0.69305396 393,122.4860,216.5080,26.2220,54.3960,0.60284120 393,92.4270,209.5970,28.1030,64.4620,0.46114224 393,421.1200,216.9540,21.8220,52.8250,0.15292969 393,372.2150,213.2180,25.4410,55.0150,0.11356803 393,102.9750,211.0260,31.1810,63.7520,0.04141816 393,406.5990,214.2270,57.5810,58.1780,0.01166138 393,114.1140,206.2960,48.3130,76.6250,0.01158639 394,403.4640,217.7580,28.0020,68.4840,0.85966277 394,6.8163,218.9620,27.1296,72.7730,0.08816800 394,49.3154,217.8330,27.9844,68.1740,0.07758009 394,328.2870,221.0300,24.7850,54.6830,0.06821673 394,338.1940,227.5810,26.1340,51.5730,0.06382583 394,347.4840,203.5690,29.8980,71.9300,0.01562990 394,330.0590,231.0070,76.9900,51.7780,0.01496893 394,371.3470,239.0600,20.8100,38.2100,0.01241541 394,286.9500,220.1980,353.0500,70.0930,0.01090200 394,192.0080,156.8910,24.1920,37.9170,0.01040703 395,339.4550,215.0090,31.9590,81.6770,0.91479403 395,253.1940,212.0440,27.9640,63.3950,0.21372424 395,229.0030,217.3770,28.5970,68.2140,0.19798809 395,264.0380,226.3310,24.3860,54.1200,0.04402801 395,306.0130,239.8510,20.5880,39.8310,0.02273474 395,547.1720,207.1090,22.8570,48.4020,0.02096403 395,247.5460,223.8070,56.6350,57.5690,0.01222231 395,249.3540,222.7760,110.0540,67.4520,0.01192617 395,238.3880,212.4930,30.7890,66.7260,0.01119986 395,103.0300,145.6630,23.4820,38.1650,0.01073460 395,352.0940,215.6780,28.2100,68.1370,0.01002086 396,269.8030,216.4830,35.0340,90.9040,0.77603722 396,152.2590,209.6810,32.6820,69.7630,0.35343465 396,61.1023,220.2940,39.3556,75.1610,0.27450889 396,275.5480,263.5000,23.1620,46.0560,0.07261425 396,239.2460,214.9530,82.6110,83.4120,0.03656350 396,211.9160,243.8030,19.1810,38.3170,0.03443905 396,163.4920,223.9530,28.3890,64.2940,0.02374833 396,311.4620,238.0870,24.4640,48.0900,0.01948445 396,247.1220,232.4400,24.0610,49.2840,0.01543258 396,206.5520,229.8140,68.0160,62.4050,0.01383191 396,258.5030,223.2200,28.7840,63.0350,0.01022520 396,180.9990,185.1030,32.0990,65.3660,0.01010423 397,156.7930,215.5820,43.5020,115.0870,0.79431200 397,21.3972,205.6480,34.7515,75.4820,0.10588190 397,52.5161,179.9530,30.9358,69.9340,0.05950083 397,164.0000,255.6930,29.3110,72.0490,0.04545337 397,124.7890,210.9280,89.5530,98.1860,0.02014409 397,88.9942,244.8900,23.1408,42.8530,0.01622751 397,157.4790,222.8260,28.8220,71.0330,0.01529721 397,123.5240,243.1830,23.0110,45.5830,0.01496558 397,201.4050,243.0830,23.5790,46.1230,0.01487877 397,46.8122,207.3470,57.9058,73.8820,0.01421358 397,536.1200,193.3900,102.4530,49.7740,0.01417761 397,69.3684,231.8860,91.1326,69.1330,0.01103291 397,306.5690,230.3980,24.0880,42.0130,0.01038472 397,13.2655,199.0790,81.6017,98.9540,0.01012457 398,2.0750,215.3050,45.4129,137.4430,0.22708134 398,258.5340,216.2140,24.6590,56.7790,0.05758741 398,79.6747,240.1820,22.9623,44.8400,0.04105375 398,32.2618,243.8270,29.5225,63.3740,0.02659157 398,19.5866,225.7900,34.6795,82.2130,0.01917029 399,289.4070,190.3920,20.7530,36.1900,0.02134145 399,306.4920,190.3930,21.1510,37.2550,0.01874338 399,469.7420,167.8550,28.9210,68.0240,0.01191235 399,464.0180,207.0910,27.9080,49.3160,0.01146213 400,113.1620,195.7780,27.1920,51.0490,0.01920243 400,316.9970,190.2870,31.4650,71.2750,0.01329087 400,82.8961,201.3890,23.0819,44.8360,0.01124832 401,610.7970,201.3360,24.0920,46.1320,0.03268353 401,161.4300,155.2770,28.1960,62.2490,0.02329926 401,356.8120,156.2860,29.9820,72.4190,0.01525406 401,506.2220,200.4680,30.5480,56.4900,0.01380721 401,4.7753,176.6920,20.3791,41.5790,0.01259814 402,14.1751,138.9050,34.0163,81.0460,0.04773762 403,523.0650,194.1710,20.9920,38.7580,0.01932615 403,198.0830,87.2748,28.0460,47.6352,0.01211861 404,85.5990,179.8120,35.4670,84.3850,0.04359728 404,478.9750,195.6250,22.4090,43.3470,0.01662087 404,62.6478,294.8430,35.1218,69.4120,0.01099879 404,554.0690,204.8930,26.8920,46.9220,0.01041091 405,236.9760,212.2020,21.6510,44.3060,0.21446781 405,434.3540,101.8420,24.7140,57.0460,0.12048738 405,472.8580,274.7960,24.9120,52.0420,0.03856881 405,454.5380,270.5550,32.0640,67.9430,0.03118847 405,85.5852,263.6960,28.1418,50.3460,0.03001273 405,116.4170,177.6970,32.5370,72.4980,0.01889318 405,453.2810,225.2770,32.5760,74.4570,0.01577550 406,283.6330,215.0910,23.6450,51.7870,0.34661075 406,304.7990,215.1730,22.9620,49.5390,0.04059477 406,108.5810,276.8520,28.0240,48.0740,0.01028227 407,328.4160,213.6580,26.5120,64.3380,0.80661917 407,352.7260,222.0170,23.4210,54.1560,0.41208112 407,256.2570,88.2590,35.7630,84.9360,0.02752967 407,348.8410,216.3860,48.4110,55.8370,0.01787364 407,391.5630,221.0340,23.6830,42.7550,0.01342176 407,140.5400,284.9680,28.4950,49.7180,0.01026131 407,256.1730,56.9267,29.6910,58.6673,0.01019699 408,358.2660,217.4030,31.7890,81.5770,0.86612499 408,387.4950,228.3570,26.6490,68.7250,0.77183324 408,375.1260,220.9370,28.3810,72.4050,0.11378472 408,141.4210,299.0310,31.4550,56.6280,0.03435967 408,281.3190,48.3057,26.4950,54.6773,0.02376468 408,471.9400,198.8870,28.9820,68.6090,0.01780686 408,434.9470,228.3600,25.5480,48.1710,0.01770705 408,302.7430,228.3630,19.1760,32.6230,0.01018807 409,391.4610,214.7080,44.2430,115.9300,0.86947507 409,437.0670,230.6130,35.6580,96.4490,0.82343823 409,441.9610,269.8110,23.9890,56.3390,0.07242861 409,506.6780,198.0320,38.3330,89.1380,0.07017391 409,559.1970,191.6720,42.8920,92.7470,0.03193417 409,403.5710,256.3200,29.6610,71.8750,0.02148625 409,471.9740,231.1500,21.8400,41.3930,0.01767297 409,317.2440,228.7170,20.1300,33.4740,0.01697650 409,295.9290,22.2302,28.7770,64.2259,0.01505940 409,442.0360,214.6100,70.2430,125.0360,0.01306286 409,525.3100,217.3040,28.7950,66.3270,0.01124363 410,454.7950,223.4460,71.5950,189.2020,0.78389990 410,545.6110,240.0310,57.9970,153.6990,0.75716257 410,549.8590,253.3300,36.3850,100.2610,0.06444885 410,462.7850,227.9240,41.1110,114.7830,0.03088395 410,546.4660,188.9270,36.2990,88.0190,0.02486000 410,541.4090,310.2750,33.5430,80.4360,0.01508674 410,489.0320,300.9460,35.4890,103.8700,0.01440608 410,331.1260,233.7950,21.1720,36.8180,0.01375145 410,305.7610,3.2365,27.5780,65.5154,0.01361248 410,396.6250,206.0700,38.7270,60.0650,0.01290087 410,476.5960,223.0380,31.6750,64.3830,0.01174637 410,494.1940,251.6510,58.5670,141.4300,0.01155350 410,489.2450,241.9090,37.6240,110.2240,0.01119542 411,577.8570,182.3780,42.0290,96.9070,0.05020788 411,421.7860,189.4080,43.4110,85.3280,0.02305587 411,479.9450,163.9670,45.2820,108.3890,0.02265173 411,440.7700,205.3820,34.0720,70.3550,0.02142878 411,225.2160,246.3950,22.4110,35.0240,0.01211933 412,412.0290,184.5790,44.0540,95.0510,0.03244013 412,468.6680,159.7700,40.2540,94.1600,0.01894621 412,583.2620,180.5490,32.7770,91.9070,0.01495844 412,613.0090,232.8720,25.6390,60.3960,0.01288265 413,391.8540,209.9780,38.4540,72.3800,0.05503977 413,383.1090,211.5280,30.1100,79.9870,0.02867724 413,565.6660,172.9730,40.1770,97.8780,0.01672341 413,341.6860,199.5960,48.8800,77.5560,0.01494669 413,606.3300,236.4990,29.2560,62.9420,0.01339934 413,368.9070,181.3640,85.8930,109.9630,0.01329713 414,445.5360,189.7580,70.1350,118.6650,0.07152355 414,465.5120,208.6070,42.3530,83.2980,0.06045841 414,407.8000,210.6550,46.8110,90.2960,0.03520191 414,448.2260,209.2840,33.1610,96.1810,0.02422672 414,510.3960,118.2060,65.8860,161.3740,0.01777638 414,464.5870,153.1440,154.0890,165.6110,0.01391383 419,526.0750,144.8120,25.9940,54.7230,0.01322703 421,52.8900,215.7500,36.4344,90.1490,0.61931974 421,21.7390,222.7460,30.5651,75.8460,0.49435237 421,43.0424,219.5590,27.4766,77.8580,0.10366244 421,352.1900,209.1190,24.5760,42.9230,0.02672585 421,5.0488,287.9300,26.0117,52.3300,0.01967881 421,219.4770,242.7600,22.4580,41.8900,0.01585854 421,58.7286,246.3210,24.2694,55.4360,0.01431064 421,8.2088,225.7680,33.6042,103.7890,0.01250665 421,244.0910,241.7000,21.8990,39.1910,0.01081777 422,346.9840,219.4060,34.5450,87.5840,0.84580237 422,321.0490,228.5310,30.1140,77.6550,0.65679383 422,336.4820,224.0430,28.4190,81.6610,0.23392360 422,598.3320,219.7720,39.7830,126.2450,0.02912681 422,461.7670,269.4320,21.2800,34.0070,0.01303837 422,524.5870,236.4460,20.6650,42.1080,0.01032820 422,1.0000,3.9255,30.7313,88.8053,0.01002689 423,350.0270,210.5160,34.9340,99.9720,0.84623903 423,328.2800,224.5330,29.8090,80.8760,0.80070651 423,481.7100,273.7020,20.5860,32.5390,0.02383357 423,46.2372,215.9320,30.2770,71.7680,0.01730725 424,175.3260,216.2310,46.3010,114.8740,0.81971902 424,133.0260,228.2690,39.5450,102.4200,0.67811519 424,604.5550,200.9980,29.0630,65.1740,0.19852521 424,169.4930,240.9870,33.7040,93.2070,0.03597376 424,576.5770,235.7980,63.4230,181.8740,0.03068284 424,158.0880,233.6810,32.4490,94.6190,0.01301851 424,337.5540,296.0660,25.7150,47.6630,0.01159088 424,137.5120,278.8210,25.0800,49.5660,0.01039462 425,1.2303,206.1190,41.6493,158.5360,0.23286860 425,531.0310,183.5300,34.9260,84.5720,0.19888318 425,472.0370,44.7179,29.5920,68.0841,0.05149065 425,177.7470,318.1340,32.8860,66.0050,0.03876127 425,252.3410,280.3980,22.7420,38.0860,0.03520452 425,222.4240,297.0120,24.6780,47.3960,0.02169510 426,561.4180,156.1910,61.9970,147.2500,0.24796708 426,194.7190,280.1300,22.9280,42.3750,0.06170563 426,158.2520,302.6410,28.3000,51.7550,0.05609865 426,487.8620,1.0000,29.1780,53.4075,0.03603012 426,217.0110,266.7410,19.4420,36.9500,0.01699609 426,98.2939,335.9520,34.2841,77.4490,0.01240817 427,159.7670,291.4170,24.4000,43.5540,0.08047076 427,120.2720,312.8900,28.5450,57.4240,0.03375710 427,610.8360,16.8639,28.5210,95.4491,0.02912025 427,167.5590,203.8480,21.2990,35.0250,0.02328962 427,188.1300,274.9990,21.1040,39.4470,0.01950052 427,603.2080,90.8063,30.7020,71.8667,0.01674101 427,278.1030,361.2990,32.5870,75.9270,0.01110340 428,351.2010,166.1160,28.8000,60.8760,0.03469620 428,141.4560,301.4150,28.0240,52.3530,0.02171388 429,363.3540,165.8730,25.6230,56.7280,0.11373381 429,395.6650,191.6240,22.4260,42.1260,0.08205115 429,434.5560,201.3640,23.7860,48.4020,0.06880593 429,155.4680,204.7810,21.0760,39.2890,0.02055750 430,466.6940,203.6790,23.1610,50.7680,0.43210489 430,445.1440,199.5180,24.0140,56.5710,0.37217274 430,147.4700,200.0930,21.8830,39.4580,0.10085753 430,399.0230,192.2830,21.3780,39.9780,0.04770098 430,366.3000,162.3110,23.5830,49.0140,0.04726642 430,295.2750,208.0830,21.7210,39.3410,0.02780500 430,4.5511,193.5270,39.8025,95.0140,0.02352081 430,1.4762,182.6540,80.2468,88.9740,0.01091179 431,428.8240,205.5310,28.1560,66.7450,0.64739037 431,113.7850,207.2410,25.8990,46.5810,0.49584851 431,368.7710,196.4690,23.3750,44.3370,0.12028419 431,439.9320,207.7620,26.8930,61.0360,0.04658974 431,345.3400,169.0720,20.8990,41.5690,0.03330895 431,261.7930,210.9240,21.1290,36.9190,0.02137325 431,303.0400,203.8080,23.5410,42.0070,0.01300116 432,390.8760,204.8430,37.1520,82.4650,0.79232675 432,95.8864,204.7560,26.0526,51.2580,0.11041372 432,319.5510,185.0460,23.5420,51.5970,0.02501635 433,361.1430,222.3720,31.9970,74.9090,0.79450923 433,284.7590,207.1140,21.4350,43.3210,0.40324208 433,305.4090,178.7420,23.7680,47.3870,0.01516476 433,364.4990,183.9730,32.6530,73.3640,0.01273873 434,327.0730,211.7300,40.0460,92.6480,0.85036016 434,252.6620,202.9520,24.1160,48.0330,0.55445731 434,153.7810,207.6210,24.4550,49.5530,0.31030095 434,303.8730,174.4210,23.1300,44.8670,0.02918278 434,369.6000,182.7040,23.0260,44.4310,0.01475168 434,304.8650,202.2510,78.3210,84.5120,0.01311252 435,289.1860,224.1290,37.1420,90.4250,0.79795814 435,221.5810,208.6160,23.5680,46.5020,0.36419499 435,196.5900,210.9790,21.9460,43.7630,0.22863342 435,303.1800,175.8230,24.0740,46.1370,0.02478543 435,303.6710,228.6860,29.2640,69.2950,0.01961107 435,212.4150,209.8460,21.3110,43.6270,0.01328472 436,246.3550,225.2070,38.4610,86.5080,0.80542105 436,190.8050,207.0830,22.5970,44.4840,0.33511645 436,235.2460,211.0520,24.1960,57.8210,0.09669616 436,302.0660,177.0360,22.4900,44.6300,0.02050313 436,218.4990,212.5090,66.2450,74.7290,0.01190870 436,439.3450,197.7220,26.5350,54.3370,0.01054253 436,35.2690,174.1610,29.6879,57.0290,0.01014164 437,186.8030,228.1020,34.2130,86.1810,0.71154886 437,273.9500,218.6980,24.5900,43.5320,0.49312246 437,199.8250,228.0390,35.7220,89.2010,0.36513859 437,158.3010,203.7970,24.1960,47.9570,0.33520147 437,303.2860,176.0430,23.1900,46.0500,0.01614999 438,123.6210,224.0640,36.7940,92.7190,0.67726529 438,125.8220,203.7930,27.7680,68.0680,0.13310370 438,138.3660,229.3770,30.8020,72.0510,0.04233908 438,149.6800,225.2800,26.2770,56.8880,0.02375189 438,370.4320,186.1510,22.1490,41.0150,0.01574279 438,114.1510,206.4640,89.5040,88.2310,0.01223363 438,311.0040,216.9290,23.3740,39.7570,0.01052682 439,91.4525,222.3600,39.9185,94.8230,0.80027944 439,64.6191,225.2340,37.9789,91.0960,0.67859536 439,339.3450,218.2620,25.7230,52.3420,0.35235962 439,301.9760,180.5390,21.9850,43.2060,0.01887321 439,371.1370,188.9780,21.5470,39.2520,0.01483823 440,369.0730,225.0370,25.7900,52.1530,0.65900522 440,15.9623,218.8740,34.5006,103.9500,0.60529757 440,49.3034,220.2230,49.3526,103.7060,0.44397849 440,2.0375,216.3400,33.0474,105.1690,0.27286869 440,367.2900,196.7870,26.3520,58.5760,0.03260706 440,46.8243,200.3590,30.3399,62.2630,0.02647600 440,294.5500,178.0880,22.1400,43.2410,0.01787031 440,363.8120,185.0520,24.1070,52.1820,0.01193599 440,40.2432,226.1040,38.3334,85.8230,0.01165084 440,205.6990,185.3650,21.4980,43.6740,0.01149868 441,184.6700,228.6290,50.3230,110.0400,0.74759096 441,387.9840,221.4850,27.3960,51.4210,0.54923302 441,172.2370,239.5700,41.8810,100.7730,0.14335680 441,193.5470,231.3050,35.8960,60.7010,0.06607908 441,179.5080,291.5850,31.6310,65.6310,0.02584154 441,345.5970,184.5980,20.5040,39.6910,0.01745567 441,380.2510,209.5110,48.5060,69.7660,0.01427575 441,274.5070,172.9600,22.3450,43.4550,0.01240615 442,401.1790,221.5550,27.4500,58.2220,0.68433690 442,351.8000,235.2050,56.4150,118.1180,0.52894610 442,323.7430,182.4350,20.2980,39.9350,0.02141344 442,372.2080,237.2360,28.7580,53.4040,0.01680215 442,152.2580,174.4210,21.7230,44.7040,0.01677327 442,248.2980,168.2470,23.6840,45.6040,0.01376273 442,365.4610,275.6780,34.2760,76.8600,0.01237882 443,445.1790,238.2250,46.0500,115.6450,0.74099356 443,385.4950,217.6120,30.5300,62.2750,0.69686818 443,465.1090,239.7350,38.5520,105.8450,0.15080899 443,593.9170,120.6680,28.0200,63.2320,0.02216506 443,476.6920,257.7190,27.9850,57.7090,0.02076984 443,274.2250,172.6990,19.7810,40.4570,0.02039115 443,193.4800,156.5300,26.3410,50.0070,0.01153676 443,435.6810,201.3940,78.4330,125.4570,0.01021648 444,368.5810,215.6110,30.3530,66.6900,0.85399652 444,534.7080,244.7290,47.9670,104.2350,0.49795726 444,211.0980,160.0510,23.2690,45.7810,0.07721294 444,551.2440,113.1280,26.3500,61.6870,0.03467123 444,553.9720,247.7170,33.8720,79.7480,0.01975331 444,132.9100,149.9450,26.6540,49.3650,0.01378724 444,179.1600,159.0840,25.4140,58.7570,0.01321115 445,438.4190,219.3420,34.2850,76.1720,0.79306608 445,239.8970,163.7530,22.3630,43.9510,0.13442923 446,530.2720,220.9110,38.9020,89.0990,0.65982282 446,272.6950,163.3710,22.0430,44.6030,0.07810377 446,68.0044,151.5120,25.1016,52.8660,0.04474554 446,232.8730,170.8760,27.4240,62.1170,0.03319333 447,2.6464,198.6350,61.1325,226.3410,0.62304574 447,290.7120,165.8960,21.5970,43.3420,0.06975840 447,211.3800,154.8810,24.4620,47.9070,0.01704968 447,250.0570,181.2300,24.9600,51.9720,0.01660423 447,80.1883,152.4120,25.2457,54.1660,0.01410120 448,40.8322,204.1370,74.0438,207.2830,0.55754524 448,13.9835,206.0240,66.1095,179.5270,0.42410746 448,307.6350,159.8650,24.4080,47.6630,0.10505807 448,25.1497,208.7350,38.0068,76.4680,0.03392019 448,94.0917,149.6530,24.8123,52.0920,0.03298171 448,227.5520,149.8790,24.5170,49.7830,0.01754804 448,10.6114,225.0720,40.8051,105.0230,0.01471851 448,67.3604,274.6350,39.2896,109.4400,0.01323986 448,204.5030,166.3900,198.8430,51.9710,0.01143727 448,265.5370,173.1150,24.7530,55.6070,0.01117536 449,98.7770,198.0360,75.1270,192.3700,0.54736781 449,87.1376,328.8110,36.9264,83.5210,0.09483746 449,328.5790,161.6150,21.0530,42.3210,0.06300133 449,133.5070,291.6110,39.5790,100.0550,0.03399806 449,126.3810,224.3460,43.1270,119.9640,0.03043884 449,283.8110,174.5270,25.7000,55.4380,0.02511335 449,244.6270,149.0550,24.5950,48.7530,0.01609629 450,175.3500,196.6910,85.8730,207.9230,0.86237335 450,179.9020,323.5990,36.5600,89.4940,0.08893045 450,355.7400,159.9230,23.4630,46.8290,0.08542723 450,219.6740,237.9630,41.6450,106.7870,0.06693303 450,221.0590,298.4560,39.8140,95.5180,0.06275752 450,310.8240,169.0430,27.7620,62.6080,0.02950105 450,273.0100,149.0890,24.8830,48.3520,0.01215137 450,272.2730,165.7630,183.8610,56.1120,0.01192906 451,313.3370,216.4270,81.6290,214.1770,0.87974513 451,424.5310,176.6380,20.5860,43.8650,0.11090879 451,350.4580,230.6860,52.8420,151.7600,0.05526285 451,331.9700,339.1200,35.1690,91.7680,0.05143134 451,347.7300,232.9610,36.9040,100.3930,0.03064101 451,410.7070,172.4600,21.1980,46.2350,0.01023736 452,524.6680,217.4820,91.0930,240.1020,0.77112979 452,531.2470,186.9040,21.7700,45.0030,0.08552400 452,485.8100,186.4820,33.1680,73.1310,0.01757581 452,552.1320,344.7670,38.6120,105.8340,0.01233687 453,575.4660,189.3510,21.9780,46.2930,0.06840150 453,542.8210,191.7550,29.3570,67.6180,0.06240973 453,142.9310,49.5729,29.2910,65.0441,0.02137245 453,465.0020,184.0070,174.7770,55.0380,0.01321036 453,519.6130,193.7060,85.2780,52.6800,0.01172103 453,471.7260,181.1870,23.3730,47.1160,0.01027529 454,584.3080,177.9030,24.4100,58.6910,0.19992924 454,467.4480,182.1220,24.4670,50.0630,0.01025438 455,595.0680,188.3800,35.3890,91.4860,0.12063012 455,612.5410,117.0720,25.6400,67.3210,0.02161051 455,457.3260,184.2480,24.0350,46.2350,0.01667146 455,452.9010,185.0890,165.2840,58.5350,0.01483552 455,570.8840,233.6990,28.2350,54.1350,0.01050593 456,482.6670,198.6380,24.3290,50.1790,0.02185702 456,231.6940,165.3630,29.5780,65.6710,0.01716682 456,401.5120,184.8860,22.3240,46.8130,0.01661505 456,142.4910,198.9460,33.2860,67.8590,0.01053274 456,398.7790,192.6270,150.6710,51.2860,0.01039895 457,109.1460,149.5290,38.0050,97.2480,0.24104951 457,547.0210,175.2750,32.1200,76.3740,0.03558637 457,384.1880,210.0550,26.4260,49.0470,0.02063145 457,321.7810,181.2830,164.1540,58.6490,0.01431401 457,345.7770,200.3870,23.1940,44.8590,0.01270482 458,523.9530,161.0940,32.7810,80.2370,0.28400263 458,257.4450,211.9850,33.2770,71.1410,0.04167844 458,286.8880,187.2550,23.0740,46.1420,0.03021926 458,94.4855,175.4300,28.9715,60.3850,0.01635012 458,265.4730,241.5740,26.4100,50.7760,0.01482814 458,513.5720,175.3320,26.6680,63.9120,0.01448355 458,213.5670,184.4910,172.1410,57.2130,0.01338829 458,151.7740,184.7010,21.3170,38.6850,0.01318290 458,555.1440,219.8080,31.6550,62.8590,0.01187912 459,200.1500,186.2060,23.0350,49.8860,0.08702001 459,519.8820,148.9640,45.9610,108.3150,0.05924924 459,461.1030,196.3500,25.5480,57.9290,0.02397274 459,593.7100,219.4870,43.0950,114.5630,0.01352950 459,278.9400,250.7490,21.6570,45.9990,0.01136845 459,157.7110,190.1730,30.0200,63.2120,0.01120673 460,411.4890,202.7760,19.8250,41.0990,0.01954073 460,514.5780,201.2550,36.5240,89.6740,0.01795675 461,397.2090,219.0060,19.8900,42.8280,0.01592597 461,354.7770,218.5490,22.1090,47.1090,0.01446809 461,317.9340,210.2290,146.6220,51.6870,0.01385378 461,87.9645,211.0630,26.1455,48.6510,0.01296391 462,73.0791,186.8990,28.3329,59.4140,0.02617087 462,411.9310,209.0480,21.6220,45.5180,0.02510242 462,324.1380,200.8570,21.1750,39.6590,0.01812582 462,105.7010,300.6550,38.2970,86.9530,0.01796706 462,352.7260,205.9570,23.0850,52.6770,0.01366906 462,424.5360,202.0260,30.2430,59.4200,0.01169151 462,339.8990,197.9770,33.7780,91.2330,0.01108150 462,311.6620,199.3280,144.3420,51.3560,0.01046924 463,426.7980,213.3280,27.3330,61.7430,0.22541255 463,301.4720,207.8330,22.9110,46.4150,0.09015239 463,307.0530,210.4930,156.1120,49.0400,0.05096329 463,138.9070,212.1370,22.8610,41.9800,0.01562352 463,25.6007,209.6950,24.9629,51.0500,0.01507979 463,402.5280,213.8890,19.8320,40.5750,0.01424917 463,364.4000,215.0120,20.1830,41.0540,0.01281754 463,525.3760,207.7370,37.0660,91.5460,0.01133142 463,436.8660,221.2350,25.4510,48.2140,0.01131584 463,379.4790,217.7060,19.1550,36.7940,0.01064584 463,518.6570,208.6200,60.6280,141.2580,0.01010676 464,465.6330,215.0560,34.0900,85.5700,0.52720797 464,285.0790,217.6850,20.9680,39.5240,0.07839417 464,391.6330,218.8660,23.1350,47.4270,0.03981230 464,368.9470,216.0860,21.3870,46.2920,0.02429825 464,120.8500,210.7200,24.9240,48.3420,0.01703660 464,313.2520,212.2480,155.6810,49.6230,0.01542142 464,139.1370,212.9710,23.9130,46.2030,0.01509222 464,353.6530,213.1760,52.2170,50.7150,0.01289540 464,458.2950,215.4870,28.0680,63.6620,0.01182737 465,270.5270,219.8830,23.3120,42.3900,0.28151175 465,558.4210,208.9170,50.9140,129.9290,0.05173104 465,138.2380,214.2510,24.9480,47.4240,0.04182408 465,353.7230,208.6280,92.9350,53.1360,0.02709506 465,105.2670,211.2250,24.7280,49.2110,0.02498513 465,400.6210,215.0380,21.7990,45.9600,0.01919485 465,378.4640,214.7650,19.7810,38.3460,0.01068865 466,246.2860,218.8870,24.8030,50.5440,0.58968550 466,362.6150,227.1310,23.9020,46.3750,0.21343128 466,501.1400,223.7320,55.0040,141.1770,0.08099632 466,156.4350,216.5700,22.5510,44.4280,0.04344628 466,421.7390,216.8520,32.0920,75.7330,0.04005522 466,371.2840,218.1900,69.4000,43.8570,0.02717894 466,402.9560,221.7930,19.6900,34.7740,0.02413295 466,342.1280,216.0750,169.2680,57.3420,0.02011208 466,144.2530,217.4030,22.8210,44.6700,0.01851904 466,385.6840,221.2640,20.5100,39.9850,0.01630303 467,321.5020,219.0280,25.1150,48.5330,0.29064924 467,200.2180,219.8850,23.5620,50.7060,0.27073601 467,134.2760,211.5300,23.7080,51.4580,0.14898059 467,435.8060,214.8040,20.6050,42.6190,0.08562235 467,122.8760,215.7270,22.4860,45.0300,0.07733962 467,338.0640,213.1980,156.5850,47.9000,0.03525215 467,83.3976,215.3160,31.3794,67.3280,0.03294666 467,410.9770,208.8290,22.4110,47.6020,0.01686684 467,387.1060,216.7740,19.8590,36.3920,0.01658857 467,417.3080,215.0000,48.5000,49.5080,0.01609114 468,273.9640,217.0060,28.0920,55.7310,0.68670928 468,124.6450,219.9820,27.7680,63.5530,0.53392047 468,108.4000,209.7700,21.2370,53.3420,0.29044574 468,443.6660,210.1270,26.9700,59.3110,0.25784272 468,360.5430,210.1980,74.4000,43.3100,0.06071695 468,70.8040,209.0930,25.9497,55.1010,0.05371767 468,80.5327,211.3430,26.8813,55.9660,0.04930441 468,454.7740,217.5830,22.9580,49.5620,0.03961753 468,114.3830,213.4220,26.8930,68.6410,0.03536840 468,613.5350,231.2330,23.9770,54.5940,0.03226107 468,419.9620,210.5630,18.8800,39.1610,0.02307311 468,320.7110,204.3450,180.4580,54.5320,0.02264931 468,99.5350,212.8030,22.5540,54.4670,0.02137773 468,402.8740,210.7230,19.0670,37.2390,0.01930070 468,373.6530,212.9850,19.2270,35.7860,0.01862212 468,411.0000,210.1160,20.1400,39.2970,0.01029784 469,462.8100,214.7050,24.9850,55.3260,0.73809302 469,205.9080,211.5720,36.2860,69.0580,0.67997772 469,67.5978,203.7960,28.7170,63.3280,0.57668430 469,5.9310,215.9700,35.6053,81.6210,0.54988259 469,429.7660,210.0490,19.2810,40.6360,0.15219772 469,39.4666,207.1630,26.7540,61.8440,0.11783794 469,409.8420,209.9240,19.3810,39.4500,0.07233168 469,371.8430,211.4970,78.2680,40.5610,0.05887513 469,56.9613,204.0320,27.0742,62.7540,0.04830716 469,380.6710,212.1720,19.1730,38.4410,0.04151596 469,340.7820,207.1020,164.1900,55.3010,0.03274211 469,21.4089,212.1370,27.6201,64.5440,0.02786962 469,419.3360,210.1180,19.8240,42.3490,0.01459463 469,5.1844,204.7420,85.3960,78.4100,0.01283791 469,508.6250,61.4129,29.0380,69.3501,0.01249831 470,484.8990,217.9830,27.3580,62.6940,0.83022702 470,91.4386,214.8130,41.6784,93.7240,0.66846687 470,438.5630,211.5480,22.0150,47.4060,0.41905195 470,417.7640,209.4630,20.3920,45.9200,0.28316775 470,379.2610,210.6330,21.0110,45.9360,0.13578285 470,6.4617,197.0340,30.9847,70.2570,0.09798467 470,401.8410,213.5480,19.1030,40.8130,0.05107022 470,341.7780,208.4800,150.3510,47.7130,0.05022907 470,390.6330,211.7490,58.6890,45.0930,0.03827790 470,106.1320,249.0460,32.8120,58.7320,0.02366034 470,56.1782,206.3090,91.9338,83.3350,0.01163636 470,58.0280,212.8610,23.6987,47.1480,0.01057788 471,530.7070,225.5430,30.6760,76.5270,0.80135918 471,432.2790,215.7110,22.6620,50.9220,0.56238329 471,464.8160,215.7210,23.0400,54.7140,0.54482967 471,384.6410,215.5810,22.8810,54.2400,0.41273859 471,408.1720,220.4380,20.6000,44.6220,0.26434287 471,518.9290,212.9880,27.4830,68.3950,0.14731175 471,416.8170,216.1560,19.7610,47.5750,0.03949250 471,381.0710,213.9980,176.5060,61.8780,0.01870266 471,278.5690,212.4370,352.9610,73.2220,0.01568297 471,451.2860,216.6520,20.1780,48.3230,0.01018317 472,597.7070,213.5130,30.9930,75.2650,0.73111683 472,459.6250,216.1030,26.4110,59.2480,0.70452994 472,513.4040,212.4920,29.8460,67.1930,0.69566596 472,432.3220,218.5200,23.2260,55.8880,0.57992876 472,397.1030,216.3690,24.6280,61.5120,0.55935502 472,411.6220,216.3260,24.3260,61.2480,0.15803221 472,470.5410,214.1280,24.2410,53.4110,0.02050226 472,440.2850,211.0550,27.8820,61.4170,0.02015480 472,537.8780,158.9580,31.4200,79.1410,0.01535020 472,544.0800,201.8890,26.6080,67.0150,0.01221237 473,428.8490,214.0940,34.4810,81.0550,0.85485262 473,500.1970,218.5080,28.2610,71.3120,0.65496254 473,470.8300,217.6000,32.7090,78.3230,0.64596075 473,604.1680,212.3810,31.9230,79.1780,0.56143796 473,485.7210,216.7210,26.1980,69.4150,0.09056965 473,12.4481,222.7410,35.9820,79.1490,0.03058287 473,460.9670,217.2280,26.9530,76.6960,0.02895684 473,510.5070,213.9130,26.1890,58.7480,0.01173494 473,435.6540,212.0430,62.0520,84.3950,0.01075003 473,444.1570,213.6780,27.7100,72.2190,0.01042711 473,505.7640,250.4070,23.5130,44.7070,0.01013826 474,510.1200,203.7940,47.9700,128.2650,0.82373822 474,568.4200,213.1800,37.8070,108.8190,0.55517441 474,581.5710,218.9960,46.3450,130.1980,0.46006709 474,600.1430,215.1970,32.9370,96.9140,0.15519179 474,392.5550,202.2750,23.1460,53.3090,0.04021569 474,371.7730,199.6440,20.9000,44.8280,0.03376342 474,531.0670,210.7940,32.2880,90.1900,0.02055397 474,536.0250,207.8500,49.9510,116.5890,0.02006229 474,2.2485,205.2630,34.9833,77.8550,0.01656235 474,325.8830,217.4120,27.0670,51.7690,0.01421235 474,51.0913,208.5550,21.8717,42.7510,0.01318302 475,425.3500,201.3190,32.4400,73.2100,0.06960377 475,379.1660,207.9320,20.3890,37.9480,0.02960595 475,401.6610,215.3170,21.3530,42.1990,0.02428695 475,419.4440,218.7460,23.3710,50.1560,0.01332806 476,428.6730,215.0930,22.2720,51.0180,0.30817422 476,379.5030,203.1220,22.6260,48.1670,0.06697238 476,599.9110,142.4900,37.4080,109.7480,0.02666654 476,411.3310,218.5630,20.1530,41.7990,0.02284720 476,394.7410,209.4560,76.0950,55.3830,0.01665054 476,437.9420,219.8000,20.4110,42.1160,0.01605751 476,296.7870,229.3460,21.8170,35.4550,0.01534242 476,328.8940,225.1230,26.3160,49.4430,0.01370973 476,401.0880,205.0160,23.5300,51.9350,0.01264949 476,340.2470,206.9540,189.8880,52.2980,0.01211982 477,475.6050,209.4870,31.3600,73.3230,0.18421382 477,426.1570,216.2880,23.6510,48.2880,0.04855771 477,457.0550,216.9550,21.1870,45.2490,0.03135308 477,437.4040,215.7760,37.3980,51.0280,0.03020093 477,424.2330,210.9650,75.0590,59.6000,0.02287757 477,613.3930,217.5280,26.1630,73.4290,0.01958636 477,467.3220,215.4750,24.5540,57.7860,0.01853856 477,332.7250,221.4650,27.9400,57.7560,0.01262156 477,614.2730,316.3670,25.7270,72.8830,0.01049906 478,72.4200,230.5150,24.5433,52.5100,0.02011968 478,487.2320,232.0110,27.8020,66.9260,0.01919649 478,391.8570,202.1650,26.7800,65.5790,0.01625409 478,119.6380,217.9880,23.2720,46.4500,0.01160798 478,43.5310,215.0970,21.2984,42.3880,0.01092509 479,563.7400,211.0930,54.0340,145.1930,0.39404139 479,462.7410,219.4620,26.6640,58.4600,0.02475065 479,473.0800,229.8310,22.6260,48.7540,0.01777546 479,342.7000,222.9320,28.8000,63.0120,0.01766330 479,213.4030,237.5180,20.4040,35.5830,0.01682333 480,533.2440,222.4450,35.5100,86.1630,0.03756096 480,402.7430,225.4450,20.3040,40.1790,0.02412711 480,613.5180,233.8840,23.6870,60.5430,0.02068525 480,563.0990,207.5650,22.8160,45.4430,0.01654479 480,462.5240,217.7420,28.1110,61.9170,0.01347158 480,310.2310,234.6500,23.5240,40.6720,0.01272090 480,490.4990,244.9410,22.6280,48.7160,0.01025944 481,425.3590,226.2510,21.1930,44.8120,0.04833947 481,304.5190,229.8020,22.8880,42.3170,0.03461120 481,399.2770,232.0250,21.4430,42.1450,0.02011594 481,552.9590,225.8870,23.9980,56.3730,0.01485430 481,338.9460,223.5340,33.6720,58.0340,0.01374054 481,481.7070,206.8630,23.4240,56.8520,0.01204386 482,399.0330,235.5670,22.8480,48.3640,0.06102941 482,467.9980,225.6340,27.5760,66.3060,0.03397612 482,187.4060,234.9610,18.3840,35.1230,0.03310545 482,297.0840,228.1810,23.7420,42.7130,0.02704690 482,617.4230,205.0240,22.1580,71.1630,0.01148395 482,172.5090,236.2190,19.0630,35.2250,0.01077175 483,576.4470,214.4710,51.1140,139.7400,0.24406755 483,429.3910,228.8470,27.9530,67.3140,0.18069892 483,555.9730,221.4670,33.1280,91.7270,0.03048544 483,294.7240,226.3220,23.0310,42.8740,0.02195352 483,171.5950,231.2290,19.0500,35.5290,0.02151794 483,467.0270,242.6130,23.6140,38.6680,0.01310186 483,567.1340,214.9720,37.5330,109.3600,0.01178042 483,328.9450,192.6720,28.5300,66.5480,0.01128913 483,127.4050,231.0520,22.6660,43.8240,0.01056516 484,495.7830,238.8100,38.2560,96.0660,0.11651754 484,497.2100,208.1250,25.6370,60.7420,0.08268393 484,592.9470,150.9470,44.1870,127.3000,0.05827275 484,120.4920,223.4860,20.5650,41.8640,0.05525495 484,458.7670,229.4560,28.5590,60.5160,0.03461504 484,163.2590,223.9810,19.1850,38.7920,0.01701214 484,149.3510,224.0430,19.2730,38.7410,0.01229805 484,65.1379,222.9020,201.0171,50.2270,0.01201092 484,329.5340,180.8420,27.7150,69.6410,0.01091685 485,481.1580,241.2940,28.3240,62.4710,0.18531159 485,556.8400,209.1630,28.8340,68.1630,0.03857931 485,524.4960,3.3514,27.5680,64.2449,0.02921231 485,72.0940,222.5420,29.5680,59.1320,0.02919924 485,165.6150,227.2250,19.9040,41.9280,0.02709546 485,103.6750,229.0650,82.2600,43.7050,0.02491736 485,567.1120,47.7350,26.2030,51.3312,0.02439426 485,615.4760,200.8430,22.4430,51.9600,0.02264800 485,133.0810,231.1830,19.4140,39.7640,0.01446456 485,304.9710,225.6290,23.5720,47.8840,0.01353297 485,71.8459,228.6590,179.5231,53.6190,0.01262960 486,146.5040,224.4000,19.7740,40.7420,0.15510660 486,165.2530,219.5030,21.1370,46.4890,0.03800719 486,352.0490,179.2880,24.7630,61.0990,0.02858756 486,468.9320,254.1690,26.2600,43.6830,0.01341445 486,51.2267,219.5220,31.7518,68.0770,0.01078063 486,602.6180,226.4180,24.8330,42.3230,0.01055443 487,164.4110,211.0390,21.7040,47.5480,0.04275200 487,146.5310,217.8910,20.3120,41.7320,0.04151632 487,155.3520,217.5450,19.7820,42.3700,0.02060856 487,562.2130,219.8560,22.3940,40.6490,0.01094240 487,122.5460,215.9450,66.5350,46.0500,0.01037029 488,165.4950,210.2390,22.8050,51.0220,0.18349013 488,608.8390,224.8060,23.1740,46.2440,0.02199078 488,495.6580,128.4290,29.1960,67.6110,0.01199974 488,383.7520,217.9110,22.6540,44.0150,0.01072490 488,429.2480,202.4190,22.8510,46.8350,0.01063380 488,65.6447,215.8750,207.7983,48.2020,0.01060917 488,145.4550,215.8330,20.8440,42.9100,0.01027370 488,157.0460,213.4870,21.4280,46.8080,0.01022410 489,201.6800,214.7580,21.9460,46.4130,0.12074558 489,558.7500,232.4130,27.2150,53.3690,0.08273719 489,488.5110,220.6320,32.3790,59.3810,0.05262146 489,192.3370,209.2830,21.2780,48.2660,0.02639996 489,27.1558,224.2020,24.5306,48.0310,0.01749156 489,505.7800,217.2730,20.6820,47.7060,0.01447864 490,239.3540,219.2740,22.2970,46.0590,0.40131623 490,607.4940,34.8214,30.2760,90.7556,0.02467567 490,230.8840,221.8620,21.6280,43.5560,0.01254496 491,255.0740,215.3800,22.9350,48.4300,0.57545763 491,543.7320,195.6020,22.7970,50.3900,0.02731632 491,566.6030,196.4520,25.4860,56.2840,0.01324104 492,255.6030,219.3480,23.7150,52.9820,0.62915909 492,557.1930,185.8550,31.2520,65.8390,0.02128906 492,584.8980,201.4420,23.6530,52.4640,0.01838327 492,615.3270,228.8060,21.1310,45.3660,0.01065401 493,289.2960,220.5200,24.7920,56.8250,0.70325041 493,567.6190,180.9490,29.9550,56.7750,0.01475288 494,337.4920,217.7480,27.9830,67.3790,0.75771481 494,381.8150,209.2040,25.3500,52.1450,0.01482796 495,398.0030,207.5050,33.3060,81.2670,0.80295688 495,329.2040,209.7910,25.5620,56.4830,0.08333845 495,391.1310,226.4920,30.2540,78.2880,0.02260097 496,470.8130,208.1880,36.0940,88.5350,0.82412320 496,412.9740,209.3330,33.9830,86.5450,0.05776228 497,551.7980,191.8290,56.8370,158.8060,0.50694078 497,405.9160,203.8390,30.1770,71.8200,0.08265503 497,82.7102,187.6610,25.6648,48.8890,0.05167754 497,561.8540,208.1530,39.5180,96.7160,0.01462063 497,441.3790,41.6867,26.4690,40.7044,0.01136103 497,567.0090,193.6840,27.6650,59.6660,0.01089698 498,503.4660,198.3520,53.4490,138.6360,0.26325417 498,506.2250,199.3260,35.5170,88.7220,0.05065709 498,101.0580,194.1840,30.1190,63.4660,0.03003980 498,143.7120,200.6060,23.3990,47.1590,0.01992652 498,164.7240,193.7320,22.3450,44.9220,0.01625777 499,111.6840,195.8800,25.0820,50.0630,0.02748562 499,149.2770,203.3350,21.9420,43.8810,0.01186206 499,84.5558,195.4580,142.8622,57.8170,0.01170898 499,171.5760,197.2380,24.3140,45.6810,0.01092425 500,127.3030,199.1350,23.4050,42.5230,0.05711330 500,17.8099,210.1310,22.6879,40.8390,0.02075695 500,66.4091,195.7710,27.1094,55.2430,0.01019538 501,613.9010,144.4320,26.0990,95.0630,0.02801487 501,492.9560,189.3310,21.0040,38.6570,0.01545089 502,568.3380,190.3460,30.1060,69.9800,0.49943334 503,396.5020,193.0070,32.7530,82.5070,0.52351081 503,407.8310,188.7990,29.8800,70.5080,0.03154141 503,513.4540,201.2650,21.8240,46.3030,0.02575904 503,367.1660,193.8450,29.5410,70.4790,0.01484734 503,376.9540,191.2160,36.0770,79.7880,0.01322587 504,165.2630,174.5460,41.0690,97.1640,0.58293438 504,311.8920,183.7730,22.3760,49.6540,0.04294725 504,182.1650,172.3450,31.9470,75.2450,0.02035712 504,226.3520,194.0670,21.4590,42.1680,0.01571150 504,322.0400,182.8630,21.2280,48.1290,0.01502550 504,154.1370,175.4410,34.8970,78.1780,0.01256175 505,617.0370,243.9430,21.0410,45.8750,0.04183933 505,590.2080,215.9270,26.9700,60.6390,0.04011646 505,53.5124,186.3820,26.6536,58.9210,0.03636264 505,446.6060,207.1900,27.1700,57.7190,0.01145992 506,459.6170,209.2740,28.2180,62.4790,0.09948539 506,496.0440,242.3110,22.7860,45.7380,0.03451766 507,155.3520,238.6770,28.5900,54.9840,0.05548887 507,333.5970,203.3470,28.9290,66.9390,0.02335106 507,382.7980,248.3870,25.2140,49.9390,0.01954990 507,199.8830,232.6600,30.2760,54.9930,0.01407032 507,20.4722,179.4320,33.7183,63.7550,0.01062901 508,50.0001,231.7360,31.5382,65.8680,0.04420716 508,103.8630,225.3280,33.5300,58.2490,0.03996303 509,197.3580,226.5300,39.0200,58.6830,0.01310533 509,127.4400,241.5590,34.2020,70.5280,0.01305321 511,311.6240,186.1380,32.3020,74.5190,0.02077788 511,151.2330,196.0080,30.3220,56.9780,0.01236034 511,283.9100,194.6330,27.8100,66.0270,0.01018711 512,428.9190,206.5230,24.7970,51.0800,0.17166317 512,320.2370,204.9740,27.8230,57.1070,0.01880733 512,417.8820,203.3510,28.2260,60.1130,0.01694423 512,585.3360,201.9090,26.9310,53.0440,0.01037704 512,407.0240,207.0640,28.5730,58.9340,0.01030318 513,154.3880,186.1710,44.7510,90.4160,0.33374283 514,430.2840,191.4620,44.4750,95.7300,0.68096060 514,269.0060,250.6810,60.9300,159.3820,0.05635527 515,455.1190,207.1580,43.1950,90.7200,0.66784912 515,2.0592,136.4260,39.1904,220.5560,0.05293618 515,611.4960,208.3190,26.4070,103.0560,0.03312980 515,297.3440,283.3750,59.2310,138.0750,0.02402737 515,591.7210,218.8400,29.6600,73.7530,0.01445961 515,3.6504,229.9190,38.9095,222.9020,0.01322092 516,449.0170,194.4650,44.4240,94.4450,0.64112478 516,1.1638,131.2320,41.7252,228.5330,0.09609067 516,596.8570,208.1020,31.0080,76.7800,0.03511328 516,3.6214,236.7110,41.6208,188.4350,0.01865667 516,1.0000,211.2510,34.7928,116.6350,0.01843785 517,487.2530,198.1950,40.6730,86.3650,0.72426116 517,42.2519,126.1030,87.3211,253.2560,0.68574053 517,611.5010,206.6290,27.4000,90.8210,0.01103344 517,70.8278,152.3120,42.6272,116.1530,0.01044511 518,22.7411,207.5130,111.6069,271.7340,0.83765221 518,184.6380,141.2460,74.3910,220.9150,0.72924697 518,568.9220,199.2500,40.5880,85.3930,0.67829663 518,46.7601,195.0540,89.5109,167.1780,0.01153714 519,355.0690,212.4000,87.1620,243.8370,0.68935579 519,329.3960,162.8000,60.2240,161.6370,0.40423590 519,363.8420,361.0380,37.8660,94.2150,0.02556830 520,442.2860,176.8170,59.1750,157.6590,0.79870856 520,225.7300,169.9970,38.6640,96.5810,0.03572848 520,608.0690,253.2620,31.9310,156.2600,0.02602892 521,469.0180,179.3830,56.8230,154.2520,0.78935182 521,260.1320,171.8690,37.3640,107.3640,0.01010862 522,486.5770,179.7770,59.9430,156.9810,0.82629108 522,272.0410,178.8060,39.9410,92.5680,0.01265753 522,500.8770,182.4000,40.1540,94.2180,0.01221205 524,560.3220,201.8870,35.1490,80.6800,0.07572516 524,516.6050,240.2380,29.4950,60.6080,0.02777409 526,600.2250,260.4090,26.5540,62.5670,0.01964883 527,596.6280,136.9430,29.1480,72.7190,0.01872828 527,92.4707,187.8170,43.6653,76.7720,0.01027007 530,367.0630,145.3520,31.1810,76.7480,0.01082417 531,384.4720,139.2830,42.7320,108.4450,0.02069104 532,49.4314,94.9079,32.7730,65.4561,0.01061641 534,231.9570,193.4670,29.6840,65.8940,0.02408404 535,44.2062,233.8470,25.7517,47.7180,0.01936018 535,489.7560,226.6810,22.7700,41.5370,0.01880757 535,569.3190,220.9370,26.5030,72.9730,0.01596142 536,239.6440,211.2480,22.9980,46.2440,0.03011577 536,512.9580,219.7250,58.1890,138.0600,0.02370368 536,340.5350,218.7380,24.2580,44.7920,0.01809993 536,490.7360,189.5350,33.8310,105.0320,0.01355781 536,199.9370,231.0780,22.4650,42.9680,0.01171037 537,172.7630,226.8220,28.1810,56.0950,0.10115258 537,225.8640,210.5940,21.1090,43.5870,0.06515574 537,385.0130,226.1480,30.5100,61.5900,0.02049719 538,259.6130,226.3210,23.0590,47.8460,0.07373062 538,249.2650,226.3330,21.9950,44.9400,0.03715523 538,363.9630,223.5270,23.6880,43.0200,0.01811263 538,427.2810,240.9780,40.3860,94.6920,0.01668762 538,180.3900,248.7660,27.3310,53.2660,0.01128649 539,321.9040,190.9490,21.8530,46.7310,0.09665896 539,328.9370,189.3920,30.1420,60.2990,0.02624481 539,442.1960,183.4140,22.8400,42.3560,0.01811601 539,266.5820,196.2380,86.2480,49.9320,0.01301478 539,556.4530,210.5540,32.3030,70.4250,0.01019097 540,577.5030,197.4130,24.5600,52.3780,0.05644659 540,496.5720,221.2450,22.5800,41.6120,0.02600790 540,60.1657,232.8050,24.1709,37.0770,0.02012423 540,399.7100,213.9450,147.6210,49.6350,0.01480331 540,468.2820,211.6920,37.6860,65.0180,0.01055848 541,609.3760,211.6010,27.7470,71.6270,0.06694783 541,585.5760,259.1600,33.6170,82.0840,0.01521734 541,104.1720,174.4870,26.0150,51.6390,0.01270316 542,585.8320,219.9080,21.6540,42.0470,0.02523704 542,34.7201,181.8600,23.3084,44.5800,0.01075013 543,3.8168,161.4250,22.3251,45.4870,0.02191890 543,45.7570,151.6370,30.4754,76.5390,0.01916514 543,551.5810,229.8040,20.1700,36.9040,0.01709373 544,466.8570,232.8380,19.8890,37.6140,0.11831041 544,502.3410,235.5540,19.2040,35.3460,0.02004966 545,341.0090,229.2720,20.9500,39.6710,0.14625642 545,524.1720,227.0930,27.6670,62.3430,0.02127173 545,386.7990,229.8950,20.7790,37.4030,0.01979497 545,352.5780,231.9890,19.4750,34.3580,0.01132623 545,286.4460,225.6930,193.3530,50.4440,0.01028132 546,228.3900,225.0560,22.9830,46.0930,0.52949059 546,512.5580,220.0890,21.7630,42.0490,0.01642673 546,282.8480,224.5820,20.5060,38.1230,0.01209663 546,196.0860,219.4920,191.6960,53.4760,0.01090123 546,315.3010,222.2750,21.6750,40.8450,0.01051721 546,238.0850,227.0050,21.3620,41.7860,0.01043195 547,176.7850,227.1510,24.4770,53.6150,0.75370121 547,508.8380,100.0770,24.0470,46.5000,0.07959936 547,248.8630,225.6080,21.8410,41.3190,0.01778096 547,215.8170,221.1000,21.7610,43.6470,0.01586827 547,46.1358,233.2360,26.4935,48.7170,0.01560869 547,190.7550,230.0340,22.3900,48.3740,0.01104485 548,117.1560,224.5380,30.1020,67.6260,0.87591207 548,193.6090,216.7580,20.9560,44.2390,0.02640746 548,230.8360,220.0530,21.9000,43.6260,0.02297312 548,489.2140,214.3670,29.0310,73.2580,0.01948244 548,138.8300,218.0840,196.9430,49.6960,0.01929476 548,1.0000,221.8290,24.3400,58.0200,0.01740213 548,548.5070,227.7010,20.0170,37.0510,0.01528715 548,591.0290,212.1210,25.0790,48.2720,0.01498834 548,420.4360,222.7370,21.1810,40.0200,0.01422926 549,34.2714,227.5010,39.6160,89.3470,0.80952102 549,586.9660,220.7450,19.2680,39.4700,0.11582578 549,618.1740,218.5330,18.9020,42.2520,0.03690549 549,222.0110,218.4480,22.0960,42.8610,0.03288904 549,180.9810,215.7720,20.5330,43.9430,0.02814441 549,117.7420,219.5500,209.7330,51.0780,0.02307705 549,45.0520,263.3730,29.9747,56.1340,0.01782684 549,162.4270,217.5660,21.5180,42.2370,0.01364455 549,131.0420,214.1310,102.3200,48.7470,0.01217014 549,147.0360,217.5040,22.0310,41.5250,0.01140812 550,199.4490,216.4750,24.8830,53.5840,0.27982885 550,109.7360,213.5490,24.7950,50.6130,0.17955585 550,138.1960,210.3240,23.0230,48.5880,0.06736019 550,106.3750,213.7330,150.8810,50.1620,0.02683022 550,163.2810,212.4870,20.7610,41.8060,0.02092944 550,178.3840,215.3390,21.7370,41.2170,0.01156102 551,78.0926,214.5840,28.5494,62.2080,0.09522417 551,34.9210,207.8540,25.9671,53.4750,0.05124398 551,5.3158,204.0260,24.5633,51.0570,0.04352165 551,576.3420,207.8000,26.1350,53.7120,0.01855032 551,528.7370,224.0560,24.6890,45.3150,0.01710847 551,88.0066,211.7410,25.7994,51.6110,0.01650846 551,1.0000,203.9000,119.8270,60.2640,0.01195283 552,395.2330,213.6300,25.6410,52.9360,0.04166151 552,8.0046,214.9660,25.4304,50.5990,0.03283684 553,487.7860,248.9980,25.1110,47.5040,0.02130320 553,457.8790,236.5570,22.6610,42.2970,0.02109200 553,137.6340,206.5850,31.4490,56.2990,0.01793100 553,584.6570,248.4600,22.8570,36.6900,0.01537623 553,75.4183,216.4520,29.2577,53.0580,0.01063273 554,111.1000,230.4930,28.7610,58.4120,0.02591389 554,315.9580,225.1220,22.1300,36.7780,0.02589269 554,537.4630,230.2960,23.4250,46.0620,0.01982140 554,458.4300,232.4150,21.6630,36.2050,0.01066983 555,2.7410,192.5540,30.2089,67.8990,0.10921699 556,253.2630,201.3350,29.1340,60.6750,0.20478834 556,599.9960,217.4890,25.4420,46.1620,0.04188603 556,153.2210,209.8570,24.2710,45.0650,0.01778662 557,598.4900,197.2870,32.1610,68.9310,0.11355577 557,208.6480,205.8920,31.2940,64.9030,0.07049840 557,536.0810,210.0360,22.3060,39.9910,0.03769607 557,613.7610,205.2040,20.9280,58.2910,0.01355027 558,536.6190,206.9490,32.9070,64.7060,0.06643179 558,304.2980,191.0820,27.2290,59.5460,0.01613618 559,15.2419,207.5980,60.6808,151.8360,0.74699050 559,607.6370,194.0240,28.0070,65.9690,0.03850628 559,483.7800,208.7560,22.0780,44.3210,0.01588408 559,20.8611,211.2340,43.7859,88.7100,0.01440622 560,328.0340,199.7440,52.6350,115.6480,0.06117763 560,493.9540,210.7910,30.1480,66.2420,0.01301144 561,419.7930,218.9880,33.1240,69.7970,0.02002752 563,445.6460,230.6250,21.0790,38.4910,0.01743256 563,525.1780,218.7000,33.1200,73.5380,0.01482238 564,384.5320,225.6340,22.0240,46.9940,0.05376564 564,427.6660,224.8760,25.7500,57.6440,0.01572669 564,536.9610,56.8141,29.5070,62.4029,0.01319409 564,532.5080,206.4140,54.7870,121.1660,0.01307576 565,561.6530,203.8930,24.0900,53.5740,0.03182054 565,387.1810,225.5140,19.5330,37.8390,0.02686558 565,371.1900,225.7120,20.4040,42.0250,0.01679890 566,403.4720,218.5610,24.5680,58.1900,0.31643203 566,596.5980,194.2810,27.8720,60.0170,0.04737045 566,194.3870,226.7480,21.7310,38.0930,0.01467451 567,441.9050,216.9400,19.1760,38.9740,0.18645723 567,458.5390,213.7880,44.9560,102.8530,0.05779281 568,393.4470,208.7380,55.2630,141.9210,0.20801271 568,453.7640,205.7290,57.0470,131.2260,0.01743656 568,273.6270,203.3240,20.2130,34.3390,0.01135073 568,88.8363,268.6650,36.9157,81.1600,0.01129595 568,613.7650,199.6070,26.2350,127.4290,0.01059228 569,514.8850,223.0380,28.8780,65.1510,0.83261698 569,438.0710,226.2740,52.0120,129.1120,0.07846710 569,444.5450,225.9250,33.8140,75.9640,0.01692957 569,362.4580,218.4680,21.6840,43.7920,0.01255316 570,574.7470,217.7160,31.7680,80.8610,0.85363370 570,515.2860,221.6140,62.8140,152.7450,0.02730556 570,377.9790,221.0470,20.9600,39.1120,0.01699627 571,509.7330,208.8080,58.7100,142.1020,0.07237604 571,449.7860,207.6120,40.9150,91.5220,0.01253697 571,393.2850,213.6220,25.3080,47.4200,0.01183621 571,284.3490,202.3440,21.7760,37.1460,0.01072803 572,566.4370,222.7730,62.0690,159.7030,0.05915040 573,499.6920,211.8170,72.8540,171.3050,0.03688143 573,74.2440,212.6870,24.0377,46.1580,0.01188494 573,511.5730,217.7700,39.8800,87.0020,0.01149153 574,1.6469,209.7760,32.1607,84.7340,0.03964479 574,250.1140,207.8640,19.9930,35.4050,0.02104864 574,473.3590,30.9651,31.0770,56.8332,0.01481207 574,420.3980,203.0860,29.5950,57.5630,0.01214308 574,263.9550,223.9850,20.9110,32.1940,0.01083790 575,255.6990,211.1600,23.0590,40.9550,0.06571049 575,13.2084,211.2710,31.6867,58.1940,0.04897328 576,258.4920,204.3090,22.5910,48.1630,0.23222144 576,585.4880,203.6240,30.8260,59.6280,0.15272446 576,88.6189,202.2280,26.1361,46.7240,0.05135225 576,250.0750,198.5740,22.0290,45.0850,0.01973522 577,20.2903,200.3200,28.8059,56.3160,0.18202843 577,264.2530,197.7610,24.2580,42.3930,0.11464620 577,459.8670,204.1740,55.6540,141.1840,0.05620921 577,468.1900,197.8670,36.1710,84.3610,0.01109305 578,269.0150,200.7440,23.1500,43.0910,0.38453525 578,419.3570,214.8010,32.3940,71.6510,0.07317401 578,494.8100,211.9820,60.6910,138.2070,0.03091976 578,338.7050,190.1340,24.5020,45.2800,0.01834984 579,283.2390,198.6310,22.0160,46.6180,0.46196985 579,309.6850,228.3060,28.6770,48.0710,0.02325898 579,347.0010,183.0880,28.0260,56.9180,0.01427471 579,428.3410,193.7050,37.4460,83.6500,0.01254446 580,300.4510,199.4740,23.5540,48.8760,0.45110679 580,446.6580,191.1560,24.0150,48.0410,0.07602703 580,317.5430,230.2000,27.7400,56.4480,0.01773229 580,535.5570,103.7260,26.7800,53.4770,0.01161780 581,316.9060,195.8170,29.0260,57.9410,0.10849109 581,403.6090,178.5250,41.2380,101.9610,0.07549977 581,461.7890,190.6860,28.6160,60.5600,0.04887289 581,370.5850,188.1240,20.5700,40.3720,0.02461641 581,363.4020,194.7810,21.3300,37.7990,0.01705859 581,441.9080,216.7790,24.6630,47.8490,0.01273031 582,349.3450,200.8190,29.4770,67.1310,0.64874279 582,496.7420,191.6530,21.2570,47.0950,0.04871747 582,405.3240,192.9090,22.9480,49.5040,0.04280171 582,526.5290,208.5890,34.8010,70.9960,0.01502163 582,385.1430,186.5790,22.5090,47.6550,0.01157813 583,388.0130,232.1880,29.7350,63.0900,0.16594476 583,526.6740,220.2390,21.7020,48.8590,0.08238457 583,274.0720,211.6310,23.3900,45.1760,0.02557880 583,459.5610,231.4110,28.0580,65.1810,0.02429354 583,436.0060,221.4420,21.6870,41.2670,0.02320525 583,465.9570,233.4710,54.1520,115.6620,0.01393285 583,569.8260,197.3350,69.5450,172.5930,0.01215710 583,404.9920,236.9520,23.7100,52.6080,0.01004608 584,437.0590,206.5200,28.9630,70.3550,0.43935657 584,523.4660,209.3250,26.7240,55.4490,0.38539499 584,282.4590,178.3520,26.4690,50.2990,0.02557561 584,560.6240,192.9580,26.3660,60.0920,0.01854635 584,453.5730,209.9520,28.5000,66.2560,0.01471552 585,505.3130,201.6180,40.1110,102.6570,0.46458465 585,596.3020,199.2020,31.2430,62.5590,0.17341515 585,275.5760,172.8440,23.4660,45.2780,0.01932479 585,425.7960,183.1110,24.1250,49.8380,0.01288614 585,480.6900,192.5210,21.0880,42.0800,0.01277952 585,495.4110,201.7420,31.8950,83.0650,0.01071303 586,606.6430,211.7330,30.9550,90.0630,0.70349097 586,329.6460,205.5140,22.8850,43.5670,0.10297710 586,511.4040,201.8270,21.2890,43.3090,0.09940300 586,330.5820,181.7190,25.6360,54.5860,0.04787244 586,177.7700,174.9580,27.4740,51.5880,0.02313375 586,269.2570,181.4920,26.9040,51.2650,0.02313345 586,523.0400,202.1390,20.8450,43.5210,0.02226894 586,512.2190,199.3370,43.0740,53.6360,0.01100282 587,272.9290,180.2450,28.9060,60.0520,0.07414801 587,369.3570,210.9270,21.9850,39.2750,0.03691056 587,577.2530,204.9990,34.6960,55.5840,0.02005392 587,608.8800,93.6052,28.9540,68.6188,0.01841532 588,543.5600,199.8580,25.0100,53.5060,0.30805457 588,206.5470,179.0400,29.8660,62.3620,0.05343773 588,342.3910,182.5890,25.9120,50.3400,0.04338955 588,569.2830,198.3550,22.7480,45.3300,0.03316262 588,547.6490,185.4450,35.6500,60.3770,0.01541313 588,336.9120,178.0280,40.9500,82.3420,0.01349840 589,228.4360,210.0840,30.7890,64.1170,0.27576879 589,458.7630,207.5720,22.5730,51.0550,0.12528603 589,480.6250,208.2930,23.0380,42.8890,0.02936862 589,447.2290,205.3890,27.6280,60.5170,0.01664053 589,462.6860,205.7190,47.4080,52.7780,0.01263561 589,26.3638,182.0980,29.8745,65.6080,0.01225725 589,139.6940,165.2190,22.3160,40.1000,0.01073727 590,410.5700,173.9110,25.3910,51.8520,0.05022023 590,311.7000,213.2860,26.0500,53.1920,0.03233645 590,290.6480,216.9550,22.3850,48.3890,0.03175581 591,2.2793,201.6530,28.7848,74.9580,0.12495744 591,18.3951,204.4160,36.7279,87.7710,0.03908764 591,590.7470,213.1510,26.9020,61.2890,0.03420601 591,536.4040,187.6090,23.1320,45.6910,0.02341444 591,510.2320,210.7520,25.4530,45.7540,0.01439567 591,82.4167,160.8250,26.0283,58.7110,0.01259218 592,474.3660,214.6380,20.1730,40.4150,0.20893499 592,407.6340,186.4060,23.3350,47.3250,0.02761995 592,513.4590,188.5070,30.1010,75.6550,0.02095993 592,458.5710,213.2820,20.4550,37.9320,0.01057789 592,465.6350,209.8880,43.0210,50.5920,0.01031841 593,452.9590,218.3430,23.3070,47.1250,0.52018911 593,67.5856,209.5380,26.4361,50.0480,0.25223613 593,504.3300,211.1840,25.6420,55.7710,0.23810846 593,527.9380,210.4970,27.6350,62.8940,0.04924843 593,99.6088,211.0250,23.1342,44.7630,0.03459188 593,426.1810,215.5440,20.7660,38.9490,0.03020859 593,375.7870,188.3780,23.6150,47.3210,0.02203375 593,343.8800,207.2220,23.3090,46.8620,0.01558495 594,490.0210,217.9260,23.4140,53.7760,0.55818701 594,559.6630,216.3320,22.7540,56.4840,0.46544975 594,437.8080,212.6750,20.5990,39.0200,0.16516440 594,585.2940,227.1010,21.5540,47.9550,0.14583994 594,47.9633,207.3370,24.3801,52.1050,0.11186424 594,550.5490,216.2050,21.4620,53.2370,0.08107876 594,11.0635,210.4430,24.2407,51.1780,0.05859680 594,26.9114,216.3150,20.8227,42.8670,0.03992430 594,344.6820,203.7920,24.5390,46.1450,0.01689433 594,584.2710,170.5850,24.2160,49.1470,0.01652764 594,1.0000,203.7930,213.9980,48.2020,0.01531295 594,570.2480,215.4220,28.7920,60.2160,0.01361678 594,83.3519,207.1800,22.5821,44.5900,0.01329422 595,566.0850,211.0530,33.0040,74.0310,0.84330243 595,468.8110,210.5980,21.2860,43.0590,0.35113323 595,66.2315,197.7710,23.6922,46.8680,0.02977714 595,493.9900,93.6796,23.4240,44.8164,0.02973156 595,421.9800,160.2640,31.2140,77.2820,0.01477890 596,514.4580,204.0320,23.0600,49.6740,0.54626662 596,33.0710,201.6230,22.2158,50.8160,0.30205572 596,18.9050,203.9970,20.5241,48.1910,0.04529928 596,1.3084,210.8810,21.5214,46.4800,0.01434710 596,4.8565,203.0030,52.9231,52.5420,0.01346359 596,172.6120,197.6990,21.0250,39.4710,0.01339444 597,570.2860,204.9890,27.6320,60.7910,0.70226103 597,486.4550,152.3640,29.0280,72.6680,0.02820382 597,613.5400,190.2950,26.4380,66.0420,0.01871625 597,335.4230,57.9536,26.1310,57.9064,0.01376206 598,122.1630,190.5900,21.7920,41.8090,0.14062011 598,76.6252,185.2580,21.3858,40.4280,0.02459913 598,154.1030,188.7800,22.0600,38.5620,0.01206417 599,83.6718,188.6430,23.8352,49.2470,0.18945709 599,504.5910,176.8710,22.0500,48.7070,0.04505434 599,128.4470,181.8150,26.4340,47.7660,0.01935473 599,51.9876,183.4110,20.0973,38.4410,0.01812077 599,608.5500,162.5440,24.0650,59.3790,0.01529120 599,6.9981,175.1440,204.9679,51.1190,0.01459596 600,33.1697,204.5700,28.5018,57.3670,0.37010896 600,114.8590,194.3340,24.2660,50.7340,0.03121112 600,26.4538,196.0910,25.1088,56.3740,0.01335834 601,69.1004,141.2180,31.8879,64.1610,0.01319719 601,161.4220,158.1150,21.1900,38.9840,0.01168495 602,21.7632,197.1790,36.6130,74.2050,0.05259704 602,132.8310,213.3360,79.0900,44.2850,0.02055806 602,169.6580,217.8020,19.7970,34.1520,0.01697162 602,84.7721,206.9540,163.8499,51.1700,0.01265146 603,115.4170,214.4910,20.5940,39.1990,0.07177293 603,146.3990,214.1620,19.8700,36.9010,0.01565744 603,80.0772,199.2620,23.6288,42.8780,0.01547650 603,54.6697,202.1760,158.7493,51.1820,0.01156274 604,80.8126,222.1780,20.4964,41.4770,0.23534189 604,118.6440,215.6570,20.0010,41.3230,0.09984367 604,515.1560,50.7729,21.4240,48.6807,0.04809802 604,480.7760,184.1910,36.2750,79.7500,0.04102079 604,146.4810,216.4810,22.4900,41.8070,0.02153770 604,90.1698,219.7520,20.2212,40.8800,0.01682314 604,49.9178,214.0490,151.9272,50.0960,0.01392612 605,24.5806,229.1820,30.1920,60.9810,0.55630273 605,84.4831,233.0990,21.5399,40.9520,0.13117361 605,498.2910,232.3300,21.2200,40.6990,0.05588479 605,123.6220,223.2960,22.9890,44.6570,0.02491920 605,105.8060,220.9770,20.8940,42.6300,0.01658192 605,387.6310,231.8060,21.7060,39.7150,0.01105562 606,25.4504,224.2780,24.8624,50.0210,0.22627419 606,81.6608,212.5370,24.8632,50.3990,0.02013320 606,578.5970,271.6740,34.4390,72.4370,0.01480790 606,32.5900,212.5510,25.0917,49.5330,0.01379640 606,73.7633,214.2640,23.3545,43.2640,0.01208920 607,419.4250,208.9560,19.3970,38.5440,0.03294576 608,434.8650,201.9610,19.2010,42.0380,0.17784230 608,452.7970,202.6780,19.1950,40.9980,0.17409125 608,89.8503,193.8410,21.9157,47.4560,0.04845128 608,442.8920,201.6840,19.7430,43.2930,0.04015649 608,123.2320,196.6890,22.1700,42.5290,0.03227127 608,391.3280,197.9000,25.2820,54.7360,0.01878322 608,476.2720,206.1080,21.2880,48.4640,0.01799820 608,578.5010,201.1940,23.2860,49.0780,0.01480706 608,211.2880,183.9980,19.8690,31.5280,0.01270016 609,543.8250,205.6880,23.6970,53.1820,0.66779900 609,486.5280,203.1140,23.7950,50.5880,0.29446948 609,5.0585,195.8270,28.3799,59.7700,0.09558070 609,469.2290,203.3380,22.7660,54.1400,0.08692142 609,16.4397,195.0960,30.1074,61.2900,0.01770161 609,81.0922,201.4980,21.1578,44.0470,0.01546061 609,56.5281,173.2930,27.2147,54.3330,0.01336857 609,196.4150,181.8040,21.1990,34.3120,0.01118059 609,358.7510,182.8050,25.4280,52.2170,0.01107623 609,477.8320,198.6300,43.1230,67.6040,0.01094147 610,541.9070,196.5210,25.3660,61.0340,0.75189692 610,520.0580,201.5990,23.9750,58.3140,0.70588130 610,11.1870,197.0740,27.3597,57.7160,0.25000748 610,444.9310,200.6490,22.1340,44.8320,0.15489842 610,65.1911,189.7680,21.6068,41.0270,0.10139947 610,411.8770,194.0030,24.7210,50.9710,0.02202671 610,55.5582,188.4150,22.2211,43.5610,0.01318123 610,367.9590,177.7480,29.8440,72.1260,0.01267374 610,3.7067,190.5520,91.9659,68.4430,0.01252507 610,178.8790,183.0700,22.1590,35.6380,0.01140144 610,129.0870,170.9370,22.9910,43.3140,0.01010294 611,597.5580,203.7280,29.0360,75.9490,0.75867200 611,431.4940,198.0930,22.5680,50.2800,0.27854666 611,615.8810,199.2400,23.0360,76.2710,0.24876551 611,20.1362,188.8160,22.6611,42.3540,0.09169920 611,33.2959,190.0590,21.9475,43.4490,0.02046099 611,469.1400,170.8680,28.3690,71.1530,0.01846235 611,483.7030,210.8830,23.9060,51.7890,0.01201967 612,527.9350,204.8110,24.8370,54.1030,0.68613660 612,449.8030,184.3350,28.6890,72.1190,0.26090488 612,454.0180,68.5518,28.8210,71.1422,0.14065845 612,148.0320,179.8360,22.8040,40.7450,0.04174904 612,478.6060,143.9950,31.5960,82.5320,0.03540269 612,372.9670,173.0360,21.4360,38.5790,0.01724070 612,3.2067,187.0550,21.6863,44.7780,0.01258350 612,503.6780,166.5360,24.5090,59.1830,0.01142140 613,475.4820,233.9660,27.4970,62.7130,0.78493989 613,574.0780,247.3400,30.2270,67.5390,0.73491645 613,381.7040,219.8430,21.9020,40.0830,0.06350460 613,136.7960,232.9910,23.8230,43.1370,0.01659770 613,413.6170,228.9240,19.3120,34.8660,0.01555521 613,84.1818,221.0900,23.8822,40.9190,0.01000344 614,501.4930,207.1250,31.3180,70.2510,0.86402100 614,430.0560,197.7730,19.3340,37.5260,0.09437520 614,387.2120,187.6330,21.2470,42.5720,0.08734983 614,120.2760,194.6520,25.0220,48.6870,0.01388658 615,557.6600,217.1280,36.0640,84.3380,0.85578555 615,400.4130,195.3420,21.4440,43.2740,0.32859570 615,461.0460,206.7900,21.4470,44.8040,0.23518902 615,52.1163,199.4720,24.4169,51.0760,0.06032092 615,43.1950,177.2810,29.5846,65.8590,0.01165734 616,523.6600,211.8890,27.2800,62.2020,0.60497427 616,424.1340,200.4890,22.2700,46.5400,0.43088159 617,455.6690,210.7100,22.6020,47.7450,0.57619077 617,377.0550,208.7170,20.4200,38.3040,0.02595692 617,446.7980,206.8150,22.2540,48.2990,0.01292819 618,603.0580,210.8600,22.5260,51.6690,0.08317001 618,495.9750,216.6460,21.2420,40.4150,0.04429711 618,444.1620,84.3103,33.9190,80.4077,0.03669079 618,390.7290,206.6780,20.6830,39.4570,0.02110564 618,138.3160,210.4970,19.5710,35.2890,0.01916109 618,617.3950,203.6150,21.3360,63.5870,0.01355966 619,585.7270,207.4880,25.6390,60.2600,0.45588729 619,105.4930,203.5860,22.9520,47.3460,0.40672734 619,573.5490,210.0890,25.0560,58.7780,0.35663673 619,10.4034,212.0390,23.5417,51.5240,0.10283078 619,546.7240,202.6740,19.8640,45.0980,0.02654085 619,566.0130,210.8420,21.6170,49.5820,0.01841612 619,554.7460,210.1320,19.6050,38.5310,0.01035465 619,412.4220,205.4720,20.5650,36.9940,0.01007892 620,41.1805,207.8000,30.0678,59.8860,0.61259329 620,501.5810,212.1460,33.1500,80.4260,0.04068328 620,618.2530,205.6190,19.2260,45.7780,0.02067980 620,285.2770,203.4820,18.8390,35.4650,0.01764318 620,512.1900,212.6720,22.1130,45.5920,0.01163228 621,490.4930,36.9001,26.7940,67.2099,0.03782104 621,456.8010,216.0610,20.6530,45.4470,0.03321305 621,286.6920,204.0520,19.3260,33.1580,0.02595970 622,503.9570,212.1610,24.9280,54.6290,0.17726026 622,296.5130,215.5380,20.4230,34.9150,0.02298414 622,545.2550,213.4330,22.8000,42.0780,0.02233120 623,584.1930,212.3380,28.8510,65.6250,0.50194019 623,576.8130,216.5560,39.3540,104.3960,0.11570603 623,275.7720,217.1510,20.0000,32.8930,0.08484140 623,595.3560,92.9876,33.5870,83.9164,0.06142793 623,303.6630,210.9840,17.9970,31.7870,0.02602558 624,92.6116,215.4300,22.0534,46.0880,0.09690398 624,283.3160,218.3220,20.4820,31.7460,0.04425672 624,326.4640,214.8370,19.9260,32.7950,0.01146155 625,48.4079,214.7580,26.4869,53.5570,0.20427208 625,436.2930,215.5040,20.3630,38.5600,0.11141807 625,288.2270,217.2080,21.5890,34.5590,0.05301992 625,341.4290,214.9010,21.3550,38.0420,0.01605718 625,203.5650,213.2250,21.3200,34.9010,0.01245346 625,54.5284,170.4220,30.5737,57.3640,0.01154329 626,466.4880,212.4490,20.3230,42.6750,0.37951291 626,161.9930,209.6710,21.0750,40.7000,0.10653297 626,285.3750,216.6690,21.2540,35.1800,0.04329508 626,395.7000,205.6200,20.6680,38.9880,0.01813488 626,154.6520,197.0800,22.9720,50.7600,0.01690874 626,101.2400,174.6050,31.2150,72.2050,0.01587394 627,523.4390,217.2850,25.8810,54.9540,0.68938243 627,98.0799,221.7590,24.8161,46.3040,0.13653806 627,39.3888,213.7190,24.8621,46.4380,0.07711236 627,124.1870,196.7150,25.4180,54.5320,0.06358512 627,569.9790,104.8740,37.6590,74.6620,0.02850858 627,305.5580,201.3380,161.6390,48.6570,0.02769914 627,275.4150,215.0440,21.8550,35.2120,0.01848651 627,334.0370,204.4380,20.0240,39.6790,0.01458380 627,453.5940,272.3920,21.0420,34.4900,0.01274599 627,512.6750,209.2060,48.0960,69.7450,0.01064053 628,436.3500,210.0330,23.4240,53.1360,0.25059530 628,164.4250,191.2210,19.5940,38.0300,0.03536498 628,518.2090,201.2610,33.9290,92.9050,0.02881619 628,337.7280,194.6710,22.1810,45.7330,0.02154978 628,271.0930,204.0300,22.7830,36.8890,0.01532019 628,499.0720,196.3350,21.2480,41.0070,0.01118138 629,153.0340,195.2060,21.0360,38.3520,0.08522213 629,353.9260,191.2510,23.3320,51.0910,0.04178623 629,282.6330,205.0900,22.1310,35.6140,0.04123074 629,123.1740,195.6290,21.0110,42.0730,0.02790309 629,333.5300,179.7700,164.3070,59.1300,0.01018603 630,92.5673,192.8710,22.5317,52.7830,0.17639832 630,476.7670,194.4940,19.2680,37.3620,0.10106686 630,139.5770,198.7470,20.1430,37.5160,0.09926100 630,85.5772,195.5990,19.9658,45.8790,0.04927832 630,558.1400,194.3700,22.0130,47.5310,0.03531954 630,532.4420,204.3460,41.2280,101.5010,0.02681979 630,450.6700,188.3630,20.5380,45.6690,0.02447846 630,291.2870,201.3670,21.1040,32.6190,0.02066471 630,76.7226,197.3520,19.7464,43.9390,0.01570455 631,472.6050,179.4730,21.3620,38.1860,0.07887645 631,331.1840,164.2460,23.6780,48.7710,0.04337715 631,547.4230,173.5630,22.1570,42.2510,0.03312394 631,410.3780,161.4870,24.7940,55.7450,0.02122346 631,117.1780,173.4320,22.1150,39.4310,0.01987333 631,400.4360,161.5290,24.3720,54.4160,0.01596433 631,195.6440,168.1690,20.5290,35.6810,0.01571116 631,329.9040,170.1350,285.9970,55.5920,0.01192391 631,27.2415,177.4960,21.5073,45.1040,0.01181198 632,559.5820,209.1120,26.8800,59.2940,0.19970781 632,97.9892,211.8990,24.2048,43.3410,0.19208252 632,475.7600,190.7830,30.0840,75.4450,0.13826813 632,425.3900,192.4460,28.0710,67.8040,0.03323143 632,607.2290,24.4189,27.3140,71.5824,0.02874606 632,585.4940,206.6410,20.4850,42.4820,0.02128920 632,308.5520,207.1750,19.2660,28.7520,0.01555457 632,502.6180,199.6300,137.3820,54.5470,0.01419999 632,502.3840,108.1670,22.8760,41.7090,0.01273142 632,457.6340,190.8720,29.5730,76.8260,0.01110998 633,49.0637,199.8330,30.2606,65.9100,0.29293400 633,511.8690,206.7170,27.6170,61.2400,0.05797617 633,583.0210,200.3980,38.2800,95.2130,0.04147153 633,510.5870,166.3750,29.6240,58.9760,0.02122808 633,182.4210,200.4620,24.2210,44.9500,0.01994002 633,307.1550,204.7500,19.6380,29.5360,0.01614960 633,615.6830,207.3110,20.6780,51.0410,0.01359271 634,551.5960,264.3660,24.6960,49.9190,0.03716439 634,535.2140,168.6830,28.5090,79.3360,0.01558584 634,117.6900,201.6100,22.0550,38.7550,0.01054316 635,75.7399,186.6520,25.1005,50.7560,0.04661612 635,606.4950,195.6650,23.2390,56.0410,0.02625368 635,584.7900,182.1500,26.3670,63.2410,0.02599738 635,130.8160,194.3070,22.4470,45.1900,0.01347994 635,196.7120,192.1090,22.3850,38.0870,0.01131173 636,409.5900,169.1880,26.2700,73.2650,0.07080165 636,477.0240,201.2180,20.4810,44.6820,0.06566256 636,604.0870,233.1660,21.3340,40.9900,0.05635805 636,73.4032,192.8260,23.1882,47.2530,0.01946866 636,146.8650,184.2910,26.9670,54.2970,0.01894726 636,273.5930,201.8170,18.9250,30.3880,0.01302359 636,172.3270,197.3570,22.2350,38.3070,0.01029527 637,5.7680,187.1470,28.5158,63.3640,0.03304504 637,263.6990,176.0600,24.7900,50.1900,0.01707930 637,394.9230,203.0360,20.3950,39.4710,0.01497300 638,407.8880,203.2200,20.1620,40.2260,0.19115657 638,564.6560,211.1050,46.9320,127.7590,0.10178016 638,579.5460,200.6910,20.9270,51.6680,0.04115978 638,57.2228,242.1000,24.6230,45.3850,0.02165863 638,151.7950,191.1360,37.5830,78.3470,0.01828383 638,265.1610,188.3680,19.7600,38.5070,0.01731132 638,568.4090,275.1740,27.4980,66.1930,0.01408610 638,382.0820,198.0290,19.9230,38.0960,0.01119397 638,597.4920,192.3870,25.9820,76.0020,0.01107796 639,430.7970,207.8930,19.4110,42.3410,0.27364343 639,405.3870,202.8480,18.7770,37.9520,0.05313496 639,102.2150,197.4650,26.2340,50.6520,0.04146896 639,134.8390,188.4410,23.8820,53.2110,0.01934647 639,561.5890,198.8300,21.9300,49.5540,0.01870279 639,421.9340,206.3360,20.5740,45.8440,0.01304365 639,587.5820,193.7310,24.1550,49.2800,0.01276857 639,529.8080,203.1200,19.6950,44.1340,0.01261909 639,397.4090,203.8820,18.8270,36.8910,0.01081738 640,474.1980,207.4700,22.9550,53.4460,0.43462417 640,436.4760,197.5590,22.7550,49.1520,0.09996018 640,106.7300,184.9910,26.7200,64.1150,0.05036246 640,65.3963,203.5100,24.4608,51.3320,0.03923336 640,222.2260,199.9120,19.2160,34.7640,0.01886468 640,21.0807,198.4760,199.5673,53.5060,0.01486602 640,261.3420,146.0770,33.5090,81.3850,0.01111813 640,614.8290,190.1960,22.6200,70.7890,0.01108933 641,546.6650,201.7120,30.4400,65.9460,0.79657084 641,61.9113,183.4890,29.3375,65.1600,0.11624400 641,2.2292,200.0140,27.5993,57.1730,0.05708217 641,226.4460,197.6640,19.7210,34.9450,0.03628943 641,493.2690,195.1460,23.3900,48.1670,0.03494663 641,484.1300,200.0190,20.8400,41.8140,0.02240626 641,615.5300,40.4959,22.4380,51.4398,0.01721738 641,574.7460,111.8750,29.7850,68.6250,0.01217432 641,103.3200,210.0100,24.2200,44.5380,0.01149321 641,51.2314,176.9450,28.8954,72.2090,0.01092495 642,425.8840,153.0880,35.8270,85.3490,0.06320328 642,74.6050,206.9860,24.2788,48.4210,0.03128617 642,227.7410,200.8650,20.4320,36.8250,0.02940971 642,559.1760,205.8190,25.7420,51.9630,0.02660123 642,1.1575,163.5300,30.5526,96.1000,0.02062067 642,22.9201,204.7120,24.4950,50.0970,0.01936759 643,69.5652,232.8580,26.0733,55.0130,0.07107899 643,229.2160,226.1800,21.9610,38.8400,0.03396844 643,306.1140,220.0900,20.2550,38.7730,0.03278248 643,612.6110,239.2030,22.8210,46.6050,0.02065937 643,23.1827,231.0570,27.1547,57.8680,0.02061846 643,412.4180,106.8740,27.4720,47.6820,0.01771083 643,8.7104,227.8860,200.2896,57.5520,0.01123885 644,166.7450,236.6220,22.6050,39.8810,0.19223180 644,228.6570,224.9090,21.1670,34.5350,0.02829251 644,440.6380,236.2400,24.0900,45.2640,0.02699811 644,70.5264,228.7840,212.1086,50.0970,0.01807651 645,158.6710,217.6930,22.7210,41.4050,0.25906321 645,228.7300,202.9190,19.2860,37.2270,0.04458674 645,114.8450,204.6590,21.9750,45.7610,0.02481060 645,106.2520,208.1940,22.0530,43.9710,0.02382144 645,438.5020,59.4505,28.8370,49.5765,0.01479794 645,79.4052,209.7250,149.0738,50.6460,0.01213000 645,285.8770,141.0490,35.6820,86.0340,0.01128322 646,111.0170,215.1500,26.0830,47.7930,0.44773719 646,52.8048,206.1820,24.3521,54.0620,0.23147628 646,63.6176,207.0680,22.3945,51.2500,0.11755618 646,210.8070,203.3800,19.9260,38.3260,0.08002172 646,55.5020,152.0830,33.6501,83.3560,0.04990772 646,431.9860,197.5500,22.6940,47.8600,0.02802256 646,439.4100,46.9173,33.8070,60.8527,0.02006436 646,120.2590,219.3880,26.3930,50.8130,0.01460473 647,60.2196,227.1780,29.2869,54.8740,0.49857756 647,39.5257,220.5750,27.6418,57.8190,0.18670376 647,50.3060,225.2660,27.1226,55.1850,0.06389252 647,449.2580,34.8511,31.1260,62.7036,0.05515094 647,180.6110,208.3410,20.8840,41.3950,0.05160769 647,452.2170,200.0690,23.9180,48.8790,0.01709050 648,459.2550,15.1586,30.8500,70.6073,0.02511245 648,146.6010,204.3110,24.5700,46.0770,0.01365669 648,252.3520,138.8460,35.1590,85.9180,0.01039781 649,423.5890,201.2810,28.0410,69.3050,0.02967925 650,508.3450,205.7140,25.7730,58.1690,0.66430724 650,330.0740,189.8210,22.4710,44.0210,0.01155251 651,424.7810,194.9740,24.4760,55.4900,0.02705297 652,360.1160,198.3270,20.5260,41.1290,0.01449737 665,299.4050,200.6920,19.2810,35.9990,0.02969064 666,324.6070,199.6460,20.2360,38.8050,0.03537257 666,473.8220,204.1290,22.0160,46.6340,0.01592711 666,609.5220,162.7620,20.1820,46.5690,0.01494923 667,362.6510,205.8920,20.0790,37.9600,0.04219217 667,345.6620,204.2140,19.7780,39.6080,0.03682581 668,403.4390,213.1890,22.5830,52.4110,0.52796203 668,426.1530,214.1840,21.1600,45.5050,0.29537642 668,204.3560,171.1280,31.3480,69.7220,0.01430386 669,532.3270,218.9920,33.8640,83.0720,0.80466676 669,574.7670,223.0970,27.9620,70.6460,0.53510869 669,564.7360,226.5530,25.6190,67.0320,0.07302533 669,548.7690,226.9120,26.3090,68.1560,0.03227706 669,585.8120,225.9870,25.6800,59.1570,0.01052042 670,224.0560,192.9800,25.1800,48.9530,0.03282295 670,229.9650,176.1820,31.3640,66.0020,0.01610307 671,331.3610,203.2350,20.8270,39.9540,0.01473925 671,242.8110,156.3620,30.3630,73.0450,0.01203707 673,412.9090,215.1540,21.4060,37.2860,0.04004522 673,164.3320,156.9230,39.6350,67.5160,0.02188798 674,573.7750,228.4150,27.5030,64.8840,0.38277313 674,555.1710,224.6530,28.1390,62.7260,0.08655209 674,416.0700,201.4090,24.3630,56.5290,0.02811679 674,584.1020,232.5680,28.5420,64.4950,0.01344842 676,566.3930,211.1410,32.1660,65.0420,0.02841485 677,351.9940,118.9360,30.6670,75.7610,0.02946589 678,152.3680,142.9540,50.6050,92.1980,0.02126923 679,327.3190,173.6480,23.7930,53.1410,0.02493118 679,134.0490,139.0350,52.6920,98.5000,0.01442513 680,334.4020,175.2780,25.5980,60.2690,0.06501422 680,334.8730,143.3990,31.1220,64.2800,0.01067548 682,355.3410,204.6410,20.6630,39.3070,0.08172972 682,436.9060,38.7928,48.0880,102.8222,0.01620461 683,395.3050,211.2990,22.9790,52.2560,0.42638850 683,523.2850,213.1670,22.8110,43.3990,0.01421861 684,527.4230,207.1580,40.6020,106.6210,0.70990729 684,523.5840,206.2250,26.8390,67.5960,0.05480766 684,610.1210,214.9250,20.9640,42.2240,0.03256213 685,435.4280,202.7110,20.8660,48.3350,0.23485440 685,415.8680,89.8257,31.1170,71.7363,0.02768119 685,484.0920,203.1070,20.1570,34.2150,0.02324164 686,540.0150,208.0070,30.9630,74.8330,0.85497135 686,570.8300,203.2440,24.2550,56.8030,0.68332791 686,550.3340,196.4090,37.6220,70.9630,0.01709879 687,514.2050,235.2070,19.9250,36.1630,0.01334817 687,520.5670,135.5950,27.6820,61.1000,0.01023627 687,459.3970,218.6160,21.8750,43.5270,0.01023584 687,1.8910,217.4600,22.3687,42.8980,0.01000727 688,536.9050,113.1930,29.7750,76.3230,0.04640441 688,487.8570,208.7730,28.3570,62.5070,0.03999042 688,524.5650,223.8210,23.1920,44.8750,0.03396014 689,585.4310,209.5800,21.7080,45.9330,0.04458634 689,299.3430,217.1900,20.1900,37.0080,0.03312764 689,595.5650,272.7530,34.1660,59.5730,0.02243406 689,595.0600,207.6040,22.0300,44.6370,0.02092179 689,452.0210,214.9500,30.1220,62.7900,0.01763458 689,405.0970,206.8390,28.5340,70.9720,0.01285091 689,568.0310,212.2480,24.7030,49.2040,0.01085152 690,436.1640,235.9140,31.2250,79.8010,0.12438236 690,598.4710,298.1010,37.4760,93.0290,0.04463149 690,565.8280,219.8150,32.6530,82.1550,0.03653697 690,486.4870,110.5400,27.8010,64.2200,0.02238978 690,222.4050,140.1740,28.2530,39.3050,0.01171026 691,534.9070,273.9050,29.1310,69.5940,0.01761863 691,503.8800,212.7270,27.6630,57.3390,0.01236719 692,615.4970,204.8850,20.1170,50.0950,0.03529969 692,615.8710,37.6645,24.1290,69.9225,0.01397216 692,574.8980,93.1031,29.3530,66.9719,0.01325811 693,571.1250,213.4320,20.0940,41.4070,0.06783713 693,420.3350,234.1660,24.3500,50.5850,0.03796777 693,586.7100,301.8700,37.4090,82.0140,0.03074539 693,587.4020,211.3190,19.6740,38.3700,0.02233851 693,560.3980,211.9790,64.3140,49.7380,0.01942293 693,515.4070,215.5200,21.9400,45.2570,0.01895964 693,49.9056,264.7330,32.3304,54.2630,0.01344039 693,280.7270,211.3240,21.4490,39.4630,0.01247676 694,592.1870,211.7620,21.1260,47.6630,0.04021663 694,507.1430,231.2560,33.2810,77.0730,0.02873698 694,430.4920,211.4880,18.6550,36.6940,0.02637303 694,160.3650,223.4490,36.2140,75.0680,0.02479450 694,468.1420,209.7310,21.0040,42.0390,0.01784237 694,473.8000,228.9310,27.8210,68.5050,0.01458443 694,613.3610,78.5156,26.6390,105.2794,0.01413923 694,562.1800,200.5670,20.3810,43.3040,0.01287547 694,472.9540,215.6700,23.4470,47.8920,0.01160101 695,553.8900,214.6590,21.5000,52.7370,0.25435713 695,478.1300,215.4010,19.2200,39.4520,0.17072627 695,612.0080,212.2130,22.9440,57.4120,0.08295114 695,407.0400,185.3700,24.7530,59.5250,0.07051916 695,592.2310,216.9150,22.5590,51.9270,0.04611307 695,602.5980,176.4650,34.4470,90.3860,0.04296937 695,603.2420,215.4630,21.1830,50.1290,0.03062159 695,578.1620,216.9940,22.6820,53.6400,0.01948923 695,456.8550,213.4800,183.1450,51.6680,0.01903232 695,569.1820,212.0490,21.4520,53.2490,0.01835425 695,543.4170,213.2130,20.3270,47.2330,0.01207806 695,489.7740,212.2280,19.1560,40.3120,0.01084526 695,576.5940,154.0620,31.5110,76.9040,0.01060790 696,559.2860,213.0020,24.5260,56.7600,0.52476186 696,552.1390,212.5170,20.7630,48.6520,0.09818639 696,555.9690,174.2100,33.4380,86.9830,0.02116648 696,487.9360,220.9040,20.9980,34.0990,0.01666588 697,398.8950,197.0130,27.5510,66.1250,0.20587438 697,588.9810,230.0160,22.1040,39.2850,0.01203202 697,605.7010,83.9127,33.4160,74.3223,0.01197681 697,520.7870,212.0490,21.6860,41.7000,0.01012754 698,472.6990,210.3860,26.0110,55.4450,0.01478052 698,576.0490,276.5980,29.5080,59.8150,0.01229976 699,537.6830,210.8180,23.1670,42.1270,0.01686767 699,534.0160,274.0790,28.7120,69.9120,0.01309291 700,617.7260,214.1280,20.9690,43.6760,0.01454516 701,485.4380,265.5360,31.6770,69.9550,0.08929645 701,528.9870,74.1577,37.5420,94.1343,0.01928748 702,1.0000,254.9650,51.8560,183.1500,0.10780268 702,523.0630,176.2130,23.5280,58.0480,0.05772069 702,9.1517,327.5360,40.7756,95.8800,0.01305715 703,82.1314,295.6210,31.7596,67.1890,0.07609963 703,556.3720,101.3810,32.4030,77.6840,0.01729856 705,601.8780,79.2315,34.1140,78.6215,0.01784818 705,175.6500,212.8180,37.7730,93.0530,0.01133904 705,522.0190,94.2668,30.6560,76.5162,0.01127779 705,576.4550,78.9016,27.7930,62.9814,0.01108959 706,190.4250,207.4020,31.8780,85.2560,0.04541481 707,430.2920,208.5100,19.2980,37.1560,0.04620881 708,404.0860,153.4550,31.3110,74.6580,0.08835693 708,469.8720,211.7910,20.7900,42.8270,0.05242555 708,503.6450,215.7480,20.0460,41.8690,0.04238748 708,353.8610,220.0060,22.2150,47.2030,0.03427593 708,467.6490,215.1500,70.8300,46.6660,0.01560642 709,612.7750,220.2010,22.1320,56.5900,0.46331039 709,575.9400,219.0600,23.8430,56.4410,0.18696688 709,517.5610,201.9470,24.6380,50.3810,0.12567826 709,372.4810,200.7420,19.0200,38.9230,0.03414912 709,604.9010,217.5950,21.3690,52.7480,0.02506211 709,127.4400,207.4850,29.9780,65.6780,0.02500663 709,567.3540,226.2460,22.8890,49.9840,0.02017490 710,598.4640,203.2680,25.5500,59.4630,0.15108825 710,463.3200,210.6730,22.7980,44.8630,0.13484803 710,396.0400,200.9040,19.8160,41.1510,0.01120719 711,543.2330,215.9440,23.1520,47.4450,0.43513107 711,204.1670,205.4030,30.3440,75.5440,0.13965651 711,445.6300,208.4460,20.6340,42.6140,0.05995575 711,592.0630,205.5670,22.0290,44.8530,0.01229030 712,197.5000,207.1160,30.8310,76.0280,0.13677582 712,481.1040,209.4900,24.6340,55.4390,0.04081473 713,532.3220,207.6160,24.7050,51.9700,0.39768642 713,179.0220,204.3270,31.7310,83.9860,0.11091030 713,84.9193,192.8740,41.3847,95.1040,0.01901438 714,616.1660,213.9800,23.2430,68.0490,0.12042589 714,336.9040,189.0340,22.0380,42.4440,0.01286692 715,347.4000,180.9520,24.4960,47.3640,0.01427540 716,379.9290,199.5270,21.9440,43.6870,0.07625162 716,161.8510,214.0560,31.7230,84.1870,0.02370049 716,130.3040,282.9410,26.4400,58.0700,0.01452944 716,360.8260,195.3860,22.4570,44.9970,0.01095457 716,290.4580,222.5820,22.9610,36.5410,0.01011075 717,414.5210,203.0160,21.0570,39.6370,0.07027372 717,39.1787,207.4170,42.3153,99.1350,0.02629560 717,185.5910,279.5840,25.4400,56.9390,0.01358088 717,262.7250,169.6680,33.9790,62.3930,0.01201857 718,404.1470,213.9350,21.5380,41.5590,0.14732322 718,234.5890,176.8410,30.9070,54.0200,0.01560014 719,386.5100,206.1140,22.3570,46.6420,0.24568108 719,347.5890,200.8640,20.4270,36.8060,0.02012126 719,322.8470,194.7450,20.7520,38.6530,0.01412619 719,197.1270,169.6620,35.9780,62.1470,0.01370195 720,405.6930,204.7430,23.8700,53.3890,0.35154796 720,192.2410,160.0800,35.7110,65.6540,0.02875251 720,355.8560,202.4380,20.4080,37.5900,0.01757425 720,173.0020,211.5130,30.6500,78.6180,0.01198157 720,337.1860,201.3230,21.1110,36.6620,0.01079226 721,449.7330,211.6680,29.7840,67.4840,0.61417812 721,378.9780,213.4470,20.9380,41.0160,0.02691560 721,192.6270,169.2450,36.6570,63.4230,0.02456136 721,340.0390,147.4170,35.6520,86.6000,0.01644292 722,437.0990,216.5750,23.9190,52.8420,0.12948440 722,341.1440,192.5410,21.2550,42.0980,0.08307288 722,202.6390,163.3910,35.4580,63.2490,0.01506470 722,488.9770,142.7230,26.3430,55.8470,0.01122248 723,358.0700,202.9110,21.3620,40.7990,0.11307579 723,154.8590,208.7000,32.5250,75.4330,0.01494323 723,204.0420,168.9700,38.5650,63.3740,0.01106365 724,395.8440,211.0030,21.4490,47.1700,0.08792834 724,387.6670,212.7100,20.8720,45.2580,0.06681997 724,506.6330,143.2630,25.9120,51.8600,0.01979098 724,205.1420,162.7230,35.2890,61.7860,0.01235979 725,486.7920,210.5220,33.5310,85.0950,0.76714993 725,465.4050,214.6960,28.9770,75.4320,0.31693161 725,339.9350,202.3600,20.5760,36.7430,0.01501324 726,107.3420,207.2060,29.4870,59.8110,0.01967332 726,90.4903,275.4750,24.6157,58.7900,0.01451877 726,100.7620,203.1390,44.4220,99.3320,0.01019300 727,384.8300,197.1880,22.8020,48.5560,0.07787315 728,540.0850,218.2170,35.3690,91.5480,0.53237134 728,381.4080,209.6300,20.4020,40.4190,0.05026644 729,402.6040,208.0320,21.1990,47.5920,0.22495979 729,379.4010,209.4040,20.4630,42.1010,0.03378621 729,364.4820,208.4580,19.7100,39.9330,0.02612840 730,443.5790,214.1670,25.2820,60.6830,0.46571049 730,408.4420,217.0330,21.0660,48.0760,0.26323956 730,371.4770,214.4570,21.8060,48.5850,0.20921487 730,390.7790,211.9560,19.8630,48.0220,0.20902838 730,1.7472,209.9210,23.8207,50.5490,0.01365076 730,535.5720,133.8250,25.0650,52.4280,0.01222558 731,525.0490,214.1400,38.5520,94.0060,0.80921841 731,461.9860,216.9810,28.5470,64.9970,0.76711708 731,440.9990,213.8580,23.5520,61.9930,0.65835142 731,410.8560,216.6790,25.7940,60.2800,0.18736230 731,424.5690,219.7210,21.0980,53.8390,0.06152121 731,343.6580,208.4940,20.8860,37.1970,0.01371611 732,564.3240,210.9830,38.0690,107.5670,0.82788849 732,527.0790,206.6130,33.0500,100.6500,0.75069356 732,486.7870,215.1090,32.1030,88.9080,0.52532297 732,510.6880,214.2120,27.2630,88.4250,0.40877643 732,358.1360,208.0370,21.7130,41.3550,0.01880217 733,118.2100,216.9780,32.4280,70.4810,0.01693518 733,13.7313,120.1770,29.5153,63.0300,0.01139410 734,156.2160,212.4020,31.2060,70.4830,0.01984354 734,138.6260,209.7340,33.9140,81.6810,0.01936916 734,470.0820,219.4340,31.1810,80.8610,0.01850982 735,5.0885,260.7440,36.0024,163.7790,0.01251125 736,191.9320,217.0490,23.1610,40.1390,0.01290567 737,141.9880,225.8930,31.8990,72.4390,0.03721047 737,272.8740,183.9720,23.2080,49.7810,0.01051465 738,313.2710,174.4690,22.9540,54.3030,0.05685764 738,289.5040,171.6710,24.5720,57.2980,0.02192138 739,31.4521,223.7630,29.0387,63.3900,0.01881844 741,1.4534,215.2370,49.0841,176.9010,0.05451967 741,337.5170,214.2920,19.9280,37.9610,0.02606122 741,427.8010,206.0970,19.7590,39.0770,0.01157704 741,303.3000,223.0280,20.7830,37.1110,0.01054829 742,303.3290,200.6940,22.8960,45.9220,0.04062540 743,39.0327,194.9370,26.5478,54.9570,0.05936846 743,350.0460,163.1580,28.6190,67.2710,0.01993116 743,447.2680,182.9370,28.3090,65.1620,0.01817724 744,402.3240,194.7370,21.2760,48.4020,0.02344581 744,359.3520,153.7670,29.3420,71.0510,0.01336579 745,404.3880,203.4380,21.0260,39.7060,0.04887964 745,394.9730,201.6410,20.9660,41.6930,0.03054354 745,54.6655,184.6620,25.7411,54.6910,0.01221706 745,236.9260,208.2940,23.3180,41.3130,0.01127243 745,104.6520,213.8790,363.8690,66.7810,0.01078904 745,346.7730,213.7490,35.4720,87.6330,0.01052362 746,386.4750,205.0050,21.5030,37.5720,0.05847128 746,425.1420,207.3420,26.9950,57.8020,0.02888770 746,183.4610,210.2830,24.8850,47.6480,0.02294810 747,384.4630,202.3500,20.7710,38.2370,0.04627528 747,426.9800,206.3410,20.2620,34.6550,0.02067573 747,229.7490,224.4410,23.9960,51.5800,0.02037870 747,3.1419,215.2600,52.2130,156.3500,0.01416489 748,458.3400,205.7640,20.9650,41.0590,0.14414713 748,395.0840,202.2900,21.9780,42.7130,0.12039015 748,429.7280,199.9750,18.7320,36.0370,0.04842384 748,489.4450,195.7500,20.5880,41.8080,0.04544549 748,402.6450,196.8090,148.8150,48.0400,0.03735594 748,506.5240,200.7460,20.2120,39.8640,0.03575223 748,368.1340,179.7860,22.7950,58.0480,0.01674490 748,498.4690,197.2690,20.0590,41.1990,0.01011400 748,474.8170,194.9480,54.3810,46.5800,0.01006736 749,507.2210,205.1630,24.3450,55.7320,0.60420102 749,543.4960,204.7080,22.5180,46.7910,0.12968670 749,442.4610,202.8050,20.5450,37.5520,0.02472479 749,518.3120,199.1540,24.9450,56.3130,0.01992470 749,532.2280,203.4220,21.4260,46.8470,0.01794270 749,458.2450,200.4080,19.6610,35.7010,0.01588141 749,464.0890,190.4580,165.8180,58.3260,0.01128402 749,73.5431,225.4800,22.2157,47.8170,0.01085427 750,455.6140,211.0300,27.6130,68.3070,0.80261147 750,610.4350,220.6560,26.3500,76.2540,0.29973558 750,590.8600,214.8540,27.0990,66.1570,0.07526089 750,470.1670,212.3630,23.8670,55.1550,0.06146194 750,507.8990,195.0060,20.8080,40.7240,0.01592567 750,370.3940,215.8600,26.2340,61.0570,0.01178622 751,535.4690,207.8410,36.5840,92.7290,0.86201626 751,514.3850,205.9340,20.6910,44.6750,0.37290168 751,488.8250,205.1990,22.7700,47.1130,0.13733140 751,609.2800,226.8610,20.7370,36.5250,0.01417169 751,66.2352,214.4450,21.9559,40.2370,0.01311288 751,116.9570,204.8720,30.1430,52.7060,0.01014609 752,540.0850,191.5490,25.8240,58.3100,0.77880347 752,569.7050,194.4360,23.2050,52.0430,0.62743390 752,455.0220,232.9390,24.6280,54.0430,0.01896796 752,265.2270,71.0885,23.1910,34.9625,0.01767369 752,605.1590,177.6910,22.3420,48.5540,0.01738456 753,600.1930,232.3200,37.7420,117.2960,0.31015107 753,344.9540,163.5230,27.4240,67.3670,0.04237915 753,370.3700,151.3540,32.9510,89.5240,0.03362888 753,305.0940,208.0790,24.7800,45.4570,0.02229331 754,301.7910,213.5140,23.5510,45.0900,0.03224377 754,352.9770,175.7040,26.0870,66.9580,0.01247796 755,437.2100,168.9140,30.1000,76.3840,0.14620420 755,297.2740,213.4790,23.4260,45.0950,0.04726521 755,440.4150,205.2430,22.4680,45.2570,0.03585563 755,447.7550,194.6140,21.7730,52.4340,0.01479171 756,514.2400,201.1970,25.4280,59.1280,0.47975552 756,377.9620,156.5770,36.5870,90.7620,0.16268425 756,477.3470,200.0430,20.7270,46.0360,0.09887313 756,493.1200,197.1910,32.1930,63.3870,0.01240069 757,593.4050,202.3400,21.2070,52.3560,0.57052392 757,554.4370,207.2870,21.5910,50.1310,0.32216761 757,573.9070,208.5720,18.3200,47.1700,0.19497360 757,15.8793,248.2960,25.4238,54.2690,0.03818794 757,563.1740,205.0130,21.3130,48.5420,0.02481075 757,534.4140,202.7810,28.9540,74.7700,0.02281984 757,472.4290,204.7250,22.2190,48.4840,0.02119753 757,383.4670,222.7600,23.6760,43.8990,0.01984852 757,199.9200,217.0460,24.2820,47.4410,0.01958548 757,18.6657,201.1270,23.4668,43.5480,0.01075568 757,559.9840,201.7570,64.8150,56.3380,0.01048958 758,210.8810,219.1260,23.2690,41.7750,0.02622029 758,47.1102,248.0200,25.1584,53.5780,0.02371288 758,534.6010,205.0530,35.8920,71.5840,0.01123990 760,223.7560,231.6150,23.5740,47.9780,0.03059879 760,48.4237,263.9090,23.4998,47.6910,0.01149265 760,78.8209,257.7760,24.8931,52.2170,0.01044027 761,266.8980,213.0610,21.1800,41.9310,0.01608190 761,215.4170,213.0040,25.3470,52.1560,0.01410471 762,1.0040,233.0130,26.9763,75.2140,0.01738254 762,240.5610,206.8290,22.0240,43.8800,0.01185932 763,298.5200,219.3110,19.9850,36.6910,0.01894021 763,387.7830,206.8330,21.3630,40.8840,0.01177648 763,156.2760,211.6040,21.3900,43.6370,0.01086973 764,140.1220,210.4740,19.5390,38.6610,0.01541042 765,388.5520,197.0410,19.5290,39.0930,0.03277040 765,408.6950,203.3280,20.5090,38.4570,0.01501368 766,404.2000,206.8620,19.2060,38.5980,0.04217755 766,420.0450,208.9450,19.4360,36.6310,0.04011386 766,223.2950,222.3260,24.9230,47.5410,0.02521658 766,397.3780,202.9670,46.4090,43.5640,0.01758092 766,501.7390,200.5980,29.1600,69.6510,0.01720742 766,266.3130,208.3060,24.9920,43.7660,0.01399040 766,346.4560,199.9120,147.0010,50.4380,0.01198934 767,427.5520,210.5550,20.6560,42.3530,0.11806406 767,176.4580,223.9770,27.4920,51.7380,0.07345854 767,387.2840,198.5440,21.0760,45.6120,0.02704374 767,262.7250,220.6420,24.7610,46.9350,0.01730983 767,99.0015,222.4690,22.0545,44.6610,0.01466681 767,387.1160,202.4380,82.4230,52.8900,0.01386440 767,408.5480,207.1620,21.0630,43.5880,0.01351748 767,321.6010,200.2880,195.2480,50.0210,0.01045442 768,448.1010,203.2040,21.3000,43.8190,0.15754373 768,437.4720,204.1870,20.4060,43.4580,0.03018317 768,208.8200,220.2610,27.3840,52.9070,0.01830161 768,159.3110,203.3150,27.6770,52.1380,0.01111762 769,483.9860,206.2120,23.2090,50.5130,0.58731818 769,452.5720,207.9860,23.5700,47.6490,0.04823801 769,417.5510,196.2060,24.0900,53.0870,0.03945689 769,1.4028,229.4900,29.0529,77.0570,0.01010508 770,518.3970,202.9800,24.9980,58.6040,0.78551191 770,460.7110,205.2200,22.0140,44.9260,0.02931597 770,427.6460,193.6230,24.9990,54.8650,0.01949285 770,247.6040,220.3390,24.7720,45.9410,0.01793555 770,562.9230,189.5780,19.5910,39.1530,0.01201764 770,475.0180,189.7050,121.3280,72.7470,0.01026281 771,561.3360,206.0030,29.2060,66.1640,0.84872860 771,468.6650,205.5880,21.1680,42.3550,0.06739888 771,22.4003,222.1130,35.8564,69.2340,0.01450041 771,555.4020,200.8350,24.6330,58.0320,0.01018786 772,472.8980,201.7550,22.4970,50.8070,0.09352043 772,315.1950,206.6000,20.0670,40.1930,0.06544078 772,3.0280,233.9390,25.6267,64.8690,0.06541117 772,588.6980,187.9270,19.0430,37.5090,0.04499496 772,614.4070,194.6770,20.8660,42.9370,0.01218899 772,310.3170,207.7390,33.3810,55.6890,0.01030268 773,315.4960,207.7030,19.7260,40.5770,0.04897336 773,596.5790,185.3080,19.8920,40.1110,0.04122742 774,467.7080,209.4130,22.6940,44.4450,0.08511704 774,308.7350,213.7810,18.6110,38.5410,0.05296419 774,595.5930,188.3910,21.3340,43.1340,0.03271963 774,304.7030,209.6420,29.2620,60.4130,0.01737994 774,318.6850,211.4400,20.7730,42.7860,0.01033634 775,309.3200,212.9950,18.9750,38.8660,0.06155847 775,596.7400,188.9090,20.0510,40.4510,0.02819586 775,304.8480,208.7840,29.4020,61.4290,0.01677125 775,318.7970,211.5630,20.7580,42.3700,0.01575466 776,313.4480,212.5830,20.6030,41.1200,0.03995927 776,595.8160,188.7090,20.0310,41.5260,0.01438592 776,213.5850,220.2250,35.8110,89.2950,0.01258304 777,308.1240,213.0660,21.6540,45.1120,0.06694774 777,435.7400,194.5640,34.4740,70.0160,0.02769557 777,318.2580,214.5630,24.7800,47.5980,0.01576764 778,311.8810,217.0990,22.7320,42.3890,0.03894948 778,596.6610,189.1270,20.1490,40.6780,0.02087251 778,308.9310,211.7560,37.0770,74.0030,0.01304181 779,312.0850,212.9400,20.6330,40.9510,0.11847946 779,311.2020,210.7200,30.6850,68.9230,0.03765937 779,613.0170,281.5940,24.8930,65.6430,0.02541602 779,326.7850,212.0000,32.9110,67.1730,0.02403950 779,433.5100,191.3250,25.6950,52.3070,0.02013007 779,595.8260,188.6660,20.6080,42.0080,0.01102825 779,320.6370,214.7950,20.4380,40.8400,0.01022432 780,596.5920,189.4090,19.8690,40.5060,0.03217383 780,314.7120,217.5910,20.0520,37.9980,0.02925339 780,313.4730,213.1700,31.7860,70.0420,0.02599116 780,327.3350,215.4050,33.1750,67.9590,0.01791310 780,24.6594,237.6230,28.8062,62.9190,0.01369910 780,342.5900,216.9840,30.1260,66.7960,0.01111735 781,329.4570,214.8170,29.4340,63.0880,0.03488407 781,595.5910,189.2010,19.9400,40.9530,0.02249261 781,308.8770,217.8950,21.0400,40.2880,0.01975040 781,314.7650,214.3690,32.2140,66.6590,0.01139083 781,434.9880,196.2980,23.6210,48.7730,0.01132432 781,213.6160,222.5270,35.3970,85.8010,0.01098237 782,309.5840,216.2800,19.0610,36.6180,0.03900463 782,594.9940,188.4090,19.9680,42.0260,0.03013062 782,328.1520,213.8610,30.4510,65.0390,0.02271565 782,431.6470,191.5630,25.2450,49.4420,0.02231572 782,18.3951,239.3850,40.4912,67.5890,0.01318583 782,313.3340,213.4210,31.8580,68.1960,0.01283217 783,596.4780,188.8790,20.5180,41.2380,0.06541169 783,308.1830,217.1380,20.6200,40.9050,0.02663760 783,353.3740,224.6310,37.1440,93.8850,0.01888237 783,313.0340,216.1440,31.3820,65.1270,0.01358403 783,326.4930,216.8520,23.8950,47.8610,0.01122403 784,346.3550,222.9610,31.5930,77.2570,0.03197870 784,308.7150,215.7880,19.4450,37.3390,0.02559578 784,596.1780,189.5460,20.1730,39.8270,0.02427684 784,321.6750,216.8050,22.9790,45.4360,0.01121975 785,596.4550,186.8170,20.1820,42.0230,0.03463052 785,309.2480,219.2590,20.5890,39.7430,0.02275531 785,340.0140,221.8570,37.7620,84.8760,0.02132976 785,213.2160,223.6580,36.4090,84.9150,0.01289441 786,331.9790,219.2760,32.4910,61.1360,0.02652124 786,595.3440,183.8330,21.2540,43.8320,0.01611307 786,308.8650,220.1530,20.9030,39.4860,0.01415816 786,330.5940,215.9490,57.2770,110.5670,0.01161889 786,214.3530,222.2940,35.9640,85.7840,0.01093404 787,596.4360,188.7850,19.8570,39.8410,0.02094777 787,328.2080,217.7870,32.6460,61.4980,0.01830753 787,309.0130,220.2530,20.3220,39.4900,0.01642319 787,312.6640,215.7540,32.9210,66.7000,0.01094239 788,327.1340,215.5360,33.3820,64.6020,0.01829804 788,309.0420,220.2680,20.0820,39.4120,0.01772470 788,395.4300,240.7250,24.0780,53.3370,0.01508397 788,312.9800,214.5080,33.7440,67.8210,0.01287021 788,330.5240,216.0620,59.9000,119.8780,0.01182313 788,213.7670,221.9620,36.3110,86.3410,0.01033483 789,595.8070,185.2310,21.2930,44.2330,0.02409316 789,309.3650,215.5540,18.7000,35.9660,0.02328394 789,328.7860,216.6010,32.7280,64.8700,0.02189561 789,447.7060,230.2310,23.9500,50.7570,0.01749850 789,330.3680,215.5010,58.9990,117.0980,0.01030568 790,328.3910,216.5030,34.1650,64.6050,0.01708859 790,309.1260,219.8160,20.3620,40.0430,0.01707983 790,330.5830,216.0210,58.3800,122.9390,0.01707937 790,213.5540,221.1290,36.5300,87.2580,0.01086248 791,330.4520,215.1730,56.9490,123.0200,0.02215145 791,595.0410,188.7100,20.6320,41.4060,0.02165287 791,328.9480,216.1200,33.8480,64.7460,0.02041061 791,308.6630,219.7270,21.0490,40.9210,0.01096279 792,330.7760,216.8060,56.5020,121.4600,0.01982569 792,596.0450,188.5610,20.3770,41.9690,0.01979109 792,329.4660,216.7430,32.6300,62.2530,0.01940864 792,308.4280,220.0020,20.8230,40.1130,0.01051955 792,337.9760,218.8370,39.7100,73.4440,0.01038640 793,330.1910,217.4990,31.3960,63.4440,0.02232505 793,331.3890,215.7950,56.8730,116.4810,0.01319213 793,595.2630,188.9000,20.1910,42.5240,0.01215211 793,308.6160,219.4370,20.7140,40.4300,0.01189603 794,594.5680,185.7900,20.6830,43.8750,0.02904132 794,329.1160,217.9530,32.7850,63.9650,0.01513303 794,308.7830,220.7750,20.5410,39.3860,0.01203299 795,596.0590,186.4030,20.8610,43.7600,0.03471905 795,380.1390,237.7470,30.9050,60.2270,0.02318210 795,308.7790,215.8300,19.2050,35.2070,0.01852525 795,213.8880,221.7180,36.2980,87.8710,0.01213042 796,309.9920,216.0410,19.5460,37.7790,0.03436814 796,310.2180,213.0430,31.4390,69.4390,0.01817851 796,595.2800,188.3260,20.3330,42.9630,0.01635987 797,308.9700,218.2530,20.5780,40.1090,0.01608367 797,596.1690,189.3200,19.8190,40.6960,0.01139947 797,336.5770,223.8400,28.0990,54.1550,0.01029054 798,308.8500,216.9210,20.3430,41.3210,0.02149012 799,313.5130,217.4480,20.0920,38.5650,0.02643434 799,312.0210,214.5560,31.2020,66.3420,0.02265415 799,596.5350,189.9990,20.1740,39.6840,0.02254824 799,324.9230,216.5490,34.6800,63.5500,0.01054238 800,313.0980,217.2850,20.2590,38.4030,0.03073816 800,311.2800,214.2200,31.7110,65.9650,0.03025065 800,595.5000,188.7770,20.5330,42.0410,0.02163343 801,595.7320,190.3010,19.9330,40.0320,0.03195637 801,311.9050,215.2260,31.3590,65.4790,0.02534286 801,313.4200,218.5380,20.2280,38.4080,0.02196493 802,313.0400,219.4080,22.1330,40.1200,0.02573419 802,595.6750,189.7310,20.6450,41.4630,0.02370632 802,308.6370,213.1640,37.9490,69.8670,0.01222844 802,212.4910,223.3220,37.1780,87.2680,0.01048608 803,312.7690,215.5320,20.4300,39.4560,0.04281736 803,311.2210,213.7960,31.1680,65.2090,0.03917937 803,597.0110,189.7250,19.7190,40.0150,0.02839538 803,395.0500,199.2180,24.8690,49.8220,0.01061611 804,310.9200,215.5240,19.3450,38.1730,0.04660971 804,310.9010,213.1480,31.2500,66.0150,0.04659770 804,597.3610,189.1490,20.4510,40.7800,0.03409653 804,325.1550,216.1670,34.7490,61.3180,0.01435514 804,213.7020,221.3960,36.3670,88.1390,0.01024367 805,595.9770,189.0590,20.2840,41.6940,0.02815199 805,312.0600,214.5710,32.2370,66.5270,0.02082077 805,313.8530,216.9020,19.8290,38.0280,0.01789759 805,324.4570,216.4190,35.4920,60.6430,0.01095937 806,311.5820,214.2840,31.5230,65.7260,0.04035997 806,312.9500,216.8470,20.2920,38.8080,0.03360545 806,324.4520,217.2140,34.8340,60.3040,0.01258778 807,311.2970,214.9550,31.8870,65.0250,0.03181548 807,313.5430,217.3980,19.8800,39.1730,0.02799483 807,595.1950,187.5890,20.7390,42.9690,0.01347369 807,324.6070,217.5500,35.4050,59.5210,0.01147250 808,310.9420,212.6280,30.9700,67.6890,0.06443939 808,313.2950,215.0030,20.9820,41.1590,0.04741843 808,324.4220,217.0760,34.7730,61.0390,0.01213218 808,595.4190,185.4120,21.0830,43.7780,0.01098539 809,311.6230,214.3950,31.7900,66.5260,0.04066351 809,313.4170,217.9820,20.4470,38.7540,0.02719712 809,595.7430,189.4020,20.0730,41.5070,0.01933343 809,323.8810,217.7070,34.9760,61.2700,0.01214428 810,311.7100,214.6650,31.9200,64.9390,0.03436701 810,313.4700,217.7000,20.1430,39.0260,0.02462785 810,596.0580,189.1410,19.8600,40.9560,0.02378515 810,324.3690,217.5800,34.9680,59.2420,0.01256424 811,596.2000,189.7050,20.0660,40.3100,0.05156093 811,313.3450,216.4280,20.0680,38.8940,0.03288073 811,311.0870,214.7860,32.1740,64.4340,0.02866098 812,312.3750,214.8420,31.7530,65.4390,0.03547847 812,313.6910,219.4280,21.6960,40.0220,0.02355203 812,541.0990,347.3660,28.0160,56.2360,0.01998814 812,596.0250,187.6720,20.4140,42.9280,0.01878756 812,324.4890,217.6810,34.5290,60.4180,0.01579582 813,311.9660,214.9060,32.4180,66.7260,0.02094528 813,595.6670,187.5840,20.3720,41.3440,0.02000213 813,314.0620,217.7690,19.9990,37.3530,0.01552324 814,312.0330,214.2570,31.3310,64.9670,0.04787667 814,313.2210,217.3870,20.5060,39.2930,0.03006657 814,596.0580,188.6190,20.5390,41.7530,0.02180854 814,324.3880,217.4260,34.1920,59.5640,0.01690898 815,596.1330,189.1270,20.0390,40.8120,0.02493545 815,312.2040,214.3680,32.7950,66.8160,0.02346010 815,313.7780,217.1770,20.0930,38.5450,0.01684363 815,324.6160,217.3890,34.8150,60.1500,0.01286890 816,612.6610,331.7150,27.3390,103.7060,0.03688995 816,313.1320,215.6110,32.0660,64.6390,0.02539951 816,324.6310,217.7890,34.3620,58.6970,0.01586595 816,595.6580,188.3180,20.5190,42.1870,0.01525418 816,314.1500,220.0600,21.4460,39.6610,0.01483215 817,594.6640,187.3480,20.4890,41.6530,0.03906358 817,312.1620,215.8450,32.8390,65.0530,0.01932373 817,313.2390,219.8460,21.9660,40.0580,0.01765103 817,213.3900,222.9140,35.9580,84.9190,0.01401603 817,324.2810,217.7110,35.2670,59.0150,0.01072626 817,612.8590,337.1110,27.1410,101.7450,0.01041965 818,596.2360,188.5650,20.5700,41.1250,0.05938973 818,312.3690,216.3110,31.8510,63.9340,0.02376802 818,313.5390,220.1290,21.7550,39.3850,0.01788585 818,612.7390,335.8300,27.2610,100.6870,0.01531561 818,324.4830,218.2710,34.7240,58.4340,0.01124529 819,312.4640,219.1110,22.3380,41.0430,0.01687600 819,596.8330,189.3990,20.1930,39.8050,0.01569643 819,612.8460,338.8580,27.1540,101.7720,0.01419116 819,213.8210,220.0180,36.0880,88.3050,0.01009676 820,309.2440,217.3170,21.1330,41.3590,0.03334778 820,595.4880,188.7890,20.5960,41.6350,0.02129245 820,612.3200,334.7700,27.6800,102.3700,0.01525516 820,310.7710,216.1800,31.4950,66.0540,0.01449498 821,308.6330,217.6400,20.7800,40.5850,0.03261601 821,320.8630,219.1690,24.9520,44.6150,0.01942674 821,596.5050,189.3190,20.3770,40.4480,0.01840472 821,612.6560,338.3270,27.3440,99.0590,0.01594733 821,308.3560,210.7990,38.9650,80.2720,0.01146702 822,596.4530,188.1460,20.2880,42.3320,0.03081270 822,308.9270,217.3950,20.8870,41.1850,0.02640836 822,613.0110,338.0910,26.9890,98.2900,0.01687598 822,311.4240,215.9650,31.1480,66.5440,0.01635110 823,313.8870,218.7660,22.7990,41.7390,0.03248877 823,613.3460,343.0980,26.6540,87.5220,0.01995851 823,595.7220,188.4050,20.8470,43.1510,0.01387930 823,213.0520,219.6160,36.3440,91.1940,0.01376367 823,309.2610,215.4690,34.2940,75.8610,0.01039217 824,594.6480,187.6220,20.2610,41.8810,0.02526222 824,314.1030,220.9280,22.6050,40.3670,0.02064320 824,213.3410,221.5820,36.5630,85.8980,0.02046164 824,613.0710,336.4060,26.9290,101.4040,0.01403266 825,612.4130,335.8470,27.5870,99.6340,0.01691095 825,595.3340,188.0480,20.3890,42.2270,0.01214986 825,314.1550,219.2760,23.4430,43.2000,0.01065979 826,595.4190,188.7100,20.4150,42.5680,0.01165345 827,596.4620,189.2110,19.7410,40.1140,0.01326460 827,612.2130,336.9480,27.7870,101.4910,0.01210626 828,30.5075,234.3910,41.2464,80.1240,0.17736501 828,548.7320,214.3260,24.3460,53.0520,0.13273032 828,610.3490,343.2990,29.6130,96.1060,0.01269900 828,595.8570,191.3860,20.4180,41.5840,0.01189124 829,46.9153,244.6400,29.9151,64.0520,0.13039345 829,488.1330,212.2720,23.9180,46.6370,0.06132259 829,597.8100,340.9980,37.1110,92.9370,0.01378918 829,98.5404,195.8960,26.3866,45.3420,0.01011040 830,473.9660,213.6220,21.8250,41.7030,0.04347381 830,417.2550,233.1820,31.9970,71.4230,0.01707938 830,33.3557,194.7740,22.5334,47.4740,0.01319825 830,581.4500,331.3560,35.9430,93.5670,0.01187301 831,472.0560,208.3580,20.6790,41.1710,0.04974079 831,74.7723,242.4210,29.3437,69.6750,0.02190810 831,579.3960,322.3200,35.5160,94.2890,0.01018275 832,18.7755,245.2870,41.1050,85.2900,0.07930824 832,59.8236,305.2420,39.6277,97.5080,0.01914608 832,168.6320,223.6500,30.3580,59.0320,0.01798275 832,392.2500,241.0420,31.8940,67.7840,0.01477250 832,93.9297,249.1330,26.7453,62.6320,0.01245845 833,482.1210,190.8780,21.3050,51.2070,0.12194802 833,73.0528,225.6390,35.5312,76.5090,0.09472653 833,115.2340,235.5210,22.7130,51.6060,0.05352383 833,62.9383,228.1620,30.6335,68.7520,0.03817820 833,420.0390,188.9950,22.5110,43.1540,0.02589377 834,491.8870,203.3230,20.4290,43.1770,0.28023115 834,435.5990,181.9460,26.3420,52.6740,0.04005186 834,95.3386,220.8830,41.7284,69.7060,0.03392473 834,558.8270,326.7790,36.1570,88.8900,0.02106580 834,207.7690,214.8280,25.6380,55.4630,0.01532620 834,392.1570,197.0570,24.3690,54.5000,0.01428968 835,392.6490,233.1600,28.8690,60.9140,0.06879677 835,154.6150,231.0060,29.4510,54.8960,0.02850385 835,464.7440,176.6300,29.0890,67.7570,0.02452247 835,567.5630,333.3740,36.5620,87.8130,0.02039448 835,221.3140,221.5380,23.9840,48.6650,0.01853125 836,541.6810,191.8580,23.7580,53.2470,0.13177019 836,222.0530,202.2520,25.0500,55.7870,0.12230337 836,604.0940,349.4470,33.3650,87.1760,0.05965496 836,497.5910,196.5520,21.0750,46.0960,0.05162703 837,564.0210,195.4090,23.4360,54.5300,0.24401769 837,546.7130,197.4940,20.9730,50.5150,0.20207353 837,222.6890,206.9250,23.4560,49.1570,0.07112971 837,80.3351,220.8590,25.2519,47.4050,0.03002513 837,207.2700,220.7710,29.2910,69.7650,0.01073993 838,1.3771,244.3370,26.6889,66.9680,0.03736793 838,37.5604,317.3320,43.2865,104.8530,0.03729331 838,567.2450,272.5800,25.8470,47.8080,0.01951503 838,218.3230,219.6000,23.0740,48.3180,0.01133516 839,470.6880,211.1930,34.2010,64.5890,0.01652487 839,473.6190,213.5540,21.6240,40.3960,0.01385164 839,448.6630,264.5660,30.1790,59.4440,0.01139965 840,80.5174,239.3260,29.9716,62.6610,0.05945656 840,56.9585,309.3660,38.9468,82.6590,0.02546838 840,511.3880,213.7150,25.7680,60.0610,0.01226473 840,400.2740,216.5180,27.3910,50.7210,0.01014261 841,75.9234,309.4360,35.8486,83.5950,0.15464975 841,607.8320,239.9940,22.7860,44.5840,0.11050767 841,548.6150,222.1600,23.2690,50.3540,0.10656195 841,273.5720,223.2680,22.8880,43.0020,0.02498048 841,614.0990,229.9920,25.0160,60.4390,0.01618148 841,68.0502,275.0930,51.0728,136.6640,0.01509595 841,232.9640,229.2550,26.2150,55.9090,0.01122786 842,562.5840,218.0730,22.3730,48.1630,0.05306652 842,83.1249,299.9070,35.7751,74.0810,0.04746497 842,270.9180,220.2940,22.9670,43.9260,0.04512866 842,611.4450,219.5110,28.5550,72.6680,0.01402334 842,234.3200,217.4770,27.2080,56.0510,0.01324776 843,127.0880,294.4370,32.4540,70.3170,0.01074363 845,244.9940,274.3930,26.3130,56.7240,0.02191222 845,522.6200,273.4230,29.1420,75.6490,0.01782142 845,240.1720,209.5690,28.7860,60.4340,0.01319569 846,308.8490,219.4310,21.6400,42.5560,0.04603024 846,370.2490,194.8170,26.8760,56.0680,0.02320415 846,500.2260,280.4230,23.3300,53.4510,0.01992708 846,28.4461,256.5520,30.7311,60.7600,0.01930136 847,384.6650,197.8820,24.6850,57.1420,0.03645895 847,306.6350,213.2970,22.9650,49.4230,0.02941134 847,372.2110,203.5230,26.6200,58.2990,0.01378675 847,220.2770,222.0090,19.6500,33.4600,0.01124422 848,488.3190,274.9560,33.4620,75.4530,0.07741941 848,408.2040,189.3870,24.5510,55.4770,0.05757120 848,392.3140,194.5260,22.8070,49.0860,0.03401344 848,510.6690,221.9800,25.7510,56.5520,0.01627930 848,305.7460,207.4040,24.2380,50.6480,0.01400124 848,424.1710,243.8560,26.0710,57.4340,0.01273419 849,480.7880,212.4240,24.1370,57.6520,0.30742151 849,450.7390,180.0660,24.7470,59.8600,0.10632268 849,27.9555,325.4800,40.6128,84.9910,0.05279034 849,422.0670,196.9020,24.5550,45.9440,0.01611184 850,571.1380,216.0000,24.9520,49.2640,0.34357423 850,461.9740,194.1800,33.7920,66.7990,0.09477130 850,521.3270,183.4610,21.6530,47.6820,0.02721895 850,488.3220,198.5810,30.2800,66.1210,0.01756757 850,476.3110,200.6710,30.2700,65.2260,0.01738794 851,405.2790,225.7310,19.7570,37.4500,0.02291763 851,421.6650,222.8710,22.0940,46.7040,0.02012294 851,323.5590,201.7650,29.3250,61.7050,0.01371990 851,122.1800,218.8440,20.7310,34.2900,0.01034553 852,567.0100,210.5410,21.6960,49.5750,0.47761846 852,592.0550,208.4010,26.1470,61.9140,0.21777366 852,437.8790,223.8100,21.2610,38.6760,0.21260306 852,428.6570,216.3850,36.7630,54.1610,0.01063820 853,462.8060,227.5180,26.2830,57.3370,0.34133855 853,183.7740,257.4440,26.9280,64.4280,0.04662132 853,79.7417,247.2320,24.8623,47.8610,0.01544513 854,542.9850,236.7550,27.9420,69.2270,0.36540627 854,312.3620,199.9650,24.7000,55.0620,0.06633028 854,210.2190,252.1880,23.4630,55.0950,0.02287971 854,287.3020,252.2810,26.2740,56.7120,0.02007128 854,127.8930,232.0450,21.9110,39.5510,0.01368928 855,312.2660,198.0040,29.1670,66.7570,0.01841465 855,359.8670,184.9020,22.5580,48.1750,0.01218887 856,376.5230,195.7790,22.7870,48.7900,0.01499157 857,319.5840,202.6620,27.7320,67.3620,0.01466930 857,395.8540,204.0120,22.2050,45.0250,0.01036036 858,327.3910,201.3380,27.7220,70.2120,0.04752102 858,111.4440,297.7970,27.7230,62.6450,0.01301395 858,252.9730,247.1350,23.5560,45.0510,0.01143508 859,336.1870,200.8080,23.2720,46.2280,0.01070283 860,8.3828,344.9090,40.9164,107.5160,0.01299572 860,1.0000,317.0850,56.4704,181.3590,0.01032563 861,392.1150,208.0670,22.0760,45.3640,0.05028845 861,347.2350,198.2410,21.7850,42.9100,0.01848044 862,496.1480,220.1570,21.6300,49.1540,0.50352556 862,415.7730,218.6250,21.7500,47.5910,0.35382119 862,505.6270,216.6670,28.5130,59.0000,0.02229119 862,352.9230,195.8720,22.3170,44.0470,0.01280698 862,423.8920,213.9470,22.3970,47.4250,0.01078996 863,590.4890,211.0440,30.3590,71.8030,0.81956553 863,466.2690,206.6630,27.1940,67.1950,0.66910207 863,355.4550,182.7230,22.8750,47.9870,0.03805059 863,476.8480,204.5730,24.7960,60.9880,0.02213105 863,410.0150,201.3740,21.4850,42.0780,0.01701536 863,455.8490,209.4470,25.2830,59.0940,0.01143168 863,303.5700,222.3940,23.6080,43.1090,0.01075374 863,489.1920,210.3850,23.5160,54.7680,0.01020004 864,583.0300,209.0190,41.7820,114.5490,0.83916748 864,361.9830,184.5920,23.2520,49.9200,0.03551638 864,435.7050,206.5040,22.1520,45.8130,0.03292552 864,303.2570,225.0940,21.6460,39.2740,0.01998581 864,596.9340,208.4080,30.8130,71.8840,0.01471260 866,370.8980,179.9890,25.7260,55.1620,0.01657734 866,438.3790,245.2840,25.7320,47.1090,0.01376912 866,481.9040,206.3250,21.7910,43.8230,0.01226649 866,380.9510,231.4070,33.8970,79.1500,0.01017548 867,390.5950,180.7740,23.6250,59.3820,0.23655763 867,4.4293,240.3290,33.0519,95.2330,0.04857792 867,536.6080,200.1570,35.7740,51.9270,0.03691351 867,310.0050,201.5320,140.9120,52.6570,0.02136456 867,26.0676,250.6480,29.7564,69.3660,0.01526577 867,380.1430,193.9340,21.7750,47.9140,0.01503674 867,325.5320,209.2690,69.5370,46.0780,0.01251508 868,416.3550,185.5140,26.6930,67.4520,0.46833622 868,478.0500,225.5370,24.1890,56.4500,0.16901179 868,461.3600,220.4850,19.9910,44.5320,0.13105679 868,399.0160,208.5040,20.4740,47.9010,0.11049552 868,379.6610,221.6390,19.4990,40.3770,0.05095823 868,427.0930,192.4340,24.5330,66.7240,0.03190449 868,300.4620,227.5290,21.9340,42.7250,0.03135768 868,614.2090,189.6620,23.2250,71.5470,0.01898819 868,410.4470,198.5660,22.6430,56.1160,0.01569746 868,357.0260,215.0940,60.1820,50.7030,0.01444843 868,330.8210,210.5250,192.9780,52.9630,0.01090787 868,402.0500,201.0510,55.2180,60.7380,0.01003940 869,424.4110,204.9040,24.7730,58.5080,0.22219051 869,520.4430,225.9880,21.2530,54.0840,0.21092477 869,533.0660,225.7490,20.4830,53.7130,0.14568043 869,452.8230,176.7500,29.8390,82.2990,0.09952865 869,415.9990,219.9490,24.2350,55.8890,0.09232996 869,395.5950,227.9330,19.2880,39.6410,0.07217741 869,512.8240,221.0940,20.0380,50.0520,0.04588490 869,370.8050,241.7910,36.9720,75.0020,0.04499160 869,559.4970,216.8730,24.3780,45.4600,0.02554477 869,378.3370,240.2100,22.2000,46.0220,0.01713496 869,304.7200,224.3080,21.4810,41.3130,0.01647316 869,387.5820,233.2590,20.8980,43.6080,0.01613122 869,522.2710,221.5860,47.1010,56.7370,0.01509283 869,445.3890,190.2900,25.6580,70.8200,0.01380319 869,541.2440,227.6560,22.4930,53.9580,0.01042235 869,464.4850,210.3490,155.3000,64.8400,0.01034706 870,437.1450,228.4180,23.2740,53.2750,0.62382340 870,588.0190,221.0200,23.9110,54.7120,0.60048974 870,475.4070,207.3070,29.1180,78.2600,0.34573853 870,483.6330,234.4880,29.1310,66.3350,0.25954378 870,410.8700,244.1400,20.9390,40.6030,0.22835028 870,516.4500,145.1800,40.8650,109.2830,0.02596017 870,485.9140,203.0450,26.6050,64.4630,0.01885214 870,507.6490,147.2420,33.1660,89.2330,0.01231607 871,534.8430,226.8740,36.7500,92.3740,0.81144202 871,484.5280,253.6670,29.4290,59.5970,0.35336089 871,535.8990,213.0840,28.1180,62.9740,0.06186916 871,516.9710,195.5550,64.3390,119.3610,0.01750294 871,428.0220,254.5260,26.3990,52.7460,0.01703532 871,498.2960,208.8160,22.1110,47.2620,0.01576778 872,514.6150,204.1840,20.8790,43.3500,0.03548676 872,99.4347,181.9210,21.5373,42.9330,0.01360937 873,42.2040,183.6390,25.1369,50.5560,0.04993813 873,444.8930,213.4960,29.1980,69.2610,0.02408265 873,454.7550,51.5532,27.6280,71.5848,0.01681993 874,6.2856,254.0000,32.0422,67.7350,0.04161856 874,40.3623,317.1990,41.5164,103.1960,0.01491625 876,378.2190,224.6280,24.5870,51.6000,0.02542275 876,390.6840,216.1010,29.7070,61.4490,0.01834705 876,74.5799,236.8620,22.6611,44.3030,0.01680193 877,420.5210,216.5830,20.3590,37.8880,0.01519284 878,309.1540,187.3630,22.5330,46.2150,0.03518028 878,62.4578,245.9810,26.5005,52.6940,0.01530931 878,284.3330,195.4130,20.0550,36.6930,0.01022705 879,616.0960,227.9810,20.7850,44.9940,0.06669173 879,319.3860,199.0650,23.8290,49.2810,0.02507343 879,297.0270,204.8770,21.0610,40.1460,0.01232475 880,504.2550,196.5400,19.9980,37.5520,0.02942118 880,143.5460,164.0540,29.6270,65.8710,0.01988200 881,363.4780,222.7300,20.4470,35.6470,0.02333051 881,353.9280,218.2880,41.7200,45.2850,0.02029643 881,558.5590,205.7980,27.3260,62.2340,0.01630529 881,157.5420,167.3210,32.7950,73.8930,0.01494554 882,510.8460,136.6090,27.9270,56.4050,0.18340929 882,388.9970,204.3270,26.7130,59.8520,0.04933476 882,437.4320,197.2600,30.8930,67.5160,0.01323204 882,399.0910,206.6710,22.5310,45.3240,0.01096217 883,435.2440,200.7570,19.2310,37.4500,0.12020204 883,443.2230,200.9760,20.1730,37.3750,0.07553025 883,436.1630,198.8480,39.3160,45.7030,0.04941019 884,504.2390,206.2580,22.8650,52.8970,0.49986392 884,524.5240,209.8780,19.1330,48.6590,0.27056959 884,543.0790,213.5280,22.0410,46.8660,0.22147259 884,514.6020,208.9730,19.4450,47.8740,0.11741316 884,514.6840,208.3450,41.4960,53.2250,0.01601576 884,403.5650,205.3480,20.7940,40.2700,0.01440163 885,331.7750,204.2410,20.2270,36.9290,0.02162797 888,418.7980,206.4780,19.8210,35.8750,0.01263150 889,25.5796,169.3280,25.7216,55.6380,0.02580073 890,537.9190,202.7350,22.0300,49.9270,0.39808947 890,424.2570,181.7580,24.5580,62.2330,0.01504659 890,351.1550,13.7083,24.8820,54.2853,0.01488146 891,458.4460,202.3090,21.2910,45.3260,0.03149153 891,449.1610,211.3920,22.2370,40.8790,0.01183429 892,531.7130,208.4620,20.5550,46.0980,0.19250533 892,395.0040,206.1100,19.1480,38.9980,0.03096002 892,332.3270,207.3130,146.9680,49.2720,0.01782998 892,365.4960,207.0880,52.9700,40.4030,0.01075777 892,428.6590,237.1440,32.5320,82.2830,0.01027978 893,357.2500,184.5310,26.2380,63.6370,0.16962884 893,448.3700,193.8370,24.8630,55.1180,0.05553556 893,426.1930,189.8480,26.1200,62.9560,0.02433275 893,402.7760,218.9980,21.0190,41.2670,0.01910591 893,539.6470,188.1300,35.0210,90.3930,0.01863322 894,447.0410,213.8760,24.0370,52.2310,0.63213420 894,388.7890,137.9280,27.7660,69.5020,0.02231615 895,600.1190,214.7560,32.9400,97.5190,0.51945531 895,417.0240,205.9880,20.1260,39.0160,0.10020182 895,612.5380,211.8310,24.7990,68.4500,0.04997566 895,403.5900,207.3050,18.8250,36.9420,0.03225559 895,396.1310,201.1450,52.9150,47.7310,0.02793097 896,456.9390,220.0390,22.1760,53.9390,0.54084378 896,434.6930,221.0360,21.1220,50.4810,0.33551994 896,601.0130,243.3710,20.7300,35.9950,0.03425971 896,552.9150,246.6950,20.6670,33.0810,0.03299791 896,547.6080,188.9830,23.5720,52.3840,0.02976356 896,443.3160,217.6470,48.0510,60.4400,0.01836240 896,474.9240,234.5420,22.0530,44.6880,0.01678187 896,415.7670,116.6290,35.1380,87.6480,0.01150721 897,529.1540,207.0160,29.9580,79.2510,0.55991834 897,497.1500,207.9600,28.6700,74.3090,0.22901629 897,431.4140,203.3080,24.1050,54.5540,0.02533576 897,538.9840,225.9150,29.2640,65.1030,0.02344386 897,474.6880,228.7360,21.3400,49.4870,0.01712740 897,506.1630,232.8160,24.5170,57.8990,0.01473333 897,508.6420,206.2410,32.5590,75.9510,0.01373783 897,481.2710,219.4060,25.2870,61.7660,0.01174793 898,529.6990,184.4370,28.9290,68.5290,0.50384766 898,505.4270,191.3680,33.4410,72.7950,0.05590964 898,440.7980,206.2340,22.3720,41.7930,0.01582895 898,491.3560,48.9122,37.5060,106.4558,0.01467753 899,608.3610,198.7580,28.8640,82.9890,0.47486430 899,441.2240,198.9160,28.2550,70.4860,0.04983991 899,521.0390,73.5265,36.0060,86.9865,0.02484558 899,284.5430,202.6220,19.0710,34.3490,0.02036294 899,559.6710,208.8220,40.4240,88.9350,0.01590800 900,439.4390,224.6240,22.8600,42.4640,0.11786253 900,342.0570,183.6950,24.6160,53.3800,0.03179012 900,287.7720,186.9380,20.2710,39.6690,0.02164833 901,299.2350,195.5450,19.9430,40.6570,0.07025707 901,387.7810,187.4860,30.9530,75.5180,0.03793213 901,366.1210,180.5750,29.5500,81.4470,0.02774243 901,350.6430,189.1340,27.1780,68.7260,0.01209093 901,464.5790,252.8530,22.7220,40.1820,0.01126201 902,313.2150,185.4770,22.0400,46.3480,0.07097291 902,531.9100,212.6240,46.9860,106.4980,0.02834094 903,324.1950,193.6470,21.3630,46.2430,0.04542426 903,369.2900,202.0370,23.0520,48.8060,0.01135127 904,346.7200,179.1190,24.8880,61.8450,0.02803598 904,290.5290,172.5090,26.5630,49.4970,0.01063655 905,360.6890,175.9890,30.9100,79.5010,0.05397088 905,304.1790,177.5340,25.0800,50.5970,0.01871118 905,343.1600,173.3930,26.3070,71.0690,0.01444553 906,438.8190,234.7230,22.4990,46.3330,0.26087934 906,336.3860,164.8910,23.3570,58.3230,0.04310234 906,313.0380,155.6350,24.8400,60.8070,0.03236692 907,382.5640,168.5950,27.0020,71.9590,0.07509447 907,327.2110,160.7350,28.7360,65.3570,0.01750939 907,368.5960,173.9110,24.4370,60.9880,0.01104389 908,349.3510,155.6070,27.0500,65.3500,0.02096795 908,492.8030,178.1130,21.8320,42.8830,0.01363927 908,361.1300,155.2650,26.1430,67.0590,0.01189502 909,447.1760,206.6640,21.1050,43.0860,0.12881486 909,439.5580,174.3140,26.8550,71.1750,0.09844601 909,429.0910,154.0490,31.0970,83.0590,0.08007048 909,562.0600,191.1590,20.3900,37.1670,0.04422637 909,406.4350,164.2050,25.8000,71.5340,0.01448358 909,360.3890,162.2990,28.0220,64.2580,0.01229260 909,383.0730,155.7410,26.3270,68.8760,0.01170268 909,436.4300,204.0540,21.8470,46.6350,0.01110190 910,536.9590,207.0400,26.0840,59.6600,0.51506698 910,410.4450,201.4410,21.1130,36.9820,0.01552778 910,493.6150,199.4780,21.2000,42.9940,0.01237681 911,566.3210,195.0150,24.4790,56.5150,0.63899136 911,401.6260,91.1962,35.4490,85.2978,0.04426441 911,528.8660,36.3932,31.5650,62.8802,0.03665487 911,401.6300,148.8810,33.4500,84.7540,0.03456166 911,557.6910,198.3040,21.7360,53.2920,0.01909079 911,440.9360,95.7666,24.5510,52.5764,0.01164757 912,463.8900,216.7770,25.8240,58.3580,0.02355224 912,279.3770,184.8600,23.2320,50.0940,0.01698705 912,425.0520,64.4521,27.9820,61.9499,0.01361223 912,329.6210,127.9850,38.1780,107.6680,0.01076080 913,358.3680,202.8480,22.6090,47.8350,0.21419691 913,139.4900,121.5780,37.3450,92.2280,0.02505790 913,254.5990,184.4500,23.4290,52.3100,0.02236466 913,349.1440,204.3010,21.1170,44.8640,0.01653405 913,526.6540,184.6500,25.4570,47.9030,0.01602752 913,425.1030,68.8173,34.2940,63.0107,0.01374882 913,272.8710,184.7450,22.9010,52.1580,0.01166592 913,312.5110,122.0220,35.1940,89.1610,0.01073748 914,362.1900,198.1090,24.2210,50.8340,0.05064510 914,248.1970,178.8750,24.8580,54.8680,0.03297952 914,348.5430,201.6770,22.0320,47.5300,0.02760888 914,271.9920,177.2840,24.8150,55.4590,0.01089076 914,134.2090,108.5720,37.5940,91.7690,0.01027250 915,383.8870,206.4000,29.4660,71.2610,0.11043976 915,356.0840,75.9540,33.2980,75.2360,0.01499256 915,412.0510,211.5280,23.0720,40.6760,0.01334811 915,280.7920,201.0940,21.7930,43.9790,0.01280862 915,366.5020,202.3600,28.2300,61.7350,0.01136224 916,388.5800,203.5380,22.6350,53.7190,0.03876407 916,405.1240,205.5990,27.1460,53.9610,0.03682614 916,307.9700,210.4260,19.3730,35.9390,0.02791120 916,439.5820,206.3900,24.1340,42.9440,0.02769645 916,262.2720,205.6100,20.6860,40.9280,0.01637443 916,282.1090,198.8170,22.1640,45.2570,0.01575533 916,149.1870,127.2060,32.1730,77.4360,0.01163122 917,414.7610,187.8800,28.2320,60.6800,0.12179376 917,594.8810,206.0980,22.9810,50.8830,0.03812712 918,266.1630,172.9490,25.3760,64.7330,0.06143734 918,272.0340,209.4080,20.1000,40.3390,0.04362167 918,81.4502,273.9920,28.2358,64.7620,0.02836864 919,276.6430,199.5010,22.8640,48.2450,0.44784504 919,197.4230,165.9780,31.4950,78.5850,0.14414719 919,408.2010,178.8760,29.4240,76.3360,0.07958705 919,202.4560,196.3040,21.1620,45.0950,0.07239598 919,248.9490,197.2890,22.5610,48.8290,0.05600617 919,220.2290,203.4800,92.8720,46.9160,0.02231885 919,344.5200,189.9110,20.2850,38.9430,0.01813497 919,426.0970,193.4530,32.8210,72.7110,0.01761768 919,236.0360,203.6340,20.6140,38.0070,0.01527335 919,197.4710,191.9660,200.5580,51.3780,0.01397536 919,444.3600,196.2200,33.4300,68.4180,0.01115096 920,186.8140,198.0790,26.1610,57.0470,0.43817768 920,103.7890,202.8500,21.9280,45.0230,0.11573467 920,160.2480,195.1960,23.3870,55.9250,0.10739297 920,273.8010,187.5110,21.2080,41.2500,0.02386385 920,83.3246,200.5420,150.0254,54.6910,0.02344681 920,93.5931,202.9840,23.1089,43.8300,0.01902588 920,143.8720,202.3200,22.5250,45.9510,0.01489590 920,92.5128,201.5540,46.7462,51.0680,0.01240500 920,355.9310,170.5070,35.4460,86.3680,0.01089569 920,166.2170,195.3050,35.1990,59.9720,0.01062579 921,168.7490,168.6500,24.5570,50.7590,0.04402837 921,330.9020,192.3840,28.9610,63.5000,0.03029094 921,295.9010,192.1430,25.2240,51.0130,0.02264214 921,280.7660,199.3260,40.9970,96.5590,0.01932445 921,261.3220,211.6990,33.9500,88.9010,0.01849146 922,141.6990,230.2790,25.2610,46.2010,0.01702011 922,306.5520,180.0820,26.5200,57.0750,0.01521890 923,26.1340,227.3550,30.5160,63.0940,0.03951555 923,475.4130,205.1840,22.0470,40.2930,0.01923628 923,37.6709,220.4300,37.0062,76.4460,0.01725157 924,88.9599,181.3920,35.9681,84.9140,0.04667639 924,24.3802,181.0870,41.6050,95.3250,0.01662388 924,591.6490,243.5310,25.0530,50.7710,0.01604101 925,388.2620,263.1480,22.9630,40.2720,0.01154439 925,1.0000,229.4080,27.0039,107.7360,0.01115032 926,233.3640,265.8950,27.6900,45.0960,0.01565202 928,506.9500,215.9570,19.6170,45.1890,0.40330750 928,519.1200,213.9790,20.8980,46.3590,0.05333533 928,151.3890,220.9130,32.0580,71.5260,0.05057519 928,494.6660,214.7960,20.8080,47.2920,0.01703376 929,441.6600,217.1300,20.4310,50.4610,0.47923684 929,431.4060,218.5700,19.2500,47.4850,0.20037030 930,452.0650,207.2770,24.5480,56.9050,0.11685614 930,442.5740,201.8400,25.2310,57.2560,0.01219943 931,161.9500,216.5170,22.9540,40.9470,0.01144261 932,587.6580,200.0320,40.3920,116.8350,0.80469257 932,448.1770,208.5530,21.9060,45.2960,0.47664279 932,606.6420,208.9620,32.9430,109.8680,0.27360511 933,494.9060,200.7550,23.8920,53.7420,0.72294569 934,583.1650,197.3190,31.6450,71.6610,0.72370595 934,579.1320,185.4180,50.6540,107.0070,0.02664059 934,597.6170,198.2870,25.0570,63.9170,0.01055674 935,409.2970,236.8190,28.6700,64.5910,0.17973959 936,408.9430,227.1030,26.6600,50.1800,0.12735638 936,122.9680,201.3980,21.8690,42.7570,0.02891268 936,84.2059,207.4950,23.2611,43.2690,0.01602157 936,538.6800,240.3910,22.7250,43.5220,0.01345995 937,39.1125,197.7720,26.4932,55.2870,0.03602089 937,99.5856,198.2710,22.4674,47.1720,0.01566663 937,16.0859,198.1440,147.4121,58.9500,0.01282039 938,8.6470,191.6530,28.1630,63.5440,0.01740937 938,5.5252,197.5270,109.0758,63.2590,0.01043480 939,365.3730,201.9320,20.7790,40.8790,0.02506882 939,357.8590,203.7020,77.0860,43.9400,0.01723274 939,405.6390,213.8390,26.1700,54.0500,0.01428009 939,446.0220,210.4820,42.8860,127.3800,0.01365091 940,434.0430,247.5870,31.4340,64.3580,0.12602937 940,380.4640,211.1120,20.3320,38.1490,0.09134753 940,412.8100,208.0580,18.8300,38.2560,0.07389389 940,516.4670,260.3080,32.7560,85.0610,0.05979032 940,350.8830,208.5510,87.5320,39.5430,0.04949435 940,355.8760,203.6920,20.4760,40.8740,0.01701126 940,394.3580,209.0220,19.0370,37.7430,0.01527799 940,338.6560,196.5390,164.0720,57.1970,0.01469246 940,99.5311,208.1150,20.9479,38.2530,0.01311661 941,405.2330,205.1020,23.1930,53.7480,0.43732676 941,388.7600,204.4230,22.1050,51.6810,0.36000460 941,442.8850,205.2380,21.4960,48.9100,0.34819084 941,352.7050,207.7290,21.0670,41.3150,0.05633832 941,345.0310,196.5390,156.6070,54.9850,0.01602455 942,433.8040,199.7650,29.8690,71.8530,0.84105247 942,464.8790,197.3160,34.0520,80.9340,0.81159985 942,532.1330,202.5810,29.4570,72.2250,0.63994205 942,378.6370,205.9190,19.9420,41.2350,0.14105625 942,330.0200,168.7960,25.8660,71.6270,0.08888534 942,365.8620,205.9050,21.3670,45.8310,0.05316884 942,447.6730,197.4150,35.5700,79.5340,0.02039574 942,546.3600,203.9490,27.4570,69.0610,0.01732911 942,356.5120,200.9580,48.1260,52.4480,0.01326293 942,414.3410,199.6300,24.8260,57.9350,0.01165843 943,487.5790,212.9610,25.4880,57.5790,0.69774300 943,429.7320,212.2350,24.7370,53.8270,0.38774210 943,24.0828,210.9170,23.4821,36.2710,0.03998510 943,418.8100,200.9410,32.2600,85.9540,0.02007482 944,473.4050,205.0800,26.8090,60.7740,0.07082739 944,460.2360,204.2690,30.0170,78.7300,0.05736014 944,504.2870,199.8250,25.1380,46.7530,0.01113205 945,563.8520,201.7520,43.5320,122.2330,0.81536806 945,596.5410,202.1900,38.6930,115.6440,0.57572186 945,585.0420,202.5030,34.9110,101.4010,0.01559298 945,567.2940,206.3570,30.4170,67.6510,0.01166889 947,154.7240,205.4210,22.5820,44.0800,0.01280429 950,339.5650,183.6150,26.3800,57.4660,0.09328546 950,67.7416,199.8080,21.4649,42.2190,0.05591847 951,354.0030,187.1020,27.9750,60.8210,0.07342827 951,24.3594,199.2650,23.0477,44.7280,0.03001652 951,10.9098,196.7320,31.6382,55.3500,0.01185835 952,362.8190,206.5420,21.5620,41.0910,0.10457360 953,372.1910,201.3630,21.8890,43.5930,0.39404467 953,30.2202,211.8970,26.2135,47.8210,0.07951660 954,398.6020,204.4890,23.4220,49.3450,0.61642838 954,329.5040,187.7900,25.5920,53.6880,0.01920956 955,451.4890,210.4300,26.0200,57.4450,0.61129570 955,342.9040,190.1510,24.3000,51.6260,0.02480050 956,554.9740,204.0240,38.2190,96.1940,0.76460683 956,355.8320,195.3840,23.8900,48.5140,0.02832007 956,116.1600,187.4000,22.6630,51.8140,0.02653629 956,602.9640,198.7760,36.3820,180.8930,0.01488413 957,330.3020,198.4680,21.1380,40.0510,0.02469156 957,368.2390,206.7370,24.1790,44.7800,0.02279371 957,72.3674,183.2190,26.6016,62.0900,0.01574722 958,387.8760,208.8400,21.7550,45.4030,0.08464963 958,413.2830,198.8130,38.5940,96.6070,0.05357825 958,347.2320,192.4630,23.0020,46.6330,0.02570502 958,331.0310,203.8530,20.5440,35.8900,0.01862199 958,339.7260,199.5320,21.6570,39.5120,0.01197378 959,410.9240,200.6860,21.1800,43.6540,0.09324657 959,402.0150,208.6510,22.3560,41.5860,0.05211338 959,175.7330,220.6430,35.7150,76.4680,0.03210124 959,338.7670,201.5420,19.4810,35.5070,0.02795078 959,398.4420,197.7580,43.3250,54.9690,0.01451939 960,442.7210,211.0080,21.6050,47.5680,0.49412745 960,338.0960,205.1390,18.8540,36.2060,0.09472320 960,95.9179,215.9500,22.7351,41.4280,0.06142245 960,419.0100,211.8930,20.6070,39.8190,0.04342301 960,51.7436,208.3600,21.8328,41.5870,0.03295038 960,371.8560,220.7570,20.6150,40.2130,0.02410695 960,444.8420,207.0730,29.6200,74.3850,0.01134908 960,395.3650,208.1420,74.3930,59.7700,0.01050114 960,38.3651,205.5540,90.2329,48.8800,0.01018182 961,7.0778,210.1730,29.9261,59.5390,0.19319674 961,442.1690,216.6180,20.8700,40.4780,0.15171756 961,339.6540,205.9640,19.6420,38.7620,0.12661113 961,368.2150,232.5390,23.8080,43.9410,0.02862444 961,455.3400,215.3430,20.3990,42.0770,0.02542214 961,90.4254,199.9240,22.5116,41.4280,0.01993008 961,435.2430,214.2020,41.4480,53.2810,0.01781809 961,325.5080,205.0140,19.5920,36.9070,0.01656867 961,383.9960,215.9080,23.5500,57.3730,0.01501723 961,418.9960,231.4270,23.2190,49.1260,0.01437971 962,509.1660,214.2240,22.1040,49.2410,0.57927042 962,496.1990,213.4970,21.3820,49.4340,0.36925414 962,421.8680,218.8320,24.6680,64.9630,0.27732062 962,402.8480,242.4240,26.0940,54.3180,0.20950538 962,348.2540,207.1540,21.6060,41.7840,0.14261861 962,338.9460,205.9990,21.0060,42.5440,0.08312197 962,542.0950,224.4790,19.3490,36.1400,0.01723004 962,31.1111,197.7240,23.2475,45.7470,0.01460859 963,368.7730,200.9560,22.6670,47.2240,0.34795937 963,617.5090,213.8370,22.4910,66.8650,0.34319377 963,530.5250,214.1650,35.6260,89.2270,0.21202467 963,467.6260,222.4690,19.7330,34.2660,0.12508328 963,429.8830,219.0030,21.4420,37.3090,0.05528280 963,585.4840,241.4420,21.5090,40.6740,0.04453902 963,600.5120,80.3254,29.6420,74.6316,0.03561769 963,332.7540,196.0010,19.9460,40.0080,0.03311597 963,508.1770,218.9650,19.2800,35.5730,0.03238664 963,356.7210,201.9190,21.3390,45.8260,0.03040018 963,7.8595,180.1550,27.4107,62.3980,0.02722340 963,501.2970,213.5120,80.4400,82.6880,0.02616459 963,347.0990,197.5350,21.3000,43.9050,0.01677653 963,511.7680,272.9860,24.8550,58.8600,0.01628507 963,543.8190,231.0390,39.6130,82.3630,0.01494077 963,375.5680,211.8260,23.8080,42.1390,0.01317733 963,522.0560,276.1480,25.2730,58.8370,0.01047809 964,391.5500,207.8520,25.1760,57.5740,0.59676474 964,555.9850,246.9810,22.1530,39.4070,0.13394232 964,500.3740,243.6650,21.4910,42.6020,0.07931592 964,617.5760,244.4090,21.6710,47.4270,0.07198952 964,413.3800,235.5300,23.4150,44.4880,0.06554481 964,343.8480,203.0150,21.9260,45.3870,0.03603990 964,361.9910,199.7250,20.7140,45.2680,0.02463333 964,146.7100,204.3620,23.1480,37.5700,0.02401134 964,117.4780,205.2280,66.6640,46.7620,0.01591578 965,434.9220,205.8090,29.4710,70.4130,0.81975472 965,360.3460,206.7430,23.3780,49.9050,0.08891313 965,496.0520,275.6780,26.3820,52.8350,0.08241423 965,122.0070,200.6830,22.1580,40.0510,0.03183590 965,179.5610,193.9240,20.5050,36.3870,0.01772431 965,445.4320,264.1860,27.0400,52.3990,0.01213540 965,348.1200,209.2830,22.6330,45.9990,0.01043539 966,548.6880,197.9160,44.4680,114.4000,0.86020476 966,387.2540,204.5290,22.1960,52.1880,0.09424782 966,390.9970,200.8750,30.3170,72.5030,0.05502108 966,95.6913,194.7880,25.8967,43.4310,0.02083659 966,80.4783,191.6070,60.8937,50.4630,0.01425424 966,374.4200,206.5420,21.0780,45.7520,0.01057473 967,431.7370,204.7250,22.3760,55.0120,0.30457672 967,452.2370,204.6690,22.7090,57.2310,0.15148759 967,112.9350,199.4970,21.7720,40.4770,0.08814408 967,439.8560,204.3710,24.2210,59.0030,0.03189192 967,473.0530,194.1770,29.8960,68.7980,0.01511372 967,101.4700,200.3690,23.6440,45.9400,0.01438456 967,437.0800,199.6290,53.4410,65.2570,0.01010509 968,529.8000,218.2800,31.2920,85.9270,0.64255381 968,570.6760,211.8780,31.6540,95.7000,0.54666781 968,555.6950,213.7940,30.9120,90.9810,0.51148677 968,544.6810,217.3160,27.9170,88.8310,0.38996333 968,78.7598,207.5860,24.4312,47.1180,0.30479699 968,584.8800,217.7780,29.5250,89.0830,0.01760866 968,525.1960,243.7500,22.2620,57.0940,0.01677736 968,137.5900,202.3850,21.4910,43.4930,0.01603115 969,32.3823,203.8670,30.4331,56.4100,0.36573258 969,442.1990,195.3670,20.3720,42.9370,0.09861785 969,45.2474,208.9960,27.0209,54.4270,0.03561288 969,543.4050,231.4800,28.4350,63.1110,0.01364029 969,119.3400,196.1440,24.1350,52.0770,0.01088938 970,120.6620,196.2190,21.6260,49.8920,0.07352219 970,30.0954,174.4200,35.3728,87.0120,0.01344489 971,472.6460,205.1510,23.1960,50.3670,0.18970127 971,35.9179,192.4150,29.9469,67.1720,0.06598499 971,120.7040,201.6840,21.0490,42.5820,0.03365274 971,58.9107,198.0590,131.6713,54.6840,0.01281314 971,263.6140,202.2970,21.2330,35.9920,0.01278146 972,517.0860,209.8440,22.3090,45.5810,0.37962663 972,74.0244,207.1970,23.7610,48.6860,0.05695944 972,255.5450,205.5380,21.0850,38.2160,0.04891457 972,46.8839,205.7580,147.9901,52.6530,0.01727257 972,1.3088,197.2340,23.7302,54.0930,0.01322473 973,582.4750,210.3290,24.7290,54.3470,0.17574556 973,237.8650,208.7940,20.8810,37.0760,0.05850071 974,225.2200,212.2370,19.1130,35.7500,0.06871221 974,56.9904,211.5340,24.3741,45.9630,0.02511461 974,409.6960,136.7560,35.2660,100.0710,0.01195598 975,202.7120,230.4460,23.9870,44.7120,0.03620470 975,448.9700,202.5610,27.6100,63.3320,0.03115038 975,322.4180,203.6740,22.4900,41.9570,0.01353347 975,488.6540,1.0000,23.2550,40.5574,0.01291263 976,604.7220,216.6540,20.2010,39.1690,0.12764977 976,340.4860,279.9600,39.7290,85.1470,0.03333957 976,149.4890,248.3590,27.7570,56.0540,0.02806883 976,117.4010,247.3670,31.5550,76.0110,0.01447670 976,579.9560,205.9470,18.2620,35.2070,0.01439029 977,598.4540,216.6530,21.2470,40.2160,0.22621077 977,214.1060,224.9520,21.7630,39.3760,0.02451671 977,149.4220,250.0560,28.3300,60.3510,0.01955745 977,578.6480,208.4230,18.9990,38.4450,0.01145272 977,118.8060,252.1400,29.9940,69.5060,0.01089149 977,589.9430,211.5120,20.4330,40.2220,0.01060542 978,604.6560,216.8140,21.0910,41.4530,0.23558579 978,598.8660,209.4930,32.4550,67.3560,0.01082751 979,611.7890,218.1540,21.0290,39.9980,0.27335623 979,244.8820,276.7790,30.3680,50.7030,0.01670759 979,360.9260,329.8970,24.8620,49.8140,0.01350742 980,264.8110,245.1500,27.8240,57.9890,0.27728069 980,29.8291,244.4130,34.8729,84.3900,0.12346040 980,154.6530,233.5440,30.2670,70.1370,0.12053373 980,616.8080,4.4442,23.1920,51.7498,0.03458827 981,348.3660,264.9570,27.6300,58.2370,0.04611271 981,6.2668,240.9920,58.9344,161.8630,0.03833706 981,458.9480,270.1570,27.6400,48.6740,0.03423037 981,272.2940,252.7500,26.7320,48.9790,0.02909475 981,434.4870,226.9800,24.7620,47.0190,0.02173454 981,20.0517,242.2640,34.8443,69.0140,0.01170506 982,237.6550,231.0400,26.4780,51.6030,0.07980596 982,475.8730,219.6170,20.2180,37.7190,0.02791717 982,310.0510,253.6930,24.7410,47.8120,0.01495067 982,47.0040,245.1970,37.5360,89.0240,0.01115044 983,520.8490,216.8280,19.2660,36.7810,0.09159923 983,160.1500,227.1930,35.6070,68.9990,0.04033484 984,9.1417,219.4170,22.0743,47.4670,0.23901725 984,196.3850,245.7950,21.7840,43.7500,0.01964645 984,72.4479,245.8770,32.1871,52.2650,0.01333135 986,372.6420,224.1340,24.5440,58.2540,0.59992641 986,333.5720,230.3420,24.0660,49.8740,0.19940335 986,282.9900,230.2120,24.3290,49.9170,0.18882565 986,121.9120,227.0210,21.6240,40.5280,0.02756800 986,558.9260,206.2100,23.8510,47.8330,0.01854329 986,240.5850,226.5080,25.7640,50.1900,0.01222793 987,531.5290,221.6590,33.8350,67.5590,0.46754742 987,313.0160,209.8300,25.3050,46.6780,0.22075517 987,449.1660,210.9240,30.0470,71.4750,0.07421253 987,590.2730,220.2790,27.0050,57.1760,0.05981105 987,460.1990,225.9870,26.5560,56.9240,0.01026252 988,508.5550,197.7760,28.1560,57.3580,0.39092204 988,49.0964,228.0990,35.7186,65.0730,0.04601598 988,177.1200,193.8890,23.2810,46.9830,0.01203172 989,217.5750,212.9190,22.1550,43.7590,0.04845252 989,595.0310,195.9350,33.1990,65.6330,0.04478336 989,363.3100,184.0450,22.8190,50.7190,0.04345210 989,333.1250,198.0400,18.9640,37.2580,0.01488818 990,570.5750,206.7860,20.9910,41.6760,0.07716732 990,449.8770,201.8290,21.5760,46.5590,0.06827619 990,223.1300,220.2900,23.5590,41.3650,0.04603219 990,450.8350,205.0900,64.3140,47.5720,0.03063367 990,401.5500,208.0990,19.9180,34.6830,0.02606441 990,490.0660,204.9810,21.7260,43.9290,0.02430449 990,375.2270,195.3280,22.6800,45.6200,0.01803773 990,409.9930,203.1010,144.7490,51.0850,0.01751845 990,112.2630,235.0630,26.6360,55.4420,0.01303259 991,559.3280,207.8250,21.7620,51.6140,0.30822077 991,596.2820,208.9080,20.2880,47.7730,0.27343401 991,538.9350,208.0860,21.8850,49.9470,0.24028912 991,588.6750,209.8760,19.0970,45.9030,0.14619704 991,580.0780,210.1970,18.7780,44.0030,0.11422915 991,476.9710,211.3080,19.0880,38.5310,0.06991341 991,542.7720,207.2490,86.3770,52.7910,0.04075724 991,571.9290,209.3610,18.9930,45.6160,0.03446537 991,444.7470,209.5480,195.2530,49.1080,0.03082479 991,469.4560,212.3540,19.0820,35.9830,0.01996030 991,434.2980,205.0450,21.7700,40.3600,0.01526716 991,410.7100,203.7870,147.5710,50.8140,0.01481432 991,505.7610,211.7190,22.4090,41.2510,0.01109634 992,547.4210,205.0510,23.5120,52.4490,0.65822452 992,518.5910,206.2690,21.3740,47.8220,0.49475837 992,583.4250,208.3190,22.9430,48.9890,0.28185242 992,616.0370,204.5550,22.8640,59.3130,0.22427268 992,477.4500,202.3400,19.7350,40.6330,0.07849011 992,561.5570,213.4280,19.9970,41.3100,0.04923002 992,569.1870,214.0090,21.1200,42.8320,0.01329245 992,462.0980,201.1440,177.8870,51.0250,0.01277552 992,468.8540,206.0020,19.5320,37.7700,0.01276404 992,531.4460,205.1840,63.1290,50.0910,0.01024240 993,531.2440,206.9040,22.0300,49.2810,0.41715488 993,597.7010,216.3320,23.7480,53.2720,0.39144859 993,506.7370,205.0140,20.0940,43.6070,0.26376200 993,588.7170,210.8200,24.7400,52.9200,0.01523012 994,587.7600,211.1280,20.1320,49.5600,0.36559159 994,616.4040,213.9380,21.0010,54.7160,0.09112196 994,595.6880,210.9070,20.7970,51.5730,0.06462880 994,575.6990,211.6060,20.9000,49.8460,0.04193704 994,342.9020,242.6470,28.2570,58.3220,0.01253415 995,522.5630,198.6280,20.9760,38.9560,0.01985017 996,537.9300,207.9750,21.1300,37.3080,0.07002699 996,308.1260,232.2890,25.0600,55.8580,0.06957649 996,522.8420,211.8250,19.5600,36.3140,0.02636463 996,264.7720,233.7650,24.6130,54.8690,0.01456708 996,527.6690,201.0060,40.3290,52.8680,0.01189759 997,554.3590,206.1300,21.8130,45.8640,0.19649754 997,592.1040,202.9940,20.2090,39.9740,0.19427682 998,277.0260,227.3570,26.8410,53.9320,0.15148367 999,360.6060,144.3420,37.7930,94.8010,0.03906996 999,296.0530,225.6330,22.9360,48.5260,0.01783872 1000,384.6090,207.1180,21.7390,45.0290,0.02737211 1000,274.3220,227.7520,23.0310,46.3110,0.01025329 1002,440.0030,193.6160,22.0540,48.7280,0.41652778 1003,463.6250,199.9310,27.2160,65.9620,0.46220511 1003,500.1350,204.4230,20.2220,40.9670,0.03353618 1004,500.2610,201.2060,28.5860,63.4930,0.82926542 1004,378.6310,208.2490,19.9600,37.0810,0.03497291 1005,540.4260,203.6230,31.2460,75.4460,0.53495091 1006,392.8060,195.0710,23.3900,53.2580,0.07555115 1006,296.7040,216.7690,27.4700,68.9820,0.05189246 1006,440.7110,204.0760,21.3700,39.5940,0.01008805 1007,328.9030,222.2620,27.0290,58.7130,0.02472087 1008,558.1600,198.5670,34.0410,90.2300,0.46717963 1008,542.1700,197.4100,21.0710,45.1340,0.40112191 1008,345.8610,208.1420,19.6530,41.1020,0.04981912 1008,401.4440,200.1150,20.9290,44.5530,0.04188398 1008,554.1480,199.7640,25.0540,57.8420,0.02418043 1008,354.8590,207.5390,20.3160,42.9560,0.02405452 1008,363.8020,204.9530,20.9680,47.6340,0.02017369 1008,330.6910,206.1350,53.7030,47.8470,0.01033665 1009,576.2050,196.9210,23.5910,48.4040,0.50007039 1009,608.6620,192.6390,30.3470,108.9830,0.40161869 1009,426.9080,202.9680,19.7240,39.3960,0.17005096 1009,378.0000,206.7540,20.1040,40.6910,0.07766569 1009,365.2350,208.1500,21.5620,45.5460,0.01090938 1010,616.1770,202.9260,22.3760,51.3870,0.57692242 1010,438.2280,210.5360,19.4640,38.9970,0.09502435 1010,606.3660,198.7050,22.0730,58.4680,0.02589340 1010,341.6380,202.9600,19.6640,34.3040,0.02426879 1010,354.2870,207.2780,24.0080,50.7480,0.01625696 1010,259.3660,230.5100,23.4010,49.5070,0.01534825 1010,446.7630,205.0720,23.2910,50.5170,0.01493781 1010,411.3760,211.8290,21.0800,42.5830,0.01060947 1011,534.6740,217.4110,22.8450,47.4110,0.41609517 1011,474.8810,217.5120,20.9260,46.1190,0.34379005 1011,407.8760,218.5430,25.6580,52.6030,0.05494896 1011,365.3840,212.7390,19.4490,36.6040,0.04342770 1011,484.1420,216.0010,20.4960,46.5130,0.01266094 1012,559.8820,218.1580,23.6760,53.9770,0.61561155 1012,454.9600,220.4950,26.0740,61.4460,0.08009376 1012,402.4810,215.2550,19.2880,34.6430,0.04190338 1012,389.8680,214.2980,19.1590,34.6010,0.02321754 1012,283.7980,251.2890,23.3990,50.9170,0.02060512 1013,473.1400,207.9930,20.3960,49.0160,0.43581596 1013,454.8810,208.0320,20.8790,46.4680,0.35866103 1013,592.1500,206.0160,29.6480,71.7990,0.32365024 1013,428.7900,208.8400,19.5520,41.0730,0.21176104 1013,383.0540,208.8250,30.7150,77.4410,0.19267845 1013,408.2150,206.6580,21.1760,48.2530,0.13830522 1013,419.3660,207.3430,19.8330,43.8290,0.03763233 1013,448.2330,206.8750,19.0270,44.0870,0.03392770 1013,230.0660,228.6560,29.0010,56.9110,0.02761647 1013,319.3780,219.2320,28.1150,68.3360,0.02254015 1013,372.4830,226.8040,29.4850,63.0060,0.01940019 1013,435.2260,205.8650,51.8360,47.1610,0.01538190 1013,328.6190,208.6930,212.1700,53.9500,0.01416641 1014,557.6830,217.8840,30.3270,79.9340,0.82310188 1014,498.3490,211.9620,21.8660,52.9330,0.62312257 1014,480.9650,213.1380,21.6150,52.1140,0.54194838 1014,420.9020,216.4790,40.9140,109.6820,0.49689272 1014,490.7240,212.3690,19.9700,53.5310,0.33030495 1014,544.6670,212.8870,22.9410,50.5980,0.19952673 1014,429.6510,265.9740,29.8300,68.2730,0.15118380 1014,452.5700,212.4440,23.3820,56.4870,0.13172144 1014,553.5370,212.6990,25.2120,60.5020,0.11257239 1014,436.2330,213.1430,28.0940,75.5210,0.07536647 1014,413.7370,235.0170,29.6060,72.0880,0.05522734 1014,425.4250,210.9270,27.9650,66.0100,0.02299764 1014,343.1240,255.4400,31.0420,82.0690,0.01573770 1014,444.9680,214.3890,35.2810,96.4780,0.01570329 1014,465.1520,210.4370,24.9810,53.0490,0.01038779 1015,583.2250,213.4680,21.8620,52.4500,0.56948090 1015,518.3630,213.8290,23.6070,55.6800,0.49242604 1015,470.7780,222.5900,49.5920,125.7200,0.41409767 1015,568.8420,216.1040,20.9330,49.0640,0.36832607 1015,504.9460,214.4640,21.7230,56.4630,0.13611589 1015,617.9750,225.1730,22.0250,76.4020,0.11910239 1015,484.4050,281.1590,34.3940,91.0250,0.03409320 1015,484.7590,218.0640,27.7490,74.1590,0.03138253 1015,484.0120,214.2770,21.4080,46.2820,0.02903776 1015,405.1350,213.4880,25.7530,54.1130,0.02512072 1015,381.9120,218.4230,61.8030,102.8040,0.01355234 1015,425.7440,214.3430,139.2140,67.1100,0.01242468 1016,613.3390,196.6510,21.3270,49.4890,0.06705119 1016,556.4330,197.3820,82.7820,51.8380,0.03966960 1016,594.5280,193.1690,21.8600,51.4470,0.02769997 1016,602.5500,196.6780,22.7260,52.0120,0.02714398 1016,605.5840,197.2180,32.5400,79.3180,0.02292439 1016,563.7500,196.5310,22.2130,49.0040,0.01854955 1016,579.1900,195.4280,22.2030,50.5620,0.01527213 1016,601.6670,1.0000,35.5410,137.1490,0.01223855 1017,617.3150,225.8390,22.1540,58.9740,0.50411761 1017,52.4581,231.8470,25.5945,51.0400,0.05580636 1017,250.5180,240.6730,29.9080,63.9740,0.03303714 1017,509.4030,217.3440,20.3320,36.7940,0.01825943 1017,78.6223,259.4200,31.9677,62.7290,0.01164883 1018,599.8030,228.0270,24.3510,61.7760,0.76713866 1018,617.6420,228.2120,22.3580,58.4770,0.39329514 1018,607.7960,221.3010,25.0990,62.2520,0.16005133 1018,481.2730,217.6000,20.5200,38.5240,0.02901249 1018,36.8937,275.0780,34.8944,78.8670,0.01383658 1018,335.3610,114.5360,26.0960,47.6210,0.01369163 1019,553.0560,210.3800,26.5330,66.8410,0.80902064 1019,609.4030,212.3170,24.1150,56.8440,0.76164061 1019,571.9110,211.0760,26.4730,65.9150,0.71665514 1019,417.2850,207.0880,20.9280,35.6690,0.02553527 1019,580.8920,205.0260,28.3230,67.7750,0.01913037 1019,376.7850,187.3000,25.6550,57.4280,0.01094603 1020,565.5420,224.9860,26.8720,78.3640,0.87986583 1020,588.8200,222.7710,28.5790,74.3550,0.81243271 1020,617.6880,230.7000,22.2870,62.0600,0.63849366 1020,62.9496,251.2990,34.7202,62.6850,0.04245806 1020,394.6630,217.0200,21.8220,40.0720,0.03539003 1020,361.2410,221.8700,20.5680,42.2760,0.02431045 1020,104.6010,227.7460,26.7220,60.4680,0.02089500 1020,575.6180,223.0180,24.9650,68.0260,0.01518825 1020,84.6694,306.7350,28.6826,59.2170,0.01407001 1020,384.6200,213.2420,49.5250,51.2950,0.01015809 1021,109.5960,239.2750,29.3200,56.2950,0.07289421 1021,412.6000,220.1770,20.8720,38.1610,0.04411357 1021,378.0530,228.6450,21.5590,46.1920,0.02330355 1021,349.1880,217.6800,172.7670,56.1430,0.01503088 1021,323.9190,190.1670,22.2170,48.4750,0.01330067 1021,615.3860,1.0000,24.6140,46.9440,0.01095002 1022,155.2600,235.1050,32.4870,68.9720,0.09093530 1022,456.2500,217.2500,22.5080,41.7010,0.04364550 1022,381.9640,209.0600,21.1370,41.4130,0.03523955 1022,433.5570,151.4950,30.0120,81.4820,0.02619475 1023,513.1520,215.2220,30.1970,78.6120,0.11153645 1023,421.9080,192.8670,24.2450,54.9340,0.04038010 1023,522.4920,106.1940,38.2930,113.0160,0.02456090 1024,460.8760,194.7380,23.2220,54.8560,0.29822862 1024,591.3980,217.0870,26.4130,64.1660,0.01064538 1025,528.1770,199.8980,31.9690,75.7170,0.78895903 1025,511.1810,190.8950,62.1630,94.1820,0.01349174 1025,322.0880,208.6960,21.0800,36.7250,0.01241869 1026,422.8010,210.0740,24.4810,57.2680,0.24797714 1026,11.1850,240.0090,35.0001,80.0280,0.02339523 1026,241.6660,220.3620,23.4840,42.4950,0.01110413 1027,460.2430,204.3100,25.6840,62.9690,0.02282882 1027,70.7383,232.4630,28.8579,70.7670,0.01357256 1028,577.9110,188.6070,31.9900,79.0850,0.15718654 1028,114.5570,218.8370,24.0270,48.0890,0.01892052 1030,233.8480,221.0970,24.6570,49.4070,0.05105560 1030,219.3310,232.6270,34.3680,92.2550,0.02195505 1031,482.8150,136.4210,36.7580,102.9480,0.01371222 1032,551.9720,73.4149,26.9870,61.2171,0.01092603 1033,566.4280,65.5978,27.0820,68.9832,0.01927879 1033,595.7320,34.0232,30.6660,73.9988,0.01416220 1034,483.1410,208.4520,22.4210,49.8750,0.02485193 1034,92.8643,222.6620,24.7127,43.9300,0.02170705 1034,134.9250,221.5360,26.0290,45.5270,0.01436228 1035,550.7620,196.4970,22.8750,52.2560,0.38728118 1035,505.8390,200.3860,20.2210,45.1200,0.21286464 1035,121.0540,216.8630,21.3070,39.8010,0.02129926 1035,504.8020,170.7430,28.1890,66.2100,0.01336246 1036,584.2130,208.1760,22.8940,50.6770,0.29623342 1036,521.1030,207.8740,22.7760,52.7780,0.15654203 1036,115.0540,213.9520,56.5190,140.5880,0.11422512 1036,564.3000,212.6630,19.9590,40.7150,0.10327400 1036,119.8290,298.2360,34.2410,77.4730,0.02941251 1036,155.0160,264.1760,36.1500,87.3170,0.01153409 1036,566.6920,208.6650,28.7150,58.7780,0.01144399 1037,617.7230,206.7880,21.7230,57.9880,0.20340866 1037,542.6570,300.7360,36.9880,96.2620,0.02538865 1037,387.1900,200.7520,66.8210,49.2920,0.02106423 1038,514.6930,205.5990,21.5920,49.0130,0.32791883 1038,612.0660,196.2480,22.6050,56.2060,0.31192625 1038,463.3920,201.1660,21.4920,49.8460,0.06499527 1038,589.0690,208.1970,20.3020,38.4400,0.04714588 1038,557.2000,206.2450,21.0340,44.6220,0.04435459 1038,548.5110,205.5160,74.8060,43.4890,0.04398782 1038,415.6430,202.8730,70.0250,45.9600,0.04104419 1038,4.5926,199.4770,19.9759,44.8370,0.03124646 1038,499.8480,202.3520,140.1520,55.2960,0.02368143 1038,584.1780,311.9050,45.4000,108.5000,0.02185663 1038,385.2670,197.5160,143.8650,54.9260,0.01815842 1038,536.0560,209.4590,22.7940,45.8670,0.01787271 1038,472.5000,200.2280,21.1290,47.7860,0.01027573 1038,579.7050,210.3670,21.3080,35.3060,0.01015781 1039,486.1170,204.6640,24.7360,61.3760,0.33366421 1039,534.3330,208.0180,22.7670,58.7450,0.31046987 1039,546.0120,211.1730,21.5190,54.2490,0.17082246 1039,512.0480,210.9990,23.3860,58.9610,0.13490118 1039,522.5400,207.5060,21.8730,59.4340,0.06692411 1039,616.5650,219.1610,21.4940,48.5820,0.06463666 1039,365.2300,214.1470,18.4330,34.7480,0.01258775 1039,309.9230,204.7600,160.6550,49.8450,0.01187933 1039,501.5520,204.5470,59.5620,62.7320,0.01163707 1040,412.0130,201.1300,22.1790,50.0980,0.49520409 1040,583.0830,195.9840,29.1570,75.5850,0.45694175 1040,545.6160,197.9690,23.0860,56.8020,0.25159872 1040,489.0200,203.5260,23.5240,61.7310,0.18394680 1040,515.9350,201.5190,23.9270,63.1270,0.15965226 1040,524.5710,202.7280,29.8400,74.8850,0.10142915 1040,476.3210,205.4800,21.2570,51.6760,0.03617351 1040,447.9280,205.4860,21.1120,46.5410,0.02927805 1040,380.4870,203.3850,19.5920,40.9980,0.02677817 1040,394.8430,201.7270,151.0310,52.4840,0.01566592 1040,424.8800,202.7110,20.2610,44.5870,0.01430731 1040,222.7470,218.0500,20.1430,35.7240,0.01426070 1040,395.8510,205.8840,57.0020,44.0680,0.01005253 1041,453.9640,202.4210,24.1440,60.4450,0.57326007 1041,403.0880,208.8160,21.4660,49.5100,0.34493566 1041,605.7280,200.7030,24.1840,63.7290,0.29994449 1041,543.3390,199.9410,24.7500,62.0570,0.21931887 1041,499.2560,203.4530,22.0330,54.8500,0.19228722 1041,464.7400,202.4060,23.5400,61.3830,0.18614390 1041,521.3650,201.3810,20.7570,53.7860,0.17027619 1041,443.9760,205.6710,20.0130,53.8580,0.13609168 1041,571.5750,205.8090,23.1890,56.7050,0.07748968 1041,529.5780,204.1520,21.1580,53.5300,0.04443738 1041,561.3810,202.2190,25.0610,65.5470,0.04355090 1041,584.9110,205.6870,23.9220,62.4430,0.04343800 1041,594.9950,206.1390,22.1070,58.3540,0.03916970 1041,3.6864,203.2600,24.1225,56.2340,0.03046788 1041,508.6900,200.0240,53.1640,51.2940,0.02383808 1041,320.7250,203.5480,224.7790,46.6210,0.02346445 1041,462.2770,202.3580,146.2930,51.5810,0.02327042 1041,430.0490,207.5810,21.2110,50.6010,0.01961191 1041,240.4820,192.0690,386.5090,66.8280,0.01664338 1041,556.8110,201.8090,61.3480,66.8470,0.01560690 1041,476.9230,208.6190,22.1760,54.6420,0.01548675 1041,424.7730,209.6990,79.2330,47.2670,0.01320480 1042,568.5230,199.7100,35.7950,97.9320,0.82833219 1042,456.2640,209.3660,25.1260,58.0200,0.72902131 1042,513.8450,207.1000,25.1200,66.1370,0.52626389 1042,609.6840,202.8210,28.4350,83.5910,0.39017409 1042,535.3350,205.2280,27.3620,77.3560,0.38921469 1042,548.6720,206.0440,23.9840,65.9010,0.15705602 1042,561.2180,201.2480,27.0940,81.7390,0.06866124 1042,471.6830,203.5610,23.1130,56.4630,0.06685512 1042,448.7720,207.0840,22.5920,54.9400,0.04361448 1042,581.0250,202.8980,27.0440,66.1830,0.03938263 1042,604.0770,201.1880,24.6950,62.3150,0.01459194 1042,386.9820,211.5780,22.8580,40.4880,0.01371026 1042,521.3690,217.1730,26.6350,62.3490,0.01004002 1043,590.8630,209.8390,35.9110,104.7260,0.49102083 1043,564.7840,205.3110,32.3590,96.5160,0.46309215 1043,520.3950,207.4380,28.0890,66.8670,0.44004625 1043,389.8730,215.2980,25.1290,57.9720,0.18853618 1043,578.3900,207.6020,33.9460,102.1780,0.12840049 1043,414.6280,209.8830,24.7360,56.0010,0.05010602 1043,553.7250,200.2210,30.9010,93.9080,0.04964246 1043,425.4910,210.6690,22.1270,49.7680,0.02412585 1043,400.3890,212.7810,24.2560,56.5110,0.01668771 1043,541.3790,206.6900,27.3320,72.7870,0.01204025 1043,575.8170,204.6440,27.9520,64.0400,0.01202542 1044,502.8230,214.0430,30.4710,74.1170,0.86446184 1044,470.9920,214.8350,29.7170,74.4690,0.81410307 1044,482.9710,213.0330,30.9080,69.3050,0.04956425 1044,73.2726,203.9470,21.2600,42.5290,0.01905021 1044,1.0000,164.9080,27.2324,80.9880,0.01126946 1044,409.5670,206.4610,23.8960,42.8710,0.01023208 1045,474.1280,205.9660,20.3890,44.0200,0.03308318 1046,579.7140,200.4750,27.6380,72.8870,0.15265521 1046,481.3800,209.6980,22.0080,48.4520,0.13147709 1046,596.0630,197.7040,32.2940,94.1610,0.08916112 1046,562.2450,204.5270,24.8090,52.7410,0.03344850 1046,532.0300,206.3880,23.2380,44.2060,0.03075100 1047,596.9170,224.0880,35.1050,86.9280,0.32154724 1047,609.9520,232.9410,24.6970,59.5790,0.01144305 1048,369.8970,197.5480,22.9990,48.2310,0.01471657 1049,379.7650,213.7440,19.7950,37.5710,0.04422327 1049,347.1570,197.4740,19.3640,43.4750,0.02221968 1050,409.9290,191.2300,20.2700,44.4930,0.10149197 1051,436.0170,205.1020,20.4180,43.7280,0.01970860 1051,400.5430,175.7060,25.9940,63.2200,0.01205557 1052,444.6930,202.6360,22.4840,46.6260,0.05258665 1052,457.8760,202.9800,21.1120,46.0070,0.01232277 1053,520.4700,212.5940,23.1810,49.6010,0.41079187 1053,473.9620,203.8180,22.5720,49.9620,0.18711053 1053,508.1650,207.9710,22.1550,56.4370,0.18328919 1053,371.4190,185.2090,23.3450,50.7600,0.06028033 1053,299.9580,211.8090,20.1440,33.5270,0.01644036 1053,363.7730,188.7340,20.5910,48.6730,0.01193436 1054,375.9350,189.8040,21.2740,46.6590,0.01207357 1055,570.8140,213.1890,32.1640,82.5270,0.41475335 1055,188.6420,217.4240,21.5250,40.8160,0.11026898 1055,262.8700,213.0170,27.5440,53.6580,0.07539672 1055,492.8840,212.3640,20.8790,44.2050,0.06115545 1055,517.2350,230.3510,22.4580,41.5830,0.03357735 1055,322.2270,206.7680,23.7240,40.3120,0.01075549 1056,199.5040,216.8380,22.9240,44.4030,0.49630761 1056,293.0500,213.3850,28.3570,57.7060,0.17600378 1056,588.0110,208.1290,30.9990,62.9000,0.08782607 1056,103.1490,212.4960,25.7140,52.4480,0.03156650 1057,347.2290,212.1090,27.0430,57.5750,0.52278531 1057,267.5100,213.7250,27.2640,55.9310,0.08225209 1057,4.5817,155.6320,34.0589,90.2260,0.02136596 1057,532.1530,203.9060,23.2790,39.1810,0.02076544 1057,462.3070,223.7470,32.9350,58.6320,0.01944151 1057,513.0100,192.7690,22.2300,43.7070,0.01000995 1058,549.8810,220.5900,26.3230,60.3110,0.21792020 1058,183.2800,153.5300,33.2450,81.7200,0.01591643 1059,193.6130,177.6670,26.7760,62.7460,0.02853324 1059,504.6380,193.0700,53.2520,69.7230,0.02054501 1059,500.8880,113.2870,31.0480,63.6390,0.01588212 1059,520.1510,198.6040,25.7510,52.2070,0.01379283 1059,551.6270,193.0610,34.1670,62.8500,0.01220532 1060,412.2460,206.6210,23.5180,52.4400,0.12276092 1060,510.4800,211.4480,23.1270,46.1310,0.04137655 1060,501.4740,207.6470,36.6030,69.6590,0.01800827 1060,514.3000,289.2390,41.0350,102.0130,0.01747140 1060,382.7040,188.8600,28.4230,57.6900,0.01232309 1061,484.7750,223.3490,35.3790,63.5300,0.03680079 1061,386.4820,229.4170,27.4710,56.0750,0.02829821 1061,190.2190,216.1240,25.2180,53.1150,0.01266507 1062,483.1350,276.2040,32.9780,81.3670,0.16803515 1062,527.7590,217.3110,26.1630,54.1630,0.10048214 1062,400.4890,202.0260,21.8030,46.6650,0.03511650 1062,125.8890,228.0290,31.7760,74.2750,0.02935822 1062,60.1591,187.8780,31.3003,57.6790,0.01521743 1062,154.6690,230.3560,30.5950,68.0980,0.01489637 1063,540.7940,179.0210,24.0900,61.1670,0.13308670 1063,405.4140,199.5760,26.7580,64.1060,0.08886160 1063,191.6240,225.3300,25.8210,53.0470,0.02333930 1064,151.0600,213.9180,34.1620,80.6650,0.08464180 1064,363.1210,227.8850,22.5070,51.4250,0.04361377 1065,450.6230,278.4190,26.1760,60.3430,0.02901143 1065,356.5610,224.8530,21.4090,42.8200,0.01698694 1065,101.2530,224.9120,28.6360,54.0340,0.01277983 1066,374.8830,212.8290,28.8350,74.0500,0.10676733 1066,482.4740,283.1620,33.6490,82.3290,0.07200901 1066,427.5150,221.4750,31.7770,75.7190,0.03992562 1066,385.6580,197.9950,84.5540,55.6600,0.01066466 1067,215.9140,220.9610,25.1110,51.1150,0.02091583 1067,80.0723,206.1390,22.7267,39.1800,0.01741217 1067,450.5140,201.4200,21.2450,43.2870,0.01337489 1067,368.0100,203.4440,148.4740,52.5940,0.01285090 1068,1.0000,212.0850,30.0508,85.3250,0.19950826 1068,488.1840,211.5000,21.4220,46.1120,0.07368688 1068,410.6230,220.9880,24.0110,46.9250,0.01284797 1069,437.2340,224.9570,26.7350,62.7340,0.25546512 1069,476.3630,208.0330,22.2570,45.7270,0.07182433 1069,527.5120,212.8630,23.9720,48.6790,0.02835158 1069,402.5600,218.0920,23.2600,44.2500,0.02130107 1069,493.7670,218.0540,31.0350,59.4600,0.01778695 1069,436.9950,208.7060,144.5760,53.0720,0.01679923 1069,417.9180,208.1450,20.8010,48.3100,0.01640534 1069,466.1020,213.2810,52.7680,51.6330,0.01058206 1069,280.7030,205.9490,359.2970,67.0040,0.01034402 1070,476.4620,221.9140,24.8060,53.5820,0.46024305 1070,497.7530,186.9220,24.3170,66.8450,0.26719216 1070,576.2080,214.5760,24.7570,53.9460,0.15950590 1070,603.4940,210.8940,23.8580,54.8590,0.15442218 1070,432.2180,208.9840,25.1410,59.5190,0.10749757 1070,485.1880,208.6580,27.1140,60.7690,0.04495783 1070,502.0640,270.8460,35.2550,70.7000,0.03234257 1070,580.0170,211.9090,41.0030,67.0640,0.02542256 1071,570.3660,221.4560,30.0790,75.6310,0.55821258 1071,465.2660,207.9820,27.6310,67.7280,0.30517375 1071,491.8970,217.9480,22.8540,50.9790,0.04223333 1071,367.3400,181.6540,33.2950,86.6580,0.03554730 1071,478.5990,211.8840,25.3820,56.3940,0.02041966 1071,375.5790,206.3110,32.8710,76.4540,0.01538909 1072,519.4840,205.9090,21.4350,44.8580,0.14684971 1072,618.6260,211.5620,21.3740,63.0540,0.13752103 1072,390.4290,163.4100,33.4010,94.3850,0.10935918 1072,585.2460,223.2470,30.0620,68.0020,0.03442971 1072,184.1620,217.1650,29.2280,66.4970,0.02800744 1072,426.6950,218.0380,32.5480,84.1190,0.02766090 1072,465.9760,216.0320,47.8220,113.4940,0.01615449 1072,369.5390,205.6040,21.7640,56.2110,0.01505913 1072,64.0503,206.0170,29.2268,52.3730,0.01365610 1072,42.0791,202.1060,155.8209,53.5630,0.01283122 1073,458.9290,213.1590,36.1390,98.5380,0.76039898 1073,491.2570,210.5560,28.8050,73.1360,0.34590855 1073,575.0950,205.6700,24.7420,50.7350,0.05723606 1073,478.6750,213.6530,31.2900,81.7350,0.04839081 1073,397.4860,223.0570,24.0150,53.0420,0.04372286 1073,2.7361,199.7430,106.4839,58.2670,0.03625847 1073,446.4870,208.3690,32.9040,86.8650,0.02199293 1073,343.8250,206.7560,22.2380,41.7460,0.01163926 1073,438.6780,203.2040,25.9130,62.9690,0.01150337 1074,580.1400,217.6600,56.5440,162.8240,0.60903275 1074,472.4380,194.5490,29.9360,56.9810,0.03772441 1074,509.8800,286.0040,30.0190,68.3520,0.03445007 1074,349.8460,208.3390,28.4250,54.7830,0.02977368 1074,606.6370,276.2370,33.3630,102.8840,0.02887089 1074,106.8380,216.2850,32.8460,69.5940,0.01892762 1074,586.3140,273.9160,35.4900,105.2560,0.01697734 1074,391.0830,181.3040,27.7630,57.6740,0.01065022 1074,472.1580,258.0070,24.4680,62.4050,0.01027581 1075,590.9910,199.3700,22.7760,53.5900,0.14054137 1075,485.6070,207.3050,26.8960,69.8000,0.05446674 1075,502.6730,268.1500,32.9910,72.9050,0.01479311 1075,572.6210,194.3800,51.1100,65.8490,0.01295186 1075,513.7390,173.8530,26.2720,67.0840,0.01190306 1075,580.8850,201.4100,24.6890,54.1810,0.01095154 1075,98.0410,203.9800,23.3970,41.6190,0.01039114 1076,385.7120,211.6840,26.5140,64.7120,0.19881058 1076,435.6580,208.8460,20.0650,40.5350,0.02352154 1076,40.6822,200.8870,25.4508,47.6200,0.02250726 1076,461.5620,218.6250,25.8010,60.3580,0.02023596 1076,522.8740,205.5550,22.9530,46.8850,0.01574439 1076,427.1700,189.6150,30.4810,67.1360,0.01270097 1076,349.8150,214.9060,24.0250,44.5210,0.01087396 1077,414.0100,215.9920,31.9130,90.6630,0.85165089 1077,503.8670,211.9970,22.9920,49.6980,0.11513136 1077,401.0980,227.9650,22.4030,56.4850,0.02351962 1077,545.9990,216.7150,22.7220,45.5190,0.02105498 1077,464.3920,224.0350,42.3920,109.5270,0.01819309 1077,465.5960,207.9720,22.3570,47.0110,0.01707024 1078,495.9070,218.5860,52.8790,149.2130,0.84318966 1078,569.1950,210.3830,28.7760,64.2900,0.35130879 1078,438.8770,244.6410,28.9870,69.5760,0.11611674 1078,502.9110,279.2500,33.6730,86.8930,0.03689837 1078,520.0590,213.6570,27.4010,64.6300,0.01321539 1079,466.6860,259.7530,29.1630,69.7740,0.09908593 1079,541.5840,92.4313,34.9040,86.2547,0.06768606 1079,616.2440,210.9710,21.5680,52.9090,0.01875834 1079,601.0220,208.9350,21.4060,41.4600,0.01715979 1079,533.9350,265.0220,36.3510,61.8720,0.01609599 1079,543.6800,209.7970,22.7720,44.4610,0.01503744 1079,562.0140,208.9410,20.5910,38.0850,0.01233025 1079,533.0200,205.9750,42.6840,77.9090,0.01144534 1080,401.0930,229.7060,24.9340,50.2450,0.02757581 1081,579.4150,213.9130,32.3380,80.9810,0.07112243 1081,434.2410,205.6600,28.3760,54.2310,0.02344609 1081,540.5820,211.3650,30.6340,72.4720,0.01350867 1082,556.6810,211.7860,31.0880,66.4580,0.18153745 1082,468.7830,212.8410,26.1750,48.9140,0.04081162 1082,385.1640,219.5310,27.2530,48.3790,0.01080724 1083,484.8340,210.3830,23.8220,49.4140,0.08725472 1083,405.2850,216.1460,23.4900,47.5840,0.03409100 1083,86.7315,234.1270,25.9615,52.0560,0.01445825 1084,114.0910,208.6490,20.5430,36.7700,0.04502796 1084,122.8240,208.2330,20.1040,34.3390,0.03185295 1084,470.5670,221.6220,25.1780,47.0390,0.02212924 1084,422.7110,208.1900,23.4760,48.1980,0.01781860 1084,37.2007,204.6820,27.2071,51.6830,0.01561503 1084,87.9660,174.3760,25.1470,54.9780,0.01264397 1085,558.9390,210.2360,22.2710,51.5830,0.50303948 1085,542.1120,216.0330,22.6210,49.3900,0.43910673 1085,372.1420,223.5030,25.6020,59.6520,0.20512418 1085,80.8058,204.8520,22.0142,43.2820,0.06822576 1085,465.7470,211.6500,22.1700,48.0250,0.06521846 1085,71.9632,199.0880,70.0238,44.9340,0.03136928 1085,90.4421,203.7890,21.0049,41.2270,0.02212862 1085,514.8250,230.4050,21.3610,41.7640,0.01771644 1085,98.1436,200.9780,21.6274,41.4220,0.01361085 1085,537.8660,210.2020,48.7340,58.1950,0.01249355 1085,449.8560,207.5550,23.4070,42.8110,0.01063174 1085,71.8389,187.9940,26.4874,59.3570,0.01016513 1086,610.4690,216.6890,23.9380,62.3950,0.22399096 1086,50.4276,205.3680,21.4728,47.8090,0.19476698 1086,562.3920,217.0830,31.4090,80.1850,0.19265792 1086,554.5440,218.5510,26.0400,62.3490,0.09704924 1086,447.5640,290.6530,29.8930,59.7950,0.06138050 1086,487.7070,208.2450,25.0970,55.1140,0.04841521 1086,66.3701,202.6730,21.2834,42.7720,0.03507536 1086,600.4540,223.3270,25.7940,57.4410,0.03469305 1086,6.7415,197.7100,124.7955,58.2520,0.02036152 1086,392.5750,203.4940,24.9300,56.4130,0.01667446 1086,472.3240,210.2170,25.6590,52.6520,0.01577171 1086,38.6039,204.0940,63.4971,45.9330,0.01342535 1087,554.2680,212.6870,33.1120,77.3850,0.29073319 1087,28.1616,208.0810,20.3999,49.0640,0.28125590 1087,517.2600,232.7310,30.7970,71.6690,0.18296611 1087,4.5036,216.2490,22.0767,51.2690,0.08587168 1087,20.1277,212.4650,19.6840,47.7450,0.07063398 1087,408.8680,207.0510,25.0180,56.6770,0.05902307 1087,520.9690,211.2130,26.2080,58.4440,0.05497768 1087,84.5151,202.7940,23.1319,46.0890,0.04937825 1087,392.2100,207.8800,21.6780,49.8890,0.03959979 1087,37.5853,207.4600,21.3371,46.6720,0.03387857 1087,11.8747,205.3670,43.4013,55.9340,0.02829443 1087,511.5320,215.6450,27.1580,73.5870,0.02541033 1087,505.2810,241.0140,30.6840,75.8420,0.01048820 1088,14.6313,205.9670,26.0342,55.3880,0.41125402 1088,431.8890,207.9670,27.8090,64.6400,0.27115619 1088,572.1400,208.2690,24.1560,49.5030,0.21665168 1088,549.7230,211.5300,21.2180,42.6400,0.08861066 1088,3.4966,174.9280,33.6723,85.3640,0.03088332 1088,411.7560,204.5720,20.8460,45.4220,0.03017158 1088,5.6096,207.6680,22.4091,54.9970,0.01942018 1088,616.7430,289.3790,21.0500,56.8530,0.01854509 1088,527.2960,208.9730,56.7660,50.5490,0.01596578 1088,439.2460,154.3550,22.8140,50.2380,0.01214404 1088,498.7550,206.0680,116.2670,57.7640,0.01191428 1088,5.4454,184.8190,79.1477,80.4890,0.01142198 1088,509.3520,211.0920,25.1010,46.9520,0.01100882 1088,393.0510,186.7210,22.9590,51.1180,0.01080798 1089,606.8530,210.3830,25.8490,60.4370,0.52450407 1089,576.8580,214.3770,23.4630,50.8670,0.06975979 1089,526.6950,201.5600,24.9980,49.5470,0.05922731 1089,1.0000,199.6760,21.7501,53.4370,0.04570782 1089,432.8690,211.5710,25.0150,55.7660,0.03902544 1089,96.2942,198.1190,23.5978,56.6440,0.02847579 1089,532.8130,98.3527,24.6000,51.3773,0.02789866 1089,481.1680,218.1800,28.2310,47.8140,0.02358351 1089,117.7880,197.6480,24.7950,50.8270,0.02183915 1089,597.2100,212.1340,25.0310,53.7430,0.01317987 1089,467.3960,216.0760,34.0990,71.1630,0.01137517 1090,474.3750,215.8410,32.4630,70.8280,0.09465166 1090,426.3880,217.0390,25.5360,54.8280,0.06298133 1090,535.3830,80.0367,26.3830,64.6333,0.02623373 1090,512.5110,206.0510,22.0570,49.1390,0.02384073 1090,391.5510,189.7730,22.3670,45.0260,0.01964209 1090,462.3820,134.2170,26.1230,55.8130,0.01596382 1090,486.5150,215.8480,24.6400,49.0290,0.01446197 1090,586.0210,214.9810,27.4750,50.0870,0.01355961 1090,488.2410,87.9022,30.6000,64.5608,0.01231815 1091,317.7860,184.7500,22.7920,49.2230,0.06452665 1091,418.4460,223.1620,36.6220,71.6050,0.05389123 1091,361.4990,215.3350,25.1520,58.9180,0.03392471 1091,535.0780,214.3910,34.4760,58.2160,0.02287585 1091,476.7740,83.2690,28.2750,58.7760,0.02279265 1091,29.5938,213.5570,28.3994,48.9180,0.01187774 1091,355.4960,209.2480,23.2120,48.3940,0.01055835 1091,347.6590,202.8330,21.0410,39.4090,0.01009335 1092,544.1510,226.0730,37.0390,91.8220,0.79256040 1092,584.6070,222.7910,30.5970,79.2170,0.62440628 1092,605.6620,218.7470,28.2980,82.8800,0.56051528 1092,297.9650,227.0870,33.1910,69.4550,0.09307501 1092,311.8700,223.4550,30.0540,64.0150,0.05092424 1092,364.6740,67.2429,30.2530,63.7111,0.04489101 1092,420.9910,214.1540,39.4510,61.8460,0.03870101 1092,225.9740,217.5590,33.5250,75.8960,0.02501739 1092,286.6550,230.4460,30.6500,69.1570,0.01814199 1092,322.0510,217.0030,21.5730,48.9360,0.01629920 1092,390.2830,216.1240,78.7640,74.1940,0.01574031 1092,438.0760,213.8680,26.0950,46.8610,0.01453582 1092,373.7780,222.2400,30.0940,56.0160,0.01263306 1092,211.7320,201.0910,22.0650,43.2190,0.01183890 1093,573.6800,216.0950,43.2020,123.9420,0.73650074 1093,535.8890,223.9390,39.6490,116.1640,0.71897399 1093,496.4570,219.2540,37.2140,94.2480,0.44676426 1093,512.7540,209.8580,35.2520,103.0110,0.19310644 1093,73.7762,213.2660,48.0488,111.8030,0.11502938 1093,325.6810,219.4090,42.4230,71.7680,0.10233000 1093,240.8950,192.9000,45.0080,101.7090,0.09100779 1093,540.9470,272.3830,28.7400,65.5600,0.05404089 1093,143.9720,200.0160,26.1880,59.7100,0.02847486 1093,1.0000,225.4830,33.0139,76.6310,0.02344816 1093,564.8670,216.8140,33.4360,106.9710,0.02065346 1093,6.1877,175.3420,34.0756,74.4290,0.01499160 1093,590.3390,255.2970,31.4360,77.1730,0.01433863 1093,254.1910,204.8030,30.4850,57.5840,0.01337205 1093,129.9010,191.7070,31.0070,76.2260,0.01080989 1093,183.7040,34.5644,30.0840,77.8836,0.01038071 1093,238.1810,206.3650,34.5880,61.2230,0.01015753 1094,358.1180,202.9350,54.8000,157.4270,0.72432452 1094,294.6090,209.7390,54.5770,157.5170,0.66283357 1094,373.6290,203.5320,37.3110,98.9380,0.25838035 1094,613.0240,192.0590,26.5200,104.2490,0.23531950 1094,602.5910,191.3370,25.4820,69.2520,0.11242981 1094,307.3000,250.2810,34.1870,105.1340,0.04653495 1094,357.4950,210.7250,36.8690,92.6910,0.02875141 1094,281.4250,210.2620,42.3000,126.8640,0.02464947 1094,590.1250,194.6470,30.4170,83.8730,0.02012668 1094,302.8090,207.0940,43.0500,87.1820,0.01652514 1094,317.2060,201.6560,42.8750,130.9320,0.01237951 1095,575.8760,228.1240,36.2200,91.8100,0.81739622 1095,349.9930,214.7010,44.1670,119.1540,0.69935697 1095,398.2040,210.0460,29.4590,79.1900,0.50014246 1095,17.9829,219.7730,79.2264,231.5170,0.40261748 1095,382.9780,210.4710,24.7780,70.8950,0.36799428 1095,500.5650,221.3700,30.4730,65.9150,0.30202106 1095,355.9820,257.6930,32.0740,69.9440,0.09152073 1095,616.1380,234.6460,23.8620,86.9680,0.08669230 1095,411.7190,212.1820,27.6430,76.2280,0.08213519 1095,46.6866,212.1410,58.4774,163.7210,0.05572662 1095,363.6940,209.4530,28.3960,76.5880,0.04742438 1095,7.2075,225.8740,45.3839,203.5710,0.03516123 1095,603.2550,224.5110,30.0970,93.2420,0.01859159 1095,13.5008,237.6210,44.1532,100.8910,0.01023360 1096,461.6280,229.6020,44.4420,121.6780,0.83073473 1096,175.6530,209.2110,35.1030,85.3450,0.82678252 1096,257.4720,207.7720,33.4140,94.4460,0.80490333 1096,51.3768,217.5740,74.7922,201.0390,0.79736030 1096,213.9860,204.5180,36.5000,94.8510,0.78527427 1096,509.3900,222.2780,47.9290,130.7630,0.77605790 1096,343.0270,216.8030,29.1840,66.4680,0.70988673 1096,506.6800,213.2860,24.0700,64.7730,0.11787325 1096,525.2750,217.7430,27.2680,71.7940,0.10087393 1096,503.9850,208.7380,36.9480,107.0790,0.03263182 1096,200.2290,208.4420,30.9810,78.1280,0.03074976 1096,353.9690,212.0570,28.5430,58.5490,0.01291544 1096,482.8090,222.9450,38.9830,110.9450,0.01154852 1096,230.2410,202.3970,29.0140,82.6970,0.01144580 1097,217.3980,209.3940,36.3640,100.9090,0.86337161 1097,266.6630,202.6400,43.5770,111.4860,0.86263561 1097,330.9020,215.5700,30.4190,71.8960,0.83207631 1097,155.6960,204.2040,42.3100,106.1050,0.79262477 1097,525.1670,235.5060,62.7930,187.4960,0.72288036 1097,512.5240,220.8650,21.7530,51.6490,0.50712365 1097,591.6870,244.8970,46.0630,171.3020,0.42825493 1097,522.2810,221.0020,21.0310,53.1070,0.19509563 1097,497.0160,211.4040,18.8590,37.9190,0.13854168 1097,529.8480,219.6170,23.4620,58.1750,0.06600440 1097,538.3560,251.9580,38.3860,112.2620,0.04291784 1097,427.0210,192.2600,19.9080,39.0410,0.02754532 1097,267.0350,266.6500,23.9220,49.1470,0.01860781 1097,393.9950,164.6740,25.9890,58.3690,0.01440900 1097,506.8780,216.4620,19.5830,40.4680,0.01431093 1097,532.4920,223.7860,33.8700,80.1700,0.01308083 1097,253.6540,203.8440,37.0630,90.3040,0.01231542 1097,587.5390,144.5590,27.3780,62.5750,0.01142010 1097,544.6400,234.7090,33.4960,71.7020,0.01074818 1097,185.6120,195.5510,55.6510,105.7960,0.01065728 1097,566.3190,215.1210,50.2780,150.2640,0.01023211 1098,224.4650,209.2250,46.6710,127.8070,0.83629841 1098,297.9940,200.8370,48.1890,137.6350,0.82441705 1098,339.1860,218.6210,31.0380,76.0190,0.77604657 1098,127.1270,206.4290,50.7520,133.0120,0.73491579 1098,535.8820,225.5550,23.5840,60.8000,0.69259030 1098,556.6140,228.6220,22.1690,56.0110,0.57897758 1098,508.9650,214.9620,19.0950,38.5990,0.14322391 1098,329.3920,206.8430,51.8490,123.6530,0.03121383 1098,317.0510,251.4010,32.1390,82.1670,0.02962066 1098,599.8490,169.5500,28.2410,56.5050,0.02577473 1098,242.2190,212.3560,48.8960,116.6680,0.02398010 1098,377.3290,214.3430,21.6610,41.8630,0.02283515 1098,328.2280,211.0880,31.0890,91.8950,0.01682650 1098,270.6300,213.9840,47.9180,124.2490,0.01360097 1098,182.4430,213.6820,61.7840,106.3050,0.01141874 1098,148.1120,213.3280,44.2550,115.5890,0.01135329 1098,350.8030,216.0940,25.2900,59.4860,0.01117361 1098,304.4360,261.3910,28.6220,74.0200,0.01112146 1099,153.3760,200.6040,61.0620,175.8340,0.84843069 1099,440.5870,224.1600,28.1860,78.0800,0.82727653 1099,204.6520,222.7550,36.0360,85.1190,0.81411451 1099,21.1221,211.8150,67.8203,183.4650,0.73831314 1099,459.9770,228.4240,28.7700,76.9110,0.71992993 1099,505.0110,172.3110,30.4280,60.6760,0.11487174 1099,404.5960,219.7670,21.0770,41.3680,0.07520452 1099,180.2810,210.6680,47.3830,147.3260,0.02088066 1099,209.6050,258.0330,24.6290,45.5870,0.01612095 1099,55.8877,209.8120,61.2903,159.0220,0.01477480 1099,293.1360,201.8600,19.7720,37.6070,0.01056512 1100,93.5422,215.2450,42.2168,106.0930,0.78663772 1100,402.4120,226.7450,32.6650,100.1120,0.77851200 1100,425.0000,233.1960,32.5470,97.2870,0.72204435 1100,131.4990,213.2460,28.6350,65.4440,0.51208210 1100,334.7510,215.8000,21.0200,47.4430,0.41616839 1100,183.0090,211.8910,21.7080,43.6150,0.19770277 1100,1.0000,199.7410,50.7999,258.9460,0.15911275 1100,464.0120,162.1250,25.5890,62.0180,0.05481504 1100,172.1450,209.2210,23.4790,48.8040,0.02456680 1100,365.8230,213.0250,26.8920,56.3060,0.01955852 1100,414.7780,246.3060,29.6960,81.9600,0.01594340 1100,100.3470,255.7740,29.8120,61.3620,0.01505569 1100,409.3410,230.4310,23.4520,55.8080,0.01379517 1100,162.3180,212.5080,23.2510,50.4280,0.01121460 1100,74.3092,196.8340,74.6678,103.7690,0.01016859 1101,20.9636,219.7590,51.5983,122.2570,0.73629946 1101,489.9860,236.2090,51.1970,157.8600,0.73524988 1101,85.2030,214.9650,35.8940,85.7170,0.72692555 1101,453.1690,248.7780,51.1030,141.6130,0.61102855 1101,165.8540,214.1630,23.2760,50.0230,0.57547605 1101,318.1110,216.9740,22.6350,54.1900,0.55919975 1101,151.4300,211.0140,21.7360,51.3260,0.23357616 1101,474.9990,254.2970,45.6600,141.8820,0.09948233 1101,498.1830,245.7070,33.4860,96.4650,0.07138218 1101,465.5480,234.8810,25.4190,61.1180,0.03226103 1101,476.2130,243.9150,31.8260,97.1000,0.02912654 1101,227.3910,201.6600,20.6600,37.2960,0.02287101 1101,141.6180,210.0880,22.9590,50.3670,0.02089234 1101,255.7980,208.9970,21.4310,35.8250,0.01779176 1101,46.2875,213.1360,35.9389,87.3910,0.01451158 1101,507.8240,231.5760,54.7410,143.8070,0.01204949 1101,365.5360,213.2130,28.5890,63.0070,0.01088287 1101,56.1738,214.3270,54.6522,107.1960,0.01087019 1102,175.4430,216.1540,24.1010,56.7280,0.67197752 1102,341.4760,221.2130,25.0110,57.7400,0.66664529 1102,155.2850,210.0530,25.6260,61.8200,0.63734585 1102,6.4695,214.2620,45.2659,119.4480,0.34917468 1102,278.8690,208.9040,19.6290,37.0100,0.06034343 1102,23.4697,215.1990,38.3597,93.6910,0.03175458 1102,260.3680,205.6850,17.4110,33.5910,0.02203797 1102,252.2180,201.8770,18.8110,36.8440,0.01365117 1102,267.4630,209.7780,19.7300,33.2480,0.01060348 1103,130.5210,212.4680,30.7530,78.2520,0.87571394 1103,363.5900,222.7290,30.5050,73.6770,0.83212548 1103,164.9460,222.2370,28.5400,69.5460,0.77420789 1103,157.1050,216.1930,25.0160,68.4870,0.06446344 1103,259.9940,202.0060,18.9560,36.0200,0.05294834 1103,293.7730,209.1260,20.2470,36.3170,0.03511678 1103,481.0260,204.5960,23.9320,52.6550,0.02869117 1103,276.1400,206.9280,18.5850,33.4130,0.01710433 1104,70.2035,214.2830,45.9405,119.8770,0.83221817 1104,116.4630,220.6040,41.7570,117.4790,0.83191925 1104,155.6970,226.0160,27.9400,71.8670,0.82499945 1104,390.3840,225.6850,40.8120,106.9310,0.80387914 1104,575.6900,214.4540,32.4590,77.3650,0.15448143 1104,306.2970,212.2190,19.7280,37.7390,0.10999173 1104,145.1200,224.0910,28.6520,85.0230,0.02853597 1104,274.5540,204.9750,19.5730,39.0270,0.02747729 1104,133.6160,222.1380,26.2780,74.7020,0.01845718 1104,99.3457,224.9210,33.0593,100.0200,0.01588456 1104,292.5020,211.9340,19.4810,33.7990,0.01265531 1104,68.7497,224.6350,31.2329,79.5610,0.01183818 1104,121.0330,271.5520,30.3630,65.4960,0.01172531 1104,282.8630,209.4880,20.0770,35.2520,0.01148982 1105,70.5499,215.4320,46.9331,129.1150,0.83949977 1105,111.4930,225.5180,41.4560,116.0880,0.82677007 1105,469.1790,225.7170,65.9970,178.5950,0.82100672 1105,2.2625,285.8780,34.8149,138.6400,0.28456646 1105,325.6630,209.6950,20.8450,42.1220,0.26602760 1105,476.4610,239.0650,37.7920,124.9250,0.08575358 1105,87.5482,224.9140,33.1918,90.6980,0.04953305 1105,8.6353,231.1450,49.0675,181.0410,0.04229029 1105,103.6030,221.4940,31.7470,103.8670,0.02052998 1105,299.8010,204.6280,20.6180,37.7280,0.01211381 1105,121.5920,216.7810,64.8020,129.3610,0.01141302 1105,493.5490,238.4560,38.3020,123.5540,0.01030827 1105,1.0000,171.3110,28.1480,121.2050,0.01001125 1106,2.2765,229.5400,57.7675,222.8160,0.68929082 1106,335.0300,212.0860,21.8880,46.2640,0.35944119 1106,325.2610,214.5410,19.1730,37.3890,0.03225983 1106,317.7250,213.6070,19.1500,33.8780,0.01112278 1106,281.2790,211.8280,21.9020,38.9000,0.01035372 1107,336.5930,216.9090,22.5440,50.9860,0.55401164 1107,325.5920,217.1090,20.3790,42.6160,0.03647901 1107,302.1890,214.8370,18.0430,32.6400,0.02091648 1107,283.9470,217.4560,18.6710,33.6130,0.01649672 1107,317.0400,215.1340,19.9960,38.0700,0.01575284 1107,344.5260,210.2260,21.5140,50.1810,0.01054396 1107,291.5520,214.1780,18.7310,33.8740,0.01014386 1108,360.5200,208.8380,25.9210,60.3980,0.61790276 1108,429.6760,208.5210,26.5200,57.5680,0.39518449 1108,285.6840,214.1290,20.1040,40.2470,0.12535180 1108,308.0790,212.8680,18.4320,36.4640,0.06400961 1108,299.9840,214.3500,18.5660,36.8620,0.05352446 1108,323.7480,212.1820,18.6320,37.7110,0.02896228 1108,331.8790,213.4430,21.1030,42.3690,0.02856121 1108,314.7050,208.6260,20.6820,39.0530,0.01081040 1108,344.9500,212.7810,24.7980,56.7770,0.01042054 1109,392.6940,216.3570,26.9090,62.0420,0.62669569 1109,310.4790,215.6970,19.5700,44.3740,0.34660640 1109,294.6210,218.6040,19.8920,42.3860,0.22969782 1109,435.6160,220.8130,26.3880,57.8080,0.11491622 1109,322.4100,217.7510,18.8990,39.1700,0.06699647 1109,330.5480,216.2930,18.4470,37.7680,0.06131117 1109,337.4390,217.2500,20.3240,41.1840,0.01324773 1109,447.3890,225.8720,23.1500,49.1490,0.01101665 1109,403.9250,215.5330,25.8890,61.4020,0.01090041 1110,438.3780,220.1690,31.1520,81.1560,0.66820657 1110,306.9130,219.8580,20.2940,49.1510,0.49137381 1110,317.1390,218.2620,19.8780,52.5230,0.46326584 1110,357.8680,216.5410,26.7050,63.7020,0.12050304 1110,425.4200,218.3900,31.8110,79.7870,0.07664547 1110,325.3330,217.2920,21.7710,51.1910,0.05307807 1110,342.3060,223.0880,19.3870,40.3300,0.04806614 1110,398.5910,195.7170,23.9090,47.0290,0.02009722 1111,496.9080,219.3140,44.5760,111.0850,0.81542271 1111,314.1410,216.2630,25.1420,66.3550,0.69812268 1111,331.8070,215.4160,25.9090,67.5520,0.63026267 1111,364.4100,224.8520,20.2680,42.2250,0.22474506 1111,382.6680,217.4300,28.7460,68.5990,0.10753524 1111,503.4660,259.1350,29.5660,64.1090,0.01499479 1111,341.1980,217.3880,28.8430,63.0700,0.01183645 1112,305.2920,215.5950,30.3300,85.9700,0.82379872 1112,326.5200,213.8280,31.7180,88.5000,0.81309843 1112,562.7040,226.7630,53.2480,130.9710,0.79867792 1112,372.9080,227.4440,22.4520,46.1470,0.36055550 1112,571.9830,233.6020,37.0750,80.6660,0.14966363 1112,577.8040,276.9390,34.4060,80.3720,0.01474528 1112,400.9190,222.0600,31.9810,79.0460,0.01456385 1113,275.1580,218.0360,35.6070,112.2300,0.85090202 1113,299.7770,219.4980,35.3550,108.1440,0.75892013 1113,372.6660,228.7720,23.9700,47.9620,0.49519634 1113,309.4340,265.4780,28.6190,61.4360,0.03115560 1113,395.5630,229.3760,25.6180,60.4900,0.02977991 1113,280.5520,264.4290,26.3520,64.1820,0.02845565 1113,275.5590,220.5580,27.3770,57.1870,0.01995898 1113,384.0630,231.0610,23.5290,50.4700,0.01931516 1113,296.5230,220.3500,26.6660,72.3380,0.01482933 1113,455.0610,224.6200,28.9150,57.2040,0.01472376 1114,199.6380,214.1530,46.0700,148.6710,0.80863208 1114,231.4240,208.0970,54.1850,156.9230,0.77528822 1114,377.7340,224.9970,24.6380,51.2080,0.63812512 1114,294.0690,208.5290,19.6740,33.7270,0.08204535 1114,203.6040,220.8740,33.9350,77.5360,0.06676243 1114,233.3320,214.8220,32.2430,85.2050,0.05674046 1114,513.0180,228.7410,23.7380,47.7210,0.02793739 1115,49.3519,212.7790,89.6541,238.7580,0.83524591 1115,380.9240,223.3950,23.6150,50.9930,0.65232140 1115,103.3570,203.9960,71.1930,222.7610,0.45401719 1115,290.0500,207.4910,19.4240,34.4670,0.16041255 1115,61.4244,215.1520,40.0396,77.2930,0.05128453 1115,138.7200,275.4860,36.5780,99.5310,0.04111233 1115,128.9430,230.6040,42.1740,108.7910,0.02682451 1115,56.7497,207.8870,59.4503,138.0710,0.01428649 1115,105.2430,207.9330,39.7930,89.3100,0.01322312 1115,149.9360,363.6860,37.0960,79.4040,0.01320125 1115,228.3490,242.4880,22.2430,42.4530,0.01110544 1116,379.8290,246.7850,24.8020,53.6730,0.66982305 1116,287.4810,231.0790,20.6550,35.1100,0.27989498 1116,453.2230,193.1240,29.0830,62.2270,0.05828643 1116,290.1250,211.3760,23.5600,51.5340,0.03142218 1116,548.8010,228.6940,34.1220,83.0990,0.01264080 1117,386.4570,257.7290,24.6070,52.4310,0.63946563 1117,284.1130,243.0980,20.0390,33.6680,0.19070515 1117,464.9180,201.0420,27.5550,60.5780,0.12065066 1117,578.4950,235.3850,41.4480,89.7160,0.01346050 1118,385.6470,232.5620,26.7560,55.2860,0.82934123 1118,273.6840,213.9410,19.7830,36.9350,0.34553325 1118,477.1920,173.1300,28.0510,57.5020,0.01591453 1118,283.0160,206.5390,17.9520,37.6470,0.01186820 1119,378.3630,238.5010,28.4270,60.9290,0.83751297 1119,255.0050,221.5490,20.7240,39.8330,0.33127522 1119,275.4950,213.6130,17.9360,32.0320,0.05540065 1119,591.1090,188.1260,24.2360,54.8550,0.04026721 1119,109.6960,149.1240,30.7910,69.8130,0.03499893 1119,266.5690,217.2370,18.6470,35.8430,0.03235298 1119,579.0290,189.1820,40.9890,95.1730,0.01039412 1120,373.7960,213.9510,29.1640,62.8850,0.89064240 1120,235.7940,191.3600,20.9250,42.0510,0.28354609 1120,260.0610,179.9380,19.5820,37.3340,0.07751928 1120,252.2750,184.7390,20.1420,39.0050,0.01357615 1120,503.0160,166.9190,31.1690,80.9320,0.01158552 1121,385.6900,232.1120,31.6920,75.8820,0.89954823 1121,228.3560,218.2910,21.2670,42.8470,0.38643578 1121,258.2410,206.4040,18.2500,33.2930,0.15237670 1121,294.1520,205.8970,20.1640,35.4810,0.01947095 1121,499.2060,219.8310,24.9920,55.3530,0.01642600 1121,245.1090,210.6780,18.0360,36.9270,0.01116018 1122,416.7850,243.7090,34.3810,86.4740,0.87472230 1122,220.1000,215.4690,23.9240,54.2390,0.67077380 1122,253.8420,207.3860,18.9570,36.8930,0.21723706 1122,231.1010,212.1090,20.2320,44.0240,0.02083047 1122,247.5740,209.2450,17.2100,36.9920,0.01928380 1122,48.1046,208.4170,25.9177,55.7490,0.01285434 1123,474.9940,251.3010,48.5010,122.7540,0.84327662 1123,216.8890,211.3030,28.3840,64.3600,0.64262652 1123,253.3350,205.4470,19.6340,41.6060,0.36569047 1123,246.0980,206.3960,18.4270,40.9450,0.10803936 1123,232.5420,209.5550,20.7360,48.0980,0.04005575 1123,316.7310,208.7710,21.0450,35.2140,0.02330365 1123,486.2880,296.0580,31.1120,74.9930,0.01338483 1124,208.1710,218.1040,32.8490,79.6780,0.82141191 1124,265.7120,207.9420,19.9090,46.2080,0.50864464 1124,348.8730,209.6810,20.4840,41.1710,0.20016672 1124,250.6430,212.2530,18.1630,38.7010,0.19201288 1124,317.1750,206.1490,18.6830,32.2160,0.06163216 1124,402.1570,226.5840,26.0560,62.3550,0.01827604 1124,64.8934,82.6460,29.5175,69.1840,0.01274219 1125,150.4780,220.2060,48.0920,114.3930,0.76255107 1125,260.5150,211.6580,21.8340,51.8570,0.69703656 1125,364.3950,216.0420,21.3080,47.1760,0.43281701 1125,251.5020,211.5210,19.8710,51.0060,0.41519794 1125,242.2360,212.7880,21.2240,49.8250,0.06731426 1125,324.2770,210.0290,19.1580,33.0620,0.06662530 1125,455.8990,266.3470,30.2520,67.5440,0.05385371 1125,158.2130,221.9010,30.5860,72.3500,0.01773704 1125,204.4480,244.5140,21.2500,35.3870,0.01318041 1125,338.7520,211.2510,19.3510,36.2670,0.01132440 1125,150.6170,259.8490,30.5390,75.2570,0.01039341 1126,238.8400,211.0160,24.3160,62.3760,0.77071983 1126,218.2390,208.3520,25.3750,65.7210,0.65555793 1126,371.3610,218.7030,23.5100,53.9860,0.60575891 1126,324.8450,209.0440,18.5430,35.8860,0.18460061 1126,2.0642,211.4930,54.8931,186.9430,0.11343672 1126,168.6920,258.9820,22.9110,36.8730,0.01854423 1126,1.7646,215.2440,35.6993,122.0250,0.01136566 1126,342.7380,213.6770,18.0020,34.2280,0.01124468 1127,208.5790,216.1880,30.6160,79.7490,0.83738005 1127,184.4050,203.8030,32.9810,90.9160,0.78492320 1127,387.7760,217.8050,29.2290,68.3060,0.73250705 1127,323.3660,206.3110,18.8720,39.1340,0.20022993 1127,315.6910,209.5310,19.3520,36.7090,0.10817617 1127,137.1360,222.5480,22.9230,47.4860,0.07695676 1127,382.4030,221.9410,24.0180,49.8120,0.01330407 1127,201.3250,205.4350,27.5030,76.2530,0.01200261 1127,188.2780,248.4790,23.4030,45.0040,0.01017162 1128,409.1920,225.0780,36.9810,89.8820,0.82448190 1128,131.4660,213.2580,47.2420,137.7220,0.80910891 1128,93.5220,204.7930,49.9990,150.0820,0.76537114 1128,314.1500,212.4430,19.8040,40.4370,0.37955615 1128,302.7140,214.2580,19.0600,39.6150,0.16291238 1128,349.6520,211.1020,21.5070,44.1470,0.05681692 1128,334.6810,211.5250,17.4570,36.9640,0.04100511 1128,136.3360,220.1230,32.8400,81.4510,0.02799224 1128,140.7210,272.6490,32.7780,79.2310,0.02436855 1128,170.5260,206.8680,24.8070,48.4600,0.01700526 1128,477.5760,231.1490,38.0020,67.4170,0.01342673 1129,466.8660,222.5500,52.7970,140.7630,0.86378795 1129,313.3890,207.6120,22.1870,50.8870,0.55455655 1129,337.5670,209.1400,18.8420,41.4140,0.17137204 1129,300.1180,209.1350,19.4940,43.9590,0.14884838 1129,355.1960,209.6830,24.5960,55.0470,0.14687198 1129,347.2380,209.9410,20.1470,43.9870,0.05892023 1129,473.4090,272.8850,31.5970,85.5810,0.04673697 1129,488.1910,257.3450,33.3190,103.0150,0.02159591 1129,480.7950,228.0350,35.4550,87.3140,0.02094614 1129,129.5510,207.1280,23.3110,44.1790,0.01687480 1129,136.4490,200.5270,32.3430,53.3200,0.01582728 1129,158.5830,212.7250,23.1660,41.2350,0.01226083 1129,455.1090,231.0310,32.0300,88.7630,0.01049942 1130,316.4380,212.2730,23.4370,51.1910,0.63270575 1130,288.8750,211.1600,22.3440,50.7530,0.53631926 1130,101.3020,202.6260,28.7520,64.6520,0.40635723 1130,355.6230,214.1340,21.6840,52.6170,0.38631195 1130,309.8490,207.9360,20.6070,49.6090,0.05354134 1130,341.7630,213.2190,18.4070,43.9970,0.05213390 1130,327.4330,213.1890,20.0310,47.5460,0.04031064 1130,119.2580,213.5180,21.8530,45.3650,0.03728451 1130,366.5990,216.6010,23.9350,53.9620,0.01812426 1131,38.6826,194.6510,36.8026,87.4550,0.70070362 1131,260.8570,210.5160,23.7620,55.9790,0.67340136 1131,291.1290,213.8310,23.7690,55.3330,0.60259980 1131,329.6190,211.8200,23.9990,62.9810,0.50862628 1131,347.0650,214.0860,25.2210,64.5070,0.14265493 1131,270.3010,206.4590,24.5070,59.0610,0.03968304 1131,229.7540,214.4040,24.7540,53.6820,0.02026605 1131,281.3570,207.9380,26.6290,53.1010,0.01879977 1131,32.2257,200.9960,28.7241,67.5640,0.01258549 1131,383.5560,88.4096,33.2540,77.4504,0.01202975 1131,355.2410,219.1890,29.0890,64.7640,0.01002205 1132,230.0360,213.5380,25.0230,58.2670,0.72209841 1132,259.7820,209.4500,24.1980,63.8000,0.68106776 1132,294.3990,218.5310,25.9620,63.9370,0.57781452 1132,314.4820,217.6860,25.6240,71.1820,0.39367110 1132,305.7870,218.3380,23.7200,67.1920,0.16618028 1132,340.3920,232.6140,29.1560,64.2960,0.06639569 1132,359.3880,86.1141,31.8350,75.7749,0.03786948 1132,268.9210,219.9300,23.5660,56.7290,0.02179561 1132,322.4980,223.9190,28.8460,70.4520,0.01517570 1133,276.4830,224.4250,25.9630,70.3460,0.74880576 1133,304.6580,219.0150,28.3780,80.7260,0.69934249 1133,253.9980,212.0250,27.5230,72.0380,0.53638148 1133,287.5390,223.9930,24.0860,72.5080,0.05108895 1133,219.8660,210.6880,22.9530,46.1620,0.04257476 1133,340.6810,239.1350,30.4080,64.2420,0.01921367 1134,299.8360,220.7370,32.1980,90.2650,0.75285733 1134,325.9210,219.9170,35.7320,99.2970,0.72490239 1134,311.8730,218.4330,32.9870,97.5590,0.35452691 1134,361.4810,231.3500,38.9710,68.8490,0.01399767 1134,306.0520,213.1410,80.3410,88.4350,0.01219106 1135,351.8100,216.3420,40.8260,124.5040,0.79268831 1135,317.9900,219.2510,35.0530,109.7110,0.65708262 1135,332.5260,229.8190,30.5230,95.2590,0.23651960 1135,320.7370,265.2070,26.0760,65.5410,0.03308798 1135,404.5710,53.4938,30.7980,65.0412,0.03249371 1135,342.9760,269.3340,28.0530,64.9590,0.02014403 1135,394.4990,54.0183,44.5110,104.8107,0.01392969 1135,281.1660,206.7750,22.3390,36.7550,0.01186166 1135,359.5780,210.9020,26.8110,63.1260,0.01172826 1135,312.1120,210.0420,83.9500,93.6050,0.01135253 1135,402.7620,258.7430,36.7570,75.1580,0.01024100 1136,381.6910,227.7410,46.4480,142.9360,0.81741560 1136,328.8410,233.5520,41.1410,125.3210,0.68910861 1136,354.0700,235.8160,37.3880,127.3640,0.59779572 1136,389.4450,219.7360,31.9100,90.2480,0.24714547 1136,404.7820,228.6270,37.4500,114.7230,0.06165965 1136,254.8610,212.9750,23.3830,49.1330,0.04169903 1136,358.9930,216.2570,24.3000,55.8880,0.04158885 1136,352.3470,241.4370,28.6960,72.0380,0.03962149 1136,374.6530,233.3230,33.8020,117.9400,0.03600334 1136,404.7900,221.5340,27.6600,75.2010,0.03331012 1136,334.9670,279.4930,29.6900,72.4470,0.02179540 1136,409.7650,279.7780,36.3750,89.9210,0.01760455 1136,386.4110,290.3490,34.2610,79.1150,0.01756054 1136,316.6720,209.4430,78.1760,115.5220,0.01542049 1136,291.6530,204.3940,21.1050,36.2300,0.01452519 1136,331.2390,222.6990,32.9910,71.2940,0.01303094 1136,409.3370,49.1744,36.8660,82.7936,0.01106658 1137,424.3960,232.2660,55.4420,178.0260,0.71287006 1137,352.1410,236.9630,53.0260,165.1960,0.68191314 1137,393.6890,263.4540,44.2800,147.0110,0.56209332 1137,422.0710,212.7640,31.6490,95.8110,0.21808866 1137,385.7810,255.8620,34.8770,104.3130,0.16962039 1137,368.1660,289.9200,36.5340,102.3490,0.14436023 1137,409.7580,250.1270,45.7880,154.7670,0.10217841 1137,423.7470,242.6690,35.4920,100.6230,0.04269327 1137,432.5110,332.4290,37.3360,79.9750,0.04098088 1137,360.0680,213.4940,25.4940,56.3760,0.03086372 1137,256.1400,213.5580,20.2150,37.7380,0.02211086 1137,400.7840,255.2900,31.7890,98.5070,0.01575225 1137,449.7620,222.3570,22.5180,47.3380,0.01478402 1137,398.8430,239.2160,24.8070,52.7690,0.01334748 1137,291.4420,207.4260,22.7300,39.1620,0.01188412 1137,439.8070,220.6080,37.0240,87.7190,0.01088658 1137,348.6700,248.8800,36.8320,100.0540,0.01032935 1138,514.2780,246.8430,70.9560,215.9420,0.72598118 1138,412.6220,250.6270,68.6170,208.2010,0.72032827 1138,464.3450,278.4700,61.4790,203.0680,0.60867339 1138,380.7770,222.4700,22.6480,46.4270,0.37122101 1138,457.7730,281.7190,37.8760,108.6950,0.22319810 1138,369.2550,217.9160,22.2260,47.1000,0.21677732 1138,441.1290,227.5200,55.6200,191.0860,0.16840595 1138,452.5410,222.1150,31.9930,81.5250,0.11114781 1138,259.9130,215.0510,20.3970,39.9570,0.10417414 1138,507.3210,289.7520,38.2570,111.4510,0.08352549 1138,443.2950,359.8080,33.9020,89.7630,0.07871297 1138,460.1770,226.4110,45.3090,112.8290,0.05671306 1138,471.5960,367.7900,35.3950,95.0430,0.02666135 1138,480.4530,285.6910,36.3810,100.7300,0.02484090 1138,523.4080,374.3440,51.5770,113.3440,0.02478945 1138,410.6440,279.1360,38.6460,110.7980,0.01845676 1138,527.4230,254.8390,37.1820,95.0720,0.01676061 1138,434.8650,261.4760,28.2540,57.3270,0.01438543 1138,360.1640,209.1280,23.6560,53.1610,0.01339890 1138,423.4010,46.9456,38.8080,95.0254,0.01218326 1139,466.1290,225.0730,34.2410,97.6090,0.51072264 1139,480.6820,224.3890,34.7500,96.8390,0.41551158 1139,401.4520,222.9850,21.2210,43.8860,0.39697024 1139,275.4800,213.9260,20.3170,43.5310,0.28725651 1139,519.5370,273.3580,105.2610,238.6420,0.19471531 1139,387.4190,217.9580,20.2210,42.9620,0.15085420 1139,493.0450,230.0330,37.3110,84.6770,0.03492987 1139,520.0700,328.9880,47.3300,146.0030,0.02376313 1139,598.0210,295.3700,38.9940,216.6300,0.02272678 1139,604.1010,406.6270,35.8990,105.3730,0.01013247 1140,481.7850,218.6210,52.3950,147.3340,0.72667253 1140,402.7550,219.7010,21.8120,47.9180,0.46155608 1140,277.5820,214.0540,20.5630,47.5220,0.19443531 1140,486.8990,217.3890,32.2030,101.3390,0.05061444 1140,501.8030,226.5780,34.2780,94.6240,0.03293205 1140,410.9740,222.0020,22.8230,50.0110,0.03221685 1140,293.5440,215.9380,24.7260,45.7510,0.01365066 1140,392.8160,214.2280,21.9940,49.5350,0.01225147 1141,505.6660,238.3600,61.1590,160.9680,0.75878400 1141,403.6220,223.3010,23.1800,49.7800,0.48922008 1141,395.3890,218.3400,22.1510,51.0170,0.09962966 1141,530.9280,234.9690,33.3630,76.7900,0.05081340 1141,511.3990,292.7290,39.3200,98.5490,0.05036644 1141,265.1130,220.3380,24.5760,53.4080,0.04814663 1141,505.9540,241.2340,35.0660,100.4930,0.04704087 1141,1.0000,222.5510,23.4891,67.5720,0.01603700 1141,238.8420,229.8530,27.5730,56.5590,0.01403847 1141,314.9180,214.1040,22.2530,39.3970,0.01080083 1142,586.5150,238.8900,50.6360,204.3290,0.68979800 1142,395.3170,226.4240,23.1260,49.1920,0.57925630 1142,585.0860,251.8800,40.8810,108.0480,0.53012943 1142,386.8460,222.8630,22.1720,49.9950,0.27796179 1142,297.7640,210.0830,19.2900,36.9870,0.05556605 1142,307.7830,211.1470,19.6620,36.6010,0.02701262 1142,482.8650,10.9910,39.7880,92.8640,0.02358186 1142,598.8100,362.5960,34.0040,82.8320,0.02056125 1142,601.4460,246.1740,31.6760,95.5300,0.01971125 1143,352.8380,227.2700,23.0110,52.8130,0.62647861 1143,183.1050,219.8530,26.8830,61.0320,0.55776906 1143,343.6960,222.0500,21.8980,56.4910,0.28926516 1143,244.2810,208.9590,21.0780,44.1510,0.17872572 1143,466.5900,1.0000,36.2040,72.8234,0.01368105 1143,170.0940,220.6220,31.2880,69.1730,0.01192504 1143,256.9850,209.6180,20.6480,42.5970,0.01049646 1144,183.8500,219.7050,27.6520,58.5230,0.71038550 1144,174.1130,211.4730,25.1320,59.8420,0.07929876 1144,196.1900,221.5870,24.2550,56.3000,0.07555260 1144,76.9684,199.9240,20.4135,41.5770,0.03257158 1146,471.0040,240.2100,32.1050,60.6790,0.01166050 1147,475.1750,217.9890,34.6260,86.6350,0.77747965 1147,379.1530,224.4730,32.6130,81.4350,0.64618117 1147,538.1210,217.9150,27.7010,80.5660,0.61267370 1147,562.3730,221.6580,25.0160,81.7280,0.42518517 1147,587.9380,225.6740,27.4150,84.5940,0.39652851 1147,549.9860,220.0760,24.2580,76.0770,0.27953067 1147,569.9900,224.1630,30.6660,89.4600,0.20004347 1147,435.9780,166.8610,33.9860,89.6890,0.18235323 1147,613.6140,226.2400,25.4660,107.8180,0.11453281 1147,602.9580,226.0390,26.3870,92.3360,0.06565018 1147,528.0470,220.8250,26.8520,72.2080,0.03814302 1147,441.8470,188.8210,39.5680,88.5190,0.01511372 1147,76.6542,215.6090,30.1408,60.1530,0.01088647 1147,392.3140,223.4450,28.8690,73.8650,0.01034455 1148,266.3650,216.4020,41.1580,103.1720,0.84422278 1148,495.9780,227.6350,42.4610,109.0150,0.75488484 1148,391.6220,215.8700,33.4120,107.5350,0.75210208 1148,424.6660,222.3130,36.3500,100.0170,0.74422270 1148,123.2880,220.8430,42.8500,96.3300,0.72603649 1148,359.1200,213.4120,29.5080,94.2030,0.58861941 1148,375.0930,211.9280,27.3300,95.9250,0.17172951 1148,403.8180,218.6250,37.1120,103.0360,0.15864427 1148,319.4070,204.3160,20.3640,43.4760,0.12845384 1148,29.1946,203.5980,44.1805,110.2110,0.10144576 1148,347.0340,215.9960,27.4230,90.5440,0.07936896 1148,431.8370,218.4300,24.6840,59.5700,0.07532961 1148,455.1900,215.9520,25.2080,61.1320,0.03989964 1148,407.6660,259.0290,26.2600,67.1220,0.02059709 1148,437.6280,215.8210,45.5680,101.7020,0.01654914 1148,384.4320,216.6470,26.3190,74.8230,0.01112454 1148,52.3885,209.0310,53.2185,112.1930,0.01108888 1149,128.1980,215.9530,49.9950,132.1260,0.78603107 1149,334.3880,218.1940,39.6890,128.3850,0.78435481 1149,364.7420,216.1540,33.3450,95.4530,0.74875468 1149,295.6590,216.9820,44.5100,135.9280,0.71397805 1149,481.5820,229.2380,60.4490,157.6360,0.70099133 1149,263.6620,223.4330,35.8970,100.9540,0.64457828 1149,285.1230,214.1710,32.9030,111.5480,0.12660086 1149,315.8420,224.1510,37.5930,128.8070,0.10052248 1149,348.5780,212.5110,38.4490,106.4870,0.08573766 1149,342.9730,218.5820,26.5310,67.2510,0.07202359 1149,477.5150,251.6190,36.3170,104.1350,0.03406024 1149,494.5010,229.2010,43.4810,75.0370,0.03348123 1149,203.3170,201.7950,23.3250,48.5630,0.02899601 1149,301.3130,280.1510,32.7260,73.6280,0.02835930 1149,327.3720,274.0420,33.1290,80.4650,0.02106914 1149,393.1530,211.9210,21.1270,45.8380,0.01782165 1149,308.7640,217.3660,29.9510,83.0850,0.01185849 1149,264.0040,203.9200,27.8490,63.2350,0.01026912 1150,316.8780,213.5620,46.8930,115.1200,0.81616247 1150,270.1170,219.3770,47.8870,150.3250,0.68913603 1150,527.7130,222.9660,80.4330,220.9940,0.66749936 1150,1.7295,214.3350,59.8996,177.4440,0.64851886 1150,219.8310,220.9830,42.8300,138.5090,0.47870788 1150,235.1710,246.0370,44.1260,139.5640,0.36089462 1150,248.6370,212.6510,48.6370,159.6230,0.15480433 1150,378.3050,211.7700,22.3900,44.3050,0.13035493 1150,255.0850,199.3700,24.9240,58.1800,0.04260449 1150,540.2880,254.8480,35.3530,112.1280,0.03867709 1150,221.3460,216.8640,29.7640,90.1340,0.03503038 1150,274.3580,213.5480,33.2940,86.6290,0.03380803 1150,548.3080,236.0500,39.6470,81.5850,0.03348124 1150,243.8510,211.3290,33.9090,111.2570,0.02539586 1150,214.2160,267.2600,32.4780,80.5240,0.02118213 1150,249.0810,294.4610,33.3560,91.0360,0.02047872 1150,553.9100,280.2030,38.3820,116.7360,0.01739042 1150,531.4170,303.0010,46.6090,134.6210,0.01673989 1150,325.4730,216.4870,29.4390,70.5460,0.01388774 1150,564.0830,240.4410,66.4250,193.8180,0.01038929 1151,266.3700,218.3480,54.6340,138.5590,0.81621128 1151,197.3110,220.4750,58.1630,190.4790,0.62803614 1151,117.3640,221.7400,74.1700,223.6830,0.55441594 1151,225.5710,211.8750,47.4710,159.1120,0.45363864 1151,153.9400,217.4470,55.4160,202.1430,0.44889712 1151,372.1870,213.0010,21.1950,44.9680,0.44206467 1151,348.7290,214.4430,20.7950,42.1300,0.17734213 1151,196.3480,310.9630,34.3810,95.2020,0.13279918 1151,191.5220,249.1750,24.9610,60.2750,0.06458193 1151,103.3480,324.4150,54.8860,128.5240,0.06446221 1151,188.2220,222.9070,44.2480,144.8880,0.06109497 1151,175.2810,318.9230,33.5270,74.3470,0.05144102 1151,111.3840,227.4570,52.8260,159.5140,0.04858210 1151,212.5200,287.4340,34.6950,110.5960,0.04158956 1151,175.2900,247.4040,27.8690,64.0190,0.02902891 1151,184.4640,208.5100,32.1080,76.6460,0.02520354 1151,139.6080,285.5570,36.7460,103.3410,0.02118224 1151,175.9870,214.6700,27.7380,64.2040,0.01923465 1151,147.9030,223.3660,29.4560,77.6920,0.01874256 1151,232.0230,209.3320,30.3400,69.5650,0.01361694 1151,244.7110,236.0350,56.3030,134.9800,0.01281201 1151,209.9770,237.3920,37.6850,109.4170,0.01209884 1151,160.3490,237.6090,31.4380,86.4460,0.01137652 1151,204.2890,218.7220,36.1480,90.7300,0.01017359 1151,211.5350,165.6620,31.8920,68.8160,0.01017240 1152,207.4350,224.7250,59.0330,151.0700,0.86626291 1152,150.0650,215.7020,58.3110,177.4230,0.78849518 1152,69.6844,227.7570,78.2646,234.8930,0.56678623 1152,24.4412,226.6520,67.8042,216.8250,0.55128849 1152,356.0430,214.0360,19.3760,44.3590,0.28664503 1152,110.8440,213.3250,39.4760,114.3830,0.11791696 1152,369.8060,214.4740,19.5530,43.3110,0.09484210 1152,188.0660,216.3560,57.2090,139.9830,0.02824022 1152,1.6238,274.8050,35.0465,158.0480,0.02501340 1152,107.6260,229.4410,86.6530,223.5330,0.01567087 1152,117.0720,332.3560,30.1440,66.3400,0.01261873 1152,41.9679,250.5670,36.4681,91.8790,0.01236168 1153,89.3571,225.6750,81.1209,190.3270,0.70464975 1153,7.9576,205.7020,77.6315,256.0240,0.54422224 1153,334.8840,216.3980,18.7970,44.6960,0.38996270 1153,322.8400,217.9190,18.9630,41.5430,0.23110779 1153,206.8970,194.0770,29.5310,69.1730,0.10472496 1153,347.9450,215.3760,19.1730,43.2740,0.08019915 1153,99.5711,220.8380,35.1789,82.3490,0.04204994 1153,118.8410,232.8660,40.2910,114.9110,0.02704836 1153,226.1570,205.6860,23.6080,47.0020,0.01455972 1153,18.8277,226.8060,39.6246,91.3240,0.01394944 1154,308.3320,216.7940,20.3130,50.1970,0.59350044 1154,299.8320,215.6810,19.7430,50.5520,0.41850415 1154,335.3950,216.3580,18.6590,43.0810,0.13889456 1154,290.3770,215.4880,21.4380,48.8650,0.02358556 1154,166.7800,203.7300,26.3720,63.1440,0.01662258 1154,325.0300,216.1360,19.5590,45.1300,0.01562695 1154,38.3151,104.9630,35.4512,88.7660,0.01314623 1155,286.2090,211.8750,20.5570,52.3860,0.51278538 1155,302.6140,212.0100,20.6950,51.6550,0.47918499 1155,341.3530,213.4140,21.4590,50.3760,0.35595390 1155,569.7960,273.1810,30.2260,58.5450,0.02743660 1155,408.0190,223.2930,26.7910,61.0890,0.02495827 1155,144.9620,228.1620,30.9050,61.4030,0.02423762 1155,310.7280,213.4530,20.0140,44.1090,0.01700389 1156,358.6630,220.3740,24.3350,57.7690,0.53610891 1156,303.2180,213.9100,22.9000,53.0300,0.45299229 1156,290.1160,213.6710,22.6350,57.4150,0.38273773 1156,121.7940,239.1650,33.6910,62.2880,0.21128201 1156,448.7600,219.4420,25.3580,50.5780,0.02043297 1157,378.6260,219.2560,33.7840,83.2810,0.86898190 1157,304.2830,220.5350,25.1200,64.3580,0.55682755 1157,293.9120,220.8230,23.8870,63.8510,0.37225923 1157,71.2247,259.8900,35.2723,62.2860,0.07121852 1157,247.8920,218.6490,20.7180,39.9340,0.03401233 1157,370.5180,221.7410,26.4100,65.9950,0.02700825 1157,313.5230,217.9740,24.7050,59.5010,0.01781936 1158,429.8690,212.2970,48.6410,129.0920,0.88170445 1158,307.7480,212.0020,29.0080,79.8260,0.65263802 1158,290.4840,210.4230,28.5060,79.9710,0.61596560 1158,451.1530,241.5610,32.5440,94.7160,0.02710953 1158,131.9780,246.9140,31.1790,62.7010,0.02627238 1158,606.2830,290.5070,33.4680,88.8800,0.01145661 1159,297.0140,212.6750,35.8810,92.4940,0.78966504 1159,272.7440,212.4570,34.1150,91.8230,0.75159013 1159,581.8770,225.0390,57.1280,258.0940,0.47083932 1159,338.2510,216.2590,22.5970,43.8400,0.37765583 1159,602.4410,298.5780,37.5590,127.6860,0.03412761 1159,389.1480,90.6936,28.7560,64.9134,0.02413317 1159,608.8610,390.0520,31.1390,91.3170,0.02351021 1159,163.7570,204.9480,33.6010,82.1770,0.01503724 1159,288.4600,217.1660,27.4160,83.9080,0.01200846 1159,380.3380,213.3060,21.7100,45.8810,0.01033998 1160,233.3290,208.9070,41.7720,122.1160,0.80388236 1160,261.2710,209.1740,43.4930,122.5890,0.80135643 1160,381.3930,216.4610,25.3390,53.4530,0.12092841 1160,18.7354,193.6270,136.7736,58.5330,0.01356633 1161,195.7780,210.7920,48.0520,147.9220,0.76556790 1161,159.7860,212.2840,49.7840,151.1660,0.73899144 1161,572.9060,312.0320,34.3590,80.8410,0.02193763 1161,179.3780,203.7670,47.1800,126.4800,0.01148822 1161,231.2840,207.4240,23.3790,45.8100,0.01132376 1161,365.9160,175.9000,26.5320,61.3020,0.01110072 1162,68.0307,235.3630,70.5373,207.1720,0.84033060 1162,118.0350,231.8000,68.4000,196.0240,0.82780564 1162,373.6760,92.4350,27.4980,64.3920,0.13921006 1162,230.7150,196.5120,22.7070,47.9450,0.03229079 1162,362.8400,201.2620,24.4840,54.8660,0.03071384 1162,17.4547,231.6800,36.7131,70.0740,0.02224142 1162,479.8310,232.7370,25.1000,39.1010,0.01560583 1162,14.1432,229.7460,56.1452,118.7780,0.01084231 1163,1.0000,197.9450,94.6170,287.1060,0.64546388 1163,216.7000,159.6010,24.7990,56.8150,0.06894710 1163,334.4660,207.2510,20.2010,35.2470,0.02296841 1163,536.5620,225.8930,27.1890,46.5350,0.01531204 1163,366.4530,53.8121,29.0290,67.4299,0.01130510 1164,228.7510,214.9210,23.0220,48.7580,0.24252260 1164,358.6270,57.0024,30.0650,73.5346,0.07039983 1164,587.6840,236.1200,28.4740,53.1970,0.03644086 1164,198.5950,167.0490,25.8620,54.0520,0.02731591 1164,323.8250,217.3550,18.9630,36.2400,0.01674093 1165,225.7470,218.3270,22.6530,48.7340,0.43977097 1165,191.5680,170.9020,28.3880,65.7760,0.15095122 1165,330.0030,220.7200,18.3330,35.9280,0.04979719 1165,365.1020,52.6538,30.7500,75.3532,0.01748800 1165,377.6580,229.3110,25.8710,50.1830,0.01435436 1165,488.8800,311.3940,37.5950,94.6590,0.01151691 1166,239.0530,213.4520,23.1710,51.3030,0.50471395 1166,204.6420,158.2690,29.3650,70.2090,0.07798506 1166,352.9530,215.1750,19.5110,38.8630,0.05652845 1166,228.9240,203.1160,25.9890,65.5740,0.02600848 1166,408.6450,234.2960,24.3430,45.8410,0.01893737 1166,282.6160,200.6240,19.5900,34.6570,0.01019040 1167,252.5630,228.5540,24.1880,56.1320,0.64961874 1167,213.6360,159.9110,35.3140,98.4710,0.13731930 1167,376.6440,228.4000,21.3150,44.2910,0.12387399 1167,408.5700,208.4890,25.6070,61.8150,0.04399627 1167,487.8680,263.2120,24.5100,42.3470,0.02229739 1167,234.1470,227.5380,26.9730,67.5450,0.01755995 1167,566.8920,329.1420,40.9320,109.4280,0.01595164 1167,173.4820,226.8700,24.9930,48.2110,0.01197662 1168,218.2160,221.2900,25.8980,63.3990,0.73030567 1168,197.1830,220.0960,25.6840,67.4010,0.25267816 1168,362.4210,221.2690,20.8300,44.1470,0.19989820 1168,94.8536,220.4300,34.7164,76.9130,0.11802755 1168,185.4900,151.3950,35.2800,86.7080,0.05161053 1168,274.9500,203.2650,20.2560,36.0370,0.02121796 1168,491.9410,256.6550,31.7900,53.4250,0.01680398 1169,177.5230,200.0310,29.5650,73.0930,0.82538033 1169,155.7910,199.8250,27.5240,67.6790,0.68813318 1169,169.0800,200.7660,25.2010,66.6800,0.20451427 1169,355.1360,212.0200,21.5760,43.0230,0.07819632 1169,259.4660,185.3410,19.1340,35.3650,0.05353339 1169,362.7050,69.2363,32.4360,78.5637,0.04635734 1170,128.4720,217.2240,38.0180,92.8800,0.86435819 1170,94.0901,218.7210,38.0289,91.5850,0.85667408 1170,355.8820,222.2360,25.0000,57.5620,0.35835201 1170,250.9080,199.5060,19.9290,38.5810,0.04424543 1171,65.6169,222.8670,46.4891,121.6060,0.83288527 1171,19.3678,223.0290,46.8983,118.4960,0.78220272 1171,365.0750,221.3860,30.0760,73.2440,0.76027536 1171,250.4940,204.6490,19.1760,36.1220,0.09220999 1171,237.0090,206.8540,18.8170,35.8400,0.03036040 1171,422.9320,189.9990,23.2250,40.9710,0.01401922 1172,391.6960,222.6490,33.1120,90.8760,0.82589996 1172,252.3610,205.7690,18.8320,35.3620,0.10484557 1172,1.0000,249.4240,27.4555,106.9660,0.05266897 1172,236.4210,206.9530,18.8180,34.2520,0.04060259 1172,340.9890,226.6600,21.9050,44.9450,0.02001121 1172,243.2490,207.2980,21.0990,35.3430,0.01259785 1172,404.1260,218.6330,30.0460,78.9180,0.01015828 1173,469.3010,224.6150,45.7830,132.4120,0.80679137 1173,278.1950,204.8820,20.1340,39.1880,0.33377242 1173,258.6230,208.8690,18.5690,35.1510,0.05625819 1173,269.8950,206.3900,18.7460,37.3660,0.05168121 1173,478.7010,279.2090,32.4140,77.7100,0.02719148 1173,479.1580,223.3370,31.9670,70.6260,0.01021475 1174,304.9280,204.3270,21.3800,42.9140,0.42661038 1174,281.8890,210.0130,18.9990,35.5130,0.12918021 1174,290.0490,208.9360,19.0980,37.0910,0.03141512 1175,308.3780,202.6980,21.3210,42.3160,0.53882617 1175,277.1030,203.9060,19.6050,43.0030,0.45032924 1175,291.0130,207.4260,17.6260,37.9050,0.08596316 1175,215.7510,173.6680,27.4440,66.9110,0.01950670 1176,303.2930,209.6450,23.0950,51.0050,0.69386852 1176,267.7670,209.2580,21.1690,49.2580,0.65327764 1176,285.0880,213.9700,18.2630,43.1840,0.32184696 1176,195.6740,168.0370,30.4150,83.6300,0.07341772 1177,289.7470,208.5680,23.8220,55.6090,0.76623297 1177,247.8070,208.9770,21.0880,53.5640,0.60191923 1177,267.6520,212.5180,19.4790,49.3780,0.50322652 1177,257.7860,211.0730,22.1630,49.6320,0.16767476 1177,162.8320,161.0390,33.4560,89.2280,0.01798823 1178,273.8620,212.2800,29.0530,69.0490,0.85818589 1178,246.0180,219.5310,23.2380,58.8010,0.73351538 1178,228.3250,216.5470,22.1250,60.2200,0.60214984 1179,255.3590,215.6260,31.0600,78.6250,0.87672621 1179,202.1600,216.0920,28.9150,76.9990,0.79949427 1179,224.1100,221.5510,26.1660,72.4530,0.77271938 1179,237.8770,217.7340,31.7470,69.8740,0.03175061 1179,268.9170,215.1660,23.9020,57.6290,0.01194745 1180,226.4560,205.3020,41.5690,112.2530,0.85133457 1180,161.8860,208.6150,38.5620,111.2480,0.81570274 1180,190.9380,213.6050,34.2610,106.5800,0.79748178 1180,198.7150,219.0510,24.5130,61.3200,0.07042091 1181,156.3830,210.2170,55.2680,162.8190,0.86415708 1181,42.6681,211.0860,65.2299,171.1700,0.79265958 1181,107.1380,221.6390,52.7810,160.1440,0.72890884 1181,158.7630,225.4950,33.4210,114.7630,0.35910714 1181,174.7200,224.3990,36.5970,104.9220,0.11040618 1181,114.7030,228.2550,38.2450,94.8970,0.06503184 1181,79.0431,296.0770,36.7909,84.8130,0.05629868 1181,164.5180,290.6740,39.2770,91.0020,0.01427331 1182,3.4876,228.6410,53.1381,208.1490,0.18423954 1182,1.0000,255.9770,30.7152,115.2820,0.02870965 1182,599.6500,267.7560,38.3590,182.6220,0.02431352 1184,426.3680,65.5190,31.5960,54.4010,0.03720287 1185,466.8960,37.9655,38.8580,60.1089,0.02003950 1187,384.4540,238.2810,23.2750,53.0260,0.01974571 1187,307.0060,224.8210,21.6550,36.1620,0.01486332 1188,308.7150,228.7590,22.3800,40.4030,0.01530372 1188,539.7700,217.2410,20.8850,44.3450,0.01516191 1189,418.9830,229.7930,20.3590,43.4450,0.22243798 1189,567.4930,215.0020,24.2480,47.8330,0.02385283 1189,315.8540,238.2880,23.0950,41.3230,0.01396657 1190,455.8010,230.4480,21.7310,44.8850,0.16427909 1190,580.1170,200.5120,42.6960,94.3070,0.02095639 1190,602.1450,209.8340,24.1560,48.1310,0.01819321 1190,527.6290,233.8610,37.4420,98.7940,0.01657268 1190,90.9336,217.4580,23.5594,47.5510,0.01576453 1191,485.4010,225.5090,24.9210,56.2510,0.35174319 1191,256.6570,180.0560,32.0930,61.5920,0.02912696 1192,509.1790,242.3940,26.0610,53.2940,0.30319595 1192,298.5980,259.8030,22.9380,46.6810,0.02085108 1192,518.2320,235.8050,29.2790,61.4230,0.01005545 1193,514.1570,222.3470,23.4020,55.3000,0.43889418 1193,598.7850,232.6290,20.1030,36.7070,0.01012638 1194,511.0690,211.3990,27.1640,67.8900,0.83778203 1195,506.2320,224.3060,26.7110,71.4000,0.80617785 1195,81.3598,207.7440,21.3572,38.6870,0.13706103 1195,597.4610,188.6750,28.8850,58.1720,0.01386885 1195,1.0551,232.8490,27.5682,70.3030,0.01368361 1195,514.6080,216.1700,32.8020,75.6240,0.01005703 1196,469.2460,220.5060,31.4080,76.3770,0.87672138 1196,161.6560,238.9840,33.2090,70.2840,0.01097550 1196,1.4223,193.3050,23.9337,50.4060,0.01083094 1197,351.8320,223.0960,36.6650,84.6340,0.84654856 1198,159.8700,224.8200,41.2640,98.3270,0.83242589 1198,505.1460,226.1840,33.0480,56.1170,0.02449628 1199,560.6050,232.8240,37.2780,85.7950,0.70259720 1199,248.5550,217.3340,32.3360,56.2350,0.01873510 1199,512.8460,200.9510,23.0890,47.7530,0.01170192 1200,223.5870,233.3520,43.4590,105.1640,0.80776882 1200,580.8500,216.3640,23.0620,46.9540,0.02492662 1200,225.7460,270.9060,29.7730,65.0000,0.01295659 1201,463.3140,216.6550,23.7770,47.5560,0.02650974 1201,5.4998,180.2240,24.9597,52.9330,0.01113244 1201,441.7240,222.2090,24.4610,45.5360,0.01019996 1202,604.4890,210.9860,30.5480,69.2630,0.06213498 1202,19.0721,181.1370,26.1606,58.2750,0.05074741 1202,461.3990,142.2020,33.0100,94.7280,0.03297829 1202,428.0080,224.5570,23.0630,45.2940,0.02987513 1202,394.1740,211.0980,28.0620,59.5740,0.01420638 1202,1.3325,319.9470,35.9165,119.2180,0.01339319 1203,436.7980,218.6110,26.0240,62.4760,0.12913345 1204,504.3760,242.2090,28.8360,58.5010,0.15956371 1204,371.3600,215.3550,33.2250,64.4690,0.01183547 1205,522.1410,134.2540,25.5310,50.7780,0.01861815 1205,543.5320,133.9220,26.3350,54.7010,0.01276629 1205,407.9270,230.9060,22.4980,45.1900,0.01173627 1206,582.5150,208.9290,34.1270,53.1000,0.02910990 1206,601.6820,338.3320,38.3180,129.6740,0.01340393 1206,43.1304,169.6450,30.7069,54.5220,0.01087628 1208,137.1390,206.1950,31.8690,72.3990,0.04842696 1208,445.9370,222.4150,28.1620,58.3630,0.02983028 1208,229.0690,197.8520,19.5660,33.1340,0.01461619 1208,560.1800,191.7860,27.4220,51.8040,0.01353258 1208,503.3820,207.2350,22.9600,46.4140,0.01086328 1209,572.8230,211.8520,28.7630,57.4740,0.09969437 1209,538.3650,220.3550,30.7990,70.8270,0.06186778 1209,241.6320,203.1230,18.9420,32.6460,0.01868228 1209,50.8272,201.2140,151.1498,53.7660,0.01063464 1211,1.6229,214.2920,29.2080,72.6280,0.02484764 1211,45.6592,194.6800,26.4447,49.9940,0.01691305 1211,455.8390,211.1040,33.9260,52.8000,0.01425042 1212,490.7120,212.9120,21.7620,45.5170,0.25211516 1212,119.8840,200.8290,23.2720,47.2730,0.14418520 1212,484.7050,201.8570,21.6690,44.8310,0.02548547 1212,306.2810,203.7370,22.7940,45.5430,0.01103360 1213,92.9530,203.1710,25.6180,49.7480,0.44048113 1213,486.7990,211.8100,26.5840,59.1960,0.42271084 1214,457.2950,206.8070,29.3670,69.7240,0.74645001 1214,41.2817,195.8910,32.0855,62.6100,0.65326631 1214,289.3930,208.2190,21.4850,43.0940,0.02407380 1214,329.6490,195.1350,20.8570,35.9380,0.02329464 1214,127.1060,199.9300,32.9960,78.1260,0.01373358 1215,438.3490,209.4800,32.7940,78.8780,0.78350627 1215,288.4540,207.7000,24.0270,51.3930,0.68167049 1215,8.2486,197.7570,35.7854,74.1140,0.34133393 1215,44.1500,251.9660,29.8269,54.7650,0.01101545 1215,335.0520,237.4890,23.2800,39.2440,0.01051214 1216,306.3860,203.7420,26.8820,61.0290,0.20356233 1216,272.9180,195.6110,20.5250,35.4140,0.02283405 1216,416.5130,207.8700,30.5110,82.4790,0.02232581 1216,406.3290,205.1070,53.9280,134.7950,0.02202461 1216,96.0380,168.8740,26.7410,54.6750,0.01714983 1217,394.1420,206.5410,38.6440,104.0950,0.84841460 1217,30.1195,197.7600,39.2673,92.2440,0.68899727 1217,376.9400,205.8910,25.6090,56.0320,0.06262952 1217,288.9950,198.0240,22.9840,40.4190,0.03324701 1217,403.6350,255.9790,29.3870,55.6250,0.02981721 1217,382.9230,206.3040,30.8310,79.3440,0.01330838 1218,474.8560,203.7590,27.8160,61.0310,0.71988326 1218,351.8130,200.1210,46.7780,117.8360,0.71357763 1218,122.4590,198.9670,29.3000,63.4460,0.20686580 1218,353.7490,184.3960,27.3640,64.5770,0.12929702 1218,241.0520,191.3170,23.0460,43.9760,0.10767131 1218,362.8070,258.6110,31.8310,61.7650,0.10295509 1218,332.8800,192.4430,21.0960,42.6680,0.02211667 1218,529.5240,210.3040,26.1520,48.1570,0.01018279 1219,239.9080,212.8160,47.2450,127.2320,0.60972124 1219,565.3510,199.5920,30.2890,63.6280,0.47160932 1219,212.0110,201.6740,37.0350,106.9010,0.38847294 1219,364.6270,184.8700,30.0660,51.8850,0.16622511 1219,272.4270,192.6830,22.2460,43.5150,0.13647649 1219,219.5480,204.0680,49.2110,131.9540,0.03241749 1219,437.2670,192.5870,20.7350,40.2260,0.03091839 1219,220.9540,204.3350,25.7290,63.0770,0.01640219 1220,285.9780,208.4270,39.8480,96.0170,0.73102891 1220,78.8792,209.2900,48.9128,106.4040,0.25901848 1220,353.2590,194.7060,48.3910,46.9660,0.04759064 1220,616.1190,199.1950,23.7380,79.2210,0.04653184 1220,444.7180,194.1460,19.8580,42.6270,0.02771980 1220,355.5680,192.6150,21.7630,42.4500,0.02087710 1220,375.0940,197.4200,23.0260,41.2120,0.01394269 1220,584.2440,215.8810,24.5800,49.4640,0.01178974 1221,347.6090,202.7460,36.3260,96.2530,0.76000601 1221,274.5120,195.4790,22.0950,43.5180,0.21411769 1221,443.4060,194.8390,20.4650,39.9210,0.02631794 1221,339.4200,190.7500,22.7160,50.1490,0.02001220 1221,375.9970,197.6490,22.7270,45.2100,0.01576603 1221,344.9810,195.5770,27.9300,70.6800,0.01532490 1221,105.2350,187.4820,23.4850,40.4410,0.01430694 1222,406.8860,211.6970,32.4180,79.7520,0.63827962 1222,274.9920,195.4330,22.4910,45.2000,0.24694449 1222,325.7380,194.9000,20.3540,40.6610,0.18579455 1222,374.0630,194.9700,22.9840,43.2940,0.05566833 1222,444.6980,193.2570,20.0690,40.8780,0.04811534 1222,336.5570,191.9530,20.7500,43.4090,0.01905376 1222,105.4930,188.9800,22.6850,39.6530,0.01633845 1222,308.5080,195.8720,108.8270,57.1340,0.01461725 1222,377.4040,186.1420,70.7930,99.5450,0.01412870 1222,184.5860,186.1980,24.8040,49.4490,0.01287302 1223,455.2460,198.5270,35.9080,85.7900,0.51682085 1223,275.2860,195.3660,22.7000,45.7800,0.23771630 1223,317.8650,195.0740,20.8040,40.1770,0.14428291 1223,372.2440,194.4660,24.3070,44.5850,0.05311509 1223,441.0130,192.7300,23.0150,46.4130,0.02264199 1223,105.4710,189.2010,22.6440,39.3210,0.01663723 1224,502.3620,203.7720,33.1520,78.2790,0.80480832 1224,316.3090,193.5180,22.7610,44.4380,0.09150060 1224,374.3550,198.3650,23.8440,42.8910,0.03605036 1224,442.4880,197.4830,21.7520,43.0640,0.02570298 1224,274.8230,196.4710,23.6450,49.7500,0.01227451 1224,585.8580,219.0590,24.4760,46.2090,0.01019775 1224,512.9970,230.8760,25.0190,49.1370,0.01009770 1224,275.5040,243.5760,37.8410,86.2400,0.01002943 1225,558.7200,203.5940,31.6840,76.5420,0.75921530 1225,377.9460,197.3490,22.4990,42.2210,0.05124430 1225,320.7920,192.7720,21.5720,42.3050,0.05121847 1225,437.1970,195.8160,29.5250,76.2690,0.04295333 1225,546.0850,205.2730,31.4990,67.7940,0.01420326 1225,104.8130,187.5240,23.5340,41.2900,0.01224521 1225,367.1830,190.4180,44.0840,58.4450,0.01043970 1226,616.9310,195.6420,23.0690,75.6270,0.20079841 1226,272.8880,188.5720,25.5260,52.1130,0.05128421 1226,180.2890,171.9480,26.6880,56.1060,0.03002475 1226,381.5970,191.6090,24.1830,43.0270,0.02144346 1226,272.5620,187.8620,76.6370,55.9690,0.01885936 1226,105.2780,186.0850,23.8930,38.9950,0.01386818 1226,314.9190,187.4820,24.3370,42.7420,0.01148681 1227,297.2100,187.9390,23.2080,49.0360,0.17981276 1227,336.6840,184.8800,21.6530,46.7000,0.12700836 1227,439.9790,225.6730,21.7210,41.4540,0.03826380 1227,476.1710,185.2860,20.9950,42.4820,0.02158413 1227,401.4510,187.6650,26.3540,49.1610,0.01591646 1227,287.9860,189.0390,21.7450,48.2860,0.01300162 1228,349.5610,183.8310,24.1890,49.2310,0.38722789 1228,306.6260,185.6740,24.4430,52.3530,0.29666972 1228,493.0860,181.4640,27.9780,52.4240,0.03389460 1228,209.2400,187.4150,22.5080,43.4110,0.01274862 1229,353.4640,185.1840,24.5170,50.8070,0.43926743 1229,311.0420,188.9090,24.1660,50.0360,0.27850762 1229,425.6980,192.3380,21.3440,40.2540,0.07451227 1229,416.2500,184.8310,39.6760,53.4620,0.02499339 1229,129.2640,183.1720,22.9460,43.2590,0.01896207 1229,302.8210,190.2580,22.3780,50.3510,0.01698649 1229,504.5850,182.4170,23.8030,46.2960,0.01550819 1230,310.3280,191.8290,24.4310,50.7930,0.38155243 1230,354.0240,188.2230,24.0090,49.8380,0.35853767 1230,424.2110,191.5610,22.8380,42.6190,0.12024104 1230,507.2470,188.9640,20.0940,42.5080,0.05043854 1230,212.9080,181.1740,24.2720,51.9130,0.01574752 1230,129.2620,187.3080,23.5280,42.1100,0.01316418 1230,529.7960,181.7780,24.3210,51.3740,0.01314065 1230,412.0490,183.9690,43.7350,57.3610,0.01132027 1231,354.4280,186.7500,23.8900,47.7380,0.33317366 1231,311.3180,194.1690,23.9720,49.1900,0.23377605 1231,425.3360,191.2700,22.5300,41.9830,0.10134931 1231,505.5410,187.9440,20.0530,44.7050,0.09975898 1231,128.8750,187.1810,23.6710,41.7030,0.01703557 1231,529.0160,181.7490,25.3890,51.4530,0.01076267 1232,350.8840,191.2640,23.0570,43.1720,0.22222827 1232,425.0700,191.9240,22.6150,41.8370,0.08659613 1232,505.2170,186.9790,20.2900,44.1690,0.07891396 1232,282.4980,195.3900,22.0220,45.8600,0.04471891 1232,309.5970,197.9540,22.5060,43.6370,0.02857163 1232,215.0170,186.4100,23.0230,47.6520,0.01970424 1232,263.2810,192.3330,134.6840,52.0090,0.01583791 1232,129.5160,189.0360,23.1720,40.0360,0.01391836 1232,342.5390,190.7430,20.7170,42.7340,0.01199213 1233,324.4860,191.5020,24.0700,50.8460,0.33476067 1233,281.9150,202.9510,22.9360,45.8730,0.21596041 1233,356.3740,196.3340,21.7700,43.0490,0.19799784 1233,423.6470,194.9130,31.9960,53.3720,0.16639599 1233,508.1930,193.0070,20.7170,43.9850,0.10772456 1233,251.4230,201.3200,21.5310,45.4170,0.08189157 1233,129.2350,194.4730,23.1240,40.0990,0.01916219 1233,198.7570,191.6170,208.7620,50.3530,0.01444178 1233,336.6950,192.2420,20.9210,47.8790,0.01139541 1233,527.5090,186.8350,25.1220,52.2340,0.01000875 1234,300.8450,198.8730,24.4780,54.4400,0.40475154 1234,343.6590,202.1420,24.8380,46.4500,0.32541224 1234,522.5120,197.2940,22.8970,53.1700,0.30177796 1234,208.0490,209.0240,23.6940,48.8960,0.11530429 1234,435.5970,201.6070,23.0370,45.3380,0.09510132 1234,245.0750,207.5100,22.9270,46.2730,0.08264493 1234,128.7440,197.4490,22.1360,43.1430,0.04723987 1234,448.1880,205.4380,21.2360,42.5200,0.03287060 1234,537.2450,194.6100,28.3050,56.3860,0.01593430 1234,199.6910,202.6210,79.0510,53.6380,0.01581837 1234,146.1450,199.9320,185.9320,52.4710,0.01159763 1235,249.8720,208.3830,27.2690,57.5410,0.39268422 1235,155.5050,211.3400,29.3370,58.2480,0.37950146 1235,128.5660,208.8200,26.6140,56.6710,0.29605177 1235,275.3660,211.5030,24.8470,52.7940,0.11179038 1235,432.8550,208.2960,25.4040,53.6480,0.06140266 1235,262.4060,208.2450,24.1320,56.1210,0.03492798 1235,193.4410,207.4250,21.4300,42.3540,0.01592047 1235,147.7900,209.2340,23.9310,53.6260,0.01434149 1235,111.8310,206.8020,68.6600,63.4150,0.01210299 1235,94.8709,201.9540,23.0461,42.6310,0.01147887 1236,459.2330,207.5480,25.1060,56.8890,0.54816031 1236,83.4710,201.5880,38.7060,75.4860,0.49381229 1236,346.4990,206.4900,28.5670,65.5810,0.13631999 1236,72.8498,206.8550,32.8172,68.9040,0.02150448 1236,486.9810,201.4880,30.7240,68.5010,0.01270067 1237,231.7440,205.8100,29.2570,66.0800,0.63519555 1237,249.0440,214.9000,23.7680,54.1770,0.26990563 1237,216.2750,221.2350,23.8960,51.8200,0.23395136 1237,226.0580,218.8750,23.5170,52.3200,0.04678189 1237,373.4810,198.3090,22.9850,40.0850,0.01703802 1237,360.1440,193.3410,40.8840,58.7620,0.01055377 1238,265.1170,217.8510,30.8880,76.1150,0.84669852 1239,118.3790,200.4940,29.0760,60.1130,0.01133627 1241,133.8200,261.5710,26.4750,49.6910,0.02409549 1241,367.8330,245.8940,30.2080,62.8780,0.01472892 1242,615.6710,209.9970,22.8930,51.7890,0.45744982 1242,539.7480,184.3530,38.8210,91.5180,0.01137042 1243,605.0340,204.2380,28.0070,68.3710,0.38647351 1243,594.3410,215.2260,44.9900,118.0530,0.19473924 1243,490.1410,212.9230,26.8900,56.5630,0.06933674 1243,42.8843,230.6550,32.6364,62.1790,0.01497187 1243,536.9810,178.2950,28.6600,67.9250,0.01322457 1243,325.5270,208.2740,19.4370,35.0870,0.01169078 1244,596.4840,314.8060,40.2420,115.4680,0.31462613 1244,514.5720,217.5410,22.9260,55.4970,0.24101919 1244,543.7880,217.5240,23.0040,46.8910,0.15086280 1244,455.9740,220.0110,22.0560,42.0150,0.05085054 1244,292.7640,211.8910,19.9120,33.4410,0.03040234 1244,418.5440,206.5190,23.0480,50.7700,0.01537003 1244,530.9840,217.3860,24.4000,56.4610,0.01268646 1244,531.7050,211.0210,34.8090,89.9020,0.01200509 1244,515.9750,210.2160,33.5510,87.1120,0.01161706 1244,482.2270,240.5660,21.3920,43.7660,0.01043180 1245,615.9910,221.6500,23.4260,70.2210,0.51103854 1245,279.9390,209.9710,19.6500,33.8400,0.12386249 1245,488.5530,220.2270,20.7010,39.2720,0.04996732 1245,445.7020,216.7070,31.3210,53.1460,0.04672734 1245,371.3710,230.0800,20.7180,45.2960,0.01451101 1246,282.2850,208.5440,19.4280,36.1100,0.25139520 1246,367.0350,216.3920,22.5180,52.6510,0.07211719 1246,302.2020,206.5570,19.2620,40.2110,0.03800866 1246,448.8370,274.5100,24.5270,51.8790,0.02696147 1246,165.9840,206.4490,24.6350,50.0340,0.02340535 1246,289.8840,208.5420,20.2260,38.4370,0.02020897 1247,278.3980,206.6320,20.9070,41.8090,0.33735457 1247,141.5380,207.4090,23.6280,48.2150,0.17541845 1247,482.1660,278.8730,33.4850,76.9490,0.13754714 1247,9.1466,198.2050,24.9973,51.6590,0.06680878 1247,1.0000,197.7010,99.0071,66.9170,0.01747920 1247,290.4940,206.6760,20.2610,41.1310,0.01650983 1247,376.5150,210.9910,22.9320,45.7040,0.01254765 1247,298.7900,206.2200,20.8550,40.5620,0.01229728 1247,321.8400,208.1940,18.4580,35.4720,0.01183378 1247,452.0850,200.6430,20.5020,41.9140,0.01167641 1247,4.1624,198.2180,41.4663,76.6690,0.01002082 1248,274.7890,208.0620,22.4180,47.1710,0.49577081 1248,391.7710,211.5440,21.9920,48.4490,0.12875624 1248,491.1330,284.5270,33.4810,78.1910,0.03484625 1248,508.8070,193.1330,30.4300,68.8150,0.03073896 1248,363.1750,205.2480,164.7170,50.1930,0.02537241 1248,459.9380,204.3960,21.6290,47.3130,0.01944941 1248,104.2280,210.1220,23.7970,39.2620,0.01366454 1248,125.4450,218.9140,39.9880,80.3410,0.01250122 1248,450.1630,199.4490,86.5110,57.0270,0.01204813 1248,236.6070,196.4440,382.3580,66.0910,0.01046851 1249,583.1830,216.8970,30.0610,69.8380,0.64331102 1249,261.9370,205.9370,25.0740,55.9120,0.60987651 1249,28.1556,209.2310,31.6203,74.8840,0.52213049 1249,518.2430,209.2460,20.8560,44.8880,0.23793170 1249,542.5440,192.3120,24.8210,60.4690,0.21301328 1249,497.3380,205.3050,20.2720,45.8520,0.04597749 1249,508.2640,211.2080,19.6170,40.9220,0.03819529 1249,463.8670,197.8520,24.3240,52.2120,0.02494152 1249,438.6650,201.1620,137.4830,53.4480,0.02049405 1249,394.2150,214.0330,20.0350,41.7470,0.01925586 1249,477.4650,203.9620,57.5120,49.2160,0.01797185 1249,404.3730,212.1910,20.7420,42.5290,0.01159569 1250,216.1260,209.6100,29.1640,68.3250,0.79885113 1250,478.4110,199.9540,23.8110,55.9030,0.22241476 1250,587.3850,209.4730,23.6390,53.6000,0.21395032 1250,502.7510,201.9870,26.0030,60.4160,0.17766859 1250,425.4310,218.4450,22.3550,44.8150,0.02746583 1250,467.9520,203.0590,126.4950,56.5220,0.02171274 1250,461.0000,249.6760,22.0440,44.9750,0.01711738 1250,371.3310,201.0590,135.6740,55.9850,0.01630125 1250,433.1450,212.5840,20.5420,44.5620,0.01597210 1250,285.0590,196.0750,354.9410,67.5410,0.01381083 1250,512.8260,204.5390,21.5830,48.4110,0.01051654 1250,401.6390,215.9240,21.7930,47.3490,0.01028646 1251,130.8890,213.1260,34.9760,84.5020,0.76784092 1251,580.6340,212.8500,23.2530,59.3380,0.59527814 1251,537.4630,202.6560,21.5190,54.6530,0.46117049 1251,596.4980,212.7760,20.9310,53.8340,0.36178815 1251,547.1740,205.6730,20.5350,52.1370,0.35667413 1251,613.6230,211.4130,21.9510,58.3930,0.11478190 1251,525.7240,193.3570,25.6240,63.0210,0.02544110 1251,106.5030,220.8820,30.3220,73.7630,0.02482853 1251,516.1230,184.4510,24.0650,64.9750,0.01686972 1251,566.7200,208.0360,52.3690,62.4450,0.01631983 1251,441.4970,216.7370,25.6160,51.7990,0.01591011 1252,392.7540,209.2070,30.2360,68.4500,0.03665111 1252,488.8500,225.1430,23.3070,56.9320,0.02857446 1252,508.6480,222.4460,21.2640,48.3160,0.02790473 1252,466.0960,202.1950,22.5400,53.3380,0.02399243 1252,542.6170,203.5020,26.5060,67.5330,0.01971837 1252,382.7790,187.5770,32.2740,80.1420,0.01898164 1252,602.8800,203.4270,21.6680,47.7860,0.01469242 1252,585.6210,194.6800,21.4550,46.9240,0.01379636 1252,440.7010,205.3320,22.6800,50.5200,0.01159138 1252,404.9800,199.4680,135.2340,57.7970,0.01090495 1252,502.8320,177.2320,28.2110,76.4580,0.01073576 1252,376.2200,170.0520,28.3840,81.0380,0.01026128 1253,521.8650,207.7870,22.3950,53.6880,0.13861017 1253,504.2790,206.1050,21.4030,55.1400,0.07913845 1253,488.0630,207.2410,22.1790,54.1670,0.03964934 1253,513.0010,218.0330,41.2930,112.9810,0.03792978 1253,358.8720,204.6880,23.4210,58.3980,0.02134056 1253,613.6700,229.8400,24.7440,68.4160,0.02049327 1253,385.6150,155.4570,30.5330,90.1540,0.01463365 1253,431.5870,220.8170,27.3910,58.3010,0.01142061 1253,455.0780,268.1020,26.2780,63.0230,0.01076399 1253,484.5840,211.4130,34.4270,78.0440,0.01008756 1254,554.6350,207.0150,23.0450,53.1280,0.39576700 1254,577.8340,213.2610,23.9790,59.1360,0.23849566 1254,597.5170,207.5850,27.4030,65.7890,0.04346488 1254,614.8430,202.9790,22.6910,63.5910,0.03713920 1254,577.7370,200.9470,35.5680,97.0050,0.02689479 1254,493.9850,279.1230,30.8860,75.5720,0.02340986 1254,364.8400,205.9180,22.9390,46.7820,0.01366555 1255,379.2360,176.8160,30.3990,75.1480,0.43124229 1255,436.5130,211.5040,24.9050,61.8870,0.10818475 1255,564.6460,312.0270,39.8490,96.8430,0.04308294 1255,499.1050,274.7360,32.6070,88.6820,0.02973103 1255,540.1030,213.6390,29.1180,69.2760,0.01991061 1255,615.9510,202.6510,20.5130,43.8230,0.01576524 1255,550.2780,213.4460,23.3620,48.1000,0.01290088 1256,424.3450,174.0160,30.1580,74.3380,0.17181252 1257,422.6970,235.9150,24.8060,56.3930,0.14356323 1257,584.2010,205.1200,29.4320,68.5240,0.02988493 1258,468.1170,258.9530,28.7700,62.8780,0.23057835 1258,494.7710,207.1480,23.0990,52.4140,0.16969827 1258,542.8410,98.8461,36.1080,79.2439,0.03066676 1258,602.7470,208.3220,29.4610,58.5180,0.01784094 1258,532.1250,260.8590,36.8700,65.6510,0.01413749 1258,385.4640,215.3350,25.5520,54.5600,0.01143388 1259,515.5340,208.5060,26.1980,67.1860,0.22906008 1259,563.5940,209.1730,23.9040,55.7480,0.11275391 1259,486.8530,158.9370,31.3460,80.5510,0.04120803 1259,497.4800,228.4160,20.7050,49.0600,0.03732498 1259,421.3020,203.8230,30.5040,61.7200,0.01558828 1259,507.0250,220.3370,22.3630,59.7530,0.01314557 1260,478.6650,199.7750,20.6460,43.4980,0.08093914 1260,168.7740,200.8120,20.5130,36.3040,0.05335929 1260,586.8790,199.5980,30.4920,62.0240,0.03242576 1260,495.3250,195.7450,23.6520,48.2120,0.03241291 1260,550.6280,143.8610,27.5000,64.6960,0.02608711 1260,410.5200,208.7980,23.1920,44.7350,0.02360944 1260,454.6160,207.2120,22.7950,44.3190,0.01260009 1261,600.2230,204.8120,33.5290,80.1480,0.76614529 1261,502.1660,199.2940,28.3100,60.0100,0.39550957 1261,154.0730,203.8970,20.4440,38.8870,0.20780456 1261,402.1020,209.5030,25.7820,55.8330,0.03463778 1261,442.1250,210.1610,24.1990,49.2270,0.01616318 1261,599.7960,173.7550,30.8190,76.5200,0.01243926 1261,3.0890,216.4650,25.3246,48.3090,0.01003966 1262,140.1400,205.0630,21.5290,42.8040,0.20902865 1262,432.7830,211.9130,22.9700,48.5320,0.08399449 1262,442.2330,207.9110,21.2700,49.1450,0.06207642 1262,486.5470,203.9910,29.3680,57.9700,0.05838669 1262,522.7560,203.9370,30.8530,57.8830,0.02993650 1262,363.2600,215.7000,24.8380,48.9630,0.02708430 1262,535.2180,210.4690,23.6780,43.6500,0.01889641 1262,218.5680,210.5330,20.9230,35.4190,0.01011136 1262,170.9870,202.3810,22.4330,43.6580,0.01000153 1263,483.5220,210.1920,22.3230,55.1630,0.38603950 1263,530.2510,210.1630,21.0650,54.1930,0.26493043 1263,465.6070,207.5050,23.6600,56.6610,0.25958413 1263,549.5390,208.7270,27.6300,62.8730,0.21306045 1263,513.4580,216.4270,20.4920,48.8700,0.13674620 1263,538.1650,216.0150,22.8500,51.1850,0.04855635 1263,523.8430,208.3760,65.8660,61.4620,0.03726727 1263,581.2490,222.0950,26.2850,46.9510,0.03198959 1263,372.7560,211.0830,22.0160,45.7530,0.02153230 1263,561.7560,203.3050,28.2830,61.1620,0.01786716 1263,384.7660,209.5230,24.6340,50.9550,0.01433552 1263,160.3910,207.0910,24.1260,43.7430,0.01242256 1263,1.1381,195.2690,24.5480,60.3800,0.01169342 1263,463.1610,205.7060,149.9110,64.3920,0.01166910 1263,454.9730,208.6920,23.6280,49.8990,0.01095339 1264,583.6050,217.1890,21.9490,57.2010,0.46108547 1264,506.2640,203.4520,24.2930,62.6130,0.43525323 1264,563.0210,218.4270,22.8430,53.4810,0.41552675 1264,529.9260,212.8310,23.4850,66.1470,0.36867690 1264,110.0380,207.6950,23.5990,46.3890,0.32212594 1264,593.9410,216.3820,21.6460,57.5410,0.13448827 1264,609.2150,213.1920,22.2560,54.0240,0.10559437 1264,411.1710,213.3310,23.4860,46.5460,0.03800380 1264,425.9700,270.4600,24.1990,46.1610,0.03415739 1264,102.2450,202.9300,22.4940,47.2910,0.02438361 1264,568.5450,212.2590,53.2240,62.7180,0.01817809 1264,438.2990,207.6070,25.1340,49.9290,0.01805434 1264,400.7670,204.9930,128.2250,55.7860,0.01778592 1264,119.1160,204.8600,20.2500,42.4530,0.01732337 1264,489.0370,209.8780,23.4770,47.5610,0.01711235 1264,383.3050,212.0960,20.3200,38.9460,0.01365950 1264,299.3460,199.1820,340.6540,73.1030,0.01129936 1264,1.0000,177.0040,30.6580,79.9940,0.01126003 1264,411.1570,210.0980,59.1930,52.7480,0.01108073 1264,510.4950,212.7180,33.3150,77.3170,0.01033951 1265,94.2080,203.5220,25.6060,52.5440,0.43902853 1265,584.7060,212.4030,24.5890,63.6890,0.27223939 1265,556.1990,201.1250,29.2100,62.6600,0.17463127 1265,455.7590,209.4890,22.3770,50.9280,0.13665029 1265,500.6550,209.9220,24.6350,48.9830,0.07282560 1265,524.7830,208.8800,24.5280,45.6190,0.06889356 1265,440.4550,211.4940,20.9530,46.6980,0.05676896 1265,418.6380,216.0220,20.1990,38.4190,0.05570048 1265,73.7076,195.1620,20.3513,43.0530,0.05402948 1265,482.2290,210.3010,23.3350,51.5170,0.05035996 1265,594.0910,215.4170,24.9930,70.4350,0.04685731 1265,416.8200,207.7300,106.0790,48.3640,0.04562100 1265,567.4800,208.9560,29.3810,64.5950,0.02142550 1265,82.8880,199.9530,23.4550,47.4240,0.02067424 1265,426.3830,211.9850,20.6540,41.9890,0.01602380 1265,471.6550,211.4250,65.7290,46.8450,0.01568362 1265,390.7790,213.0850,22.0350,42.4450,0.01567137 1265,512.5940,204.2540,45.5330,58.9090,0.01359470 1265,443.4840,201.7600,172.0580,65.4780,0.01166300 1266,467.5440,211.2980,20.8510,50.3190,0.40550858 1266,515.7740,213.1620,21.9950,47.4120,0.29393479 1266,614.8170,202.4050,24.5340,60.3190,0.27446866 1266,82.5160,211.1230,22.6830,47.7010,0.23585725 1266,449.2290,215.1140,19.8830,45.1070,0.17268193 1266,492.8400,215.0590,18.3610,41.4610,0.13262519 1266,509.0250,212.9540,19.3940,44.5500,0.08224592 1266,558.8210,217.4880,27.4960,58.3830,0.06483193 1266,459.2640,214.9000,21.5340,48.8100,0.04606149 1266,42.7057,198.7050,24.4528,45.9590,0.04160498 1266,425.3340,216.8610,21.3530,38.7530,0.03393703 1266,498.9090,212.2920,21.4420,46.6870,0.03318136 1266,399.1870,211.5870,192.4600,51.5390,0.02944436 1266,393.6630,216.0400,21.3170,41.6610,0.02607332 1266,485.1130,212.2130,18.2200,45.0640,0.02380842 1266,542.5270,226.5910,28.8600,49.4610,0.01635151 1266,58.1022,200.9120,23.1700,42.6530,0.01589159 1266,496.0480,211.6240,48.2440,51.7070,0.01524310 1266,439.5250,207.1580,39.8840,57.7070,0.01511557 1266,41.9396,200.1940,81.5604,51.2850,0.01394904 1266,18.2297,194.2480,177.5193,55.0360,0.01371450 1266,449.5530,210.7310,88.7430,49.3770,0.01094199 1266,307.2470,200.3450,332.7530,73.9630,0.01079911 1267,472.6250,214.8020,21.4280,49.9880,0.44267374 1267,521.5180,215.5460,21.6990,47.0010,0.37449092 1267,580.6790,219.6080,40.3040,94.6420,0.26955345 1267,603.6490,224.3830,25.4100,59.8250,0.21259546 1267,448.1100,219.4000,21.1050,43.9080,0.14973406 1267,500.6630,212.6110,18.1310,43.8760,0.09253622 1267,397.1860,218.1370,20.3030,42.3440,0.07200317 1267,507.7160,213.9870,18.5030,44.3960,0.05971558 1267,427.4210,220.6400,19.5530,39.5720,0.05569370 1267,394.2440,218.3100,216.7550,49.5060,0.03517257 1267,458.8680,216.5720,19.7590,48.1320,0.02382058 1267,1.0000,191.6670,112.9620,65.2930,0.02279135 1267,115.4100,202.0670,25.2000,54.1570,0.02061763 1267,446.9640,214.7300,102.0960,48.7590,0.01840032 1267,18.6143,195.5270,25.5947,48.4930,0.01804309 1267,578.6200,229.8820,27.0120,55.6330,0.01614051 1267,492.5940,214.1980,19.1670,46.4460,0.01313986 1267,42.0287,199.0700,23.4194,46.4160,0.01236741 1267,3.4995,184.3490,51.0115,70.7630,0.01199008 1267,1.4916,198.8830,299.3534,78.1340,0.01078297 1268,600.0150,218.1850,36.6960,103.1490,0.53984344 1268,474.3690,215.2380,21.8190,51.0760,0.46264559 1268,520.2920,215.8650,22.2430,48.4680,0.43406191 1268,450.3750,216.7530,21.6350,48.3950,0.31151477 1268,398.0180,221.1400,21.0550,41.9620,0.14587846 1268,507.4630,213.8670,18.9130,46.0810,0.13763574 1268,21.5195,196.1490,23.9748,50.0360,0.03097912 1268,428.5220,220.9520,20.1060,38.7160,0.02860654 1268,3.9649,178.0760,37.0262,85.1640,0.02371710 1268,388.4060,216.5500,213.3060,50.3050,0.02329081 1268,490.2960,215.5140,19.2990,47.5400,0.02049772 1268,111.6650,202.4070,28.4240,49.9930,0.01920927 1268,611.1250,219.3220,24.2080,62.8730,0.01840017 1268,457.3570,211.5860,27.9860,54.7900,0.01437369 1268,463.5940,219.9800,151.4020,73.1670,0.01422559 1268,483.9990,214.5260,79.9220,53.7790,0.01309947 1268,594.3920,219.8880,27.5020,65.4200,0.01203715 1268,424.8840,214.5770,83.4690,52.3920,0.01183198 1268,7.2761,199.1830,26.6762,50.3620,0.01063087 1269,516.2320,217.6520,22.6440,49.5670,0.53188181 1269,474.0740,216.4900,21.8450,52.2780,0.43347117 1269,509.2230,216.0140,19.9320,47.8660,0.23754568 1269,593.3970,219.1360,42.0140,104.6930,0.18110217 1269,451.2830,220.3070,21.2440,46.3820,0.16656369 1269,460.4280,214.1990,20.5080,51.7520,0.11626199 1269,502.7480,218.4470,18.0630,44.2130,0.09962039 1269,396.7000,219.8800,21.1640,44.3230,0.03898328 1269,30.7663,205.9810,31.7785,63.3340,0.03051708 1269,434.3700,222.5490,20.1620,39.8370,0.02987996 1269,490.0870,218.8650,18.6210,46.4360,0.02097782 1269,387.4100,215.8670,189.4780,55.1610,0.02063450 1269,604.8440,215.7380,27.9140,71.7200,0.01831017 1269,591.4110,217.4040,30.8800,68.6290,0.01583201 1269,244.7820,213.1940,25.5400,46.0120,0.01211224 1269,56.0672,206.3890,27.3540,58.7770,0.01194550 1269,41.0053,207.7320,35.4205,73.0260,0.01088844 1269,420.7400,219.7660,21.6840,44.3480,0.01013771 1269,296.4390,211.8230,341.2790,74.1410,0.01013681 1270,511.9880,217.0200,22.7030,50.3820,0.52505475 1270,472.2790,214.4480,22.6400,54.3580,0.46647421 1270,593.9800,219.7170,38.4720,102.8140,0.35765713 1270,53.9310,212.8470,25.4569,53.7630,0.27625564 1270,449.5620,223.0530,20.7840,44.3100,0.13046427 1270,503.8960,216.6480,20.0870,48.5540,0.05099427 1270,462.2150,214.7420,20.8650,52.7790,0.04100369 1270,13.2789,201.5020,26.2319,51.2970,0.03868696 1270,5.6468,166.1520,33.5556,92.9370,0.02507796 1270,434.7410,222.7850,20.1350,40.3010,0.02482242 1270,400.5190,222.5510,20.9850,42.2730,0.02463475 1270,44.6033,207.1320,23.3410,44.9600,0.02383969 1270,73.7152,208.7220,30.9418,61.7420,0.02149245 1270,600.1880,223.6690,27.8390,57.9480,0.01570918 1270,415.8360,159.6100,26.1910,61.5330,0.01394759 1270,8.6693,204.9960,211.5587,58.3030,0.01377481 1270,1.8043,192.8080,104.9807,68.6340,0.01297677 1270,487.6420,218.3940,19.2260,48.0930,0.01135415 1270,35.2892,203.9040,21.1050,45.3070,0.01032525 1270,393.1110,210.2930,173.3670,60.2400,0.01004502 1271,473.3910,215.2410,22.9800,54.0160,0.56027687 1271,509.0630,215.8960,22.0970,51.6340,0.51528990 1271,449.9530,222.5320,20.5950,44.7460,0.20088604 1271,20.0480,200.6810,25.0457,52.1530,0.12049290 1271,594.5640,219.9010,41.6800,100.8000,0.11447579 1271,400.3890,223.2510,20.9200,42.3230,0.03462996 1271,435.6930,223.2530,20.4070,41.2370,0.03386931 1271,615.1090,222.3200,24.1970,78.1250,0.03170359 1271,115.7450,204.7890,22.9540,45.4110,0.02772301 1271,3.0333,193.2830,113.9597,64.1220,0.02573920 1271,40.1749,205.8080,154.6471,52.2320,0.02504842 1271,50.3756,207.0350,24.5565,44.2560,0.01872967 1271,32.2410,203.4290,20.9425,45.7510,0.01695857 1271,4.4100,199.6470,310.9050,78.1160,0.01550366 1271,29.6728,206.6910,61.2190,52.8090,0.01404322 1271,415.8930,160.0350,26.1690,60.8560,0.01392000 1271,458.1480,214.3490,20.8870,53.2010,0.01247198 1271,88.8135,205.5520,66.3175,50.0960,0.01097009 1271,487.8070,218.1170,19.2370,49.2180,0.01073974 1271,599.8500,216.2150,27.3550,66.8920,0.01072604 1272,475.1750,218.9720,22.4420,50.1520,0.51400745 1272,506.5130,217.5620,21.6290,49.5390,0.45817167 1272,52.4536,209.6190,25.0805,51.6220,0.41317785 1272,596.2250,220.8850,37.8440,101.4050,0.34189513 1272,451.7570,223.0040,20.3090,44.8480,0.28574249 1272,29.5575,201.9410,21.6747,47.9550,0.07746563 1272,46.3151,205.4760,20.7338,48.0510,0.05543187 1272,612.8690,216.2780,26.9220,85.2990,0.05099209 1272,427.7580,221.8330,20.5240,40.8380,0.03226373 1272,399.9420,224.2220,21.1060,41.7760,0.02719153 1272,418.1340,216.0750,22.3100,47.0450,0.01865438 1272,487.0140,219.4990,19.1900,49.1720,0.01614641 1272,415.9310,159.9250,26.2730,61.7440,0.01374531 1272,592.9070,216.8260,29.3050,71.9650,0.01263899 1272,435.4600,219.2820,22.1780,44.2900,0.01205742 1272,325.2270,220.9320,209.0400,52.3290,0.01141232 1272,342.5190,220.0340,39.9700,50.5140,0.01048244 1273,596.9790,219.7020,38.0000,105.4340,0.56878740 1273,504.5340,216.6400,23.0670,50.9400,0.41092014 1273,55.1959,211.2750,23.3970,50.5460,0.38531882 1273,476.0130,218.8060,22.1630,47.2050,0.14116184 1273,451.9530,217.0060,21.3390,42.7390,0.04440691 1273,45.5509,205.3950,22.5908,49.2930,0.04322592 1273,77.8558,209.4430,20.1632,44.1080,0.03580140 1273,614.9740,219.1430,23.6570,87.8390,0.03390316 1273,186.3650,220.9380,23.2070,40.3680,0.03289574 1273,487.3110,216.9880,26.2990,58.2390,0.02127239 1273,594.2190,220.8380,27.5720,72.0620,0.01616353 1273,453.0730,215.3260,84.6900,53.6230,0.01395736 1273,415.5380,159.8040,26.7730,63.3610,0.01182991 1273,392.5570,215.1900,186.8370,59.3020,0.01009436 1274,593.0210,220.0480,38.8080,104.7220,0.67495579 1274,51.9432,206.9650,24.7030,53.0350,0.53963995 1274,452.8210,219.6920,21.0980,45.3680,0.14618640 1274,444.6770,221.9480,19.9460,42.4530,0.09608167 1274,401.2670,222.7780,20.3240,43.3440,0.07868513 1274,436.7310,222.7700,19.6780,40.2690,0.06001256 1274,63.9098,209.2660,20.6210,46.2810,0.04584641 1274,477.9490,217.1160,20.8060,42.3030,0.03700765 1274,410.3530,217.4890,108.3840,48.2640,0.03358424 1274,610.5640,220.5430,26.7960,88.2120,0.03156815 1274,75.7982,209.0750,20.1894,42.9910,0.02928346 1274,427.5870,219.7890,21.4070,44.3370,0.02651814 1274,418.1010,216.4750,21.3930,45.3270,0.01782297 1274,410.1720,218.7270,21.3770,46.6450,0.01333752 1274,19.7144,196.7410,179.9976,55.6580,0.01213344 1274,59.3362,206.2560,54.6868,48.8600,0.01112698 1274,473.3980,219.2660,132.3430,89.8550,0.01111584 1274,463.9420,218.6490,21.6860,41.9690,0.01073830 1274,466.8640,212.8930,45.2570,48.4170,0.01027259 1275,592.4510,220.0860,39.7630,103.9760,0.59057903 1275,53.1702,207.1960,25.7747,54.4350,0.55833149 1275,476.6170,218.4120,20.6360,50.0190,0.42282614 1275,502.3420,218.1840,20.8770,49.2090,0.40761459 1275,452.0970,221.5510,19.8720,44.4000,0.31651533 1275,469.8880,218.4070,18.5820,46.9960,0.16525410 1275,514.6560,217.0090,20.2240,46.9380,0.11116358 1275,399.8650,220.4320,20.8160,44.6270,0.07387491 1275,492.9900,219.4410,19.1310,49.1370,0.06744413 1275,79.6912,206.4130,21.5168,45.9310,0.05136449 1275,436.2020,223.1060,19.5360,40.7430,0.05124838 1275,419.1420,220.0510,100.2140,48.2840,0.02973743 1275,609.9600,224.7150,28.5460,85.8550,0.02558491 1275,471.9640,221.0510,134.5350,82.9790,0.02099143 1275,294.5230,207.6560,25.7620,56.5270,0.01823419 1275,415.5960,160.5760,26.6320,63.3940,0.01403510 1275,419.9020,219.0620,21.2100,44.8920,0.01158998 1275,300.8230,207.0370,331.5400,77.6950,0.01041172 1276,53.1900,209.7430,24.6519,51.6130,0.53451544 1276,546.2150,219.7240,23.8750,51.1030,0.52398270 1276,595.7720,219.1250,38.6710,106.0490,0.51020986 1276,504.0980,216.7210,21.1340,49.7370,0.39585969 1276,474.2400,220.0070,20.3360,47.1790,0.38875240 1276,449.1770,223.4150,20.0700,43.4280,0.22707778 1276,514.0420,216.8350,20.1070,47.9490,0.15872724 1276,458.8470,223.0220,18.7040,44.0650,0.06594123 1276,400.5330,223.6450,20.5710,43.3420,0.06470147 1276,438.0730,223.1450,20.6160,41.3640,0.05280443 1276,63.4140,209.3280,21.0809,46.2410,0.03372230 1276,492.8120,219.3390,19.1290,48.9620,0.02987793 1276,77.0512,209.6590,20.6032,43.9630,0.02547675 1276,561.9900,217.9650,24.2220,48.8270,0.02465944 1276,394.8520,221.0320,208.1220,51.7240,0.02453625 1276,428.6460,221.2480,21.5570,42.7810,0.02138401 1276,613.9530,220.9470,25.2030,84.8440,0.02051303 1276,438.5150,217.7850,44.4300,50.3160,0.01436820 1276,531.3840,213.9850,49.3580,64.5620,0.01416946 1276,592.0830,216.2480,29.3300,75.2170,0.01227743 1276,21.9675,197.3510,183.5155,54.7010,0.01139077 1277,540.6930,218.8940,23.3900,50.6800,0.59801853 1277,51.6878,209.7330,25.8277,52.6120,0.56457901 1277,472.9490,217.6580,21.8850,51.1110,0.48010382 1277,596.7790,219.5080,36.9310,103.5320,0.43225479 1277,503.6400,217.1700,21.6400,50.9730,0.41306043 1277,444.6100,220.6080,21.1880,45.6340,0.27941188 1277,514.0740,216.0160,20.0120,47.9220,0.14033587 1277,437.0030,221.5300,20.0740,42.4030,0.09924559 1277,613.5390,222.3840,25.1870,83.8060,0.04634158 1277,76.9786,209.1000,21.1950,45.0110,0.03472728 1277,493.1870,218.5100,20.0260,50.0720,0.02497421 1277,459.3220,218.9580,19.5980,48.7560,0.02495307 1277,62.8497,209.2630,22.1086,47.0810,0.02306336 1277,463.6070,221.5180,149.5850,73.3350,0.02153326 1277,400.2500,224.6270,21.4760,43.1320,0.01559251 1277,550.3590,222.5400,22.2740,47.6570,0.01433206 1277,452.7490,219.8550,88.4040,52.8140,0.01401080 1277,592.5700,214.1230,28.4310,76.6940,0.01329269 1277,528.2220,213.2400,51.4120,64.1500,0.01167253 1277,307.5280,209.9950,332.4720,75.3730,0.01087956 1277,415.8110,160.7590,26.6000,62.0920,0.01020542 1277,4.5866,164.7510,34.4562,89.4300,0.01015483 1278,532.4990,213.9750,23.4880,51.7590,0.54444849 1278,54.2325,209.7530,24.8865,54.2830,0.48457757 1278,475.3180,219.6840,22.6300,49.1520,0.47720754 1278,503.2100,217.2810,22.8280,51.4050,0.47645542 1278,596.6630,221.0440,35.8220,97.8940,0.20572007 1278,443.6180,223.3660,21.2420,42.8470,0.20407335 1278,617.1470,221.7950,22.5830,64.8060,0.05283355 1278,400.3400,221.8720,20.9530,44.5010,0.04153231 1278,78.0200,206.7550,21.8309,50.3740,0.03926491 1278,46.4290,209.3920,22.4950,46.3980,0.03815722 1278,489.7420,220.7060,20.4260,49.6480,0.03327440 1278,391.9360,218.5450,207.4980,51.7760,0.02500997 1278,428.3800,220.3690,22.6150,44.4740,0.01740791 1278,417.5380,218.2470,22.1000,46.0340,0.01394071 1278,607.2090,220.8250,24.0610,60.7360,0.01384506 1278,416.0770,160.9530,26.5080,62.2960,0.01339124 1278,300.7360,211.9360,339.2640,73.9910,0.01281705 1278,454.4170,218.1130,82.0950,53.7600,0.01140565 1279,52.7376,209.7630,25.1512,51.7380,0.46913609 1279,474.6530,221.6670,20.1110,45.7400,0.34847605 1279,525.5700,212.7260,22.8570,50.7000,0.30429718 1279,443.2660,221.0740,21.5740,44.9290,0.26234978 1279,506.1190,219.1130,19.8620,47.6780,0.21658918 1279,600.1830,221.4590,34.6130,95.3720,0.20553853 1279,483.3740,224.3530,18.3280,44.8270,0.19321208 1279,491.6160,225.1970,18.2320,43.6730,0.13469771 1279,513.6180,216.8750,20.3010,47.7380,0.09183512 1279,615.9390,224.7270,23.4520,73.8290,0.09157982 1279,44.9006,204.7410,22.6672,48.7160,0.04457802 1279,452.9350,219.8310,94.4780,50.0950,0.04411088 1279,399.8880,220.8220,21.4220,44.8530,0.03569062 1279,429.9810,219.9490,22.4450,44.8690,0.02518850 1279,442.7910,213.4620,170.2640,65.4360,0.02100326 1279,595.1720,219.2250,28.5690,68.7500,0.01365630 1279,35.5533,204.8020,21.8892,45.1760,0.01303157 1279,416.1310,161.1840,26.2580,61.5300,0.01152192 1279,486.5490,223.1820,40.6070,48.7660,0.01141046 1279,339.6880,217.2200,210.9210,51.5810,0.01104308 1280,505.6130,214.3080,25.0460,58.8970,0.71654761 1280,52.9380,209.8230,25.5811,52.3490,0.58555549 1280,473.1950,217.3560,21.8770,52.0140,0.51399034 1280,598.8320,219.9560,35.7810,100.1770,0.26879039 1280,443.2910,222.1650,21.5640,43.8870,0.23580061 1280,24.4389,203.2650,22.9772,46.6520,0.05168662 1280,615.2880,222.1920,23.9430,79.1750,0.03609262 1280,44.5570,204.1690,24.8872,51.5750,0.03145711 1280,77.8826,209.7190,21.3580,48.1290,0.03125479 1280,430.3790,220.4940,21.9880,43.0910,0.03053512 1280,400.2090,222.4830,21.0820,44.1720,0.02966555 1280,492.1830,218.8150,20.3410,51.9370,0.02073101 1280,33.3276,199.0420,21.4987,48.0930,0.01921737 1280,515.8570,209.9050,23.9690,55.6540,0.01356314 1280,601.5630,224.5740,26.3430,57.6200,0.01177010 1280,416.0200,161.3820,26.2550,60.9370,0.01025239 1281,52.5442,209.7510,25.6594,52.1380,0.59955013 1281,597.9170,223.5000,30.6530,76.2850,0.53347743 1281,524.7360,223.0420,21.9020,48.5960,0.52275044 1281,475.1530,219.8750,21.3400,48.9740,0.46200824 1281,500.3670,218.1500,19.9190,49.2570,0.37669560 1281,441.2960,220.1060,22.4470,45.6290,0.21983448 1281,13.7188,199.7180,25.4354,53.0770,0.13131769 1281,516.7490,218.3300,19.7130,49.2200,0.09340499 1281,399.8770,221.1940,20.9720,44.8880,0.05142426 1281,76.9160,207.6010,22.2842,49.1380,0.03625342 1281,398.5200,221.6400,203.2570,51.5680,0.03076772 1281,611.0310,224.5860,26.2460,82.2520,0.03054517 1281,430.0560,218.6100,22.8650,45.4780,0.02620919 1281,451.8500,218.9340,90.3370,50.7580,0.01892516 1281,491.2880,218.5310,20.9430,45.6190,0.01466354 1281,415.8280,160.0290,26.3840,60.9970,0.01386979 1281,299.6410,213.4740,340.3590,72.5580,0.01366797 1281,4.1850,164.1190,36.3564,92.9780,0.01049453 1282,52.6642,209.8210,25.5197,51.9410,0.56752014 1282,598.3360,225.3700,31.4450,83.8600,0.42479897 1282,78.3110,206.7100,21.6528,49.1920,0.08234283 1282,615.5230,227.9030,23.2330,75.7940,0.05177831 1282,400.3580,221.4980,20.9870,44.9020,0.03978227 1282,461.5280,212.6710,28.5150,49.6550,0.02355962 1282,593.9310,208.8100,29.0360,73.5610,0.01773877 1282,439.5760,215.5470,26.9990,51.9860,0.01303893 1282,4.5584,203.0610,21.4309,47.1530,0.01202196 1282,415.8400,160.3900,26.2810,62.8840,0.01175332 1283,553.6590,222.4430,24.1920,51.2300,0.68613607 1283,52.9568,209.5690,25.4994,52.8190,0.56821162 1283,473.5790,217.2980,22.5340,51.0700,0.56207538 1283,597.9570,228.5450,27.6800,68.8480,0.48440173 1283,503.8610,217.1810,22.0990,49.9280,0.41679782 1283,443.5550,218.0710,22.1300,47.2920,0.31597608 1283,400.3600,221.3320,20.7090,44.7270,0.12628034 1283,77.7148,207.1530,21.6389,49.1180,0.07405727 1283,612.7580,227.4710,23.9710,78.4930,0.05833594 1283,492.5760,219.4660,19.4010,49.3960,0.03597946 1283,412.1030,214.6220,21.6470,48.5080,0.03489088 1283,428.9010,218.3380,22.4450,45.8940,0.03022073 1283,512.4910,216.2650,22.3290,47.2190,0.02645935 1283,338.9120,218.7100,198.5290,51.2070,0.01759430 1283,390.2390,216.3810,88.6640,52.2710,0.01489207 1283,587.4700,233.5320,26.3190,69.1820,0.01384054 1283,388.8400,219.1460,20.4210,43.9660,0.01293405 1283,285.8190,214.6000,354.1810,73.1920,0.01168463 1283,456.8810,216.7580,74.5920,56.1630,0.01055904 1284,474.0920,217.8040,22.7010,51.7470,0.58096957 1284,574.1700,222.0780,21.9460,50.2310,0.51114792 1284,503.6950,217.6380,22.6320,50.7070,0.47944608 1284,599.6100,225.1860,28.2960,69.6390,0.39870459 1284,441.1390,216.7580,22.1050,49.4860,0.27565002 1284,400.0750,223.0930,20.7120,42.8100,0.13244934 1284,616.1660,226.5630,22.2960,70.5460,0.04004921 1284,431.0440,216.4150,21.6540,48.5150,0.03858274 1284,412.4180,214.1050,21.9800,48.8070,0.03468097 1284,490.0830,213.8890,24.2470,54.7140,0.03172304 1284,4.1284,167.4740,41.1444,98.5820,0.02712211 1284,512.1780,215.2780,22.4670,47.6560,0.02554052 1284,379.9010,213.7130,20.4730,43.7790,0.01571288 1284,387.6250,217.4300,20.8870,45.6670,0.01546285 1284,390.1780,215.2600,188.4530,55.8790,0.01503502 1284,392.0050,215.7020,87.1100,52.0870,0.01349721 1284,415.4750,161.2620,26.7560,62.7380,0.01241259 1284,130.3740,204.3210,23.6260,46.5550,0.01148079 1284,583.9210,220.7420,25.7410,59.2150,0.01000981 1285,52.9562,211.2000,25.7010,51.2120,0.50812244 1285,435.6370,218.4680,21.5470,48.0340,0.30106726 1285,596.9540,215.5110,36.8390,104.3190,0.22589698 1285,398.1900,219.8350,21.1910,45.1780,0.14904694 1285,594.5720,207.1500,28.3620,75.4400,0.06613547 1285,418.6070,213.1950,21.7850,48.2080,0.05460721 1285,76.2520,210.8530,20.7618,44.6980,0.03682209 1285,63.8417,210.2120,21.0854,45.9430,0.03410972 1285,393.5680,214.8360,82.4890,52.0330,0.02755181 1285,378.6800,215.2750,20.4970,44.5500,0.02427641 1285,382.4760,216.1080,197.4300,56.5660,0.02233286 1285,470.7650,214.1280,28.1210,47.4200,0.01997968 1285,614.8730,222.1050,24.4060,88.0660,0.01749815 1285,408.6570,217.7890,20.4940,48.9010,0.01417829 1285,387.1860,216.3360,21.8550,46.9870,0.01134066 1285,415.9520,161.4460,26.2200,60.9180,0.01057733 1286,473.5710,217.0780,23.1640,51.7680,0.56862009 1286,599.9360,222.9570,32.9850,95.9030,0.55082715 1286,53.1981,209.4440,25.1598,51.5700,0.52833170 1286,504.1300,216.9100,22.4930,50.7610,0.49631688 1286,442.6000,220.8960,20.7740,45.2010,0.27765867 1286,399.3320,221.8660,21.2350,43.7440,0.18138905 1286,428.6290,220.9510,19.6570,42.8320,0.08301846 1286,615.6180,224.2420,22.5940,82.7380,0.07160559 1286,419.4170,218.2980,20.9360,46.6300,0.04551950 1286,410.6130,216.1480,21.1510,49.0430,0.02659710 1286,377.1670,211.0650,21.6900,46.1990,0.02475922 1286,489.4770,213.3250,24.5490,54.6650,0.02261596 1286,76.9349,209.5100,20.1143,44.9410,0.02090308 1286,335.0620,218.8470,202.6620,50.7400,0.01998836 1286,391.4760,217.5970,85.2930,51.9000,0.01899586 1286,256.7690,211.8210,230.3730,49.6100,0.01104178 1286,415.8190,161.5430,26.4240,61.9650,0.01076112 1286,215.3740,209.3630,394.8170,68.0950,0.01061880 1287,597.0890,223.0320,34.4270,94.6540,0.55343896 1287,501.5520,217.2400,22.1010,51.2720,0.55218691 1287,473.9710,217.2140,22.7070,52.7780,0.54707998 1287,52.6983,208.6800,26.5435,54.0460,0.51615721 1287,398.0280,220.0390,21.5470,45.6720,0.19617736 1287,441.7550,221.6310,20.8290,44.5680,0.17991683 1287,427.0230,221.0600,19.4130,42.6270,0.10957707 1287,511.6140,216.6010,20.8300,49.8660,0.10564108 1287,416.2140,214.5780,25.6770,52.4310,0.04473669 1287,493.4420,216.3850,20.1140,50.8760,0.03259268 1287,614.5530,225.4050,23.9720,83.3220,0.02563221 1287,396.1080,217.5220,77.6400,51.6090,0.02113914 1287,415.5830,160.4690,26.6710,62.9320,0.02007939 1287,348.7080,213.9210,187.4210,51.4940,0.01421341 1287,75.1172,209.3630,21.2511,45.4390,0.01336008 1287,375.5980,212.4970,21.4510,45.9190,0.01142196 1287,408.4010,219.5580,20.9510,46.3440,0.01024921 1288,471.7430,211.2480,24.9190,58.0250,0.73796809 1288,504.7890,217.3890,22.2780,50.0480,0.57416546 1288,597.8700,225.1410,33.4830,94.5810,0.53569579 1288,52.6078,210.8230,23.9796,49.7650,0.37855318 1288,441.3290,221.0750,21.5740,45.8180,0.24609242 1288,397.3440,218.8110,21.9820,46.6950,0.18169795 1288,426.5990,219.0880,19.9280,44.5300,0.10004371 1288,615.8090,226.1220,23.2340,79.6110,0.06888344 1288,64.7351,211.1230,20.4145,44.6910,0.03812949 1288,414.2080,212.1040,21.5620,51.2380,0.02954279 1288,396.9180,214.5280,72.8190,54.2300,0.02326438 1288,488.4330,210.8050,26.0360,57.5910,0.01706705 1288,372.1080,211.5800,21.2550,42.2950,0.01346098 1288,462.9260,212.4810,22.1400,55.4170,0.01258173 1288,73.0737,210.7700,20.4494,45.5220,0.01165922 1288,346.3930,209.4240,172.4130,53.0920,0.01035206 1289,599.9760,224.4500,29.4580,80.6870,0.61262995 1289,473.2340,213.8600,22.4760,55.0050,0.54503155 1289,501.4820,218.4470,22.6290,50.3920,0.49431995 1289,53.9554,209.6080,23.7021,51.0680,0.45703208 1289,442.0050,221.4260,21.0620,44.6320,0.30784613 1289,613.9390,227.8010,24.9440,80.7050,0.17833757 1289,519.9510,216.9630,21.6210,46.8010,0.16304284 1289,397.4900,219.9490,21.8140,45.3810,0.15077013 1289,44.3751,207.8930,20.9720,46.0130,0.11046860 1289,421.4980,218.1380,20.2670,45.3190,0.08368211 1289,35.8440,206.1760,20.1654,42.0350,0.07514168 1289,64.0169,211.4860,20.4031,44.1860,0.03442256 1289,492.1810,213.5940,22.4910,54.8730,0.02696172 1289,372.8180,211.8120,21.0410,42.3560,0.02212153 1289,396.2980,216.6920,79.1990,51.2550,0.01965121 1289,75.8154,211.8080,20.8773,42.7860,0.01836007 1289,345.3390,214.9280,190.6690,50.4550,0.01545422 1289,36.9632,205.2370,51.0865,50.6850,0.01333858 1289,411.2700,218.5880,20.1330,47.2880,0.01314633 1289,8.5831,196.6740,194.6679,53.3140,0.01240960 1290,471.9330,211.9990,23.3230,55.7990,0.51250196 1290,53.8923,210.9200,24.7196,50.9890,0.48136234 1290,502.1400,218.4720,22.4280,49.7650,0.47711098 1290,598.4050,223.7610,32.8600,89.0520,0.39996395 1290,443.1270,220.4600,20.8630,46.2390,0.31810269 1290,397.7600,220.4830,21.5420,45.0680,0.16106854 1290,421.6110,216.5810,20.3900,47.1960,0.10670964 1290,519.8140,217.2780,21.6380,46.2400,0.10643788 1290,615.3960,228.6960,23.6400,78.5760,0.07364747 1290,77.0911,209.3550,19.9093,44.4090,0.05992071 1290,64.7509,209.6380,20.3772,45.2160,0.04658035 1290,24.8326,202.5070,21.2929,41.8290,0.03197648 1290,493.8210,218.6960,19.9810,50.2380,0.03087541 1290,396.9490,216.7250,82.7200,50.3450,0.02103764 1290,384.6480,215.6440,188.6760,55.4770,0.01944606 1290,373.2780,213.8220,22.1080,43.4420,0.01929860 1290,457.7500,210.4160,24.5600,55.4980,0.01812922 1290,412.0410,217.5220,19.9640,48.3410,0.01675194 1290,415.8970,161.2120,26.5830,61.1240,0.01215036 1290,13.2599,198.3840,188.2731,53.9210,0.01186399 1291,503.2020,217.5330,22.4650,51.7820,0.53308475 1291,53.7371,210.2370,25.3275,52.2670,0.48433703 1291,473.9160,216.0850,21.8450,51.7890,0.47894630 1291,443.0240,220.6310,20.8790,46.0670,0.35699880 1291,599.8100,224.2560,31.8760,87.0310,0.27967751 1291,397.3180,219.1130,21.7280,46.6330,0.16834615 1291,515.0170,217.0670,20.7920,48.3070,0.13434632 1291,419.2490,215.3780,21.4680,48.3370,0.11848603 1291,615.4820,227.3560,23.3000,76.2680,0.11804329 1291,492.4010,217.9430,19.7280,50.9720,0.03797300 1291,460.1740,209.3350,23.8260,56.0040,0.02621572 1291,425.9710,222.7760,22.2670,45.0800,0.02226224 1291,385.3300,215.8550,186.4630,55.4630,0.01958360 1291,396.7720,217.0060,81.5520,50.9780,0.01832543 1291,411.4750,218.3820,19.7770,48.1870,0.01828641 1291,72.0678,208.5960,21.9184,48.7250,0.01658214 1291,595.0050,216.9340,27.9450,67.2660,0.01388036 1292,51.2636,207.4540,27.5873,55.9220,0.58981949 1292,502.7730,217.8030,22.7200,51.7240,0.53218669 1292,472.1860,214.3970,22.9200,54.5570,0.50366163 1292,597.9800,223.5780,32.1590,87.8630,0.49025029 1292,443.1010,219.1560,21.1410,48.6670,0.46600458 1292,397.5750,219.3210,21.7360,45.5500,0.15717404 1292,511.8550,214.7610,23.1660,52.6220,0.09044023 1292,428.2720,220.3420,19.7970,44.4290,0.07910386 1292,615.2870,227.5510,23.2680,77.6240,0.05988096 1292,494.4430,218.8620,20.2980,50.5480,0.04913176 1292,419.0710,217.6620,21.8550,46.3680,0.03048911 1292,460.7850,209.9690,25.2880,56.4110,0.02159530 1292,395.5900,216.7070,82.0260,51.9810,0.01994112 1292,374.0820,209.9420,22.1070,43.4910,0.01477969 1292,347.9700,213.2220,182.2660,51.9550,0.01462334 1292,521.3660,219.9460,20.3000,41.6690,0.01458196 1292,410.9300,218.8710,20.6890,47.0980,0.01179314 1293,473.3510,214.0700,22.3300,54.9840,0.46385160 1293,51.9903,207.9210,26.7224,54.0960,0.45672500 1293,597.7380,221.7330,34.7580,96.7970,0.45125297 1293,499.7530,218.7980,21.2850,48.5790,0.39907774 1293,444.4980,220.6970,20.7960,47.0600,0.39299542 1293,400.1310,222.1410,20.6370,43.5970,0.14307855 1293,426.3450,222.1030,20.0070,42.7420,0.09718288 1293,516.3880,217.3120,20.8780,46.1570,0.07449809 1293,457.0600,210.9700,24.3000,56.7200,0.03268211 1293,435.6450,222.8020,21.6710,45.8600,0.03164561 1293,614.8630,223.3890,24.0030,83.9090,0.03145330 1293,63.4762,209.1040,22.0237,46.3950,0.02150499 1293,387.8880,215.8900,188.0870,56.3770,0.01861319 1293,409.4910,220.8520,20.0220,46.9820,0.01837418 1293,396.0670,217.2900,82.6230,51.5680,0.01526975 1293,454.1220,215.7180,78.8910,55.7620,0.01156587 1293,415.5470,161.0440,26.2910,60.3820,0.01133777 1293,465.5350,223.4830,141.1090,80.8550,0.01092510 1293,41.3932,199.1010,25.9416,51.3730,0.01029887 1294,51.7608,206.3950,27.0869,55.0880,0.55545712 1294,472.4470,215.6380,22.6910,54.7090,0.55532122 1294,598.1230,222.4040,34.7900,97.3820,0.48081428 1294,443.8470,221.1980,20.9420,46.6800,0.34700438 1294,397.9740,218.1280,22.3450,47.8750,0.26079786 1294,499.2300,221.3570,19.1680,45.1320,0.21212983 1294,419.4040,218.6690,19.6180,44.8650,0.17870879 1294,507.7080,220.5420,18.3050,44.0820,0.16933125 1294,515.1750,217.9620,20.8760,45.6150,0.10028581 1294,43.8610,202.8460,23.9144,51.2970,0.06723702 1294,614.3230,223.4890,24.4620,84.7210,0.04940627 1294,461.5330,212.9110,20.1060,52.3660,0.03903306 1294,410.2320,218.4430,20.8960,47.5490,0.03567537 1294,387.3650,216.1580,189.7950,54.7620,0.02328977 1294,36.5911,201.7140,21.6441,46.3140,0.02083502 1294,484.9080,215.6650,45.7050,52.6970,0.02082443 1294,424.7380,215.7420,31.3250,51.5000,0.01449155 1294,397.6390,216.7270,79.9290,51.0320,0.01420354 1294,464.0970,223.7610,142.4170,78.8690,0.01273315 1294,490.3640,229.6780,23.5650,42.1480,0.01146604 1295,52.2949,208.3000,25.1503,53.4730,0.53988636 1295,597.9810,222.1210,34.1670,95.0620,0.45968711 1295,443.5640,218.7770,20.7060,49.1810,0.44284132 1295,472.0770,217.1770,20.9630,52.0180,0.44097215 1295,418.8070,217.9770,19.5660,45.4010,0.19307874 1295,397.5450,218.8190,21.4440,46.2620,0.16997069 1295,492.5870,224.2760,18.2590,44.2280,0.14406538 1295,499.4570,221.7130,18.5530,43.3300,0.13328305 1295,507.9260,221.1630,18.2610,42.8570,0.12328014 1295,480.6560,220.1480,18.9450,46.2170,0.09913137 1295,461.3430,212.7780,18.8480,50.9740,0.05403831 1295,614.4750,224.4190,24.3320,82.2050,0.04025562 1295,34.7888,206.2790,20.7291,43.3410,0.03982666 1295,515.1540,218.7380,20.1230,43.7460,0.03812595 1295,446.8000,218.3770,90.6930,53.0690,0.03379942 1295,43.7455,205.1880,23.1698,47.7870,0.02284820 1295,349.3160,216.2900,193.2460,50.2550,0.02152678 1295,407.2390,216.2410,40.7970,53.5370,0.01978704 1295,426.3750,215.1830,31.5030,51.7490,0.01386391 1295,463.4260,223.0570,142.5240,79.9570,0.01269938 1295,295.9680,209.1050,333.2120,74.9240,0.01035948 1295,599.0830,212.0170,27.2530,62.7120,0.01021792 1296,597.7040,222.0130,35.6690,99.0940,0.51401633 1296,51.2045,209.2540,26.6033,53.2640,0.48472416 1296,473.8970,218.5720,20.8110,50.8500,0.42791146 1296,441.7830,221.0360,21.4750,46.6180,0.38452429 1296,493.4980,224.5770,18.5430,44.6140,0.15610622 1296,416.7950,221.3950,19.6960,43.1990,0.14489892 1296,18.8858,204.3520,22.8532,46.2930,0.10134798 1296,508.9420,221.4190,18.5400,42.6930,0.09758139 1296,400.6010,222.2240,20.4340,42.2850,0.09657745 1296,426.7900,221.9520,19.8150,41.8430,0.04960882 1296,448.6940,219.4490,86.3680,53.2710,0.03345865 1296,485.7490,216.3870,36.8970,49.7800,0.03032731 1296,481.1930,223.6160,21.8020,48.2320,0.03021730 1296,460.0360,214.8690,19.5110,48.8160,0.03006508 1296,615.2750,223.7500,23.3240,81.3670,0.02425550 1296,62.3238,208.1830,22.6460,48.7670,0.02171912 1296,353.7820,217.5960,191.5430,51.0930,0.02152513 1296,404.5500,216.9500,48.8150,51.6660,0.02030983 1296,75.9614,209.9450,21.3914,45.7590,0.01761656 1296,463.9910,223.2960,140.1250,81.2420,0.01566277 1296,415.7170,159.9510,26.2500,60.9630,0.01329202 1297,474.7480,218.6460,20.5000,50.6840,0.47560468 1297,597.2180,221.5590,35.8400,97.9860,0.40768972 1297,52.2133,210.2110,24.7384,50.8590,0.38856718 1297,441.5180,221.5440,21.1500,46.4090,0.37359786 1297,498.3740,222.7240,18.9270,43.2420,0.27720332 1297,507.7360,220.3620,18.0660,44.3680,0.13646339 1297,413.6680,221.1720,19.3820,43.0180,0.10866544 1297,400.5430,220.3890,19.9870,43.8450,0.10745079 1297,514.3010,217.1520,20.0480,46.9840,0.09107600 1297,451.4750,214.8140,19.3160,47.1830,0.04622911 1297,384.4220,216.9480,186.7580,56.6350,0.03120168 1297,406.2470,218.5520,41.0410,48.1760,0.02507632 1297,428.1820,223.0670,20.1310,41.4110,0.02442729 1297,4.2109,164.9710,32.9315,85.7890,0.01817611 1297,480.3260,216.2190,47.6210,51.3730,0.01592796 1297,63.9904,209.0780,20.7460,46.2580,0.01435891 1297,3.6598,202.6470,25.6414,52.2230,0.01398098 1297,464.9870,223.4230,136.6910,82.6970,0.01369898 1297,7.8224,197.9630,193.0686,54.3250,0.01227562 1297,395.3270,222.2060,87.1940,49.0660,0.01152242 1297,460.2150,219.1360,19.4840,46.6200,0.01139828 1297,300.7380,208.4650,325.2470,77.4520,0.01023125 1298,53.7897,211.3080,25.1280,50.8800,0.50031471 1298,474.9620,218.2540,20.7330,50.8000,0.45608681 1298,597.8650,221.5890,35.6750,98.3120,0.45223126 1298,442.6150,221.1630,20.8080,46.9590,0.35429695 1298,498.8270,221.9550,18.9440,43.7590,0.26589930 1298,400.3880,220.2360,20.2050,45.3040,0.20098364 1298,507.2490,220.2080,18.0630,44.2020,0.14576611 1298,412.0490,221.6110,18.7790,43.1610,0.08423886 1298,514.6370,218.1280,20.2510,45.0860,0.07497215 1298,450.8010,216.5660,19.0100,46.7820,0.05341767 1298,460.5920,215.1720,18.2820,45.7210,0.04477010 1298,429.2630,220.7850,19.7550,45.4890,0.04317876 1298,80.4397,205.4110,22.6023,49.1850,0.03806303 1298,45.3149,209.4210,22.0648,46.6070,0.03430941 1298,386.1330,217.9500,188.5620,54.7220,0.03284083 1298,467.4170,214.8440,21.3640,47.4290,0.03193363 1298,614.9560,222.8020,23.8090,83.8180,0.01843599 1298,462.4560,222.9220,141.1830,80.1260,0.01623175 1298,393.8110,216.3970,42.9640,51.2200,0.01551099 1298,479.0940,217.0190,50.4360,50.1060,0.01486147 1298,36.9422,208.8390,20.3893,42.1780,0.01443997 1298,412.1330,217.0930,59.6430,50.5180,0.01243142 1298,300.9060,208.5700,325.3850,76.2740,0.01094474 1299,574.9300,229.5140,33.9960,83.6830,0.49026841 1299,59.4430,210.7470,24.5042,50.8320,0.38197881 1299,441.7610,221.1150,21.5630,48.8940,0.37238786 1299,490.8400,223.0300,18.6270,44.7390,0.32061210 1299,475.0330,219.7830,18.5040,46.5650,0.28073454 1299,411.9270,215.0780,20.7310,48.1690,0.28068411 1299,616.4540,226.9110,21.3900,60.6100,0.21491817 1299,509.6030,221.8170,18.6380,43.0890,0.14672875 1299,498.2170,221.3810,18.2610,43.7800,0.10892969 1299,25.9651,199.4790,21.5243,46.8650,0.09713238 1299,386.4530,220.0390,19.5510,42.9520,0.06055085 1299,441.5620,220.5180,94.1560,51.1140,0.05473586 1299,520.5010,220.1990,20.5010,41.8870,0.04817504 1299,80.8567,209.0050,21.0283,44.3170,0.04682864 1299,426.1560,220.8270,21.3950,46.3490,0.04582007 1299,462.7590,217.0650,17.4850,45.6650,0.03986132 1299,374.0780,215.7600,142.6010,52.4580,0.03379714 1299,449.6480,214.9820,19.8670,49.5110,0.03266405 1299,401.5480,218.0710,44.7750,48.8340,0.02980741 1299,479.3130,216.1750,41.7380,48.7990,0.02779664 1299,450.8070,221.1370,162.3180,75.6670,0.01731988 1299,394.2370,218.3490,19.5890,45.4930,0.01529145 1299,416.8290,216.5330,53.2180,53.1740,0.01372077 1299,302.6470,210.1770,328.9300,75.3050,0.01344780 1299,602.6010,227.6710,33.4300,85.1560,0.01080665 1300,602.5530,220.2450,34.8570,102.6800,0.66683197 1300,527.4510,224.7880,31.7900,89.3170,0.64863330 1300,75.6026,211.0760,25.2411,54.4220,0.60213810 1300,473.4340,220.4960,21.4050,50.2060,0.53553253 1300,357.9610,221.3830,21.1150,42.7130,0.26872486 1300,434.9640,221.4560,21.1130,46.3700,0.26256093 1300,581.3020,198.9450,30.9710,98.7590,0.19858430 1300,397.1980,219.8780,20.4740,44.2490,0.16822498 1300,500.5980,222.8170,18.5510,41.4700,0.11326776 1300,492.3300,222.7010,18.0540,43.0540,0.05088851 1300,508.6300,219.9230,18.8500,42.9310,0.04985879 1300,328.8200,223.6890,219.9200,48.4440,0.04531623 1300,373.6360,221.5220,17.6880,39.0480,0.03313238 1300,483.9050,217.6960,40.8340,53.0090,0.03229688 1300,18.2550,202.3700,21.0427,44.5020,0.03097571 1300,35.2475,194.4920,23.2765,44.8990,0.02778376 1300,349.1630,217.4510,106.3320,47.0640,0.02676288 1300,4.8559,207.4520,20.6419,43.5640,0.02339726 1300,4.9276,166.9700,33.9588,84.8510,0.02322273 1300,366.7680,219.4810,47.7390,46.1990,0.01906417 1300,389.6970,220.7980,18.5560,41.6200,0.01845150 1300,278.7350,214.8520,358.5200,71.0130,0.01816527 1300,421.6890,218.2980,22.2750,48.1250,0.01720937 1300,488.0610,218.0380,95.6170,99.9290,0.01563444 1300,584.1440,234.5190,35.5570,85.1290,0.01352944 1300,26.6148,199.8170,21.5979,45.1130,0.01312584 1300,479.9620,230.2240,23.1380,42.0920,0.01207697 1300,517.2070,250.0130,34.3910,75.4760,0.01190209 1300,407.4010,218.6120,20.6920,46.4000,0.01064463 1301,523.6940,218.0620,43.5810,109.8380,0.77276123 1301,471.6040,216.3980,34.4110,87.1470,0.69440323 1301,412.2680,220.0790,23.1560,46.1500,0.34508002 1301,364.2420,220.1420,19.4100,41.8440,0.13480575 1301,327.4150,221.0440,22.2070,43.2470,0.11264434 1301,356.3850,219.0470,18.2100,40.5770,0.11010401 1301,42.0337,196.0520,23.8511,47.1340,0.06252147 1301,18.4200,199.8140,139.3330,54.4810,0.05343504 1301,100.9516,214.4560,24.6144,48.9450,0.04974657 1301,510.4980,215.4940,19.9940,47.3270,0.04777107 1301,76.7067,207.1960,20.9417,42.8530,0.03834122 1301,339.2790,221.6590,20.1500,42.6790,0.03726033 1301,322.6020,216.5350,92.1850,48.3080,0.03485612 1301,347.3930,220.7020,19.9320,42.6390,0.03439667 1301,58.2089,206.3180,22.1461,41.3110,0.02964114 1301,5.0502,166.6030,32.1405,79.9110,0.02859052 1301,315.6590,215.7230,182.4490,58.5460,0.02465166 1301,374.9460,217.1260,20.6030,44.8600,0.02308192 1301,486.8590,215.9180,25.1770,68.3730,0.02244071 1301,437.2570,212.3040,79.9180,98.2790,0.01660528 1301,459.0530,216.7990,21.7580,51.8940,0.01501597 1301,460.9230,224.1810,29.8030,81.4630,0.01402661 1301,421.5130,222.0770,22.5700,42.3660,0.01401438 1301,523.0080,218.1890,28.5260,73.1790,0.01268081 1301,52.3573,202.7120,51.0077,48.5230,0.01114754 1301,5.0185,190.2020,282.8705,80.4230,0.01057072 1302,453.0430,215.3800,42.1420,117.7120,0.81588769 1302,414.3520,214.8500,29.1490,86.8790,0.65741897 1302,132.7490,212.9130,24.8120,51.7850,0.44198859 1302,600.1170,220.6550,34.5740,98.5540,0.39142177 1302,317.5800,219.8590,21.6210,42.4330,0.30658668 1302,383.3740,219.1080,21.9750,46.9520,0.28889358 1302,593.9090,221.8420,28.8430,66.2310,0.26236653 1302,506.5490,216.9380,21.7140,46.4300,0.25866956 1302,294.8410,214.2510,23.4840,49.3730,0.24068877 1302,339.7390,218.4660,19.5810,42.5000,0.20497859 1302,429.7800,218.1100,26.1280,83.5260,0.17514214 1302,45.0221,196.3050,24.6219,50.8150,0.15284656 1302,470.1230,218.4830,34.8820,92.3880,0.14600752 1302,612.3410,229.0780,27.4390,70.8790,0.10207938 1302,81.6731,208.9140,20.3499,41.6560,0.04919841 1302,306.5050,219.0590,20.7430,45.4740,0.04866848 1302,563.5240,259.5840,76.4760,252.4160,0.03610945 1302,445.9940,219.4200,31.1370,94.7070,0.03563821 1302,481.3570,221.2100,22.0360,54.7970,0.03531747 1302,23.1310,198.3820,136.8800,57.3300,0.02355464 1302,591.4560,284.1380,38.3910,79.1090,0.02335274 1302,457.5170,259.7170,28.9450,73.2560,0.01603034 1302,327.2980,215.0420,39.0860,52.3610,0.01536489 1302,439.3820,219.5260,24.1230,68.7480,0.01365195 1302,518.0760,214.8310,21.5880,45.8070,0.01324772 1302,463.4800,217.3460,27.1000,68.0020,0.01206694 1303,394.9740,214.0370,35.7400,111.7500,0.59417778 1303,563.9560,223.4650,34.1770,87.8200,0.57054484 1303,593.4770,224.2520,23.3760,59.4790,0.56263226 1303,164.4490,213.8740,23.4830,51.8490,0.55744338 1303,365.1460,218.7430,29.0620,82.2500,0.50686431 1303,468.2820,217.8520,22.5100,51.2320,0.42445412 1303,511.3780,218.4230,21.6610,50.4470,0.38806000 1303,281.4220,214.5050,20.8940,47.9650,0.35305795 1303,307.5240,275.9720,111.6280,236.0280,0.31945089 1303,263.7920,219.4990,20.9670,45.0600,0.30659872 1303,394.9900,249.5790,114.8270,262.4210,0.21759661 1303,425.3080,216.8980,31.3210,81.3430,0.21623315 1303,303.7200,218.8410,23.3680,44.3590,0.15392366 1303,497.5020,221.7360,19.6430,46.1580,0.14420862 1303,387.9430,216.8840,27.0700,92.3880,0.13003120 1303,555.9890,230.6300,27.0340,73.2260,0.11437644 1303,82.1878,211.0980,41.6672,76.3410,0.11289874 1303,44.5610,200.1760,22.9832,48.1980,0.08420534 1303,352.6100,216.4890,21.6830,51.8740,0.05891114 1303,482.8380,225.3140,19.1890,44.3720,0.04420832 1303,476.8770,217.1390,51.6750,53.4260,0.03071446 1303,410.9100,216.1820,32.7130,103.1110,0.02922732 1303,41.9658,202.7700,94.0022,67.8810,0.02495955 1303,580.8200,224.1300,31.0570,77.3180,0.01830899 1303,410.0820,228.0960,53.0060,144.1280,0.01314115 1303,360.9230,218.5700,23.1520,54.2000,0.01299161 1303,613.0940,219.8620,26.7840,80.9800,0.01209049 1303,6.7961,207.0590,429.9379,62.7120,0.01202473 1303,292.9040,232.7160,130.3440,101.6040,0.01086219 1303,343.8520,217.2020,62.4460,73.3000,0.01036823 1304,385.0850,220.3460,32.6570,77.5850,0.85155356 1304,340.3540,215.1090,37.5000,106.0740,0.79387319 1304,518.2070,222.9630,36.9140,91.7040,0.72271252 1304,455.5620,217.0660,23.9760,53.8860,0.54911864 1304,318.8470,214.8970,28.9090,80.1080,0.52103567 1304,195.8570,215.1380,23.6290,48.5780,0.51634777 1304,577.1880,219.5720,35.6300,81.1560,0.42854923 1304,614.3060,212.6540,23.3360,67.5290,0.41506183 1304,46.5050,243.8610,142.9600,268.1390,0.33627543 1304,239.8470,216.2020,28.0970,58.6160,0.30444297 1304,271.5120,218.0700,23.3060,44.8080,0.28653851 1304,508.0760,229.1160,31.1700,80.9090,0.24944960 1304,505.4140,221.4590,24.3660,60.0760,0.08673824 1304,1.0000,233.9340,28.8429,94.3160,0.07616992 1304,43.0234,204.2590,23.3448,43.4230,0.04402967 1304,38.9402,202.0600,67.8508,48.4090,0.03796159 1304,75.8557,208.7830,21.2468,39.9740,0.03695992 1304,356.4670,232.6400,30.2840,83.7920,0.03185072 1304,447.2410,214.4660,20.7520,50.2910,0.02714169 1304,1.0661,216.4260,24.4036,62.9840,0.02690268 1304,345.5210,260.7360,24.9730,59.1800,0.02663332 1304,328.4130,209.5340,36.9950,91.1970,0.02132553 1304,67.2557,209.7810,20.9037,39.4550,0.01622053 1304,414.3200,214.1420,24.4690,48.3400,0.01415403 1304,296.2070,211.3070,103.1460,80.4220,0.01260932 1304,212.7370,210.9370,66.6250,59.1620,0.01084790 1304,501.7690,207.4540,76.6390,92.1630,0.01068719 1305,67.4918,206.0390,48.1142,113.4700,0.83489335 1305,294.2830,211.0010,36.8970,106.7510,0.80769092 1305,522.1810,220.6150,33.2900,90.3680,0.78806740 1305,346.9390,220.7130,28.8190,73.8680,0.76587135 1305,602.5850,212.4820,24.3150,65.0210,0.65271741 1305,581.4060,222.3410,23.5930,54.0400,0.62413412 1305,236.6810,215.5080,22.6440,49.5380,0.54985422 1305,472.5320,223.1170,29.4790,82.3800,0.53660411 1305,435.4820,228.4370,28.6930,78.6750,0.43103471 1305,461.6380,228.8990,27.9840,79.7370,0.36582297 1305,282.3390,212.7950,32.0780,92.1460,0.32282168 1305,511.4170,224.2790,29.2380,84.1260,0.29096481 1305,207.5890,216.7390,20.6130,47.3890,0.26104492 1305,485.1950,225.6510,28.3380,82.7530,0.23134014 1305,25.8563,220.0510,24.1216,52.0220,0.22285603 1305,9.6041,218.0870,22.8377,52.2460,0.08846013 1305,75.8006,206.9840,29.1604,78.0830,0.07056105 1305,37.8924,214.7160,25.8800,57.1910,0.06874299 1305,197.5230,216.5450,20.4130,48.0700,0.06096462 1305,198.2170,215.0540,48.0190,48.9290,0.03770387 1305,275.9480,226.5990,25.5620,64.8350,0.03328688 1305,307.8450,233.3340,31.5100,78.1540,0.03144193 1305,216.1640,219.7400,19.6410,45.9380,0.03141608 1305,45.8023,205.7610,22.4234,50.2530,0.02490377 1305,189.0380,217.5930,20.8970,44.6000,0.02168767 1305,359.8910,217.8800,22.1000,52.3600,0.02003001 1305,228.3440,221.8380,22.8680,46.8990,0.01835785 1305,82.6081,246.5180,34.7779,71.8480,0.01694530 1305,494.9050,245.3910,26.7040,60.8940,0.01639579 1305,445.6130,249.4720,26.4550,61.6330,0.01527162 1305,173.6020,211.8040,127.4030,52.7920,0.01441615 1306,164.6710,211.6060,41.6380,102.0430,0.87172943 1306,471.2020,216.0140,34.2500,93.7170,0.81850868 1306,305.3300,217.6120,32.4990,78.2590,0.80229700 1306,13.3102,215.3040,60.4586,145.6230,0.79612190 1306,538.1100,224.7880,22.8070,50.0970,0.69459748 1306,256.3510,220.2030,32.1050,89.2750,0.60891938 1306,421.3580,219.4130,29.7130,83.7690,0.60724264 1306,517.5340,219.0380,22.7110,52.8530,0.59399849 1306,444.2310,215.1120,29.3580,90.4270,0.57203209 1306,579.1690,224.8140,21.0660,48.8840,0.47221589 1306,247.7480,212.6880,28.8410,84.2390,0.38426125 1306,595.5490,215.3360,23.3490,59.3380,0.36894867 1306,56.9247,209.0690,28.5827,61.6980,0.32025364 1306,270.8580,217.4640,26.9250,76.1390,0.27573091 1306,389.4860,213.1890,29.1460,85.2670,0.27164456 1306,330.1180,219.1310,21.3620,47.6110,0.18178438 1306,317.9470,215.9530,27.8200,64.1050,0.17094764 1306,239.5270,220.9100,26.7660,66.8510,0.11578274 1306,510.6940,216.0960,20.4510,47.1950,0.09579747 1306,391.6340,250.6510,21.9770,48.9720,0.07770134 1306,43.2234,280.4340,40.1442,76.6830,0.06844757 1306,454.5110,245.2870,25.7050,64.9990,0.05808054 1306,433.8820,236.1820,28.1170,70.2200,0.04088074 1306,179.2530,250.2440,27.8560,62.1990,0.03601237 1306,202.1920,215.4670,21.6980,45.7720,0.02314506 1306,415.2880,240.9940,25.7660,63.7180,0.02209321 1306,499.6390,214.2130,18.4610,44.2510,0.02144938 1306,16.2972,263.9620,38.1274,96.1640,0.01632311 1306,365.7430,225.9920,21.8200,42.0350,0.01571472 1306,173.6610,215.4600,25.6790,62.5340,0.01535636 1306,585.6240,217.5060,23.3370,52.8290,0.01523976 1306,34.6552,211.9460,31.6574,71.9770,0.01518689 1306,486.9480,215.3910,23.6890,64.0640,0.01515234 1306,20.3715,215.6320,36.3788,100.6680,0.01353618 1306,137.9730,210.3840,92.6540,74.8300,0.01196006 1306,68.1569,208.8970,25.1619,52.9420,0.01128903 1306,464.2940,239.3140,26.0760,71.4480,0.01010253 1307,113.0320,220.1010,54.8280,133.5080,0.85781342 1307,214.5500,213.7280,34.0290,89.4140,0.78278476 1307,377.2640,217.4700,33.4770,85.8800,0.77831554 1307,271.2660,220.1660,29.3380,71.9920,0.77045292 1307,423.4870,214.3990,32.9750,93.3030,0.77003896 1307,552.3900,223.7760,22.8520,52.8830,0.76047599 1307,242.7470,215.8220,29.3440,88.8300,0.75407940 1307,525.8520,220.3480,25.1810,57.2260,0.73692101 1307,2.9233,216.1080,57.7274,186.1690,0.58987296 1307,405.4430,221.5560,27.8580,79.3060,0.55303240 1307,344.6130,247.1900,25.2680,54.7680,0.29918012 1307,303.1430,217.6430,21.0170,47.0850,0.28992271 1307,617.4540,225.2490,21.7260,52.9130,0.28681439 1307,231.5090,212.7250,27.8860,89.4300,0.26901239 1307,82.5155,217.1460,21.6075,50.1330,0.23115957 1307,466.5290,215.0160,19.2720,42.7440,0.20879531 1307,591.7730,216.0320,23.7910,56.7640,0.19973826 1307,501.2670,212.5940,18.7680,44.5410,0.16573188 1307,491.5810,213.6480,17.4060,40.6840,0.14585006 1307,316.1280,221.1730,20.6210,43.3390,0.12153231 1307,52.8890,205.6500,22.0158,44.5180,0.10411189 1307,98.8507,218.3680,21.5123,51.8760,0.09475236 1307,475.1980,213.9700,17.5910,41.7730,0.09454642 1307,170.9960,219.2550,21.9300,42.7680,0.09084001 1307,574.1940,225.8450,20.2210,45.5770,0.07815809 1307,463.0730,209.3600,62.2660,50.1360,0.07062999 1307,259.4360,216.2210,31.8870,88.2340,0.06080622 1307,205.3990,212.3480,28.3890,76.2680,0.04844636 1307,512.3030,212.6880,22.5810,52.3200,0.04548212 1307,102.8240,212.6930,99.9750,99.4720,0.03769312 1307,249.6360,253.7380,23.9530,53.3210,0.03575965 1307,413.3830,239.5060,27.9200,67.8040,0.03150864 1307,20.0501,294.0780,43.2665,95.6120,0.02872293 1307,126.1510,219.6210,32.6950,71.6090,0.02332512 1307,283.3530,217.0130,28.9400,66.5610,0.02210985 1307,539.7470,218.5530,47.6700,61.5730,0.01471249 1307,454.2890,212.4980,19.4630,43.0880,0.01279395 1307,63.7024,217.1000,85.0386,112.0940,0.01211837 1307,112.1810,279.8260,36.8370,73.2710,0.01168200 1307,12.8191,205.9320,27.8933,56.0550,0.01136230 1307,23.4630,205.9490,123.9080,56.8580,0.01068887 1307,335.2500,221.8010,29.5740,67.9620,0.01026504 1307,446.9760,214.2960,108.8820,57.4530,0.01026502 1308,109.5730,216.4030,61.0650,161.2410,0.83825737 1308,379.3110,216.8090,32.7810,84.6600,0.81049776 1308,296.7240,211.9950,33.6560,92.2980,0.79595917 1308,203.9470,228.9210,47.5020,114.4600,0.77598363 1308,538.4520,221.8200,24.6570,57.2800,0.76870197 1308,342.0880,218.3700,30.3170,81.6570,0.74364156 1308,566.6530,222.9490,23.0210,55.4620,0.70482528 1308,236.8490,221.2500,26.2450,66.4980,0.65328985 1308,183.6700,215.7210,31.2850,81.0440,0.54328537 1308,602.3200,217.9070,22.5620,56.7520,0.54281437 1308,366.0510,218.7890,25.7700,78.6400,0.34325758 1308,277.0780,214.3270,22.0340,48.5730,0.26327834 1308,124.9330,286.7180,42.6330,94.3190,0.19712029 1308,469.5980,215.4050,19.1620,44.7910,0.17392711 1308,177.1910,216.8780,24.3790,70.1090,0.16071980 1308,464.9070,215.3310,64.5420,45.8960,0.09562720 1308,193.6970,224.8130,38.3470,94.3410,0.08951851 1308,499.5370,216.3870,19.5720,40.3790,0.08915119 1308,512.5710,210.5700,19.9100,46.9430,0.08904614 1308,491.5790,216.1640,18.3770,41.3780,0.08625636 1308,96.0418,215.7450,24.6222,49.6900,0.06950244 1308,586.7520,218.1040,19.6830,53.3490,0.06687581 1308,284.4070,211.2260,31.3620,82.8850,0.06665907 1308,43.4605,205.8250,23.4211,46.0180,0.06117992 1308,557.3950,223.1980,22.0700,55.0620,0.06023816 1308,224.9090,222.8740,32.5720,85.9860,0.03760916 1308,200.7680,219.2350,23.7420,71.8300,0.03704676 1308,96.5152,212.9140,109.4648,106.4800,0.03291123 1308,163.0700,218.5390,26.0020,64.3550,0.03012132 1308,422.1330,208.7190,139.2590,57.0960,0.02812319 1308,76.1730,205.1120,20.4982,42.4430,0.02470230 1308,152.4330,218.7820,25.9510,60.7140,0.02125500 1308,441.1570,213.3480,21.4360,40.6430,0.01949716 1308,617.4670,216.2880,22.1660,61.3790,0.01743428 1308,461.2990,213.1490,19.6140,42.9050,0.01739937 1308,574.8530,218.1550,23.5290,53.8770,0.01568973 1308,170.9000,210.3850,123.0560,78.0070,0.01269005 1308,306.7300,216.2550,26.7230,53.8890,0.01261497 1308,3.5729,165.6830,34.8035,83.4950,0.01185931 1308,1.9973,189.8570,123.3517,65.6730,0.01099215 1308,598.2880,232.5480,31.7580,73.6590,0.01097848 1308,323.6330,220.1800,37.4000,85.7770,0.01027124 1309,373.1910,218.5320,32.0220,85.4090,0.90008014 1309,283.3930,215.1340,45.4850,122.2670,0.83781058 1309,219.6020,214.2100,54.5510,154.4280,0.83349121 1309,339.6210,214.8820,32.0960,86.4210,0.78974921 1309,553.3080,223.3390,25.4140,60.1510,0.78786373 1309,581.8090,222.9750,23.8070,57.1660,0.64016360 1309,406.4840,219.0740,23.8660,51.9660,0.61552924 1309,153.6820,218.0040,29.4220,77.1940,0.58122975 1309,473.9010,213.5690,21.4510,53.5750,0.48394334 1309,135.0300,216.2780,26.6330,66.3430,0.41358608 1309,325.1530,217.0410,29.2760,81.8840,0.41049880 1309,198.2120,220.4610,23.3780,57.8830,0.34320596 1309,522.5830,213.1860,20.8990,45.4480,0.25823438 1309,504.7410,213.3200,20.3980,46.1780,0.21563257 1309,607.3680,222.0340,23.6270,57.1620,0.20835501 1309,166.0720,218.4830,26.9750,72.5880,0.15779155 1309,72.1184,214.2300,25.3426,52.1220,0.09642785 1309,388.8580,218.2800,29.4540,67.1770,0.08536770 1309,33.7715,204.8360,22.8878,46.1640,0.05756164 1309,357.0170,216.3000,32.3490,75.5060,0.04396283 1309,462.8220,213.8920,19.0910,46.2850,0.04326770 1309,60.7648,210.4240,26.0723,50.8070,0.03754070 1309,573.5420,224.4810,21.6820,54.7910,0.03455986 1309,239.3830,211.6620,55.0840,136.2110,0.03321321 1309,232.2050,289.4540,35.4670,79.1750,0.03320278 1309,5.1393,197.2350,122.3667,60.6580,0.02692084 1309,189.3090,219.3640,22.0470,56.8850,0.02658993 1309,463.4910,214.3290,51.7130,47.7110,0.02520740 1309,207.4160,217.9390,23.7160,57.0850,0.02472029 1309,494.6170,214.1380,17.8380,44.6680,0.02291602 1309,144.6610,210.2180,28.2160,73.6990,0.02218097 1309,488.5100,212.6130,44.4680,50.3630,0.02125468 1309,441.1740,211.6520,21.0270,42.6390,0.01995618 1309,217.7800,217.5380,23.3870,56.6400,0.01810309 1309,177.3180,218.3860,23.1570,60.6210,0.01726774 1309,589.1840,214.1770,25.9100,60.9470,0.01533260 1309,443.1160,213.1860,115.8080,52.0920,0.01456804 1309,281.7900,256.4330,29.4640,78.1530,0.01418715 1309,103.3810,217.5110,23.7200,47.6010,0.01377277 1309,213.1780,223.3130,31.3230,93.5640,0.01365375 1309,7.6662,201.4830,309.8128,80.8790,0.01255094 1309,313.4670,212.9290,26.6180,74.8280,0.01236190 1309,191.6230,215.9850,37.7830,91.1470,0.01205368 1309,249.5320,214.7470,24.6400,49.5600,0.01143851 1309,288.6050,208.5000,351.3950,75.5020,0.01104510 1309,404.6380,223.0520,192.3290,56.2900,0.01047680 1310,424.9600,218.9810,34.2700,83.8980,0.87794656 1310,251.3900,218.1620,33.4720,80.2230,0.87556207 1310,12.3055,207.0560,45.4445,104.2630,0.74642813 1310,311.3560,228.5590,50.6290,141.1400,0.68732929 1310,107.0530,221.7300,25.0170,57.6500,0.67312968 1310,531.8890,213.3100,23.3380,50.5970,0.63598186 1310,127.8800,218.5080,28.6860,73.1640,0.60817659 1310,341.9280,215.8330,42.9680,117.3700,0.56977743 1310,482.0160,217.5980,21.2700,53.1370,0.46462184 1310,162.9470,220.9720,24.1150,61.7400,0.44289160 1310,578.3910,228.1150,36.6600,91.9300,0.43614569 1310,226.4770,216.0230,22.5230,49.3420,0.35585839 1310,186.6470,222.5830,27.3680,67.6620,0.34458774 1310,564.4760,225.9300,22.8010,55.6040,0.31371772 1310,82.1629,211.2170,20.9991,50.7430,0.22476307 1310,65.4389,211.8900,20.3470,46.6840,0.15894245 1310,30.0847,210.8930,30.1075,75.7260,0.15164445 1310,602.1550,226.4000,25.3490,62.5700,0.11050691 1310,294.6270,214.0210,37.6960,98.4960,0.08863271 1310,571.1130,221.6270,28.9910,76.2470,0.07449356 1310,140.7440,218.1010,25.2960,67.5750,0.07434426 1310,468.8890,213.2790,20.2790,49.3590,0.04022508 1310,489.1520,212.6160,21.9510,50.0660,0.03219857 1310,178.1240,226.8300,24.1390,57.7180,0.02822101 1310,326.6440,274.7410,33.5210,84.8690,0.02628123 1310,498.6680,214.6360,19.3140,45.5520,0.02625574 1310,292.0870,213.3690,28.3770,58.9850,0.02336374 1310,194.2530,241.1800,26.4740,55.5880,0.02180261 1310,437.8150,214.2000,27.7880,61.2410,0.01717755 1310,50.0449,212.1240,23.6601,52.8520,0.01669689 1310,359.5520,237.3140,29.2520,87.2370,0.01527686 1310,477.7980,224.5360,148.8160,72.5560,0.01498949 1310,462.1630,209.4710,19.3410,45.8990,0.01328241 1310,152.7140,227.0240,25.6930,58.3660,0.01307798 1310,242.9520,215.3610,29.8160,64.0350,0.01229745 1310,551.7050,221.6180,77.4460,103.3250,0.01224454 1310,344.7770,214.5330,30.1920,61.1040,0.01147459 1310,287.4430,229.9090,28.7050,72.2230,0.01043905 1310,469.5840,214.4600,61.1120,57.4330,0.01024017 1311,213.5760,218.3780,32.6060,79.1430,0.85526121 1311,455.5760,218.8030,28.9390,75.0500,0.82014197 1311,477.4830,223.3600,40.3620,111.4190,0.79863006 1311,256.8840,213.7780,30.3600,78.3950,0.77427012 1311,82.7536,212.8450,35.9574,93.0470,0.73989850 1311,283.6840,215.3150,29.9310,75.9700,0.68369776 1311,390.6560,222.5730,47.0050,135.0080,0.67185205 1311,585.5830,222.4500,28.5190,68.1070,0.62131917 1311,554.3900,216.2980,23.7560,56.6030,0.61546475 1311,192.6940,215.6630,23.1260,50.4260,0.54483819 1311,130.7360,214.5200,24.9530,66.6020,0.46982950 1311,376.8340,223.2040,41.0360,122.0660,0.36469245 1311,158.6610,241.1780,24.7000,47.7940,0.31779572 1311,270.5190,213.8190,27.0720,77.0650,0.29863825 1311,109.1150,220.5370,25.4490,69.0870,0.23409359 1311,32.1287,210.1570,22.6323,51.1950,0.21567617 1311,613.6980,224.5750,26.2490,73.5860,0.11645410 1311,41.9577,211.1720,20.8533,47.9490,0.10938028 1311,51.0304,209.6470,20.9228,47.4130,0.07025932 1311,467.7090,216.9490,31.0340,89.0840,0.05601204 1311,310.7630,218.3310,24.9950,48.9290,0.05585821 1311,564.4510,220.3080,21.6520,54.7620,0.04726399 1311,120.4180,219.8270,26.1630,66.4310,0.03619306 1311,475.7610,261.7980,29.5860,70.7710,0.03484926 1311,404.6170,267.8810,31.9820,84.8790,0.03248462 1311,197.6840,211.1020,29.0570,71.8680,0.02809670 1311,97.2786,211.9450,27.1954,75.4680,0.02725456 1311,1.0000,237.2650,24.7421,97.1570,0.02615133 1311,22.4255,209.1700,23.6323,50.9770,0.02462564 1311,295.1480,209.6090,27.3640,72.1190,0.02220214 1311,230.9940,210.4570,37.6930,78.7350,0.01975953 1311,405.0320,227.6770,31.9830,85.0180,0.01514566 1311,385.1400,221.7880,31.8350,66.1580,0.01474738 1311,63.5686,210.3660,21.4370,46.3400,0.01328512 1311,398.7310,209.0480,61.6540,106.3910,0.01233329 1311,50.1983,204.7500,124.3837,69.6030,0.01164965 1312,542.5910,226.1270,26.9300,64.3520,0.84807736 1312,182.7660,217.6850,32.1720,78.7830,0.83133239 1312,138.8170,214.4210,34.8100,85.2030,0.82894045 1312,393.4280,223.8430,40.1850,106.0400,0.80223656 1312,225.0050,215.6390,28.8930,77.7230,0.78892827 1312,458.3810,219.5040,41.8370,130.6220,0.73881859 1312,601.5880,219.9180,29.2540,68.8650,0.70252299 1312,51.5509,218.4720,48.9183,124.8250,0.67659450 1312,519.8860,219.8190,22.0930,55.1260,0.64812410 1312,267.0380,218.6170,28.0590,66.5210,0.61163312 1312,434.6680,221.0130,39.6400,125.4740,0.57471800 1312,105.9410,217.4350,25.3680,62.4190,0.55485147 1312,501.6390,218.5950,19.6310,52.6620,0.47214574 1312,245.5050,216.0040,25.6400,71.5120,0.26713112 1312,356.9960,221.1470,22.5290,44.7920,0.19398153 1312,167.1100,214.6170,22.2260,52.8290,0.16729428 1312,257.1000,212.9540,26.8760,76.4090,0.15752585 1312,81.0568,211.4660,25.5882,65.4190,0.12766516 1312,465.4090,270.4280,31.2020,74.0730,0.11401523 1312,24.6240,219.1390,25.8845,49.6720,0.09408726 1312,154.8170,215.6060,30.2850,70.3110,0.07869490 1312,53.5444,228.6870,32.3878,80.3570,0.07581665 1312,508.1060,216.2850,26.8910,57.4950,0.07448243 1312,569.4000,222.8750,20.4090,48.4110,0.05484038 1312,578.5200,219.3250,22.5400,51.9520,0.04816292 1312,132.3710,221.0110,26.8730,69.6260,0.03976008 1312,367.5000,219.5010,19.9360,41.5540,0.03633242 1312,118.7790,218.9630,27.2880,65.2000,0.03566566 1312,68.6539,218.9320,32.6761,81.9620,0.03566397 1312,443.4310,272.9790,28.1570,74.0550,0.03525125 1312,3.4883,210.3930,19.0052,41.0910,0.02521806 1312,177.9780,217.1290,24.5050,56.8980,0.02494830 1312,470.5850,216.0080,27.3310,69.5610,0.02458580 1312,441.6670,216.7180,86.6410,105.1900,0.02351913 1312,198.3250,212.0790,37.3800,79.7870,0.02174949 1312,90.5784,209.7000,27.0706,71.0370,0.02008040 1312,527.1140,226.0870,23.6420,56.9150,0.02002380 1312,48.4820,208.0460,28.5583,74.5090,0.01772231 1312,547.1030,242.6310,30.4850,63.1440,0.01533018 1312,590.7160,206.7120,29.2190,72.1780,0.01468997 1312,406.1060,265.0530,29.8020,62.1600,0.01420704 1312,67.9019,263.0660,34.6251,75.7290,0.01351882 1312,490.1440,213.9860,22.7530,51.0780,0.01294037 1312,559.5940,227.0230,24.2050,53.1480,0.01241055 1312,482.0980,215.6850,21.5280,55.0880,0.01120015 1312,37.3468,209.3960,128.1112,82.1310,0.01103103 1312,410.5610,233.0530,39.7300,100.7000,0.01004981 1313,320.7880,218.4960,39.5060,105.1500,0.84738994 1313,146.3200,222.8960,46.8810,126.0350,0.77485603 1313,192.2740,215.8300,30.3090,78.5260,0.65005022 1313,47.1588,211.5770,30.4183,74.2700,0.58287930 1313,244.6180,218.3370,23.4420,59.9110,0.48052821 1313,407.7330,217.9480,23.9390,51.7510,0.47655910 1313,81.2794,207.4210,28.0446,68.1100,0.45524445 1313,513.6060,224.4580,36.2680,110.9410,0.45220783 1313,283.5040,212.4620,26.5660,57.8890,0.44205967 1313,473.8260,213.9950,33.7540,97.2600,0.40357170 1313,494.7660,224.0960,35.4910,105.8960,0.40021178 1313,206.8440,214.8880,23.9600,72.6150,0.38468102 1313,585.7910,234.7520,28.9110,71.8900,0.36715633 1313,232.6960,217.1990,22.1560,62.3770,0.28224647 1313,564.9320,225.6750,22.3630,49.2580,0.24995030 1313,61.2409,211.4490,25.5779,65.6940,0.13358150 1313,615.1130,225.6950,23.7370,67.4160,0.10802532 1313,221.5400,216.5650,23.5390,67.0000,0.08691975 1313,557.0750,227.7710,20.2730,47.1250,0.08014093 1313,135.9450,215.1230,23.9950,52.7880,0.07483670 1313,484.2160,213.7500,26.8840,62.5280,0.05393860 1313,91.4072,221.5360,29.8538,60.0670,0.05079553 1313,28.8630,210.7970,27.7529,64.1890,0.04651888 1313,153.7720,220.0870,31.0820,68.0050,0.04338046 1313,495.4710,275.5020,28.2470,60.2170,0.04139223 1313,451.0490,209.6370,19.5090,43.2360,0.03896747 1313,537.5070,218.3190,23.8450,52.3370,0.03460656 1313,120.1070,212.9790,100.7730,90.9530,0.03231719 1313,470.9080,214.0750,21.2560,54.4080,0.03227720 1313,1.0000,208.9070,19.6855,46.8150,0.03175471 1313,336.1840,223.2410,29.6260,79.1820,0.02733148 1313,138.8700,216.3810,32.6830,74.3220,0.02002476 1313,573.8620,225.9640,28.7690,66.1130,0.01931573 1313,548.4160,227.1910,19.2220,45.6950,0.01734752 1313,315.6530,225.2630,29.2760,75.4940,0.01673745 1313,496.9370,218.4010,27.2660,66.5820,0.01617850 1313,598.8090,228.0090,34.7210,87.0190,0.01400843 1313,300.8710,215.6400,87.7920,82.0720,0.01347314 1313,494.5020,211.2680,89.7640,98.4750,0.01117908 1313,527.8830,224.2850,26.9400,70.9940,0.01098034 1313,322.2360,257.0910,25.5770,64.0780,0.01025432 1314,246.4060,218.0660,39.3860,123.0630,0.78760272 1314,124.8660,218.4820,30.2070,71.0430,0.78635782 1314,451.3280,219.8280,29.5160,71.3570,0.77396595 1314,161.4200,215.7480,29.3560,74.4510,0.75302899 1314,272.7680,222.1890,32.8070,90.6440,0.72166073 1314,1.0000,231.4710,48.8711,141.6230,0.64289272 1314,559.3090,224.2900,32.7070,92.3200,0.59011668 1314,533.0800,220.9370,32.6590,101.9650,0.57272619 1314,489.1700,219.7240,44.7000,142.5650,0.47820187 1314,316.1540,218.3870,24.7950,52.3110,0.43374693 1314,179.5050,214.8420,25.9940,72.8940,0.41494483 1314,224.3710,216.9230,23.7580,62.8640,0.25140712 1314,508.2380,225.5510,33.6520,111.5250,0.23919809 1314,615.9650,220.3200,22.7440,56.8660,0.19685584 1314,204.7710,216.8670,22.5320,59.8320,0.18170214 1314,29.0514,210.3670,28.1224,66.6370,0.17919523 1314,63.1572,211.2790,28.5116,61.9880,0.16444564 1314,496.0680,226.2770,28.2170,85.6250,0.16133898 1314,191.3610,216.8110,24.4700,63.9430,0.12926885 1314,40.3623,212.7890,27.2791,61.2310,0.11125319 1314,69.4364,225.2860,32.2606,59.5520,0.08545586 1314,113.8620,218.1230,27.7420,61.4670,0.06111410 1314,591.4460,205.5030,24.6820,57.3610,0.04217516 1314,495.6120,277.2730,29.9990,80.2180,0.03669342 1314,461.6830,212.7140,25.0500,60.0050,0.03573650 1314,105.6820,214.7160,24.3240,54.1190,0.03339069 1314,235.2240,217.0680,34.4400,96.5630,0.03065332 1314,73.7374,207.6270,23.1701,52.3560,0.01647292 1314,491.5740,220.4760,22.9590,58.6100,0.01581608 1314,472.6830,215.9190,21.6340,53.8790,0.01542309 1314,140.0230,215.0360,33.1090,69.1400,0.01230387 1314,17.0230,220.5640,53.7635,110.4530,0.01178228 1314,483.0020,216.6280,20.5020,49.5880,0.01168192 1314,9.6996,295.0690,35.6482,79.9470,0.01043698 1314,461.4860,236.0380,28.9620,59.5260,0.01038584 1314,217.6210,233.9930,23.1070,48.4190,0.01006004 1315,98.4714,218.7120,29.3036,67.4690,0.80788916 1315,131.9740,215.1460,29.4850,73.1460,0.78176624 1315,335.4180,227.6020,50.1300,121.9980,0.77690202 1315,202.3050,216.0890,31.4170,87.9350,0.77349299 1315,396.6010,226.2870,50.2560,133.6830,0.75161040 1315,224.5620,220.3940,31.2780,83.9290,0.74096376 1315,258.9260,217.0150,28.9840,69.0440,0.72788054 1315,543.6580,227.3570,28.8090,76.3520,0.69864100 1315,157.7370,233.2180,61.5790,137.8820,0.65442622 1315,493.1090,217.5830,23.7290,55.3810,0.63906139 1315,566.7110,223.2060,28.0170,77.7790,0.60530490 1315,529.7530,220.9940,21.6000,59.2250,0.44025740 1315,47.1603,217.5580,27.0401,61.3550,0.35122871 1315,469.8500,212.9400,20.9280,49.3440,0.33700335 1315,12.3835,213.5660,28.7085,63.6940,0.24277219 1315,80.8464,210.5100,21.8716,54.7250,0.22090073 1315,31.2999,213.5360,26.4590,62.3320,0.19144601 1315,88.3096,211.8490,25.3084,60.9680,0.15318961 1315,401.8450,228.7040,33.2900,83.5430,0.13320926 1315,514.7130,219.2690,18.7400,50.6480,0.11294574 1315,505.3350,219.3140,19.7000,52.9810,0.09874828 1315,585.7040,218.7860,34.1160,90.7770,0.09802439 1315,171.9420,227.5120,34.8110,103.9760,0.08669341 1315,345.6360,224.9710,32.1020,80.5680,0.07783303 1315,484.7430,213.4120,21.9380,54.1370,0.07750449 1315,155.9520,215.1080,23.1300,63.4950,0.06277663 1315,174.9230,219.9880,25.0570,58.8810,0.05733996 1315,616.2050,212.4870,22.2140,53.0290,0.05603493 1315,417.9480,277.8160,41.2050,88.5340,0.05422814 1315,146.5100,212.4280,70.7970,96.2580,0.01886598 1315,68.7242,209.1810,20.7167,53.8130,0.01614175 1315,173.3830,225.4920,79.9050,117.1400,0.01400391 1315,405.5720,283.4270,31.7580,76.5370,0.01368026 1315,13.1229,210.2050,76.2603,70.4320,0.01344631 1315,216.2520,221.4160,26.2470,72.2720,0.01197124 1315,56.4745,209.9530,23.4731,54.6730,0.01079814 1316,74.7697,216.7230,31.3583,70.5030,0.84193826 1316,157.2190,216.7610,30.0270,82.3290,0.80489105 1316,178.0790,220.3110,30.8850,78.3110,0.78470159 1316,432.1400,229.1980,52.9060,126.0880,0.75820029 1316,103.8480,218.2700,29.1310,68.3110,0.75255877 1316,328.6870,236.0770,45.8010,135.1300,0.74974644 1316,539.3410,222.4120,22.5770,60.1820,0.71252197 1316,296.7410,220.5490,46.0920,142.3590,0.61016250 1316,33.7398,221.5360,25.2517,56.1780,0.50876176 1316,556.3380,216.3400,25.4500,67.6490,0.49059829 1316,601.4040,216.9460,33.6720,101.4610,0.43750638 1316,583.2980,215.1850,32.2800,89.6730,0.41980627 1316,489.8600,215.3060,21.4670,55.5450,0.40517735 1316,512.4070,216.2310,21.5430,56.3230,0.39841887 1316,142.4640,217.5620,26.2630,70.9120,0.26479784 1316,381.1090,217.6580,26.9710,61.4210,0.25565231 1316,355.0700,223.5700,26.7420,64.3860,0.20384264 1316,472.4870,215.8430,19.9230,48.5460,0.18283319 1316,302.6820,282.0540,34.7320,80.1770,0.09591919 1316,48.7047,214.8210,20.5430,53.7100,0.08594365 1316,6.4737,218.0100,25.2154,54.5240,0.08519530 1316,496.9270,218.2720,23.7870,57.6930,0.07772955 1316,66.4203,211.7470,25.7441,62.1530,0.06859512 1316,369.2030,220.6450,26.2270,60.5830,0.06306427 1316,18.2359,218.9190,22.0770,54.2830,0.05842657 1316,344.9620,230.5300,35.5590,100.2160,0.05539173 1316,294.7610,210.9980,33.1250,86.5740,0.04923720 1316,116.6900,221.2530,25.0940,63.7420,0.04872651 1316,57.8360,209.7550,21.0657,55.1840,0.03514611 1316,337.8740,295.2520,33.2810,77.4580,0.03064991 1316,124.6010,212.3610,28.5270,71.0660,0.02872398 1316,527.1210,216.2220,26.1340,62.6360,0.02055038 1316,86.8757,208.1950,39.7573,71.2370,0.01635648 1316,312.4280,215.0050,79.9790,104.7800,0.01480039 1316,565.4940,223.6700,26.5870,65.3360,0.01245818 1316,439.3090,216.7830,26.0790,57.8390,0.01000348 1317,156.8850,219.1680,31.9110,77.0130,0.88199663 1317,464.6990,240.1500,57.0940,129.4710,0.75366729 1317,45.4080,217.9620,30.2368,65.0040,0.71160918 1317,201.4010,221.2230,53.3840,137.6110,0.69296598 1317,121.1060,213.4070,31.6440,85.0890,0.64951712 1317,76.8593,226.2900,65.8397,140.6620,0.63324440 1317,307.0440,222.5030,27.1080,61.6160,0.53143281 1317,532.4610,234.8870,40.8960,99.1930,0.52188057 1317,513.2840,220.4980,20.7580,48.4710,0.48264825 1317,327.8900,224.5110,28.2650,63.6690,0.47039849 1317,436.9670,218.6550,24.2410,54.2470,0.44263813 1317,567.6110,213.9310,27.6440,74.5510,0.42555594 1317,81.0989,212.4780,31.3491,74.7550,0.42314959 1317,599.8110,219.7460,28.1470,72.7070,0.42068666 1317,487.9250,215.8510,24.1640,58.8450,0.34712830 1317,413.0490,218.7280,22.7660,53.0130,0.33074814 1317,22.9667,218.7750,23.6143,57.0630,0.24279560 1317,33.4734,217.2710,24.4657,59.9690,0.14868343 1317,205.3790,226.8890,34.5750,84.2770,0.14090978 1317,469.6250,215.0260,20.0170,47.9280,0.13549408 1317,549.6170,221.4760,26.3380,67.2260,0.13088883 1317,145.6850,216.3090,30.0240,73.7320,0.08644130 1317,425.8990,217.1600,25.0800,56.8440,0.08381037 1317,134.4290,211.7850,27.8280,80.5990,0.08336287 1317,479.3200,222.8350,35.2890,102.1980,0.08133126 1317,1.5190,216.7760,23.6559,55.0880,0.05510955 1317,207.4750,274.6870,35.1300,83.1900,0.02919526 1317,108.9890,210.0030,30.5420,78.9280,0.02843781 1317,496.5590,211.3000,24.9380,57.1690,0.02584024 1317,128.1290,217.1310,70.4430,123.6890,0.02095898 1317,11.3699,219.7250,22.8306,50.5990,0.01935165 1317,536.9970,227.1850,29.9120,65.9710,0.01863981 1317,610.9610,223.0550,26.2890,81.8400,0.01697402 1317,169.3200,218.2830,29.0370,65.3690,0.01668182 1317,582.0210,209.7470,26.9780,73.6420,0.01468448 1317,101.9810,219.0000,65.4880,129.4010,0.01398054 1317,306.8310,210.2150,22.6060,46.9220,0.01228644 1317,552.7680,239.3050,32.1440,81.1960,0.01156961 1317,472.9400,214.7300,28.1570,72.7560,0.01148562 1317,459.3830,321.9290,32.9960,64.8000,0.01000402 1318,21.1425,219.5660,30.2889,64.4360,0.79829478 1318,560.7020,223.8440,24.4940,65.6740,0.78653479 1318,204.6120,219.8250,67.9290,150.9590,0.76787925 1318,270.2010,221.7860,27.1640,62.6620,0.74275208 1318,121.6940,224.8120,48.7320,133.1360,0.60395765 1318,356.4360,219.6910,23.4460,58.1230,0.59741235 1318,508.5270,217.3670,21.4180,50.8920,0.57434887 1318,69.7657,208.7230,31.7193,83.5080,0.49844211 1318,580.6080,204.6610,30.2050,89.5100,0.47236353 1318,108.8310,216.2630,30.8580,77.7450,0.43749630 1318,436.4080,217.6930,24.3130,53.8610,0.43132052 1318,145.2360,217.5580,29.8340,75.0210,0.40683487 1318,90.7142,217.8750,23.9188,73.8390,0.33936813 1318,539.4540,214.2570,21.7230,48.8080,0.32513759 1318,376.2640,218.6340,23.7350,56.3800,0.30881694 1318,482.6620,218.0690,18.6140,47.9550,0.29144639 1318,613.9890,220.2260,24.2130,63.0950,0.27114853 1318,470.7640,218.5320,18.6680,47.1860,0.20178838 1318,571.5670,215.0010,26.0500,77.3870,0.16889454 1318,502.1140,220.0220,17.8150,45.5540,0.14517938 1318,491.3960,217.7350,17.3820,47.4700,0.10927481 1318,281.6340,220.3670,26.4380,65.4370,0.07937654 1318,1.0000,217.4890,19.3900,49.0220,0.06547634 1318,133.6490,218.8620,31.7510,91.1850,0.05840211 1318,12.3592,218.7680,24.1316,55.2270,0.03757657 1318,459.6200,215.9530,72.8420,56.4210,0.03217082 1318,37.8977,207.3930,28.7995,65.8360,0.03043799 1318,252.0280,222.4430,48.1440,97.8740,0.02296911 1318,605.7230,234.0350,33.1570,74.7350,0.02056919 1318,121.5900,275.3120,34.3080,81.3790,0.01991335 1318,176.1140,218.0400,121.6040,89.4260,0.01900472 1318,57.6785,208.3880,33.0414,69.0750,0.01549684 1318,545.7690,219.7650,25.3250,55.0920,0.01008534 1319,14.7357,214.2310,57.1103,149.3320,0.80040938 1319,343.1780,217.5010,68.5240,154.2450,0.71525007 1319,105.1670,220.3250,23.0050,61.6650,0.69008589 1319,578.9270,224.1060,25.6900,69.2280,0.67601109 1319,129.2490,220.4840,27.0040,66.8440,0.64776039 1319,234.9960,223.8080,24.9440,57.3580,0.61067873 1319,283.2220,212.3370,25.4800,59.4970,0.40252519 1319,599.5250,217.4740,26.4370,70.6620,0.32798404 1319,469.5200,220.0550,21.4750,51.9930,0.31368938 1319,507.9520,217.0120,19.2820,49.0550,0.31186864 1319,302.7230,209.6650,27.7930,63.3340,0.28523415 1319,525.7350,213.8600,21.9550,48.4010,0.19206844 1319,374.5400,211.6690,27.8390,67.2970,0.14665465 1319,34.1047,219.2520,36.7818,96.2320,0.14525197 1319,491.5670,222.9620,17.9360,44.7710,0.11042187 1319,54.3346,206.8080,31.2908,72.1900,0.08797653 1319,252.4350,220.7080,26.7690,61.8450,0.07180180 1319,92.2479,220.9360,20.8091,54.7520,0.06498306 1319,484.4730,220.1800,41.2900,50.6930,0.04950952 1319,82.7291,228.8900,23.1159,48.7990,0.02913864 1319,454.9870,215.4330,107.4220,54.1050,0.02794980 1319,583.9710,197.9200,35.8600,91.0920,0.02159270 1319,434.5830,215.7490,24.3600,42.0820,0.01981882 1319,467.9910,218.9900,144.2460,71.8360,0.01687221 1319,611.0120,220.2500,26.5260,77.2210,0.01401716 1319,93.5359,215.5750,48.4501,72.2030,0.01128892 1319,17.6864,225.0860,37.1500,91.7210,0.01115245 1319,361.7590,219.3760,102.1210,113.1990,0.01069116 1319,417.0440,215.2930,25.7620,46.5350,0.01007407 1320,472.4350,220.7800,59.3320,152.6110,0.83581007 1320,107.6640,220.7250,25.8110,63.8230,0.71716481 1320,84.7562,219.8340,24.2888,63.4990,0.65758389 1320,393.0990,219.6750,23.8930,55.9260,0.65401119 1320,240.7760,216.9830,24.3830,52.9490,0.59751731 1320,210.6840,223.2520,23.6560,55.4500,0.58344996 1320,1.9766,216.0240,27.6882,87.3500,0.40380332 1320,28.1608,214.7500,27.2717,63.9210,0.37375891 1320,470.4800,216.7730,20.6330,50.2770,0.28639236 1320,600.3050,225.4300,29.7810,68.6010,0.28086662 1320,99.1212,218.9490,23.1698,63.1870,0.26469511 1320,222.4580,221.2980,23.1420,56.1580,0.19897327 1320,59.4709,217.4230,21.9138,56.2580,0.19363029 1320,39.7181,216.7320,25.7952,64.1820,0.16570850 1320,77.9094,217.6170,21.2769,58.6460,0.15116045 1320,14.1549,216.5410,29.8967,73.4900,0.04336920 1320,436.5670,213.0410,24.0230,43.9460,0.03665043 1320,504.0550,212.7130,26.0650,57.4370,0.03601557 1320,614.8130,224.4320,23.7080,74.6030,0.03072337 1320,479.4760,213.5300,21.7000,56.6970,0.02343940 1320,230.5270,218.5180,26.3110,59.8740,0.01764790 1320,491.7480,213.4820,23.6640,59.9330,0.01686414 1320,480.3570,216.9420,46.3360,89.4480,0.01559551 1320,442.9890,205.6080,95.1400,108.9880,0.01269754 1320,425.6530,215.5710,26.0860,43.9190,0.01234377 1320,117.3380,236.1510,22.7970,46.8290,0.01180736 1320,48.0415,207.3020,27.2079,66.3830,0.01141596 1321,406.6270,218.5650,23.5300,53.6900,0.65237010 1321,85.0756,218.0360,26.9764,62.2940,0.57734466 1321,527.0720,217.9990,23.9120,55.3520,0.57471871 1321,10.0142,214.6140,27.5793,62.1360,0.57224119 1321,61.6834,220.4740,24.6778,62.1930,0.48665416 1321,184.7760,220.0950,25.1850,55.4900,0.33074731 1321,167.0700,216.1380,23.7870,55.0440,0.31110641 1321,481.8390,217.1100,21.0640,52.3020,0.26180741 1321,505.2530,220.7480,19.9930,48.4200,0.22392403 1321,602.6360,224.6770,35.8350,87.3130,0.19164157 1321,465.5240,214.5370,20.5640,49.3460,0.15256450 1321,50.8610,216.1590,22.3060,57.4580,0.10922196 1321,21.6913,216.7400,25.7575,61.8250,0.07773351 1321,512.8240,222.0260,22.0450,48.9360,0.03265739 1321,491.1050,213.9170,19.6370,52.4500,0.03090003 1321,399.6440,220.7250,202.1510,52.0280,0.03087367 1321,455.8750,215.8490,83.6290,52.6410,0.02352033 1321,195.4070,224.8290,23.5060,51.2500,0.02004876 1321,377.1270,212.0820,21.0140,43.8310,0.01934863 1321,32.5398,220.2950,24.0128,56.6430,0.01856016 1321,600.4170,217.7250,27.5810,64.3150,0.01854132 1321,42.4393,229.0170,23.2373,46.2130,0.01477950 1321,302.4380,209.1490,337.5620,73.3950,0.01402953 1321,398.9620,217.2910,21.4890,48.3010,0.01286093 1321,70.5777,209.1530,24.9365,68.9510,0.01136628 1321,158.8990,213.6830,55.3450,60.6250,0.01102994 1322,68.0655,213.9580,30.0131,67.5450,0.73107016 1322,552.6100,220.6710,23.3660,52.1550,0.53543454 1322,129.5980,217.1290,23.4590,53.4590,0.45328322 1322,46.9880,218.2380,23.3806,59.3720,0.42115870 1322,417.6570,218.8260,21.3530,49.8400,0.41572207 1322,483.3950,214.5430,20.7170,54.1080,0.37978053 1322,613.6560,228.8100,24.8840,66.2910,0.35966513 1322,475.0340,214.2730,20.7530,52.7870,0.32091516 1322,515.1810,221.1630,21.0400,50.8080,0.23736848 1322,151.6190,221.6750,22.9230,51.5750,0.19024695 1322,8.4629,211.8360,25.8494,63.4670,0.17584285 1322,167.6520,222.5060,24.4700,52.9110,0.17288087 1322,34.8221,217.3230,21.2007,55.2400,0.14389303 1322,586.1350,212.3510,24.0180,51.2440,0.08390940 1322,463.3050,211.2540,18.9390,49.1230,0.08094756 1322,24.4359,214.0300,23.3487,60.2240,0.07911009 1322,504.1170,217.5840,18.8430,47.7650,0.05275207 1322,447.4340,216.1190,90.4710,52.8350,0.04409456 1322,56.2453,208.7820,23.4952,66.1940,0.04256696 1322,436.5980,218.3140,19.5840,39.9450,0.04040431 1322,136.3900,218.4550,31.2040,55.7340,0.02591726 1322,2.6186,216.8780,18.8992,67.0600,0.02321113 1322,177.3860,218.7110,23.3710,50.4480,0.02149819 1322,453.0820,212.6270,19.1760,44.1360,0.02145780 1322,139.8040,215.7740,63.6070,60.2070,0.01939708 1322,17.8611,211.8850,62.8151,64.0180,0.01534874 1322,351.2700,216.0900,207.3810,50.9320,0.01300457 1322,523.3860,222.4950,21.7420,47.9180,0.01290617 1322,2.8940,210.0660,316.4810,78.8240,0.01231268 1322,66.6711,210.6440,195.5739,55.0640,0.01122314 1322,305.4340,207.5260,334.5660,76.1030,0.01034433 1323,54.8598,214.7430,27.5540,62.1290,0.51581168 1323,33.8706,210.6040,26.2086,64.3090,0.51419532 1323,427.6710,217.2300,21.4860,51.1770,0.48352870 1323,521.7450,220.6210,21.8080,52.3270,0.38448873 1323,477.2730,211.4450,21.4830,54.5460,0.35250965 1323,94.6305,212.9660,23.9255,55.2910,0.30866304 1323,136.9710,218.2950,25.4510,55.7050,0.27303714 1323,469.0120,215.2990,20.0180,49.9760,0.20947467 1323,583.8390,206.2270,28.3050,67.6540,0.19011751 1323,5.7458,216.3410,26.8282,57.1440,0.09499863 1323,459.9690,210.5010,18.5570,48.1760,0.09150106 1323,394.6840,220.8600,19.6790,41.1680,0.08404537 1323,487.5960,211.5730,20.0130,50.3950,0.07321768 1323,612.9590,223.5060,26.5390,80.3830,0.06609585 1323,512.9280,217.0780,20.4680,49.7740,0.04330774 1323,381.9160,219.8950,207.9210,51.4930,0.04112824 1323,441.3320,215.8740,18.9270,43.4100,0.03802905 1323,125.9200,219.1080,24.0200,51.2990,0.03583592 1323,451.8590,212.5900,18.8260,44.8080,0.02769630 1323,497.3040,212.6510,19.4800,44.6930,0.02367805 1323,529.7750,224.3120,23.2620,49.5540,0.02284811 1323,412.2740,218.3850,20.3400,47.9310,0.01785048 1323,412.8870,215.7080,106.4830,48.9050,0.01624024 1323,18.5908,207.6780,54.7361,74.1480,0.01609970 1323,85.3662,210.2550,23.8668,54.6810,0.01482550 1323,488.5760,217.7000,71.5000,56.7650,0.01198420 1323,65.9445,205.6090,27.2915,64.3770,0.01133383 1323,380.2780,217.0000,19.3700,42.9870,0.01004776 1324,528.6520,220.5370,25.3300,57.4660,0.64867496 1324,435.5640,217.0190,22.2280,50.0890,0.49504194 1324,48.1033,214.4210,21.9838,57.6960,0.39320359 1324,72.2063,212.6120,22.4290,55.4140,0.37637910 1324,22.7589,216.4800,26.0570,59.1780,0.29197127 1324,590.1470,208.1660,26.8110,60.7620,0.20196797 1324,109.8070,212.0820,27.8130,59.2520,0.19185276 1324,475.7970,217.1170,21.2050,47.4310,0.18108942 1324,613.4070,212.2090,23.1540,59.0850,0.14745992 1324,57.5308,215.3510,19.9054,54.4100,0.13770597 1324,102.3650,219.3110,23.7180,52.1080,0.12640969 1324,371.1060,218.0970,20.5190,42.8370,0.07874993 1324,355.3450,218.7590,20.4890,41.1290,0.05121396 1324,488.4970,211.0030,20.6960,45.6390,0.03854273 1324,539.0180,219.8480,24.9600,55.6890,0.03312302 1324,121.1870,227.4120,22.7410,46.6950,0.02884842 1324,451.5220,213.1140,18.4490,44.8900,0.02710885 1324,331.0190,220.1690,219.7310,49.1100,0.02603277 1324,459.9450,210.4760,43.9360,54.9440,0.02275494 1324,32.6289,210.6390,25.8698,62.2750,0.02257003 1324,612.1970,226.6690,27.8030,81.6370,0.02250975 1324,597.2990,219.2930,29.7640,67.9040,0.02194748 1324,459.0230,212.0550,18.9150,43.8700,0.01720778 1324,79.9327,212.8200,70.5763,58.8240,0.01535060 1324,468.8820,211.2060,20.6130,46.9340,0.01467403 1324,1.0000,209.2650,202.2530,54.3800,0.01423650 1324,290.4100,210.3990,349.5900,71.6950,0.01378050 1324,419.1820,216.1680,22.6650,45.7390,0.01224482 1324,41.8562,214.6650,78.4788,55.2860,0.01193620 1324,580.8610,212.1280,24.5360,54.7590,0.01102102 1324,351.0220,216.4620,49.0580,47.7810,0.01035983 1325,541.6160,218.9830,25.8830,62.0570,0.72025883 1325,80.3868,218.8150,25.5962,55.9700,0.54925942 1325,570.3370,218.3590,22.0950,53.2830,0.47549319 1325,484.8500,213.5700,21.9210,50.2610,0.44846770 1325,49.4300,216.8820,22.5315,52.0360,0.26136726 1325,305.5480,214.4900,22.3690,47.5910,0.23349588 1325,449.3710,213.3570,21.2650,49.3270,0.22366175 1325,33.5968,217.9600,21.9900,51.0360,0.19923730 1325,15.9761,216.4440,23.8212,52.8020,0.13900702 1325,461.0320,211.6570,18.8250,49.2720,0.13472924 1325,477.4240,212.4280,19.4750,49.7840,0.12253650 1325,554.8300,217.0070,27.7450,62.4940,0.05297543 1325,592.5730,211.3760,21.9650,55.0970,0.05141415 1325,92.8298,218.8970,23.8222,53.4250,0.04968472 1325,1.0000,212.3500,195.0880,57.2260,0.02583261 1325,468.2160,214.1540,20.8930,47.8490,0.01848620 1325,13.1292,216.9330,79.8998,52.6440,0.01499570 1325,321.2030,222.4340,21.2540,39.3860,0.01427484 1325,463.7200,211.4830,60.1170,57.9840,0.01228325 1325,437.8400,215.5210,22.6420,46.3980,0.01015271 1326,552.0810,216.4280,28.3300,68.6640,0.76566261 1326,253.1820,218.8310,23.6870,44.8730,0.36503145 1326,26.9133,214.5470,25.0743,56.9000,0.31609079 1326,61.3264,218.5020,27.3034,56.3910,0.25906268 1326,565.1280,220.5770,23.6970,63.2740,0.17651542 1326,284.6280,216.5770,25.2960,45.8360,0.15539853 1326,492.4080,214.4540,19.2010,45.0360,0.15464820 1326,459.7600,213.7270,18.3660,44.6180,0.15107688 1326,483.9110,216.6330,18.8050,43.8900,0.13235764 1326,7.6980,216.9570,24.1317,54.5540,0.09245580 1326,18.4744,211.5790,22.5482,57.8480,0.08488382 1326,460.2110,210.4230,46.3680,51.2820,0.07726727 1326,477.6210,214.3640,17.3020,44.2670,0.07075063 1326,445.9140,216.2860,19.9450,43.2550,0.06658987 1326,594.8310,213.7130,23.9990,52.6990,0.06436350 1326,467.2910,214.0290,18.5480,43.6080,0.03958216 1326,427.9460,208.2640,117.0420,56.6200,0.03164931 1326,76.7815,222.1890,24.4745,47.8820,0.02701190 1326,38.1645,210.9790,22.8614,53.7860,0.01779442 1326,17.0057,211.3740,62.1561,63.0140,0.01533304 1326,36.4294,209.8360,75.0166,67.5430,0.01423667 1326,292.9580,206.9020,24.7870,47.6330,0.01281264 1326,445.8020,209.6480,39.1550,53.3030,0.01145557 1326,501.8590,211.8430,20.4510,48.9980,0.01015495 1327,532.5850,215.9370,25.2700,54.3120,0.69727105 1327,565.4310,218.1420,25.0470,68.9100,0.61811131 1327,252.4450,219.8190,22.6570,43.1290,0.32941723 1327,470.2990,213.5640,19.3440,46.2470,0.28721040 1327,493.7480,214.6690,19.0190,44.4040,0.25359756 1327,41.1510,221.3590,22.2544,49.8390,0.16328278 1327,27.0037,214.9250,21.1075,53.5170,0.13453804 1327,58.0711,214.2640,25.6193,55.3250,0.11640970 1327,588.8100,213.8500,26.7380,67.1690,0.09292941 1327,575.7950,220.7180,27.5630,69.0030,0.08902355 1327,10.2691,212.2450,22.5081,56.6500,0.08091459 1327,598.9190,211.2740,23.0830,56.7570,0.07885655 1327,486.4360,215.7280,17.2360,43.9640,0.06849815 1327,49.0607,218.3320,24.5275,53.7130,0.06200463 1327,214.3780,217.4240,22.8510,45.4670,0.04877608 1327,463.2590,216.4110,18.4360,43.4650,0.04801430 1327,10.1253,213.6860,74.5277,58.3510,0.03990208 1327,444.9740,213.2630,91.6740,49.3570,0.03960459 1327,501.4820,212.0660,19.9490,47.1500,0.03248943 1327,451.7390,216.9150,18.7960,41.2590,0.01782512 1327,80.0703,206.3860,22.1127,44.6100,0.01430539 1327,439.4630,208.8830,179.2350,62.8560,0.01232543 1327,1.0000,205.4660,203.5770,56.2480,0.01206004 1328,519.0960,214.3300,25.2480,51.8030,0.64063233 1328,580.6140,221.8740,25.8810,68.9910,0.61645305 1328,469.7660,213.4960,20.1750,47.0330,0.38461414 1328,24.7059,211.7230,28.0371,60.0100,0.21567826 1328,599.8220,223.1290,26.1630,63.3930,0.19610165 1328,498.2780,212.0450,19.8520,48.2090,0.19113728 1328,39.3128,212.2150,23.6304,56.4050,0.18587832 1328,11.1577,206.3140,25.4087,58.6770,0.08514278 1328,479.8010,212.9700,18.3890,47.6340,0.08029182 1328,590.7840,213.2500,25.1340,75.0390,0.07194193 1328,72.3889,205.4160,21.0648,39.4940,0.04845149 1328,482.7880,211.2380,43.5280,53.0460,0.02181736 1328,403.6440,213.5230,192.3790,52.0180,0.02080709 1328,2.7745,201.5140,23.3463,57.2350,0.01731237 1328,490.7890,210.7770,67.3090,59.6020,0.01252219 1328,2.6074,186.2380,53.1850,79.6990,0.01219289 1328,180.2040,218.8490,22.1390,43.5260,0.01216768 1328,215.8840,217.1890,23.7900,45.9900,0.01212808 1328,457.8330,211.6190,43.4240,52.9600,0.01188769 1328,15.8054,206.4060,62.6044,60.1460,0.01059734 1328,4.4712,205.5360,310.2018,77.3700,0.01025406 1329,597.6120,221.9700,25.0890,65.8330,0.46746686 1329,508.0610,213.3800,22.6590,48.6870,0.27760226 1329,484.2230,216.9550,18.6030,46.7760,0.26112145 1329,77.5049,203.2580,23.3839,50.1080,0.25142521 1329,475.6410,218.2100,19.3400,44.8170,0.20779252 1329,614.7030,229.1760,22.7140,55.8260,0.19489755 1329,16.1906,215.1950,24.9841,54.5090,0.13295712 1329,43.4267,208.7300,20.2869,47.6650,0.09841897 1329,34.0089,210.4010,20.2086,51.5780,0.07303832 1329,458.0550,212.6770,75.1810,53.4670,0.05694983 1329,6.1233,208.2680,23.9619,56.3080,0.03405416 1329,143.6940,217.2910,24.3660,50.2040,0.02958005 1329,1.0000,204.2270,117.5190,58.5590,0.02167525 1329,467.9800,213.2790,20.3130,44.2650,0.02112999 1329,6.1816,203.8560,305.4574,73.9540,0.01531478 1329,408.6720,211.6370,173.2180,55.4860,0.01491091 1329,40.8963,206.2380,156.2267,51.1620,0.01466452 1329,605.6760,215.1650,34.3130,87.7000,0.01153287 1329,54.9277,206.9270,20.6440,44.1260,0.01020477 1330,484.5330,223.2910,19.7950,45.8510,0.44801277 1330,616.4170,227.5060,23.4760,62.1420,0.43469954 1330,505.8620,215.8040,20.4000,50.2870,0.30585146 1330,42.1256,210.5430,22.7220,50.8040,0.27883232 1330,10.5789,212.1390,20.5113,47.8700,0.15704019 1330,29.0600,210.5360,19.2864,48.6470,0.13179742 1330,592.3340,207.3290,24.8970,58.2220,0.09996436 1330,18.7590,211.0240,20.5373,48.0010,0.06767244 1330,77.4764,209.5210,22.1885,43.5020,0.06033428 1330,1.0000,210.0030,87.8062,51.9300,0.03032896 1330,1.0000,214.1330,227.5690,53.1720,0.02868130 1330,108.6010,220.9200,26.3170,49.5970,0.01744553 1330,481.4880,215.1290,41.9080,54.6150,0.01656506 1330,144.2380,224.1480,22.7820,45.6130,0.01343935 1330,466.1420,214.8000,19.9520,41.4850,0.01290403 1330,441.4880,214.2610,22.5350,43.0910,0.01192747 1330,602.4150,210.3580,27.1610,68.2230,0.01150199 1331,526.6110,215.6390,22.2640,55.6580,0.38130936 1331,505.5130,214.3010,22.3040,54.6530,0.27950579 1331,1.0475,213.9870,21.2873,51.7700,0.27386424 1331,514.4970,220.6360,21.9630,53.6150,0.20171352 1331,33.4980,209.2380,19.8248,47.7740,0.13214931 1331,406.0980,207.8930,24.5120,53.4470,0.04814601 1331,42.0538,211.9650,21.6635,47.1920,0.04225415 1331,8.9541,211.8640,20.3114,47.5590,0.04000195 1331,51.0032,210.7670,20.7640,47.4060,0.03539836 1331,1.0000,207.7060,95.3620,51.4540,0.03287052 1331,496.9360,216.8010,21.5180,44.4610,0.03140836 1331,473.6600,210.0970,18.5210,38.7660,0.02313878 1331,20.2766,210.4670,19.3180,46.9640,0.02049361 1331,1.0000,201.8490,205.1050,55.7660,0.01485750 1331,495.0340,213.0500,63.9370,59.0440,0.01247194 1331,56.2302,208.6650,26.7261,56.7700,0.01072899 1331,398.5640,209.3000,180.5860,56.8220,0.01008260 1332,559.9420,229.9720,22.4220,53.3550,0.63751709 1332,521.8330,216.3470,23.0730,51.6370,0.42671913 1332,569.1610,228.8800,22.6640,52.6270,0.34781778 1332,45.6913,214.7820,27.3807,63.3690,0.27227700 1332,23.9710,210.6570,27.1969,64.0000,0.13328995 1332,426.5360,207.6610,24.0390,54.7740,0.13064964 1332,532.2990,215.8330,21.2750,50.9200,0.03187685 1332,107.7460,202.6510,21.2580,47.4100,0.02403059 1332,552.6980,225.7560,20.9940,50.8840,0.01791721 1332,464.8110,228.3960,22.4840,40.0010,0.01679148 1332,1.6722,212.6720,21.7767,52.0960,0.01652408 1332,128.9330,205.5380,24.1160,49.7040,0.01408620 1332,9.9966,211.2630,23.0159,57.2890,0.01140717 1333,585.7780,227.7400,25.7110,63.3900,0.67489314 1333,605.8940,221.6230,26.2210,71.0280,0.64828324 1333,532.3720,216.3850,21.1510,53.9800,0.56286782 1333,544.8300,215.4240,19.8000,52.4520,0.34110069 1333,514.8940,215.7990,19.8220,50.0330,0.25819084 1333,466.0980,147.3520,23.3140,49.6410,0.05790242 1333,1.1216,205.4570,24.0742,56.3850,0.04150463 1333,424.6560,214.6910,23.4340,48.8980,0.03735705 1333,523.6480,216.1280,22.0880,49.0700,0.02990524 1333,473.6570,230.2980,22.3120,43.3840,0.02822386 1333,71.7903,204.1470,24.2456,50.6060,0.02123930 1333,92.9802,204.1190,26.6368,53.8330,0.01144558 1334,564.6750,209.8720,26.4850,60.9530,0.58174646 1334,542.6610,209.6790,21.0900,54.5830,0.27146667 1334,556.9900,208.7330,21.2340,57.5710,0.15881871 1334,498.4640,231.9310,23.3070,47.0660,0.08514473 1334,436.4610,205.6580,21.3120,45.3470,0.06996527 1334,394.8560,167.7700,30.4920,73.5450,0.02634505 1334,439.7130,210.7300,30.8410,63.7860,0.02445661 1334,534.1610,213.9220,21.0200,51.7920,0.02245452 1334,556.6580,79.2530,29.7870,61.6820,0.02162225 1334,3.7422,193.1530,123.5508,60.0920,0.01698753 1334,512.2080,83.9888,31.1850,66.0502,0.01249441 1335,558.3090,79.4979,29.8880,66.2711,0.20850323 1335,452.4820,207.0460,20.1560,45.3730,0.14061750 1335,422.1750,201.7790,23.5900,59.8810,0.12649432 1335,619.1740,214.6770,20.8260,68.0560,0.08704128 1335,480.8910,221.7640,40.5060,84.4120,0.08594329 1335,468.8290,207.5370,19.5900,44.8560,0.07967411 1335,460.0080,211.9490,63.7020,64.6350,0.06601164 1335,488.4910,207.9950,22.8280,54.1030,0.05002619 1335,135.5790,216.3740,29.0900,64.5360,0.03186205 1335,561.7710,248.3900,24.8430,48.5660,0.01930133 1335,450.3190,205.5930,53.2580,48.1490,0.01321920 1335,610.7840,45.7790,26.7140,72.5350,0.01320493 1335,3.4205,194.7810,27.7632,51.7800,0.01169570 1335,410.5690,204.2200,131.2010,55.0980,0.01142576 1336,546.3280,209.2000,26.2460,65.5540,0.77048099 1336,525.1850,209.2740,20.4750,51.3650,0.30310881 1336,539.3730,207.1210,21.4660,56.9070,0.24511817 1336,591.5940,221.2810,22.6310,52.0640,0.06087513 1336,574.7980,241.3010,48.3100,108.0740,0.04916628 1336,584.1860,225.1740,34.0900,80.1320,0.02377592 1336,508.1560,207.9220,22.4700,50.5000,0.02077595 1336,455.6390,198.2210,24.1670,53.7290,0.01903473 1337,605.7510,204.8810,28.5610,76.9000,0.59523076 1337,510.4720,200.5230,22.8030,53.1290,0.15591575 1337,45.7180,196.9150,33.2733,74.2120,0.12228026 1337,479.2130,202.7890,21.9590,49.3780,0.04592780 1337,530.3860,200.9270,25.5230,56.8040,0.04038274 1337,515.9220,203.2990,32.3730,68.7730,0.02357380 1337,598.9530,266.3130,34.5240,82.1940,0.02269331 1337,449.1980,185.5030,24.1680,51.3580,0.01811115 1337,363.2170,217.3550,21.2810,40.1730,0.01794482 1337,420.8400,224.4690,26.5300,58.2800,0.01622580 1338,595.1940,198.5930,27.8850,69.6200,0.55361772 1338,607.4230,197.4060,24.9110,75.0660,0.25752619 1338,51.9438,171.9820,36.3091,87.3000,0.23831439 1338,3.6180,174.6990,33.1135,83.2780,0.11929784 1338,519.9780,199.0360,25.7390,61.4510,0.09747840 1338,497.0530,201.4310,22.1750,54.9120,0.04714727 1338,382.1520,223.8500,23.7490,43.8630,0.02971645 1338,500.7010,196.7780,32.9500,73.9120,0.01526361 1338,2.4469,181.5810,86.7829,77.9940,0.01284451 1338,424.9020,200.9800,23.3150,45.3300,0.01124408 1338,275.0040,212.6430,20.6750,36.0310,0.01085590 1338,467.5510,193.3820,151.6330,65.6600,0.01083625 1339,576.1700,198.9900,31.2960,64.9930,0.39290076 1339,537.1170,201.9830,23.8700,51.9210,0.14477043 1339,503.7710,177.8120,24.3640,50.4560,0.03858735 1339,342.8840,209.1140,20.1820,37.7630,0.03455260 1339,274.5880,208.6240,22.2250,45.1840,0.02941137 1339,324.4870,211.2880,21.5400,39.9910,0.01600675 1339,160.7130,209.5550,21.4120,39.4420,0.01445326 1339,448.3520,201.5560,23.9660,45.9350,0.01374998 1339,417.5490,204.1270,22.3930,50.8580,0.01349493 1340,268.6780,217.2550,23.4010,44.6740,0.08597960 1340,587.3420,201.6940,25.7200,58.8370,0.07263612 1340,500.5600,204.4830,22.6600,44.7660,0.04847173 1340,444.6310,213.7970,21.7760,47.0010,0.02791973 1340,136.6230,209.4760,25.0050,48.1210,0.01972160 1340,449.5520,221.6370,24.6820,51.1650,0.01221737 1340,36.8758,157.9610,29.2631,69.1700,0.01019355 1341,479.5560,210.3520,23.9860,58.0300,0.41456425 1341,438.0390,204.8830,23.9590,56.5720,0.11919244 1341,257.3430,215.6350,24.8580,49.4340,0.08951166 1341,496.4760,220.7790,21.4060,48.5820,0.03762788 1341,579.6320,166.3520,24.9670,54.1340,0.03521847 1341,470.3650,210.1140,22.2420,54.6090,0.03343127 1341,459.1460,212.3840,21.4930,47.5680,0.01180409 1341,525.0110,277.5320,36.8620,93.3250,0.01038286 1342,506.8580,210.2800,26.4700,65.6250,0.64949399 1342,535.8780,228.2170,23.3450,50.8790,0.20769247 1342,252.1050,211.5950,25.2860,62.8580,0.15851101 1342,115.3690,205.6080,22.8990,46.7880,0.08112431 1342,475.1240,221.7850,20.8280,46.6420,0.04286465 1342,335.4140,207.8200,22.4090,45.7810,0.04181989 1342,519.1220,217.8220,22.0850,57.8050,0.03264340 1342,490.2780,216.0980,21.7850,52.6380,0.02672177 1342,495.9210,205.8800,26.7960,65.5610,0.01737107 1342,374.6070,214.0500,25.1960,48.9660,0.01285714 1343,542.2850,212.6100,32.0510,80.3230,0.81419754 1343,575.1500,219.6660,27.3530,70.3720,0.46543500 1343,96.4001,214.6380,24.6669,53.8630,0.21767090 1343,81.9605,212.4680,24.8075,57.8510,0.18736182 1343,119.5510,211.3330,23.3350,50.8970,0.14950362 1343,608.6410,217.8640,26.3820,80.1310,0.09320565 1343,600.6730,232.1830,23.8440,63.2070,0.05068269 1343,249.2210,227.6490,24.7240,53.1440,0.04938748 1343,491.0810,224.2980,25.5390,53.7820,0.03489765 1343,344.0230,211.5480,21.4910,42.2710,0.02672395 1343,38.0155,218.8970,29.2626,64.2210,0.02313800 1343,556.7900,217.6230,25.6300,71.4710,0.02217062 1343,82.3404,210.8030,59.6376,57.8370,0.01778300 1343,382.0940,220.6670,27.2510,51.8980,0.01579320 1343,534.6140,212.7520,25.6780,68.5410,0.01470845 1343,614.3050,197.3550,25.6950,72.4430,0.01293143 1343,519.3250,211.5570,23.1440,58.3610,0.01082994 1343,416.8990,226.6960,29.0730,52.5620,0.01051715 1344,594.0950,216.2490,28.6110,86.8690,0.74122655 1344,579.1740,215.4520,28.1060,84.5110,0.67578059 1344,112.1670,213.0010,24.9670,59.2120,0.47870356 1344,247.9160,225.2830,27.0080,57.4000,0.30377892 1344,607.0960,214.6570,24.7090,85.9980,0.23625098 1344,544.6020,205.8350,28.1700,75.8400,0.16796729 1344,129.8100,215.7810,24.2070,54.5050,0.16686092 1344,617.5600,217.9470,21.9280,77.1530,0.08414605 1344,139.9450,219.3990,24.8990,48.5030,0.01903616 1344,390.0890,218.6100,28.1580,52.6730,0.01453443 1344,559.3520,208.1230,26.8370,70.2710,0.01071299 1344,10.7602,222.8230,30.8958,62.6980,0.01064028 1344,506.7810,206.7080,21.1620,48.7540,0.01048413 1345,136.0850,210.4030,27.4600,64.6270,0.70764226 1345,157.6910,209.6040,27.3970,64.1940,0.53681237 1345,580.4520,200.7190,28.9650,79.4250,0.37435499 1345,617.7540,237.6950,22.2460,71.1710,0.27574286 1345,57.1932,207.2910,22.0407,42.4670,0.07917213 1345,546.6770,224.1950,25.5600,57.5500,0.02413833 1345,572.5420,203.4720,25.1050,68.0500,0.02170277 1345,53.4533,182.2990,30.8755,63.2770,0.01545694 1345,513.9500,206.1890,22.6560,43.2760,0.01322514 1345,246.2340,233.0860,26.6830,47.8870,0.01103148 1345,208.5630,218.1180,21.7150,35.9700,0.01086729 1346,394.7080,207.0870,29.6230,71.6060,0.72858167 1346,162.4570,213.6040,29.9520,67.9810,0.68444645 1346,37.3603,218.9360,29.9085,61.8280,0.58520520 1346,184.9000,213.6920,29.7900,67.8220,0.47772062 1346,614.3260,209.7750,22.9530,64.8270,0.21589471 1346,348.0600,219.1250,28.0350,56.4130,0.06082535 1346,22.8906,218.2230,29.5804,64.2560,0.04592204 1346,580.7890,227.1070,26.7020,59.7110,0.02977232 1346,510.9710,198.8710,57.3650,54.8690,0.02547073 1346,8.4818,216.7710,30.6616,75.4410,0.02475963 1346,602.6770,207.4670,26.0800,62.6570,0.02216701 1346,357.3520,209.3710,30.6230,62.6250,0.01527842 1346,476.9710,232.0570,27.8790,47.3020,0.01495023 1346,482.3340,202.0160,124.3930,54.5090,0.01321436 1346,527.3800,206.2260,23.6850,35.9240,0.01313260 1346,553.9920,205.1750,23.9200,44.4170,0.01033487 1347,186.7280,217.0320,29.7270,74.8590,0.84699625 1347,57.5864,220.1920,32.8047,68.8590,0.83632267 1347,379.6810,212.7470,29.0590,66.1730,0.70323366 1347,211.9230,219.1170,28.6660,71.5430,0.62042457 1347,25.1624,219.3010,29.6708,63.1620,0.55416435 1347,85.7731,182.4020,27.2989,62.5780,0.06522411 1347,534.3440,210.8420,25.2670,50.1150,0.06330366 1347,577.1570,208.2840,22.5720,44.5260,0.04432409 1347,544.4830,212.1980,25.3990,47.5230,0.03425700 1347,43.2551,217.6450,31.9691,66.4660,0.02422721 1347,36.7790,216.1330,25.1901,55.8780,0.01826831 1347,97.6934,208.4920,20.7576,37.6730,0.01546725 1347,365.8720,210.9250,29.1420,65.8590,0.01377315 1347,518.8400,206.3980,83.9360,55.4100,0.01202461 1347,357.8740,221.2570,27.2540,62.1360,0.01192448 1348,83.4750,220.0690,32.6770,71.8330,0.86978805 1348,199.5260,217.6490,28.8640,72.8640,0.85480195 1348,366.1410,210.4150,29.1150,76.2160,0.63706917 1348,229.9520,219.8770,28.0600,73.7590,0.63122696 1348,45.2700,220.5130,28.4742,68.0950,0.57774156 1348,568.3620,212.3230,22.5360,50.1590,0.12943703 1348,1.0876,217.9000,22.8786,73.6940,0.12585604 1348,529.6610,210.5360,22.4980,47.0840,0.09940842 1348,251.5470,220.4700,27.8880,67.2250,0.08834264 1348,33.0345,215.1940,23.9649,51.0900,0.08162466 1348,551.9290,212.3190,21.9760,52.0490,0.08114728 1348,214.6350,219.3780,29.7670,69.3360,0.05769936 1348,547.6820,212.4740,42.3400,63.6090,0.02135416 1348,446.8180,211.3400,193.1820,54.8320,0.01751181 1348,21.3259,215.1690,22.3526,50.0290,0.01662138 1348,353.4250,212.6190,30.0400,74.6470,0.01518562 1349,113.2380,220.8800,33.4520,77.5340,0.82149035 1349,65.2245,217.6740,35.0377,78.9680,0.70900983 1349,230.7380,218.9620,31.7890,81.6810,0.64915675 1349,6.3602,217.4170,36.2894,82.8590,0.60904396 1349,347.1910,210.4200,30.4340,73.0470,0.48282921 1349,103.5470,217.3560,29.6400,75.6330,0.18623269 1349,584.1630,214.6050,19.8380,41.9950,0.15397006 1349,615.6800,219.0670,22.9760,56.3750,0.09574708 1349,557.7570,212.9410,20.4070,40.8610,0.06719180 1349,86.8918,214.1890,32.8092,69.9750,0.03208361 1349,540.0890,213.3860,22.5450,42.5880,0.03014302 1349,444.3210,213.1760,195.6790,54.0980,0.02094432 1349,1.4210,227.6930,23.9084,79.2740,0.01639442 1349,297.6520,219.3530,22.7240,44.7890,0.01607315 1349,4.3880,209.8280,78.9763,86.1530,0.01402855 1349,540.6680,279.1140,38.1520,88.8260,0.01342827 1349,524.1210,209.9890,57.9230,54.5300,0.01279469 1349,484.5440,281.8440,23.1390,47.7410,0.01194237 1349,571.9900,214.3140,22.4350,45.1350,0.01137970 1349,245.5920,224.4570,28.9740,65.2250,0.01099124 1349,361.3670,211.5530,35.2610,78.8220,0.01096093 1349,330.7370,205.1590,41.0810,93.6780,0.01080046 1350,151.7660,217.6190,37.7750,86.7450,0.84429109 1350,98.7238,214.2010,36.0812,83.7940,0.75757670 1350,386.0500,225.6200,38.3430,91.5700,0.71869946 1350,28.1600,215.6820,38.8001,96.9950,0.66872430 1350,8.7109,217.3450,38.1407,95.6360,0.47756290 1350,268.1890,215.0620,32.2500,59.3210,0.08143806 1350,565.3250,209.0080,35.8430,56.9540,0.06971642 1350,377.6120,228.3270,30.6420,75.6460,0.04203804 1350,322.4680,216.4100,23.8400,53.6100,0.04047800 1350,582.9240,213.4480,24.2240,48.3330,0.03504091 1350,338.2160,217.2230,22.8820,47.0040,0.02561708 1350,254.1760,219.1560,33.2110,56.4580,0.02317893 1350,571.6740,215.3590,20.7720,40.7380,0.02209556 1350,372.9250,211.2490,98.4930,79.9620,0.01956099 1350,316.2330,210.9840,37.1990,81.6360,0.01749604 1350,506.9630,209.9120,125.8790,58.8040,0.01498178 1350,279.8390,218.2040,31.9290,62.4340,0.01231106 1350,553.6300,215.4480,25.1760,45.8390,0.01189729 1350,115.4460,207.3090,68.6260,89.1320,0.01072592 1350,341.7780,216.8090,31.8050,64.8360,0.01048683 1351,147.1140,219.0030,36.5270,82.7760,0.84805638 1351,450.9050,221.1480,38.2240,101.9500,0.77574855 1351,202.0320,218.4210,36.3320,88.8760,0.75439352 1351,60.0508,220.5740,43.7592,100.0380,0.73619574 1351,277.4380,209.6110,32.4660,78.2780,0.41129425 1351,40.9201,221.1480,38.8144,98.6720,0.34612581 1351,467.5530,221.5350,34.8840,97.3220,0.32994330 1351,599.0810,209.7480,25.0470,57.7980,0.20486595 1351,572.9050,211.5830,27.1150,59.0870,0.07391438 1351,196.2710,223.4510,28.2990,63.2510,0.05063331 1351,583.5620,212.7430,28.0730,56.2210,0.03194614 1351,563.1510,205.9640,60.3320,63.9060,0.02649924 1351,49.0090,212.6470,94.1670,91.9010,0.02523294 1351,264.7570,212.9470,24.3460,53.0910,0.02329342 1351,435.5280,212.3070,93.9840,78.2010,0.02260547 1351,219.7550,232.3000,30.4240,76.5530,0.01825620 1351,259.6330,204.6650,41.0910,88.4760,0.01762855 1351,328.1450,212.4930,33.3120,70.7240,0.01593198 1351,471.9970,215.9810,24.2690,63.1820,0.01383153 1351,145.5560,246.0320,26.1930,53.4200,0.01264520 1351,69.7974,221.6480,28.8518,62.7180,0.01106199 1351,342.4310,218.6010,22.7920,43.1870,0.01037002 1351,55.3590,220.4860,28.2577,71.8360,0.01023846 1352,96.1897,216.5100,38.3993,101.6360,0.78811216 1352,216.3480,211.7410,37.7900,106.2780,0.77903461 1352,120.9360,217.7790,40.3800,100.7840,0.73685461 1352,205.1240,214.2570,32.4960,91.8000,0.44895986 1352,374.3380,219.3840,28.9850,68.5930,0.24991488 1352,606.9320,210.6840,23.4510,53.2600,0.11676202 1352,261.1040,215.9420,30.3370,65.5750,0.10509103 1352,555.0480,207.5130,80.3830,58.0540,0.04605074 1352,366.3910,213.3720,45.6400,102.0700,0.04018886 1352,365.3100,222.0830,26.5520,58.4150,0.03837472 1352,564.1460,219.6820,22.3250,44.2160,0.02785146 1352,583.2680,217.6370,27.5200,54.8680,0.02431097 1352,454.0470,213.0510,185.9530,52.9790,0.02400708 1352,346.7100,217.8790,22.5840,45.0660,0.02060336 1352,593.7340,215.3540,24.5950,46.9710,0.01930528 1352,225.4190,243.8950,35.4690,88.2390,0.01796644 1352,248.8900,214.5370,33.0010,88.6380,0.01746889 1352,188.0680,201.1730,77.8540,90.5830,0.01297042 1352,386.6210,222.4490,27.7350,60.2620,0.01131640 1352,564.2230,210.2470,32.1050,75.0810,0.01094392 1352,492.8470,262.5940,34.4520,65.2690,0.01012772 1352,123.5640,218.0650,28.1330,60.4530,0.01010265 1353,143.9830,210.2970,39.8680,116.3390,0.82389027 1353,407.3060,216.8350,33.6730,80.7810,0.79350603 1353,175.9330,218.0940,35.8860,103.7490,0.64434069 1353,203.2410,222.6940,36.7470,93.5090,0.47749367 1353,561.3640,215.3470,24.8850,53.3220,0.08883352 1353,609.3930,214.4710,27.0260,57.8280,0.05293799 1353,556.1090,208.9020,83.8910,57.2140,0.04269523 1353,183.1920,264.7390,27.9080,59.0830,0.04131196 1353,168.8580,243.7020,29.4460,78.7720,0.04128645 1353,582.5900,216.3140,31.1790,57.8330,0.03525779 1353,154.4540,257.7370,30.5920,66.1960,0.02814156 1353,339.4600,216.8270,34.1550,66.3660,0.02633096 1353,264.0190,214.6230,30.2020,68.7520,0.02307063 1353,180.2540,201.3080,78.4350,102.4620,0.01482050 1353,347.3930,223.0760,22.0580,43.4980,0.01430455 1353,341.8550,206.6330,298.1450,72.2380,0.01325007 1353,500.0380,263.0440,33.5580,61.7960,0.01168631 1353,1.1086,143.3360,33.8897,97.8340,0.01159012 1353,141.7260,214.1710,29.8160,69.6310,0.01091319 1353,596.5540,213.8240,33.0670,74.3040,0.01033929 1353,218.9850,228.8470,31.4130,84.5980,0.01027541 1354,441.9130,218.3430,30.7520,77.5080,0.81859487 1354,62.4789,212.5150,49.0121,117.0410,0.80367279 1354,388.3040,219.0500,36.0410,91.4600,0.76879776 1354,236.7450,216.4330,41.4960,106.3270,0.52603304 1354,536.7880,217.2890,29.9620,61.2240,0.34809333 1354,372.3540,222.6220,34.2150,84.0410,0.28993571 1354,85.2064,237.1610,37.8076,87.9030,0.07304234 1354,580.0000,210.6160,24.3070,55.1400,0.06331562 1354,598.3630,214.4570,33.0280,62.8240,0.03279092 1354,454.2540,213.3020,25.2590,66.6430,0.02701761 1354,247.5870,221.0200,29.6820,61.9510,0.02459028 1354,367.0200,225.5900,29.1810,56.7200,0.02357171 1354,567.7590,204.8670,33.1140,78.7760,0.02017547 1354,561.6970,208.7980,74.1140,63.5200,0.01937959 1354,610.1770,210.8450,21.4980,46.3770,0.01926608 1354,435.9160,223.4580,25.3670,54.9990,0.01891174 1354,501.3970,264.0540,35.2470,76.0710,0.01734262 1354,259.5100,220.9740,31.3930,73.8350,0.01244816 1354,269.1290,218.1610,25.0600,51.4970,0.01026568 1355,2.7525,218.3730,44.7295,113.5780,0.79938865 1355,416.2050,225.2390,30.0840,84.7650,0.78120476 1355,431.9950,226.6430,32.6250,87.6730,0.74582225 1355,479.2090,224.7520,28.6650,64.9920,0.49022368 1355,367.2840,225.0590,32.2060,77.3330,0.17634028 1355,489.0580,222.8130,30.4990,75.5470,0.13562296 1355,583.0650,214.7860,27.6200,55.6670,0.04906412 1355,442.6880,220.4480,29.7590,73.9550,0.02855340 1355,593.9060,210.0500,35.0900,76.2870,0.02801177 1355,428.4080,213.9530,63.3790,91.0780,0.02489233 1355,298.5270,219.5520,38.5120,59.6240,0.02159937 1355,468.5300,218.1130,27.8700,66.7220,0.01925194 1355,612.0790,212.3890,26.7570,61.2500,0.01919890 1355,557.6690,211.9630,81.7970,63.1150,0.01886318 1355,375.1630,223.2560,42.7480,90.4820,0.01666943 1355,334.6990,217.8410,25.6020,55.3730,0.01648581 1355,457.2040,213.9370,22.7080,55.1910,0.01567578 1355,567.1950,213.2740,30.9660,62.6790,0.01446397 1355,395.5730,225.3310,37.4530,84.7040,0.01156817 1355,14.3759,203.7800,26.8254,56.1010,0.01076481 1355,498.4520,258.7030,38.4170,91.7880,0.01007729 1356,486.7090,223.7510,34.9420,91.4500,0.77024102 1356,420.3800,224.3950,31.4280,81.1850,0.73295134 1356,406.7110,221.1440,29.4900,82.4400,0.69856656 1356,525.9960,222.0510,27.9880,66.0840,0.29984486 1356,376.9410,225.2080,30.4410,84.2450,0.24711609 1356,591.1030,214.0140,24.6420,56.5040,0.12857066 1356,269.6760,211.5120,22.4070,45.5630,0.06018119 1356,366.8150,222.2350,29.3170,72.2950,0.03108961 1356,490.8210,221.6670,23.5630,60.0660,0.02680879 1356,508.3820,219.4670,49.2910,88.1460,0.01620428 1356,602.7180,209.6280,33.5940,72.6370,0.01562334 1356,460.0720,213.0800,22.5320,43.5890,0.01462864 1356,364.0330,224.2170,22.6400,46.4330,0.01412983 1356,262.0890,208.9150,37.2760,76.3110,0.01217835 1356,566.9800,215.2680,52.0350,61.9240,0.01031620 1357,469.5420,222.7500,33.6900,85.8140,0.75473380 1357,411.8090,221.6700,33.8120,95.8560,0.72028595 1357,435.7850,224.2510,32.9590,98.5380,0.63117474 1357,559.7270,227.4770,27.5760,55.8150,0.09380924 1357,598.0410,214.8310,26.2260,55.0420,0.08780492 1357,448.0900,224.0170,34.7570,92.4920,0.07746828 1357,572.4540,222.4680,25.8670,60.3130,0.05699909 1357,268.0080,210.2250,22.1110,43.0150,0.04615577 1357,617.5190,212.9180,19.7830,45.4560,0.03605114 1357,326.8450,215.9680,33.9940,73.5410,0.03234563 1357,581.6940,216.4640,32.5460,74.2380,0.03198486 1357,603.6670,210.5830,31.5870,75.3880,0.01979059 1357,395.9730,221.2520,33.6330,97.5210,0.01877970 1357,557.3510,218.5060,76.4130,59.3650,0.01823518 1357,437.2700,208.3790,108.2940,79.1040,0.01582404 1358,466.0680,221.4430,35.8170,98.9230,0.76811159 1358,535.6870,232.9470,31.3120,74.2410,0.72821939 1358,242.6770,218.2530,35.3940,96.0320,0.68658763 1358,488.4620,223.7260,36.3140,99.7510,0.63833427 1358,601.3130,211.2740,29.2930,74.6030,0.17654617 1358,489.0830,206.7330,25.7340,63.7520,0.04578946 1358,613.8550,213.2550,24.4600,81.2800,0.02575682 1358,441.6660,211.6700,22.7730,44.1180,0.02040171 1358,447.6040,206.0960,81.0030,87.2560,0.01750233 1358,501.6720,223.2670,41.5470,97.3890,0.01522420 1358,273.3850,219.0740,20.9340,46.9870,0.01323090 1358,259.4410,215.3700,35.0970,87.9640,0.01152326 1358,1.0000,146.2030,39.7114,111.3010,0.01126551 1359,99.2288,227.2550,47.0762,106.8470,0.72561145 1359,539.5510,228.3240,37.7220,104.9420,0.68595046 1359,268.5890,211.2970,20.7520,47.0270,0.35614944 1359,610.5220,218.4030,29.1260,98.8110,0.25898394 1359,497.9790,209.7670,24.4300,51.9350,0.04509025 1359,564.1400,235.3640,34.9760,92.3070,0.04182123 1359,611.9950,214.6060,22.5390,55.7040,0.02751170 1359,107.7810,220.5850,32.1830,69.0860,0.02163604 1359,443.8460,209.6450,23.3720,49.2920,0.01041463 1360,267.2170,204.2250,21.8720,51.1190,0.46334592 1360,490.7400,223.9500,60.4540,152.7200,0.40337807 1360,499.0990,206.4450,32.2120,74.6470,0.04752104 1360,447.6410,205.8860,25.3650,55.8470,0.03918732 1360,144.8570,237.7580,35.1100,70.7680,0.02356510 1360,490.3640,309.2140,27.7240,62.1990,0.01238386 1360,491.9560,224.4140,26.8430,58.1830,0.01090993 1360,468.0640,209.0700,132.0090,87.7110,0.01029315 1361,488.9080,218.2090,39.5050,73.3350,0.66402549 1361,259.8470,205.7820,23.0600,51.5880,0.66242123 1361,523.9000,205.6960,24.6420,59.3340,0.05405990 1361,498.0570,246.3020,26.2060,48.6290,0.01275671 1361,554.4380,207.2840,22.0410,46.9660,0.01018878 1362,259.3710,210.6640,23.7590,53.1800,0.72002846 1362,430.9360,205.8730,28.7530,73.0470,0.29020938 1362,536.2010,207.6520,22.1990,45.8290,0.09279101 1363,255.1290,214.5740,25.3590,59.9100,0.73734373 1363,543.1240,211.7540,23.6240,55.0890,0.09841861 1363,347.2370,220.7020,22.6290,49.3450,0.07997885 1363,430.6960,200.5980,23.6580,51.4140,0.07961679 1363,131.3950,232.3190,21.0830,43.9240,0.03184822 1363,547.7150,213.2350,32.3940,66.3570,0.01993856 1363,561.8540,217.2430,26.6210,53.6490,0.01416540 1363,1.9632,294.9370,41.0949,150.0760,0.01128444 1363,487.7320,206.9430,23.9450,51.8720,0.01062153 1364,251.4410,221.9450,24.6870,58.0310,0.74533111 1364,552.7030,218.7870,24.4510,55.1470,0.09360687 1364,432.4030,208.3280,22.6880,47.3440,0.05239958 1364,230.8810,227.3050,23.3940,50.8670,0.05109211 1364,87.5296,240.3520,26.6244,49.1670,0.04006464 1364,565.7820,219.6560,32.3330,68.0920,0.02403535 1364,498.0630,211.5310,27.6870,53.7210,0.01301182 1365,245.9450,216.3810,26.1050,64.6180,0.68105286 1365,432.3850,202.8000,23.1800,54.5800,0.27023488 1365,572.1520,213.1580,22.3860,46.7940,0.25520706 1365,512.2800,208.6620,24.4440,54.9580,0.03931940 1365,221.2890,229.7740,25.3320,49.7160,0.02440017 1365,94.7156,208.3260,26.5714,55.4980,0.02318734 1365,236.7060,219.8200,24.3430,63.1140,0.01519705 1365,158.9070,240.1470,28.1430,51.0690,0.01339994 1365,127.1860,205.6600,23.5290,42.8250,0.01235983 1365,482.0620,237.7800,23.9460,43.6170,0.01215003 1365,565.6140,210.0430,34.5060,76.5970,0.01003160 1366,591.2870,215.8370,23.0810,47.2090,0.09948158 1366,432.1750,200.8630,22.1670,52.1260,0.04299483 1366,327.5050,214.1670,29.4650,55.2320,0.02555743 1366,488.9870,239.5050,24.3450,40.7710,0.01184435 1366,237.8360,212.6020,26.9980,44.0640,0.01171841 1366,580.5050,216.0370,22.9140,42.7730,0.01079840 1366,555.0360,213.2590,22.5710,45.7460,0.01045308 1366,525.0930,210.2200,27.7600,52.6210,0.01036536 1367,235.3580,210.5900,29.4090,71.4290,0.77521551 1367,612.9040,213.8920,24.0710,56.4750,0.18138623 1367,70.1159,208.9110,34.9511,72.0840,0.06482686 1367,466.2240,208.2480,26.5840,50.6560,0.02449800 1367,432.0230,199.4010,21.6970,47.6680,0.02226988 1367,137.1980,190.3550,26.6520,60.0870,0.02129629 1367,425.1210,207.8330,35.3540,59.3530,0.01291264 1368,234.2290,216.2870,26.8060,66.4790,0.61727673 1368,123.8250,194.0080,24.1400,52.6780,0.13221842 1368,64.6637,206.2240,23.9170,44.1980,0.02308697 1368,465.9310,206.7610,24.7810,46.0940,0.01705789 1368,559.8080,209.8980,30.1520,60.0990,0.01358106 1369,229.9700,213.1410,24.3010,55.2530,0.57964104 1369,110.9060,187.0500,28.1730,66.2540,0.07294235 1369,46.6154,203.7080,27.6341,52.9530,0.06156147 1369,589.3960,209.6070,24.1820,50.1340,0.03256477 1369,464.6500,204.5120,23.8960,48.8260,0.02755226 1369,536.5810,209.7030,23.6050,46.2100,0.02557216 1370,224.9040,206.9800,29.7590,76.0240,0.75842619 1370,537.1560,210.3370,22.6040,45.7920,0.09963162 1370,620.5110,209.3800,19.0330,54.7310,0.05448116 1370,465.9890,202.9950,23.7240,47.4800,0.02091008 1370,366.2490,204.9040,150.3340,49.8560,0.01890966 1370,109.7550,198.3220,26.3550,49.8430,0.01605099 1370,509.7930,239.4880,25.8650,47.2140,0.01449833 1370,447.7450,207.8560,22.1460,45.8200,0.01257508 1370,318.2130,228.3370,25.0120,49.7320,0.01245675 1371,224.9970,211.6260,30.6660,76.0280,0.80461931 1371,422.2730,217.2300,30.5260,66.2260,0.07810776 1371,534.2090,211.7660,21.4560,44.6390,0.05380401 1371,547.4400,208.7100,22.9930,46.6240,0.02857450 1371,618.1360,205.2840,21.8640,66.5210,0.02186120 1371,380.1740,202.6810,139.0600,54.4900,0.01838517 1371,467.4440,204.7800,22.7200,43.2250,0.01611388 1371,530.1650,207.8470,46.6710,54.1530,0.01007017 1372,219.2270,209.7610,30.6030,79.2290,0.67092794 1372,16.1086,206.9260,27.7929,56.7280,0.05620858 1372,543.3060,207.7180,23.6350,47.7770,0.05152258 1372,528.0510,209.7430,22.5880,47.5550,0.02747339 1372,391.8340,209.2230,23.3270,47.4580,0.01458807 1372,369.7940,203.1710,153.5220,52.1700,0.01183527 1373,11.5828,206.4170,25.4278,54.9880,0.21549915 1373,110.5160,202.0730,23.5530,43.6350,0.03096838 1373,538.2820,209.5100,22.2260,46.3500,0.03062920 1373,89.3862,194.3330,110.8838,61.6500,0.02415440 1373,215.6670,210.4560,21.8120,36.5430,0.01650368 1373,241.2620,198.4560,43.8900,80.2680,0.01419356 1373,146.5330,199.4400,22.4990,39.0670,0.01048902 1374,211.7510,213.6170,29.7810,74.3320,0.84677511 1374,6.0910,202.0120,26.9260,52.0840,0.07421225 1374,524.9760,209.1840,24.4830,54.7600,0.04629524 1374,3.4682,151.1310,31.8512,107.2100,0.01777140 1374,110.7180,202.9940,22.5720,44.1090,0.01654894 1375,210.2880,211.2880,30.4150,61.7160,0.25234646 1375,104.2300,199.2210,22.4300,44.2390,0.05352290 1375,517.4540,246.1020,27.5110,48.6140,0.01078299 1376,212.5040,216.4110,30.7890,75.9260,0.85552859 1376,103.1360,203.9760,24.9660,52.2910,0.07429685 1376,93.2008,207.1610,24.6192,52.5960,0.01543454 1376,207.0490,219.3270,23.2560,54.7370,0.01445203 1376,369.1620,207.1850,25.6080,49.9490,0.01426360 1376,407.1300,203.2730,147.7790,52.6350,0.01424914 1376,455.9790,207.6000,61.9750,50.2180,0.01247301 1376,477.7270,211.5670,24.1850,47.0030,0.01133980 1377,231.7340,215.1810,33.3280,79.1710,0.84329832 1377,127.8790,199.7890,32.3630,64.5970,0.04954682 1377,448.4040,200.4680,132.8270,55.0980,0.03224876 1377,387.9860,215.4220,25.6050,53.8830,0.02119095 1377,82.5541,228.5620,21.3459,36.7590,0.02010608 1378,71.6132,213.5200,24.7652,53.9950,0.24918202 1378,92.0343,211.5990,28.0447,60.9140,0.20467594 1378,217.5050,207.1450,27.1500,60.2990,0.07702169 1378,547.3730,200.4390,30.6710,57.4020,0.01874256 1378,74.9888,207.1540,33.1202,77.2930,0.01158882 1378,538.2980,200.1540,100.6260,62.7700,0.01092501 1378,340.9910,293.6720,29.0500,54.1830,0.01054032 1379,368.1450,224.3310,33.8310,80.4700,0.78021204 1379,193.7310,218.3520,26.8450,57.8410,0.46011984 1379,337.4970,210.6500,26.7720,57.3980,0.10535838 1379,204.9170,219.6500,23.8410,51.3130,0.01942812 1379,581.2790,228.2520,34.6930,79.8020,0.01190426 1380,16.9501,211.2920,26.5485,50.5280,0.01665065 1380,38.4995,209.3870,30.6657,49.8350,0.01511003 1380,9.6786,209.8580,56.0134,65.5130,0.01359806 1381,506.3620,214.0430,25.7930,62.8550,0.72349590 1381,523.5670,211.4420,26.1180,63.5630,0.64178008 1381,1.0000,216.0740,27.8927,108.2080,0.22389613 1381,171.9210,208.9000,71.8540,65.8600,0.04382604 1381,199.3540,212.5670,28.5170,56.2290,0.02021570 1381,177.2370,215.5040,26.3250,46.1050,0.01636887 1381,209.9260,214.1920,36.9610,62.2130,0.01609796 1381,164.7470,210.0790,47.8820,84.2800,0.01476912 1382,160.4500,229.0600,41.5250,101.3210,0.66081715 1382,337.3010,221.6430,38.3930,73.3010,0.13435258 1382,377.0360,218.2170,41.6070,80.4130,0.07853458 1382,352.0000,217.2690,44.3630,79.0420,0.03216078 1382,158.3460,222.1230,34.2440,67.0360,0.03184391 1382,374.6720,222.9260,29.2450,54.5560,0.01747325 1382,178.8160,259.2050,30.3390,67.6300,0.01411252 1383,426.7570,231.9570,50.8390,136.5130,0.63436526 1383,219.9540,209.5190,36.2820,92.1370,0.31296986 1383,57.8478,214.5920,33.3767,77.7420,0.19223472 1383,203.9660,210.1960,33.1910,78.8360,0.14361835 1383,579.5230,224.3620,56.0000,134.6740,0.14081229 1383,9.9153,196.5480,28.5761,73.9610,0.04127940 1383,46.6661,215.8280,29.4311,67.1010,0.03588087 1383,425.3350,235.7110,33.4580,93.3690,0.01841343 1383,26.7066,207.2850,34.9155,88.4420,0.01383165 1384,515.6100,203.1870,45.6590,108.3300,0.56162030 1384,344.1850,213.0820,32.3510,74.0570,0.37059504 1384,209.0290,209.3580,22.5870,48.1660,0.04163877 1384,337.0820,215.0300,25.2890,63.1380,0.03510617 1384,228.3610,210.4760,32.8250,71.4990,0.02616149 1384,533.9930,213.4430,33.9060,85.0590,0.01630352 1384,1.4800,196.8220,23.2957,50.0130,0.01453948 1384,47.6398,235.6740,23.3550,40.4140,0.01450279 1384,213.9050,208.5520,30.2410,62.0330,0.01223044 1385,436.6170,212.1600,23.9410,55.3000,0.24733517 1385,386.0730,216.3210,25.9730,63.1220,0.23682424 1385,551.6730,217.3140,33.4820,75.8040,0.15839092 1385,168.5580,211.6490,21.7330,37.5900,0.14556593 1385,411.8240,221.5590,22.5630,51.9160,0.07892161 1385,250.9030,235.6700,21.3550,45.8750,0.03649682 1385,549.1360,220.6920,23.1150,52.1540,0.03589894 1385,425.4680,216.6790,25.4340,60.5680,0.03198638 1385,225.5930,234.8510,22.6630,41.0520,0.02665812 1385,401.8540,216.9980,25.0270,60.3460,0.02068712 1385,415.7590,222.0390,28.9160,74.1760,0.01822073 1385,262.9650,236.1910,24.9550,51.3080,0.01211237 1386,453.6880,207.1840,27.4050,72.0050,0.53289610 1386,495.4470,212.8190,26.7260,74.7080,0.31951323 1386,482.2390,210.3280,22.2810,58.7790,0.26665652 1386,441.2290,214.5810,29.6830,77.0250,0.16321409 1386,201.7830,211.6420,19.5840,33.7890,0.09618632 1386,300.0190,229.2760,27.1300,56.6250,0.08579434 1386,261.4280,234.6620,22.8300,43.9360,0.07253597 1386,55.3240,204.0890,25.1196,49.0250,0.06853722 1386,189.2850,211.1240,20.0890,34.7120,0.01610352 1386,178.7570,207.7430,19.6490,36.9040,0.01380368 1386,291.6410,232.4410,22.6700,50.8830,0.01085280 1387,532.8190,209.1950,31.6400,78.3910,0.47556135 1387,588.2040,208.0200,28.8870,79.3860,0.41722155 1387,227.5020,204.4160,19.7880,36.5060,0.24855474 1387,88.5076,195.5670,22.2674,50.4880,0.15819348 1387,163.3210,253.6050,29.3570,50.9640,0.12846294 1387,299.1010,233.1970,24.7340,46.0190,0.09593810 1387,344.1460,225.6360,27.6150,62.2750,0.08897205 1387,550.1360,210.7600,24.7330,57.7210,0.05953154 1387,78.1401,195.2510,21.4327,46.0240,0.04764182 1387,333.5380,228.3250,26.8350,60.5730,0.02948385 1387,216.2130,203.7100,20.6520,38.6920,0.02361979 1387,326.5940,233.1460,21.3150,47.1090,0.01387184 1388,598.2200,207.7280,29.1640,77.5150,0.71575469 1388,578.7040,211.5000,25.7450,64.2200,0.68626243 1388,242.6000,207.7870,19.4110,39.2510,0.25660512 1388,267.8280,206.2410,18.5910,33.7940,0.16119239 1388,84.5876,196.7210,33.6934,55.8050,0.08609797 1388,536.8360,192.0590,26.6750,56.5390,0.06628469 1388,325.6060,237.7130,29.6440,59.6400,0.05338769 1388,78.9849,201.0730,22.3511,47.0450,0.02817998 1388,231.5010,209.1190,19.7780,38.6760,0.02551439 1388,381.7850,248.4200,31.3610,70.2780,0.02449633 1388,101.6660,200.6290,22.3500,47.1870,0.01935875 1388,292.0220,194.6960,18.9620,36.4770,0.01777987 1388,153.1530,281.8820,31.0020,58.0350,0.01652514 1388,355.1010,239.8530,23.5850,56.5440,0.01439012 1388,54.1296,193.0380,111.3934,60.5050,0.01067133 1389,250.8770,210.0060,20.0570,39.5980,0.32748997 1389,80.5613,199.3910,23.3027,51.9590,0.32044652 1389,106.8900,200.5270,20.6000,47.3490,0.19229376 1389,90.9365,198.6660,18.7255,48.5720,0.14907749 1389,307.1820,205.6320,19.1630,36.6080,0.12357588 1389,286.5540,202.8850,18.2500,33.0450,0.07091535 1389,357.7710,244.7050,29.6460,64.1000,0.06563359 1389,574.5280,197.3910,25.3180,54.6990,0.03901499 1389,239.5250,208.1220,18.9400,40.6550,0.02923057 1389,450.1310,207.1880,23.2970,48.5050,0.02304937 1389,84.6296,196.2910,40.2764,57.2600,0.02154578 1389,313.6030,198.2480,21.4520,42.4600,0.02013722 1389,322.0350,202.5720,20.5110,39.7720,0.01690238 1389,504.5830,250.0720,26.7950,50.7320,0.01686344 1390,77.8808,200.5700,24.5972,57.6290,0.59823596 1390,266.6720,212.4390,21.0840,47.9730,0.44816223 1390,102.8310,196.0540,21.5560,51.3400,0.18756108 1390,487.2990,212.6930,32.8090,58.6670,0.06158580 1390,115.0870,197.5280,20.0230,45.9070,0.05776995 1390,361.7640,214.2830,19.7250,35.7630,0.05180797 1390,332.1800,208.9010,19.0140,32.2280,0.05155788 1390,87.7344,197.3060,23.3396,55.9450,0.04422760 1390,602.3470,332.4340,37.6530,179.5660,0.01894586 1390,339.4780,202.9520,20.2940,39.2820,0.01600577 1390,82.0717,199.0200,63.6303,54.8360,0.01031082 1390,428.5250,204.1070,22.1410,42.3910,0.01027890 1391,34.5854,200.7780,28.9222,67.5510,0.67811400 1391,531.7540,216.7370,26.8090,69.9820,0.67432475 1391,248.9710,211.2150,24.1470,56.9770,0.63511425 1391,80.6686,196.5590,24.5794,55.1400,0.34429762 1391,393.3030,210.9140,20.8630,42.6960,0.30325183 1391,67.1765,194.6550,22.1455,55.7850,0.24283639 1391,354.3030,203.3530,21.9600,40.8170,0.05574593 1391,451.1970,204.0400,20.0510,38.5310,0.01956435 1391,185.7200,170.5010,28.4440,55.6710,0.01690802 1391,239.9980,215.4180,22.0010,50.5970,0.01323000 1391,539.2960,218.4270,35.7670,78.4650,0.01241456 1391,44.2740,188.9710,125.2300,68.0940,0.01091866 1392,596.3610,230.8960,35.2860,88.4690,0.78122282 1392,219.9110,225.0590,26.9560,68.1420,0.75279891 1392,436.0440,219.8480,23.5630,47.2010,0.53830886 1392,574.2640,228.1830,22.3500,51.8180,0.44826293 1392,208.1160,225.3830,24.3930,61.7400,0.34538433 1392,41.5437,198.1350,23.9620,52.8110,0.21369991 1392,373.0990,216.2350,22.7930,41.0290,0.18208617 1392,18.1689,198.1330,22.5077,56.1700,0.12727526 1392,2.9768,201.0800,22.6356,54.8730,0.11393599 1392,181.3100,172.9250,30.6470,64.2940,0.05800423 1392,474.6860,215.6150,20.0630,38.9280,0.02765834 1392,53.1928,200.1200,27.6545,52.7490,0.02027937 1392,581.6290,227.7630,26.0380,61.3260,0.01364993 1392,466.0940,199.0330,24.5400,55.2070,0.01169911 1392,395.9250,216.0020,22.5110,42.9590,0.01020558 1393,572.1410,222.7760,28.9710,70.1190,0.71841252 1393,60.3688,214.9380,48.1442,112.8120,0.68658626 1393,429.0960,218.2590,22.6370,49.4580,0.63067549 1393,341.5150,211.5880,22.7960,44.0510,0.29465052 1393,384.5380,204.1840,21.4760,43.7410,0.08353480 1393,69.4341,264.0970,31.3255,63.5610,0.03050465 1393,71.6898,220.2540,31.1192,65.4690,0.02928997 1393,44.6453,219.5070,37.3746,95.9000,0.02444306 1393,314.7050,209.9160,19.5860,37.8520,0.01391309 1393,419.3400,208.6860,41.3950,64.7180,0.01238440 1393,98.9453,164.3650,33.4247,67.5830,0.01067818 1394,533.1160,214.7850,33.6930,78.2770,0.73975617 1394,384.1670,206.0240,25.8870,58.3950,0.64664012 1394,506.3490,200.4050,26.8820,63.9410,0.64582002 1394,263.8890,203.2880,22.6860,44.3730,0.33222967 1394,312.4950,193.9100,22.8610,46.3890,0.04545215 1394,153.2020,197.8710,21.6050,36.9510,0.02091559 1394,216.7740,198.2620,21.8730,38.6510,0.01503268 1394,392.1810,197.8730,22.7580,52.0660,0.01286874 1394,375.6270,209.3830,21.6150,50.1870,0.01119922 1395,564.0910,222.7080,40.1070,98.3970,0.79267734 1395,498.3320,204.7980,32.4580,76.4910,0.76279467 1395,253.7670,205.6770,23.3520,50.5960,0.56976020 1395,399.4710,207.4050,27.0820,68.7550,0.56218398 1395,389.7170,210.3400,25.7330,66.8210,0.42052016 1395,188.6430,206.9540,20.2010,37.2860,0.21092586 1395,138.9970,205.4310,21.5820,40.8240,0.08855841 1395,381.0920,206.1930,24.1540,58.6480,0.02343853 1395,512.6090,207.9230,25.4370,65.4260,0.01333002 1395,409.9790,211.4160,27.5290,64.9930,0.01017688 1396,461.2960,212.2450,28.6030,76.6190,0.63987023 1396,439.0470,207.5990,25.2200,56.4720,0.57501960 1396,294.8780,208.9170,23.8820,49.3490,0.55599052 1396,561.3730,211.2410,28.1180,71.4560,0.33657256 1396,206.3010,209.6640,19.9180,37.8540,0.24022673 1396,348.4280,204.2500,23.1350,52.1060,0.23021613 1396,446.4140,208.9110,27.0810,72.9270,0.12388708 1396,544.7050,209.2080,28.5640,65.2470,0.08463273 1396,179.8180,208.2990,21.8640,39.5280,0.06221407 1396,425.8660,207.0220,22.5190,49.8890,0.02744721 1396,197.5620,206.3470,19.8080,40.5750,0.01526339 1396,286.0890,205.4230,22.1520,50.0240,0.01524167 1396,500.6660,228.8450,27.2810,50.8690,0.01115347 1396,572.4690,216.0420,25.1550,58.1050,0.01040215 1397,556.7080,205.6610,32.2350,76.3620,0.81626141 1397,447.8480,202.1540,23.4560,56.2170,0.49620944 1397,282.8500,208.3050,23.2530,45.1930,0.43054360 1397,34.6505,204.5900,24.7105,47.6390,0.06843855 1397,260.1480,195.6170,20.1690,38.4800,0.05472500 1397,540.6000,209.0100,21.0020,45.8700,0.03936608 1397,547.0510,207.6920,23.9760,58.0740,0.02833367 1397,438.2660,207.0460,23.8000,55.3530,0.01541193 1398,407.3630,210.3660,21.9100,44.6260,0.50133544 1398,438.9640,214.4380,22.3580,46.3730,0.29530689 1398,158.3460,205.4310,25.2070,53.2830,0.21725966 1398,594.0520,205.8330,27.5100,67.1450,0.19739708 1398,383.5240,195.7500,22.1960,45.9580,0.03900044 1398,397.3960,204.3140,21.9260,44.2880,0.02103271 1398,31.3726,191.9750,24.9556,48.9720,0.01402770 1399,496.8230,221.5850,21.1670,44.2540,0.55496246 1399,566.1920,224.2230,24.1550,51.0230,0.50457549 1399,246.4340,215.4090,25.1080,54.0230,0.09592748 1399,65.8740,203.3540,28.7196,57.6030,0.07490367 1399,48.4535,203.9780,26.1308,57.2090,0.05002056 1399,473.0370,206.6650,21.2160,43.9860,0.03693297 1399,124.0220,200.9540,26.5190,58.4870,0.02824716 1399,483.4470,212.5060,20.7330,43.0680,0.01279386 1400,435.4040,218.0820,22.9950,48.0040,0.67531180 1400,552.4840,220.1630,23.5770,53.0280,0.47626251 1400,404.3030,204.0100,21.9250,44.7770,0.08789265 1400,522.3100,217.0980,21.2100,39.9940,0.01760999 1400,103.8060,211.4560,36.4110,61.3950,0.01252891 1400,489.6320,227.5070,22.8050,35.6860,0.01142668 1400,538.7130,209.2190,48.2090,66.5190,0.01113121 1401,417.3360,221.3860,22.0850,49.1940,0.72334808 1401,588.2110,217.1150,28.1180,64.1910,0.70692676 1401,92.5704,210.1930,29.3816,62.1890,0.46899226 1401,376.4640,200.6310,22.4180,49.0720,0.09352507 1401,505.9060,220.1760,21.5190,41.2110,0.04434191 1401,470.0670,220.5280,23.6850,43.2830,0.03820033 1401,490.5990,212.8400,49.3990,52.8540,0.02263871 1401,407.1480,220.8310,19.9970,40.9350,0.01618461 1402,24.5895,214.1490,37.5746,88.9910,0.76709783 1402,414.3820,222.7630,23.0370,50.8240,0.76023728 1402,65.3668,226.4640,25.4811,55.4050,0.43416327 1402,362.7110,202.1210,23.2220,49.0950,0.07714778 1402,518.4110,209.9690,33.1730,57.7600,0.02554620 1402,56.7417,212.2500,43.0365,78.7310,0.01953746 1402,41.1594,215.8460,31.5241,77.5430,0.01844960 1402,505.1060,216.5420,23.4140,51.4160,0.01568263 1402,619.8030,210.5500,20.1970,76.6220,0.01367045 1402,584.6790,183.7380,35.1560,88.0070,0.01164709 1403,445.5360,221.2390,26.5770,64.1900,0.85340989 1403,31.9429,221.9740,31.1128,71.0740,0.42901769 1403,504.6000,222.9010,30.9770,66.3000,0.01167864 1404,479.9120,215.7790,33.0430,82.2800,0.91161507 1404,444.7900,208.4560,22.1020,46.5920,0.17297330 1404,549.6210,227.5140,33.7300,79.7700,0.08068728 1404,374.5800,205.2910,104.6030,58.7500,0.01913308 1404,5.8695,199.6990,31.9764,59.7570,0.01385626 1405,561.5100,222.6620,40.0930,106.8840,0.85856122 1405,495.6780,215.6840,22.6340,51.0570,0.51925898 1405,420.3270,210.7490,19.4840,44.2130,0.22339508 1405,458.0760,214.0920,20.1430,44.5470,0.20852053 1405,411.5290,210.8450,20.1770,44.1510,0.18305758 1405,445.6710,214.1280,19.1790,40.5140,0.07148983 1405,402.3930,213.0210,123.1660,46.6140,0.05059938 1405,466.9660,213.0440,20.0580,43.2550,0.02598459 1405,485.4320,213.5160,21.6590,48.5040,0.02552697 1405,434.9360,211.0950,19.6670,43.2300,0.01970075 1405,397.6900,210.7860,21.1780,46.3040,0.01944532 1405,474.8090,215.0560,20.1480,45.7650,0.01605321 1405,478.1200,226.1750,28.3040,56.4420,0.01537561 1405,96.6695,197.8510,24.4895,49.9880,0.01296559 1405,456.0940,215.5310,58.7790,51.4700,0.01161154 1405,384.7330,209.6290,22.5040,43.0780,0.01091864 1405,417.5320,210.2610,46.4440,48.9580,0.01091057 1406,582.4240,220.3160,27.7240,62.2640,0.78300458 1406,489.4760,214.6340,23.8250,56.0890,0.53539336 1406,522.8540,214.5480,19.7360,46.7960,0.32613423 1406,458.1630,209.5600,22.0220,51.4400,0.28736284 1406,509.1820,212.6990,18.5060,48.8750,0.19537099 1406,443.7920,212.6190,19.9280,46.2760,0.07184690 1406,498.9130,212.3880,20.8510,49.9210,0.07098169 1406,455.1010,212.3040,92.4200,50.3800,0.01884477 1406,431.2450,212.1710,20.6560,45.9120,0.01625821 1406,470.2670,209.0470,20.9820,50.3330,0.01555703 1406,501.1790,213.0140,40.7580,54.6820,0.01310028 1406,538.1780,216.7320,20.7790,43.3340,0.01198810 1406,465.3550,215.7970,153.6290,64.8790,0.01192987 1406,43.8048,200.9220,24.2228,42.5920,0.01026735 1407,602.7450,212.2570,24.1130,61.2040,0.62696105 1407,547.3230,211.9350,25.7670,66.5530,0.57610887 1407,571.6320,216.3360,21.7640,59.0320,0.49360776 1407,580.8270,212.8760,21.1700,59.1550,0.40972897 1407,507.9000,208.1880,22.7130,54.3370,0.28885105 1407,537.9270,206.8940,24.5170,64.7220,0.18260500 1407,530.5310,206.3500,21.1440,55.8660,0.08463638 1407,588.6080,210.2880,24.0040,63.6850,0.08245084 1407,522.4690,205.3350,20.4000,56.2470,0.06474548 1407,105.1190,195.7970,27.7290,59.2440,0.03450445 1407,613.4040,210.0650,21.7220,62.6830,0.01339356 1407,495.5230,212.5330,23.3640,50.8880,0.01230952 1407,504.4330,203.5380,50.9860,62.5340,0.01064753 1408,596.6490,217.9270,29.0090,75.4050,0.25485483 1408,54.7251,196.4530,29.8999,60.8980,0.11213245 1408,430.3310,169.7940,26.0020,48.6350,0.01496099 1409,52.8211,202.9430,25.5757,51.2550,0.04762301 1409,16.9395,185.0710,79.0249,80.5170,0.02378000 1410,527.4870,208.9030,29.7560,74.4240,0.23641141 1410,569.5140,202.8740,26.1400,65.8610,0.16757724 1410,575.7650,216.3030,27.7180,69.5180,0.16045055 1410,594.0190,199.8770,25.7500,56.6480,0.12329759 1410,550.2530,201.3910,23.7660,57.9310,0.09410612 1410,538.8690,205.7720,43.2860,75.0180,0.04718172 1410,513.5010,219.9420,27.8200,60.7030,0.03340771 1410,558.6390,214.3690,30.9850,76.3650,0.02649913 1411,607.9510,200.8210,25.4930,66.3520,0.66408515 1411,580.3780,206.7330,32.7210,96.5160,0.47835007 1411,568.7920,203.6750,29.4440,93.0830,0.37091511 1411,499.5750,213.4830,28.3530,65.8150,0.14501403 1411,541.2550,213.9500,29.5860,74.3390,0.10974910 1411,595.9950,204.0040,30.8260,90.6360,0.10742433 1411,521.1570,206.4160,33.4160,74.7280,0.07474475 1411,532.9920,201.6110,21.1550,52.2110,0.07196540 1411,512.3890,213.4410,21.7350,53.8660,0.04055630 1411,557.7070,203.1370,28.7220,87.1820,0.03838959 1411,492.2680,210.5470,77.1220,73.3420,0.02460695 1411,523.8490,205.8490,20.5000,50.1310,0.02201633 1411,589.2920,199.3790,25.4560,65.0520,0.01393710 1411,575.4150,196.9250,25.3830,58.3340,0.01292792 1411,507.3450,218.5030,33.1370,75.5490,0.01231529 1411,554.0410,201.9040,71.1180,82.7610,0.01220731 1412,531.2440,219.5600,27.5180,74.0690,0.58965343 1412,549.6500,225.0180,23.3880,61.9710,0.30908144 1412,580.4400,212.3290,28.2790,78.1510,0.29625860 1412,606.3450,216.7950,25.4480,72.3000,0.14620242 1412,592.8020,218.4970,25.6250,71.8560,0.05833723 1412,296.1180,220.7500,21.8360,47.2930,0.05237022 1412,540.1700,220.7720,40.3320,86.1680,0.04145370 1412,573.1660,215.8550,23.7640,64.7100,0.03184434 1412,337.4860,227.3620,25.7530,58.6590,0.02307458 1412,379.8840,219.6760,28.8930,55.5090,0.01854575 1412,486.7220,164.2010,24.7660,52.2500,0.01453259 1413,583.8330,220.3880,43.5180,121.0500,0.63714004 1413,577.5430,216.1630,32.5510,90.4300,0.22469969 1413,327.3240,211.8920,24.6160,57.9790,0.15671124 1413,605.4170,232.4280,28.4920,88.6220,0.05156858 1413,433.6700,218.0690,23.1360,45.2220,0.02938959 1413,203.6450,215.2790,21.0710,37.1790,0.02398995 1413,20.2169,201.7650,32.1097,66.7690,0.01535781 1413,474.4000,281.8000,35.9080,74.7500,0.01184537 1414,498.0290,226.4660,23.3070,54.4930,0.27234790 1414,362.5140,220.3510,24.5640,57.8370,0.27190065 1414,492.2160,221.6230,33.9510,89.8620,0.04027390 1414,212.7240,178.5600,31.7960,69.9870,0.02477005 1415,553.0060,209.3490,30.5040,75.1080,0.79200667 1415,366.3940,205.7790,25.2310,59.3550,0.34678939 1415,151.2020,181.4310,29.2900,58.0990,0.01990820 1416,371.7700,225.7410,27.8870,64.5100,0.70671320 1416,496.8560,229.6580,22.8780,48.7440,0.04210879 1416,217.4950,218.5340,21.1470,42.4220,0.03466671 1416,135.2880,194.9530,28.7360,55.9200,0.02412952 1416,488.1470,227.4320,37.4650,71.0860,0.01291727 1416,385.7700,230.3310,30.7530,66.8290,0.01217413 1417,389.5150,226.5550,23.0840,61.9280,0.58146715 1417,559.1980,222.0640,25.9910,61.4160,0.49254513 1417,402.4880,221.2150,26.7970,71.5430,0.43165955 1417,79.0107,185.6560,28.3583,61.4680,0.01721293 1417,412.8210,221.6130,25.2520,61.3650,0.01524446 1417,558.3930,180.6970,31.3650,77.9270,0.01237147 1418,428.8960,229.9150,30.8120,89.5020,0.66110444 1418,418.2880,234.3700,28.3140,78.2870,0.22413048 1418,440.9370,231.8140,33.7100,88.7050,0.09961421 1418,529.4240,211.2700,24.5610,56.5500,0.02349655 1418,201.7900,211.8160,26.6110,55.6050,0.01778748 1419,463.1930,230.2470,37.4830,113.5490,0.81872648 1419,489.5260,224.1050,43.0530,133.7410,0.77958357 1419,493.5800,281.3200,32.5680,78.2580,0.05442727 1419,503.4780,232.3100,32.5370,88.8180,0.02429245 1420,155.8340,210.7710,23.2420,53.1570,0.40546289 1420,594.0390,248.7070,44.8670,216.0170,0.39647582 1420,428.1430,209.7870,23.7500,50.9360,0.07250506 1420,613.8560,248.5440,25.0700,56.7800,0.01407947 1420,166.9820,208.9600,22.5640,49.1960,0.01133814 1420,605.1280,374.3620,32.9680,90.9870,0.01111556 1421,554.8250,218.6470,32.3670,70.5740,0.05929254 1421,487.9090,229.0980,25.4800,47.0450,0.01173853 1421,18.9058,234.1930,31.9879,70.4880,0.01015351 1422,96.8883,213.5530,27.5297,76.5060,0.69044936 1422,72.4616,207.3090,29.2634,80.4760,0.66990060 1422,147.2110,210.3600,21.4260,47.5460,0.29023239 1422,62.3601,196.5430,28.8361,78.7220,0.04743156 1422,534.7060,229.3510,22.0080,41.9400,0.02599324 1422,446.1320,148.8570,33.7650,60.5880,0.01547409 1422,506.1910,146.9380,35.1530,97.5330,0.01410862 1422,530.7810,223.5910,36.4980,70.3400,0.01117252 1423,596.3950,213.6560,28.7780,68.7070,0.68523395 1423,16.7339,204.7910,39.6804,107.7600,0.49990550 1423,2.8321,197.9480,33.0995,111.8730,0.08467519 1423,405.8560,230.5220,30.9930,65.9500,0.01506327 1423,542.0780,169.6680,27.6020,64.3770,0.01263135 1423,29.3400,200.7790,29.7022,71.3930,0.01099911 1424,89.4338,202.7080,30.8412,72.6260,0.80518180 1424,167.2630,204.7690,24.1250,50.5890,0.31381148 1424,495.1640,217.3970,21.6100,50.7820,0.18200724 1424,513.0210,217.0620,22.8820,51.0610,0.08023423 1424,49.2885,209.8860,31.1994,58.4980,0.05120383 1424,608.8560,198.3560,23.5650,57.6700,0.02522385 1424,490.9380,210.5170,35.0670,85.6390,0.01740413 1425,3.3334,210.9170,32.0104,95.8720,0.72887689 1425,37.2230,204.7490,34.2150,85.0590,0.68427026 1425,168.6580,203.2010,28.7110,62.0530,0.14246549 1425,23.7095,207.9380,29.7503,90.8000,0.08421271 1425,466.4610,212.3860,24.0690,49.2240,0.03244604 1425,447.7240,206.4990,123.1310,57.6050,0.02726387 1425,550.2720,216.1640,27.3630,51.3320,0.02165723 1425,446.2700,232.3490,29.0250,56.9750,0.01853567 1425,452.5010,208.0760,49.8550,57.4270,0.01638351 1425,522.5950,209.9300,63.9000,52.2910,0.01144652 1426,516.3020,224.8250,24.7090,59.1560,0.66179353 1426,535.6090,223.0700,24.4850,54.3160,0.30333167 1426,177.9410,211.5690,27.1480,50.1430,0.03182611 1426,34.2434,184.8500,34.2654,85.2080,0.03005300 1426,568.6980,220.4380,22.7590,40.5770,0.02061450 1426,548.8550,311.3190,41.7280,82.9500,0.01954140 1426,402.5340,229.6030,20.5320,36.5790,0.01776144 1426,572.5190,217.6140,50.0480,48.3620,0.01666675 1426,585.1310,222.9640,21.8230,36.1570,0.01494946 1426,604.4940,222.9300,22.3850,36.9900,0.01338359 1426,577.4530,219.9510,22.5800,47.7260,0.01126192 1427,588.1600,229.2190,30.1340,85.0140,0.78493696 1427,612.9030,227.2680,24.9880,82.3820,0.71267587 1427,150.7320,205.7170,26.9570,62.3560,0.62793362 1427,141.6950,207.4550,23.3150,58.0380,0.11600437 1427,413.5580,231.7020,21.7360,38.8210,0.03684760 1428,96.5189,205.3500,28.1321,69.5910,0.56877726 1428,80.1211,206.2130,27.3389,67.1200,0.37636390 1428,398.2370,236.5720,24.3810,45.3060,0.02628701 1428,446.8870,230.4220,27.0240,42.9000,0.02427442 1428,46.7369,207.1340,28.8029,73.9770,0.01328819 1429,56.9849,209.2300,30.0505,72.2390,0.58701038 1429,44.1069,207.5340,26.5491,68.3430,0.19576436 1429,334.4870,227.1720,24.6140,48.9480,0.02267682 1430,34.4216,201.4580,33.4668,79.8950,0.64405823 1430,310.0120,217.3050,33.6610,65.1210,0.02557587 1430,26.7792,205.2880,27.7602,63.8950,0.02550549 1430,368.5820,237.3240,26.5920,47.3850,0.01152144 1430,315.8200,220.3300,23.5160,38.8160,0.01149622 1431,588.9260,216.3590,38.4450,107.1220,0.74204981 1431,9.6697,203.9340,29.8213,74.5880,0.49957785 1431,613.0880,221.2510,26.9120,109.3200,0.11394162 1431,594.6720,268.3050,25.5630,52.4690,0.06599611 1431,616.5340,282.6320,20.8860,41.3380,0.02151544 1431,2.3512,194.2790,61.8516,91.1970,0.02093111 1431,605.8200,249.5400,27.7430,71.6100,0.01409419 1431,299.7080,225.7080,27.1150,47.2010,0.01379224 1431,424.7840,240.8950,31.1420,51.4600,0.01033040 1432,571.4410,219.5700,41.9240,113.5630,0.80019671 1432,1.0000,207.3020,30.1954,79.2590,0.69872648 1432,598.7980,222.5450,36.7930,112.0800,0.47053286 1432,608.9960,295.2390,21.5570,40.3530,0.03168613 1432,578.1720,254.1940,27.1730,74.1920,0.03006913 1433,50.6095,218.4140,30.3072,76.8870,0.76399082 1433,29.3304,217.7100,30.9882,77.6430,0.29386935 1433,350.9170,232.2230,36.0710,68.9470,0.02157120 1433,443.9780,234.8020,20.5790,40.1780,0.01569072 1433,3.4022,150.9900,22.2795,49.9330,0.01287000 1434,62.5703,217.7700,33.5991,81.3740,0.76814288 1434,43.5830,216.0680,30.4006,79.6440,0.18659142 1434,5.4519,143.4590,25.6803,57.1200,0.01757632 1434,355.6550,226.1070,26.0730,47.2610,0.01367677 1434,415.3880,254.3960,30.9910,62.5320,0.01096744 1435,33.6552,207.6860,38.1021,94.9570,0.72330332 1435,9.0781,202.6680,36.8075,103.7960,0.41984743 1435,531.9540,214.8450,31.5370,66.4570,0.05285519 1435,532.9790,219.2350,20.4900,40.3260,0.04814201 1435,186.2080,231.9950,25.1170,54.6410,0.02181086 1435,23.2552,207.4550,30.5008,82.1800,0.01857671 1435,416.4880,206.6460,24.7150,45.7650,0.01368278 1435,554.0030,223.8660,21.8650,43.3370,0.01300876 1435,197.9100,221.4190,26.4730,59.1750,0.01169784 1436,566.2430,213.4190,34.4380,66.6630,0.07800116 1436,449.3850,209.6940,24.8530,50.1330,0.07684970 1437,512.9410,218.6010,28.0220,73.3110,0.17646065 1437,616.4340,220.8170,23.5660,65.7200,0.01729532 1438,582.7130,215.8590,28.0010,74.7970,0.66014421 1439,470.0820,227.7080,36.8570,63.8210,0.01123290 1442,477.5530,221.7500,27.9500,65.6390,0.12008072 1443,432.3210,219.8950,22.2270,45.2370,0.06554310 1444,415.3860,214.4170,25.7720,50.7570,0.02777578 1444,578.8840,196.5580,60.9520,169.8590,0.02288673 1444,391.9520,213.5680,39.0040,51.4150,0.01215396 1445,430.9450,214.0040,27.9530,55.8100,0.08590379 1445,318.5370,219.9350,24.1490,44.6560,0.01920418 1445,405.9640,232.6720,36.6200,63.4180,0.01532467 1446,341.9790,220.5070,25.8380,52.9040,0.04950313 1446,480.0810,111.0130,22.7900,47.8420,0.01468878 1446,424.5870,240.1530,30.1110,55.6970,0.01340150 1447,484.5900,223.8970,22.7440,54.0660,0.32349020 1447,503.6550,222.3400,23.9560,57.0190,0.30157569 1447,356.2840,223.1880,25.0460,57.3580,0.05684031 1448,508.0240,221.4780,24.6790,56.8550,0.75175178 1448,540.8610,221.0470,23.7440,54.7370,0.71648061 1448,428.3080,204.9800,25.4890,52.1160,0.04638265 1448,461.7880,261.8490,29.1990,58.3180,0.02485084 1448,359.2050,220.4190,24.8040,47.1010,0.01342563 1448,524.0850,215.7390,29.6800,62.0780,0.01331015 1448,444.8280,70.7516,35.9510,60.1624,0.01114663 1449,569.9290,218.2020,30.9370,79.3640,0.69782537 1449,611.1360,218.7940,26.3900,75.6980,0.67212331 1449,382.9190,222.5410,28.5220,52.2320,0.02115169 1449,71.5898,238.5550,24.9229,45.4160,0.01761802 1449,182.2590,218.2020,36.4490,52.3380,0.01186979 1449,573.0100,308.7490,30.5740,66.3490,0.01172135 1449,461.4470,207.9700,28.3620,57.8130,0.01095375 1450,55.3167,222.0350,31.1711,59.4830,0.02870839 1451,597.0280,215.4210,27.4040,59.1470,0.19904101 1451,359.4010,221.7230,26.4560,64.4630,0.03843958 1451,585.7630,210.6120,40.3830,98.4900,0.03413347 1451,413.8520,213.3360,25.0070,47.3150,0.01249855 1452,442.7340,243.1330,25.9550,62.5340,0.24672447 1452,424.1690,239.1740,23.9300,59.5810,0.12436806 1452,434.9130,241.6120,22.7140,58.2890,0.05739088 1452,491.5380,239.0620,22.8030,44.2950,0.04068420 1452,380.8550,258.0720,25.3260,47.8510,0.01449963 1453,466.5150,168.9430,22.4690,51.2830,0.46179685 1453,442.2530,168.4890,23.5210,57.1390,0.30482388 1453,529.6780,161.9640,21.0240,48.6460,0.16412148 1453,394.1840,181.6220,27.2890,57.9520,0.04011309 1453,474.4260,256.4520,33.1650,68.4270,0.02244412 1453,521.5230,160.3280,20.9900,53.2630,0.01673616 1453,334.3010,178.5320,20.9350,40.5380,0.01061997 1454,472.7160,201.3420,24.7370,62.0600,0.62413615 1454,503.2380,206.3390,24.4100,56.5360,0.61543214 1454,571.3120,194.6770,26.6110,60.6060,0.57268137 1454,590.2900,192.9480,25.8650,62.3010,0.16437009 1454,340.6530,214.5440,21.1070,45.1090,0.02476065 1454,494.0620,204.0020,24.0000,55.1720,0.02220873 1454,425.0790,224.7160,30.3930,69.7400,0.01905448 1454,439.4310,194.8050,24.8340,59.1250,0.01841285 1454,38.6039,85.7308,30.5343,68.4572,0.01148366 1455,521.2930,212.5750,32.1620,75.4260,0.81951439 1455,556.2400,216.4060,26.5800,67.9150,0.54117775 1455,344.0140,222.7600,23.6810,51.2390,0.01749304 1455,533.4580,206.6040,30.0580,74.8270,0.01683985 1456,478.6760,209.8680,33.9090,68.1450,0.66390580 1456,260.6850,189.4480,22.2670,35.1070,0.17119546 1457,562.1890,210.2700,38.4150,89.6860,0.73812926 1457,243.8220,185.7310,22.1270,36.5510,0.12207001 1458,229.4850,185.2370,24.1240,46.4770,0.26402131 1459,209.9830,207.2100,27.0200,50.2820,0.31943530 1459,494.4570,217.6740,22.4940,39.3990,0.02816278 1459,279.1850,193.7320,25.6170,51.7530,0.02619094 1459,465.6680,205.1890,24.5350,49.9160,0.01431713 1460,175.6350,174.9380,25.4710,52.3510,0.51961881 1460,276.9990,149.6240,32.0800,72.8810,0.03462670 1460,534.5350,191.9800,24.4540,41.6770,0.03452444 1460,469.0310,211.6980,30.1880,64.6100,0.02170756 1460,570.6710,194.9670,35.5090,70.2420,0.02081395 1460,493.7750,165.8080,26.4670,62.9820,0.01577179 1461,125.8810,182.2830,30.9130,62.8450,0.63344395 1462,116.6040,200.0930,34.9420,71.2700,0.54297501 1462,472.5490,204.5540,27.6130,59.5120,0.01759782 1462,355.1950,162.9770,35.1430,95.0180,0.01207078 1463,155.2320,214.6670,38.7750,84.2400,0.81138885 1464,154.1170,199.4280,58.1930,125.6270,0.74973136 1464,158.1750,203.7230,40.1020,75.3660,0.07430259 1465,67.7849,226.5000,65.1611,152.4580,0.59074306 1466,233.7480,168.2250,25.4350,52.2250,0.03759125 1469,145.4840,208.8850,29.3350,44.0690,0.07597400 1470,149.4840,216.7770,26.6010,50.5960,0.12963170 1472,66.3142,205.0560,36.4578,61.8550,0.03488029 1472,239.0240,203.9020,24.8750,38.3920,0.03024878 1475,11.6317,223.0130,24.9848,39.3270,0.02514845 1476,1.0000,179.6210,30.7228,83.7320,0.02630019 1479,66.2463,41.3813,37.9727,76.8797,0.16134427 1486,413.6380,211.6230,31.1350,70.2720,0.01743195 1487,416.2480,215.7050,31.4710,69.7880,0.02675326 1489,511.7320,208.7360,35.1520,89.8790,0.01403964 1490,76.6968,227.2980,33.3552,67.6930,0.03903936 1493,142.5140,184.6060,30.6190,52.7920,0.01271194 1494,219.2300,193.0380,21.6270,33.7180,0.07821133 1494,3.2152,186.9600,27.5934,54.3330,0.01537497 1495,174.3500,211.4020,25.5080,39.3660,0.11258770 1495,230.8610,206.4800,23.4450,42.0860,0.02126653 1495,390.8450,198.4740,25.5390,50.7980,0.02060724 1495,549.3220,243.9250,34.3140,79.7040,0.01914615 1495,599.0560,158.0670,22.6010,39.3840,0.01176664 1495,214.6120,204.3870,26.2290,44.0570,0.01042243 1496,128.5560,212.2640,27.5260,49.3790,0.20130046 1496,175.3830,208.7920,26.2420,45.9950,0.06503180 1496,146.1140,212.1420,24.6140,51.2700,0.02818397 1496,197.7360,208.3720,23.3810,42.1370,0.02596326 1496,411.2440,181.5350,35.0560,76.1590,0.01133805 1497,93.7634,206.5900,27.0956,54.3630,0.25509408 1497,112.1040,208.7230,25.0290,52.9000,0.09874242 1497,184.5500,205.1230,23.4130,42.4530,0.02179889 1497,153.0240,205.4290,22.9620,41.5200,0.01156580 1497,166.8080,209.6930,25.4930,41.6660,0.01061447 1498,31.5978,205.8770,32.2726,66.3380,0.51545602 1498,112.9130,200.0680,28.6080,56.9850,0.06442352 1498,373.9210,207.1540,27.0810,55.2160,0.02147614 1498,197.7290,215.7360,30.7240,51.7070,0.01464795 1499,1.2679,201.8920,27.6340,75.2130,0.42030066 1499,603.6810,145.5290,29.7810,63.8700,0.12518847 1499,11.3327,204.2160,30.1927,74.6530,0.09831629 1499,170.6440,216.4930,32.5750,63.9060,0.09739915 1499,124.9680,211.0380,22.4050,34.5920,0.02646708 1499,76.9726,211.1740,26.2054,43.2960,0.02032399 1499,21.9194,208.9830,35.5644,73.9720,0.01651385 1499,101.0460,202.5270,27.6540,54.2730,0.01122371 1500,1.0000,211.1220,33.0056,81.5350,0.06581718 1500,43.2575,212.0810,38.2437,68.7400,0.01939828 1500,216.5310,213.6440,23.8540,37.9630,0.01684038 1500,91.6189,210.4340,33.4651,60.3260,0.01403737 1500,405.1870,221.5520,30.4160,53.1680,0.01327498 1500,120.5760,216.4120,33.9240,67.0400,0.01203696 1500,150.6100,200.6790,29.4390,50.9600,0.01026378 1501,9.4647,214.5890,42.8851,79.2860,0.48939490 1501,151.4020,208.4420,31.3930,62.1630,0.20015794 1501,189.7010,214.0360,22.2960,34.5940,0.06123634 1501,42.5753,215.4260,32.7153,73.3240,0.03158146 1501,576.5270,131.6430,25.9930,45.7060,0.01769258 1501,207.6980,204.5160,28.8760,54.9060,0.01172880 1502,57.3313,208.9500,50.0077,108.8220,0.68872625 1502,101.1790,222.1770,47.4070,97.5240,0.59136856 1502,266.7360,209.8740,28.5960,58.6110,0.03105956 1502,288.2430,215.1520,23.1740,42.3920,0.02181890 1502,87.0639,215.0280,43.5951,95.0850,0.01983648 1503,264.4630,217.3130,45.7730,110.3490,0.73926878 1503,299.9000,219.9570,45.5190,106.1800,0.73090231 1503,504.1080,208.5400,32.9820,72.5240,0.04330665 1503,339.0410,224.8370,32.8480,61.8270,0.01865752 1503,281.5220,234.9590,45.1900,96.1710,0.01655237 1503,318.6450,215.7390,66.8140,127.1520,0.01649339 1503,302.4180,224.8260,33.6450,54.4010,0.01350672 1503,543.7220,221.4150,25.0880,37.7750,0.01076947 1504,514.1350,220.5030,52.8910,132.1120,0.76605809 1504,558.4920,223.7450,55.0240,133.8110,0.74259901 1504,288.0050,217.8470,36.6150,80.3850,0.44210717 1504,567.0290,268.9700,36.0990,86.9140,0.01095517 1505,11.2941,208.0000,43.1882,90.6990,0.57468563 1505,225.2010,222.9550,36.6640,78.1020,0.23084202 1506,386.0200,216.4440,40.1950,92.4080,0.79271752 1506,171.2950,201.4460,32.7320,73.5190,0.77652413 1506,187.7290,197.2090,31.8830,69.9600,0.01722730 1506,103.4860,194.6350,37.0870,57.2740,0.01379340 1506,182.4750,229.6750,24.1280,45.4710,0.01137349 1506,76.9767,173.4760,36.0093,62.3760,0.01119589 1507,336.7260,217.1500,42.9650,102.1110,0.82081705 1507,83.2182,193.3390,41.2098,88.0800,0.70157892 1507,502.8300,196.7650,27.9470,58.2890,0.04037614 1507,343.2750,252.7690,29.2860,63.0150,0.01812137 1507,588.2430,177.2740,38.0710,87.9860,0.01211486 1507,43.2709,174.4660,36.5515,68.0600,0.01012210 1508,26.8585,202.7120,51.9090,118.1870,0.60041714 1508,307.3200,180.5360,32.3490,68.4340,0.03290698 1510,571.5350,232.5030,42.2550,96.1170,0.70299655 1510,616.1920,233.6160,22.2030,48.1170,0.02051398 1511,532.6810,247.2690,47.7360,108.1030,0.80206501 1511,384.6850,251.3080,48.4010,106.0920,0.79156148 1511,448.2890,243.1660,26.0310,49.6360,0.42333260 1511,468.3220,249.8060,26.4880,46.5950,0.15489915 1511,525.8450,246.7930,34.8530,85.2220,0.02397685 1511,580.4850,236.0350,53.8000,128.9260,0.01256489 1511,546.9300,249.8710,30.8430,66.6060,0.01058337 1511,436.7390,238.7570,51.7970,76.3110,0.01045558 1511,439.0740,242.4920,84.9670,108.4350,0.01033306 1511,577.4330,247.0280,24.4440,42.6430,0.01030618 1512,422.2370,238.3470,45.3580,107.4610,0.78680974 1512,172.3520,247.9970,64.0920,154.7840,0.74116808 1512,307.4700,231.9580,28.2890,56.7050,0.69161791 1512,330.3170,237.5710,27.6610,47.6040,0.31460133 1512,393.6700,238.4130,24.4420,35.2390,0.11678250 1512,212.0190,320.6920,31.6370,65.2460,0.04925989 1512,536.8160,225.9530,23.3780,40.6330,0.01027719 1513,236.2940,228.9130,28.4220,59.9090,0.81410503 1513,350.5740,232.0430,45.3980,109.9590,0.79994136 1513,207.4480,221.0770,30.7150,63.7840,0.75054461 1513,314.6640,227.3660,25.7150,36.1060,0.20313732 1513,220.4810,223.0520,30.6230,63.1020,0.18150888 1513,358.1670,234.4330,31.6640,61.7750,0.02238315 1513,381.3710,223.3870,22.9630,46.5130,0.01787551 1513,367.5610,229.2490,35.6490,87.6440,0.01636623 1514,369.5110,219.3350,48.5110,122.8090,0.82775050 1514,196.6120,208.9860,31.5530,70.0220,0.79745048 1514,226.9250,216.2890,31.8980,68.5000,0.78979570 1514,331.7750,216.6200,26.1570,37.6770,0.06888642 1514,215.3450,214.1430,30.4380,63.7740,0.03901383 1514,232.5650,244.9350,22.6560,39.0090,0.02147216 1514,377.0220,259.4580,29.4880,77.6940,0.01551982 1515,234.9540,205.3150,34.5440,79.9540,0.85691112 1515,442.0570,218.8020,54.9410,138.3910,0.82786268 1515,264.1310,210.3260,34.0220,83.5540,0.51427907 1515,402.5660,214.9930,23.8040,34.2940,0.03678757 1516,232.3700,210.1300,37.9290,98.3830,0.85457158 1516,511.4440,233.4910,61.3740,161.4970,0.77311391 1516,262.8470,222.9150,39.0570,97.7250,0.71356744 1516,270.1210,256.0190,25.6780,58.1880,0.13796771 1516,435.5680,222.9930,21.5460,34.6790,0.10827974 1516,466.7500,221.0590,20.2270,34.0900,0.07158668 1516,510.6480,253.5440,39.1970,110.5960,0.06373161 1516,530.8830,263.4080,38.2440,108.8560,0.02163466 1516,444.9990,221.5410,23.0270,40.1600,0.01972888 1516,455.6210,217.5990,36.7070,46.3730,0.01351216 1516,586.5820,217.0920,23.2940,47.3150,0.01298865 1517,162.2340,211.2890,54.0420,139.5650,0.73712522 1517,566.7380,245.8840,68.2280,195.2490,0.70071644 1517,200.9980,219.2950,50.8360,134.7340,0.56405604 1517,437.4230,227.8950,22.6210,35.4820,0.10691290 1517,564.7810,280.5880,38.2310,120.7980,0.07105592 1517,183.9340,227.0920,34.0350,91.9320,0.06327479 1517,497.9200,215.4740,21.6980,42.4840,0.03645086 1517,449.8090,226.1580,21.6050,37.7150,0.02827548 1517,172.2740,263.5960,37.2070,86.2010,0.02730506 1517,539.7900,212.4840,26.7980,56.5060,0.01832045 1517,238.1910,249.4160,35.4990,62.9530,0.01584673 1517,573.7350,341.2660,31.8160,83.4570,0.01548583 1517,578.3920,289.3570,42.2200,122.9990,0.01468493 1517,589.7400,350.9880,30.9640,80.0760,0.01332518 1517,598.8190,206.6050,27.8330,61.4230,0.01138012 1517,207.5890,229.5540,33.8790,68.3060,0.01086952 1518,34.4884,207.4550,83.2166,213.5060,0.69164503 1518,82.3971,227.1350,65.9319,180.6790,0.45301631 1518,453.1800,217.9050,19.7600,36.3260,0.06996121 1518,537.5080,191.7280,30.8980,72.5490,0.02978581 1518,446.5880,222.9060,19.0650,33.8550,0.02947812 1518,100.3896,229.7680,27.7864,49.4520,0.02874831 1518,488.8030,214.1080,20.3170,37.6150,0.01957960 1518,52.9137,287.0090,41.6036,104.2330,0.01720779 1519,445.0250,218.7600,21.3380,42.5810,0.12639977 1519,461.5760,225.6200,20.1150,36.0970,0.10185778 1519,537.2480,182.6220,34.5180,87.6910,0.04796511 1519,452.3640,217.2770,38.2180,51.7100,0.01891946 1519,480.6490,215.8910,21.4910,43.0330,0.01405789 1520,453.3600,231.6760,18.5220,34.4570,0.07913882 1520,468.2720,230.9950,19.5020,34.2640,0.07528162 1520,539.6380,176.6970,35.3100,100.6430,0.01685671 1520,453.4620,226.2960,36.9170,48.0820,0.01459615 1520,125.6440,295.6180,25.6880,41.7980,0.01415863 1521,525.9700,212.2260,26.1790,56.6830,0.12043087 1521,461.0740,233.6240,19.2930,36.1390,0.09449079 1521,474.1550,231.0180,19.7930,39.4330,0.06662457 1521,1.9837,353.5930,33.6485,77.2390,0.03099265 1521,559.9710,189.4990,32.1640,81.9320,0.01443604 1521,454.2230,222.2120,40.1730,53.2420,0.01281287 1521,562.5660,231.4830,24.7610,48.1120,0.01276069 1522,486.6300,217.0860,21.2400,42.1910,0.22227038 1522,501.7020,218.5030,20.9730,40.9120,0.10159825 1522,484.6860,211.8680,41.7270,55.0950,0.01361962 1523,526.0580,214.7310,22.8150,48.0760,0.23180538 1523,540.2240,213.6420,22.5150,50.5340,0.15921888 1524,560.4660,228.0240,26.4610,56.8190,0.45766777 1524,549.9780,226.9820,24.1300,59.2780,0.09264854 1525,536.3670,239.7210,23.8680,43.8990,0.12274092 1532,178.8580,200.1420,39.1970,84.6520,0.09454655 1536,606.8000,228.0120,24.7680,53.7530,0.24693666 1537,302.2830,198.0050,27.9070,53.1270,0.05678581 1537,520.8020,216.5980,26.0720,46.5630,0.01547828 1538,341.4420,191.5600,24.5610,44.5210,0.01101622 1540,391.9860,216.4620,22.0430,35.1200,0.01702851 1541,511.7520,175.0360,35.6130,98.6050,0.10110584 1541,478.2360,223.0070,23.1370,44.1990,0.03906651 1541,395.1140,184.8680,35.9340,84.6060,0.02198634 1542,406.8690,212.7140,19.9370,33.0220,0.04337980 1542,425.4060,209.7340,27.4810,40.5240,0.02466881 1542,528.8630,198.1700,33.2510,73.8530,0.02175142 1543,455.5400,209.5460,22.3650,36.3960,0.07135070 1543,405.4860,215.5560,22.1900,38.7510,0.02597495 1543,381.2330,210.0820,25.2490,50.8120,0.01394909 1544,403.4380,211.7930,26.1240,51.1690,0.31309357 1544,322.4060,208.7150,26.3970,45.5850,0.07939869 1544,483.3870,213.9080,22.9450,38.9000,0.02033863 1545,412.0400,212.1690,25.6450,49.7130,0.57540762 1545,547.2120,211.5620,20.5900,36.9710,0.13150361 1545,261.4100,212.7990,24.7610,43.6090,0.10486419 1545,530.7600,212.6420,19.4930,34.1440,0.06995703 1545,532.8250,206.4750,40.7240,50.1450,0.01001764 1546,422.1340,210.9520,29.5390,60.3510,0.69314027 1546,578.1410,211.6390,23.5010,45.7420,0.15155748 1546,597.1100,212.3320,22.7710,42.3950,0.12666303 1546,156.6790,208.2110,32.5180,65.2470,0.06396478 1547,467.7320,211.9390,40.2420,89.9160,0.84301710 1548,596.0010,215.2140,43.9490,121.9680,0.67916352 1553,490.0640,218.8930,38.5530,91.8140,0.81120878 1553,524.2490,216.6740,41.7030,92.7780,0.69924569 1553,252.5950,225.4700,21.5290,35.5380,0.09766232 1553,506.2890,220.7400,34.7720,78.8820,0.01536404 1554,498.6210,232.5930,47.3430,110.3810,0.83488083 1554,536.0490,230.9880,48.7480,113.0150,0.76608944 1554,213.3230,232.4500,21.0590,32.0240,0.05202176 1554,277.1750,226.3190,21.4180,30.4790,0.03944640 1554,37.1395,54.0594,35.9699,77.9456,0.02566529 1555,597.8980,241.6210,42.1020,150.9250,0.50329876 1555,262.1030,216.8320,20.2960,30.0020,0.02700949 1555,207.9540,224.4670,21.2450,33.1140,0.01773342 1556,197.1910,220.8120,21.6900,33.9270,0.07928308 1556,569.5790,240.0820,21.9660,32.4350,0.01645087 1556,603.4040,158.0790,23.2000,38.9270,0.01408507 1557,211.0610,212.7660,26.2660,39.0540,0.07702027 1557,325.9730,220.6540,22.7590,32.1560,0.01864620 1557,582.6420,223.6130,55.3520,127.0500,0.01698391 1558,413.4430,224.7880,22.0300,36.7850,0.21661051 1558,186.5040,213.1970,21.5360,36.0840,0.09471577 1558,483.1160,115.6480,27.9040,50.2750,0.01071300 1558,180.6240,205.9640,35.7620,55.0360,0.01069526 1559,411.9510,211.3770,22.1820,47.6190,0.33860072 1559,155.4070,211.9930,20.4050,34.8510,0.04525004 1559,138.6580,207.1070,24.0210,44.8530,0.03544167 1560,446.3750,208.6920,28.1050,63.2410,0.52569777 1560,111.7340,193.8420,29.7180,60.9870,0.10728436 1561,484.8060,206.0890,42.0170,100.5590,0.70703965 1561,74.1883,209.5390,28.7437,54.8520,0.07603696 1561,405.6860,204.3460,24.5070,46.3730,0.01456274 1562,546.6960,185.4660,48.5600,118.4380,0.70697266 1562,446.8030,179.1070,24.7190,50.2140,0.08302269 1562,33.1794,186.2520,32.7988,64.2970,0.05446161 1562,596.9290,207.1150,35.3100,93.7780,0.03273328 1562,569.1670,187.6640,43.7270,112.9220,0.01373981 1563,505.0490,213.3360,28.2630,60.2980,0.14933091 1563,537.3890,180.5310,21.0850,32.7840,0.06377520 1563,1.0000,213.6750,25.2207,79.5740,0.04337419 1563,231.6650,180.7570,23.6120,46.7880,0.01715687 1564,576.0230,195.2910,34.1960,80.8770,0.15225691 1564,229.8750,167.7680,25.4060,52.7760,0.02283355 1565,200.1290,157.1190,27.5040,57.0840,0.05855444 1565,595.7570,160.9360,23.3060,32.2660,0.02474600 1565,103.3160,171.1270,26.3490,50.0690,0.01797406 1566,602.1860,177.7450,23.3120,34.5060,0.03481519 1566,138.9860,165.5180,31.6170,70.4150,0.02863041 1567,87.0971,153.3590,37.7999,91.8360,0.04491208 1567,186.0680,101.1730,37.6760,86.4460,0.01205421 1568,52.3056,132.9170,44.7731,107.9830,0.02187232 1568,216.1260,173.4690,27.4430,59.9700,0.02070711 1568,38.3343,135.8960,32.2863,64.0580,0.01493423 1568,66.1983,129.8370,34.4347,71.4100,0.01374369 1569,174.5110,150.4540,35.1080,77.4500,0.08286978 1569,160.3140,215.9780,34.5380,73.2950,0.01525851 1570,395.3560,129.4290,62.8600,167.5860,0.03287855 1571,107.7580,212.2680,26.3610,43.6700,0.20785877 1571,203.1110,189.6980,35.2480,75.5110,0.09243116 1571,118.7140,213.7520,24.3680,41.3000,0.01605670 1572,280.2490,207.8330,24.0970,43.1900,0.36807379 1572,388.9520,203.7420,27.1910,55.6550,0.21640557 1572,255.2410,208.6530,23.1760,34.4350,0.03029520 1572,297.4030,209.0220,19.6120,34.9550,0.01800623 1573,359.0680,207.7510,25.5080,50.4190,0.47635469 1573,489.2360,213.2320,25.3550,56.0270,0.42039955 1573,326.2760,210.9260,23.8790,37.1110,0.07716329 1573,484.0380,230.9370,35.0230,82.1030,0.01580360 1573,557.8050,97.7673,38.2720,100.1777,0.01375937 1574,403.2140,215.9670,26.6140,55.7190,0.58326107 1574,566.9000,213.1480,30.8450,70.6400,0.55089647 1574,362.3380,214.1430,20.5120,35.8380,0.12807132 1574,546.9140,233.1840,22.4140,38.7440,0.08252259 1574,550.9180,221.7590,27.6570,55.9130,0.04580478 1574,395.5280,216.3900,22.1050,42.6420,0.01523959 1574,354.6940,209.0330,40.0520,47.3920,0.01216191 1574,84.3500,201.0780,75.1480,46.5440,0.01036407 1575,448.2250,211.7820,31.7820,70.0540,0.71716368 1575,413.0460,207.2170,22.6990,40.0640,0.26268491 1575,387.4170,211.2490,20.1640,36.7400,0.13612626 1575,368.3740,208.7320,20.4870,38.8300,0.08991285 1575,23.0511,198.5270,30.5376,57.6440,0.05587614 1575,375.8960,207.1800,44.3700,47.3440,0.03514021 1575,355.9440,206.5340,19.8110,37.8450,0.01879129 1575,341.4850,200.7160,108.6260,58.9400,0.01637332 1576,529.4060,208.5720,44.3860,103.9350,0.83942962 1576,441.0510,207.0970,24.0500,45.1060,0.20973773 1576,409.5480,207.3810,20.7500,43.8780,0.19451594 1576,356.2590,198.9820,20.9770,38.3200,0.15266514 1576,395.9990,206.4000,21.1540,44.4450,0.11490090 1576,79.9144,202.9200,21.5346,38.7510,0.08977263 1576,104.4800,197.9150,21.6190,38.4500,0.02874816 1576,340.8430,199.1260,132.0550,58.1460,0.02830447 1576,26.6657,200.3200,25.9733,47.3520,0.01635302 1576,399.4810,205.2330,45.9650,52.9210,0.01202948 1576,113.8420,196.7400,67.4880,51.1800,0.01186244 1577,436.6130,205.3380,24.6330,53.1460,0.42001867 1577,415.3600,199.5740,24.4120,52.1220,0.28480390 1577,466.7180,205.0660,21.9770,45.3130,0.16335908 1577,424.0360,200.2700,26.2630,56.4760,0.12189533 1577,477.2260,207.8350,21.5300,44.5950,0.06641721 1577,75.7186,208.3500,23.9271,40.7380,0.05725658 1577,124.9060,201.6730,24.3540,38.0290,0.05248999 1577,366.2730,198.9720,20.0790,35.2350,0.03497996 1577,138.2950,201.9600,23.0960,32.7460,0.01398643 1577,202.2080,204.0590,20.8380,30.5120,0.01045814 1578,520.4820,197.2640,27.5970,56.6310,0.52363479 1578,478.5660,199.9710,28.4820,62.8530,0.25491953 1578,499.6710,196.9100,22.9110,54.3170,0.04717251 1578,44.0395,171.7700,31.1126,69.6980,0.04642277 1578,106.7930,192.3670,24.2960,38.6370,0.04504257 1578,388.1600,199.7210,18.9670,35.0560,0.02985353 1578,129.5160,189.1330,22.4420,39.0750,0.01431459 1578,203.7680,198.9360,20.6490,28.9760,0.01029132 1579,549.9170,203.7730,29.2250,71.0380,0.64698219 1579,511.6110,202.1060,29.4320,77.3220,0.30583248 1579,535.9650,204.0650,28.1820,70.2070,0.29027557 1579,583.0240,211.3750,24.0690,55.3330,0.22067066 1579,10.8208,194.2490,30.7226,59.4000,0.13776723 1579,419.7070,196.8780,23.7290,53.9190,0.12214810 1579,96.2686,190.9680,25.3394,43.5400,0.11049926 1579,118.3320,193.6930,22.6210,39.6280,0.05983808 1579,568.4800,205.6140,27.2630,64.5280,0.03933764 1579,208.3170,200.9630,21.1020,29.7820,0.03408679 1579,374.9420,200.3040,24.9930,38.5090,0.02735525 1579,523.1320,207.5160,31.6860,71.5340,0.02134491 1579,370.2540,194.7580,35.2670,68.3750,0.01031651 1579,1.6156,184.3390,69.3869,90.0730,0.01015690 1580,573.3430,197.0110,44.3180,108.0550,0.74587613 1580,411.5160,199.1560,30.0400,68.4550,0.45732775 1580,58.3061,189.2570,28.9053,51.9390,0.14205524 1580,376.1630,199.3870,21.0000,34.0050,0.09591158 1580,143.3310,176.6760,25.7740,49.8060,0.04636095 1580,86.0413,189.8320,29.7237,48.4010,0.04465269 1580,194.0240,200.2920,20.5360,31.9760,0.03855317 1580,569.6150,191.9950,31.5360,78.5290,0.03413571 1581,435.5880,204.2870,25.8970,59.8300,0.65734196 1581,452.8240,199.7220,29.3820,69.8700,0.61549419 1581,28.6228,197.6580,29.8791,53.1970,0.06780598 1581,183.9690,208.4290,20.5230,33.1850,0.03929472 1581,56.7463,201.3470,22.6862,39.3350,0.03615770 1581,376.7390,204.3750,23.9900,37.7780,0.01384245 1582,448.6500,179.4960,35.1220,76.9210,0.68263113 1582,472.4590,173.9140,36.0700,83.3590,0.56948888 1582,164.2060,180.4940,23.5540,37.1980,0.07352258 1582,92.5861,137.2500,35.9389,79.6070,0.02665931 1582,1.0000,170.8210,25.8665,59.0550,0.01928553 1582,22.4432,176.0800,27.5911,49.4240,0.01175892 1583,505.3210,199.0880,42.3820,94.2260,0.76032197 1583,469.2080,198.0710,43.0810,95.3970,0.73387933 1583,148.5840,211.7150,24.4510,36.9980,0.14537160 1583,81.7916,205.6800,25.5994,39.5540,0.07007652 1583,372.6940,191.0330,27.4790,50.8450,0.02864190 1583,521.9440,195.6170,30.8260,76.9440,0.01584475 1583,492.6940,197.0650,36.7890,93.0620,0.01292372 1584,571.9280,206.4410,49.2170,113.2130,0.83356601 1584,525.1940,207.8210,48.1750,114.5870,0.75157082 1584,605.7510,200.9990,34.1510,93.9150,0.23602173 1584,148.5450,218.4800,24.5900,37.1050,0.09227163 1584,388.5580,197.8800,26.4070,51.3470,0.07907219 1584,49.5325,207.0820,26.7430,48.4430,0.07344521 1584,66.8968,213.4840,22.7192,37.9370,0.02733462 1584,581.7150,210.3870,30.9140,69.9550,0.01608389 1585,141.4190,218.2050,27.4120,41.7990,0.13965747 1585,408.5780,221.5830,23.3000,34.7100,0.09453890 1585,20.4281,208.5500,26.0372,50.8820,0.05305044 1585,37.9682,209.5910,24.9473,42.2640,0.04514010 1585,589.2340,217.4940,29.1400,62.9070,0.04135432 1585,75.1603,205.7380,25.1188,37.6790,0.01738133 1585,404.8460,212.1620,35.7220,55.7830,0.01236024 1586,415.5810,211.7080,23.2650,51.7890,0.31888020 1586,115.2560,225.1870,24.8710,44.2690,0.25055131 1587,416.6990,212.2270,28.0610,54.9900,0.29691330 1587,59.7204,219.1280,27.5557,51.6410,0.28606278 1588,428.6160,212.8780,29.3110,60.6120,0.17621326 1588,174.6720,202.4300,23.4820,39.8950,0.05100782 1588,1.0000,214.1710,21.5435,59.9660,0.02932842 1588,477.9130,214.3690,34.5800,74.8860,0.01734417 1588,471.0680,149.5980,39.3770,110.2410,0.01287343 1589,162.2230,195.2610,23.8980,41.8160,0.03858674 1590,472.0750,203.8710,26.5260,56.8400,0.54682231 1590,122.9980,197.4830,22.1480,43.5120,0.01465946 1590,148.0170,195.8790,24.7070,41.5100,0.01403828 1591,511.9610,204.8550,31.0640,72.8720,0.38330802 1591,504.5820,185.6100,60.5750,111.3990,0.01162677 1592,605.5350,197.8170,34.4650,104.8120,0.16839685 1592,115.3570,200.0270,21.3510,35.8580,0.07135754 1592,85.5519,194.6440,26.4691,43.0670,0.04950981 1592,136.1660,184.4000,24.0660,37.7920,0.03979228 1592,353.7480,185.6540,21.3760,33.4220,0.03104638 1593,86.0869,196.9030,24.1731,42.7740,0.19847855 1593,121.6170,178.7640,24.1470,42.7220,0.11157537 1593,62.2675,196.6290,25.0319,38.5690,0.08520516 1593,365.1950,186.1220,19.8710,30.9410,0.08370245 1593,68.3720,193.5450,32.0471,48.9530,0.01067557 1594,46.2983,191.9990,25.3489,49.1730,0.13588120 1594,27.7080,191.8900,24.1730,43.7920,0.09578130 1594,374.1180,181.6090,20.0240,33.4870,0.08509512 1594,574.8340,186.1990,22.1330,37.0280,0.02923702 1594,103.7200,177.3730,25.8620,45.8320,0.01106283 1595,83.0349,194.8480,34.5931,79.3280,0.25506443 1595,16.6682,239.9250,24.2268,50.0150,0.17254901 1595,386.1960,225.6900,19.1530,34.9970,0.10260066 1595,594.9920,228.1830,26.8360,59.6120,0.04820373 1595,609.4910,216.7080,30.2840,121.0250,0.02239734 1595,6.5285,241.6620,23.3093,48.4620,0.01382897 1595,1.6453,230.3770,44.4454,76.3830,0.01062509 1596,391.8820,190.1450,21.3820,41.6450,0.24062835 1596,60.8122,156.2830,36.6608,85.9530,0.17236036 1596,606.5060,196.3400,28.3980,61.6710,0.01567629 1596,381.1170,191.1360,21.7340,39.5520,0.01117349 1596,65.4968,194.6630,27.4105,47.9940,0.01091231 1597,398.1900,197.6240,21.9260,42.0610,0.23251168 1597,36.4883,183.1110,29.7891,58.3200,0.09430710 1597,373.4440,198.0050,19.0090,30.9270,0.03992712 1597,391.1360,195.9110,20.1300,39.4610,0.01181656 1598,418.4950,204.0260,24.4740,50.0740,0.29116777 1598,384.0960,201.4300,19.7750,36.2280,0.05315680 1598,3.4360,197.9220,32.8525,57.0990,0.04074982 1598,204.1280,215.7970,21.1220,41.2760,0.01923343 1599,459.0130,209.1320,28.0640,63.0670,0.53939807 1599,377.5270,211.3930,20.9920,41.7450,0.02466590 1599,402.3780,220.1920,20.3900,34.4970,0.01712457 1600,537.0030,209.3550,35.0220,86.3810,0.69783139 1600,433.2030,213.3180,21.1040,39.6110,0.04915738 1600,157.2870,217.9090,19.6560,28.5830,0.02609084 1600,412.7730,205.3820,19.9750,41.1700,0.02111159 1600,125.5570,219.0230,20.4350,31.2910,0.02072007 1600,145.5590,217.0420,20.2980,31.2790,0.02046727 1600,384.7990,207.6930,21.2440,39.0700,0.01934416 1600,36.8527,198.9090,31.5267,59.1750,0.01171369 1601,469.9550,208.3730,22.7000,46.3510,0.14446419 1601,415.7680,183.9230,29.8040,72.9760,0.11704402 1602,381.7570,177.7340,30.8230,75.4350,0.12466893 1602,452.5560,215.1970,20.8730,38.9200,0.09344864 1602,75.1468,212.7850,24.9873,41.3120,0.07263246 1602,102.0880,216.1770,21.0380,34.6750,0.06306885 1602,540.3460,208.0030,29.1100,67.6660,0.04481620 1602,444.6760,210.0890,34.0910,56.7360,0.01553134 1603,508.3030,213.9730,25.3840,55.8500,0.53585917 1603,31.7612,215.6690,34.9042,72.9410,0.01983375 1603,379.4880,215.2050,20.0920,34.3520,0.01955037 1604,24.7790,203.0750,24.1595,46.7970,0.08768004 1604,484.9480,160.3540,37.6800,97.4780,0.06814186 1604,42.8228,206.2870,25.9193,47.6600,0.03568256 1604,42.9220,207.4850,79.4560,42.3500,0.03274745 1604,405.5980,174.1500,35.1230,80.8940,0.02471757 1604,64.1770,214.5660,22.9388,34.9050,0.01931502 1604,392.8370,204.3710,23.2230,44.3010,0.01575299 1604,33.1688,197.6980,25.9920,56.7680,0.01200765 1605,413.0120,213.2040,21.1660,36.1480,0.12408403 1605,376.4330,208.4050,19.7190,34.2800,0.04882630 1605,1.0000,210.1700,51.0243,45.7300,0.03841815 1605,317.2580,214.1610,21.7220,34.3810,0.02209675 1605,442.3880,197.7690,28.0560,61.3100,0.01186000 1606,437.4250,210.0780,20.2850,38.8490,0.15530767 1606,385.6520,213.5710,21.7450,36.5570,0.02626847 1606,317.3820,214.6610,21.4180,33.1350,0.01950860 1606,180.1830,213.9580,21.2890,31.6980,0.01729202 1607,467.1690,208.9770,23.3260,46.3820,0.19322757 1607,143.9940,209.2050,21.8770,37.9850,0.05446191 1607,315.9740,210.3880,21.5980,38.4070,0.03675589 1607,394.6400,214.3100,20.9650,33.9530,0.02597106 1607,483.7940,179.3520,32.5980,83.6770,0.01934788 1608,520.0520,207.7680,24.4190,52.2730,0.45192391 1608,319.9490,209.8360,21.4590,40.1540,0.11448359 1608,405.6400,212.0270,20.4470,38.7250,0.09650099 1608,122.1570,211.9130,20.0800,29.9640,0.07540893 1608,424.6210,202.6290,33.3000,51.1670,0.02100665 1609,613.3570,209.4320,26.6430,82.2840,0.50574917 1609,323.7240,215.6860,23.3030,42.9130,0.31037593 1609,75.9922,212.9240,23.0846,41.7900,0.11686511 1609,111.0970,211.7830,20.7210,35.7760,0.09579016 1609,425.7190,209.4210,21.2480,43.1900,0.09127954 1609,131.1500,212.5550,20.6220,34.4020,0.07669746 1609,178.2810,215.0310,19.8810,32.8260,0.02180068 1609,466.4510,206.7060,21.8600,38.5070,0.01282330 1610,339.8360,207.8960,23.8190,44.8870,0.20427653 1610,1.1340,192.5920,25.1409,60.9340,0.02484514 1610,501.7240,193.7580,21.3600,38.4310,0.02130282 1610,87.2708,183.6250,27.6962,49.1520,0.02045732 1610,155.9310,198.6520,21.8550,37.8040,0.01068888 1610,442.0370,153.4080,34.9550,85.3450,0.01037540 1611,346.4000,201.0120,29.0130,63.7560,0.67679507 1611,483.8520,208.1450,23.1850,46.4140,0.41450635 1611,123.0110,202.1910,24.4310,44.8980,0.29116327 1611,556.5940,191.6280,21.4480,36.9160,0.02789806 1611,35.6385,203.6550,26.3738,43.5220,0.02506592 1611,50.4048,204.3220,25.1341,40.5560,0.01649332 1611,25.2311,200.2060,51.0849,54.8410,0.01248228 1612,360.2740,205.7560,30.0380,66.9210,0.81162304 1612,518.2430,203.6170,24.0140,52.9210,0.63090354 1612,26.0141,204.3530,24.0986,40.5440,0.06542480 1612,93.1679,203.6260,24.1941,39.0340,0.05010344 1612,353.9540,197.7880,27.2160,57.9740,0.02229780 1612,158.4250,186.3880,23.8090,43.8350,0.01624841 1612,85.1444,199.1120,39.4816,61.7770,0.01033180 1613,373.0660,210.2480,36.1630,80.6170,0.88494837 1613,551.1230,204.9990,28.3320,65.4880,0.77243578 1613,46.3451,191.4990,34.5381,69.8260,0.34438598 1613,1.0000,195.4650,21.9930,57.6770,0.14359874 1613,93.2672,235.6260,32.2128,53.9710,0.02548187 1613,370.4330,200.5240,27.2570,65.8370,0.01535305 1614,418.3130,211.9170,39.7540,95.8960,0.83356464 1614,614.4510,204.5190,25.5490,74.6590,0.53146017 1614,19.4265,205.2690,35.3407,66.9640,0.43737498 1614,373.0050,194.1820,20.5210,35.7450,0.01805903 1614,345.0240,198.8540,21.7120,33.7520,0.01198819 1615,496.2440,219.1470,57.0710,148.6520,0.87303841 1615,411.1150,209.2390,21.2740,34.6860,0.02054198 1615,499.3550,229.4510,36.7840,92.2130,0.01860322 1615,360.4270,205.7080,21.9750,37.5050,0.01034944 1616,79.3741,190.3460,33.1359,68.2050,0.20319076 1616,420.3560,205.3490,20.4170,36.6740,0.02997654 1616,160.4050,186.5040,26.0300,49.4370,0.02420536 1616,357.3400,201.9980,20.9080,31.9120,0.01056561 1617,397.6250,209.2300,20.4870,37.0010,0.10291059 1617,415.3930,208.8430,21.2070,38.6890,0.06318808 1617,88.6929,178.5060,32.0101,63.6910,0.02230138 1617,340.0320,208.1660,20.1830,30.9150,0.01693393 1617,175.8780,198.0550,27.0140,40.5040,0.01625003 1617,401.8330,202.1910,41.1840,52.7110,0.01511260 1617,41.7044,179.0830,29.5482,57.1550,0.01088102 1618,166.0330,205.7600,25.7030,44.9460,0.20625116 1618,413.5530,208.1720,21.2400,39.9320,0.11853844 1618,427.5460,210.0280,19.5770,36.8730,0.09309508 1618,339.9880,206.3740,19.9260,32.0190,0.04927037 1618,421.4330,203.9790,33.1360,51.4890,0.01450010 1618,332.0850,202.4380,21.2800,33.7460,0.01408963 1618,319.8950,200.8740,164.1170,52.2010,0.01130532 1619,475.7880,199.2270,23.8970,53.2220,0.19587429 1619,456.2090,199.3980,23.0830,50.6900,0.11074888 1619,397.5980,195.7600,22.1660,36.3780,0.07634287 1619,27.9814,198.6370,42.5268,88.4320,0.07525028 1619,351.4220,198.4150,21.3330,38.7650,0.04088327 1619,333.6480,199.2190,20.0380,34.8010,0.03255659 1619,140.1130,186.5860,22.6850,40.2100,0.02419399 1619,447.8400,202.4830,21.8910,46.5740,0.02196350 1619,447.2850,196.5010,44.5570,62.1800,0.01690012 1619,318.4780,179.6780,198.4110,59.3380,0.01389402 1619,370.8200,198.9640,19.0860,34.1540,0.01036287 1620,562.1300,203.1100,28.7310,65.1670,0.75853115 1620,536.4790,203.4480,27.0840,62.9760,0.69262409 1620,486.0580,214.0830,23.1540,48.1410,0.47208405 1620,424.1690,203.8190,21.4200,36.9710,0.12519355 1620,369.9320,204.4160,21.1940,36.5680,0.10015352 1620,394.4770,202.7780,19.5980,36.5980,0.05983358 1620,348.5450,203.7250,21.4650,34.4270,0.04321964 1620,320.7850,198.6240,150.3060,52.9960,0.02319828 1620,136.9320,192.7210,34.2590,54.7200,0.01638836 1620,359.2060,199.4080,40.7630,46.1170,0.01120581 1620,481.0960,224.9360,31.3920,58.9120,0.01018792 1621,534.1290,218.8910,27.5970,60.6590,0.70727301 1621,443.6660,205.9820,22.8190,40.9940,0.20239235 1621,412.9520,206.4940,21.1870,37.6650,0.14096558 1621,385.0070,207.9580,21.1350,39.9020,0.13622265 1621,124.2890,200.1100,26.7970,44.0300,0.05527104 1621,5.7963,200.8800,25.8979,47.3800,0.03808021 1621,352.8410,205.6850,22.7800,40.6380,0.02725204 1621,481.0140,83.0669,29.7250,64.9221,0.01941695 1621,104.0590,198.5870,21.7690,39.1880,0.01588188 1621,98.5457,198.0030,46.8693,52.2130,0.01107907 1622,609.6330,224.6550,29.5080,77.3350,0.79236633 1622,443.8300,205.2140,21.4850,43.9550,0.26384690 1622,99.9822,185.1340,27.9418,61.8510,0.21727878 1622,403.4700,208.4470,20.2930,37.1330,0.17170134 1622,468.4410,210.2830,22.4280,38.9720,0.16238011 1622,76.0831,204.2020,22.1563,39.5160,0.04424390 1622,123.6110,181.9070,26.5600,55.4890,0.03751700 1622,359.0940,204.7040,23.9050,42.6280,0.02707631 1622,64.4629,198.1180,25.1575,48.2380,0.01968722 1622,69.6735,196.5720,40.2125,55.4690,0.01898999 1622,92.3138,196.4830,23.8792,47.5780,0.01199887 1622,455.5170,202.5800,39.8410,53.6320,0.01171345 1622,520.7360,49.5368,36.1290,78.2292,0.01103300 1622,71.2776,192.0810,75.2694,68.2990,0.01013430 1623,509.1120,205.5300,22.9510,48.3850,0.30313078 1623,436.4270,208.0290,29.8370,70.3170,0.25282386 1623,91.8180,208.6360,24.7230,42.2040,0.20897920 1623,521.9780,209.8650,21.0340,43.2950,0.13152009 1623,53.8634,208.2460,22.3948,40.9590,0.10972847 1623,34.5745,208.3020,22.4359,42.4720,0.06040382 1623,35.4239,199.7210,85.7551,56.9470,0.01770703 1623,447.3970,206.6750,23.1610,49.1510,0.01363343 1624,582.0060,203.5290,23.3760,50.9250,0.42659724 1624,600.9240,203.1200,24.8660,58.1010,0.30439889 1624,496.8280,202.5270,33.9740,81.3260,0.27601746 1624,81.4580,192.6300,30.7200,64.9600,0.25235161 1624,13.4159,177.7940,38.9511,84.9590,0.13624871 1624,412.0590,206.4710,25.7810,42.0770,0.06979292 1624,410.5210,204.2020,36.6350,72.2330,0.05158107 1624,493.3180,208.2440,23.9370,58.5840,0.03168510 1624,1.5760,192.0940,75.9943,84.8000,0.01891290 1624,90.3225,175.2110,31.2035,72.7530,0.01668360 1624,427.9340,204.0290,77.9300,57.6590,0.01038991 1625,551.5880,213.3920,36.4220,80.8010,0.58149266 1625,428.1540,214.5520,22.6950,37.1840,0.20449968 1625,47.4089,175.1690,36.9607,89.9540,0.12809767 1625,547.3080,215.8790,26.0870,58.2710,0.09466748 1625,426.6810,86.0061,32.4210,58.5659,0.02769957 1625,111.6560,198.6860,28.2760,58.1940,0.01894186 1626,15.7653,169.7460,27.2057,55.8310,0.19537319 1626,435.5950,176.2900,23.8060,38.5670,0.14862956 1626,607.8000,177.8030,32.2000,94.2770,0.14861858 1626,428.1440,39.5042,34.5850,74.4328,0.03716295 1627,452.0210,219.2340,20.6490,36.3440,0.17360921 1627,437.9570,73.5210,33.2840,70.0540,0.02468816 1627,7.0292,197.2470,35.6374,78.4120,0.02230584 1627,424.0190,213.1730,21.4740,40.8950,0.01688580 1627,442.2690,212.2870,38.3430,53.1370,0.01175568 1628,458.2690,214.6700,21.0210,40.7480,0.32327136 1628,426.8710,209.1990,20.4630,43.1160,0.02842939 1628,425.1190,50.2294,37.7440,86.2216,0.02596109 1629,480.0120,216.0000,24.9060,52.0150,0.53563178 1629,421.5310,30.5541,40.2490,93.7849,0.02051486 1629,471.5550,215.9980,22.3940,49.3240,0.01772094 1629,403.0300,191.8280,25.8930,53.3970,0.01457740 1630,573.2880,215.3830,30.7500,74.5910,0.44317427 1630,562.8670,214.3960,27.2830,68.5430,0.27282253 1630,464.5530,173.0850,23.7030,52.0730,0.02035043 1631,385.1850,213.9840,22.8480,49.6580,0.34754461 1631,399.9800,217.2370,23.2880,51.3410,0.20010467 1631,68.4732,268.9010,33.4948,71.9790,0.07661774 1631,253.0190,268.5820,23.4650,41.8770,0.01600263 1631,271.8900,270.8590,22.9710,44.0780,0.01131781 1631,317.1400,215.5260,22.3670,31.3790,0.01016957 1632,410.7780,214.1610,23.0680,53.8380,0.56945562 1632,428.5740,219.1340,24.2370,50.6170,0.39574757 1632,269.2640,262.5070,26.5150,47.1520,0.04089579 1632,289.5830,266.0760,22.2890,41.2040,0.02996777 1632,335.6100,212.7850,23.3530,34.2840,0.02724039 1632,4.3235,282.4390,40.8086,100.4440,0.02642933 1632,131.7420,259.8760,22.3330,44.3740,0.01879651 1633,415.8380,217.0610,24.0580,56.8760,0.52509665 1633,433.5300,218.5950,22.2620,53.9970,0.40928701 1633,114.8020,266.5890,23.3630,47.1240,0.02050727 1633,70.4066,275.0590,28.8981,60.0670,0.01294890 1633,330.9860,209.5170,22.0080,35.7020,0.01052080 1634,431.8240,223.9240,25.6380,61.3590,0.63154638 1634,446.6100,224.6930,25.9980,61.0190,0.37367094 1634,9.0496,224.7370,227.2774,54.7590,0.01687675 1634,433.8790,221.8130,58.7800,67.0900,0.01417199 1634,483.9390,212.2960,21.4710,31.6730,0.01247985 1634,9.4165,206.3930,158.3455,55.3310,0.01092069 1635,471.9290,216.1670,31.0450,75.7900,0.74485600 1635,484.2640,217.8190,24.3780,59.0840,0.03188384 1635,345.8410,214.9510,24.2490,37.8190,0.02340855 1635,463.7880,220.7620,25.4410,65.8390,0.01176889 1635,280.1100,240.8230,23.8740,39.4330,0.01015334 1635,203.8170,232.7050,22.5610,39.5690,0.01000606 1636,512.4510,219.6320,37.6230,91.8820,0.72245538 1636,527.9470,223.3420,29.2870,75.0260,0.03290028 1636,199.9520,239.6840,22.6140,40.9630,0.03048360 1636,1.5916,227.0020,223.5354,57.6580,0.01749920 1636,281.0220,243.4270,24.6220,39.8840,0.01115833 1636,288.2770,230.1630,24.6300,50.4370,0.01027673 1637,577.5360,220.7750,43.8630,114.4070,0.80162036 1637,191.3040,243.4030,25.1590,47.9690,0.14742155 1637,595.0150,227.3740,30.7150,85.6840,0.07537827 1637,364.2380,211.0560,21.3810,37.4710,0.04252363 1637,46.2274,219.5570,29.2601,55.3620,0.03622141 1637,579.4580,223.0000,27.3670,69.5060,0.02134736 1637,12.2366,223.9730,194.7064,60.6920,0.01655363 1638,184.0350,240.2260,24.8750,50.7550,0.09027971 1638,375.3690,203.5850,21.5030,37.8530,0.04018832 1638,227.9660,227.4090,21.7370,36.1720,0.02005832 1638,62.0851,214.9070,30.2954,57.2200,0.01580383 1638,25.4266,232.7070,28.0431,46.5100,0.01249172 1638,295.8450,242.3780,22.9600,34.7550,0.01225031 1638,17.1567,209.0080,178.4413,67.7360,0.01001467 1639,1.6581,221.4000,27.1464,63.2650,0.07813916 1639,203.1340,234.0840,22.2800,38.5470,0.05033086 1639,362.7850,206.8700,22.5070,40.8430,0.04026856 1639,438.8850,30.0881,33.1330,98.0649,0.03874036 1639,114.9570,266.0030,27.6770,57.5300,0.03605996 1639,446.2580,210.6650,34.4610,93.7900,0.03584728 1639,342.8280,29.8641,28.2660,58.8308,0.02548978 1639,278.6380,254.5120,23.1190,37.2360,0.01838031 1639,86.0933,245.2110,37.1077,77.2370,0.01238925 1639,147.1270,256.7340,26.4750,51.2550,0.01147433 1640,489.3350,1.0000,36.3620,84.2633,0.08527011 1640,69.1150,280.4730,30.3400,62.5250,0.05111758 1640,357.0610,211.7090,22.6000,38.3010,0.03926155 1640,110.6910,262.9590,33.9820,73.1080,0.03552210 1640,333.8090,26.4661,28.7910,58.4970,0.02584841 1640,218.2460,266.1490,25.4150,47.7290,0.01866834 1640,186.3220,231.7010,25.4770,47.5220,0.01209352 1640,261.5650,268.4530,26.2970,43.2370,0.01150852 1640,281.3520,271.6470,23.1810,38.5070,0.01012627 1641,356.3780,212.6660,20.6760,37.7470,0.09495149 1641,80.5680,272.8540,30.9610,69.4070,0.03464971 1641,250.8310,284.3610,28.1350,51.7590,0.02579149 1641,272.1950,288.0100,22.0830,41.7060,0.01955069 1641,161.6080,248.7000,24.6070,41.1560,0.01305442 1641,332.2440,23.1258,30.6870,65.6024,0.01147478 1642,360.5610,209.4620,21.3590,40.6590,0.13060199 1642,54.9235,279.0180,35.5862,76.9480,0.07914933 1642,336.2670,13.8571,30.1440,68.7441,0.02461815 1642,269.4460,309.6650,25.9150,50.5400,0.01561479 1642,243.3360,307.7140,28.7740,49.0740,0.01386176 1642,187.7730,313.7680,26.2390,50.1580,0.01121932 1643,366.0480,206.6940,22.5540,40.1590,0.12186482 1643,41.4174,282.2700,36.7279,82.5480,0.09426643 1643,164.7170,345.8270,29.1290,47.8810,0.01534296 1643,341.3250,1.0000,28.0070,71.0231,0.01040610 1644,375.9760,208.7200,21.3250,38.7470,0.12502010 1644,36.2956,290.7480,35.8637,77.4470,0.01644655 1644,144.2890,379.2550,35.8970,61.3040,0.01584945 1644,297.4850,225.0850,30.9970,79.1880,0.01111557 1645,378.0400,205.3600,22.0650,41.1850,0.11532924 1645,300.5830,223.4500,33.7040,82.8480,0.06608754 1645,30.1111,292.0450,37.7890,87.3660,0.01711798 1645,305.6330,220.4750,22.3390,48.1240,0.01189264 1646,375.3330,208.3110,22.2200,40.0870,0.14339373 1646,302.1630,223.9900,29.1110,70.9640,0.04390376 1646,31.5860,294.3700,35.6024,78.3580,0.02771870 1646,236.2950,397.5980,28.6320,48.6310,0.01016640 1647,373.1870,210.4070,22.0720,38.6330,0.06486077 1647,30.4799,294.4580,36.9076,77.8630,0.03408412 1647,304.1340,222.4930,24.3280,49.8300,0.02115418 1647,129.9360,400.9170,44.2720,61.9940,0.01894461 1647,299.2630,223.2860,34.7460,98.6090,0.01411013 1648,372.9860,211.9710,20.5400,35.5180,0.05671564 1648,300.6420,227.2940,33.2470,85.9890,0.04382179 1648,31.4029,295.6620,36.1660,77.0490,0.04380197 1648,304.8790,222.0780,23.2930,48.4760,0.02228359 1649,370.1190,211.5300,22.1240,36.5640,0.04777429 1649,297.9640,224.2290,34.8050,91.0770,0.03915505 1649,28.6506,294.9070,37.1741,83.6120,0.02729146 1650,369.6600,210.8370,21.6190,37.5860,0.05523961 1650,33.7277,291.8280,38.7005,90.4390,0.04151549 1650,1.0000,217.2610,31.2592,60.6480,0.01316151 1651,60.8665,288.7530,33.8182,71.7680,0.03917083 1651,175.1330,359.2430,26.2180,47.1420,0.03573844 1651,368.8250,211.9350,20.8870,34.1740,0.02697323 1652,90.4928,279.5060,31.9542,68.6250,0.06151860 1652,302.1550,223.1420,27.8460,71.0450,0.03170022 1652,198.5970,241.7540,22.8430,43.7310,0.01662470 1652,293.5230,311.2410,25.4480,51.6940,0.01312924 1652,269.2420,309.4940,28.0130,44.1150,0.01006556 1653,70.6451,286.6450,29.1040,64.4070,0.04218115 1653,372.2990,215.6420,20.4690,33.2840,0.03546879 1653,200.5750,242.7640,23.8540,40.7070,0.02285498 1653,360.4130,4.9192,34.5080,77.1230,0.02215196 1653,118.4320,273.9380,27.5340,60.2600,0.02089045 1653,304.0310,291.5040,23.9840,46.0710,0.02034224 1653,280.0930,287.7040,29.3980,56.9110,0.01829149 1654,107.7280,211.2810,30.3640,64.8650,0.15569972 1654,224.1070,230.4870,23.9700,50.1530,0.09498361 1654,381.6030,218.5360,20.4280,33.4000,0.03173080 1654,93.1018,285.8800,28.3612,63.2950,0.03130622 1654,292.6490,281.7840,26.9770,48.3530,0.02513291 1654,240.6260,282.6000,24.4140,48.0800,0.02430326 1654,137.0050,272.2150,26.9790,57.4170,0.01631881 1654,371.5930,1.0000,33.7550,87.4694,0.01094052 1654,94.6820,217.0470,50.3930,83.2940,0.01072104 1654,225.2490,159.7720,31.9550,79.3500,0.01012134 1655,381.5280,217.0390,20.3240,32.8440,0.03347364 1655,219.0380,241.8350,20.8760,38.1330,0.01817356 1655,250.5470,285.2290,24.3380,45.3610,0.01716120 1655,209.1370,243.3240,22.6170,39.8950,0.01565644 1655,84.0076,288.9970,28.7454,58.1710,0.01384567 1656,107.2640,271.3170,30.6220,67.1810,0.07487231 1656,207.7920,239.4320,22.6350,39.6030,0.04136622 1656,376.6110,213.5200,19.9830,32.7630,0.02724841 1656,241.6020,288.7400,23.3800,42.8470,0.01275529 1656,311.5180,285.4750,23.2390,46.2970,0.01238030 1656,288.8000,282.9290,27.6390,48.7490,0.01026495 1657,76.7081,277.2730,34.6989,75.3490,0.07936118 1657,372.8730,213.6190,20.8190,35.8840,0.07277725 1657,190.5900,247.2930,22.6950,42.3640,0.03576849 1657,305.4030,300.2090,24.0320,43.8850,0.03000491 1657,539.2130,136.2340,24.3980,46.0940,0.01215211 1657,168.0720,255.1940,22.8220,42.6980,0.01045781 1658,368.5980,212.3020,20.5890,36.2160,0.10013903 1658,164.9480,250.3440,25.8050,50.9980,0.05918460 1658,40.6993,293.4960,35.3545,81.3070,0.05014371 1658,302.5600,309.9400,24.1770,49.5170,0.02822103 1658,133.6570,265.5620,24.5740,48.0750,0.01250037 1658,219.1420,315.6020,24.5200,43.6500,0.01001613 1659,371.5160,218.2950,20.0610,34.5840,0.10453079 1659,146.1280,261.5830,27.4330,58.4000,0.09317765 1659,106.3590,282.0900,29.2620,55.8880,0.02457053 1659,1.0000,314.2490,27.8146,93.4710,0.01771748 1659,299.7760,322.4610,23.6990,50.1000,0.01531528 1659,211.7300,327.9260,29.1440,46.3140,0.01170801 1660,369.8950,211.6800,20.3200,35.8440,0.09340001 1660,120.5910,262.0620,25.6410,58.4350,0.07903791 1660,293.9830,330.8720,25.1720,51.1830,0.02364357 1660,198.5580,335.3270,25.5830,45.3210,0.01410507 1660,361.0660,206.8440,35.0710,51.1120,0.01047749 1661,88.4271,272.9260,32.6639,72.1980,0.11901032 1661,368.1850,213.9550,21.4700,35.7660,0.06764420 1661,291.9590,339.5160,22.7860,49.3930,0.03981688 1661,188.3570,345.4240,30.4510,49.0970,0.01314207 1661,304.8040,342.4230,23.6820,52.6470,0.01190807 1662,368.3440,214.3020,20.5280,35.8600,0.11042880 1662,46.5446,281.7160,39.1908,89.9170,0.03015700 1662,181.9950,354.4970,29.1030,48.2880,0.01895908 1662,288.8240,345.2560,24.1950,52.4120,0.01267813 1663,371.3440,214.7540,20.2570,35.5040,0.06376889 1663,172.2910,366.0450,27.7940,49.7160,0.02557950 1663,254.8790,361.1520,30.9080,45.0440,0.01003686 1664,373.5760,216.9720,21.2590,36.3310,0.07261772 1664,163.1660,381.2170,29.1600,50.9730,0.04102718 1664,86.3164,286.1880,29.2476,52.3360,0.02005157 1664,254.9190,373.9680,27.9360,45.1590,0.01429523 1665,377.3030,212.0080,20.0330,36.8010,0.12192371 1665,144.2030,402.6160,35.7090,59.5850,0.02210876 1665,249.8330,397.8070,32.1240,54.4180,0.01437024 1666,373.9290,213.0430,20.6970,34.2230,0.04954322 1666,248.0990,413.2460,27.9860,47.2540,0.03092035 1666,542.8140,128.3170,22.3200,38.1540,0.01528414 1666,131.6240,416.1750,43.3560,75.1040,0.01122852 1666,480.8160,144.4040,35.0870,88.0840,0.01114793 1667,372.8000,216.0130,19.7150,33.2690,0.04260057 1667,248.2930,418.1900,26.3370,49.3370,0.04246367 1667,544.0720,128.8250,22.0100,39.2790,0.02752783 1667,480.1830,147.0950,34.1950,85.5760,0.01386189 1668,370.5230,213.8730,19.7120,33.8640,0.04769983 1668,248.2620,419.0360,27.1440,48.5490,0.03283796 1668,304.4460,229.2960,29.5770,80.7090,0.01534811 1668,543.7210,129.5740,22.0000,39.4640,0.01417632 1668,10.4625,223.1560,173.9625,68.5850,0.01280267 1668,130.7270,419.7420,36.6420,58.4690,0.01030834 1669,367.8940,213.6400,20.4440,34.2400,0.05093957 1669,248.5300,418.2790,27.1090,49.5010,0.02242113 1669,6.4907,220.9990,171.9453,70.7720,0.01113759 1669,543.0350,129.4190,22.4160,38.8140,0.01003246 1670,248.9730,418.4550,26.6160,49.8120,0.04512813 1670,300.0500,230.2830,32.5390,84.0680,0.03253245 1670,366.0490,217.0370,20.8720,31.1850,0.03085490 1670,543.6440,129.8000,22.0870,38.6260,0.01188364 1671,362.5200,212.9230,20.5710,35.1000,0.03658639 1671,248.5470,418.0930,27.0610,48.5680,0.02593482 1671,542.3090,129.6170,23.4060,41.1930,0.01154572 1671,130.3490,418.7910,36.8270,58.6500,0.01018546 1672,299.6540,229.7780,33.3430,91.1230,0.03161405 1672,247.3760,418.3990,28.4390,51.6420,0.02949636 1672,361.3100,213.1460,19.7290,32.9760,0.02569364 1672,544.3080,130.3540,21.4620,36.7320,0.02031185 1672,481.4840,147.0240,34.7240,86.3280,0.01365932 1672,131.9060,419.7710,35.2240,58.0650,0.01045459 1673,248.2520,417.9780,27.2360,51.0440,0.03013068 1673,357.6930,217.6020,21.0070,33.1440,0.01885999 1673,300.6800,231.2860,33.7140,86.6710,0.01766667 1673,130.8370,422.1420,42.0350,73.3360,0.01094740 1674,248.7010,418.6810,26.3240,50.5620,0.04056613 1674,356.6980,214.5140,19.8490,31.5880,0.02230034 1674,543.2690,128.9990,22.0820,38.6840,0.01310234 1674,479.9140,146.7070,33.8420,88.9860,0.01226599 1674,130.3180,422.0500,42.0880,71.8740,0.01049420 1675,248.1970,418.2380,27.2310,48.6720,0.03420409 1675,543.1710,130.1950,22.7020,39.9470,0.01575867 1675,305.1270,232.8410,24.4670,53.9610,0.01147218 1675,355.3240,214.7390,20.9850,32.6370,0.01033848 1676,248.3170,418.6590,26.8910,50.7040,0.03704248 1676,300.0170,230.4840,33.1650,88.7750,0.01931714 1677,248.2730,418.2040,26.6710,51.3680,0.03172558 1677,299.8100,225.8830,32.7750,91.7530,0.02120155 1677,479.9740,145.4400,34.1580,87.5860,0.01346643 1677,544.1920,130.6450,21.6110,38.0270,0.01230328 1677,129.5810,418.9390,37.9170,59.3630,0.01001175 1678,611.3160,226.7180,28.6840,129.2490,0.21121342 1678,248.1880,418.0420,27.1220,48.9360,0.02964342 1678,300.7950,228.3970,31.8730,86.3530,0.02810016 1678,482.1810,147.1520,34.3010,88.2690,0.01581108 1678,544.3510,129.3350,21.9990,38.1540,0.01535570 1679,577.4480,217.4730,50.9490,134.8010,0.66643155 1679,248.8740,418.4380,26.2280,48.0890,0.04690063 1679,573.2910,235.4870,21.3140,43.7810,0.01329712 1679,574.4580,227.2340,28.7330,80.7300,0.01151983 1679,130.0440,420.8400,37.2040,58.0690,0.01103603 1679,543.8230,129.9870,21.8160,37.2290,0.01074293 1680,596.8710,223.5030,39.9170,115.6320,0.82260352 1680,547.7890,217.9730,44.7690,116.3160,0.80198210 1680,605.9230,221.4370,28.5600,68.2660,0.04010038 1680,247.3870,419.0290,28.0190,51.4390,0.03491278 1680,564.6850,226.7360,51.2730,113.9350,0.01549605 1680,302.5120,232.9450,28.8780,72.0350,0.01229203 1680,542.8890,132.6110,22.4910,36.9650,0.01064894 1681,571.5770,222.7750,40.5690,102.9710,0.77848101 1681,527.9970,217.7030,42.1100,107.8160,0.73597759 1681,248.4230,418.0600,27.1080,49.3210,0.03656165 1681,581.6280,218.5510,28.5250,62.8760,0.01910755 1681,547.4250,219.4190,39.8540,94.4720,0.01575925 1681,303.5090,228.2030,25.8920,59.0660,0.01225582 1682,547.6480,219.5980,37.7540,94.8880,0.78525305 1682,514.0750,216.7550,37.6410,100.3170,0.69273347 1682,529.2470,224.8320,31.5210,83.1540,0.06634645 1682,248.6670,418.6880,26.5250,48.8960,0.03241456 1682,553.3870,220.2160,25.0170,58.1800,0.01995925 1682,305.0470,232.2600,24.9240,58.8760,0.01786914 1682,544.0130,129.0240,22.0200,37.4620,0.01296651 1682,129.9000,420.3730,38.0240,59.0350,0.01153028 1683,504.1280,215.2900,31.1790,89.2130,0.78816611 1683,527.0970,220.8120,31.7170,81.7840,0.78769410 1683,303.6030,231.9380,27.1020,65.4190,0.03262003 1683,248.3460,418.4610,26.6120,49.6850,0.02988390 1683,543.4670,130.3990,21.9290,37.6740,0.01263382 1683,512.0820,203.8430,68.2020,100.2930,0.01060755 1683,130.3850,419.7210,36.8750,58.0910,0.01050532 1683,530.6860,217.2330,22.1640,50.1560,0.01002220 1684,490.7980,217.1930,30.3570,78.7420,0.70961714 1684,510.3890,222.0030,27.0940,70.1550,0.44123966 1684,303.9050,232.0480,27.3000,66.7080,0.07460628 1684,248.4070,417.9380,26.7040,48.9910,0.02271183 1684,130.7830,419.1220,36.5280,58.8110,0.01081769 1685,475.4230,217.1820,29.9010,73.9230,0.67973065 1685,495.7740,222.6820,26.3240,66.3090,0.63695455 1685,248.4390,418.5930,26.4270,48.3710,0.05705724 1685,302.8580,231.3860,27.3620,68.6240,0.04230110 1685,130.4710,422.6250,42.3640,74.3830,0.01392767 1685,543.9180,129.2610,22.7380,39.0050,0.01208558 1686,463.3140,217.0990,28.1940,68.2000,0.76570112 1686,486.7090,221.7270,26.8650,65.9110,0.67125022 1686,475.4370,220.0320,28.0130,69.7240,0.24868548 1686,248.5280,418.3380,27.5740,52.0500,0.02675378 1686,304.0220,231.1830,25.4130,63.7040,0.01883641 1686,543.6890,130.0000,22.0050,39.0040,0.01191045 1687,454.8710,216.0400,28.1000,64.9930,0.78250462 1687,477.5330,220.7500,26.6370,64.5960,0.68176758 1687,303.9770,232.1050,26.1670,64.2050,0.04625019 1687,248.8480,418.1140,25.7920,47.6790,0.03250596 1687,348.2550,213.9420,21.7550,31.2420,0.01093954 1688,445.8960,213.5150,27.3400,63.0180,0.68269283 1688,466.1220,221.2360,24.5090,57.7080,0.53419805 1688,248.1710,418.3630,27.0980,51.7360,0.02723911 1688,301.9200,229.7130,29.6860,78.4090,0.01372793 1688,131.0390,419.8650,35.7580,57.0680,0.01339245 1688,458.2120,215.1400,23.2830,52.6250,0.01276344 1689,439.6780,212.0090,26.9600,62.4710,0.70143306 1689,461.4280,220.2140,23.7240,56.4590,0.51729381 1689,248.4200,417.8730,26.5860,48.3200,0.03698450 1689,304.9010,232.0740,25.0060,58.5670,0.02785808 1689,542.8270,131.2660,23.0570,38.9360,0.01987881 1689,129.7450,419.1500,38.1570,60.0860,0.01023375 1690,436.1910,214.2650,24.1840,59.1530,0.65937954 1690,455.5030,217.2080,24.5320,57.3920,0.58809268 1690,249.1220,419.3850,25.7480,47.7860,0.03688144 1690,301.7610,230.6150,29.9950,78.3510,0.03657750 1690,446.0110,210.8130,43.1250,77.2700,0.01566441 1691,427.7520,213.2130,23.2700,54.4120,0.63475865 1691,446.6050,217.2270,24.2380,55.5260,0.54943407 1691,249.0950,419.3900,25.5540,47.3150,0.03108148 1691,304.0530,229.1930,25.6550,62.6000,0.01903423 1691,543.4840,130.1370,22.6590,40.2720,0.01848448 1691,437.5480,212.6670,46.6480,70.9770,0.01819160 1691,130.4690,419.9050,37.0970,58.7900,0.01137575 1692,420.5160,214.4390,23.5900,52.1560,0.53639638 1692,442.2690,217.4400,23.1060,50.7760,0.44397053 1692,248.1010,418.3740,26.8230,49.6870,0.03082805 1692,303.2770,230.1830,26.6170,65.2960,0.02730802 1692,131.1750,421.9430,41.0050,72.9060,0.01172894 1693,418.3300,213.8550,22.2560,49.6290,0.37212163 1693,433.2060,217.5010,21.1930,47.1490,0.22640355 1693,248.8340,418.1010,26.4550,46.9960,0.03109997 1693,304.3630,231.2120,25.5570,59.7830,0.01692669 1693,479.9030,146.6740,34.1310,86.9630,0.01540536 1693,543.0580,131.0330,22.0260,35.7810,0.01375395 1693,130.5290,419.6280,36.7330,57.7230,0.01160728 1694,413.2040,212.9310,25.1560,55.0210,0.29816139 1694,425.2160,216.1850,20.5420,47.1040,0.15178867 1694,301.7590,231.2800,29.1000,75.2660,0.04283772 1694,248.8330,419.4450,26.1480,47.1390,0.03520458 1694,543.3100,130.6470,21.8080,37.7490,0.01706711 1695,407.8890,214.2610,21.9250,47.2620,0.29984349 1695,419.3150,214.0830,20.1140,45.3570,0.15804477 1695,247.7040,417.4720,27.9200,51.7640,0.03656396 1695,300.4010,229.8790,32.3000,87.2760,0.01527289 1695,129.8780,422.3600,43.0130,74.3040,0.01121197 1696,418.4820,215.6000,20.3550,46.7750,0.23793636 1696,403.0720,214.1210,20.0170,43.8960,0.20954667 1696,248.7290,418.4810,26.9000,48.7310,0.03449496 1696,303.1520,228.8140,30.3720,84.3020,0.02830461 1696,405.7540,209.9690,48.7730,60.5910,0.01749124 1697,397.9900,212.5840,21.0430,45.4560,0.24329859 1697,414.5100,216.7150,21.5060,41.8710,0.23317330 1697,301.7580,231.1530,29.0660,75.0230,0.06734030 1697,248.1570,418.2320,27.1990,49.1900,0.03113374 1698,408.5760,214.8890,21.1390,43.7110,0.15343961 1698,389.9080,213.2080,22.5310,44.6600,0.08403191 1698,248.1170,418.6950,26.9280,49.5990,0.03345321 1698,395.6220,211.9840,29.3160,54.1940,0.02348737 1698,303.5280,230.2490,26.4020,63.2040,0.02312106 1698,131.0610,421.0360,35.8630,55.8780,0.01602746 1698,542.8550,130.2270,22.5260,39.5060,0.01040486 1699,390.0040,212.0610,21.4990,45.5510,0.13621259 1699,405.8660,215.8300,22.2260,43.5440,0.12035621 1699,303.7400,228.6610,30.1340,82.0330,0.05907784 1699,248.7090,419.0440,26.2320,48.4790,0.04280418 1699,131.0210,422.0780,41.3520,74.2910,0.01233032 1700,389.5470,214.5670,20.0340,41.6220,0.11766756 1700,302.6280,229.3980,28.4030,75.5250,0.06884398 1700,403.9070,217.8390,19.8050,39.5960,0.05428683 1700,248.7370,418.9520,26.1120,46.9120,0.03514944 1700,391.1410,211.9740,38.0840,57.2440,0.01617151 1700,541.6300,130.9920,23.2350,37.2260,0.01045227 1700,130.7640,420.7630,36.4520,58.1050,0.01002323 1701,385.6000,214.2060,20.4530,40.1550,0.15199067 1701,401.9930,217.5550,19.6360,37.8790,0.09574706 1701,303.0850,228.1580,28.6870,74.5980,0.04892585 1701,248.4730,418.4480,26.4750,49.5390,0.03053404 1701,484.9030,148.0860,30.7290,68.4870,0.01553983 1701,130.7480,422.1360,41.5050,73.3740,0.01284131 1701,379.5080,210.1140,37.6480,53.2300,0.01154948 1701,543.8120,130.4100,22.3150,38.6360,0.01068148 1702,381.6870,213.7670,21.1120,40.8880,0.09374088 1702,301.2970,231.6460,30.0690,76.2940,0.04748361 1702,396.8430,219.2930,20.4820,37.3900,0.03624652 1702,248.4430,418.3870,27.1040,49.8420,0.03587240 1702,543.4890,131.9350,22.1140,35.6650,0.01461208 1702,131.0750,421.0420,36.1070,56.2570,0.01245129 1702,304.8410,229.3500,22.3940,44.2250,0.01079380 1703,392.7040,216.7910,20.4310,38.4020,0.06150039 1703,303.2070,231.3270,26.6590,65.1430,0.05559602 1703,376.0050,216.7450,20.3410,35.8460,0.05169493 1703,248.8840,418.9370,26.2910,49.1500,0.03830449 1703,542.6780,131.3640,23.0670,39.5020,0.02320455 1703,373.9880,212.4220,35.5730,49.9110,0.01242474 1703,131.5470,419.9980,35.7820,55.8620,0.01207525 1704,374.6630,216.3540,20.5400,37.4740,0.07070549 1704,389.4620,217.6710,20.3640,36.6280,0.04998261 1704,248.5330,418.1850,26.3610,50.0590,0.03898291 1704,130.9450,420.3820,36.2430,57.2130,0.01227001 1704,299.7240,230.4490,35.8740,93.8780,0.01080240 1705,378.4070,214.1510,20.0240,37.2900,0.08489135 1705,248.5140,419.7810,26.5050,48.2640,0.03352434 1705,130.6410,420.2360,36.8730,59.2240,0.01074778 1705,543.5790,130.6190,22.8890,39.5560,0.01033635 1706,378.5660,213.1940,20.7920,38.5050,0.12209192 1706,248.5810,419.0420,26.7220,48.9710,0.03955849 1706,299.6420,231.3590,31.1140,84.1250,0.01674923 1706,130.8460,419.8850,36.0910,57.4060,0.01128844 1706,543.1350,131.8180,22.3950,36.3510,0.01085846 1707,376.9280,211.9330,23.2990,41.8590,0.12542659 1707,43.6619,207.0760,29.8908,50.6530,0.02511801 1707,248.2650,419.5670,27.3980,50.1210,0.01898734 1707,543.1330,129.9230,22.3710,37.7390,0.01365134 1707,130.8970,420.2120,36.3270,57.5320,0.01046007 1708,375.8980,213.1910,22.2350,38.5850,0.08822522 1708,249.6760,409.5710,27.5580,47.2930,0.03084524 1708,138.8780,412.6590,33.7170,55.2330,0.02336615 1708,542.7070,131.1380,23.2700,37.8580,0.01810741 1709,378.6610,213.8460,22.2140,40.1810,0.07529704 1709,162.6780,380.3090,29.1770,50.0720,0.04643583 1709,255.4820,372.9710,27.0420,44.1750,0.01259645 1710,381.7450,215.9240,21.9140,38.2200,0.21278104 1710,287.0120,335.7030,24.7480,49.0170,0.02914555 1710,293.4100,224.5860,33.4040,91.6280,0.01144239 1710,260.1020,334.3310,29.2800,45.2410,0.01030285 1711,385.2450,217.3500,21.2450,40.0090,0.21972418 1711,292.8510,314.9940,23.5930,45.0460,0.03156561 1711,75.5194,221.9360,65.6656,54.2230,0.01264106 1711,270.5930,311.5690,27.2160,41.9450,0.01053494 1712,270.8640,297.2290,35.6770,78.5820,0.10573080 1712,310.0280,233.6940,23.7250,43.7150,0.10262831 1712,390.2210,216.8020,23.9570,39.8980,0.09377399 1712,301.4410,299.7640,26.6080,49.1460,0.03153782 1712,91.7426,218.2540,29.3674,55.6870,0.02297298 1712,306.2650,242.7240,31.0950,61.3970,0.01420681 1712,293.2090,263.8730,43.4730,88.8340,0.01326776 1712,559.4210,133.3890,22.3830,36.6950,0.01067956 1713,311.9980,239.2000,25.0110,47.9380,0.18800014 1713,395.8220,216.6640,22.2300,38.2620,0.08587316 1713,192.1610,213.9480,33.5360,74.3550,0.04623977 1713,581.4090,209.0260,21.0600,32.9420,0.02370846 1713,305.2640,287.9060,22.4860,41.7060,0.02267286 1713,310.7720,249.5860,29.2930,67.8100,0.02224182 1713,279.5260,281.4780,28.1390,53.0680,0.01349523 1713,353.5830,40.8965,26.9620,51.6682,0.01318058 1713,101.9870,287.1100,32.5700,78.5580,0.01006819 1714,402.2430,219.9960,20.7370,38.7080,0.12057701 1714,314.7200,239.8590,23.5390,45.1970,0.06994317 1714,363.1270,23.9782,29.7270,66.5310,0.04451443 1714,130.5290,286.2660,30.7290,65.5500,0.04423174 1714,523.1680,209.3430,20.7160,34.3220,0.03620612 1714,404.4730,216.2510,31.4180,51.6700,0.02906714 1714,304.2760,272.9610,22.6710,45.2800,0.01663998 1714,240.0900,272.6530,25.9970,49.1120,0.01421942 1714,216.2430,226.2850,29.3860,59.4820,0.01348389 1714,312.3020,254.6920,24.5090,54.3690,0.01139096 1714,284.5460,273.7070,25.2580,45.9090,0.01034682 1715,413.7140,215.8350,26.6000,51.3660,0.13567281 1715,94.9076,301.7940,33.5854,74.0070,0.05133280 1715,425.2170,218.7630,20.6230,41.2400,0.04077572 1715,147.3810,271.1400,29.7400,65.6110,0.04067045 1715,468.8470,207.0330,21.8840,32.2510,0.01467557 1715,308.0150,271.6550,22.4670,37.3740,0.01094588 1716,436.0280,214.0670,22.8400,46.8390,0.27604556 1716,162.0910,267.6040,26.1370,56.7990,0.07045556 1716,108.8030,292.9340,34.3060,76.8510,0.02689301 1716,320.0970,258.4970,21.2950,38.1700,0.01382634 1717,435.0130,219.9210,21.3260,43.5500,0.12482444 1717,107.8650,293.2250,32.4330,67.3770,0.04716545 1717,155.8760,264.5950,28.6530,61.8720,0.02464647 1717,441.9880,218.7180,32.3150,60.5590,0.02363178 1717,306.8010,253.6840,23.0770,40.0960,0.01516677 1717,157.9000,222.6620,32.7610,76.9630,0.01029071 1718,468.4360,215.6780,29.0780,72.2260,0.67376399 1718,481.8290,219.5240,25.5490,66.1760,0.36588657 1718,163.2000,225.6330,34.0480,72.7420,0.06580888 1718,165.6980,267.8710,24.7040,53.3970,0.06290626 1718,121.5280,291.5480,29.1360,64.6640,0.03399636 1718,158.1640,132.1520,36.5940,103.7190,0.01587269 1718,490.3720,216.8360,27.1550,56.8290,0.01399328 1718,299.8510,255.5130,21.7330,39.4860,0.01032181 1719,535.7400,215.2960,36.4690,93.4430,0.66819084 1719,553.2200,218.5660,33.2230,89.0550,0.26891217 1719,168.0650,258.7920,28.5660,58.3020,0.07957856 1719,130.7190,287.7430,28.1900,62.5800,0.05131195 1719,564.2450,221.3320,26.8470,58.7460,0.02115991 1719,287.1200,252.6220,29.4180,49.3760,0.01013605 1720,110.8530,293.1780,30.8790,68.1780,0.15934689 1720,156.8360,265.6460,27.3500,59.7910,0.03909286 1721,122.0700,271.4730,28.0080,62.4720,0.11103406 1721,54.6807,301.8440,38.6158,97.6490,0.01346782 1722,102.6210,278.3530,33.0040,73.1880,0.11137752 1722,214.2310,253.5920,28.2440,56.2550,0.04878920 1722,281.6820,262.6350,21.2290,41.8840,0.03708535 1722,274.2740,151.3960,37.3220,95.5290,0.01642051 1723,102.6910,283.2120,31.9400,70.4400,0.18881276 1723,208.4670,269.0280,27.1260,55.5440,0.05810541 1723,277.7550,275.4300,21.2170,39.5900,0.01832955 1723,273.7810,162.2730,37.6620,90.3330,0.01403054 1724,105.3990,269.5870,31.1530,61.0120,0.23362742 1724,199.3460,267.2780,28.7560,57.5990,0.03012165 1724,273.7790,271.1330,21.7070,43.2450,0.02852587 1724,48.7799,294.7740,38.2932,87.0540,0.01918868 1724,258.4560,205.0950,47.5580,90.6020,0.01083487 1725,115.0990,277.7160,27.1990,54.2810,0.07159464 1725,271.9380,293.6310,23.7380,45.1300,0.03580440 1725,192.9110,291.5720,25.8270,52.5410,0.02026752 1725,71.2849,298.9780,31.7941,69.4650,0.01406793 1725,494.4350,226.0780,23.7330,42.5050,0.01213666 1726,119.1030,263.4360,24.0200,49.5830,0.09171961 1726,84.3986,286.9830,27.5704,56.7880,0.03173014 1726,270.2880,298.2160,25.8980,49.8180,0.02247865 1726,331.3160,210.1160,20.1410,36.3770,0.01021286 1727,133.2020,250.2000,25.6990,49.0020,0.05102976 1727,277.3400,305.2870,26.7890,50.4510,0.03756094 1727,105.5560,267.1030,27.0100,51.1260,0.01653582 1728,284.4560,315.7690,27.5350,53.6560,0.02340405 1728,195.2380,318.2660,32.3610,52.4860,0.01706945 1728,418.6470,209.1320,24.1320,38.5870,0.01675481 1728,601.1630,227.5320,24.8620,38.8340,0.01328954 1728,128.1750,260.5210,25.3930,46.4990,0.01278201 1729,291.9340,323.7550,24.5030,48.3220,0.01860993 1729,201.7050,330.8620,25.4250,44.6110,0.01670132 1729,143.2730,257.3740,27.3150,46.8810,0.01361318 1729,372.1150,218.0850,20.7660,31.2130,0.01216020 1729,439.8580,212.3010,26.0640,41.7630,0.01122974 1729,483.3660,218.8040,19.3050,35.8260,0.01040132 1730,21.9305,301.6600,38.5387,88.8290,0.05696872 1730,503.3910,224.7470,21.6530,40.3480,0.02625235 1730,203.8460,347.6860,31.0200,52.1980,0.01953693 1730,301.6110,345.0290,28.0230,53.6920,0.01720702 1730,386.5040,228.4770,19.9780,32.9200,0.01293529 1731,52.6002,284.2670,33.5813,75.8380,0.08247577 1731,395.9730,215.0440,20.7670,31.4500,0.02651528 1731,202.4940,359.3680,24.3820,44.0200,0.01672422 1732,73.8772,279.8410,30.4078,71.9750,0.03004589 1732,403.9530,222.6070,20.0620,27.8120,0.02434383 1732,483.6470,217.3520,21.7930,39.0900,0.02066271 1732,205.6450,363.6270,29.3690,48.8060,0.01879635 1733,67.3756,280.8180,31.7131,72.8230,0.08333436 1733,410.1540,222.9440,18.8440,30.7650,0.04107408 1733,468.4270,237.3330,22.9500,37.2840,0.03714332 1733,204.2570,369.5470,30.6450,50.9900,0.02647236 1733,290.4770,365.9290,27.0480,44.5340,0.01204416 1734,66.4555,282.7760,33.7228,83.0470,0.03214236 1734,205.9120,379.5950,28.3240,48.0920,0.03048489 1734,417.7510,229.2760,19.9900,36.5980,0.01862936 1734,559.6750,224.1880,20.9670,41.0720,0.01266482 1735,74.6125,289.9730,33.2105,79.8470,0.05306270 1735,215.6270,380.1460,27.4510,47.2140,0.04471603 1736,221.8770,386.9400,30.5440,49.5400,0.07352968 1736,81.9354,288.6460,30.9796,75.6270,0.02155057 1736,44.9779,232.4470,35.7742,61.5250,0.01512285 1736,548.1080,227.0720,22.5230,38.4840,0.01009920 1737,230.0020,390.9990,29.9730,50.1400,0.08957865 1737,436.3230,228.8010,20.3350,39.4220,0.03964439 1737,94.4252,291.5180,32.0528,72.6250,0.03213883 1737,559.7670,219.8930,26.3890,49.4500,0.02465951 1738,236.3580,387.9800,29.4620,50.7470,0.05086158 1738,106.3030,284.7550,31.9460,66.9310,0.03985320 1738,27.5564,307.1840,42.2284,96.2160,0.01871035 1738,542.6120,224.5030,23.8770,45.6370,0.01550535 1739,238.0220,384.2080,30.8480,52.3900,0.05865775 1739,116.2580,283.8700,27.9090,59.6200,0.04803298 1739,574.3910,222.3070,24.4290,43.1400,0.01555137 1739,48.9880,303.0280,34.1206,69.1350,0.01202945 1740,230.4520,396.3450,29.8920,48.9870,0.07216664 1740,118.4900,279.3480,29.2290,64.7820,0.05372588 1740,53.4774,299.7450,33.8054,76.6740,0.04343886 1740,582.2340,221.7390,24.9300,46.5120,0.01229167 1740,253.2430,120.0820,21.4740,37.0250,0.01052825 1741,129.5480,272.4380,31.1900,71.9920,0.22264113 1741,228.2720,405.5920,31.7020,56.3230,0.04266034 1741,588.3050,219.5910,24.8260,46.7140,0.03082909 1741,70.8923,295.6000,28.8367,70.0280,0.02635808 1742,228.3500,405.0260,31.8240,52.6390,0.06627258 1742,74.3661,298.2270,30.5669,68.3300,0.02037091 1742,131.5120,276.6850,27.8140,65.6730,0.01774547 1742,589.5060,223.8870,24.2360,45.2820,0.01668499 1743,126.5190,280.8270,27.1320,58.5370,0.15375698 1743,67.1494,298.9510,31.2548,74.2920,0.05900673 1743,229.4340,404.6250,31.1150,57.1810,0.04275822 1743,362.6170,119.7330,22.1500,34.6410,0.01629500 1744,124.7240,280.8670,28.7950,62.8850,0.11178336 1744,229.8980,410.3550,31.1580,54.6670,0.03475790 1744,558.1050,222.6240,24.0890,46.3600,0.01733784 1744,66.5276,297.1460,32.2762,65.0770,0.01223071 1745,130.7040,277.4820,32.0940,67.7260,0.04481472 1745,230.2980,410.4960,29.7910,51.5570,0.03994913 1745,72.0220,298.4260,29.8710,70.8900,0.03296646 1745,411.7160,115.3350,23.4960,44.3680,0.02543602 1746,147.3670,271.9630,30.2580,64.8220,0.14252302 1746,98.3072,291.9940,27.7758,64.4890,0.08072717 1746,237.8800,390.4990,31.9860,54.4120,0.05909388 1746,537.7790,253.4180,24.9590,40.4610,0.02887129 1746,230.4580,396.2800,25.4510,52.4950,0.01456555 1746,420.1350,118.9690,22.1150,39.9250,0.01347234 1747,161.7710,265.3060,29.0670,65.6770,0.13398264 1747,433.2510,117.0960,20.6870,37.2190,0.04986713 1747,121.7420,292.8580,27.3810,57.3260,0.03409775 1747,356.9710,354.9680,29.1590,60.9350,0.02102830 1747,476.4450,245.2840,21.9550,38.3420,0.01185647 1747,219.1210,256.7310,21.9690,39.9120,0.01071072 1748,166.8240,264.2150,28.9510,63.1130,0.14273590 1748,1.0000,218.5420,28.1694,80.2660,0.11298171 1748,131.3120,287.3920,25.7880,50.8330,0.03898793 1748,259.4070,346.8510,28.5870,47.3300,0.02287897 1748,437.6400,243.4290,20.4280,36.7190,0.02173740 1748,323.3410,342.8590,28.6610,48.5720,0.01178939 1748,401.2400,191.2340,26.5140,66.7180,0.01102444 1749,164.5230,263.9260,28.7610,62.8120,0.12490840 1749,130.2120,287.0910,26.3490,53.7960,0.05123471 1749,413.2460,240.3930,19.6430,35.5950,0.03403553 1749,253.9520,349.8220,29.4020,48.3470,0.03217484 1749,1.4865,227.8360,26.1506,69.9050,0.02018359 1749,349.6880,346.0400,27.2790,53.2090,0.01725654 1749,370.7010,228.7840,19.4620,34.1070,0.01294307 1749,319.9580,344.6410,29.3580,45.8780,0.01129774 1750,160.7300,258.8380,30.7660,67.8750,0.11269395 1750,124.7040,285.8090,26.8300,56.0410,0.07670949 1750,215.2680,248.7700,25.2240,39.6830,0.01487774 1750,252.8640,349.9210,28.2650,47.2450,0.01154711 1751,155.6900,255.1120,30.2100,64.7690,0.15727431 1751,214.1890,241.7800,22.3880,42.4780,0.02879548 1751,117.6120,279.4780,26.8250,58.9460,0.02676918 1751,456.8910,230.9510,20.7310,36.2690,0.01578484 1751,202.3920,238.7300,22.3630,39.4070,0.01499178 1751,248.0850,348.6520,27.8470,47.9320,0.01498057 1751,560.5420,100.7245,22.1560,41.5685,0.01130987 1751,608.1110,217.9070,22.5430,38.9910,0.01088062 1752,155.9150,255.7320,31.0370,71.3490,0.10933837 1752,239.8640,371.3670,27.6980,48.5100,0.04532950 1752,117.2590,280.8860,27.0090,56.2410,0.03988814 1752,458.0850,235.0630,21.1300,36.1030,0.01262409 1753,161.0480,256.4880,31.2120,71.6490,0.05181861 1753,230.6780,406.7160,30.1550,54.8580,0.03674072 1753,616.6550,270.7530,20.5860,38.1210,0.02639250 1753,127.6000,284.4440,25.1120,50.9860,0.02365408 1753,389.1390,233.1260,21.2920,36.4360,0.01085950 1754,227.4100,415.6390,33.1580,62.1790,0.10084073 1754,554.1910,264.8720,23.1000,38.0990,0.01888641 1754,332.7740,411.8980,24.1660,44.6310,0.01361463 1755,513.0510,262.3970,20.5990,34.6720,0.05107262 1755,229.7530,405.5930,32.5060,60.5500,0.05093876 1755,66.6381,200.4190,25.0855,50.9050,0.03903703 1755,570.5440,268.2260,21.2650,35.9980,0.01697851 1755,19.6120,310.4390,38.5088,92.6610,0.01515200 1756,238.9730,393.8380,27.8620,51.1100,0.05860864 1756,1.0337,193.8460,24.7204,59.1860,0.04066855 1756,486.5320,262.3150,19.1290,32.9160,0.03977326 1756,66.5730,250.8000,34.9220,82.3750,0.03004369 1756,72.0410,286.3090,34.4610,86.3460,0.01961638 1756,388.6430,240.2170,19.8900,36.7910,0.01854114 1756,200.1670,248.8320,26.2600,49.6120,0.01501055 1756,230.9750,399.3790,24.9330,47.4180,0.01234374 1756,537.6680,266.2070,21.3920,36.3950,0.01019443 1757,239.0420,391.6500,29.8030,54.9240,0.07833026 1757,482.2220,260.5190,20.0620,36.7610,0.06957279 1757,99.0203,281.1010,33.1507,72.5260,0.03511402 1757,389.8850,240.4630,20.2800,36.9940,0.01746454 1757,203.4860,252.9880,32.6440,67.1310,0.01351196 1757,330.0910,389.4590,25.5770,41.8760,0.01228978 1758,111.1000,278.8960,30.8590,63.8150,0.08516358 1758,229.6580,411.2930,30.6010,54.2470,0.06018963 1758,485.3240,260.8090,19.6910,34.5390,0.04161249 1758,334.0260,402.0470,25.3080,45.7650,0.02410696 1758,67.3222,199.1320,24.6929,39.4760,0.02290650 1758,207.7330,247.2110,24.0310,49.7760,0.01956889 1758,83.0504,212.3980,66.1346,62.4200,0.01503655 1758,343.3400,210.6840,57.4400,106.3350,0.01256760 1758,243.1130,404.2280,27.5870,52.9670,0.01018426 1759,235.9390,407.1370,29.6980,57.4190,0.05562536 1759,119.0000,278.2450,29.1120,59.0550,0.04992125 1759,485.6860,262.6390,20.0700,34.7840,0.04919535 1759,63.2944,203.1430,33.7486,68.1410,0.02825522 1759,335.6220,404.7340,24.8560,43.0720,0.02030651 1759,536.5620,266.0600,21.4910,36.3670,0.01458355 1759,228.2230,416.4330,26.1630,45.1110,0.01067593 1760,239.9520,402.9610,28.9120,52.7290,0.04747064 1760,484.3160,259.2460,19.9810,36.3480,0.04653328 1760,119.9930,278.8340,27.6430,58.2500,0.03501033 1760,68.7591,197.6140,26.3686,48.5160,0.03165335 1760,18.7257,222.0850,178.1043,60.1620,0.01292726 1760,536.2090,265.6910,21.0560,36.6150,0.01230436 1761,126.7770,272.5050,28.6760,62.8830,0.07677026 1761,247.4340,383.1080,29.4960,55.0570,0.03576041 1761,470.4650,259.6250,20.1490,33.8360,0.03546834 1761,355.9670,388.3690,21.4350,42.3000,0.01673493 1761,67.6523,198.1740,24.8258,42.9910,0.01551953 1761,239.4980,393.1610,25.3530,45.4680,0.01116672 1762,135.2840,270.9240,32.3180,64.6510,0.04630522 1762,456.4870,259.4230,21.1460,35.6120,0.02520415 1762,254.6480,368.0470,26.9250,46.1700,0.01830500 1762,113.8720,244.3210,25.1750,41.6870,0.01236011 1762,498.0580,259.8740,21.6520,39.3760,0.01163731 1763,448.6580,259.3060,20.3340,36.2880,0.03882005 1763,225.7280,254.2550,34.1630,67.0500,0.03471958 1763,143.5180,269.2520,31.0940,62.4960,0.03068442 1763,262.1180,348.9770,27.5300,48.1710,0.02890540 1763,66.6334,200.7350,26.4544,47.8550,0.01995913 1763,330.9390,345.6220,24.5410,41.6440,0.01159192 1763,488.2160,258.9230,22.9030,41.3820,0.01042246 1764,61.8844,202.9830,26.6709,47.0960,0.03373908 1764,145.8860,246.8890,34.2980,78.6830,0.02420506 1764,437.7640,262.1460,20.3830,34.9750,0.02021599 1764,97.7830,226.4550,34.4870,75.4020,0.01537204 1764,72.3373,222.9760,178.2817,67.0040,0.01094567 1765,57.5289,204.0290,27.6013,48.1900,0.03346824 1765,433.4030,260.3170,21.1210,39.7400,0.02278021 1765,262.4990,346.2830,26.2280,45.3430,0.02254803 1765,74.2335,225.7480,183.2535,65.7990,0.01705326 1766,263.7260,361.4520,26.8780,46.7750,0.04027359 1766,54.3074,201.0720,24.9584,40.2180,0.02475193 1766,437.1100,251.4810,21.8000,46.5170,0.01399038 1766,336.2290,353.8750,25.0710,40.6810,0.01311556 1766,1.0972,218.2210,36.1435,77.7980,0.01082260 1766,1.0000,218.0240,191.7090,69.4350,0.01008172 1767,42.4729,196.9240,28.1416,49.3360,0.07679742 1767,262.8400,377.0730,25.1690,48.1250,0.05820018 1767,194.9950,258.0300,27.5490,53.5170,0.05344284 1767,437.1900,264.3710,20.1420,38.1210,0.02395812 1767,252.0180,383.3660,24.2700,47.8860,0.02170048 1767,66.7694,223.4420,192.9536,62.7800,0.01330923 1767,2.1930,336.2050,33.7589,89.0790,0.01228754 1768,259.8660,383.9980,29.3460,59.8180,0.08679592 1768,249.0320,393.4170,25.6000,49.2000,0.03792049 1768,7.0095,227.9560,220.9885,59.0200,0.03060171 1768,429.8150,263.8240,21.0320,43.4790,0.01649240 1768,427.7100,218.2940,21.8670,37.6220,0.01456568 1768,36.4557,194.0850,28.7439,42.9910,0.01069449 1769,256.3090,388.8940,28.0010,51.5910,0.05956143 1769,31.4862,191.7780,29.9508,51.2120,0.04521745 1769,9.1659,227.2260,227.3231,57.0750,0.03039482 1769,131.8770,276.3920,23.9010,34.3270,0.01963839 1769,434.5460,215.1350,22.2220,40.7030,0.01644701 1769,264.5470,379.7810,30.6090,57.2300,0.01544496 1769,430.2310,266.3850,20.2620,40.1990,0.01452397 1769,6.4400,325.5670,46.9930,102.1030,0.01229147 1769,17.0957,198.1150,58.7669,58.9720,0.01068054 1770,380.7300,213.8440,32.9670,80.6200,0.12885767 1770,68.7046,299.2570,36.0764,76.8920,0.11097050 1770,262.7140,387.8890,29.1070,57.5790,0.08906927 1770,29.5338,186.1000,27.7578,48.6890,0.05227126 1770,437.2990,209.4950,20.7920,35.7710,0.04891854 1770,437.9720,267.1890,20.1780,40.4730,0.02191038 1770,13.1176,226.3150,211.2384,55.3200,0.01626508 1770,350.2620,388.7300,25.7310,45.6640,0.01604221 1770,364.0530,209.4490,86.1370,66.1600,0.01351201 1770,123.5100,238.6100,36.4450,65.2330,0.01157495 1770,3.5080,234.9290,349.1800,63.2320,0.01124643 1770,254.5270,399.0520,24.9020,47.9260,0.01099388 1771,261.8260,395.3520,29.7350,54.5480,0.06541135 1771,441.5620,207.3960,19.3350,35.8810,0.05484223 1771,100.3290,293.7130,35.0460,72.4460,0.05019223 1771,25.6525,184.2020,27.3135,46.6860,0.03929292 1771,387.1100,202.8080,85.6690,48.4290,0.03074365 1771,489.3060,282.1090,22.1980,45.1090,0.02578908 1771,405.0270,210.8380,19.2330,33.3430,0.01995435 1771,354.3460,391.1790,26.1470,41.9660,0.01107811 1771,441.0670,268.4930,21.9540,42.1290,0.01060726 1772,262.3660,386.0600,29.5670,53.7610,0.10307419 1772,104.5820,295.2500,37.3550,71.7790,0.07096640 1772,436.2570,211.9300,19.7320,34.4050,0.03997220 1772,477.8600,255.9670,30.3940,73.4320,0.02628304 1772,10.1167,188.0410,29.6867,48.4300,0.02501005 1772,388.1550,206.2140,70.7280,46.4240,0.02496333 1772,397.6190,211.5460,18.9170,33.5790,0.01925587 1772,347.0790,198.5120,136.6050,60.2030,0.01640402 1772,3.4103,190.3210,41.9770,75.0360,0.01344060 1772,484.9610,287.6160,24.5180,46.1350,0.01053306 1773,100.0955,290.5000,38.0855,75.1160,0.14606272 1773,256.5360,379.5690,27.4450,49.3110,0.05313449 1773,426.4240,210.8790,19.9990,35.7350,0.04726997 1773,478.3710,292.4570,23.8000,44.7160,0.01928868 1773,385.3260,205.1590,67.1340,48.3530,0.01524290 1773,388.9430,209.4510,18.9770,34.9450,0.01424719 1773,341.3370,201.3580,147.0070,55.5070,0.01308139 1773,470.9660,256.4790,32.0910,76.8970,0.01238819 1773,64.1964,221.5080,195.4506,58.7360,0.01023975 1774,418.1840,206.8410,19.1390,34.8570,0.09388167 1774,92.4176,292.8290,38.7824,76.4980,0.05437396 1774,253.8450,372.9160,29.7940,53.4980,0.04455961 1774,483.7860,301.3110,24.3730,46.8020,0.02853120 1774,427.0790,282.2960,21.9650,48.0600,0.01774412 1774,398.4990,203.6900,45.4000,45.1730,0.01729919 1774,342.4370,200.2450,141.2590,54.2800,0.01705041 1774,385.0510,212.2320,18.9740,33.2240,0.01504347 1774,22.5715,223.1780,186.0525,67.8410,0.01305908 1775,83.0293,294.2310,41.8877,77.9990,0.16034773 1775,245.3610,378.8380,31.8110,56.0420,0.11301377 1775,413.2200,205.5900,19.8710,35.3460,0.05552600 1775,437.3060,207.5860,22.2660,45.7120,0.03046535 1775,351.2830,195.4200,117.1090,56.4880,0.01906874 1775,46.9343,228.1700,137.9817,79.4400,0.01651194 1775,380.3560,211.5160,19.2070,32.1780,0.01619703 1775,427.6470,290.2050,22.2290,47.6520,0.01471946 1775,380.2900,201.8420,55.8950,47.3360,0.01366492 1776,81.7498,299.4120,39.7902,76.0370,0.12341277 1776,244.9410,382.6790,33.1830,57.6530,0.07599649 1776,413.0760,206.1200,20.8450,36.6190,0.05589653 1776,440.9390,207.9290,19.9930,38.0140,0.04809615 1776,428.4880,295.9980,25.1440,49.0410,0.02239388 1776,349.2110,196.4610,128.5460,53.7660,0.01959020 1776,495.8080,316.9280,29.7740,54.7130,0.01584188 1776,11.3973,223.2730,210.7387,54.3100,0.01452270 1776,385.6630,210.6060,19.1050,34.9000,0.01323811 1777,441.4220,209.0420,19.0380,35.2900,0.08572334 1777,411.5810,208.5780,19.5560,36.9890,0.07583700 1777,255.6630,373.6350,28.4540,52.8950,0.04439521 1777,341.7340,202.5570,147.2750,53.3470,0.02034896 1777,421.5570,299.7250,28.7850,60.7060,0.01786890 1777,379.0980,213.5730,19.1130,31.1470,0.01658767 1777,78.3869,302.6020,37.6461,80.1980,0.01437484 1777,373.9040,207.4110,74.1100,45.1190,0.01235565 1777,490.7150,271.3620,28.6520,47.1950,0.01163206 1778,437.9260,206.7170,19.5040,34.3510,0.09561012 1778,407.3830,202.4220,20.1650,39.8530,0.06610157 1778,435.9140,316.2880,26.7550,56.4430,0.05611883 1778,339.2040,200.0800,149.3630,51.7440,0.03512000 1778,373.8900,210.1270,18.6770,32.4800,0.02736032 1778,42.3324,309.5650,40.5345,88.4890,0.02035523 1778,245.4320,374.4540,31.0140,53.8980,0.01976430 1778,535.6650,365.6060,24.6520,52.0870,0.01826040 1778,371.9310,204.6510,72.4930,42.3960,0.01775110 1779,405.2070,202.6520,19.5730,39.6690,0.08048777 1779,437.8460,206.9180,18.0150,31.3150,0.07480559 1779,452.7570,332.6380,29.0040,63.6410,0.06749760 1779,345.3770,200.7050,150.5100,52.7670,0.06166939 1779,246.2400,363.1150,30.5340,52.7490,0.03482004 1779,372.1550,208.9700,18.5860,32.7910,0.03065557 1779,365.3420,203.8180,84.2830,38.2840,0.02722096 1779,1.0000,320.8490,31.3452,92.9810,0.02349931 1779,451.6060,208.8520,18.6840,34.8130,0.01847079 1779,3.9689,217.6490,208.2021,60.0440,0.01532390 1779,181.2020,277.3540,24.5210,53.2470,0.01262893 1779,413.3120,201.6750,54.8150,42.8720,0.01181468 1779,582.4600,400.4160,25.2420,60.5210,0.01059425 1780,404.6930,203.0020,19.4640,39.4220,0.09885066 1780,438.9750,204.7150,18.4350,34.9750,0.07805286 1780,346.4800,200.6800,150.8140,52.8440,0.06971755 1780,454.9530,339.1890,31.9200,74.5050,0.03601307 1780,327.1050,345.3720,23.2800,38.3100,0.02752192 1780,369.4900,208.2950,18.9940,34.6350,0.02583041 1780,254.1870,348.1810,30.8960,52.8350,0.02446534 1780,360.3650,199.7260,68.3770,47.3610,0.02396993 1780,403.1810,204.3290,73.2520,39.6090,0.02373642 1780,449.2650,207.1110,19.8960,35.7850,0.01842067 1780,593.5540,414.1640,24.6740,55.6270,0.01246431 1780,357.7330,345.6690,27.1510,56.6340,0.01157438 1781,592.5120,212.4480,24.6320,55.6880,0.23642394 1781,402.9610,204.2060,19.5800,39.6080,0.10338774 1781,438.7090,208.0140,17.8970,32.6390,0.08637707 1781,347.0770,202.3860,154.8430,51.9320,0.06606507 1781,440.8680,336.4330,31.5910,69.8010,0.06590499 1781,366.8630,210.5740,20.6450,36.3290,0.03109612 1781,450.4790,209.9900,19.4390,36.5370,0.02437920 1781,326.0290,328.2840,24.7710,39.5830,0.02177228 1781,262.7940,331.4140,26.3160,47.5020,0.01898894 1781,350.7890,329.2230,30.5440,59.8700,0.01877727 1781,204.1960,263.4480,26.1880,53.2020,0.01841141 1781,403.5800,205.5590,75.5340,38.8910,0.01811927 1781,356.2760,202.5430,73.0440,46.3300,0.01647032 1781,17.9287,222.1360,189.2243,67.2800,0.01263602 1782,586.9050,215.2330,24.8320,56.4620,0.13845989 1782,437.3840,207.9220,18.5570,32.9390,0.08731711 1782,402.1720,203.2250,20.4280,40.7810,0.08073130 1782,349.9090,311.9360,25.8110,52.7250,0.05470421 1782,346.9030,202.3620,156.1430,52.4020,0.05140174 1782,9.6592,211.0110,42.0826,60.9820,0.04306607 1782,432.6360,330.0340,31.0970,74.6110,0.04140313 1782,273.1460,311.6100,28.4180,47.4880,0.03924989 1782,326.0610,308.5520,27.1720,45.2810,0.03659509 1782,367.3940,209.5510,20.6420,35.8900,0.03565510 1782,1.0000,218.5360,206.9570,68.3750,0.01703660 1782,449.8370,208.7530,18.6900,34.6630,0.01347725 1782,422.9180,204.1560,44.7720,42.1480,0.01345313 1782,528.4570,281.2980,38.3190,80.0770,0.01282512 1782,357.6180,200.3860,68.8190,48.9340,0.01208698 1783,567.4480,215.9820,23.6200,47.4640,0.16791525 1783,326.2850,297.2170,29.7030,62.6110,0.08428466 1783,401.8310,205.8350,19.6030,38.8430,0.07760119 1783,437.4170,207.8350,18.2540,33.9410,0.07561353 1783,348.4670,296.3620,28.3660,55.9530,0.05452614 1783,418.4180,325.8020,26.6370,57.4320,0.04954280 1783,346.0930,202.9590,156.5540,52.1270,0.04809952 1783,368.0430,210.0690,20.0600,36.6430,0.04423992 1783,279.3620,298.4330,25.9660,50.5290,0.02308660 1783,189.3820,223.8980,33.5640,74.0720,0.01763587 1783,15.6513,219.6070,182.8797,67.4820,0.01662039 1783,36.5609,215.1260,47.2860,52.7040,0.01448867 1783,387.5430,203.9990,42.1030,45.2230,0.01421999 1783,465.8040,205.7360,20.8980,41.0030,0.01328743 1783,450.2610,210.9760,19.1700,34.1950,0.01208846 1783,315.2580,305.6500,26.2150,54.2050,0.01196478 1783,263.6510,295.5990,26.9570,55.3650,0.01145217 1783,421.6660,204.8950,45.6670,41.4100,0.01105566 1783,291.0270,295.7060,92.7570,61.5320,0.01084129 1783,504.4880,278.1320,28.8920,52.0290,0.01024955 1784,392.0240,317.8720,26.5430,58.9690,0.09000963 1784,560.8300,219.8910,21.9040,44.2400,0.08977500 1784,397.2050,210.4900,20.0920,38.9870,0.08491383 1784,92.0096,246.9510,40.5364,92.2620,0.08097897 1784,431.3670,207.3720,18.9600,34.6280,0.06514709 1784,198.5100,228.0700,30.1490,64.4270,0.05730965 1784,365.4420,212.2160,19.3910,33.6360,0.05248789 1784,348.8930,204.3950,155.1270,51.6190,0.04656224 1784,266.4710,291.4440,24.3510,53.0430,0.04333939 1784,345.2410,294.3750,25.8460,53.4180,0.03497951 1784,18.6165,324.4690,37.2154,86.3550,0.02831405 1784,260.6370,286.5130,101.7750,67.8440,0.02136458 1784,443.7630,211.0970,18.2140,32.8820,0.01689045 1784,263.0380,262.0710,178.5190,73.1940,0.01604387 1784,461.0750,207.8260,19.3900,35.1320,0.01483519 1784,278.1330,291.7410,32.7410,60.8650,0.01405416 1784,470.1930,276.4320,27.1260,48.5220,0.01330008 1784,385.3750,205.9320,42.5990,45.5410,0.01265579 1784,420.8980,203.9710,47.7450,41.7080,0.01156901 1785,369.3860,314.8190,27.6510,62.6950,0.09989877 1785,387.7800,203.2680,19.7120,40.6380,0.05540485 1785,422.8870,205.3600,18.0550,33.1550,0.05182043 1785,354.4760,209.4140,19.4930,35.8200,0.05007986 1785,349.1450,200.3810,152.2320,52.4520,0.04440426 1785,455.6880,202.5990,20.4920,39.2660,0.03405332 1785,334.4100,289.0630,28.8220,55.7900,0.02697090 1785,441.5570,206.0360,18.6860,34.9190,0.02558166 1785,616.1240,208.6460,21.6650,54.1300,0.02401850 1785,33.8321,311.8500,40.3792,87.0570,0.02362359 1785,255.9400,284.6360,28.6370,62.4660,0.01965097 1785,267.1580,288.4380,30.3700,62.6630,0.01713262 1785,105.7290,278.4470,36.1980,86.9370,0.01577259 1785,217.6480,255.9960,22.9490,42.0650,0.01492670 1785,189.3790,218.8730,32.4120,70.6270,0.01455415 1785,445.8250,273.5960,28.9370,55.5350,0.01321918 1785,344.5310,201.6290,69.7380,43.4150,0.01241272 1785,54.0777,224.6530,217.9883,58.0400,0.01099803 1786,379.9620,201.6560,19.1730,40.1690,0.07990695 1786,345.3710,209.8600,19.0990,34.2420,0.05426707 1786,412.9120,207.2780,19.0750,33.0550,0.05349632 1786,448.2750,202.9910,20.3950,40.0350,0.03376287 1786,345.6450,316.4680,30.3660,68.7430,0.03360298 1786,317.6610,195.8130,171.1800,51.7250,0.03332650 1786,429.3310,210.2510,17.8190,32.7130,0.01999589 1786,409.1160,199.3590,61.8300,47.6620,0.01469402 1786,324.3000,292.1410,26.2340,46.8070,0.01419807 1786,49.5436,304.8350,35.4586,78.1080,0.01251255 1786,246.2310,286.5550,29.0580,56.6440,0.01152597 1786,419.1710,356.0480,32.7790,75.4460,0.01049569 1786,15.3266,221.2890,192.1704,65.3830,0.01001385 1787,405.7630,204.2550,19.3070,36.4100,0.08817928 1787,372.0730,199.5530,20.5520,44.8160,0.08397989 1787,337.7410,208.5880,18.8880,34.0810,0.08061286 1787,307.1590,290.8440,54.5940,132.3150,0.07100010 1787,318.4960,197.8240,172.3160,50.3480,0.05672463 1787,442.7590,202.2720,19.8620,39.3100,0.04947700 1787,295.4100,291.5370,27.3640,55.7640,0.03351846 1787,394.4150,354.8900,36.5820,81.9050,0.02405709 1787,60.0263,291.9760,38.4044,81.7540,0.02373113 1787,283.7020,302.2020,24.3530,48.0060,0.01766402 1787,399.5240,197.0310,69.7440,48.5760,0.01614550 1787,428.0340,204.5310,18.4250,34.9140,0.01597473 1787,239.4580,286.9540,26.5980,54.9260,0.01385838 1787,52.6384,222.3630,218.8676,56.8790,0.01316578 1787,318.3410,292.6920,32.9580,80.2960,0.01261212 1787,331.0920,200.8700,40.4990,47.1700,0.01050907 1787,315.0730,291.7350,26.5720,52.1720,0.01013800 1788,57.8208,296.3590,38.9277,78.8340,0.20437442 1788,422.5340,210.1560,17.6570,34.1250,0.07330482 1788,366.9660,197.9120,21.6540,45.7080,0.07073736 1788,331.2760,208.9950,18.9990,33.9230,0.06780476 1788,401.1220,204.8200,18.8270,34.4460,0.05737898 1788,439.7230,202.5610,21.7630,40.3010,0.03455110 1788,326.2600,199.8570,167.3810,51.7250,0.03151581 1788,397.7240,201.5940,67.9960,42.8730,0.02792508 1788,230.7970,283.7140,29.4060,62.8080,0.02387821 1788,304.5530,318.0260,30.6570,71.0060,0.02360796 1788,367.6550,274.8410,38.7130,82.3800,0.01116818 1788,22.0565,229.5730,178.1895,66.1490,0.01060234 1789,48.8431,297.3590,36.8474,79.4300,0.11255973 1789,398.1980,204.3050,18.6570,34.0040,0.08287886 1789,328.2060,208.7100,19.2970,33.3960,0.08185618 1789,435.8740,201.2770,20.8080,42.0410,0.04992180 1789,421.7910,207.3770,17.8400,36.4560,0.03466294 1789,363.5410,198.1150,21.6850,47.0010,0.02487408 1789,383.3060,197.4410,87.7190,52.0180,0.02111469 1789,428.3020,202.8810,19.6750,40.5610,0.01816265 1789,490.5330,111.1900,25.5870,49.4740,0.01509136 1789,230.0800,281.5800,32.7690,61.3700,0.01325443 1789,301.3720,196.6010,153.5040,54.2950,0.01253132 1789,177.5280,252.6920,25.3490,47.5120,0.01058219 1789,344.6520,266.6360,26.8480,56.9610,0.01025293 1790,395.8070,202.7830,18.8190,35.4450,0.11565058 1790,322.6840,206.7670,19.1260,35.1580,0.09274674 1790,434.6890,200.9300,18.7740,36.7410,0.05445564 1790,420.9530,205.8740,17.9280,34.8380,0.03720841 1790,226.6350,278.0920,30.6070,57.6290,0.03311305 1790,395.2590,197.2010,64.0970,45.2150,0.02998055 1790,326.6640,197.1060,163.4780,51.8600,0.02682014 1790,169.6010,255.4170,25.4080,46.9180,0.02343806 1790,282.8100,194.0170,138.1820,51.9890,0.01190263 1790,12.4792,226.1340,203.9518,62.2370,0.01008183 1791,393.7750,199.4680,18.8680,36.1400,0.10999268 1791,316.1040,204.5310,21.1350,36.2710,0.07833980 1791,419.2830,202.1650,18.6770,38.8500,0.06237595 1791,403.9080,198.9170,49.8170,43.1170,0.02917117 1791,427.7320,200.1870,19.4020,38.5010,0.02762672 1791,229.4870,271.0130,30.4030,64.1680,0.02328542 1791,210.5740,240.9430,23.4520,39.4340,0.02259723 1791,309.3380,184.3360,192.0870,59.1950,0.01976152 1791,159.7660,259.4960,25.2190,45.8700,0.01960231 1791,481.4100,203.5180,21.9610,43.3270,0.01604709 1791,13.8847,225.1890,197.7583,63.2620,0.01513296 1791,54.6012,287.9160,38.7539,85.1180,0.01115396 1792,222.8120,235.8200,64.0890,165.5750,0.21092850 1792,472.2880,198.7180,23.7740,52.3770,0.10579384 1792,418.8670,198.8390,19.5630,40.9280,0.08821246 1792,392.3270,196.0980,19.4410,36.6800,0.08491050 1792,315.0220,201.8100,21.0440,36.7370,0.08145077 1792,214.2230,268.8600,36.7640,89.6100,0.04039076 1792,425.9910,195.2690,20.0540,39.2400,0.02501786 1792,314.3680,181.5170,204.3870,56.1430,0.01892307 1792,434.2640,194.8100,21.0210,35.2430,0.01353167 1792,410.2200,196.2180,43.0860,46.7120,0.01273400 1792,277.2020,193.3330,146.4850,53.5390,0.01218847 1792,359.7310,193.6430,20.1240,40.8360,0.01198482 1792,229.0050,266.0100,38.9820,87.8220,0.01129178 1792,312.4400,197.1130,38.9580,48.3830,0.01108505 1792,384.5000,190.6090,96.9260,49.9520,0.01107251 1793,490.6370,202.4520,21.2510,49.6060,0.28296900 1793,437.6260,197.9810,21.5380,48.1510,0.16740955 1793,221.1210,241.1180,42.1970,101.8650,0.11463720 1793,407.9460,198.2930,20.2310,37.4880,0.10184894 1793,330.6200,205.9580,20.1350,35.7010,0.09512050 1793,142.0230,267.8130,27.0740,53.8490,0.03389307 1793,502.6010,204.0770,21.6950,44.2360,0.02925191 1793,496.0540,87.0968,29.6550,63.9212,0.02121441 1793,448.6200,197.2490,21.3080,40.9760,0.01998948 1793,317.8950,188.3020,208.1820,57.3260,0.01123554 1793,325.0550,197.8370,38.0290,54.6020,0.01089163 1794,508.6690,200.1760,21.6220,51.8860,0.41496694 1794,456.5610,192.3800,22.8420,52.9670,0.18598498 1794,124.6030,272.7280,31.6170,65.4850,0.12969421 1794,422.0040,197.6120,19.9590,36.7650,0.10075302 1794,519.7370,201.5180,19.7120,45.4970,0.07398783 1794,343.6250,203.3350,20.3740,38.1400,0.06792340 1794,321.9810,184.3840,192.1240,59.6530,0.03015232 1794,379.9260,198.0560,22.4920,47.7520,0.02624289 1794,221.3580,240.5430,46.0240,100.9320,0.01850279 1794,330.6270,195.9790,89.9970,51.4330,0.01661168 1794,342.8360,198.4970,37.5050,50.5570,0.01146137 1795,513.1710,205.2540,20.5820,47.6480,0.30201924 1795,461.9060,198.6150,22.9850,50.6390,0.19963276 1795,522.7920,204.8230,19.4160,45.5250,0.17651069 1795,77.4503,284.9210,36.3077,87.5170,0.08926567 1795,425.6640,201.1980,18.7910,36.9930,0.07986034 1795,383.5630,201.2500,24.0330,53.0900,0.07010342 1795,340.9080,205.9290,21.1300,40.3480,0.06831446 1795,471.5070,200.8590,21.2430,44.4450,0.02265092 1795,334.0020,189.7960,178.0710,61.9410,0.02165746 1795,514.7670,83.0648,30.3630,65.9112,0.01852757 1795,364.4790,201.1430,70.1000,55.4290,0.01261247 1795,499.2030,202.8670,48.0020,49.0470,0.01024006 1796,512.1610,206.2480,21.8200,49.5420,0.27145576 1796,466.6280,199.0890,23.5830,56.2640,0.24420956 1796,527.1800,206.1390,21.7520,50.9390,0.20663068 1796,335.1790,207.0840,22.4440,45.2620,0.13381656 1796,380.7860,202.4060,21.5190,42.1010,0.04808893 1796,1.0000,313.9970,28.8409,108.1340,0.04531132 1796,426.0710,203.5840,19.1710,36.6470,0.04156518 1796,484.0040,202.2130,21.5380,47.7760,0.02376736 1796,309.9870,197.1110,135.4450,54.8240,0.02017108 1796,381.7610,183.8370,184.6080,59.6860,0.01275172 1796,454.6140,199.2060,84.6620,50.1610,0.01169510 1797,524.5960,204.7060,21.5930,50.6550,0.38403964 1797,483.0330,199.0710,24.1230,55.5000,0.21944332 1797,539.1700,204.3030,20.4470,50.4660,0.20313397 1797,337.2290,205.3700,23.3890,50.8740,0.18540195 1797,383.7900,198.4230,23.1800,43.3340,0.05939522 1797,475.9410,196.9010,22.0030,49.5170,0.04315865 1797,189.0590,259.0010,39.1080,82.4810,0.04313415 1797,495.6270,201.3760,21.4840,49.4860,0.03124921 1797,314.3370,198.3900,130.5800,56.7620,0.02671483 1797,434.8840,200.6210,22.1560,47.5370,0.02596020 1797,141.2170,256.9930,35.1400,76.2050,0.01817129 1797,498.6700,199.2550,64.4800,57.6790,0.01743439 1797,361.3890,204.4130,21.2750,43.5340,0.01505843 1797,276.1560,192.7740,41.7540,94.5950,0.01210057 1797,367.1090,197.3420,46.4530,53.9150,0.01207850 1798,538.8030,205.8560,22.1360,53.4200,0.37734532 1798,500.4110,199.8020,25.0480,60.7840,0.32881659 1798,346.5500,207.5860,23.1900,47.7630,0.12780280 1798,492.6290,200.2650,22.8740,51.9750,0.08391324 1798,437.5830,201.5280,20.2250,41.1250,0.07278924 1798,548.0980,206.4690,21.6270,54.2110,0.07148278 1798,292.4210,199.4600,36.8730,87.8910,0.05711731 1798,330.3700,197.2380,140.7260,54.2280,0.03909893 1798,393.1500,201.9640,24.4530,44.8980,0.03668639 1798,487.2490,198.9610,19.7810,42.8770,0.02590602 1798,127.5340,269.1690,38.9760,91.1890,0.02584091 1798,510.5570,200.1790,22.5260,52.1180,0.02571076 1798,370.2160,205.8270,22.3180,48.7950,0.02387196 1798,377.1110,188.1580,188.9340,66.7340,0.01652656 1798,464.0270,201.1080,126.9370,55.7800,0.01240808 1799,545.9980,200.1170,24.5390,57.3000,0.62516570 1799,352.9360,199.8710,23.3700,49.5330,0.29317141 1799,516.7270,198.1000,24.4730,57.2050,0.22173457 1799,446.2130,199.6240,18.6590,34.7920,0.08457758 1799,457.7750,198.6960,19.0380,36.8400,0.04292260 1799,338.9090,193.6640,131.1060,55.3900,0.03788295 1799,527.3780,199.6690,23.5000,55.0970,0.02435406 1799,64.6350,308.3800,32.1636,71.6150,0.02122935 1799,375.2040,195.6800,33.5520,57.7640,0.02120535 1799,375.8150,183.7940,191.5870,66.3000,0.01806105 1799,531.3620,191.2210,47.4690,73.4120,0.01709277 1799,507.8930,196.9620,23.1330,48.8920,0.01565302 1799,358.6140,198.2470,35.4800,56.4770,0.01366676 1799,399.4830,194.8480,23.7670,43.7410,0.01271880 1799,468.4360,182.0600,132.0640,71.8400,0.01048257 1799,384.2620,194.5180,46.8840,52.2420,0.01027475 1799,441.1640,193.3690,35.5130,49.2230,0.01025588 1800,556.1290,208.9190,23.4360,53.6810,0.35159227 1800,359.9160,206.7240,23.8670,49.3140,0.26941127 1800,545.1540,207.2430,22.5590,54.2390,0.22340274 1800,505.5220,196.8240,23.1920,53.8390,0.18273386 1800,469.2620,205.6150,19.3170,37.1480,0.12838274 1800,454.6580,204.2930,19.1210,35.5420,0.12108776 1800,124.0970,285.3030,34.5680,80.5920,0.06434493 1800,342.2740,199.7660,134.5760,55.8390,0.02881414 1800,534.5440,204.1960,24.0440,55.5910,0.02237223 1800,373.6340,186.8070,190.0420,61.8920,0.02206901 1800,538.3010,197.6110,48.2730,63.0800,0.01484712 1800,406.8040,199.9070,29.8970,52.4770,0.01025081 1801,460.8830,211.0630,21.5480,40.7430,0.25796762 1801,362.7700,216.3540,23.4700,47.6720,0.25595966 1801,481.8470,209.0880,20.8770,45.0860,0.24491975 1801,555.3560,213.0600,27.0000,61.9510,0.22455144 1801,518.3250,206.6540,19.4230,38.6400,0.15056682 1801,527.9550,208.7410,60.6120,57.9080,0.06265990 1801,533.8500,208.2830,19.5230,41.0900,0.04367823 1801,130.2380,293.2530,34.2980,81.3590,0.02696557 1801,548.2450,210.8360,23.1400,52.7390,0.02536189 1801,567.1750,214.7600,23.2760,53.9070,0.02334825 1801,462.0080,205.0700,154.1750,51.1400,0.02108354 1801,75.1021,321.9490,35.3749,72.5990,0.01805469 1801,425.5330,208.5400,19.8050,37.5710,0.01655143 1801,537.3980,206.6110,26.0680,55.7510,0.01370636 1801,363.9570,207.9740,143.5500,56.3560,0.01112736 1802,564.7570,214.3520,25.1670,59.8790,0.35978335 1802,497.5070,209.3200,20.3860,44.8660,0.32937914 1802,574.6960,213.3190,26.2960,65.6210,0.27291664 1802,365.4140,215.0110,23.7740,48.0530,0.24187818 1802,469.1560,208.5270,24.9200,48.6280,0.18884180 1802,128.2200,295.8270,32.8430,78.3470,0.11705370 1802,529.8510,207.2950,20.8860,40.7000,0.10883474 1802,539.9880,206.9140,19.6820,41.6260,0.05549723 1802,518.9030,205.4780,86.2460,52.8760,0.03259417 1802,557.6780,210.7460,21.9830,48.5080,0.02554544 1802,582.8670,227.0700,24.5360,59.9870,0.01928558 1802,378.3940,206.6760,219.4230,60.4730,0.01733308 1802,396.4530,212.0720,29.7580,61.1860,0.01209861 1802,422.8560,209.0940,24.7640,50.8620,0.01011740 1803,571.4070,202.9830,28.4070,64.4990,0.61095959 1803,607.4310,203.6190,29.0540,87.8370,0.51605278 1803,363.1780,202.2890,24.6900,54.9380,0.42677337 1803,505.0670,199.3310,22.4600,47.0800,0.40449831 1803,537.7680,193.8030,22.1150,48.2600,0.26404005 1803,474.0450,198.9300,23.6120,51.1530,0.24725522 1803,409.6930,199.6730,27.0380,66.9240,0.18468753 1803,102.8840,290.6800,36.0680,92.8840,0.16665930 1803,564.4180,201.3950,23.8000,55.1490,0.07840215 1803,547.0870,193.7960,20.6380,45.9660,0.07110605 1803,583.3010,201.8080,28.7870,70.2690,0.03477277 1803,421.7480,197.6920,26.6250,64.7410,0.03035152 1803,553.8410,197.4690,22.4010,47.4450,0.03019189 1803,433.1400,198.2490,23.4960,56.7050,0.02932011 1803,548.7050,198.9210,68.4310,69.4030,0.01381922 1803,195.4380,216.8640,29.1390,64.1360,0.01189296 1803,396.2580,199.2370,64.5360,72.5920,0.01122025 1803,109.0150,199.6200,148.7190,53.5160,0.01089172 1804,364.5840,207.0700,25.0680,58.0460,0.71302271 1804,577.4830,206.1640,28.0080,67.8640,0.43594283 1804,548.2320,196.2180,21.5550,50.9190,0.41085482 1804,519.7850,201.7090,22.1920,49.6570,0.31813425 1804,480.6030,203.4280,21.3360,47.6750,0.26410070 1804,569.1720,205.5150,25.0390,57.9610,0.16182448 1804,600.4940,203.6410,24.2640,55.1740,0.11178627 1804,564.9970,197.0570,20.3810,49.2170,0.07748687 1804,70.2010,306.8300,39.2770,103.9160,0.07652457 1804,407.3340,206.4820,27.1260,64.4620,0.04163857 1804,470.2720,209.2510,20.5250,40.1330,0.02353280 1804,548.6990,202.2270,74.6140,67.8530,0.01961466 1804,551.8000,200.0070,37.8780,59.0570,0.01561341 1804,433.6820,202.6310,21.1840,37.6520,0.01543865 1804,589.8740,201.5840,28.0940,68.7650,0.01457889 1804,454.7180,189.4510,168.1680,62.1970,0.01127475 1804,401.9620,200.8850,124.1930,58.7530,0.01090893 1804,12.5372,215.1760,213.2178,57.6940,0.01019879 1805,367.9850,206.2450,27.5290,63.8300,0.77419537 1805,583.9650,200.2140,29.1390,71.0260,0.65249193 1805,541.2470,195.5030,23.9450,54.5220,0.59366220 1805,565.0930,193.5530,22.1950,53.4480,0.31056932 1805,551.2220,191.4950,26.1640,58.0510,0.13487050 1805,489.2610,199.7600,24.1620,53.4380,0.11543804 1805,402.3790,211.1610,28.3740,70.9030,0.10605077 1805,606.2220,201.4640,26.2360,67.9000,0.10214076 1805,442.0660,197.2710,21.2180,47.7970,0.05552414 1805,575.3690,192.7430,28.8390,65.0990,0.05456968 1805,348.1710,204.1270,19.1700,37.4200,0.01109270 1806,411.5330,203.4560,32.0580,77.7410,0.81790262 1806,378.3990,204.0270,29.3050,70.5200,0.74129707 1806,601.0860,192.1820,31.8160,81.6260,0.66561335 1806,576.9030,194.6320,22.0790,53.1140,0.37467074 1806,514.9500,200.1030,21.7540,46.5580,0.33644336 1806,594.9240,194.6790,24.5310,66.6930,0.16730744 1806,390.0450,202.2440,36.5930,79.6510,0.05455717 1806,492.6480,210.5850,21.2160,36.6150,0.05311488 1806,583.8460,195.6400,25.5570,60.7870,0.02480030 1806,413.7170,237.1460,23.7670,44.4110,0.01939053 1806,1.1130,328.3120,36.1100,108.1430,0.01554545 1806,560.8150,178.7940,79.1850,86.7140,0.01181003 1806,507.6940,195.5860,42.2110,59.2610,0.01140847 1806,392.5120,191.8830,64.3980,99.6590,0.01099791 1806,53.3180,199.0010,193.8970,60.7230,0.01041000 1806,225.3220,198.2490,23.8710,49.8520,0.01034836 1807,422.2330,202.6080,30.8010,78.1240,0.80695367 1807,388.7510,198.2210,31.6850,77.9950,0.77397442 1807,540.6810,192.5610,25.8280,58.1050,0.27617660 1807,507.4770,208.5100,24.0920,39.9150,0.06299094 1807,401.9260,201.6280,32.1140,72.5710,0.05821882 1807,610.4740,185.2950,26.0420,71.2660,0.04599541 1807,384.7920,187.1500,59.9330,102.3940,0.02028269 1807,382.3530,197.5090,24.6950,59.9190,0.01951045 1807,39.3313,215.6910,34.5908,65.4170,0.01290721 1807,53.7968,197.8150,203.0902,57.0130,0.01196644 1807,434.1210,197.5240,33.4800,79.8820,0.01128608 1808,434.7410,203.4060,33.2240,86.8890,0.78293329 1808,404.0310,200.9540,33.8120,86.5840,0.68586934 1808,570.4260,196.0000,26.0440,56.9640,0.56603765 1808,618.2570,201.7440,21.4890,60.3940,0.33821931 1808,418.0470,202.3460,32.8880,81.0350,0.10369134 1808,524.2560,212.4330,22.1980,39.9410,0.02073573 1808,10.5670,213.7660,210.6740,58.7820,0.01677934 1808,398.2190,202.3040,26.5110,64.5260,0.01484484 1808,254.3060,439.6770,29.2150,57.5990,0.01030552 1808,386.0140,200.6900,21.4220,50.4870,0.01018082 1809,463.3070,202.6280,39.6550,106.9600,0.78023422 1809,424.1420,206.0080,38.6960,95.5600,0.76749694 1809,589.9440,197.3590,28.0390,62.4030,0.21557638 1809,539.2340,257.9110,25.6050,58.2540,0.04386406 1809,395.0570,204.7360,24.4870,56.6050,0.02350823 1809,50.5946,211.9470,221.2254,54.9350,0.01626910 1809,418.6690,208.9540,26.9170,74.4350,0.01623330 1809,466.5440,241.7570,27.7240,63.4110,0.01499698 1809,314.1730,261.2170,42.4990,95.5500,0.01042197 1810,498.5850,200.2980,44.6480,114.9390,0.82879990 1810,446.0160,202.5470,40.8210,110.6150,0.81587672 1810,616.7710,196.9970,22.5390,59.3150,0.43258914 1810,407.9740,199.8760,28.7350,73.1170,0.12232168 1810,440.1100,213.0250,32.1010,79.5530,0.11052688 1810,435.0940,207.3090,23.2550,62.4070,0.07893608 1810,377.6080,193.5290,23.7170,49.5460,0.02614058 1810,306.2140,255.0200,48.2610,101.3750,0.02366767 1810,113.4610,208.9120,30.8670,49.4700,0.02309824 1810,504.7450,245.2260,30.7530,73.3120,0.01901767 1810,613.7390,205.8810,26.2610,104.8380,0.01411218 1811,470.1550,199.0310,51.2950,129.3340,0.83998740 1811,546.2920,198.9110,48.7400,129.7050,0.66223907 1811,453.8260,191.8890,28.3260,84.0310,0.07253398 1811,462.8450,198.8490,34.1700,88.3880,0.04886872 1811,550.8280,246.7230,33.4650,89.9490,0.02329142 1811,425.7750,195.4680,30.1280,79.0970,0.02044185 1811,517.2050,185.6710,68.3860,125.4900,0.01629574 1811,102.8910,210.5170,33.0980,58.8640,0.01464294 1811,501.8490,190.3700,51.4890,118.8420,0.01243699 1811,481.5140,254.3380,27.7670,70.0990,0.01052757 1811,555.3160,196.2950,33.5310,82.8200,0.01048915 1812,497.8040,199.8170,56.3010,147.3940,0.85848302 1812,593.7410,197.1370,45.7770,162.8790,0.66186094 1812,497.4120,201.6610,35.6910,96.8590,0.08347859 1812,445.7660,202.5080,26.2160,68.3900,0.05227596 1812,522.7040,210.9990,30.8810,80.9830,0.04106413 1812,18.8027,216.3860,198.0003,64.6070,0.02694486 1812,383.7450,196.8950,21.2080,41.9120,0.02017989 1812,68.0814,311.0720,37.6236,88.5200,0.01411505 1812,598.6780,272.5980,32.5190,87.3350,0.01056018 1812,473.8670,196.2210,33.9710,92.4910,0.01026948 1813,550.1480,208.5240,61.9600,164.7560,0.59097147 1813,540.4930,198.6060,49.9220,127.6930,0.08498780 1813,500.3160,225.1770,36.1120,92.8140,0.06192894 1813,62.3627,221.2290,208.8353,55.0560,0.03647126 1813,569.8210,259.1940,38.2360,113.0100,0.02409621 1813,118.3420,212.9580,70.7510,49.6250,0.02300019 1813,568.6410,212.3300,36.9170,87.2790,0.01453572 1813,568.9000,184.3910,61.5520,147.8550,0.01423953 1813,434.6660,2.0843,31.7910,71.2447,0.01041423 1814,544.4590,259.2620,32.0820,79.3270,0.03649145 1814,6.5698,216.7940,209.5622,61.6260,0.02727634 1814,390.0730,199.5540,22.8160,45.1860,0.01428003 1814,3.1124,229.2610,357.8816,60.2830,0.01415717 1814,540.1000,212.8880,34.3570,105.8170,0.01117144 1814,500.6230,239.5910,43.4720,104.6300,0.01090760 1814,46.3477,245.6860,30.6542,53.2380,0.01013879 1814,105.9330,214.6180,70.4200,51.8690,0.01009975 1815,576.5410,297.4710,34.1840,77.7770,0.06183903 1815,390.1960,192.1520,22.8850,51.7990,0.04868807 1815,168.6290,216.3420,27.7530,55.8890,0.03949546 1815,47.2850,225.7200,226.5680,54.7930,0.03308656 1815,612.6470,182.9290,27.3530,130.0820,0.02230035 1815,172.6760,236.7640,27.3340,48.4160,0.01271825 1816,430.1040,201.0750,19.9990,35.3310,0.04218526 1816,6.5559,230.0190,227.5721,54.8900,0.03238293 1816,409.1380,216.3530,26.9780,58.0860,0.01125137 1817,397.4320,199.7950,20.4150,42.0680,0.09652378 1817,433.8560,200.4570,22.9600,46.1620,0.06574871 1817,104.1300,292.2880,25.9360,50.5700,0.03425042 1817,74.7277,218.8470,178.5373,69.2860,0.01651707 1817,131.2990,267.2300,41.7000,87.9850,0.01331095 1818,402.4190,204.3150,20.3580,40.9360,0.24882248 1818,109.0680,252.1170,33.4760,72.2430,0.03404788 1818,444.7860,217.6090,31.1320,73.6710,0.02423424 1818,489.9480,205.8770,20.0440,35.3140,0.02319168 1818,241.3220,210.7650,24.3430,46.6670,0.01304968 1818,97.0807,222.6730,146.3993,79.9300,0.01073909 1819,85.8132,260.6550,40.4238,93.0380,0.15607850 1819,407.7530,204.2520,24.6220,55.5040,0.12167588 1819,451.9360,202.4970,19.7870,36.3260,0.05196290 1819,477.4760,223.2970,30.7390,75.0000,0.03847137 1819,69.3791,238.5480,77.1719,85.9890,0.02102434 1819,58.5948,236.4710,30.1445,49.9590,0.01936412 1819,500.2300,207.7190,18.8910,37.2940,0.01436653 1819,37.5545,220.6410,142.2155,74.8160,0.01334829 1819,403.5250,200.3990,115.2750,58.2150,0.01246203 1820,461.9000,198.8620,21.5350,41.4570,0.15415557 1820,422.4980,199.5120,25.6330,59.4600,0.15389454 1820,22.9004,239.2300,39.6720,63.9000,0.08080730 1820,44.1381,301.5180,37.6327,86.6240,0.03511251 1821,434.0760,203.7440,20.9760,47.7870,0.36294469 1821,473.1320,200.4550,22.1960,41.5940,0.18339889 1821,523.7210,205.9570,19.0320,32.8460,0.03094028 1821,65.9062,214.4270,210.1278,53.6740,0.01404730 1821,441.2120,202.1780,31.4220,54.9820,0.01160784 1822,441.4180,206.7160,22.4730,49.3630,0.43727735 1822,531.8020,208.1280,19.2840,33.8360,0.06132969 1822,457.0020,202.3350,20.1950,45.9780,0.03097367 1822,55.1276,219.4810,206.3704,60.9790,0.02994800 1822,5.5678,232.1110,367.8312,59.4430,0.01769218 1823,448.4450,207.1260,23.6250,51.6860,0.61990553 1823,481.7020,201.2400,21.5860,45.4080,0.22177249 1823,1.0000,227.7680,236.0130,56.3820,0.05561297 1823,538.5720,203.7960,20.1110,38.9230,0.02422820 1823,350.4460,318.8230,26.9770,55.2680,0.01823147 1823,122.0660,222.2430,184.4050,66.2990,0.01519412 1823,93.0465,212.2340,166.8345,51.3700,0.01479416 1823,133.7460,213.8200,35.0590,66.3890,0.01218890 1823,385.8820,205.3390,20.5940,36.2790,0.01122124 1824,452.7210,204.3870,26.1460,56.5440,0.75877672 1824,490.1410,199.7750,21.8420,51.6020,0.56547326 1824,505.5620,198.2660,21.3680,54.6000,0.46496817 1824,100.7592,288.6550,28.8538,57.3820,0.06284955 1824,541.7140,204.1260,20.6680,39.4970,0.05855719 1824,165.0260,238.7450,28.2560,48.4190,0.02933505 1824,211.6020,243.7590,24.5940,49.1330,0.02737821 1824,1.0000,220.2110,217.3460,54.2790,0.02703724 1824,102.5510,205.9720,26.0090,54.6650,0.02288841 1824,14.1793,205.5830,137.3167,53.8990,0.01746747 1824,369.8910,202.9880,21.1790,39.8800,0.01105982 1824,59.4686,202.3630,57.4824,45.4060,0.01040715 1824,430.4270,187.5270,122.2450,71.5300,0.01024668 1825,470.7180,206.7940,26.7650,63.9630,0.71862364 1825,546.3190,195.8300,27.8900,67.6980,0.71475732 1825,507.7980,200.6610,23.5560,55.2430,0.70013642 1825,58.0874,206.3200,36.3015,84.8700,0.14004676 1825,1.0000,222.0930,203.9550,60.2270,0.03823262 1825,362.3750,204.6670,26.0250,44.6800,0.03578217 1825,481.5620,201.7670,28.6460,64.6370,0.02704466 1825,19.0481,315.7940,36.6556,82.6890,0.01888879 1825,8.1160,209.7970,64.2707,50.8110,0.01839794 1825,145.9700,243.4520,31.2060,56.5360,0.01167420 1825,493.5470,200.0360,29.7970,61.7610,0.01140739 1826,511.2220,199.5250,31.7800,80.9160,0.69094837 1826,553.7140,195.5480,25.8880,61.7400,0.63703907 1826,63.1016,206.6580,43.7704,95.7650,0.11375666 1826,29.1157,203.6230,33.2974,68.1350,0.07904723 1826,380.6420,198.4050,27.4640,55.4330,0.05386557 1826,209.2330,217.4660,48.3120,112.6670,0.02594813 1826,584.7840,206.1230,22.6500,38.1910,0.02396309 1826,1.0000,328.6730,29.0443,101.3360,0.02345356 1826,21.4518,210.5620,125.6702,84.3350,0.02068410 1826,172.9010,243.5670,30.5120,57.2540,0.01099855 1826,9.8500,203.0190,74.1442,73.1110,0.01027037 1827,591.2770,197.8650,31.3870,74.6150,0.83060819 1827,544.3310,205.5560,36.6030,89.0780,0.78613973 1827,21.2481,213.7360,45.5062,115.3440,0.48974448 1827,384.9620,205.5840,22.0210,40.2670,0.07094011 1827,8.3693,211.6990,39.7108,100.7910,0.02912041 1827,221.0080,244.1510,28.6760,61.5300,0.02676290 1827,1.0000,347.7980,28.6888,112.4330,0.02262793 1827,2.3020,208.3280,30.7264,77.2010,0.02185161 1827,35.7863,219.3190,28.9316,72.8900,0.01517182 1827,579.4940,180.9160,52.6170,113.8000,0.01469219 1828,584.7250,206.1650,38.6240,101.5740,0.83665949 1828,1.0000,216.1520,35.5705,129.5360,0.31549898 1828,542.2500,208.2260,26.3290,44.9290,0.09202225 1828,190.2190,257.8700,34.9310,82.3140,0.05992319 1828,390.5280,208.2860,21.5660,34.9030,0.04415822 1828,601.1570,218.6460,29.6960,85.3660,0.02700979 1828,181.0020,235.8020,90.9340,87.6800,0.01932125 1828,1.0000,368.2130,26.5334,110.8970,0.01848149 1828,2.1897,224.0640,24.4404,77.0320,0.01821435 1828,133.4370,250.9380,24.9030,54.4680,0.01382902 1828,542.1480,198.0490,42.4270,74.8400,0.01010557 1829,391.7200,203.0260,23.0510,38.4750,0.04320810 1829,1.0000,381.4380,43.6045,130.5620,0.03977730 1829,77.2639,282.1930,27.4961,58.7120,0.02950359 1830,395.1470,203.0710,22.3730,35.1400,0.08077343 1830,56.0028,281.9670,32.0602,72.4440,0.05756306 1830,390.4110,195.5670,35.7630,53.5590,0.01101158 1830,94.6251,261.2730,30.9949,74.2070,0.01012327 1831,395.0530,206.3440,22.0920,39.8000,0.09321380 1831,280.5630,217.1190,29.8960,60.1340,0.02297240 1831,203.2010,259.9010,33.8200,65.2760,0.01975431 1831,570.0220,210.2200,24.9220,43.7280,0.01481705 1831,138.1450,351.6220,46.4770,90.0580,0.01213531 1831,209.6890,221.0940,126.4290,58.9980,0.01072020 1832,236.3170,331.1140,35.9020,81.7820,0.24819008 1832,404.2350,211.0770,23.0230,39.1910,0.13952444 1832,583.5450,219.7350,44.4210,115.3270,0.01063116 1833,421.1700,212.8190,21.6790,37.6810,0.13616966 1833,1.2671,331.3390,31.6627,88.0690,0.01331673 1833,297.2960,308.1120,31.1110,78.5260,0.01280069 1833,526.8150,263.8710,26.8860,48.6390,0.01088719 1834,425.4050,211.0680,21.4510,39.8840,0.12657925 1835,424.6760,212.1820,23.4560,42.6450,0.15655126 1836,434.8970,214.9040,22.3560,35.5060,0.14930899 1837,452.0530,221.6140,22.7600,39.4580,0.16763715 1837,273.5390,234.3830,25.5240,51.4400,0.11711918 1837,448.2230,215.6660,39.2290,54.0960,0.01031953 1838,468.8100,227.8360,22.3860,40.1840,0.13387807 1838,601.3870,243.6920,23.6130,33.7670,0.01457846 1839,480.3200,223.9050,21.8340,44.6730,0.28082216 1839,472.5430,225.5450,20.8030,39.6400,0.01224577 1839,472.8010,217.4260,42.9340,63.9670,0.01059698 1840,499.3040,215.7760,24.3190,48.9600,0.24766533 1840,509.8520,219.2710,21.7840,44.8120,0.01744661 1841,536.1350,202.3870,25.4850,56.1330,0.39011732 1842,585.2280,208.8650,31.3500,70.9440,0.57697898 1842,578.6920,193.8830,52.9550,107.0300,0.01950344 1843,449.4570,221.4340,22.3900,40.0200,0.03262199 1843,553.8560,202.8570,19.3950,29.0020,0.01578143 1844,577.0970,195.4540,19.9010,33.4030,0.07065227 1844,488.2110,214.8740,23.8460,50.0640,0.04959786 1844,447.1210,196.3180,26.1480,58.5170,0.03157455 1844,548.3840,197.9380,19.7900,32.0400,0.01155383 1845,485.8980,199.9950,27.0520,63.7380,0.09895456 1845,547.2990,231.2240,26.5450,56.4390,0.04718385 1845,548.3000,199.7120,33.6670,80.4980,0.02078521 1847,613.1190,222.7310,26.2030,78.8900,0.01352595 1849,547.3550,349.1060,32.7620,83.5090,0.03871145 1849,482.6800,287.5500,34.3420,84.8680,0.01841228 1849,189.3870,136.5860,30.7740,61.9850,0.01298120 1849,106.0340,208.2940,67.1310,50.7310,0.01186007 1850,428.2660,258.3810,23.0680,55.5290,0.02285467 1850,440.8080,242.7810,34.3140,70.4410,0.01026869 1853,67.0675,216.0270,72.7155,49.1380,0.01503986 1854,279.4540,365.5730,27.3430,42.5320,0.01113116 1855,34.7121,336.6670,44.5061,98.6090,0.04539005 1855,280.0030,365.8060,26.8840,41.9810,0.01440643 1855,35.1485,254.6120,27.3064,42.2960,0.01223790 1856,113.7540,289.2470,31.7590,67.0180,0.05291257 1856,279.5850,365.7840,27.5210,42.7160,0.01037626 1857,133.2120,292.1860,26.4530,58.3940,0.01913169 1857,280.5600,366.0840,26.2930,40.3350,0.01140361 1858,140.5980,287.7060,25.2910,57.3300,0.02583935 1858,280.1750,365.9760,26.6300,41.8310,0.01465367 1859,139.6300,288.3400,25.9000,59.4730,0.02571052 1859,280.0640,365.4060,26.3760,41.3210,0.01187351 1860,139.6730,286.6230,26.2290,60.4260,0.02077595 1860,279.6400,365.9770,27.1660,42.3320,0.01522837 1861,139.5130,287.0900,26.0260,60.6180,0.02810078 1861,280.2400,365.7820,26.4600,41.8710,0.01242147 1861,130.7820,232.9280,35.8570,77.5390,0.01222978 1862,140.1630,288.1920,24.9540,58.0750,0.03161959 1862,280.3940,365.9590,26.5030,42.6300,0.01338122 1863,139.7710,287.0540,25.6500,59.6130,0.02759018 1864,280.5500,366.3490,26.5900,40.8920,0.01494916 1864,139.8050,286.3200,25.8390,60.2180,0.01418146 1865,139.7050,287.5650,25.4430,59.2400,0.02428988 1865,280.9510,366.0090,25.4150,40.0920,0.01319121 1866,139.6570,287.1850,25.8210,60.1720,0.02078785 1867,139.3950,286.7590,26.1140,61.2510,0.01990434 1867,279.5100,365.4210,27.0740,42.9380,0.01256087 1868,139.6250,287.5790,26.0470,59.1320,0.02656292 1868,280.0640,365.2820,26.6300,42.2060,0.01176931 1869,139.8470,287.1540,25.1790,58.4710,0.02764246 1870,139.3890,287.5240,25.8600,60.2010,0.04499237 1870,568.6690,306.7410,24.6590,41.7880,0.01687706 1870,576.3270,268.4330,28.9310,63.4280,0.01227498 1871,449.6240,244.5940,23.1120,46.6220,0.03776743 1871,138.4910,286.0150,27.5430,59.9750,0.03464074 1871,280.3800,365.2300,26.2160,41.8430,0.01420514 1873,139.5420,287.4020,26.2330,60.1660,0.02390584 1873,279.4310,364.6890,26.6640,42.7700,0.01041733 1874,485.6030,225.3160,37.5180,77.1710,0.26477998 1874,139.0420,285.8430,26.2830,58.4370,0.01645563 1875,139.0040,288.1470,26.3710,59.8270,0.05721879 1875,280.3450,365.4460,26.4790,42.2490,0.01131408 1876,613.6120,208.9720,26.2030,70.3970,0.62340283 1876,139.6120,286.5030,25.8470,60.8880,0.01358803 1877,440.8950,279.1620,31.4060,79.3220,0.13638005 1877,139.5000,287.4000,25.9750,59.3670,0.03659361 1877,512.9910,297.0890,26.6290,51.2090,0.02233388 1877,279.6450,365.5080,26.9520,42.2620,0.01338593 1878,585.4030,205.8120,28.8910,68.4560,0.60326487 1878,139.7600,287.2880,25.7420,59.3420,0.02093668 1878,576.8320,194.1580,56.6800,105.3450,0.01508855 1878,93.6679,318.3930,29.4531,63.2530,0.01086699 1878,110.1750,221.5740,74.1940,85.7090,0.01044070 1879,570.6040,205.8930,29.0270,67.9720,0.60651678 1879,496.3120,298.5690,34.1550,78.9310,0.04027073 1879,133.4110,220.9350,43.5520,107.8710,0.02219599 1879,139.4820,285.2660,27.2700,61.6990,0.01735797 1879,539.9780,318.4750,22.4570,35.0170,0.01725912 1880,560.2840,206.7370,28.4750,67.1610,0.60158378 1880,104.5190,315.5260,29.3430,63.1500,0.05691501 1880,142.4010,252.3640,30.6140,67.2740,0.01870195 1880,572.2810,209.0230,23.3640,57.8260,0.01628020 1880,143.8990,279.0000,26.7940,62.4830,0.01147060 1881,551.1930,206.2210,28.9110,64.3740,0.67114347 1881,160.6820,263.9490,30.4060,68.3740,0.01119872 1881,565.0110,209.1920,23.2700,55.2450,0.01069937 1882,543.7350,207.2000,25.4080,57.4310,0.59744596 1882,189.6730,247.6930,26.7510,56.9180,0.09246431 1882,357.5930,198.4850,25.8380,49.7230,0.01040518 1883,534.6620,208.9120,28.3520,61.4810,0.44950390 1883,212.1660,244.2940,24.5520,45.1840,0.03028110 1883,49.8263,247.6320,25.9641,51.8530,0.01228852 1884,534.7140,216.2300,26.3100,59.0090,0.42546412 1884,528.4010,210.6460,46.8790,79.5440,0.01349198 1884,225.5670,226.6180,28.4030,51.4670,0.01347222 1885,540.1290,208.6070,27.6990,61.8230,0.55178285 1885,90.2067,245.0330,24.7133,42.0120,0.01894909 1886,583.4330,208.8850,26.0610,61.6680,0.47221628 1886,418.2640,205.3400,26.7760,53.1770,0.04954209 1886,518.1040,317.3210,40.9350,97.0040,0.02356274 1886,80.8055,297.2380,37.3635,89.4470,0.01770191 1886,115.3220,240.3390,22.3700,41.6350,0.01627865 1887,422.3010,275.8100,34.4200,95.2070,0.28516555 1887,481.3280,319.5280,35.6410,78.0360,0.04122062 1887,410.7830,247.7170,59.7020,102.7530,0.01059408 1888,356.0110,276.2180,30.6470,75.5420,0.16979316 1888,129.6280,250.3150,24.4060,38.9950,0.01791402 1889,309.8740,233.3510,27.9660,69.5720,0.06258621 1889,312.8120,225.6740,42.0080,98.9560,0.03149286 1889,67.4387,215.0080,75.9243,48.8760,0.01524729 1889,449.2510,154.2210,23.8510,50.8490,0.01347719 1889,18.5178,227.7300,204.2422,59.1570,0.01124569 1890,278.7560,240.6640,27.1620,50.2190,0.02005162 1891,373.7470,258.6490,31.8300,85.2460,0.03193343 1891,486.1370,224.0160,19.9280,38.2660,0.02787386 1892,336.6910,224.5240,35.9640,91.2090,0.07048921 1892,348.9070,252.0490,31.9520,93.5250,0.03726174 1893,309.7150,234.7730,26.3110,54.7750,0.04982291 1893,207.1030,214.6370,31.8340,78.1770,0.02438402 1893,367.4810,200.2910,22.5760,40.8210,0.01758705 1893,534.9050,226.3030,22.2330,36.4890,0.01224738 1894,432.7950,205.9460,20.5270,37.6700,0.03853219 1894,570.1310,232.4760,23.2870,39.8600,0.01267891 1895,148.2240,236.5430,30.3800,65.4630,0.17678155 1895,232.3780,234.3740,31.0770,73.2950,0.04032601 1895,232.7240,216.7870,26.1710,60.2040,0.02625188 1895,31.4535,238.9150,31.5809,65.8740,0.01056491 1896,388.7680,208.7330,18.7920,32.0960,0.03556654 1896,135.4140,236.9740,26.9300,61.1960,0.02706891 1896,307.2910,238.5060,25.0290,40.3410,0.01765322 1896,191.3840,229.1390,204.7910,55.2650,0.01303689 1896,519.0710,128.6990,25.2950,52.0870,0.01171241 1896,98.8980,240.4810,25.9300,43.0230,0.01016586 1897,255.9740,202.9520,23.8070,46.9540,0.02834690 1897,236.1280,225.1830,135.7430,55.2270,0.02690880 1897,443.4490,208.5420,20.7790,37.6940,0.01953416 1897,395.3420,205.6990,18.5440,30.4000,0.01744201 1897,68.8102,227.1220,232.4498,55.5840,0.01521631 1897,289.5100,233.3910,44.6960,48.1810,0.01487619 1898,520.8110,214.4600,20.1990,36.4240,0.03802097 1898,460.5530,207.7750,19.8340,33.1570,0.02537059 1898,194.5320,216.5750,22.5010,45.7520,0.01279030 1898,555.0290,112.1640,24.7200,56.1470,0.01130458 1898,297.0720,232.7570,38.2510,56.0630,0.01104500 1899,476.2830,210.9590,20.5750,35.7740,0.03360528 1899,540.5290,215.8390,23.4510,34.3940,0.02262416 1899,212.0690,240.3900,22.4900,44.1910,0.01229604 1899,148.4320,281.6680,32.5390,75.4440,0.01130877 1900,496.5770,217.6710,20.1800,35.2810,0.08326488 1900,570.4550,218.2520,20.5870,37.0340,0.06072159 1900,1.4007,225.0380,204.3393,62.5080,0.01388575 1900,600.9650,106.0990,27.4300,62.6280,0.01042842 1901,602.9090,220.5260,21.8010,43.5460,0.15329635 1901,516.6230,217.2200,21.0920,33.3350,0.02493306 1902,544.0130,220.9720,22.4820,37.3280,0.04681870 1902,42.7653,232.5270,250.1627,55.5980,0.02486248 1902,535.9490,214.5500,36.6330,56.8880,0.01138232 1903,187.0050,220.5260,30.4150,64.0960,0.02925096 1903,564.6650,218.1160,23.9670,40.8020,0.02639090 1903,8.0613,229.0960,221.2757,60.7420,0.01947466 1903,9.9791,213.6630,54.4769,64.8870,0.01214561 1904,109.8300,227.7320,27.8080,47.2770,0.02502248 1904,184.8760,219.5010,28.2310,57.7310,0.01494123 1904,587.0270,224.6230,24.9270,46.6980,0.01155894 1904,73.9356,221.8680,194.5084,58.4000,0.01086767 1906,189.9640,210.3600,28.8470,66.4550,0.02757978 1906,66.1542,221.9910,198.9998,58.2740,0.01400118 1907,72.7720,226.4920,32.3310,60.0270,0.06614628 1908,191.6040,216.7830,28.9060,61.4950,0.02617772 1908,124.5920,231.1730,30.1500,67.8640,0.01156129 1909,197.0150,213.6370,27.3590,62.1970,0.02556049 1910,192.5740,229.6930,22.7780,47.6150,0.04056287 1911,1.0000,226.3560,228.9180,54.3120,0.01738333 1911,109.3150,241.7000,25.5940,52.1160,0.01605595 1911,566.2190,331.1050,36.1520,90.0460,0.01153207 1911,176.9740,220.5350,26.4140,52.8760,0.01074544 1912,442.7210,274.2510,26.8860,53.8780,0.07941933 1912,482.9760,304.6110,25.8300,53.5890,0.01387118 1913,482.4190,276.6720,33.8230,81.3620,0.12016390 1913,90.3887,241.3490,24.8813,52.0210,0.01662882 1913,432.1870,273.0070,22.5150,41.6960,0.01247128 1914,451.2040,281.5520,23.6570,48.6400,0.07336859 1914,81.8388,230.3440,28.3822,68.9820,0.02982938 1914,481.1250,306.4300,24.3600,50.0630,0.02592299 1914,418.6590,260.7660,20.6470,38.3270,0.02233209 1914,598.0860,320.8690,38.7290,109.3750,0.02096141 1914,364.0540,241.8650,20.8350,37.3300,0.01344372 1914,146.7610,110.2910,41.5370,85.2230,0.01307687 1914,360.1030,198.4390,34.7580,55.9340,0.01051578 1915,68.1852,234.6460,29.3752,64.7480,0.06373284 1915,370.0000,202.1670,38.5450,57.7800,0.02821916 1915,404.0060,262.3170,20.9210,37.3180,0.01666725 1915,471.0390,209.7040,35.7270,56.0220,0.01635300 1915,596.9930,350.9450,34.6380,76.0280,0.01320546 1915,143.3190,225.4530,32.5910,58.8000,0.01179480 1915,270.8790,211.5130,25.9770,46.7380,0.01178800 1915,476.0380,222.4320,22.1170,38.3420,0.01148793 1915,534.0850,284.3030,37.9220,100.5730,0.01078119 1915,167.1760,240.9620,25.9190,59.9550,0.01007906 1916,158.6280,244.3920,22.3880,50.7170,0.02065656 1916,390.4930,202.6970,35.1440,58.4210,0.01653101 1916,49.8231,238.7640,26.5303,58.7550,0.01288553 1917,137.2250,241.6620,26.4340,57.6320,0.10779415 1917,19.1141,228.5610,35.7088,78.5510,0.01959966 1917,417.1500,198.8140,37.8530,64.3360,0.01529777 1918,464.4580,200.1700,37.1490,83.5960,0.11389767 1918,119.2330,247.7750,25.4960,55.4650,0.07736619 1918,442.7390,216.2850,36.0810,81.1810,0.01070659 1919,98.8173,239.1590,24.9507,54.4210,0.20783092 1919,515.9470,204.8290,36.8040,71.5710,0.01424723 1919,58.8866,210.4890,32.0844,63.9850,0.01226960 1920,79.9364,248.7310,26.2126,53.0610,0.12732753 1920,267.6630,211.0690,29.0110,51.5900,0.01235423 1920,49.8802,265.4290,24.7125,48.2260,0.01233142 1921,72.3880,242.5370,25.1054,52.8570,0.12087303 1921,273.5760,206.6510,25.0990,41.9990,0.01537689 1922,76.3674,239.9150,24.8336,56.0390,0.10947724 1922,42.1147,214.6940,28.3013,47.9990,0.01310189 1922,482.4560,222.2980,26.8520,48.9420,0.01172752 1922,271.9790,197.6230,26.1510,43.6400,0.01024517 1923,84.2371,227.0440,25.8419,55.7520,0.06756721 1923,561.5140,209.6020,33.9980,74.3240,0.04367869 1924,383.8200,204.1570,22.4430,41.9260,0.01353563 1925,230.0560,194.9680,25.9490,60.9100,0.02589242 1925,603.6000,302.1190,32.5890,75.1000,0.01756585 1925,376.8230,204.1280,21.2600,33.4970,0.01437146 1926,157.5860,223.6400,32.5770,71.8340,0.01744888 1926,102.1870,214.3490,68.0680,51.8840,0.01303938 1927,136.5930,225.9840,34.3880,51.2960,0.01075794 1928,72.7436,216.9370,68.3234,52.9210,0.01444044 1932,387.9900,243.0750,28.9870,68.1490,0.26185870 1932,388.1210,208.3320,29.8690,72.8990,0.02830630 1933,376.2570,228.8240,37.0600,88.2100,0.81432581 1933,17.8130,222.9400,178.8600,67.6170,0.01790117 1933,385.1410,210.5840,26.1390,53.5740,0.01728553 1933,49.9397,256.7050,26.8584,37.5890,0.01363846 1934,376.7100,228.9790,35.3280,86.5330,0.80738515 1934,522.5650,201.8910,35.8080,98.2040,0.01526795 1934,493.5440,210.5290,32.5900,77.6900,0.01496733 1934,65.9909,225.7710,199.5691,60.6940,0.01460626 1935,377.0200,225.2710,36.3970,87.3530,0.79714888 1935,65.6252,224.6220,201.7088,59.3660,0.02969341 1935,134.9050,218.8420,64.9380,52.0950,0.02038773 1936,397.4640,210.1280,40.1150,100.4420,0.75821114 1936,211.8710,215.7910,33.2920,67.7500,0.01611454 1936,165.1280,213.5480,71.3850,49.0460,0.01106886 1936,80.8454,221.8670,189.9076,61.3600,0.01098135 1937,430.2240,214.3690,43.5550,117.1960,0.78977662 1937,453.8550,213.9740,57.3920,124.7820,0.01758097 1937,410.1870,231.8420,36.9420,85.5850,0.01107055 1938,478.1230,218.2860,55.9070,139.0110,0.75093693 1938,293.0100,245.5190,37.3530,56.7600,0.01896805 1938,416.6600,208.4590,23.7830,38.5090,0.01848630 1938,484.9360,219.4990,36.9890,89.9710,0.01618976 1938,498.9960,214.3990,64.7420,148.8500,0.01471534 1938,116.2200,223.2690,67.8520,51.7450,0.01385727 1939,152.1500,210.5390,71.7370,47.6660,0.02119723 1939,435.1530,206.0800,25.7350,42.8430,0.01979636 1939,311.2080,242.6800,35.7740,66.9750,0.01192000 1940,442.0530,205.4860,22.3400,35.7700,0.08425599 1940,306.9290,240.8880,36.5890,61.6880,0.05807978 1941,456.5950,210.1020,25.0230,40.8970,0.02750236 1942,480.7280,204.6640,40.0850,59.2410,0.03618914 1942,483.2150,207.3940,24.0380,41.8620,0.01677271 1943,519.1360,201.5820,24.8060,44.4260,0.02692076 1943,517.3440,194.6640,40.9910,66.0820,0.01612713 1943,403.9000,212.7820,23.4020,37.3350,0.01373322 1944,412.7000,206.3470,22.0280,38.3370,0.01986265 1944,359.1170,201.6060,93.5210,53.4300,0.01618072 1944,384.7930,204.3550,23.1450,36.8000,0.01271301 1944,402.4560,202.5450,40.4630,52.1050,0.01021543 1945,435.5850,197.2510,21.9250,43.1190,0.12677228 1945,445.2450,198.0880,22.4420,43.5770,0.03656900 1945,398.0930,175.4170,26.9390,58.2320,0.01886021 1945,379.6050,193.5600,109.6020,61.8750,0.01861211 1945,423.5730,193.7160,41.6650,55.1490,0.01777890 1946,474.1000,214.3620,21.6120,46.1430,0.16785331 1946,406.9490,169.7610,36.4130,85.0620,0.03771639 1946,482.2300,213.5280,25.3620,54.7560,0.02813244 1946,465.1310,217.3950,22.0580,45.2730,0.01836923 1946,395.6710,207.2190,20.7320,38.4380,0.01771156 1946,400.6610,196.0830,25.3980,51.4420,0.01087156 1947,523.5510,208.5060,27.3760,58.9520,0.26869226 1947,296.7260,199.2170,22.2040,45.1100,0.05846702 1947,424.6210,200.7980,35.2900,52.7670,0.04906236 1947,500.1090,199.0870,71.0570,93.2590,0.01996792 1948,455.0070,212.1830,21.8630,42.7520,0.07491275 1948,471.4010,210.1860,24.8710,45.5710,0.07236046 1948,427.8670,206.9050,84.4260,55.9090,0.04156959 1948,431.7150,209.8250,23.0170,41.0450,0.02560567 1949,499.3720,205.9400,27.2880,58.2250,0.40019667 1949,521.7720,202.3170,33.3630,75.3580,0.33955154 1949,510.1870,204.2390,28.3010,62.8670,0.06002730 1949,456.3060,183.3360,32.5210,71.7660,0.03067368 1949,503.8060,191.2350,66.3090,96.3750,0.01721411 1950,579.4910,204.4960,30.5580,71.1140,0.74935842 1950,606.4500,199.5580,30.4970,74.7730,0.47353071 1950,495.8810,207.7700,23.3450,43.9010,0.12403744 1951,538.2230,204.5330,32.1930,63.0350,0.23427123 1951,336.4140,198.6030,20.1220,37.2130,0.01872352 1951,359.9520,198.2730,24.4790,43.4990,0.01289582 1952,340.3700,210.7370,19.2230,32.8150,0.06305720 1952,208.8290,222.0790,22.2600,39.9370,0.01006413 1953,356.7880,216.1900,21.2230,34.3820,0.15128569 1954,387.2260,217.0850,19.1860,36.3770,0.21596451 1954,202.8770,220.7920,21.0180,37.6680,0.01811697 1955,196.7340,213.9710,20.7260,37.2550,0.01259237 1955,423.5410,211.0080,21.0830,37.0900,0.01159612 1955,444.6410,213.9810,21.1140,33.2490,0.01100050 1956,558.8520,220.9840,27.0950,57.9330,0.59689307 1956,393.1330,216.5100,20.8270,34.3600,0.08806659 1956,334.2380,216.6690,19.9620,31.2090,0.03401624 1957,411.2160,201.2070,23.2990,47.5540,0.21685301 1957,528.2210,213.5560,23.4150,42.9140,0.17394193 1957,369.7560,195.8180,22.4530,43.6630,0.02470521 1958,454.7440,226.9850,23.2420,50.1280,0.48071641 1958,440.2110,223.7460,22.9630,51.1570,0.03938514 1959,547.9460,212.2810,31.8590,71.9120,0.79142427 1959,574.5750,206.0730,29.2350,65.7330,0.38290510 1959,399.1840,214.1850,23.3480,48.9890,0.02555948 1959,336.5370,201.5470,23.4380,43.9480,0.01505452 1960,369.7380,208.5460,24.6710,49.9280,0.03209142 1961,329.7820,192.7930,21.8400,41.1370,0.06387813 1962,416.6100,178.6590,27.6010,59.9220,0.02400503 1963,366.5570,215.2870,19.7320,34.5640,0.13187967 1963,497.0940,207.3350,33.4310,75.2850,0.01118271 1963,278.1020,203.5120,24.3100,39.5590,0.01025546 1964,395.6110,216.4030,21.4740,42.0770,0.20405112 1964,354.0100,217.1080,19.7930,35.3890,0.08519839 1964,569.0390,195.3670,24.6400,50.4010,0.01786282 1964,281.7150,209.7350,23.7850,35.4030,0.01006843 1965,384.1730,215.4520,22.3820,45.2460,0.34751594 1965,440.7560,191.7050,33.4450,80.1170,0.04859272 1966,459.5330,222.9250,29.2250,67.3250,0.79111826 1966,569.4340,222.9480,37.3600,92.8590,0.74472725 1966,366.7900,205.3100,24.9500,54.3690,0.01095614 1967,406.0780,199.5370,25.1340,58.0770,0.05213862 1968,459.1380,201.2580,27.3390,58.5210,0.03063125 1968,338.4600,198.8180,24.0150,45.2970,0.02142963 1968,378.1550,1.0000,37.6660,76.3051,0.01154309 1970,368.8940,188.3430,22.4460,53.9790,0.02533644 1970,303.7180,165.4390,25.8220,62.3830,0.01681294 1970,357.5620,62.5140,29.9270,67.8630,0.01209972 1971,419.3050,210.2260,22.2620,41.0950,0.03180511 1971,64.2610,203.2700,24.9354,35.4300,0.02082670 1971,374.9510,202.5500,43.0340,45.8490,0.02026753 1971,368.9860,201.8260,22.9520,43.7940,0.01484699 1971,379.4340,208.7880,21.6890,37.8150,0.01443882 1972,419.6600,208.4920,28.6890,62.2330,0.07425775 1972,21.6710,211.7170,22.9279,35.1370,0.03945705 1972,602.8170,208.7930,33.6990,95.1200,0.01480195 1972,33.7420,211.4570,24.5686,33.7070,0.01082495 1973,404.6450,214.5150,17.6300,33.8540,0.12527838 1973,427.9150,215.5810,19.0380,37.6870,0.12272997 1973,447.9770,209.5180,21.8000,38.3210,0.07391927 1973,341.9840,221.3840,18.0840,32.3510,0.03124889 1973,372.1270,207.0460,134.0830,52.9260,0.01067854 1974,416.2290,208.2640,20.3920,41.7680,0.37031224 1974,452.4290,208.8890,22.1700,46.7750,0.32996106 1974,480.8460,200.7160,22.1480,43.6700,0.27902588 1975,500.5960,219.8250,29.2640,64.5120,0.78531444 1975,440.7460,221.6290,24.2070,52.9790,0.64790058 1975,547.4570,216.2010,24.3130,49.9960,0.46407607 1976,502.6190,220.0100,33.6460,81.8830,0.81040847 1976,261.3880,162.6960,29.3940,77.2340,0.04256420 1976,489.9640,241.3100,22.5690,56.1820,0.02432467 1976,504.8570,216.2010,24.2140,52.5950,0.01015564 1977,504.3290,182.1370,26.9170,64.7480,0.02437576 1977,331.0970,176.6010,25.2850,54.4240,0.01642311 1977,566.5290,36.2042,34.3880,86.8558,0.01409624 1978,334.4250,154.4860,33.3970,84.9080,0.06503539 1978,340.2160,189.2110,24.8960,55.7500,0.01786000 1978,373.9270,182.9640,27.3650,61.6960,0.01591515 1978,443.0270,196.7210,30.0300,69.2600,0.01109438 1979,365.5490,213.4180,22.6220,37.6070,0.04782798 1979,598.2740,197.6090,20.8500,33.3920,0.01090784 1980,399.7260,198.4600,21.5280,40.3660,0.15909566 1980,504.3150,199.0440,38.4040,102.4460,0.10428935 1980,335.7450,169.9800,25.4720,53.9160,0.01921936 1981,433.0290,205.1850,22.6280,44.6520,0.29586363 1981,604.8510,191.4430,33.6620,93.6710,0.05633057 1981,420.8120,196.7620,43.1960,67.6830,0.01208788 1981,357.9320,194.3170,24.5120,49.0400,0.01130294 1982,510.8570,214.6190,23.3810,50.5400,0.55216730 1982,414.8930,187.4340,31.8670,78.0440,0.08812978 1982,358.9470,203.4390,22.7770,44.3400,0.01162335 1982,458.0850,217.5670,29.6220,60.3740,0.01030845 1983,507.0760,203.3440,30.7000,71.2810,0.01552995 1983,525.1090,210.8990,34.9050,72.0170,0.01298432 1983,396.6520,204.3270,19.1670,34.9340,0.01019625 1984,424.3510,210.6920,20.2200,38.4930,0.16026326 1984,480.7260,193.0650,26.6290,61.5140,0.05858865 1985,440.5780,196.4140,25.8170,58.0180,0.16308023 1985,489.7040,211.3410,24.7880,51.4150,0.01241938 1986,489.6500,207.4390,21.3230,46.1010,0.29507864 1986,467.8290,209.3380,19.5530,33.7880,0.01162051 1986,523.9210,25.6881,39.5730,93.5529,0.01139357 1987,568.1540,200.2700,31.9420,69.4730,0.78990889 1987,494.9290,46.1099,27.6660,60.3761,0.08200888 1987,479.9120,206.1340,21.0100,36.3730,0.06165273 1987,517.1670,21.2476,33.9660,76.1840,0.01868387 1987,379.6010,68.0238,31.7140,71.8232,0.01638402 1988,308.7010,233.2820,18.7590,34.0880,0.06550770 1988,553.8920,1.0000,36.8250,68.6647,0.01876094 1988,482.1870,143.9380,37.7980,99.8890,0.01161556 1989,460.6470,203.6530,29.9990,56.8480,0.19408992 1989,265.4560,227.5400,20.0990,35.7760,0.02381190 1990,459.5700,208.2770,28.4960,64.6470,0.31878847 1990,213.1970,231.4710,20.2180,36.1100,0.02339578 1990,521.0790,205.0520,26.1350,47.1870,0.01041150 1991,481.2310,214.4370,28.6080,69.8500,0.21265814 1991,354.4510,57.8518,36.0880,71.7292,0.01907260 1991,572.3790,221.5060,29.7560,50.9830,0.01738760 1992,528.9790,203.3680,34.7720,77.9330,0.53506637 1992,371.0290,1.0000,39.0240,72.0882,0.01417279 1993,596.7730,231.3460,28.9930,63.0380,0.11787137 1993,70.8209,218.9560,31.8961,59.7220,0.02045900 1993,410.1570,43.7130,68.2620,204.8620,0.01169845 1993,611.9890,115.9990,28.0110,97.2420,0.01051973 1994,342.6850,78.1314,32.3480,63.9896,0.01762153 1994,399.1240,31.8707,30.7630,73.0153,0.01575922 1994,563.1370,199.1180,34.9130,89.1530,0.01153127 1995,208.9640,243.8350,23.0110,43.3700,0.08183587 1995,520.8680,104.0830,25.8990,55.5720,0.01390256 1996,217.7760,250.1330,21.7210,42.7830,0.05368403 1996,275.2800,58.5701,38.0090,75.1499,0.02102497 1996,525.7360,170.7990,32.7200,84.6310,0.01004996 1997,221.2320,249.5910,20.4210,39.1200,0.03838133 1997,367.4810,13.8140,30.0690,64.0018,0.03316483 1997,45.8801,217.6160,30.5311,61.9650,0.01784322 1998,219.9840,246.6100,21.3810,41.3530,0.10329676 1998,228.2690,195.3770,22.0450,37.1840,0.03174359 1998,35.4860,219.8780,29.0201,62.4330,0.02068635 1998,519.6680,214.3770,30.7350,73.2270,0.01322848 1999,208.8080,249.0200,20.4960,39.8400,0.09208941 1999,216.5770,201.2600,25.0400,38.8140,0.02076990 1999,384.8340,204.9740,21.1160,41.1320,0.01647182 1999,307.2880,208.9120,21.3420,30.3120,0.01500718 1999,411.4040,143.0540,34.6050,88.3620,0.01292173 1999,299.5010,205.9580,20.6040,31.6430,0.01188892 2000,191.6500,253.7980,22.0690,42.8190,0.11877861 2000,429.6950,22.2352,34.3290,77.0554,0.07495008 2000,202.1130,198.8780,23.3480,44.5310,0.04341464 2000,298.3010,209.1800,20.1970,31.7350,0.02712669 2000,414.4810,198.4640,25.3920,57.3580,0.01546234 2000,305.7490,210.9590,22.0800,30.9290,0.01485758 2000,150.1380,252.1350,30.1540,71.9630,0.01467196 2001,169.7130,259.3520,27.2730,64.6180,0.07326842 2001,97.3492,272.0490,35.4018,92.9010,0.06965626 2001,304.0390,209.3850,17.8350,31.3510,0.06712277 2001,199.2930,201.2090,23.4850,47.3050,0.03622575 2001,378.1550,220.2500,20.2530,38.0420,0.02165953 2001,185.9430,199.3110,24.2270,48.9930,0.02096957 2001,315.3790,211.4670,19.5580,30.1740,0.01870295 2002,431.9420,64.0981,33.8730,87.5689,0.08412011 2002,301.1970,209.0660,20.2700,30.0090,0.07075575 2002,115.8000,269.5230,35.2220,88.2280,0.05466005 2002,325.4000,210.8670,19.1010,28.8620,0.04454418 2002,313.5700,209.1660,20.6180,32.6150,0.02090791 2002,355.6570,61.0941,31.1300,68.3079,0.01949872 2002,294.5180,204.8550,46.8200,41.2200,0.01422364 2002,245.0800,199.3220,154.4150,49.6810,0.01252972 2002,418.8250,67.4717,31.8600,85.8393,0.01073763 2003,313.1570,208.1790,18.7000,34.2180,0.16383073 2003,332.7460,209.1480,18.1870,30.8240,0.08320574 2003,323.9770,208.9210,18.4170,32.5240,0.03909328 2003,573.4180,35.4994,35.5910,93.0836,0.02696390 2003,263.4300,202.1540,161.6310,50.3690,0.01513138 2003,284.2620,207.3770,19.4390,34.4000,0.01492308 2003,332.0010,58.7700,35.9000,87.1510,0.01452994 2004,318.5180,212.6250,20.3170,38.9460,0.26885355 2004,190.3920,233.1820,29.6020,63.1430,0.21610019 2004,343.4950,216.7850,18.0610,32.2690,0.06202058 2004,294.6540,210.0640,146.0390,51.1500,0.02948688 2004,329.6500,214.0160,19.4030,37.2100,0.02342662 2004,276.3830,216.7820,19.5120,33.6280,0.01965366 2004,324.7920,214.1010,81.4960,38.9980,0.01396182 2004,355.5080,216.7190,18.2630,32.0110,0.01370972 2004,35.0121,210.4080,494.3589,59.4400,0.01106564 2004,379.6820,217.8640,20.5340,31.0850,0.01087971 2004,136.0130,204.7850,195.8200,59.3120,0.01041664 2004,311.9430,210.2130,44.9570,46.8720,0.01030473 2005,327.0330,216.7770,18.7880,41.3290,0.10581482 2005,352.2510,215.9140,20.5410,36.3460,0.07969334 2005,310.0790,215.1010,61.6980,44.2050,0.05117242 2005,339.7420,218.3640,20.1680,39.0260,0.04204845 2005,269.9700,213.7730,144.8450,48.4100,0.02769607 2005,257.3160,218.1080,22.1740,33.9810,0.01873757 2005,480.6000,220.3330,24.5800,40.5790,0.01585999 2005,318.8950,218.9370,20.3290,36.3960,0.01082679 2006,323.5020,216.3950,22.7890,51.9870,0.56308448 2006,356.4320,217.6760,21.7180,44.7000,0.43842641 2006,276.0800,227.1820,21.3770,36.4770,0.06920225 2006,369.2920,216.0740,21.2570,41.3610,0.06460241 2006,183.4390,218.7700,210.3980,55.3990,0.02797617 2006,1.0000,220.8730,472.5350,61.1990,0.02437781 2006,220.6330,219.7310,100.4010,49.1840,0.01669707 2006,67.0462,216.6650,225.6428,57.6930,0.01658966 2006,600.8820,66.5053,28.9140,67.1127,0.01613416 2006,331.5890,213.5440,27.8900,54.8480,0.01075221 2006,334.7510,214.6280,66.2220,53.8770,0.01013648 2007,306.8260,207.1590,27.7770,61.7150,0.74913341 2007,349.0880,207.6650,24.4190,55.6960,0.64440840 2007,549.5950,202.0310,21.5310,45.3880,0.12062351 2007,229.9990,207.4530,25.6030,42.7680,0.01475434 2008,230.0130,203.1920,34.2630,81.9370,0.76406616 2008,284.3760,201.6790,32.3620,75.6720,0.73258090 2008,49.1075,193.0350,29.2903,54.6840,0.12783004 2008,442.3800,196.3090,24.9310,55.5030,0.12736328 2008,278.1710,212.6840,26.3000,59.0790,0.02224419 2008,287.5250,237.6760,22.9330,42.0360,0.01562295 2009,97.0041,200.2760,48.1249,117.3240,0.77085173 2009,181.4720,218.4640,42.6680,94.7230,0.33315673 2009,260.7500,185.1370,33.6550,75.8500,0.16619359 2009,523.3890,226.8700,21.3820,32.3780,0.02778123 2009,188.2710,253.2420,28.4820,57.6910,0.02088875 2010,1.0681,198.8800,39.4055,154.3730,0.30558363 2010,375.0620,210.8670,29.5690,60.6410,0.13133949 2010,74.7894,203.8500,33.8436,69.1500,0.10747410 2010,416.0900,238.0400,25.2840,41.2680,0.02874607 2010,1.0000,263.0290,29.4088,88.1140,0.01948590 2011,338.5820,231.7990,26.3930,46.0960,0.19139484 2011,300.1030,238.9220,26.6380,41.3550,0.05853632 2011,180.0400,189.9190,39.1840,83.8570,0.01124360 2012,204.6750,197.7150,32.7510,70.0820,0.14932095 2012,157.4580,225.8760,29.2390,45.3700,0.13236462 2012,507.2060,211.1500,21.8390,37.5140,0.01852520 2015,587.6010,223.0590,28.5140,62.8100,0.77959424 2016,507.1180,214.8680,31.4390,70.9720,0.82016975 2016,409.5670,206.1520,25.8350,60.1970,0.03903409 2017,499.4510,205.0510,34.5600,83.4630,0.82837003 2017,380.5610,213.5260,27.9410,59.3960,0.01952975 2018,306.2450,212.5340,18.8770,32.8210,0.06256276 2018,584.2130,195.9950,40.7520,89.3620,0.01148268 2019,611.0110,1.5764,28.9890,106.8116,0.01931419 2021,95.7572,232.7930,25.8538,49.3870,0.01570595 2021,111.2230,228.6300,22.8770,46.8190,0.01219624 2022,484.9950,224.1350,21.9300,38.2290,0.02097530 2023,376.5290,210.1570,19.5300,39.3750,0.09447978 2024,375.6020,210.1190,20.9590,37.8980,0.17792366 2025,386.1940,211.3710,22.0120,40.3470,0.12153223 2025,137.9650,200.6890,21.4320,34.5990,0.01845894 2026,405.5830,211.7110,22.0880,43.8310,0.39670309 2026,356.0670,209.3030,18.9270,33.4140,0.10806976 2026,5.2577,199.1870,26.6019,50.4580,0.02264147 2027,424.8270,208.1650,23.4070,48.7800,0.34312701 2027,507.2180,213.7880,23.1180,50.9960,0.20496541 2027,369.9090,207.9560,20.6110,37.6540,0.17762154 2027,131.6570,208.9340,20.8040,32.2430,0.08645626 2028,547.3360,212.9570,28.6930,64.9180,0.60653335 2028,443.2360,211.7840,28.1430,58.4430,0.50346422 2028,380.3010,211.1480,21.5900,38.7770,0.30164796 2028,106.3790,206.9640,21.6680,38.0110,0.12904064 2028,503.9640,225.6950,26.3280,52.2960,0.04180515 2029,490.6260,213.2250,29.5350,66.7100,0.76669955 2029,400.7890,210.2020,21.3380,41.2500,0.29346794 2029,82.8242,206.9660,22.5798,38.7250,0.14970835 2030,576.9330,211.9440,38.2880,89.0250,0.82925272 2030,435.3910,208.5610,23.3220,50.5720,0.59472561 2030,55.0021,206.8600,21.3456,37.8370,0.05103464 2031,488.0120,207.3940,30.3290,72.1480,0.79357672 2031,2.2970,204.1780,22.4278,44.1970,0.12937558 2033,380.6150,213.2860,28.6230,58.5960,0.05293946 2033,88.6774,288.5260,35.2536,86.8800,0.02162372 2033,269.9900,197.7220,32.6190,82.4540,0.01140251 2034,72.2271,306.0890,39.7079,82.3760,0.01808343 2035,152.6840,116.6920,23.8910,36.4590,0.02141705 2036,128.8300,95.6027,26.9030,45.5473,0.01260384 2037,102.0680,219.5060,68.4930,56.9780,0.01368004 2038,121.5330,213.5390,71.8740,49.2240,0.08919553 2039,138.3510,217.7830,59.3010,46.7560,0.01129459 2040,76.0740,210.2930,25.5450,45.1400,0.03611219 2040,43.7704,216.8680,24.9033,46.0340,0.01834370 2041,3.6032,212.1700,29.0424,64.2140,0.01538604 2041,205.4990,237.2590,23.5450,45.0270,0.01265088 2041,38.4356,203.7920,23.5343,40.8050,0.01041400 2043,224.0030,233.2310,24.2090,41.2380,0.02786144 2044,154.3900,197.6350,24.1210,44.1080,0.01161254 2045,156.5960,208.7140,21.6060,33.4640,0.01467114 2047,148.0650,209.0600,21.4690,34.7340,0.02295839 2048,99.7809,204.9610,22.1331,42.0240,0.16478384 2049,27.4350,203.8530,25.9694,49.4410,0.27352321 2052,359.1510,219.4520,37.1540,87.6990,0.03377265 2055,214.5450,211.8260,24.9470,49.4040,0.03134963 2056,120.7680,216.0870,38.2430,84.3250,0.09283975 2056,433.7030,263.8340,25.1470,71.9150,0.08016219 2056,194.0320,199.0920,24.7960,54.8060,0.01647899 2056,355.7800,199.8040,18.4150,32.4300,0.01497644 2056,233.5460,199.4820,22.9500,30.8160,0.01234588 2056,115.1200,196.6080,119.5020,65.1620,0.01044550 2057,509.5940,292.1250,34.5440,80.0580,0.19665414 2057,435.6030,266.5510,27.2580,68.4150,0.10234845 2057,196.4230,205.2620,19.4530,36.7970,0.02389618 2057,585.7140,214.7640,20.9960,41.9790,0.01060519 2058,507.2640,286.8660,35.2580,84.6390,0.34831625 2058,192.7710,206.7560,19.3550,34.3700,0.05534780 2059,529.9020,224.4760,20.4270,34.7290,0.08556759 2059,173.4580,212.9620,19.2820,32.5700,0.02480215 2059,379.2050,212.5360,19.1280,33.8450,0.02225456 2059,50.4380,245.5400,25.0742,46.5440,0.01042857 2060,139.0670,210.6080,20.8280,42.1850,0.11241830 2060,600.2690,229.9910,20.5050,39.6070,0.08573652 2060,76.7812,214.9870,27.1668,57.7670,0.03518861 2060,384.0750,212.4150,21.3430,34.2700,0.02660050 2060,305.3920,213.1720,23.9980,42.8600,0.01044123 2061,94.7809,204.5330,23.2531,48.0310,0.28604516 2061,1.1299,205.6560,22.2623,51.5730,0.10771284 2061,10.8303,204.2790,25.4759,56.1650,0.09941077 2061,378.2510,210.4970,21.7880,35.3630,0.01596099 2062,37.5249,193.5330,30.5207,63.9120,0.40759683 2063,16.9787,192.6360,25.1868,50.1980,0.04323202 2063,436.5450,209.5200,19.7720,36.5760,0.04108328 2063,523.7270,191.2880,33.0570,78.6710,0.01341720 2063,282.5440,136.0360,23.7740,48.8530,0.01254358 2063,411.7850,212.4130,20.0050,36.1960,0.01244279 2064,430.8690,218.5300,18.5570,33.2700,0.02173841 2064,137.2390,211.2040,22.2550,42.5000,0.01503101 2064,270.7320,218.4270,23.8140,43.9020,0.01354862 2065,492.2210,210.7010,21.8640,47.3710,0.28335130 2065,308.4430,221.2620,21.3700,36.6380,0.02443361 2065,38.6368,211.9020,23.9661,42.0710,0.02250493 2065,278.9930,129.2280,25.3190,54.6900,0.02164791 2065,261.4940,218.0060,26.8600,49.5850,0.01981926 2065,99.2725,155.3390,24.0475,45.2440,0.01500163 2065,106.2760,209.4510,20.8740,41.9570,0.01237360 2065,77.8741,214.0800,20.9316,36.6210,0.01219964 2066,529.1890,211.0100,24.5540,52.5940,0.62093276 2066,78.7092,201.5620,27.6118,51.8720,0.03839952 2066,31.6861,187.4800,104.5669,69.6320,0.01815958 2066,42.9810,206.5230,26.6690,55.3520,0.01498731 2066,243.9580,215.1780,26.0820,41.2260,0.01427476 2066,322.1500,210.7890,21.6570,39.4310,0.01358915 2066,75.4993,148.2530,31.5197,63.1990,0.01172769 2067,574.1080,210.9840,27.0650,62.7980,0.72770077 2067,496.5360,225.7370,20.0270,36.4510,0.06622484 2067,235.2880,216.2270,23.0330,38.8090,0.05501515 2067,259.3060,213.1230,25.0800,52.2970,0.04414928 2067,27.2749,198.9060,29.9891,59.5470,0.04081791 2067,380.9320,220.4150,22.6200,37.4610,0.01604807 2067,337.1670,217.9680,21.8800,37.5600,0.01497037 2068,618.4640,209.4970,21.5360,69.2410,0.12006035 2068,223.2470,216.1880,21.8670,36.5830,0.09643278 2068,245.6350,213.3920,22.6600,47.5870,0.06530687 2068,357.6890,217.6010,20.7470,38.0170,0.06522622 2068,218.8390,210.0790,40.4990,49.8990,0.01556263 2068,521.9240,205.8070,29.0750,65.3660,0.01413094 2068,266.8750,214.1180,66.1370,52.0460,0.01267833 2068,234.9770,214.6820,20.0410,37.6390,0.01176235 2068,38.2719,137.4750,28.4952,66.3440,0.01008884 2069,219.1420,218.6260,23.3470,39.4300,0.13287777 2069,455.7890,218.6310,23.6210,53.8890,0.12916268 2069,381.5230,222.6060,22.0510,37.6770,0.10168348 2069,422.2410,228.7590,21.9930,38.0890,0.02696535 2069,252.2570,217.5660,218.1920,60.9790,0.01761153 2069,212.8110,209.3290,39.0510,55.6100,0.01630797 2069,368.6770,184.8640,30.2640,65.8330,0.01338300 2069,127.7210,221.6540,470.6010,67.9750,0.01097015 2069,360.8800,218.3140,153.4300,55.0220,0.01068722 2070,409.0370,227.8340,21.6310,38.6610,0.23780079 2070,482.6590,219.6840,22.5050,52.4590,0.21196292 2070,204.6380,218.3970,23.0180,42.3050,0.18154825 2070,470.3930,223.6510,20.2420,47.1850,0.05658571 2070,445.6300,225.3550,22.2230,40.0820,0.04631807 2070,399.0120,221.2290,133.8730,55.7280,0.02862070 2070,196.6050,220.1810,430.2480,69.2390,0.01004670 2071,489.7270,224.4070,20.9670,52.3960,0.28549761 2071,498.7740,221.2730,21.4910,54.2060,0.25724527 2071,435.5170,223.7770,22.7020,43.5650,0.22383370 2071,184.1900,216.7100,22.2920,44.7500,0.22114494 2071,209.7990,219.0460,20.5660,37.7910,0.14001103 2071,196.0770,216.2570,41.2870,51.5400,0.03617961 2071,406.6370,222.9940,146.9570,53.7410,0.03062634 2071,479.1780,225.1260,19.9980,49.7880,0.02789393 2071,467.2950,228.7340,20.0130,40.6010,0.01668784 2071,209.8850,239.6900,36.9800,71.0020,0.01459093 2071,165.3130,214.9120,96.2560,57.4150,0.01208733 2072,501.3520,223.1900,24.8860,60.9040,0.38079420 2072,522.4070,223.0490,26.6940,62.7180,0.35852745 2072,164.9400,216.1890,22.4130,45.6740,0.28354549 2072,208.4080,215.1370,21.9460,40.8840,0.21272822 2072,463.4530,222.0790,21.8650,44.9580,0.17408600 2072,491.4550,224.1280,22.3220,56.1050,0.07579061 2072,514.2660,221.6780,23.2170,59.3290,0.05213106 2072,307.8500,225.8520,21.8510,37.7340,0.04733416 2072,483.8560,225.7730,21.4740,48.0020,0.04228806 2072,473.7340,224.2610,21.2670,45.8540,0.01970601 2072,467.8070,218.6530,70.5820,57.3270,0.01633317 2072,543.0430,248.8200,25.9470,38.7540,0.01563331 2072,533.2980,228.0390,29.7060,60.5330,0.01365639 2072,491.3100,223.5350,70.1840,67.0200,0.01039998 2073,527.3380,222.0940,26.7300,62.6640,0.58188182 2073,144.1340,216.2000,22.5600,45.3830,0.22917362 2073,209.3160,212.5480,22.9390,41.0260,0.21767250 2073,504.0180,223.0250,22.6650,50.5160,0.17273928 2073,491.3490,222.5510,20.4300,43.8700,0.12357323 2073,287.7780,219.6650,21.7630,38.9320,0.09647298 2073,555.5500,216.7300,26.8890,66.1000,0.04970055 2073,542.7540,218.7560,27.6080,67.5230,0.03052322 2073,137.8600,211.8420,179.7530,65.0660,0.01270232 2074,574.5340,218.0020,24.7720,60.0240,0.51148957 2074,119.4610,216.3940,21.5810,45.5530,0.21462227 2074,265.0850,219.9190,23.2040,44.6120,0.20629595 2074,213.3900,216.5980,20.9730,37.9240,0.17146926 2074,560.9610,217.4640,24.6360,63.2430,0.10435615 2074,132.4410,218.7200,20.2630,42.6470,0.08426797 2074,514.7620,225.6990,19.9000,40.4790,0.05869000 2074,223.3690,218.6660,20.2010,35.3880,0.04639950 2074,533.1290,224.1570,27.1020,62.4110,0.03251129 2074,521.5620,220.6640,22.0980,49.5690,0.02371721 2074,212.7030,211.4500,37.0730,51.2080,0.01692802 2074,144.5540,214.3130,185.8160,64.2880,0.01301437 2074,559.6760,213.5530,48.3650,76.1150,0.01015313 2075,48.7273,227.5680,56.0817,152.1160,0.77652538 2075,424.5330,226.7520,28.8070,72.4280,0.71406722 2075,234.7400,220.5340,26.6570,66.2660,0.66041899 2075,214.9940,220.4940,26.9500,67.3660,0.64928770 2075,18.9911,239.5330,51.7773,135.8210,0.58565372 2075,405.0390,221.1750,29.3450,78.1160,0.55838287 2075,500.6430,128.0320,33.2340,91.0490,0.06692220 2075,38.4407,129.8320,42.1100,110.5620,0.01623682 2075,75.4031,296.0760,35.9189,80.8590,0.01534143 2075,116.1390,156.8880,37.5240,89.5490,0.01006064 2076,453.8460,229.5000,33.5520,86.0720,0.85835761 2076,23.6480,226.8480,66.3086,181.5630,0.76713163 2076,433.3890,228.1340,32.8470,88.2240,0.61796474 2076,235.1070,217.1200,27.8300,69.1920,0.53292549 2076,217.1930,218.6100,26.3700,69.1510,0.45304021 2076,1.8483,241.0470,46.4158,146.7390,0.23769461 2076,100.8048,147.2600,37.0282,97.8610,0.04103450 2076,523.4030,200.0670,26.6080,64.0190,0.02390282 2076,539.4170,153.7300,33.8190,79.8210,0.02280227 2076,430.3560,221.9740,24.4070,62.3070,0.01715879 2076,45.7728,223.5160,69.7182,161.0310,0.01488755 2077,222.2010,212.4710,34.5840,81.9780,0.83973944 2077,199.5260,218.1570,30.2720,77.6200,0.79575795 2077,451.6130,230.8450,39.6590,108.3040,0.79131138 2077,478.1230,235.5830,38.7350,105.9980,0.78476930 2077,537.9950,212.0360,25.6110,60.9700,0.52525288 2077,426.2550,217.2970,23.2070,52.9230,0.40827203 2077,1.0000,247.6180,43.7236,193.3270,0.24104659 2077,326.8190,209.6100,70.9610,46.4810,0.02334230 2077,409.4090,218.0850,22.2840,40.7470,0.01678586 2077,481.1880,147.2110,24.9270,57.7720,0.01073636 2078,185.3320,219.6070,35.2040,84.1710,0.84014004 2078,222.9460,216.4410,37.0800,85.1750,0.81496322 2078,493.7710,238.5310,52.2570,150.8870,0.80544335 2078,531.8890,245.2110,51.6330,143.5720,0.79672623 2078,424.2590,222.1300,24.4400,57.8440,0.36124295 2078,264.9420,216.0920,21.7220,47.2470,0.19594249 2078,454.6900,226.3610,24.6900,53.9640,0.15952964 2078,555.9650,214.7380,30.2760,69.3390,0.09285223 2078,571.0910,95.5946,36.6980,98.5624,0.01916747 2078,498.4060,300.4410,34.2300,88.9720,0.01852772 2078,480.3530,146.7030,26.1370,62.2240,0.01572036 2078,533.4270,112.8340,31.5920,81.4470,0.01309216 2078,202.0540,214.4610,32.9450,79.0060,0.01297755 2078,508.6740,199.7890,72.2650,144.1690,0.01295623 2078,151.7350,192.0070,28.5300,62.5070,0.01034876 2078,408.2740,219.0250,57.7800,58.6550,0.01023201 2078,522.3870,288.3430,36.7540,99.5490,0.01012273 2079,175.5070,222.5010,37.9230,88.9320,0.87894130 2079,215.5160,216.5170,37.3070,96.1810,0.79459983 2079,427.9550,222.0240,28.2630,66.2040,0.69860071 2079,611.3920,221.2700,25.3060,67.4930,0.40666917 2079,267.2060,215.8840,21.6110,49.7460,0.19460791 2079,465.2020,227.1150,23.8210,55.5110,0.10784328 2079,592.6740,239.5100,21.3670,42.8730,0.05865420 2079,604.6800,79.6155,34.4930,98.8685,0.01773003 2079,604.2640,232.6890,21.9510,53.9440,0.01335818 2079,554.5130,103.8450,32.0150,83.7060,0.01324249 2079,193.0410,219.5850,34.7350,85.0390,0.01263826 2079,525.2250,186.7720,25.3590,53.4570,0.01129343 2080,126.4100,215.0530,43.7410,108.6160,0.82222795 2080,168.3550,210.9610,44.1930,113.7760,0.77949882 2080,422.6320,221.9660,29.6510,74.3270,0.74610543 2080,232.0190,214.8770,21.8310,49.6460,0.20538650 2080,244.2510,213.9810,20.9570,50.8550,0.20306097 2080,459.8380,233.8260,26.5190,62.0520,0.15531372 2080,402.5580,222.8210,22.1620,52.8700,0.12145638 2080,493.2440,217.7680,29.1350,75.5630,0.05754916 2080,563.5390,265.2630,20.5850,38.5140,0.05410119 2080,568.4290,85.2996,37.1700,96.1754,0.03992373 2080,150.3160,215.2580,42.7390,99.9630,0.02426890 2080,497.6310,214.3680,22.2240,46.0190,0.01894571 2080,528.7380,182.5250,24.5910,55.2580,0.01560867 2080,221.6620,207.5280,43.0530,69.5180,0.01283518 2080,388.4040,223.5070,20.9270,47.2200,0.01237113 2080,553.6100,94.1972,36.8170,88.0048,0.01139154 2081,414.4260,220.8420,36.0380,90.6480,0.81440943 2081,41.7092,219.2710,51.7216,131.5880,0.79973298 2081,99.2428,209.4560,53.3032,142.7280,0.75748193 2081,455.8660,230.7900,32.0680,79.7790,0.74244326 2081,596.6020,226.7920,33.5310,90.7480,0.60335606 2081,200.8930,214.1470,24.0810,59.1900,0.43070501 2081,185.4390,213.6770,22.8790,57.6440,0.40303540 2081,374.5030,223.6110,22.8390,52.4010,0.36014125 2081,398.6510,222.9250,26.2440,68.8210,0.22582529 2081,502.3100,216.3960,25.6700,50.3410,0.08104822 2081,353.9460,220.4610,23.1170,50.7610,0.07590012 2081,460.4050,265.1090,21.6390,47.9460,0.06506782 2081,69.7492,212.5780,58.7758,144.1750,0.06277031 2081,119.1010,232.7110,39.7630,92.2210,0.02934827 2081,501.1340,272.3290,24.5030,39.6710,0.01735516 2081,600.5140,271.2160,25.1880,52.2230,0.01523591 2081,497.3860,218.1520,34.9010,84.8120,0.01392276 2081,156.3940,194.5750,27.2420,53.5800,0.01048795 2082,431.4340,221.1770,40.9220,108.1940,0.78714293 2082,165.1490,217.4400,32.0210,75.6060,0.76383144 2082,483.1780,233.7780,35.9300,96.6390,0.75567824 2082,384.5960,225.2780,26.7340,64.4940,0.73659372 2082,359.7590,224.3820,29.2800,65.2580,0.71234971 2082,144.8770,221.0890,27.8460,68.2750,0.70227414 2082,21.5587,205.7580,72.6352,191.9700,0.60808647 2082,534.8060,215.3510,26.0130,53.0850,0.12536848 2082,486.4920,275.4540,27.1260,60.2000,0.07474358 2082,74.1698,248.6300,31.6762,73.1230,0.02885104 2082,534.8850,289.1840,24.4980,38.5750,0.02404607 2082,134.7340,209.0050,30.1640,72.0400,0.02076217 2082,571.5750,162.4300,29.3470,68.7900,0.01876146 2082,488.3210,228.5610,24.9590,57.9430,0.01637881 2082,1.0000,248.6400,26.0319,66.6320,0.01307357 2083,469.6500,225.4210,50.3230,140.0200,0.83970088 2083,397.1860,230.2120,30.8430,77.3610,0.82635307 2083,544.9840,241.8130,43.8640,119.2250,0.82517314 2083,101.8170,218.2470,37.2120,96.7350,0.81015235 2083,130.4730,217.9680,38.8610,95.5840,0.75244159 2083,421.9910,228.2360,29.6560,75.3670,0.63636434 2083,409.6590,230.2390,30.2610,80.0080,0.22050475 2083,490.4480,224.9230,30.8500,82.2070,0.14827922 2083,3.8904,213.5690,31.1042,79.0850,0.12290121 2083,601.0700,210.0910,29.9070,63.2840,0.08162273 2083,548.5470,290.9570,29.2920,72.2680,0.07627168 2083,472.7460,271.3080,32.7750,92.2140,0.04152506 2083,584.0570,237.6160,51.7020,126.0490,0.03149401 2083,606.9800,307.6270,25.3730,46.0820,0.02845245 2083,556.9950,242.8590,30.6910,64.7470,0.01538654 2083,442.1350,220.4830,59.8060,112.1240,0.01428513 2083,504.1090,239.9160,52.8700,113.3380,0.01318107 2083,309.8140,217.1470,22.2390,40.1400,0.01112240 2083,391.4230,226.0030,56.8240,114.0410,0.01040076 2083,433.8960,227.6630,32.3430,79.5010,0.01018970 2084,74.0171,215.2050,49.9219,131.4980,0.77729255 2084,35.7783,214.9470,51.6537,131.4010,0.73330724 2084,569.3020,218.5610,67.1660,212.3840,0.73044777 2084,476.1450,236.6660,39.3640,105.7290,0.64202780 2084,503.7310,231.7780,39.5420,103.1060,0.50811732 2084,138.6970,207.1770,25.2820,56.3200,0.25881216 2084,574.1370,235.8040,38.3550,107.4350,0.01548282 2084,512.9020,222.2360,57.3190,132.3330,0.01227978 2084,256.1440,207.5200,71.6960,46.8560,0.01211138 2084,345.1960,208.0790,23.5130,53.7640,0.01196862 2084,136.8170,100.5674,24.2860,51.8016,0.01041216 2085,164.4430,214.7240,27.3520,58.7110,0.61146843 2085,591.5940,249.4820,48.4060,167.1660,0.21461363 2085,361.8560,213.3520,25.8190,57.8200,0.10923383 2085,1.0000,265.7180,30.2737,112.6010,0.10409849 2085,606.2200,253.2020,32.7940,95.1940,0.02931011 2085,345.2330,191.9930,26.2450,61.4680,0.02487148 2086,125.7530,211.0780,29.2240,72.0370,0.54412007 2086,376.2890,218.7410,26.0670,59.1080,0.47513056 2086,146.5220,221.3520,25.8900,62.0410,0.46513122 2086,353.8360,222.1290,26.7710,57.4700,0.13599120 2086,265.9490,215.1180,23.4470,51.3220,0.02683949 2086,67.5311,174.9870,30.5042,67.8720,0.01312700 2087,130.8840,226.2890,30.3120,69.8790,0.81417227 2087,102.0920,218.2070,33.3420,80.5860,0.78628731 2087,392.7850,223.5950,29.1380,70.6440,0.78074205 2087,366.1000,227.9350,29.1260,68.6960,0.32716095 2087,116.8890,222.6620,31.2740,73.1780,0.19928513 2087,404.9440,62.2465,42.5800,104.3215,0.06803036 2087,376.8700,221.1570,35.8160,78.6570,0.06184733 2087,26.3593,174.3450,33.8086,81.5500,0.04342364 2087,257.5310,220.6630,25.0340,59.6400,0.03581365 2087,230.4600,218.9930,24.8700,55.5520,0.03545066 2087,65.7066,39.8552,33.9554,93.9208,0.03322514 2087,241.5400,222.0100,21.8350,52.8570,0.02527384 2087,221.9540,218.7680,118.6180,59.0040,0.01436834 2088,412.9240,224.2630,34.1350,83.5150,0.77653217 2088,76.3381,208.1290,37.1809,95.2480,0.75039613 2088,103.4280,218.5530,32.9280,79.4120,0.71738511 2088,391.1010,228.2520,31.5110,77.8370,0.59785736 2088,199.8700,214.7950,27.4160,66.5370,0.35946345 2088,217.1000,211.0580,26.9420,63.9550,0.22843648 2088,237.8210,210.7250,27.6820,63.6350,0.19274861 2088,262.4980,215.3950,63.5170,48.8850,0.01365164 2088,29.2556,14.8330,35.2220,86.1110,0.01357554 2088,290.9660,215.8610,20.5830,34.3680,0.01118769 2088,391.7080,226.2430,24.9650,44.3170,0.01106472 2089,69.5712,217.4880,36.8418,96.9660,0.79566586 2089,34.2341,205.9670,41.8188,107.0680,0.77875024 2089,450.9990,229.6010,40.6540,107.2990,0.76862872 2089,422.1250,230.3220,37.3820,105.1360,0.75966531 2089,156.7350,210.8390,31.6040,75.8670,0.51148683 2089,181.5240,208.2170,30.8530,74.0740,0.49063236 2089,211.8570,205.3070,30.9450,76.0430,0.35531217 2089,253.7790,212.5380,57.9800,46.8590,0.06494955 2089,200.3930,206.2700,27.5770,73.7920,0.02404183 2089,231.5700,205.2140,105.3110,63.9320,0.02110057 2089,289.1410,213.6530,21.2230,36.2690,0.01865974 2089,253.6490,209.6990,20.9950,45.1390,0.01824695 2089,426.2490,273.6350,25.8070,61.1690,0.01711327 2089,267.5590,212.6540,21.4980,37.7860,0.01068171 2089,53.9033,202.5430,40.4398,93.4140,0.01055483 2089,424.7930,227.2600,28.8620,56.2060,0.01047779 2090,521.7260,243.3370,56.5140,156.2720,0.82102060 2090,52.6121,227.4740,41.8063,112.1550,0.80512124 2090,479.4510,241.7450,54.8460,161.3570,0.73576701 2090,13.3077,215.9000,47.9054,129.9330,0.71848208 2090,124.8570,219.2700,38.0590,96.5830,0.70342559 2090,192.3070,211.5570,38.4140,99.4110,0.66867918 2090,162.7010,214.6920,34.1600,95.3570,0.66827518 2090,233.7310,216.5550,23.5770,55.7500,0.22016971 2090,271.3880,220.7560,60.4220,46.3830,0.07186131 2090,491.9570,249.2860,40.3640,90.8560,0.05724571 2090,36.1755,217.7560,42.0487,112.4190,0.05387070 2090,208.1340,214.8380,30.9260,82.6690,0.03304433 2090,229.1940,214.1580,135.0560,60.0330,0.02438324 2090,530.9280,281.0240,34.1700,106.6580,0.02391353 2090,307.8910,221.1690,20.3510,37.9670,0.01779434 2090,277.2170,218.4760,20.3280,40.2700,0.01517143 2090,91.8198,219.1410,56.6512,102.6720,0.01153974 2090,484.1970,315.7040,35.2790,84.0300,0.01115312 2090,131.4960,216.3720,62.0200,107.4880,0.01110611 2091,87.0839,212.2690,47.1811,122.0740,0.83846474 2091,19.7193,221.8240,53.5160,141.5950,0.82695282 2091,135.0080,211.0230,43.8550,128.1490,0.81004632 2091,172.1570,205.1130,47.9630,135.3380,0.73173177 2091,219.4560,213.7960,31.1310,74.0760,0.18435197 2091,244.4970,211.2210,24.9500,58.6900,0.16287833 2091,284.7330,214.7000,67.7600,51.0860,0.11326136 2091,1.0000,213.5670,33.5953,136.8240,0.09435247 2091,196.6950,206.9450,60.8450,131.9340,0.05567337 2091,232.7280,213.3900,27.1520,58.5600,0.02173347 2091,615.3290,304.8020,24.6710,86.6090,0.01906018 2091,59.7964,213.7260,56.3386,122.9780,0.01768136 2091,296.2030,212.2230,23.3760,45.0840,0.01710757 2091,135.8690,268.4320,32.1540,73.1600,0.01671285 2091,267.4870,208.8400,161.6830,70.1830,0.01640641 2091,329.9690,217.2800,20.4240,37.5310,0.01167466 2091,313.5560,216.7560,20.6220,39.0920,0.01077198 2092,7.1406,221.5850,58.8822,181.7270,0.73712218 2092,54.0022,209.5080,57.0348,172.3590,0.73658097 2092,98.5888,205.2460,63.2932,187.8690,0.59229183 2092,193.4060,216.5950,33.7010,81.4000,0.19749641 2092,285.1280,215.7560,63.5100,49.3440,0.16585419 2092,125.9110,285.7590,40.5710,104.0620,0.08221370 2092,217.7600,218.3750,29.7140,69.2760,0.06558767 2092,305.1600,219.0290,21.3710,41.1060,0.05075824 2092,282.6060,213.6410,23.0520,45.9150,0.04779716 2092,254.0650,212.2870,25.7570,50.3390,0.02571945 2092,314.1420,220.4420,21.4820,38.9370,0.01827744 2092,27.9756,280.8030,39.8960,105.5500,0.01674946 2092,266.0830,208.2450,99.3160,74.8680,0.01674636 2092,5.3530,221.0960,38.4299,97.5070,0.01010481 2093,162.4750,217.8020,35.3080,80.9300,0.59487003 2093,136.1760,219.7420,37.7160,89.8180,0.24977681 2093,253.0960,216.6850,61.6910,49.5610,0.06696787 2093,273.3560,222.7830,21.7870,43.4010,0.04418760 2093,284.3520,222.1590,20.8330,40.6810,0.03684456 2093,7.2581,211.2390,33.5473,65.2310,0.02829056 2093,203.8090,214.8860,167.4340,68.8530,0.01862232 2094,121.1160,217.2010,39.4750,94.6600,0.21902762 2094,255.7930,217.2370,22.3900,49.8280,0.12317266 2094,84.5739,223.4770,39.0261,71.6840,0.10816825 2094,274.7780,219.0830,21.7620,47.1410,0.06505417 2094,249.1320,216.6430,63.9710,46.0620,0.04686638 2094,126.6600,216.1650,212.3560,66.4880,0.04221886 2094,266.6070,220.0480,20.6530,45.0730,0.03959683 2094,288.8370,220.8680,32.8630,68.7410,0.02278368 2094,91.9857,216.6780,152.1203,82.5930,0.02267707 2094,217.6040,211.8900,123.4170,56.0730,0.02093323 2094,39.3997,215.6260,139.4813,83.2580,0.01710125 2094,2.9238,224.9660,449.9912,72.2850,0.01621959 2094,5.2969,217.0120,27.5079,47.0660,0.01485091 2094,96.8956,219.7850,48.7804,86.7150,0.01119400 2094,59.0947,303.5950,39.7461,85.4820,0.01036928 2095,86.3400,219.0410,46.2110,79.1760,0.48909578 2095,284.6330,221.3470,23.6460,47.9970,0.03011888 2095,289.5800,217.7640,61.8220,49.2480,0.02806440 2095,316.5520,220.4380,21.8140,45.0460,0.02351038 2095,263.0370,214.1520,113.2940,63.0350,0.01949651 2095,39.5769,227.7180,35.3425,67.2200,0.01600941 2095,297.5230,224.5410,22.5240,45.1100,0.01585738 2096,19.1113,220.7050,47.3988,96.9200,0.09160455 2096,344.9970,219.0850,21.8810,48.4740,0.06739653 2096,313.7740,215.1800,56.9200,50.8560,0.05710967 2096,310.8030,217.1160,23.8400,52.0880,0.05067681 2096,323.8100,219.3530,21.0610,48.1070,0.04959206 2096,287.6270,210.5100,150.1870,63.4910,0.02222775 2096,199.4280,224.9380,34.7570,69.1670,0.01564438 2096,363.3150,224.0720,29.2070,56.9030,0.01021780 2097,348.2800,220.5610,22.6560,50.7430,0.19572774 2097,306.2900,216.6450,26.3070,60.9090,0.14103009 2097,141.4810,222.0940,35.1620,83.0450,0.10023174 2097,339.2070,219.7930,21.9220,51.5130,0.08777235 2097,288.1070,215.8740,114.8880,59.3040,0.03688145 2097,323.8630,217.3120,23.3620,53.1610,0.02061579 2097,362.7440,223.6660,32.6970,63.6240,0.01836439 2097,117.9870,255.7780,30.4880,66.7500,0.01112222 2098,329.6560,216.2210,24.8800,58.9080,0.43813142 2098,351.3200,217.7100,23.4710,55.2300,0.22894381 2098,313.1500,214.2290,22.5980,54.6920,0.12261224 2098,58.0043,221.4610,48.4447,107.9230,0.10687795 2098,312.0850,210.2930,58.3930,61.0200,0.02712703 2098,337.2310,213.8870,52.2610,65.9470,0.01316747 2098,284.2870,205.9540,148.2420,65.3990,0.01253883 2099,345.6130,215.4890,28.7010,66.1530,0.64537585 2099,374.0830,216.8670,24.8020,56.3880,0.16789952 2099,1.3421,225.4570,56.0870,167.1600,0.14939284 2099,337.1750,210.3720,26.3130,63.3320,0.05216286 2099,358.5920,215.2390,24.6690,58.3940,0.02753864 2099,293.6770,216.0330,35.0490,86.9200,0.01435743 2100,378.2480,213.2130,29.6560,70.5300,0.66023523 2100,405.2320,219.9680,25.3890,63.4400,0.55029428 2100,391.2010,215.1520,26.1040,67.3420,0.19191080 2100,415.6100,220.0030,25.0150,58.2150,0.05467095 2100,438.9470,265.6970,36.0380,93.4920,0.02810456 2100,369.1830,211.7550,26.3570,59.7120,0.02011122 2101,410.0480,215.6020,29.8110,72.6690,0.70951504 2101,435.2680,219.7400,26.9730,68.9530,0.45286196 2101,424.9280,217.6130,26.0050,70.1660,0.22630860 2101,471.7540,274.8050,42.1130,108.2260,0.01732289 2101,444.3020,223.0310,31.4510,69.2270,0.01175285 2102,439.5970,232.7710,29.8230,79.8010,0.77412784 2102,462.9120,235.6520,26.8200,71.3360,0.27062798 2102,431.4200,231.1320,27.1680,65.6670,0.08827341 2102,423.0030,229.4250,24.3880,55.1870,0.05704613 2102,476.6410,245.2080,27.1720,62.3030,0.03958498 2102,408.1570,229.0290,24.0160,55.1560,0.02694960 2102,323.8580,234.0400,27.9230,54.9760,0.02632810 2102,412.3750,232.8860,29.9840,74.4940,0.01500767 2102,305.8940,223.7680,146.2670,61.1550,0.01309858 2102,320.1780,238.4990,38.8170,82.0030,0.01249417 2103,453.5910,249.5190,34.8400,89.6610,0.83989245 2103,481.9830,253.5580,35.9090,92.4560,0.48062134 2103,429.6510,245.0460,28.9490,69.2770,0.14388266 2103,468.1590,254.3090,29.7710,81.0000,0.04492228 2103,375.1730,241.8720,77.0810,43.4180,0.01480034 2103,411.3900,241.7190,20.6390,39.5710,0.01380359 2103,328.4540,246.6760,27.0980,56.8160,0.01305481 2103,438.5510,248.2950,34.5360,84.2520,0.01239749 2104,458.6210,237.0420,38.1500,104.9140,0.74259454 2104,474.6920,238.3840,34.4270,100.5340,0.65057802 2104,425.6230,228.9370,28.3520,66.5110,0.33686799 2104,311.8530,227.7770,29.1630,64.4870,0.03398074 2104,381.0990,221.9250,51.7150,49.5660,0.02906143 2104,346.7740,226.6720,133.1910,76.7890,0.01862498 2104,401.1340,223.0120,21.9510,40.0900,0.01836258 2104,443.1990,234.1270,39.2490,92.3090,0.01763661 2104,403.2790,234.4580,60.0580,74.9700,0.01667970 2104,486.6290,243.9540,29.5900,75.3250,0.01475342 2104,302.9380,221.1240,157.1130,55.4550,0.01418590 2104,425.0980,216.1350,89.5970,100.3650,0.01352597 2105,460.8370,232.9130,53.3360,138.9300,0.82930160 2105,283.8660,218.9990,34.0910,75.1550,0.12153088 2105,360.7100,218.8500,80.1510,44.7050,0.07259047 2105,305.8120,216.1110,157.8980,55.5290,0.03239335 2105,353.2660,226.9520,104.3420,101.8970,0.01461999 2105,174.2310,106.4750,40.7200,90.8730,0.01243633 2105,384.2750,218.0690,21.5520,41.3560,0.01115972 2105,285.2740,222.6220,22.9850,47.2950,0.01071972 2105,511.0280,234.7100,68.7730,130.1630,0.01003541 2106,510.1270,230.3070,71.8280,205.7670,0.88062662 2106,480.5990,235.2410,52.0620,165.7040,0.55293542 2106,484.8050,234.2620,37.3250,97.9150,0.19053467 2106,244.0880,200.8920,38.7330,89.3120,0.08092608 2106,306.9600,200.2340,136.6800,55.5150,0.03923927 2106,360.0900,199.9020,22.7650,50.1010,0.03559364 2106,381.2710,204.7310,45.0240,58.7890,0.02863337 2106,488.4480,298.0640,35.4550,96.2780,0.01445041 2106,348.4760,201.4250,58.1150,49.8510,0.01263618 2106,506.0180,327.2790,38.0420,97.6260,0.01208380 2106,245.6150,198.7300,141.3360,58.9200,0.01125632 2107,505.6340,240.2540,76.2170,203.6840,0.82138205 2107,575.1610,238.0950,63.4870,265.7060,0.56413472 2107,204.7780,190.7910,30.6420,74.0060,0.06688634 2107,202.2600,233.1400,36.7090,85.4750,0.03933102 2107,284.2540,232.6140,41.9260,90.1110,0.02657904 2107,336.1310,190.8720,23.6270,52.7660,0.02507479 2107,570.5590,290.5260,38.9500,112.7600,0.01730026 2107,317.1410,191.2780,110.6220,65.0650,0.01640909 2107,508.8370,317.8870,36.1260,103.4840,0.01302742 2107,357.8110,196.2210,48.2710,54.7250,0.01235696 2107,186.5000,189.9660,113.7260,69.5120,0.01158298 2107,208.8610,182.2590,189.9470,65.6000,0.01140480 2108,152.3810,211.8140,38.7220,95.0180,0.34573448 2108,312.2840,212.4670,34.2290,52.5920,0.06088855 2108,297.4410,208.5550,21.6840,50.2320,0.05338929 2108,287.4940,212.0800,96.0390,51.6650,0.03332875 2108,252.4380,210.3770,184.2090,62.8110,0.01784313 2108,152.0010,262.2430,43.9090,93.3530,0.01720522 2108,302.1180,208.3800,29.7560,66.2230,0.01633290 2108,491.4490,188.6020,62.4200,127.7420,0.01410405 2108,344.6560,212.9500,26.0620,49.7410,0.01337045 2108,65.2482,217.9350,455.0098,65.5220,0.01227042 2108,194.2370,207.0650,169.4640,54.0990,0.01125876 2109,55.4416,210.6430,39.9791,95.5670,0.29160053 2109,282.7150,213.3210,56.4580,54.1450,0.02583259 2109,251.4410,208.7210,30.5680,63.1280,0.02148736 2109,235.7360,211.4540,119.7410,63.2960,0.02001170 2109,463.8140,184.8280,64.6100,142.4750,0.01810136 2109,65.3561,272.1060,48.2509,99.5240,0.01353202 2109,280.7930,214.2150,22.7190,44.7380,0.01204634 2109,300.9480,211.1500,26.0300,48.7000,0.01097079 2109,91.5152,218.6370,26.8208,47.8840,0.01021714 2110,148.6390,207.9860,145.4250,57.3010,0.04854159 2110,177.3160,208.7980,32.7790,76.5920,0.04132774 2110,201.1130,212.8180,64.2850,50.3350,0.03981812 2110,440.9920,176.4300,56.2050,139.5600,0.02593198 2110,102.4840,210.0190,30.3900,59.7830,0.01015460 2111,123.4870,203.4700,107.0020,46.4340,0.11736858 2111,219.5050,210.7260,28.7980,59.6580,0.06349375 2111,80.7365,194.4100,185.2895,65.7270,0.03233577 2111,199.8610,208.8310,23.9160,50.4550,0.02611948 2111,15.2644,26.5275,40.9416,121.3085,0.01659855 2111,145.9860,204.2070,22.0860,44.5030,0.01363428 2111,170.6580,206.6470,24.9160,48.5020,0.01317080 2111,189.4950,208.7410,50.7220,58.1590,0.01111508 2112,215.8750,210.4630,33.9270,82.7560,0.33812994 2112,197.1690,208.2270,27.8690,68.2620,0.09748921 2112,128.3610,202.7850,24.2050,49.6760,0.07903178 2112,208.1310,208.6740,28.4300,69.8720,0.06390464 2112,524.9820,157.9820,67.3700,155.5210,0.04073695 2112,127.9420,201.9190,86.9540,57.3060,0.03932494 2112,175.0760,207.6990,24.2740,53.5570,0.01425879 2112,167.8870,208.7960,66.5520,74.0740,0.01414572 2112,531.9380,185.5820,33.9480,87.1030,0.01354306 2112,228.8640,217.1120,28.7050,63.6830,0.01255259 2112,308.7380,190.8060,21.0810,35.0110,0.01126311 2112,94.7244,204.5140,136.4966,87.4250,0.01003537 2113,233.6570,209.2190,32.4570,83.5870,0.29366750 2113,255.0020,211.7860,31.5690,84.6750,0.28582713 2113,197.9660,205.5890,39.5190,99.3330,0.24753903 2113,161.2030,202.5180,25.1460,56.3820,0.08380687 2113,148.2100,204.0040,23.7180,53.1160,0.05817162 2113,149.2760,202.1670,55.8310,62.3670,0.04701950 2113,215.3130,206.4730,34.3290,89.5140,0.03735351 2113,117.2900,203.9950,24.4610,47.1780,0.02264097 2113,182.2590,202.7650,45.0160,79.3110,0.01391233 2113,189.5990,206.7800,22.3690,50.1920,0.01086318 2114,287.1880,207.5700,33.2330,92.0770,0.42586607 2114,192.1540,204.3660,24.0960,53.1860,0.41346666 2114,305.2040,212.0580,35.3670,90.2420,0.23749010 2114,232.8700,207.0900,21.0270,44.2300,0.16570124 2114,164.5720,199.3010,22.7450,46.4830,0.07623836 2114,258.9380,205.7090,33.3850,83.4660,0.04401827 2114,182.8310,205.5770,22.5690,50.1020,0.04195058 2114,239.0740,203.9350,25.0160,52.0190,0.01201717 2114,251.4660,202.6450,23.6170,56.3200,0.01137880 2115,207.5860,210.7810,24.2410,53.5190,0.41056493 2115,329.9350,215.1490,37.3640,99.0330,0.36800456 2115,311.0290,209.5660,34.9660,97.8470,0.31846619 2115,272.8450,209.3800,37.0960,97.2280,0.24160330 2115,184.0270,202.9120,27.7340,59.1790,0.15609428 2115,253.0750,210.1240,23.4020,50.2680,0.08589122 2115,250.0210,202.0440,84.8870,94.7680,0.01755139 2116,313.0770,214.9360,41.7400,115.7180,0.65803266 2116,204.0080,211.8230,23.3620,51.3820,0.22341140 2116,334.6460,219.1590,38.8570,115.7960,0.21748058 2116,251.6170,213.4580,22.6430,48.7050,0.09850343 2116,182.3470,210.3070,24.8740,52.6790,0.07125856 2116,273.8420,209.9920,34.5090,93.6770,0.05429013 2116,194.8500,209.6050,22.9300,52.5860,0.04644790 2116,186.8480,209.3720,53.3340,63.0650,0.01488924 2116,254.1050,212.4360,42.4440,80.1060,0.01431039 2117,331.1860,218.3440,42.1040,118.5430,0.79418081 2117,359.0250,220.6670,43.2300,129.0120,0.48868194 2117,216.2320,215.8930,23.1290,49.7710,0.24592859 2117,286.8890,209.0420,35.3230,94.8590,0.22827807 2117,192.6150,215.5840,24.6120,52.1020,0.05268155 2117,199.5760,214.6300,34.1700,54.1080,0.03239412 2117,348.2400,222.6820,36.7840,102.8000,0.02611353 2117,262.3450,207.6980,33.9560,87.2670,0.02111328 2117,173.6370,213.9840,82.5840,65.3680,0.01384134 2118,381.9330,221.5460,48.6020,144.4580,0.84752131 2118,320.2960,214.5850,42.7730,106.5700,0.67681426 2118,417.9050,228.3270,51.8230,146.8480,0.65711188 2118,223.5550,216.5740,23.9410,49.6140,0.20052746 2118,303.4610,219.0130,32.2900,77.3450,0.19264509 2118,248.9930,215.6080,25.0980,53.2060,0.09693226 2118,438.6910,242.5640,47.5820,131.8410,0.04803201 2118,335.8960,213.2650,55.4840,110.8010,0.01707982 2118,405.7260,224.7450,42.4090,119.1720,0.01501224 2118,276.8120,212.9600,20.1540,38.8590,0.01057683 2119,402.6850,220.0220,60.6060,195.6700,0.79885495 2119,455.3950,227.5870,64.0980,186.9340,0.79342079 2119,349.3440,210.6590,39.3450,112.1780,0.76444227 2119,317.7950,216.0800,27.5100,72.4850,0.59909868 2119,222.2130,214.2280,24.9570,50.0750,0.14505041 2119,264.8530,215.0360,26.0600,55.6580,0.13266098 2119,242.8440,214.3950,22.2510,48.9450,0.06061799 2119,332.3300,216.6230,33.4870,86.8590,0.03057693 2119,420.1760,255.6460,39.9060,118.6960,0.01626075 2119,232.7800,216.6330,23.9640,49.9140,0.01565213 2119,374.8410,217.7530,57.5210,117.8870,0.01235039 2119,354.5010,253.0350,27.8200,65.5320,0.01080894 2119,493.0450,268.9850,35.1100,83.4720,0.01069348 2119,402.6990,244.8400,39.1920,116.3700,0.01062613 2119,309.2830,221.2630,24.4270,60.4710,0.01049513 2120,419.5710,220.2360,43.0680,115.1040,0.84041524 2120,369.1660,220.7430,32.7930,85.1380,0.73266113 2120,507.3280,224.7110,79.7570,262.6090,0.72187972 2120,566.0100,229.1320,69.2350,275.6050,0.45541352 2120,311.8650,216.4990,32.2260,73.1650,0.39591613 2120,396.4760,223.4170,30.5190,85.6300,0.14148907 2120,257.0440,221.8270,24.1500,47.3370,0.04568955 2120,383.0860,222.4140,28.5170,79.5460,0.04264732 2120,423.9390,268.5590,28.1560,62.7760,0.01795753 2120,409.7120,218.9770,34.4070,93.3510,0.01200246 2120,577.0730,242.1050,38.0850,87.1040,0.01129771 2121,446.5970,217.9870,35.3370,103.1220,0.81268740 2121,528.2220,219.7920,47.1770,131.6380,0.76724792 2121,493.9130,220.7770,37.9670,116.5660,0.49952173 2121,470.2610,216.0380,34.3880,100.7040,0.43437278 2121,322.3650,213.7960,24.2770,49.7960,0.06860185 2121,358.5110,211.3410,33.9310,57.2600,0.02623820 2121,532.0420,274.3100,33.2110,74.1990,0.02097935 2121,376.0080,211.1350,28.3310,52.9390,0.01099104 2122,572.5380,225.1380,56.3870,164.1170,0.81067181 2122,459.9090,226.5990,41.9340,124.5970,0.76130450 2122,526.8670,221.5920,47.3900,146.6460,0.73996586 2122,482.9140,223.0060,37.9830,129.7290,0.42569351 2122,299.3020,215.2390,34.5440,72.3530,0.17508952 2122,514.3650,232.0440,34.9550,99.6840,0.12806414 2122,575.6050,291.4560,39.3140,94.2730,0.07627870 2122,346.2630,211.0080,33.2120,64.1430,0.04099825 2122,141.9860,200.7740,31.2890,69.5240,0.04043820 2122,492.7300,275.9050,32.3870,75.3010,0.02104827 2122,359.7440,215.4600,28.9780,55.4560,0.01129197 2123,473.4090,230.6780,60.9990,183.1470,0.77376938 2123,518.6310,221.5700,58.0500,206.0120,0.76609719 2123,260.2610,211.5140,40.2270,94.6650,0.76069045 2123,575.9690,221.6150,59.3490,201.0910,0.66034186 2123,86.8165,198.3020,29.8255,61.3790,0.11061408 2123,352.6430,218.5850,24.0010,46.4460,0.08962684 2123,313.3860,217.8590,24.6390,43.4020,0.04206343 2123,504.1470,316.8110,38.9690,99.7590,0.03798380 2123,329.6560,217.6560,54.4510,51.0490,0.02638933 2123,336.6590,217.8570,23.4660,48.6230,0.01784623 2123,531.4730,329.1990,36.5700,90.1990,0.01519644 2123,377.3860,216.1280,21.3800,41.1380,0.01377540 2123,582.0550,245.4230,31.1650,77.1700,0.01370081 2123,425.3100,212.0750,23.2280,44.5700,0.01032750 2124,228.0660,211.6380,48.5030,117.8290,0.78767610 2124,533.7150,242.4470,72.4840,215.2570,0.49310380 2124,281.0180,222.9690,36.3520,86.3200,0.47936898 2124,572.0570,243.1550,63.5530,239.8010,0.14739370 2124,374.1050,211.1860,23.8490,48.0500,0.10139038 2124,343.3900,218.4340,33.6060,63.2090,0.05131283 2124,404.8990,217.7180,22.9240,46.3150,0.04455912 2124,566.2100,244.0110,41.7390,97.7840,0.02881744 2124,5.5579,189.0170,36.8680,88.6210,0.02626873 2124,329.1260,214.6090,79.4560,71.5700,0.01160540 2124,548.5610,296.0960,42.7470,118.7980,0.01133691 2124,323.3170,215.5380,35.8550,77.3320,0.01040813 2125,175.3090,213.2240,60.2500,151.5400,0.82337701 2125,256.3400,223.4940,36.7700,92.2070,0.66883600 2125,295.1640,213.0600,34.2930,97.7190,0.65806973 2125,317.5010,216.6280,33.7140,90.4680,0.57521361 2125,367.4000,212.7100,24.7380,50.9020,0.15579496 2125,391.5230,212.1160,23.3280,50.9600,0.07540648 2125,367.3950,212.8490,69.0950,57.9110,0.01386294 2126,224.0530,215.4390,36.3220,102.7810,0.82520211 2126,248.6680,220.7890,39.0050,103.2730,0.78965008 2126,175.6650,230.3650,44.5710,113.2380,0.72733009 2126,35.8994,209.7710,89.8966,233.0540,0.64672178 2126,336.6730,214.4880,22.8050,50.2160,0.06518503 2126,346.9230,212.8780,21.8110,48.7850,0.02351477 2126,333.2250,215.1110,53.3770,50.1860,0.01990112 2127,157.8550,220.2960,47.4070,120.2460,0.82594025 2127,119.4060,209.2810,48.5410,132.7370,0.79367059 2127,49.9026,241.0670,54.6874,140.7690,0.72919625 2127,232.4820,216.8350,21.8760,37.4670,0.02514008 2127,251.4570,208.2020,97.6430,53.5730,0.01764159 2127,302.6590,213.4740,24.3480,44.3550,0.01474905 2127,62.5041,208.0270,77.6659,132.7340,0.01063667 2128,60.2658,208.8800,56.5782,157.1500,0.81813133 2128,101.7340,217.1150,53.7390,146.0050,0.70244896 2128,229.1660,208.1170,137.0800,56.6050,0.09969501 2128,242.6430,214.3090,22.4130,45.5880,0.03634602 2128,323.2590,218.1020,24.0260,45.0070,0.02453267 2128,251.0610,216.0350,72.5540,45.8780,0.01939299 2128,111.6620,213.8360,29.0300,62.2720,0.01233095 2128,146.0640,223.6240,23.5800,40.4560,0.01091015 2128,298.7620,211.7030,22.7420,45.9630,0.01079237 2129,45.0477,224.4330,67.7873,179.5210,0.74877477 2129,357.4690,217.9230,32.9400,78.4270,0.56811482 2129,3.0895,211.3280,49.7162,198.8030,0.49064958 2129,392.7690,242.5340,27.1040,52.4820,0.01567292 2129,235.9980,206.8410,134.0630,56.4370,0.01540238 2129,17.5876,242.8600,61.2824,163.8250,0.01257712 2129,65.9190,282.2860,43.8030,99.7800,0.01079602 2130,385.5180,221.5330,46.0690,109.0750,0.74907744 2130,1.6402,215.7870,52.7667,252.8920,0.35446137 2130,230.4480,215.6320,79.7310,45.9280,0.06734638 2130,295.0750,208.1010,29.9870,77.7720,0.03584022 2130,312.1310,209.2520,30.2230,68.5720,0.02383106 2130,114.7320,225.5850,28.5890,53.7970,0.02022697 2130,66.4472,212.8480,33.8390,51.4530,0.01947793 2130,213.4260,208.9760,155.7000,66.2230,0.01771425 2130,229.9410,216.5780,24.1360,42.1340,0.01584761 2130,268.2600,218.1180,19.4650,38.0670,0.01161826 2131,423.8510,227.7810,57.0610,150.2390,0.78608447 2131,302.4090,219.9810,30.2670,74.1190,0.49228862 2131,316.0490,216.5080,28.8060,77.4290,0.28422251 2131,171.6290,211.4420,37.6290,85.3830,0.07559717 2131,25.7807,212.7320,36.3018,58.9000,0.03729289 2131,181.4770,216.3950,123.9000,60.8470,0.02881795 2131,260.2980,217.5480,21.1110,40.6930,0.02064249 2131,336.1250,216.9360,24.6170,58.0470,0.02059059 2131,208.4200,220.2110,23.7740,41.9870,0.01609408 2131,265.6250,220.9290,79.4830,66.7740,0.01459176 2131,237.1250,217.7730,53.8470,45.3670,0.01195584 2131,433.9730,230.0520,28.0160,48.1090,0.01173452 2131,74.0849,225.8400,433.3081,67.5150,0.01173110 2132,515.8850,235.0690,76.5000,209.0040,0.82571250 2132,115.5540,211.3520,49.6270,127.5650,0.79958421 2132,318.7580,215.4020,30.1970,88.8590,0.51087546 2132,155.9800,215.7960,41.0540,95.9360,0.49072522 2132,338.6180,213.8190,31.8150,84.4240,0.40100294 2132,4.0469,209.5610,39.6256,84.0380,0.07566490 2132,359.5330,215.8550,26.8350,70.4030,0.06668393 2132,91.5134,228.4600,25.8826,42.5750,0.04577529 2132,274.7790,216.5640,19.9690,40.8570,0.02902211 2132,502.8650,224.3460,26.9630,49.5160,0.01726959 2132,534.1210,219.8220,28.8740,71.9460,0.01192223 2132,248.3530,213.7840,64.7900,48.4050,0.01143686 2133,64.1878,216.1860,62.1862,170.9490,0.78811282 2133,343.6640,213.1590,35.7230,94.7310,0.66397697 2133,118.6500,224.3610,39.8040,109.3930,0.65947038 2133,140.9310,224.2530,37.5510,108.3310,0.55248433 2133,360.3490,211.5490,34.3470,93.5550,0.48378810 2133,295.5420,218.6290,21.0960,42.3890,0.01526351 2133,397.6900,159.1600,34.0490,87.1880,0.01376056 2133,501.6430,194.5610,30.6650,64.9470,0.01319792 2133,323.5880,215.3120,18.9370,31.9990,0.01312805 2134,112.8590,231.7710,56.9950,156.3360,0.82159394 2134,65.8440,231.0850,56.6140,153.7780,0.73507512 2134,360.1440,222.6690,36.0600,98.2470,0.72224295 2134,380.5160,219.1590,36.0320,97.1370,0.72005492 2134,485.9940,230.0490,20.9880,37.3460,0.03418406 2134,472.8680,225.4190,124.3330,57.0950,0.03360519 2134,337.5080,216.0910,20.2120,33.4230,0.02762125 2134,517.2180,231.2020,19.5350,34.2100,0.02274384 2134,38.8203,236.3790,41.3561,109.8120,0.01975878 2134,563.1450,228.7100,21.5690,35.9590,0.01242858 2134,307.2060,221.4020,20.3720,38.5600,0.01128479 2134,278.2290,216.5970,77.9480,43.9130,0.01079814 2134,1.0000,210.3820,25.2449,90.1510,0.01024040 2135,373.5670,217.9340,36.9300,103.9960,0.79384315 2135,400.1710,211.2750,37.1930,107.4490,0.75800365 2135,18.2011,241.7290,94.1899,234.9710,0.64880049 2135,390.3920,212.0590,31.1860,96.1060,0.07317840 2135,1.2640,249.7080,39.2271,168.0590,0.05652843 2135,519.2800,227.9020,23.0260,41.2740,0.02992168 2135,500.7950,223.1470,119.0180,59.5810,0.02732136 2135,67.7405,278.5990,40.5295,88.5350,0.02587199 2135,313.4480,218.9390,20.5830,37.8140,0.01924445 2135,384.4160,214.1380,25.7310,64.6480,0.01865787 2135,341.3770,214.5170,20.1840,34.5060,0.01274610 2136,415.3260,217.0460,39.1970,111.5730,0.74942106 2136,394.5390,218.9770,38.2270,110.3330,0.57598650 2136,309.0860,215.9580,33.5950,75.8990,0.14524314 2136,513.6010,233.9690,32.0440,69.8460,0.09906814 2136,576.2280,230.5560,25.9460,50.3560,0.09245449 2136,513.7110,228.5950,112.1710,60.9420,0.07312246 2136,554.8060,226.7910,24.8270,57.6950,0.04460351 2136,536.7400,231.3860,58.5970,48.8440,0.03353496 2136,347.4360,214.3300,23.1900,34.9400,0.03181037 2136,397.1860,215.5420,21.3930,47.5830,0.01523170 2136,409.1260,213.2000,29.8180,84.7630,0.01370989 2137,451.8180,219.6240,38.4990,110.8440,0.75355935 2137,431.9940,218.8360,39.6070,115.6810,0.71998888 2137,520.0410,239.4170,40.2250,100.5250,0.55879992 2137,334.4580,220.4700,29.6860,74.4680,0.41499987 2137,557.0170,227.0620,28.6090,63.9700,0.19964465 2137,610.6710,232.3520,24.6750,57.9630,0.15135857 2137,317.6580,222.3990,27.4930,66.7250,0.08105672 2137,580.9760,232.3820,25.4490,55.5500,0.07380652 2137,368.5590,217.3370,20.6400,33.9750,0.05134968 2137,542.3910,234.0210,49.8200,86.3460,0.04999075 2137,566.5270,228.5260,54.6420,65.4060,0.03241885 2137,474.6940,223.4980,50.3230,103.0240,0.01450085 2137,420.9030,218.2700,19.8580,38.3920,0.01254580 2138,571.6680,241.0540,57.3090,166.8370,0.78624642 2138,505.0300,215.4750,41.5640,122.3880,0.74904382 2138,385.1330,219.6350,30.4270,79.6440,0.71596658 2138,487.4290,221.4040,40.8760,118.8710,0.66722494 2138,362.6570,221.0430,31.8990,77.0310,0.64253527 2138,136.0980,265.3050,37.8130,76.9960,0.07377617 2138,584.4340,243.6050,31.1680,81.9720,0.06080534 2138,579.9870,272.2080,36.6730,110.6770,0.04768276 2138,595.7670,239.2830,41.3680,140.0210,0.03578981 2138,467.1260,219.3740,19.5090,37.7330,0.02814481 2138,398.6780,217.3870,25.2660,63.0500,0.02622982 2138,409.8390,219.4890,20.8170,36.2850,0.01782800 2138,598.6050,233.1610,28.4270,75.2500,0.01482352 2138,559.5590,300.1730,28.8200,73.2240,0.01481488 2139,543.7340,223.6040,47.5000,132.7330,0.78633940 2139,400.3820,228.4980,31.1340,85.3430,0.63028491 2139,422.0840,227.4150,31.4700,87.4230,0.57391721 2139,533.3790,231.2190,38.0520,114.4040,0.11645439 2139,501.7660,226.0450,20.8390,38.1490,0.06150828 2139,507.6010,212.1800,77.8120,113.2680,0.01703061 2139,59.6739,270.9460,43.1481,70.0850,0.01011196 2140,520.2400,224.4940,60.4640,148.3130,0.88827962 2140,406.2740,224.3970,39.3750,103.2180,0.79555792 2140,370.7860,224.0020,39.6620,105.5080,0.74944508 2140,517.5740,239.2930,30.4960,75.0980,0.07345024 2140,481.5720,228.4420,21.4360,40.8620,0.05081819 2140,388.0990,210.6680,80.1520,95.0890,0.01921728 2141,452.8930,234.3130,72.8380,181.8710,0.84085625 2141,355.1000,229.2540,46.8180,126.6800,0.81671417 2141,305.2670,231.5230,51.7200,131.7220,0.74089313 2141,436.4160,228.7580,20.4530,45.1850,0.21836807 2141,469.0570,231.7890,38.9280,94.0490,0.13952017 2141,452.1210,230.5570,19.5090,44.4160,0.01718143 2141,380.6100,225.7770,69.3050,129.5200,0.01003403 2142,194.4520,212.2800,63.2520,160.4180,0.79354376 2142,294.7040,217.6450,78.6330,227.9820,0.56911236 2142,274.1850,210.1610,53.5230,156.1520,0.42948422 2142,362.4510,213.8940,21.1810,48.0260,0.19856715 2142,380.1720,215.9170,21.6060,49.4870,0.07603020 2142,309.8490,216.1050,49.7930,140.6240,0.02373878 2142,319.0930,320.4640,40.3320,97.0280,0.02296245 2142,295.9520,226.0850,38.2760,106.8780,0.01392032 2143,49.4261,215.1480,73.2249,209.3530,0.68116492 2143,195.2910,212.8360,26.3920,56.5900,0.21072680 2143,217.7950,216.2180,24.4580,55.7840,0.07454944 2143,1.8278,209.4430,56.6230,199.8420,0.06076144 2143,41.9133,218.8220,40.9439,121.3570,0.03887802 2144,479.0550,242.2510,58.3830,149.3140,0.78070730 2145,296.6740,239.8040,70.9770,186.7560,0.81204867 2145,301.8350,252.1050,41.3200,121.8310,0.04399858 2146,12.2184,222.8340,87.9847,276.5190,0.51437682 2146,66.1379,268.5230,40.2271,76.6750,0.02310693 2146,396.3020,223.5630,163.2760,70.9310,0.01203095 2146,19.3352,249.5510,45.1237,113.1100,0.01192759 2147,578.4560,228.4570,45.4200,122.3950,0.78538686 2147,612.8220,226.9770,27.0420,124.6030,0.19293053 2147,520.1110,214.9590,29.5400,52.9370,0.14199768 2147,586.6480,224.8020,32.6830,69.6730,0.03124320 2148,510.5870,229.5110,44.9650,125.2170,0.82167166 2148,475.6680,229.3160,44.2370,121.6880,0.78655696 2148,433.0430,225.1040,27.3440,49.3800,0.25885954 2148,479.0560,228.0710,30.8920,69.5990,0.01620859 2149,379.0490,227.3670,50.9470,129.2390,0.82195908 2149,330.3320,230.6620,49.1280,130.1440,0.76267880 2149,590.4070,275.5720,33.4670,74.3900,0.09100740 2149,312.1710,223.0280,26.7140,49.9720,0.05330059 2149,390.1330,214.9590,27.8770,50.3820,0.02425746 2149,350.7220,231.1300,42.9070,112.8000,0.01353312 2150,242.5620,226.4560,53.8480,139.9750,0.75232083 2150,196.3470,229.7170,55.3180,147.4380,0.68614888 2150,527.6440,280.6500,39.6090,85.8360,0.07394215 2150,451.1680,266.8970,21.7120,43.9710,0.01052787 2150,481.7740,218.6870,144.7730,73.8720,0.01021957 2151,167.8480,231.4610,64.6030,174.9650,0.82338154 2151,112.5440,225.5280,65.5040,184.7210,0.76335800 2151,160.7770,226.8840,29.1170,60.9390,0.01565574 2151,250.4220,150.4080,37.2390,84.9260,0.01216625 2152,55.7273,240.5830,85.7137,234.1640,0.83816624 2152,1.5185,225.0640,67.7865,247.8190,0.65619010 2152,114.9190,224.0250,36.6520,75.9750,0.04522639 2152,284.7220,204.0470,19.8330,33.8010,0.02129218 2152,231.3030,149.0000,38.4700,85.1630,0.01174314 2153,57.3694,215.7930,46.2376,97.7150,0.25845808 2153,63.0824,209.6410,30.9133,70.6380,0.13643712 2153,33.6027,211.0960,42.8042,97.0230,0.10157789 2153,518.5750,318.2320,38.1380,85.5950,0.01941970 2153,268.9190,205.2960,21.2520,35.8590,0.01549743 2154,3.4092,228.4580,53.8410,122.1900,0.20802170 2154,66.1374,215.4930,26.3062,52.6810,0.05828992 2154,289.2560,206.3170,21.2950,38.9640,0.02699676 2154,47.4641,214.5320,29.1621,60.0590,0.02300860 2154,133.7160,160.8120,33.5880,71.0860,0.01811322 2154,1.1831,224.4000,34.8544,94.8160,0.01649483 2155,324.8780,206.2740,19.7270,40.0100,0.05528610 2155,59.0900,212.8660,32.6898,69.2570,0.04967811 2155,41.9100,209.4170,31.9121,60.7660,0.02604968 2155,372.7640,155.5970,29.0190,62.1320,0.01067118 2156,324.6800,213.4920,19.4440,36.5150,0.07234406 2156,261.7670,145.9950,40.6470,95.7640,0.04198058 2156,372.6730,151.6260,29.9260,68.1640,0.02520802 2156,351.2340,155.3880,30.8890,72.6820,0.01226653 2156,334.8700,214.3550,20.3180,38.5040,0.01146108 2157,321.5820,217.8040,20.0450,40.4590,0.09091949 2157,330.9620,218.8460,19.2630,38.4680,0.05237606 2157,492.4200,268.7650,24.9440,53.3570,0.04852182 2157,58.3788,100.7144,39.2206,98.1616,0.01534441 2157,342.7190,156.8220,32.3280,76.0770,0.01383375 2157,366.9200,154.4780,29.0530,65.0520,0.01113043 2157,309.7670,212.5940,49.1150,50.6870,0.01074862 2158,316.9390,218.1300,20.6310,43.9290,0.25352326 2158,331.1200,221.3100,19.0730,39.7990,0.07089101 2158,331.8550,147.5680,35.4810,88.2340,0.02298860 2158,234.1400,139.4220,39.9010,99.7470,0.01603064 2158,550.5750,294.7730,38.4140,77.6680,0.01550537 2159,316.1950,220.3190,23.3100,55.7670,0.69314128 2159,333.8870,222.1270,25.0590,54.1420,0.18549670 2159,285.2970,218.8940,18.5470,34.5040,0.01567195 2160,339.4740,216.4660,29.4060,68.9700,0.84485674 2160,365.5930,217.8590,28.0980,66.6580,0.68898523 2160,301.7330,212.8790,18.9740,36.1550,0.02698479 2160,288.2700,211.5770,20.0340,36.6050,0.02104801 2161,383.5420,216.9130,34.3690,85.5280,0.81370360 2161,412.2110,216.0990,32.6250,87.3580,0.79878020 2161,326.3380,208.3760,21.0000,40.4540,0.07967299 2161,305.5970,207.0140,22.4220,42.8570,0.03070332 2161,540.4230,293.2950,22.7290,41.2840,0.01683070 2162,446.6360,239.7130,41.3290,123.1810,0.81828046 2162,475.5550,240.7860,41.0270,122.4110,0.74221820 2162,397.1450,239.1030,24.8970,48.5980,0.37196699 2162,341.8750,234.1170,21.8160,44.4540,0.21497646 2162,316.3380,230.1330,24.2390,48.8380,0.07909172 2162,333.3850,231.8520,20.4260,44.7860,0.01693135 2162,444.0940,205.8180,67.3530,137.3580,0.01457188 2162,181.6290,230.3050,29.0520,63.9050,0.01261732 2163,563.9400,223.7620,72.6020,224.9750,0.74426132 2163,420.1710,226.8880,26.2040,54.9910,0.60807204 2163,329.0200,219.2450,25.9070,55.6970,0.43381467 2163,360.6150,220.6480,23.3860,52.1800,0.33728305 2163,601.0150,235.6920,38.9850,137.4250,0.02619244 2163,562.4230,256.0870,40.1010,105.6820,0.02365765 2163,168.0160,212.9140,31.5050,84.4410,0.02046375 2163,302.1850,176.1410,31.5520,63.6190,0.01398187 2163,430.9300,125.9330,29.8930,80.6280,0.01121482 2164,393.5990,231.6400,28.6310,61.2520,0.72989488 2164,326.6730,224.2840,25.8040,57.4660,0.49666610 2164,290.6470,221.1010,29.1920,65.4910,0.45340896 2164,503.3140,274.6280,30.0200,66.0860,0.03542529 2164,269.0900,170.5570,30.7810,66.5650,0.02640530 2164,83.6813,205.9700,38.0937,102.9400,0.01707804 2165,333.7920,230.3020,31.6520,69.7430,0.76991504 2165,252.3580,217.4090,32.5220,75.0130,0.68967491 2165,205.8600,214.2380,35.4640,82.7480,0.65231663 2165,202.3800,162.1310,34.2590,77.1870,0.07879023 2165,506.9390,285.3640,41.2660,96.4130,0.01189803 2165,239.9520,218.7960,31.6750,68.7590,0.01179825 2166,185.0750,202.1640,42.2260,104.7550,0.80772418 2166,284.0470,216.1120,36.7270,84.3100,0.74869663 2166,122.3060,191.3350,47.0900,124.0340,0.74779725 2166,423.6260,206.4880,30.1120,68.8650,0.52479106 2166,161.6000,141.3260,35.4470,82.0610,0.12707207 2166,503.4560,297.6640,35.8630,81.3420,0.01107459 2166,153.3800,205.5530,55.7820,109.8160,0.01055668 2167,122.1410,215.4600,55.2930,141.2580,0.77855837 2167,244.0530,231.0620,46.4010,98.4300,0.75685763 2167,422.6900,228.9150,28.5290,66.2370,0.66463864 2167,51.7143,223.5260,41.4457,97.1310,0.48956051 2167,311.3420,216.8930,21.8560,42.8110,0.30446020 2167,145.2750,146.8600,38.0100,87.7350,0.09178971 2167,1.0000,140.7740,27.8461,109.1030,0.06013339 2167,73.9157,213.4490,68.8143,132.3930,0.01391786 2168,177.7530,225.7830,57.6420,135.8820,0.80984193 2168,403.7950,224.8330,33.1320,76.2580,0.77145928 2168,3.3229,210.7420,77.4727,214.5250,0.60921711 2168,310.5960,216.8030,23.2270,46.8980,0.47807646 2168,118.7590,136.7830,39.7090,90.2090,0.13987431 2168,178.9010,240.7930,36.3910,90.6000,0.01502206 2168,321.7530,86.6113,36.4480,81.4607,0.01142365 2169,370.7440,212.8320,35.9430,85.1720,0.83217555 2169,59.6285,218.2590,74.1685,177.2470,0.78352326 2169,292.9910,59.8669,40.1040,98.2961,0.01243325 2169,100.8753,234.3840,41.5057,90.7860,0.01062841 2170,320.6960,226.0790,39.2740,97.3980,0.80104291 2170,24.5250,244.6200,36.4604,77.4070,0.11671622 2171,396.4910,226.2150,46.9700,123.8430,0.78410625 2171,399.8110,276.4340,33.9120,77.5170,0.01226272 2172,573.7170,238.4110,61.1090,173.4050,0.77306914 2172,375.1330,216.1450,21.1570,42.7010,0.03687034 2172,464.2800,234.1830,25.6580,47.3690,0.03608262 2172,208.4880,235.8040,25.6100,49.6010,0.02425942 2172,466.2410,129.7400,41.8170,119.5370,0.02142671 2172,361.4250,218.2660,22.3610,41.0980,0.01010629 2173,504.7670,227.3550,25.7660,53.9350,0.16259205 2173,388.4920,220.0710,21.3350,43.8630,0.03432571 2173,179.2990,239.5320,25.3170,54.7570,0.02343788 2173,377.6800,220.6270,21.7880,41.0980,0.01597682 2174,387.6990,217.4650,24.4000,54.1730,0.19865686 2174,444.2330,79.9702,24.2680,49.9278,0.02174506 2174,395.7440,224.7690,25.4520,55.6700,0.01003604 2175,543.1730,237.0970,48.5000,127.1120,0.81923389 2175,409.4410,221.5060,29.5730,66.0620,0.44801837 2175,607.5410,241.7810,28.9360,72.0950,0.04979701 2175,432.5820,67.4101,25.8320,56.2829,0.04671908 2175,91.0201,287.4800,31.6879,68.5230,0.01646783 2176,583.0580,208.9060,40.2170,108.9970,0.36629581 2176,399.2440,209.6920,21.4600,40.3660,0.05555838 2176,587.3820,212.8460,26.9240,67.9970,0.03565041 2176,118.0790,220.6670,35.9840,70.1600,0.03460017 2176,586.8910,254.7450,29.3550,61.0620,0.02758912 2176,486.9690,211.5080,30.3070,64.7580,0.02338932 2176,498.4330,244.4750,22.7950,45.3920,0.01930475 2176,480.1640,208.7180,26.0640,52.6470,0.01651191 2177,431.3010,208.2900,24.9400,49.0830,0.06009610 2177,131.8940,216.4100,22.8360,41.0300,0.03837699 2177,314.3040,209.6020,23.4080,37.6300,0.02777834 2177,360.2810,208.2620,23.5950,37.4680,0.02560318 2177,592.5700,255.9890,30.9880,63.9780,0.01888197 2177,185.1110,210.4850,22.3160,33.2750,0.01598219 2177,574.8310,228.4690,31.0310,62.1800,0.01289048 2177,532.1540,208.8210,23.3000,43.7050,0.01214291 2177,583.1490,234.1540,34.8730,71.3470,0.01162847 2178,435.7500,219.0490,23.2610,46.4730,0.23667160 2178,397.0760,217.9570,20.5100,36.6170,0.10518783 2178,341.1200,219.0620,23.8560,39.8630,0.05861654 2178,607.5190,145.3850,29.6070,83.9900,0.03741666 2178,27.8431,207.4750,25.0686,39.3280,0.02480459 2178,363.5860,205.1540,23.5000,46.0760,0.01644498 2178,204.7680,219.1230,20.5610,34.1920,0.01380238 2178,120.4090,227.6930,27.3500,46.2350,0.01298758 2179,472.9100,223.9090,22.8870,49.3590,0.35123271 2179,373.0930,215.6910,23.8330,48.1320,0.33015901 2179,483.4250,224.1920,19.9130,48.1760,0.20506491 2179,419.6150,216.6560,26.5960,53.1750,0.12546636 2179,220.5330,217.0190,20.3670,37.7490,0.05958738 2179,26.1793,232.7630,41.6426,77.3080,0.02714363 2179,401.9610,219.8520,175.4590,62.6000,0.01556133 2179,463.8480,220.0530,65.4840,54.2590,0.01247180 2179,202.9370,221.6920,421.0400,68.0990,0.01008330 2180,519.8400,224.6920,24.9560,60.6160,0.70385611 2180,564.6700,218.2190,27.7260,60.7170,0.68898380 2180,535.9880,224.3400,22.4520,58.8370,0.34398222 2180,378.4530,220.0520,23.1050,48.2760,0.32849696 2180,437.6600,218.8280,20.8900,42.4710,0.22619432 2180,207.5640,216.4780,21.5790,42.3060,0.15781717 2180,446.9250,216.9160,19.4450,44.2850,0.02441989 2181,394.5410,217.6400,25.4810,56.5590,0.59099895 2181,465.4070,215.3740,21.5110,50.2370,0.39229739 2181,183.7030,213.9270,25.5000,48.2980,0.14101194 2181,476.8730,213.4600,20.9490,49.5790,0.01764064 2181,87.8247,193.8520,24.7873,39.9130,0.01441189 2181,616.8850,225.0350,23.1150,77.8280,0.01311563 2181,449.0480,210.0930,45.6600,66.0640,0.01099061 2182,419.2160,218.8500,32.9470,75.2080,0.77839494 2182,511.1040,220.1220,26.4380,59.6600,0.42096096 2182,522.4990,216.4350,26.4640,61.4020,0.19716403 2182,159.6160,217.1870,29.2820,57.1950,0.19698739 2182,37.1460,197.8800,34.2553,60.9270,0.06892292 2182,330.4960,216.9210,27.6620,49.5380,0.02721437 2182,232.3900,213.1940,20.6970,30.3920,0.01059892 2183,468.9940,222.8340,40.8210,97.8630,0.84446418 2183,584.4940,221.4610,26.6290,67.5980,0.76089776 2183,125.9130,213.9050,36.0290,81.0250,0.71959466 2183,602.3890,220.3110,26.1320,66.2950,0.55927795 2183,244.8910,212.2830,19.9530,32.6770,0.03291558 2183,536.3270,206.3840,25.5470,46.9020,0.01142504 2184,46.8113,217.2040,44.8640,108.3140,0.76092780 2184,600.0130,235.8910,39.9870,153.2670,0.56161916 2184,263.3880,211.2250,20.8180,39.4950,0.02489009 2184,14.0530,239.7440,36.4822,67.9820,0.01783131 2184,65.8624,222.8150,37.7026,95.3520,0.01308562 2184,516.3730,213.3890,25.0910,48.3750,0.01127899 2185,228.3970,211.0910,29.6720,60.2360,0.62751126 2185,573.9880,209.0770,24.7680,55.0050,0.30813873 2185,553.3110,214.2040,23.7190,48.1440,0.03539525 2185,562.0520,209.0830,24.1260,51.7250,0.01999317 2186,139.3670,216.2010,36.2880,75.9500,0.76039588 2186,604.0370,206.5620,31.1610,69.1890,0.66473776 2187,4.4746,222.4020,42.6956,95.5820,0.69646412 2187,312.8660,212.6840,33.2710,64.7470,0.03189576 2188,331.5700,213.0710,25.6580,56.8600,0.35544994 2188,454.5030,208.7450,29.9790,61.4000,0.07386214 2188,502.7570,6.3031,39.7960,110.3629,0.01983238 2189,357.4360,221.9780,26.1880,54.6540,0.50308317 2190,379.8620,198.4040,27.1720,59.4930,0.49978295 2191,410.2080,226.7590,26.3690,60.3360,0.70892745 2191,485.8070,224.3850,23.9150,43.8780,0.05840105 2191,403.5500,15.0414,35.7150,89.5616,0.04034383 2191,479.1350,218.8150,41.4450,69.2150,0.01231007 2192,445.0340,220.7940,29.3220,71.7740,0.85763520 2192,403.2940,223.6990,26.3350,53.7020,0.05527291 2192,77.0174,166.8650,27.5446,57.2090,0.02297940 2192,534.7380,218.3130,32.1420,65.3040,0.01626833 2193,516.6360,231.5830,32.6940,79.5040,0.84121168 2193,467.3780,241.0910,26.3470,60.9770,0.46809438 2193,553.9150,227.9080,21.6430,48.0370,0.30825806 2193,550.8800,288.3750,30.4640,72.9290,0.02315351 2193,448.6450,229.2030,51.6430,82.3190,0.01343138 2193,473.9710,227.9660,43.2040,81.7150,0.01253103 2193,530.7830,226.7350,40.0180,73.2910,0.01122940 2194,595.8840,223.3660,38.9960,98.9160,0.82309401 2194,516.2470,229.8660,34.9190,86.7250,0.76294065 2194,586.7810,208.8920,30.9350,83.7050,0.08812655 2194,15.4129,119.7540,41.2528,105.0380,0.05267471 2194,59.8753,192.7670,127.5477,64.3690,0.02057870 2194,132.8600,200.9780,29.9860,49.8970,0.01182616 2194,90.7583,199.8890,64.9857,45.8990,0.01153517 2195,613.3700,237.8640,26.6300,103.0370,0.15664601 2195,440.7090,281.1400,23.3080,48.5350,0.07781076 2195,534.6060,207.0650,25.3560,44.5190,0.04853740 2195,453.7030,241.1230,24.0890,43.2410,0.01953305 2195,420.5780,228.5580,21.2770,34.3260,0.01389866 2195,376.7600,214.7780,36.6770,50.6740,0.01195533 2195,21.2973,198.3310,130.6407,61.3980,0.01157787 2195,40.0177,196.3870,27.2464,53.7440,0.01043108 2196,588.4220,210.6400,29.4780,60.7730,0.43017310 2196,495.8450,229.2880,55.7270,143.5410,0.10205892 2196,448.2530,28.5080,30.1490,77.3750,0.04810294 2196,17.5368,192.4110,128.7462,59.5420,0.03498353 2196,365.7550,214.7400,26.6770,55.1000,0.02630548 2196,448.6950,228.4660,22.3470,41.2620,0.01544894 2196,87.1806,190.5970,35.5884,55.1860,0.01235061 2196,54.0574,196.3370,25.6496,50.6830,0.01100049 2196,575.3500,194.6510,59.7240,102.9170,0.01009817 2197,456.9150,227.1800,28.3640,54.4940,0.03401108 2197,561.6010,276.1100,24.5440,47.8610,0.02141223 2197,2.6564,193.7760,91.7771,55.1380,0.02107817 2197,449.8930,16.1640,34.0710,86.9410,0.01915242 2197,597.5450,405.1180,32.8450,67.6850,0.01361735 2197,48.1330,189.0970,34.9819,56.2850,0.01063974 2198,459.4310,236.6900,24.3530,51.1210,0.06085553 2198,586.7720,289.7090,26.6470,52.7000,0.04525122 2198,1.8882,197.9900,40.4998,60.4160,0.01265981 2199,444.4030,234.7170,24.4310,55.6260,0.08782893 2199,584.4690,292.2660,29.0310,57.2350,0.04686498 2199,429.9420,48.7999,35.8300,89.8331,0.04661008 2200,441.2810,238.3120,20.9190,40.9790,0.05839486 2200,578.1780,291.2460,30.1630,62.7490,0.03060546 2200,530.9970,266.7820,27.3370,61.4060,0.02320586 2200,421.2830,238.7380,21.3880,45.1500,0.02262230 2200,422.2610,42.3162,32.4070,83.7398,0.01948470 2201,478.2030,346.9860,47.2810,99.8910,0.06596447 2201,434.4580,240.3720,22.2790,41.3730,0.03260246 2201,416.7850,14.7549,34.1720,90.0571,0.02470251 2201,487.2420,383.6330,32.4660,69.3450,0.01135064 2202,595.9560,215.8030,34.9830,79.2620,0.49620104 2202,344.9380,10.3701,36.4190,95.1209,0.03929010 2202,486.7200,197.5720,34.9420,63.4750,0.01136260 2202,344.7390,238.4270,21.9670,40.8220,0.01061683 2203,490.9180,214.0210,33.4790,71.0140,0.24645579 2203,429.7770,304.8590,35.4850,76.6770,0.02869231 2203,365.0340,278.1420,35.1990,73.5170,0.01574088 2204,583.9860,211.7750,39.0190,89.5560,0.64024216 2204,515.8300,216.6440,32.7920,66.9760,0.28255296 2204,405.0760,292.5330,36.7430,82.5700,0.07403416 2204,275.2660,239.5030,28.5000,55.4030,0.02328389 2204,497.5810,337.9660,41.3570,94.2910,0.01488988 2204,153.1590,223.8240,36.7330,76.1210,0.01480255 2204,17.8838,227.0990,27.9615,45.8910,0.01292474 2205,608.7060,208.0040,31.2940,96.1250,0.01880616 2205,364.5350,245.3680,27.6060,54.6540,0.01799946 2206,461.6520,218.3610,23.9710,38.7270,0.01343531 2206,423.2110,258.5250,29.7640,70.5320,0.01146745 2207,397.7030,264.5760,26.2030,59.8010,0.04786478 2207,478.2350,216.2430,29.6200,56.3460,0.01968378 2208,526.7360,220.5560,37.3590,75.1750,0.05256515 2208,453.1010,277.4490,37.6190,100.2480,0.02083007 2209,114.8380,285.3460,34.6710,64.3230,0.01378227 2209,608.3320,221.9810,22.6670,36.2940,0.01134251 2210,549.4280,309.7790,26.2490,56.7790,0.01357658 2211,346.8400,42.9044,36.9920,96.7776,0.01290297 2212,425.4100,208.1830,20.6670,40.7150,0.04325498 2212,329.1700,219.2090,27.5220,59.3370,0.04095781 2212,322.1280,28.3554,37.1530,97.9746,0.02182283 2213,367.5700,33.3025,37.6890,100.8945,0.05385412 2213,382.8320,226.9910,34.4740,84.2660,0.05202081 2213,474.4190,219.1790,22.7350,43.1560,0.04549457 2213,1.0000,207.9310,22.8915,50.9390,0.02474068 2214,529.4590,217.8900,20.7730,44.0310,0.09646589 2214,463.3630,280.8300,24.5950,53.4890,0.04430234 2214,408.0610,20.0145,36.3560,103.3705,0.01646474 2214,450.4860,216.6870,23.3320,41.4340,0.01171749 2214,135.0480,193.6620,34.4550,72.6950,0.01117761 2215,455.5130,212.0110,27.1830,54.9400,0.22061907 2215,87.7913,180.4180,31.6707,69.8770,0.02391896 2215,535.2350,312.0290,39.5160,90.3060,0.02328907 2215,538.9080,217.5710,28.3070,45.4000,0.01172536 2215,472.3840,217.4060,23.1000,47.9190,0.01090495 2215,459.8010,214.1630,173.2270,72.6640,0.01005531 2216,473.9930,218.2030,25.4940,54.5130,0.31128690 2216,563.7490,217.8920,25.1570,53.0530,0.26995513 2216,462.7240,216.4420,25.2200,59.3710,0.01450869 2216,464.3580,211.9560,58.6630,72.9120,0.01118571 2216,162.3510,165.9690,32.2910,65.1980,0.01024407 2217,524.9290,221.5800,27.3680,66.2990,0.55909520 2217,513.1600,221.6680,26.8440,65.5850,0.44441819 2217,614.7500,215.5830,25.0730,68.4970,0.03787162 2218,616.4150,243.4930,23.4190,55.8880,0.17841576 2218,424.0290,212.6370,23.3170,46.6090,0.06306802 2218,44.8292,236.1960,30.8937,65.6990,0.02488429 2219,465.8370,223.6290,24.2190,42.4720,0.07487351 2219,418.0290,208.4470,25.0050,48.5170,0.01241187 2219,395.4460,124.3840,29.2880,53.8910,0.01195220 2219,1.0000,186.5860,107.2310,68.6440,0.01073690 2220,537.7940,218.0500,29.6770,61.3040,0.19830902 2220,395.5500,262.2850,22.2440,46.4750,0.01746321 2220,316.2890,214.3930,21.4540,41.3340,0.01308169 2220,422.2420,210.6710,24.6550,52.0090,0.01108630 2221,475.7760,216.4850,21.9740,51.0390,0.34725514 2221,495.2490,215.9010,23.8220,52.6610,0.11220283 2221,451.2610,213.6650,22.8920,51.3000,0.05840337 2221,467.7300,294.7070,34.9740,90.1460,0.03724211 2221,466.6400,213.7850,55.8210,61.2390,0.01936633 2221,431.6740,98.7864,30.5720,65.4516,0.01895143 2221,215.8000,213.7910,34.7030,73.6990,0.01054113 2222,542.1820,211.2600,23.4710,52.4890,0.41059503 2222,505.1060,211.0890,24.9830,57.3720,0.28775224 2222,526.9640,212.0290,21.7270,49.7940,0.26337832 2222,47.0814,243.2210,40.4733,90.7660,0.01971258 2222,531.9970,206.2800,46.3890,63.5490,0.01657482 2222,196.3670,214.0440,25.5900,46.6790,0.01437556 2222,240.9320,211.9740,26.3960,49.0830,0.01344316 2222,452.1670,74.3127,30.3970,58.6303,0.01221599 2223,612.2170,221.3930,24.3740,63.9970,0.66799349 2223,594.8570,224.8470,23.0120,58.4240,0.66052949 2223,398.6650,271.2950,28.0720,62.9030,0.02589574 2223,577.1960,232.0170,22.1220,52.3910,0.02535018 2223,568.7330,219.7560,24.0590,52.4300,0.02242469 2223,160.8170,219.6230,32.6390,59.7100,0.01556514 2223,223.1740,236.0110,27.3290,47.0670,0.01285450 2224,338.8570,216.6920,25.1930,52.0850,0.11669224 2224,469.4010,310.8020,41.8680,95.0180,0.02599084 2224,29.8677,218.1910,35.7497,57.5680,0.01445772 2224,178.1300,256.9160,29.2150,58.8170,0.01214363 2224,526.1470,19.4244,36.0890,77.2002,0.01130003 2225,351.4340,223.5020,29.3090,62.5950,0.04662086 2225,222.9340,213.9860,25.1650,49.3400,0.02242273 2225,538.5660,216.8840,36.0730,67.7870,0.01161209 2226,364.8220,217.4320,35.7660,85.5420,0.18053630 2226,518.5580,222.9400,23.5640,55.7320,0.15001844 2226,494.7210,223.0970,24.4770,54.0110,0.07800746 2226,500.8330,224.2230,51.6830,62.2950,0.04156097 2226,204.1700,229.1930,27.9200,61.1000,0.01770251 2226,406.4790,177.3800,26.1030,57.7210,0.01686882 2226,401.4510,220.0350,178.9790,70.9370,0.01338920 2226,145.5520,240.1690,56.8300,128.4400,0.01058031 2227,522.1270,227.0420,25.4890,58.6220,0.55305398 2227,568.1100,231.8120,24.9730,57.9200,0.19816332 2227,550.9140,234.3990,25.2200,57.1940,0.15069614 2227,379.8500,223.0080,35.4420,93.4330,0.04858532 2227,526.9510,231.1460,74.9450,65.9060,0.01978903 2227,80.5523,157.6350,33.6967,88.3570,0.01144535 2227,227.0130,230.4750,21.3810,32.3350,0.01106299 2227,512.8610,226.4770,57.3530,64.7380,0.01096227 2228,589.8700,194.5570,28.3110,65.5220,0.48444271 2228,564.9600,192.0760,29.7320,65.0760,0.45145363 2228,412.1630,181.3850,33.4510,84.0730,0.21827999 2228,475.9130,278.8580,34.2210,82.7680,0.08514940 2228,414.7040,231.2490,25.4010,61.6710,0.04184020 2228,49.5792,100.2572,38.3351,100.4058,0.02781176 2228,97.2994,261.2990,31.4486,64.4040,0.01969860 2228,431.8360,130.5740,30.9450,80.8940,0.01362716 2228,220.2550,184.0030,23.9970,37.4410,0.01355566 2228,337.8250,198.6110,20.0980,33.7230,0.01279898 2228,544.1610,326.9050,36.7260,91.4670,0.01176631 2228,402.3960,178.2860,30.8340,72.5970,0.01040438 2229,464.6210,208.2640,23.0040,55.3560,0.32457140 2229,452.1380,210.5680,22.4650,52.2870,0.14909008 2229,505.1000,284.7160,44.4410,97.3170,0.08055413 2229,353.2500,225.1280,20.8850,35.4100,0.03006931 2229,432.2960,207.2790,23.6900,50.2880,0.02869788 2229,218.6780,209.9930,21.3570,33.4420,0.02622038 2229,442.7870,208.5440,23.1370,51.8260,0.02597058 2229,437.5950,205.9800,53.9800,59.8390,0.02271564 2229,501.8350,175.2020,28.4840,59.0920,0.01834711 2229,334.5300,82.0856,30.4550,72.5814,0.01701799 2229,46.2494,91.8304,35.7637,87.5026,0.01593811 2229,188.4950,214.3260,21.7050,35.6430,0.01059715 2230,524.8260,214.6470,29.9730,73.1110,0.67640626 2230,506.0940,220.1420,28.3650,60.5120,0.28554547 2230,1.1718,163.6020,26.3708,84.5620,0.04098411 2230,450.3940,215.9560,84.7920,57.6420,0.04030511 2230,484.5200,215.5360,23.2650,46.3470,0.02783283 2230,370.4450,237.0910,25.4570,46.5470,0.02118865 2230,462.7040,216.0000,26.0690,55.4870,0.01503002 2230,509.7220,184.0740,29.4820,72.4780,0.01195283 2230,473.2730,206.4460,107.0340,82.7720,0.01005892 2231,600.3290,214.7290,37.6340,111.2270,0.57989269 2231,541.3280,216.1110,26.7810,58.2970,0.29867658 2231,524.6430,219.0960,24.6030,48.6830,0.07246602 2231,530.4730,212.9940,52.7960,74.8470,0.01212800 2232,468.3240,225.7110,39.9650,50.0980,0.01827343 2232,384.7320,211.7500,26.8910,54.2970,0.01733794 2233,124.8160,212.0190,32.5820,65.9010,0.05018488 2233,384.7810,245.3820,23.6080,47.6340,0.01939018 2234,428.5480,255.5890,33.1280,77.3600,0.28199905 2234,403.0200,254.0840,22.3100,45.1970,0.01174124 2234,403.9370,210.5690,23.1730,43.2250,0.01138648 2235,560.3100,347.7100,38.5420,109.4920,0.01791228 2236,478.8650,247.3400,25.8120,43.9860,0.04020325 2236,116.6020,218.2430,26.5720,48.4110,0.01523383 2236,105.1540,44.1018,33.1210,73.2482,0.01047917 2237,367.7050,215.8640,22.5400,44.6940,0.01945791 2237,58.1853,221.6860,26.7164,48.7670,0.01287725 2237,496.3410,258.7860,29.7520,53.0410,0.01218628 2238,21.5915,220.4950,40.4432,84.8930,0.04747764 2238,357.3880,220.3350,25.2660,48.8940,0.03581599 2238,127.8220,258.1660,29.3390,54.3850,0.01372839 2238,204.9110,81.4470,34.5660,65.6580,0.01219967 2238,330.3590,214.0300,19.8930,37.6610,0.01218139 2239,356.1930,207.7480,21.4220,45.5530,0.06836388 2239,70.9014,257.7580,35.8806,76.3700,0.02282115 2239,317.4440,208.9080,20.7430,38.4000,0.01530584 2240,423.3870,213.9750,21.9140,46.3110,0.17249532 2240,406.7660,219.4560,22.5420,47.8630,0.09571392 2240,39.1875,231.0060,35.4411,63.2760,0.03144084 2240,428.6680,295.5630,31.2170,64.7530,0.01831196 2240,51.0038,187.8950,28.1185,61.1520,0.01052082 2241,479.1810,214.7030,24.6780,55.2510,0.33781686 2241,464.4780,217.6280,24.4220,50.8470,0.08349909 2242,558.6800,204.9310,23.4190,49.3350,0.21587670 2242,540.9580,209.5850,23.5680,49.1010,0.07859775 2242,457.0420,276.2440,35.6900,83.1280,0.04430295 2242,448.0700,201.8110,92.9560,51.8130,0.02018896 2243,600.5870,218.7620,23.8860,51.7810,0.23609985 2243,583.0080,225.3050,20.0900,40.5310,0.04280158 2243,594.5760,213.6030,37.5620,83.9810,0.02674963 2243,490.3640,209.0660,32.6510,60.8890,0.02041346 2243,580.4140,221.0770,31.4330,64.6640,0.01552842 2244,451.7920,209.4260,18.8480,36.5390,0.02841713 2244,442.4670,207.5940,19.9130,35.4160,0.02785810 2244,418.2030,202.3170,123.3260,56.3870,0.02489226 2244,441.1900,206.0940,61.1080,46.3870,0.01872663 2244,479.8780,209.8120,24.8310,43.6290,0.01646550 2244,221.8050,215.1360,22.7100,40.5350,0.01129001 2245,524.3960,216.8530,22.7610,49.9160,0.52569467 2245,511.1420,215.8210,22.5390,50.5320,0.44179022 2245,486.3600,213.6830,18.8690,39.1870,0.10163563 2245,502.7630,215.9720,20.8860,45.9260,0.02233039 2245,498.4240,211.8650,58.6520,58.4640,0.01478643 2245,417.5330,212.0970,160.0520,65.1590,0.01199858 2245,477.5050,215.5310,19.5940,38.1280,0.01111876 2245,460.4600,210.9150,82.4130,53.0680,0.01047012 2246,539.0750,211.4040,22.9500,48.6760,0.19222291 2246,588.1000,213.7850,27.8910,56.6160,0.16161521 2246,469.0200,289.5600,32.5980,75.0200,0.05707832 2246,577.4670,217.0410,21.7210,47.7000,0.04552597 2246,396.7510,249.3330,29.3360,60.1610,0.04324852 2246,537.1400,182.0630,34.8230,82.8030,0.02312077 2246,184.4390,223.3840,27.0440,53.7480,0.01701931 2246,485.8520,209.5830,147.8070,68.6050,0.01381740 2246,525.8930,216.3090,21.2770,42.3920,0.01127973 2247,588.5020,214.7030,25.8390,56.8740,0.30531988 2247,615.0950,212.7440,22.1690,53.1630,0.04378818 2247,120.4060,231.5790,36.5170,79.0830,0.03601901 2247,449.9500,303.3280,25.1390,53.6060,0.03331980 2247,581.4660,179.7790,32.8050,77.3180,0.02482198 2248,396.7200,249.7810,25.2540,52.2490,0.01544822 2248,119.6170,49.5850,28.8880,49.8608,0.01057597 2249,461.5770,282.7170,33.1270,73.7570,0.14570886 2249,100.4848,203.3890,23.8172,47.5790,0.06004735 2249,351.8750,47.5021,35.3100,75.1889,0.01205753 2250,67.6772,198.0980,28.9968,53.5120,0.15448093 2251,15.2694,193.2690,30.8543,62.7770,0.19533399 ================================================ FILE: evaluation_script/state_of_arts/MLPD_result.json ================================================ [ { "image_id": 0, "category_id": 1.0, "bbox": [ 503.05118560791016, 213.2521514892578, 18.0535888671875, 42.14105224609375 ], "score": 0.12698864936828613 }, { "image_id": 1, "category_id": 1.0, "bbox": [ 529.1218948364258, 224.28506469726562, 20.880661010742188, 47.970916748046875 ], "score": 0.8339827060699463 }, { "image_id": 2, "category_id": 1.0, "bbox": [ 564.2302703857422, 233.74038696289062, 21.863861083984375, 51.0882568359375 ], "score": 0.9851409196853638 }, { "image_id": 4, "category_id": 1.0, "bbox": [ 552.1976470947266, 224.4960479736328, 24.465866088867188, 49.88813781738281 ], "score": 0.15663796663284302 }, { "image_id": 6, "category_id": 1.0, "bbox": [ 49.72760200500488, 114.16361999511719, 51.620521545410156, 114.12625122070312 ], "score": 0.11485516279935837 }, { "image_id": 12, "category_id": 1.0, "bbox": [ 458.6833190917969, 209.56468200683594, 20.78094482421875, 44.867950439453125 ], "score": 0.2748008370399475 }, { "image_id": 12, "category_id": 1.0, "bbox": [ 13.966381549835205, 199.70021057128906, 57.73231267929077, 57.00154113769531 ], "score": 0.1907784342765808 }, { "image_id": 13, "category_id": 1.0, "bbox": [ 485.53882598876953, 215.50657653808594, 22.67974853515625, 43.55220031738281 ], "score": 0.6119783520698547 }, { "image_id": 13, "category_id": 1.0, "bbox": [ 23.540477752685547, 211.06175231933594, 23.299407958984375, 43.9757080078125 ], "score": 0.13415420055389404 }, { "image_id": 13, "category_id": 1.0, "bbox": [ 577.0421981811523, 188.29840087890625, 49.519195556640625, 67.683837890625 ], "score": 0.11247385293245316 }, { "image_id": 14, "category_id": 1.0, "bbox": [ 528.978385925293, 217.14596557617188, 29.321975708007812, 77.60482788085938 ], "score": 0.10095776617527008 }, { "image_id": 15, "category_id": 1.0, "bbox": [ 572.916374206543, 226.24209594726562, 28.254241943359375, 51.626495361328125 ], "score": 0.9533085823059082 }, { "image_id": 15, "category_id": 1.0, "bbox": [ 103.06628227233887, 211.19192504882812, 35.24660110473633, 49.719146728515625 ], "score": 0.13602343201637268 }, { "image_id": 15, "category_id": 1.0, "bbox": [ 567.8052520751953, 165.1407012939453, 43.45649719238281, 115.51158142089844 ], "score": 0.12042056024074554 }, { "image_id": 16, "category_id": 1.0, "bbox": [ 460.66349029541016, 203.90663146972656, 18.202133178710938, 39.294342041015625 ], "score": 0.48690134286880493 }, { "image_id": 16, "category_id": 1.0, "bbox": [ 444.5889663696289, 205.4541015625, 18.372573852539062, 41.4210205078125 ], "score": 0.479422926902771 }, { "image_id": 17, "category_id": 1.0, "bbox": [ 468.06209564208984, 215.40187072753906, 18.885421752929688, 41.74864196777344 ], "score": 0.8587238788604736 }, { "image_id": 17, "category_id": 1.0, "bbox": [ 451.8337631225586, 215.99705505371094, 18.835220336914062, 44.07441711425781 ], "score": 0.779430091381073 }, { "image_id": 17, "category_id": 1.0, "bbox": [ 68.91918182373047, 211.05186462402344, 25.141372680664062, 49.14259338378906 ], "score": 0.24995394051074982 }, { "image_id": 17, "category_id": 1.0, "bbox": [ 505.59215545654297, 213.84515380859375, 33.950042724609375, 40.114166259765625 ], "score": 0.16678526997566223 }, { "image_id": 18, "category_id": 1.0, "bbox": [ 484.6466064453125, 215.68235778808594, 20.002975463867188, 45.32298278808594 ], "score": 0.989486038684845 }, { "image_id": 18, "category_id": 1.0, "bbox": [ 464.9082565307617, 216.06103515625, 19.906539916992188, 46.38714599609375 ], "score": 0.9874981641769409 }, { "image_id": 18, "category_id": 1.0, "bbox": [ 20.576601028442383, 203.63424682617188, 31.56895637512207, 61.790191650390625 ], "score": 0.15626361966133118 }, { "image_id": 19, "category_id": 1.0, "bbox": [ 488.876953125, 220.88587951660156, 24.055862426757812, 48.50209045410156 ], "score": 0.9986538887023926 }, { "image_id": 19, "category_id": 1.0, "bbox": [ 515.4803466796875, 218.85897827148438, 22.941207885742188, 48.596954345703125 ], "score": 0.9965633749961853 }, { "image_id": 19, "category_id": 1.0, "bbox": [ 506.3026428222656, 222.46836853027344, 21.806488037109375, 45.23524475097656 ], "score": 0.2604113221168518 }, { "image_id": 19, "category_id": 1.0, "bbox": [ 385.23895263671875, 218.64801025390625, 25.120620727539062, 51.13861083984375 ], "score": 0.24597951769828796 }, { "image_id": 20, "category_id": 1.0, "bbox": [ 542.1163177490234, 214.84571838378906, 25.782623291015625, 60.72862243652344 ], "score": 0.9998635053634644 }, { "image_id": 20, "category_id": 1.0, "bbox": [ 574.5331192016602, 213.70852661132812, 25.323333740234375, 59.105224609375 ], "score": 0.999842643737793 }, { "image_id": 20, "category_id": 1.0, "bbox": [ 560.4822158813477, 218.99649047851562, 23.886566162109375, 50.214935302734375 ], "score": 0.11161106824874878 }, { "image_id": 21, "category_id": 1.0, "bbox": [ 453.3826446533203, 215.16061401367188, 20.599136352539062, 46.9434814453125 ], "score": 0.7967742085456848 }, { "image_id": 21, "category_id": 1.0, "bbox": [ 421.5553665161133, 213.2877655029297, 42.45567321777344, 82.57872009277344 ], "score": 0.13499727845191956 }, { "image_id": 22, "category_id": 1.0, "bbox": [ 518.0119705200195, 210.29776000976562, 30.055389404296875, 71.25894165039062 ], "score": 0.998123049736023 }, { "image_id": 22, "category_id": 1.0, "bbox": [ 479.7264099121094, 209.66220092773438, 24.433822631835938, 50.20013427734375 ], "score": 0.17284360527992249 }, { "image_id": 22, "category_id": 1.0, "bbox": [ 493.59981536865234, 202.25685119628906, 20.990371704101562, 60.29515075683594 ], "score": 0.10975772142410278 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 546.5247344970703, 217.64060974121094, 26.314697265625, 59.13240051269531 ], "score": 0.9952484965324402 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 569.8491287231445, 216.4225311279297, 26.64825439453125, 61.01750183105469 ], "score": 0.9397957921028137 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 611.49169921875, 194.79019165039062, 23.458480834960938, 52.433990478515625 ], "score": 0.5326399803161621 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 560.4838943481445, 219.22421264648438, 25.495376586914062, 56.62249755859375 ], "score": 0.4139820337295532 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 79.93341445922852, 205.0409698486328, 58.681888580322266, 42.43994140625 ], "score": 0.18074358999729156 }, { "image_id": 23, "category_id": 1.0, "bbox": [ 494.05799865722656, 222.53237915039062, 25.4150390625, 41.4334716796875 ], "score": 0.11864856630563736 }, { "image_id": 24, "category_id": 1.0, "bbox": [ 326.7051696777344, 207.41981506347656, 21.271743774414062, 41.111602783203125 ], "score": 0.4470706582069397 }, { "image_id": 25, "category_id": 1.0, "bbox": [ 313.38829040527344, 214.897705078125, 21.291656494140625, 41.099945068359375 ], "score": 0.7726931571960449 }, { "image_id": 25, "category_id": 1.0, "bbox": [ 13.336907625198364, 215.36631774902344, 23.481816053390503, 54.85762023925781 ], "score": 0.3818795084953308 }, { "image_id": 26, "category_id": 1.0, "bbox": [ 289.10762786865234, 218.16456604003906, 24.969863891601562, 44.37995910644531 ], "score": 0.9642323851585388 }, { "image_id": 27, "category_id": 1.0, "bbox": [ 247.01065063476562, 212.491943359375, 26.893234252929688, 54.984466552734375 ], "score": 0.9993292689323425 }, { "image_id": 28, "category_id": 1.0, "bbox": [ 187.39442825317383, 210.37554931640625, 34.41303253173828, 70.081787109375 ], "score": 0.9951896667480469 }, { "image_id": 29, "category_id": 1.0, "bbox": [ 85.22771835327148, 216.5967559814453, 42.89216995239258, 84.23695373535156 ], "score": 0.998383104801178 }, { "image_id": 29, "category_id": 1.0, "bbox": [ 64.93223190307617, 212.17913818359375, 25.821914672851562, 50.705322265625 ], "score": 0.13668812811374664 }, { "image_id": 29, "category_id": 1.0, "bbox": [ 455.8124542236328, 191.54733276367188, 26.851654052734375, 53.338653564453125 ], "score": 0.13230030238628387 }, { "image_id": 30, "category_id": 1.0, "bbox": [ 466.5932083129883, 173.35179138183594, 26.183242797851562, 58.087890625 ], "score": 0.41778209805488586 }, { "image_id": 31, "category_id": 1.0, "bbox": [ 19.652178287506104, 217.39012145996094, 41.89387083053589, 54.53675842285156 ], "score": 0.16876573860645294 }, { "image_id": 31, "category_id": 1.0, "bbox": [ 83.88123512268066, 193.1526336669922, 32.96772003173828, 49.21343994140625 ], "score": 0.161119282245636 }, { "image_id": 32, "category_id": 1.0, "bbox": [ 434.4839096069336, 209.2713623046875, 18.884201049804688, 48.652130126953125 ], "score": 0.3855324983596802 }, { "image_id": 33, "category_id": 1.0, "bbox": [ 363.4321975708008, 206.79440307617188, 19.71893310546875, 40.04547119140625 ], "score": 0.1760457158088684 }, { "image_id": 34, "category_id": 1.0, "bbox": [ 558.0716705322266, 216.7003631591797, 24.047012329101562, 58.88392639160156 ], "score": 0.9994459748268127 }, { "image_id": 34, "category_id": 1.0, "bbox": [ 525.0101089477539, 218.1566162109375, 26.510696411132812, 55.515167236328125 ], "score": 0.9814298152923584 }, { "image_id": 34, "category_id": 1.0, "bbox": [ 373.4800720214844, 208.50396728515625, 20.776824951171875, 43.471435546875 ], "score": 0.7485961318016052 }, { "image_id": 35, "category_id": 1.0, "bbox": [ 396.95316314697266, 213.67652893066406, 22.01416015625, 46.44139099121094 ], "score": 0.9815622568130493 }, { "image_id": 35, "category_id": 1.0, "bbox": [ 97.3415756225586, 203.67318725585938, 32.10065841674805, 32.94970703125 ], "score": 0.17620405554771423 }, { "image_id": 36, "category_id": 1.0, "bbox": [ 433.6349868774414, 214.31715393066406, 25.542144775390625, 57.72489929199219 ], "score": 0.999860942363739 }, { "image_id": 37, "category_id": 1.0, "bbox": [ 507.0069122314453, 221.03907775878906, 32.92388916015625, 85.02369689941406 ], "score": 0.9990935325622559 }, { "image_id": 37, "category_id": 1.0, "bbox": [ 491.81549072265625, 224.20042419433594, 21.28082275390625, 41.48213195800781 ], "score": 0.19220297038555145 }, { "image_id": 38, "category_id": 1.0, "bbox": [ 177.22366333007812, 208.02911376953125, 27.138137817382812, 42.393402099609375 ], "score": 0.30589941143989563 }, { "image_id": 38, "category_id": 1.0, "bbox": [ 346.27918243408203, 216.4497528076172, 29.002838134765625, 45.80470275878906 ], "score": 0.17384473979473114 }, { "image_id": 39, "category_id": 1.0, "bbox": [ 469.4237518310547, 202.63137817382812, 39.62776184082031, 110.5037841796875 ], "score": 0.2374008297920227 }, { "image_id": 39, "category_id": 1.0, "bbox": [ 158.31003189086914, 212.147705078125, 24.1058349609375, 42.51116943359375 ], "score": 0.18367180228233337 }, { "image_id": 40, "category_id": 1.0, "bbox": [ 120.42007446289062, 217.0962677001953, 22.855510711669922, 41.35691833496094 ], "score": 0.5988454222679138 }, { "image_id": 41, "category_id": 1.0, "bbox": [ 60.643653869628906, 208.5382080078125, 32.758378982543945, 56.82855224609375 ], "score": 0.978939414024353 }, { "image_id": 41, "category_id": 1.0, "bbox": [ 50.024189949035645, 216.3478546142578, 33.62813472747803, 58.70356750488281 ], "score": 0.8296794891357422 }, { "image_id": 42, "category_id": 1.0, "bbox": [ 7.256686687469482, 219.9874267578125, 30.675063133239746, 63.438690185546875 ], "score": 0.42653387784957886 }, { "image_id": 44, "category_id": 1.0, "bbox": [ 446.1162567138672, 206.08697509765625, 24.640884399414062, 47.5711669921875 ], "score": 0.9899859428405762 }, { "image_id": 45, "category_id": 1.0, "bbox": [ 496.4208984375, 214.4661102294922, 22.151412963867188, 53.87544250488281 ], "score": 0.9988888502120972 }, { "image_id": 45, "category_id": 1.0, "bbox": [ 479.10839080810547, 215.36932373046875, 21.755752563476562, 58.363250732421875 ], "score": 0.888727068901062 }, { "image_id": 46, "category_id": 1.0, "bbox": [ 588.9060592651367, 192.22979736328125, 41.576690673828125, 118.83639526367188 ], "score": 0.13578177988529205 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 549.2650985717773, 218.10177612304688, 24.748153686523438, 50.294036865234375 ], "score": 0.9893815517425537 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 390.1395797729492, 213.81944274902344, 23.04840087890625, 45.55989074707031 ], "score": 0.7860175371170044 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 568.0348968505859, 217.38473510742188, 23.215560913085938, 54.47662353515625 ], "score": 0.6014765501022339 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 372.4607467651367, 210.0985107421875, 19.807510375976562, 41.06298828125 ], "score": 0.39292100071907043 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 608.2875823974609, 205.94671630859375, 25.818710327148438, 50.988739013671875 ], "score": 0.37818843126296997 }, { "image_id": 54, "category_id": 1.0, "bbox": [ 559.2042541503906, 212.95738220214844, 22.67120361328125, 55.46101379394531 ], "score": 0.2593737244606018 }, { "image_id": 55, "category_id": 1.0, "bbox": [ 419.9941635131836, 218.99765014648438, 22.537841796875, 50.6033935546875 ], "score": 0.9948934316635132 }, { "image_id": 55, "category_id": 1.0, "bbox": [ 397.9745864868164, 217.67575073242188, 22.060928344726562, 53.89288330078125 ], "score": 0.9474649429321289 }, { "image_id": 55, "category_id": 1.0, "bbox": [ 409.5867919921875, 219.61993408203125, 20.783538818359375, 51.49755859375 ], "score": 0.12878841161727905 }, { "image_id": 56, "category_id": 1.0, "bbox": [ 488.5021209716797, 225.5286407470703, 30.795516967773438, 72.59788513183594 ], "score": 0.9983943700790405 }, { "image_id": 56, "category_id": 1.0, "bbox": [ 452.82012939453125, 218.12265014648438, 34.06211853027344, 79.40570068359375 ], "score": 0.997970461845398 }, { "image_id": 56, "category_id": 1.0, "bbox": [ 433.84029388427734, 207.73304748535156, 20.730972290039062, 46.71112060546875 ], "score": 0.5008383393287659 }, { "image_id": 57, "category_id": 1.0, "bbox": [ 469.85095977783203, 209.59600830078125, 21.487884521484375, 46.49810791015625 ], "score": 0.9696162939071655 }, { "image_id": 58, "category_id": 1.0, "bbox": [ 528.1981658935547, 204.80517578125, 28.833160400390625, 64.00494384765625 ], "score": 0.9997208118438721 }, { "image_id": 59, "category_id": 1.0, "bbox": [ 423.01490783691406, 197.47962951660156, 21.706390380859375, 45.099365234375 ], "score": 0.9035639762878418 }, { "image_id": 60, "category_id": 1.0, "bbox": [ 462.5374221801758, 197.87522888183594, 29.022216796875, 68.13279724121094 ], "score": 0.9993476867675781 }, { "image_id": 61, "category_id": 1.0, "bbox": [ 522.2578048706055, 196.8263397216797, 36.3275146484375, 83.66154479980469 ], "score": 0.9992210268974304 }, { "image_id": 62, "category_id": 1.0, "bbox": [ 610.3097534179688, 165.18614196777344, 34.01512145996094, 98.01567077636719 ], "score": 0.42521026730537415 }, { "image_id": 63, "category_id": 1.0, "bbox": [ 111.95878982543945, 203.28822326660156, 22.264270782470703, 38.031768798828125 ], "score": 0.11906013637781143 }, { "image_id": 63, "category_id": 1.0, "bbox": [ 374.2253875732422, 208.14244079589844, 19.46258544921875, 44.43896484375 ], "score": 0.1186441034078598 }, { "image_id": 65, "category_id": 1.0, "bbox": [ 538.5133743286133, 191.52584838867188, 24.471664428710938, 49.620452880859375 ], "score": 0.16372650861740112 }, { "image_id": 66, "category_id": 1.0, "bbox": [ 550.9746551513672, 186.46331787109375, 25.614471435546875, 51.784820556640625 ], "score": 0.8360459804534912 }, { "image_id": 66, "category_id": 1.0, "bbox": [ 391.5006637573242, 213.16246032714844, 23.020858764648438, 42.207305908203125 ], "score": 0.20842409133911133 }, { "image_id": 66, "category_id": 1.0, "bbox": [ 377.67784118652344, 212.15420532226562, 22.208175659179688, 45.55450439453125 ], "score": 0.1439477503299713 }, { "image_id": 66, "category_id": 1.0, "bbox": [ 418.47972869873047, 206.13929748535156, 22.546005249023438, 45.803985595703125 ], "score": 0.12867794930934906 }, { "image_id": 66, "category_id": 1.0, "bbox": [ 476.94828033447266, 189.54397583007812, 26.986236572265625, 62.8040771484375 ], "score": 0.10081443190574646 }, { "image_id": 67, "category_id": 1.0, "bbox": [ 363.6688232421875, 210.90708923339844, 23.7640380859375, 51.81712341308594 ], "score": 0.7829204797744751 }, { "image_id": 67, "category_id": 1.0, "bbox": [ 562.4621963500977, 185.3903045654297, 32.654266357421875, 69.03738403320312 ], "score": 0.6603685021400452 }, { "image_id": 67, "category_id": 1.0, "bbox": [ 346.9001770019531, 216.55172729492188, 19.891128540039062, 46.541259765625 ], "score": 0.15466758608818054 }, { "image_id": 68, "category_id": 1.0, "bbox": [ 336.23313903808594, 213.2433624267578, 26.6815185546875, 49.00044250488281 ], "score": 0.9947706460952759 }, { "image_id": 68, "category_id": 1.0, "bbox": [ 390.93799591064453, 214.03245544433594, 23.863601684570312, 51.40315246582031 ], "score": 0.9735433459281921 }, { "image_id": 68, "category_id": 1.0, "bbox": [ 378.26446533203125, 213.5829620361328, 21.286163330078125, 57.63224792480469 ], "score": 0.12411849200725555 }, { "image_id": 69, "category_id": 1.0, "bbox": [ 390.8259582519531, 213.87388610839844, 24.272232055664062, 52.22370910644531 ], "score": 0.9822722673416138 }, { "image_id": 69, "category_id": 1.0, "bbox": [ 436.33182525634766, 202.9537811279297, 27.763137817382812, 59.18678283691406 ], "score": 0.331155925989151 }, { "image_id": 69, "category_id": 1.0, "bbox": [ 406.05457305908203, 211.365234375, 23.964996337890625, 53.510284423828125 ], "score": 0.3251543641090393 }, { "image_id": 69, "category_id": 1.0, "bbox": [ 415.48328399658203, 208.87657165527344, 25.656814575195312, 54.93916320800781 ], "score": 0.2666971981525421 }, { "image_id": 70, "category_id": 1.0, "bbox": [ 458.1599426269531, 215.56150817871094, 24.269866943359375, 56.18202209472656 ], "score": 0.9970296621322632 }, { "image_id": 70, "category_id": 1.0, "bbox": [ 480.4962921142578, 211.86099243164062, 22.4908447265625, 51.484039306640625 ], "score": 0.6246652603149414 }, { "image_id": 70, "category_id": 1.0, "bbox": [ 532.0298385620117, 205.56410217285156, 50.92864990234375, 134.33799743652344 ], "score": 0.20712608098983765 }, { "image_id": 70, "category_id": 1.0, "bbox": [ 472.9347610473633, 215.8613739013672, 21.030120849609375, 52.05821228027344 ], "score": 0.12741616368293762 }, { "image_id": 71, "category_id": 1.0, "bbox": [ 509.51507568359375, 215.7523651123047, 27.948684692382812, 55.94316101074219 ], "score": 0.9978496432304382 }, { "image_id": 71, "category_id": 1.0, "bbox": [ 489.61158752441406, 226.43936157226562, 25.583877563476562, 46.413116455078125 ], "score": 0.26001831889152527 }, { "image_id": 72, "category_id": 1.0, "bbox": [ 533.4301376342773, 220.118896484375, 27.292633056640625, 54.726226806640625 ], "score": 0.8033568859100342 }, { "image_id": 73, "category_id": 1.0, "bbox": [ 574.1225051879883, 235.01708984375, 22.150039672851562, 50.45416259765625 ], "score": 0.9204449653625488 }, { "image_id": 73, "category_id": 1.0, "bbox": [ 595.0666809082031, 228.60409545898438, 31.833038330078125, 53.979217529296875 ], "score": 0.4492225646972656 }, { "image_id": 73, "category_id": 1.0, "bbox": [ 560.9643936157227, 229.9894561767578, 22.16064453125, 49.98289489746094 ], "score": 0.3005472421646118 }, { "image_id": 73, "category_id": 1.0, "bbox": [ 335.2788543701172, 232.3857879638672, 23.279953002929688, 56.49919128417969 ], "score": 0.10911951214075089 }, { "image_id": 74, "category_id": 1.0, "bbox": [ 516.0739517211914, 226.09808349609375, 28.8348388671875, 62.62799072265625 ], "score": 0.9939408898353577 }, { "image_id": 74, "category_id": 1.0, "bbox": [ 534.7632217407227, 237.1632080078125, 25.794906616210938, 53.4185791015625 ], "score": 0.9409917593002319 }, { "image_id": 74, "category_id": 1.0, "bbox": [ 585.3630447387695, 228.76927185058594, 22.468338012695312, 46.83821105957031 ], "score": 0.6115666031837463 }, { "image_id": 75, "category_id": 1.0, "bbox": [ 546.2142181396484, 219.50140380859375, 30.187759399414062, 65.38265991210938 ], "score": 0.9953128099441528 }, { "image_id": 75, "category_id": 1.0, "bbox": [ 500.5252456665039, 219.96334838867188, 29.166641235351562, 59.83917236328125 ], "score": 0.993072509765625 }, { "image_id": 75, "category_id": 1.0, "bbox": [ 526.5187454223633, 225.8695068359375, 24.783248901367188, 63.7574462890625 ], "score": 0.9558070302009583 }, { "image_id": 75, "category_id": 1.0, "bbox": [ 535.8356094360352, 229.41575622558594, 29.755859375, 53.05461120605469 ], "score": 0.23692679405212402 }, { "image_id": 75, "category_id": 1.0, "bbox": [ 514.2189025878906, 229.69345092773438, 26.838760375976562, 53.3292236328125 ], "score": 0.1513332724571228 }, { "image_id": 76, "category_id": 1.0, "bbox": [ 583.5161209106445, 230.17723083496094, 32.1527099609375, 74.53022766113281 ], "score": 0.9991194009780884 }, { "image_id": 76, "category_id": 1.0, "bbox": [ 173.77410888671875, 213.0352325439453, 24.833602905273438, 55.05015563964844 ], "score": 0.39896827936172485 }, { "image_id": 76, "category_id": 1.0, "bbox": [ 450.9131622314453, 229.12110900878906, 17.492141723632812, 31.176345825195312 ], "score": 0.19306227564811707 }, { "image_id": 77, "category_id": 1.0, "bbox": [ 576.1983871459961, 226.8151397705078, 41.60636901855469, 101.42161560058594 ], "score": 0.9979875087738037 }, { "image_id": 77, "category_id": 1.0, "bbox": [ 462.4644088745117, 225.14195251464844, 18.0853271484375, 36.29856872558594 ], "score": 0.12646305561065674 }, { "image_id": 78, "category_id": 1.0, "bbox": [ 479.2677307128906, 217.92047119140625, 20.073776245117188, 41.10711669921875 ], "score": 0.8035803437232971 }, { "image_id": 78, "category_id": 1.0, "bbox": [ 120.1497745513916, 201.6508331298828, 25.30284881591797, 51.81414794921875 ], "score": 0.12664754688739777 }, { "image_id": 78, "category_id": 1.0, "bbox": [ 333.24283599853516, 208.29672241210938, 68.19442749023438, 43.907379150390625 ], "score": 0.10292092710733414 }, { "image_id": 79, "category_id": 1.0, "bbox": [ 511.0846710205078, 210.47689819335938, 20.859756469726562, 49.8134765625 ], "score": 0.8797701597213745 }, { "image_id": 80, "category_id": 1.0, "bbox": [ 577.4983978271484, 216.35108947753906, 24.265518188476562, 58.49995422363281 ], "score": 0.8202099800109863 }, { "image_id": 81, "category_id": 1.0, "bbox": [ 11.998169422149658, 141.49676513671875, 44.33254957199097, 106.87100219726562 ], "score": 0.19233989715576172 }, { "image_id": 81, "category_id": 1.0, "bbox": [ 407.84263610839844, 205.65663146972656, 22.496109008789062, 47.213653564453125 ], "score": 0.13084208965301514 }, { "image_id": 82, "category_id": 1.0, "bbox": [ 118.92232894897461, 201.20265197753906, 27.035655975341797, 48.122406005859375 ], "score": 0.15838593244552612 }, { "image_id": 83, "category_id": 1.0, "bbox": [ 316.61542892456055, 234.3752899169922, 25.09054183959961, 61.21366882324219 ], "score": 0.23051127791404724 }, { "image_id": 83, "category_id": 1.0, "bbox": [ 440.2357482910156, 232.37069702148438, 19.806976318359375, 47.01861572265625 ], "score": 0.17866870760917664 }, { "image_id": 84, "category_id": 1.0, "bbox": [ 469.4856643676758, 211.20681762695312, 25.23406982421875, 51.211181640625 ], "score": 0.14894609153270721 }, { "image_id": 85, "category_id": 1.0, "bbox": [ 475.7619094848633, 203.43321228027344, 28.463897705078125, 70.87336730957031 ], "score": 0.988584041595459 }, { "image_id": 85, "category_id": 1.0, "bbox": [ 503.73680114746094, 205.67294311523438, 26.259078979492188, 66.310546875 ], "score": 0.7898045778274536 }, { "image_id": 85, "category_id": 1.0, "bbox": [ 487.7035140991211, 206.39776611328125, 26.514129638671875, 64.5208740234375 ], "score": 0.2773612141609192 }, { "image_id": 86, "category_id": 1.0, "bbox": [ 586.0108184814453, 206.88059997558594, 37.325897216796875, 84.30476379394531 ], "score": 0.9993518590927124 }, { "image_id": 86, "category_id": 1.0, "bbox": [ 549.9872589111328, 206.95846557617188, 36.55799865722656, 91.84765625 ], "score": 0.999126672744751 }, { "image_id": 90, "category_id": 1.0, "bbox": [ 470.0033950805664, 222.37173461914062, 19.477920532226562, 46.734405517578125 ], "score": 0.6377794742584229 }, { "image_id": 90, "category_id": 1.0, "bbox": [ 36.79506778717041, 110.07747650146484, 57.09897518157959, 151.42877960205078 ], "score": 0.13784879446029663 }, { "image_id": 90, "category_id": 1.0, "bbox": [ 481.8121337890625, 220.5049285888672, 19.948806762695312, 50.64060974121094 ], "score": 0.10167602449655533 }, { "image_id": 91, "category_id": 1.0, "bbox": [ 512.4229431152344, 217.48484802246094, 27.895126342773438, 56.12641906738281 ], "score": 0.999404788017273 }, { "image_id": 91, "category_id": 1.0, "bbox": [ 545.7786178588867, 213.39280700683594, 22.401657104492188, 50.06718444824219 ], "score": 0.18691110610961914 }, { "image_id": 91, "category_id": 1.0, "bbox": [ 471.4923095703125, 216.711181640625, 24.02191162109375, 50.4454345703125 ], "score": 0.1558055728673935 }, { "image_id": 92, "category_id": 1.0, "bbox": [ 581.3637542724609, 217.3205108642578, 29.787216186523438, 80.04487609863281 ], "score": 0.9968850612640381 }, { "image_id": 92, "category_id": 1.0, "bbox": [ 605.5351257324219, 224.43487548828125, 24.231948852539062, 56.48712158203125 ], "score": 0.7319698333740234 }, { "image_id": 92, "category_id": 1.0, "bbox": [ 183.16925048828125, 171.86773681640625, 21.895904541015625, 38.48297119140625 ], "score": 0.21608388423919678 }, { "image_id": 92, "category_id": 1.0, "bbox": [ 546.1275863647461, 223.30271911621094, 21.87286376953125, 47.52680969238281 ], "score": 0.19244341552257538 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 559.7264099121094, 219.09812927246094, 28.271942138671875, 66.95808410644531 ], "score": 0.9870215654373169 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 540.2857208251953, 222.50608825683594, 26.840133666992188, 61.31996154785156 ], "score": 0.9851977825164795 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 168.7701416015625, 165.41224670410156, 22.169570922851562, 41.2496337890625 ], "score": 0.5213603973388672 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 443.75850677490234, 195.03646850585938, 26.657485961914062, 69.652099609375 ], "score": 0.32762882113456726 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 581.3422012329102, 216.29547119140625, 31.8701171875, 72.3797607421875 ], "score": 0.18619605898857117 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 301.6261863708496, 187.84780883789062, 21.45730972290039, 41.896514892578125 ], "score": 0.14938819408416748 }, { "image_id": 93, "category_id": 1.0, "bbox": [ 356.6093063354492, 197.89230346679688, 32.557373046875, 41.96044921875 ], "score": 0.14289650321006775 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 548.9593124389648, 218.74644470214844, 31.783065795898438, 78.54035949707031 ], "score": 0.9986287355422974 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 575.3839111328125, 215.82620239257812, 33.000335693359375, 83.83770751953125 ], "score": 0.9947397708892822 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 611.4315795898438, 221.08230590820312, 25.046005249023438, 56.178741455078125 ], "score": 0.9338065385818481 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 271.83399200439453, 183.4300994873047, 23.084030151367188, 44.82269287109375 ], "score": 0.453705370426178 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 359.26353454589844, 202.8163299560547, 20.033798217773438, 43.143280029296875 ], "score": 0.3534206748008728 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 114.44084167480469, 151.20335388183594, 27.212982177734375, 40.233428955078125 ], "score": 0.2650482654571533 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 344.27711486816406, 198.85382080078125, 21.022109985351562, 47.80950927734375 ], "score": 0.2577313780784607 }, { "image_id": 94, "category_id": 1.0, "bbox": [ 430.74169158935547, 190.71224975585938, 26.5740966796875, 70.97976684570312 ], "score": 0.133424311876297 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 585.3961563110352, 216.2270965576172, 26.803665161132812, 61.65541076660156 ], "score": 0.9987130761146545 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 512.7888488769531, 212.38568115234375, 38.18748474121094, 100.17633056640625 ], "score": 0.9986886978149414 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 544.9424743652344, 209.82525634765625, 33.779144287109375, 97.00347900390625 ], "score": 0.9975440502166748 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 527.8417587280273, 209.03976440429688, 37.477569580078125, 98.9635009765625 ], "score": 0.7793829441070557 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 277.56175994873047, 200.27005004882812, 24.18445587158203, 55.503570556640625 ], "score": 0.7758517265319824 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 263.8521194458008, 205.56564331054688, 21.550140380859375, 49.742462158203125 ], "score": 0.7657177448272705 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 297.15293884277344, 199.04373168945312, 23.83556365966797, 54.09625244140625 ], "score": 0.651850163936615 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 199.17510986328125, 182.0902099609375, 23.615493774414062, 52.96588134765625 ], "score": 0.6102300882339478 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 13.639556169509888, 137.90335083007812, 33.531588315963745, 46.44842529296875 ], "score": 0.28825047612190247 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 364.4468307495117, 216.2657470703125, 25.743179321289062, 51.97821044921875 ], "score": 0.13704755902290344 }, { "image_id": 95, "category_id": 1.0, "bbox": [ 372.0417785644531, 179.0709686279297, 31.030197143554688, 92.09059143066406 ], "score": 0.11076081544160843 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 527.3308181762695, 221.0906982421875, 25.97198486328125, 59.03070068359375 ], "score": 0.9994990229606628 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 440.1332092285156, 215.03294372558594, 38.78532409667969, 101.17872619628906 ], "score": 0.9976880550384521 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 467.89928436279297, 213.41404724121094, 36.35162353515625, 100.40547180175781 ], "score": 0.9972690939903259 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 191.84091567993164, 211.6407470703125, 26.67072296142578, 61.21270751953125 ], "score": 0.8017627000808716 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 216.69925689697266, 205.6108856201172, 25.080718994140625, 59.16822814941406 ], "score": 0.6705012321472168 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 176.54191970825195, 213.68927001953125, 26.025924682617188, 57.74578857421875 ], "score": 0.6259105801582336 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 100.37654876708984, 187.78211975097656, 27.399330139160156, 55.818389892578125 ], "score": 0.49095651507377625 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 293.41474533081055, 223.83706665039062, 29.03249740600586, 48.58282470703125 ], "score": 0.16580908000469208 }, { "image_id": 96, "category_id": 1.0, "bbox": [ 282.8112983703613, 223.22528076171875, 54.50807571411133, 61.411376953125 ], "score": 0.10888731479644775 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 350.50537109375, 211.2041473388672, 41.91947937011719, 110.39839172363281 ], "score": 0.9990955591201782 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 386.4227294921875, 211.66213989257812, 45.119171142578125, 107.98602294921875 ], "score": 0.9984844923019409 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 467.6591491699219, 220.818115234375, 28.481063842773438, 62.367034912109375 ], "score": 0.9891167879104614 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 214.92786407470703, 215.79507446289062, 26.913070678710938, 61.4954833984375 ], "score": 0.867156445980072 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 96.91876411437988, 213.6379852294922, 34.04947280883789, 67.36650085449219 ], "score": 0.6713480353355408 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 146.82418823242188, 211.16778564453125, 29.775009155273438, 74.01034545898438 ], "score": 0.6329270601272583 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 7.454476356506348, 191.94009399414062, 28.289661407470703, 67.16952514648438 ], "score": 0.6133582592010498 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 117.34787940979004, 207.7036895751953, 30.770092010498047, 75.49403381347656 ], "score": 0.6022117137908936 }, { "image_id": 97, "category_id": 1.0, "bbox": [ 136.27266883850098, 216.29806518554688, 28.25078010559082, 69.86004638671875 ], "score": 0.38710153102874756 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 323.66188049316406, 209.19876098632812, 41.624755859375, 112.62799072265625 ], "score": 0.998263955116272 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 425.3642272949219, 220.6199951171875, 24.457550048828125, 62.382171630859375 ], "score": 0.9978538751602173 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 589.6455764770508, 230.370361328125, 38.70048522949219, 105.7392578125 ], "score": 0.9963902235031128 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 287.60406494140625, 210.28233337402344, 41.05823516845703, 108.67887878417969 ], "score": 0.9960097074508667 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 67.79045104980469, 207.6595458984375, 33.372135162353516, 80.39730834960938 ], "score": 0.9528536796569824 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 47.42985725402832, 211.4922332763672, 36.54336929321289, 74.79231262207031 ], "score": 0.8523443937301636 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 163.03293228149414, 216.978515625, 27.66071319580078, 63.30560302734375 ], "score": 0.8215328454971313 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 102.25805282592773, 213.06802368164062, 35.78178405761719, 77.1168212890625 ], "score": 0.8002134561538696 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 82.8748893737793, 204.0707550048828, 32.45361328125, 76.05986022949219 ], "score": 0.13306216895580292 }, { "image_id": 98, "category_id": 1.0, "bbox": [ 309.466495513916, 211.05430603027344, 38.51949691772461, 106.22605895996094 ], "score": 0.13016211986541748 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 540.8375549316406, 231.43203735351562, 39.629974365234375, 103.0584716796875 ], "score": 0.9978048205375671 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 288.6948776245117, 213.16409301757812, 34.74498748779297, 100.9324951171875 ], "score": 0.9948071241378784 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 257.640438079834, 214.98733520507812, 39.409751892089844, 98.638916015625 ], "score": 0.9939269423484802 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 406.9771194458008, 220.87969970703125, 24.056777954101562, 60.1358642578125 ], "score": 0.9897893667221069 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 57.98694610595703, 211.4853973388672, 36.43338203430176, 78.38233947753906 ], "score": 0.9833414554595947 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 108.61469268798828, 212.1873779296875, 31.93033218383789, 77.44781494140625 ], "score": 0.5260340571403503 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 134.6273899078369, 213.2732696533203, 33.34029197692871, 73.33885192871094 ], "score": 0.22199930250644684 }, { "image_id": 99, "category_id": 1.0, "bbox": [ 73.27297687530518, 211.55087280273438, 36.58401012420654, 86.52328491210938 ], "score": 0.14836880564689636 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 407.7284240722656, 220.63815307617188, 24.52362060546875, 59.405364990234375 ], "score": 0.9995514154434204 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 505.33897399902344, 227.94573974609375, 37.105865478515625, 93.5926513671875 ], "score": 0.9991746544837952 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 266.5736961364746, 211.3116912841797, 34.81193542480469, 100.05995178222656 ], "score": 0.9967913627624512 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 237.21773147583008, 219.10574340820312, 38.10810089111328, 87.18292236328125 ], "score": 0.9960922002792358 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 126.11274719238281, 218.2943115234375, 31.699199676513672, 74.76229858398438 ], "score": 0.9896448850631714 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 86.8704605102539, 209.5418701171875, 35.8607292175293, 84.52322387695312 ], "score": 0.9723498821258545 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 63.967766761779785, 212.083984375, 37.86496639251709, 80.57562255859375 ], "score": 0.9671850204467773 }, { "image_id": 100, "category_id": 1.0, "bbox": [ 468.2964324951172, 207.69442749023438, 26.793136596679688, 52.380126953125 ], "score": 0.10297901183366776 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 535.4434967041016, 241.0704345703125, 61.96922302246094, 178.0213623046875 ], "score": 0.9994127750396729 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 248.46847534179688, 213.2579345703125, 32.049102783203125, 91.03955078125 ], "score": 0.9963105916976929 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 480.42835235595703, 226.51185607910156, 36.121063232421875, 89.38835144042969 ], "score": 0.994939923286438 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 223.2080841064453, 218.98147583007812, 30.5072021484375, 84.829833984375 ], "score": 0.9891208410263062 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 107.42765426635742, 210.73727416992188, 36.73044204711914, 86.93524169921875 ], "score": 0.9875141382217407 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 145.20812034606934, 216.59597778320312, 37.25499153137207, 81.85626220703125 ], "score": 0.9802758693695068 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 83.18540573120117, 217.34828186035156, 37.6751708984375, 80.33207702636719 ], "score": 0.9714235067367554 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 421.83502197265625, 225.47862243652344, 23.463363647460938, 50.69789123535156 ], "score": 0.6094277501106262 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 130.21095275878906, 209.98504638671875, 29.181537628173828, 66.79611206054688 ], "score": 0.41038060188293457 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 557.4368667602539, 295.42462158203125, 44.30908203125, 129.45159912109375 ], "score": 0.16847968101501465 }, { "image_id": 101, "category_id": 1.0, "bbox": [ 237.0829963684082, 216.09695434570312, 29.800758361816406, 85.56329345703125 ], "score": 0.12294337153434753 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 473.27850341796875, 242.31080627441406, 56.93939208984375, 157.5113983154297 ], "score": 0.999726414680481 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 123.75955581665039, 208.61300659179688, 36.52719497680664, 90.26931762695312 ], "score": 0.9988093376159668 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 163.06888580322266, 214.5482177734375, 37.297630310058594, 91.16973876953125 ], "score": 0.9957184791564941 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 222.35570907592773, 219.3768768310547, 27.720184326171875, 82.06446838378906 ], "score": 0.9873648881912231 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 443.0171203613281, 226.0911102294922, 33.85139465332031, 82.79795837402344 ], "score": 0.9797071814537048 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 102.2216796875, 217.18008422851562, 41.24481201171875, 91.81695556640625 ], "score": 0.9761339426040649 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 198.9853858947754, 216.655517578125, 26.4239501953125, 84.8411865234375 ], "score": 0.9545698761940002 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 431.66080474853516, 220.29209899902344, 25.491104125976562, 59.44361877441406 ], "score": 0.3197174668312073 }, { "image_id": 102, "category_id": 1.0, "bbox": [ 450.7474136352539, 239.06655883789062, 37.10533142089844, 104.9066162109375 ], "score": 0.17983797192573547 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 408.53118896484375, 236.53158569335938, 54.0289306640625, 153.05352783203125 ], "score": 0.9986915588378906 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 153.82989883422852, 213.91510009765625, 38.29902648925781, 102.1390380859375 ], "score": 0.9953463673591614 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 119.68564033508301, 204.64669799804688, 41.46319389343262, 107.8853759765625 ], "score": 0.9941750764846802 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 99.80350494384766, 211.88763427734375, 43.442535400390625, 113.64874267578125 ], "score": 0.8261208534240723 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 78.69649887084961, 213.26092529296875, 26.87997817993164, 76.74462890625 ], "score": 0.28516870737075806 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 433.64723205566406, 214.78921508789062, 20.6939697265625, 60.587677001953125 ], "score": 0.2836366891860962 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 88.09389114379883, 220.0138397216797, 38.62255096435547, 94.78605651855469 ], "score": 0.2587010860443115 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 392.8356170654297, 217.790283203125, 36.27204895019531, 93.40728759765625 ], "score": 0.16058778762817383 }, { "image_id": 103, "category_id": 1.0, "bbox": [ 426.6914749145508, 296.8904724121094, 34.07325744628906, 93.38726806640625 ], "score": 0.1280589997768402 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 306.326847076416, 236.13287353515625, 57.40114212036133, 157.5059814453125 ], "score": 0.9992300271987915 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 103.49784851074219, 219.30592346191406, 42.4140739440918, 103.85734558105469 ], "score": 0.9958834648132324 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 67.36330032348633, 205.74237060546875, 45.32896041870117, 127.3582763671875 ], "score": 0.9948697090148926 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 17.427468299865723, 214.24569702148438, 51.44306182861328, 124.17510986328125 ], "score": 0.9840638041496277 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 87.72968292236328, 211.8693389892578, 39.77262496948242, 111.20103454589844 ], "score": 0.7299824953079224 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 380.9049987792969, 214.5681915283203, 24.00543212890625, 58.05879211425781 ], "score": 0.5010033845901489 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 13.629244565963745, 212.09120178222656, 37.07633137702942, 88.83750915527344 ], "score": 0.37038806080818176 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 329.5314025878906, 267.89727783203125, 40.22911071777344, 117.83551025390625 ], "score": 0.1964268684387207 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 340.6069564819336, 218.19573974609375, 25.910263061523438, 61.983367919921875 ], "score": 0.196274071931839 }, { "image_id": 104, "category_id": 1.0, "bbox": [ 5.309261083602905, 233.56784057617188, 29.400607347488403, 70.5513916015625 ], "score": 0.10941778868436813 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 136.79007530212402, 231.885498046875, 66.67649269104004, 172.00933837890625 ], "score": 0.9970182180404663 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 206.24027252197266, 224.36256408691406, 26.385154724121094, 59.32038879394531 ], "score": 0.9111146926879883 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 165.79992294311523, 227.00180053710938, 37.602272033691406, 88.23150634765625 ], "score": 0.7070072889328003 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 279.1789245605469, 218.73353576660156, 26.380081176757812, 60.87596130371094 ], "score": 0.4630689024925232 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 117.00927734375, 242.6876220703125, 58.82566452026367, 164.81036376953125 ], "score": 0.33044111728668213 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 221.1184310913086, 223.5417022705078, 24.54998016357422, 57.81678771972656 ], "score": 0.3248518407344818 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 180.08983612060547, 234.17904663085938, 27.071800231933594, 61.06671142578125 ], "score": 0.20569297671318054 }, { "image_id": 105, "category_id": 1.0, "bbox": [ 161.75371170043945, 263.12066650390625, 45.32917022705078, 117.66656494140625 ], "score": 0.13822999596595764 }, { "image_id": 106, "category_id": 1.0, "bbox": [ 16.324485540390015, 228.49169921875, 29.53431725502014, 58.58966064453125 ], "score": 0.2852965295314789 }, { "image_id": 107, "category_id": 1.0, "bbox": [ 12.732058763504028, 213.72866821289062, 33.55966925621033, 69.18035888671875 ], "score": 0.26753610372543335 }, { "image_id": 116, "category_id": 1.0, "bbox": [ 23.47679376602173, 240.1806640625, 56.60385847091675, 103.87969970703125 ], "score": 0.10244852304458618 }, { "image_id": 123, "category_id": 1.0, "bbox": [ 567.3138046264648, 205.66287231445312, 51.25160217285156, 98.01913452148438 ], "score": 0.27901434898376465 }, { "image_id": 124, "category_id": 1.0, "bbox": [ 71.49289131164551, 196.83961486816406, 35.05434036254883, 69.19065856933594 ], "score": 0.28702062368392944 }, { "image_id": 139, "category_id": 1.0, "bbox": [ 20.02791166305542, 237.2415771484375, 45.04929780960083, 81.97027587890625 ], "score": 0.3349899351596832 }, { "image_id": 141, "category_id": 1.0, "bbox": [ 312.490291595459, 184.87051391601562, 21.789188385009766, 59.0308837890625 ], "score": 0.19487352669239044 }, { "image_id": 143, "category_id": 1.0, "bbox": [ 557.6514053344727, 112.2939453125, 36.17279052734375, 103.42141723632812 ], "score": 0.1792064905166626 }, { "image_id": 145, "category_id": 1.0, "bbox": [ 34.506635665893555, 166.39328002929688, 34.79702949523926, 69.86917114257812 ], "score": 0.2619130611419678 }, { "image_id": 145, "category_id": 1.0, "bbox": [ 29.85452651977539, 186.34872436523438, 43.8162899017334, 96.56719970703125 ], "score": 0.10121336579322815 }, { "image_id": 151, "category_id": 1.0, "bbox": [ 485.86063385009766, 233.50819396972656, 24.969406127929688, 38.91151428222656 ], "score": 0.11374813318252563 }, { "image_id": 152, "category_id": 1.0, "bbox": [ 416.1009979248047, 245.62608337402344, 23.495025634765625, 43.81166076660156 ], "score": 0.7168015241622925 }, { "image_id": 152, "category_id": 1.0, "bbox": [ 405.3425598144531, 246.85894775390625, 24.709014892578125, 41.99407958984375 ], "score": 0.13085028529167175 }, { "image_id": 153, "category_id": 1.0, "bbox": [ 309.80716705322266, 255.6416778564453, 26.830520629882812, 56.20109558105469 ], "score": 0.9719898700714111 }, { "image_id": 153, "category_id": 1.0, "bbox": [ 320.05908966064453, 258.66314697265625, 25.672454833984375, 45.8704833984375 ], "score": 0.10867235064506531 }, { "image_id": 154, "category_id": 1.0, "bbox": [ 167.54505157470703, 252.27032470703125, 34.93156433105469, 66.4776611328125 ], "score": 0.9887393116950989 }, { "image_id": 154, "category_id": 1.0, "bbox": [ 183.40951919555664, 253.06898498535156, 28.128662109375, 59.58384704589844 ], "score": 0.317941814661026 }, { "image_id": 177, "category_id": 1.0, "bbox": [ 408.4987258911133, 167.98614501953125, 19.966812133789062, 48.94793701171875 ], "score": 0.11860007792711258 }, { "image_id": 185, "category_id": 1.0, "bbox": [ 594.2313003540039, 283.0734558105469, 32.09968566894531, 91.6656494140625 ], "score": 0.3272799253463745 }, { "image_id": 198, "category_id": 1.0, "bbox": [ 205.09540557861328, 59.32209014892578, 70.09918212890625, 220.75164031982422 ], "score": 0.10281242430210114 }, { "image_id": 204, "category_id": 1.0, "bbox": [ 251.6284942626953, 206.6007843017578, 23.8800048828125, 42.66607666015625 ], "score": 0.28533709049224854 }, { "image_id": 205, "category_id": 1.0, "bbox": [ 397.2323989868164, 195.65330505371094, 26.03271484375, 51.492645263671875 ], "score": 0.3549531102180481 }, { "image_id": 205, "category_id": 1.0, "bbox": [ 473.41636657714844, 199.43023681640625, 21.009521484375, 48.154815673828125 ], "score": 0.3222406804561615 }, { "image_id": 207, "category_id": 1.0, "bbox": [ 538.7117385864258, 192.62303161621094, 27.665328979492188, 57.030548095703125 ], "score": 0.3737119436264038 }, { "image_id": 208, "category_id": 1.0, "bbox": [ 516.7654800415039, 206.49270629882812, 23.230743408203125, 59.95745849609375 ], "score": 0.912937343120575 }, { "image_id": 208, "category_id": 1.0, "bbox": [ 474.6418762207031, 205.2239532470703, 58.34808349609375, 81.38575744628906 ], "score": 0.1083051860332489 }, { "image_id": 209, "category_id": 1.0, "bbox": [ 535.7555389404297, 230.46624755859375, 27.255096435546875, 61.605712890625 ], "score": 0.6268753409385681 }, { "image_id": 209, "category_id": 1.0, "bbox": [ 599.9736785888672, 308.30950927734375, 31.928253173828125, 82.2276611328125 ], "score": 0.14155332744121552 }, { "image_id": 209, "category_id": 1.0, "bbox": [ 442.63866424560547, 146.19773864746094, 44.53651428222656, 140.2034454345703 ], "score": 0.12014153599739075 }, { "image_id": 211, "category_id": 1.0, "bbox": [ 482.94795989990234, 195.0014190673828, 47.604217529296875, 113.93894958496094 ], "score": 0.19769325852394104 }, { "image_id": 211, "category_id": 1.0, "bbox": [ 475.28961181640625, 125.03440856933594, 47.25547790527344, 127.46145629882812 ], "score": 0.10409429669380188 }, { "image_id": 218, "category_id": 1.0, "bbox": [ 470.5765914916992, 227.3460235595703, 22.984390258789062, 49.80958557128906 ], "score": 0.8358981609344482 }, { "image_id": 218, "category_id": 1.0, "bbox": [ 455.2147674560547, 230.74876403808594, 20.51422119140625, 44.66062927246094 ], "score": 0.2913663983345032 }, { "image_id": 219, "category_id": 1.0, "bbox": [ 543.1877136230469, 226.07644653320312, 24.613037109375, 58.46380615234375 ], "score": 0.5342836380004883 }, { "image_id": 219, "category_id": 1.0, "bbox": [ 560.1988220214844, 285.6709289550781, 26.1444091796875, 57.41705322265625 ], "score": 0.12211505323648453 }, { "image_id": 219, "category_id": 1.0, "bbox": [ 467.7958297729492, 223.9730682373047, 22.67791748046875, 58.85917663574219 ], "score": 0.10853515565395355 }, { "image_id": 225, "category_id": 1.0, "bbox": [ 418.9368438720703, 179.40992736816406, 27.038192749023438, 79.91444396972656 ], "score": 0.6179102659225464 }, { "image_id": 225, "category_id": 1.0, "bbox": [ 379.02915954589844, 186.06088256835938, 30.961532592773438, 72.13687133789062 ], "score": 0.2319021075963974 }, { "image_id": 226, "category_id": 1.0, "bbox": [ 518.0712127685547, 152.31820678710938, 41.524200439453125, 117.33279418945312 ], "score": 0.13750365376472473 }, { "image_id": 226, "category_id": 1.0, "bbox": [ 524.7701263427734, 205.79425048828125, 42.68486022949219, 122.0125732421875 ], "score": 0.10542600601911545 }, { "image_id": 228, "category_id": 1.0, "bbox": [ 70.74524402618408, 212.61968994140625, 33.2319974899292, 64.54595947265625 ], "score": 0.36536604166030884 }, { "image_id": 228, "category_id": 1.0, "bbox": [ 55.375070571899414, 207.5417022705078, 41.1082649230957, 86.39616394042969 ], "score": 0.11156942695379257 }, { "image_id": 228, "category_id": 1.0, "bbox": [ 84.51401710510254, 208.5872039794922, 28.277130126953125, 56.35807800292969 ], "score": 0.11033019423484802 }, { "image_id": 228, "category_id": 1.0, "bbox": [ 405.7852554321289, 206.9655303955078, 35.83732604980469, 43.547821044921875 ], "score": 0.10057545453310013 }, { "image_id": 229, "category_id": 1.0, "bbox": [ 57.87891387939453, 242.73211669921875, 33.64311218261719, 70.9263916015625 ], "score": 0.6987252235412598 }, { "image_id": 229, "category_id": 1.0, "bbox": [ 377.0919418334961, 247.11868286132812, 25.135345458984375, 40.25146484375 ], "score": 0.23479622602462769 }, { "image_id": 229, "category_id": 1.0, "bbox": [ 41.40383720397949, 228.55601501464844, 40.90914726257324, 90.37367248535156 ], "score": 0.18653082847595215 }, { "image_id": 230, "category_id": 1.0, "bbox": [ 414.91458892822266, 250.98338317871094, 21.944122314453125, 52.59205627441406 ], "score": 0.8499155044555664 }, { "image_id": 231, "category_id": 1.0, "bbox": [ 474.20570373535156, 242.86123657226562, 32.99430847167969, 81.20294189453125 ], "score": 0.9993734359741211 }, { "image_id": 237, "category_id": 1.0, "bbox": [ 392.6415252685547, 269.8819274902344, 25.206680297851562, 43.506591796875 ], "score": 0.10795818269252777 }, { "image_id": 240, "category_id": 1.0, "bbox": [ 103.37574005126953, 222.8590850830078, 39.63407516479492, 77.24821472167969 ], "score": 0.44640564918518066 }, { "image_id": 241, "category_id": 1.0, "bbox": [ 599.4814300537109, 268.1965026855469, 25.24169921875, 60.35205078125 ], "score": 0.12400566041469574 }, { "image_id": 241, "category_id": 1.0, "bbox": [ 96.02376937866211, 193.97366333007812, 31.98963165283203, 53.20697021484375 ], "score": 0.10733463615179062 }, { "image_id": 242, "category_id": 1.0, "bbox": [ 462.30552673339844, 197.2940216064453, 43.42887878417969, 114.53697204589844 ], "score": 0.22938132286071777 }, { "image_id": 243, "category_id": 1.0, "bbox": [ 413.64830017089844, 225.8812255859375, 61.72447204589844, 145.8856201171875 ], "score": 0.216695636510849 }, { "image_id": 247, "category_id": 1.0, "bbox": [ 488.25931549072266, 188.222900390625, 84.10736083984375, 212.97479248046875 ], "score": 0.22609160840511322 }, { "image_id": 250, "category_id": 1.0, "bbox": [ 605.4587173461914, 231.74679565429688, 27.020034790039062, 52.0867919921875 ], "score": 0.5954993367195129 }, { "image_id": 251, "category_id": 1.0, "bbox": [ 393.8215637207031, 186.078125, 21.835479736328125, 40.100189208984375 ], "score": 0.22099027037620544 }, { "image_id": 252, "category_id": 1.0, "bbox": [ 356.4659118652344, 190.2564697265625, 21.051788330078125, 31.573699951171875 ], "score": 0.10183178633451462 }, { "image_id": 253, "category_id": 1.0, "bbox": [ 567.7779769897461, 214.83895874023438, 22.22320556640625, 44.224456787109375 ], "score": 0.41432511806488037 }, { "image_id": 253, "category_id": 1.0, "bbox": [ 298.034610748291, 187.67811584472656, 19.347763061523438, 41.1767578125 ], "score": 0.10943782329559326 }, { "image_id": 259, "category_id": 1.0, "bbox": [ 401.6189193725586, 218.7064208984375, 20.489044189453125, 41.2900390625 ], "score": 0.13658931851387024 }, { "image_id": 260, "category_id": 1.0, "bbox": [ 422.90008544921875, 227.51393127441406, 22.473602294921875, 44.88975524902344 ], "score": 0.2749863266944885 }, { "image_id": 260, "category_id": 1.0, "bbox": [ 410.4713821411133, 223.6767120361328, 23.509750366210938, 44.81697082519531 ], "score": 0.10218849778175354 }, { "image_id": 261, "category_id": 1.0, "bbox": [ 460.67089080810547, 224.17718505859375, 27.232589721679688, 63.193817138671875 ], "score": 0.138286292552948 }, { "image_id": 262, "category_id": 1.0, "bbox": [ 493.9805603027344, 230.16488647460938, 32.347869873046875, 69.72552490234375 ], "score": 0.9929615259170532 }, { "image_id": 262, "category_id": 1.0, "bbox": [ 525.4094314575195, 228.52423095703125, 28.825607299804688, 72.19512939453125 ], "score": 0.9334660768508911 }, { "image_id": 262, "category_id": 1.0, "bbox": [ 507.4969482421875, 231.46047973632812, 30.301284790039062, 69.63104248046875 ], "score": 0.7375472784042358 }, { "image_id": 262, "category_id": 1.0, "bbox": [ 43.916144371032715, 213.69166564941406, 25.639705657958984, 46.03059387207031 ], "score": 0.37288010120391846 }, { "image_id": 262, "category_id": 1.0, "bbox": [ 25.115292072296143, 208.76870727539062, 48.026463985443115, 58.918243408203125 ], "score": 0.1439988613128662 }, { "image_id": 263, "category_id": 1.0, "bbox": [ 27.0835542678833, 200.46261596679688, 40.0146484375, 44.332733154296875 ], "score": 0.12202958762645721 }, { "image_id": 266, "category_id": 1.0, "bbox": [ 387.5287628173828, 216.87271118164062, 20.637435913085938, 45.49273681640625 ], "score": 0.11456871032714844 }, { "image_id": 267, "category_id": 1.0, "bbox": [ 432.21996307373047, 209.8878936767578, 20.9954833984375, 45.490447998046875 ], "score": 0.27410611510276794 }, { "image_id": 268, "category_id": 1.0, "bbox": [ 420.49732208251953, 205.74220275878906, 24.215164184570312, 58.95802307128906 ], "score": 0.5205641984939575 }, { "image_id": 269, "category_id": 1.0, "bbox": [ 495.28636932373047, 218.5779571533203, 26.975555419921875, 63.16194152832031 ], "score": 0.8260303735733032 }, { "image_id": 270, "category_id": 1.0, "bbox": [ 495.15247344970703, 210.545654296875, 39.50416564941406, 94.1759033203125 ], "score": 0.9833868741989136 }, { "image_id": 270, "category_id": 1.0, "bbox": [ 556.6213226318359, 197.8018798828125, 36.71272277832031, 106.13681030273438 ], "score": 0.9584127068519592 }, { "image_id": 270, "category_id": 1.0, "bbox": [ 582.8754425048828, 203.8977813720703, 41.35215759277344, 115.93095397949219 ], "score": 0.19609946012496948 }, { "image_id": 270, "category_id": 1.0, "bbox": [ 367.17803955078125, 193.45347595214844, 23.628768920898438, 50.414520263671875 ], "score": 0.1209447830915451 }, { "image_id": 271, "category_id": 1.0, "bbox": [ 576.4363479614258, 227.2941436767578, 47.00408935546875, 132.1217498779297 ], "score": 0.997174859046936 }, { "image_id": 271, "category_id": 1.0, "bbox": [ 371.7643356323242, 196.787109375, 32.27272033691406, 76.44110107421875 ], "score": 0.7743052244186401 }, { "image_id": 271, "category_id": 1.0, "bbox": [ 384.84397888183594, 213.34890747070312, 24.19097900390625, 55.525238037109375 ], "score": 0.19436994194984436 }, { "image_id": 272, "category_id": 1.0, "bbox": [ 401.73046112060547, 178.14341735839844, 34.79949951171875, 91.26954650878906 ], "score": 0.9433897733688354 }, { "image_id": 272, "category_id": 1.0, "bbox": [ 131.5046501159668, 210.6347198486328, 22.577686309814453, 48.92366027832031 ], "score": 0.14617522060871124 }, { "image_id": 273, "category_id": 1.0, "bbox": [ 451.66847229003906, 202.66307067871094, 41.9049072265625, 101.88172912597656 ], "score": 0.4197772741317749 }, { "image_id": 273, "category_id": 1.0, "bbox": [ 376.3145065307617, 186.86697387695312, 29.732742309570312, 46.434356689453125 ], "score": 0.1079215481877327 }, { "image_id": 273, "category_id": 1.0, "bbox": [ 120.78410148620605, 204.96063232421875, 21.136932373046875, 59.20831298828125 ], "score": 0.10212410241365433 }, { "image_id": 274, "category_id": 1.0, "bbox": [ 109.17725563049316, 201.33880615234375, 25.494747161865234, 58.276885986328125 ], "score": 0.9987709522247314 }, { "image_id": 274, "category_id": 1.0, "bbox": [ 497.9564666748047, 204.57028198242188, 33.848114013671875, 89.11334228515625 ], "score": 0.9945130348205566 }, { "image_id": 274, "category_id": 1.0, "bbox": [ 470.2693557739258, 193.58392333984375, 41.93443298339844, 117.33221435546875 ], "score": 0.15172885358333588 }, { "image_id": 275, "category_id": 1.0, "bbox": [ 76.9282341003418, 203.29327392578125, 35.11240005493164, 69.68304443359375 ], "score": 0.9471473097801208 }, { "image_id": 275, "category_id": 1.0, "bbox": [ 529.8644256591797, 177.01760864257812, 21.816787719726562, 34.8779296875 ], "score": 0.2877448797225952 }, { "image_id": 276, "category_id": 1.0, "bbox": [ 559.3429946899414, 185.56268310546875, 22.624969482421875, 44.864501953125 ], "score": 0.699411153793335 }, { "image_id": 277, "category_id": 1.0, "bbox": [ 592.4369812011719, 191.48562622070312, 26.0125732421875, 47.594146728515625 ], "score": 0.8373648524284363 }, { "image_id": 279, "category_id": 1.0, "bbox": [ 263.4228515625, 205.826416015625, 24.261627197265625, 55.322540283203125 ], "score": 0.2667836546897888 }, { "image_id": 279, "category_id": 1.0, "bbox": [ 507.5924301147461, 173.23023986816406, 35.15045166015625, 80.06881713867188 ], "score": 0.19991463422775269 }, { "image_id": 282, "category_id": 1.0, "bbox": [ 216.6622543334961, 207.5657958984375, 18.650970458984375, 40.123016357421875 ], "score": 0.10859758406877518 }, { "image_id": 283, "category_id": 1.0, "bbox": [ 329.06932830810547, 208.58900451660156, 21.29364013671875, 44.8646240234375 ], "score": 0.7367265224456787 }, { "image_id": 283, "category_id": 1.0, "bbox": [ 504.17652130126953, 202.75633239746094, 22.064971923828125, 48.688262939453125 ], "score": 0.13619281351566315 }, { "image_id": 284, "category_id": 1.0, "bbox": [ 393.1082534790039, 213.9628448486328, 24.415512084960938, 47.54972839355469 ], "score": 0.4763474762439728 }, { "image_id": 285, "category_id": 1.0, "bbox": [ 452.02720642089844, 222.07188415527344, 25.71441650390625, 54.28230285644531 ], "score": 0.8568390607833862 }, { "image_id": 285, "category_id": 1.0, "bbox": [ 508.65474700927734, 215.8719940185547, 23.4808349609375, 52.43046569824219 ], "score": 0.4740264415740967 }, { "image_id": 286, "category_id": 1.0, "bbox": [ 546.5007781982422, 213.8075714111328, 34.47296142578125, 75.81452941894531 ], "score": 0.9933954477310181 }, { "image_id": 286, "category_id": 1.0, "bbox": [ 586.0730361938477, 207.37551879882812, 32.422637939453125, 74.227783203125 ], "score": 0.5078689455986023 }, { "image_id": 286, "category_id": 1.0, "bbox": [ 449.32716369628906, 207.10499572753906, 21.6143798828125, 44.153411865234375 ], "score": 0.14372441172599792 }, { "image_id": 288, "category_id": 1.0, "bbox": [ 526.0000228881836, 205.07843017578125, 24.27703857421875, 55.953155517578125 ], "score": 0.9889505505561829 }, { "image_id": 289, "category_id": 1.0, "bbox": [ 588.1447982788086, 205.5816192626953, 32.35221862792969, 70.64106750488281 ], "score": 0.9806414842605591 }, { "image_id": 293, "category_id": 1.0, "bbox": [ 554.8603820800781, 193.6540069580078, 25.419692993164062, 54.252685546875 ], "score": 0.636526346206665 }, { "image_id": 293, "category_id": 1.0, "bbox": [ 491.30859375, 194.27081298828125, 23.22113037109375, 50.038604736328125 ], "score": 0.4124835431575775 }, { "image_id": 293, "category_id": 1.0, "bbox": [ 473.4995651245117, 194.52877807617188, 21.166610717773438, 47.619476318359375 ], "score": 0.14687661826610565 }, { "image_id": 294, "category_id": 1.0, "bbox": [ 497.3500442504883, 207.17384338378906, 20.55511474609375, 47.00555419921875 ], "score": 0.39044520258903503 }, { "image_id": 294, "category_id": 1.0, "bbox": [ 79.86616611480713, 205.56344604492188, 43.839545249938965, 60.561614990234375 ], "score": 0.20310571789741516 }, { "image_id": 295, "category_id": 1.0, "bbox": [ 369.24915313720703, 194.49197387695312, 34.40155029296875, 82.00314331054688 ], "score": 0.6586998105049133 }, { "image_id": 295, "category_id": 1.0, "bbox": [ 546.8118286132812, 206.48016357421875, 20.303878784179688, 49.86077880859375 ], "score": 0.3635917603969574 }, { "image_id": 295, "category_id": 1.0, "bbox": [ 26.882376670837402, 220.43894958496094, 63.093953132629395, 59.15132141113281 ], "score": 0.1828082948923111 }, { "image_id": 295, "category_id": 1.0, "bbox": [ 534.3866729736328, 141.23873901367188, 32.41127014160156, 67.30499267578125 ], "score": 0.10020648688077927 }, { "image_id": 296, "category_id": 1.0, "bbox": [ 586.4867782592773, 247.5509033203125, 26.43707275390625, 58.44451904296875 ], "score": 0.9939581155776978 }, { "image_id": 296, "category_id": 1.0, "bbox": [ 385.7887268066406, 236.42068481445312, 38.61053466796875, 101.76751708984375 ], "score": 0.3509266674518585 }, { "image_id": 297, "category_id": 1.0, "bbox": [ 407.2925567626953, 195.74830627441406, 35.233001708984375, 114.44526672363281 ], "score": 0.42983001470565796 }, { "image_id": 297, "category_id": 1.0, "bbox": [ 223.17039489746094, 192.22955322265625, 30.81378936767578, 88.62051391601562 ], "score": 0.22978439927101135 }, { "image_id": 297, "category_id": 1.0, "bbox": [ 504.6601104736328, 187.49989318847656, 17.136154174804688, 40.14215087890625 ], "score": 0.18884411454200745 }, { "image_id": 297, "category_id": 1.0, "bbox": [ 40.17498016357422, 201.29818725585938, 23.66530418395996, 39.613250732421875 ], "score": 0.1482679694890976 }, { "image_id": 298, "category_id": 1.0, "bbox": [ 507.3516082763672, 198.2407684326172, 20.59295654296875, 44.138641357421875 ], "score": 0.48987486958503723 }, { "image_id": 299, "category_id": 1.0, "bbox": [ 207.33837127685547, 241.53933715820312, 26.4794921875, 59.916015625 ], "score": 0.11977407336235046 }, { "image_id": 300, "category_id": 1.0, "bbox": [ 527.0646667480469, 229.43194580078125, 19.988632202148438, 44.640960693359375 ], "score": 0.5612929463386536 }, { "image_id": 300, "category_id": 1.0, "bbox": [ 195.08968353271484, 273.2886657714844, 28.797340393066406, 89.62646484375 ], "score": 0.14930360019207 }, { "image_id": 300, "category_id": 1.0, "bbox": [ 470.1469039916992, 304.12347412109375, 45.167694091796875, 99.863037109375 ], "score": 0.11709664762020111 }, { "image_id": 301, "category_id": 1.0, "bbox": [ 528.6186981201172, 187.37179565429688, 20.509033203125, 42.046722412109375 ], "score": 0.8030562400817871 }, { "image_id": 302, "category_id": 1.0, "bbox": [ 545.7404708862305, 229.79605102539062, 18.645858764648438, 37.984527587890625 ], "score": 0.12982451915740967 }, { "image_id": 303, "category_id": 1.0, "bbox": [ 556.5720748901367, 186.83343505859375, 21.061019897460938, 43.23309326171875 ], "score": 0.569550096988678 }, { "image_id": 303, "category_id": 1.0, "bbox": [ 453.4864807128906, 185.71055603027344, 20.919952392578125, 44.28076171875 ], "score": 0.3526979088783264 }, { "image_id": 303, "category_id": 1.0, "bbox": [ 440.21018981933594, 189.95068359375, 20.992202758789062, 40.4866943359375 ], "score": 0.10827972739934921 }, { "image_id": 304, "category_id": 1.0, "bbox": [ 556.6324234008789, 201.97068786621094, 20.429000854492188, 50.921478271484375 ], "score": 0.7417435646057129 }, { "image_id": 304, "category_id": 1.0, "bbox": [ 457.06214904785156, 209.96917724609375, 20.784530639648438, 44.153045654296875 ], "score": 0.31540215015411377 }, { "image_id": 305, "category_id": 1.0, "bbox": [ 466.9527053833008, 218.3385009765625, 19.648590087890625, 41.30523681640625 ], "score": 0.6229888200759888 }, { "image_id": 305, "category_id": 1.0, "bbox": [ 484.7916030883789, 215.41204833984375, 19.190521240234375, 44.048675537109375 ], "score": 0.36324962973594666 }, { "image_id": 305, "category_id": 1.0, "bbox": [ 549.3851089477539, 217.5452117919922, 18.439178466796875, 41.82325744628906 ], "score": 0.22542999684810638 }, { "image_id": 306, "category_id": 1.0, "bbox": [ 478.5676956176758, 216.16818237304688, 19.802017211914062, 43.611358642578125 ], "score": 0.920697808265686 }, { "image_id": 306, "category_id": 1.0, "bbox": [ 540.3784942626953, 208.99871826171875, 21.330947875976562, 47.048492431640625 ], "score": 0.6655880212783813 }, { "image_id": 306, "category_id": 1.0, "bbox": [ 490.25196075439453, 212.65762329101562, 20.055084228515625, 45.9820556640625 ], "score": 0.23452481627464294 }, { "image_id": 307, "category_id": 1.0, "bbox": [ 506.79134368896484, 232.69711303710938, 23.529891967773438, 50.09881591796875 ], "score": 0.9700486660003662 }, { "image_id": 307, "category_id": 1.0, "bbox": [ 531.2246322631836, 227.25244140625, 19.390411376953125, 54.291656494140625 ], "score": 0.8260313272476196 }, { "image_id": 307, "category_id": 1.0, "bbox": [ 553.0661773681641, 218.67742919921875, 21.261978149414062, 58.474212646484375 ], "score": 0.6071077585220337 }, { "image_id": 307, "category_id": 1.0, "bbox": [ 523.0893325805664, 229.24876403808594, 18.69049072265625, 51.12123107910156 ], "score": 0.26692765951156616 }, { "image_id": 308, "category_id": 1.0, "bbox": [ 586.0493087768555, 227.23313903808594, 23.73199462890625, 60.88502502441406 ], "score": 0.9595903158187866 }, { "image_id": 308, "category_id": 1.0, "bbox": [ 605.8915710449219, 220.62203979492188, 26.725997924804688, 68.2308349609375 ], "score": 0.8062505722045898 }, { "image_id": 308, "category_id": 1.0, "bbox": [ 376.2431335449219, 196.58067321777344, 31.3092041015625, 74.95750427246094 ], "score": 0.10212397575378418 }, { "image_id": 309, "category_id": 1.0, "bbox": [ 415.7836151123047, 197.9702911376953, 25.889739990234375, 74.65672302246094 ], "score": 0.22118471562862396 }, { "image_id": 309, "category_id": 1.0, "bbox": [ 555.1419830322266, 216.8047332763672, 23.68072509765625, 49.59620666503906 ], "score": 0.15871453285217285 }, { "image_id": 310, "category_id": 1.0, "bbox": [ 138.5062313079834, 165.984375, 31.252222061157227, 77.48077392578125 ], "score": 0.1157711073756218 }, { "image_id": 311, "category_id": 1.0, "bbox": [ 426.14551544189453, 215.45504760742188, 19.76318359375, 46.899566650390625 ], "score": 0.1684916913509369 }, { "image_id": 312, "category_id": 1.0, "bbox": [ 453.17161560058594, 208.31507873535156, 21.220245361328125, 47.22125244140625 ], "score": 0.8123185634613037 }, { "image_id": 312, "category_id": 1.0, "bbox": [ 558.8361358642578, 194.8333282470703, 37.88238525390625, 119.71794128417969 ], "score": 0.1470964103937149 }, { "image_id": 313, "category_id": 1.0, "bbox": [ 480.16090393066406, 219.18809509277344, 23.69049072265625, 51.09461975097656 ], "score": 0.9992315769195557 }, { "image_id": 314, "category_id": 1.0, "bbox": [ 525.6198120117188, 209.80007934570312, 31.254425048828125, 67.15350341796875 ], "score": 0.9996103644371033 }, { "image_id": 315, "category_id": 1.0, "bbox": [ 399.6278762817383, 210.44186401367188, 17.969589233398438, 38.9822998046875 ], "score": 0.12762506306171417 }, { "image_id": 316, "category_id": 1.0, "bbox": [ 431.62261962890625, 212.33619689941406, 20.88775634765625, 41.72607421875 ], "score": 0.6918307542800903 }, { "image_id": 316, "category_id": 1.0, "bbox": [ 288.9114761352539, 199.20001220703125, 19.79736328125, 36.82293701171875 ], "score": 0.1534269005060196 }, { "image_id": 316, "category_id": 1.0, "bbox": [ 420.60352325439453, 208.858154296875, 20.771484375, 46.47869873046875 ], "score": 0.13441920280456543 }, { "image_id": 316, "category_id": 1.0, "bbox": [ 75.93160152435303, 183.82818603515625, 30.69462299346924, 70.34075927734375 ], "score": 0.1131623238325119 }, { "image_id": 317, "category_id": 1.0, "bbox": [ 455.83080291748047, 205.3389129638672, 23.795547485351562, 45.95892333984375 ], "score": 0.7563985586166382 }, { "image_id": 317, "category_id": 1.0, "bbox": [ 439.4209671020508, 201.88389587402344, 22.721176147460938, 47.57861328125 ], "score": 0.14789050817489624 }, { "image_id": 317, "category_id": 1.0, "bbox": [ 432.34527587890625, 196.72549438476562, 60.110015869140625, 60.42108154296875 ], "score": 0.10284817963838577 }, { "image_id": 318, "category_id": 1.0, "bbox": [ 473.50318908691406, 213.0306396484375, 23.080215454101562, 58.678619384765625 ], "score": 0.1811734139919281 }, { "image_id": 318, "category_id": 1.0, "bbox": [ 493.6570358276367, 210.15773010253906, 22.656097412109375, 54.91880798339844 ], "score": 0.12265704572200775 }, { "image_id": 318, "category_id": 1.0, "bbox": [ 41.887874603271484, 209.13388061523438, 18.304033279418945, 46.58929443359375 ], "score": 0.10514552891254425 }, { "image_id": 319, "category_id": 1.0, "bbox": [ 519.3567657470703, 211.35389709472656, 28.149185180664062, 65.50379943847656 ], "score": 0.9996024370193481 }, { "image_id": 319, "category_id": 1.0, "bbox": [ 541.5618133544922, 210.61138916015625, 33.05976867675781, 77.03707885742188 ], "score": 0.9590939879417419 }, { "image_id": 319, "category_id": 1.0, "bbox": [ 119.87752914428711, 198.82630920410156, 34.793968200683594, 41.291839599609375 ], "score": 0.18948984146118164 }, { "image_id": 320, "category_id": 1.0, "bbox": [ 578.9877700805664, 187.5253143310547, 30.741043090820312, 77.82814025878906 ], "score": 0.9984749555587769 }, { "image_id": 320, "category_id": 1.0, "bbox": [ 604.4329071044922, 186.68832397460938, 28.315963745117188, 87.7342529296875 ], "score": 0.9894192814826965 }, { "image_id": 320, "category_id": 1.0, "bbox": [ 616.0617065429688, 183.5875244140625, 33.430938720703125, 86.0911865234375 ], "score": 0.1184026449918747 }, { "image_id": 321, "category_id": 1.0, "bbox": [ 471.85218811035156, 213.72335815429688, 20.803375244140625, 38.05950927734375 ], "score": 0.15576542913913727 }, { "image_id": 321, "category_id": 1.0, "bbox": [ 419.7206115722656, 211.94158935546875, 17.051162719726562, 33.8052978515625 ], "score": 0.11046690493822098 }, { "image_id": 322, "category_id": 1.0, "bbox": [ 483.58280181884766, 211.4950714111328, 23.130950927734375, 45.15269470214844 ], "score": 0.9099663496017456 }, { "image_id": 322, "category_id": 1.0, "bbox": [ 81.85068130493164, 201.8526153564453, 36.5855598449707, 49.528076171875 ], "score": 0.5040228962898254 }, { "image_id": 322, "category_id": 1.0, "bbox": [ 434.0468978881836, 210.99337768554688, 18.485031127929688, 35.528717041015625 ], "score": 0.2929854989051819 }, { "image_id": 322, "category_id": 1.0, "bbox": [ 440.8336639404297, 207.8306427001953, 19.55657958984375, 38.662841796875 ], "score": 0.10180915892124176 }, { "image_id": 323, "category_id": 1.0, "bbox": [ 512.281608581543, 215.7952880859375, 26.389541625976562, 49.97576904296875 ], "score": 0.9941720366477966 }, { "image_id": 323, "category_id": 1.0, "bbox": [ 462.6364517211914, 209.24441528320312, 23.092575073242188, 44.834503173828125 ], "score": 0.8525091409683228 }, { "image_id": 323, "category_id": 1.0, "bbox": [ 419.9494171142578, 211.94358825683594, 22.310562133789062, 48.06028747558594 ], "score": 0.793878436088562 }, { "image_id": 323, "category_id": 1.0, "bbox": [ 589.7092819213867, 199.3729248046875, 29.012603759765625, 57.60205078125 ], "score": 0.17469915747642517 }, { "image_id": 324, "category_id": 1.0, "bbox": [ 571.1286544799805, 213.17037963867188, 25.825119018554688, 61.435028076171875 ], "score": 0.9989317655563354 }, { "image_id": 324, "category_id": 1.0, "bbox": [ 503.3692169189453, 214.6667022705078, 21.367111206054688, 43.93452453613281 ], "score": 0.8491754531860352 }, { "image_id": 324, "category_id": 1.0, "bbox": [ 512.1068572998047, 212.3091583251953, 19.956817626953125, 47.41716003417969 ], "score": 0.5927387475967407 }, { "image_id": 324, "category_id": 1.0, "bbox": [ 450.80013275146484, 216.13909912109375, 18.461380004882812, 40.660064697265625 ], "score": 0.1207800954580307 }, { "image_id": 325, "category_id": 1.0, "bbox": [ 546.5859222412109, 211.73284912109375, 21.922988891601562, 53.26416015625 ], "score": 0.9580247402191162 }, { "image_id": 325, "category_id": 1.0, "bbox": [ 484.11266326904297, 217.15164184570312, 23.012771606445312, 43.0003662109375 ], "score": 0.40972089767456055 }, { "image_id": 325, "category_id": 1.0, "bbox": [ 0.2864861488342285, 202.97799682617188, 72.3721194267273, 62.47650146484375 ], "score": 0.12952136993408203 }, { "image_id": 325, "category_id": 1.0, "bbox": [ 558.7952423095703, 237.0953369140625, 27.09197998046875, 65.70855712890625 ], "score": 0.11823561787605286 }, { "image_id": 326, "category_id": 1.0, "bbox": [ 518.4336853027344, 215.2552490234375, 22.348251342773438, 47.91973876953125 ], "score": 0.9966726303100586 }, { "image_id": 326, "category_id": 1.0, "bbox": [ 608.2069396972656, 216.53884887695312, 22.013473510742188, 53.041900634765625 ], "score": 0.9775271415710449 }, { "image_id": 326, "category_id": 1.0, "bbox": [ 592.3101806640625, 218.08660888671875, 19.618453979492188, 54.41375732421875 ], "score": 0.6464462876319885 }, { "image_id": 326, "category_id": 1.0, "bbox": [ 54.21379089355469, 164.44862365722656, 33.76660346984863, 68.71148681640625 ], "score": 0.12160726636648178 }, { "image_id": 327, "category_id": 1.0, "bbox": [ 559.2508316040039, 208.14859008789062, 28.397979736328125, 73.25735473632812 ], "score": 0.9987326264381409 }, { "image_id": 327, "category_id": 1.0, "bbox": [ 457.10018157958984, 202.43824768066406, 23.72589111328125, 61.73918151855469 ], "score": 0.18464483320713043 }, { "image_id": 328, "category_id": 1.0, "bbox": [ 477.52079010009766, 210.53045654296875, 20.816574096679688, 40.470306396484375 ], "score": 0.5629334449768066 }, { "image_id": 329, "category_id": 1.0, "bbox": [ 153.18547248840332, 201.62039184570312, 27.684640884399414, 52.511566162109375 ], "score": 0.18653637170791626 }, { "image_id": 329, "category_id": 1.0, "bbox": [ 527.4736404418945, 209.98098754882812, 21.299514770507812, 46.217010498046875 ], "score": 0.13382036983966827 }, { "image_id": 329, "category_id": 1.0, "bbox": [ 462.79579162597656, 207.99313354492188, 20.59051513671875, 46.77618408203125 ], "score": 0.12934133410453796 }, { "image_id": 330, "category_id": 1.0, "bbox": [ 534.7260665893555, 208.75819396972656, 23.022308349609375, 55.45390319824219 ], "score": 0.9753168821334839 }, { "image_id": 330, "category_id": 1.0, "bbox": [ 615.7188415527344, 210.01422119140625, 23.8092041015625, 64.7037353515625 ], "score": 0.7102878093719482 }, { "image_id": 330, "category_id": 1.0, "bbox": [ 444.1154479980469, 204.46145629882812, 21.457672119140625, 51.080535888671875 ], "score": 0.37305647134780884 }, { "image_id": 330, "category_id": 1.0, "bbox": [ 409.2776107788086, 209.173828125, 18.761444091796875, 41.382232666015625 ], "score": 0.16579261422157288 }, { "image_id": 330, "category_id": 1.0, "bbox": [ 394.7198486328125, 210.94891357421875, 16.931076049804688, 42.45025634765625 ], "score": 0.11976699531078339 }, { "image_id": 331, "category_id": 1.0, "bbox": [ 447.66822814941406, 201.05044555664062, 21.692733764648438, 59.50396728515625 ], "score": 0.9951677322387695 }, { "image_id": 331, "category_id": 1.0, "bbox": [ 502.40535736083984, 209.61297607421875, 20.994186401367188, 48.89154052734375 ], "score": 0.9946379661560059 }, { "image_id": 331, "category_id": 1.0, "bbox": [ 519.5356369018555, 209.94976806640625, 22.104263305664062, 47.503662109375 ], "score": 0.8396658301353455 }, { "image_id": 331, "category_id": 1.0, "bbox": [ 416.06292724609375, 170.7921142578125, 36.50749206542969, 93.513427734375 ], "score": 0.2493165135383606 }, { "image_id": 331, "category_id": 1.0, "bbox": [ 379.43695068359375, 211.68145751953125, 17.884063720703125, 33.765289306640625 ], "score": 0.1608411818742752 }, { "image_id": 332, "category_id": 1.0, "bbox": [ 538.1025314331055, 202.7987518310547, 21.871566772460938, 46.49835205078125 ], "score": 0.9856164455413818 }, { "image_id": 332, "category_id": 1.0, "bbox": [ 589.5168685913086, 198.62294006347656, 32.57087707519531, 79.49830627441406 ], "score": 0.7668974995613098 }, { "image_id": 332, "category_id": 1.0, "bbox": [ 397.0758056640625, 210.38742065429688, 18.373794555664062, 42.227203369140625 ], "score": 0.23496417701244354 }, { "image_id": 332, "category_id": 1.0, "bbox": [ 604.1402053833008, 206.14205932617188, 27.317962646484375, 64.151123046875 ], "score": 0.21025872230529785 }, { "image_id": 333, "category_id": 1.0, "bbox": [ 414.5201110839844, 229.22186279296875, 20.319290161132812, 46.859130859375 ], "score": 0.9360212087631226 }, { "image_id": 333, "category_id": 1.0, "bbox": [ 556.0176849365234, 230.8111114501953, 30.728912353515625, 86.73609924316406 ], "score": 0.8876342177391052 }, { "image_id": 333, "category_id": 1.0, "bbox": [ 551.769905090332, 137.55886840820312, 82.79151916503906, 209.25326538085938 ], "score": 0.10549735277891159 }, { "image_id": 334, "category_id": 1.0, "bbox": [ 432.49725341796875, 223.60386657714844, 20.485458374023438, 40.25434875488281 ], "score": 0.35545486211776733 }, { "image_id": 335, "category_id": 1.0, "bbox": [ 402.2118377685547, 206.3861083984375, 19.121475219726562, 43.73016357421875 ], "score": 0.17145957052707672 }, { "image_id": 335, "category_id": 1.0, "bbox": [ 95.84763526916504, 197.89230346679688, 23.97613525390625, 50.292633056640625 ], "score": 0.12497739493846893 }, { "image_id": 335, "category_id": 1.0, "bbox": [ 535.9215545654297, 112.9029769897461, 82.26249694824219, 185.66846466064453 ], "score": 0.11928683519363403 }, { "image_id": 336, "category_id": 1.0, "bbox": [ 423.2398986816406, 207.18641662597656, 20.910491943359375, 49.83180236816406 ], "score": 0.46959346532821655 }, { "image_id": 337, "category_id": 1.0, "bbox": [ 515.6567001342773, 220.27427673339844, 29.65057373046875, 56.24925231933594 ], "score": 0.9988548755645752 }, { "image_id": 337, "category_id": 1.0, "bbox": [ 127.39293098449707, 199.56494140625, 23.37869644165039, 43.481658935546875 ], "score": 0.14447961747646332 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 494.9018859863281, 204.41477966308594, 23.558731079101562, 58.24421691894531 ], "score": 0.9834346771240234 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 473.5755157470703, 208.6059112548828, 22.39593505859375, 51.33815002441406 ], "score": 0.8352043628692627 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 431.2912368774414, 214.79046630859375, 20.438156127929688, 41.042236328125 ], "score": 0.31823867559432983 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 415.95691680908203, 217.75706481933594, 25.360641479492188, 42.88771057128906 ], "score": 0.29635414481163025 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 467.3232650756836, 201.88568115234375, 19.719467163085938, 55.33941650390625 ], "score": 0.26088428497314453 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 404.4859313964844, 212.97702026367188, 23.218536376953125, 49.893829345703125 ], "score": 0.2162783145904541 }, { "image_id": 338, "category_id": 1.0, "bbox": [ 599.7761917114258, 203.486572265625, 37.77442932128906, 131.19879150390625 ], "score": 0.1957777738571167 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 467.43663787841797, 213.81695556640625, 23.819580078125, 53.46246337890625 ], "score": 0.999355137348175 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 529.602165222168, 205.0317840576172, 27.878570556640625, 63.86863708496094 ], "score": 0.9501981139183044 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 436.34918212890625, 213.00299072265625, 21.473922729492188, 53.38323974609375 ], "score": 0.5864512920379639 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 572.4147415161133, 202.20767211914062, 28.309402465820312, 82.76687622070312 ], "score": 0.5051102042198181 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 543.9541625976562, 194.0021209716797, 39.42497253417969, 102.47499084472656 ], "score": 0.3761141896247864 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 113.62618446350098, 190.27447509765625, 23.296756744384766, 47.5057373046875 ], "score": 0.12545029819011688 }, { "image_id": 339, "category_id": 1.0, "bbox": [ 448.75335693359375, 213.99537658691406, 23.091201782226562, 52.47969055175781 ], "score": 0.10799896717071533 }, { "image_id": 340, "category_id": 1.0, "bbox": [ 525.9492874145508, 215.11102294921875, 30.604095458984375, 77.32223510742188 ], "score": 0.9985224008560181 }, { "image_id": 340, "category_id": 1.0, "bbox": [ 479.78626251220703, 222.18746948242188, 28.363037109375, 68.6541748046875 ], "score": 0.9955023527145386 }, { "image_id": 340, "category_id": 1.0, "bbox": [ 495.34446716308594, 223.38002014160156, 26.369552612304688, 73.10581970214844 ], "score": 0.7869254350662231 }, { "image_id": 340, "category_id": 1.0, "bbox": [ 511.89640045166016, 219.82183837890625, 28.379287719726562, 75.21484375 ], "score": 0.329304039478302 }, { "image_id": 341, "category_id": 1.0, "bbox": [ 594.6872711181641, 232.78504943847656, 39.16259765625, 117.23002624511719 ], "score": 0.7941967248916626 }, { "image_id": 342, "category_id": 1.0, "bbox": [ 313.4356880187988, 146.88888549804688, 38.76749038696289, 92.32327270507812 ], "score": 0.14568552374839783 }, { "image_id": 343, "category_id": 1.0, "bbox": [ 612.9558181762695, 223.69100952148438, 23.624496459960938, 71.93902587890625 ], "score": 0.6069415211677551 }, { "image_id": 343, "category_id": 1.0, "bbox": [ 126.28209114074707, 206.96961975097656, 26.520423889160156, 48.96087646484375 ], "score": 0.3827797472476959 }, { "image_id": 344, "category_id": 1.0, "bbox": [ 438.0813217163086, 203.2581787109375, 17.850494384765625, 38.3714599609375 ], "score": 0.24111302196979523 }, { "image_id": 344, "category_id": 1.0, "bbox": [ 433.834228515625, 206.53260803222656, 14.49066162109375, 33.462646484375 ], "score": 0.11696720123291016 }, { "image_id": 345, "category_id": 1.0, "bbox": [ 468.9231872558594, 202.58746337890625, 20.476303100585938, 48.612884521484375 ], "score": 0.37213388085365295 }, { "image_id": 345, "category_id": 1.0, "bbox": [ 72.00071811676025, 206.57098388671875, 22.58903980255127, 40.8790283203125 ], "score": 0.15163713693618774 }, { "image_id": 346, "category_id": 1.0, "bbox": [ 519.7835922241211, 202.89736938476562, 23.514022827148438, 52.98040771484375 ], "score": 0.9973136186599731 }, { "image_id": 346, "category_id": 1.0, "bbox": [ 38.01065921783447, 205.82276916503906, 23.840007781982422, 42.653350830078125 ], "score": 0.20704799890518188 }, { "image_id": 354, "category_id": 1.0, "bbox": [ 517.7985382080078, 214.22476196289062, 23.36029052734375, 56.228240966796875 ], "score": 0.9706904888153076 }, { "image_id": 354, "category_id": 1.0, "bbox": [ 313.55310440063477, 213.21914672851562, 17.771129608154297, 32.757659912109375 ], "score": 0.1056726723909378 }, { "image_id": 355, "category_id": 1.0, "bbox": [ 468.0424499511719, 120.73757934570312, 36.666412353515625, 109.55459594726562 ], "score": 0.1283220797777176 }, { "image_id": 355, "category_id": 1.0, "bbox": [ 322.7024459838867, 208.85630798339844, 17.79998779296875, 34.623260498046875 ], "score": 0.1207457110285759 }, { "image_id": 356, "category_id": 1.0, "bbox": [ 333.8302993774414, 203.4755859375, 21.39495849609375, 40.659271240234375 ], "score": 0.6273572444915771 }, { "image_id": 357, "category_id": 1.0, "bbox": [ 337.63233184814453, 204.46746826171875, 21.099166870117188, 43.670867919921875 ], "score": 0.8608726859092712 }, { "image_id": 357, "category_id": 1.0, "bbox": [ 223.48316192626953, 201.33868408203125, 21.200637817382812, 43.014373779296875 ], "score": 0.15437345206737518 }, { "image_id": 358, "category_id": 1.0, "bbox": [ 343.9247131347656, 200.67869567871094, 20.773773193359375, 42.4671630859375 ], "score": 0.41582924127578735 }, { "image_id": 358, "category_id": 1.0, "bbox": [ 415.7335662841797, 187.91897583007812, 20.332794189453125, 53.95574951171875 ], "score": 0.2789192199707031 }, { "image_id": 359, "category_id": 1.0, "bbox": [ 351.4601135253906, 207.45681762695312, 22.075958251953125, 45.5247802734375 ], "score": 0.8222784996032715 }, { "image_id": 359, "category_id": 1.0, "bbox": [ 432.65602111816406, 208.497802734375, 20.39947509765625, 41.419891357421875 ], "score": 0.21107207238674164 }, { "image_id": 359, "category_id": 1.0, "bbox": [ 339.2409896850586, 200.25503540039062, 22.918701171875, 46.121368408203125 ], "score": 0.1081867665052414 }, { "image_id": 360, "category_id": 1.0, "bbox": [ 358.8349151611328, 206.6141357421875, 23.772659301757812, 54.673858642578125 ], "score": 0.9323445558547974 }, { "image_id": 360, "category_id": 1.0, "bbox": [ 452.7483367919922, 217.35284423828125, 20.808486938476562, 42.8953857421875 ], "score": 0.30643999576568604 }, { "image_id": 360, "category_id": 1.0, "bbox": [ 487.4293899536133, 217.55593872070312, 20.21697998046875, 42.0811767578125 ], "score": 0.20829229056835175 }, { "image_id": 360, "category_id": 1.0, "bbox": [ 85.49083709716797, 185.95510864257812, 22.630558013916016, 53.40069580078125 ], "score": 0.17071306705474854 }, { "image_id": 360, "category_id": 1.0, "bbox": [ 346.04068756103516, 201.75509643554688, 24.884872436523438, 54.453704833984375 ], "score": 0.1300583779811859 }, { "image_id": 361, "category_id": 1.0, "bbox": [ 567.4569702148438, 217.30181884765625, 22.903518676757812, 50.107513427734375 ], "score": 0.9842186570167542 }, { "image_id": 361, "category_id": 1.0, "bbox": [ 508.5908508300781, 217.6732635498047, 24.1607666015625, 54.75218200683594 ], "score": 0.9824813008308411 }, { "image_id": 361, "category_id": 1.0, "bbox": [ 490.42110443115234, 216.12652587890625, 23.891677856445312, 51.098175048828125 ], "score": 0.9393665790557861 }, { "image_id": 361, "category_id": 1.0, "bbox": [ 367.6258087158203, 214.9091339111328, 25.179672241210938, 48.77735900878906 ], "score": 0.8650575876235962 }, { "image_id": 361, "category_id": 1.0, "bbox": [ 434.42962646484375, 204.1837615966797, 27.854690551757812, 36.961761474609375 ], "score": 0.13418179750442505 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 582.4084854125977, 213.20782470703125, 32.2381591796875, 83.01739501953125 ], "score": 0.9918044805526733 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 561.4691162109375, 219.931884765625, 29.365768432617188, 72.190673828125 ], "score": 0.8362737894058228 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 463.8936996459961, 204.4936981201172, 21.778411865234375, 40.771484375 ], "score": 0.7343605756759644 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 371.5186309814453, 218.4545135498047, 23.82843017578125, 46.64942932128906 ], "score": 0.5916967391967773 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 574.1813659667969, 220.41162109375, 27.36968994140625, 68.191650390625 ], "score": 0.14302194118499756 }, { "image_id": 362, "category_id": 1.0, "bbox": [ 480.9868621826172, 206.58863830566406, 19.051132202148438, 42.711578369140625 ], "score": 0.12236838042736053 }, { "image_id": 363, "category_id": 1.0, "bbox": [ 542.1430969238281, 201.85353088378906, 25.634078979492188, 53.45050048828125 ], "score": 0.9934296607971191 }, { "image_id": 363, "category_id": 1.0, "bbox": [ 374.4544219970703, 219.81161499023438, 23.67767333984375, 52.766387939453125 ], "score": 0.9885116815567017 }, { "image_id": 363, "category_id": 1.0, "bbox": [ 519.0925979614258, 203.24777221679688, 21.42242431640625, 52.78363037109375 ], "score": 0.9359031915664673 }, { "image_id": 363, "category_id": 1.0, "bbox": [ 528.9719772338867, 202.88174438476562, 21.250152587890625, 52.96484375 ], "score": 0.2671797275543213 }, { "image_id": 363, "category_id": 1.0, "bbox": [ 11.750493049621582, 187.5877685546875, 32.247819900512695, 78.55142211914062 ], "score": 0.1446845680475235 }, { "image_id": 364, "category_id": 1.0, "bbox": [ 387.3280715942383, 213.18447875976562, 26.72393798828125, 62.178466796875 ], "score": 0.9828140139579773 }, { "image_id": 365, "category_id": 1.0, "bbox": [ 417.8044891357422, 216.3343963623047, 39.48753356933594, 82.16310119628906 ], "score": 0.7534334659576416 }, { "image_id": 365, "category_id": 1.0, "bbox": [ 408.1306457519531, 200.4273681640625, 24.872055053710938, 55.04888916015625 ], "score": 0.12713931500911713 }, { "image_id": 366, "category_id": 1.0, "bbox": [ 442.75535583496094, 216.46231079101562, 48.64509582519531, 107.08978271484375 ], "score": 0.9916551113128662 }, { "image_id": 367, "category_id": 1.0, "bbox": [ 469.0492630004883, 274.1943664550781, 43.3892822265625, 95.10504150390625 ], "score": 0.8229677677154541 }, { "image_id": 367, "category_id": 1.0, "bbox": [ 219.0692138671875, 233.83538818359375, 18.06804656982422, 31.45941162109375 ], "score": 0.10176762193441391 }, { "image_id": 368, "category_id": 1.0, "bbox": [ 493.2159423828125, 214.75433349609375, 53.28399658203125, 139.85186767578125 ], "score": 0.7700279951095581 }, { "image_id": 368, "category_id": 1.0, "bbox": [ 427.19120025634766, 197.22508239746094, 22.469940185546875, 45.849578857421875 ], "score": 0.5962135195732117 }, { "image_id": 368, "category_id": 1.0, "bbox": [ 469.29107666015625, 190.91708374023438, 41.58714294433594, 103.64764404296875 ], "score": 0.12769745290279388 }, { "image_id": 368, "category_id": 1.0, "bbox": [ 472.89161682128906, 205.69163513183594, 26.512832641601562, 61.30097961425781 ], "score": 0.11465396732091904 }, { "image_id": 369, "category_id": 1.0, "bbox": [ 542.2637939453125, 248.60122680664062, 50.45082092285156, 128.7540283203125 ], "score": 0.9882745742797852 }, { "image_id": 369, "category_id": 1.0, "bbox": [ 498.934326171875, 201.5659637451172, 20.804290771484375, 46.98822021484375 ], "score": 0.6134679317474365 }, { "image_id": 369, "category_id": 1.0, "bbox": [ 530.4477310180664, 248.7703857421875, 44.30961608886719, 99.8291015625 ], "score": 0.600377082824707 }, { "image_id": 369, "category_id": 1.0, "bbox": [ 446.7384338378906, 199.45787048339844, 21.605072021484375, 47.23016357421875 ], "score": 0.5933334827423096 }, { "image_id": 370, "category_id": 1.0, "bbox": [ 534.9175643920898, 204.8335723876953, 21.714401245117188, 48.11029052734375 ], "score": 0.9951015114784241 }, { "image_id": 370, "category_id": 1.0, "bbox": [ 471.7203140258789, 201.54254150390625, 22.8033447265625, 51.475006103515625 ], "score": 0.9619936943054199 }, { "image_id": 370, "category_id": 1.0, "bbox": [ 569.9821853637695, 190.77349853515625, 23.683242797851562, 41.759033203125 ], "score": 0.3935467302799225 }, { "image_id": 371, "category_id": 1.0, "bbox": [ 590.5328369140625, 211.45924377441406, 26.564712524414062, 63.59611511230469 ], "score": 0.9997975826263428 }, { "image_id": 371, "category_id": 1.0, "bbox": [ 503.5002136230469, 215.07513427734375, 26.697006225585938, 51.441375732421875 ], "score": 0.9996104836463928 }, { "image_id": 372, "category_id": 1.0, "bbox": [ 552.6926803588867, 210.5630340576172, 30.894622802734375, 76.90303039550781 ], "score": 0.5764840841293335 }, { "image_id": 372, "category_id": 1.0, "bbox": [ 278.8330268859863, 208.0646514892578, 21.96239471435547, 35.52008056640625 ], "score": 0.10101346671581268 }, { "image_id": 374, "category_id": 1.0, "bbox": [ 425.6039810180664, 222.93551635742188, 18.927001953125, 40.501556396484375 ], "score": 0.3974037766456604 }, { "image_id": 374, "category_id": 1.0, "bbox": [ 413.41026306152344, 225.23065185546875, 21.102752685546875, 36.823272705078125 ], "score": 0.315609335899353 }, { "image_id": 374, "category_id": 1.0, "bbox": [ 117.20996856689453, 228.38339233398438, 21.02863311767578, 42.545440673828125 ], "score": 0.10683618485927582 }, { "image_id": 375, "category_id": 1.0, "bbox": [ 446.2434387207031, 223.3785400390625, 21.49932861328125, 43.88653564453125 ], "score": 0.8727195262908936 }, { "image_id": 375, "category_id": 1.0, "bbox": [ 431.04393005371094, 226.93264770507812, 19.658966064453125, 41.220947265625 ], "score": 0.6618273854255676 }, { "image_id": 376, "category_id": 1.0, "bbox": [ 456.93580627441406, 218.21820068359375, 23.185501098632812, 57.179534912109375 ], "score": 0.9993938207626343 }, { "image_id": 376, "category_id": 1.0, "bbox": [ 478.94046783447266, 219.98216247558594, 22.497406005859375, 54.21626281738281 ], "score": 0.994234561920166 }, { "image_id": 377, "category_id": 1.0, "bbox": [ 504.98382568359375, 223.00799560546875, 29.294052124023438, 72.257568359375 ], "score": 0.99840247631073 }, { "image_id": 377, "category_id": 1.0, "bbox": [ 531.124382019043, 220.511962890625, 28.277969360351562, 68.95602416992188 ], "score": 0.9951485395431519 }, { "image_id": 378, "category_id": 1.0, "bbox": [ 564.6543884277344, 212.3102264404297, 32.44911193847656, 74.90553283691406 ], "score": 0.9935228824615479 }, { "image_id": 378, "category_id": 1.0, "bbox": [ 607.8343963623047, 220.79171752929688, 29.473800659179688, 101.64923095703125 ], "score": 0.8394313454627991 }, { "image_id": 378, "category_id": 1.0, "bbox": [ 617.6137161254883, 222.43748474121094, 34.03430938720703, 91.23863220214844 ], "score": 0.12024618685245514 }, { "image_id": 379, "category_id": 1.0, "bbox": [ 405.9980773925781, 201.69732666015625, 24.249649047851562, 42.73748779296875 ], "score": 0.17688141763210297 }, { "image_id": 380, "category_id": 1.0, "bbox": [ 436.85924530029297, 203.62448120117188, 23.48663330078125, 51.660797119140625 ], "score": 0.9409420490264893 }, { "image_id": 381, "category_id": 1.0, "bbox": [ 480.71842193603516, 171.4819793701172, 26.363296508789062, 71.966552734375 ], "score": 0.9980730414390564 }, { "image_id": 381, "category_id": 1.0, "bbox": [ 71.5138578414917, 160.56698608398438, 23.44459056854248, 49.6929931640625 ], "score": 0.6347393989562988 }, { "image_id": 381, "category_id": 1.0, "bbox": [ 85.6590461730957, 164.9537811279297, 20.766735076904297, 46.558197021484375 ], "score": 0.1079961508512497 }, { "image_id": 382, "category_id": 1.0, "bbox": [ 539.2795944213867, 216.58140563964844, 31.912765502929688, 89.09172058105469 ], "score": 0.9988358020782471 }, { "image_id": 382, "category_id": 1.0, "bbox": [ 460.55110931396484, 200.02139282226562, 20.504684448242188, 46.8154296875 ], "score": 0.6023454666137695 }, { "image_id": 382, "category_id": 1.0, "bbox": [ 37.01664209365845, 208.49237060546875, 25.579326152801514, 54.778656005859375 ], "score": 0.4627189338207245 }, { "image_id": 382, "category_id": 1.0, "bbox": [ 47.80735492706299, 211.37518310546875, 24.279327392578125, 45.9617919921875 ], "score": 0.1764889657497406 }, { "image_id": 383, "category_id": 1.0, "bbox": [ 493.8810348510742, 208.68389892578125, 22.20916748046875, 44.59930419921875 ], "score": 0.9778403043746948 }, { "image_id": 383, "category_id": 1.0, "bbox": [ 377.891845703125, 212.66944885253906, 19.9005126953125, 39.35894775390625 ], "score": 0.10257059335708618 }, { "image_id": 384, "category_id": 1.0, "bbox": [ 549.5396041870117, 216.09646606445312, 23.635025024414062, 52.46966552734375 ], "score": 0.9972561597824097 }, { "image_id": 384, "category_id": 1.0, "bbox": [ 393.71036529541016, 212.86061096191406, 19.696502685546875, 42.332427978515625 ], "score": 0.3071618378162384 }, { "image_id": 385, "category_id": 1.0, "bbox": [ 417.974853515625, 218.27578735351562, 21.60675048828125, 47.925384521484375 ], "score": 0.1268254816532135 }, { "image_id": 385, "category_id": 1.0, "bbox": [ 484.65038299560547, 215.84901428222656, 20.35552978515625, 40.138336181640625 ], "score": 0.11589119583368301 }, { "image_id": 386, "category_id": 1.0, "bbox": [ 191.37224197387695, 163.45489501953125, 21.25530242919922, 43.46563720703125 ], "score": 0.10013487190008163 }, { "image_id": 387, "category_id": 1.0, "bbox": [ 467.36351013183594, 210.1529998779297, 22.107467651367188, 43.025360107421875 ], "score": 0.5120527148246765 }, { "image_id": 387, "category_id": 1.0, "bbox": [ 248.0561065673828, 210.3198699951172, 21.583480834960938, 41.473663330078125 ], "score": 0.12235353142023087 }, { "image_id": 387, "category_id": 1.0, "bbox": [ 497.7427673339844, 214.8626708984375, 69.86892700195312, 157.8956298828125 ], "score": 0.12106107920408249 }, { "image_id": 388, "category_id": 1.0, "bbox": [ 576.6035842895508, 213.35037231445312, 52.257232666015625, 121.1348876953125 ], "score": 0.9802706241607666 }, { "image_id": 388, "category_id": 1.0, "bbox": [ 513.4215545654297, 207.77053833007812, 20.715560913085938, 49.88916015625 ], "score": 0.5071430206298828 }, { "image_id": 388, "category_id": 1.0, "bbox": [ 246.87498092651367, 202.9031524658203, 21.281890869140625, 42.792816162109375 ], "score": 0.15035392343997955 }, { "image_id": 388, "category_id": 1.0, "bbox": [ 336.4387893676758, 179.38958740234375, 19.962539672851562, 31.38531494140625 ], "score": 0.1499004065990448 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 605.7899475097656, 217.958740234375, 24.178009033203125, 51.404052734375 ], "score": 0.9859561920166016 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 572.248649597168, 207.59487915039062, 33.19114685058594, 63.994781494140625 ], "score": 0.7631815671920776 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 584.5122528076172, 210.88687133789062, 37.23350524902344, 57.28265380859375 ], "score": 0.4165235161781311 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 218.89230728149414, 214.07647705078125, 22.14336395263672, 42.996124267578125 ], "score": 0.27905580401420593 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 238.9338493347168, 213.56089782714844, 24.21527862548828, 39.44207763671875 ], "score": 0.1620287299156189 }, { "image_id": 389, "category_id": 1.0, "bbox": [ 247.72768020629883, 206.4775390625, 25.63323974609375, 51.5758056640625 ], "score": 0.1601754128932953 }, { "image_id": 390, "category_id": 1.0, "bbox": [ 446.14830017089844, 196.8412322998047, 27.251358032226562, 63.21693420410156 ], "score": 0.3826051950454712 }, { "image_id": 390, "category_id": 1.0, "bbox": [ 206.46446228027344, 215.74212646484375, 21.50524139404297, 47.221343994140625 ], "score": 0.3648879826068878 }, { "image_id": 390, "category_id": 1.0, "bbox": [ 236.84480667114258, 216.4696502685547, 23.18042755126953, 41.19361877441406 ], "score": 0.28551197052001953 }, { "image_id": 390, "category_id": 1.0, "bbox": [ 226.1194610595703, 214.11683654785156, 23.85955810546875, 42.17753601074219 ], "score": 0.11873333156108856 }, { "image_id": 391, "category_id": 1.0, "bbox": [ 449.31644439697266, 215.04959106445312, 23.345947265625, 53.46923828125 ], "score": 0.9982356429100037 }, { "image_id": 391, "category_id": 1.0, "bbox": [ 482.0032501220703, 214.60153198242188, 17.902984619140625, 46.184539794921875 ], "score": 0.31159305572509766 }, { "image_id": 391, "category_id": 1.0, "bbox": [ 407.61425018310547, 214.35440063476562, 22.311248779296875, 46.16912841796875 ], "score": 0.20098215341567993 }, { "image_id": 391, "category_id": 1.0, "bbox": [ 299.5754051208496, 160.7049102783203, 20.030899047851562, 38.067901611328125 ], "score": 0.11626332253217697 }, { "image_id": 391, "category_id": 1.0, "bbox": [ 464.9442672729492, 216.864501953125, 20.283737182617188, 44.529632568359375 ], "score": 0.10616455972194672 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 431.19041442871094, 214.48387145996094, 25.118179321289062, 61.75709533691406 ], "score": 0.9990900754928589 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 89.29571151733398, 215.89356994628906, 29.813003540039062, 55.70127868652344 ], "score": 0.5311364531517029 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 374.4330596923828, 216.22157287597656, 22.839889526367188, 51.76029968261719 ], "score": 0.5126258730888367 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 121.34646415710449, 216.785888671875, 27.924213409423828, 55.1435546875 ], "score": 0.5009894967079163 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 416.66576385498047, 219.25831604003906, 23.314208984375, 49.28144836425781 ], "score": 0.31014585494995117 }, { "image_id": 392, "category_id": 1.0, "bbox": [ 251.20752334594727, 159.34765625, 20.856246948242188, 40.4637451171875 ], "score": 0.2465094029903412 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 400.35945892333984, 218.1269073486328, 29.27459716796875, 67.59568786621094 ], "score": 0.9976970553398132 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 344.55101013183594, 222.818359375, 22.488174438476562, 51.92547607421875 ], "score": 0.9237048625946045 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 2.572885751724243, 220.0684051513672, 33.24742674827576, 65.77772521972656 ], "score": 0.48596328496932983 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 46.37876033782959, 221.01617431640625, 30.53619384765625, 62.52093505859375 ], "score": 0.4732729494571686 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 191.8593406677246, 155.79527282714844, 23.37188720703125, 39.711334228515625 ], "score": 0.3360961973667145 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 351.93885803222656, 135.93572998046875, 35.41801452636719, 73.64395141601562 ], "score": 0.31914302706718445 }, { "image_id": 393, "category_id": 1.0, "bbox": [ 330.08663177490234, 219.12820434570312, 21.44317626953125, 52.994720458984375 ], "score": 0.24940048158168793 }, { "image_id": 394, "category_id": 1.0, "bbox": [ 338.4120178222656, 211.8289794921875, 34.19456481933594, 86.172607421875 ], "score": 0.9994561672210693 }, { "image_id": 394, "category_id": 1.0, "bbox": [ 229.1408348083496, 222.70193481445312, 28.259239196777344, 56.3515625 ], "score": 0.905742883682251 }, { "image_id": 394, "category_id": 1.0, "bbox": [ 256.09569549560547, 222.3646240234375, 23.511581420898438, 54.425140380859375 ], "score": 0.5510514378547668 }, { "image_id": 394, "category_id": 1.0, "bbox": [ 101.63347244262695, 144.7082061767578, 23.359699249267578, 43.194610595703125 ], "score": 0.20278948545455933 }, { "image_id": 395, "category_id": 1.0, "bbox": [ 267.16957092285156, 218.17193603515625, 34.60472106933594, 89.1397705078125 ], "score": 0.9988994002342224 }, { "image_id": 395, "category_id": 1.0, "bbox": [ 157.54284858703613, 218.6771697998047, 28.26796531677246, 64.84022521972656 ], "score": 0.7713051438331604 }, { "image_id": 395, "category_id": 1.0, "bbox": [ 58.75025272369385, 221.493408203125, 36.352248191833496, 66.217529296875 ], "score": 0.6899665594100952 }, { "image_id": 395, "category_id": 1.0, "bbox": [ 72.1920394897461, 217.3377685546875, 36.454505920410156, 66.82284545898438 ], "score": 0.2899249494075775 }, { "image_id": 395, "category_id": 1.0, "bbox": [ 194.42913055419922, 108.95368194580078, 35.105552673339844, 89.4725570678711 ], "score": 0.10315416753292084 }, { "image_id": 396, "category_id": 1.0, "bbox": [ 157.26367950439453, 220.41790771484375, 43.61076354980469, 102.09429931640625 ], "score": 0.9942144155502319 }, { "image_id": 396, "category_id": 1.0, "bbox": [ 24.148755073547363, 219.21054077148438, 32.29701042175293, 75.455078125 ], "score": 0.10889289528131485 }, { "image_id": 397, "category_id": 1.0, "bbox": [ 12.341630458831787, 237.5343017578125, 40.54006814956665, 105.2142333984375 ], "score": 0.6898631453514099 }, { "image_id": 403, "category_id": 1.0, "bbox": [ 366.8458557128906, 125.83393859863281, 23.56842041015625, 45.309356689453125 ], "score": 0.18334175646305084 }, { "image_id": 404, "category_id": 1.0, "bbox": [ 235.0505256652832, 207.3607940673828, 21.800498962402344, 49.21400451660156 ], "score": 0.7077351808547974 }, { "image_id": 404, "category_id": 1.0, "bbox": [ 430.2810287475586, 104.53826904296875, 26.051254272460938, 56.381805419921875 ], "score": 0.45473647117614746 }, { "image_id": 404, "category_id": 1.0, "bbox": [ 471.8035125732422, 279.81195068359375, 24.982757568359375, 49.18450927734375 ], "score": 0.31533217430114746 }, { "image_id": 404, "category_id": 1.0, "bbox": [ 248.53357315063477, 211.07508850097656, 19.97905731201172, 43.688995361328125 ], "score": 0.12427999079227448 }, { "image_id": 405, "category_id": 1.0, "bbox": [ 280.7452964782715, 213.98509216308594, 23.313369750976562, 50.03425598144531 ], "score": 0.8940750956535339 }, { "image_id": 405, "category_id": 1.0, "bbox": [ 301.1824607849121, 217.9809112548828, 24.922733306884766, 48.04631042480469 ], "score": 0.22369790077209473 }, { "image_id": 406, "category_id": 1.0, "bbox": [ 328.1573486328125, 213.3453826904297, 26.865921020507812, 61.17839050292969 ], "score": 0.9998929500579834 }, { "image_id": 406, "category_id": 1.0, "bbox": [ 350.5738067626953, 220.5878448486328, 22.30682373046875, 57.39561462402344 ], "score": 0.9111377596855164 }, { "image_id": 407, "category_id": 1.0, "bbox": [ 356.549072265625, 211.03952026367188, 33.88908386230469, 85.25238037109375 ], "score": 0.9994457960128784 }, { "image_id": 407, "category_id": 1.0, "bbox": [ 385.35743713378906, 225.4857635498047, 26.959991455078125, 67.66343688964844 ], "score": 0.9947332739830017 }, { "image_id": 407, "category_id": 1.0, "bbox": [ 372.60265350341797, 220.82199096679688, 28.437576293945312, 73.0816650390625 ], "score": 0.21047312021255493 }, { "image_id": 408, "category_id": 1.0, "bbox": [ 391.45721435546875, 215.00743103027344, 44.170684814453125, 109.63999938964844 ], "score": 0.999127209186554 }, { "image_id": 408, "category_id": 1.0, "bbox": [ 435.3507614135742, 235.94491577148438, 33.86383056640625, 91.170166015625 ], "score": 0.9979007840156555 }, { "image_id": 408, "category_id": 1.0, "bbox": [ 558.7819290161133, 176.45156860351562, 40.19660949707031, 113.4578857421875 ], "score": 0.35610756278038025 }, { "image_id": 409, "category_id": 1.0, "bbox": [ 453.5342788696289, 209.13165283203125, 68.72886657714844, 207.6680908203125 ], "score": 0.9997770190238953 }, { "image_id": 409, "category_id": 1.0, "bbox": [ 539.1472244262695, 244.779541015625, 53.31443786621094, 143.86456298828125 ], "score": 0.9937248229980469 }, { "image_id": 409, "category_id": 1.0, "bbox": [ 561.8680572509766, 249.96974182128906, 44.26826477050781, 130.6721649169922 ], "score": 0.15171493589878082 }, { "image_id": 410, "category_id": 1.0, "bbox": [ 222.37363815307617, 225.46292114257812, 23.51947784423828, 50.697357177734375 ], "score": 0.1363983005285263 }, { "image_id": 418, "category_id": 1.0, "bbox": [ 312.00672149658203, 139.23406982421875, 31.19873046875, 80.01510620117188 ], "score": 0.12368655204772949 }, { "image_id": 420, "category_id": 1.0, "bbox": [ 51.754703521728516, 218.62037658691406, 41.74184799194336, 80.24876403808594 ], "score": 0.9942787289619446 }, { "image_id": 420, "category_id": 1.0, "bbox": [ 20.403285026550293, 231.77833557128906, 31.41758441925049, 68.59907531738281 ], "score": 0.9785699248313904 }, { "image_id": 420, "category_id": 1.0, "bbox": [ 34.88555192947388, 217.9727783203125, 39.82383489608765, 79.9117431640625 ], "score": 0.6471223831176758 }, { "image_id": 420, "category_id": 1.0, "bbox": [ 266.978816986084, 236.26158142089844, 16.626663208007812, 35.49220275878906 ], "score": 0.10254328697919846 }, { "image_id": 421, "category_id": 1.0, "bbox": [ 344.5428466796875, 222.19869995117188, 36.001739501953125, 84.41796875 ], "score": 0.9994421005249023 }, { "image_id": 421, "category_id": 1.0, "bbox": [ 323.6749267578125, 230.03753662109375, 29.713287353515625, 72.02203369140625 ], "score": 0.9862322211265564 }, { "image_id": 421, "category_id": 1.0, "bbox": [ 334.14794921875, 221.93377685546875, 30.63018798828125, 76.59307861328125 ], "score": 0.14346274733543396 }, { "image_id": 422, "category_id": 1.0, "bbox": [ 350.714111328125, 215.19410705566406, 33.65608215332031, 88.65666198730469 ], "score": 0.9986059665679932 }, { "image_id": 422, "category_id": 1.0, "bbox": [ 326.3927459716797, 223.23892211914062, 29.30084228515625, 81.22052001953125 ], "score": 0.9975180625915527 }, { "image_id": 423, "category_id": 1.0, "bbox": [ 173.98645401000977, 215.61126708984375, 49.68925476074219, 115.4111328125 ], "score": 0.9981355667114258 }, { "image_id": 423, "category_id": 1.0, "bbox": [ 128.38600158691406, 229.17337036132812, 41.33302688598633, 101.8424072265625 ], "score": 0.9820838570594788 }, { "image_id": 423, "category_id": 1.0, "bbox": [ 140.20828247070312, 227.01016235351562, 55.75847625732422, 98.4344482421875 ], "score": 0.36797744035720825 }, { "image_id": 423, "category_id": 1.0, "bbox": [ 107.64162063598633, 238.74749755859375, 48.14374923706055, 92.8172607421875 ], "score": 0.17622800171375275 }, { "image_id": 423, "category_id": 1.0, "bbox": [ 505.04528045654297, 188.10044860839844, 41.91749572753906, 98.26704406738281 ], "score": 0.12974032759666443 }, { "image_id": 424, "category_id": 1.0, "bbox": [ 7.1796345710754395, 213.4649200439453, 41.12325429916382, 133.6193084716797 ], "score": 0.17088192701339722 }, { "image_id": 425, "category_id": 1.0, "bbox": [ 175.85777282714844, 210.83560180664062, 23.799819946289062, 49.685791015625 ], "score": 0.1645190715789795 }, { "image_id": 426, "category_id": 1.0, "bbox": [ 124.19928550720215, 203.2569122314453, 27.611732482910156, 71.96669006347656 ], "score": 0.1346481740474701 }, { "image_id": 428, "category_id": 1.0, "bbox": [ 437.1553421020508, 201.77296447753906, 19.242401123046875, 48.64276123046875 ], "score": 0.39322587847709656 }, { "image_id": 428, "category_id": 1.0, "bbox": [ 395.36624908447266, 187.43524169921875, 20.928878784179688, 41.821990966796875 ], "score": 0.2387392818927765 }, { "image_id": 428, "category_id": 1.0, "bbox": [ 363.8557815551758, 169.6665496826172, 21.518630981445312, 45.9049072265625 ], "score": 0.1210145652294159 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 466.2376403808594, 201.61581420898438, 22.095489501953125, 50.33282470703125 ], "score": 0.9787429571151733 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 443.58734130859375, 197.38059997558594, 21.381607055664062, 55.86627197265625 ], "score": 0.752616286277771 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 144.6694850921631, 198.52272033691406, 24.921159744262695, 45.125030517578125 ], "score": 0.24341261386871338 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 457.2010803222656, 197.69967651367188, 23.60748291015625, 57.893798828125 ], "score": 0.2366706132888794 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 395.2547836303711, 187.36363220214844, 20.252685546875, 46.859161376953125 ], "score": 0.22643041610717773 }, { "image_id": 429, "category_id": 1.0, "bbox": [ 436.57222747802734, 171.1174774169922, 33.323974609375, 74.33831787109375 ], "score": 0.10155429691076279 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 428.85303497314453, 210.4347686767578, 28.728256225585938, 57.68925476074219 ], "score": 0.9630436301231384 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 367.9877471923828, 194.32644653320312, 23.612442016601562, 45.299102783203125 ], "score": 0.8543292284011841 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 110.68191528320312, 203.6382293701172, 26.35234832763672, 49.165130615234375 ], "score": 0.43320798873901367 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 441.34002685546875, 208.9593963623047, 26.60919189453125, 58.75770568847656 ], "score": 0.11064860224723816 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 13.763933181762695, 184.02182006835938, 44.51679706573486, 57.0517578125 ], "score": 0.10624539107084274 }, { "image_id": 430, "category_id": 1.0, "bbox": [ 265.3186798095703, 213.15982055664062, 18.407516479492188, 39.6529541015625 ], "score": 0.10357547551393509 }, { "image_id": 431, "category_id": 1.0, "bbox": [ 391.12194061279297, 215.2680206298828, 30.19012451171875, 67.50648498535156 ], "score": 0.9881653189659119 }, { "image_id": 431, "category_id": 1.0, "bbox": [ 97.7395248413086, 203.55975341796875, 24.858551025390625, 44.913543701171875 ], "score": 0.12303464114665985 }, { "image_id": 432, "category_id": 1.0, "bbox": [ 358.3635711669922, 225.37396240234375, 31.914749145507812, 69.6744384765625 ], "score": 0.999212384223938 }, { "image_id": 432, "category_id": 1.0, "bbox": [ 284.7155570983887, 206.9739532470703, 19.6551513671875, 45.241973876953125 ], "score": 0.8443827629089355 }, { "image_id": 433, "category_id": 1.0, "bbox": [ 326.87610626220703, 223.1075897216797, 37.15492248535156, 76.66059875488281 ], "score": 0.9968554973602295 }, { "image_id": 433, "category_id": 1.0, "bbox": [ 253.06486129760742, 205.73365783691406, 23.56006622314453, 48.22076416015625 ], "score": 0.978226900100708 }, { "image_id": 433, "category_id": 1.0, "bbox": [ 152.06573486328125, 210.1389617919922, 24.487762451171875, 47.79792785644531 ], "score": 0.9479994177818298 }, { "image_id": 434, "category_id": 1.0, "bbox": [ 286.5071487426758, 227.44464111328125, 38.55907440185547, 79.6116943359375 ], "score": 0.9982244968414307 }, { "image_id": 434, "category_id": 1.0, "bbox": [ 194.54790115356445, 211.9578094482422, 21.303138732910156, 45.72959899902344 ], "score": 0.8182463645935059 }, { "image_id": 434, "category_id": 1.0, "bbox": [ 219.2026138305664, 208.36680603027344, 20.6524658203125, 46.18609619140625 ], "score": 0.6954314708709717 }, { "image_id": 434, "category_id": 1.0, "bbox": [ 207.81482696533203, 210.636962890625, 19.77813720703125, 43.73931884765625 ], "score": 0.11545109748840332 }, { "image_id": 435, "category_id": 1.0, "bbox": [ 242.33203887939453, 222.31790161132812, 38.94126892089844, 89.43890380859375 ], "score": 0.9975087642669678 }, { "image_id": 435, "category_id": 1.0, "bbox": [ 189.55062866210938, 206.8514862060547, 22.948570251464844, 45.998992919921875 ], "score": 0.9750955104827881 }, { "image_id": 435, "category_id": 1.0, "bbox": [ 232.88646697998047, 208.75921630859375, 23.353271484375, 56.0589599609375 ], "score": 0.33008575439453125 }, { "image_id": 435, "category_id": 1.0, "bbox": [ 354.91077423095703, 190.40914916992188, 45.815277099609375, 106.04782104492188 ], "score": 0.2558780610561371 }, { "image_id": 436, "category_id": 1.0, "bbox": [ 188.36421966552734, 225.33694458007812, 41.81629180908203, 90.8150634765625 ], "score": 0.9974349737167358 }, { "image_id": 436, "category_id": 1.0, "bbox": [ 272.9461479187012, 217.29010009765625, 25.859642028808594, 45.34912109375 ], "score": 0.9884566068649292 }, { "image_id": 436, "category_id": 1.0, "bbox": [ 156.50628089904785, 202.80941772460938, 21.54139518737793, 54.63836669921875 ], "score": 0.8367983102798462 }, { "image_id": 437, "category_id": 1.0, "bbox": [ 123.26879501342773, 225.52536010742188, 35.97381591796875, 92.31591796875 ], "score": 0.9546966552734375 }, { "image_id": 437, "category_id": 1.0, "bbox": [ 309.9930763244629, 216.43002319335938, 20.78298568725586, 49.858642578125 ], "score": 0.45317554473876953 }, { "image_id": 437, "category_id": 1.0, "bbox": [ 125.59429168701172, 208.90162658691406, 25.718345642089844, 65.14286804199219 ], "score": 0.43939587473869324 }, { "image_id": 437, "category_id": 1.0, "bbox": [ 139.61664199829102, 218.4626922607422, 41.59553527832031, 99.85633850097656 ], "score": 0.39694613218307495 }, { "image_id": 438, "category_id": 1.0, "bbox": [ 65.34489631652832, 223.98745727539062, 37.983551025390625, 93.58343505859375 ], "score": 0.993410587310791 }, { "image_id": 438, "category_id": 1.0, "bbox": [ 88.5091781616211, 222.8679962158203, 43.107643127441406, 90.15037536621094 ], "score": 0.9905861020088196 }, { "image_id": 438, "category_id": 1.0, "bbox": [ 338.92589569091797, 216.0028533935547, 24.473114013671875, 53.26417541503906 ], "score": 0.9856138825416565 }, { "image_id": 439, "category_id": 1.0, "bbox": [ 48.30482006072998, 228.466552734375, 50.48264026641846, 94.60711669921875 ], "score": 0.9642153978347778 }, { "image_id": 439, "category_id": 1.0, "bbox": [ 365.6840515136719, 222.6331787109375, 29.7723388671875, 50.896331787109375 ], "score": 0.9530366063117981 }, { "image_id": 439, "category_id": 1.0, "bbox": [ 13.161799907684326, 220.03228759765625, 50.16183137893677, 100.76226806640625 ], "score": 0.8264448642730713 }, { "image_id": 439, "category_id": 1.0, "bbox": [ 43.15937042236328, 216.14451599121094, 35.782203674316406, 81.67579650878906 ], "score": 0.2321092188358307 }, { "image_id": 440, "category_id": 1.0, "bbox": [ 176.31790161132812, 227.9647216796875, 56.95293426513672, 107.35699462890625 ], "score": 0.9981634020805359 }, { "image_id": 440, "category_id": 1.0, "bbox": [ 386.11717224121094, 221.15374755859375, 27.18719482421875, 52.569671630859375 ], "score": 0.5020140409469604 }, { "image_id": 441, "category_id": 1.0, "bbox": [ 346.96544647216797, 232.23919677734375, 66.45851135253906, 132.3001708984375 ], "score": 0.9877685308456421 }, { "image_id": 441, "category_id": 1.0, "bbox": [ 401.9515609741211, 219.5187225341797, 24.861602783203125, 56.83949279785156 ], "score": 0.6249032020568848 }, { "image_id": 441, "category_id": 1.0, "bbox": [ 290.24755477905273, 185.89210510253906, 22.746658325195312, 47.405853271484375 ], "score": 0.10161345452070236 }, { "image_id": 442, "category_id": 1.0, "bbox": [ 449.60853576660156, 234.326171875, 50.48316955566406, 111.0042724609375 ], "score": 0.9973959922790527 }, { "image_id": 442, "category_id": 1.0, "bbox": [ 384.0078353881836, 220.49546813964844, 28.561859130859375, 56.03797912597656 ], "score": 0.8831124901771545 }, { "image_id": 443, "category_id": 1.0, "bbox": [ 368.87699127197266, 217.46609497070312, 28.799209594726562, 57.342498779296875 ], "score": 0.9993457794189453 }, { "image_id": 443, "category_id": 1.0, "bbox": [ 538.66943359375, 241.1081085205078, 45.53840637207031, 100.21101379394531 ], "score": 0.9470176696777344 }, { "image_id": 443, "category_id": 1.0, "bbox": [ 176.8282127380371, 156.55010986328125, 25.739212036132812, 64.954345703125 ], "score": 0.31138429045677185 }, { "image_id": 444, "category_id": 1.0, "bbox": [ 438.64540100097656, 221.0474395751953, 30.031661987304688, 69.70915222167969 ], "score": 0.6385840177536011 }, { "image_id": 444, "category_id": 1.0, "bbox": [ 234.3026351928711, 173.12484741210938, 35.690269470214844, 62.086578369140625 ], "score": 0.11931422352790833 }, { "image_id": 444, "category_id": 1.0, "bbox": [ 202.43122100830078, 173.94515991210938, 23.262405395507812, 51.180572509765625 ], "score": 0.10071483254432678 }, { "image_id": 445, "category_id": 1.0, "bbox": [ 531.5443801879883, 222.97320556640625, 32.58766174316406, 85.4796142578125 ], "score": 0.5230492353439331 }, { "image_id": 445, "category_id": 1.0, "bbox": [ 234.24222946166992, 174.58091735839844, 21.389427185058594, 56.461578369140625 ], "score": 0.3360027074813843 }, { "image_id": 446, "category_id": 1.0, "bbox": [ 7.9119181632995605, 204.39410400390625, 60.067150592803955, 181.5963134765625 ], "score": 0.8115331530570984 }, { "image_id": 446, "category_id": 1.0, "bbox": [ 250.67577362060547, 178.58566284179688, 21.68560028076172, 53.703277587890625 ], "score": 0.2094857394695282 }, { "image_id": 447, "category_id": 1.0, "bbox": [ 34.49593782424927, 212.71585083007812, 73.0285906791687, 193.98468017578125 ], "score": 0.9986690282821655 }, { "image_id": 447, "category_id": 1.0, "bbox": [ 12.368700504302979, 198.44921875, 66.28291845321655, 187.955078125 ], "score": 0.4266354441642761 }, { "image_id": 447, "category_id": 1.0, "bbox": [ 268.45096588134766, 175.93603515625, 21.34937286376953, 51.907073974609375 ], "score": 0.15907275676727295 }, { "image_id": 448, "category_id": 1.0, "bbox": [ 86.75432205200195, 192.99649047851562, 78.29414367675781, 199.5693359375 ], "score": 0.9817578792572021 }, { "image_id": 448, "category_id": 1.0, "bbox": [ 285.3907585144043, 176.73130798339844, 22.94200897216797, 49.023284912109375 ], "score": 0.43722331523895264 }, { "image_id": 448, "category_id": 1.0, "bbox": [ 124.35941696166992, 219.78883361816406, 43.11887741088867, 131.2932586669922 ], "score": 0.17809566855430603 }, { "image_id": 448, "category_id": 1.0, "bbox": [ 326.0177230834961, 163.162841796875, 20.96343994140625, 43.0784912109375 ], "score": 0.1181516945362091 }, { "image_id": 449, "category_id": 1.0, "bbox": [ 169.98044967651367, 200.78773498535156, 80.84285736083984, 197.7045135498047 ], "score": 0.9976139068603516 }, { "image_id": 449, "category_id": 1.0, "bbox": [ 213.41331481933594, 231.4859619140625, 43.59161376953125, 110.02154541015625 ], "score": 0.4357970952987671 }, { "image_id": 449, "category_id": 1.0, "bbox": [ 353.70479583740234, 167.94398498535156, 24.252777099609375, 50.9794921875 ], "score": 0.32394111156463623 }, { "image_id": 449, "category_id": 1.0, "bbox": [ 313.9008331298828, 176.01214599609375, 20.95977783203125, 57.50189208984375 ], "score": 0.11107607185840607 }, { "image_id": 449, "category_id": 1.0, "bbox": [ 216.21112823486328, 275.9515380859375, 43.87809753417969, 115.23065185546875 ], "score": 0.10839968919754028 }, { "image_id": 450, "category_id": 1.0, "bbox": [ 320.1078414916992, 229.77322387695312, 73.58779907226562, 182.95745849609375 ], "score": 0.9983545541763306 }, { "image_id": 450, "category_id": 1.0, "bbox": [ 421.31385803222656, 181.52691650390625, 22.599563598632812, 44.075103759765625 ], "score": 0.27010995149612427 }, { "image_id": 451, "category_id": 1.0, "bbox": [ 538.3735275268555, 218.15530395507812, 68.55613708496094, 230.19561767578125 ], "score": 0.8864836692810059 }, { "image_id": 451, "category_id": 1.0, "bbox": [ 494.0732955932617, 196.42933654785156, 20.829849243164062, 50.232177734375 ], "score": 0.16773226857185364 }, { "image_id": 451, "category_id": 1.0, "bbox": [ 530.3911209106445, 187.02908325195312, 21.088409423828125, 43.920135498046875 ], "score": 0.14329496026039124 }, { "image_id": 451, "category_id": 1.0, "bbox": [ 523.1758117675781, 185.0279998779297, 19.247512817382812, 41.4705810546875 ], "score": 0.10614387691020966 }, { "image_id": 452, "category_id": 1.0, "bbox": [ 541.4920425415039, 201.49893188476562, 22.660675048828125, 67.367431640625 ], "score": 0.13122473657131195 }, { "image_id": 454, "category_id": 1.0, "bbox": [ 593.7839126586914, 187.21304321289062, 34.70527648925781, 108.85052490234375 ], "score": 0.36546382308006287 }, { "image_id": 454, "category_id": 1.0, "bbox": [ 237.98770904541016, 206.11033630371094, 23.24249267578125, 47.960357666015625 ], "score": 0.1252535879611969 }, { "image_id": 455, "category_id": 1.0, "bbox": [ 481.5449905395508, 200.29876708984375, 21.508331298828125, 52.4622802734375 ], "score": 0.41913318634033203 }, { "image_id": 455, "category_id": 1.0, "bbox": [ 416.8527603149414, 201.00799560546875, 20.98968505859375, 42.40802001953125 ], "score": 0.1607186496257782 }, { "image_id": 456, "category_id": 1.0, "bbox": [ 106.18436813354492, 146.3701629638672, 32.5738525390625, 90.05145263671875 ], "score": 0.21930250525474548 }, { "image_id": 456, "category_id": 1.0, "bbox": [ 384.3708801269531, 209.61038208007812, 21.938552856445312, 48.7633056640625 ], "score": 0.17132040858268738 }, { "image_id": 456, "category_id": 1.0, "bbox": [ 393.01929473876953, 203.0594482421875, 21.121292114257812, 47.68096923828125 ], "score": 0.1259237825870514 }, { "image_id": 456, "category_id": 1.0, "bbox": [ 548.0489730834961, 178.36572265625, 26.338653564453125, 79.939453125 ], "score": 0.12381523847579956 }, { "image_id": 457, "category_id": 1.0, "bbox": [ 249.50538635253906, 203.72280883789062, 33.99513244628906, 74.92721557617188 ], "score": 0.8483414649963379 }, { "image_id": 458, "category_id": 1.0, "bbox": [ 60.474467277526855, 189.0848388671875, 19.839882850646973, 41.299285888671875 ], "score": 0.13959072530269623 }, { "image_id": 458, "category_id": 1.0, "bbox": [ 201.98427200317383, 190.39979553222656, 21.2640380859375, 42.47247314453125 ], "score": 0.1135266050696373 }, { "image_id": 460, "category_id": 1.0, "bbox": [ 358.17527770996094, 218.0107879638672, 25.7086181640625, 40.71626281738281 ], "score": 0.1778821498155594 }, { "image_id": 460, "category_id": 1.0, "bbox": [ 370.1616668701172, 220.03611755371094, 20.045318603515625, 38.25831604003906 ], "score": 0.13124804198741913 }, { "image_id": 461, "category_id": 1.0, "bbox": [ 410.8556365966797, 206.25439453125, 20.6390380859375, 49.78570556640625 ], "score": 0.18148183822631836 }, { "image_id": 461, "category_id": 1.0, "bbox": [ 57.32344150543213, 186.7110137939453, 45.62333583831787, 69.25143432617188 ], "score": 0.1329401731491089 }, { "image_id": 461, "category_id": 1.0, "bbox": [ 370.27557373046875, 203.94952392578125, 20.184555053710938, 41.401092529296875 ], "score": 0.1185169667005539 }, { "image_id": 461, "category_id": 1.0, "bbox": [ 322.52685546875, 208.75050354003906, 23.166656494140625, 47.79911804199219 ], "score": 0.10276209563016891 }, { "image_id": 461, "category_id": 1.0, "bbox": [ 362.0779037475586, 200.89727783203125, 19.636917114257812, 41.464447021484375 ], "score": 0.10049480944871902 }, { "image_id": 462, "category_id": 1.0, "bbox": [ 426.9374084472656, 218.6344757080078, 19.368743896484375, 52.13737487792969 ], "score": 0.6200647950172424 }, { "image_id": 462, "category_id": 1.0, "bbox": [ 298.51680755615234, 215.79376220703125, 21.461143493652344, 37.489593505859375 ], "score": 0.13299357891082764 }, { "image_id": 462, "category_id": 1.0, "bbox": [ 378.17630767822266, 213.7940673828125, 18.762893676757812, 43.7760009765625 ], "score": 0.10669688880443573 }, { "image_id": 463, "category_id": 1.0, "bbox": [ 467.2734832763672, 219.50924682617188, 29.970321655273438, 77.6865234375 ], "score": 0.468473345041275 }, { "image_id": 463, "category_id": 1.0, "bbox": [ 284.4198417663574, 217.58563232421875, 20.0299072265625, 41.909820556640625 ], "score": 0.2989341616630554 }, { "image_id": 463, "category_id": 1.0, "bbox": [ 47.683258056640625, 208.39920043945312, 31.549053192138672, 68.39633178710938 ], "score": 0.22816351056098938 }, { "image_id": 464, "category_id": 1.0, "bbox": [ 267.3225975036621, 217.5782012939453, 24.902725219726562, 44.38279724121094 ], "score": 0.9633229970932007 }, { "image_id": 465, "category_id": 1.0, "bbox": [ 246.59263610839844, 220.7333221435547, 24.03881072998047, 47.12287902832031 ], "score": 0.9880800843238831 }, { "image_id": 465, "category_id": 1.0, "bbox": [ 362.28668212890625, 225.40435791015625, 19.974899291992188, 46.5394287109375 ], "score": 0.3668266534805298 }, { "image_id": 465, "category_id": 1.0, "bbox": [ 430.48866271972656, 226.60040283203125, 22.0550537109375, 48.310028076171875 ], "score": 0.2377457469701767 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 321.27532958984375, 221.8201904296875, 24.131011962890625, 46.754791259765625 ], "score": 0.9928643703460693 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 199.3077278137207, 219.5427703857422, 22.534561157226562, 52.00740051269531 ], "score": 0.7635102272033691 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 434.4614791870117, 215.68284606933594, 19.163589477539062, 43.90702819824219 ], "score": 0.14097774028778076 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 469.39151763916016, 218.30343627929688, 22.865219116210938, 54.90460205078125 ], "score": 0.12752240896224976 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 19.278122186660767, 205.9208221435547, 37.24056601524353, 92.33717346191406 ], "score": 0.12093079090118408 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 132.52093315124512, 213.2653350830078, 22.432289123535156, 48.93632507324219 ], "score": 0.10674101114273071 }, { "image_id": 466, "category_id": 1.0, "bbox": [ 121.39054298400879, 218.9923553466797, 23.078536987304688, 46.99903869628906 ], "score": 0.1010904312133789 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 272.89913177490234, 216.35830688476562, 27.346153259277344, 55.45697021484375 ], "score": 0.9996744990348816 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 125.55747985839844, 223.1649627685547, 25.606327056884766, 52.60847473144531 ], "score": 0.9675047397613525 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 106.44216537475586, 212.98870849609375, 23.943862915039062, 47.834747314453125 ], "score": 0.7031272649765015 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 441.9032287597656, 219.08489990234375, 21.566848754882812, 49.237060546875 ], "score": 0.6069446206092834 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 115.34876823425293, 217.27088928222656, 26.194610595703125, 44.08476257324219 ], "score": 0.21871206164360046 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 454.45831298828125, 217.94850158691406, 22.778396606445312, 51.56495666503906 ], "score": 0.1467330902814865 }, { "image_id": 467, "category_id": 1.0, "bbox": [ 78.2903003692627, 214.99954223632812, 24.44660186767578, 49.388702392578125 ], "score": 0.13453885912895203 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 207.8684425354004, 213.90872192382812, 35.27812957763672, 64.7830810546875 ], "score": 0.9987697005271912 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 462.33081817626953, 216.74365234375, 22.766799926757812, 49.460174560546875 ], "score": 0.9850867986679077 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 67.5438404083252, 206.1880645751953, 28.956127166748047, 58.31349182128906 ], "score": 0.9846881628036499 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 35.61023950576782, 211.98818969726562, 26.848723888397217, 59.710693359375 ], "score": 0.6605446338653564 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 55.861830711364746, 207.646240234375, 30.201106071472168, 63.22979736328125 ], "score": 0.4667542278766632 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 406.86279296875, 209.8247528076172, 19.894790649414062, 41.50665283203125 ], "score": 0.4226214289665222 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 425.9963607788086, 208.18359375, 19.092788696289062, 41.676361083984375 ], "score": 0.37571221590042114 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 508.2064437866211, 204.667236328125, 44.44602966308594, 93.38165283203125 ], "score": 0.35296499729156494 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 14.075225591659546, 210.2909393310547, 35.130354166030884, 78.76325988769531 ], "score": 0.2979580760002136 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 47.33819007873535, 212.28379821777344, 24.505701065063477, 58.61665344238281 ], "score": 0.21111173927783966 }, { "image_id": 468, "category_id": 1.0, "bbox": [ 377.0536804199219, 211.70413208007812, 20.494308471679688, 39.1041259765625 ], "score": 0.1668258011341095 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 485.95088958740234, 217.30801391601562, 23.721847534179688, 57.83624267578125 ], "score": 0.9992783069610596 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 84.94930267333984, 215.7865753173828, 45.6231689453125, 88.63630676269531 ], "score": 0.999161422252655 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 414.76985931396484, 210.69577026367188, 21.393585205078125, 43.559539794921875 ], "score": 0.8968335390090942 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 377.45716094970703, 215.36700439453125, 20.884628295898438, 40.64300537109375 ], "score": 0.7379841804504395 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 439.72789764404297, 208.0997314453125, 21.217575073242188, 47.4732666015625 ], "score": 0.7109288573265076 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 7.557675838470459, 197.25326538085938, 32.49807596206665, 74.19332885742188 ], "score": 0.1899109035730362 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 422.9400634765625, 210.25729370117188, 22.555618286132812, 46.498260498046875 ], "score": 0.18723982572555542 }, { "image_id": 469, "category_id": 1.0, "bbox": [ 402.2550964355469, 210.596435546875, 18.590164184570312, 41.834625244140625 ], "score": 0.14680403470993042 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 532.2960662841797, 226.50091552734375, 27.083969116210938, 69.03717041015625 ], "score": 0.9985402822494507 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 464.59850311279297, 216.07827758789062, 23.214340209960938, 49.43548583984375 ], "score": 0.998488187789917 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 430.78868865966797, 217.5970001220703, 23.974151611328125, 50.59748840332031 ], "score": 0.9754085540771484 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 384.31373596191406, 219.63954162597656, 21.43463134765625, 48.78175354003906 ], "score": 0.9218738675117493 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 519.3428039550781, 220.50697326660156, 26.778335571289062, 64.20683288574219 ], "score": 0.2619163990020752 }, { "image_id": 470, "category_id": 1.0, "bbox": [ 409.2682647705078, 217.95668029785156, 23.3758544921875, 50.73298645019531 ], "score": 0.15308338403701782 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 514.1454696655273, 215.85865783691406, 26.121292114257812, 63.52964782714844 ], "score": 0.9996833801269531 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 457.76695251464844, 216.4719696044922, 26.639404296875, 59.32975769042969 ], "score": 0.9992319345474243 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 598.3697891235352, 209.82882690429688, 29.362411499023438, 76.8427734375 ], "score": 0.9982410669326782 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 395.78582763671875, 220.00714111328125, 23.717193603515625, 56.010467529296875 ], "score": 0.9812867045402527 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 430.96412658691406, 216.14859008789062, 24.05792236328125, 58.10003662109375 ], "score": 0.9522973299026489 }, { "image_id": 471, "category_id": 1.0, "bbox": [ 416.13304138183594, 218.3968048095703, 23.447189331054688, 52.17720031738281 ], "score": 0.2764658033847809 }, { "image_id": 472, "category_id": 1.0, "bbox": [ 427.9137420654297, 211.65106201171875, 34.88883972167969, 84.73333740234375 ], "score": 0.9980118274688721 }, { "image_id": 472, "category_id": 1.0, "bbox": [ 469.73567962646484, 213.69351196289062, 31.545028686523438, 82.40130615234375 ], "score": 0.9957025647163391 }, { "image_id": 472, "category_id": 1.0, "bbox": [ 497.7040481567383, 213.15615844726562, 29.29779052734375, 77.70767211914062 ], "score": 0.9932944774627686 }, { "image_id": 472, "category_id": 1.0, "bbox": [ 607.6834106445312, 215.8870849609375, 25.496673583984375, 70.27560424804688 ], "score": 0.7764625549316406 }, { "image_id": 472, "category_id": 1.0, "bbox": [ 485.299072265625, 215.4846954345703, 30.198287963867188, 71.63459777832031 ], "score": 0.17650145292282104 }, { "image_id": 473, "category_id": 1.0, "bbox": [ 509.96360778808594, 204.87969970703125, 46.1114501953125, 124.7921142578125 ], "score": 0.999143123626709 }, { "image_id": 473, "category_id": 1.0, "bbox": [ 566.9588851928711, 215.29966735839844, 36.8121337890625, 102.04496765136719 ], "score": 0.9856868386268616 }, { "image_id": 473, "category_id": 1.0, "bbox": [ 577.6511383056641, 219.5052947998047, 43.39973449707031, 111.71565246582031 ], "score": 0.975348949432373 }, { "image_id": 473, "category_id": 1.0, "bbox": [ 593.6663436889648, 241.87338256835938, 35.6646728515625, 108.994384765625 ], "score": 0.24311037361621857 }, { "image_id": 475, "category_id": 1.0, "bbox": [ 423.4329605102539, 214.0955352783203, 21.528472900390625, 50.83293151855469 ], "score": 0.556137204170227 }, { "image_id": 478, "category_id": 1.0, "bbox": [ 461.23199462890625, 221.26145935058594, 30.777130126953125, 62.96681213378906 ], "score": 0.10546492040157318 }, { "image_id": 481, "category_id": 1.0, "bbox": [ 463.09925079345703, 230.85464477539062, 26.125335693359375, 59.7294921875 ], "score": 0.12105588614940643 }, { "image_id": 482, "category_id": 1.0, "bbox": [ 561.7068862915039, 222.57022094726562, 47.40013122558594, 127.85479736328125 ], "score": 0.40019121766090393 }, { "image_id": 482, "category_id": 1.0, "bbox": [ 423.51470947265625, 232.8716278076172, 30.70068359375, 75.47941589355469 ], "score": 0.11058972030878067 }, { "image_id": 483, "category_id": 1.0, "bbox": [ 488.5650634765625, 228.05557250976562, 40.01914978027344, 105.94873046875 ], "score": 0.4006670117378235 }, { "image_id": 484, "category_id": 1.0, "bbox": [ 359.79766845703125, 177.13577270507812, 23.420181274414062, 48.07769775390625 ], "score": 0.15378469228744507 }, { "image_id": 485, "category_id": 1.0, "bbox": [ 145.89426040649414, 226.78390502929688, 21.614551544189453, 40.47613525390625 ], "score": 0.10779477655887604 }, { "image_id": 488, "category_id": 1.0, "bbox": [ 205.46415328979492, 224.10543823242188, 20.57323455810547, 38.91754150390625 ], "score": 0.10891873389482498 }, { "image_id": 489, "category_id": 1.0, "bbox": [ 236.42818450927734, 220.09051513671875, 21.84314727783203, 43.930328369140625 ], "score": 0.45506954193115234 }, { "image_id": 490, "category_id": 1.0, "bbox": [ 253.85370254516602, 217.93704223632812, 22.02484130859375, 45.575347900390625 ], "score": 0.9044677019119263 }, { "image_id": 491, "category_id": 1.0, "bbox": [ 254.80493545532227, 220.26087951660156, 24.031219482421875, 49.53382873535156 ], "score": 0.9843858480453491 }, { "image_id": 492, "category_id": 1.0, "bbox": [ 288.07865142822266, 219.5908203125, 24.544754028320312, 57.262359619140625 ], "score": 0.9986025094985962 }, { "image_id": 493, "category_id": 1.0, "bbox": [ 336.4399719238281, 219.54444885253906, 26.578140258789062, 61.72508239746094 ], "score": 0.9996680617332458 }, { "image_id": 494, "category_id": 1.0, "bbox": [ 397.9315948486328, 211.24050903320312, 33.32038879394531, 80.97732543945312 ], "score": 0.9986047744750977 }, { "image_id": 494, "category_id": 1.0, "bbox": [ 331.3187789916992, 218.08718872070312, 21.542282104492188, 42.458160400390625 ], "score": 0.16148456931114197 }, { "image_id": 495, "category_id": 1.0, "bbox": [ 475.1857376098633, 213.0858612060547, 29.838027954101562, 82.91944885253906 ], "score": 0.9948582053184509 }, { "image_id": 495, "category_id": 1.0, "bbox": [ 406.2488555908203, 200.83416748046875, 41.72393798828125, 95.5167236328125 ], "score": 0.10188724100589752 }, { "image_id": 496, "category_id": 1.0, "bbox": [ 548.3031463623047, 194.81019592285156, 60.93269348144531, 165.9380340576172 ], "score": 0.566149890422821 }, { "image_id": 496, "category_id": 1.0, "bbox": [ 399.6076965332031, 206.59149169921875, 34.056549072265625, 70.82162475585938 ], "score": 0.10680779814720154 }, { "image_id": 501, "category_id": 1.0, "bbox": [ 571.7633056640625, 189.24078369140625, 29.057540893554688, 75.46453857421875 ], "score": 0.46896183490753174 }, { "image_id": 501, "category_id": 1.0, "bbox": [ 270.6436538696289, 216.95050048828125, 23.9910888671875, 50.35821533203125 ], "score": 0.2115938365459442 }, { "image_id": 501, "category_id": 1.0, "bbox": [ 561.5852355957031, 192.85818481445312, 25.983810424804688, 61.1436767578125 ], "score": 0.1116974949836731 }, { "image_id": 502, "category_id": 1.0, "bbox": [ 400.7999038696289, 187.76675415039062, 29.182205200195312, 79.10333251953125 ], "score": 0.8598353266716003 }, { "image_id": 503, "category_id": 1.0, "bbox": [ 162.96539306640625, 172.3164825439453, 35.927581787109375, 89.22428894042969 ], "score": 0.47830209136009216 }, { "image_id": 504, "category_id": 1.0, "bbox": [ 512.7090072631836, 142.82626342773438, 28.367691040039062, 38.042388916015625 ], "score": 0.11054759472608566 }, { "image_id": 505, "category_id": 1.0, "bbox": [ 499.56275939941406, 242.3922576904297, 18.994140625, 47.49143981933594 ], "score": 0.22854749858379364 }, { "image_id": 506, "category_id": 1.0, "bbox": [ 382.67662048339844, 246.2095947265625, 23.55224609375, 45.36065673828125 ], "score": 0.17485252022743225 }, { "image_id": 508, "category_id": 1.0, "bbox": [ 110.53394317626953, 229.43104553222656, 47.97229766845703, 88.69853210449219 ], "score": 0.22004559636116028 }, { "image_id": 508, "category_id": 1.0, "bbox": [ 130.91590881347656, 236.9898681640625, 33.23335647583008, 58.0511474609375 ], "score": 0.1919020116329193 }, { "image_id": 509, "category_id": 1.0, "bbox": [ 402.3152160644531, 248.43142700195312, 47.646942138671875, 96.36114501953125 ], "score": 0.19556839764118195 }, { "image_id": 510, "category_id": 1.0, "bbox": [ 343.16925048828125, 190.49624633789062, 26.764602661132812, 65.66421508789062 ], "score": 0.421703040599823 }, { "image_id": 511, "category_id": 1.0, "bbox": [ 427.14500427246094, 207.1909637451172, 23.0804443359375, 55.38822937011719 ], "score": 0.47011053562164307 }, { "image_id": 511, "category_id": 1.0, "bbox": [ 393.6991500854492, 205.44151306152344, 41.199188232421875, 80.69123840332031 ], "score": 0.30807679891586304 }, { "image_id": 512, "category_id": 1.0, "bbox": [ 162.39429473876953, 182.8153839111328, 46.260986328125, 97.59095764160156 ], "score": 0.7792469263076782 }, { "image_id": 512, "category_id": 1.0, "bbox": [ 142.33190536499023, 184.5703887939453, 44.570159912109375, 94.28016662597656 ], "score": 0.6503599286079407 }, { "image_id": 513, "category_id": 1.0, "bbox": [ 431.7791748046875, 185.04002380371094, 42.249603271484375, 95.60838317871094 ], "score": 0.9667925834655762 }, { "image_id": 513, "category_id": 1.0, "bbox": [ 373.01761627197266, 315.510498046875, 24.480972290039062, 51.33489990234375 ], "score": 0.20483410358428955 }, { "image_id": 514, "category_id": 1.0, "bbox": [ 450.3074645996094, 201.12802124023438, 46.70806884765625, 93.65338134765625 ], "score": 0.9853183031082153 }, { "image_id": 515, "category_id": 1.0, "bbox": [ 444.88861083984375, 192.54212951660156, 48.52760314941406, 103.56428527832031 ], "score": 0.8972041010856628 }, { "image_id": 516, "category_id": 1.0, "bbox": [ 42.57420539855957, 138.51492309570312, 80.291748046875, 201.60906982421875 ], "score": 0.9970784187316895 }, { "image_id": 516, "category_id": 1.0, "bbox": [ 482.7249526977539, 188.43972778320312, 46.42723083496094, 103.90798950195312 ], "score": 0.9884158968925476 }, { "image_id": 516, "category_id": 1.0, "bbox": [ 427.83985137939453, 297.2676086425781, 23.826675415039062, 53.272705078125 ], "score": 0.14641474187374115 }, { "image_id": 517, "category_id": 1.0, "bbox": [ 18.592681884765625, 241.27703857421875, 118.50263595581055, 246.28851318359375 ], "score": 0.9993199110031128 }, { "image_id": 517, "category_id": 1.0, "bbox": [ 186.62979125976562, 141.55227661132812, 66.72027587890625, 212.7303466796875 ], "score": 0.9928618669509888 }, { "image_id": 517, "category_id": 1.0, "bbox": [ 565.5239868164062, 189.3702392578125, 46.887359619140625, 100.781494140625 ], "score": 0.9914666414260864 }, { "image_id": 518, "category_id": 1.0, "bbox": [ 353.44139099121094, 207.7122802734375, 92.81974792480469, 243.7667236328125 ], "score": 0.9997302889823914 }, { "image_id": 518, "category_id": 1.0, "bbox": [ 327.09686279296875, 158.72134399414062, 56.29425048828125, 171.03671264648438 ], "score": 0.9423059225082397 }, { "image_id": 518, "category_id": 1.0, "bbox": [ 331.80423736572266, 163.51133728027344, 78.09471130371094, 272.28382873535156 ], "score": 0.3916739225387573 }, { "image_id": 519, "category_id": 1.0, "bbox": [ 445.47454833984375, 176.96942138671875, 54.06402587890625, 169.19207763671875 ], "score": 0.9967784881591797 }, { "image_id": 520, "category_id": 1.0, "bbox": [ 472.0106887817383, 177.28427124023438, 51.30859375, 161.639892578125 ], "score": 0.9897257089614868 }, { "image_id": 521, "category_id": 1.0, "bbox": [ 490.92212677001953, 180.08042907714844, 52.460479736328125, 161.18910217285156 ], "score": 0.9879590272903442 }, { "image_id": 524, "category_id": 1.0, "bbox": [ 549.0763092041016, 187.17202758789062, 55.97770690917969, 143.25927734375 ], "score": 0.2117060124874115 }, { "image_id": 535, "category_id": 1.0, "bbox": [ 369.57096099853516, 230.7288818359375, 25.80047607421875, 54.5111083984375 ], "score": 0.12436306476593018 }, { "image_id": 536, "category_id": 1.0, "bbox": [ 383.41346740722656, 227.3093719482422, 24.702224731445312, 47.48988342285156 ], "score": 0.12687279284000397 }, { "image_id": 537, "category_id": 1.0, "bbox": [ 430.045166015625, 246.0749969482422, 29.208908081054688, 55.49998474121094 ], "score": 0.141525998711586 }, { "image_id": 543, "category_id": 1.0, "bbox": [ 463.0968475341797, 232.63641357421875, 21.641693115234375, 38.2640380859375 ], "score": 0.18396414816379547 }, { "image_id": 544, "category_id": 1.0, "bbox": [ 342.71263122558594, 229.6679229736328, 21.830520629882812, 43.04777526855469 ], "score": 0.2940824031829834 }, { "image_id": 544, "category_id": 1.0, "bbox": [ 358.75572204589844, 235.512451171875, 23.211898803710938, 42.5968017578125 ], "score": 0.16042473912239075 }, { "image_id": 545, "category_id": 1.0, "bbox": [ 226.92777633666992, 222.97019958496094, 23.99730682373047, 45.22038269042969 ], "score": 0.8351078033447266 }, { "image_id": 546, "category_id": 1.0, "bbox": [ 175.1251983642578, 228.2836456298828, 24.3768310546875, 50.23869323730469 ], "score": 0.9983817934989929 }, { "image_id": 547, "category_id": 1.0, "bbox": [ 115.7740592956543, 222.08575439453125, 31.255970001220703, 68.1541748046875 ], "score": 0.9990406632423401 }, { "image_id": 548, "category_id": 1.0, "bbox": [ 30.715172290802002, 228.24832153320312, 41.40658140182495, 89.656005859375 ], "score": 0.9958542585372925 }, { "image_id": 548, "category_id": 1.0, "bbox": [ 142.5953197479248, 219.5020751953125, 27.691659927368164, 45.722137451171875 ], "score": 0.12460927665233612 }, { "image_id": 549, "category_id": 1.0, "bbox": [ 200.6460189819336, 217.1786346435547, 21.642074584960938, 46.35710144042969 ], "score": 0.24692337214946747 }, { "image_id": 549, "category_id": 1.0, "bbox": [ 135.06518363952637, 212.39459228515625, 24.445953369140625, 49.198211669921875 ], "score": 0.19420255720615387 }, { "image_id": 549, "category_id": 1.0, "bbox": [ 104.35473442077637, 211.6846923828125, 24.476776123046875, 50.246185302734375 ], "score": 0.1914011389017105 }, { "image_id": 550, "category_id": 1.0, "bbox": [ 77.1937894821167, 217.28140258789062, 26.78734302520752, 58.488433837890625 ], "score": 0.5680023431777954 }, { "image_id": 550, "category_id": 1.0, "bbox": [ 87.90899276733398, 217.42864990234375, 27.90447235107422, 50.986083984375 ], "score": 0.2500181496143341 }, { "image_id": 553, "category_id": 1.0, "bbox": [ 142.50473022460938, 223.6919708251953, 25.841445922851562, 51.92872619628906 ], "score": 0.11488711088895798 }, { "image_id": 554, "category_id": 1.0, "bbox": [ 202.1132469177246, 224.064697265625, 23.493728637695312, 46.13671875 ], "score": 0.1653984636068344 }, { "image_id": 555, "category_id": 1.0, "bbox": [ 248.18618774414062, 201.22801208496094, 31.24645233154297, 46.552734375 ], "score": 0.12137731909751892 }, { "image_id": 555, "category_id": 1.0, "bbox": [ 457.0186233520508, 228.83787536621094, 22.338104248046875, 47.78639221191406 ], "score": 0.10857705771923065 }, { "image_id": 558, "category_id": 1.0, "bbox": [ 15.616669654846191, 218.65634155273438, 58.352203369140625, 134.64263916015625 ], "score": 0.9996188879013062 }, { "image_id": 563, "category_id": 1.0, "bbox": [ 431.4292526245117, 228.72569274902344, 21.741561889648438, 51.69285583496094 ], "score": 0.11455124616622925 }, { "image_id": 565, "category_id": 1.0, "bbox": [ 404.80438232421875, 224.5987548828125, 22.070999145507812, 49.628021240234375 ], "score": 0.6002485752105713 }, { "image_id": 565, "category_id": 1.0, "bbox": [ 596.9062805175781, 198.49197387695312, 28.693161010742188, 63.976470947265625 ], "score": 0.21686647832393646 }, { "image_id": 565, "category_id": 1.0, "bbox": [ 587.6033401489258, 203.3446044921875, 44.05609130859375, 95.65188598632812 ], "score": 0.1221056878566742 }, { "image_id": 566, "category_id": 1.0, "bbox": [ 440.7355499267578, 218.09368896484375, 19.622344970703125, 41.914398193359375 ], "score": 0.5460331439971924 }, { "image_id": 567, "category_id": 1.0, "bbox": [ 463.49842071533203, 201.99954223632812, 45.41572570800781, 108.508056640625 ], "score": 0.12785395979881287 }, { "image_id": 568, "category_id": 1.0, "bbox": [ 516.2876510620117, 226.77542114257812, 27.363357543945312, 60.51092529296875 ], "score": 0.9992392063140869 }, { "image_id": 569, "category_id": 1.0, "bbox": [ 572.8806304931641, 221.9153289794922, 30.477371215820312, 78.67527770996094 ], "score": 0.9991424679756165 }, { "image_id": 572, "category_id": 1.0, "bbox": [ 511.9132995605469, 218.9375, 49.607696533203125, 115.0684814453125 ], "score": 0.11483170092105865 }, { "image_id": 574, "category_id": 1.0, "bbox": [ 254.44969177246094, 209.3587646484375, 22.916336059570312, 46.78460693359375 ], "score": 0.45847007632255554 }, { "image_id": 575, "category_id": 1.0, "bbox": [ 258.170108795166, 201.6161651611328, 24.24243927001953, 51.1182861328125 ], "score": 0.6501133441925049 }, { "image_id": 575, "category_id": 1.0, "bbox": [ 587.8835678100586, 207.8251495361328, 24.897003173828125, 55.67536926269531 ], "score": 0.3713696300983429 }, { "image_id": 576, "category_id": 1.0, "bbox": [ 263.45041275024414, 196.8203125, 25.343971252441406, 42.15924072265625 ], "score": 0.760326623916626 }, { "image_id": 576, "category_id": 1.0, "bbox": [ 384.22176361083984, 208.0148162841797, 22.686538696289062, 46.090118408203125 ], "score": 0.1573067456483841 }, { "image_id": 577, "category_id": 1.0, "bbox": [ 267.1482276916504, 204.104248046875, 24.140892028808594, 42.209869384765625 ], "score": 0.857540488243103 }, { "image_id": 577, "category_id": 1.0, "bbox": [ 422.7647399902344, 221.94271850585938, 25.518112182617188, 51.677459716796875 ], "score": 0.480227530002594 }, { "image_id": 577, "category_id": 1.0, "bbox": [ 409.2971420288086, 205.2772979736328, 39.96910095214844, 86.06663513183594 ], "score": 0.11760498583316803 }, { "image_id": 578, "category_id": 1.0, "bbox": [ 282.3657417297363, 200.3033905029297, 22.293128967285156, 41.996307373046875 ], "score": 0.843949556350708 }, { "image_id": 579, "category_id": 1.0, "bbox": [ 299.78052139282227, 202.6604461669922, 23.555660247802734, 45.085540771484375 ], "score": 0.973406195640564 }, { "image_id": 580, "category_id": 1.0, "bbox": [ 319.1202163696289, 200.9122314453125, 24.752578735351562, 52.9761962890625 ], "score": 0.9947768449783325 }, { "image_id": 581, "category_id": 1.0, "bbox": [ 349.4622039794922, 202.98992919921875, 26.60980224609375, 59.947998046875 ], "score": 0.9989210963249207 }, { "image_id": 582, "category_id": 1.0, "bbox": [ 389.8540496826172, 237.53573608398438, 25.58135986328125, 50.473388671875 ], "score": 0.793995201587677 }, { "image_id": 582, "category_id": 1.0, "bbox": [ 400.220947265625, 242.11819458007812, 26.880569458007812, 44.33154296875 ], "score": 0.1396457552909851 }, { "image_id": 583, "category_id": 1.0, "bbox": [ 523.3173751831055, 214.65110778808594, 24.749298095703125, 49.27384948730469 ], "score": 0.9896631240844727 }, { "image_id": 583, "category_id": 1.0, "bbox": [ 440.00606536865234, 208.2841033935547, 24.127349853515625, 63.64784240722656 ], "score": 0.8604300022125244 }, { "image_id": 584, "category_id": 1.0, "bbox": [ 509.8722839355469, 205.95750427246094, 33.35884094238281, 88.79966735839844 ], "score": 0.9773783087730408 }, { "image_id": 584, "category_id": 1.0, "bbox": [ 596.0636520385742, 196.89906311035156, 30.407180786132812, 72.32566833496094 ], "score": 0.9298378229141235 }, { "image_id": 584, "category_id": 1.0, "bbox": [ 493.2889175415039, 199.01560974121094, 28.240280151367188, 74.08842468261719 ], "score": 0.23622611165046692 }, { "image_id": 585, "category_id": 1.0, "bbox": [ 596.8361282348633, 214.21580505371094, 36.99546813964844, 96.49662780761719 ], "score": 0.7811886668205261 }, { "image_id": 585, "category_id": 1.0, "bbox": [ 329.7367477416992, 200.6666259765625, 19.431610107421875, 45.29058837890625 ], "score": 0.14960668981075287 }, { "image_id": 586, "category_id": 1.0, "bbox": [ 369.0481185913086, 199.60079956054688, 22.48443603515625, 46.702362060546875 ], "score": 0.26840412616729736 }, { "image_id": 586, "category_id": 1.0, "bbox": [ 433.0445098876953, 161.6453094482422, 34.360809326171875, 47.23797607421875 ], "score": 0.10360703617334366 }, { "image_id": 587, "category_id": 1.0, "bbox": [ 545.0692367553711, 201.19384765625, 24.602737426757812, 52.38055419921875 ], "score": 0.8354632258415222 }, { "image_id": 587, "category_id": 1.0, "bbox": [ 548.76708984375, 194.57203674316406, 36.322479248046875, 66.26805114746094 ], "score": 0.34001147747039795 }, { "image_id": 587, "category_id": 1.0, "bbox": [ 509.8345947265625, 70.9908447265625, 21.299362182617188, 50.56451416015625 ], "score": 0.2675575613975525 }, { "image_id": 587, "category_id": 1.0, "bbox": [ 562.8827285766602, 199.09603881835938, 30.688095092773438, 52.829437255859375 ], "score": 0.19277732074260712 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 229.54023361206055, 212.1565704345703, 28.346595764160156, 59.52778625488281 ], "score": 0.9975738525390625 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 457.4461364746094, 206.35911560058594, 22.75726318359375, 54.11665344238281 ], "score": 0.39283040165901184 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 441.13880157470703, 196.85797119140625, 22.187042236328125, 63.20501708984375 ], "score": 0.30506885051727295 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 471.8790817260742, 208.62669372558594, 25.6060791015625, 49.11250305175781 ], "score": 0.2082761973142624 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 443.9752197265625, 202.20347595214844, 62.24311828613281, 60.22566223144531 ], "score": 0.20663432776927948 }, { "image_id": 588, "category_id": 1.0, "bbox": [ 217.0917510986328, 203.20257568359375, 30.391807556152344, 68.0870361328125 ], "score": 0.12050653994083405 }, { "image_id": 589, "category_id": 1.0, "bbox": [ 29.454171657562256, 215.92800903320312, 33.55652093887329, 72.72299194335938 ], "score": 0.3827183246612549 }, { "image_id": 589, "category_id": 1.0, "bbox": [ 248.4840965270996, 181.88894653320312, 34.72770690917969, 101.569091796875 ], "score": 0.13474281132221222 }, { "image_id": 589, "category_id": 1.0, "bbox": [ 404.1382598876953, 176.35275268554688, 27.569961547851562, 38.4654541015625 ], "score": 0.1113143265247345 }, { "image_id": 589, "category_id": 1.0, "bbox": [ -2.3034119606018066, 197.89224243164062, 42.9955792427063, 101.1121826171875 ], "score": 0.1073637455701828 }, { "image_id": 590, "category_id": 1.0, "bbox": [ 14.48801040649414, 196.18069458007812, 41.922664642333984, 91.3717041015625 ], "score": 0.1417481154203415 }, { "image_id": 591, "category_id": 1.0, "bbox": [ 171.71489715576172, 202.05418395996094, 21.76677703857422, 46.085723876953125 ], "score": 0.10535628348588943 }, { "image_id": 592, "category_id": 1.0, "bbox": [ 504.11964416503906, 213.79139709472656, 22.252578735351562, 52.07926940917969 ], "score": 0.6868062019348145 }, { "image_id": 592, "category_id": 1.0, "bbox": [ 455.65101623535156, 221.29415893554688, 21.738357543945312, 42.1590576171875 ], "score": 0.6788959503173828 }, { "image_id": 592, "category_id": 1.0, "bbox": [ 61.233577728271484, 216.38055419921875, 25.629873275756836, 50.92791748046875 ], "score": 0.4272897243499756 }, { "image_id": 592, "category_id": 1.0, "bbox": [ 98.69633674621582, 213.58877563476562, 19.513988494873047, 41.122528076171875 ], "score": 0.10013037919998169 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 489.8577880859375, 218.5568389892578, 22.509994506835938, 50.17799377441406 ], "score": 0.9938294887542725 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 558.4380722045898, 216.671875, 20.819778442382812, 51.926513671875 ], "score": 0.9900057911872864 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 438.20159912109375, 210.94265747070312, 22.021026611328125, 39.7586669921875 ], "score": 0.2624571919441223 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 575.8435440063477, 221.72256469726562, 18.84246826171875, 51.36871337890625 ], "score": 0.1642410010099411 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 582.9185485839844, 224.49374389648438, 20.564727783203125, 46.994598388671875 ], "score": 0.1600126475095749 }, { "image_id": 593, "category_id": 1.0, "bbox": [ 566.2143707275391, 219.72030639648438, 20.957870483398438, 51.779022216796875 ], "score": 0.15727771818637848 }, { "image_id": 594, "category_id": 1.0, "bbox": [ 566.172981262207, 212.91893005371094, 32.169342041015625, 70.47047424316406 ], "score": 0.9985929727554321 }, { "image_id": 594, "category_id": 1.0, "bbox": [ 469.06993865966797, 210.28172302246094, 20.519180297851562, 41.668212890625 ], "score": 0.783332347869873 }, { "image_id": 595, "category_id": 1.0, "bbox": [ 514.2619705200195, 207.64947509765625, 20.600204467773438, 42.238250732421875 ], "score": 0.9609247446060181 }, { "image_id": 596, "category_id": 1.0, "bbox": [ 569.3241882324219, 205.27488708496094, 24.944000244140625, 62.37452697753906 ], "score": 0.9994820356369019 }, { "image_id": 597, "category_id": 1.0, "bbox": [ 122.62330055236816, 193.4984130859375, 21.312828063964844, 41.33349609375 ], "score": 0.14986425638198853 }, { "image_id": 598, "category_id": 1.0, "bbox": [ 80.92207908630371, 194.6847381591797, 21.874027252197266, 39.820465087890625 ], "score": 0.2565861940383911 }, { "image_id": 599, "category_id": 1.0, "bbox": [ 38.60675096511841, 207.48085021972656, 23.98005247116089, 49.84590148925781 ], "score": 0.6366254091262817 }, { "image_id": 599, "category_id": 1.0, "bbox": [ 28.642797470092773, 194.37826538085938, 27.161731719970703, 57.128448486328125 ], "score": 0.23646855354309082 }, { "image_id": 599, "category_id": 1.0, "bbox": [ 494.44705963134766, -36.232940673828125, 41.01676940917969, 138.12339782714844 ], "score": 0.1325075626373291 }, { "image_id": 603, "category_id": 1.0, "bbox": [ 79.88397598266602, 222.22280883789062, 20.474014282226562, 41.188079833984375 ], "score": 0.19629237055778503 }, { "image_id": 604, "category_id": 1.0, "bbox": [ 27.636075019836426, 235.63560485839844, 24.620094299316406, 50.45433044433594 ], "score": 0.6081767678260803 }, { "image_id": 604, "category_id": 1.0, "bbox": [ 83.31768989562988, 229.86436462402344, 19.34417724609375, 41.26640319824219 ], "score": 0.18272563815116882 }, { "image_id": 604, "category_id": 1.0, "bbox": [ 14.09706711769104, 227.71624755859375, 29.317792654037476, 57.8358154296875 ], "score": 0.12696018815040588 }, { "image_id": 605, "category_id": 1.0, "bbox": [ 20.954620838165283, 222.94517517089844, 26.181352138519287, 50.29493713378906 ], "score": 0.3422425091266632 }, { "image_id": 607, "category_id": 1.0, "bbox": [ 435.4056930541992, 202.1790771484375, 20.648422241210938, 40.57354736328125 ], "score": 0.1888563483953476 }, { "image_id": 607, "category_id": 1.0, "bbox": [ 451.53865814208984, 204.08660888671875, 18.188323974609375, 41.740386962890625 ], "score": 0.14255130290985107 }, { "image_id": 607, "category_id": 1.0, "bbox": [ 479.8335647583008, 204.09619140625, 24.618453979492188, 44.70538330078125 ], "score": 0.11104859411716461 }, { "image_id": 607, "category_id": 1.0, "bbox": [ 470.20999908447266, 200.5257110595703, 22.718353271484375, 41.538055419921875 ], "score": 0.10300865769386292 }, { "image_id": 608, "category_id": 1.0, "bbox": [ 543.3569717407227, 205.53407287597656, 24.216842651367188, 57.06065368652344 ], "score": 0.9942202568054199 }, { "image_id": 608, "category_id": 1.0, "bbox": [ 487.5489807128906, 201.9069366455078, 21.908187866210938, 48.5167236328125 ], "score": 0.8196375370025635 }, { "image_id": 608, "category_id": 1.0, "bbox": [ 471.5626907348633, 205.32974243164062, 21.692657470703125, 48.5968017578125 ], "score": 0.33694690465927124 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 518.7776947021484, 201.29693603515625, 25.090789794921875, 58.518829345703125 ], "score": 0.9970933794975281 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 543.4844207763672, 196.9139404296875, 23.36456298828125, 62.67034912109375 ], "score": 0.989559531211853 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 445.1499938964844, 197.54360961914062, 20.524673461914062, 44.602294921875 ], "score": 0.3759211003780365 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 10.618399381637573, 198.8758544921875, 24.45212960243225, 55.777587890625 ], "score": 0.18206799030303955 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 18.91283869743347, 191.0026092529297, 30.182729959487915, 66.25117492675781 ], "score": 0.13340072333812714 }, { "image_id": 609, "category_id": 1.0, "bbox": [ 64.89494800567627, 191.68954467773438, 21.89563274383545, 35.632080078125 ], "score": 0.1201641634106636 }, { "image_id": 610, "category_id": 1.0, "bbox": [ 600.1418304443359, 207.78402709960938, 25.361557006835938, 69.30484008789062 ], "score": 0.9934322237968445 }, { "image_id": 610, "category_id": 1.0, "bbox": [ 428.7855911254883, 195.31268310546875, 23.014907836914062, 52.9422607421875 ], "score": 0.8431094884872437 }, { "image_id": 610, "category_id": 1.0, "bbox": [ 480.98323822021484, 211.87686157226562, 23.709335327148438, 59.641754150390625 ], "score": 0.31078866124153137 }, { "image_id": 610, "category_id": 1.0, "bbox": [ 22.871413230895996, 187.7394256591797, 21.23692512512207, 42.03314208984375 ], "score": 0.27186787128448486 }, { "image_id": 611, "category_id": 1.0, "bbox": [ 528.2967758178711, 206.5496063232422, 21.72760009765625, 48.040985107421875 ], "score": 0.9984289407730103 }, { "image_id": 611, "category_id": 1.0, "bbox": [ 452.37464904785156, 188.70166015625, 25.505752563476562, 67.12466430664062 ], "score": 0.7324994802474976 }, { "image_id": 611, "category_id": 1.0, "bbox": [ 146.1655044555664, 178.50210571289062, 23.789386749267578, 44.357391357421875 ], "score": 0.16635292768478394 }, { "image_id": 612, "category_id": 1.0, "bbox": [ 574.962272644043, 253.32493591308594, 26.016006469726562, 59.37751770019531 ], "score": 0.9998477101325989 }, { "image_id": 612, "category_id": 1.0, "bbox": [ 478.0867004394531, 236.91053771972656, 23.91143798828125, 63.44850158691406 ], "score": 0.9995275735855103 }, { "image_id": 613, "category_id": 1.0, "bbox": [ 503.8152313232422, 208.6208038330078, 25.648956298828125, 68.69261169433594 ], "score": 0.9995432496070862 }, { "image_id": 613, "category_id": 1.0, "bbox": [ 427.9449462890625, 200.9776611328125, 21.1285400390625, 33.9483642578125 ], "score": 0.22793571650981903 }, { "image_id": 614, "category_id": 1.0, "bbox": [ 557.9761505126953, 219.50204467773438, 31.817092895507812, 89.72430419921875 ], "score": 0.9969699382781982 }, { "image_id": 614, "category_id": 1.0, "bbox": [ 460.6565475463867, 209.25843811035156, 20.565414428710938, 45.01385498046875 ], "score": 0.7094618082046509 }, { "image_id": 614, "category_id": 1.0, "bbox": [ 33.73672962188721, 155.4202880859375, 38.534841537475586, 87.60638427734375 ], "score": 0.27098312973976135 }, { "image_id": 614, "category_id": 1.0, "bbox": [ 52.33675003051758, 202.08274841308594, 23.668241500854492, 50.10443115234375 ], "score": 0.17447221279144287 }, { "image_id": 614, "category_id": 1.0, "bbox": [ 400.50548553466797, 195.29257202148438, 21.410751342773438, 45.768218994140625 ], "score": 0.13992056250572205 }, { "image_id": 615, "category_id": 1.0, "bbox": [ 526.0741806030273, 212.51708984375, 23.43902587890625, 60.6510009765625 ], "score": 0.9925025701522827 }, { "image_id": 615, "category_id": 1.0, "bbox": [ 424.5729064941406, 199.95799255371094, 21.226730346679688, 44.0867919921875 ], "score": 0.8150867819786072 }, { "image_id": 616, "category_id": 1.0, "bbox": [ 454.4825744628906, 213.1853790283203, 20.876922607421875, 46.44102478027344 ], "score": 0.91560959815979 }, { "image_id": 617, "category_id": 1.0, "bbox": [ 601.9747924804688, 207.31265258789062, 27.13104248046875, 60.58087158203125 ], "score": 0.26497960090637207 }, { "image_id": 618, "category_id": 1.0, "bbox": [ 576.0506057739258, 211.447265625, 23.55621337890625, 53.063507080078125 ], "score": 0.9591158628463745 }, { "image_id": 618, "category_id": 1.0, "bbox": [ 584.0758895874023, 204.29891967773438, 24.015731811523438, 64.28668212890625 ], "score": 0.8047574162483215 }, { "image_id": 618, "category_id": 1.0, "bbox": [ 106.51250839233398, 203.62127685546875, 21.57308578491211, 46.6685791015625 ], "score": 0.7711789011955261 }, { "image_id": 618, "category_id": 1.0, "bbox": [ 8.332161903381348, 214.1556854248047, 24.48622703552246, 52.70985412597656 ], "score": 0.17758183181285858 }, { "image_id": 619, "category_id": 1.0, "bbox": [ 38.01711559295654, 210.1018829345703, 25.733013153076172, 55.52513122558594 ], "score": 0.9262841939926147 }, { "image_id": 619, "category_id": 1.0, "bbox": [ 47.473788261413574, 207.9944305419922, 26.132965087890625, 52.86305236816406 ], "score": 0.17270852625370026 }, { "image_id": 620, "category_id": 1.0, "bbox": [ 290.4832458496094, 179.8533477783203, 25.533065795898438, 53.825042724609375 ], "score": 0.5606935024261475 }, { "image_id": 621, "category_id": 1.0, "bbox": [ 505.4914855957031, 213.13238525390625, 21.12884521484375, 50.201324462890625 ], "score": 0.3269607424736023 }, { "image_id": 622, "category_id": 1.0, "bbox": [ 583.4638977050781, 217.53907775878906, 24.819564819335938, 56.06312561035156 ], "score": 0.6751144528388977 }, { "image_id": 624, "category_id": 1.0, "bbox": [ 47.153096199035645, 214.79647827148438, 23.655786514282227, 48.843902587890625 ], "score": 0.5022367238998413 }, { "image_id": 624, "category_id": 1.0, "bbox": [ 56.31208896636963, 207.9639434814453, 20.850601196289062, 52.44374084472656 ], "score": 0.1944294273853302 }, { "image_id": 624, "category_id": 1.0, "bbox": [ 51.08095169067383, 165.76022338867188, 45.28196334838867, 97.20480346679688 ], "score": 0.1476978212594986 }, { "image_id": 624, "category_id": 1.0, "bbox": [ 435.1390838623047, 217.4834442138672, 17.154312133789062, 32.05096435546875 ], "score": 0.1169467493891716 }, { "image_id": 625, "category_id": 1.0, "bbox": [ 463.9082336425781, 211.28652954101562, 20.478973388671875, 45.41162109375 ], "score": 0.6761977672576904 }, { "image_id": 626, "category_id": 1.0, "bbox": [ 523.0858612060547, 214.86865234375, 23.414077758789062, 55.70623779296875 ], "score": 0.9973589181900024 }, { "image_id": 626, "category_id": 1.0, "bbox": [ 96.3180160522461, 218.0413055419922, 23.926258087158203, 49.63356018066406 ], "score": 0.46877071261405945 }, { "image_id": 626, "category_id": 1.0, "bbox": [ 36.851162910461426, 212.031005859375, 22.249975204467773, 49.6072998046875 ], "score": 0.3298918902873993 }, { "image_id": 626, "category_id": 1.0, "bbox": [ 270.51477432250977, 212.90097045898438, 24.67998504638672, 30.585968017578125 ], "score": 0.20972582697868347 }, { "image_id": 627, "category_id": 1.0, "bbox": [ 434.5728302001953, 208.99423217773438, 23.921051025390625, 55.57635498046875 ], "score": 0.3493558168411255 }, { "image_id": 627, "category_id": 1.0, "bbox": [ 271.16199493408203, 203.41864013671875, 19.842262268066406, 31.825775146484375 ], "score": 0.24537453055381775 }, { "image_id": 627, "category_id": 1.0, "bbox": [ 311.25078201293945, 201.8633575439453, 22.611942291259766, 42.44677734375 ], "score": 0.12901724874973297 }, { "image_id": 628, "category_id": 1.0, "bbox": [ 283.33038330078125, 205.05677795410156, 20.85308074951172, 31.29656982421875 ], "score": 0.17170396447181702 }, { "image_id": 628, "category_id": 1.0, "bbox": [ 152.2636604309082, 198.36488342285156, 20.164413452148438, 38.975189208984375 ], "score": 0.12922249734401703 }, { "image_id": 629, "category_id": 1.0, "bbox": [ 139.7315788269043, 201.59628295898438, 19.89360809326172, 35.991302490234375 ], "score": 0.21010449528694153 }, { "image_id": 629, "category_id": 1.0, "bbox": [ 474.5948791503906, 193.47012329101562, 23.205642700195312, 42.022369384765625 ], "score": 0.10937848687171936 }, { "image_id": 630, "category_id": 1.0, "bbox": [ 471.5528869628906, 172.03648376464844, 21.999893188476562, 45.312042236328125 ], "score": 0.22191090881824493 }, { "image_id": 630, "category_id": 1.0, "bbox": [ 547.7858734130859, 162.1681671142578, 21.676864624023438, 50.14715576171875 ], "score": 0.11736592650413513 }, { "image_id": 631, "category_id": 1.0, "bbox": [ 557.8236389160156, 216.21180725097656, 23.295822143554688, 53.35328674316406 ], "score": 0.7548245787620544 }, { "image_id": 631, "category_id": 1.0, "bbox": [ 565.3340148925781, 210.71388244628906, 23.94622802734375, 50.84193420410156 ], "score": 0.34916257858276367 }, { "image_id": 631, "category_id": 1.0, "bbox": [ 96.91697120666504, 213.62338256835938, 21.071510314941406, 41.889251708984375 ], "score": 0.25461143255233765 }, { "image_id": 631, "category_id": 1.0, "bbox": [ 477.0500183105469, 197.1971435546875, 24.865264892578125, 63.16766357421875 ], "score": 0.1023235023021698 }, { "image_id": 632, "category_id": 1.0, "bbox": [ 51.238579750061035, 205.63609313964844, 26.58308982849121, 60.19529724121094 ], "score": 0.5657186508178711 }, { "image_id": 632, "category_id": 1.0, "bbox": [ 497.0482635498047, 177.22122192382812, 47.5384521484375, 110.24392700195312 ], "score": 0.2011299431324005 }, { "image_id": 632, "category_id": 1.0, "bbox": [ 473.23238372802734, 113.78874206542969, 22.8118896484375, 61.8763427734375 ], "score": 0.1448400914669037 }, { "image_id": 635, "category_id": 1.0, "bbox": [ 599.7671890258789, 231.59996032714844, 25.011749267578125, 46.39045715332031 ], "score": 0.24474379420280457 }, { "image_id": 635, "category_id": 1.0, "bbox": [ 474.9595642089844, 201.707763671875, 21.530532836914062, 48.1846923828125 ], "score": 0.11917571723461151 }, { "image_id": 637, "category_id": 1.0, "bbox": [ 407.76927947998047, 204.99441528320312, 18.562164306640625, 35.46697998046875 ], "score": 0.13222524523735046 }, { "image_id": 638, "category_id": 1.0, "bbox": [ 430.36102294921875, 209.14910888671875, 19.871597290039062, 41.8472900390625 ], "score": 0.7153181433677673 }, { "image_id": 638, "category_id": 1.0, "bbox": [ 484.4077682495117, 219.94668579101562, 18.74114990234375, 38.66815185546875 ], "score": 0.13073955476284027 }, { "image_id": 639, "category_id": 1.0, "bbox": [ 473.6769485473633, 208.53887939453125, 22.124862670898438, 54.10443115234375 ], "score": 0.9947084784507751 }, { "image_id": 639, "category_id": 1.0, "bbox": [ 433.4075927734375, 201.91326904296875, 26.459274291992188, 36.47467041015625 ], "score": 0.2629530131816864 }, { "image_id": 640, "category_id": 1.0, "bbox": [ 549.7568511962891, 204.2691650390625, 26.111373901367188, 62.535064697265625 ], "score": 0.9995883703231812 }, { "image_id": 641, "category_id": 1.0, "bbox": [ 559.3370056152344, 200.43661499023438, 23.862228393554688, 56.374664306640625 ], "score": 0.9116383194923401 }, { "image_id": 641, "category_id": 1.0, "bbox": [ 295.2909278869629, 182.9267578125, 24.003372192382812, 45.180694580078125 ], "score": 0.1659603863954544 }, { "image_id": 644, "category_id": 1.0, "bbox": [ 159.9138641357422, 219.7497100830078, 20.747451782226562, 36.125091552734375 ], "score": 0.16801202297210693 }, { "image_id": 645, "category_id": 1.0, "bbox": [ 108.54948043823242, 214.2606658935547, 25.892581939697266, 52.63789367675781 ], "score": 0.7744979858398438 }, { "image_id": 645, "category_id": 1.0, "bbox": [ 54.908905029296875, 208.154052734375, 22.790842056274414, 47.683868408203125 ], "score": 0.306537926197052 }, { "image_id": 645, "category_id": 1.0, "bbox": [ 64.12834644317627, 207.99008178710938, 22.68685817718506, 50.400665283203125 ], "score": 0.19410362839698792 }, { "image_id": 645, "category_id": 1.0, "bbox": [ 40.97308158874512, 210.2510986328125, 23.172893524169922, 47.034454345703125 ], "score": 0.12477011233568192 }, { "image_id": 646, "category_id": 1.0, "bbox": [ 61.32761001586914, 227.0560760498047, 29.979753494262695, 53.03718566894531 ], "score": 0.8377646207809448 }, { "image_id": 646, "category_id": 1.0, "bbox": [ 47.759695053100586, 223.52886962890625, 25.914993286132812, 57.280242919921875 ], "score": 0.6393480896949768 }, { "image_id": 646, "category_id": 1.0, "bbox": [ 36.74251079559326, 220.37930297851562, 26.851930618286133, 56.925048828125 ], "score": 0.5817497372627258 }, { "image_id": 648, "category_id": 1.0, "bbox": [ 427.3414611816406, 206.09738159179688, 21.150970458984375, 42.470611572265625 ], "score": 0.12627537548542023 }, { "image_id": 649, "category_id": 1.0, "bbox": [ 508.55682373046875, 204.8487091064453, 25.606155395507812, 57.08329772949219 ], "score": 0.9918953776359558 }, { "image_id": 652, "category_id": 1.0, "bbox": [ 509.64324951171875, 142.59605407714844, 29.418869018554688, 70.93051147460938 ], "score": 0.10485975444316864 }, { "image_id": 658, "category_id": 1.0, "bbox": [ 390.8584976196289, 79.84698486328125, 26.13983154296875, 61.8189697265625 ], "score": 0.19518713653087616 }, { "image_id": 659, "category_id": 1.0, "bbox": [ 441.6338348388672, 34.33269500732422, 32.40669250488281, 78.13111877441406 ], "score": 0.33106356859207153 }, { "image_id": 666, "category_id": 1.0, "bbox": [ 347.42488861083984, 208.1766815185547, 17.573318481445312, 34.86932373046875 ], "score": 0.1760546863079071 }, { "image_id": 666, "category_id": 1.0, "bbox": [ 363.43204498291016, 209.11737060546875, 16.500167846679688, 34.161346435546875 ], "score": 0.15077678859233856 }, { "image_id": 667, "category_id": 1.0, "bbox": [ 403.956298828125, 212.53713989257812, 20.491714477539062, 50.150299072265625 ], "score": 0.9927229881286621 }, { "image_id": 667, "category_id": 1.0, "bbox": [ 426.77989959716797, 215.2750244140625, 19.232177734375, 45.239227294921875 ], "score": 0.9128425121307373 }, { "image_id": 668, "category_id": 1.0, "bbox": [ 532.0738983154297, 214.7704315185547, 33.354949951171875, 88.41886901855469 ], "score": 0.9991065859794617 }, { "image_id": 668, "category_id": 1.0, "bbox": [ 573.5813140869141, 221.50082397460938, 33.76518249511719, 79.08416748046875 ], "score": 0.9957857131958008 }, { "image_id": 668, "category_id": 1.0, "bbox": [ 561.8424987792969, 219.11526489257812, 27.255020141601562, 79.7276611328125 ], "score": 0.14077118039131165 }, { "image_id": 673, "category_id": 1.0, "bbox": [ 570.0363159179688, 219.4661407470703, 36.150970458984375, 74.86112976074219 ], "score": 0.16224637627601624 }, { "image_id": 673, "category_id": 1.0, "bbox": [ 546.3425064086914, 225.26759338378906, 32.48138427734375, 71.99790954589844 ], "score": 0.1340303272008896 }, { "image_id": 675, "category_id": 1.0, "bbox": [ 565.3542709350586, 165.8292694091797, 45.355072021484375, 115.96806335449219 ], "score": 0.13704554736614227 }, { "image_id": 677, "category_id": 1.0, "bbox": [ 407.38651275634766, 74.77336883544922, 46.702117919921875, 117.6249771118164 ], "score": 0.264239102602005 }, { "image_id": 680, "category_id": 1.0, "bbox": [ 479.94625091552734, 62.75141906738281, 27.291412353515625, 49.39460754394531 ], "score": 0.14568068087100983 }, { "image_id": 681, "category_id": 1.0, "bbox": [ 442.4750518798828, 39.294944763183594, 34.325714111328125, 73.4967041015625 ], "score": 0.1358538269996643 }, { "image_id": 682, "category_id": 1.0, "bbox": [ 394.37721252441406, 212.25448608398438, 22.22991943359375, 53.004119873046875 ], "score": 0.9959059953689575 }, { "image_id": 683, "category_id": 1.0, "bbox": [ 527.0358276367188, 206.84571838378906, 44.09095764160156, 110.52708435058594 ], "score": 0.993066668510437 }, { "image_id": 684, "category_id": 1.0, "bbox": [ 436.7256164550781, 205.19491577148438, 17.755889892578125, 40.9530029296875 ], "score": 0.2626240849494934 }, { "image_id": 685, "category_id": 1.0, "bbox": [ 538.7807464599609, 207.82264709472656, 28.816070556640625, 70.06083679199219 ], "score": 0.9996259212493896 }, { "image_id": 685, "category_id": 1.0, "bbox": [ 570.0374603271484, 205.52642822265625, 22.666091918945312, 57.39764404296875 ], "score": 0.9961630702018738 }, { "image_id": 685, "category_id": 1.0, "bbox": [ 557.9579162597656, 208.57864379882812, 27.980499267578125, 63.285003662109375 ], "score": 0.1023661270737648 }, { "image_id": 688, "category_id": 1.0, "bbox": [ 599.1248321533203, 209.4586639404297, 20.86456298828125, 47.47135925292969 ], "score": 0.36435893177986145 }, { "image_id": 688, "category_id": 1.0, "bbox": [ 587.0006942749023, 207.77325439453125, 18.827896118164062, 45.8653564453125 ], "score": 0.16530770063400269 }, { "image_id": 689, "category_id": 1.0, "bbox": [ 436.4669418334961, 223.05189514160156, 31.117782592773438, 71.38578796386719 ], "score": 0.10216245800256729 }, { "image_id": 692, "category_id": 1.0, "bbox": [ 591.8796157836914, 209.74261474609375, 21.188812255859375, 40.367828369140625 ], "score": 0.14553861320018768 }, { "image_id": 694, "category_id": 1.0, "bbox": [ 552.6641464233398, 217.7995147705078, 21.392822265625, 48.84718322753906 ], "score": 0.3861408829689026 }, { "image_id": 694, "category_id": 1.0, "bbox": [ 609.0899276733398, 210.32769775390625, 20.702285766601562, 56.391876220703125 ], "score": 0.17779219150543213 }, { "image_id": 694, "category_id": 1.0, "bbox": [ 477.62908935546875, 215.72767639160156, 16.754302978515625, 37.536102294921875 ], "score": 0.167453795671463 }, { "image_id": 694, "category_id": 1.0, "bbox": [ 534.5575332641602, 215.46421813964844, 67.6141357421875, 58.01719665527344 ], "score": 0.11963233351707458 }, { "image_id": 695, "category_id": 1.0, "bbox": [ 560.5721282958984, 215.84788513183594, 20.987396240234375, 49.16514587402344 ], "score": 0.9187772274017334 }, { "image_id": 695, "category_id": 1.0, "bbox": [ 548.2275772094727, 216.1473388671875, 20.584030151367188, 41.615081787109375 ], "score": 0.12995678186416626 }, { "image_id": 699, "category_id": 1.0, "bbox": [ 450.12073516845703, 191.03366088867188, 19.11041259765625, 41.777374267578125 ], "score": 0.10660228133201599 }, { "image_id": 707, "category_id": 1.0, "bbox": [ 471.9533920288086, 211.47084045410156, 20.42724609375, 41.564788818359375 ], "score": 0.11442869901657104 }, { "image_id": 707, "category_id": 1.0, "bbox": [ 504.1887664794922, 218.47361755371094, 19.238052368164062, 41.75263977050781 ], "score": 0.1114945262670517 }, { "image_id": 708, "category_id": 1.0, "bbox": [ 609.4968032836914, 222.07411193847656, 23.68194580078125, 56.81330871582031 ], "score": 0.9615970253944397 }, { "image_id": 708, "category_id": 1.0, "bbox": [ 571.3454818725586, 222.39723205566406, 22.631607055664062, 50.97996520996094 ], "score": 0.8370040655136108 }, { "image_id": 708, "category_id": 1.0, "bbox": [ 517.1961975097656, 203.27670288085938, 26.619415283203125, 51.1932373046875 ], "score": 0.7596766948699951 }, { "image_id": 708, "category_id": 1.0, "bbox": [ 576.139030456543, 210.4404296875, 53.37257385253906, 65.4423828125 ], "score": 0.11760878562927246 }, { "image_id": 708, "category_id": 1.0, "bbox": [ 503.58692169189453, 219.37258911132812, 86.05079650878906, 44.53265380859375 ], "score": 0.10122203081846237 }, { "image_id": 709, "category_id": 1.0, "bbox": [ 597.6096343994141, 203.76856994628906, 27.93548583984375, 60.60877990722656 ], "score": 0.9749970436096191 }, { "image_id": 709, "category_id": 1.0, "bbox": [ 462.73193359375, 212.91366577148438, 19.303817749023438, 39.1982421875 ], "score": 0.11961830407381058 }, { "image_id": 710, "category_id": 1.0, "bbox": [ 542.6619338989258, 216.5240020751953, 20.319061279296875, 47.11497497558594 ], "score": 0.7522026300430298 }, { "image_id": 710, "category_id": 1.0, "bbox": [ 204.52106475830078, 207.93946838378906, 26.162071228027344, 66.80464172363281 ], "score": 0.28608226776123047 }, { "image_id": 710, "category_id": 1.0, "bbox": [ 589.476203918457, 200.51161193847656, 19.965133666992188, 42.927764892578125 ], "score": 0.16984495520591736 }, { "image_id": 712, "category_id": 1.0, "bbox": [ 533.6598968505859, 209.67684936523438, 20.42327880859375, 51.70196533203125 ], "score": 0.9850986003875732 }, { "image_id": 714, "category_id": 1.0, "bbox": [ 351.2879180908203, 183.61013793945312, 22.737884521484375, 43.011688232421875 ], "score": 0.3685285747051239 }, { "image_id": 715, "category_id": 1.0, "bbox": [ 379.0078353881836, 197.10816955566406, 23.097457885742188, 42.82672119140625 ], "score": 0.5353920459747314 }, { "image_id": 715, "category_id": 1.0, "bbox": [ 369.7620391845703, 169.66287231445312, 29.648590087890625, 69.99166870117188 ], "score": 0.12037494778633118 }, { "image_id": 716, "category_id": 1.0, "bbox": [ 416.9642639160156, 204.98439025878906, 18.147735595703125, 34.58807373046875 ], "score": 0.1435416042804718 }, { "image_id": 717, "category_id": 1.0, "bbox": [ 404.9349594116211, 211.42495727539062, 20.031204223632812, 38.705322265625 ], "score": 0.22021372616291046 }, { "image_id": 718, "category_id": 1.0, "bbox": [ 386.60778045654297, 203.58399963378906, 20.967025756835938, 45.502166748046875 ], "score": 0.5946618914604187 }, { "image_id": 719, "category_id": 1.0, "bbox": [ 404.44461822509766, 205.71250915527344, 21.966323852539062, 49.343109130859375 ], "score": 0.7275289297103882 }, { "image_id": 720, "category_id": 1.0, "bbox": [ 449.58866119384766, 211.30726623535156, 31.535110473632812, 69.78135681152344 ], "score": 0.9915710687637329 }, { "image_id": 720, "category_id": 1.0, "bbox": [ 380.33878326416016, 213.04592895507812, 20.443344116210938, 36.3785400390625 ], "score": 0.11649081110954285 }, { "image_id": 723, "category_id": 1.0, "bbox": [ 398.9637756347656, 212.62936401367188, 21.560440063476562, 46.833770751953125 ], "score": 0.6904374361038208 }, { "image_id": 723, "category_id": 1.0, "bbox": [ 385.2663803100586, 212.9398193359375, 21.489715576171875, 46.592529296875 ], "score": 0.42632395029067993 }, { "image_id": 724, "category_id": 1.0, "bbox": [ 486.60736083984375, 211.0543975830078, 32.57049560546875, 86.80650329589844 ], "score": 0.9978786110877991 }, { "image_id": 724, "category_id": 1.0, "bbox": [ 461.2812042236328, 219.54611206054688, 27.175445556640625, 72.2593994140625 ], "score": 0.9744832515716553 }, { "image_id": 726, "category_id": 1.0, "bbox": [ 385.8207702636719, 196.1243896484375, 20.447921752929688, 43.019195556640625 ], "score": 0.18259930610656738 }, { "image_id": 727, "category_id": 1.0, "bbox": [ 543.4326934814453, 209.85272216796875, 43.16719055175781, 103.09429931640625 ], "score": 0.9050403833389282 }, { "image_id": 727, "category_id": 1.0, "bbox": [ 383.0905532836914, 212.46969604492188, 17.483978271484375, 38.3382568359375 ], "score": 0.12745808064937592 }, { "image_id": 728, "category_id": 1.0, "bbox": [ 403.1480407714844, 208.42698669433594, 19.963226318359375, 48.54167175292969 ], "score": 0.7399313449859619 }, { "image_id": 729, "category_id": 1.0, "bbox": [ 443.1481170654297, 215.6268310546875, 23.616485595703125, 58.815093994140625 ], "score": 0.9978597164154053 }, { "image_id": 729, "category_id": 1.0, "bbox": [ 406.86168670654297, 219.1853790283203, 22.263259887695312, 44.03901672363281 ], "score": 0.5702483654022217 }, { "image_id": 729, "category_id": 1.0, "bbox": [ 389.65553283691406, 214.00144958496094, 19.505996704101562, 45.60282897949219 ], "score": 0.3965758681297302 }, { "image_id": 729, "category_id": 1.0, "bbox": [ 371.85142517089844, 215.9709014892578, 20.413665771484375, 45.60054016113281 ], "score": 0.13499167561531067 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 525.9367752075195, 214.61380004882812, 34.0008544921875, 89.9263916015625 ], "score": 0.9991627931594849 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 463.6476135253906, 219.7519073486328, 25.455169677734375, 61.20768737792969 ], "score": 0.9983258247375488 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 438.28685760498047, 212.69361877441406, 27.2235107421875, 62.30390930175781 ], "score": 0.9954487085342407 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 417.5127410888672, 219.2229766845703, 20.9222412109375, 49.93589782714844 ], "score": 0.4713084101676941 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 410.06629943847656, 218.6072540283203, 20.268402099609375, 46.54096984863281 ], "score": 0.2486303150653839 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 152.48278617858887, 214.16925048828125, 29.189481735229492, 79.92938232421875 ], "score": 0.12859806418418884 }, { "image_id": 730, "category_id": 1.0, "bbox": [ 409.47174072265625, 211.28390502929688, 58.07464599609375, 69.07901000976562 ], "score": 0.12389162182807922 }, { "image_id": 731, "category_id": 1.0, "bbox": [ 567.9899597167969, 210.11695861816406, 38.342742919921875, 109.22404479980469 ], "score": 0.9983737468719482 }, { "image_id": 731, "category_id": 1.0, "bbox": [ 528.0497360229492, 205.36276245117188, 35.037994384765625, 102.266357421875 ], "score": 0.9967467784881592 }, { "image_id": 731, "category_id": 1.0, "bbox": [ 485.25543212890625, 215.4991912841797, 34.098968505859375, 81.89521789550781 ], "score": 0.9927053451538086 }, { "image_id": 731, "category_id": 1.0, "bbox": [ 510.5474090576172, 218.0525665283203, 24.57763671875, 83.14356994628906 ], "score": 0.7641514539718628 }, { "image_id": 731, "category_id": 1.0, "bbox": [ 519.5922088623047, 216.7158660888672, 27.562103271484375, 87.39384460449219 ], "score": 0.24167373776435852 }, { "image_id": 734, "category_id": 1.0, "bbox": [ 461.0784912109375, 112.10369873046875, 42.11997985839844, 102.72055053710938 ], "score": 0.1934555172920227 }, { "image_id": 741, "category_id": 1.0, "bbox": [ 396.30096435546875, 174.30067443847656, 25.710296630859375, 56.06744384765625 ], "score": 0.12768365442752838 }, { "image_id": 742, "category_id": 1.0, "bbox": [ 39.22331094741821, 200.12709045410156, 23.97847890853882, 51.61712646484375 ], "score": 0.1521061360836029 }, { "image_id": 743, "category_id": 1.0, "bbox": [ 487.6547622680664, -12.383064270019531, 84.93125915527344, 266.4958267211914 ], "score": 0.1118333637714386 }, { "image_id": 744, "category_id": 1.0, "bbox": [ 404.9961853027344, 195.39540100097656, 20.063323974609375, 46.288421630859375 ], "score": 0.16243703663349152 }, { "image_id": 745, "category_id": 1.0, "bbox": [ 386.6027069091797, 197.40753173828125, 21.0833740234375, 46.444244384765625 ], "score": 0.2805146276950836 }, { "image_id": 746, "category_id": 1.0, "bbox": [ 384.60704803466797, 198.23733520507812, 18.165817260742188, 44.809814453125 ], "score": 0.19108137488365173 }, { "image_id": 746, "category_id": 1.0, "bbox": [ 424.8015594482422, 206.01283264160156, 22.427902221679688, 31.70697021484375 ], "score": 0.1440429389476776 }, { "image_id": 747, "category_id": 1.0, "bbox": [ 457.7366638183594, 205.30441284179688, 21.318435668945312, 42.12261962890625 ], "score": 0.7981327176094055 }, { "image_id": 747, "category_id": 1.0, "bbox": [ 395.23990631103516, 199.2227020263672, 22.90130615234375, 39.376068115234375 ], "score": 0.23949234187602997 }, { "image_id": 747, "category_id": 1.0, "bbox": [ 432.89520263671875, 201.7480010986328, 24.000396728515625, 33.72955322265625 ], "score": 0.13181528449058533 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 507.17945098876953, 207.7554931640625, 23.035507202148438, 52.757049560546875 ], "score": 0.977081298828125 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 544.5638656616211, 203.5401153564453, 21.08978271484375, 49.206390380859375 ], "score": 0.621030867099762 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 450.2694320678711, 202.13809204101562, 22.602920532226562, 34.523223876953125 ], "score": 0.2198699414730072 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 424.33460235595703, 210.87741088867188, 24.725112915039062, 28.399169921875 ], "score": 0.21629822254180908 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 435.36144256591797, 207.00746154785156, 26.728897094726562, 29.092559814453125 ], "score": 0.17766664922237396 }, { "image_id": 748, "category_id": 1.0, "bbox": [ 528.5850524902344, 198.28756713867188, 20.167617797851562, 51.158172607421875 ], "score": 0.10972442477941513 }, { "image_id": 749, "category_id": 1.0, "bbox": [ 456.2224578857422, 216.28656005859375, 24.012680053710938, 59.479522705078125 ], "score": 0.9995226860046387 }, { "image_id": 749, "category_id": 1.0, "bbox": [ 613.145637512207, 222.41360473632812, 27.500267028808594, 74.65771484375 ], "score": 0.9155560731887817 }, { "image_id": 749, "category_id": 1.0, "bbox": [ 603.4613418579102, 220.20468139648438, 25.192031860351562, 76.40411376953125 ], "score": 0.40247222781181335 }, { "image_id": 749, "category_id": 1.0, "bbox": [ 593.5589599609375, 222.41461181640625, 22.708511352539062, 55.638031005859375 ], "score": 0.37658560276031494 }, { "image_id": 749, "category_id": 1.0, "bbox": [ 474.7381591796875, 215.21493530273438, 20.190353393554688, 45.808319091796875 ], "score": 0.17823028564453125 }, { "image_id": 750, "category_id": 1.0, "bbox": [ 538.2308959960938, 205.5461883544922, 33.41880798339844, 93.80470275878906 ], "score": 0.995966911315918 }, { "image_id": 750, "category_id": 1.0, "bbox": [ 513.5854721069336, 204.66140747070312, 20.853042602539062, 44.196807861328125 ], "score": 0.7339011430740356 }, { "image_id": 750, "category_id": 1.0, "bbox": [ 487.2799301147461, 204.76571655273438, 25.364303588867188, 45.686370849609375 ], "score": 0.35177791118621826 }, { "image_id": 750, "category_id": 1.0, "bbox": [ 519.3050003051758, 209.74717712402344, 21.685333251953125, 50.17152404785156 ], "score": 0.17615438997745514 }, { "image_id": 751, "category_id": 1.0, "bbox": [ 540.2020645141602, 191.48683166503906, 26.515731811523438, 52.323272705078125 ], "score": 0.9985352158546448 }, { "image_id": 751, "category_id": 1.0, "bbox": [ 570.0418853759766, 193.60208129882812, 21.357955932617188, 52.61065673828125 ], "score": 0.9982161521911621 }, { "image_id": 751, "category_id": 1.0, "bbox": [ 493.8148880004883, 206.8763885498047, 40.86067199707031, 125.28352355957031 ], "score": 0.39047926664352417 }, { "image_id": 751, "category_id": 1.0, "bbox": [ 552.2246932983398, 197.05018615722656, 23.871307373046875, 44.6707763671875 ], "score": 0.10339301824569702 }, { "image_id": 752, "category_id": 1.0, "bbox": [ 603.1989288330078, 237.74667358398438, 31.003189086914062, 104.81103515625 ], "score": 0.32903462648391724 }, { "image_id": 752, "category_id": 1.0, "bbox": [ 587.1045684814453, 222.8907470703125, 38.09562683105469, 123.2584228515625 ], "score": 0.11383968591690063 }, { "image_id": 754, "category_id": 1.0, "bbox": [ 441.0846710205078, 202.95407104492188, 20.67108154296875, 47.472808837890625 ], "score": 0.7815256118774414 }, { "image_id": 755, "category_id": 1.0, "bbox": [ 516.9520950317383, 197.32464599609375, 20.323257446289062, 56.797088623046875 ], "score": 0.8877065181732178 }, { "image_id": 755, "category_id": 1.0, "bbox": [ 477.8523254394531, 198.4994354248047, 21.639480590820312, 44.915740966796875 ], "score": 0.7380452156066895 }, { "image_id": 755, "category_id": 1.0, "bbox": [ 507.9512023925781, 197.89913940429688, 19.692153930664062, 61.29718017578125 ], "score": 0.22283408045768738 }, { "image_id": 755, "category_id": 1.0, "bbox": [ 484.38167572021484, 188.8416290283203, 43.98811340332031, 101.57600402832031 ], "score": 0.18695007264614105 }, { "image_id": 756, "category_id": 1.0, "bbox": [ 593.7612533569336, 204.0879364013672, 20.491867065429688, 45.798675537109375 ], "score": 0.970802903175354 }, { "image_id": 756, "category_id": 1.0, "bbox": [ 552.5620651245117, 209.04922485351562, 22.221832275390625, 46.465301513671875 ], "score": 0.8899964094161987 }, { "image_id": 756, "category_id": 1.0, "bbox": [ 576.4086151123047, 205.4022216796875, 19.983673095703125, 47.895050048828125 ], "score": 0.7944031953811646 }, { "image_id": 756, "category_id": 1.0, "bbox": [ 471.5598678588867, 207.70745849609375, 22.800369262695312, 46.990234375 ], "score": 0.21158897876739502 }, { "image_id": 766, "category_id": 1.0, "bbox": [ 427.3258590698242, 212.18453979492188, 19.532394409179688, 36.354278564453125 ], "score": 0.18851879239082336 }, { "image_id": 767, "category_id": 1.0, "bbox": [ 449.7270965576172, 204.08802795410156, 18.667526245117188, 39.856689453125 ], "score": 0.3937685489654541 }, { "image_id": 768, "category_id": 1.0, "bbox": [ 486.8929672241211, 207.7842559814453, 19.752960205078125, 48.48225402832031 ], "score": 0.8700284957885742 }, { "image_id": 768, "category_id": 1.0, "bbox": [ 452.5355529785156, 208.31649780273438, 21.3323974609375, 40.585296630859375 ], "score": 0.11252215504646301 }, { "image_id": 769, "category_id": 1.0, "bbox": [ 519.093132019043, 203.32275390625, 22.798843383789062, 56.204498291015625 ], "score": 0.996678352355957 }, { "image_id": 769, "category_id": 1.0, "bbox": [ 462.8322219848633, 209.5437774658203, 19.363861083984375, 37.649688720703125 ], "score": 0.10402096807956696 }, { "image_id": 770, "category_id": 1.0, "bbox": [ 562.3684692382812, 206.29283142089844, 25.146102905273438, 67.90950012207031 ], "score": 0.9985677003860474 }, { "image_id": 770, "category_id": 1.0, "bbox": [ 470.50079345703125, 210.4602508544922, 20.031814575195312, 39.548858642578125 ], "score": 0.21103660762310028 }, { "image_id": 771, "category_id": 1.0, "bbox": [ 474.17675018310547, 203.85400390625, 20.542984008789062, 41.993560791015625 ], "score": 0.288594126701355 }, { "image_id": 773, "category_id": 1.0, "bbox": [ 472.1364974975586, 209.63865661621094, 17.440719604492188, 40.413909912109375 ], "score": 0.13078883290290833 }, { "image_id": 774, "category_id": 1.0, "bbox": [ 464.0807342529297, 207.3018798828125, 17.943954467773438, 44.50360107421875 ], "score": 0.11513108015060425 }, { "image_id": 775, "category_id": 1.0, "bbox": [ 535.0346755981445, 189.0448760986328, 68.61740112304688, 42.416290283203125 ], "score": 0.14270734786987305 }, { "image_id": 776, "category_id": 1.0, "bbox": [ 501.1519241333008, 301.23773193359375, 33.90228271484375, 91.100830078125 ], "score": 0.10285040736198425 }, { "image_id": 782, "category_id": 1.0, "bbox": [ 532.9288864135742, 181.9429473876953, 67.69912719726562, 52.180328369140625 ], "score": 0.10883881896734238 }, { "image_id": 784, "category_id": 1.0, "bbox": [ 420.9732437133789, 222.53582763671875, 31.166610717773438, 69.16363525390625 ], "score": 0.3968825042247772 }, { "image_id": 784, "category_id": 1.0, "bbox": [ 537.1444320678711, 187.2726287841797, 65.24894714355469, 43.9737548828125 ], "score": 0.10923464596271515 }, { "image_id": 788, "category_id": 1.0, "bbox": [ 534.2329025268555, 189.29440307617188, 75.08041381835938, 42.784759521484375 ], "score": 0.11269386112689972 }, { "image_id": 795, "category_id": 1.0, "bbox": [ 536.3183975219727, 187.0164031982422, 69.92835998535156, 46.27203369140625 ], "score": 0.10201511532068253 }, { "image_id": 797, "category_id": 1.0, "bbox": [ 315.4539108276367, 213.5094451904297, 15.80535888671875, 34.40911865234375 ], "score": 0.11151957511901855 }, { "image_id": 799, "category_id": 1.0, "bbox": [ 315.6787872314453, 213.27467346191406, 16.198806762695312, 35.346832275390625 ], "score": 0.11382956802845001 }, { "image_id": 802, "category_id": 1.0, "bbox": [ 315.1746368408203, 214.2755126953125, 18.131332397460938, 37.146820068359375 ], "score": 0.11742562055587769 }, { "image_id": 805, "category_id": 1.0, "bbox": [ 536.3954162597656, 187.88375854492188, 69.72503662109375, 44.289703369140625 ], "score": 0.11024868488311768 }, { "image_id": 808, "category_id": 1.0, "bbox": [ 540.0726318359375, 184.0004425048828, 66.31538391113281, 46.980560302734375 ], "score": 0.11578679084777832 }, { "image_id": 810, "category_id": 1.0, "bbox": [ 536.277961730957, 183.74554443359375, 70.94635009765625, 45.84600830078125 ], "score": 0.11056564748287201 }, { "image_id": 826, "category_id": 1.0, "bbox": [ 203.8946533203125, 299.5462341308594, 45.819091796875, 125.804931640625 ], "score": 0.13989463448524475 }, { "image_id": 827, "category_id": 1.0, "bbox": [ 550.6080627441406, 212.9149169921875, 20.96405029296875, 52.166351318359375 ], "score": 0.7597262859344482 }, { "image_id": 827, "category_id": 1.0, "bbox": [ 212.1480941772461, 286.27398681640625, 47.02766418457031, 118.22747802734375 ], "score": 0.11748750507831573 }, { "image_id": 828, "category_id": 1.0, "bbox": [ 48.632941246032715, 251.7947540283203, 24.440536499023438, 47.93888854980469 ], "score": 0.33979517221450806 }, { "image_id": 828, "category_id": 1.0, "bbox": [ 488.58264923095703, 215.93971252441406, 22.675704956054688, 37.8656005859375 ], "score": 0.2978641390800476 }, { "image_id": 829, "category_id": 1.0, "bbox": [ 472.9882049560547, 218.85244750976562, 20.318603515625, 38.695465087890625 ], "score": 0.19088496267795563 }, { "image_id": 830, "category_id": 1.0, "bbox": [ 472.8369140625, 213.34445190429688, 14.918289184570312, 37.49066162109375 ], "score": 0.2184528112411499 }, { "image_id": 832, "category_id": 1.0, "bbox": [ 74.95086669921875, 225.0198211669922, 35.07108688354492, 73.11189270019531 ], "score": 0.20554348826408386 }, { "image_id": 832, "category_id": 1.0, "bbox": [ 446.4734649658203, 189.5179443359375, 21.764068603515625, 53.349578857421875 ], "score": 0.15641842782497406 }, { "image_id": 833, "category_id": 1.0, "bbox": [ 492.3968505859375, 205.97654724121094, 22.655029296875, 41.065704345703125 ], "score": 0.35044336318969727 }, { "image_id": 834, "category_id": 1.0, "bbox": [ 513.9038467407227, 196.38168334960938, 21.575469970703125, 55.965087890625 ], "score": 0.28628337383270264 }, { "image_id": 834, "category_id": 1.0, "bbox": [ 219.28808212280273, 216.4778594970703, 19.927444458007812, 51.05509948730469 ], "score": 0.1976514458656311 }, { "image_id": 835, "category_id": 1.0, "bbox": [ 497.09014892578125, 196.0845184326172, 20.102081298828125, 54.023651123046875 ], "score": 0.5086495876312256 }, { "image_id": 836, "category_id": 1.0, "bbox": [ 545.6119155883789, 198.30712890625, 19.558868408203125, 43.883697509765625 ], "score": 0.6314935684204102 }, { "image_id": 836, "category_id": 1.0, "bbox": [ 562.1273422241211, 201.94407653808594, 19.451522827148438, 44.78857421875 ], "score": 0.38384443521499634 }, { "image_id": 837, "category_id": 1.0, "bbox": [ 493.5628890991211, 190.8863525390625, 45.70892333984375, 89.21597290039062 ], "score": 0.17753823101520538 }, { "image_id": 840, "category_id": 1.0, "bbox": [ 550.5176544189453, 224.79299926757812, 22.201461791992188, 49.0302734375 ], "score": 0.7004568576812744 }, { "image_id": 848, "category_id": 1.0, "bbox": [ 481.5419387817383, 215.58006286621094, 20.613327026367188, 47.62153625488281 ], "score": 0.9572244882583618 }, { "image_id": 849, "category_id": 1.0, "bbox": [ 572.7391052246094, 217.8965301513672, 20.504379272460938, 41.39091491699219 ], "score": 0.4572843313217163 }, { "image_id": 851, "category_id": 1.0, "bbox": [ 436.89403533935547, 219.18157958984375, 22.38433837890625, 45.54461669921875 ], "score": 0.9716201424598694 }, { "image_id": 851, "category_id": 1.0, "bbox": [ 566.54296875, 210.58587646484375, 21.768341064453125, 49.838775634765625 ], "score": 0.970677375793457 }, { "image_id": 851, "category_id": 1.0, "bbox": [ 590.6340408325195, 210.8136444091797, 26.646347045898438, 54.59944152832031 ], "score": 0.5267637372016907 }, { "image_id": 851, "category_id": 1.0, "bbox": [ 580.4409790039062, 211.9890899658203, 26.265106201171875, 50.12290954589844 ], "score": 0.12036699056625366 }, { "image_id": 852, "category_id": 1.0, "bbox": [ 461.35154724121094, 227.7409210205078, 28.367080688476562, 58.22459411621094 ], "score": 0.9604774713516235 }, { "image_id": 853, "category_id": 1.0, "bbox": [ 539.9553298950195, 229.69525146484375, 33.4619140625, 79.96710205078125 ], "score": 0.362684428691864 }, { "image_id": 853, "category_id": 1.0, "bbox": [ 315.9680366516113, 204.10679626464844, 22.366886138916016, 54.30046081542969 ], "score": 0.1222945973277092 }, { "image_id": 861, "category_id": 1.0, "bbox": [ 496.7423629760742, 219.72251892089844, 20.551681518554688, 45.50529479980469 ], "score": 0.9149708151817322 }, { "image_id": 861, "category_id": 1.0, "bbox": [ 417.27630615234375, 217.59866333007812, 18.515167236328125, 46.794677734375 ], "score": 0.43005186319351196 }, { "image_id": 861, "category_id": 1.0, "bbox": [ 351.45999908447266, 197.73040771484375, 21.82098388671875, 44.733612060546875 ], "score": 0.10737627744674683 }, { "image_id": 862, "category_id": 1.0, "bbox": [ 466.80606842041016, 206.14576721191406, 24.883956909179688, 67.57743835449219 ], "score": 0.9960429668426514 }, { "image_id": 862, "category_id": 1.0, "bbox": [ 589.5554351806641, 212.00802612304688, 26.129837036132812, 63.48846435546875 ], "score": 0.9924129843711853 }, { "image_id": 862, "category_id": 1.0, "bbox": [ 599.4341659545898, 209.79783630371094, 29.726104736328125, 67.60322570800781 ], "score": 0.14211493730545044 }, { "image_id": 863, "category_id": 1.0, "bbox": [ 584.030647277832, 211.43284606933594, 40.05744934082031, 116.45826721191406 ], "score": 0.9913043975830078 }, { "image_id": 864, "category_id": 1.0, "bbox": [ 366.96666717529297, 220.1573944091797, 36.57386779785156, 122.55970764160156 ], "score": 0.10177834331989288 }, { "image_id": 866, "category_id": 1.0, "bbox": [ 511.4597702026367, 289.4465026855469, 93.66989135742188, 271.9132385253906 ], "score": 0.14880876243114471 }, { "image_id": 867, "category_id": 1.0, "bbox": [ 488.79337310791016, 224.53919982910156, 20.1690673828125, 53.23185729980469 ], "score": 0.20009127259254456 }, { "image_id": 867, "category_id": 1.0, "bbox": [ 461.9740676879883, 222.12826538085938, 18.208847045898438, 43.566131591796875 ], "score": 0.18620236217975616 }, { "image_id": 867, "category_id": 1.0, "bbox": [ 574.1923141479492, 261.85125732421875, 25.375823974609375, 55.70849609375 ], "score": 0.1496615707874298 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 531.3214111328125, 222.20472717285156, 18.695068359375, 57.49769592285156 ], "score": 0.9122697710990906 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 522.7399826049805, 223.75074768066406, 18.198013305664062, 53.88655090332031 ], "score": 0.7713761329650879 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 395.02471923828125, 227.26995849609375, 18.200225830078125, 38.720855712890625 ], "score": 0.2320227324962616 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 427.44895935058594, 210.36264038085938, 19.505996704101562, 56.241363525390625 ], "score": 0.23042699694633484 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 583.8136672973633, 234.7484588623047, 36.26335144042969, 77.87284851074219 ], "score": 0.14211635291576385 }, { "image_id": 868, "category_id": 1.0, "bbox": [ 510.11756896972656, 219.6826629638672, 17.9058837890625, 50.42100524902344 ], "score": 0.12206265330314636 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 435.53016662597656, 230.4713134765625, 21.060791015625, 52.19036865234375 ], "score": 0.9970027804374695 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 586.4140701293945, 224.01039123535156, 21.75537109375, 55.03361511230469 ], "score": 0.948792040348053 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 476.41632080078125, 206.91810607910156, 33.909912109375, 100.57310485839844 ], "score": 0.5365325212478638 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 409.03148651123047, 238.62680053710938, 23.321304321289062, 45.03509521484375 ], "score": 0.47956398129463196 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 474.49989318847656, 204.30752563476562, 22.652130126953125, 68.02777099609375 ], "score": 0.16084234416484833 }, { "image_id": 869, "category_id": 1.0, "bbox": [ 515.3684997558594, 141.86087036132812, 38.26454162597656, 128.69549560546875 ], "score": 0.10549870133399963 }, { "image_id": 870, "category_id": 1.0, "bbox": [ 537.3912811279297, 229.13546752929688, 33.497467041015625, 96.88336181640625 ], "score": 0.9959168434143066 }, { "image_id": 870, "category_id": 1.0, "bbox": [ 486.0116195678711, 253.4158935546875, 25.45379638671875, 59.81329345703125 ], "score": 0.9577276706695557 }, { "image_id": 870, "category_id": 1.0, "bbox": [ 537.5915908813477, 213.33042907714844, 22.555313110351562, 57.86079406738281 ], "score": 0.11062424629926682 }, { "image_id": 871, "category_id": 1.0, "bbox": [ 515.0098419189453, 207.8145751953125, 19.160232543945312, 44.384429931640625 ], "score": 0.3864571452140808 }, { "image_id": 874, "category_id": 1.0, "bbox": [ 448.5422897338867, 274.605712890625, 38.75518798828125, 118.8233642578125 ], "score": 0.18919232487678528 }, { "image_id": 876, "category_id": 1.0, "bbox": [ 445.8906555175781, 184.12928771972656, 23.099746704101562, 61.68524169921875 ], "score": 0.2530713975429535 }, { "image_id": 880, "category_id": 1.0, "bbox": [ 369.1017532348633, 222.0603485107422, 20.436477661132812, 36.62959289550781 ], "score": 0.11612730473279953 }, { "image_id": 881, "category_id": 1.0, "bbox": [ 513.286018371582, 144.1776580810547, 21.51702880859375, 59.12371826171875 ], "score": 0.166499525308609 }, { "image_id": 881, "category_id": 1.0, "bbox": [ 387.0001983642578, 200.6697235107422, 25.601654052734375, 56.15705871582031 ], "score": 0.13858528435230255 }, { "image_id": 882, "category_id": 1.0, "bbox": [ 431.2815856933594, 203.24302673339844, 34.72930908203125, 37.0872802734375 ], "score": 0.5117897987365723 }, { "image_id": 882, "category_id": 1.0, "bbox": [ 449.3992233276367, 202.41087341308594, 22.704315185546875, 38.038116455078125 ], "score": 0.29836657643318176 }, { "image_id": 883, "category_id": 1.0, "bbox": [ 505.42118072509766, 210.06507873535156, 20.631637573242188, 49.58244323730469 ], "score": 0.9851283431053162 }, { "image_id": 883, "category_id": 1.0, "bbox": [ 541.1305999755859, 215.03945922851562, 20.033645629882812, 44.477783203125 ], "score": 0.966570258140564 }, { "image_id": 883, "category_id": 1.0, "bbox": [ 523.0431747436523, 214.0843963623047, 20.580368041992188, 46.29219055175781 ], "score": 0.9452265501022339 }, { "image_id": 889, "category_id": 1.0, "bbox": [ 537.0018768310547, 204.99749755859375, 21.366195678710938, 46.27618408203125 ], "score": 0.838154673576355 }, { "image_id": 890, "category_id": 1.0, "bbox": [ 458.8508987426758, 207.5030059814453, 24.257888793945312, 39.0289306640625 ], "score": 0.1504923701286316 }, { "image_id": 890, "category_id": 1.0, "bbox": [ 580.5361175537109, 183.39974975585938, 41.912078857421875, 99.0643310546875 ], "score": 0.11864984035491943 }, { "image_id": 891, "category_id": 1.0, "bbox": [ 529.4193649291992, 211.06768798828125, 20.971755981445312, 41.14898681640625 ], "score": 0.5034967064857483 }, { "image_id": 893, "category_id": 1.0, "bbox": [ 448.9409637451172, 213.037109375, 21.033096313476562, 49.519989013671875 ], "score": 0.9973428249359131 }, { "image_id": 894, "category_id": 1.0, "bbox": [ 593.8385009765625, 214.0598907470703, 34.825439453125, 99.96250915527344 ], "score": 0.9834029674530029 }, { "image_id": 894, "category_id": 1.0, "bbox": [ 408.8671112060547, 211.36697387695312, 21.03363037109375, 36.12420654296875 ], "score": 0.17919141054153442 }, { "image_id": 895, "category_id": 1.0, "bbox": [ 458.10577392578125, 219.39248657226562, 19.63897705078125, 50.058624267578125 ], "score": 0.9863819479942322 }, { "image_id": 895, "category_id": 1.0, "bbox": [ 434.0283966064453, 223.8551788330078, 20.034561157226562, 47.64280700683594 ], "score": 0.5521669983863831 }, { "image_id": 895, "category_id": 1.0, "bbox": [ 451.05472564697266, 138.8688507080078, 33.86878967285156, 94.58505249023438 ], "score": 0.10273236036300659 }, { "image_id": 896, "category_id": 1.0, "bbox": [ 493.4153747558594, 210.6297149658203, 27.844772338867188, 75.39793395996094 ], "score": 0.7991222143173218 }, { "image_id": 896, "category_id": 1.0, "bbox": [ 528.8715362548828, 217.60183715820312, 30.891494750976562, 70.11279296875 ], "score": 0.6931442022323608 }, { "image_id": 896, "category_id": 1.0, "bbox": [ 579.7500228881836, 259.0262756347656, 16.839218139648438, 38.08795166015625 ], "score": 0.15969909727573395 }, { "image_id": 897, "category_id": 1.0, "bbox": [ 530.3403472900391, 192.90560913085938, 29.418411254882812, 64.6971435546875 ], "score": 0.912794828414917 }, { "image_id": 897, "category_id": 1.0, "bbox": [ 497.0887756347656, 172.64476013183594, 37.65007019042969, 98.59928894042969 ], "score": 0.1264190971851349 }, { "image_id": 898, "category_id": 1.0, "bbox": [ 605.1125717163086, 197.3436279296875, 28.006515502929688, 82.19009399414062 ], "score": 0.9411964416503906 }, { "image_id": 898, "category_id": 1.0, "bbox": [ 446.4925765991211, 211.2455291748047, 19.769134521484375, 57.25987243652344 ], "score": 0.10861638188362122 }, { "image_id": 901, "category_id": 1.0, "bbox": [ 532.0458602905273, 209.83834838867188, 46.74354553222656, 109.67620849609375 ], "score": 0.1587936282157898 }, { "image_id": 903, "category_id": 1.0, "bbox": [ 448.57288360595703, 202.96078491210938, 28.307647705078125, 77.93478393554688 ], "score": 0.14576634764671326 }, { "image_id": 905, "category_id": 1.0, "bbox": [ 438.44886779785156, 239.54421997070312, 21.072769165039062, 40.93231201171875 ], "score": 0.48455095291137695 }, { "image_id": 908, "category_id": 1.0, "bbox": [ 446.91165924072266, 203.3682861328125, 20.974273681640625, 46.100494384765625 ], "score": 0.839256227016449 }, { "image_id": 909, "category_id": 1.0, "bbox": [ 536.4463806152344, 208.01336669921875, 23.190460205078125, 52.17401123046875 ], "score": 0.9865932464599609 }, { "image_id": 909, "category_id": 1.0, "bbox": [ 496.1054992675781, 207.76211547851562, 19.237136840820312, 37.3729248046875 ], "score": 0.10136537998914719 }, { "image_id": 910, "category_id": 1.0, "bbox": [ 566.0921478271484, 200.08297729492188, 20.80718994140625, 50.333343505859375 ], "score": 0.8686586618423462 }, { "image_id": 910, "category_id": 1.0, "bbox": [ 397.8240203857422, 89.32380676269531, 40.019073486328125, 106.91928100585938 ], "score": 0.16024889051914215 }, { "image_id": 912, "category_id": 1.0, "bbox": [ 360.9681701660156, 208.1969757080078, 19.42230224609375, 40.0457763671875 ], "score": 0.21722126007080078 }, { "image_id": 912, "category_id": 1.0, "bbox": [ 490.86742401123047, 188.40699768066406, 54.83711242675781, 45.655517578125 ], "score": 0.15275584161281586 }, { "image_id": 914, "category_id": 1.0, "bbox": [ 386.81095123291016, 216.31930541992188, 24.322433471679688, 54.38702392578125 ], "score": 0.24298307299613953 }, { "image_id": 918, "category_id": 1.0, "bbox": [ 279.0057563781738, 201.98426818847656, 21.837730407714844, 46.15911865234375 ], "score": 0.9245179295539856 }, { "image_id": 918, "category_id": 1.0, "bbox": [ 201.67348861694336, 203.70126342773438, 18.57868194580078, 37.6197509765625 ], "score": 0.3326670825481415 }, { "image_id": 918, "category_id": 1.0, "bbox": [ 444.2407989501953, 196.1776885986328, 42.47352600097656, 92.79158020019531 ], "score": 0.20266686379909515 }, { "image_id": 918, "category_id": 1.0, "bbox": [ 417.70957946777344, 195.07879638671875, 24.18212890625, 66.36813354492188 ], "score": 0.14011551439762115 }, { "image_id": 918, "category_id": 1.0, "bbox": [ 234.55413818359375, 204.45352172851562, 29.586830139160156, 37.625823974609375 ], "score": 0.13636720180511475 }, { "image_id": 919, "category_id": 1.0, "bbox": [ 190.40937423706055, 199.93496704101562, 22.908897399902344, 52.59552001953125 ], "score": 0.9716826677322388 }, { "image_id": 919, "category_id": 1.0, "bbox": [ 95.40090560913086, 202.2122344970703, 24.36117172241211, 41.93865966796875 ], "score": 0.7881220579147339 }, { "image_id": 919, "category_id": 1.0, "bbox": [ 162.31664657592773, 198.48387145996094, 23.57860565185547, 52.184356689453125 ], "score": 0.5604941844940186 }, { "image_id": 919, "category_id": 1.0, "bbox": [ 109.4320297241211, 202.06527709960938, 21.53738021850586, 42.44281005859375 ], "score": 0.11002794653177261 }, { "image_id": 920, "category_id": 1.0, "bbox": [ 167.86504745483398, 168.24989318847656, 23.589248657226562, 48.639892578125 ], "score": 0.2265797257423401 }, { "image_id": 920, "category_id": 1.0, "bbox": [ 264.3830108642578, 227.68885803222656, 25.221786499023438, 55.78330993652344 ], "score": 0.12712526321411133 }, { "image_id": 922, "category_id": 1.0, "bbox": [ 20.661931037902832, 218.72628784179688, 41.02879524230957, 70.4969482421875 ], "score": 0.22231830656528473 }, { "image_id": 922, "category_id": 1.0, "bbox": [ 226.40350341796875, 192.29708862304688, 20.23548126220703, 41.9775390625 ], "score": 0.11363807320594788 }, { "image_id": 924, "category_id": 1.0, "bbox": [ 203.28771591186523, 213.32992553710938, 20.222511291503906, 51.873077392578125 ], "score": 0.1108887568116188 }, { "image_id": 927, "category_id": 1.0, "bbox": [ 505.9182357788086, 218.13543701171875, 18.643646240234375, 43.2662353515625 ], "score": 0.8977506160736084 }, { "image_id": 927, "category_id": 1.0, "bbox": [ 521.0417938232422, 216.15684509277344, 17.939682006835938, 46.05555725097656 ], "score": 0.33707714080810547 }, { "image_id": 928, "category_id": 1.0, "bbox": [ 443.86390686035156, 217.05128479003906, 18.623580932617188, 48.51274108886719 ], "score": 0.9704883694648743 }, { "image_id": 928, "category_id": 1.0, "bbox": [ 434.37408447265625, 220.62489318847656, 18.818283081054688, 46.34266662597656 ], "score": 0.8275799751281738 }, { "image_id": 929, "category_id": 1.0, "bbox": [ 451.26415252685547, 212.14877319335938, 24.292526245117188, 58.9381103515625 ], "score": 0.4913170039653778 }, { "image_id": 931, "category_id": 1.0, "bbox": [ 582.5843811035156, 196.7827911376953, 44.532623291015625, 117.80769348144531 ], "score": 0.9971870183944702 }, { "image_id": 931, "category_id": 1.0, "bbox": [ 447.3729705810547, 209.61203002929688, 21.06842041015625, 42.206634521484375 ], "score": 0.9314674735069275 }, { "image_id": 931, "category_id": 1.0, "bbox": [ 604.5439147949219, 201.04693603515625, 35.14732360839844, 117.84600830078125 ], "score": 0.11036188155412674 }, { "image_id": 932, "category_id": 1.0, "bbox": [ 494.2134475708008, 199.98814392089844, 24.027099609375, 52.9310302734375 ], "score": 0.9993074536323547 }, { "image_id": 933, "category_id": 1.0, "bbox": [ 579.8136138916016, 202.06459045410156, 31.151657104492188, 69.43782043457031 ], "score": 0.9988842010498047 }, { "image_id": 933, "category_id": 1.0, "bbox": [ 588.8086318969727, 198.0633544921875, 32.79380798339844, 93.13705444335938 ], "score": 0.10616809129714966 }, { "image_id": 935, "category_id": 1.0, "bbox": [ 409.9239730834961, 226.39633178710938, 23.018798828125, 50.302276611328125 ], "score": 0.18276935815811157 }, { "image_id": 936, "category_id": 1.0, "bbox": [ 34.82125759124756, 202.15574645996094, 24.624528884887695, 46.5250244140625 ], "score": 0.15457838773727417 }, { "image_id": 936, "category_id": 1.0, "bbox": [ 213.25241088867188, 239.557861328125, 22.4835205078125, 45.861328125 ], "score": 0.10293281078338623 }, { "image_id": 938, "category_id": 1.0, "bbox": [ 396.4894104003906, 201.80453491210938, 68.64021301269531, 54.670318603515625 ], "score": 0.1153266653418541 }, { "image_id": 939, "category_id": 1.0, "bbox": [ 411.01593017578125, 207.80543518066406, 17.350997924804688, 38.59674072265625 ], "score": 0.18723700940608978 }, { "image_id": 939, "category_id": 1.0, "bbox": [ 394.97005462646484, 208.79669189453125, 18.058319091796875, 39.150634765625 ], "score": 0.14056344330310822 }, { "image_id": 939, "category_id": 1.0, "bbox": [ 378.5359191894531, 208.4650421142578, 25.244522094726562, 37.849822998046875 ], "score": 0.104661725461483 }, { "image_id": 939, "category_id": 1.0, "bbox": [ 361.9279098510742, 205.76287841796875, 81.75056457519531, 41.98358154296875 ], "score": 0.10216378420591354 }, { "image_id": 940, "category_id": 1.0, "bbox": [ 387.20272064208984, 203.1168212890625, 22.76092529296875, 50.47198486328125 ], "score": 0.9925076961517334 }, { "image_id": 940, "category_id": 1.0, "bbox": [ 403.4663391113281, 206.7589569091797, 23.164901733398438, 49.33625793457031 ], "score": 0.9916844367980957 }, { "image_id": 940, "category_id": 1.0, "bbox": [ 442.41844177246094, 209.2180633544922, 19.558563232421875, 42.691864013671875 ], "score": 0.9540505409240723 }, { "image_id": 940, "category_id": 1.0, "bbox": [ 347.7639389038086, 208.8497772216797, 21.909561157226562, 39.76947021484375 ], "score": 0.16533522307872772 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 432.3297882080078, 201.10488891601562, 30.427398681640625, 66.45266723632812 ], "score": 0.999355673789978 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 467.28878021240234, 196.26956176757812, 31.024246215820312, 81.34634399414062 ], "score": 0.9990410804748535 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 531.0047912597656, 201.4783172607422, 28.37890625, 70.67842102050781 ], "score": 0.9935104846954346 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 377.9657745361328, 207.17080688476562, 23.565673828125, 36.817291259765625 ], "score": 0.4173814058303833 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 455.5887985229492, 198.34439086914062, 30.83953857421875, 73.15719604492188 ], "score": 0.19680270552635193 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 369.6738052368164, 206.91732788085938, 21.572341918945312, 37.027740478515625 ], "score": 0.16695758700370789 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 361.42406463623047, 200.77613830566406, 66.6351318359375, 54.16864013671875 ], "score": 0.15977436304092407 }, { "image_id": 941, "category_id": 1.0, "bbox": [ 392.54493713378906, 206.00006103515625, 25.842819213867188, 40.021942138671875 ], "score": 0.13867072761058807 }, { "image_id": 942, "category_id": 1.0, "bbox": [ 487.2401428222656, 212.79959106445312, 24.631805419921875, 55.545135498046875 ], "score": 0.9992461204528809 }, { "image_id": 942, "category_id": 1.0, "bbox": [ 424.3311309814453, 213.10720825195312, 27.412033081054688, 59.998260498046875 ], "score": 0.8711776733398438 }, { "image_id": 942, "category_id": 1.0, "bbox": [ 26.437997817993164, 203.52357482910156, 30.228309631347656, 48.965667724609375 ], "score": 0.15183211863040924 }, { "image_id": 943, "category_id": 1.0, "bbox": [ 473.5722351074219, 208.479248046875, 22.589797973632812, 61.80322265625 ], "score": 0.29116320610046387 }, { "image_id": 943, "category_id": 1.0, "bbox": [ 464.7355270385742, 208.56655883789062, 23.065567016601562, 54.470458984375 ], "score": 0.10496837645769119 }, { "image_id": 944, "category_id": 1.0, "bbox": [ 563.7905120849609, 206.14404296875, 41.18408203125, 113.86431884765625 ], "score": 0.9979825019836426 }, { "image_id": 944, "category_id": 1.0, "bbox": [ 600.1184463500977, 197.87109375, 35.84831237792969, 115.48501586914062 ], "score": 0.9891124963760376 }, { "image_id": 944, "category_id": 1.0, "bbox": [ 583.7736511230469, 204.9980926513672, 38.121795654296875, 114.65510559082031 ], "score": 0.9610556364059448 }, { "image_id": 950, "category_id": 1.0, "bbox": [ 21.55048370361328, 200.71844482421875, 25.667190551757812, 45.23162841796875 ], "score": 0.14167289435863495 }, { "image_id": 950, "category_id": 1.0, "bbox": [ 355.26145935058594, 202.57528686523438, 28.941421508789062, 48.544097900390625 ], "score": 0.13050976395606995 }, { "image_id": 951, "category_id": 1.0, "bbox": [ 362.4478530883789, 208.77999877929688, 19.893875122070312, 35.479583740234375 ], "score": 0.15426883101463318 }, { "image_id": 952, "category_id": 1.0, "bbox": [ 371.6353988647461, 200.74501037597656, 21.065750122070312, 40.57110595703125 ], "score": 0.7376374006271362 }, { "image_id": 953, "category_id": 1.0, "bbox": [ 399.25621032714844, 206.6619415283203, 21.759185791015625, 44.290802001953125 ], "score": 0.9727121591567993 }, { "image_id": 954, "category_id": 1.0, "bbox": [ 452.88272857666016, 211.09393310546875, 21.453018188476562, 52.47076416015625 ], "score": 0.9945386648178101 }, { "image_id": 954, "category_id": 1.0, "bbox": [ 462.3748779296875, 211.7552490234375, 20.150299072265625, 51.21533203125 ], "score": 0.16544678807258606 }, { "image_id": 955, "category_id": 1.0, "bbox": [ 556.458854675293, 207.58575439453125, 36.37092590332031, 87.94192504882812 ], "score": 0.9992109537124634 }, { "image_id": 957, "category_id": 1.0, "bbox": [ 387.4730682373047, 199.6694793701172, 22.900543212890625, 48.416534423828125 ], "score": 0.10615678876638412 }, { "image_id": 958, "category_id": 1.0, "bbox": [ 407.72315979003906, 207.21939086914062, 23.970108032226562, 36.720306396484375 ], "score": 0.23175093531608582 }, { "image_id": 959, "category_id": 1.0, "bbox": [ 442.52079010009766, 212.74273681640625, 19.639205932617188, 43.27191162109375 ], "score": 0.9448288679122925 }, { "image_id": 959, "category_id": 1.0, "bbox": [ 94.81698989868164, 212.69015502929688, 26.46240234375, 43.4307861328125 ], "score": 0.360223650932312 }, { "image_id": 959, "category_id": 1.0, "bbox": [ 418.85528564453125, 214.6096649169922, 20.543212890625, 40.1529541015625 ], "score": 0.1625121831893921 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 11.100972890853882, 210.7528533935547, 30.661641359329224, 58.70869445800781 ], "score": 0.6367247700691223 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 441.4519500732422, 218.8695831298828, 18.3538818359375, 37.26286315917969 ], "score": 0.21482530236244202 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 450.34130096435547, 217.4461669921875, 18.970108032226562, 39.34295654296875 ], "score": 0.2028842717409134 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 509.02965545654297, 190.56605529785156, 35.275726318359375, 106.32545471191406 ], "score": 0.16307798027992249 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 368.3088684082031, 230.27822875976562, 22.781600952148438, 41.412139892578125 ], "score": 0.1627683937549591 }, { "image_id": 960, "category_id": 1.0, "bbox": [ 337.23976135253906, 214.33102416992188, 17.505111694335938, 28.54156494140625 ], "score": 0.10481617599725723 }, { "image_id": 961, "category_id": 1.0, "bbox": [ 510.1512145996094, 213.04071044921875, 19.065399169921875, 47.973968505859375 ], "score": 0.9830406904220581 }, { "image_id": 961, "category_id": 1.0, "bbox": [ 421.28387451171875, 225.87071228027344, 23.221511840820312, 56.73045349121094 ], "score": 0.8623905777931213 }, { "image_id": 961, "category_id": 1.0, "bbox": [ 491.8883514404297, 216.8743438720703, 20.983505249023438, 47.98316955566406 ], "score": 0.7323237657546997 }, { "image_id": 961, "category_id": 1.0, "bbox": [ 402.49610900878906, 242.7085418701172, 23.430862426757812, 49.03010559082031 ], "score": 0.2896454930305481 }, { "image_id": 961, "category_id": 1.0, "bbox": [ 349.30381774902344, 209.7686767578125, 19.752578735351562, 40.1470947265625 ], "score": 0.1709464192390442 }, { "image_id": 962, "category_id": 1.0, "bbox": [ 528.3488464355469, 214.775634765625, 33.25408935546875, 91.76983642578125 ], "score": 0.756683349609375 }, { "image_id": 962, "category_id": 1.0, "bbox": [ 368.63651275634766, 206.45057678222656, 19.032363891601562, 43.089324951171875 ], "score": 0.5505105257034302 }, { "image_id": 962, "category_id": 1.0, "bbox": [ 585.8615875244141, 241.685302734375, 17.869644165039062, 41.19097900390625 ], "score": 0.3163644075393677 }, { "image_id": 962, "category_id": 1.0, "bbox": [ 543.6668395996094, 225.12973022460938, 33.79554748535156, 78.59783935546875 ], "score": 0.20702910423278809 }, { "image_id": 962, "category_id": 1.0, "bbox": [ 468.0384063720703, 223.92784118652344, 15.6243896484375, 27.738861083984375 ], "score": 0.11345016956329346 }, { "image_id": 963, "category_id": 1.0, "bbox": [ 392.8895950317383, 206.08518981933594, 21.377716064453125, 51.55073547363281 ], "score": 0.9902207851409912 }, { "image_id": 963, "category_id": 1.0, "bbox": [ 556.3921356201172, 252.7270050048828, 19.482345581054688, 37.71366882324219 ], "score": 0.13100609183311462 }, { "image_id": 964, "category_id": 1.0, "bbox": [ 437.2834014892578, 205.7050323486328, 26.89666748046875, 68.86424255371094 ], "score": 0.9988999366760254 }, { "image_id": 964, "category_id": 1.0, "bbox": [ 584.2797470092773, 128.59474182128906, 45.99098205566406, 104.94485473632812 ], "score": 0.40907973051071167 }, { "image_id": 964, "category_id": 1.0, "bbox": [ 348.38626861572266, 204.01016235351562, 40.866546630859375, 50.570404052734375 ], "score": 0.13651245832443237 }, { "image_id": 965, "category_id": 1.0, "bbox": [ 550.0802993774414, 199.06187438964844, 40.99418640136719, 114.24388122558594 ], "score": 0.9985226392745972 }, { "image_id": 965, "category_id": 1.0, "bbox": [ 396.60499572753906, 219.06764221191406, 22.177734375, 50.05891418457031 ], "score": 0.3704165518283844 }, { "image_id": 965, "category_id": 1.0, "bbox": [ 380.97450256347656, 206.50599670410156, 24.95819091796875, 48.073455810546875 ], "score": 0.1744154393672943 }, { "image_id": 966, "category_id": 1.0, "bbox": [ 428.0408477783203, 201.42440795898438, 56.32232666015625, 75.0997314453125 ], "score": 0.5627968311309814 }, { "image_id": 966, "category_id": 1.0, "bbox": [ 427.8548049926758, 208.7495574951172, 26.693344116210938, 51.26118469238281 ], "score": 0.35739386081695557 }, { "image_id": 966, "category_id": 1.0, "bbox": [ 444.8178482055664, 206.7792510986328, 28.58184814453125, 55.41084289550781 ], "score": 0.23104727268218994 }, { "image_id": 967, "category_id": 1.0, "bbox": [ 529.4562530517578, 217.8887939453125, 33.54545593261719, 89.64630126953125 ], "score": 0.9972081184387207 }, { "image_id": 967, "category_id": 1.0, "bbox": [ 569.5748138427734, 210.8875274658203, 31.53289794921875, 96.96110534667969 ], "score": 0.9796236753463745 }, { "image_id": 967, "category_id": 1.0, "bbox": [ 547.0359039306641, 217.80931091308594, 30.96038818359375, 85.84178161621094 ], "score": 0.9725102186203003 }, { "image_id": 967, "category_id": 1.0, "bbox": [ 78.65301132202148, 212.2963104248047, 24.79106903076172, 44.83027648925781 ], "score": 0.3458831310272217 }, { "image_id": 967, "category_id": 1.0, "bbox": [ 582.4310302734375, 209.80337524414062, 34.50408935546875, 96.30657958984375 ], "score": 0.3400782346725464 }, { "image_id": 968, "category_id": 1.0, "bbox": [ 38.87099266052246, 206.1641845703125, 26.55613899230957, 55.324798583984375 ], "score": 0.7411857843399048 }, { "image_id": 968, "category_id": 1.0, "bbox": [ 26.72999382019043, 210.75750732421875, 29.791698455810547, 51.993316650390625 ], "score": 0.17121146619319916 }, { "image_id": 968, "category_id": 1.0, "bbox": [ 546.7835998535156, 222.81512451171875, 25.577316284179688, 53.06719970703125 ], "score": 0.14475442469120026 }, { "image_id": 970, "category_id": 1.0, "bbox": [ 29.79794979095459, 207.96035766601562, 28.10443878173828, 49.304046630859375 ], "score": 0.3621581792831421 }, { "image_id": 970, "category_id": 1.0, "bbox": [ 17.488332986831665, 211.04730224609375, 25.2699077129364, 53.86712646484375 ], "score": 0.17306333780288696 }, { "image_id": 970, "category_id": 1.0, "bbox": [ 472.8995895385742, 207.6413116455078, 22.325363159179688, 46.113677978515625 ], "score": 0.16657720506191254 }, { "image_id": 971, "category_id": 1.0, "bbox": [ 516.3604736328125, 211.08673095703125, 21.28326416015625, 45.019775390625 ], "score": 0.8942036628723145 }, { "image_id": 971, "category_id": 1.0, "bbox": [ 74.69790458679199, 210.68458557128906, 19.287796020507812, 42.530029296875 ], "score": 0.12070370465517044 }, { "image_id": 972, "category_id": 1.0, "bbox": [ 584.6470260620117, 214.3376922607422, 23.107681274414062, 48.65483093261719 ], "score": 0.5070785880088806 }, { "image_id": 975, "category_id": 1.0, "bbox": [ 316.8691062927246, 198.879638671875, 30.864543914794922, 82.62176513671875 ], "score": 0.5272425413131714 }, { "image_id": 975, "category_id": 1.0, "bbox": [ 604.0670013427734, 213.3362274169922, 20.157928466796875, 45.39176940917969 ], "score": 0.13327151536941528 }, { "image_id": 976, "category_id": 1.0, "bbox": [ 598.1063461303711, 214.8230438232422, 21.345748901367188, 42.68824768066406 ], "score": 0.3880879282951355 }, { "image_id": 976, "category_id": 1.0, "bbox": [ 320.27435302734375, 206.19325256347656, 27.586212158203125, 72.81248474121094 ], "score": 0.19914641976356506 }, { "image_id": 976, "category_id": 1.0, "bbox": [ 218.10880661010742, 219.53277587890625, 21.847496032714844, 50.15484619140625 ], "score": 0.15645523369312286 }, { "image_id": 977, "category_id": 1.0, "bbox": [ 603.8986587524414, 214.3036651611328, 22.52777099609375, 38.3504638671875 ], "score": 0.44757357239723206 }, { "image_id": 977, "category_id": 1.0, "bbox": [ 323.1509780883789, 210.61622619628906, 22.12158203125, 46.29405212402344 ], "score": 0.1593838930130005 }, { "image_id": 978, "category_id": 1.0, "bbox": [ 609.747314453125, 217.1428985595703, 23.10791015625, 40.13291931152344 ], "score": 0.2420971393585205 }, { "image_id": 980, "category_id": 1.0, "bbox": [ 432.3544692993164, 227.02259826660156, 26.253433227539062, 47.46031188964844 ], "score": 0.135629341006279 }, { "image_id": 980, "category_id": 1.0, "bbox": [ 335.3321838378906, 253.49069213867188, 40.091552734375, 96.31561279296875 ], "score": 0.11150193214416504 }, { "image_id": 981, "category_id": 1.0, "bbox": [ 476.5433883666992, 219.77577209472656, 19.617156982421875, 39.70048522949219 ], "score": 0.1130400002002716 }, { "image_id": 982, "category_id": 1.0, "bbox": [ 519.7222900390625, 216.75149536132812, 20.402374267578125, 40.81439208984375 ], "score": 0.5437799692153931 }, { "image_id": 983, "category_id": 1.0, "bbox": [ 9.096014499664307, 214.55621337890625, 23.670811653137207, 50.09075927734375 ], "score": 0.3513363003730774 }, { "image_id": 985, "category_id": 1.0, "bbox": [ 287.4342155456543, 228.1049041748047, 22.681732177734375, 53.68894958496094 ], "score": 0.8771296739578247 }, { "image_id": 985, "category_id": 1.0, "bbox": [ 372.3238754272461, 221.14903259277344, 25.402450561523438, 58.51869201660156 ], "score": 0.5397182703018188 }, { "image_id": 985, "category_id": 1.0, "bbox": [ 335.25035858154297, 229.54049682617188, 20.356903076171875, 48.36456298828125 ], "score": 0.47256600856781006 }, { "image_id": 985, "category_id": 1.0, "bbox": [ 278.4482192993164, 227.8704376220703, 21.43199920654297, 52.33589172363281 ], "score": 0.11800067126750946 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 534.9543762207031, 223.4662628173828, 29.863662719726562, 59.92250061035156 ], "score": 0.9865946769714355 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 593.8447189331055, 224.7458038330078, 23.609695434570312, 50.90315246582031 ], "score": 0.9116998314857483 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 312.26354598999023, 213.2744140625, 21.171131134033203, 42.597930908203125 ], "score": 0.8873407244682312 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 584.5399475097656, 223.64451599121094, 23.54248046875, 53.69358825683594 ], "score": 0.662089467048645 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 456.58485412597656, 218.04574584960938, 25.57769775390625, 52.939208984375 ], "score": 0.5524740815162659 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 382.4654769897461, 209.4390869140625, 25.2093505859375, 38.83612060546875 ], "score": 0.2519882023334503 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 522.1910095214844, 223.2991180419922, 27.443008422851562, 56.21632385253906 ], "score": 0.11894047260284424 }, { "image_id": 986, "category_id": 1.0, "bbox": [ 424.4583511352539, 204.41415405273438, 20.999984741210938, 45.878082275390625 ], "score": 0.11315331608057022 }, { "image_id": 987, "category_id": 1.0, "bbox": [ 510.54481506347656, 203.38009643554688, 24.369888305664062, 48.41717529296875 ], "score": 0.9695343375205994 }, { "image_id": 987, "category_id": 1.0, "bbox": [ 363.8783264160156, 209.20716857910156, 25.711669921875, 43.2532958984375 ], "score": 0.12979355454444885 }, { "image_id": 987, "category_id": 1.0, "bbox": [ 500.0483703613281, 204.57672119140625, 25.810470581054688, 50.444793701171875 ], "score": 0.12384682893753052 }, { "image_id": 988, "category_id": 1.0, "bbox": [ 599.2220306396484, 200.94357299804688, 24.73388671875, 55.1077880859375 ], "score": 0.33950358629226685 }, { "image_id": 989, "category_id": 1.0, "bbox": [ 565.9558486938477, 205.74806213378906, 23.861083984375, 45.796173095703125 ], "score": 0.177805557847023 }, { "image_id": 989, "category_id": 1.0, "bbox": [ 464.0095901489258, 209.71728515625, 51.93199157714844, 38.86285400390625 ], "score": 0.17438147962093353 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 557.6607513427734, 209.90438842773438, 20.145492553710938, 51.082244873046875 ], "score": 0.9420372247695923 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 594.1537857055664, 206.0552520751953, 23.323974609375, 48.35302734375 ], "score": 0.6815529465675354 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 537.9013442993164, 206.599853515625, 21.045455932617188, 48.79052734375 ], "score": 0.3633311986923218 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 585.4282760620117, 207.49716186523438, 22.138519287109375, 47.19757080078125 ], "score": 0.34368693828582764 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 576.4028549194336, 205.6324920654297, 20.83038330078125, 46.635406494140625 ], "score": 0.31977131962776184 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 475.9360122680664, 210.709716796875, 18.155059814453125, 39.55450439453125 ], "score": 0.27092304825782776 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 533.0621337890625, 201.11959838867188, 97.50709533691406, 53.50433349609375 ], "score": 0.19842420518398285 }, { "image_id": 990, "category_id": 1.0, "bbox": [ 468.5481643676758, 210.1249542236328, 18.01788330078125, 39.144378662109375 ], "score": 0.12419524043798447 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 547.056884765625, 210.28408813476562, 20.113983154296875, 47.520294189453125 ], "score": 0.9791451096534729 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 518.5367202758789, 203.5971221923828, 19.230194091796875, 50.5401611328125 ], "score": 0.8647422194480896 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 582.2975540161133, 211.7559051513672, 20.531692504882812, 44.38755798339844 ], "score": 0.5104706883430481 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 538.218879699707, 208.87997436523438, 20.571823120117188, 48.566650390625 ], "score": 0.17498710751533508 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 531.5896224975586, 207.13925170898438, 17.640762329101562, 47.271209716796875 ], "score": 0.166586235165596 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 563.5163497924805, 206.1790771484375, 18.756790161132812, 45.7191162109375 ], "score": 0.16101565957069397 }, { "image_id": 991, "category_id": 1.0, "bbox": [ 476.81705474853516, 206.33480834960938, 18.419113159179688, 38.90289306640625 ], "score": 0.1124533861875534 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 598.8747406005859, 208.9406280517578, 25.655593872070312, 57.86817932128906 ], "score": 0.9870891571044922 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 531.7218780517578, 210.9356689453125, 19.447479248046875, 42.74822998046875 ], "score": 0.8260618448257446 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 503.26709747314453, 207.23171997070312, 22.880325317382812, 41.80145263671875 ], "score": 0.7347822785377502 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 523.0245208740234, 210.50367736816406, 20.416107177734375, 43.74151611328125 ], "score": 0.43886446952819824 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 513.7491989135742, 208.7906036376953, 20.516510009765625, 42.4361572265625 ], "score": 0.37455329298973083 }, { "image_id": 992, "category_id": 1.0, "bbox": [ 590.2332305908203, 214.29736328125, 22.355422973632812, 54.77203369140625 ], "score": 0.2991834878921509 }, { "image_id": 993, "category_id": 1.0, "bbox": [ 583.485107421875, 215.81109619140625, 22.106094360351562, 41.92901611328125 ], "score": 0.6484472751617432 }, { "image_id": 993, "category_id": 1.0, "bbox": [ 591.8638610839844, 217.67446899414062, 22.66021728515625, 41.484466552734375 ], "score": 0.5282472372055054 }, { "image_id": 995, "category_id": 1.0, "bbox": [ 536.116828918457, 210.70713806152344, 19.539566040039062, 35.954193115234375 ], "score": 0.21061429381370544 }, { "image_id": 996, "category_id": 1.0, "bbox": [ 553.521842956543, 208.5985870361328, 21.499786376953125, 42.2318115234375 ], "score": 0.7416878938674927 }, { "image_id": 996, "category_id": 1.0, "bbox": [ 591.5457534790039, 204.25802612304688, 19.64569091796875, 39.824737548828125 ], "score": 0.3007690906524658 }, { "image_id": 1001, "category_id": 1.0, "bbox": [ 440.6126022338867, 197.58949279785156, 20.748977661132812, 45.13739013671875 ], "score": 0.8980832695960999 }, { "image_id": 1002, "category_id": 1.0, "bbox": [ 464.7346878051758, 204.888916015625, 22.992706298828125, 56.510406494140625 ], "score": 0.89097660779953 }, { "image_id": 1003, "category_id": 1.0, "bbox": [ 502.1601104736328, 201.1129608154297, 23.818359375, 63.11482238769531 ], "score": 0.9985436201095581 }, { "image_id": 1004, "category_id": 1.0, "bbox": [ 543.5721588134766, 206.05160522460938, 24.117355346679688, 67.51431274414062 ], "score": 0.9423465728759766 }, { "image_id": 1004, "category_id": 1.0, "bbox": [ 413.6056900024414, 87.08528900146484, 46.894073486328125, 143.60626983642578 ], "score": 0.14116376638412476 }, { "image_id": 1007, "category_id": 1.0, "bbox": [ 558.4050369262695, 198.73831176757812, 31.182098388671875, 94.11166381835938 ], "score": 0.9288026094436646 }, { "image_id": 1007, "category_id": 1.0, "bbox": [ 542.5443649291992, 195.72561645507812, 19.708404541015625, 45.91094970703125 ], "score": 0.7179403901100159 }, { "image_id": 1007, "category_id": 1.0, "bbox": [ 403.4718322753906, 212.2945556640625, 18.730392456054688, 33.00048828125 ], "score": 0.1391170620918274 }, { "image_id": 1008, "category_id": 1.0, "bbox": [ 578.5573577880859, 200.12855529785156, 20.476837158203125, 41.136505126953125 ], "score": 0.9682201743125916 }, { "image_id": 1008, "category_id": 1.0, "bbox": [ 426.42948150634766, 205.90475463867188, 19.323654174804688, 38.440032958984375 ], "score": 0.3401726484298706 }, { "image_id": 1008, "category_id": 1.0, "bbox": [ 606.9248580932617, 192.6000518798828, 27.984771728515625, 95.44590759277344 ], "score": 0.2548506557941437 }, { "image_id": 1008, "category_id": 1.0, "bbox": [ 376.20609283447266, 208.8343505859375, 20.8489990234375, 38.42108154296875 ], "score": 0.20997866988182068 }, { "image_id": 1009, "category_id": 1.0, "bbox": [ 614.6175003051758, 203.61898803710938, 22.07794189453125, 49.815673828125 ], "score": 0.8352795839309692 }, { "image_id": 1009, "category_id": 1.0, "bbox": [ 442.1346664428711, 209.38446044921875, 19.317703247070312, 38.384429931640625 ], "score": 0.42227596044540405 }, { "image_id": 1010, "category_id": 1.0, "bbox": [ 533.9677429199219, 215.7161407470703, 20.398941040039062, 48.04353332519531 ], "score": 0.9874281883239746 }, { "image_id": 1010, "category_id": 1.0, "bbox": [ 473.9116668701172, 217.30543518066406, 21.329193115234375, 45.11903381347656 ], "score": 0.7574841976165771 }, { "image_id": 1010, "category_id": 1.0, "bbox": [ 411.5089797973633, 217.57435607910156, 20.511245727539062, 55.91056823730469 ], "score": 0.5405996441841125 }, { "image_id": 1011, "category_id": 1.0, "bbox": [ 561.4057922363281, 219.51878356933594, 20.902557373046875, 51.28450012207031 ], "score": 0.9973987936973572 }, { "image_id": 1011, "category_id": 1.0, "bbox": [ 456.47266387939453, 219.78411865234375, 23.1304931640625, 62.36737060546875 ], "score": 0.9382312297821045 }, { "image_id": 1011, "category_id": 1.0, "bbox": [ 532.0217514038086, 193.60826110839844, 39.26025390625, 106.48701477050781 ], "score": 0.10056692361831665 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 597.8951644897461, 212.9586944580078, 25.921096801757812, 58.74098205566406 ], "score": 0.9601256847381592 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 473.93428802490234, 209.24050903320312, 18.963623046875, 42.771759033203125 ], "score": 0.8576433658599854 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 457.09197998046875, 207.4497528076172, 19.721221923828125, 44.86090087890625 ], "score": 0.5867905020713806 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 408.892822265625, 209.42486572265625, 20.138702392578125, 46.39898681640625 ], "score": 0.4946681559085846 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 426.40331268310547, 209.1802978515625, 19.590377807617188, 40.5279541015625 ], "score": 0.4132946729660034 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 525.7931900024414, 207.9844512939453, 26.56005859375, 79.02748107910156 ], "score": 0.26634466648101807 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 392.0551300048828, 211.02780151367188, 24.787521362304688, 51.816070556640625 ], "score": 0.20353096723556519 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 441.70360565185547, 208.50039672851562, 19.06494140625, 40.7769775390625 ], "score": 0.17694401741027832 }, { "image_id": 1012, "category_id": 1.0, "bbox": [ 417.8519821166992, 209.35812377929688, 19.30908203125, 41.47869873046875 ], "score": 0.1044907197356224 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 498.47930908203125, 212.65719604492188, 21.124343872070312, 50.405517578125 ], "score": 0.9982247352600098 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 556.3100433349609, 218.0499725341797, 31.169662475585938, 86.50657653808594 ], "score": 0.9882723093032837 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 481.3535690307617, 214.39944458007812, 18.858566284179688, 49.482940673828125 ], "score": 0.9087848663330078 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 543.4454727172852, 212.75970458984375, 21.604843139648438, 45.15020751953125 ], "score": 0.8850957751274109 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 451.18663787841797, 213.7101287841797, 21.123504638671875, 52.54792785644531 ], "score": 0.8501936197280884 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 464.8371124267578, 216.0104522705078, 19.48272705078125, 45.42417907714844 ], "score": 0.1920682042837143 }, { "image_id": 1013, "category_id": 1.0, "bbox": [ 441.7173767089844, 213.6580047607422, 22.780075073242188, 55.45799255371094 ], "score": 0.10016866028308868 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 518.291130065918, 214.40684509277344, 23.030929565429688, 56.71644592285156 ], "score": 0.9935648441314697 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 583.6431884765625, 211.88841247558594, 22.72247314453125, 56.32295227050781 ], "score": 0.9859293699264526 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 567.3797225952148, 216.98605346679688, 20.482711791992188, 47.73992919921875 ], "score": 0.9060564637184143 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 502.40020751953125, 216.6741180419922, 20.682296752929688, 56.57209777832031 ], "score": 0.6843487024307251 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 487.07706451416016, 221.00425720214844, 24.145965576171875, 57.05195617675781 ], "score": 0.14901986718177795 }, { "image_id": 1014, "category_id": 1.0, "bbox": [ 479.81815338134766, 222.61851501464844, 34.889678955078125, 111.96919250488281 ], "score": 0.11243646591901779 }, { "image_id": 1015, "category_id": 1.0, "bbox": [ 566.0489654541016, 207.49774169921875, 24.227066040039062, 49.492828369140625 ], "score": 0.24302612245082855 }, { "image_id": 1015, "category_id": 1.0, "bbox": [ 608.1392669677734, 197.32257080078125, 24.213714599609375, 51.813262939453125 ], "score": 0.13605669140815735 }, { "image_id": 1017, "category_id": 1.0, "bbox": [ 600.3830718994141, 226.89768981933594, 23.249588012695312, 59.27931213378906 ], "score": 0.998544454574585 }, { "image_id": 1017, "category_id": 1.0, "bbox": [ 617.4984741210938, 225.74644470214844, 21.509170532226562, 58.95887756347656 ], "score": 0.7418127059936523 }, { "image_id": 1018, "category_id": 1.0, "bbox": [ 551.8021011352539, 211.47567749023438, 25.707626342773438, 67.73651123046875 ], "score": 0.9991406202316284 }, { "image_id": 1018, "category_id": 1.0, "bbox": [ 608.6043548583984, 213.4458770751953, 23.271026611328125, 56.87733459472656 ], "score": 0.99798583984375 }, { "image_id": 1018, "category_id": 1.0, "bbox": [ 573.4377670288086, 208.52557373046875, 24.024505615234375, 69.95425415039062 ], "score": 0.996849775314331 }, { "image_id": 1019, "category_id": 1.0, "bbox": [ 589.1052627563477, 220.15652465820312, 26.861648559570312, 79.750732421875 ], "score": 0.9984594583511353 }, { "image_id": 1019, "category_id": 1.0, "bbox": [ 563.2656860351562, 224.8854522705078, 27.047271728515625, 75.50352478027344 ], "score": 0.9880273342132568 }, { "image_id": 1019, "category_id": 1.0, "bbox": [ 617.0074081420898, 228.29403686523438, 22.414093017578125, 65.34063720703125 ], "score": 0.35100871324539185 }, { "image_id": 1019, "category_id": 1.0, "bbox": [ 572.4832534790039, 226.31356811523438, 30.862045288085938, 79.27508544921875 ], "score": 0.2150019109249115 }, { "image_id": 1021, "category_id": 1.0, "bbox": [ 158.02382469177246, 235.75234985351562, 21.89589500427246, 51.0987548828125 ], "score": 0.13119250535964966 }, { "image_id": 1022, "category_id": 1.0, "bbox": [ 519.0999221801758, 218.95530700683594, 21.03271484375, 53.24943542480469 ], "score": 0.2569388449192047 }, { "image_id": 1023, "category_id": 1.0, "bbox": [ 461.0768127441406, 195.91748046875, 21.57440185546875, 50.4749755859375 ], "score": 0.9796478748321533 }, { "image_id": 1024, "category_id": 1.0, "bbox": [ 528.1687164306641, 203.39907836914062, 29.371566772460938, 66.40744018554688 ], "score": 0.9994248747825623 }, { "image_id": 1027, "category_id": 1.0, "bbox": [ 580.1352691650391, 186.5577850341797, 30.982818603515625, 87.37086486816406 ], "score": 0.763758659362793 }, { "image_id": 1027, "category_id": 1.0, "bbox": [ 592.9810333251953, 181.2107696533203, 33.77632141113281, 88.72801208496094 ], "score": 0.323078989982605 }, { "image_id": 1033, "category_id": 1.0, "bbox": [ 502.6130676269531, 210.55352783203125, 19.010772705078125, 46.460418701171875 ], "score": 0.2685889005661011 }, { "image_id": 1034, "category_id": 1.0, "bbox": [ 505.00144958496094, 202.56097412109375, 18.70086669921875, 39.95806884765625 ], "score": 0.27897125482559204 }, { "image_id": 1034, "category_id": 1.0, "bbox": [ 549.6694946289062, 196.97445678710938, 20.60089111328125, 51.193359375 ], "score": 0.2548181414604187 }, { "image_id": 1035, "category_id": 1.0, "bbox": [ 522.0088195800781, 211.27011108398438, 19.589691162109375, 46.122650146484375 ], "score": 0.43805992603302 }, { "image_id": 1035, "category_id": 1.0, "bbox": [ 584.8371505737305, 211.53237915039062, 18.565521240234375, 43.610443115234375 ], "score": 0.14758218824863434 }, { "image_id": 1035, "category_id": 1.0, "bbox": [ 566.2487411499023, 211.83953857421875, 18.841552734375, 41.579986572265625 ], "score": 0.11322486400604248 }, { "image_id": 1037, "category_id": 1.0, "bbox": [ 608.7959671020508, 195.49627685546875, 24.770584106445312, 53.218292236328125 ], "score": 0.7850121259689331 }, { "image_id": 1037, "category_id": 1.0, "bbox": [ 512.8804779052734, 205.1925048828125, 22.739181518554688, 57.41851806640625 ], "score": 0.7668799161911011 }, { "image_id": 1037, "category_id": 1.0, "bbox": [ 463.14640045166016, 208.22671508789062, 19.49676513671875, 42.814910888671875 ], "score": 0.1140984371304512 }, { "image_id": 1037, "category_id": 1.0, "bbox": [ 405.0604248046875, 198.39996337890625, 86.23497009277344, 61.396392822265625 ], "score": 0.10822802782058716 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 534.7334289550781, 208.8529510498047, 20.562286376953125, 55.86106872558594 ], "score": 0.8130519390106201 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 545.5563735961914, 213.0929412841797, 21.2890625, 51.86921691894531 ], "score": 0.6076789498329163 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 485.0569152832031, 209.829345703125, 22.395401000976562, 48.10162353515625 ], "score": 0.5675702691078186 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 514.6062469482422, 207.2292938232422, 20.432662963867188, 49.23313903808594 ], "score": 0.1613004356622696 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 502.5627136230469, 207.20819091796875, 19.9993896484375, 50.40069580078125 ], "score": 0.11199860274791718 }, { "image_id": 1038, "category_id": 1.0, "bbox": [ 491.43688201904297, 206.04150390625, 74.36874389648438, 77.82122802734375 ], "score": 0.10597948729991913 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 583.6768341064453, 197.0745391845703, 22.879714965820312, 66.34996032714844 ], "score": 0.952477753162384 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 546.9734954833984, 199.5400390625, 19.779129028320312, 50.516754150390625 ], "score": 0.7333526611328125 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 411.6290283203125, 205.3546600341797, 20.1873779296875, 42.28387451171875 ], "score": 0.6905559301376343 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 530.7903671264648, 204.93763732910156, 17.711105346679688, 54.04884338378906 ], "score": 0.2556605041027069 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 486.87889099121094, 208.6476287841797, 21.225967407226562, 63.58039855957031 ], "score": 0.2045779973268509 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 523.3420944213867, 207.33187866210938, 17.760467529296875, 52.156829833984375 ], "score": 0.17758312821388245 }, { "image_id": 1039, "category_id": 1.0, "bbox": [ 395.0381088256836, 203.54605102539062, 46.08642578125, 47.568511962890625 ], "score": 0.10773155093193054 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 453.44749450683594, 201.13375854492188, 22.946624755859375, 58.9691162109375 ], "score": 0.993991494178772 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 601.2142181396484, 200.66360473632812, 25.543975830078125, 63.89703369140625 ], "score": 0.962186872959137 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 565.6428146362305, 196.58294677734375, 40.93132019042969, 115.07830810546875 ], "score": 0.8489024639129639 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 501.86458587646484, 205.49566650390625, 25.866546630859375, 49.710784912109375 ], "score": 0.7398606538772583 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 539.9817657470703, 202.9986572265625, 20.270614624023438, 55.528289794921875 ], "score": 0.7343534231185913 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 401.1288070678711, 210.89805603027344, 20.525970458984375, 40.98651123046875 ], "score": 0.6138694286346436 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 523.0522537231445, 202.1108856201172, 19.397811889648438, 51.79034423828125 ], "score": 0.5553072690963745 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 463.31897735595703, 205.45849609375, 21.334762573242188, 53.295379638671875 ], "score": 0.3883380889892578 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 577.5848007202148, 206.27313232421875, 33.50730895996094, 73.26284790039062 ], "score": 0.31221503019332886 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 438.27842712402344, 207.32769775390625, 21.629486083984375, 51.498504638671875 ], "score": 0.3065429925918579 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 552.1302032470703, 201.94175720214844, 21.340713500976562, 56.99501037597656 ], "score": 0.2554161548614502 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 391.28711700439453, 205.9666748046875, 97.730712890625, 56.215423583984375 ], "score": 0.17042988538742065 }, { "image_id": 1040, "category_id": 1.0, "bbox": [ 386.0292434692383, 209.72337341308594, 47.80464172363281, 48.10169982910156 ], "score": 0.13619939982891083 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 454.1457748413086, 208.5220184326172, 27.3785400390625, 59.33277893066406 ], "score": 0.9998044967651367 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 568.6722183227539, 201.27330017089844, 35.78346252441406, 98.16987609863281 ], "score": 0.9968569278717041 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 512.4539947509766, 204.17019653320312, 23.058853149414062, 67.29388427734375 ], "score": 0.996211051940918 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 533.3113098144531, 203.9407196044922, 26.577301025390625, 79.12736511230469 ], "score": 0.9573543071746826 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 543.14208984375, 198.78285217285156, 28.149871826171875, 82.33366394042969 ], "score": 0.8500782251358032 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 608.2571029663086, 206.30372619628906, 27.622604370117188, 78.77345275878906 ], "score": 0.8490688800811768 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 557.3414611816406, 196.89028930664062, 29.044952392578125, 84.50698852539062 ], "score": 0.28492435812950134 }, { "image_id": 1041, "category_id": 1.0, "bbox": [ 474.68505859375, 206.6231231689453, 21.880035400390625, 49.81813049316406 ], "score": 0.20585614442825317 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 596.7073822021484, 216.71775817871094, 33.29353332519531, 94.70231628417969 ], "score": 0.9889589548110962 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 564.4611358642578, 208.7440643310547, 32.67280578613281, 87.26268005371094 ], "score": 0.9881218671798706 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 579.4824600219727, 211.44239807128906, 33.07044982910156, 97.39076232910156 ], "score": 0.9786620140075684 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 522.4701690673828, 211.43612670898438, 20.818328857421875, 56.723480224609375 ], "score": 0.795030415058136 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 553.0047607421875, 208.1277313232422, 25.240554809570312, 58.94966125488281 ], "score": 0.5832968950271606 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 534.6256637573242, 208.05160522460938, 23.017196655273438, 57.1363525390625 ], "score": 0.3662170469760895 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 545.6542205810547, 211.07044982910156, 22.361221313476562, 51.29005432128906 ], "score": 0.23091688752174377 }, { "image_id": 1042, "category_id": 1.0, "bbox": [ 390.7120132446289, 209.20294189453125, 28.47259521484375, 85.21624755859375 ], "score": 0.1397155076265335 }, { "image_id": 1043, "category_id": 1.0, "bbox": [ 502.4620056152344, 214.72232055664062, 28.039703369140625, 74.32119750976562 ], "score": 0.999756395816803 }, { "image_id": 1043, "category_id": 1.0, "bbox": [ 469.1920471191406, 214.93319702148438, 30.190887451171875, 72.027587890625 ], "score": 0.999112069606781 }, { "image_id": 1043, "category_id": 1.0, "bbox": [ 68.82641315460205, 205.2263641357422, 19.631943702697754, 41.126983642578125 ], "score": 0.20048947632312775 }, { "image_id": 1045, "category_id": 1.0, "bbox": [ 578.1801223754883, 203.7220916748047, 20.606155395507812, 55.53565979003906 ], "score": 0.7303868532180786 }, { "image_id": 1045, "category_id": 1.0, "bbox": [ 478.973388671875, 210.2225341796875, 19.466629028320312, 45.775909423828125 ], "score": 0.3733289837837219 }, { "image_id": 1046, "category_id": 1.0, "bbox": [ 589.1144943237305, 222.65838623046875, 33.34312438964844, 67.90667724609375 ], "score": 0.8974969983100891 }, { "image_id": 1049, "category_id": 1.0, "bbox": [ 488.8505554199219, 142.68197631835938, 40.502777099609375, 101.8690185546875 ], "score": 0.1356043666601181 }, { "image_id": 1052, "category_id": 1.0, "bbox": [ 521.6143035888672, 211.06521606445312, 21.23626708984375, 47.206573486328125 ], "score": 0.991812527179718 }, { "image_id": 1052, "category_id": 1.0, "bbox": [ 471.6375732421875, 202.1709747314453, 24.180221557617188, 50.696319580078125 ], "score": 0.49766021966934204 }, { "image_id": 1052, "category_id": 1.0, "bbox": [ 506.2471008300781, 212.75048828125, 20.8465576171875, 44.592498779296875 ], "score": 0.2864622473716736 }, { "image_id": 1054, "category_id": 1.0, "bbox": [ 571.6659545898438, 207.5515594482422, 35.6976318359375, 93.43403625488281 ], "score": 0.9105067253112793 }, { "image_id": 1054, "category_id": 1.0, "bbox": [ 520.2138900756836, 226.30101013183594, 20.486221313476562, 46.60911560058594 ], "score": 0.3072388172149658 }, { "image_id": 1054, "category_id": 1.0, "bbox": [ 188.22040557861328, 220.1116485595703, 21.342201232910156, 42.89482116699219 ], "score": 0.28164058923721313 }, { "image_id": 1054, "category_id": 1.0, "bbox": [ 256.0321617126465, 224.30169677734375, 28.499717712402344, 37.27880859375 ], "score": 0.13334420323371887 }, { "image_id": 1055, "category_id": 1.0, "bbox": [ 201.3300323486328, 214.7372589111328, 20.75572967529297, 45.43217468261719 ], "score": 0.9592949151992798 }, { "image_id": 1055, "category_id": 1.0, "bbox": [ 104.89387512207031, 214.280517578125, 22.441654205322266, 48.645477294921875 ], "score": 0.4359169006347656 }, { "image_id": 1055, "category_id": 1.0, "bbox": [ 294.05866622924805, 216.036376953125, 25.302047729492188, 44.689178466796875 ], "score": 0.3140910565853119 }, { "image_id": 1056, "category_id": 1.0, "bbox": [ 353.1105422973633, 217.38287353515625, 24.371795654296875, 54.477020263671875 ], "score": 0.9697971343994141 }, { "image_id": 1056, "category_id": 1.0, "bbox": [ 337.59483337402344, 218.82302856445312, 24.254302978515625, 50.10174560546875 ], "score": 0.7544647455215454 }, { "image_id": 1056, "category_id": 1.0, "bbox": [ 260.1425552368164, 211.1946563720703, 28.572463989257812, 57.83982849121094 ], "score": 0.6856836676597595 }, { "image_id": 1056, "category_id": 1.0, "bbox": [ 276.2469673156738, 210.71885681152344, 27.48737335205078, 52.99449157714844 ], "score": 0.39945194125175476 }, { "image_id": 1056, "category_id": 1.0, "bbox": [ 471.76586151123047, 230.97596740722656, 25.172805786132812, 46.75761413574219 ], "score": 0.2507098913192749 }, { "image_id": 1057, "category_id": 1.0, "bbox": [ 552.1190643310547, 218.6760711669922, 24.16259765625, 59.93586730957031 ], "score": 0.9355390071868896 }, { "image_id": 1057, "category_id": 1.0, "bbox": [ 531.0006332397461, 216.08151245117188, 31.742477416992188, 70.2818603515625 ], "score": 0.443136066198349 }, { "image_id": 1057, "category_id": 1.0, "bbox": [ 564.5327377319336, 216.49063110351562, 27.088241577148438, 58.446380615234375 ], "score": 0.39382922649383545 }, { "image_id": 1059, "category_id": 1.0, "bbox": [ 412.8494644165039, 210.20433044433594, 19.922332763671875, 51.34013366699219 ], "score": 0.6097708940505981 }, { "image_id": 1059, "category_id": 1.0, "bbox": [ 512.3227310180664, 204.9685821533203, 24.438095092773438, 49.37933349609375 ], "score": 0.3930511176586151 }, { "image_id": 1060, "category_id": 1.0, "bbox": [ 480.04276275634766, 216.68399047851562, 35.47889709472656, 62.990966796875 ], "score": 0.212113618850708 }, { "image_id": 1061, "category_id": 1.0, "bbox": [ 534.6597671508789, 215.67935180664062, 23.080520629882812, 50.9090576171875 ], "score": 0.6046956777572632 }, { "image_id": 1061, "category_id": 1.0, "bbox": [ 54.39457416534424, 176.78286743164062, 28.799490928649902, 63.815155029296875 ], "score": 0.1478327065706253 }, { "image_id": 1062, "category_id": 1.0, "bbox": [ 539.7833633422852, 186.7605438232422, 21.510696411132812, 47.622100830078125 ], "score": 0.18247273564338684 }, { "image_id": 1062, "category_id": 1.0, "bbox": [ 18.977696895599365, 177.83480834960938, 75.15433549880981, 203.376220703125 ], "score": 0.16021016240119934 }, { "image_id": 1062, "category_id": 1.0, "bbox": [ 463.29166412353516, 186.7414093017578, 40.822601318359375, 52.3809814453125 ], "score": 0.11952289193868637 }, { "image_id": 1062, "category_id": 1.0, "bbox": [ 403.5722351074219, 201.51431274414062, 27.361831665039062, 67.21697998046875 ], "score": 0.10980315506458282 }, { "image_id": 1063, "category_id": 1.0, "bbox": [ 414.4424057006836, 200.91046142578125, 31.974563598632812, 68.53024291992188 ], "score": 0.2098723202943802 }, { "image_id": 1063, "category_id": 1.0, "bbox": [ 154.39619064331055, 215.44775390625, 30.63365936279297, 84.91192626953125 ], "score": 0.17435702681541443 }, { "image_id": 1066, "category_id": 1.0, "bbox": [ 428.01658630371094, 204.10775756835938, 60.72044372558594, 58.90997314453125 ], "score": 0.12206748872995377 }, { "image_id": 1067, "category_id": 1.0, "bbox": [ 489.7581100463867, 212.82083129882812, 17.014236450195312, 40.515228271484375 ], "score": 0.15118154883384705 }, { "image_id": 1068, "category_id": 1.0, "bbox": [ 439.66922760009766, 222.5927276611328, 22.05108642578125, 55.90214538574219 ], "score": 0.6451054811477661 }, { "image_id": 1068, "category_id": 1.0, "bbox": [ 401.40819549560547, 197.8914337158203, 23.308563232421875, 60.23112487792969 ], "score": 0.31592226028442383 }, { "image_id": 1068, "category_id": 1.0, "bbox": [ 475.2645492553711, 205.9888916015625, 20.303955078125, 42.826751708984375 ], "score": 0.21775633096694946 }, { "image_id": 1068, "category_id": 1.0, "bbox": [ 533.9728164672852, 211.1478271484375, 20.660400390625, 36.450958251953125 ], "score": 0.17451101541519165 }, { "image_id": 1068, "category_id": 1.0, "bbox": [ 417.55516052246094, 207.2487030029297, 19.502182006835938, 47.7119140625 ], "score": 0.1038595587015152 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 499.9784851074219, 196.32949829101562, 21.90460205078125, 56.880462646484375 ], "score": 0.980819821357727 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 577.120246887207, 217.4158935546875, 23.119964599609375, 55.476715087890625 ], "score": 0.7161177396774292 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 477.6430892944336, 220.4711151123047, 23.442306518554688, 52.91737365722656 ], "score": 0.6877825260162354 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 589.139289855957, 214.85247802734375, 25.115432739257812, 57.7303466796875 ], "score": 0.31960588693618774 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 597.7772521972656, 207.37442016601562, 25.959091186523438, 55.048187255859375 ], "score": 0.3112820088863373 }, { "image_id": 1069, "category_id": 1.0, "bbox": [ 430.5635070800781, 206.53439331054688, 22.564163208007812, 48.484588623046875 ], "score": 0.15088830888271332 }, { "image_id": 1070, "category_id": 1.0, "bbox": [ 571.4450073242188, 225.78128051757812, 27.873382568359375, 72.27911376953125 ], "score": 0.9952985644340515 }, { "image_id": 1070, "category_id": 1.0, "bbox": [ 470.4205322265625, 214.45689392089844, 19.266433715820312, 55.07710266113281 ], "score": 0.13205324113368988 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 517.0839691162109, 204.78536987304688, 22.60986328125, 46.45147705078125 ], "score": 0.3848259747028351 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 585.9055709838867, 226.2118377685547, 29.84832763671875, 77.23948669433594 ], "score": 0.3196777403354645 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 390.05714416503906, 168.898193359375, 38.215179443359375, 98.10870361328125 ], "score": 0.14300623536109924 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 422.5115966796875, 205.88436889648438, 31.460037231445312, 85.63229370117188 ], "score": 0.14009323716163635 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 480.9873962402344, 226.25411987304688, 38.76380920410156, 87.59027099609375 ], "score": 0.136496439576149 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 68.71379375457764, 201.3843994140625, 20.259690284729004, 43.774871826171875 ], "score": 0.11789585649967194 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 544.7715377807617, 230.3190460205078, 25.387496948242188, 48.64060974121094 ], "score": 0.1116652637720108 }, { "image_id": 1071, "category_id": 1.0, "bbox": [ 86.27499580383301, 206.77186584472656, 21.943035125732422, 47.4542236328125 ], "score": 0.10697609186172485 }, { "image_id": 1072, "category_id": 1.0, "bbox": [ 457.5262451171875, 210.00271606445312, 38.54118347167969, 98.615478515625 ], "score": 0.9963245391845703 }, { "image_id": 1072, "category_id": 1.0, "bbox": [ 576.9020843505859, 203.10244750976562, 26.137313842773438, 51.793670654296875 ], "score": 0.5772430896759033 }, { "image_id": 1072, "category_id": 1.0, "bbox": [ 491.5977478027344, 213.66983032226562, 25.978240966796875, 69.71371459960938 ], "score": 0.193497896194458 }, { "image_id": 1073, "category_id": 1.0, "bbox": [ 575.1974487304688, 213.44131469726562, 55.286865234375, 167.3431396484375 ], "score": 0.9971483945846558 }, { "image_id": 1073, "category_id": 1.0, "bbox": [ 552.1815490722656, 193.008056640625, 28.100967407226562, 77.14743041992188 ], "score": 0.16995270550251007 }, { "image_id": 1073, "category_id": 1.0, "bbox": [ 544.6897888183594, 193.76466369628906, 24.943389892578125, 63.27729797363281 ], "score": 0.1252211332321167 }, { "image_id": 1074, "category_id": 1.0, "bbox": [ 591.6388702392578, 197.70591735839844, 21.510543823242188, 50.30218505859375 ], "score": 0.49650779366493225 }, { "image_id": 1074, "category_id": 1.0, "bbox": [ 478.8486099243164, 178.05838012695312, 53.50212097167969, 159.707275390625 ], "score": 0.1209697499871254 }, { "image_id": 1075, "category_id": 1.0, "bbox": [ 383.4942626953125, 208.80548095703125, 25.135116577148438, 73.34515380859375 ], "score": 0.9706814289093018 }, { "image_id": 1075, "category_id": 1.0, "bbox": [ 527.1270370483398, 208.02455139160156, 22.309722900390625, 42.387359619140625 ], "score": 0.15326425433158875 }, { "image_id": 1076, "category_id": 1.0, "bbox": [ 412.09293365478516, 215.34864807128906, 34.80400085449219, 91.42478942871094 ], "score": 0.9993793368339539 }, { "image_id": 1076, "category_id": 1.0, "bbox": [ 505.1030731201172, 214.2999725341797, 20.036163330078125, 46.23234558105469 ], "score": 0.308573842048645 }, { "image_id": 1077, "category_id": 1.0, "bbox": [ 494.17884826660156, 220.14395141601562, 54.01893615722656, 139.22332763671875 ], "score": 0.9993190169334412 }, { "image_id": 1077, "category_id": 1.0, "bbox": [ 570.7325744628906, 215.33599853515625, 21.038665771484375, 53.399444580078125 ], "score": 0.8186215758323669 }, { "image_id": 1077, "category_id": 1.0, "bbox": [ 528.1585693359375, 212.81234741210938, 21.407546997070312, 50.417388916015625 ], "score": 0.2453729808330536 }, { "image_id": 1077, "category_id": 1.0, "bbox": [ 443.23883056640625, 244.17587280273438, 19.678115844726562, 56.3831787109375 ], "score": 0.12907524406909943 }, { "image_id": 1078, "category_id": 1.0, "bbox": [ 547.4544143676758, 94.33089447021484, 27.877273559570312, 75.50675201416016 ], "score": 0.22229567170143127 }, { "image_id": 1078, "category_id": 1.0, "bbox": [ 537.6524353027344, 263.064697265625, 25.287322998046875, 52.172119140625 ], "score": 0.11986199766397476 }, { "image_id": 1078, "category_id": 1.0, "bbox": [ 549.9072647094727, 206.53616333007812, 24.9334716796875, 37.65582275390625 ], "score": 0.10343629121780396 }, { "image_id": 1080, "category_id": 1.0, "bbox": [ 583.8545608520508, 221.87570190429688, 19.15130615234375, 61.246917724609375 ], "score": 0.4506154954433441 }, { "image_id": 1080, "category_id": 1.0, "bbox": [ 554.1152572631836, 107.94893646240234, 22.58026123046875, 54.021629333496094 ], "score": 0.1129767969250679 }, { "image_id": 1081, "category_id": 1.0, "bbox": [ 561.0052108764648, 218.14845275878906, 24.295883178710938, 59.70951843261719 ], "score": 0.1693962812423706 }, { "image_id": 1082, "category_id": 1.0, "bbox": [ 482.9718780517578, 208.550537109375, 22.661514282226562, 40.239776611328125 ], "score": 0.14261123538017273 }, { "image_id": 1083, "category_id": 1.0, "bbox": [ 421.28013610839844, 211.82846069335938, 75.36125183105469, 52.002960205078125 ], "score": 0.15751837193965912 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 542.3299026489258, 216.1714324951172, 21.483306884765625, 48.38761901855469 ], "score": 0.9765634536743164 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 560.1350784301758, 213.8229217529297, 19.362258911132812, 48.17771911621094 ], "score": 0.933230996131897 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 444.04998779296875, 210.77931213378906, 32.05421447753906, 39.166961669921875 ], "score": 0.3321450352668762 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 464.9573516845703, 212.2955322265625, 20.416107177734375, 42.495086669921875 ], "score": 0.19678598642349243 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 432.87647247314453, 214.61985778808594, 26.216506958007812, 41.32659912109375 ], "score": 0.12275416404008865 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 71.9869613647461, 204.84988403320312, 33.793067932128906, 44.818878173828125 ], "score": 0.10575497150421143 }, { "image_id": 1084, "category_id": 1.0, "bbox": [ 33.45102310180664, 199.34036254882812, 114.31089401245117, 49.620452880859375 ], "score": 0.10443644225597382 }, { "image_id": 1085, "category_id": 1.0, "bbox": [ 608.9039993286133, 214.6515350341797, 23.4759521484375, 59.38044738769531 ], "score": 0.9146668314933777 }, { "image_id": 1085, "category_id": 1.0, "bbox": [ 556.7304229736328, 203.20388793945312, 35.64552307128906, 95.72137451171875 ], "score": 0.2904694080352783 }, { "image_id": 1085, "category_id": 1.0, "bbox": [ 43.97529602050781, 208.4335479736328, 32.77911186218262, 40.94793701171875 ], "score": 0.2809390127658844 }, { "image_id": 1085, "category_id": 1.0, "bbox": [ 29.086544513702393, 202.26206970214844, 61.26460790634155, 60.97859191894531 ], "score": 0.1321955770254135 }, { "image_id": 1085, "category_id": 1.0, "bbox": [ 564.4407272338867, 215.0717010498047, 71.24542236328125, 68.70155334472656 ], "score": 0.10770469903945923 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 523.3880233764648, 213.28167724609375, 20.815505981445312, 47.87640380859375 ], "score": 0.832078754901886 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 558.2464218139648, 217.3006134033203, 23.814926147460938, 51.82057189941406 ], "score": 0.8034871816635132 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 32.63290882110596, 209.96707153320312, 22.07972526550293, 43.06134033203125 ], "score": 0.6560525894165039 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 24.57314968109131, 212.1620330810547, 22.014198303222656, 46.65132141113281 ], "score": 0.5656577944755554 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 508.9216995239258, 210.98092651367188, 20.170974731445312, 52.319793701171875 ], "score": 0.5392341017723083 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 516.0985946655273, 231.50674438476562, 28.708343505859375, 77.10498046875 ], "score": 0.3188863694667816 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 497.94097900390625, 218.27081298828125, 42.94090270996094, 109.2440185546875 ], "score": 0.1929762214422226 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 511.61327362060547, 209.1727294921875, 68.86650085449219, 62.69866943359375 ], "score": 0.13831894099712372 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 497.6612091064453, 211.09230041503906, 21.570510864257812, 52.40574645996094 ], "score": 0.12455930560827255 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 407.3397445678711, 205.06524658203125, 23.974838256835938, 49.56353759765625 ], "score": 0.11593765020370483 }, { "image_id": 1086, "category_id": 1.0, "bbox": [ 8.704466819763184, 213.2899932861328, 24.53664779663086, 52.80702209472656 ], "score": 0.10156762599945068 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 13.50582480430603, 208.36573791503906, 24.878889322280884, 52.21641540527344 ], "score": 0.9426403045654297 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 573.0792236328125, 208.9090576171875, 21.90521240234375, 49.62518310546875 ], "score": 0.768218994140625 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 544.4119644165039, 211.73239135742188, 23.554000854492188, 40.155426025390625 ], "score": 0.2068970501422882 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 23.480806350708008, 204.1285858154297, 22.22723960876465, 52.33256530761719 ], "score": 0.14359150826931 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 561.4188385009766, 211.24977111816406, 25.427703857421875, 45.14701843261719 ], "score": 0.13289205729961395 }, { "image_id": 1087, "category_id": 1.0, "bbox": [ 527.6237487792969, 210.28433227539062, 100.94795227050781, 53.448394775390625 ], "score": 0.102043017745018 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 609.0903854370117, 210.4591827392578, 22.89031982421875, 59.90367126464844 ], "score": 0.987249493598938 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 573.90380859375, 217.48178100585938, 23.125991821289062, 52.77215576171875 ], "score": 0.6473555564880371 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 526.6617584228516, 200.33770751953125, 21.539993286132812, 49.206329345703125 ], "score": 0.5102266669273376 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 534.9184417724609, 102.06912231445312, 22.603683471679688, 45.943023681640625 ], "score": 0.2817569375038147 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 595.3824615478516, 211.89369201660156, 19.566421508789062, 53.45256042480469 ], "score": 0.19394904375076294 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 461.78958892822266, 210.14520263671875, 72.27310180664062, 67.92623901367188 ], "score": 0.11388225853443146 }, { "image_id": 1088, "category_id": 1.0, "bbox": [ 581.6302490234375, 214.20773315429688, 25.156326293945312, 44.165740966796875 ], "score": 0.10611143708229065 }, { "image_id": 1089, "category_id": 1.0, "bbox": [ 471.86866760253906, 218.21609497070312, 29.255752563476562, 56.091156005859375 ], "score": 0.1888885349035263 }, { "image_id": 1089, "category_id": 1.0, "bbox": [ 537.710075378418, 94.78352355957031, 22.35015869140625, 46.767852783203125 ], "score": 0.1493769884109497 }, { "image_id": 1089, "category_id": 1.0, "bbox": [ 459.0593719482422, 214.35218811035156, 66.14234924316406, 66.50270080566406 ], "score": 0.10824372619390488 }, { "image_id": 1089, "category_id": 1.0, "bbox": [ 496.8290710449219, 212.74285888671875, 20.951614379882812, 44.136749267578125 ], "score": 0.10115738958120346 }, { "image_id": 1090, "category_id": 1.0, "bbox": [ 414.09095764160156, 224.08251953125, 30.11138916015625, 71.87835693359375 ], "score": 0.2662615180015564 }, { "image_id": 1090, "category_id": 1.0, "bbox": [ 487.9376220703125, 85.03266906738281, 20.66864013671875, 46.22772216796875 ], "score": 0.25224196910858154 }, { "image_id": 1090, "category_id": 1.0, "bbox": [ 406.38214111328125, 213.92787170410156, 80.12069702148438, 57.78477478027344 ], "score": 0.10516916215419769 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 545.8781051635742, 225.65304565429688, 29.8193359375, 92.40118408203125 ], "score": 0.9953285455703735 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 583.8636779785156, 228.58798217773438, 29.16595458984375, 75.100341796875 ], "score": 0.9951333403587341 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 605.8235549926758, 222.59072875976562, 28.12469482421875, 81.7265625 ], "score": 0.9789925813674927 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 301.9150733947754, 228.04669189453125, 30.98550796508789, 69.91827392578125 ], "score": 0.18571054935455322 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 431.58660888671875, 217.83489990234375, 28.874664306640625, 52.116851806640625 ], "score": 0.17500744760036469 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 319.8929023742676, 219.75445556640625, 23.591022491455078, 51.593109130859375 ], "score": 0.17426273226737976 }, { "image_id": 1091, "category_id": 1.0, "bbox": [ 363.2476806640625, 68.78155517578125, 32.54302978515625, 62.05693054199219 ], "score": 0.11403650790452957 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 534.9515151977539, 220.37081909179688, 37.03453063964844, 119.55059814453125 ], "score": 0.995537519454956 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 492.7155303955078, 213.55404663085938, 35.95466613769531, 102.670654296875 ], "score": 0.9408262968063354 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 580.8001327514648, 230.5546112060547, 39.141998291015625, 107.64888000488281 ], "score": 0.871812105178833 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 568.7137985229492, 219.57656860351562, 35.908966064453125, 123.84930419921875 ], "score": 0.8386026620864868 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 552.9167556762695, 220.25511169433594, 34.069366455078125, 116.28242492675781 ], "score": 0.7589187622070312 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 510.54134368896484, 217.73095703125, 37.58674621582031, 96.90252685546875 ], "score": 0.7008394598960876 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 132.17047691345215, 206.853515625, 28.342561721801758, 61.82080078125 ], "score": 0.597509503364563 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 525.2069091796875, 227.5955810546875, 32.918548583984375, 96.413330078125 ], "score": 0.3687940835952759 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 536.8008422851562, 274.1856689453125, 23.502349853515625, 61.8623046875 ], "score": 0.3425692617893219 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 243.3209228515625, 205.80560302734375, 39.04449462890625, 81.98193359375 ], "score": 0.2254820168018341 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 486.02413177490234, 235.38253784179688, 29.492416381835938, 73.62445068359375 ], "score": 0.19352330267429352 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 324.01123046875, 223.63980102539062, 25.381317138671875, 49.806182861328125 ], "score": 0.16499224305152893 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 89.20039176940918, 213.56687927246094, 30.19275665283203, 79.43598937988281 ], "score": 0.11311694979667664 }, { "image_id": 1092, "category_id": 1.0, "bbox": [ 80.8132266998291, 218.12442016601562, 23.39059829711914, 64.66107177734375 ], "score": 0.10788201540708542 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 351.2609100341797, 208.2808074951172, 56.03858947753906, 150.9560089111328 ], "score": 0.998424232006073 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 297.43160247802734, 210.68568420410156, 56.44584655761719, 147.9878387451172 ], "score": 0.989549994468689 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 600.4236602783203, 192.61489868164062, 24.92584228515625, 66.91351318359375 ], "score": 0.8855577707290649 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 273.7333679199219, 219.20523071289062, 50.19935607910156, 119.8953857421875 ], "score": 0.8344438076019287 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 609.3288803100586, 191.2803955078125, 25.84716796875, 77.3037109375 ], "score": 0.39162933826446533 }, { "image_id": 1093, "category_id": 1.0, "bbox": [ 374.04537200927734, 197.99896240234375, 39.32853698730469, 131.1588134765625 ], "score": 0.24907571077346802 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 575.3395080566406, 229.63351440429688, 35.08323669433594, 90.84295654296875 ], "score": 0.9951969385147095 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 353.6308288574219, 222.34335327148438, 37.47871398925781, 108.72088623046875 ], "score": 0.9765124917030334 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 395.55782318115234, 207.91795349121094, 31.027603149414062, 77.67744445800781 ], "score": 0.9419276118278503 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 33.82303237915039, 196.75201416015625, 72.65753746032715, 241.615234375 ], "score": 0.9034844040870667 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 382.1346664428711, 211.68528747558594, 27.043228149414062, 67.40977478027344 ], "score": 0.7993279099464417 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 413.8112258911133, 207.94776916503906, 31.7437744140625, 75.55119323730469 ], "score": 0.7291195392608643 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 509.52640533447266, 222.36849975585938, 24.288101196289062, 68.04290771484375 ], "score": 0.5312338471412659 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 7.5385308265686035, 222.46534729003906, 72.96594381332397, 236.88145446777344 ], "score": 0.4587937593460083 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 59.293789863586426, 224.89620971679688, 51.15039348602295, 147.6690673828125 ], "score": 0.34547191858291626 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 487.6216125488281, 226.63821411132812, 22.788925170898438, 56.116943359375 ], "score": 0.25312715768814087 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 497.98519134521484, 225.49429321289062, 23.016815185546875, 57.780609130859375 ], "score": 0.22297994792461395 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 348.0534362792969, 258.56304931640625, 32.886810302734375, 80.50750732421875 ], "score": 0.16754966974258423 }, { "image_id": 1094, "category_id": 1.0, "bbox": [ 371.3373565673828, 202.33177185058594, 32.83546447753906, 108.33943176269531 ], "score": 0.14251315593719482 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 340.4387664794922, 215.44000244140625, 30.820388793945312, 65.58615112304688 ], "score": 0.9994856715202332 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 254.74676132202148, 204.78314208984375, 39.89349365234375, 97.06536865234375 ], "score": 0.9987697005271912 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 176.58008575439453, 203.58424377441406, 36.47705078125, 90.23081970214844 ], "score": 0.9986662268638611 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 211.01455688476562, 202.43576049804688, 37.064476013183594, 88.9239501953125 ], "score": 0.9979922771453857 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 509.98443603515625, 227.969970703125, 45.52215576171875, 129.17181396484375 ], "score": 0.9977042078971863 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 464.7058868408203, 231.53823852539062, 40.91949462890625, 119.2071533203125 ], "score": 0.9949844479560852 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 56.02375030517578, 207.3960418701172, 68.24300765991211, 199.64869689941406 ], "score": 0.9842267036437988 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 528.7706756591797, 219.85406494140625, 22.864303588867188, 57.886627197265625 ], "score": 0.7388551831245422 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 512.8826904296875, 215.06332397460938, 19.99542236328125, 61.4267578125 ], "score": 0.22790361940860748 }, { "image_id": 1095, "category_id": 1.0, "bbox": [ 34.91768836975098, 222.8063201904297, 62.2874641418457, 170.99110412597656 ], "score": 0.17235486209392548 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 331.6709518432617, 213.65591430664062, 29.218597412109375, 72.87326049804688 ], "score": 0.99945467710495 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 530.2449035644531, 245.9488525390625, 61.03179931640625, 184.47454833984375 ], "score": 0.9986006021499634 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 218.04521560668945, 210.99716186523438, 37.10460662841797, 102.862548828125 ], "score": 0.9985332489013672 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 265.046329498291, 202.3396453857422, 44.17316436767578, 111.68501281738281 ], "score": 0.9982696771621704 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 511.46121978759766, 221.1436004638672, 20.838088989257812, 51.40287780761719 ], "score": 0.9976298213005066 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 155.41854858398438, 208.14541625976562, 40.42243957519531, 100.80572509765625 ], "score": 0.9924828410148621 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 529.0592193603516, 224.09176635742188, 21.95892333984375, 50.106048583984375 ], "score": 0.9895180463790894 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 588.8564682006836, 244.94430541992188, 45.679779052734375, 160.21893310546875 ], "score": 0.6327282786369324 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 496.0100555419922, 198.49620056152344, 18.837661743164062, 49.75445556640625 ], "score": 0.42720457911491394 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 540.8121109008789, 222.37684631347656, 23.0023193359375, 56.98292541503906 ], "score": 0.16081561148166656 }, { "image_id": 1096, "category_id": 1.0, "bbox": [ 519.2585754394531, 218.51657104492188, 23.82843017578125, 59.50958251953125 ], "score": 0.12675978243350983 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 224.58786010742188, 216.16075134277344, 47.6055908203125, 121.66374206542969 ], "score": 0.9998245239257812 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 534.2621994018555, 222.28697204589844, 24.70733642578125, 62.72850036621094 ], "score": 0.9997650980949402 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 128.33535194396973, 203.62693786621094, 46.79408073425293, 136.0938262939453 ], "score": 0.9990482330322266 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 299.644775390625, 204.64312744140625, 48.14544677734375, 131.61224365234375 ], "score": 0.9986895322799683 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 340.6950378417969, 219.2388153076172, 28.076248168945312, 75.86354064941406 ], "score": 0.9978593587875366 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 555.6298828125, 227.18504333496094, 21.170196533203125, 59.29457092285156 ], "score": 0.9871046543121338 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 507.9718017578125, 207.8221893310547, 19.334793090820312, 44.27276611328125 ], "score": 0.39302703738212585 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 53.715171813964844, 180.7371826171875, 28.935365676879883, 79.14593505859375 ], "score": 0.19325804710388184 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 323.69659423828125, 210.26605224609375, 37.64991760253906, 102.4874267578125 ], "score": 0.15321028232574463 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 499.67586517333984, 205.11224365234375, 19.171295166015625, 48.792266845703125 ], "score": 0.11085398495197296 }, { "image_id": 1097, "category_id": 1.0, "bbox": [ 567.0954895019531, 216.53524780273438, 23.803558349609375, 63.541778564453125 ], "score": 0.103370800614357 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 154.3544101715088, 199.53482055664062, 61.38653755187988, 183.6224365234375 ], "score": 0.9997193217277527 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 23.783342838287354, 215.08401489257812, 71.49194478988647, 170.97882080078125 ], "score": 0.9995319843292236 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 204.19431686401367, 220.98574829101562, 33.20667266845703, 87.9652099609375 ], "score": 0.9976037740707397 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 439.554443359375, 228.3934783935547, 27.413787841796875, 73.71348571777344 ], "score": 0.9973862171173096 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 465.3495788574219, 228.94815063476562, 24.697036743164062, 76.63885498046875 ], "score": 0.9856702089309692 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 450.9568405151367, 225.8824462890625, 31.56890869140625, 80.10577392578125 ], "score": 0.49263763427734375 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 405.71128845214844, 211.8674774169922, 19.19403076171875, 48.45494079589844 ], "score": 0.4488511085510254 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 510.7688903808594, 158.46371459960938, 24.764862060546875, 65.85189819335938 ], "score": 0.14664390683174133 }, { "image_id": 1098, "category_id": 1.0, "bbox": [ 15.314452648162842, 263.85528564453125, 53.73584032058716, 136.9820556640625 ], "score": 0.11382442712783813 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 94.39067840576172, 215.09445190429688, 42.757835388183594, 106.42926025390625 ], "score": 0.9996562600135803 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 424.8087692260742, 232.43905639648438, 31.55853271484375, 96.1146240234375 ], "score": 0.9857046604156494 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 404.6530532836914, 227.37045288085938, 30.867767333984375, 94.57666015625 ], "score": 0.9609919786453247 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 335.89447021484375, 212.67068481445312, 19.4403076171875, 51.99652099609375 ], "score": 0.949524462223053 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 130.34220695495605, 212.76113891601562, 29.538631439208984, 68.18865966796875 ], "score": 0.8925608396530151 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 184.4490623474121, 211.34646606445312, 21.31439208984375, 43.930389404296875 ], "score": 0.7370680570602417 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 374.60399627685547, 210.09854125976562, 19.846343994140625, 54.05242919921875 ], "score": 0.33390283584594727 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 431.0074996948242, 195.2825927734375, 21.657257080078125, 66.903076171875 ], "score": 0.20898720622062683 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 322.8407669067383, 76.56437683105469, 36.28852844238281, 122.22415161132812 ], "score": 0.14268441498279572 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 456.4270782470703, 128.181640625, 21.660232543945312, 56.411590576171875 ], "score": 0.13708117604255676 }, { "image_id": 1099, "category_id": 1.0, "bbox": [ 298.5841369628906, 189.9827117919922, 16.796340942382812, 47.22052001953125 ], "score": 0.10417584329843521 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 82.11400032043457, 214.65199279785156, 37.00874328613281, 81.73295593261719 ], "score": 0.9986027479171753 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 492.0529556274414, 243.4246826171875, 51.071929931640625, 152.2935791015625 ], "score": 0.9971683621406555 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 17.652058601379395, 222.7159423828125, 48.46628189086914, 119.82183837890625 ], "score": 0.9960387945175171 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 319.46081161499023, 214.13287353515625, 20.856456756591797, 54.840484619140625 ], "score": 0.9919644594192505 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 454.2185592651367, 238.17529296875, 48.59718322753906, 148.72705078125 ], "score": 0.9761571288108826 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 165.63743591308594, 213.57791137695312, 21.113662719726562, 50.33795166015625 ], "score": 0.9618211388587952 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 149.0317153930664, 214.3001251220703, 20.935497283935547, 45.17604064941406 ], "score": 0.7988812327384949 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 29.534971714019775, 197.26785278320312, 55.81417798995972, 130.01715087890625 ], "score": 0.3909006118774414 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 496.4170455932617, 142.46543884277344, 32.916717529296875, 80.586181640625 ], "score": 0.2680181860923767 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 309.63348388671875, 177.3378143310547, 36.32759094238281, 95.81056213378906 ], "score": 0.2335563451051712 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 307.30607986450195, 58.442832946777344, 36.61134719848633, 129.95661163330078 ], "score": 0.205267071723938 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 478.73779296875, 239.71847534179688, 41.997528076171875, 133.74981689453125 ], "score": 0.13092771172523499 }, { "image_id": 1100, "category_id": 1.0, "bbox": [ 260.6624984741211, 206.39515686035156, 16.041107177734375, 33.072845458984375 ], "score": 0.11977230757474899 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 342.58777618408203, 219.51394653320312, 23.603744506835938, 63.00445556640625 ], "score": 0.9991225004196167 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 175.92525482177734, 213.19046020507812, 24.476318359375, 62.20904541015625 ], "score": 0.9985172748565674 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 157.18708038330078, 209.87600708007812, 23.986740112304688, 61.4541015625 ], "score": 0.995161771774292 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 10.425450801849365, 218.24368286132812, 40.68972826004028, 101.86175537109375 ], "score": 0.9765568971633911 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 533.480224609375, 70.8887939453125, 34.64668273925781, 98.58731079101562 ], "score": 0.32444027066230774 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 422.2665786743164, 208.9528350830078, 24.329452514648438, 58.27360534667969 ], "score": 0.2161582112312317 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 276.90128326416016, 212.09506225585938, 17.666893005371094, 32.720184326171875 ], "score": 0.12688541412353516 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 16.432712078094482, 163.63009643554688, 43.807642459869385, 122.57659912109375 ], "score": 0.11415603756904602 }, { "image_id": 1101, "category_id": 1.0, "bbox": [ 296.30517959594727, 198.69210815429688, 20.615463256835938, 50.866912841796875 ], "score": 0.10059046745300293 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 362.99217224121094, 222.36080932617188, 28.45916748046875, 75.65789794921875 ], "score": 0.9994023442268372 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 163.67538452148438, 217.90257263183594, 29.829673767089844, 68.03443908691406 ], "score": 0.9993400573730469 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 131.19932174682617, 211.69577026367188, 32.844505310058594, 79.68307495117188 ], "score": 0.99908447265625 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 483.14990997314453, 203.76260375976562, 20.992431640625, 52.816650390625 ], "score": 0.2335888147354126 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 463.25965881347656, 120.24549865722656, 28.099136352539062, 80.8408203125 ], "score": 0.188839852809906 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 551.571044921875, 66.42109680175781, 31.83837890625, 99.08432006835938 ], "score": 0.15759631991386414 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 334.1127014160156, 168.03839111328125, 23.982696533203125, 69.68057250976562 ], "score": 0.1445448398590088 }, { "image_id": 1102, "category_id": 1.0, "bbox": [ 570.6912612915039, 181.18753051757812, 29.136276245117188, 74.44085693359375 ], "score": 0.13267627358436584 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 117.47638702392578, 226.68373107910156, 38.7864875793457, 104.57875061035156 ], "score": 0.9998804926872253 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 69.77095603942871, 214.89208984375, 44.57904815673828, 115.15057373046875 ], "score": 0.9989863038063049 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 155.20445823669434, 225.39059448242188, 29.484434127807617, 73.95892333984375 ], "score": 0.9982603788375854 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 390.3961944580078, 226.7728271484375, 40.773162841796875, 108.31292724609375 ], "score": 0.997251033782959 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 578.5723495483398, 214.069580078125, 27.340011596679688, 87.7861328125 ], "score": 0.5636231899261475 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 571.5468215942383, 165.5655517578125, 35.22880554199219, 92.30584716796875 ], "score": 0.266336590051651 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 305.52921295166016, 210.87847900390625, 19.587860107421875, 38.9539794921875 ], "score": 0.18670158088207245 }, { "image_id": 1103, "category_id": 1.0, "bbox": [ 134.8750114440918, 224.3272705078125, 27.742290496826172, 76.3328857421875 ], "score": 0.1432388722896576 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 470.9941101074219, 232.1529541015625, 62.13325500488281, 166.166748046875 ], "score": 0.9997951984405518 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 111.57509803771973, 226.21803283691406, 40.92689514160156, 112.69804382324219 ], "score": 0.9983201026916504 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 75.09319305419922, 215.0413360595703, 40.534915924072266, 124.13468933105469 ], "score": 0.9980958104133606 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 322.6528549194336, 208.9314727783203, 21.305084228515625, 43.5938720703125 ], "score": 0.5555990934371948 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 313.3530807495117, 211.32627868652344, 23.241348266601562, 34.567230224609375 ], "score": 0.1904372274875641 }, { "image_id": 1104, "category_id": 1.0, "bbox": [ 344.9040222167969, 194.3480987548828, 20.871963500976562, 54.84320068359375 ], "score": 0.1716122329235077 }, { "image_id": 1105, "category_id": 1.0, "bbox": [ 336.0680389404297, 211.9431610107422, 19.839401245117188, 45.45066833496094 ], "score": 0.6849653720855713 }, { "image_id": 1105, "category_id": 1.0, "bbox": [ 10.371639728546143, 233.09353637695312, 53.356359004974365, 196.14129638671875 ], "score": 0.5453487038612366 }, { "image_id": 1105, "category_id": 1.0, "bbox": [ 361.3371276855469, 208.53622436523438, 21.346664428710938, 51.831207275390625 ], "score": 0.1091303825378418 }, { "image_id": 1106, "category_id": 1.0, "bbox": [ 338.68099212646484, 217.40707397460938, 20.1373291015625, 49.100189208984375 ], "score": 0.9863154888153076 }, { "image_id": 1106, "category_id": 1.0, "bbox": [ 324.31591033935547, 220.7883758544922, 18.59527587890625, 41.29792785644531 ], "score": 0.15735216438770294 }, { "image_id": 1106, "category_id": 1.0, "bbox": [ 359.2219543457031, 212.4396209716797, 22.798004150390625, 53.59300231933594 ], "score": 0.10809026658535004 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 360.6726837158203, 207.74853515625, 25.250625610351562, 62.348175048828125 ], "score": 0.9968636631965637 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 431.3071823120117, 209.01515197753906, 21.889114379882812, 49.82591247558594 ], "score": 0.9831068515777588 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 150.5436611175537, 203.23416137695312, 23.78605842590332, 54.726959228515625 ], "score": 0.44302937388420105 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 295.5950736999512, 212.29067993164062, 20.81432342529297, 39.66094970703125 ], "score": 0.2495177835226059 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 280.6938362121582, 216.27239990234375, 21.432456970214844, 39.729278564453125 ], "score": 0.23767977952957153 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 321.2702941894531, 215.32843017578125, 16.900863647460938, 34.158050537109375 ], "score": 0.1439850926399231 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 304.206600189209, 210.96485900878906, 19.44814682006836, 37.340576171875 ], "score": 0.12254953384399414 }, { "image_id": 1107, "category_id": 1.0, "bbox": [ 313.2935333251953, 213.75466918945312, 18.121719360351562, 34.80902099609375 ], "score": 0.11156369745731354 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 392.87044525146484, 215.20355224609375, 23.914947509765625, 60.85491943359375 ], "score": 0.9762002825737 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 291.8954849243164, 217.37965393066406, 18.13373565673828, 44.94630432128906 ], "score": 0.8349807262420654 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 310.79219818115234, 217.4597930908203, 20.524063110351562, 40.42414855957031 ], "score": 0.8140925168991089 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 432.41573333740234, 216.58692932128906, 23.3990478515625, 55.56462097167969 ], "score": 0.6488288044929504 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 329.7093200683594, 220.21873474121094, 17.950592041015625, 36.08369445800781 ], "score": 0.24236208200454712 }, { "image_id": 1108, "category_id": 1.0, "bbox": [ 143.70055198669434, 215.51197814941406, 22.547121047973633, 47.35020446777344 ], "score": 0.19520807266235352 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 319.8849105834961, 217.1394805908203, 20.355682373046875, 52.12895202636719 ], "score": 0.9972525835037231 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 435.58788299560547, 218.6592559814453, 32.04612731933594, 79.46626281738281 ], "score": 0.9966899156570435 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 420.89771270751953, 221.9091796875, 30.5841064453125, 71.619873046875 ], "score": 0.9905468821525574 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 304.8043441772461, 217.7002410888672, 19.15283203125, 48.53584289550781 ], "score": 0.977921724319458 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 97.89400100708008, 226.9258575439453, 21.479167938232422, 55.09223937988281 ], "score": 0.1556270867586136 }, { "image_id": 1109, "category_id": 1.0, "bbox": [ 346.11328125, 221.24310302734375, 17.926712036132812, 42.29656982421875 ], "score": 0.10901587456464767 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 312.8569030761719, 222.0035858154297, 22.245407104492188, 58.07460021972656 ], "score": 0.996374249458313 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 333.74393463134766, 214.32505798339844, 23.336334228515625, 66.59468078613281 ], "score": 0.9958966970443726 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 497.9047393798828, 226.29306030273438, 39.801483154296875, 105.475341796875 ], "score": 0.9926474094390869 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 363.7139892578125, 223.6682586669922, 19.945526123046875, 42.12602233886719 ], "score": 0.4215341806411743 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 539.9892807006836, 269.713623046875, 30.393829345703125, 81.70697021484375 ], "score": 0.23774732649326324 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 484.5170593261719, 253.9271697998047, 47.16484069824219, 108.49174499511719 ], "score": 0.1272720843553543 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 526.1732482910156, 235.41445922851562, 45.50300598144531, 104.0694580078125 ], "score": 0.11870374530553818 }, { "image_id": 1110, "category_id": 1.0, "bbox": [ 453.33683013916016, 218.49317932128906, 34.763031005859375, 63.87956237792969 ], "score": 0.10781776160001755 }, { "image_id": 1111, "category_id": 1.0, "bbox": [ 565.0056076049805, 231.018310546875, 48.48480224609375, 124.88360595703125 ], "score": 0.9996099472045898 }, { "image_id": 1111, "category_id": 1.0, "bbox": [ 326.6946029663086, 215.65048217773438, 30.991973876953125, 86.530029296875 ], "score": 0.9992994070053101 }, { "image_id": 1111, "category_id": 1.0, "bbox": [ 307.4550437927246, 217.215576171875, 26.196613311767578, 83.04083251953125 ], "score": 0.9961040616035461 }, { "image_id": 1111, "category_id": 1.0, "bbox": [ 371.3642120361328, 227.96517944335938, 21.821746826171875, 44.552093505859375 ], "score": 0.9149634838104248 }, { "image_id": 1111, "category_id": 1.0, "bbox": [ 435.1743698120117, 199.72610473632812, 31.841506958007812, 78.99237060546875 ], "score": 0.20780876278877258 }, { "image_id": 1112, "category_id": 1.0, "bbox": [ 298.81534576416016, 219.40748596191406, 33.98994445800781, 108.98701477050781 ], "score": 0.9949806928634644 }, { "image_id": 1112, "category_id": 1.0, "bbox": [ 374.2525863647461, 231.32603454589844, 21.26434326171875, 43.91328430175781 ], "score": 0.9882491827011108 }, { "image_id": 1112, "category_id": 1.0, "bbox": [ 275.6147766113281, 224.02780151367188, 33.160247802734375, 102.39990234375 ], "score": 0.9609204530715942 }, { "image_id": 1112, "category_id": 1.0, "bbox": [ 446.3066864013672, 215.1640167236328, 39.427490234375, 63.92668151855469 ], "score": 0.291138231754303 }, { "image_id": 1113, "category_id": 1.0, "bbox": [ 376.85916900634766, 226.16641235351562, 24.57000732421875, 46.98345947265625 ], "score": 0.999110221862793 }, { "image_id": 1113, "category_id": 1.0, "bbox": [ 238.7636375427246, 207.9286651611328, 47.70088195800781, 153.48692321777344 ], "score": 0.9983178377151489 }, { "image_id": 1113, "category_id": 1.0, "bbox": [ 199.62793350219727, 220.17933654785156, 43.41026306152344, 118.46568298339844 ], "score": 0.9931370615959167 }, { "image_id": 1113, "category_id": 1.0, "bbox": [ 292.13184356689453, 212.54293823242188, 15.769882202148438, 29.829681396484375 ], "score": 0.1596611589193344 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 75.34117698669434, 206.09902954101562, 79.87207412719727, 250.17181396484375 ], "score": 0.9991565942764282 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 46.16464614868164, 209.78875732421875, 79.88954544067383, 217.5423583984375 ], "score": 0.9968926906585693 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 381.8489074707031, 221.08328247070312, 21.94366455078125, 55.52532958984375 ], "score": 0.9965003728866577 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 105.72513580322266, 212.3797607421875, 64.03984069824219, 195.57305908203125 ], "score": 0.5518715381622314 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 290.3153991699219, 209.4881134033203, 16.651573181152344, 32.574005126953125 ], "score": 0.27096807956695557 }, { "image_id": 1114, "category_id": 1.0, "bbox": [ 63.12551498413086, 207.85308837890625, 51.665687561035156, 111.7757568359375 ], "score": 0.1942031979560852 }, { "image_id": 1115, "category_id": 1.0, "bbox": [ 377.8536605834961, 248.0694122314453, 24.696426391601562, 52.83921813964844 ], "score": 0.9967304468154907 }, { "image_id": 1115, "category_id": 1.0, "bbox": [ 286.46291732788086, 233.7655792236328, 16.906509399414062, 31.945846557617188 ], "score": 0.22885334491729736 }, { "image_id": 1116, "category_id": 1.0, "bbox": [ 384.1963577270508, 258.8204040527344, 25.04913330078125, 52.946044921875 ], "score": 0.9997106194496155 }, { "image_id": 1116, "category_id": 1.0, "bbox": [ 284.43838119506836, 248.36679077148438, 16.22264862060547, 28.04302978515625 ], "score": 0.16463349759578705 }, { "image_id": 1117, "category_id": 1.0, "bbox": [ 383.97483825683594, 232.68612670898438, 25.882415771484375, 54.7877197265625 ], "score": 0.9998002052307129 }, { "image_id": 1117, "category_id": 1.0, "bbox": [ 271.8568420410156, 213.44586181640625, 19.834022521972656, 36.9268798828125 ], "score": 0.3884289264678955 }, { "image_id": 1118, "category_id": 1.0, "bbox": [ 377.17945098876953, 238.93728637695312, 27.216949462890625, 60.842529296875 ], "score": 0.9998922348022461 }, { "image_id": 1118, "category_id": 1.0, "bbox": [ 251.7688751220703, 221.43490600585938, 21.31671905517578, 41.958038330078125 ], "score": 0.528815507888794 }, { "image_id": 1118, "category_id": 1.0, "bbox": [ 183.6252784729004, 121.5250244140625, 40.07011413574219, 101.337646484375 ], "score": 0.2190195471048355 }, { "image_id": 1119, "category_id": 1.0, "bbox": [ 372.5149917602539, 210.95751953125, 30.092086791992188, 65.42852783203125 ], "score": 0.9998750686645508 }, { "image_id": 1119, "category_id": 1.0, "bbox": [ 235.95577239990234, 191.6675262451172, 20.124588012695312, 44.379302978515625 ], "score": 0.5787088871002197 }, { "image_id": 1120, "category_id": 1.0, "bbox": [ 386.3805389404297, 232.86802673339844, 30.722198486328125, 73.26994323730469 ], "score": 0.9997049570083618 }, { "image_id": 1120, "category_id": 1.0, "bbox": [ 227.89426803588867, 218.5625, 21.949462890625, 45.099822998046875 ], "score": 0.6520044803619385 }, { "image_id": 1120, "category_id": 1.0, "bbox": [ 256.6753578186035, 207.41224670410156, 16.971588134765625, 33.7425537109375 ], "score": 0.1605214774608612 }, { "image_id": 1121, "category_id": 1.0, "bbox": [ 416.66046142578125, 238.93170166015625, 34.71763610839844, 94.9888916015625 ], "score": 0.9996703863143921 }, { "image_id": 1121, "category_id": 1.0, "bbox": [ 220.64058303833008, 217.85519409179688, 22.0452880859375, 49.3651123046875 ], "score": 0.9616305828094482 }, { "image_id": 1121, "category_id": 1.0, "bbox": [ 54.727182388305664, 210.44976806640625, 25.141677856445312, 60.937591552734375 ], "score": 0.35031574964523315 }, { "image_id": 1121, "category_id": 1.0, "bbox": [ 251.3270378112793, 213.92457580566406, 16.258277893066406, 31.441680908203125 ], "score": 0.23836538195610046 }, { "image_id": 1121, "category_id": 1.0, "bbox": [ 239.70500946044922, 211.52859497070312, 23.379135131835938, 34.5736083984375 ], "score": 0.1010698452591896 }, { "image_id": 1122, "category_id": 1.0, "bbox": [ 473.5607147216797, 242.22743225097656, 52.00469970703125, 132.81761169433594 ], "score": 0.9995646476745605 }, { "image_id": 1122, "category_id": 1.0, "bbox": [ 219.34677124023438, 218.8655242919922, 22.780494689941406, 57.79664611816406 ], "score": 0.9971144199371338 }, { "image_id": 1122, "category_id": 1.0, "bbox": [ 254.8531150817871, 211.1280517578125, 18.430633544921875, 35.341217041015625 ], "score": 0.29826104640960693 }, { "image_id": 1122, "category_id": 1.0, "bbox": [ 520.8335113525391, 263.3052062988281, 38.33946228027344, 71.05841064453125 ], "score": 0.188360333442688 }, { "image_id": 1123, "category_id": 1.0, "bbox": [ 205.93809127807617, 221.3638916015625, 32.34569549560547, 74.64117431640625 ], "score": 0.9996384382247925 }, { "image_id": 1123, "category_id": 1.0, "bbox": [ 265.9608840942383, 209.8984832763672, 19.616775512695312, 44.500457763671875 ], "score": 0.9340691566467285 }, { "image_id": 1123, "category_id": 1.0, "bbox": [ 250.2074432373047, 210.50674438476562, 18.075103759765625, 42.690460205078125 ], "score": 0.5483136177062988 }, { "image_id": 1123, "category_id": 1.0, "bbox": [ 350.5125427246094, 210.73777770996094, 19.734344482421875, 38.4932861328125 ], "score": 0.18520954251289368 }, { "image_id": 1123, "category_id": 1.0, "bbox": [ 318.93320083618164, 209.97142028808594, 14.515819549560547, 25.781707763671875 ], "score": 0.10654894262552261 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 155.95802307128906, 225.9766845703125, 43.249969482421875, 104.5546875 ], "score": 0.9990982413291931 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 241.7094612121582, 211.78819274902344, 20.15369415283203, 53.09245300292969 ], "score": 0.9895167350769043 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 261.331729888916, 212.2017364501953, 19.284439086914062, 50.48280334472656 ], "score": 0.9890508651733398 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 364.5481491088867, 218.70932006835938, 21.716156005859375, 41.60614013671875 ], "score": 0.7948249578475952 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 142.62056350708008, 227.14157104492188, 32.3707389831543, 107.4244384765625 ], "score": 0.18626536428928375 }, { "image_id": 1124, "category_id": 1.0, "bbox": [ 321.9633483886719, 213.7586212158203, 17.293014526367188, 29.85235595703125 ], "score": 0.13950495421886444 }, { "image_id": 1125, "category_id": 1.0, "bbox": [ 216.954345703125, 204.33010864257812, 25.623626708984375, 72.67340087890625 ], "score": 0.9987738132476807 }, { "image_id": 1125, "category_id": 1.0, "bbox": [ 239.92315292358398, 213.94895935058594, 22.251548767089844, 59.04972839355469 ], "score": 0.997035026550293 }, { "image_id": 1125, "category_id": 1.0, "bbox": [ 372.7215576171875, 219.19583129882812, 21.679458618164062, 54.199005126953125 ], "score": 0.9919024705886841 }, { "image_id": 1125, "category_id": 1.0, "bbox": [ 321.93614959716797, 213.94813537597656, 15.485763549804688, 30.27862548828125 ], "score": 0.23862850666046143 }, { "image_id": 1126, "category_id": 1.0, "bbox": [ 388.32096099853516, 214.77871704101562, 26.510086059570312, 68.77685546875 ], "score": 0.9979583024978638 }, { "image_id": 1126, "category_id": 1.0, "bbox": [ 209.5442771911621, 215.3057098388672, 27.9296875, 75.70964050292969 ], "score": 0.9973798990249634 }, { "image_id": 1126, "category_id": 1.0, "bbox": [ 182.2522735595703, 207.77442932128906, 33.76701354980469, 91.77876281738281 ], "score": 0.9939857721328735 }, { "image_id": 1126, "category_id": 1.0, "bbox": [ 321.89613342285156, 206.85708618164062, 17.6214599609375, 42.017425537109375 ], "score": 0.22639060020446777 }, { "image_id": 1126, "category_id": 1.0, "bbox": [ 314.20969009399414, 209.8863983154297, 17.172412872314453, 35.394317626953125 ], "score": 0.11355940252542496 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 93.05147171020508, 207.9229278564453, 53.45958709716797, 146.8741912841797 ], "score": 0.9993441104888916 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 131.64246559143066, 220.36965942382812, 46.13558769226074, 126.10205078125 ], "score": 0.9977272748947144 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 412.98614501953125, 225.37887573242188, 35.52490234375, 91.36370849609375 ], "score": 0.9959943294525146 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 312.46416091918945, 210.66778564453125, 19.61721420288086, 42.996734619140625 ], "score": 0.6071227788925171 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 169.420166015625, 205.3416748046875, 22.77263641357422, 56.905426025390625 ], "score": 0.2506173551082611 }, { "image_id": 1127, "category_id": 1.0, "bbox": [ 302.92531967163086, 215.801025390625, 21.762828826904297, 37.739227294921875 ], "score": 0.24512159824371338 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 471.9127655029297, 229.38125610351562, 46.94206237792969, 135.92193603515625 ], "score": 0.9957720637321472 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 299.1223907470703, 210.38885498046875, 18.014488220214844, 46.296905517578125 ], "score": 0.885517954826355 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 315.3041458129883, 210.037109375, 18.524551391601562, 48.1612548828125 ], "score": 0.8527274131774902 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 337.92064666748047, 209.16896057128906, 18.876953125, 42.94384765625 ], "score": 0.5938544273376465 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 307.06336975097656, 210.3059844970703, 19.4842529296875, 47.89286804199219 ], "score": 0.5825409889221191 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 345.8663558959961, 210.40367126464844, 19.622421264648438, 42.975494384765625 ], "score": 0.4481639266014099 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 331.16817474365234, 209.376220703125, 17.810516357421875, 42.017578125 ], "score": 0.3355473279953003 }, { "image_id": 1128, "category_id": 1.0, "bbox": [ 354.0559768676758, 211.113525390625, 19.293060302734375, 46.007415771484375 ], "score": 0.22473645210266113 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 316.1666488647461, 215.443603515625, 20.428237915039062, 50.82147216796875 ], "score": 0.9352411031723022 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 101.69843673706055, 205.71531677246094, 25.481815338134766, 56.44908142089844 ], "score": 0.9003018140792847 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 355.8830261230469, 214.01112365722656, 19.571914672851562, 46.43095397949219 ], "score": 0.8994495868682861 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 285.72832107543945, 213.4552459716797, 24.704627990722656, 47.80491638183594 ], "score": 0.6966480016708374 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 347.99915313720703, 212.78599548339844, 18.515625, 46.44132995605469 ], "score": 0.34226176142692566 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 118.31722259521484, 208.44589233398438, 23.37350845336914, 47.21917724609375 ], "score": 0.26462656259536743 }, { "image_id": 1129, "category_id": 1.0, "bbox": [ 339.46094512939453, 213.53701782226562, 17.293014526367188, 44.978271484375 ], "score": 0.19597670435905457 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 330.28656005859375, 213.5434112548828, 19.737930297851562, 58.22950744628906 ], "score": 0.9949103593826294 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 260.31911849975586, 213.1455078125, 23.062095642089844, 53.0391845703125 ], "score": 0.9924912452697754 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 289.865665435791, 212.32667541503906, 23.79150390625, 58.06303405761719 ], "score": 0.989761233329773 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 28.196125030517578, 199.74484252929688, 42.69847869873047, 87.73007202148438 ], "score": 0.8626502752304077 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 345.8139419555664, 217.10768127441406, 23.181076049804688, 60.79112243652344 ], "score": 0.7947611808776855 }, { "image_id": 1130, "category_id": 1.0, "bbox": [ 46.145944595336914, 192.74838256835938, 33.24124336242676, 83.46658325195312 ], "score": 0.5983026027679443 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 257.4157524108887, 213.7804718017578, 25.610122680664062, 60.51979064941406 ], "score": 0.9980707168579102 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 231.4463233947754, 213.33258056640625, 24.82463836669922, 56.73211669921875 ], "score": 0.9921812415122986 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 295.8787155151367, 219.16482543945312, 19.818191528320312, 62.80279541015625 ], "score": 0.9901533126831055 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 314.36317443847656, 214.3528594970703, 23.324432373046875, 70.61622619628906 ], "score": 0.9645264744758606 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 248.20743560791016, 214.97708129882812, 22.916641235351562, 55.060394287109375 ], "score": 0.6706113219261169 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 304.5599937438965, 212.93368530273438, 23.539676666259766, 72.31878662109375 ], "score": 0.4761489927768707 }, { "image_id": 1131, "category_id": 1.0, "bbox": [ 326.18797302246094, 221.37615966796875, 25.661544799804688, 64.20260620117188 ], "score": 0.1076754778623581 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 275.23670196533203, 220.57778930664062, 26.05731964111328, 74.01666259765625 ], "score": 0.9639617800712585 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 255.37267684936523, 215.33474731445312, 23.81256103515625, 60.469635009765625 ], "score": 0.959646463394165 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 301.73757553100586, 217.5262908935547, 28.57992172241211, 82.21580505371094 ], "score": 0.9489374756813049 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 287.97964096069336, 220.1063232421875, 23.545875549316406, 72.28326416015625 ], "score": 0.2992657423019409 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 565.8495712280273, 225.05905151367188, 29.527969360351562, 77.2435302734375 ], "score": 0.16793884336948395 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 263.8519477844238, 218.8644256591797, 25.186805725097656, 71.13374328613281 ], "score": 0.1326884925365448 }, { "image_id": 1132, "category_id": 1.0, "bbox": [ 328.62308502197266, 231.590576171875, 26.327896118164062, 75.0770263671875 ], "score": 0.12392082065343857 }, { "image_id": 1133, "category_id": 1.0, "bbox": [ 298.56494903564453, 223.91238403320312, 30.322036743164062, 91.1981201171875 ], "score": 0.9944387674331665 }, { "image_id": 1133, "category_id": 1.0, "bbox": [ 321.0097885131836, 222.74497985839844, 38.059234619140625, 93.83988952636719 ], "score": 0.8554614782333374 }, { "image_id": 1133, "category_id": 1.0, "bbox": [ 338.0230712890625, 218.6218719482422, 27.220535278320312, 82.27052307128906 ], "score": 0.18582314252853394 }, { "image_id": 1134, "category_id": 1.0, "bbox": [ 311.91307067871094, 227.20274353027344, 36.44508361816406, 108.53834533691406 ], "score": 0.9910980463027954 }, { "image_id": 1134, "category_id": 1.0, "bbox": [ 352.1937942504883, 224.02023315429688, 37.38861083984375, 106.785400390625 ], "score": 0.8815042972564697 }, { "image_id": 1134, "category_id": 1.0, "bbox": [ 327.6936721801758, 225.33413696289062, 34.167327880859375, 112.39825439453125 ], "score": 0.41748911142349243 }, { "image_id": 1134, "category_id": 1.0, "bbox": [ 364.2047119140625, 224.0337371826172, 26.8914794921875, 66.35868835449219 ], "score": 0.11766282469034195 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 328.76636505126953, 235.81314086914062, 38.336334228515625, 124.875 ], "score": 0.987835705280304 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 384.76993560791016, 226.47598266601562, 41.365814208984375, 146.777587890625 ], "score": 0.983751118183136 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 354.6330261230469, 230.24586486816406, 37.091064453125, 127.22129821777344 ], "score": 0.9676370620727539 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 389.65972900390625, 211.81869506835938, 31.748428344726562, 99.19024658203125 ], "score": 0.5470052361488342 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 251.74144744873047, 210.5634307861328, 21.447410583496094, 56.46638488769531 ], "score": 0.2199634611606598 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 357.4423599243164, 216.76718139648438, 26.769027709960938, 70.1700439453125 ], "score": 0.16420884430408478 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 412.56534576416016, 224.06678771972656, 24.2547607421875, 67.12232971191406 ], "score": 0.14832866191864014 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 416.2070083618164, 227.54385375976562, 39.539337158203125, 116.26849365234375 ], "score": 0.12203168869018555 }, { "image_id": 1135, "category_id": 1.0, "bbox": [ 350.15846252441406, 232.77435302734375, 27.877197265625, 78.74334716796875 ], "score": 0.11581329256296158 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 350.849609375, 241.86019897460938, 51.688690185546875, 165.88494873046875 ], "score": 0.9930497407913208 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 427.2350311279297, 235.5662841796875, 49.26765441894531, 181.69146728515625 ], "score": 0.9802460670471191 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 393.1853485107422, 252.37481689453125, 42.09983825683594, 141.94879150390625 ], "score": 0.8477969169616699 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 366.02489471435547, 218.29165649414062, 23.951339721679688, 58.58270263671875 ], "score": 0.2747756242752075 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 443.4652328491211, 223.74420166015625, 31.640167236328125, 89.49169921875 ], "score": 0.2528596818447113 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 251.8616485595703, 214.2452850341797, 20.620765686035156, 42.90809631347656 ], "score": 0.2269960343837738 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 380.0192642211914, 252.0025634765625, 33.0755615234375, 104.6834716796875 ], "score": 0.21913224458694458 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 418.26412200927734, 244.82086181640625, 36.22283935546875, 122.73291015625 ], "score": 0.21891413629055023 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 423.4622573852539, 207.9829864501953, 39.24629211425781, 100.79624938964844 ], "score": 0.19477851688861847 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 397.73155212402344, 252.7598876953125, 28.37890625, 87.69189453125 ], "score": 0.19164232909679413 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 204.9024772644043, 27.340896606445312, 28.39092254638672, 55.778587341308594 ], "score": 0.11176172643899918 }, { "image_id": 1136, "category_id": 1.0, "bbox": [ 357.9412841796875, 213.01641845703125, 23.171615600585938, 50.361053466796875 ], "score": 0.10884727537631989 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 410.4130554199219, 269.9901123046875, 67.56179809570312, 196.66839599609375 ], "score": 0.9960826635360718 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 466.7087173461914, 270.7509460449219, 55.92041015625, 217.27838134765625 ], "score": 0.9770057797431946 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 508.76861572265625, 253.0742645263672, 69.013671875, 215.28761291503906 ], "score": 0.9748872518539429 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 379.07642364501953, 220.75469970703125, 21.438140869140625, 46.371429443359375 ], "score": 0.968235969543457 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 476.28116607666016, 264.560791015625, 42.3492431640625, 125.01971435546875 ], "score": 0.7188365459442139 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 260.1515579223633, 214.00314331054688, 19.820327758789062, 45.540374755859375 ], "score": 0.6806492805480957 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 450.1499938964844, 217.68850708007812, 39.324798583984375, 108.52301025390625 ], "score": 0.6367986798286438 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 368.64688873291016, 221.2618408203125, 21.13250732421875, 43.622344970703125 ], "score": 0.6330003142356873 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 515.5945205688477, 347.5142822265625, 46.65824890136719, 133.89410400390625 ], "score": 0.5270925164222717 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 463.2120132446289, 273.3544921875, 39.98039245605469, 130.2283935546875 ], "score": 0.5158673524856567 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 463.4485626220703, 231.72930908203125, 44.54925537109375, 104.91583251953125 ], "score": 0.30602818727493286 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 439.4783401489258, 220.009765625, 30.443649291992188, 95.38427734375 ], "score": 0.28962230682373047 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 533.3354187011719, 358.47503662109375, 44.31831359863281, 130.032958984375 ], "score": 0.20801465213298798 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 511.23241424560547, 267.32684326171875, 39.141387939453125, 150.61614990234375 ], "score": 0.1934119611978531 }, { "image_id": 1137, "category_id": 1.0, "bbox": [ 438.4910202026367, 278.92816162109375, 66.16752624511719, 181.7025146484375 ], "score": 0.1504334807395935 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 402.79300689697266, 222.99200439453125, 19.2388916015625, 43.37091064453125 ], "score": 0.9558835029602051 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 473.3110809326172, 210.28854370117188, 33.82270812988281, 115.10638427734375 ], "score": 0.9533731937408447 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 275.4983901977539, 216.13128662109375, 19.088287353515625, 44.19049072265625 ], "score": 0.7786144018173218 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 387.64495849609375, 221.45684814453125, 18.84002685546875, 43.283477783203125 ], "score": 0.7377837896347046 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 394.7583770751953, 221.81675720214844, 19.884796142578125, 46.56361389160156 ], "score": 0.6344962120056152 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 538.4424591064453, 288.21234130859375, 85.95771789550781, 288.5809326171875 ], "score": 0.6162693500518799 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 487.52384185791016, 231.65847778320312, 27.476806640625, 80.21466064453125 ], "score": 0.2828442454338074 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 466.4978790283203, 232.12010192871094, 23.351669311523438, 67.77735900878906 ], "score": 0.27571427822113037 }, { "image_id": 1138, "category_id": 1.0, "bbox": [ 507.72159576416016, 243.52972412109375, 96.90711975097656, 242.89288330078125 ], "score": 0.16210483014583588 }, { "image_id": 1139, "category_id": 1.0, "bbox": [ 484.1871643066406, 219.775634765625, 46.28501892089844, 145.97247314453125 ], "score": 0.9852508306503296 }, { "image_id": 1139, "category_id": 1.0, "bbox": [ 411.10816955566406, 219.68923950195312, 19.298858642578125, 49.189910888671875 ], "score": 0.9697884321212769 }, { "image_id": 1139, "category_id": 1.0, "bbox": [ 503.67835998535156, 229.67771911621094, 29.98565673828125, 91.75709533691406 ], "score": 0.9278725385665894 }, { "image_id": 1139, "category_id": 1.0, "bbox": [ 401.4353561401367, 218.39881896972656, 20.500335693359375, 50.67338562011719 ], "score": 0.920581579208374 }, { "image_id": 1139, "category_id": 1.0, "bbox": [ 277.8009223937988, 216.7205047607422, 18.928375244140625, 43.48042297363281 ], "score": 0.6930106282234192 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 505.41324615478516, 228.9711456298828, 59.3450927734375, 163.53245544433594 ], "score": 0.9988716840744019 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 403.99452209472656, 220.01220703125, 18.7548828125, 52.875091552734375 ], "score": 0.964850127696991 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 394.44740295410156, 221.88375854492188, 18.808135986328125, 50.045867919921875 ], "score": 0.8075651526451111 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 261.5337562561035, 220.78184509277344, 27.791709899902344, 64.28193664550781 ], "score": 0.3653212785720825 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 524.3870162963867, 230.89138793945312, 39.78118896484375, 96.96636962890625 ], "score": 0.19358931481838226 }, { "image_id": 1140, "category_id": 1.0, "bbox": [ 503.2982635498047, 231.56129455566406, 37.47947692871094, 118.91355895996094 ], "score": 0.11561758071184158 }, { "image_id": 1141, "category_id": 1.0, "bbox": [ 393.8761520385742, 224.8501739501953, 21.044464111328125, 51.82783508300781 ], "score": 0.9801369905471802 }, { "image_id": 1141, "category_id": 1.0, "bbox": [ 385.4127502441406, 225.2572021484375, 20.058364868164062, 51.1605224609375 ], "score": 0.9393306374549866 }, { "image_id": 1141, "category_id": 1.0, "bbox": [ 585.6270599365234, 237.77371215820312, 37.45758056640625, 147.67352294921875 ], "score": 0.8331514596939087 }, { "image_id": 1141, "category_id": 1.0, "bbox": [ 305.81146240234375, 211.49473571777344, 21.783065795898438, 34.736541748046875 ], "score": 0.21265830099582672 }, { "image_id": 1141, "category_id": 1.0, "bbox": [ 297.7775573730469, 213.34376525878906, 20.25482177734375, 37.187957763671875 ], "score": 0.20836567878723145 }, { "image_id": 1142, "category_id": 1.0, "bbox": [ 178.98452758789062, 221.40187072753906, 29.44915771484375, 58.21788024902344 ], "score": 0.9978415966033936 }, { "image_id": 1142, "category_id": 1.0, "bbox": [ 344.12403106689453, 218.15127563476562, 22.800979614257812, 60.870391845703125 ], "score": 0.9955223798751831 }, { "image_id": 1142, "category_id": 1.0, "bbox": [ 360.10536193847656, 223.6181182861328, 20.080947875976562, 57.01319885253906 ], "score": 0.6011753678321838 }, { "image_id": 1142, "category_id": 1.0, "bbox": [ 578.0894470214844, 231.2328338623047, 22.761917114257812, 59.59971618652344 ], "score": 0.1512077897787094 }, { "image_id": 1142, "category_id": 1.0, "bbox": [ 249.8594093322754, 214.89215087890625, 18.25824737548828, 38.17230224609375 ], "score": 0.14805111289024353 }, { "image_id": 1143, "category_id": 1.0, "bbox": [ 182.34180450439453, 218.041748046875, 26.552963256835938, 61.820281982421875 ], "score": 0.9986532926559448 }, { "image_id": 1143, "category_id": 1.0, "bbox": [ 167.70137786865234, 215.90292358398438, 26.343002319335938, 58.55499267578125 ], "score": 0.5212527513504028 }, { "image_id": 1143, "category_id": 1.0, "bbox": [ 200.63451766967773, 221.6586151123047, 22.29816436767578, 55.95085144042969 ], "score": 0.37692999839782715 }, { "image_id": 1144, "category_id": 1.0, "bbox": [ 600.4830169677734, 258.56341552734375, 20.971221923828125, 47.9473876953125 ], "score": 0.11970525979995728 }, { "image_id": 1145, "category_id": 1.0, "bbox": [ 320.6715774536133, 260.4666442871094, 18.513336181640625, 43.45245361328125 ], "score": 0.1205800399184227 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 379.88780975341797, 221.9910888671875, 31.636886596679688, 82.89825439453125 ], "score": 0.9990490674972534 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 473.26107025146484, 217.1058349609375, 36.22589111328125, 88.644287109375 ], "score": 0.9957376718521118 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 542.5836944580078, 220.0267333984375, 27.431869506835938, 74.7738037109375 ], "score": 0.9811621904373169 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 566.5963745117188, 227.20286560058594, 25.889434814453125, 78.76588439941406 ], "score": 0.970191478729248 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 590.850830078125, 231.4161376953125, 24.39453125, 76.0770263671875 ], "score": 0.9409208297729492 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 526.4794158935547, 217.27003479003906, 28.683242797851562, 75.74876403808594 ], "score": 0.6476708650588989 }, { "image_id": 1146, "category_id": 1.0, "bbox": [ 604.7183227539062, 228.8702392578125, 23.658218383789062, 70.82342529296875 ], "score": 0.10121901333332062 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 267.6109313964844, 217.77061462402344, 42.97374725341797, 99.68836975097656 ], "score": 0.9996960163116455 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 424.77832794189453, 224.84649658203125, 38.13163757324219, 94.57843017578125 ], "score": 0.9995409846305847 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 390.1737594604492, 220.21983337402344, 35.690460205078125, 95.85734558105469 ], "score": 0.9989798069000244 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 123.99759292602539, 218.3254852294922, 42.811832427978516, 96.22688293457031 ], "score": 0.9971712827682495 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 497.59403228759766, 225.72215270996094, 36.41410827636719, 117.61174011230469 ], "score": 0.9758368730545044 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 358.31844329833984, 218.6441650390625, 26.801223754882812, 89.47357177734375 ], "score": 0.9286612272262573 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 346.5901565551758, 218.59896850585938, 24.9688720703125, 88.014404296875 ], "score": 0.5759029388427734 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 372.63790130615234, 218.89077758789062, 30.037765502929688, 89.01055908203125 ], "score": 0.5590419769287109 }, { "image_id": 1147, "category_id": 1.0, "bbox": [ 405.7529830932617, 226.31390380859375, 35.52848815917969, 101.0047607421875 ], "score": 0.14799737930297852 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 124.28586959838867, 218.5933074951172, 59.32811737060547, 129.97828674316406 ], "score": 0.9998908638954163 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 365.189208984375, 221.99349975585938, 33.073272705078125, 92.35211181640625 ], "score": 0.9927440881729126 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 261.95140838623047, 224.56756591796875, 34.09210205078125, 99.0921630859375 ], "score": 0.9914249181747437 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 331.4686965942383, 221.3689727783203, 34.99427795410156, 120.01322937011719 ], "score": 0.9897572994232178 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 492.8336715698242, 228.24462890625, 47.51014709472656, 146.31243896484375 ], "score": 0.9820146560668945 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 297.0884323120117, 218.46949768066406, 35.9637451171875, 121.67283630371094 ], "score": 0.9571148157119751 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 314.59930419921875, 219.3544158935547, 34.0625, 115.26087951660156 ], "score": 0.8156602382659912 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 346.8852996826172, 221.75904846191406, 33.22914123535156, 98.40660095214844 ], "score": 0.6364398002624512 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 286.982479095459, 220.4605712890625, 30.519371032714844, 111.41717529296875 ], "score": 0.6130222678184509 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 321.0663604736328, 260.61846923828125, 34.38201904296875, 90.4578857421875 ], "score": 0.1896088719367981 }, { "image_id": 1148, "category_id": 1.0, "bbox": [ 481.41998291015625, 259.09564208984375, 40.82244873046875, 118.37164306640625 ], "score": 0.15650448203086853 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 318.4864044189453, 215.49310302734375, 41.44111633300781, 113.67913818359375 ], "score": 0.9985575675964355 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 273.1418228149414, 215.0438232421875, 46.253509521484375, 155.9935302734375 ], "score": 0.9958216547966003 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 7.384896278381348, 211.66409301757812, 62.3545503616333, 163.610107421875 ], "score": 0.9920222759246826 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 535.1981735229492, 249.77798461914062, 62.011260986328125, 185.88641357421875 ], "score": 0.98309725522995 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 226.8848419189453, 214.450927734375, 49.63062286376953, 153.35540771484375 ], "score": 0.9783935546875 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 228.1085968017578, 287.3726806640625, 52.28385925292969, 109.6273193359375 ], "score": 0.9321109056472778 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 379.03881072998047, 210.99574279785156, 21.183624267578125, 43.982269287109375 ], "score": 0.8112907409667969 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 210.9761619567871, 238.7882080078125, 36.167335510253906, 111.78240966796875 ], "score": 0.47639816999435425 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 567.6153945922852, 322.8042907714844, 39.46128845214844, 125.83538818359375 ], "score": 0.16723352670669556 }, { "image_id": 1149, "category_id": 1.0, "bbox": [ 274.15157318115234, 200.95187377929688, 32.47200012207031, 73.67904663085938 ], "score": 0.12737227976322174 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 266.0300827026367, 212.78240966796875, 55.1397705078125, 146.24346923828125 ], "score": 0.9992386102676392 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 114.78726387023926, 215.11138916015625, 71.95151329040527, 203.46307373046875 ], "score": 0.994017481803894 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 225.91489791870117, 215.69537353515625, 47.623558044433594, 149.41351318359375 ], "score": 0.9877752065658569 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 185.72893142700195, 215.91815185546875, 59.289512634277344, 196.8291015625 ], "score": 0.981598973274231 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 371.18534088134766, 215.0190887451172, 21.000823974609375, 41.90925598144531 ], "score": 0.968193769454956 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 149.85849380493164, 218.3731689453125, 61.977996826171875, 178.6993408203125 ], "score": 0.9484084844589233 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 95.66431045532227, 320.4134521484375, 70.57315826416016, 149.243896484375 ], "score": 0.892235517501831 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 186.0378646850586, 217.13961791992188, 34.879913330078125, 89.1627197265625 ], "score": 0.6217882633209229 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 350.82576751708984, 215.9960174560547, 20.76202392578125, 41.94407653808594 ], "score": 0.6102696657180786 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 361.87854766845703, 217.1352996826172, 22.193450927734375, 40.66069030761719 ], "score": 0.16589078307151794 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 178.29381942749023, 324.81488037109375, 22.222671508789062, 57.055908203125 ], "score": 0.10596316307783127 }, { "image_id": 1150, "category_id": 1.0, "bbox": [ 199.57340240478516, 320.9254455566406, 24.38243865966797, 62.52545166015625 ], "score": 0.10294916480779648 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 201.51092529296875, 225.0308074951172, 65.45806884765625, 152.9594268798828 ], "score": 0.9997749328613281 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 149.75341796875, 210.44256591796875, 58.743743896484375, 178.3701171875 ], "score": 0.9996844530105591 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 36.31696701049805, 202.3616943359375, 86.28151893615723, 242.8878173828125 ], "score": 0.9736718535423279 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 74.09029006958008, 216.81309509277344, 69.70273971557617, 247.42091369628906 ], "score": 0.9714735746383667 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 358.6897659301758, 213.08541870117188, 21.180343627929688, 45.583831787109375 ], "score": 0.9543117880821228 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 18.476266860961914, 226.93896484375, 66.49213790893555, 235.363525390625 ], "score": 0.858303964138031 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 367.82726287841797, 213.41592407226562, 21.804122924804688, 44.29071044921875 ], "score": 0.3863605558872223 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 96.94755554199219, 218.49343872070312, 55.76383590698242, 170.11572265625 ], "score": 0.3116016983985901 }, { "image_id": 1151, "category_id": 1.0, "bbox": [ 15.840868949890137, 278.2771301269531, 44.44941520690918, 148.4989013671875 ], "score": 0.11714243143796921 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 96.30050659179688, 214.58267211914062, 76.06008529663086, 198.26275634765625 ], "score": 0.9995875358581543 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 20.98637819290161, 216.11595153808594, 69.31383848190308, 246.55165100097656 ], "score": 0.9983972311019897 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 336.2181091308594, 216.5135498046875, 19.052886962890625, 44.354339599609375 ], "score": 0.9658480286598206 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 320.7297897338867, 214.23390197753906, 18.894577026367188, 46.02055358886719 ], "score": 0.797547459602356 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 207.5165557861328, 205.6375274658203, 27.638816833496094, 50.64143371582031 ], "score": 0.4158177971839905 }, { "image_id": 1152, "category_id": 1.0, "bbox": [ 351.5562057495117, 213.81561279296875, 19.573287963867188, 41.274383544921875 ], "score": 0.23229451477527618 }, { "image_id": 1153, "category_id": 1.0, "bbox": [ 308.0107879638672, 216.15850830078125, 19.361953735351562, 50.810760498046875 ], "score": 0.9719357490539551 }, { "image_id": 1153, "category_id": 1.0, "bbox": [ 292.5448799133301, 215.78985595703125, 19.296913146972656, 48.304901123046875 ], "score": 0.8325657248497009 }, { "image_id": 1153, "category_id": 1.0, "bbox": [ 338.07228088378906, 216.17633056640625, 18.27423095703125, 41.664703369140625 ], "score": 0.2808270752429962 }, { "image_id": 1154, "category_id": 1.0, "bbox": [ 300.6733703613281, 212.87606811523438, 20.375213623046875, 50.97509765625 ], "score": 0.9903459548950195 }, { "image_id": 1154, "category_id": 1.0, "bbox": [ 340.55065155029297, 214.6603546142578, 20.716400146484375, 48.92988586425781 ], "score": 0.9823514819145203 }, { "image_id": 1154, "category_id": 1.0, "bbox": [ 286.0799789428711, 210.92848205566406, 20.144577026367188, 51.15476989746094 ], "score": 0.8941799402236938 }, { "image_id": 1154, "category_id": 1.0, "bbox": [ 140.07085800170898, 230.2378387451172, 32.056541442871094, 42.11668395996094 ], "score": 0.18426434695720673 }, { "image_id": 1155, "category_id": 1.0, "bbox": [ 302.8167724609375, 210.3734130859375, 23.08788299560547, 60.073516845703125 ], "score": 0.9988057613372803 }, { "image_id": 1155, "category_id": 1.0, "bbox": [ 357.8730010986328, 217.40675354003906, 25.599746704101562, 59.97038269042969 ], "score": 0.9979761242866516 }, { "image_id": 1155, "category_id": 1.0, "bbox": [ 289.8012161254883, 212.75271606445312, 20.388641357421875, 57.006866455078125 ], "score": 0.9381875991821289 }, { "image_id": 1155, "category_id": 1.0, "bbox": [ 112.35655784606934, 239.9245147705078, 41.82136535644531, 56.30973815917969 ], "score": 0.3322065472602844 }, { "image_id": 1155, "category_id": 1.0, "bbox": [ 342.95684814453125, 124.9322738647461, 39.10575866699219, 104.45462799072266 ], "score": 0.16741684079170227 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 379.1142272949219, 218.710205078125, 33.04145812988281, 81.7164306640625 ], "score": 0.9997916221618652 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 306.00990295410156, 217.47149658203125, 23.950424194335938, 66.8897705078125 ], "score": 0.9990737438201904 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 297.3201370239258, 220.20069885253906, 22.71350860595703, 63.40693664550781 ], "score": 0.9239156246185303 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 62.51365661621094, 261.34832763671875, 42.886104583740234, 71.70538330078125 ], "score": 0.5855837464332581 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 251.0985565185547, 218.36541748046875, 19.44843292236328, 42.96014404296875 ], "score": 0.30375364422798157 }, { "image_id": 1156, "category_id": 1.0, "bbox": [ 43.5975456237793, 253.9146728515625, 45.724687576293945, 95.42498779296875 ], "score": 0.14129051566123962 }, { "image_id": 1157, "category_id": 1.0, "bbox": [ 430.1115417480469, 213.05992126464844, 51.54411315917969, 129.4350128173828 ], "score": 0.9999502301216125 }, { "image_id": 1157, "category_id": 1.0, "bbox": [ 308.7927436828613, 213.33120727539062, 28.123188018798828, 76.7994384765625 ], "score": 0.996660590171814 }, { "image_id": 1157, "category_id": 1.0, "bbox": [ 291.0926628112793, 209.40504455566406, 24.941635131835938, 76.30259704589844 ], "score": 0.9885786771774292 }, { "image_id": 1157, "category_id": 1.0, "bbox": [ 22.194557189941406, 99.40409088134766, 43.31815719604492, 129.92345428466797 ], "score": 0.3386354446411133 }, { "image_id": 1158, "category_id": 1.0, "bbox": [ 336.6386032104492, 213.78456115722656, 23.153152465820312, 46.89964294433594 ], "score": 0.9971933364868164 }, { "image_id": 1158, "category_id": 1.0, "bbox": [ 294.59556579589844, 211.7293243408203, 35.10688781738281, 94.69071960449219 ], "score": 0.9971672296524048 }, { "image_id": 1158, "category_id": 1.0, "bbox": [ 270.0090980529785, 209.48953247070312, 39.21630859375, 94.68115234375 ], "score": 0.9969676733016968 }, { "image_id": 1158, "category_id": 1.0, "bbox": [ 576.0511016845703, 233.99081420898438, 63.22319030761719, 252.26959228515625 ], "score": 0.3397141993045807 }, { "image_id": 1159, "category_id": 1.0, "bbox": [ 229.3872833251953, 214.54476928710938, 39.47784423828125, 116.29949951171875 ], "score": 0.9982724189758301 }, { "image_id": 1159, "category_id": 1.0, "bbox": [ 261.9607162475586, 212.52947998046875, 39.38037872314453, 113.096923828125 ], "score": 0.9977114796638489 }, { "image_id": 1159, "category_id": 1.0, "bbox": [ 380.44071197509766, 216.15658569335938, 20.702438354492188, 56.777923583984375 ], "score": 0.8805344700813293 }, { "image_id": 1159, "category_id": 1.0, "bbox": [ 33.7073278427124, 77.02986907958984, 22.84651756286621, 66.44745635986328 ], "score": 0.17100746929645538 }, { "image_id": 1160, "category_id": 1.0, "bbox": [ 157.96319007873535, 214.74346923828125, 53.061838150024414, 148.4962158203125 ], "score": 0.9991048574447632 }, { "image_id": 1160, "category_id": 1.0, "bbox": [ 194.81256484985352, 210.42001342773438, 45.09265899658203, 145.96624755859375 ], "score": 0.9939475059509277 }, { "image_id": 1161, "category_id": 1.0, "bbox": [ 114.57210540771484, 225.63058471679688, 66.7837905883789, 209.40386962890625 ], "score": 0.9979929327964783 }, { "image_id": 1161, "category_id": 1.0, "bbox": [ 63.54989528656006, 226.82894897460938, 70.61911106109619, 213.56707763671875 ], "score": 0.9975887537002563 }, { "image_id": 1162, "category_id": 1.0, "bbox": [ 3.0904006958007812, 219.80987548828125, 95.63634872436523, 249.74102783203125 ], "score": 0.991801917552948 }, { "image_id": 1162, "category_id": 1.0, "bbox": [ 535.60302734375, 228.1746826171875, 24.12017822265625, 52.05322265625 ], "score": 0.107526995241642 }, { "image_id": 1163, "category_id": 1.0, "bbox": [ 228.2139778137207, 211.77838134765625, 20.372543334960938, 51.280731201171875 ], "score": 0.6608080863952637 }, { "image_id": 1163, "category_id": 1.0, "bbox": [ 581.4437484741211, 241.2454833984375, 25.522842407226562, 38.1427001953125 ], "score": 0.1683156043291092 }, { "image_id": 1164, "category_id": 1.0, "bbox": [ 227.9425811767578, 219.02447509765625, 19.097938537597656, 48.056671142578125 ], "score": 0.9874011278152466 }, { "image_id": 1164, "category_id": 1.0, "bbox": [ 326.42574310302734, 222.36297607421875, 11.885147094726562, 28.26806640625 ], "score": 0.11435716599225998 }, { "image_id": 1165, "category_id": 1.0, "bbox": [ 239.36683654785156, 212.85874938964844, 21.309432983398438, 50.75700378417969 ], "score": 0.9975526928901672 }, { "image_id": 1165, "category_id": 1.0, "bbox": [ 353.1454849243164, 220.1910858154297, 15.478363037109375, 31.625946044921875 ], "score": 0.13823279738426208 }, { "image_id": 1166, "category_id": 1.0, "bbox": [ 253.6963653564453, 226.5363006591797, 20.318984985351562, 56.26655578613281 ], "score": 0.9980208873748779 }, { "image_id": 1166, "category_id": 1.0, "bbox": [ 445.19744873046875, 231.92431640625, 32.022857666015625, 80.1170654296875 ], "score": 0.44262227416038513 }, { "image_id": 1166, "category_id": 1.0, "bbox": [ 371.4000701904297, 228.55874633789062, 21.741561889648438, 42.348846435546875 ], "score": 0.24085745215415955 }, { "image_id": 1166, "category_id": 1.0, "bbox": [ 220.98756790161133, 216.4419403076172, 31.112060546875, 73.88322448730469 ], "score": 0.1564541757106781 }, { "image_id": 1166, "category_id": 1.0, "bbox": [ 234.81800079345703, 228.05419921875, 22.11803436279297, 56.72625732421875 ], "score": 0.15503531694412231 }, { "image_id": 1167, "category_id": 1.0, "bbox": [ 216.78834915161133, 219.8548583984375, 24.44427490234375, 60.460723876953125 ], "score": 0.9999076724052429 }, { "image_id": 1167, "category_id": 1.0, "bbox": [ 194.33557510375977, 212.60638427734375, 28.664016723632812, 75.29959106445312 ], "score": 0.9581886529922485 }, { "image_id": 1167, "category_id": 1.0, "bbox": [ 452.08587646484375, 236.42575073242188, 31.854400634765625, 75.74755859375 ], "score": 0.3433636724948883 }, { "image_id": 1167, "category_id": 1.0, "bbox": [ 360.50880432128906, 218.4397430419922, 23.1488037109375, 47.45027160644531 ], "score": 0.3247819244861603 }, { "image_id": 1168, "category_id": 1.0, "bbox": [ 177.9538917541504, 197.83604431152344, 25.81073760986328, 78.59611511230469 ], "score": 0.9977661967277527 }, { "image_id": 1168, "category_id": 1.0, "bbox": [ 153.55344772338867, 199.484619140625, 28.776397705078125, 73.58856201171875 ], "score": 0.9977384209632874 }, { "image_id": 1168, "category_id": 1.0, "bbox": [ 356.24549865722656, 208.05126953125, 20.794830322265625, 49.886810302734375 ], "score": 0.9529969692230225 }, { "image_id": 1168, "category_id": 1.0, "bbox": [ 475.3848648071289, 221.60548400878906, 49.246063232421875, 110.90782165527344 ], "score": 0.3535146713256836 }, { "image_id": 1169, "category_id": 1.0, "bbox": [ 94.19977188110352, 216.32225036621094, 37.846527099609375, 91.82295227050781 ], "score": 0.9992778301239014 }, { "image_id": 1169, "category_id": 1.0, "bbox": [ 128.62406730651855, 218.38333129882812, 35.72598457336426, 91.631103515625 ], "score": 0.999127984046936 }, { "image_id": 1169, "category_id": 1.0, "bbox": [ 359.36256408691406, 222.7491912841797, 21.930007934570312, 57.28636169433594 ], "score": 0.9875087738037109 }, { "image_id": 1170, "category_id": 1.0, "bbox": [ 58.986544609069824, 229.30560302734375, 53.24516773223877, 118.3558349609375 ], "score": 0.9993555545806885 }, { "image_id": 1170, "category_id": 1.0, "bbox": [ 367.37979888916016, 222.2720489501953, 23.384017944335938, 72.02812194824219 ], "score": 0.9991621971130371 }, { "image_id": 1170, "category_id": 1.0, "bbox": [ 15.40311574935913, 224.85203552246094, 50.510056018829346, 116.54664611816406 ], "score": 0.997427225112915 }, { "image_id": 1170, "category_id": 1.0, "bbox": [ 526.4250946044922, 228.36398315429688, 28.119354248046875, 69.80755615234375 ], "score": 0.2541080117225647 }, { "image_id": 1171, "category_id": 1.0, "bbox": [ 393.66390228271484, 220.70986938476562, 29.7369384765625, 89.93890380859375 ], "score": 0.9970721006393433 }, { "image_id": 1171, "category_id": 1.0, "bbox": [ 252.1497344970703, 207.5080108642578, 17.020950317382812, 33.69293212890625 ], "score": 0.15685738623142242 }, { "image_id": 1172, "category_id": 1.0, "bbox": [ 472.40535736083984, 230.62631225585938, 40.35858154296875, 127.55731201171875 ], "score": 0.9915426969528198 }, { "image_id": 1172, "category_id": 1.0, "bbox": [ 276.47586822509766, 203.41827392578125, 18.602066040039062, 37.853729248046875 ], "score": 0.24883010983467102 }, { "image_id": 1172, "category_id": 1.0, "bbox": [ 579.2341232299805, 278.972412109375, 27.53875732421875, 60.117431640625 ], "score": 0.11656951904296875 }, { "image_id": 1173, "category_id": 1.0, "bbox": [ 305.2688789367676, 204.13577270507812, 18.71133804321289, 41.903961181640625 ], "score": 0.6704697608947754 }, { "image_id": 1173, "category_id": 1.0, "bbox": [ 294.51452255249023, 212.7069549560547, 18.250160217285156, 34.243377685546875 ], "score": 0.1975158154964447 }, { "image_id": 1173, "category_id": 1.0, "bbox": [ 278.2023811340332, 216.30091857910156, 17.67383575439453, 31.1444091796875 ], "score": 0.18066874146461487 }, { "image_id": 1174, "category_id": 1.0, "bbox": [ 308.2609748840332, 206.07186889648438, 19.117870330810547, 38.683807373046875 ], "score": 0.41657155752182007 }, { "image_id": 1174, "category_id": 1.0, "bbox": [ 277.51028060913086, 210.77537536621094, 16.88018798828125, 34.22296142578125 ], "score": 0.2896656394004822 }, { "image_id": 1174, "category_id": 1.0, "bbox": [ 293.90464782714844, 209.72982788085938, 19.177474975585938, 36.048095703125 ], "score": 0.12329240143299103 }, { "image_id": 1175, "category_id": 1.0, "bbox": [ 304.62045669555664, 212.4897918701172, 19.762134552001953, 44.47776794433594 ], "score": 0.991424560546875 }, { "image_id": 1175, "category_id": 1.0, "bbox": [ 267.91704177856445, 214.79443359375, 18.04553985595703, 41.186309814453125 ], "score": 0.8979521989822388 }, { "image_id": 1175, "category_id": 1.0, "bbox": [ 282.1543312072754, 214.95492553710938, 19.871902465820312, 43.470306396484375 ], "score": 0.392231285572052 }, { "image_id": 1176, "category_id": 1.0, "bbox": [ 289.6185874938965, 211.41529846191406, 21.130294799804688, 51.07392883300781 ], "score": 0.9980261325836182 }, { "image_id": 1176, "category_id": 1.0, "bbox": [ 248.44903945922852, 213.63177490234375, 18.19255828857422, 45.65814208984375 ], "score": 0.9529770612716675 }, { "image_id": 1176, "category_id": 1.0, "bbox": [ 263.0484390258789, 212.56121826171875, 21.246299743652344, 50.824188232421875 ], "score": 0.904662013053894 }, { "image_id": 1177, "category_id": 1.0, "bbox": [ 273.6549758911133, 212.7127227783203, 24.516143798828125, 67.23887634277344 ], "score": 0.9989389181137085 }, { "image_id": 1177, "category_id": 1.0, "bbox": [ 226.41586303710938, 216.23297119140625, 20.474014282226562, 59.430450439453125 ], "score": 0.9956778287887573 }, { "image_id": 1177, "category_id": 1.0, "bbox": [ 244.8925018310547, 215.4662628173828, 21.95392608642578, 59.69215393066406 ], "score": 0.9843775033950806 }, { "image_id": 1177, "category_id": 1.0, "bbox": [ 256.6695976257324, 211.90660095214844, 23.542938232421875, 63.61756896972656 ], "score": 0.13946488499641418 }, { "image_id": 1178, "category_id": 1.0, "bbox": [ 250.76683044433594, 212.6405792236328, 33.05778503417969, 83.18913269042969 ], "score": 0.9995068907737732 }, { "image_id": 1178, "category_id": 1.0, "bbox": [ 199.81449127197266, 213.46324157714844, 30.34107208251953, 80.23200988769531 ], "score": 0.998258113861084 }, { "image_id": 1178, "category_id": 1.0, "bbox": [ 223.9853286743164, 219.17471313476562, 27.11780548095703, 76.76007080078125 ], "score": 0.9966399669647217 }, { "image_id": 1179, "category_id": 1.0, "bbox": [ 226.7510986328125, 204.022216796875, 39.01298522949219, 109.97711181640625 ], "score": 0.998963475227356 }, { "image_id": 1179, "category_id": 1.0, "bbox": [ 189.75706100463867, 212.3611297607422, 33.887481689453125, 103.91419982910156 ], "score": 0.9981820583343506 }, { "image_id": 1179, "category_id": 1.0, "bbox": [ 161.17252349853516, 207.683349609375, 38.40126037597656, 110.249755859375 ], "score": 0.998138427734375 }, { "image_id": 1180, "category_id": 1.0, "bbox": [ 155.91586112976074, 216.89370727539062, 58.21019172668457, 163.71734619140625 ], "score": 0.9997813701629639 }, { "image_id": 1180, "category_id": 1.0, "bbox": [ 39.192442893981934, 215.23193359375, 71.94458484649658, 168.44891357421875 ], "score": 0.999098002910614 }, { "image_id": 1180, "category_id": 1.0, "bbox": [ 102.79685974121094, 212.47433471679688, 54.5482063293457, 163.29559326171875 ], "score": 0.9984067678451538 }, { "image_id": 1181, "category_id": 1.0, "bbox": [ -6.820192337036133, 249.5762939453125, 87.68594741821289, 271.8046875 ], "score": 0.16128847002983093 }, { "image_id": 1182, "category_id": 1.0, "bbox": [ 528.8626098632812, 89.97101593017578, 22.656402587890625, 51.10961151123047 ], "score": 0.11309788376092911 }, { "image_id": 1188, "category_id": 1.0, "bbox": [ 418.67374420166016, 230.17062377929688, 22.064971923828125, 44.4140625 ], "score": 0.5152900815010071 }, { "image_id": 1189, "category_id": 1.0, "bbox": [ 455.93658447265625, 230.1510772705078, 22.571182250976562, 46.64836120605469 ], "score": 0.7115412354469299 }, { "image_id": 1190, "category_id": 1.0, "bbox": [ 485.91224670410156, 225.67877197265625, 21.629867553710938, 59.126983642578125 ], "score": 0.98029625415802 }, { "image_id": 1191, "category_id": 1.0, "bbox": [ 510.16956329345703, 244.5653533935547, 21.705398559570312, 53.10877990722656 ], "score": 0.9809577465057373 }, { "image_id": 1192, "category_id": 1.0, "bbox": [ 513.6943817138672, 221.20578002929688, 22.932662963867188, 54.512664794921875 ], "score": 0.9958544969558716 }, { "image_id": 1193, "category_id": 1.0, "bbox": [ 509.13856506347656, 212.22085571289062, 26.6339111328125, 65.47897338867188 ], "score": 0.9997565746307373 }, { "image_id": 1194, "category_id": 1.0, "bbox": [ 504.45884704589844, 225.4234619140625, 26.99676513671875, 73.552001953125 ], "score": 0.9983185529708862 }, { "image_id": 1195, "category_id": 1.0, "bbox": [ 468.6458206176758, 217.30101013183594, 32.491455078125, 83.65483093261719 ], "score": 0.999161958694458 }, { "image_id": 1196, "category_id": 1.0, "bbox": [ 353.9399719238281, 221.61489868164062, 34.43107604980469, 85.0989990234375 ], "score": 0.9984452724456787 }, { "image_id": 1197, "category_id": 1.0, "bbox": [ 160.26573181152344, 221.66502380371094, 43.25798034667969, 108.07368469238281 ], "score": 0.999354362487793 }, { "image_id": 1197, "category_id": 1.0, "bbox": [ 430.6962585449219, 221.72450256347656, 24.933929443359375, 54.17030334472656 ], "score": 0.11066862940788269 }, { "image_id": 1198, "category_id": 1.0, "bbox": [ 560.3680038452148, 235.6531219482422, 36.875762939453125, 85.04954528808594 ], "score": 0.9950084090232849 }, { "image_id": 1199, "category_id": 1.0, "bbox": [ 225.64617156982422, 234.71983337402344, 37.907562255859375, 97.09700012207031 ], "score": 0.9985255002975464 }, { "image_id": 1201, "category_id": 1.0, "bbox": [ 600.3974533081055, 207.4905548095703, 35.821990966796875, 61.91664123535156 ], "score": 0.10261887311935425 }, { "image_id": 1202, "category_id": 1.0, "bbox": [ 439.56859588623047, 222.80628967285156, 23.712158203125, 59.82658386230469 ], "score": 0.2491706758737564 }, { "image_id": 1202, "category_id": 1.0, "bbox": [ 534.9773788452148, 189.59368896484375, 40.9417724609375, 104.46221923828125 ], "score": 0.11355837434530258 }, { "image_id": 1205, "category_id": 1.0, "bbox": [ 584.3841171264648, 215.2965087890625, 22.961959838867188, 50.82421875 ], "score": 0.6377174258232117 }, { "image_id": 1208, "category_id": 1.0, "bbox": [ 571.7900085449219, 214.19894409179688, 24.252700805664062, 50.39080810546875 ], "score": 0.32470303773880005 }, { "image_id": 1208, "category_id": 1.0, "bbox": [ 526.5920639038086, 211.4299774169922, 71.76094055175781, 58.30982971191406 ], "score": 0.12226296961307526 }, { "image_id": 1208, "category_id": 1.0, "bbox": [ 563.9490509033203, 214.43563842773438, 42.766876220703125, 124.94537353515625 ], "score": 0.1020493283867836 }, { "image_id": 1210, "category_id": 1.0, "bbox": [ 461.83502197265625, 210.57940673828125, 24.40093994140625, 49.772308349609375 ], "score": 0.401761919260025 }, { "image_id": 1210, "category_id": 1.0, "bbox": [ 43.3002233505249, 198.47821044921875, 30.856409072875977, 62.62396240234375 ], "score": 0.10720525681972504 }, { "image_id": 1211, "category_id": 1.0, "bbox": [ 492.2581100463867, 208.8521728515625, 20.313796997070312, 50.73089599609375 ], "score": 0.9759321808815002 }, { "image_id": 1211, "category_id": 1.0, "bbox": [ 121.26541137695312, 199.58993530273438, 21.181678771972656, 46.739837646484375 ], "score": 0.6766095757484436 }, { "image_id": 1212, "category_id": 1.0, "bbox": [ 486.00040435791016, 211.8132781982422, 22.5372314453125, 59.33454895019531 ], "score": 0.9978479743003845 }, { "image_id": 1212, "category_id": 1.0, "bbox": [ 96.45347595214844, 207.08067321777344, 22.58279800415039, 43.70794677734375 ], "score": 0.9542601108551025 }, { "image_id": 1212, "category_id": 1.0, "bbox": [ 424.8160934448242, 210.1807861328125, 23.080673217773438, 53.638671875 ], "score": 0.1586763560771942 }, { "image_id": 1213, "category_id": 1.0, "bbox": [ 458.57704162597656, 208.92669677734375, 24.413833618164062, 65.05059814453125 ], "score": 0.9992897510528564 }, { "image_id": 1213, "category_id": 1.0, "bbox": [ 44.13380146026611, 199.3120574951172, 31.14389419555664, 53.213165283203125 ], "score": 0.9914690852165222 }, { "image_id": 1213, "category_id": 1.0, "bbox": [ 287.7358055114746, 205.3224639892578, 19.986343383789062, 49.6949462890625 ], "score": 0.17204678058624268 }, { "image_id": 1213, "category_id": 1.0, "bbox": [ 388.29601287841797, 198.44937133789062, 20.285491943359375, 43.972991943359375 ], "score": 0.1167997419834137 }, { "image_id": 1213, "category_id": 1.0, "bbox": [ 412.04429626464844, 214.82554626464844, 27.628173828125, 71.50868225097656 ], "score": 0.10687528550624847 }, { "image_id": 1214, "category_id": 1.0, "bbox": [ 436.2797164916992, 209.38841247558594, 33.854827880859375, 76.80665588378906 ], "score": 0.9989067316055298 }, { "image_id": 1214, "category_id": 1.0, "bbox": [ 288.2420539855957, 204.83966064453125, 22.49835968017578, 47.385101318359375 ], "score": 0.996335506439209 }, { "image_id": 1214, "category_id": 1.0, "bbox": [ 9.782066345214844, 205.67697143554688, 39.00331497192383, 65.6002197265625 ], "score": 0.9134544730186462 }, { "image_id": 1214, "category_id": 1.0, "bbox": [ 358.17073822021484, 201.30821228027344, 23.129501342773438, 51.532867431640625 ], "score": 0.20081977546215057 }, { "image_id": 1215, "category_id": 1.0, "bbox": [ 410.5410385131836, 218.79574584960938, 49.257659912109375, 127.582275390625 ], "score": 0.7525515556335449 }, { "image_id": 1215, "category_id": 1.0, "bbox": [ 303.87752532958984, 204.31674194335938, 29.5831298828125, 57.278289794921875 ], "score": 0.6348809003829956 }, { "image_id": 1216, "category_id": 1.0, "bbox": [ 28.98456573486328, 202.87037658691406, 43.3311653137207, 84.12110900878906 ], "score": 0.9984844923019409 }, { "image_id": 1216, "category_id": 1.0, "bbox": [ 391.6272735595703, 202.5269012451172, 40.4730224609375, 105.29280090332031 ], "score": 0.9982626438140869 }, { "image_id": 1216, "category_id": 1.0, "bbox": [ 377.8489303588867, 202.74795532226562, 23.01849365234375, 56.551910400390625 ], "score": 0.8805102109909058 }, { "image_id": 1216, "category_id": 1.0, "bbox": [ 199.39519882202148, 197.16111755371094, 23.736038208007812, 43.675537109375 ], "score": 0.33013948798179626 }, { "image_id": 1216, "category_id": 1.0, "bbox": [ 396.4114761352539, 46.207916259765625, 24.431610107421875, 61.200897216796875 ], "score": 0.1672879457473755 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 475.29834747314453, 204.0404052734375, 26.796417236328125, 59.090301513671875 ], "score": 0.9996711015701294 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 124.01324272155762, 204.2490234375, 24.140911102294922, 54.41265869140625 ], "score": 0.9787346124649048 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 355.6917953491211, 195.1400604248047, 43.99238586425781, 128.2774200439453 ], "score": 0.9713385105133057 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 238.67618560791016, 192.343017578125, 23.29967498779297, 44.401214599609375 ], "score": 0.9328660368919373 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 332.46421813964844, 193.8602294921875, 19.844512939453125, 38.977203369140625 ], "score": 0.26858484745025635 }, { "image_id": 1217, "category_id": 1.0, "bbox": [ 351.5728759765625, 181.7930145263672, 24.916839599609375, 64.76516723632812 ], "score": 0.2550572156906128 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 565.8121490478516, 203.0657501220703, 25.359954833984375, 63.53419494628906 ], "score": 0.9933719635009766 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 242.7562713623047, 214.1322479248047, 41.69952392578125, 124.00303649902344 ], "score": 0.9493306279182434 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 210.66097259521484, 208.64588928222656, 34.972381591796875, 89.82255554199219 ], "score": 0.8967002630233765 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 273.02846908569336, 192.81228637695312, 21.555519104003906, 43.411163330078125 ], "score": 0.8099504113197327 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 367.56847381591797, 190.10342407226562, 21.303863525390625, 45.133575439453125 ], "score": 0.7363193035125732 }, { "image_id": 1218, "category_id": 1.0, "bbox": [ 224.49676513671875, 203.70458984375, 39.18903350830078, 120.87884521484375 ], "score": 0.3010219931602478 }, { "image_id": 1219, "category_id": 1.0, "bbox": [ 285.833740234375, 209.78128051757812, 41.227989196777344, 91.56524658203125 ], "score": 0.9994670748710632 }, { "image_id": 1219, "category_id": 1.0, "bbox": [ 74.0410041809082, 215.12452697753906, 50.0886344909668, 96.01438903808594 ], "score": 0.751066267490387 }, { "image_id": 1219, "category_id": 1.0, "bbox": [ 273.34890365600586, 199.60459899902344, 22.244491577148438, 42.192291259765625 ], "score": 0.22804610431194305 }, { "image_id": 1219, "category_id": 1.0, "bbox": [ 353.89556884765625, 193.76499938964844, 22.995147705078125, 43.88494873046875 ], "score": 0.2114831507205963 }, { "image_id": 1219, "category_id": 1.0, "bbox": [ 369.02687072753906, 194.13534545898438, 19.689483642578125, 42.55633544921875 ], "score": 0.1571054607629776 }, { "image_id": 1220, "category_id": 1.0, "bbox": [ 344.454345703125, 204.48016357421875, 40.387115478515625, 88.52285766601562 ], "score": 0.9961033463478088 }, { "image_id": 1220, "category_id": 1.0, "bbox": [ 275.91352462768555, 195.8558807373047, 20.774078369140625, 44.79217529296875 ], "score": 0.6838494539260864 }, { "image_id": 1220, "category_id": 1.0, "bbox": [ 336.92821502685547, 189.78509521484375, 19.766464233398438, 44.618499755859375 ], "score": 0.19944524765014648 }, { "image_id": 1220, "category_id": 1.0, "bbox": [ 374.8802185058594, 197.42779541015625, 20.109405517578125, 43.112030029296875 ], "score": 0.17628225684165955 }, { "image_id": 1220, "category_id": 1.0, "bbox": [ 237.26579666137695, 256.407958984375, 30.80615997314453, 71.03741455078125 ], "score": 0.10209132730960846 }, { "image_id": 1221, "category_id": 1.0, "bbox": [ 405.303955078125, 210.86636352539062, 33.66729736328125, 78.5355224609375 ], "score": 0.9991474151611328 }, { "image_id": 1221, "category_id": 1.0, "bbox": [ 275.9432792663574, 196.8941650390625, 20.198211669921875, 44.6962890625 ], "score": 0.712696373462677 }, { "image_id": 1221, "category_id": 1.0, "bbox": [ 322.7290725708008, 194.5223846435547, 18.665924072265625, 44.82525634765625 ], "score": 0.6719455718994141 }, { "image_id": 1221, "category_id": 1.0, "bbox": [ 371.39488220214844, 199.68777465820312, 20.198898315429688, 40.179779052734375 ], "score": 0.2768291234970093 }, { "image_id": 1221, "category_id": 1.0, "bbox": [ 246.66475296020508, 249.790771484375, 23.848228454589844, 62.0418701171875 ], "score": 0.16702145338058472 }, { "image_id": 1222, "category_id": 1.0, "bbox": [ 458.18737030029297, 207.30276489257812, 29.540939331054688, 73.39834594726562 ], "score": 0.9734570980072021 }, { "image_id": 1222, "category_id": 1.0, "bbox": [ 277.81429290771484, 196.4490966796875, 20.116539001464844, 45.68731689453125 ], "score": 0.7168667316436768 }, { "image_id": 1222, "category_id": 1.0, "bbox": [ 321.25492095947266, 195.2983856201172, 17.4176025390625, 39.820343017578125 ], "score": 0.48294222354888916 }, { "image_id": 1222, "category_id": 1.0, "bbox": [ 442.177734375, 193.19937133789062, 22.774581909179688, 48.01312255859375 ], "score": 0.326612651348114 }, { "image_id": 1222, "category_id": 1.0, "bbox": [ 370.7101821899414, 196.90875244140625, 19.46319580078125, 38.619110107421875 ], "score": 0.24461689591407776 }, { "image_id": 1223, "category_id": 1.0, "bbox": [ 499.83081817626953, 202.625732421875, 33.170623779296875, 81.09124755859375 ], "score": 0.9996777772903442 }, { "image_id": 1223, "category_id": 1.0, "bbox": [ 320.30555725097656, 196.04136657714844, 20.05584716796875, 43.98681640625 ], "score": 0.7088252305984497 }, { "image_id": 1223, "category_id": 1.0, "bbox": [ 374.6873092651367, 198.043701171875, 20.211639404296875, 42.9183349609375 ], "score": 0.38800299167633057 }, { "image_id": 1223, "category_id": 1.0, "bbox": [ 279.9449920654297, 201.23834228515625, 19.839019775390625, 45.1416015625 ], "score": 0.23472397029399872 }, { "image_id": 1223, "category_id": 1.0, "bbox": [ 440.8585739135742, 198.08160400390625, 21.9921875, 40.691131591796875 ], "score": 0.23450222611427307 }, { "image_id": 1224, "category_id": 1.0, "bbox": [ 558.0954742431641, 201.2339324951172, 31.223068237304688, 72.39863586425781 ], "score": 0.9993563890457153 }, { "image_id": 1224, "category_id": 1.0, "bbox": [ 321.8838119506836, 193.9145050048828, 18.854446411132812, 48.236419677734375 ], "score": 0.6592386960983276 }, { "image_id": 1224, "category_id": 1.0, "bbox": [ 375.31455993652344, 198.11834716796875, 20.98236083984375, 39.012603759765625 ], "score": 0.2073167860507965 }, { "image_id": 1225, "category_id": 1.0, "bbox": [ 276.33947372436523, 193.78346252441406, 22.460708618164062, 45.78497314453125 ], "score": 0.5370708107948303 }, { "image_id": 1225, "category_id": 1.0, "bbox": [ 379.73480224609375, 193.117431640625, 19.889068603515625, 37.666046142578125 ], "score": 0.255405068397522 }, { "image_id": 1225, "category_id": 1.0, "bbox": [ 321.53724670410156, 189.2080841064453, 17.904510498046875, 40.102142333984375 ], "score": 0.20665907859802246 }, { "image_id": 1225, "category_id": 1.0, "bbox": [ 538.3193206787109, 197.64962768554688, 44.85816955566406, 125.90985107421875 ], "score": 0.18230335414409637 }, { "image_id": 1226, "category_id": 1.0, "bbox": [ 296.12199783325195, 189.69754028320312, 22.344436645507812, 46.36358642578125 ], "score": 0.8236381411552429 }, { "image_id": 1226, "category_id": 1.0, "bbox": [ 338.1224822998047, 185.9888458251953, 19.336395263671875, 44.15338134765625 ], "score": 0.5506960153579712 }, { "image_id": 1226, "category_id": 1.0, "bbox": [ 476.4678955078125, 186.91409301757812, 20.658111572265625, 41.863555908203125 ], "score": 0.20088225603103638 }, { "image_id": 1227, "category_id": 1.0, "bbox": [ 348.8656997680664, 186.0584716796875, 23.0413818359375, 46.22674560546875 ], "score": 0.9816089868545532 }, { "image_id": 1227, "category_id": 1.0, "bbox": [ 306.49757385253906, 191.39512634277344, 22.770767211914062, 43.285003662109375 ], "score": 0.8973928093910217 }, { "image_id": 1227, "category_id": 1.0, "bbox": [ 496.18995666503906, 184.65052795410156, 22.3565673828125, 48.244842529296875 ], "score": 0.2206745445728302 }, { "image_id": 1227, "category_id": 1.0, "bbox": [ 417.75367736816406, 195.95028686523438, 23.521957397460938, 39.720367431640625 ], "score": 0.1642056554555893 }, { "image_id": 1228, "category_id": 1.0, "bbox": [ 354.2195129394531, 186.66796875, 21.996536254882812, 45.180633544921875 ], "score": 0.9697902202606201 }, { "image_id": 1228, "category_id": 1.0, "bbox": [ 312.46543884277344, 190.13780212402344, 21.86370849609375, 47.1572265625 ], "score": 0.9677938222885132 }, { "image_id": 1228, "category_id": 1.0, "bbox": [ 424.8944091796875, 193.87322998046875, 19.154434204101562, 41.979522705078125 ], "score": 0.3737231492996216 }, { "image_id": 1229, "category_id": 1.0, "bbox": [ 354.2890930175781, 189.87498474121094, 22.96600341796875, 44.31707763671875 ], "score": 0.9827926158905029 }, { "image_id": 1229, "category_id": 1.0, "bbox": [ 313.3670234680176, 194.5968780517578, 21.708354949951172, 46.875701904296875 ], "score": 0.9209777116775513 }, { "image_id": 1229, "category_id": 1.0, "bbox": [ 423.26881408691406, 192.17523193359375, 21.217269897460938, 45.63580322265625 ], "score": 0.6120095252990723 }, { "image_id": 1229, "category_id": 1.0, "bbox": [ 505.48789978027344, 193.98709106445312, 20.52001953125, 41.1104736328125 ], "score": 0.48152753710746765 }, { "image_id": 1230, "category_id": 1.0, "bbox": [ 353.4505081176758, 190.62362670898438, 24.50836181640625, 45.146270751953125 ], "score": 0.9791447520256042 }, { "image_id": 1230, "category_id": 1.0, "bbox": [ 422.0997619628906, 188.518798828125, 23.384628295898438, 48.0601806640625 ], "score": 0.8841263055801392 }, { "image_id": 1230, "category_id": 1.0, "bbox": [ 504.9139404296875, 190.2989044189453, 19.9169921875, 43.772430419921875 ], "score": 0.6781446933746338 }, { "image_id": 1230, "category_id": 1.0, "bbox": [ 312.13573455810547, 196.8135986328125, 22.115020751953125, 42.7340087890625 ], "score": 0.5337510704994202 }, { "image_id": 1231, "category_id": 1.0, "bbox": [ 352.4027633666992, 189.95263671875, 20.9295654296875, 45.656036376953125 ], "score": 0.9316307306289673 }, { "image_id": 1231, "category_id": 1.0, "bbox": [ 421.9041061401367, 188.8468780517578, 22.838287353515625, 47.36175537109375 ], "score": 0.8321635723114014 }, { "image_id": 1231, "category_id": 1.0, "bbox": [ 504.3259048461914, 190.59835815429688, 20.002288818359375, 44.14605712890625 ], "score": 0.7645500302314758 }, { "image_id": 1231, "category_id": 1.0, "bbox": [ 281.8571662902832, 198.5348663330078, 20.87116241455078, 41.527618408203125 ], "score": 0.6733283996582031 }, { "image_id": 1231, "category_id": 1.0, "bbox": [ 306.98062896728516, 200.2503662109375, 20.385665893554688, 44.646392822265625 ], "score": 0.14681226015090942 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 324.13814544677734, 194.8804168701172, 23.087997436523438, 43.18902587890625 ], "score": 0.9480376243591309 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 506.0933303833008, 196.5514678955078, 21.129531860351562, 42.005615234375 ], "score": 0.9208297729492188 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 357.13756561279297, 197.40081787109375, 20.369491577148438, 43.99371337890625 ], "score": 0.7669979929924011 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 250.4134750366211, 201.92005920410156, 22.4139404296875, 45.428558349609375 ], "score": 0.5496561527252197 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 283.03762435913086, 203.44981384277344, 20.3594970703125, 43.337646484375 ], "score": 0.45198923349380493 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 424.6133804321289, 194.38314819335938, 22.14599609375, 43.726318359375 ], "score": 0.40340930223464966 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 272.573299407959, 205.72796630859375, 23.293533325195312, 43.01318359375 ], "score": 0.1750066578388214 }, { "image_id": 1232, "category_id": 1.0, "bbox": [ 336.15352630615234, 196.5574951171875, 22.73651123046875, 44.928741455078125 ], "score": 0.16163183748722076 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 303.206787109375, 200.35189819335938, 22.57678985595703, 52.53857421875 ], "score": 0.9894444346427917 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 521.4189147949219, 200.09469604492188, 22.872467041015625, 49.013702392578125 ], "score": 0.964477002620697 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 344.6299362182617, 201.1003875732422, 22.835540771484375, 43.82330322265625 ], "score": 0.8498309850692749 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 434.20780181884766, 198.07923889160156, 22.400131225585938, 48.532470703125 ], "score": 0.5097441077232361 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 210.87396621704102, 211.93824768066406, 19.78759765625, 42.281890869140625 ], "score": 0.43270790576934814 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 241.02270126342773, 206.6121826171875, 24.030227661132812, 45.515960693359375 ], "score": 0.23997510969638824 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 446.62967681884766, 202.7777099609375, 19.97161865234375, 42.891082763671875 ], "score": 0.16171780228614807 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 203.03951263427734, 212.9148712158203, 19.947242736816406, 42.690399169921875 ], "score": 0.1269982010126114 }, { "image_id": 1233, "category_id": 1.0, "bbox": [ 231.80017471313477, 208.4930877685547, 22.54352569580078, 45.990447998046875 ], "score": 0.12568999826908112 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 247.08072662353516, 207.1222381591797, 24.21661376953125, 56.04322814941406 ], "score": 0.9947432279586792 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 128.46318244934082, 209.392333984375, 23.91277313232422, 56.732574462890625 ], "score": 0.9944841265678406 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 154.79961395263672, 210.4071502685547, 24.23786163330078, 57.44798278808594 ], "score": 0.9152628183364868 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 278.1513786315918, 215.9344940185547, 22.400245666503906, 49.96800231933594 ], "score": 0.836683988571167 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 434.4246292114258, 206.73568725585938, 19.8895263671875, 48.665496826171875 ], "score": 0.3502163887023926 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 139.12293434143066, 207.5318145751953, 31.830415725708008, 58.27235412597656 ], "score": 0.1984325349330902 }, { "image_id": 1234, "category_id": 1.0, "bbox": [ 264.83898162841797, 212.49258422851562, 20.448951721191406, 51.262908935546875 ], "score": 0.17934158444404602 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 457.5128936767578, 209.1206512451172, 23.06182861328125, 53.29240417480469 ], "score": 0.9981191158294678 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 80.57880401611328, 207.56944274902344, 32.383766174316406, 67.24324035644531 ], "score": 0.9633994698524475 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 344.7379684448242, 205.84579467773438, 25.650711059570312, 62.16680908203125 ], "score": 0.7716149091720581 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 65.2749252319336, 206.03785705566406, 35.287437438964844, 67.32185363769531 ], "score": 0.7614490985870361 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 92.38856315612793, 208.92408752441406, 32.0036506652832, 58.77235412597656 ], "score": 0.13941890001296997 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 356.263427734375, 211.376708984375, 25.12481689453125, 54.3392333984375 ], "score": 0.12616991996765137 }, { "image_id": 1235, "category_id": 1.0, "bbox": [ 326.50306701660156, 216.50709533691406, 37.03376770019531, 78.96473693847656 ], "score": 0.1168908104300499 }, { "image_id": 1236, "category_id": 1.0, "bbox": [ 230.61433792114258, 209.9532470703125, 26.88690185546875, 58.00640869140625 ], "score": 0.9960930347442627 }, { "image_id": 1236, "category_id": 1.0, "bbox": [ 250.54546356201172, 215.00650024414062, 23.010025024414062, 51.779296875 ], "score": 0.9308251142501831 }, { "image_id": 1236, "category_id": 1.0, "bbox": [ 213.69247436523438, 212.46237182617188, 24.68494415283203, 56.7857666015625 ], "score": 0.38897469639778137 }, { "image_id": 1237, "category_id": 1.0, "bbox": [ 264.94131088256836, 219.0897216796875, 27.52513885498047, 73.77496337890625 ], "score": 0.9987252950668335 }, { "image_id": 1241, "category_id": 1.0, "bbox": [ 614.8843765258789, 206.0500030517578, 19.275665283203125, 52.30278015136719 ], "score": 0.6388522386550903 }, { "image_id": 1242, "category_id": 1.0, "bbox": [ 605.122184753418, 208.8719024658203, 26.404953002929688, 60.22798156738281 ], "score": 0.9629970788955688 }, { "image_id": 1242, "category_id": 1.0, "bbox": [ 590.3462600708008, 221.15855407714844, 41.692047119140625, 108.08790588378906 ], "score": 0.1906856894493103 }, { "image_id": 1243, "category_id": 1.0, "bbox": [ 543.6457443237305, 217.5814666748047, 21.80633544921875, 49.18727111816406 ], "score": 0.7275269031524658 }, { "image_id": 1243, "category_id": 1.0, "bbox": [ 512.9738998413086, 220.29408264160156, 23.504180908203125, 54.90791320800781 ], "score": 0.5071984529495239 }, { "image_id": 1244, "category_id": 1.0, "bbox": [ 445.1629638671875, 213.0074920654297, 28.868942260742188, 88.79209899902344 ], "score": 0.34964752197265625 }, { "image_id": 1245, "category_id": 1.0, "bbox": [ 283.02494049072266, 210.73806762695312, 17.127838134765625, 35.33026123046875 ], "score": 0.1260896474123001 }, { "image_id": 1246, "category_id": 1.0, "bbox": [ 142.3052978515625, 210.550048828125, 20.344562530517578, 43.987823486328125 ], "score": 0.6649507880210876 }, { "image_id": 1246, "category_id": 1.0, "bbox": [ 277.81667709350586, 208.671630859375, 19.830245971679688, 38.67041015625 ], "score": 0.16200175881385803 }, { "image_id": 1247, "category_id": 1.0, "bbox": [ 274.1122055053711, 211.09852600097656, 21.391830444335938, 43.338287353515625 ], "score": 0.9780213236808777 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 263.59867095947266, 209.06295776367188, 22.894515991210938, 50.867401123046875 ], "score": 0.9994075298309326 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 583.9078140258789, 221.7271270751953, 26.44927978515625, 61.53190612792969 ], "score": 0.9986376762390137 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 25.213799476623535, 218.11842346191406, 28.215389251708984, 64.81477355957031 ], "score": 0.8812680244445801 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 518.226318359375, 210.61500549316406, 21.104202270507812, 43.60125732421875 ], "score": 0.7311896085739136 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 544.5491409301758, 205.4534149169922, 19.093704223632812, 43.926239013671875 ], "score": 0.4977782368659973 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 489.2856979370117, 207.74298095703125, 21.910171508789062, 45.500946044921875 ], "score": 0.16762399673461914 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 528.2199859619141, 208.32498168945312, 20.872421264648438, 43.45574951171875 ], "score": 0.1453510820865631 }, { "image_id": 1248, "category_id": 1.0, "bbox": [ 498.5167694091797, 208.7591094970703, 20.552978515625, 45.6461181640625 ], "score": 0.1105647087097168 }, { "image_id": 1249, "category_id": 1.0, "bbox": [ 216.36564254760742, 212.30447387695312, 26.54499053955078, 64.56005859375 ], "score": 0.9998258352279663 }, { "image_id": 1249, "category_id": 1.0, "bbox": [ 590.5147933959961, 207.69720458984375, 20.182876586914062, 54.69464111328125 ], "score": 0.9583632946014404 }, { "image_id": 1249, "category_id": 1.0, "bbox": [ 479.1383743286133, 205.81678771972656, 22.850418090820312, 54.63676452636719 ], "score": 0.5405930280685425 }, { "image_id": 1249, "category_id": 1.0, "bbox": [ 505.58284759521484, 201.99546813964844, 21.353225708007812, 53.32623291015625 ], "score": 0.3784908056259155 }, { "image_id": 1249, "category_id": 1.0, "bbox": [ 487.12032318115234, 208.00717163085938, 25.605545043945312, 55.342742919921875 ], "score": 0.11769083142280579 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 129.46348190307617, 212.45950317382812, 33.96364212036133, 83.95022583007812 ], "score": 0.9980269074440002 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 579.1985321044922, 212.84620666503906, 22.55157470703125, 59.44306945800781 ], "score": 0.9897793531417847 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 534.2805480957031, 202.2982177734375, 20.572128295898438, 51.647857666015625 ], "score": 0.979864239692688 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 596.3998413085938, 207.57176208496094, 24.25445556640625, 58.09629821777344 ], "score": 0.9733785390853882 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 545.6892776489258, 204.54969787597656, 20.925979614257812, 52.96351623535156 ], "score": 0.8267752528190613 }, { "image_id": 1250, "category_id": 1.0, "bbox": [ 607.2660446166992, 209.21446228027344, 24.00390625, 53.26362609863281 ], "score": 0.3383885622024536 }, { "image_id": 1251, "category_id": 1.0, "bbox": [ 506.9961166381836, 224.5753173828125, 23.5888671875, 48.575927734375 ], "score": 0.18070924282073975 }, { "image_id": 1251, "category_id": 1.0, "bbox": [ 546.589469909668, 213.7950897216797, 20.1544189453125, 55.80766296386719 ], "score": 0.10577533394098282 }, { "image_id": 1252, "category_id": 1.0, "bbox": [ 503.6280822753906, 209.5890350341797, 22.424545288085938, 54.69087219238281 ], "score": 0.5400515794754028 }, { "image_id": 1252, "category_id": 1.0, "bbox": [ 489.93186950683594, 210.03358459472656, 22.203369140625, 46.12806701660156 ], "score": 0.2170906364917755 }, { "image_id": 1252, "category_id": 1.0, "bbox": [ 518.568229675293, 209.82057189941406, 19.348678588867188, 53.79051208496094 ], "score": 0.17201563715934753 }, { "image_id": 1253, "category_id": 1.0, "bbox": [ 553.5136032104492, 207.853515625, 21.147842407226562, 49.318878173828125 ], "score": 0.8706575036048889 }, { "image_id": 1253, "category_id": 1.0, "bbox": [ 580.0774383544922, 210.24354553222656, 28.929901123046875, 61.27439880371094 ], "score": 0.6078600287437439 }, { "image_id": 1253, "category_id": 1.0, "bbox": [ 587.8323364257812, 205.63795471191406, 41.73484802246094, 90.26698303222656 ], "score": 0.10520200431346893 }, { "image_id": 1254, "category_id": 1.0, "bbox": [ 419.6400451660156, 186.63058471679688, 33.60908508300781, 115.18997192382812 ], "score": 0.1944131851196289 }, { "image_id": 1254, "category_id": 1.0, "bbox": [ 439.757080078125, 207.94839477539062, 20.6219482421875, 56.034423828125 ], "score": 0.12141865491867065 }, { "image_id": 1254, "category_id": 1.0, "bbox": [ 552.8478240966797, 212.78903198242188, 19.032363891601562, 35.509033203125 ], "score": 0.10575653612613678 }, { "image_id": 1255, "category_id": 1.0, "bbox": [ 421.61556243896484, 172.27566528320312, 28.244781494140625, 78.35116577148438 ], "score": 0.4398881196975708 }, { "image_id": 1256, "category_id": 1.0, "bbox": [ 584.9065017700195, 211.66233825683594, 25.090179443359375, 58.65919494628906 ], "score": 0.31415799260139465 }, { "image_id": 1256, "category_id": 1.0, "bbox": [ 497.41214752197266, 200.12371826171875, 56.248016357421875, 167.0673828125 ], "score": 0.13763177394866943 }, { "image_id": 1257, "category_id": 1.0, "bbox": [ 496.3382339477539, 206.14903259277344, 21.590194702148438, 46.07159423828125 ], "score": 0.9549684524536133 }, { "image_id": 1258, "category_id": 1.0, "bbox": [ 563.856086730957, 211.97019958496094, 18.810653686523438, 53.20768737792969 ], "score": 0.4355718791484833 }, { "image_id": 1258, "category_id": 1.0, "bbox": [ 514.8706817626953, 210.969970703125, 24.5574951171875, 69.1044921875 ], "score": 0.3508966565132141 }, { "image_id": 1259, "category_id": 1.0, "bbox": [ 478.0139923095703, 204.46389770507812, 17.424545288085938, 36.673858642578125 ], "score": 0.18200844526290894 }, { "image_id": 1259, "category_id": 1.0, "bbox": [ 585.470085144043, 196.34585571289062, 39.81117248535156, 62.159332275390625 ], "score": 0.16429738700389862 }, { "image_id": 1260, "category_id": 1.0, "bbox": [ 595.2543640136719, 206.36941528320312, 35.77583312988281, 83.55612182617188 ], "score": 0.9988629221916199 }, { "image_id": 1260, "category_id": 1.0, "bbox": [ 504.72652435302734, 207.0606689453125, 22.269821166992188, 44.665740966796875 ], "score": 0.5342788696289062 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 432.5175094604492, 212.7140655517578, 19.802322387695312, 52.21055603027344 ], "score": 0.39198702573776245 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 485.60813903808594, 209.65647888183594, 23.093795776367188, 49.26844787597656 ], "score": 0.3216911256313324 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 139.89741325378418, 205.0977325439453, 20.08697509765625, 41.928436279296875 ], "score": 0.28958064317703247 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 440.6834030151367, 210.04531860351562, 20.7830810546875, 49.464111328125 ], "score": 0.16825523972511292 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 430.9539031982422, 207.53311157226562, 34.03602600097656, 82.39251708984375 ], "score": 0.15901726484298706 }, { "image_id": 1261, "category_id": 1.0, "bbox": [ 469.68326568603516, 196.96519470214844, 85.97129821777344, 71.03550720214844 ], "score": 0.11800029873847961 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 467.8485107421875, 208.4978485107422, 20.325164794921875, 56.40998840332031 ], "score": 0.9679655432701111 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 530.5705261230469, 210.0210418701172, 21.262130737304688, 54.94676208496094 ], "score": 0.9472366571426392 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 481.39892578125, 210.69091796875, 20.614852905273438, 53.160247802734375 ], "score": 0.9009801149368286 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 546.7849731445312, 215.79837036132812, 20.749053955078125, 50.237396240234375 ], "score": 0.5594131946563721 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 493.60912322998047, 208.31793212890625, 62.01759338378906, 64.17108154296875 ], "score": 0.22104927897453308 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 512.9190444946289, 211.6259765625, 21.633377075195312, 53.292388916015625 ], "score": 0.20708301663398743 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 569.6064376831055, 164.5984344482422, 49.535980224609375, 106.21253967285156 ], "score": 0.1934429407119751 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 562.8911209106445, 213.38829040527344, 20.769500732421875, 48.47126770019531 ], "score": 0.1700102537870407 }, { "image_id": 1262, "category_id": 1.0, "bbox": [ 518.6738586425781, 211.0611114501953, 61.143646240234375, 58.37718200683594 ], "score": 0.12546809017658234 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 504.96299743652344, 207.0596923828125, 25.01312255859375, 59.25823974609375 ], "score": 0.9940996170043945 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 581.5199279785156, 212.12371826171875, 21.861495971679688, 59.62432861328125 ], "score": 0.9893935322761536 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 528.1092834472656, 213.16702270507812, 25.059738159179688, 57.606719970703125 ], "score": 0.893661379814148 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 109.78594779968262, 207.78785705566406, 22.502727508544922, 45.977142333984375 ], "score": 0.7673894166946411 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 600.5950546264648, 215.66796875, 19.650650024414062, 50.47808837890625 ], "score": 0.39386022090911865 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 609.7634506225586, 212.1591339111328, 20.91583251953125, 55.26856994628906 ], "score": 0.3840830326080322 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 564.3674850463867, 220.78883361816406, 20.372848510742188, 47.99632263183594 ], "score": 0.3116588592529297 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 499.70062255859375, 211.88687133789062, 98.21388244628906, 59.6243896484375 ], "score": 0.1520787924528122 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 350.21728515625, 211.3763427734375, 79.55360412597656, 45.837188720703125 ], "score": 0.11919519305229187 }, { "image_id": 1263, "category_id": 1.0, "bbox": [ 536.1198425292969, 218.3750762939453, 90.99250793457031, 58.86357116699219 ], "score": 0.10366950929164886 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 94.72990036010742, 204.5857391357422, 22.166175842285156, 48.702362060546875 ], "score": 0.9824022054672241 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 590.3847122192383, 218.09848022460938, 22.855758666992188, 61.020904541015625 ], "score": 0.9503748416900635 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 454.23004150390625, 208.28335571289062, 21.671218872070312, 53.361602783203125 ], "score": 0.670169472694397 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 554.1113662719727, 207.25796508789062, 31.90338134765625, 70.88018798828125 ], "score": 0.5695274472236633 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 438.78902435302734, 213.93283081054688, 21.780929565429688, 43.254852294921875 ], "score": 0.43628835678100586 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 575.0218200683594, 216.9850616455078, 23.859634399414062, 58.58293151855469 ], "score": 0.4286901354789734 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 502.02178955078125, 211.87490844726562, 21.350479125976562, 44.120330810546875 ], "score": 0.2426891028881073 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 83.04152488708496, 204.01040649414062, 19.428348541259766, 44.065673828125 ], "score": 0.1979457437992096 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 422.1541976928711, 212.03575134277344, 26.235275268554688, 43.245513916015625 ], "score": 0.1761751025915146 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 432.9307174682617, 211.91348266601562, 125.61470031738281, 45.83251953125 ], "score": 0.1516745388507843 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 512.7434921264648, 201.70445251464844, 85.32829284667969, 62.33467102050781 ], "score": 0.1428677886724472 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 427.5394821166992, 197.05841064453125, 57.7020263671875, 79.68255615234375 ], "score": 0.10910273343324661 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 383.3988571166992, 217.34033203125, 29.268112182617188, 36.12322998046875 ], "score": 0.10881626605987549 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 596.0696411132812, 230.52462768554688, 27.95074462890625, 60.27703857421875 ], "score": 0.10191512107849121 }, { "image_id": 1264, "category_id": 1.0, "bbox": [ 518.7992095947266, 209.21751403808594, 21.327438354492188, 44.2113037109375 ], "score": 0.10167810320854187 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 79.14568901062012, 205.53665161132812, 23.984966278076172, 50.650177001953125 ], "score": 0.946152925491333 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 449.9363708496094, 217.45797729492188, 18.862075805664062, 44.00750732421875 ], "score": 0.822812557220459 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 468.0789566040039, 212.58216857910156, 19.318084716796875, 47.41789245605469 ], "score": 0.8066421747207642 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 515.538444519043, 214.71640014648438, 21.965103149414062, 42.57598876953125 ], "score": 0.7376839518547058 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 611.7592239379883, 202.8981475830078, 26.866683959960938, 71.81910705566406 ], "score": 0.6035271883010864 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 558.5279846191406, 218.52835083007812, 25.122909545898438, 52.31890869140625 ], "score": 0.47666865587234497 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 458.38584899902344, 214.44078063964844, 19.077987670898438, 47.76161193847656 ], "score": 0.442878782749176 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 573.528938293457, 219.6224365234375, 24.982986450195312, 45.530059814453125 ], "score": 0.4263070821762085 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 392.8426742553711, 218.81671142578125, 23.372955322265625, 41.443450927734375 ], "score": 0.2544461488723755 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 500.2679443359375, 212.8471221923828, 31.073684692382812, 45.77659606933594 ], "score": 0.2328146994113922 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 481.673583984375, 204.47169494628906, 65.648193359375, 55.26646423339844 ], "score": 0.16700077056884766 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 481.9387435913086, 211.0406494140625, 18.01849365234375, 46.59283447265625 ], "score": 0.1260659396648407 }, { "image_id": 1265, "category_id": 1.0, "bbox": [ 432.09728240966797, 217.79620361328125, 19.805908203125, 40.21734619140625 ], "score": 0.10731665790081024 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 468.81656646728516, 212.9745635986328, 18.946304321289062, 48.51219177246094 ], "score": 0.9511556625366211 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 521.1762237548828, 215.82138061523438, 21.488800048828125, 45.0494384765625 ], "score": 0.9130904078483582 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 605.0326156616211, 222.46238708496094, 23.540725708007812, 51.43504333496094 ], "score": 0.6893062591552734 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 396.05457305908203, 219.28964233398438, 21.319503784179688, 43.51129150390625 ], "score": 0.5732073187828064 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 448.14735412597656, 219.4274139404297, 21.254806518554688, 42.22251892089844 ], "score": 0.5039696097373962 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 458.2908630371094, 215.53225708007812, 18.826370239257812, 47.224212646484375 ], "score": 0.4300965666770935 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 586.1425399780273, 225.56031799316406, 31.154022216796875, 57.46131896972656 ], "score": 0.3642598092556 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 481.0535430908203, 214.154541015625, 18.0517578125, 48.815093994140625 ], "score": 0.34597134590148926 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 507.58453369140625, 211.554931640625, 18.372726440429688, 47.1781005859375 ], "score": 0.2898792624473572 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 498.94115447998047, 210.54249572753906, 17.868499755859375, 47.62126159667969 ], "score": 0.2574736177921295 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 489.95052337646484, 210.5529327392578, 17.06451416015625, 49.83934020996094 ], "score": 0.15185090899467468 }, { "image_id": 1266, "category_id": 1.0, "bbox": [ 432.56786346435547, 217.3770751953125, 22.0751953125, 45.05694580078125 ], "score": 0.1247866153717041 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 473.1863021850586, 216.6663360595703, 20.120925903320312, 52.40989685058594 ], "score": 0.9891599416732788 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 520.3168106079102, 216.48011779785156, 20.142364501953125, 45.83546447753906 ], "score": 0.9210543632507324 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 450.49793243408203, 219.10247802734375, 22.538528442382812, 45.6639404296875 ], "score": 0.8621171712875366 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 481.1196517944336, 217.25051879882812, 20.008468627929688, 53.152252197265625 ], "score": 0.7095358371734619 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 396.2688446044922, 220.55279541015625, 22.928085327148438, 43.956634521484375 ], "score": 0.6449805498123169 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 506.9416046142578, 213.28903198242188, 17.7447509765625, 47.658172607421875 ], "score": 0.5264121294021606 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 488.3431625366211, 213.8015594482422, 18.006744384765625, 47.61616516113281 ], "score": 0.3220292925834656 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 595.6913375854492, 224.23699951171875, 34.43817138671875, 74.68365478515625 ], "score": 0.19727075099945068 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 498.5896682739258, 213.53399658203125, 19.61181640625, 48.962982177734375 ], "score": 0.14587663114070892 }, { "image_id": 1267, "category_id": 1.0, "bbox": [ 435.34759521484375, 221.2684326171875, 22.055740356445312, 41.581146240234375 ], "score": 0.10759659111499786 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 516.9063949584961, 217.93161010742188, 20.133285522460938, 48.87396240234375 ], "score": 0.9840673208236694 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 475.77964782714844, 217.69097900390625, 18.392715454101562, 51.16253662109375 ], "score": 0.9601292014122009 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 449.3400573730469, 220.95401000976562, 22.245407104492188, 44.706146240234375 ], "score": 0.6659831404685974 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 467.1989059448242, 216.18202209472656, 20.591812133789062, 50.47673034667969 ], "score": 0.628727912902832 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 506.4556121826172, 217.63674926757812, 19.643478393554688, 49.18292236328125 ], "score": 0.4386783838272095 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 597.3596954345703, 222.03689575195312, 31.376800537109375, 64.6751708984375 ], "score": 0.31318405270576477 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 433.6874771118164, 224.12789916992188, 20.254135131835938, 39.272735595703125 ], "score": 0.18544304370880127 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 396.8427276611328, 222.8147430419922, 19.446945190429688, 44.88542175292969 ], "score": 0.1725521683692932 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 486.7688751220703, 215.90890502929688, 19.587249755859375, 52.0911865234375 ], "score": 0.12532268464565277 }, { "image_id": 1268, "category_id": 1.0, "bbox": [ 32.260117530822754, 209.31983947753906, 25.388269424438477, 52.66471862792969 ], "score": 0.11187708377838135 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 512.3470306396484, 218.1495361328125, 21.727676391601562, 48.280548095703125 ], "score": 0.9857506155967712 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 474.1839599609375, 214.96060180664062, 18.266220092773438, 54.26629638671875 ], "score": 0.9693500995635986 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 49.84629154205322, 210.6053466796875, 24.99164581298828, 50.01458740234375 ], "score": 0.9572638273239136 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 450.0577163696289, 225.3953857421875, 20.31707763671875, 41.772552490234375 ], "score": 0.6624302864074707 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 595.8978271484375, 225.6967010498047, 33.222198486328125, 67.07249450683594 ], "score": 0.3967210054397583 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 435.4268264770508, 226.90936279296875, 19.798736572265625, 40.20654296875 ], "score": 0.14316800236701965 }, { "image_id": 1269, "category_id": 1.0, "bbox": [ 488.3344268798828, 216.78013610839844, 19.08447265625, 50.44642639160156 ], "score": 0.12901082634925842 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 474.7144317626953, 216.3104248046875, 18.202285766601562, 55.24859619140625 ], "score": 0.97609543800354 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 511.86084747314453, 217.93075561523438, 22.2119140625, 51.019256591796875 ], "score": 0.9728717803955078 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 448.36341857910156, 222.2706756591797, 20.904083251953125, 43.92164611816406 ], "score": 0.797920823097229 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 433.79920959472656, 220.9180908203125, 21.290512084960938, 43.8004150390625 ], "score": 0.2701597809791565 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 500.47218322753906, 218.2607421875, 20.026321411132812, 50.45684814453125 ], "score": 0.18868441879749298 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 18.88055920600891, 204.16763305664062, 32.511080503463745, 48.435302734375 ], "score": 0.16405342519283295 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 606.8222808837891, 224.14305114746094, 24.044036865234375, 60.29161071777344 ], "score": 0.1560731828212738 }, { "image_id": 1270, "category_id": 1.0, "bbox": [ 10.427918434143066, 201.18911743164062, 25.396194458007812, 55.178009033203125 ], "score": 0.10223156958818436 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 473.3412170410156, 219.92385864257812, 19.147186279296875, 49.22308349609375 ], "score": 0.9852043390274048 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 506.0872268676758, 214.0498809814453, 22.117538452148438, 49.45344543457031 ], "score": 0.948818027973175 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 54.60216999053955, 211.27029418945312, 22.803268432617188, 46.678619384765625 ], "score": 0.933033287525177 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 449.98783111572266, 224.7160186767578, 20.912551879882812, 42.81590270996094 ], "score": 0.7703613638877869 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 593.5609436035156, 226.71701049804688, 35.33576965332031, 66.38604736328125 ], "score": 0.36893776059150696 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 433.7328338623047, 227.23622131347656, 21.07818603515625, 38.58271789550781 ], "score": 0.32076334953308105 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 31.66372537612915, 202.64364624023438, 47.723186016082764, 51.10052490234375 ], "score": 0.14446625113487244 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 397.79266357421875, 226.04339599609375, 22.415313720703125, 42.620849609375 ], "score": 0.12203855812549591 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 31.575279235839844, 203.09259033203125, 21.053619384765625, 42.7357177734375 ], "score": 0.11347801983356476 }, { "image_id": 1271, "category_id": 1.0, "bbox": [ 489.10228729248047, 218.6111602783203, 17.538604736328125, 49.16261291503906 ], "score": 0.10367858409881592 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 504.00848388671875, 216.5620880126953, 20.722198486328125, 51.10292053222656 ], "score": 0.8715478181838989 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 48.50532054901123, 214.9439239501953, 22.35833168029785, 46.23176574707031 ], "score": 0.7782062888145447 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 467.2658157348633, 216.53631591796875, 22.914810180664062, 43.060394287109375 ], "score": 0.6739362478256226 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 455.6909942626953, 217.87396240234375, 23.845367431640625, 38.165740966796875 ], "score": 0.3467230200767517 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 512.4098968505859, 218.17347717285156, 20.617294311523438, 45.94459533691406 ], "score": 0.3287617564201355 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 479.11190032958984, 215.01947021484375, 22.056808471679688, 50.529388427734375 ], "score": 0.2543907165527344 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 601.3119888305664, 230.98043823242188, 32.07756042480469, 66.44830322265625 ], "score": 0.23359805345535278 }, { "image_id": 1272, "category_id": 1.0, "bbox": [ 409.18182373046875, 212.75868225097656, 91.31584167480469, 55.09739685058594 ], "score": 0.12160926312208176 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 50.34596920013428, 209.9149627685547, 24.05691146850586, 49.63502502441406 ], "score": 0.9649087190628052 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 596.1303329467773, 223.20755004882812, 32.00904846191406, 74.7247314453125 ], "score": 0.716391921043396 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 397.2762680053711, 223.80606079101562, 20.466766357421875, 42.820098876953125 ], "score": 0.38464993238449097 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 451.2871551513672, 220.81910705566406, 18.939590454101562, 39.74168395996094 ], "score": 0.27142003178596497 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 442.1482467651367, 223.89161682128906, 19.430007934570312, 38.45442199707031 ], "score": 0.20536065101623535 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 432.8424835205078, 223.85752868652344, 20.559463500976562, 40.42787170410156 ], "score": 0.18770475685596466 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 472.88047790527344, 212.688720703125, 18.59527587890625, 42.84185791015625 ], "score": 0.1401926875114441 }, { "image_id": 1273, "category_id": 1.0, "bbox": [ 411.9490051269531, 217.85693359375, 122.16865539550781, 43.7191162109375 ], "score": 0.12030760198831558 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 467.57904052734375, 218.73190307617188, 20.98724365234375, 47.383148193359375 ], "score": 0.9756275415420532 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 54.19677257537842, 209.8985595703125, 24.8690128326416, 47.717742919921875 ], "score": 0.9587100148200989 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 502.6814270019531, 218.2760467529297, 18.459396362304688, 48.88841247558594 ], "score": 0.8961700797080994 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 449.5868682861328, 222.65296936035156, 19.662246704101562, 44.80021667480469 ], "score": 0.7794275283813477 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 458.68892669677734, 220.48764038085938, 19.210205078125, 46.217529296875 ], "score": 0.7629854083061218 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 595.2119064331055, 220.0776824951172, 30.52398681640625, 74.84761047363281 ], "score": 0.6627457737922668 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 482.23400115966797, 221.96640014648438, 18.75091552734375, 46.471435546875 ], "score": 0.4870877265930176 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 514.9351119995117, 215.7990264892578, 19.713058471679688, 48.03562927246094 ], "score": 0.44188636541366577 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 396.6497802734375, 222.2669677734375, 20.7537841796875, 44.105377197265625 ], "score": 0.3039255738258362 }, { "image_id": 1274, "category_id": 1.0, "bbox": [ 433.1979751586914, 222.58218383789062, 21.247329711914062, 42.66094970703125 ], "score": 0.2332116663455963 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 548.1290817260742, 219.46990966796875, 20.251693725585938, 52.300018310546875 ], "score": 0.9817060828208923 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 53.17482948303223, 212.09152221679688, 24.45842742919922, 46.954132080078125 ], "score": 0.9726346731185913 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 466.63951873779297, 222.5838623046875, 21.783676147460938, 42.702911376953125 ], "score": 0.9396332502365112 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 505.1311492919922, 216.5115509033203, 17.931365966796875, 50.69685363769531 ], "score": 0.6812852621078491 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 513.923454284668, 215.02044677734375, 19.583587646484375, 50.45098876953125 ], "score": 0.5750491619110107 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 481.5975570678711, 222.85345458984375, 19.197006225585938, 46.450775146484375 ], "score": 0.5714932084083557 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 448.1370162963867, 226.16162109375, 22.697677612304688, 41.12109375 ], "score": 0.5705586075782776 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 564.4719314575195, 216.6785888671875, 21.739654541015625, 55.666534423828125 ], "score": 0.42958009243011475 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 607.0548248291016, 226.88133239746094, 24.722518920898438, 55.01881408691406 ], "score": 0.3632986545562744 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 397.77149200439453, 225.7212677001953, 20.139083862304688, 40.45195007324219 ], "score": 0.3493962585926056 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 434.0734100341797, 225.8658447265625, 21.54632568359375, 40.2042236328125 ], "score": 0.23565591871738434 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 592.5734329223633, 225.1917724609375, 30.643463134765625, 59.1763916015625 ], "score": 0.16508202254772186 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 581.3367462158203, 223.26783752441406, 23.109283447265625, 49.97010803222656 ], "score": 0.13308288156986237 }, { "image_id": 1275, "category_id": 1.0, "bbox": [ 457.56298065185547, 222.9161376953125, 20.8624267578125, 41.3333740234375 ], "score": 0.11654163897037506 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 470.9818649291992, 218.42245483398438, 19.983901977539062, 49.070587158203125 ], "score": 0.9727122783660889 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 544.1827774047852, 220.68919372558594, 20.3765869140625, 46.68745422363281 ], "score": 0.9399094581604004 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 49.178199768066406, 209.6685333251953, 25.30609130859375, 52.75910949707031 ], "score": 0.9115152359008789 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 504.26849365234375, 217.39376831054688, 18.24249267578125, 50.265655517578125 ], "score": 0.8952856659889221 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 440.40252685546875, 226.10728454589844, 24.4012451171875, 42.18821716308594 ], "score": 0.7027115821838379 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 481.3795852661133, 221.15359497070312, 19.904937744140625, 48.25653076171875 ], "score": 0.4949076771736145 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 514.3014907836914, 216.84091186523438, 17.575302124023438, 51.157958984375 ], "score": 0.38213837146759033 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 608.9133071899414, 223.43138122558594, 23.353500366210938, 55.47224426269531 ], "score": 0.2095760703086853 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 454.65404510498047, 222.1885528564453, 20.550460815429688, 43.76863098144531 ], "score": 0.1813981831073761 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 551.9944763183594, 217.83131408691406, 21.0296630859375, 45.31932067871094 ], "score": 0.13912299275398254 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 420.90511322021484, 216.34796142578125, 45.91163635253906, 50.03076171875 ], "score": 0.10908918082714081 }, { "image_id": 1276, "category_id": 1.0, "bbox": [ 429.0336608886719, 223.0226593017578, 22.0703125, 39.93367004394531 ], "score": 0.10556726902723312 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 55.014729499816895, 209.19143676757812, 23.67274284362793, 50.832122802734375 ], "score": 0.9965566992759705 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 533.3977890014648, 212.88253784179688, 22.6312255859375, 51.813140869140625 ], "score": 0.9703061580657959 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 473.03871154785156, 221.795166015625, 20.922393798828125, 45.534271240234375 ], "score": 0.9626055955886841 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 505.33531188964844, 214.26803588867188, 19.03778076171875, 51.6346435546875 ], "score": 0.9351919889450073 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 514.6762084960938, 217.44973754882812, 18.683853149414062, 50.77215576171875 ], "score": 0.578178882598877 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 433.8945007324219, 225.1715850830078, 23.986129760742188, 42.99482727050781 ], "score": 0.5424135327339172 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 446.52393341064453, 224.09259033203125, 24.247665405273438, 42.93487548828125 ], "score": 0.48355141282081604 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 396.3563537597656, 224.46910095214844, 21.507110595703125, 41.62049865722656 ], "score": 0.3033106327056885 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 487.9600143432617, 220.37632751464844, 18.790969848632812, 47.14768981933594 ], "score": 0.21782028675079346 }, { "image_id": 1277, "category_id": 1.0, "bbox": [ 608.5542297363281, 220.4154052734375, 23.904647827148438, 62.133514404296875 ], "score": 0.11428549885749817 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 524.8859024047852, 212.53399658203125, 22.865371704101562, 51.5626220703125 ], "score": 0.9771708846092224 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 55.647430419921875, 212.37103271484375, 22.647247314453125, 48.318756103515625 ], "score": 0.9697290062904358 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 442.5135040283203, 222.04637145996094, 22.488861083984375, 43.05293273925781 ], "score": 0.910434901714325 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 473.37867736816406, 221.16041564941406, 18.823623657226562, 46.02421569824219 ], "score": 0.8800268173217773 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 489.7439193725586, 221.33692932128906, 19.696044921875, 47.36695861816406 ], "score": 0.6852296590805054 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 506.7547607421875, 215.3175048828125, 19.8126220703125, 52.898590087890625 ], "score": 0.6673725843429565 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 395.87169647216797, 224.22459411621094, 21.461257934570312, 42.14143371582031 ], "score": 0.4719944894313812 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 497.67608642578125, 219.236083984375, 20.270767211914062, 49.71710205078125 ], "score": 0.4568423628807068 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 434.1280746459961, 215.54241943359375, 22.705001831054688, 49.354766845703125 ], "score": 0.43641847372055054 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 46.07073783874512, 211.7633819580078, 23.849220275878906, 43.141082763671875 ], "score": 0.20070025324821472 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 481.70352935791016, 217.66050720214844, 19.620285034179688, 48.65727233886719 ], "score": 0.1638113558292389 }, { "image_id": 1278, "category_id": 1.0, "bbox": [ 473.5421371459961, 218.18045043945312, 66.96784973144531, 55.445892333984375 ], "score": 0.12041213363409042 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 53.77100944519043, 210.4100341796875, 25.5385684967041, 48.65533447265625 ], "score": 0.9948160648345947 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 472.5495147705078, 217.96812438964844, 19.882659912109375, 50.64338684082031 ], "score": 0.9943247437477112 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 503.431396484375, 214.46728515625, 22.241668701171875, 55.6888427734375 ], "score": 0.9848587512969971 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 442.6721954345703, 223.47972106933594, 22.147445678710938, 43.44325256347656 ], "score": 0.8995958566665649 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 512.5421142578125, 211.5164794921875, 21.67816162109375, 54.28045654296875 ], "score": 0.5776178240776062 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 434.04361724853516, 219.5161590576172, 21.4447021484375, 46.87016296386719 ], "score": 0.490901917219162 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 598.0674743652344, 231.07296752929688, 28.498764038085938, 58.96551513671875 ], "score": 0.4124465584754944 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 31.332521438598633, 203.69036865234375, 23.16436767578125, 40.4144287109375 ], "score": 0.2699440121650696 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 397.2906494140625, 224.32989501953125, 20.441665649414062, 43.259674072265625 ], "score": 0.229965478181839 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 479.77386474609375, 221.33306884765625, 20.512771606445312, 49.552978515625 ], "score": 0.15263424813747406 }, { "image_id": 1279, "category_id": 1.0, "bbox": [ 39.45525407791138, 207.25010681152344, 28.285892009735107, 52.92143249511719 ], "score": 0.13154847919940948 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 53.25747489929199, 211.75064086914062, 25.313377380371094, 49.241302490234375 ], "score": 0.9945333003997803 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 473.77166748046875, 218.5872344970703, 18.89068603515625, 50.42607116699219 ], "score": 0.9855566024780273 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 596.1844635009766, 221.84103393554688, 31.011428833007812, 66.996337890625 ], "score": 0.9852975010871887 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 523.199577331543, 222.69631958007812, 21.20208740234375, 45.476409912109375 ], "score": 0.9130076766014099 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 443.2408142089844, 222.86643981933594, 21.652069091796875, 43.22438049316406 ], "score": 0.7772876024246216 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 490.51605224609375, 217.822998046875, 18.467025756835938, 48.6844482421875 ], "score": 0.6961796879768372 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 506.5908432006836, 217.8235626220703, 19.13665771484375, 48.57695007324219 ], "score": 0.6171711683273315 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 498.7461471557617, 216.73426818847656, 18.915023803710938, 48.58393859863281 ], "score": 0.61219322681427 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 434.36840057373047, 223.9517822265625, 21.905975341796875, 43.04461669921875 ], "score": 0.5174413919448853 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 397.7729797363281, 225.4024200439453, 20.244903564453125, 44.04847717285156 ], "score": 0.4057048559188843 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 14.545241594314575, 199.8173828125, 26.8093478679657, 49.44244384765625 ], "score": 0.3662732243537903 }, { "image_id": 1280, "category_id": 1.0, "bbox": [ 513.822135925293, 221.70474243164062, 22.1343994140625, 49.273681640625 ], "score": 0.12040616571903229 }, { "image_id": 1281, "category_id": 1.0, "bbox": [ 591.174430847168, 231.3194580078125, 31.248397827148438, 64.371337890625 ], "score": 0.9917484521865845 }, { "image_id": 1281, "category_id": 1.0, "bbox": [ 53.30754280090332, 211.10415649414062, 24.933786392211914, 49.574005126953125 ], "score": 0.9897462129592896 }, { "image_id": 1281, "category_id": 1.0, "bbox": [ 398.331298828125, 221.36314392089844, 20.78094482421875, 43.95625305175781 ], "score": 0.268782377243042 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 471.66133880615234, 218.1439666748047, 20.228195190429688, 49.57737731933594 ], "score": 0.9928499460220337 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 52.257752418518066, 212.17405700683594, 25.851335525512695, 49.77040100097656 ], "score": 0.991551399230957 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 555.1601791381836, 223.4317626953125, 21.71478271484375, 45.79876708984375 ], "score": 0.9890171885490417 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 594.2705917358398, 227.05540466308594, 28.24615478515625, 58.76994323730469 ], "score": 0.9146378636360168 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 442.0273208618164, 220.62771606445312, 23.183059692382812, 46.07891845703125 ], "score": 0.8585410118103027 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 504.73583221435547, 215.3841552734375, 19.55657958984375, 52.390716552734375 ], "score": 0.8310004472732544 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 397.1737289428711, 222.60479736328125, 20.849227905273438, 44.292999267578125 ], "score": 0.7994782328605652 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 514.4496536254883, 218.98709106445312, 18.549118041992188, 49.12457275390625 ], "score": 0.45137718319892883 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 434.68761444091797, 219.00997924804688, 20.405044555664062, 47.44793701171875 ], "score": 0.3629186153411865 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 72.75142669677734, 208.73837280273438, 19.239521026611328, 48.40106201171875 ], "score": 0.1508117914199829 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 576.9387817382812, 227.12448120117188, 54.91493225097656, 71.01361083984375 ], "score": 0.11882082372903824 }, { "image_id": 1282, "category_id": 1.0, "bbox": [ 611.0287857055664, 224.06251525878906, 27.35504150390625, 75.27876281738281 ], "score": 0.11247214674949646 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 470.96763610839844, 216.57818603515625, 22.008514404296875, 52.529205322265625 ], "score": 0.9977390766143799 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 504.2856979370117, 216.92286682128906, 21.683883666992188, 52.04219055175781 ], "score": 0.9782333374023438 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 574.0773773193359, 224.08462524414062, 20.481643676757812, 45.78753662109375 ], "score": 0.8860769867897034 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 596.9295501708984, 229.81301879882812, 27.586135864257812, 57.40716552734375 ], "score": 0.8286251425743103 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 440.9768295288086, 222.58660888671875, 23.298416137695312, 44.928131103515625 ], "score": 0.7887458205223083 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 398.135986328125, 224.3172149658203, 21.238937377929688, 44.80229187011719 ], "score": 0.5005908012390137 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 31.913275718688965, 195.84481811523438, 83.27354907989502, 44.10284423828125 ], "score": 0.14962556958198547 }, { "image_id": 1283, "category_id": 1.0, "bbox": [ 423.88404846191406, 211.1707000732422, 40.85090637207031, 47.98222351074219 ], "score": 0.14906716346740723 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 52.78521537780762, 211.94607543945312, 25.96466064453125, 46.36865234375 ], "score": 0.9768197536468506 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 596.7314529418945, 225.18392944335938, 28.245849609375, 57.0927734375 ], "score": 0.8276834487915039 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 398.1187438964844, 221.06605529785156, 20.480880737304688, 46.80369567871094 ], "score": 0.7007403373718262 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 433.116455078125, 220.60816955566406, 22.0416259765625, 44.22862243652344 ], "score": 0.6598443984985352 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 379.5237350463867, 214.29812622070312, 85.213623046875, 53.432281494140625 ], "score": 0.13610953092575073 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 417.6137924194336, 208.68869018554688, 40.388336181640625, 51.89971923828125 ], "score": 0.11959382146596909 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 586.6647338867188, 211.20274353027344, 29.881515502929688, 73.90345764160156 ], "score": 0.10454870760440826 }, { "image_id": 1284, "category_id": 1.0, "bbox": [ 467.10357666015625, 212.782958984375, 21.533660888671875, 43.9205322265625 ], "score": 0.10148242861032486 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 472.6188659667969, 215.2675018310547, 19.770126342773438, 53.21711730957031 ], "score": 0.9943376779556274 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 52.64170169830322, 212.06927490234375, 25.504465103149414, 46.554168701171875 ], "score": 0.9748787879943848 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 597.1633911132812, 226.4530487060547, 29.33502197265625, 61.24101257324219 ], "score": 0.917617678642273 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 505.0579833984375, 216.17172241210938, 20.304412841796875, 49.719268798828125 ], "score": 0.901837944984436 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 442.2982406616211, 220.7449951171875, 21.792526245117188, 45.932708740234375 ], "score": 0.7242180109024048 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 399.7300720214844, 224.57815551757812, 19.313507080078125, 44.4208984375 ], "score": 0.5634415149688721 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 514.329719543457, 218.75132751464844, 19.336013793945312, 48.28111267089844 ], "score": 0.46304556727409363 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 428.06697845458984, 219.76434326171875, 19.763717651367188, 44.470855712890625 ], "score": 0.1763543039560318 }, { "image_id": 1285, "category_id": 1.0, "bbox": [ 612.9644775390625, 226.42755126953125, 22.20428466796875, 61.7200927734375 ], "score": 0.1345825046300888 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 472.3143768310547, 213.48165893554688, 19.90234375, 56.040802001953125 ], "score": 0.993177056312561 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 52.28753089904785, 211.3180694580078, 23.942384719848633, 49.03681945800781 ], "score": 0.9443879723548889 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 505.2299499511719, 217.2770233154297, 19.576492309570312, 51.90611267089844 ], "score": 0.9313114285469055 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 594.0158462524414, 222.0149383544922, 32.725982666015625, 66.42146301269531 ], "score": 0.8869396448135376 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 399.30912017822266, 223.32118225097656, 21.148605346679688, 45.21482849121094 ], "score": 0.7303344011306763 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 442.57362365722656, 218.3536376953125, 21.706085205078125, 47.83624267578125 ], "score": 0.7170501351356506 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 514.9293899536133, 220.9517364501953, 19.42901611328125, 48.79994201660156 ], "score": 0.6913596987724304 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 426.7315673828125, 218.5342254638672, 20.996170043945312, 43.54695129394531 ], "score": 0.4938611090183258 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 612.8104400634766, 224.3489227294922, 25.121307373046875, 73.67869567871094 ], "score": 0.13949376344680786 }, { "image_id": 1286, "category_id": 1.0, "bbox": [ 379.9619674682617, 195.1316375732422, 20.0634765625, 54.638031005859375 ], "score": 0.10239262133836746 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 471.7417907714844, 212.2845458984375, 21.52679443359375, 57.020355224609375 ], "score": 0.997632622718811 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 49.50615406036377, 213.64453125, 26.688804626464844, 48.253204345703125 ], "score": 0.9830842018127441 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 504.5836639404297, 218.24229431152344, 21.090774536132812, 47.44697570800781 ], "score": 0.9196953773498535 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 594.4258880615234, 218.61366271972656, 33.95484924316406, 73.40202331542969 ], "score": 0.8738077878952026 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 442.4915313720703, 219.60267639160156, 21.903076171875, 47.01719665527344 ], "score": 0.8259549140930176 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 426.1129379272461, 220.14166259765625, 20.694046020507812, 43.180816650390625 ], "score": 0.5581102967262268 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 400.59825897216797, 223.36624145507812, 21.422576904296875, 46.017547607421875 ], "score": 0.39624908566474915 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 434.1617965698242, 216.65606689453125, 21.915435791015625, 48.813262939453125 ], "score": 0.24291056394577026 }, { "image_id": 1287, "category_id": 1.0, "bbox": [ 417.1894836425781, 220.44168090820312, 21.089096069335938, 43.335601806640625 ], "score": 0.16631625592708588 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 472.2026824951172, 212.9638214111328, 21.270904541015625, 55.78965759277344 ], "score": 0.9908995032310486 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 502.38109588623047, 217.33639526367188, 21.029129028320312, 49.66351318359375 ], "score": 0.9675838947296143 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 52.768192291259766, 212.38580322265625, 24.310102462768555, 45.470733642578125 ], "score": 0.9381593465805054 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 594.8026657104492, 213.51417541503906, 30.4803466796875, 73.62718200683594 ], "score": 0.9350036382675171 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 442.2781753540039, 221.071044921875, 21.989288330078125, 46.462890625 ], "score": 0.8601560592651367 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 513.5382843017578, 216.999267578125, 22.584686279296875, 50.097686767578125 ], "score": 0.7043305039405823 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 400.79166412353516, 224.02740478515625, 20.7373046875, 44.80828857421875 ], "score": 0.6516122817993164 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 427.7275848388672, 221.09872436523438, 18.725967407226562, 43.933319091796875 ], "score": 0.5466787219047546 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 38.07005167007446, 208.97775268554688, 28.81605863571167, 41.967315673828125 ], "score": 0.172257661819458 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 588.2819747924805, 230.38998413085938, 44.99443054199219, 93.53363037109375 ], "score": 0.15741094946861267 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 418.5078430175781, 221.68252563476562, 18.762130737304688, 43.692596435546875 ], "score": 0.11465119570493698 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 612.7443313598633, 227.1097869873047, 25.280914306640625, 74.16755676269531 ], "score": 0.10854542255401611 }, { "image_id": 1288, "category_id": 1.0, "bbox": [ 422.0042037963867, 214.68690490722656, 39.219512939453125, 49.70927429199219 ], "score": 0.10557562857866287 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 473.3873748779297, 216.51187133789062, 19.78790283203125, 50.95123291015625 ], "score": 0.9737012386322021 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 52.713990211486816, 212.0067901611328, 25.309677124023438, 48.27012634277344 ], "score": 0.9453613758087158 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 503.87123107910156, 219.12484741210938, 19.2974853515625, 47.958251953125 ], "score": 0.9179791808128357 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 594.21142578125, 227.14599609375, 32.46940612792969, 63.7208251953125 ], "score": 0.872548520565033 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 441.73206329345703, 217.65774536132812, 21.005935668945312, 48.372100830078125 ], "score": 0.8140118718147278 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 400.3786849975586, 223.81398010253906, 20.835418701171875, 44.81437683105469 ], "score": 0.7235137820243835 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 515.092658996582, 217.9423065185547, 20.195693969726562, 48.72810363769531 ], "score": 0.6271973252296448 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 427.06470489501953, 219.17446899414062, 18.610992431640625, 45.46356201171875 ], "score": 0.42380791902542114 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 458.1040954589844, 212.35826110839844, 19.30999755859375, 49.08308410644531 ], "score": 0.12493248283863068 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 612.0310592651367, 222.9095458984375, 27.302017211914062, 78.68572998046875 ], "score": 0.11398585140705109 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 376.65050506591797, 216.22906494140625, 93.13270568847656, 52.308380126953125 ], "score": 0.11382727324962616 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 417.77172088623047, 222.16290283203125, 18.804779052734375, 43.311065673828125 ], "score": 0.11016865074634552 }, { "image_id": 1289, "category_id": 1.0, "bbox": [ 487.78846740722656, 219.043212890625, 17.657928466796875, 44.48193359375 ], "score": 0.10959145426750183 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 474.3925476074219, 214.91094970703125, 19.81903076171875, 51.780303955078125 ], "score": 0.9845049977302551 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 503.75553131103516, 217.7344970703125, 19.735260009765625, 48.998138427734375 ], "score": 0.9691953659057617 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 54.17337894439697, 211.44004821777344, 23.412609100341797, 48.47514343261719 ], "score": 0.9637203216552734 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 593.5245132446289, 213.7360076904297, 31.091384887695312, 73.10981750488281 ], "score": 0.8667252063751221 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 442.1599578857422, 216.29379272460938, 23.112030029296875, 50.021392822265625 ], "score": 0.7941223382949829 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 399.52430725097656, 221.67520141601562, 21.655960083007812, 46.871337890625 ], "score": 0.7409937381744385 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 514.5189666748047, 218.430908203125, 20.579910278320312, 49.230438232421875 ], "score": 0.6951038241386414 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 455.8534240722656, 211.1400909423828, 22.445068359375, 50.24375915527344 ], "score": 0.6563103199005127 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 425.9754943847656, 218.9165496826172, 20.440902709960938, 44.35502624511719 ], "score": 0.4696098566055298 }, { "image_id": 1290, "category_id": 1.0, "bbox": [ 435.11627197265625, 217.558349609375, 19.128646850585938, 50.36248779296875 ], "score": 0.18503303825855255 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 50.97916603088379, 207.06631469726562, 27.31067657470703, 57.21929931640625 ], "score": 0.9932396411895752 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 465.35125732421875, 212.3743896484375, 22.894821166992188, 54.30059814453125 ], "score": 0.9662069082260132 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 502.8953170776367, 218.27317810058594, 20.605316162109375, 50.05668640136719 ], "score": 0.9636032581329346 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 591.4938354492188, 223.0224151611328, 32.1148681640625, 68.97721862792969 ], "score": 0.8833514451980591 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 442.7115249633789, 218.35955810546875, 22.478179931640625, 48.52850341796875 ], "score": 0.8683117628097534 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 480.93177795410156, 215.45108032226562, 20.33203125, 54.0693359375 ], "score": 0.8268858790397644 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 427.52357482910156, 219.20675659179688, 19.649658203125, 47.105438232421875 ], "score": 0.7411648631095886 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 399.51744079589844, 221.39730834960938, 21.321945190429688, 47.373870849609375 ], "score": 0.6816020011901855 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 513.2195663452148, 217.31309509277344, 21.406402587890625, 51.62394714355469 ], "score": 0.5401156544685364 }, { "image_id": 1291, "category_id": 1.0, "bbox": [ 62.524423599243164, 210.05068969726562, 20.660104751586914, 48.439605712890625 ], "score": 0.11085017770528793 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 473.3462142944336, 213.42483520507812, 19.817657470703125, 56.043853759765625 ], "score": 0.9571899175643921 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 500.1821517944336, 218.92330932617188, 19.485549926757812, 48.448822021484375 ], "score": 0.9556630849838257 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 51.1965274810791, 209.17111206054688, 24.130659103393555, 50.383514404296875 ], "score": 0.9419915080070496 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 592.2382736206055, 229.17031860351562, 30.504837036132812, 70.176513671875 ], "score": 0.9043084383010864 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 441.1443328857422, 219.94033813476562, 21.587753295898438, 47.866973876953125 ], "score": 0.9027696251869202 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 515.0087356567383, 216.54818725585938, 20.59417724609375, 49.6883544921875 ], "score": 0.8159365653991699 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 426.7060852050781, 220.4297637939453, 19.058914184570312, 43.00428771972656 ], "score": 0.4692257046699524 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 489.1225051879883, 217.45286560058594, 18.88336181640625, 50.27619934082031 ], "score": 0.43607738614082336 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 457.763671875, 213.96395874023438, 19.820022583007812, 50.005584716796875 ], "score": 0.4068993330001831 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 401.1032485961914, 225.54661560058594, 20.852584838867188, 42.68632507324219 ], "score": 0.2873826324939728 }, { "image_id": 1292, "category_id": 1.0, "bbox": [ 417.3296356201172, 220.9112091064453, 19.360885620117188, 44.24510192871094 ], "score": 0.11268100887537003 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 49.00556564331055, 210.76979064941406, 26.887102127075195, 52.25834655761719 ], "score": 0.9797838926315308 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 474.76318359375, 215.1514129638672, 19.186172485351562, 51.98225402832031 ], "score": 0.9739230871200562 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 441.4521789550781, 218.82652282714844, 21.926727294921875, 48.69502258300781 ], "score": 0.8637816905975342 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 594.2491149902344, 228.85470581054688, 33.294525146484375, 70.67987060546875 ], "score": 0.834785521030426 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 496.5102005004883, 221.1403045654297, 20.969009399414062, 48.00874328613281 ], "score": 0.6901304721832275 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 466.7329788208008, 214.77569580078125, 19.891281127929688, 49.156005859375 ], "score": 0.6162089109420776 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 425.7600402832031, 219.18765258789062, 18.878936767578125, 44.3665771484375 ], "score": 0.5702404975891113 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 458.14170837402344, 213.48898315429688, 21.188201904296875, 48.32220458984375 ], "score": 0.5678937435150146 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 514.2789077758789, 217.3203582763672, 20.533599853515625, 46.70597839355469 ], "score": 0.5533826351165771 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 401.8720245361328, 221.09255981445312, 19.988784790039062, 46.335357666015625 ], "score": 0.5116694569587708 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 503.80714416503906, 218.40853881835938, 21.355209350585938, 45.167327880859375 ], "score": 0.426186203956604 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 488.9444351196289, 217.20086669921875, 20.559463500976562, 46.5147705078125 ], "score": 0.3047145903110504 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 487.33142852783203, 211.203369140625, 46.527862548828125, 59.020355224609375 ], "score": 0.15106210112571716 }, { "image_id": 1293, "category_id": 1.0, "bbox": [ 396.06014251708984, 216.40371704101562, 18.369979858398438, 46.994781494140625 ], "score": 0.10201409459114075 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 52.13483810424805, 210.014404296875, 27.089614868164062, 51.45947265625 ], "score": 0.9944802522659302 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 592.7708053588867, 228.68423461914062, 27.786483764648438, 65.34735107421875 ], "score": 0.8718401789665222 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 474.50389862060547, 219.13685607910156, 19.502334594726562, 49.10639953613281 ], "score": 0.8482673764228821 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 442.85755157470703, 218.25875854492188, 19.466476440429688, 47.54815673828125 ], "score": 0.8121899962425232 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 490.0850296020508, 221.0029754638672, 18.218460083007812, 45.91401672363281 ], "score": 0.6982676982879639 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 450.52684783935547, 217.85206604003906, 19.736862182617188, 46.27317810058594 ], "score": 0.6576670408248901 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 467.4766159057617, 218.57958984375, 18.436050415039062, 48.335174560546875 ], "score": 0.635411262512207 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 505.30506134033203, 219.94107055664062, 19.18060302734375, 45.30242919921875 ], "score": 0.5524085760116577 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 425.47962188720703, 218.3521270751953, 18.413543701171875, 47.31483459472656 ], "score": 0.5491686463356018 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 402.33726501464844, 221.87767028808594, 20.043716430664062, 43.95408630371094 ], "score": 0.5404813885688782 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 496.9853973388672, 220.33253479003906, 19.973907470703125, 48.95799255371094 ], "score": 0.4575176537036896 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 37.21665143966675, 208.15066528320312, 26.868231296539307, 40.92578125 ], "score": 0.4546186923980713 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 515.7450485229492, 217.15621948242188, 18.60809326171875, 46.007232666015625 ], "score": 0.39620572328567505 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 436.1204528808594, 215.74169921875, 17.677459716796875, 52.28662109375 ], "score": 0.35260140895843506 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 410.4993438720703, 217.11361694335938, 18.76373291015625, 47.91619873046875 ], "score": 0.23692244291305542 }, { "image_id": 1294, "category_id": 1.0, "bbox": [ 601.0380935668945, 217.03944396972656, 31.439590454101562, 70.52445983886719 ], "score": 0.11404101550579071 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 474.7084426879883, 217.28890991210938, 18.559722900390625, 50.939605712890625 ], "score": 0.9554198980331421 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 47.60406017303467, 211.71536254882812, 26.444129943847656, 50.880462646484375 ], "score": 0.9497253894805908 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 592.6996612548828, 229.2557373046875, 30.635910034179688, 71.98345947265625 ], "score": 0.9111523628234863 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 441.1830520629883, 220.84361267089844, 20.996780395507812, 43.31840515136719 ], "score": 0.7586705684661865 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 458.1783676147461, 214.4475555419922, 19.03167724609375, 46.47810363769531 ], "score": 0.7503882050514221 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 490.4458236694336, 220.20388793945312, 18.788223266601562, 45.741363525390625 ], "score": 0.7465990781784058 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 505.3171920776367, 219.41908264160156, 21.57470703125, 46.00511169433594 ], "score": 0.616068422794342 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 17.152695655822754, 201.7952880859375, 26.038289070129395, 51.61688232421875 ], "score": 0.543371856212616 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 465.48675537109375, 213.5480499267578, 20.239181518554688, 50.43965148925781 ], "score": 0.46073347330093384 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 514.3149948120117, 216.99916076660156, 20.216217041015625, 45.38853454589844 ], "score": 0.34321659803390503 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 425.53775787353516, 223.24989318847656, 22.314682006835938, 42.07090759277344 ], "score": 0.27684423327445984 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 403.41907501220703, 221.93585205078125, 19.444046020507812, 43.617919921875 ], "score": 0.25758302211761475 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 58.63266944885254, 214.04994201660156, 23.449935913085938, 44.96940612792969 ], "score": 0.23845583200454712 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 416.7466735839844, 222.22662353515625, 21.77581787109375, 43.57611083984375 ], "score": 0.20661422610282898 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 415.12645721435547, 215.02073669433594, 44.49897766113281, 52.61012268066406 ], "score": 0.1815725415945053 }, { "image_id": 1295, "category_id": 1.0, "bbox": [ 21.966984272003174, 202.586181640625, 44.83643293380737, 62.440032958984375 ], "score": 0.10344654321670532 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 474.36595916748047, 219.83763122558594, 19.438323974609375, 48.68052673339844 ], "score": 0.9851093292236328 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 592.0690155029297, 229.8094482421875, 32.03399658203125, 68.02996826171875 ], "score": 0.9113703966140747 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 48.87760639190674, 212.07669067382812, 25.348796844482422, 46.863677978515625 ], "score": 0.9084968566894531 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 440.6367874145508, 224.37034606933594, 20.709228515625, 43.80653381347656 ], "score": 0.808038592338562 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 498.7281036376953, 219.47174072265625, 20.070571899414062, 50.041656494140625 ], "score": 0.7635129690170288 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 490.90301513671875, 219.4156494140625, 17.957305908203125, 47.753509521484375 ], "score": 0.6217916011810303 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 514.9518966674805, 218.62472534179688, 19.446182250976562, 44.929656982421875 ], "score": 0.5065953731536865 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 456.2294387817383, 218.1073760986328, 20.373916625976562, 42.84709167480469 ], "score": 0.4647190272808075 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 408.4412384033203, 220.98899841308594, 20.710678100585938, 44.14067077636719 ], "score": 0.25983214378356934 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 426.3138961791992, 221.94769287109375, 19.371871948242188, 44.685272216796875 ], "score": 0.20600581169128418 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 466.1204147338867, 214.84976196289062, 21.544723510742188, 50.463836669921875 ], "score": 0.13096913695335388 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 503.72596740722656, 212.36068725585938, 22.679290771484375, 47.903411865234375 ], "score": 0.12101799249649048 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 37.956252098083496, 203.92807006835938, 77.59905338287354, 55.247528076171875 ], "score": 0.11298906803131104 }, { "image_id": 1296, "category_id": 1.0, "bbox": [ 416.5903854370117, 216.077392578125, 19.436492919921875, 46.428680419921875 ], "score": 0.11132883280515671 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 474.43538665771484, 216.9495849609375, 19.641265869140625, 49.1751708984375 ], "score": 0.9769176244735718 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 54.31263446807861, 213.201171875, 24.602346420288086, 47.584014892578125 ], "score": 0.9745476245880127 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 591.7664337158203, 230.69834899902344, 29.677505493164062, 64.08869934082031 ], "score": 0.8438398838043213 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 441.0169219970703, 224.2938690185547, 20.693130493164062, 43.23942565917969 ], "score": 0.4842117726802826 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 497.37579345703125, 219.028076171875, 20.782623291015625, 48.888336181640625 ], "score": 0.4551467299461365 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 513.4783172607422, 217.1274871826172, 20.418701171875, 43.19920349121094 ], "score": 0.4497712552547455 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 466.78340911865234, 211.25189208984375, 20.349273681640625, 53.46795654296875 ], "score": 0.40062931180000305 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 491.15291595458984, 216.7896728515625, 18.679122924804688, 47.55987548828125 ], "score": 0.38447731733322144 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 395.2360153198242, 219.61102294921875, 71.02859497070312, 53.441253662109375 ], "score": 0.29478558897972107 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 448.19568634033203, 217.880615234375, 20.01556396484375, 43.911895751953125 ], "score": 0.2921093702316284 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 458.8798522949219, 215.0963134765625, 17.725067138671875, 44.174468994140625 ], "score": 0.2870277166366577 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 402.81421661376953, 222.03854370117188, 29.134368896484375, 44.085693359375 ], "score": 0.2746625542640686 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 504.48535919189453, 211.76107788085938, 23.137130737304688, 46.69439697265625 ], "score": 0.10821274667978287 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 597.3329544067383, 211.17828369140625, 35.68443298339844, 92.86309814453125 ], "score": 0.10299882292747498 }, { "image_id": 1297, "category_id": 1.0, "bbox": [ 426.4046096801758, 223.93006896972656, 21.664962768554688, 43.14079284667969 ], "score": 0.10292071104049683 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 575.9130859375, 234.85293579101562, 28.127059936523438, 66.634521484375 ], "score": 0.9909014701843262 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 59.35710430145264, 214.89344787597656, 22.589974403381348, 43.83586120605469 ], "score": 0.7655213475227356 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 475.6520080566406, 221.02981567382812, 17.9925537109375, 47.613922119140625 ], "score": 0.6927096843719482 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 440.5903625488281, 223.488525390625, 20.225830078125, 43.472442626953125 ], "score": 0.6864156723022461 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 490.56640625, 220.4027099609375, 17.363967895507812, 46.439605712890625 ], "score": 0.5858994722366333 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 409.58919525146484, 217.08670043945312, 19.730682373046875, 44.3565673828125 ], "score": 0.5407750010490417 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 513.1739044189453, 215.86878967285156, 20.424728393554688, 46.09834289550781 ], "score": 0.5132609605789185 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 504.8285675048828, 220.0143280029297, 20.100631713867188, 46.52845764160156 ], "score": 0.5038064122200012 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 497.3318862915039, 219.2226104736328, 18.69964599609375, 47.22016906738281 ], "score": 0.44242990016937256 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 426.6830062866211, 219.05029296875, 19.583816528320312, 48.40960693359375 ], "score": 0.43253883719444275 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 391.32259368896484, 218.7962188720703, 20.174484252929688, 49.58909606933594 ], "score": 0.40932387113571167 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 28.089544773101807, 203.21112060546875, 22.326171398162842, 41.722015380859375 ], "score": 0.21391740441322327 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 468.35750579833984, 218.72337341308594, 18.283767700195312, 48.83885192871094 ], "score": 0.20045025646686554 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 482.5578308105469, 218.49313354492188, 18.135147094726562, 46.875335693359375 ], "score": 0.17286983132362366 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 457.8607940673828, 216.462158203125, 17.9779052734375, 42.51470947265625 ], "score": 0.15658217668533325 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 448.18775177001953, 218.47731018066406, 19.7186279296875, 41.56202697753906 ], "score": 0.1429271250963211 }, { "image_id": 1298, "category_id": 1.0, "bbox": [ 78.47455978393555, 208.18568420410156, 18.901443481445312, 45.49896240234375 ], "score": 0.10597117245197296 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 520.4280853271484, 224.80862426757812, 39.79225158691406, 82.724853515625 ], "score": 0.9928007125854492 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 73.76008987426758, 213.6720733642578, 21.647319793701172, 50.18452453613281 ], "score": 0.990355372428894 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 472.344970703125, 220.03636169433594, 20.472183227539062, 47.88478088378906 ], "score": 0.9596530199050903 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 582.2227096557617, 221.1507568359375, 28.071060180664062, 77.359619140625 ], "score": 0.7391523122787476 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 605.1016616821289, 222.52359008789062, 30.648269653320312, 87.6400146484375 ], "score": 0.7099831104278564 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 435.5825424194336, 222.40167236328125, 21.261138916015625, 42.9117431640625 ], "score": 0.6706117391586304 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 359.74124908447266, 223.19476318359375, 19.159011840820312, 41.7625732421875 ], "score": 0.4833468794822693 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 395.8470916748047, 218.1373291015625, 18.949661254882812, 42.20782470703125 ], "score": 0.35592079162597656 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 504.6842575073242, 217.58615112304688, 20.535507202148438, 48.607757568359375 ], "score": 0.3325418531894684 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 489.7267150878906, 221.09649658203125, 18.626632690429688, 46.894744873046875 ], "score": 0.28291890025138855 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 378.4415817260742, 215.02378845214844, 17.126007080078125, 41.69364929199219 ], "score": 0.14085403084754944 }, { "image_id": 1299, "category_id": 1.0, "bbox": [ 8.489819765090942, 194.44192504882812, 23.765066862106323, 54.27166748046875 ], "score": 0.1125512570142746 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 526.445198059082, 222.5690460205078, 38.30924987792969, 101.64717102050781 ], "score": 0.9853504300117493 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 469.3475341796875, 226.948974609375, 26.79779052734375, 75.43682861328125 ], "score": 0.9556466341018677 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 480.5089569091797, 226.1035919189453, 23.839569091796875, 70.61763000488281 ], "score": 0.9221827983856201 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 328.1757354736328, 218.41221618652344, 23.190231323242188, 45.70777893066406 ], "score": 0.8708552122116089 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 408.6741638183594, 222.58189392089844, 22.022857666015625, 42.82569885253906 ], "score": 0.6596404314041138 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 360.17608642578125, 218.75466918945312, 21.012344360351562, 44.42559814453125 ], "score": 0.6473580002784729 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 508.0413818359375, 212.56700134277344, 19.648971557617188, 46.97016906738281 ], "score": 0.4154694378376007 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 489.4189453125, 219.97862243652344, 23.39630126953125, 62.75767517089844 ], "score": 0.33045169711112976 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 345.8601379394531, 218.6659393310547, 19.122543334960938, 45.10237121582031 ], "score": 0.24361932277679443 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 497.56072998046875, 214.36636352539062, 19.838027954101562, 48.09124755859375 ], "score": 0.2435387372970581 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 464.68177795410156, 220.65676879882812, 24.058990478515625, 58.2861328125 ], "score": 0.22880852222442627 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 369.81395721435547, 217.72442626953125, 20.403976440429688, 44.311431884765625 ], "score": 0.20928728580474854 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 101.77443504333496, 215.35302734375, 20.43437957763672, 50.44818115234375 ], "score": 0.17536140978336334 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 43.699607849121094, 195.21621704101562, 22.23764419555664, 43.761260986328125 ], "score": 0.1481143981218338 }, { "image_id": 1300, "category_id": 1.0, "bbox": [ 58.04333686828613, 203.74118041992188, 18.42095375061035, 39.857666015625 ], "score": 0.10002285242080688 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 456.74877166748047, 216.9242401123047, 37.73216247558594, 116.51985168457031 ], "score": 0.9924952983856201 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 295.51685333251953, 213.786376953125, 22.20733642578125, 50.2037353515625 ], "score": 0.988629162311554 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 132.09299087524414, 210.86123657226562, 24.954872131347656, 57.248443603515625 ], "score": 0.9869898557662964 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 591.2566375732422, 223.52450561523438, 30.448150634765625, 70.0596923828125 ], "score": 0.9839190244674683 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 421.89876556396484, 223.32728576660156, 28.650054931640625, 78.44407653808594 ], "score": 0.9523159265518188 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 337.93895721435547, 218.33946228027344, 18.634872436523438, 44.81883239746094 ], "score": 0.8500410318374634 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 320.1529312133789, 216.57664489746094, 20.013504028320312, 44.93263244628906 ], "score": 0.8321340084075928 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 476.86126708984375, 224.95933532714844, 31.09710693359375, 80.20320129394531 ], "score": 0.7855165004730225 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 513.6685943603516, 215.95462036132812, 21.667556762695312, 46.22515869140625 ], "score": 0.6387327909469604 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 384.04613494873047, 222.45578002929688, 22.349395751953125, 44.899505615234375 ], "score": 0.5714484453201294 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 437.97607421875, 221.52249145507812, 24.77935791015625, 73.73504638671875 ], "score": 0.4257991313934326 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 407.75123596191406, 222.82504272460938, 28.341217041015625, 73.68243408203125 ], "score": 0.42016369104385376 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 606.7465972900391, 229.7674560546875, 25.992584228515625, 60.6934814453125 ], "score": 0.29847726225852966 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 504.8434066772461, 216.74951171875, 22.021560668945312, 49.07830810546875 ], "score": 0.2873024046421051 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 481.9812774658203, 215.64366149902344, 21.0101318359375, 60.16184997558594 ], "score": 0.2566056251525879 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 559.1706848144531, 312.6795654296875, 76.03065490722656, 246.9541015625 ], "score": 0.23645085096359253 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 46.6928768157959, 197.33140563964844, 24.173355102539062, 44.51861572265625 ], "score": 0.17892423272132874 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 446.9384765625, 217.51429748535156, 33.16734313964844, 95.81651306152344 ], "score": 0.1506880521774292 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 308.81906509399414, 217.75132751464844, 23.92618179321289, 47.11067199707031 ], "score": 0.1348860114812851 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 487.93399810791016, 222.7593536376953, 25.713424682617188, 41.22624206542969 ], "score": 0.12003378570079803 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 398.6737060546875, 219.7068634033203, 19.228973388671875, 51.50505065917969 ], "score": 0.1024804562330246 }, { "image_id": 1301, "category_id": 1.0, "bbox": [ 593.380126953125, 219.10931396484375, 38.96598815917969, 122.86529541015625 ], "score": 0.10003001987934113 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 163.5746192932129, 215.65855407714844, 22.228927612304688, 50.99171447753906 ], "score": 0.9986977577209473 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 315.80772399902344, 281.46588134765625, 102.91450500488281, 268.248046875 ], "score": 0.9963864088058472 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 564.7402191162109, 228.3385772705078, 33.006439208984375, 77.47843933105469 ], "score": 0.9883880019187927 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 467.6057434082031, 220.32928466796875, 21.744613647460938, 50.4423828125 ], "score": 0.9873384237289429 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 305.20904541015625, 216.64865112304688, 24.053726196289062, 44.314971923828125 ], "score": 0.9850192070007324 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 391.64234161376953, 219.8509521484375, 35.64659118652344, 104.41162109375 ], "score": 0.9822813868522644 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 282.0874786376953, 211.8436737060547, 21.280670166015625, 51.15489196777344 ], "score": 0.9769248366355896 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 511.8955993652344, 219.2756805419922, 20.380935668945312, 51.22538757324219 ], "score": 0.972974419593811 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 590.7594299316406, 227.95762634277344, 24.5904541015625, 53.56782531738281 ], "score": 0.9667482972145081 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 399.44923400878906, 243.07000732421875, 104.00962829589844, 291.8079833984375 ], "score": 0.9287405610084534 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 495.560302734375, 222.73306274414062, 20.684967041015625, 46.85772705078125 ], "score": 0.8882262706756592 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 264.96387481689453, 215.0430450439453, 21.1248779296875, 47.91490173339844 ], "score": 0.8440256118774414 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 551.5435028076172, 220.90817260742188, 30.258331298828125, 91.75408935546875 ], "score": 0.839515209197998 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 366.5751266479492, 220.63711547851562, 26.539306640625, 75.26959228515625 ], "score": 0.7644349336624146 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 90.44903755187988, 224.65512084960938, 30.226268768310547, 61.73126220703125 ], "score": 0.39416515827178955 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 49.08675193786621, 202.80934143066406, 21.925764083862305, 45.625457763671875 ], "score": 0.3599017858505249 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 478.23516845703125, 221.8028564453125, 20.892486572265625, 48.80975341796875 ], "score": 0.290384441614151 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 382.4666976928711, 224.5745849609375, 22.342758178710938, 75.45831298828125 ], "score": 0.26735225319862366 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 420.8595657348633, 226.81442260742188, 28.931808471679688, 74.36376953125 ], "score": 0.24163107573986053 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 365.5702590942383, 258.87744140625, 93.76564025878906, 272.62774658203125 ], "score": 0.22669030725955963 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 354.0421676635742, 218.40478515625, 24.2657470703125, 63.5284423828125 ], "score": 0.1936679482460022 }, { "image_id": 1302, "category_id": 1.0, "bbox": [ 408.9830017089844, 214.6684112548828, 35.176239013671875, 108.96022033691406 ], "score": 0.10126392543315887 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 386.7786407470703, 217.6431884765625, 29.286117553710938, 77.76458740234375 ], "score": 0.9994403123855591 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 517.7906036376953, 223.6287841796875, 33.82545471191406, 90.0792236328125 ], "score": 0.9988558888435364 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 342.4311828613281, 218.2247314453125, 34.745330810546875, 98.34002685546875 ], "score": 0.9983794093132019 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 457.00565338134766, 216.33859252929688, 20.65277099609375, 49.297088623046875 ], "score": 0.9977740049362183 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 194.4805145263672, 214.2997589111328, 23.123321533203125, 49.83192443847656 ], "score": 0.9903676509857178 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 578.6281204223633, 223.8411407470703, 33.12164306640625, 69.42890930175781 ], "score": 0.9873159527778625 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 239.8892593383789, 219.10369873046875, 26.061439514160156, 52.231414794921875 ], "score": 0.9865125417709351 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 319.93019104003906, 222.63107299804688, 23.799972534179688, 69.7606201171875 ], "score": 0.9739485383033752 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 273.1217956542969, 217.02740478515625, 22.321739196777344, 45.5931396484375 ], "score": 0.9371792078018188 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 50.05385398864746, 254.1101531982422, 122.29718208312988, 323.80531311035156 ], "score": 0.9168457984924316 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 506.71749114990234, 226.27572631835938, 27.421875, 89.54803466796875 ], "score": 0.6776961088180542 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 614.7509765625, 217.48477172851562, 22.124176025390625, 60.014923095703125 ], "score": 0.482174813747406 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 360.4180145263672, 218.94931030273438, 26.32904052734375, 102.02203369140625 ], "score": 0.21518224477767944 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 50.69998741149902, 203.42599487304688, 47.7824592590332, 49.716064453125 ], "score": 0.16031289100646973 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 502.6283264160156, 218.99827575683594, 24.918899536132812, 56.57704162597656 ], "score": 0.15301740169525146 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ -20.697293281555176, 228.9900360107422, 48.14551830291748, 100.92964172363281 ], "score": 0.12637057900428772 }, { "image_id": 1303, "category_id": 1.0, "bbox": [ 257.86752700805664, 220.0975341796875, 22.91351318359375, 44.0836181640625 ], "score": 0.11412975192070007 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 520.22705078125, 219.9051513671875, 36.188812255859375, 87.88006591796875 ], "score": 0.9986502528190613 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 64.65726852416992, 210.8875732421875, 52.153282165527344, 107.310302734375 ], "score": 0.9984256029129028 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 290.9867477416992, 214.93695068359375, 37.284584045410156, 99.939697265625 ], "score": 0.9963098764419556 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 345.40157318115234, 220.08209228515625, 28.455581665039062, 74.03826904296875 ], "score": 0.994125247001648 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 601.6059875488281, 212.25123596191406, 24.1204833984375, 65.31947326660156 ], "score": 0.993411660194397 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 580.1216888427734, 219.7849578857422, 22.2637939453125, 56.20735168457031 ], "score": 0.9848767518997192 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 238.00718307495117, 216.79977416992188, 20.061416625976562, 47.58135986328125 ], "score": 0.9805002212524414 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 465.67501068115234, 223.83187866210938, 28.999099731445312, 85.76654052734375 ], "score": 0.9629000425338745 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 439.2276382446289, 240.2099609375, 23.956451416015625, 67.45855712890625 ], "score": 0.9499102830886841 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 31.20814561843872, 215.56544494628906, 26.343505382537842, 51.57087707519531 ], "score": 0.9286282658576965 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 274.963436126709, 213.97747802734375, 26.191749572753906, 78.12823486328125 ], "score": 0.8682413101196289 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 479.15897369384766, 228.1798553466797, 27.089309692382812, 76.74745178222656 ], "score": 0.6983839273452759 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 199.00291442871094, 216.4097442626953, 22.672157287597656, 46.59498596191406 ], "score": 0.6595486402511597 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 445.37445068359375, 216.5973358154297, 30.176162719726562, 93.43598937988281 ], "score": 0.47319525480270386 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 13.945467472076416, 218.89788818359375, 24.50160503387451, 52.46343994140625 ], "score": 0.32514989376068115 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 505.83290100097656, 225.66970825195312, 34.29328918457031, 88.6483154296875 ], "score": 0.22203046083450317 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 217.1290397644043, 215.96145629882812, 22.69275665283203, 50.23095703125 ], "score": 0.1999007761478424 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 193.15130233764648, 212.23233032226562, 50.618934631347656, 58.288330078125 ], "score": 0.19520103931427002 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 491.7926025390625, 220.50242614746094, 27.611160278320312, 82.14253234863281 ], "score": 0.19367575645446777 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 456.53980255126953, 233.83596801757812, 26.810531616210938, 74.263916015625 ], "score": 0.1756688952445984 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 436.9618225097656, 218.65101623535156, 27.656021118164062, 61.34828186035156 ], "score": 0.17200914025306702 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 503.46981048583984, 207.98548889160156, 21.899795532226562, 57.78691101074219 ], "score": 0.1690187156200409 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 433.2448959350586, 203.78231811523438, 68.93035888671875, 72.75836181640625 ], "score": 0.16302065551280975 }, { "image_id": 1304, "category_id": 1.0, "bbox": [ 31.22128963470459, 198.27023315429688, 71.12171649932861, 50.7923583984375 ], "score": 0.13978910446166992 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 305.5876350402832, 217.02293395996094, 29.643001556396484, 77.51722717285156 ], "score": 0.9991495609283447 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 12.086188793182373, 220.98483276367188, 64.56292390823364, 136.64239501953125 ], "score": 0.9980204105377197 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 165.00680923461914, 218.6721649169922, 38.6480712890625, 89.48017883300781 ], "score": 0.9979987144470215 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 539.9501800537109, 225.26416015625, 21.298599243164062, 47.628204345703125 ], "score": 0.99776291847229 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 255.28900146484375, 217.37539672851562, 33.7249755859375, 90.25372314453125 ], "score": 0.9971505403518677 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 469.4780731201172, 219.28152465820312, 34.45526123046875, 89.557373046875 ], "score": 0.9933509826660156 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 392.2049331665039, 244.88446044921875, 22.1826171875, 56.7222900390625 ], "score": 0.9922193884849548 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 595.2690505981445, 215.39450073242188, 22.695999145507812, 60.556243896484375 ], "score": 0.9879021644592285 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 577.687873840332, 220.43826293945312, 19.129791259765625, 53.250244140625 ], "score": 0.9816780090332031 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 422.5106430053711, 224.08482360839844, 27.09991455078125, 81.78834533691406 ], "score": 0.9755878448486328 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 56.18242263793945, 210.6527557373047, 26.91873550415039, 55.84992980957031 ], "score": 0.9712127447128296 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 236.39257431030273, 222.78759765625, 24.98912811279297, 64.90524291992188 ], "score": 0.9587702751159668 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 443.6113739013672, 212.3872833251953, 33.859405517578125, 96.83418273925781 ], "score": 0.9459407329559326 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 518.2544326782227, 225.44845581054688, 21.860198974609375, 50.374237060546875 ], "score": 0.912696123123169 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 271.62242889404297, 214.7338104248047, 28.177146911621094, 89.31779479980469 ], "score": 0.6315973401069641 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 328.78849029541016, 216.59185791015625, 21.78314208984375, 47.513336181640625 ], "score": 0.5624333024024963 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 505.09288787841797, 216.20870971679688, 18.567962646484375, 44.33685302734375 ], "score": 0.33520445227622986 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 408.96228790283203, 222.24041748046875, 28.340682983398438, 75.82763671875 ], "score": 0.2778654992580414 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 514.0360260009766, 217.15997314453125, 19.231491088867188, 47.039398193359375 ], "score": 0.19167083501815796 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 582.7772903442383, 212.9437255859375, 24.767837524414062, 64.94448852539062 ], "score": 0.17945575714111328 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 14.22802209854126, 196.97494506835938, 43.35991621017456, 119.13275146484375 ], "score": 0.1725912243127823 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 528.5371780395508, 228.70790100097656, 24.569473266601562, 43.98155212402344 ], "score": 0.1587013602256775 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 499.7403335571289, 210.7424774169922, 17.29827880859375, 41.505706787109375 ], "score": 0.15721037983894348 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 33.259639739990234, 203.84632873535156, 25.52661895751953, 59.65748596191406 ], "score": 0.13727332651615143 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 455.4252624511719, 213.73716735839844, 23.257827758789062, 61.53999328613281 ], "score": 0.12912359833717346 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 606.0432434082031, 210.7723846435547, 23.348464965820312, 57.61341857910156 ], "score": 0.12853315472602844 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 45.315566062927246, 263.2475280761719, 37.885165214538574, 92.41510009765625 ], "score": 0.1269940733909607 }, { "image_id": 1305, "category_id": 1.0, "bbox": [ 397.9133987426758, 221.3845672607422, 29.706192016601562, 92.03907775878906 ], "score": 0.11375684291124344 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 111.24123573303223, 218.24871826171875, 58.23620796203613, 139.97235107421875 ], "score": 0.9995293021202087 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 271.0623550415039, 216.81275939941406, 26.46991729736328, 75.50779724121094 ], "score": 0.9987034797668457 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 375.51666259765625, 213.14959716796875, 36.89537048339844, 92.14984130859375 ], "score": 0.9986494779586792 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 214.54444885253906, 213.80276489257812, 32.77576446533203, 88.09649658203125 ], "score": 0.9955132007598877 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 553.8628768920898, 224.06423950195312, 20.984344482421875, 49.528533935546875 ], "score": 0.995077908039093 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 528.1811141967773, 223.0605926513672, 22.37030029296875, 53.24632263183594 ], "score": 0.992988109588623 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 238.94906997680664, 213.17462158203125, 30.469512939453125, 93.614013671875 ], "score": 0.9888472557067871 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 418.231201171875, 216.1392822265625, 35.73860168457031, 93.67041015625 ], "score": 0.986356258392334 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 346.49513244628906, 249.17141723632812, 23.053436279296875, 49.98291015625 ], "score": 0.9817123413085938 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 303.692626953125, 219.33380126953125, 21.043548583984375, 48.203094482421875 ], "score": 0.9700929522514343 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 7.4521684646606445, 209.20603942871094, 56.66420936584473, 183.2714385986328 ], "score": 0.962424635887146 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 591.1151885986328, 213.21742248535156, 21.821975708007812, 60.48481750488281 ], "score": 0.9359127283096313 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 316.4921760559082, 219.68182373046875, 20.717220306396484, 50.321441650390625 ], "score": 0.935547947883606 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 80.45354843139648, 220.36865234375, 21.942214965820312, 44.1614990234375 ], "score": 0.8634631633758545 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 171.6178321838379, 220.82391357421875, 19.536094665527344, 41.2337646484375 ], "score": 0.6979650259017944 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 405.54439544677734, 219.76097106933594, 26.769866943359375, 74.29194641113281 ], "score": 0.45618999004364014 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 96.60685539245605, 218.02346801757812, 20.79660415649414, 46.616363525390625 ], "score": 0.44881531596183777 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 467.4434280395508, 215.16253662109375, 18.978118896484375, 41.0352783203125 ], "score": 0.43719255924224854 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 578.8355255126953, 218.06863403320312, 19.020767211914062, 54.021820068359375 ], "score": 0.43713611364364624 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 336.8263244628906, 216.59107971191406, 22.300491333007812, 52.35844421386719 ], "score": 0.4118087887763977 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 498.1294250488281, 211.18247985839844, 19.237060546875, 41.864837646484375 ], "score": 0.2696537375450134 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 506.09130859375, 210.0758514404297, 19.07958984375, 42.807647705078125 ], "score": 0.2688250243663788 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 490.4103088378906, 212.33224487304688, 18.095169067382812, 39.67828369140625 ], "score": 0.2459830790758133 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 482.66170501708984, 212.10137939453125, 17.7142333984375, 39.417083740234375 ], "score": 0.24388447403907776 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 390.9596252441406, 211.64535522460938, 35.16448974609375, 96.877197265625 ], "score": 0.20078086853027344 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 570.2249145507812, 220.06820678710938, 18.548431396484375, 49.354827880859375 ], "score": 0.1816444993019104 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 31.044564247131348, 197.29489135742188, 63.173956871032715, 58.905853271484375 ], "score": 0.1797906756401062 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 79.44150447845459, 213.69874572753906, 59.55761432647705, 60.64836120605469 ], "score": 0.15905238687992096 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 251.82111740112305, 219.04714965820312, 28.306427001953125, 83.96380615234375 ], "score": 0.1531427502632141 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 513.6488342285156, 215.11383056640625, 20.8062744140625, 48.7569580078125 ], "score": 0.1180637776851654 }, { "image_id": 1306, "category_id": 1.0, "bbox": [ 325.23365020751953, 217.7102508544922, 22.6611328125, 45.46415710449219 ], "score": 0.1160135269165039 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 537.8366088867188, 221.65383911132812, 24.57916259765625, 55.99261474609375 ], "score": 0.9993720054626465 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 106.77400588989258, 223.12765502929688, 61.17525100708008, 151.19879150390625 ], "score": 0.9980262517929077 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 566.4476013183594, 224.50233459472656, 21.63116455078125, 52.05165100097656 ], "score": 0.9979199767112732 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 340.76438903808594, 218.74183654785156, 29.625396728515625, 84.31654357910156 ], "score": 0.9975528120994568 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 235.73089599609375, 219.37277221679688, 26.015701293945312, 69.00326538085938 ], "score": 0.9969043731689453 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 373.72547149658203, 219.87962341308594, 34.04335021972656, 82.95283508300781 ], "score": 0.9966166019439697 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 296.7804145812988, 210.3673858642578, 33.38300704956055, 94.10261535644531 ], "score": 0.9962323307991028 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 205.62814712524414, 228.81454467773438, 44.93995666503906, 119.37060546875 ], "score": 0.9924347996711731 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 182.5760269165039, 214.300048828125, 29.637489318847656, 78.52249145507812 ], "score": 0.9874944686889648 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 601.7123031616211, 216.7526397705078, 21.724090576171875, 57.26017761230469 ], "score": 0.9748020768165588 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 275.1675033569336, 217.04396057128906, 21.74468994140625, 46.77183532714844 ], "score": 0.8490985035896301 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 167.52256393432617, 220.75271606445312, 27.854080200195312, 61.660552978515625 ], "score": 0.7854589819908142 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 359.0618896484375, 219.99215698242188, 26.540603637695312, 70.1778564453125 ], "score": 0.7654879689216614 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 584.0388107299805, 217.39593505859375, 20.1702880859375, 53.038543701171875 ], "score": 0.6049448251724243 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 468.17100524902344, 217.59930419921875, 19.610519409179688, 39.48797607421875 ], "score": 0.46896904706954956 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 498.5394287109375, 214.83349609375, 18.612899780273438, 41.324493408203125 ], "score": 0.3317120373249054 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 481.9153594970703, 216.20745849609375, 18.294143676757812, 41.26171875 ], "score": 0.2752411961555481 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 36.18020057678223, 206.04379272460938, 33.91286849975586, 43.35980224609375 ], "score": 0.26047778129577637 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 489.6522903442383, 215.9979248046875, 18.406600952148438, 41.09222412109375 ], "score": 0.2462327629327774 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 202.19783782958984, 216.02542114257812, 30.86437225341797, 86.9654541015625 ], "score": 0.24607208371162415 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 551.7310333251953, 224.73045349121094, 23.0853271484375, 50.40827941894531 ], "score": 0.20237255096435547 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 220.0166893005371, 223.75711059570312, 36.44950866699219, 88.32843017578125 ], "score": 0.1786080002784729 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 511.61399841308594, 208.8645477294922, 19.369277954101562, 44.040435791015625 ], "score": 0.16453289985656738 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 98.18876266479492, 219.03115844726562, 20.612030029296875, 47.12506103515625 ], "score": 0.16253399848937988 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 576.6716766357422, 222.1646728515625, 19.98992919921875, 53.110107421875 ], "score": 0.1600686013698578 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 284.5177459716797, 219.20938110351562, 27.793846130371094, 58.278656005859375 ], "score": 0.15453097224235535 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 617.491455078125, 213.83375549316406, 19.129867553710938, 60.49998474121094 ], "score": 0.13399142026901245 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 13.759942054748535, 202.17506408691406, 60.234718322753906, 58.88587951660156 ], "score": 0.13166332244873047 }, { "image_id": 1307, "category_id": 1.0, "bbox": [ 458.6408233642578, 209.1062469482422, 72.23480224609375, 52.25102233886719 ], "score": 0.10680852830410004 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 553.5699844360352, 224.1062469482422, 22.36663818359375, 52.93437194824219 ], "score": 0.9992297887802124 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 368.66905212402344, 216.80653381347656, 36.618194580078125, 84.16151428222656 ], "score": 0.9990167617797852 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 220.3826904296875, 217.66140747070312, 53.559303283691406, 147.07073974609375 ], "score": 0.9957654476165771 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 133.05869102478027, 220.32920837402344, 28.077783584594727, 56.87068176269531 ], "score": 0.9956755042076111 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 334.53556060791016, 220.12722778320312, 28.457183837890625, 76.62347412109375 ], "score": 0.9956651926040649 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 280.8729553222656, 224.927978515625, 42.01030731201172, 108.52490234375 ], "score": 0.989902138710022 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 583.5033416748047, 220.89938354492188, 22.418212890625, 57.813140869140625 ], "score": 0.9894376993179321 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 404.96837615966797, 221.78001403808594, 21.181411743164062, 49.67289733886719 ], "score": 0.9879512786865234 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 150.48819541931152, 218.41793823242188, 31.61768913269043, 74.51229858398438 ], "score": 0.984307587146759 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 197.2795295715332, 217.09014892578125, 23.96434783935547, 67.32089233398438 ], "score": 0.9820297360420227 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 608.3863830566406, 215.1402587890625, 23.051071166992188, 54.780426025390625 ], "score": 0.9128714799880981 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 471.56131744384766, 217.9793701171875, 20.016555786132812, 43.059112548828125 ], "score": 0.8434323072433472 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 73.29333782196045, 218.4468536376953, 20.07956027984619, 46.45799255371094 ], "score": 0.8324373960494995 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 504.76207733154297, 213.63851928710938, 20.242843627929688, 44.38543701171875 ], "score": 0.7872722148895264 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 519.578971862793, 212.55577087402344, 21.064071655273438, 48.82225036621094 ], "score": 0.697166919708252 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 63.35615158081055, 215.2419891357422, 22.596158981323242, 51.06132507324219 ], "score": 0.659196138381958 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 323.8045883178711, 217.1699981689453, 24.32464599609375, 71.70060729980469 ], "score": 0.6347599029541016 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 568.7780380249023, 224.43080139160156, 20.8880615234375, 52.34483337402344 ], "score": 0.5418542623519897 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 592.5986862182617, 219.7482147216797, 23.071823120117188, 51.83250427246094 ], "score": 0.4929434061050415 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 166.60232543945312, 218.8743438720703, 29.390602111816406, 78.09492492675781 ], "score": 0.2684476673603058 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 22.29588270187378, 202.0070037841797, 70.182363986969, 56.82435607910156 ], "score": 0.20641207695007324 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 480.1656723022461, 216.0344696044922, 19.159698486328125, 43.03669738769531 ], "score": 0.16541236639022827 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 249.81843948364258, 222.4337921142578, 23.426895141601562, 43.20802307128906 ], "score": 0.1652502417564392 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 24.378137588500977, 204.33087158203125, 33.42252731323242, 46.707489013671875 ], "score": 0.12928324937820435 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 489.8480224609375, 214.2653350830078, 17.353591918945312, 42.02803039550781 ], "score": 0.10738573968410492 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 48.52261543273926, 210.86114501953125, 23.831005096435547, 49.72076416015625 ], "score": 0.10601525753736496 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 344.7542190551758, 212.68310546875, 31.168212890625, 81.12039184570312 ], "score": 0.10326533764600754 }, { "image_id": 1308, "category_id": 1.0, "bbox": [ 490.35797119140625, 211.69793701171875, 65.37628173828125, 57.754364013671875 ], "score": 0.10239521414041519 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 251.65447235107422, 217.86648559570312, 32.121238708496094, 78.2042236328125 ], "score": 0.9994889497756958 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 427.32669830322266, 213.4961700439453, 31.866989135742188, 83.87504577636719 ], "score": 0.9992811679840088 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 16.070685386657715, 214.59605407714844, 39.51772689819336, 94.29158020019531 ], "score": 0.9968880414962769 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 298.7798309326172, 215.16419982910156, 54.95094299316406, 148.18882751464844 ], "score": 0.9958768486976624 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 562.1753692626953, 223.3870391845703, 23.131866455078125, 59.30937194824219 ], "score": 0.9909703731536865 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 126.17073059082031, 218.29495239257812, 27.98480987548828, 74.51947021484375 ], "score": 0.9889575242996216 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 106.2596321105957, 221.2382049560547, 24.113788604736328, 53.22575378417969 ], "score": 0.9858788847923279 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 344.17633056640625, 215.46124267578125, 39.027099609375, 118.72857666015625 ], "score": 0.9751708507537842 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 192.90252685546875, 238.40545654296875, 22.420616149902344, 55.70697021484375 ], "score": 0.9685632586479187 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 530.4850387573242, 214.72708129882812, 23.242263793945312, 46.571075439453125 ], "score": 0.9451910257339478 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 482.8902053833008, 220.56396484375, 19.659576416015625, 48.3428955078125 ], "score": 0.9447294473648071 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 160.96418380737305, 219.84364318847656, 27.39452362060547, 66.30381774902344 ], "score": 0.9333505630493164 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 579.9298858642578, 225.0592803955078, 30.206680297851562, 77.69084167480469 ], "score": 0.6842817068099976 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 174.79679107666016, 218.26007080078125, 25.80718994140625, 55.697052001953125 ], "score": 0.6076807975769043 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 600.1536178588867, 225.8723907470703, 22.39227294921875, 55.91651916503906 ], "score": 0.5485625267028809 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 322.3975372314453, 218.68357849121094, 50.50506591796875, 147.1214141845703 ], "score": 0.5248233675956726 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 226.5704345703125, 217.05360412597656, 20.98247528076172, 43.64292907714844 ], "score": 0.4852793216705322 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 476.03271484375, 217.3124237060547, 18.88824462890625, 45.74922180175781 ], "score": 0.4741046726703644 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 286.79054260253906, 220.00668334960938, 30.124359130859375, 85.6715087890625 ], "score": 0.3855357766151428 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 66.61355972290039, 212.9568328857422, 18.017578125, 41.13232421875 ], "score": 0.3460932970046997 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 142.30270385742188, 224.32839965820312, 25.35411834716797, 62.528564453125 ], "score": 0.2647605538368225 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 499.58396911621094, 213.2797393798828, 17.365951538085938, 44.96958923339844 ], "score": 0.24746808409690857 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 38.661837577819824, 214.9019317626953, 26.832494735717773, 71.09342956542969 ], "score": 0.23418135941028595 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 81.56901359558105, 211.8101348876953, 19.15874481201172, 48.46321105957031 ], "score": 0.1719369739294052 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 74.22511577606201, 212.6501007080078, 19.04750347137451, 45.51527404785156 ], "score": 0.1605987250804901 }, { "image_id": 1309, "category_id": 1.0, "bbox": [ 465.90343475341797, 215.10012817382812, 18.21441650390625, 45.38006591796875 ], "score": 0.10912574827671051 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 584.8523330688477, 226.76730346679688, 25.340194702148438, 62.91937255859375 ], "score": 0.9995880126953125 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 211.44102096557617, 217.05540466308594, 34.59705352783203, 79.45625305175781 ], "score": 0.9993112087249756 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 381.5940475463867, 224.24388122558594, 56.16790771484375, 122.79359436035156 ], "score": 0.9992769360542297 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 455.24166107177734, 218.439208984375, 28.905563354492188, 73.16403198242188 ], "score": 0.9991133213043213 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 255.77335357666016, 215.12185668945312, 29.14783477783203, 75.705078125 ], "score": 0.9959694147109985 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 480.66078186035156, 222.7361297607422, 44.68902587890625, 113.99888610839844 ], "score": 0.9924511313438416 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 84.50387954711914, 215.11984252929688, 34.03022766113281, 92.32623291015625 ], "score": 0.9912371635437012 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 157.6380729675293, 237.4111785888672, 25.423660278320312, 51.49287414550781 ], "score": 0.990369439125061 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 129.2977237701416, 220.0926971435547, 25.162715911865234, 58.51121520996094 ], "score": 0.9842746257781982 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 554.4789886474609, 214.97918701171875, 19.34478759765625, 54.756744384765625 ], "score": 0.9792433977127075 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 309.95471954345703, 211.6751251220703, 26.559600830078125, 64.30570983886719 ], "score": 0.9723392128944397 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 286.30462646484375, 214.37034606933594, 25.23731231689453, 71.00978088378906 ], "score": 0.9584798216819763 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 192.6582145690918, 214.034423828125, 22.387046813964844, 51.99859619140625 ], "score": 0.8700239658355713 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 109.43397521972656, 225.26608276367188, 26.309986114501953, 58.866668701171875 ], "score": 0.8365775346755981 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 567.8267669677734, 219.3751678466797, 20.08697509765625, 55.59126281738281 ], "score": 0.6507391929626465 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 33.4027624130249, 216.46998596191406, 20.43079376220703, 44.06935119628906 ], "score": 0.5348094701766968 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 270.7879829406738, 215.863525390625, 26.8243408203125, 71.14111328125 ], "score": 0.44306206703186035 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 118.26189041137695, 217.75912475585938, 26.375732421875, 61.127410888671875 ], "score": 0.40172135829925537 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 41.61062717437744, 214.1339569091797, 19.01556968688965, 44.88258361816406 ], "score": 0.27994850277900696 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 20.36940097808838, 213.53724670410156, 21.72043800354004, 48.66630554199219 ], "score": 0.22594599425792694 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 495.6999206542969, 220.20948791503906, 25.393905639648438, 64.17286682128906 ], "score": 0.2116679549217224 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 379.1164779663086, 219.29139709472656, 35.74516296386719, 96.74168395996094 ], "score": 0.16324955224990845 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 477.8294372558594, 223.33010864257812, 27.164840698242188, 75.44635009765625 ], "score": 0.15606501698493958 }, { "image_id": 1310, "category_id": 1.0, "bbox": [ 97.9372787475586, 222.12155151367188, 31.61773681640625, 77.15582275390625 ], "score": 0.14403441548347473 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 222.8264617919922, 216.0887451171875, 29.437255859375, 76.71963500976562 ], "score": 0.9994149208068848 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 183.30598831176758, 217.81553649902344, 30.35602569580078, 77.76069641113281 ], "score": 0.9992107152938843 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 137.30053901672363, 217.83950805664062, 35.61240196228027, 82.55712890625 ], "score": 0.9988887310028076 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 521.384391784668, 214.52886962890625, 23.51715087890625, 59.301666259765625 ], "score": 0.9984607100486755 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 393.5558319091797, 222.1346893310547, 41.08650207519531, 114.45515441894531 ], "score": 0.998334527015686 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 543.5886764526367, 226.94468688964844, 24.467315673828125, 65.18965148925781 ], "score": 0.9981836080551147 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 52.18894004821777, 221.0264434814453, 46.40310287475586, 123.51679992675781 ], "score": 0.9980530738830566 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 449.8012924194336, 220.18540954589844, 49.488983154296875, 128.34974670410156 ], "score": 0.9960519671440125 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 602.8044128417969, 223.88565063476562, 23.433151245117188, 56.15081787109375 ], "score": 0.9906277656555176 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 268.1842803955078, 215.69398498535156, 27.532119750976562, 65.05674743652344 ], "score": 0.9871609210968018 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 106.24491691589355, 217.72909545898438, 23.857994079589844, 61.921539306640625 ], "score": 0.9784030318260193 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 503.35277557373047, 219.95236206054688, 19.628448486328125, 51.662139892578125 ], "score": 0.9522978067398071 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 358.1867218017578, 219.49317932128906, 20.953903198242188, 47.71128845214844 ], "score": 0.9128652811050415 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 234.2871856689453, 214.3405303955078, 28.12816619873047, 73.14549255371094 ], "score": 0.6853660941123962 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 254.97661590576172, 222.21575927734375, 24.94903564453125, 57.193359375 ], "score": 0.6514531970024109 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 20.5025577545166, 215.61148071289062, 26.931767463684082, 58.443206787109375 ], "score": 0.6066015362739563 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 245.73749542236328, 216.1754913330078, 25.285911560058594, 66.68772888183594 ], "score": 0.5866658687591553 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 578.7159729003906, 217.5249481201172, 18.355178833007812, 51.20497131347656 ], "score": 0.4738618731498718 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 435.3892517089844, 220.07766723632812, 32.95722961425781, 121.051513671875 ], "score": 0.4142027199268341 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 167.3561668395996, 214.07296752929688, 23.482093811035156, 52.640533447265625 ], "score": 0.3753758668899536 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 79.14920330047607, 214.8856658935547, 26.211848258972168, 65.35096740722656 ], "score": 0.29380106925964355 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 568.2215881347656, 219.41995239257812, 19.876708984375, 49.89935302734375 ], "score": 0.27039092779159546 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 6.514341831207275, 208.2948455810547, 53.11391592025757, 54.56483459472656 ], "score": 0.2391653060913086 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 67.52962112426758, 213.25390625, 42.17134475708008, 102.092529296875 ], "score": 0.16238707304000854 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 447.02911376953125, 280.04266357421875, 23.295516967773438, 57.90850830078125 ], "score": 0.10630962252616882 }, { "image_id": 1311, "category_id": 1.0, "bbox": [ 466.2358856201172, 216.38983154296875, 30.243682861328125, 89.01776123046875 ], "score": 0.1005391851067543 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 319.31875228881836, 218.697998046875, 40.03469467163086, 105.596435546875 ], "score": 0.9984687566757202 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 147.24875450134277, 223.02890014648438, 41.5549373626709, 118.07476806640625 ], "score": 0.9974967837333679 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 241.54922485351562, 216.33444213867188, 22.90863037109375, 64.734619140625 ], "score": 0.9912874698638916 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 282.4309730529785, 214.8069305419922, 27.839012145996094, 57.17863464355469 ], "score": 0.9877177476882935 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 85.82386016845703, 221.12109375, 21.781940460205078, 56.981536865234375 ], "score": 0.9621111154556274 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 43.61879348754883, 214.62974548339844, 28.172321319580078, 66.64781188964844 ], "score": 0.9576064348220825 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 194.77062225341797, 217.15589904785156, 28.692398071289062, 77.36820983886719 ], "score": 0.9407603740692139 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 233.67416381835938, 220.38038635253906, 20.642433166503906, 59.26087951660156 ], "score": 0.9179939031600952 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 501.74049377441406, 221.46554565429688, 43.09059143066406, 116.62799072265625 ], "score": 0.8481497764587402 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 408.2442092895508, 219.4948272705078, 20.4150390625, 50.32505798339844 ], "score": 0.8181049823760986 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 490.99815368652344, 229.53756713867188, 34.832916259765625, 99.9415283203125 ], "score": 0.8179376125335693 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 475.34175872802734, 219.20509338378906, 33.328857421875, 103.00709533691406 ], "score": 0.6340714693069458 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 96.60922050476074, 228.44351196289062, 22.547607421875, 52.363677978515625 ], "score": 0.6238528490066528 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 561.7655181884766, 225.9910125732422, 20.89141845703125, 49.93174743652344 ], "score": 0.6014807224273682 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 63.19943904876709, 216.8548583984375, 23.291611671447754, 60.14556884765625 ], "score": 0.5183267593383789 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 473.1782913208008, 217.1610870361328, 22.930450439453125, 65.56504821777344 ], "score": 0.49338990449905396 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 205.83173751831055, 224.91748046875, 24.076309204101562, 62.62799072265625 ], "score": 0.4887421131134033 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 215.89801788330078, 224.39718627929688, 20.161972045898438, 56.875213623046875 ], "score": 0.35528600215911865 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 74.39093589782715, 209.00711059570312, 24.803543090820312, 64.49954223632812 ], "score": 0.3253173530101776 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 224.66279983520508, 224.08828735351562, 22.18647003173828, 58.298858642578125 ], "score": 0.31948983669281006 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 29.206457138061523, 213.4183807373047, 24.786510467529297, 56.90412902832031 ], "score": 0.3079606890678406 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 587.4201583862305, 230.6300048828125, 27.225418090820312, 71.3262939453125 ], "score": 0.2606319487094879 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 554.7291564941406, 227.57131958007812, 19.984893798828125, 43.011871337890625 ], "score": 0.20590120553970337 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 497.45399475097656, 270.9747314453125, 22.478103637695312, 65.47088623046875 ], "score": 0.14937147498130798 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 549.1571426391602, 217.46035766601562, 66.12777709960938, 67.39920043945312 ], "score": 0.13522779941558838 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 189.94680404663086, 214.7893524169922, 22.968215942382812, 62.03373718261719 ], "score": 0.12912824749946594 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 457.4855041503906, 212.99989318847656, 17.489166259765625, 36.857940673828125 ], "score": 0.12839795649051666 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 137.13021278381348, 217.44557189941406, 20.919361114501953, 49.21702575683594 ], "score": 0.12783190608024597 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 574.715690612793, 226.1702117919922, 20.779800415039062, 49.95146179199219 ], "score": 0.12214057147502899 }, { "image_id": 1312, "category_id": 1.0, "bbox": [ 495.92247009277344, 219.290771484375, 23.962631225585938, 68.00350952148438 ], "score": 0.12042513489723206 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 316.61415100097656, 216.29307556152344, 25.82000732421875, 55.95051574707031 ], "score": 0.999314546585083 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 123.68998527526855, 220.31005859375, 29.459800720214844, 66.34188842773438 ], "score": 0.9991200566291809 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 163.7971305847168, 213.96446228027344, 31.017074584960938, 72.00096130371094 ], "score": 0.9982701539993286 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 527.835807800293, 216.82183837890625, 36.68525695800781, 105.78424072265625 ], "score": 0.997051477432251 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 271.78300857543945, 220.59803771972656, 34.22260284423828, 94.87693786621094 ], "score": 0.994071364402771 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 447.7348327636719, 224.20166015625, 24.694900512695312, 65.2215576171875 ], "score": 0.9928485155105591 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 208.12206268310547, 218.80029296875, 21.80187225341797, 57.98724365234375 ], "score": 0.9778755903244019 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 556.9815444946289, 218.06204223632812, 38.917236328125, 107.1505126953125 ], "score": 0.9690278768539429 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 0.15625715255737305, 221.2874755859375, 50.42487382888794, 157.98382568359375 ], "score": 0.9527327418327332 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 245.0457763671875, 222.5301513671875, 36.839942932128906, 116.65081787109375 ], "score": 0.9499140977859497 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 216.6878318786621, 220.4185791015625, 22.29736328125, 57.963470458984375 ], "score": 0.8487914204597473 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 490.03467559814453, 241.7387237548828, 40.45570373535156, 120.69459533691406 ], "score": 0.8380295634269714 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 462.4784469604492, 219.6724853515625, 24.9005126953125, 69.6796875 ], "score": 0.8131215572357178 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 37.732412815093994, 213.3080291748047, 25.45297384262085, 60.70564270019531 ], "score": 0.6938393712043762 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 21.473641395568848, 206.85498046875, 36.28178119659424, 80.0921630859375 ], "score": 0.6531263589859009 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 230.03490447998047, 218.356689453125, 25.39783477783203, 65.77655029296875 ], "score": 0.6286565065383911 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 177.03279495239258, 215.6392822265625, 28.450584411621094, 67.90643310546875 ], "score": 0.5670298337936401 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 492.75890350341797, 218.25811767578125, 29.40185546875, 97.04595947265625 ], "score": 0.5369146466255188 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 69.2998218536377, 220.96434020996094, 26.381053924560547, 58.29048156738281 ], "score": 0.4872383177280426 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 239.44952011108398, 216.71389770507812, 27.615280151367188, 80.79254150390625 ], "score": 0.4682293236255646 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 188.51919174194336, 221.04605102539062, 25.12989044189453, 56.12493896484375 ], "score": 0.3835251033306122 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 481.0498809814453, 210.60980224609375, 19.009017944335938, 49.41302490234375 ], "score": 0.375986248254776 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 508.1056594848633, 223.01080322265625, 28.358001708984375, 88.00146484375 ], "score": 0.3750712275505066 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 50.004215240478516, 206.4820556640625, 50.85203170776367, 79.663330078125 ], "score": 0.2744055688381195 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 472.4961471557617, 213.85862731933594, 20.662765502929688, 51.77143859863281 ], "score": 0.26040929555892944 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 617.7932357788086, 224.4451904296875, 21.727218627929688, 53.054046630859375 ], "score": 0.1942012459039688 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 153.33513259887695, 219.9488067626953, 26.862144470214844, 63.27714538574219 ], "score": 0.18077579140663147 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 485.9898376464844, 216.4175262451172, 24.139328002929688, 61.10993957519531 ], "score": 0.16969510912895203 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 518.7904357910156, 221.93341064453125, 29.994735717773438, 91.79718017578125 ], "score": 0.15440616011619568 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 53.740248680114746, 214.6015167236328, 26.311612129211426, 61.18266296386719 ], "score": 0.1092812642455101 }, { "image_id": 1313, "category_id": 1.0, "bbox": [ 260.19908905029297, 229.25704956054688, 32.788848876953125, 96.52081298828125 ], "score": 0.1082565039396286 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 260.1346206665039, 216.48837280273438, 26.77642822265625, 71.17803955078125 ], "score": 0.9987552165985107 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 145.02424240112305, 236.02728271484375, 71.91383361816406, 131.08929443359375 ], "score": 0.9980520009994507 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 223.2599639892578, 220.83006286621094, 30.827484130859375, 80.41651916503906 ], "score": 0.9973744750022888 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 100.13174057006836, 221.05081176757812, 24.81048583984375, 65.0611572265625 ], "score": 0.9952434301376343 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 397.0379638671875, 227.4569854736328, 52.07061767578125, 134.6908416748047 ], "score": 0.9951072335243225 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 200.8926773071289, 220.78492736816406, 31.904945373535156, 86.62730407714844 ], "score": 0.990904688835144 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 567.0659255981445, 226.4132537841797, 28.042678833007812, 88.42411804199219 ], "score": 0.98969566822052 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 339.6192932128906, 223.13121032714844, 43.69361877441406, 113.30717468261719 ], "score": 0.9835742712020874 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 132.24966049194336, 219.37875366210938, 26.797046661376953, 65.38095092773438 ], "score": 0.9770338535308838 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 542.9741668701172, 220.9167938232422, 29.888687133789062, 81.76039123535156 ], "score": 0.9752167463302612 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 494.92321014404297, 217.32247924804688, 19.8626708984375, 55.31121826171875 ], "score": 0.9652608036994934 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 46.2284517288208, 212.83399963378906, 26.428861618041992, 72.41423034667969 ], "score": 0.9564820528030396 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 472.8860092163086, 213.9518585205078, 18.793792724609375, 49.42066955566406 ], "score": 0.9289019107818604 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 529.9921035766602, 218.00265502929688, 18.60504150390625, 57.185546875 ], "score": 0.9217079281806946 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 12.270747423171997, 213.64486694335938, 33.82912993431091, 65.84848022460938 ], "score": 0.9200352430343628 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 514.6804046630859, 219.10125732421875, 16.557235717773438, 50.949462890625 ], "score": 0.8863427639007568 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 82.81328201293945, 211.47714233398438, 21.540756225585938, 53.567291259765625 ], "score": 0.8373087644577026 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 26.786904335021973, 218.544677734375, 32.42013931274414, 60.2535400390625 ], "score": 0.7068049907684326 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 152.72109985351562, 215.92611694335938, 21.690711975097656, 62.478729248046875 ], "score": 0.6463693380355835 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 74.46271419525146, 208.78489685058594, 19.997916221618652, 52.04405212402344 ], "score": 0.4796808362007141 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 483.197021484375, 215.764892578125, 18.24676513671875, 50.5966796875 ], "score": 0.33389148116111755 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 19.255757331848145, 212.45059204101562, 70.12824535369873, 65.6561279296875 ], "score": 0.2919369339942932 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 583.5833358764648, 212.15115356445312, 30.4693603515625, 88.62042236328125 ], "score": 0.23781192302703857 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 424.19097900390625, 270.99688720703125, 33.42140197753906, 91.86248779296875 ], "score": 0.2184855043888092 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 65.4132890701294, 210.96694946289062, 19.4771146774292, 51.01434326171875 ], "score": 0.20299170911312103 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 90.77536582946777, 217.0425262451172, 25.32735824584961, 62.07841491699219 ], "score": 0.18772050738334656 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 117.81107902526855, 222.41339111328125, 23.683624267578125, 56.3682861328125 ], "score": 0.17377236485481262 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 167.46261596679688, 216.64309692382812, 23.094406127929688, 59.73858642578125 ], "score": 0.16380628943443298 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 187.04652786254883, 219.79095458984375, 22.34722137451172, 64.00918579101562 ], "score": 0.15112370252609253 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 175.60325622558594, 220.03529357910156, 23.201980590820312, 65.67893981933594 ], "score": 0.1501087248325348 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 505.62992095947266, 219.12823486328125, 19.89837646484375, 52.9761962890625 ], "score": 0.1429567188024521 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 155.44099807739258, 224.4007568359375, 29.689369201660156, 71.3472900390625 ], "score": 0.1220119521021843 }, { "image_id": 1314, "category_id": 1.0, "bbox": [ 538.1244659423828, 220.022216796875, 22.047958374023438, 66.85464477539062 ], "score": 0.11406838148832321 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 78.29803943634033, 216.45889282226562, 27.693066596984863, 69.85467529296875 ], "score": 0.9982585906982422 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 178.99316787719727, 221.93275451660156, 29.388961791992188, 74.08290100097656 ], "score": 0.9978601932525635 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 324.03491973876953, 235.06430053710938, 49.984588623046875, 129.6190185546875 ], "score": 0.9969025254249573 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 538.4085464477539, 224.74850463867188, 20.812225341796875, 57.663360595703125 ], "score": 0.9949636459350586 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 435.35362243652344, 232.08181762695312, 47.2052001953125, 112.587158203125 ], "score": 0.9946990013122559 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 103.34097862243652, 220.8489990234375, 26.839466094970703, 61.80584716796875 ], "score": 0.9916940331459045 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 557.117805480957, 218.57347106933594, 23.365325927734375, 62.85432434082031 ], "score": 0.9908941984176636 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 297.72388458251953, 221.30447387695312, 38.85231018066406, 110.62890625 ], "score": 0.9844627380371094 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 152.79085159301758, 217.18304443359375, 33.58264923095703, 81.6170654296875 ], "score": 0.984337568283081 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 507.45994567871094, 216.12933349609375, 20.223922729492188, 58.32501220703125 ], "score": 0.9760406613349915 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 32.95647144317627, 218.05828857421875, 26.322994232177734, 60.704437255859375 ], "score": 0.9586672782897949 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 490.3790283203125, 217.8846435546875, 18.533935546875, 52.524383544921875 ], "score": 0.9485853910446167 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 473.25477600097656, 218.17471313476562, 18.174667358398438, 47.00396728515625 ], "score": 0.9251799583435059 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 355.3879165649414, 229.80238342285156, 23.567428588867188, 60.78947448730469 ], "score": 0.8821920156478882 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 382.05589294433594, 218.98805236816406, 23.882675170898438, 57.78788757324219 ], "score": 0.8665618896484375 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 522.442626953125, 218.75344848632812, 20.467453002929688, 55.555419921875 ], "score": 0.804490327835083 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 304.9102020263672, 237.3011474609375, 46.86065673828125, 126.7247314453125 ], "score": 0.7820359468460083 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 498.6127471923828, 216.16224670410156, 19.164047241210938, 55.18540954589844 ], "score": 0.7283910512924194 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 140.8888053894043, 220.24334716796875, 30.30569076538086, 66.54058837890625 ], "score": 0.6766605377197266 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 483.65428924560547, 215.4649200439453, 17.391738891601562, 51.21098327636719 ], "score": 0.4672394394874573 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 585.3044128417969, 221.0239715576172, 37.78831481933594, 86.63664245605469 ], "score": 0.43391743302345276 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 529.9456024169922, 223.08651733398438, 21.020126342773438, 54.28485107421875 ], "score": 0.38983088731765747 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 113.78461837768555, 215.46849060058594, 31.107044219970703, 67.84327697753906 ], "score": 0.3461904525756836 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 423.23307037353516, 263.363037109375, 73.52294921875, 132.500244140625 ], "score": 0.33912622928619385 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 602.1400451660156, 218.43197631835938, 30.03814697265625, 79.97576904296875 ], "score": 0.28320589661598206 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 45.50008773803711, 218.35963439941406, 22.121400833129883, 54.59782409667969 ], "score": 0.2610839605331421 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 23.2108211517334, 220.62156677246094, 25.78700065612793, 59.78797912597656 ], "score": 0.25425052642822266 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 368.4752655029297, 224.14413452148438, 23.813247680664062, 59.876861572265625 ], "score": 0.2335500717163086 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 344.7571563720703, 227.68943786621094, 25.265045166015625, 56.86671447753906 ], "score": 0.219847172498703 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 57.29077339172363, 214.06678771972656, 22.561655044555664, 51.67161560058594 ], "score": 0.2003086507320404 }, { "image_id": 1315, "category_id": 1.0, "bbox": [ 10.482441186904907, 217.29331970214844, 25.225685834884644, 57.51332092285156 ], "score": 0.11206541955471039 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 306.01680755615234, 223.05592346191406, 25.736007690429688, 62.12364196777344 ], "score": 0.9989716410636902 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 569.4459533691406, 215.90264892578125, 24.20745849609375, 72.4154052734375 ], "score": 0.9987425804138184 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 68.88888359069824, 212.03363037109375, 78.15803527832031, 153.4490966796875 ], "score": 0.9983173608779907 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 153.76991271972656, 220.50205993652344, 32.20500946044922, 74.23838806152344 ], "score": 0.9981533288955688 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 466.3690185546875, 235.32025146484375, 56.31202697753906, 134.411376953125 ], "score": 0.9964678287506104 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 531.6596603393555, 236.53282165527344, 42.73536682128906, 96.08229064941406 ], "score": 0.9942018985748291 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 122.04597473144531, 220.19976806640625, 29.092559814453125, 69.73822021484375 ], "score": 0.9910244941711426 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 203.1763458251953, 224.03538513183594, 49.148101806640625, 133.62037658691406 ], "score": 0.989775538444519 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 44.50529098510742, 220.28872680664062, 28.65340232849121, 62.0623779296875 ], "score": 0.9887092709541321 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 411.17584228515625, 221.24966430664062, 20.816268920898438, 49.12921142578125 ], "score": 0.9620763063430786 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 433.7220001220703, 215.00418090820312, 23.398666381835938, 58.623992919921875 ], "score": 0.9509822130203247 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 515.9981536865234, 222.2281036376953, 18.56170654296875, 45.07411193847656 ], "score": 0.9268917441368103 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 22.468361854553223, 218.76890563964844, 26.191372871398926, 59.32136535644531 ], "score": 0.9065314531326294 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 329.25037384033203, 220.595458984375, 23.578262329101562, 64.27838134765625 ], "score": 0.8742059469223022 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 472.86571502685547, 217.12628173828125, 19.0625, 50.06243896484375 ], "score": 0.7959977388381958 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 80.29421806335449, 214.6350555419922, 27.392616271972656, 70.84843444824219 ], "score": 0.7597672939300537 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 597.7244567871094, 218.4495849609375, 29.653549194335938, 74.38198852539062 ], "score": 0.6725229024887085 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 482.83485412597656, 216.73709106445312, 19.454803466796875, 52.606170654296875 ], "score": 0.6682946681976318 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 550.4409027099609, 222.3974609375, 23.391342163085938, 61.644866943359375 ], "score": 0.5311406850814819 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 135.52988052368164, 220.25254821777344, 27.23245620727539, 60.14768981933594 ], "score": 0.49140387773513794 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 508.60851287841797, 219.97056579589844, 19.124603271484375, 49.52534484863281 ], "score": 0.4013926684856415 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 101.2747859954834, 211.14141845703125, 29.85696792602539, 77.993896484375 ], "score": 0.29864463210105896 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 7.625949382781982, 223.9780731201172, 24.820237159729004, 52.32960510253906 ], "score": 0.2512712776660919 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 499.9558639526367, 215.5982208251953, 17.289199829101562, 47.78660583496094 ], "score": 0.24723845720291138 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 591.103515625, 219.65560913085938, 24.831161499023438, 60.460662841796875 ], "score": 0.19089150428771973 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 61.261606216430664, 212.64410400390625, 24.19785499572754, 64.994140625 ], "score": 0.14818556606769562 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 84.83562469482422, 215.0079345703125, 41.01634979248047, 103.69305419921875 ], "score": 0.12878455221652985 }, { "image_id": 1316, "category_id": 1.0, "bbox": [ 31.534104347229004, 222.08726501464844, 29.535741806030273, 59.90879821777344 ], "score": 0.10833416879177094 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 560.3017807006836, 225.38067626953125, 23.59893798828125, 68.00836181640625 ], "score": 0.9995652437210083 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 198.94941329956055, 215.0212860107422, 71.51233673095703, 154.75672912597656 ], "score": 0.998009443283081 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 357.5914001464844, 219.0233917236328, 25.005722045898438, 56.90830993652344 ], "score": 0.990053653717041 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 582.883415222168, 215.50381469726562, 25.3753662109375, 76.1319580078125 ], "score": 0.9891109466552734 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 377.69275665283203, 215.7835235595703, 22.642135620117188, 56.93580627441406 ], "score": 0.9875445365905762 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 268.01441192626953, 226.6636505126953, 26.182899475097656, 57.46720886230469 ], "score": 0.9873450398445129 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 18.71269941329956, 216.67410278320312, 29.53287363052368, 68.36257934570312 ], "score": 0.982128381729126 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 434.6882629394531, 215.96722412109375, 24.260101318359375, 56.446441650390625 ], "score": 0.9800958037376404 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 110.69437980651855, 222.03436279296875, 27.10012435913086, 66.525634765625 ], "score": 0.9647051095962524 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 144.07222747802734, 220.00076293945312, 28.434734344482422, 78.21484375 ], "score": 0.9296212792396545 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 71.33794784545898, 214.3966064453125, 28.162689208984375, 77.9669189453125 ], "score": 0.8495621681213379 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 474.08172607421875, 221.61907958984375, 20.136566162109375, 48.762725830078125 ], "score": 0.8247438669204712 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 508.50406646728516, 217.91622924804688, 19.005203247070312, 49.333465576171875 ], "score": 0.8220963478088379 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 121.13749504089355, 221.56753540039062, 55.85087776184082, 136.0816650390625 ], "score": 0.7975029349327087 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 61.13380432128906, 214.8015594482422, 24.870424270629883, 75.59022521972656 ], "score": 0.6600756645202637 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 499.40113067626953, 216.69851684570312, 18.9129638671875, 49.167266845703125 ], "score": 0.6486520767211914 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 490.28846740722656, 217.76333618164062, 19.209136962890625, 48.821990966796875 ], "score": 0.6319289207458496 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 97.68613815307617, 226.0892791748047, 21.60013198852539, 61.12611389160156 ], "score": 0.6141290068626404 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 287.78093338012695, 225.16302490234375, 23.228416442871094, 58.303466796875 ], "score": 0.5934107303619385 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 481.23069763183594, 218.22711181640625, 19.8187255859375, 46.899810791015625 ], "score": 0.543997049331665 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 120.72086334228516, 217.1063232421875, 35.68197250366211, 89.9544677734375 ], "score": 0.51116943359375 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 604.6949768066406, 227.93905639648438, 31.732864379882812, 60.79803466796875 ], "score": 0.35447168350219727 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 30.801334381103516, 213.99322509765625, 26.600914001464844, 64.16357421875 ], "score": 0.3492877185344696 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 88.78262519836426, 226.87985229492188, 22.333526611328125, 63.2529296875 ], "score": 0.3153480887413025 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 543.3118438720703, 217.94529724121094, 21.318435668945312, 50.01106262207031 ], "score": 0.26098328828811646 }, { "image_id": 1317, "category_id": 1.0, "bbox": [ 3.418201208114624, 219.55303955078125, 21.663414239883423, 53.974884033203125 ], "score": 0.20266273617744446 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 129.1380500793457, 221.05599975585938, 24.743499755859375, 64.22113037109375 ], "score": 0.9990650415420532 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 339.49668884277344, 229.09881591796875, 70.94245910644531, 144.1961669921875 ], "score": 0.9986846446990967 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 578.4811782836914, 223.88247680664062, 23.023757934570312, 71.21734619140625 ], "score": 0.997452974319458 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 235.45589447021484, 228.08413696289062, 22.494468688964844, 50.274749755859375 ], "score": 0.9969567060470581 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 597.7748107910156, 223.72203063964844, 26.022186279296875, 61.52046203613281 ], "score": 0.9921821355819702 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 285.4864311218262, 214.96299743652344, 25.015830993652344, 53.06736755371094 ], "score": 0.9915252327919006 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 11.455204486846924, 216.20545959472656, 53.99634122848511, 146.07725524902344 ], "score": 0.9865339994430542 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 303.38077545166016, 212.60122680664062, 25.82134246826172, 64.15408325195312 ], "score": 0.981395959854126 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 101.94515228271484, 217.50733947753906, 24.09505844116211, 59.69169616699219 ], "score": 0.9801833629608154 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 378.39221954345703, 214.4128875732422, 22.4163818359375, 60.46253967285156 ], "score": 0.9279788732528687 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 469.36023712158203, 218.56015014648438, 19.795684814453125, 53.100830078125 ], "score": 0.9209595918655396 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 56.14175796508789, 220.6478729248047, 24.3894100189209, 64.85005187988281 ], "score": 0.8235692977905273 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 522.3486328125, 214.38858032226562, 21.191177368164062, 47.33209228515625 ], "score": 0.6649845838546753 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 488.63426208496094, 216.6097412109375, 19.401321411132812, 51.739044189453125 ], "score": 0.6247034072875977 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 253.1859588623047, 216.6603546142578, 22.99877166748047, 67.50373840332031 ], "score": 0.4854678809642792 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 508.1305694580078, 214.20118713378906, 17.322540283203125, 47.70707702636719 ], "score": 0.47468629479408264 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 497.4374771118164, 217.3439178466797, 18.26446533203125, 48.78645324707031 ], "score": 0.37656170129776 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 81.37040138244629, 223.6321563720703, 21.807918548583984, 54.34367370605469 ], "score": 0.3046913743019104 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 43.43845844268799, 217.1278076171875, 28.923320770263672, 84.81634521484375 ], "score": 0.19635923206806183 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 70.41857719421387, 223.3097686767578, 22.03044891357422, 57.35884094238281 ], "score": 0.18973803520202637 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 30.716323852539062, 235.13006591796875, 48.246517181396484, 113.01483154296875 ], "score": 0.18471072614192963 }, { "image_id": 1318, "category_id": 1.0, "bbox": [ 89.60670471191406, 217.23475646972656, 20.07488250732422, 56.13264465332031 ], "score": 0.10289989411830902 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 241.01547241210938, 216.3162078857422, 25.360107421875, 51.37342834472656 ], "score": 0.9990352988243103 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 106.1442756652832, 219.55108642578125, 25.470905303955078, 60.677459716796875 ], "score": 0.9985263347625732 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 394.6834182739258, 217.97520446777344, 20.345458984375, 55.24137878417969 ], "score": 0.9983674883842468 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 210.42207717895508, 223.8327178955078, 23.640708923339844, 52.26136779785156 ], "score": 0.9971046447753906 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 465.2145767211914, 223.7266845703125, 71.25419616699219, 155.7607421875 ], "score": 0.996945858001709 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 31.70429229736328, 216.3583984375, 21.566896438598633, 59.483123779296875 ], "score": 0.9778162240982056 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 81.6885757446289, 220.2883758544922, 22.20632553100586, 63.19639587402344 ], "score": 0.8747904300689697 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 220.72994232177734, 220.48707580566406, 26.019287109375, 56.26307678222656 ], "score": 0.8733152151107788 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 47.13508129119873, 223.25100708007812, 20.802764892578125, 52.261016845703125 ], "score": 0.7777143716812134 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 599.5568466186523, 231.86012268066406, 24.341278076171875, 52.66838073730469 ], "score": 0.744277834892273 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 503.8954544067383, 214.4971160888672, 25.31768798828125, 49.15391540527344 ], "score": 0.7172238230705261 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 71.99348449707031, 218.01100158691406, 21.430931091308594, 54.84025573730469 ], "score": 0.6050260066986084 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 473.45043182373047, 215.2850799560547, 18.740615844726562, 48.46208190917969 ], "score": 0.6030380725860596 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 17.125853300094604, 220.5328369140625, 28.04036259651184, 66.6187744140625 ], "score": 0.5847536325454712 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 486.64306640625, 208.3373260498047, 36.72294616699219, 47.449859619140625 ], "score": 0.44032761454582214 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 7.249951362609863, 226.49868774414062, 27.651619911193848, 70.70098876953125 ], "score": 0.4307553768157959 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 96.66214942932129, 222.32638549804688, 24.285125732421875, 59.1944580078125 ], "score": 0.27812206745147705 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 57.42478370666504, 215.66749572753906, 19.056310653686523, 54.11930847167969 ], "score": 0.25471776723861694 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 480.9623718261719, 213.97216796875, 19.830322265625, 46.969451904296875 ], "score": 0.22033333778381348 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 614.0414047241211, 227.6033172607422, 21.713409423828125, 58.14067077636719 ], "score": 0.16064392030239105 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ -8.177319169044495, 231.9946746826172, 28.451371788978577, 74.44709777832031 ], "score": 0.1357477605342865 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 477.4657440185547, 215.14434814453125, 46.514434814453125, 92.66290283203125 ], "score": 0.13494129478931427 }, { "image_id": 1319, "category_id": 1.0, "bbox": [ 470.1179504394531, 211.7863006591797, 40.32035827636719, 55.49546813964844 ], "score": 0.10913395136594772 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 166.41036987304688, 214.89175415039062, 23.82781982421875, 53.330291748046875 ], "score": 0.9961376190185547 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 86.6807746887207, 215.34075927734375, 25.22052764892578, 62.9183349609375 ], "score": 0.9935451745986938 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 526.5307998657227, 218.38723754882812, 21.282119750976562, 54.77459716796875 ], "score": 0.9907478094100952 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 57.290711402893066, 218.3994598388672, 23.742613792419434, 60.90071105957031 ], "score": 0.9829566478729248 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 13.808883428573608, 219.3649139404297, 27.80779004096985, 55.29048156738281 ], "score": 0.9230347871780396 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 186.18854522705078, 220.9364471435547, 24.31285858154297, 53.96913146972656 ], "score": 0.9212994575500488 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 600.3896713256836, 228.31898498535156, 26.660919189453125, 61.05384826660156 ], "score": 0.7567294836044312 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 474.57969665527344, 218.23529052734375, 18.8568115234375, 50.084747314453125 ], "score": 0.7477899789810181 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 508.5482406616211, 216.8038787841797, 18.66302490234375, 55.42994689941406 ], "score": 0.6809770464897156 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 407.4797821044922, 220.9680938720703, 19.451370239257812, 50.93519592285156 ], "score": 0.6543504595756531 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 467.0981979370117, 214.69195556640625, 17.650604248046875, 51.91748046875 ], "score": 0.6168481111526489 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 48.73799800872803, 216.4824676513672, 22.78794288635254, 59.79136657714844 ], "score": 0.5444993376731873 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 499.74361419677734, 216.68563842773438, 17.50732421875, 54.073028564453125 ], "score": 0.5129563808441162 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 39.82332229614258, 219.9348602294922, 21.817283630371094, 58.77479553222656 ], "score": 0.4824182391166687 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 29.13438320159912, 220.0725555419922, 23.560876846313477, 54.28871154785156 ], "score": 0.47718313336372375 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 175.47521591186523, 217.44296264648438, 23.64063262939453, 53.174713134765625 ], "score": 0.4400138556957245 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 71.6612720489502, 217.65821838378906, 21.856918334960938, 59.15861511230469 ], "score": 0.3296315670013428 }, { "image_id": 1320, "category_id": 1.0, "bbox": [ 490.60306549072266, 218.629638671875, 17.176513671875, 51.23394775390625 ], "score": 0.2748335599899292 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 553.7649917602539, 215.3411865234375, 20.612106323242188, 51.838409423828125 ], "score": 0.9983403086662292 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 69.09546375274658, 213.6018524169922, 27.49973773956299, 64.38435363769531 ], "score": 0.9981014728546143 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 41.954102516174316, 220.90261840820312, 22.59449005126953, 58.4566650390625 ], "score": 0.9518635869026184 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 161.35313034057617, 222.9624481201172, 24.167861938476562, 52.53010559082031 ], "score": 0.8556988835334778 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 608.3786010742188, 228.60488891601562, 26.655731201171875, 57.46356201171875 ], "score": 0.7974481582641602 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 520.1097106933594, 221.92465209960938, 19.398956298828125, 50.415130615234375 ], "score": 0.7538149952888489 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 417.5129699707031, 223.7845001220703, 20.424041748046875, 42.83903503417969 ], "score": 0.6836051940917969 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 475.3098678588867, 218.57379150390625, 18.51593017578125, 48.86407470703125 ], "score": 0.6796629428863525 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 9.819396734237671, 225.436767578125, 23.193246126174927, 51.192779541015625 ], "score": 0.6349277496337891 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 507.0747375488281, 219.5897216796875, 18.346481323242188, 49.780853271484375 ], "score": 0.5716477632522583 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 469.2848205566406, 213.7117156982422, 17.601165771484375, 49.58683776855469 ], "score": 0.4900864362716675 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 129.55224990844727, 222.98898315429688, 21.916332244873047, 47.38720703125 ], "score": 0.4632048010826111 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 483.4722900390625, 214.74465942382812, 17.077102661132812, 49.289886474609375 ], "score": 0.44717052578926086 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 25.50854206085205, 219.7299041748047, 20.202255249023438, 51.39729309082031 ], "score": 0.37273699045181274 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 55.79611301422119, 220.31703186035156, 22.275981903076172, 59.67091369628906 ], "score": 0.33051344752311707 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 34.22159194946289, 222.73165893554688, 20.339689254760742, 55.68798828125 ], "score": 0.303809255361557 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 146.37003898620605, 229.60377502441406, 23.83721351623535, 42.56053161621094 ], "score": 0.28579244017601013 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 452.3664093017578, 210.9211883544922, 19.432754516601562, 40.4281005859375 ], "score": 0.1980898529291153 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 129.76967811584473, 219.1305389404297, 57.04531669616699, 58.61634826660156 ], "score": 0.11980552971363068 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 489.46014404296875, 208.60769653320312, 18.91815185546875, 48.918212890625 ], "score": 0.11935588717460632 }, { "image_id": 1321, "category_id": 1.0, "bbox": [ 2.418243885040283, 216.9824981689453, 79.03369665145874, 60.82902526855469 ], "score": 0.11495374143123627 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 56.665096282958984, 210.95083618164062, 25.24311065673828, 64.48373413085938 ], "score": 0.9934127330780029 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 31.59080743789673, 215.61874389648438, 24.588477611541748, 63.214080810546875 ], "score": 0.9586515426635742 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 136.2186622619629, 220.90328979492188, 23.674659729003906, 52.6563720703125 ], "score": 0.9247149229049683 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 528.7137603759766, 223.50062561035156, 20.149917602539062, 50.27006530761719 ], "score": 0.8800424337387085 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 517.0073699951172, 219.36929321289062, 17.787399291992188, 50.4427490234375 ], "score": 0.8517186641693115 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 97.64244079589844, 218.54896545410156, 20.664024353027344, 48.48899841308594 ], "score": 0.83824622631073 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 467.4610900878906, 213.38331604003906, 18.53363037109375, 50.41432189941406 ], "score": 0.7113562822341919 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 581.4662170410156, 220.07327270507812, 20.846481323242188, 48.37298583984375 ], "score": 0.6914801597595215 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 481.3043975830078, 213.46360778808594, 18.613052368164062, 49.88523864746094 ], "score": 0.6547704935073853 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 428.8363265991211, 223.62203979492188, 17.836532592773438, 45.938568115234375 ], "score": 0.5190919637680054 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 16.50922417640686, 220.3250732421875, 23.28750967979431, 55.629669189453125 ], "score": 0.37568220496177673 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 451.45721435546875, 211.75257873535156, 17.460098266601562, 38.882720947265625 ], "score": 0.24110502004623413 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 460.0149154663086, 209.7924346923828, 17.468032836914062, 42.86767578125 ], "score": 0.23263075947761536 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 497.6568603515625, 211.44924926757812, 17.94708251953125, 42.2264404296875 ], "score": 0.22109076380729675 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 489.0129089355469, 211.2554473876953, 17.955703735351562, 49.54798889160156 ], "score": 0.2003847062587738 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 395.2836227416992, 224.4188690185547, 20.721054077148438, 40.77799987792969 ], "score": 0.15150515735149384 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 613.5331726074219, 222.88034057617188, 24.622879028320312, 54.075286865234375 ], "score": 0.15087181329727173 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 411.05602264404297, 224.190673828125, 18.29864501953125, 41.479400634765625 ], "score": 0.10864508152008057 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 441.751708984375, 216.74948120117188, 18.35662841796875, 41.916259765625 ], "score": 0.1075706034898758 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 388.3995819091797, 214.32955932617188, 95.19371032714844, 48.4949951171875 ], "score": 0.10614892840385437 }, { "image_id": 1322, "category_id": 1.0, "bbox": [ 593.2703399658203, 217.64515686035156, 38.04107666015625, 54.11116027832031 ], "score": 0.10111238062381744 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 527.8211975097656, 217.6771697998047, 22.02972412109375, 55.67173767089844 ], "score": 0.9968352317810059 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 23.15962553024292, 217.41177368164062, 25.03882646560669, 55.052734375 ], "score": 0.9904599785804749 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 434.7406768798828, 221.13970947265625, 22.143707275390625, 46.680938720703125 ], "score": 0.9904022812843323 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 72.34479427337646, 209.22288513183594, 20.7735013961792, 55.64442443847656 ], "score": 0.9647398591041565 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 536.4436721801758, 220.40589904785156, 22.768325805664062, 53.70573425292969 ], "score": 0.9238274693489075 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 48.1369686126709, 212.3631134033203, 21.74788475036621, 59.98115539550781 ], "score": 0.8944217562675476 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 608.8130187988281, 217.87179565429688, 22.96417236328125, 56.2874755859375 ], "score": 0.8150491118431091 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 592.0682144165039, 219.7417449951172, 22.208251953125, 46.72077941894531 ], "score": 0.7504967451095581 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 112.5344467163086, 220.49273681640625, 24.182415008544922, 52.946258544921875 ], "score": 0.5868052244186401 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 473.96209716796875, 215.98654174804688, 21.412506103515625, 44.825286865234375 ], "score": 0.5661730766296387 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 600.081787109375, 218.29469299316406, 22.801895141601562, 52.52754211425781 ], "score": 0.5483631491661072 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 37.29705810546875, 219.6988067626953, 24.424896240234375, 52.14381408691406 ], "score": 0.547935426235199 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 485.8113098144531, 211.37950134277344, 19.08721923828125, 48.95301818847656 ], "score": 0.2987609803676605 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 466.4867401123047, 212.25709533691406, 20.945053100585938, 41.66033935546875 ], "score": 0.24637287855148315 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 458.5508728027344, 211.48507690429688, 19.997711181640625, 38.215972900390625 ], "score": 0.21896785497665405 }, { "image_id": 1323, "category_id": 1.0, "bbox": [ 28.009934425354004, 200.13348388671875, 51.40088081359863, 80.19937133789062 ], "score": 0.12356735020875931 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 542.8157806396484, 216.27957153320312, 22.775344848632812, 59.677276611328125 ], "score": 0.9974219799041748 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 483.81664276123047, 213.1063232421875, 20.940628051757812, 48.49737548828125 ], "score": 0.9914500713348389 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 304.89295959472656, 215.69483947753906, 20.404129028320312, 47.49617004394531 ], "score": 0.971525251865387 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 30.147294998168945, 215.94712829589844, 26.17161750793457, 56.01240539550781 ], "score": 0.9606050252914429 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 79.99663352966309, 219.186767578125, 21.48294448852539, 51.684112548828125 ], "score": 0.8676077127456665 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 47.22550868988037, 214.5426025390625, 24.18172836303711, 52.538055419921875 ], "score": 0.8381989002227783 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 571.8240356445312, 221.38626098632812, 19.363479614257812, 47.46966552734375 ], "score": 0.7973127365112305 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 89.85244750976562, 218.73220825195312, 23.40728759765625, 49.377105712890625 ], "score": 0.6984472274780273 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 15.369325876235962, 215.2388153076172, 25.28170943260193, 53.60523986816406 ], "score": 0.6883270740509033 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 448.70250701904297, 215.7240753173828, 20.47027587890625, 46.60328674316406 ], "score": 0.6387624740600586 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 322.04761505126953, 216.3363494873047, 20.676193237304688, 47.53010559082031 ], "score": 0.5162822604179382 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 457.4826431274414, 210.90061950683594, 19.154281616210938, 49.44197082519531 ], "score": 0.4478686451911926 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 561.530876159668, 220.2928009033203, 19.630966186523438, 52.27223205566406 ], "score": 0.36496588587760925 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 6.060498952865601, 218.3683319091797, 23.986846208572388, 53.55570983886719 ], "score": 0.14481617510318756 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 5.20817756652832, 208.80738830566406, 72.95403480529785, 65.09190368652344 ], "score": 0.13578996062278748 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 591.7901611328125, 213.59646606445312, 19.667434692382812, 49.834808349609375 ], "score": 0.1322505623102188 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 465.43994903564453, 212.71145629882812, 18.340225219726562, 43.4610595703125 ], "score": 0.11748198419809341 }, { "image_id": 1324, "category_id": 1.0, "bbox": [ 64.15624618530273, 219.4461669921875, 19.456233978271484, 45.783416748046875 ], "score": 0.10639525949954987 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 551.1427688598633, 216.6950225830078, 26.986923217773438, 68.27250671386719 ], "score": 0.9943313598632812 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 61.75055980682373, 219.54331970214844, 22.60063648223877, 48.73274230957031 ], "score": 0.9398260116577148 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 284.1596984863281, 217.28399658203125, 26.18072509765625, 50.528717041015625 ], "score": 0.925009548664093 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 25.788416862487793, 217.90164184570312, 23.697662353515625, 51.256317138671875 ], "score": 0.9231194853782654 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 252.14502334594727, 218.0648193359375, 22.226295471191406, 44.03857421875 ], "score": 0.8672997951507568 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 566.9929885864258, 221.89175415039062, 20.993423461914062, 57.792205810546875 ], "score": 0.8270630836486816 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 491.1143112182617, 215.0380401611328, 19.461822509765625, 45.27494812011719 ], "score": 0.7891973853111267 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 13.541611433029175, 217.0735321044922, 25.435763597488403, 52.90397644042969 ], "score": 0.7439785003662109 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 77.00026512145996, 219.18521118164062, 20.376338958740234, 50.51458740234375 ], "score": 0.6215829253196716 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 483.11378479003906, 216.44772338867188, 19.979705810546875, 44.132537841796875 ], "score": 0.5890294313430786 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 450.94730377197266, 217.09341430664062, 18.230972290039062, 43.44140625 ], "score": 0.503145694732666 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 35.23418188095093, 218.41146850585938, 26.694185733795166, 48.4981689453125 ], "score": 0.37009963393211365 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 464.6045684814453, 214.16555786132812, 18.48114013671875, 44.646026611328125 ], "score": 0.30826234817504883 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 473.5651397705078, 213.8275909423828, 18.837509155273438, 43.90473937988281 ], "score": 0.23206593096256256 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 18.608219623565674, 213.7606658935547, 72.89592504501343, 61.16191101074219 ], "score": 0.14159634709358215 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 445.33416748046875, 209.86119079589844, 71.34819030761719, 52.86009216308594 ], "score": 0.12807472050189972 }, { "image_id": 1325, "category_id": 1.0, "bbox": [ 2.625504732131958, 217.68563842773438, 21.412495374679565, 53.892974853515625 ], "score": 0.11560294032096863 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 533.8014984130859, 216.0896759033203, 23.301620483398438, 52.77803039550781 ], "score": 0.9986346960067749 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 565.9745407104492, 222.05343627929688, 22.228775024414062, 63.45159912109375 ], "score": 0.9963074922561646 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 249.22958374023438, 217.16282653808594, 25.72620391845703, 43.84492492675781 ], "score": 0.993649959564209 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 497.21736907958984, 213.3502197265625, 19.261245727539062, 47.651214599609375 ], "score": 0.8889831304550171 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 32.07778453826904, 220.0000457763672, 22.478103637695312, 51.67094421386719 ], "score": 0.8455257415771484 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 597.7386474609375, 215.29635620117188, 21.087570190429688, 51.595703125 ], "score": 0.7006059885025024 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 47.390756607055664, 220.9259033203125, 24.440326690673828, 49.52178955078125 ], "score": 0.663916289806366 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 466.5494155883789, 214.15365600585938, 20.005950927734375, 45.51043701171875 ], "score": 0.6537482142448425 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 585.2896118164062, 221.39614868164062, 19.84405517578125, 63.123565673828125 ], "score": 0.5941270589828491 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 14.925010204315186, 215.74826049804688, 22.87341594696045, 50.550628662109375 ], "score": 0.5202240943908691 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 576.6257858276367, 219.8562774658203, 21.57867431640625, 70.64085388183594 ], "score": 0.39261043071746826 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 483.02345275878906, 214.4547882080078, 17.711715698242188, 45.61244201660156 ], "score": 0.2357037216424942 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 213.87134552001953, 216.923095703125, 23.412818908691406, 44.63427734375 ], "score": 0.13391032814979553 }, { "image_id": 1326, "category_id": 1.0, "bbox": [ 53.771114349365234, 212.14730834960938, 26.90469741821289, 50.301910400390625 ], "score": 0.10507935285568237 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 519.1089630126953, 213.06080627441406, 21.583480834960938, 48.87040710449219 ], "score": 0.9963746070861816 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 579.9267196655273, 222.4949493408203, 25.58502197265625, 61.21726989746094 ], "score": 0.9900953769683838 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 598.3336639404297, 220.1717529296875, 25.0115966796875, 62.9901123046875 ], "score": 0.8974595069885254 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 468.20301055908203, 214.98519897460938, 19.307174682617188, 46.18707275390625 ], "score": 0.8782185316085815 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 11.054965257644653, 214.63824462890625, 28.407567739486694, 59.28021240234375 ], "score": 0.7895281314849854 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 27.340574264526367, 212.3075408935547, 25.563373565673828, 57.02503967285156 ], "score": 0.7834640741348267 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 177.6287841796875, 223.26388549804688, 22.234344482421875, 40.848785400390625 ], "score": 0.7507778406143188 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 498.34911346435547, 212.7899932861328, 18.199920654296875, 46.46830749511719 ], "score": 0.42380863428115845 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 490.5589294433594, 214.83946228027344, 17.16094970703125, 44.12593078613281 ], "score": 0.3702223300933838 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 482.64678955078125, 215.5748291015625, 18.341140747070312, 42.564117431640625 ], "score": 0.3114451766014099 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 38.62403392791748, 211.199462890625, 24.840078353881836, 58.50531005859375 ], "score": 0.2573823630809784 }, { "image_id": 1327, "category_id": 1.0, "bbox": [ 9.989633560180664, 200.2606964111328, 55.69214344024658, 70.23237609863281 ], "score": 0.1730288565158844 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 596.1334609985352, 222.1836700439453, 28.179168701171875, 62.59385681152344 ], "score": 0.996130108833313 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 506.270751953125, 214.0386199951172, 21.299514770507812, 44.87608337402344 ], "score": 0.8437003493309021 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 22.36323356628418, 213.79061889648438, 27.499547004699707, 51.48602294921875 ], "score": 0.6125344038009644 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 488.00281524658203, 214.7445068359375, 19.64691162109375, 43.4217529296875 ], "score": 0.5311774611473083 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 3.470606803894043, 205.26022338867188, 51.37758731842041, 66.0382080078125 ], "score": 0.44127392768859863 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 474.7549057006836, 217.91627502441406, 18.462753295898438, 44.69761657714844 ], "score": 0.3978148102760315 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 10.815166234970093, 214.91738891601562, 24.863048791885376, 52.493682861328125 ], "score": 0.31994718313217163 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 41.18395805358887, 215.73391723632812, 20.92514991760254, 43.849212646484375 ], "score": 0.2392604798078537 }, { "image_id": 1328, "category_id": 1.0, "bbox": [ 613.9546966552734, 224.00033569335938, 20.371170043945312, 61.66973876953125 ], "score": 0.2244875133037567 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 484.459228515625, 221.9072265625, 18.210296630859375, 46.071044921875 ], "score": 0.8072172403335571 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 499.1339111328125, 217.2194061279297, 19.119796752929688, 50.05760192871094 ], "score": 0.6550012826919556 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 42.09702491760254, 213.1400146484375, 23.601388931274414, 45.787872314453125 ], "score": 0.5868270397186279 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 30.463476181030273, 209.51455688476562, 27.06913948059082, 51.770263671875 ], "score": 0.3378572463989258 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 596.6161346435547, 220.36134338378906, 22.062911987304688, 52.13114929199219 ], "score": 0.26479047536849976 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 615.9628295898438, 226.43142700195312, 21.351547241210938, 60.05767822265625 ], "score": 0.2167143076658249 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 9.21900987625122, 215.56381225585938, 25.31668186187744, 47.482666015625 ], "score": 0.1608155071735382 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 146.48568153381348, 228.13853454589844, 20.726633071899414, 40.70945739746094 ], "score": 0.14333093166351318 }, { "image_id": 1329, "category_id": 1.0, "bbox": [ 108.9191722869873, 222.790771484375, 23.264389038085938, 45.467376708984375 ], "score": 0.1056486964225769 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 526.8887710571289, 220.81686401367188, 20.24200439453125, 49.135650634765625 ], "score": 0.9486684799194336 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 511.39068603515625, 220.6759796142578, 21.207199096679688, 49.15184020996094 ], "score": 0.6209781765937805 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 499.7898864746094, 219.89686584472656, 21.1492919921875, 40.70671081542969 ], "score": 0.24804821610450745 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 24.161972999572754, 199.26019287109375, 65.84842205047607, 69.37237548828125 ], "score": 0.23988601565361023 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 69.47087287902832, 220.97555541992188, 20.4738712310791, 50.796295166015625 ], "score": 0.2266702651977539 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 543.0630111694336, 81.6671371459961, 35.93536376953125, 61.744606018066406 ], "score": 0.15554678440093994 }, { "image_id": 1330, "category_id": 1.0, "bbox": [ 59.429969787597656, 219.67556762695312, 20.820226669311523, 43.57415771484375 ], "score": 0.11480683088302612 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 567.4210739135742, 225.19444274902344, 23.120651245117188, 56.37089538574219 ], "score": 0.9910390377044678 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 555.5527877807617, 226.945068359375, 20.906906127929688, 54.86785888671875 ], "score": 0.9330282211303711 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 521.4566421508789, 221.6033935546875, 21.681137084960938, 44.855743408203125 ], "score": 0.8963620662689209 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 24.48145627975464, 213.02951049804688, 24.32645082473755, 63.73101806640625 ], "score": 0.8708420991897583 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 14.09319519996643, 215.22467041015625, 24.769524335861206, 62.609619140625 ], "score": 0.724016010761261 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 46.98587417602539, 209.78683471679688, 28.532934188842773, 67.8143310546875 ], "score": 0.5517759323120117 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 426.2397766113281, 196.80325317382812, 22.802276611328125, 57.58526611328125 ], "score": 0.22541064023971558 }, { "image_id": 1331, "category_id": 1.0, "bbox": [ 38.2563591003418, 214.58624267578125, 25.22136688232422, 52.54638671875 ], "score": 0.11975286900997162 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 583.3623504638672, 230.3682098388672, 23.308334350585938, 64.54753112792969 ], "score": 0.9977213740348816 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 604.256706237793, 221.30938720703125, 26.422576904296875, 71.459716796875 ], "score": 0.9964931011199951 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 531.4808654785156, 219.43649291992188, 19.32830810546875, 49.3978271484375 ], "score": 0.9837371706962585 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 543.8730621337891, 217.91229248046875, 19.019393920898438, 51.201629638671875 ], "score": 0.9296220541000366 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 515.1920700073242, 220.50167846679688, 18.286285400390625, 48.25311279296875 ], "score": 0.7726672887802124 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 522.9012680053711, 218.8802032470703, 19.024200439453125, 49.25526428222656 ], "score": 0.4100894331932068 }, { "image_id": 1332, "category_id": 1.0, "bbox": [ 592.4138259887695, 225.34063720703125, 24.57366943359375, 68.98175048828125 ], "score": 0.1924695074558258 }, { "image_id": 1333, "category_id": 1.0, "bbox": [ 566.1498641967773, 209.7464599609375, 24.223556518554688, 62.383880615234375 ], "score": 0.9957848191261292 }, { "image_id": 1333, "category_id": 1.0, "bbox": [ 544.6190643310547, 212.31605529785156, 21.130294799804688, 53.73576354980469 ], "score": 0.9705685973167419 }, { "image_id": 1333, "category_id": 1.0, "bbox": [ 436.80240631103516, 209.8625946044922, 30.796051025390625, 71.57038879394531 ], "score": 0.2914442718029022 }, { "image_id": 1333, "category_id": 1.0, "bbox": [ 535.4211044311523, 217.51678466796875, 20.1116943359375, 48.49151611328125 ], "score": 0.22518785297870636 }, { "image_id": 1333, "category_id": 1.0, "bbox": [ 408.6722183227539, 196.95303344726562, 61.277008056640625, 71.73941040039062 ], "score": 0.17236822843551636 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 563.9426422119141, 90.86210632324219, 19.781417846679688, 46.33123779296875 ], "score": 0.2794851064682007 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 487.5341033935547, 209.0637664794922, 19.6453857421875, 45.60302734375 ], "score": 0.26638463139533997 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 461.7360305786133, 203.30369567871094, 60.93437194824219, 73.02980041503906 ], "score": 0.25986820459365845 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 466.99886322021484, 210.03785705566406, 20.242462158203125, 38.70025634765625 ], "score": 0.24749994277954102 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 479.5363998413086, 228.07650756835938, 37.44209289550781, 75.6397705078125 ], "score": 0.20024734735488892 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 425.7936096191406, 210.20310974121094, 70.91751098632812, 47.30976867675781 ], "score": 0.1970013678073883 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 453.21048736572266, 208.12599182128906, 27.911834716796875, 41.239044189453125 ], "score": 0.1282137632369995 }, { "image_id": 1334, "category_id": 1.0, "bbox": [ 474.90211486816406, 205.69679260253906, 22.63031005859375, 47.9677734375 ], "score": 0.10786505788564682 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 547.6838684082031, 208.57553100585938, 22.794342041015625, 65.97613525390625 ], "score": 0.9970151782035828 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 521.1806106567383, 211.91995239257812, 20.433883666992188, 48.20684814453125 ], "score": 0.7582175731658936 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 528.6769104003906, 208.91741943359375, 21.38702392578125, 52.77557373046875 ], "score": 0.7404323816299438 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 589.6625518798828, 217.94326782226562, 21.567230224609375, 53.3826904296875 ], "score": 0.2990928888320923 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 507.926025390625, 211.444091796875, 17.80303955078125, 43.81817626953125 ], "score": 0.21614399552345276 }, { "image_id": 1335, "category_id": 1.0, "bbox": [ 536.7579650878906, 208.68658447265625, 21.685943603515625, 56.591583251953125 ], "score": 0.1929013729095459 }, { "image_id": 1336, "category_id": 1.0, "bbox": [ 603.284797668457, 204.9303741455078, 28.729782104492188, 77.13844299316406 ], "score": 0.989304780960083 }, { "image_id": 1336, "category_id": 1.0, "bbox": [ 510.47725677490234, 204.4208221435547, 20.704116821289062, 50.816070556640625 ], "score": 0.8768835067749023 }, { "image_id": 1336, "category_id": 1.0, "bbox": [ 48.54093551635742, 206.1899871826172, 25.520782470703125, 65.40245056152344 ], "score": 0.3356461226940155 }, { "image_id": 1336, "category_id": 1.0, "bbox": [ 476.36444091796875, 197.45484924316406, 88.12873840332031, 59.79206848144531 ], "score": 0.14671814441680908 }, { "image_id": 1336, "category_id": 1.0, "bbox": [ 527.0998382568359, 204.63758850097656, 23.028106689453125, 56.76008605957031 ], "score": 0.13094386458396912 }, { "image_id": 1337, "category_id": 1.0, "bbox": [ 595.8308029174805, 201.8029327392578, 28.156967163085938, 62.01280212402344 ], "score": 0.992285966873169 }, { "image_id": 1337, "category_id": 1.0, "bbox": [ 12.217389345169067, 196.17559814453125, 26.412771940231323, 55.7418212890625 ], "score": 0.26660585403442383 }, { "image_id": 1337, "category_id": 1.0, "bbox": [ 522.0696640014648, 204.83314514160156, 19.699783325195312, 48.44708251953125 ], "score": 0.22300325334072113 }, { "image_id": 1337, "category_id": 1.0, "bbox": [ 605.9146118164062, 195.19509887695312, 27.693557739257812, 77.10928344726562 ], "score": 0.1944727599620819 }, { "image_id": 1338, "category_id": 1.0, "bbox": [ 578.6244583129883, 201.5582733154297, 28.638458251953125, 58.61744689941406 ], "score": 0.5532317757606506 }, { "image_id": 1338, "category_id": 1.0, "bbox": [ 274.3874168395996, 206.00364685058594, 19.659271240234375, 44.5528564453125 ], "score": 0.3355564773082733 }, { "image_id": 1338, "category_id": 1.0, "bbox": [ 536.3200378417969, 202.47293090820312, 24.0728759765625, 43.300537109375 ], "score": 0.24256157875061035 }, { "image_id": 1338, "category_id": 1.0, "bbox": [ 546.1449813842773, 201.7946014404297, 66.9940185546875, 64.78837585449219 ], "score": 0.10765296220779419 }, { "image_id": 1339, "category_id": 1.0, "bbox": [ 587.2547149658203, 200.2457275390625, 24.573745727539062, 56.34869384765625 ], "score": 0.5771682858467102 }, { "image_id": 1339, "category_id": 1.0, "bbox": [ 269.6261405944824, 211.94894409179688, 21.29558563232422, 48.14776611328125 ], "score": 0.4967234432697296 }, { "image_id": 1339, "category_id": 1.0, "bbox": [ 579.055061340332, 136.30810546875, 28.145294189453125, 51.771331787109375 ], "score": 0.4238048791885376 }, { "image_id": 1339, "category_id": 1.0, "bbox": [ 451.4470672607422, 225.09060668945312, 25.617828369140625, 35.936737060546875 ], "score": 0.10951332747936249 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 480.42694091796875, 209.74658203125, 18.916168212890625, 55.392181396484375 ], "score": 0.8675453662872314 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 522.2875595092773, 242.59654235839844, 31.851654052734375, 72.90834045410156 ], "score": 0.39274364709854126 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 438.1493377685547, 208.496337890625, 18.291778564453125, 52.1240234375 ], "score": 0.2563273310661316 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 489.2033004760742, 216.94287109375, 19.593276977539062, 51.7513427734375 ], "score": 0.2510644793510437 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 511.97723388671875, 222.10073852539062, 19.965057373046875, 45.770233154296875 ], "score": 0.11854267865419388 }, { "image_id": 1340, "category_id": 1.0, "bbox": [ 504.05189514160156, 224.1627197265625, 18.370285034179688, 46.5128173828125 ], "score": 0.11777351796627045 }, { "image_id": 1341, "category_id": 1.0, "bbox": [ 508.05896759033203, 205.95509338378906, 24.225921630859375, 71.02897644042969 ], "score": 0.9880092740058899 }, { "image_id": 1341, "category_id": 1.0, "bbox": [ 534.2770004272461, 225.98802185058594, 24.591903686523438, 52.63169860839844 ], "score": 0.7455132007598877 }, { "image_id": 1341, "category_id": 1.0, "bbox": [ 587.5654220581055, 250.21304321289062, 37.2137451171875, 78.82958984375 ], "score": 0.4390614628791809 }, { "image_id": 1341, "category_id": 1.0, "bbox": [ 118.16446304321289, 207.90008544921875, 21.87854766845703, 48.182464599609375 ], "score": 0.34609082341194153 }, { "image_id": 1341, "category_id": 1.0, "bbox": [ 253.2392692565918, 217.6630096435547, 22.089691162109375, 56.73512268066406 ], "score": 0.14982004463672638 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 541.7107009887695, 214.25885009765625, 30.078582763671875, 78.02243041992188 ], "score": 0.9990999102592468 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 94.76925849914551, 216.4292449951172, 25.268268585205078, 54.49900817871094 ], "score": 0.9270628690719604 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 576.833381652832, 222.8275909423828, 22.1661376953125, 66.90965270996094 ], "score": 0.6745964884757996 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 607.2234344482422, 229.2903594970703, 24.771041870117188, 63.91584777832031 ], "score": 0.6011245846748352 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 79.92006301879883, 214.7078399658203, 29.548282623291016, 56.59690856933594 ], "score": 0.3494359850883484 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 249.93658065795898, 217.3112030029297, 25.474815368652344, 70.55064392089844 ], "score": 0.23155662417411804 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 614.2133331298828, 208.1451416015625, 25.325393676757812, 81.90548706054688 ], "score": 0.18976520001888275 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 120.93198776245117, 209.1840057373047, 21.051101684570312, 50.20283508300781 ], "score": 0.14755284786224365 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 594.55322265625, 229.82028198242188, 21.678848266601562, 61.44415283203125 ], "score": 0.13169994950294495 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 346.91722869873047, 211.21786499023438, 18.885498046875, 38.678741455078125 ], "score": 0.12021677196025848 }, { "image_id": 1342, "category_id": 1.0, "bbox": [ 555.6412887573242, 219.72421264648438, 26.726837158203125, 67.7161865234375 ], "score": 0.10582134127616882 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 111.61932945251465, 211.41162109375, 23.941516876220703, 59.581817626953125 ], "score": 0.9955134391784668 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 595.3246688842773, 214.50186157226562, 29.070663452148438, 86.0679931640625 ], "score": 0.9924255609512329 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 575.4581832885742, 216.3905792236328, 26.268463134765625, 81.44233703613281 ], "score": 0.9732638597488403 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 135.15286445617676, 219.71661376953125, 23.670024871826172, 49.09735107421875 ], "score": 0.8226333856582642 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 248.67887496948242, 223.91400146484375, 23.366737365722656, 59.9405517578125 ], "score": 0.5861245393753052 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 126.87788009643555, 213.6432342529297, 24.046592712402344, 60.15769958496094 ], "score": 0.4859747886657715 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 546.3844299316406, 204.08364868164062, 19.695892333984375, 59.59759521484375 ], "score": 0.45711344480514526 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 612.3582458496094, 220.01132202148438, 24.94781494140625, 73.3553466796875 ], "score": 0.20451445877552032 }, { "image_id": 1343, "category_id": 1.0, "bbox": [ 541.9050598144531, 225.0832977294922, 22.272415161132812, 55.56956481933594 ], "score": 0.12475843727588654 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 157.5969123840332, 212.39544677734375, 26.9573974609375, 62.2034912109375 ], "score": 0.9968750476837158 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 136.09769821166992, 213.427978515625, 24.765167236328125, 67.0137939453125 ], "score": 0.996728777885437 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 584.8648071289062, 203.4056396484375, 19.4378662109375, 64.55111694335938 ], "score": 0.7832728624343872 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 58.341636657714844, 208.633544921875, 20.867061614990234, 38.802001953125 ], "score": 0.2895623445510864 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 250.1250457763672, 219.99014282226562, 20.9600830078125, 59.821624755859375 ], "score": 0.24009782075881958 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 573.9939498901367, 213.31321716308594, 17.132186889648438, 54.38871765136719 ], "score": 0.16531847417354584 }, { "image_id": 1344, "category_id": 1.0, "bbox": [ 618.3546829223633, 248.42312622070312, 20.37567138671875, 62.2861328125 ], "score": 0.14525288343429565 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 394.45892333984375, 208.9162139892578, 28.994293212890625, 64.76100158691406 ], "score": 0.9981302618980408 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 160.37235260009766, 213.68649291992188, 29.00218963623047, 69.16790771484375 ], "score": 0.9957832098007202 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 37.952632904052734, 218.8531494140625, 30.540571212768555, 55.328521728515625 ], "score": 0.9952952861785889 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 187.57049560546875, 215.76898193359375, 25.557632446289062, 62.513885498046875 ], "score": 0.9253872036933899 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 351.7511749267578, 218.41819763183594, 23.766021728515625, 60.79319763183594 ], "score": 0.5109280347824097 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 611.1757278442383, 207.06494140625, 20.864944458007812, 64.976806640625 ], "score": 0.4193369150161743 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 173.77496719360352, 217.2353515625, 27.498626708984375, 63.3248291015625 ], "score": 0.3232826888561249 }, { "image_id": 1345, "category_id": 1.0, "bbox": [ 20.830774307250977, 217.43682861328125, 33.175201416015625, 57.932464599609375 ], "score": 0.14824943244457245 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 379.9732208251953, 212.18067932128906, 27.057418823242188, 65.62675476074219 ], "score": 0.9997830390930176 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 184.17964935302734, 214.56820678710938, 32.52643585205078, 75.50390625 ], "score": 0.9993177652359009 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 58.80465507507324, 218.39373779296875, 30.985231399536133, 64.372802734375 ], "score": 0.9985734224319458 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 210.92002868652344, 220.07858276367188, 30.086593627929688, 72.24688720703125 ], "score": 0.9853514432907104 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 25.78836679458618, 221.86587524414062, 32.2256064414978, 53.705322265625 ], "score": 0.9291167259216309 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 349.7264099121094, 217.0146026611328, 30.834121704101562, 63.60102844238281 ], "score": 0.257519006729126 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 45.51584243774414, 225.94627380371094, 33.1634521484375, 52.24076843261719 ], "score": 0.16916891932487488 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 537.6543426513672, 213.49937438964844, 19.298324584960938, 37.271331787109375 ], "score": 0.13280539214611053 }, { "image_id": 1346, "category_id": 1.0, "bbox": [ 90.36895751953125, 204.88514709472656, 21.685867309570312, 43.04693603515625 ], "score": 0.10403289645910263 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 198.27688217163086, 217.42691040039062, 31.5985107421875, 71.07693481445312 ], "score": 0.999722957611084 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 82.54993438720703, 217.6822509765625, 34.58477020263672, 72.87716674804688 ], "score": 0.9997174739837646 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 365.8457565307617, 213.3379669189453, 29.438400268554688, 71.50382995605469 ], "score": 0.9991112351417542 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 224.83966827392578, 221.91085815429688, 32.81444549560547, 80.23394775390625 ], "score": 0.9980695247650146 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 46.85842990875244, 218.7202606201172, 26.682567596435547, 70.15989685058594 ], "score": 0.995457649230957 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 553.2639312744141, 215.03109741210938, 19.969253540039062, 47.9210205078125 ], "score": 0.49323752522468567 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 562.2171783447266, 213.4481201171875, 21.7620849609375, 42.790496826171875 ], "score": 0.4123038053512573 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 32.23316192626953, 217.50379943847656, 27.588777542114258, 56.57237243652344 ], "score": 0.3266768455505371 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 531.0646820068359, 212.16505432128906, 18.398361206054688, 45.54142761230469 ], "score": 0.2706986665725708 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 535.3307342529297, 205.30503845214844, 66.95014953613281, 48.609710693359375 ], "score": 0.17749273777008057 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 4.300090074539185, 221.80368041992188, 28.092349767684937, 71.959228515625 ], "score": 0.17069430649280548 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 538.5532379150391, 212.57373046875, 17.913284301757812, 47.21453857421875 ], "score": 0.15494930744171143 }, { "image_id": 1347, "category_id": 1.0, "bbox": [ 25.54490566253662, 215.26211547851562, 23.194246292114258, 48.88702392578125 ], "score": 0.1412217766046524 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 67.05156326293945, 224.92593383789062, 30.513019561767578, 63.5069580078125 ], "score": 0.9964901804924011 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 107.92496681213379, 221.89822387695312, 34.52400207519531, 72.620849609375 ], "score": 0.9962929487228394 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 8.690953254699707, 220.98663330078125, 34.44089889526367, 77.34234619140625 ], "score": 0.9728999137878418 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 346.0619354248047, 214.37144470214844, 28.33648681640625, 63.49879455566406 ], "score": 0.8162798881530762 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 226.34401321411133, 218.70655822753906, 31.908912658691406, 80.80097961425781 ], "score": 0.6884660124778748 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 582.8527450561523, 209.1235809326172, 19.719696044921875, 43.69073486328125 ], "score": 0.23663285374641418 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 96.90532684326172, 224.65673828125, 30.765151977539062, 63.587890625 ], "score": 0.22284665703773499 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 554.9953842163086, 212.4827880859375, 18.21136474609375, 38.9139404296875 ], "score": 0.17804795503616333 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 545.4735946655273, 214.34164428710938, 18.739700317382812, 35.72705078125 ], "score": 0.14198030531406403 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 524.9686431884766, 216.017578125, 31.595458984375, 35.3062744140625 ], "score": 0.12347549945116043 }, { "image_id": 1348, "category_id": 1.0, "bbox": [ 562.1420288085938, 212.83944702148438, 17.34893798828125, 43.37213134765625 ], "score": 0.11069118231534958 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 98.18174362182617, 215.38818359375, 35.39146423339844, 81.9583740234375 ], "score": 0.9993597269058228 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 154.23008918762207, 216.54689025878906, 36.18426322937012, 89.54353332519531 ], "score": 0.998387336730957 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 386.7034912109375, 225.65377807617188, 34.14924621582031, 88.4222412109375 ], "score": 0.99778813123703 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 32.62290954589844, 218.74546813964844, 37.447824478149414, 86.71290588378906 ], "score": 0.9907792806625366 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 9.712822437286377, 210.79812622070312, 44.08405065536499, 107.97125244140625 ], "score": 0.918321430683136 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 549.2726135253906, 209.42755126953125, 52.600860595703125, 47.269378662109375 ], "score": 0.35671180486679077 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 327.26890563964844, 213.74757385253906, 24.666290283203125, 65.55448913574219 ], "score": 0.13140127062797546 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 584.8616790771484, 213.77261352539062, 21.419143676757812, 42.316314697265625 ], "score": 0.11471635848283768 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 380.09029388427734, 226.1016845703125, 24.854354858398438, 69.3526611328125 ], "score": 0.10717055946588516 }, { "image_id": 1349, "category_id": 1.0, "bbox": [ 509.0367889404297, 216.36521911621094, 107.57476806640625, 43.77784729003906 ], "score": 0.1037822738289833 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 147.03423500061035, 224.39117431640625, 34.23178672790527, 73.44171142578125 ], "score": 0.9995327591896057 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 204.3058204650879, 224.40115356445312, 35.85563659667969, 83.85546875 ], "score": 0.9971095323562622 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 52.75142192840576, 219.73617553710938, 45.51004886627197, 92.92291259765625 ], "score": 0.996297299861908 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 456.12518310546875, 227.66026306152344, 37.11357116699219, 89.38398742675781 ], "score": 0.9961679577827454 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 272.5197219848633, 211.04164123535156, 41.423301696777344, 90.45555114746094 ], "score": 0.8857455253601074 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 599.0182113647461, 212.72747802734375, 24.473342895507812, 46.569915771484375 ], "score": 0.6579869985580444 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 34.206037521362305, 221.61318969726562, 49.03543472290039, 105.86395263671875 ], "score": 0.6361782550811768 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 471.46411895751953, 221.31764221191406, 30.87249755859375, 81.48875427246094 ], "score": 0.4854894280433655 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 193.09148788452148, 221.18936157226562, 28.797569274902344, 81.88421630859375 ], "score": 0.2633398771286011 }, { "image_id": 1350, "category_id": 1.0, "bbox": [ 560.3883743286133, 207.7506866455078, 67.48100280761719, 51.98326110839844 ], "score": 0.15863406658172607 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 210.01644134521484, 211.96786499023438, 41.555747985839844, 102.1654052734375 ], "score": 0.9983083009719849 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 98.56250762939453, 215.90234375, 36.481266021728516, 96.76849365234375 ], "score": 0.9974521398544312 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 118.0350399017334, 216.27171325683594, 45.18662452697754, 98.35044860839844 ], "score": 0.9954334497451782 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 200.89969635009766, 216.27621459960938, 32.13623046875, 85.36236572265625 ], "score": 0.45957130193710327 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 565.3044509887695, 211.30963134765625, 61.60057067871094, 45.47650146484375 ], "score": 0.44040846824645996 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 604.4051742553711, 209.6197967529297, 24.41558837890625, 52.38307189941406 ], "score": 0.3771513104438782 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 262.48071670532227, 217.07070922851562, 29.846420288085938, 80.0931396484375 ], "score": 0.1965707242488861 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 374.8042297363281, 221.8389129638672, 37.76611328125, 93.66798400878906 ], "score": 0.1732690930366516 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 539.3220138549805, 221.09780883789062, 36.72607421875, 46.8056640625 ], "score": 0.17077161371707916 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 544.9337768554688, 216.8055419921875, 58.33106994628906, 42.305694580078125 ], "score": 0.16333124041557312 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 499.32830810546875, 213.16885375976562, 120.55267333984375, 50.07672119140625 ], "score": 0.13446198403835297 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 583.4708404541016, 216.0387420654297, 24.36553955078125, 46.94364929199219 ], "score": 0.12210433930158615 }, { "image_id": 1351, "category_id": 1.0, "bbox": [ 351.7909240722656, 214.17555236816406, 21.183547973632812, 53.94676208496094 ], "score": 0.1090240404009819 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 408.5963821411133, 216.14010620117188, 32.63885498046875, 83.07666015625 ], "score": 0.9994660019874573 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 144.41119194030762, 213.2105255126953, 45.537214279174805, 114.63157653808594 ], "score": 0.9975731372833252 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 174.68687057495117, 215.0496826171875, 37.159423828125, 105.72515869140625 ], "score": 0.9548591375350952 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 197.48685836791992, 217.7660675048828, 42.21385955810547, 104.91603088378906 ], "score": 0.8457149267196655 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 264.6689987182617, 222.68252563476562, 27.075462341308594, 57.7357177734375 ], "score": 0.4900200068950653 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 608.0532836914062, 211.34942626953125, 23.307418823242188, 58.88299560546875 ], "score": 0.22361628711223602 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 580.4192733764648, 209.33688354492188, 45.68511962890625, 51.431549072265625 ], "score": 0.20860347151756287 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 584.7163772583008, 210.8323974609375, 21.9207763671875, 41.34246826171875 ], "score": 0.12977978587150574 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 189.6449089050293, 222.31619262695312, 30.8306884765625, 88.96600341796875 ], "score": 0.12864771485328674 }, { "image_id": 1352, "category_id": 1.0, "bbox": [ 566.8648529052734, 211.60235595703125, 25.89324951171875, 36.968109130859375 ], "score": 0.10315565019845963 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 440.4242706298828, 220.26370239257812, 33.56842041015625, 71.15567016601562 ], "score": 0.9995971322059631 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 60.80832481384277, 210.92626953125, 51.3319206237793, 121.06500244140625 ], "score": 0.9986070990562439 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 388.57242584228516, 218.52001953125, 35.51513671875, 98.170166015625 ], "score": 0.9875897169113159 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 537.9931640625, 218.58056640625, 26.4837646484375, 55.89166259765625 ], "score": 0.7012246251106262 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 241.84240341186523, 216.0491180419922, 33.687286376953125, 96.96437072753906 ], "score": 0.5758969187736511 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 371.2265396118164, 226.6409149169922, 23.33282470703125, 61.32627868652344 ], "score": 0.2683045268058777 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 579.735221862793, 211.51820373535156, 48.02894592285156, 53.40513610839844 ], "score": 0.1792493760585785 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 259.61347579956055, 227.9024200439453, 30.36754608154297, 70.10447692871094 ], "score": 0.13403944671154022 }, { "image_id": 1353, "category_id": 1.0, "bbox": [ 576.6836547851562, 216.5357208251953, 22.90008544921875, 49.61860656738281 ], "score": 0.12315160781145096 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 433.66077423095703, 230.66903686523438, 33.02360534667969, 81.44580078125 ], "score": 0.9975367784500122 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 484.2392349243164, 222.94056701660156, 28.672866821289062, 68.19071960449219 ], "score": 0.99350905418396 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 412.0585250854492, 227.8159942626953, 33.571014404296875, 81.45527648925781 ], "score": 0.9933084845542908 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 8.034844398498535, 224.13014221191406, 39.64815139770508, 103.11448669433594 ], "score": 0.9680228233337402 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 576.01806640625, 211.08648681640625, 53.14109802246094, 48.736968994140625 ], "score": 0.4646965265274048 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 367.6199722290039, 224.7277069091797, 25.786972045898438, 57.44093322753906 ], "score": 0.37363767623901367 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 574.3446731567383, 219.86602783203125, 26.615753173828125, 45.06109619140625 ], "score": 0.2884649634361267 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 370.1456069946289, 229.56964111328125, 48.75396728515625, 91.23382568359375 ], "score": 0.13467074930667877 }, { "image_id": 1354, "category_id": 1.0, "bbox": [ 591.120491027832, 215.22293090820312, 24.151687622070312, 47.412200927734375 ], "score": 0.11317864060401917 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 486.39915466308594, 222.478759765625, 34.301300048828125, 95.64422607421875 ], "score": 0.9977397322654724 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 522.6204681396484, 216.92037963867188, 31.655120849609375, 73.96612548828125 ], "score": 0.995116651058197 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 420.7242202758789, 231.67959594726562, 32.230224609375, 72.493408203125 ], "score": 0.9928144216537476 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 405.22083282470703, 227.28627014160156, 28.50372314453125, 71.10820007324219 ], "score": 0.7457798719406128 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 594.8154830932617, 208.41799926757812, 29.941253662109375, 48.055389404296875 ], "score": 0.3163091838359833 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 607.5868606567383, 212.19757080078125, 23.595123291015625, 50.22296142578125 ], "score": 0.22412702441215515 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 583.3662796020508, 210.7827911376953, 29.769287109375, 46.55143737792969 ], "score": 0.1778581440448761 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 379.5632553100586, 229.60165405273438, 27.316207885742188, 73.32830810546875 ], "score": 0.1702418029308319 }, { "image_id": 1355, "category_id": 1.0, "bbox": [ 349.8605728149414, 210.91775512695312, 22.114791870117188, 54.986663818359375 ], "score": 0.1107683926820755 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 468.4669876098633, 226.38327026367188, 33.37150573730469, 82.18914794921875 ], "score": 0.9988229870796204 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 416.81941986083984, 220.55294799804688, 33.40934753417969, 99.89923095703125 ], "score": 0.9868726134300232 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 435.64762115478516, 221.49696350097656, 32.37693786621094, 95.58949279785156 ], "score": 0.9675531387329102 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 558.1898498535156, 232.09979248046875, 25.43304443359375, 60.93890380859375 ], "score": 0.6083981394767761 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 554.6592712402344, 209.9794464111328, 89.7247314453125, 53.37583923339844 ], "score": 0.20931124687194824 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 450.26329040527344, 223.79359436035156, 30.091629028320312, 93.45008850097656 ], "score": 0.1916162371635437 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 594.557991027832, 218.18408203125, 20.102310180664062, 43.65545654296875 ], "score": 0.1313733458518982 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 238.43664169311523, 265.515869140625, 27.87487030029297, 49.164306640625 ], "score": 0.12731750309467316 }, { "image_id": 1356, "category_id": 1.0, "bbox": [ 572.4428176879883, 221.69102478027344, 29.961471557617188, 54.83369445800781 ], "score": 0.1016005426645279 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 532.1076202392578, 230.1931915283203, 31.857223510742188, 78.32792663574219 ], "score": 0.9970800876617432 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 467.4018859863281, 224.04835510253906, 32.52464294433594, 93.39768981933594 ], "score": 0.9940606355667114 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 491.01573944091797, 231.54977416992188, 34.68635559082031, 90.680908203125 ], "score": 0.989751398563385 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 241.00749969482422, 219.33448791503906, 34.830665588378906, 87.97935485839844 ], "score": 0.9890438318252563 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 602.2002410888672, 220.58224487304688, 22.982559204101562, 47.51153564453125 ], "score": 0.4006454348564148 }, { "image_id": 1357, "category_id": 1.0, "bbox": [ 491.02638244628906, 210.9071807861328, 22.58880615234375, 48.09898376464844 ], "score": 0.3531504273414612 }, { "image_id": 1358, "category_id": 1.0, "bbox": [ 96.93225860595703, 226.02859497070312, 47.45786666870117, 107.504638671875 ], "score": 0.992077112197876 }, { "image_id": 1358, "category_id": 1.0, "bbox": [ 541.0859680175781, 232.56497192382812, 39.295196533203125, 101.7269287109375 ], "score": 0.9857001304626465 }, { "image_id": 1358, "category_id": 1.0, "bbox": [ 267.90821075439453, 209.41749572753906, 20.65540313720703, 51.03382873535156 ], "score": 0.6886942386627197 }, { "image_id": 1358, "category_id": 1.0, "bbox": [ 561.7620468139648, 239.9652099609375, 36.243896484375, 102.07550048828125 ], "score": 0.5699644684791565 }, { "image_id": 1358, "category_id": 1.0, "bbox": [ 608.9493179321289, 213.10643005371094, 26.818466186523438, 92.14509582519531 ], "score": 0.34840062260627747 }, { "image_id": 1359, "category_id": 1.0, "bbox": [ 263.8686752319336, 208.1322021484375, 19.868927001953125, 49.473602294921875 ], "score": 0.920082151889801 }, { "image_id": 1359, "category_id": 1.0, "bbox": [ 512.6457595825195, 207.7392578125, 20.027542114257812, 52.302703857421875 ], "score": 0.2748188376426697 }, { "image_id": 1360, "category_id": 1.0, "bbox": [ 259.2224311828613, 206.90403747558594, 21.22467041015625, 52.55036926269531 ], "score": 0.9980660676956177 }, { "image_id": 1360, "category_id": 1.0, "bbox": [ 493.1250762939453, 221.6753387451172, 29.2913818359375, 67.55812072753906 ], "score": 0.4821367859840393 }, { "image_id": 1361, "category_id": 1.0, "bbox": [ 258.49048614501953, 212.24868774414062, 22.41138458251953, 51.838897705078125 ], "score": 0.999704122543335 }, { "image_id": 1361, "category_id": 1.0, "bbox": [ 435.6283187866211, 212.35855102539062, 20.863037109375, 55.94879150390625 ], "score": 0.5063397884368896 }, { "image_id": 1361, "category_id": 1.0, "bbox": [ 535.8842468261719, 207.64268493652344, 20.13916015625, 41.973052978515625 ], "score": 0.30946189165115356 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 255.3022003173828, 215.45932006835938, 25.513267517089844, 56.097808837890625 ], "score": 0.9994920492172241 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 432.4705505371094, 206.38426208496094, 20.49530029296875, 50.84272766113281 ], "score": 0.7050206065177917 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 575.6156539916992, 215.6322784423828, 21.286773681640625, 45.98997497558594 ], "score": 0.28809255361557007 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 537.5742340087891, 205.3693389892578, 73.70285034179688, 52.84034729003906 ], "score": 0.14821100234985352 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 542.3493576049805, 211.70556640625, 20.393905639648438, 43.796966552734375 ], "score": 0.14433503150939941 }, { "image_id": 1362, "category_id": 1.0, "bbox": [ 561.9134140014648, 215.79127502441406, 21.315231323242188, 46.98075866699219 ], "score": 0.10903266072273254 }, { "image_id": 1363, "category_id": 1.0, "bbox": [ 250.2313995361328, 218.74847412109375, 24.855804443359375, 60.023223876953125 ], "score": 0.9997616410255432 }, { "image_id": 1363, "category_id": 1.0, "bbox": [ 553.1715393066406, 216.9556884765625, 20.3521728515625, 45.047607421875 ], "score": 0.14024659991264343 }, { "image_id": 1363, "category_id": 1.0, "bbox": [ 562.7887344360352, 217.73605346679688, 23.428802490234375, 41.3218994140625 ], "score": 0.11404306441545486 }, { "image_id": 1364, "category_id": 1.0, "bbox": [ 244.9161148071289, 217.11514282226562, 25.280380249023438, 61.80126953125 ], "score": 0.9989151954650879 }, { "image_id": 1364, "category_id": 1.0, "bbox": [ 571.1997222900391, 217.67965698242188, 20.153579711914062, 40.984771728515625 ], "score": 0.3052535951137543 }, { "image_id": 1364, "category_id": 1.0, "bbox": [ 430.6640625, 206.8125457763672, 19.545516967773438, 53.37290954589844 ], "score": 0.23852865397930145 }, { "image_id": 1365, "category_id": 1.0, "bbox": [ 324.5973205566406, 212.7185516357422, 31.40411376953125, 78.70298767089844 ], "score": 0.1272502988576889 }, { "image_id": 1365, "category_id": 1.0, "bbox": [ 287.92919158935547, 187.83551025390625, 19.418563842773438, 49.51556396484375 ], "score": 0.11200171709060669 }, { "image_id": 1365, "category_id": 1.0, "bbox": [ 557.8509521484375, 216.3094024658203, 20.485153198242188, 41.76646423339844 ], "score": 0.10013899207115173 }, { "image_id": 1366, "category_id": 1.0, "bbox": [ 235.70953369140625, 214.47039794921875, 30.325088500976562, 66.19320678710938 ], "score": 0.9997718930244446 }, { "image_id": 1366, "category_id": 1.0, "bbox": [ 81.42251014709473, 207.21322631835938, 20.353107452392578, 47.52630615234375 ], "score": 0.3656333088874817 }, { "image_id": 1366, "category_id": 1.0, "bbox": [ 606.6127777099609, 212.65701293945312, 30.27496337890625, 53.085479736328125 ], "score": 0.2110525667667389 }, { "image_id": 1367, "category_id": 1.0, "bbox": [ 233.83522033691406, 220.77639770507812, 23.718338012695312, 60.159576416015625 ], "score": 0.9998862743377686 }, { "image_id": 1367, "category_id": 1.0, "bbox": [ 118.2823657989502, 207.44137573242188, 39.92572784423828, 42.2506103515625 ], "score": 0.13189437985420227 }, { "image_id": 1368, "category_id": 1.0, "bbox": [ 230.6882095336914, 215.88780212402344, 24.234619140625, 59.04707336425781 ], "score": 0.9977356195449829 }, { "image_id": 1368, "category_id": 1.0, "bbox": [ 590.9828567504883, 211.09268188476562, 21.665802001953125, 50.28497314453125 ], "score": 0.2798871397972107 }, { "image_id": 1368, "category_id": 1.0, "bbox": [ 107.37091064453125, 195.28057861328125, 31.566028594970703, 74.38079833984375 ], "score": 0.14708667993545532 }, { "image_id": 1368, "category_id": 1.0, "bbox": [ 598.094482421875, 205.8094024658203, 23.963470458984375, 53.63710021972656 ], "score": 0.1344636082649231 }, { "image_id": 1368, "category_id": 1.0, "bbox": [ 466.6884994506836, 207.909912109375, 20.240020751953125, 45.589508056640625 ], "score": 0.10547229647636414 }, { "image_id": 1369, "category_id": 1.0, "bbox": [ 225.64592361450195, 209.86412048339844, 27.229766845703125, 74.02345275878906 ], "score": 0.9983919858932495 }, { "image_id": 1369, "category_id": 1.0, "bbox": [ 535.1383590698242, 210.1852569580078, 21.93023681640625, 49.34327697753906 ], "score": 0.7856602072715759 }, { "image_id": 1369, "category_id": 1.0, "bbox": [ 467.1982955932617, 200.79205322265625, 18.058090209960938, 44.87255859375 ], "score": 0.10440489649772644 }, { "image_id": 1370, "category_id": 1.0, "bbox": [ 222.44720458984375, 211.977294921875, 31.65760040283203, 73.8531494140625 ], "score": 0.9996294975280762 }, { "image_id": 1370, "category_id": 1.0, "bbox": [ 425.36865234375, 217.94131469726562, 24.525680541992188, 58.608551025390625 ], "score": 0.611452043056488 }, { "image_id": 1370, "category_id": 1.0, "bbox": [ 535.1841354370117, 209.55096435546875, 19.015426635742188, 49.310394287109375 ], "score": 0.5915751457214355 }, { "image_id": 1370, "category_id": 1.0, "bbox": [ 544.7744369506836, 209.5836181640625, 20.607528686523438, 47.543365478515625 ], "score": 0.2147206813097 }, { "image_id": 1370, "category_id": 1.0, "bbox": [ 467.29068756103516, 202.22726440429688, 18.036575317382812, 41.31854248046875 ], "score": 0.11942006647586823 }, { "image_id": 1371, "category_id": 1.0, "bbox": [ 220.6295394897461, 212.42735290527344, 27.527122497558594, 71.89900207519531 ], "score": 0.9992502927780151 }, { "image_id": 1371, "category_id": 1.0, "bbox": [ 527.0175170898438, 209.8038787841797, 22.182083129882812, 54.93037414550781 ], "score": 0.7025435566902161 }, { "image_id": 1371, "category_id": 1.0, "bbox": [ 535.7683181762695, 210.2637939453125, 23.388595581054688, 52.281005859375 ], "score": 0.27901747822761536 }, { "image_id": 1371, "category_id": 1.0, "bbox": [ 22.291102409362793, 208.4634246826172, 26.36423110961914, 53.34666442871094 ], "score": 0.24464552104473114 }, { "image_id": 1371, "category_id": 1.0, "bbox": [ 282.93725967407227, 180.65110778808594, 21.43768310546875, 45.471649169921875 ], "score": 0.10725690424442291 }, { "image_id": 1372, "category_id": 1.0, "bbox": [ 14.045311212539673, 204.27072143554688, 24.01004672050476, 53.633392333984375 ], "score": 0.4475807547569275 }, { "image_id": 1372, "category_id": 1.0, "bbox": [ 536.7971801757812, 208.59938049316406, 22.89886474609375, 49.02864074707031 ], "score": 0.2611522674560547 }, { "image_id": 1372, "category_id": 1.0, "bbox": [ 521.8509292602539, 209.783935546875, 20.400924682617188, 49.920623779296875 ], "score": 0.21663491427898407 }, { "image_id": 1373, "category_id": 1.0, "bbox": [ 209.45924758911133, 213.40158081054688, 31.82628631591797, 71.6556396484375 ], "score": 0.9996615648269653 }, { "image_id": 1373, "category_id": 1.0, "bbox": [ 522.9336166381836, 209.0798797607422, 21.124954223632812, 52.81523132324219 ], "score": 0.6630041599273682 }, { "image_id": 1374, "category_id": 1.0, "bbox": [ 210.1140022277832, 214.42059326171875, 27.353172302246094, 60.337677001953125 ], "score": 0.9450384378433228 }, { "image_id": 1374, "category_id": 1.0, "bbox": [ 100.38534164428711, 208.74497985839844, 22.566585540771484, 39.850494384765625 ], "score": 0.13206082582473755 }, { "image_id": 1375, "category_id": 1.0, "bbox": [ 212.06192016601562, 219.53216552734375, 31.954002380371094, 70.07540893554688 ], "score": 0.999721884727478 }, { "image_id": 1375, "category_id": 1.0, "bbox": [ 101.90532684326172, 202.37173461914062, 24.626903533935547, 51.885498046875 ], "score": 0.1356581151485443 }, { "image_id": 1376, "category_id": 1.0, "bbox": [ 231.45336151123047, 217.3843994140625, 30.710487365722656, 72.5084228515625 ], "score": 0.9994673728942871 }, { "image_id": 1376, "category_id": 1.0, "bbox": [ 472.6213836669922, 201.49850463867188, 21.508712768554688, 55.56976318359375 ], "score": 0.10246399790048599 }, { "image_id": 1376, "category_id": 1.0, "bbox": [ 522.5592041015625, 212.09230041503906, 36.10931396484375, 38.409271240234375 ], "score": 0.10178381204605103 }, { "image_id": 1377, "category_id": 1.0, "bbox": [ 72.68286228179932, 216.1265869140625, 21.748175621032715, 55.80938720703125 ], "score": 0.9758567810058594 }, { "image_id": 1377, "category_id": 1.0, "bbox": [ 93.3537483215332, 218.31039428710938, 24.416770935058594, 50.28546142578125 ], "score": 0.42420876026153564 }, { "image_id": 1377, "category_id": 1.0, "bbox": [ 608.7626647949219, 204.82151794433594, 20.605392456054688, 52.25135803222656 ], "score": 0.14099754393100739 }, { "image_id": 1377, "category_id": 1.0, "bbox": [ 219.9039077758789, 213.9691162109375, 20.57769775390625, 41.50537109375 ], "score": 0.10123178362846375 }, { "image_id": 1378, "category_id": 1.0, "bbox": [ 366.4563751220703, 226.58241271972656, 36.94160461425781, 77.47145080566406 ], "score": 0.9978408813476562 }, { "image_id": 1378, "category_id": 1.0, "bbox": [ 189.0723991394043, 220.50180053710938, 27.46593475341797, 58.853424072265625 ], "score": 0.9776269197463989 }, { "image_id": 1378, "category_id": 1.0, "bbox": [ 531.4223098754883, 181.31626892089844, 25.363006591796875, 57.008880615234375 ], "score": 0.2826699912548065 }, { "image_id": 1379, "category_id": 1.0, "bbox": [ 37.05767631530762, 219.73541259765625, 37.186851501464844, 67.47055053710938 ], "score": 0.2024904489517212 }, { "image_id": 1379, "category_id": 1.0, "bbox": [ 14.337987899780273, 217.94395446777344, 28.077192306518555, 59.20075988769531 ], "score": 0.12521162629127502 }, { "image_id": 1380, "category_id": 1.0, "bbox": [ 523.0987548828125, 208.626220703125, 27.365646362304688, 68.63079833984375 ], "score": 0.9951965808868408 }, { "image_id": 1380, "category_id": 1.0, "bbox": [ 504.1312026977539, 212.05833435058594, 26.201629638671875, 69.37995910644531 ], "score": 0.9947876930236816 }, { "image_id": 1380, "category_id": 1.0, "bbox": [ 210.53773880004883, 222.630615234375, 34.39506530761719, 74.5479736328125 ], "score": 0.34151479601860046 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 157.64145851135254, 239.15191650390625, 41.73850059509277, 101.404541015625 ], "score": 0.9018967151641846 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 384.2118453979492, 221.23260498046875, 33.82110595703125, 73.8226318359375 ], "score": 0.4935285747051239 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 174.70924377441406, 242.46658325195312, 33.546600341796875, 78.68084716796875 ], "score": 0.48618465662002563 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 331.7257308959961, 222.7970428466797, 38.08990478515625, 91.04615783691406 ], "score": 0.39634668827056885 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 158.37261199951172, 225.80593872070312, 28.42010498046875, 53.008453369140625 ], "score": 0.1681065708398819 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 336.54735565185547, 230.6817169189453, 27.510452270507812, 49.23316955566406 ], "score": 0.15875475108623505 }, { "image_id": 1381, "category_id": 1.0, "bbox": [ 346.33426666259766, 218.03594970703125, 64.95918273925781, 66.50381469726562 ], "score": 0.11792722344398499 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 429.14466857910156, 242.30780029296875, 45.071563720703125, 131.552001953125 ], "score": 0.9265080690383911 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 211.9828224182129, 216.636474609375, 35.388221740722656, 83.58074951171875 ], "score": 0.8355414867401123 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 421.28482818603516, 230.6524658203125, 34.89891052246094, 106.1656494140625 ], "score": 0.8135740160942078 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 58.67621898651123, 213.70895385742188, 31.93356990814209, 78.26129150390625 ], "score": 0.6298915147781372 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 578.3772659301758, 235.37571716308594, 43.54499816894531, 117.71055603027344 ], "score": 0.493715763092041 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 202.64007568359375, 217.84283447265625, 30.025405883789062, 72.47561645507812 ], "score": 0.17946606874465942 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 236.40621185302734, 216.40859985351562, 28.00647735595703, 77.1431884765625 ], "score": 0.15963302552700043 }, { "image_id": 1382, "category_id": 1.0, "bbox": [ 445.6410598754883, 237.50404357910156, 29.488525390625, 90.97486877441406 ], "score": 0.14404088258743286 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 512.1346282958984, 205.57901000976562, 44.50477600097656, 112.6697998046875 ], "score": 0.9821824431419373 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 348.08223724365234, 220.33201599121094, 25.796432495117188, 46.99403381347656 ], "score": 0.6795176267623901 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 219.44028854370117, 219.4673614501953, 33.29139709472656, 77.56062316894531 ], "score": 0.19223907589912415 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 233.08639526367188, 217.31448364257812, 22.084884643554688, 57.427398681640625 ], "score": 0.18961858749389648 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 289.2662048339844, 230.14382934570312, 25.342674255371094, 63.15374755859375 ], "score": 0.18754181265830994 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 336.1191177368164, 218.41854858398438, 27.6458740234375, 57.82635498046875 ], "score": 0.18447726964950562 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 253.86808395385742, 219.49472045898438, 60.38261413574219, 62.856475830078125 ], "score": 0.11532087624073029 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 289.35169219970703, 209.8035888671875, 22.71984100341797, 57.361907958984375 ], "score": 0.11245645582675934 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 279.1197967529297, 224.74867248535156, 27.16388702392578, 75.78990173339844 ], "score": 0.10293348878622055 }, { "image_id": 1383, "category_id": 1.0, "bbox": [ 281.2581253051758, 208.26495361328125, 20.81523895263672, 57.961181640625 ], "score": 0.10048049688339233 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 435.45494079589844, 213.67922973632812, 21.749191284179688, 55.43017578125 ], "score": 0.8912230730056763 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 546.86279296875, 219.80372619628906, 33.30543518066406, 84.31556701660156 ], "score": 0.6716792583465576 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 392.02388763427734, 214.49075317382812, 19.437484741210938, 50.308837890625 ], "score": 0.4934556484222412 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 556.8000030517578, 221.7672576904297, 25.530853271484375, 52.65885925292969 ], "score": 0.16670715808868408 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 170.0168228149414, 215.29507446289062, 21.334190368652344, 35.70050048828125 ], "score": 0.12574553489685059 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 419.45465087890625, 214.94618225097656, 20.945816040039062, 53.22544860839844 ], "score": 0.12304296344518661 }, { "image_id": 1384, "category_id": 1.0, "bbox": [ 398.8393020629883, 216.71182250976562, 21.547470092773438, 50.40997314453125 ], "score": 0.10620081424713135 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 453.8444519042969, 213.82244873046875, 25.702590942382812, 69.73208618164062 ], "score": 0.973251461982727 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 482.08404541015625, 211.87939453125, 22.41668701171875, 59.022247314453125 ], "score": 0.8975799083709717 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 495.72582244873047, 215.8805694580078, 23.584442138671875, 61.76628112792969 ], "score": 0.8338818550109863 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 202.3073959350586, 208.81448364257812, 18.53893280029297, 37.553436279296875 ], "score": 0.3032783567905426 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 56.84605598449707, 206.83816528320312, 23.014869689941406, 45.917877197265625 ], "score": 0.29531270265579224 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 472.78541564941406, 212.9891357421875, 21.603927612304688, 57.193878173828125 ], "score": 0.2665426731109619 }, { "image_id": 1385, "category_id": 1.0, "bbox": [ 483.93707275390625, 213.33941650390625, 38.699493408203125, 112.4949951171875 ], "score": 0.2570059299468994 }, { "image_id": 1386, "category_id": 1.0, "bbox": [ 531.7295074462891, 210.1497802734375, 32.28462219238281, 68.6055908203125 ], "score": 0.9852505326271057 }, { "image_id": 1386, "category_id": 1.0, "bbox": [ 587.2982406616211, 213.01502990722656, 27.538909912109375, 70.89152526855469 ], "score": 0.7765282392501831 }, { "image_id": 1386, "category_id": 1.0, "bbox": [ 84.74979400634766, 199.0847625732422, 26.21795654296875, 43.345123291015625 ], "score": 0.4240330159664154 }, { "image_id": 1386, "category_id": 1.0, "bbox": [ 227.7213478088379, 205.60610961914062, 20.31726837158203, 36.29217529296875 ], "score": 0.3174927830696106 }, { "image_id": 1386, "category_id": 1.0, "bbox": [ 63.525943756103516, 190.5657958984375, 54.900665283203125, 59.88092041015625 ], "score": 0.23440301418304443 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 576.8589782714844, 210.2761688232422, 26.941452026367188, 67.50013732910156 ], "score": 0.9994498491287231 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 598.0317687988281, 212.91162109375, 28.131332397460938, 69.29019165039062 ], "score": 0.9907770156860352 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 81.66427612304688, 197.40347290039062, 38.56220245361328, 52.211181640625 ], "score": 0.6832754611968994 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 243.09951782226562, 208.28875732421875, 17.031784057617188, 38.4385986328125 ], "score": 0.25033172965049744 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 265.75958251953125, 205.47271728515625, 17.53643035888672, 35.1754150390625 ], "score": 0.19681204855442047 }, { "image_id": 1387, "category_id": 1.0, "bbox": [ 325.2907180786133, 240.08729553222656, 21.84661865234375, 47.56517028808594 ], "score": 0.11914552748203278 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 87.10305213928223, 202.61106872558594, 22.3944091796875, 47.05560302734375 ], "score": 0.8677831292152405 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 576.4748001098633, 204.73690795898438, 23.72406005859375, 52.34613037109375 ], "score": 0.7732267379760742 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 252.5490379333496, 208.9469451904297, 19.63165283203125, 41.03289794921875 ], "score": 0.7498348951339722 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 106.32244110107422, 204.14230346679688, 18.98000717163086, 42.94708251953125 ], "score": 0.6130404472351074 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 242.23060607910156, 207.85459899902344, 19.641571044921875, 40.84002685546875 ], "score": 0.4692142605781555 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 496.89002990722656, 227.90216064453125, 27.462921142578125, 65.70257568359375 ], "score": 0.28044089674949646 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 97.2518539428711, 202.8297882080078, 20.07354736328125, 44.289825439453125 ], "score": 0.2776513695716858 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 305.08522033691406, 204.18081665039062, 19.561538696289062, 37.3638916015625 ], "score": 0.1919395625591278 }, { "image_id": 1388, "category_id": 1.0, "bbox": [ 77.3892879486084, 202.4989013671875, 21.640567779541016, 47.424072265625 ], "score": 0.17559276521205902 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 78.22873592376709, 201.79942321777344, 22.097458839416504, 49.838043212890625 ], "score": 0.9910370111465454 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 266.3530921936035, 212.0524444580078, 19.61467742919922, 45.30140686035156 ], "score": 0.790993869304657 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 99.8291015625, 197.38204956054688, 20.103282928466797, 50.526580810546875 ], "score": 0.5983002185821533 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 258.64538192749023, 214.95135498046875, 20.621185302734375, 48.08013916015625 ], "score": 0.3513227701187134 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 113.45368385314941, 198.7939453125, 18.970279693603516, 44.69879150390625 ], "score": 0.19183140993118286 }, { "image_id": 1389, "category_id": 1.0, "bbox": [ 330.5538558959961, 212.63990783691406, 22.342071533203125, 30.895721435546875 ], "score": 0.11906000971794128 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 531.7290496826172, 217.42039489746094, 28.007278442382812, 72.16133117675781 ], "score": 0.997635543346405 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 27.441182136535645, 202.1911163330078, 33.043155670166016, 68.57057189941406 ], "score": 0.9949129819869995 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 247.6589584350586, 214.67481994628906, 23.66497039794922, 49.68601989746094 ], "score": 0.990074634552002 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 43.68752479553223, 204.0430145263672, 26.41596794128418, 59.83482360839844 ], "score": 0.9620287418365479 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 82.78764724731445, 199.6514892578125, 21.756114959716797, 47.868377685546875 ], "score": 0.8563531637191772 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 394.07238006591797, 207.44387817382812, 19.894332885742188, 42.3377685546875 ], "score": 0.7878282070159912 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 67.80686855316162, 202.99319458007812, 22.24186420440674, 49.06414794921875 ], "score": 0.4807984232902527 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 555.9056091308594, 221.42144775390625, 33.637542724609375, 73.21343994140625 ], "score": 0.27311503887176514 }, { "image_id": 1390, "category_id": 1.0, "bbox": [ 53.18377494812012, 200.88595581054688, 25.463590621948242, 54.581329345703125 ], "score": 0.206809863448143 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 596.0055160522461, 229.57241821289062, 32.747955322265625, 90.31060791015625 ], "score": 0.9986066222190857 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 216.56471252441406, 225.7505645751953, 29.16248321533203, 63.80555725097656 ], "score": 0.9845523834228516 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 574.4558715820312, 226.29286193847656, 21.263046264648438, 55.11973571777344 ], "score": 0.9653896689414978 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 433.09635162353516, 222.70367431640625, 22.531204223632812, 46.1485595703125 ], "score": 0.9452704787254333 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 207.81370162963867, 228.5757293701172, 25.832138061523438, 64.08863830566406 ], "score": 0.8540394306182861 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 374.4777297973633, 215.0231475830078, 21.624069213867188, 42.95567321777344 ], "score": 0.7703890800476074 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 38.919551372528076, 201.88258361816406, 26.298058032989502, 53.445770263671875 ], "score": 0.7350313663482666 }, { "image_id": 1391, "category_id": 1.0, "bbox": [ 14.016885757446289, 198.74757385253906, 22.645835876464844, 47.805023193359375 ], "score": 0.5561674237251282 }, { "image_id": 1392, "category_id": 1.0, "bbox": [ 572.1195602416992, 221.15911865234375, 30.614471435546875, 71.476806640625 ], "score": 0.9955095052719116 }, { "image_id": 1392, "category_id": 1.0, "bbox": [ 62.396230697631836, 221.88983154296875, 39.56493377685547, 98.03857421875 ], "score": 0.9808650016784668 }, { "image_id": 1392, "category_id": 1.0, "bbox": [ 429.69730377197266, 218.25640869140625, 23.562393188476562, 48.402740478515625 ], "score": 0.9408093094825745 }, { "image_id": 1392, "category_id": 1.0, "bbox": [ 343.5431671142578, 208.76425170898438, 21.057510375976562, 41.92633056640625 ], "score": 0.8715319633483887 }, { "image_id": 1392, "category_id": 1.0, "bbox": [ 43.806514739990234, 217.81936645507812, 40.82297325134277, 96.40771484375 ], "score": 0.21936094760894775 }, { "image_id": 1393, "category_id": 1.0, "bbox": [ 533.8962554931641, 210.7555389404297, 30.536041259765625, 84.34785461425781 ], "score": 0.9992790818214417 }, { "image_id": 1393, "category_id": 1.0, "bbox": [ 504.84405517578125, 201.1911163330078, 26.001968383789062, 64.91145324707031 ], "score": 0.9941243529319763 }, { "image_id": 1393, "category_id": 1.0, "bbox": [ 384.35306549072266, 208.10345458984375, 22.973480224609375, 55.543853759765625 ], "score": 0.9940692186355591 }, { "image_id": 1393, "category_id": 1.0, "bbox": [ 265.07537841796875, 203.42938232421875, 21.414260864257812, 42.6788330078125 ], "score": 0.7206734418869019 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 566.2406539916992, 221.69403076171875, 39.661407470703125, 101.77362060546875 ], "score": 0.9995244145393372 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 499.5252990722656, 205.3815460205078, 32.797698974609375, 78.07279968261719 ], "score": 0.9950422048568726 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 254.22271728515625, 207.90646362304688, 21.925735473632812, 47.954193115234375 ], "score": 0.9806565046310425 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 399.81754302978516, 206.827392578125, 25.398635864257812, 70.61935424804688 ], "score": 0.979597806930542 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 389.31346893310547, 208.90383911132812, 22.285385131835938, 69.9664306640625 ], "score": 0.6735187768936157 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 189.6516990661621, 207.47964477539062, 18.448562622070312, 42.608123779296875 ], "score": 0.3924567401409149 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 138.93325805664062, 207.76824951171875, 20.107192993164062, 39.802490234375 ], "score": 0.22662648558616638 }, { "image_id": 1394, "category_id": 1.0, "bbox": [ 612.3119354248047, 187.17691040039062, 24.995269775390625, 80.7183837890625 ], "score": 0.13951189815998077 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 294.3703269958496, 207.9527587890625, 22.482681274414062, 51.101776123046875 ], "score": 0.9923750162124634 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 560.3905487060547, 211.44827270507812, 27.000198364257812, 65.86013793945312 ], "score": 0.98797607421875 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 438.41400146484375, 207.10446166992188, 25.133590698242188, 57.289520263671875 ], "score": 0.9866591691970825 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 461.42486572265625, 213.70550537109375, 26.901016235351562, 75.64593505859375 ], "score": 0.9657687544822693 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 543.565788269043, 206.89511108398438, 29.13116455078125, 69.3616943359375 ], "score": 0.6191614270210266 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 204.7679901123047, 207.65158081054688, 20.831031799316406, 43.167510986328125 ], "score": 0.44928380846977234 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 346.9362258911133, 209.80226135253906, 20.319595336914062, 45.330230712890625 ], "score": 0.4390542507171631 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 447.8577423095703, 211.07879638671875, 26.316375732421875, 63.09521484375 ], "score": 0.2657126486301422 }, { "image_id": 1395, "category_id": 1.0, "bbox": [ 424.59228515625, 208.50677490234375, 20.186233520507812, 46.9754638671875 ], "score": 0.1509460210800171 }, { "image_id": 1396, "category_id": 1.0, "bbox": [ 555.0357055664062, 201.888671875, 31.739501953125, 81.06094360351562 ], "score": 0.9992455244064331 }, { "image_id": 1396, "category_id": 1.0, "bbox": [ 447.89642333984375, 203.50010681152344, 22.1673583984375, 53.85902404785156 ], "score": 0.9752858877182007 }, { "image_id": 1396, "category_id": 1.0, "bbox": [ 283.85717391967773, 207.16793823242188, 21.305885314941406, 46.6744384765625 ], "score": 0.7940455675125122 }, { "image_id": 1396, "category_id": 1.0, "bbox": [ 35.145461559295654, 199.85031127929688, 24.796411991119385, 53.0140380859375 ], "score": 0.2665190100669861 }, { "image_id": 1396, "category_id": 1.0, "bbox": [ 539.3483734130859, 202.3867950439453, 22.786941528320312, 64.77110290527344 ], "score": 0.17762207984924316 }, { "image_id": 1397, "category_id": 1.0, "bbox": [ 156.62359237670898, 207.77932739257812, 23.865928649902344, 52.7752685546875 ], "score": 0.9156791567802429 }, { "image_id": 1397, "category_id": 1.0, "bbox": [ 440.04005432128906, 212.8400421142578, 19.755935668945312, 48.62089538574219 ], "score": 0.8476605415344238 }, { "image_id": 1397, "category_id": 1.0, "bbox": [ 406.6798782348633, 209.11917114257812, 20.753631591796875, 44.97930908203125 ], "score": 0.7377059459686279 }, { "image_id": 1397, "category_id": 1.0, "bbox": [ 601.8052291870117, 201.61744689941406, 22.581100463867188, 67.32060241699219 ], "score": 0.7136173248291016 }, { "image_id": 1397, "category_id": 1.0, "bbox": [ 592.4696731567383, 207.13790893554688, 22.599334716796875, 61.07464599609375 ], "score": 0.6935788989067078 }, { "image_id": 1398, "category_id": 1.0, "bbox": [ 565.1357269287109, 225.13734436035156, 22.9559326171875, 51.79292297363281 ], "score": 0.9903540015220642 }, { "image_id": 1398, "category_id": 1.0, "bbox": [ 496.4704895019531, 219.4393768310547, 21.123504638671875, 46.17112731933594 ], "score": 0.9819598197937012 }, { "image_id": 1398, "category_id": 1.0, "bbox": [ 50.69323539733887, 202.08172607421875, 31.94255828857422, 66.16238403320312 ], "score": 0.34085947275161743 }, { "image_id": 1398, "category_id": 1.0, "bbox": [ 241.65191650390625, 214.0484161376953, 28.527603149414062, 71.30906677246094 ], "score": 0.31549587845802307 }, { "image_id": 1398, "category_id": 1.0, "bbox": [ 63.20312023162842, 201.55633544921875, 32.193665504455566, 69.22628784179688 ], "score": 0.10633157193660736 }, { "image_id": 1399, "category_id": 1.0, "bbox": [ 551.0992050170898, 218.84991455078125, 23.906936645507812, 52.437652587890625 ], "score": 0.9979033470153809 }, { "image_id": 1399, "category_id": 1.0, "bbox": [ 435.3507614135742, 221.0955047607422, 21.202926635742188, 44.90815734863281 ], "score": 0.9669162034988403 }, { "image_id": 1400, "category_id": 1.0, "bbox": [ 589.4234848022461, 221.53204345703125, 25.4833984375, 58.896331787109375 ], "score": 0.9991514682769775 }, { "image_id": 1400, "category_id": 1.0, "bbox": [ 416.3676452636719, 220.33006286621094, 20.313644409179688, 46.98628234863281 ], "score": 0.9970687031745911 }, { "image_id": 1400, "category_id": 1.0, "bbox": [ 90.85485458374023, 213.0035858154297, 27.766876220703125, 59.36692810058594 ], "score": 0.925023078918457 }, { "image_id": 1400, "category_id": 1.0, "bbox": [ 52.59084701538086, 196.17510986328125, 92.74621963500977, 263.13299560546875 ], "score": 0.155560702085495 }, { "image_id": 1401, "category_id": 1.0, "bbox": [ 411.319580078125, 223.76426696777344, 24.801788330078125, 53.89997863769531 ], "score": 0.9994544982910156 }, { "image_id": 1401, "category_id": 1.0, "bbox": [ 22.8904390335083, 219.2036590576172, 35.68876266479492, 84.71174621582031 ], "score": 0.9955222606658936 }, { "image_id": 1401, "category_id": 1.0, "bbox": [ 70.41491508483887, 224.42678833007812, 26.54773712158203, 58.904022216796875 ], "score": 0.9640365839004517 }, { "image_id": 1402, "category_id": 1.0, "bbox": [ 446.1486053466797, 217.80426025390625, 28.284454345703125, 63.822509765625 ], "score": 0.9999227523803711 }, { "image_id": 1402, "category_id": 1.0, "bbox": [ 38.79845142364502, 222.56224060058594, 29.81450080871582, 67.95826721191406 ], "score": 0.6691606044769287 }, { "image_id": 1402, "category_id": 1.0, "bbox": [ 9.72324013710022, 137.48867797851562, 34.72338557243347, 113.73223876953125 ], "score": 0.12317734956741333 }, { "image_id": 1403, "category_id": 1.0, "bbox": [ 478.7867736816406, 214.39022827148438, 33.370361328125, 88.28759765625 ], "score": 0.99937504529953 }, { "image_id": 1403, "category_id": 1.0, "bbox": [ 448.0427932739258, 209.0474090576172, 18.883743286132812, 43.579986572265625 ], "score": 0.2924816608428955 }, { "image_id": 1403, "category_id": 1.0, "bbox": [ 407.10670471191406, 204.9368438720703, 70.58296203613281, 55.15678405761719 ], "score": 0.1379636824131012 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 561.1935806274414, 226.484619140625, 42.73834228515625, 111.296630859375 ], "score": 0.9994069337844849 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 495.62389373779297, 216.66928100585938, 19.647064208984375, 51.985992431640625 ], "score": 0.8591991662979126 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 457.7278137207031, 214.8155975341797, 18.748092651367188, 43.60820007324219 ], "score": 0.4176075756549835 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 422.28076934814453, 211.52365112304688, 20.676193237304688, 39.305084228515625 ], "score": 0.3691238760948181 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 407.5564956665039, 216.361083984375, 28.07586669921875, 37.810333251953125 ], "score": 0.20712175965309143 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 442.2697067260742, 212.9185791015625, 17.937240600585938, 39.930908203125 ], "score": 0.16766178607940674 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 380.5324935913086, 204.3059539794922, 68.65982055664062, 53.29457092285156 ], "score": 0.14474642276763916 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 435.5978775024414, 208.46420288085938, 83.76487731933594, 55.917755126953125 ], "score": 0.13516582548618317 }, { "image_id": 1404, "category_id": 1.0, "bbox": [ 475.6732940673828, 211.73318481445312, 17.852630615234375, 47.5863037109375 ], "score": 0.13343274593353271 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 582.6290512084961, 219.94384765625, 25.855941772460938, 64.51382446289062 ], "score": 0.9997222423553467 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 520.328254699707, 216.91368103027344, 22.05413818359375, 42.97569274902344 ], "score": 0.8689504265785217 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 490.3335952758789, 217.8670654296875, 21.043472290039062, 50.8587646484375 ], "score": 0.8549402952194214 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 505.7315444946289, 213.48974609375, 20.780410766601562, 43.787261962890625 ], "score": 0.7110493183135986 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 446.278076171875, 215.00885009765625, 30.249176025390625, 45.98687744140625 ], "score": 0.32165277004241943 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 428.7556457519531, 207.93780517578125, 63.874969482421875, 55.918121337890625 ], "score": 0.19422954320907593 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 520.0477600097656, 210.11422729492188, 72.94486999511719, 62.794281005859375 ], "score": 0.1628309190273285 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 460.0374221801758, 211.91371154785156, 22.499923706054688, 40.83306884765625 ], "score": 0.13337403535842896 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 446.56604766845703, 211.28619384765625, 100.30319213867188, 58.043060302734375 ], "score": 0.10689593851566315 }, { "image_id": 1405, "category_id": 1.0, "bbox": [ 435.04085540771484, 220.85885620117188, 22.625045776367188, 38.186767578125 ], "score": 0.10582016408443451 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 599.4003295898438, 210.53839111328125, 23.865890502929688, 66.60580444335938 ], "score": 0.9972426295280457 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 547.1931076049805, 214.5196075439453, 24.4024658203125, 65.21202087402344 ], "score": 0.9865577220916748 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 583.6850738525391, 212.90924072265625, 21.211090087890625, 58.373016357421875 ], "score": 0.9268283843994141 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 508.14781188964844, 211.3195343017578, 20.92926025390625, 52.20121765136719 ], "score": 0.7258615493774414 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 567.7288055419922, 220.79151916503906, 19.1436767578125, 53.49473571777344 ], "score": 0.6998677253723145 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 498.85826110839844, 210.8247528076172, 20.886306762695312, 51.03266906738281 ], "score": 0.2607593834400177 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 492.4648666381836, 207.3142852783203, 94.40834045410156, 65.13706970214844 ], "score": 0.18796861171722412 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 107.85087585449219, 205.29180908203125, 20.76700210571289, 43.472076416015625 ], "score": 0.13424773514270782 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 527.7130889892578, 209.43502807617188, 99.54994201660156, 66.47012329101562 ], "score": 0.12832461297512054 }, { "image_id": 1406, "category_id": 1.0, "bbox": [ 516.0935211181641, 210.1505126953125, 22.2210693359375, 55.2303466796875 ], "score": 0.12314732372760773 }, { "image_id": 1407, "category_id": 1.0, "bbox": [ 591.9506072998047, 212.98495483398438, 33.3843994140625, 83.221923828125 ], "score": 0.9476219415664673 }, { "image_id": 1407, "category_id": 1.0, "bbox": [ 58.60288143157959, 203.00450134277344, 24.601054191589355, 45.226104736328125 ], "score": 0.14997929334640503 }, { "image_id": 1408, "category_id": 1.0, "bbox": [ 57.595930099487305, 203.4661102294922, 22.638416290283203, 51.278411865234375 ], "score": 0.11818140745162964 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 597.9228210449219, 200.11427307128906, 23.119888305664062, 55.60784912109375 ], "score": 0.8290965557098389 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 552.6681518554688, 200.080078125, 20.831451416015625, 63.972808837890625 ], "score": 0.7744748592376709 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 536.9925308227539, 213.0926971435547, 21.813812255859375, 57.64616394042969 ], "score": 0.5862313508987427 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 521.1491394042969, 212.07736206054688, 20.65093994140625, 57.257843017578125 ], "score": 0.4607968330383301 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 572.9167938232422, 207.74574279785156, 28.652496337890625, 69.75486755371094 ], "score": 0.3324313163757324 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 541.8284225463867, 208.7465362548828, 26.36260986328125, 78.08753967285156 ], "score": 0.2792665660381317 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 567.9397201538086, 205.0508575439453, 20.846786499023438, 60.25148010253906 ], "score": 0.27324703335762024 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 586.901969909668, 205.2983856201172, 21.618499755859375, 57.46241760253906 ], "score": 0.23834899067878723 }, { "image_id": 1409, "category_id": 1.0, "bbox": [ 541.7458724975586, 202.07577514648438, 60.14892578125, 86.39959716796875 ], "score": 0.1627419888973236 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 580.4410552978516, 208.06741333007812, 35.740966796875, 95.05911254882812 ], "score": 0.9949892163276672 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 607.7094268798828, 200.50599670410156, 24.572601318359375, 70.67155456542969 ], "score": 0.9761664867401123 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 565.2872467041016, 214.52850341796875, 26.18194580078125, 72.264892578125 ], "score": 0.7375798225402832 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 499.2247009277344, 218.58583068847656, 27.04345703125, 57.19407653808594 ], "score": 0.6465734243392944 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 595.2511215209961, 206.3468017578125, 31.577606201171875, 83.4600830078125 ], "score": 0.4064536392688751 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 531.6605758666992, 207.33956909179688, 20.680618286132812, 58.087310791015625 ], "score": 0.3946060240268707 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 507.7940368652344, 213.64236450195312, 27.555007934570312, 76.104248046875 ], "score": 0.33696693181991577 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 546.4814758300781, 208.95960998535156, 18.269805908203125, 55.77781677246094 ], "score": 0.32762235403060913 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 520.5517578125, 210.64260864257812, 21.947784423828125, 59.66473388671875 ], "score": 0.3175227642059326 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 552.5681686401367, 211.50453186035156, 20.062942504882812, 64.41624450683594 ], "score": 0.21306651830673218 }, { "image_id": 1410, "category_id": 1.0, "bbox": [ 414.52430725097656, 103.71218872070312, 28.458480834960938, 86.98785400390625 ], "score": 0.12057393044233322 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 544.4564056396484, 217.25057983398438, 25.815200805664062, 75.1607666015625 ], "score": 0.9454922080039978 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 579.9415969848633, 214.2909698486328, 27.169570922851562, 73.90260314941406 ], "score": 0.9423802495002747 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 533.2350921630859, 224.79739379882812, 26.138153076171875, 68.62359619140625 ], "score": 0.9311644434928894 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 601.4837646484375, 225.50148010253906, 23.240203857421875, 65.19163513183594 ], "score": 0.8434364795684814 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 588.7166213989258, 201.29541015625, 30.317153930664062, 74.63967895507812 ], "score": 0.15374909341335297 }, { "image_id": 1411, "category_id": 1.0, "bbox": [ 506.6964340209961, 255.2217559814453, 32.99530029296875, 86.38285827636719 ], "score": 0.1500215083360672 }, { "image_id": 1412, "category_id": 1.0, "bbox": [ 585.1240158081055, 215.58135986328125, 37.557525634765625, 122.28216552734375 ], "score": 0.9961385130882263 }, { "image_id": 1412, "category_id": 1.0, "bbox": [ 571.3169097900391, 218.91470336914062, 36.98127746582031, 99.43121337890625 ], "score": 0.2209496945142746 }, { "image_id": 1412, "category_id": 1.0, "bbox": [ 433.4833526611328, 219.26478576660156, 20.364990234375, 42.42539978027344 ], "score": 0.12604215741157532 }, { "image_id": 1413, "category_id": 1.0, "bbox": [ 497.84427642822266, 225.48318481445312, 24.731826782226562, 60.32122802734375 ], "score": 0.9078333377838135 }, { "image_id": 1413, "category_id": 1.0, "bbox": [ 362.99560546875, 225.54171752929688, 20.377578735351562, 46.3385009765625 ], "score": 0.3139907419681549 }, { "image_id": 1414, "category_id": 1.0, "bbox": [ 549.2194747924805, 207.75961303710938, 31.562881469726562, 79.49310302734375 ], "score": 0.9993864893913269 }, { "image_id": 1414, "category_id": 1.0, "bbox": [ 365.4201126098633, 208.7696990966797, 22.941436767578125, 54.68952941894531 ], "score": 0.9563966989517212 }, { "image_id": 1415, "category_id": 1.0, "bbox": [ 371.1831283569336, 226.86544799804688, 28.885345458984375, 58.44793701171875 ], "score": 0.9927008152008057 }, { "image_id": 1415, "category_id": 1.0, "bbox": [ 499.6429443359375, 228.09326171875, 19.563522338867188, 42.2037353515625 ], "score": 0.285248339176178 }, { "image_id": 1416, "category_id": 1.0, "bbox": [ 384.86217498779297, 226.9392852783203, 26.343994140625, 59.95738220214844 ], "score": 0.9960950016975403 }, { "image_id": 1416, "category_id": 1.0, "bbox": [ 399.94678497314453, 221.04348754882812, 29.09881591796875, 72.01300048828125 ], "score": 0.9747437238693237 }, { "image_id": 1416, "category_id": 1.0, "bbox": [ 557.669563293457, 228.1346435546875, 29.002609252929688, 57.558349609375 ], "score": 0.843787431716919 }, { "image_id": 1417, "category_id": 1.0, "bbox": [ 429.2035675048828, 227.46060180664062, 36.232757568359375, 101.1334228515625 ], "score": 0.9622219800949097 }, { "image_id": 1417, "category_id": 1.0, "bbox": [ 417.5226593017578, 235.74546813964844, 23.292617797851562, 79.56474304199219 ], "score": 0.9502458572387695 }, { "image_id": 1417, "category_id": 1.0, "bbox": [ 202.02489852905273, 208.8428497314453, 18.997039794921875, 49.11616516113281 ], "score": 0.3373197913169861 }, { "image_id": 1418, "category_id": 1.0, "bbox": [ 461.97071075439453, 229.5158233642578, 39.05120849609375, 117.99327087402344 ], "score": 0.994953453540802 }, { "image_id": 1418, "category_id": 1.0, "bbox": [ 486.30245208740234, 228.27671813964844, 43.65745544433594, 125.26264953613281 ], "score": 0.9760785102844238 }, { "image_id": 1419, "category_id": 1.0, "bbox": [ 154.47307586669922, 208.67120361328125, 22.548179626464844, 50.97589111328125 ], "score": 0.37726181745529175 }, { "image_id": 1419, "category_id": 1.0, "bbox": [ 429.8042678833008, 213.87966918945312, 22.136993408203125, 44.7235107421875 ], "score": 0.21770715713500977 }, { "image_id": 1420, "category_id": 1.0, "bbox": [ 556.1090469360352, 228.3004608154297, 27.0977783203125, 52.11061096191406 ], "score": 0.19750884175300598 }, { "image_id": 1420, "category_id": 1.0, "bbox": [ 447.96634674072266, 215.27682495117188, 21.429367065429688, 43.033721923828125 ], "score": 0.16091671586036682 }, { "image_id": 1420, "category_id": 1.0, "bbox": [ 113.21931838989258, 200.15084838867188, 69.74571228027344, 41.14453125 ], "score": 0.11778347194194794 }, { "image_id": 1420, "category_id": 1.0, "bbox": [ 60.3069543838501, 225.72348022460938, 40.05839824676514, 108.728759765625 ], "score": 0.11624301970005035 }, { "image_id": 1421, "category_id": 1.0, "bbox": [ 70.71557998657227, 214.16883850097656, 30.526790618896484, 75.49205017089844 ], "score": 0.9945086240768433 }, { "image_id": 1421, "category_id": 1.0, "bbox": [ 97.00581550598145, 211.80148315429688, 29.647464752197266, 77.72573852539062 ], "score": 0.9936591386795044 }, { "image_id": 1421, "category_id": 1.0, "bbox": [ 144.8220443725586, 206.2776336669922, 21.147632598876953, 49.381561279296875 ], "score": 0.8933278322219849 }, { "image_id": 1421, "category_id": 1.0, "bbox": [ 83.30041885375977, 212.25900268554688, 30.840511322021484, 69.92861938476562 ], "score": 0.8488731384277344 }, { "image_id": 1421, "category_id": 1.0, "bbox": [ 533.5221481323242, 227.18020629882812, 25.425186157226562, 45.632110595703125 ], "score": 0.14328326284885406 }, { "image_id": 1422, "category_id": 1.0, "bbox": [ 594.4697952270508, 216.5445556640625, 31.753387451171875, 67.1123046875 ], "score": 0.9985345602035522 }, { "image_id": 1422, "category_id": 1.0, "bbox": [ 18.259414434432983, 204.31051635742188, 35.919963121414185, 104.87286376953125 ], "score": 0.9968521595001221 }, { "image_id": 1423, "category_id": 1.0, "bbox": [ 88.01424980163574, 203.00576782226562, 28.014354705810547, 67.03579711914062 ], "score": 0.9970811009407043 }, { "image_id": 1423, "category_id": 1.0, "bbox": [ 493.91807556152344, 218.0965576171875, 23.793792724609375, 57.0916748046875 ], "score": 0.9673495292663574 }, { "image_id": 1423, "category_id": 1.0, "bbox": [ 169.1665267944336, 208.81207275390625, 20.35888671875, 42.395721435546875 ], "score": 0.8521686792373657 }, { "image_id": 1423, "category_id": 1.0, "bbox": [ 510.4953384399414, 220.66952514648438, 21.478271484375, 52.97052001953125 ], "score": 0.39370444416999817 }, { "image_id": 1423, "category_id": 1.0, "bbox": [ 518.9133071899414, 214.0978546142578, 23.379287719726562, 55.31120300292969 ], "score": 0.1037847027182579 }, { "image_id": 1424, "category_id": 1.0, "bbox": [ 34.8694372177124, 202.99053955078125, 32.462921142578125, 84.28643798828125 ], "score": 0.9952096343040466 }, { "image_id": 1424, "category_id": 1.0, "bbox": [ 11.102520227432251, 216.96249389648438, 28.776477575302124, 80.21649169921875 ], "score": 0.7710742950439453 }, { "image_id": 1424, "category_id": 1.0, "bbox": [ 21.973137855529785, 210.78814697265625, 33.5899543762207, 84.95065307617188 ], "score": 0.6528372168540955 }, { "image_id": 1424, "category_id": 1.0, "bbox": [ 555.3611373901367, 214.94757080078125, 32.125396728515625, 34.812774658203125 ], "score": 0.1433626413345337 }, { "image_id": 1424, "category_id": 1.0, "bbox": [ 169.12630081176758, 204.7969207763672, 24.6392822265625, 53.04820251464844 ], "score": 0.11249476671218872 }, { "image_id": 1425, "category_id": 1.0, "bbox": [ 517.1195602416992, 227.44061279296875, 22.319869995117188, 58.9471435546875 ], "score": 0.9951810836791992 }, { "image_id": 1425, "category_id": 1.0, "bbox": [ 534.4124984741211, 219.47763061523438, 23.771286010742188, 57.461273193359375 ], "score": 0.4555515944957733 }, { "image_id": 1425, "category_id": 1.0, "bbox": [ 528.494758605957, 212.17929077148438, 39.40765380859375, 83.07192993164062 ], "score": 0.1647050529718399 }, { "image_id": 1426, "category_id": 1.0, "bbox": [ 151.46409034729004, 205.58531188964844, 27.364816665649414, 61.45222473144531 ], "score": 0.9997640252113342 }, { "image_id": 1426, "category_id": 1.0, "bbox": [ 587.3160934448242, 226.14227294921875, 29.149017333984375, 89.1409912109375 ], "score": 0.9962910413742065 }, { "image_id": 1426, "category_id": 1.0, "bbox": [ 613.6220550537109, 227.9634552001953, 26.066131591796875, 80.28990173339844 ], "score": 0.898463249206543 }, { "image_id": 1427, "category_id": 1.0, "bbox": [ 92.91184425354004, 203.87277221679688, 28.124942779541016, 68.74423217773438 ], "score": 0.9595126509666443 }, { "image_id": 1427, "category_id": 1.0, "bbox": [ 78.62873077392578, 199.35440063476562, 27.86264419555664, 80.61508178710938 ], "score": 0.3868291676044464 }, { "image_id": 1427, "category_id": 1.0, "bbox": [ 574.6447372436523, 202.29147338867188, 28.080062866210938, 54.122344970703125 ], "score": 0.13616561889648438 }, { "image_id": 1428, "category_id": 1.0, "bbox": [ 52.71709442138672, 211.77517700195312, 31.635971069335938, 72.08456420898438 ], "score": 0.9823487997055054 }, { "image_id": 1428, "category_id": 1.0, "bbox": [ 38.532938957214355, 212.63772583007812, 32.13192939758301, 66.93740844726562 ], "score": 0.37136536836624146 }, { "image_id": 1429, "category_id": 1.0, "bbox": [ 32.73305416107178, 207.82769775390625, 34.44748878479004, 69.60150146484375 ], "score": 0.9928857088088989 }, { "image_id": 1429, "category_id": 1.0, "bbox": [ 15.272424221038818, 203.56356811523438, 33.603222370147705, 72.35214233398438 ], "score": 0.27080652117729187 }, { "image_id": 1430, "category_id": 1.0, "bbox": [ 588.9461517333984, 211.29150390625, 41.78443908691406, 115.0013427734375 ], "score": 0.9988677501678467 }, { "image_id": 1430, "category_id": 1.0, "bbox": [ 10.918055772781372, 203.76956176757812, 32.928651571273804, 75.83053588867188 ], "score": 0.9885846376419067 }, { "image_id": 1431, "category_id": 1.0, "bbox": [ 571.9352722167969, 223.3721160888672, 44.09263610839844, 106.35664367675781 ], "score": 0.9984048008918762 }, { "image_id": 1431, "category_id": 1.0, "bbox": [ 5.277072191238403, 211.38949584960938, 29.833725690841675, 74.91812133789062 ], "score": 0.9655717611312866 }, { "image_id": 1431, "category_id": 1.0, "bbox": [ 596.5505218505859, 227.5272216796875, 36.824493408203125, 110.281494140625 ], "score": 0.8285130262374878 }, { "image_id": 1431, "category_id": 1.0, "bbox": [ -12.421703338623047, 207.6883544921875, 38.03887367248535, 81.99630737304688 ], "score": 0.11971638351678848 }, { "image_id": 1432, "category_id": 1.0, "bbox": [ 47.8995943069458, 220.62026977539062, 34.8766565322876, 73.797607421875 ], "score": 0.9870830774307251 }, { "image_id": 1432, "category_id": 1.0, "bbox": [ 28.987016677856445, 213.44154357910156, 32.28060722351074, 67.97123718261719 ], "score": 0.19894291460514069 }, { "image_id": 1433, "category_id": 1.0, "bbox": [ 61.16724967956543, 219.69256591796875, 32.00807571411133, 74.40985107421875 ], "score": 0.998665988445282 }, { "image_id": 1433, "category_id": 1.0, "bbox": [ 38.780925273895264, 218.470458984375, 26.833670139312744, 78.626708984375 ], "score": 0.4637998938560486 }, { "image_id": 1434, "category_id": 1.0, "bbox": [ 32.06080913543701, 203.93589782714844, 38.52269172668457, 96.32963562011719 ], "score": 0.9940367937088013 }, { "image_id": 1434, "category_id": 1.0, "bbox": [ 12.651400566101074, 202.4980010986328, 37.35605716705322, 102.35166931152344 ], "score": 0.45229631662368774 }, { "image_id": 1434, "category_id": 1.0, "bbox": [ 531.0565567016602, 217.11013793945312, 21.852493286132812, 47.3150634765625 ], "score": 0.23658312857151031 }, { "image_id": 1435, "category_id": 1.0, "bbox": [ 452.8971862792969, 202.421142578125, 21.233444213867188, 45.0469970703125 ], "score": 0.19050028920173645 }, { "image_id": 1435, "category_id": 1.0, "bbox": [ 562.7066421508789, 226.4530029296875, 24.648208618164062, 35.59027099609375 ], "score": 0.13949815928936005 }, { "image_id": 1436, "category_id": 1.0, "bbox": [ 512.630615234375, 216.37388610839844, 26.214447021484375, 64.20115661621094 ], "score": 0.611045241355896 }, { "image_id": 1437, "category_id": 1.0, "bbox": [ 583.8694381713867, 217.61212158203125, 24.460372924804688, 76.38076782226562 ], "score": 0.992194414138794 }, { "image_id": 1442, "category_id": 1.0, "bbox": [ 432.5091552734375, 219.2814178466797, 20.145797729492188, 39.08357238769531 ], "score": 0.11293207108974457 }, { "image_id": 1444, "category_id": 1.0, "bbox": [ 435.39249420166016, 216.21954345703125, 21.049423217773438, 49.366790771484375 ], "score": 0.6607825756072998 }, { "image_id": 1446, "category_id": 1.0, "bbox": [ 502.8522491455078, 217.4714813232422, 24.433670043945312, 57.84861755371094 ], "score": 0.855894148349762 }, { "image_id": 1446, "category_id": 1.0, "bbox": [ 482.7371597290039, 219.97799682617188, 27.213821411132812, 60.192626953125 ], "score": 0.6270408630371094 }, { "image_id": 1446, "category_id": 1.0, "bbox": [ 484.6683120727539, 213.49578857421875, 53.585052490234375, 77.58334350585938 ], "score": 0.15226951241493225 }, { "image_id": 1447, "category_id": 1.0, "bbox": [ 507.9736328125, 214.14013671875, 24.560470581054688, 64.81707763671875 ], "score": 0.999076783657074 }, { "image_id": 1447, "category_id": 1.0, "bbox": [ 541.1779022216797, 212.4353790283203, 24.660720825195312, 65.40766906738281 ], "score": 0.9974938631057739 }, { "image_id": 1448, "category_id": 1.0, "bbox": [ 566.7466735839844, 214.0955047607422, 30.392074584960938, 86.83848571777344 ], "score": 0.9946531653404236 }, { "image_id": 1448, "category_id": 1.0, "bbox": [ 609.6154403686523, 217.66165161132812, 26.5704345703125, 79.22503662109375 ], "score": 0.9756174087524414 }, { "image_id": 1448, "category_id": 1.0, "bbox": [ 468.80584716796875, 209.7702178955078, 19.018173217773438, 49.74366760253906 ], "score": 0.4101354479789734 }, { "image_id": 1450, "category_id": 1.0, "bbox": [ 599.4121551513672, 214.64256286621094, 27.103958129882812, 57.79759216308594 ], "score": 0.7897032499313354 }, { "image_id": 1451, "category_id": 1.0, "bbox": [ 444.95983123779297, 247.18389892578125, 19.452896118164062, 45.87762451171875 ], "score": 0.47505441308021545 }, { "image_id": 1451, "category_id": 1.0, "bbox": [ 427.6259231567383, 246.0738067626953, 19.139556884765625, 47.48289489746094 ], "score": 0.13366758823394775 }, { "image_id": 1451, "category_id": 1.0, "bbox": [ 418.3134460449219, 242.0403289794922, 20.414352416992188, 50.19593811035156 ], "score": 0.10980919003486633 }, { "image_id": 1452, "category_id": 1.0, "bbox": [ 466.5338134765625, 172.72952270507812, 21.769943237304688, 47.454376220703125 ], "score": 0.9987566471099854 }, { "image_id": 1452, "category_id": 1.0, "bbox": [ 443.76365661621094, 170.11619567871094, 19.986801147460938, 49.73931884765625 ], "score": 0.8865500688552856 }, { "image_id": 1452, "category_id": 1.0, "bbox": [ 529.1596984863281, 162.40493774414062, 19.713668823242188, 47.236846923828125 ], "score": 0.7633410096168518 }, { "image_id": 1452, "category_id": 1.0, "bbox": [ 66.80059432983398, 70.656494140625, 47.2764778137207, 102.18234252929688 ], "score": 0.3264038562774658 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 502.82737731933594, 206.57533264160156, 23.28338623046875, 58.48722839355469 ], "score": 0.9996225237846375 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 471.2218475341797, 205.4122772216797, 23.984298706054688, 57.88014221191406 ], "score": 0.9994576573371887 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 570.3124618530273, 191.8715362548828, 25.590362548828125, 66.50877380371094 ], "score": 0.9606804847717285 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 588.5766220092773, 191.06072998046875, 25.500717163085938, 60.5390625 ], "score": 0.8207558393478394 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 86.45689010620117, 105.13699340820312, 31.874217987060547, 91.88470458984375 ], "score": 0.18708018958568573 }, { "image_id": 1453, "category_id": 1.0, "bbox": [ 597.9004669189453, 195.91506958007812, 23.664703369140625, 62.937835693359375 ], "score": 0.12370523810386658 }, { "image_id": 1454, "category_id": 1.0, "bbox": [ 523.6498260498047, 209.93719482421875, 29.321365356445312, 77.63189697265625 ], "score": 0.9995536804199219 }, { "image_id": 1454, "category_id": 1.0, "bbox": [ 556.8393325805664, 214.6247100830078, 27.747344970703125, 72.95429992675781 ], "score": 0.9437988996505737 }, { "image_id": 1455, "category_id": 1.0, "bbox": [ 480.92018127441406, 214.7359619140625, 27.388992309570312, 61.91351318359375 ], "score": 0.951601505279541 }, { "image_id": 1455, "category_id": 1.0, "bbox": [ 260.39905548095703, 188.31077575683594, 22.270431518554688, 42.423828125 ], "score": 0.1657988727092743 }, { "image_id": 1456, "category_id": 1.0, "bbox": [ 563.173942565918, 214.63829040527344, 35.16578674316406, 86.09480285644531 ], "score": 0.9882747530937195 }, { "image_id": 1457, "category_id": 1.0, "bbox": [ 228.20964813232422, 186.96124267578125, 24.728050231933594, 44.4500732421875 ], "score": 0.3670547604560852 }, { "image_id": 1458, "category_id": 1.0, "bbox": [ 213.65116119384766, 209.7770233154297, 23.041763305664062, 43.8355712890625 ], "score": 0.6175578832626343 }, { "image_id": 1458, "category_id": 1.0, "bbox": [ 406.7459487915039, 214.7720947265625, 22.722320556640625, 50.08441162109375 ], "score": 0.1782544106245041 }, { "image_id": 1459, "category_id": 1.0, "bbox": [ 174.56174850463867, 175.89144897460938, 24.812774658203125, 52.228179931640625 ], "score": 0.9767341613769531 }, { "image_id": 1460, "category_id": 1.0, "bbox": [ 126.48735046386719, 185.1060333251953, 27.64730453491211, 55.077056884765625 ], "score": 0.9640216827392578 }, { "image_id": 1460, "category_id": 1.0, "bbox": [ 533.2081985473633, 49.52215576171875, 26.497421264648438, 66.64988708496094 ], "score": 0.1490742713212967 }, { "image_id": 1461, "category_id": 1.0, "bbox": [ 117.08272933959961, 206.50718688964844, 30.037555694580078, 64.94480895996094 ], "score": 0.5081245303153992 }, { "image_id": 1461, "category_id": 1.0, "bbox": [ 550.9375, 154.5556640625, 37.84889221191406, 100.22091674804688 ], "score": 0.3012959659099579 }, { "image_id": 1462, "category_id": 1.0, "bbox": [ 154.83553886413574, 219.7387237548828, 42.793264389038086, 86.75798034667969 ], "score": 0.9836157560348511 }, { "image_id": 1463, "category_id": 1.0, "bbox": [ 154.90140914916992, 207.5572509765625, 53.839454650878906, 115.87408447265625 ], "score": 0.9941808581352234 }, { "image_id": 1464, "category_id": 1.0, "bbox": [ 61.8483829498291, 224.3321990966797, 68.133544921875, 151.40260314941406 ], "score": 0.996637225151062 }, { "image_id": 1465, "category_id": 1.0, "bbox": [ 41.682844161987305, 155.83303833007812, 37.64956474304199, 66.66229248046875 ], "score": 0.11555413156747818 }, { "image_id": 1468, "category_id": 1.0, "bbox": [ 150.90633392333984, 211.51092529296875, 25.51555633544922, 50.199310302734375 ], "score": 0.5202842354774475 }, { "image_id": 1468, "category_id": 1.0, "bbox": [ 156.5474033355713, 201.2738037109375, 30.79157829284668, 50.672027587890625 ], "score": 0.10134761035442352 }, { "image_id": 1471, "category_id": 1.0, "bbox": [ 321.1311340332031, 199.01820373535156, 25.941390991210938, 51.363616943359375 ], "score": 0.24578477442264557 }, { "image_id": 1471, "category_id": 1.0, "bbox": [ 233.12768936157227, 191.90365600585938, 25.175628662109375, 49.232574462890625 ], "score": 0.13023562729358673 }, { "image_id": 1472, "category_id": 1.0, "bbox": [ 317.98614501953125, 222.21414184570312, 29.258041381835938, 52.662139892578125 ], "score": 0.3486655354499817 }, { "image_id": 1473, "category_id": 1.0, "bbox": [ 317.58153915405273, 204.52227783203125, 25.779552459716797, 52.25372314453125 ], "score": 0.3231912851333618 }, { "image_id": 1474, "category_id": 1.0, "bbox": [ 324.0057373046875, 218.8834686279297, 27.58941650390625, 53.14640808105469 ], "score": 0.42211270332336426 }, { "image_id": 1474, "category_id": 1.0, "bbox": [ 313.80237579345703, 217.80152893066406, 25.205078125, 52.35417175292969 ], "score": 0.10689202696084976 }, { "image_id": 1475, "category_id": 1.0, "bbox": [ 349.78546142578125, 217.27084350585938, 26.006317138671875, 48.185272216796875 ], "score": 0.10663346946239471 }, { "image_id": 1489, "category_id": 1.0, "bbox": [ 73.04006576538086, 203.41038513183594, 45.1423454284668, 95.88343811035156 ], "score": 0.10547773540019989 }, { "image_id": 1490, "category_id": 1.0, "bbox": [ 283.47156524658203, 213.54922485351562, 37.933692932128906, 84.01889038085938 ], "score": 0.19693522155284882 }, { "image_id": 1492, "category_id": 1.0, "bbox": [ 127.24832534790039, 184.8756103515625, 41.86994552612305, 55.454833984375 ], "score": 0.21388030052185059 }, { "image_id": 1493, "category_id": 1.0, "bbox": [ 525.2104949951172, 207.2463836669922, 43.667449951171875, 113.76557922363281 ], "score": 0.2168615311384201 }, { "image_id": 1494, "category_id": 1.0, "bbox": [ 543.2527542114258, 177.6611328125, 26.36749267578125, 62.7933349609375 ], "score": 0.13239191472530365 }, { "image_id": 1494, "category_id": 1.0, "bbox": [ 175.4311752319336, 208.7539825439453, 22.63965606689453, 39.2950439453125 ], "score": 0.10261094570159912 }, { "image_id": 1495, "category_id": 1.0, "bbox": [ 124.96417045593262, 213.0437469482422, 33.256378173828125, 50.20747375488281 ], "score": 0.32757362723350525 }, { "image_id": 1496, "category_id": 1.0, "bbox": [ 95.08801460266113, 208.7483367919922, 26.259803771972656, 48.85746765136719 ], "score": 0.7052109241485596 }, { "image_id": 1497, "category_id": 1.0, "bbox": [ 30.301597118377686, 208.33389282226562, 32.37181901931763, 62.193023681640625 ], "score": 0.9439411163330078 }, { "image_id": 1497, "category_id": 1.0, "bbox": [ 197.30514526367188, 219.01039123535156, 24.055862426757812, 40.54801940917969 ], "score": 0.24478092789649963 }, { "image_id": 1497, "category_id": 1.0, "bbox": [ 19.49745774269104, 198.87371826171875, 30.35201907157898, 71.36514282226562 ], "score": 0.1506364643573761 }, { "image_id": 1498, "category_id": 1.0, "bbox": [ 169.3694305419922, 224.64022827148438, 30.30517578125, 51.236724853515625 ], "score": 0.8388831615447998 }, { "image_id": 1498, "category_id": 1.0, "bbox": [ 17.895196676254272, 206.91720581054688, 33.15672993659973, 76.143310546875 ], "score": 0.12034480273723602 }, { "image_id": 1498, "category_id": 1.0, "bbox": [ 85.37487983703613, 206.51025390625, 43.31064224243164, 53.936279296875 ], "score": 0.11124970763921738 }, { "image_id": 1499, "category_id": 1.0, "bbox": [ 103.7645149230957, 220.80661010742188, 46.448001861572266, 83.5198974609375 ], "score": 0.5436075329780579 }, { "image_id": 1500, "category_id": 1.0, "bbox": [ 8.248388767242432, 216.88665771484375, 43.92244100570679, 90.94451904296875 ], "score": 0.5936991572380066 }, { "image_id": 1500, "category_id": 1.0, "bbox": [ 148.7900733947754, 215.13670349121094, 33.41361999511719, 50.83619689941406 ], "score": 0.1499561071395874 }, { "image_id": 1500, "category_id": 1.0, "bbox": [ 84.88327980041504, 215.03419494628906, 30.770645141601562, 58.80665588378906 ], "score": 0.11011552065610886 }, { "image_id": 1501, "category_id": 1.0, "bbox": [ 100.69595336914062, 216.5677490234375, 47.26644515991211, 97.3232421875 ], "score": 0.9931693077087402 }, { "image_id": 1501, "category_id": 1.0, "bbox": [ 57.50308036804199, 215.7144012451172, 46.402225494384766, 98.96684265136719 ], "score": 0.9912599325180054 }, { "image_id": 1501, "category_id": 1.0, "bbox": [ 588.1985092163086, 186.4412384033203, 42.46711730957031, 109.22996520996094 ], "score": 0.40378618240356445 }, { "image_id": 1501, "category_id": 1.0, "bbox": [ 79.4822883605957, 214.13145446777344, 45.8819580078125, 102.49165344238281 ], "score": 0.18987038731575012 }, { "image_id": 1501, "category_id": 1.0, "bbox": [ 187.43780136108398, 232.9322052001953, 30.651779174804688, 65.53358459472656 ], "score": 0.12148481607437134 }, { "image_id": 1502, "category_id": 1.0, "bbox": [ 303.6707305908203, 224.51097106933594, 38.7744140625, 102.57402038574219 ], "score": 0.9981702566146851 }, { "image_id": 1502, "category_id": 1.0, "bbox": [ 266.42467498779297, 219.60848999023438, 45.297203063964844, 107.86651611328125 ], "score": 0.9961804151535034 }, { "image_id": 1502, "category_id": 1.0, "bbox": [ 320.11409759521484, 225.01559448242188, 35.16876220703125, 99.5128173828125 ], "score": 0.13210493326187134 }, { "image_id": 1502, "category_id": 1.0, "bbox": [ 439.35558319091797, 232.08438110351562, 25.818710327148438, 64.62200927734375 ], "score": 0.12254894524812698 }, { "image_id": 1502, "category_id": 1.0, "bbox": [ 291.94385528564453, 227.88638305664062, 33.463706970214844, 95.57977294921875 ], "score": 0.11089585721492767 }, { "image_id": 1503, "category_id": 1.0, "bbox": [ 557.32177734375, 224.5880889892578, 49.610443115234375, 128.9524383544922 ], "score": 0.9960382580757141 }, { "image_id": 1503, "category_id": 1.0, "bbox": [ 511.45362854003906, 222.00180053710938, 51.82037353515625, 126.0052490234375 ], "score": 0.9720115065574646 }, { "image_id": 1503, "category_id": 1.0, "bbox": [ 290.3989791870117, 213.75494384765625, 35.77064514160156, 81.85208129882812 ], "score": 0.8916686773300171 }, { "image_id": 1504, "category_id": 1.0, "bbox": [ 234.92841720581055, 224.6851806640625, 39.387855529785156, 79.2696533203125 ], "score": 0.9763683676719666 }, { "image_id": 1504, "category_id": 1.0, "bbox": [ 13.392618894577026, 206.91146850585938, 39.33014988899231, 85.63336181640625 ], "score": 0.9022445678710938 }, { "image_id": 1504, "category_id": 1.0, "bbox": [ 344.8899841308594, 230.09112548828125, 29.183273315429688, 56.70892333984375 ], "score": 0.29293957352638245 }, { "image_id": 1504, "category_id": 1.0, "bbox": [ 225.95001220703125, 224.80325317382812, 30.922889709472656, 66.3212890625 ], "score": 0.10940757393836975 }, { "image_id": 1505, "category_id": 1.0, "bbox": [ 390.05298614501953, 218.91812133789062, 38.05824279785156, 84.385498046875 ], "score": 0.9985593557357788 }, { "image_id": 1505, "category_id": 1.0, "bbox": [ 169.38688278198242, 204.0278778076172, 35.82721710205078, 71.59388732910156 ], "score": 0.9912431240081787 }, { "image_id": 1505, "category_id": 1.0, "bbox": [ 184.39428329467773, 206.38931274414062, 33.215980529785156, 67.62649536132812 ], "score": 0.1428310126066208 }, { "image_id": 1506, "category_id": 1.0, "bbox": [ 337.3872375488281, 218.35858154296875, 36.239471435546875, 96.0218505859375 ], "score": 0.9988887906074524 }, { "image_id": 1506, "category_id": 1.0, "bbox": [ 81.85423851013184, 194.21603393554688, 43.2392692565918, 82.04071044921875 ], "score": 0.9681915044784546 }, { "image_id": 1506, "category_id": 1.0, "bbox": [ 43.362483978271484, 174.04434204101562, 46.319313049316406, 103.96011352539062 ], "score": 0.1723652482032776 }, { "image_id": 1506, "category_id": 1.0, "bbox": [ 517.4387741088867, 197.81008911132812, 39.894561767578125, 107.4556884765625 ], "score": 0.12436594814062119 }, { "image_id": 1507, "category_id": 1.0, "bbox": [ 14.658958911895752, 207.1124725341797, 53.77641439437866, 125.14488220214844 ], "score": 0.9784432649612427 }, { "image_id": 1507, "category_id": 1.0, "bbox": [ 36.32751226425171, 210.2183837890625, 46.263039112091064, 98.4681396484375 ], "score": 0.35819143056869507 }, { "image_id": 1507, "category_id": 1.0, "bbox": [ 5.860779285430908, 213.46890258789062, 39.57861661911011, 100.46575927734375 ], "score": 0.10903538763523102 }, { "image_id": 1509, "category_id": 1.0, "bbox": [ 568.4238052368164, 232.08645629882812, 40.14640808105469, 92.11322021484375 ], "score": 0.999065101146698 }, { "image_id": 1510, "category_id": 1.0, "bbox": [ 380.95542907714844, 249.16322326660156, 49.99420166015625, 112.84965515136719 ], "score": 0.9989923238754272 }, { "image_id": 1510, "category_id": 1.0, "bbox": [ 536.0658645629883, 247.9480438232422, 40.762786865234375, 94.56251525878906 ], "score": 0.9985107183456421 }, { "image_id": 1510, "category_id": 1.0, "bbox": [ 447.4544906616211, 246.53555297851562, 25.067214965820312, 50.59027099609375 ], "score": 0.9685720205307007 }, { "image_id": 1510, "category_id": 1.0, "bbox": [ 461.9578170776367, 245.14169311523438, 26.224288940429688, 51.120849609375 ], "score": 0.6310877799987793 }, { "image_id": 1511, "category_id": 1.0, "bbox": [ 164.24482345581055, 252.77618408203125, 70.66452026367188, 151.0069580078125 ], "score": 0.999366283416748 }, { "image_id": 1511, "category_id": 1.0, "bbox": [ 420.51937103271484, 241.18731689453125, 44.39765930175781, 99.30352783203125 ], "score": 0.9993393421173096 }, { "image_id": 1511, "category_id": 1.0, "bbox": [ 305.8253479003906, 229.8417205810547, 24.321250915527344, 56.04414367675781 ], "score": 0.981015682220459 }, { "image_id": 1511, "category_id": 1.0, "bbox": [ 330.43270111083984, 242.33584594726562, 25.770339965820312, 47.28436279296875 ], "score": 0.9217501878738403 }, { "image_id": 1511, "category_id": 1.0, "bbox": [ 318.8454818725586, 231.1100616455078, 22.49603271484375, 56.52772521972656 ], "score": 0.2588955760002136 }, { "image_id": 1512, "category_id": 1.0, "bbox": [ 352.2502136230469, 235.447998046875, 39.814605712890625, 99.67510986328125 ], "score": 0.9992938041687012 }, { "image_id": 1512, "category_id": 1.0, "bbox": [ 208.2332992553711, 222.98081970214844, 28.659591674804688, 57.89640808105469 ], "score": 0.9989731907844543 }, { "image_id": 1512, "category_id": 1.0, "bbox": [ 237.00687408447266, 231.03562927246094, 23.097763061523438, 56.88267517089844 ], "score": 0.9978020787239075 }, { "image_id": 1512, "category_id": 1.0, "bbox": [ 316.4886283874512, 226.8767852783203, 23.921451568603516, 37.75523376464844 ], "score": 0.5487823486328125 }, { "image_id": 1512, "category_id": 1.0, "bbox": [ 222.78871536254883, 224.8025665283203, 25.84941864013672, 53.75639343261719 ], "score": 0.1255837082862854 }, { "image_id": 1513, "category_id": 1.0, "bbox": [ 199.16423797607422, 210.45013427734375, 29.567489624023438, 64.5382080078125 ], "score": 0.9996076822280884 }, { "image_id": 1513, "category_id": 1.0, "bbox": [ 371.4025115966797, 225.13687133789062, 43.92913818359375, 107.39324951171875 ], "score": 0.999493420124054 }, { "image_id": 1513, "category_id": 1.0, "bbox": [ 229.66798782348633, 216.8227996826172, 29.534378051757812, 60.43275451660156 ], "score": 0.9947962164878845 }, { "image_id": 1513, "category_id": 1.0, "bbox": [ 332.8878402709961, 217.64657592773438, 25.451583862304688, 35.172760009765625 ], "score": 0.4856974184513092 }, { "image_id": 1513, "category_id": 1.0, "bbox": [ 215.18274307250977, 214.99986267089844, 26.870651245117188, 57.90538024902344 ], "score": 0.10919240117073059 }, { "image_id": 1514, "category_id": 1.0, "bbox": [ 445.5931091308594, 224.4241180419922, 49.76661682128906, 124.60676574707031 ], "score": 0.9998732209205627 }, { "image_id": 1514, "category_id": 1.0, "bbox": [ 234.83360290527344, 204.7316436767578, 32.06977844238281, 76.53047180175781 ], "score": 0.9992866516113281 }, { "image_id": 1514, "category_id": 1.0, "bbox": [ 263.84511947631836, 216.77093505859375, 31.213760375976562, 68.27023315429688 ], "score": 0.9988129138946533 }, { "image_id": 1514, "category_id": 1.0, "bbox": [ 398.5896682739258, 210.32415771484375, 25.550384521484375, 40.07763671875 ], "score": 0.42696070671081543 }, { "image_id": 1514, "category_id": 1.0, "bbox": [ 250.5767822265625, 210.77195739746094, 31.675262451171875, 72.27095031738281 ], "score": 0.1706382930278778 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 514.7954940795898, 234.90243530273438, 57.489166259765625, 151.49249267578125 ], "score": 0.9995816946029663 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 258.6377143859863, 219.70196533203125, 38.932456970214844, 97.618896484375 ], "score": 0.9993565082550049 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 232.46936798095703, 209.28482055664062, 38.95214080810547, 97.43499755859375 ], "score": 0.9981844425201416 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 434.35386657714844, 218.4220733642578, 27.4945068359375, 38.38514709472656 ], "score": 0.2171792834997177 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 446.94313049316406, 221.00254821777344, 20.672073364257812, 40.64665222167969 ], "score": 0.12183552980422974 }, { "image_id": 1515, "category_id": 1.0, "bbox": [ 495.15968322753906, 200.01502990722656, 23.578414916992188, 55.190673828125 ], "score": 0.1102936640381813 }, { "image_id": 1516, "category_id": 1.0, "bbox": [ 159.04519081115723, 210.15069580078125, 52.062578201293945, 136.0684814453125 ], "score": 0.999894380569458 }, { "image_id": 1516, "category_id": 1.0, "bbox": [ 567.1933364868164, 242.50820922851562, 62.55546569824219, 193.4486083984375 ], "score": 0.9991827011108398 }, { "image_id": 1516, "category_id": 1.0, "bbox": [ 204.77148056030273, 233.71768188476562, 42.909278869628906, 125.68316650390625 ], "score": 0.9736001491546631 }, { "image_id": 1516, "category_id": 1.0, "bbox": [ 442.1437072753906, 222.31275939941406, 26.450576782226562, 42.16587829589844 ], "score": 0.22824722528457642 }, { "image_id": 1516, "category_id": 1.0, "bbox": [ 232.24685668945312, 238.50634765625, 38.41072082519531, 99.3563232421875 ], "score": 0.18567532300949097 }, { "image_id": 1517, "category_id": 1.0, "bbox": [ 61.8171501159668, 233.55462646484375, 85.14694213867188, 194.40509033203125 ], "score": 0.99294513463974 }, { "image_id": 1517, "category_id": 1.0, "bbox": [ 32.44011402130127, 198.97450256347656, 71.6376256942749, 205.8447723388672 ], "score": 0.9898626208305359 }, { "image_id": 1517, "category_id": 1.0, "bbox": [ 448.50677490234375, 211.68023681640625, 25.0103759765625, 44.049652099609375 ], "score": 0.2767895460128784 }, { "image_id": 1518, "category_id": 1.0, "bbox": [ 461.160888671875, 223.15292358398438, 21.271286010742188, 41.908447265625 ], "score": 0.29531165957450867 }, { "image_id": 1518, "category_id": 1.0, "bbox": [ 441.91776275634766, 220.26548767089844, 25.107040405273438, 48.20533752441406 ], "score": 0.2786213159561157 }, { "image_id": 1518, "category_id": 1.0, "bbox": [ 97.78395652770996, 251.18504333496094, 34.929656982421875, 78.73060607910156 ], "score": 0.20044685900211334 }, { "image_id": 1518, "category_id": 1.0, "bbox": [ 103.86580467224121, 215.4842987060547, 41.744022369384766, 107.69258117675781 ], "score": 0.11009490489959717 }, { "image_id": 1518, "category_id": 1.0, "bbox": [ 468.71150970458984, 218.75595092773438, 17.81768798828125, 37.617095947265625 ], "score": 0.10830298066139221 }, { "image_id": 1519, "category_id": 1.0, "bbox": [ 540.3867340087891, 223.76715087890625, 25.200119018554688, 62.802337646484375 ], "score": 0.2620749771595001 }, { "image_id": 1519, "category_id": 1.0, "bbox": [ 465.92395782470703, 227.75115966796875, 20.807723999023438, 44.277679443359375 ], "score": 0.12725888192653656 }, { "image_id": 1519, "category_id": 1.0, "bbox": [ 120.48306465148926, 263.8312683105469, 34.69552993774414, 73.8359375 ], "score": 0.12544579803943634 }, { "image_id": 1519, "category_id": 1.0, "bbox": [ 452.5442123413086, 223.33056640625, 21.363067626953125, 45.855133056640625 ], "score": 0.10540693998336792 }, { "image_id": 1520, "category_id": 1.0, "bbox": [ 473.52603912353516, 229.84341430664062, 21.765365600585938, 41.850128173828125 ], "score": 0.2417972981929779 }, { "image_id": 1520, "category_id": 1.0, "bbox": [ 459.77622985839844, 221.4180908203125, 22.587432861328125, 48.11822509765625 ], "score": 0.22623850405216217 }, { "image_id": 1520, "category_id": 1.0, "bbox": [ 454.3479537963867, 183.4563751220703, 30.500869750976562, 80.82643127441406 ], "score": 0.16064466536045074 }, { "image_id": 1521, "category_id": 1.0, "bbox": [ 499.63062286376953, 214.10084533691406, 22.955169677734375, 47.19392395019531 ], "score": 0.7693390846252441 }, { "image_id": 1521, "category_id": 1.0, "bbox": [ 489.79846954345703, 215.8942413330078, 21.937789916992188, 45.84977722167969 ], "score": 0.46295836567878723 }, { "image_id": 1521, "category_id": 1.0, "bbox": [ 478.4452438354492, 166.6735382080078, 35.61058044433594, 96.96696472167969 ], "score": 0.15040259063243866 }, { "image_id": 1522, "category_id": 1.0, "bbox": [ 530.8002471923828, 213.0136260986328, 31.554794311523438, 58.12394714355469 ], "score": 0.8211734294891357 }, { "image_id": 1522, "category_id": 1.0, "bbox": [ 544.1849517822266, 212.2552032470703, 27.481536865234375, 54.94343566894531 ], "score": 0.12779600918293 }, { "image_id": 1522, "category_id": 1.0, "bbox": [ 562.2591400146484, 214.245849609375, 22.179489135742188, 53.185638427734375 ], "score": 0.11982938647270203 }, { "image_id": 1522, "category_id": 1.0, "bbox": [ 401.5739059448242, 236.5192413330078, 21.381759643554688, 41.91377258300781 ], "score": 0.10849202424287796 }, { "image_id": 1523, "category_id": 1.0, "bbox": [ 561.5852355957031, 229.97738647460938, 23.519668579101562, 56.5343017578125 ], "score": 0.9934829473495483 }, { "image_id": 1523, "category_id": 1.0, "bbox": [ 549.1843032836914, 231.98355102539062, 20.11566162109375, 52.6212158203125 ], "score": 0.1419026106595993 }, { "image_id": 1523, "category_id": 1.0, "bbox": [ 406.02394104003906, 237.12982177734375, 29.580764770507812, 63.923583984375 ], "score": 0.13998256623744965 }, { "image_id": 1526, "category_id": 1.0, "bbox": [ 156.46661758422852, 245.812744140625, 37.281951904296875, 74.7276611328125 ], "score": 0.16039490699768066 }, { "image_id": 1527, "category_id": 1.0, "bbox": [ 112.52688407897949, 195.47723388671875, 40.41374206542969, 96.95993041992188 ], "score": 0.1800776869058609 }, { "image_id": 1531, "category_id": 1.0, "bbox": [ 154.98724937438965, 204.81765747070312, 31.773080825805664, 73.3902587890625 ], "score": 0.1452205628156662 }, { "image_id": 1532, "category_id": 1.0, "bbox": [ 509.4942855834961, 165.91603088378906, 30.915069580078125, 71.62966918945312 ], "score": 0.12018067389726639 }, { "image_id": 1532, "category_id": 1.0, "bbox": [ 414.0180969238281, 230.19839477539062, 43.16650390625, 107.77734375 ], "score": 0.11002135276794434 }, { "image_id": 1535, "category_id": 1.0, "bbox": [ 604.660530090332, 224.63778686523438, 24.85870361328125, 57.8670654296875 ], "score": 0.8694645166397095 }, { "image_id": 1535, "category_id": 1.0, "bbox": [ 387.51220703125, 201.2428436279297, 37.351531982421875, 65.75486755371094 ], "score": 0.20861037075519562 }, { "image_id": 1535, "category_id": 1.0, "bbox": [ 452.218017578125, 224.99124145507812, 32.63618469238281, 74.35345458984375 ], "score": 0.1917259395122528 }, { "image_id": 1536, "category_id": 1.0, "bbox": [ 385.82569122314453, 200.09852600097656, 32.069244384765625, 76.26301574707031 ], "score": 0.19694668054580688 }, { "image_id": 1537, "category_id": 1.0, "bbox": [ 430.63907623291016, 217.37423706054688, 28.755722045898438, 67.451904296875 ], "score": 0.21891909837722778 }, { "image_id": 1541, "category_id": 1.0, "bbox": [ 527.5902557373047, 166.12997436523438, 39.32655334472656, 100.88754272460938 ], "score": 0.472524493932724 }, { "image_id": 1542, "category_id": 1.0, "bbox": [ 455.2521514892578, 204.1853790283203, 23.878173828125, 42.867828369140625 ], "score": 0.1378004103899002 }, { "image_id": 1543, "category_id": 1.0, "bbox": [ 403.5793685913086, 211.73504638671875, 23.575439453125, 45.9825439453125 ], "score": 0.3734924793243408 }, { "image_id": 1543, "category_id": 1.0, "bbox": [ 324.6080780029297, 207.94308471679688, 23.249130249023438, 47.054595947265625 ], "score": 0.3288189768791199 }, { "image_id": 1544, "category_id": 1.0, "bbox": [ 413.73870849609375, 212.71990966796875, 24.459915161132812, 48.144622802734375 ], "score": 0.9280897378921509 }, { "image_id": 1544, "category_id": 1.0, "bbox": [ 259.7134017944336, 212.2489776611328, 25.18901824951172, 44.68690490722656 ], "score": 0.40677690505981445 }, { "image_id": 1544, "category_id": 1.0, "bbox": [ 545.8955764770508, 212.9351806640625, 19.865875244140625, 38.774688720703125 ], "score": 0.4036691188812256 }, { "image_id": 1544, "category_id": 1.0, "bbox": [ 537.3983383178711, 210.52076721191406, 20.46112060546875, 39.635467529296875 ], "score": 0.2340705394744873 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 423.14571380615234, 213.45327758789062, 26.73187255859375, 55.137725830078125 ], "score": 0.99879390001297 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 595.6220245361328, 209.31300354003906, 22.2125244140625, 44.21478271484375 ], "score": 0.5252743363380432 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 158.99723052978516, 214.14544677734375, 28.347206115722656, 71.65786743164062 ], "score": 0.27474260330200195 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 581.6452789306641, 207.4616241455078, 20.873794555664062, 52.95314025878906 ], "score": 0.1922149807214737 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 563.4757232666016, 187.65444946289062, 27.092819213867188, 84.12457275390625 ], "score": 0.13880878686904907 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 298.72493743896484, 273.2706298828125, 36.0626220703125, 62.44464111328125 ], "score": 0.13168705999851227 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 197.57322311401367, 206.68460083007812, 27.37621307373047, 44.79400634765625 ], "score": 0.12694638967514038 }, { "image_id": 1545, "category_id": 1.0, "bbox": [ 138.1441307067871, 206.37344360351562, 42.53541946411133, 76.58767700195312 ], "score": 0.10106576234102249 }, { "image_id": 1546, "category_id": 1.0, "bbox": [ 468.57765197753906, 216.50808715820312, 34.08378601074219, 81.89984130859375 ], "score": 0.9992367625236511 }, { "image_id": 1546, "category_id": 1.0, "bbox": [ 207.21792221069336, 215.32131958007812, 24.66552734375, 51.176666259765625 ], "score": 0.10424339771270752 }, { "image_id": 1547, "category_id": 1.0, "bbox": [ 592.8018951416016, 221.3501739501953, 42.822723388671875, 109.26014709472656 ], "score": 0.5711433291435242 }, { "image_id": 1547, "category_id": 1.0, "bbox": [ 165.41671752929688, 206.2895965576172, 28.650665283203125, 58.18159484863281 ], "score": 0.24358932673931122 }, { "image_id": 1547, "category_id": 1.0, "bbox": [ 151.22442245483398, 197.83633422851562, 30.638084411621094, 68.10064697265625 ], "score": 0.13460659980773926 }, { "image_id": 1548, "category_id": 1.0, "bbox": [ 182.48701095581055, 209.10455322265625, 28.330230712890625, 64.89529418945312 ], "score": 0.2957076132297516 }, { "image_id": 1548, "category_id": 1.0, "bbox": [ 162.58745193481445, 201.6559295654297, 36.777305603027344, 74.77461242675781 ], "score": 0.13809475302696228 }, { "image_id": 1549, "category_id": 1.0, "bbox": [ 149.2057991027832, 215.5416259765625, 35.064659118652344, 71.82366943359375 ], "score": 0.23949816823005676 }, { "image_id": 1549, "category_id": 1.0, "bbox": [ 121.15758895874023, 210.81666564941406, 38.15080642700195, 76.34111022949219 ], "score": 0.19945929944515228 }, { "image_id": 1550, "category_id": 1.0, "bbox": [ 262.74513244628906, 228.55313110351562, 24.749794006347656, 54.127410888671875 ], "score": 0.10694707185029984 }, { "image_id": 1552, "category_id": 1.0, "bbox": [ 489.70577239990234, 222.43215942382812, 37.54180908203125, 86.6290283203125 ], "score": 0.9977631568908691 }, { "image_id": 1552, "category_id": 1.0, "bbox": [ 524.094352722168, 219.2589111328125, 37.75596618652344, 88.140380859375 ], "score": 0.9726791977882385 }, { "image_id": 1552, "category_id": 1.0, "bbox": [ 251.2379264831543, 219.750732421875, 22.40833282470703, 43.056610107421875 ], "score": 0.18180380761623383 }, { "image_id": 1553, "category_id": 1.0, "bbox": [ 497.77454376220703, 228.36160278320312, 44.64332580566406, 114.5224609375 ], "score": 0.9994826316833496 }, { "image_id": 1553, "category_id": 1.0, "bbox": [ 535.2291488647461, 224.85707092285156, 46.28669738769531, 117.30070495605469 ], "score": 0.9944770336151123 }, { "image_id": 1554, "category_id": 1.0, "bbox": [ 593.4606170654297, 237.31570434570312, 40.98945617675781, 129.05218505859375 ], "score": 0.32774338126182556 }, { "image_id": 1556, "category_id": 1.0, "bbox": [ 328.18668365478516, 186.59751892089844, 27.838973999023438, 58.406280517578125 ], "score": 0.1871957927942276 }, { "image_id": 1556, "category_id": 1.0, "bbox": [ 208.54965209960938, 211.09194946289062, 27.981796264648438, 50.128997802734375 ], "score": 0.18020740151405334 }, { "image_id": 1557, "category_id": 1.0, "bbox": [ 184.94951248168945, 212.26876831054688, 24.323768615722656, 40.413665771484375 ], "score": 0.11303949356079102 }, { "image_id": 1558, "category_id": 1.0, "bbox": [ 152.05849647521973, 208.15264892578125, 25.197553634643555, 44.972747802734375 ], "score": 0.10615421831607819 }, { "image_id": 1559, "category_id": 1.0, "bbox": [ 447.71575927734375, 213.53668212890625, 24.887619018554688, 57.167449951171875 ], "score": 0.8827966451644897 }, { "image_id": 1559, "category_id": 1.0, "bbox": [ 111.2620735168457, 201.34222412109375, 29.177532196044922, 53.442108154296875 ], "score": 0.13582657277584076 }, { "image_id": 1560, "category_id": 1.0, "bbox": [ 486.6535186767578, 207.05056762695312, 40.18951416015625, 94.53146362304688 ], "score": 0.6655805110931396 }, { "image_id": 1560, "category_id": 1.0, "bbox": [ 68.71173858642578, 214.63754272460938, 33.48773956298828, 62.715667724609375 ], "score": 0.2902950644493103 }, { "image_id": 1561, "category_id": 1.0, "bbox": [ 548.00048828125, 181.11607360839844, 43.196258544921875, 123.01277160644531 ], "score": 0.977542519569397 }, { "image_id": 1561, "category_id": 1.0, "bbox": [ 448.8071823120117, 180.67779541015625, 20.327835083007812, 48.432220458984375 ], "score": 0.40183326601982117 }, { "image_id": 1561, "category_id": 1.0, "bbox": [ 592.2017288208008, 206.64935302734375, 38.06983947753906, 103.251708984375 ], "score": 0.332203209400177 }, { "image_id": 1561, "category_id": 1.0, "bbox": [ 31.68095588684082, 184.49050903320312, 34.53558921813965, 68.23046875 ], "score": 0.2798130512237549 }, { "image_id": 1562, "category_id": 1.0, "bbox": [ 506.1111831665039, 210.1578369140625, 23.340530395507812, 51.748809814453125 ], "score": 0.795415997505188 }, { "image_id": 1562, "category_id": 1.0, "bbox": [ 180.78256607055664, 190.19448852539062, 26.13048553466797, 49.585418701171875 ], "score": 0.21843601763248444 }, { "image_id": 1563, "category_id": 1.0, "bbox": [ 169.15416717529297, 178.94085693359375, 27.13428497314453, 54.05792236328125 ], "score": 0.18329118192195892 }, { "image_id": 1563, "category_id": 1.0, "bbox": [ 576.4835739135742, 198.2353057861328, 24.189682006835938, 61.99226379394531 ], "score": 0.1501057893037796 }, { "image_id": 1564, "category_id": 1.0, "bbox": [ 133.14117431640625, 184.59017944335938, 27.80414581298828, 48.799346923828125 ], "score": 0.27726733684539795 }, { "image_id": 1566, "category_id": 1.0, "bbox": [ 386.80126190185547, 213.09915161132812, 33.539886474609375, 44.714385986328125 ], "score": 0.10021234303712845 }, { "image_id": 1570, "category_id": 1.0, "bbox": [ 110.08363723754883, 211.9962615966797, 26.732177734375, 46.58872985839844 ], "score": 0.3957703113555908 }, { "image_id": 1571, "category_id": 1.0, "bbox": [ 388.7775421142578, 208.80166625976562, 23.486251831054688, 48.53173828125 ], "score": 0.404715895652771 }, { "image_id": 1571, "category_id": 1.0, "bbox": [ 281.4101791381836, 206.7584228515625, 22.67169952392578, 45.2950439453125 ], "score": 0.3755713105201721 }, { "image_id": 1572, "category_id": 1.0, "bbox": [ 361.3154983520508, 209.35369873046875, 21.586532592773438, 45.882171630859375 ], "score": 0.8104103803634644 }, { "image_id": 1572, "category_id": 1.0, "bbox": [ 489.0962600708008, 215.5903778076172, 22.679367065429688, 46.12486267089844 ], "score": 0.39877772331237793 }, { "image_id": 1572, "category_id": 1.0, "bbox": [ 280.0148582458496, 177.081787109375, 27.89966583251953, 62.038299560546875 ], "score": 0.13188745081424713 }, { "image_id": 1573, "category_id": 1.0, "bbox": [ 404.9660873413086, 213.35523986816406, 25.874557495117188, 58.05342102050781 ], "score": 0.9950042366981506 }, { "image_id": 1573, "category_id": 1.0, "bbox": [ 564.4315719604492, 215.5753936767578, 28.895263671875, 61.55238342285156 ], "score": 0.9636729955673218 }, { "image_id": 1573, "category_id": 1.0, "bbox": [ 357.3678207397461, 215.2579803466797, 29.427261352539062, 38.336181640625 ], "score": 0.1865578144788742 }, { "image_id": 1573, "category_id": 1.0, "bbox": [ 573.7321090698242, 217.7589874267578, 34.211273193359375, 70.44779968261719 ], "score": 0.1746446192264557 }, { "image_id": 1573, "category_id": 1.0, "bbox": [ 299.9065971374512, 188.29412841796875, 32.48563766479492, 58.766571044921875 ], "score": 0.1077253445982933 }, { "image_id": 1574, "category_id": 1.0, "bbox": [ 448.1204605102539, 214.643310546875, 29.337081909179688, 62.237884521484375 ], "score": 0.9980118870735168 }, { "image_id": 1574, "category_id": 1.0, "bbox": [ 384.62677001953125, 211.88168334960938, 21.736602783203125, 40.406982421875 ], "score": 0.22730734944343567 }, { "image_id": 1574, "category_id": 1.0, "bbox": [ 341.0695266723633, 161.2466583251953, 31.843109130859375, 69.7515869140625 ], "score": 0.22103573381900787 }, { "image_id": 1574, "category_id": 1.0, "bbox": [ 410.6623840332031, 200.67489624023438, 20.455093383789062, 43.687744140625 ], "score": 0.14819341897964478 }, { "image_id": 1574, "category_id": 1.0, "bbox": [ 319.71323013305664, 175.75340270996094, 32.22368240356445, 62.66058349609375 ], "score": 0.11863496899604797 }, { "image_id": 1575, "category_id": 1.0, "bbox": [ 531.1491394042969, 216.4186248779297, 44.95002746582031, 93.83015441894531 ], "score": 0.9961024522781372 }, { "image_id": 1575, "category_id": 1.0, "bbox": [ 406.92859649658203, 212.92318725585938, 23.14117431640625, 41.036865234375 ], "score": 0.22364689409732819 }, { "image_id": 1575, "category_id": 1.0, "bbox": [ 431.1055374145508, 207.7252197265625, 29.561233520507812, 44.0015869140625 ], "score": 0.14229761064052582 }, { "image_id": 1575, "category_id": 1.0, "bbox": [ 364.14371490478516, 158.38905334472656, 35.8709716796875, 81.60546875 ], "score": 0.11054809391498566 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 435.95577239990234, 210.46417236328125, 26.541519165039062, 44.08953857421875 ], "score": 0.6664328575134277 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 415.5684280395508, 206.1106719970703, 26.194534301757812, 49.075531005859375 ], "score": 0.34151697158813477 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 466.0716247558594, 202.6596221923828, 21.050796508789062, 49.24456787109375 ], "score": 0.318744421005249 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 425.9168243408203, 205.25885009765625, 27.72308349609375, 46.11138916015625 ], "score": 0.21576419472694397 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 475.4684066772461, 207.42938232421875, 20.739059448242188, 43.940826416015625 ], "score": 0.19449655711650848 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 361.28124237060547, 198.6831817626953, 29.087066650390625, 39.0042724609375 ], "score": 0.11766189336776733 }, { "image_id": 1576, "category_id": 1.0, "bbox": [ 124.69325065612793, 201.9951934814453, 27.319469451904297, 42.672149658203125 ], "score": 0.10901723802089691 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 477.41851806640625, 207.1555938720703, 27.492141723632812, 49.27378845214844 ], "score": 0.6533662676811218 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 521.5924835205078, 205.4768829345703, 22.87384033203125, 46.166961669921875 ], "score": 0.55685955286026 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 457.65342712402344, 197.4169158935547, 52.95265197753906, 78.82820129394531 ], "score": 0.36923328042030334 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 503.8230514526367, 194.74485778808594, 29.22454833984375, 60.195220947265625 ], "score": 0.2321048229932785 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 494.0110778808594, 199.9095001220703, 25.204391479492188, 53.57421875 ], "score": 0.21315574645996094 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 132.31059074401855, 205.49554443359375, 30.516386032104492, 52.71832275390625 ], "score": 0.1943819522857666 }, { "image_id": 1577, "category_id": 1.0, "bbox": [ 458.36631774902344, 216.38070678710938, 32.044677734375, 71.54949951171875 ], "score": 0.1286245733499527 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 581.9751739501953, 213.08267211914062, 26.292800903320312, 48.90142822265625 ], "score": 0.884076714515686 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 544.8813247680664, 205.2299346923828, 30.39886474609375, 69.02470397949219 ], "score": 0.8177400827407837 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 534.85107421875, 204.53164672851562, 23.554000854492188, 64.89215087890625 ], "score": 0.7954685688018799 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 510.9138488769531, 200.9502716064453, 28.339996337890625, 77.19731140136719 ], "score": 0.4963279962539673 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 7.670547962188721, 205.31729125976562, 42.10216283798218, 79.20553588867188 ], "score": 0.18977628648281097 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 514.6178817749023, 198.0469970703125, 51.30134582519531, 84.12661743164062 ], "score": 0.14118346571922302 }, { "image_id": 1578, "category_id": 1.0, "bbox": [ 30.183749198913574, 222.10545349121094, 27.008581161499023, 60.53865051269531 ], "score": 0.10494380444288254 }, { "image_id": 1579, "category_id": 1.0, "bbox": [ 573.9430999755859, 203.2277069091797, 39.95750427246094, 99.15208435058594 ], "score": 0.9909868240356445 }, { "image_id": 1579, "category_id": 1.0, "bbox": [ 57.95145034790039, 193.03912353515625, 28.329315185546875, 43.79827880859375 ], "score": 0.5382128953933716 }, { "image_id": 1579, "category_id": 1.0, "bbox": [ 415.85418701171875, 202.09104919433594, 21.69921875, 55.10728454589844 ], "score": 0.5120131373405457 }, { "image_id": 1579, "category_id": 1.0, "bbox": [ 84.10665512084961, 194.51390075683594, 32.7752685546875, 44.58514404296875 ], "score": 0.19190511107444763 }, { "image_id": 1579, "category_id": 1.0, "bbox": [ 591.1191558837891, 199.21176147460938, 35.01495361328125, 97.38235473632812 ], "score": 0.14060810208320618 }, { "image_id": 1580, "category_id": 1.0, "bbox": [ 453.19427490234375, 201.711181640625, 28.820343017578125, 69.6480712890625 ], "score": 0.8811380863189697 }, { "image_id": 1580, "category_id": 1.0, "bbox": [ 432.93514251708984, 202.06565856933594, 28.087997436523438, 67.75111389160156 ], "score": 0.5387856960296631 }, { "image_id": 1581, "category_id": 1.0, "bbox": [ 472.64678955078125, 170.9581298828125, 34.226837158203125, 87.0244140625 ], "score": 0.8971968293190002 }, { "image_id": 1581, "category_id": 1.0, "bbox": [ 448.49185943603516, 178.88653564453125, 33.05320739746094, 76.89144897460938 ], "score": 0.5046532154083252 }, { "image_id": 1581, "category_id": 1.0, "bbox": [ 11.980180740356445, 169.02023315429688, 43.068881034851074, 68.31011962890625 ], "score": 0.13516098260879517 }, { "image_id": 1581, "category_id": 1.0, "bbox": [ 141.09107971191406, 107.87150573730469, 39.93854522705078, 100.6529541015625 ], "score": 0.12143708765506744 }, { "image_id": 1581, "category_id": 1.0, "bbox": [ 162.3251724243164, 169.4738006591797, 24.639549255371094, 44.010345458984375 ], "score": 0.12024340033531189 }, { "image_id": 1582, "category_id": 1.0, "bbox": [ 508.6897277832031, 203.91131591796875, 32.33619689941406, 80.01416015625 ], "score": 0.9768838286399841 }, { "image_id": 1582, "category_id": 1.0, "bbox": [ 471.63909912109375, 204.48887634277344, 35.96954345703125, 92.10697937011719 ], "score": 0.6392760276794434 }, { "image_id": 1583, "category_id": 1.0, "bbox": [ 528.7611389160156, 211.31201171875, 41.37809753417969, 106.7021484375 ], "score": 0.8689826726913452 }, { "image_id": 1583, "category_id": 1.0, "bbox": [ 575.5898666381836, 207.9351043701172, 43.0645751953125, 104.86805725097656 ], "score": 0.8682407140731812 }, { "image_id": 1583, "category_id": 1.0, "bbox": [ 605.3215026855469, 204.31625366210938, 30.253372192382812, 72.07696533203125 ], "score": 0.4628187417984009 }, { "image_id": 1583, "category_id": 1.0, "bbox": [ 54.05902862548828, 211.8845977783203, 28.191423416137695, 42.5299072265625 ], "score": 0.12671557068824768 }, { "image_id": 1583, "category_id": 1.0, "bbox": [ 150.313720703125, 221.45736694335938, 22.938308715820312, 36.926116943359375 ], "score": 0.12489774078130722 }, { "image_id": 1584, "category_id": 1.0, "bbox": [ 21.48508071899414, 213.80703735351562, 26.910343170166016, 46.3079833984375 ], "score": 0.4363308250904083 }, { "image_id": 1584, "category_id": 1.0, "bbox": [ 588.5659790039062, 218.4313507080078, 28.692169189453125, 57.96308898925781 ], "score": 0.40683838725090027 }, { "image_id": 1584, "category_id": 1.0, "bbox": [ 34.55251693725586, 213.24810791015625, 27.869596481323242, 46.016815185546875 ], "score": 0.14077210426330566 }, { "image_id": 1584, "category_id": 1.0, "bbox": [ 143.58461380004883, 219.97727966308594, 20.856971740722656, 39.51914978027344 ], "score": 0.12973511219024658 }, { "image_id": 1584, "category_id": 1.0, "bbox": [ 8.550519943237305, 207.76255798339844, 25.881714820861816, 53.01625061035156 ], "score": 0.12672670185565948 }, { "image_id": 1585, "category_id": 1.0, "bbox": [ 116.89285278320312, 228.5991668701172, 23.36639404296875, 41.84877014160156 ], "score": 0.22723746299743652 }, { "image_id": 1586, "category_id": 1.0, "bbox": [ 60.51570415496826, 223.6143035888672, 24.5664644241333, 44.42298889160156 ], "score": 0.3710879385471344 }, { "image_id": 1586, "category_id": 1.0, "bbox": [ 417.9182434082031, 225.24246215820312, 20.872650146484375, 39.226287841796875 ], "score": 0.21797898411750793 }, { "image_id": 1587, "category_id": 1.0, "bbox": [ 428.82312774658203, 219.17982482910156, 26.430740356445312, 45.48246765136719 ], "score": 0.5981301069259644 }, { "image_id": 1587, "category_id": 1.0, "bbox": [ 173.50635528564453, 202.20401000976562, 22.99274444580078, 40.550323486328125 ], "score": 0.11335292458534241 }, { "image_id": 1589, "category_id": 1.0, "bbox": [ 475.2067565917969, 211.16200256347656, 21.92108154296875, 43.77667236328125 ], "score": 0.5121791958808899 }, { "image_id": 1590, "category_id": 1.0, "bbox": [ 518.9261245727539, 210.27978515625, 24.823532104492188, 60.625213623046875 ], "score": 0.5555617213249207 }, { "image_id": 1591, "category_id": 1.0, "bbox": [ 215.40895462036133, 145.17710876464844, 23.744735717773438, 61.44818115234375 ], "score": 0.15392789244651794 }, { "image_id": 1591, "category_id": 1.0, "bbox": [ 82.76712417602539, 198.3457489013672, 23.57931137084961, 40.2501220703125 ], "score": 0.14003202319145203 }, { "image_id": 1591, "category_id": 1.0, "bbox": [ 134.5870876312256, 182.82882690429688, 26.050748825073242, 42.80755615234375 ], "score": 0.11197652667760849 }, { "image_id": 1592, "category_id": 1.0, "bbox": [ 86.39396667480469, 194.64146423339844, 25.207862854003906, 43.607269287109375 ], "score": 0.20730328559875488 }, { "image_id": 1592, "category_id": 1.0, "bbox": [ 122.35013961791992, 187.2230987548828, 21.813335418701172, 35.152740478515625 ], "score": 0.14617234468460083 }, { "image_id": 1592, "category_id": 1.0, "bbox": [ 64.66326713562012, 198.5010986328125, 19.748382568359375, 39.235107421875 ], "score": 0.1228487491607666 }, { "image_id": 1593, "category_id": 1.0, "bbox": [ 48.636789321899414, 194.70736694335938, 23.181743621826172, 41.847625732421875 ], "score": 0.44393953680992126 }, { "image_id": 1593, "category_id": 1.0, "bbox": [ 564.4065856933594, 182.50511169433594, 25.956649780273438, 48.2325439453125 ], "score": 0.19508004188537598 }, { "image_id": 1593, "category_id": 1.0, "bbox": [ 27.19032049179077, 192.7605743408203, 23.782732486724854, 45.029144287109375 ], "score": 0.17919495701789856 }, { "image_id": 1593, "category_id": 1.0, "bbox": [ 101.03611946105957, 186.06207275390625, 27.45738983154297, 40.1502685546875 ], "score": 0.13206098973751068 }, { "image_id": 1593, "category_id": 1.0, "bbox": [ 371.30077362060547, 181.78843688964844, 18.054122924804688, 30.42657470703125 ], "score": 0.11080077290534973 }, { "image_id": 1594, "category_id": 1.0, "bbox": [ 13.458300828933716, 238.68283081054688, 28.688877820968628, 54.13787841796875 ], "score": 0.39494726061820984 }, { "image_id": 1594, "category_id": 1.0, "bbox": [ 85.63692092895508, 229.74554443359375, 31.59168243408203, 41.794586181640625 ], "score": 0.26119759678840637 }, { "image_id": 1594, "category_id": 1.0, "bbox": [ 391.6162109375, 223.4327850341797, 22.797927856445312, 38.11466979980469 ], "score": 0.10918094217777252 }, { "image_id": 1595, "category_id": 1.0, "bbox": [ 57.486939430236816, 169.41966247558594, 40.14169216156006, 74.18478393554688 ], "score": 0.3143780827522278 }, { "image_id": 1595, "category_id": 1.0, "bbox": [ 394.38838958740234, 195.6524200439453, 18.857345581054688, 33.11602783203125 ], "score": 0.2604392170906067 }, { "image_id": 1596, "category_id": 1.0, "bbox": [ 34.63145732879639, 200.19171142578125, 31.304588317871094, 45.9346923828125 ], "score": 0.35337427258491516 }, { "image_id": 1596, "category_id": 1.0, "bbox": [ 396.87496185302734, 200.60165405273438, 20.24322509765625, 36.34906005859375 ], "score": 0.25056105852127075 }, { "image_id": 1596, "category_id": 1.0, "bbox": [ 20.5112886428833, 144.8449249267578, 51.42202377319336, 103.11932373046875 ], "score": 0.12383850663900375 }, { "image_id": 1597, "category_id": 1.0, "bbox": [ 418.4394836425781, 205.85086059570312, 21.924896240234375, 45.19287109375 ], "score": 0.4668249487876892 }, { "image_id": 1598, "category_id": 1.0, "bbox": [ 458.85997772216797, 215.28616333007812, 25.419845581054688, 51.773834228515625 ], "score": 0.7545434236526489 }, { "image_id": 1599, "category_id": 1.0, "bbox": [ 537.7725982666016, 210.6835174560547, 34.494781494140625, 79.74409484863281 ], "score": 0.9935821890830994 }, { "image_id": 1599, "category_id": 1.0, "bbox": [ 443.16062927246094, 185.77935791015625, 31.038665771484375, 80.34442138671875 ], "score": 0.12883639335632324 }, { "image_id": 1599, "category_id": 1.0, "bbox": [ 433.32523345947266, 211.366943359375, 20.83587646484375, 45.126495361328125 ], "score": 0.11619101464748383 }, { "image_id": 1600, "category_id": 1.0, "bbox": [ 469.146728515625, 209.91064453125, 22.948760986328125, 43.194976806640625 ], "score": 0.6818200945854187 }, { "image_id": 1600, "category_id": 1.0, "bbox": [ 417.27184295654297, 204.801025390625, 27.124099731445312, 44.726959228515625 ], "score": 0.1201549619436264 }, { "image_id": 1601, "category_id": 1.0, "bbox": [ 450.5691909790039, 212.47750854492188, 23.13629150390625, 43.164642333984375 ], "score": 0.31729480624198914 }, { "image_id": 1601, "category_id": 1.0, "bbox": [ 539.552001953125, 208.49513244628906, 30.692291259765625, 62.87403869628906 ], "score": 0.1732313632965088 }, { "image_id": 1602, "category_id": 1.0, "bbox": [ 508.5347366333008, 217.1879425048828, 22.24884033203125, 48.09715270996094 ], "score": 0.9413289427757263 }, { "image_id": 1605, "category_id": 1.0, "bbox": [ 437.1126174926758, 210.7509765625, 19.525146484375, 41.627288818359375 ], "score": 0.16644170880317688 }, { "image_id": 1606, "category_id": 1.0, "bbox": [ 467.37083435058594, 211.37144470214844, 20.694580078125, 42.53900146484375 ], "score": 0.22623573243618011 }, { "image_id": 1606, "category_id": 1.0, "bbox": [ 318.0523681640625, 208.29954528808594, 22.2955322265625, 41.55889892578125 ], "score": 0.16691918671131134 }, { "image_id": 1606, "category_id": 1.0, "bbox": [ 393.3559036254883, 216.7880096435547, 17.795333862304688, 32.362640380859375 ], "score": 0.12452784180641174 }, { "image_id": 1606, "category_id": 1.0, "bbox": [ 331.29283905029297, 195.27243041992188, 29.549102783203125, 54.898651123046875 ], "score": 0.1223810464143753 }, { "image_id": 1606, "category_id": 1.0, "bbox": [ 476.10260009765625, 207.84841918945312, 20.80047607421875, 44.428070068359375 ], "score": 0.10764247179031372 }, { "image_id": 1607, "category_id": 1.0, "bbox": [ 519.798583984375, 211.32373046875, 23.079299926757812, 50.23394775390625 ], "score": 0.799917459487915 }, { "image_id": 1607, "category_id": 1.0, "bbox": [ 409.09786224365234, 218.484375, 18.7872314453125, 35.474761962890625 ], "score": 0.16256487369537354 }, { "image_id": 1607, "category_id": 1.0, "bbox": [ 319.7365379333496, 213.9219512939453, 19.989910125732422, 35.967803955078125 ], "score": 0.12414774298667908 }, { "image_id": 1608, "category_id": 1.0, "bbox": [ 75.48097133636475, 213.33641052246094, 24.783692359924316, 45.31141662597656 ], "score": 0.4252017140388489 }, { "image_id": 1608, "category_id": 1.0, "bbox": [ 321.9644546508789, 219.9025421142578, 22.361068725585938, 41.71418762207031 ], "score": 0.17032313346862793 }, { "image_id": 1608, "category_id": 1.0, "bbox": [ 612.5201797485352, 213.099609375, 27.71839141845703, 72.10516357421875 ], "score": 0.12375576049089432 }, { "image_id": 1609, "category_id": 1.0, "bbox": [ 338.7866973876953, 206.2315673828125, 25.015716552734375, 47.175689697265625 ], "score": 0.6183003187179565 }, { "image_id": 1610, "category_id": 1.0, "bbox": [ 348.31912994384766, 208.70928955078125, 25.531387329101562, 53.82440185546875 ], "score": 0.9658774137496948 }, { "image_id": 1610, "category_id": 1.0, "bbox": [ 484.2591857910156, 209.55538940429688, 20.829391479492188, 40.292755126953125 ], "score": 0.9057781100273132 }, { "image_id": 1610, "category_id": 1.0, "bbox": [ 120.36978721618652, 205.22042846679688, 25.081729888916016, 40.7685546875 ], "score": 0.5373280048370361 }, { "image_id": 1610, "category_id": 1.0, "bbox": [ 36.19389057159424, 204.54347229003906, 30.538921356201172, 50.819122314453125 ], "score": 0.18250584602355957 }, { "image_id": 1610, "category_id": 1.0, "bbox": [ 32.630839347839355, 165.5799560546875, 37.994394302368164, 76.27468872070312 ], "score": 0.10507159680128098 }, { "image_id": 1611, "category_id": 1.0, "bbox": [ 361.65355682373047, 210.26014709472656, 26.606369018554688, 61.29277038574219 ], "score": 0.9988683462142944 }, { "image_id": 1611, "category_id": 1.0, "bbox": [ 518.948974609375, 201.96690368652344, 22.531890869140625, 51.7984619140625 ], "score": 0.9642067551612854 }, { "image_id": 1611, "category_id": 1.0, "bbox": [ 87.89073944091797, 200.23025512695312, 32.27632522583008, 57.21282958984375 ], "score": 0.2548428475856781 }, { "image_id": 1612, "category_id": 1.0, "bbox": [ 372.4656677246094, 211.5247802734375, 33.94828796386719, 79.47900390625 ], "score": 0.9991400241851807 }, { "image_id": 1612, "category_id": 1.0, "bbox": [ 551.556510925293, 207.1010284423828, 25.13031005859375, 60.80281066894531 ], "score": 0.9960976839065552 }, { "image_id": 1612, "category_id": 1.0, "bbox": [ 47.51307487487793, 196.89759826660156, 30.888490676879883, 58.820098876953125 ], "score": 0.6184332966804504 }, { "image_id": 1612, "category_id": 1.0, "bbox": [ 25.295093059539795, 192.6587371826172, 49.57815408706665, 79.62016296386719 ], "score": 0.1079665869474411 }, { "image_id": 1613, "category_id": 1.0, "bbox": [ 419.72713470458984, 214.99900817871094, 40.89599609375, 91.89826965332031 ], "score": 0.999348521232605 }, { "image_id": 1613, "category_id": 1.0, "bbox": [ 22.802186012268066, 209.59519958496094, 29.975337982177734, 53.37123107910156 ], "score": 0.8499984741210938 }, { "image_id": 1613, "category_id": 1.0, "bbox": [ 388.03409576416016, 208.2440948486328, 32.40303039550781, 68.45118713378906 ], "score": 0.13070785999298096 }, { "image_id": 1613, "category_id": 1.0, "bbox": [ 5.844519138336182, 211.18702697753906, 37.01539754867554, 66.55787658691406 ], "score": 0.10500625520944595 }, { "image_id": 1614, "category_id": 1.0, "bbox": [ 496.5156936645508, 221.68167114257812, 55.11192321777344, 147.17669677734375 ], "score": 0.9994831085205078 }, { "image_id": 1615, "category_id": 1.0, "bbox": [ 359.4253921508789, 162.89317321777344, 25.145111083984375, 58.730133056640625 ], "score": 0.12102551013231277 }, { "image_id": 1616, "category_id": 1.0, "bbox": [ 397.03392028808594, 207.6881866455078, 18.298797607421875, 33.536376953125 ], "score": 0.15484727919101715 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 168.5693359375, 199.3326416015625, 24.590225219726562, 50.621673583984375 ], "score": 0.5098312497138977 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 381.81507110595703, 203.20712280273438, 22.606201171875, 59.25506591796875 ], "score": 0.2749369740486145 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 422.78072357177734, 204.9544677734375, 18.539047241210938, 39.186737060546875 ], "score": 0.26228097081184387 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 413.4067153930664, 207.85797119140625, 20.731353759765625, 40.64306640625 ], "score": 0.18962371349334717 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 430.39432525634766, 206.65211486816406, 19.120941162109375, 38.319244384765625 ], "score": 0.17290444672107697 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 372.720947265625, 183.7955322265625, 42.547760009765625, 89.73245239257812 ], "score": 0.16808755695819855 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 7.206974029541016, 181.15518188476562, 45.29458045959473, 94.54193115234375 ], "score": 0.13891734182834625 }, { "image_id": 1617, "category_id": 1.0, "bbox": [ 406.64562225341797, 197.15301513671875, 69.91134643554688, 55.443634033203125 ], "score": 0.11070825159549713 }, { "image_id": 1618, "category_id": 1.0, "bbox": [ 475.71361541748047, 200.47213745117188, 20.433807373046875, 45.4146728515625 ], "score": 0.8604278564453125 }, { "image_id": 1618, "category_id": 1.0, "bbox": [ 20.962657928466797, 198.32965087890625, 46.84772491455078, 90.88796997070312 ], "score": 0.5520553588867188 }, { "image_id": 1618, "category_id": 1.0, "bbox": [ 456.8313217163086, 202.76409912109375, 19.540786743164062, 41.509490966796875 ], "score": 0.5018813014030457 }, { "image_id": 1618, "category_id": 1.0, "bbox": [ 464.0113830566406, 198.58334350585938, 24.904022216796875, 45.247161865234375 ], "score": 0.19185662269592285 }, { "image_id": 1618, "category_id": 1.0, "bbox": [ 443.72310638427734, 193.61740112304688, 63.59046936035156, 52.35400390625 ], "score": 0.15831544995307922 }, { "image_id": 1619, "category_id": 1.0, "bbox": [ 563.0768203735352, 205.486572265625, 27.478103637695312, 64.50430297851562 ], "score": 0.9957501292228699 }, { "image_id": 1619, "category_id": 1.0, "bbox": [ 486.2555694580078, 214.26248168945312, 22.594757080078125, 44.67596435546875 ], "score": 0.7890334129333496 }, { "image_id": 1619, "category_id": 1.0, "bbox": [ 534.4926452636719, 204.2788848876953, 28.49884033203125, 64.29728698730469 ], "score": 0.6843947172164917 }, { "image_id": 1619, "category_id": 1.0, "bbox": [ 425.4524230957031, 206.01087951660156, 19.005584716796875, 27.830108642578125 ], "score": 0.12923315167427063 }, { "image_id": 1620, "category_id": 1.0, "bbox": [ 534.6100997924805, 220.893310546875, 25.689773559570312, 56.193206787109375 ], "score": 0.9647970795631409 }, { "image_id": 1620, "category_id": 1.0, "bbox": [ 447.4037551879883, 206.67572021484375, 18.5009765625, 37.4627685546875 ], "score": 0.23951959609985352 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 606.2825393676758, 219.5325927734375, 28.686752319335938, 80.89398193359375 ], "score": 0.7635799646377563 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 443.99242401123047, 204.86300659179688, 20.420379638671875, 42.31512451171875 ], "score": 0.652184009552002 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 466.0540008544922, 199.0684356689453, 22.520217895507812, 47.111114501953125 ], "score": 0.5838944315910339 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 402.1073532104492, 207.16241455078125, 21.132278442382812, 39.0401611328125 ], "score": 0.2218829095363617 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 64.07629013061523, 203.5680694580078, 24.185962677001953, 44.378936767578125 ], "score": 0.19791673123836517 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 77.37942695617676, 202.60304260253906, 22.891597747802734, 44.11541748046875 ], "score": 0.1977844536304474 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 453.54053497314453, 201.66082763671875, 26.63482666015625, 46.349609375 ], "score": 0.17711447179317474 }, { "image_id": 1621, "category_id": 1.0, "bbox": [ 436.29478454589844, 192.9339599609375, 63.44688415527344, 68.70806884765625 ], "score": 0.12986749410629272 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 511.7213821411133, 206.49069213867188, 22.004852294921875, 47.669525146484375 ], "score": 0.722275972366333 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 54.85419273376465, 207.25802612304688, 21.711530685424805, 42.0367431640625 ], "score": 0.45575040578842163 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 33.36956262588501, 207.4154815673828, 20.77131986618042, 39.3096923828125 ], "score": 0.43353360891342163 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 445.4530715942383, 210.13082885742188, 23.363800048828125, 46.578643798828125 ], "score": 0.27966323494911194 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 92.66789436340332, 209.247314453125, 23.689022064208984, 44.77532958984375 ], "score": 0.22476959228515625 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 521.6357040405273, 205.6996307373047, 22.408447265625, 46.7445068359375 ], "score": 0.13430993258953094 }, { "image_id": 1622, "category_id": 1.0, "bbox": [ 24.497203826904297, 204.53652954101562, 23.34162712097168, 46.7376708984375 ], "score": 0.10779822617769241 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 603.0458450317383, 205.85882568359375, 24.310531616210938, 64.89852905273438 ], "score": 0.9595249891281128 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 581.4848709106445, 204.58474731445312, 21.204376220703125, 53.15643310546875 ], "score": 0.795454740524292 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 502.8981018066406, 206.12039184570312, 22.246246337890625, 59.523681640625 ], "score": 0.7857000827789307 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 80.42010307312012, 206.65997314453125, 26.333484649658203, 48.162353515625 ], "score": 0.6364076137542725 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 595.5521392822266, 206.35189819335938, 21.025772094726562, 57.20599365234375 ], "score": 0.31170037388801575 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 20.08441925048828, 195.40049743652344, 33.37688446044922, 69.94288635253906 ], "score": 0.2807565927505493 }, { "image_id": 1623, "category_id": 1.0, "bbox": [ 414.31060791015625, 202.72964477539062, 24.939727783203125, 40.607421875 ], "score": 0.15088039636611938 }, { "image_id": 1624, "category_id": 1.0, "bbox": [ 560.5203628540039, 215.93209838867188, 23.75244140625, 71.133544921875 ], "score": 0.9152458906173706 }, { "image_id": 1624, "category_id": 1.0, "bbox": [ 547.757453918457, 216.09776306152344, 24.40521240234375, 62.85585021972656 ], "score": 0.4549926519393921 }, { "image_id": 1624, "category_id": 1.0, "bbox": [ 499.1654968261719, 143.82330322265625, 43.03985595703125, 123.74807739257812 ], "score": 0.44966113567352295 }, { "image_id": 1624, "category_id": 1.0, "bbox": [ 429.2234802246094, 209.53201293945312, 23.234634399414062, 41.260284423828125 ], "score": 0.3011029362678528 }, { "image_id": 1624, "category_id": 1.0, "bbox": [ 548.3868789672852, 204.74847412109375, 32.901153564453125, 107.9608154296875 ], "score": 0.1535940170288086 }, { "image_id": 1625, "category_id": 1.0, "bbox": [ 611.0680770874023, 180.17001342773438, 24.32281494140625, 71.7452392578125 ], "score": 0.18815720081329346 }, { "image_id": 1625, "category_id": 1.0, "bbox": [ 14.629548788070679, 172.87339782714844, 33.390265703201294, 64.54742431640625 ], "score": 0.1710589975118637 }, { "image_id": 1625, "category_id": 1.0, "bbox": [ 436.16695404052734, 172.74343872070312, 22.004776000976562, 43.758697509765625 ], "score": 0.162642702460289 }, { "image_id": 1625, "category_id": 1.0, "bbox": [ 543.4466171264648, 120.20521545410156, 40.10520935058594, 117.64468383789062 ], "score": 0.13511890172958374 }, { "image_id": 1626, "category_id": 1.0, "bbox": [ 449.2464828491211, 217.87290954589844, 25.0933837890625, 40.93275451660156 ], "score": 0.4657658338546753 }, { "image_id": 1627, "category_id": 1.0, "bbox": [ 457.00206756591797, 216.1992950439453, 21.917266845703125, 41.63969421386719 ], "score": 0.5931306481361389 }, { "image_id": 1628, "category_id": 1.0, "bbox": [ 480.40042877197266, 218.3483123779297, 21.268310546875, 50.87715148925781 ], "score": 0.9894618988037109 }, { "image_id": 1629, "category_id": 1.0, "bbox": [ 562.8746032714844, 214.052978515625, 32.69111633300781, 72.03622436523438 ], "score": 0.9575744867324829 }, { "image_id": 1629, "category_id": 1.0, "bbox": [ 577.0139694213867, 220.1431884765625, 27.597503662109375, 65.06832885742188 ], "score": 0.7006270885467529 }, { "image_id": 1630, "category_id": 1.0, "bbox": [ 384.49962615966797, 216.51602172851562, 21.377182006835938, 50.281524658203125 ], "score": 0.9044189453125 }, { "image_id": 1630, "category_id": 1.0, "bbox": [ 399.84764099121094, 216.7072296142578, 21.9384765625, 51.68583679199219 ], "score": 0.6500797867774963 }, { "image_id": 1631, "category_id": 1.0, "bbox": [ 411.204833984375, 216.64031982421875, 20.623931884765625, 53.263641357421875 ], "score": 0.978526771068573 }, { "image_id": 1631, "category_id": 1.0, "bbox": [ 430.0080108642578, 220.27249145507812, 19.892044067382812, 52.7257080078125 ], "score": 0.8187038898468018 }, { "image_id": 1631, "category_id": 1.0, "bbox": [ 3.2214784622192383, 218.32772827148438, 52.115960121154785, 122.20513916015625 ], "score": 0.11291463673114777 }, { "image_id": 1632, "category_id": 1.0, "bbox": [ 416.23046875, 214.9612579345703, 21.904220581054688, 58.44932556152344 ], "score": 0.9654672741889954 }, { "image_id": 1632, "category_id": 1.0, "bbox": [ 432.8641128540039, 218.145263671875, 22.816085815429688, 58.573516845703125 ], "score": 0.7999891042709351 }, { "image_id": 1633, "category_id": 1.0, "bbox": [ 429.7921371459961, 224.9967498779297, 24.066543579101562, 66.41954040527344 ], "score": 0.9965895414352417 }, { "image_id": 1633, "category_id": 1.0, "bbox": [ 449.1861343383789, 222.46202087402344, 22.986068725585938, 65.09107971191406 ], "score": 0.9385494589805603 }, { "image_id": 1633, "category_id": 1.0, "bbox": [ 439.5405960083008, 223.20928955078125, 22.48382568359375, 60.154632568359375 ], "score": 0.15651753544807434 }, { "image_id": 1634, "category_id": 1.0, "bbox": [ 474.55528259277344, 215.8841552734375, 30.54107666015625, 73.01263427734375 ], "score": 0.9710609316825867 }, { "image_id": 1635, "category_id": 1.0, "bbox": [ 508.4764862060547, 214.4100341796875, 42.17597961425781, 101.3466796875 ], "score": 0.9722079038619995 }, { "image_id": 1635, "category_id": 1.0, "bbox": [ 526.2090301513672, 228.63156127929688, 26.327133178710938, 76.46429443359375 ], "score": 0.1284312605857849 }, { "image_id": 1636, "category_id": 1.0, "bbox": [ 575.8213424682617, 218.87881469726562, 47.45338439941406, 116.05377197265625 ], "score": 0.986875057220459 }, { "image_id": 1637, "category_id": 1.0, "bbox": [ 217.75510787963867, 179.9376220703125, 32.328033447265625, 83.31396484375 ], "score": 0.40278634428977966 }, { "image_id": 1637, "category_id": 1.0, "bbox": [ 375.27565002441406, 202.8628692626953, 18.855514526367188, 34.286041259765625 ], "score": 0.114070825278759 }, { "image_id": 1638, "category_id": 1.0, "bbox": [ 194.76123809814453, 191.85675048828125, 28.7017822265625, 81.09637451171875 ], "score": 0.19228743016719818 }, { "image_id": 1639, "category_id": 1.0, "bbox": [ 218.93482208251953, 269.3238525390625, 20.541534423828125, 39.4793701171875 ], "score": 0.2509904205799103 }, { "image_id": 1639, "category_id": 1.0, "bbox": [ 358.25599670410156, 206.41236877441406, 19.932708740234375, 44.44329833984375 ], "score": 0.2399166375398636 }, { "image_id": 1639, "category_id": 1.0, "bbox": [ 173.07989120483398, 196.05081176757812, 31.195945739746094, 81.953857421875 ], "score": 0.1518387794494629 }, { "image_id": 1640, "category_id": 1.0, "bbox": [ 355.2079391479492, 206.68594360351562, 19.852523803710938, 45.448822021484375 ], "score": 0.32372742891311646 }, { "image_id": 1641, "category_id": 1.0, "bbox": [ 360.91800689697266, 207.83010864257812, 19.944000244140625, 41.932220458984375 ], "score": 0.3195498287677765 }, { "image_id": 1642, "category_id": 1.0, "bbox": [ 366.76021575927734, 199.70523071289062, 21.00738525390625, 44.752777099609375 ], "score": 0.559848427772522 }, { "image_id": 1643, "category_id": 1.0, "bbox": [ 376.37889862060547, 207.0150146484375, 18.633499145507812, 37.895904541015625 ], "score": 0.41885045170783997 }, { "image_id": 1644, "category_id": 1.0, "bbox": [ 378.1970977783203, 205.45779418945312, 19.150161743164062, 38.117919921875 ], "score": 0.2624823749065399 }, { "image_id": 1645, "category_id": 1.0, "bbox": [ 375.95531463623047, 207.1331024169922, 18.134918212890625, 37.43890380859375 ], "score": 0.3452415466308594 }, { "image_id": 1646, "category_id": 1.0, "bbox": [ 374.28333282470703, 205.7383270263672, 19.211349487304688, 40.846466064453125 ], "score": 0.17382249236106873 }, { "image_id": 1647, "category_id": 1.0, "bbox": [ 370.7101058959961, 212.45858764648438, 21.214675903320312, 32.194122314453125 ], "score": 0.1139112263917923 }, { "image_id": 1648, "category_id": 1.0, "bbox": [ 367.3737335205078, 208.11175537109375, 25.572967529296875, 35.953643798828125 ], "score": 0.15284672379493713 }, { "image_id": 1650, "category_id": 1.0, "bbox": [ 369.92923736572266, 205.7233123779297, 17.674331665039062, 34.915069580078125 ], "score": 0.15099966526031494 }, { "image_id": 1652, "category_id": 1.0, "bbox": [ 193.17449569702148, 190.06552124023438, 33.011932373046875, 91.71417236328125 ], "score": 0.45637989044189453 }, { "image_id": 1652, "category_id": 1.0, "bbox": [ 84.38191413879395, 241.85047912597656, 28.972129821777344, 73.81321716308594 ], "score": 0.2030079960823059 }, { "image_id": 1653, "category_id": 1.0, "bbox": [ 112.61191368103027, 219.5425567626953, 23.398780822753906, 59.29356384277344 ], "score": 0.5690574049949646 }, { "image_id": 1653, "category_id": 1.0, "bbox": [ 243.30764770507812, 284.5959167480469, 20.827178955078125, 44.2423095703125 ], "score": 0.3447102904319763 }, { "image_id": 1653, "category_id": 1.0, "bbox": [ 206.17515563964844, 206.0565643310547, 32.48394012451172, 72.20765686035156 ], "score": 0.12395133078098297 }, { "image_id": 1654, "category_id": 1.0, "bbox": [ 242.90203094482422, 284.4214172363281, 20.17620086669922, 45.6561279296875 ], "score": 0.14491146802902222 }, { "image_id": 1655, "category_id": 1.0, "bbox": [ 229.59100723266602, 284.04583740234375, 24.046554565429688, 51.66546630859375 ], "score": 0.1854608654975891 }, { "image_id": 1656, "category_id": 1.0, "bbox": [ 215.58298110961914, 294.5151062011719, 23.33171844482422, 56.872802734375 ], "score": 0.14959953725337982 }, { "image_id": 1656, "category_id": 1.0, "bbox": [ 373.0733108520508, 213.790771484375, 17.42919921875, 32.394287109375 ], "score": 0.12253473699092865 }, { "image_id": 1657, "category_id": 1.0, "bbox": [ 370.3005599975586, 206.42755126953125, 15.752410888671875, 35.104949951171875 ], "score": 0.13460232317447662 }, { "image_id": 1658, "category_id": 1.0, "bbox": [ 371.5462112426758, 211.93836975097656, 16.719284057617188, 37.86846923828125 ], "score": 0.18777625262737274 }, { "image_id": 1659, "category_id": 1.0, "bbox": [ 368.8445281982422, 209.75051879882812, 20.46173095703125, 31.289825439453125 ], "score": 0.11043986678123474 }, { "image_id": 1660, "category_id": 1.0, "bbox": [ 367.6792526245117, 202.49932861328125, 19.918212890625, 44.095428466796875 ], "score": 0.2768937647342682 }, { "image_id": 1660, "category_id": 1.0, "bbox": [ 71.5859842300415, 245.98634338378906, 42.262606620788574, 112.34831237792969 ], "score": 0.2041681706905365 }, { "image_id": 1661, "category_id": 1.0, "bbox": [ 368.38706970214844, 205.8257293701172, 19.204635620117188, 41.96282958984375 ], "score": 0.28930363059043884 }, { "image_id": 1661, "category_id": 1.0, "bbox": [ 31.877899169921875, 257.9599304199219, 46.223249435424805, 123.74542236328125 ], "score": 0.15051357448101044 }, { "image_id": 1662, "category_id": 1.0, "bbox": [ 367.7654266357422, 207.86489868164062, 20.0628662109375, 37.423187255859375 ], "score": 0.14556589722633362 }, { "image_id": 1663, "category_id": 1.0, "bbox": [ 374.8504638671875, 209.07998657226562, 17.259597778320312, 40.073272705078125 ], "score": 0.17837238311767578 }, { "image_id": 1664, "category_id": 1.0, "bbox": [ 377.64503479003906, 207.633544921875, 18.681106567382812, 38.583465576171875 ], "score": 0.10864624381065369 }, { "image_id": 1665, "category_id": 1.0, "bbox": [ 375.00247955322266, 206.92381286621094, 19.29229736328125, 41.31646728515625 ], "score": 0.1730995625257492 }, { "image_id": 1678, "category_id": 1.0, "bbox": [ 578.021240234375, 213.93170166015625, 50.80970764160156, 149.3804931640625 ], "score": 0.5101862549781799 }, { "image_id": 1679, "category_id": 1.0, "bbox": [ 601.1943054199219, 229.16976928710938, 30.022735595703125, 108.2315673828125 ], "score": 0.8805739879608154 }, { "image_id": 1679, "category_id": 1.0, "bbox": [ 543.9189147949219, 212.79336547851562, 51.277313232421875, 131.7564697265625 ], "score": 0.6264050602912903 }, { "image_id": 1680, "category_id": 1.0, "bbox": [ 573.1848907470703, 211.62005615234375, 41.30897521972656, 115.0616455078125 ], "score": 0.9960026741027832 }, { "image_id": 1680, "category_id": 1.0, "bbox": [ 524.9716567993164, 216.16468811035156, 48.51783752441406, 114.79243469238281 ], "score": 0.9802207946777344 }, { "image_id": 1681, "category_id": 1.0, "bbox": [ 547.4097442626953, 210.93603515625, 37.8289794921875, 110.69854736328125 ], "score": 0.9970541596412659 }, { "image_id": 1681, "category_id": 1.0, "bbox": [ 512.8720474243164, 221.38006591796875, 38.5589599609375, 96.46343994140625 ], "score": 0.9518011212348938 }, { "image_id": 1682, "category_id": 1.0, "bbox": [ 529.4698715209961, 217.32525634765625, 30.366897583007812, 85.4691162109375 ], "score": 0.9939556121826172 }, { "image_id": 1682, "category_id": 1.0, "bbox": [ 503.9759063720703, 214.9581756591797, 34.38148498535156, 92.59782409667969 ], "score": 0.9870412349700928 }, { "image_id": 1682, "category_id": 1.0, "bbox": [ 480.2050018310547, 146.47760009765625, 30.515213012695312, 73.9788818359375 ], "score": 0.1016293466091156 }, { "image_id": 1683, "category_id": 1.0, "bbox": [ 491.58557891845703, 216.5562744140625, 28.221206665039062, 81.8740234375 ], "score": 0.9813653230667114 }, { "image_id": 1683, "category_id": 1.0, "bbox": [ 511.93946838378906, 225.09771728515625, 25.050201416015625, 69.66351318359375 ], "score": 0.9280471801757812 }, { "image_id": 1684, "category_id": 1.0, "bbox": [ 498.7464904785156, 225.81719970703125, 26.196212768554688, 62.099853515625 ], "score": 0.9740279316902161 }, { "image_id": 1684, "category_id": 1.0, "bbox": [ 475.2046203613281, 217.05001831054688, 28.803253173828125, 72.30538940429688 ], "score": 0.8636680245399475 }, { "image_id": 1684, "category_id": 1.0, "bbox": [ 486.6783905029297, 221.11288452148438, 28.894729614257812, 68.38458251953125 ], "score": 0.37788206338882446 }, { "image_id": 1685, "category_id": 1.0, "bbox": [ 486.34559631347656, 223.99130249023438, 26.4398193359375, 63.684112548828125 ], "score": 0.9911025166511536 }, { "image_id": 1685, "category_id": 1.0, "bbox": [ 461.92237854003906, 217.22991943359375, 26.9781494140625, 70.82308959960938 ], "score": 0.9852864742279053 }, { "image_id": 1686, "category_id": 1.0, "bbox": [ 452.9474639892578, 215.80734252929688, 27.533721923828125, 69.076416015625 ], "score": 0.9934343099594116 }, { "image_id": 1686, "category_id": 1.0, "bbox": [ 478.35914611816406, 220.31686401367188, 24.598312377929688, 64.70907592773438 ], "score": 0.9765350818634033 }, { "image_id": 1687, "category_id": 1.0, "bbox": [ 442.89737701416016, 213.81732177734375, 28.58642578125, 64.60580444335938 ], "score": 0.9976533055305481 }, { "image_id": 1687, "category_id": 1.0, "bbox": [ 467.05482482910156, 219.159912109375, 26.4324951171875, 64.37225341796875 ], "score": 0.939620316028595 }, { "image_id": 1688, "category_id": 1.0, "bbox": [ 438.7954330444336, 211.2821044921875, 26.449050903320312, 71.92654418945312 ], "score": 0.9857193231582642 }, { "image_id": 1688, "category_id": 1.0, "bbox": [ 458.2914352416992, 215.77386474609375, 27.406997680664062, 67.3076171875 ], "score": 0.9300557374954224 }, { "image_id": 1689, "category_id": 1.0, "bbox": [ 436.13746643066406, 212.41525268554688, 24.1119384765625, 62.409271240234375 ], "score": 0.9934816360473633 }, { "image_id": 1689, "category_id": 1.0, "bbox": [ 455.9498596191406, 217.84703063964844, 25.479736328125, 61.37312316894531 ], "score": 0.9802632331848145 }, { "image_id": 1690, "category_id": 1.0, "bbox": [ 427.1095657348633, 216.11236572265625, 23.021163940429688, 55.14208984375 ], "score": 0.9664522409439087 }, { "image_id": 1690, "category_id": 1.0, "bbox": [ 447.9713439941406, 215.59475708007812, 23.146896362304688, 59.342010498046875 ], "score": 0.9646928310394287 }, { "image_id": 1690, "category_id": 1.0, "bbox": [ 485.86421966552734, 148.54771423339844, 25.232086181640625, 59.59033203125 ], "score": 0.11079215258359909 }, { "image_id": 1691, "category_id": 1.0, "bbox": [ 417.8658676147461, 216.01043701171875, 24.916534423828125, 51.7945556640625 ], "score": 0.9855406284332275 }, { "image_id": 1691, "category_id": 1.0, "bbox": [ 442.33314514160156, 217.56304931640625, 23.199081420898438, 54.376251220703125 ], "score": 0.9681911468505859 }, { "image_id": 1691, "category_id": 1.0, "bbox": [ 431.2888717651367, 218.15614318847656, 25.105819702148438, 51.00434875488281 ], "score": 0.2026951014995575 }, { "image_id": 1692, "category_id": 1.0, "bbox": [ 418.93516540527344, 216.43869018554688, 19.975509643554688, 49.345458984375 ], "score": 0.7329213619232178 }, { "image_id": 1692, "category_id": 1.0, "bbox": [ 434.0556335449219, 215.3728790283203, 20.809173583984375, 50.44697570800781 ], "score": 0.3696729838848114 }, { "image_id": 1693, "category_id": 1.0, "bbox": [ 416.39041900634766, 216.48123168945312, 20.189285278320312, 45.681549072265625 ], "score": 0.3295087516307831 }, { "image_id": 1693, "category_id": 1.0, "bbox": [ 426.4792251586914, 216.34036254882812, 19.566192626953125, 46.06890869140625 ], "score": 0.32528752088546753 }, { "image_id": 1694, "category_id": 1.0, "bbox": [ 407.7756118774414, 216.6068572998047, 20.72509765625, 45.29896545410156 ], "score": 0.6996130347251892 }, { "image_id": 1694, "category_id": 1.0, "bbox": [ 417.4596405029297, 215.82962036132812, 21.681060791015625, 46.32623291015625 ], "score": 0.38351842761039734 }, { "image_id": 1695, "category_id": 1.0, "bbox": [ 401.74171447753906, 213.2474365234375, 20.67474365234375, 48.4364013671875 ], "score": 0.7994758486747742 }, { "image_id": 1695, "category_id": 1.0, "bbox": [ 419.4272232055664, 209.370361328125, 19.30908203125, 50.1456298828125 ], "score": 0.37053728103637695 }, { "image_id": 1696, "category_id": 1.0, "bbox": [ 413.84937286376953, 215.3810577392578, 21.597213745117188, 43.39543151855469 ], "score": 0.45851248502731323 }, { "image_id": 1696, "category_id": 1.0, "bbox": [ 397.8983688354492, 213.68316650390625, 20.468215942382812, 47.181121826171875 ], "score": 0.2571515440940857 }, { "image_id": 1697, "category_id": 1.0, "bbox": [ 391.8832778930664, 212.62930297851562, 22.823410034179688, 44.083343505859375 ], "score": 0.38033753633499146 }, { "image_id": 1697, "category_id": 1.0, "bbox": [ 407.91980743408203, 210.96343994140625, 21.885528564453125, 45.163360595703125 ], "score": 0.16777215898036957 }, { "image_id": 1698, "category_id": 1.0, "bbox": [ 403.73851776123047, 214.5156707763672, 21.469039916992188, 41.81636047363281 ], "score": 0.23625655472278595 }, { "image_id": 1698, "category_id": 1.0, "bbox": [ 390.9455871582031, 212.37554931640625, 20.903778076171875, 43.443603515625 ], "score": 0.20320504903793335 }, { "image_id": 1699, "category_id": 1.0, "bbox": [ 388.09059143066406, 214.83792114257812, 27.657394409179688, 42.295745849609375 ], "score": 0.12177188694477081 }, { "image_id": 1699, "category_id": 1.0, "bbox": [ 400.6941604614258, 211.7803192138672, 21.742782592773438, 42.8284912109375 ], "score": 0.10481631755828857 }, { "image_id": 1700, "category_id": 1.0, "bbox": [ 384.91302490234375, 213.600830078125, 20.570526123046875, 41.7557373046875 ], "score": 0.2246238887310028 }, { "image_id": 1700, "category_id": 1.0, "bbox": [ 401.68174743652344, 209.86557006835938, 18.691253662109375, 41.30950927734375 ], "score": 0.16243697702884674 }, { "image_id": 1701, "category_id": 1.0, "bbox": [ 390.80989837646484, 214.5660400390625, 26.5191650390625, 37.5718994140625 ], "score": 0.1386043280363083 }, { "image_id": 1702, "category_id": 1.0, "bbox": [ 481.75270080566406, 144.544189453125, 30.305099487304688, 76.78738403320312 ], "score": 0.1395551860332489 }, { "image_id": 1702, "category_id": 1.0, "bbox": [ 377.11734771728516, 209.50555419921875, 19.01214599609375, 46.123199462890625 ], "score": 0.11254122108221054 }, { "image_id": 1703, "category_id": 1.0, "bbox": [ 381.9119644165039, 216.24594116210938, 25.16448974609375, 34.435394287109375 ], "score": 0.13882099092006683 }, { "image_id": 1703, "category_id": 1.0, "bbox": [ 376.5525817871094, 213.77389526367188, 19.527740478515625, 41.535400390625 ], "score": 0.10547520220279694 }, { "image_id": 1704, "category_id": 1.0, "bbox": [ 378.23143005371094, 208.18751525878906, 20.215072631835938, 47.82926940917969 ], "score": 0.1125931590795517 }, { "image_id": 1705, "category_id": 1.0, "bbox": [ 378.58875274658203, 209.48782348632812, 19.128341674804688, 46.9573974609375 ], "score": 0.10402932018041611 }, { "image_id": 1706, "category_id": 1.0, "bbox": [ 376.1393356323242, 206.1009979248047, 21.064987182617188, 46.417388916015625 ], "score": 0.360647976398468 }, { "image_id": 1707, "category_id": 1.0, "bbox": [ 375.1918029785156, 210.69683837890625, 20.659713745117188, 41.944488525390625 ], "score": 0.191756933927536 }, { "image_id": 1709, "category_id": 1.0, "bbox": [ 381.9878387451172, 212.9425506591797, 19.442977905273438, 40.57208251953125 ], "score": 0.10681155323982239 }, { "image_id": 1710, "category_id": 1.0, "bbox": [ 385.12805938720703, 214.7119140625, 21.079635620117188, 42.500579833984375 ], "score": 0.41933417320251465 }, { "image_id": 1711, "category_id": 1.0, "bbox": [ 390.6906509399414, 216.38648986816406, 24.054794311523438, 35.476226806640625 ], "score": 0.1942116916179657 }, { "image_id": 1711, "category_id": 1.0, "bbox": [ 59.12312984466553, 213.63214111328125, 52.63796329498291, 157.371337890625 ], "score": 0.17926755547523499 }, { "image_id": 1712, "category_id": 1.0, "bbox": [ 314.91281509399414, 235.4303741455078, 20.675907135009766, 52.73725891113281 ], "score": 0.46903103590011597 }, { "image_id": 1712, "category_id": 1.0, "bbox": [ 393.83758544921875, 219.3345947265625, 23.849105834960938, 32.1854248046875 ], "score": 0.3289984464645386 }, { "image_id": 1712, "category_id": 1.0, "bbox": [ 225.5156135559082, 279.3638000488281, 25.426673889160156, 50.79693603515625 ], "score": 0.32657039165496826 }, { "image_id": 1712, "category_id": 1.0, "bbox": [ 92.54881858825684, 216.51058959960938, 40.23475646972656, 131.20404052734375 ], "score": 0.1668812483549118 }, { "image_id": 1712, "category_id": 1.0, "bbox": [ 564.8842239379883, 309.8692626953125, 30.3436279296875, 83.5867919921875 ], "score": 0.12925057113170624 }, { "image_id": 1713, "category_id": 1.0, "bbox": [ 315.72914123535156, 226.33541870117188, 23.172149658203125, 52.453033447265625 ], "score": 0.4247344136238098 }, { "image_id": 1713, "category_id": 1.0, "bbox": [ 238.21361541748047, 271.8503112792969, 22.079620361328125, 49.98486328125 ], "score": 0.32371634244918823 }, { "image_id": 1713, "category_id": 1.0, "bbox": [ 406.35581970214844, 218.37527465820312, 24.970703125, 41.774749755859375 ], "score": 0.2611902356147766 }, { "image_id": 1714, "category_id": 1.0, "bbox": [ 414.9739074707031, 214.1699676513672, 22.164688110351562, 51.13539123535156 ], "score": 0.5799239873886108 }, { "image_id": 1715, "category_id": 1.0, "bbox": [ 438.26976776123047, 218.50502014160156, 22.646484375, 40.57911682128906 ], "score": 0.5069652795791626 }, { "image_id": 1715, "category_id": 1.0, "bbox": [ 157.72485733032227, 215.62965393066406, 34.30858612060547, 104.45280456542969 ], "score": 0.27141305804252625 }, { "image_id": 1716, "category_id": 1.0, "bbox": [ 438.2501220703125, 225.0440673828125, 18.611679077148438, 42.26605224609375 ], "score": 0.30396735668182373 }, { "image_id": 1716, "category_id": 1.0, "bbox": [ 151.0995578765869, 220.26039123535156, 35.8115291595459, 104.09593200683594 ], "score": 0.12619954347610474 }, { "image_id": 1717, "category_id": 1.0, "bbox": [ 468.9747619628906, 217.67112731933594, 27.572097778320312, 73.03004455566406 ], "score": 0.9770479798316956 }, { "image_id": 1717, "category_id": 1.0, "bbox": [ 487.7154541015625, 217.6046142578125, 22.141799926757812, 72.065185546875 ], "score": 0.6773219704627991 }, { "image_id": 1717, "category_id": 1.0, "bbox": [ 159.23158645629883, 221.64390563964844, 31.53636932373047, 87.64881896972656 ], "score": 0.11538191139698029 }, { "image_id": 1718, "category_id": 1.0, "bbox": [ 536.7387390136719, 217.73577880859375, 36.1492919921875, 90.008544921875 ], "score": 0.8877238631248474 }, { "image_id": 1718, "category_id": 1.0, "bbox": [ 559.5038604736328, 215.67555236816406, 24.964752197265625, 71.57975769042969 ], "score": 0.32541602849960327 }, { "image_id": 1719, "category_id": 1.0, "bbox": [ 287.5736999511719, 184.61582946777344, 23.926124572753906, 59.27972412109375 ], "score": 0.22687996923923492 }, { "image_id": 1720, "category_id": 1.0, "bbox": [ 116.29511833190918, 228.47647094726562, 37.07796096801758, 103.99359130859375 ], "score": 0.11656823754310608 }, { "image_id": 1721, "category_id": 1.0, "bbox": [ 216.7454719543457, 262.3580627441406, 21.45374298095703, 41.99676513671875 ], "score": 0.29859596490859985 }, { "image_id": 1721, "category_id": 1.0, "bbox": [ 550.4695510864258, 118.89509582519531, 44.10392761230469, 86.36795043945312 ], "score": 0.14261697232723236 }, { "image_id": 1722, "category_id": 1.0, "bbox": [ 211.37313842773438, 273.805908203125, 20.168685913085938, 49.356689453125 ], "score": 0.45155566930770874 }, { "image_id": 1723, "category_id": 1.0, "bbox": [ 102.78874397277832, 267.63330078125, 29.29241180419922, 57.3321533203125 ], "score": 0.4258984327316284 }, { "image_id": 1723, "category_id": 1.0, "bbox": [ 201.08882904052734, 270.2008972167969, 23.10882568359375, 50.83258056640625 ], "score": 0.13799917697906494 }, { "image_id": 1724, "category_id": 1.0, "bbox": [ 104.55264091491699, 220.8144989013672, 40.435523986816406, 102.62699890136719 ], "score": 0.31434303522109985 }, { "image_id": 1724, "category_id": 1.0, "bbox": [ 189.80262756347656, 292.7342224121094, 24.415435791015625, 49.750244140625 ], "score": 0.19058479368686676 }, { "image_id": 1725, "category_id": 1.0, "bbox": [ 181.28019332885742, 294.7836608886719, 25.50628662109375, 57.49212646484375 ], "score": 0.31522804498672485 }, { "image_id": 1731, "category_id": 1.0, "bbox": [ 525.420036315918, 216.975830078125, 39.28192138671875, 42.6771240234375 ], "score": 0.10218939930200577 }, { "image_id": 1732, "category_id": 1.0, "bbox": [ 14.453346729278564, 222.99891662597656, 45.59394598007202, 87.85899353027344 ], "score": 0.11017712950706482 }, { "image_id": 1733, "category_id": 1.0, "bbox": [ 15.087215900421143, 215.30633544921875, 43.445308208465576, 77.81903076171875 ], "score": 0.10864706337451935 }, { "image_id": 1736, "category_id": 1.0, "bbox": [ 436.47090911865234, 229.43557739257812, 19.618453979492188, 42.674163818359375 ], "score": 0.18810316920280457 }, { "image_id": 1744, "category_id": 1.0, "bbox": [ 188.41856002807617, 191.12283325195312, 41.37504577636719, 119.51947021484375 ], "score": 0.1032290905714035 }, { "image_id": 1749, "category_id": 1.0, "bbox": [ 223.26229095458984, 253.5259246826172, 23.457603454589844, 41.58406066894531 ], "score": 0.10304147005081177 }, { "image_id": 1753, "category_id": 1.0, "bbox": [ 27.337985038757324, 212.09481811523438, 41.74360275268555, 82.25628662109375 ], "score": 0.37713396549224854 }, { "image_id": 1758, "category_id": 1.0, "bbox": [ 61.43069267272949, 199.24179077148438, 36.88859939575195, 87.75616455078125 ], "score": 0.10487956553697586 }, { "image_id": 1763, "category_id": 1.0, "bbox": [ 144.06736373901367, 230.65203857421875, 30.332565307617188, 73.0076904296875 ], "score": 0.2476419061422348 }, { "image_id": 1763, "category_id": 1.0, "bbox": [ 55.791382789611816, 204.29196166992188, 29.091992378234863, 38.14337158203125 ], "score": 0.1111416220664978 }, { "image_id": 1764, "category_id": 1.0, "bbox": [ 108.33251953125, 226.93214416503906, 39.967079162597656, 97.44068908691406 ], "score": 0.3130902647972107 }, { "image_id": 1766, "category_id": 1.0, "bbox": [ 46.38359546661377, 198.44662475585938, 23.58210563659668, 42.29522705078125 ], "score": 0.11358529329299927 }, { "image_id": 1772, "category_id": 1.0, "bbox": [ 228.22040557861328, 260.1186218261719, 33.71906280517578, 80.2630615234375 ], "score": 0.14933553338050842 }, { "image_id": 1775, "category_id": 1.0, "bbox": [ 521.9804382324219, 276.6790466308594, 30.825881958007812, 59.61712646484375 ], "score": 0.10797303915023804 }, { "image_id": 1781, "category_id": 1.0, "bbox": [ 583.6112594604492, 215.1119842529297, 26.49749755859375, 51.46812438964844 ], "score": 0.24871742725372314 }, { "image_id": 1782, "category_id": 1.0, "bbox": [ 265.59736251831055, 297.33453369140625, 22.144775390625, 49.4295654296875 ], "score": 0.15172936022281647 }, { "image_id": 1783, "category_id": 1.0, "bbox": [ 563.423957824707, 221.8878936767578, 20.367202758789062, 41.36628723144531 ], "score": 0.15255416929721832 }, { "image_id": 1783, "category_id": 1.0, "bbox": [ 266.35536193847656, 291.5593566894531, 25.031776428222656, 50.7010498046875 ], "score": 0.1237257793545723 }, { "image_id": 1784, "category_id": 1.0, "bbox": [ 258.531494140625, 291.70404052734375, 26.319122314453125, 50.82489013671875 ], "score": 0.3196296691894531 }, { "image_id": 1785, "category_id": 1.0, "bbox": [ 249.85130310058594, 290.4386291503906, 22.435646057128906, 50.4136962890625 ], "score": 0.11682620644569397 }, { "image_id": 1786, "category_id": 1.0, "bbox": [ 240.86206436157227, 290.6921691894531, 23.705062866210938, 48.85919189453125 ], "score": 0.3705444633960724 }, { "image_id": 1786, "category_id": 1.0, "bbox": [ 403.33248138427734, 203.5121612548828, 22.508316040039062, 32.476409912109375 ], "score": 0.12394271790981293 }, { "image_id": 1787, "category_id": 1.0, "bbox": [ 233.97319793701172, 288.52874755859375, 23.0419921875, 49.82208251953125 ], "score": 0.3532208502292633 }, { "image_id": 1788, "category_id": 1.0, "bbox": [ 231.79166793823242, 286.60986328125, 21.786575317382812, 49.3277587890625 ], "score": 0.26262906193733215 }, { "image_id": 1789, "category_id": 1.0, "bbox": [ 228.7157440185547, 280.4876403808594, 24.155349731445312, 49.45074462890625 ], "score": 0.3826234042644501 }, { "image_id": 1789, "category_id": 1.0, "bbox": [ 66.77393436431885, 216.91319274902344, 31.636157035827637, 66.67295837402344 ], "score": 0.11221407353878021 }, { "image_id": 1790, "category_id": 1.0, "bbox": [ 230.25484085083008, 272.1712341308594, 21.037139892578125, 48.6611328125 ], "score": 0.2538334131240845 }, { "image_id": 1790, "category_id": 1.0, "bbox": [ 392.40867614746094, 203.95314025878906, 19.436874389648438, 33.38262939453125 ], "score": 0.14628571271896362 }, { "image_id": 1790, "category_id": 1.0, "bbox": [ 284.7179412841797, 250.01937866210938, 38.73260498046875, 91.30792236328125 ], "score": 0.10652080923318863 }, { "image_id": 1791, "category_id": 1.0, "bbox": [ 475.48797607421875, 200.8236541748047, 17.968826293945312, 46.590087890625 ], "score": 0.2824963927268982 }, { "image_id": 1791, "category_id": 1.0, "bbox": [ 238.01755905151367, 246.74945068359375, 42.61341094970703, 127.5162353515625 ], "score": 0.2719317674636841 }, { "image_id": 1792, "category_id": 1.0, "bbox": [ 490.17765045166016, 204.5906524658203, 20.11138916015625, 44.23583984375 ], "score": 0.26884129643440247 }, { "image_id": 1792, "category_id": 1.0, "bbox": [ 499.5106887817383, 204.80604553222656, 17.986679077148438, 44.695556640625 ], "score": 0.13565169274806976 }, { "image_id": 1792, "category_id": 1.0, "bbox": [ 404.04197692871094, 202.0396728515625, 23.338775634765625, 33.047027587890625 ], "score": 0.11325079202651978 }, { "image_id": 1793, "category_id": 1.0, "bbox": [ 512.8054809570312, 200.009033203125, 21.815261840820312, 51.355865478515625 ], "score": 0.8652049899101257 }, { "image_id": 1793, "category_id": 1.0, "bbox": [ 456.7910385131836, 200.267333984375, 21.71661376953125, 45.147735595703125 ], "score": 0.1711733043193817 }, { "image_id": 1793, "category_id": 1.0, "bbox": [ 420.5302429199219, 197.580810546875, 19.784088134765625, 36.862945556640625 ], "score": 0.10913193225860596 }, { "image_id": 1794, "category_id": 1.0, "bbox": [ 520.8998489379883, 206.14463806152344, 22.791976928710938, 51.86909484863281 ], "score": 0.5094543099403381 }, { "image_id": 1794, "category_id": 1.0, "bbox": [ 511.7911148071289, 208.94830322265625, 21.746749877929688, 48.678680419921875 ], "score": 0.46810975670814514 }, { "image_id": 1794, "category_id": 1.0, "bbox": [ 340.94825744628906, 206.98658752441406, 22.02972412109375, 45.20428466796875 ], "score": 0.20162349939346313 }, { "image_id": 1794, "category_id": 1.0, "bbox": [ 462.95745849609375, 200.61550903320312, 23.154296875, 49.303680419921875 ], "score": 0.1911524087190628 }, { "image_id": 1794, "category_id": 1.0, "bbox": [ 387.4509048461914, 208.55838012695312, 16.281661987304688, 32.428009033203125 ], "score": 0.13838456571102142 }, { "image_id": 1795, "category_id": 1.0, "bbox": [ 525.7949066162109, 204.19993591308594, 20.209503173828125, 55.21354675292969 ], "score": 0.7658894658088684 }, { "image_id": 1795, "category_id": 1.0, "bbox": [ 514.9030685424805, 208.738525390625, 18.776626586914062, 52.617767333984375 ], "score": 0.5193677544593811 }, { "image_id": 1795, "category_id": 1.0, "bbox": [ 336.9697570800781, 205.875732421875, 21.725540161132812, 40.8184814453125 ], "score": 0.27388066053390503 }, { "image_id": 1795, "category_id": 1.0, "bbox": [ 469.26361083984375, 204.76974487304688, 19.05731201171875, 50.640106201171875 ], "score": 0.2504239082336426 }, { "image_id": 1795, "category_id": 1.0, "bbox": [ 250.78981399536133, 204.10147094726562, 34.29645538330078, 66.36822509765625 ], "score": 0.10322579741477966 }, { "image_id": 1796, "category_id": 1.0, "bbox": [ 523.6833190917969, 207.40635681152344, 20.579452514648438, 52.18507385253906 ], "score": 0.9563114047050476 }, { "image_id": 1796, "category_id": 1.0, "bbox": [ 539.5455169677734, 202.30238342285156, 21.95159912109375, 56.68965148925781 ], "score": 0.7984570264816284 }, { "image_id": 1796, "category_id": 1.0, "bbox": [ 338.11580657958984, 209.8645782470703, 22.070465087890625, 45.043670654296875 ], "score": 0.36376291513442993 }, { "image_id": 1796, "category_id": 1.0, "bbox": [ 482.04517364501953, 199.5414581298828, 22.893447875976562, 50.7408447265625 ], "score": 0.31237515807151794 }, { "image_id": 1796, "category_id": 1.0, "bbox": [ 383.2802963256836, 195.28158569335938, 23.530120849609375, 44.223846435546875 ], "score": 0.16805726289749146 }, { "image_id": 1797, "category_id": 1.0, "bbox": [ 542.8224945068359, 203.99838256835938, 25.742874145507812, 57.488037109375 ], "score": 0.9943978786468506 }, { "image_id": 1797, "category_id": 1.0, "bbox": [ 498.65230560302734, 198.09310913085938, 24.726181030273438, 60.236297607421875 ], "score": 0.9937344789505005 }, { "image_id": 1797, "category_id": 1.0, "bbox": [ 533.5798263549805, 206.5305633544922, 21.7779541015625, 54.15019226074219 ], "score": 0.6613866090774536 }, { "image_id": 1797, "category_id": 1.0, "bbox": [ 347.3169708251953, 207.46255493164062, 21.61712646484375, 47.703521728515625 ], "score": 0.4864124655723572 }, { "image_id": 1797, "category_id": 1.0, "bbox": [ 443.34300994873047, 203.2740020751953, 15.820236206054688, 30.33026123046875 ], "score": 0.12198463082313538 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 549.1505813598633, 202.5041961669922, 26.785354614257812, 56.95155334472656 ], "score": 0.9740346670150757 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 354.4229507446289, 200.1357879638672, 21.874847412109375, 50.72705078125 ], "score": 0.8902331590652466 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 517.6400375366211, 198.70065307617188, 23.196029663085938, 54.95928955078125 ], "score": 0.7717236876487732 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 540.5835723876953, 202.34666442871094, 22.62939453125, 55.14912414550781 ], "score": 0.4357665777206421 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 456.4208221435547, 195.09988403320312, 19.34356689453125, 42.682708740234375 ], "score": 0.30436500906944275 }, { "image_id": 1798, "category_id": 1.0, "bbox": [ 443.7260055541992, 195.48944091796875, 23.032913208007812, 41.26251220703125 ], "score": 0.16107307374477386 }, { "image_id": 1799, "category_id": 1.0, "bbox": [ 361.0103225708008, 204.5029296875, 23.294906616210938, 50.011749267578125 ], "score": 0.8764487504959106 }, { "image_id": 1799, "category_id": 1.0, "bbox": [ 559.1357040405273, 207.10606384277344, 20.615234375, 58.13508605957031 ], "score": 0.7595999836921692 }, { "image_id": 1799, "category_id": 1.0, "bbox": [ 538.2868194580078, 209.2514190673828, 20.499420166015625, 50.67079162597656 ], "score": 0.42894792556762695 }, { "image_id": 1799, "category_id": 1.0, "bbox": [ 454.10465240478516, 202.19137573242188, 24.578475952148438, 38.98358154296875 ], "score": 0.1413937509059906 }, { "image_id": 1799, "category_id": 1.0, "bbox": [ 507.0304870605469, 200.9851531982422, 20.849533081054688, 41.728271484375 ], "score": 0.13463185727596283 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 459.9349594116211, 211.03945922851562, 24.847564697265625, 42.04364013671875 ], "score": 0.6699451208114624 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 480.77625274658203, 210.53530883789062, 20.708694458007812, 46.009521484375 ], "score": 0.617762565612793 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 515.6414031982422, 203.6434326171875, 35.833282470703125, 45.23883056640625 ], "score": 0.564713716506958 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 560.1666641235352, 218.28134155273438, 24.36737060546875, 62.523284912109375 ], "score": 0.3784632682800293 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 363.80443572998047, 213.11512756347656, 22.142868041992188, 51.56852722167969 ], "score": 0.3184148073196411 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 469.85809326171875, 206.76876831054688, 25.547256469726562, 45.18402099609375 ], "score": 0.23757997155189514 }, { "image_id": 1800, "category_id": 1.0, "bbox": [ 518.681526184082, 208.32994079589844, 55.03013610839844, 52.63362121582031 ], "score": 0.20702990889549255 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 565.1708984375, 212.56265258789062, 23.77197265625, 62.911376953125 ], "score": 0.9900534749031067 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 467.48607635498047, 212.98448181152344, 26.295623779296875, 42.662933349609375 ], "score": 0.9548971652984619 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 575.5191040039062, 211.0078125, 24.311141967773438, 68.77664184570312 ], "score": 0.930788516998291 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 528.292350769043, 207.11109924316406, 25.914993286132812, 39.132568359375 ], "score": 0.7212423086166382 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 497.2343444824219, 208.6037139892578, 18.66424560546875, 48.98387145996094 ], "score": 0.6113667488098145 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 479.52022552490234, 212.4459228515625, 22.24090576171875, 45.038787841796875 ], "score": 0.35665667057037354 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 543.1705474853516, 206.0312042236328, 23.817825317382812, 45.49493408203125 ], "score": 0.26384782791137695 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 366.29207611083984, 217.2432861328125, 25.173492431640625, 49.001312255859375 ], "score": 0.20980317890644073 }, { "image_id": 1801, "category_id": 1.0, "bbox": [ 583.5536575317383, 225.2910614013672, 24.434738159179688, 63.42460632324219 ], "score": 0.10607042908668518 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 573.6731338500977, 198.93475341796875, 26.620330810546875, 66.88662719726562 ], "score": 0.9913711547851562 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 364.80403900146484, 207.11355590820312, 25.2813720703125, 53.80145263671875 ], "score": 0.95073401927948 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 470.8778381347656, 201.6925048828125, 25.127105712890625, 45.298492431640625 ], "score": 0.942836582660675 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 605.500602722168, 212.2429656982422, 27.423248291015625, 67.60072326660156 ], "score": 0.8874297142028809 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 535.985107421875, 196.17312622070312, 25.101470947265625, 42.56707763671875 ], "score": 0.8026353120803833 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 505.4628372192383, 201.8245086669922, 21.141815185546875, 45.44622802734375 ], "score": 0.6936519742012024 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 548.3281326293945, 194.264404296875, 24.383773803710938, 45.601715087890625 ], "score": 0.49130427837371826 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 415.9010696411133, 206.55938720703125, 23.199691772460938, 59.6842041015625 ], "score": 0.33853209018707275 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 432.1750259399414, 200.0966033935547, 22.259368896484375, 56.11375427246094 ], "score": 0.24190589785575867 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 563.2610702514648, 198.4978790283203, 25.128021240234375, 62.65150451660156 ], "score": 0.13330590724945068 }, { "image_id": 1802, "category_id": 1.0, "bbox": [ 404.27074432373047, 212.66949462890625, 19.801712036132812, 58.087066650390625 ], "score": 0.1131887286901474 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 364.9467468261719, 207.4665069580078, 25.344009399414062, 61.11579895019531 ], "score": 0.9989810585975647 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 479.8212432861328, 207.5927276611328, 22.705230712890625, 45.446075439453125 ], "score": 0.9743151664733887 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 595.0794219970703, 202.57144165039062, 30.055694580078125, 65.78070068359375 ], "score": 0.9715332388877869 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 547.0935821533203, 197.6835174560547, 22.10174560546875, 47.762969970703125 ], "score": 0.9268020391464233 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 518.8438415527344, 202.5449676513672, 19.8651123046875, 43.232147216796875 ], "score": 0.8699578642845154 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 580.8829116821289, 205.6376953125, 26.759796142578125, 63.668060302734375 ], "score": 0.8687875270843506 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 570.5735778808594, 205.36634826660156, 26.20880126953125, 66.70747375488281 ], "score": 0.3837314248085022 }, { "image_id": 1803, "category_id": 1.0, "bbox": [ 558.080940246582, 200.14398193359375, 23.606796264648438, 46.054718017578125 ], "score": 0.3153972327709198 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 367.3196792602539, 205.9185791015625, 25.761260986328125, 67.84429931640625 ], "score": 0.9988222122192383 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 539.6650314331055, 196.24693298339844, 21.999740600585938, 54.16436767578125 ], "score": 0.9958878755569458 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 569.0739822387695, 190.2544403076172, 24.220199584960938, 59.65997314453125 ], "score": 0.9611586928367615 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 409.3477249145508, 213.9400634765625, 22.33062744140625, 72.39248657226562 ], "score": 0.639637291431427 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 584.6642684936523, 196.68637084960938, 27.052993774414062, 74.04986572265625 ], "score": 0.6056886911392212 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 604.5580291748047, 200.1988067626953, 26.13922119140625, 66.49534606933594 ], "score": 0.5016629099845886 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 493.1150817871094, 202.994140625, 24.111480712890625, 49.587158203125 ], "score": 0.34456339478492737 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 578.8858032226562, 190.43667602539062, 24.7509765625, 58.755096435546875 ], "score": 0.12017443776130676 }, { "image_id": 1804, "category_id": 1.0, "bbox": [ 551.2205123901367, 196.89170837402344, 22.7178955078125, 51.420562744140625 ], "score": 0.11280331015586853 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 413.0066680908203, 202.87838745117188, 28.93157958984375, 79.52886962890625 ], "score": 0.9971888065338135 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 576.1621856689453, 193.14080810546875, 22.849197387695312, 52.5885009765625 ], "score": 0.988366425037384 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 377.43560791015625, 200.58331298828125, 28.69781494140625, 80.14199829101562 ], "score": 0.9847464561462402 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 517.7128601074219, 199.08055114746094, 19.4989013671875, 46.7322998046875 ], "score": 0.9599504470825195 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 603.9284133911133, 192.66908264160156, 28.625564575195312, 85.15080261230469 ], "score": 0.8233113288879395 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 591.2121963500977, 198.4017333984375, 25.410003662109375, 56.470703125 ], "score": 0.40941447019577026 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 505.7673645019531, 203.8714141845703, 24.151687622070312, 44.5162353515625 ], "score": 0.1770574152469635 }, { "image_id": 1805, "category_id": 1.0, "bbox": [ 495.02758026123047, 205.98904418945312, 25.113983154296875, 43.304473876953125 ], "score": 0.14468134939670563 }, { "image_id": 1806, "category_id": 1.0, "bbox": [ 421.3047409057617, 198.22328186035156, 30.269851684570312, 89.32365417480469 ], "score": 0.9973413348197937 }, { "image_id": 1806, "category_id": 1.0, "bbox": [ 388.4379577636719, 201.66824340820312, 30.052261352539062, 79.2208251953125 ], "score": 0.9944629669189453 }, { "image_id": 1806, "category_id": 1.0, "bbox": [ 542.3545455932617, 197.74331665039062, 21.240692138671875, 48.790191650390625 ], "score": 0.7769094705581665 }, { "image_id": 1806, "category_id": 1.0, "bbox": [ 608.7958526611328, 186.9013671875, 22.3345947265625, 58.6248779296875 ], "score": 0.3670547306537628 }, { "image_id": 1806, "category_id": 1.0, "bbox": [ 399.8318099975586, 196.73098754882812, 32.653656005859375, 84.9366455078125 ], "score": 0.11441240459680557 }, { "image_id": 1807, "category_id": 1.0, "bbox": [ 569.1801834106445, 198.4151611328125, 23.586044311523438, 57.07421875 ], "score": 0.9990203976631165 }, { "image_id": 1807, "category_id": 1.0, "bbox": [ 432.68192291259766, 197.2767791748047, 34.525604248046875, 92.10578918457031 ], "score": 0.9918725490570068 }, { "image_id": 1807, "category_id": 1.0, "bbox": [ 404.81311798095703, 202.77740478515625, 35.34996032714844, 85.60006713867188 ], "score": 0.9391969442367554 }, { "image_id": 1807, "category_id": 1.0, "bbox": [ 418.0659866333008, 196.90359497070312, 35.33058166503906, 89.032958984375 ], "score": 0.2918269634246826 }, { "image_id": 1808, "category_id": 1.0, "bbox": [ 425.88687896728516, 208.6788330078125, 33.06327819824219, 92.79507446289062 ], "score": 0.9958528280258179 }, { "image_id": 1808, "category_id": 1.0, "bbox": [ 462.9536819458008, 195.8175048828125, 37.61375427246094, 118.0274658203125 ], "score": 0.9746614694595337 }, { "image_id": 1808, "category_id": 1.0, "bbox": [ 593.977165222168, 205.84490966796875, 20.132522583007812, 53.2044677734375 ], "score": 0.3799142837524414 }, { "image_id": 1809, "category_id": 1.0, "bbox": [ 495.1605987548828, 195.54652404785156, 46.798553466796875, 123.21354675292969 ], "score": 0.977393627166748 }, { "image_id": 1809, "category_id": 1.0, "bbox": [ 442.13260650634766, 200.92660522460938, 42.996673583984375, 108.20101928710938 ], "score": 0.9601298570632935 }, { "image_id": 1809, "category_id": 1.0, "bbox": [ 433.45947265625, 209.93666076660156, 31.536941528320312, 77.48588562011719 ], "score": 0.11234769970178604 }, { "image_id": 1810, "category_id": 1.0, "bbox": [ 468.4192657470703, 194.63037109375, 44.34700012207031, 127.12542724609375 ], "score": 0.9717457294464111 }, { "image_id": 1810, "category_id": 1.0, "bbox": [ 541.8111419677734, 192.65496826171875, 49.90074157714844, 148.89410400390625 ], "score": 0.6119285225868225 }, { "image_id": 1810, "category_id": 1.0, "bbox": [ 455.4976272583008, 192.6724090576172, 28.661575317382812, 77.75862121582031 ], "score": 0.4619635343551636 }, { "image_id": 1810, "category_id": 1.0, "bbox": [ 465.6036376953125, 199.4222412109375, 30.587387084960938, 89.05889892578125 ], "score": 0.10965439677238464 }, { "image_id": 1811, "category_id": 1.0, "bbox": [ 496.4072799682617, 195.44931030273438, 56.59446716308594, 159.346923828125 ], "score": 0.9724631309509277 }, { "image_id": 1811, "category_id": 1.0, "bbox": [ 594.1313934326172, 192.8981475830078, 39.204559326171875, 155.04966735839844 ], "score": 0.32713353633880615 }, { "image_id": 1811, "category_id": 1.0, "bbox": [ 103.43713760375977, 221.95330810546875, 24.38404083251953, 43.901519775390625 ], "score": 0.2008611559867859 }, { "image_id": 1812, "category_id": 1.0, "bbox": [ 540.6555557250977, 200.60064697265625, 63.75434875488281, 189.686767578125 ], "score": 0.9847478866577148 }, { "image_id": 1812, "category_id": 1.0, "bbox": [ 561.279296875, 247.4848175048828, 43.87245178222656, 119.33229064941406 ], "score": 0.2537585496902466 }, { "image_id": 1812, "category_id": 1.0, "bbox": [ 535.6998825073242, 206.3947296142578, 41.09375, 130.7556610107422 ], "score": 0.14847494661808014 }, { "image_id": 1814, "category_id": 1.0, "bbox": [ 569.6585083007812, 274.9330749511719, 40.79124450683594, 109.94537353515625 ], "score": 0.2518298029899597 }, { "image_id": 1815, "category_id": 1.0, "bbox": [ 152.8684902191162, 207.9090576171875, 38.640947341918945, 95.20254516601562 ], "score": 0.3655283451080322 }, { "image_id": 1815, "category_id": 1.0, "bbox": [ 390.9365463256836, 193.299072265625, 20.069732666015625, 41.159637451171875 ], "score": 0.10280590504407883 }, { "image_id": 1816, "category_id": 1.0, "bbox": [ 396.2217712402344, 198.56787109375, 22.770614624023438, 41.37445068359375 ], "score": 0.6144053936004639 }, { "image_id": 1816, "category_id": 1.0, "bbox": [ 434.0594482421875, 199.0426025390625, 19.85748291015625, 40.921356201171875 ], "score": 0.1277671605348587 }, { "image_id": 1816, "category_id": 1.0, "bbox": [ 50.747318267822266, 264.366943359375, 52.077131271362305, 107.248779296875 ], "score": 0.10693325847387314 }, { "image_id": 1817, "category_id": 1.0, "bbox": [ 401.3676071166992, 203.7832489013672, 21.63421630859375, 39.21990966796875 ], "score": 0.8230321407318115 }, { "image_id": 1819, "category_id": 1.0, "bbox": [ 459.6200942993164, 198.49871826171875, 21.363296508789062, 41.998779296875 ], "score": 0.782768964767456 }, { "image_id": 1819, "category_id": 1.0, "bbox": [ 422.64293670654297, 205.17327880859375, 22.503662109375, 45.795684814453125 ], "score": 0.27807796001434326 }, { "image_id": 1819, "category_id": 1.0, "bbox": [ 54.43876266479492, 189.204345703125, 64.63201522827148, 46.098175048828125 ], "score": 0.1032327264547348 }, { "image_id": 1820, "category_id": 1.0, "bbox": [ 474.63287353515625, 199.5418701171875, 19.535675048828125, 43.4456787109375 ], "score": 0.9328529238700867 }, { "image_id": 1820, "category_id": 1.0, "bbox": [ 434.78649139404297, 206.97230529785156, 19.778900146484375, 43.925750732421875 ], "score": 0.8912748098373413 }, { "image_id": 1820, "category_id": 1.0, "bbox": [ 164.8807716369629, 207.59877014160156, 45.332298278808594, 103.50065612792969 ], "score": 0.18821004033088684 }, { "image_id": 1820, "category_id": 1.0, "bbox": [ 450.9532928466797, 199.60597229003906, 20.994033813476562, 46.875152587890625 ], "score": 0.12284299731254578 }, { "image_id": 1821, "category_id": 1.0, "bbox": [ 441.01768493652344, 203.9518585205078, 21.700897216796875, 52.20887756347656 ], "score": 0.9960139989852905 }, { "image_id": 1821, "category_id": 1.0, "bbox": [ 455.9954833984375, 201.89266967773438, 22.3980712890625, 50.696624755859375 ], "score": 0.15422683954238892 }, { "image_id": 1822, "category_id": 1.0, "bbox": [ 447.90496826171875, 203.09751892089844, 24.98504638671875, 58.38728332519531 ], "score": 0.9990336894989014 }, { "image_id": 1822, "category_id": 1.0, "bbox": [ 483.3484649658203, 202.8044891357422, 21.569671630859375, 47.367279052734375 ], "score": 0.7200099229812622 }, { "image_id": 1823, "category_id": 1.0, "bbox": [ 453.94359588623047, 198.60037231445312, 25.95703125, 65.21270751953125 ], "score": 0.9985069036483765 }, { "image_id": 1823, "category_id": 1.0, "bbox": [ 488.53904724121094, 200.5359344482422, 21.754531860351562, 49.200439453125 ], "score": 0.9867638349533081 }, { "image_id": 1823, "category_id": 1.0, "bbox": [ 507.2466278076172, 197.3137969970703, 19.327239990234375, 48.215972900390625 ], "score": 0.9786052703857422 }, { "image_id": 1823, "category_id": 1.0, "bbox": [ 227.26945877075195, 262.9615173339844, 39.933128356933594, 114.38446044921875 ], "score": 0.1341727077960968 }, { "image_id": 1824, "category_id": 1.0, "bbox": [ 504.8629379272461, 199.70570373535156, 23.487396240234375, 56.111663818359375 ], "score": 0.9989637136459351 }, { "image_id": 1824, "category_id": 1.0, "bbox": [ 542.7887725830078, 198.79176330566406, 29.464645385742188, 69.79148864746094 ], "score": 0.9884012937545776 }, { "image_id": 1824, "category_id": 1.0, "bbox": [ 472.06531524658203, 206.28643798828125, 24.8046875, 67.22320556640625 ], "score": 0.9800976514816284 }, { "image_id": 1824, "category_id": 1.0, "bbox": [ 52.52568244934082, 202.40158081054688, 41.12135887145996, 102.57623291015625 ], "score": 0.4062611758708954 }, { "image_id": 1824, "category_id": 1.0, "bbox": [ 215.63385009765625, 271.32452392578125, 51.734771728515625, 123.48016357421875 ], "score": 0.12181822955608368 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 553.1375122070312, 193.56817626953125, 24.061203002929688, 68.72576904296875 ], "score": 0.9994408488273621 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 512.340087890625, 201.2473602294922, 29.358367919921875, 80.87257385253906 ], "score": 0.9939110279083252 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 67.11472511291504, 206.9587860107422, 35.242671966552734, 97.89955139160156 ], "score": 0.855948805809021 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 31.853172779083252, 206.0972900390625, 24.866950511932373, 64.16815185546875 ], "score": 0.4056755304336548 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 53.228349685668945, 203.89710998535156, 35.59248924255371, 97.93083190917969 ], "score": 0.2896627187728882 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 41.944289207458496, 205.94354248046875, 30.20615577697754, 72.8992919921875 ], "score": 0.20762643218040466 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 220.18796920776367, 256.5628662109375, 44.599952697753906, 89.20599365234375 ], "score": 0.1349775791168213 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 581.7914962768555, 199.09011840820312, 31.253280639648438, 50.37640380859375 ], "score": 0.12295674532651901 }, { "image_id": 1825, "category_id": 1.0, "bbox": [ 383.69384765625, 201.1636962890625, 20.675582885742188, 40.53729248046875 ], "score": 0.10357257723808289 }, { "image_id": 1826, "category_id": 1.0, "bbox": [ 590.391731262207, 196.5447235107422, 30.443115234375, 80.54649353027344 ], "score": 0.998698353767395 }, { "image_id": 1826, "category_id": 1.0, "bbox": [ 541.8622970581055, 202.73849487304688, 35.62225341796875, 91.928955078125 ], "score": 0.992916464805603 }, { "image_id": 1826, "category_id": 1.0, "bbox": [ 20.878915786743164, 216.61053466796875, 42.78042793273926, 110.9097900390625 ], "score": 0.9147249460220337 }, { "image_id": 1826, "category_id": 1.0, "bbox": [ 211.24404907226562, 245.08566284179688, 43.862266540527344, 110.66925048828125 ], "score": 0.23553566634655 }, { "image_id": 1826, "category_id": 1.0, "bbox": [ 386.9293212890625, 205.5276641845703, 19.157485961914062, 38.63238525390625 ], "score": 0.16239643096923828 }, { "image_id": 1827, "category_id": 1.0, "bbox": [ 583.6922454833984, 206.6324920654297, 42.596435546875, 97.30140686035156 ], "score": 0.9985663294792175 }, { "image_id": 1827, "category_id": 1.0, "bbox": [ 193.44072341918945, 252.89894104003906, 39.844627380371094, 96.61909484863281 ], "score": 0.18956275284290314 }, { "image_id": 1828, "category_id": 1.0, "bbox": [ 493.44226837158203, 210.6339569091797, 43.52882385253906, 137.41749572753906 ], "score": 0.17218773066997528 }, { "image_id": 1829, "category_id": 1.0, "bbox": [ 578.6872100830078, 197.71678161621094, 32.15423583984375, 56.5714111328125 ], "score": 0.16918613016605377 }, { "image_id": 1829, "category_id": 1.0, "bbox": [ 179.3755340576172, 276.7123107910156, 51.458778381347656, 87.57440185546875 ], "score": 0.10394781827926636 }, { "image_id": 1830, "category_id": 1.0, "bbox": [ 370.89710235595703, 166.07252502441406, 28.266677856445312, 86.30484008789062 ], "score": 0.2154267579317093 }, { "image_id": 1830, "category_id": 1.0, "bbox": [ 287.2764205932617, 225.5803680419922, 21.92333221435547, 52.58808898925781 ], "score": 0.11653463542461395 }, { "image_id": 1831, "category_id": 1.0, "bbox": [ 529.1040802001953, 195.68045043945312, 34.000244140625, 67.0196533203125 ], "score": 0.10462253540754318 }, { "image_id": 1832, "category_id": 1.0, "bbox": [ 404.1170883178711, 168.01406860351562, 29.121932983398438, 80.26651000976562 ], "score": 0.13723695278167725 }, { "image_id": 1832, "category_id": 1.0, "bbox": [ 424.19708251953125, 204.88473510742188, 21.896743774414062, 44.3916015625 ], "score": 0.1353072226047516 }, { "image_id": 1833, "category_id": 1.0, "bbox": [ 426.7984390258789, 204.6298828125, 20.1995849609375, 43.532806396484375 ], "score": 0.14342716336250305 }, { "image_id": 1834, "category_id": 1.0, "bbox": [ 459.07981872558594, 219.00262451171875, 30.281829833984375, 61.51641845703125 ], "score": 0.21900172531604767 }, { "image_id": 1834, "category_id": 1.0, "bbox": [ 425.8589172363281, 208.98548889160156, 25.192794799804688, 43.2333984375 ], "score": 0.11183173209428787 }, { "image_id": 1835, "category_id": 1.0, "bbox": [ 428.0081558227539, 159.11460876464844, 27.415618896484375, 94.29733276367188 ], "score": 0.21888239681720734 }, { "image_id": 1838, "category_id": 1.0, "bbox": [ 479.4046401977539, 222.93031311035156, 20.951614379882812, 43.79109191894531 ], "score": 0.6180891990661621 }, { "image_id": 1839, "category_id": 1.0, "bbox": [ 503.8233947753906, 218.0140380859375, 20.538406372070312, 47.255523681640625 ], "score": 0.7280665636062622 }, { "image_id": 1840, "category_id": 1.0, "bbox": [ 535.9430313110352, 205.51124572753906, 23.634033203125, 56.15733337402344 ], "score": 0.947092592716217 }, { "image_id": 1841, "category_id": 1.0, "bbox": [ 585.3549957275391, 215.93711853027344, 24.78607177734375, 61.97892761230469 ], "score": 0.9809489846229553 }, { "image_id": 1841, "category_id": 1.0, "bbox": [ 594.8511505126953, 218.63023376464844, 28.394927978515625, 58.94099426269531 ], "score": 0.6538801193237305 }, { "image_id": 1870, "category_id": 1.0, "bbox": [ 447.0515441894531, 233.02365112304688, 27.336807250976562, 52.88641357421875 ], "score": 0.12447232007980347 }, { "image_id": 1873, "category_id": 1.0, "bbox": [ 485.1105499267578, 228.4042205810547, 41.58760070800781, 89.48554992675781 ], "score": 0.7807663679122925 }, { "image_id": 1877, "category_id": 1.0, "bbox": [ 585.307731628418, 206.6177215576172, 28.768768310546875, 69.98066711425781 ], "score": 0.9531062245368958 }, { "image_id": 1878, "category_id": 1.0, "bbox": [ 572.0674896240234, 211.26522827148438, 29.24530029296875, 60.9874267578125 ], "score": 0.9170625805854797 }, { "image_id": 1878, "category_id": 1.0, "bbox": [ 113.9692211151123, 213.77365112304688, 35.9156608581543, 84.66888427734375 ], "score": 0.17024020850658417 }, { "image_id": 1879, "category_id": 1.0, "bbox": [ 561.0709381103516, 207.4327392578125, 24.291000366210938, 65.64605712890625 ], "score": 0.9806714057922363 }, { "image_id": 1880, "category_id": 1.0, "bbox": [ 552.1474838256836, 208.18539428710938, 24.637985229492188, 65.00189208984375 ], "score": 0.9858803749084473 }, { "image_id": 1881, "category_id": 1.0, "bbox": [ 543.2240295410156, 210.42701721191406, 23.545989990234375, 54.71159362792969 ], "score": 0.9932454824447632 }, { "image_id": 1882, "category_id": 1.0, "bbox": [ 536.0205459594727, 211.43804931640625, 22.861099243164062, 53.64080810546875 ], "score": 0.9486188888549805 }, { "image_id": 1883, "category_id": 1.0, "bbox": [ 535.6190872192383, 220.57766723632812, 22.524261474609375, 49.197784423828125 ], "score": 0.8328302502632141 }, { "image_id": 1883, "category_id": 1.0, "bbox": [ 524.5136642456055, 212.05868530273438, 40.600738525390625, 76.04922485351562 ], "score": 0.21285684406757355 }, { "image_id": 1884, "category_id": 1.0, "bbox": [ 542.7736282348633, 208.2239227294922, 24.282989501953125, 58.42179870605469 ], "score": 0.9960417747497559 }, { "image_id": 1885, "category_id": 1.0, "bbox": [ 582.9695129394531, 214.60557556152344, 25.593643188476562, 57.43992614746094 ], "score": 0.9898173809051514 }, { "image_id": 1885, "category_id": 1.0, "bbox": [ 588.3451080322266, 206.62176513671875, 34.5452880859375, 72.89471435546875 ], "score": 0.10169414430856705 }, { "image_id": 1887, "category_id": 1.0, "bbox": [ 416.63524627685547, 194.1222381591797, 40.69061279296875, 96.49861145019531 ], "score": 0.11873982101678848 }, { "image_id": 1890, "category_id": 1.0, "bbox": [ 481.2418746948242, 211.83372497558594, 23.321762084960938, 45.70170593261719 ], "score": 0.11699732393026352 }, { "image_id": 1890, "category_id": 1.0, "bbox": [ 448.98807525634766, 208.12811279296875, 33.735198974609375, 34.70904541015625 ], "score": 0.11265948414802551 }, { "image_id": 1891, "category_id": 1.0, "bbox": [ 323.07334899902344, 223.25469970703125, 36.891326904296875, 96.3192138671875 ], "score": 0.17160744965076447 }, { "image_id": 1892, "category_id": 1.0, "bbox": [ 286.03227615356445, 221.73251342773438, 29.5721435546875, 74.87408447265625 ], "score": 0.15680652856826782 }, { "image_id": 1892, "category_id": 1.0, "bbox": [ 197.94153213500977, 201.89688110351562, 50.631256103515625, 131.47283935546875 ], "score": 0.10643498599529266 }, { "image_id": 1894, "category_id": 1.0, "bbox": [ 217.29808807373047, 216.01004028320312, 27.11700439453125, 60.334716796875 ], "score": 0.3701126277446747 }, { "image_id": 1894, "category_id": 1.0, "bbox": [ 145.47561645507812, 221.12606811523438, 32.6092529296875, 69.9609375 ], "score": 0.1810370683670044 }, { "image_id": 1894, "category_id": 1.0, "bbox": [ 229.14287567138672, 220.21810913085938, 28.143463134765625, 67.92572021484375 ], "score": 0.17258121073246002 }, { "image_id": 1894, "category_id": 1.0, "bbox": [ 156.0340690612793, 213.77882385253906, 34.59918975830078, 67.51960754394531 ], "score": 0.11298281699419022 }, { "image_id": 1897, "category_id": 1.0, "bbox": [ 521.2554550170898, 212.7310791015625, 17.086563110351562, 38.081512451171875 ], "score": 0.15804095566272736 }, { "image_id": 1899, "category_id": 1.0, "bbox": [ 570.3173828125, 217.9151153564453, 21.600418090820312, 34.61151123046875 ], "score": 0.13132911920547485 }, { "image_id": 1900, "category_id": 1.0, "bbox": [ 600.8361053466797, 215.97335815429688, 26.028213500976562, 49.136199951171875 ], "score": 0.6820476651191711 }, { "image_id": 1903, "category_id": 1.0, "bbox": [ 185.13198852539062, 223.74256896972656, 20.795326232910156, 47.46125793457031 ], "score": 0.19363684952259064 }, { "image_id": 1905, "category_id": 1.0, "bbox": [ 187.54024505615234, 212.8981475830078, 22.150650024414062, 57.26091003417969 ], "score": 0.4859551191329956 }, { "image_id": 1905, "category_id": 1.0, "bbox": [ 126.94205284118652, 213.6757354736328, 28.970623016357422, 52.83128356933594 ], "score": 0.1473931521177292 }, { "image_id": 1906, "category_id": 1.0, "bbox": [ 75.56652545928955, 225.36131286621094, 27.409329414367676, 60.76438903808594 ], "score": 0.32903197407722473 }, { "image_id": 1906, "category_id": 1.0, "bbox": [ 184.16908264160156, 220.7029266357422, 24.01287078857422, 53.55238342285156 ], "score": 0.11104848980903625 }, { "image_id": 1907, "category_id": 1.0, "bbox": [ 192.06661224365234, 219.30325317382812, 22.481613159179688, 52.677398681640625 ], "score": 0.7095805406570435 }, { "image_id": 1908, "category_id": 1.0, "bbox": [ 194.13061141967773, 212.92625427246094, 21.203231811523438, 55.49861145019531 ], "score": 0.5049955248832703 }, { "image_id": 1909, "category_id": 1.0, "bbox": [ 174.32289123535156, 214.83218383789062, 24.108848571777344, 52.475921630859375 ], "score": 0.15821973979473114 }, { "image_id": 1910, "category_id": 1.0, "bbox": [ 165.18325805664062, 209.8708953857422, 33.56536865234375, 69.32438659667969 ], "score": 0.3852962255477905 }, { "image_id": 1911, "category_id": 1.0, "bbox": [ 178.8089370727539, 228.51593017578125, 21.124649047851562, 56.549072265625 ], "score": 0.2280636429786682 }, { "image_id": 1911, "category_id": 1.0, "bbox": [ 169.78618621826172, 231.03756713867188, 22.31719970703125, 60.371826171875 ], "score": 0.133484348654747 }, { "image_id": 1911, "category_id": 1.0, "bbox": [ 398.5795593261719, 210.548583984375, 22.283172607421875, 64.14773559570312 ], "score": 0.1042342483997345 }, { "image_id": 1912, "category_id": 1.0, "bbox": [ 166.97097778320312, 228.1456298828125, 25.751113891601562, 59.9075927734375 ], "score": 0.36933720111846924 }, { "image_id": 1912, "category_id": 1.0, "bbox": [ 150.78145027160645, 225.1085205078125, 30.334177017211914, 64.61163330078125 ], "score": 0.10823903977870941 }, { "image_id": 1914, "category_id": 1.0, "bbox": [ 149.96082305908203, 234.5676727294922, 27.73712158203125, 65.61726379394531 ], "score": 0.16565832495689392 }, { "image_id": 1914, "category_id": 1.0, "bbox": [ 563.4090423583984, 212.42169189453125, 38.09883117675781, 99.1634521484375 ], "score": 0.1653403341770172 }, { "image_id": 1914, "category_id": 1.0, "bbox": [ 141.96365356445312, 216.1396026611328, 27.977542877197266, 71.66587829589844 ], "score": 0.1422213912010193 }, { "image_id": 1914, "category_id": 1.0, "bbox": [ 575.1951599121094, 219.90457153320312, 24.718856811523438, 61.24395751953125 ], "score": 0.12241825461387634 }, { "image_id": 1916, "category_id": 1.0, "bbox": [ 107.51721382141113, 234.8794403076172, 27.567520141601562, 65.76014709472656 ], "score": 0.27323243021965027 }, { "image_id": 1916, "category_id": 1.0, "bbox": [ 426.0653305053711, 217.06666564941406, 52.576446533203125, 140.71800231933594 ], "score": 0.1325095295906067 }, { "image_id": 1916, "category_id": 1.0, "bbox": [ 208.64456176757812, 202.44290161132812, 21.82140350341797, 50.049285888671875 ], "score": 0.12277805060148239 }, { "image_id": 1916, "category_id": 1.0, "bbox": [ 111.94226264953613, 231.54551696777344, 37.39635467529297, 89.99351501464844 ], "score": 0.11406131833791733 }, { "image_id": 1916, "category_id": 1.0, "bbox": [ 19.242327213287354, 203.85003662109375, 38.06027173995972, 96.88922119140625 ], "score": 0.10919275134801865 }, { "image_id": 1917, "category_id": 1.0, "bbox": [ 551.5622711181641, 215.63331604003906, 42.25975036621094, 88.58897399902344 ], "score": 0.34419241547584534 }, { "image_id": 1917, "category_id": 1.0, "bbox": [ 533.49609375, 180.96319580078125, 45.59074401855469, 105.86956787109375 ], "score": 0.10235407948493958 }, { "image_id": 1918, "category_id": 1.0, "bbox": [ 81.56574249267578, 233.02154541015625, 37.34182357788086, 93.42559814453125 ], "score": 0.10042643547058105 }, { "image_id": 1918, "category_id": 1.0, "bbox": [ 61.41470432281494, 233.96148681640625, 24.68553066253662, 71.8917236328125 ], "score": 0.10026827454566956 }, { "image_id": 1921, "category_id": 1.0, "bbox": [ 140.67825317382812, 198.70289611816406, 25.486526489257812, 47.578460693359375 ], "score": 0.10987799614667892 }, { "image_id": 1930, "category_id": 1.0, "bbox": [ 391.8328857421875, 241.89877319335938, 33.961334228515625, 84.4635009765625 ], "score": 0.1392761468887329 }, { "image_id": 1931, "category_id": 1.0, "bbox": [ 383.68377685546875, 230.75759887695312, 33.05488586425781, 72.8096923828125 ], "score": 0.3983364701271057 }, { "image_id": 1932, "category_id": 1.0, "bbox": [ 376.4087677001953, 229.52389526367188, 35.89118957519531, 88.4468994140625 ], "score": 0.7925242185592651 }, { "image_id": 1933, "category_id": 1.0, "bbox": [ 375.4619598388672, 231.69577026367188, 36.145172119140625, 82.24652099609375 ], "score": 0.524132251739502 }, { "image_id": 1933, "category_id": 1.0, "bbox": [ 158.20478439331055, 222.8075714111328, 45.26359558105469, 102.04679870605469 ], "score": 0.29309919476509094 }, { "image_id": 1934, "category_id": 1.0, "bbox": [ 377.6255798339844, 230.32618713378906, 33.642120361328125, 81.62901306152344 ], "score": 0.9845596551895142 }, { "image_id": 1934, "category_id": 1.0, "bbox": [ 173.52252960205078, 211.042724609375, 40.649070739746094, 72.0623779296875 ], "score": 0.1772053986787796 }, { "image_id": 1934, "category_id": 1.0, "bbox": [ 498.18836212158203, 185.70742797851562, 40.91758728027344, 94.5750732421875 ], "score": 0.16995137929916382 }, { "image_id": 1935, "category_id": 1.0, "bbox": [ 398.69258880615234, 213.6663818359375, 36.38679504394531, 93.1243896484375 ], "score": 0.9039075970649719 }, { "image_id": 1935, "category_id": 1.0, "bbox": [ 359.2546844482422, 198.93072509765625, 37.364501953125, 130.3690185546875 ], "score": 0.10614674538373947 }, { "image_id": 1936, "category_id": 1.0, "bbox": [ 429.0187454223633, 218.74114990234375, 43.13209533691406, 110.2677001953125 ], "score": 0.8581889271736145 }, { "image_id": 1937, "category_id": 1.0, "bbox": [ 477.8612518310547, 219.24935913085938, 58.58955383300781, 131.02508544921875 ], "score": 0.9818841218948364 }, { "image_id": 1937, "category_id": 1.0, "bbox": [ 404.9806594848633, 246.27857971191406, 22.932891845703125, 59.38859558105469 ], "score": 0.1277635246515274 }, { "image_id": 1937, "category_id": 1.0, "bbox": [ 173.59258651733398, 201.60301208496094, 44.86042022705078, 111.14027404785156 ], "score": 0.11786206811666489 }, { "image_id": 1938, "category_id": 1.0, "bbox": [ 67.76919841766357, 209.13365173339844, 31.07792377471924, 73.14463806152344 ], "score": 0.23330381512641907 }, { "image_id": 1938, "category_id": 1.0, "bbox": [ 326.18785858154297, 254.57972717285156, 28.621063232421875, 70.22267150878906 ], "score": 0.10487493127584457 }, { "image_id": 1938, "category_id": 1.0, "bbox": [ 465.27721405029297, 189.65908813476562, 32.064208984375, 76.101318359375 ], "score": 0.10173410177230835 }, { "image_id": 1939, "category_id": 1.0, "bbox": [ 457.96642303466797, 246.13458251953125, 49.73609924316406, 106.39825439453125 ], "score": 0.12912055850028992 }, { "image_id": 1940, "category_id": 1.0, "bbox": [ 455.09876251220703, 204.57229614257812, 26.174392700195312, 50.187469482421875 ], "score": 0.15703773498535156 }, { "image_id": 1940, "category_id": 1.0, "bbox": [ 519.0041351318359, 176.66189575195312, 28.694381713867188, 83.08059692382812 ], "score": 0.15636390447616577 }, { "image_id": 1941, "category_id": 1.0, "bbox": [ 487.04315185546875, 208.29017639160156, 26.016311645507812, 53.62431335449219 ], "score": 0.18395733833312988 }, { "image_id": 1942, "category_id": 1.0, "bbox": [ 545.1616668701172, 206.49215698242188, 35.88218688964844, 75.510986328125 ], "score": 0.23670925199985504 }, { "image_id": 1942, "category_id": 1.0, "bbox": [ 441.17149353027344, 225.878662109375, 42.52891540527344, 110.30438232421875 ], "score": 0.14474862813949585 }, { "image_id": 1942, "category_id": 1.0, "bbox": [ 441.23207092285156, 274.32635498046875, 23.212890625, 63.3421630859375 ], "score": 0.10073848068714142 }, { "image_id": 1943, "category_id": 1.0, "bbox": [ 417.6759719848633, 207.12179565429688, 20.92071533203125, 37.327056884765625 ], "score": 0.15577730536460876 }, { "image_id": 1943, "category_id": 1.0, "bbox": [ 531.8815612792969, 323.5307312011719, 66.12518310546875, 199.91787719726562 ], "score": 0.10370805859565735 }, { "image_id": 1944, "category_id": 1.0, "bbox": [ 436.5707015991211, 199.4144287109375, 19.360809326171875, 40.9344482421875 ], "score": 0.22871461510658264 }, { "image_id": 1944, "category_id": 1.0, "bbox": [ 234.72148895263672, 221.75608825683594, 28.255615234375, 68.38514709472656 ], "score": 0.1649460345506668 }, { "image_id": 1945, "category_id": 1.0, "bbox": [ 479.5104217529297, 213.5608367919922, 23.254776000976562, 48.60585021972656 ], "score": 0.8121658563613892 }, { "image_id": 1945, "category_id": 1.0, "bbox": [ 467.144775390625, 215.75387573242188, 21.5087890625, 44.472259521484375 ], "score": 0.37235742807388306 }, { "image_id": 1946, "category_id": 1.0, "bbox": [ 523.1418991088867, 210.49603271484375, 26.116561889648438, 57.19366455078125 ], "score": 0.7426489591598511 }, { "image_id": 1946, "category_id": 1.0, "bbox": [ 431.46190643310547, 204.76234436035156, 25.363922119140625, 39.412261962890625 ], "score": 0.2712550759315491 }, { "image_id": 1946, "category_id": 1.0, "bbox": [ 531.7844009399414, 205.69216918945312, 26.315460205078125, 50.90130615234375 ], "score": 0.11085332930088043 }, { "image_id": 1947, "category_id": 1.0, "bbox": [ 453.7677001953125, 208.9674072265625, 24.9908447265625, 42.856201171875 ], "score": 0.33099034428596497 }, { "image_id": 1947, "category_id": 1.0, "bbox": [ 464.68658447265625, 211.21875, 23.980789184570312, 40.233184814453125 ], "score": 0.27462828159332275 }, { "image_id": 1947, "category_id": 1.0, "bbox": [ 441.14776611328125, 199.37998962402344, 59.42283630371094, 58.50700378417969 ], "score": 0.19117018580436707 }, { "image_id": 1947, "category_id": 1.0, "bbox": [ 441.01734161376953, 213.15399169921875, 29.353103637695312, 42.241363525390625 ], "score": 0.17244404554367065 }, { "image_id": 1947, "category_id": 1.0, "bbox": [ 477.64060974121094, 211.79147338867188, 22.950210571289062, 39.54779052734375 ], "score": 0.1490495502948761 }, { "image_id": 1948, "category_id": 1.0, "bbox": [ 499.46224212646484, 208.67677307128906, 26.510086059570312, 48.62028503417969 ], "score": 0.9695188999176025 }, { "image_id": 1948, "category_id": 1.0, "bbox": [ 524.270133972168, 208.14974975585938, 25.37139892578125, 52.59527587890625 ], "score": 0.757823646068573 }, { "image_id": 1948, "category_id": 1.0, "bbox": [ 510.7066345214844, 204.51473999023438, 26.272964477539062, 55.0821533203125 ], "score": 0.29455655813217163 }, { "image_id": 1949, "category_id": 1.0, "bbox": [ 607.2904205322266, 205.2357177734375, 24.59564208984375, 64.11935424804688 ], "score": 0.9876000881195068 }, { "image_id": 1949, "category_id": 1.0, "bbox": [ 579.8179626464844, 205.76705932617188, 27.896575927734375, 66.87039184570312 ], "score": 0.9519234895706177 }, { "image_id": 1949, "category_id": 1.0, "bbox": [ 495.5263137817383, 204.84548950195312, 23.053512573242188, 46.01611328125 ], "score": 0.40790826082229614 }, { "image_id": 1950, "category_id": 1.0, "bbox": [ 541.1257171630859, 205.55014038085938, 26.869583129882812, 47.7469482421875 ], "score": 0.9459202885627747 }, { "image_id": 1950, "category_id": 1.0, "bbox": [ 473.0875778198242, 215.36656188964844, 53.76533508300781, 51.08470153808594 ], "score": 0.11719013750553131 }, { "image_id": 1955, "category_id": 1.0, "bbox": [ 558.1046676635742, 221.11508178710938, 26.242141723632812, 58.540191650390625 ], "score": 0.9812624454498291 }, { "image_id": 1956, "category_id": 1.0, "bbox": [ 530.3409957885742, 213.50303649902344, 19.257736206054688, 42.87928771972656 ], "score": 0.40400493144989014 }, { "image_id": 1956, "category_id": 1.0, "bbox": [ 412.15282440185547, 203.3979034423828, 22.045669555664062, 46.615478515625 ], "score": 0.363872766494751 }, { "image_id": 1957, "category_id": 1.0, "bbox": [ 455.3117370605469, 228.51748657226562, 22.808990478515625, 46.299224853515625 ], "score": 0.9376930594444275 }, { "image_id": 1958, "category_id": 1.0, "bbox": [ 545.3008270263672, 208.08787536621094, 34.96269226074219, 74.29985046386719 ], "score": 0.9118422269821167 }, { "image_id": 1958, "category_id": 1.0, "bbox": [ 575.315055847168, 210.23187255859375, 25.411376953125, 55.8106689453125 ], "score": 0.8218557238578796 }, { "image_id": 1958, "category_id": 1.0, "bbox": [ 563.7514495849609, 207.27450561523438, 29.957656860351562, 70.79989624023438 ], "score": 0.24303656816482544 }, { "image_id": 1958, "category_id": 1.0, "bbox": [ 576.8185043334961, 207.08453369140625, 36.73728942871094, 89.00677490234375 ], "score": 0.16389086842536926 }, { "image_id": 1962, "category_id": 1.0, "bbox": [ 365.1432800292969, 211.5084991455078, 21.453475952148438, 40.699127197265625 ], "score": 0.10754793882369995 }, { "image_id": 1963, "category_id": 1.0, "bbox": [ 569.3863677978516, 194.0732421875, 28.032073974609375, 69.65444946289062 ], "score": 0.16798356175422668 }, { "image_id": 1963, "category_id": 1.0, "bbox": [ 397.1870803833008, 211.16134643554688, 25.410537719726562, 43.390960693359375 ], "score": 0.15998806059360504 }, { "image_id": 1964, "category_id": 1.0, "bbox": [ 384.8971176147461, 214.89920043945312, 21.393508911132812, 45.291168212890625 ], "score": 0.9494596719741821 }, { "image_id": 1965, "category_id": 1.0, "bbox": [ 461.3547134399414, 224.86166381835938, 27.254867553710938, 61.5335693359375 ], "score": 0.9992046356201172 }, { "image_id": 1965, "category_id": 1.0, "bbox": [ 568.8576126098633, 221.1379852294922, 36.90696716308594, 92.72538757324219 ], "score": 0.6859135627746582 }, { "image_id": 1965, "category_id": 1.0, "bbox": [ 87.37316131591797, 218.3180694580078, 25.342063903808594, 51.33229064941406 ], "score": 0.1659291684627533 }, { "image_id": 1969, "category_id": 1.0, "bbox": [ 66.71903610229492, 213.18751525878906, 25.619182586669922, 48.11289978027344 ], "score": 0.1559240072965622 }, { "image_id": 1969, "category_id": 1.0, "bbox": [ 217.00834274291992, 208.50961303710938, 21.834640502929688, 36.683349609375 ], "score": 0.12018153816461563 }, { "image_id": 1970, "category_id": 1.0, "bbox": [ 46.89999580383301, 204.86367797851562, 43.40298652648926, 45.703826904296875 ], "score": 0.17955809831619263 }, { "image_id": 1970, "category_id": 1.0, "bbox": [ 452.86991119384766, 199.22486877441406, 21.965713500976562, 60.18544006347656 ], "score": 0.12189093977212906 }, { "image_id": 1971, "category_id": 1.0, "bbox": [ 235.2981185913086, 204.220458984375, 21.791954040527344, 39.4000244140625 ], "score": 0.1194993183016777 }, { "image_id": 1972, "category_id": 1.0, "bbox": [ 228.54785919189453, 193.51211547851562, 25.893478393554688, 45.727508544921875 ], "score": 0.2501334547996521 }, { "image_id": 1972, "category_id": 1.0, "bbox": [ 401.2446975708008, 207.5406951904297, 17.997360229492188, 41.9300537109375 ], "score": 0.1469336748123169 }, { "image_id": 1973, "category_id": 1.0, "bbox": [ 415.6545639038086, 207.5372314453125, 19.324264526367188, 43.39703369140625 ], "score": 0.7916486263275146 }, { "image_id": 1973, "category_id": 1.0, "bbox": [ 481.18064880371094, 202.41770935058594, 20.034103393554688, 41.911163330078125 ], "score": 0.5388715863227844 }, { "image_id": 1973, "category_id": 1.0, "bbox": [ 453.2765197753906, 206.63919067382812, 19.66094970703125, 48.35968017578125 ], "score": 0.3561283349990845 }, { "image_id": 1973, "category_id": 1.0, "bbox": [ 114.58251953125, 189.89646911621094, 36.79830551147461, 65.24984741210938 ], "score": 0.11753753572702408 }, { "image_id": 1974, "category_id": 1.0, "bbox": [ 442.27684020996094, 223.0335693359375, 20.283889770507812, 48.2364501953125 ], "score": 0.9978563189506531 }, { "image_id": 1974, "category_id": 1.0, "bbox": [ 503.1714630126953, 220.87539672851562, 25.70709228515625, 63.18658447265625 ], "score": 0.9971998929977417 }, { "image_id": 1974, "category_id": 1.0, "bbox": [ 547.0811462402344, 220.24288940429688, 21.914749145507812, 45.97808837890625 ], "score": 0.8073282241821289 }, { "image_id": 1975, "category_id": 1.0, "bbox": [ 504.09873962402344, 222.05169677734375, 31.767349243164062, 80.1444091796875 ], "score": 0.9910842776298523 }, { "image_id": 1978, "category_id": 1.0, "bbox": [ 369.0999221801758, 210.58184814453125, 18.09417724609375, 37.1812744140625 ], "score": 0.1851010024547577 }, { "image_id": 1978, "category_id": 1.0, "bbox": [ 45.377678871154785, 206.80984497070312, 22.97405242919922, 50.541473388671875 ], "score": 0.15096445381641388 }, { "image_id": 1979, "category_id": 1.0, "bbox": [ 401.01402282714844, 198.4485626220703, 18.714218139648438, 37.761199951171875 ], "score": 0.29575616121292114 }, { "image_id": 1979, "category_id": 1.0, "bbox": [ 335.17189025878906, 167.45376586914062, 22.360382080078125, 62.5904541015625 ], "score": 0.24535907804965973 }, { "image_id": 1979, "category_id": 1.0, "bbox": [ 367.8554916381836, 182.94775390625, 25.546035766601562, 54.8343505859375 ], "score": 0.13002580404281616 }, { "image_id": 1979, "category_id": 1.0, "bbox": [ 439.76707458496094, 210.47482299804688, 24.574127197265625, 53.249237060546875 ], "score": 0.12038291245698929 }, { "image_id": 1980, "category_id": 1.0, "bbox": [ 432.71793365478516, 202.27294921875, 20.919113159179688, 42.768035888671875 ], "score": 0.5877895355224609 }, { "image_id": 1980, "category_id": 1.0, "bbox": [ 105.51082611083984, 200.35598754882812, 19.011001586914062, 37.817901611328125 ], "score": 0.1032392829656601 }, { "image_id": 1981, "category_id": 1.0, "bbox": [ 511.84879302978516, 216.93948364257812, 20.009002685546875, 43.797943115234375 ], "score": 0.9376203417778015 }, { "image_id": 1981, "category_id": 1.0, "bbox": [ 462.2781753540039, 222.41717529296875, 24.064559936523438, 55.77410888671875 ], "score": 0.2574803829193115 }, { "image_id": 1981, "category_id": 1.0, "bbox": [ 248.38191986083984, 199.6971435546875, 24.068145751953125, 40.82891845703125 ], "score": 0.1935398131608963 }, { "image_id": 1981, "category_id": 1.0, "bbox": [ 418.0889892578125, 152.90626525878906, 38.41606140136719, 107.42268371582031 ], "score": 0.18995219469070435 }, { "image_id": 1985, "category_id": 1.0, "bbox": [ 489.63584899902344, 209.44415283203125, 19.315185546875, 44.1011962890625 ], "score": 0.5910622477531433 }, { "image_id": 1985, "category_id": 1.0, "bbox": [ 38.656630516052246, 210.5161590576172, 26.697397232055664, 47.54057312011719 ], "score": 0.12133828550577164 }, { "image_id": 1986, "category_id": 1.0, "bbox": [ 568.0713653564453, 203.84776306152344, 28.600234985351562, 64.30476379394531 ], "score": 0.9481103420257568 }, { "image_id": 1986, "category_id": 1.0, "bbox": [ 478.0721664428711, 201.19265747070312, 21.4764404296875, 44.575592041015625 ], "score": 0.14013388752937317 }, { "image_id": 1987, "category_id": 1.0, "bbox": [ 502.88475036621094, 166.32127380371094, 36.30668640136719, 114.42414855957031 ], "score": 0.1232297271490097 }, { "image_id": 1988, "category_id": 1.0, "bbox": [ 462.1984100341797, 203.92794799804688, 26.16790771484375, 51.152496337890625 ], "score": 0.9323812127113342 }, { "image_id": 1989, "category_id": 1.0, "bbox": [ 462.4467086791992, 210.22410583496094, 22.91259765625, 57.02973937988281 ], "score": 0.79305100440979 }, { "image_id": 1989, "category_id": 1.0, "bbox": [ 323.22147369384766, 193.015625, 28.940887451171875, 65.36123657226562 ], "score": 0.20612570643424988 }, { "image_id": 1990, "category_id": 1.0, "bbox": [ 483.6458969116211, 220.0327606201172, 23.141937255859375, 58.71888732910156 ], "score": 0.43326932191848755 }, { "image_id": 1991, "category_id": 1.0, "bbox": [ 529.3941497802734, 207.8026580810547, 30.106964111328125, 80.40296936035156 ], "score": 0.756792426109314 }, { "image_id": 1992, "category_id": 1.0, "bbox": [ 592.4411010742188, 225.42568969726562, 33.26820373535156, 76.67388916015625 ], "score": 0.46113699674606323 }, { "image_id": 1993, "category_id": 1.0, "bbox": [ 413.70155334472656, 31.985267639160156, 43.41453552246094, 127.86162567138672 ], "score": 0.1752939522266388 }, { "image_id": 1998, "category_id": 1.0, "bbox": [ 296.1127471923828, 193.69729614257812, 26.252975463867188, 41.446563720703125 ], "score": 0.10638147592544556 }, { "image_id": 2001, "category_id": 1.0, "bbox": [ 587.6459884643555, 152.1861114501953, 41.43241882324219, 116.85984802246094 ], "score": 0.1652422994375229 }, { "image_id": 2003, "category_id": 1.0, "bbox": [ 319.97058868408203, 210.47076416015625, 19.03900146484375, 42.3924560546875 ], "score": 0.3316628336906433 }, { "image_id": 2003, "category_id": 1.0, "bbox": [ 355.53707122802734, 215.92747497558594, 18.16864013671875, 35.9755859375 ], "score": 0.10513557493686676 }, { "image_id": 2004, "category_id": 1.0, "bbox": [ 354.1082000732422, 213.26661682128906, 19.546127319335938, 42.84788513183594 ], "score": 0.4435758888721466 }, { "image_id": 2004, "category_id": 1.0, "bbox": [ 323.0308151245117, 211.48681640625, 20.571441650390625, 48.70355224609375 ], "score": 0.2536037862300873 }, { "image_id": 2004, "category_id": 1.0, "bbox": [ 334.44252014160156, 216.7289276123047, 28.577880859375, 40.67918395996094 ], "score": 0.14087389409542084 }, { "image_id": 2005, "category_id": 1.0, "bbox": [ 321.7233657836914, 213.23977661132812, 22.180328369140625, 52.80059814453125 ], "score": 0.9752533435821533 }, { "image_id": 2005, "category_id": 1.0, "bbox": [ 355.1896286010742, 216.5014190673828, 22.265243530273438, 50.38096618652344 ], "score": 0.9559401869773865 }, { "image_id": 2005, "category_id": 1.0, "bbox": [ 366.78417205810547, 216.5786895751953, 22.04864501953125, 44.02229309082031 ], "score": 0.26816242933273315 }, { "image_id": 2006, "category_id": 1.0, "bbox": [ 346.9704818725586, 206.58168029785156, 24.336166381835938, 60.24037170410156 ], "score": 0.9965637922286987 }, { "image_id": 2006, "category_id": 1.0, "bbox": [ 304.71960067749023, 205.19436645507812, 25.46255111694336, 63.59039306640625 ], "score": 0.9897925853729248 }, { "image_id": 2007, "category_id": 1.0, "bbox": [ 282.9444122314453, 208.57757568359375, 35.331077575683594, 68.2423095703125 ], "score": 0.9974573850631714 }, { "image_id": 2007, "category_id": 1.0, "bbox": [ 229.98075485229492, 206.119873046875, 31.89189910888672, 73.75234985351562 ], "score": 0.9779654741287231 }, { "image_id": 2007, "category_id": 1.0, "bbox": [ 48.26561450958252, 194.45565795898438, 30.505857467651367, 52.01556396484375 ], "score": 0.659004807472229 }, { "image_id": 2008, "category_id": 1.0, "bbox": [ 94.83438491821289, 203.8369140625, 48.75030517578125, 118.13201904296875 ], "score": 0.9635547399520874 }, { "image_id": 2008, "category_id": 1.0, "bbox": [ 182.23751068115234, 205.08140563964844, 46.49116516113281, 102.35560607910156 ], "score": 0.8446451425552368 }, { "image_id": 2009, "category_id": 1.0, "bbox": [ 76.06829643249512, 209.00927734375, 31.892719268798828, 76.0771484375 ], "score": 0.5535656213760376 }, { "image_id": 2010, "category_id": 1.0, "bbox": [ 337.6275634765625, 238.48416137695312, 25.791015625, 44.1710205078125 ], "score": 0.2171456217765808 }, { "image_id": 2010, "category_id": 1.0, "bbox": [ 299.00875091552734, 239.4732666015625, 25.257530212402344, 51.34393310546875 ], "score": 0.16588076949119568 }, { "image_id": 2014, "category_id": 1.0, "bbox": [ 585.7863616943359, 227.65029907226562, 25.162506103515625, 59.4022216796875 ], "score": 0.9726194143295288 }, { "image_id": 2014, "category_id": 1.0, "bbox": [ 182.5811767578125, 216.55105590820312, 38.44085693359375, 80.82122802734375 ], "score": 0.17359457910060883 }, { "image_id": 2015, "category_id": 1.0, "bbox": [ 506.5040969848633, 217.01974487304688, 32.146453857421875, 68.95697021484375 ], "score": 0.6245990991592407 }, { "image_id": 2016, "category_id": 1.0, "bbox": [ 498.5700988769531, 203.45956420898438, 34.75837707519531, 82.4967041015625 ], "score": 0.6946045756340027 }, { "image_id": 2023, "category_id": 1.0, "bbox": [ 411.54090881347656, 204.06179809570312, 23.572845458984375, 55.3009033203125 ], "score": 0.1628304272890091 }, { "image_id": 2023, "category_id": 1.0, "bbox": [ 374.7007369995117, 210.41555786132812, 21.597213745117188, 40.764923095703125 ], "score": 0.1481514573097229 }, { "image_id": 2023, "category_id": 1.0, "bbox": [ 285.1949691772461, 184.1637725830078, 24.58385467529297, 55.24456787109375 ], "score": 0.1056879460811615 }, { "image_id": 2025, "category_id": 1.0, "bbox": [ 405.5135726928711, 211.7792205810547, 20.48919677734375, 43.082244873046875 ], "score": 0.6488102674484253 }, { "image_id": 2025, "category_id": 1.0, "bbox": [ 366.2868881225586, 172.6587371826172, 29.202880859375, 68.14031982421875 ], "score": 0.29815638065338135 }, { "image_id": 2025, "category_id": 1.0, "bbox": [ 7.329903841018677, 200.7855224609375, 24.833601713180542, 53.890228271484375 ], "score": 0.1732965111732483 }, { "image_id": 2025, "category_id": 1.0, "bbox": [ 32.64950752258301, 209.19369506835938, 26.959447860717773, 47.56475830078125 ], "score": 0.10046559572219849 }, { "image_id": 2026, "category_id": 1.0, "bbox": [ 425.9319305419922, 207.26904296875, 22.144699096679688, 44.77606201171875 ], "score": 0.9633796811103821 }, { "image_id": 2026, "category_id": 1.0, "bbox": [ 506.1962127685547, 207.56570434570312, 22.654876708984375, 52.5411376953125 ], "score": 0.17274965345859528 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 446.8393325805664, 213.59817504882812, 23.199310302734375, 55.809661865234375 ], "score": 0.9944382309913635 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 547.8352355957031, 210.40806579589844, 24.730148315429688, 63.42674255371094 ], "score": 0.9210740327835083 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 381.0539245605469, 208.3193359375, 19.345779418945312, 42.440399169921875 ], "score": 0.6163547039031982 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 550.3830718994141, 87.08329772949219, 42.0184326171875, 110.34085083007812 ], "score": 0.15306131541728973 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 69.61044788360596, 200.16290283203125, 26.3313627243042, 57.25506591796875 ], "score": 0.14977778494358063 }, { "image_id": 2027, "category_id": 1.0, "bbox": [ 107.45572090148926, 209.45021057128906, 21.515941619873047, 35.21807861328125 ], "score": 0.1426849365234375 }, { "image_id": 2028, "category_id": 1.0, "bbox": [ 492.44422912597656, 215.28334045410156, 24.513931274414062, 61.97511291503906 ], "score": 0.9706103801727295 }, { "image_id": 2028, "category_id": 1.0, "bbox": [ 401.36783599853516, 205.5563507080078, 19.186477661132812, 45.197723388671875 ], "score": 0.9630377292633057 }, { "image_id": 2028, "category_id": 1.0, "bbox": [ 415.3973388671875, 190.53977966308594, 23.796615600585938, 52.668609619140625 ], "score": 0.21360576152801514 }, { "image_id": 2029, "category_id": 1.0, "bbox": [ 432.9460906982422, 210.17933654785156, 21.488571166992188, 51.46461486816406 ], "score": 0.9889143705368042 }, { "image_id": 2029, "category_id": 1.0, "bbox": [ 578.1707000732422, 213.7286834716797, 33.898773193359375, 85.95912170410156 ], "score": 0.9780018329620361 }, { "image_id": 2029, "category_id": 1.0, "bbox": [ 443.06419372558594, 187.49839782714844, 28.357925415039062, 68.58274841308594 ], "score": 0.2430635392665863 }, { "image_id": 2029, "category_id": 1.0, "bbox": [ 55.851144790649414, 205.78228759765625, 21.49312973022461, 44.322052001953125 ], "score": 0.19355708360671997 }, { "image_id": 2030, "category_id": 1.0, "bbox": [ 490.3084182739258, 208.33189392089844, 27.381668090820312, 69.77223205566406 ], "score": 0.983444333076477 }, { "image_id": 2031, "category_id": 1.0, "bbox": [ 306.99817657470703, 204.62713623046875, 21.314430236816406, 54.084381103515625 ], "score": 0.1328662782907486 }, { "image_id": 2034, "category_id": 1.0, "bbox": [ 525.458869934082, 110.32661437988281, 78.98704528808594, 238.83677673339844 ], "score": 0.2988566756248474 }, { "image_id": 2034, "category_id": 1.0, "bbox": [ 540.5065155029297, 43.860557556152344, 44.04655456542969, 121.52686309814453 ], "score": 0.12317407876253128 }, { "image_id": 2034, "category_id": 1.0, "bbox": [ 91.76198959350586, 205.51022338867188, 31.67215347290039, 42.2457275390625 ], "score": 0.11837261915206909 }, { "image_id": 2034, "category_id": 1.0, "bbox": [ 537.6625823974609, 74.85719299316406, 58.49212646484375, 175.14108276367188 ], "score": 0.10437976568937302 }, { "image_id": 2036, "category_id": 1.0, "bbox": [ 472.62622833251953, 220.1239013671875, 29.832992553710938, 77.6290283203125 ], "score": 0.18400265276432037 }, { "image_id": 2038, "category_id": 1.0, "bbox": [ 47.97108173370361, 206.18353271484375, 26.420774459838867, 52.595794677734375 ], "score": 0.15711252391338348 }, { "image_id": 2040, "category_id": 1.0, "bbox": [ 309.62915420532227, 198.3011474609375, 27.340335845947266, 56.7850341796875 ], "score": 0.12852239608764648 }, { "image_id": 2047, "category_id": 1.0, "bbox": [ 99.57109451293945, 209.4903106689453, 20.22542953491211, 36.90179443359375 ], "score": 0.20122787356376648 }, { "image_id": 2047, "category_id": 1.0, "bbox": [ 7.357425689697266, 194.76336669921875, 32.20563888549805, 73.31622314453125 ], "score": 0.1605997085571289 }, { "image_id": 2048, "category_id": 1.0, "bbox": [ 28.636178970336914, 208.0363006591797, 22.92755126953125, 46.867919921875 ], "score": 0.4888692796230316 }, { "image_id": 2052, "category_id": 1.0, "bbox": [ 351.82918548583984, 204.49940490722656, 22.488937377929688, 56.62760925292969 ], "score": 0.2488672286272049 }, { "image_id": 2052, "category_id": 1.0, "bbox": [ 591.3861465454102, 32.445709228515625, 36.94061279296875, 95.47998046875 ], "score": 0.20871540904045105 }, { "image_id": 2053, "category_id": 1.0, "bbox": [ 16.780517101287842, 193.44688415527344, 33.83850336074829, 71.40730285644531 ], "score": 0.28499412536621094 }, { "image_id": 2054, "category_id": 1.0, "bbox": [ 417.8575134277344, 168.21975708007812, 45.964813232421875, 135.44308471679688 ], "score": 0.1006542444229126 }, { "image_id": 2054, "category_id": 1.0, "bbox": [ 93.64519119262695, 206.47299194335938, 26.530780792236328, 44.965240478515625 ], "score": 0.10031982511281967 }, { "image_id": 2055, "category_id": 1.0, "bbox": [ 437.66876220703125, 267.67578125, 21.03729248046875, 66.24298095703125 ], "score": 0.2018229216337204 }, { "image_id": 2055, "category_id": 1.0, "bbox": [ 185.7710838317871, 186.0775909423828, 44.40864562988281, 98.92283630371094 ], "score": 0.19187770783901215 }, { "image_id": 2056, "category_id": 1.0, "bbox": [ 437.7857971191406, 273.4471740722656, 19.780502319335938, 54.4373779296875 ], "score": 0.30595359206199646 }, { "image_id": 2057, "category_id": 1.0, "bbox": [ 513.2393264770508, 291.32952880859375, 25.786895751953125, 67.7769775390625 ], "score": 0.38735607266426086 }, { "image_id": 2060, "category_id": 1.0, "bbox": [ 92.71927833557129, 207.90333557128906, 22.340831756591797, 44.199798583984375 ], "score": 0.356301873922348 }, { "image_id": 2060, "category_id": 1.0, "bbox": [ 413.65997314453125, 150.47250366210938, 41.40586853027344, 107.51727294921875 ], "score": 0.1674327701330185 }, { "image_id": 2060, "category_id": 1.0, "bbox": [ 11.00650668144226, 207.6124267578125, 24.086891412734985, 51.55706787109375 ], "score": 0.10466337203979492 }, { "image_id": 2061, "category_id": 1.0, "bbox": [ 40.10317325592041, 197.13351440429688, 26.539220809936523, 56.2213134765625 ], "score": 0.4879167675971985 }, { "image_id": 2061, "category_id": 1.0, "bbox": [ 479.25243377685547, 149.3200225830078, 38.15406799316406, 113.69096374511719 ], "score": 0.31611719727516174 }, { "image_id": 2061, "category_id": 1.0, "bbox": [ 27.35502004623413, 200.98178100585938, 25.432074069976807, 61.424346923828125 ], "score": 0.11516101658344269 }, { "image_id": 2062, "category_id": 1.0, "bbox": [ 436.1009979248047, 208.89987182617188, 19.63531494140625, 36.2255859375 ], "score": 0.1801656037569046 }, { "image_id": 2062, "category_id": 1.0, "bbox": [ 22.01209783554077, 191.8612060546875, 23.193485736846924, 55.05059814453125 ], "score": 0.13480634987354279 }, { "image_id": 2063, "category_id": 1.0, "bbox": [ 133.67722511291504, 205.00294494628906, 25.30099868774414, 53.27024841308594 ], "score": 0.1644974946975708 }, { "image_id": 2064, "category_id": 1.0, "bbox": [ 492.41302490234375, 211.33058166503906, 20.299530029296875, 45.76341247558594 ], "score": 0.4460344910621643 }, { "image_id": 2065, "category_id": 1.0, "bbox": [ 528.7685775756836, 210.00775146484375, 22.366867065429688, 52.753082275390625 ], "score": 0.9984873533248901 }, { "image_id": 2065, "category_id": 1.0, "bbox": [ 242.4759292602539, 213.21163940429688, 32.037620544433594, 32.85919189453125 ], "score": 0.2018013596534729 }, { "image_id": 2065, "category_id": 1.0, "bbox": [ 496.1793899536133, 118.29833984375, 41.53663635253906, 126.15249633789062 ], "score": 0.12057404220104218 }, { "image_id": 2066, "category_id": 1.0, "bbox": [ 575.8488082885742, 209.38233947753906, 23.134994506835938, 65.79020690917969 ], "score": 0.9614326357841492 }, { "image_id": 2066, "category_id": 1.0, "bbox": [ 24.620366096496582, 199.57861328125, 24.023947715759277, 48.543243408203125 ], "score": 0.2932054400444031 }, { "image_id": 2066, "category_id": 1.0, "bbox": [ 233.44415664672852, 210.83628845214844, 26.15528106689453, 38.81396484375 ], "score": 0.18309184908866882 }, { "image_id": 2067, "category_id": 1.0, "bbox": [ 221.7024803161621, 211.9365234375, 28.141021728515625, 43.73114013671875 ], "score": 0.36638206243515015 }, { "image_id": 2067, "category_id": 1.0, "bbox": [ 12.927556037902832, 36.44489669799805, 49.58007335662842, 97.53572463989258 ], "score": 0.3191947042942047 }, { "image_id": 2067, "category_id": 1.0, "bbox": [ 242.46967315673828, 211.19622802734375, 19.77344512939453, 42.153656005859375 ], "score": 0.16167515516281128 }, { "image_id": 2067, "category_id": 1.0, "bbox": [ 23.53999376296997, 47.9090576171875, 49.46508169174194, 129.74053955078125 ], "score": 0.11910183727741241 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 214.77970123291016, 216.41905212402344, 35.27355194091797, 39.302581787109375 ], "score": 0.7384192943572998 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 560.9738540649414, 48.3145866394043, 38.713531494140625, 120.08498001098633 ], "score": 0.32920846343040466 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 456.5732192993164, 220.8704071044922, 19.049072265625, 46.43803405761719 ], "score": 0.1958187371492386 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 420.8256149291992, 228.6434326171875, 27.038040161132812, 36.0743408203125 ], "score": 0.14826306700706482 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 365.7283020019531, 181.69944763183594, 38.78997802734375, 69.63272094726562 ], "score": 0.1359073668718338 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 204.78307723999023, 209.1321258544922, 56.3427734375, 57.90727233886719 ], "score": 0.12047328054904938 }, { "image_id": 2068, "category_id": 1.0, "bbox": [ 381.4063262939453, 219.72567749023438, 19.642333984375, 40.7840576171875 ], "score": 0.10944337397813797 }, { "image_id": 2069, "category_id": 1.0, "bbox": [ 203.58386993408203, 215.64747619628906, 29.287643432617188, 41.96031188964844 ], "score": 0.9656181931495667 }, { "image_id": 2069, "category_id": 1.0, "bbox": [ 482.13855743408203, 219.91131591796875, 21.120452880859375, 54.3082275390625 ], "score": 0.6884113550186157 }, { "image_id": 2069, "category_id": 1.0, "bbox": [ 469.8545837402344, 223.44338989257812, 21.839523315429688, 51.93756103515625 ], "score": 0.28246667981147766 }, { "image_id": 2069, "category_id": 1.0, "bbox": [ 410.3941345214844, 228.46340942382812, 16.537551879882812, 33.549835205078125 ], "score": 0.13747721910476685 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 182.48035430908203, 217.7123565673828, 24.585647583007812, 43.29283142089844 ], "score": 0.8968780040740967 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 496.18099212646484, 223.58116149902344, 19.897994995117188, 54.41621398925781 ], "score": 0.874096691608429 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 485.52337646484375, 223.6099090576172, 20.097122192382812, 56.81895446777344 ], "score": 0.759323000907898 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 206.64064407348633, 214.49215698242188, 25.417251586914062, 41.835662841796875 ], "score": 0.7235502004623413 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 435.2606964111328, 227.40260314941406, 19.605865478515625, 37.36235046386719 ], "score": 0.39528217911720276 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 476.57867431640625, 205.89337158203125, 36.22261047363281, 77.19534301757812 ], "score": 0.13742995262145996 }, { "image_id": 2070, "category_id": 1.0, "bbox": [ 183.82274627685547, 205.99440002441406, 47.119407653808594, 58.83219909667969 ], "score": 0.12649209797382355 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 162.19512939453125, 215.092041015625, 25.40607452392578, 47.998687744140625 ], "score": 0.98590087890625 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 502.5045394897461, 222.92578125, 21.797256469726562, 60.801971435546875 ], "score": 0.9774948358535767 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 205.76055526733398, 215.11830139160156, 28.443603515625, 43.84605407714844 ], "score": 0.8965520858764648 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 464.35428619384766, 224.54141235351562, 20.114517211914062, 41.858001708984375 ], "score": 0.7710436582565308 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 521.1571884155273, 222.36279296875, 22.520370483398438, 56.863372802734375 ], "score": 0.34184107184410095 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 493.1352996826172, 223.35928344726562, 19.886627197265625, 55.814666748046875 ], "score": 0.1895579993724823 }, { "image_id": 2071, "category_id": 1.0, "bbox": [ 484.4573211669922, 225.29083251953125, 16.533737182617188, 47.063323974609375 ], "score": 0.11605505645275116 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 142.17100143432617, 215.10604858398438, 26.683502197265625, 44.48583984375 ], "score": 0.8875314593315125 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 527.8274917602539, 228.26400756835938, 22.221755981445312, 58.0863037109375 ], "score": 0.7846710681915283 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 205.93523025512695, 215.92581176757812, 33.687744140625, 37.1378173828125 ], "score": 0.7181486487388611 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 491.51355743408203, 223.2965087890625, 21.42791748046875, 44.413330078125 ], "score": 0.6668215990066528 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 501.50089263916016, 226.04541015625, 22.585220336914062, 44.7823486328125 ], "score": 0.4731229543685913 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 289.6973991394043, 217.92401123046875, 19.08233642578125, 38.0538330078125 ], "score": 0.20367878675460815 }, { "image_id": 2072, "category_id": 1.0, "bbox": [ 507.84576416015625, 221.2332000732422, 49.89501953125, 62.15769958496094 ], "score": 0.1111212745308876 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 208.3638572692871, 215.49880981445312, 31.241493225097656, 37.919830322265625 ], "score": 0.7672316431999207 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 120.6171989440918, 213.8851318359375, 19.139080047607422, 44.783447265625 ], "score": 0.7314087152481079 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 572.9406356811523, 213.07275390625, 24.75982666015625, 68.91934204101562 ], "score": 0.6492289304733276 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 266.79309844970703, 217.6895294189453, 19.378433227539062, 44.68812561035156 ], "score": 0.641390860080719 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 135.35000801086426, 216.732421875, 16.543121337890625, 43.80169677734375 ], "score": 0.41586217284202576 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 263.8440704345703, 175.79541015625, 29.76898193359375, 71.58065795898438 ], "score": 0.13701830804347992 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 201.88209533691406, 205.71890258789062, 91.00200653076172, 60.1221923828125 ], "score": 0.122438445687294 }, { "image_id": 2073, "category_id": 1.0, "bbox": [ 516.8525695800781, 227.3214111328125, 18.167648315429688, 39.186676025390625 ], "score": 0.10837821662425995 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 424.80072021484375, 227.61964416503906, 26.953887939453125, 74.93870544433594 ], "score": 0.9989777207374573 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 233.55592727661133, 221.1631622314453, 25.841064453125, 64.68327331542969 ], "score": 0.9985581636428833 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 214.25460815429688, 220.84619140625, 27.00031280517578, 68.83758544921875 ], "score": 0.997100830078125 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 40.43734550476074, 229.59683227539062, 62.634830474853516, 150.22674560546875 ], "score": 0.9941146373748779 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 405.63404083251953, 225.27774047851562, 25.896682739257812, 76.2996826171875 ], "score": 0.9125380516052246 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 18.360235691070557, 233.66921997070312, 58.01445722579956, 153.4603271484375 ], "score": 0.432969331741333 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 498.97777557373047, 125.38890838623047, 37.61177062988281, 106.7916030883789 ], "score": 0.26294130086898804 }, { "image_id": 2074, "category_id": 1.0, "bbox": [ 366.1707305908203, 222.0922088623047, 18.253326416015625, 28.936767578125 ], "score": 0.11841212958097458 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 455.6068420410156, 232.9512939453125, 31.3055419921875, 79.392822265625 ], "score": 0.9984745979309082 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 232.41765975952148, 218.2129364013672, 27.938880920410156, 70.04725646972656 ], "score": 0.9935987591743469 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 216.05520248413086, 220.021240234375, 27.8179931640625, 69.45645141601562 ], "score": 0.9923144578933716 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 21.449308395385742, 221.0148468017578, 69.7795581817627, 191.64048767089844 ], "score": 0.9907525777816772 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 431.27960205078125, 228.64698791503906, 28.880462646484375, 91.39222717285156 ], "score": 0.9621038436889648 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 203.92087936401367, 215.93484497070312, 29.84851837158203, 68.59494018554688 ], "score": 0.15950095653533936 }, { "image_id": 2075, "category_id": 1.0, "bbox": [ 381.0078430175781, 214.9814453125, 62.73223876953125, 42.895172119140625 ], "score": 0.11364701390266418 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 221.8193817138672, 209.70147705078125, 32.061195373535156, 84.33038330078125 ], "score": 0.9995009899139404 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 477.98892974853516, 232.7432861328125, 38.00575256347656, 111.51348876953125 ], "score": 0.998847246170044 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 196.6413688659668, 218.97044372558594, 30.801849365234375, 73.51368713378906 ], "score": 0.9965612888336182 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 449.3798828125, 231.6755828857422, 40.24574279785156, 115.00642395019531 ], "score": 0.9326395988464355 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 427.78491973876953, 219.72447204589844, 20.000762939453125, 50.22642517089844 ], "score": 0.5425655841827393 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 535.8035659790039, 213.4024200439453, 26.102981567382812, 55.99189758300781 ], "score": 0.3681672513484955 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 392.1136474609375, 217.88723754882812, 31.417007446289062, 35.675537109375 ], "score": 0.18655262887477875 }, { "image_id": 2076, "category_id": 1.0, "bbox": [ 372.7593231201172, 213.16592407226562, 69.70466613769531, 43.959014892578125 ], "score": 0.1212616115808487 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 184.33528900146484, 217.41281127929688, 33.98887634277344, 87.49078369140625 ], "score": 0.999464750289917 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 221.34376525878906, 215.3434600830078, 35.103492736816406, 88.88380432128906 ], "score": 0.9990509152412415 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 535.5313491821289, 245.45013427734375, 46.288604736328125, 139.1578369140625 ], "score": 0.991354763507843 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 494.2452621459961, 230.757568359375, 47.628631591796875, 164.1239013671875 ], "score": 0.8713831305503845 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 266.81806564331055, 215.4056854248047, 17.934722900390625, 43.64958190917969 ], "score": 0.6578941345214844 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 425.2681350708008, 223.12132263183594, 20.34271240234375, 54.66307067871094 ], "score": 0.5335215926170349 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 454.4452667236328, 230.64016723632812, 21.071929931640625, 50.177490234375 ], "score": 0.21526683866977692 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 540.8755874633789, 196.17800903320312, 43.69331359863281, 97.5372314453125 ], "score": 0.2098340392112732 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 373.8284683227539, 216.37652587890625, 77.926025390625, 48.627044677734375 ], "score": 0.16423073410987854 }, { "image_id": 2077, "category_id": 1.0, "bbox": [ 409.5097351074219, 219.82118225097656, 18.064498901367188, 47.20259094238281 ], "score": 0.15675894916057587 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 214.72543716430664, 215.1881866455078, 38.1591796875, 98.16923522949219 ], "score": 0.9992754459381104 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 176.73309326171875, 218.233154296875, 36.4288330078125, 94.61590576171875 ], "score": 0.9987645149230957 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 428.9073944091797, 223.1395721435547, 24.532089233398438, 64.96421813964844 ], "score": 0.8838695287704468 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 268.1546211242676, 217.02706909179688, 18.179054260253906, 47.5311279296875 ], "score": 0.4185803532600403 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 606.5425872802734, 216.2595977783203, 28.346939086914062, 74.19691467285156 ], "score": 0.3734470307826996 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 259.32302474975586, 218.17364501953125, 17.309188842773438, 45.89068603515625 ], "score": 0.37141159176826477 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 409.7702407836914, 221.42970275878906, 17.959671020507812, 46.64024353027344 ], "score": 0.2035505175590515 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 591.9570922851562, 212.35653686523438, 29.841079711914062, 69.50726318359375 ], "score": 0.18719246983528137 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 353.75606536865234, 221.9530487060547, 26.406097412109375, 45.98515319824219 ], "score": 0.12459655106067657 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 464.8978805541992, 231.90187072753906, 21.306610107421875, 50.53141784667969 ], "score": 0.111380435526371 }, { "image_id": 2078, "category_id": 1.0, "bbox": [ 367.9303741455078, 225.07774353027344, 23.208465576171875, 42.80531311035156 ], "score": 0.10433699935674667 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 128.46500396728516, 220.08360290527344, 40.90007781982422, 104.74476623535156 ], "score": 0.999617338180542 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 169.41747665405273, 209.41030883789062, 45.40946960449219, 122.43310546875 ], "score": 0.9987329244613647 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 422.8310012817383, 221.80410766601562, 26.990432739257812, 71.29364013671875 ], "score": 0.9187216758728027 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 243.6905288696289, 212.6324920654297, 19.631729125976562, 51.17662048339844 ], "score": 0.6855762004852295 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 232.9307746887207, 213.49900817871094, 19.606361389160156, 53.22114562988281 ], "score": 0.6397867202758789 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 458.11058044433594, 231.2265625, 26.674118041992188, 68.67095947265625 ], "score": 0.4451058506965637 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 401.4895248413086, 222.60694885253906, 19.42779541015625, 43.97132873535156 ], "score": 0.3961102068424225 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 389.2018127441406, 223.59193420410156, 19.557952880859375, 45.20066833496094 ], "score": 0.2975521683692932 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 14.320247173309326, 261.1344299316406, 52.52263307571411, 74.69580078125 ], "score": 0.2774510085582733 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 583.0549240112305, 195.3259735107422, 26.909942626953125, 62.43104553222656 ], "score": 0.19386035203933716 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 563.4640502929688, 268.49774169921875, 15.886688232421875, 33.288818359375 ], "score": 0.18129593133926392 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 560.9977722167969, 89.825927734375, 35.7476806640625, 97.8309326171875 ], "score": 0.1261255145072937 }, { "image_id": 2079, "category_id": 1.0, "bbox": [ 584.6511840820312, 168.73776245117188, 23.480606079101562, 61.29705810546875 ], "score": 0.10807212442159653 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 91.2452507019043, 211.50445556640625, 63.06640625, 143.76483154296875 ], "score": 0.9998531341552734 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 40.89652061462402, 210.75619506835938, 58.49434852600098, 139.29132080078125 ], "score": 0.9997830986976624 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 200.93212127685547, 210.9573974609375, 23.59996795654297, 64.09967041015625 ], "score": 0.9980869293212891 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 186.19203567504883, 211.80308532714844, 19.30072784423828, 60.32908630371094 ], "score": 0.9945130348205566 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 596.9623184204102, 218.67489624023438, 31.398239135742188, 106.52911376953125 ], "score": 0.9917787313461304 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 455.81787109375, 230.8532257080078, 29.528427124023438, 75.35816955566406 ], "score": 0.9900951385498047 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 374.5884704589844, 225.63864135742188, 21.734848022460938, 51.36907958984375 ], "score": 0.5772233605384827 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 415.7889175415039, 224.16358947753906, 32.505950927734375, 87.74906921386719 ], "score": 0.568950355052948 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 353.9732360839844, 225.5137176513672, 21.30096435546875, 46.76356506347656 ], "score": 0.488482803106308 }, { "image_id": 2080, "category_id": 1.0, "bbox": [ 398.4162902832031, 224.6580047607422, 27.37457275390625, 67.48588562011719 ], "score": 0.3996094763278961 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 164.38514709472656, 214.64938354492188, 32.50701904296875, 77.22573852539062 ], "score": 0.9994140863418579 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 141.42332077026367, 216.70956420898438, 30.101947784423828, 71.49203491210938 ], "score": 0.9972302913665771 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 19.78438377380371, 199.2225341796875, 81.22796058654785, 197.39166259765625 ], "score": 0.9938912987709045 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 433.3888626098633, 219.30703735351562, 40.51933288574219, 113.9747314453125 ], "score": 0.9887162446975708 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 480.4618453979492, 229.19078063964844, 41.31996154785156, 102.23695373535156 ], "score": 0.979112982749939 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 358.96690368652344, 224.46075439453125, 25.925750732421875, 63.73291015625 ], "score": 0.8604023456573486 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 384.6349334716797, 229.40928649902344, 25.900497436523438, 61.38389587402344 ], "score": 0.811861515045166 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 533.9775466918945, 195.88613891601562, 30.176239013671875, 86.19869995117188 ], "score": 0.2123313844203949 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 574.6822738647461, 165.29458618164062, 21.435394287109375, 53.9288330078125 ], "score": 0.1873268187046051 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 531.5180969238281, 241.76568603515625, 33.45893859863281, 93.01971435546875 ], "score": 0.13256075978279114 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 265.77404022216797, 215.57058715820312, 19.915847778320312, 33.212799072265625 ], "score": 0.11943802982568741 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 327.32078552246094, 214.66378784179688, 16.9781494140625, 48.78125 ], "score": 0.1028054803609848 }, { "image_id": 2081, "category_id": 1.0, "bbox": [ 251.87456130981445, 213.6348876953125, 18.824501037597656, 36.39544677734375 ], "score": 0.10172887146472931 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 101.6032600402832, 220.76953125, 35.573883056640625, 88.32086181640625 ], "score": 0.9985274076461792 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 130.41388511657715, 217.24087524414062, 36.02517127990723, 92.47601318359375 ], "score": 0.9979933500289917 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 395.4383087158203, 228.69253540039062, 29.729232788085938, 79.4715576171875 ], "score": 0.9881995916366577 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 472.81543731689453, 224.37705993652344, 45.51582336425781, 138.0852813720703 ], "score": 0.9825935363769531 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 542.8265380859375, 244.44927978515625, 42.00019836425781, 122.207763671875 ], "score": 0.9559906721115112 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 421.1295700073242, 229.44586181640625, 30.116958618164062, 78.04302978515625 ], "score": 0.5537698268890381 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 590.7080841064453, 171.9534912109375, 39.58656311035156, 102.04959106445312 ], "score": 0.21496692299842834 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 243.38924407958984, 214.7716064453125, 65.65853118896484, 48.4056396484375 ], "score": 0.18975834548473358 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 329.0345001220703, 213.73321533203125, 19.569625854492188, 50.0848388671875 ], "score": 0.18004880845546722 }, { "image_id": 2082, "category_id": 1.0, "bbox": [ 268.6714172363281, 216.7788848876953, 29.29645538330078, 41.39625549316406 ], "score": 0.11240334808826447 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 31.31417751312256, 217.05450439453125, 49.88729953765869, 132.0799560546875 ], "score": 0.9997758865356445 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 75.16841411590576, 213.43966674804688, 48.9263391494751, 135.83892822265625 ], "score": 0.999047040939331 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 477.57102966308594, 231.8747100830078, 36.012115478515625, 107.47630310058594 ], "score": 0.9899579286575317 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 504.86820220947266, 229.7337646484375, 37.01255798339844, 104.64300537109375 ], "score": 0.969020664691925 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 569.8645401000977, 219.1693115234375, 58.08021545410156, 213.6485595703125 ], "score": 0.9447430372238159 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 140.87594032287598, 208.62033081054688, 20.655317306518555, 50.890777587890625 ], "score": 0.6517495512962341 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 267.5000762939453, 207.36788940429688, 49.02202606201172, 53.1328125 ], "score": 0.4932864308357239 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 270.7499313354492, 208.51693725585938, 25.7745361328125, 40.459564208984375 ], "score": 0.2002100795507431 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 347.4123001098633, 208.3457794189453, 20.6427001953125, 53.76292419433594 ], "score": 0.1853642463684082 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 333.4119415283203, 185.73822021484375, 26.559371948242188, 65.99325561523438 ], "score": 0.15996426343917847 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 586.0881805419922, 299.766357421875, 45.813751220703125, 143.11907958984375 ], "score": 0.11424513161182404 }, { "image_id": 2083, "category_id": 1.0, "bbox": [ 284.99521255493164, 211.03793334960938, 26.21978759765625, 41.337646484375 ], "score": 0.10667815059423447 }, { "image_id": 2084, "category_id": 1.0, "bbox": [ 165.73663711547852, 215.09765625, 25.62702178955078, 56.57891845703125 ], "score": 0.998589038848877 }, { "image_id": 2084, "category_id": 1.0, "bbox": [ 364.5370864868164, 218.52099609375, 20.653762817382812, 49.92474365234375 ], "score": 0.9192624092102051 }, { "image_id": 2084, "category_id": 1.0, "bbox": [ 346.5473937988281, 195.4951629638672, 23.15582275390625, 60.33831787109375 ], "score": 0.29099249839782715 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 377.05902099609375, 220.77120971679688, 25.293807983398438, 55.353790283203125 ], "score": 0.9991453886032104 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 144.76261138916016, 221.6084747314453, 25.836772918701172, 61.93452453613281 ], "score": 0.9950683116912842 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 125.95026969909668, 212.71743774414062, 28.518047332763672, 69.52584838867188 ], "score": 0.9441572427749634 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 356.22772216796875, 221.6903076171875, 20.048370361328125, 49.969146728515625 ], "score": 0.43975815176963806 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 264.47265625, 217.15805053710938, 21.650848388671875, 46.697723388671875 ], "score": 0.28900355100631714 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 246.70700073242188, 218.3368682861328, 19.937705993652344, 48.61433410644531 ], "score": 0.22522655129432678 }, { "image_id": 2085, "category_id": 1.0, "bbox": [ 271.171932220459, 211.37303161621094, 52.370548248291016, 60.74388122558594 ], "score": 0.15340568125247955 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 129.2919158935547, 224.4764404296875, 30.379676818847656, 75.6484375 ], "score": 0.9988133907318115 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 102.95814514160156, 220.0590362548828, 30.62143325805664, 73.04814147949219 ], "score": 0.9985498189926147 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 393.47721099853516, 226.4887237548828, 25.258712768554688, 68.48390197753906 ], "score": 0.9968205094337463 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 362.39559173583984, 221.71275329589844, 29.906082153320312, 82.07218933105469 ], "score": 0.6197270154953003 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 258.740291595459, 218.97860717773438, 21.370849609375, 56.846588134765625 ], "score": 0.5582852363586426 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 117.24498748779297, 225.62661743164062, 30.519657135009766, 71.506103515625 ], "score": 0.38843512535095215 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 231.7190933227539, 225.17881774902344, 19.846763610839844, 47.33204650878906 ], "score": 0.37897786498069763 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 241.51344299316406, 223.387451171875, 19.49512481689453, 50.19268798828125 ], "score": 0.30867260694503784 }, { "image_id": 2086, "category_id": 1.0, "bbox": [ 250.84577560424805, 220.62139892578125, 18.935623168945312, 51.906768798828125 ], "score": 0.2199706733226776 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 102.03357696533203, 217.5970458984375, 33.29206466674805, 81.65106201171875 ], "score": 0.9988689422607422 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 415.5786895751953, 224.57455444335938, 30.622711181640625, 81.18133544921875 ], "score": 0.9987680912017822 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 75.32835006713867, 209.41531372070312, 36.764163970947266, 97.45263671875 ], "score": 0.9960721731185913 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 389.51385498046875, 226.9333038330078, 30.88470458984375, 83.12620544433594 ], "score": 0.9297910928726196 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 239.35359954833984, 212.94924926757812, 21.70848846435547, 56.36773681640625 ], "score": 0.5212604403495789 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 204.25214767456055, 217.5256805419922, 22.38658905029297, 54.16578674316406 ], "score": 0.5159719586372375 }, { "image_id": 2087, "category_id": 1.0, "bbox": [ 219.62650299072266, 214.8052978515625, 21.476669311523438, 61.040374755859375 ], "score": 0.4701792895793915 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 68.01721096038818, 212.0653839111328, 36.84530735015869, 101.88804626464844 ], "score": 0.9991238713264465 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 450.8462905883789, 229.28073120117188, 38.38172912597656, 109.95867919921875 ], "score": 0.9984009265899658 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 419.37976837158203, 228.030029296875, 35.528564453125, 107.80377197265625 ], "score": 0.9983658790588379 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 33.07595729827881, 205.62677001953125, 40.43923377990723, 102.23675537109375 ], "score": 0.9976229667663574 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 157.35023498535156, 215.6298828125, 29.03270721435547, 67.92697143554688 ], "score": 0.48099422454833984 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 180.63955307006836, 211.42742919921875, 29.474029541015625, 71.62765502929688 ], "score": 0.45712125301361084 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 211.73480987548828, 205.85597229003906, 31.71154022216797, 83.16966247558594 ], "score": 0.3715413510799408 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 226.03776931762695, 209.11013793945312, 29.8565673828125, 78.07382202148438 ], "score": 0.1581421047449112 }, { "image_id": 2088, "category_id": 1.0, "bbox": [ 257.2155570983887, 212.73617553710938, 21.56200408935547, 44.9259033203125 ], "score": 0.13877049088478088 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 49.90720272064209, 222.4103546142578, 45.0463342666626, 120.42161560058594 ], "score": 0.9991720914840698 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 14.23243761062622, 211.10000610351562, 47.35050916671753, 135.53106689453125 ], "score": 0.9990627765655518 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 519.9094009399414, 250.4980010986328, 55.54389953613281, 148.1263885498047 ], "score": 0.9987989068031311 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 125.97552299499512, 222.05284118652344, 36.117753982543945, 89.21452331542969 ], "score": 0.9981008768081665 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 474.2715835571289, 238.39239501953125, 54.33219909667969, 156.0762939453125 ], "score": 0.9949115514755249 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 196.9375228881836, 208.96853637695312, 34.58251953125, 106.9700927734375 ], "score": 0.9841668605804443 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 165.69133758544922, 214.26258850097656, 33.27220916748047, 104.05601501464844 ], "score": 0.8053947687149048 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 231.16092681884766, 217.4373016357422, 24.447593688964844, 61.46226501464844 ], "score": 0.700318455696106 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 277.15742111206055, 218.65444946289062, 23.834609985351562, 43.441131591796875 ], "score": 0.18246355652809143 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 289.2193031311035, 222.16372680664062, 24.47010040283203, 52.49566650390625 ], "score": 0.1498306691646576 }, { "image_id": 2089, "category_id": 1.0, "bbox": [ 304.9717903137207, 226.36917114257812, 20.119152069091797, 50.8299560546875 ], "score": 0.13809487223625183 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 82.09184646606445, 211.69833374023438, 51.53474807739258, 132.31658935546875 ], "score": 0.999824047088623 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 130.80772399902344, 216.80856323242188, 45.54553985595703, 125.3450927734375 ], "score": 0.9985090494155884 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 17.959365844726562, 224.25477600097656, 54.50148582458496, 143.17466735839844 ], "score": 0.9982637166976929 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 173.8173484802246, 200.64080810546875, 49.43656921386719, 151.58038330078125 ], "score": 0.9617003202438354 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 241.69532775878906, 215.22195434570312, 25.866432189941406, 56.276885986328125 ], "score": 0.909347414970398 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 223.67069244384766, 214.5909423828125, 25.910720825195312, 63.432952880859375 ], "score": 0.8450654149055481 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 298.9999198913574, 213.6182403564453, 20.415382385253906, 44.25907897949219 ], "score": 0.277746319770813 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 313.35241317749023, 216.93467712402344, 19.707698822021484, 44.50025939941406 ], "score": 0.17299097776412964 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 233.11368942260742, 214.616455078125, 24.421615600585938, 48.9239501953125 ], "score": 0.10250133275985718 }, { "image_id": 2090, "category_id": 1.0, "bbox": [ 322.1919250488281, 213.50518798828125, 19.43756103515625, 46.118804931640625 ], "score": 0.10051007568836212 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 56.83277606964111, 206.85055541992188, 55.027594566345215, 177.7777099609375 ], "score": 0.9938448667526245 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 98.95547866821289, 208.35923767089844, 65.79622268676758, 187.0966339111328 ], "score": 0.9479883909225464 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 196.14519119262695, 222.09889221191406, 28.222732543945312, 66.93940734863281 ], "score": 0.8964977264404297 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 6.352038383483887, 228.60452270507812, 58.0762243270874, 162.11944580078125 ], "score": 0.8257402181625366 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 217.5170135498047, 218.74468994140625, 27.419815063476562, 71.50894165039062 ], "score": 0.464559406042099 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 290.2560234069824, 217.43267822265625, 21.557960510253906, 45.183685302734375 ], "score": 0.39444079995155334 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 119.89130973815918, 274.4972229003906, 48.11272621154785, 115.7598876953125 ], "score": 0.353503555059433 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 304.69446182250977, 221.41464233398438, 20.246906280517578, 43.96197509765625 ], "score": 0.3450770974159241 }, { "image_id": 2091, "category_id": 1.0, "bbox": [ 3.38403582572937, 225.95721435546875, 31.821285486221313, 76.51226806640625 ], "score": 0.2022138088941574 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 162.05001831054688, 217.4918975830078, 34.831695556640625, 79.83979797363281 ], "score": 0.9492869973182678 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 137.5336742401123, 220.24472045898438, 33.46632957458496, 84.219482421875 ], "score": 0.730613112449646 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 18.36687207221985, 213.06903076171875, 35.27882933616638, 61.578399658203125 ], "score": 0.5788154602050781 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 392.15206146240234, 223.77720642089844, 33.37562561035156, 76.99043273925781 ], "score": 0.36565646529197693 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 38.62720489501953, 214.08164978027344, 38.90581130981445, 64.92579650878906 ], "score": 0.23943334817886353 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 287.8688049316406, 222.1259002685547, 18.70349884033203, 39.96229553222656 ], "score": 0.1816609501838684 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 8.101918697357178, 214.09005737304688, 30.336570739746094, 64.02651977539062 ], "score": 0.13888044655323029 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 264.0695571899414, 225.102294921875, 27.05707550048828, 40.5704345703125 ], "score": 0.13417905569076538 }, { "image_id": 2092, "category_id": 1.0, "bbox": [ 242.26984024047852, 227.4600067138672, 73.74073028564453, 60.80046081542969 ], "score": 0.10464280843734741 }, { "image_id": 2093, "category_id": 1.0, "bbox": [ 124.44475173950195, 221.0380401611328, 37.932395935058594, 82.51185607910156 ], "score": 0.9692609310150146 }, { "image_id": 2093, "category_id": 1.0, "bbox": [ 256.4909362792969, 216.8091583251953, 22.439498901367188, 49.13389587402344 ], "score": 0.19485321640968323 }, { "image_id": 2093, "category_id": 1.0, "bbox": [ 281.2703514099121, 220.8626251220703, 19.855880737304688, 53.55039978027344 ], "score": 0.15032191574573517 }, { "image_id": 2093, "category_id": 1.0, "bbox": [ 83.3722972869873, 220.71546936035156, 46.45734786987305, 92.05906677246094 ], "score": 0.12561708688735962 }, { "image_id": 2093, "category_id": 1.0, "bbox": [ 134.34600830078125, 219.5204620361328, 57.65972137451172, 81.34996032714844 ], "score": 0.12257169932126999 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 85.8418083190918, 227.2351837158203, 42.895469665527344, 91.08885192871094 ], "score": 0.9894689321517944 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 317.40234375, 221.14865112304688, 17.35504150390625, 49.012603759765625 ], "score": 0.3196561336517334 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 286.8494987487793, 221.63729858398438, 20.815353393554688, 42.71038818359375 ], "score": 0.3076627552509308 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 298.647518157959, 221.80125427246094, 19.231834411621094, 50.53507995605469 ], "score": 0.29657408595085144 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 541.1399841308594, 287.6249084472656, 57.90657043457031, 141.3194580078125 ], "score": 0.15989044308662415 }, { "image_id": 2094, "category_id": 1.0, "bbox": [ 30.469460487365723, 232.03488159179688, 50.35386562347412, 94.24884033203125 ], "score": 0.10204879939556122 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 343.14266204833984, 220.5668182373047, 20.736923217773438, 54.55342102050781 ], "score": 0.5156201124191284 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 311.1726379394531, 222.56240844726562, 19.308547973632812, 46.84429931640625 ], "score": 0.4643562436103821 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 328.4212875366211, 223.0135040283203, 18.357925415039062, 46.68089294433594 ], "score": 0.3803486227989197 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 18.246865272521973, 230.46173095703125, 48.0855655670166, 87.4251708984375 ], "score": 0.22194808721542358 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 189.74287033081055, 219.97386169433594, 54.19036865234375, 71.58613586425781 ], "score": 0.1987919956445694 }, { "image_id": 2095, "category_id": 1.0, "bbox": [ 352.83416748046875, 221.0890350341797, 18.855438232421875, 50.56126403808594 ], "score": 0.12159393727779388 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 346.6707229614258, 222.78787231445312, 19.926300048828125, 52.212066650390625 ], "score": 0.9551333785057068 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 308.6344337463379, 222.22718811035156, 21.919384002685547, 49.52796936035156 ], "score": 0.6271671056747437 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 139.44244384765625, 226.15155029296875, 37.21782684326172, 72.716796875 ], "score": 0.46776527166366577 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 330.70125579833984, 224.60366821289062, 18.048858642578125, 48.24114990234375 ], "score": 0.45995834469795227 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 358.07334899902344, 224.58670043945312, 20.150222778320312, 57.3243408203125 ], "score": 0.24628111720085144 }, { "image_id": 2096, "category_id": 1.0, "bbox": [ 338.98387908935547, 221.21697998046875, 19.794540405273438, 50.104736328125 ], "score": 0.13602036237716675 }, { "image_id": 2097, "category_id": 1.0, "bbox": [ 330.2699279785156, 215.62661743164062, 22.341384887695312, 57.934661865234375 ], "score": 0.9987666606903076 }, { "image_id": 2097, "category_id": 1.0, "bbox": [ 313.72949600219727, 213.85848999023438, 21.273059844970703, 54.50225830078125 ], "score": 0.9348877668380737 }, { "image_id": 2097, "category_id": 1.0, "bbox": [ 354.14100646972656, 219.24073791503906, 20.057144165039062, 55.89476013183594 ], "score": 0.8302831053733826 }, { "image_id": 2097, "category_id": 1.0, "bbox": [ 51.99662208557129, 232.7694549560547, 44.10984992980957, 105.84889221191406 ], "score": 0.6653258204460144 }, { "image_id": 2097, "category_id": 1.0, "bbox": [ 36.795361042022705, 247.28619384765625, 47.17016935348511, 124.85577392578125 ], "score": 0.6462383270263672 }, { "image_id": 2098, "category_id": 1.0, "bbox": [ 345.7532501220703, 214.2106170654297, 26.344375610351562, 67.50651550292969 ], "score": 0.9979290962219238 }, { "image_id": 2098, "category_id": 1.0, "bbox": [ 375.34786224365234, 220.483154296875, 23.420791625976562, 52.180419921875 ], "score": 0.8100199699401855 }, { "image_id": 2099, "category_id": 1.0, "bbox": [ 379.88624572753906, 213.60934448242188, 27.5677490234375, 73.38958740234375 ], "score": 0.9951610565185547 }, { "image_id": 2099, "category_id": 1.0, "bbox": [ 407.1321487426758, 220.5117645263672, 24.655380249023438, 64.07786560058594 ], "score": 0.7829350233078003 }, { "image_id": 2099, "category_id": 1.0, "bbox": [ 217.46822357177734, 215.85018920898438, 51.08356475830078, 115.76611328125 ], "score": 0.19890901446342468 }, { "image_id": 2099, "category_id": 1.0, "bbox": [ 200.96439361572266, 141.07838439941406, 24.376258850097656, 58.940093994140625 ], "score": 0.11758018285036087 }, { "image_id": 2100, "category_id": 1.0, "bbox": [ 433.2129669189453, 224.65182495117188, 22.860260009765625, 60.81390380859375 ], "score": 0.9841744303703308 }, { "image_id": 2100, "category_id": 1.0, "bbox": [ 411.6740417480469, 217.92776489257812, 26.98150634765625, 69.63894653320312 ], "score": 0.9742408394813538 }, { "image_id": 2100, "category_id": 1.0, "bbox": [ 445.9339904785156, 224.16256713867188, 25.1849365234375, 68.270263671875 ], "score": 0.8973820209503174 }, { "image_id": 2100, "category_id": 1.0, "bbox": [ 423.50528717041016, 218.05621337890625, 24.564361572265625, 71.20843505859375 ], "score": 0.4173675775527954 }, { "image_id": 2100, "category_id": 1.0, "bbox": [ 404.01859283447266, 213.8166046142578, 23.261566162109375, 64.90425109863281 ], "score": 0.1763126254081726 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 440.97938537597656, 238.3060302734375, 26.685409545898438, 74.739501953125 ], "score": 0.9700114727020264 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 463.30997467041016, 240.8627166748047, 23.268966674804688, 64.39683532714844 ], "score": 0.8439677953720093 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 424.75345611572266, 234.04701232910156, 20.497817993164062, 51.36616516113281 ], "score": 0.4660561680793762 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 314.8607635498047, 234.5325164794922, 44.23126220703125, 118.00447082519531 ], "score": 0.2843762934207916 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 471.0061264038086, 246.2374267578125, 23.811111450195312, 67.51666259765625 ], "score": 0.13750897347927094 }, { "image_id": 2101, "category_id": 1.0, "bbox": [ 328.63807678222656, 221.50149536132812, 23.709487915039062, 61.385955810546875 ], "score": 0.12039101868867874 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 453.65550994873047, 247.65621948242188, 32.65464782714844, 96.45343017578125 ], "score": 0.9981094598770142 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 430.11547088623047, 245.1965789794922, 23.52813720703125, 62.47273254394531 ], "score": 0.7482414245605469 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 487.24082946777344, 249.05657958984375, 37.6177978515625, 92.65740966796875 ], "score": 0.47349637746810913 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 364.7353744506836, 238.4442596435547, 68.19847106933594, 47.89424133300781 ], "score": 0.15827126801013947 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 479.94739532470703, 250.2755126953125, 25.230941772460938, 88.4024658203125 ], "score": 0.1450665295124054 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 421.8495559692383, 243.53958129882812, 37.34550476074219, 103.44451904296875 ], "score": 0.12078151106834412 }, { "image_id": 2102, "category_id": 1.0, "bbox": [ 401.01600646972656, 239.34573364257812, 26.917343139648438, 39.427734375 ], "score": 0.10639527440071106 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 458.45176696777344, 241.0792694091797, 34.71885681152344, 98.66590881347656 ], "score": 0.9965916872024536 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 429.7395324707031, 227.089111328125, 25.844955444335938, 59.70465087890625 ], "score": 0.9942498803138733 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 482.37842559814453, 237.34658813476562, 25.316848754882812, 95.66485595703125 ], "score": 0.8873460292816162 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 370.3167724609375, 217.5810546875, 64.02168273925781, 50.59759521484375 ], "score": 0.2290554642677307 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 528.6491775512695, 184.39974975585938, 23.710556030273438, 52.8690185546875 ], "score": 0.177450031042099 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 221.51342391967773, 127.40536499023438, 30.777053833007812, 76.34414672851562 ], "score": 0.14849472045898438 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 399.6154022216797, 223.0370330810547, 26.247329711914062, 42.89250183105469 ], "score": 0.14230340719223022 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 421.84444427490234, 221.54962158203125, 35.897369384765625, 107.45306396484375 ], "score": 0.14141762256622314 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 313.2303047180176, 220.30059814453125, 33.6768913269043, 77.071533203125 ], "score": 0.1270931214094162 }, { "image_id": 2103, "category_id": 1.0, "bbox": [ 341.1757278442383, 217.7906494140625, 70.95932006835938, 44.633514404296875 ], "score": 0.10545970499515533 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 464.3954086303711, 231.98834228515625, 49.14909362792969, 145.6219482421875 ], "score": 0.9991633892059326 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 284.9912643432617, 214.7882080078125, 32.435874938964844, 81.43136596679688 ], "score": 0.26205429434776306 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 337.6355743408203, 245.49746704101562, 45.58204650878906, 89.49835205078125 ], "score": 0.22363461554050446 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 381.45057678222656, 213.44529724121094, 23.137741088867188, 46.94190979003906 ], "score": 0.1304631531238556 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 529.1489410400391, 179.89236450195312, 20.686874389648438, 53.057159423828125 ], "score": 0.11777131259441376 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 301.1318588256836, 215.81552124023438, 27.08942413330078, 52.1182861328125 ], "score": 0.1140260398387909 }, { "image_id": 2104, "category_id": 1.0, "bbox": [ 339.0215301513672, 262.2493591308594, 30.970840454101562, 49.46014404296875 ], "score": 0.10103370994329453 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 494.36214447021484, 224.29736328125, 77.39013671875, 215.3118896484375 ], "score": 0.9990377426147461 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 481.9297409057617, 235.43405151367188, 44.37660217285156, 153.28948974609375 ], "score": 0.5352046489715576 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 391.1918258666992, 206.05348205566406, 25.373001098632812, 57.10234069824219 ], "score": 0.4885290563106537 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 246.08623504638672, 198.10372924804688, 32.58068084716797, 83.07449340820312 ], "score": 0.4332466125488281 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 486.7125701904297, 225.81309509277344, 31.70440673828125, 103.93122863769531 ], "score": 0.22035078704357147 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 520.6940078735352, 179.26979064941406, 38.59306335449219, 98.32408142089844 ], "score": 0.17526841163635254 }, { "image_id": 2105, "category_id": 1.0, "bbox": [ 362.14977264404297, 204.6668701171875, 19.337005615234375, 44.78594970703125 ], "score": 0.1110328957438469 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 503.8224411010742, 228.31179809570312, 73.68858337402344, 226.05596923828125 ], "score": 0.936649739742279 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 573.4696197509766, 231.17999267578125, 60.05775451660156, 274.229736328125 ], "score": 0.6401088237762451 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 334.89574432373047, 190.49234008789062, 25.529327392578125, 58.531646728515625 ], "score": 0.6378982067108154 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 368.53187561035156, 193.1376953125, 24.734649658203125, 63.107025146484375 ], "score": 0.2772386968135834 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 203.0448341369629, 190.82501220703125, 38.13789367675781, 97.589111328125 ], "score": 0.2625691294670105 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 61.1194372177124, 50.29283905029297, 48.53687763214111, 114.98209381103516 ], "score": 0.14046917855739594 }, { "image_id": 2106, "category_id": 1.0, "bbox": [ 350.8934020996094, 194.36114501953125, 23.619918823242188, 55.8619384765625 ], "score": 0.10993503034114838 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 317.9376411437988, 214.98150634765625, 21.303157806396484, 49.603851318359375 ], "score": 0.5423402786254883 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 151.79101943969727, 214.4876251220703, 38.27228546142578, 83.75779724121094 ], "score": 0.4445326626300812 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 343.45848083496094, 217.7909393310547, 24.589385986328125, 52.50627136230469 ], "score": 0.25082892179489136 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 297.8511047363281, 214.4186248779297, 19.75482940673828, 44.10990905761719 ], "score": 0.2470920830965042 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 8.65286111831665, 58.23694610595703, 43.537728786468506, 112.1195297241211 ], "score": 0.1067071482539177 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 151.6494655609131, 253.7859649658203, 47.04018592834473, 107.00337219238281 ], "score": 0.1049070805311203 }, { "image_id": 2107, "category_id": 1.0, "bbox": [ 168.3595085144043, 218.0935821533203, 34.151344299316406, 75.04762268066406 ], "score": 0.10221461951732635 }, { "image_id": 2108, "category_id": 1.0, "bbox": [ 59.99387741088867, 208.66390991210938, 38.5537052154541, 98.2542724609375 ], "score": 0.6724209785461426 }, { "image_id": 2108, "category_id": 1.0, "bbox": [ 296.0743713378906, 209.130859375, 27.302513122558594, 69.240234375 ], "score": 0.30516675114631653 }, { "image_id": 2108, "category_id": 1.0, "bbox": [ 247.33169555664062, 212.84222412109375, 24.565086364746094, 49.578277587890625 ], "score": 0.16075070202350616 }, { "image_id": 2108, "category_id": 1.0, "bbox": [ 241.4093780517578, 206.2793731689453, 45.40428161621094, 107.39945983886719 ], "score": 0.1270660012960434 }, { "image_id": 2109, "category_id": 1.0, "bbox": [ 103.3837890625, 204.4620819091797, 22.181243896484375, 59.08445739746094 ], "score": 0.23306496441364288 }, { "image_id": 2109, "category_id": 1.0, "bbox": [ 89.81127738952637, 204.9365997314453, 23.387012481689453, 55.93412780761719 ], "score": 0.20483286678791046 }, { "image_id": 2109, "category_id": 1.0, "bbox": [ 170.25218963623047, 205.71774291992188, 41.88514709472656, 106.67071533203125 ], "score": 0.10223043709993362 }, { "image_id": 2110, "category_id": 1.0, "bbox": [ 135.51541328430176, 201.23724365234375, 66.3895320892334, 65.66366577148438 ], "score": 0.16121041774749756 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 191.7292022705078, 208.01400756835938, 30.690345764160156, 76.91549682617188 ], "score": 0.5751888155937195 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 211.92327499389648, 212.7105712890625, 38.15460205078125, 87.9652099609375 ], "score": 0.5648295879364014 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 127.01644897460938, 205.244384765625, 27.523136138916016, 47.99932861328125 ], "score": 0.4479661285877228 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 121.08977317810059, 203.48626708984375, 58.06096076965332, 69.71710205078125 ], "score": 0.35138505697250366 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 152.74133682250977, 210.55197143554688, 69.51072692871094, 71.1810302734375 ], "score": 0.30654287338256836 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 140.20026206970215, 205.57470703125, 23.93855094909668, 51.433502197265625 ], "score": 0.1718691736459732 }, { "image_id": 2111, "category_id": 1.0, "bbox": [ 530.7762908935547, 164.936279296875, 49.44206237792969, 118.63223266601562 ], "score": 0.10154470801353455 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 158.7739372253418, 206.98764038085938, 23.53260040283203, 55.22515869140625 ], "score": 0.9695622324943542 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 173.25605392456055, 205.68650817871094, 21.08684539794922, 49.4984130859375 ], "score": 0.7940093874931335 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 252.6212501525879, 215.92660522460938, 33.812599182128906, 82.43524169921875 ], "score": 0.738384485244751 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 194.32344436645508, 201.5635986328125, 42.06413269042969, 107.51980590820312 ], "score": 0.68427574634552 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 235.66932678222656, 213.8307342529297, 30.850601196289062, 79.19264221191406 ], "score": 0.5094570517539978 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 184.86719131469727, 203.78695678710938, 21.748008728027344, 52.435089111328125 ], "score": 0.3071762025356293 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 68.80729675292969, 271.1882019042969, 54.50706481933594, 90.052001953125 ], "score": 0.1664944291114807 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 148.65619659423828, 207.30482482910156, 24.94495391845703, 51.61900329589844 ], "score": 0.14075453579425812 }, { "image_id": 2112, "category_id": 1.0, "bbox": [ 185.53882598876953, 169.20416259765625, 26.94568634033203, 69.67315673828125 ], "score": 0.1305747926235199 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 234.1519546508789, 206.32814025878906, 19.82463836669922, 47.665496826171875 ], "score": 0.9890559911727905 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 193.50849151611328, 206.7751007080078, 24.162559509277344, 52.33070373535156 ], "score": 0.9698649644851685 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 304.3090629577637, 213.17149353027344, 36.45112991333008, 86.73109436035156 ], "score": 0.5923521518707275 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 287.33617782592773, 208.1211700439453, 33.306331634521484, 94.62290954589844 ], "score": 0.5636979341506958 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 246.17555618286133, 202.5255126953125, 20.444679260253906, 52.717681884765625 ], "score": 0.555469274520874 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 416.97032928466797, 283.5550537109375, 34.478912353515625, 78.2205810546875 ], "score": 0.30968618392944336 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 279.99114990234375, 168.81210327148438, 31.22264862060547, 74.4114990234375 ], "score": 0.26714032888412476 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 164.55926895141602, 196.21510314941406, 21.640357971191406, 53.14178466796875 ], "score": 0.1977742314338684 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 447.8506088256836, 253.04522705078125, 43.853759765625, 82.7686767578125 ], "score": 0.1525031328201294 }, { "image_id": 2113, "category_id": 1.0, "bbox": [ 257.6045036315918, 203.06304931640625, 31.548995971679688, 86.1297607421875 ], "score": 0.13930261135101318 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 207.79720306396484, 207.53152465820312, 25.7989501953125, 59.530120849609375 ], "score": 0.9961110353469849 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 253.59453201293945, 209.4596405029297, 23.020286560058594, 53.72422790527344 ], "score": 0.9918111562728882 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 189.8146629333496, 208.95480346679688, 24.78168487548828, 55.326416015625 ], "score": 0.9114377498626709 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 335.46443939208984, 219.1395263671875, 35.56816101074219, 99.67718505859375 ], "score": 0.6354952454566956 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 313.6015319824219, 215.9999237060547, 31.466751098632812, 93.19145202636719 ], "score": 0.5053179264068604 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 177.88543701171875, 202.25991821289062, 26.99462890625, 52.842864990234375 ], "score": 0.2170354425907135 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 265.98859786987305, 205.93833923339844, 39.780616760253906, 102.23927307128906 ], "score": 0.21183007955551147 }, { "image_id": 2114, "category_id": 1.0, "bbox": [ 118.01617622375488, 283.34600830078125, 46.59991264343262, 98.69061279296875 ], "score": 0.14442415535449982 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 203.38428497314453, 211.68795776367188, 22.79926300048828, 51.58612060546875 ], "score": 0.9238674640655518 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 252.07645416259766, 215.5443115234375, 19.110984802246094, 48.9869384765625 ], "score": 0.8954319953918457 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 180.96820831298828, 206.5667266845703, 24.960289001464844, 55.53648376464844 ], "score": 0.8307315707206726 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 317.78797149658203, 218.96743774414062, 36.25892639160156, 116.14520263671875 ], "score": 0.5410040616989136 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 342.4761199951172, 224.94532775878906, 33.75480651855469, 109.24827575683594 ], "score": 0.42575603723526 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 177.70112991333008, 201.75314331054688, 51.88713073730469, 63.058441162109375 ], "score": 0.2704099714756012 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 193.16654205322266, 208.77313232421875, 23.56487274169922, 54.59375 ], "score": 0.19583381712436676 }, { "image_id": 2115, "category_id": 1.0, "bbox": [ 271.0868453979492, 213.6500244140625, 25.57147979736328, 78.0731201171875 ], "score": 0.12441615760326385 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 358.1364059448242, 227.21041870117188, 40.657958984375, 108.54443359375 ], "score": 0.988438606262207 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 336.78173065185547, 224.03952026367188, 38.78852844238281, 115.81103515625 ], "score": 0.9879109859466553 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 288.30005645751953, 216.39634704589844, 30.222930908203125, 81.70573425292969 ], "score": 0.8688924908638 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 215.31641006469727, 217.54627990722656, 24.115867614746094, 46.92298889160156 ], "score": 0.8010181188583374 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 268.58802795410156, 218.59678649902344, 31.270751953125, 78.82774353027344 ], "score": 0.6164989471435547 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 184.62987899780273, 215.41766357421875, 23.441085815429688, 49.3203125 ], "score": 0.5604534149169922 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 174.6847152709961, 211.9331512451172, 68.23043823242188, 63.34852600097656 ], "score": 0.3852127194404602 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 198.40465545654297, 212.53176879882812, 22.72369384765625, 50.984405517578125 ], "score": 0.36501872539520264 }, { "image_id": 2116, "category_id": 1.0, "bbox": [ 253.7291145324707, 210.65679931640625, 56.53980255126953, 109.05419921875 ], "score": 0.1098390519618988 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 382.1963119506836, 228.04052734375, 45.04058837890625, 140.6942138671875 ], "score": 0.9981390237808228 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 419.6506881713867, 229.79461669921875, 42.35389709472656, 149.605224609375 ], "score": 0.9927895665168762 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 322.3358154296875, 220.73165893554688, 36.71356201171875, 94.39080810546875 ], "score": 0.9913308620452881 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 401.2443542480469, 224.80581665039062, 44.92485046386719, 146.43780517578125 ], "score": 0.8410614132881165 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 302.86312103271484, 217.7655029296875, 28.46832275390625, 78.0750732421875 ], "score": 0.8125394582748413 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 221.89619064331055, 221.44296264648438, 21.34502410888672, 46.024383544921875 ], "score": 0.672652006149292 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 255.1883316040039, 220.1883087158203, 20.60932159423828, 46.14469909667969 ], "score": 0.4525477886199951 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 238.47312927246094, 216.75048828125, 22.058868408203125, 48.506927490234375 ], "score": 0.2849258780479431 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 343.5144805908203, 218.26199340820312, 23.896865844726562, 82.47198486328125 ], "score": 0.2138553410768509 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 218.33995819091797, 213.93629455566406, 70.46276092529297, 69.22401428222656 ], "score": 0.16902750730514526 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 305.21968841552734, 207.07012939453125, 42.513275146484375, 117.05340576171875 ], "score": 0.11811581254005432 }, { "image_id": 2117, "category_id": 1.0, "bbox": [ 263.2848930358887, 214.6546173095703, 22.584877014160156, 44.07283020019531 ], "score": 0.11307257413864136 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 406.24847412109375, 218.82293701171875, 59.19769287109375, 200.7330322265625 ], "score": 0.9991922378540039 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 454.96143341064453, 234.3388214111328, 56.40480041503906, 178.5006561279297 ], "score": 0.997170627117157 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 351.2332534790039, 216.61993408203125, 35.496673583984375, 101.6746826171875 ], "score": 0.9968864917755127 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 317.6491165161133, 218.8362579345703, 27.899398803710938, 72.54817199707031 ], "score": 0.996376633644104 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 223.01231384277344, 217.56033325195312, 22.44892120361328, 47.409149169921875 ], "score": 0.9214922189712524 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 241.6585922241211, 216.9635467529297, 22.46784210205078, 45.66737365722656 ], "score": 0.5866600275039673 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 267.6993179321289, 218.31239318847656, 21.066856384277344, 51.93983459472656 ], "score": 0.5589891076087952 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 231.63881301879883, 212.17535400390625, 22.41497039794922, 50.749267578125 ], "score": 0.37582504749298096 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 299.74905014038086, 218.09765625, 21.993389129638672, 51.54693603515625 ], "score": 0.3721419870853424 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 475.96107482910156, 267.51251220703125, 43.680419921875, 122.93450927734375 ], "score": 0.21502307057380676 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 399.33284759521484, 231.34170532226562, 42.63389587402344, 139.82354736328125 ], "score": 0.14259332418441772 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 260.07869720458984, 214.7907257080078, 19.24823760986328, 52.22038269042969 ], "score": 0.12341340631246567 }, { "image_id": 2118, "category_id": 1.0, "bbox": [ 264.4690704345703, 222.99801635742188, 61.056365966796875, 77.10516357421875 ], "score": 0.10222043842077255 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 419.6508026123047, 220.89956665039062, 37.84454345703125, 114.60687255859375 ], "score": 0.9915400743484497 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 368.638916015625, 223.57496643066406, 31.918411254882812, 91.97660827636719 ], "score": 0.9907979965209961 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 509.33055877685547, 260.1630554199219, 75.27702331542969, 227.01568603515625 ], "score": 0.9850084781646729 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 389.74334716796875, 222.25306701660156, 28.166351318359375, 86.79096984863281 ], "score": 0.9440345168113708 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 572.5291442871094, 235.76454162597656, 62.29103088378906, 259.72984313964844 ], "score": 0.9253488779067993 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 309.93337631225586, 224.41961669921875, 30.012264251708984, 67.753173828125 ], "score": 0.8282213807106018 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 254.81639862060547, 222.2543487548828, 26.461257934570312, 46.68040466308594 ], "score": 0.8272268772125244 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 405.37845611572266, 219.9323272705078, 32.913665771484375, 111.63096618652344 ], "score": 0.5371203422546387 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 282.04328536987305, 225.3851318359375, 25.34076690673828, 62.6385498046875 ], "score": 0.21384385228157043 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 322.2446060180664, 222.2562713623047, 26.10931396484375, 62.63575744628906 ], "score": 0.13134148716926575 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 308.08624267578125, 206.959228515625, 40.734405517578125, 125.04339599609375 ], "score": 0.12534841895103455 }, { "image_id": 2119, "category_id": 1.0, "bbox": [ 272.38996505737305, 222.2298583984375, 23.04180145263672, 65.3748779296875 ], "score": 0.10965576767921448 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 532.0749664306641, 220.786376953125, 43.5260009765625, 130.284912109375 ], "score": 0.9942299723625183 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 449.38697814941406, 220.90089416503906, 31.859588623046875, 100.46473693847656 ], "score": 0.9908092021942139 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 473.54095458984375, 222.3314208984375, 31.584930419921875, 100.20556640625 ], "score": 0.9863969087600708 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 317.3530387878418, 217.0800018310547, 27.491397857666016, 47.80622863769531 ], "score": 0.9290767908096313 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 493.43807220458984, 224.02407836914062, 32.447967529296875, 109.55859375 ], "score": 0.911961019039154 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 505.7868194580078, 224.7926025390625, 29.482421875, 91.718505859375 ], "score": 0.22419755160808563 }, { "image_id": 2120, "category_id": 1.0, "bbox": [ 355.4374694824219, 208.42059326171875, 27.198715209960938, 69.9710693359375 ], "score": 0.17661772668361664 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 463.6257553100586, 224.26950073242188, 47.27455139160156, 127.69818115234375 ], "score": 0.987800121307373 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 574.2885589599609, 220.79595947265625, 47.84088134765625, 169.67266845703125 ], "score": 0.9713447093963623 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 528.4778594970703, 232.38201904296875, 41.872406005859375, 133.126953125 ], "score": 0.9656501412391663 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 301.5905570983887, 217.0015106201172, 27.624378204345703, 54.26255798339844 ], "score": 0.8198592662811279 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 512.7073287963867, 260.2243347167969, 29.680633544921875, 78.0806884765625 ], "score": 0.6776245832443237 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 488.64662170410156, 224.08700561523438, 40.11138916015625, 131.2666015625 ], "score": 0.524142324924469 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 356.55948638916016, 212.86965942382812, 28.333282470703125, 79.77813720703125 ], "score": 0.47745466232299805 }, { "image_id": 2121, "category_id": 1.0, "bbox": [ 494.60628509521484, 275.35260009765625, 24.831924438476562, 67.42193603515625 ], "score": 0.4708373248577118 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 259.7871208190918, 213.5368194580078, 38.32286834716797, 90.88523864746094 ], "score": 0.9988422393798828 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 480.6206512451172, 221.20068359375, 67.20298767089844, 207.05755615234375 ], "score": 0.9987404346466064 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 509.3389892578125, 225.5904541015625, 66.50146484375, 198.66351318359375 ], "score": 0.9869756698608398 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 576.7784118652344, 227.9276123046875, 53.68408203125, 200.14129638671875 ], "score": 0.9718374013900757 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 347.76283264160156, 213.4810791015625, 35.93864440917969, 81.87008666992188 ], "score": 0.6470956802368164 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 89.1241455078125, 203.7159881591797, 25.877552032470703, 57.37876892089844 ], "score": 0.3084562122821808 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 376.1850357055664, 213.0728759765625, 19.107208251953125, 46.9981689453125 ], "score": 0.23374585807323456 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 313.00575256347656, 208.29293823242188, 29.805145263671875, 64.30392456054688 ], "score": 0.1939895749092102 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 507.1281051635742, 307.9288024902344, 34.87800598144531, 116.56121826171875 ], "score": 0.17395202815532684 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 528.6217498779297, 305.0215759277344, 41.43989562988281, 123.21343994140625 ], "score": 0.1482705920934677 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 537.5836181640625, 231.6583251953125, 45.25367736816406, 131.1558837890625 ], "score": 0.12089014798402786 }, { "image_id": 2122, "category_id": 1.0, "bbox": [ 258.1443977355957, 238.7607879638672, 46.85699462890625, 109.99830627441406 ], "score": 0.11763640493154526 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 226.87255859375, 214.824462890625, 47.671546936035156, 113.61151123046875 ], "score": 0.9977834224700928 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 283.6930847167969, 227.438720703125, 31.004905700683594, 85.635986328125 ], "score": 0.9965614676475525 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 538.9288711547852, 272.2030029296875, 55.97503662109375, 175.38519287109375 ], "score": 0.972287118434906 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 561.0734558105469, 254.59092712402344, 71.61720275878906, 228.15528869628906 ], "score": 0.718562662601471 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 406.8976593017578, 210.77935791015625, 20.7342529296875, 52.35992431640625 ], "score": 0.657874584197998 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 374.67674255371094, 213.94825744628906, 19.856719970703125, 49.13639831542969 ], "score": 0.6463463306427002 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 339.18453216552734, 221.38478088378906, 33.52989196777344, 70.82987976074219 ], "score": 0.5802695155143738 }, { "image_id": 2123, "category_id": 1.0, "bbox": [ 6.8931543827056885, 185.33087158203125, 37.66663432121277, 91.876708984375 ], "score": 0.23676776885986328 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 257.802677154541, 224.45001220703125, 35.39386749267578, 102.04376220703125 ], "score": 0.9938915967941284 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 293.2565116882324, 217.2703857421875, 33.39921951293945, 98.24169921875 ], "score": 0.9875887632369995 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 177.30199813842773, 215.206787109375, 57.385826110839844, 141.9332275390625 ], "score": 0.9873642921447754 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 321.88793182373047, 222.78659057617188, 29.116973876953125, 79.6343994140625 ], "score": 0.9852043390274048 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 367.87437438964844, 217.85797119140625, 23.940200805664062, 48.392486572265625 ], "score": 0.9484614133834839 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 306.89157485961914, 216.08653259277344, 34.7111701965332, 94.21833801269531 ], "score": 0.7438843846321106 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 391.1375045776367, 215.53248596191406, 21.639556884765625, 47.60490417480469 ], "score": 0.4692838490009308 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 199.25287246704102, 215.55030822753906, 40.8062744140625, 104.25755310058594 ], "score": 0.32484161853790283 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 254.93322372436523, 126.37934875488281, 25.287628173828125, 68.0408935546875 ], "score": 0.28147709369659424 }, { "image_id": 2124, "category_id": 1.0, "bbox": [ 368.49517822265625, 216.2530059814453, 61.83204650878906, 64.28697204589844 ], "score": 0.15372885763645172 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 249.7224998474121, 218.40023803710938, 35.22026062011719, 99.1806640625 ], "score": 0.9987790584564209 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 222.36881256103516, 213.211181640625, 36.81861877441406, 109.73785400390625 ], "score": 0.9982434511184692 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 173.81690979003906, 228.8898468017578, 42.997169494628906, 117.17454528808594 ], "score": 0.9966223239898682 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 31.752169132232666, 234.66732788085938, 79.39188718795776, 216.33135986328125 ], "score": 0.9963647127151489 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 343.6977767944336, 216.52899169921875, 24.244766235351562, 45.75640869140625 ], "score": 0.6815801858901978 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 276.8663024902344, 209.0859375, 21.721153259277344, 44.74420166015625 ], "score": 0.17165036499500275 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 284.2546081542969, 220.46163940429688, 46.88587188720703, 114.26025390625 ], "score": 0.15665355324745178 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 332.3115539550781, 215.9539337158203, 23.845596313476562, 50.44743347167969 ], "score": 0.14607436954975128 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 323.21746826171875, 222.14956665039062, 58.09059143066406, 60.61669921875 ], "score": 0.1354096233844757 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 28.180594444274902, 258.5014953613281, 51.13420486450195, 123.807373046875 ], "score": 0.10559748858213425 }, { "image_id": 2125, "category_id": 1.0, "bbox": [ 149.08933639526367, 193.567626953125, 43.70414733886719, 108.91958618164062 ], "score": 0.10464739054441452 }, { "image_id": 2126, "category_id": 1.0, "bbox": [ 41.12349510192871, 245.33006286621094, 64.68503952026367, 134.10841369628906 ], "score": 0.9990062117576599 }, { "image_id": 2126, "category_id": 1.0, "bbox": [ 158.7519931793213, 226.8694305419922, 45.79262733459473, 110.62013244628906 ], "score": 0.9989204406738281 }, { "image_id": 2126, "category_id": 1.0, "bbox": [ 118.3357048034668, 213.36972045898438, 45.63730239868164, 129.83709716796875 ], "score": 0.9988892674446106 }, { "image_id": 2126, "category_id": 1.0, "bbox": [ 512.3382949829102, 189.3939666748047, 23.844070434570312, 51.4541015625 ], "score": 0.19368788599967957 }, { "image_id": 2126, "category_id": 1.0, "bbox": [ 302.7241897583008, 214.370849609375, 24.620437622070312, 50.433319091796875 ], "score": 0.132754847407341 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 54.31526184082031, 210.6966552734375, 57.78608322143555, 151.93890380859375 ], "score": 0.9987537860870361 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 96.5560531616211, 216.41598510742188, 58.23192596435547, 141.158203125 ], "score": 0.9969702363014221 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 241.82287216186523, 216.37863159179688, 25.504913330078125, 46.8076171875 ], "score": 0.3262300491333008 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 259.376220703125, 211.73562622070312, 67.03777313232422, 58.11383056640625 ], "score": 0.16193155944347382 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 304.9607467651367, 209.3480224609375, 20.509109497070312, 44.916259765625 ], "score": 0.11449530720710754 }, { "image_id": 2127, "category_id": 1.0, "bbox": [ 315.72540283203125, 214.0818634033203, 28.276901245117188, 40.560089111328125 ], "score": 0.11052925139665604 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 43.91120910644531, 214.47784423828125, 69.39854621887207, 198.17388916015625 ], "score": 0.9987368583679199 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 356.7716979980469, 216.0145721435547, 35.1483154296875, 86.82221984863281 ], "score": 0.9958335161209106 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 16.10696792602539, 223.04046630859375, 40.045528411865234, 149.28173828125 ], "score": 0.408199667930603 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 307.7519416809082, 207.861572265625, 21.279659271240234, 48.950439453125 ], "score": 0.3334316611289978 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 296.8541717529297, 209.2665557861328, 22.998085021972656, 48.79389953613281 ], "score": 0.18018370866775513 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 256.57054901123047, 216.29881286621094, 26.8670654296875, 54.04341125488281 ], "score": 0.17959770560264587 }, { "image_id": 2128, "category_id": 1.0, "bbox": [ 60.51487445831299, 107.45106506347656, 61.49947643280029, 174.6914520263672 ], "score": 0.10113988816738129 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 387.24170684814453, 228.66604614257812, 42.391204833984375, 102.686279296875 ], "score": 0.995537519454956 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 304.2201232910156, 213.8590087890625, 22.431106567382812, 63.536590576171875 ], "score": 0.7578957080841064 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 320.0825500488281, 217.62786865234375, 21.8133544921875, 60.93145751953125 ], "score": 0.6420427560806274 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 290.5995178222656, 213.300537109375, 21.23260498046875, 52.145782470703125 ], "score": 0.3451652526855469 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 307.2988510131836, 205.6865997314453, 34.022674560546875, 90.98979187011719 ], "score": 0.2572128176689148 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 218.7885284423828, 210.8759765625, 67.02865600585938, 59.43524169921875 ], "score": 0.18045812845230103 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 266.43497467041016, 218.55130004882812, 19.04735565185547, 40.454132080078125 ], "score": 0.15903277695178986 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 230.03555297851562, 223.43128967285156, 29.178619384765625, 45.59922790527344 ], "score": 0.11210370808839798 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 573.5345458984375, 312.311767578125, 33.58787536621094, 77.2410888671875 ], "score": 0.10779424756765366 }, { "image_id": 2129, "category_id": 1.0, "bbox": [ 276.72529220581055, 215.68115234375, 19.281845092773438, 39.026123046875 ], "score": 0.10115823149681091 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 420.5059814453125, 232.17556762695312, 59.87403869628906, 154.99530029296875 ], "score": 0.9996540546417236 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 304.2436408996582, 216.39105224609375, 24.377155303955078, 77.7510986328125 ], "score": 0.9821913838386536 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 319.7031784057617, 215.58084106445312, 26.744461059570312, 74.70681762695312 ], "score": 0.9323283433914185 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 259.37660217285156, 218.24501037597656, 19.466094970703125, 43.15693664550781 ], "score": 0.2794542610645294 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 594.9615859985352, 118.63968658447266, 31.173248291015625, 87.46102142333984 ], "score": 0.2496226578950882 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 27.025108337402344, 210.9453125, 37.04833984375, 66.20816040039062 ], "score": 0.1463095098733902 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 247.92993545532227, 218.62449645996094, 20.237770080566406, 43.53919982910156 ], "score": 0.13107138872146606 }, { "image_id": 2130, "category_id": 1.0, "bbox": [ 210.42434692382812, 212.43653869628906, 71.19644165039062, 62.44648742675781 ], "score": 0.11061570048332214 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 514.4907379150391, 238.9462432861328, 70.95436096191406, 209.94395446777344 ], "score": 0.993224024772644 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 341.2059020996094, 214.24427795410156, 28.6114501953125, 86.64573669433594 ], "score": 0.992981493473053 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 117.23946571350098, 213.16920471191406, 45.180158615112305, 121.26588439941406 ], "score": 0.9923998117446899 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 320.3144073486328, 214.08358764648438, 28.729095458984375, 88.80419921875 ], "score": 0.9734388589859009 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 153.15801620483398, 218.144775390625, 40.715980529785156, 92.89495849609375 ], "score": 0.9268584251403809 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 148.35274696350098, 239.79434204101562, 49.901723861694336, 126.742431640625 ], "score": 0.5516217947006226 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 273.75423431396484, 218.7718963623047, 18.5955810546875, 44.51536560058594 ], "score": 0.4019710123538971 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 256.3638687133789, 219.90589904785156, 22.51148223876953, 45.35322570800781 ], "score": 0.37830862402915955 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 541.3314437866211, 222.85183715820312, 25.494308471679688, 64.02890014648438 ], "score": 0.3641405999660492 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 360.13431549072266, 218.40155029296875, 23.031692504882812, 63.7718505859375 ], "score": 0.30269715189933777 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 350.47550201416016, 209.56387329101562, 35.45684814453125, 97.8568115234375 ], "score": 0.1271633803844452 }, { "image_id": 2131, "category_id": 1.0, "bbox": [ 148.72117042541504, 260.037109375, 30.4848575592041, 68.57904052734375 ], "score": 0.11412589997053146 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 141.64788246154785, 227.26104736328125, 35.40329933166504, 107.618408203125 ], "score": 0.9926021695137024 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 343.4867477416992, 216.0924072265625, 34.429931640625, 90.82659912109375 ], "score": 0.9827303886413574 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 122.10691452026367, 223.49273681640625, 39.36164855957031, 107.5235595703125 ], "score": 0.9484579563140869 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 364.1832733154297, 215.5095977783203, 30.0628662109375, 90.03398132324219 ], "score": 0.9470226764678955 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 63.886146545410156, 200.29779052734375, 65.37425994873047, 197.62457275390625 ], "score": 0.8995383977890015 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 292.04748153686523, 219.6156768798828, 21.222915649414062, 50.26585388183594 ], "score": 0.8111062049865723 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 272.0402526855469, 219.36148071289062, 28.015365600585938, 59.92724609375 ], "score": 0.5262181758880615 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 566.829719543457, 226.0843048095703, 20.350265502929688, 51.45661926269531 ], "score": 0.1745711863040924 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 373.9999771118164, 214.73382568359375, 37.12837219238281, 102.4833984375 ], "score": 0.1565680205821991 }, { "image_id": 2132, "category_id": 1.0, "bbox": [ 69.22133445739746, 274.01068115234375, 42.53095626831055, 124.5322265625 ], "score": 0.12844277918338776 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 110.31364440917969, 237.2261962890625, 60.35480499267578, 150.8404541015625 ], "score": 0.9996203184127808 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 62.06319808959961, 237.521728515625, 62.93027877807617, 138.238525390625 ], "score": 0.9976100325584412 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 380.33912658691406, 215.7048797607422, 34.92462158203125, 102.95765686035156 ], "score": 0.9973379373550415 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 359.9195098876953, 221.13067626953125, 36.95953369140625, 100.37701416015625 ], "score": 0.9700456857681274 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 89.12874221801758, 226.67347717285156, 52.83536911010742, 165.14036560058594 ], "score": 0.37530237436294556 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 42.9235315322876, 240.40469360351562, 38.49883556365967, 94.19549560546875 ], "score": 0.348135381937027 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 14.347424507141113, 223.87203979492188, 60.13568878173828, 201.48956298828125 ], "score": 0.2057781219482422 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 304.5285987854004, 221.59410095214844, 19.719982147216797, 43.52873229980469 ], "score": 0.15503519773483276 }, { "image_id": 2133, "category_id": 1.0, "bbox": [ 288.38321685791016, 224.75930786132812, 25.106735229492188, 52.63720703125 ], "score": 0.1273534893989563 }, { "image_id": 2134, "category_id": 1.0, "bbox": [ 397.0621109008789, 213.86610412597656, 35.080108642578125, 106.09968566894531 ], "score": 0.9989771842956543 }, { "image_id": 2134, "category_id": 1.0, "bbox": [ 20.118255615234375, 234.8024444580078, 76.30134582519531, 247.74156188964844 ], "score": 0.9974665641784668 }, { "image_id": 2134, "category_id": 1.0, "bbox": [ 375.3832244873047, 214.303955078125, 34.19715881347656, 110.89471435546875 ], "score": 0.9928514957427979 }, { "image_id": 2134, "category_id": 1.0, "bbox": [ 382.8539276123047, 207.4749298095703, 26.085662841796875, 63.91337585449219 ], "score": 0.13147088885307312 }, { "image_id": 2134, "category_id": 1.0, "bbox": [ 501.67041778564453, 224.65538024902344, 75.19973754882812, 42.96675109863281 ], "score": 0.10379093885421753 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 418.6605453491211, 215.56979370117188, 34.69779968261719, 112.91229248046875 ], "score": 0.9978492856025696 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 394.3389892578125, 210.60226440429688, 37.52685546875, 118.0377197265625 ], "score": 0.9911578297615051 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 315.96153259277344, 218.96389770507812, 24.317474365234375, 62.515869140625 ], "score": 0.9628520607948303 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 555.7065963745117, 225.93092346191406, 22.919158935546875, 59.20417785644531 ], "score": 0.42316052317619324 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 573.7263488769531, 229.1706085205078, 24.37957763671875, 55.43009948730469 ], "score": 0.331302285194397 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 513.3688354492188, 235.7361297607422, 31.214370727539062, 68.48579406738281 ], "score": 0.20617790520191193 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 298.40709686279297, 215.8387908935547, 25.220680236816406, 61.16847229003906 ], "score": 0.20393437147140503 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 305.6892204284668, 224.5840606689453, 26.836261749267578, 64.57579040527344 ], "score": 0.15615317225456238 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 545.831298828125, 104.70319366455078, 25.980300903320312, 52.35596466064453 ], "score": 0.13685685396194458 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 396.9826126098633, 215.3441162109375, 25.493850708007812, 64.60281372070312 ], "score": 0.12144848704338074 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 350.04711151123047, 210.09414672851562, 17.186431884765625, 37.03997802734375 ], "score": 0.1199226975440979 }, { "image_id": 2135, "category_id": 1.0, "bbox": [ 538.9337158203125, 226.2324676513672, 61.174774169921875, 66.68824768066406 ], "score": 0.1088964194059372 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 451.60762786865234, 214.648193359375, 36.56951904296875, 116.31976318359375 ], "score": 0.9961138963699341 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 426.4583206176758, 214.92526245117188, 39.86572265625, 118.6015625 ], "score": 0.9931807518005371 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 335.1798629760742, 221.9976043701172, 28.2623291015625, 76.33613586425781 ], "score": 0.9755828976631165 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 559.7860717773438, 227.43031311035156, 27.980422973632812, 79.17127990722656 ], "score": 0.8162145614624023 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 521.6930770874023, 234.15866088867188, 38.39637756347656, 114.63714599609375 ], "score": 0.7605623006820679 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 320.5645751953125, 222.026123046875, 25.1910400390625, 68.264404296875 ], "score": 0.6904322504997253 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 610.3013610839844, 235.0221710205078, 23.2574462890625, 57.57328796386719 ], "score": 0.5538649559020996 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 578.4733963012695, 233.451416015625, 24.134140014648438, 65.491943359375 ], "score": 0.5463734865188599 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 367.9684829711914, 216.52830505371094, 21.614837646484375, 35.757781982421875 ], "score": 0.2858416736125946 }, { "image_id": 2136, "category_id": 1.0, "bbox": [ 319.6281051635742, 213.3524169921875, 40.13191223144531, 120.383544921875 ], "score": 0.16644595563411713 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 383.58570098876953, 220.90200805664062, 28.582305908203125, 80.21282958984375 ], "score": 0.9985276460647583 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 496.2071228027344, 217.5757293701172, 43.18901062011719, 121.66328430175781 ], "score": 0.9979601502418518 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 361.8758010864258, 223.39276123046875, 29.683380126953125, 77.2069091796875 ], "score": 0.9963629245758057 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 573.6648941040039, 250.01084899902344, 43.486175537109375, 149.83058166503906 ], "score": 0.9286612868309021 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 464.0393829345703, 215.69607543945312, 19.719772338867188, 41.311767578125 ], "score": 0.5056838393211365 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 592.6775741577148, 236.52157592773438, 35.866546630859375, 136.69696044921875 ], "score": 0.21208950877189636 }, { "image_id": 2137, "category_id": 1.0, "bbox": [ 409.8438262939453, 214.287109375, 18.96484375, 37.965087890625 ], "score": 0.10790877044200897 }, { "image_id": 2138, "category_id": 1.0, "bbox": [ 542.0341491699219, 223.0394744873047, 47.79685974121094, 130.1459503173828 ], "score": 0.9983773231506348 }, { "image_id": 2138, "category_id": 1.0, "bbox": [ 397.45128631591797, 227.13870239257812, 34.17449951171875, 85.92822265625 ], "score": 0.994816780090332 }, { "image_id": 2138, "category_id": 1.0, "bbox": [ 422.0269012451172, 226.3897705078125, 29.935836791992188, 91.8514404296875 ], "score": 0.9759427309036255 }, { "image_id": 2138, "category_id": 1.0, "bbox": [ 529.9032211303711, 221.23048400878906, 36.73088073730469, 120.46519470214844 ], "score": 0.36060386896133423 }, { "image_id": 2138, "category_id": 1.0, "bbox": [ 499.87903594970703, 225.88735961914062, 19.31976318359375, 41.05108642578125 ], "score": 0.17835421860218048 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 520.9382247924805, 222.01353454589844, 54.71366882324219, 154.12525939941406 ], "score": 0.9993574023246765 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 370.3873062133789, 227.19032287597656, 34.83184814453125, 103.26176452636719 ], "score": 0.9989044666290283 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 405.19683837890625, 225.30514526367188, 39.38636779785156, 106.30462646484375 ], "score": 0.9964401721954346 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 483.48209381103516, 227.09811401367188, 18.627395629882812, 44.184051513671875 ], "score": 0.5514959692955017 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 387.61878967285156, 227.47637939453125, 38.00636291503906, 102.91943359375 ], "score": 0.3813915252685547 }, { "image_id": 2139, "category_id": 1.0, "bbox": [ 497.7163314819336, 223.27725219726562, 17.373733520507812, 45.34014892578125 ], "score": 0.11051493138074875 }, { "image_id": 2140, "category_id": 1.0, "bbox": [ 455.37487030029297, 239.93350219726562, 65.19927978515625, 163.71746826171875 ], "score": 0.999531090259552 }, { "image_id": 2140, "category_id": 1.0, "bbox": [ 308.42517852783203, 230.08050537109375, 49.12811279296875, 133.043701171875 ], "score": 0.9982686042785645 }, { "image_id": 2140, "category_id": 1.0, "bbox": [ 354.98096466064453, 230.1757049560547, 44.14634704589844, 129.53163146972656 ], "score": 0.9910362362861633 }, { "image_id": 2140, "category_id": 1.0, "bbox": [ 436.7144012451172, 230.1016082763672, 19.969558715820312, 44.34016418457031 ], "score": 0.5037867426872253 }, { "image_id": 2140, "category_id": 1.0, "bbox": [ 459.66766357421875, 231.0624542236328, 44.12742614746094, 114.06123352050781 ], "score": 0.1534803807735443 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 202.60831832885742, 212.36434936523438, 58.577537536621094, 165.73895263671875 ], "score": 0.9992086291313171 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 270.7552146911621, 218.0260009765625, 54.96232986450195, 162.88116455078125 ], "score": 0.9913482666015625 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 298.6660385131836, 219.66891479492188, 68.5919189453125, 226.447509765625 ], "score": 0.9906513690948486 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 359.9388885498047, 211.66856384277344, 21.675491333007812, 54.17842102050781 ], "score": 0.987252950668335 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 379.2418670654297, 211.44143676757812, 17.901840209960938, 53.859619140625 ], "score": 0.5284619331359863 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 290.7942199707031, 214.57778930664062, 49.95147705078125, 136.20001220703125 ], "score": 0.19094987213611603 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 274.3092727661133, 211.0276336669922, 36.90265655517578, 99.38847351074219 ], "score": 0.15582166612148285 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 315.94348907470703, 216.14794921875, 48.40980529785156, 112.1138916015625 ], "score": 0.1095956414937973 }, { "image_id": 2141, "category_id": 1.0, "bbox": [ 394.2596435546875, 213.2032012939453, 18.839874267578125, 54.07243347167969 ], "score": 0.10040351003408432 }, { "image_id": 2142, "category_id": 1.0, "bbox": [ 50.08994102478027, 206.57028198242188, 80.52349090576172, 213.37908935546875 ], "score": 0.9925649166107178 }, { "image_id": 2142, "category_id": 1.0, "bbox": [ 199.22531127929688, 211.46380615234375, 23.87298583984375, 61.00030517578125 ], "score": 0.9569821953773499 }, { "image_id": 2142, "category_id": 1.0, "bbox": [ 31.368308067321777, 205.46646118164062, 53.83741855621338, 204.01568603515625 ], "score": 0.2318972945213318 }, { "image_id": 2142, "category_id": 1.0, "bbox": [ 216.82083129882812, 211.34146118164062, 18.875694274902344, 58.599639892578125 ], "score": 0.1170194000005722 }, { "image_id": 2143, "category_id": 1.0, "bbox": [ 482.63599395751953, 240.32107543945312, 51.04637145996094, 149.57257080078125 ], "score": 0.9986281991004944 }, { "image_id": 2144, "category_id": 1.0, "bbox": [ 300.1584053039551, 254.19720458984375, 63.27848434448242, 174.4656982421875 ], "score": 0.9984340071678162 }, { "image_id": 2145, "category_id": 1.0, "bbox": [ 12.95013427734375, 222.11831665039062, 76.12744331359863, 248.58953857421875 ], "score": 0.7358273267745972 }, { "image_id": 2145, "category_id": 1.0, "bbox": [ 31.302714347839355, 258.07403564453125, 95.53999423980713, 235.3701171875 ], "score": 0.2009955495595932 }, { "image_id": 2146, "category_id": 1.0, "bbox": [ 577.9262161254883, 230.30694580078125, 41.905975341796875, 122.2635498046875 ], "score": 0.9965171217918396 }, { "image_id": 2146, "category_id": 1.0, "bbox": [ 520.5902862548828, 223.79107666015625, 28.387603759765625, 40.45208740234375 ], "score": 0.17749397456645966 }, { "image_id": 2147, "category_id": 1.0, "bbox": [ 510.2384567260742, 227.8179168701172, 42.84889221191406, 125.91197204589844 ], "score": 0.9969877600669861 }, { "image_id": 2147, "category_id": 1.0, "bbox": [ 476.48292541503906, 232.189208984375, 41.8524169921875, 122.4542236328125 ], "score": 0.9931946396827698 }, { "image_id": 2147, "category_id": 1.0, "bbox": [ 429.65187072753906, 225.83909606933594, 27.063751220703125, 45.74525451660156 ], "score": 0.5628353953361511 }, { "image_id": 2148, "category_id": 1.0, "bbox": [ 332.80006408691406, 224.46524047851562, 48.851165771484375, 134.716552734375 ], "score": 0.9994426965713501 }, { "image_id": 2148, "category_id": 1.0, "bbox": [ 382.3432922363281, 229.1492919921875, 46.047210693359375, 127.46783447265625 ], "score": 0.9986963272094727 }, { "image_id": 2148, "category_id": 1.0, "bbox": [ 587.6777648925781, 42.581295013427734, 35.10643005371094, 75.56227493286133 ], "score": 0.16796518862247467 }, { "image_id": 2148, "category_id": 1.0, "bbox": [ 370.8599090576172, 253.8742218017578, 35.23101806640625, 100.07783508300781 ], "score": 0.10336478054523468 }, { "image_id": 2149, "category_id": 1.0, "bbox": [ 191.3341522216797, 228.83876037597656, 58.21067810058594, 147.01634216308594 ], "score": 0.9990320205688477 }, { "image_id": 2149, "category_id": 1.0, "bbox": [ 242.8236198425293, 219.03216552734375, 49.473228454589844, 151.77960205078125 ], "score": 0.9969190359115601 }, { "image_id": 2149, "category_id": 1.0, "bbox": [ 221.09857559204102, 222.8988037109375, 50.67375183105469, 145.04449462890625 ], "score": 0.1035129576921463 }, { "image_id": 2150, "category_id": 1.0, "bbox": [ 103.91069412231445, 237.43020629882812, 67.33926773071289, 176.83538818359375 ], "score": 0.9998183250427246 }, { "image_id": 2150, "category_id": 1.0, "bbox": [ 162.91126251220703, 235.49609375, 68.76724243164062, 163.0869140625 ], "score": 0.9970890879631042 }, { "image_id": 2150, "category_id": 1.0, "bbox": [ 483.98792266845703, 36.11346435546875, 33.0902099609375, 77.05624389648438 ], "score": 0.1576761156320572 }, { "image_id": 2150, "category_id": 1.0, "bbox": [ 158.8295078277588, 222.66598510742188, 24.987382888793945, 66.93414306640625 ], "score": 0.11967559158802032 }, { "image_id": 2151, "category_id": 1.0, "bbox": [ 57.229743003845215, 227.00265502929688, 87.83617496490479, 234.7474365234375 ], "score": 0.9965296983718872 }, { "image_id": 2151, "category_id": 1.0, "bbox": [ 9.454631805419922, 224.66067504882812, 63.306379318237305, 236.206298828125 ], "score": 0.8711986541748047 }, { "image_id": 2151, "category_id": 1.0, "bbox": [ 117.94942855834961, 226.45802307128906, 27.82918930053711, 67.01084899902344 ], "score": 0.5076793432235718 }, { "image_id": 2151, "category_id": 1.0, "bbox": [ 477.63282775878906, 26.01400375366211, 32.774810791015625, 80.52615737915039 ], "score": 0.15552598237991333 }, { "image_id": 2152, "category_id": 1.0, "bbox": [ 60.78129291534424, 223.81240844726562, 40.13936519622803, 89.6182861328125 ], "score": 0.7420687675476074 }, { "image_id": 2152, "category_id": 1.0, "bbox": [ 68.60129356384277, 217.74050903320312, 28.283329010009766, 57.44891357421875 ], "score": 0.38239115476608276 }, { "image_id": 2152, "category_id": 1.0, "bbox": [ 76.23281002044678, 219.3752899169922, 42.13573932647705, 95.64915466308594 ], "score": 0.12243033945560455 }, { "image_id": 2152, "category_id": 1.0, "bbox": [ 209.98083114624023, 146.80929565429688, 40.1153564453125, 93.2384033203125 ], "score": 0.1155235767364502 }, { "image_id": 2153, "category_id": 1.0, "bbox": [ 14.067349433898926, 248.772705078125, 53.06656837463379, 99.48504638671875 ], "score": 0.6515191793441772 }, { "image_id": 2153, "category_id": 1.0, "bbox": [ 61.18972301483154, 216.2720489501953, 29.38999652862549, 57.43446350097656 ], "score": 0.43864163756370544 }, { "image_id": 2153, "category_id": 1.0, "bbox": [ 34.042091369628906, 226.05897521972656, 61.433725357055664, 131.2075653076172 ], "score": 0.2315167486667633 }, { "image_id": 2153, "category_id": 1.0, "bbox": [ 291.51268005371094, 207.41543579101562, 17.57354736328125, 37.76513671875 ], "score": 0.14571842551231384 }, { "image_id": 2154, "category_id": 1.0, "bbox": [ 60.07185935974121, 214.10008239746094, 30.639867782592773, 62.02076721191406 ], "score": 0.6975510716438293 }, { "image_id": 2154, "category_id": 1.0, "bbox": [ 324.30763244628906, 206.68348693847656, 21.213760375976562, 35.36419677734375 ], "score": 0.5857928395271301 }, { "image_id": 2154, "category_id": 1.0, "bbox": [ 34.1227912902832, 211.601806640625, 35.16158103942871, 65.22134399414062 ], "score": 0.20688281953334808 }, { "image_id": 2155, "category_id": 1.0, "bbox": [ 324.1656494140625, 212.65264892578125, 21.643295288085938, 38.255615234375 ], "score": 0.7037179470062256 }, { "image_id": 2156, "category_id": 1.0, "bbox": [ 319.3340873718262, 218.09500122070312, 22.00357437133789, 36.901397705078125 ], "score": 0.5583655834197998 }, { "image_id": 2156, "category_id": 1.0, "bbox": [ 392.23682403564453, 217.71250915527344, 44.9029541015625, 77.58790588378906 ], "score": 0.11928127706050873 }, { "image_id": 2156, "category_id": 1.0, "bbox": [ 63.078956604003906, 104.444091796875, 37.02491760253906, 91.05279541015625 ], "score": 0.11298385262489319 }, { "image_id": 2157, "category_id": 1.0, "bbox": [ 319.6839141845703, 211.9735870361328, 22.5457763671875, 49.56861877441406 ], "score": 0.7594653367996216 }, { "image_id": 2157, "category_id": 1.0, "bbox": [ 328.4138488769531, 217.86451721191406, 20.300369262695312, 45.21080017089844 ], "score": 0.53875732421875 }, { "image_id": 2158, "category_id": 1.0, "bbox": [ 335.7746124267578, 221.81698608398438, 22.035598754882812, 55.08984375 ], "score": 0.9968119859695435 }, { "image_id": 2158, "category_id": 1.0, "bbox": [ 317.0309257507324, 223.5366973876953, 23.150691986083984, 57.90858459472656 ], "score": 0.994050145149231 }, { "image_id": 2159, "category_id": 1.0, "bbox": [ 338.4372329711914, 215.31808471679688, 30.196609497070312, 66.84542846679688 ], "score": 0.9989075660705566 }, { "image_id": 2159, "category_id": 1.0, "bbox": [ 366.36837005615234, 218.14230346679688, 25.804595947265625, 68.031005859375 ], "score": 0.9984848499298096 }, { "image_id": 2160, "category_id": 1.0, "bbox": [ 383.99219512939453, 215.41456604003906, 33.91853332519531, 89.50779724121094 ], "score": 0.9991313815116882 }, { "image_id": 2160, "category_id": 1.0, "bbox": [ 413.4071350097656, 217.0876007080078, 29.14276123046875, 87.36277770996094 ], "score": 0.9963240623474121 }, { "image_id": 2160, "category_id": 1.0, "bbox": [ 325.68843841552734, 213.59017944335938, 18.559036254882812, 39.312225341796875 ], "score": 0.16343960165977478 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 447.31685638427734, 241.95458984375, 42.264404296875, 122.965576171875 ], "score": 0.998395562171936 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 475.6570053100586, 248.69235229492188, 36.991424560546875, 109.04705810546875 ], "score": 0.9757115840911865 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 395.94444274902344, 239.2035369873047, 25.911865234375, 43.91230773925781 ], "score": 0.38921058177948 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 340.06065368652344, 235.88536071777344, 21.309661865234375, 42.42884826660156 ], "score": 0.36895251274108887 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 249.6249008178711, 200.4275665283203, 23.784942626953125, 53.3631591796875 ], "score": 0.22616201639175415 }, { "image_id": 2161, "category_id": 1.0, "bbox": [ 321.64562225341797, 231.30404663085938, 19.252853393554688, 40.1241455078125 ], "score": 0.1926802396774292 }, { "image_id": 2162, "category_id": 1.0, "bbox": [ 567.4965667724609, 226.2444610595703, 64.10049438476562, 234.40830993652344 ], "score": 0.9987567067146301 }, { "image_id": 2162, "category_id": 1.0, "bbox": [ 329.7212219238281, 218.36390686035156, 25.151290893554688, 55.40727233886719 ], "score": 0.9877126216888428 }, { "image_id": 2162, "category_id": 1.0, "bbox": [ 420.3185272216797, 228.39508056640625, 23.48175048828125, 51.216949462890625 ], "score": 0.9763314127922058 }, { "image_id": 2162, "category_id": 1.0, "bbox": [ 360.1408386230469, 223.82054138183594, 22.066497802734375, 50.00120544433594 ], "score": 0.93916916847229 }, { "image_id": 2163, "category_id": 1.0, "bbox": [ 393.0781936645508, 230.2193603515625, 26.866073608398438, 60.667724609375 ], "score": 0.9993008375167847 }, { "image_id": 2163, "category_id": 1.0, "bbox": [ 287.77462005615234, 218.93475341796875, 28.84876251220703, 61.5301513671875 ], "score": 0.9990742206573486 }, { "image_id": 2163, "category_id": 1.0, "bbox": [ 327.3329162597656, 224.0652618408203, 21.73583984375, 58.59648132324219 ], "score": 0.9778906106948853 }, { "image_id": 2163, "category_id": 1.0, "bbox": [ 214.57439422607422, 175.71685791015625, 33.36799621582031, 65.88430786132812 ], "score": 0.37894660234451294 }, { "image_id": 2164, "category_id": 1.0, "bbox": [ 333.07430267333984, 232.47384643554688, 30.346298217773438, 62.02313232421875 ], "score": 0.9995064735412598 }, { "image_id": 2164, "category_id": 1.0, "bbox": [ 208.0323600769043, 215.2913818359375, 28.221817016601562, 78.14675903320312 ], "score": 0.9981662034988403 }, { "image_id": 2164, "category_id": 1.0, "bbox": [ 252.90700912475586, 220.0586700439453, 28.759422302246094, 70.69667053222656 ], "score": 0.9902711510658264 }, { "image_id": 2164, "category_id": 1.0, "bbox": [ 128.23904037475586, 162.30831909179688, 38.93596649169922, 86.25216674804688 ], "score": 0.21648842096328735 }, { "image_id": 2165, "category_id": 1.0, "bbox": [ 182.71263122558594, 204.57089233398438, 40.33416748046875, 97.62820434570312 ], "score": 0.9989616274833679 }, { "image_id": 2165, "category_id": 1.0, "bbox": [ 282.61966705322266, 217.2486572265625, 36.415367126464844, 80.917236328125 ], "score": 0.9957368969917297 }, { "image_id": 2165, "category_id": 1.0, "bbox": [ 126.08481407165527, 199.86915588378906, 35.99286079406738, 108.19523620605469 ], "score": 0.986343502998352 }, { "image_id": 2165, "category_id": 1.0, "bbox": [ 425.7965850830078, 210.24513244628906, 23.213882446289062, 56.65385437011719 ], "score": 0.5669887065887451 }, { "image_id": 2166, "category_id": 1.0, "bbox": [ 125.51907539367676, 213.907958984375, 52.81180381774902, 141.3369140625 ], "score": 0.9997515678405762 }, { "image_id": 2166, "category_id": 1.0, "bbox": [ 243.4469985961914, 230.51809692382812, 44.37591552734375, 103.7652587890625 ], "score": 0.9984883069992065 }, { "image_id": 2166, "category_id": 1.0, "bbox": [ 421.1133575439453, 232.78392028808594, 29.488143920898438, 62.80143737792969 ], "score": 0.6166946291923523 }, { "image_id": 2166, "category_id": 1.0, "bbox": [ 49.34093475341797, 217.34034729003906, 41.33466720581055, 109.96586608886719 ], "score": 0.5512542128562927 }, { "image_id": 2166, "category_id": 1.0, "bbox": [ 309.4770622253418, 217.33926391601562, 19.960041046142578, 44.98406982421875 ], "score": 0.4046115279197693 }, { "image_id": 2167, "category_id": 1.0, "bbox": [ 178.06936264038086, 227.79656982421875, 57.357139587402344, 131.76788330078125 ], "score": 0.9994170665740967 }, { "image_id": 2167, "category_id": 1.0, "bbox": [ 5.167582035064697, 215.91949462890625, 73.96339178085327, 186.27691650390625 ], "score": 0.9951491355895996 }, { "image_id": 2167, "category_id": 1.0, "bbox": [ 405.2499771118164, 226.22166442871094, 27.49969482421875, 73.82188415527344 ], "score": 0.9311783313751221 }, { "image_id": 2167, "category_id": 1.0, "bbox": [ 311.32591247558594, 216.85177612304688, 19.517974853515625, 46.701934814453125 ], "score": 0.5396098494529724 }, { "image_id": 2167, "category_id": 1.0, "bbox": [ 2.1243858337402344, 282.13739013671875, 53.89836311340332, 136.267333984375 ], "score": 0.1258855164051056 }, { "image_id": 2168, "category_id": 1.0, "bbox": [ 371.19537353515625, 216.2427215576172, 32.90473937988281, 80.52488708496094 ], "score": 0.9995400905609131 }, { "image_id": 2168, "category_id": 1.0, "bbox": [ 59.40093994140625, 219.9514923095703, 68.1100845336914, 170.9748992919922 ], "score": 0.9950128793716431 }, { "image_id": 2168, "category_id": 1.0, "bbox": [ 303.25817108154297, 217.60067749023438, 18.062362670898438, 41.8291015625 ], "score": 0.2598395049571991 }, { "image_id": 2169, "category_id": 1.0, "bbox": [ 320.7844543457031, 229.8040008544922, 38.70887756347656, 93.93162536621094 ], "score": 0.9990785121917725 }, { "image_id": 2170, "category_id": 1.0, "bbox": [ 397.35652923583984, 224.34085083007812, 44.21875, 129.14630126953125 ], "score": 0.9971580505371094 }, { "image_id": 2170, "category_id": 1.0, "bbox": [ 547.305908203125, 293.97967529296875, 38.51570129394531, 95.08819580078125 ], "score": 0.2718062102794647 }, { "image_id": 2171, "category_id": 1.0, "bbox": [ 570.7876205444336, 226.58938598632812, 58.457794189453125, 189.240966796875 ], "score": 0.992294430732727 }, { "image_id": 2172, "category_id": 1.0, "bbox": [ 378.51287841796875, 220.77005004882812, 21.523895263671875, 41.62109375 ], "score": 0.35537493228912354 }, { "image_id": 2172, "category_id": 1.0, "bbox": [ 392.04017639160156, 217.68292236328125, 19.492568969726562, 46.2808837890625 ], "score": 0.3267781138420105 }, { "image_id": 2172, "category_id": 1.0, "bbox": [ 502.3745346069336, 224.6330108642578, 25.268630981445312, 55.32872009277344 ], "score": 0.19726046919822693 }, { "image_id": 2172, "category_id": 1.0, "bbox": [ 153.38878631591797, 124.97661590576172, 59.59663391113281, 159.77494049072266 ], "score": 0.18996579945087433 }, { "image_id": 2173, "category_id": 1.0, "bbox": [ 388.04534912109375, 221.95379638671875, 20.903244018554688, 45.94927978515625 ], "score": 0.34725242853164673 }, { "image_id": 2174, "category_id": 1.0, "bbox": [ 545.7808685302734, 236.4495849609375, 41.79954528808594, 126.6297607421875 ], "score": 0.9961881637573242 }, { "image_id": 2174, "category_id": 1.0, "bbox": [ 408.7012481689453, 227.9498291015625, 21.445693969726562, 55.02154541015625 ], "score": 0.5012186169624329 }, { "image_id": 2175, "category_id": 1.0, "bbox": [ 587.9192352294922, 213.8118438720703, 21.290740966796875, 58.12135314941406 ], "score": 0.5681015253067017 }, { "image_id": 2175, "category_id": 1.0, "bbox": [ 488.74988555908203, 216.5035400390625, 22.667617797851562, 50.125579833984375 ], "score": 0.28667938709259033 }, { "image_id": 2175, "category_id": 1.0, "bbox": [ 481.7991638183594, 211.29933166503906, 22.0623779296875, 47.10234069824219 ], "score": 0.18972495198249817 }, { "image_id": 2175, "category_id": 1.0, "bbox": [ 584.4028091430664, 218.214111328125, 36.49932861328125, 79.06097412109375 ], "score": 0.10153419524431229 }, { "image_id": 2177, "category_id": 1.0, "bbox": [ 434.7468566894531, 220.3719024658203, 19.699859619140625, 39.52491760253906 ], "score": 0.4528884291648865 }, { "image_id": 2177, "category_id": 1.0, "bbox": [ 493.21216583251953, 194.27462768554688, 26.332168579101562, 50.156005859375 ], "score": 0.36165651679039 }, { "image_id": 2177, "category_id": 1.0, "bbox": [ 390.5679702758789, 215.9874267578125, 28.0450439453125, 35.3436279296875 ], "score": 0.3269716799259186 }, { "image_id": 2177, "category_id": 1.0, "bbox": [ 346.9160842895508, 219.5428009033203, 19.9163818359375, 38.43647766113281 ], "score": 0.12597504258155823 }, { "image_id": 2178, "category_id": 1.0, "bbox": [ 474.7230529785156, 222.2401123046875, 19.214019775390625, 47.094146728515625 ], "score": 0.8584712147712708 }, { "image_id": 2178, "category_id": 1.0, "bbox": [ 486.3230514526367, 223.92982482910156, 20.4278564453125, 47.69017028808594 ], "score": 0.6640772223472595 }, { "image_id": 2178, "category_id": 1.0, "bbox": [ 371.55906677246094, 218.6390838623047, 21.795806884765625, 44.96946716308594 ], "score": 0.6559536457061768 }, { "image_id": 2178, "category_id": 1.0, "bbox": [ 419.54761505126953, 216.28819274902344, 26.108245849609375, 43.17118835449219 ], "score": 0.4987102746963501 }, { "image_id": 2178, "category_id": 1.0, "bbox": [ 218.46141815185547, 215.8944091796875, 20.803565979003906, 40.717010498046875 ], "score": 0.148554265499115 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 566.0302352905273, 218.87445068359375, 24.255447387695312, 60.217010498046875 ], "score": 0.9993571043014526 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 518.9397430419922, 225.2067108154297, 20.972900390625, 58.35371398925781 ], "score": 0.9949604272842407 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 535.3659439086914, 225.32691955566406, 21.89971923828125, 56.47743225097656 ], "score": 0.9263694286346436 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 435.06256103515625, 216.22686767578125, 22.472000122070312, 44.253662109375 ], "score": 0.7572860717773438 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 380.09021759033203, 225.33154296875, 20.43182373046875, 42.744659423828125 ], "score": 0.5368906259536743 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 206.41115188598633, 216.94259643554688, 21.267242431640625, 44.159881591796875 ], "score": 0.5090182423591614 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 447.88516998291016, 215.9872589111328, 19.934844970703125, 44.27406311035156 ], "score": 0.1923357993364334 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 439.9485778808594, 222.7279052734375, 42.173614501953125, 73.7169189453125 ], "score": 0.14306668937206268 }, { "image_id": 2179, "category_id": 1.0, "bbox": [ 135.55617332458496, 215.97140502929688, 27.631406784057617, 52.320587158203125 ], "score": 0.11556057631969452 }, { "image_id": 2180, "category_id": 1.0, "bbox": [ 465.14942169189453, 212.64425659179688, 19.999465942382812, 50.846435546875 ], "score": 0.9339138269424438 }, { "image_id": 2180, "category_id": 1.0, "bbox": [ 393.4764862060547, 221.89564514160156, 24.153518676757812, 52.13752746582031 ], "score": 0.7538126707077026 }, { "image_id": 2180, "category_id": 1.0, "bbox": [ 182.7149200439453, 219.82119750976562, 25.955123901367188, 45.438079833984375 ], "score": 0.29902899265289307 }, { "image_id": 2180, "category_id": 1.0, "bbox": [ 87.36783981323242, 224.5277862548828, 29.308319091796875, 53.02671813964844 ], "score": 0.12085959315299988 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 509.50206756591797, 214.8684844970703, 24.07867431640625, 58.27952575683594 ], "score": 0.9912734031677246 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 520.5568313598633, 216.47055053710938, 23.869247436523438, 57.925750732421875 ], "score": 0.9642658829689026 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 157.456636428833, 218.75042724609375, 25.220861434936523, 55.501556396484375 ], "score": 0.9448273181915283 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 43.06814670562744, 204.34588623046875, 25.47297477722168, 49.186767578125 ], "score": 0.8561066389083862 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 417.2787857055664, 218.4950714111328, 32.46368408203125, 81.62089538574219 ], "score": 0.6406148672103882 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 400.94234466552734, 196.11526489257812, 26.38336181640625, 66.557861328125 ], "score": 0.4463701546192169 }, { "image_id": 2181, "category_id": 1.0, "bbox": [ 26.670541763305664, 201.85614013671875, 30.615501403808594, 54.040679931640625 ], "score": 0.13124318420886993 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 582.2670745849609, 219.22805786132812, 27.649307250976562, 71.91412353515625 ], "score": 0.9981169104576111 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 122.41225242614746, 215.0375518798828, 34.39727783203125, 75.39225769042969 ], "score": 0.9976485967636108 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 598.6501693725586, 220.10574340820312, 28.178176879882812, 65.01556396484375 ], "score": 0.9974564909934998 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 469.5949935913086, 222.51620483398438, 40.48011779785156, 102.7763671875 ], "score": 0.9859791994094849 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 137.82154083251953, 218.27145385742188, 26.191539764404297, 64.36569213867188 ], "score": 0.29290592670440674 }, { "image_id": 2182, "category_id": 1.0, "bbox": [ 242.68535614013672, 216.67559814453125, 16.79393768310547, 30.2755126953125 ], "score": 0.15196239948272705 }, { "image_id": 2183, "category_id": 1.0, "bbox": [ 47.45827674865723, 222.79568481445312, 39.034109115600586, 99.77020263671875 ], "score": 0.991605281829834 }, { "image_id": 2183, "category_id": 1.0, "bbox": [ 62.030463218688965, 226.40199279785156, 38.9754056930542, 88.11814880371094 ], "score": 0.7734577655792236 }, { "image_id": 2183, "category_id": 1.0, "bbox": [ 27.391846179962158, 225.0562744140625, 44.19698476791382, 108.57147216796875 ], "score": 0.2915932536125183 }, { "image_id": 2183, "category_id": 1.0, "bbox": [ 369.18888092041016, 130.1829071044922, 32.36785888671875, 85.23236083984375 ], "score": 0.11753951758146286 }, { "image_id": 2183, "category_id": 1.0, "bbox": [ 590.9861373901367, 246.7163848876953, 42.82829284667969, 136.96995544433594 ], "score": 0.10289010405540466 }, { "image_id": 2184, "category_id": 1.0, "bbox": [ 228.33555221557617, 215.981689453125, 27.127952575683594, 53.079986572265625 ], "score": 0.9687458276748657 }, { "image_id": 2184, "category_id": 1.0, "bbox": [ 572.7727890014648, 209.86328125, 26.826248168945312, 57.7818603515625 ], "score": 0.5575705766677856 }, { "image_id": 2185, "category_id": 1.0, "bbox": [ 139.33277130126953, 211.44525146484375, 35.973262786865234, 79.70822143554688 ], "score": 0.9943516254425049 }, { "image_id": 2185, "category_id": 1.0, "bbox": [ 604.1740417480469, 210.63673400878906, 28.27545166015625, 61.86405944824219 ], "score": 0.9887948036193848 }, { "image_id": 2186, "category_id": 1.0, "bbox": [ 7.375071048736572, 214.9405517578125, 43.39515447616577, 102.66107177734375 ], "score": 0.7914952039718628 }, { "image_id": 2186, "category_id": 1.0, "bbox": [ 537.3319244384766, 168.97288513183594, 22.900390625, 49.15985107421875 ], "score": 0.13546662032604218 }, { "image_id": 2187, "category_id": 1.0, "bbox": [ 329.99168395996094, 216.143798828125, 23.917312622070312, 51.3875732421875 ], "score": 0.7404401302337646 }, { "image_id": 2187, "category_id": 1.0, "bbox": [ 456.3005065917969, 214.2877197265625, 23.691864013671875, 45.373138427734375 ], "score": 0.31107768416404724 }, { "image_id": 2188, "category_id": 1.0, "bbox": [ 356.8719482421875, 222.4095001220703, 21.707000732421875, 54.67973327636719 ], "score": 0.9755425453186035 }, { "image_id": 2189, "category_id": 1.0, "bbox": [ 382.74280548095703, 199.9842071533203, 21.745834350585938, 56.50267028808594 ], "score": 0.5561798810958862 }, { "image_id": 2189, "category_id": 1.0, "bbox": [ 510.3254699707031, 194.46896362304688, 25.726852416992188, 55.334747314453125 ], "score": 0.12028010189533234 }, { "image_id": 2190, "category_id": 1.0, "bbox": [ 409.5764923095703, 226.54898071289062, 25.779266357421875, 59.97119140625 ], "score": 0.9962254762649536 }, { "image_id": 2190, "category_id": 1.0, "bbox": [ 487.0101547241211, 224.90753173828125, 20.888671875, 45.360870361328125 ], "score": 0.12893299758434296 }, { "image_id": 2191, "category_id": 1.0, "bbox": [ 444.1612243652344, 224.40869140625, 31.373291015625, 69.6861572265625 ], "score": 0.9996018409729004 }, { "image_id": 2192, "category_id": 1.0, "bbox": [ 517.3154067993164, 230.7583465576172, 30.879440307617188, 77.60212707519531 ], "score": 0.9992351531982422 }, { "image_id": 2192, "category_id": 1.0, "bbox": [ 554.2826080322266, 225.59019470214844, 18.58642578125, 46.19029235839844 ], "score": 0.819597601890564 }, { "image_id": 2192, "category_id": 1.0, "bbox": [ 468.24947357177734, 243.67135620117188, 22.419586181640625, 61.84014892578125 ], "score": 0.5805977582931519 }, { "image_id": 2192, "category_id": 1.0, "bbox": [ 181.36201858520508, 205.64427185058594, 32.090721130371094, 82.39857482910156 ], "score": 0.10632828623056412 }, { "image_id": 2193, "category_id": 1.0, "bbox": [ 597.0194244384766, 226.26400756835938, 34.21958923339844, 95.92449951171875 ], "score": 0.997337818145752 }, { "image_id": 2193, "category_id": 1.0, "bbox": [ 515.0751113891602, 231.00050354003906, 34.02587890625, 90.29557800292969 ], "score": 0.9554692506790161 }, { "image_id": 2193, "category_id": 1.0, "bbox": [ 14.427380561828613, 116.44041442871094, 42.47243404388428, 111.60244750976562 ], "score": 0.22835873067378998 }, { "image_id": 2193, "category_id": 1.0, "bbox": [ 587.7425384521484, 219.73330688476562, 23.62945556640625, 70.28826904296875 ], "score": 0.1373627930879593 }, { "image_id": 2194, "category_id": 1.0, "bbox": [ 62.84590721130371, 199.97885131835938, 74.66577529907227, 54.309112548828125 ], "score": 0.14320026338100433 }, { "image_id": 2194, "category_id": 1.0, "bbox": [ 534.8495101928711, 213.19802856445312, 22.407455444335938, 42.010894775390625 ], "score": 0.13478997349739075 }, { "image_id": 2195, "category_id": 1.0, "bbox": [ 587.2301864624023, 212.8114776611328, 27.947158813476562, 58.08351135253906 ], "score": 0.9980872869491577 }, { "image_id": 2195, "category_id": 1.0, "bbox": [ 45.64899921417236, 198.1773681640625, 77.85211086273193, 59.46173095703125 ], "score": 0.10786229372024536 }, { "image_id": 2196, "category_id": 1.0, "bbox": [ 3.414149284362793, 187.6938018798828, 73.35982322692871, 67.84930419921875 ], "score": 0.2167147696018219 }, { "image_id": 2196, "category_id": 1.0, "bbox": [ 38.24850082397461, 189.24514770507812, 47.65915870666504, 60.969940185546875 ], "score": 0.16187065839767456 }, { "image_id": 2197, "category_id": 1.0, "bbox": [ 4.433481693267822, 194.33795166015625, 50.225322246551514, 72.02978515625 ], "score": 0.11655528843402863 }, { "image_id": 2201, "category_id": 1.0, "bbox": [ 595.71533203125, 214.9204559326172, 36.31370544433594, 78.06538391113281 ], "score": 0.5190989375114441 }, { "image_id": 2202, "category_id": 1.0, "bbox": [ 491.3637161254883, 220.17837524414062, 28.796005249023438, 68.76736450195312 ], "score": 0.3633984923362732 }, { "image_id": 2203, "category_id": 1.0, "bbox": [ 585.1533889770508, 211.8172149658203, 35.51666259765625, 94.38859558105469 ], "score": 0.8090988397598267 }, { "image_id": 2203, "category_id": 1.0, "bbox": [ 515.2396774291992, 215.71267700195312, 33.67759704589844, 75.78396606445312 ], "score": 0.2922007739543915 }, { "image_id": 2204, "category_id": 1.0, "bbox": [ 239.81782913208008, 198.371337890625, 46.133384704589844, 105.09661865234375 ], "score": 0.13070546090602875 }, { "image_id": 2205, "category_id": 1.0, "bbox": [ 463.62525939941406, 216.72386169433594, 22.715835571289062, 48.60670471191406 ], "score": 0.1177484467625618 }, { "image_id": 2206, "category_id": 1.0, "bbox": [ 474.324951171875, 19.107284545898438, 30.341873168945312, 82.33676147460938 ], "score": 0.1197015568614006 }, { "image_id": 2206, "category_id": 1.0, "bbox": [ 484.14806365966797, 218.08457946777344, 19.917373657226562, 36.654022216796875 ], "score": 0.10998289287090302 }, { "image_id": 2211, "category_id": 1.0, "bbox": [ 425.3275680541992, 210.38027954101562, 20.96923828125, 41.345306396484375 ], "score": 0.11307275295257568 }, { "image_id": 2212, "category_id": 1.0, "bbox": [ 476.6609191894531, 217.42587280273438, 22.934722900390625, 41.104583740234375 ], "score": 0.24548354744911194 }, { "image_id": 2213, "category_id": 1.0, "bbox": [ 528.7703704833984, 220.7528839111328, 21.314315795898438, 44.72172546386719 ], "score": 0.34381303191185 }, { "image_id": 2213, "category_id": 1.0, "bbox": [ 449.2893981933594, 213.84857177734375, 28.852996826171875, 40.550048828125 ], "score": 0.1201290711760521 }, { "image_id": 2214, "category_id": 1.0, "bbox": [ 459.70638275146484, 214.07102966308594, 20.495147705078125, 45.42164611816406 ], "score": 0.7645207643508911 }, { "image_id": 2215, "category_id": 1.0, "bbox": [ 566.3470458984375, 219.80958557128906, 23.768692016601562, 55.70884704589844 ], "score": 0.990985631942749 }, { "image_id": 2215, "category_id": 1.0, "bbox": [ 478.19164276123047, 219.71044921875, 21.59088134765625, 52.863311767578125 ], "score": 0.9685459136962891 }, { "image_id": 2215, "category_id": 1.0, "bbox": [ 466.9436264038086, 215.8693084716797, 19.694137573242188, 54.55912780761719 ], "score": 0.688493013381958 }, { "image_id": 2215, "category_id": 1.0, "bbox": [ 514.8249816894531, 212.81201171875, 39.03953552246094, 96.7283935546875 ], "score": 0.11299272626638412 }, { "image_id": 2216, "category_id": 1.0, "bbox": [ 525.3381729125977, 219.88006591796875, 24.8760986328125, 67.97540283203125 ], "score": 0.997361421585083 }, { "image_id": 2216, "category_id": 1.0, "bbox": [ 512.5030517578125, 220.9557647705078, 22.457733154296875, 65.21098327636719 ], "score": 0.7885688543319702 }, { "image_id": 2216, "category_id": 1.0, "bbox": [ 9.59449052810669, 196.7485809326172, 60.82704305648804, 57.859893798828125 ], "score": 0.23359349370002747 }, { "image_id": 2216, "category_id": 1.0, "bbox": [ 28.1618595123291, 204.07553100585938, 29.581279754638672, 48.256927490234375 ], "score": 0.13395893573760986 }, { "image_id": 2216, "category_id": 1.0, "bbox": [ 501.5541076660156, 222.50694274902344, 46.62879943847656, 73.17036437988281 ], "score": 0.11802425980567932 }, { "image_id": 2217, "category_id": 1.0, "bbox": [ 424.58072662353516, 211.92630004882812, 20.694198608398438, 46.35198974609375 ], "score": 0.11823798716068268 }, { "image_id": 2218, "category_id": 1.0, "bbox": [ 468.3390808105469, 222.1397705078125, 19.1815185546875, 39.926300048828125 ], "score": 0.2819178104400635 }, { "image_id": 2219, "category_id": 1.0, "bbox": [ 540.8689880371094, 219.7579803466797, 25.725555419921875, 57.11930847167969 ], "score": 0.9516972303390503 }, { "image_id": 2219, "category_id": 1.0, "bbox": [ 533.638916015625, 215.0434112548828, 51.65626525878906, 69.11186218261719 ], "score": 0.15003079175949097 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 474.5403289794922, 220.01422119140625, 20.169677734375, 44.64434814453125 ], "score": 0.7551653981208801 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 496.2965774536133, 219.19882202148438, 20.695419311523438, 47.846954345703125 ], "score": 0.36710864305496216 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 451.18953704833984, 216.56890869140625, 20.648117065429688, 47.573028564453125 ], "score": 0.2467252016067505 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 434.0570831298828, 104.39616394042969, 27.831192016601562, 48.257843017578125 ], "score": 0.14939992129802704 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 18.265515565872192, 177.52780151367188, 30.993603467941284, 76.69833374023438 ], "score": 0.10758881270885468 }, { "image_id": 2220, "category_id": 1.0, "bbox": [ 465.3284454345703, 215.4579315185547, 20.904083251953125, 48.35740661621094 ], "score": 0.10704833269119263 }, { "image_id": 2221, "category_id": 1.0, "bbox": [ 540.362663269043, 210.38119506835938, 22.485275268554688, 54.802520751953125 ], "score": 0.9936453104019165 }, { "image_id": 2221, "category_id": 1.0, "bbox": [ 507.89939880371094, 214.98524475097656, 20.5108642578125, 45.86869812011719 ], "score": 0.9056062698364258 }, { "image_id": 2221, "category_id": 1.0, "bbox": [ 523.3555221557617, 214.31932067871094, 20.86822509765625, 50.31422424316406 ], "score": 0.7222137451171875 }, { "image_id": 2222, "category_id": 1.0, "bbox": [ 608.9959335327148, 220.50765991210938, 24.381484985351562, 67.73641967773438 ], "score": 0.9961553812026978 }, { "image_id": 2222, "category_id": 1.0, "bbox": [ 592.5121307373047, 221.4110870361328, 22.6416015625, 62.04042053222656 ], "score": 0.9937423467636108 }, { "image_id": 2223, "category_id": 1.0, "bbox": [ 74.28525924682617, 233.8236541748047, 39.65799331665039, 94.41731262207031 ], "score": 0.35745126008987427 }, { "image_id": 2223, "category_id": 1.0, "bbox": [ 90.26012420654297, 177.31857299804688, 21.727123260498047, 60.865020751953125 ], "score": 0.15275724232196808 }, { "image_id": 2224, "category_id": 1.0, "bbox": [ 443.5307312011719, 208.239501953125, 63.42559814453125, 43.738128662109375 ], "score": 0.1498100906610489 }, { "image_id": 2225, "category_id": 1.0, "bbox": [ 515.7787322998047, 223.40237426757812, 22.881393432617188, 59.490020751953125 ], "score": 0.923870325088501 }, { "image_id": 2225, "category_id": 1.0, "bbox": [ 496.35719299316406, 225.87210083007812, 25.263442993164062, 56.833892822265625 ], "score": 0.8915140628814697 }, { "image_id": 2225, "category_id": 1.0, "bbox": [ 370.79551696777344, 216.5727996826172, 30.01983642578125, 76.12477111816406 ], "score": 0.14003345370292664 }, { "image_id": 2225, "category_id": 1.0, "bbox": [ 478.79310607910156, 216.23074340820312, 63.25347900390625, 69.1141357421875 ], "score": 0.11888919770717621 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 521.2570190429688, 229.76303100585938, 26.484298706054688, 55.44464111328125 ], "score": 0.9986585378646851 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 568.8227462768555, 233.98129272460938, 21.8194580078125, 61.27972412109375 ], "score": 0.9430091381072998 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 553.0002975463867, 236.86721801757812, 24.012527465820312, 57.03887939453125 ], "score": 0.7966176271438599 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 538.9549255371094, 228.67527770996094, 54.04243469238281, 70.13475036621094 ], "score": 0.5396280884742737 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 515.5287170410156, 226.86610412597656, 49.26277160644531, 70.75132751464844 ], "score": 0.13069620728492737 }, { "image_id": 2226, "category_id": 1.0, "bbox": [ 396.32946014404297, 229.40382385253906, 27.826309204101562, 51.57624816894531 ], "score": 0.12370789796113968 }, { "image_id": 2227, "category_id": 1.0, "bbox": [ 589.9419021606445, 197.09732055664062, 28.007659912109375, 60.75177001953125 ], "score": 0.9888911843299866 }, { "image_id": 2227, "category_id": 1.0, "bbox": [ 566.2886810302734, 197.24468994140625, 27.38189697265625, 65.876953125 ], "score": 0.9445226192474365 }, { "image_id": 2227, "category_id": 1.0, "bbox": [ 403.1951141357422, 184.35948181152344, 50.72479248046875, 66.93328857421875 ], "score": 0.17846395075321198 }, { "image_id": 2228, "category_id": 1.0, "bbox": [ 464.86080169677734, 211.6890869140625, 19.525146484375, 54.669036865234375 ], "score": 0.9498351812362671 }, { "image_id": 2228, "category_id": 1.0, "bbox": [ 449.7994613647461, 215.47000122070312, 20.826263427734375, 49.95452880859375 ], "score": 0.8553066253662109 }, { "image_id": 2228, "category_id": 1.0, "bbox": [ 431.89701080322266, 199.18960571289062, 56.81907653808594, 68.92837524414062 ], "score": 0.13237959146499634 }, { "image_id": 2228, "category_id": 1.0, "bbox": [ 435.413818359375, 208.28053283691406, 20.169219970703125, 47.218780517578125 ], "score": 0.11071997135877609 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 524.6904373168945, 212.5632781982422, 27.927474975585938, 82.32701110839844 ], "score": 0.9951905012130737 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 508.3678436279297, 220.72817993164062, 25.543975830078125, 60.57708740234375 ], "score": 0.9287333488464355 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 508.59912872314453, 225.34129333496094, 48.75587463378906, 126.81489562988281 ], "score": 0.3857813775539398 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 204.76903915405273, 206.63461303710938, 26.770362854003906, 46.518402099609375 ], "score": 0.267646849155426 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 438.9439010620117, 214.88540649414062, 67.76817321777344, 56.523712158203125 ], "score": 0.11506617814302444 }, { "image_id": 2229, "category_id": 1.0, "bbox": [ 472.04090118408203, 217.46563720703125, 24.161529541015625, 55.11993408203125 ], "score": 0.11046305298805237 }, { "image_id": 2230, "category_id": 1.0, "bbox": [ 543.1242752075195, 215.9588623046875, 23.015213012695312, 54.057220458984375 ], "score": 0.9268354177474976 }, { "image_id": 2230, "category_id": 1.0, "bbox": [ 522.7236557006836, 221.408203125, 25.1385498046875, 51.017486572265625 ], "score": 0.4386175870895386 }, { "image_id": 2230, "category_id": 1.0, "bbox": [ 592.3149490356445, 217.89224243164062, 42.51731872558594, 103.90606689453125 ], "score": 0.18457365036010742 }, { "image_id": 2232, "category_id": 1.0, "bbox": [ 560.9324645996094, 241.43881225585938, 43.35746765136719, 92.80767822265625 ], "score": 0.11283065378665924 }, { "image_id": 2233, "category_id": 1.0, "bbox": [ 125.86341857910156, 232.5628204345703, 32.530784606933594, 40.87229919433594 ], "score": 0.12025652825832367 }, { "image_id": 2236, "category_id": 1.0, "bbox": [ 363.62354278564453, 218.42086791992188, 37.60498046875, 92.50030517578125 ], "score": 0.15266913175582886 }, { "image_id": 2236, "category_id": 1.0, "bbox": [ 393.58394622802734, 216.82888793945312, 21.749801635742188, 43.78582763671875 ], "score": 0.13057512044906616 }, { "image_id": 2237, "category_id": 1.0, "bbox": [ 358.4450149536133, 216.92755126953125, 22.877883911132812, 46.91729736328125 ], "score": 0.3402840495109558 }, { "image_id": 2238, "category_id": 1.0, "bbox": [ 353.2722854614258, 208.4752655029297, 22.171249389648438, 46.51654052734375 ], "score": 0.3396300673484802 }, { "image_id": 2238, "category_id": 1.0, "bbox": [ 341.7201232910156, 254.4493408203125, 39.86198425292969, 106.42413330078125 ], "score": 0.20383158326148987 }, { "image_id": 2238, "category_id": 1.0, "bbox": [ 329.64054107666016, 198.0364990234375, 63.35945129394531, 56.51324462890625 ], "score": 0.1096053421497345 }, { "image_id": 2239, "category_id": 1.0, "bbox": [ 422.4346160888672, 217.8905487060547, 20.812911987304688, 44.62596130371094 ], "score": 0.45587730407714844 }, { "image_id": 2239, "category_id": 1.0, "bbox": [ 408.80821228027344, 219.89068603515625, 20.308380126953125, 46.54803466796875 ], "score": 0.19689497351646423 }, { "image_id": 2239, "category_id": 1.0, "bbox": [ 328.15860748291016, 86.68511199951172, 56.406402587890625, 86.60977935791016 ], "score": 0.12989124655723572 }, { "image_id": 2240, "category_id": 1.0, "bbox": [ 481.5499496459961, 217.13287353515625, 21.006698608398438, 50.735870361328125 ], "score": 0.6822537183761597 }, { "image_id": 2240, "category_id": 1.0, "bbox": [ 466.75464630126953, 221.44747924804688, 20.401763916015625, 44.947601318359375 ], "score": 0.43692904710769653 }, { "image_id": 2241, "category_id": 1.0, "bbox": [ 557.1768188476562, 208.1466064453125, 22.477340698242188, 50.369293212890625 ], "score": 0.8629631400108337 }, { "image_id": 2241, "category_id": 1.0, "bbox": [ 542.4312973022461, 212.851318359375, 20.620498657226562, 44.543426513671875 ], "score": 0.3223269283771515 }, { "image_id": 2241, "category_id": 1.0, "bbox": [ 116.8504810333252, 230.73443603515625, 35.26052474975586, 68.43853759765625 ], "score": 0.14920762181282043 }, { "image_id": 2242, "category_id": 1.0, "bbox": [ 597.0149993896484, 219.29029846191406, 29.062728881835938, 56.70429992675781 ], "score": 0.866421639919281 }, { "image_id": 2242, "category_id": 1.0, "bbox": [ 583.3467864990234, 221.91021728515625, 26.161727905273438, 49.405059814453125 ], "score": 0.4798116087913513 }, { "image_id": 2242, "category_id": 1.0, "bbox": [ 563.3101654052734, 189.52423095703125, 29.184722900390625, 77.63296508789062 ], "score": 0.20073477923870087 }, { "image_id": 2242, "category_id": 1.0, "bbox": [ 503.280029296875, 112.95669555664062, 49.83489990234375, 130.14825439453125 ], "score": 0.1666426658630371 }, { "image_id": 2242, "category_id": 1.0, "bbox": [ 143.2111358642578, 232.81591796875, 30.862655639648438, 56.5684814453125 ], "score": 0.1045735701918602 }, { "image_id": 2243, "category_id": 1.0, "bbox": [ 450.22327423095703, 204.8285675048828, 19.6051025390625, 41.2052001953125 ], "score": 0.19253236055374146 }, { "image_id": 2244, "category_id": 1.0, "bbox": [ 524.858512878418, 216.79684448242188, 20.973663330078125, 49.96319580078125 ], "score": 0.9848946332931519 }, { "image_id": 2244, "category_id": 1.0, "bbox": [ 506.4561080932617, 217.188720703125, 20.945892333984375, 48.8277587890625 ], "score": 0.9269237518310547 }, { "image_id": 2244, "category_id": 1.0, "bbox": [ 489.11155700683594, 210.89572143554688, 19.617156982421875, 44.307373046875 ], "score": 0.4218883514404297 }, { "image_id": 2244, "category_id": 1.0, "bbox": [ 499.0084457397461, 215.203857421875, 20.810775756835938, 40.549652099609375 ], "score": 0.13679267466068268 }, { "image_id": 2245, "category_id": 1.0, "bbox": [ 589.920539855957, 217.637451171875, 25.899887084960938, 55.166107177734375 ], "score": 0.7403061389923096 }, { "image_id": 2245, "category_id": 1.0, "bbox": [ 538.3799743652344, 214.55197143554688, 24.391555786132812, 45.694549560546875 ], "score": 0.5700162649154663 }, { "image_id": 2245, "category_id": 1.0, "bbox": [ 576.8458938598633, 211.7288818359375, 24.106903076171875, 52.0147705078125 ], "score": 0.25385716557502747 }, { "image_id": 2245, "category_id": 1.0, "bbox": [ 539.3775177001953, 184.93479919433594, 41.28913879394531, 88.58760070800781 ], "score": 0.17965196073055267 }, { "image_id": 2246, "category_id": 1.0, "bbox": [ 592.2939300537109, 216.8411102294922, 20.84991455078125, 50.58949279785156 ], "score": 0.7283225655555725 }, { "image_id": 2248, "category_id": 1.0, "bbox": [ 101.47520065307617, 207.09141540527344, 21.719322204589844, 44.60498046875 ], "score": 0.2458525002002716 }, { "image_id": 2249, "category_id": 1.0, "bbox": [ 69.70420837402344, 204.44908142089844, 25.290966033935547, 43.819610595703125 ], "score": 0.26082369685173035 }, { "image_id": 2250, "category_id": 1.0, "bbox": [ 17.980657815933228, 196.53578186035156, 25.3099524974823, 56.78814697265625 ], "score": 0.5640450716018677 }, { "image_id": 2251, "category_id": 1.0, "bbox": [ 63.8364315032959, 213.45989990234375, 23.559494018554688, 37.366912841796875 ], "score": 0.10354164242744446 } ] ================================================ FILE: evaluation_script/state_of_arts/MLPD_result.txt ================================================ 1,503.0512,213.2522,18.0536,42.1411,0.12698865 2,529.1219,224.2851,20.8807,47.9709,0.83398271 3,564.2303,233.7404,21.8639,51.0883,0.98514092 5,552.1976,224.4960,24.4659,49.8881,0.15663797 7,49.7276,114.1636,51.6205,114.1263,0.11485516 13,458.6833,209.5647,20.7809,44.8680,0.27480084 13,13.9664,199.7002,57.7323,57.0015,0.19077843 14,485.5388,215.5066,22.6797,43.5522,0.61197835 14,23.5405,211.0618,23.2994,43.9757,0.13415420 14,577.0422,188.2984,49.5192,67.6838,0.11247385 15,528.9784,217.1460,29.3220,77.6048,0.10095777 16,572.9164,226.2421,28.2542,51.6265,0.95330858 16,103.0663,211.1919,35.2466,49.7191,0.13602343 16,567.8053,165.1407,43.4565,115.5116,0.12042056 17,460.6635,203.9066,18.2021,39.2943,0.48690134 17,444.5890,205.4541,18.3726,41.4210,0.47942293 18,468.0621,215.4019,18.8854,41.7486,0.85872388 18,451.8338,215.9971,18.8352,44.0744,0.77943009 18,68.9192,211.0519,25.1414,49.1426,0.24995394 18,505.5922,213.8452,33.9500,40.1142,0.16678527 19,484.6466,215.6824,20.0030,45.3230,0.98948604 19,464.9083,216.0610,19.9065,46.3871,0.98749816 19,20.5766,203.6342,31.5690,61.7902,0.15626362 20,488.8770,220.8859,24.0559,48.5021,0.99865389 20,515.4803,218.8590,22.9412,48.5970,0.99656337 20,506.3026,222.4684,21.8065,45.2352,0.26041132 20,385.2390,218.6480,25.1206,51.1386,0.24597952 21,542.1163,214.8457,25.7826,60.7286,0.99986351 21,574.5331,213.7085,25.3233,59.1052,0.99984264 21,560.4822,218.9965,23.8866,50.2149,0.11161107 22,453.3826,215.1606,20.5991,46.9435,0.79677421 22,421.5554,213.2878,42.4557,82.5787,0.13499728 23,518.0120,210.2978,30.0554,71.2589,0.99812305 23,479.7264,209.6622,24.4338,50.2001,0.17284361 23,493.5998,202.2569,20.9904,60.2952,0.10975772 24,546.5247,217.6406,26.3147,59.1324,0.99524850 24,569.8491,216.4225,26.6483,61.0175,0.93979579 24,611.4917,194.7902,23.4585,52.4340,0.53263998 24,560.4839,219.2242,25.4954,56.6225,0.41398203 24,79.9334,205.0410,58.6819,42.4399,0.18074359 24,494.0580,222.5324,25.4150,41.4335,0.11864857 25,326.7052,207.4198,21.2717,41.1116,0.44707066 26,313.3883,214.8977,21.2917,41.0999,0.77269316 26,13.3369,215.3663,23.4818,54.8576,0.38187951 27,289.1076,218.1646,24.9699,44.3800,0.96423239 28,247.0107,212.4919,26.8932,54.9845,0.99932927 29,187.3944,210.3755,34.4130,70.0818,0.99518967 30,85.2277,216.5968,42.8922,84.2370,0.99838310 30,64.9322,212.1791,25.8219,50.7053,0.13668813 30,455.8125,191.5473,26.8517,53.3387,0.13230030 31,466.5932,173.3518,26.1832,58.0879,0.41778210 32,19.6522,217.3901,41.8939,54.5368,0.16876574 32,83.8812,193.1526,32.9677,49.2134,0.16111928 33,434.4839,209.2714,18.8842,48.6521,0.38553250 34,363.4322,206.7944,19.7189,40.0455,0.17604572 35,558.0717,216.7004,24.0470,58.8839,0.99944597 35,525.0101,218.1566,26.5107,55.5152,0.98142982 35,373.4801,208.5040,20.7768,43.4714,0.74859613 36,396.9532,213.6765,22.0142,46.4414,0.98156226 36,97.3416,203.6732,32.1007,32.9497,0.17620406 37,433.6350,214.3172,25.5421,57.7249,0.99986094 38,507.0069,221.0391,32.9239,85.0237,0.99909353 38,491.8155,224.2004,21.2808,41.4821,0.19220297 39,177.2237,208.0291,27.1381,42.3934,0.30589941 39,346.2792,216.4498,29.0028,45.8047,0.17384474 40,469.4238,202.6314,39.6278,110.5038,0.23740083 40,158.3100,212.1477,24.1058,42.5112,0.18367180 41,120.4201,217.0963,22.8555,41.3569,0.59884542 42,60.6437,208.5382,32.7584,56.8286,0.97893941 42,50.0242,216.3479,33.6281,58.7036,0.82967949 43,7.2567,219.9874,30.6751,63.4387,0.42653388 45,446.1163,206.0870,24.6409,47.5712,0.98998594 46,496.4209,214.4661,22.1514,53.8754,0.99888885 46,479.1084,215.3693,21.7558,58.3633,0.88872707 47,588.9061,192.2298,41.5767,118.8364,0.13578178 55,549.2651,218.1018,24.7482,50.2940,0.98938155 55,390.1396,213.8194,23.0484,45.5599,0.78601754 55,568.0349,217.3847,23.2156,54.4766,0.60147655 55,372.4607,210.0985,19.8075,41.0630,0.39292100 55,608.2876,205.9467,25.8187,50.9887,0.37818843 55,559.2043,212.9574,22.6712,55.4610,0.25937372 56,419.9942,218.9977,22.5378,50.6034,0.99489343 56,397.9746,217.6758,22.0609,53.8929,0.94746494 56,409.5868,219.6199,20.7835,51.4976,0.12878841 57,488.5021,225.5286,30.7955,72.5979,0.99839437 57,452.8201,218.1227,34.0621,79.4057,0.99797046 57,433.8403,207.7330,20.7310,46.7111,0.50083834 58,469.8510,209.5960,21.4879,46.4981,0.96961629 59,528.1982,204.8052,28.8332,64.0049,0.99972081 60,423.0149,197.4796,21.7064,45.0994,0.90356398 61,462.5374,197.8752,29.0222,68.1328,0.99934769 62,522.2578,196.8263,36.3275,83.6615,0.99922103 63,610.3098,165.1861,34.0151,98.0157,0.42521027 64,111.9588,203.2882,22.2643,38.0318,0.11906014 64,374.2254,208.1424,19.4626,44.4390,0.11864410 66,538.5134,191.5258,24.4717,49.6205,0.16372651 67,550.9747,186.4633,25.6145,51.7848,0.83604598 67,391.5007,213.1625,23.0209,42.2073,0.20842409 67,377.6778,212.1542,22.2082,45.5545,0.14394775 67,418.4797,206.1393,22.5460,45.8040,0.12867795 67,476.9483,189.5440,26.9862,62.8041,0.10081443 68,363.6688,210.9071,23.7640,51.8171,0.78292048 68,562.4622,185.3903,32.6543,69.0374,0.66036850 68,346.9002,216.5517,19.8911,46.5413,0.15466759 69,336.2331,213.2434,26.6815,49.0004,0.99477065 69,390.9380,214.0325,23.8636,51.4032,0.97354335 69,378.2645,213.5830,21.2862,57.6322,0.12411849 70,390.8260,213.8739,24.2722,52.2237,0.98227227 70,436.3318,202.9538,27.7631,59.1868,0.33115593 70,406.0546,211.3652,23.9650,53.5103,0.32515436 70,415.4833,208.8766,25.6568,54.9392,0.26669720 71,458.1599,215.5615,24.2699,56.1820,0.99702966 71,480.4963,211.8610,22.4908,51.4840,0.62466526 71,532.0298,205.5641,50.9286,134.3380,0.20712608 71,472.9348,215.8614,21.0301,52.0582,0.12741616 72,509.5151,215.7524,27.9487,55.9432,0.99784964 72,489.6116,226.4394,25.5839,46.4131,0.26001832 73,533.4301,220.1189,27.2926,54.7262,0.80335689 74,574.1225,235.0171,22.1500,50.4542,0.92044497 74,595.0667,228.6041,31.8330,53.9792,0.44922256 74,560.9644,229.9895,22.1606,49.9829,0.30054724 74,335.2789,232.3858,23.2800,56.4992,0.10911951 75,516.0740,226.0981,28.8348,62.6280,0.99394089 75,534.7632,237.1632,25.7949,53.4186,0.94099176 75,585.3630,228.7693,22.4683,46.8382,0.61156660 76,546.2142,219.5014,30.1878,65.3827,0.99531281 76,500.5252,219.9633,29.1666,59.8392,0.99307251 76,526.5187,225.8695,24.7832,63.7574,0.95580703 76,535.8356,229.4158,29.7559,53.0546,0.23692679 76,514.2189,229.6935,26.8388,53.3292,0.15133327 77,583.5161,230.1772,32.1527,74.5302,0.99911940 77,173.7741,213.0352,24.8336,55.0502,0.39896828 77,450.9132,229.1211,17.4921,31.1763,0.19306228 78,576.1984,226.8151,41.6064,101.4216,0.99798751 78,462.4644,225.1420,18.0853,36.2986,0.12646306 79,479.2677,217.9205,20.0738,41.1071,0.80358034 79,120.1498,201.6508,25.3028,51.8141,0.12664755 79,333.2428,208.2967,68.1944,43.9074,0.10292093 80,511.0847,210.4769,20.8598,49.8135,0.87977016 81,577.4984,216.3511,24.2655,58.5000,0.82020998 82,11.9982,141.4968,44.3325,106.8710,0.19233990 82,407.8426,205.6566,22.4961,47.2137,0.13084209 83,118.9223,201.2027,27.0357,48.1224,0.15838593 84,316.6154,234.3753,25.0905,61.2137,0.23051128 84,440.2357,232.3707,19.8070,47.0186,0.17866871 85,469.4857,211.2068,25.2341,51.2112,0.14894609 86,475.7619,203.4332,28.4639,70.8734,0.98858404 86,503.7368,205.6729,26.2591,66.3105,0.78980458 86,487.7035,206.3978,26.5141,64.5209,0.27736121 87,586.0108,206.8806,37.3259,84.3048,0.99935186 87,549.9873,206.9585,36.5580,91.8477,0.99912667 91,470.0034,222.3717,19.4779,46.7344,0.63777947 91,36.7951,110.0775,57.0990,151.4288,0.13784879 91,481.8121,220.5049,19.9488,50.6406,0.10167602 92,512.4229,217.4848,27.8951,56.1264,0.99940479 92,545.7786,213.3928,22.4017,50.0672,0.18691111 92,471.4923,216.7112,24.0219,50.4454,0.15580557 93,581.3638,217.3205,29.7872,80.0449,0.99688506 93,605.5351,224.4349,24.2319,56.4871,0.73196983 93,183.1693,171.8677,21.8959,38.4830,0.21608388 93,546.1276,223.3027,21.8729,47.5268,0.19244342 94,559.7264,219.0981,28.2719,66.9581,0.98702157 94,540.2857,222.5061,26.8401,61.3200,0.98519778 94,168.7701,165.4122,22.1696,41.2496,0.52136040 94,443.7585,195.0365,26.6575,69.6521,0.32762882 94,581.3422,216.2955,31.8701,72.3798,0.18619606 94,301.6262,187.8478,21.4573,41.8965,0.14938819 94,356.6093,197.8923,32.5574,41.9604,0.14289650 95,548.9593,218.7464,31.7831,78.5404,0.99862874 95,575.3839,215.8262,33.0003,83.8377,0.99473977 95,611.4316,221.0823,25.0460,56.1787,0.93380654 95,271.8340,183.4301,23.0840,44.8227,0.45370537 95,359.2635,202.8163,20.0338,43.1433,0.35342067 95,114.4408,151.2034,27.2130,40.2334,0.26504827 95,344.2771,198.8538,21.0221,47.8095,0.25773138 95,430.7417,190.7122,26.5741,70.9798,0.13342431 96,585.3962,216.2271,26.8037,61.6554,0.99871308 96,512.7888,212.3857,38.1875,100.1763,0.99868870 96,544.9425,209.8253,33.7791,97.0035,0.99754405 96,527.8418,209.0398,37.4776,98.9635,0.77938294 96,277.5618,200.2701,24.1845,55.5036,0.77585173 96,263.8521,205.5656,21.5501,49.7425,0.76571774 96,297.1529,199.0437,23.8356,54.0963,0.65185016 96,199.1751,182.0902,23.6155,52.9659,0.61023009 96,13.6396,137.9034,33.5316,46.4484,0.28825048 96,364.4468,216.2657,25.7432,51.9782,0.13704756 96,372.0418,179.0710,31.0302,92.0906,0.11076082 97,527.3308,221.0907,25.9720,59.0307,0.99949902 97,440.1332,215.0329,38.7853,101.1787,0.99768806 97,467.8993,213.4140,36.3516,100.4055,0.99726909 97,191.8409,211.6407,26.6707,61.2127,0.80176270 97,216.6993,205.6109,25.0807,59.1682,0.67050123 97,176.5419,213.6893,26.0259,57.7458,0.62591058 97,100.3765,187.7821,27.3993,55.8184,0.49095652 97,293.4147,223.8371,29.0325,48.5828,0.16580908 97,282.8113,223.2253,54.5081,61.4114,0.10888731 98,350.5054,211.2041,41.9195,110.3984,0.99909556 98,386.4227,211.6621,45.1192,107.9860,0.99848449 98,467.6591,220.8181,28.4811,62.3670,0.98911679 98,214.9279,215.7951,26.9131,61.4955,0.86715645 98,96.9188,213.6380,34.0495,67.3665,0.67134804 98,146.8242,211.1678,29.7750,74.0103,0.63292706 98,7.4545,191.9401,28.2897,67.1695,0.61335826 98,117.3479,207.7037,30.7701,75.4940,0.60221171 98,136.2727,216.2981,28.2508,69.8600,0.38710153 99,323.6619,209.1988,41.6248,112.6280,0.99826396 99,425.3642,220.6200,24.4576,62.3822,0.99785388 99,589.6456,230.3704,38.7005,105.7393,0.99639022 99,287.6041,210.2823,41.0582,108.6789,0.99600971 99,67.7905,207.6595,33.3721,80.3973,0.95285368 99,47.4299,211.4922,36.5434,74.7923,0.85234439 99,163.0329,216.9785,27.6607,63.3056,0.82153285 99,102.2581,213.0680,35.7818,77.1168,0.80021346 99,82.8749,204.0708,32.4536,76.0599,0.13306217 99,309.4665,211.0543,38.5195,106.2261,0.13016212 100,540.8376,231.4320,39.6300,103.0585,0.99780482 100,288.6949,213.1641,34.7450,100.9325,0.99480712 100,257.6404,214.9873,39.4098,98.6389,0.99392694 100,406.9771,220.8797,24.0568,60.1359,0.98978937 100,57.9869,211.4854,36.4334,78.3823,0.98334146 100,108.6147,212.1874,31.9303,77.4478,0.52603406 100,134.6274,213.2733,33.3403,73.3389,0.22199930 100,73.2730,211.5509,36.5840,86.5233,0.14836881 101,407.7284,220.6382,24.5236,59.4054,0.99955142 101,505.3390,227.9457,37.1059,93.5927,0.99917465 101,266.5737,211.3117,34.8119,100.0600,0.99679136 101,237.2177,219.1057,38.1081,87.1829,0.99609220 101,126.1127,218.2943,31.6992,74.7623,0.98964489 101,86.8705,209.5419,35.8607,84.5232,0.97234988 101,63.9678,212.0840,37.8650,80.5756,0.96718502 101,468.2964,207.6944,26.7931,52.3801,0.10297901 102,535.4435,241.0704,61.9692,178.0214,0.99941278 102,248.4685,213.2579,32.0491,91.0396,0.99631059 102,480.4284,226.5119,36.1211,89.3884,0.99493992 102,223.2081,218.9815,30.5072,84.8298,0.98912084 102,107.4277,210.7373,36.7304,86.9352,0.98751414 102,145.2081,216.5960,37.2550,81.8563,0.98027587 102,83.1854,217.3483,37.6752,80.3321,0.97142351 102,421.8350,225.4786,23.4634,50.6979,0.60942775 102,130.2110,209.9850,29.1815,66.7961,0.41038060 102,557.4369,295.4246,44.3091,129.4516,0.16847968 102,237.0830,216.0970,29.8008,85.5633,0.12294337 103,473.2785,242.3108,56.9394,157.5114,0.99972641 103,123.7596,208.6130,36.5272,90.2693,0.99880934 103,163.0689,214.5482,37.2976,91.1697,0.99571848 103,222.3557,219.3769,27.7202,82.0645,0.98736489 103,443.0171,226.0911,33.8514,82.7980,0.97970718 103,102.2217,217.1801,41.2448,91.8170,0.97613394 103,198.9854,216.6555,26.4240,84.8412,0.95456988 103,431.6608,220.2921,25.4911,59.4436,0.31971747 103,450.7474,239.0666,37.1053,104.9066,0.17983797 104,408.5312,236.5316,54.0289,153.0535,0.99869156 104,153.8299,213.9151,38.2990,102.1390,0.99534637 104,119.6856,204.6467,41.4632,107.8854,0.99417508 104,99.8035,211.8876,43.4425,113.6487,0.82612085 104,78.6965,213.2609,26.8800,76.7446,0.28516871 104,433.6472,214.7892,20.6940,60.5877,0.28363669 104,88.0939,220.0138,38.6226,94.7861,0.25870109 104,392.8356,217.7903,36.2720,93.4073,0.16058779 104,426.6915,296.8905,34.0733,93.3873,0.12805900 105,306.3268,236.1329,57.4011,157.5060,0.99923003 105,103.4978,219.3059,42.4141,103.8573,0.99588346 105,67.3633,205.7424,45.3290,127.3583,0.99486971 105,17.4275,214.2457,51.4431,124.1751,0.98406380 105,87.7297,211.8693,39.7726,111.2010,0.72998250 105,380.9050,214.5682,24.0054,58.0588,0.50100338 105,13.6292,212.0912,37.0763,88.8375,0.37038806 105,329.5314,267.8973,40.2291,117.8355,0.19642687 105,340.6070,218.1957,25.9103,61.9834,0.19627407 105,5.3093,233.5678,29.4006,70.5514,0.10941779 106,136.7901,231.8855,66.6765,172.0093,0.99701822 106,206.2403,224.3626,26.3852,59.3204,0.91111469 106,165.7999,227.0018,37.6023,88.2315,0.70700729 106,279.1789,218.7335,26.3801,60.8760,0.46306890 106,117.0093,242.6876,58.8257,164.8104,0.33044112 106,221.1184,223.5417,24.5500,57.8168,0.32485184 106,180.0898,234.1790,27.0718,61.0667,0.20569298 106,161.7537,263.1207,45.3292,117.6666,0.13823000 107,16.3245,228.4917,29.5343,58.5897,0.28529653 108,12.7321,213.7287,33.5597,69.1804,0.26753610 117,23.4768,240.1807,56.6039,103.8797,0.10244852 124,567.3138,205.6629,51.2516,98.0191,0.27901435 125,71.4929,196.8396,35.0543,69.1907,0.28702062 140,20.0279,237.2416,45.0493,81.9703,0.33498994 142,312.4903,184.8705,21.7892,59.0309,0.19487353 144,557.6514,112.2939,36.1728,103.4214,0.17920649 146,34.5066,166.3933,34.7970,69.8692,0.26191306 146,29.8545,186.3487,43.8163,96.5672,0.10121337 152,485.8606,233.5082,24.9694,38.9115,0.11374813 153,416.1010,245.6261,23.4950,43.8117,0.71680152 153,405.3426,246.8589,24.7090,41.9941,0.13085029 154,309.8072,255.6417,26.8305,56.2011,0.97198987 154,320.0591,258.6631,25.6725,45.8705,0.10867235 155,167.5451,252.2703,34.9316,66.4777,0.98873931 155,183.4095,253.0690,28.1287,59.5838,0.31794181 178,408.4987,167.9861,19.9668,48.9479,0.11860008 186,594.2313,283.0735,32.0997,91.6656,0.32727993 199,205.0954,59.3221,70.0992,220.7516,0.10281242 205,251.6285,206.6008,23.8800,42.6661,0.28533709 206,397.2324,195.6533,26.0327,51.4926,0.35495311 206,473.4164,199.4302,21.0095,48.1548,0.32224068 208,538.7117,192.6230,27.6653,57.0305,0.37371194 209,516.7655,206.4927,23.2307,59.9575,0.91293734 209,474.6419,205.2240,58.3481,81.3858,0.10830519 210,535.7555,230.4662,27.2551,61.6057,0.62687534 210,599.9737,308.3095,31.9283,82.2277,0.14155333 210,442.6387,146.1977,44.5365,140.2034,0.12014154 212,482.9480,195.0014,47.6042,113.9389,0.19769326 212,475.2896,125.0344,47.2555,127.4615,0.10409430 219,470.5766,227.3460,22.9844,49.8096,0.83589816 219,455.2148,230.7488,20.5142,44.6606,0.29136640 220,543.1877,226.0764,24.6130,58.4638,0.53428364 220,560.1988,285.6709,26.1444,57.4171,0.12211505 220,467.7958,223.9731,22.6779,58.8592,0.10853516 226,418.9368,179.4099,27.0382,79.9144,0.61791027 226,379.0292,186.0609,30.9615,72.1369,0.23190211 227,518.0712,152.3182,41.5242,117.3328,0.13750365 227,524.7701,205.7943,42.6849,122.0126,0.10542601 229,70.7452,212.6197,33.2320,64.5460,0.36536604 229,55.3751,207.5417,41.1083,86.3962,0.11156943 229,84.5140,208.5872,28.2771,56.3581,0.11033019 229,405.7853,206.9655,35.8373,43.5478,0.10057545 230,57.8789,242.7321,33.6431,70.9264,0.69872522 230,377.0919,247.1187,25.1353,40.2515,0.23479623 230,41.4038,228.5560,40.9091,90.3737,0.18653083 231,414.9146,250.9834,21.9441,52.5921,0.84991550 232,474.2057,242.8612,32.9943,81.2029,0.99937344 238,392.6415,269.8819,25.2067,43.5066,0.10795818 241,103.3757,222.8591,39.6341,77.2482,0.44640565 242,599.4814,268.1965,25.2417,60.3521,0.12400566 242,96.0238,193.9737,31.9896,53.2070,0.10733464 243,462.3055,197.2940,43.4289,114.5370,0.22938132 244,413.6483,225.8812,61.7245,145.8856,0.21669564 248,488.2593,188.2229,84.1074,212.9748,0.22609161 251,605.4587,231.7468,27.0200,52.0868,0.59549934 252,393.8216,186.0781,21.8355,40.1002,0.22099027 253,356.4659,190.2565,21.0518,31.5737,0.10183179 254,567.7780,214.8390,22.2232,44.2245,0.41432512 254,298.0346,187.6781,19.3478,41.1768,0.10943782 260,401.6189,218.7064,20.4890,41.2900,0.13658932 261,422.9001,227.5139,22.4736,44.8898,0.27498633 261,410.4714,223.6767,23.5098,44.8170,0.10218850 262,460.6709,224.1772,27.2326,63.1938,0.13828629 263,493.9806,230.1649,32.3479,69.7255,0.99296153 263,525.4094,228.5242,28.8256,72.1951,0.93346608 263,507.4969,231.4605,30.3013,69.6310,0.73754728 263,43.9161,213.6917,25.6397,46.0306,0.37288010 263,25.1153,208.7687,48.0265,58.9182,0.14399886 264,27.0836,200.4626,40.0146,44.3327,0.12202959 267,387.5288,216.8727,20.6374,45.4927,0.11456871 268,432.2200,209.8879,20.9955,45.4904,0.27410612 269,420.4973,205.7422,24.2152,58.9580,0.52056420 270,495.2864,218.5780,26.9756,63.1619,0.82603037 271,495.1525,210.5457,39.5042,94.1759,0.98338687 271,556.6213,197.8019,36.7127,106.1368,0.95841271 271,582.8754,203.8978,41.3522,115.9310,0.19609946 271,367.1780,193.4535,23.6288,50.4145,0.12094478 272,576.4363,227.2941,47.0041,132.1217,0.99717486 272,371.7643,196.7871,32.2727,76.4411,0.77430522 272,384.8440,213.3489,24.1910,55.5252,0.19436994 273,401.7305,178.1434,34.7995,91.2695,0.94338977 273,131.5047,210.6347,22.5777,48.9237,0.14617522 274,451.6685,202.6631,41.9049,101.8817,0.41977727 274,376.3145,186.8670,29.7327,46.4344,0.10792155 274,120.7841,204.9606,21.1369,59.2083,0.10212410 275,109.1773,201.3388,25.4947,58.2769,0.99877095 275,497.9565,204.5703,33.8481,89.1133,0.99451303 275,470.2694,193.5839,41.9344,117.3322,0.15172885 276,76.9282,203.2933,35.1124,69.6830,0.94714731 276,529.8644,177.0176,21.8168,34.8779,0.28774488 277,559.3430,185.5627,22.6250,44.8645,0.69941115 278,592.4370,191.4856,26.0126,47.5941,0.83736485 280,263.4229,205.8264,24.2616,55.3225,0.26678365 280,507.5924,173.2302,35.1505,80.0688,0.19991463 283,216.6623,207.5658,18.6510,40.1230,0.10859758 284,329.0693,208.5890,21.2936,44.8646,0.73672652 284,504.1765,202.7563,22.0650,48.6883,0.13619281 285,393.1083,213.9628,24.4155,47.5497,0.47634748 286,452.0272,222.0719,25.7144,54.2823,0.85683906 286,508.6547,215.8720,23.4808,52.4305,0.47402644 287,546.5008,213.8076,34.4730,75.8145,0.99339545 287,586.0730,207.3755,32.4226,74.2278,0.50786895 287,449.3272,207.1050,21.6144,44.1534,0.14372441 289,526.0000,205.0784,24.2770,55.9532,0.98895055 290,588.1448,205.5816,32.3522,70.6411,0.98064148 294,554.8604,193.6540,25.4197,54.2527,0.63652635 294,491.3086,194.2708,23.2211,50.0386,0.41248354 294,473.4996,194.5288,21.1666,47.6195,0.14687662 295,497.3500,207.1738,20.5551,47.0056,0.39044520 295,79.8662,205.5634,43.8395,60.5616,0.20310572 296,369.2492,194.4920,34.4016,82.0031,0.65869981 296,546.8118,206.4802,20.3039,49.8608,0.36359176 296,26.8824,220.4389,63.0940,59.1513,0.18280829 296,534.3867,141.2387,32.4113,67.3050,0.10020649 297,586.4868,247.5509,26.4371,58.4445,0.99395812 297,385.7887,236.4207,38.6105,101.7675,0.35092667 298,407.2926,195.7483,35.2330,114.4453,0.42983001 298,223.1704,192.2296,30.8138,88.6205,0.22978440 298,504.6601,187.4999,17.1362,40.1422,0.18884411 298,40.1750,201.2982,23.6653,39.6133,0.14826797 299,507.3516,198.2408,20.5930,44.1386,0.48987487 300,207.3384,241.5393,26.4795,59.9160,0.11977407 301,527.0647,229.4319,19.9886,44.6410,0.56129295 301,195.0897,273.2887,28.7973,89.6265,0.14930360 301,470.1469,304.1235,45.1677,99.8630,0.11709665 302,528.6187,187.3718,20.5090,42.0467,0.80305624 303,545.7405,229.7961,18.6459,37.9845,0.12982452 304,556.5721,186.8334,21.0610,43.2331,0.56955010 304,453.4865,185.7106,20.9200,44.2808,0.35269791 304,440.2102,189.9507,20.9922,40.4867,0.10827973 305,556.6324,201.9707,20.4290,50.9215,0.74174356 305,457.0621,209.9692,20.7845,44.1530,0.31540215 306,466.9527,218.3385,19.6486,41.3052,0.62298882 306,484.7916,215.4120,19.1905,44.0487,0.36324963 306,549.3851,217.5452,18.4392,41.8233,0.22543000 307,478.5677,216.1682,19.8020,43.6114,0.92069781 307,540.3785,208.9987,21.3309,47.0485,0.66558802 307,490.2520,212.6576,20.0551,45.9821,0.23452482 308,506.7913,232.6971,23.5299,50.0988,0.97004867 308,531.2246,227.2524,19.3904,54.2917,0.82603133 308,553.0662,218.6774,21.2620,58.4742,0.60710776 308,523.0893,229.2488,18.6905,51.1212,0.26692766 309,586.0493,227.2331,23.7320,60.8850,0.95959032 309,605.8916,220.6220,26.7260,68.2308,0.80625057 309,376.2431,196.5807,31.3092,74.9575,0.10212398 310,415.7836,197.9703,25.8897,74.6567,0.22118472 310,555.1420,216.8047,23.6807,49.5962,0.15871453 311,138.5062,165.9844,31.2522,77.4808,0.11577111 312,426.1455,215.4550,19.7632,46.8996,0.16849169 313,453.1716,208.3151,21.2202,47.2213,0.81231856 313,558.8361,194.8333,37.8824,119.7179,0.14709641 314,480.1609,219.1881,23.6905,51.0946,0.99923158 315,525.6198,209.8001,31.2544,67.1535,0.99961036 316,399.6279,210.4419,17.9696,38.9823,0.12762506 317,431.6226,212.3362,20.8878,41.7261,0.69183075 317,288.9115,199.2000,19.7974,36.8229,0.15342690 317,420.6035,208.8582,20.7715,46.4787,0.13441920 317,75.9316,183.8282,30.6946,70.3408,0.11316232 318,455.8308,205.3389,23.7955,45.9589,0.75639856 318,439.4210,201.8839,22.7212,47.5786,0.14789051 318,432.3453,196.7255,60.1100,60.4211,0.10284818 319,473.5032,213.0306,23.0802,58.6786,0.18117341 319,493.6570,210.1577,22.6561,54.9188,0.12265705 319,41.8879,209.1339,18.3040,46.5893,0.10514553 320,519.3568,211.3539,28.1492,65.5038,0.99960244 320,541.5618,210.6114,33.0598,77.0371,0.95909399 320,119.8775,198.8263,34.7940,41.2918,0.18948984 321,578.9878,187.5253,30.7410,77.8281,0.99847496 321,604.4329,186.6883,28.3160,87.7343,0.98941928 321,616.0617,183.5875,33.4309,86.0912,0.11840264 322,471.8522,213.7234,20.8034,38.0595,0.15576543 322,419.7206,211.9416,17.0512,33.8053,0.11046690 323,483.5828,211.4951,23.1310,45.1527,0.90996635 323,81.8507,201.8526,36.5856,49.5281,0.50402290 323,434.0469,210.9934,18.4850,35.5287,0.29298550 323,440.8337,207.8306,19.5566,38.6628,0.10180916 324,512.2816,215.7953,26.3895,49.9758,0.99417204 324,462.6365,209.2444,23.0926,44.8345,0.85250914 324,419.9494,211.9436,22.3106,48.0603,0.79387844 324,589.7093,199.3729,29.0126,57.6021,0.17469916 325,571.1287,213.1704,25.8251,61.4350,0.99893177 325,503.3692,214.6667,21.3671,43.9345,0.84917545 325,512.1069,212.3092,19.9568,47.4172,0.59273875 325,450.8001,216.1391,18.4614,40.6601,0.12078010 326,546.5859,211.7328,21.9230,53.2642,0.95802474 326,484.1127,217.1516,23.0128,43.0004,0.40972090 326,0.2865,202.9780,72.3721,62.4765,0.12952137 326,558.7952,237.0953,27.0920,65.7086,0.11823562 327,518.4337,215.2552,22.3483,47.9197,0.99667263 327,608.2069,216.5388,22.0135,53.0419,0.97752714 327,592.3102,218.0866,19.6185,54.4138,0.64644629 327,54.2138,164.4486,33.7666,68.7115,0.12160727 328,559.2508,208.1486,28.3980,73.2574,0.99873263 328,457.1002,202.4382,23.7259,61.7392,0.18464483 329,477.5208,210.5305,20.8166,40.4703,0.56293344 330,153.1855,201.6204,27.6846,52.5116,0.18653637 330,527.4736,209.9810,21.2995,46.2170,0.13382037 330,462.7958,207.9931,20.5905,46.7762,0.12934133 331,534.7261,208.7582,23.0223,55.4539,0.97531688 331,615.7188,210.0142,23.8092,64.7037,0.71028781 331,444.1154,204.4615,21.4577,51.0805,0.37305647 331,409.2776,209.1738,18.7614,41.3822,0.16579261 331,394.7198,210.9489,16.9311,42.4503,0.11976700 332,447.6682,201.0504,21.6927,59.5040,0.99516773 332,502.4054,209.6130,20.9942,48.8915,0.99463797 332,519.5356,209.9498,22.1043,47.5037,0.83966583 332,416.0629,170.7921,36.5075,93.5134,0.24931651 332,379.4370,211.6815,17.8841,33.7653,0.16084118 333,538.1025,202.7988,21.8716,46.4984,0.98561645 333,589.5169,198.6229,32.5709,79.4983,0.76689750 333,397.0758,210.3874,18.3738,42.2272,0.23496418 333,604.1402,206.1421,27.3180,64.1511,0.21025872 334,414.5201,229.2219,20.3193,46.8591,0.93602121 334,556.0177,230.8111,30.7289,86.7361,0.88763422 334,551.7699,137.5589,82.7915,209.2533,0.10549735 335,432.4973,223.6039,20.4855,40.2543,0.35545486 336,402.2118,206.3861,19.1215,43.7302,0.17145957 336,95.8476,197.8923,23.9761,50.2926,0.12497739 336,535.9216,112.9030,82.2625,185.6685,0.11928684 337,423.2399,207.1864,20.9105,49.8318,0.46959347 338,515.6567,220.2743,29.6506,56.2493,0.99885488 338,127.3929,199.5649,23.3787,43.4817,0.14447962 339,494.9019,204.4148,23.5587,58.2442,0.98343468 339,473.5755,208.6059,22.3959,51.3382,0.83520436 339,431.2912,214.7905,20.4382,41.0422,0.31823868 339,415.9569,217.7571,25.3606,42.8877,0.29635414 339,467.3233,201.8857,19.7195,55.3394,0.26088428 339,404.4859,212.9770,23.2185,49.8938,0.21627831 339,599.7762,203.4866,37.7744,131.1988,0.19577777 340,467.4366,213.8170,23.8196,53.4625,0.99935514 340,529.6022,205.0318,27.8786,63.8686,0.95019811 340,436.3492,213.0030,21.4739,53.3832,0.58645129 340,572.4147,202.2077,28.3094,82.7669,0.50511020 340,543.9542,194.0021,39.4250,102.4750,0.37611419 340,113.6262,190.2745,23.2968,47.5057,0.12545030 340,448.7534,213.9954,23.0912,52.4797,0.10799897 341,525.9493,215.1110,30.6041,77.3222,0.99852240 341,479.7863,222.1875,28.3630,68.6542,0.99550235 341,495.3445,223.3800,26.3696,73.1058,0.78692544 341,511.8964,219.8218,28.3793,75.2148,0.32930404 342,594.6873,232.7850,39.1626,117.2300,0.79419672 343,313.4357,146.8889,38.7675,92.3233,0.14568552 344,612.9558,223.6910,23.6245,71.9390,0.60694152 344,126.2821,206.9696,26.5204,48.9609,0.38277975 345,438.0813,203.2582,17.8505,38.3715,0.24111302 345,433.8342,206.5326,14.4907,33.4626,0.11696720 346,468.9232,202.5875,20.4763,48.6129,0.37213388 346,72.0007,206.5710,22.5890,40.8790,0.15163714 347,519.7836,202.8974,23.5140,52.9804,0.99731362 347,38.0107,205.8228,23.8400,42.6534,0.20704800 355,517.7985,214.2248,23.3603,56.2282,0.97069049 355,313.5531,213.2191,17.7711,32.7577,0.10567267 356,468.0424,120.7376,36.6664,109.5546,0.12832208 356,322.7024,208.8563,17.8000,34.6233,0.12074571 357,333.8303,203.4756,21.3950,40.6593,0.62735724 358,337.6323,204.4675,21.0992,43.6709,0.86087269 358,223.4832,201.3387,21.2006,43.0144,0.15437345 359,343.9247,200.6787,20.7738,42.4672,0.41582924 359,415.7336,187.9190,20.3328,53.9557,0.27891922 360,351.4601,207.4568,22.0760,45.5248,0.82227850 360,432.6560,208.4978,20.3995,41.4199,0.21107207 360,339.2410,200.2550,22.9187,46.1214,0.10818677 361,358.8349,206.6141,23.7727,54.6739,0.93234456 361,452.7483,217.3528,20.8085,42.8954,0.30644000 361,487.4294,217.5559,20.2170,42.0812,0.20829229 361,85.4908,185.9551,22.6306,53.4007,0.17071307 361,346.0407,201.7551,24.8849,54.4537,0.13005838 362,567.4570,217.3018,22.9035,50.1075,0.98421866 362,508.5909,217.6733,24.1608,54.7522,0.98248130 362,490.4211,216.1265,23.8917,51.0982,0.93936658 362,367.6258,214.9091,25.1797,48.7774,0.86505759 362,434.4296,204.1838,27.8547,36.9618,0.13418180 363,582.4085,213.2078,32.2382,83.0174,0.99180448 363,561.4691,219.9319,29.3658,72.1907,0.83627379 363,463.8937,204.4937,21.7784,40.7715,0.73436058 363,371.5186,218.4545,23.8284,46.6494,0.59169674 363,574.1814,220.4116,27.3697,68.1917,0.14302194 363,480.9869,206.5886,19.0511,42.7116,0.12236838 364,542.1431,201.8535,25.6341,53.4505,0.99342966 364,374.4544,219.8116,23.6777,52.7664,0.98851168 364,519.0926,203.2478,21.4224,52.7836,0.93590319 364,528.9720,202.8817,21.2502,52.9648,0.26717973 364,11.7505,187.5878,32.2478,78.5514,0.14468457 365,387.3281,213.1845,26.7239,62.1785,0.98281401 366,417.8045,216.3344,39.4875,82.1631,0.75343347 366,408.1306,200.4274,24.8721,55.0489,0.12713932 367,442.7554,216.4623,48.6451,107.0898,0.99165511 368,469.0493,274.1944,43.3893,95.1050,0.82296777 368,219.0692,233.8354,18.0680,31.4594,0.10176762 369,493.2159,214.7543,53.2840,139.8519,0.77002800 369,427.1912,197.2251,22.4699,45.8496,0.59621352 369,469.2911,190.9171,41.5871,103.6476,0.12769745 369,472.8916,205.6916,26.5128,61.3010,0.11465397 370,542.2638,248.6012,50.4508,128.7540,0.98827457 370,498.9343,201.5660,20.8043,46.9882,0.61346793 370,530.4477,248.7704,44.3096,99.8291,0.60037708 370,446.7384,199.4579,21.6051,47.2302,0.59333348 371,534.9176,204.8336,21.7144,48.1103,0.99510151 371,471.7203,201.5425,22.8033,51.4750,0.96199369 371,569.9822,190.7735,23.6832,41.7590,0.39354673 372,590.5328,211.4592,26.5647,63.5961,0.99979758 372,503.5002,215.0751,26.6970,51.4414,0.99961048 373,552.6927,210.5630,30.8946,76.9030,0.57648408 373,278.8330,208.0647,21.9624,35.5201,0.10101347 375,425.6040,222.9355,18.9270,40.5016,0.39740378 375,413.4103,225.2307,21.1028,36.8233,0.31560934 375,117.2100,228.3834,21.0286,42.5454,0.10683618 376,446.2434,223.3785,21.4993,43.8865,0.87271953 376,431.0439,226.9326,19.6590,41.2209,0.66182739 377,456.9358,218.2182,23.1855,57.1795,0.99939382 377,478.9405,219.9822,22.4974,54.2163,0.99423456 378,504.9838,223.0080,29.2941,72.2576,0.99840248 378,531.1244,220.5120,28.2780,68.9560,0.99514854 379,564.6544,212.3102,32.4491,74.9055,0.99352288 379,607.8344,220.7917,29.4738,101.6492,0.83943135 379,617.6137,222.4375,34.0343,91.2386,0.12024619 380,405.9981,201.6973,24.2496,42.7375,0.17688142 381,436.8592,203.6245,23.4866,51.6608,0.94094205 382,480.7184,171.4820,26.3633,71.9666,0.99807304 382,71.5139,160.5670,23.4446,49.6930,0.63473940 382,85.6590,164.9538,20.7667,46.5582,0.10799615 383,539.2796,216.5814,31.9128,89.0917,0.99883580 383,460.5511,200.0214,20.5047,46.8154,0.60234547 383,37.0166,208.4924,25.5793,54.7787,0.46271893 383,47.8074,211.3752,24.2793,45.9618,0.17648897 384,493.8810,208.6839,22.2092,44.5993,0.97784030 384,377.8918,212.6694,19.9005,39.3589,0.10257059 385,549.5396,216.0965,23.6350,52.4697,0.99725616 385,393.7104,212.8606,19.6965,42.3324,0.30716184 386,417.9749,218.2758,21.6068,47.9254,0.12682548 386,484.6504,215.8490,20.3555,40.1383,0.11589120 387,191.3722,163.4549,21.2553,43.4656,0.10013487 388,467.3635,210.1530,22.1075,43.0254,0.51205271 388,248.0561,210.3199,21.5835,41.4737,0.12235353 388,497.7428,214.8627,69.8689,157.8956,0.12106108 389,576.6036,213.3504,52.2572,121.1349,0.98027062 389,513.4216,207.7705,20.7156,49.8892,0.50714302 389,246.8750,202.9032,21.2819,42.7928,0.15035392 389,336.4388,179.3896,19.9625,31.3853,0.14990041 390,605.7899,217.9587,24.1780,51.4041,0.98595619 390,572.2486,207.5949,33.1911,63.9948,0.76318157 390,584.5123,210.8869,37.2335,57.2827,0.41652352 390,218.8923,214.0765,22.1434,42.9961,0.27905580 390,238.9338,213.5609,24.2153,39.4421,0.16202873 390,247.7277,206.4775,25.6332,51.5758,0.16017541 391,446.1483,196.8412,27.2514,63.2169,0.38260520 391,206.4645,215.7421,21.5052,47.2213,0.36488798 391,236.8448,216.4697,23.1804,41.1936,0.28551197 391,226.1195,214.1168,23.8596,42.1775,0.11873333 392,449.3164,215.0496,23.3459,53.4692,0.99823564 392,482.0033,214.6015,17.9030,46.1845,0.31159306 392,407.6143,214.3544,22.3112,46.1691,0.20098215 392,299.5754,160.7049,20.0309,38.0679,0.11626332 392,464.9443,216.8645,20.2837,44.5296,0.10616456 393,431.1904,214.4839,25.1182,61.7571,0.99909008 393,89.2957,215.8936,29.8130,55.7013,0.53113645 393,374.4331,216.2216,22.8399,51.7603,0.51262587 393,121.3465,216.7859,27.9242,55.1436,0.50098950 393,416.6658,219.2583,23.3142,49.2814,0.31014585 393,251.2075,159.3477,20.8562,40.4637,0.24650940 394,400.3595,218.1269,29.2746,67.5957,0.99769706 394,344.5510,222.8184,22.4882,51.9255,0.92370486 394,2.5729,220.0684,33.2474,65.7777,0.48596328 394,46.3788,221.0162,30.5362,62.5209,0.47327295 394,191.8593,155.7953,23.3719,39.7113,0.33609620 394,351.9389,135.9357,35.4180,73.6440,0.31914303 394,330.0866,219.1282,21.4432,52.9947,0.24940048 395,338.4120,211.8290,34.1946,86.1726,0.99945617 395,229.1408,222.7019,28.2592,56.3516,0.90574288 395,256.0957,222.3646,23.5116,54.4251,0.55105144 395,101.6335,144.7082,23.3597,43.1946,0.20278949 396,267.1696,218.1719,34.6047,89.1398,0.99889940 396,157.5428,218.6772,28.2680,64.8402,0.77130514 396,58.7503,221.4934,36.3522,66.2175,0.68996656 396,72.1920,217.3378,36.4545,66.8228,0.28992495 396,194.4291,108.9537,35.1056,89.4726,0.10315417 397,157.2637,220.4179,43.6108,102.0943,0.99421442 397,24.1488,219.2105,32.2970,75.4551,0.10889290 398,12.3416,237.5343,40.5401,105.2142,0.68986315 404,366.8459,125.8339,23.5684,45.3094,0.18334176 405,235.0505,207.3608,21.8005,49.2140,0.70773518 405,430.2810,104.5383,26.0513,56.3818,0.45473647 405,471.8035,279.8120,24.9828,49.1845,0.31533217 405,248.5336,211.0751,19.9791,43.6890,0.12427999 406,280.7453,213.9851,23.3134,50.0343,0.89407510 406,301.1825,217.9809,24.9227,48.0463,0.22369790 407,328.1573,213.3454,26.8659,61.1784,0.99989295 407,350.5738,220.5878,22.3068,57.3956,0.91113776 408,356.5491,211.0395,33.8891,85.2524,0.99944580 408,385.3574,225.4858,26.9600,67.6634,0.99473327 408,372.6027,220.8220,28.4376,73.0817,0.21047312 409,391.4572,215.0074,44.1707,109.6400,0.99912721 409,435.3508,235.9449,33.8638,91.1702,0.99790078 409,558.7819,176.4516,40.1966,113.4579,0.35610756 410,453.5343,209.1317,68.7289,207.6681,0.99977702 410,539.1472,244.7795,53.3144,143.8646,0.99372482 410,561.8681,249.9697,44.2683,130.6722,0.15171494 411,222.3736,225.4629,23.5195,50.6974,0.13639830 419,312.0067,139.2341,31.1987,80.0151,0.12368655 421,51.7547,218.6204,41.7418,80.2488,0.99427873 421,20.4033,231.7783,31.4176,68.5991,0.97856992 421,34.8856,217.9728,39.8238,79.9117,0.64712238 421,266.9788,236.2616,16.6267,35.4922,0.10254329 422,344.5428,222.1987,36.0017,84.4180,0.99944210 422,323.6749,230.0375,29.7133,72.0220,0.98623222 422,334.1479,221.9338,30.6302,76.5931,0.14346275 423,350.7141,215.1941,33.6561,88.6567,0.99860597 423,326.3927,223.2389,29.3008,81.2205,0.99751806 424,173.9865,215.6113,49.6893,115.4111,0.99813557 424,128.3860,229.1734,41.3330,101.8424,0.98208386 424,140.2083,227.0102,55.7585,98.4344,0.36797744 424,107.6416,238.7475,48.1437,92.8173,0.17622800 424,505.0453,188.1004,41.9175,98.2670,0.12974033 425,7.1796,213.4649,41.1233,133.6193,0.17088193 426,175.8578,210.8356,23.7998,49.6858,0.16451907 427,124.1993,203.2569,27.6117,71.9667,0.13464817 429,437.1553,201.7730,19.2424,48.6428,0.39322588 429,395.3662,187.4352,20.9289,41.8220,0.23873928 429,363.8558,169.6665,21.5186,45.9049,0.12101457 430,466.2376,201.6158,22.0955,50.3328,0.97874296 430,443.5873,197.3806,21.3816,55.8663,0.75261629 430,144.6695,198.5227,24.9212,45.1250,0.24341261 430,457.2011,197.6997,23.6075,57.8938,0.23667061 430,395.2548,187.3636,20.2527,46.8592,0.22643042 430,436.5722,171.1175,33.3240,74.3383,0.10155430 431,428.8530,210.4348,28.7283,57.6893,0.96304363 431,367.9877,194.3264,23.6124,45.2991,0.85432923 431,110.6819,203.6382,26.3523,49.1651,0.43320799 431,441.3400,208.9594,26.6092,58.7577,0.11064860 431,13.7639,184.0218,44.5168,57.0518,0.10624539 431,265.3187,213.1598,18.4075,39.6530,0.10357548 432,391.1219,215.2680,30.1901,67.5065,0.98816532 432,97.7395,203.5598,24.8586,44.9135,0.12303464 433,358.3636,225.3740,31.9147,69.6744,0.99921238 433,284.7156,206.9740,19.6552,45.2420,0.84438276 434,326.8761,223.1076,37.1549,76.6606,0.99685550 434,253.0649,205.7337,23.5601,48.2208,0.97822690 434,152.0657,210.1390,24.4878,47.7979,0.94799942 435,286.5071,227.4446,38.5591,79.6117,0.99822450 435,194.5479,211.9578,21.3031,45.7296,0.81824636 435,219.2026,208.3668,20.6525,46.1861,0.69543147 435,207.8148,210.6370,19.7781,43.7393,0.11545110 436,242.3320,222.3179,38.9413,89.4389,0.99750876 436,189.5506,206.8515,22.9486,45.9990,0.97509551 436,232.8865,208.7592,23.3533,56.0590,0.33008575 436,354.9108,190.4091,45.8153,106.0478,0.25587806 437,188.3642,225.3369,41.8163,90.8151,0.99743497 437,272.9461,217.2901,25.8596,45.3491,0.98845661 437,156.5063,202.8094,21.5414,54.6384,0.83679831 438,123.2688,225.5254,35.9738,92.3159,0.95469666 438,309.9931,216.4300,20.7830,49.8586,0.45317554 438,125.5943,208.9016,25.7183,65.1429,0.43939587 438,139.6166,218.4627,41.5955,99.8563,0.39694613 439,65.3449,223.9875,37.9836,93.5834,0.99341059 439,88.5092,222.8680,43.1076,90.1504,0.99058610 439,338.9259,216.0029,24.4731,53.2642,0.98561388 440,48.3048,228.4666,50.4826,94.6071,0.96421540 440,365.6841,222.6332,29.7723,50.8963,0.95303661 440,13.1618,220.0323,50.1618,100.7623,0.82644486 440,43.1594,216.1445,35.7822,81.6758,0.23210922 441,176.3179,227.9647,56.9529,107.3570,0.99816340 441,386.1172,221.1537,27.1872,52.5697,0.50201404 442,346.9654,232.2392,66.4585,132.3002,0.98776853 442,401.9516,219.5187,24.8616,56.8395,0.62490320 442,290.2476,185.8921,22.7467,47.4059,0.10161345 443,449.6085,234.3262,50.4832,111.0043,0.99739599 443,384.0078,220.4955,28.5619,56.0380,0.88311249 444,368.8770,217.4661,28.7992,57.3425,0.99934578 444,538.6694,241.1081,45.5384,100.2110,0.94701767 444,176.8282,156.5501,25.7392,64.9543,0.31138429 445,438.6454,221.0474,30.0317,69.7092,0.63858402 445,234.3026,173.1248,35.6903,62.0866,0.11931422 445,202.4312,173.9452,23.2624,51.1806,0.10071483 446,531.5444,222.9732,32.5877,85.4796,0.52304924 446,234.2422,174.5809,21.3894,56.4616,0.33600271 447,7.9119,204.3941,60.0672,181.5963,0.81153315 447,250.6758,178.5857,21.6856,53.7033,0.20948574 448,34.4959,212.7159,73.0286,193.9847,0.99866903 448,12.3687,198.4492,66.2829,187.9551,0.42663544 448,268.4510,175.9360,21.3494,51.9071,0.15907276 449,86.7543,192.9965,78.2941,199.5693,0.98175788 449,285.3908,176.7313,22.9420,49.0233,0.43722332 449,124.3594,219.7888,43.1189,131.2933,0.17809567 449,326.0177,163.1628,20.9634,43.0785,0.11815169 450,169.9804,200.7877,80.8429,197.7045,0.99761391 450,213.4133,231.4860,43.5916,110.0215,0.43579710 450,353.7048,167.9440,24.2528,50.9795,0.32394111 450,313.9008,176.0121,20.9598,57.5019,0.11107607 450,216.2111,275.9515,43.8781,115.2307,0.10839969 451,320.1078,229.7732,73.5878,182.9575,0.99835455 451,421.3139,181.5269,22.5996,44.0751,0.27010995 452,538.3735,218.1553,68.5561,230.1956,0.88648367 452,494.0733,196.4293,20.8298,50.2322,0.16773227 452,530.3911,187.0291,21.0884,43.9201,0.14329496 452,523.1758,185.0280,19.2475,41.4706,0.10614388 453,541.4920,201.4989,22.6607,67.3674,0.13122474 455,593.7839,187.2130,34.7053,108.8505,0.36546382 455,237.9877,206.1103,23.2425,47.9604,0.12525359 456,481.5450,200.2988,21.5083,52.4623,0.41913319 456,416.8528,201.0080,20.9897,42.4080,0.16071865 457,106.1844,146.3702,32.5739,90.0515,0.21930251 457,384.3709,209.6104,21.9386,48.7633,0.17132041 457,393.0193,203.0594,21.1213,47.6810,0.12592378 457,548.0490,178.3657,26.3387,79.9395,0.12381524 458,249.5054,203.7228,33.9951,74.9272,0.84834146 459,60.4745,189.0848,19.8399,41.2993,0.13959073 459,201.9843,190.3998,21.2640,42.4725,0.11352661 461,358.1753,218.0108,25.7086,40.7163,0.17788215 461,370.1617,220.0361,20.0453,38.2583,0.13124804 462,410.8556,206.2544,20.6390,49.7857,0.18148184 462,57.3234,186.7110,45.6233,69.2514,0.13294017 462,370.2756,203.9495,20.1846,41.4011,0.11851697 462,322.5269,208.7505,23.1667,47.7991,0.10276210 462,362.0779,200.8973,19.6369,41.4644,0.10049481 463,426.9374,218.6345,19.3687,52.1374,0.62006480 463,298.5168,215.7938,21.4611,37.4896,0.13299358 463,378.1763,213.7941,18.7629,43.7760,0.10669689 464,467.2735,219.5092,29.9703,77.6865,0.46847335 464,284.4198,217.5856,20.0299,41.9098,0.29893416 464,47.6833,208.3992,31.5491,68.3963,0.22816351 465,267.3226,217.5782,24.9027,44.3828,0.96332300 466,246.5926,220.7333,24.0388,47.1229,0.98808008 466,362.2867,225.4044,19.9749,46.5394,0.36682665 466,430.4887,226.6004,22.0551,48.3100,0.23774575 467,321.2753,221.8202,24.1310,46.7548,0.99286437 467,199.3077,219.5428,22.5346,52.0074,0.76351023 467,434.4615,215.6828,19.1636,43.9070,0.14097774 467,469.3915,218.3034,22.8652,54.9046,0.12752241 467,19.2781,205.9208,37.2406,92.3372,0.12093079 467,132.5209,213.2653,22.4323,48.9363,0.10674101 467,121.3905,218.9924,23.0785,46.9990,0.10109043 468,272.8991,216.3583,27.3462,55.4570,0.99967450 468,125.5575,223.1650,25.6063,52.6085,0.96750474 468,106.4422,212.9887,23.9439,47.8347,0.70312726 468,441.9032,219.0849,21.5668,49.2371,0.60694462 468,115.3488,217.2709,26.1946,44.0848,0.21871206 468,454.4583,217.9485,22.7784,51.5650,0.14673309 468,78.2903,214.9995,24.4466,49.3887,0.13453886 469,207.8684,213.9087,35.2781,64.7831,0.99876970 469,462.3308,216.7437,22.7668,49.4602,0.98508680 469,67.5438,206.1881,28.9561,58.3135,0.98468816 469,35.6102,211.9882,26.8487,59.7107,0.66054463 469,55.8618,207.6462,30.2011,63.2298,0.46675423 469,406.8628,209.8248,19.8948,41.5067,0.42262143 469,425.9964,208.1836,19.0928,41.6764,0.37571222 469,508.2064,204.6672,44.4460,93.3817,0.35296500 469,14.0752,210.2909,35.1304,78.7633,0.29795808 469,47.3382,212.2838,24.5057,58.6167,0.21111174 469,377.0537,211.7041,20.4943,39.1041,0.16682580 470,485.9509,217.3080,23.7218,57.8362,0.99927831 470,84.9493,215.7866,45.6232,88.6363,0.99916142 470,414.7699,210.6958,21.3936,43.5595,0.89683354 470,377.4572,215.3670,20.8846,40.6430,0.73798418 470,439.7279,208.0997,21.2176,47.4733,0.71092886 470,7.5577,197.2533,32.4981,74.1933,0.18991090 470,422.9401,210.2573,22.5556,46.4983,0.18723983 470,402.2551,210.5964,18.5902,41.8346,0.14680403 471,532.2961,226.5009,27.0840,69.0372,0.99854028 471,464.5985,216.0783,23.2143,49.4355,0.99848819 471,430.7887,217.5970,23.9742,50.5975,0.97540855 471,384.3137,219.6395,21.4346,48.7818,0.92187387 471,519.3428,220.5070,26.7783,64.2068,0.26191640 471,409.2683,217.9567,23.3759,50.7330,0.15308338 472,514.1455,215.8587,26.1213,63.5296,0.99968338 472,457.7670,216.4720,26.6394,59.3298,0.99923193 472,598.3698,209.8288,29.3624,76.8428,0.99824107 472,395.7858,220.0071,23.7172,56.0105,0.98128670 472,430.9641,216.1486,24.0579,58.1000,0.95229733 472,416.1330,218.3968,23.4472,52.1772,0.27646580 473,427.9137,211.6511,34.8888,84.7333,0.99801183 473,469.7357,213.6935,31.5450,82.4013,0.99570256 473,497.7040,213.1562,29.2978,77.7077,0.99329448 473,607.6834,215.8871,25.4967,70.2756,0.77646255 473,485.2991,215.4847,30.1983,71.6346,0.17650145 474,509.9636,204.8797,46.1115,124.7921,0.99914312 474,566.9589,215.2997,36.8121,102.0450,0.98568684 474,577.6511,219.5053,43.3997,111.7157,0.97534895 474,593.6663,241.8734,35.6647,108.9944,0.24311037 476,423.4330,214.0955,21.5285,50.8329,0.55613720 479,461.2320,221.2615,30.7771,62.9668,0.10546492 482,463.0993,230.8546,26.1253,59.7295,0.12105589 483,561.7069,222.5702,47.4001,127.8548,0.40019122 483,423.5147,232.8716,30.7007,75.4794,0.11058972 484,488.5651,228.0556,40.0191,105.9487,0.40066701 485,359.7977,177.1358,23.4202,48.0777,0.15378469 486,145.8943,226.7839,21.6146,40.4761,0.10779478 489,205.4642,224.1054,20.5732,38.9175,0.10891873 490,236.4282,220.0905,21.8431,43.9303,0.45506954 491,253.8537,217.9370,22.0248,45.5753,0.90446770 492,254.8049,220.2609,24.0312,49.5338,0.98438585 493,288.0787,219.5908,24.5448,57.2624,0.99860251 494,336.4400,219.5444,26.5781,61.7251,0.99966806 495,397.9316,211.2405,33.3204,80.9773,0.99860477 495,331.3188,218.0872,21.5423,42.4582,0.16148457 496,475.1857,213.0859,29.8380,82.9194,0.99485821 496,406.2489,200.8342,41.7239,95.5167,0.10188724 497,548.3031,194.8102,60.9327,165.9380,0.56614989 497,399.6077,206.5915,34.0565,70.8216,0.10680780 502,571.7633,189.2408,29.0575,75.4645,0.46896183 502,270.6437,216.9505,23.9911,50.3582,0.21159384 502,561.5852,192.8582,25.9838,61.1437,0.11169749 503,400.7999,187.7668,29.1822,79.1033,0.85983533 504,162.9654,172.3165,35.9276,89.2243,0.47830209 505,512.7090,142.8263,28.3677,38.0424,0.11054759 506,499.5628,242.3923,18.9941,47.4914,0.22854750 507,382.6766,246.2096,23.5522,45.3607,0.17485252 509,110.5339,229.4310,47.9723,88.6985,0.22004560 509,130.9159,236.9899,33.2334,58.0511,0.19190201 510,402.3152,248.4314,47.6469,96.3611,0.19556840 511,343.1693,190.4962,26.7646,65.6642,0.42170304 512,427.1450,207.1910,23.0804,55.3882,0.47011054 512,393.6992,205.4415,41.1992,80.6912,0.30807680 513,162.3943,182.8154,46.2610,97.5910,0.77924693 513,142.3319,184.5704,44.5702,94.2802,0.65035993 514,431.7792,185.0400,42.2496,95.6084,0.96679258 514,373.0176,315.5105,24.4810,51.3349,0.20483410 515,450.3075,201.1280,46.7081,93.6534,0.98531830 516,444.8886,192.5421,48.5276,103.5643,0.89720410 517,42.5742,138.5149,80.2917,201.6091,0.99707842 517,482.7250,188.4397,46.4272,103.9080,0.98841590 517,427.8399,297.2676,23.8267,53.2727,0.14641474 518,18.5927,241.2770,118.5026,246.2885,0.99931991 518,186.6298,141.5523,66.7203,212.7303,0.99286187 518,565.5240,189.3702,46.8874,100.7815,0.99146664 519,353.4414,207.7123,92.8197,243.7667,0.99973029 519,327.0969,158.7213,56.2943,171.0367,0.94230592 519,331.8042,163.5113,78.0947,272.2838,0.39167392 520,445.4745,176.9694,54.0640,169.1921,0.99677849 521,472.0107,177.2843,51.3086,161.6399,0.98972571 522,490.9221,180.0804,52.4605,161.1891,0.98795903 525,549.0763,187.1720,55.9777,143.2593,0.21170601 536,369.5710,230.7289,25.8005,54.5111,0.12436306 537,383.4135,227.3094,24.7022,47.4899,0.12687279 538,430.0452,246.0750,29.2089,55.5000,0.14152600 544,463.0968,232.6364,21.6417,38.2640,0.18396415 545,342.7126,229.6679,21.8305,43.0478,0.29408240 545,358.7557,235.5125,23.2119,42.5968,0.16042474 546,226.9278,222.9702,23.9973,45.2204,0.83510780 547,175.1252,228.2836,24.3768,50.2387,0.99838179 548,115.7741,222.0858,31.2560,68.1542,0.99904066 549,30.7152,228.2483,41.4066,89.6560,0.99585426 549,142.5953,219.5021,27.6917,45.7221,0.12460928 550,200.6460,217.1786,21.6421,46.3571,0.24692337 550,135.0652,212.3946,24.4460,49.1982,0.19420256 550,104.3547,211.6847,24.4768,50.2462,0.19140114 551,77.1938,217.2814,26.7873,58.4884,0.56800234 551,87.9090,217.4286,27.9045,50.9861,0.25001815 554,142.5047,223.6920,25.8414,51.9287,0.11488711 555,202.1132,224.0647,23.4937,46.1367,0.16539846 556,248.1862,201.2280,31.2465,46.5527,0.12137732 556,457.0186,228.8379,22.3381,47.7864,0.10857706 559,15.6167,218.6563,58.3522,134.6426,0.99961889 564,431.4293,228.7257,21.7416,51.6929,0.11455125 566,404.8044,224.5988,22.0710,49.6280,0.60024858 566,596.9063,198.4920,28.6932,63.9765,0.21686648 566,587.6033,203.3446,44.0561,95.6519,0.12210569 567,440.7355,218.0937,19.6223,41.9144,0.54603314 568,463.4984,201.9995,45.4157,108.5081,0.12785396 569,516.2877,226.7754,27.3634,60.5109,0.99923921 570,572.8806,221.9153,30.4774,78.6753,0.99914247 573,511.9133,218.9375,49.6077,115.0685,0.11483170 575,254.4497,209.3588,22.9163,46.7846,0.45847008 576,258.1701,201.6162,24.2424,51.1183,0.65011334 576,587.8836,207.8251,24.8970,55.6754,0.37136963 577,263.4504,196.8203,25.3440,42.1592,0.76032662 577,384.2218,208.0148,22.6865,46.0901,0.15730675 578,267.1482,204.1042,24.1409,42.2099,0.85754049 578,422.7647,221.9427,25.5181,51.6775,0.48022753 578,409.2971,205.2773,39.9691,86.0666,0.11760499 579,282.3657,200.3034,22.2931,41.9963,0.84394956 580,299.7805,202.6604,23.5557,45.0855,0.97340620 581,319.1202,200.9122,24.7526,52.9762,0.99477684 582,349.4622,202.9899,26.6098,59.9480,0.99892110 583,389.8540,237.5357,25.5814,50.4734,0.79399520 583,400.2209,242.1182,26.8806,44.3315,0.13964576 584,523.3174,214.6511,24.7493,49.2738,0.98966312 584,440.0061,208.2841,24.1273,63.6478,0.86043000 585,509.8723,205.9575,33.3588,88.7997,0.97737831 585,596.0637,196.8991,30.4072,72.3257,0.92983782 585,493.2889,199.0156,28.2403,74.0884,0.23622611 586,596.8361,214.2158,36.9955,96.4966,0.78118867 586,329.7367,200.6666,19.4316,45.2906,0.14960669 587,369.0481,199.6008,22.4844,46.7024,0.26840413 587,433.0445,161.6453,34.3608,47.2380,0.10360704 588,545.0692,201.1938,24.6027,52.3806,0.83546323 588,548.7671,194.5720,36.3225,66.2681,0.34001148 588,509.8346,70.9908,21.2994,50.5645,0.26755756 588,562.8827,199.0960,30.6881,52.8294,0.19277732 589,229.5402,212.1566,28.3466,59.5278,0.99757385 589,457.4461,206.3591,22.7573,54.1167,0.39283040 589,441.1388,196.8580,22.1870,63.2050,0.30506885 589,471.8791,208.6267,25.6061,49.1125,0.20827620 589,443.9752,202.2035,62.2431,60.2257,0.20663433 589,217.0918,203.2026,30.3918,68.0870,0.12050654 590,29.4542,215.9280,33.5565,72.7230,0.38271832 590,248.4841,181.8889,34.7277,101.5691,0.13474281 590,404.1383,176.3528,27.5700,38.4655,0.11131433 590,-2.3034,197.8922,42.9956,101.1122,0.10736375 591,14.4880,196.1807,41.9227,91.3717,0.14174812 592,171.7149,202.0542,21.7668,46.0857,0.10535628 593,504.1196,213.7914,22.2526,52.0793,0.68680620 593,455.6510,221.2942,21.7384,42.1591,0.67889595 593,61.2336,216.3806,25.6299,50.9279,0.42728972 593,98.6963,213.5888,19.5140,41.1225,0.10013038 594,489.8578,218.5568,22.5100,50.1780,0.99382949 594,558.4381,216.6719,20.8198,51.9265,0.99000579 594,438.2016,210.9427,22.0210,39.7587,0.26245719 594,575.8435,221.7226,18.8425,51.3687,0.16424100 594,582.9185,224.4937,20.5647,46.9946,0.16001265 594,566.2144,219.7203,20.9579,51.7790,0.15727772 595,566.1730,212.9189,32.1693,70.4705,0.99859297 595,469.0699,210.2817,20.5192,41.6682,0.78333235 596,514.2620,207.6495,20.6002,42.2383,0.96092474 597,569.3242,205.2749,24.9440,62.3745,0.99948204 598,122.6233,193.4984,21.3128,41.3335,0.14986426 599,80.9221,194.6847,21.8740,39.8205,0.25658619 600,38.6068,207.4809,23.9801,49.8459,0.63662541 600,28.6428,194.3783,27.1617,57.1284,0.23646855 600,494.4471,-36.2329,41.0168,138.1234,0.13250756 604,79.8840,222.2228,20.4740,41.1881,0.19629237 605,27.6361,235.6356,24.6201,50.4543,0.60817677 605,83.3177,229.8644,19.3442,41.2664,0.18272564 605,14.0971,227.7162,29.3178,57.8358,0.12696019 606,20.9546,222.9452,26.1814,50.2949,0.34224251 608,435.4057,202.1791,20.6484,40.5735,0.18885635 608,451.5387,204.0866,18.1883,41.7404,0.14255130 608,479.8336,204.0962,24.6185,44.7054,0.11104859 608,470.2100,200.5257,22.7184,41.5381,0.10300866 609,543.3570,205.5341,24.2168,57.0607,0.99422026 609,487.5490,201.9069,21.9082,48.5167,0.81963754 609,471.5627,205.3297,21.6927,48.5968,0.33694690 610,518.7777,201.2969,25.0908,58.5188,0.99709338 610,543.4844,196.9139,23.3646,62.6703,0.98955953 610,445.1500,197.5436,20.5247,44.6023,0.37592110 610,10.6184,198.8759,24.4521,55.7776,0.18206799 610,18.9128,191.0026,30.1827,66.2512,0.13340072 610,64.8949,191.6895,21.8956,35.6321,0.12016416 611,600.1418,207.7840,25.3616,69.3048,0.99343222 611,428.7856,195.3127,23.0149,52.9423,0.84310949 611,480.9832,211.8769,23.7093,59.6418,0.31078866 611,22.8714,187.7394,21.2369,42.0331,0.27186787 612,528.2968,206.5496,21.7276,48.0410,0.99842894 612,452.3746,188.7017,25.5058,67.1247,0.73249948 612,146.1655,178.5021,23.7894,44.3574,0.16635293 613,574.9623,253.3249,26.0160,59.3775,0.99984771 613,478.0867,236.9105,23.9114,63.4485,0.99952757 614,503.8152,208.6208,25.6490,68.6926,0.99954325 614,427.9449,200.9777,21.1285,33.9484,0.22793572 615,557.9762,219.5020,31.8171,89.7243,0.99696994 615,460.6565,209.2584,20.5654,45.0139,0.70946181 615,33.7367,155.4203,38.5348,87.6064,0.27098313 615,52.3368,202.0827,23.6682,50.1044,0.17447221 615,400.5055,195.2926,21.4108,45.7682,0.13992056 616,526.0742,212.5171,23.4390,60.6510,0.99250257 616,424.5729,199.9580,21.2267,44.0868,0.81508678 617,454.4826,213.1854,20.8769,46.4410,0.91560960 618,601.9748,207.3127,27.1310,60.5809,0.26497960 619,576.0506,211.4473,23.5562,53.0635,0.95911586 619,584.0759,204.2989,24.0157,64.2867,0.80475742 619,106.5125,203.6213,21.5731,46.6686,0.77117890 619,8.3322,214.1557,24.4862,52.7099,0.17758183 620,38.0171,210.1019,25.7330,55.5251,0.92628419 620,47.4738,207.9944,26.1330,52.8631,0.17270853 621,290.4832,179.8533,25.5331,53.8250,0.56069350 622,505.4915,213.1324,21.1288,50.2013,0.32696074 623,583.4639,217.5391,24.8196,56.0631,0.67511445 625,47.1531,214.7965,23.6558,48.8439,0.50223672 625,56.3121,207.9639,20.8506,52.4437,0.19442943 625,51.0810,165.7602,45.2820,97.2048,0.14769782 625,435.1391,217.4834,17.1543,32.0510,0.11694675 626,463.9082,211.2865,20.4790,45.4116,0.67619777 627,523.0859,214.8687,23.4141,55.7062,0.99735892 627,96.3180,218.0413,23.9263,49.6336,0.46877071 627,36.8512,212.0310,22.2500,49.6073,0.32989189 627,270.5148,212.9010,24.6800,30.5860,0.20972583 628,434.5728,208.9942,23.9211,55.5764,0.34935582 628,271.1620,203.4186,19.8423,31.8258,0.24537453 628,311.2508,201.8634,22.6119,42.4468,0.12901725 629,283.3304,205.0568,20.8531,31.2966,0.17170396 629,152.2637,198.3649,20.1644,38.9752,0.12922250 630,139.7316,201.5963,19.8936,35.9913,0.21010450 630,474.5949,193.4701,23.2056,42.0224,0.10937849 631,471.5529,172.0365,21.9999,45.3120,0.22191091 631,547.7859,162.1682,21.6769,50.1472,0.11736593 632,557.8236,216.2118,23.2958,53.3533,0.75482458 632,565.3340,210.7139,23.9462,50.8419,0.34916258 632,96.9170,213.6234,21.0715,41.8893,0.25461143 632,477.0500,197.1971,24.8653,63.1677,0.10232350 633,51.2386,205.6361,26.5831,60.1953,0.56571865 633,497.0483,177.2212,47.5385,110.2439,0.20112994 633,473.2324,113.7887,22.8119,61.8763,0.14484009 636,599.7672,231.6000,25.0117,46.3905,0.24474379 636,474.9596,201.7078,21.5305,48.1847,0.11917572 638,407.7693,204.9944,18.5622,35.4670,0.13222525 639,430.3610,209.1491,19.8716,41.8473,0.71531814 639,484.4078,219.9467,18.7411,38.6682,0.13073955 640,473.6769,208.5389,22.1249,54.1044,0.99470848 640,433.4076,201.9133,26.4593,36.4747,0.26295301 641,549.7569,204.2692,26.1114,62.5351,0.99958837 642,559.3370,200.4366,23.8622,56.3747,0.91163832 642,295.2909,182.9268,24.0034,45.1807,0.16596039 645,159.9139,219.7497,20.7475,36.1251,0.16801202 646,108.5495,214.2607,25.8926,52.6379,0.77449799 646,54.9089,208.1541,22.7908,47.6839,0.30653793 646,64.1283,207.9901,22.6869,50.4007,0.19410363 646,40.9731,210.2511,23.1729,47.0345,0.12477011 647,61.3276,227.0561,29.9798,53.0372,0.83776462 647,47.7597,223.5289,25.9150,57.2802,0.63934809 647,36.7425,220.3793,26.8519,56.9250,0.58174974 649,427.3415,206.0974,21.1510,42.4706,0.12627538 650,508.5568,204.8487,25.6062,57.0833,0.99189538 653,509.6432,142.5961,29.4189,70.9305,0.10485975 659,390.8585,79.8470,26.1398,61.8190,0.19518714 660,441.6338,34.3327,32.4067,78.1311,0.33106357 667,347.4249,208.1767,17.5733,34.8693,0.17605469 667,363.4320,209.1174,16.5002,34.1613,0.15077679 668,403.9563,212.5371,20.4917,50.1503,0.99272299 668,426.7799,215.2750,19.2322,45.2392,0.91284251 669,532.0739,214.7704,33.3549,88.4189,0.99910659 669,573.5813,221.5008,33.7652,79.0842,0.99578571 669,561.8425,219.1153,27.2550,79.7277,0.14077118 674,570.0363,219.4661,36.1510,74.8611,0.16224638 674,546.3425,225.2676,32.4814,71.9979,0.13403033 676,565.3543,165.8293,45.3551,115.9681,0.13704555 678,407.3865,74.7734,46.7021,117.6250,0.26423910 681,479.9463,62.7514,27.2914,49.3946,0.14568068 682,442.4751,39.2949,34.3257,73.4967,0.13585383 683,394.3772,212.2545,22.2299,53.0041,0.99590600 684,527.0358,206.8457,44.0910,110.5271,0.99306667 685,436.7256,205.1949,17.7559,40.9530,0.26262408 686,538.7807,207.8226,28.8161,70.0608,0.99962592 686,570.0375,205.5264,22.6661,57.3976,0.99616307 686,557.9579,208.5786,27.9805,63.2850,0.10236613 689,599.1248,209.4587,20.8646,47.4714,0.36435893 689,587.0007,207.7733,18.8279,45.8654,0.16530770 690,436.4669,223.0519,31.1178,71.3858,0.10216246 693,591.8796,209.7426,21.1888,40.3678,0.14553861 695,552.6641,217.7995,21.3928,48.8472,0.38614088 695,609.0899,210.3277,20.7023,56.3919,0.17779219 695,477.6291,215.7277,16.7543,37.5361,0.16745380 695,534.5575,215.4642,67.6141,58.0172,0.11963233 696,560.5721,215.8479,20.9874,49.1651,0.91877723 696,548.2276,216.1473,20.5840,41.6151,0.12995678 700,450.1207,191.0337,19.1104,41.7774,0.10660228 708,471.9534,211.4708,20.4272,41.5648,0.11442870 708,504.1888,218.4736,19.2381,41.7526,0.11149453 709,609.4968,222.0741,23.6819,56.8133,0.96159703 709,571.3455,222.3972,22.6316,50.9800,0.83700407 709,517.1962,203.2767,26.6194,51.1932,0.75967669 709,576.1390,210.4404,53.3726,65.4424,0.11760879 709,503.5869,219.3726,86.0508,44.5327,0.10122203 710,597.6096,203.7686,27.9355,60.6088,0.97499704 710,462.7319,212.9137,19.3038,39.1982,0.11961830 711,542.6619,216.5240,20.3191,47.1150,0.75220263 711,204.5211,207.9395,26.1621,66.8046,0.28608227 711,589.4762,200.5116,19.9651,42.9278,0.16984496 713,533.6599,209.6768,20.4233,51.7020,0.98509860 715,351.2879,183.6101,22.7379,43.0117,0.36852857 716,379.0078,197.1082,23.0975,42.8267,0.53539205 716,369.7620,169.6629,29.6486,69.9917,0.12037495 717,416.9643,204.9844,18.1477,34.5881,0.14354160 718,404.9350,211.4250,20.0312,38.7053,0.22021373 719,386.6078,203.5840,20.9670,45.5022,0.59466189 720,404.4446,205.7125,21.9663,49.3431,0.72752893 721,449.5887,211.3073,31.5351,69.7814,0.99157107 721,380.3388,213.0459,20.4433,36.3785,0.11649081 724,398.9638,212.6294,21.5604,46.8338,0.69043744 724,385.2664,212.9398,21.4897,46.5925,0.42632395 725,486.6074,211.0544,32.5705,86.8065,0.99787861 725,461.2812,219.5461,27.1754,72.2594,0.97448325 727,385.8208,196.1244,20.4479,43.0192,0.18259931 728,543.4327,209.8527,43.1672,103.0943,0.90504038 728,383.0906,212.4697,17.4840,38.3383,0.12745808 729,403.1480,208.4270,19.9632,48.5417,0.73993134 730,443.1481,215.6268,23.6165,58.8151,0.99785972 730,406.8617,219.1854,22.2633,44.0390,0.57024837 730,389.6555,214.0014,19.5060,45.6028,0.39657587 730,371.8514,215.9709,20.4137,45.6005,0.13499168 731,525.9368,214.6138,34.0009,89.9264,0.99916279 731,463.6476,219.7519,25.4552,61.2077,0.99832582 731,438.2869,212.6936,27.2235,62.3039,0.99544871 731,417.5127,219.2230,20.9222,49.9359,0.47130841 731,410.0663,218.6073,20.2684,46.5410,0.24863032 731,152.4828,214.1693,29.1895,79.9294,0.12859806 731,409.4717,211.2839,58.0746,69.0790,0.12389162 732,567.9900,210.1170,38.3427,109.2240,0.99837375 732,528.0497,205.3628,35.0380,102.2664,0.99674678 732,485.2554,215.4992,34.0990,81.8952,0.99270535 732,510.5474,218.0526,24.5776,83.1436,0.76415145 732,519.5922,216.7159,27.5621,87.3938,0.24167374 735,461.0785,112.1037,42.1200,102.7206,0.19345552 742,396.3010,174.3007,25.7103,56.0674,0.12768365 743,39.2233,200.1271,23.9785,51.6171,0.15210614 744,487.6548,-12.3831,84.9313,266.4958,0.11183336 745,404.9962,195.3954,20.0633,46.2884,0.16243704 746,386.6027,197.4075,21.0834,46.4442,0.28051463 747,384.6070,198.2373,18.1658,44.8098,0.19108137 747,424.8016,206.0128,22.4279,31.7070,0.14404294 748,457.7367,205.3044,21.3184,42.1226,0.79813272 748,395.2399,199.2227,22.9013,39.3761,0.23949234 748,432.8952,201.7480,24.0004,33.7296,0.13181528 749,507.1795,207.7555,23.0355,52.7570,0.97708130 749,544.5639,203.5401,21.0898,49.2064,0.62103087 749,450.2694,202.1381,22.6029,34.5232,0.21986994 749,424.3346,210.8774,24.7251,28.3992,0.21629822 749,435.3614,207.0075,26.7289,29.0926,0.17766665 749,528.5851,198.2876,20.1676,51.1582,0.10972442 750,456.2225,216.2866,24.0127,59.4795,0.99952269 750,613.1456,222.4136,27.5003,74.6577,0.91555607 750,603.4613,220.2047,25.1920,76.4041,0.40247223 750,593.5590,222.4146,22.7085,55.6380,0.37658560 750,474.7382,215.2149,20.1904,45.8083,0.17823029 751,538.2309,205.5462,33.4188,93.8047,0.99596691 751,513.5855,204.6614,20.8530,44.1968,0.73390114 751,487.2799,204.7657,25.3643,45.6864,0.35177791 751,519.3050,209.7472,21.6853,50.1715,0.17615439 752,540.2021,191.4868,26.5157,52.3233,0.99853522 752,570.0419,193.6021,21.3580,52.6107,0.99821615 752,493.8149,206.8764,40.8607,125.2835,0.39047927 752,552.2247,197.0502,23.8713,44.6708,0.10339302 753,603.1989,237.7467,31.0032,104.8110,0.32903463 753,587.1046,222.8907,38.0956,123.2584,0.11383969 755,441.0847,202.9541,20.6711,47.4728,0.78152561 756,516.9521,197.3246,20.3233,56.7971,0.88770652 756,477.8523,198.4994,21.6395,44.9157,0.73804522 756,507.9512,197.8991,19.6922,61.2972,0.22283408 756,484.3817,188.8416,43.9881,101.5760,0.18695007 757,593.7613,204.0879,20.4919,45.7987,0.97080290 757,552.5621,209.0492,22.2218,46.4653,0.88999641 757,576.4086,205.4022,19.9837,47.8951,0.79440320 757,471.5599,207.7075,22.8004,46.9902,0.21158898 767,427.3259,212.1845,19.5324,36.3543,0.18851879 768,449.7271,204.0880,18.6675,39.8567,0.39376855 769,486.8930,207.7843,19.7530,48.4823,0.87002850 769,452.5356,208.3165,21.3324,40.5853,0.11252216 770,519.0931,203.3228,22.7988,56.2045,0.99667835 770,462.8322,209.5438,19.3639,37.6497,0.10402097 771,562.3685,206.2928,25.1461,67.9095,0.99856770 771,470.5008,210.4603,20.0318,39.5489,0.21103661 772,474.1768,203.8540,20.5430,41.9936,0.28859413 774,472.1365,209.6387,17.4407,40.4139,0.13078883 775,464.0807,207.3019,17.9440,44.5036,0.11513108 776,535.0347,189.0449,68.6174,42.4163,0.14270735 777,501.1519,301.2377,33.9023,91.1008,0.10285041 783,532.9289,181.9429,67.6991,52.1803,0.10883882 785,420.9732,222.5358,31.1666,69.1636,0.39688250 785,537.1444,187.2726,65.2489,43.9738,0.10923465 789,534.2329,189.2944,75.0804,42.7848,0.11269386 796,536.3184,187.0164,69.9284,46.2720,0.10201512 798,315.4539,213.5094,15.8054,34.4091,0.11151958 800,315.6788,213.2747,16.1988,35.3468,0.11382957 803,315.1746,214.2755,18.1313,37.1468,0.11742562 806,536.3954,187.8838,69.7250,44.2897,0.11024868 809,540.0726,184.0004,66.3154,46.9806,0.11578679 811,536.2780,183.7455,70.9464,45.8460,0.11056565 827,203.8947,299.5462,45.8191,125.8049,0.13989463 828,550.6081,212.9149,20.9641,52.1664,0.75972629 828,212.1481,286.2740,47.0277,118.2275,0.11748751 829,48.6329,251.7948,24.4405,47.9389,0.33979517 829,488.5826,215.9397,22.6757,37.8656,0.29786414 830,472.9882,218.8524,20.3186,38.6955,0.19088496 831,472.8369,213.3445,14.9183,37.4907,0.21845281 833,74.9509,225.0198,35.0711,73.1119,0.20554349 833,446.4735,189.5179,21.7641,53.3496,0.15641843 834,492.3969,205.9765,22.6550,41.0657,0.35044336 835,513.9038,196.3817,21.5755,55.9651,0.28628337 835,219.2881,216.4779,19.9274,51.0551,0.19765145 836,497.0901,196.0845,20.1021,54.0237,0.50864959 837,545.6119,198.3071,19.5589,43.8837,0.63149357 837,562.1273,201.9441,19.4515,44.7886,0.38384444 838,493.5629,190.8864,45.7089,89.2160,0.17753823 841,550.5177,224.7930,22.2015,49.0303,0.70045686 849,481.5419,215.5801,20.6133,47.6215,0.95722449 850,572.7391,217.8965,20.5044,41.3909,0.45728433 852,436.8940,219.1816,22.3843,45.5446,0.97162014 852,566.5430,210.5859,21.7683,49.8388,0.97067738 852,590.6340,210.8136,26.6463,54.5994,0.52676374 852,580.4410,211.9891,26.2651,50.1229,0.12036699 853,461.3515,227.7409,28.3671,58.2246,0.96047747 854,539.9553,229.6953,33.4619,79.9671,0.36268443 854,315.9680,204.1068,22.3669,54.3005,0.12229460 862,496.7424,219.7225,20.5517,45.5053,0.91497082 862,417.2763,217.5987,18.5152,46.7947,0.43005186 862,351.4600,197.7304,21.8210,44.7336,0.10737628 863,466.8061,206.1458,24.8840,67.5774,0.99604297 863,589.5554,212.0080,26.1298,63.4885,0.99241298 863,599.4342,209.7978,29.7261,67.6032,0.14211494 864,584.0306,211.4328,40.0574,116.4583,0.99130440 865,366.9667,220.1574,36.5739,122.5597,0.10177834 867,511.4598,289.4465,93.6699,271.9132,0.14880876 868,488.7934,224.5392,20.1691,53.2319,0.20009127 868,461.9741,222.1283,18.2088,43.5661,0.18620236 868,574.1923,261.8513,25.3758,55.7085,0.14966157 869,531.3214,222.2047,18.6951,57.4977,0.91226977 869,522.7400,223.7507,18.1980,53.8866,0.77137613 869,395.0247,227.2700,18.2002,38.7209,0.23202273 869,427.4490,210.3626,19.5060,56.2414,0.23042700 869,583.8137,234.7485,36.2634,77.8728,0.14211635 869,510.1176,219.6827,17.9059,50.4210,0.12206265 870,435.5302,230.4713,21.0608,52.1904,0.99700278 870,586.4141,224.0104,21.7554,55.0336,0.94879204 870,476.4163,206.9181,33.9099,100.5731,0.53653252 870,409.0315,238.6268,23.3213,45.0351,0.47956398 870,474.4999,204.3075,22.6521,68.0278,0.16084234 870,515.3685,141.8609,38.2645,128.6955,0.10549870 871,537.3913,229.1355,33.4975,96.8834,0.99591684 871,486.0116,253.4159,25.4538,59.8133,0.95772767 871,537.5916,213.3304,22.5553,57.8608,0.11062425 872,515.0098,207.8146,19.1602,44.3844,0.38645715 875,448.5423,274.6057,38.7552,118.8234,0.18919232 877,445.8907,184.1293,23.0997,61.6852,0.25307140 881,369.1018,222.0603,20.4365,36.6296,0.11612730 882,513.2860,144.1777,21.5170,59.1237,0.16649953 882,387.0002,200.6697,25.6017,56.1571,0.13858528 883,431.2816,203.2430,34.7293,37.0873,0.51178980 883,449.3992,202.4109,22.7043,38.0381,0.29836658 884,505.4212,210.0651,20.6316,49.5824,0.98512834 884,541.1306,215.0395,20.0336,44.4778,0.96657026 884,523.0432,214.0844,20.5804,46.2922,0.94522655 890,537.0019,204.9975,21.3662,46.2762,0.83815467 891,458.8509,207.5030,24.2579,39.0289,0.15049237 891,580.5361,183.3997,41.9121,99.0643,0.11864984 892,529.4194,211.0677,20.9718,41.1490,0.50349671 894,448.9410,213.0371,21.0331,49.5200,0.99734282 895,593.8385,214.0599,34.8254,99.9625,0.98340297 895,408.8671,211.3670,21.0336,36.1242,0.17919141 896,458.1058,219.3925,19.6390,50.0586,0.98638195 896,434.0284,223.8552,20.0346,47.6428,0.55216700 896,451.0547,138.8689,33.8688,94.5851,0.10273236 897,493.4154,210.6297,27.8448,75.3979,0.79912221 897,528.8715,217.6018,30.8915,70.1128,0.69314420 897,579.7500,259.0263,16.8392,38.0880,0.15969910 898,530.3403,192.9056,29.4184,64.6971,0.91279483 898,497.0888,172.6448,37.6501,98.5993,0.12641910 899,605.1126,197.3436,28.0065,82.1901,0.94119644 899,446.4926,211.2455,19.7691,57.2599,0.10861638 902,532.0459,209.8383,46.7435,109.6762,0.15879363 904,448.5729,202.9608,28.3076,77.9348,0.14576635 906,438.4489,239.5442,21.0728,40.9323,0.48455095 909,446.9117,203.3683,20.9743,46.1005,0.83925623 910,536.4464,208.0134,23.1905,52.1740,0.98659325 910,496.1055,207.7621,19.2371,37.3729,0.10136538 911,566.0921,200.0830,20.8072,50.3333,0.86865866 911,397.8240,89.3238,40.0191,106.9193,0.16024889 913,360.9682,208.1970,19.4223,40.0458,0.21722126 913,490.8674,188.4070,54.8371,45.6555,0.15275584 915,386.8110,216.3193,24.3224,54.3870,0.24298307 919,279.0058,201.9843,21.8377,46.1591,0.92451793 919,201.6735,203.7013,18.5787,37.6198,0.33266708 919,444.2408,196.1777,42.4735,92.7916,0.20266686 919,417.7096,195.0788,24.1821,66.3681,0.14011551 919,234.5541,204.4535,29.5868,37.6258,0.13636720 920,190.4094,199.9350,22.9089,52.5955,0.97168267 920,95.4009,202.2122,24.3612,41.9387,0.78812206 920,162.3166,198.4839,23.5786,52.1844,0.56049418 920,109.4320,202.0653,21.5374,42.4428,0.11002795 921,167.8650,168.2499,23.5892,48.6399,0.22657973 921,264.3830,227.6889,25.2218,55.7833,0.12712526 923,20.6619,218.7263,41.0288,70.4969,0.22231831 923,226.4035,192.2971,20.2355,41.9775,0.11363807 925,203.2877,213.3299,20.2225,51.8731,0.11088876 928,505.9182,218.1354,18.6436,43.2662,0.89775062 928,521.0418,216.1568,17.9397,46.0556,0.33707714 929,443.8639,217.0513,18.6236,48.5127,0.97048837 929,434.3741,220.6249,18.8183,46.3427,0.82757998 930,451.2642,212.1488,24.2925,58.9381,0.49131700 932,582.5844,196.7828,44.5326,117.8077,0.99718702 932,447.3730,209.6120,21.0684,42.2066,0.93146747 932,604.5439,201.0469,35.1473,117.8460,0.11036188 933,494.2134,199.9881,24.0271,52.9310,0.99930745 934,579.8136,202.0646,31.1517,69.4378,0.99888420 934,588.8086,198.0634,32.7938,93.1371,0.10616809 936,409.9240,226.3963,23.0188,50.3023,0.18276936 937,34.8213,202.1557,24.6245,46.5250,0.15457839 937,213.2524,239.5579,22.4835,45.8613,0.10293281 939,396.4894,201.8045,68.6402,54.6703,0.11532667 940,411.0159,207.8054,17.3510,38.5967,0.18723701 940,394.9701,208.7967,18.0583,39.1506,0.14056344 940,378.5359,208.4650,25.2445,37.8498,0.10466173 940,361.9279,205.7629,81.7506,41.9836,0.10216378 941,387.2027,203.1168,22.7609,50.4720,0.99250770 941,403.4663,206.7590,23.1649,49.3363,0.99168444 941,442.4184,209.2181,19.5586,42.6919,0.95405054 941,347.7639,208.8498,21.9096,39.7695,0.16533522 942,432.3298,201.1049,30.4274,66.4527,0.99935567 942,467.2888,196.2696,31.0242,81.3463,0.99904108 942,531.0048,201.4783,28.3789,70.6784,0.99351048 942,377.9658,207.1708,23.5657,36.8173,0.41738141 942,455.5888,198.3444,30.8395,73.1572,0.19680271 942,369.6738,206.9173,21.5723,37.0277,0.16695759 942,361.4241,200.7761,66.6351,54.1686,0.15977436 942,392.5449,206.0001,25.8428,40.0219,0.13867073 943,487.2401,212.7996,24.6318,55.5451,0.99924612 943,424.3311,213.1072,27.4120,59.9983,0.87117767 943,26.4380,203.5236,30.2283,48.9657,0.15183212 944,473.5722,208.4792,22.5898,61.8032,0.29116321 944,464.7355,208.5666,23.0656,54.4705,0.10496838 945,563.7905,206.1440,41.1841,113.8643,0.99798250 945,600.1184,197.8711,35.8483,115.4850,0.98911250 945,583.7737,204.9981,38.1218,114.6551,0.96105564 951,21.5505,200.7184,25.6672,45.2316,0.14167289 951,355.2615,202.5753,28.9414,48.5441,0.13050976 952,362.4479,208.7800,19.8939,35.4796,0.15426883 953,371.6354,200.7450,21.0658,40.5711,0.73763740 954,399.2562,206.6619,21.7592,44.2908,0.97271216 955,452.8827,211.0939,21.4530,52.4708,0.99453866 955,462.3749,211.7552,20.1503,51.2153,0.16544679 956,556.4589,207.5858,36.3709,87.9419,0.99921095 958,387.4731,199.6695,22.9005,48.4165,0.10615679 959,407.7232,207.2194,23.9701,36.7203,0.23175094 960,442.5208,212.7427,19.6392,43.2719,0.94482887 960,94.8170,212.6902,26.4624,43.4308,0.36022365 960,418.8553,214.6097,20.5432,40.1530,0.16251218 961,11.1010,210.7529,30.6616,58.7087,0.63672477 961,441.4520,218.8696,18.3539,37.2629,0.21482530 961,450.3413,217.4462,18.9701,39.3430,0.20288427 961,509.0297,190.5661,35.2757,106.3255,0.16307798 961,368.3089,230.2782,22.7816,41.4121,0.16276839 961,337.2398,214.3310,17.5051,28.5416,0.10481618 962,510.1512,213.0407,19.0654,47.9740,0.98304069 962,421.2839,225.8707,23.2215,56.7305,0.86239058 962,491.8884,216.8743,20.9835,47.9832,0.73232377 962,402.4961,242.7085,23.4309,49.0301,0.28964549 962,349.3038,209.7687,19.7526,40.1471,0.17094642 963,528.3488,214.7756,33.2541,91.7698,0.75668335 963,368.6365,206.4506,19.0324,43.0893,0.55051053 963,585.8616,241.6853,17.8696,41.1910,0.31636441 963,543.6668,225.1297,33.7955,78.5978,0.20702910 963,468.0384,223.9278,15.6244,27.7389,0.11345017 964,392.8896,206.0852,21.3777,51.5507,0.99022079 964,556.3921,252.7270,19.4823,37.7137,0.13100609 965,437.2834,205.7050,26.8967,68.8642,0.99889994 965,584.2797,128.5947,45.9910,104.9449,0.40907973 965,348.3863,204.0102,40.8665,50.5704,0.13651246 966,550.0803,199.0619,40.9942,114.2439,0.99852264 966,396.6050,219.0676,22.1777,50.0589,0.37041655 966,380.9745,206.5060,24.9582,48.0735,0.17441544 967,428.0408,201.4244,56.3223,75.0997,0.56279683 967,427.8548,208.7496,26.6933,51.2612,0.35739386 967,444.8178,206.7793,28.5818,55.4108,0.23104727 968,529.4563,217.8888,33.5455,89.6463,0.99720812 968,569.5748,210.8875,31.5329,96.9611,0.97962368 968,547.0359,217.8093,30.9604,85.8418,0.97251022 968,78.6530,212.2963,24.7911,44.8303,0.34588313 968,582.4310,209.8034,34.5041,96.3066,0.34007823 969,38.8710,206.1642,26.5561,55.3248,0.74118578 969,26.7300,210.7575,29.7917,51.9933,0.17121147 969,546.7836,222.8151,25.5773,53.0672,0.14475442 971,29.7979,207.9604,28.1044,49.3040,0.36215818 971,17.4883,211.0473,25.2699,53.8671,0.17306334 971,472.8996,207.6413,22.3254,46.1137,0.16657721 972,516.3605,211.0867,21.2833,45.0198,0.89420366 972,74.6979,210.6846,19.2878,42.5300,0.12070370 973,584.6470,214.3377,23.1077,48.6548,0.50707859 976,316.8691,198.8796,30.8645,82.6218,0.52724254 976,604.0670,213.3362,20.1579,45.3918,0.13327152 977,598.1063,214.8230,21.3457,42.6882,0.38808793 977,320.2744,206.1933,27.5862,72.8125,0.19914642 977,218.1088,219.5328,21.8475,50.1548,0.15645523 978,603.8987,214.3037,22.5278,38.3505,0.44757357 978,323.1510,210.6162,22.1216,46.2941,0.15938389 979,609.7473,217.1429,23.1079,40.1329,0.24209714 981,432.3545,227.0226,26.2534,47.4603,0.13562934 981,335.3322,253.4907,40.0916,96.3156,0.11150193 982,476.5434,219.7758,19.6172,39.7005,0.11304000 983,519.7223,216.7515,20.4024,40.8144,0.54377997 984,9.0960,214.5562,23.6708,50.0908,0.35133630 986,287.4342,228.1049,22.6817,53.6889,0.87712967 986,372.3239,221.1490,25.4025,58.5187,0.53971827 986,335.2504,229.5405,20.3569,48.3646,0.47256601 986,278.4482,227.8704,21.4320,52.3359,0.11800067 987,534.9544,223.4663,29.8637,59.9225,0.98659468 987,593.8447,224.7458,23.6097,50.9032,0.91169983 987,312.2635,213.2744,21.1711,42.5979,0.88734072 987,584.5399,223.6445,23.5425,53.6936,0.66208947 987,456.5849,218.0457,25.5777,52.9392,0.55247408 987,382.4655,209.4391,25.2094,38.8361,0.25198820 987,522.1910,223.2991,27.4430,56.2163,0.11894047 987,424.4584,204.4142,21.0000,45.8781,0.11315332 988,510.5448,203.3801,24.3699,48.4172,0.96953434 988,363.8783,209.2072,25.7117,43.2533,0.12979355 988,500.0484,204.5767,25.8105,50.4448,0.12384683 989,599.2220,200.9436,24.7339,55.1078,0.33950359 990,565.9558,205.7481,23.8611,45.7962,0.17780556 990,464.0096,209.7173,51.9320,38.8629,0.17438148 991,557.6608,209.9044,20.1455,51.0822,0.94203722 991,594.1538,206.0553,23.3240,48.3530,0.68155295 991,537.9013,206.5999,21.0455,48.7905,0.36333120 991,585.4283,207.4972,22.1385,47.1976,0.34368694 991,576.4029,205.6325,20.8304,46.6354,0.31977132 991,475.9360,210.7097,18.1551,39.5545,0.27092305 991,533.0621,201.1196,97.5071,53.5043,0.19842421 991,468.5482,210.1250,18.0179,39.1444,0.12419524 992,547.0569,210.2841,20.1140,47.5203,0.97914511 992,518.5367,203.5971,19.2302,50.5402,0.86474222 992,582.2976,211.7559,20.5317,44.3876,0.51047069 992,538.2189,208.8800,20.5718,48.5667,0.17498711 992,531.5896,207.1393,17.6408,47.2712,0.16658624 992,563.5163,206.1791,18.7568,45.7191,0.16101566 992,476.8171,206.3348,18.4191,38.9029,0.11245339 993,598.8747,208.9406,25.6556,57.8682,0.98708916 993,531.7219,210.9357,19.4475,42.7482,0.82606184 993,503.2671,207.2317,22.8803,41.8015,0.73478228 993,523.0245,210.5037,20.4161,43.7415,0.43886447 993,513.7492,208.7906,20.5165,42.4362,0.37455329 993,590.2332,214.2974,22.3554,54.7720,0.29918349 994,583.4851,215.8111,22.1061,41.9290,0.64844728 994,591.8639,217.6745,22.6602,41.4845,0.52824724 996,536.1168,210.7071,19.5396,35.9542,0.21061429 997,553.5218,208.5986,21.4998,42.2318,0.74168789 997,591.5458,204.2580,19.6457,39.8247,0.30076909 1002,440.6126,197.5895,20.7490,45.1374,0.89808327 1003,464.7347,204.8889,22.9927,56.5104,0.89097661 1004,502.1601,201.1130,23.8184,63.1148,0.99854362 1005,543.5722,206.0516,24.1174,67.5143,0.94234657 1005,413.6057,87.0853,46.8941,143.6063,0.14116377 1008,558.4050,198.7383,31.1821,94.1117,0.92880261 1008,542.5444,195.7256,19.7084,45.9109,0.71794039 1008,403.4718,212.2946,18.7304,33.0005,0.13911706 1009,578.5574,200.1286,20.4768,41.1365,0.96822017 1009,426.4295,205.9048,19.3237,38.4400,0.34017265 1009,606.9249,192.6001,27.9848,95.4459,0.25485066 1009,376.2061,208.8344,20.8490,38.4211,0.20997867 1010,614.6175,203.6190,22.0779,49.8157,0.83527958 1010,442.1347,209.3845,19.3177,38.3844,0.42227596 1011,533.9677,215.7161,20.3989,48.0435,0.98742819 1011,473.9117,217.3054,21.3292,45.1190,0.75748420 1011,411.5090,217.5744,20.5112,55.9106,0.54059964 1012,561.4058,219.5188,20.9026,51.2845,0.99739879 1012,456.4727,219.7841,23.1305,62.3674,0.93823123 1012,532.0218,193.6083,39.2603,106.4870,0.10056692 1013,597.8952,212.9587,25.9211,58.7410,0.96012568 1013,473.9343,209.2405,18.9636,42.7718,0.85764337 1013,457.0920,207.4498,19.7212,44.8609,0.58679050 1013,408.8928,209.4249,20.1387,46.3990,0.49466816 1013,426.4033,209.1803,19.5904,40.5280,0.41329467 1013,525.7932,207.9845,26.5601,79.0275,0.26634467 1013,392.0551,211.0278,24.7875,51.8161,0.20353097 1013,441.7036,208.5004,19.0649,40.7770,0.17694402 1013,417.8520,209.3581,19.3091,41.4787,0.10449072 1014,498.4793,212.6572,21.1243,50.4055,0.99822474 1014,556.3100,218.0500,31.1697,86.5066,0.98827231 1014,481.3536,214.3994,18.8586,49.4829,0.90878487 1014,543.4455,212.7597,21.6048,45.1502,0.88509578 1014,451.1866,213.7101,21.1235,52.5479,0.85019362 1014,464.8371,216.0105,19.4827,45.4242,0.19206820 1014,441.7174,213.6580,22.7801,55.4580,0.10016866 1015,518.2911,214.4068,23.0309,56.7164,0.99356484 1015,583.6432,211.8884,22.7225,56.3230,0.98592937 1015,567.3797,216.9861,20.4827,47.7399,0.90605646 1015,502.4002,216.6741,20.6823,56.5721,0.68434870 1015,487.0771,221.0043,24.1460,57.0520,0.14901987 1015,479.8182,222.6185,34.8897,111.9692,0.11243647 1016,566.0490,207.4977,24.2271,49.4928,0.24302612 1016,608.1393,197.3226,24.2137,51.8133,0.13605669 1018,600.3831,226.8977,23.2496,59.2793,0.99854445 1018,617.4985,225.7464,21.5092,58.9589,0.74181271 1019,551.8021,211.4757,25.7076,67.7365,0.99914062 1019,608.6044,213.4459,23.2710,56.8773,0.99798584 1019,573.4378,208.5256,24.0245,69.9543,0.99684978 1020,589.1053,220.1565,26.8616,79.7507,0.99845946 1020,563.2657,224.8855,27.0473,75.5035,0.98802733 1020,617.0074,228.2940,22.4141,65.3406,0.35100871 1020,572.4833,226.3136,30.8620,79.2751,0.21500191 1022,158.0238,235.7523,21.8959,51.0988,0.13119251 1023,519.0999,218.9553,21.0327,53.2494,0.25693884 1024,461.0768,195.9175,21.5744,50.4750,0.97964787 1025,528.1687,203.3991,29.3716,66.4074,0.99942487 1028,580.1353,186.5578,30.9828,87.3709,0.76375866 1028,592.9810,181.2108,33.7763,88.7280,0.32307899 1034,502.6131,210.5535,19.0108,46.4604,0.26858890 1035,505.0014,202.5610,18.7009,39.9581,0.27897125 1035,549.6695,196.9745,20.6009,51.1934,0.25481814 1036,522.0088,211.2701,19.5897,46.1227,0.43805993 1036,584.8372,211.5324,18.5655,43.6104,0.14758219 1036,566.2487,211.8395,18.8416,41.5800,0.11322486 1038,608.7960,195.4963,24.7706,53.2183,0.78501213 1038,512.8805,205.1925,22.7392,57.4185,0.76687992 1038,463.1464,208.2267,19.4968,42.8149,0.11409844 1038,405.0604,198.4000,86.2350,61.3964,0.10822803 1039,534.7334,208.8530,20.5623,55.8611,0.81305194 1039,545.5564,213.0929,21.2891,51.8692,0.60767895 1039,485.0569,209.8293,22.3954,48.1016,0.56757027 1039,514.6062,207.2293,20.4327,49.2331,0.16130044 1039,502.5627,207.2082,19.9994,50.4007,0.11199860 1039,491.4369,206.0415,74.3687,77.8212,0.10597949 1040,583.6768,197.0745,22.8797,66.3500,0.95247775 1040,546.9735,199.5400,19.7791,50.5168,0.73335266 1040,411.6290,205.3547,20.1874,42.2839,0.69055593 1040,530.7904,204.9376,17.7111,54.0488,0.25566050 1040,486.8789,208.6476,21.2260,63.5804,0.20457800 1040,523.3421,207.3319,17.7605,52.1568,0.17758313 1040,395.0381,203.5461,46.0864,47.5685,0.10773155 1041,453.4475,201.1338,22.9466,58.9691,0.99399149 1041,601.2142,200.6636,25.5440,63.8970,0.96218687 1041,565.6428,196.5829,40.9313,115.0783,0.84890246 1041,501.8646,205.4957,25.8665,49.7108,0.73986065 1041,539.9818,202.9987,20.2706,55.5283,0.73435342 1041,401.1288,210.8981,20.5260,40.9865,0.61386943 1041,523.0523,202.1109,19.3978,51.7903,0.55530727 1041,463.3190,205.4585,21.3348,53.2954,0.38833809 1041,577.5848,206.2731,33.5073,73.2628,0.31221503 1041,438.2784,207.3277,21.6295,51.4985,0.30654299 1041,552.1302,201.9418,21.3407,56.9950,0.25541615 1041,391.2871,205.9667,97.7307,56.2154,0.17042989 1041,386.0292,209.7234,47.8046,48.1017,0.13619940 1042,454.1458,208.5220,27.3785,59.3328,0.99980450 1042,568.6722,201.2733,35.7835,98.1699,0.99685693 1042,512.4540,204.1702,23.0589,67.2939,0.99621105 1042,533.3113,203.9407,26.5773,79.1274,0.95735431 1042,543.1421,198.7829,28.1499,82.3337,0.85007823 1042,608.2571,206.3037,27.6226,78.7735,0.84906888 1042,557.3415,196.8903,29.0450,84.5070,0.28492436 1042,474.6851,206.6231,21.8800,49.8181,0.20585614 1043,596.7074,216.7178,33.2935,94.7023,0.98895895 1043,564.4611,208.7441,32.6728,87.2627,0.98812187 1043,579.4825,211.4424,33.0704,97.3908,0.97866201 1043,522.4702,211.4361,20.8183,56.7235,0.79503042 1043,553.0048,208.1277,25.2406,58.9497,0.58329690 1043,534.6257,208.0516,23.0172,57.1364,0.36621705 1043,545.6542,211.0704,22.3612,51.2901,0.23091689 1043,390.7120,209.2029,28.4726,85.2162,0.13971551 1044,502.4620,214.7223,28.0397,74.3212,0.99975640 1044,469.1920,214.9332,30.1909,72.0276,0.99911207 1044,68.8264,205.2264,19.6319,41.1270,0.20048948 1046,578.1801,203.7221,20.6062,55.5357,0.73038685 1046,478.9734,210.2225,19.4666,45.7759,0.37332898 1047,589.1145,222.6584,33.3431,67.9067,0.89749700 1050,488.8506,142.6820,40.5028,101.8690,0.13560437 1053,521.6143,211.0652,21.2363,47.2066,0.99181253 1053,471.6376,202.1710,24.1802,50.6963,0.49766022 1053,506.2471,212.7505,20.8466,44.5925,0.28646225 1055,571.6660,207.5516,35.6976,93.4340,0.91050673 1055,520.2139,226.3010,20.4862,46.6091,0.30723882 1055,188.2204,220.1116,21.3422,42.8948,0.28164059 1055,256.0322,224.3017,28.4997,37.2788,0.13334420 1056,201.3300,214.7373,20.7557,45.4322,0.95929492 1056,104.8939,214.2805,22.4417,48.6455,0.43591690 1056,294.0587,216.0364,25.3020,44.6892,0.31409106 1057,353.1105,217.3829,24.3718,54.4770,0.96979713 1057,337.5948,218.8230,24.2543,50.1017,0.75446475 1057,260.1426,211.1947,28.5725,57.8398,0.68568367 1057,276.2470,210.7189,27.4874,52.9945,0.39945194 1057,471.7659,230.9760,25.1728,46.7576,0.25070989 1058,552.1191,218.6761,24.1626,59.9359,0.93553901 1058,531.0006,216.0815,31.7425,70.2819,0.44313607 1058,564.5327,216.4906,27.0882,58.4464,0.39382923 1060,412.8495,210.2043,19.9223,51.3401,0.60977089 1060,512.3227,204.9686,24.4381,49.3793,0.39305112 1061,480.0428,216.6840,35.4789,62.9910,0.21211362 1062,534.6598,215.6794,23.0805,50.9091,0.60469568 1062,54.3946,176.7829,28.7995,63.8152,0.14783271 1063,539.7834,186.7605,21.5107,47.6221,0.18247274 1063,18.9777,177.8348,75.1543,203.3762,0.16021016 1063,463.2917,186.7414,40.8226,52.3810,0.11952289 1063,403.5722,201.5143,27.3618,67.2170,0.10980316 1064,414.4424,200.9105,31.9746,68.5302,0.20987232 1064,154.3962,215.4478,30.6337,84.9119,0.17435703 1067,428.0166,204.1078,60.7204,58.9100,0.12206749 1068,489.7581,212.8208,17.0142,40.5152,0.15118155 1069,439.6692,222.5927,22.0511,55.9021,0.64510548 1069,401.4082,197.8914,23.3086,60.2311,0.31592226 1069,475.2645,205.9889,20.3040,42.8268,0.21775633 1069,533.9728,211.1478,20.6604,36.4510,0.17451102 1069,417.5552,207.2487,19.5022,47.7119,0.10385956 1070,499.9785,196.3295,21.9046,56.8805,0.98081982 1070,577.1202,217.4159,23.1200,55.4767,0.71611774 1070,477.6431,220.4711,23.4423,52.9174,0.68778253 1070,589.1393,214.8525,25.1154,57.7303,0.31960589 1070,597.7773,207.3744,25.9591,55.0482,0.31128201 1070,430.5635,206.5344,22.5642,48.4846,0.15088831 1071,571.4450,225.7813,27.8734,72.2791,0.99529856 1071,470.4205,214.4569,19.2664,55.0771,0.13205324 1072,517.0840,204.7854,22.6099,46.4515,0.38482597 1072,585.9056,226.2118,29.8483,77.2395,0.31967774 1072,390.0571,168.8982,38.2152,98.1087,0.14300624 1072,422.5116,205.8844,31.4600,85.6323,0.14009324 1072,480.9874,226.2541,38.7638,87.5903,0.13649644 1072,68.7138,201.3844,20.2597,43.7749,0.11789586 1072,544.7715,230.3190,25.3875,48.6406,0.11166526 1072,86.2750,206.7719,21.9430,47.4542,0.10697609 1073,457.5262,210.0027,38.5412,98.6155,0.99632454 1073,576.9021,203.1024,26.1373,51.7937,0.57724309 1073,491.5977,213.6698,25.9782,69.7137,0.19349790 1074,575.1974,213.4413,55.2869,167.3431,0.99714839 1074,552.1815,193.0081,28.1010,77.1474,0.16995271 1074,544.6898,193.7647,24.9434,63.2773,0.12522113 1075,591.6389,197.7059,21.5105,50.3022,0.49650779 1075,478.8486,178.0584,53.5021,159.7073,0.12096975 1076,383.4943,208.8055,25.1351,73.3452,0.97068143 1076,527.1270,208.0246,22.3097,42.3874,0.15326425 1077,412.0929,215.3486,34.8040,91.4248,0.99937934 1077,505.1031,214.3000,20.0362,46.2323,0.30857384 1078,494.1788,220.1440,54.0189,139.2233,0.99931902 1078,570.7326,215.3360,21.0387,53.3994,0.81862158 1078,528.1586,212.8123,21.4075,50.4174,0.24537298 1078,443.2388,244.1759,19.6781,56.3832,0.12907524 1079,547.4544,94.3309,27.8773,75.5068,0.22229567 1079,537.6524,263.0647,25.2873,52.1721,0.11986200 1079,549.9073,206.5362,24.9335,37.6558,0.10343629 1081,583.8546,221.8757,19.1513,61.2469,0.45061550 1081,554.1153,107.9489,22.5803,54.0216,0.11297680 1082,561.0052,218.1485,24.2959,59.7095,0.16939628 1083,482.9719,208.5505,22.6615,40.2398,0.14261124 1084,421.2801,211.8285,75.3613,52.0030,0.15751837 1085,542.3299,216.1714,21.4833,48.3876,0.97656345 1085,560.1351,213.8229,19.3623,48.1777,0.93323100 1085,444.0500,210.7793,32.0542,39.1670,0.33214504 1085,464.9574,212.2955,20.4161,42.4951,0.19678599 1085,432.8765,214.6199,26.2165,41.3266,0.12275416 1085,71.9870,204.8499,33.7931,44.8189,0.10575497 1085,33.4510,199.3404,114.3109,49.6205,0.10443644 1086,608.9040,214.6515,23.4760,59.3804,0.91466683 1086,556.7304,203.2039,35.6455,95.7214,0.29046941 1086,43.9753,208.4335,32.7791,40.9479,0.28093901 1086,29.0865,202.2621,61.2646,60.9786,0.13219558 1086,564.4407,215.0717,71.2454,68.7016,0.10770470 1087,523.3880,213.2817,20.8155,47.8764,0.83207875 1087,558.2464,217.3006,23.8149,51.8206,0.80348718 1087,32.6329,209.9671,22.0797,43.0613,0.65605259 1087,24.5731,212.1620,22.0142,46.6513,0.56565779 1087,508.9217,210.9809,20.1710,52.3198,0.53923410 1087,516.0986,231.5067,28.7083,77.1050,0.31888637 1087,497.9410,218.2708,42.9409,109.2440,0.19297622 1087,511.6133,209.1727,68.8665,62.6987,0.13831894 1087,497.6612,211.0923,21.5705,52.4057,0.12455931 1087,407.3397,205.0652,23.9748,49.5635,0.11593765 1087,8.7045,213.2900,24.5366,52.8070,0.10156763 1088,13.5058,208.3657,24.8789,52.2164,0.94264030 1088,573.0792,208.9091,21.9052,49.6252,0.76821899 1088,544.4120,211.7324,23.5540,40.1554,0.20689705 1088,23.4808,204.1286,22.2272,52.3326,0.14359151 1088,561.4188,211.2498,25.4277,45.1470,0.13289206 1088,527.6237,210.2843,100.9480,53.4484,0.10204302 1089,609.0904,210.4592,22.8903,59.9037,0.98724949 1089,573.9038,217.4818,23.1260,52.7722,0.64735556 1089,526.6618,200.3377,21.5400,49.2063,0.51022667 1089,534.9184,102.0691,22.6037,45.9430,0.28175694 1089,595.3825,211.8937,19.5664,53.4526,0.19394904 1089,461.7896,210.1452,72.2731,67.9262,0.11388226 1089,581.6302,214.2077,25.1563,44.1657,0.10611144 1090,471.8687,218.2161,29.2558,56.0912,0.18888853 1090,537.7101,94.7835,22.3502,46.7679,0.14937699 1090,459.0594,214.3522,66.1423,66.5027,0.10824373 1090,496.8291,212.7429,20.9516,44.1367,0.10115739 1091,414.0910,224.0825,30.1114,71.8784,0.26626152 1091,487.9376,85.0327,20.6686,46.2277,0.25224197 1091,406.3821,213.9279,80.1207,57.7848,0.10516916 1092,545.8781,225.6530,29.8193,92.4012,0.99532855 1092,583.8637,228.5880,29.1660,75.1003,0.99513334 1092,605.8236,222.5907,28.1247,81.7266,0.97899258 1092,301.9151,228.0467,30.9855,69.9183,0.18571055 1092,431.5866,217.8349,28.8747,52.1169,0.17500745 1092,319.8929,219.7545,23.5910,51.5931,0.17426273 1092,363.2477,68.7816,32.5430,62.0569,0.11403651 1093,534.9515,220.3708,37.0345,119.5506,0.99553752 1093,492.7155,213.5540,35.9547,102.6707,0.94082630 1093,580.8001,230.5546,39.1420,107.6489,0.87181211 1093,568.7138,219.5766,35.9090,123.8493,0.83860266 1093,552.9168,220.2551,34.0694,116.2824,0.75891876 1093,510.5413,217.7310,37.5867,96.9025,0.70083946 1093,132.1705,206.8535,28.3426,61.8208,0.59750950 1093,525.2069,227.5956,32.9185,96.4133,0.36879408 1093,536.8008,274.1857,23.5023,61.8623,0.34256926 1093,243.3209,205.8056,39.0445,81.9819,0.22548202 1093,486.0241,235.3825,29.4924,73.6245,0.19352330 1093,324.0112,223.6398,25.3813,49.8062,0.16499224 1093,89.2004,213.5669,30.1928,79.4360,0.11311695 1093,80.8132,218.1244,23.3906,64.6611,0.10788202 1094,351.2609,208.2808,56.0386,150.9560,0.99842423 1094,297.4316,210.6857,56.4458,147.9878,0.98954999 1094,600.4237,192.6149,24.9258,66.9135,0.88555777 1094,273.7334,219.2052,50.1994,119.8954,0.83444381 1094,609.3289,191.2804,25.8472,77.3037,0.39162934 1094,374.0454,197.9990,39.3285,131.1588,0.24907571 1095,575.3395,229.6335,35.0832,90.8430,0.99519694 1095,353.6308,222.3434,37.4787,108.7209,0.97651249 1095,395.5578,207.9180,31.0276,77.6774,0.94192761 1095,33.8230,196.7520,72.6575,241.6152,0.90348440 1095,382.1347,211.6853,27.0432,67.4098,0.79932791 1095,413.8112,207.9478,31.7438,75.5512,0.72911954 1095,509.5264,222.3685,24.2881,68.0429,0.53123385 1095,7.5385,222.4653,72.9659,236.8815,0.45879376 1095,59.2938,224.8962,51.1504,147.6691,0.34547192 1095,487.6216,226.6382,22.7889,56.1169,0.25312716 1095,497.9852,225.4943,23.0168,57.7806,0.22297995 1095,348.0534,258.5630,32.8868,80.5075,0.16754967 1095,371.3374,202.3318,32.8355,108.3394,0.14251316 1096,340.4388,215.4400,30.8204,65.5862,0.99948567 1096,254.7468,204.7831,39.8935,97.0654,0.99876970 1096,176.5801,203.5842,36.4771,90.2308,0.99866623 1096,211.0146,202.4358,37.0645,88.9240,0.99799228 1096,509.9844,227.9700,45.5222,129.1718,0.99770421 1096,464.7059,231.5382,40.9195,119.2072,0.99498445 1096,56.0238,207.3960,68.2430,199.6487,0.98422670 1096,528.7707,219.8541,22.8643,57.8866,0.73885518 1096,512.8827,215.0633,19.9954,61.4268,0.22790362 1096,34.9177,222.8063,62.2875,170.9911,0.17235486 1097,331.6710,213.6559,29.2186,72.8733,0.99945468 1097,530.2449,245.9489,61.0318,184.4745,0.99860060 1097,218.0452,210.9972,37.1046,102.8625,0.99853325 1097,265.0463,202.3396,44.1732,111.6850,0.99826968 1097,511.4612,221.1436,20.8381,51.4029,0.99762982 1097,155.4185,208.1454,40.4224,100.8057,0.99248284 1097,529.0592,224.0918,21.9589,50.1060,0.98951805 1097,588.8565,244.9443,45.6798,160.2189,0.63272828 1097,496.0101,198.4962,18.8377,49.7545,0.42720458 1097,540.8121,222.3768,23.0023,56.9829,0.16081561 1097,519.2586,218.5166,23.8284,59.5096,0.12675978 1098,224.5879,216.1608,47.6056,121.6637,0.99982452 1098,534.2622,222.2870,24.7073,62.7285,0.99976510 1098,128.3354,203.6269,46.7941,136.0938,0.99904823 1098,299.6448,204.6431,48.1454,131.6122,0.99868953 1098,340.6950,219.2388,28.0762,75.8635,0.99785936 1098,555.6299,227.1850,21.1702,59.2946,0.98710465 1098,507.9718,207.8222,19.3348,44.2728,0.39302704 1098,53.7152,180.7372,28.9354,79.1459,0.19325805 1098,323.6966,210.2661,37.6499,102.4874,0.15321028 1098,499.6759,205.1122,19.1713,48.7923,0.11085398 1098,567.0955,216.5352,23.8036,63.5418,0.10337080 1099,154.3544,199.5348,61.3865,183.6224,0.99971932 1099,23.7833,215.0840,71.4919,170.9788,0.99953198 1099,204.1943,220.9857,33.2067,87.9652,0.99760377 1099,439.5544,228.3935,27.4138,73.7135,0.99738622 1099,465.3496,228.9482,24.6970,76.6389,0.98567021 1099,450.9568,225.8824,31.5689,80.1058,0.49263763 1099,405.7113,211.8675,19.1940,48.4549,0.44885111 1099,510.7689,158.4637,24.7649,65.8519,0.14664391 1099,15.3145,263.8553,53.7358,136.9821,0.11382443 1100,94.3907,215.0945,42.7578,106.4293,0.99965626 1100,424.8088,232.4391,31.5585,96.1146,0.98570466 1100,404.6531,227.3705,30.8678,94.5767,0.96099198 1100,335.8945,212.6707,19.4403,51.9965,0.94952446 1100,130.3422,212.7611,29.5386,68.1887,0.89256084 1100,184.4491,211.3465,21.3144,43.9304,0.73706806 1100,374.6040,210.0985,19.8463,54.0524,0.33390284 1100,431.0075,195.2826,21.6573,66.9031,0.20898721 1100,322.8408,76.5644,36.2885,122.2242,0.14268441 1100,456.4271,128.1816,21.6602,56.4116,0.13708118 1100,298.5841,189.9827,16.7963,47.2205,0.10417584 1101,82.1140,214.6520,37.0087,81.7330,0.99860275 1101,492.0530,243.4247,51.0719,152.2936,0.99716836 1101,17.6521,222.7159,48.4663,119.8218,0.99603879 1101,319.4608,214.1329,20.8565,54.8405,0.99196446 1101,454.2186,238.1753,48.5972,148.7271,0.97615713 1101,165.6374,213.5779,21.1137,50.3380,0.96182114 1101,149.0317,214.3001,20.9355,45.1760,0.79888123 1101,29.5350,197.2679,55.8142,130.0172,0.39090061 1101,496.4170,142.4654,32.9167,80.5862,0.26801819 1101,309.6335,177.3378,36.3276,95.8106,0.23355635 1101,307.3061,58.4428,36.6113,129.9566,0.20526707 1101,478.7378,239.7185,41.9975,133.7498,0.13092771 1101,260.6625,206.3952,16.0411,33.0728,0.11977231 1102,342.5878,219.5139,23.6037,63.0045,0.99912250 1102,175.9253,213.1905,24.4763,62.2090,0.99851727 1102,157.1871,209.8760,23.9867,61.4541,0.99516177 1102,10.4255,218.2437,40.6897,101.8618,0.97655690 1102,533.4802,70.8888,34.6467,98.5873,0.32444027 1102,422.2666,208.9528,24.3295,58.2736,0.21615821 1102,276.9013,212.0951,17.6669,32.7202,0.12688541 1102,16.4327,163.6301,43.8076,122.5766,0.11415604 1102,296.3052,198.6921,20.6155,50.8669,0.10059047 1103,362.9922,222.3608,28.4592,75.6579,0.99940234 1103,163.6754,217.9026,29.8297,68.0344,0.99934006 1103,131.1993,211.6958,32.8445,79.6831,0.99908447 1103,483.1499,203.7626,20.9924,52.8167,0.23358881 1103,463.2597,120.2455,28.0991,80.8408,0.18883985 1103,551.5710,66.4211,31.8384,99.0843,0.15759632 1103,334.1127,168.0384,23.9827,69.6806,0.14454484 1103,570.6913,181.1875,29.1363,74.4409,0.13267627 1104,117.4764,226.6837,38.7865,104.5788,0.99988049 1104,69.7710,214.8921,44.5790,115.1506,0.99898630 1104,155.2045,225.3906,29.4844,73.9589,0.99826038 1104,390.3962,226.7728,40.7732,108.3129,0.99725103 1104,578.5723,214.0696,27.3400,87.7861,0.56362319 1104,571.5468,165.5656,35.2288,92.3058,0.26633659 1104,305.5292,210.8785,19.5879,38.9540,0.18670158 1104,134.8750,224.3273,27.7423,76.3329,0.14323887 1105,470.9941,232.1530,62.1333,166.1667,0.99979520 1105,111.5751,226.2180,40.9269,112.6980,0.99832010 1105,75.0932,215.0413,40.5349,124.1347,0.99809581 1105,322.6529,208.9315,21.3051,43.5939,0.55559909 1105,313.3531,211.3263,23.2413,34.5672,0.19043723 1105,344.9040,194.3481,20.8720,54.8432,0.17161223 1106,336.0680,211.9432,19.8394,45.4507,0.68496537 1106,10.3716,233.0935,53.3564,196.1413,0.54534870 1106,361.3371,208.5362,21.3467,51.8312,0.10913038 1107,338.6810,217.4071,20.1373,49.1002,0.98631549 1107,324.3159,220.7884,18.5953,41.2979,0.15735216 1107,359.2220,212.4396,22.7980,53.5930,0.10809027 1108,360.6727,207.7485,25.2506,62.3482,0.99686366 1108,431.3072,209.0152,21.8891,49.8259,0.98310685 1108,150.5437,203.2342,23.7861,54.7270,0.44302937 1108,295.5951,212.2907,20.8143,39.6609,0.24951778 1108,280.6938,216.2724,21.4325,39.7293,0.23767978 1108,321.2703,215.3284,16.9009,34.1581,0.14398509 1108,304.2066,210.9649,19.4481,37.3406,0.12254953 1108,313.2935,213.7547,18.1217,34.8090,0.11156370 1109,392.8704,215.2036,23.9149,60.8549,0.97620028 1109,291.8955,217.3797,18.1337,44.9463,0.83498073 1109,310.7922,217.4598,20.5241,40.4241,0.81409252 1109,432.4157,216.5869,23.3990,55.5646,0.64882880 1109,329.7093,220.2187,17.9506,36.0837,0.24236208 1109,143.7006,215.5120,22.5471,47.3502,0.19520807 1110,319.8849,217.1395,20.3557,52.1290,0.99725258 1110,435.5879,218.6593,32.0461,79.4663,0.99668992 1110,420.8977,221.9092,30.5841,71.6199,0.99054688 1110,304.8043,217.7002,19.1528,48.5358,0.97792172 1110,97.8940,226.9259,21.4792,55.0922,0.15562709 1110,346.1133,221.2431,17.9267,42.2966,0.10901587 1111,312.8569,222.0036,22.2454,58.0746,0.99637425 1111,333.7439,214.3251,23.3363,66.5947,0.99589670 1111,497.9047,226.2931,39.8015,105.4753,0.99264741 1111,363.7140,223.6683,19.9455,42.1260,0.42153418 1111,539.9893,269.7136,30.3938,81.7070,0.23774733 1111,484.5171,253.9272,47.1648,108.4917,0.12727208 1111,526.1732,235.4145,45.5030,104.0695,0.11870375 1111,453.3368,218.4932,34.7630,63.8796,0.10781776 1112,565.0056,231.0183,48.4848,124.8836,0.99960995 1112,326.6946,215.6505,30.9920,86.5300,0.99929941 1112,307.4550,217.2156,26.1966,83.0408,0.99610406 1112,371.3642,227.9652,21.8217,44.5521,0.91496348 1112,435.1744,199.7261,31.8415,78.9924,0.20780876 1113,298.8153,219.4075,33.9899,108.9870,0.99498069 1113,374.2526,231.3260,21.2643,43.9133,0.98824918 1113,275.6148,224.0278,33.1602,102.3999,0.96092045 1113,446.3067,215.1640,39.4275,63.9267,0.29113823 1114,376.8592,226.1664,24.5700,46.9835,0.99911022 1114,238.7636,207.9287,47.7009,153.4869,0.99831784 1114,199.6279,220.1793,43.4103,118.4657,0.99313706 1114,292.1318,212.5429,15.7699,29.8297,0.15966116 1115,75.3412,206.0990,79.8721,250.1718,0.99915659 1115,46.1646,209.7888,79.8895,217.5424,0.99689269 1115,381.8489,221.0833,21.9437,55.5253,0.99650037 1115,105.7251,212.3798,64.0398,195.5731,0.55187154 1115,290.3154,209.4881,16.6516,32.5740,0.27096808 1115,63.1255,207.8531,51.6657,111.7758,0.19420320 1116,377.8537,248.0694,24.6964,52.8392,0.99673045 1116,286.4629,233.7656,16.9065,31.9458,0.22885334 1117,384.1964,258.8204,25.0491,52.9460,0.99971062 1117,284.4384,248.3668,16.2226,28.0430,0.16463350 1118,383.9748,232.6861,25.8824,54.7877,0.99980021 1118,271.8568,213.4459,19.8340,36.9269,0.38842893 1119,377.1795,238.9373,27.2169,60.8425,0.99989223 1119,251.7689,221.4349,21.3167,41.9580,0.52881551 1119,183.6253,121.5250,40.0701,101.3376,0.21901955 1120,372.5150,210.9575,30.0921,65.4285,0.99987507 1120,235.9558,191.6675,20.1246,44.3793,0.57870889 1121,386.3805,232.8680,30.7222,73.2699,0.99970496 1121,227.8943,218.5625,21.9495,45.0998,0.65200448 1121,256.6754,207.4122,16.9716,33.7426,0.16052148 1122,416.6605,238.9317,34.7176,94.9889,0.99967039 1122,220.6406,217.8552,22.0453,49.3651,0.96163058 1122,54.7272,210.4498,25.1417,60.9376,0.35031575 1122,251.3270,213.9246,16.2583,31.4417,0.23836538 1122,239.7050,211.5286,23.3791,34.5736,0.10106985 1123,473.5607,242.2274,52.0047,132.8176,0.99956465 1123,219.3468,218.8655,22.7805,57.7966,0.99711442 1123,254.8531,211.1281,18.4306,35.3412,0.29826105 1123,520.8335,263.3052,38.3395,71.0584,0.18836033 1124,205.9381,221.3639,32.3457,74.6412,0.99963844 1124,265.9609,209.8985,19.6168,44.5005,0.93406916 1124,250.2074,210.5067,18.0751,42.6905,0.54831362 1124,350.5125,210.7378,19.7343,38.4933,0.18520954 1124,318.9332,209.9714,14.5158,25.7817,0.10654894 1125,155.9580,225.9767,43.2500,104.5547,0.99909824 1125,241.7095,211.7882,20.1537,53.0925,0.98951674 1125,261.3317,212.2017,19.2844,50.4828,0.98905087 1125,364.5481,218.7093,21.7162,41.6061,0.79482496 1125,142.6206,227.1416,32.3707,107.4244,0.18626536 1125,321.9633,213.7586,17.2930,29.8524,0.13950495 1126,216.9543,204.3301,25.6236,72.6734,0.99877381 1126,239.9232,213.9490,22.2515,59.0497,0.99703503 1126,372.7216,219.1958,21.6795,54.1990,0.99190247 1126,321.9361,213.9481,15.4858,30.2786,0.23862851 1127,388.3210,214.7787,26.5101,68.7769,0.99795830 1127,209.5443,215.3057,27.9297,75.7096,0.99737990 1127,182.2523,207.7744,33.7670,91.7788,0.99398577 1127,321.8961,206.8571,17.6215,42.0174,0.22639060 1127,314.2097,209.8864,17.1724,35.3943,0.11355940 1128,93.0515,207.9229,53.4596,146.8742,0.99934411 1128,131.6425,220.3697,46.1356,126.1021,0.99772727 1128,412.9861,225.3789,35.5249,91.3637,0.99599433 1128,312.4642,210.6678,19.6172,42.9967,0.60712278 1128,169.4202,205.3417,22.7726,56.9054,0.25061736 1128,302.9253,215.8010,21.7628,37.7392,0.24512160 1129,471.9128,229.3813,46.9421,135.9219,0.99577206 1129,299.1224,210.3889,18.0145,46.2969,0.88551795 1129,315.3041,210.0371,18.5246,48.1613,0.85272741 1129,337.9206,209.1690,18.8770,42.9438,0.59385443 1129,307.0634,210.3060,19.4843,47.8929,0.58254099 1129,345.8664,210.4037,19.6224,42.9755,0.44816393 1129,331.1682,209.3762,17.8105,42.0176,0.33554733 1129,354.0560,211.1135,19.2931,46.0074,0.22473645 1130,316.1666,215.4436,20.4282,50.8215,0.93524110 1130,101.6984,205.7153,25.4818,56.4491,0.90030181 1130,355.8830,214.0111,19.5719,46.4310,0.89944959 1130,285.7283,213.4552,24.7046,47.8049,0.69664800 1130,347.9992,212.7860,18.5156,46.4413,0.34226176 1130,118.3172,208.4459,23.3735,47.2192,0.26462656 1130,339.4609,213.5370,17.2930,44.9783,0.19597670 1131,330.2866,213.5434,19.7379,58.2295,0.99491036 1131,260.3191,213.1455,23.0621,53.0392,0.99249125 1131,289.8657,212.3267,23.7915,58.0630,0.98976123 1131,28.1961,199.7448,42.6985,87.7301,0.86265028 1131,345.8139,217.1077,23.1811,60.7911,0.79476118 1131,46.1459,192.7484,33.2412,83.4666,0.59830260 1132,257.4158,213.7805,25.6101,60.5198,0.99807072 1132,231.4463,213.3326,24.8246,56.7321,0.99218124 1132,295.8787,219.1648,19.8182,62.8028,0.99015331 1132,314.3632,214.3529,23.3244,70.6162,0.96452647 1132,248.2074,214.9771,22.9166,55.0604,0.67061132 1132,304.5600,212.9337,23.5397,72.3188,0.47614899 1132,326.1880,221.3762,25.6615,64.2026,0.10767548 1133,275.2367,220.5778,26.0573,74.0167,0.96396178 1133,255.3727,215.3347,23.8126,60.4696,0.95964646 1133,301.7376,217.5263,28.5799,82.2158,0.94893748 1133,287.9796,220.1063,23.5459,72.2833,0.29926574 1133,565.8496,225.0591,29.5280,77.2435,0.16793884 1133,263.8519,218.8644,25.1868,71.1337,0.13268849 1133,328.6231,231.5906,26.3279,75.0770,0.12392082 1134,298.5649,223.9124,30.3220,91.1981,0.99443877 1134,321.0098,222.7450,38.0592,93.8399,0.85546148 1134,338.0231,218.6219,27.2205,82.2705,0.18582314 1135,311.9131,227.2027,36.4451,108.5383,0.99109805 1135,352.1938,224.0202,37.3886,106.7854,0.88150430 1135,327.6937,225.3341,34.1673,112.3983,0.41748911 1135,364.2047,224.0337,26.8915,66.3587,0.11766282 1136,328.7664,235.8131,38.3363,124.8750,0.98783571 1136,384.7699,226.4760,41.3658,146.7776,0.98375112 1136,354.6330,230.2459,37.0911,127.2213,0.96763706 1136,389.6597,211.8187,31.7484,99.1902,0.54700524 1136,251.7414,210.5634,21.4474,56.4664,0.21996346 1136,357.4424,216.7672,26.7690,70.1700,0.16420884 1136,412.5653,224.0668,24.2548,67.1223,0.14832866 1136,416.2070,227.5439,39.5393,116.2685,0.12203169 1136,350.1585,232.7744,27.8772,78.7433,0.11581329 1137,350.8496,241.8602,51.6887,165.8849,0.99304974 1137,427.2350,235.5663,49.2677,181.6915,0.98024607 1137,393.1853,252.3748,42.0998,141.9488,0.84779692 1137,366.0249,218.2917,23.9513,58.5827,0.27477562 1137,443.4652,223.7442,31.6402,89.4917,0.25285968 1137,251.8616,214.2453,20.6208,42.9081,0.22699603 1137,380.0193,252.0026,33.0756,104.6835,0.21913224 1137,418.2641,244.8209,36.2228,122.7329,0.21891414 1137,423.4623,207.9830,39.2463,100.7962,0.19477852 1137,397.7316,252.7599,28.3789,87.6919,0.19164233 1137,204.9025,27.3409,28.3909,55.7786,0.11176173 1137,357.9413,213.0164,23.1716,50.3611,0.10884728 1138,410.4131,269.9901,67.5618,196.6684,0.99608266 1138,466.7087,270.7509,55.9204,217.2784,0.97700578 1138,508.7686,253.0743,69.0137,215.2876,0.97488725 1138,379.0764,220.7547,21.4381,46.3714,0.96823597 1138,476.2812,264.5608,42.3492,125.0197,0.71883655 1138,260.1516,214.0031,19.8203,45.5404,0.68064928 1138,450.1500,217.6885,39.3248,108.5230,0.63679868 1138,368.6469,221.2618,21.1325,43.6223,0.63300031 1138,515.5945,347.5143,46.6582,133.8941,0.52709252 1138,463.2120,273.3545,39.9804,130.2284,0.51586735 1138,463.4486,231.7293,44.5493,104.9158,0.30602819 1138,439.4783,220.0098,30.4436,95.3843,0.28962231 1138,533.3354,358.4750,44.3183,130.0330,0.20801465 1138,511.2324,267.3268,39.1414,150.6161,0.19341196 1138,438.4910,278.9282,66.1675,181.7025,0.15043348 1139,402.7930,222.9920,19.2389,43.3709,0.95588350 1139,473.3111,210.2885,33.8227,115.1064,0.95337319 1139,275.4984,216.1313,19.0883,44.1905,0.77861440 1139,387.6450,221.4568,18.8400,43.2835,0.73778379 1139,394.7584,221.8168,19.8848,46.5636,0.63449621 1139,538.4425,288.2123,85.9577,288.5809,0.61626935 1139,487.5238,231.6585,27.4768,80.2147,0.28284425 1139,466.4979,232.1201,23.3517,67.7774,0.27571428 1139,507.7216,243.5296,96.9071,242.8929,0.16210525 1140,484.1872,219.7756,46.2850,145.9725,0.98525083 1140,411.1082,219.6892,19.2989,49.1899,0.96978843 1140,503.6784,229.6777,29.9857,91.7571,0.92787254 1140,401.4354,218.3988,20.5003,50.6734,0.92058158 1140,277.8009,216.7205,18.9284,43.4804,0.69301063 1141,505.4132,228.9711,59.3451,163.5325,0.99887168 1141,403.9945,220.0122,18.7549,52.8751,0.96485013 1141,394.4474,221.8838,18.8081,50.0459,0.80756515 1141,261.5338,220.7818,27.7917,64.2819,0.36532128 1141,524.3870,230.8914,39.7812,96.9664,0.19358931 1141,503.2983,231.5613,37.4795,118.9136,0.11561758 1142,393.8762,224.8502,21.0445,51.8278,0.98013699 1142,385.4128,225.2572,20.0584,51.1605,0.93933064 1142,585.6271,237.7737,37.4576,147.6735,0.83315146 1142,305.8115,211.4947,21.7831,34.7365,0.21265830 1142,297.7776,213.3438,20.2548,37.1880,0.20836568 1143,178.9845,221.4019,29.4492,58.2179,0.99784160 1143,344.1240,218.1513,22.8010,60.8704,0.99552238 1143,360.1054,223.6181,20.0809,57.0132,0.60117537 1143,578.0894,231.2328,22.7619,59.5997,0.15120779 1143,249.8594,214.8922,18.2582,38.1723,0.14805111 1144,182.3418,218.0417,26.5530,61.8203,0.99865329 1144,167.7014,215.9029,26.3430,58.5550,0.52125275 1144,200.6345,221.6586,22.2982,55.9509,0.37693000 1145,600.4830,258.5634,20.9712,47.9474,0.11970526 1146,320.6716,260.4666,18.5133,43.4525,0.12058004 1147,379.8878,221.9911,31.6369,82.8983,0.99904907 1147,473.2611,217.1058,36.2259,88.6443,0.99573767 1147,542.5837,220.0267,27.4319,74.7738,0.98116219 1147,566.5964,227.2029,25.8894,78.7659,0.97019148 1147,590.8508,231.4161,24.3945,76.0770,0.94092083 1147,526.4794,217.2700,28.6832,75.7488,0.64767087 1147,604.7183,228.8702,23.6582,70.8234,0.10121901 1148,267.6109,217.7706,42.9737,99.6884,0.99969602 1148,424.7783,224.8465,38.1316,94.5784,0.99954098 1148,390.1738,220.2198,35.6905,95.8573,0.99897981 1148,123.9976,218.3255,42.8118,96.2269,0.99717128 1148,497.5940,225.7222,36.4141,117.6117,0.97583687 1148,358.3184,218.6442,26.8012,89.4736,0.92866123 1148,346.5902,218.5990,24.9689,88.0144,0.57590294 1148,372.6379,218.8908,30.0378,89.0106,0.55904198 1148,405.7530,226.3139,35.5285,101.0048,0.14799738 1149,124.2859,218.5933,59.3281,129.9783,0.99989086 1149,365.1892,221.9935,33.0733,92.3521,0.99274409 1149,261.9514,224.5676,34.0921,99.0922,0.99142492 1149,331.4687,221.3690,34.9943,120.0132,0.98975730 1149,492.8337,228.2446,47.5101,146.3124,0.98201466 1149,297.0884,218.4695,35.9637,121.6728,0.95711482 1149,314.5993,219.3544,34.0625,115.2609,0.81566024 1149,346.8853,221.7590,33.2291,98.4066,0.63643980 1149,286.9825,220.4606,30.5194,111.4172,0.61302227 1149,321.0664,260.6185,34.3820,90.4579,0.18960887 1149,481.4200,259.0956,40.8224,118.3716,0.15650448 1150,318.4864,215.4931,41.4411,113.6791,0.99855757 1150,273.1418,215.0438,46.2535,155.9935,0.99582165 1150,7.3849,211.6641,62.3546,163.6101,0.99202228 1150,535.1982,249.7780,62.0113,185.8864,0.98309726 1150,226.8848,214.4509,49.6306,153.3554,0.97839355 1150,228.1086,287.3727,52.2839,109.6273,0.93211091 1150,379.0388,210.9957,21.1836,43.9823,0.81129074 1150,210.9762,238.7882,36.1673,111.7824,0.47639817 1150,567.6154,322.8043,39.4613,125.8354,0.16723353 1150,274.1516,200.9519,32.4720,73.6790,0.12737228 1151,266.0301,212.7824,55.1398,146.2435,0.99923861 1151,114.7873,215.1114,71.9515,203.4631,0.99401748 1151,225.9149,215.6954,47.6236,149.4135,0.98777521 1151,185.7289,215.9182,59.2895,196.8291,0.98159897 1151,371.1853,215.0191,21.0008,41.9093,0.96819377 1151,149.8585,218.3732,61.9780,178.6993,0.94840848 1151,95.6643,320.4135,70.5732,149.2439,0.89223552 1151,186.0379,217.1396,34.8799,89.1627,0.62178826 1151,350.8258,215.9960,20.7620,41.9441,0.61026967 1151,361.8785,217.1353,22.1935,40.6607,0.16589078 1151,178.2938,324.8149,22.2227,57.0559,0.10596316 1151,199.5734,320.9254,24.3824,62.5255,0.10294916 1152,201.5109,225.0308,65.4581,152.9594,0.99977493 1152,149.7534,210.4426,58.7437,178.3701,0.99968445 1152,36.3170,202.3617,86.2815,242.8878,0.97367185 1152,74.0903,216.8131,69.7027,247.4209,0.97147357 1152,358.6898,213.0854,21.1803,45.5838,0.95431179 1152,18.4763,226.9390,66.4921,235.3635,0.85830396 1152,367.8273,213.4159,21.8041,44.2907,0.38636056 1152,96.9476,218.4934,55.7638,170.1157,0.31160170 1152,15.8409,278.2771,44.4494,148.4989,0.11714243 1153,96.3005,214.5827,76.0601,198.2628,0.99958754 1153,20.9864,216.1160,69.3138,246.5517,0.99839723 1153,336.2181,216.5135,19.0529,44.3543,0.96584803 1153,320.7298,214.2339,18.8946,46.0206,0.79754746 1153,207.5166,205.6375,27.6388,50.6414,0.41581780 1153,351.5562,213.8156,19.5733,41.2744,0.23229451 1154,308.0108,216.1585,19.3620,50.8108,0.97193575 1154,292.5449,215.7899,19.2969,48.3049,0.83256572 1154,338.0723,216.1763,18.2742,41.6647,0.28082708 1155,300.6734,212.8761,20.3752,50.9751,0.99034595 1155,340.5507,214.6604,20.7164,48.9299,0.98235148 1155,286.0800,210.9285,20.1446,51.1548,0.89417994 1155,140.0709,230.2378,32.0565,42.1167,0.18426435 1156,302.8168,210.3734,23.0879,60.0735,0.99880576 1156,357.8730,217.4068,25.5997,59.9704,0.99797612 1156,289.8012,212.7527,20.3886,57.0069,0.93818760 1156,112.3566,239.9245,41.8214,56.3097,0.33220655 1156,342.9568,124.9323,39.1058,104.4546,0.16741684 1157,379.1142,218.7102,33.0415,81.7164,0.99979162 1157,306.0099,217.4715,23.9504,66.8898,0.99907374 1157,297.3201,220.2007,22.7135,63.4069,0.92391562 1157,62.5137,261.3483,42.8861,71.7054,0.58558375 1157,251.0986,218.3654,19.4484,42.9601,0.30375364 1157,43.5975,253.9147,45.7247,95.4250,0.14129052 1158,430.1115,213.0599,51.5441,129.4350,0.99995023 1158,308.7927,213.3312,28.1232,76.7994,0.99666059 1158,291.0927,209.4050,24.9416,76.3026,0.98857868 1158,22.1946,99.4041,43.3182,129.9235,0.33863544 1159,336.6386,213.7846,23.1532,46.8996,0.99719334 1159,294.5956,211.7293,35.1069,94.6907,0.99716723 1159,270.0091,209.4895,39.2163,94.6812,0.99696767 1159,576.0511,233.9908,63.2232,252.2696,0.33971420 1160,229.3873,214.5448,39.4778,116.2995,0.99827242 1160,261.9607,212.5295,39.3804,113.0969,0.99771148 1160,380.4407,216.1566,20.7024,56.7779,0.88053447 1160,33.7073,77.0299,22.8465,66.4475,0.17100747 1161,157.9632,214.7435,53.0618,148.4962,0.99910486 1161,194.8126,210.4200,45.0927,145.9662,0.99394751 1162,114.5721,225.6306,66.7838,209.4039,0.99799293 1162,63.5499,226.8289,70.6191,213.5671,0.99758875 1163,3.0904,219.8099,95.6363,249.7410,0.99180192 1163,535.6030,228.1747,24.1202,52.0532,0.10752700 1164,228.2140,211.7784,20.3725,51.2807,0.66080809 1164,581.4437,241.2455,25.5228,38.1427,0.16831560 1165,227.9426,219.0245,19.0979,48.0567,0.98740113 1165,326.4257,222.3630,11.8851,28.2681,0.11435717 1166,239.3668,212.8587,21.3094,50.7570,0.99755269 1166,353.1455,220.1911,15.4784,31.6259,0.13823280 1167,253.6964,226.5363,20.3190,56.2666,0.99802089 1167,445.1974,231.9243,32.0229,80.1171,0.44262227 1167,371.4001,228.5587,21.7416,42.3488,0.24085745 1167,220.9876,216.4419,31.1121,73.8832,0.15645418 1167,234.8180,228.0542,22.1180,56.7263,0.15503532 1168,216.7883,219.8549,24.4443,60.4607,0.99990767 1168,194.3356,212.6064,28.6640,75.2996,0.95818865 1168,452.0859,236.4258,31.8544,75.7476,0.34336367 1168,360.5088,218.4397,23.1488,47.4503,0.32478192 1169,177.9539,197.8360,25.8107,78.5961,0.99776620 1169,153.5534,199.4846,28.7764,73.5886,0.99773842 1169,356.2455,208.0513,20.7948,49.8868,0.95299697 1169,475.3849,221.6055,49.2461,110.9078,0.35351467 1170,94.1998,216.3223,37.8465,91.8230,0.99927783 1170,128.6241,218.3833,35.7260,91.6311,0.99912798 1170,359.3626,222.7492,21.9300,57.2864,0.98750877 1171,58.9865,229.3056,53.2452,118.3558,0.99935555 1171,367.3798,222.2720,23.3840,72.0281,0.99916220 1171,15.4031,224.8520,50.5101,116.5466,0.99742723 1171,526.4251,228.3640,28.1194,69.8076,0.25410801 1172,393.6639,220.7099,29.7369,89.9389,0.99707210 1172,252.1497,207.5080,17.0210,33.6929,0.15685739 1173,472.4054,230.6263,40.3586,127.5573,0.99154270 1173,276.4759,203.4183,18.6021,37.8537,0.24883011 1173,579.2341,278.9724,27.5388,60.1174,0.11656952 1174,305.2689,204.1358,18.7113,41.9040,0.67046976 1174,294.5145,212.7070,18.2502,34.2434,0.19751582 1174,278.2024,216.3009,17.6738,31.1444,0.18066874 1175,308.2610,206.0719,19.1179,38.6838,0.41657156 1175,277.5103,210.7754,16.8802,34.2230,0.28966564 1175,293.9046,209.7298,19.1775,36.0481,0.12329240 1176,304.6205,212.4898,19.7621,44.4778,0.99142456 1176,267.9170,214.7944,18.0455,41.1863,0.89795220 1176,282.1543,214.9549,19.8719,43.4703,0.39223129 1177,289.6186,211.4153,21.1303,51.0739,0.99802613 1177,248.4490,213.6318,18.1926,45.6581,0.95297706 1177,263.0484,212.5612,21.2463,50.8242,0.90466201 1178,273.6550,212.7127,24.5161,67.2389,0.99893892 1178,226.4159,216.2330,20.4740,59.4305,0.99567783 1178,244.8925,215.4663,21.9539,59.6922,0.98437750 1178,256.6696,211.9066,23.5429,63.6176,0.13946488 1179,250.7668,212.6406,33.0578,83.1891,0.99950689 1179,199.8145,213.4632,30.3411,80.2320,0.99825811 1179,223.9853,219.1747,27.1178,76.7601,0.99663997 1180,226.7511,204.0222,39.0130,109.9771,0.99896348 1180,189.7571,212.3611,33.8875,103.9142,0.99818206 1180,161.1725,207.6833,38.4013,110.2498,0.99813843 1181,155.9159,216.8937,58.2102,163.7173,0.99978137 1181,39.1924,215.2319,71.9446,168.4489,0.99909800 1181,102.7969,212.4743,54.5482,163.2956,0.99840677 1182,-6.8202,249.5763,87.6859,271.8047,0.16128847 1183,528.8626,89.9710,22.6564,51.1096,0.11309788 1189,418.6737,230.1706,22.0650,44.4141,0.51529008 1190,455.9366,230.1511,22.5712,46.6484,0.71154124 1191,485.9122,225.6788,21.6299,59.1270,0.98029625 1192,510.1696,244.5654,21.7054,53.1088,0.98095775 1193,513.6944,221.2058,22.9327,54.5127,0.99585450 1194,509.1386,212.2209,26.6339,65.4790,0.99975657 1195,504.4588,225.4235,26.9968,73.5520,0.99831855 1196,468.6458,217.3010,32.4915,83.6548,0.99916196 1197,353.9400,221.6149,34.4311,85.0990,0.99844527 1198,160.2657,221.6650,43.2580,108.0737,0.99935436 1198,430.6963,221.7245,24.9339,54.1703,0.11066863 1199,560.3680,235.6531,36.8758,85.0495,0.99500841 1200,225.6462,234.7198,37.9076,97.0970,0.99852550 1202,600.3975,207.4906,35.8220,61.9166,0.10261887 1203,439.5686,222.8063,23.7122,59.8266,0.24917068 1203,534.9774,189.5937,40.9418,104.4622,0.11355837 1206,584.3841,215.2965,22.9620,50.8242,0.63771743 1209,571.7900,214.1989,24.2527,50.3908,0.32470304 1209,526.5921,211.4300,71.7609,58.3098,0.12226297 1209,563.9491,214.4356,42.7669,124.9454,0.10204933 1211,461.8350,210.5794,24.4009,49.7723,0.40176192 1211,43.3002,198.4782,30.8564,62.6240,0.10720526 1212,492.2581,208.8522,20.3138,50.7309,0.97593218 1212,121.2654,199.5899,21.1817,46.7398,0.67660958 1213,486.0004,211.8133,22.5372,59.3345,0.99784797 1213,96.4535,207.0807,22.5828,43.7079,0.95426011 1213,424.8161,210.1808,23.0807,53.6387,0.15867636 1214,458.5770,208.9267,24.4138,65.0506,0.99928975 1214,44.1338,199.3121,31.1439,53.2132,0.99146909 1214,287.7358,205.3225,19.9863,49.6949,0.17204678 1214,388.2960,198.4494,20.2855,43.9730,0.11679974 1214,412.0443,214.8255,27.6282,71.5087,0.10687529 1215,436.2797,209.3884,33.8548,76.8067,0.99890673 1215,288.2421,204.8397,22.4984,47.3851,0.99633551 1215,9.7821,205.6770,39.0033,65.6002,0.91345447 1215,358.1707,201.3082,23.1295,51.5329,0.20081978 1216,410.5410,218.7957,49.2577,127.5823,0.75255156 1216,303.8775,204.3167,29.5831,57.2783,0.63488090 1217,28.9846,202.8704,43.3312,84.1211,0.99848449 1217,391.6273,202.5269,40.4730,105.2928,0.99826264 1217,377.8489,202.7480,23.0185,56.5519,0.88051021 1217,199.3952,197.1611,23.7360,43.6755,0.33013949 1217,396.4115,46.2079,24.4316,61.2009,0.16728795 1218,475.2983,204.0404,26.7964,59.0903,0.99967110 1218,124.0132,204.2490,24.1409,54.4127,0.97873461 1218,355.6918,195.1401,43.9924,128.2774,0.97133851 1218,238.6762,192.3430,23.2997,44.4012,0.93286604 1218,332.4642,193.8602,19.8445,38.9772,0.26858485 1218,351.5729,181.7930,24.9168,64.7652,0.25505722 1219,565.8121,203.0658,25.3600,63.5342,0.99337196 1219,242.7563,214.1322,41.6995,124.0030,0.94933063 1219,210.6610,208.6459,34.9724,89.8226,0.89670026 1219,273.0285,192.8123,21.5555,43.4112,0.80995041 1219,367.5685,190.1034,21.3039,45.1336,0.73631930 1219,224.4968,203.7046,39.1890,120.8788,0.30102199 1220,285.8337,209.7813,41.2280,91.5652,0.99946707 1220,74.0410,215.1245,50.0886,96.0144,0.75106627 1220,273.3489,199.6046,22.2445,42.1923,0.22804610 1220,353.8956,193.7650,22.9951,43.8849,0.21148315 1220,369.0269,194.1353,19.6895,42.5563,0.15710546 1221,344.4543,204.4802,40.3871,88.5229,0.99610335 1221,275.9135,195.8559,20.7741,44.7922,0.68384945 1221,336.9282,189.7851,19.7665,44.6185,0.19944525 1221,374.8802,197.4278,20.1094,43.1120,0.17628226 1221,237.2658,256.4080,30.8062,71.0374,0.10209133 1222,405.3040,210.8664,33.6673,78.5355,0.99914742 1222,275.9433,196.8942,20.1982,44.6963,0.71269637 1222,322.7291,194.5224,18.6659,44.8253,0.67194557 1222,371.3949,199.6878,20.1989,40.1798,0.27682912 1222,246.6648,249.7908,23.8482,62.0419,0.16702145 1223,458.1874,207.3028,29.5409,73.3983,0.97345710 1223,277.8143,196.4491,20.1165,45.6873,0.71686673 1223,321.2549,195.2984,17.4176,39.8203,0.48294222 1223,442.1777,193.1994,22.7746,48.0131,0.32661265 1223,370.7102,196.9088,19.4632,38.6191,0.24461690 1224,499.8308,202.6257,33.1706,81.0912,0.99967778 1224,320.3056,196.0414,20.0558,43.9868,0.70882523 1224,374.6873,198.0437,20.2116,42.9183,0.38800299 1224,279.9450,201.2383,19.8390,45.1416,0.23472397 1224,440.8586,198.0816,21.9922,40.6911,0.23450223 1225,558.0955,201.2339,31.2231,72.3986,0.99935639 1225,321.8838,193.9145,18.8544,48.2364,0.65923870 1225,375.3146,198.1183,20.9824,39.0126,0.20731679 1226,276.3395,193.7835,22.4607,45.7850,0.53707081 1226,379.7348,193.1174,19.8891,37.6660,0.25540507 1226,321.5372,189.2081,17.9045,40.1021,0.20665908 1226,538.3193,197.6496,44.8582,125.9099,0.18230335 1227,296.1220,189.6975,22.3444,46.3636,0.82363814 1227,338.1225,185.9888,19.3364,44.1534,0.55069602 1227,476.4679,186.9141,20.6581,41.8636,0.20088226 1228,348.8657,186.0585,23.0414,46.2267,0.98160899 1228,306.4976,191.3951,22.7708,43.2850,0.89739281 1228,496.1900,184.6505,22.3566,48.2448,0.22067454 1228,417.7537,195.9503,23.5220,39.7204,0.16420566 1229,354.2195,186.6680,21.9965,45.1806,0.96979022 1229,312.4654,190.1378,21.8637,47.1572,0.96779382 1229,424.8944,193.8732,19.1544,41.9795,0.37372315 1230,354.2891,189.8750,22.9660,44.3171,0.98279262 1230,313.3670,194.5969,21.7084,46.8757,0.92097771 1230,423.2688,192.1752,21.2173,45.6358,0.61200953 1230,505.4879,193.9871,20.5200,41.1105,0.48152754 1231,353.4505,190.6236,24.5084,45.1463,0.97914475 1231,422.0998,188.5188,23.3846,48.0602,0.88412631 1231,504.9139,190.2989,19.9170,43.7724,0.67814469 1231,312.1357,196.8136,22.1150,42.7340,0.53375107 1232,352.4028,189.9526,20.9296,45.6560,0.93163073 1232,421.9041,188.8469,22.8383,47.3618,0.83216357 1232,504.3259,190.5984,20.0023,44.1461,0.76455003 1232,281.8572,198.5349,20.8712,41.5276,0.67332840 1232,306.9806,200.2504,20.3857,44.6464,0.14681226 1233,324.1381,194.8804,23.0880,43.1890,0.94803762 1233,506.0933,196.5515,21.1295,42.0056,0.92082977 1233,357.1376,197.4008,20.3695,43.9937,0.76699799 1233,250.4135,201.9201,22.4139,45.4286,0.54965615 1233,283.0376,203.4498,20.3595,43.3376,0.45198923 1233,424.6134,194.3831,22.1460,43.7263,0.40340930 1233,272.5733,205.7280,23.2935,43.0132,0.17500666 1233,336.1535,196.5575,22.7365,44.9287,0.16163184 1234,303.2068,200.3519,22.5768,52.5386,0.98944443 1234,521.4189,200.0947,22.8725,49.0137,0.96447700 1234,344.6299,201.1004,22.8355,43.8233,0.84983099 1234,434.2078,198.0792,22.4001,48.5325,0.50974411 1234,210.8740,211.9382,19.7876,42.2819,0.43270791 1234,241.0227,206.6122,24.0302,45.5160,0.23997511 1234,446.6297,202.7777,19.9716,42.8911,0.16171780 1234,203.0395,212.9149,19.9472,42.6904,0.12699820 1234,231.8002,208.4931,22.5435,45.9904,0.12569000 1235,247.0807,207.1222,24.2166,56.0432,0.99474323 1235,128.4632,209.3923,23.9128,56.7326,0.99448413 1235,154.7996,210.4072,24.2379,57.4480,0.91526282 1235,278.1514,215.9345,22.4002,49.9680,0.83668399 1235,434.4246,206.7357,19.8895,48.6655,0.35021639 1235,139.1229,207.5318,31.8304,58.2724,0.19843253 1235,264.8390,212.4926,20.4490,51.2629,0.17934158 1236,457.5129,209.1207,23.0618,53.2924,0.99811912 1236,80.5788,207.5694,32.3838,67.2432,0.96339947 1236,344.7380,205.8458,25.6507,62.1668,0.77161491 1236,65.2749,206.0379,35.2874,67.3219,0.76144910 1236,92.3886,208.9241,32.0037,58.7724,0.13941890 1236,356.2634,211.3767,25.1248,54.3392,0.12616992 1236,326.5031,216.5071,37.0338,78.9647,0.11689081 1237,230.6143,209.9532,26.8869,58.0064,0.99609303 1237,250.5455,215.0065,23.0100,51.7793,0.93082511 1237,213.6925,212.4624,24.6849,56.7858,0.38897470 1238,264.9413,219.0897,27.5251,73.7750,0.99872530 1242,614.8844,206.0500,19.2757,52.3028,0.63885224 1243,605.1222,208.8719,26.4050,60.2280,0.96299708 1243,590.3463,221.1586,41.6920,108.0879,0.19068569 1244,543.6457,217.5815,21.8063,49.1873,0.72752690 1244,512.9739,220.2941,23.5042,54.9079,0.50719845 1245,445.1630,213.0075,28.8689,88.7921,0.34964752 1246,283.0249,210.7381,17.1278,35.3303,0.12608965 1247,142.3053,210.5500,20.3446,43.9878,0.66495079 1247,277.8167,208.6716,19.8302,38.6704,0.16200176 1248,274.1122,211.0985,21.3918,43.3383,0.97802132 1249,263.5987,209.0630,22.8945,50.8674,0.99940753 1249,583.9078,221.7271,26.4493,61.5319,0.99863768 1249,25.2138,218.1184,28.2154,64.8148,0.88126802 1249,518.2263,210.6150,21.1042,43.6013,0.73118961 1249,544.5491,205.4534,19.0937,43.9262,0.49777824 1249,489.2857,207.7430,21.9102,45.5009,0.16762400 1249,528.2200,208.3250,20.8724,43.4557,0.14535108 1249,498.5168,208.7591,20.5530,45.6461,0.11056471 1250,216.3656,212.3045,26.5450,64.5601,0.99982584 1250,590.5148,207.6972,20.1829,54.6946,0.95836329 1250,479.1384,205.8168,22.8504,54.6368,0.54059303 1250,505.5828,201.9955,21.3532,53.3262,0.37849081 1250,487.1203,208.0072,25.6055,55.3427,0.11769083 1251,129.4635,212.4595,33.9636,83.9502,0.99802691 1251,579.1985,212.8462,22.5516,59.4431,0.98977935 1251,534.2805,202.2982,20.5721,51.6479,0.97986424 1251,596.3998,207.5718,24.2545,58.0963,0.97337854 1251,545.6893,204.5497,20.9260,52.9635,0.82677525 1251,607.2660,209.2145,24.0039,53.2636,0.33838856 1252,506.9961,224.5753,23.5889,48.5759,0.18070924 1252,546.5895,213.7951,20.1544,55.8077,0.10577533 1253,503.6281,209.5890,22.4245,54.6909,0.54005158 1253,489.9319,210.0336,22.2034,46.1281,0.21709064 1253,518.5682,209.8206,19.3487,53.7905,0.17201564 1254,553.5136,207.8535,21.1478,49.3189,0.87065750 1254,580.0774,210.2435,28.9299,61.2744,0.60786003 1254,587.8323,205.6380,41.7348,90.2670,0.10520200 1255,419.6400,186.6306,33.6091,115.1900,0.19441319 1255,439.7571,207.9484,20.6219,56.0344,0.12141865 1255,552.8478,212.7890,19.0324,35.5090,0.10575654 1256,421.6156,172.2757,28.2448,78.3512,0.43988812 1257,584.9065,211.6623,25.0902,58.6592,0.31415799 1257,497.4121,200.1237,56.2480,167.0674,0.13763177 1258,496.3382,206.1490,21.5902,46.0716,0.95496845 1259,563.8561,211.9702,18.8107,53.2077,0.43557188 1259,514.8707,210.9700,24.5575,69.1045,0.35089666 1260,478.0140,204.4639,17.4245,36.6739,0.18200845 1260,585.4701,196.3459,39.8112,62.1593,0.16429739 1261,595.2544,206.3694,35.7758,83.5561,0.99886292 1261,504.7265,207.0607,22.2698,44.6657,0.53427887 1262,432.5175,212.7141,19.8023,52.2106,0.39198703 1262,485.6081,209.6565,23.0938,49.2684,0.32169113 1262,139.8974,205.0977,20.0870,41.9284,0.28958064 1262,440.6834,210.0453,20.7831,49.4641,0.16825524 1262,430.9539,207.5331,34.0360,82.3925,0.15901726 1262,469.6833,196.9652,85.9713,71.0355,0.11800030 1263,467.8485,208.4978,20.3252,56.4100,0.96796554 1263,530.5705,210.0210,21.2621,54.9468,0.94723666 1263,481.3989,210.6909,20.6149,53.1602,0.90098011 1263,546.7850,215.7984,20.7491,50.2374,0.55941319 1263,493.6091,208.3179,62.0176,64.1711,0.22104928 1263,512.9190,211.6260,21.6334,53.2924,0.20708302 1263,569.6064,164.5984,49.5360,106.2125,0.19344294 1263,562.8911,213.3883,20.7695,48.4713,0.17001025 1263,518.6739,211.0611,61.1436,58.3772,0.12546809 1264,504.9630,207.0597,25.0131,59.2582,0.99409962 1264,581.5199,212.1237,21.8615,59.6243,0.98939353 1264,528.1093,213.1670,25.0597,57.6067,0.89366138 1264,109.7859,207.7879,22.5027,45.9771,0.76738942 1264,600.5951,215.6680,19.6507,50.4781,0.39386022 1264,609.7635,212.1591,20.9158,55.2686,0.38408303 1264,564.3675,220.7888,20.3728,47.9963,0.31165886 1264,499.7006,211.8869,98.2139,59.6244,0.15207879 1264,350.2173,211.3763,79.5536,45.8372,0.11919519 1264,536.1198,218.3751,90.9925,58.8636,0.10366951 1265,94.7299,204.5857,22.1662,48.7024,0.98240221 1265,590.3847,218.0985,22.8558,61.0209,0.95037484 1265,454.2300,208.2834,21.6712,53.3616,0.67016947 1265,554.1114,207.2580,31.9034,70.8802,0.56952745 1265,438.7890,213.9328,21.7809,43.2549,0.43628836 1265,575.0218,216.9851,23.8596,58.5829,0.42869014 1265,502.0218,211.8749,21.3505,44.1203,0.24268910 1265,83.0415,204.0104,19.4283,44.0657,0.19794574 1265,422.1542,212.0358,26.2353,43.2455,0.17617510 1265,432.9307,211.9135,125.6147,45.8325,0.15167454 1265,512.7435,201.7045,85.3283,62.3347,0.14286779 1265,427.5395,197.0584,57.7020,79.6826,0.10910273 1265,383.3989,217.3403,29.2681,36.1232,0.10881627 1265,596.0696,230.5246,27.9507,60.2770,0.10191512 1265,518.7992,209.2175,21.3274,44.2113,0.10167810 1266,79.1457,205.5367,23.9850,50.6502,0.94615293 1266,449.9364,217.4580,18.8621,44.0075,0.82281256 1266,468.0790,212.5822,19.3181,47.4179,0.80664217 1266,515.5384,214.7164,21.9651,42.5760,0.73768395 1266,611.7592,202.8981,26.8667,71.8191,0.60352719 1266,558.5280,218.5284,25.1229,52.3189,0.47666866 1266,458.3858,214.4408,19.0780,47.7616,0.44287878 1266,573.5289,219.6224,24.9830,45.5301,0.42630708 1266,392.8427,218.8167,23.3730,41.4435,0.25444615 1266,500.2679,212.8471,31.0737,45.7766,0.23281470 1266,481.6736,204.4717,65.6482,55.2665,0.16700077 1266,481.9387,211.0406,18.0185,46.5928,0.12606594 1266,432.0973,217.7962,19.8059,40.2173,0.10731666 1267,468.8166,212.9746,18.9463,48.5122,0.95115566 1267,521.1762,215.8214,21.4888,45.0494,0.91309041 1267,605.0326,222.4624,23.5407,51.4350,0.68930626 1267,396.0546,219.2896,21.3195,43.5113,0.57320732 1267,448.1474,219.4274,21.2548,42.2225,0.50396961 1267,458.2909,215.5323,18.8264,47.2242,0.43009657 1267,586.1425,225.5603,31.1540,57.4613,0.36425981 1267,481.0535,214.1545,18.0518,48.8151,0.34597135 1267,507.5845,211.5549,18.3727,47.1781,0.28987926 1267,498.9412,210.5425,17.8685,47.6213,0.25747362 1267,489.9505,210.5529,17.0645,49.8393,0.15185091 1267,432.5679,217.3771,22.0752,45.0569,0.12478662 1268,473.1863,216.6663,20.1209,52.4099,0.98915994 1268,520.3168,216.4801,20.1424,45.8355,0.92105436 1268,450.4979,219.1025,22.5385,45.6639,0.86211717 1268,481.1197,217.2505,20.0085,53.1523,0.70953584 1268,396.2688,220.5528,22.9281,43.9566,0.64498055 1268,506.9416,213.2890,17.7448,47.6582,0.52641213 1268,488.3432,213.8016,18.0067,47.6162,0.32202929 1268,595.6913,224.2370,34.4382,74.6837,0.19727075 1268,498.5897,213.5340,19.6118,48.9630,0.14587663 1268,435.3476,221.2684,22.0557,41.5811,0.10759659 1269,516.9064,217.9316,20.1333,48.8740,0.98406732 1269,475.7796,217.6910,18.3927,51.1625,0.96012920 1269,449.3401,220.9540,22.2454,44.7061,0.66598314 1269,467.1989,216.1820,20.5918,50.4767,0.62872791 1269,506.4556,217.6367,19.6435,49.1829,0.43867838 1269,597.3597,222.0369,31.3768,64.6752,0.31318405 1269,433.6875,224.1279,20.2541,39.2727,0.18544304 1269,396.8427,222.8147,19.4469,44.8854,0.17255217 1269,486.7689,215.9089,19.5872,52.0912,0.12532268 1269,32.2601,209.3198,25.3883,52.6647,0.11187708 1270,512.3470,218.1495,21.7277,48.2805,0.98575062 1270,474.1840,214.9606,18.2662,54.2663,0.96935010 1270,49.8463,210.6053,24.9916,50.0146,0.95726383 1270,450.0577,225.3954,20.3171,41.7726,0.66243029 1270,595.8978,225.6967,33.2222,67.0725,0.39672101 1270,435.4268,226.9094,19.7987,40.2065,0.14316800 1270,488.3344,216.7801,19.0845,50.4464,0.12901083 1271,474.7144,216.3104,18.2023,55.2486,0.97609544 1271,511.8608,217.9308,22.2119,51.0193,0.97287178 1271,448.3634,222.2707,20.9041,43.9216,0.79792082 1271,433.7992,220.9181,21.2905,43.8004,0.27015978 1271,500.4722,218.2607,20.0263,50.4568,0.18868442 1271,18.8806,204.1676,32.5111,48.4353,0.16405343 1271,606.8223,224.1431,24.0440,60.2916,0.15607318 1271,10.4279,201.1891,25.3962,55.1780,0.10223157 1272,473.3412,219.9239,19.1472,49.2231,0.98520434 1272,506.0872,214.0499,22.1175,49.4534,0.94881803 1272,54.6022,211.2703,22.8033,46.6786,0.93303329 1272,449.9878,224.7160,20.9126,42.8159,0.77036136 1272,593.5609,226.7170,35.3358,66.3860,0.36893776 1272,433.7328,227.2362,21.0782,38.5827,0.32076335 1272,31.6637,202.6436,47.7232,51.1005,0.14446625 1272,397.7927,226.0434,22.4153,42.6208,0.12203856 1272,31.5753,203.0926,21.0536,42.7357,0.11347802 1272,489.1023,218.6112,17.5386,49.1626,0.10367858 1273,504.0085,216.5621,20.7222,51.1029,0.87154782 1273,48.5053,214.9439,22.3583,46.2318,0.77820629 1273,467.2658,216.5363,22.9148,43.0604,0.67393625 1273,455.6910,217.8740,23.8454,38.1657,0.34672302 1273,512.4099,218.1735,20.6173,45.9446,0.32876176 1273,479.1119,215.0195,22.0568,50.5294,0.25439072 1273,601.3120,230.9804,32.0776,66.4483,0.23359805 1273,409.1818,212.7587,91.3158,55.0974,0.12160926 1274,50.3460,209.9150,24.0569,49.6350,0.96490872 1274,596.1303,223.2076,32.0090,74.7247,0.71639192 1274,397.2763,223.8061,20.4668,42.8201,0.38464993 1274,451.2872,220.8191,18.9396,39.7417,0.27142003 1274,442.1482,223.8916,19.4300,38.4544,0.20536065 1274,432.8425,223.8575,20.5595,40.4279,0.18770476 1274,472.8805,212.6887,18.5953,42.8419,0.14019269 1274,411.9490,217.8569,122.1687,43.7191,0.12030760 1275,467.5790,218.7319,20.9872,47.3831,0.97562754 1275,54.1968,209.8986,24.8690,47.7177,0.95871001 1275,502.6814,218.2760,18.4594,48.8884,0.89617008 1275,449.5869,222.6530,19.6622,44.8002,0.77942753 1275,458.6889,220.4876,19.2102,46.2175,0.76298541 1275,595.2119,220.0777,30.5240,74.8476,0.66274577 1275,482.2340,221.9664,18.7509,46.4714,0.48708773 1275,514.9351,215.7990,19.7131,48.0356,0.44188637 1275,396.6498,222.2670,20.7538,44.1054,0.30392557 1275,433.1980,222.5822,21.2473,42.6609,0.23321167 1276,548.1291,219.4699,20.2517,52.3000,0.98170608 1276,53.1748,212.0915,24.4584,46.9541,0.97263467 1276,466.6395,222.5839,21.7837,42.7029,0.93963325 1276,505.1311,216.5116,17.9314,50.6969,0.68128526 1276,513.9235,215.0204,19.5836,50.4510,0.57504916 1276,481.5976,222.8535,19.1970,46.4508,0.57149321 1276,448.1370,226.1616,22.6977,41.1211,0.57055861 1276,564.4719,216.6786,21.7397,55.6665,0.42958009 1276,607.0548,226.8813,24.7225,55.0188,0.36329865 1276,397.7715,225.7213,20.1391,40.4520,0.34939626 1276,434.0734,225.8658,21.5463,40.2042,0.23565592 1276,592.5734,225.1918,30.6435,59.1764,0.16508202 1276,581.3367,223.2678,23.1093,49.9701,0.13308288 1276,457.5630,222.9161,20.8624,41.3334,0.11654164 1277,470.9819,218.4225,19.9839,49.0706,0.97271228 1277,544.1828,220.6892,20.3766,46.6875,0.93990946 1277,49.1782,209.6685,25.3061,52.7591,0.91151524 1277,504.2685,217.3938,18.2425,50.2657,0.89528567 1277,440.4025,226.1073,24.4012,42.1882,0.70271158 1277,481.3796,221.1536,19.9049,48.2565,0.49490768 1277,514.3015,216.8409,17.5753,51.1580,0.38213837 1277,608.9133,223.4314,23.3535,55.4722,0.20957607 1277,454.6540,222.1886,20.5505,43.7686,0.18139818 1277,551.9945,217.8313,21.0297,45.3193,0.13912299 1277,420.9051,216.3480,45.9116,50.0308,0.10908918 1277,429.0337,223.0227,22.0703,39.9337,0.10556727 1278,55.0147,209.1914,23.6727,50.8321,0.99655670 1278,533.3978,212.8825,22.6312,51.8131,0.97030616 1278,473.0387,221.7952,20.9224,45.5343,0.96260560 1278,505.3353,214.2680,19.0378,51.6346,0.93519199 1278,514.6762,217.4497,18.6839,50.7722,0.57817888 1278,433.8945,225.1716,23.9861,42.9948,0.54241353 1278,446.5239,224.0926,24.2477,42.9349,0.48355141 1278,396.3564,224.4691,21.5071,41.6205,0.30331063 1278,487.9600,220.3763,18.7910,47.1477,0.21782029 1278,608.5542,220.4154,23.9046,62.1335,0.11428550 1279,524.8859,212.5340,22.8654,51.5626,0.97717088 1279,55.6474,212.3710,22.6472,48.3188,0.96972901 1279,442.5135,222.0464,22.4889,43.0529,0.91043490 1279,473.3787,221.1604,18.8236,46.0242,0.88002682 1279,489.7439,221.3369,19.6960,47.3670,0.68522966 1279,506.7548,215.3175,19.8126,52.8986,0.66737258 1279,395.8717,224.2246,21.4613,42.1414,0.47199449 1279,497.6761,219.2361,20.2708,49.7171,0.45684236 1279,434.1281,215.5424,22.7050,49.3548,0.43641847 1279,46.0707,211.7634,23.8492,43.1411,0.20070025 1279,481.7035,217.6605,19.6203,48.6573,0.16381136 1279,473.5421,218.1805,66.9678,55.4459,0.12041213 1280,53.7710,210.4100,25.5386,48.6553,0.99481606 1280,472.5495,217.9681,19.8827,50.6434,0.99432474 1280,503.4314,214.4673,22.2417,55.6888,0.98485875 1280,442.6722,223.4797,22.1474,43.4433,0.89959586 1280,512.5421,211.5165,21.6782,54.2805,0.57761782 1280,434.0436,219.5162,21.4447,46.8702,0.49090192 1280,598.0675,231.0730,28.4988,58.9655,0.41244656 1280,31.3325,203.6904,23.1644,40.4144,0.26994401 1280,397.2906,224.3299,20.4417,43.2597,0.22996548 1280,479.7739,221.3331,20.5128,49.5530,0.15263425 1280,39.4553,207.2501,28.2859,52.9214,0.13154848 1281,53.2575,211.7506,25.3134,49.2413,0.99453330 1281,473.7717,218.5872,18.8907,50.4261,0.98555660 1281,596.1845,221.8410,31.0114,66.9963,0.98529750 1281,523.1996,222.6963,21.2021,45.4764,0.91300768 1281,443.2408,222.8664,21.6521,43.2244,0.77728760 1281,490.5161,217.8230,18.4670,48.6844,0.69617969 1281,506.5908,217.8236,19.1367,48.5770,0.61717117 1281,498.7461,216.7343,18.9150,48.5839,0.61219323 1281,434.3684,223.9518,21.9060,43.0446,0.51744139 1281,397.7730,225.4024,20.2449,44.0485,0.40570486 1281,14.5452,199.8174,26.8093,49.4424,0.36627322 1281,513.8221,221.7047,22.1344,49.2737,0.12040617 1282,591.1744,231.3195,31.2484,64.3713,0.99174845 1282,53.3075,211.1042,24.9338,49.5740,0.98974621 1282,398.3313,221.3631,20.7809,43.9563,0.26878238 1283,471.6613,218.1440,20.2282,49.5774,0.99284995 1283,52.2578,212.1741,25.8513,49.7704,0.99155140 1283,555.1602,223.4318,21.7148,45.7988,0.98901719 1283,594.2706,227.0554,28.2462,58.7699,0.91463786 1283,442.0273,220.6277,23.1831,46.0789,0.85854101 1283,504.7358,215.3842,19.5566,52.3907,0.83100045 1283,397.1737,222.6048,20.8492,44.2930,0.79947823 1283,514.4497,218.9871,18.5491,49.1246,0.45137718 1283,434.6876,219.0100,20.4050,47.4479,0.36291862 1283,72.7514,208.7384,19.2395,48.4011,0.15081179 1283,576.9388,227.1245,54.9149,71.0136,0.11882082 1283,611.0288,224.0625,27.3550,75.2788,0.11247215 1284,470.9676,216.5782,22.0085,52.5292,0.99773908 1284,504.2857,216.9229,21.6839,52.0422,0.97823334 1284,574.0774,224.0846,20.4816,45.7875,0.88607699 1284,596.9296,229.8130,27.5861,57.4072,0.82862514 1284,440.9768,222.5866,23.2984,44.9281,0.78874582 1284,398.1360,224.3172,21.2389,44.8023,0.50059080 1284,31.9133,195.8448,83.2735,44.1028,0.14962557 1284,423.8840,211.1707,40.8509,47.9822,0.14906716 1285,52.7852,211.9461,25.9647,46.3687,0.97681975 1285,596.7315,225.1839,28.2458,57.0928,0.82768345 1285,398.1187,221.0661,20.4809,46.8037,0.70074034 1285,433.1165,220.6082,22.0416,44.2286,0.65984440 1285,379.5237,214.2981,85.2136,53.4323,0.13610953 1285,417.6138,208.6887,40.3883,51.8997,0.11959382 1285,586.6647,211.2027,29.8815,73.9035,0.10454871 1285,467.1036,212.7830,21.5337,43.9205,0.10148243 1286,472.6189,215.2675,19.7701,53.2171,0.99433768 1286,52.6417,212.0693,25.5045,46.5542,0.97487879 1286,597.1634,226.4530,29.3350,61.2410,0.91761768 1286,505.0580,216.1717,20.3044,49.7193,0.90183794 1286,442.2982,220.7450,21.7925,45.9327,0.72421801 1286,399.7301,224.5782,19.3135,44.4209,0.56344151 1286,514.3297,218.7513,19.3360,48.2811,0.46304557 1286,428.0670,219.7643,19.7637,44.4709,0.17635430 1286,612.9645,226.4276,22.2043,61.7201,0.13458250 1287,472.3144,213.4817,19.9023,56.0408,0.99317706 1287,52.2875,211.3181,23.9424,49.0368,0.94438797 1287,505.2299,217.2770,19.5765,51.9061,0.93131143 1287,594.0158,222.0149,32.7260,66.4215,0.88693964 1287,399.3091,223.3212,21.1486,45.2148,0.73033440 1287,442.5736,218.3536,21.7061,47.8362,0.71705014 1287,514.9294,220.9517,19.4290,48.7999,0.69135970 1287,426.7316,218.5342,20.9962,43.5470,0.49386111 1287,612.8104,224.3489,25.1213,73.6787,0.13949376 1287,379.9620,195.1316,20.0635,54.6380,0.10239262 1288,471.7418,212.2845,21.5268,57.0204,0.99763262 1288,49.5062,213.6445,26.6888,48.2532,0.98308420 1288,504.5837,218.2423,21.0908,47.4470,0.91969538 1288,594.4259,218.6137,33.9548,73.4020,0.87380779 1288,442.4915,219.6027,21.9031,47.0172,0.82595491 1288,426.1129,220.1417,20.6940,43.1808,0.55811030 1288,400.5983,223.3662,21.4226,46.0175,0.39624909 1288,434.1618,216.6561,21.9154,48.8133,0.24291056 1288,417.1895,220.4417,21.0891,43.3356,0.16631626 1289,472.2027,212.9638,21.2709,55.7897,0.99089950 1289,502.3811,217.3364,21.0291,49.6635,0.96758389 1289,52.7682,212.3858,24.3101,45.4707,0.93815935 1289,594.8027,213.5142,30.4803,73.6272,0.93500364 1289,442.2782,221.0710,21.9893,46.4629,0.86015606 1289,513.5383,216.9993,22.5847,50.0977,0.70433050 1289,400.7917,224.0274,20.7373,44.8083,0.65161228 1289,427.7276,221.0987,18.7260,43.9333,0.54667872 1289,38.0701,208.9778,28.8161,41.9673,0.17225766 1289,588.2820,230.3900,44.9944,93.5336,0.15741095 1289,418.5078,221.6825,18.7621,43.6926,0.11465120 1289,612.7443,227.1098,25.2809,74.1676,0.10854542 1289,422.0042,214.6869,39.2195,49.7093,0.10557563 1290,473.3874,216.5119,19.7879,50.9512,0.97370124 1290,52.7140,212.0068,25.3097,48.2701,0.94536138 1290,503.8712,219.1248,19.2975,47.9583,0.91797918 1290,594.2114,227.1460,32.4694,63.7208,0.87254852 1290,441.7321,217.6577,21.0059,48.3721,0.81401187 1290,400.3787,223.8140,20.8354,44.8144,0.72351378 1290,515.0927,217.9423,20.1957,48.7281,0.62719733 1290,427.0647,219.1745,18.6110,45.4636,0.42380792 1290,458.1041,212.3583,19.3100,49.0831,0.12493248 1290,612.0311,222.9095,27.3020,78.6857,0.11398585 1290,376.6505,216.2291,93.1327,52.3084,0.11382727 1290,417.7717,222.1629,18.8048,43.3111,0.11016865 1290,487.7885,219.0432,17.6579,44.4819,0.10959145 1291,474.3925,214.9109,19.8190,51.7803,0.98450500 1291,503.7555,217.7345,19.7353,48.9981,0.96919537 1291,54.1734,211.4400,23.4126,48.4751,0.96372032 1291,593.5245,213.7360,31.0914,73.1098,0.86672521 1291,442.1600,216.2938,23.1120,50.0214,0.79412234 1291,399.5243,221.6752,21.6560,46.8713,0.74099374 1291,514.5190,218.4309,20.5799,49.2304,0.69510382 1291,455.8534,211.1401,22.4451,50.2438,0.65631032 1291,425.9755,218.9165,20.4409,44.3550,0.46960986 1291,435.1163,217.5583,19.1286,50.3625,0.18503304 1292,50.9792,207.0663,27.3107,57.2193,0.99323964 1292,465.3513,212.3744,22.8948,54.3006,0.96620691 1292,502.8953,218.2732,20.6053,50.0567,0.96360326 1292,591.4938,223.0224,32.1149,68.9772,0.88335145 1292,442.7115,218.3596,22.4782,48.5285,0.86831176 1292,480.9318,215.4511,20.3320,54.0693,0.82688588 1292,427.5236,219.2068,19.6497,47.1054,0.74116486 1292,399.5174,221.3973,21.3219,47.3739,0.68160200 1292,513.2196,217.3131,21.4064,51.6239,0.54011565 1292,62.5244,210.0507,20.6601,48.4396,0.11085018 1293,473.3462,213.4248,19.8177,56.0439,0.95718992 1293,500.1822,218.9233,19.4855,48.4488,0.95566308 1293,51.1965,209.1711,24.1307,50.3835,0.94199151 1293,592.2383,229.1703,30.5048,70.1765,0.90430844 1293,441.1443,219.9403,21.5878,47.8670,0.90276963 1293,515.0087,216.5482,20.5942,49.6884,0.81593657 1293,426.7061,220.4298,19.0589,43.0043,0.46922570 1293,489.1225,217.4529,18.8834,50.2762,0.43607739 1293,457.7637,213.9640,19.8200,50.0056,0.40689933 1293,401.1032,225.5466,20.8526,42.6863,0.28738263 1293,417.3296,220.9112,19.3609,44.2451,0.11268101 1294,49.0056,210.7698,26.8871,52.2583,0.97978389 1294,474.7632,215.1514,19.1862,51.9823,0.97392309 1294,441.4522,218.8265,21.9267,48.6950,0.86378169 1294,594.2491,228.8547,33.2945,70.6799,0.83478552 1294,496.5102,221.1403,20.9690,48.0087,0.69013047 1294,466.7330,214.7757,19.8913,49.1560,0.61620891 1294,425.7600,219.1877,18.8789,44.3666,0.57024050 1294,458.1417,213.4890,21.1882,48.3222,0.56789374 1294,514.2789,217.3204,20.5336,46.7060,0.55338264 1294,401.8720,221.0926,19.9888,46.3354,0.51166946 1294,503.8071,218.4085,21.3552,45.1673,0.42618620 1294,488.9444,217.2009,20.5595,46.5148,0.30471459 1294,487.3314,211.2034,46.5279,59.0204,0.15106210 1294,396.0601,216.4037,18.3700,46.9948,0.10201409 1295,52.1348,210.0144,27.0896,51.4595,0.99448025 1295,592.7708,228.6842,27.7865,65.3474,0.87184018 1295,474.5039,219.1369,19.5023,49.1064,0.84826738 1295,442.8576,218.2588,19.4665,47.5482,0.81219000 1295,490.0850,221.0030,18.2185,45.9140,0.69826770 1295,450.5268,217.8521,19.7369,46.2732,0.65766704 1295,467.4766,218.5796,18.4361,48.3352,0.63541126 1295,505.3051,219.9411,19.1806,45.3024,0.55240858 1295,425.4796,218.3521,18.4135,47.3148,0.54916865 1295,402.3373,221.8777,20.0437,43.9541,0.54048139 1295,496.9854,220.3325,19.9739,48.9580,0.45751765 1295,37.2167,208.1507,26.8682,40.9258,0.45461869 1295,515.7450,217.1562,18.6081,46.0072,0.39620572 1295,436.1205,215.7417,17.6775,52.2866,0.35260141 1295,410.4993,217.1136,18.7637,47.9162,0.23692244 1295,601.0381,217.0394,31.4396,70.5245,0.11404102 1296,474.7084,217.2889,18.5597,50.9396,0.95541990 1296,47.6041,211.7154,26.4441,50.8805,0.94972539 1296,592.6997,229.2557,30.6359,71.9835,0.91115236 1296,441.1831,220.8436,20.9968,43.3184,0.75867057 1296,458.1784,214.4476,19.0317,46.4781,0.75038821 1296,490.4458,220.2039,18.7882,45.7414,0.74659908 1296,505.3172,219.4191,21.5747,46.0051,0.61606842 1296,17.1527,201.7953,26.0383,51.6169,0.54337186 1296,465.4868,213.5480,20.2392,50.4397,0.46073347 1296,514.3150,216.9992,20.2162,45.3885,0.34321660 1296,425.5378,223.2499,22.3147,42.0709,0.27684423 1296,403.4191,221.9359,19.4440,43.6179,0.25758302 1296,58.6327,214.0499,23.4499,44.9694,0.23845583 1296,416.7467,222.2266,21.7758,43.5761,0.20661423 1296,415.1265,215.0207,44.4990,52.6101,0.18157254 1296,21.9670,202.5862,44.8364,62.4400,0.10344654 1297,474.3660,219.8376,19.4383,48.6805,0.98510933 1297,592.0690,229.8094,32.0340,68.0300,0.91137040 1297,48.8776,212.0767,25.3488,46.8637,0.90849686 1297,440.6368,224.3703,20.7092,43.8065,0.80803859 1297,498.7281,219.4717,20.0706,50.0417,0.76351297 1297,490.9030,219.4156,17.9573,47.7535,0.62179160 1297,514.9519,218.6247,19.4462,44.9297,0.50659537 1297,456.2294,218.1074,20.3739,42.8471,0.46471903 1297,408.4412,220.9890,20.7107,44.1407,0.25983214 1297,426.3139,221.9477,19.3719,44.6853,0.20600581 1297,466.1204,214.8498,21.5447,50.4638,0.13096914 1297,503.7260,212.3607,22.6793,47.9034,0.12101799 1297,37.9563,203.9281,77.5991,55.2475,0.11298907 1297,416.5904,216.0774,19.4365,46.4287,0.11132883 1298,474.4354,216.9496,19.6413,49.1752,0.97691762 1298,54.3126,213.2012,24.6023,47.5840,0.97454762 1298,591.7664,230.6983,29.6775,64.0887,0.84383988 1298,441.0169,224.2939,20.6931,43.2394,0.48421177 1298,497.3758,219.0281,20.7826,48.8883,0.45514673 1298,513.4783,217.1275,20.4187,43.1992,0.44977126 1298,466.7834,211.2519,20.3493,53.4680,0.40062931 1298,491.1529,216.7897,18.6791,47.5599,0.38447732 1298,395.2360,219.6110,71.0286,53.4413,0.29478559 1298,448.1957,217.8806,20.0156,43.9119,0.29210937 1298,458.8799,215.0963,17.7251,44.1745,0.28702772 1298,402.8142,222.0385,29.1344,44.0857,0.27466255 1298,504.4854,211.7611,23.1371,46.6944,0.10821275 1298,597.3330,211.1783,35.6844,92.8631,0.10299882 1298,426.4046,223.9301,21.6650,43.1408,0.10292071 1299,575.9131,234.8529,28.1271,66.6345,0.99090147 1299,59.3571,214.8934,22.5900,43.8359,0.76552135 1299,475.6520,221.0298,17.9926,47.6139,0.69270968 1299,440.5904,223.4885,20.2258,43.4724,0.68641567 1299,490.5664,220.4027,17.3640,46.4396,0.58589947 1299,409.5892,217.0867,19.7307,44.3566,0.54077500 1299,513.1739,215.8688,20.4247,46.0983,0.51326096 1299,504.8286,220.0143,20.1006,46.5285,0.50380641 1299,497.3319,219.2226,18.6996,47.2202,0.44242990 1299,426.6830,219.0503,19.5838,48.4096,0.43253884 1299,391.3226,218.7962,20.1745,49.5891,0.40932387 1299,28.0895,203.2111,22.3262,41.7220,0.21391740 1299,468.3575,218.7234,18.2838,48.8389,0.20045026 1299,482.5578,218.4931,18.1351,46.8753,0.17286983 1299,457.8608,216.4622,17.9779,42.5147,0.15658218 1299,448.1878,218.4773,19.7186,41.5620,0.14292713 1299,78.4746,208.1857,18.9014,45.4990,0.10597117 1300,520.4281,224.8086,39.7923,82.7249,0.99280071 1300,73.7601,213.6721,21.6473,50.1845,0.99035537 1300,472.3450,220.0364,20.4722,47.8848,0.95965302 1300,582.2227,221.1508,28.0711,77.3596,0.73915231 1300,605.1017,222.5236,30.6483,87.6400,0.70998311 1300,435.5825,222.4017,21.2611,42.9117,0.67061174 1300,359.7412,223.1948,19.1590,41.7626,0.48334688 1300,395.8471,218.1373,18.9497,42.2078,0.35592079 1300,504.6843,217.5862,20.5355,48.6078,0.33254185 1300,489.7267,221.0965,18.6266,46.8947,0.28291890 1300,378.4416,215.0238,17.1260,41.6936,0.14085403 1300,8.4898,194.4419,23.7651,54.2717,0.11255126 1301,526.4452,222.5690,38.3092,101.6472,0.98535043 1301,469.3475,226.9490,26.7978,75.4368,0.95564663 1301,480.5090,226.1036,23.8396,70.6176,0.92218280 1301,328.1757,218.4122,23.1902,45.7078,0.87085521 1301,408.6742,222.5819,22.0229,42.8257,0.65964043 1301,360.1761,218.7547,21.0123,44.4256,0.64735800 1301,508.0414,212.5670,19.6490,46.9702,0.41546944 1301,489.4189,219.9786,23.3963,62.7577,0.33045170 1301,345.8601,218.6659,19.1225,45.1024,0.24361932 1301,497.5607,214.3664,19.8380,48.0912,0.24353874 1301,464.6818,220.6568,24.0590,58.2861,0.22880852 1301,369.8140,217.7244,20.4040,44.3114,0.20928729 1301,101.7744,215.3530,20.4344,50.4482,0.17536141 1301,43.6996,195.2162,22.2376,43.7613,0.14811440 1301,58.0433,203.7412,18.4210,39.8577,0.10002285 1302,456.7488,216.9242,37.7322,116.5199,0.99249530 1302,295.5169,213.7864,22.2073,50.2037,0.98862916 1302,132.0930,210.8612,24.9549,57.2484,0.98698986 1302,591.2566,223.5245,30.4482,70.0597,0.98391902 1302,421.8988,223.3273,28.6501,78.4441,0.95231593 1302,337.9390,218.3395,18.6349,44.8188,0.85004103 1302,320.1529,216.5766,20.0135,44.9326,0.83213401 1302,476.8613,224.9593,31.0971,80.2032,0.78551650 1302,513.6686,215.9546,21.6676,46.2252,0.63873279 1302,384.0461,222.4558,22.3494,44.8995,0.57144845 1302,437.9761,221.5225,24.7794,73.7350,0.42579913 1302,407.7512,222.8250,28.3412,73.6824,0.42016369 1302,606.7466,229.7675,25.9926,60.6935,0.29847726 1302,504.8434,216.7495,22.0216,49.0783,0.28730240 1302,481.9813,215.6437,21.0101,60.1618,0.25660563 1302,559.1707,312.6796,76.0307,246.9541,0.23645085 1302,46.6929,197.3314,24.1734,44.5186,0.17892423 1302,446.9385,217.5143,33.1673,95.8165,0.15068805 1302,308.8191,217.7513,23.9262,47.1107,0.13488601 1302,487.9340,222.7594,25.7134,41.2262,0.12003379 1302,398.6737,219.7069,19.2290,51.5051,0.10248046 1302,593.3801,219.1093,38.9660,122.8653,0.10003002 1303,163.5746,215.6586,22.2289,50.9917,0.99869776 1303,315.8077,281.4659,102.9145,268.2480,0.99638641 1303,564.7402,228.3386,33.0064,77.4784,0.98838800 1303,467.6057,220.3293,21.7446,50.4424,0.98733842 1303,305.2090,216.6487,24.0537,44.3150,0.98501921 1303,391.6423,219.8510,35.6466,104.4116,0.98228139 1303,282.0875,211.8437,21.2807,51.1549,0.97692484 1303,511.8956,219.2757,20.3809,51.2254,0.97297442 1303,590.7594,227.9576,24.5905,53.5678,0.96674830 1303,399.4492,243.0700,104.0096,291.8080,0.92874056 1303,495.5603,222.7331,20.6850,46.8577,0.88822627 1303,264.9639,215.0430,21.1249,47.9149,0.84402561 1303,551.5435,220.9082,30.2583,91.7541,0.83951521 1303,366.5751,220.6371,26.5393,75.2696,0.76443493 1303,90.4490,224.6551,30.2263,61.7313,0.39416516 1303,49.0868,202.8093,21.9258,45.6255,0.35990179 1303,478.2352,221.8029,20.8925,48.8098,0.29038444 1303,382.4667,224.5746,22.3428,75.4583,0.26735225 1303,420.8596,226.8144,28.9318,74.3638,0.24163108 1303,365.5703,258.8774,93.7656,272.6278,0.22669029 1303,354.0422,218.4048,24.2657,63.5284,0.19366795 1303,408.9830,214.6684,35.1762,108.9602,0.10126393 1304,386.7786,217.6432,29.2861,77.7646,0.99944031 1304,517.7906,223.6288,33.8255,90.0792,0.99885589 1304,342.4312,218.2247,34.7453,98.3400,0.99837941 1304,457.0057,216.3386,20.6528,49.2971,0.99777400 1304,194.4805,214.2998,23.1233,49.8319,0.99036765 1304,578.6281,223.8411,33.1216,69.4289,0.98731595 1304,239.8893,219.1037,26.0614,52.2314,0.98651254 1304,319.9302,222.6311,23.8000,69.7606,0.97394854 1304,273.1218,217.0274,22.3217,45.5931,0.93717921 1304,50.0539,254.1102,122.2972,323.8053,0.91684580 1304,506.7175,226.2757,27.4219,89.5480,0.67769611 1304,614.7510,217.4848,22.1242,60.0149,0.48217481 1304,360.4180,218.9493,26.3290,102.0220,0.21518224 1304,50.7000,203.4260,47.7825,49.7161,0.16031289 1304,502.6283,218.9983,24.9189,56.5770,0.15301740 1304,-20.6973,228.9900,48.1455,100.9296,0.12637058 1304,257.8675,220.0975,22.9135,44.0836,0.11412975 1305,520.2271,219.9052,36.1888,87.8801,0.99865025 1305,64.6573,210.8876,52.1533,107.3103,0.99842560 1305,290.9867,214.9370,37.2846,99.9397,0.99630988 1305,345.4016,220.0821,28.4556,74.0383,0.99412525 1305,601.6060,212.2512,24.1205,65.3195,0.99341166 1305,580.1217,219.7850,22.2638,56.2074,0.98487675 1305,238.0072,216.7998,20.0614,47.5814,0.98050022 1305,465.6750,223.8319,28.9991,85.7665,0.96290004 1305,439.2276,240.2100,23.9565,67.4586,0.94991028 1305,31.2081,215.5654,26.3435,51.5709,0.92862827 1305,274.9634,213.9775,26.1917,78.1282,0.86824131 1305,479.1590,228.1799,27.0893,76.7475,0.69838393 1305,199.0029,216.4097,22.6722,46.5950,0.65954864 1305,445.3745,216.5973,30.1762,93.4360,0.47319525 1305,13.9455,218.8979,24.5016,52.4634,0.32514989 1305,505.8329,225.6697,34.2933,88.6483,0.22203046 1305,217.1290,215.9615,22.6928,50.2310,0.19990078 1305,193.1513,212.2323,50.6189,58.2883,0.19520104 1305,491.7926,220.5024,27.6112,82.1425,0.19367576 1305,456.5398,233.8360,26.8105,74.2639,0.17566890 1305,436.9618,218.6510,27.6560,61.3483,0.17200914 1305,503.4698,207.9855,21.8998,57.7869,0.16901872 1305,433.2449,203.7823,68.9304,72.7584,0.16302066 1305,31.2213,198.2702,71.1217,50.7924,0.13978910 1306,305.5876,217.0229,29.6430,77.5172,0.99914956 1306,12.0862,220.9848,64.5629,136.6424,0.99802041 1306,165.0068,218.6722,38.6481,89.4802,0.99799871 1306,539.9502,225.2642,21.2986,47.6282,0.99776292 1306,255.2890,217.3754,33.7250,90.2537,0.99715054 1306,469.4781,219.2815,34.4553,89.5574,0.99335098 1306,392.2049,244.8845,22.1826,56.7223,0.99221939 1306,595.2691,215.3945,22.6960,60.5562,0.98790216 1306,577.6879,220.4383,19.1298,53.2502,0.98167801 1306,422.5106,224.0848,27.0999,81.7883,0.97558784 1306,56.1824,210.6528,26.9187,55.8499,0.97121274 1306,236.3926,222.7876,24.9891,64.9052,0.95877028 1306,443.6114,212.3873,33.8594,96.8342,0.94594073 1306,518.2544,225.4485,21.8602,50.3742,0.91269612 1306,271.6224,214.7338,28.1771,89.3178,0.63159734 1306,328.7885,216.5919,21.7831,47.5133,0.56243330 1306,505.0929,216.2087,18.5680,44.3369,0.33520445 1306,408.9623,222.2404,28.3407,75.8276,0.27786550 1306,514.0360,217.1600,19.2315,47.0394,0.19167084 1306,582.7773,212.9437,24.7678,64.9445,0.17945576 1306,14.2280,196.9749,43.3599,119.1328,0.17259122 1306,528.5372,228.7079,24.5695,43.9816,0.15870136 1306,499.7403,210.7425,17.2983,41.5057,0.15721038 1306,33.2596,203.8463,25.5266,59.6575,0.13727333 1306,455.4253,213.7372,23.2578,61.5400,0.12912360 1306,606.0432,210.7724,23.3485,57.6134,0.12853315 1306,45.3156,263.2475,37.8852,92.4151,0.12699407 1306,397.9134,221.3846,29.7062,92.0391,0.11375684 1307,111.2412,218.2487,58.2362,139.9724,0.99952930 1307,271.0624,216.8128,26.4699,75.5078,0.99870348 1307,375.5167,213.1496,36.8954,92.1498,0.99864948 1307,214.5444,213.8028,32.7758,88.0965,0.99551320 1307,553.8629,224.0642,20.9843,49.5285,0.99507791 1307,528.1811,223.0606,22.3703,53.2463,0.99298811 1307,238.9491,213.1746,30.4695,93.6140,0.98884726 1307,418.2312,216.1393,35.7386,93.6704,0.98635626 1307,346.4951,249.1714,23.0534,49.9829,0.98171234 1307,303.6926,219.3338,21.0435,48.2031,0.97009295 1307,7.4522,209.2060,56.6642,183.2714,0.96242464 1307,591.1152,213.2174,21.8220,60.4848,0.93591273 1307,316.4922,219.6818,20.7172,50.3214,0.93554795 1307,80.4535,220.3687,21.9422,44.1615,0.86346316 1307,171.6178,220.8239,19.5361,41.2338,0.69796503 1307,405.5444,219.7610,26.7699,74.2919,0.45618999 1307,96.6069,218.0235,20.7966,46.6164,0.44881532 1307,467.4434,215.1625,18.9781,41.0353,0.43719256 1307,578.8355,218.0686,19.0208,54.0218,0.43713611 1307,336.8263,216.5911,22.3005,52.3584,0.41180879 1307,498.1294,211.1825,19.2371,41.8648,0.26965374 1307,506.0913,210.0759,19.0796,42.8076,0.26882502 1307,490.4103,212.3322,18.0952,39.6783,0.24598308 1307,482.6617,212.1014,17.7142,39.4171,0.24388447 1307,390.9596,211.6454,35.1645,96.8772,0.20078087 1307,570.2249,220.0682,18.5484,49.3548,0.18164450 1307,31.0446,197.2949,63.1740,58.9059,0.17979068 1307,79.4415,213.6987,59.5576,60.6484,0.15905239 1307,251.8211,219.0471,28.3064,83.9638,0.15314275 1307,513.6488,215.1138,20.8063,48.7570,0.11806378 1307,325.2337,217.7103,22.6611,45.4642,0.11601353 1308,537.8366,221.6538,24.5792,55.9926,0.99937201 1308,106.7740,223.1277,61.1753,151.1988,0.99802625 1308,566.4476,224.5023,21.6312,52.0517,0.99791998 1308,340.7644,218.7418,29.6254,84.3165,0.99755281 1308,235.7309,219.3728,26.0157,69.0033,0.99690437 1308,373.7255,219.8796,34.0434,82.9528,0.99661660 1308,296.7804,210.3674,33.3830,94.1026,0.99623233 1308,205.6281,228.8145,44.9400,119.3706,0.99243480 1308,182.5760,214.3000,29.6375,78.5225,0.98749447 1308,601.7123,216.7526,21.7241,57.2602,0.97480208 1308,275.1675,217.0440,21.7447,46.7718,0.84909850 1308,167.5226,220.7527,27.8541,61.6606,0.78545898 1308,359.0619,219.9922,26.5406,70.1779,0.76548797 1308,584.0388,217.3959,20.1703,53.0385,0.60494483 1308,468.1710,217.5993,19.6105,39.4880,0.46896905 1308,498.5394,214.8335,18.6129,41.3245,0.33171204 1308,481.9154,216.2075,18.2941,41.2617,0.27524120 1308,36.1802,206.0438,33.9129,43.3598,0.26047778 1308,489.6523,215.9979,18.4066,41.0922,0.24623276 1308,202.1978,216.0254,30.8644,86.9655,0.24607208 1308,551.7310,224.7305,23.0853,50.4083,0.20237255 1308,220.0167,223.7571,36.4495,88.3284,0.17860800 1308,511.6140,208.8645,19.3693,44.0404,0.16453290 1308,98.1888,219.0312,20.6120,47.1251,0.16253400 1308,576.6717,222.1647,19.9899,53.1101,0.16006860 1308,284.5177,219.2094,27.7938,58.2787,0.15453097 1308,617.4915,213.8338,19.1299,60.5000,0.13399142 1308,13.7599,202.1751,60.2347,58.8859,0.13166332 1308,458.6408,209.1062,72.2348,52.2510,0.10680853 1309,553.5700,224.1062,22.3666,52.9344,0.99922979 1309,368.6691,216.8065,36.6182,84.1615,0.99901676 1309,220.3827,217.6614,53.5593,147.0707,0.99576545 1309,133.0587,220.3292,28.0778,56.8707,0.99567550 1309,334.5356,220.1272,28.4572,76.6235,0.99566519 1309,280.8730,224.9280,42.0103,108.5249,0.98990214 1309,583.5033,220.8994,22.4182,57.8131,0.98943770 1309,404.9684,221.7800,21.1814,49.6729,0.98795128 1309,150.4882,218.4179,31.6177,74.5123,0.98430759 1309,197.2795,217.0901,23.9643,67.3209,0.98202974 1309,608.3864,215.1403,23.0511,54.7804,0.91287148 1309,471.5613,217.9794,20.0166,43.0591,0.84343231 1309,73.2933,218.4469,20.0796,46.4580,0.83243740 1309,504.7621,213.6385,20.2428,44.3854,0.78727221 1309,519.5790,212.5558,21.0641,48.8223,0.69716692 1309,63.3562,215.2420,22.5962,51.0613,0.65919614 1309,323.8046,217.1700,24.3246,71.7006,0.63475990 1309,568.7780,224.4308,20.8881,52.3448,0.54185426 1309,592.5987,219.7482,23.0718,51.8325,0.49294341 1309,166.6023,218.8743,29.3906,78.0949,0.26844767 1309,22.2959,202.0070,70.1824,56.8244,0.20641208 1309,480.1657,216.0345,19.1597,43.0367,0.16541237 1309,249.8184,222.4338,23.4269,43.2080,0.16525024 1309,24.3781,204.3309,33.4225,46.7075,0.12928325 1309,489.8480,214.2653,17.3536,42.0280,0.10738574 1309,48.5226,210.8611,23.8310,49.7208,0.10601526 1309,344.7542,212.6831,31.1682,81.1204,0.10326534 1309,490.3580,211.6979,65.3763,57.7544,0.10239521 1310,251.6545,217.8665,32.1212,78.2042,0.99948895 1310,427.3267,213.4962,31.8670,83.8750,0.99928117 1310,16.0707,214.5961,39.5177,94.2916,0.99688804 1310,298.7798,215.1642,54.9509,148.1888,0.99587685 1310,562.1754,223.3870,23.1319,59.3094,0.99097037 1310,126.1707,218.2950,27.9848,74.5195,0.98895752 1310,106.2596,221.2382,24.1138,53.2258,0.98587888 1310,344.1763,215.4612,39.0271,118.7286,0.97517085 1310,192.9025,238.4055,22.4206,55.7070,0.96856326 1310,530.4850,214.7271,23.2423,46.5711,0.94519103 1310,482.8902,220.5640,19.6596,48.3429,0.94472945 1310,160.9642,219.8436,27.3945,66.3038,0.93335056 1310,579.9299,225.0593,30.2067,77.6908,0.68428171 1310,174.7968,218.2601,25.8072,55.6971,0.60768080 1310,600.1536,225.8724,22.3923,55.9165,0.54856253 1310,322.3975,218.6836,50.5051,147.1214,0.52482337 1310,226.5704,217.0536,20.9825,43.6429,0.48527932 1310,476.0327,217.3124,18.8882,45.7492,0.47410467 1310,286.7905,220.0067,30.1244,85.6715,0.38553578 1310,66.6136,212.9568,18.0176,41.1323,0.34609330 1310,142.3027,224.3284,25.3541,62.5286,0.26476055 1310,499.5840,213.2797,17.3660,44.9696,0.24746808 1310,38.6618,214.9019,26.8325,71.0934,0.23418136 1310,81.5690,211.8101,19.1587,48.4632,0.17193697 1310,74.2251,212.6501,19.0475,45.5153,0.16059873 1310,465.9034,215.1001,18.2144,45.3801,0.10912575 1311,584.8523,226.7673,25.3402,62.9194,0.99958801 1311,211.4410,217.0554,34.5971,79.4563,0.99931121 1311,381.5940,224.2439,56.1679,122.7936,0.99927694 1311,455.2417,218.4392,28.9056,73.1640,0.99911332 1311,255.7734,215.1219,29.1478,75.7051,0.99596941 1311,480.6608,222.7361,44.6890,113.9989,0.99245113 1311,84.5039,215.1198,34.0302,92.3262,0.99123716 1311,157.6381,237.4112,25.4237,51.4929,0.99036944 1311,129.2977,220.0927,25.1627,58.5112,0.98427463 1311,554.4790,214.9792,19.3448,54.7567,0.97924340 1311,309.9547,211.6751,26.5596,64.3057,0.97233921 1311,286.3046,214.3703,25.2373,71.0098,0.95847982 1311,192.6582,214.0344,22.3870,51.9986,0.87002397 1311,109.4340,225.2661,26.3100,58.8667,0.83657753 1311,567.8268,219.3752,20.0870,55.5913,0.65073919 1311,33.4028,216.4700,20.4308,44.0694,0.53480947 1311,270.7880,215.8635,26.8243,71.1411,0.44306207 1311,118.2619,217.7591,26.3757,61.1274,0.40172136 1311,41.6106,214.1340,19.0156,44.8826,0.27994850 1311,20.3694,213.5372,21.7204,48.6663,0.22594599 1311,495.6999,220.2095,25.3939,64.1729,0.21166795 1311,379.1165,219.2914,35.7452,96.7417,0.16324955 1311,477.8294,223.3301,27.1648,75.4464,0.15606502 1311,97.9373,222.1216,31.6177,77.1558,0.14403442 1312,222.8265,216.0887,29.4373,76.7196,0.99941492 1312,183.3060,217.8155,30.3560,77.7607,0.99921072 1312,137.3005,217.8395,35.6124,82.5571,0.99888873 1312,521.3844,214.5289,23.5172,59.3017,0.99846071 1312,393.5558,222.1347,41.0865,114.4552,0.99833453 1312,543.5887,226.9447,24.4673,65.1897,0.99818361 1312,52.1889,221.0264,46.4031,123.5168,0.99805307 1312,449.8013,220.1854,49.4890,128.3497,0.99605197 1312,602.8044,223.8857,23.4332,56.1508,0.99062777 1312,268.1843,215.6940,27.5321,65.0567,0.98716092 1312,106.2449,217.7291,23.8580,61.9215,0.97840303 1312,503.3528,219.9524,19.6284,51.6621,0.95229781 1312,358.1867,219.4932,20.9539,47.7113,0.91286528 1312,234.2872,214.3405,28.1282,73.1455,0.68536609 1312,254.9766,222.2158,24.9490,57.1934,0.65145320 1312,20.5026,215.6115,26.9318,58.4432,0.60660154 1312,245.7375,216.1755,25.2859,66.6877,0.58666587 1312,578.7160,217.5249,18.3552,51.2050,0.47386187 1312,435.3893,220.0777,32.9572,121.0515,0.41420272 1312,167.3562,214.0730,23.4821,52.6405,0.37537587 1312,79.1492,214.8857,26.2118,65.3510,0.29380107 1312,568.2216,219.4200,19.8767,49.8994,0.27039093 1312,6.5143,208.2948,53.1139,54.5648,0.23916531 1312,67.5296,213.2539,42.1713,102.0925,0.16238707 1312,447.0291,280.0427,23.2955,57.9085,0.10630962 1312,466.2359,216.3898,30.2437,89.0178,0.10053919 1313,319.3188,218.6980,40.0347,105.5964,0.99846876 1313,147.2488,223.0289,41.5549,118.0748,0.99749678 1313,241.5492,216.3344,22.9086,64.7346,0.99128747 1313,282.4310,214.8069,27.8390,57.1786,0.98771775 1313,85.8239,221.1211,21.7819,56.9815,0.96211112 1313,43.6188,214.6297,28.1723,66.6478,0.95760643 1313,194.7706,217.1559,28.6924,77.3682,0.94076037 1313,233.6742,220.3804,20.6424,59.2609,0.91799390 1313,501.7405,221.4655,43.0906,116.6280,0.84814978 1313,408.2442,219.4948,20.4150,50.3251,0.81810498 1313,490.9982,229.5376,34.8329,99.9415,0.81793761 1313,475.3418,219.2051,33.3289,103.0071,0.63407147 1313,96.6092,228.4435,22.5476,52.3637,0.62385285 1313,561.7655,225.9910,20.8914,49.9317,0.60148072 1313,63.1994,216.8549,23.2916,60.1456,0.51832676 1313,473.1783,217.1611,22.9305,65.5650,0.49338990 1313,205.8317,224.9175,24.0763,62.6280,0.48874211 1313,215.8980,224.3972,20.1620,56.8752,0.35528600 1313,74.3909,209.0071,24.8035,64.4995,0.32531735 1313,224.6628,224.0883,22.1865,58.2989,0.31948984 1313,29.2065,213.4184,24.7865,56.9041,0.30796069 1313,587.4202,230.6300,27.2254,71.3263,0.26063195 1313,554.7292,227.5713,19.9849,43.0119,0.20590121 1313,497.4540,270.9747,22.4781,65.4709,0.14937147 1313,549.1571,217.4604,66.1278,67.3992,0.13522780 1313,189.9468,214.7894,22.9682,62.0337,0.12912825 1313,457.4855,212.9999,17.4892,36.8579,0.12839796 1313,137.1302,217.4456,20.9194,49.2170,0.12783191 1313,574.7157,226.1702,20.7798,49.9515,0.12214057 1313,495.9225,219.2908,23.9626,68.0035,0.12042513 1314,316.6142,216.2931,25.8200,55.9505,0.99931455 1314,123.6900,220.3101,29.4598,66.3419,0.99912006 1314,163.7971,213.9645,31.0171,72.0010,0.99827015 1314,527.8358,216.8218,36.6853,105.7842,0.99705148 1314,271.7830,220.5980,34.2226,94.8769,0.99407136 1314,447.7348,224.2017,24.6949,65.2216,0.99284852 1314,208.1221,218.8003,21.8019,57.9872,0.97787559 1314,556.9815,218.0620,38.9172,107.1505,0.96902788 1314,0.1563,221.2875,50.4249,157.9838,0.95273274 1314,245.0458,222.5302,36.8399,116.6508,0.94991410 1314,216.6878,220.4186,22.2974,57.9635,0.84879142 1314,490.0347,241.7387,40.4557,120.6946,0.83802956 1314,462.4784,219.6725,24.9005,69.6797,0.81312156 1314,37.7324,213.3080,25.4530,60.7056,0.69383937 1314,21.4736,206.8550,36.2818,80.0922,0.65312636 1314,230.0349,218.3567,25.3978,65.7766,0.62865651 1314,177.0328,215.6393,28.4506,67.9064,0.56702983 1314,492.7589,218.2581,29.4019,97.0460,0.53691465 1314,69.2998,220.9643,26.3811,58.2905,0.48723832 1314,239.4495,216.7139,27.6153,80.7925,0.46822932 1314,188.5192,221.0461,25.1299,56.1249,0.38352510 1314,481.0499,210.6098,19.0090,49.4130,0.37598625 1314,508.1057,223.0108,28.3580,88.0015,0.37507123 1314,50.0042,206.4821,50.8520,79.6633,0.27440557 1314,472.4961,213.8586,20.6628,51.7714,0.26040930 1314,617.7932,224.4452,21.7272,53.0540,0.19420125 1314,153.3351,219.9488,26.8621,63.2771,0.18077579 1314,485.9898,216.4175,24.1393,61.1099,0.16969511 1314,518.7904,221.9334,29.9947,91.7972,0.15440616 1314,53.7402,214.6015,26.3116,61.1827,0.10928126 1314,260.1991,229.2570,32.7888,96.5208,0.10825650 1315,260.1346,216.4884,26.7764,71.1780,0.99875522 1315,145.0242,236.0273,71.9138,131.0893,0.99805200 1315,223.2600,220.8301,30.8275,80.4165,0.99737448 1315,100.1317,221.0508,24.8105,65.0612,0.99524343 1315,397.0380,227.4570,52.0706,134.6908,0.99510723 1315,200.8927,220.7849,31.9049,86.6273,0.99090469 1315,567.0659,226.4133,28.0427,88.4241,0.98969567 1315,339.6193,223.1312,43.6936,113.3072,0.98357427 1315,132.2497,219.3788,26.7970,65.3810,0.97703385 1315,542.9742,220.9168,29.8887,81.7604,0.97521675 1315,494.9232,217.3225,19.8627,55.3112,0.96526080 1315,46.2285,212.8340,26.4289,72.4142,0.95648205 1315,472.8860,213.9519,18.7938,49.4207,0.92890191 1315,529.9921,218.0027,18.6050,57.1855,0.92170793 1315,12.2707,213.6449,33.8291,65.8485,0.92003524 1315,514.6804,219.1013,16.5572,50.9495,0.88634276 1315,82.8133,211.4771,21.5408,53.5673,0.83730876 1315,26.7869,218.5447,32.4201,60.2535,0.70680499 1315,152.7211,215.9261,21.6907,62.4787,0.64636934 1315,74.4627,208.7849,19.9979,52.0441,0.47968084 1315,483.1970,215.7649,18.2468,50.5967,0.33389148 1315,19.2558,212.4506,70.1282,65.6561,0.29193693 1315,583.5833,212.1512,30.4694,88.6204,0.23781192 1315,424.1910,270.9969,33.4214,91.8625,0.21848550 1315,65.4133,210.9669,19.4771,51.0143,0.20299171 1315,90.7754,217.0425,25.3274,62.0784,0.18772051 1315,117.8111,222.4134,23.6836,56.3683,0.17377236 1315,167.4626,216.6431,23.0944,59.7386,0.16380629 1315,187.0465,219.7910,22.3472,64.0092,0.15112370 1315,175.6033,220.0353,23.2020,65.6789,0.15010872 1315,505.6299,219.1282,19.8984,52.9762,0.14295672 1315,155.4410,224.4008,29.6894,71.3473,0.12201195 1315,538.1245,220.0222,22.0480,66.8546,0.11406838 1316,78.2980,216.4589,27.6931,69.8547,0.99825859 1316,178.9932,221.9328,29.3890,74.0829,0.99786019 1316,324.0349,235.0643,49.9846,129.6190,0.99690253 1316,538.4085,224.7485,20.8122,57.6634,0.99496365 1316,435.3536,232.0818,47.2052,112.5872,0.99469900 1316,103.3410,220.8490,26.8395,61.8058,0.99169403 1316,557.1178,218.5735,23.3653,62.8543,0.99089420 1316,297.7239,221.3045,38.8523,110.6289,0.98446274 1316,152.7909,217.1830,33.5826,81.6171,0.98433757 1316,507.4599,216.1293,20.2239,58.3250,0.97604066 1316,32.9565,218.0583,26.3230,60.7044,0.95866728 1316,490.3790,217.8846,18.5339,52.5244,0.94858539 1316,473.2548,218.1747,18.1747,47.0040,0.92517996 1316,355.3879,229.8024,23.5674,60.7895,0.88219202 1316,382.0559,218.9881,23.8827,57.7879,0.86656189 1316,522.4426,218.7534,20.4675,55.5554,0.80449033 1316,304.9102,237.3011,46.8607,126.7247,0.78203595 1316,498.6127,216.1622,19.1640,55.1854,0.72839105 1316,140.8888,220.2433,30.3057,66.5406,0.67666054 1316,483.6543,215.4649,17.3917,51.2110,0.46723944 1316,585.3044,221.0240,37.7883,86.6366,0.43391743 1316,529.9456,223.0865,21.0201,54.2849,0.38983089 1316,113.7846,215.4685,31.1070,67.8433,0.34619045 1316,423.2331,263.3630,73.5229,132.5002,0.33912623 1316,602.1400,218.4320,30.0381,79.9758,0.28320590 1316,45.5001,218.3596,22.1214,54.5978,0.26108396 1316,23.2108,220.6216,25.7870,59.7880,0.25425053 1316,368.4753,224.1441,23.8132,59.8769,0.23355007 1316,344.7572,227.6894,25.2650,56.8667,0.21984717 1316,57.2908,214.0668,22.5617,51.6716,0.20030865 1316,10.4824,217.2933,25.2257,57.5133,0.11206542 1317,306.0168,223.0559,25.7360,62.1236,0.99897164 1317,569.4460,215.9026,24.2075,72.4154,0.99874258 1317,68.8889,212.0336,78.1580,153.4491,0.99831736 1317,153.7699,220.5021,32.2050,74.2384,0.99815333 1317,466.3690,235.3203,56.3120,134.4114,0.99646783 1317,531.6597,236.5328,42.7354,96.0823,0.99420190 1317,122.0460,220.1998,29.0926,69.7382,0.99102449 1317,203.1763,224.0354,49.1481,133.6204,0.98977554 1317,44.5053,220.2887,28.6534,62.0624,0.98870927 1317,411.1758,221.2497,20.8163,49.1292,0.96207631 1317,433.7220,215.0042,23.3987,58.6240,0.95098221 1317,515.9982,222.2281,18.5617,45.0741,0.92689174 1317,22.4684,218.7689,26.1914,59.3214,0.90653145 1317,329.2504,220.5955,23.5783,64.2784,0.87420595 1317,472.8657,217.1263,19.0625,50.0624,0.79599774 1317,80.2942,214.6351,27.3926,70.8484,0.75976729 1317,597.7245,218.4496,29.6535,74.3820,0.67252290 1317,482.8349,216.7371,19.4548,52.6062,0.66829467 1317,550.4409,222.3975,23.3913,61.6449,0.53114069 1317,135.5299,220.2525,27.2325,60.1477,0.49140388 1317,508.6085,219.9706,19.1246,49.5253,0.40139267 1317,101.2748,211.1414,29.8570,77.9939,0.29864463 1317,7.6259,223.9781,24.8202,52.3296,0.25127128 1317,499.9559,215.5982,17.2892,47.7866,0.24723846 1317,591.1035,219.6556,24.8312,60.4607,0.19089150 1317,61.2616,212.6441,24.1979,64.9941,0.14818557 1317,84.8356,215.0079,41.0163,103.6931,0.12878455 1317,31.5341,222.0873,29.5357,59.9088,0.10833417 1318,560.3018,225.3807,23.5989,68.0084,0.99956524 1318,198.9494,215.0213,71.5123,154.7567,0.99800944 1318,357.5914,219.0234,25.0057,56.9083,0.99005365 1318,582.8834,215.5038,25.3754,76.1320,0.98911095 1318,377.6928,215.7835,22.6421,56.9358,0.98754454 1318,268.0144,226.6637,26.1829,57.4672,0.98734504 1318,18.7127,216.6741,29.5329,68.3626,0.98212838 1318,434.6883,215.9672,24.2601,56.4464,0.98009580 1318,110.6944,222.0344,27.1001,66.5256,0.96470511 1318,144.0722,220.0008,28.4347,78.2148,0.92962128 1318,71.3379,214.3966,28.1627,77.9669,0.84956217 1318,474.0817,221.6191,20.1366,48.7627,0.82474387 1318,508.5041,217.9162,19.0052,49.3335,0.82209635 1318,121.1375,221.5675,55.8509,136.0817,0.79750293 1318,61.1338,214.8016,24.8704,75.5902,0.66007566 1318,499.4011,216.6985,18.9130,49.1673,0.64865208 1318,490.2885,217.7633,19.2091,48.8220,0.63192892 1318,97.6861,226.0893,21.6001,61.1261,0.61412901 1318,287.7809,225.1630,23.2284,58.3035,0.59341073 1318,481.2307,218.2271,19.8187,46.8998,0.54399705 1318,120.7209,217.1063,35.6820,89.9545,0.51116943 1318,604.6950,227.9391,31.7329,60.7980,0.35447168 1318,30.8013,213.9932,26.6009,64.1636,0.34928772 1318,88.7826,226.8799,22.3335,63.2529,0.31534809 1318,543.3118,217.9453,21.3184,50.0111,0.26098329 1318,3.4182,219.5530,21.6634,53.9749,0.20266274 1319,129.1381,221.0560,24.7435,64.2211,0.99906504 1319,339.4967,229.0988,70.9425,144.1962,0.99868464 1319,578.4812,223.8825,23.0238,71.2173,0.99745297 1319,235.4559,228.0841,22.4945,50.2747,0.99695671 1319,597.7748,223.7220,26.0222,61.5205,0.99218214 1319,285.4864,214.9630,25.0158,53.0674,0.99152523 1319,11.4552,216.2055,53.9963,146.0773,0.98653400 1319,303.3808,212.6012,25.8213,64.1541,0.98139596 1319,101.9452,217.5073,24.0951,59.6917,0.98018336 1319,378.3922,214.4129,22.4164,60.4625,0.92797887 1319,469.3602,218.5602,19.7957,53.1008,0.92095959 1319,56.1418,220.6479,24.3894,64.8501,0.82356930 1319,522.3486,214.3886,21.1912,47.3321,0.66498458 1319,488.6343,216.6097,19.4013,51.7390,0.62470341 1319,253.1860,216.6604,22.9988,67.5037,0.48546788 1319,508.1306,214.2012,17.3225,47.7071,0.47468629 1319,497.4375,217.3439,18.2645,48.7865,0.37656170 1319,81.3704,223.6322,21.8079,54.3437,0.30469137 1319,43.4385,217.1278,28.9233,84.8163,0.19635923 1319,70.4186,223.3098,22.0304,57.3588,0.18973804 1319,30.7163,235.1301,48.2465,113.0148,0.18471073 1319,89.6067,217.2348,20.0749,56.1326,0.10289989 1320,241.0155,216.3162,25.3601,51.3734,0.99903530 1320,106.1443,219.5511,25.4709,60.6775,0.99852633 1320,394.6834,217.9752,20.3455,55.2414,0.99836749 1320,210.4221,223.8327,23.6407,52.2614,0.99710464 1320,465.2146,223.7267,71.2542,155.7607,0.99694586 1320,31.7043,216.3584,21.5669,59.4831,0.97781622 1320,81.6886,220.2884,22.2063,63.1964,0.87479043 1320,220.7299,220.4871,26.0193,56.2631,0.87331522 1320,47.1351,223.2510,20.8028,52.2610,0.77771437 1320,599.5568,231.8601,24.3413,52.6684,0.74427783 1320,503.8955,214.4971,25.3177,49.1539,0.71722382 1320,71.9935,218.0110,21.4309,54.8403,0.60502601 1320,473.4504,215.2851,18.7406,48.4621,0.60303807 1320,17.1259,220.5328,28.0404,66.6188,0.58475363 1320,486.6431,208.3373,36.7229,47.4499,0.44032761 1320,7.2500,226.4987,27.6516,70.7010,0.43075538 1320,96.6621,222.3264,24.2851,59.1945,0.27812207 1320,57.4248,215.6675,19.0563,54.1193,0.25471777 1320,480.9624,213.9722,19.8303,46.9695,0.22033334 1320,614.0414,227.6033,21.7134,58.1407,0.16064392 1320,-8.1773,231.9947,28.4514,74.4471,0.13574776 1320,477.4657,215.1443,46.5144,92.6629,0.13494129 1320,470.1180,211.7863,40.3204,55.4955,0.10913395 1321,166.4104,214.8918,23.8278,53.3303,0.99613762 1321,86.6808,215.3408,25.2205,62.9183,0.99354517 1321,526.5308,218.3872,21.2821,54.7746,0.99074781 1321,57.2907,218.3995,23.7426,60.9007,0.98295665 1321,13.8089,219.3649,27.8078,55.2905,0.92303479 1321,186.1885,220.9364,24.3129,53.9691,0.92129946 1321,600.3897,228.3190,26.6609,61.0538,0.75672948 1321,474.5797,218.2353,18.8568,50.0847,0.74778998 1321,508.5482,216.8039,18.6630,55.4299,0.68097705 1321,407.4798,220.9681,19.4514,50.9352,0.65435046 1321,467.0982,214.6920,17.6506,51.9175,0.61684811 1321,48.7380,216.4825,22.7879,59.7914,0.54449934 1321,499.7436,216.6856,17.5073,54.0730,0.51295638 1321,39.8233,219.9349,21.8173,58.7748,0.48241824 1321,29.1344,220.0726,23.5609,54.2887,0.47718313 1321,175.4752,217.4430,23.6406,53.1747,0.44001386 1321,71.6613,217.6582,21.8569,59.1586,0.32963157 1321,490.6031,218.6296,17.1765,51.2339,0.27483356 1322,553.7650,215.3412,20.6121,51.8384,0.99834031 1322,69.0955,213.6019,27.4997,64.3844,0.99810147 1322,41.9541,220.9026,22.5945,58.4567,0.95186359 1322,161.3531,222.9624,24.1679,52.5301,0.85569888 1322,608.3786,228.6049,26.6557,57.4636,0.79744816 1322,520.1097,221.9247,19.3990,50.4151,0.75381500 1322,417.5130,223.7845,20.4240,42.8390,0.68360519 1322,475.3099,218.5738,18.5159,48.8641,0.67966294 1322,9.8194,225.4368,23.1932,51.1928,0.63492775 1322,507.0747,219.5897,18.3465,49.7809,0.57164776 1322,469.2848,213.7117,17.6012,49.5868,0.49008644 1322,129.5522,222.9890,21.9163,47.3872,0.46320480 1322,483.4723,214.7447,17.0771,49.2899,0.44717053 1322,25.5085,219.7299,20.2023,51.3973,0.37273699 1322,55.7961,220.3170,22.2760,59.6709,0.33051345 1322,34.2216,222.7317,20.3397,55.6880,0.30380926 1322,146.3700,229.6038,23.8372,42.5605,0.28579244 1322,452.3664,210.9212,19.4328,40.4281,0.19808985 1322,129.7697,219.1305,57.0453,58.6163,0.11980553 1322,489.4601,208.6077,18.9182,48.9182,0.11935589 1322,2.4182,216.9825,79.0337,60.8290,0.11495374 1323,56.6651,210.9508,25.2431,64.4837,0.99341273 1323,31.5908,215.6187,24.5885,63.2141,0.95865154 1323,136.2187,220.9033,23.6747,52.6564,0.92471492 1323,528.7138,223.5006,20.1499,50.2701,0.88004243 1323,517.0074,219.3693,17.7874,50.4427,0.85171866 1323,97.6424,218.5490,20.6640,48.4890,0.83824623 1323,467.4611,213.3833,18.5336,50.4143,0.71135628 1323,581.4662,220.0733,20.8465,48.3730,0.69148016 1323,481.3044,213.4636,18.6131,49.8852,0.65477049 1323,428.8363,223.6220,17.8365,45.9386,0.51909196 1323,16.5092,220.3251,23.2875,55.6297,0.37568220 1323,451.4572,211.7526,17.4601,38.8827,0.24110502 1323,460.0149,209.7924,17.4680,42.8677,0.23263076 1323,497.6569,211.4492,17.9471,42.2264,0.22109076 1323,489.0129,211.2554,17.9557,49.5480,0.20038471 1323,395.2836,224.4189,20.7211,40.7780,0.15150516 1323,613.5332,222.8803,24.6229,54.0753,0.15087181 1323,411.0560,224.1907,18.2986,41.4794,0.10864508 1323,441.7517,216.7495,18.3566,41.9163,0.10757060 1323,388.3996,214.3296,95.1937,48.4950,0.10614893 1323,593.2703,217.6452,38.0411,54.1112,0.10111238 1324,527.8212,217.6772,22.0297,55.6717,0.99683523 1324,23.1596,217.4118,25.0388,55.0527,0.99045998 1324,434.7407,221.1397,22.1437,46.6809,0.99040228 1324,72.3448,209.2229,20.7735,55.6444,0.96473986 1324,536.4437,220.4059,22.7683,53.7057,0.92382747 1324,48.1370,212.3631,21.7479,59.9812,0.89442176 1324,608.8130,217.8718,22.9642,56.2875,0.81504911 1324,592.0682,219.7417,22.2083,46.7208,0.75049675 1324,112.5344,220.4927,24.1824,52.9463,0.58680522 1324,473.9621,215.9865,21.4125,44.8253,0.56617308 1324,600.0818,218.2947,22.8019,52.5275,0.54836315 1324,37.2971,219.6988,24.4249,52.1438,0.54793543 1324,485.8113,211.3795,19.0872,48.9530,0.29876098 1324,466.4867,212.2571,20.9451,41.6603,0.24637288 1324,458.5509,211.4851,19.9977,38.2160,0.21896785 1324,28.0099,200.1335,51.4009,80.1994,0.12356735 1325,542.8158,216.2796,22.7753,59.6773,0.99742198 1325,483.8166,213.1063,20.9406,48.4974,0.99145007 1325,304.8930,215.6948,20.4041,47.4962,0.97152525 1325,30.1473,215.9471,26.1716,56.0124,0.96060503 1325,79.9966,219.1868,21.4829,51.6841,0.86760771 1325,47.2255,214.5426,24.1817,52.5381,0.83819890 1325,571.8240,221.3863,19.3635,47.4697,0.79731274 1325,89.8524,218.7322,23.4073,49.3771,0.69844723 1325,15.3693,215.2388,25.2817,53.6052,0.68832707 1325,448.7025,215.7241,20.4703,46.6033,0.63876247 1325,322.0476,216.3363,20.6762,47.5301,0.51628226 1325,457.4826,210.9006,19.1543,49.4420,0.44786865 1325,561.5309,220.2928,19.6310,52.2722,0.36496589 1325,6.0605,218.3683,23.9868,53.5557,0.14481618 1325,5.2082,208.8074,72.9540,65.0919,0.13578996 1325,591.7902,213.5965,19.6674,49.8348,0.13225056 1325,465.4399,212.7115,18.3402,43.4611,0.11748198 1325,64.1562,219.4462,19.4562,45.7834,0.10639526 1326,551.1428,216.6950,26.9869,68.2725,0.99433136 1326,61.7506,219.5433,22.6006,48.7327,0.93982601 1326,284.1597,217.2840,26.1807,50.5287,0.92500955 1326,25.7884,217.9016,23.6977,51.2563,0.92311949 1326,252.1450,218.0648,22.2263,44.0386,0.86729980 1326,566.9930,221.8918,20.9934,57.7922,0.82706308 1326,491.1143,215.0380,19.4618,45.2749,0.78919739 1326,13.5416,217.0735,25.4358,52.9040,0.74397850 1326,77.0003,219.1852,20.3763,50.5146,0.62158293 1326,483.1138,216.4477,19.9797,44.1325,0.58902943 1326,450.9473,217.0934,18.2310,43.4414,0.50314569 1326,35.2342,218.4115,26.6942,48.4982,0.37009963 1326,464.6046,214.1656,18.4811,44.6460,0.30826235 1326,473.5651,213.8276,18.8375,43.9047,0.23206593 1326,18.6082,213.7607,72.8959,61.1619,0.14159635 1326,445.3342,209.8612,71.3482,52.8601,0.12807472 1326,2.6255,217.6856,21.4125,53.8930,0.11560294 1327,533.8015,216.0897,23.3016,52.7780,0.99863470 1327,565.9745,222.0534,22.2288,63.4516,0.99630749 1327,249.2296,217.1628,25.7262,43.8449,0.99364996 1327,497.2174,213.3502,19.2612,47.6512,0.88898313 1327,32.0778,220.0000,22.4781,51.6709,0.84552574 1327,597.7386,215.2964,21.0876,51.5957,0.70060599 1327,47.3908,220.9259,24.4403,49.5218,0.66391629 1327,466.5494,214.1537,20.0060,45.5104,0.65374821 1327,585.2896,221.3961,19.8441,63.1236,0.59412706 1327,14.9250,215.7483,22.8734,50.5506,0.52022409 1327,576.6258,219.8563,21.5787,70.6409,0.39261043 1327,483.0235,214.4548,17.7117,45.6124,0.23570372 1327,213.8713,216.9231,23.4128,44.6343,0.13391033 1327,53.7711,212.1473,26.9047,50.3019,0.10507935 1328,519.1090,213.0608,21.5835,48.8704,0.99637461 1328,579.9267,222.4949,25.5850,61.2173,0.99009538 1328,598.3337,220.1718,25.0116,62.9901,0.89745951 1328,468.2030,214.9852,19.3072,46.1871,0.87821853 1328,11.0550,214.6382,28.4076,59.2802,0.78952813 1328,27.3406,212.3075,25.5634,57.0250,0.78346407 1328,177.6288,223.2639,22.2343,40.8488,0.75077784 1328,498.3491,212.7900,18.1999,46.4683,0.42380863 1328,490.5589,214.8395,17.1609,44.1259,0.37022233 1328,482.6468,215.5748,18.3411,42.5641,0.31144518 1328,38.6240,211.1995,24.8401,58.5053,0.25738236 1328,9.9896,200.2607,55.6921,70.2324,0.17302886 1329,596.1335,222.1837,28.1792,62.5939,0.99613011 1329,506.2708,214.0386,21.2995,44.8761,0.84370035 1329,22.3632,213.7906,27.4995,51.4860,0.61253440 1329,488.0028,214.7445,19.6469,43.4218,0.53117746 1329,3.4706,205.2602,51.3776,66.0382,0.44127393 1329,474.7549,217.9163,18.4628,44.6976,0.39781481 1329,10.8152,214.9174,24.8630,52.4937,0.31994718 1329,41.1840,215.7339,20.9251,43.8492,0.23926048 1329,613.9547,224.0003,20.3712,61.6697,0.22448751 1330,484.4592,221.9072,18.2103,46.0710,0.80721724 1330,499.1339,217.2194,19.1198,50.0576,0.65500128 1330,42.0970,213.1400,23.6014,45.7879,0.58682704 1330,30.4635,209.5146,27.0691,51.7703,0.33785725 1330,596.6161,220.3613,22.0629,52.1311,0.26479048 1330,615.9628,226.4314,21.3515,60.0577,0.21671431 1330,9.2190,215.5638,25.3167,47.4827,0.16081551 1330,146.4857,228.1385,20.7266,40.7095,0.14333093 1330,108.9192,222.7908,23.2644,45.4674,0.10564870 1331,526.8888,220.8169,20.2420,49.1357,0.94866848 1331,511.3907,220.6760,21.2072,49.1518,0.62097818 1331,499.7899,219.8969,21.1493,40.7067,0.24804822 1331,24.1620,199.2602,65.8484,69.3724,0.23988602 1331,69.4709,220.9756,20.4739,50.7963,0.22667027 1331,543.0630,81.6671,35.9354,61.7446,0.15554678 1331,59.4300,219.6756,20.8202,43.5742,0.11480683 1332,567.4211,225.1944,23.1207,56.3709,0.99103904 1332,555.5528,226.9451,20.9069,54.8679,0.93302822 1332,521.4566,221.6034,21.6811,44.8557,0.89636207 1332,24.4815,213.0295,24.3265,63.7310,0.87084210 1332,14.0932,215.2247,24.7695,62.6096,0.72401601 1332,46.9859,209.7868,28.5329,67.8143,0.55177593 1332,426.2398,196.8033,22.8023,57.5853,0.22541064 1332,38.2564,214.5862,25.2214,52.5464,0.11975287 1333,583.3624,230.3682,23.3083,64.5475,0.99772137 1333,604.2567,221.3094,26.4226,71.4597,0.99649310 1333,531.4809,219.4365,19.3283,49.3978,0.98373717 1333,543.8731,217.9123,19.0194,51.2016,0.92962205 1333,515.1921,220.5017,18.2863,48.2531,0.77266729 1333,522.9013,218.8802,19.0242,49.2553,0.41008943 1333,592.4138,225.3406,24.5737,68.9818,0.19246951 1334,566.1499,209.7465,24.2236,62.3839,0.99578482 1334,544.6191,212.3161,21.1303,53.7358,0.97056860 1334,436.8024,209.8626,30.7961,71.5704,0.29144427 1334,535.4211,217.5168,20.1117,48.4915,0.22518785 1334,408.6722,196.9530,61.2770,71.7394,0.17236823 1335,563.9426,90.8621,19.7814,46.3312,0.27948511 1335,487.5341,209.0638,19.6454,45.6030,0.26638463 1335,461.7360,203.3037,60.9344,73.0298,0.25986820 1335,466.9989,210.0379,20.2425,38.7003,0.24749994 1335,479.5364,228.0765,37.4421,75.6398,0.20024735 1335,425.7936,210.2031,70.9175,47.3098,0.19700137 1335,453.2105,208.1260,27.9118,41.2390,0.12821376 1335,474.9021,205.6968,22.6303,47.9678,0.10786506 1336,547.6839,208.5755,22.7943,65.9761,0.99701518 1336,521.1806,211.9200,20.4339,48.2068,0.75821757 1336,528.6769,208.9174,21.3870,52.7756,0.74043238 1336,589.6626,217.9433,21.5672,53.3827,0.29909289 1336,507.9260,211.4441,17.8030,43.8182,0.21614400 1336,536.7580,208.6866,21.6859,56.5916,0.19290137 1337,603.2848,204.9304,28.7298,77.1384,0.98930478 1337,510.4773,204.4208,20.7041,50.8161,0.87688351 1337,48.5409,206.1900,25.5208,65.4025,0.33564612 1337,476.3644,197.4548,88.1287,59.7921,0.14671814 1337,527.0998,204.6376,23.0281,56.7601,0.13094386 1338,595.8308,201.8029,28.1570,62.0128,0.99228597 1338,12.2174,196.1756,26.4128,55.7418,0.26660585 1338,522.0697,204.8331,19.6998,48.4471,0.22300325 1338,605.9146,195.1951,27.6936,77.1093,0.19447276 1339,578.6245,201.5583,28.6385,58.6174,0.55323178 1339,274.3874,206.0036,19.6593,44.5529,0.33555648 1339,536.3200,202.4729,24.0729,43.3005,0.24256158 1339,546.1450,201.7946,66.9940,64.7884,0.10765296 1340,587.2547,200.2457,24.5737,56.3487,0.57716829 1340,269.6261,211.9489,21.2956,48.1478,0.49672344 1340,579.0551,136.3081,28.1453,51.7713,0.42380488 1340,451.4471,225.0906,25.6178,35.9367,0.10951333 1341,480.4269,209.7466,18.9162,55.3922,0.86754537 1341,522.2876,242.5965,31.8517,72.9083,0.39274365 1341,438.1493,208.4963,18.2918,52.1240,0.25632733 1341,489.2033,216.9429,19.5933,51.7513,0.25106448 1341,511.9772,222.1007,19.9651,45.7702,0.11854268 1341,504.0519,224.1627,18.3703,46.5128,0.11777352 1342,508.0590,205.9551,24.2259,71.0290,0.98800927 1342,534.2770,225.9880,24.5919,52.6317,0.74551320 1342,587.5654,250.2130,37.2137,78.8296,0.43906146 1342,118.1645,207.9001,21.8785,48.1825,0.34609082 1342,253.2393,217.6630,22.0897,56.7351,0.14982004 1343,541.7107,214.2589,30.0786,78.0224,0.99909991 1343,94.7693,216.4292,25.2683,54.4990,0.92706287 1343,576.8334,222.8276,22.1661,66.9097,0.67459649 1343,607.2234,229.2904,24.7710,63.9158,0.60112458 1343,79.9201,214.7078,29.5483,56.5969,0.34943599 1343,249.9366,217.3112,25.4748,70.5506,0.23155662 1343,614.2133,208.1451,25.3254,81.9055,0.18976520 1343,120.9320,209.1840,21.0511,50.2028,0.14755285 1343,594.5532,229.8203,21.6788,61.4442,0.13169995 1343,346.9172,211.2179,18.8855,38.6787,0.12021677 1343,555.6413,219.7242,26.7268,67.7162,0.10582134 1344,111.6193,211.4116,23.9415,59.5818,0.99551344 1344,595.3247,214.5019,29.0707,86.0680,0.99242556 1344,575.4582,216.3906,26.2685,81.4423,0.97326386 1344,135.1529,219.7166,23.6700,49.0974,0.82263339 1344,248.6789,223.9140,23.3667,59.9406,0.58612454 1344,126.8779,213.6432,24.0466,60.1577,0.48597479 1344,546.3844,204.0836,19.6959,59.5976,0.45711344 1344,612.3582,220.0113,24.9478,73.3553,0.20451446 1344,541.9051,225.0833,22.2724,55.5696,0.12475844 1345,157.5969,212.3954,26.9574,62.2035,0.99687505 1345,136.0977,213.4280,24.7652,67.0138,0.99672878 1345,584.8648,203.4056,19.4379,64.5511,0.78327286 1345,58.3416,208.6335,20.8671,38.8020,0.28956234 1345,250.1250,219.9901,20.9601,59.8216,0.24009782 1345,573.9939,213.3132,17.1322,54.3887,0.16531847 1345,618.3547,248.4231,20.3757,62.2861,0.14525288 1346,394.4589,208.9162,28.9943,64.7610,0.99813026 1346,160.3724,213.6865,29.0022,69.1679,0.99578321 1346,37.9526,218.8531,30.5406,55.3285,0.99529529 1346,187.5705,215.7690,25.5576,62.5139,0.92538720 1346,351.7512,218.4182,23.7660,60.7932,0.51092803 1346,611.1757,207.0649,20.8649,64.9768,0.41933692 1346,173.7750,217.2354,27.4986,63.3248,0.32328269 1346,20.8308,217.4368,33.1752,57.9325,0.14824943 1347,379.9732,212.1807,27.0574,65.6268,0.99978304 1347,184.1796,214.5682,32.5264,75.5039,0.99931777 1347,58.8047,218.3937,30.9852,64.3728,0.99857342 1347,210.9200,220.0786,30.0866,72.2469,0.98535144 1347,25.7884,221.8659,32.2256,53.7053,0.92911673 1347,349.7264,217.0146,30.8341,63.6010,0.25751901 1347,45.5158,225.9463,33.1635,52.2408,0.16916892 1347,537.6543,213.4994,19.2983,37.2713,0.13280539 1347,90.3690,204.8851,21.6859,43.0469,0.10403290 1348,198.2769,217.4269,31.5985,71.0769,0.99972296 1348,82.5499,217.6823,34.5848,72.8772,0.99971747 1348,365.8458,213.3380,29.4384,71.5038,0.99911124 1348,224.8397,221.9109,32.8144,80.2339,0.99806952 1348,46.8584,218.7203,26.6826,70.1599,0.99545765 1348,553.2639,215.0311,19.9693,47.9210,0.49323753 1348,562.2172,213.4481,21.7621,42.7905,0.41230381 1348,32.2332,217.5038,27.5888,56.5724,0.32667685 1348,531.0647,212.1651,18.3984,45.5414,0.27069867 1348,535.3307,205.3050,66.9501,48.6097,0.17749274 1348,4.3001,221.8037,28.0923,71.9592,0.17069431 1348,538.5532,212.5737,17.9133,47.2145,0.15494931 1348,25.5449,215.2621,23.1942,48.8870,0.14122178 1349,67.0516,224.9259,30.5130,63.5070,0.99649018 1349,107.9250,221.8982,34.5240,72.6208,0.99629295 1349,8.6910,220.9866,34.4409,77.3423,0.97289991 1349,346.0619,214.3714,28.3365,63.4988,0.81627989 1349,226.3440,218.7066,31.9089,80.8010,0.68846601 1349,582.8527,209.1236,19.7197,43.6907,0.23663285 1349,96.9053,224.6567,30.7652,63.5879,0.22284666 1349,554.9954,212.4828,18.2114,38.9139,0.17804796 1349,545.4736,214.3416,18.7397,35.7271,0.14198031 1349,524.9686,216.0176,31.5955,35.3063,0.12347550 1349,562.1420,212.8394,17.3489,43.3721,0.11069118 1350,98.1817,215.3882,35.3915,81.9584,0.99935973 1350,154.2301,216.5469,36.1843,89.5435,0.99838734 1350,386.7035,225.6538,34.1492,88.4222,0.99778813 1350,32.6229,218.7455,37.4478,86.7129,0.99077928 1350,9.7128,210.7981,44.0841,107.9713,0.91832143 1350,549.2726,209.4276,52.6009,47.2694,0.35671180 1350,327.2689,213.7476,24.6663,65.5545,0.13140127 1350,584.8617,213.7726,21.4191,42.3163,0.11471636 1350,380.0903,226.1017,24.8544,69.3527,0.10717056 1350,509.0368,216.3652,107.5748,43.7778,0.10378227 1351,147.0342,224.3912,34.2318,73.4417,0.99953276 1351,204.3058,224.4012,35.8556,83.8555,0.99710953 1351,52.7514,219.7362,45.5100,92.9229,0.99629730 1351,456.1252,227.6603,37.1136,89.3840,0.99616796 1351,272.5197,211.0416,41.4233,90.4556,0.88574553 1351,599.0182,212.7275,24.4733,46.5699,0.65798700 1351,34.2060,221.6132,49.0354,105.8640,0.63617826 1351,471.4641,221.3176,30.8725,81.4888,0.48548943 1351,193.0915,221.1894,28.7976,81.8842,0.26333988 1351,560.3884,207.7507,67.4810,51.9833,0.15863407 1352,210.0164,211.9679,41.5557,102.1654,0.99830830 1352,98.5625,215.9023,36.4813,96.7685,0.99745214 1352,118.0350,216.2717,45.1866,98.3504,0.99543345 1352,200.8997,216.2762,32.1362,85.3624,0.45957130 1352,565.3045,211.3096,61.6006,45.4765,0.44040847 1352,604.4052,209.6198,24.4156,52.3831,0.37715131 1352,262.4807,217.0707,29.8464,80.0931,0.19657072 1352,374.8042,221.8389,37.7661,93.6680,0.17326909 1352,539.3220,221.0978,36.7261,46.8057,0.17077161 1352,544.9338,216.8055,58.3311,42.3057,0.16333124 1352,499.3283,213.1689,120.5527,50.0767,0.13446198 1352,583.4708,216.0387,24.3655,46.9436,0.12210434 1352,351.7909,214.1756,21.1835,53.9468,0.10902404 1353,408.5964,216.1401,32.6389,83.0767,0.99946600 1353,144.4112,213.2105,45.5372,114.6316,0.99757314 1353,174.6869,215.0497,37.1594,105.7252,0.95485914 1353,197.4869,217.7661,42.2139,104.9160,0.84571493 1353,264.6690,222.6825,27.0755,57.7357,0.49002001 1353,608.0533,211.3494,23.3074,58.8830,0.22361629 1353,580.4193,209.3369,45.6851,51.4315,0.20860347 1353,584.7164,210.8324,21.9208,41.3425,0.12977979 1353,189.6449,222.3162,30.8307,88.9660,0.12864771 1353,566.8649,211.6024,25.8932,36.9681,0.10315565 1354,440.4243,220.2637,33.5684,71.1557,0.99959713 1354,60.8083,210.9263,51.3319,121.0650,0.99860710 1354,388.5724,218.5200,35.5151,98.1702,0.98758972 1354,537.9932,218.5806,26.4838,55.8917,0.70122463 1354,241.8424,216.0491,33.6873,96.9644,0.57589692 1354,371.2265,226.6409,23.3328,61.3263,0.26830453 1354,579.7352,211.5182,48.0289,53.4051,0.17924938 1354,259.6135,227.9024,30.3675,70.1045,0.13403945 1354,576.6837,216.5357,22.9001,49.6186,0.12315161 1355,433.6608,230.6690,33.0236,81.4458,0.99753678 1355,484.2392,222.9406,28.6729,68.1907,0.99350905 1355,412.0585,227.8160,33.5710,81.4553,0.99330848 1355,8.0348,224.1301,39.6482,103.1145,0.96802282 1355,576.0181,211.0865,53.1411,48.7370,0.46469653 1355,367.6200,224.7277,25.7870,57.4409,0.37363768 1355,574.3447,219.8660,26.6158,45.0611,0.28846496 1355,370.1456,229.5696,48.7540,91.2338,0.13467075 1355,591.1205,215.2229,24.1517,47.4122,0.11317864 1356,486.3992,222.4788,34.3013,95.6442,0.99773973 1356,522.6205,216.9204,31.6551,73.9661,0.99511665 1356,420.7242,231.6796,32.2302,72.4934,0.99281442 1356,405.2208,227.2863,28.5037,71.1082,0.74577987 1356,594.8155,208.4180,29.9413,48.0554,0.31630918 1356,607.5869,212.1976,23.5951,50.2230,0.22412702 1356,583.3663,210.7828,29.7693,46.5514,0.17785814 1356,379.5633,229.6017,27.3162,73.3283,0.17024180 1356,349.8606,210.9178,22.1148,54.9867,0.11076839 1357,468.4670,226.3833,33.3715,82.1891,0.99882299 1357,416.8194,220.5529,33.4093,99.8992,0.98687261 1357,435.6476,221.4970,32.3769,95.5895,0.96755314 1357,558.1898,232.0998,25.4330,60.9389,0.60839814 1357,554.6593,209.9794,89.7247,53.3758,0.20931125 1357,450.2633,223.7936,30.0916,93.4501,0.19161624 1357,594.5580,218.1841,20.1023,43.6555,0.13137335 1357,238.4366,265.5159,27.8749,49.1643,0.12731750 1357,572.4428,221.6910,29.9615,54.8337,0.10160054 1358,532.1076,230.1932,31.8572,78.3279,0.99708009 1358,467.4019,224.0484,32.5246,93.3977,0.99406064 1358,491.0157,231.5498,34.6864,90.6809,0.98975140 1358,241.0075,219.3345,34.8307,87.9794,0.98904383 1358,602.2002,220.5822,22.9826,47.5115,0.40064543 1358,491.0264,210.9072,22.5888,48.0990,0.35315043 1359,96.9323,226.0286,47.4579,107.5046,0.99207711 1359,541.0860,232.5650,39.2952,101.7269,0.98570013 1359,267.9082,209.4175,20.6554,51.0338,0.68869424 1359,561.7620,239.9652,36.2439,102.0755,0.56996447 1359,608.9493,213.1064,26.8185,92.1451,0.34840062 1360,263.8687,208.1322,19.8689,49.4736,0.92008215 1360,512.6458,207.7393,20.0275,52.3027,0.27481884 1361,259.2224,206.9040,21.2247,52.5504,0.99806607 1361,493.1251,221.6753,29.2914,67.5581,0.48213679 1362,258.4905,212.2487,22.4114,51.8389,0.99970412 1362,435.6283,212.3586,20.8630,55.9488,0.50633979 1362,535.8842,207.6427,20.1392,41.9731,0.30946189 1363,255.3022,215.4593,25.5133,56.0978,0.99949205 1363,432.4706,206.3843,20.4953,50.8427,0.70502061 1363,575.6157,215.6323,21.2868,45.9900,0.28809255 1363,537.5742,205.3693,73.7029,52.8403,0.14821100 1363,542.3494,211.7056,20.3939,43.7970,0.14433503 1363,561.9134,215.7913,21.3152,46.9808,0.10903266 1364,250.2314,218.7485,24.8558,60.0232,0.99976164 1364,553.1715,216.9557,20.3522,45.0476,0.14024660 1364,562.7887,217.7361,23.4288,41.3219,0.11404306 1365,244.9161,217.1151,25.2804,61.8013,0.99891520 1365,571.1997,217.6797,20.1536,40.9848,0.30525360 1365,430.6641,206.8125,19.5455,53.3729,0.23852865 1366,324.5973,212.7186,31.4041,78.7030,0.12725030 1366,287.9292,187.8355,19.4186,49.5156,0.11200172 1366,557.8510,216.3094,20.4852,41.7665,0.10013899 1367,235.7095,214.4704,30.3251,66.1932,0.99977189 1367,81.4225,207.2132,20.3531,47.5263,0.36563331 1367,606.6128,212.6570,30.2750,53.0855,0.21105257 1368,233.8352,220.7764,23.7183,60.1596,0.99988627 1368,118.2824,207.4414,39.9257,42.2506,0.13189438 1369,230.6882,215.8878,24.2346,59.0471,0.99773562 1369,590.9829,211.0927,21.6658,50.2850,0.27988714 1369,107.3709,195.2806,31.5660,74.3808,0.14708668 1369,598.0945,205.8094,23.9635,53.6371,0.13446361 1369,466.6885,207.9099,20.2400,45.5895,0.10547230 1370,225.6459,209.8641,27.2298,74.0235,0.99839199 1370,535.1384,210.1853,21.9302,49.3433,0.78566021 1370,467.1983,200.7921,18.0581,44.8726,0.10440490 1371,222.4472,211.9773,31.6576,73.8531,0.99962950 1371,425.3687,217.9413,24.5257,58.6086,0.61145204 1371,535.1841,209.5510,19.0154,49.3104,0.59157515 1371,544.7744,209.5836,20.6075,47.5434,0.21472068 1371,467.2907,202.2273,18.0366,41.3185,0.11942007 1372,220.6295,212.4274,27.5271,71.8990,0.99925029 1372,527.0175,209.8039,22.1821,54.9304,0.70254356 1372,535.7683,210.2638,23.3886,52.2810,0.27901748 1372,22.2911,208.4634,26.3642,53.3467,0.24464552 1372,282.9373,180.6511,21.4377,45.4716,0.10725690 1373,14.0453,204.2707,24.0100,53.6334,0.44758075 1373,536.7972,208.5994,22.8989,49.0286,0.26115227 1373,521.8509,209.7839,20.4009,49.9206,0.21663491 1374,209.4592,213.4016,31.8263,71.6556,0.99966156 1374,522.9336,209.0799,21.1250,52.8152,0.66300416 1375,210.1140,214.4206,27.3532,60.3377,0.94503844 1375,100.3853,208.7450,22.5666,39.8505,0.13206083 1376,212.0619,219.5322,31.9540,70.0754,0.99972188 1376,101.9053,202.3717,24.6269,51.8855,0.13565812 1377,231.4534,217.3844,30.7105,72.5084,0.99946737 1377,472.6214,201.4985,21.5087,55.5698,0.10246400 1377,522.5592,212.0923,36.1093,38.4093,0.10178381 1378,72.6829,216.1266,21.7482,55.8094,0.97585678 1378,93.3537,218.3104,24.4168,50.2855,0.42420876 1378,608.7627,204.8215,20.6054,52.2514,0.14099754 1378,219.9039,213.9691,20.5777,41.5054,0.10123178 1379,366.4564,226.5824,36.9416,77.4715,0.99784088 1379,189.0724,220.5018,27.4659,58.8534,0.97762692 1379,531.4223,181.3163,25.3630,57.0089,0.28266999 1380,37.0577,219.7354,37.1869,67.4706,0.20249045 1380,14.3380,217.9440,28.0772,59.2008,0.12521163 1381,523.0988,208.6262,27.3656,68.6308,0.99519658 1381,504.1312,212.0583,26.2016,69.3800,0.99478769 1381,210.5377,222.6306,34.3951,74.5480,0.34151480 1382,157.6415,239.1519,41.7385,101.4045,0.90189672 1382,384.2118,221.2326,33.8211,73.8226,0.49352857 1382,174.7092,242.4666,33.5466,78.6808,0.48618466 1382,331.7257,222.7970,38.0899,91.0462,0.39634669 1382,158.3726,225.8059,28.4201,53.0085,0.16810657 1382,336.5474,230.6817,27.5105,49.2332,0.15875475 1382,346.3343,218.0359,64.9592,66.5038,0.11792722 1383,429.1447,242.3078,45.0716,131.5520,0.92650807 1383,211.9828,216.6365,35.3882,83.5807,0.83554149 1383,421.2848,230.6525,34.8989,106.1656,0.81357402 1383,58.6762,213.7090,31.9336,78.2613,0.62989151 1383,578.3773,235.3757,43.5450,117.7106,0.49371576 1383,202.6401,217.8428,30.0254,72.4756,0.17946607 1383,236.4062,216.4086,28.0065,77.1432,0.15963303 1383,445.6411,237.5040,29.4885,90.9749,0.14404088 1384,512.1346,205.5790,44.5048,112.6698,0.98218244 1384,348.0822,220.3320,25.7964,46.9940,0.67951763 1384,219.4403,219.4674,33.2914,77.5606,0.19223908 1384,233.0864,217.3145,22.0849,57.4274,0.18961859 1384,289.2662,230.1438,25.3427,63.1537,0.18754181 1384,336.1191,218.4185,27.6459,57.8264,0.18447727 1384,253.8681,219.4947,60.3826,62.8565,0.11532088 1384,289.3517,209.8036,22.7198,57.3619,0.11245646 1384,279.1198,224.7487,27.1639,75.7899,0.10293349 1384,281.2581,208.2650,20.8152,57.9612,0.10048050 1385,435.4549,213.6792,21.7492,55.4302,0.89122307 1385,546.8628,219.8037,33.3054,84.3156,0.67167926 1385,392.0239,214.4908,19.4375,50.3088,0.49345565 1385,556.8000,221.7673,25.5309,52.6589,0.16670716 1385,170.0168,215.2951,21.3342,35.7005,0.12574553 1385,419.4547,214.9462,20.9458,53.2254,0.12304296 1385,398.8393,216.7118,21.5475,50.4100,0.10620081 1386,453.8445,213.8224,25.7026,69.7321,0.97325146 1386,482.0840,211.8794,22.4167,59.0222,0.89757991 1386,495.7258,215.8806,23.5844,61.7663,0.83388186 1386,202.3074,208.8145,18.5389,37.5534,0.30327836 1386,56.8461,206.8382,23.0149,45.9179,0.29531270 1386,472.7854,212.9891,21.6039,57.1939,0.26654267 1386,483.9371,213.3394,38.6995,112.4950,0.25700593 1387,531.7295,210.1498,32.2846,68.6056,0.98525053 1387,587.2982,213.0150,27.5389,70.8915,0.77652824 1387,84.7498,199.0848,26.2180,43.3451,0.42403302 1387,227.7213,205.6061,20.3173,36.2922,0.31749278 1387,63.5259,190.5658,54.9007,59.8809,0.23440301 1388,576.8590,210.2762,26.9415,67.5001,0.99944985 1388,598.0318,212.9116,28.1313,69.2902,0.99077702 1388,81.6643,197.4035,38.5622,52.2112,0.68327546 1388,243.0995,208.2888,17.0318,38.4386,0.25033173 1388,265.7596,205.4727,17.5364,35.1754,0.19681205 1388,325.2907,240.0873,21.8466,47.5652,0.11914553 1389,87.1031,202.6111,22.3944,47.0556,0.86778313 1389,576.4748,204.7369,23.7241,52.3461,0.77322674 1389,252.5490,208.9469,19.6317,41.0329,0.74983490 1389,106.3224,204.1423,18.9800,42.9471,0.61304045 1389,242.2306,207.8546,19.6416,40.8400,0.46921426 1389,496.8900,227.9022,27.4629,65.7026,0.28044090 1389,97.2519,202.8298,20.0735,44.2898,0.27765137 1389,305.0852,204.1808,19.5615,37.3639,0.19193956 1389,77.3893,202.4989,21.6406,47.4241,0.17559277 1390,78.2287,201.7994,22.0975,49.8380,0.99103701 1390,266.3531,212.0524,19.6147,45.3014,0.79099387 1390,99.8291,197.3820,20.1033,50.5266,0.59830022 1390,258.6454,214.9514,20.6212,48.0801,0.35132277 1390,113.4537,198.7939,18.9703,44.6988,0.19183141 1390,330.5539,212.6399,22.3421,30.8957,0.11906001 1391,531.7290,217.4204,28.0073,72.1613,0.99763554 1391,27.4412,202.1911,33.0432,68.5706,0.99491298 1391,247.6590,214.6748,23.6650,49.6860,0.99007463 1391,43.6875,204.0430,26.4160,59.8348,0.96202874 1391,82.7876,199.6515,21.7561,47.8684,0.85635316 1391,394.0724,207.4439,19.8943,42.3378,0.78782821 1391,67.8069,202.9932,22.2419,49.0641,0.48079842 1391,555.9056,221.4214,33.6375,73.2134,0.27311504 1391,53.1838,200.8860,25.4636,54.5813,0.20680986 1392,596.0055,229.5724,32.7480,90.3106,0.99860662 1392,216.5647,225.7506,29.1625,63.8056,0.98455238 1392,574.4559,226.2929,21.2630,55.1197,0.96538967 1392,433.0964,222.7037,22.5312,46.1486,0.94527048 1392,207.8137,228.5757,25.8321,64.0886,0.85403943 1392,374.4777,215.0231,21.6241,42.9557,0.77038908 1392,38.9196,201.8826,26.2981,53.4458,0.73503137 1392,14.0169,198.7476,22.6458,47.8050,0.55616742 1393,572.1196,221.1591,30.6145,71.4768,0.99550951 1393,62.3962,221.8898,39.5649,98.0386,0.98086500 1393,429.6973,218.2564,23.5624,48.4027,0.94080931 1393,343.5432,208.7643,21.0575,41.9263,0.87153196 1393,43.8065,217.8194,40.8230,96.4077,0.21936095 1394,533.8963,210.7555,30.5360,84.3479,0.99927908 1394,504.8441,201.1911,26.0020,64.9115,0.99412435 1394,384.3531,208.1035,22.9735,55.5439,0.99406922 1394,265.0754,203.4294,21.4143,42.6788,0.72067344 1395,566.2407,221.6940,39.6614,101.7736,0.99952441 1395,499.5253,205.3815,32.7977,78.0728,0.99504220 1395,254.2227,207.9065,21.9257,47.9542,0.98065650 1395,399.8175,206.8274,25.3986,70.6194,0.97959781 1395,389.3135,208.9038,22.2854,69.9664,0.67351878 1395,189.6517,207.4796,18.4486,42.6081,0.39245674 1395,138.9333,207.7682,20.1072,39.8025,0.22662649 1395,612.3119,187.1769,24.9953,80.7184,0.13951190 1396,294.3703,207.9528,22.4827,51.1018,0.99237502 1396,560.3905,211.4483,27.0002,65.8601,0.98797607 1396,438.4140,207.1045,25.1336,57.2895,0.98665917 1396,461.4249,213.7055,26.9010,75.6459,0.96576875 1396,543.5658,206.8951,29.1312,69.3617,0.61916143 1396,204.7680,207.6516,20.8310,43.1675,0.44928381 1396,346.9362,209.8023,20.3196,45.3302,0.43905425 1396,447.8577,211.0788,26.3164,63.0952,0.26571265 1396,424.5923,208.5068,20.1862,46.9755,0.15094602 1397,555.0357,201.8887,31.7395,81.0609,0.99924552 1397,447.8964,203.5001,22.1674,53.8590,0.97528589 1397,283.8572,207.1679,21.3059,46.6744,0.79404557 1397,35.1455,199.8503,24.7964,53.0140,0.26651901 1397,539.3484,202.3868,22.7869,64.7711,0.17762208 1398,156.6236,207.7793,23.8659,52.7753,0.91567916 1398,440.0401,212.8400,19.7559,48.6209,0.84766054 1398,406.6799,209.1192,20.7536,44.9793,0.73770595 1398,601.8052,201.6174,22.5811,67.3206,0.71361732 1398,592.4697,207.1379,22.5993,61.0746,0.69357890 1399,565.1357,225.1373,22.9559,51.7929,0.99035400 1399,496.4705,219.4394,21.1235,46.1711,0.98195982 1399,50.6932,202.0817,31.9426,66.1624,0.34085947 1399,241.6519,214.0484,28.5276,71.3091,0.31549588 1399,63.2031,201.5563,32.1937,69.2263,0.10633157 1400,551.0992,218.8499,23.9069,52.4377,0.99790335 1400,435.3508,221.0955,21.2029,44.9082,0.96691620 1401,589.4235,221.5320,25.4834,58.8963,0.99915147 1401,416.3676,220.3301,20.3136,46.9863,0.99706870 1401,90.8549,213.0036,27.7669,59.3669,0.92502308 1401,52.5908,196.1750,92.7462,263.1331,0.15556130 1402,411.3196,223.7643,24.8018,53.9000,0.99945450 1402,22.8904,219.2037,35.6888,84.7117,0.99552226 1402,70.4149,224.4268,26.5477,58.9040,0.96403658 1403,446.1486,217.8043,28.2845,63.8225,0.99992275 1403,38.7985,222.5622,29.8145,67.9583,0.66916060 1403,9.7232,137.4887,34.7234,113.7322,0.12317735 1404,478.7868,214.3902,33.3704,88.2876,0.99937505 1404,448.0428,209.0474,18.8837,43.5800,0.29248166 1404,407.1067,204.9368,70.5830,55.1568,0.13796368 1405,561.1936,226.4846,42.7383,111.2966,0.99940693 1405,495.6239,216.6693,19.6471,51.9860,0.85919917 1405,457.7278,214.8156,18.7481,43.6082,0.41760758 1405,422.2808,211.5237,20.6762,39.3051,0.36912388 1405,407.5565,216.3611,28.0759,37.8103,0.20712176 1405,442.2697,212.9186,17.9372,39.9309,0.16766179 1405,380.5325,204.3060,68.6598,53.2946,0.14474642 1405,435.5979,208.4642,83.7649,55.9178,0.13516583 1405,475.6733,211.7332,17.8526,47.5863,0.13343275 1406,582.6291,219.9438,25.8559,64.5138,0.99972224 1406,520.3283,216.9137,22.0541,42.9757,0.86895043 1406,490.3336,217.8671,21.0435,50.8588,0.85494030 1406,505.7315,213.4897,20.7804,43.7873,0.71104932 1406,446.2781,215.0089,30.2492,45.9869,0.32165277 1406,428.7556,207.9378,63.8750,55.9181,0.19422954 1406,520.0478,210.1142,72.9449,62.7943,0.16283092 1406,460.0374,211.9137,22.4999,40.8331,0.13337404 1406,446.5660,211.2862,100.3032,58.0431,0.10689594 1406,435.0409,220.8589,22.6250,38.1868,0.10582016 1407,599.4003,210.5384,23.8659,66.6058,0.99724263 1407,547.1931,214.5196,24.4025,65.2120,0.98655772 1407,583.6851,212.9092,21.2111,58.3730,0.92682838 1407,508.1478,211.3195,20.9293,52.2012,0.72586155 1407,567.7288,220.7915,19.1437,53.4947,0.69986773 1407,498.8583,210.8248,20.8863,51.0327,0.26075938 1407,492.4649,207.3143,94.4083,65.1371,0.18796861 1407,107.8509,205.2918,20.7670,43.4721,0.13424774 1407,527.7131,209.4350,99.5499,66.4701,0.12832461 1407,516.0935,210.1505,22.2211,55.2303,0.12314732 1408,591.9506,212.9850,33.3844,83.2219,0.94762194 1408,58.6029,203.0045,24.6011,45.2261,0.14997929 1409,57.5959,203.4661,22.6384,51.2784,0.11818141 1410,597.9228,200.1143,23.1199,55.6078,0.82909656 1410,552.6682,200.0801,20.8315,63.9728,0.77447486 1410,536.9925,213.0927,21.8138,57.6462,0.58623135 1410,521.1491,212.0774,20.6509,57.2578,0.46079683 1410,572.9168,207.7457,28.6525,69.7549,0.33243132 1410,541.8284,208.7465,26.3626,78.0875,0.27926657 1410,567.9397,205.0509,20.8468,60.2515,0.27324703 1410,586.9020,205.2984,21.6185,57.4624,0.23834899 1410,541.7459,202.0758,60.1489,86.3996,0.16274199 1411,580.4411,208.0674,35.7410,95.0591,0.99498922 1411,607.7094,200.5060,24.5726,70.6716,0.97616649 1411,565.2872,214.5285,26.1819,72.2649,0.73757982 1411,499.2247,218.5858,27.0435,57.1941,0.64657342 1411,595.2511,206.3468,31.5776,83.4601,0.40645364 1411,531.6606,207.3396,20.6806,58.0873,0.39460602 1411,507.7940,213.6424,27.5550,76.1042,0.33696693 1411,546.4815,208.9596,18.2698,55.7778,0.32762235 1411,520.5518,210.6426,21.9478,59.6647,0.31752276 1411,552.5682,211.5045,20.0629,64.4162,0.21306652 1411,414.5243,103.7122,28.4585,86.9879,0.12057393 1412,544.4564,217.2506,25.8152,75.1608,0.94549221 1412,579.9416,214.2910,27.1696,73.9026,0.94238025 1412,533.2351,224.7974,26.1382,68.6236,0.93116444 1412,601.4838,225.5015,23.2402,65.1916,0.84343648 1412,588.7166,201.2954,30.3172,74.6397,0.15374909 1412,506.6964,255.2218,32.9953,86.3829,0.15002151 1413,585.1240,215.5814,37.5575,122.2822,0.99613851 1413,571.3169,218.9147,36.9813,99.4312,0.22094969 1413,433.4834,219.2648,20.3650,42.4254,0.12604216 1414,497.8443,225.4832,24.7318,60.3212,0.90783334 1414,362.9956,225.5417,20.3776,46.3385,0.31399074 1415,549.2195,207.7596,31.5629,79.4931,0.99938649 1415,365.4201,208.7697,22.9414,54.6895,0.95639670 1416,371.1831,226.8654,28.8853,58.4479,0.99270082 1416,499.6429,228.0933,19.5635,42.2037,0.28524834 1417,384.8622,226.9393,26.3440,59.9574,0.99609500 1417,399.9468,221.0435,29.0988,72.0130,0.97474372 1417,557.6696,228.1346,29.0026,57.5583,0.84378743 1418,429.2036,227.4606,36.2328,101.1334,0.96222198 1418,417.5227,235.7455,23.2926,79.5647,0.95024586 1418,202.0249,208.8428,18.9970,49.1162,0.33731979 1419,461.9707,229.5158,39.0512,117.9933,0.99495345 1419,486.3025,228.2767,43.6575,125.2626,0.97607851 1420,154.4731,208.6712,22.5482,50.9759,0.37726182 1420,429.8043,213.8797,22.1370,44.7235,0.21770716 1421,556.1090,228.3005,27.0978,52.1106,0.19750884 1421,447.9663,215.2768,21.4294,43.0337,0.16091672 1421,113.2193,200.1508,69.7457,41.1445,0.11778347 1421,60.3070,225.7235,40.0584,108.7288,0.11624302 1422,70.7156,214.1688,30.5268,75.4921,0.99450862 1422,97.0058,211.8015,29.6475,77.7257,0.99365914 1422,144.8220,206.2776,21.1476,49.3816,0.89332783 1422,83.3004,212.2590,30.8405,69.9286,0.84887314 1422,533.5221,227.1802,25.4252,45.6321,0.14328326 1423,594.4698,216.5446,31.7534,67.1123,0.99853456 1423,18.2594,204.3105,35.9200,104.8729,0.99685216 1424,88.0142,203.0058,28.0144,67.0358,0.99708110 1424,493.9181,218.0966,23.7938,57.0917,0.96734953 1424,169.1665,208.8121,20.3589,42.3957,0.85216868 1424,510.4953,220.6695,21.4783,52.9705,0.39370444 1424,518.9133,214.0979,23.3793,55.3112,0.10378470 1425,34.8694,202.9905,32.4629,84.2864,0.99520963 1425,11.1025,216.9625,28.7765,80.2165,0.77107430 1425,21.9731,210.7881,33.5900,84.9507,0.65283722 1425,555.3611,214.9476,32.1254,34.8128,0.14336264 1425,169.1263,204.7969,24.6393,53.0482,0.11249477 1426,517.1196,227.4406,22.3199,58.9471,0.99518108 1426,534.4125,219.4776,23.7713,57.4613,0.45555159 1426,528.4948,212.1793,39.4077,83.0719,0.16470505 1427,151.4641,205.5853,27.3648,61.4522,0.99976403 1427,587.3161,226.1423,29.1490,89.1410,0.99629104 1427,613.6221,227.9635,26.0661,80.2899,0.89846325 1428,92.9118,203.8728,28.1249,68.7442,0.95951265 1428,78.6287,199.3544,27.8626,80.6151,0.38682917 1428,574.6447,202.2915,28.0801,54.1223,0.13616562 1429,52.7171,211.7752,31.6360,72.0846,0.98234880 1429,38.5329,212.6377,32.1319,66.9374,0.37136537 1430,32.7331,207.8277,34.4475,69.6015,0.99288571 1430,15.2724,203.5636,33.6032,72.3521,0.27080652 1431,588.9462,211.2915,41.7844,115.0013,0.99886775 1431,10.9181,203.7696,32.9287,75.8305,0.98858464 1432,571.9353,223.3721,44.0926,106.3566,0.99840480 1432,5.2771,211.3895,29.8337,74.9181,0.96557176 1432,596.5505,227.5272,36.8245,110.2815,0.82851303 1432,-12.4217,207.6884,38.0389,81.9963,0.11971638 1433,47.8996,220.6203,34.8767,73.7976,0.98708308 1433,28.9870,213.4415,32.2806,67.9712,0.19894291 1434,61.1672,219.6926,32.0081,74.4099,0.99866599 1434,38.7809,218.4705,26.8337,78.6267,0.46379989 1435,32.0608,203.9359,38.5227,96.3296,0.99403679 1435,12.6514,202.4980,37.3561,102.3517,0.45229632 1435,531.0566,217.1101,21.8525,47.3151,0.23658313 1436,452.8972,202.4211,21.2334,45.0470,0.19050029 1436,562.7066,226.4530,24.6482,35.5903,0.13949816 1437,512.6306,216.3739,26.2144,64.2012,0.61104524 1438,583.8694,217.6121,24.4604,76.3808,0.99219441 1443,432.5092,219.2814,20.1458,39.0836,0.11293207 1445,435.3925,216.2195,21.0494,49.3668,0.66078258 1447,502.8522,217.4715,24.4337,57.8486,0.85589415 1447,482.7372,219.9780,27.2138,60.1926,0.62704086 1447,484.6683,213.4958,53.5851,77.5833,0.15226951 1448,507.9736,214.1401,24.5605,64.8171,0.99907678 1448,541.1779,212.4354,24.6607,65.4077,0.99749386 1449,566.7467,214.0955,30.3921,86.8385,0.99465317 1449,609.6154,217.6617,26.5704,79.2250,0.97561741 1449,468.8058,209.7702,19.0182,49.7437,0.41013545 1451,599.4122,214.6426,27.1040,57.7976,0.78970325 1452,444.9598,247.1839,19.4529,45.8776,0.47505441 1452,427.6259,246.0738,19.1396,47.4829,0.13366759 1452,418.3134,242.0403,20.4144,50.1959,0.10980919 1453,466.5338,172.7295,21.7699,47.4544,0.99875665 1453,443.7637,170.1162,19.9868,49.7393,0.88655007 1453,529.1597,162.4049,19.7137,47.2368,0.76334101 1453,66.8006,70.6565,47.2765,102.1823,0.32640386 1454,502.8274,206.5753,23.2834,58.4872,0.99962252 1454,471.2218,205.4123,23.9843,57.8801,0.99945766 1454,570.3125,191.8715,25.5904,66.5088,0.96068048 1454,588.5766,191.0607,25.5007,60.5391,0.82075584 1454,86.4569,105.1370,31.8742,91.8847,0.18708019 1454,597.9005,195.9151,23.6647,62.9378,0.12370524 1455,523.6498,209.9372,29.3214,77.6319,0.99955368 1455,556.8393,214.6247,27.7473,72.9543,0.94379890 1456,480.9202,214.7360,27.3890,61.9135,0.95160151 1456,260.3991,188.3108,22.2704,42.4238,0.16579887 1457,563.1739,214.6383,35.1658,86.0948,0.98827475 1458,228.2096,186.9612,24.7281,44.4501,0.36705476 1459,213.6512,209.7770,23.0418,43.8356,0.61755788 1459,406.7459,214.7721,22.7223,50.0844,0.17825441 1460,174.5617,175.8914,24.8128,52.2282,0.97673416 1461,126.4874,185.1060,27.6473,55.0771,0.96402168 1461,533.2082,49.5222,26.4974,66.6499,0.14907427 1462,117.0827,206.5072,30.0376,64.9448,0.50812453 1462,550.9375,154.5557,37.8489,100.2209,0.30129597 1463,154.8355,219.7387,42.7933,86.7580,0.98361576 1464,154.9014,207.5573,53.8395,115.8741,0.99418086 1465,61.8484,224.3322,68.1335,151.4026,0.99663723 1466,41.6828,155.8330,37.6496,66.6623,0.11555413 1469,150.9063,211.5109,25.5156,50.1993,0.52028424 1469,156.5474,201.2738,30.7916,50.6720,0.10134761 1472,321.1311,199.0182,25.9414,51.3636,0.24578477 1472,233.1277,191.9037,25.1756,49.2326,0.13023563 1473,317.9861,222.2141,29.2580,52.6621,0.34866554 1474,317.5815,204.5223,25.7796,52.2537,0.32319129 1475,324.0057,218.8835,27.5894,53.1464,0.42211270 1475,313.8024,217.8015,25.2051,52.3542,0.10689203 1476,349.7855,217.2708,26.0063,48.1853,0.10663347 1490,73.0401,203.4104,45.1423,95.8834,0.10547774 1491,283.4716,213.5492,37.9337,84.0189,0.19693522 1493,127.2483,184.8756,41.8699,55.4548,0.21388030 1494,525.2105,207.2464,43.6674,113.7656,0.21686153 1495,543.2528,177.6611,26.3675,62.7933,0.13239191 1495,175.4312,208.7540,22.6397,39.2950,0.10261095 1496,124.9642,213.0437,33.2564,50.2075,0.32757363 1497,95.0880,208.7483,26.2598,48.8575,0.70521092 1498,30.3016,208.3339,32.3718,62.1930,0.94394112 1498,197.3051,219.0104,24.0559,40.5480,0.24478093 1498,19.4975,198.8737,30.3520,71.3651,0.15063646 1499,169.3694,224.6402,30.3052,51.2367,0.83888316 1499,17.8952,206.9172,33.1567,76.1433,0.12034480 1499,85.3749,206.5103,43.3106,53.9363,0.11124971 1500,103.7645,220.8066,46.4480,83.5199,0.54360753 1501,8.2484,216.8867,43.9224,90.9445,0.59369916 1501,148.7901,215.1367,33.4136,50.8362,0.14995611 1501,84.8833,215.0342,30.7706,58.8067,0.11011552 1502,100.6960,216.5677,47.2664,97.3232,0.99316931 1502,57.5031,215.7144,46.4022,98.9668,0.99125993 1502,588.1985,186.4412,42.4671,109.2300,0.40378618 1502,79.4823,214.1315,45.8820,102.4917,0.18987039 1502,187.4378,232.9322,30.6518,65.5336,0.12148482 1503,303.6707,224.5110,38.7744,102.5740,0.99817026 1503,266.4247,219.6085,45.2972,107.8665,0.99618042 1503,320.1141,225.0156,35.1688,99.5128,0.13210493 1503,439.3556,232.0844,25.8187,64.6220,0.12254895 1503,291.9439,227.8864,33.4637,95.5798,0.11089586 1504,557.3218,224.5881,49.6104,128.9524,0.99603826 1504,511.4536,222.0018,51.8204,126.0052,0.97201151 1504,290.3990,213.7549,35.7706,81.8521,0.89166868 1505,234.9284,224.6852,39.3879,79.2697,0.97636837 1505,13.3926,206.9115,39.3301,85.6334,0.90224457 1505,344.8900,230.0911,29.1833,56.7089,0.29293957 1505,225.9500,224.8033,30.9229,66.3213,0.10940757 1506,390.0530,218.9181,38.0582,84.3855,0.99855936 1506,169.3869,204.0279,35.8272,71.5939,0.99124312 1506,184.3943,206.3893,33.2160,67.6265,0.14283101 1507,337.3872,218.3586,36.2395,96.0219,0.99888879 1507,81.8542,194.2160,43.2393,82.0407,0.96819150 1507,43.3625,174.0443,46.3193,103.9601,0.17236525 1507,517.4388,197.8101,39.8946,107.4557,0.12436595 1508,14.6590,207.1125,53.7764,125.1449,0.97844326 1508,36.3275,210.2184,46.2630,98.4681,0.35819143 1508,5.8608,213.4689,39.5786,100.4658,0.10903539 1510,568.4238,232.0865,40.1464,92.1132,0.99906510 1511,380.9554,249.1632,49.9942,112.8497,0.99899232 1511,536.0659,247.9480,40.7628,94.5625,0.99851072 1511,447.4545,246.5356,25.0672,50.5903,0.96857202 1511,461.9578,245.1417,26.2243,51.1208,0.63108778 1512,164.2448,252.7762,70.6645,151.0070,0.99936628 1512,420.5194,241.1873,44.3977,99.3035,0.99933934 1512,305.8253,229.8417,24.3213,56.0441,0.98101568 1512,330.4327,242.3358,25.7703,47.2844,0.92175019 1512,318.8455,231.1101,22.4960,56.5277,0.25889558 1513,352.2502,235.4480,39.8146,99.6751,0.99929380 1513,208.2333,222.9808,28.6596,57.8964,0.99897319 1513,237.0069,231.0356,23.0978,56.8827,0.99780208 1513,316.4886,226.8768,23.9215,37.7552,0.54878235 1513,222.7887,224.8026,25.8494,53.7564,0.12558371 1514,199.1642,210.4501,29.5675,64.5382,0.99960768 1514,371.4025,225.1369,43.9291,107.3932,0.99949342 1514,229.6680,216.8228,29.5344,60.4328,0.99479622 1514,332.8878,217.6466,25.4516,35.1728,0.48569742 1514,215.1827,214.9999,26.8707,57.9054,0.10919240 1515,445.5931,224.4241,49.7666,124.6068,0.99987322 1515,234.8336,204.7316,32.0698,76.5305,0.99928665 1515,263.8451,216.7709,31.2138,68.2702,0.99881291 1515,398.5897,210.3242,25.5504,40.0776,0.42696071 1515,250.5768,210.7720,31.6753,72.2710,0.17063829 1516,514.7955,234.9024,57.4892,151.4925,0.99958169 1516,258.6377,219.7020,38.9325,97.6189,0.99935651 1516,232.4694,209.2848,38.9521,97.4350,0.99818444 1516,434.3539,218.4221,27.4945,38.3851,0.21717928 1516,446.9431,221.0025,20.6721,40.6467,0.12183553 1516,495.1597,200.0150,23.5784,55.1907,0.11029366 1517,159.0452,210.1507,52.0626,136.0685,0.99989438 1517,567.1933,242.5082,62.5555,193.4486,0.99918270 1517,204.7715,233.7177,42.9093,125.6832,0.97360015 1517,442.1437,222.3128,26.4506,42.1659,0.22824723 1517,232.2469,238.5063,38.4107,99.3563,0.18567532 1518,61.8172,233.5546,85.1469,194.4051,0.99294513 1518,32.4401,198.9745,71.6376,205.8448,0.98986262 1518,448.5068,211.6802,25.0104,44.0497,0.27678955 1519,461.1609,223.1529,21.2713,41.9084,0.29531166 1519,441.9178,220.2655,25.1070,48.2053,0.27862132 1519,97.7840,251.1850,34.9297,78.7306,0.20044686 1519,103.8658,215.4843,41.7440,107.6926,0.11009490 1519,468.7115,218.7560,17.8177,37.6171,0.10830298 1520,540.3867,223.7672,25.2001,62.8023,0.26207498 1520,465.9240,227.7512,20.8077,44.2777,0.12725888 1520,120.4831,263.8313,34.6955,73.8359,0.12544580 1520,452.5442,223.3306,21.3631,45.8551,0.10540694 1521,473.5260,229.8434,21.7654,41.8501,0.24179730 1521,459.7762,221.4181,22.5874,48.1182,0.22623850 1521,454.3480,183.4564,30.5009,80.8264,0.16064467 1522,499.6306,214.1008,22.9552,47.1939,0.76933908 1522,489.7985,215.8942,21.9378,45.8498,0.46295837 1522,478.4452,166.6735,35.6106,96.9670,0.15040259 1523,530.8002,213.0136,31.5548,58.1239,0.82117343 1523,544.1850,212.2552,27.4815,54.9434,0.12779601 1523,562.2591,214.2458,22.1795,53.1856,0.11982939 1523,401.5739,236.5192,21.3818,41.9138,0.10849202 1524,561.5852,229.9774,23.5197,56.5343,0.99348295 1524,549.1843,231.9836,20.1157,52.6212,0.14190261 1524,406.0239,237.1298,29.5808,63.9236,0.13998257 1527,156.4666,245.8127,37.2820,74.7277,0.16039491 1528,112.5269,195.4772,40.4137,96.9599,0.18007769 1532,154.9872,204.8177,31.7731,73.3903,0.14522056 1533,509.4943,165.9160,30.9151,71.6297,0.12018067 1533,414.0181,230.1984,43.1665,107.7773,0.11002135 1536,604.6605,224.6378,24.8587,57.8671,0.86946452 1536,387.5122,201.2428,37.3515,65.7549,0.20861037 1536,452.2180,224.9912,32.6362,74.3535,0.19172594 1537,385.8257,200.0985,32.0692,76.2630,0.19694668 1538,430.6391,217.3742,28.7557,67.4519,0.21891910 1542,527.5903,166.1300,39.3266,100.8875,0.47252449 1543,455.2522,204.1854,23.8782,42.8678,0.13780041 1544,403.5794,211.7350,23.5754,45.9825,0.37349248 1544,324.6081,207.9431,23.2491,47.0546,0.32881898 1545,413.7387,212.7199,24.4599,48.1446,0.92808974 1545,259.7134,212.2490,25.1890,44.6869,0.40677691 1545,545.8956,212.9352,19.8659,38.7747,0.40366912 1545,537.3983,210.5208,20.4611,39.6355,0.23407054 1546,423.1457,213.4533,26.7319,55.1377,0.99879390 1546,595.6220,209.3130,22.2125,44.2148,0.52527434 1546,158.9972,214.1454,28.3472,71.6579,0.27474260 1546,581.6453,207.4616,20.8738,52.9531,0.19221498 1546,563.4757,187.6544,27.0928,84.1246,0.13880879 1546,298.7249,273.2706,36.0626,62.4446,0.13168706 1546,197.5732,206.6846,27.3762,44.7940,0.12694639 1546,138.1441,206.3734,42.5354,76.5877,0.10106576 1547,468.5777,216.5081,34.0838,81.8998,0.99923676 1547,207.2179,215.3213,24.6655,51.1767,0.10424340 1548,592.8019,221.3502,42.8227,109.2601,0.57114333 1548,165.4167,206.2896,28.6507,58.1816,0.24358933 1548,151.2244,197.8363,30.6381,68.1006,0.13460660 1549,182.4870,209.1046,28.3302,64.8953,0.29570761 1549,162.5875,201.6559,36.7773,74.7746,0.13809475 1550,149.2058,215.5416,35.0647,71.8237,0.23949817 1550,121.1576,210.8167,38.1508,76.3411,0.19945930 1551,262.7451,228.5531,24.7498,54.1274,0.10694707 1553,489.7058,222.4322,37.5418,86.6290,0.99776316 1553,524.0944,219.2589,37.7560,88.1404,0.97267920 1553,251.2379,219.7507,22.4083,43.0566,0.18180381 1554,497.7745,228.3616,44.6433,114.5225,0.99948263 1554,535.2291,224.8571,46.2867,117.3007,0.99447703 1555,593.4606,237.3157,40.9895,129.0522,0.32774338 1557,328.1867,186.5975,27.8390,58.4063,0.18719579 1557,208.5497,211.0919,27.9818,50.1290,0.18020740 1558,184.9495,212.2688,24.3238,40.4137,0.11303949 1559,152.0585,208.1526,25.1976,44.9727,0.10615422 1560,447.7158,213.5367,24.8876,57.1674,0.88279665 1560,111.2621,201.3422,29.1775,53.4421,0.13582657 1561,486.6535,207.0506,40.1895,94.5315,0.66558051 1561,68.7117,214.6375,33.4877,62.7157,0.29029506 1562,548.0005,181.1161,43.1963,123.0128,0.97754252 1562,448.8072,180.6778,20.3278,48.4322,0.40183327 1562,592.2017,206.6494,38.0698,103.2517,0.33220321 1562,31.6810,184.4905,34.5356,68.2305,0.27981305 1563,506.1112,210.1578,23.3405,51.7488,0.79541600 1563,180.7826,190.1945,26.1305,49.5854,0.21843602 1564,169.1542,178.9409,27.1343,54.0579,0.18329118 1564,576.4836,198.2353,24.1897,61.9923,0.15010579 1565,133.1412,184.5902,27.8041,48.7993,0.27726734 1567,386.8013,213.0992,33.5399,44.7144,0.10021234 1571,110.0836,211.9963,26.7322,46.5887,0.39577031 1572,388.7775,208.8017,23.4863,48.5317,0.40471590 1572,281.4102,206.7584,22.6717,45.2950,0.37557131 1573,361.3155,209.3537,21.5865,45.8822,0.81041038 1573,489.0963,215.5904,22.6794,46.1249,0.39877772 1573,280.0149,177.0818,27.8997,62.0383,0.13188745 1574,404.9661,213.3552,25.8746,58.0534,0.99500424 1574,564.4316,215.5754,28.8953,61.5524,0.96367300 1574,357.3678,215.2580,29.4273,38.3362,0.18655781 1574,573.7321,217.7590,34.2113,70.4478,0.17464462 1574,299.9066,188.2941,32.4856,58.7666,0.10772534 1575,448.1205,214.6433,29.3371,62.2379,0.99801189 1575,384.6268,211.8817,21.7366,40.4070,0.22730735 1575,341.0695,161.2467,31.8431,69.7516,0.22103573 1575,410.6624,200.6749,20.4551,43.6877,0.14819342 1575,319.7132,175.7534,32.2237,62.6606,0.11863497 1576,531.1491,216.4186,44.9500,93.8302,0.99610245 1576,406.9286,212.9232,23.1412,41.0369,0.22364689 1576,431.1055,207.7252,29.5612,44.0016,0.14229761 1576,364.1437,158.3891,35.8710,81.6055,0.11054809 1577,435.9558,210.4642,26.5415,44.0895,0.66643286 1577,415.5684,206.1107,26.1945,49.0755,0.34151697 1577,466.0716,202.6596,21.0508,49.2446,0.31874442 1577,425.9168,205.2589,27.7231,46.1114,0.21576419 1577,475.4684,207.4294,20.7391,43.9408,0.19449656 1577,361.2812,198.6832,29.0871,39.0043,0.11766189 1577,124.6933,201.9952,27.3195,42.6721,0.10901724 1578,477.4185,207.1556,27.4921,49.2738,0.65336627 1578,521.5925,205.4769,22.8738,46.1670,0.55685955 1578,457.6534,197.4169,52.9527,78.8282,0.36923328 1578,503.8231,194.7449,29.2245,60.1952,0.23210482 1578,494.0111,199.9095,25.2044,53.5742,0.21315575 1578,132.3106,205.4955,30.5164,52.7183,0.19438195 1578,458.3663,216.3807,32.0447,71.5495,0.12862457 1579,581.9752,213.0827,26.2928,48.9014,0.88407671 1579,544.8813,205.2299,30.3989,69.0247,0.81774008 1579,534.8511,204.5316,23.5540,64.8922,0.79546857 1579,510.9138,200.9503,28.3400,77.1973,0.49632800 1579,7.6705,205.3173,42.1022,79.2055,0.18977629 1579,514.6179,198.0470,51.3013,84.1266,0.14118347 1579,30.1837,222.1055,27.0086,60.5387,0.10494380 1580,573.9431,203.2277,39.9575,99.1521,0.99098682 1580,57.9515,193.0391,28.3293,43.7983,0.53821290 1580,415.8542,202.0910,21.6992,55.1073,0.51201314 1580,84.1067,194.5139,32.7753,44.5851,0.19190511 1580,591.1192,199.2118,35.0150,97.3824,0.14060810 1581,453.1943,201.7112,28.8203,69.6481,0.88113809 1581,432.9351,202.0657,28.0880,67.7511,0.53878570 1582,472.6468,170.9581,34.2268,87.0244,0.89719683 1582,448.4919,178.8865,33.0532,76.8914,0.50465322 1582,11.9802,169.0202,43.0689,68.3101,0.13516098 1582,141.0911,107.8715,39.9385,100.6530,0.12143709 1582,162.3252,169.4738,24.6395,44.0103,0.12024340 1583,508.6897,203.9113,32.3362,80.0142,0.97688383 1583,471.6391,204.4889,35.9695,92.1070,0.63927603 1584,528.7611,211.3120,41.3781,106.7021,0.86898267 1584,575.5899,207.9351,43.0646,104.8681,0.86824071 1584,605.3215,204.3163,30.2534,72.0770,0.46281874 1584,54.0590,211.8846,28.1914,42.5299,0.12671557 1584,150.3137,221.4574,22.9383,36.9261,0.12489774 1585,21.4851,213.8070,26.9103,46.3080,0.43633083 1585,588.5660,218.4314,28.6922,57.9631,0.40683839 1585,34.5525,213.2481,27.8696,46.0168,0.14077210 1585,143.5846,219.9773,20.8570,39.5191,0.12973511 1585,8.5505,207.7626,25.8817,53.0163,0.12672670 1586,116.8929,228.5992,23.3664,41.8488,0.22723746 1587,60.5157,223.6143,24.5665,44.4230,0.37108794 1587,417.9182,225.2425,20.8727,39.2263,0.21797898 1588,428.8231,219.1798,26.4307,45.4825,0.59813011 1588,173.5064,202.2040,22.9927,40.5503,0.11335292 1590,475.2068,211.1620,21.9211,43.7767,0.51217920 1591,518.9261,210.2798,24.8235,60.6252,0.55556172 1592,215.4090,145.1771,23.7447,61.4482,0.15392789 1592,82.7671,198.3457,23.5793,40.2501,0.14003202 1592,134.5871,182.8288,26.0507,42.8076,0.11197653 1593,86.3940,194.6415,25.2079,43.6073,0.20730329 1593,122.3501,187.2231,21.8133,35.1527,0.14617234 1593,64.6633,198.5011,19.7484,39.2351,0.12284875 1594,48.6368,194.7074,23.1817,41.8476,0.44393954 1594,564.4066,182.5051,25.9566,48.2325,0.19508004 1594,27.1903,192.7606,23.7827,45.0291,0.17919496 1594,101.0361,186.0621,27.4574,40.1503,0.13206099 1594,371.3008,181.7884,18.0541,30.4266,0.11080077 1595,13.4583,238.6828,28.6889,54.1379,0.39494726 1595,85.6369,229.7455,31.5917,41.7946,0.26119760 1595,391.6162,223.4328,22.7979,38.1147,0.10918094 1596,57.4869,169.4197,40.1417,74.1848,0.31437808 1596,394.3884,195.6524,18.8573,33.1160,0.26043922 1597,34.6315,200.1917,31.3046,45.9347,0.35337427 1597,396.8750,200.6017,20.2432,36.3491,0.25056106 1597,20.5113,144.8449,51.4220,103.1193,0.12383851 1598,418.4395,205.8509,21.9249,45.1929,0.46682495 1599,458.8600,215.2862,25.4198,51.7738,0.75454342 1600,537.7726,210.6835,34.4948,79.7441,0.99358219 1600,443.1606,185.7794,31.0387,80.3444,0.12883639 1600,433.3252,211.3669,20.8359,45.1265,0.11619101 1601,469.1467,209.9106,22.9488,43.1950,0.68182009 1601,417.2718,204.8010,27.1241,44.7270,0.12015496 1602,450.5692,212.4775,23.1363,43.1646,0.31729481 1602,539.5520,208.4951,30.6923,62.8740,0.17323136 1603,508.5347,217.1879,22.2488,48.0972,0.94132894 1606,437.1126,210.7510,19.5251,41.6273,0.16644171 1607,467.3708,211.3714,20.6946,42.5390,0.22623573 1607,318.0524,208.2995,22.2955,41.5589,0.16691919 1607,393.3559,216.7880,17.7953,32.3626,0.12452784 1607,331.2928,195.2724,29.5491,54.8987,0.12238105 1607,476.1026,207.8484,20.8005,44.4281,0.10764247 1608,519.7986,211.3237,23.0793,50.2339,0.79991746 1608,409.0979,218.4844,18.7872,35.4748,0.16256487 1608,319.7365,213.9220,19.9899,35.9678,0.12414774 1609,75.4810,213.3364,24.7837,45.3114,0.42520171 1609,321.9645,219.9025,22.3611,41.7142,0.17032313 1609,612.5202,213.0996,27.7184,72.1052,0.12375576 1610,338.7867,206.2316,25.0157,47.1757,0.61830032 1611,348.3191,208.7093,25.5314,53.8244,0.96587741 1611,484.2592,209.5554,20.8294,40.2928,0.90577811 1611,120.3698,205.2204,25.0817,40.7686,0.53732800 1611,36.1939,204.5435,30.5389,50.8191,0.18250585 1611,32.6308,165.5800,37.9944,76.2747,0.10507160 1612,361.6536,210.2601,26.6064,61.2928,0.99886835 1612,518.9490,201.9669,22.5319,51.7985,0.96420676 1612,87.8907,200.2303,32.2763,57.2128,0.25484285 1613,372.4657,211.5248,33.9483,79.4790,0.99914002 1613,551.5565,207.1010,25.1303,60.8028,0.99609768 1613,47.5131,196.8976,30.8885,58.8201,0.61843330 1613,25.2951,192.6587,49.5782,79.6202,0.10796659 1614,419.7271,214.9990,40.8960,91.8983,0.99934852 1614,22.8022,209.5952,29.9753,53.3712,0.84999847 1614,388.0341,208.2441,32.4030,68.4512,0.13070786 1614,5.8445,211.1870,37.0154,66.5579,0.10500626 1615,496.5157,221.6817,55.1119,147.1767,0.99948311 1616,359.4254,162.8932,25.1451,58.7301,0.12102551 1617,397.0339,207.6882,18.2988,33.5364,0.15484728 1618,168.5693,199.3326,24.5902,50.6217,0.50983125 1618,381.8151,203.2071,22.6062,59.2551,0.27493697 1618,422.7807,204.9545,18.5390,39.1867,0.26228097 1618,413.4067,207.8580,20.7314,40.6431,0.18962371 1618,430.3943,206.6521,19.1209,38.3192,0.17290445 1618,372.7209,183.7955,42.5478,89.7325,0.16808756 1618,7.2070,181.1552,45.2946,94.5419,0.13891734 1618,406.6456,197.1530,69.9113,55.4436,0.11070825 1619,475.7136,200.4721,20.4338,45.4147,0.86042786 1619,20.9627,198.3297,46.8477,90.8880,0.55205536 1619,456.8313,202.7641,19.5408,41.5095,0.50188130 1619,464.0114,198.5833,24.9040,45.2472,0.19185662 1619,443.7231,193.6174,63.5905,52.3540,0.15831545 1620,563.0768,205.4866,27.4781,64.5043,0.99575013 1620,486.2556,214.2625,22.5948,44.6760,0.78903341 1620,534.4926,204.2789,28.4988,64.2973,0.68439472 1620,425.4524,206.0109,19.0056,27.8301,0.12923315 1621,534.6101,220.8933,25.6898,56.1932,0.96479708 1621,447.4038,206.6757,18.5010,37.4628,0.23951960 1622,606.2825,219.5326,28.6868,80.8940,0.76357996 1622,443.9924,204.8630,20.4204,42.3151,0.65218401 1622,466.0540,199.0684,22.5202,47.1111,0.58389443 1622,402.1074,207.1624,21.1323,39.0402,0.22188291 1622,64.0763,203.5681,24.1860,44.3789,0.19791673 1622,77.3794,202.6030,22.8916,44.1154,0.19778445 1622,453.5405,201.6608,26.6348,46.3496,0.17711447 1622,436.2948,192.9340,63.4469,68.7081,0.12986749 1623,511.7214,206.4907,22.0049,47.6695,0.72227597 1623,54.8542,207.2580,21.7115,42.0367,0.45575041 1623,33.3696,207.4155,20.7713,39.3097,0.43353361 1623,445.4531,210.1308,23.3638,46.5786,0.27966323 1623,92.6679,209.2473,23.6890,44.7753,0.22476959 1623,521.6357,205.6996,22.4084,46.7445,0.13430993 1623,24.4972,204.5365,23.3416,46.7377,0.10779823 1624,603.0458,205.8588,24.3105,64.8985,0.95952499 1624,581.4849,204.5847,21.2044,53.1564,0.79545474 1624,502.8981,206.1204,22.2462,59.5237,0.78570008 1624,80.4201,206.6600,26.3335,48.1624,0.63640761 1624,595.5521,206.3519,21.0258,57.2060,0.31170037 1624,20.0844,195.4005,33.3769,69.9429,0.28075659 1624,414.3106,202.7296,24.9397,40.6074,0.15088040 1625,560.5204,215.9321,23.7524,71.1335,0.91524589 1625,547.7575,216.0978,24.4052,62.8559,0.45499265 1625,499.1655,143.8233,43.0399,123.7481,0.44966114 1625,429.2235,209.5320,23.2346,41.2603,0.30110294 1625,548.3869,204.7485,32.9012,107.9608,0.15359402 1626,611.0681,180.1700,24.3228,71.7452,0.18815720 1626,14.6295,172.8734,33.3903,64.5474,0.17105900 1626,436.1670,172.7434,22.0048,43.7587,0.16264270 1626,543.4466,120.2052,40.1052,117.6447,0.13511890 1627,449.2465,217.8729,25.0934,40.9328,0.46576583 1628,457.0021,216.1993,21.9173,41.6397,0.59313065 1629,480.4004,218.3483,21.2683,50.8772,0.98946190 1630,562.8746,214.0530,32.6911,72.0362,0.95757449 1630,577.0140,220.1432,27.5975,65.0683,0.70062709 1631,384.4996,216.5160,21.3772,50.2815,0.90441895 1631,399.8476,216.7072,21.9385,51.6858,0.65007979 1632,411.2048,216.6403,20.6239,53.2636,0.97852677 1632,430.0080,220.2725,19.8920,52.7257,0.81870389 1632,3.2215,218.3277,52.1160,122.2051,0.11291464 1633,416.2305,214.9613,21.9042,58.4493,0.96546727 1633,432.8641,218.1453,22.8161,58.5735,0.79998910 1634,429.7921,224.9967,24.0665,66.4195,0.99658954 1634,449.1861,222.4620,22.9861,65.0911,0.93854946 1634,439.5406,223.2093,22.4838,60.1546,0.15651754 1635,474.5553,215.8842,30.5411,73.0126,0.97106093 1636,508.4765,214.4100,42.1760,101.3467,0.97220790 1636,526.2090,228.6316,26.3271,76.4643,0.12843126 1637,575.8213,218.8788,47.4534,116.0538,0.98687506 1638,217.7551,179.9376,32.3280,83.3140,0.40278634 1638,375.2757,202.8629,18.8555,34.2860,0.11407083 1639,194.7612,191.8568,28.7018,81.0964,0.19228743 1640,218.9348,269.3239,20.5415,39.4794,0.25099042 1640,358.2560,206.4124,19.9327,44.4433,0.23991664 1640,173.0799,196.0508,31.1959,81.9539,0.15183878 1641,355.2079,206.6859,19.8525,45.4488,0.32372743 1642,360.9180,207.8301,19.9440,41.9322,0.31954983 1643,366.7602,199.7052,21.0074,44.7528,0.55984843 1644,376.3789,207.0150,18.6335,37.8959,0.41885045 1645,378.1971,205.4578,19.1502,38.1179,0.26248237 1646,375.9553,207.1331,18.1349,37.4389,0.34524155 1647,374.2833,205.7383,19.2113,40.8465,0.17382249 1648,370.7101,212.4586,21.2147,32.1941,0.11391123 1649,367.3737,208.1118,25.5730,35.9536,0.15284672 1651,369.9292,205.7233,17.6743,34.9151,0.15099967 1653,193.1745,190.0655,33.0119,91.7142,0.45637989 1653,84.3819,241.8505,28.9721,73.8132,0.20300800 1654,112.6119,219.5426,23.3988,59.2936,0.56905740 1654,243.3076,284.5959,20.8272,44.2423,0.34471029 1654,206.1752,206.0566,32.4839,72.2077,0.12395133 1655,242.9020,284.4214,20.1762,45.6561,0.14491147 1656,229.5910,284.0458,24.0466,51.6655,0.18546087 1657,215.5830,294.5151,23.3317,56.8728,0.14959954 1657,373.0733,213.7908,17.4292,32.3943,0.12253474 1658,370.3006,206.4276,15.7524,35.1049,0.13460232 1659,371.5462,211.9384,16.7193,37.8685,0.18777625 1660,368.8445,209.7505,20.4617,31.2898,0.11043987 1661,367.6793,202.4993,19.9182,44.0954,0.27689376 1661,71.5860,245.9863,42.2626,112.3483,0.20416817 1662,368.3871,205.8257,19.2046,41.9628,0.28930363 1662,31.8779,257.9599,46.2232,123.7454,0.15051357 1663,367.7654,207.8649,20.0629,37.4232,0.14556590 1664,374.8505,209.0800,17.2596,40.0733,0.17837238 1665,377.6450,207.6335,18.6811,38.5835,0.10864624 1666,375.0025,206.9238,19.2923,41.3165,0.17309956 1679,578.0212,213.9317,50.8097,149.3805,0.51018625 1680,601.1943,229.1698,30.0227,108.2316,0.88057399 1680,543.9189,212.7934,51.2773,131.7565,0.62640506 1681,573.1849,211.6201,41.3090,115.0616,0.99600267 1681,524.9717,216.1647,48.5178,114.7924,0.98022079 1682,547.4097,210.9360,37.8290,110.6985,0.99705416 1682,512.8720,221.3801,38.5590,96.4634,0.95180112 1683,529.4699,217.3253,30.3669,85.4691,0.99395561 1683,503.9759,214.9582,34.3815,92.5978,0.98704123 1683,480.2050,146.4776,30.5152,73.9789,0.10162935 1684,491.5856,216.5563,28.2212,81.8740,0.98136532 1684,511.9395,225.0977,25.0502,69.6635,0.92804718 1685,498.7465,225.8172,26.1962,62.0999,0.97402793 1685,475.2046,217.0500,28.8033,72.3054,0.86366802 1685,486.6784,221.1129,28.8947,68.3846,0.37788206 1686,486.3456,223.9913,26.4398,63.6841,0.99110252 1686,461.9224,217.2299,26.9781,70.8231,0.98528647 1687,452.9475,215.8073,27.5337,69.0764,0.99343431 1687,478.3591,220.3169,24.5983,64.7091,0.97653508 1688,442.8974,213.8173,28.5864,64.6058,0.99765331 1688,467.0548,219.1599,26.4325,64.3723,0.93962032 1689,438.7954,211.2821,26.4491,71.9265,0.98571932 1689,458.2914,215.7739,27.4070,67.3076,0.93005574 1690,436.1375,212.4153,24.1119,62.4093,0.99348164 1690,455.9499,217.8470,25.4797,61.3731,0.98026323 1691,427.1096,216.1124,23.0212,55.1421,0.96645224 1691,447.9713,215.5948,23.1469,59.3420,0.96469283 1691,485.8642,148.5477,25.2321,59.5903,0.11079215 1692,417.8659,216.0104,24.9165,51.7946,0.98554063 1692,442.3331,217.5630,23.1991,54.3763,0.96819115 1692,431.2889,218.1561,25.1058,51.0043,0.20269510 1693,418.9352,216.4387,19.9755,49.3455,0.73292136 1693,434.0556,215.3729,20.8092,50.4470,0.36967298 1694,416.3904,216.4812,20.1893,45.6815,0.32950875 1694,426.4792,216.3404,19.5662,46.0689,0.32528752 1695,407.7756,216.6069,20.7251,45.2990,0.69961303 1695,417.4596,215.8296,21.6811,46.3262,0.38351843 1696,401.7417,213.2474,20.6747,48.4364,0.79947585 1696,419.4272,209.3704,19.3091,50.1456,0.37053728 1697,413.8494,215.3811,21.5972,43.3954,0.45851249 1697,397.8984,213.6832,20.4682,47.1811,0.25715154 1698,391.8833,212.6293,22.8234,44.0833,0.38033754 1698,407.9198,210.9634,21.8855,45.1634,0.16777216 1699,403.7385,214.5157,21.4690,41.8164,0.23625655 1699,390.9456,212.3755,20.9038,43.4436,0.20320505 1700,388.0906,214.8379,27.6574,42.2957,0.12177189 1700,400.6942,211.7803,21.7428,42.8285,0.10481632 1701,384.9130,213.6008,20.5705,41.7557,0.22462389 1701,401.6817,209.8656,18.6913,41.3095,0.16243698 1702,390.8099,214.5660,26.5192,37.5719,0.13860433 1703,481.7527,144.5442,30.3051,76.7874,0.13955519 1703,377.1173,209.5056,19.0121,46.1232,0.11254122 1704,381.9120,216.2459,25.1645,34.4354,0.13882099 1704,376.5526,213.7739,19.5277,41.5354,0.10547520 1705,378.2314,208.1875,20.2151,47.8293,0.11259316 1706,378.5888,209.4878,19.1283,46.9574,0.10402932 1707,376.1393,206.1010,21.0650,46.4174,0.36064798 1708,375.1918,210.6968,20.6597,41.9445,0.19175693 1710,381.9878,212.9426,19.4430,40.5721,0.10681155 1711,385.1281,214.7119,21.0796,42.5006,0.41933417 1712,390.6907,216.3865,24.0548,35.4762,0.19421169 1712,59.1231,213.6321,52.6380,157.3713,0.17926756 1713,314.9128,235.4304,20.6759,52.7373,0.46903104 1713,393.8376,219.3346,23.8491,32.1854,0.32899845 1713,225.5156,279.3638,25.4267,50.7969,0.32657039 1713,92.5488,216.5106,40.2348,131.2040,0.16688125 1713,564.8842,309.8693,30.3436,83.5868,0.12925057 1714,315.7291,226.3354,23.1721,52.4530,0.42473441 1714,238.2136,271.8503,22.0796,49.9849,0.32371634 1714,406.3558,218.3753,24.9707,41.7747,0.26119024 1715,414.9739,214.1700,22.1647,51.1354,0.57992399 1716,438.2698,218.5050,22.6465,40.5791,0.50696528 1716,157.7249,215.6297,34.3086,104.4528,0.27141306 1717,438.2501,225.0441,18.6117,42.2661,0.30396736 1717,151.0996,220.2604,35.8115,104.0959,0.12619954 1718,468.9748,217.6711,27.5721,73.0300,0.97704798 1718,487.7155,217.6046,22.1418,72.0652,0.67732197 1718,159.2316,221.6439,31.5364,87.6488,0.11538191 1719,536.7387,217.7358,36.1493,90.0085,0.88772386 1719,559.5039,215.6756,24.9648,71.5798,0.32541603 1720,287.5737,184.6158,23.9261,59.2797,0.22687997 1721,116.2951,228.4765,37.0780,103.9936,0.11656824 1722,216.7455,262.3581,21.4537,41.9968,0.29859596 1722,550.4696,118.8951,44.1039,86.3680,0.14261697 1723,211.3731,273.8059,20.1687,49.3567,0.45155567 1724,102.7887,267.6333,29.2924,57.3322,0.42589843 1724,201.0888,270.2009,23.1088,50.8326,0.13799918 1725,104.5526,220.8145,40.4355,102.6270,0.31434304 1725,189.8026,292.7342,24.4154,49.7502,0.19058479 1726,181.2802,294.7837,25.5063,57.4921,0.31522804 1732,525.4200,216.9758,39.2819,42.6771,0.10218940 1733,14.4533,222.9989,45.5939,87.8590,0.11017713 1734,15.0872,215.3063,43.4453,77.8190,0.10864706 1737,436.4709,229.4356,19.6185,42.6742,0.18810317 1745,188.4186,191.1228,41.3750,119.5195,0.10322909 1750,223.2623,253.5259,23.4576,41.5841,0.10304147 1754,27.3380,212.0948,41.7436,82.2563,0.37713397 1759,61.4307,199.2418,36.8886,87.7562,0.10487957 1764,144.0674,230.6520,30.3326,73.0077,0.24764191 1764,55.7914,204.2920,29.0920,38.1434,0.11114162 1765,108.3325,226.9321,39.9671,97.4407,0.31309026 1767,46.3836,198.4466,23.5821,42.2952,0.11358529 1773,228.2204,260.1186,33.7191,80.2631,0.14933553 1776,521.9804,276.6790,30.8259,59.6171,0.10797304 1782,583.6113,215.1120,26.4975,51.4681,0.24871743 1783,265.5974,297.3345,22.1448,49.4296,0.15172936 1784,563.4240,221.8879,20.3672,41.3663,0.15255417 1784,266.3554,291.5594,25.0318,50.7010,0.12372578 1785,258.5315,291.7040,26.3191,50.8249,0.31962967 1786,249.8513,290.4386,22.4356,50.4137,0.11682621 1787,240.8621,290.6922,23.7051,48.8592,0.37054446 1787,403.3325,203.5122,22.5083,32.4764,0.12394272 1788,233.9732,288.5287,23.0420,49.8221,0.35322085 1789,231.7917,286.6099,21.7866,49.3278,0.26262906 1790,228.7157,280.4876,24.1553,49.4507,0.38262340 1790,66.7739,216.9132,31.6362,66.6730,0.11221407 1791,230.2548,272.1712,21.0371,48.6611,0.25383341 1791,392.4087,203.9531,19.4369,33.3826,0.14628571 1791,284.7179,250.0194,38.7326,91.3079,0.10652081 1792,475.4880,200.8237,17.9688,46.5901,0.28249639 1792,238.0176,246.7495,42.6134,127.5162,0.27193177 1793,490.1777,204.5907,20.1114,44.2358,0.26884130 1793,499.5107,204.8060,17.9867,44.6956,0.13565169 1793,404.0420,202.0397,23.3388,33.0470,0.11325079 1794,512.8055,200.0090,21.8153,51.3559,0.86520499 1794,456.7910,200.2673,21.7166,45.1477,0.17117330 1794,420.5302,197.5808,19.7841,36.8629,0.10913193 1795,520.8998,206.1446,22.7920,51.8691,0.50945431 1795,511.7911,208.9483,21.7467,48.6787,0.46810976 1795,340.9483,206.9866,22.0297,45.2043,0.20162350 1795,462.9575,200.6155,23.1543,49.3037,0.19115241 1795,387.4509,208.5584,16.2817,32.4280,0.13838457 1796,525.7949,204.1999,20.2095,55.2135,0.76588947 1796,514.9031,208.7385,18.7766,52.6178,0.51936775 1796,336.9698,205.8757,21.7255,40.8185,0.27388066 1796,469.2636,204.7697,19.0573,50.6401,0.25042391 1796,250.7898,204.1015,34.2965,66.3682,0.10322580 1797,523.6833,207.4064,20.5795,52.1851,0.95631140 1797,539.5455,202.3024,21.9516,56.6897,0.79845703 1797,338.1158,209.8646,22.0705,45.0437,0.36376292 1797,482.0452,199.5415,22.8934,50.7408,0.31237516 1797,383.2803,195.2816,23.5301,44.2238,0.16805726 1798,542.8225,203.9984,25.7429,57.4880,0.99439788 1798,498.6523,198.0931,24.7262,60.2363,0.99373448 1798,533.5798,206.5306,21.7780,54.1502,0.66138661 1798,347.3170,207.4626,21.6171,47.7035,0.48641247 1798,443.3430,203.2740,15.8202,30.3303,0.12198463 1799,549.1506,202.5042,26.7854,56.9516,0.97403467 1799,354.4230,200.1358,21.8748,50.7271,0.89023316 1799,517.6400,198.7007,23.1960,54.9593,0.77172369 1799,540.5836,202.3467,22.6294,55.1491,0.43576658 1799,456.4208,195.0999,19.3436,42.6827,0.30436501 1799,443.7260,195.4894,23.0329,41.2625,0.16107307 1800,361.0103,204.5029,23.2949,50.0117,0.87644875 1800,559.1357,207.1061,20.6152,58.1351,0.75959998 1800,538.2868,209.2514,20.4994,50.6708,0.42894793 1800,454.1047,202.1914,24.5785,38.9836,0.14139375 1800,507.0305,200.9852,20.8495,41.7283,0.13463186 1801,459.9350,211.0395,24.8476,42.0436,0.66994512 1801,480.7763,210.5353,20.7087,46.0095,0.61776257 1801,515.6414,203.6434,35.8333,45.2388,0.56471372 1801,560.1667,218.2813,24.3674,62.5233,0.37846327 1801,363.8044,213.1151,22.1429,51.5685,0.31841481 1801,469.8581,206.7688,25.5473,45.1840,0.23757997 1801,518.6815,208.3299,55.0301,52.6336,0.20702991 1802,565.1709,212.5627,23.7720,62.9114,0.99005347 1802,467.4861,212.9845,26.2956,42.6629,0.95489717 1802,575.5191,211.0078,24.3111,68.7766,0.93078852 1802,528.2924,207.1111,25.9150,39.1326,0.72124231 1802,497.2343,208.6037,18.6642,48.9839,0.61136675 1802,479.5202,212.4459,22.2409,45.0388,0.35665667 1802,543.1705,206.0312,23.8178,45.4949,0.26384783 1802,366.2921,217.2433,25.1735,49.0013,0.20980318 1802,583.5537,225.2911,24.4347,63.4246,0.10607043 1803,573.6731,198.9348,26.6203,66.8866,0.99137115 1803,364.8040,207.1136,25.2814,53.8015,0.95073402 1803,470.8778,201.6925,25.1271,45.2985,0.94283658 1803,605.5006,212.2430,27.4232,67.6007,0.88742971 1803,535.9851,196.1731,25.1015,42.5671,0.80263531 1803,505.4628,201.8245,21.1418,45.4462,0.69365197 1803,548.3281,194.2644,24.3838,45.6017,0.49130428 1803,415.9011,206.5594,23.1997,59.6842,0.33853209 1803,432.1750,200.0966,22.2594,56.1138,0.24190590 1803,563.2611,198.4979,25.1280,62.6515,0.13330591 1803,404.2707,212.6695,19.8017,58.0871,0.11318873 1804,364.9467,207.4665,25.3440,61.1158,0.99898106 1804,479.8212,207.5927,22.7052,45.4461,0.97431517 1804,595.0794,202.5714,30.0557,65.7807,0.97153324 1804,547.0936,197.6835,22.1017,47.7630,0.92680204 1804,518.8438,202.5450,19.8651,43.2321,0.86995786 1804,580.8829,205.6377,26.7598,63.6681,0.86878753 1804,570.5736,205.3663,26.2088,66.7075,0.38373142 1804,558.0809,200.1440,23.6068,46.0547,0.31539723 1805,367.3197,205.9186,25.7613,67.8443,0.99882221 1805,539.6650,196.2469,21.9997,54.1644,0.99588788 1805,569.0740,190.2544,24.2202,59.6600,0.96115869 1805,409.3477,213.9401,22.3306,72.3925,0.63963729 1805,584.6643,196.6864,27.0530,74.0499,0.60568869 1805,604.5580,200.1988,26.1392,66.4953,0.50166291 1805,493.1151,202.9941,24.1115,49.5872,0.34456339 1805,578.8858,190.4367,24.7510,58.7551,0.12017444 1805,551.2205,196.8917,22.7179,51.4206,0.11280331 1806,413.0067,202.8784,28.9316,79.5289,0.99718881 1806,576.1622,193.1408,22.8492,52.5885,0.98836643 1806,377.4356,200.5833,28.6978,80.1420,0.98474646 1806,517.7129,199.0806,19.4989,46.7323,0.95995045 1806,603.9284,192.6691,28.6256,85.1508,0.82331133 1806,591.2122,198.4017,25.4100,56.4707,0.40941447 1806,505.7674,203.8714,24.1517,44.5162,0.17705742 1806,495.0276,205.9890,25.1140,43.3045,0.14468135 1807,421.3047,198.2233,30.2699,89.3237,0.99734133 1807,388.4380,201.6682,30.0523,79.2208,0.99446297 1807,542.3545,197.7433,21.2407,48.7902,0.77690947 1807,608.7959,186.9014,22.3346,58.6249,0.36705473 1807,399.8318,196.7310,32.6537,84.9366,0.11441240 1808,569.1802,198.4152,23.5860,57.0742,0.99902040 1808,432.6819,197.2768,34.5256,92.1058,0.99187255 1808,404.8131,202.7774,35.3500,85.6001,0.93919694 1808,418.0660,196.9036,35.3306,89.0330,0.29182696 1809,425.8869,208.6788,33.0633,92.7951,0.99585283 1809,462.9537,195.8175,37.6138,118.0275,0.97466147 1809,593.9772,205.8449,20.1325,53.2045,0.37991428 1810,495.1606,195.5465,46.7986,123.2135,0.97739363 1810,442.1326,200.9266,42.9967,108.2010,0.96012986 1810,433.4595,209.9367,31.5369,77.4859,0.11234770 1811,468.4193,194.6304,44.3470,127.1254,0.97174573 1811,541.8111,192.6550,49.9007,148.8941,0.61192852 1811,455.4976,192.6724,28.6616,77.7586,0.46196353 1811,465.6036,199.4222,30.5874,89.0589,0.10965440 1812,496.4073,195.4493,56.5945,159.3469,0.97246313 1812,594.1314,192.8981,39.2046,155.0497,0.32713354 1812,103.4371,221.9533,24.3840,43.9015,0.20086116 1813,540.6556,200.6006,63.7543,189.6868,0.98474789 1813,561.2793,247.4848,43.8725,119.3323,0.25375855 1813,535.6999,206.3947,41.0938,130.7557,0.14847495 1815,569.6585,274.9331,40.7912,109.9454,0.25182980 1816,152.8685,207.9091,38.6409,95.2025,0.36552835 1816,390.9365,193.2991,20.0697,41.1596,0.10280591 1817,396.2218,198.5679,22.7706,41.3745,0.61440539 1817,434.0594,199.0426,19.8575,40.9214,0.12776716 1817,50.7473,264.3669,52.0771,107.2488,0.10693326 1818,401.3676,203.7832,21.6342,39.2199,0.82303214 1820,459.6201,198.4987,21.3633,41.9988,0.78276896 1820,422.6429,205.1733,22.5037,45.7957,0.27807796 1820,54.4388,189.2043,64.6320,46.0982,0.10323273 1821,474.6329,199.5419,19.5357,43.4457,0.93285292 1821,434.7865,206.9723,19.7789,43.9258,0.89127481 1821,164.8808,207.5988,45.3323,103.5007,0.18821004 1821,450.9533,199.6060,20.9940,46.8752,0.12284300 1822,441.0177,203.9519,21.7009,52.2089,0.99601400 1822,455.9955,201.8927,22.3981,50.6966,0.15422684 1823,447.9050,203.0975,24.9850,58.3873,0.99903369 1823,483.3485,202.8045,21.5697,47.3673,0.72000992 1824,453.9436,198.6004,25.9570,65.2127,0.99850690 1824,488.5390,200.5359,21.7545,49.2004,0.98676383 1824,507.2466,197.3138,19.3272,48.2160,0.97860527 1824,227.2695,262.9615,39.9331,114.3845,0.13417271 1825,504.8629,199.7057,23.4874,56.1117,0.99896371 1825,542.7888,198.7918,29.4646,69.7915,0.98840129 1825,472.0653,206.2864,24.8047,67.2232,0.98009765 1825,52.5257,202.4016,41.1214,102.5762,0.40626118 1825,215.6339,271.3245,51.7348,123.4802,0.12181823 1826,553.1375,193.5682,24.0612,68.7258,0.99944085 1826,512.3401,201.2474,29.3584,80.8726,0.99391103 1826,67.1147,206.9588,35.2427,97.8996,0.85594881 1826,31.8532,206.0973,24.8670,64.1682,0.40567553 1826,53.2283,203.8971,35.5925,97.9308,0.28966272 1826,41.9443,205.9435,30.2062,72.8993,0.20762643 1826,220.1880,256.5629,44.6000,89.2060,0.13497758 1826,581.7915,199.0901,31.2533,50.3764,0.12295675 1826,383.6938,201.1637,20.6756,40.5373,0.10357258 1827,590.3917,196.5447,30.4431,80.5465,0.99869835 1827,541.8623,202.7385,35.6223,91.9290,0.99291646 1827,20.8789,216.6105,42.7804,110.9098,0.91472495 1827,211.2440,245.0857,43.8623,110.6693,0.23553567 1827,386.9293,205.5277,19.1575,38.6324,0.16239643 1828,583.6922,206.6325,42.5964,97.3014,0.99856633 1828,193.4407,252.8989,39.8446,96.6191,0.18956275 1829,493.4423,210.6340,43.5288,137.4175,0.17218773 1830,578.6872,197.7168,32.1542,56.5714,0.16918613 1830,179.3755,276.7123,51.4588,87.5744,0.10394782 1831,370.8971,166.0725,28.2667,86.3048,0.21542676 1831,287.2764,225.5804,21.9233,52.5881,0.11653464 1832,529.1041,195.6805,34.0002,67.0197,0.10462254 1833,404.1171,168.0141,29.1219,80.2665,0.13723695 1833,424.1971,204.8847,21.8967,44.3916,0.13530722 1834,426.7984,204.6299,20.1996,43.5328,0.14342716 1835,459.0798,219.0026,30.2818,61.5164,0.21900173 1835,425.8589,208.9855,25.1928,43.2334,0.11183173 1836,428.0082,159.1146,27.4156,94.2973,0.21888240 1839,479.4046,222.9303,20.9516,43.7911,0.61808920 1840,503.8234,218.0140,20.5384,47.2555,0.72806656 1841,535.9430,205.5112,23.6340,56.1573,0.94709259 1842,585.3550,215.9371,24.7861,61.9789,0.98094898 1842,594.8512,218.6302,28.3949,58.9410,0.65388012 1871,447.0515,233.0237,27.3368,52.8864,0.12447232 1874,485.1105,228.4042,41.5876,89.4855,0.78076637 1878,585.3077,206.6177,28.7688,69.9807,0.95310622 1879,572.0675,211.2652,29.2453,60.9874,0.91706258 1879,113.9692,213.7737,35.9157,84.6689,0.17024021 1880,561.0709,207.4327,24.2910,65.6461,0.98067141 1881,552.1475,208.1854,24.6380,65.0019,0.98588037 1882,543.2240,210.4270,23.5460,54.7116,0.99324548 1883,536.0205,211.4380,22.8611,53.6408,0.94861889 1884,535.6191,220.5777,22.5243,49.1978,0.83283025 1884,524.5137,212.0587,40.6007,76.0492,0.21285684 1885,542.7736,208.2239,24.2830,58.4218,0.99604177 1886,582.9695,214.6056,25.5936,57.4399,0.98981738 1886,588.3451,206.6218,34.5453,72.8947,0.10169414 1888,416.6352,194.1222,40.6906,96.4986,0.11873982 1891,481.2419,211.8337,23.3218,45.7017,0.11699732 1891,448.9881,208.1281,33.7352,34.7090,0.11265948 1892,323.0733,223.2547,36.8913,96.3192,0.17160745 1893,286.0323,221.7325,29.5721,74.8741,0.15680653 1893,197.9415,201.8969,50.6313,131.4728,0.10643499 1895,217.2981,216.0100,27.1170,60.3347,0.37011263 1895,145.4756,221.1261,32.6093,69.9609,0.18103707 1895,229.1429,220.2181,28.1435,67.9257,0.17258121 1895,156.0341,213.7788,34.5992,67.5196,0.11298282 1898,521.2555,212.7311,17.0866,38.0815,0.15804096 1900,570.3174,217.9151,21.6004,34.6115,0.13132912 1901,600.8361,215.9734,26.0282,49.1362,0.68204767 1904,185.1320,223.7426,20.7953,47.4613,0.19363685 1906,187.5402,212.8981,22.1507,57.2609,0.48595512 1906,126.9421,213.6757,28.9706,52.8313,0.14739315 1907,75.5665,225.3613,27.4093,60.7644,0.32903197 1907,184.1691,220.7029,24.0129,53.5524,0.11104849 1908,192.0666,219.3033,22.4816,52.6774,0.70958054 1909,194.1306,212.9263,21.2032,55.4986,0.50499552 1910,174.3229,214.8322,24.1088,52.4759,0.15821974 1911,165.1833,209.8709,33.5654,69.3244,0.38529623 1912,178.8089,228.5159,21.1246,56.5491,0.22806364 1912,169.7862,231.0376,22.3172,60.3718,0.13348435 1912,398.5796,210.5486,22.2832,64.1477,0.10423425 1913,166.9710,228.1456,25.7511,59.9076,0.36933720 1913,150.7815,225.1085,30.3342,64.6116,0.10823904 1915,149.9608,234.5677,27.7371,65.6173,0.16565832 1915,563.4090,212.4217,38.0988,99.1635,0.16534033 1915,141.9637,216.1396,27.9775,71.6659,0.14222139 1915,575.1952,219.9046,24.7189,61.2440,0.12241825 1917,107.5172,234.8794,27.5675,65.7601,0.27323243 1917,426.0653,217.0667,52.5764,140.7180,0.13250953 1917,208.6446,202.4429,21.8214,50.0493,0.12277805 1917,111.9423,231.5455,37.3964,89.9935,0.11406132 1917,19.2423,203.8500,38.0603,96.8892,0.10919275 1918,551.5623,215.6333,42.2598,88.5890,0.34419242 1918,533.4961,180.9632,45.5907,105.8696,0.10235408 1919,81.5657,233.0215,37.3418,93.4256,0.10042644 1919,61.4147,233.9615,24.6855,71.8917,0.10026827 1922,140.6783,198.7029,25.4865,47.5785,0.10987800 1931,391.8329,241.8988,33.9613,84.4635,0.13927615 1932,383.6838,230.7576,33.0549,72.8097,0.39833647 1933,376.4088,229.5239,35.8912,88.4469,0.79252422 1934,375.4620,231.6958,36.1452,82.2465,0.52413225 1934,158.2048,222.8076,45.2636,102.0468,0.29309919 1935,377.6256,230.3262,33.6421,81.6290,0.98455966 1935,173.5225,211.0427,40.6491,72.0624,0.17720540 1935,498.1884,185.7074,40.9176,94.5751,0.16995138 1936,398.6926,213.6664,36.3868,93.1244,0.90390760 1936,359.2547,198.9307,37.3645,130.3690,0.10614675 1937,429.0187,218.7411,43.1321,110.2677,0.85818893 1938,477.8613,219.2494,58.5896,131.0251,0.98188412 1938,404.9807,246.2786,22.9329,59.3886,0.12776352 1938,173.5926,201.6030,44.8604,111.1403,0.11786207 1939,67.7692,209.1337,31.0779,73.1446,0.23330382 1939,326.1879,254.5797,28.6211,70.2227,0.10487493 1939,465.2772,189.6591,32.0642,76.1013,0.10173410 1940,457.9664,246.1346,49.7361,106.3983,0.12912056 1941,455.0988,204.5723,26.1744,50.1875,0.15703773 1941,519.0041,176.6619,28.6944,83.0806,0.15636390 1942,487.0432,208.2902,26.0163,53.6243,0.18395734 1943,545.1617,206.4922,35.8822,75.5110,0.23670925 1943,441.1715,225.8787,42.5289,110.3044,0.14474863 1943,441.2321,274.3264,23.2129,63.3422,0.10073848 1944,417.6760,207.1218,20.9207,37.3271,0.15577731 1944,531.8816,323.5307,66.1252,199.9179,0.10370806 1945,436.5707,199.4144,19.3608,40.9344,0.22871462 1945,234.7215,221.7561,28.2556,68.3851,0.16494603 1946,479.5104,213.5608,23.2548,48.6059,0.81216586 1946,467.1448,215.7539,21.5088,44.4723,0.37235743 1947,523.1419,210.4960,26.1166,57.1937,0.74264896 1947,431.4619,204.7623,25.3639,39.4123,0.27125508 1947,531.7844,205.6922,26.3155,50.9013,0.11085333 1948,453.7677,208.9674,24.9908,42.8562,0.33099034 1948,464.6866,211.2188,23.9808,40.2332,0.27462828 1948,441.1478,199.3800,59.4228,58.5070,0.19117019 1948,441.0173,213.1540,29.3531,42.2414,0.17244405 1948,477.6406,211.7915,22.9502,39.5478,0.14904955 1949,499.4622,208.6768,26.5101,48.6203,0.96951890 1949,524.2701,208.1497,25.3714,52.5953,0.75782365 1949,510.7066,204.5147,26.2730,55.0822,0.29455656 1950,607.2904,205.2357,24.5956,64.1194,0.98760009 1950,579.8180,205.7671,27.8966,66.8704,0.95192349 1950,495.5263,204.8455,23.0535,46.0161,0.40790826 1951,541.1257,205.5501,26.8696,47.7469,0.94592029 1951,473.0876,215.3666,53.7653,51.0847,0.11719014 1956,558.1047,221.1151,26.2421,58.5402,0.98126245 1957,530.3410,213.5030,19.2577,42.8793,0.40400493 1957,412.1528,203.3979,22.0457,46.6155,0.36387277 1958,455.3117,228.5175,22.8090,46.2992,0.93769306 1959,545.3008,208.0879,34.9627,74.2999,0.91184223 1959,575.3151,210.2319,25.4114,55.8107,0.82185572 1959,563.7514,207.2745,29.9577,70.7999,0.24303657 1959,576.8185,207.0845,36.7373,89.0068,0.16389087 1963,365.1433,211.5085,21.4535,40.6991,0.10754794 1964,569.3864,194.0732,28.0321,69.6544,0.16798356 1964,397.1871,211.1613,25.4105,43.3910,0.15998806 1965,384.8971,214.8992,21.3935,45.2912,0.94945967 1966,461.3547,224.8617,27.2549,61.5336,0.99920464 1966,568.8576,221.1380,36.9070,92.7254,0.68591356 1966,87.3732,218.3181,25.3421,51.3323,0.16592917 1970,66.7190,213.1875,25.6192,48.1129,0.15592401 1970,217.0083,208.5096,21.8346,36.6833,0.12018154 1971,46.9000,204.8637,43.4030,45.7038,0.17955810 1971,452.8699,199.2249,21.9657,60.1854,0.12189094 1972,235.2981,204.2205,21.7920,39.4000,0.11949932 1973,228.5479,193.5121,25.8935,45.7275,0.25013345 1973,401.2447,207.5407,17.9974,41.9301,0.14693367 1974,415.6546,207.5372,19.3243,43.3970,0.79164863 1974,481.1806,202.4177,20.0341,41.9112,0.53887159 1974,453.2765,206.6392,19.6609,48.3597,0.35612833 1974,114.5825,189.8965,36.7983,65.2498,0.11753754 1975,442.2768,223.0336,20.2839,48.2365,0.99785632 1975,503.1715,220.8754,25.7071,63.1866,0.99719989 1975,547.0811,220.2429,21.9147,45.9781,0.80732822 1976,504.0987,222.0517,31.7673,80.1444,0.99108428 1979,369.0999,210.5818,18.0942,37.1813,0.18510100 1979,45.3777,206.8098,22.9741,50.5415,0.15096445 1980,401.0140,198.4486,18.7142,37.7612,0.29575616 1980,335.1719,167.4538,22.3604,62.5905,0.24535908 1980,367.8555,182.9478,25.5460,54.8344,0.13002580 1980,439.7671,210.4748,24.5741,53.2492,0.12038291 1981,432.7179,202.2729,20.9191,42.7680,0.58778954 1981,105.5108,200.3560,19.0110,37.8179,0.10323928 1982,511.8488,216.9395,20.0090,43.7979,0.93762034 1982,462.2782,222.4172,24.0646,55.7741,0.25748038 1982,248.3819,199.6971,24.0681,40.8289,0.19353981 1982,418.0890,152.9063,38.4161,107.4227,0.18995219 1986,489.6358,209.4442,19.3152,44.1012,0.59106225 1986,38.6566,210.5162,26.6974,47.5406,0.12133829 1987,568.0714,203.8478,28.6002,64.3048,0.94811034 1987,478.0722,201.1927,21.4764,44.5756,0.14013389 1988,502.8848,166.3213,36.3067,114.4241,0.12322973 1989,462.1984,203.9279,26.1679,51.1525,0.93238121 1990,462.4467,210.2241,22.9126,57.0297,0.79305100 1990,323.2215,193.0156,28.9409,65.3612,0.20612571 1991,483.6459,220.0328,23.1419,58.7189,0.43326932 1992,529.3941,207.8027,30.1070,80.4030,0.75679243 1993,592.4411,225.4257,33.2682,76.6739,0.46113700 1994,413.7016,31.9853,43.4145,127.8616,0.17529395 1999,296.1127,193.6973,26.2530,41.4466,0.10638148 2002,587.6460,152.1861,41.4324,116.8598,0.16524230 2004,319.9706,210.4708,19.0390,42.3925,0.33166283 2004,355.5371,215.9275,18.1686,35.9756,0.10513557 2005,354.1082,213.2666,19.5461,42.8479,0.44357589 2005,323.0308,211.4868,20.5714,48.7036,0.25360379 2005,334.4425,216.7289,28.5779,40.6792,0.14087389 2006,321.7234,213.2398,22.1803,52.8006,0.97525334 2006,355.1896,216.5014,22.2652,50.3810,0.95594019 2006,366.7842,216.5787,22.0486,44.0223,0.26816243 2007,346.9705,206.5817,24.3362,60.2404,0.99656379 2007,304.7196,205.1944,25.4626,63.5904,0.98979259 2008,282.9444,208.5776,35.3311,68.2423,0.99745739 2008,229.9808,206.1199,31.8919,73.7523,0.97796547 2008,48.2656,194.4557,30.5059,52.0156,0.65900481 2009,94.8344,203.8369,48.7503,118.1320,0.96355474 2009,182.2375,205.0814,46.4912,102.3556,0.84464514 2010,76.0683,209.0093,31.8927,76.0771,0.55356562 2011,337.6276,238.4842,25.7910,44.1710,0.21714562 2011,299.0088,239.4733,25.2575,51.3439,0.16588077 2015,585.7864,227.6503,25.1625,59.4022,0.97261941 2015,182.5812,216.5511,38.4409,80.8212,0.17359458 2016,506.5041,217.0197,32.1465,68.9570,0.62459910 2017,498.5701,203.4596,34.7584,82.4967,0.69460458 2024,411.5409,204.0618,23.5728,55.3009,0.16283043 2024,374.7007,210.4156,21.5972,40.7649,0.14815146 2024,285.1950,184.1638,24.5839,55.2446,0.10568795 2026,405.5136,211.7792,20.4892,43.0822,0.64881027 2026,366.2869,172.6587,29.2029,68.1403,0.29815638 2026,7.3299,200.7855,24.8336,53.8902,0.17329651 2026,32.6495,209.1937,26.9594,47.5648,0.10046560 2027,425.9319,207.2690,22.1447,44.7761,0.96337968 2027,506.1962,207.5657,22.6549,52.5411,0.17274965 2028,446.8393,213.5982,23.1993,55.8097,0.99443823 2028,547.8352,210.4081,24.7301,63.4267,0.92107403 2028,381.0539,208.3193,19.3458,42.4404,0.61635470 2028,550.3831,87.0833,42.0184,110.3409,0.15306132 2028,69.6104,200.1629,26.3314,57.2551,0.14977778 2028,107.4557,209.4502,21.5159,35.2181,0.14268494 2029,492.4442,215.2833,24.5139,61.9751,0.97061038 2029,401.3678,205.5564,19.1865,45.1977,0.96303773 2029,415.3973,190.5398,23.7966,52.6686,0.21360576 2030,432.9461,210.1793,21.4886,51.4646,0.98891437 2030,578.1707,213.7287,33.8988,85.9591,0.97800183 2030,443.0642,187.4984,28.3579,68.5827,0.24306354 2030,55.8511,205.7823,21.4931,44.3221,0.19355708 2031,490.3084,208.3319,27.3817,69.7722,0.98344433 2032,306.9982,204.6271,21.3144,54.0844,0.13286628 2035,525.4589,110.3266,78.9870,238.8368,0.29885668 2035,540.5065,43.8606,44.0466,121.5269,0.12317408 2035,91.7620,205.5102,31.6722,42.2457,0.11837262 2035,537.6626,74.8572,58.4921,175.1411,0.10437977 2037,472.6262,220.1239,29.8330,77.6290,0.18400265 2039,47.9711,206.1835,26.4208,52.5958,0.15711252 2041,309.6292,198.3011,27.3403,56.7850,0.12852240 2048,99.5711,209.4903,20.2254,36.9018,0.20122787 2048,7.3574,194.7634,32.2056,73.3162,0.16059971 2049,28.6362,208.0363,22.9276,46.8679,0.48886928 2053,351.8292,204.4994,22.4889,56.6276,0.24886723 2053,591.3861,32.4457,36.9406,95.4800,0.20871541 2054,16.7805,193.4469,33.8385,71.4073,0.28499413 2055,417.8575,168.2198,45.9648,135.4431,0.10065424 2055,93.6452,206.4730,26.5308,44.9652,0.10031983 2056,437.6688,267.6758,21.0373,66.2430,0.20182292 2056,185.7711,186.0776,44.4086,98.9228,0.19187771 2057,437.7858,273.4472,19.7805,54.4374,0.30595359 2058,513.2393,291.3295,25.7869,67.7770,0.38735607 2061,92.7193,207.9033,22.3408,44.1998,0.35630187 2061,413.6600,150.4725,41.4059,107.5173,0.16743277 2061,11.0065,207.6124,24.0869,51.5571,0.10466337 2062,40.1032,197.1335,26.5392,56.2213,0.48791677 2062,479.2524,149.3200,38.1541,113.6910,0.31611720 2062,27.3550,200.9818,25.4321,61.4243,0.11516102 2063,436.1010,208.8999,19.6353,36.2256,0.18016560 2063,22.0121,191.8612,23.1935,55.0506,0.13480635 2064,133.6772,205.0029,25.3010,53.2702,0.16449749 2065,492.4130,211.3306,20.2995,45.7634,0.44603449 2066,528.7686,210.0078,22.3669,52.7531,0.99848735 2066,242.4759,213.2116,32.0376,32.8592,0.20180136 2066,496.1794,118.2983,41.5366,126.1525,0.12057404 2067,575.8488,209.3823,23.1350,65.7902,0.96143264 2067,24.6204,199.5786,24.0239,48.5432,0.29320544 2067,233.4442,210.8363,26.1553,38.8140,0.18309185 2068,221.7025,211.9365,28.1410,43.7311,0.36638206 2068,12.9276,36.4449,49.5801,97.5357,0.31919470 2068,242.4697,211.1962,19.7734,42.1537,0.16167516 2068,23.5400,47.9091,49.4651,129.7405,0.11910184 2069,214.7797,216.4191,35.2736,39.3026,0.73841929 2069,560.9739,48.3146,38.7135,120.0850,0.32920846 2069,456.5732,220.8704,19.0491,46.4380,0.19581874 2069,420.8256,228.6434,27.0380,36.0743,0.14826307 2069,365.7283,181.6994,38.7900,69.6327,0.13590737 2069,204.7831,209.1321,56.3428,57.9073,0.12047328 2069,381.4063,219.7257,19.6423,40.7841,0.10944337 2070,203.5839,215.6475,29.2876,41.9603,0.96561819 2070,482.1386,219.9113,21.1205,54.3082,0.68841136 2070,469.8546,223.4434,21.8395,51.9376,0.28246668 2070,410.3941,228.4634,16.5376,33.5498,0.13747722 2071,182.4804,217.7124,24.5856,43.2928,0.89687800 2071,496.1810,223.5812,19.8980,54.4162,0.87409669 2071,485.5234,223.6099,20.0971,56.8190,0.75932300 2071,206.6406,214.4922,25.4173,41.8357,0.72355020 2071,435.2607,227.4026,19.6059,37.3624,0.39528218 2071,476.5787,205.8934,36.2226,77.1953,0.13742995 2071,183.8227,205.9944,47.1194,58.8322,0.12649210 2072,162.1951,215.0920,25.4061,47.9987,0.98590088 2072,502.5045,222.9258,21.7973,60.8020,0.97749484 2072,205.7606,215.1183,28.4436,43.8461,0.89655209 2072,464.3543,224.5414,20.1145,41.8580,0.77104366 2072,521.1572,222.3628,22.5204,56.8634,0.34184107 2072,493.1353,223.3593,19.8866,55.8147,0.18955800 2072,484.4573,225.2908,16.5337,47.0633,0.11605506 2073,142.1710,215.1060,26.6835,44.4858,0.88753146 2073,527.8275,228.2640,22.2218,58.0863,0.78467107 2073,205.9352,215.9258,33.6877,37.1378,0.71814865 2073,491.5136,223.2965,21.4279,44.4133,0.66682160 2073,501.5009,226.0454,22.5852,44.7823,0.47312295 2073,289.6974,217.9240,19.0823,38.0538,0.20367879 2073,507.8458,221.2332,49.8950,62.1577,0.11112127 2074,208.3639,215.4988,31.2415,37.9198,0.76723164 2074,120.6172,213.8851,19.1391,44.7834,0.73140872 2074,572.9406,213.0728,24.7598,68.9193,0.64922893 2074,266.7931,217.6895,19.3784,44.6881,0.64139086 2074,135.3500,216.7324,16.5431,43.8017,0.41586217 2074,263.8441,175.7954,29.7690,71.5807,0.13701831 2074,201.8821,205.7189,91.0020,60.1222,0.12243845 2074,516.8526,227.3214,18.1676,39.1867,0.10837822 2075,424.8007,227.6196,26.9539,74.9387,0.99897772 2075,233.5559,221.1632,25.8411,64.6833,0.99855816 2075,214.2546,220.8462,27.0003,68.8376,0.99710083 2075,40.4373,229.5968,62.6348,150.2267,0.99411464 2075,405.6340,225.2777,25.8967,76.2997,0.91253805 2075,18.3602,233.6692,58.0145,153.4603,0.43296933 2075,498.9778,125.3889,37.6118,106.7916,0.26294130 2075,366.1707,222.0922,18.2533,28.9368,0.11841213 2076,455.6068,232.9513,31.3055,79.3928,0.99847460 2076,232.4177,218.2129,27.9389,70.0473,0.99359876 2076,216.0552,220.0212,27.8180,69.4565,0.99231446 2076,21.4493,221.0148,69.7796,191.6405,0.99075258 2076,431.2796,228.6470,28.8805,91.3922,0.96210384 2076,203.9209,215.9348,29.8485,68.5949,0.15950096 2076,381.0078,214.9814,62.7322,42.8952,0.11364701 2077,221.8194,209.7015,32.0612,84.3304,0.99950099 2077,477.9889,232.7433,38.0058,111.5135,0.99884725 2077,196.6414,218.9704,30.8018,73.5137,0.99656129 2077,449.3799,231.6756,40.2457,115.0064,0.93263960 2077,427.7849,219.7245,20.0008,50.2264,0.54256558 2077,535.8036,213.4024,26.1030,55.9919,0.36816725 2077,392.1136,217.8872,31.4170,35.6755,0.18655263 2077,372.7593,213.1659,69.7047,43.9590,0.12126161 2078,184.3353,217.4128,33.9889,87.4908,0.99946475 2078,221.3438,215.3435,35.1035,88.8838,0.99905092 2078,535.5313,245.4501,46.2886,139.1578,0.99135476 2078,494.2453,230.7576,47.6286,164.1239,0.87138313 2078,266.8181,215.4057,17.9347,43.6496,0.65789413 2078,425.2681,223.1213,20.3427,54.6631,0.53352159 2078,454.4453,230.6402,21.0719,50.1775,0.21526684 2078,540.8756,196.1780,43.6933,97.5372,0.20983404 2078,373.8285,216.3765,77.9260,48.6270,0.16423073 2078,409.5097,219.8212,18.0645,47.2026,0.15675895 2079,214.7254,215.1882,38.1592,98.1692,0.99927545 2079,176.7331,218.2332,36.4288,94.6159,0.99876451 2079,428.9074,223.1396,24.5321,64.9642,0.88386953 2079,268.1546,217.0271,18.1791,47.5311,0.41858035 2079,606.5426,216.2596,28.3469,74.1969,0.37344703 2079,259.3230,218.1736,17.3092,45.8907,0.37141159 2079,409.7702,221.4297,17.9597,46.6402,0.20355052 2079,591.9571,212.3565,29.8411,69.5073,0.18719247 2079,353.7561,221.9530,26.4061,45.9852,0.12459655 2079,464.8979,231.9019,21.3066,50.5314,0.11138044 2079,367.9304,225.0777,23.2085,42.8053,0.10433700 2080,128.4650,220.0836,40.9001,104.7448,0.99961734 2080,169.4175,209.4103,45.4095,122.4331,0.99873292 2080,422.8310,221.8041,26.9904,71.2936,0.91872168 2080,243.6905,212.6325,19.6317,51.1766,0.68557620 2080,232.9308,213.4990,19.6064,53.2211,0.63978672 2080,458.1106,231.2266,26.6741,68.6710,0.44510585 2080,401.4895,222.6069,19.4278,43.9713,0.39611021 2080,389.2018,223.5919,19.5580,45.2007,0.29755217 2080,14.3202,261.1344,52.5226,74.6958,0.27745101 2080,583.0549,195.3260,26.9099,62.4310,0.19386035 2080,563.4641,268.4977,15.8867,33.2888,0.18129593 2080,560.9978,89.8259,35.7477,97.8309,0.12612551 2080,584.6512,168.7378,23.4806,61.2971,0.10807212 2081,91.2453,211.5045,63.0664,143.7648,0.99985313 2081,40.8965,210.7562,58.4943,139.2913,0.99978310 2081,200.9321,210.9574,23.6000,64.0997,0.99808693 2081,186.1920,211.8031,19.3007,60.3291,0.99451303 2081,596.9623,218.6749,31.3982,106.5291,0.99177873 2081,455.8179,230.8532,29.5284,75.3582,0.99009514 2081,374.5885,225.6386,21.7348,51.3691,0.57722336 2081,415.7889,224.1636,32.5060,87.7491,0.56895036 2081,353.9732,225.5137,21.3010,46.7636,0.48848280 2081,398.4163,224.6580,27.3746,67.4859,0.39960948 2082,164.3851,214.6494,32.5070,77.2257,0.99941409 2082,141.4233,216.7096,30.1019,71.4920,0.99723029 2082,19.7844,199.2225,81.2280,197.3917,0.99389130 2082,433.3889,219.3070,40.5193,113.9747,0.98871624 2082,480.4618,229.1908,41.3200,102.2370,0.97911298 2082,358.9669,224.4608,25.9258,63.7329,0.86040235 2082,384.6349,229.4093,25.9005,61.3839,0.81186152 2082,533.9775,195.8861,30.1762,86.1987,0.21233138 2082,574.6823,165.2946,21.4354,53.9288,0.18732682 2082,531.5181,241.7657,33.4589,93.0197,0.13256076 2082,265.7740,215.5706,19.9158,33.2128,0.11943803 2082,327.3208,214.6638,16.9781,48.7812,0.10280548 2082,251.8746,213.6349,18.8245,36.3954,0.10172887 2083,101.6033,220.7695,35.5739,88.3209,0.99852741 2083,130.4139,217.2409,36.0252,92.4760,0.99799335 2083,395.4383,228.6925,29.7292,79.4716,0.98819959 2083,472.8154,224.3771,45.5158,138.0853,0.98259354 2083,542.8265,244.4493,42.0002,122.2078,0.95599067 2083,421.1296,229.4459,30.1170,78.0430,0.55376983 2083,590.7081,171.9535,39.5866,102.0496,0.21496692 2083,243.3892,214.7716,65.6585,48.4056,0.18975835 2083,329.0345,213.7332,19.5696,50.0848,0.18004881 2083,268.6714,216.7789,29.2965,41.3963,0.11240335 2084,31.3142,217.0545,49.8873,132.0800,0.99977589 2084,75.1684,213.4397,48.9263,135.8389,0.99904704 2084,477.5710,231.8747,36.0121,107.4763,0.98995793 2084,504.8682,229.7338,37.0126,104.6430,0.96902066 2084,569.8645,219.1693,58.0802,213.6486,0.94474304 2084,140.8759,208.6203,20.6553,50.8908,0.65174955 2084,267.5001,207.3679,49.0220,53.1328,0.49328643 2084,270.7499,208.5169,25.7745,40.4596,0.20021008 2084,347.4123,208.3458,20.6427,53.7629,0.18536425 2084,333.4119,185.7382,26.5594,65.9933,0.15996426 2084,586.0882,299.7664,45.8138,143.1191,0.11424513 2084,284.9952,211.0379,26.2198,41.3376,0.10667815 2085,165.7366,215.0977,25.6270,56.5789,0.99858904 2085,364.5371,218.5210,20.6538,49.9247,0.91926241 2085,346.5474,195.4952,23.1558,60.3383,0.29099250 2086,377.0590,220.7712,25.2938,55.3538,0.99914539 2086,144.7626,221.6085,25.8368,61.9345,0.99506831 2086,125.9503,212.7174,28.5180,69.5258,0.94415724 2086,356.2277,221.6903,20.0484,49.9691,0.43975815 2086,264.4727,217.1581,21.6508,46.6977,0.28900355 2086,246.7070,218.3369,19.9377,48.6143,0.22522655 2086,271.1719,211.3730,52.3705,60.7439,0.15340568 2087,129.2919,224.4764,30.3797,75.6484,0.99881339 2087,102.9581,220.0590,30.6214,73.0481,0.99854982 2087,393.4772,226.4887,25.2587,68.4839,0.99682051 2087,362.3956,221.7128,29.9061,82.0722,0.61972702 2087,258.7403,218.9786,21.3708,56.8466,0.55828524 2087,117.2450,225.6266,30.5197,71.5061,0.38843513 2087,231.7191,225.1788,19.8468,47.3320,0.37897786 2087,241.5134,223.3875,19.4951,50.1927,0.30867261 2087,250.8458,220.6214,18.9356,51.9068,0.21997067 2088,102.0336,217.5970,33.2921,81.6511,0.99886894 2088,415.5787,224.5746,30.6227,81.1813,0.99876809 2088,75.3284,209.4153,36.7642,97.4526,0.99607217 2088,389.5139,226.9333,30.8847,83.1262,0.92979109 2088,239.3536,212.9492,21.7085,56.3677,0.52126044 2088,204.2521,217.5257,22.3866,54.1658,0.51597196 2088,219.6265,214.8053,21.4767,61.0404,0.47017929 2089,68.0172,212.0654,36.8453,101.8880,0.99912387 2089,450.8463,229.2807,38.3817,109.9587,0.99840093 2089,419.3798,228.0300,35.5286,107.8038,0.99836588 2089,33.0760,205.6268,40.4392,102.2368,0.99762297 2089,157.3502,215.6299,29.0327,67.9270,0.48099422 2089,180.6396,211.4274,29.4740,71.6277,0.45712125 2089,211.7348,205.8560,31.7115,83.1697,0.37154135 2089,226.0378,209.1101,29.8566,78.0738,0.15814210 2089,257.2156,212.7362,21.5620,44.9259,0.13877049 2090,49.9072,222.4104,45.0463,120.4216,0.99917209 2090,14.2324,211.1000,47.3505,135.5311,0.99906278 2090,519.9094,250.4980,55.5439,148.1264,0.99879891 2090,125.9755,222.0528,36.1178,89.2145,0.99810088 2090,474.2716,238.3924,54.3322,156.0763,0.99491155 2090,196.9375,208.9685,34.5825,106.9701,0.98416686 2090,165.6913,214.2626,33.2722,104.0560,0.80539477 2090,231.1609,217.4373,24.4476,61.4623,0.70031846 2090,277.1574,218.6544,23.8346,43.4411,0.18246356 2090,289.2193,222.1637,24.4701,52.4957,0.14983067 2090,304.9718,226.3692,20.1192,50.8300,0.13809487 2091,82.0918,211.6983,51.5347,132.3166,0.99982405 2091,130.8077,216.8086,45.5455,125.3451,0.99850905 2091,17.9594,224.2548,54.5015,143.1747,0.99826372 2091,173.8173,200.6408,49.4366,151.5804,0.96170032 2091,241.6953,215.2220,25.8664,56.2769,0.90934741 2091,223.6707,214.5909,25.9107,63.4330,0.84506541 2091,298.9999,213.6182,20.4154,44.2591,0.27774632 2091,313.3524,216.9347,19.7077,44.5003,0.17299098 2091,233.1137,214.6165,24.4216,48.9240,0.10250133 2091,322.1919,213.5052,19.4376,46.1188,0.10051008 2092,56.8328,206.8506,55.0276,177.7777,0.99384487 2092,98.9555,208.3592,65.7962,187.0966,0.94798839 2092,196.1452,222.0989,28.2227,66.9394,0.89649773 2092,6.3520,228.6045,58.0762,162.1194,0.82574022 2092,217.5170,218.7447,27.4198,71.5089,0.46455941 2092,290.2560,217.4327,21.5580,45.1837,0.39444080 2092,119.8913,274.4972,48.1127,115.7599,0.35350356 2092,304.6945,221.4146,20.2469,43.9620,0.34507710 2092,3.3840,225.9572,31.8213,76.5123,0.20221381 2093,162.0500,217.4919,34.8317,79.8398,0.94928700 2093,137.5337,220.2447,33.4663,84.2195,0.73061311 2093,18.3669,213.0690,35.2788,61.5784,0.57881546 2093,392.1521,223.7772,33.3756,76.9904,0.36565647 2093,38.6272,214.0816,38.9058,64.9258,0.23943335 2093,287.8688,222.1259,18.7035,39.9623,0.18166095 2093,8.1019,214.0901,30.3366,64.0265,0.13888045 2093,264.0696,225.1023,27.0571,40.5704,0.13417906 2093,242.2698,227.4600,73.7407,60.8005,0.10464281 2094,124.4448,221.0380,37.9324,82.5119,0.96926093 2094,256.4909,216.8092,22.4395,49.1339,0.19485322 2094,281.2704,220.8626,19.8559,53.5504,0.15032192 2094,83.3723,220.7155,46.4573,92.0591,0.12561709 2094,134.3460,219.5205,57.6597,81.3500,0.12257170 2095,85.8418,227.2352,42.8955,91.0889,0.98946893 2095,317.4023,221.1487,17.3550,49.0126,0.31965613 2095,286.8495,221.6373,20.8154,42.7104,0.30766276 2095,298.6475,221.8013,19.2318,50.5351,0.29657409 2095,541.1400,287.6249,57.9066,141.3195,0.15989044 2095,30.4695,232.0349,50.3539,94.2488,0.10204880 2096,343.1427,220.5668,20.7369,54.5534,0.51562011 2096,311.1726,222.5624,19.3085,46.8443,0.46435624 2096,328.4213,223.0135,18.3579,46.6809,0.38034862 2096,18.2469,230.4617,48.0856,87.4252,0.22194809 2096,189.7429,219.9739,54.1904,71.5861,0.19879200 2096,352.8342,221.0890,18.8554,50.5613,0.12159394 2097,346.6707,222.7879,19.9263,52.2121,0.95513338 2097,308.6344,222.2272,21.9194,49.5280,0.62716711 2097,139.4424,226.1516,37.2178,72.7168,0.46776527 2097,330.7013,224.6037,18.0489,48.2411,0.45995834 2097,358.0733,224.5867,20.1502,57.3243,0.24628112 2097,338.9839,221.2170,19.7945,50.1047,0.13602036 2098,330.2699,215.6266,22.3414,57.9347,0.99876666 2098,313.7295,213.8585,21.2731,54.5023,0.93488777 2098,354.1410,219.2407,20.0571,55.8948,0.83028311 2098,51.9966,232.7695,44.1098,105.8489,0.66532582 2098,36.7954,247.2862,47.1702,124.8558,0.64623833 2099,345.7533,214.2106,26.3444,67.5065,0.99792910 2099,375.3479,220.4832,23.4208,52.1804,0.81001997 2100,379.8862,213.6093,27.5677,73.3896,0.99516106 2100,407.1321,220.5118,24.6554,64.0779,0.78293502 2100,217.4682,215.8502,51.0836,115.7661,0.19890901 2100,200.9644,141.0784,24.3763,58.9401,0.11758018 2101,433.2130,224.6518,22.8603,60.8139,0.98417443 2101,411.6740,217.9278,26.9815,69.6389,0.97424084 2101,445.9340,224.1626,25.1849,68.2703,0.89738202 2101,423.5053,218.0562,24.5644,71.2084,0.41736758 2101,404.0186,213.8166,23.2616,64.9043,0.17631263 2102,440.9794,238.3060,26.6854,74.7395,0.97001147 2102,463.3100,240.8627,23.2690,64.3968,0.84396780 2102,424.7535,234.0470,20.4978,51.3662,0.46605617 2102,314.8608,234.5325,44.2313,118.0045,0.28437629 2102,471.0061,246.2374,23.8111,67.5167,0.13750897 2102,328.6381,221.5015,23.7095,61.3860,0.12039102 2103,453.6555,247.6562,32.6546,96.4534,0.99810946 2103,430.1155,245.1966,23.5281,62.4727,0.74824142 2103,487.2408,249.0566,37.6178,92.6574,0.47349638 2103,364.7354,238.4443,68.1985,47.8942,0.15827127 2103,479.9474,250.2755,25.2309,88.4025,0.14506653 2103,421.8496,243.5396,37.3455,103.4445,0.12078151 2103,401.0160,239.3457,26.9173,39.4277,0.10639527 2104,458.4518,241.0793,34.7189,98.6659,0.99659169 2104,429.7395,227.0891,25.8450,59.7047,0.99424988 2104,482.3784,237.3466,25.3168,95.6649,0.88734603 2104,370.3168,217.5811,64.0217,50.5976,0.22905546 2104,528.6492,184.3997,23.7106,52.8690,0.17745003 2104,221.5134,127.4054,30.7771,76.3441,0.14849472 2104,399.6154,223.0370,26.2473,42.8925,0.14230341 2104,421.8444,221.5496,35.8974,107.4531,0.14141762 2104,313.2303,220.3006,33.6769,77.0715,0.12709312 2104,341.1757,217.7906,70.9593,44.6335,0.10545970 2105,464.3954,231.9883,49.1491,145.6219,0.99916339 2105,284.9913,214.7882,32.4359,81.4314,0.26205429 2105,337.6356,245.4975,45.5820,89.4984,0.22363462 2105,381.4506,213.4453,23.1377,46.9419,0.13046315 2105,529.1489,179.8924,20.6869,53.0572,0.11777131 2105,301.1319,215.8155,27.0894,52.1183,0.11402604 2105,339.0215,262.2494,30.9708,49.4601,0.10103371 2106,494.3621,224.2974,77.3901,215.3119,0.99903774 2106,481.9297,235.4341,44.3766,153.2895,0.53520465 2106,391.1918,206.0535,25.3730,57.1023,0.48852906 2106,246.0862,198.1037,32.5807,83.0745,0.43324661 2106,486.7126,225.8131,31.7044,103.9312,0.22035079 2106,520.6940,179.2698,38.5931,98.3241,0.17526841 2106,362.1498,204.6669,19.3370,44.7859,0.11103290 2107,503.8224,228.3118,73.6886,226.0560,0.93664974 2107,573.4696,231.1800,60.0578,274.2297,0.64010882 2107,334.8957,190.4923,25.5293,58.5316,0.63789821 2107,368.5319,193.1377,24.7346,63.1070,0.27723870 2107,203.0448,190.8250,38.1379,97.5891,0.26256913 2107,61.1194,50.2928,48.5369,114.9821,0.14046918 2107,350.8934,194.3611,23.6199,55.8619,0.10993503 2108,317.9376,214.9815,21.3032,49.6039,0.54234028 2108,151.7910,214.4876,38.2723,83.7578,0.44453266 2108,343.4585,217.7909,24.5894,52.5063,0.25082892 2108,297.8511,214.4186,19.7548,44.1099,0.24709208 2108,8.6529,58.2369,43.5377,112.1195,0.10670715 2108,151.6495,253.7860,47.0402,107.0034,0.10490708 2108,168.3595,218.0936,34.1513,75.0476,0.10221462 2109,59.9939,208.6639,38.5537,98.2543,0.67242098 2109,296.0744,209.1309,27.3025,69.2402,0.30516675 2109,247.3317,212.8422,24.5651,49.5783,0.16075070 2109,241.4094,206.2794,45.4043,107.3995,0.12706600 2110,103.3838,204.4621,22.1812,59.0845,0.23306496 2110,89.8113,204.9366,23.3870,55.9341,0.20483287 2110,170.2522,205.7177,41.8851,106.6707,0.10223044 2111,135.5154,201.2372,66.3895,65.6637,0.16121042 2112,191.7292,208.0140,30.6903,76.9155,0.57518882 2112,211.9233,212.7106,38.1546,87.9652,0.56482959 2112,127.0164,205.2444,27.5231,47.9993,0.44796613 2112,121.0898,203.4863,58.0610,69.7171,0.35138506 2112,152.7413,210.5520,69.5107,71.1810,0.30654287 2112,140.2003,205.5747,23.9386,51.4335,0.17186917 2112,530.7763,164.9363,49.4421,118.6322,0.10154471 2113,158.7739,206.9876,23.5326,55.2252,0.96956223 2113,173.2561,205.6865,21.0868,49.4984,0.79400939 2113,252.6213,215.9266,33.8126,82.4352,0.73838449 2113,194.3234,201.5636,42.0641,107.5198,0.68427575 2113,235.6693,213.8307,30.8506,79.1926,0.50945705 2113,184.8672,203.7870,21.7480,52.4351,0.30717620 2113,68.8073,271.1882,54.5071,90.0520,0.16649443 2113,148.6562,207.3048,24.9450,51.6190,0.14075454 2113,185.5388,169.2042,26.9457,69.6732,0.13057479 2114,234.1520,206.3281,19.8246,47.6655,0.98905599 2114,193.5085,206.7751,24.1626,52.3307,0.96986496 2114,304.3091,213.1715,36.4511,86.7311,0.59235215 2114,287.3362,208.1212,33.3063,94.6229,0.56369793 2114,246.1756,202.5255,20.4447,52.7177,0.55546927 2114,416.9703,283.5551,34.4789,78.2206,0.30968618 2114,279.9911,168.8121,31.2226,74.4115,0.26714033 2114,164.5593,196.2151,21.6404,53.1418,0.19777423 2114,447.8506,253.0452,43.8538,82.7687,0.15250313 2114,257.6045,203.0630,31.5490,86.1298,0.13930261 2115,207.7972,207.5315,25.7990,59.5301,0.99611104 2115,253.5945,209.4596,23.0203,53.7242,0.99181116 2115,189.8147,208.9548,24.7817,55.3264,0.91143775 2115,335.4644,219.1395,35.5682,99.6772,0.63549525 2115,313.6015,215.9999,31.4668,93.1915,0.50531793 2115,177.8854,202.2599,26.9946,52.8429,0.21703544 2115,265.9886,205.9383,39.7806,102.2393,0.21183008 2115,118.0162,283.3460,46.5999,98.6906,0.14442416 2116,203.3843,211.6880,22.7993,51.5861,0.92386746 2116,252.0765,215.5443,19.1110,48.9869,0.89543200 2116,180.9682,206.5667,24.9603,55.5365,0.83073157 2116,317.7880,218.9674,36.2589,116.1452,0.54100406 2116,342.4761,224.9453,33.7548,109.2483,0.42575604 2116,177.7011,201.7531,51.8871,63.0584,0.27040997 2116,193.1665,208.7731,23.5649,54.5938,0.19583382 2116,271.0868,213.6500,25.5715,78.0731,0.12441616 2117,358.1364,227.2104,40.6580,108.5444,0.98843861 2117,336.7817,224.0395,38.7885,115.8110,0.98791099 2117,288.3001,216.3963,30.2229,81.7057,0.86889249 2117,215.3164,217.5463,24.1159,46.9230,0.80101812 2117,268.5880,218.5968,31.2708,78.8277,0.61649895 2117,184.6299,215.4177,23.4411,49.3203,0.56045341 2117,174.6847,211.9332,68.2304,63.3485,0.38521272 2117,198.4047,212.5318,22.7237,50.9844,0.36501873 2117,253.7291,210.6568,56.5398,109.0542,0.10983905 2118,382.1963,228.0405,45.0406,140.6942,0.99813902 2118,419.6507,229.7946,42.3539,149.6052,0.99278957 2118,322.3358,220.7317,36.7136,94.3908,0.99133086 2118,401.2444,224.8058,44.9249,146.4378,0.84106141 2118,302.8631,217.7655,28.4683,78.0751,0.81253946 2118,221.8962,221.4430,21.3450,46.0244,0.67265201 2118,255.1883,220.1883,20.6093,46.1447,0.45254779 2118,238.4731,216.7505,22.0589,48.5069,0.28492588 2118,343.5145,218.2620,23.8969,82.4720,0.21385534 2118,218.3400,213.9363,70.4628,69.2240,0.16902751 2118,305.2197,207.0701,42.5133,117.0534,0.11811581 2118,263.2849,214.6546,22.5849,44.0728,0.11307257 2119,406.2485,218.8229,59.1977,200.7330,0.99919224 2119,454.9614,234.3388,56.4048,178.5007,0.99717063 2119,351.2333,216.6199,35.4967,101.6747,0.99688649 2119,317.6491,218.8363,27.8994,72.5482,0.99637663 2119,223.0123,217.5603,22.4489,47.4091,0.92149222 2119,241.6586,216.9635,22.4678,45.6674,0.58666003 2119,267.6993,218.3124,21.0669,51.9398,0.55898911 2119,231.6388,212.1754,22.4150,50.7493,0.37582505 2119,299.7491,218.0977,21.9934,51.5469,0.37214199 2119,475.9611,267.5125,43.6804,122.9345,0.21502307 2119,399.3328,231.3417,42.6339,139.8235,0.14259332 2119,260.0787,214.7907,19.2482,52.2204,0.12341341 2119,264.4691,222.9980,61.0564,77.1052,0.10222044 2120,419.6508,220.8996,37.8445,114.6069,0.99154007 2120,368.6389,223.5750,31.9184,91.9766,0.99079800 2120,509.3306,260.1631,75.2770,227.0157,0.98500848 2120,389.7433,222.2531,28.1664,86.7910,0.94403452 2120,572.5291,235.7645,62.2910,259.7298,0.92534888 2120,309.9334,224.4196,30.0123,67.7532,0.82822138 2120,254.8164,222.2543,26.4613,46.6804,0.82722688 2120,405.3785,219.9323,32.9137,111.6310,0.53712034 2120,282.0433,225.3851,25.3408,62.6385,0.21384385 2120,322.2446,222.2563,26.1093,62.6358,0.13134149 2120,308.0862,206.9592,40.7344,125.0434,0.12534842 2120,272.3900,222.2299,23.0418,65.3749,0.10965577 2121,532.0750,220.7864,43.5260,130.2849,0.99422997 2121,449.3870,220.9009,31.8596,100.4647,0.99080920 2121,473.5410,222.3314,31.5849,100.2056,0.98639691 2121,317.3530,217.0800,27.4914,47.8062,0.92907679 2121,493.4381,224.0241,32.4480,109.5586,0.91196102 2121,505.7868,224.7926,29.4824,91.7185,0.22419755 2121,355.4375,208.4206,27.1987,69.9711,0.17661773 2122,463.6258,224.2695,47.2746,127.6982,0.98780012 2122,574.2886,220.7960,47.8409,169.6727,0.97134471 2122,528.4779,232.3820,41.8724,133.1270,0.96565014 2122,301.5906,217.0015,27.6244,54.2626,0.81985927 2122,512.7073,260.2243,29.6806,78.0807,0.67762458 2122,488.6466,224.0870,40.1114,131.2666,0.52414232 2122,356.5595,212.8697,28.3333,79.7781,0.47745466 2122,494.6063,275.3526,24.8319,67.4219,0.47083732 2123,259.7871,213.5368,38.3229,90.8852,0.99884224 2123,480.6207,221.2007,67.2030,207.0576,0.99874043 2123,509.3390,225.5905,66.5015,198.6635,0.98697567 2123,576.7784,227.9276,53.6841,200.1413,0.97183740 2123,347.7628,213.4811,35.9386,81.8701,0.64709568 2123,89.1241,203.7160,25.8776,57.3788,0.30845621 2123,376.1850,213.0729,19.1072,46.9982,0.23374586 2123,313.0058,208.2929,29.8051,64.3039,0.19398957 2123,507.1281,307.9288,34.8780,116.5612,0.17395203 2123,528.6217,305.0216,41.4399,123.2134,0.14827059 2123,537.5836,231.6583,45.2537,131.1559,0.12089015 2123,258.1444,238.7608,46.8570,109.9983,0.11763640 2124,226.8726,214.8245,47.6715,113.6115,0.99778342 2124,283.6931,227.4387,31.0049,85.6360,0.99656147 2124,538.9289,272.2030,55.9750,175.3852,0.97228712 2124,561.0735,254.5909,71.6172,228.1553,0.71856266 2124,406.8977,210.7794,20.7343,52.3599,0.65787458 2124,374.6767,213.9483,19.8567,49.1364,0.64634633 2124,339.1845,221.3848,33.5299,70.8299,0.58026952 2124,6.8932,185.3309,37.6666,91.8767,0.23676777 2125,257.8027,224.4500,35.3939,102.0438,0.99389160 2125,293.2565,217.2704,33.3992,98.2417,0.98758876 2125,177.3020,215.2068,57.3858,141.9332,0.98736429 2125,321.8879,222.7866,29.1170,79.6344,0.98520434 2125,367.8744,217.8580,23.9402,48.3925,0.94846141 2125,306.8916,216.0865,34.7112,94.2183,0.74388438 2125,391.1375,215.5325,21.6396,47.6049,0.46928385 2125,199.2529,215.5503,40.8063,104.2576,0.32484162 2125,254.9332,126.3793,25.2876,68.0409,0.28147709 2125,368.4952,216.2530,61.8320,64.2870,0.15372886 2126,249.7225,218.4002,35.2203,99.1807,0.99877906 2126,222.3688,213.2112,36.8186,109.7379,0.99824345 2126,173.8169,228.8898,42.9972,117.1745,0.99662232 2126,31.7522,234.6673,79.3919,216.3314,0.99636471 2126,343.6978,216.5290,24.2448,45.7564,0.68158019 2126,276.8663,209.0859,21.7212,44.7442,0.17165036 2126,284.2546,220.4616,46.8859,114.2603,0.15665355 2126,332.3116,215.9539,23.8456,50.4474,0.14607437 2126,323.2175,222.1496,58.0906,60.6167,0.13540962 2126,28.1806,258.5015,51.1342,123.8074,0.10559749 2126,149.0893,193.5676,43.7041,108.9196,0.10464739 2127,41.1235,245.3301,64.6850,134.1084,0.99900621 2127,158.7520,226.8694,45.7926,110.6201,0.99892044 2127,118.3357,213.3697,45.6373,129.8371,0.99888927 2127,512.3383,189.3940,23.8441,51.4541,0.19368789 2127,302.7242,214.3708,24.6204,50.4333,0.13275485 2128,54.3153,210.6967,57.7861,151.9389,0.99875379 2128,96.5561,216.4160,58.2319,141.1582,0.99697024 2128,241.8229,216.3786,25.5049,46.8076,0.32623005 2128,259.3762,211.7356,67.0378,58.1138,0.16193156 2128,304.9607,209.3480,20.5091,44.9163,0.11449531 2128,315.7254,214.0819,28.2769,40.5601,0.11052925 2129,43.9112,214.4778,69.3985,198.1739,0.99873686 2129,356.7717,216.0146,35.1483,86.8222,0.99583352 2129,16.1070,223.0405,40.0455,149.2817,0.40819967 2129,307.7519,207.8616,21.2797,48.9504,0.33343166 2129,296.8542,209.2666,22.9981,48.7939,0.18018371 2129,256.5705,216.2988,26.8671,54.0434,0.17959771 2129,60.5149,107.4511,61.4995,174.6915,0.10113989 2130,387.2417,228.6660,42.3912,102.6863,0.99553752 2130,304.2201,213.8590,22.4311,63.5366,0.75789571 2130,320.0826,217.6279,21.8134,60.9315,0.64204276 2130,290.5995,213.3005,21.2326,52.1458,0.34516525 2130,307.2989,205.6866,34.0227,90.9898,0.25721282 2130,218.7885,210.8760,67.0287,59.4352,0.18045813 2130,266.4350,218.5513,19.0474,40.4541,0.15903278 2130,230.0356,223.4313,29.1786,45.5992,0.11210371 2130,573.5345,312.3118,33.5879,77.2411,0.10779425 2130,276.7253,215.6812,19.2818,39.0261,0.10115823 2131,420.5060,232.1756,59.8740,154.9953,0.99965405 2131,304.2436,216.3911,24.3772,77.7511,0.98219138 2131,319.7032,215.5808,26.7445,74.7068,0.93232834 2131,259.3766,218.2450,19.4661,43.1569,0.27945426 2131,594.9616,118.6397,31.1732,87.4610,0.24962266 2131,27.0251,210.9453,37.0483,66.2082,0.14630951 2131,247.9299,218.6245,20.2378,43.5392,0.13107139 2131,210.4243,212.4365,71.1964,62.4465,0.11061570 2132,514.4907,238.9462,70.9544,209.9440,0.99322402 2132,341.2059,214.2443,28.6115,86.6457,0.99298149 2132,117.2395,213.1692,45.1802,121.2659,0.99239981 2132,320.3144,214.0836,28.7291,88.8042,0.97343886 2132,153.1580,218.1448,40.7160,92.8950,0.92685843 2132,148.3527,239.7943,49.9017,126.7424,0.55162179 2132,273.7542,218.7719,18.5956,44.5154,0.40197101 2132,256.3639,219.9059,22.5115,45.3532,0.37830862 2132,541.3314,222.8518,25.4943,64.0289,0.36414060 2132,360.1343,218.4016,23.0317,63.7719,0.30269715 2132,350.4755,209.5639,35.4568,97.8568,0.12716338 2132,148.7212,260.0371,30.4849,68.5790,0.11412590 2133,141.6479,227.2610,35.4033,107.6184,0.99260217 2133,343.4867,216.0924,34.4299,90.8266,0.98273039 2133,122.1069,223.4927,39.3616,107.5236,0.94845796 2133,364.1833,215.5096,30.0629,90.0340,0.94702268 2133,63.8861,200.2978,65.3743,197.6246,0.89953840 2133,292.0475,219.6157,21.2229,50.2659,0.81110620 2133,272.0403,219.3615,28.0154,59.9272,0.52621818 2133,566.8297,226.0843,20.3503,51.4566,0.17457119 2133,374.0000,214.7338,37.1284,102.4834,0.15656802 2133,69.2213,274.0107,42.5310,124.5322,0.12844278 2134,110.3136,237.2262,60.3548,150.8405,0.99962032 2134,62.0632,237.5217,62.9303,138.2385,0.99761003 2134,380.3391,215.7049,34.9246,102.9577,0.99733794 2134,359.9195,221.1307,36.9595,100.3770,0.97004569 2134,89.1287,226.6735,52.8354,165.1404,0.37530237 2134,42.9235,240.4047,38.4988,94.1955,0.34813538 2134,14.3474,223.8720,60.1357,201.4896,0.20577812 2134,304.5286,221.5941,19.7200,43.5287,0.15503520 2134,288.3832,224.7593,25.1067,52.6372,0.12735349 2135,397.0621,213.8661,35.0801,106.0997,0.99897718 2135,20.1183,234.8024,76.3013,247.7416,0.99746656 2135,375.3832,214.3040,34.1972,110.8947,0.99285150 2135,382.8539,207.4749,26.0857,63.9134,0.13147089 2135,501.6704,224.6554,75.1997,42.9668,0.10379094 2136,418.6605,215.5698,34.6978,112.9123,0.99784929 2136,394.3390,210.6023,37.5269,118.0377,0.99115783 2136,315.9615,218.9639,24.3175,62.5159,0.96285206 2136,555.7066,225.9309,22.9192,59.2042,0.42316052 2136,573.7263,229.1706,24.3796,55.4301,0.33130229 2136,513.3688,235.7361,31.2144,68.4858,0.20617791 2136,298.4071,215.8388,25.2207,61.1685,0.20393437 2136,305.6892,224.5841,26.8363,64.5758,0.15615317 2136,545.8313,104.7032,25.9803,52.3560,0.13685685 2136,396.9826,215.3441,25.4939,64.6028,0.12144849 2136,350.0471,210.0941,17.1864,37.0400,0.11992270 2136,538.9337,226.2325,61.1748,66.6882,0.10889642 2137,451.6076,214.6482,36.5695,116.3198,0.99611390 2137,426.4583,214.9253,39.8657,118.6016,0.99318075 2137,335.1799,221.9976,28.2623,76.3361,0.97558290 2137,559.7861,227.4303,27.9804,79.1713,0.81621456 2137,521.6931,234.1587,38.3964,114.6371,0.76056230 2137,320.5646,222.0261,25.1910,68.2644,0.69043225 2137,610.3014,235.0222,23.2574,57.5733,0.55386496 2137,578.4734,233.4514,24.1341,65.4919,0.54637349 2137,367.9685,216.5283,21.6148,35.7578,0.28584167 2137,319.6281,213.3524,40.1319,120.3835,0.16644596 2138,383.5857,220.9020,28.5823,80.2128,0.99852765 2138,496.2071,217.5757,43.1890,121.6633,0.99796015 2138,361.8758,223.3928,29.6834,77.2069,0.99636292 2138,573.6649,250.0108,43.4862,149.8306,0.92866129 2138,464.0394,215.6961,19.7198,41.3118,0.50568384 2138,592.6776,236.5216,35.8665,136.6970,0.21208951 2138,409.8438,214.2871,18.9648,37.9651,0.10790877 2139,542.0341,223.0395,47.7969,130.1460,0.99837732 2139,397.4513,227.1387,34.1745,85.9282,0.99481678 2139,422.0269,226.3898,29.9358,91.8514,0.97594273 2139,529.9032,221.2305,36.7309,120.4652,0.36060387 2139,499.8790,225.8874,19.3198,41.0511,0.17835422 2140,520.9382,222.0135,54.7137,154.1253,0.99935740 2140,370.3873,227.1903,34.8318,103.2618,0.99890447 2140,405.1968,225.3051,39.3864,106.3046,0.99644017 2140,483.4821,227.0981,18.6274,44.1841,0.55149597 2140,387.6188,227.4764,38.0064,102.9194,0.38139153 2140,497.7163,223.2773,17.3737,45.3401,0.11051493 2141,455.3749,239.9335,65.1993,163.7175,0.99953109 2141,308.4252,230.0805,49.1281,133.0437,0.99826860 2141,354.9810,230.1757,44.1463,129.5316,0.99103624 2141,436.7144,230.1016,19.9696,44.3402,0.50378674 2141,459.6677,231.0625,44.1274,114.0612,0.15348038 2142,202.6083,212.3643,58.5775,165.7390,0.99920863 2142,270.7552,218.0260,54.9623,162.8812,0.99134827 2142,298.6660,219.6689,68.5919,226.4475,0.99065137 2142,359.9389,211.6686,21.6755,54.1784,0.98725295 2142,379.2419,211.4414,17.9018,53.8596,0.52846193 2142,290.7942,214.5778,49.9515,136.2000,0.19094987 2142,274.3093,211.0276,36.9027,99.3885,0.15582167 2142,315.9435,216.1479,48.4098,112.1139,0.10959564 2142,394.2596,213.2032,18.8399,54.0724,0.10040351 2143,50.0899,206.5703,80.5235,213.3791,0.99256492 2143,199.2253,211.4638,23.8730,61.0003,0.95698220 2143,31.3683,205.4665,53.8374,204.0157,0.23189729 2143,216.8208,211.3415,18.8757,58.5996,0.11701940 2144,482.6360,240.3211,51.0464,149.5726,0.99862820 2145,300.1584,254.1972,63.2785,174.4657,0.99843401 2146,12.9501,222.1183,76.1274,248.5895,0.73582733 2146,31.3027,258.0740,95.5400,235.3701,0.20099555 2147,577.9262,230.3069,41.9060,122.2635,0.99651712 2147,520.5903,223.7911,28.3876,40.4521,0.17749397 2148,510.2385,227.8179,42.8489,125.9120,0.99698776 2148,476.4829,232.1892,41.8524,122.4542,0.99319464 2148,429.6519,225.8391,27.0638,45.7453,0.56283540 2149,332.8001,224.4652,48.8512,134.7166,0.99944270 2149,382.3433,229.1493,46.0472,127.4678,0.99869633 2149,587.6778,42.5813,35.1064,75.5623,0.16796519 2149,370.8599,253.8742,35.2310,100.0778,0.10336478 2150,191.3342,228.8388,58.2107,147.0163,0.99903202 2150,242.8236,219.0322,49.4732,151.7796,0.99691904 2150,221.0986,222.8988,50.6738,145.0445,0.10351296 2151,103.9107,237.4302,67.3393,176.8354,0.99981833 2151,162.9113,235.4961,68.7672,163.0869,0.99708909 2151,483.9879,36.1135,33.0902,77.0562,0.15767612 2151,158.8295,222.6660,24.9874,66.9341,0.11967559 2152,57.2297,227.0027,87.8362,234.7474,0.99652970 2152,9.4546,224.6607,63.3064,236.2063,0.87119865 2152,117.9494,226.4580,27.8292,67.0108,0.50767934 2152,477.6328,26.0140,32.7748,80.5262,0.15552598 2153,60.7813,223.8124,40.1394,89.6183,0.74206877 2153,68.6013,217.7405,28.2833,57.4489,0.38239115 2153,76.2328,219.3753,42.1357,95.6492,0.12243034 2153,209.9808,146.8093,40.1154,93.2384,0.11552358 2154,14.0673,248.7727,53.0666,99.4850,0.65151918 2154,61.1897,216.2720,29.3900,57.4345,0.43864164 2154,34.0421,226.0590,61.4337,131.2076,0.23151675 2154,291.5127,207.4154,17.5735,37.7651,0.14571843 2155,60.0719,214.1001,30.6399,62.0208,0.69755107 2155,324.3076,206.6835,21.2138,35.3642,0.58579284 2155,34.1228,211.6018,35.1616,65.2213,0.20688282 2156,324.1656,212.6526,21.6433,38.2556,0.70371795 2157,319.3341,218.0950,22.0036,36.9014,0.55836558 2157,392.2368,217.7125,44.9030,77.5879,0.11928128 2157,63.0790,104.4441,37.0249,91.0528,0.11298385 2158,319.6839,211.9736,22.5458,49.5686,0.75946534 2158,328.4138,217.8645,20.3004,45.2108,0.53875732 2159,335.7746,221.8170,22.0356,55.0898,0.99681199 2159,317.0309,223.5367,23.1507,57.9086,0.99405015 2160,338.4372,215.3181,30.1966,66.8454,0.99890757 2160,366.3684,218.1423,25.8046,68.0310,0.99848485 2161,383.9922,215.4146,33.9185,89.5078,0.99913138 2161,413.4071,217.0876,29.1428,87.3628,0.99632406 2161,325.6884,213.5902,18.5590,39.3122,0.16343960 2162,447.3169,241.9546,42.2644,122.9656,0.99839556 2162,475.6570,248.6924,36.9914,109.0471,0.97571158 2162,395.9444,239.2035,25.9119,43.9123,0.38921058 2162,340.0607,235.8854,21.3097,42.4288,0.36895251 2162,249.6249,200.4276,23.7849,53.3632,0.22616202 2162,321.6456,231.3040,19.2529,40.1241,0.19268024 2163,567.4966,226.2445,64.1005,234.4083,0.99875671 2163,329.7212,218.3639,25.1513,55.4073,0.98771262 2163,420.3185,228.3951,23.4818,51.2169,0.97633141 2163,360.1408,223.8205,22.0665,50.0012,0.93916917 2164,393.0782,230.2194,26.8661,60.6677,0.99930084 2164,287.7746,218.9348,28.8488,61.5302,0.99907422 2164,327.3329,224.0653,21.7358,58.5965,0.97789061 2164,214.5744,175.7169,33.3680,65.8843,0.37894660 2165,333.0743,232.4738,30.3463,62.0231,0.99950647 2165,208.0324,215.2914,28.2218,78.1468,0.99816620 2165,252.9070,220.0587,28.7594,70.6967,0.99027115 2165,128.2390,162.3083,38.9360,86.2522,0.21648842 2166,182.7126,204.5709,40.3342,97.6282,0.99896163 2166,282.6197,217.2487,36.4154,80.9172,0.99573690 2166,126.0848,199.8692,35.9929,108.1952,0.98634350 2166,425.7966,210.2451,23.2139,56.6539,0.56698871 2167,125.5191,213.9080,52.8118,141.3369,0.99975157 2167,243.4470,230.5181,44.3759,103.7653,0.99848831 2167,421.1134,232.7839,29.4881,62.8014,0.61669463 2167,49.3409,217.3403,41.3347,109.9659,0.55125421 2167,309.4771,217.3393,19.9600,44.9841,0.40461153 2168,178.0694,227.7966,57.3571,131.7679,0.99941707 2168,5.1676,215.9195,73.9634,186.2769,0.99514914 2168,405.2500,226.2217,27.4997,73.8219,0.93117833 2168,311.3259,216.8518,19.5180,46.7019,0.53960985 2168,2.1244,282.1374,53.8984,136.2673,0.12588552 2169,371.1954,216.2427,32.9047,80.5249,0.99954009 2169,59.4009,219.9515,68.1101,170.9749,0.99501288 2169,303.2582,217.6007,18.0624,41.8291,0.25983950 2170,320.7845,229.8040,38.7089,93.9316,0.99907851 2171,397.3565,224.3409,44.2188,129.1463,0.99715805 2171,547.3059,293.9797,38.5157,95.0882,0.27180621 2172,570.7876,226.5894,58.4578,189.2410,0.99229443 2173,378.5129,220.7701,21.5239,41.6211,0.35537493 2173,392.0402,217.6829,19.4926,46.2809,0.32677811 2173,502.3745,224.6330,25.2686,55.3287,0.19726047 2173,153.3888,124.9766,59.5966,159.7749,0.18996580 2174,388.0453,221.9538,20.9032,45.9493,0.34725243 2175,545.7809,236.4496,41.7995,126.6298,0.99618816 2175,408.7012,227.9498,21.4457,55.0215,0.50121862 2176,587.9192,213.8118,21.2907,58.1214,0.56810153 2176,488.7499,216.5035,22.6676,50.1256,0.28667939 2176,481.7992,211.2993,22.0624,47.1023,0.18972495 2176,584.4028,218.2141,36.4993,79.0610,0.10153420 2178,434.7469,220.3719,19.6999,39.5249,0.45288843 2178,493.2122,194.2746,26.3322,50.1560,0.36165652 2178,390.5680,215.9874,28.0450,35.3436,0.32697168 2178,346.9161,219.5428,19.9164,38.4365,0.12597504 2179,474.7231,222.2401,19.2140,47.0941,0.85847121 2179,486.3231,223.9298,20.4279,47.6902,0.66407722 2179,371.5591,218.6391,21.7958,44.9695,0.65595365 2179,419.5476,216.2882,26.1082,43.1712,0.49871027 2179,218.4614,215.8944,20.8036,40.7170,0.14855427 2180,566.0302,218.8745,24.2554,60.2170,0.99935710 2180,518.9397,225.2067,20.9729,58.3537,0.99496043 2180,535.3659,225.3269,21.8997,56.4774,0.92636943 2180,435.0626,216.2269,22.4720,44.2537,0.75728607 2180,380.0902,225.3315,20.4318,42.7447,0.53689063 2180,206.4112,216.9426,21.2672,44.1599,0.50901824 2180,447.8852,215.9873,19.9348,44.2741,0.19233580 2180,439.9486,222.7279,42.1736,73.7169,0.14306669 2180,135.5562,215.9714,27.6314,52.3206,0.11556058 2181,465.1494,212.6443,19.9995,50.8464,0.93391383 2181,393.4765,221.8956,24.1535,52.1375,0.75381267 2181,182.7149,219.8212,25.9551,45.4381,0.29902899 2181,87.3678,224.5278,29.3083,53.0267,0.12085959 2182,509.5021,214.8685,24.0787,58.2795,0.99127340 2182,520.5568,216.4706,23.8692,57.9258,0.96426588 2182,157.4566,218.7504,25.2209,55.5016,0.94482732 2182,43.0681,204.3459,25.4730,49.1868,0.85610664 2182,417.2788,218.4951,32.4637,81.6209,0.64061487 2182,400.9423,196.1153,26.3834,66.5579,0.44637015 2182,26.6705,201.8561,30.6155,54.0407,0.13124318 2183,582.2671,219.2281,27.6493,71.9141,0.99811691 2183,122.4123,215.0376,34.3973,75.3923,0.99764860 2183,598.6502,220.1057,28.1782,65.0156,0.99745649 2183,469.5950,222.5162,40.4801,102.7764,0.98597920 2183,137.8215,218.2715,26.1915,64.3657,0.29290593 2183,242.6854,216.6756,16.7939,30.2755,0.15196240 2184,47.4583,222.7957,39.0341,99.7702,0.99160528 2184,62.0305,226.4020,38.9754,88.1181,0.77345777 2184,27.3918,225.0563,44.1970,108.5715,0.29159325 2184,369.1889,130.1829,32.3679,85.2324,0.11753952 2184,590.9861,246.7164,42.8283,136.9700,0.10289010 2185,228.3356,215.9817,27.1280,53.0800,0.96874583 2185,572.7728,209.8633,26.8262,57.7819,0.55757058 2186,139.3328,211.4453,35.9733,79.7082,0.99435163 2186,604.1740,210.6367,28.2755,61.8641,0.98879480 2187,7.3751,214.9406,43.3952,102.6611,0.79149520 2187,537.3319,168.9729,22.9004,49.1599,0.13546662 2188,329.9917,216.1438,23.9173,51.3876,0.74044013 2188,456.3005,214.2877,23.6919,45.3731,0.31107768 2189,356.8719,222.4095,21.7070,54.6797,0.97554255 2190,382.7428,199.9842,21.7458,56.5027,0.55617988 2190,510.3255,194.4690,25.7269,55.3347,0.12028010 2191,409.5765,226.5490,25.7793,59.9712,0.99622548 2191,487.0102,224.9075,20.8887,45.3609,0.12893300 2192,444.1612,224.4087,31.3733,69.6862,0.99960184 2193,517.3154,230.7583,30.8794,77.6021,0.99923515 2193,554.2826,225.5902,18.5864,46.1903,0.81959760 2193,468.2495,243.6714,22.4196,61.8401,0.58059776 2193,181.3620,205.6443,32.0907,82.3986,0.10632829 2194,597.0194,226.2640,34.2196,95.9245,0.99733782 2194,515.0751,231.0005,34.0259,90.2956,0.95546925 2194,14.4274,116.4404,42.4724,111.6024,0.22835873 2194,587.7425,219.7333,23.6295,70.2883,0.13736279 2195,62.8459,199.9789,74.6658,54.3091,0.14320026 2195,534.8495,213.1980,22.4075,42.0109,0.13478997 2196,587.2302,212.8115,27.9472,58.0835,0.99808729 2196,45.6490,198.1774,77.8521,59.4617,0.10786229 2197,3.4141,187.6938,73.3598,67.8493,0.21671477 2197,38.2485,189.2451,47.6592,60.9699,0.16187066 2198,4.4335,194.3380,50.2253,72.0298,0.11655529 2202,595.7153,214.9205,36.3137,78.0654,0.51909894 2203,491.3637,220.1784,28.7960,68.7674,0.36339849 2204,585.1534,211.8172,35.5167,94.3886,0.80909884 2204,515.2397,215.7127,33.6776,75.7840,0.29220077 2205,239.8178,198.3713,46.1334,105.0966,0.13070546 2206,463.6253,216.7239,22.7158,48.6067,0.11774845 2207,474.3250,19.1073,30.3419,82.3368,0.11970156 2207,484.1481,218.0846,19.9174,36.6540,0.10998289 2212,425.3276,210.3803,20.9692,41.3453,0.11307275 2213,476.6609,217.4259,22.9347,41.1046,0.24548355 2214,528.7704,220.7529,21.3143,44.7217,0.34381303 2214,449.2894,213.8486,28.8530,40.5500,0.12012907 2215,459.7064,214.0710,20.4951,45.4216,0.76452076 2216,566.3470,219.8096,23.7687,55.7088,0.99098563 2216,478.1916,219.7104,21.5909,52.8633,0.96854591 2216,466.9436,215.8693,19.6941,54.5591,0.68849301 2216,514.8250,212.8120,39.0395,96.7284,0.11299273 2217,525.3382,219.8801,24.8761,67.9754,0.99736142 2217,512.5031,220.9558,22.4577,65.2110,0.78856885 2217,9.5945,196.7486,60.8270,57.8599,0.23359349 2217,28.1619,204.0755,29.5813,48.2569,0.13395894 2217,501.5541,222.5069,46.6288,73.1704,0.11802426 2218,424.5807,211.9263,20.6942,46.3520,0.11823799 2219,468.3391,222.1398,19.1815,39.9263,0.28191781 2220,540.8690,219.7580,25.7256,57.1193,0.95169723 2220,533.6389,215.0434,51.6563,69.1119,0.15003079 2221,474.5403,220.0142,20.1697,44.6443,0.75516540 2221,496.2966,219.1988,20.6954,47.8470,0.36710864 2221,451.1895,216.5689,20.6481,47.5730,0.24672520 2221,434.0571,104.3962,27.8312,48.2578,0.14939992 2221,18.2655,177.5278,30.9936,76.6983,0.10758881 2221,465.3284,215.4579,20.9041,48.3574,0.10704833 2222,540.3627,210.3812,22.4853,54.8025,0.99364531 2222,507.8994,214.9852,20.5109,45.8687,0.90560627 2222,523.3555,214.3193,20.8682,50.3142,0.72221375 2223,608.9959,220.5077,24.3815,67.7364,0.99615538 2223,592.5121,221.4111,22.6416,62.0404,0.99374235 2224,74.2853,233.8237,39.6580,94.4173,0.35745126 2224,90.2601,177.3186,21.7271,60.8650,0.15275724 2225,443.5307,208.2395,63.4256,43.7381,0.14981009 2226,515.7787,223.4024,22.8814,59.4900,0.92387033 2226,496.3572,225.8721,25.2634,56.8339,0.89151406 2226,370.7955,216.5728,30.0198,76.1248,0.14003345 2226,478.7931,216.2307,63.2535,69.1141,0.11888920 2227,521.2570,229.7630,26.4843,55.4446,0.99865854 2227,568.8227,233.9813,21.8195,61.2797,0.94300914 2227,553.0003,236.8672,24.0125,57.0389,0.79661763 2227,538.9549,228.6753,54.0424,70.1348,0.53962809 2227,515.5287,226.8661,49.2628,70.7513,0.13069621 2227,396.3295,229.4038,27.8263,51.5762,0.12370790 2228,589.9419,197.0973,28.0077,60.7518,0.98889118 2228,566.2887,197.2447,27.3819,65.8770,0.94452262 2228,403.1951,184.3595,50.7248,66.9333,0.17846395 2229,464.8608,211.6891,19.5251,54.6690,0.94983518 2229,449.7995,215.4700,20.8263,49.9545,0.85530663 2229,431.8970,199.1896,56.8191,68.9284,0.13237959 2229,435.4138,208.2805,20.1692,47.2188,0.11071997 2230,524.6904,212.5633,27.9275,82.3270,0.99519050 2230,508.3678,220.7282,25.5440,60.5771,0.92873335 2230,508.5991,225.3413,48.7559,126.8149,0.38578138 2230,204.7690,206.6346,26.7704,46.5184,0.26764685 2230,438.9439,214.8854,67.7682,56.5237,0.11506618 2230,472.0409,217.4656,24.1615,55.1199,0.11046305 2231,543.1243,215.9589,23.0152,54.0572,0.92683542 2231,522.7237,221.4082,25.1385,51.0175,0.43861759 2231,592.3149,217.8922,42.5173,103.9061,0.18457365 2233,560.9325,241.4388,43.3575,92.8077,0.11283065 2234,125.8634,232.5628,32.5308,40.8723,0.12025653 2237,363.6235,218.4209,37.6050,92.5003,0.15266913 2237,393.5839,216.8289,21.7498,43.7858,0.13057512 2238,358.4450,216.9276,22.8779,46.9173,0.34028405 2239,353.2723,208.4753,22.1712,46.5165,0.33963007 2239,341.7201,254.4493,39.8620,106.4241,0.20383158 2239,329.6405,198.0365,63.3595,56.5132,0.10960534 2240,422.4346,217.8905,20.8129,44.6260,0.45587730 2240,408.8082,219.8907,20.3084,46.5480,0.19689497 2240,328.1586,86.6851,56.4064,86.6098,0.12989125 2241,481.5499,217.1329,21.0067,50.7359,0.68225372 2241,466.7546,221.4475,20.4018,44.9476,0.43692905 2242,557.1768,208.1466,22.4773,50.3693,0.86296314 2242,542.4313,212.8513,20.6205,44.5434,0.32232693 2242,116.8505,230.7344,35.2605,68.4385,0.14920762 2243,597.0150,219.2903,29.0627,56.7043,0.86642164 2243,583.3468,221.9102,26.1617,49.4051,0.47981161 2243,563.3102,189.5242,29.1847,77.6330,0.20073478 2243,503.2800,112.9567,49.8349,130.1483,0.16664267 2243,143.2111,232.8159,30.8627,56.5685,0.10457357 2244,450.2233,204.8286,19.6051,41.2052,0.19253236 2245,524.8585,216.7968,20.9737,49.9632,0.98489463 2245,506.4561,217.1887,20.9459,48.8278,0.92692375 2245,489.1116,210.8957,19.6172,44.3074,0.42188835 2245,499.0084,215.2039,20.8108,40.5497,0.13679267 2246,589.9205,217.6375,25.8999,55.1661,0.74030614 2246,538.3800,214.5520,24.3916,45.6945,0.57001626 2246,576.8459,211.7289,24.1069,52.0148,0.25385717 2246,539.3775,184.9348,41.2891,88.5876,0.17965196 2247,592.2939,216.8411,20.8499,50.5895,0.72832257 2249,101.4752,207.0914,21.7193,44.6050,0.24585250 2250,69.7042,204.4491,25.2910,43.8196,0.26082370 2251,17.9807,196.5358,25.3100,56.7881,0.56404507 2252,63.8364,213.4599,23.5595,37.3669,0.10354164 ================================================ FILE: evaluation_script/state_of_arts/MSDS-RCNN_result.txt ================================================ 1,501.4891,211.0255,22.8042,49.9734,0.93672699 1,370.7085,190.7871,27.5148,54.9644,0.00000000 1,1.0000,381.9085,60.6944,130.2382,0.00000000 1,602.2355,395.3680,37.9112,116.7787,0.00000000 1,635.9348,493.2249,4.2119,18.9218,0.00000000 1,626.8940,458.0035,13.2527,54.1432,0.00000000 2,528.6124,222.1777,22.4922,52.5691,0.99989486 2,69.2255,213.9334,29.9534,53.4930,0.00018579 2,368.7142,194.5103,28.7238,63.8727,0.00000490 2,537.8168,230.3537,26.8054,55.4580,0.00000000 2,602.6804,394.9624,37.4663,117.1843,0.00000000 2,635.7872,493.2044,4.3595,18.9423,0.00000000 2,626.9082,457.3630,13.2385,54.7837,0.00000000 3,564.5382,233.5854,21.9097,52.9585,0.99995738 3,354.8312,208.2690,30.9887,61.7388,0.00002499 3,120.5807,195.8429,24.2055,53.9063,0.00000000 3,595.5574,214.3845,30.4618,62.7365,0.00000000 3,579.9906,219.5288,29.9634,60.7386,0.00000000 3,550.8708,198.5381,49.9897,99.2583,0.00000000 3,634.0633,231.7577,6.0834,73.6342,0.00000000 3,634.7563,155.7715,5.3904,75.8482,0.00000000 3,602.5772,395.3096,37.5695,116.8371,0.00000000 3,635.9120,493.3456,4.2347,18.8011,0.00000000 3,629.4057,480.2459,10.7410,31.9008,0.00000000 4,360.1105,216.4123,36.5213,63.1931,0.00000002 4,123.3952,242.0997,29.6868,61.2371,0.00000000 4,630.8864,169.7764,9.2603,80.0290,0.00000000 4,602.6218,20.7551,37.5249,263.8373,0.00000000 4,620.7251,29.0595,19.4216,138.6091,0.00000000 4,634.1208,80.9145,6.0259,73.7968,0.00000000 4,602.3621,395.3777,37.7846,116.7690,0.00000000 4,628.5019,95.0988,11.6448,104.4200,0.00000000 4,635.8914,493.3503,4.2553,18.7964,0.00000000 4,629.3246,480.5750,10.8221,31.5717,0.00000000 5,62.5243,213.4354,24.4330,55.7673,0.00000051 5,390.8837,208.8354,25.9610,54.1447,0.00000000 5,635.8062,493.4543,4.3405,18.6924,0.00000000 5,602.2746,395.1796,37.8721,116.9671,0.00000000 5,629.3572,480.9115,10.7895,31.2352,0.00000000 6,597.1992,186.4907,24.6463,55.7283,0.00000000 6,451.4825,218.7500,26.5451,59.7323,0.00000000 6,637.3049,189.5816,2.8418,63.3744,0.00000000 6,630.2535,1.0000,9.8932,51.6402,0.00000000 6,596.5480,16.1581,43.5987,265.6670,0.00000000 6,637.7378,55.9503,2.4089,65.8335,0.00000000 6,634.5435,157.2603,5.6032,75.5098,0.00000000 6,631.2813,49.1141,8.8654,81.6871,0.00000000 6,602.4936,395.5125,37.6531,116.6342,0.00000000 6,635.9595,493.2009,4.1872,18.9458,0.00000000 6,629.2797,479.9287,10.8670,32.2180,0.00000000 7,584.7227,216.6927,24.2510,68.3768,0.00000000 7,424.2434,219.1876,24.7563,53.6309,0.00000000 7,631.5795,208.0384,8.5672,85.6004,0.00000000 7,1.0000,41.6262,57.4350,263.2333,0.00000000 7,627.8801,459.2251,12.2666,52.9216,0.00000000 7,635.3184,486.6747,4.8283,25.4720,0.00000000 8,15.2651,123.3735,25.4801,63.9843,0.00000060 8,467.3324,213.7602,21.7670,49.0005,0.00000000 8,603.2643,181.1955,36.8824,265.4078,0.00000000 8,637.5323,153.9310,2.6144,64.9121,0.00000000 8,596.5015,34.9883,43.6452,275.1624,0.00000000 8,635.2256,126.7644,4.9211,66.8313,0.00000000 8,623.7267,3.6543,16.4200,137.6823,0.00000000 8,636.0456,214.6678,4.1011,66.8173,0.00000000 8,627.0873,233.0398,13.0594,121.4184,0.00000000 8,626.6296,78.5067,13.5171,124.5031,0.00000000 8,632.3089,486.2277,7.8378,25.9190,0.00000000 9,14.7797,144.8617,37.8186,91.0527,0.00000112 9,62.0252,213.9605,25.8947,53.9310,0.00000000 9,580.0320,217.3526,27.8954,63.9029,0.00000000 9,1.0000,80.7001,60.0242,249.6799,0.00000000 9,601.6618,398.5054,38.4849,113.6413,0.00000000 9,633.8761,125.1402,6.2706,77.4509,0.00000000 9,627.2900,454.4318,12.8567,57.7149,0.00000000 9,636.5380,491.8427,3.6087,20.3040,0.00000000 10,407.8252,206.9839,23.7087,51.5366,0.00000000 10,122.9185,198.6673,27.5883,53.1925,0.00000000 10,627.7844,455.7517,12.3623,56.3950,0.00000000 10,635.4934,485.8731,4.6533,26.2736,0.00000000 11,591.1217,101.0362,43.5508,111.2352,0.00000000 11,559.5974,13.3287,80.5493,248.0400,0.00000000 11,636.1215,203.2338,4.0252,62.5850,0.00000000 11,635.7341,146.4654,4.4126,63.3813,0.00000000 11,635.1281,78.0292,5.0186,69.4971,0.00000000 11,624.5432,94.5808,15.6035,126.8358,0.00000000 11,633.0330,230.9235,7.1137,76.8364,0.00000000 11,629.2238,475.8419,10.9229,36.3048,0.00000000 12,389.2850,194.3131,29.0538,52.2002,0.00000000 12,421.6555,206.0939,22.3501,53.1876,0.00000000 12,607.9561,155.4498,32.1906,87.2591,0.00000000 12,600.8244,120.2166,39.3223,264.3475,0.00000000 12,630.3175,163.3438,9.8292,86.6153,0.00000000 12,637.0157,178.4831,3.1310,67.4593,0.00000000 12,636.3082,142.8101,3.8385,64.2388,0.00000000 12,630.8513,109.2655,9.2954,91.1781,0.00000000 12,627.7040,456.0924,12.4427,56.0543,0.00000000 12,1.0000,84.8651,58.5137,256.5620,0.00000000 12,635.0876,485.9948,5.0591,26.1519,0.00000000 13,17.6246,212.5659,21.9471,50.0079,0.00000523 13,455.3349,209.1023,24.5940,51.4803,0.00000011 13,471.1104,212.6031,23.7813,52.5795,0.00000000 13,629.4629,1.0000,10.6838,50.1117,0.00000000 13,630.1127,482.3864,10.0340,29.7603,0.00000000 14,484.8493,208.4694,29.5189,52.9347,0.00393034 14,24.0036,207.9485,24.5173,51.4093,0.00001671 14,600.9993,194.3187,24.6190,56.0490,0.00000005 14,571.9150,175.7684,55.4731,138.0412,0.00000000 14,451.3384,211.6406,28.3417,62.7889,0.00000000 14,379.7786,215.6581,25.0459,52.3172,0.00000000 14,637.0848,177.6490,3.0619,62.4148,0.00000000 14,636.2296,488.2924,3.9171,23.8543,0.00000000 15,427.0899,213.1440,25.2141,56.0225,0.00000000 15,523.6257,217.4232,37.7945,89.7747,0.00000000 15,410.6912,208.7272,28.4264,59.8753,0.00000000 15,628.7684,457.6793,11.3783,54.4674,0.00000000 15,635.8730,488.0783,4.2737,24.0684,0.00000000 16,576.5012,222.8568,26.5744,51.5744,0.80499089 16,434.6518,210.9810,28.4366,61.3173,0.00000268 16,105.8541,212.7650,24.6561,56.1220,0.00000000 16,447.3514,200.8294,30.3932,58.5251,0.00000000 16,568.9700,188.8178,49.4411,98.7056,0.00000000 16,636.2132,488.4846,3.9335,23.6621,0.00000000 17,443.2517,202.9448,22.1763,51.3265,0.94343835 17,459.8253,198.7298,22.2850,50.3272,0.00616456 17,87.8858,198.9414,21.0594,48.1746,0.00000000 17,472.2697,191.8814,23.9196,50.1127,0.00000000 17,635.2806,148.8567,4.8661,67.0534,0.00000000 17,627.8990,458.7168,12.2477,53.4299,0.00000000 17,635.7255,487.5981,4.4212,24.5486,0.00000000 18,448.2101,212.4933,24.1437,48.7299,0.98690712 18,466.9639,213.6508,21.8016,49.6080,0.19933735 18,52.2512,216.3636,24.9936,49.4241,0.01778033 18,68.6623,211.2893,24.2301,49.2682,0.00000343 18,629.3257,478.6456,10.8210,33.5011,0.00000000 19,464.3172,216.0208,21.8965,49.9163,0.99999994 19,483.8968,213.9689,22.2545,50.1406,0.99563712 19,9.1635,211.3211,23.9589,52.7726,0.00000009 19,548.7455,205.9477,28.6940,52.2601,0.00000000 19,372.3985,213.5077,22.4461,45.9185,0.00000000 19,22.4503,206.3237,26.0918,51.7956,0.00000000 19,635.5542,170.0456,4.5925,62.8886,0.00000000 19,627.2336,455.6442,12.9131,56.5025,0.00000000 19,634.4464,485.7707,5.7003,26.3760,0.00000000 20,517.7018,218.7870,21.7200,50.0119,1.00000000 20,489.5089,219.7569,22.2003,51.3742,1.00000000 20,384.1726,218.5742,24.2569,51.5267,0.00000026 20,570.2778,199.5939,25.4886,51.4627,0.00000000 20,477.3318,216.1142,22.2008,54.2500,0.00000000 20,440.0738,206.5200,24.5328,52.8260,0.00000000 20,634.9326,487.7683,5.2141,24.3784,0.00000000 21,542.5887,216.5033,26.3117,62.1419,1.00000000 21,575.0390,218.5426,24.1294,54.4785,1.00000000 21,564.4150,212.5282,20.5378,51.9688,0.00000000 21,418.4200,208.5734,25.3421,65.4634,0.00000000 21,586.7729,210.5409,23.9252,54.0208,0.00000000 21,531.8976,207.9209,21.8994,54.8819,0.00000000 21,562.5041,188.0349,49.8470,95.4231,0.00000000 21,635.1564,488.0206,4.9903,24.1261,0.00000000 21,627.9660,459.9630,12.1807,52.1837,0.00000000 22,454.5768,216.4887,23.2884,48.0458,0.99989599 22,434.9822,210.3862,24.3618,48.6695,0.00000733 22,514.8470,215.6542,24.5508,62.8788,0.00000014 22,498.3626,104.6823,26.9405,66.1005,0.00000000 22,485.7426,145.9122,37.1000,100.9458,0.00000000 22,470.9633,67.6521,87.0496,238.3311,0.00000000 22,635.0615,488.0179,5.0852,24.1288,0.00000000 22,627.6971,460.2636,12.4496,51.8831,0.00000000 23,522.5660,212.1298,28.0146,63.6949,1.00000000 23,476.3760,210.0542,28.7940,56.6838,0.78971481 23,497.4605,201.4211,29.7077,59.4675,0.00000006 23,542.8508,201.4870,22.7177,50.0787,0.00000000 23,634.9924,488.3350,5.1543,23.8117,0.00000000 24,545.0544,211.2583,28.0838,68.6385,1.00000000 24,570.5912,213.5708,30.0515,59.0013,0.99996245 24,614.8262,197.4023,24.4430,56.9458,0.59531891 24,425.0699,208.5148,22.6666,55.3160,0.00000000 24,440.0541,199.9419,22.5851,53.6601,0.00000000 24,633.9707,181.4657,6.1760,59.3639,0.00000000 25,424.9765,215.9187,26.8580,53.2793,0.00000000 25,524.6053,147.7358,32.1949,68.2062,0.00000000 25,601.9714,113.6822,36.5067,79.4691,0.00000000 25,478.8228,121.2511,41.0377,94.1916,0.00000000 25,637.8813,38.0203,2.2654,64.9861,0.00000000 25,634.8306,126.8618,5.3161,56.7926,0.00000000 25,638.0991,208.8977,2.0476,64.4468,0.00000000 25,627.2346,75.9388,12.9121,127.4826,0.00000000 25,558.7818,63.2875,81.3649,262.5377,0.00000000 25,632.4730,195.2721,7.6737,79.5288,0.00000000 25,632.3943,29.0293,7.7524,84.1743,0.00000000 25,635.2692,487.3676,4.8775,24.7791,0.00000000 25,627.8336,457.9384,12.3131,54.2083,0.00000000 26,312.4270,210.5323,23.8325,47.4143,0.93410653 26,378.7127,195.6666,23.7032,49.2156,0.00000000 26,493.9820,212.6803,38.6251,83.6893,0.00000000 26,49.9999,199.2534,26.5095,52.1279,0.00000000 26,632.6187,107.1679,7.5280,78.3618,0.00000000 26,627.8387,455.0077,12.3080,57.1390,0.00000000 26,636.4810,492.1025,3.6657,20.0442,0.00000000 27,288.8303,216.8387,29.1822,46.6336,0.99562430 27,125.4749,209.5176,27.0025,51.7759,0.00001787 27,401.4634,212.7335,22.9712,52.7845,0.00000000 27,537.1603,106.4350,41.6094,100.2942,0.00000000 27,279.5148,186.2735,52.2353,96.1664,0.00000000 27,489.0736,197.7159,87.9716,248.4268,0.00000000 27,503.9324,65.8984,56.7251,133.5850,0.00000000 27,517.9027,23.4360,87.0161,252.3035,0.00000000 27,628.2136,456.6081,11.9331,55.5386,0.00000000 27,636.3771,492.2682,3.7696,19.8785,0.00000000 28,247.0318,212.1342,30.3415,55.6456,0.99999994 28,99.2434,198.2510,27.8933,48.1946,0.00000002 28,430.4093,186.9256,33.9913,76.9362,0.00000001 28,600.2001,150.0861,39.9466,262.6758,0.00000000 28,594.9041,1.0000,45.2426,247.8833,0.00000000 28,637.8155,226.2157,2.3312,66.0117,0.00000000 28,626.9666,196.6475,13.1801,122.1525,0.00000000 28,535.4661,1.0000,90.6226,237.2200,0.00000000 28,221.0618,119.2903,96.4879,205.3345,0.00000000 28,635.7737,487.3398,4.3730,24.8069,0.00000000 29,183.2004,213.4456,37.4782,69.5675,0.99890536 29,127.9858,196.7723,21.4181,50.7331,0.00308495 29,83.2216,202.0725,25.8238,50.1374,0.00000483 29,114.3395,191.0144,22.8793,52.9228,0.00000000 29,491.3448,216.6687,34.9951,76.5686,0.00000000 29,636.0144,487.7193,4.1323,24.4274,0.00000000 29,628.8070,458.3658,11.3397,53.7809,0.00000000 30,88.8604,212.7774,45.9693,89.3788,0.99669385 30,83.6267,199.5319,32.3718,64.3804,0.00000009 30,358.3223,191.6642,24.4273,49.9310,0.00000000 30,103.7392,201.4494,25.0344,56.0860,0.00000000 30,50.1893,179.3541,84.7197,225.7486,0.00000000 30,635.8661,487.9269,4.2806,24.2198,0.00000000 31,37.5447,198.3012,25.9038,48.9549,0.00003081 31,55.4683,186.6344,28.2309,55.2042,0.00000000 31,366.4726,182.9129,22.9726,51.5663,0.00000000 31,73.6030,197.4585,28.5846,57.3310,0.00000000 31,468.0279,161.6329,22.5334,56.2622,0.00000000 31,516.1656,92.3241,90.4306,242.3710,0.00000000 31,601.0128,397.9607,39.1339,114.1860,0.00000000 31,627.7651,455.4105,12.3816,56.7362,0.00000000 31,636.4390,492.4057,3.7077,19.7410,0.00000000 32,28.0659,227.1732,25.4745,54.6982,0.00000004 32,7.7023,216.7955,31.6718,57.9206,0.00000000 32,559.1400,107.5190,62.4472,140.8749,0.00000000 32,601.3130,399.5242,38.8337,112.6225,0.00000000 32,636.0787,492.5824,4.0680,19.5643,0.00000000 32,627.5191,457.8057,12.6276,54.3410,0.00000000 33,456.3802,203.1630,21.4428,51.9938,0.00001060 33,374.7779,200.8312,20.9260,48.6296,0.00000000 33,432.3339,210.1825,21.0968,50.2608,0.00000000 33,385.9193,194.3690,21.6158,48.3389,0.00000000 33,583.7832,83.1945,56.3635,264.2881,0.00000000 33,630.7840,114.6695,9.3627,89.1465,0.00000000 33,629.4955,158.2478,10.6512,108.0721,0.00000000 33,634.9367,487.1509,5.2100,24.9958,0.00000000 33,627.3303,458.9823,12.8164,53.1644,0.00000000 34,362.2888,203.0236,23.4224,48.2052,0.00000009 34,464.7915,209.9581,26.5763,63.4236,0.00000002 34,29.7089,175.8717,27.0507,54.5448,0.00000000 34,117.9315,190.4200,24.3623,52.0374,0.00000000 34,489.5803,211.5199,26.4942,57.2859,0.00000000 34,498.5888,186.9224,26.5812,62.2199,0.00000000 34,630.0843,295.1025,10.0624,86.8527,0.00000000 34,630.3171,103.2488,9.8296,84.3625,0.00000000 34,627.8262,457.6698,12.3205,54.4769,0.00000000 34,635.2690,486.4098,4.8777,25.7369,0.00000000 35,525.9669,216.4097,26.5605,67.2119,1.00000000 35,559.2764,220.1166,23.6632,55.7021,1.00000000 35,373.3747,203.6079,23.7898,50.4769,0.04354475 35,84.8527,193.8045,26.3521,55.2056,0.00000000 35,516.2239,202.3256,52.0763,122.6355,0.00000000 35,629.3016,477.4290,10.8451,34.7177,0.00000000 36,395.4229,212.1047,22.8858,47.8343,0.99999887 36,577.4004,186.3038,30.5120,71.3125,0.00000079 36,38.4814,205.7212,23.7717,55.2588,0.00000000 36,553.8693,194.8897,46.1543,139.4826,0.00000000 36,611.1816,172.1358,23.1908,54.6671,0.00000000 36,628.8295,149.7235,11.3172,80.0222,0.00000000 36,635.6061,177.7595,4.5406,62.6314,0.00000000 36,627.2961,455.6624,12.8506,56.4843,0.00000000 36,634.6873,485.5240,5.4594,26.6227,0.00000000 37,435.2986,214.0086,25.2581,57.6622,1.00000000 37,542.0568,152.5759,21.3984,56.6416,0.00000000 37,10.1277,193.0771,36.1784,72.5990,0.00000000 37,421.5017,213.6818,22.8802,54.2008,0.00000000 37,448.1374,208.8158,29.7739,55.0287,0.00000000 37,630.4537,164.9683,9.6930,78.7586,0.00000000 37,636.4471,493.5051,3.6996,18.6416,0.00000000 37,629.4554,480.0095,10.6913,32.1372,0.00000000 37,394.2442,116.1720,101.5147,208.0802,0.00000000 38,504.6410,221.8789,35.7245,85.0508,1.00000000 38,488.7856,216.3157,28.6147,52.8543,0.00000020 38,477.9162,169.8092,84.3153,206.4809,0.00000000 38,635.9303,493.6840,4.2164,18.4627,0.00000000 38,629.3834,481.1180,10.7633,31.0287,0.00000000 39,2.7127,155.9261,28.7139,70.3015,0.00000001 39,428.0479,202.3141,22.6907,53.9170,0.00000000 39,411.9098,203.6703,27.0337,55.7481,0.00000000 39,636.3484,113.4568,3.7983,61.1708,0.00000000 39,636.5688,492.7330,3.5779,19.4137,0.00000000 39,629.7473,478.7117,10.3994,33.4350,0.00000000 40,156.6994,210.1221,25.4596,49.3695,0.00306645 40,463.3372,199.8025,51.8176,108.7354,0.00000000 40,471.7256,223.1835,24.8821,63.4890,0.00000000 40,489.8546,218.1806,31.9708,70.0837,0.00000000 40,637.6644,208.6025,2.4823,64.7591,0.00000000 40,631.3415,209.9290,8.8052,77.7497,0.00000000 40,601.0883,399.2756,39.0584,112.8711,0.00000000 40,455.1473,117.7064,85.7499,234.7983,0.00000000 40,627.1252,455.5789,13.0215,56.5678,0.00000000 40,636.3643,492.2527,3.7824,19.8940,0.00000000 41,115.8807,211.4200,28.2828,47.9602,0.84727836 41,100.6180,215.0572,24.9212,51.0690,0.00000000 41,106.1721,185.6202,50.0029,95.7965,0.00000000 41,602.0874,398.2464,38.0593,113.9003,0.00000000 41,600.5790,159.6960,39.5677,263.6698,0.00000000 41,635.1436,155.6586,5.0031,79.0471,0.00000000 41,632.9581,249.7364,7.1886,82.0650,0.00000000 41,627.2413,455.4472,12.9054,56.6995,0.00000000 41,626.1989,192.1871,13.9478,124.3357,0.00000000 41,636.4603,492.5587,3.6864,19.5880,0.00000000 42,54.0055,213.2454,32.6473,53.4206,0.99442971 42,72.4721,218.0964,27.8294,55.8909,0.00000496 42,129.0446,198.3659,22.2493,46.8651,0.00000000 42,634.1173,163.2525,6.0294,75.5722,0.00000000 42,635.9855,202.3806,4.1612,64.2368,0.00000000 42,636.4479,493.6337,3.6988,18.5130,0.00000000 42,629.6704,479.5359,10.4763,32.6108,0.00000000 43,570.8088,113.6854,25.5845,75.2909,0.00000000 43,524.4899,180.4112,59.6082,154.5538,0.00000000 43,323.7916,349.4768,89.3394,162.6699,0.00000000 43,600.5214,398.0402,39.6253,114.1065,0.00000000 43,635.9547,492.5452,4.1920,19.6015,0.00000000 43,629.3682,479.6946,10.7785,32.4521,0.00000000 44,267.9866,166.2702,25.5410,49.7693,0.00000000 44,573.0239,118.1073,46.6258,118.5090,0.00000000 44,544.1925,69.5634,86.0056,238.7174,0.00000000 44,637.0635,122.1245,3.0832,64.5665,0.00000000 44,600.2270,396.9742,39.9197,115.1725,0.00000000 44,630.9020,140.9327,9.2447,83.4860,0.00000000 44,636.0211,492.5046,4.1256,19.6421,0.00000000 44,627.3573,457.9652,12.7894,54.1815,0.00000000 45,444.9662,203.9981,23.9773,54.0858,0.99961847 45,100.1763,197.4156,27.7021,52.5003,0.00000000 45,428.4984,205.1058,23.8223,52.4696,0.00000000 45,54.7733,191.7887,28.3398,58.9859,0.00000000 45,73.4496,179.4812,35.2699,70.7247,0.00000000 45,433.3674,186.5139,47.3502,97.2547,0.00000000 45,405.2064,101.4828,101.1481,214.8267,0.00000000 45,635.9263,493.8065,4.2204,18.3402,0.00000000 45,629.5814,481.3785,10.5653,30.7682,0.00000000 46,497.5310,217.1834,23.3134,56.4775,0.99999982 46,479.6004,214.8439,23.3738,54.9691,0.95366347 46,468.0337,223.1456,25.0385,64.3864,0.00000015 46,478.3237,186.5912,49.0863,94.6221,0.00000000 46,1.0000,81.1486,60.6945,263.1244,0.00000000 46,632.7619,187.4666,7.3848,81.1990,0.00000000 46,446.2990,126.5560,102.3857,236.3317,0.00000000 46,627.1257,456.4777,13.0210,55.6690,0.00000000 46,634.9214,487.0905,5.2253,25.0562,0.00000000 47,539.3873,234.7614,27.1212,59.8018,0.00001043 47,594.4031,86.0425,45.7436,262.4746,0.00000000 47,600.4902,128.4930,36.0835,81.4851,0.00000000 47,623.1194,115.8896,17.0273,130.2491,0.00000000 47,635.1364,108.9031,5.0103,59.1827,0.00000000 47,633.0600,132.5362,7.0867,78.8326,0.00000000 47,633.3707,194.9486,6.7760,79.7423,0.00000000 47,635.1094,487.5883,5.0373,24.5584,0.00000000 47,626.9534,458.3485,13.1933,53.7982,0.00000000 48,491.5374,217.3065,30.4943,62.9986,0.00000001 48,602.3098,397.6239,37.8369,114.5228,0.00000000 48,636.6057,492.4948,3.5410,19.6519,0.00000000 48,627.7258,455.7922,12.4209,56.3545,0.00000000 48,1.0000,86.7499,57.1194,261.7993,0.00000000 49,80.9215,214.9840,22.5812,49.5286,0.00000000 49,65.7152,207.4847,24.3153,53.7224,0.00000000 49,425.1450,194.3128,26.1280,55.5164,0.00000000 49,404.7332,198.5210,27.9719,56.8799,0.00000000 49,391.9952,169.1682,89.4119,265.1994,0.00000000 49,600.4897,395.5086,39.6570,116.6381,0.00000000 49,627.3389,455.9687,12.8078,56.1780,0.00000000 49,635.8549,492.9120,4.2918,19.2347,0.00000000 50,463.7559,235.1130,27.6659,56.9416,0.00000000 50,601.0344,167.9659,39.1123,268.4739,0.00000000 50,636.0807,494.0257,4.0660,18.1210,0.00000000 50,628.0617,459.9019,12.0850,52.2448,0.00000000 51,491.8075,166.7021,32.4854,70.7143,0.00000005 51,601.4688,177.4116,38.6779,272.9630,0.00000000 51,602.1799,400.8701,37.9668,111.2766,0.00000000 51,633.2127,206.6344,6.9340,84.8286,0.00000000 51,633.7471,32.0928,6.3996,73.4445,0.00000000 51,627.2543,455.4125,12.8924,56.7342,0.00000000 51,636.3947,491.5803,3.7520,20.5664,0.00000000 52,601.9597,398.2691,38.1870,113.8776,0.00000000 52,1.0000,117.2695,55.9347,268.7233,0.00000000 52,636.3262,492.1134,3.8205,20.0333,0.00000000 52,629.5137,477.5794,10.6330,34.5673,0.00000000 53,595.8721,92.9696,44.2746,263.7398,0.00000000 53,629.7365,141.2706,10.4102,82.9640,0.00000000 53,635.5346,169.9767,4.6121,71.7911,0.00000000 53,635.9834,493.6427,4.1633,18.5040,0.00000000 53,629.3667,481.2118,10.7800,30.9349,0.00000000 54,479.7440,210.5563,23.4979,54.6413,0.00000006 54,498.2275,207.6354,23.8359,62.4776,0.00000000 54,455.6472,190.5224,24.3045,52.3506,0.00000000 54,634.4216,123.3064,5.7251,75.8863,0.00000000 54,636.0586,488.4144,4.0881,23.7323,0.00000000 55,555.1714,221.7552,21.4206,49.8642,0.99990660 55,389.1781,211.6577,25.0824,49.2769,0.98778629 55,570.5300,222.7894,20.5350,48.5852,0.06059249 55,371.7622,209.6505,22.3153,47.7557,0.00002519 55,14.4795,210.2786,27.3645,51.8179,0.00000003 55,604.2504,216.2698,23.3551,50.2691,0.00000000 55,634.9551,182.2188,5.1916,74.2719,0.00000000 55,629.6215,479.4494,10.5252,32.6973,0.00000000 56,419.6617,221.4221,22.3219,51.5052,1.00000000 56,396.5235,218.4140,21.8458,52.2240,0.99970180 56,572.8638,231.6430,26.7259,59.2592,0.00000000 56,627.9206,1.0000,12.2261,52.4502,0.00000000 56,562.3472,213.3127,54.3584,112.8872,0.00000000 56,596.1082,142.2795,44.0385,266.8774,0.00000000 56,632.4080,195.0623,7.7387,84.9064,0.00000000 56,635.5096,486.4903,4.6371,25.6564,0.00000000 56,628.2822,455.4525,11.8645,56.6942,0.00000000 57,485.0096,221.5947,36.4168,80.5752,0.99999970 57,455.9063,219.2717,35.3936,82.7676,0.99999923 57,433.7635,211.9366,22.1785,48.2420,0.00080095 57,73.6606,202.4442,27.9903,50.7639,0.00000893 57,430.3834,137.9391,95.8142,224.8027,0.00000000 57,634.9235,487.1223,5.2232,25.0244,0.00000000 58,471.0442,207.5065,23.0120,49.7564,0.64140278 58,526.4009,186.3728,21.7038,51.9555,0.00000748 58,17.7394,201.5430,28.8250,61.7428,0.00000499 58,41.5725,196.2982,27.0697,63.7829,0.00000022 58,8.6923,142.9381,55.2290,128.3826,0.00000000 58,635.0439,487.6207,5.1028,24.5260,0.00000000 59,530.3006,207.2468,28.7603,58.0840,0.99999958 59,395.8446,181.1966,22.2288,54.4641,0.00002409 59,515.7799,197.6654,30.5606,54.2046,0.00000000 59,382.1678,156.0619,46.4798,106.6294,0.00000000 59,496.3003,99.4452,99.4445,204.6518,0.00000000 59,635.1419,487.4990,5.0048,24.6477,0.00000000 59,627.6745,460.6086,12.4722,51.5381,0.00000000 60,423.6024,194.4242,23.1349,54.6250,0.99999976 60,440.7222,191.7463,21.5595,50.4467,0.00000024 60,406.0622,194.9165,23.8083,55.8974,0.00000002 60,387.6953,188.0337,23.3311,55.7551,0.00000000 60,346.8546,184.0961,27.2249,53.2268,0.00000000 60,449.1722,175.7047,27.8745,56.2861,0.00000000 60,413.3061,164.8122,51.4738,97.0538,0.00000000 60,472.3518,169.1346,27.9166,64.1845,0.00000000 60,380.2714,97.8765,102.1173,215.2356,0.00000000 60,634.9769,487.2511,5.1698,24.8956,0.00000000 60,627.0153,458.8307,13.1314,53.3160,0.00000000 61,465.3556,195.0321,27.3267,72.6833,0.99999768 61,454.3578,237.6993,23.9860,55.1602,0.00000018 61,62.7782,184.9336,25.3182,58.5738,0.00000001 61,448.8157,194.5710,28.2904,69.5254,0.00000000 61,478.8734,190.1335,24.1923,54.2663,0.00000000 61,603.1322,399.6474,37.0145,112.4993,0.00000000 61,434.2131,94.7638,98.2329,218.1445,0.00000000 61,627.1301,458.2355,13.0166,53.9112,0.00000000 61,635.4453,487.9199,4.7014,24.2268,0.00000000 62,522.8634,197.3793,38.6913,89.6657,1.00000000 62,357.4633,194.5187,22.9691,49.9926,0.00000014 62,379.5926,182.0887,28.7404,63.9206,0.00000000 62,128.1200,203.2849,21.7017,48.4590,0.00000000 62,371.3006,205.2713,24.3856,52.6990,0.00000000 62,597.1713,210.7533,42.9754,269.9637,0.00000000 62,623.5939,249.6387,16.5528,138.5148,0.00000000 62,629.5743,479.4527,10.5724,32.6940,0.00000000 62,1.0000,15.5377,63.0342,269.7837,0.00000000 63,608.5763,153.5108,31.5704,118.4165,0.99811316 63,387.7709,147.1250,24.6121,54.1126,0.00000000 63,113.7968,149.6568,22.4645,51.4140,0.00000000 63,493.8894,148.1492,24.4925,56.5762,0.00000000 63,425.8290,123.8501,26.1095,65.6544,0.00000000 63,595.3100,126.7746,26.1613,64.5728,0.00000000 63,629.2690,179.5779,10.8777,71.3301,0.00000000 63,624.6215,201.9700,15.5252,106.6289,0.00000000 63,634.7633,130.2749,5.3834,65.1999,0.00000000 63,629.1342,477.0208,11.0125,35.1259,0.00000000 63,24.6889,15.1934,90.4228,267.7005,0.00000000 64,441.3786,163.1171,58.4185,148.6309,0.00005786 64,371.3781,199.5863,25.7463,51.3239,0.00000093 64,486.4473,183.7195,27.4328,53.8199,0.00000001 64,111.5138,204.0677,23.8244,47.2115,0.00000000 64,389.7549,188.6593,28.7680,54.3558,0.00000000 64,442.4038,194.6064,31.6257,80.6087,0.00000000 64,471.2678,191.2452,36.0802,91.4706,0.00000000 64,458.8076,184.3896,28.6326,74.7650,0.00000000 64,629.9849,480.7473,10.1618,31.3994,0.00000000 64,19.4671,68.3643,93.2803,275.6334,0.00000000 65,512.3054,182.8147,24.7899,53.4318,0.00009108 65,469.2259,181.9637,21.5859,50.2398,0.00000006 65,587.8600,172.4630,34.9520,84.1075,0.00000000 65,527.3510,192.3074,81.6088,246.6827,0.00000000 65,563.6857,150.1693,76.4610,230.2622,0.00000000 65,582.6852,261.6815,39.8497,107.0596,0.00000000 65,604.5669,394.5648,35.5798,117.5819,0.00000000 65,559.6245,141.4097,44.8951,110.3967,0.00000000 65,1.0000,43.8647,62.0204,260.7997,0.00000000 65,634.2964,198.0258,5.8503,72.6730,0.00000000 65,626.2794,455.0291,13.8673,57.1176,0.00000000 65,634.6171,486.3743,5.5296,25.7724,0.00000000 66,399.3470,210.4899,23.3908,49.5201,0.00007945 66,539.3924,193.6934,23.9960,51.9650,0.00000954 66,418.0431,199.4483,27.6302,51.4032,0.00000821 66,485.1693,182.3906,26.0135,56.9807,0.00000037 66,43.9036,203.8353,23.0272,52.6283,0.00000012 66,377.7537,205.3767,24.2349,51.8519,0.00000000 66,603.7164,394.7928,36.4303,117.3539,0.00000000 66,624.6407,453.2163,15.5060,58.9304,0.00000000 66,635.5760,490.9727,4.5707,21.1740,0.00000000 67,550.6444,187.0707,27.7631,55.8474,0.99187094 67,394.3531,214.3374,22.5836,46.1507,0.06886034 67,478.6036,177.6048,28.2924,65.3569,0.00761777 67,376.9587,205.7346,26.8020,52.3299,0.00010803 67,415.5924,205.8761,23.1372,47.7213,0.00000004 67,352.1862,205.4935,22.8195,53.5405,0.00000000 67,135.2093,205.2824,23.6799,53.0606,0.00000000 67,629.4913,478.3373,10.6554,33.8094,0.00000000 68,312.3723,211.5877,22.7920,52.7300,0.99983835 68,565.5766,192.0564,28.3866,61.7970,0.99974281 68,364.1208,216.4919,24.8632,54.5943,0.68056971 68,349.8854,210.9033,24.6703,52.6904,0.00002380 68,474.2070,183.9753,31.7672,74.5623,0.00000000 68,629.3540,480.0114,10.7927,32.1353,0.00000000 69,338.9250,210.6456,26.2407,58.4600,0.99999994 69,392.5998,212.7035,26.7346,60.5668,0.99999285 69,328.1664,202.9702,24.1554,52.9753,0.00000001 69,379.6322,193.4768,57.5949,138.3626,0.00000001 69,96.5926,203.4676,25.0918,54.7875,0.00000000 69,353.4186,216.9202,24.7446,54.1932,0.00000000 69,635.4714,487.0503,4.6753,25.0964,0.00000000 70,390.5000,214.7858,22.8719,51.5114,0.99999946 70,440.2102,208.8185,22.8737,56.4263,0.99998522 70,417.3493,214.0598,21.5542,52.5051,0.94896710 70,531.7786,200.8464,21.9649,50.4778,0.00028893 70,629.3961,480.8549,10.7506,31.2918,0.00000000 71,457.4284,217.5441,24.4427,55.7441,1.00000000 71,483.7726,213.8941,24.4186,55.4351,0.99890363 71,442.3170,214.9838,24.3462,51.1996,0.00000035 71,598.8669,204.1182,28.4880,53.2581,0.00000002 71,519.3921,182.9232,90.3833,268.8048,0.00000000 71,470.6498,198.0558,48.7264,104.1806,0.00000000 71,354.5033,336.9903,89.3323,175.1564,0.00000000 72,512.2870,215.5966,25.5596,56.7252,1.00000000 72,491.3062,222.0774,24.2782,53.2995,0.84391391 72,500.1622,190.9431,52.9151,98.1830,0.00000000 72,564.9025,201.9669,30.5311,65.7103,0.00000000 72,599.5715,394.6595,40.5752,117.4872,0.00000000 72,324.3341,169.8911,88.0009,239.9114,0.00000000 72,622.7463,446.9852,17.4004,65.1615,0.00000000 72,367.9179,292.7982,82.0824,219.3485,0.00000000 72,404.7186,372.4773,91.4435,139.6694,0.00000000 72,631.9963,483.6626,8.1504,28.4841,0.00000000 73,531.8443,219.8805,30.2077,64.8488,0.99999774 73,24.6119,223.0511,38.4777,70.0430,0.00000000 73,414.5719,218.4611,64.6710,151.8550,0.00000000 73,418.1774,279.2831,85.9773,232.8636,0.00000000 73,465.1476,345.1103,81.7253,167.0364,0.00000000 73,604.1161,399.1722,36.0306,112.9745,0.00000000 73,498.8896,122.7653,96.2985,210.5137,0.00000000 73,625.3889,455.8201,14.7578,56.3266,0.00000000 73,633.8202,485.9701,6.3265,26.1766,0.00000000 74,573.7013,230.5670,24.3351,58.1041,0.99999994 74,599.3715,229.8265,23.8274,53.1176,0.99654484 74,549.5986,232.6458,39.7611,69.3445,0.00047479 74,439.4145,230.5191,71.9114,166.8799,0.00000000 74,445.6754,287.1897,87.1885,224.9570,0.00000000 74,518.8016,193.3375,92.1977,209.2581,0.00000000 74,626.0994,453.0734,14.0473,59.0733,0.00000000 75,517.0567,227.3189,29.3176,61.7008,0.99999589 75,539.7441,230.4246,26.4450,58.5814,0.99999207 75,587.1099,229.3981,24.6269,51.3843,0.99990308 75,554.7271,228.8828,22.9003,53.8981,0.00000000 75,567.9043,228.6313,25.8213,55.5849,0.00000000 75,524.4448,199.3127,50.8349,110.0524,0.00000000 75,629.5580,479.0786,10.5887,33.0681,0.00000000 76,549.3846,218.3172,29.3789,65.9554,1.00000000 76,526.8782,224.3917,28.3420,65.6231,0.99999964 76,503.1063,222.0091,28.7447,62.0735,0.99999082 76,629.5280,477.7867,10.6187,34.3600,0.00000000 77,581.4820,224.6151,38.6335,82.4729,0.99999958 77,448.1016,211.5716,21.3665,51.1930,0.00000000 77,414.3921,293.3387,90.3832,218.8080,0.00000000 77,635.1255,209.3836,5.0212,64.2096,0.00000000 77,594.3727,21.2852,45.7740,263.9230,0.00000000 77,559.5612,139.0676,80.5855,214.5530,0.00000000 77,632.6596,34.3227,7.4871,85.4952,0.00000000 77,635.2189,486.1906,4.9278,25.9561,0.00000000 77,621.3206,44.4900,18.8261,138.5300,0.00000000 77,627.7165,455.6996,12.4302,56.4471,0.00000000 77,632.7800,238.8544,7.3667,73.9253,0.00000000 78,579.0723,226.7566,42.0064,103.1492,1.00000000 78,459.3237,219.6440,23.6405,47.4603,0.00003992 78,553.5327,47.0003,26.9876,60.1439,0.00000000 78,609.9388,223.9707,30.2079,82.7872,0.00000000 78,25.8733,217.7489,25.6312,52.4210,0.00000000 78,480.2159,292.4695,83.3587,219.6772,0.00000000 78,634.0254,230.1674,6.1213,64.9083,0.00000000 78,629.6080,477.7350,10.5387,34.4117,0.00000000 79,477.2986,215.7422,24.2683,48.7294,0.00118065 79,71.9691,210.1534,31.8942,57.0667,0.00000000 79,601.9832,397.5976,38.1635,114.5491,0.00000000 79,634.2170,231.6444,5.9297,75.4188,0.00000000 79,627.5800,456.6171,12.5667,55.5296,0.00000000 79,94.4988,65.4142,91.0474,255.1137,0.00000000 79,636.5306,492.8298,3.6161,19.3169,0.00000000 80,507.1740,204.5031,27.9069,55.1014,0.00629973 80,28.1312,206.6773,31.5855,58.8197,0.00000001 80,87.8994,191.3370,28.9322,54.1955,0.00000000 80,1.0000,128.8622,57.2522,255.7685,0.00000000 80,603.7128,404.0786,36.4339,108.0681,0.00000000 80,636.6717,492.6466,3.4750,19.5001,0.00000000 80,50.4076,43.3382,92.2697,275.7814,0.00000000 80,630.3806,479.0562,9.7661,33.0905,0.00000000 81,62.3345,202.1770,27.4614,50.9623,0.01083324 81,578.5797,222.1927,26.1815,52.2097,0.00042433 81,16.0520,196.2010,23.0530,48.6424,0.00002042 81,405.7636,211.2366,23.5934,54.7087,0.00000001 81,44.3748,200.5162,28.1217,55.8061,0.00000001 81,58.4591,167.5648,52.5265,95.2901,0.00000000 81,4.2136,43.6833,93.7572,278.6748,0.00000000 81,634.9854,487.9774,5.1613,24.1693,0.00000000 81,626.9865,459.7440,13.1602,52.4027,0.00000000 82,22.0092,195.3816,26.1100,56.1592,0.00330657 82,9.6199,191.9092,23.4633,56.6511,0.00000000 82,7.2792,151.7981,55.8871,102.9000,0.00000000 82,598.7841,211.8319,41.3626,268.4389,0.00000000 82,601.8610,54.8776,38.2857,265.2925,0.00000000 82,632.0776,148.4106,8.0691,98.5350,0.00000000 82,402.2899,223.3089,85.3907,258.8535,0.00000000 82,506.0425,139.8938,87.8755,281.0847,0.00000000 82,624.2733,265.4372,15.8734,131.6751,0.00000000 82,628.0588,459.6089,12.0879,52.5378,0.00000000 82,635.6299,488.4126,4.5168,23.7341,0.00000000 83,419.2448,199.6438,22.8529,51.7135,0.00001829 83,442.5424,194.5432,21.7182,55.1855,0.00000000 83,603.6840,397.4903,36.4627,114.6564,0.00000000 83,504.2376,221.5670,90.8351,284.1249,0.00000000 83,590.1726,90.9718,49.9741,276.9311,0.00000000 83,557.5403,132.2631,64.8634,165.0160,0.00000000 83,626.6360,453.9931,13.5107,58.1536,0.00000000 83,636.3842,491.7279,3.7625,20.4188,0.00000000 84,440.8488,232.5993,22.4624,47.9902,0.34718660 84,98.6584,237.6488,27.6609,54.3122,0.00000289 84,119.6018,234.6977,23.2437,47.4570,0.00000009 84,394.3898,164.2392,22.5643,54.5690,0.00000000 84,404.0538,174.4268,23.6333,65.2607,0.00000000 84,603.6177,394.8600,36.5290,117.2867,0.00000000 84,629.4191,478.2080,10.7276,33.9387,0.00000000 85,451.0526,204.2299,42.1597,115.4855,0.00000000 85,472.4836,224.4352,26.1065,63.0003,0.00000000 85,603.7138,397.8767,36.4329,114.2700,0.00000000 85,444.5710,309.7227,89.9950,202.4240,0.00000000 85,426.9893,131.1926,80.4375,232.0725,0.00000000 85,637.1785,189.2817,2.9682,64.4306,0.00000000 85,626.3019,452.9685,13.8448,59.1782,0.00000000 85,636.2774,491.5770,3.8693,20.5697,0.00000000 86,475.9149,204.0796,29.1303,70.8304,0.99999940 86,500.5213,204.6745,29.0430,69.0157,0.99999583 86,565.7079,198.8702,26.0813,60.4710,0.00000479 86,31.1987,213.5105,24.6565,55.1372,0.00000466 86,52.3378,211.5440,22.3477,48.0012,0.00000000 86,457.0622,86.9034,38.0460,113.3367,0.00000000 86,525.9824,163.0114,83.3323,274.3878,0.00000000 86,476.6408,158.6804,87.9168,254.4690,0.00000000 86,626.9962,456.4265,13.1505,55.7202,0.00000000 86,634.8585,487.7061,5.2882,24.4406,0.00000000 87,586.9629,202.5382,35.1620,92.6833,1.00000000 87,547.0980,201.9334,40.6886,98.0190,0.99999970 87,634.6055,180.3028,5.5412,75.7034,0.00000000 87,450.5694,84.8147,62.8144,155.4360,0.00000000 87,625.1702,459.0376,14.9765,53.1091,0.00000000 87,634.0389,488.1580,6.1078,23.9887,0.00000000 88,588.6438,223.0432,24.6349,53.3428,0.00000000 88,436.0258,109.0080,33.9961,66.1713,0.00000000 88,602.0925,396.3374,38.0542,115.8093,0.00000000 88,636.1926,492.5757,3.9541,19.5710,0.00000000 88,627.1678,456.0475,12.9789,56.0992,0.00000000 89,82.2512,217.1066,23.6630,53.1382,0.05857642 89,10.3485,217.5576,25.5001,50.3154,0.00000000 89,311.6698,195.0970,89.0860,264.6904,0.00000000 89,635.7725,493.6194,4.3742,18.5273,0.00000000 89,626.7201,459.4922,13.4266,52.6545,0.00000000 90,42.0442,210.3913,25.5784,54.9708,0.00000200 90,57.2362,218.9113,23.4833,54.5519,0.00000000 90,484.1660,157.0062,22.7634,61.7714,0.00000000 90,26.1402,209.3606,25.7682,52.7671,0.00000000 90,27.8655,183.6043,50.8291,96.5065,0.00000000 90,345.0681,182.0691,84.3564,251.2406,0.00000000 90,635.8458,494.0226,4.3009,18.1241,0.00000000 90,629.3990,482.3831,10.7477,29.7636,0.00000000 91,470.3018,223.1163,23.5568,53.4855,0.18947142 91,567.5925,212.6732,50.1123,145.2092,0.00000000 91,484.1770,224.9511,25.4813,57.4317,0.00000000 91,30.9714,123.7549,52.6647,138.4291,0.00000000 91,455.0410,225.4250,24.0220,52.7765,0.00000000 91,458.6136,200.0984,47.4256,101.4507,0.00000000 91,601.4441,399.0121,38.7026,113.1346,0.00000000 91,445.7897,316.7929,88.3134,195.3538,0.00000000 91,430.9551,138.8162,100.0048,224.4884,0.00000000 91,1.0000,113.3160,54.3670,253.1283,0.00000000 91,380.8852,224.2200,89.3983,267.0571,0.00000000 91,627.5881,454.0703,12.5586,58.0764,0.00000000 91,636.1394,492.4195,4.0073,19.7272,0.00000000 92,515.2933,220.0415,25.9923,57.1408,0.99999994 92,468.6350,213.5441,26.9974,50.7861,0.00000030 92,5.7333,76.8052,47.5357,127.1281,0.00000000 92,546.5649,213.5134,26.0570,52.7672,0.00000000 92,495.1402,217.2935,24.8343,55.3478,0.00000000 92,529.8793,214.0276,27.4728,57.0532,0.00000000 92,444.3527,194.4269,28.4546,59.5554,0.00000000 92,529.3995,266.9635,90.2192,245.1832,0.00000000 92,405.8170,255.0192,87.5727,246.5813,0.00000000 92,626.5485,455.3895,13.5982,56.7572,0.00000000 92,634.7891,486.0697,5.3576,26.0770,0.00000000 93,580.2114,223.4955,30.3244,70.7754,1.00000000 93,546.7942,220.7568,23.9996,52.4902,0.00001455 93,601.1994,223.7466,28.3123,60.3024,0.00001260 93,466.6817,203.7166,27.9572,60.9380,0.00000000 93,525.7797,210.8989,38.8776,83.0731,0.00000000 93,494.4184,24.9558,85.0420,251.6500,0.00000000 93,626.4473,454.0081,13.6994,58.1386,0.00000000 93,634.6474,484.8061,5.4993,27.3406,0.00000000 94,538.2208,216.4323,31.4205,73.2224,1.00000000 94,559.3578,215.5635,33.7632,75.5908,0.99999732 94,578.6655,215.5908,31.8091,76.6372,0.00000000 95,575.7704,215.7794,35.9028,86.3475,1.00000000 95,548.2067,218.3922,35.1836,82.4028,1.00000000 95,613.7001,219.6421,23.4289,55.8321,0.99997604 95,344.4027,198.4680,21.3386,49.0473,0.99062437 95,269.3453,182.3433,27.8423,50.9305,0.00009270 95,630.6156,224.7239,9.5311,63.1115,0.00000000 95,524.1392,302.0633,87.2768,210.0834,0.00000000 95,506.0688,1.0000,84.0721,256.3286,0.00000000 96,588.4493,220.2647,23.7290,57.7172,1.00000000 96,540.9745,211.7414,43.8478,95.2333,1.00000000 96,513.1923,210.5400,42.9099,101.9245,0.99999994 96,296.9507,202.8629,22.5834,50.6158,0.97331011 96,277.8582,203.7150,21.8674,51.8181,0.88193160 97,527.7236,222.7198,23.9364,58.3413,1.00000000 97,466.8054,208.1191,42.0684,105.7695,0.99999994 97,441.6974,211.4426,44.7066,103.6441,0.99999976 97,178.5386,219.6785,23.2565,50.2456,0.99943298 97,217.3976,213.1660,24.5406,52.8766,0.99550432 97,194.3415,216.5592,23.1691,52.3706,0.96315640 97,98.0902,192.1849,30.4278,53.4242,0.91909832 97,607.7811,185.4484,25.5474,58.2791,0.00000000 98,350.4785,210.9259,46.4209,114.8508,1.00000000 98,386.2277,207.5315,45.7172,112.3427,1.00000000 98,467.0719,225.4698,23.1231,56.5531,0.99999994 98,146.3109,217.2917,29.8746,64.0052,0.99968624 98,120.4172,220.2438,28.0291,64.4883,0.99910492 98,101.2817,219.9364,27.8922,58.8909,0.99824053 98,6.2300,197.6571,29.6295,58.5071,0.98668271 98,213.5721,220.9206,27.7073,57.8343,0.98445737 99,585.5873,230.5436,47.4173,107.9608,1.00000000 99,286.4023,204.7333,47.3210,120.3359,0.99999994 99,318.1752,209.0992,48.1595,110.6962,0.99999982 99,423.9297,224.0052,23.8383,57.3794,0.99999809 99,102.8376,216.0556,33.1005,69.8690,0.99998903 99,71.1508,219.5524,30.4377,65.5235,0.99981320 99,156.5327,209.0814,38.0257,74.5228,0.94181484 99,46.9310,217.2528,34.5384,70.6998,0.87475652 100,535.9769,232.5759,46.1502,102.5101,1.00000000 100,256.5002,211.4797,41.7117,105.1071,0.99999994 100,286.0430,208.2972,44.2143,110.0262,0.99999988 100,406.0495,223.7272,23.3003,54.9141,0.99999982 100,66.7816,217.0798,31.8817,71.8433,0.99995637 100,108.3120,218.6882,31.3784,73.6628,0.99933428 100,47.1397,217.5238,35.2428,78.0486,0.67812133 100,144.5313,222.3681,25.1095,60.8373,0.03550409 101,500.5185,224.7213,46.2164,104.0426,1.00000000 101,266.8193,216.8807,39.6515,92.4850,1.00000000 101,238.4244,217.5153,39.3950,93.8936,1.00000000 101,126.6800,218.2603,31.7760,71.7576,1.00000000 101,409.1976,222.0794,23.0561,53.9251,0.99999911 101,67.3155,214.1572,35.4473,82.1520,0.99996412 101,87.2707,213.9915,34.1487,77.6874,0.99989396 101,470.5987,213.4549,23.1619,51.3133,0.54798490 102,475.9499,223.5889,41.0881,95.1467,1.00000000 102,248.5817,216.3533,35.5916,87.0645,1.00000000 102,530.3612,242.0136,71.7194,173.2641,1.00000000 102,220.2568,217.1378,37.6034,87.0632,0.99999976 102,148.8626,215.4790,37.0151,81.2391,0.99999940 102,88.8011,214.1305,37.2594,89.7345,0.99996555 102,109.7524,210.5005,34.4519,94.1174,0.99960190 102,423.6954,219.2384,24.5107,52.7251,0.80238271 102,459.4835,211.7379,24.8843,54.6550,0.00000211 103,465.4896,236.4911,65.4999,157.1106,1.00000000 103,160.9901,212.2881,39.3594,93.9364,0.99999994 103,217.8299,215.0510,38.2166,89.8028,0.99999988 103,194.3269,216.2349,37.3606,85.3615,0.99999440 103,120.0604,208.6735,42.1667,108.2488,0.99994051 103,100.8745,229.3668,39.1323,84.9151,0.99976212 103,438.4853,215.1556,44.7176,103.5328,0.99922180 104,405.8140,238.3738,60.4954,144.8562,1.00000000 104,151.9156,214.5477,43.5889,101.0209,1.00000000 104,93.8255,218.6658,40.1213,101.4889,0.99998176 104,119.4033,204.6909,43.6989,111.8972,0.99993777 104,424.1544,212.7523,26.8265,71.5604,0.00001095 104,400.2999,213.3758,34.1849,90.8146,0.00000078 105,312.2805,240.8507,60.4088,142.4667,1.00000000 105,97.2781,212.7546,48.2586,121.2812,0.99999994 105,16.9106,204.1999,54.2891,144.0250,0.99920040 105,65.5003,199.1425,52.8107,133.5030,0.99779373 105,381.5278,215.2977,27.7063,53.1431,0.26137382 105,341.1255,215.5829,30.0578,65.9939,0.17963369 106,127.0466,238.0455,66.6998,159.7715,1.00000000 106,280.4781,221.3602,25.4066,58.9501,0.99997425 106,207.5935,222.6642,32.1969,61.9381,0.99985778 106,173.6019,223.4854,34.8255,74.1580,0.00163298 107,125.9979,209.7509,28.7980,65.0309,0.00690890 107,13.9895,230.8572,31.1009,59.9819,0.00016645 107,98.4412,200.9858,33.8373,80.0302,0.00016622 107,34.6389,219.7841,28.6116,61.1370,0.00000005 107,477.8009,196.4521,33.7903,76.2227,0.00000000 108,15.7008,210.9328,28.0611,56.3280,0.00027061 108,177.9861,207.7436,26.6556,51.8348,0.00001078 108,29.8169,221.9326,23.3887,54.3414,0.00000002 108,461.2109,200.9193,37.4324,75.0806,0.00000000 108,122.4317,159.7368,29.8895,54.6644,0.00000000 108,602.3610,395.4897,37.7857,116.6570,0.00000000 108,636.0452,492.1500,4.1015,19.9967,0.00000000 108,626.9699,455.6014,13.1768,56.5453,0.00000000 109,53.7272,231.7018,26.8620,51.9931,0.00000004 109,183.4540,201.4250,24.0437,48.3081,0.00000000 109,120.7542,199.9283,24.8563,54.2147,0.00000000 109,397.0992,200.6718,27.4498,63.4634,0.00000000 109,52.5010,140.6071,36.8681,64.2270,0.00000000 109,199.3181,195.0578,23.8627,52.2834,0.00000000 109,631.3382,113.5277,8.8085,83.1443,0.00000000 109,635.6667,493.6392,4.4800,18.5075,0.00000000 109,602.4846,394.5424,37.6621,117.6043,0.00000000 109,629.3173,481.1884,10.8294,30.9583,0.00000000 110,372.8519,207.0486,23.8918,54.3166,0.00000003 110,460.6064,210.5765,29.9779,65.3382,0.00000002 110,179.9778,193.8580,26.6476,54.0568,0.00000000 110,635.8160,493.4969,4.3307,18.6498,0.00000000 110,602.8430,394.9346,37.3037,117.2121,0.00000000 110,626.7621,458.3849,13.3846,53.7618,0.00000000 111,127.5694,195.3346,28.3233,57.1258,0.00000000 111,76.6255,214.2420,26.1353,57.6619,0.00000000 111,496.8879,217.2786,24.1585,56.2430,0.00000000 111,483.8415,203.7278,47.5057,105.3324,0.00000000 111,636.0971,494.0015,4.0496,18.1452,0.00000000 111,629.4462,481.4772,10.7005,30.6695,0.00000000 112,96.9141,204.3637,30.8179,57.2630,0.00000094 112,23.7231,209.0045,26.9690,63.0690,0.00000000 112,603.5950,173.3661,36.5517,263.6162,0.00000000 112,624.1210,284.4589,16.0257,122.9748,0.00000000 112,637.5150,220.3235,2.6317,67.4882,0.00000000 112,634.7899,317.6041,5.3568,69.1668,0.00000000 112,1.0000,97.1908,58.5975,261.3869,0.00000000 112,629.3280,211.6079,10.8187,89.6237,0.00000000 112,635.1489,357.1063,4.9978,67.0743,0.00000000 112,636.5614,493.9113,3.5853,18.2354,0.00000000 112,627.6183,459.6013,12.5284,52.5454,0.00000000 113,42.5945,209.2382,28.8515,65.6851,0.00009580 113,561.1059,181.3824,25.6531,59.8363,0.00000401 113,22.6797,211.1836,32.0546,65.1212,0.00000018 113,550.4326,183.0131,65.2802,153.1150,0.00000000 113,9.8713,207.5528,27.3811,57.2060,0.00000000 113,54.5012,214.1415,37.8146,73.4155,0.00000000 113,636.8652,170.2759,3.2815,62.2616,0.00000000 113,635.1196,486.7262,5.0271,25.4205,0.00000000 114,125.1892,211.8362,27.1556,50.9902,0.00000000 114,601.5627,398.4968,38.5840,113.6499,0.00000000 114,633.6379,148.3744,6.5088,81.3751,0.00000000 114,632.9611,317.5796,7.1856,80.5915,0.00000000 114,627.9101,455.6577,12.2366,56.4890,0.00000000 114,636.6611,492.7300,3.4856,19.4167,0.00000000 115,77.3293,211.8758,25.9028,56.8487,0.00000021 115,57.9425,200.5480,38.4312,93.4664,0.00000000 115,132.2096,222.5338,23.5897,54.6045,0.00000000 115,636.9320,176.3079,3.2147,62.0094,0.00000000 115,602.9378,393.6937,37.2089,118.4530,0.00000000 115,632.5508,200.2030,7.5959,81.8537,0.00000000 115,626.3141,455.1729,13.8326,56.9738,0.00000000 115,635.8788,492.4934,4.2679,19.6533,0.00000000 116,28.2293,208.3744,28.3884,59.0657,0.00001012 116,9.7316,209.3881,30.4825,61.2353,0.00000005 116,6.5978,179.2766,56.4988,125.5656,0.00000000 116,19.2754,252.7258,30.8857,59.5027,0.00000000 116,60.1961,224.5518,36.1545,73.9733,0.00000000 116,39.8083,216.2817,34.7989,70.8289,0.00000000 116,602.7342,394.2133,37.4125,117.9334,0.00000000 116,635.8187,493.2084,4.3280,18.9383,0.00000000 116,626.7175,457.3300,13.4292,54.8167,0.00000000 117,60.0318,210.4767,29.9350,61.1289,0.00000000 117,633.8182,32.2520,6.3285,80.0005,0.00000000 117,602.8737,398.1683,37.2730,113.9784,0.00000000 117,636.2684,493.0907,3.8783,19.0560,0.00000000 117,626.8904,456.5908,13.2563,55.5559,0.00000000 118,26.8128,215.2780,26.7408,57.2467,0.00001501 118,13.4669,205.5155,50.7354,112.3482,0.00000000 118,602.6665,394.8465,37.4802,117.3002,0.00000000 118,635.9443,493.3173,4.2024,18.8294,0.00000000 118,629.4811,480.3720,10.6656,31.7747,0.00000000 119,309.6532,234.2865,23.9933,54.7748,0.00000000 119,603.2529,394.9427,36.8938,117.2040,0.00000000 119,636.0137,493.0957,4.1330,19.0510,0.00000000 119,626.6249,457.6979,13.5218,54.4488,0.00000000 120,310.0400,227.6779,36.1614,70.4524,0.00000000 120,602.9996,394.4300,37.1471,117.7167,0.00000000 120,635.9469,493.2795,4.1998,18.8672,0.00000000 120,629.3149,479.6700,10.8318,32.4767,0.00000000 121,602.6839,396.3968,37.4628,115.7499,0.00000000 121,636.2286,493.0122,3.9181,19.1345,0.00000000 121,627.2331,456.3377,12.9136,55.8090,0.00000000 122,466.9037,258.2385,40.0724,65.3211,0.00000002 122,82.7073,220.8857,27.2904,54.1842,0.00000000 122,602.8666,397.9147,37.2801,114.2320,0.00000000 122,636.3199,492.7178,3.8268,19.4289,0.00000000 122,629.4171,477.1933,10.7296,34.9534,0.00000000 123,554.3723,227.0630,24.6496,56.2271,0.00000000 123,628.3243,1.0000,11.8224,50.0673,0.00000000 123,633.0369,32.3409,7.1098,79.6816,0.00000000 123,636.6985,493.4744,3.4482,18.6723,0.00000000 123,627.9747,457.5730,12.1720,54.5737,0.00000000 124,565.7225,219.4889,32.8402,85.1436,0.00000000 124,15.0729,221.9338,24.6366,54.6949,0.00000000 124,583.7429,225.3755,37.6735,79.4827,0.00000000 124,629.5709,480.5988,10.5758,31.5479,0.00000000 125,170.9344,196.9938,28.1946,54.8253,0.00000000 125,537.5584,169.6159,88.8220,259.9192,0.00000000 125,603.1260,398.3719,37.0207,113.7748,0.00000000 125,627.3190,458.5198,12.8277,53.6269,0.00000000 125,1.0000,379.8841,59.0408,132.2626,0.00000000 125,634.8489,486.2887,5.2978,25.8580,0.00000000 125,633.3224,233.2935,6.8243,74.6856,0.00000000 126,136.4549,209.3526,29.1629,58.7762,0.00000000 126,601.4766,392.6044,38.6701,119.5423,0.00000000 126,636.0157,493.1488,4.1310,18.9979,0.00000000 126,627.3112,456.2494,12.8355,55.8973,0.00000000 127,62.5820,193.8675,31.3318,53.6520,0.00000000 127,105.4824,198.4712,27.1756,54.1828,0.00000000 127,379.2039,190.1847,37.3977,72.3178,0.00000000 127,602.1393,400.1608,38.0074,111.9859,0.00000000 127,636.2668,491.8866,3.8799,20.2601,0.00000000 127,627.1172,454.7967,13.0295,57.3500,0.00000000 128,39.3711,200.5536,28.0842,58.0963,0.00000000 128,75.6761,212.2344,27.6550,57.6561,0.00000000 128,56.1063,209.2115,30.7272,59.9533,0.00000000 128,86.7035,245.7177,34.5162,61.8962,0.00000000 128,291.8991,67.7052,89.6447,286.1906,0.00000000 128,635.8621,493.7279,4.2846,18.4188,0.00000000 128,602.4760,394.3447,37.6707,117.8020,0.00000000 128,629.3791,481.1310,10.7676,31.0157,0.00000000 129,312.8978,57.9094,91.3623,286.3201,0.00000000 129,602.0271,396.6632,38.1196,115.4835,0.00000000 129,635.9992,493.1380,4.1475,19.0087,0.00000000 129,626.5580,458.2155,13.5887,53.9312,0.00000000 130,447.7680,194.4270,40.5850,80.1348,0.00000000 130,44.8950,195.6287,30.1000,66.0327,0.00000000 130,632.8415,30.5075,7.3052,78.6766,0.00000000 130,627.4092,459.8423,12.7375,52.3044,0.00000000 130,636.1812,488.7624,3.9655,23.3843,0.00000000 131,496.4037,221.2159,39.5931,63.2928,0.00000000 131,636.5482,492.5123,3.5985,19.6344,0.00000000 131,629.7015,478.5377,10.4452,33.6090,0.00000000 132,591.4587,216.2650,48.6880,271.5672,0.00000000 132,635.8052,262.1544,4.3415,63.9769,0.00000000 132,601.6513,398.3882,38.4954,113.7585,0.00000000 132,622.6891,245.5479,17.4576,135.5040,0.00000000 132,635.4743,486.5576,4.6724,25.5891,0.00000000 132,627.9272,454.1187,12.2195,58.0280,0.00000000 133,295.6590,157.2133,27.9631,59.2665,0.00000002 133,1.0000,136.0440,57.3422,248.4790,0.00000000 133,636.3902,492.0867,3.7565,20.0600,0.00000000 133,629.6119,478.8642,10.5348,33.2825,0.00000000 134,298.3155,189.5857,26.5246,53.7380,0.01388517 134,288.3785,153.5615,54.2566,122.2706,0.00000000 134,635.7709,486.5196,4.3758,25.6271,0.00000000 134,627.6129,455.9202,12.5338,56.2265,0.00000000 135,317.8631,180.7667,38.4843,75.1471,0.00000228 135,281.7018,148.9317,87.7572,241.6172,0.00000000 135,602.8334,398.3066,37.3133,113.8401,0.00000000 135,627.2637,454.5474,12.8830,57.5993,0.00000000 135,636.5540,492.3957,3.5927,19.7510,0.00000000 136,345.4073,94.6246,90.0307,271.8831,0.00000000 136,602.0280,397.1279,38.1187,115.0188,0.00000000 136,626.6514,453.7464,13.4953,58.4003,0.00000000 136,636.1567,492.0790,3.9900,20.0677,0.00000000 137,603.0342,397.1104,37.1125,115.0363,0.00000000 137,636.3386,492.4376,3.8081,19.7091,0.00000000 137,627.1092,454.8570,13.0375,57.2897,0.00000000 138,603.4255,394.9994,36.7212,117.1473,0.00000000 138,635.7690,493.0092,4.3777,19.1375,0.00000000 138,629.5516,479.9215,10.5951,32.2252,0.00000000 139,603.1160,394.2216,37.0307,117.9251,0.00000000 139,635.4798,492.4351,4.6669,19.7116,0.00000000 139,625.8384,455.3864,14.3083,56.7603,0.00000000 140,603.6443,391.5610,36.5024,120.5857,0.00000000 140,625.7253,454.2989,14.4214,57.8478,0.00000000 140,635.8044,492.8490,4.3423,19.2977,0.00000000 140,94.2471,47.0788,87.9567,281.7868,0.00000000 141,603.2415,392.8351,36.9052,119.3116,0.00000000 141,636.2205,493.4584,3.9262,18.6883,0.00000000 141,629.4509,479.9745,10.6958,32.1722,0.00000000 142,353.6105,171.9026,22.5018,53.6511,0.00000000 142,604.0610,395.8321,36.0857,116.3146,0.00000000 142,626.4068,456.5502,13.7399,55.5965,0.00000000 142,636.3077,493.0317,3.8390,19.1150,0.00000000 143,75.3034,194.0060,22.7195,50.1488,0.39229044 143,402.8493,168.7975,21.9381,52.6819,0.00000001 143,604.2677,393.2062,35.8790,118.9405,0.00000000 143,625.5672,453.5663,14.5795,58.5804,0.00000000 143,296.8747,87.7335,58.9283,138.8742,0.00000000 143,635.9385,492.3690,4.2082,19.7777,0.00000000 144,429.0546,113.0530,25.5724,67.6728,0.00000035 144,86.7381,149.6815,26.4630,63.0136,0.00000000 144,444.7393,120.7061,26.3977,62.3818,0.00000000 144,410.9534,109.2825,29.1793,58.6358,0.00000000 144,602.8806,392.5986,37.2661,119.5481,0.00000000 144,297.5493,9.1775,89.9365,279.6911,0.00000000 144,635.6807,492.5288,4.4660,19.6179,0.00000000 144,625.7593,455.2591,14.3874,56.8876,0.00000000 145,76.4002,178.0447,28.4275,60.2550,0.00000000 145,581.3408,106.5438,30.2808,75.4712,0.00000000 145,23.2964,202.9888,26.6432,60.9158,0.00000000 145,568.9481,57.4862,58.0258,153.5209,0.00000000 145,99.6645,183.1448,26.5339,53.9678,0.00000000 145,603.4407,391.3968,36.7060,120.7499,0.00000000 145,631.6407,85.1842,8.5060,81.5707,0.00000000 145,625.4980,454.5915,14.6487,57.5552,0.00000000 145,292.1517,1.0000,95.1693,249.5235,0.00000000 145,635.6473,492.9387,4.4994,19.2080,0.00000000 146,31.0653,167.3248,38.5721,81.7213,0.00000009 146,52.4005,162.5156,30.7574,63.4376,0.00000000 146,79.3788,168.7889,27.0352,67.5458,0.00000000 146,579.6855,72.5462,37.2890,87.7559,0.00000000 146,7.9709,177.2268,45.5295,106.4532,0.00000000 146,603.5266,392.8582,36.6201,119.2885,0.00000000 146,1.0000,101.8262,78.9129,243.0309,0.00000000 146,631.2559,70.8240,8.8908,82.7929,0.00000000 146,637.7381,73.0021,2.4086,66.0989,0.00000000 146,625.8386,456.1112,14.3081,56.0355,0.00000000 146,635.9039,493.3923,4.2428,18.7544,0.00000000 147,603.4146,392.4386,36.7321,119.7081,0.00000000 147,626.2253,456.7706,13.9214,55.3761,0.00000000 147,635.6970,493.0214,4.4497,19.1253,0.00000000 148,20.8203,118.7247,27.8908,72.2410,0.00000000 148,199.4890,207.9462,26.6362,57.3847,0.00000000 148,1.0000,74.0296,55.3040,155.9038,0.00000000 148,383.3519,121.3092,27.3880,68.6903,0.00000000 148,8.3901,93.0720,87.8761,259.8740,0.00000000 148,367.1751,74.4775,54.7590,139.2096,0.00000000 148,629.9821,484.6021,10.1646,27.5446,0.00000000 148,636.2516,494.2346,3.8951,17.9121,0.00000000 149,32.0630,86.9793,33.0837,74.0961,0.00000000 149,48.0159,86.2672,42.4248,112.5323,0.00000000 149,190.9023,75.6751,47.7068,139.1949,0.00000000 149,39.6187,29.0339,86.3282,251.1375,0.00000000 149,635.4242,487.8180,4.7225,24.3287,0.00000000 149,154.1718,12.0087,86.3764,271.9149,0.00000000 149,627.5170,460.1334,12.6297,52.0133,0.00000000 150,37.1550,180.2589,39.9258,81.9095,0.00000000 150,59.8408,165.4420,44.3112,103.8962,0.00000000 150,50.2311,139.8320,94.1587,240.6417,0.00000000 150,136.0237,40.8191,54.5283,143.0287,0.00000000 150,636.0365,494.1231,4.1102,18.0236,0.00000000 150,602.9074,394.2153,37.2393,117.9314,0.00000000 150,629.5627,482.7240,10.5840,29.4227,0.00000000 151,128.6759,157.0293,44.0062,111.1434,0.00000000 151,468.8584,75.8601,60.5546,138.5931,0.00000000 151,107.1454,91.9482,83.7792,259.3974,0.00000000 151,636.0217,494.2077,4.1250,17.9390,0.00000000 151,629.5907,482.5129,10.5560,29.6338,0.00000000 152,1.0000,115.8533,62.3506,259.6846,0.00000000 152,635.5523,488.2240,4.5944,23.9227,0.00000000 152,627.4391,460.7919,12.7076,51.3548,0.00000000 153,409.7319,251.7860,24.7379,46.2108,0.96932662 153,591.2725,187.1034,38.1497,80.5200,0.00000000 153,636.3224,207.5817,3.8243,66.5502,0.00000000 153,635.5619,488.1888,4.5848,23.9579,0.00000000 153,627.6347,461.5010,12.5120,50.6457,0.00000000 154,310.2262,258.5318,25.2165,52.3802,0.99997973 154,324.8518,256.3939,24.8152,52.0413,0.00000016 154,296.2124,237.1012,50.3176,92.2418,0.00000000 154,635.6430,488.2309,4.5037,23.9158,0.00000000 154,627.5285,461.6102,12.6182,50.5365,0.00000000 155,167.5559,248.1686,34.1802,72.6795,0.99999994 155,155.8575,256.4802,26.1531,63.4136,0.00000036 155,189.3410,256.9435,25.7949,55.4743,0.00000018 155,125.4395,62.9871,40.8850,76.3376,0.00000000 155,143.1498,145.0498,93.2937,215.8712,0.00000000 155,635.4996,488.8486,4.6471,23.2981,0.00000000 155,114.5908,34.8537,87.0942,246.3348,0.00000000 155,627.7143,460.7419,12.4324,51.4048,0.00000000 156,601.9163,393.6532,38.2304,118.4935,0.00000000 156,635.8579,493.0733,4.2888,19.0734,0.00000000 156,626.9385,458.1039,13.2082,54.0428,0.00000000 157,19.0122,177.5858,27.1622,64.3362,0.00000150 157,1.0000,182.0904,41.0818,109.5037,0.00000000 157,9.2680,132.2238,57.0992,114.4399,0.00000000 157,1.0000,157.0237,79.8792,256.7594,0.00000000 157,602.4366,399.8401,37.7101,112.3066,0.00000000 157,626.3198,461.7872,13.8269,50.3595,0.00000000 157,635.1954,489.5330,4.9513,22.6137,0.00000000 158,604.1548,393.0987,35.9919,119.0480,0.00000000 158,629.4943,478.8079,10.6524,33.3388,0.00000000 158,636.2637,493.4165,3.8830,18.7302,0.00000000 159,45.3864,179.9566,31.3061,66.9232,0.00000177 159,1.0000,102.4236,54.4841,261.7186,0.00000000 159,626.9375,459.3247,13.2092,52.8220,0.00000000 159,635.2503,486.9461,4.8964,25.2006,0.00000000 160,603.2712,396.9394,36.8755,115.2073,0.00000000 160,636.1694,492.8211,3.9773,19.3256,0.00000000 160,627.0914,455.4271,13.0553,56.7196,0.00000000 161,487.6780,81.4824,26.0677,55.6408,0.00000000 161,603.3421,392.2076,36.8046,119.9391,0.00000000 161,636.0524,493.1561,4.0943,18.9906,0.00000000 161,629.2512,478.8406,10.8955,33.3061,0.00000000 162,603.8452,393.1967,36.3015,118.9500,0.00000000 162,636.3561,493.3389,3.7906,18.8078,0.00000000 162,629.3217,478.0351,10.8250,34.1116,0.00000000 163,628.3141,1.0000,11.8326,50.7006,0.00000000 163,602.3810,396.6783,37.7657,115.4684,0.00000000 163,636.4147,493.0691,3.7320,19.0776,0.00000000 163,627.6692,456.8751,12.4775,55.2716,0.00000000 164,602.1918,395.7282,37.9549,116.4185,0.00000000 164,626.5566,453.9509,13.5901,58.1958,0.00000000 164,635.8498,492.2406,4.2969,19.9061,0.00000000 165,603.3006,393.7364,36.8461,118.4103,0.00000000 165,635.8929,493.5638,4.2538,18.5829,0.00000000 165,629.5295,480.3392,10.6172,31.8075,0.00000000 166,602.8603,394.3969,37.2864,117.7498,0.00000000 166,636.4210,492.8215,3.7257,19.3252,0.00000000 166,629.3837,478.3232,10.7630,33.8235,0.00000000 167,65.6385,198.9367,37.2227,70.3755,0.00000000 167,603.7509,392.8885,36.3958,119.2582,0.00000000 167,636.0356,492.6035,4.1111,19.5432,0.00000000 167,629.3083,477.5040,10.8384,34.6427,0.00000000 168,602.8580,395.9662,37.2887,116.1805,0.00000000 168,636.2632,492.9628,3.8835,19.1839,0.00000000 168,629.3118,478.0497,10.8349,34.0970,0.00000000 169,603.5684,392.7534,36.5783,119.3933,0.00000000 169,629.1909,479.6349,10.9558,32.5118,0.00000000 169,635.6902,493.2848,4.4565,18.8619,0.00000000 170,603.4434,393.8020,36.7033,118.3447,0.00000000 170,626.4029,454.9413,13.7438,57.2054,0.00000000 170,636.2094,492.8524,3.9373,19.2943,0.00000000 171,604.0798,395.1177,36.0669,117.0290,0.00000000 171,626.6454,454.3664,13.5013,57.7803,0.00000000 171,634.9836,486.3144,5.1631,25.8323,0.00000000 172,603.3370,393.4272,36.8097,118.7195,0.00000000 172,626.5063,454.3145,13.6404,57.8322,0.00000000 172,636.0977,492.3888,4.0490,19.7579,0.00000000 173,603.3506,395.5270,36.7961,116.6197,0.00000000 173,624.7785,452.5045,15.3682,59.6422,0.00000000 173,635.6288,491.0017,4.5179,21.1450,0.00000000 174,22.3674,140.7574,40.0427,87.0190,0.00000008 174,1.0000,119.9356,60.3281,242.7236,0.00000000 174,601.1685,1.0000,38.9782,254.9129,0.00000000 174,604.2941,394.5352,35.8526,117.6115,0.00000000 174,633.2205,37.2251,6.9262,82.1549,0.00000000 174,625.7069,454.7699,14.4398,57.3768,0.00000000 174,635.8899,492.7025,4.2568,19.4442,0.00000000 175,604.0800,396.0858,36.0667,116.0609,0.00000000 175,1.0000,136.4107,56.3777,256.6209,0.00000000 175,635.9988,492.8376,4.1479,19.3091,0.00000000 175,626.5053,456.5611,13.6414,55.5856,0.00000000 176,604.7424,396.9660,35.4043,115.1807,0.00000000 176,625.6879,455.0868,14.4588,57.0599,0.00000000 176,636.0818,491.9814,4.0649,20.1653,0.00000000 177,602.0822,399.1545,38.0645,112.9922,0.00000000 177,636.1488,491.8099,3.9979,20.3368,0.00000000 177,629.4670,477.2073,10.6797,34.9394,0.00000000 178,41.3937,225.9744,39.5261,77.5509,0.00000022 178,602.5119,400.7109,37.6348,111.4358,0.00000000 178,22.1097,192.7134,88.5602,191.9649,0.00000000 178,636.4763,491.7680,3.6704,20.3787,0.00000000 178,627.2434,454.9123,12.9033,57.2344,0.00000000 179,462.1566,166.7787,23.5503,53.0943,0.00000000 179,602.5889,397.2728,37.5578,114.8739,0.00000000 179,626.4630,454.2581,13.6837,57.8886,0.00000000 179,636.1714,492.0147,3.9753,20.1320,0.00000000 180,603.0219,395.0474,37.1248,117.0993,0.00000000 180,67.8810,227.6006,89.5394,275.5528,0.00000000 180,320.2432,64.9546,88.9834,276.0698,0.00000000 180,636.1111,492.1547,4.0356,19.9920,0.00000000 180,629.0392,475.9345,11.1075,36.2122,0.00000000 181,489.1676,124.3674,68.6962,162.5228,0.00000000 181,597.0648,105.2345,43.0819,272.1435,0.00000000 181,603.3514,400.8867,36.7953,111.2600,0.00000000 181,625.8193,133.2533,14.3274,129.8956,0.00000000 181,634.5588,158.6758,5.5879,69.8221,0.00000000 181,626.4807,457.1371,13.6660,55.0096,0.00000000 181,636.3310,492.6506,3.8157,19.4961,0.00000000 182,474.8785,315.8086,91.2840,196.3381,0.00000000 182,603.1157,393.7673,37.0310,118.3794,0.00000000 182,635.9913,492.1315,4.1554,20.0152,0.00000000 182,629.3773,477.4837,10.7694,34.6630,0.00000000 183,635.7970,488.0754,4.3497,24.0713,0.00000000 183,628.1401,459.7507,12.0066,52.3960,0.00000000 184,636.0407,493.6474,4.1060,18.4993,0.00000000 184,629.3708,480.8434,10.7759,31.3033,0.00000000 185,636.1259,493.5834,4.0208,18.5633,0.00000000 185,531.5670,143.1780,90.9879,270.5926,0.00000000 185,629.3618,480.2416,10.7849,31.9051,0.00000000 186,483.8294,157.7133,23.3711,55.6986,0.00000000 186,601.7502,293.3387,27.6002,64.4642,0.00000000 186,602.6497,134.6109,26.0600,64.4405,0.00000000 186,587.9171,85.3060,51.3709,126.9057,0.00000000 186,636.1572,150.8298,3.9895,65.9631,0.00000000 186,626.0292,111.7277,14.1175,124.9903,0.00000000 186,635.6131,279.6737,4.5336,64.4097,0.00000000 186,475.4773,266.0204,90.5399,246.1263,0.00000000 186,636.0140,493.7591,4.1327,18.3876,0.00000000 186,627.3429,458.9449,12.8038,53.2018,0.00000000 187,554.1586,123.8603,26.6807,58.4175,0.00000000 187,477.6731,216.4124,89.2632,256.1861,0.00000000 187,636.0598,493.7118,4.0869,18.4349,0.00000000 187,627.2827,458.9769,12.8640,53.1698,0.00000000 188,635.9055,493.4015,4.2412,18.7452,0.00000000 188,629.5430,481.6741,10.6037,30.4726,0.00000000 189,636.1542,494.2918,3.9925,17.8549,0.00000000 189,629.6203,482.2237,10.5264,29.9230,0.00000000 190,635.9470,493.7447,4.1997,18.4020,0.00000000 190,629.4411,481.3732,10.7056,30.7735,0.00000000 191,636.1138,493.8905,4.0329,18.2562,0.00000000 191,629.5192,480.9510,10.6275,31.1957,0.00000000 192,1.0000,382.0226,58.8431,130.1241,0.00000000 192,636.7842,493.7889,3.3625,18.3578,0.00000000 192,628.1667,459.3026,11.9800,52.8441,0.00000000 193,1.0000,385.3522,59.8413,126.7945,0.00000000 193,629.6040,478.7105,10.5427,33.4362,0.00000000 193,636.4702,492.7973,3.6765,19.3494,0.00000000 194,272.4542,240.6181,30.8697,75.4825,0.00000000 194,635.5905,487.5183,4.5562,24.6284,0.00000000 194,627.7698,456.4337,12.3769,55.7130,0.00000000 195,629.2705,478.7505,10.8762,33.3962,0.00000000 196,280.7156,217.5975,31.1988,78.5288,0.00000001 196,377.7945,35.6201,85.1843,270.8071,0.00000000 196,483.8476,223.0279,27.8949,63.3140,0.00000000 196,258.2790,183.8597,45.6176,123.8831,0.00000000 196,354.7982,114.7510,65.3843,170.3332,0.00000000 196,232.3188,187.2066,46.3134,100.1841,0.00000000 196,339.9887,183.2592,45.1497,111.1900,0.00000000 196,163.5632,85.0811,93.2018,271.2465,0.00000000 196,277.7556,163.4546,63.2225,147.4837,0.00000000 196,635.9185,493.0077,4.2282,19.1390,0.00000000 196,600.9846,395.2523,39.1621,116.8944,0.00000000 196,629.2965,480.9252,10.8502,31.2215,0.00000000 197,80.5265,185.0985,29.1234,77.6878,0.00003802 197,87.4272,117.4079,43.3033,120.8613,0.00000001 197,146.4890,190.2723,38.5682,70.8416,0.00000000 197,530.4639,116.3050,95.5664,259.0223,0.00000000 197,49.2627,88.5642,88.9500,217.7141,0.00000000 197,636.6941,199.5968,3.4526,65.5745,0.00000000 197,595.5638,99.3455,44.5829,268.1935,0.00000000 197,630.1887,197.3918,9.9580,102.1117,0.00000000 197,635.2354,487.8912,4.9113,24.2555,0.00000000 198,569.8265,197.3747,24.8421,53.4935,0.00000000 198,311.4216,6.6004,80.3388,252.5742,0.00000000 198,635.9452,493.3969,4.2015,18.7498,0.00000000 198,629.3486,481.4218,10.7981,30.7249,0.00000000 199,227.0904,96.9692,44.6964,127.9472,0.00000001 199,207.2714,93.9928,40.8346,106.3158,0.00000000 199,247.4143,35.9919,64.2858,172.6757,0.00000000 199,201.8737,40.2084,84.4368,244.6994,0.00000000 199,633.6223,163.3654,6.5244,78.6530,0.00000000 199,637.3301,140.2061,2.8166,66.2509,0.00000000 199,595.6340,81.9480,44.5127,262.2545,0.00000000 199,635.1901,488.2778,4.9566,23.8689,0.00000000 199,627.3326,459.5690,12.8141,52.5777,0.00000000 200,252.3811,166.1610,23.4498,52.2798,0.00000001 200,594.8239,202.0319,27.9056,60.7191,0.00000001 200,449.5885,52.4990,42.0470,113.2920,0.00000000 200,1.0000,91.1982,58.0971,260.3629,0.00000000 200,435.3810,1.0000,86.2232,210.4751,0.00000000 200,591.1688,72.2138,48.9779,270.8543,0.00000000 200,630.1486,180.1987,9.9981,84.5576,0.00000000 200,634.6903,149.8087,5.4564,74.4688,0.00000000 200,625.4089,110.8413,14.7378,130.3330,0.00000000 200,636.0618,493.4623,4.0849,18.6844,0.00000000 200,629.4210,481.2251,10.7257,30.9216,0.00000000 201,396.9354,135.7708,26.0813,63.9387,0.00000000 201,156.1154,3.5924,43.7687,127.1740,0.00000000 201,418.2105,126.1320,40.9380,104.1661,0.00000000 201,595.1601,34.6121,44.9866,273.8485,0.00000000 201,634.3958,153.5016,5.7509,79.4691,0.00000000 201,114.1139,14.3845,88.5922,258.8976,0.00000000 201,635.4070,487.4833,4.7397,24.6634,0.00000000 201,628.9095,457.5960,11.2372,54.5507,0.00000000 202,235.8820,65.4731,32.6781,81.8529,0.00000000 202,269.1997,65.9814,40.6086,124.6906,0.00000000 202,189.4382,1.0000,86.9615,239.9523,0.00000000 202,35.9171,13.8553,91.5773,235.9570,0.00000000 202,258.3925,26.0274,91.8379,240.3569,0.00000000 202,1.0000,31.7382,56.4092,255.8538,0.00000000 202,601.3095,398.0859,38.8372,114.0608,0.00000000 202,636.2164,492.1036,3.9303,20.0431,0.00000000 202,627.1980,456.5490,12.9487,55.5977,0.00000000 203,264.0559,34.0957,39.5272,95.3085,0.00000000 203,238.9108,39.2474,39.9696,91.2284,0.00000000 203,4.8316,1.0000,89.7858,241.6232,0.00000000 203,258.8318,1.0000,87.1904,210.2393,0.00000000 203,204.8223,1.0000,56.4303,137.6986,0.00000000 203,106.1220,1.0000,84.3253,225.1815,0.00000000 203,592.8025,1.0000,47.3442,250.5478,0.00000000 203,624.7820,14.0441,15.3647,134.5647,0.00000000 203,634.6533,486.3857,5.4934,25.7610,0.00000000 203,627.5424,457.2341,12.6043,54.9126,0.00000000 204,472.6376,125.9274,27.6258,67.5590,0.00000000 204,383.1665,202.5710,28.2819,60.6138,0.00000000 204,514.0925,139.3256,40.4077,117.0420,0.00000000 204,477.3378,134.3922,41.6997,99.0025,0.00000000 204,445.4898,90.8637,45.8336,124.7978,0.00000000 204,440.5457,35.3830,85.0175,245.1805,0.00000000 204,373.5422,41.1457,90.9836,280.5769,0.00000000 204,513.3069,81.6259,90.8816,233.1159,0.00000000 204,80.4207,1.0000,60.1686,150.4716,0.00000000 204,635.0616,487.8622,5.0851,24.2845,0.00000000 204,627.2668,459.9068,12.8799,52.2399,0.00000000 205,148.8865,193.5856,48.8577,120.4398,0.00000000 205,211.9156,204.5123,46.1176,114.1856,0.00000000 205,356.1141,46.8341,88.4939,273.1986,0.00000000 205,137.4175,177.4376,90.5128,236.1645,0.00000000 205,566.1785,69.2421,73.9682,267.7047,0.00000000 205,399.1359,94.9811,64.7749,136.3331,0.00000000 205,625.1785,132.5570,14.9682,128.9251,0.00000000 205,633.9963,121.8980,6.1504,78.6206,0.00000000 205,637.9345,163.8142,2.2122,67.8838,0.00000000 205,636.0317,492.2609,4.1150,19.8858,0.00000000 205,629.4624,480.1084,10.6843,32.0383,0.00000000 206,406.1629,196.3145,22.4165,54.6515,0.00030348 206,472.3017,200.4839,26.7556,56.8114,0.00000731 206,383.1486,191.5901,28.5973,59.9829,0.00000000 206,634.8507,151.5436,5.2960,74.9457,0.00000000 206,636.3275,493.3480,3.8192,18.7987,0.00000000 206,629.6160,480.7653,10.5307,31.3814,0.00000000 207,597.8622,142.4491,42.2845,260.3195,0.00000000 207,544.3844,195.5595,62.3257,161.8645,0.00000000 207,473.2471,147.4904,42.5865,111.6821,0.00000000 207,440.8771,164.0911,43.3707,119.1832,0.00000000 207,623.6566,186.4629,16.4901,127.4921,0.00000000 207,634.0227,220.6636,6.1240,70.6135,0.00000000 207,450.4130,86.7143,90.4535,237.2299,0.00000000 207,635.8300,488.0683,4.3167,24.0784,0.00000000 207,628.9794,460.9195,11.1673,51.2272,0.00000000 208,537.2928,185.3329,29.4902,64.1036,0.00779207 208,454.5945,139.8597,31.5612,87.9251,0.00003988 208,482.6741,175.3196,36.7330,84.4398,0.00000000 208,428.4339,127.6561,42.7404,105.3917,0.00000000 208,522.0423,156.9101,53.8528,135.9369,0.00000000 208,531.8636,275.8039,87.6675,236.3428,0.00000000 208,626.9905,454.5346,13.1562,57.6121,0.00000000 208,634.2423,485.2194,5.9044,26.9273,0.00000000 209,515.3851,201.0075,31.8473,65.7294,0.89675248 209,430.1429,125.8236,29.4211,76.7646,0.00000000 209,422.8357,146.6837,42.6950,123.1417,0.00000000 209,483.7588,206.5920,41.6373,104.2491,0.00000000 209,445.8081,42.3742,81.5538,258.7112,0.00000000 209,629.5258,476.5099,10.6209,35.6368,0.00000000 210,529.9051,223.0387,38.7971,80.7812,0.99976599 210,443.3684,155.3135,31.9625,82.6827,0.00000000 210,595.9942,227.1526,44.1525,158.9614,0.00000000 210,567.0067,20.8296,73.1400,266.0289,0.00000000 210,624.0816,274.5291,16.0651,130.9899,0.00000000 210,431.9799,141.2478,86.1289,241.2981,0.00000000 210,629.5665,477.8856,10.5802,34.2611,0.00000000 211,418.0515,218.7288,26.1502,51.4296,0.00000076 211,424.2887,243.2487,25.7654,65.9717,0.00000000 211,600.1333,1.0000,40.0134,259.7194,0.00000000 211,636.6011,150.5471,3.5456,67.9664,0.00000000 211,523.2098,312.6875,90.4849,199.4592,0.00000000 211,638.1079,65.5090,2.0388,64.7697,0.00000000 211,631.3480,55.8521,8.7987,86.5487,0.00000000 211,625.4416,106.5565,14.7051,131.2526,0.00000000 211,602.9853,400.6994,37.1614,111.4473,0.00000000 211,636.4247,492.4496,3.7220,19.6971,0.00000000 211,629.5945,478.7473,10.5522,33.3994,0.00000000 212,486.7840,226.4565,36.7352,84.1115,0.00000018 212,415.4725,233.0230,29.6375,59.4787,0.00000000 212,601.6884,398.1921,38.4583,113.9546,0.00000000 212,494.6529,204.5266,64.9180,148.3898,0.00000000 212,470.4460,152.3769,59.0155,128.1995,0.00000000 212,449.1263,181.3822,86.2538,243.2938,0.00000000 212,577.9841,445.7915,49.5112,66.3552,0.00000000 212,626.0681,452.8604,14.0786,59.2863,0.00000000 212,635.8528,490.1235,4.2939,22.0232,0.00000000 213,398.5271,113.7898,24.3041,63.5721,0.00000000 213,472.8031,188.4923,60.7367,135.5656,0.00000000 213,471.6914,98.8430,39.7329,91.7707,0.00000000 213,601.2202,396.4815,38.9265,115.6652,0.00000000 213,445.6628,59.7511,92.0326,232.9584,0.00000000 213,1.0000,383.3944,59.9454,128.7523,0.00000000 213,635.9162,492.6529,4.2305,19.4938,0.00000000 213,626.6635,456.7970,13.4832,55.3497,0.00000000 214,435.5683,77.4859,25.6509,58.4988,0.00000008 214,505.6230,261.8890,25.3176,57.0635,0.00000006 214,441.5105,104.5363,22.9006,58.7792,0.00000000 214,443.9745,197.6614,25.8715,64.9269,0.00000000 214,432.5768,170.7823,50.0113,124.1623,0.00000000 214,428.8886,78.4023,48.6576,126.0666,0.00000000 214,594.2068,167.1149,45.9399,270.1339,0.00000000 214,602.3882,400.4149,37.7585,111.7318,0.00000000 214,633.8610,181.7128,6.2857,80.0143,0.00000000 214,627.0754,455.2720,13.0713,56.8747,0.00000000 214,636.1035,491.7505,4.0432,20.3962,0.00000000 215,512.9599,87.7546,26.2036,75.2754,0.00000000 215,500.5943,55.7764,54.0798,144.0266,0.00000000 215,637.5674,161.5635,2.5793,64.5098,0.00000000 215,600.9421,396.8855,39.2046,115.2612,0.00000000 215,631.8831,168.4892,8.2636,79.0207,0.00000000 215,626.2139,454.1954,13.9328,57.9513,0.00000000 215,636.1236,491.5370,4.0231,20.6097,0.00000000 216,635.7645,492.6060,4.3822,19.5407,0.00000000 216,629.2316,480.7448,10.9151,31.4019,0.00000000 217,400.3827,218.4266,23.7092,55.0213,0.00001776 217,634.9532,487.5915,5.1935,24.5552,0.00000000 217,627.2513,459.4372,12.8954,52.7095,0.00000000 218,418.9387,214.8852,23.9711,49.8529,0.66127706 218,442.7241,155.5795,23.5275,66.4410,0.00000077 218,432.7512,208.6909,24.7920,54.7493,0.00000000 218,557.2386,68.8510,82.9081,265.1413,0.00000000 218,635.4725,130.8573,4.6742,68.4097,0.00000000 218,633.0826,195.0121,7.0641,80.8519,0.00000000 218,594.2526,336.5920,45.8941,175.5547,0.00000000 218,626.6583,105.7128,13.4884,128.5721,0.00000000 218,635.0497,488.0037,5.0970,24.1430,0.00000000 218,627.2985,457.2056,12.8482,54.9411,0.00000000 219,472.2893,222.7280,22.0205,51.2539,1.00000000 219,456.4848,224.9775,20.5420,48.8355,1.00000000 219,551.3602,130.8594,41.6391,122.3243,0.00000005 219,545.8873,94.7792,32.2837,83.9406,0.00000000 219,534.0691,100.4205,85.6260,237.0220,0.00000000 219,629.4586,480.2556,10.6881,31.8911,0.00000000 220,539.2325,217.5845,30.4442,76.4668,0.06430148 220,511.8316,121.3574,31.5594,87.2581,0.00000001 220,523.4047,197.1752,67.1131,170.6114,0.00000000 220,466.9097,229.7409,26.9039,68.9940,0.00000000 220,489.3454,75.3859,81.3709,244.1922,0.00000000 220,633.4018,161.1234,6.7449,78.8214,0.00000000 220,634.5096,487.2914,5.6371,24.8553,0.00000000 220,627.4179,456.0701,12.7288,56.0766,0.00000000 221,471.5508,207.1394,84.9046,259.2420,0.00000000 221,636.0626,493.1650,4.0841,18.9817,0.00000000 221,629.3469,480.0052,10.7998,32.1415,0.00000000 222,599.8279,396.0440,40.3188,116.1027,0.00000000 222,544.5647,323.1862,85.8652,188.9605,0.00000000 222,630.4927,381.9606,9.6540,103.4724,0.00000000 222,1.0000,381.8482,58.7549,130.2985,0.00000000 222,627.8278,456.7957,12.3189,55.3510,0.00000000 222,636.0858,493.1350,4.0609,19.0117,0.00000000 223,528.1833,18.8429,91.6484,247.7823,0.00000000 223,601.2415,395.2018,38.9052,116.9449,0.00000000 223,635.6845,493.1162,4.4622,19.0305,0.00000000 223,629.3658,481.9781,10.7809,30.1686,0.00000000 224,444.2785,236.2765,21.9275,50.9531,0.00002262 224,551.2938,65.5568,43.8311,140.9739,0.00000000 224,568.9899,77.7773,71.1568,269.7374,0.00000000 224,600.8788,395.5051,39.2679,116.6416,0.00000000 224,635.9370,492.1471,4.2097,19.9996,0.00000000 224,626.7133,454.9453,13.4334,57.2014,0.00000000 225,379.4484,193.5278,24.6904,63.7668,0.00000001 225,414.1745,207.5435,22.6977,57.2889,0.00000000 225,520.4565,139.1534,55.2266,149.4248,0.00000000 225,603.9269,198.5645,36.2198,259.9919,0.00000000 225,636.0965,203.8771,4.0502,66.7619,0.00000000 225,633.9443,276.7002,6.2024,74.2924,0.00000000 225,627.0900,214.3256,13.0567,95.7830,0.00000000 225,625.4370,285.1415,14.7097,124.3783,0.00000000 225,634.7294,44.5214,5.4173,80.5602,0.00000000 225,634.6300,486.7261,5.5167,25.4206,0.00000000 225,627.0961,455.9358,13.0506,56.2109,0.00000000 226,415.0826,150.8728,27.8251,57.5562,0.00007098 226,423.2017,186.8622,26.0877,68.8631,0.00000232 226,522.4572,198.5977,34.1121,99.2545,0.00000000 226,378.6831,142.9078,21.4469,50.7844,0.00000000 226,513.1183,116.8281,27.5905,74.1385,0.00000000 226,500.0285,76.4916,59.8281,164.7923,0.00000000 226,506.7758,162.9837,79.7288,219.7650,0.00000000 227,520.6252,163.3785,39.3675,96.2999,0.79859829 227,412.2058,93.1956,29.6573,72.5559,0.00000236 227,511.7160,86.6668,37.9162,93.8216,0.00000005 227,505.5821,123.4357,83.9753,210.8827,0.00000000 227,376.1073,129.7734,22.6859,60.1092,0.00000000 228,401.5231,85.4756,25.8209,63.5981,0.00000009 228,410.4057,156.0761,24.6391,64.2447,0.00000000 228,481.9739,24.8007,33.2005,85.4314,0.00000000 228,395.5137,129.8487,46.7105,117.4182,0.00000000 228,600.3549,393.9460,39.7918,118.2007,0.00000000 228,450.9676,1.0000,81.1534,204.6009,0.00000000 228,636.1115,492.4564,4.0352,19.6903,0.00000000 228,628.9119,479.2585,11.2348,32.8882,0.00000000 229,13.3101,162.8620,30.2970,57.4095,0.00026867 229,460.4446,29.2370,33.1823,91.2572,0.00000000 229,466.6897,88.9651,28.9581,78.8948,0.00000000 229,350.0552,203.4482,27.1173,51.3982,0.00000000 229,438.4295,1.0000,82.1458,196.6017,0.00000000 229,536.3431,265.1229,82.1502,247.0238,0.00000000 229,487.0342,251.0204,87.5871,247.8200,0.00000000 229,634.8295,488.4424,5.3172,23.7043,0.00000000 230,52.3945,245.8623,32.7066,60.8672,0.00212800 230,379.6781,243.4878,26.8056,48.6919,0.00000000 230,37.7719,185.8354,60.8013,133.9034,0.00000000 230,10.5058,131.4791,45.2445,119.4718,0.00000000 230,1.0000,115.7039,25.8748,115.9530,0.00000000 230,497.5668,288.8867,95.0528,223.2600,0.00000000 230,634.9601,488.9905,5.1866,23.1562,0.00000000 230,626.0621,458.2639,14.0846,53.8828,0.00000000 231,413.5568,249.0284,27.5568,57.8878,0.02789580 231,362.4477,200.3314,33.7707,79.2195,0.00000000 231,392.5465,220.7607,39.7696,86.3425,0.00000000 231,480.7139,53.9249,36.9908,73.2986,0.00000000 231,1.0000,130.5316,64.2092,259.0467,0.00000000 231,369.4318,119.4708,85.4245,245.0719,0.00000000 231,635.2974,488.1223,4.8493,24.0244,0.00000000 231,627.1434,459.5728,13.0033,52.5739,0.00000000 232,473.6869,248.0367,34.7706,78.8553,1.00000000 232,435.8428,53.8956,21.2660,58.7637,0.00000018 232,431.9459,190.7378,46.8440,124.0026,0.00000000 232,436.3256,136.4815,40.9363,96.1359,0.00000000 232,418.0752,70.4057,79.7371,211.9545,0.00000000 233,374.7614,36.9613,20.7915,57.4107,0.00000000 233,531.7001,121.9433,58.8877,149.3710,0.00000000 233,577.6119,108.3633,28.2736,62.8218,0.00000000 233,379.3512,133.0032,55.9954,150.2687,0.00000000 233,599.4536,140.3228,40.6931,174.0152,0.00000000 233,599.2592,221.8863,40.8875,266.1516,0.00000000 233,627.1412,211.4302,13.0055,99.8123,0.00000000 233,624.9739,261.8474,15.1728,130.2099,0.00000000 233,635.9434,488.6455,4.2033,23.5012,0.00000000 234,550.0348,146.3531,24.1486,59.1278,0.00000148 234,72.8470,32.3284,40.8815,122.5922,0.00000000 234,541.9378,160.8766,60.8657,164.0348,0.00000000 234,552.5114,105.2924,42.0093,104.4405,0.00000000 234,518.1240,110.8984,60.3913,173.7824,0.00000000 234,566.8660,86.1363,57.6214,150.6191,0.00000000 234,635.1594,487.1755,4.9873,24.9712,0.00000000 235,187.8829,41.5776,35.4992,84.7457,0.00000000 235,169.2435,1.0000,84.3038,199.7551,0.00000000 235,637.9207,36.1976,2.2260,67.6532,0.00000000 235,634.5602,277.6413,5.5865,78.5002,0.00000000 235,630.7101,29.4791,9.4366,84.0975,0.00000000 235,635.7190,493.5595,4.4277,18.5872,0.00000000 235,629.3250,481.5788,10.8217,30.5679,0.00000000 236,350.4256,127.8875,85.1632,250.4495,0.00000000 236,635.7250,493.6944,4.4217,18.4523,0.00000000 236,629.4087,481.7695,10.7380,30.3772,0.00000000 237,369.8460,51.3668,28.5594,73.0049,0.00000000 237,117.3275,208.3648,32.2856,60.4111,0.00000000 237,637.2151,188.4921,2.9316,65.1092,0.00000000 237,635.7208,493.5439,4.4259,18.6028,0.00000000 237,601.5655,395.8698,38.5812,116.2769,0.00000000 237,629.4415,481.5825,10.7052,30.5642,0.00000000 238,390.8467,263.2339,25.5440,50.9468,0.00000000 238,635.6564,493.1354,4.4903,19.0113,0.00000000 238,601.9277,394.2970,38.2190,117.8497,0.00000000 238,629.5023,480.5072,10.6444,31.6395,0.00000000 239,577.4523,220.3324,48.8033,125.7650,0.00000000 239,596.0638,218.7089,44.0829,267.7232,0.00000000 239,632.1212,255.0013,8.0255,85.4919,0.00000000 239,634.3843,300.8055,5.7624,69.9391,0.00000000 239,601.6913,394.8508,38.4554,117.2959,0.00000000 239,635.7858,493.5526,4.3609,18.5941,0.00000000 239,629.3961,481.0573,10.7506,31.0894,0.00000000 240,547.7914,162.2856,27.3865,68.0356,0.00000000 240,601.0869,394.5200,39.0598,117.6267,0.00000000 240,635.5293,493.1137,4.6174,19.0330,0.00000000 240,627.2764,458.8194,12.8703,53.3273,0.00000000 241,106.3751,235.9320,29.8022,55.7885,0.00000244 241,504.7805,307.7562,30.0855,57.8096,0.00000000 241,514.2654,316.2592,35.2885,81.6085,0.00000000 241,20.9893,204.0685,28.4626,61.0902,0.00000000 241,282.6827,147.3685,45.0370,110.9576,0.00000000 241,410.3044,253.8652,46.9245,127.5913,0.00000000 241,420.3573,236.8837,85.0448,227.9152,0.00000000 241,635.7054,487.0886,4.4413,25.0581,0.00000000 242,273.3612,271.4256,30.7081,60.1622,0.00000000 242,534.1821,72.2290,87.7715,284.4231,0.00000000 242,632.1422,352.0434,8.0045,84.5274,0.00000000 242,635.5999,487.7620,4.5468,24.3847,0.00000000 242,628.2997,459.5526,11.8470,52.5941,0.00000000 243,519.1497,311.9098,40.4907,79.1908,0.00000000 243,466.9593,210.6031,44.4694,111.2041,0.00000000 243,474.0982,317.8120,46.3959,109.2220,0.00000000 243,440.8878,299.0631,48.4275,112.3346,0.00000000 243,425.0343,273.9898,88.5018,232.4381,0.00000000 243,491.6882,273.8141,90.3970,238.3326,0.00000000 243,603.3437,397.0548,36.8030,115.0919,0.00000000 243,441.1053,158.9705,83.7749,224.8833,0.00000000 243,635.7607,492.8871,4.3860,19.2596,0.00000000 243,626.2046,456.3712,13.9421,55.7755,0.00000000 244,518.8516,334.2606,37.3241,70.6820,0.00000002 244,497.5225,217.8253,88.0357,268.0510,0.00000000 244,635.4128,488.0667,4.7339,24.0800,0.00000000 244,628.6510,462.4987,11.4957,49.6480,0.00000000 245,536.3852,301.7512,63.5290,147.2560,0.00000000 245,602.3145,397.5935,37.8322,114.5532,0.00000000 245,422.4609,259.6876,84.8330,250.9410,0.00000000 245,626.3254,454.6523,13.8213,57.4944,0.00000000 245,635.9114,491.3985,4.2353,20.7482,0.00000000 246,450.3287,285.6141,28.9694,66.5271,0.00000009 246,430.8325,277.9246,32.7028,75.6747,0.00000000 246,513.5070,289.6716,66.7920,161.6844,0.00000000 246,394.3852,239.9207,89.0426,258.2142,0.00000000 246,448.7921,247.4149,54.3329,127.8932,0.00000000 246,1.0000,381.2439,60.8248,130.9028,0.00000000 246,627.0298,455.5754,13.1169,56.5713,0.00000000 246,636.3763,492.3502,3.7704,19.7965,0.00000000 247,592.9532,232.0695,47.1935,271.4917,0.00000000 247,629.5920,343.3296,10.5547,82.8884,0.00000000 247,572.8111,208.2703,57.0650,148.8515,0.00000000 247,621.3871,228.8571,18.7596,131.2240,0.00000000 247,536.5065,1.0000,68.4120,154.3304,0.00000000 247,632.7551,258.2292,7.3916,66.7538,0.00000000 247,529.8525,282.0952,92.4737,230.0515,0.00000000 247,626.1234,452.0903,14.0233,60.0564,0.00000000 247,635.7744,490.1405,4.3723,22.0062,0.00000000 248,482.0214,215.8633,90.2789,262.1744,0.00000000 248,603.1022,397.4147,37.0445,114.7320,0.00000000 248,1.0000,382.1101,60.4676,130.0366,0.00000000 248,560.0773,186.7415,80.0694,257.1037,0.00000000 248,636.4059,492.0906,3.7408,20.0561,0.00000000 248,629.3649,476.9828,10.7818,35.1639,0.00000000 249,504.2986,213.5907,89.0119,282.6916,0.00000000 249,631.5972,484.3699,8.5495,27.7768,0.00000000 250,600.6826,393.4628,39.4641,118.6839,0.00000000 250,483.3687,162.9889,88.7171,242.8698,0.00000000 250,626.7282,453.1233,13.4185,59.0234,0.00000000 250,636.1677,491.3790,3.9790,20.7677,0.00000000 251,588.7039,376.6299,51.4428,135.5168,0.00000000 251,594.4926,470.0805,42.2639,42.0662,0.00000000 251,624.5496,452.7468,15.5971,59.3999,0.00000000 251,635.2895,491.0322,4.8572,21.1145,0.00000000 252,1.0000,382.3101,60.6454,129.8366,0.00000000 252,603.6962,391.8413,36.4505,120.3054,0.00000000 252,636.0180,493.6638,4.1287,18.4829,0.00000000 252,629.2263,479.7905,10.9204,32.3562,0.00000000 253,353.1868,183.5539,28.2074,51.9818,0.00000000 253,1.0000,380.7333,60.6402,131.4134,0.00000000 253,635.9648,492.9024,4.1819,19.2443,0.00000000 253,629.1547,478.3547,10.9920,33.7920,0.00000000 253,603.2678,392.5031,36.8789,119.6436,0.00000000 254,566.3429,206.1436,24.2017,48.9656,0.87591600 254,181.6104,195.8035,40.1424,61.2765,0.00000000 254,256.2851,192.3459,27.9252,51.4882,0.00000000 254,297.8433,176.2328,34.1321,56.7299,0.00000000 254,462.7816,196.2340,91.8496,253.1952,0.00000000 254,426.3896,178.7876,63.4395,164.9156,0.00000000 254,603.1810,396.5004,36.9657,115.6463,0.00000000 254,1.0000,380.9803,61.1234,131.1664,0.00000000 254,636.2532,493.0140,3.8935,19.1327,0.00000000 254,629.3594,478.0822,10.7873,34.0645,0.00000000 255,173.2108,178.4111,37.5541,55.2805,0.00000000 255,586.1145,362.1995,31.9357,67.4358,0.00000000 255,79.4268,191.9215,38.9521,67.5764,0.00000000 255,229.0695,171.1839,31.7373,58.9990,0.00000000 255,509.1545,221.2066,35.4167,66.6736,0.00000000 255,563.9460,160.1530,76.2007,261.9978,0.00000000 255,502.9067,240.9070,87.1779,247.4761,0.00000000 255,626.0640,335.1511,14.0827,125.8457,0.00000000 255,633.0283,264.8797,7.1184,76.2359,0.00000000 255,631.4722,163.8577,8.6745,80.1527,0.00000000 255,636.3690,194.4410,3.7777,63.3649,0.00000000 255,637.7999,381.2490,2.3468,63.9291,0.00000000 255,1.0000,380.3023,61.0085,131.8444,0.00000000 255,632.8394,214.7720,7.3073,80.8874,0.00000000 255,440.4770,174.5653,88.1432,246.0791,0.00000000 255,627.7751,457.7558,12.3716,54.3909,0.00000000 255,635.4935,488.0461,4.6532,24.1006,0.00000000 256,108.2177,208.3215,21.7127,54.7647,0.00000805 256,430.6018,207.9761,27.1012,53.0997,0.00000327 256,173.4561,190.9604,25.3117,56.6758,0.00000000 256,93.2284,186.0122,53.3868,87.2627,0.00000000 256,633.1414,361.2709,7.0053,78.9311,0.00000000 256,592.6549,13.7034,47.4918,274.1138,0.00000000 256,598.2437,286.8048,41.9030,225.3419,0.00000000 256,414.5576,214.4285,57.3133,156.6611,0.00000000 256,636.2764,223.4119,3.8703,63.3050,0.00000000 256,633.0851,81.5375,7.0616,87.4029,0.00000000 256,627.1050,454.6379,13.0417,57.5088,0.00000000 256,636.2708,492.4129,3.8759,19.7338,0.00000000 257,468.6427,269.4015,29.7218,62.5624,0.00000050 257,95.8042,185.1069,26.3977,54.5573,0.00000000 257,79.3049,176.3359,25.0934,57.5615,0.00000000 257,520.9617,217.4393,66.9253,195.0869,0.00000000 257,80.2476,129.1795,53.9312,103.3010,0.00000000 257,510.0568,311.0558,92.9173,201.0909,0.00000000 257,396.5217,180.0707,88.9904,245.8063,0.00000000 257,625.9238,454.1047,14.2229,58.0420,0.00000000 257,634.2363,485.8827,5.9104,26.2640,0.00000000 258,547.2915,155.8423,58.7289,139.0996,0.00000000 258,626.9180,174.2809,13.2287,121.4826,0.00000000 258,560.9217,182.7281,79.2250,263.4360,0.00000000 258,600.8974,396.1409,39.2493,116.0058,0.00000000 258,634.8119,277.3842,5.3348,66.1102,0.00000000 258,633.0435,381.6630,7.1032,76.1556,0.00000000 258,635.0383,488.0690,5.1084,24.0777,0.00000000 258,626.9813,459.1149,13.1654,53.0318,0.00000000 259,597.0424,175.3505,25.7344,67.5505,0.00000003 259,392.7286,184.4202,24.5332,58.2254,0.00000000 259,611.0529,161.8429,22.1464,53.6246,0.00000000 259,600.0037,395.9085,40.1430,116.2382,0.00000000 259,521.6465,325.8362,91.6200,186.3105,0.00000000 259,598.8890,199.9966,41.2577,265.7081,0.00000000 259,636.6644,195.9792,3.4823,62.9719,0.00000000 259,636.6422,150.2329,3.5045,60.7739,0.00000000 259,632.4700,210.5376,7.6767,77.3877,0.00000000 259,626.6717,454.2879,13.4750,57.8588,0.00000000 259,635.1095,486.9696,5.0372,25.1771,0.00000000 260,407.6602,217.7369,21.9403,46.7843,0.00023591 260,394.7609,218.8090,21.7411,48.2258,0.00000106 260,565.0875,193.1292,24.4039,53.1274,0.00000000 260,634.6517,217.8004,5.4950,73.2473,0.00000000 260,601.6072,393.6880,38.5395,118.4587,0.00000000 260,635.7666,493.5522,4.3801,18.5945,0.00000000 260,629.4787,481.3146,10.6680,30.8321,0.00000000 261,424.2571,224.6284,22.2730,51.9759,0.02999925 261,409.7000,228.0951,22.0600,52.8370,0.00000757 261,125.1506,202.3492,25.1012,53.3376,0.00000039 261,437.5044,217.5872,23.0987,52.9856,0.00000000 261,411.3437,198.3804,47.8655,99.3637,0.00000000 261,636.0144,493.7165,4.1323,18.4302,0.00000000 261,629.2585,480.1494,10.8882,31.9973,0.00000000 262,463.5715,229.4321,24.9139,59.7452,0.92006767 262,442.3247,223.9487,23.1485,57.6222,0.00000004 262,82.8224,200.9982,27.9205,58.2464,0.00000000 262,453.1736,214.0859,25.2915,56.5832,0.00000000 262,452.3928,211.4458,51.3278,110.2182,0.00000000 262,418.7417,195.7358,87.1962,230.6065,0.00000000 262,602.3618,395.4596,37.7849,116.6871,0.00000000 262,635.9480,492.9730,4.1987,19.1737,0.00000000 262,629.3118,479.4528,10.8349,32.6939,0.00000000 263,500.0462,232.6852,26.2150,67.9807,0.99999881 263,527.3035,231.1148,26.1856,68.6654,0.99999863 263,40.8321,202.8416,27.7588,56.7895,0.00007595 263,514.3395,246.9585,23.9618,59.1369,0.00000170 263,488.9078,224.2479,24.7506,57.1018,0.00000000 263,629.7384,481.8284,10.4083,30.3183,0.00000000 264,610.8672,220.6300,29.2795,117.2029,0.00000395 264,552.3795,343.4054,85.8870,168.7413,0.00000000 264,581.1955,192.0348,58.9512,238.4241,0.00000000 264,630.5829,237.6150,9.5638,83.6992,0.00000000 264,637.1812,194.3840,2.9655,63.8487,0.00000000 264,602.1505,395.4460,37.9962,116.7007,0.00000000 264,635.8369,492.6909,4.3098,19.4558,0.00000000 264,626.4561,455.8936,13.6906,56.2531,0.00000000 265,605.4289,251.1132,22.5364,55.2557,0.00000022 265,637.5322,245.8402,2.6145,63.2458,0.00000000 265,630.1760,227.4998,9.9707,75.9431,0.00000000 265,630.2137,172.1499,9.9330,76.5629,0.00000000 265,637.8703,199.4417,2.2764,66.2108,0.00000000 265,635.7811,493.7224,4.3656,18.4243,0.00000000 265,602.0825,395.2678,38.0642,116.8789,0.00000000 265,629.3182,481.1346,10.8285,31.0121,0.00000000 266,604.0410,202.0237,24.6764,56.7426,0.00000000 266,15.8901,210.5663,24.2746,55.4837,0.00000000 266,96.4962,218.3960,33.0420,64.0874,0.00000000 266,361.2369,219.5090,27.2336,64.5215,0.00000000 266,635.8464,190.3155,4.3003,62.3751,0.00000000 266,625.6768,201.8992,14.4699,124.8023,0.00000000 266,634.5204,62.5343,5.6263,76.9475,0.00000000 266,635.7966,493.1922,4.3501,18.9545,0.00000000 266,626.7146,457.6538,13.4321,54.4929,0.00000000 267,387.9164,218.4613,23.0814,61.0335,0.00000490 267,457.4699,214.5828,23.2682,54.0004,0.00000167 267,602.4932,186.7143,29.4785,55.9082,0.00000001 267,374.3297,202.7076,45.9041,110.0876,0.00000000 267,98.6146,172.1574,40.8202,79.0918,0.00000000 267,630.8842,181.0971,9.2625,77.8867,0.00000000 267,636.7369,171.5856,3.4098,61.9063,0.00000000 267,634.6861,231.0403,5.4606,74.1559,0.00000000 267,635.8118,493.3185,4.3349,18.8282,0.00000000 267,626.7950,457.5842,13.3517,54.5625,0.00000000 268,484.6411,218.2413,33.5285,67.1609,0.00000003 268,504.6716,210.4536,25.9408,59.3641,0.00000000 268,586.9214,389.0818,30.8346,61.4325,0.00000000 268,484.1334,292.6168,44.9697,114.0003,0.00000000 268,637.7569,380.8447,2.3898,65.0412,0.00000000 268,595.1439,337.6147,45.0028,174.5320,0.00000000 268,477.4980,322.2573,92.4096,189.8894,0.00000000 268,634.1615,172.0604,5.9852,75.1777,0.00000000 268,635.6021,492.7490,4.5446,19.3977,0.00000000 268,626.9556,458.7941,13.1911,53.3526,0.00000000 269,422.3829,213.0338,23.0241,51.3427,0.97026378 269,78.1347,213.5007,23.5479,50.5239,0.00000000 269,351.6488,201.0773,22.3955,52.6707,0.00000000 269,405.4392,218.1830,25.8293,61.0598,0.00000000 269,531.9000,343.5236,88.3361,168.6231,0.00000000 269,637.6472,387.0562,2.4995,65.1624,0.00000000 269,602.4124,397.4093,37.7343,114.7374,0.00000000 269,593.1107,96.1451,47.0360,263.3398,0.00000000 269,637.4462,152.3721,2.7005,68.2061,0.00000000 269,626.0558,122.1721,14.0909,127.2196,0.00000000 269,631.9561,367.4916,8.1906,81.8845,0.00000000 269,635.9139,493.3380,4.2328,18.8087,0.00000000 269,626.9532,458.6994,13.1935,53.4473,0.00000000 270,492.7776,220.5708,30.0078,59.4933,0.99774683 270,461.8389,222.2646,31.7397,81.5493,0.00000053 270,114.2192,206.7000,22.9112,54.0459,0.00000005 270,479.9976,222.6426,25.4465,55.4718,0.00000000 270,171.4189,199.2488,24.2051,49.2108,0.00000000 270,436.4331,185.7729,46.4893,116.9002,0.00000000 270,431.2065,131.4719,87.6325,228.4900,0.00000000 270,634.2033,216.0853,5.9434,76.5062,0.00000000 270,634.2172,307.5954,5.9295,83.6987,0.00000000 270,635.2542,488.1322,4.8925,24.0145,0.00000000 270,627.3666,460.1282,12.7801,52.0185,0.00000000 271,499.6558,205.7137,36.7409,90.1745,0.99999994 271,556.9128,210.1616,37.7564,83.3404,0.99095708 271,149.5977,193.8003,25.6402,47.9745,0.00000680 271,349.6492,183.9954,25.3473,54.0651,0.00000149 271,582.9351,213.7182,35.6934,82.7663,0.00000003 271,362.7094,177.3369,29.9594,54.4093,0.00000000 271,388.0002,193.1985,33.0481,71.2700,0.00000000 272,575.1528,228.3514,49.8662,136.9608,0.99999118 272,375.9912,201.6560,32.1329,65.9447,0.00757515 272,162.3751,238.7652,40.6089,107.5717,0.00000000 272,604.5455,237.1563,29.3153,82.9630,0.00000000 272,420.7900,218.2277,36.3748,91.4385,0.00000000 272,172.0594,214.1189,28.0387,70.2341,0.00000000 272,596.3655,228.8591,43.7812,263.3490,0.00000000 272,633.7353,235.8631,6.4114,79.2553,0.00000000 273,128.0307,215.6529,31.4771,50.4257,0.30486685 273,399.8635,184.0890,34.4175,74.9809,0.00000039 273,505.7638,208.6058,31.4919,75.8305,0.00000000 273,489.7555,181.9315,82.6810,246.6954,0.00000000 273,527.7850,224.3317,38.3749,86.3864,0.00000000 273,515.8290,320.6104,35.5682,78.1174,0.00000000 273,374.7556,153.0462,82.0206,221.4177,0.00000000 273,629.0947,481.2983,11.0520,30.8484,0.00000000 274,119.2950,207.8410,30.0209,54.7235,0.00119298 274,479.4768,157.3389,28.2346,65.6581,0.00000000 274,459.1689,209.0682,24.4807,66.2309,0.00000000 274,591.1731,233.4937,22.5195,51.4081,0.00000000 274,323.6137,195.8181,25.3356,53.8901,0.00000000 274,461.1164,166.2455,44.9456,112.7475,0.00000000 274,437.4806,121.3586,85.5698,253.5127,0.00000000 274,632.3311,209.4352,7.8156,81.8729,0.00000000 274,635.3633,488.3723,4.7834,23.7744,0.00000000 274,627.6361,459.6631,12.5106,52.4836,0.00000000 275,489.6133,195.1875,41.1259,108.4172,0.99999958 275,101.8499,197.9380,35.9823,66.1934,0.99999923 275,467.5441,186.7382,41.7645,110.7039,0.00000129 275,458.2451,161.8278,90.7846,203.6703,0.00000000 275,634.9746,488.1467,5.1721,24.0000,0.00000000 276,74.3507,198.0498,38.0223,80.6231,0.99999279 276,528.5385,171.6984,25.3201,48.9430,0.00000006 276,602.2523,182.5240,37.8944,154.4614,0.00000004 276,628.2164,213.1534,11.9303,79.9772,0.00000000 276,498.4318,313.6941,84.3466,198.4526,0.00000000 276,447.7187,288.6396,82.8077,223.5071,0.00000000 276,635.2182,487.9890,4.9285,24.1577,0.00000000 277,559.6536,182.0497,23.1137,49.8819,0.00017426 277,550.9619,198.0189,24.5551,51.7562,0.00000000 277,39.7114,186.1401,34.7492,69.3504,0.00000000 277,635.7573,492.5906,4.3894,19.5561,0.00000000 277,602.3150,394.7380,37.8317,117.4087,0.00000000 277,626.6618,456.6191,13.4849,55.5276,0.00000000 278,592.7283,188.6006,28.3337,51.9650,0.99907774 278,163.0874,158.6362,29.0584,58.4715,0.00000000 278,147.7228,174.8412,23.2774,56.0221,0.00000000 278,577.3840,188.4521,24.4480,53.5720,0.00000000 278,584.1508,161.6263,52.9850,97.2826,0.00000000 278,636.5768,188.9624,3.5699,62.3334,0.00000000 278,515.1749,340.6562,93.4556,171.4905,0.00000000 278,1.0000,83.5150,58.0665,260.8683,0.00000000 278,635.9129,492.7591,4.2338,19.3876,0.00000000 278,601.9714,395.0289,38.1753,117.1178,0.00000000 278,629.5565,480.3223,10.5902,31.8244,0.00000000 279,585.7689,169.5094,22.2442,49.7341,0.00000155 279,636.5405,163.7931,3.6062,62.4873,0.00000000 279,635.9992,493.6336,4.1475,18.5131,0.00000000 279,629.3503,480.8952,10.7964,31.2515,0.00000000 280,65.7468,241.3464,30.6326,51.7771,0.00000689 280,603.0908,393.8738,37.0559,118.2729,0.00000000 280,635.9363,493.2852,4.2104,18.8615,0.00000000 280,629.1964,479.7237,10.9503,32.4230,0.00000000 281,281.1325,267.2595,29.0047,51.1923,0.00000001 281,110.2429,226.6909,27.7602,57.7598,0.00000000 281,258.2616,170.7272,35.4254,86.8211,0.00000000 281,635.9203,492.9900,4.2264,19.1567,0.00000000 281,602.6245,395.0335,37.5222,117.1132,0.00000000 281,626.9243,457.6881,13.2224,54.4586,0.00000000 282,9.2776,203.5196,25.8073,51.4009,0.00025223 282,91.3659,203.0892,33.2016,68.4957,0.00000100 282,321.9051,237.1116,23.5670,54.1166,0.00000000 282,110.3277,208.1147,30.5254,70.1350,0.00000000 282,634.8685,487.2103,5.2782,24.9364,0.00000000 282,627.1985,458.7043,12.9482,53.4424,0.00000000 283,213.0811,201.7084,26.9781,46.6321,0.00000017 283,286.5324,191.9179,28.2447,70.9190,0.00000007 283,571.7052,205.0208,30.7966,58.4473,0.00000000 283,300.4419,187.6200,23.9473,56.3497,0.00000000 283,550.9173,204.7892,34.4395,70.6713,0.00000000 283,523.9664,151.0413,90.7337,264.7611,0.00000000 283,602.9521,394.3909,37.1946,117.7558,0.00000000 283,635.8817,493.6591,4.2650,18.4876,0.00000000 283,629.4703,480.8434,10.6764,31.3033,0.00000000 284,327.6556,207.1249,25.4031,47.8150,0.00445314 284,496.8485,203.9015,23.0803,53.1962,0.00000000 284,413.2844,194.9450,22.6893,56.9491,0.00000000 284,397.2448,192.8203,26.4706,62.9989,0.00000000 284,602.7687,393.7762,37.3780,118.3705,0.00000000 284,635.8904,493.4321,4.2563,18.7146,0.00000000 284,629.3506,480.4523,10.7961,31.6944,0.00000000 285,393.2320,210.1611,25.6743,45.7972,0.01656304 285,471.4400,193.1338,28.2740,58.2590,0.00000000 285,488.5427,182.3951,23.6384,54.7861,0.00000000 285,595.9108,139.9218,44.2359,266.8236,0.00000000 285,636.0933,241.9016,4.0534,64.7403,0.00000000 285,637.3237,201.0952,2.8230,64.5319,0.00000000 285,625.2341,172.8376,14.9126,124.4148,0.00000000 285,602.5024,394.2062,37.6443,117.9405,0.00000000 285,635.9230,493.4149,4.2237,18.7318,0.00000000 285,629.2889,480.2894,10.8578,31.8573,0.00000000 286,451.1790,220.2178,26.7162,54.4665,0.99999589 286,509.9466,215.9609,24.3326,51.9221,0.70821786 286,528.7610,213.7040,24.1895,50.8471,0.01132247 286,564.4955,185.7266,26.9338,68.5167,0.00000009 286,64.6084,209.9665,24.0854,53.3530,0.00000001 286,556.2899,212.5310,25.2243,56.7007,0.00000000 286,539.2970,198.5495,28.3979,59.7639,0.00000000 286,629.5779,479.2137,10.5688,32.9330,0.00000000 287,545.9572,216.6484,32.7340,76.9631,1.00000000 287,587.1370,211.3242,29.8271,65.6042,0.96457213 287,446.9688,206.1586,20.5650,49.2153,0.00000222 287,604.1127,210.1947,28.8875,62.2275,0.00000001 287,18.1784,206.6530,25.2448,59.2951,0.00000000 287,44.8439,206.8220,25.7523,52.2997,0.00000000 288,477.7374,202.0392,27.4438,59.3118,0.00437462 288,15.4134,200.1479,24.4521,53.3322,0.00000499 288,30.9682,202.6004,24.3382,47.8008,0.00000000 288,493.4475,204.5319,23.3928,52.9072,0.00000000 288,602.0350,395.3626,38.1117,116.7841,0.00000000 288,350.8083,54.0093,87.8077,265.2335,0.00000000 288,636.0462,493.8778,4.1005,18.2689,0.00000000 288,627.3091,458.5610,12.8376,53.5857,0.00000000 289,527.4727,204.0561,23.0026,57.2264,1.00000000 289,88.5910,199.8601,28.0561,54.4880,0.03285446 289,539.2582,199.8566,23.5823,53.7450,0.00000003 289,509.0309,201.7609,29.5206,59.5867,0.00000000 289,38.5234,204.1826,25.2469,51.8154,0.00000000 289,74.7974,176.9841,54.4979,108.3185,0.00000000 289,636.3350,182.9478,3.8117,63.3057,0.00000000 289,360.7298,19.7958,90.5797,276.8410,0.00000000 289,634.1887,246.3077,5.9580,75.0880,0.00000000 289,635.5807,487.8907,4.5660,24.2560,0.00000000 289,627.7819,458.8639,12.3648,53.2828,0.00000000 290,589.1729,206.0379,34.1199,74.9683,1.00000000 290,26.3893,193.8949,31.6849,62.5649,0.00000790 290,12.4393,123.8810,34.2878,72.0119,0.00000621 290,8.5552,189.4509,32.6675,66.3930,0.00000001 290,563.5020,208.0004,38.6856,94.4959,0.00000000 290,376.1892,205.0129,27.0429,58.0736,0.00000000 291,572.5317,189.6233,21.5154,57.5695,0.00000000 291,489.8625,249.6326,90.1795,262.5141,0.00000000 291,627.6166,457.8054,12.5301,54.3413,0.00000000 291,635.4721,487.3868,4.6746,24.7599,0.00000000 292,491.4083,166.5324,46.8299,118.4488,0.00000000 292,484.1748,57.8147,45.3079,135.5852,0.00000000 292,455.5727,34.3068,87.7672,263.3816,0.00000000 292,635.8860,493.6161,4.2607,18.5306,0.00000000 292,627.4597,459.4007,12.6870,52.7460,0.00000000 293,529.0831,210.9160,21.7382,50.2631,0.00198360 293,446.6377,203.3630,31.7154,74.8059,0.00000006 293,566.2133,177.5665,30.4807,63.2422,0.00000000 293,601.1772,395.0534,38.9695,117.0933,0.00000000 293,1.0000,55.2376,61.1316,258.1783,0.00000000 293,626.6614,457.0047,13.4853,55.1420,0.00000000 293,635.6950,492.5594,4.4517,19.5873,0.00000000 294,554.4303,186.3695,29.1142,66.1716,0.99999905 294,490.8058,188.1654,23.7242,56.3120,0.99933869 294,473.1363,190.7092,22.9521,52.0989,0.88590217 294,14.3696,177.9556,36.3131,81.2951,0.00000000 294,635.0205,487.3864,5.1262,24.7603,0.00000000 295,497.8253,202.3532,22.6641,51.1697,0.99986118 295,85.4628,201.6463,25.5467,52.9043,0.00012909 295,107.1997,206.4262,29.0647,55.0359,0.00002415 295,339.4216,225.2737,32.9466,68.1029,0.00000000 295,353.2398,193.7175,30.1172,61.3385,0.00000000 295,631.1458,106.3380,9.0009,82.4730,0.00000000 295,635.3837,487.5361,4.7630,24.6106,0.00000000 296,544.2793,204.0506,25.4577,53.7554,1.00000000 296,86.7051,207.0043,34.0788,57.5236,0.00006295 296,372.5979,198.2272,40.0854,72.1406,0.00000213 296,463.2194,193.4371,22.5404,53.3461,0.00000000 296,204.0998,170.1292,60.0435,133.9982,0.00000000 296,533.7633,173.8922,51.3280,100.0957,0.00000000 296,628.7438,1.0000,11.4029,49.6238,0.00000000 296,629.0530,54.1663,11.0937,86.1726,0.00000000 296,634.8269,487.9736,5.3198,24.1731,0.00000000 296,626.8319,454.8103,13.3148,57.3364,0.00000000 297,587.8239,253.8167,26.6606,55.5526,0.99999994 297,44.9768,259.6047,29.3737,51.3616,0.00175401 297,384.0420,238.1884,42.6710,72.4528,0.00001678 297,489.2318,226.5157,22.2112,58.9224,0.00000000 297,194.1973,161.1103,64.6137,170.0024,0.00000000 297,629.8575,481.4813,10.2892,30.6654,0.00000000 298,49.3800,186.8662,27.6903,48.2407,0.00002380 298,24.6703,196.0533,25.5767,49.1647,0.00000004 298,384.6080,171.5671,74.2329,156.4713,0.00000000 298,422.2624,188.9755,27.6970,53.9576,0.00000000 298,167.1326,146.5597,67.2806,181.9940,0.00000000 298,398.7772,184.8016,39.5405,84.1377,0.00000000 298,629.5675,482.0981,10.5792,30.0486,0.00000000 299,505.7452,198.0772,24.7671,45.2870,0.99287838 299,19.0934,204.8125,23.1875,51.8698,0.00001685 299,417.9371,184.8699,55.6686,136.2833,0.00001300 299,2.2665,212.8051,23.1763,47.6377,0.00000000 299,439.1216,200.1475,31.0632,71.5851,0.00000000 299,549.0223,183.4030,24.5516,55.6212,0.00000000 299,605.0115,1.0000,35.1352,250.0815,0.00000000 299,629.6026,480.6398,10.5441,31.5069,0.00000000 300,453.4329,191.9921,21.5389,47.4145,0.00000001 300,187.6716,208.5686,53.6356,126.5116,0.00000001 300,512.8934,197.3274,26.6477,56.2244,0.00000001 300,350.3719,212.6105,24.5821,56.7523,0.00000000 300,432.7008,199.7209,63.8106,147.0705,0.00000000 300,169.7710,244.2403,89.9370,263.2141,0.00000000 300,12.2087,193.6184,63.3255,145.6721,0.00000000 300,603.7328,394.2451,36.4139,117.9016,0.00000000 300,636.0854,493.4789,4.0613,18.6678,0.00000000 300,629.4693,480.6259,10.6774,31.5208,0.00000000 301,527.4000,225.7460,22.1414,48.0060,0.97488207 301,188.1206,279.0814,39.2865,92.5643,0.00000000 301,156.4160,266.3585,86.1758,245.7882,0.00000000 301,442.6654,248.3468,94.2206,263.7999,0.00000000 301,140.5367,317.2234,34.8512,73.1245,0.00000000 301,348.6413,228.7525,28.0448,47.1381,0.00000000 301,166.0942,268.0123,39.8823,109.5473,0.00000000 301,575.7270,447.6484,52.4823,64.4983,0.00000000 301,602.9089,392.8716,37.2378,119.2751,0.00000000 301,79.9734,380.8225,90.2095,131.3242,0.00000000 301,54.1856,148.2848,91.1059,276.9160,0.00000000 301,1.0000,158.4174,86.8757,270.7583,0.00000000 301,1.0000,381.9559,62.3237,130.1908,0.00000000 301,625.4547,452.7845,14.6920,59.3622,0.00000000 301,634.4849,486.1396,5.6618,26.0071,0.00000000 302,527.7452,180.5223,24.4069,50.9329,0.99978262 302,411.4870,176.4189,27.9974,47.1615,0.00000003 302,56.7566,232.3197,30.5243,73.4141,0.00000001 302,342.9152,174.7623,27.4150,49.5012,0.00000000 302,517.7048,193.4137,23.5533,50.1781,0.00000000 302,142.9884,213.6555,62.5935,147.6199,0.00000000 302,508.1650,180.1343,22.0910,49.2806,0.00000000 302,32.3654,216.6629,64.0530,161.8712,0.00000000 302,541.2125,205.2519,63.5347,206.4781,0.00000000 302,9.3366,67.8204,82.8773,257.5948,0.00000000 302,629.5844,482.2153,10.5623,29.9314,0.00000000 303,544.0309,223.5004,22.8559,48.9086,0.90105039 303,433.9611,223.0577,25.4353,48.6764,0.00089117 303,104.1038,301.8607,37.8315,80.8137,0.00000000 303,145.5249,314.3847,24.8493,50.7849,0.00000000 303,77.4846,318.1267,85.8347,194.0200,0.00000000 303,29.0881,323.0692,86.3266,189.0775,0.00000000 303,629.5074,480.9643,10.6393,31.1824,0.00000000 304,555.4441,181.5676,22.7328,47.5983,0.99846953 304,455.0072,189.1274,23.7404,49.6209,0.97681415 304,436.6002,180.3155,31.1414,54.5882,0.00000003 304,58.5309,277.8641,38.7180,99.8532,0.00000000 304,24.6916,198.6822,87.1743,235.8940,0.00000000 304,69.5658,437.8524,55.2827,74.2943,0.00000000 304,31.2069,365.4269,85.4347,146.7198,0.00000000 304,1.0000,385.7505,61.3133,126.3962,0.00000000 304,604.4401,393.4125,35.7066,118.7342,0.00000000 304,625.7856,455.5186,14.3611,56.6281,0.00000000 304,633.9370,485.9443,6.2097,26.2024,0.00000000 305,557.7620,200.0190,22.3816,51.9123,0.99897259 305,474.6162,207.7937,22.7494,49.1934,0.88028514 305,456.2966,211.0411,22.7852,46.2996,0.09496097 305,368.5178,198.8187,29.0223,49.1346,0.00000000 305,19.9634,305.0425,36.8386,89.1380,0.00000000 305,1.0000,385.6468,61.1503,126.4999,0.00000000 305,630.6671,483.7388,9.4796,28.4079,0.00000000 306,485.3681,208.7880,22.3073,49.5705,0.99979329 306,546.4679,205.0585,26.5823,51.4697,0.93151027 306,468.5624,209.0705,21.4443,49.9125,0.85837889 306,58.4024,207.1777,20.4681,46.3333,0.00000032 306,112.7165,219.8047,23.3235,50.5877,0.00000018 306,563.7114,198.2581,23.4577,46.4490,0.00000000 306,537.6395,172.9361,51.5424,95.4255,0.00000000 306,635.2913,487.9022,4.8554,24.2445,0.00000000 307,477.5764,212.1555,21.4717,50.3881,0.99995178 307,497.0005,208.6281,22.0423,49.7584,0.99625427 307,535.3160,201.0992,29.2298,54.1757,0.00055192 307,83.9025,209.5064,24.9743,53.3945,0.00000000 307,461.4374,204.4215,27.9638,52.3008,0.00000000 307,634.9274,486.4595,5.2193,25.6872,0.00000000 307,627.1160,458.1338,13.0307,54.0129,0.00000000 308,508.5405,229.3725,23.2890,53.5788,1.00000000 308,534.6907,224.4181,21.5955,52.4324,0.99999982 308,550.6923,229.5269,24.3788,51.7653,0.96203017 308,62.6596,220.5048,23.8382,54.8608,0.00000005 308,608.0914,200.4185,22.4528,51.4355,0.00000002 308,522.1168,217.7392,23.4786,50.0625,0.00000000 308,635.4132,487.5139,4.7335,24.6328,0.00000000 309,581.2590,229.2483,28.5207,63.1442,0.99983805 309,608.2582,230.0182,27.6640,55.6540,0.98221034 309,572.6036,221.9094,22.1693,56.3212,0.00000002 309,75.1513,257.4444,26.9744,63.3977,0.00000000 309,626.9679,217.0253,13.1788,83.3307,0.00000000 309,591.9200,183.1669,47.4466,96.1395,0.00000000 309,630.5256,169.1440,9.6211,80.6520,0.00000000 309,634.1943,90.2940,5.9524,74.3463,0.00000000 309,635.4629,486.9255,4.6838,25.2212,0.00000000 310,107.3371,205.7520,21.8836,49.4375,0.00000001 310,386.2927,203.2348,24.4712,56.2243,0.00000000 310,424.2836,196.3029,37.7230,84.2332,0.00000000 310,402.5184,201.6615,31.9330,59.5041,0.00000000 310,636.9509,203.9647,3.1958,62.9166,0.00000000 310,636.1421,494.1622,4.0046,17.9845,0.00000000 310,627.4547,459.3119,12.6920,52.8348,0.00000000 311,419.5538,218.9235,23.1072,49.4864,0.00000000 311,405.7997,206.3738,26.6578,50.3171,0.00000000 311,467.3051,159.4090,55.2063,153.0891,0.00000000 311,637.1788,182.5965,2.9679,63.3811,0.00000000 311,637.5964,222.9852,2.5503,64.4953,0.00000000 311,631.2582,193.1279,8.8885,80.7209,0.00000000 311,636.1248,494.2581,4.0219,17.8886,0.00000000 311,627.2289,459.5880,12.9178,52.5587,0.00000000 312,424.4899,216.8297,24.6583,47.9516,0.00021315 312,369.1027,197.1128,24.1700,51.7839,0.00000004 312,456.8681,218.5516,39.3453,72.4164,0.00000000 312,592.0875,73.3707,48.0592,264.8587,0.00000000 312,624.6088,129.4576,15.5379,133.8650,0.00000000 312,636.0808,493.9330,4.0659,18.2137,0.00000000 312,629.3519,481.4850,10.7948,30.6617,0.00000000 313,452.0443,208.5263,21.8381,48.7626,0.99641740 313,559.4198,183.2426,45.1141,136.1340,0.00000000 313,387.3940,184.4753,23.8726,55.6291,0.00000000 313,466.2767,209.4474,21.9026,49.4387,0.00000000 313,1.0000,119.0009,31.6545,136.1693,0.00000000 313,629.3539,481.0437,10.7928,31.1030,0.00000000 314,481.7765,221.4805,22.1678,51.4636,1.00000000 314,383.1013,199.9135,27.2007,52.1523,0.00000001 314,470.0545,206.3926,50.8334,80.2726,0.00000000 314,539.8876,209.3777,37.8499,103.8182,0.00000000 314,460.8815,213.1426,29.8418,55.5014,0.00000000 314,637.9854,203.7525,2.1613,63.2874,0.00000000 314,632.2370,193.0481,7.9097,77.0955,0.00000000 314,629.7084,481.8853,10.4383,30.2614,0.00000000 315,526.5266,211.0844,28.5666,66.9584,1.00000000 315,385.7845,193.3741,24.0274,52.3364,0.00011199 315,413.6461,188.0990,27.1536,47.6742,0.00000000 315,518.1456,201.6964,22.2647,57.5432,0.00000000 315,548.0594,168.4066,24.3227,46.0651,0.00000000 315,540.9176,188.2352,26.2270,57.4044,0.00000000 315,584.4119,231.6749,31.5554,68.4239,0.00000000 315,628.5894,1.0000,11.5573,51.8515,0.00000000 315,635.8491,488.3535,4.2976,23.7932,0.00000000 316,396.9222,195.2529,34.3823,59.3180,0.00000002 316,92.8746,200.0882,26.2343,53.8015,0.00000000 316,9.7973,162.4339,22.1854,56.8731,0.00000000 316,627.5726,1.0000,12.5741,48.1796,0.00000000 316,637.2096,197.6343,2.9371,63.5539,0.00000000 316,630.1210,186.7626,10.0257,76.7416,0.00000000 316,635.8003,488.2117,4.3464,23.9350,0.00000000 317,429.9404,209.2590,23.4280,51.2937,0.99959511 317,415.1631,201.8742,24.3684,52.0490,0.00000001 317,440.5526,196.6968,21.3641,49.4436,0.00000000 317,13.2191,131.1267,29.6812,80.0057,0.00000000 317,449.8042,195.6185,31.2699,55.4677,0.00000000 317,561.1002,180.1584,25.7887,53.9706,0.00000000 317,1.0000,100.2385,32.3716,149.9066,0.00000000 317,598.1421,76.9529,42.0046,273.7064,0.00000000 317,603.9931,391.7544,36.1536,120.3923,0.00000000 317,635.9937,493.1262,4.1530,19.0205,0.00000000 317,629.1979,479.3154,10.9488,32.8313,0.00000000 318,458.2994,204.7113,22.9558,49.6072,0.99994987 318,8.3270,201.6600,28.4383,52.8555,0.00009252 318,440.7000,198.9684,24.0238,53.6530,0.00000000 318,471.1777,198.2095,28.1175,53.9666,0.00000000 318,82.8659,198.9122,23.2393,51.2659,0.00000000 318,628.5222,1.0000,11.6245,47.7827,0.00000000 318,372.3513,211.3015,22.2002,47.9923,0.00000000 318,633.6754,171.0226,6.4713,73.3585,0.00000000 318,636.2402,493.5550,3.9065,18.5917,0.00000000 318,629.2538,479.6521,10.8929,32.4946,0.00000000 319,489.5699,192.7221,36.9337,70.1376,0.00000215 319,466.0486,183.1725,41.7399,89.6519,0.00000000 319,387.7776,212.5119,23.0634,52.0738,0.00000000 319,627.5771,1.0000,12.5696,52.1588,0.00000000 319,635.0425,174.6224,5.1042,76.6648,0.00000000 319,451.7292,93.8920,89.9331,213.9114,0.00000000 319,635.6752,488.0469,4.4715,24.0998,0.00000000 320,520.5397,211.9087,29.4171,70.6176,1.00000000 320,541.3749,206.4860,33.8030,76.9369,0.99946785 320,430.6162,97.1525,22.8771,57.6207,0.00000017 320,8.6048,214.1774,26.4028,48.7976,0.00000000 320,474.5802,178.7231,28.1947,61.5035,0.00000000 320,401.3934,202.6842,33.7165,77.0083,0.00000000 320,635.1406,487.6640,5.0061,24.4827,0.00000000 320,626.8695,457.1400,13.2772,55.0067,0.00000000 321,573.7689,192.3443,36.7095,80.2560,0.99999976 321,604.5233,191.8200,35.6234,81.0732,0.99960285 321,478.7426,167.3186,26.6555,58.3853,0.00000000 321,628.7335,204.3558,11.4132,72.6317,0.00000000 321,1.0000,32.2702,58.2903,244.8725,0.00000000 321,633.8840,171.4633,6.2627,62.7759,0.00000000 321,592.4430,81.2666,47.7037,258.6044,0.00000000 321,631.8177,488.0700,8.3290,24.0767,0.00000000 322,470.9245,209.3541,23.8799,49.3851,0.93949497 322,423.6684,200.2321,27.0139,52.5365,0.00000000 322,628.5975,1.0000,11.5492,52.4639,0.00000000 322,625.2293,195.9779,14.9174,129.2848,0.00000000 322,604.8329,151.3942,35.3138,267.2845,0.00000000 322,603.7524,391.9008,36.3943,120.2459,0.00000000 322,638.0365,145.4464,2.1102,66.0854,0.00000000 322,632.1835,139.5790,7.9632,80.9340,0.00000000 322,635.5700,493.4982,4.5767,18.6485,0.00000000 322,625.9794,457.2375,14.1673,54.9092,0.00000000 323,484.1835,208.5334,24.3895,50.5703,0.99975079 323,432.2944,204.8783,25.3568,49.0160,0.00044704 323,84.4150,211.4387,22.9944,47.2662,0.00000019 323,393.6557,203.0120,23.6384,47.8383,0.00000002 323,562.2374,188.9518,22.8291,55.7020,0.00000000 323,634.7986,487.5274,5.3481,24.6193,0.00000000 324,513.1404,216.9747,22.7759,51.6945,1.00000000 324,418.3229,209.5052,23.0883,52.6447,0.66085637 324,460.9468,207.5562,25.3115,48.2326,0.22954619 324,588.8832,201.2561,27.7955,54.9753,0.00000296 324,26.1057,214.3123,26.4449,60.2708,0.00000014 324,605.5336,195.5838,29.2815,57.5058,0.00000000 324,629.3839,481.2299,10.7628,30.9168,0.00000000 325,567.8746,215.6143,28.8850,62.2393,1.00000000 325,511.1682,210.8854,23.5529,50.1794,0.35760269 325,498.5786,218.7663,22.9248,51.8839,0.00044339 325,453.3806,214.1483,22.7731,48.2204,0.00000339 325,86.7278,213.6069,23.2872,50.8248,0.00000000 325,606.6423,209.4632,22.7127,54.8125,0.00000000 325,634.3765,198.2005,5.7702,73.3148,0.00000000 325,635.3940,487.7730,4.7527,24.3737,0.00000000 326,545.8651,214.9361,23.7023,57.0160,0.99999410 326,484.3036,216.0791,27.8837,55.9002,0.02157722 326,418.2878,195.4839,24.1695,54.2987,0.00000000 326,498.8140,224.4306,23.4684,56.1098,0.00000000 326,49.1976,208.3175,24.0968,50.7299,0.00000000 326,467.7260,216.5952,28.6946,61.7204,0.00000000 326,635.4370,488.1425,4.7097,24.0042,0.00000000 327,518.0325,214.6894,24.7901,53.2917,1.00000000 327,604.3676,215.7607,26.2657,58.4546,0.99998885 327,589.8529,217.7010,24.6754,55.2709,0.99985111 327,533.8571,202.8484,22.4318,52.9463,0.00000000 327,629.2541,197.1599,10.8926,74.3620,0.00000000 328,558.4739,213.8175,31.3718,67.8625,0.99999970 328,456.4920,186.5451,32.9866,75.5968,0.01258589 328,417.8711,215.2674,29.0743,53.1781,0.00000005 328,620.1928,199.8611,19.9539,55.2117,0.00000000 328,454.6695,159.3690,29.6140,58.4387,0.00000000 328,634.2045,175.6263,5.9422,63.5837,0.00000000 328,629.8790,483.2665,10.2677,28.8802,0.00000000 329,542.5866,219.7569,30.5186,55.7176,0.01508154 329,589.9835,201.1906,22.6730,53.5903,0.00000376 329,476.1156,202.7407,23.9144,49.8382,0.00000190 329,436.7163,211.1906,24.3399,50.7569,0.00000103 329,356.0110,196.3357,23.1093,48.2276,0.00000001 329,397.2329,198.4275,30.9089,50.9005,0.00000000 329,383.6036,186.0412,27.0807,55.8394,0.00000000 329,629.7614,482.5582,10.3853,29.5885,0.00000000 330,465.9496,206.7361,21.9684,50.3059,0.01168954 330,527.1334,209.9623,21.1672,55.8423,0.00049978 330,363.1556,198.1534,24.5609,46.8611,0.00000002 330,505.4637,201.8160,29.2997,54.5028,0.00000000 330,373.6013,183.8535,29.0033,54.3021,0.00000000 330,512.5576,193.8570,45.8535,100.4868,0.00000000 330,635.6061,196.0051,4.5406,65.7761,0.00000000 330,627.7535,206.3416,12.3932,74.4796,0.00000000 330,628.7349,1.0000,11.4118,51.1684,0.00000000 330,632.8731,105.3579,7.2736,81.4728,0.00000000 330,635.4445,488.1119,4.7022,24.0348,0.00000000 331,532.1428,210.5858,29.5654,55.0271,0.99987251 331,444.5161,204.9571,27.2313,49.0465,0.99941963 331,615.5323,212.0765,24.6144,60.8991,0.99898934 331,404.6994,191.5593,36.0140,55.7364,0.00903807 331,383.3313,184.1747,28.7207,65.5084,0.00002382 331,527.4977,178.9882,29.8920,57.1145,0.00000000 331,632.3845,195.4502,7.7622,61.3889,0.00000000 332,503.0682,207.9942,23.8539,54.1267,1.00000000 332,521.5586,207.8892,23.7565,52.7033,0.99999779 332,443.2394,193.4806,32.3144,73.2280,0.95608777 332,418.5977,175.8504,37.9602,90.5665,0.53954905 332,379.9769,203.2009,30.5795,49.4351,0.00000126 332,575.5503,58.1726,23.4720,59.6172,0.00000046 332,441.0207,133.9315,51.4070,114.5575,0.00000000 333,538.7797,202.4588,21.4314,48.7639,0.99999809 333,583.7355,200.0997,25.6773,57.7743,0.95216870 333,599.9062,210.7568,27.1697,62.1287,0.36221716 333,393.2968,202.6131,27.6572,49.0908,0.18467164 333,495.9612,181.5865,46.4216,107.4520,0.00000003 333,463.8544,112.6774,55.5597,141.6279,0.00000000 334,550.4946,240.7681,43.4217,73.1486,0.99987054 334,412.9160,231.3928,24.4992,54.2236,0.07761362 334,357.8076,231.7037,22.0595,47.4811,0.00000004 334,537.7920,216.4836,39.9738,71.8944,0.00000000 334,483.3126,31.5333,85.8278,246.8959,0.00000000 334,630.2180,159.7468,9.9287,87.0852,0.00000000 334,561.5555,103.3824,78.5912,239.3378,0.00000000 334,631.9631,487.6577,8.1836,24.4890,0.00000000 335,431.9193,213.0113,29.7661,47.4291,0.56391650 335,614.7508,229.8075,25.3959,81.4047,0.00000000 335,629.0403,211.1852,11.1064,66.5289,0.00000000 335,607.7482,168.1482,32.3985,233.3942,0.00000000 335,499.6480,103.3103,62.7352,156.4714,0.00000000 335,633.1057,237.2366,7.0410,79.1737,0.00000000 335,636.2843,189.6781,3.8624,65.1622,0.00000000 335,521.7316,18.2993,88.6457,248.1995,0.00000000 335,629.3417,481.1041,10.8050,31.0426,0.00000000 336,404.5314,207.0730,22.7329,45.8292,0.76583421 336,393.6248,191.4711,26.1941,49.7387,0.00000000 336,98.0750,197.5416,24.5845,57.2401,0.00000000 336,37.1139,208.6665,24.1915,51.3059,0.00000000 336,378.2181,201.3505,23.6422,49.1172,0.00000000 336,424.1607,189.3076,30.5390,60.7678,0.00000000 336,552.5728,77.0962,71.5838,180.6083,0.00000000 336,636.9290,114.6815,3.2177,62.0813,0.00000000 336,577.6421,21.3467,46.0284,127.5791,0.00000000 336,632.3893,136.4422,7.7574,78.1826,0.00000000 336,506.9938,61.6186,88.2940,241.8129,0.00000000 336,635.1491,487.0094,4.9976,25.1373,0.00000000 336,627.5513,459.0131,12.5954,53.1336,0.00000000 337,421.7220,201.1733,22.6083,55.8236,0.00225643 337,45.3439,188.7365,30.4643,62.3543,0.00000579 337,408.5619,194.2686,23.2333,53.8201,0.00000000 337,472.4006,155.8205,23.1962,54.7597,0.00000000 337,591.2840,143.5864,44.8195,102.2599,0.00000000 337,567.0446,72.9606,50.0708,174.0219,0.00000000 337,498.4601,141.4279,45.2527,118.7556,0.00000000 337,459.5410,134.5674,85.3360,242.3313,0.00000000 337,635.4424,488.0335,4.7043,24.1132,0.00000000 338,517.7015,208.2325,32.4034,70.2490,0.56721121 338,434.0458,210.6763,19.8953,46.1110,0.00570760 338,454.1812,191.2960,25.9683,58.0313,0.00000002 338,371.5081,198.6713,25.0202,54.8844,0.00000000 338,421.1646,190.3990,22.9077,54.5036,0.00000000 338,481.4154,146.8814,22.8205,55.1560,0.00000000 338,563.5408,145.1423,71.3214,176.0942,0.00000000 338,593.6199,135.4628,42.9744,102.1967,0.00000000 338,626.0613,139.8902,14.0854,131.4567,0.00000000 338,628.8959,251.6815,11.2508,101.1291,0.00000000 338,634.2935,94.6612,5.8532,77.5638,0.00000000 338,635.2480,487.9809,4.8987,24.1658,0.00000000 338,628.5523,461.4476,11.5944,50.6991,0.00000000 339,431.4177,213.8914,22.2372,49.3293,0.99989867 339,495.7826,210.9399,24.4878,51.2458,0.99668360 339,472.7068,200.2095,29.5968,62.0456,0.93768770 339,450.5901,197.3158,30.2489,60.8260,0.00095214 339,607.4818,214.7865,32.6649,111.1791,0.00000005 339,630.3679,238.9986,9.7788,79.5062,0.00000000 340,467.4337,211.0096,24.8868,58.3039,1.00000000 340,531.5818,207.3487,26.2071,60.6085,0.99932808 340,434.9697,210.2752,31.5811,64.3381,0.99209946 340,565.4070,183.0469,42.2047,108.2159,0.00998886 340,541.6137,191.5580,48.3025,135.1474,0.00000000 340,59.0889,194.0360,23.4145,57.4890,0.00000000 341,481.6994,218.6412,32.6663,80.8492,1.00000000 341,525.9678,205.5480,35.9651,87.5835,0.99999982 341,499.8106,215.5887,38.2090,88.4836,0.99285609 341,629.2865,481.0254,10.8602,31.1213,0.00000000 342,602.3698,216.8117,37.7769,133.4934,0.00000914 342,580.6465,191.1721,29.5173,52.4986,0.00000000 342,593.5670,196.6774,30.5285,71.9308,0.00000000 342,627.3951,260.0451,12.7516,90.3891,0.00000000 342,634.1357,242.1896,6.0110,66.8695,0.00000000 342,630.2983,181.6936,9.8484,80.0628,0.00000000 342,637.2692,195.0953,2.8775,64.7066,0.00000000 342,631.8480,487.0412,8.2987,25.1055,0.00000000 343,411.1655,203.5487,32.4830,49.8026,0.00000455 343,140.9774,193.1804,22.8665,50.9623,0.00000113 343,452.9421,202.3837,27.2554,60.9607,0.00000000 343,508.1096,215.8995,26.4619,51.5427,0.00000000 343,519.6841,226.1105,27.1244,59.5410,0.00000000 343,152.1833,199.9377,24.1443,54.8856,0.00000000 343,636.3807,174.7623,3.7660,66.0017,0.00000000 343,629.7666,482.2025,10.3801,29.9442,0.00000000 344,608.9998,225.5320,29.1254,66.3755,0.54433018 344,589.4011,217.2360,29.2661,68.7170,0.00000000 344,441.2132,195.2130,27.2061,54.9235,0.00000000 344,568.0671,187.6614,61.8276,142.6251,0.00000000 344,630.4190,220.3493,9.7277,74.9955,0.00000000 344,448.1310,205.5931,37.8735,74.3507,0.00000000 344,635.4652,196.6154,4.6815,63.3557,0.00000000 344,630.0318,480.2487,10.1149,31.8980,0.00000000 345,432.2216,195.9389,27.5660,47.4161,0.00115409 345,98.8233,204.4367,23.8412,47.7354,0.00000074 345,105.9068,191.4346,35.4384,52.0209,0.00000000 345,622.5985,187.9136,17.5482,131.0496,0.00000000 345,595.8593,144.9227,44.2874,265.4448,0.00000000 345,635.8273,99.9056,4.3194,69.6351,0.00000000 345,635.6548,218.6945,4.4919,70.9316,0.00000000 345,603.5787,400.5025,36.5680,111.6442,0.00000000 345,599.1020,99.3895,37.6695,84.1294,0.00000000 345,627.7318,458.0108,12.4149,54.1359,0.00000000 345,635.1067,487.1107,5.0400,25.0360,0.00000000 346,468.2868,205.1343,25.2402,47.9575,0.99999785 346,76.3813,203.7430,25.5264,47.0865,0.00084391 346,144.8152,188.3305,25.3669,52.0308,0.00000000 346,603.4750,392.4380,36.6717,119.7087,0.00000000 346,635.8936,493.6498,4.2531,18.4969,0.00000000 346,626.5917,457.2277,13.5550,54.9190,0.00000000 347,520.0397,205.7578,25.0382,51.2485,1.00000000 347,40.5412,202.2878,26.6583,48.1331,0.00048997 347,132.2044,195.7853,24.5934,52.0270,0.00000000 347,502.0920,187.0326,49.4490,107.0022,0.00000000 347,629.8621,481.6380,10.2846,30.5087,0.00000000 348,5.2188,212.2515,23.6195,49.9394,0.16618267 348,586.2744,207.7697,33.8360,80.3570,0.00000302 348,598.2405,154.8421,41.9062,253.4447,0.00000000 348,98.2292,214.9139,27.8843,54.3265,0.00000000 348,619.0236,202.2533,21.1231,138.1049,0.00000000 348,621.4590,85.6227,18.6877,130.6061,0.00000000 348,632.8242,237.3893,7.3225,76.1874,0.00000000 348,629.8772,484.4119,10.2695,27.7348,0.00000000 349,594.9333,80.3297,45.2134,270.0680,0.00000000 349,628.6985,1.0000,11.4482,50.7950,0.00000000 349,542.1577,63.5533,84.0019,233.0574,0.00000000 349,637.2829,125.4670,2.8638,64.6680,0.00000000 349,625.1293,89.8435,15.0174,126.4849,0.00000000 349,634.7672,150.8997,5.3795,68.3715,0.00000000 349,628.7385,457.6830,11.4082,54.4637,0.00000000 349,635.7410,487.9323,4.4057,24.2144,0.00000000 350,100.9515,189.4525,29.8138,52.8559,0.00000002 350,414.5104,184.5658,38.7042,65.6372,0.00000000 350,628.2590,460.7352,11.8877,51.4115,0.00000000 350,635.7117,488.4537,4.4350,23.6930,0.00000000 351,391.8991,200.2840,26.9363,48.3166,0.00000000 351,603.0318,399.1263,37.1149,113.0204,0.00000000 351,627.6334,456.2295,12.5133,55.9172,0.00000000 351,635.2285,487.1996,4.9182,24.9471,0.00000000 352,65.9104,202.2992,30.0542,58.6057,0.00000035 352,627.7334,1.0000,12.4133,50.9311,0.00000000 352,536.8632,136.1468,26.9558,66.7956,0.00000000 352,600.5676,397.2950,39.5791,114.8517,0.00000000 352,637.5083,176.4716,2.6384,63.0985,0.00000000 352,631.4971,151.6087,8.6496,80.9279,0.00000000 352,627.0392,455.8636,13.1075,56.2831,0.00000000 352,607.5715,1.0000,32.5752,152.9584,0.00000000 352,636.3574,493.0032,3.7893,19.1435,0.00000000 353,18.6784,204.4921,36.8088,67.7265,0.00000000 353,551.8428,215.3450,41.2606,98.3968,0.00000000 353,638.3720,176.1048,1.7747,64.4957,0.00000000 353,632.1402,171.0385,8.0065,78.5049,0.00000000 353,1.0000,98.9666,59.8551,258.3171,0.00000000 353,629.9738,480.3182,10.1729,31.8285,0.00000000 354,457.2901,199.9087,24.9002,62.7412,0.00000047 354,520.7429,224.4297,22.6186,54.3389,0.00000013 354,134.3401,209.0266,26.5705,50.1914,0.00000000 354,435.0493,147.0966,51.0476,122.8161,0.00000000 354,603.8073,396.8227,36.3394,115.3240,0.00000000 354,627.7307,457.2265,12.4160,54.9202,0.00000000 354,636.2560,493.9119,3.8907,18.2348,0.00000000 355,516.3458,217.3813,25.8144,52.3340,0.74275744 355,439.4970,126.4060,25.1181,58.2860,0.00000000 355,506.5884,185.9051,52.7744,98.5369,0.00000000 355,451.4749,135.8746,33.0403,75.2201,0.00000000 355,600.1110,42.8363,40.0357,265.8834,0.00000000 355,634.7817,257.7897,5.3650,65.1925,0.00000000 355,627.6937,457.9245,12.4530,54.2222,0.00000000 355,634.9570,486.9889,5.1897,25.1578,0.00000000 356,385.7368,210.8920,21.7458,50.4036,0.00000000 356,468.1749,128.3390,59.2927,136.0620,0.00000000 356,398.6922,203.3830,23.0206,49.5155,0.00000000 356,596.2543,134.6495,43.8924,274.3212,0.00000000 356,627.6358,1.0000,12.5109,47.4335,0.00000000 356,605.0729,396.6057,35.0738,115.5410,0.00000000 356,628.0441,458.0459,12.1026,54.1008,0.00000000 356,635.5781,487.7733,4.5686,24.3734,0.00000000 357,334.8135,209.4733,24.2511,48.4822,0.01406511 357,556.8239,139.4674,39.0418,89.8988,0.00000000 357,428.2456,205.2638,25.1827,55.0715,0.00000000 357,506.5161,107.2759,91.8119,236.6191,0.00000000 357,417.4158,174.4720,50.2172,96.5325,0.00000000 357,636.0620,493.0577,4.0847,19.0890,0.00000000 357,603.8593,391.5922,36.2874,120.5545,0.00000000 357,629.3185,478.6425,10.8282,33.5042,0.00000000 358,337.2335,202.2460,25.6249,50.9562,0.11703883 358,441.8003,194.6767,26.4369,52.7126,0.00000022 358,601.8645,82.0561,27.7550,73.4358,0.00000000 358,582.6909,76.6350,38.5152,117.6097,0.00000000 358,624.7088,94.0908,15.4379,132.5451,0.00000000 358,631.9083,83.8225,8.2384,82.6179,0.00000000 358,588.7154,76.1186,51.4313,245.7529,0.00000000 358,628.0588,1.0000,12.0879,54.2385,0.00000000 358,635.5048,488.0500,4.6419,24.0967,0.00000000 359,342.7401,201.6805,27.1871,48.7074,0.00618136 359,409.3511,189.2890,30.3129,60.0287,0.00008288 359,19.2412,193.1101,35.6893,59.9454,0.00000000 359,634.1910,139.5768,5.9557,79.9595,0.00000000 359,628.2598,458.4352,11.8869,53.7115,0.00000000 359,635.3460,487.1644,4.8007,24.9823,0.00000000 360,350.8839,199.5349,25.0684,52.5903,0.95730466 360,428.3652,204.6850,23.1061,47.1654,0.11695401 360,444.3062,202.8110,22.7352,49.0373,0.00000020 360,340.3418,173.6310,49.5807,96.4422,0.00000000 360,553.0163,176.5787,32.9833,75.8414,0.00000000 360,525.8990,167.0415,69.8706,154.3288,0.00000000 360,631.9647,487.3633,8.1820,24.7834,0.00000000 361,449.9905,216.5011,22.5510,48.4603,0.99999005 361,467.1732,212.5055,20.9675,48.7135,0.07604748 361,359.2697,203.0481,25.3975,52.3824,0.04156377 361,490.0634,212.9332,21.5612,47.5262,0.00000709 361,604.6111,236.3938,24.0027,56.8362,0.00000000 361,348.2993,176.0946,49.9362,104.3121,0.00000000 361,636.8006,229.5154,3.3461,63.8058,0.00000000 361,630.9704,198.5103,9.1763,79.9233,0.00000000 361,631.9297,487.8671,8.2170,24.2796,0.00000000 362,509.5570,215.7381,24.3637,57.0126,1.00000000 362,490.6978,217.4556,24.7370,54.1575,1.00000000 362,566.5294,214.3451,23.8114,53.3896,0.99999708 362,368.0242,202.2631,28.8783,53.5955,0.00000009 362,550.0540,213.0982,24.7327,54.4611,0.00000000 362,481.2188,174.8715,50.9277,104.1236,0.00000000 362,552.8191,177.1209,48.8386,96.4920,0.00000000 362,530.6885,100.7678,97.4340,210.9556,0.00000000 362,635.4721,487.7756,4.6746,24.3711,0.00000000 363,563.6196,218.4005,29.7577,73.0595,0.99985427 363,585.2551,214.3614,31.9656,76.5100,0.99971175 363,462.8518,198.5907,24.4060,48.9739,0.98952854 363,374.4037,213.4128,21.0392,48.3905,0.01319904 363,481.0817,201.0071,22.5146,49.8504,0.00329958 363,492.5481,186.7229,23.5533,50.1206,0.00000000 363,398.0010,187.1107,23.5285,58.0625,0.00000000 364,375.4698,219.2664,24.1243,51.4821,0.99999803 364,543.0367,205.6299,22.5933,53.9616,0.99997932 364,516.7859,196.6362,23.0698,53.1758,0.99997777 364,527.3621,211.2247,22.3698,50.7222,0.00000000 364,532.5443,171.0043,51.0613,103.7309,0.00000000 364,383.7948,190.9001,26.5970,55.3551,0.00000000 364,365.3790,183.4261,51.2695,100.3840,0.00000000 364,635.1714,487.1913,4.9753,24.9554,0.00000000 365,391.3784,219.0057,23.3974,55.3678,0.99057388 365,424.3328,184.2509,23.4171,53.4056,0.00000013 365,399.3971,193.8954,31.2605,69.8684,0.00000000 365,617.3506,204.5632,22.7961,57.5082,0.00000000 365,635.1912,185.9449,4.9555,61.4265,0.00000000 365,632.5905,213.7466,7.5562,64.2419,0.00000000 365,631.2570,486.7902,8.8897,25.3565,0.00000000 366,423.3696,214.9062,29.6574,74.4713,0.98836690 366,413.5335,201.9587,25.9202,65.3920,0.00000000 366,442.9345,196.8060,28.9882,61.8998,0.00000000 366,427.6595,179.5083,53.2361,126.9314,0.00000000 366,422.7255,139.7684,91.4558,271.8740,0.00000000 366,632.7455,1.0000,7.4012,36.4163,0.00000000 366,632.8277,182.3918,7.3190,82.6761,0.00000000 366,636.0788,494.2493,4.0679,17.8974,0.00000000 366,629.4283,482.1968,10.7184,29.9499,0.00000000 367,444.8972,215.4767,42.3373,108.1411,0.99999595 367,390.5829,199.2102,37.4118,60.0033,0.00002086 367,450.4031,201.0737,28.6110,63.6955,0.00000000 367,464.8145,184.0287,30.6448,53.5679,0.00000000 367,431.7998,127.7007,86.7568,210.2767,0.00000000 367,625.9733,456.1827,14.1734,55.9640,0.00000000 367,634.6758,487.7267,5.4709,24.4200,0.00000000 368,468.5144,265.2232,46.8618,116.8323,0.99984205 368,430.9922,228.1280,36.5422,70.8288,0.00000000 368,524.6494,214.5816,36.9947,78.3891,0.00000000 368,437.6204,236.3304,89.7912,213.5885,0.00000000 368,637.8624,212.9127,2.2843,61.3793,0.00000000 368,629.9747,480.4778,10.1720,31.6689,0.00000000 369,491.1895,224.0376,63.1757,141.8733,0.99982148 369,426.9484,198.5719,24.9105,45.9471,0.00002240 369,465.2364,208.7552,40.2614,82.7833,0.00000000 369,450.8203,138.2551,88.7227,243.9174,0.00000000 369,629.6142,481.3778,10.5325,30.7689,0.00000000 369,58.6781,70.1474,94.2132,275.4421,0.00000000 370,532.8751,231.3251,64.5333,157.6232,0.99999750 370,496.3616,200.5472,26.1323,51.4768,0.99999452 370,445.6330,197.9577,26.1387,48.3306,0.97259492 370,528.4871,191.7028,22.2241,48.7506,0.00000013 371,534.3180,203.7687,24.5108,54.1820,1.00000000 371,471.4848,202.7314,25.8960,48.3720,0.99785370 371,571.5784,189.7876,23.5606,51.3175,0.12716736 371,520.2679,190.8159,29.7165,55.2543,0.00000006 371,557.1020,196.9354,23.3722,49.0062,0.00000000 371,523.3291,173.5912,51.5861,97.4396,0.00000000 371,631.4201,486.9778,8.7266,25.1689,0.00000000 372,588.3176,209.2773,32.8800,71.0925,1.00000000 372,505.5382,214.1505,24.9014,51.8546,0.99999946 372,27.4244,213.6777,28.2901,66.0559,0.00000114 372,561.8525,188.4722,29.0197,60.6074,0.00000033 372,634.4904,198.3301,5.6563,62.8435,0.00000000 372,629.2136,481.2421,10.9331,30.9046,0.00000000 373,552.4647,212.3277,31.3781,68.9590,0.90538371 373,521.0140,124.8667,97.0171,217.1362,0.00000000 373,632.6135,1.0000,7.5332,35.7135,0.00000000 373,635.0172,197.6742,5.1295,78.3552,0.00000000 373,635.9796,493.8709,4.1671,18.2758,0.00000000 373,629.3525,481.2747,10.7942,30.8720,0.00000000 374,396.2628,222.4318,26.0695,49.8957,0.00000000 374,410.2697,228.2985,24.9475,52.1370,0.00000000 374,627.3239,1.0000,12.8228,46.3675,0.00000000 374,632.3703,231.6398,7.7764,78.1625,0.00000000 374,629.7516,481.5842,10.3951,30.5625,0.00000000 375,419.7109,219.9136,24.1699,49.7095,0.08840506 375,408.7809,228.1182,23.2609,49.2827,0.00000357 375,90.6664,206.7507,37.3705,59.7305,0.00000000 375,376.1058,136.4824,34.4800,88.8101,0.00000000 375,525.9053,93.1935,26.1358,72.2837,0.00000000 375,166.1791,205.9765,24.3759,49.5273,0.00000000 375,432.3628,207.3968,25.6827,54.1847,0.00000000 375,508.7515,41.7394,55.3891,131.2833,0.00000000 375,635.2612,487.9409,4.8855,24.2058,0.00000000 376,428.7409,222.5948,21.8878,49.2760,0.99985671 376,447.1695,218.6699,23.4704,50.1903,0.99923795 376,417.0952,150.0112,29.4456,67.3111,0.00000000 376,603.7651,392.1914,36.3816,119.9553,0.00000000 376,633.8786,204.3990,6.2681,76.2921,0.00000000 376,625.6649,455.9575,14.4818,56.1892,0.00000000 376,634.4667,487.2527,5.6800,24.8940,0.00000000 377,478.6887,218.8374,24.3986,55.6748,1.00000000 377,457.6440,219.6327,24.2773,54.8450,1.00000000 377,64.3629,199.1646,21.5914,49.6709,0.00000001 377,491.6752,215.1554,24.1708,54.1971,0.00000000 377,453.0491,197.6715,51.8468,94.0556,0.00000000 377,88.7660,78.0742,58.7390,159.0637,0.00000000 377,634.7622,487.8868,5.3845,24.2599,0.00000000 377,626.2205,456.2791,13.9262,55.8676,0.00000000 378,529.6348,218.9590,34.3065,73.2015,1.00000000 378,505.7079,221.2050,31.2683,75.1293,1.00000000 378,45.7664,187.4112,29.7635,56.7829,0.00000000 378,394.0343,195.1731,23.4889,51.4980,0.00000000 378,63.4919,197.8508,30.1258,57.7860,0.00000000 378,474.2213,151.4319,90.9690,214.1273,0.00000000 378,635.2739,487.8179,4.8728,24.3288,0.00000000 379,567.8124,217.2316,35.1792,73.2041,0.99999946 379,605.7928,218.9202,34.3539,110.9894,0.99963510 379,405.2841,191.5910,21.8281,48.7868,0.01728521 379,380.8676,194.5924,23.7680,51.4681,0.00000168 379,628.1671,221.9825,11.9796,81.7593,0.00000000 379,629.4132,482.8469,10.7335,29.2998,0.00000000 380,402.6421,199.4064,27.8132,53.7689,0.02420987 380,422.4597,195.7109,30.3979,57.0066,0.00000000 380,506.6384,167.3710,48.4239,117.7166,0.00000000 380,392.1670,157.4307,52.2782,104.1060,0.00000000 380,454.1843,159.2904,87.8297,281.9680,0.00000000 380,628.5123,459.6660,11.6344,52.4807,0.00000000 380,635.4600,487.7245,4.6867,24.4222,0.00000000 381,438.3000,199.7206,24.0297,55.0490,0.99999982 381,450.0659,207.0489,28.1057,59.2203,0.00000000 381,386.1113,138.9089,22.5816,51.3227,0.00000000 381,627.4483,1.0000,12.6984,45.3810,0.00000000 381,403.5261,91.2303,98.8191,220.2533,0.00000000 381,627.6110,457.7252,12.5357,54.4215,0.00000000 381,635.3148,486.8754,4.8319,25.2713,0.00000000 382,478.4401,171.8473,36.4271,80.1633,0.99998373 382,73.1900,165.3841,24.9444,46.4757,0.97832507 382,467.2256,87.6898,20.8274,54.7383,0.00000000 382,571.2156,164.2147,31.3803,61.6886,0.00000000 382,452.1125,150.0459,41.5956,105.8380,0.00000000 382,549.6293,133.8782,90.5174,259.6520,0.00000000 382,603.0740,393.1904,37.0727,118.9563,0.00000000 382,454.7076,84.6310,89.0061,228.6359,0.00000000 382,626.9402,456.8318,13.2065,55.3149,0.00000000 382,634.8730,487.2144,5.2737,24.9323,0.00000000 383,538.1703,216.0448,40.2309,93.0941,0.99999988 383,462.3470,196.2357,22.4033,52.2877,0.99999946 383,48.5936,210.3010,24.9057,48.0329,0.00000037 383,634.5363,202.3884,5.6104,66.4808,0.00000000 383,518.3313,137.5163,85.3404,218.6429,0.00000000 383,634.5460,487.1154,5.6007,25.0313,0.00000000 383,626.0347,455.6783,14.1120,56.4684,0.00000000 384,491.5622,207.3165,21.5938,51.2861,0.39097774 384,535.0902,207.3430,36.5010,66.4266,0.00000000 384,27.5509,215.0242,20.9800,46.9643,0.00000000 384,480.0582,171.7694,39.2005,76.1127,0.00000000 384,563.0648,163.8706,77.0819,246.2372,0.00000000 384,636.3802,204.2608,3.7665,64.1152,0.00000000 384,632.7910,223.7296,7.3557,75.4437,0.00000000 384,635.3056,487.7416,4.8411,24.4051,0.00000000 385,549.3594,215.3331,23.2600,53.8203,0.99997419 385,397.7382,211.9750,23.7331,48.3905,0.00245331 385,538.5505,206.8913,21.3380,53.5424,0.00000000 385,536.2075,179.2504,51.1759,101.3916,0.00000000 385,628.1049,461.6780,12.0418,50.4687,0.00000000 385,506.2173,110.4538,101.3783,229.2192,0.00000000 385,635.8441,488.5559,4.3026,23.5908,0.00000000 386,414.5890,202.5505,30.6642,58.5096,0.00000304 386,125.2298,195.1075,27.8728,53.7263,0.00000000 386,404.4584,143.8729,52.2024,122.8978,0.00000000 386,634.2438,190.8683,5.9029,74.6304,0.00000000 386,636.3241,493.9794,3.8226,18.1673,0.00000000 386,627.4946,459.8135,12.6521,52.3332,0.00000000 387,591.9250,191.2781,29.4108,63.9219,0.00000000 387,464.9911,99.5190,40.7625,112.8515,0.00000000 387,636.8328,189.2424,3.3139,62.4031,0.00000000 387,636.1739,494.1404,3.9728,18.0063,0.00000000 387,629.4256,481.7714,10.7211,30.3753,0.00000000 388,517.7357,217.1115,24.6086,54.6139,0.98471731 388,471.0979,55.9585,28.2198,68.9639,0.00017014 388,466.2453,216.4866,25.6111,47.6718,0.00000427 388,502.6380,215.1927,23.5561,52.2162,0.00000000 388,452.6967,59.1892,28.0047,64.4143,0.00000000 388,90.2543,172.1464,35.7022,71.1255,0.00000000 388,602.6640,395.9467,37.4827,116.2000,0.00000000 388,626.0815,457.3098,14.0652,54.8369,0.00000000 388,635.6377,492.9624,4.5090,19.1843,0.00000000 389,583.0488,221.6673,49.9823,120.6100,0.99916846 389,512.9928,208.5008,25.1381,51.6887,0.84707797 389,544.6315,206.1824,21.9372,50.7369,0.78795093 389,494.9795,209.7000,25.0602,52.3862,0.00000001 389,612.9295,231.7431,27.2172,81.1493,0.00000000 389,417.9582,199.2713,23.8785,55.2526,0.00000000 390,608.0260,213.0944,23.1713,53.9310,0.99887574 390,580.9575,215.0813,24.2746,57.5592,0.96606147 390,565.3649,205.8410,27.8300,57.6221,0.00011845 390,540.7534,76.1417,22.6154,57.8305,0.00000000 390,484.9799,210.9010,29.3281,58.6191,0.00000000 390,629.4673,202.6225,10.6794,76.8264,0.00000000 390,501.8853,163.7381,90.5673,250.6212,0.00000000 390,629.2777,479.2964,10.8690,32.8503,0.00000000 391,237.0687,210.4780,25.5546,49.5584,0.95721465 391,448.6630,192.2098,34.9317,67.0138,0.00013308 391,603.9469,173.5897,36.1998,173.1586,0.00000000 391,543.1940,229.2429,28.2014,59.4199,0.00000000 391,623.3806,155.3781,16.7661,129.9440,0.00000000 391,636.0108,185.5161,4.1359,65.8049,0.00000000 391,630.2413,479.4619,9.9054,32.6848,0.00000000 392,448.5756,212.8423,23.8619,53.8059,0.99998075 392,409.5008,208.5970,25.6327,52.9164,0.04479187 392,473.2629,212.5762,24.1036,50.9646,0.00000015 392,435.1536,211.1570,23.2344,51.0436,0.00000000 392,439.4342,182.9705,53.2996,99.6327,0.00000000 392,176.6440,99.0249,86.1740,241.0748,0.00000000 392,491.1919,5.3309,88.0383,245.1426,0.00000000 392,413.1399,111.0721,100.4050,214.2290,0.00000000 392,636.5134,493.8269,3.6333,18.3198,0.00000000 392,629.6560,481.3358,10.4907,30.8109,0.00000000 393,121.9737,219.2995,26.8079,50.9035,0.99999988 393,434.6287,216.8730,24.3285,57.7820,0.99999774 393,89.0044,206.6026,29.0077,62.6298,0.03042639 393,370.7768,207.6199,31.6379,53.3676,0.00180291 393,422.5177,214.5979,22.6974,53.0621,0.00036362 393,451.6577,13.7867,89.9945,269.6445,0.00000000 393,629.4371,478.8297,10.7096,33.3170,0.00000000 394,402.8827,222.3528,27.5089,65.3605,1.00000000 394,50.1753,223.7274,29.8297,55.2062,0.99379432 394,330.6967,217.5109,24.6001,53.9547,0.97768956 394,2.7672,216.8695,33.7791,65.5217,0.00829543 394,340.6300,232.5684,26.0038,51.4997,0.00000003 394,416.2563,1.0000,90.5607,271.7491,0.00000000 395,340.6564,218.2874,32.8317,78.1805,1.00000000 395,251.6727,212.2572,31.4919,60.6084,0.93450397 395,229.3310,223.7524,28.5750,65.2001,0.00707351 395,351.0285,1.2924,93.4286,274.9686,0.00000000 396,271.0138,211.4848,33.4527,97.1846,1.00000000 396,148.8098,213.8032,40.0154,63.5538,0.99913579 396,59.5327,221.7263,38.3163,73.3729,0.97272408 396,597.2995,191.9758,23.8698,54.6518,0.00000000 396,316.1736,214.5456,60.3928,153.6332,0.00000000 397,157.1692,211.1724,42.0670,120.8084,1.00000000 397,21.2083,212.8259,40.0721,69.4416,0.00895036 397,559.8132,187.9487,26.4685,65.2819,0.00000020 397,6.1687,231.9083,31.8883,66.1362,0.00000001 397,574.2184,192.5073,24.1429,51.9674,0.00000000 397,508.8777,196.9813,24.9726,57.4059,0.00000000 397,555.3350,169.6863,52.3931,157.3155,0.00000000 398,11.1903,228.0957,48.2690,111.5179,0.00024133 398,1.0000,216.7647,36.5261,82.7443,0.00000000 398,607.6721,180.6422,32.4746,67.2647,0.00000000 398,457.8370,188.8788,28.9294,52.6952,0.00000000 398,431.9223,203.1914,28.7640,62.2089,0.00000000 398,631.1703,166.4627,8.9764,78.9407,0.00000000 398,637.6740,174.9518,2.4727,64.9167,0.00000000 398,1.0000,195.1319,80.2082,235.4587,0.00000000 398,636.0027,489.5952,4.1440,22.5515,0.00000000 398,627.4263,459.7543,12.7204,52.3924,0.00000000 399,541.8598,160.9094,30.3674,50.7595,0.00000004 399,472.2159,188.6392,24.6895,58.6033,0.00000000 399,211.5250,190.8058,27.5976,56.1232,0.00000000 399,616.3401,220.5867,23.8066,59.1976,0.00000000 399,467.0159,157.1177,24.7041,61.0950,0.00000000 399,455.9575,142.8321,53.7281,112.6134,0.00000000 399,629.2549,179.1235,10.8918,81.5710,0.00000000 399,635.6152,160.0633,4.5315,64.1452,0.00000000 399,635.5331,487.5139,4.6136,24.6328,0.00000000 400,491.9569,228.6654,26.5889,70.5346,0.00000001 400,82.1139,190.9352,29.0548,52.3511,0.00000000 400,112.0181,195.0344,26.7306,50.8782,0.00000000 400,96.6365,182.3496,27.3917,51.6687,0.00000000 400,322.9838,198.0096,24.0151,63.6984,0.00000000 400,9.3057,188.2923,29.4009,64.0162,0.00000000 400,68.4809,200.8584,29.2893,51.1586,0.00000000 400,309.0982,140.4613,49.1836,111.7605,0.00000000 400,636.1909,216.4122,3.9558,65.1257,0.00000000 400,602.5460,396.4158,37.6007,115.7309,0.00000000 400,636.2901,492.8902,3.8566,19.2565,0.00000000 400,629.5823,477.6176,10.5644,34.5291,0.00000000 401,361.6429,225.2717,31.0321,77.4218,0.00000000 401,50.9289,142.1760,83.5958,255.3006,0.00000000 401,630.5238,218.6748,9.6229,81.2607,0.00000000 401,629.7338,481.1972,10.4129,30.9495,0.00000000 402,11.8936,138.1782,31.1705,67.1092,0.00016531 402,631.5607,486.4763,8.5860,25.6704,0.00000000 402,1.0000,39.2727,53.5874,258.5096,0.00000000 403,404.0907,234.3805,28.2588,58.4089,0.00000000 403,604.1655,391.6508,35.9812,120.4959,0.00000000 403,163.0288,21.7082,87.8984,274.5602,0.00000000 403,143.2161,222.7193,83.9950,261.8222,0.00000000 403,636.1527,493.6216,3.9940,18.5251,0.00000000 403,626.5229,455.1018,13.6238,57.0449,0.00000000 404,371.4511,250.0537,29.4829,57.0054,0.00037160 404,604.3060,395.1330,35.8407,117.0137,0.00000000 404,626.4395,456.4528,13.7072,55.6939,0.00000000 404,1.0000,389.2248,61.4068,122.9219,0.00000000 404,633.5217,248.9899,6.6250,76.5464,0.00000000 404,79.2292,26.8644,89.7024,265.8792,0.00000000 404,26.2911,207.4696,86.1360,262.5862,0.00000000 404,635.1108,487.0879,5.0359,25.0588,0.00000000 405,236.7996,207.8657,26.0725,51.2090,0.00012185 405,433.3323,111.5202,24.6199,52.5219,0.00000477 405,442.7297,262.4874,39.5571,73.2643,0.00000003 405,470.9201,271.8600,29.4769,58.1027,0.00000001 405,253.2632,206.8034,26.5888,54.2380,0.00000000 405,634.1218,157.9144,6.0249,72.6443,0.00000000 405,629.4321,480.7059,10.7146,31.4408,0.00000000 405,636.0916,493.5230,4.0551,18.6237,0.00000000 406,282.2159,218.5196,26.4207,48.8964,0.30114323 406,297.8790,214.0102,23.9963,45.1280,0.00009255 406,315.3213,212.7215,23.6246,48.6778,0.00000000 406,185.7577,35.0026,88.5249,258.4933,0.00000000 406,635.7752,494.3821,4.3715,17.7646,0.00000000 406,629.4768,482.8457,10.6699,29.3010,0.00000000 407,328.4903,215.7647,27.8914,63.1944,1.00000000 407,354.6811,222.0604,22.5516,53.8873,0.98799437 407,310.0064,207.5375,33.2383,65.1869,0.00000000 407,535.1969,382.8779,89.2003,129.2688,0.00000000 407,332.3700,169.2942,51.1867,116.3576,0.00000000 407,238.6903,31.8611,67.9435,164.1586,0.00000000 407,532.4386,466.6487,42.9792,45.4980,0.00000000 407,636.2549,494.6776,3.8918,17.4691,0.00000000 407,629.9716,482.2412,10.1751,29.9055,0.00000000 407,291.4109,125.7014,96.4297,211.1189,0.00000000 408,357.0077,217.8138,36.5288,83.4013,1.00000000 408,385.4450,228.8119,30.0767,69.6889,0.99999976 408,433.0633,217.7136,29.6754,53.5455,0.00000000 408,252.2075,20.0772,93.5040,266.0265,0.00000000 408,634.8073,487.3358,5.3394,24.8109,0.00000000 408,626.6792,457.3398,13.4675,54.8069,0.00000000 409,389.3481,213.3709,51.6913,121.4055,1.00000000 409,433.6604,231.1309,40.0402,97.9641,1.00000000 409,452.6797,227.1918,38.5898,74.6380,0.00000000 409,416.5086,179.9492,82.8873,208.0123,0.00000000 409,627.2921,453.8604,12.8546,58.2863,0.00000000 409,635.0302,486.6506,5.1165,25.4961,0.00000000 410,545.4449,244.0325,64.4822,145.3803,1.00000000 410,456.3034,212.9842,80.3125,194.4510,1.00000000 410,513.8490,268.4156,63.6141,142.3663,0.00000004 410,560.2517,274.1878,79.8950,237.9589,0.00000000 411,439.8208,215.4975,33.0836,62.9150,0.00000000 411,598.3369,97.3056,41.8098,269.5006,0.00000000 411,220.4442,125.2177,88.8444,268.3019,0.00000000 411,636.3456,187.1125,3.8011,67.0386,0.00000000 411,633.3789,107.5832,6.7678,78.4777,0.00000000 411,632.3197,1.0000,7.8270,36.2930,0.00000000 411,636.1160,492.8072,4.0307,19.3395,0.00000000 411,627.5767,457.6389,12.5700,54.5078,0.00000000 412,414.4094,217.3183,36.9993,65.1561,0.00000003 412,599.6829,97.8592,40.4638,267.7476,0.00000000 412,176.5203,113.1450,91.6699,278.8937,0.00000000 412,633.9924,1.0000,6.1543,31.9347,0.00000000 412,633.1019,184.1516,7.0448,79.6942,0.00000000 412,635.8141,91.7756,4.3326,64.9597,0.00000000 412,635.9269,493.3943,4.2198,18.7524,0.00000000 412,629.4928,481.6577,10.6539,30.4890,0.00000000 413,380.5802,214.3667,39.3457,72.0128,0.00000096 413,631.0829,202.7895,9.0638,82.5298,0.00000000 413,409.6510,137.6583,86.6293,261.4475,0.00000000 413,325.0201,126.3133,84.3799,256.4813,0.00000000 413,635.1136,488.5013,5.0331,23.6454,0.00000000 413,627.2568,459.4305,12.8899,52.7162,0.00000000 414,454.8804,207.2182,43.8814,99.6519,0.00000001 414,430.0990,204.4549,46.8002,122.1097,0.00000000 414,476.4667,198.9081,51.4186,120.4118,0.00000000 414,268.7769,233.2977,34.0316,65.7375,0.00000000 414,477.0565,95.6223,88.1492,276.6103,0.00000000 414,394.2145,138.2731,69.4790,166.1604,0.00000000 414,439.1812,166.5087,85.7374,232.1049,0.00000000 414,596.9822,94.4909,43.1645,272.8269,0.00000000 414,632.4686,1.0000,7.6781,40.4405,0.00000000 414,636.9751,186.9107,3.1716,65.4420,0.00000000 414,627.4663,148.7569,12.6804,127.3826,0.00000000 414,635.0998,488.3300,5.0469,23.8167,0.00000000 414,627.4324,459.8559,12.7143,52.2908,0.00000000 415,597.4776,165.2197,42.6691,270.0230,0.00000000 415,636.1163,493.6343,4.0304,18.5124,0.00000000 415,629.3726,482.0734,10.7741,30.0733,0.00000000 416,627.6542,1.0000,12.4925,50.2855,0.00000000 416,636.0272,493.9124,4.1195,18.2343,0.00000000 416,629.4485,481.8928,10.6982,30.2539,0.00000000 417,632.8033,1.0000,7.3434,36.3156,0.00000000 417,636.3315,493.3221,3.8152,18.8246,0.00000000 417,629.3337,479.4800,10.8130,32.6667,0.00000000 418,1.0000,128.3280,60.3315,273.2990,0.00000000 418,636.8320,206.4220,3.3147,67.9466,0.00000000 418,632.7445,1.0000,7.4022,37.9877,0.00000000 418,636.1470,493.7412,3.9997,18.4055,0.00000000 418,629.5258,481.5589,10.6209,30.5878,0.00000000 419,464.8129,115.4922,89.7547,277.4681,0.00000000 419,627.4611,1.0000,12.6856,46.8911,0.00000000 419,636.0117,493.6183,4.1350,18.5284,0.00000000 419,627.3422,459.8290,12.8045,52.3177,0.00000000 420,627.4398,1.0000,12.7069,49.8122,0.00000000 420,636.7814,493.1020,3.3653,19.0447,0.00000000 420,628.4108,459.7976,11.7359,52.3491,0.00000000 421,57.5899,226.7973,34.7670,76.8197,0.99999976 421,22.3254,231.7709,30.0399,69.6768,0.99999088 421,38.3153,228.0261,33.3266,73.8002,0.99120837 421,264.8689,225.9376,24.1123,50.8143,0.00000185 421,250.8920,237.4653,22.6614,50.4702,0.00000000 422,344.9771,222.4734,38.9213,85.3027,0.99999988 422,318.8547,230.1870,33.4268,77.2635,0.99999982 422,305.5033,235.6674,28.9081,63.2472,0.00000001 422,515.7064,240.9567,24.0180,50.1123,0.00000000 422,619.7691,205.5915,20.3776,143.8388,0.00000000 422,593.1257,216.7280,47.0210,269.9308,0.00000000 422,635.3002,487.0565,4.8465,25.0902,0.00000000 422,316.0889,130.5422,91.4583,224.8630,0.00000000 423,346.8280,213.3270,42.1122,95.3660,1.00000000 423,323.4783,225.4712,36.3864,83.7441,0.99999994 423,308.8142,151.2921,88.3178,214.6250,0.00000000 423,635.3847,488.2599,4.7620,23.8868,0.00000000 424,173.7419,219.6086,48.5005,123.8296,0.99999636 424,128.7054,236.9591,38.4000,91.2812,0.99990630 424,152.3491,239.6163,32.3619,79.8852,0.00005996 424,599.5956,199.9772,33.5061,68.6471,0.00000000 425,1.0000,183.5098,58.1823,258.5775,0.00000000 425,601.4092,395.5431,38.7375,116.6036,0.00000000 425,635.7286,355.5809,4.4181,75.9833,0.00000000 425,635.3025,197.8817,4.8442,76.2266,0.00000000 425,626.1232,457.8181,14.0235,54.3286,0.00000000 425,635.0645,487.9402,5.0822,24.2065,0.00000000 426,293.7847,314.7778,36.0803,97.2963,0.00014877 426,347.2737,184.3310,27.4950,56.7133,0.00000005 426,509.7315,166.1396,90.1293,251.7631,0.00000000 426,536.1376,142.3018,60.2744,139.1126,0.00000000 426,637.0500,188.2538,3.0967,63.1735,0.00000000 426,637.1196,143.4265,3.0271,62.7070,0.00000000 426,633.1614,204.4954,6.9853,75.0094,0.00000000 426,267.3079,241.9666,82.9789,234.0851,0.00000000 426,626.7704,458.6112,13.3763,53.5355,0.00000000 426,636.4054,493.2898,3.7413,18.8569,0.00000000 427,287.2618,363.8963,25.2549,70.7536,0.00000008 427,124.0802,215.6624,27.2514,56.9365,0.00000005 427,274.8709,331.7318,55.8148,143.8578,0.00000000 427,627.0325,91.1823,13.1142,126.0541,0.00000000 427,596.8793,64.9177,43.2674,264.0712,0.00000000 427,635.7137,118.7951,4.4330,67.6650,0.00000000 427,634.4525,176.2704,5.6942,75.9245,0.00000000 427,626.6280,460.3353,13.5187,51.8114,0.00000000 427,635.3356,489.1454,4.8111,23.0013,0.00000000 428,602.7433,394.3653,37.4034,117.7814,0.00000000 428,626.0999,458.7977,14.0468,53.3490,0.00000000 428,635.0175,488.5288,5.1292,23.6179,0.00000000 429,432.2590,201.8445,29.7892,53.5351,0.12609251 429,364.0980,169.7098,23.7666,50.6498,0.00000000 429,395.8343,185.6927,24.0231,49.9128,0.00000000 429,420.6759,197.5284,83.2791,255.6150,0.00000000 429,626.6540,459.9995,13.4927,52.1472,0.00000000 429,635.2680,488.1046,4.8787,24.0421,0.00000000 430,466.5559,198.6262,23.6028,52.4952,0.99998575 430,441.2863,197.6073,27.2541,56.9976,0.49166375 430,395.5284,186.3739,24.9041,48.5064,0.03664088 430,366.4422,166.7548,22.4693,51.9303,0.00000005 430,146.8901,193.1438,25.9460,48.4779,0.00000000 430,460.7256,313.7256,88.1225,198.4211,0.00000000 430,440.5979,159.9670,51.9976,106.7531,0.00000000 430,625.3188,457.6585,14.8279,54.4882,0.00000000 430,634.6498,487.9642,5.4969,24.1825,0.00000000 431,429.5201,204.8134,29.0496,63.6938,0.99999940 431,110.0905,207.5423,31.0964,48.8856,0.99220896 431,366.5104,198.0801,26.5123,46.0979,0.91978103 431,449.1781,201.9033,24.8404,56.4901,0.00000005 431,411.8857,192.6245,33.0772,66.1648,0.00000000 431,625.4693,457.8155,14.6774,54.3312,0.00000000 431,634.3404,486.6111,5.8063,25.5356,0.00000000 432,390.6659,215.9081,28.2173,67.2772,0.99994045 432,92.3768,207.7178,25.1171,48.0497,0.82283789 432,406.1461,208.0122,27.0029,62.9962,0.00000008 432,319.7792,185.9560,24.7136,51.4686,0.00000000 432,635.2797,488.0801,4.8670,24.0666,0.00000000 432,626.4139,459.1591,13.7328,52.9876,0.00000000 432,352.5179,124.5361,94.6051,216.7296,0.00000000 433,360.7871,224.4481,30.4841,71.6345,1.00000000 433,282.6525,207.0993,23.6307,48.6024,0.99285585 433,346.0546,220.6165,27.6402,58.3559,0.00000000 433,377.5434,222.9264,29.3081,61.5394,0.00000000 433,122.3100,211.6875,27.5542,56.7566,0.00000000 433,635.7706,493.9847,4.3761,18.1620,0.00000000 433,327.2493,124.6684,95.4443,224.3085,0.00000000 433,626.2396,458.2567,13.9071,53.8900,0.00000000 434,325.5284,216.0862,37.9478,90.1288,1.00000000 434,250.4279,200.7663,27.5828,52.1907,0.99999309 434,153.8788,206.4151,25.0861,52.7515,0.99176085 434,143.0506,198.5710,23.3656,52.1651,0.00000000 434,241.2713,172.6660,51.8968,98.9356,0.00000000 434,635.1041,487.6421,5.0426,24.5046,0.00000000 435,287.6213,223.0861,35.5168,86.9117,1.00000000 435,221.7107,206.6342,23.0407,50.3436,0.99990630 435,196.8014,212.9070,23.8663,46.7058,0.99977994 435,208.6943,201.3882,22.5585,50.2863,0.00000001 435,634.9974,487.6704,5.1493,24.4763,0.00000000 435,626.1996,458.2499,13.9471,53.8968,0.00000000 436,243.4885,219.5624,33.1673,90.0380,0.99999946 436,187.7126,202.2921,27.0497,52.2264,0.99999905 436,234.0548,209.2425,28.0508,59.1636,0.10569536 436,629.5620,481.7043,10.5847,30.4424,0.00000000 437,184.0296,220.0073,43.8606,114.0205,1.00000000 437,273.7755,213.7782,25.4498,51.8731,0.99999744 437,156.9052,204.6117,26.5098,54.6334,0.99952221 437,165.9645,205.0140,43.8303,92.2477,0.00000000 438,123.3564,214.9804,39.7332,101.0198,0.99997962 438,125.3152,199.2433,26.8086,62.4129,0.00068929 438,309.9314,215.2479,27.7282,65.2073,0.00000003 438,109.3903,194.3097,81.8213,210.8547,0.00000000 438,634.9959,487.6725,5.1508,24.4742,0.00000000 439,61.9268,223.0740,42.4145,95.2399,0.99999976 439,87.9414,221.9625,44.1801,95.2203,0.99999613 439,338.7602,215.2828,27.5995,53.0523,0.99989629 439,50.3305,147.8622,88.9793,210.5811,0.00000000 439,629.7936,482.7382,10.3531,29.4085,0.00000000 440,366.5020,226.1167,27.4114,51.0825,0.99999928 440,7.3178,214.5319,40.9493,109.5430,0.90735751 440,48.3404,210.1639,53.1866,128.9560,0.10568504 440,67.1140,234.0731,27.0140,66.5764,0.00000001 441,180.6314,224.9769,56.1857,119.7046,0.99997079 441,386.0297,221.8688,29.3329,55.0210,0.99855185 441,173.4289,245.2682,30.6659,78.3440,0.00001586 441,192.6321,246.6458,25.4802,69.6528,0.00000000 441,634.9215,487.4730,5.2252,24.6737,0.00000000 442,401.9528,224.3063,24.4739,51.5021,0.99995011 442,354.4775,228.8588,58.2177,124.6179,0.15120186 442,417.6497,217.2656,22.6408,53.5113,0.00000000 442,382.2328,229.7518,29.4284,52.3886,0.00000000 442,383.8323,207.3768,51.3296,115.3532,0.00000000 442,635.7115,493.6589,4.4352,18.4878,0.00000000 442,605.0009,391.1335,35.1458,121.0132,0.00000000 442,626.2380,457.0074,13.9087,55.1393,0.00000000 443,446.0096,225.5816,54.5258,129.8476,0.99999982 443,383.6971,220.9163,31.9510,56.6065,0.99997294 443,468.9449,245.4162,30.0600,67.6946,0.00000001 443,464.1140,165.9445,94.3599,272.0298,0.00000000 443,635.0333,487.2429,5.1134,24.9038,0.00000000 443,626.3887,457.9192,13.7580,54.2275,0.00000000 444,368.8225,216.6184,28.1283,63.0215,1.00000000 444,536.4467,244.2739,40.6966,105.7406,0.99980956 444,208.9655,165.1228,22.8014,51.9842,0.00000010 444,180.0508,168.3982,22.5198,54.2949,0.00000000 444,559.1249,242.5127,40.8768,94.4492,0.00000000 444,352.4339,212.1855,30.6264,58.1078,0.00000000 444,515.5488,190.1915,83.2638,214.7241,0.00000000 444,635.0151,487.4058,5.1316,24.7409,0.00000000 444,626.3602,457.9161,13.7865,54.2306,0.00000000 445,436.9918,220.6735,35.8360,68.7642,0.99999970 445,202.7554,175.7245,27.2321,56.2409,0.00000027 445,236.8534,169.5966,25.3025,50.3163,0.00000002 445,93.4530,299.8712,88.2704,212.2755,0.00000000 445,36.8143,288.1651,87.0036,223.9816,0.00000000 445,417.3182,129.4343,93.8063,211.4502,0.00000000 445,604.2623,392.7249,35.8844,119.4218,0.00000000 445,635.7264,493.8361,4.4203,18.3106,0.00000000 445,626.2719,458.2955,13.8748,53.8512,0.00000000 446,529.0878,224.0225,41.0832,84.3870,0.99999982 446,232.1823,179.3339,22.6946,51.9671,0.00001637 446,550.9210,201.6515,41.5264,99.0885,0.00000000 446,148.9836,350.0312,82.7338,162.1155,0.00000000 446,516.5355,171.3093,94.0083,234.7584,0.00000000 446,20.8432,320.6848,86.0689,191.4619,0.00000000 446,98.2917,320.1196,90.0907,192.0271,0.00000000 446,604.6953,392.1625,35.4514,119.9842,0.00000000 446,635.8003,493.6015,4.3464,18.5452,0.00000000 446,626.2502,457.7711,13.8965,54.3756,0.00000000 447,1.0000,218.6713,66.1465,189.4465,0.93679142 447,254.1585,178.1272,22.1416,49.9820,0.00388202 447,1.0000,287.1932,29.4276,110.4375,0.00000000 447,28.9262,293.1491,55.6919,139.3636,0.00000000 447,627.2110,176.2177,12.9357,125.8124,0.00000000 447,134.9406,342.9188,84.1972,169.2279,0.00000000 447,634.9932,487.2726,5.1535,24.8741,0.00000000 448,28.6433,202.1811,83.5413,217.2251,0.99999982 448,266.6052,175.9373,22.6519,51.7168,0.00421284 448,22.4735,200.7161,39.7402,76.4119,0.00000566 448,14.3111,271.0043,49.5863,134.7950,0.00000000 448,82.0964,229.5659,88.7047,238.7937,0.00000000 449,95.2896,203.1565,72.2636,192.6838,0.99999982 449,284.7149,174.0641,23.2870,51.6495,0.00196389 449,132.7633,237.2101,47.6619,131.6355,0.00000001 449,72.5302,269.9154,56.9182,147.1868,0.00000000 450,178.5172,213.5566,78.0572,187.8232,1.00000000 450,314.1648,173.6983,23.0978,52.3815,0.08019342 450,220.4576,212.1418,54.1568,133.2530,0.00000000 450,138.8085,206.6619,82.3448,255.5964,0.00000000 450,629.3575,482.3516,10.7892,29.7951,0.00000000 451,325.5605,223.6752,76.2931,188.4475,1.00000000 451,144.6563,185.0228,22.9027,50.1455,0.00516178 451,424.8589,179.4482,24.7327,55.3766,0.00000008 451,379.8490,178.9017,27.0186,65.4417,0.00000001 451,277.9722,204.9852,83.2836,253.9691,0.00000000 451,359.1475,174.3008,56.4156,144.7923,0.00000000 451,355.9890,273.6119,89.3522,238.5348,0.00000000 452,528.0844,229.7448,85.9277,231.6280,1.00000000 452,493.7260,194.8054,24.7213,59.2909,0.00005631 452,249.3921,199.0851,22.1771,49.3412,0.00000825 452,301.4936,184.7614,22.2598,49.4831,0.00000000 453,334.2693,178.2568,22.4050,51.4879,0.00000094 453,278.6705,201.4842,21.1645,49.2671,0.00000019 453,534.1503,191.2124,35.6002,76.7556,0.00000016 453,568.8294,197.3115,26.8166,55.7399,0.00000003 453,519.2762,193.9246,25.8728,58.4549,0.00000000 453,471.2620,170.9179,26.4035,51.8795,0.00000000 453,636.2480,203.1047,3.8987,62.3361,0.00000000 453,635.7614,494.4073,4.3853,17.7394,0.00000000 453,626.5031,459.2607,13.6436,52.8860,0.00000000 454,324.7856,180.7469,22.8584,51.9357,0.01316492 454,263.4689,199.5805,22.8692,53.2874,0.00006718 454,466.8923,181.2636,22.7857,50.3820,0.00000127 454,534.1443,188.1099,23.8378,57.3661,0.00000000 454,634.2896,188.4585,5.8571,78.7910,0.00000000 454,603.6149,392.6442,36.5318,119.5025,0.00000000 454,635.5809,493.5177,4.5658,18.6290,0.00000000 454,625.9664,457.7736,14.1803,54.3731,0.00000000 455,306.1570,178.8667,28.1973,60.3003,0.00192907 455,236.0579,199.5676,25.7444,55.3228,0.00069732 455,493.6842,193.8882,26.1487,59.4989,0.00000132 455,450.8345,173.4983,28.3250,52.0178,0.00000008 455,527.6168,200.2159,23.9666,54.7506,0.00000004 455,512.5080,196.6186,26.2627,55.1701,0.00000000 455,573.2186,236.6127,35.9221,73.0767,0.00000000 455,630.4861,191.0738,9.6606,78.7441,0.00000000 455,626.6843,459.3328,13.4624,52.8139,0.00000000 455,635.3433,487.6057,4.8034,24.5410,0.00000000 456,229.7373,165.9532,31.8402,71.9930,0.04464940 456,481.3687,200.7484,21.8999,50.8749,0.00001530 456,460.6640,199.9391,23.1937,55.8294,0.00000010 456,138.3209,183.1801,40.5680,82.1089,0.00000009 456,397.7248,180.3151,23.5193,49.7857,0.00000007 456,282.8000,195.7163,22.6197,53.8509,0.00000001 456,9.6096,181.3372,21.8042,53.7601,0.00000000 456,411.7349,185.0384,22.3206,46.4015,0.00000000 456,629.5735,199.2512,10.5732,88.4132,0.00000000 456,634.9579,487.5635,5.1888,24.5832,0.00000000 457,112.5505,150.1902,40.9378,95.7126,0.00949086 457,181.4174,197.3655,23.6414,54.2042,0.00000089 457,390.3670,193.4431,23.9347,58.3545,0.00000026 457,540.9356,173.2402,53.5288,141.0541,0.00000007 457,399.1861,185.4223,34.1585,75.2206,0.00000002 457,372.4522,194.8783,22.7501,53.3952,0.00000000 457,629.5613,482.7298,10.5854,29.4169,0.00000000 458,246.4459,211.4126,46.6042,87.1269,0.95774561 458,39.4062,202.2307,36.5144,68.1087,0.00000203 458,233.3646,183.1575,22.7949,48.6228,0.00000002 458,338.0950,196.3549,35.1927,84.5396,0.00000000 458,285.3151,195.8698,22.9465,50.4821,0.00000000 458,481.1814,192.5452,42.0995,110.6078,0.00000000 458,448.1870,334.8827,86.2017,177.2640,0.00000000 458,466.6938,162.9610,81.7828,232.0028,0.00000000 458,634.6942,487.3329,5.4525,24.8138,0.00000000 459,199.9968,187.3231,22.4013,47.5143,0.00005397 459,465.0428,200.6885,26.3299,57.4234,0.00000002 459,162.6176,195.2310,23.3603,49.4216,0.00000000 459,145.1370,187.6260,29.6511,57.4986,0.00000000 459,230.2761,177.4934,22.2799,50.0729,0.00000000 459,451.2819,297.2891,84.1354,214.8576,0.00000000 459,631.4652,217.2353,8.6815,101.6909,0.00000000 459,634.8729,487.5161,5.2738,24.6306,0.00000000 459,626.5750,459.3881,13.5717,52.7586,0.00000000 460,37.8879,207.8663,29.2255,63.4887,0.00000001 460,365.6634,214.4660,23.9409,58.9860,0.00000000 460,62.3384,203.0038,26.8001,63.2525,0.00000000 460,162.8167,199.3647,20.4780,46.7146,0.00000000 460,519.1217,216.9289,30.8402,73.3449,0.00000000 460,533.6188,201.1792,40.0440,83.2107,0.00000000 460,628.0215,1.0000,12.1252,50.0831,0.00000000 460,601.1420,395.4438,39.0047,116.7029,0.00000000 460,626.7079,458.0269,13.4388,54.1198,0.00000000 460,635.7737,493.0190,4.3730,19.1277,0.00000000 461,397.3343,221.5036,23.5928,47.4406,0.00583728 461,125.6949,217.8520,23.5883,49.3612,0.00000000 461,86.3177,218.6622,23.6996,51.1062,0.00000000 461,15.1034,201.7218,25.3152,58.1415,0.00000000 461,582.2020,59.3059,25.3905,60.3706,0.00000000 461,355.6897,220.0947,23.5034,53.3778,0.00000000 461,340.1097,219.7224,23.4403,53.7386,0.00000000 461,166.2329,208.9952,23.5768,48.0776,0.00000000 461,595.2581,156.1362,44.8886,271.0303,0.00000000 461,581.9117,239.0971,39.5460,94.0551,0.00000000 461,346.4977,284.1553,90.3774,227.9914,0.00000000 461,629.2542,481.8681,10.8925,30.2786,0.00000000 462,412.2125,210.1818,24.3394,51.1178,0.00000047 462,65.2076,198.2029,21.5752,52.1836,0.00000002 462,320.7087,206.1086,23.9442,61.4978,0.00000000 462,425.1202,214.8582,23.6887,50.9091,0.00000000 462,348.2103,207.4308,25.9540,61.1284,0.00000000 462,583.2854,184.6233,23.3954,59.2077,0.00000000 462,76.8270,204.2037,23.8676,57.2147,0.00000000 462,602.6461,391.7433,37.5006,120.4034,0.00000000 462,436.8366,264.3110,94.9698,247.8357,0.00000000 462,390.8893,308.4630,85.7258,203.6837,0.00000000 462,629.3304,480.7509,10.8163,31.3958,0.00000000 462,635.7380,492.6260,4.4087,19.5207,0.00000000 463,299.3460,216.6612,24.7515,48.8295,0.95266306 463,427.9860,219.3698,22.4031,52.9208,0.29671344 463,26.2717,209.4731,22.2470,54.2752,0.00000167 463,127.2401,213.0604,24.8420,46.4768,0.00000001 463,71.9814,210.8682,23.9574,52.9075,0.00000001 463,58.5350,203.8555,22.5366,52.9602,0.00000000 463,528.3735,214.0475,31.7680,70.3338,0.00000000 463,382.8398,330.6792,92.4982,181.4675,0.00000000 463,629.8877,483.2055,10.2590,28.9412,0.00000000 464,283.3449,219.2747,23.6280,44.8615,0.99331850 464,470.2509,224.9755,32.1763,69.3801,0.00168480 464,118.5278,218.2859,24.1788,48.5729,0.00001180 464,391.7279,216.0273,22.9900,53.5740,0.00000014 464,360.5324,210.4373,22.6193,46.8410,0.00000000 464,148.6315,205.4862,21.4440,46.7262,0.00000000 464,52.4488,213.3170,33.5013,68.4618,0.00000000 464,132.0562,207.4391,23.2325,47.1502,0.00000000 464,635.6591,487.9506,4.4876,24.1961,0.00000000 465,268.2046,218.0893,25.6787,48.7194,0.99999964 465,107.2307,211.5457,23.0986,58.9465,0.00718721 465,399.0548,217.5154,22.9176,51.0502,0.00000011 465,138.3330,203.3018,25.7717,50.5083,0.00000000 465,374.5890,214.5815,23.3666,58.8012,0.00000000 465,602.0428,266.8535,24.7104,53.7153,0.00000000 465,94.6074,185.1151,47.0485,100.3956,0.00000000 465,413.3373,334.0595,88.1379,178.0872,0.00000000 465,629.3281,481.8680,10.8186,30.2787,0.00000000 466,244.5375,220.8680,28.1669,50.3269,0.99999708 466,361.5645,226.2050,25.0854,49.7196,0.04402299 466,79.7076,219.1885,24.3098,56.0450,0.00002342 466,430.5383,223.3542,24.9989,60.6105,0.00000021 466,519.5625,228.6780,31.0768,71.9292,0.00000005 466,121.1046,215.4809,24.5034,49.7483,0.00000000 466,504.2347,232.9463,31.5121,52.7025,0.00000000 466,447.0447,229.4187,28.3977,60.9301,0.00000000 466,414.4839,208.0277,48.3301,118.5155,0.00000000 467,318.6294,217.2081,29.1467,53.1397,0.99999881 467,199.2125,215.9929,24.3017,54.8164,0.99999589 467,436.1103,216.3367,22.8321,50.2389,0.99833238 467,134.4122,213.6740,27.5698,49.2178,0.21930042 467,15.3801,213.9404,33.4071,73.9233,0.00001391 467,86.9815,208.2862,24.7940,58.7044,0.00000018 467,468.9658,218.3352,29.5273,76.5106,0.00000007 467,112.1430,210.8727,31.0025,51.7267,0.00000001 468,272.2234,215.4538,30.7527,59.0244,1.00000000 468,123.5977,218.8454,28.1191,65.6765,0.99999875 468,107.5917,209.7205,24.3292,53.9174,0.99973655 468,446.0425,216.6217,23.0992,54.2471,0.96948391 468,551.7367,205.7579,34.9232,76.9119,0.04293529 468,83.2597,214.1493,23.7256,53.0207,0.00001517 468,545.5713,185.6594,56.6794,166.0367,0.00000000 468,67.9385,214.0328,26.4792,57.3400,0.00000000 469,462.4433,218.3771,25.2470,53.4628,1.00000000 469,206.4819,215.7292,33.9608,64.7228,1.00000000 469,66.8966,206.1084,30.2538,59.5979,0.99999475 469,35.5393,214.6131,23.6593,60.3941,0.99858135 469,3.7713,216.1427,34.0428,73.8173,0.98122960 469,426.1426,205.1294,24.5347,48.8744,0.73139930 469,45.6257,205.0889,31.2835,56.7321,0.01172539 469,523.3522,229.1752,31.2788,68.6912,0.00000025 470,486.0990,218.5972,25.7521,58.3481,1.00000000 470,88.3225,213.1590,43.4394,90.8451,0.99999863 470,437.5691,208.0998,25.1190,53.8871,0.99999750 470,416.9475,208.5283,20.5618,49.4253,0.99999660 470,379.9785,208.3786,21.8121,48.7329,0.98932004 470,401.4845,206.7644,22.0643,47.7667,0.00007137 470,472.2361,178.4262,51.5851,106.0825,0.00000000 470,445.7313,227.4782,85.5797,248.4382,0.00000000 471,533.2363,231.0948,28.6986,70.3163,1.00000000 471,433.2548,216.8400,21.5523,51.5617,1.00000000 471,463.3102,219.1424,24.8408,53.6150,1.00000000 471,383.2823,216.0971,22.9179,52.7950,0.99999994 471,409.9484,212.6945,21.0456,51.3248,0.99634546 471,518.2537,214.2186,24.9866,56.8139,0.00020933 472,460.9184,217.7436,23.2693,55.7339,1.00000000 472,430.8893,218.0453,23.4688,56.2120,1.00000000 472,395.5836,216.0414,27.5074,62.8302,1.00000000 472,514.3047,216.3855,29.8065,62.6528,1.00000000 472,598.5800,214.4326,29.9114,73.4016,0.99999994 473,501.4838,216.8533,28.4517,73.1360,1.00000000 473,427.1842,216.3130,38.2403,81.3565,1.00000000 473,468.1439,217.0849,35.0627,82.1799,0.99999994 473,605.7211,216.7102,26.4701,61.5857,0.04744575 473,12.2558,234.2025,33.3054,59.8345,0.00001918 474,511.3006,206.4669,49.0345,122.8883,1.00000000 474,568.5402,217.0518,43.4275,106.2182,0.99999881 474,592.1064,208.1166,47.0743,121.8442,0.72783095 474,392.9562,206.7599,23.7543,49.8979,0.00000000 474,625.3828,227.9669,14.7639,105.6517,0.00000000 475,546.4013,141.8538,24.9959,59.8319,0.00000025 475,397.7623,202.1534,27.7833,57.6595,0.00000000 475,603.9065,392.4930,36.2402,119.6537,0.00000000 475,626.0894,456.4049,14.0573,55.7418,0.00000000 475,635.5225,493.2907,4.6242,18.8560,0.00000000 476,607.5950,151.1412,24.5720,59.9121,0.00687934 476,428.1627,215.3015,21.2545,50.4353,0.00475858 476,373.1423,195.7130,24.9791,53.4057,0.00000006 476,599.6309,42.3983,26.0280,64.8966,0.00000003 476,414.7128,212.9315,23.3331,48.3778,0.00000002 476,398.2158,205.8323,25.6248,54.3377,0.00000000 476,635.3120,149.4511,4.8347,61.6678,0.00000000 476,625.9617,456.1477,14.1850,55.9990,0.00000000 476,634.5419,486.6131,5.6048,25.5336,0.00000000 477,426.6344,216.0394,22.9147,49.3736,0.03072882 477,474.7567,213.8053,30.6701,63.4793,0.00015739 477,630.8185,309.1194,9.3282,79.4784,0.00000000 477,631.2607,207.4913,8.8860,80.4339,0.00000000 477,628.2138,1.0000,11.9329,49.2780,0.00000000 477,633.1286,60.5167,7.0181,79.8141,0.00000000 477,1.0000,383.2478,58.0035,128.8989,0.00000000 477,635.7504,494.4184,4.3963,17.7283,0.00000000 477,628.6318,461.2955,11.5149,50.8512,0.00000000 478,329.3286,211.7418,21.9435,54.4204,0.00000000 478,476.6759,217.4731,40.3871,86.5462,0.00000000 478,389.9974,208.9328,27.8143,51.9351,0.00000000 478,72.1877,226.1781,24.1494,54.5863,0.00000000 478,602.2969,112.6689,37.8498,270.5321,0.00000000 478,629.5737,220.7361,10.5730,92.2722,0.00000000 478,396.2330,319.7765,91.7491,192.3702,0.00000000 478,635.9517,493.4094,4.1950,18.7373,0.00000000 478,628.1773,461.4628,11.9694,50.6839,0.00000000 479,558.8304,197.8446,64.6808,159.7712,0.00007765 479,470.0681,231.0047,21.3846,49.9824,0.00000188 479,346.6349,214.4285,22.5755,52.9945,0.00000038 479,484.2233,231.4250,22.2434,49.7880,0.00000000 479,310.3644,236.9863,23.6232,56.5262,0.00000000 479,434.3669,344.2280,94.5141,167.9187,0.00000000 479,633.2443,257.1419,6.9024,77.6304,0.00000000 479,629.7145,480.1532,10.4322,31.9935,0.00000000 480,445.5472,229.3174,22.0746,49.0532,0.00005100 480,59.3857,223.8484,21.7974,53.5323,0.00001206 480,13.1302,214.8147,21.3002,54.8371,0.00000028 480,537.4561,230.6654,26.3765,62.7653,0.00000000 480,608.0981,120.9306,25.3819,59.0302,0.00000000 480,625.8352,114.3858,14.3115,123.1375,0.00000000 480,635.1557,151.0433,4.9910,57.4458,0.00000000 480,637.1781,109.3644,2.9686,61.5250,0.00000000 480,628.3370,459.8513,11.8097,52.2954,0.00000000 480,635.9732,488.5756,4.1735,23.5711,0.00000000 481,422.7345,224.5142,22.9535,49.5917,0.24449569 481,488.9867,218.1171,33.6318,83.3232,0.00000301 481,385.8821,227.8483,23.6383,53.0468,0.00000040 481,344.2881,214.1166,24.8313,56.9857,0.00000000 481,629.5522,480.5082,10.5945,31.6385,0.00000000 482,471.5792,218.6969,24.3508,67.9413,0.02677813 482,399.0273,230.9864,23.2093,51.8174,0.00000420 482,506.9111,209.9957,27.4705,61.4338,0.00000001 482,392.1839,219.7650,42.6608,108.3027,0.00000000 482,627.9455,1.0000,12.2012,51.3619,0.00000000 482,371.2649,207.9883,81.5705,231.5386,0.00000000 482,396.5611,332.8634,92.6816,179.2833,0.00000000 482,633.5833,184.6907,6.5634,77.2532,0.00000000 482,441.6506,372.6857,95.5012,139.4610,0.00000000 482,628.3982,461.4601,11.7485,50.6866,0.00000000 482,635.7019,488.5500,4.4448,23.5967,0.00000000 483,425.8900,229.4392,30.0739,66.5314,0.02734195 483,444.9887,246.5848,21.8812,55.5883,0.00001397 483,576.3715,214.0515,54.8137,134.0280,0.00000140 483,540.1926,205.3659,56.9781,153.5419,0.00000000 483,401.3580,212.1918,56.7676,143.2792,0.00000000 483,463.9857,262.0352,91.4638,250.1115,0.00000000 483,630.2978,262.1906,9.8489,80.6017,0.00000000 483,634.9021,487.2358,5.2446,24.9109,0.00000000 484,498.3787,243.9371,30.6957,81.2005,0.00245788 484,119.3938,229.9435,21.7487,50.6638,0.00000123 484,495.1607,204.6861,27.3096,61.4860,0.00000121 484,515.9520,246.0386,26.8222,60.7717,0.00000000 484,594.3813,173.0415,44.1410,103.8756,0.00000000 484,478.6953,248.4161,31.5044,73.3605,0.00000000 484,466.7468,157.0693,86.3681,226.7713,0.00000000 484,569.7732,106.0513,70.3735,237.2769,0.00000000 484,628.6140,178.2078,11.5327,106.2811,0.00000000 484,629.4340,479.6336,10.7127,32.5131,0.00000000 485,480.9387,245.9542,23.3664,57.9868,0.00851670 485,127.5826,233.5076,22.9511,60.9667,0.00000128 485,83.1200,240.8621,25.1061,51.3081,0.00000000 485,565.0350,260.9629,34.3167,68.3508,0.00000000 485,469.0079,253.4974,22.7235,57.1263,0.00000000 485,412.2947,241.4070,34.6718,74.5428,0.00000000 485,395.8166,242.4799,30.5043,64.7194,0.00000000 485,392.3416,227.8904,97.4550,259.4786,0.00000000 485,635.3604,488.0461,4.7863,24.1006,0.00000000 486,143.6562,227.4431,22.3978,46.0846,0.84748709 486,49.2762,246.4796,22.9553,52.0195,0.00000017 486,604.8185,232.6765,24.1987,54.8754,0.00000000 486,154.6331,216.1933,19.3242,48.4890,0.00000000 486,166.8722,215.4148,22.5174,49.0615,0.00000000 486,410.7390,239.7405,23.9023,57.5961,0.00000000 486,597.4670,173.4674,42.6797,260.8231,0.00000000 486,637.9791,226.2621,2.1676,65.2569,0.00000000 486,628.4810,172.7291,11.6657,87.0290,0.00000000 486,629.9477,291.5594,10.1990,85.7876,0.00000000 486,629.1764,222.2861,10.9703,101.5237,0.00000000 486,635.5486,488.4261,4.5981,23.7206,0.00000000 486,628.4454,461.7789,11.7013,50.3678,0.00000000 487,158.9170,222.0896,21.6310,48.1059,0.00000000 487,479.5041,212.7682,29.4308,56.3132,0.00000000 487,28.0658,206.3704,26.8973,56.8104,0.00000000 487,421.0107,213.9164,22.2106,48.2709,0.00000000 487,357.2707,218.5475,26.5120,52.6406,0.00000000 487,578.2034,163.5326,32.4548,80.1463,0.00000000 487,584.1131,211.1554,23.3437,54.8040,0.00000000 487,635.9346,150.4874,4.2121,64.6585,0.00000000 487,635.4302,185.0817,4.7165,63.3557,0.00000000 487,627.0474,460.9657,13.0993,51.1810,0.00000000 487,636.1760,489.7082,3.9707,22.4385,0.00000000 488,166.1476,215.0092,22.2116,47.6163,0.59851229 488,381.9625,214.4624,27.1467,51.9748,0.00000001 488,175.6292,206.1811,30.0765,53.7403,0.00000000 488,348.0939,231.8578,31.1934,54.8692,0.00000000 488,390.6195,235.7519,25.5151,53.7364,0.00000000 488,634.9935,150.2747,5.1532,74.3190,0.00000000 488,631.2725,196.6130,8.8742,79.9958,0.00000000 488,636.5200,491.0832,3.6267,21.0635,0.00000000 489,201.4072,213.4048,26.0861,46.1275,0.00004614 489,556.3159,237.0876,28.3914,55.0558,0.00000298 489,504.7958,216.6725,24.4515,52.8363,0.00000034 489,468.9174,212.5474,45.5732,116.5454,0.00000000 489,29.4494,225.5765,22.0915,50.9899,0.00000000 489,488.0955,225.9159,24.0270,56.3949,0.00000000 489,454.5618,174.0063,86.6405,241.9233,0.00000000 489,637.9733,236.7013,2.1734,64.7200,0.00000000 489,632.1365,235.1622,8.0102,82.3162,0.00000000 489,629.9969,482.1293,10.1498,30.0174,0.00000000 490,238.7816,217.9520,23.0793,51.2227,0.99999964 490,251.4338,213.6363,25.0034,55.2475,0.00000000 490,220.8492,214.2454,22.8840,52.2409,0.00000000 490,635.1124,487.3010,5.0343,24.8457,0.00000000 490,628.2917,459.9386,11.8550,52.2081,0.00000000 491,254.7847,216.6857,22.6090,50.3941,1.00000000 491,234.3510,207.3587,21.2708,53.9409,0.00000000 491,267.1867,209.3830,24.5417,51.0473,0.00000000 491,283.1019,208.4200,23.2577,50.3787,0.00000000 491,401.2806,229.4152,81.0375,262.7060,0.00000000 491,601.9138,392.8833,38.2329,119.2634,0.00000000 491,626.9615,457.4287,13.1852,54.7180,0.00000000 491,635.2921,487.1492,4.8546,24.9975,0.00000000 492,256.0951,219.7769,22.8776,49.3397,1.00000000 492,241.9181,223.7969,24.0591,51.1582,0.00000000 492,534.4378,180.1540,43.5246,122.6786,0.00000000 492,637.2072,208.7674,2.9395,63.4763,0.00000000 492,505.7422,132.4635,83.4316,228.1174,0.00000000 492,631.2798,183.7443,8.8669,81.0557,0.00000000 492,636.2545,493.5477,3.8922,18.5990,0.00000000 492,627.6995,459.2224,12.4472,52.9243,0.00000000 493,290.9152,225.3354,23.8989,53.3383,1.00000000 493,330.5798,210.9705,21.8923,55.0234,0.00000000 493,267.1551,223.3594,23.2798,54.2841,0.00000000 493,308.3606,216.7375,24.4354,58.0871,0.00000000 493,593.3846,108.1213,46.7621,260.4753,0.00000000 493,637.3082,152.3672,2.8385,65.2353,0.00000000 493,630.1145,155.7913,10.0322,84.8777,0.00000000 493,636.0578,494.5096,4.0889,17.6371,0.00000000 493,629.5707,482.7420,10.5760,29.4047,0.00000000 494,338.2061,220.9958,27.0880,63.2438,1.00000000 494,266.9131,215.7070,26.9234,54.7628,0.00000000 494,352.9637,215.2985,26.8499,62.2941,0.00000000 494,11.0204,221.7553,30.7118,64.2755,0.00000000 494,314.7091,218.9483,30.0510,55.8767,0.00000000 494,636.1843,494.4163,3.9624,17.7304,0.00000000 494,629.5850,482.3708,10.5617,29.7759,0.00000000 495,397.0373,210.0042,35.5372,82.2660,1.00000000 495,331.4850,213.2613,23.5379,52.8526,0.80371648 495,375.4413,217.7030,36.0752,76.4983,0.00000000 495,358.2652,184.2198,84.1526,211.3777,0.00000000 495,630.3537,146.9327,9.7930,83.4913,0.00000000 495,600.8074,115.1913,39.3393,268.1530,0.00000000 495,636.2598,493.7696,3.8869,18.3771,0.00000000 495,627.3624,459.4041,12.7843,52.7426,0.00000000 496,470.9321,213.3954,37.4267,82.0926,1.00000000 496,408.5475,212.1309,33.6066,76.7068,0.00000013 496,334.7687,214.1261,29.5052,58.8908,0.00000000 496,492.3650,213.1600,38.8189,82.5192,0.00000000 496,17.7994,204.0144,24.7166,56.7745,0.00000000 496,439.5554,156.7797,85.6474,209.2117,0.00000000 496,629.7849,482.0969,10.3618,30.0498,0.00000000 497,553.1696,196.6992,59.4964,161.8653,0.99998796 497,403.2780,206.0473,34.4501,78.3895,0.00002099 497,77.9290,190.3861,26.5634,47.1504,0.00000000 497,532.5369,216.7239,36.8952,75.9915,0.00000000 497,560.9554,189.6477,40.2810,69.6000,0.00000000 497,358.7515,305.9639,88.0074,206.1828,0.00000000 497,629.4251,481.2479,10.7216,30.8988,0.00000000 498,500.2014,212.6480,36.4373,74.4843,0.00000044 498,31.5264,246.9643,37.4797,81.1768,0.00000000 498,521.8983,206.3226,31.7857,79.2124,0.00000000 498,489.4391,162.2721,82.2125,216.5506,0.00000000 498,30.8887,214.6775,87.3083,287.7453,0.00000000 498,355.8705,311.4031,90.3597,200.7436,0.00000000 498,629.0518,482.9211,11.0949,29.2256,0.00000000 499,173.8854,201.5455,21.0834,49.4892,0.00889868 499,490.2582,205.2359,27.5296,55.3218,0.00000002 499,587.2481,186.4813,26.7513,52.4452,0.00000000 499,469.1045,340.0997,92.5339,172.0470,0.00000000 499,1.0000,383.6319,59.6236,128.5148,0.00000000 499,626.3117,458.5777,13.8350,53.5690,0.00000000 499,635.1262,488.7117,5.0205,23.4350,0.00000000 500,129.0591,204.0039,21.2780,48.7234,0.00002030 500,602.8673,188.9022,25.6943,55.8263,0.00000000 500,69.2830,204.7770,25.2571,55.3768,0.00000000 500,635.1083,184.9463,5.0384,61.5293,0.00000000 500,636.1667,493.9617,3.9800,18.1850,0.00000000 500,629.3610,481.4869,10.7857,30.6598,0.00000000 501,623.4753,57.7646,16.6714,131.3201,0.00000000 501,635.1368,90.2065,5.0099,73.0480,0.00000000 501,636.4323,494.5467,3.7144,17.6000,0.00000000 501,627.5292,459.8925,12.6175,52.2542,0.00000000 501,601.3741,1.0000,38.7726,264.4046,0.00000000 502,574.2737,196.4422,24.2706,56.4114,0.31203964 502,557.8948,195.7325,26.7910,59.4897,0.00075919 502,540.3767,191.9959,26.9016,62.7279,0.00000000 502,560.2853,166.6585,49.3505,107.3609,0.00000000 502,515.4596,235.3377,23.7722,52.1420,0.00000000 502,637.5757,180.8674,2.5710,62.6798,0.00000000 502,602.4963,395.8764,37.6504,116.2703,0.00000000 502,630.4821,175.7810,9.6646,77.3588,0.00000000 502,633.7764,130.1261,6.3703,77.9789,0.00000000 502,533.2540,97.9821,97.6127,230.3666,0.00000000 502,417.6775,53.7167,87.2847,296.4551,0.00000000 502,628.0523,456.5931,12.0944,55.5536,0.00000000 502,635.3467,488.0408,4.8000,24.1059,0.00000000 503,401.1139,195.7014,30.7551,73.3584,0.99525511 503,380.8362,195.5218,32.8384,72.2503,0.00002395 503,359.3365,203.3175,34.5388,69.3625,0.00000003 503,330.8306,250.6321,26.1880,49.6197,0.00000000 503,444.1613,98.3879,66.1687,168.4507,0.00000000 503,631.8948,487.7871,8.2519,24.3596,0.00000000 504,168.6767,169.7069,35.6895,94.0026,0.99858183 504,147.5586,189.1120,32.9712,75.1753,0.00030875 504,99.3059,162.8291,43.1735,105.4281,0.00000000 504,633.1579,208.7532,6.9888,77.1326,0.00000000 504,231.7740,37.3111,84.1576,255.7953,0.00000000 504,135.8411,116.2222,91.4638,224.1970,0.00000000 504,635.8989,494.0777,4.2478,18.0690,0.00000000 504,629.5754,483.0540,10.5713,29.0927,0.00000000 505,57.1877,191.6481,22.0745,50.5249,0.00000348 505,76.9138,192.2310,23.1168,52.9013,0.00000017 505,590.6756,224.6019,23.5170,53.4753,0.00000000 505,618.7445,238.3017,21.4022,55.9428,0.00000000 505,633.4728,251.0943,6.6739,63.3262,0.00000000 505,635.5694,213.3156,4.5773,61.7326,0.00000000 505,629.8746,482.1116,10.2721,30.0351,0.00000000 506,460.2553,221.8221,23.4887,57.1917,0.00000062 506,496.9562,232.3511,22.9939,53.0216,0.00000000 506,524.4440,222.5060,35.2457,65.1079,0.00000000 506,629.9282,136.7280,10.2185,81.4102,0.00000000 506,637.5269,133.6995,2.6198,64.8483,0.00000000 506,636.0731,494.5102,4.0736,17.6365,0.00000000 506,629.5032,481.6163,10.6435,30.5304,0.00000000 507,491.9543,252.5590,25.1697,55.7928,0.00000000 507,425.8306,219.5974,36.3531,70.3640,0.00000000 507,580.4444,240.1914,28.0193,54.6725,0.00000000 507,594.3142,139.2286,45.8325,262.1055,0.00000000 507,631.3079,175.1493,8.8388,98.8701,0.00000000 507,631.0982,485.5296,9.0485,26.6171,0.00000000 508,382.9739,226.6989,28.1617,68.4846,0.00000000 508,635.8798,494.3136,4.2669,17.8331,0.00000000 508,629.5364,483.1089,10.6103,29.0378,0.00000000 508,602.7689,392.5376,37.3778,119.6091,0.00000000 509,604.3027,258.1922,34.7127,80.3398,0.00000000 509,498.4149,230.3454,32.4805,67.3676,0.00000000 509,565.5264,210.1202,64.5774,142.0004,0.00000000 509,512.1115,216.5801,30.2566,59.4127,0.00000000 509,629.6564,243.4284,10.4903,84.6747,0.00000000 509,635.1262,487.3976,5.0205,24.7491,0.00000000 509,628.3326,459.1563,11.8141,52.9904,0.00000000 510,633.8364,1.0000,6.3103,38.5785,0.00000000 510,636.1696,494.3566,3.9771,17.7901,0.00000000 510,629.6636,482.9698,10.4831,29.1769,0.00000000 511,308.8850,188.6802,33.5793,69.6734,0.00000000 511,338.9117,185.6066,35.7077,73.9706,0.00000000 511,159.6323,189.7781,40.3255,81.8938,0.00000000 511,627.4673,1.0000,12.6794,48.9458,0.00000000 511,137.1916,116.0558,88.0913,236.7831,0.00000000 511,284.7230,1.0000,89.0990,256.7686,0.00000000 511,635.8160,488.9493,4.3307,23.1974,0.00000000 512,426.6822,205.1525,27.8140,58.0243,0.11349150 512,595.2199,207.8109,38.4337,87.8378,0.00000000 512,277.4973,219.2223,24.6052,51.3859,0.00000000 512,630.5897,193.8288,9.5570,81.2104,0.00000000 512,594.3551,164.6865,45.7916,257.4892,0.00000000 512,635.4711,488.2496,4.6756,23.8971,0.00000000 512,628.3027,460.4113,11.8440,51.7354,0.00000000 513,159.1810,193.5940,37.5027,74.1240,0.00113415 513,272.1104,228.7231,38.4367,70.1242,0.00000000 513,1.0000,259.1568,55.0966,252.9899,0.00000000 513,131.1861,469.1329,41.6126,43.0138,0.00000000 513,157.0113,466.9807,42.3395,45.1660,0.00000000 513,128.4820,384.7316,89.0648,127.4151,0.00000000 513,628.0087,459.9313,12.1380,52.2154,0.00000000 513,635.4499,487.7394,4.6968,24.4073,0.00000000 514,431.7226,182.0523,47.3484,100.4231,0.98780274 514,261.0023,229.2124,76.8904,189.1677,0.00001189 514,570.4461,223.7565,25.9155,63.5796,0.00000000 514,410.6212,152.8406,90.1409,196.2158,0.00000000 514,106.9778,220.7500,88.0472,283.6164,0.00000000 514,635.2867,487.4073,4.8600,24.7394,0.00000000 515,454.2885,196.8055,45.6953,98.2387,0.99997705 515,288.8626,242.1147,71.0260,185.7526,0.00000030 515,140.3290,244.5178,66.9845,209.0460,0.00000000 515,587.2048,219.9757,28.5232,63.1111,0.00000000 515,1.0000,135.2961,56.9111,268.1354,0.00000000 515,571.0096,238.8465,32.6218,70.4099,0.00000000 515,253.1951,75.2550,91.3159,256.8975,0.00000000 515,96.8812,228.3443,81.4764,273.0693,0.00000000 515,629.4426,479.3591,10.7041,32.7876,0.00000000 516,445.4154,204.5078,46.4275,91.8381,0.99423110 516,284.5961,231.8345,72.6581,185.0375,0.00004483 516,1.0000,154.2169,69.8719,262.6639,0.00000000 516,460.0317,176.2061,36.3715,75.7664,0.00000000 516,147.3403,264.6412,55.9843,168.3190,0.00000000 516,313.3066,319.0581,41.0202,95.0223,0.00000000 516,563.7518,239.5113,27.9208,60.1679,0.00000000 516,439.0659,137.8791,86.0783,198.7739,0.00000000 516,566.3152,260.3477,60.3932,136.5527,0.00000000 516,101.1981,211.5901,82.7893,280.5448,0.00000000 516,627.4270,456.4955,12.7197,55.6512,0.00000000 516,635.5072,487.3741,4.6395,24.7726,0.00000000 517,55.1674,152.2169,74.2667,204.2501,0.99999124 517,485.3059,203.5695,44.8293,86.8156,0.99903572 517,335.3302,231.0769,66.1825,160.6420,0.00036494 517,86.8594,250.6438,48.3973,130.8961,0.00000000 517,62.4169,265.2099,86.6077,245.7258,0.00000000 518,196.7978,168.5300,70.0337,181.8937,0.99999326 518,40.5256,254.7079,89.9806,217.1278,0.99975222 518,568.0548,206.4953,42.8811,85.0181,0.96166873 518,432.4652,242.2131,52.9902,131.3403,0.00000010 518,26.4803,349.3129,63.6028,138.6873,0.00000000 518,32.8282,254.7546,51.0131,121.3693,0.00000000 518,64.2111,219.2001,55.5130,129.5149,0.00000000 519,356.5238,232.5838,83.1774,194.5046,0.99999702 519,337.4938,147.7099,51.4973,153.3614,0.77789533 519,360.2831,346.8517,46.3885,109.9319,0.00000000 519,406.2730,350.0641,49.9241,104.0023,0.00000000 519,528.7413,225.6393,67.6268,137.6153,0.00000000 519,80.1142,136.2448,67.7695,164.6399,0.00000000 520,446.5929,171.2880,60.5342,168.8627,0.99999982 520,558.9668,267.9701,31.5538,65.4647,0.00000001 520,611.7434,374.2826,28.4033,75.2342,0.00000000 520,623.4658,255.5325,16.6809,131.4900,0.00000000 520,632.7242,384.9578,7.4225,66.2327,0.00000000 520,605.5737,225.3319,34.5730,259.8936,0.00000000 520,224.0348,161.7363,58.7645,132.2624,0.00000000 520,629.4714,481.2292,10.6753,30.9175,0.00000000 521,473.8408,176.8691,50.5930,145.2997,1.00000000 521,452.8662,190.8480,45.8747,111.5022,0.00000000 521,433.9688,192.9898,89.3389,233.6868,0.00000000 521,504.4173,187.4243,93.8472,263.3699,0.00000000 521,633.8420,1.0000,6.3047,44.4871,0.00000000 521,631.7253,487.3182,8.4214,24.8285,0.00000000 522,492.3258,176.5896,51.9332,148.4883,0.99999994 522,635.5605,487.8196,4.5862,24.3271,0.00000000 522,628.3226,461.7866,11.8241,50.3601,0.00000000 523,65.8436,177.3311,36.2200,65.0690,0.00000000 523,635.6033,313.5531,4.5434,66.5052,0.00000000 523,636.0587,494.2084,4.0880,17.9383,0.00000000 523,629.5912,481.7602,10.5555,30.3865,0.00000000 524,636.1330,494.0248,4.0137,18.1219,0.00000000 524,627.5012,459.9292,12.6455,52.2175,0.00000000 525,576.8383,253.6653,31.3996,59.4691,0.00000009 525,560.0855,251.2419,30.8917,57.6778,0.00000000 525,629.4905,480.6733,10.6562,31.4734,0.00000000 526,599.0222,258.0146,32.3483,60.5832,0.00000000 526,619.9904,249.9785,20.1563,71.6736,0.00000000 526,637.2151,252.0223,2.9316,63.7342,0.00000000 526,599.5549,207.8066,40.5918,266.9080,0.00000000 526,627.7611,457.6726,12.3856,54.4741,0.00000000 526,635.2661,486.7977,4.8806,25.3490,0.00000000 527,594.6307,142.0988,28.3295,62.7829,0.00000000 527,636.7910,129.4790,3.3557,62.8708,0.00000000 527,126.0285,340.2365,87.6581,171.9102,0.00000000 527,627.0044,457.2600,13.1423,54.8867,0.00000000 527,636.2174,492.8522,3.9293,19.2945,0.00000000 528,566.1530,250.1171,73.9937,262.0296,0.00000000 528,601.9766,398.7502,38.1701,113.3965,0.00000000 528,632.8761,1.0000,7.2706,36.9143,0.00000000 528,635.9574,493.1030,4.1893,19.0437,0.00000000 528,629.3677,480.6967,10.7790,31.4500,0.00000000 529,358.9530,138.4288,59.5494,140.8399,0.00000000 529,636.2427,493.1308,3.9040,19.0159,0.00000000 529,1.0000,383.8000,60.0770,128.3467,0.00000000 529,204.6051,338.0377,89.7041,174.1090,0.00000000 529,627.7776,462.2446,12.3691,49.9021,0.00000000 530,371.2458,147.4396,23.1498,57.2320,0.00000000 530,359.5949,135.1933,56.0094,138.3663,0.00000000 530,320.1940,103.4660,91.6106,264.9226,0.00000000 530,636.0922,488.7871,4.0545,23.3596,0.00000000 530,629.2431,460.0209,10.9036,52.1258,0.00000000 531,61.0798,215.3409,43.8936,97.2659,0.00000000 531,380.5695,179.2064,33.8603,80.0928,0.00000000 531,364.2157,134.8065,82.2175,229.1777,0.00000000 531,392.9462,156.5818,42.7500,117.7409,0.00000000 531,635.2164,487.9150,4.9303,24.2317,0.00000000 531,626.8836,459.0753,13.2631,53.0714,0.00000000 532,146.5636,240.4317,40.8134,71.5915,0.00000000 532,468.7039,146.4405,59.4013,141.2790,0.00000000 532,636.1048,494.0988,4.0419,18.0479,0.00000000 532,627.4649,461.1119,12.6818,51.0348,0.00000000 533,308.5248,249.2776,28.1998,58.2277,0.00000000 533,237.8288,260.5035,28.3197,56.1669,0.00000000 533,225.0847,192.3616,53.7342,107.9372,0.00000000 533,627.9030,1.0000,12.2437,50.5213,0.00000000 533,635.5916,487.9396,4.5551,24.2071,0.00000000 533,629.2380,461.8798,10.9087,50.2669,0.00000000 534,226.9045,191.2444,42.5286,79.9948,0.00000000 534,635.3528,487.5308,4.7939,24.6159,0.00000000 534,628.8821,460.1304,11.2646,52.0163,0.00000000 535,318.6721,213.2261,28.8660,62.1375,0.00000000 535,25.5678,228.0797,37.5360,68.2409,0.00000000 535,636.1135,493.9287,4.0332,18.2180,0.00000000 535,604.2145,390.4678,35.9322,121.6789,0.00000000 535,629.4197,480.4111,10.7270,31.7356,0.00000000 536,370.8357,231.6217,27.2165,54.0014,0.88682717 536,534.8892,232.3149,23.5161,59.6185,0.00000000 536,232.7047,213.1458,27.2442,64.0087,0.00000000 536,628.0298,459.0253,12.1169,53.1214,0.00000000 536,635.8630,487.6741,4.2837,24.4726,0.00000000 537,387.4626,225.5434,28.8161,65.1355,0.00093847 537,164.0621,227.1059,36.1491,63.6256,0.00000024 537,374.6355,223.6545,23.8106,56.3119,0.00000000 537,630.1156,162.1534,10.0311,79.2030,0.00000000 537,603.8868,396.6732,36.2599,115.4735,0.00000000 537,603.3006,191.7192,36.8461,269.0614,0.00000000 537,627.8340,228.8813,12.3127,125.5604,0.00000000 537,626.0614,455.0493,14.0853,57.0974,0.00000000 537,635.0839,486.7492,5.0628,25.3975,0.00000000 538,428.0044,244.7847,30.5596,67.9833,0.00042353 538,249.6975,225.3616,23.8226,51.7323,0.00000000 538,234.8529,228.4857,26.3250,57.8285,0.00000000 538,557.0961,441.2990,52.0039,70.8477,0.00000000 538,604.1963,394.8544,35.9504,117.2923,0.00000000 538,625.6199,457.2543,14.5268,54.8924,0.00000000 538,634.4771,486.9650,5.6696,25.1817,0.00000000 539,552.8786,201.0052,28.4260,72.5780,0.00000001 539,177.4534,190.6786,28.3354,51.8172,0.00000000 539,402.2401,183.4149,28.2705,59.2666,0.00000000 539,335.5559,187.1416,25.2982,53.3396,0.00000000 539,552.7875,187.2172,58.5392,153.8822,0.00000000 539,322.9143,194.1898,25.8405,61.1244,0.00000000 539,347.5049,232.5471,84.3070,260.9311,0.00000000 539,603.8257,392.4905,36.3210,119.6562,0.00000000 539,633.5485,170.4981,6.5982,75.6485,0.00000000 539,625.8317,456.0444,14.3150,56.1023,0.00000000 539,636.0406,493.3413,4.1061,18.8054,0.00000000 540,490.9567,217.8768,28.4806,64.2157,0.00000000 540,459.5129,225.2231,24.6824,55.9963,0.00000000 540,472.8709,228.1039,24.4859,55.4129,0.00000000 540,437.2331,219.6022,33.1873,73.1588,0.00000000 540,555.0278,198.0460,30.9908,60.9185,0.00000000 540,419.9797,204.5001,36.4420,75.0442,0.00000000 540,508.0791,247.6742,85.1628,259.4087,0.00000000 540,629.5807,479.3185,10.5660,32.8282,0.00000000 541,106.9467,181.9631,22.1807,49.8113,0.00000002 541,605.9346,214.1337,34.2121,79.2430,0.00000001 541,569.1322,227.0665,28.8914,67.6018,0.00000000 541,44.4629,189.3155,28.2487,58.3293,0.00000000 541,583.8496,215.1868,35.8780,69.0913,0.00000000 541,594.1353,164.2826,46.0114,262.5340,0.00000000 541,630.1638,216.8770,9.9829,87.8035,0.00000000 541,635.8973,203.0770,4.2494,63.0099,0.00000000 541,635.3165,486.7327,4.8302,25.4140,0.00000000 542,585.9145,226.3002,25.6298,49.4703,0.00000219 542,630.6365,213.3464,9.5102,77.5234,0.00000000 542,427.2213,267.9195,92.4441,244.2272,0.00000000 542,637.9763,219.4771,2.1704,61.8424,0.00000000 542,629.4328,479.8450,10.7139,32.3017,0.00000000 543,547.3116,234.6848,27.8841,54.0914,0.00000179 543,40.6386,161.1747,38.0881,70.3891,0.00000021 543,481.4645,247.3734,90.1437,264.7733,0.00000000 543,601.3784,395.2325,38.7683,116.9142,0.00000000 543,627.2037,458.1554,12.9430,53.9913,0.00000000 543,635.8247,493.0463,4.3220,19.1004,0.00000000 544,461.4318,235.7957,25.2608,49.5752,0.00000050 544,364.7073,220.3761,27.4433,55.5565,0.00000007 544,151.8480,199.7717,28.2985,56.2538,0.00000000 544,388.4581,290.8969,88.6792,221.2498,0.00000000 544,300.2073,297.6567,90.3478,214.4900,0.00000000 544,601.9845,397.7245,38.1622,114.4222,0.00000000 544,626.9503,457.1576,13.1964,54.9891,0.00000000 544,636.0192,492.9833,4.1275,19.1634,0.00000000 545,241.7344,213.9429,25.3745,60.6223,0.00290837 545,521.3844,221.7716,30.6488,66.6468,0.00114399 545,336.9053,223.3959,27.6700,49.2768,0.00000806 545,588.2889,232.9916,21.9144,51.6596,0.00000000 545,579.2940,241.2952,20.4804,55.4121,0.00000000 545,349.0914,236.1568,25.4175,55.5111,0.00000000 545,635.2682,487.2179,4.8785,24.9288,0.00000000 546,226.3796,221.5269,25.7894,52.6945,0.99971932 546,470.3007,217.3808,24.7027,58.2468,0.00000288 546,110.2737,219.4067,28.8512,58.9985,0.00000001 546,240.8270,213.9058,21.8866,51.4784,0.00000000 546,218.5859,182.4072,51.0362,104.6552,0.00000000 546,91.5803,183.3760,56.7476,115.0714,0.00000000 546,559.0306,183.9349,61.5188,143.5243,0.00000000 546,602.2585,394.9366,37.8882,117.2101,0.00000000 546,636.1060,492.9458,4.0407,19.2009,0.00000000 546,626.6980,457.6743,13.4487,54.4724,0.00000000 546,189.1870,140.3885,99.6032,228.6888,0.00000000 547,175.6524,230.0697,26.7315,53.4802,1.00000000 547,511.8037,224.3592,29.2238,59.5842,0.00153749 547,162.8069,223.2535,22.4403,54.5812,0.00000000 547,191.1423,220.6268,26.7621,54.5424,0.00000000 547,502.9204,240.2428,22.6505,59.6802,0.00000000 547,432.3169,231.7943,27.7157,60.9111,0.00000000 547,601.9089,387.2580,38.2378,124.8887,0.00000000 547,627.0427,457.3686,13.1040,54.7781,0.00000000 547,635.6002,488.5210,4.5465,23.6257,0.00000000 548,116.9489,225.3663,31.1799,69.1990,1.00000000 548,447.6986,232.7749,25.5192,60.2103,0.00000274 548,489.4338,216.4663,29.7638,62.1068,0.00000011 548,185.3401,210.9450,28.1032,51.4871,0.00000000 548,232.2378,212.5790,26.5732,48.7520,0.00000000 548,99.1372,219.3189,32.6170,71.0035,0.00000000 548,629.7443,482.5750,10.4024,29.5717,0.00000000 548,636.7650,490.0980,3.3817,22.0487,0.00000000 549,33.7150,219.4485,43.8302,100.9472,0.99997962 549,21.9111,230.6212,31.5085,77.0149,0.00000053 549,177.3133,212.7124,26.6341,46.6681,0.00000046 549,1.0000,182.6913,82.1189,189.4706,0.00000000 549,630.7120,193.8833,9.4347,73.8009,0.00000000 549,627.4603,457.7965,12.6864,54.3502,0.00000000 549,635.0836,486.9897,5.0631,25.1570,0.00000000 550,200.4814,218.6175,24.9968,50.9040,0.99995577 550,99.6274,212.6622,32.4805,70.1720,0.00029501 550,137.5602,204.3625,24.1259,51.5247,0.00000022 550,594.6751,223.2492,22.5643,50.4816,0.00000001 550,121.9388,219.6573,24.8992,55.1346,0.00000000 550,625.4224,457.2285,14.7243,54.9182,0.00000000 550,634.5358,487.4713,5.6109,24.6754,0.00000000 551,75.9179,217.1275,29.7152,53.6704,0.99888706 551,93.8548,218.4446,23.9551,52.3157,0.00000232 551,574.2711,219.2475,31.7948,51.4102,0.00000099 551,8.3368,211.5902,27.4207,52.2637,0.00000002 551,101.2635,201.5562,29.7989,56.6610,0.00000000 551,33.2265,206.4286,30.3400,55.4106,0.00000000 551,635.1467,486.7613,5.0000,25.3854,0.00000000 551,626.9072,458.3467,13.2395,53.8000,0.00000000 552,602.7770,393.9710,37.3697,118.1757,0.00000000 552,626.5563,455.5122,13.5904,56.6345,0.00000000 552,634.8892,486.3792,5.2575,25.7675,0.00000000 553,584.5746,247.3022,33.7583,66.9152,0.00002468 553,135.1358,213.7213,27.2655,50.2992,0.00000354 553,492.5433,250.8067,29.9128,53.9453,0.00000007 553,633.0895,229.3896,7.0572,72.0189,0.00000000 553,603.7593,398.1397,36.3874,114.0070,0.00000000 553,626.5082,457.5851,13.6385,54.5616,0.00000000 553,636.4163,493.1888,3.7304,18.9579,0.00000000 554,503.4012,231.0500,28.4787,68.5596,0.00000002 554,457.5633,237.4050,31.1216,69.4712,0.00000000 554,1.0000,380.4302,59.9001,131.7165,0.00000000 554,635.8116,488.2693,4.3351,23.8774,0.00000000 554,627.8635,461.3256,12.2832,50.8211,0.00000000 555,435.4093,235.1298,27.9951,53.9729,0.00000001 555,513.5495,229.9573,23.8205,61.5939,0.00000000 555,4.6008,198.0703,28.4825,53.2880,0.00000000 555,167.8270,210.8344,31.2033,75.0583,0.00000000 555,637.9059,216.2056,2.2408,65.3507,0.00000000 555,601.0059,174.8275,39.1408,265.0932,0.00000000 555,631.6113,203.3029,8.5354,78.1536,0.00000000 555,628.7906,108.2796,11.3561,81.1260,0.00000000 555,630.8177,244.6849,9.3290,101.6898,0.00000000 555,635.7328,487.9831,4.4139,24.1636,0.00000000 555,627.8879,460.6017,12.2588,51.5450,0.00000000 556,246.9205,197.0176,38.2345,63.1558,0.00000001 556,1.0000,209.8596,77.6002,257.4527,0.00000000 556,636.4777,204.8825,3.6690,62.6575,0.00000000 556,633.0179,223.4515,7.1288,74.8216,0.00000000 556,636.0107,494.3128,4.1360,17.8339,0.00000000 556,627.6034,460.5043,12.5433,51.6424,0.00000000 557,591.1009,206.0419,37.6614,57.2305,0.00000281 557,211.0872,212.4030,30.0274,49.7293,0.00000000 557,223.2855,194.6755,35.6365,58.0096,0.00000000 557,1.0000,379.8243,58.3494,132.3224,0.00000000 557,637.2242,184.2571,2.9225,62.4570,0.00000000 557,631.1392,201.3185,9.0075,83.5980,0.00000000 557,632.1223,486.8132,8.0244,25.3335,0.00000000 558,536.7315,202.6769,31.3722,57.8462,0.00000000 558,257.8936,199.3026,35.5633,68.8497,0.00000000 558,627.4027,458.0104,12.7440,54.1363,0.00000000 558,635.9373,489.2854,4.2094,22.8613,0.00000000 559,18.9201,200.5099,55.9555,152.0587,1.00000000 559,609.5591,193.7838,22.9626,52.9192,0.00008749 559,48.3192,287.1452,36.9889,73.6210,0.00000005 559,270.7578,116.1033,32.4174,74.0500,0.00000000 559,33.0255,277.3280,32.1613,76.3180,0.00000000 559,28.3311,227.1182,27.4854,73.1997,0.00000000 559,629.3372,479.5652,10.8095,32.5815,0.00000000 560,206.6418,73.6431,23.7245,64.3338,0.00000012 560,487.8935,219.9174,29.9894,62.5247,0.00000000 560,301.6606,112.7299,24.5524,60.9387,0.00000000 560,345.5162,218.2906,35.5180,77.5932,0.00000000 560,602.0789,393.5807,38.0678,118.5660,0.00000000 560,635.1606,488.2933,4.9861,23.8534,0.00000000 560,626.5286,459.2875,13.6181,52.8592,0.00000000 561,446.8134,151.7766,25.5406,57.6544,0.00000110 561,633.8465,205.3468,6.3002,77.4691,0.00000000 561,635.2205,488.5427,4.9262,23.6040,0.00000000 561,627.5366,459.8800,12.6101,52.2667,0.00000000 562,169.4815,195.7669,59.3754,152.7614,0.00000000 562,593.2738,280.4511,46.8729,181.0619,0.00000000 562,551.1422,226.2205,72.8493,197.6303,0.00000000 562,622.9577,308.4700,17.1890,134.0248,0.00000000 562,628.5053,377.0955,11.6414,109.1936,0.00000000 562,603.1944,392.9876,36.9523,119.1591,0.00000000 562,625.6467,456.8867,14.5000,55.2600,0.00000000 562,635.3879,493.2766,4.7588,18.8701,0.00000000 563,521.0921,226.4494,34.3625,66.4330,0.00003768 563,636.9513,217.1590,3.1954,62.3000,0.00000000 563,443.2115,327.7025,91.0470,184.4442,0.00000000 563,395.8585,271.0511,91.9095,241.0956,0.00000000 563,628.2208,458.5877,11.9259,53.5590,0.00000000 563,635.7859,488.3922,4.3608,23.7545,0.00000000 564,385.5882,224.6841,22.9665,48.6768,0.00138170 564,531.1855,215.8267,32.9383,80.7898,0.00000006 564,544.7608,206.0545,42.9879,112.1422,0.00000000 564,521.8108,179.7700,82.6057,216.9516,0.00000000 564,359.8113,317.4870,91.8908,194.6597,0.00000000 564,629.4490,481.3120,10.6977,30.8347,0.00000000 565,560.4506,205.6609,27.8006,48.4608,0.00000171 565,488.8394,225.0857,28.0759,62.1044,0.00000011 565,365.6565,224.4453,22.3141,51.9928,0.00000001 565,377.5790,227.1046,23.4190,50.7291,0.00000000 565,496.1378,214.3555,42.3671,107.7601,0.00000000 565,603.7463,395.0367,36.4004,117.1100,0.00000000 565,425.7610,495.1698,29.0055,16.9769,0.00000000 565,627.0289,456.4925,13.1178,55.6542,0.00000000 565,319.3572,282.5750,93.2897,229.5717,0.00000000 565,636.2592,493.6100,3.8875,18.5367,0.00000000 565,374.9524,334.9415,91.4224,177.2052,0.00000000 566,401.0382,222.3032,26.6242,54.7668,0.99543929 566,475.9642,212.9234,28.8051,67.8216,0.00006641 566,598.9382,196.4418,29.4206,54.7964,0.00000123 566,374.6945,216.5884,22.9517,50.8573,0.00000000 566,385.9070,218.4939,27.5869,57.4392,0.00000000 566,358.1963,212.7999,24.1037,50.8912,0.00000000 566,8.7649,102.3743,21.4686,58.8919,0.00000000 566,634.5045,190.2593,5.6422,74.2021,0.00000000 566,363.4347,314.7112,86.0767,197.4355,0.00000000 566,316.9239,276.1617,87.7604,235.9850,0.00000000 567,441.1074,213.9494,21.8921,47.5917,0.18730967 567,463.2366,220.6777,31.1681,80.8474,0.00001454 567,414.1888,214.5660,21.9808,52.5937,0.00000002 567,377.4483,216.5303,24.9159,51.6931,0.00000000 567,453.3719,208.1014,25.5443,54.4678,0.00000000 567,425.4039,211.6425,24.2755,50.0801,0.00000000 567,353.6190,305.4861,86.5201,206.6606,0.00000000 567,629.6638,483.6514,10.4829,28.4953,0.00000000 568,465.5367,206.5783,42.1690,93.8180,0.00001437 568,399.1989,212.0587,34.9507,62.2080,0.00000234 568,602.0710,146.7313,38.0757,265.5112,0.00000000 568,453.8306,147.5806,83.5659,206.7169,0.00000000 568,603.6436,394.5536,36.5031,117.5931,0.00000000 568,628.5463,182.3114,11.6004,80.6174,0.00000000 568,635.9300,205.0387,4.2167,67.6083,0.00000000 568,290.0037,235.9745,93.7533,276.1722,0.00000000 568,625.2725,456.2767,14.8742,55.8700,0.00000000 568,636.6467,167.4075,3.5000,64.4193,0.00000000 568,635.9049,492.7851,4.2418,19.3616,0.00000000 569,513.5840,224.3666,30.7908,67.6772,0.99999994 569,442.3230,230.3020,35.6203,69.6998,0.00002100 569,380.4981,219.1586,26.8960,51.4788,0.00000019 569,629.7651,210.4241,10.3816,83.3494,0.00000000 569,346.2893,324.2045,88.2066,187.9422,0.00000000 569,629.8695,483.0766,10.2772,29.0701,0.00000000 570,572.1199,221.6416,37.8648,80.1799,1.00000000 570,443.1369,231.7171,28.7197,57.1480,0.00000078 570,376.4261,220.6269,24.4969,48.3104,0.00000000 570,521.0079,226.3813,25.7888,63.6850,0.00000000 570,293.8717,245.7515,86.0572,266.3952,0.00000000 570,548.5512,217.7802,39.6688,103.7401,0.00000000 570,379.6979,342.1971,89.3079,169.9496,0.00000000 570,630.0897,482.2449,10.0570,29.9018,0.00000000 571,457.7737,218.8326,31.9683,64.7077,0.00015101 571,392.2925,212.0257,25.7035,50.1772,0.00000128 571,514.9684,182.3694,59.1011,136.2986,0.00000000 571,287.6208,209.3941,83.0713,265.7981,0.00000000 571,328.0970,251.7947,77.0923,192.4560,0.00000000 571,362.7117,280.4863,82.9453,231.6604,0.00000000 571,635.1883,489.3721,4.9584,22.7746,0.00000000 572,425.3023,221.8669,34.4610,57.1370,0.00000000 572,568.5062,214.4565,40.7806,94.4893,0.00000000 572,603.0712,395.9880,37.0755,116.1587,0.00000000 572,335.9937,261.8265,75.3077,202.5549,0.00000000 572,375.6688,310.3065,85.1686,201.8402,0.00000000 572,287.3676,233.1562,91.6897,278.9905,0.00000000 572,626.4642,456.0071,13.6825,56.1396,0.00000000 572,636.4172,492.5857,3.7295,19.5610,0.00000000 573,510.9527,224.1611,46.7960,106.6960,0.00000017 573,501.0077,168.9892,83.6162,207.7137,0.00000000 573,362.4238,298.6239,83.9680,213.5228,0.00000000 573,598.7674,88.5427,41.3793,269.9449,0.00000000 573,325.1654,261.2821,75.3257,204.4215,0.00000000 573,630.0185,484.1840,10.1282,27.9627,0.00000000 574,422.3190,207.9645,26.8599,59.3716,0.00001848 574,247.2804,207.3823,23.9262,49.8245,0.00000001 574,414.0053,184.7186,50.3020,116.3923,0.00000000 574,14.3278,175.7519,28.0385,69.8420,0.00000000 574,1.0000,110.4160,58.0651,249.5932,0.00000000 574,275.3742,202.9888,89.8406,277.5260,0.00000000 574,600.8819,394.8850,39.2648,117.2617,0.00000000 574,382.1047,311.9725,84.3129,200.1742,0.00000000 574,334.3334,259.3393,87.6414,252.8074,0.00000000 574,629.6558,482.5971,10.4909,29.5496,0.00000000 575,253.1345,205.9697,25.5872,49.1350,0.00045921 575,444.2196,212.8455,35.1999,59.0932,0.00000629 575,20.7440,220.0249,24.2517,54.7088,0.00000005 575,542.3425,220.6017,27.2127,64.8403,0.00000001 575,400.7500,200.4643,22.6248,56.0451,0.00000000 575,331.2160,256.7997,76.1109,208.9902,0.00000000 575,553.4142,220.2957,39.2876,85.7970,0.00000000 575,275.9121,218.5121,86.2452,271.7321,0.00000000 575,365.7957,303.7205,86.3359,208.4262,0.00000000 576,258.6432,203.9904,25.5547,49.2569,0.42297658 576,397.4784,200.2700,32.6089,79.0237,0.00000018 576,374.1219,201.6581,22.6983,50.5792,0.00000009 576,477.0432,199.1588,32.5700,78.7901,0.00000000 576,581.8950,199.7987,40.7169,65.0335,0.00000000 576,330.2425,257.2154,73.1191,201.8247,0.00000000 576,367.3388,310.1760,86.3571,201.9707,0.00000000 576,282.0536,196.1744,84.2436,271.4510,0.00000000 577,16.4611,199.5006,36.2559,51.6026,0.01124966 577,412.2228,205.3182,27.6554,56.4782,0.00001024 577,384.5129,210.7128,22.7661,52.4140,0.00000209 577,473.2594,207.6023,29.0488,79.4781,0.00000005 577,40.2903,186.0409,27.8410,60.7292,0.00000000 577,462.4810,171.5612,63.5913,168.3340,0.00000000 577,335.1701,259.6313,75.6302,205.4445,0.00000000 577,368.2715,301.6124,85.5007,210.5343,0.00000000 577,285.7487,220.7604,88.6605,273.5672,0.00000000 578,267.6639,201.8391,24.7407,49.9565,0.99990678 578,422.0354,219.7752,31.8857,58.6104,0.99337882 578,504.3371,208.5937,39.3394,80.9617,0.00000372 578,406.1642,212.1913,30.2663,62.0545,0.00000000 578,486.5604,186.9660,82.0606,205.4868,0.00000000 578,331.2490,263.2077,72.1412,205.6453,0.00000000 578,287.4182,208.9520,83.5601,274.4604,0.00000000 578,361.6934,303.4433,85.2953,208.7034,0.00000000 579,281.8596,196.4717,21.6308,50.5786,0.40609831 579,438.5189,200.5194,32.0164,59.9060,0.00000000 579,294.3607,194.2502,26.9858,49.5015,0.00000000 579,426.3745,192.2339,27.9345,55.8611,0.00000000 579,18.1396,181.0373,23.8655,57.2601,0.00000000 579,333.8383,255.2212,72.7454,197.7819,0.00000000 579,361.0170,289.4225,86.4270,222.7242,0.00000000 579,287.0052,235.8024,87.1423,276.2544,0.00000000 579,629.6291,481.0686,10.5176,31.0781,0.00000000 580,301.3859,200.4123,23.1169,52.9760,0.99604827 580,326.1314,202.1985,22.8152,50.7744,0.00066424 580,286.9142,199.1015,24.0188,55.0291,0.00000000 580,447.8735,204.5350,24.7463,49.1504,0.00000000 580,608.5255,184.7282,31.6212,122.5732,0.00000000 580,2.9568,79.8501,58.8220,146.3175,0.00000000 580,433.6022,439.3992,52.7435,72.7475,0.00000000 580,380.0453,348.8458,90.1521,163.3009,0.00000000 580,629.4141,161.8388,10.7326,104.4379,0.00000000 580,633.5011,219.6461,6.6456,77.0745,0.00000000 580,629.6077,480.8175,10.5390,31.3292,0.00000000 581,320.0320,203.9914,23.2454,53.5913,0.99934858 581,361.7046,195.1580,23.2867,51.2129,0.00000924 581,435.5444,204.7199,26.3717,58.7278,0.00000174 581,462.1007,186.6894,30.1323,54.1499,0.00000000 581,12.6490,165.6528,32.0752,57.0685,0.00000000 581,332.7111,204.6043,26.0989,57.6882,0.00000000 581,346.2431,302.4281,89.8980,209.7186,0.00000000 581,626.8354,458.9545,13.3113,53.1922,0.00000000 581,603.2115,392.9984,36.9352,119.1483,0.00000000 581,635.4073,487.8875,4.7394,24.2592,0.00000000 582,349.6824,200.5884,28.2271,67.8213,0.99993825 582,523.2545,207.7852,31.5591,72.3040,0.00046571 582,406.0222,193.2839,25.6244,54.6450,0.00000206 582,420.5511,192.4282,37.0377,91.5486,0.00000000 582,287.6477,216.3890,88.5826,283.9226,0.00000000 582,629.6337,481.4968,10.5130,30.6499,0.00000000 583,385.5612,233.8016,33.7477,77.4774,0.12751700 583,439.0900,223.2747,21.1820,51.7925,0.00006570 583,404.9856,231.3704,30.6226,62.9250,0.00000193 583,460.4442,222.0152,25.7073,64.2049,0.00000053 583,467.4393,224.6335,57.8152,138.3371,0.00000000 583,328.3137,266.2657,84.8611,245.8810,0.00000000 583,629.6827,478.2911,10.4640,33.8556,0.00000000 584,524.1616,211.3932,25.5669,55.1191,0.99944353 584,444.2826,210.8030,27.1988,68.5583,0.75879133 584,428.8521,207.5648,24.9650,57.2128,0.00000070 584,460.9484,207.7621,25.3192,58.5793,0.00000003 584,589.0764,195.0797,28.1964,59.6969,0.00000000 584,596.6431,135.1981,43.5036,261.1366,0.00000000 584,625.3519,180.4557,14.7948,129.1846,0.00000000 584,416.9489,324.4574,86.3702,187.6893,0.00000000 584,323.5983,231.7363,85.3513,262.0337,0.00000000 585,508.1241,206.5079,39.5154,93.7273,0.99975884 585,597.5254,204.6968,29.7259,66.7933,0.92432845 585,485.1408,184.6039,42.1069,106.2123,0.00000000 585,421.1239,155.3762,40.0697,71.1930,0.00000000 585,464.2955,172.3347,85.2068,204.0707,0.00000000 585,400.9403,304.8115,86.4934,207.3352,0.00000000 585,629.3578,478.3177,10.7889,33.8290,0.00000000 586,601.6277,212.2193,38.5190,99.2066,0.99998993 586,326.8118,191.1127,28.0818,51.9444,0.00038588 586,513.5573,201.1617,25.7297,49.2549,0.00000064 586,528.5718,207.0261,21.8506,50.1825,0.00000000 586,440.9259,174.9026,36.6974,70.7151,0.00000000 586,626.2771,234.7011,13.8696,85.6763,0.00000000 586,362.8585,165.6429,34.2025,75.8301,0.00000000 586,396.2824,307.6748,90.2959,204.4719,0.00000000 586,627.9943,177.6548,12.1524,97.7360,0.00000000 586,629.3138,480.2762,10.8329,31.8705,0.00000000 587,361.8412,180.5335,34.6101,62.9111,0.00046398 587,387.4676,168.8714,36.2029,78.5719,0.00000009 587,591.5054,37.1279,48.6413,267.6677,0.00000000 587,629.0438,84.9485,11.1029,89.2590,0.00000000 587,127.7375,334.7833,89.1560,177.3634,0.00000000 587,351.2417,325.5884,86.3140,186.5583,0.00000000 587,636.2471,194.0195,3.8996,63.7307,0.00000000 587,627.4005,458.0966,12.7462,54.0501,0.00000000 587,634.8316,487.1870,5.3151,24.9597,0.00000000 588,540.1050,199.7570,30.4021,54.9915,0.91797799 588,342.3503,158.2239,34.7144,77.1445,0.00000003 588,560.2047,202.6380,25.5426,56.0190,0.00000000 588,537.5859,152.1561,51.6651,115.3594,0.00000000 588,602.3572,389.8089,37.7895,122.3378,0.00000000 588,515.8304,90.9625,95.8522,221.0440,0.00000000 588,625.4287,457.5375,14.7180,54.6092,0.00000000 588,634.2209,487.4922,5.9258,24.6545,0.00000000 589,227.2547,208.0321,33.9084,62.2439,0.99999934 589,461.6983,206.2851,23.5985,54.8799,0.56505346 589,186.9284,157.2418,43.1039,119.4123,0.00000000 589,209.3573,197.0132,33.7904,74.2899,0.00000000 589,439.4523,180.3318,43.2388,94.8400,0.00000000 589,181.3191,86.6055,79.8402,231.3453,0.00000000 590,25.6248,216.5738,33.2995,68.5369,0.00018001 590,288.1897,211.7159,26.4635,60.8018,0.00005059 590,304.4012,211.2085,25.1928,67.2614,0.00001236 590,4.9961,222.7962,36.2518,69.4740,0.00000002 590,318.5385,214.7314,28.6467,69.2607,0.00000000 590,256.2249,193.8213,41.6292,90.7128,0.00000000 590,236.2213,105.2835,86.1914,209.0533,0.00000000 591,1.0000,208.3167,25.7798,56.6553,0.00000988 591,592.0400,223.3679,21.5718,54.5390,0.00000000 591,22.2833,215.7443,25.1563,53.0223,0.00000000 591,81.5118,170.6627,23.6227,51.0079,0.00000000 591,204.3111,203.3916,22.9035,53.6756,0.00000000 591,182.6774,176.5827,55.9566,122.8236,0.00000000 591,633.1996,185.2832,6.9471,75.9948,0.00000000 591,636.1440,493.9449,4.0027,18.2018,0.00000000 591,629.4597,481.0525,10.6870,31.0942,0.00000000 592,475.4710,214.2893,23.0649,52.6688,0.00000082 592,487.4804,209.2261,23.1401,51.7071,0.00000000 592,506.9123,206.8810,27.3096,54.0987,0.00000000 592,172.7021,209.5923,24.6212,56.3003,0.00000000 592,523.1616,190.6662,35.4250,72.1085,0.00000000 592,600.3944,1.0000,39.7523,238.1460,0.00000000 592,626.2862,18.5959,13.8605,124.9847,0.00000000 592,634.3660,55.1154,5.7807,68.8748,0.00000000 592,627.4936,458.2579,12.6531,53.8888,0.00000000 592,635.7452,487.3330,4.4015,24.8137,0.00000000 593,453.1711,216.6793,23.6250,51.8320,0.99997556 593,503.6635,215.0132,23.0017,50.8558,0.99997038 593,70.0421,214.9358,23.0777,49.6660,0.51635182 593,99.9211,209.2069,22.5543,48.4493,0.00000026 593,527.5891,198.4602,25.0388,55.1511,0.00000000 593,489.9156,214.7130,24.4229,53.9696,0.00000000 593,512.8877,199.9939,25.1135,56.8535,0.00000000 593,629.5133,478.7386,10.6334,33.4081,0.00000000 594,489.8259,217.4233,24.3691,55.2145,0.99999982 594,557.3394,215.4625,23.9908,56.8820,0.99997556 594,438.1696,209.4114,24.4495,50.1924,0.20592865 594,10.9200,221.2210,22.7589,48.7937,0.11203393 594,55.0785,211.4290,22.2170,48.7231,0.00061634 594,582.1965,220.7393,23.8459,51.0586,0.00000591 594,546.0827,208.8555,21.1153,53.7157,0.00000075 594,508.1546,211.6888,22.8126,47.3054,0.00000000 594,329.7675,215.7760,23.7341,58.0730,0.00000000 595,567.4854,216.7337,32.1156,65.1827,0.99999994 595,468.0127,207.6572,24.0810,50.6000,0.71216053 595,584.6675,209.1896,32.9923,63.0706,0.00000451 595,382.6837,233.0858,28.2886,66.8527,0.00000000 595,365.1389,198.6772,50.1279,130.6449,0.00000000 595,635.4014,487.4587,4.7453,24.6880,0.00000000 595,627.0307,458.9038,13.1160,53.2429,0.00000000 596,513.8388,203.9345,22.0872,52.9635,1.00000000 596,31.5383,205.3321,22.9178,50.4717,0.94529235 596,17.2645,208.5927,23.2055,50.7772,0.01028970 596,118.8745,199.8622,24.1664,51.7456,0.00000000 596,5.5335,215.7066,23.8076,53.0427,0.00000000 596,493.6894,206.2470,23.9438,55.5418,0.00000000 596,527.6767,201.9520,22.0129,48.8156,0.00000000 596,73.9954,197.9821,21.6481,49.8361,0.00000000 596,629.6534,478.9746,10.4933,33.1721,0.00000000 597,571.1911,207.0565,27.7544,61.0768,1.00000000 597,66.5794,188.6423,29.5529,58.3826,0.00000001 597,556.4286,198.0039,29.3736,57.2873,0.00000000 597,430.3630,187.6752,30.0210,55.0743,0.00000000 597,538.8383,94.1313,101.3084,215.8125,0.00000000 597,635.8051,488.5335,4.3416,23.6132,0.00000000 597,627.5397,458.8533,12.6070,53.2934,0.00000000 598,635.5922,487.5026,4.5545,24.6441,0.00000000 598,627.9588,457.7898,12.1879,54.3569,0.00000000 599,81.9987,190.1717,24.9571,46.6852,0.00754477 599,45.4222,172.9168,24.4439,49.3193,0.00000000 599,601.4306,149.1173,34.1491,72.5583,0.00000000 599,94.4406,179.7514,29.4233,50.0784,0.00000000 599,537.3040,234.0657,58.0090,163.3114,0.00000000 599,627.8861,1.0000,12.2606,48.5510,0.00000000 599,635.6198,152.6181,4.5269,68.7893,0.00000000 599,637.1085,217.3437,3.0382,63.7884,0.00000000 599,625.5822,117.2035,14.5645,121.3803,0.00000000 599,631.0720,224.5572,9.0747,80.0192,0.00000000 599,627.9667,456.2283,12.1800,55.9184,0.00000000 599,409.5195,25.1715,89.3591,263.0853,0.00000000 599,635.5782,487.2002,4.5685,24.9465,0.00000000 600,38.7790,209.5914,28.0970,49.8632,0.20697905 600,26.6603,192.8356,29.9781,54.7839,0.00000008 600,601.0228,394.9071,39.1239,117.2396,0.00000000 600,626.4260,456.8421,13.7207,55.3046,0.00000000 600,497.0231,25.6921,87.9778,253.8615,0.00000000 600,635.9907,492.7966,4.1560,19.3501,0.00000000 601,627.5215,1.0000,12.6252,50.0056,0.00000000 601,629.5330,482.1404,10.6137,30.0063,0.00000000 602,12.8512,191.2059,36.4827,71.7043,0.00000000 602,627.4586,1.0000,12.6881,50.4949,0.00000000 602,635.8041,493.8746,4.3426,18.2721,0.00000000 602,602.8163,394.8250,37.3304,117.3217,0.00000000 602,629.4748,481.6897,10.6719,30.4570,0.00000000 603,628.2786,1.0000,11.8681,48.3563,0.00000000 603,636.1093,494.0899,4.0374,18.0568,0.00000000 603,629.4825,481.5760,10.6642,30.5707,0.00000000 604,72.6386,219.9900,23.5634,47.9487,0.00008123 604,480.6740,192.3149,36.7633,68.8362,0.00000071 604,119.1783,208.4744,23.4772,47.8953,0.00000016 604,90.0989,214.3404,23.1317,49.5449,0.00000000 604,19.7201,188.7610,30.0458,59.1427,0.00000000 604,627.4158,456.9844,12.7309,55.1623,0.00000000 604,635.4794,487.2098,4.6673,24.9369,0.00000000 605,20.6208,229.9260,31.6911,57.5029,0.99996841 605,42.7898,225.7441,22.1914,51.6057,0.00034134 605,10.6043,242.1846,26.4937,58.7916,0.00000075 605,85.3057,230.3337,22.3362,46.3571,0.00000016 605,1.0000,160.6282,76.8066,203.8387,0.00000000 605,629.6625,478.9140,10.4842,33.2327,0.00000000 606,23.5162,214.4283,28.8282,56.4837,0.00000006 606,634.0378,210.4328,6.1089,77.3805,0.00000000 606,629.5945,479.7308,10.5522,32.4159,0.00000000 607,122.8441,193.8132,23.5676,50.3935,0.00000256 607,521.6220,196.6625,23.3861,53.8406,0.00000133 607,562.8992,204.4109,22.5965,49.0679,0.00000010 607,482.2226,227.3825,25.8988,58.1478,0.00000000 607,627.0430,1.0000,13.1037,51.5035,0.00000000 607,628.4282,456.9653,11.7185,55.1814,0.00000000 607,635.6599,487.7089,4.4868,24.4378,0.00000000 608,451.2254,200.3074,22.9932,49.3406,0.85627788 608,477.0119,203.2835,21.7402,55.3430,0.00285564 608,433.3734,192.8129,23.5981,47.9236,0.00010462 608,391.0949,205.4743,27.4289,59.7331,0.00000001 608,89.9629,193.7551,23.7402,48.1673,0.00000000 608,120.9066,189.9471,28.7615,49.4888,0.00000000 608,487.8855,210.3120,34.7242,59.0471,0.00000000 608,635.6656,487.4639,4.4811,24.6828,0.00000000 609,543.0471,203.1295,25.5269,58.4407,0.99999875 609,486.7390,198.6163,22.2978,56.0560,0.99974018 609,469.2961,203.9252,21.2184,54.1456,0.65567732 609,357.7560,189.5214,23.6502,51.4502,0.00004801 609,18.5671,182.5648,27.9549,66.8850,0.00000007 609,2.6000,184.7711,28.0829,66.5615,0.00000000 609,629.7125,480.8990,10.4342,31.2477,0.00000000 610,543.2756,197.2488,24.0202,58.8379,1.00000000 610,517.5154,202.1369,23.3390,55.9501,1.00000000 610,444.4449,196.2708,23.2180,47.8236,0.97336441 610,10.5755,203.6596,24.5951,52.0446,0.05013103 610,410.9663,193.4546,23.6488,50.2464,0.00000527 610,1.0000,205.1719,18.4877,56.5212,0.00000000 610,378.0459,189.9706,24.3269,53.8993,0.00000000 611,594.8540,205.1780,32.6993,74.4159,0.99999976 611,430.5991,203.1515,23.5401,51.9152,0.99999511 611,22.1576,187.0177,26.6798,46.8440,0.87033063 611,618.5014,198.5194,21.6453,73.8673,0.00422508 611,481.3572,214.4209,30.5729,52.3230,0.00006176 611,5.3076,186.1049,24.6993,50.6947,0.00000001 611,632.4533,188.9661,7.6934,62.6972,0.00000000 612,526.1806,204.5967,27.9945,53.4397,1.00000000 612,451.3501,189.1156,26.5006,66.2095,0.01622107 612,454.1384,72.0299,28.0120,61.6004,0.00001352 612,536.5587,185.6691,32.8936,60.5894,0.00000000 612,628.3930,1.0000,11.7537,47.7546,0.00000000 612,421.6667,89.4543,92.4855,222.5051,0.00000000 612,629.8549,478.7196,10.2918,33.4271,0.00000000 613,573.8453,250.2081,30.8942,64.4089,1.00000000 613,476.5686,238.0069,26.8746,60.5944,1.00000000 613,514.1321,218.1218,22.6075,49.8421,0.03315439 613,411.4163,227.3856,21.9712,53.4234,0.00000004 613,490.2224,230.6463,25.3403,58.2527,0.00000000 613,630.3512,480.5865,9.7955,31.5602,0.00000000 614,502.7771,209.1800,29.7383,70.0411,1.00000000 614,428.0726,197.9429,23.3278,46.4648,0.06839430 614,489.5110,203.6291,26.7438,58.5714,0.00000000 614,473.1696,107.3983,95.6703,226.5294,0.00000000 614,626.9711,458.3805,13.1756,53.7662,0.00000000 614,635.9576,493.7110,4.1891,18.4357,0.00000000 615,558.3138,220.8527,35.9682,81.8359,1.00000000 615,459.0342,205.9002,22.3236,48.7645,0.76568854 615,40.7977,160.0814,31.0435,63.2641,0.09168280 615,529.7359,145.7516,89.8251,216.1221,0.00000000 615,635.1099,486.2426,5.0368,25.9041,0.00000000 615,627.2198,458.1492,12.9269,53.9975,0.00000000 616,525.1955,215.0974,24.7521,54.9283,0.99999845 616,422.8718,201.6183,25.7655,48.6516,0.00902717 616,512.4112,181.8411,51.4730,96.1248,0.00000000 616,510.0072,220.3313,26.6674,57.4405,0.00000000 616,632.2694,169.8739,7.8773,76.9402,0.00000000 616,630.7363,120.2406,9.4104,82.4626,0.00000000 616,635.9567,493.7872,4.1900,18.3595,0.00000000 616,629.3035,481.0003,10.8432,31.1464,0.00000000 617,453.5186,209.9910,24.4661,50.7038,0.99999392 617,441.7998,211.9883,22.3143,52.7979,0.00000000 617,442.1408,172.1416,52.0633,94.7816,0.00000000 617,638.1106,141.1718,2.0361,63.7099,0.00000000 617,631.4227,134.0191,8.7240,77.8263,0.00000000 617,603.0193,395.6547,37.1274,116.4920,0.00000000 617,636.0025,493.5822,4.1442,18.5645,0.00000000 617,627.2033,458.3585,12.9434,53.7882,0.00000000 618,464.8223,209.8397,26.4716,54.5840,0.00102466 618,600.4462,206.2355,22.7536,51.5462,0.00014367 618,137.7542,219.7331,23.6091,48.7289,0.00000004 618,613.2546,206.8140,24.8052,56.0611,0.00000000 618,391.1314,206.7727,22.9793,51.1786,0.00000000 618,414.5089,203.0592,24.4421,56.5268,0.00000000 618,498.7514,206.8150,27.9105,57.9640,0.00000000 618,636.4236,191.2970,3.7231,60.9985,0.00000000 618,633.1355,210.8031,7.0112,75.7173,0.00000000 618,635.2100,486.8257,4.9367,25.3210,0.00000000 618,627.7612,459.6136,12.3855,52.5331,0.00000000 619,104.5584,206.7650,26.5150,48.3540,0.99998933 619,574.1663,205.1873,28.4877,65.5029,0.75043881 619,591.7313,199.8506,28.1889,60.1464,0.00000083 619,5.0993,219.0051,21.9584,51.7109,0.00000000 619,12.5124,206.7130,28.4036,52.2516,0.00000000 619,572.9459,181.0673,55.6512,133.4102,0.00000000 620,42.1243,211.5497,27.6186,51.0739,0.99998218 620,399.1335,235.2623,25.9226,61.5739,0.00000092 620,494.7880,216.5305,23.2849,60.9301,0.00000000 620,507.8734,204.4906,23.8015,49.9051,0.00000000 620,483.8381,187.6952,48.6846,106.9946,0.00000000 620,629.5643,480.7068,10.5824,31.4399,0.00000000 621,458.0209,217.1356,23.9063,47.0235,0.00000450 621,556.9802,199.6991,22.1978,50.7895,0.00000000 621,344.2166,203.0386,23.5715,52.6516,0.00000000 621,571.7097,198.5052,23.4565,55.1418,0.00000000 621,628.6721,460.0786,11.4746,52.0681,0.00000000 621,637.8150,96.5188,2.3317,67.8423,0.00000000 621,597.2715,47.5183,42.8752,269.3137,0.00000000 621,631.1667,87.2736,8.9800,87.6761,0.00000000 621,636.0436,488.2817,4.1031,23.8650,0.00000000 622,504.7320,215.0553,24.6166,61.9742,0.00254314 622,29.9841,213.8645,23.6475,55.0916,0.00000000 622,508.5195,210.1904,41.3383,104.6917,0.00000000 622,520.1674,184.8891,89.6901,256.6410,0.00000000 622,463.1947,121.3766,101.5531,217.3895,0.00000000 622,628.3139,1.0000,11.8328,50.9921,0.00000000 622,628.0618,458.8975,12.0849,53.2492,0.00000000 622,635.8375,487.4715,4.3092,24.6752,0.00000000 623,584.9739,209.9999,30.5523,65.9303,0.19538781 623,571.3130,199.1615,51.1702,139.6193,0.00000085 623,597.0901,99.1623,30.7364,70.3354,0.00000003 623,593.0651,51.0719,47.0816,268.1374,0.00000000 623,636.2704,99.0323,3.8763,63.5209,0.00000000 623,629.8715,482.0088,10.2752,30.1379,0.00000000 624,92.1274,208.3541,21.8179,52.9591,0.00000001 624,67.5350,206.1346,21.0456,50.8900,0.00000000 624,475.3762,177.3124,42.9110,104.8759,0.00000000 624,637.4230,196.0034,2.7237,62.1600,0.00000000 624,631.2008,177.5925,8.9459,74.5997,0.00000000 624,629.8060,482.3121,10.3407,29.8346,0.00000000 625,43.6351,216.3091,28.5572,51.6971,0.87366551 625,499.6322,226.8980,37.8801,66.7032,0.00000000 625,628.1239,1.0000,12.0228,47.5804,0.00000000 625,478.5453,190.2684,87.9454,250.1107,0.00000000 625,634.3153,150.1188,5.8314,73.6073,0.00000000 625,629.7410,482.0321,10.4057,30.1146,0.00000000 626,463.3646,212.6009,24.9188,46.3055,0.99632919 626,159.0386,209.0919,25.5361,49.6703,0.00000006 626,603.2473,165.8975,26.5293,61.0060,0.00000000 626,602.4975,1.0000,37.6492,158.9399,0.00000000 626,628.2820,1.0000,11.8647,48.3885,0.00000000 626,635.1253,135.8065,5.0214,73.0097,0.00000000 626,635.9341,73.6620,4.2126,63.7075,0.00000000 626,636.3013,494.0588,3.8454,18.0879,0.00000000 626,629.4811,479.5078,10.6656,32.6389,0.00000000 627,523.1829,220.3348,28.5406,50.2380,0.99999994 627,93.8063,219.2421,31.0724,51.7662,0.62512827 627,35.6357,222.1691,27.5548,51.0286,0.00000000 627,601.1490,154.1120,27.8352,56.0074,0.00000000 627,24.5665,197.7213,27.2375,57.9744,0.00000000 627,629.4185,480.9034,10.7282,31.2433,0.00000000 628,436.4706,210.2664,23.5505,55.8951,0.25591579 628,496.9968,199.2515,20.4542,47.8965,0.00000001 628,633.7891,109.2106,6.3576,76.8914,0.00000000 628,635.3585,487.7547,4.7882,24.3920,0.00000000 628,628.3998,460.3204,11.7469,51.8263,0.00000000 629,146.1926,188.2597,28.5991,46.1373,0.00000034 629,549.2733,198.7349,33.5181,74.5676,0.00000029 629,355.4821,184.1656,27.2059,53.0179,0.00000000 629,524.3741,143.0983,86.8085,223.4830,0.00000000 629,636.1840,488.4293,3.9627,23.7174,0.00000000 630,475.3587,185.0848,23.4726,50.5640,0.00000042 630,442.6423,188.3417,21.5261,47.8775,0.00000036 630,133.2964,187.9668,27.8923,47.9960,0.00000022 630,362.4962,187.8268,27.7827,59.1977,0.00000001 630,90.7048,196.3937,25.4429,50.3929,0.00000000 630,380.8597,181.1874,29.9224,58.0792,0.00000000 630,76.1553,196.9333,21.1419,47.1838,0.00000000 630,458.2392,187.4503,23.9191,51.4394,0.00000000 630,635.1077,488.3025,5.0390,23.8442,0.00000000 630,626.7587,459.4449,13.3880,52.7018,0.00000000 631,331.8422,166.3042,22.8601,50.8026,0.00006267 631,413.5681,161.6120,22.5122,53.3259,0.00000256 631,470.3643,172.2403,26.0643,49.9710,0.00000005 631,120.4622,164.2399,25.9506,53.4021,0.00000001 631,632.7823,1.0000,7.3644,34.8645,0.00000000 631,636.0735,172.4064,4.0732,66.9605,0.00000000 631,636.1619,494.2085,3.9848,17.9382,0.00000000 631,629.4429,480.9491,10.7038,31.1976,0.00000000 632,558.8702,213.1490,22.8909,56.4299,0.02939590 632,97.0529,209.1893,29.8293,49.9461,0.00081427 632,605.8589,197.9683,25.1062,54.3824,0.00000000 632,473.0124,196.1216,33.7745,80.7657,0.00000000 632,422.1394,34.2887,20.3111,51.2637,0.00000000 632,569.7737,205.2820,29.8221,59.5705,0.00000000 632,392.2987,208.3356,24.4720,60.5798,0.00000000 632,637.2722,204.0647,2.8745,62.8740,0.00000000 632,629.5764,480.9419,10.5703,31.2048,0.00000000 632,1.0000,65.6555,76.5363,251.3689,0.00000000 633,45.6471,191.1567,38.1057,69.7967,0.00082411 633,342.5034,195.6435,23.5306,49.3179,0.00000000 633,613.6271,197.0438,26.5196,63.3721,0.00000000 633,131.2419,197.6893,24.8145,53.4758,0.00000000 633,549.1909,183.9262,48.1583,124.9079,0.00000000 633,577.3153,181.2923,62.8314,157.8910,0.00000000 633,633.4619,188.8549,6.6848,65.3653,0.00000000 633,629.5933,480.2883,10.5534,31.8584,0.00000000 634,337.9505,197.2944,23.6739,52.3555,0.00000000 634,92.3453,203.7384,24.9089,52.5642,0.00000000 634,536.4344,177.4638,59.9306,140.4660,0.00000000 634,627.6926,191.5640,12.4541,87.9237,0.00000000 634,637.4025,194.1594,2.7442,63.3030,0.00000000 634,636.0999,493.9530,4.0468,18.1937,0.00000000 634,629.5214,480.9612,10.6253,31.1855,0.00000000 635,84.8754,196.0175,25.9066,51.9713,0.00000451 635,70.6235,185.3039,26.0644,53.5926,0.00000005 635,95.4023,183.6499,28.0312,50.2521,0.00000000 635,24.0219,190.6908,28.9975,65.2151,0.00000000 635,331.9337,190.9914,22.9024,53.6829,0.00000000 635,331.8196,268.1126,88.0115,244.0341,0.00000000 635,637.3420,175.3637,2.8047,64.3999,0.00000000 635,630.8747,167.0814,9.2720,82.1787,0.00000000 635,636.0189,142.7492,4.1278,62.8131,0.00000000 635,629.6639,480.4073,10.4828,31.7394,0.00000000 635,636.2875,494.0021,3.8592,18.1446,0.00000000 636,601.4603,229.2711,23.6233,51.8006,0.00018435 636,106.0676,204.1699,24.4329,52.1663,0.00006776 636,16.9254,200.9673,23.0646,55.1054,0.00000001 636,386.4940,213.5396,21.7623,52.8890,0.00000000 636,437.6984,198.7495,24.7693,53.2055,0.00000000 636,359.6011,204.5600,20.9377,49.3195,0.00000000 636,635.7320,218.8656,4.4147,60.5389,0.00000000 636,635.3674,487.4304,4.7793,24.7163,0.00000000 637,365.3139,213.9498,21.3470,55.1558,0.00000000 637,193.6745,190.7852,36.5765,60.8460,0.00000000 637,391.9804,197.3455,22.6163,47.2762,0.00000000 637,445.3041,226.0074,22.9483,54.3503,0.00000000 637,339.6785,202.4828,23.2682,52.4905,0.00000000 637,377.2865,202.2479,24.6743,56.6266,0.00000000 637,635.9224,183.8562,4.2243,62.2298,0.00000000 637,633.6280,142.8270,6.5187,77.0387,0.00000000 637,636.1954,494.1367,3.9513,18.0100,0.00000000 637,629.5388,480.5219,10.6079,31.6248,0.00000000 638,407.9166,204.0177,21.9264,49.9390,0.00192005 638,543.7054,203.7228,46.0280,118.9715,0.00000218 638,312.5654,196.5512,28.0233,64.1759,0.00000000 638,157.6747,192.4284,25.4266,70.8248,0.00000000 638,358.2101,198.7186,22.6389,54.4160,0.00000000 638,567.9359,227.2852,38.5745,97.6626,0.00000000 638,545.7186,169.5813,83.3940,240.2013,0.00000000 638,413.9646,214.5672,29.3859,59.0099,0.00000000 638,635.9963,488.6092,4.1504,23.5375,0.00000000 639,428.9399,204.9396,22.7353,49.6641,0.99801946 639,386.1961,208.2215,22.6582,55.9755,0.00000001 639,407.3811,204.6122,22.0781,55.6706,0.00000000 639,14.2093,198.6737,27.3734,58.2762,0.00000000 639,131.6826,188.8115,28.3217,50.6016,0.00000000 639,148.9223,198.3847,21.1530,44.3874,0.00000000 639,590.7957,193.9238,23.6381,54.0224,0.00000000 639,637.1969,183.9252,2.9498,63.2749,0.00000000 639,635.6271,487.5428,4.5196,24.6039,0.00000000 639,628.0432,457.8996,12.1035,54.2471,0.00000000 640,472.8278,208.9014,25.3632,55.6113,0.99999702 640,112.3191,201.1911,22.1273,47.0789,0.00003193 640,434.6904,196.6072,28.8261,49.6057,0.00001509 640,427.1874,210.6492,27.0750,61.6048,0.00000000 640,461.5180,185.5859,49.5172,97.8718,0.00000000 640,363.5145,188.7065,26.4407,52.3650,0.00000000 640,637.2196,181.6934,2.9271,65.2029,0.00000000 640,631.4650,162.2830,8.6817,96.3674,0.00000000 640,635.1746,486.9118,4.9721,25.2349,0.00000000 640,434.4182,109.9870,100.6211,211.7617,0.00000000 640,627.9158,459.4488,12.2309,52.6979,0.00000000 641,547.2045,202.4368,29.4875,65.5081,1.00000000 641,63.0284,176.6559,25.7246,65.4436,0.00005388 641,490.2077,185.1695,29.2282,58.0216,0.00000000 641,392.6802,211.1231,24.4068,59.7964,0.00000000 641,538.7968,195.2827,22.2781,55.3518,0.00000000 641,629.6721,480.3779,10.4746,31.7688,0.00000000 642,409.0704,211.0388,23.4010,60.7046,0.00000000 642,57.9522,211.6171,22.2096,53.4040,0.00000000 642,269.0137,160.0774,34.3015,72.9947,0.00000000 642,636.2809,494.3319,3.8658,17.8148,0.00000000 642,629.5563,481.1588,10.5904,30.9879,0.00000000 643,28.1833,237.1400,21.8105,51.8502,0.00000430 643,11.2152,237.3171,28.9727,62.5470,0.00000004 643,67.4495,223.4064,28.8553,51.9493,0.00000000 643,42.9322,233.8953,23.2421,46.8208,0.00000000 643,424.0927,228.2447,28.0684,51.9497,0.00000000 643,636.3794,494.3349,3.7673,17.8118,0.00000000 643,629.6371,480.8701,10.5096,31.2766,0.00000000 644,166.4021,230.7315,23.5398,52.4573,0.00000094 644,385.6129,214.0735,22.9147,48.7350,0.00000000 644,16.4757,226.7310,24.1882,55.1601,0.00000000 644,446.4797,235.2489,23.8702,53.4893,0.00000000 644,636.2151,494.0713,3.9316,18.0754,0.00000000 644,629.5043,480.8865,10.6424,31.2602,0.00000000 645,154.2766,209.4003,27.0774,47.3746,0.00038644 645,417.6080,199.9869,20.3019,46.2040,0.00000004 645,119.0716,206.9146,21.7595,48.5256,0.00000001 645,134.4936,206.2039,20.8851,45.3770,0.00000000 645,284.3017,164.9411,32.8581,65.7437,0.00000000 645,103.9324,194.5463,28.2583,51.6469,0.00000000 645,635.7161,195.2255,4.4306,65.4359,0.00000000 645,636.3084,494.2510,3.8383,17.8957,0.00000000 645,629.5981,481.2069,10.5486,30.9398,0.00000000 646,117.2625,216.7580,23.8047,49.4575,0.99998969 646,62.5023,209.0024,22.5944,50.5643,0.98403180 646,103.7010,215.4289,22.4881,50.2626,0.13109717 646,40.8302,209.8631,27.5138,52.7485,0.00034016 646,76.2168,211.3898,22.5830,50.6175,0.00000445 646,607.3568,168.9146,22.1082,53.4684,0.00000410 646,432.3391,198.0204,23.5752,54.0741,0.00000098 646,56.0517,159.8475,29.0591,66.5701,0.00000000 646,472.8640,217.1237,23.6846,51.7218,0.00000000 647,36.0479,223.6256,24.2955,52.0422,0.99556172 647,59.4364,227.0813,30.8992,55.1483,0.74167758 647,464.6884,209.7586,22.9163,50.9173,0.00000000 647,449.4760,203.2037,24.4263,53.4047,0.00000000 647,635.0360,486.4716,5.1107,25.6751,0.00000000 647,627.3138,458.2195,12.8329,53.9272,0.00000000 648,523.8421,228.1814,24.3317,48.3859,0.00000392 648,561.7182,205.9337,27.3715,51.9986,0.00000000 648,249.9740,159.7610,34.8318,69.2130,0.00000000 648,578.1234,207.6486,22.6969,60.8935,0.00000000 648,636.1155,494.1991,4.0312,17.9476,0.00000000 648,629.4638,481.2415,10.6829,30.9052,0.00000000 649,429.5861,206.3784,21.2655,55.5286,0.00000005 649,628.0817,1.0000,12.0650,49.5706,0.00000000 649,631.5675,487.4370,8.5792,24.7097,0.00000000 650,506.7881,208.6231,25.6317,57.1406,0.99997783 650,489.1102,205.9687,29.0925,54.0560,0.00000000 650,473.8515,102.8399,99.3143,208.4867,0.00000000 650,628.8965,1.0000,11.2502,49.4598,0.00000000 650,629.7115,479.9750,10.4352,32.1717,0.00000000 651,629.6464,480.2556,10.5003,31.8911,0.00000000 652,627.9218,1.0000,12.2249,49.4046,0.00000000 652,636.4856,494.0581,3.6611,18.0886,0.00000000 652,629.5876,480.4761,10.5591,31.6706,0.00000000 653,627.9182,1.0000,12.2285,49.9016,0.00000000 653,629.9509,480.2131,10.1958,31.9336,0.00000000 654,635.7523,487.8257,4.3944,24.3210,0.00000000 654,628.7834,459.8421,11.3633,52.3046,0.00000000 655,635.4590,487.6638,4.6877,24.4829,0.00000000 655,628.5280,460.2009,11.6187,51.9458,0.00000000 656,627.6531,457.0750,12.4936,55.0717,0.00000000 656,635.2981,486.7315,4.8486,25.4152,0.00000000 657,629.8552,479.1542,10.2915,32.9925,0.00000000 658,630.2425,480.5326,9.9042,31.6141,0.00000000 659,628.0757,1.0000,12.0710,49.3457,0.00000000 659,630.0494,480.4421,10.0973,31.7046,0.00000000 660,628.3585,1.0000,11.7882,51.7949,0.00000000 660,628.6373,458.0435,11.5094,54.1032,0.00000000 660,635.6260,487.8870,4.5207,24.2597,0.00000000 661,635.2496,487.1233,4.8971,25.0234,0.00000000 661,628.3494,458.5479,11.7973,53.5988,0.00000000 662,632.0242,149.0703,8.1225,83.4348,0.00000000 662,627.3401,1.0000,12.8066,122.7620,0.00000000 662,635.3810,487.8101,4.7657,24.3366,0.00000000 662,628.5087,459.7422,11.6380,52.4045,0.00000000 663,632.8201,1.0000,7.3266,34.3894,0.00000000 663,631.3005,485.5587,8.8462,26.5880,0.00000000 664,629.3492,479.1420,10.7975,33.0047,0.00000000 665,464.7361,176.6389,27.7766,57.5312,0.00000645 665,634.0267,1.0000,6.1200,31.1597,0.00000000 665,629.5897,480.3850,10.5570,31.7617,0.00000000 666,323.7462,196.3322,27.7357,51.4570,0.00000000 666,632.7016,1.0000,7.4451,35.7021,0.00000000 666,634.7878,486.8100,5.3589,25.3367,0.00000000 666,627.6699,457.4087,12.4768,54.7380,0.00000000 667,362.9581,201.8325,25.3885,50.0934,0.00000000 667,637.0641,186.5239,3.0826,65.0914,0.00000000 667,628.1696,459.4348,11.9771,52.7119,0.00000000 667,635.9252,488.2560,4.2215,23.8907,0.00000000 668,401.0510,210.5722,25.3297,55.6250,1.00000000 668,424.8624,211.8169,24.8596,50.6101,0.99991155 668,400.0461,177.9218,49.1589,98.3373,0.00000000 668,635.2527,487.1084,4.8940,25.0383,0.00000000 668,628.2114,458.8975,11.9353,53.2492,0.00000000 669,531.1669,220.8193,36.6006,84.4062,1.00000000 669,572.3162,225.4453,34.7398,77.4375,1.00000000 669,553.2798,228.6611,25.0351,58.4400,0.00000000 669,629.8784,480.4138,10.2683,31.7329,0.00000000 670,629.7367,480.4009,10.4100,31.7458,0.00000000 671,636.0075,494.2245,4.1392,17.9222,0.00000000 671,629.4075,481.5513,10.7392,30.5954,0.00000000 671,603.2840,392.2925,36.8627,119.8542,0.00000000 672,604.3475,395.0792,35.7992,117.0675,0.00000000 672,636.3326,493.4637,3.8141,18.6830,0.00000000 672,627.6463,457.8312,12.5004,54.3155,0.00000000 673,604.4306,396.6422,35.7161,115.5045,0.00000000 673,627.1983,456.1681,12.9484,55.9786,0.00000000 673,636.2009,493.3538,3.9458,18.7929,0.00000000 674,571.6217,228.0898,32.6917,68.4623,0.17922600 674,593.4937,238.9490,24.3107,56.7816,0.00000071 674,555.3427,229.5146,23.4137,53.6367,0.00000015 674,627.9250,1.0000,12.2217,47.7449,0.00000000 674,1.0000,380.4486,59.8411,131.6981,0.00000000 674,629.9532,479.8844,10.1935,32.2623,0.00000000 675,633.0027,1.0000,7.1440,34.9055,0.00000000 675,1.0000,382.6163,59.8140,129.5304,0.00000000 675,628.4448,458.7551,11.7019,53.3916,0.00000000 675,635.6094,487.9240,4.5373,24.2227,0.00000000 676,633.3745,1.0000,6.7722,32.2630,0.00000000 676,627.9377,458.4681,12.2090,53.6786,0.00000000 676,635.4767,487.7558,4.6700,24.3909,0.00000000 677,594.6071,96.3371,45.5396,266.7314,0.00000000 677,633.9885,1.0000,6.1582,30.1278,0.00000000 677,635.8752,100.3625,4.2715,63.5976,0.00000000 677,625.7202,119.6649,14.4265,130.6211,0.00000000 677,627.5991,457.5303,12.5476,54.6164,0.00000000 677,1.0000,380.9192,59.5952,131.2275,0.00000000 677,635.3724,487.4470,4.7743,24.6997,0.00000000 678,602.8837,395.6175,37.2630,116.5292,0.00000000 678,632.2410,1.0000,7.9057,37.7758,0.00000000 678,629.3347,478.7891,10.8120,33.3576,0.00000000 678,636.4237,493.5389,3.7230,18.6078,0.00000000 679,330.3266,181.9623,23.0613,51.9874,0.00000000 679,603.2864,396.6129,36.8603,115.5338,0.00000000 679,627.1454,455.0933,13.0013,57.0534,0.00000000 679,636.6734,493.0147,3.4733,19.1320,0.00000000 680,627.6979,457.8922,12.4488,54.2545,0.00000000 680,635.0745,486.8010,5.0722,25.3457,0.00000000 681,481.1536,210.9668,23.1271,52.9988,0.00000000 681,468.0013,211.4818,23.0125,52.2962,0.00000000 681,603.7852,392.2416,36.3615,119.9051,0.00000000 681,636.4042,493.8517,3.7425,18.2950,0.00000000 681,627.6353,457.3457,12.5114,54.8010,0.00000000 682,442.8137,139.1746,27.1560,63.3690,0.00000002 682,352.7839,200.2171,27.4422,50.1958,0.00000000 682,449.3484,38.9790,28.9513,58.8586,0.00000000 682,603.6324,395.7966,36.5143,116.3501,0.00000000 682,626.7070,455.5780,13.4397,56.5687,0.00000000 682,636.0730,493.1953,4.0737,18.9514,0.00000000 683,394.1436,210.5064,24.7075,62.1064,0.99988836 683,523.4176,220.6898,23.2573,54.7287,0.00000000 683,381.5286,206.3776,21.4842,56.8639,0.00000000 683,488.0731,218.1543,23.5907,56.0783,0.00000000 683,386.7504,191.1463,48.4716,115.5929,0.00000000 683,627.6559,1.0000,12.4908,46.3950,0.00000000 683,603.5884,394.3915,36.5583,117.7552,0.00000000 683,629.4614,480.8501,10.6853,31.2966,0.00000000 683,635.8495,493.3034,4.2972,18.8433,0.00000000 683,353.7648,139.2306,95.7184,210.8270,0.00000000 684,530.7980,205.5177,43.8821,113.7903,1.00000000 684,605.4562,220.3222,23.4989,55.8304,0.00000104 684,512.3431,206.2573,39.4633,89.3967,0.00000013 684,548.0007,37.5041,25.6162,57.8661,0.00000001 684,511.0825,158.4643,81.5703,213.9744,0.00000000 684,634.9526,199.8663,5.1941,74.1141,0.00000000 684,626.8684,456.3458,13.2783,55.8009,0.00000000 684,634.5115,486.1700,5.6352,25.9767,0.00000000 685,435.8860,206.0775,22.9169,47.4531,0.00044040 685,603.5970,396.3081,36.5497,115.8386,0.00000000 685,628.5493,1.0000,11.5974,47.1802,0.00000000 685,636.6114,493.4175,3.5353,18.7292,0.00000000 685,627.4447,456.6094,12.7020,55.5373,0.00000000 686,540.2191,206.9047,30.1402,75.7903,1.00000000 686,569.8050,203.3502,26.0856,60.9773,1.00000000 686,550.5162,179.3661,49.2485,113.5014,0.00000000 686,629.8625,479.2078,10.2842,32.9389,0.00000000 687,635.3279,487.6581,4.8188,24.4886,0.00000000 687,628.2850,459.2416,11.8617,52.9051,0.00000000 688,627.8453,1.0000,12.3014,50.1911,0.00000000 688,631.3398,485.8385,8.8069,26.3082,0.00000000 689,584.9266,211.5715,21.3457,50.8796,0.00267081 689,601.9112,205.0146,23.3163,53.9180,0.00000262 689,571.2792,212.0532,22.6723,55.2366,0.00000001 689,447.3456,212.2587,22.7734,54.5464,0.00000000 689,431.1538,215.7023,26.1901,61.0670,0.00000000 689,458.6052,219.8275,24.1526,54.8910,0.00000000 689,597.9003,1.0000,42.2464,166.4431,0.00000000 689,627.1893,1.0000,12.9574,49.4524,0.00000000 689,631.7456,486.6322,8.4011,25.5145,0.00000000 690,441.1860,244.6303,30.3429,61.7479,0.00000001 690,568.1853,232.3291,25.5579,60.1480,0.00000000 690,596.2590,246.1420,43.8877,266.0047,0.00000000 690,625.5953,279.4720,14.5514,124.9741,0.00000000 690,636.9134,285.5801,3.2333,64.5611,0.00000000 690,628.8584,459.6706,11.2883,52.4761,0.00000000 690,635.3677,487.4993,4.7790,24.6474,0.00000000 691,631.4741,486.2289,8.6726,25.9178,0.00000000 692,610.7201,207.4804,21.8096,54.9523,0.00062247 692,598.0581,212.5678,23.0113,52.5186,0.00000000 692,576.8049,227.1504,22.2014,59.9214,0.00000000 692,637.6407,199.4392,2.5060,61.5465,0.00000000 692,630.5052,190.5312,9.6415,73.6397,0.00000000 692,635.3892,487.4682,4.7575,24.6785,0.00000000 692,628.6413,459.7354,11.5054,52.4113,0.00000000 693,592.5622,207.8243,21.9940,47.2458,0.00000112 693,569.8020,216.2680,23.3685,53.1540,0.00000016 693,603.6463,196.4373,21.8303,52.7564,0.00000000 693,416.8617,227.9100,27.7334,55.5301,0.00000000 693,603.7310,223.1433,24.7987,59.4455,0.00000000 693,636.2145,204.2509,3.9322,62.1427,0.00000000 693,598.6574,220.8283,41.4893,268.0698,0.00000000 693,630.4947,211.0117,9.6520,83.7797,0.00000000 693,633.1745,296.1598,6.9722,83.3952,0.00000000 693,635.2260,487.2003,4.9207,24.9464,0.00000000 693,628.1973,458.6233,11.9494,53.5234,0.00000000 694,510.3893,225.5196,36.1996,86.3938,0.00000012 694,519.4750,208.6955,27.8926,54.6880,0.00000000 694,472.3203,214.6745,27.0776,60.0373,0.00000000 694,595.9387,182.4237,44.2080,267.9201,0.00000000 694,631.5806,191.4845,8.5661,78.3112,0.00000000 694,636.3765,237.3028,3.7702,67.7370,0.00000000 694,635.2474,487.0784,4.8993,25.0683,0.00000000 694,628.6315,459.0663,11.5152,53.0804,0.00000000 695,551.5582,214.0413,21.5510,50.4196,0.99918282 695,478.8231,212.3547,22.1054,48.1517,0.99791551 695,610.0735,217.3261,21.6340,51.8590,0.48801956 695,597.7160,219.2709,21.3975,50.0337,0.00000207 695,567.0638,214.9327,21.2729,50.1673,0.00000008 695,585.5298,210.8199,22.2677,51.1393,0.00000000 695,635.8017,216.6632,4.3450,59.9022,0.00000000 696,558.0244,212.8170,24.2385,56.7641,0.99999964 696,546.5972,204.0401,20.2046,53.5856,0.00000000 696,572.1304,210.6144,24.0318,52.5296,0.00000000 696,547.8860,187.1929,51.3733,99.5103,0.00000000 696,519.4506,105.7924,102.1797,213.9605,0.00000000 696,635.5003,487.3201,4.6464,24.8266,0.00000000 696,628.3262,459.5931,11.8205,52.5536,0.00000000 697,630.8709,1.0000,9.2758,48.3624,0.00000000 697,633.4023,143.3143,6.7444,77.2507,0.00000000 697,635.3205,487.6272,4.8262,24.5195,0.00000000 697,628.3010,459.3983,11.8457,52.7484,0.00000000 698,600.2985,145.3147,39.8482,265.7191,0.00000000 698,631.0528,191.3187,9.0939,87.5878,0.00000000 698,635.2871,487.2020,4.8596,24.9447,0.00000000 698,628.1487,458.9967,11.9980,53.1500,0.00000000 699,447.4724,239.6197,24.2884,56.6068,0.00000000 699,628.4608,1.0000,11.6859,51.1968,0.00000000 699,631.5373,486.2583,8.6094,25.8884,0.00000000 700,450.5458,197.0628,22.5205,51.8657,0.00000440 700,636.2053,250.6776,3.9414,62.6732,0.00000000 700,636.3271,494.2282,3.8196,17.9185,0.00000000 700,629.5828,480.5983,10.5639,31.5484,0.00000000 701,631.6834,486.8987,8.4633,25.2480,0.00000000 702,542.5657,216.9239,24.6797,56.1227,0.00000007 702,3.9142,242.6517,73.3148,176.2043,0.00000000 702,635.3649,487.4054,4.7818,24.7413,0.00000000 702,628.1746,459.4074,11.9721,52.7393,0.00000000 703,88.6859,184.5968,92.9190,270.1385,0.00000000 703,636.2761,494.1427,3.8706,18.0040,0.00000000 703,629.4774,481.0596,10.6693,31.0871,0.00000000 704,510.3862,271.0881,28.1001,59.9424,0.00000000 704,11.0777,181.1234,88.3638,259.4057,0.00000000 704,632.9898,272.4922,7.1569,77.4403,0.00000000 704,636.2295,493.7667,3.9172,18.3800,0.00000000 704,629.3755,479.9938,10.7712,32.1529,0.00000000 705,636.1285,493.9681,4.0182,18.1786,0.00000000 705,629.4710,481.4746,10.6757,30.6721,0.00000000 706,636.3148,493.9156,3.8319,18.2311,0.00000000 706,629.5588,480.8388,10.5879,31.3079,0.00000000 707,129.3235,214.5329,28.8602,60.2683,0.00000000 707,629.0104,1.0000,11.1363,51.3644,0.00000000 707,632.0845,487.2949,8.0622,24.8518,0.00000000 708,468.4402,204.0260,22.9290,50.9879,0.00000006 708,495.7451,209.5329,23.4201,51.0670,0.00000002 708,127.4951,209.1136,28.8720,62.5160,0.00000000 708,482.8690,218.2626,21.6584,43.9991,0.00000000 708,399.7903,233.6916,24.1702,54.0257,0.00000000 708,356.6451,219.3386,23.0032,50.1323,0.00000000 708,632.7590,1.0000,7.3877,32.3965,0.00000000 708,628.0246,458.6927,12.1221,53.4540,0.00000000 708,635.4737,487.7163,4.6730,24.4304,0.00000000 709,610.8333,220.0066,24.1352,56.9621,0.99986655 709,515.4108,205.2903,23.9181,52.0489,0.99973166 709,574.7364,221.4348,22.2956,51.2767,0.99912250 709,589.3826,217.4013,22.2647,52.4935,0.00000003 709,626.7253,212.2437,13.4214,77.8966,0.00000000 710,596.0453,206.1040,30.6694,63.1328,0.95730287 710,461.1557,209.1716,25.5564,47.4991,0.00000655 710,529.5409,212.3941,21.6102,53.1720,0.00000000 710,637.6652,200.0364,2.4815,61.8073,0.00000000 710,631.3635,486.4224,8.7832,25.7243,0.00000000 711,543.9662,211.5808,24.5331,53.2248,0.98369527 711,590.0691,199.1292,25.0868,50.7901,0.00000004 711,445.1520,205.0992,25.6898,53.8364,0.00000000 711,529.4110,205.9304,26.2552,55.5396,0.00000000 711,561.5992,213.2816,24.6305,51.5351,0.00000000 711,534.0481,183.1543,49.1571,96.8669,0.00000000 711,635.6611,487.7600,4.4856,24.3867,0.00000000 711,628.0281,460.1214,12.1186,52.0253,0.00000000 712,636.4250,493.9998,3.7217,18.1469,0.00000000 712,629.6037,480.6563,10.5430,31.4904,0.00000000 713,532.2426,207.6702,25.1123,54.4078,1.00000000 713,83.3731,206.9038,36.2509,80.9477,0.00000000 713,520.0404,183.2152,51.7893,93.7148,0.00000000 713,600.3753,54.1398,39.7714,268.2468,0.00000000 713,55.0036,151.4422,87.6543,219.9277,0.00000000 713,634.0233,211.9135,6.1234,78.7558,0.00000000 713,635.6849,152.0463,4.4618,67.4769,0.00000000 713,625.9090,96.6054,14.2377,130.6880,0.00000000 713,493.9716,94.5420,100.8440,208.8247,0.00000000 713,631.4365,486.9016,8.7102,25.2451,0.00000000 714,618.7954,216.7998,21.3513,64.6180,0.00657069 714,30.6509,203.6500,42.5042,105.6500,0.00000000 714,336.8725,186.1439,24.3325,53.4578,0.00000000 714,633.9898,205.3604,6.1569,66.2078,0.00000000 714,19.4809,167.0256,83.3077,239.2092,0.00000000 714,594.0306,168.1848,46.1161,251.3742,0.00000000 714,630.4157,232.5105,9.7310,84.2309,0.00000000 714,636.3862,493.9113,3.7605,18.2354,0.00000000 714,627.6704,459.3646,12.4763,52.7821,0.00000000 715,346.1037,166.2706,25.6773,57.9115,0.00000001 715,636.3381,493.5719,3.8086,18.5748,0.00000000 715,629.4065,480.8495,10.7402,31.2972,0.00000000 716,636.2691,494.0032,3.8776,18.1435,0.00000000 716,629.4103,481.0446,10.7364,31.1021,0.00000000 717,187.9803,288.1216,21.8725,52.6799,0.00000008 717,23.5157,187.7215,66.4275,166.0577,0.00000000 717,601.3152,395.2077,38.8315,116.9390,0.00000000 717,636.0184,492.9132,4.1283,19.2335,0.00000000 717,629.2020,479.7355,10.9447,32.4112,0.00000000 718,405.3676,219.3374,23.9282,49.7465,0.00000000 718,67.4994,200.4101,68.1882,171.6987,0.00000000 718,636.2247,493.8869,3.9220,18.2598,0.00000000 718,629.4973,480.3793,10.6494,31.7674,0.00000000 719,387.5899,209.1158,24.8115,49.6519,0.00023796 719,53.0899,196.2320,63.7840,151.1926,0.00000000 719,631.9490,487.0966,8.1977,25.0501,0.00000000 720,405.1748,205.9093,26.6769,59.4901,0.93996996 720,65.8608,199.8640,46.7408,115.8753,0.00000000 720,63.3337,170.8458,83.5514,258.7112,0.00000000 720,367.9418,142.7120,89.4412,210.2855,0.00000000 720,628.6647,458.9718,11.4820,53.1749,0.00000000 720,636.1542,488.5714,3.9925,23.5753,0.00000000 721,450.6358,210.6966,30.8675,74.4825,0.99999988 721,44.8275,205.5768,47.6128,113.3271,0.00000000 721,380.0335,214.0768,22.2155,53.3710,0.00000000 721,71.5000,234.6700,32.3149,77.2353,0.00000000 721,46.9988,168.4244,86.6157,241.5892,0.00000000 721,423.7605,179.3985,84.5555,215.7501,0.00000000 721,635.1923,486.6894,4.9544,25.4573,0.00000000 722,439.2746,215.6858,25.7583,55.5238,0.01298790 722,44.9229,192.4374,47.2553,123.2046,0.00000000 722,396.2272,154.7379,54.6744,127.8660,0.00000000 722,420.8437,219.3645,34.8529,74.2338,0.00000000 722,48.1028,154.1809,83.4168,244.4993,0.00000000 722,635.3940,193.1700,4.7527,65.4343,0.00000000 722,635.3246,487.2201,4.8221,24.9266,0.00000000 723,30.5089,196.0637,46.0111,119.3858,0.00002613 723,61.1073,252.8071,24.4506,60.8675,0.00000006 723,355.9315,189.2995,26.3784,54.3702,0.00000000 723,33.7278,193.2211,80.8808,229.7591,0.00000000 723,627.9808,458.7096,12.1659,53.4371,0.00000000 723,636.3350,494.0032,3.8117,18.1435,0.00000000 724,386.4127,212.6755,24.0169,55.8577,0.68554729 724,401.0042,209.4810,23.8771,54.7885,0.45163015 724,39.8676,254.2203,30.1015,66.6356,0.00000693 724,8.8268,215.0299,46.2206,108.0832,0.00000000 724,14.6078,161.0838,81.1869,239.8063,0.00000000 724,378.3297,188.8762,47.8531,98.4428,0.00000000 724,352.5684,105.2171,101.6126,215.5410,0.00000000 724,627.9810,458.6526,12.1657,53.4941,0.00000000 724,635.2675,486.9439,4.8792,25.2028,0.00000000 725,485.2176,208.8167,40.3990,93.0370,0.99999994 725,462.7357,214.7842,34.3183,87.7094,0.99994439 725,440.7558,203.0868,87.5932,215.1085,0.00000000 725,634.9667,486.5719,5.1800,25.5748,0.00000000 726,86.4335,285.9240,22.5681,55.4174,0.00000018 726,602.3188,397.5789,37.8279,114.5678,0.00000000 726,627.0453,456.2568,13.1014,55.8899,0.00000000 726,634.7078,485.5949,5.4389,26.5518,0.00000000 727,387.3592,199.1727,21.0612,53.0710,0.33361515 727,425.9598,218.7435,34.4499,71.1362,0.00000000 727,371.8297,178.0373,27.9973,53.9827,0.00000000 727,601.9514,396.4319,38.1953,115.7148,0.00000000 727,34.5851,183.5867,92.4721,258.2611,0.00000000 727,627.4448,456.6204,12.7019,55.5263,0.00000000 727,636.1364,492.8145,4.0103,19.3322,0.00000000 728,540.5386,214.9476,41.7787,101.0974,0.68605262 728,564.3398,215.4870,38.8869,90.6362,0.00000000 728,380.5429,196.4931,22.7551,51.8668,0.00000000 728,535.7314,268.2858,38.1031,82.3065,0.00000000 728,602.0918,395.2024,38.0549,116.9443,0.00000000 728,516.5705,188.6678,86.6055,230.2053,0.00000000 728,636.2540,155.4624,3.8927,62.4915,0.00000000 728,635.9216,492.1069,4.2251,20.0398,0.00000000 728,626.8121,454.8825,13.3346,57.2642,0.00000000 729,402.1051,210.0563,23.9348,52.0960,0.95416164 729,378.8335,206.8628,21.6811,49.9532,0.00001642 729,360.1912,197.2595,22.7051,52.5184,0.00000000 729,602.5263,396.4479,37.6204,115.6988,0.00000000 729,389.5634,186.0136,45.6653,101.1901,0.00000000 729,626.8427,455.2873,13.3040,56.8594,0.00000000 729,636.2874,492.5937,3.8593,19.5530,0.00000000 730,443.2143,212.3969,28.1746,65.4183,1.00000000 730,408.4320,212.5767,22.8582,54.8137,0.99814439 730,390.3856,211.8672,22.2618,54.0583,0.99248481 730,372.2852,214.9782,23.7115,52.6494,0.00001379 730,629.5692,480.3985,10.5775,31.7482,0.00000000 731,463.5648,215.4135,27.1550,66.4450,1.00000000 731,525.9839,212.1054,37.1256,95.0955,1.00000000 731,439.8888,211.9430,27.4275,66.8064,0.99999988 731,406.1902,216.8456,27.9540,56.2616,0.99672973 731,423.6656,215.1433,26.9102,62.2863,0.35396162 732,563.7501,210.3823,41.2692,109.0966,1.00000000 732,524.3663,203.1145,43.7088,109.0077,0.99999994 732,483.9818,210.1102,37.6007,97.0143,0.99999124 732,509.6665,210.8573,33.9255,87.1353,0.30936942 733,384.8375,199.9388,34.8643,71.5862,0.00000000 733,602.8203,397.6983,37.3264,114.4484,0.00000000 733,626.9371,456.1942,13.2096,55.9525,0.00000000 733,636.4601,492.6137,3.6866,19.5330,0.00000000 734,462.4070,200.1869,56.5052,129.7487,0.00000000 734,1.0000,228.9474,56.6987,243.8922,0.00000000 734,636.6084,493.5464,3.5383,18.6003,0.00000000 734,629.7814,479.4879,10.3653,32.6588,0.00000000 735,601.8716,396.0645,38.2751,116.0822,0.00000000 735,1.0000,239.7156,56.6862,265.2328,0.00000000 735,636.0064,493.5814,4.1403,18.5653,0.00000000 735,627.1209,458.3025,13.0258,53.8442,0.00000000 736,601.7972,395.2960,38.3495,116.8507,0.00000000 736,634.2023,101.8370,5.9444,78.3181,0.00000000 736,635.8903,493.4245,4.2564,18.7222,0.00000000 736,629.3874,481.8283,10.7593,30.3184,0.00000000 737,602.0587,396.2765,38.0880,115.8702,0.00000000 737,629.3601,480.3234,10.7866,31.8233,0.00000000 737,635.9808,492.6212,4.1659,19.5255,0.00000000 738,636.1885,493.8719,3.9582,18.2748,0.00000000 738,627.3258,459.6067,12.8209,52.5400,0.00000000 739,322.2203,180.9624,25.2034,59.1205,0.00000000 739,29.0788,225.3040,27.4323,59.6517,0.00000000 739,636.2325,494.0442,3.9142,18.1025,0.00000000 739,629.4726,481.0680,10.6741,31.0787,0.00000000 740,31.0235,262.5299,33.2276,78.8471,0.00000000 740,636.1185,494.1440,4.0282,18.0027,0.00000000 740,629.4154,481.8827,10.7313,30.2640,0.00000000 741,82.4921,199.9375,28.3692,60.9930,0.00000011 741,378.4719,167.5798,34.2674,80.2159,0.00000002 741,632.0090,202.6345,8.1377,81.7497,0.00000000 741,1.0000,213.4352,55.3384,261.1692,0.00000000 741,634.2013,163.8440,5.9454,78.5848,0.00000000 741,636.1547,493.8719,3.9920,18.2748,0.00000000 741,629.3301,481.4239,10.8166,30.7228,0.00000000 742,387.2982,115.2662,47.6878,124.5793,0.00000223 742,388.3807,86.6506,86.1501,250.6726,0.00000000 742,636.0346,493.7007,4.1121,18.4460,0.00000000 742,629.2802,481.6133,10.8665,30.5334,0.00000000 743,407.1764,111.6573,60.4078,157.5312,0.00000084 743,41.0385,203.9886,26.3022,54.6999,0.00000000 743,160.0378,216.7050,24.4535,54.5652,0.00000000 743,14.3740,214.1992,28.1237,57.0855,0.00000000 743,633.7917,130.7960,6.3550,76.0254,0.00000000 743,633.5580,172.7535,6.5887,75.7491,0.00000000 743,636.1107,493.7525,4.0360,18.3942,0.00000000 743,627.3881,459.2349,12.7586,52.9118,0.00000000 744,442.8399,102.3887,66.4851,181.8332,0.00000002 744,487.3043,105.3719,41.5929,93.6850,0.00000000 744,637.6609,159.0697,2.4858,64.9969,0.00000000 744,635.0500,118.1616,5.0967,77.7606,0.00000000 744,471.0728,72.6333,93.6828,246.2452,0.00000000 744,630.8148,153.9021,9.3319,82.5962,0.00000000 744,635.9738,494.0952,4.1729,18.0515,0.00000000 744,627.3035,459.5881,12.8432,52.5586,0.00000000 745,550.8555,76.7037,35.1798,76.5671,0.00000000 745,526.7949,34.6032,67.6832,181.1631,0.00000000 745,561.5837,76.3602,78.5630,256.8298,0.00000000 745,481.2052,54.4704,95.3738,279.4272,0.00000000 745,1.0000,180.8615,51.6249,268.9054,0.00000000 745,626.2438,64.7938,13.9029,130.2620,0.00000000 745,633.7380,1.0000,6.4087,31.4052,0.00000000 745,598.0293,1.0000,42.1174,159.4072,0.00000000 745,631.0358,132.6829,9.1109,100.0709,0.00000000 745,635.4952,78.1428,4.6515,66.0361,0.00000000 745,635.8563,493.5417,4.2904,18.6050,0.00000000 745,627.0652,459.1316,13.0815,53.0151,0.00000000 746,427.1124,210.3776,21.7957,54.2902,0.00000012 746,598.9394,1.0000,41.2073,163.8441,0.00000000 746,625.2721,1.0000,14.8746,60.7191,0.00000000 746,1.0000,210.8093,55.5443,262.0406,0.00000000 746,633.8882,1.0000,6.2585,32.4505,0.00000000 746,635.6418,493.6259,4.5049,18.5208,0.00000000 746,629.2822,482.0693,10.8645,30.0774,0.00000000 747,383.5019,196.0660,24.0492,50.3611,0.00000003 747,431.8867,202.4429,22.7524,50.3583,0.00000002 747,421.0776,191.4503,23.3205,51.4369,0.00000000 747,447.7468,197.3848,24.6768,57.1100,0.00000000 747,547.4335,57.7422,87.8309,285.2548,0.00000000 747,627.7168,1.0000,12.4299,47.9544,0.00000000 747,626.0297,150.6962,14.1170,130.8315,0.00000000 747,1.0000,207.5645,55.4387,266.5998,0.00000000 747,636.5872,152.9073,3.5595,64.8596,0.00000000 747,602.3275,394.8219,37.8192,117.3248,0.00000000 747,635.8635,493.7645,4.2832,18.3822,0.00000000 747,626.8346,458.9252,13.3121,53.2215,0.00000000 748,395.2921,197.9626,24.0603,48.0717,0.95489401 748,456.9962,201.2053,23.4779,51.1275,0.85789031 748,504.2071,191.9420,22.1814,51.5520,0.00017549 748,483.2758,189.4618,21.8895,50.9241,0.00000025 748,377.6247,189.4351,24.6042,52.9702,0.00000000 748,446.2070,161.2233,50.3587,108.3139,0.00000000 748,629.3748,1.0000,10.7719,40.3541,0.00000000 748,635.7781,488.3006,4.3686,23.8461,0.00000000 748,628.2259,461.4459,11.9208,50.7008,0.00000000 749,507.7895,204.4381,24.6955,57.7304,0.99999994 749,542.7570,201.1484,22.1778,50.7136,0.00581256 749,530.1210,200.1749,22.3587,55.4120,0.00000004 749,453.1599,196.4252,22.8235,49.6087,0.00000000 749,373.6537,200.5565,21.8492,55.8054,0.00000000 749,627.1427,1.0000,13.0040,46.3040,0.00000000 749,633.8372,208.2586,6.3095,72.7851,0.00000000 749,464.4341,110.7774,96.9303,208.0795,0.00000000 749,636.3400,492.4108,3.8067,19.7359,0.00000000 749,626.9618,456.3438,13.1849,55.8029,0.00000000 750,456.2173,215.0493,28.1348,64.8212,1.00000000 750,595.4841,219.3604,25.1141,63.8673,0.99999410 750,611.6309,223.0568,28.0579,69.3684,0.74204916 750,471.1238,207.7385,27.6606,54.7285,0.00000001 750,632.0165,219.4068,8.1302,76.4277,0.00000000 750,629.2973,481.0110,10.8494,31.1357,0.00000000 751,537.0213,209.3096,38.4138,89.0673,1.00000000 751,490.0904,202.7115,21.2904,51.4677,0.99999934 751,515.6380,203.1792,21.0176,51.5023,0.97337759 751,124.5508,199.9177,24.9486,49.2517,0.00000000 751,500.4223,199.2398,27.0313,47.9664,0.00000000 751,527.0645,207.7766,26.1275,57.5256,0.00000000 751,628.9673,480.8453,11.1794,31.3014,0.00000000 752,540.0309,192.7277,23.6276,56.1362,1.00000000 752,569.4601,192.5745,23.8077,54.1518,1.00000000 752,343.2939,167.8553,21.9663,54.3869,0.00000013 752,454.3421,231.5845,23.2526,54.0129,0.00000000 752,552.8259,197.5415,29.0206,52.7505,0.00000000 752,377.8651,187.3994,21.2959,58.8605,0.00000000 752,397.9968,222.9119,27.0928,58.0462,0.00000000 752,528.6946,170.3108,49.9778,98.9484,0.00000000 752,634.0236,164.0962,6.1231,80.7224,0.00000000 752,625.8391,458.7432,14.3076,53.4035,0.00000000 752,634.9618,488.5518,5.1849,23.5949,0.00000000 753,607.3230,271.0058,25.0352,64.7528,0.00010666 753,397.1028,191.9983,26.2421,66.1689,0.00000001 753,359.9248,156.7977,36.1467,80.4449,0.00000000 753,350.6531,169.6855,23.0645,57.1860,0.00000000 753,584.9874,262.8894,35.8438,85.3142,0.00000000 753,621.7808,229.1500,18.3659,129.4368,0.00000000 753,592.6300,217.4671,47.5167,261.8536,0.00000000 753,633.4863,269.3238,6.6604,73.8505,0.00000000 753,637.9899,205.8531,2.1568,63.0592,0.00000000 753,632.0826,195.8678,8.0641,77.4059,0.00000000 753,629.2889,482.3562,10.8578,29.7905,0.00000000 754,374.1244,181.6657,28.5268,62.4059,0.00000001 754,359.9843,192.8848,24.4323,58.5046,0.00000000 754,111.1895,228.4797,24.4736,59.4528,0.00000000 754,414.7861,176.6150,33.9075,67.0120,0.00000000 754,446.6252,174.8042,45.5730,117.4601,0.00000000 754,429.1135,108.7500,86.4890,233.4037,0.00000000 754,601.9408,395.2098,38.2059,116.9369,0.00000000 754,635.9720,493.7397,4.1747,18.4070,0.00000000 754,629.3380,481.6859,10.8087,30.4608,0.00000000 755,438.0514,186.6402,27.5948,60.7814,0.01254325 755,368.2588,200.8894,22.7067,52.8398,0.00000020 755,466.3407,196.8375,23.7303,55.5782,0.00000020 755,439.0886,148.6859,50.5847,112.8056,0.00000000 755,628.3533,1.0000,11.7934,47.3956,0.00000000 755,598.1836,1.0000,41.9631,161.7994,0.00000000 755,601.5918,393.1386,38.5549,119.0081,0.00000000 755,444.7718,156.9453,87.6054,259.2789,0.00000000 755,625.9902,455.6891,14.1565,56.4576,0.00000000 755,400.7563,96.8438,96.8228,224.2966,0.00000000 755,635.8229,492.6081,4.3238,19.5386,0.00000000 756,515.6550,200.9340,26.6852,59.5882,0.99974328 756,478.3001,198.4052,23.5455,53.2278,0.84720886 756,495.0525,200.2864,24.6280,55.6201,0.00000009 756,385.7866,187.6073,25.6031,59.7223,0.00000000 756,527.4245,186.8146,26.2561,56.8538,0.00000000 756,485.5999,177.6597,51.2788,124.7913,0.00000000 756,629.6887,481.2899,10.4580,30.8568,0.00000000 757,550.2154,206.5952,22.5167,55.9045,0.99999952 757,590.8359,202.8880,24.3269,54.2650,0.99966425 757,572.2739,205.4129,21.7143,52.4446,0.94771862 757,469.0714,203.9931,29.0560,49.4070,0.00000959 757,537.2531,208.2815,21.8131,56.4195,0.00000001 757,502.4349,175.6904,85.6554,243.7109,0.00000000 757,629.5325,480.7358,10.6142,31.4109,0.00000000 758,211.5898,217.9924,25.6051,53.6047,0.00000000 758,603.4285,395.1498,36.7182,116.9969,0.00000000 758,627.0019,456.9309,13.1448,55.2158,0.00000000 758,636.3841,493.6589,3.7626,18.4878,0.00000000 759,602.4341,393.2845,37.7126,118.8622,0.00000000 759,629.4025,481.0301,10.7442,31.1166,0.00000000 759,635.8921,493.6096,4.2546,18.5371,0.00000000 760,627.7388,1.0000,12.4079,49.3928,0.00000000 760,635.9623,494.0894,4.1844,18.0573,0.00000000 760,629.4050,482.2431,10.7417,29.9036,0.00000000 761,356.5242,230.9487,24.5818,54.9842,0.00000000 761,634.1284,1.0000,6.0183,31.2648,0.00000000 761,636.1810,494.0307,3.9657,18.1160,0.00000000 761,629.3952,481.4205,10.7515,30.7262,0.00000000 762,633.2673,1.0000,6.8794,36.9862,0.00000000 762,636.2988,494.2625,3.8479,17.8842,0.00000000 762,629.5436,481.6379,10.6031,30.5088,0.00000000 763,632.6129,1.0000,7.5338,38.2195,0.00000000 763,636.3738,494.1389,3.7729,18.0078,0.00000000 763,628.0198,459.7106,12.1269,52.4361,0.00000000 764,632.9054,1.0000,7.2413,38.8221,0.00000000 764,636.4174,493.9877,3.7293,18.1590,0.00000000 764,627.9942,459.5031,12.1525,52.6436,0.00000000 765,388.6335,195.0859,21.3533,45.7717,0.00000003 765,399.4703,185.1880,22.9485,53.3523,0.00000000 765,636.1346,494.2014,4.0121,17.9453,0.00000000 765,629.5325,481.0115,10.6142,31.1352,0.00000000 766,407.3325,204.7123,20.4289,46.4619,0.00000042 766,395.0654,200.2413,20.4706,47.9557,0.00000000 766,632.7892,1.0000,7.3575,38.3991,0.00000000 766,636.2004,493.7305,3.9463,18.4162,0.00000000 766,629.5041,480.6001,10.6426,31.5466,0.00000000 767,426.9624,205.7065,22.2594,50.3436,0.00000991 767,406.0440,204.4874,22.2602,50.4679,0.00000000 767,628.2923,1.0000,11.8544,47.1648,0.00000000 767,636.2750,494.0041,3.8717,18.1426,0.00000000 767,629.5410,480.4033,10.6057,31.7434,0.00000000 768,446.7982,199.8089,22.4548,51.1170,0.99995035 768,427.0114,198.7967,21.4500,49.7313,0.00000003 768,398.4594,189.8151,23.1567,50.7603,0.00000000 768,636.1613,494.0670,3.9854,18.0797,0.00000000 768,629.4625,481.2149,10.6842,30.9318,0.00000000 769,483.8274,204.7679,23.0076,54.0563,1.00000000 769,451.8076,205.8064,20.6751,47.7348,0.00085676 769,417.1666,195.7758,21.8097,48.2875,0.00000872 769,469.4722,202.0999,22.9021,48.5447,0.00000001 769,495.9582,203.8041,26.2151,55.0115,0.00000000 769,471.7633,173.6960,51.6154,98.2566,0.00000000 769,440.1557,113.7275,103.0185,221.0046,0.00000000 769,633.7217,1.0000,6.4250,35.9977,0.00000000 769,636.3444,493.9536,3.8023,18.1931,0.00000000 769,627.6108,458.8458,12.5359,53.3009,0.00000000 770,519.3033,204.4274,24.5060,58.2172,1.00000000 770,428.9269,197.7084,22.9669,49.2539,0.00034351 770,461.0931,206.7629,22.5662,49.6477,0.00000005 770,532.5153,198.3703,23.8503,52.4322,0.00000000 770,504.6778,207.5030,25.9539,56.8633,0.00000000 770,632.5645,1.0000,7.5822,35.1834,0.00000000 770,488.8315,86.8675,102.0164,211.8274,0.00000000 770,636.4462,494.2529,3.7005,17.8938,0.00000000 770,629.5275,480.5305,10.6192,31.6162,0.00000000 771,562.0793,205.9549,28.3573,68.6258,1.00000000 771,467.9541,195.2626,23.6789,51.0891,0.00000553 771,453.6317,195.2613,22.8975,53.0043,0.00000000 771,578.9808,205.6418,25.5591,56.8125,0.00000000 771,439.8571,195.1484,21.1421,50.0805,0.00000000 771,636.3456,182.9830,3.8011,63.2133,0.00000000 771,634.1199,1.0000,6.0268,31.4357,0.00000000 771,532.1196,103.9476,99.3533,214.5721,0.00000000 771,636.3428,494.0794,3.8039,18.0673,0.00000000 771,629.4788,480.6546,10.6679,31.4921,0.00000000 772,472.2602,204.7389,22.0271,49.9605,0.00000039 772,412.1744,190.0475,21.1664,52.3825,0.00000001 772,455.7795,200.6772,22.9600,50.5206,0.00000001 772,611.1522,200.7349,23.3872,56.4545,0.00000000 772,500.0651,217.4519,27.2168,65.2582,0.00000000 772,637.3914,192.2621,2.7553,62.1066,0.00000000 772,628.7869,198.7969,11.3598,84.6944,0.00000000 772,636.2761,493.9107,3.8706,18.2360,0.00000000 772,627.5505,458.8830,12.5962,53.2637,0.00000000 773,633.7878,1.0000,6.3589,34.8281,0.00000000 773,635.4785,487.5781,4.6682,24.5686,0.00000000 773,628.0182,460.1462,12.1285,52.0005,0.00000000 774,465.1479,203.0616,24.4842,50.5889,0.00000032 774,636.1940,493.7682,3.9527,18.3785,0.00000000 774,629.3183,480.3146,10.8284,31.8321,0.00000000 775,460.5482,198.7397,25.8992,50.5685,0.00000029 775,413.3865,194.7441,20.4669,51.8616,0.00000000 775,43.7553,240.0688,31.3403,68.2757,0.00000000 775,459.7292,214.7999,36.0616,77.4630,0.00000000 775,23.4798,214.4059,58.6983,149.0034,0.00000000 775,636.1002,493.9803,4.0465,18.1664,0.00000000 775,629.5246,481.2616,10.6221,30.8851,0.00000000 776,602.5301,394.6780,37.6166,117.4687,0.00000000 776,636.1651,493.5668,3.9816,18.5799,0.00000000 776,627.0674,457.7631,13.0793,54.3836,0.00000000 777,435.4840,183.3960,33.5816,66.2920,0.00000000 777,480.6133,202.3153,54.3236,141.6722,0.00000000 777,497.9502,234.2533,29.7848,72.8305,0.00000000 777,635.5012,487.4662,4.6455,24.6805,0.00000000 777,628.1248,460.6835,12.0219,51.4632,0.00000000 778,8.1856,248.7234,29.9471,64.1204,0.00000000 778,1.0000,265.2990,33.3007,150.9893,0.00000000 778,602.3464,393.9760,37.8003,118.1707,0.00000000 778,548.4327,288.7988,91.1166,223.3479,0.00000000 778,630.8424,364.1386,9.3043,86.2484,0.00000000 778,635.9165,493.6595,4.2302,18.4872,0.00000000 778,629.2642,481.5808,10.8825,30.5659,0.00000000 779,432.1306,190.0977,23.5377,55.4725,0.00000000 779,617.7139,277.0908,22.4274,62.6548,0.00000000 779,14.9578,238.4784,38.5248,92.7103,0.00000000 779,443.8227,263.3208,28.3347,59.3106,0.00000000 779,1.0000,235.6553,55.7153,241.7643,0.00000000 779,600.3559,175.3086,39.7908,264.6330,0.00000000 779,629.4922,299.6118,10.6545,86.4983,0.00000000 779,635.4358,224.7975,4.7109,65.0522,0.00000000 779,635.0584,264.2925,5.0883,64.7186,0.00000000 779,636.1357,494.0420,4.0110,18.1047,0.00000000 779,629.4570,481.5034,10.6897,30.6433,0.00000000 780,9.7484,242.0110,35.1866,67.2663,0.00000003 780,635.5378,487.6414,4.6089,24.5053,0.00000000 780,628.0308,460.1967,12.1159,51.9500,0.00000000 781,434.2811,197.3586,22.3213,57.2913,0.00000233 781,412.6257,195.7185,22.3984,54.0445,0.00000008 781,520.8823,234.0414,28.3611,64.7983,0.00000002 781,636.1333,494.0206,4.0134,18.1261,0.00000000 781,627.5031,459.7707,12.6436,52.3760,0.00000000 782,412.6935,196.3921,20.1179,52.5147,0.00000000 782,432.5066,189.8250,21.9689,56.4671,0.00000000 782,636.3279,494.2554,3.8188,17.8913,0.00000000 782,629.5022,481.3051,10.6445,30.8416,0.00000000 783,633.9588,341.8840,6.1879,79.5552,0.00000000 783,635.6781,487.4362,4.4686,24.7105,0.00000000 783,628.0268,459.0670,12.1199,53.0797,0.00000000 784,411.5314,195.6085,22.2844,56.2650,0.00000000 784,634.0651,181.8758,6.0816,76.5711,0.00000000 784,636.2937,494.3065,3.8530,17.8402,0.00000000 784,629.5144,481.6258,10.6323,30.5209,0.00000000 785,636.0643,494.1508,4.0824,17.9959,0.00000000 785,629.4457,481.5791,10.7010,30.5676,0.00000000 786,636.2772,494.1806,3.8695,17.9661,0.00000000 786,627.6174,459.7218,12.5293,52.4249,0.00000000 787,636.1902,493.7610,3.9565,18.3857,0.00000000 787,629.3944,480.7350,10.7523,31.4117,0.00000000 788,409.9605,198.1173,20.5863,54.4567,0.00000006 788,602.3170,394.2548,37.8297,117.8919,0.00000000 788,636.1323,493.3782,4.0144,18.7685,0.00000000 788,626.9048,457.2796,13.2419,54.8671,0.00000000 789,410.8458,200.8687,22.5785,51.9491,0.00000000 789,636.2784,494.0012,3.8683,18.1455,0.00000000 789,629.4092,480.8738,10.7375,31.2729,0.00000000 790,636.2517,494.3852,3.8950,17.7615,0.00000000 790,627.6418,459.7754,12.5049,52.3713,0.00000000 791,624.7613,458.0361,15.3854,54.1106,0.00000000 791,602.4203,395.3383,37.7264,116.8084,0.00000000 791,634.3195,486.6410,5.8272,25.5057,0.00000000 792,634.1539,291.1285,5.9928,79.1897,0.00000000 792,636.0848,494.1341,4.0619,18.0126,0.00000000 792,627.5234,459.3432,12.6233,52.8035,0.00000000 793,392.7725,237.8755,35.8613,77.6401,0.00000000 793,636.4053,494.4541,3.7414,17.6926,0.00000000 793,629.5456,481.4626,10.6011,30.6841,0.00000000 794,79.8649,253.0699,24.2958,53.0905,0.00000000 794,636.4627,494.5426,3.6840,17.6041,0.00000000 794,629.5378,481.4586,10.6089,30.6881,0.00000000 795,381.4582,234.5019,26.7773,67.1974,0.00000029 795,636.4343,494.5325,3.7124,17.6142,0.00000000 795,629.6388,481.8271,10.5079,30.3196,0.00000000 796,635.6884,487.7669,4.4583,24.3798,0.00000000 796,628.1125,460.9029,12.0342,51.2438,0.00000000 797,412.0734,202.6281,22.3169,53.5463,0.00000000 797,636.3851,494.4088,3.7616,17.7379,0.00000000 797,629.5485,481.6035,10.5982,30.5432,0.00000000 798,364.9660,222.4984,35.5041,78.6228,0.00000000 798,636.3940,494.3651,3.7527,17.7816,0.00000000 798,627.7589,459.7277,12.3878,52.4190,0.00000000 799,634.3631,175.7338,5.7836,76.5941,0.00000000 799,635.6666,487.1966,4.4801,24.9501,0.00000000 799,628.0109,460.3542,12.1358,51.7925,0.00000000 800,636.3358,494.2220,3.8109,17.9247,0.00000000 800,629.5208,481.4900,10.6259,30.6567,0.00000000 801,637.2003,181.6049,2.9464,62.8250,0.00000000 801,632.9558,195.4747,7.1909,76.6519,0.00000000 801,635.6799,487.3841,4.4668,24.7626,0.00000000 801,627.9742,460.2376,12.1725,51.9091,0.00000000 802,636.2826,494.3219,3.8641,17.8248,0.00000000 802,629.5676,481.3792,10.5791,30.7675,0.00000000 803,630.4946,185.1172,9.6521,81.0068,0.00000000 803,638.0255,181.7965,2.1212,63.2969,0.00000000 803,629.6404,481.8921,10.5063,30.2546,0.00000000 804,630.6772,185.7273,9.4695,80.5442,0.00000000 804,636.4661,494.3640,3.6806,17.7827,0.00000000 804,629.5389,481.2307,10.6078,30.9160,0.00000000 805,411.8029,197.0148,21.4270,54.0703,0.00000000 805,636.3889,494.2219,3.7578,17.9248,0.00000000 805,629.5483,481.0839,10.5984,31.0628,0.00000000 806,636.3338,494.1497,3.8129,17.9970,0.00000000 806,629.4828,480.6965,10.6639,31.4502,0.00000000 807,636.3986,494.4151,3.7481,17.7316,0.00000000 807,627.8820,459.6846,12.2647,52.4621,0.00000000 808,636.4214,494.2989,3.7253,17.8478,0.00000000 808,629.4863,481.2578,10.6604,30.8889,0.00000000 809,636.3447,494.3675,3.8020,17.7792,0.00000000 809,629.5385,481.6136,10.6082,30.5331,0.00000000 810,635.7314,487.3518,4.4153,24.7949,0.00000000 810,628.1129,460.7273,12.0338,51.4194,0.00000000 811,635.6721,487.3712,4.4746,24.7755,0.00000000 811,627.9692,460.3109,12.1775,51.8358,0.00000000 812,636.3904,494.4113,3.7563,17.7354,0.00000000 812,629.6144,481.5482,10.5323,30.5985,0.00000000 813,636.2375,494.3589,3.9092,17.7878,0.00000000 813,629.5038,481.3457,10.6429,30.8010,0.00000000 814,1.0000,380.3444,59.1335,131.8023,0.00000000 814,635.6713,487.7487,4.4754,24.3980,0.00000000 814,628.1636,460.9301,11.9831,51.2166,0.00000000 815,636.4556,494.2819,3.6911,17.8648,0.00000000 815,629.5444,480.9474,10.6023,31.1993,0.00000000 816,475.3603,243.6977,35.0249,70.6795,0.00000000 816,623.2424,309.1966,16.9043,132.2455,0.00000000 816,597.4252,274.0539,42.7215,238.0928,0.00000000 816,634.6119,312.4336,5.5348,64.2302,0.00000000 816,635.6858,487.2914,4.4609,24.8553,0.00000000 816,628.0520,460.0972,12.0947,52.0495,0.00000000 817,622.1833,309.7814,17.9634,132.1815,0.00000000 817,631.5747,365.9600,8.5720,100.2158,0.00000000 817,593.2199,269.7549,46.9268,242.3918,0.00000000 817,633.9854,324.1878,6.1613,67.2692,0.00000000 817,636.4787,494.3271,3.6680,17.8196,0.00000000 817,629.5417,481.4467,10.6050,30.7000,0.00000000 818,621.3976,309.8967,18.7491,132.7934,0.00000000 818,634.7599,312.3309,5.3868,62.8895,0.00000000 818,593.9107,268.9512,46.2360,243.1955,0.00000000 818,634.5074,354.0561,5.6393,70.0342,0.00000000 818,635.5667,487.6792,4.5800,24.4675,0.00000000 818,628.0431,460.5879,12.1036,51.5588,0.00000000 819,621.7863,310.9016,18.3604,133.2998,0.00000000 819,631.9927,356.2753,8.1540,80.1356,0.00000000 819,596.0858,277.3825,44.0609,234.7642,0.00000000 819,633.7607,324.7932,6.3860,67.5217,0.00000000 819,636.2049,494.3317,3.9418,17.8150,0.00000000 819,629.5213,481.8280,10.6254,30.3187,0.00000000 820,621.5670,312.1698,18.5797,133.1490,0.00000000 820,631.6354,356.0113,8.5113,80.6790,0.00000000 820,596.2936,277.0623,43.8531,235.0844,0.00000000 820,633.3839,314.7390,6.7628,81.4957,0.00000000 820,629.5076,481.2363,10.6391,30.9104,0.00000000 821,621.6724,311.5622,18.4743,131.6916,0.00000000 821,632.0792,364.3412,8.0675,83.8349,0.00000000 821,593.4001,269.6891,46.7466,242.4576,0.00000000 821,633.6748,324.8044,6.4719,67.8006,0.00000000 821,636.4290,494.2847,3.7177,17.8620,0.00000000 821,629.4717,481.2279,10.6750,30.9188,0.00000000 822,622.5256,310.6730,17.6211,131.2750,0.00000000 822,592.9948,270.9966,47.1519,241.1501,0.00000000 822,634.1479,324.1326,5.9988,67.2276,0.00000000 822,635.6987,487.5367,4.4480,24.6100,0.00000000 822,628.1025,460.9256,12.0442,51.2211,0.00000000 823,200.8117,235.2420,25.6519,55.8537,0.00000000 823,621.8820,309.8427,18.2647,132.9288,0.00000000 823,592.7175,271.4634,47.4292,240.6833,0.00000000 823,634.7036,353.8130,5.4431,69.9857,0.00000000 823,636.4290,494.4423,3.7177,17.7044,0.00000000 823,629.6126,481.3159,10.5341,30.8308,0.00000000 824,205.5378,240.0529,29.3928,64.3017,0.00000000 824,621.9783,309.0342,18.1684,132.8181,0.00000000 824,593.6174,270.9662,46.5293,241.1805,0.00000000 824,632.7481,321.0368,7.3986,85.0585,0.00000000 824,635.6469,487.5637,4.4998,24.5830,0.00000000 824,628.2330,460.7852,11.9137,51.3615,0.00000000 825,79.2477,255.3016,24.4173,52.3036,0.00000000 825,621.4150,310.9104,18.7317,132.6675,0.00000000 825,634.0142,312.8094,6.1325,62.9321,0.00000000 825,594.6587,274.1945,45.4880,237.9522,0.00000000 825,632.5243,365.0565,7.6224,82.4764,0.00000000 825,636.4853,494.2858,3.6614,17.8609,0.00000000 825,627.7104,460.1043,12.4363,52.0424,0.00000000 826,625.4904,296.4475,14.6563,128.0864,0.00000000 826,594.9439,270.8786,45.2028,241.2681,0.00000000 826,632.8830,355.6181,7.2637,79.9696,0.00000000 826,637.0552,324.2775,3.0915,66.9224,0.00000000 826,635.5591,486.9625,4.5876,25.1842,0.00000000 826,627.7658,459.3358,12.3809,52.8109,0.00000000 827,208.3770,238.0367,24.3239,56.9937,0.00000000 827,622.3379,305.7361,17.8088,135.4070,0.00000000 827,593.9739,276.0895,46.1728,236.0572,0.00000000 827,635.6389,258.5850,4.5078,64.6530,0.00000000 827,633.2349,341.2581,6.9118,71.0547,0.00000000 827,636.7079,304.7570,3.4388,64.9550,0.00000000 827,630.2975,278.1626,9.8492,95.2046,0.00000000 827,635.6959,487.6159,4.4508,24.5308,0.00000000 827,628.0594,460.5022,12.0873,51.6445,0.00000000 828,548.2209,213.6936,24.9278,59.9663,0.69913518 828,42.3617,243.3999,25.1784,64.1751,0.00001831 828,623.8155,312.9414,16.3312,127.0207,0.00000000 828,594.2785,265.7752,45.8682,246.3715,0.00000000 828,510.5773,143.6556,92.8302,219.3643,0.00000000 828,634.5093,330.0577,5.6374,68.6227,0.00000000 828,635.3060,487.2542,4.8407,24.8925,0.00000000 828,627.6390,459.1611,12.5077,52.9856,0.00000000 829,488.2046,213.9884,23.6511,56.7869,0.00020191 829,42.5140,252.6212,27.6862,54.4484,0.00000003 829,476.9448,178.7623,46.2452,114.5333,0.00000000 829,628.5193,347.7478,11.6274,121.5096,0.00000000 829,597.8314,272.7443,42.3153,239.4024,0.00000000 829,637.2838,331.6674,2.8629,65.2217,0.00000000 829,635.7164,487.5778,4.4303,24.5689,0.00000000 829,627.9941,460.3839,12.1526,51.7628,0.00000000 830,473.8067,219.6002,22.3711,60.4432,0.00000089 830,424.3689,238.5664,25.2581,62.7254,0.00000000 830,418.0072,203.3638,25.7006,65.2064,0.00000000 830,461.5287,186.1699,45.8988,112.0042,0.00000000 830,408.4595,209.3446,49.7253,116.0168,0.00000000 830,603.2416,394.8762,36.9051,117.2705,0.00000000 830,633.3410,332.2913,6.8057,77.4481,0.00000000 830,636.1204,493.8010,4.0263,18.3457,0.00000000 830,629.6387,480.7766,10.5080,31.3701,0.00000000 831,467.1370,196.1618,25.6493,52.4854,0.00000000 831,405.5941,210.1267,24.7034,58.6139,0.00000000 831,636.1873,493.9070,3.9594,18.2397,0.00000000 831,629.4998,481.1945,10.6469,30.9522,0.00000000 832,23.4827,248.2730,36.7622,74.6379,0.00045612 832,462.2029,203.4434,22.8575,54.1118,0.00000004 832,603.3124,395.6234,36.8343,116.5233,0.00000000 832,636.3120,493.9844,3.8347,18.1623,0.00000000 832,629.6420,480.7967,10.5047,31.3500,0.00000000 833,481.8445,194.9073,21.6761,50.3640,0.07527592 833,61.1915,238.0705,32.6392,65.0743,0.00000023 833,81.8773,236.4190,29.3685,60.1972,0.00000000 833,461.3980,196.5587,23.5876,55.9128,0.00000000 833,603.3829,395.5960,36.7638,116.5507,0.00000000 833,636.2816,494.1640,3.8651,17.9827,0.00000000 833,627.6953,458.3417,12.4514,53.8050,0.00000000 834,491.0056,202.5873,23.7957,50.2348,0.72122979 834,507.9427,202.4951,24.7691,52.9478,0.00000001 834,437.4916,186.1987,26.8539,56.0697,0.00000000 834,460.0220,194.3184,24.3636,55.7102,0.00000000 834,603.5902,396.1687,36.5565,115.9780,0.00000000 834,636.3051,493.9272,3.8416,18.2195,0.00000000 834,627.5808,458.1281,12.5659,54.0186,0.00000000 835,514.9007,185.6392,22.7916,57.8873,0.00103412 835,636.4207,494.2493,3.7260,17.8974,0.00000000 835,629.5947,480.6164,10.5520,31.5303,0.00000000 836,489.4367,196.4786,24.7840,73.0324,0.00398535 836,542.3798,193.5968,22.8934,52.6472,0.00196130 836,500.1840,190.4945,23.7453,54.6214,0.00000006 836,512.8179,192.5892,26.4574,66.0677,0.00000000 836,638.3207,176.1757,1.8260,64.0930,0.00000000 836,625.0907,309.5711,15.0560,129.2195,0.00000000 836,632.1617,174.2522,7.9850,78.2293,0.00000000 836,637.9969,326.8163,2.1498,63.9074,0.00000000 836,597.9518,262.8854,42.1949,249.2613,0.00000000 836,634.9013,349.7122,5.2454,69.3908,0.00000000 836,629.5048,480.9330,10.6419,31.2137,0.00000000 837,543.9985,197.5822,21.3056,54.4508,0.98377377 837,565.5109,199.6169,22.3102,51.0040,0.94262713 837,532.3336,193.7606,21.1089,56.0191,0.00000000 837,633.8024,162.4787,6.3443,75.5284,0.00000000 837,636.5046,494.6877,3.6421,17.4590,0.00000000 837,629.8251,481.2877,10.3216,30.8590,0.00000000 838,218.2866,219.8008,23.0542,48.6147,0.00000000 838,627.6614,1.0000,12.4853,50.0821,0.00000000 838,1.0000,381.0455,58.8113,131.1012,0.00000000 838,1.0000,164.5995,52.1597,261.0441,0.00000000 838,635.3492,39.2758,4.7975,62.9040,0.00000000 838,636.3108,494.2309,3.8359,17.9158,0.00000000 838,629.6149,481.1714,10.5318,30.9753,0.00000000 839,486.5559,210.9699,25.7640,61.5429,0.00000009 839,469.4284,219.1254,33.1647,79.9850,0.00000000 839,1.0000,380.2650,59.5272,131.8817,0.00000000 839,636.4169,494.5388,3.7298,17.6079,0.00000000 839,627.9807,459.6647,12.1660,52.4820,0.00000000 840,549.0598,235.7587,34.4627,79.9489,0.00000005 840,564.5648,374.0738,24.2006,59.0489,0.00000000 840,308.9334,258.6910,91.9524,253.4557,0.00000000 840,602.4276,395.2693,37.7191,116.8774,0.00000000 840,636.0430,493.9370,4.1037,18.2097,0.00000000 840,629.5328,480.7443,10.6139,31.4024,0.00000000 841,550.7591,224.8655,21.6992,51.4370,0.04596845 841,537.2578,226.8080,21.8665,53.0135,0.00000000 841,599.8651,209.6748,40.2816,260.8779,0.00000000 841,625.5468,252.3815,14.5999,124.1439,0.00000000 841,630.4553,218.0654,9.6914,76.3148,0.00000000 841,637.4631,231.3463,2.6836,61.6095,0.00000000 841,635.6097,278.7722,4.5370,70.5734,0.00000000 841,636.1078,494.1103,4.0389,18.0364,0.00000000 841,629.4203,482.1124,10.7264,30.0343,0.00000000 842,560.7256,221.9700,24.4878,51.3939,0.03914401 842,573.4771,218.2260,24.6501,50.3210,0.00000000 842,601.2062,216.8920,27.6309,63.6193,0.00000000 842,588.1365,223.4942,24.9641,58.2645,0.00000000 842,551.1756,187.1435,45.5341,113.8131,0.00000000 842,628.5786,1.0000,11.5681,49.7132,0.00000000 842,628.6282,225.9326,11.5185,83.1984,0.00000000 842,637.0759,221.3121,3.0708,63.9756,0.00000000 842,632.6582,187.4374,7.4885,76.9507,0.00000000 842,636.1470,494.2656,3.9997,17.8811,0.00000000 842,627.5017,459.8454,12.6450,52.3013,0.00000000 843,634.1027,188.7174,6.0440,77.6548,0.00000000 843,601.1998,1.0000,38.9469,215.1878,0.00000000 843,636.5676,38.3800,3.5791,64.0719,0.00000000 843,627.8191,1.0000,12.3276,50.7825,0.00000000 843,634.1439,62.4276,6.0028,80.6436,0.00000000 843,636.2995,494.2613,3.8472,17.8854,0.00000000 843,629.5033,481.2993,10.6434,30.8474,0.00000000 844,416.7827,237.8679,22.9234,56.7859,0.00000007 844,36.2999,189.3227,73.1682,188.5017,0.00000000 844,636.6199,189.2485,3.5268,64.1135,0.00000000 844,629.4711,480.4222,10.6756,31.7245,0.00000000 845,245.9957,273.1531,25.0856,61.6080,0.00000000 845,356.7378,181.9650,26.9908,50.5919,0.00000000 845,228.8269,223.6455,51.3417,122.3749,0.00000000 845,636.4062,494.4387,3.7405,17.7080,0.00000000 845,629.6489,481.0074,10.4978,31.1393,0.00000000 846,371.7213,205.2687,23.2305,56.8539,0.00000011 846,279.0096,218.9624,40.0810,117.3104,0.00000000 846,256.4066,204.6067,81.8923,230.0919,0.00000000 846,628.5308,1.0000,11.6159,52.3067,0.00000000 846,603.1064,396.2673,37.0403,115.8794,0.00000000 846,629.5901,479.4534,10.5566,32.6933,0.00000000 846,636.2005,493.4303,3.9462,18.7164,0.00000000 847,372.6653,209.8871,23.9341,57.6687,0.00000066 847,381.3143,195.5768,30.8540,61.0704,0.00000000 847,303.0120,218.6589,23.2289,55.0165,0.00000000 847,542.0530,217.7475,24.1407,55.2205,0.00000000 847,635.7977,237.0613,4.3490,64.8467,0.00000000 847,602.9310,395.4382,37.2157,116.7085,0.00000000 847,636.2092,494.0257,3.9375,18.1210,0.00000000 847,629.5405,480.9357,10.6062,31.2110,0.00000000 848,427.4132,245.1980,20.9058,50.7058,0.00000443 848,384.9921,196.2936,24.4763,52.6458,0.00000021 848,406.8763,197.9917,22.3122,55.7087,0.00000012 848,491.5080,282.9665,27.4435,60.7906,0.00000000 848,547.0847,234.1980,27.0134,61.2747,0.00000000 848,629.6835,480.7918,10.4632,31.3549,0.00000000 849,480.5060,212.3670,24.0449,54.3964,0.99991649 849,445.4878,178.8211,32.7458,77.5495,0.00000030 849,420.2435,203.5494,24.0608,54.3902,0.00000000 849,434.6808,184.8930,23.5553,54.5527,0.00000000 849,466.3455,199.2952,26.5546,55.7148,0.00000000 849,468.7664,190.2372,46.3556,103.2157,0.00000000 849,438.9513,124.1311,101.1135,224.4108,0.00000000 849,635.4081,487.2472,4.7386,24.8995,0.00000000 850,569.6936,217.5087,26.6883,58.2028,0.02978349 850,518.6582,182.0441,25.0457,65.3463,0.01144484 850,500.2472,172.6044,26.6486,74.4209,0.00000001 850,554.8024,192.5650,52.1862,118.1165,0.00000000 850,468.4691,209.7295,23.6481,57.8624,0.00000000 850,502.6686,205.3984,33.5429,78.6951,0.00000000 850,635.5259,487.9009,4.6208,24.2458,0.00000000 851,599.0897,239.5350,29.5698,68.2443,0.00000045 851,325.1753,206.7698,22.9501,52.0389,0.00000001 851,564.7119,172.0672,57.7720,143.0703,0.00000000 851,30.1390,216.0507,23.5366,57.4630,0.00000000 851,549.7111,193.4428,33.9425,72.5129,0.00000000 851,637.6170,224.6567,2.5297,64.1144,0.00000000 851,629.5453,481.2986,10.6014,30.8481,0.00000000 852,565.5858,208.2480,23.9225,53.7184,0.99565947 852,435.5168,220.9062,24.4093,56.1629,0.03625376 852,591.1609,211.5617,24.6440,68.6925,0.00112608 852,330.0702,207.2792,23.2524,54.5458,0.00000021 852,269.7609,216.4792,35.0773,82.5145,0.00000000 852,398.5245,219.0376,25.5937,51.7313,0.00000000 852,629.4391,478.4952,10.7076,33.6515,0.00000000 853,464.6313,232.4270,24.1424,50.1042,0.99985284 853,181.4942,258.5741,28.9959,59.8386,0.00000337 853,315.5543,208.3400,23.5833,53.3706,0.00000118 853,620.9140,219.0132,19.2327,56.1717,0.00000017 853,271.0373,270.0810,23.0324,55.0496,0.00000000 853,477.3225,236.0802,25.0407,48.8181,0.00000000 853,634.4559,198.1305,5.6908,66.3631,0.00000000 853,629.5699,479.7964,10.5768,32.3503,0.00000000 854,295.0229,253.8893,22.4915,52.5932,0.00000107 854,209.4565,260.3689,28.4367,60.0170,0.00000046 854,544.8527,233.5971,29.1284,66.0859,0.00000025 854,310.6414,202.4335,25.3483,61.3828,0.00000000 854,605.8696,340.1214,29.6392,58.5558,0.00000000 854,637.4142,327.4677,2.7325,61.5501,0.00000000 854,16.5414,172.4714,90.2163,262.8791,0.00000000 854,627.7672,459.2482,12.3795,52.8985,0.00000000 854,635.5015,487.4910,4.6452,24.6557,0.00000000 855,311.4561,201.3343,23.9632,55.3565,0.00000000 855,164.2430,216.8831,27.9135,60.8419,0.00000000 855,627.6213,459.9043,12.5254,52.2424,0.00000000 855,635.4550,487.7299,4.6917,24.4168,0.00000000 856,159.4217,218.4779,25.3257,53.2979,0.00000000 856,314.9966,208.1415,26.6409,60.4118,0.00000000 856,636.2473,494.1373,3.8994,18.0094,0.00000000 856,629.4490,481.2634,10.6977,30.8833,0.00000000 857,323.0665,206.3759,26.4465,57.0721,0.00000000 857,343.5275,208.3950,23.7955,57.9165,0.00000000 857,1.0000,379.5076,59.1071,132.6391,0.00000000 857,635.5032,487.8671,4.6435,24.2796,0.00000000 857,628.0792,460.7974,12.0675,51.3493,0.00000000 858,328.8040,207.2593,32.7916,70.2642,0.00000000 858,601.2990,397.6020,38.8477,114.5447,0.00000000 858,626.6024,456.1451,13.5443,56.0016,0.00000000 858,636.2947,492.4637,3.8520,19.6830,0.00000000 859,465.6667,206.4253,26.8217,58.0632,0.00000000 859,337.8115,203.0766,25.0236,58.0952,0.00000000 859,601.2941,396.4732,38.8526,115.6735,0.00000000 859,626.6699,456.3045,13.4768,55.8422,0.00000000 859,636.1088,492.4347,4.0379,19.7120,0.00000000 860,344.0474,195.1287,22.6281,53.8507,0.00000000 860,1.0000,294.7347,53.7530,217.4120,0.00000000 860,626.8071,456.6277,13.3396,55.5190,0.00000000 860,635.3276,486.8580,4.8191,25.2887,0.00000000 861,392.4938,209.1534,23.6602,50.5051,0.00000043 861,345.3636,199.8952,27.7802,51.9788,0.00000020 861,547.0659,188.5580,90.9401,253.2445,0.00000000 861,627.0893,456.6384,13.0574,55.5083,0.00000000 861,635.2892,486.5137,4.8575,25.6330,0.00000000 862,495.1482,219.2170,24.0019,54.2078,0.99998814 862,417.1161,217.1764,22.2311,50.4553,0.97750515 862,351.4868,194.7260,22.2525,49.9383,0.00000031 862,484.4034,210.6149,20.8809,51.7545,0.00000000 862,399.5685,218.3782,23.0250,52.6856,0.00000000 862,483.5390,182.9051,50.6487,98.8024,0.00000000 862,451.8956,130.3321,101.4796,222.0879,0.00000000 862,627.1639,459.7337,12.9828,52.4130,0.00000000 862,635.5669,487.5057,4.5798,24.6410,0.00000000 863,587.4350,208.1208,30.9326,73.1474,0.99999785 863,464.7597,205.7419,28.8530,69.5807,0.99999613 863,604.9169,210.8720,26.9341,63.1540,0.00000070 863,350.7526,187.1686,32.5413,50.9312,0.00000008 863,448.6266,212.8658,28.3066,59.0335,0.00000000 863,629.3774,479.5656,10.7693,32.5811,0.00000000 864,586.0856,208.1671,40.4818,115.4320,1.00000000 864,433.8542,207.0483,24.4391,50.9965,0.00005752 864,551.0562,163.1528,88.8056,213.6467,0.00000000 864,624.6330,187.8484,15.5137,129.7089,0.00000000 864,629.1970,480.6704,10.9497,31.4763,0.00000000 865,365.3382,222.3802,25.3730,61.1835,0.00001614 865,627.6918,1.0000,12.4549,49.2963,0.00000000 865,636.0424,494.1089,4.1043,18.0378,0.00000000 865,629.2296,481.3016,10.9171,30.8451,0.00000000 866,377.1569,210.8339,37.5628,110.5110,0.00000000 866,636.1238,494.5348,4.0229,17.6119,0.00000000 866,627.7725,1.0000,12.3742,48.2826,0.00000000 866,629.4984,482.3043,10.6483,29.8424,0.00000000 867,388.2938,182.6822,26.7889,53.5259,0.00002283 867,601.5603,398.5267,38.5864,113.6200,0.00000000 867,636.7104,492.2331,3.4363,19.9136,0.00000000 867,627.4150,456.0318,12.7317,56.1149,0.00000000 868,415.7451,184.5922,29.3913,72.0481,0.99967784 868,477.8362,223.7043,22.2101,50.3972,0.00060708 868,462.0000,218.2158,22.9211,46.8206,0.00013588 868,399.7362,200.2891,26.4715,58.7137,0.00000107 868,429.8165,204.8474,26.4839,61.2388,0.00000010 868,629.6062,480.4615,10.5405,31.6852,0.00000000 869,533.4871,222.5831,23.0600,56.1898,0.99999857 869,394.6371,225.8859,21.4310,47.6362,0.99188042 869,517.4534,222.6009,22.8012,55.3872,0.97763491 869,415.7231,225.6091,22.1785,53.1049,0.77995074 869,421.8988,204.5360,26.1992,57.3400,0.35702637 869,448.5521,171.7314,30.7804,81.8763,0.01379828 869,503.9736,217.1616,23.7763,55.3428,0.00000267 870,437.5491,230.8842,21.9715,52.5044,1.00000000 870,586.8599,222.1514,23.5130,51.4395,0.99999958 870,478.9466,207.0843,35.2534,95.1444,0.23654674 870,411.6163,239.1927,21.9907,48.1638,0.00313551 870,513.6039,148.0181,40.7977,122.2174,0.00024413 870,531.9186,142.0936,29.9079,58.9481,0.00000001 870,500.2061,128.2643,81.7916,216.3398,0.00000000 871,534.3283,229.4155,42.3654,99.2440,0.99999994 871,487.6151,253.5336,29.5515,60.6840,0.97658062 871,576.1704,168.5130,53.4418,141.0647,0.00000000 871,540.5911,209.0944,27.6624,61.9489,0.00000000 871,633.2507,162.9788,6.8960,79.5844,0.00000000 871,629.6946,481.2620,10.4521,30.8847,0.00000000 872,515.0715,207.0647,21.5760,51.1512,0.02378101 872,637.3152,202.4865,2.8315,62.1943,0.00000000 872,627.8445,459.3154,12.3022,52.8313,0.00000000 872,635.6216,487.5248,4.5251,24.6219,0.00000000 873,539.4502,162.8375,59.7311,166.7920,0.00000274 873,37.8019,183.3004,21.9834,53.1440,0.00000065 873,446.3404,219.7208,28.8605,62.8838,0.00000005 873,546.8879,212.9532,84.1918,248.1837,0.00000000 873,481.3446,274.3848,93.8509,237.7619,0.00000000 873,602.6137,396.1523,37.5330,115.9944,0.00000000 873,636.3450,493.7106,3.8017,18.4361,0.00000000 873,627.1605,456.7298,12.9862,55.4169,0.00000000 874,414.8802,215.4953,22.5841,54.1609,0.00000000 874,628.4525,461.3561,11.6942,50.7906,0.00000000 874,635.8420,488.2501,4.3047,23.8966,0.00000000 875,419.3785,242.7721,85.5360,252.9170,0.00000000 875,627.7609,459.4717,12.3858,52.6750,0.00000000 875,636.3758,493.5620,3.7709,18.5847,0.00000000 876,636.2501,493.9446,3.8966,18.2021,0.00000000 876,629.5084,480.6577,10.6383,31.4890,0.00000000 877,447.0948,201.8470,23.6778,51.5239,0.00000000 877,602.9518,396.2461,37.1949,115.9006,0.00000000 877,627.7427,457.7331,12.4040,54.4136,0.00000000 877,636.2556,493.7030,3.8911,18.4437,0.00000000 878,551.4977,215.0549,26.6854,55.6609,0.00000000 878,481.3104,215.8003,24.3466,53.4824,0.00000000 878,634.0579,227.9062,6.0888,80.1832,0.00000000 878,602.2119,396.7206,37.9348,115.4261,0.00000000 878,636.1348,493.4629,4.0119,18.6838,0.00000000 878,627.4061,458.0028,12.7406,54.1439,0.00000000 879,319.1636,198.8504,23.1242,53.7902,0.00000000 879,608.5549,219.9959,28.0382,55.2577,0.00000000 879,595.6989,60.8913,44.4478,274.6035,0.00000000 879,637.5211,237.2001,2.6256,59.5693,0.00000000 879,626.6866,88.9103,13.4601,123.5262,0.00000000 879,634.2607,212.8282,5.8860,61.9134,0.00000000 879,637.1500,106.5065,2.9967,64.9750,0.00000000 879,632.2599,243.4843,7.8868,78.4908,0.00000000 879,636.2112,494.0904,3.9355,18.0563,0.00000000 879,629.6047,480.5208,10.5420,31.6259,0.00000000 880,569.0554,271.0299,25.4932,61.9258,0.00000000 880,333.9354,335.0612,88.3913,177.0855,0.00000000 880,199.2561,333.0164,86.2876,179.1303,0.00000000 880,627.8816,457.2527,12.2651,54.8940,0.00000000 880,293.0539,266.6517,87.2013,245.4950,0.00000000 880,635.7610,487.1166,4.3857,25.0301,0.00000000 881,603.0740,396.3454,37.0727,115.8013,0.00000000 881,636.1863,493.7690,3.9604,18.3777,0.00000000 881,627.4272,458.3173,12.7195,53.8294,0.00000000 882,383.2071,204.1346,28.5368,58.9907,0.00000009 882,636.0668,494.0914,4.0799,18.0553,0.00000000 882,629.4076,481.8890,10.7391,30.2577,0.00000000 883,431.8932,196.0429,22.8459,48.2025,0.00001239 883,448.0203,190.6917,24.1145,47.5417,0.00000000 883,632.8639,1.0000,7.2828,38.8382,0.00000000 883,628.2090,457.3788,11.9377,54.7679,0.00000000 883,635.5833,486.9119,4.5634,25.2348,0.00000000 884,507.3761,208.0117,22.2291,52.0044,0.99999928 884,542.4235,210.6436,21.8239,50.9024,0.99996203 884,522.7269,208.6730,21.4942,51.2021,0.99969453 884,487.8438,200.6616,30.0995,56.0796,0.00000000 884,627.1862,454.5418,12.9605,57.6049,0.00000000 884,634.8799,484.9976,5.2668,27.1491,0.00000000 885,633.1010,1.0000,7.0457,34.1062,0.00000000 885,627.6413,458.3854,12.5054,53.7613,0.00000000 885,635.1952,487.2728,4.9515,24.8739,0.00000000 886,610.4194,134.7326,25.5811,53.4403,0.00000000 886,638.4937,136.5913,1.6530,61.8675,0.00000000 886,632.0162,126.5348,8.1305,74.9389,0.00000000 886,636.1697,493.8040,3.9770,18.3427,0.00000000 886,627.5428,458.8878,12.6039,53.2589,0.00000000 887,543.7729,226.8170,23.9662,51.7307,0.00000000 887,636.0062,493.1834,4.1405,18.9633,0.00000000 887,626.9754,457.6258,13.1713,54.5209,0.00000000 888,50.6247,207.1367,23.9360,55.7688,0.00000000 888,602.9671,207.3506,37.1796,267.8961,0.00000000 888,625.6396,257.9681,14.5071,126.7401,0.00000000 888,635.3867,487.9040,4.7600,24.2427,0.00000000 888,627.9313,459.4558,12.2154,52.6909,0.00000000 889,461.1035,209.4846,24.2905,49.7201,0.00000000 889,602.0819,394.8731,38.0648,117.2736,0.00000000 889,627.0771,457.7881,13.0696,54.3586,0.00000000 889,636.0841,493.4142,4.0626,18.7325,0.00000000 890,534.0302,202.2302,25.7793,53.6907,0.99915951 890,514.6395,197.5009,30.8969,59.9588,0.00000000 890,526.1838,167.3737,48.0013,99.1426,0.00000000 890,492.8972,111.8394,102.3565,201.2135,0.00000000 890,636.1350,494.0493,4.0117,18.0974,0.00000000 890,627.7458,459.3236,12.4009,52.8231,0.00000000 891,457.7987,205.5340,24.8703,46.7384,0.00000001 891,582.2385,196.1256,38.4712,103.4817,0.00000001 891,593.8738,196.2306,46.2729,270.7530,0.00000000 891,637.1852,242.4855,2.9615,64.8730,0.00000000 891,633.7039,203.6087,6.4428,78.0881,0.00000000 891,630.4131,248.5241,9.7336,101.0168,0.00000000 891,628.7310,458.8302,11.4157,53.3165,0.00000000 891,635.8406,487.8818,4.3061,24.2649,0.00000000 892,531.9241,209.4576,22.4004,51.3989,0.15858859 892,544.3504,208.3152,25.0423,54.4044,0.00000000 892,517.8553,213.4756,24.0029,54.3385,0.00000000 892,636.1820,493.7650,3.9647,18.3817,0.00000000 892,627.9141,458.5823,12.2326,53.5644,0.00000000 893,406.6984,223.8877,21.5771,49.8785,0.00000000 893,432.7495,208.2403,23.6394,55.3054,0.00000000 893,454.6809,205.1755,21.8622,50.3995,0.00000000 893,633.8979,1.0000,6.2488,32.3522,0.00000000 893,602.6020,396.1142,37.5447,116.0325,0.00000000 893,636.0226,493.6406,4.1241,18.5061,0.00000000 893,629.4258,479.8229,10.7209,32.3238,0.00000000 894,447.3042,213.2071,24.9186,56.1014,0.99999487 894,436.5135,208.6259,21.1200,52.5914,0.00000000 894,435.7693,190.2124,51.5082,97.3487,0.00000000 894,636.3895,493.5739,3.7572,18.5728,0.00000000 894,629.5427,480.0558,10.6040,32.0909,0.00000000 894,407.3313,124.1048,98.7541,226.3863,0.00000000 895,603.7343,219.8404,35.3364,90.8261,0.99758160 895,587.1782,242.6776,35.7049,81.1091,0.00000000 895,627.5268,229.5339,12.6199,84.9431,0.00000000 895,588.7818,220.4009,51.3649,262.3652,0.00000000 895,633.2271,204.0389,6.9196,66.9685,0.00000000 895,628.0065,458.6592,12.1402,53.4875,0.00000000 895,635.3259,487.2808,4.8208,24.8659,0.00000000 896,456.3110,221.9478,23.6230,51.4931,0.99967295 896,436.3730,224.7670,21.5452,48.0101,0.00000486 896,421.4586,224.3319,20.8287,52.9849,0.00000000 896,470.8815,224.0382,26.0171,52.1721,0.00000000 896,448.7263,204.9839,21.7870,51.1023,0.00000000 896,633.9888,1.0000,6.1579,44.0056,0.00000000 896,636.0359,493.8205,4.1108,18.3262,0.00000000 896,602.7015,395.5624,37.4452,116.5843,0.00000000 896,629.5954,480.7444,10.5513,31.4023,0.00000000 897,500.4963,215.5489,24.4969,61.3830,0.03068353 897,532.1276,226.1157,31.1336,60.4692,0.00629250 897,489.4972,205.9025,21.1881,53.9423,0.00263304 897,496.3798,189.5984,51.3307,108.5214,0.00000000 897,629.4363,480.4472,10.7104,31.6995,0.00000000 898,530.5623,194.6375,27.5412,60.6848,0.99871564 898,514.7764,203.6196,26.1139,62.2764,0.00000002 898,626.9177,1.0000,13.2290,51.8138,0.00000000 898,636.2576,100.8794,3.8891,64.7493,0.00000000 898,635.4302,1.0000,4.7165,30.1113,0.00000000 898,604.5076,1.0000,35.6391,156.0054,0.00000000 898,1.0000,380.7209,59.2908,131.4258,0.00000000 898,627.6783,459.3543,12.4684,52.7924,0.00000000 898,635.8557,488.1169,4.2910,24.0298,0.00000000 899,603.3796,202.5630,27.5360,62.5847,0.00000720 899,443.1769,208.0640,22.6673,54.2810,0.00000000 899,325.4105,445.3476,49.2483,66.7991,0.00000000 899,629.0481,222.9076,11.0986,83.3198,0.00000000 899,317.7196,378.5667,89.8955,133.5800,0.00000000 899,636.9185,206.2398,3.2282,65.5461,0.00000000 899,630.1403,181.5715,10.0064,77.9300,0.00000000 899,635.1656,487.3866,4.9811,24.7601,0.00000000 899,628.0206,459.6602,12.1261,52.4865,0.00000000 900,346.3321,184.1663,23.7223,57.2354,0.00000000 900,636.1558,493.8429,3.9909,18.3038,0.00000000 900,633.6621,142.4195,6.4846,76.9049,0.00000000 900,629.5340,480.7050,10.6127,31.4417,0.00000000 901,394.9325,215.5574,25.5629,51.5584,0.00000610 901,380.2136,210.5600,22.5055,54.2688,0.00000000 901,601.8146,398.7693,38.3321,113.3774,0.00000000 901,626.8917,456.2275,13.2550,55.9192,0.00000000 901,635.9018,492.4560,4.2449,19.6907,0.00000000 902,523.5581,160.2239,85.9110,260.3815,0.00000000 902,636.9371,494.2020,3.2096,17.9447,0.00000000 902,628.5791,458.9393,11.5676,53.2074,0.00000000 903,367.6145,204.7535,22.1883,53.6835,0.00000000 903,330.3036,202.1818,21.8585,53.8985,0.00000000 903,636.1850,493.4177,3.9617,18.7290,0.00000000 903,627.6654,458.5443,12.4813,53.6024,0.00000000 904,448.0001,212.8064,27.4290,68.4224,0.00000085 904,601.8847,400.3045,38.2620,111.8422,0.00000000 904,626.8936,453.7120,13.2531,58.4347,0.00000000 904,636.5889,491.5676,3.5578,20.5791,0.00000000 905,636.2387,493.7223,3.9080,18.4244,0.00000000 905,627.5943,458.9792,12.5524,53.1675,0.00000000 906,437.7455,232.5508,25.1260,50.8703,0.22034848 906,428.0869,195.6281,50.9778,103.5922,0.00000000 906,636.1006,493.9167,4.0461,18.2300,0.00000000 906,627.9282,459.9192,12.2185,52.2275,0.00000000 907,635.3944,486.6929,4.7523,25.4538,0.00000000 907,628.3217,458.2845,11.8250,53.8622,0.00000000 908,518.7133,226.9628,26.8626,54.4229,0.00000127 908,631.9642,487.2251,8.1825,24.9216,0.00000000 909,446.3041,201.2684,22.4116,49.7890,0.99628383 909,432.4558,184.5862,27.7736,59.0500,0.00000000 909,628.6309,1.0000,11.5158,52.8951,0.00000000 909,636.1015,493.6317,4.0452,18.5150,0.00000000 909,629.5188,480.4346,10.6279,31.7121,0.00000000 910,538.2520,208.8376,23.1688,55.9907,0.99995291 910,495.2318,205.7574,21.7893,50.0087,0.00270348 910,443.4882,191.8197,22.9831,51.8572,0.00000000 910,523.6631,198.7308,27.9242,51.8628,0.00000000 910,527.6490,192.5978,50.7602,92.4315,0.00000000 910,345.5155,340.0582,90.6295,172.0885,0.00000000 910,635.2649,487.3474,4.8818,24.7993,0.00000000 910,628.0164,459.1456,12.1303,53.0011,0.00000000 910,495.7550,113.5169,101.0826,208.1993,0.00000000 911,566.0280,199.3401,23.6859,58.0828,0.99999368 911,549.9444,204.1560,21.8967,59.2069,0.00000001 911,631.5001,487.1441,8.6466,25.0026,0.00000000 911,522.6106,112.5003,102.2520,210.5232,0.00000000 912,637.4078,242.7409,2.7389,66.0237,0.00000000 912,631.0663,245.6767,9.0804,84.7421,0.00000000 912,636.1280,493.8111,4.0187,18.3356,0.00000000 912,629.4249,480.6501,10.7218,31.4966,0.00000000 913,395.5848,217.7402,20.7349,48.0657,0.00000000 913,359.2476,203.5352,22.1004,46.7753,0.00000000 913,142.0861,136.4133,27.8714,58.5555,0.00000000 913,603.4019,193.2709,36.7448,256.6530,0.00000000 913,625.1073,238.1864,15.0394,125.7639,0.00000000 913,635.8077,149.6902,4.3390,63.7559,0.00000000 913,633.2197,221.1054,6.9270,83.9550,0.00000000 913,636.3571,494.1845,3.7896,17.9622,0.00000000 913,629.5068,480.5827,10.6399,31.5640,0.00000000 914,465.5932,218.5284,22.3061,55.4840,0.00000006 914,366.4190,203.8854,21.8581,46.7534,0.00000000 914,354.4215,199.8920,21.7496,50.5696,0.00000000 914,631.7947,131.4040,8.3520,77.8832,0.00000000 914,598.4916,98.6908,41.6551,272.3781,0.00000000 914,628.2635,457.0845,11.8832,55.0622,0.00000000 914,635.9309,487.8491,4.2158,24.2976,0.00000000 915,475.2307,247.0795,22.8898,56.9905,0.00000115 915,384.6775,213.1440,25.1124,53.6812,0.00000014 915,142.7568,135.7776,37.9654,73.0968,0.00000002 915,463.2508,197.8130,35.8968,82.3540,0.00000000 915,370.7380,197.3690,28.1811,55.3134,0.00000000 915,602.0371,396.9252,38.1096,115.2215,0.00000000 915,626.6912,455.0118,13.4555,57.1349,0.00000000 915,444.5515,127.2469,85.9366,226.0195,0.00000000 915,636.1767,491.7191,3.9700,20.4276,0.00000000 916,516.3167,202.1483,25.7792,53.6779,0.00000001 916,388.3328,210.1199,24.0707,54.0998,0.00000000 916,468.5224,247.1235,24.1165,65.5071,0.00000000 916,402.5814,210.6423,25.0499,50.7009,0.00000000 916,363.6381,212.6172,25.1200,54.7920,0.00000000 916,454.5055,201.8530,50.3457,122.3344,0.00000000 916,437.5569,41.5607,45.2422,129.3200,0.00000000 916,627.7809,456.6392,12.3658,55.5075,0.00000000 916,636.3765,493.3002,3.7702,18.8465,0.00000000 917,417.8183,195.1920,22.9859,54.0849,0.00000001 917,606.8800,196.2151,26.7371,57.3318,0.00000000 917,636.9685,185.4090,3.1782,61.6946,0.00000000 917,634.8508,219.3001,5.2959,63.1077,0.00000000 917,636.4576,493.6138,3.6891,18.5329,0.00000000 917,627.9069,457.9999,12.2398,54.1468,0.00000000 918,633.4871,162.4932,6.6596,79.3327,0.00000000 918,636.2981,493.3748,3.8486,18.7719,0.00000000 918,629.4025,481.3651,10.7442,30.7816,0.00000000 919,276.7817,200.5484,22.8431,51.3114,0.99805999 919,255.0895,200.1662,20.6373,47.3308,0.75008613 919,412.2437,193.1802,30.0970,56.0322,0.00000012 919,444.7593,192.4515,26.8107,58.7260,0.00000001 919,429.4704,194.4751,26.6388,60.4344,0.00000000 919,264.2813,159.4699,51.5184,106.7617,0.00000000 919,626.9364,457.1235,13.2103,55.0232,0.00000000 919,634.7851,486.3672,5.3616,25.7795,0.00000000 920,188.9864,202.3639,22.5603,53.1201,0.99960250 920,96.8994,204.0795,22.8310,48.1757,0.99864358 920,158.6852,199.7765,30.0005,57.9219,0.01072483 920,148.1062,205.7763,23.2250,55.3715,0.00000007 920,375.0837,198.5638,31.1984,71.3704,0.00000000 920,629.7900,477.5750,10.3567,34.5717,0.00000000 921,169.8265,173.4583,21.1431,51.0158,0.00000000 921,301.7652,194.5009,22.1015,54.4814,0.00000000 921,628.6443,1.0000,11.5024,49.4591,0.00000000 921,600.9003,397.0850,39.2464,115.0617,0.00000000 921,629.6955,478.6468,10.4512,33.4999,0.00000000 921,635.8745,491.4558,4.2722,20.6909,0.00000000 922,308.2621,182.3752,28.6361,64.0601,0.00000012 922,1.0000,127.4948,64.0252,181.7611,0.00000000 922,628.0108,1.0000,12.1359,50.2884,0.00000000 922,1.0000,381.8362,59.5143,130.3105,0.00000000 922,602.6537,396.6289,37.4930,115.5178,0.00000000 922,636.0674,493.0453,4.0793,19.1014,0.00000000 922,629.1910,479.4890,10.9557,32.6577,0.00000000 923,28.7027,217.1444,41.1617,76.8544,0.00000216 923,474.4911,198.8754,24.9333,50.3314,0.00000000 923,627.3159,1.0000,12.8308,49.4640,0.00000000 923,630.1425,243.0474,10.0042,101.2646,0.00000000 923,602.4186,396.4783,37.7281,115.6684,0.00000000 923,627.0166,458.5793,13.1301,53.5674,0.00000000 923,636.2091,493.6244,3.9376,18.5223,0.00000000 924,85.4565,175.8588,22.6643,54.2801,0.00000000 924,637.4825,225.5700,2.6642,62.3808,0.00000000 924,628.0336,1.0000,12.1131,49.0912,0.00000000 924,631.3876,242.7978,8.7591,78.6101,0.00000000 924,636.0715,493.8439,4.0752,18.3028,0.00000000 924,627.4807,459.7073,12.6660,52.4394,0.00000000 925,627.7935,1.0000,12.3532,48.8815,0.00000000 925,635.9766,493.7266,4.1701,18.4201,0.00000000 925,629.2420,480.6165,10.9047,31.5302,0.00000000 926,73.4785,197.4362,91.1646,248.5272,0.00000000 926,636.2228,493.4284,3.9239,18.7183,0.00000000 926,629.4378,480.0054,10.7089,32.1413,0.00000000 927,632.7625,197.4826,7.3842,78.9647,0.00000000 927,635.3564,487.4425,4.7903,24.7042,0.00000000 927,628.3940,459.7822,11.7527,52.3645,0.00000000 928,507.5325,212.3828,23.4864,52.1616,0.99998653 928,491.1547,217.0875,24.9984,51.1766,0.00005963 928,519.1857,221.7199,22.3988,51.1820,0.00000387 928,495.7235,174.5195,53.6241,101.1779,0.00000000 928,628.3170,458.2238,11.8297,53.9229,0.00000000 928,635.5182,487.2299,4.6285,24.9168,0.00000000 928,464.8306,97.4878,100.9715,220.5813,0.00000000 929,432.2573,216.1095,24.8976,54.7512,0.99999374 929,449.8014,212.4748,23.6186,54.2270,0.00001238 929,422.8814,204.7737,20.6243,51.4832,0.00000000 929,419.6834,181.2287,48.8568,97.5081,0.00000000 929,601.5502,396.4859,38.5965,115.6608,0.00000000 929,626.9998,456.4561,13.1469,55.6906,0.00000000 929,636.1761,492.5704,3.9706,19.5763,0.00000000 929,389.2136,136.3733,100.4428,216.5335,0.00000000 930,450.6804,211.4081,27.6571,57.9389,0.00001209 930,601.2674,397.0894,38.8793,115.0573,0.00000000 930,625.8929,453.5504,14.2538,58.5963,0.00000000 930,635.8832,491.6809,4.2635,20.4658,0.00000000 931,601.0271,395.6393,39.1196,116.5074,0.00000000 931,625.8215,453.0075,14.3252,59.1392,0.00000000 931,636.0015,491.5194,4.1452,20.6273,0.00000000 932,587.6727,195.5943,44.7028,123.9207,1.00000000 932,446.2415,209.3401,23.1998,52.0829,0.98824656 932,619.6163,215.2741,20.5304,110.4536,0.00010369 932,559.8816,204.1121,46.3273,113.2797,0.00000008 932,632.4623,242.0198,7.6844,65.4522,0.00000000 932,629.3666,476.8262,10.7801,35.3205,0.00000000 933,493.6774,201.9830,25.6413,55.9749,1.00000000 933,440.5360,210.9373,23.7184,54.4229,0.00000000 933,484.4491,163.1581,49.9034,105.0729,0.00000000 933,567.6713,232.0307,27.7965,65.4843,0.00000000 933,452.5736,118.0179,98.3666,216.4557,0.00000000 933,627.4403,456.5310,12.7064,55.6157,0.00000000 933,635.1904,486.1765,4.9563,25.9702,0.00000000 934,582.6834,198.5661,34.7517,80.2367,0.99999905 934,603.0751,200.1250,34.2213,79.7553,0.00000000 934,563.0872,179.0514,77.0595,197.4299,0.00000000 934,637.5026,227.5520,2.6441,66.3355,0.00000000 934,631.2968,220.8466,8.8499,82.2717,0.00000000 934,634.8911,190.3532,5.2556,64.9055,0.00000000 934,635.2225,487.0351,4.9242,25.1116,0.00000000 935,406.9660,238.5573,33.2853,70.0218,0.02371050 935,359.2786,219.5875,25.2413,49.8963,0.00000001 935,562.4899,208.7831,34.1181,81.3310,0.00000000 935,602.1824,395.4518,37.9643,116.6949,0.00000000 935,626.2855,453.1523,13.8612,58.9944,0.00000000 935,636.1236,492.0233,4.0231,20.1234,0.00000000 936,113.0157,192.5053,23.4885,52.3852,0.00000001 936,410.8753,223.0161,25.2368,57.9521,0.00000000 936,636.2650,493.6482,3.8817,18.4985,0.00000000 936,629.4675,480.2217,10.6792,31.9250,0.00000000 937,36.9295,206.0956,24.6284,49.1016,0.00200987 937,98.6329,189.6286,22.7959,53.3769,0.00003230 937,636.0961,493.8323,4.0506,18.3144,0.00000000 937,629.3914,481.1010,10.7553,31.0457,0.00000000 938,39.8206,182.9085,34.4203,75.6918,0.00000137 938,631.3738,487.1917,8.7729,24.9550,0.00000000 939,463.0183,276.7095,35.0281,73.5123,0.00000924 939,560.7269,277.7188,79.4198,234.4279,0.00000000 939,630.4333,378.5159,9.7134,85.4593,0.00000000 939,636.0995,494.4593,4.0472,17.6874,0.00000000 939,629.5682,483.0710,10.5785,29.0757,0.00000000 940,408.7051,197.8945,22.1801,46.4079,0.00000043 940,520.8942,288.4625,24.6510,55.6088,0.00000000 940,503.7070,217.0097,61.8463,135.6054,0.00000000 940,635.3449,487.5935,4.8018,24.5532,0.00000000 940,628.5867,460.3553,11.5600,51.7914,0.00000000 941,387.3468,203.5615,22.7868,53.9023,1.00000000 941,405.9500,203.8750,21.4205,55.0901,0.99999976 941,442.8855,205.1883,21.5934,51.1164,0.99998444 941,428.0706,207.1588,23.7491,50.3507,0.00000000 941,376.3723,168.6791,51.3026,104.1111,0.00000000 941,632.0248,484.8904,8.1219,27.2563,0.00000000 942,433.3526,199.2731,31.6282,73.9081,1.00000000 942,464.3081,198.8320,36.4489,81.7008,1.00000000 942,530.6369,203.2557,30.3673,73.8384,0.99999702 942,408.5633,205.1710,21.4107,51.8249,0.00481549 942,367.3561,205.1276,23.1633,48.1549,0.00111423 942,384.3264,203.6480,22.1147,48.1062,0.00000005 942,500.4643,182.4579,54.6101,136.2565,0.00000000 943,487.1820,213.8913,26.3803,59.9494,1.00000000 943,425.2222,212.4182,29.8833,65.9735,0.35097602 943,623.2123,227.6985,16.9344,135.1080,0.00000000 943,596.5517,216.0082,43.5950,268.3107,0.00000000 943,635.6315,487.7721,4.5152,24.3746,0.00000000 944,472.1860,205.6699,26.6909,68.0059,0.01815865 944,456.5853,208.7697,26.5665,63.5602,0.00000000 944,500.8155,202.2125,24.7961,55.3137,0.00000000 944,441.2588,110.4215,95.6115,220.5452,0.00000000 944,631.4354,485.5337,8.7113,26.6130,0.00000000 945,563.4127,202.4970,51.5644,129.4359,1.00000000 945,594.3739,208.3570,39.1533,101.2888,0.97272766 945,569.0726,211.9529,25.4704,65.0289,0.00001614 945,621.3954,190.9086,18.7513,136.0121,0.00000000 946,602.8920,90.6661,37.2547,271.2530,0.00000000 946,627.9086,459.5748,12.2381,52.5719,0.00000000 946,635.2560,487.1013,4.8907,25.0454,0.00000000 947,627.5068,458.0159,12.6399,54.1308,0.00000000 947,635.1415,487.2861,5.0052,24.8606,0.00000000 948,628.0412,459.2057,12.1055,52.9410,0.00000000 948,635.2346,487.3808,4.9121,24.7659,0.00000000 949,512.2300,207.1931,67.1078,153.0388,0.00000000 949,627.1387,454.9851,13.0080,57.1616,0.00000000 949,636.3759,493.0718,3.7708,19.0749,0.00000000 950,64.8473,203.4342,23.5569,51.0944,0.00000000 950,627.5613,458.3642,12.5854,53.7825,0.00000000 950,635.0807,487.0325,5.0660,25.1142,0.00000000 951,636.5121,493.2215,3.6346,18.9252,0.00000000 951,627.2491,455.9487,12.8976,56.1980,0.00000000 952,632.8790,1.0000,7.2677,37.4373,0.00000000 952,635.3937,487.0546,4.7530,25.0921,0.00000000 952,627.8984,456.5956,12.2483,55.5511,0.00000000 953,369.4313,203.3802,25.1416,46.8843,0.06548423 953,633.8033,1.0000,6.3434,38.2101,0.00000000 953,636.4217,492.8520,3.7250,19.2947,0.00000000 953,627.9376,457.9041,12.2091,54.2426,0.00000000 954,395.6015,205.9297,26.7982,50.6578,1.00000000 954,387.6950,171.9398,51.3269,94.5361,0.00000000 954,380.7331,206.5223,25.8052,54.8236,0.00000000 954,635.7502,486.8556,4.3965,25.2911,0.00000000 954,627.9318,456.3071,12.2149,55.8396,0.00000000 955,452.0227,209.8460,27.1831,60.8702,1.00000000 955,471.3092,210.0099,25.0455,54.0684,0.00000000 955,435.1471,212.9613,29.8046,57.0133,0.00000000 955,422.6518,102.9087,99.9175,212.0962,0.00000000 955,600.9494,398.2134,39.1973,113.9333,0.00000000 955,632.8688,1.0000,7.2779,35.8361,0.00000000 955,629.3898,478.3295,10.7569,33.8172,0.00000000 955,636.2783,492.4884,3.8684,19.6583,0.00000000 956,557.2775,202.1090,39.3780,95.8660,1.00000000 956,537.9252,196.5202,38.2417,73.3156,0.00000000 956,600.0635,206.1754,40.0832,262.4867,0.00000000 956,622.0300,246.9655,18.1167,141.0671,0.00000000 956,532.2908,110.3054,88.0152,222.1871,0.00000000 956,629.6386,478.5591,10.5081,33.5876,0.00000000 957,636.3016,492.5103,3.8451,19.6364,0.00000000 957,629.4792,478.7019,10.6675,33.4448,0.00000000 958,387.5102,207.8497,27.2422,50.3819,0.00000000 958,533.5670,199.1591,52.8132,150.1212,0.00000000 958,548.7194,128.7504,87.8560,268.4400,0.00000000 958,635.5309,486.8976,4.6158,25.2491,0.00000000 958,627.6641,456.9712,12.4826,55.1755,0.00000000 959,401.6351,200.3154,27.1378,51.1406,0.00000002 959,550.0652,151.1859,84.9978,261.1036,0.00000000 959,416.1162,195.4671,31.5188,54.0926,0.00000000 959,597.6437,212.4082,42.5030,265.3351,0.00000000 959,636.8584,269.3993,3.2883,65.1542,0.00000000 959,627.0688,255.2223,13.0779,126.9853,0.00000000 959,636.0794,493.8846,4.0673,18.2621,0.00000000 959,628.0112,460.1873,12.1355,51.9594,0.00000000 960,444.1809,209.5220,21.1725,49.8400,0.99999893 960,428.0945,204.8825,25.6324,48.1173,0.00000000 960,636.0453,493.8076,4.1014,18.3391,0.00000000 960,629.5385,481.3872,10.6082,30.7595,0.00000000 961,3.5823,215.9370,26.8596,52.5592,0.99984813 961,449.7855,217.1551,25.0359,48.2271,0.00000023 961,510.2346,208.4537,33.1649,80.1118,0.00000001 961,435.1299,216.4856,24.2612,51.6290,0.00000000 961,1.0000,233.6557,17.5355,55.8702,0.00000000 961,486.3284,130.8721,87.7307,216.9242,0.00000000 961,1.0000,192.8416,51.8878,243.0122,0.00000000 961,635.2066,486.7347,4.9401,25.4120,0.00000000 961,627.7332,457.5941,12.4135,54.5526,0.00000000 962,507.5342,211.9114,21.6994,53.2181,1.00000000 962,421.2404,223.5253,20.6524,56.3783,0.26472196 962,491.3700,210.9200,21.2209,50.7502,0.15052347 962,402.1707,246.9695,27.3837,59.0075,0.00000025 962,565.2794,203.6448,70.5638,167.0523,0.00000000 962,629.6586,480.1487,10.4881,31.9980,0.00000000 963,530.6454,212.3249,32.5957,91.5762,0.99654078 963,7.5414,189.3936,28.6695,53.1156,0.04076688 963,368.0666,199.8894,24.5698,49.2380,0.00080760 963,508.0744,271.3370,26.4655,61.4562,0.00005269 963,540.3412,253.5044,32.3235,70.3995,0.00000181 963,510.0509,208.4228,23.3596,50.1616,0.00000016 963,587.8635,231.5601,24.0736,52.6517,0.00000001 963,548.8132,237.3524,47.3798,120.1144,0.00000000 963,627.2560,191.4160,12.8907,87.2373,0.00000000 963,525.7739,219.7256,86.1517,233.4455,0.00000000 964,391.1332,207.6203,25.7103,59.4029,0.99998236 964,555.0670,246.4383,29.4907,53.1669,0.00000000 964,497.7677,233.5739,31.3095,57.6215,0.00000000 964,406.8493,210.9892,26.9875,53.2054,0.00000000 964,618.1160,244.8952,22.0307,56.3521,0.00000000 964,637.0150,242.6297,3.1317,61.9062,0.00000000 964,350.6058,130.0835,95.6643,215.4936,0.00000000 964,635.0474,487.4193,5.0993,24.7274,0.00000000 964,627.7093,458.8058,12.4374,53.3409,0.00000000 965,435.4439,207.2983,29.2259,70.7848,1.00000000 965,364.8337,212.0639,21.8209,48.7550,0.00000000 965,494.1567,279.9704,34.4937,61.9023,0.00000000 965,413.2357,144.3928,89.3601,206.9936,0.00000000 965,636.0045,493.6362,4.1422,18.5105,0.00000000 965,629.4016,480.8622,10.7451,31.2845,0.00000000 966,553.5637,198.3940,40.7399,112.1379,1.00000000 966,392.2664,207.9294,24.5309,55.3411,0.00202812 966,383.4718,199.9340,20.8368,51.2982,0.00000008 966,535.6885,145.4593,80.5450,204.6095,0.00000000 966,635.4788,487.3545,4.6679,24.7922,0.00000000 967,435.1960,204.8100,21.8742,54.3774,0.99589640 967,447.7451,205.2880,22.3846,58.6214,0.54366642 967,435.2168,173.7558,48.4756,107.8611,0.00000000 967,398.6123,123.2996,100.8788,236.3463,0.00000000 967,632.2839,484.5424,7.8628,27.6043,0.00000000 968,530.2336,218.5245,32.5205,89.5738,1.00000000 968,548.5839,216.1159,36.6037,95.3035,0.99999917 968,570.1790,213.8073,34.2393,94.4799,0.99997979 968,76.5378,203.5010,27.1856,48.5789,0.00003290 969,40.5553,210.2621,27.3274,50.6728,0.99993914 969,25.7808,209.0689,25.6376,49.5836,0.99890959 969,548.6390,226.0022,27.1581,57.2832,0.00000000 969,25.5154,176.7931,53.0895,95.0361,0.00000000 969,629.7916,479.6427,10.3551,32.5040,0.00000000 969,636.9233,492.1612,3.2234,19.9855,0.00000000 970,628.3375,1.0000,11.8092,52.4428,0.00000000 970,636.1650,493.4014,3.9817,18.7453,0.00000000 970,629.4110,480.0574,10.7357,32.0893,0.00000000 971,471.8234,206.1223,24.8708,52.5911,0.00013936 971,39.0799,203.1164,23.4485,58.5794,0.00000000 971,627.9984,1.0000,12.1483,49.4841,0.00000000 971,636.0342,493.7234,4.1125,18.4233,0.00000000 971,629.5139,480.8449,10.6328,31.3018,0.00000000 972,517.1685,214.1904,24.7674,46.2538,0.99895173 972,73.7567,208.8248,23.9825,50.5187,0.01494347 972,633.2865,1.0000,6.8602,38.3705,0.00000000 972,635.0414,486.8161,5.1053,25.3306,0.00000000 972,628.2048,458.9101,11.9419,53.2366,0.00000000 973,636.1883,493.3894,3.9584,18.7573,0.00000000 973,629.4598,480.4079,10.6869,31.7388,0.00000000 974,464.2584,207.8708,26.1398,50.9732,0.00001300 974,57.8464,211.5779,21.8768,46.5818,0.00000002 974,45.5011,215.9592,22.3042,46.7362,0.00000000 974,635.0173,486.8491,5.1294,25.2976,0.00000000 974,628.2751,459.0071,11.8716,53.1396,0.00000000 975,474.4967,214.9584,21.4286,55.3496,0.00000000 975,636.2289,493.3884,3.9178,18.7583,0.00000000 975,629.4329,479.8797,10.7138,32.2670,0.00000000 976,605.0712,212.6097,22.7296,47.9033,0.43284342 976,145.6171,254.5958,25.3494,55.8117,0.00000018 976,613.9301,197.1394,26.2166,56.3190,0.00000000 976,636.5026,208.5602,3.6441,60.5146,0.00000000 976,631.6081,169.0769,8.5386,94.7153,0.00000000 976,628.2007,459.7081,11.9460,52.4386,0.00000000 976,635.8419,487.9936,4.3048,24.1531,0.00000000 977,599.8719,212.4779,23.1333,48.3900,0.00710992 977,214.7519,226.3838,24.0543,52.2437,0.00000000 977,157.6963,243.9367,23.8276,56.4529,0.00000000 977,630.5020,184.3159,9.6447,79.3521,0.00000000 977,634.5585,155.8379,5.5882,74.5651,0.00000000 977,631.3111,486.3639,8.8356,25.7828,0.00000000 978,605.2496,215.1779,22.7840,49.7430,0.00105144 978,561.0436,225.4648,24.4175,55.7679,0.00000000 978,616.6868,201.8304,23.4599,53.3315,0.00000000 978,192.3408,283.4775,88.5456,228.6692,0.00000000 978,637.4995,211.6357,2.6472,61.1637,0.00000000 978,630.8350,212.8922,9.3117,76.8614,0.00000000 978,634.5676,179.3672,5.5791,76.0344,0.00000000 978,629.5649,481.2016,10.5818,30.9451,0.00000000 979,609.9923,216.6513,23.4916,49.5101,0.68213314 979,41.3587,249.3137,27.1859,57.5591,0.00008225 979,366.1705,442.5239,51.2795,69.6228,0.00000000 979,624.1252,205.8433,16.0215,53.5719,0.00000000 979,18.1311,223.4988,54.0500,133.6124,0.00000000 979,633.4056,223.3584,6.7411,53.4985,0.00000000 979,628.5164,1.0000,11.6303,50.1859,0.00000000 979,380.2763,485.5037,37.1076,26.6430,0.00000000 979,635.6319,487.6185,4.5148,24.5282,0.00000000 979,627.6078,459.1498,12.5389,52.9969,0.00000000 980,45.3676,246.6906,27.9272,72.9103,0.00001620 980,20.1207,223.1512,53.5217,144.1956,0.00000000 980,28.0825,236.4579,30.6594,68.8945,0.00000000 980,404.3493,243.2537,27.2119,55.5578,0.00000000 980,461.3897,217.0914,24.3119,53.9788,0.00000000 980,636.3256,494.3651,3.8211,17.7816,0.00000000 980,629.5525,481.8307,10.5942,30.3160,0.00000000 981,343.5695,258.8544,37.2889,75.5125,0.00000274 981,547.0133,281.0175,24.6792,66.9661,0.00000017 981,28.2650,250.3494,23.2205,55.8982,0.00000001 981,338.2516,215.4187,26.6991,59.5320,0.00000000 981,533.4384,218.2419,54.0340,127.2802,0.00000000 981,20.1646,287.0614,39.5306,86.2357,0.00000000 981,8.8959,231.3829,30.2437,65.5125,0.00000000 981,432.7034,228.2960,42.7942,109.4990,0.00000000 981,1.0000,198.8250,67.8128,243.1847,0.00000000 981,496.1995,177.0800,86.8465,257.8537,0.00000000 981,631.8040,487.1305,8.3427,25.0162,0.00000000 982,459.5102,265.3326,23.1104,56.5881,0.00000129 982,57.0820,252.7781,25.3807,66.1948,0.00000058 982,443.2841,224.2558,50.8242,113.5207,0.00000000 982,39.2342,229.8807,53.2602,121.3590,0.00000000 982,1.0000,211.0209,56.1812,267.7925,0.00000000 982,420.1728,223.1632,90.9252,248.6966,0.00000000 982,628.3731,458.9158,11.7736,53.2309,0.00000000 982,635.8708,487.7851,4.2759,24.3616,0.00000000 983,519.6763,214.2735,23.1292,49.3409,0.00000014 983,556.8419,206.3584,22.6121,50.9770,0.00000000 983,635.6310,487.9922,4.5157,24.1545,0.00000000 983,628.2527,460.1456,11.8940,52.0011,0.00000000 984,8.1284,218.7940,23.7333,47.7807,0.00105418 984,1.0000,211.7807,14.5924,54.0413,0.00000000 984,627.7696,458.7578,12.3771,53.3889,0.00000000 984,636.4884,493.7129,3.6583,18.4338,0.00000000 985,103.2954,78.6525,28.0681,62.0126,0.00000000 985,635.6791,487.6384,4.4676,24.5083,0.00000000 985,628.3608,460.7187,11.7859,51.4280,0.00000000 986,334.3911,232.6709,23.6561,50.2957,0.99999654 986,373.8531,228.5959,23.8733,54.7993,0.99999160 986,287.8321,233.5821,24.5366,49.6367,0.97250009 986,301.3825,230.0596,23.6368,52.4975,0.00000005 986,361.6455,233.1309,22.3377,50.0600,0.00000000 986,316.6156,228.7910,22.8129,50.6640,0.00000000 986,348.2247,233.3254,22.6556,49.6598,0.00000000 986,243.7537,216.8785,21.0180,52.7612,0.00000000 986,362.7000,204.1633,50.5832,96.5697,0.00000000 986,92.0758,240.6791,36.4210,70.9843,0.00000000 986,635.2818,487.5929,4.8649,24.5538,0.00000000 987,534.4073,226.7094,29.4626,53.7307,0.99996692 987,593.3169,223.6510,26.2718,54.6069,0.99981546 987,460.0587,223.2779,23.2735,51.7332,0.11026215 987,312.9363,211.2994,26.7356,50.1825,0.00001036 987,525.8925,202.5520,52.4500,105.0683,0.00000000 988,512.8044,204.2492,25.0992,51.6645,0.99950057 988,496.0365,196.2097,28.1852,55.3027,0.00000003 988,503.4037,169.4129,50.9369,92.7296,0.00000000 988,628.1572,1.0000,11.9895,50.3124,0.00000000 988,636.9920,91.6132,3.1547,64.1434,0.00000000 988,630.4512,89.1348,9.6955,83.6945,0.00000000 988,636.3418,494.6299,3.8049,17.5168,0.00000000 988,629.5800,481.9112,10.5667,30.2355,0.00000000 989,599.7150,199.8614,26.5819,58.0868,0.00051963 989,262.0475,212.7292,22.5452,51.2473,0.00000000 989,593.4445,159.5830,46.7022,265.2540,0.00000000 989,637.4739,197.5995,2.6728,63.3457,0.00000000 989,632.6582,206.1483,7.4885,78.7582,0.00000000 989,635.6198,487.3928,4.5269,24.7539,0.00000000 989,627.9481,456.7484,12.1986,55.3983,0.00000000 990,450.2055,206.0164,21.1718,48.2974,0.12856364 990,569.5128,207.3754,23.6736,48.3442,0.00000077 990,458.1266,190.0077,28.7960,50.4560,0.00000000 990,635.3653,488.0438,4.7814,24.1029,0.00000000 990,627.9952,460.2526,12.1515,51.8941,0.00000000 991,556.1005,208.3093,23.1791,55.6260,1.00000000 991,538.7903,208.1051,20.7077,49.3887,0.93264019 991,596.8713,204.3958,23.0285,50.3837,0.89407051 991,479.5394,214.5149,21.6877,46.7944,0.00460117 991,577.4814,209.8099,22.1034,49.4634,0.00000986 991,631.3702,486.5324,8.7765,25.6143,0.00000000 992,546.7788,205.1209,22.5958,51.5466,1.00000000 992,518.5688,206.8793,21.3997,49.9074,0.99998808 992,586.1321,209.8209,22.3735,49.7145,0.98602158 992,476.2656,190.1551,22.7859,52.5816,0.00000049 992,570.3271,210.6729,22.0079,47.2903,0.00000001 992,463.0839,193.2224,22.2217,52.8475,0.00000000 992,630.8765,184.4924,9.2702,80.0954,0.00000000 992,629.8790,476.9240,10.2677,35.2227,0.00000000 993,598.8986,213.9327,22.8405,54.0211,0.99999994 993,532.6737,208.1954,21.4599,50.4392,0.99998981 993,503.4179,204.7722,23.2183,47.3665,0.04694897 993,588.0046,203.6397,20.6547,52.0359,0.00000002 993,611.7047,211.0056,25.5506,56.9389,0.00000000 993,636.0104,217.5136,4.1363,60.9035,0.00000000 993,635.4160,488.1062,4.7307,24.0405,0.00000000 994,589.0861,211.1809,22.8781,51.7675,0.99999064 994,571.8953,210.0118,25.5036,52.9322,0.02312978 994,602.6736,206.8195,22.5165,51.4406,0.00000011 994,619.1855,216.5187,20.9612,52.3971,0.00000002 994,556.3401,202.5254,27.8097,59.9282,0.00000000 994,634.1472,199.3063,5.9995,61.6215,0.00000000 994,629.4766,481.7940,10.6701,30.3527,0.00000000 995,634.5524,194.1631,5.5943,78.5470,0.00000000 995,635.9418,88.6176,4.2049,63.3418,0.00000000 995,635.2691,487.8675,4.8776,24.2792,0.00000000 995,628.4519,460.0527,11.6948,52.0940,0.00000000 996,534.6930,197.3586,24.7303,52.0108,0.00002368 996,514.7239,202.1498,27.8769,53.9316,0.00000000 996,310.1831,240.4452,24.3991,54.9913,0.00000000 996,635.3613,487.7950,4.7854,24.3517,0.00000000 996,628.3010,459.7119,11.8457,52.4348,0.00000000 997,553.3712,206.1530,24.3450,49.0792,0.26356047 997,590.5759,199.7135,24.2323,48.7837,0.03732054 997,627.9044,1.0000,12.2423,50.4297,0.00000000 997,634.6385,197.3620,5.5082,73.4918,0.00000000 997,635.6382,488.1455,4.5085,24.0012,0.00000000 997,628.8438,460.9633,11.3029,51.1834,0.00000000 998,278.9278,229.6778,24.3520,56.4257,0.00000000 998,626.8839,1.0000,13.2628,50.2900,0.00000000 998,634.9747,190.9335,5.1720,77.1609,0.00000000 998,631.6619,486.6054,8.4848,25.5413,0.00000000 999,631.5254,487.0564,8.6213,25.0903,0.00000000 1000,379.5141,199.9014,25.0967,52.2566,0.00000001 1000,601.6327,192.5457,27.3307,58.4809,0.00000000 1000,636.0833,494.2538,4.0634,17.8929,0.00000000 1000,629.4960,481.7594,10.6507,30.3873,0.00000000 1001,636.0092,488.4626,4.1375,23.6841,0.00000000 1002,441.4970,195.5368,21.8652,51.7430,0.99999958 1002,597.5155,1.0000,42.6312,223.1806,0.00000000 1002,426.6638,159.4980,52.0933,97.8744,0.00000000 1002,633.5934,31.0509,6.5533,81.7193,0.00000000 1002,632.3170,487.9372,7.8297,24.2095,0.00000000 1003,468.0360,198.3387,25.3185,57.3961,0.99259287 1003,500.0290,199.5134,24.0738,50.0838,0.00000309 1003,449.6959,200.2282,28.5063,60.4076,0.00000000 1003,430.4550,100.5615,98.5988,212.0297,0.00000000 1003,630.0541,481.2895,10.0926,30.8572,0.00000000 1004,500.3334,198.2977,28.0913,69.6763,1.00000000 1004,517.7618,195.3489,24.8098,55.4447,0.00000000 1004,543.8912,144.8199,81.4708,251.7825,0.00000000 1004,475.3496,97.8128,96.8452,212.8030,0.00000000 1004,628.6018,459.3416,11.5449,52.8051,0.00000000 1004,635.8347,487.5183,4.3120,24.6284,0.00000000 1005,543.7204,208.2165,28.7646,64.4966,0.99996108 1005,634.8025,166.4803,5.3442,79.8631,0.00000000 1005,631.5341,485.4159,8.6126,26.7308,0.00000000 1006,393.3729,209.9976,22.5743,50.7561,0.00000000 1006,590.6848,36.6672,49.4619,124.3707,0.00000000 1006,634.8797,26.2517,5.2670,84.8869,0.00000000 1006,624.9796,53.0668,15.1671,123.7384,0.00000000 1006,631.5690,486.4848,8.5777,25.6619,0.00000000 1007,630.2581,481.3471,9.8886,30.7996,0.00000000 1008,541.1208,196.7009,22.0051,50.9530,0.93942529 1008,558.4646,200.2995,34.4286,95.6831,0.71814787 1008,400.0670,196.4393,24.6363,52.2356,0.06221418 1008,554.4583,214.1669,60.2307,152.0819,0.00000000 1008,629.6793,479.3408,10.4674,32.8059,0.00000000 1009,577.4710,195.1927,23.6939,52.5950,0.99758404 1009,606.3243,199.0296,33.8224,102.9092,0.00122477 1009,421.2053,200.8422,26.5264,51.2680,0.00000381 1009,370.4843,201.4694,28.5366,52.8853,0.00000001 1009,630.1700,180.2281,9.9767,82.9282,0.00000000 1009,628.3979,254.5377,11.7488,79.7452,0.00000000 1010,615.3596,203.3619,24.6564,54.0783,0.99999070 1010,434.8461,209.6220,23.2843,51.7093,0.00000026 1010,513.5179,197.1221,26.2499,57.1665,0.00000016 1010,598.6287,198.2505,27.1695,55.3447,0.00000014 1010,386.8757,196.5624,34.0567,75.2511,0.00000000 1010,496.3083,201.6699,24.0473,56.9531,0.00000000 1010,632.7306,192.0005,7.4161,56.4998,0.00000000 1010,586.8475,162.2586,53.2992,250.0571,0.00000000 1010,629.5751,478.1597,10.5716,33.9870,0.00000000 1011,533.0600,213.8509,24.4353,52.1465,0.99999946 1011,473.7086,212.5404,24.3756,51.6052,0.08607500 1011,410.7603,224.2673,22.2975,52.1020,0.00062219 1011,599.4082,150.9545,40.7385,262.8119,0.00000000 1011,522.5308,176.9313,50.9812,101.2371,0.00000000 1011,622.1405,221.7834,18.0062,135.3262,0.00000000 1011,633.5668,197.9146,6.5799,84.3393,0.00000000 1011,629.4639,479.2519,10.6828,32.8948,0.00000000 1012,558.5010,216.8336,26.3305,57.6021,1.00000000 1012,458.5765,223.3832,21.2027,54.3347,0.99997425 1012,423.5021,221.2849,26.7099,67.7890,0.00000000 1012,439.0848,222.6261,22.4269,55.4442,0.00000000 1012,544.2441,196.5658,48.3638,118.2505,0.00000000 1012,517.5647,179.0523,79.8031,244.1531,0.00000000 1012,629.6334,478.3159,10.5133,33.8308,0.00000000 1013,471.0754,204.4326,23.9549,53.6058,0.99967080 1013,592.8799,211.2070,30.5256,72.0808,0.99930978 1013,427.0703,206.4193,22.2039,48.5551,0.99719054 1013,455.5834,206.3237,22.4111,51.5101,0.99536949 1013,404.3620,205.7785,27.5454,55.9569,0.00023120 1013,386.6918,207.6439,30.9867,77.0935,0.00000004 1013,93.1262,108.5580,27.1005,57.4275,0.00000000 1013,582.4263,178.2007,57.5467,143.7879,0.00000000 1014,481.1111,212.6149,21.9873,52.3749,0.99999988 1014,498.6263,210.1021,23.1383,54.5263,0.99999940 1014,544.1226,212.8043,23.1220,54.8872,0.99993896 1014,558.2075,214.5397,32.8126,82.2349,0.99991220 1014,450.2174,212.3676,23.7922,58.6520,0.97238839 1014,425.8484,209.7742,32.2757,80.7669,0.00000649 1014,92.7585,112.7538,26.9629,54.7405,0.00000005 1014,548.8832,263.5455,37.4836,96.6902,0.00000002 1015,581.6962,210.5875,25.5695,58.2797,0.99999833 1015,518.7806,209.8511,26.2982,58.6266,0.99996787 1015,565.3797,216.8591,25.4642,54.6106,0.99974930 1015,502.5364,214.8512,22.8033,54.5586,0.33841553 1015,477.7507,218.8557,40.6007,97.9317,0.00000911 1015,93.3339,95.6915,28.3123,68.0910,0.00000000 1015,620.3060,227.4572,19.8407,81.8298,0.00000000 1016,611.4002,195.7172,22.2652,53.8538,0.00000046 1016,156.5138,92.8410,25.5733,61.0811,0.00000001 1016,597.5779,193.1725,23.4117,50.1477,0.00000001 1016,488.0466,199.9599,59.7268,143.9044,0.00000000 1016,87.8930,266.3707,44.9091,117.2832,0.00000000 1016,68.9842,230.2001,87.4753,251.7896,0.00000000 1016,468.0687,261.6198,84.3330,241.4509,0.00000000 1016,620.6880,1.6776,19.4587,140.3119,0.00000000 1016,636.5297,187.2012,3.6170,58.8763,0.00000000 1016,629.6381,480.2782,10.5086,31.8685,0.00000000 1017,617.3411,227.7309,22.8056,57.6291,0.05485487 1017,183.1653,106.6663,32.0695,76.3982,0.00000002 1017,77.7766,258.0281,31.6865,58.4478,0.00000000 1017,184.5819,57.1551,25.8109,69.8105,0.00000000 1017,633.3322,216.1478,6.8145,55.2919,0.00000000 1017,596.1475,188.3086,43.9992,249.5587,0.00000000 1017,630.0201,250.9846,10.1266,100.1366,0.00000000 1017,629.3684,477.6935,10.7783,34.4532,0.00000000 1017,603.7678,394.1631,36.3789,117.9836,0.00000000 1018,598.9417,225.1491,26.2757,62.5650,1.00000000 1018,619.2347,223.9038,20.9120,62.9161,0.99999642 1018,138.5686,107.5327,28.8810,62.4836,0.00000008 1018,448.0526,208.4905,22.8761,51.5138,0.00000000 1018,632.4150,210.4596,7.7317,60.4114,0.00000000 1018,121.9454,61.5951,53.2283,125.4255,0.00000000 1018,589.7131,178.7572,50.4336,235.6273,0.00000000 1018,629.6701,480.2011,10.4766,31.9456,0.00000000 1019,552.0746,212.6428,27.6916,66.2299,1.00000000 1019,608.2011,212.0883,25.7705,57.1597,1.00000000 1019,572.6062,208.4180,29.1877,71.0105,0.99999994 1019,626.3063,201.3736,13.8404,78.0537,0.00000000 1020,561.6369,227.5780,30.8760,76.7186,1.00000000 1020,589.2059,221.2221,34.4166,81.0704,0.99999893 1020,618.2000,233.3010,21.9467,58.3549,0.99626637 1020,632.3824,203.4487,7.7643,73.8738,0.00000000 1020,572.1103,1.0000,68.0364,217.8398,0.00000000 1021,379.1320,225.2263,22.3809,54.6333,0.00000000 1021,409.5633,211.3443,28.5216,51.4068,0.00000000 1021,12.1663,91.8217,25.8729,62.6438,0.00000000 1021,19.5363,276.3867,31.0560,67.0529,0.00000000 1021,1.0000,234.7988,30.6982,143.5963,0.00000000 1021,1.0000,216.3252,80.1974,241.5704,0.00000000 1021,1.0000,380.1942,59.9669,131.9525,0.00000000 1021,635.1262,486.9910,5.0205,25.1557,0.00000000 1021,628.1581,458.5411,11.9886,53.6056,0.00000000 1022,385.2901,210.6477,21.6052,49.7442,0.00000002 1022,451.5452,213.5260,27.7670,54.0993,0.00000000 1022,1.0000,1.0000,56.1329,217.7653,0.00000000 1022,1.0000,381.1611,60.1171,130.9856,0.00000000 1022,631.2125,485.4753,8.9342,26.6714,0.00000000 1023,514.3478,217.3056,26.8819,73.9321,0.00194222 1023,503.6629,216.0570,21.6439,60.7396,0.00000000 1023,481.9377,119.0299,96.7890,238.6873,0.00000000 1023,636.1403,493.6593,4.0064,18.4874,0.00000000 1023,629.5025,480.9199,10.6442,31.2268,0.00000000 1023,602.4411,395.2774,37.7056,116.8693,0.00000000 1024,459.8678,194.7314,24.5046,57.9730,0.99993265 1024,600.3804,91.2076,39.7663,266.4601,0.00000000 1024,415.7501,114.3526,98.5129,205.0184,0.00000000 1024,631.1081,195.6227,9.0386,83.8201,0.00000000 1024,635.5402,487.7919,4.6065,24.3548,0.00000000 1024,628.6915,459.9152,11.4552,52.2315,0.00000000 1025,528.5740,202.9864,29.0917,74.7566,1.00000000 1025,545.4609,201.6634,26.5193,57.7899,0.00000000 1025,507.2308,205.0259,33.1295,71.2138,0.00000000 1025,553.5951,249.5123,28.7301,64.3234,0.00000000 1025,627.3873,1.0000,12.7594,48.7007,0.00000000 1025,499.3963,98.0193,95.2391,224.9301,0.00000000 1025,631.5386,487.0120,8.6081,25.1347,0.00000000 1026,423.8346,213.9549,22.6438,53.2241,0.50350147 1026,13.4550,258.7143,29.7194,72.0736,0.00000000 1026,1.0000,229.9991,34.0203,140.8421,0.00000000 1026,599.1399,109.7575,41.0068,269.0645,0.00000000 1026,633.8470,276.4688,6.2997,77.9839,0.00000000 1026,631.6337,487.4934,8.5130,24.6533,0.00000000 1027,68.2789,240.8047,29.3067,63.6311,0.00000001 1027,634.2883,271.8122,5.8584,75.8237,0.00000000 1027,631.9013,486.9889,8.2454,25.1578,0.00000000 1028,581.8735,191.9772,32.7261,81.9576,0.99995971 1028,605.0215,185.5795,26.6690,60.4721,0.00000009 1028,637.5770,183.7777,2.5697,62.5111,0.00000000 1028,634.1052,204.7358,6.0415,75.2705,0.00000000 1028,549.4794,135.5309,87.9818,213.7372,0.00000000 1028,635.4142,488.0441,4.7325,24.1026,0.00000000 1029,634.5037,218.6684,5.6430,77.2749,0.00000000 1029,635.4467,488.1696,4.7000,23.9771,0.00000000 1029,628.8749,461.4128,11.2718,50.7339,0.00000000 1030,216.4798,243.7815,40.4160,103.4990,0.00000000 1030,626.7383,22.6401,13.4084,123.7571,0.00000000 1030,636.3281,63.8836,3.8186,70.0570,0.00000000 1030,631.3511,486.8088,8.7956,25.3379,0.00000000 1031,263.5305,231.1497,33.3362,73.0731,0.00000000 1031,230.7659,216.6031,91.7604,258.1901,0.00000000 1031,636.1802,493.8870,3.9665,18.2597,0.00000000 1031,629.5786,481.0843,10.5681,31.0624,0.00000000 1032,11.3522,177.9136,21.6359,51.8059,0.00000000 1032,601.7927,393.4967,38.3540,118.6500,0.00000000 1032,594.0646,63.0021,46.0821,264.7340,0.00000000 1032,634.9764,485.8510,5.1703,26.2957,0.00000000 1032,625.3859,94.4307,14.7608,133.2699,0.00000000 1032,627.4288,455.4578,12.7179,56.6889,0.00000000 1033,486.1672,202.2392,24.8771,51.2431,0.00000164 1033,536.1880,179.3617,41.8097,109.1339,0.00000000 1033,629.7318,481.6680,10.4149,30.4787,0.00000000 1034,482.7390,210.3933,21.8962,49.0746,0.00002387 1034,502.4106,205.0127,23.6073,53.1002,0.00000018 1034,634.4363,187.7629,5.7104,77.9708,0.00000000 1034,631.7975,487.2304,8.3492,24.9163,0.00000000 1035,550.6334,198.0027,21.4777,53.1145,0.54623175 1035,503.3994,201.7327,23.6024,51.7363,0.00002905 1035,485.9917,211.1175,27.8806,62.4008,0.00000000 1035,616.8701,237.0909,23.2766,56.0324,0.00000000 1035,595.8526,192.4417,44.2941,264.2806,0.00000000 1035,636.0232,303.9730,4.1235,64.0713,0.00000000 1035,637.1307,231.7998,3.0160,63.0887,0.00000000 1035,631.6096,486.6569,8.5371,25.4898,0.00000000 1036,522.6100,213.9864,24.7114,54.8810,0.30831903 1036,583.2595,202.5853,25.1981,52.1872,0.00000326 1036,134.1049,215.9731,30.7986,68.9378,0.00000000 1036,507.7368,186.4553,46.7384,105.0705,0.00000000 1036,108.7510,193.0568,93.2610,262.9282,0.00000000 1036,636.2459,493.9296,3.9008,18.2171,0.00000000 1036,629.5743,480.2706,10.5724,31.8761,0.00000000 1037,617.9700,207.0120,22.1767,59.5347,0.00021589 1037,17.7826,206.4966,22.3141,47.7995,0.00001457 1037,433.8130,199.4189,25.8707,53.8552,0.00000051 1037,3.2369,204.1916,23.3790,51.0098,0.00000000 1037,119.7144,226.9028,36.8588,80.2638,0.00000000 1037,64.7955,204.9209,22.4139,50.3822,0.00000000 1037,633.3246,198.8304,6.8221,56.2432,0.00000000 1037,592.6258,164.6255,47.5209,259.7179,0.00000000 1037,635.2938,487.0686,4.8529,25.0781,0.00000000 1038,610.1642,195.8433,22.2364,55.1623,0.99996328 1038,17.5809,211.3520,23.3251,53.6204,0.00058721 1038,515.7344,206.9122,21.8907,54.4522,0.00001145 1038,176.4428,213.3530,28.1196,59.3921,0.00000456 1038,623.3261,191.5660,16.8206,53.3349,0.00000012 1038,37.2084,208.3120,24.4340,55.7666,0.00000007 1038,466.6543,203.6075,23.1243,56.1874,0.00000000 1038,559.5968,242.8206,61.0545,160.4575,0.00000000 1038,635.5932,204.0798,4.5535,62.4868,0.00000000 1038,631.5302,486.9115,8.6165,25.2352,0.00000000 1039,487.2594,207.1029,21.6967,61.0460,0.99999714 1039,539.6944,209.2671,25.7447,60.6968,0.85562998 1039,435.8050,214.2651,21.5678,52.2764,0.03522189 1039,522.4493,212.0075,28.9034,63.6585,0.00029653 1039,553.4517,219.3076,22.2296,54.3592,0.00007117 1039,505.2902,211.7946,28.5735,60.9158,0.00000006 1039,526.7091,177.2285,50.5306,107.2105,0.00000000 1040,489.4413,207.8114,23.2239,55.8437,0.99991184 1040,544.0927,202.2397,22.8587,54.1348,0.99968737 1040,582.4112,195.3819,29.6874,77.3318,0.99942136 1040,526.9346,205.9727,24.7387,59.6218,0.99422532 1040,412.7345,202.1501,21.1915,52.3699,0.82340676 1040,474.0046,203.5560,24.5403,62.8092,0.09261684 1040,14.1453,205.5142,22.4112,49.8593,0.00000106 1041,454.5461,206.2532,23.9790,57.1996,0.99999982 1041,437.5551,206.9177,21.0920,51.1815,0.99996144 1041,539.5400,201.3642,28.1770,72.8688,0.99902940 1041,470.0195,204.7275,24.9203,59.7050,0.92269915 1041,602.3189,201.0735,26.1524,66.2748,0.80477077 1041,402.7144,209.3316,22.0937,50.1349,0.23685932 1041,573.8151,202.5626,30.8330,81.7726,0.15241437 1041,515.6258,203.3671,24.1785,61.0674,0.05992935 1041,499.3272,205.5916,24.9136,61.5240,0.03773596 1041,560.1427,205.1551,25.7470,66.0299,0.00142852 1042,565.9106,196.1764,42.3298,102.5799,1.00000000 1042,456.6772,208.8746,25.9056,62.5951,0.99999994 1042,536.5450,202.0239,31.3280,81.4258,0.99999642 1042,513.0886,206.8427,28.3203,71.3085,0.99940675 1042,610.4600,202.0292,28.1880,79.9067,0.99832505 1042,472.3253,205.5575,23.5591,56.0471,0.00196608 1042,494.5750,208.4738,27.2857,61.9937,0.00000023 1043,568.1609,205.6624,37.7471,97.5368,0.99999964 1043,591.3597,211.6147,37.4346,100.1483,0.99999297 1043,522.6357,207.2722,24.4365,60.2241,0.80662572 1043,555.6922,205.2079,25.5577,66.6970,0.30100986 1043,394.9843,218.7961,21.4500,51.3444,0.00002036 1043,542.2681,207.3687,22.2960,55.6956,0.00000003 1043,420.0748,213.2390,23.1483,52.8593,0.00000002 1044,504.1789,215.3663,28.4126,67.3887,1.00000000 1044,470.4276,215.3728,29.8105,74.0868,0.99999976 1044,68.0583,197.9181,27.3656,52.4422,0.00000000 1044,629.9501,480.8059,10.1966,31.3408,0.00000000 1045,476.6830,199.3411,22.8361,52.1533,0.00035895 1045,628.3110,1.0000,11.8357,48.9662,0.00000000 1045,632.0805,486.6691,8.0662,25.4776,0.00000000 1046,580.9842,200.8633,26.3311,69.4894,0.99999833 1046,477.5988,212.7082,23.4548,49.1243,0.00602233 1046,599.3068,206.9923,26.8663,67.5434,0.00157981 1046,632.2992,180.0723,7.8475,76.1938,0.00000000 1046,631.6872,486.9325,8.4595,25.2142,0.00000000 1047,596.4084,222.0442,33.6333,66.7782,0.00000059 1047,602.8879,398.7794,37.2588,113.3673,0.00000000 1047,626.5758,454.3086,13.5709,57.8381,0.00000000 1047,637.5199,211.4262,2.6268,64.0555,0.00000000 1047,634.7653,485.3017,5.3814,26.8450,0.00000000 1048,604.4260,393.1703,35.7207,118.9764,0.00000000 1048,626.1000,457.2538,14.0467,54.8929,0.00000000 1048,1.0000,380.5647,59.9954,131.5820,0.00000000 1048,636.0921,493.4073,4.0546,18.7394,0.00000000 1049,629.7303,479.9768,10.4164,32.1699,0.00000000 1050,595.9976,227.9772,27.9151,62.2233,0.00000000 1050,634.7080,205.5741,5.4387,75.7381,0.00000000 1050,632.7798,1.0000,7.3669,35.4633,0.00000000 1050,635.4454,488.0496,4.7013,24.0971,0.00000000 1050,628.2836,460.5746,11.8631,51.5721,0.00000000 1051,635.4626,487.2869,4.6841,24.8598,0.00000000 1051,628.1694,457.9174,11.9773,54.2293,0.00000000 1052,601.8345,399.5102,38.3122,112.6365,0.00000000 1052,627.9395,458.8166,12.2072,53.3301,0.00000000 1052,636.4242,493.1544,3.7225,18.9923,0.00000000 1053,518.9833,211.3654,26.1334,54.9540,0.99998814 1053,504.4663,208.6257,26.0436,54.1875,0.00907783 1053,473.4170,206.6025,23.2165,47.8406,0.00005226 1053,374.3547,190.9364,22.8899,50.7161,0.00000000 1053,530.3167,200.3904,33.7056,54.6462,0.00000000 1053,505.2424,179.7595,50.5104,104.7531,0.00000000 1053,476.7114,117.4350,100.7622,213.2045,0.00000000 1053,635.1094,487.1317,5.0373,25.0150,0.00000000 1053,627.5772,458.3533,12.5695,53.7934,0.00000000 1054,446.5293,206.3622,23.9067,48.5096,0.00000000 1054,492.5580,202.4257,28.9304,59.2959,0.00000000 1054,635.3349,216.5957,4.8118,64.6086,0.00000000 1054,629.5282,480.6845,10.6185,31.4622,0.00000000 1055,571.2579,212.0413,32.2531,77.8689,0.99999964 1055,187.8106,218.4134,26.4941,50.9558,0.00001375 1055,493.5791,218.7822,22.9641,50.0333,0.00000000 1055,589.8327,215.8106,31.9064,72.1596,0.00000000 1055,627.7778,1.0000,12.3689,51.2967,0.00000000 1055,546.3117,127.6360,88.9680,208.8529,0.00000000 1055,634.2900,177.9832,5.8567,76.0604,0.00000000 1055,636.0412,493.4176,4.1055,18.7291,0.00000000 1055,629.4902,480.6867,10.6565,31.4600,0.00000000 1056,199.0228,214.0535,26.3811,50.5948,0.99999988 1056,103.5175,217.9306,23.7908,49.7048,0.75454390 1056,592.6831,211.8844,22.1204,53.3173,0.00002340 1056,604.8157,206.1654,24.7367,57.8160,0.00000000 1056,295.9352,210.0167,26.7298,58.2456,0.00000000 1056,190.6748,183.6805,51.4251,94.0970,0.00000000 1056,637.8447,200.1891,2.3020,61.0810,0.00000000 1056,633.5347,209.4119,6.6120,75.6954,0.00000000 1056,634.9565,487.0250,5.1902,25.1217,0.00000000 1056,628.0435,458.0853,12.1032,54.0614,0.00000000 1057,349.8005,219.0934,27.5206,51.5574,0.99999911 1057,272.1776,222.9783,21.6972,47.2093,0.00000058 1057,466.7342,215.2511,33.6796,68.5730,0.00000004 1057,334.1147,213.9709,23.3921,55.2380,0.00000000 1057,530.2292,200.3284,23.8334,49.5451,0.00000000 1057,341.5784,192.8295,52.9309,94.2267,0.00000000 1057,634.9252,487.5654,5.2215,24.5813,0.00000000 1057,627.8651,459.9589,12.2816,52.1878,0.00000000 1058,553.7230,225.0345,23.8841,52.6937,0.99994379 1058,565.2105,215.5889,28.8247,60.2122,0.00000001 1058,637.7744,231.1121,2.3723,66.2921,0.00000000 1058,632.2104,1.0000,7.9363,39.8967,0.00000000 1058,628.4914,235.9619,11.6553,84.2547,0.00000000 1058,636.2649,493.5007,3.8818,18.6460,0.00000000 1058,629.5338,480.4489,10.6129,31.6978,0.00000000 1059,518.2264,204.4963,31.6801,66.5212,0.00000014 1059,536.3130,196.0931,29.2613,65.9411,0.00000000 1059,627.2941,1.0000,12.8526,46.0256,0.00000000 1059,633.5739,299.7729,6.5728,78.1091,0.00000000 1059,628.5834,458.9727,11.5633,53.1740,0.00000000 1059,1.0000,126.7096,58.7142,247.3119,0.00000000 1059,636.1237,487.6526,4.0230,24.4941,0.00000000 1060,412.7994,207.6091,23.2983,54.3739,0.00020185 1060,15.9015,186.6309,23.7362,53.9680,0.00015329 1060,509.8772,210.2975,24.8494,53.6454,0.00000007 1060,34.4849,235.0147,30.4106,67.8289,0.00000000 1060,401.0191,179.7179,50.1417,97.9125,0.00000000 1060,1.0000,199.5959,56.7781,249.2609,0.00000000 1060,502.2726,231.8597,88.2859,256.0595,0.00000000 1060,628.5401,459.4421,11.6066,52.7046,0.00000000 1060,635.2842,487.3527,4.8625,24.7940,0.00000000 1061,485.4177,187.3803,37.2102,73.6665,0.00000000 1061,192.0488,215.6024,24.7771,52.5110,0.00000000 1061,627.7803,1.0000,12.3664,44.5871,0.00000000 1061,636.3019,494.1775,3.8448,17.9692,0.00000000 1061,629.4563,480.9013,10.6904,31.2454,0.00000000 1062,527.3788,217.8302,29.2292,58.0591,0.98800993 1062,543.1154,210.1665,33.0926,59.3409,0.00012992 1062,57.9623,182.4035,23.0161,57.2349,0.00000350 1062,488.8429,277.8028,21.9953,60.2244,0.00000000 1062,140.5762,230.9651,36.8113,90.6277,0.00000000 1062,627.1273,1.0000,13.0194,46.9588,0.00000000 1062,635.9044,38.9199,4.2423,65.4347,0.00000000 1062,496.7506,164.5538,92.0369,209.6472,0.00000000 1062,636.2638,494.5081,3.8829,17.6386,0.00000000 1062,629.5691,481.4461,10.5776,30.7006,0.00000000 1063,537.7147,186.7523,21.8524,59.2085,0.16446359 1063,407.9752,203.6107,21.2424,52.3184,0.00000003 1063,602.1919,392.6945,37.9548,119.4522,0.00000000 1063,635.8967,493.7695,4.2500,18.3772,0.00000000 1063,629.3276,481.0157,10.8191,31.1310,0.00000000 1064,156.8944,219.6937,28.8198,68.9369,0.00000000 1064,630.4775,85.0394,9.6692,75.7411,0.00000000 1064,627.3911,457.7313,12.7556,54.4154,0.00000000 1064,636.0253,494.1469,4.1214,17.9998,0.00000000 1065,51.1237,188.5393,92.6045,254.1010,0.00000000 1065,629.6425,480.6997,10.5042,31.4470,0.00000000 1065,636.1990,493.7571,3.9477,18.3896,0.00000000 1066,483.5397,286.2955,41.4390,70.9873,0.00000001 1066,372.3419,208.2458,24.2262,51.4118,0.00000000 1066,502.1954,279.3431,46.9095,113.7452,0.00000000 1066,456.9526,267.6001,93.7166,244.5466,0.00000000 1066,602.8497,391.7675,37.2970,120.3792,0.00000000 1066,635.7249,493.7691,4.4218,18.3776,0.00000000 1066,629.2588,481.3455,10.8879,30.8012,0.00000000 1067,453.6667,210.3519,23.0926,52.9466,0.00000000 1067,629.7003,480.5366,10.4464,31.6101,0.00000000 1068,483.7957,208.4736,23.5360,50.7615,0.00000324 1068,495.6826,212.7741,26.0963,54.2352,0.00000000 1068,629.5698,481.5204,10.5769,30.6263,0.00000000 1069,438.9037,218.9525,24.1409,60.3958,0.82233214 1069,476.2574,197.0609,25.4493,55.1281,0.00001209 1069,499.4951,214.6570,22.9948,52.7389,0.00000002 1069,419.8158,208.2962,22.4105,56.4371,0.00000000 1069,405.7544,198.2464,23.4658,54.6338,0.00000000 1069,468.1118,214.0221,24.3063,57.3486,0.00000000 1069,487.4165,212.4488,22.3746,57.7015,0.00000000 1069,451.4080,214.7950,22.2414,51.2926,0.00000000 1069,400.3447,129.7954,96.6360,218.5227,0.00000000 1069,635.3084,487.7788,4.8383,24.3679,0.00000000 1069,628.4583,460.3749,11.6884,51.7718,0.00000000 1070,498.2781,203.6096,23.8191,54.1044,0.99736166 1070,477.0685,219.8767,23.9204,56.3979,0.90179235 1070,434.1805,209.2264,21.8723,52.1976,0.00018088 1070,575.6118,213.8898,23.1597,54.9722,0.00006432 1070,418.7318,203.1440,26.6824,53.6017,0.00000000 1070,598.1668,201.7881,23.7139,55.7746,0.00000000 1070,466.8059,186.3020,50.8241,108.2000,0.00000000 1070,636.8156,197.2136,3.3311,62.0543,0.00000000 1071,572.0335,225.7885,30.6406,73.7215,0.99982661 1071,464.0453,210.0174,30.3270,79.1658,0.97411942 1071,486.0961,209.9821,30.5104,65.0493,0.00000681 1071,378.2806,200.7929,27.8654,66.9163,0.00000003 1071,557.3607,231.1886,25.8469,61.0881,0.00000002 1071,393.7428,211.0506,34.2325,77.0818,0.00000000 1072,584.6199,226.3157,32.6982,69.6933,0.14313638 1072,624.2382,210.9818,15.9085,59.4572,0.00001567 1072,517.0706,208.8077,25.5914,61.8238,0.00000128 1072,461.6044,204.6842,22.5170,54.6771,0.00000001 1072,478.4824,208.1910,55.7373,134.2635,0.00000000 1072,503.9484,187.6315,48.3448,118.9597,0.00000000 1073,458.9908,214.5178,33.9772,96.0957,0.99963099 1073,493.1998,206.5287,32.7274,65.5842,0.00033598 1073,579.4498,205.2016,26.4920,59.6889,0.00004664 1073,591.6611,212.2912,29.7496,63.2925,0.00000000 1073,527.2542,95.8368,26.3400,60.9288,0.00000000 1073,435.0065,155.6115,81.7820,217.7260,0.00000000 1073,629.4914,480.8444,10.6553,31.3023,0.00000000 1074,582.3958,226.0031,51.8050,141.1853,0.99788356 1074,595.2820,306.3972,26.7112,71.8927,0.00000043 1074,572.1191,216.3017,38.7442,86.0699,0.00000019 1074,468.3434,258.4448,29.1413,62.9143,0.00000000 1074,607.3369,284.5203,32.8098,110.5146,0.00000000 1074,624.1156,200.2705,16.0311,134.3078,0.00000000 1074,628.8521,292.1386,11.2946,90.2631,0.00000000 1074,631.4918,486.8424,8.6549,25.3043,0.00000000 1075,593.1964,200.9017,22.8739,57.3885,0.00015645 1075,551.5911,196.6879,23.0780,53.3310,0.00000009 1075,578.0549,198.4032,24.3221,55.7227,0.00000000 1075,473.8716,217.8449,38.0562,88.9309,0.00000000 1075,606.4061,200.4932,26.0517,62.0782,0.00000000 1075,580.5817,174.6348,48.3215,118.2125,0.00000000 1075,598.7424,147.3179,41.4043,259.8348,0.00000000 1075,637.1824,184.3987,2.9643,62.6106,0.00000000 1075,637.4956,220.5560,2.6511,65.2812,0.00000000 1075,631.9310,203.3709,8.2157,95.1393,0.00000000 1075,631.5141,486.8094,8.6326,25.3373,0.00000000 1076,386.5305,213.1860,23.1929,59.7662,0.99999201 1076,544.1807,186.5721,23.9986,59.4070,0.00000000 1076,528.0212,192.9159,27.1986,53.8885,0.00000000 1076,531.7633,212.1046,34.9063,78.3174,0.00000000 1076,517.7367,205.7307,25.1754,59.4881,0.00000000 1076,373.0215,191.6163,47.0307,102.5892,0.00000000 1076,516.8884,140.6456,90.6540,232.2419,0.00000000 1076,349.0284,106.9278,103.1548,219.8678,0.00000000 1076,631.3856,486.4826,8.7611,25.6641,0.00000000 1077,412.2495,215.8570,36.9853,94.4608,1.00000000 1077,504.8813,212.6135,22.3915,55.3387,0.04202864 1077,549.1575,215.9682,22.2962,53.4362,0.00000000 1077,493.7945,192.3484,45.3683,100.2579,0.00000000 1077,398.0517,228.6652,31.7321,72.1019,0.00000000 1077,387.2206,135.4441,88.8515,218.1162,0.00000000 1077,631.5317,486.5595,8.6150,25.5872,0.00000000 1078,497.2502,222.7972,54.0155,145.3751,1.00000000 1078,573.3320,216.2616,21.8172,58.9597,0.99705023 1078,527.5311,204.7034,26.9543,60.7749,0.00000012 1078,440.2518,249.5114,26.1320,63.4238,0.00000002 1078,585.0325,213.1486,24.3410,57.0199,0.00000002 1078,558.4977,210.7800,22.9830,52.0479,0.00000000 1079,468.5099,267.6286,21.5822,55.9325,0.00001747 1079,479.9294,273.9052,22.5105,52.5721,0.00000000 1079,638.6524,212.2060,1.4943,61.1351,0.00000000 1079,630.9935,187.5579,9.1532,75.1921,0.00000000 1079,635.4260,487.7731,4.7207,24.3736,0.00000000 1079,628.5796,459.5111,11.5671,52.6356,0.00000000 1080,635.6469,307.5796,4.4998,68.2002,0.00000000 1080,599.1011,280.4544,41.0456,231.6923,0.00000000 1080,632.8094,41.3959,7.3373,76.7879,0.00000000 1080,635.3415,487.5280,4.8052,24.6187,0.00000000 1080,628.5123,459.4460,11.6344,52.7007,0.00000000 1081,580.0512,214.8780,29.5416,78.5429,0.00192020 1081,542.6190,114.1521,26.0075,55.9322,0.00000000 1081,553.7487,145.7728,84.1836,215.5133,0.00000000 1081,635.3865,487.7400,4.7602,24.4067,0.00000000 1081,628.3519,459.4306,11.7948,52.7161,0.00000000 1082,558.1638,216.9218,29.5927,63.7005,0.00005192 1082,634.3666,128.5695,5.7801,75.1541,0.00000000 1082,635.6508,487.9778,4.4959,24.1689,0.00000000 1082,628.7410,459.7879,11.4057,52.3588,0.00000000 1083,407.8586,204.8872,21.5159,49.0299,0.00000000 1083,636.4678,277.3073,3.6789,64.6545,0.00000000 1083,631.4653,486.6996,8.6814,25.4471,0.00000000 1084,465.6095,210.7454,28.3068,53.4811,0.00000001 1084,453.4773,209.3631,22.7291,54.6279,0.00000000 1084,507.7582,210.4293,23.3717,56.4272,0.00000000 1084,479.7128,222.8514,23.4001,54.0131,0.00000000 1084,631.5154,486.8575,8.6313,25.2892,0.00000000 1085,544.6599,216.2724,21.0571,50.4634,1.00000000 1085,560.5793,210.4918,22.0655,50.9689,0.99999863 1085,84.8826,197.0655,22.8032,47.7677,0.00000073 1085,511.5802,222.5145,21.7225,49.8678,0.00000061 1085,530.9708,218.8360,21.2605,51.8233,0.00000011 1085,466.9943,205.8130,21.4317,49.4957,0.00000000 1085,455.3425,202.8663,21.7764,48.7169,0.00000000 1085,628.2293,1.0000,11.9174,40.8978,0.00000000 1085,631.3528,485.4373,8.7939,26.7094,0.00000000 1086,607.7074,219.5765,22.2473,54.0660,0.99982744 1086,50.5886,204.7420,22.9142,47.9273,0.48472160 1086,622.5561,219.8742,17.5906,56.4178,0.00001147 1086,562.5847,211.3246,32.6832,85.0848,0.00000444 1086,590.1213,213.5447,29.5818,64.0003,0.00000002 1086,63.7543,196.8664,24.1521,50.4239,0.00000001 1086,636.9882,218.1405,3.1585,60.2651,0.00000000 1087,16.9033,206.9066,25.7963,53.5324,0.99619234 1087,525.5869,208.0635,22.2773,55.5349,0.98138982 1087,32.3955,205.9131,26.0611,53.6510,0.41899055 1087,556.9543,218.3092,26.3983,68.5172,0.25566649 1087,518.6518,233.0447,25.9986,75.3715,0.02173630 1087,510.9230,209.1960,21.8311,49.0837,0.00000001 1087,493.7731,207.3182,52.5041,128.5787,0.00000000 1088,11.5153,207.5376,28.2463,54.1136,0.99999636 1088,574.4955,209.0309,21.5715,56.3382,0.99905026 1088,1.0000,202.6257,21.2914,59.4263,0.00000244 1088,410.7114,199.3767,20.5681,50.3211,0.00000177 1088,548.6465,205.0749,21.3044,52.3005,0.00000008 1088,1.0000,180.2136,52.2377,100.0818,0.00000000 1088,491.1263,245.8150,27.8719,58.8229,0.00000000 1088,477.7274,231.3481,54.1110,137.4369,0.00000000 1088,631.2222,486.3413,8.9245,25.8054,0.00000000 1089,610.5020,211.7696,22.3891,57.7517,0.99999994 1089,528.1316,199.1646,21.8597,49.9196,0.00007124 1089,536.0356,103.6246,22.8107,53.7398,0.00000166 1089,427.5040,194.3910,20.8731,53.8225,0.00000006 1089,591.6628,207.6505,22.6663,54.7901,0.00000000 1089,436.0131,207.3754,21.7451,55.2303,0.00000000 1089,626.3574,204.6908,13.7893,80.4306,0.00000000 1089,591.9282,116.2199,48.2185,252.9068,0.00000000 1089,634.6013,185.4316,5.5454,61.5884,0.00000000 1089,631.3691,486.7314,8.7776,25.4153,0.00000000 1090,535.8516,88.4988,22.4631,55.8677,0.00001669 1090,509.4791,207.3029,21.5122,47.6423,0.00000023 1090,484.0676,217.6678,27.7206,58.9603,0.00000000 1090,637.6240,184.4189,2.5227,62.8368,0.00000000 1090,631.9390,189.8236,8.2077,78.9153,0.00000000 1090,631.6731,487.1613,8.4736,24.9854,0.00000000 1091,480.5938,88.7935,22.9299,54.4308,0.00000000 1091,434.9201,215.8272,27.0787,62.7600,0.00000000 1091,541.4568,210.2881,27.5217,54.8768,0.00000000 1091,364.3472,219.2774,22.3156,55.1783,0.00000000 1091,414.2844,217.5518,33.3890,75.0081,0.00000000 1091,631.9689,1.0000,8.1778,35.9140,0.00000000 1091,407.6144,177.8417,82.9070,239.7866,0.00000000 1091,636.3123,492.2821,3.8344,19.8646,0.00000000 1091,600.7104,398.4993,39.4363,113.6474,0.00000000 1091,629.7322,479.4378,10.4145,32.7089,0.00000000 1092,543.6412,226.5876,37.7605,95.9194,1.00000000 1092,584.1693,228.1113,31.7123,76.5909,0.99999994 1092,602.4223,226.6719,30.5098,71.6375,0.99998671 1092,218.7773,200.5865,22.3236,48.6979,0.82798564 1092,374.8217,61.4039,22.7648,64.7919,0.00000204 1093,571.2379,216.7441,45.4128,125.6713,1.00000000 1093,534.2625,220.5822,42.2231,124.2440,0.99999911 1093,495.9333,222.7728,35.8469,89.7066,0.99999690 1093,129.7074,199.9229,26.9379,63.1161,0.51246202 1093,195.1671,39.1357,24.9129,73.9678,0.00000227 1093,81.1579,205.4429,39.1468,109.8501,0.00000000 1094,350.5818,197.3462,67.0335,157.4557,1.00000000 1094,296.6695,206.2704,60.3467,163.8694,1.00000000 1094,602.6258,188.3198,28.6526,78.1753,0.99981648 1094,279.9270,221.9071,40.3982,130.6264,0.92098802 1094,299.7514,289.7869,31.9805,73.6556,0.00000001 1095,576.2498,229.9588,32.0479,91.2439,1.00000000 1095,351.1606,216.2011,41.9468,121.7683,0.99999964 1095,9.7101,223.1073,86.2050,205.9238,0.99999291 1095,382.9708,208.3504,28.6198,73.4512,0.99941695 1095,398.9436,211.1558,30.9768,75.4810,0.97594070 1096,460.0472,229.5328,47.8908,118.4350,1.00000000 1096,255.0879,204.5312,37.8733,98.6243,1.00000000 1096,341.7009,214.3108,28.6227,70.2839,1.00000000 1096,175.8369,204.7316,39.1424,88.6731,1.00000000 1096,210.4841,199.8750,42.6069,97.6318,1.00000000 1096,56.3824,220.1310,63.0846,171.8897,0.99999994 1096,511.3578,238.2882,44.6255,114.4189,0.99999928 1096,513.1968,215.6367,27.1272,70.7963,0.00000035 1096,527.6643,215.3681,23.7173,57.2065,0.00000028 1096,499.6140,161.4021,88.2438,208.2537,0.00000000 1097,211.8109,204.1205,50.1061,114.2954,1.00000000 1097,328.4400,213.6770,32.3445,78.7477,1.00000000 1097,529.8848,240.5615,65.5469,169.5201,1.00000000 1097,261.6447,192.8486,53.5139,124.8123,1.00000000 1097,158.8605,209.1406,39.4034,99.3158,0.99999994 1097,528.0734,220.9886,22.2397,56.3481,0.99999976 1097,511.3434,218.7114,22.0295,54.4776,0.99999964 1097,585.8416,248.6213,54.3051,150.9965,0.99257576 1097,96.5917,188.6599,24.2029,58.6764,0.00036376 1098,218.9492,192.2648,63.8913,140.4744,1.00000000 1098,294.3756,194.3053,59.5087,143.0300,1.00000000 1098,338.6680,217.6288,31.3806,78.7930,1.00000000 1098,534.8318,226.0168,22.5651,56.9539,1.00000000 1098,126.0174,212.4977,51.2787,125.2544,1.00000000 1098,555.9140,225.4019,22.9495,58.7569,0.99999994 1098,507.2423,212.7887,21.3488,49.1735,0.01650859 1098,51.1815,173.6241,34.0008,82.3540,0.00000001 1098,602.6008,180.9277,22.0478,51.3572,0.00000000 1099,152.5512,203.7191,63.6024,162.8567,1.00000000 1099,439.2592,227.0503,31.0509,76.1610,1.00000000 1099,14.6137,217.4440,79.2681,182.8477,1.00000000 1099,202.1262,219.7265,38.7047,98.1841,0.99999857 1099,458.5845,231.7168,30.0052,72.4504,0.99999630 1099,402.6434,214.2571,23.5316,50.9252,0.00520800 1100,423.9928,231.4308,38.6567,100.0094,1.00000000 1100,90.6120,213.3643,44.9159,112.9576,0.99999988 1100,393.4906,229.8744,45.1415,101.8392,0.99995315 1100,333.3511,213.6800,24.0645,52.6207,0.99973857 1100,132.7842,214.3783,24.1870,60.4030,0.98940521 1100,180.5647,206.3617,23.5219,50.7732,0.00945755 1100,115.6046,191.5674,48.4704,115.9611,0.00000000 1100,372.4876,212.8529,21.1732,56.1145,0.00000000 1101,488.7221,228.5858,57.3172,164.8386,1.00000000 1101,15.9254,216.3566,57.0015,135.7931,1.00000000 1101,454.3271,243.7265,54.0306,147.4260,1.00000000 1101,317.9568,217.3468,23.8686,53.2179,0.99999994 1101,163.4674,211.4073,24.2560,53.7339,0.99999887 1101,85.7068,219.3289,34.6317,76.7625,0.99994993 1101,150.4032,211.6672,21.8198,51.2278,0.99850261 1101,45.7202,215.2241,34.0293,85.7497,0.00000028 1102,340.3737,219.1028,29.0451,61.6391,1.00000000 1102,156.1505,213.9375,25.1677,58.4832,1.00000000 1102,174.4260,212.0630,27.7125,64.1632,0.99999940 1102,17.4866,214.7286,34.0536,88.5041,0.80659199 1102,495.3241,196.1711,32.0986,82.1486,0.00000028 1103,362.6254,223.5574,32.8643,77.5007,1.00000000 1103,130.4801,212.3112,33.6592,80.3015,1.00000000 1103,163.0814,216.3667,30.7961,78.0013,1.00000000 1103,570.6689,192.6107,30.2230,66.8459,0.10160980 1103,478.5963,209.1655,24.0485,63.0308,0.00037424 1104,69.2140,212.4790,51.6955,129.8720,1.00000000 1104,114.6953,216.3232,46.7071,125.8600,1.00000000 1104,389.7542,221.9616,48.0059,114.7321,1.00000000 1104,154.0495,225.3821,29.9120,75.6052,1.00000000 1104,575.6121,210.4376,33.1790,83.6208,0.01656691 1105,472.1293,225.2141,68.8252,173.7957,1.00000000 1105,110.4409,221.7382,45.3754,119.9088,1.00000000 1105,70.5229,216.5723,53.4531,134.2475,0.99999982 1105,324.9264,206.9418,23.8360,49.2259,0.80406672 1105,1.0000,265.8401,49.0396,166.9893,0.00000012 1106,1.0000,222.3981,60.4162,233.8812,0.97637665 1106,335.8249,213.7025,23.0015,47.5592,0.00868324 1106,1.0000,288.2366,28.2672,131.8501,0.00000000 1106,12.9437,269.4102,29.2183,90.1237,0.00000000 1106,25.3707,317.7045,46.1549,111.1847,0.00000000 1106,3.0342,215.7936,39.6060,82.1298,0.00000000 1106,635.2016,487.9930,4.9451,24.1537,0.00000000 1107,336.0350,217.2850,24.3140,51.8353,0.99999750 1107,84.9783,206.2825,36.2259,94.5332,0.00098867 1107,323.5794,182.6691,51.7126,101.2847,0.00000000 1107,635.9781,494.0953,4.1686,18.0514,0.00000000 1107,296.1580,135.6753,100.8569,216.0322,0.00000000 1107,629.4376,481.9534,10.7091,30.1933,0.00000000 1108,361.5261,213.1948,23.7280,52.4973,0.99999446 1108,431.2696,210.0351,23.9187,57.4412,0.99398500 1108,373.9260,217.8635,25.0583,50.2204,0.00000003 1108,350.5310,174.1935,51.3581,100.9584,0.00000000 1108,389.9296,115.0070,100.9730,206.4945,0.00000000 1108,636.1063,494.2566,4.0404,17.8901,0.00000000 1108,629.4828,481.7016,10.6639,30.4451,0.00000000 1109,393.7372,217.2699,28.5400,60.8350,0.99999964 1109,435.7280,217.1331,22.9037,56.5737,0.06549643 1109,298.3857,222.6273,20.8962,46.6579,0.00000087 1109,419.3110,215.7906,23.9660,55.7741,0.00000003 1109,451.9673,220.7498,23.5047,56.7874,0.00000000 1109,357.7804,136.3122,96.2296,209.7587,0.00000000 1109,635.1995,487.7383,4.9472,24.4084,0.00000000 1109,628.0106,459.5657,12.1361,52.5810,0.00000000 1110,437.6693,221.0538,30.6307,79.4893,1.00000000 1110,318.4591,220.1949,20.6030,51.1973,0.99998802 1110,300.9363,218.7747,22.0840,52.6315,0.00116500 1110,421.8322,219.2811,26.3508,64.6632,0.00001394 1110,494.2596,227.4984,22.9128,56.5500,0.00000045 1111,499.1212,220.3389,41.3720,113.4354,1.00000000 1111,334.3404,218.5451,24.3936,64.1579,0.99999994 1111,314.3753,220.2274,23.5252,59.6845,0.99999756 1111,364.9350,217.7047,21.5273,54.3143,0.02954523 1111,519.2534,225.1878,48.1727,124.3905,0.00000001 1111,306.5425,180.9131,51.6108,112.5567,0.00000000 1111,472.6961,197.5780,82.3969,217.2555,0.00000000 1112,568.7148,225.4570,47.5332,142.0967,1.00000000 1112,327.5707,218.6755,31.7893,82.8792,1.00000000 1112,304.2333,217.2957,32.4204,83.7324,1.00000000 1112,372.9841,228.3925,20.6716,51.1813,0.99610215 1112,575.5463,239.4419,26.3653,70.6064,0.00000000 1113,272.2027,214.1134,45.8833,118.3142,1.00000000 1113,374.7425,230.2124,23.2247,53.2124,0.99979919 1113,302.2643,212.7458,40.3730,110.2456,0.99483353 1113,388.9459,234.4461,24.5421,55.6371,0.00000000 1113,606.5084,242.7862,26.5612,61.4373,0.00000000 1113,635.4645,251.5206,4.6822,64.1609,0.00000000 1113,627.4265,458.7414,12.7202,53.4053,0.00000000 1113,635.1281,486.9445,5.0186,25.2022,0.00000000 1114,229.7034,201.3014,63.2646,163.3786,1.00000000 1114,195.0628,219.9187,58.0316,145.6821,1.00000000 1114,378.7191,225.9759,23.3572,54.3209,0.99999881 1114,194.6572,207.7567,37.3340,74.3460,0.00000000 1114,395.2600,231.8993,25.7817,57.2202,0.00000000 1115,96.2749,216.1480,82.4945,190.8217,0.99999362 1115,381.5428,225.6140,24.1062,53.6296,0.99998575 1115,50.3603,194.8327,83.3407,216.3906,0.99993843 1115,54.8395,221.0495,36.5411,73.5819,0.00816697 1116,380.6549,250.3624,24.0129,53.5312,1.00000000 1116,372.0611,218.3680,47.4196,96.9301,0.00000000 1116,601.1960,396.4908,38.9507,115.6559,0.00000000 1116,628.0826,1.0000,12.0641,49.7008,0.00000000 1116,636.1630,492.2083,3.9837,19.9384,0.00000000 1116,627.9231,455.2093,12.2236,56.9374,0.00000000 1117,387.0947,259.6122,24.7141,55.3266,0.99999994 1117,603.2449,400.7686,36.9018,111.3781,0.00000000 1117,634.2153,291.8735,5.9314,78.8570,0.00000000 1117,626.4656,460.0679,13.6811,52.0788,0.00000000 1117,636.1796,492.1773,3.9671,19.9694,0.00000000 1118,385.3993,237.3650,27.2068,55.1293,1.00000000 1118,627.3464,1.0000,12.8003,49.8858,0.00000000 1118,115.5065,210.4749,88.3667,258.5538,0.00000000 1118,636.2422,493.2687,3.9045,18.8780,0.00000000 1118,629.5103,480.6595,10.6364,31.4872,0.00000000 1119,379.5457,243.0387,26.6074,60.0012,1.00000000 1119,252.9473,219.2679,21.1819,48.8804,0.00044057 1119,368.9048,238.4869,22.3762,54.7717,0.00000000 1119,44.9919,344.8837,65.6248,155.3081,0.00000000 1119,36.8558,434.3144,52.9455,77.8323,0.00000000 1119,601.8614,401.8026,38.2853,110.3441,0.00000000 1119,626.6617,453.5640,13.4850,58.5827,0.00000000 1119,634.6028,485.0584,5.5439,27.0883,0.00000000 1120,373.9551,214.7220,28.3624,66.4438,1.00000000 1120,236.4866,186.0923,22.4524,52.5310,0.00000014 1120,498.8806,163.6157,27.4917,65.1748,0.00000000 1120,627.1578,456.6155,12.9889,55.5312,0.00000000 1120,636.4385,183.5201,3.7082,64.6121,0.00000000 1120,347.1877,117.0761,97.7249,212.8119,0.00000000 1120,636.3817,492.8106,3.7650,19.3361,0.00000000 1121,385.2617,234.8567,31.9284,78.4231,1.00000000 1121,227.7264,217.2583,21.1029,47.4296,0.67934370 1121,374.2316,230.7322,27.3610,59.1943,0.00000000 1121,539.5154,184.3990,34.2880,71.6928,0.00000000 1121,5.1373,207.1823,59.9177,145.9578,0.00000000 1121,358.5322,142.9423,90.8722,219.8009,0.00000000 1121,635.2593,487.2027,4.8874,24.9440,0.00000000 1121,627.8879,457.7714,12.2588,54.3753,0.00000000 1122,413.0331,234.3523,41.0997,103.4561,1.00000000 1122,221.7330,218.2749,21.9545,52.5175,0.99998200 1122,59.7606,206.9703,27.3380,58.1757,0.00000087 1122,439.6254,236.5853,39.0356,83.7832,0.00000000 1122,231.8009,205.2624,23.0440,54.3585,0.00000000 1122,596.9059,206.4440,43.2408,269.6292,0.00000000 1122,394.5892,179.6260,85.3662,205.6543,0.00000000 1122,635.3737,487.4503,4.7730,24.6964,0.00000000 1122,628.2184,459.1770,11.9283,52.9697,0.00000000 1123,472.1494,238.3680,54.1228,141.0104,0.99999982 1123,220.3472,220.5566,23.6043,55.6629,0.99999774 1123,521.7025,276.6999,33.9086,72.4430,0.12443098 1123,254.1420,203.1726,22.3295,49.5152,0.00049304 1123,209.5133,192.3586,49.8751,99.4278,0.00000000 1123,481.0155,187.8273,98.3685,215.6672,0.00000000 1123,629.4916,481.2881,10.6551,30.8586,0.00000000 1124,208.7036,221.7018,29.8568,76.2034,1.00000000 1124,264.0609,208.1089,20.5179,46.3104,0.99905479 1124,251.3760,209.8846,20.3595,47.9117,0.00013448 1124,52.2711,249.8927,32.2971,72.1708,0.00000023 1124,195.6895,218.3063,25.3306,60.5285,0.00000000 1124,634.9196,487.1218,5.2271,25.0249,0.00000000 1125,149.5423,225.0395,43.8585,110.4878,1.00000000 1125,260.5859,211.8558,21.0181,51.8498,1.00000000 1125,244.6796,214.8631,20.6834,50.9362,0.99999994 1125,364.7914,217.2225,21.7253,47.2439,0.99999940 1125,441.7742,245.4485,33.6407,71.1929,0.00000000 1126,239.1690,212.8420,24.2541,58.8513,1.00000000 1126,372.1200,219.1549,22.2419,52.9625,1.00000000 1126,217.1376,211.6927,24.8539,60.6731,0.99999994 1126,318.7768,211.7123,21.8162,49.3647,0.00000000 1126,223.5327,180.9385,49.1719,104.8927,0.00000000 1126,1.0000,226.1980,60.3111,257.7765,0.00000000 1126,543.4299,237.8767,86.1382,267.3113,0.00000000 1126,635.1874,487.6122,4.9593,24.5345,0.00000000 1127,183.0871,207.4884,33.6866,89.6905,1.00000000 1127,208.2809,212.7493,31.4051,84.6934,1.00000000 1127,390.3251,219.7981,26.9952,65.4792,1.00000000 1127,408.8027,226.0360,24.8107,55.3022,0.00000000 1127,162.3302,109.0138,94.5503,220.9866,0.00000000 1127,629.6121,481.0303,10.5346,31.1164,0.00000000 1128,408.6157,222.0685,37.8429,90.3568,1.00000000 1128,92.5223,198.3198,55.9979,157.0097,0.99999994 1128,132.5730,224.7250,49.0012,127.7509,0.99999964 1128,310.6115,209.3690,22.4067,46.3262,0.00012819 1128,161.9433,207.3887,28.7205,64.3942,0.00000004 1129,468.6178,231.5913,55.0562,131.1896,1.00000000 1129,313.4113,211.0757,21.0784,47.0384,0.99532205 1129,334.8203,207.5725,22.2261,46.1587,0.00649483 1129,353.2197,209.0564,21.4616,45.4789,0.00000000 1130,100.0752,204.1467,28.5710,62.2413,1.00000000 1130,356.5695,216.8098,20.3583,51.5749,0.99999750 1130,316.2136,214.9828,20.9083,49.1861,0.95943135 1130,290.1020,216.3686,21.2455,48.3995,0.06690935 1130,114.7120,214.5613,27.2004,55.0524,0.00011370 1130,341.7255,216.4369,20.2951,46.7597,0.00001682 1131,37.5049,194.8072,37.0136,83.2337,0.99999887 1131,330.2616,215.8060,23.1669,57.3967,0.99998003 1131,291.4185,214.7652,23.1086,54.5487,0.99955839 1131,257.0029,203.9589,30.8248,64.1467,0.99611008 1131,342.8756,216.8486,24.9677,62.2899,0.81126446 1131,277.4173,213.5682,22.6932,51.6779,0.00000001 1132,257.9884,213.7671,27.3820,59.4663,1.00000000 1132,294.5974,221.0152,23.7685,61.7422,0.99999994 1132,315.8144,220.8283,25.5475,65.7950,0.99999452 1132,230.7510,209.9126,28.8135,63.6075,0.98657137 1132,286.4010,189.0826,49.1976,109.3973,0.00000000 1133,275.4178,220.7859,29.6672,74.4779,1.00000000 1133,303.9425,220.7039,33.3387,86.6468,0.99999905 1133,250.7152,213.7803,27.7983,67.5947,0.99997735 1133,629.7318,478.1934,10.4149,33.9533,0.00000000 1134,299.2522,222.7519,32.2487,95.9913,1.00000000 1134,324.8627,223.2516,35.5767,100.0752,0.99999964 1134,315.6588,230.8557,25.2217,64.9497,0.00000978 1134,340.4725,221.9878,28.3619,60.5557,0.00000725 1134,344.8111,222.0497,43.9647,112.1217,0.00000000 1134,279.0257,157.4141,87.6212,215.3296,0.00000000 1134,635.0688,486.0855,5.0779,26.0612,0.00000000 1134,627.6016,457.0893,12.5451,55.0574,0.00000000 1135,314.3040,219.9435,42.4011,117.1486,1.00000000 1135,351.6373,216.4982,43.2409,120.6734,0.99998951 1135,339.3155,266.2661,35.3361,73.9625,0.00000004 1135,362.9687,214.9940,24.4245,62.3107,0.00000001 1135,316.5883,175.5553,83.4534,212.6946,0.00000000 1136,326.5513,218.4238,53.1194,144.3652,0.99999994 1136,376.2379,202.2490,55.0891,168.7566,0.99999934 1136,354.5130,231.0194,39.1051,97.5848,0.11375497 1136,393.3527,210.3788,29.1943,87.8895,0.00006490 1137,350.9508,240.5367,64.7297,165.2830,1.00000000 1137,422.1972,220.0343,66.6864,193.1271,1.00000000 1137,390.9466,269.8546,51.5227,140.7015,0.99737900 1137,254.0986,211.9890,20.7954,45.9210,0.00320635 1137,420.3154,213.4088,35.8217,111.2291,0.00019953 1138,412.3239,262.8222,80.4460,205.8419,1.00000000 1138,500.8424,246.7148,88.9288,212.5110,0.99999923 1138,463.8628,257.2570,75.4576,172.9220,0.99809295 1138,451.9643,222.7503,35.6173,114.3418,0.27566084 1138,366.7202,208.8107,32.6913,66.6793,0.03703118 1139,274.5840,212.3620,20.2056,48.6264,0.99990219 1139,468.0370,217.5510,36.2923,106.6080,0.99976200 1139,399.6767,220.5641,23.9565,50.4003,0.98224539 1139,489.5724,228.8096,36.7798,92.5987,0.14398301 1139,534.8424,285.3258,87.3921,226.8209,0.00093754 1139,573.7922,279.2408,53.2502,131.0750,0.00000000 1139,594.0959,369.4770,46.0508,142.6697,0.00000000 1139,445.2824,177.7910,82.0419,213.8491,0.00000000 1140,487.1685,218.8001,48.5567,133.5364,0.99999994 1140,277.6921,216.8366,20.1169,49.9281,0.99996740 1140,402.6345,211.6611,27.9664,60.7885,0.93400604 1140,488.2713,219.6240,25.6480,69.3106,0.00000005 1140,464.8738,253.5012,92.1896,222.3161,0.00000000 1141,505.8865,223.4991,68.5097,177.8821,0.99999994 1141,402.1160,215.6195,25.7278,57.3245,0.99664366 1141,506.3437,239.4689,28.8855,82.9509,0.00009992 1141,535.6818,230.0823,33.1055,89.6772,0.00000020 1142,391.4875,223.2864,26.6755,57.5416,0.99999297 1142,586.1010,240.0252,54.0457,154.9886,0.99981755 1142,380.6865,213.7393,22.3009,57.5422,0.02635431 1142,616.0593,315.2160,24.0874,149.7055,0.00000000 1142,616.3278,209.0739,23.8189,137.7361,0.00000000 1143,343.3351,217.6380,27.8457,62.2498,0.99869239 1143,181.0697,223.3484,25.8712,57.0104,0.95457900 1143,359.8059,219.8116,25.0260,56.3723,0.00000411 1143,346.4406,188.1958,48.4225,111.2419,0.00000000 1143,164.3114,202.3132,52.0592,117.3762,0.00000000 1143,424.4928,1.0000,73.2767,131.7897,0.00000000 1143,311.5798,122.3542,95.3733,218.9378,0.00000000 1143,634.8873,487.6392,5.2594,24.5075,0.00000000 1144,184.5687,216.0041,26.5573,64.8477,0.99999893 1144,167.2352,212.2314,28.1588,65.1073,0.01142350 1144,198.1035,205.5508,31.7363,71.1873,0.00000001 1144,262.4710,1.0000,68.5284,95.8246,0.00000000 1144,630.7740,220.1013,9.3727,79.7727,0.00000000 1144,153.7020,78.3962,88.6926,216.7604,0.00000000 1144,635.1533,487.9618,4.9934,24.1849,0.00000000 1145,95.6349,145.2610,34.7468,65.7893,0.00000000 1145,635.9667,494.0230,4.1800,18.1237,0.00000000 1145,629.3137,482.0081,10.8330,30.1386,0.00000000 1146,635.4231,297.4868,4.7236,64.4749,0.00000000 1146,636.6428,264.4648,3.5039,63.5347,0.00000000 1146,635.9590,494.0367,4.1877,18.1100,0.00000000 1146,629.5627,482.0117,10.5840,30.1350,0.00000000 1147,378.8145,225.1906,33.9118,79.4460,1.00000000 1147,470.3267,223.8953,36.9627,81.7192,1.00000000 1147,561.5881,222.6948,38.0460,88.7598,0.99999982 1147,537.4586,218.4915,35.6671,82.7606,0.99999845 1147,585.6561,227.3631,32.3456,81.0694,0.99974310 1148,261.2891,209.9222,49.2261,110.0190,1.00000000 1148,383.1203,213.9914,46.3777,111.5420,1.00000000 1148,492.8322,223.1840,48.8078,120.2317,1.00000000 1148,417.7431,216.7736,43.5662,104.8254,1.00000000 1148,118.8222,217.8876,46.0298,101.2679,1.00000000 1148,356.2593,214.3243,38.8311,101.8954,0.99999964 1148,338.5256,221.1960,34.9169,79.6431,0.00061170 1149,331.4675,214.1671,48.1551,132.0488,1.00000000 1149,125.9535,215.2454,55.0755,140.7048,1.00000000 1149,487.4670,227.9754,58.2961,161.3113,1.00000000 1149,356.6702,215.2726,46.9915,106.3376,0.99999994 1149,298.2426,209.6585,54.9596,146.4907,0.99999970 1149,263.2273,222.6259,44.6819,105.8828,0.99994212 1150,312.7757,208.5900,50.1811,122.7250,1.00000000 1150,262.3178,221.3379,58.5151,148.1696,1.00000000 1150,219.1310,214.2963,57.8349,163.1701,1.00000000 1150,526.9036,229.3672,88.7152,224.8782,0.99999940 1150,1.0000,203.1908,64.6104,173.4586,0.97272903 1150,243.3091,288.7451,41.6407,95.1182,0.90923393 1150,381.2385,211.2498,22.0247,49.4800,0.57931912 1151,266.1676,221.5767,60.8166,147.2855,0.99999994 1151,105.2644,232.6414,83.9857,217.3475,0.99999994 1151,193.1519,227.6558,70.8326,184.2244,0.99999994 1151,371.6425,212.0988,22.0518,50.6043,0.99702370 1151,151.6407,214.4623,50.7059,152.7583,0.90431583 1152,202.1576,223.1170,68.8780,162.9997,1.00000000 1152,135.7389,219.9664,79.7770,175.1042,1.00000000 1152,19.0665,230.3815,86.4767,220.8412,0.99999899 1152,358.7935,211.6487,23.3341,49.9099,0.99999470 1152,72.1858,264.1072,86.7461,222.5049,0.99997801 1152,94.1342,194.8670,58.4678,145.2123,0.00000522 1153,82.2836,218.2616,87.2486,210.5563,1.00000000 1153,322.0538,215.2207,21.0808,47.5450,0.99998605 1153,1.0000,231.3723,81.9987,234.0351,0.99997824 1153,337.7345,215.8266,22.0903,49.0443,0.99993032 1153,350.8518,213.7269,21.8463,47.5454,0.00001866 1153,43.0122,272.3983,78.0867,179.3474,0.00000000 1154,305.4143,218.0062,21.9634,49.7344,0.99999982 1154,293.6185,212.2468,19.2986,50.9167,0.99745488 1154,332.3896,209.9025,24.6763,49.4269,0.59795243 1154,313.4657,205.8168,28.8149,50.5855,0.00000000 1154,165.1839,226.8983,27.1677,58.4287,0.00000000 1154,1.0000,38.2798,60.1845,257.3925,0.00000000 1154,1.0000,383.4003,61.7543,128.7464,0.00000000 1154,635.4316,487.7253,4.7151,24.4214,0.00000000 1154,628.5818,459.9934,11.5649,52.1533,0.00000000 1155,297.5891,212.9286,23.8500,52.6735,0.99999994 1155,340.1972,212.5415,23.7773,53.0201,0.99999976 1155,283.9683,217.4756,23.5795,56.6893,0.17551854 1155,149.0531,227.1238,26.0752,54.9243,0.05866230 1155,134.0577,239.0694,29.2748,54.8827,0.00000017 1155,327.3064,213.6986,23.0095,49.8535,0.00000000 1155,596.4616,294.4486,43.6851,217.6981,0.00000000 1155,624.2575,342.0349,15.8892,132.3482,0.00000000 1155,629.4224,478.8113,10.7243,33.3354,0.00000000 1156,360.3309,218.9816,24.1058,55.2982,1.00000000 1156,300.4064,214.8588,24.7979,57.3495,0.99999952 1156,120.3969,246.6933,26.2753,57.7269,0.96747464 1156,105.1188,241.3711,28.0441,58.3125,0.00000003 1156,218.6343,209.5067,23.0790,50.3121,0.00000001 1156,202.1807,207.0057,24.5358,54.9440,0.00000000 1157,379.3766,219.3345,34.9137,84.6112,1.00000000 1157,306.5907,222.4860,25.7534,58.9656,0.99999940 1157,75.8193,266.5424,28.0203,53.2376,0.99512571 1157,290.8983,226.9677,27.0334,60.3263,0.01056203 1157,54.5247,264.1862,30.7902,71.2210,0.00001540 1157,62.2673,221.5592,51.6989,105.3551,0.00000000 1157,38.3220,171.1149,87.8856,251.5674,0.00000000 1158,426.6341,205.8934,60.7371,137.2666,1.00000000 1158,305.2730,208.1759,32.1374,81.1793,0.99999887 1158,289.7744,209.5453,29.0048,73.8563,0.99985015 1158,398.2324,216.5895,23.5901,58.0191,0.00000000 1158,631.5496,486.9327,8.5971,25.2140,0.00000000 1158,276.9451,122.7243,90.1129,207.2334,0.00000000 1159,270.0865,209.0129,41.3914,101.3166,1.00000000 1159,296.5430,208.3232,36.5838,98.5206,1.00000000 1159,337.6374,215.9056,27.6914,52.3839,0.12803175 1159,579.8466,243.2934,60.3001,223.7116,0.08268756 1159,613.5314,222.8566,26.6153,157.3445,0.00000000 1159,615.8818,313.3666,24.2649,152.2711,0.00000000 1159,53.4891,144.1030,31.9570,77.4054,0.00000000 1159,261.1171,143.6250,86.2399,218.3038,0.00000000 1160,230.2319,206.8445,46.8216,125.1095,1.00000000 1160,258.3082,206.7596,45.4844,117.1322,0.99999946 1160,383.2386,222.3040,21.5950,49.0712,0.99996042 1160,397.1913,218.2205,22.9170,56.8950,0.00000000 1160,252.9547,138.4559,88.8317,238.0106,0.00000000 1160,635.1401,487.2045,5.0066,24.9422,0.00000000 1161,157.1452,214.8227,60.8936,147.4523,1.00000000 1161,193.1253,196.4118,68.4688,167.8653,0.96834636 1161,227.6107,207.4396,23.4416,53.7772,0.00000014 1161,167.8696,197.8677,33.0451,72.7580,0.00000000 1161,90.1590,193.2977,26.8373,52.0654,0.00000000 1161,164.8420,234.4889,29.7704,86.3105,0.00000000 1161,635.2639,487.2716,4.8828,24.8751,0.00000000 1162,67.0822,218.3921,76.0676,206.0277,0.99999970 1162,109.1032,216.7684,84.9089,229.3024,0.99999630 1162,127.8861,239.1284,38.5555,81.4837,0.00000000 1162,54.0262,302.1643,50.2059,122.7941,0.00000000 1162,79.6320,287.0946,34.7709,90.2184,0.00000000 1162,629.6334,480.4987,10.5133,31.6480,0.00000000 1163,10.1864,226.5878,86.1313,247.2296,0.99807364 1163,541.6942,231.2168,27.4639,64.8008,0.00000000 1163,1.0000,283.0528,41.1829,176.6096,0.00000000 1163,1.0000,396.4539,85.6951,115.6928,0.00000000 1163,51.5732,243.1973,65.6051,157.7320,0.00000000 1163,631.4629,486.9199,8.6838,25.2268,0.00000000 1163,1.0000,301.4266,22.4141,79.4829,0.00000000 1164,229.3541,212.8172,21.3640,46.9361,0.00000166 1164,635.3254,487.5254,4.8213,24.6213,0.00000000 1164,628.4281,459.2101,11.7186,52.9366,0.00000000 1165,225.1499,219.6931,22.9194,50.7055,0.99992090 1165,601.6968,396.1932,38.4499,115.9535,0.00000000 1165,636.3514,492.5311,3.7953,19.6156,0.00000000 1165,629.5728,478.2075,10.5739,33.9392,0.00000000 1166,236.3040,214.2360,23.6578,56.5507,0.99999678 1166,354.1693,217.3600,21.6398,46.3178,0.00002698 1166,224.6164,209.8372,21.2257,56.2828,0.00000000 1166,221.3346,181.0821,49.3568,103.5398,0.00000000 1166,636.0702,493.3174,4.0765,18.8293,0.00000000 1166,629.3442,480.4029,10.8025,31.7438,0.00000000 1166,199.8918,139.5769,96.9690,225.4026,0.00000000 1167,251.4677,226.7923,24.8307,59.8193,1.00000000 1167,236.9195,228.1178,24.8906,65.4525,0.00205843 1167,378.3023,225.7077,22.8779,54.2554,0.00005976 1167,413.0078,208.5359,21.5139,53.7356,0.00000009 1167,264.8147,223.3911,25.4452,53.1846,0.00000000 1167,231.5019,206.9601,50.6621,111.5746,0.00000000 1167,627.0306,1.0000,13.1161,48.2725,0.00000000 1167,632.0746,27.4936,8.0721,86.5677,0.00000000 1167,635.1021,487.7703,5.0446,24.3764,0.00000000 1167,208.7701,142.2095,97.6363,215.2508,0.00000000 1167,627.5617,458.9947,12.5850,53.1520,0.00000000 1168,217.2452,218.7872,26.3852,64.8138,1.00000000 1168,197.4854,220.1184,24.5174,63.2817,0.99999803 1168,364.3111,219.1737,22.4924,49.6570,0.99598318 1168,80.2898,247.4417,39.6450,87.5025,0.00000022 1168,164.6680,129.2216,100.9414,232.6353,0.00000000 1168,635.2264,488.0211,4.9203,24.1256,0.00000000 1169,175.9297,202.0375,31.1852,73.7226,1.00000000 1169,153.2578,200.6376,30.1802,72.4193,1.00000000 1169,357.2776,204.7284,22.5542,52.4776,0.99999982 1169,141.7651,204.0611,24.5676,61.2181,0.00000705 1169,629.4186,481.7488,10.7281,30.3979,0.00000000 1170,127.6615,216.8669,42.3262,96.5455,1.00000000 1170,91.6958,219.8992,38.8580,89.3974,1.00000000 1170,357.9879,221.2320,24.4185,58.8545,1.00000000 1170,478.8726,64.7939,22.7895,59.3254,0.00000000 1170,629.3766,481.3434,10.7701,30.8033,0.00000000 1171,64.1479,221.2120,49.7726,123.7228,1.00000000 1171,366.9513,224.7115,27.3142,66.7480,1.00000000 1171,17.8264,223.9971,47.4719,117.5860,0.99999982 1172,391.9637,224.6700,35.3985,89.9016,1.00000000 1172,1.0000,193.5683,56.8633,257.0712,0.00000000 1172,632.7755,1.0000,7.3712,40.0676,0.00000000 1172,372.4931,148.8088,87.1403,215.0014,0.00000000 1172,635.9252,493.8050,4.2215,18.3417,0.00000000 1172,629.3459,481.7141,10.8008,30.4326,0.00000000 1173,469.4847,239.2134,49.1734,122.5038,1.00000000 1173,479.5685,222.3961,34.7149,71.5999,0.00000000 1173,51.6899,200.5866,33.2418,83.8027,0.00000000 1173,634.9450,488.1102,5.2017,24.0365,0.00000000 1173,627.4485,459.6558,12.6982,52.4909,0.00000000 1174,303.3362,207.8235,23.4515,47.7760,0.00001649 1174,627.7503,1.0000,12.3964,48.2830,0.00000000 1174,635.6935,493.7643,4.4532,18.3824,0.00000000 1174,629.2291,481.8776,10.9176,30.2691,0.00000000 1175,276.7358,202.4341,21.4493,44.8805,0.99912673 1175,307.4281,195.1686,20.3798,55.1825,0.00021241 1175,289.7628,200.5790,22.2376,46.2126,0.00000004 1175,632.6825,1.0000,7.4642,36.6531,0.00000000 1175,636.0563,493.7656,4.0904,18.3811,0.00000000 1175,629.4345,481.1364,10.7122,31.0103,0.00000000 1176,304.3010,212.1510,20.6482,48.2084,0.99999982 1176,265.2980,210.8026,21.7030,49.5960,0.99993145 1176,283.6503,213.4029,20.3217,47.4473,0.00001262 1176,635.3608,487.7731,4.7859,24.3736,0.00000000 1176,628.2984,460.3366,11.8483,51.8101,0.00000000 1177,289.9833,210.1012,22.7650,56.8420,0.99999964 1177,246.6652,208.7489,22.0960,52.7223,0.99999923 1177,265.3072,209.8459,19.8491,51.8521,0.41219172 1177,276.6762,212.6837,20.4541,53.8955,0.00000002 1177,47.4840,100.4834,92.4341,266.2836,0.00000000 1177,279.9079,174.6183,50.9982,104.2314,0.00000000 1177,635.2190,487.2983,4.9277,24.8484,0.00000000 1178,273.9757,214.6922,27.1507,67.5290,1.00000000 1178,225.7234,217.4035,22.5255,57.1038,0.99999988 1178,246.2668,217.6381,22.5280,58.9294,0.99999779 1178,264.2509,214.9398,20.6748,55.3491,0.00000000 1178,228.5822,184.0216,50.5701,102.9823,0.00000000 1178,629.5640,480.7128,10.5827,31.4339,0.00000000 1179,201.8681,215.9036,29.1475,79.1581,1.00000000 1179,252.7079,214.4739,34.2177,85.7409,1.00000000 1179,222.9013,219.1935,28.0168,74.5667,0.99999362 1179,238.2360,218.0098,30.6522,67.1128,0.00000000 1179,45.8429,210.9944,29.2223,66.0467,0.00000000 1180,156.4612,202.4266,47.5316,120.3790,1.00000000 1180,187.1293,213.9504,40.3848,107.7059,1.00000000 1180,224.0101,203.6854,47.8269,115.2903,1.00000000 1180,635.2413,487.4640,4.9054,24.6827,0.00000000 1181,107.1076,218.1671,54.5957,162.2440,1.00000000 1181,148.0249,194.0675,73.3028,174.9724,1.00000000 1181,41.9132,209.0168,73.8660,177.1691,0.99999201 1182,1.0000,200.2753,75.0462,216.1511,0.00000000 1182,590.6098,278.3621,49.5369,147.3927,0.00000000 1182,1.0000,286.4534,40.0129,173.8533,0.00000000 1182,624.2001,342.1929,15.9466,132.0234,0.00000000 1182,18.3431,277.1551,84.6520,234.9916,0.00000000 1182,12.3330,454.6398,45.5758,57.5069,0.00000000 1182,635.7108,488.2513,4.4359,23.8954,0.00000000 1182,627.5464,476.1165,12.6003,36.0302,0.00000000 1183,628.2697,1.0000,11.8770,49.9194,0.00000000 1183,636.1130,493.3961,4.0337,18.7506,0.00000000 1183,629.3502,480.1913,10.7965,31.9554,0.00000000 1184,636.1497,493.7257,3.9970,18.4210,0.00000000 1184,629.4437,481.0177,10.7030,31.1290,0.00000000 1185,23.0982,197.4424,90.1124,280.5061,0.00000000 1185,633.6639,85.4545,6.4828,79.6257,0.00000000 1185,631.8001,174.1500,8.3466,84.4750,0.00000000 1185,627.8766,1.0000,12.2701,48.9839,0.00000000 1185,635.9320,493.3747,4.2147,18.7720,0.00000000 1185,627.1238,458.5037,13.0229,53.6430,0.00000000 1186,635.4440,487.6721,4.7027,24.4746,0.00000000 1186,628.1995,459.8414,11.9472,52.3053,0.00000000 1187,636.3685,493.8270,3.7782,18.3197,0.00000000 1187,629.5883,480.1906,10.5584,31.9561,0.00000000 1188,260.9299,196.0706,23.2515,51.8311,0.00000000 1188,635.4209,487.8344,4.7258,24.3123,0.00000000 1188,628.5899,460.5166,11.5568,51.6301,0.00000000 1189,418.3728,230.2299,22.1563,48.5852,0.99997288 1189,567.3574,221.4567,26.6453,60.7111,0.00000000 1189,254.0076,184.2611,28.2856,55.0892,0.00000000 1189,636.3155,494.1756,3.8312,17.9711,0.00000000 1189,628.1818,459.1259,11.9649,53.0208,0.00000000 1190,456.0807,227.0005,22.2486,51.1364,0.99999696 1190,262.2303,190.3618,23.4015,53.7371,0.00000000 1190,523.6230,228.3624,42.9807,106.8263,0.00000000 1190,637.5235,191.1899,2.6232,62.3634,0.00000000 1190,627.8241,456.9698,12.3226,55.1769,0.00000000 1190,635.2958,486.7969,4.8509,25.3498,0.00000000 1191,485.2732,224.9784,23.9643,54.3022,0.99545521 1191,497.9342,218.5518,24.4627,54.2930,0.00000000 1191,547.6664,224.0748,27.5799,59.2270,0.00000000 1191,469.0739,219.9372,24.1762,55.9224,0.00000000 1191,473.3845,187.7780,52.2238,107.0537,0.00000000 1191,600.2043,151.9736,39.9424,266.1108,0.00000000 1191,637.8321,195.0492,2.3146,65.3962,0.00000000 1191,629.8560,192.6237,10.2907,86.0383,0.00000000 1191,445.2693,122.2253,100.3577,220.3126,0.00000000 1191,627.9564,459.8879,12.1903,52.2588,0.00000000 1191,635.6669,487.8681,4.4798,24.2786,0.00000000 1192,509.7728,242.8961,22.7945,54.3000,1.00000000 1192,496.8317,247.2839,21.7781,52.8247,0.00000000 1192,524.7362,242.5812,24.3028,56.4578,0.00000000 1192,497.9615,216.9906,50.9817,94.0942,0.00000000 1192,483.2370,230.4730,24.4865,59.0990,0.00000000 1192,469.1826,141.0159,102.0724,219.2949,0.00000000 1192,634.0223,251.2392,6.1244,75.5161,0.00000000 1192,628.3449,460.3486,11.8018,51.7981,0.00000000 1192,635.7792,488.2463,4.3675,23.9004,0.00000000 1193,512.7718,221.9244,25.1733,55.6808,1.00000000 1193,501.3698,198.0541,51.3012,98.1114,0.00000000 1193,496.1224,215.6738,25.3608,56.4367,0.00000000 1193,475.2077,111.3391,99.6548,208.3065,0.00000000 1193,629.1237,1.0000,11.0230,49.9655,0.00000000 1193,635.3983,487.7954,4.7484,24.3513,0.00000000 1193,628.3635,459.6896,11.7832,52.4571,0.00000000 1194,510.7697,216.6859,26.3601,59.8715,1.00000000 1194,497.0701,211.4860,22.4658,54.4544,0.00000000 1194,571.2247,235.5190,24.7645,50.6958,0.00000000 1194,634.2004,167.6758,5.9463,79.1787,0.00000000 1194,472.5676,114.2169,96.5092,218.3318,0.00000000 1194,635.3624,488.0446,4.7843,24.1021,0.00000000 1194,628.2410,460.0985,11.9057,52.0482,0.00000000 1195,505.9376,229.1199,28.2334,67.1281,1.00000000 1195,487.5381,227.2008,30.6676,59.7643,0.00000000 1195,520.7880,229.1385,31.7677,64.3565,0.00000000 1195,471.0576,238.3764,27.5325,57.2112,0.00000000 1195,636.1296,194.8668,4.0171,69.1945,0.00000000 1195,471.1177,124.1472,97.6473,234.2934,0.00000000 1195,636.1212,494.0281,4.0255,18.1186,0.00000000 1195,627.9513,460.2739,12.1954,51.8728,0.00000000 1196,468.6571,222.6370,31.5664,75.9042,1.00000000 1196,440.2773,198.5157,22.9022,57.5924,0.00000276 1196,455.7450,222.3119,27.4282,60.4712,0.00000000 1196,485.3549,222.6306,23.3979,54.6147,0.00000000 1196,426.5569,216.6292,34.6608,79.5398,0.00000000 1196,436.0697,130.1969,93.0723,228.8897,0.00000000 1196,636.2103,493.8692,3.9364,18.2775,0.00000000 1196,629.5041,481.0885,10.6426,31.0582,0.00000000 1197,352.4555,226.4955,34.8850,84.3082,1.00000000 1197,335.3949,215.3247,35.7070,76.6952,0.00000000 1197,1.0000,141.6980,53.8551,257.0207,0.00000000 1197,633.4323,1.0000,6.7144,41.6536,0.00000000 1197,325.1731,137.1484,90.6913,231.3563,0.00000000 1197,635.9760,493.4088,4.1707,18.7379,0.00000000 1197,629.2403,480.8768,10.9064,31.2699,0.00000000 1198,159.5123,229.2946,37.9250,95.4046,1.00000000 1198,179.4306,205.8118,46.9927,113.6883,0.00000000 1198,134.9103,161.7404,89.0998,215.6010,0.00000000 1198,635.9865,493.8503,4.1602,18.2964,0.00000000 1198,629.4095,481.4557,10.7372,30.6910,0.00000000 1199,558.4283,236.4423,33.2302,80.1334,0.99999833 1199,577.7867,246.5705,28.7004,70.1112,0.00000000 1199,1.0000,125.6405,61.1859,259.6386,0.00000000 1199,527.6765,170.4943,87.9171,206.2836,0.00000000 1199,636.0757,493.7462,4.0710,18.4005,0.00000000 1199,629.3100,480.8244,10.8367,31.3223,0.00000000 1200,221.9528,242.4908,36.5019,89.6902,1.00000000 1200,244.0276,245.2596,37.1803,82.0674,0.00000000 1200,193.4894,160.8188,86.3692,220.8535,0.00000000 1200,635.6271,486.7062,4.5196,25.4405,0.00000000 1200,627.8576,456.5062,12.2891,55.6405,0.00000000 1201,636.3604,493.4206,3.7863,18.7261,0.00000000 1201,629.3715,480.2246,10.7752,31.9221,0.00000000 1202,633.4547,170.1818,6.6920,79.0793,0.00000000 1202,635.9223,494.2190,4.2244,17.9277,0.00000000 1202,627.5613,459.9787,12.5854,52.1680,0.00000000 1203,634.0157,197.9951,6.1310,76.7800,0.00000000 1203,635.9557,493.5409,4.1910,18.6058,0.00000000 1203,629.3352,480.6276,10.8115,31.5191,0.00000000 1204,636.0588,494.0546,4.0879,18.0921,0.00000000 1204,629.4922,482.0266,10.6545,30.1201,0.00000000 1205,582.3658,230.8346,26.5638,61.5763,0.00000016 1205,449.4990,200.5023,22.9942,57.0564,0.00000000 1205,635.7520,283.9081,4.3947,65.4582,0.00000000 1205,633.0163,231.1044,7.1304,77.5586,0.00000000 1205,636.2050,494.1200,3.9417,18.0267,0.00000000 1205,627.8123,459.4007,12.3344,52.7460,0.00000000 1206,584.2227,212.3734,25.3496,53.7380,0.00004828 1206,601.6494,394.5890,38.4973,117.5577,0.00000000 1206,626.9789,354.9706,13.1678,125.2472,0.00000000 1206,635.8143,357.7800,4.3324,66.5532,0.00000000 1206,627.4221,457.7283,12.7246,54.4184,0.00000000 1206,636.2017,493.3431,3.9450,18.8036,0.00000000 1207,636.1274,494.1659,4.0193,17.9808,0.00000000 1207,629.4949,481.6874,10.6518,30.4593,0.00000000 1208,499.9025,202.1211,27.0820,53.7763,0.00000000 1208,631.4915,70.2734,8.6552,78.6704,0.00000000 1208,636.2805,493.7193,3.8662,18.4274,0.00000000 1208,629.4054,480.3492,10.7413,31.7975,0.00000000 1209,571.8541,214.1133,23.1259,56.0340,0.89178091 1209,557.8290,216.8458,24.8486,56.7887,0.00000026 1209,585.3289,215.9114,27.1554,60.4381,0.00000000 1209,560.0301,194.4050,44.4982,107.2104,0.00000000 1209,534.1755,125.5514,100.3961,234.1912,0.00000000 1209,636.1418,493.9842,4.0049,18.1625,0.00000000 1209,629.4850,481.4894,10.6617,30.6573,0.00000000 1210,626.6639,240.1211,13.4828,130.7270,0.00000000 1210,597.4886,212.7520,42.6581,259.2396,0.00000000 1210,636.2906,308.5212,3.8561,65.4642,0.00000000 1210,630.9054,212.4456,9.2413,82.0778,0.00000000 1210,636.9642,200.9830,3.1825,65.8882,0.00000000 1210,628.3843,1.0000,11.7624,50.6573,0.00000000 1210,633.9354,164.1673,6.2113,77.8314,0.00000000 1210,635.7850,493.8843,4.3617,18.2624,0.00000000 1210,629.2131,481.7355,10.9336,30.4112,0.00000000 1211,598.7854,62.5185,41.3613,265.5221,0.00000000 1211,630.8234,122.4559,9.3233,102.0833,0.00000000 1211,634.0328,285.5509,6.1139,81.8497,0.00000000 1211,636.0731,493.5049,4.0736,18.6418,0.00000000 1211,629.3093,480.3434,10.8374,31.8033,0.00000000 1212,491.0221,209.1459,24.5425,52.4172,0.46741128 1212,119.6402,200.5554,22.9307,51.1007,0.00014016 1212,479.3676,179.0945,49.8541,100.2514,0.00000000 1212,637.3773,108.2950,2.7694,64.0852,0.00000000 1212,631.5618,115.5760,8.5849,80.4174,0.00000000 1212,636.1378,493.6685,4.0089,18.4782,0.00000000 1212,629.4377,480.7420,10.7090,31.4047,0.00000000 1213,483.7268,212.9910,28.6911,58.4576,0.99999958 1213,90.1954,202.7224,27.8801,51.1178,0.99999821 1213,633.7740,208.3339,6.3727,78.7735,0.00000000 1213,452.4155,123.5434,93.5615,209.4462,0.00000000 1213,636.0167,493.4774,4.1300,18.6693,0.00000000 1213,629.4265,480.8065,10.7202,31.3402,0.00000000 1214,37.6898,200.4615,34.4171,56.9719,1.00000000 1214,456.7633,212.4334,31.3492,66.1596,1.00000000 1214,58.9518,203.4686,26.4965,51.8967,0.00000000 1214,26.1680,196.5787,23.1850,56.0507,0.00000000 1214,636.1132,493.7828,4.0335,18.3639,0.00000000 1214,629.4255,481.2312,10.7212,30.9155,0.00000000 1215,436.8316,212.9610,32.7080,79.1631,0.99999994 1215,286.8613,206.7611,24.0383,49.0085,0.99999970 1215,6.2110,206.8471,29.6645,60.9231,0.99998796 1215,21.0864,208.9832,41.0779,86.6579,0.00000000 1215,1.0000,198.5873,15.7348,55.4180,0.00000000 1215,629.4506,481.7528,10.6961,30.3939,0.00000000 1216,413.8782,206.1593,36.4529,83.2162,0.00000011 1216,184.4465,185.8040,28.4989,49.7460,0.00000003 1216,303.5573,206.4601,29.1017,57.1833,0.00000001 1216,390.3929,177.0930,84.3495,235.6890,0.00000000 1216,63.6497,208.8515,84.9078,261.5763,0.00000000 1216,1.0000,149.6068,84.1778,267.1080,0.00000000 1216,636.0744,492.9127,4.0723,19.2340,0.00000000 1216,627.4852,457.5102,12.6615,54.6365,0.00000000 1217,389.5480,192.4737,44.3302,117.3735,1.00000000 1217,28.3244,205.3801,41.6285,85.8962,1.00000000 1217,379.2956,203.3771,22.1475,56.7847,0.20291355 1217,198.1286,192.9297,30.5542,47.4346,0.00024400 1217,325.0781,191.8270,22.5227,53.2042,0.00000006 1217,359.7661,145.8840,89.3532,214.5971,0.00000000 1217,629.6899,480.1999,10.4568,31.9468,0.00000000 1218,478.4923,205.8685,24.4485,57.0703,1.00000000 1218,352.2592,206.4551,44.7676,111.2001,0.99963415 1218,238.8051,194.0027,27.7829,46.4431,0.99554932 1218,351.6214,184.0753,29.4640,60.1245,0.85017926 1218,123.3661,211.1686,26.4710,54.2364,0.00003752 1218,326.2812,141.2849,85.2355,209.0769,0.00000000 1219,213.9142,208.0483,37.5365,91.5700,0.99998796 1219,564.4196,203.8669,25.8277,60.3407,0.99997073 1219,230.5255,209.9754,49.5048,118.5604,0.29220387 1219,368.1507,185.7896,25.3146,47.9139,0.06822024 1219,273.1644,197.9164,25.2930,50.1461,0.00003462 1220,284.1688,207.6092,43.3338,99.2773,1.00000000 1220,357.3392,196.1993,23.0631,45.7546,0.00003976 1220,372.6939,186.0750,25.7008,52.3280,0.00000000 1220,277.0228,206.4341,32.1504,56.2560,0.00000000 1220,77.1681,214.1341,32.1881,68.1392,0.00000000 1220,260.1179,164.0802,85.7417,198.2066,0.00000000 1220,627.8868,456.9317,12.2599,55.2150,0.00000000 1220,634.2735,189.0737,5.8732,76.7659,0.00000000 1220,635.2779,487.3754,4.8688,24.7713,0.00000000 1221,343.9142,202.0305,45.4237,95.7493,1.00000000 1221,275.0838,195.7597,27.3696,46.6616,0.99965453 1221,336.7878,196.2483,23.2426,50.1227,0.00000779 1221,373.8829,186.7747,24.2669,52.3831,0.00000000 1221,40.4256,312.8593,36.4318,74.8887,0.00000000 1221,627.1514,1.0000,12.9953,49.8671,0.00000000 1221,9.6378,292.7153,87.0488,219.4314,0.00000000 1221,329.5120,128.6431,94.1624,212.8257,0.00000000 1221,627.7493,457.0138,12.3974,55.1329,0.00000000 1221,635.2495,487.1603,4.8972,24.9864,0.00000000 1222,404.9440,209.3213,36.6122,86.9206,1.00000000 1222,274.6750,193.6453,27.1339,49.4136,0.99912918 1222,323.1846,191.8226,22.5937,50.8826,0.00203216 1222,371.7052,189.3029,24.8780,48.9538,0.00000272 1222,441.6071,188.6280,22.2334,54.9729,0.00000000 1222,63.9890,270.0278,86.6201,242.1189,0.00000000 1222,629.6119,479.5479,10.5348,32.5988,0.00000000 1223,455.2986,200.6860,39.0912,85.9021,0.99998581 1223,276.7148,193.2524,25.5654,47.4747,0.99993879 1223,370.8644,190.6252,25.6941,47.4581,0.00003708 1223,317.9788,189.7293,23.4946,50.1097,0.00002996 1223,441.9823,196.1868,20.5782,57.6637,0.00000038 1224,502.7003,204.2593,32.6482,81.5813,1.00000000 1224,281.3716,201.8277,23.9904,49.6156,0.40507734 1224,319.6997,190.5266,23.3292,48.7091,0.00001589 1224,373.5226,190.7154,24.8061,48.9172,0.00000055 1224,441.1132,197.2982,21.5422,50.6021,0.00000015 1224,629.6234,479.5323,10.5233,32.6144,0.00000000 1225,560.1438,203.9068,29.2310,74.1050,1.00000000 1225,443.8007,195.9761,23.4947,57.3938,0.00000081 1225,372.2028,189.8524,27.2921,50.6014,0.00000013 1225,321.7149,192.8847,23.9544,54.9883,0.00000001 1225,543.9469,206.9297,28.6573,62.6416,0.00000000 1225,426.5208,197.7048,31.8972,74.7958,0.00000000 1226,379.2046,190.5421,25.6759,49.1341,0.00870274 1226,270.2289,191.3260,33.1246,60.9957,0.00000059 1226,317.0008,180.2978,24.7172,50.2318,0.00000000 1226,607.4135,198.0325,32.7332,77.2799,0.00000000 1226,633.5527,212.4572,6.5940,57.4376,0.00000000 1226,632.0208,238.6451,8.1259,76.4239,0.00000000 1226,600.1284,153.3995,40.0183,245.4788,0.00000000 1226,630.5353,169.5159,9.6114,79.4939,0.00000000 1226,627.4834,455.1446,12.6633,57.0021,0.00000000 1226,635.1445,486.5438,5.0022,25.6029,0.00000000 1227,294.6689,189.5582,25.8409,48.0190,0.99999332 1227,336.1662,184.6991,22.9282,52.9428,0.06009251 1227,478.8765,185.5580,22.6215,49.9119,0.00001812 1227,308.3604,194.8318,22.8820,51.1462,0.00000011 1227,405.3712,201.6618,35.0239,76.6512,0.00000000 1227,348.5200,180.6174,22.7543,50.0842,0.00000000 1227,493.5438,174.5741,35.6381,91.4360,0.00000000 1227,322.4640,157.1537,48.8761,107.2324,0.00000000 1227,291.4862,102.3715,103.2229,224.5525,0.00000000 1227,627.8204,456.7593,12.3263,55.3874,0.00000000 1227,635.3782,487.0556,4.7685,25.0911,0.00000000 1228,307.9427,189.3047,25.1935,48.6118,0.99994481 1228,350.4427,183.6671,22.8738,51.7013,0.99989438 1228,496.7339,189.5217,20.7287,50.4272,0.00523545 1228,322.6548,184.7287,24.2400,51.1806,0.00000000 1228,363.2473,177.4920,23.7054,48.5868,0.00000000 1228,337.8687,136.3592,51.0610,108.0601,0.00000000 1228,627.3214,1.0000,12.8253,49.4033,0.00000000 1228,635.2080,487.0027,4.9387,25.1440,0.00000000 1228,627.3373,456.1826,12.8094,55.9641,0.00000000 1229,311.3307,191.8740,26.0804,48.1934,0.99999940 1229,355.8057,184.4074,22.3228,51.3378,0.99931145 1229,420.9077,193.3000,25.5504,47.3355,0.00000030 1229,298.9602,193.8457,23.9869,49.1452,0.00000009 1229,326.1235,189.7463,24.9248,49.7403,0.00000000 1229,369.0765,181.2485,22.1357,50.6783,0.00000000 1229,340.0392,186.8683,23.3422,48.7527,0.00000000 1229,634.9514,485.7192,5.1953,26.4275,0.00000000 1229,626.9242,454.8871,13.2225,57.2596,0.00000000 1230,310.1879,194.7319,25.9734,47.7981,0.99999726 1230,356.0321,186.9147,22.4426,51.5107,0.99997103 1230,503.3107,189.7722,22.5797,47.4774,0.60619617 1230,419.8525,191.6342,25.4725,48.5285,0.02327401 1230,435.4722,191.0551,24.4324,50.4734,0.00000000 1230,340.1931,186.8113,23.7052,49.5813,0.00000000 1230,629.5599,477.9116,10.5868,34.2351,0.00000000 1231,355.7161,187.4163,22.7234,51.1190,0.99647784 1231,311.0965,196.7984,25.2584,47.9607,0.94349504 1231,502.7698,187.1906,21.5957,49.1082,0.93768889 1231,420.5774,186.4528,26.0619,47.4622,0.82492000 1231,629.6481,477.8379,10.4986,34.3088,0.00000000 1232,352.5624,189.5489,21.8817,48.3643,0.98678350 1232,501.9825,187.0299,21.8166,49.6533,0.91422534 1232,424.2290,189.5374,24.0564,49.3550,0.07655039 1232,339.9209,187.8601,22.8136,48.1444,0.05057671 1232,309.9075,192.9902,23.9008,49.7746,0.00000371 1232,635.0742,486.2600,5.0725,25.8867,0.00000000 1232,627.3380,455.5093,12.8087,56.6374,0.00000000 1233,323.9926,194.2526,22.7500,51.3061,0.99999481 1233,506.3538,193.0580,21.5611,49.2983,0.99777979 1233,424.2009,194.3165,24.5033,50.0012,0.98508257 1233,354.8602,194.5370,24.5725,50.9010,0.92465860 1233,250.9792,203.0240,21.8403,49.7518,0.85866332 1233,281.2687,201.0356,24.1945,49.6001,0.82617950 1233,337.4565,191.1599,20.2170,48.6032,0.00000000 1234,300.4467,202.2652,23.2750,52.8656,0.99999982 1234,520.7238,198.6048,22.2521,53.2208,0.99998957 1234,345.3716,203.0711,23.6180,50.7659,0.99967778 1234,433.3355,199.9610,23.2789,50.3538,0.99181819 1234,244.1571,209.9673,25.7423,48.5421,0.72866124 1234,212.2532,209.9810,22.6046,48.2590,0.01018700 1235,248.4970,208.3422,23.3434,54.5775,0.99999905 1235,278.6962,210.9674,23.2497,53.3966,0.99453861 1235,129.7081,209.3880,26.7029,58.9364,0.98643488 1235,154.2800,208.9156,25.9077,56.1402,0.80996948 1235,430.4892,210.2043,26.6404,50.6269,0.00000054 1236,458.8179,209.6574,22.8958,55.3526,1.00000000 1236,81.4694,212.4796,32.3843,61.3938,0.99999970 1236,344.2107,207.5658,27.0153,52.9975,0.89599442 1236,64.0930,209.6692,30.5725,59.4242,0.70591134 1236,355.4055,215.2086,29.5964,60.8317,0.00000086 1237,231.8854,210.3054,25.3926,55.0970,0.99999517 1237,249.3494,214.3743,23.6163,51.7904,0.99985689 1237,213.9531,218.6790,24.3508,51.8641,0.73657823 1237,217.1734,175.2362,51.4727,103.9300,0.00000000 1237,635.1740,488.2618,4.9727,23.8849,0.00000000 1238,266.4080,217.0056,30.0991,79.1730,1.00000000 1238,636.5391,493.2682,3.6076,18.8785,0.00000000 1238,238.6125,130.6718,86.3711,210.9011,0.00000000 1238,629.1808,457.6475,10.9659,54.4992,0.00000000 1239,636.3831,492.3270,3.7636,19.8197,0.00000000 1239,629.4434,478.5779,10.7033,33.5688,0.00000000 1240,40.2860,287.4655,87.4076,224.6812,0.00000000 1240,634.6533,232.5855,5.4934,76.4810,0.00000000 1240,1.0000,384.7938,59.2939,127.3529,0.00000000 1240,636.5767,492.3135,3.5700,19.8332,0.00000000 1240,629.7559,478.5002,10.3908,33.6465,0.00000000 1240,601.6284,399.4145,38.5183,112.7322,0.00000000 1241,409.1429,219.4399,29.6074,60.6372,0.00000000 1241,370.6463,240.7015,27.0420,57.2252,0.00000000 1241,586.3162,232.8783,28.0407,61.8673,0.00000000 1241,631.5851,256.9894,8.5616,81.6250,0.00000000 1241,636.4473,225.4880,3.6994,62.3670,0.00000000 1241,629.6848,480.5211,10.4619,31.6256,0.00000000 1242,615.2385,209.7661,24.7766,52.9000,0.99998868 1242,634.1336,196.0237,6.0131,54.1006,0.00000000 1242,583.7875,180.5829,56.3592,254.4994,0.00000000 1242,168.8403,193.8046,64.3410,165.6972,0.00000000 1242,1.0000,270.2504,58.5976,241.8963,0.00000000 1242,631.6426,486.7401,8.5041,25.4066,0.00000000 1243,602.9008,204.5562,27.2061,66.3422,0.99938095 1243,491.2474,210.7796,27.1768,64.6489,0.16443273 1243,506.5610,219.6574,23.2343,57.8427,0.00000000 1243,626.4502,190.6180,13.6965,85.9918,0.00000000 1243,576.9945,185.0007,63.1522,205.9189,0.00000000 1243,629.5416,480.9585,10.6051,31.1882,0.00000000 1244,511.6079,214.5010,27.0903,68.3183,0.03459696 1244,541.2080,215.1430,24.1399,60.9480,0.01701069 1244,524.9618,224.4048,29.5633,75.5556,0.00000004 1244,555.0128,220.3625,22.6745,56.8769,0.00000000 1244,502.7049,180.4692,62.1896,152.1500,0.00000000 1244,626.0458,299.2447,14.1009,125.1943,0.00000000 1244,633.9086,314.0500,6.2381,64.6353,0.00000000 1244,631.3467,487.0434,8.8000,25.1033,0.00000000 1245,486.9932,215.6089,24.8516,54.5251,0.00003936 1245,620.8363,222.6530,19.3104,59.8712,0.00001557 1245,592.3406,139.9199,47.8061,243.0461,0.00000000 1245,629.4877,246.4070,10.6590,101.2152,0.00000000 1245,635.0246,200.7554,5.1221,63.7219,0.00000000 1245,631.2432,485.9582,8.9035,26.1885,0.00000000 1246,634.5388,216.6678,5.6079,77.2835,0.00000000 1246,629.6658,480.4690,10.4809,31.6777,0.00000000 1247,141.1136,206.1822,22.0429,51.2131,0.99439174 1247,483.9503,273.8459,32.2001,68.0473,0.00000000 1247,127.7462,206.1178,23.2948,52.7983,0.00000000 1247,568.4063,321.5548,27.0064,53.2257,0.00000000 1247,533.5941,316.3518,25.3904,56.1868,0.00000000 1247,495.4905,274.3307,45.3827,97.0625,0.00000000 1247,128.8918,167.5258,49.4033,105.9413,0.00000000 1247,627.8962,458.9804,12.2505,53.1663,0.00000000 1247,635.5023,487.4836,4.6444,24.6631,0.00000000 1248,274.5340,211.4601,23.7928,48.0663,0.99957025 1248,108.1103,206.5332,26.5709,66.0585,0.00000006 1248,465.3073,194.7934,25.8395,54.4126,0.00000000 1248,635.4639,487.2229,4.6828,24.9238,0.00000000 1248,628.3900,458.8805,11.7567,53.2662,0.00000000 1249,262.1870,210.3615,25.4860,53.5297,1.00000000 1249,584.1810,221.2941,24.4283,60.0209,0.99999976 1249,28.1452,213.2766,29.4443,68.1018,0.99997133 1249,516.7599,205.4526,21.7648,52.8720,0.03302630 1249,483.4976,200.0815,23.7423,49.9507,0.00009586 1249,544.4926,204.8505,21.0207,49.9409,0.00000953 1249,595.0969,226.1943,32.0481,64.4623,0.00000010 1250,213.7513,211.0661,35.4751,66.5831,1.00000000 1250,589.3634,211.2039,22.7712,53.5401,0.99999607 1250,504.2421,204.5659,23.9815,59.2389,0.14152184 1250,472.5892,204.8221,30.9182,63.4028,0.00005560 1250,497.7189,177.1482,46.0238,123.1573,0.00000000 1251,127.5341,214.8606,37.6557,80.7617,1.00000000 1251,535.2055,201.8468,24.4617,56.3790,0.99999678 1251,580.6862,207.3683,26.0176,60.6983,0.99998850 1251,595.1957,206.9951,24.9133,57.6547,0.99996185 1251,548.3640,209.2524,22.9863,54.5954,0.99934244 1251,610.1483,218.6817,21.9559,54.6302,0.00000881 1251,509.6880,209.6755,22.2341,54.4482,0.00000505 1252,507.7589,221.1043,22.9263,54.0360,0.66147399 1252,597.8788,204.0664,26.1451,72.4151,0.00026866 1252,467.4215,207.2082,21.4191,54.1751,0.00003341 1252,485.9821,219.1128,25.2144,53.7431,0.00001192 1252,581.7222,195.5524,27.5431,62.7737,0.00000084 1252,438.3208,202.9183,23.4360,59.3261,0.00000001 1253,518.9586,207.3879,26.1763,68.8165,0.08729427 1253,501.9037,205.9649,22.3106,57.1721,0.05091200 1253,488.3849,207.3293,22.2075,61.1925,0.05033401 1253,610.5270,234.2417,23.4663,59.6453,0.00005563 1253,541.4698,271.7990,35.6721,73.3562,0.00000089 1253,509.0319,197.4044,50.3699,127.7898,0.00000003 1253,477.6548,197.9361,44.4524,109.6303,0.00000000 1253,512.6978,157.3112,83.4880,236.4654,0.00000000 1254,553.6824,206.8377,22.1519,57.5105,0.99999833 1254,609.0790,202.8171,23.0589,62.3520,0.13580200 1254,577.9514,212.5359,25.5519,65.8965,0.03171050 1254,592.3925,203.1673,30.4749,78.8901,0.00001117 1254,366.5724,208.3050,21.8327,55.0270,0.00000019 1254,400.1902,244.7843,24.1064,56.0824,0.00000000 1254,635.8020,196.7154,4.3447,60.0836,0.00000000 1255,385.0156,185.4613,24.6203,63.9539,0.01101977 1255,433.2248,215.3687,25.0169,66.6314,0.00003722 1255,499.4141,283.7213,30.5762,76.2607,0.00000000 1255,546.0314,204.9900,28.1235,56.4202,0.00000000 1255,635.5797,183.8212,4.5670,76.2061,0.00000000 1255,629.6011,480.5074,10.5456,31.6393,0.00000000 1256,546.8004,184.7153,22.2738,57.6578,0.00000000 1256,526.9089,221.0701,37.3799,78.5696,0.00000000 1256,631.3045,486.3808,8.8422,25.7659,0.00000000 1257,589.3400,204.9607,23.4933,57.2353,0.00000000 1257,579.3510,221.8076,24.7681,62.4393,0.00000000 1257,602.9457,189.6395,28.4269,58.2597,0.00000000 1257,635.9602,186.0648,4.1865,67.2407,0.00000000 1257,635.9281,232.6737,4.2186,65.8366,0.00000000 1257,630.9706,200.5715,9.1761,83.1180,0.00000000 1257,631.6525,486.5223,8.4942,25.6244,0.00000000 1258,494.6242,206.0862,23.5510,54.7601,0.99684477 1258,473.4088,264.9498,21.9901,55.7198,0.00000002 1258,603.7429,221.3859,25.0076,58.9438,0.00000000 1258,481.2025,182.3242,46.0231,110.1038,0.00000000 1258,637.5406,211.4724,2.6061,63.1990,0.00000000 1258,631.0205,218.9718,9.1262,83.4230,0.00000000 1258,635.4306,487.5360,4.7161,24.6107,0.00000000 1258,628.7502,459.7328,11.3965,52.4139,0.00000000 1259,564.8217,207.3181,22.9127,56.6012,0.99999732 1259,491.8250,213.2635,26.2527,68.5503,0.00034451 1259,517.5460,209.3625,27.3315,60.1909,0.00005394 1259,551.7280,201.6646,24.3098,59.2157,0.00000000 1259,552.1613,182.5064,46.8907,103.4310,0.00000000 1259,522.0416,131.6961,100.3012,221.8655,0.00000000 1259,631.4852,486.1898,8.6615,25.9569,0.00000000 1260,477.0927,202.8953,22.2778,48.0842,0.42224437 1260,592.4301,203.7335,23.2522,54.6771,0.00002902 1260,495.3946,200.1922,23.0859,51.2221,0.00000978 1260,551.8101,150.8494,26.4101,64.2566,0.00000000 1260,637.0305,72.5380,3.1162,64.7251,0.00000000 1260,631.6209,487.1357,8.5258,25.0110,0.00000000 1261,598.9740,206.7503,37.4273,82.0393,1.00000000 1261,505.8120,203.1119,24.6374,55.2419,0.00702181 1261,602.5517,174.1017,27.5868,63.5412,0.00000002 1261,407.2560,206.4673,21.3879,51.1593,0.00000000 1261,587.2184,127.8500,52.9283,246.5041,0.00000000 1261,624.0842,193.5954,16.0625,105.4036,0.00000000 1261,629.6277,480.7224,10.5190,31.4243,0.00000000 1262,429.9400,206.3587,22.9926,49.5133,0.99744433 1262,443.8513,202.8941,25.0364,49.7608,0.00002266 1262,491.7494,207.2230,23.5519,57.4746,0.00000001 1262,528.2485,198.7566,22.8018,55.6251,0.00000000 1262,474.4276,198.7536,23.8385,55.3117,0.00000000 1262,421.8774,192.1322,45.7198,100.0768,0.00000000 1262,634.7791,100.8483,5.3676,75.6593,0.00000000 1262,629.5975,480.8901,10.5492,31.2566,0.00000000 1263,511.4331,218.2246,20.6303,49.3464,0.99998510 1263,467.8003,205.8837,21.9961,55.3207,0.99997592 1263,531.6727,214.1210,20.9791,52.4070,0.99991083 1263,481.0586,206.9255,21.5281,55.9449,0.99636167 1263,543.3223,214.5129,22.2912,53.4734,0.21930407 1263,559.4407,204.0482,26.5522,58.1229,0.00000475 1263,493.1011,214.1698,21.7957,51.7634,0.00000131 1264,578.7653,215.2136,22.7271,57.0080,0.99999911 1264,530.3226,214.4009,23.2457,58.7251,0.99997979 1264,507.3200,207.1210,21.8040,56.1012,0.99994326 1264,597.2960,219.3157,22.4149,53.5214,0.99991244 1264,110.0070,208.3732,23.0881,49.5326,0.24759801 1264,564.4916,216.8139,21.5802,56.3701,0.09602290 1264,609.8201,221.1690,22.5513,57.1707,0.02467145 1264,550.3057,216.0736,22.4158,56.7960,0.00000009 1265,93.4469,205.8700,23.7062,51.2891,0.99803340 1265,558.4476,208.0063,27.5919,65.3603,0.95350969 1265,457.7871,210.8867,21.5675,52.7318,0.94989789 1265,595.0941,215.4421,22.9715,62.6396,0.71326929 1265,441.0562,204.3885,21.7393,50.4649,0.02289332 1265,576.0278,213.0578,25.5127,59.5118,0.00081666 1265,476.9222,210.1052,22.4999,52.5129,0.00000031 1265,499.5580,213.0589,22.8252,54.0691,0.00000028 1266,78.7597,204.1332,26.8099,55.4114,0.99995524 1266,467.7156,209.5869,20.2320,51.4127,0.99425429 1266,448.9507,212.1880,20.6550,48.8038,0.65090275 1266,491.6127,208.1110,20.0777,50.7374,0.02509242 1266,515.4750,212.3609,21.6175,52.5352,0.01071314 1266,610.4892,209.2852,26.1316,66.9982,0.00001692 1266,394.5162,211.2509,22.1595,47.7646,0.00000017 1266,501.6226,216.0784,23.6173,54.2533,0.00000001 1266,526.1812,217.0051,25.4578,58.6053,0.00000001 1266,554.8828,220.0390,28.0104,60.0028,0.00000000 1266,574.0038,218.7702,27.6994,58.8002,0.00000000 1267,598.4514,222.4080,29.9334,67.9739,0.99969989 1267,473.9948,210.4026,21.6496,52.9726,0.99950784 1267,520.6208,211.8108,23.0385,53.6141,0.98497391 1267,449.2201,215.8120,21.0276,49.2187,0.59124547 1267,577.2593,212.6510,41.2341,99.0799,0.22239982 1267,498.0742,210.4073,19.9931,48.8695,0.16792716 1267,394.0288,214.5444,21.3198,49.0827,0.00010911 1267,461.5359,213.0780,22.4043,52.0510,0.00002395 1268,474.6838,214.1814,21.8867,53.1406,0.99999917 1268,602.1956,221.2989,33.8698,82.0426,0.99976557 1268,517.3900,213.6957,20.4999,51.4392,0.99448705 1268,502.9042,212.8815,20.6057,52.8261,0.96115553 1268,397.7928,217.4712,22.2883,48.7079,0.03914322 1268,452.5968,214.9603,19.8880,50.2177,0.03681318 1268,487.3241,213.1548,21.4800,53.1315,0.00002555 1268,15.6299,200.8327,24.4175,52.4697,0.00000006 1268,435.9464,211.1205,21.1711,48.0355,0.00000001 1269,514.4344,216.0327,23.3016,54.0244,0.99999952 1269,473.7658,215.3810,22.6090,55.8713,0.99890751 1269,599.4468,223.3447,30.0207,75.1499,0.99657089 1269,498.4864,214.6851,20.6892,52.3642,0.00331088 1269,455.3391,214.2148,20.1631,52.0961,0.00182919 1269,394.4168,215.6187,22.0644,52.1405,0.00026237 1269,429.3831,212.3395,21.6353,47.9580,0.00000001 1270,512.6176,213.8167,23.6422,55.2510,0.99999297 1270,51.6828,212.9007,23.3028,49.7494,0.99990225 1270,473.5814,213.3073,22.2767,54.8878,0.99782676 1270,593.6185,213.1587,40.8921,99.4617,0.21384850 1270,450.2519,217.9852,20.9752,49.9405,0.00298189 1270,499.4973,212.3169,22.7795,52.4490,0.00271040 1270,461.4789,218.2587,22.8225,53.2229,0.00000547 1270,12.6934,193.2757,25.8045,56.7055,0.00000420 1271,474.5239,214.9907,22.0636,53.6703,0.99906862 1271,507.3695,215.7843,24.9575,56.2655,0.99731171 1271,448.8217,217.7146,20.9744,49.7320,0.29640999 1271,595.4996,213.9708,38.8969,100.2477,0.00289427 1271,11.4455,207.7721,26.8725,55.6388,0.00016413 1271,400.4366,219.8659,21.5130,47.3001,0.00000580 1271,436.0668,212.8572,21.2440,47.5440,0.00000004 1271,614.3323,227.1611,23.9944,59.4942,0.00000000 1272,505.6599,216.2986,23.0589,53.8372,0.99999833 1272,475.6978,217.8878,21.7772,52.9971,0.99996328 1272,53.2908,209.3627,24.2730,54.7571,0.99964750 1272,449.8060,217.9881,20.6705,48.0806,0.94755912 1272,597.6188,216.4923,37.4032,96.1470,0.50354451 1272,433.9756,219.1818,21.7478,49.2244,0.00009754 1272,29.9819,204.5598,22.0202,51.2080,0.00000139 1273,504.0838,215.5726,21.8137,54.3752,0.99998838 1273,50.7986,210.8058,24.5157,53.4859,0.99986213 1273,475.2350,216.9912,21.4916,54.4988,0.06335045 1273,599.0356,220.2083,35.7005,86.3637,0.00074847 1273,517.1980,214.5975,24.3619,55.3230,0.00000055 1273,487.4529,218.4189,23.3379,51.7516,0.00000050 1273,72.2878,208.8597,22.2582,49.4457,0.00000000 1274,594.3262,220.2963,37.2741,93.3144,0.99999988 1274,50.0162,207.3418,25.5508,57.3900,0.99996948 1274,450.2253,218.3705,20.3006,48.1678,0.04980352 1274,399.2021,221.9762,22.0529,48.6301,0.00013360 1274,473.6249,218.6951,21.3218,52.4833,0.00001567 1274,79.4174,207.7995,22.7346,49.5994,0.00000009 1274,436.0015,213.4595,21.9130,46.7379,0.00000001 1274,461.7170,214.6576,21.6419,46.8335,0.00000000 1275,51.7275,208.1071,26.3469,56.6877,0.99999356 1275,475.1143,214.9136,20.8510,52.3982,0.99987429 1275,597.5472,218.4494,32.3517,85.6789,0.99987215 1275,502.5003,215.7539,22.0538,54.1133,0.99972397 1275,450.5856,218.3829,19.9358,47.5562,0.14032114 1275,398.9920,216.8461,21.1099,48.8121,0.00047692 1275,463.8613,215.3267,20.1906,46.6939,0.00008385 1275,489.6010,213.1288,21.5458,53.3136,0.00000183 1275,435.9302,213.7111,21.7886,46.4737,0.00000001 1275,78.6777,205.5105,23.7135,51.6828,0.00000001 1276,546.9050,217.5340,22.7553,51.2732,1.00000000 1276,51.5790,209.9106,26.0926,56.0625,0.99999982 1276,503.4399,213.8611,21.8540,53.6597,0.99983031 1276,478.7162,219.8699,20.9341,50.5727,0.97638398 1276,599.2571,223.0377,34.5050,84.5792,0.00050963 1276,80.8618,208.2097,22.5987,48.4674,0.00000005 1277,542.9297,219.1313,21.9490,51.9337,0.99999869 1277,50.2635,207.8212,27.0505,56.3868,0.99999672 1277,503.5145,214.9387,22.1106,54.3760,0.99943244 1277,473.9113,215.6824,21.7724,51.9571,0.99561578 1277,447.2816,217.2015,20.8828,49.3316,0.73121136 1277,518.9995,218.7485,21.1167,51.7508,0.01611555 1277,435.5972,213.6282,21.6771,47.5987,0.00048907 1277,594.2807,212.6617,45.5681,107.6216,0.00008939 1277,77.6416,202.8794,24.3303,51.6791,0.00000006 1278,533.4773,214.5980,22.1550,52.5541,0.99999917 1278,52.0544,210.8461,25.3047,55.4378,0.99998599 1278,477.7292,218.1578,21.0201,52.7680,0.99973398 1278,504.9211,214.7645,21.0107,54.0307,0.99926287 1278,445.6550,216.3745,21.8206,52.3945,0.01045454 1278,397.8208,216.3187,21.6163,49.5548,0.00037080 1278,599.5168,217.4133,35.0172,84.2226,0.00006809 1278,68.6307,210.2628,23.1404,51.3385,0.00000806 1278,428.1096,217.9790,23.4180,50.6184,0.00000019 1279,525.5306,213.1771,22.4345,52.6251,0.99999911 1279,51.2230,210.3264,24.5763,55.5708,0.99980575 1279,503.3929,216.3215,20.2771,51.3113,0.99001849 1279,444.9178,218.3788,22.6716,50.5576,0.89463264 1279,474.5196,217.6907,20.5316,50.0392,0.72550589 1279,490.3637,218.0883,20.1416,51.0042,0.33578968 1279,398.3610,216.8733,21.3661,49.6753,0.18237287 1279,603.6519,220.9118,26.9097,71.5670,0.00008236 1279,428.2046,215.3518,22.4894,52.6863,0.00000195 1280,52.2036,211.1379,23.8680,54.6102,0.99999946 1280,473.8403,216.3766,21.6027,53.3401,0.99989122 1280,505.8334,214.8140,22.3827,57.1079,0.99987817 1280,601.8062,224.5478,28.5418,73.2877,0.99163365 1280,441.5615,218.4599,23.9799,50.1043,0.34177342 1280,399.4344,219.1873,21.3259,47.6823,0.01463506 1280,30.7626,202.5772,23.0715,48.8475,0.00055473 1280,427.9517,211.2136,24.2723,50.1110,0.00001634 1281,51.3720,210.9607,24.7139,54.8615,0.99999976 1281,525.8586,221.3799,23.3844,53.7528,0.99999726 1281,475.7793,216.7849,20.8090,51.3130,0.99999303 1281,596.7186,225.9446,31.2246,80.2082,0.99998844 1281,501.0298,213.8895,22.0960,54.6788,0.95803267 1281,489.2820,215.7626,21.0735,52.4055,0.17703503 1281,445.6888,217.2567,22.6098,50.4683,0.02571807 1281,398.8738,217.8479,21.1332,48.6356,0.00057243 1281,429.9647,212.2868,22.2193,47.3999,0.00000080 1281,16.1197,202.6070,22.4474,50.8188,0.00000038 1281,69.8057,210.3460,23.4960,51.0855,0.00000011 1282,51.2995,211.0303,25.0462,54.3971,0.99999964 1282,595.6169,225.9346,31.7469,80.4449,0.99780130 1282,399.7837,219.2832,21.8320,46.7543,0.00043798 1282,72.4161,209.6741,22.0969,52.3701,0.00000326 1282,620.7520,224.1066,19.3947,70.4676,0.00000000 1283,51.9146,211.5415,25.1407,54.7299,0.99999994 1283,554.7716,221.2980,22.5369,53.0152,0.99999982 1283,474.5368,216.9407,21.8038,53.2398,0.99998003 1283,444.6130,219.5833,23.6101,50.7071,0.99342251 1283,503.4666,215.5648,22.3261,53.4058,0.55860174 1283,400.8583,219.5588,21.1551,46.7252,0.28701252 1283,597.1122,230.7449,24.1736,62.9839,0.03767394 1283,72.3440,208.8510,22.7818,52.5954,0.00073025 1283,487.1667,216.9486,22.0380,52.8347,0.00068297 1284,574.8732,223.4908,21.7129,50.9252,0.99999893 1284,474.3933,215.5520,22.0505,53.4939,0.99999720 1284,501.6509,214.8695,23.1195,53.0748,0.99977815 1284,599.9056,226.8364,26.9509,67.1101,0.99869329 1284,444.6125,219.9142,21.1179,50.4615,0.31323805 1284,399.7416,222.4208,21.7812,47.9573,0.11223898 1284,431.9343,215.0594,20.9581,51.8778,0.01801012 1284,487.8487,215.6378,22.4173,53.0991,0.00002868 1285,51.6312,211.5821,25.3694,54.0966,0.99999928 1285,397.9692,218.5790,21.2051,49.2976,0.99851066 1285,596.4588,214.7139,31.5811,85.6656,0.72082704 1285,435.6699,214.8689,20.7526,50.6295,0.00023095 1285,71.1432,208.1230,23.0075,52.0500,0.00000019 1286,51.8302,211.0701,25.5292,54.7715,0.99999946 1286,475.5456,215.7325,21.7831,53.3281,0.99999714 1286,398.1107,218.6785,21.5994,49.2650,0.99963653 1286,503.1460,215.7593,21.6485,52.9863,0.98083478 1286,600.3878,219.9133,30.4683,83.4060,0.25352713 1286,443.5257,218.1519,22.3665,51.8015,0.14370893 1286,429.1855,212.2363,22.3397,50.0179,0.00025987 1286,69.3617,209.3884,23.5871,51.2715,0.00000014 1287,52.6671,210.7556,24.6712,55.5321,0.99999982 1287,474.8557,214.5701,21.8566,52.7933,0.99999607 1287,501.4524,216.7964,22.9401,54.1060,0.99999398 1287,398.2815,218.3420,21.5136,49.0869,0.99997455 1287,596.4692,222.2847,32.4507,84.2056,0.99756861 1287,444.3447,218.8381,21.9282,50.5659,0.02702830 1287,428.6790,213.8770,22.3767,48.8094,0.00016169 1287,69.7553,209.0677,22.9705,50.8475,0.00000039 1288,473.8393,212.5845,23.1844,55.7383,0.99999994 1288,50.6873,210.7688,26.3286,55.2589,0.99995798 1288,503.5973,214.9569,22.0992,53.1342,0.99985927 1288,596.7820,222.6584,31.6698,84.8314,0.99844939 1288,400.2928,216.3383,21.6394,48.2699,0.77955902 1288,443.2262,217.8946,23.0573,51.7738,0.53615564 1288,421.7711,213.2671,23.1460,49.7583,0.00194432 1288,619.2393,233.1008,20.9074,61.9729,0.00000007 1289,473.9962,212.3897,22.4196,55.0576,0.99999952 1289,501.4901,215.2317,22.0499,54.1618,0.99999505 1289,52.2421,210.2704,24.1759,54.8357,0.99998939 1289,520.1259,214.3262,21.2402,51.3438,0.99992734 1289,596.7509,220.0860,30.2978,81.2258,0.99951553 1289,399.3056,218.7137,21.9088,47.1484,0.92498529 1289,440.8087,213.8258,23.3340,51.2122,0.10409024 1289,423.6458,213.1240,22.4788,47.0163,0.00212032 1289,488.3258,212.9188,22.2225,53.9946,0.00007161 1289,39.5142,206.5984,23.9235,51.4024,0.00000014 1289,616.0213,226.2616,24.1254,67.0922,0.00000014 1290,51.0707,210.7909,25.4523,54.2689,0.99999738 1290,501.8112,215.8171,21.1750,52.5019,0.99993628 1290,473.9981,214.5046,22.1915,53.3231,0.98874921 1290,399.4409,218.2277,21.2048,47.7899,0.95554733 1290,515.8301,214.2394,20.9312,51.0185,0.90684050 1290,594.1017,220.3362,34.8383,83.5078,0.84874684 1290,440.6837,214.4942,22.8992,51.9551,0.52562660 1290,422.7960,213.5316,21.8042,48.9422,0.37776881 1290,72.6172,210.0154,22.7387,50.5235,0.00000044 1291,51.8388,210.8847,24.6768,54.7205,0.99999756 1291,502.0304,215.2511,21.8268,53.2215,0.99919307 1291,475.4258,214.5291,21.7554,54.5941,0.99681836 1291,596.2722,213.1312,31.3501,84.0318,0.93031383 1291,520.9814,214.6106,22.0660,50.3075,0.80273473 1291,441.4997,214.9524,23.1188,51.3107,0.77987820 1291,399.8044,219.0040,21.3942,48.1259,0.70393211 1291,423.1452,213.0639,22.2064,48.4555,0.00157186 1291,70.1980,208.9219,22.9434,51.1868,0.00017798 1291,487.8777,212.0577,23.4309,53.6328,0.00001297 1292,500.6894,214.1420,22.9577,52.8715,0.99997532 1292,50.2696,210.0447,26.5346,54.5562,0.99996418 1292,473.2140,212.6077,22.9269,55.1488,0.99982601 1292,398.9932,218.1685,21.1002,49.2847,0.99684829 1292,594.4595,215.3668,34.3039,88.4868,0.75786221 1292,442.3682,215.9863,23.7181,51.2187,0.34532717 1292,69.2500,209.5641,24.6436,50.6426,0.00001852 1292,429.3406,216.6257,21.9172,49.2989,0.00000315 1293,473.3715,212.7964,22.8232,55.4342,0.99937415 1293,50.4761,210.1464,26.1099,55.0774,0.99907929 1293,593.5659,219.9398,33.6125,86.5259,0.97475928 1293,499.9241,215.5127,21.7527,52.2573,0.96298468 1293,515.0801,213.2606,21.3280,50.6626,0.94487506 1293,444.8246,217.3424,22.8822,52.6240,0.31649333 1293,400.8887,218.9329,21.1723,46.9528,0.22737738 1293,422.8832,215.2794,21.3028,47.9904,0.00711713 1293,71.0893,207.9780,23.1682,50.3061,0.00013243 1294,473.1376,213.9439,22.9568,54.5037,0.99997967 1294,51.6603,208.3860,24.8112,56.2441,0.99997377 1294,517.0125,214.4115,21.1760,51.0710,0.99992460 1294,398.8536,216.7680,20.7063,48.7628,0.97375596 1294,441.6919,215.1565,23.8405,51.9607,0.70420170 1294,496.1117,214.7203,21.3789,53.7285,0.40830538 1294,421.4185,214.3952,21.2378,48.6181,0.28448567 1294,595.1030,224.2830,33.4071,83.5886,0.06891242 1295,50.7707,209.4132,24.3398,55.2392,0.99999952 1295,516.1041,214.7828,21.1159,50.3819,0.99623019 1295,444.7448,214.9474,22.4583,52.8079,0.99537128 1295,470.2849,210.7870,21.8222,54.6103,0.96592116 1295,593.1750,221.2314,34.5549,86.6931,0.93369514 1295,399.5574,217.8188,21.4147,48.4059,0.91761231 1295,494.8389,216.8093,21.5355,53.0755,0.26060370 1295,422.7103,214.2569,21.2540,46.7898,0.00043711 1295,30.6773,203.8640,23.0643,50.3445,0.00006295 1296,50.6079,210.6397,24.6293,54.4115,0.99999851 1296,474.8275,216.1069,21.2825,52.9211,0.99984252 1296,453.6097,213.8294,21.5935,48.1982,0.95934045 1296,9.8736,204.3980,25.6186,54.7832,0.95077050 1296,595.2120,226.6315,33.0826,78.9279,0.63000226 1296,514.1794,213.6261,22.5965,49.3778,0.36897823 1296,489.1572,216.2639,21.7777,53.4197,0.19718790 1296,400.0642,216.1709,20.6644,48.6500,0.10350544 1296,437.9162,217.6134,23.1033,48.7553,0.00002550 1296,71.9762,208.5087,23.1481,52.0749,0.00000001 1297,475.0158,215.5063,21.4958,53.5414,0.99998158 1297,50.8497,211.7643,24.7035,54.4277,0.99634904 1297,495.4679,219.0667,22.3785,52.2922,0.99557596 1297,442.3316,216.5011,20.6455,50.5304,0.99418551 1297,594.6057,219.5110,32.6070,83.8220,0.56269723 1297,514.9202,214.4645,21.7817,49.9251,0.34317958 1297,402.2814,215.7371,21.3688,48.9832,0.03532443 1297,453.8356,212.8831,19.7560,49.2264,0.00009660 1297,78.7495,205.8751,22.6850,49.1595,0.00000000 1298,52.6583,211.6996,23.3118,54.8298,0.99999946 1298,474.7431,214.8494,22.0959,53.1387,0.99996501 1298,495.4751,218.6372,21.5380,52.1709,0.99971169 1298,441.2198,216.8557,20.3355,50.2903,0.99825388 1298,463.6293,212.0962,20.1706,48.2682,0.98755503 1298,595.9174,224.0802,32.5526,82.2147,0.95048136 1298,515.4239,214.2078,21.5526,49.2963,0.87952268 1298,400.4097,218.4847,22.2204,48.1572,0.23727989 1298,429.2609,217.8831,20.8606,52.4636,0.00000088 1298,84.5377,208.6143,20.7511,50.6694,0.00000008 1298,71.7556,209.8468,22.0886,51.9143,0.00000000 1299,573.4368,228.1964,33.4138,81.9319,0.99999356 1299,57.3084,206.2748,26.2685,57.4850,0.99996096 1299,482.8468,218.0116,21.0677,49.5827,0.99522656 1299,388.0965,216.5882,20.8420,49.5078,0.99311757 1299,444.7588,215.6968,22.0961,51.5945,0.96170980 1299,409.1155,214.3497,20.6122,49.0672,0.92112762 1299,513.5556,215.2707,21.5817,49.0003,0.91824329 1299,494.5986,217.1557,21.0000,51.2654,0.02387590 1299,419.2426,219.7022,21.2705,50.8213,0.00000967 1299,80.0682,208.3816,21.8306,52.2034,0.00000092 1300,523.3448,221.2528,34.8718,90.3888,0.99999988 1300,72.9800,212.1761,23.8426,55.9246,0.99999946 1300,474.3171,217.4240,21.7487,52.6866,0.99999762 1300,358.8204,218.9950,21.1763,48.2015,0.99716026 1300,605.5088,224.3974,30.5026,80.2359,0.94074881 1300,580.2984,216.7452,36.2828,90.8245,0.63360369 1300,432.9572,219.3068,22.2757,52.1216,0.11905859 1300,503.0139,215.5817,21.5685,53.6863,0.01485457 1300,487.1555,215.2896,21.1702,51.6428,0.00133560 1301,518.1543,213.8670,48.8521,120.5889,1.00000000 1301,467.0361,219.5027,38.1847,88.9244,1.00000000 1301,360.7827,218.8461,19.0460,47.7465,0.99944788 1301,408.5919,217.6705,21.5663,50.1707,0.95880955 1301,101.8658,214.7371,22.5822,50.0681,0.94657880 1301,489.3741,218.8529,28.5002,70.7550,0.00048381 1301,348.7144,214.1906,22.1843,44.4921,0.00019854 1301,59.0937,197.0886,22.1946,48.0906,0.00007977 1301,507.5772,210.7380,26.8826,65.9290,0.00000059 1301,506.4239,225.2711,92.8165,211.0134,0.00000000 1302,451.5285,207.7779,47.1099,129.6601,1.00000000 1302,130.8474,214.1836,25.3274,52.8836,1.00000000 1302,593.4528,220.2108,32.9025,83.0216,0.99999994 1302,422.6363,219.3047,32.3871,86.0929,0.99999964 1302,297.2505,213.5673,20.6317,48.1744,0.99545097 1302,339.8716,219.6328,21.0864,48.7765,0.96696597 1302,318.9867,215.8757,20.3958,50.2895,0.77224177 1302,77.5943,207.3160,21.5398,51.4792,0.30347565 1302,384.2247,218.6265,21.8188,51.2998,0.08213310 1302,511.8152,213.3016,21.6530,49.9057,0.05808813 1302,476.9948,214.7458,26.1548,75.5354,0.00241381 1302,612.6937,223.7354,27.4530,77.8501,0.00012622 1302,560.6144,335.6805,79.5323,176.4662,0.00000000 1303,393.0116,215.7863,40.2606,111.7623,1.00000000 1303,165.8670,217.5448,21.4355,49.0689,1.00000000 1303,593.7955,223.4390,23.4909,56.4127,1.00000000 1303,511.0090,219.9731,20.7859,49.8230,0.99999994 1303,560.6830,219.6178,41.3623,98.0457,0.99999952 1303,303.6837,213.5446,22.8675,49.3955,0.99999917 1303,283.2654,215.9964,21.7344,51.6996,0.99998981 1303,496.4507,219.5145,19.7267,50.2539,0.99994576 1303,468.9944,215.3690,21.4250,52.1617,0.99981850 1303,363.4428,217.9535,32.2709,87.7904,0.99955577 1303,264.9629,219.8313,20.8210,48.5750,0.98959416 1303,404.0530,298.3519,88.9983,213.7948,0.67376333 1303,317.2440,269.4129,90.8844,242.7338,0.00037040 1303,95.6054,226.1011,25.2208,53.1086,0.00000021 1303,408.8742,201.5458,58.8803,154.0505,0.00000002 1304,386.2281,220.2909,32.6725,77.1498,1.00000000 1304,340.9532,218.3217,38.2697,104.6864,1.00000000 1304,512.0306,219.2128,43.0755,101.9477,1.00000000 1304,455.5323,217.4761,23.1462,54.7651,1.00000000 1304,194.9367,214.7588,23.6202,53.0314,0.99999964 1304,575.6212,215.1644,38.7765,96.3224,0.99999762 1304,315.6245,218.0869,37.3725,77.4733,0.99974072 1304,613.5688,217.2301,26.5779,62.7010,0.85826337 1304,241.1009,219.3322,22.8506,53.6119,0.62464929 1304,272.1754,214.0373,23.7906,52.7877,0.25580710 1304,48.5567,267.6472,85.7208,232.5486,0.00000000 1304,93.8217,241.7886,85.1054,265.0362,0.00000000 1305,291.8715,214.1528,40.8135,106.1764,1.00000000 1305,580.9014,222.1727,23.1432,55.3333,1.00000000 1305,344.6147,219.8478,32.8281,74.3988,1.00000000 1305,237.4565,216.7820,21.3867,50.3367,1.00000000 1305,466.0221,221.3903,39.4299,92.1497,1.00000000 1305,519.1584,219.4361,37.0964,95.9417,1.00000000 1305,72.4726,216.3885,46.9447,101.2705,0.99999994 1305,603.9904,216.3246,24.0592,59.9784,0.99995089 1305,17.6148,219.5011,22.9685,52.2379,0.99985307 1305,435.1464,242.7565,28.5520,65.1982,0.99858600 1305,30.7712,217.8721,23.4660,54.2450,0.99052775 1305,208.0941,217.6825,20.1889,48.8987,0.94129127 1305,276.0563,217.1064,33.7554,76.8531,0.47798258 1305,441.9669,213.6748,23.3867,57.5104,0.21158704 1306,470.6882,217.1854,35.7805,93.1710,1.00000000 1306,253.5624,214.7478,39.7104,98.1199,1.00000000 1306,304.1427,215.9764,34.0259,82.2630,1.00000000 1306,539.9341,224.3939,22.4339,52.0921,1.00000000 1306,169.2814,218.8995,40.1374,97.0798,1.00000000 1306,418.0030,218.9030,35.0338,89.8950,1.00000000 1306,595.2748,215.8271,23.8412,57.7090,0.99999988 1306,517.6633,219.0454,20.4893,51.9822,0.99999976 1306,16.0287,229.2673,62.2050,132.8030,0.99999934 1306,578.5482,224.1668,22.6452,51.1969,0.99999571 1306,440.5855,216.5027,35.3815,91.5453,0.99999475 1306,57.0639,207.5401,27.7815,62.3780,0.99461234 1306,390.7454,219.2300,22.2284,58.4844,0.98901039 1306,529.8766,220.5935,20.0084,51.9173,0.08130236 1307,376.1631,217.7436,33.8834,86.5874,1.00000000 1307,419.4384,216.4202,34.7374,91.0060,1.00000000 1307,526.8934,221.3727,21.4267,53.2138,1.00000000 1307,552.4329,224.2481,21.9782,53.7062,1.00000000 1307,214.1256,215.1119,34.7595,86.8680,1.00000000 1307,114.9002,228.1868,58.0868,122.2613,1.00000000 1307,240.9047,217.8039,35.9271,90.2407,0.99999988 1307,270.0940,219.9279,32.9907,73.2453,0.99999565 1307,590.6247,218.8952,20.9634,51.4705,0.99999392 1307,405.0012,216.1772,29.2898,83.0397,0.99998605 1307,1.0000,214.7381,63.8521,175.3846,0.99989414 1307,344.6309,246.7318,26.3880,55.0387,0.99984926 1307,303.1905,218.0858,19.8862,49.2021,0.99974233 1307,82.6172,216.7666,24.5612,54.8775,0.99964458 1307,463.3992,211.1656,20.2838,48.2240,0.99952275 1307,506.4862,212.4254,20.6667,50.0180,0.70807058 1307,96.7739,216.7531,23.2194,54.4612,0.63463104 1307,618.9934,225.0060,21.1533,53.0875,0.00016705 1308,375.2303,215.6858,35.8841,87.9585,1.00000000 1308,538.7568,223.2077,22.2149,53.9769,1.00000000 1308,103.4588,213.1832,69.5400,167.1553,1.00000000 1308,337.9297,216.8621,38.7815,89.1816,1.00000000 1308,566.6757,222.4769,22.6874,55.8708,1.00000000 1308,296.4992,211.0401,34.9040,94.9687,0.99999994 1308,197.4518,210.5439,65.8585,135.5900,0.99999988 1308,187.5668,214.9356,32.4488,88.1602,0.99999928 1308,601.1196,216.8352,23.0673,56.9254,0.99999702 1308,231.4044,217.7018,35.5609,77.0407,0.99994957 1308,469.4066,212.9388,21.6629,46.8988,0.99993449 1308,584.9460,218.8512,22.9031,53.3784,0.99981350 1308,173.3876,219.4639,28.0132,71.9375,0.25497091 1308,489.3485,211.9021,20.5241,47.9601,0.02320267 1308,501.5807,210.7289,20.0480,49.2586,0.00004727 1309,375.6282,219.9859,32.2097,83.6851,1.00000000 1309,277.2310,219.3351,59.0220,123.1093,1.00000000 1309,552.5863,223.0693,23.6127,58.5106,1.00000000 1309,215.7551,210.7880,68.6436,157.4071,1.00000000 1309,406.6556,219.8294,21.9921,52.7126,1.00000000 1309,152.9763,216.4208,31.6361,79.1166,1.00000000 1309,581.4022,221.7155,24.0482,58.2317,0.99999994 1309,330.9886,214.7441,37.5912,85.3860,0.99999964 1309,472.7361,214.6723,21.9131,51.1847,0.99560702 1309,523.0225,210.7780,19.7184,51.0990,0.99425942 1309,606.8250,218.8187,25.2605,54.6479,0.98925120 1309,195.7986,216.3240,27.5334,66.5786,0.98773891 1309,133.8236,216.8539,29.1156,65.8262,0.77650553 1309,502.7969,210.7376,19.9078,50.8995,0.48756793 1309,56.2720,201.2712,28.7669,65.4890,0.03017991 1309,74.4980,211.3598,23.6126,52.9807,0.00364461 1310,250.6360,217.4660,36.7206,86.7832,1.00000000 1310,309.0612,221.2199,61.8535,152.2887,1.00000000 1310,11.4675,209.2686,46.3040,105.1969,1.00000000 1310,424.4244,210.5286,35.3601,92.3287,1.00000000 1310,531.1045,212.3097,21.6859,52.6091,0.99999952 1310,128.4698,216.3213,30.5126,72.2666,0.99999946 1310,481.3009,217.0339,22.0032,51.0533,0.99999881 1310,165.7401,220.5223,23.3156,58.9760,0.99999571 1310,562.2394,226.4039,24.6831,62.5700,0.99999291 1310,106.8994,220.6543,25.3915,59.5958,0.99993831 1310,576.1396,225.0679,37.6733,95.4390,0.99954659 1310,340.2328,213.2753,50.9663,124.2707,0.99842304 1310,290.8596,205.1156,46.0542,120.5087,0.98585272 1310,181.5613,219.5475,23.8534,56.1878,0.95344669 1310,60.1766,206.8873,27.4148,54.7940,0.95182514 1310,227.7521,220.8942,20.7444,49.5658,0.65116620 1311,454.4807,214.9901,30.8882,75.7776,1.00000000 1311,212.8906,218.1508,33.2110,75.5008,1.00000000 1311,253.4938,211.7005,35.9370,80.2712,1.00000000 1311,586.9417,226.6704,24.4785,61.4173,1.00000000 1311,83.8302,216.7550,35.8338,89.3543,1.00000000 1311,477.1876,218.1601,42.7129,117.4101,1.00000000 1311,379.8307,213.6684,53.9826,143.5850,0.99999994 1311,279.2056,211.2936,35.2724,76.8994,0.99999982 1311,553.5868,215.4735,25.2369,57.7492,0.99993157 1311,130.6577,219.9127,26.0126,58.1268,0.99966633 1311,308.2780,213.9547,24.0490,55.7568,0.99855506 1311,35.5749,208.4721,24.2660,54.2476,0.98654526 1311,193.6712,215.8974,21.2527,51.3699,0.73721498 1311,158.8290,238.0193,24.1750,50.6208,0.61348128 1311,17.4540,210.1462,23.7876,53.6197,0.42021272 1311,107.1467,219.3687,29.5270,69.5403,0.03203535 1311,53.9831,205.4066,26.8475,54.6746,0.00094576 1311,619.7298,231.0090,20.4169,53.7611,0.00000003 1312,445.2716,211.2840,58.5983,153.3164,1.00000000 1312,47.0690,217.8680,60.2198,134.1860,1.00000000 1312,381.8281,221.0968,61.7792,116.1734,1.00000000 1312,224.6811,214.9208,29.4916,75.7848,1.00000000 1312,138.8115,216.0046,35.0813,85.0846,1.00000000 1312,543.4334,222.0464,26.5164,72.6558,1.00000000 1312,520.1410,220.4578,20.4512,53.2372,1.00000000 1312,183.6079,216.3244,33.5399,76.3650,1.00000000 1312,602.3813,219.6913,27.4940,68.2875,1.00000000 1312,503.5305,221.6817,19.1733,49.7285,0.99998611 1312,261.5292,217.1052,27.6809,66.5602,0.99996382 1312,107.5340,225.0619,23.0967,53.4270,0.97246277 1312,359.0699,220.8943,21.4032,47.3670,0.22469482 1312,22.6865,220.4277,23.5741,49.8993,0.06074268 1313,312.9980,220.0284,51.3324,107.8619,1.00000000 1313,283.7109,214.9902,29.4557,56.5405,1.00000000 1313,145.2144,220.1590,56.8544,130.8626,1.00000000 1313,195.0696,214.1473,31.6920,77.1115,0.99999964 1313,228.0342,216.8287,27.1170,64.0660,0.99998266 1313,44.1420,211.2085,35.1429,71.8290,0.99991506 1313,509.7265,224.6835,40.3676,117.3539,0.99947500 1313,568.3240,220.2200,21.9410,52.8714,0.99919385 1313,408.1221,218.2038,22.9967,52.9817,0.93648148 1313,80.7210,211.9700,27.9644,62.4604,0.53949499 1313,484.2646,220.6185,40.1658,112.2527,0.52861995 1313,581.2122,242.3129,34.5934,73.7074,0.15212722 1313,244.2192,220.3554,24.6293,54.5854,0.05860027 1313,473.0077,208.6215,32.1971,80.1610,0.05304123 1314,125.7206,222.5422,29.9278,65.9458,1.00000000 1314,486.1960,219.8358,55.7185,136.4844,1.00000000 1314,160.4147,213.2644,33.8392,73.9985,1.00000000 1314,530.7878,218.2430,40.1123,108.3130,1.00000000 1314,263.6401,219.1711,46.8238,107.1457,0.99999994 1314,555.4175,223.2488,40.1280,101.3670,0.99999994 1314,448.4454,217.4542,30.9090,76.3445,0.99999994 1314,317.6805,220.5817,24.1220,52.1807,0.99999964 1314,208.5370,215.4713,24.4450,62.6781,0.99999601 1314,1.0000,226.8240,54.6560,141.0367,0.99998504 1314,181.5076,213.4910,30.0343,71.6465,0.99994326 1314,234.4422,213.1874,50.1964,117.8213,0.99852997 1314,222.9900,211.5950,32.7935,76.1979,0.98240179 1314,26.3960,212.8258,31.3417,67.6482,0.87792546 1314,62.8897,216.4303,34.4783,65.3331,0.42086256 1314,616.8657,220.2154,22.8269,54.9879,0.02424518 1315,157.5612,234.8360,61.4026,140.4604,1.00000000 1315,492.9383,219.6162,22.6368,54.5127,1.00000000 1315,338.2311,224.3584,52.4478,120.2877,1.00000000 1315,98.2401,217.7341,30.7121,70.1854,1.00000000 1315,257.1232,214.2646,32.4580,72.0327,1.00000000 1315,564.3151,221.8227,34.4115,85.6177,0.99999994 1315,396.0840,240.9197,54.0374,124.4526,0.99999982 1315,529.1735,221.8204,22.2180,54.0224,0.99999982 1315,197.7200,212.9020,39.2966,97.4796,0.99999982 1315,471.0131,212.9441,20.2825,50.7361,0.99999976 1315,222.7005,218.9765,34.3913,82.3374,0.99999970 1315,131.6180,216.3690,28.7755,68.5902,0.99999845 1315,541.1086,222.3033,32.9950,77.4666,0.99999762 1315,151.4641,214.3237,27.3186,67.0201,0.99974406 1315,21.1060,217.6692,28.3250,58.4101,0.99765646 1315,40.5176,217.2368,29.6069,62.2881,0.99717546 1315,79.0773,214.6295,21.7053,51.9674,0.95474541 1315,508.5388,218.4781,21.5113,52.2699,0.50094175 1316,325.0480,234.5592,58.7848,137.1280,1.00000000 1316,104.4698,215.6775,29.7245,71.3489,1.00000000 1316,151.5964,215.1973,36.9876,84.2925,1.00000000 1316,179.6771,217.6816,31.3078,78.4489,1.00000000 1316,435.6636,231.8893,52.6974,125.7023,1.00000000 1316,73.3561,217.8091,32.0617,69.2894,1.00000000 1316,539.6373,226.2606,22.6716,53.2746,1.00000000 1316,293.6708,218.4560,60.5468,144.7161,0.99999988 1316,503.4219,217.6787,22.3084,53.5761,0.99999976 1316,489.0652,216.1817,22.0652,51.9868,0.99999934 1316,559.9776,222.4675,22.0051,56.4286,0.99999917 1316,34.9490,219.7843,27.6738,57.0094,0.99999881 1316,474.9782,214.3431,21.2770,51.1394,0.99996763 1316,383.0644,219.0320,26.0920,55.6683,0.99996728 1316,355.6256,225.0829,28.3862,69.3101,0.99990612 1316,585.7117,221.4306,31.5110,81.1919,0.99974436 1316,9.3214,219.5770,26.2399,53.4701,0.06149539 1316,604.3317,223.6938,31.7457,79.4268,0.00070179 1317,466.4509,242.5091,55.7370,123.7853,1.00000000 1317,78.4081,221.5639,66.2669,148.2349,1.00000000 1317,155.2284,215.4306,34.3819,78.7921,1.00000000 1317,196.8198,206.2475,60.8881,144.3116,0.99999994 1317,43.1188,212.5942,36.8147,74.5625,0.99999893 1317,436.6035,220.4147,22.8775,51.0503,0.99999726 1317,117.6811,208.3747,40.2582,92.3751,0.99998528 1317,305.0038,222.0054,32.2182,65.3586,0.99998486 1317,412.1302,219.2952,21.8070,50.4097,0.99998444 1317,567.5704,216.0208,27.7379,69.9590,0.99997795 1317,19.7326,215.6880,29.7654,60.5001,0.99961382 1317,485.0330,213.1122,25.0136,65.1430,0.99954259 1317,510.5832,214.3284,22.7591,53.5570,0.99896401 1317,545.8887,215.9807,28.6466,73.4391,0.99844211 1317,600.3219,224.4745,27.3102,70.5393,0.46986705 1317,325.5427,221.8153,31.9954,65.5672,0.19303779 1317,526.0615,228.1800,54.4777,118.9596,0.15515509 1317,73.9994,203.6990,44.7485,92.9565,0.00027890 1318,204.1135,225.0131,71.3578,149.8385,1.00000000 1318,559.2015,224.2723,26.0477,64.8887,1.00000000 1318,355.8624,221.1840,23.5633,55.8515,0.99999994 1318,582.1902,219.0074,28.3845,71.8786,0.99999994 1318,378.0708,221.9939,23.3393,50.8523,0.99999994 1318,436.0945,217.9016,25.5577,53.7906,0.99999821 1318,120.8665,236.8846,54.2439,124.1708,0.99999702 1318,74.8990,217.9212,30.8865,73.9797,0.99999148 1318,509.1514,217.5141,22.2785,52.8264,0.99999064 1318,16.8211,213.3907,36.0887,68.8277,0.99993938 1318,480.4202,215.5493,21.1573,51.0759,0.99992055 1318,139.1530,216.0640,35.8599,82.2278,0.99986649 1318,106.7735,220.7228,33.8263,77.9566,0.99977744 1318,539.9338,214.5405,21.8868,49.3616,0.99780196 1318,54.4032,211.2956,33.5400,73.9970,0.98912573 1318,496.8698,214.2867,20.6512,51.8719,0.18280673 1318,613.1148,221.9835,26.6653,67.8421,0.00104419 1319,348.6611,225.3298,63.0496,148.3053,1.00000000 1319,13.4364,208.4048,61.1087,145.7336,1.00000000 1319,128.9388,222.0314,26.2446,63.0753,0.99999994 1319,578.3894,221.4106,28.0405,67.6272,0.99999994 1319,284.1238,214.7831,26.0510,56.5615,0.99999917 1319,507.8483,216.5861,20.9265,51.0403,0.99999845 1319,101.9130,221.1566,25.2539,59.7901,0.99999762 1319,597.0582,218.7639,27.0106,67.7202,0.99999684 1319,236.0807,224.6498,22.7848,54.4448,0.99999171 1319,472.8069,217.0371,22.4775,53.1070,0.99865913 1319,301.1446,213.9758,27.0499,53.4844,0.99601376 1319,52.3356,213.8321,35.2392,79.1198,0.97863865 1319,487.8317,217.5898,20.0481,51.6338,0.88760477 1319,82.4452,217.0730,27.3596,60.2087,0.00372914 1320,471.7644,227.1409,63.8331,148.8677,1.00000000 1320,108.2689,222.0676,26.5291,59.4898,1.00000000 1320,393.5402,219.0738,24.2712,55.1561,1.00000000 1320,83.4190,217.1879,26.0004,63.1910,0.99999946 1320,60.3848,213.1913,27.7427,59.7854,0.99994439 1320,23.5816,214.5670,33.7564,65.7628,0.99985844 1320,242.0577,215.7975,23.7741,55.7205,0.99801904 1320,208.8411,219.4296,25.1591,56.1903,0.99298906 1320,601.5289,235.1217,24.8449,52.0631,0.97721010 1320,474.1451,213.4459,24.1318,56.5655,0.96960127 1320,5.8986,215.3805,33.7975,82.6558,0.96421134 1320,226.2935,220.8427,22.7433,55.3311,0.07215907 1320,497.2599,211.1910,28.9340,63.9884,0.00952243 1321,526.7169,214.8826,23.8815,56.9551,1.00000000 1321,85.9979,217.1124,29.3378,63.8591,0.99999994 1321,167.2760,217.7663,22.8958,53.8819,0.99999964 1321,58.1183,216.9570,29.2077,62.2177,0.99999666 1321,404.9128,215.3830,23.8362,55.7689,0.99998933 1321,181.5274,217.7769,24.4723,57.0090,0.99992317 1321,478.7353,214.4807,22.3851,53.3324,0.99980366 1321,4.4987,216.4375,30.1698,61.4159,0.99958277 1321,503.0619,214.2753,22.5632,56.8572,0.97399640 1321,464.3042,213.5441,20.9942,51.6411,0.00067004 1321,31.9776,211.3626,33.5545,64.6635,0.00025270 1321,603.5977,231.5497,36.5490,73.8669,0.00002174 1322,552.0556,219.1765,24.2222,53.0001,1.00000000 1322,69.2467,215.1553,28.0557,65.4452,0.99999988 1322,418.2888,217.9153,20.9347,48.5081,0.99999952 1322,127.8913,220.5568,21.9062,49.0764,0.99997109 1322,47.7508,218.9021,26.9807,59.8329,0.99977732 1322,480.4647,213.2075,22.6699,53.0207,0.99901628 1322,518.2725,221.2843,21.7792,52.3027,0.99496192 1322,154.2490,221.8435,22.6449,51.3114,0.99445897 1322,26.0988,215.1329,28.6112,59.7738,0.99358130 1322,505.9832,214.8238,21.1895,53.6697,0.28090042 1322,140.1730,221.2610,21.1792,50.2115,0.16057070 1322,1.9985,217.2794,30.5103,60.2214,0.10151155 1322,611.8670,228.8894,27.2022,69.7141,0.00004810 1323,516.5551,216.4046,23.6876,57.3549,0.99999475 1323,32.0671,210.9748,28.9944,64.5474,0.99999207 1323,427.6916,219.1414,20.5986,49.6430,0.99998689 1323,478.8259,208.8295,23.5977,57.3376,0.99998522 1323,55.5826,208.5805,30.5393,69.3673,0.99996632 1323,583.9434,216.7361,22.8346,53.4296,0.99991757 1323,136.4982,215.9990,26.6549,59.3709,0.99887180 1323,463.9800,208.5544,23.2830,57.3893,0.68949705 1323,90.8676,209.9038,29.7166,60.8982,0.38958830 1323,12.7035,212.3228,29.6596,61.5177,0.00343747 1323,616.6925,221.5407,23.4542,62.1813,0.00000000 1324,434.1281,218.2942,21.1650,49.6438,0.99999994 1324,525.1736,217.0586,24.9551,59.8632,0.99999839 1324,69.5277,212.5695,25.4637,58.3449,0.99999475 1324,27.6731,216.0160,25.8315,57.5963,0.99991447 1324,42.8191,214.0312,25.1008,59.7279,0.99991107 1324,587.2502,212.1462,23.3657,54.3790,0.91924691 1324,470.8660,207.4392,20.7388,52.0596,0.90112227 1324,114.6890,216.8888,24.7980,56.0281,0.85238713 1324,57.7236,216.5291,22.1912,56.4790,0.77171850 1324,456.0383,210.5645,20.7524,46.4559,0.35564232 1324,607.8997,220.2921,24.9813,55.4960,0.32031378 1324,484.2766,206.0868,22.1231,52.9387,0.05510818 1324,10.2032,214.0872,29.3900,54.9175,0.00242779 1324,367.6552,220.1649,21.3534,45.0788,0.00004321 1325,542.1116,216.7024,26.2145,67.2647,0.99999946 1325,568.9739,217.6671,22.7813,54.6635,0.99999905 1325,21.7704,216.3919,25.4910,54.1362,0.99990922 1325,484.0156,209.6781,22.2306,53.3468,0.99974132 1325,77.9309,217.3118,25.7817,57.4568,0.99932754 1325,43.4673,216.2453,24.6794,54.7212,0.99876165 1325,2.3908,215.9547,30.3160,57.7150,0.99121124 1325,592.9872,213.7630,21.3487,51.4835,0.52216440 1325,466.9730,211.4759,20.1081,50.9101,0.51092494 1325,449.8593,214.9234,20.5968,49.4878,0.33749828 1325,93.4310,220.2323,25.6338,55.1691,0.00011925 1326,552.1340,216.2049,30.4531,74.1222,0.99999285 1326,461.9772,213.8837,19.1977,47.0493,0.99999201 1326,9.7115,213.6635,25.4349,54.5854,0.99944663 1326,29.8833,212.8095,24.9293,57.4063,0.99893391 1326,450.3785,213.4897,19.6069,46.7360,0.99287891 1326,598.8557,213.2839,21.1329,51.9542,0.86694223 1326,474.4690,209.5296,20.0176,50.0563,0.75095272 1326,492.4601,208.3765,22.3523,51.8357,0.66495389 1326,57.9590,213.2757,32.7848,61.3164,0.60248435 1327,532.9316,216.6094,22.8005,54.0881,1.00000000 1327,566.3785,218.1370,22.4643,60.2017,0.99999958 1327,15.9882,213.4847,23.4115,54.4371,0.99782372 1327,494.9332,210.4032,21.1294,51.1604,0.96654612 1327,36.6732,213.5699,23.7295,55.6459,0.94574684 1327,467.3585,213.7243,20.0283,48.1386,0.89226419 1327,580.2920,217.2760,26.3479,62.6474,0.18858935 1327,50.4324,213.7986,24.1593,54.4413,0.00116534 1327,483.1794,213.0192,20.6387,51.8997,0.00000023 1328,518.4615,214.3212,23.6626,52.9695,1.00000000 1328,580.3764,217.5160,26.9783,69.3895,0.99999857 1328,469.9026,211.8369,20.8920,50.2735,0.97719264 1328,599.4424,218.6066,26.9025,68.9495,0.96103442 1328,11.6132,206.1748,30.3525,68.0879,0.75939262 1328,501.8347,209.9927,19.8933,49.3680,0.02652255 1328,489.7461,209.9998,19.9864,50.2647,0.00013108 1328,28.8912,219.2883,25.8251,60.1921,0.00001941 1329,596.8960,222.1132,27.5522,69.7445,1.00000000 1329,476.2007,215.1027,20.9883,50.6194,0.99961245 1329,507.3737,212.0753,23.2501,51.8680,0.99708509 1329,42.9856,207.2108,22.5519,50.9816,0.90322608 1329,8.6610,210.5684,29.0875,61.1207,0.78620452 1329,29.2628,209.4368,24.1281,52.2854,0.08328403 1329,614.8735,223.9864,25.2732,62.0944,0.00318621 1329,78.1655,205.0231,22.7946,49.6831,0.00002748 1330,483.2086,219.7285,22.0525,51.0990,0.99999940 1330,12.0171,210.8807,22.9191,50.1308,0.99117666 1330,41.7815,210.8511,22.5226,50.8527,0.97754085 1330,501.7250,216.4264,20.8649,50.6190,0.87184393 1330,72.4422,212.4800,22.4470,48.6371,0.00472264 1330,597.4273,220.5007,21.5664,48.5000,0.00198263 1330,615.5004,227.4618,24.6463,65.8216,0.00078940 1330,31.6266,217.7981,21.6038,52.5574,0.00000586 1331,516.5132,219.6720,23.2529,52.0800,0.99999863 1331,529.4180,219.3779,24.1355,54.0997,0.99800837 1331,69.3743,213.2321,23.4536,52.6008,0.54197174 1331,502.6760,214.9060,23.6424,52.3871,0.20584886 1331,1.0000,213.6862,16.8602,53.2427,0.11595110 1331,31.8250,208.1174,20.5073,48.7411,0.01204943 1331,20.9860,214.2419,20.6623,50.1200,0.00004985 1331,49.4928,201.2683,26.4828,52.8695,0.00000039 1332,557.6025,229.5417,24.6865,56.3199,1.00000000 1332,518.6190,215.2411,27.0484,55.1179,0.99998963 1332,34.2231,215.0299,32.5599,67.6123,0.99891561 1332,571.3983,230.0672,27.2973,57.4052,0.03117733 1332,14.4957,212.2451,30.7726,64.7738,0.02403523 1332,431.4700,205.2652,20.4042,53.3322,0.00000001 1333,585.2960,231.5259,24.0824,59.0821,1.00000000 1333,606.0314,222.9235,26.1085,66.5774,0.99999976 1333,532.5325,213.2185,26.2299,58.0237,0.99999660 1333,515.9417,211.7829,23.1504,52.5617,0.99990189 1333,503.3580,213.7167,21.6335,55.5888,0.00000002 1334,562.5338,205.1024,33.3198,69.5044,0.99999988 1334,543.0683,210.9310,23.5043,54.4883,0.99999422 1334,437.9588,208.9179,30.0811,67.2575,0.24822041 1334,531.0004,216.4969,22.1707,50.7147,0.00000557 1334,560.0183,60.6752,34.8027,80.5975,0.00000001 1334,503.0206,222.7206,23.9767,55.3096,0.00000000 1334,517.1783,218.5819,23.3454,51.4812,0.00000000 1335,478.6943,222.2446,34.9779,70.7235,0.99953532 1335,450.0998,205.5350,21.2299,48.3157,0.99555624 1335,556.4501,82.1034,30.0589,64.3789,0.04161488 1335,468.3549,206.3663,21.4635,46.7793,0.03744467 1335,424.8912,201.2324,23.0667,53.1406,0.00002306 1335,613.7018,203.5095,26.4449,88.6627,0.00000000 1335,595.4021,233.3319,28.0825,55.8135,0.00000000 1335,603.5388,34.6380,32.8651,81.0653,0.00000000 1336,546.1406,206.6229,27.8353,66.9796,1.00000000 1336,526.8986,207.0150,25.1242,55.9314,0.99996203 1336,573.0310,230.5065,43.2798,102.9005,0.13288452 1336,508.7676,205.9334,27.0470,49.0978,0.00015606 1336,629.4408,481.7508,10.7059,30.3959,0.00000000 1337,609.6483,205.7800,30.2162,73.5443,0.99989903 1337,505.9095,201.0445,24.1855,56.7648,0.01048594 1337,520.2479,203.8629,25.5349,60.4622,0.00000448 1337,48.1799,198.0567,26.8195,66.2063,0.00000019 1337,503.1462,182.8899,48.9765,117.5232,0.00000000 1337,631.4869,211.2959,8.6598,65.0609,0.00000000 1338,593.9487,196.9906,31.4333,78.3854,0.99999988 1338,53.3575,183.8934,31.7665,69.6664,0.79515183 1338,8.9324,192.8717,27.6563,60.8088,0.01975195 1338,523.0528,203.4843,22.3140,58.3116,0.00024377 1338,21.5255,180.3741,37.4179,71.6912,0.00000011 1338,619.1901,206.8022,20.9566,72.3144,0.00000002 1339,579.3771,201.3942,28.2541,63.3472,0.99959922 1339,537.1049,198.0151,22.0097,56.7566,0.00000531 1339,7.4297,176.9430,28.7469,61.7970,0.00000013 1339,594.4611,216.3600,23.9447,56.6420,0.00000000 1339,275.3791,207.9328,25.6326,52.5663,0.00000000 1339,579.1836,174.1534,52.6751,137.9587,0.00000000 1339,632.1807,215.4984,7.9660,82.8984,0.00000000 1339,628.9588,305.0092,11.1879,82.7051,0.00000000 1339,635.1898,487.6531,4.9569,24.4936,0.00000000 1339,627.7733,458.5937,12.3734,53.5530,0.00000000 1340,589.6753,203.6047,22.8984,58.4546,0.99300551 1340,445.6354,211.1120,22.0758,46.9099,0.06181444 1340,456.6979,218.1442,26.8465,53.8699,0.00000001 1340,578.7222,181.2658,48.7718,94.9114,0.00000000 1340,269.0927,206.5341,26.2886,58.1632,0.00000000 1340,550.8702,111.5386,89.2765,218.7018,0.00000000 1340,636.2728,245.1769,3.8739,64.3792,0.00000000 1340,437.4850,190.8657,55.4476,137.5284,0.00000000 1340,635.5696,488.3303,4.5771,23.8164,0.00000000 1340,628.1062,460.6327,12.0405,51.5140,0.00000000 1341,478.6894,208.7003,23.9453,59.9479,0.99998540 1341,462.7547,208.2141,24.1841,56.9245,0.00000190 1341,436.1979,208.5876,22.5769,50.8990,0.00000037 1341,525.6388,238.0698,29.6794,74.0212,0.00000001 1341,489.8907,214.8384,29.9572,59.1369,0.00000001 1341,505.3923,211.9327,29.4753,53.9572,0.00000000 1341,465.3197,180.9944,49.8262,103.0977,0.00000000 1341,514.2601,198.2362,59.9337,147.8810,0.00000000 1341,1.0000,79.9550,60.7961,264.4641,0.00000000 1341,631.3690,486.2013,8.7777,25.9454,0.00000000 1342,506.6509,211.2814,27.4135,67.3675,1.00000000 1342,114.6944,208.3626,23.7779,53.4441,0.99800974 1342,490.7684,215.7394,23.8231,57.8827,0.00005596 1342,528.5599,221.7292,23.5379,57.5502,0.00002342 1342,542.1107,228.6235,21.2923,51.8125,0.00000358 1342,97.3069,209.7314,24.6480,53.9822,0.00000007 1342,249.4972,215.9359,34.9437,61.8981,0.00000000 1343,543.0637,212.1328,29.5187,77.7355,1.00000000 1343,78.8848,215.5934,25.7271,56.7171,0.99979818 1343,120.6657,212.7541,21.1548,51.1815,0.98534203 1343,96.8907,214.6823,24.2285,57.1012,0.98322988 1343,573.9561,218.8218,25.3983,65.6016,0.81396580 1343,519.0620,210.3922,21.5413,55.0183,0.00000947 1343,613.8911,229.4700,26.2556,62.2145,0.00000024 1343,593.9632,230.4404,28.1934,57.1449,0.00000000 1344,576.9909,213.7053,28.2671,80.3904,0.99999988 1344,110.7119,213.2043,26.6384,60.8789,0.99999863 1344,596.8145,211.3917,32.6379,88.8361,0.99999833 1344,139.2999,215.6521,22.0052,51.3370,0.99999541 1344,546.6965,205.7077,23.6181,65.4527,0.99995267 1344,616.8294,216.6948,23.3173,79.0807,0.00000604 1344,41.6711,230.7810,29.2449,58.2241,0.00000018 1344,495.2174,206.2068,22.3049,51.2101,0.00000006 1345,137.4854,214.2476,24.3798,61.3857,0.99999994 1345,159.7545,212.3195,27.3846,64.6218,0.99999839 1345,582.0378,205.0709,23.8902,64.5966,0.96833235 1345,611.6680,219.8625,28.4787,96.4500,0.00000283 1345,51.2976,199.6335,31.4036,56.0951,0.00000013 1345,632.3301,226.8581,7.8166,76.1241,0.00000000 1346,397.0177,209.5095,26.6696,68.0258,1.00000000 1346,161.5919,214.0120,28.9502,68.9541,0.99992716 1346,609.6202,207.6917,24.6255,63.8615,0.80484807 1346,181.4750,215.6618,35.3484,68.8969,0.50674093 1346,35.9040,213.4241,33.5517,65.4016,0.08756598 1346,624.8635,208.6689,15.2832,83.7343,0.00000000 1347,380.2994,212.0643,26.4257,65.9798,1.00000000 1347,56.1249,216.7224,33.4858,74.9776,1.00000000 1347,186.2379,217.4985,30.6169,74.6435,0.99999988 1347,214.0957,219.8814,28.0916,68.3254,0.96850896 1347,91.5665,186.6827,25.5245,56.7680,0.32803172 1347,22.4580,219.4586,32.6934,57.7602,0.20196711 1347,578.5297,195.6876,33.1692,76.6785,0.00001387 1348,200.7475,219.3090,27.6206,69.4529,1.00000000 1348,365.0130,212.4986,31.5264,71.3608,1.00000000 1348,81.9554,218.2079,36.1983,75.2311,1.00000000 1348,44.4280,218.1653,27.4023,62.9879,0.99999297 1348,228.2269,221.9622,32.6771,71.9285,0.99999261 1348,28.5224,217.6831,26.7756,50.5474,0.00000014 1348,563.0797,211.1185,21.7843,50.6838,0.00000005 1348,22.9162,101.9401,25.3709,54.7126,0.00000000 1349,107.8191,219.3151,40.8864,80.9847,1.00000000 1349,66.4027,217.0791,32.7725,73.8296,1.00000000 1349,5.4102,222.7155,33.9490,80.1968,0.99999946 1349,231.8316,224.0012,29.7631,68.8937,0.28676900 1349,582.6561,216.1178,21.9440,50.1999,0.00064848 1349,351.1772,209.5420,31.9059,69.9706,0.00001168 1349,84.7019,216.3312,37.9602,77.0093,0.00000025 1350,151.3893,217.1500,42.9661,91.1553,1.00000000 1350,8.4186,218.2461,38.5045,96.3328,1.00000000 1350,386.0692,223.7789,38.4996,92.2422,1.00000000 1350,99.8826,219.1902,33.9871,75.5239,1.00000000 1350,33.6171,229.5611,36.2582,80.7147,0.99958998 1350,588.8981,208.6758,22.8311,49.8893,0.00001375 1351,42.1998,220.1108,43.5327,102.8948,1.00000000 1351,449.2852,223.0784,51.1293,107.8326,1.00000000 1351,147.4855,222.9575,34.8457,76.0517,1.00000000 1351,201.9083,220.0807,35.3125,86.3412,0.99999982 1351,68.1309,221.2862,46.3544,96.6247,0.81864512 1351,602.7857,206.8399,21.9399,54.7237,0.00013055 1351,286.1021,216.3699,25.3057,64.8525,0.00000000 1352,210.5229,206.7787,47.0028,117.0870,1.00000000 1352,113.1534,214.5909,45.3561,110.0212,0.99999982 1352,374.0547,219.9257,30.7820,68.8779,0.99918908 1352,608.0325,211.9899,22.7418,56.2049,0.00000404 1352,573.2484,211.6389,26.5568,59.6565,0.00000000 1352,590.5468,216.9089,24.4902,57.1113,0.00000000 1352,270.3272,219.8518,25.5582,57.5341,0.00000000 1353,410.5746,218.4060,30.6923,76.5298,1.00000000 1353,200.3284,220.8150,41.6101,100.6702,0.99999940 1353,141.0284,207.5016,46.1952,107.0212,0.99999869 1353,179.4888,219.6288,36.2402,100.8840,0.39632082 1353,561.3248,212.5832,24.3692,60.2269,0.00000001 1353,603.4173,217.5260,23.9224,55.9739,0.00000000 1353,576.3143,217.7234,23.4494,58.1536,0.00000000 1353,588.8867,210.4428,24.9938,61.0804,0.00000000 1353,144.2584,182.3956,85.2785,201.0593,0.00000000 1354,443.5834,219.5736,30.0051,72.4201,1.00000000 1354,58.6208,207.3728,51.8803,135.3659,0.99999994 1354,388.1715,219.3997,39.2797,88.7301,0.99998987 1354,537.9376,217.2022,28.9269,66.9172,0.99667138 1354,574.7016,209.3371,24.2488,61.2580,0.00000000 1354,588.3254,205.9061,26.9724,63.8571,0.00000000 1355,483.3676,216.8691,31.9425,80.1991,1.00000000 1355,414.8345,226.4166,31.4547,81.0671,0.99999994 1355,435.3770,226.2684,33.1264,81.0142,0.99999917 1355,1.0000,221.6799,45.3183,113.8149,0.99999702 1355,598.6013,216.6399,23.4837,58.7487,0.00000000 1356,486.5896,220.9666,39.9713,96.5883,1.00000000 1356,417.2120,225.5122,37.8998,84.1688,0.99999982 1356,522.2218,220.6062,30.7534,70.4713,0.99999279 1356,403.5960,220.6056,29.8088,78.2050,0.99875128 1356,376.9315,226.0148,34.1360,79.3004,0.09934259 1356,590.5981,215.6809,22.3145,50.4803,0.00000004 1356,603.1219,215.3632,23.2750,55.9323,0.00000000 1357,468.1081,227.6706,36.9467,84.1500,1.00000000 1357,435.9225,221.0740,38.4123,105.8307,0.99999982 1357,410.6442,217.1662,42.5989,107.0963,0.99999982 1357,556.9733,230.1053,27.8805,63.0776,0.02421115 1357,603.9022,210.6392,22.4293,51.8774,0.00030204 1357,591.2548,213.1770,22.6435,50.4782,0.00000001 1358,533.3958,232.8812,35.2600,83.6232,1.00000000 1358,238.4291,217.4842,38.6154,94.3705,0.99999952 1358,481.8018,216.2188,45.8646,111.5433,0.99999893 1358,461.8389,223.1500,38.6521,96.5633,0.99981827 1358,489.3061,207.7780,24.2259,60.2625,0.00062835 1358,598.2859,217.2716,23.3078,56.5181,0.00000608 1358,458.1887,149.0507,87.5605,218.2091,0.00000000 1359,539.7041,223.2279,44.8218,113.3219,1.00000000 1359,95.1412,211.3324,47.8878,121.0690,0.99999863 1359,567.9471,239.9515,34.6277,92.8698,0.00000014 1359,498.3713,209.9828,22.6068,53.4156,0.00000003 1359,610.0881,217.8531,21.8294,55.8700,0.00000001 1359,631.9573,216.4379,8.1894,81.6805,0.00000000 1360,264.7111,209.2797,24.8778,49.4720,0.99999493 1360,509.6436,210.5116,22.3327,54.7758,0.00000292 1360,474.7681,234.3223,61.5577,146.7301,0.00000269 1360,504.3068,302.8298,29.6511,60.9608,0.00000000 1360,628.9658,306.0038,11.1809,82.7415,0.00000000 1360,631.2609,486.2275,8.8858,25.9192,0.00000000 1361,258.6325,206.5340,25.0765,53.2878,0.99999976 1361,486.4965,212.4777,41.0321,84.7610,0.00001974 1361,522.6669,209.9718,24.5378,55.6186,0.00000000 1361,246.8541,179.1789,51.8611,96.7282,0.00000000 1361,636.1898,494.2888,3.9569,17.8579,0.00000000 1361,219.2351,111.4911,101.6381,215.3616,0.00000000 1361,629.5570,481.7615,10.5897,30.3852,0.00000000 1362,257.9719,209.9679,24.9961,54.2665,1.00000000 1362,535.2406,204.7935,24.2059,61.2678,0.00336003 1362,430.6062,197.5128,25.8981,65.8113,0.00000020 1362,550.7724,213.2818,25.5932,56.4583,0.00000000 1362,247.5754,192.1671,51.2077,90.8044,0.00000000 1362,494.8756,129.3156,96.9167,219.1413,0.00000000 1362,635.1804,486.9352,4.9663,25.2115,0.00000000 1362,627.5191,457.9345,12.6276,54.2122,0.00000000 1363,253.5319,215.2629,27.6190,61.2732,1.00000000 1363,433.1064,198.7990,22.7936,51.1921,0.00039152 1363,563.6909,214.2556,23.8165,58.8269,0.00000061 1363,541.3022,212.4604,22.8676,54.8692,0.00000002 1363,1.0000,295.4137,55.2083,216.7330,0.00000000 1363,635.3360,487.3291,4.8107,24.8176,0.00000000 1363,214.0732,134.7051,94.6309,207.8655,0.00000000 1363,627.7619,459.9702,12.3848,52.1765,0.00000000 1364,251.2465,221.9895,25.0735,61.1624,0.99999994 1364,564.6740,214.6482,24.0928,58.1436,0.00006724 1364,551.7535,216.4626,22.7422,54.2444,0.00000000 1364,497.9864,216.1287,26.1910,61.6814,0.00000000 1364,431.9992,202.3160,23.5563,53.5481,0.00000000 1364,579.6785,216.8848,24.6032,54.7120,0.00000000 1364,237.8969,220.0328,24.3805,57.6786,0.00000000 1364,631.2606,486.2657,8.8861,25.8810,0.00000000 1364,211.4373,134.9068,97.3279,213.4082,0.00000000 1365,244.0999,218.1592,26.7921,65.2069,0.99999970 1365,570.4800,212.6408,23.0462,54.1450,0.11575699 1365,433.7020,200.6453,22.1391,51.4412,0.00000002 1365,506.7324,215.3191,32.8049,77.5640,0.00000000 1365,577.2704,216.3768,32.4034,75.4441,0.00000000 1365,213.4123,121.6418,97.4074,213.3984,0.00000000 1365,631.0122,486.9655,9.1345,25.1812,0.00000000 1366,523.4694,206.9703,23.4019,56.4923,0.00000001 1366,562.1813,209.8502,22.5007,52.6825,0.00000000 1366,542.6222,206.9641,23.4576,55.5591,0.00000000 1366,432.7187,195.2310,23.3035,52.9170,0.00000000 1366,635.1262,216.8297,5.0205,79.0880,0.00000000 1366,634.0970,176.9470,6.0497,75.2395,0.00000000 1366,629.0175,1.0000,11.1292,49.4473,0.00000000 1366,636.1436,494.2924,4.0031,17.8543,0.00000000 1366,629.5369,482.1461,10.6098,30.0006,0.00000000 1367,233.6638,212.0859,31.7791,72.8578,0.99999982 1367,77.2146,201.1683,25.8107,53.5062,0.00000000 1367,609.5591,207.6772,22.9134,56.6759,0.00000000 1367,431.9267,194.7002,22.5507,49.3845,0.00000000 1367,623.1215,205.4671,17.0252,53.6628,0.00000000 1367,595.9388,167.9962,44.2079,260.9209,0.00000000 1367,632.9452,174.5181,7.2015,74.6568,0.00000000 1367,634.4799,216.4989,5.6668,64.0323,0.00000000 1367,635.1379,487.9619,5.0088,24.1848,0.00000000 1368,230.9584,220.7349,31.9897,62.7825,0.99999970 1368,562.8741,209.9978,23.7118,55.9343,0.00000000 1368,428.8673,198.5441,21.7338,49.6133,0.00000000 1368,198.0958,145.9850,92.2504,208.5622,0.00000000 1368,633.3310,285.0249,6.8157,77.4321,0.00000000 1368,634.6982,135.8597,5.4485,78.7195,0.00000000 1368,629.3947,1.0000,10.7520,48.9787,0.00000000 1368,636.1729,494.1719,3.9738,17.9748,0.00000000 1368,629.4671,481.9095,10.6796,30.2372,0.00000000 1369,229.5769,216.9129,29.4216,58.0748,0.99992549 1369,591.3077,209.1406,21.5818,53.4513,0.00000126 1369,534.4899,210.4899,25.4126,53.9071,0.00000058 1369,456.1523,189.1172,22.5786,53.4753,0.00000000 1369,222.7386,192.4284,50.8970,118.8489,0.00000000 1369,338.9465,209.0834,84.6248,247.6443,0.00000000 1369,633.4230,211.7323,6.7237,77.0220,0.00000000 1369,636.0985,493.6597,4.0482,18.4870,0.00000000 1369,629.4313,481.3698,10.7154,30.7769,0.00000000 1370,222.0910,209.7213,35.0139,74.9206,1.00000000 1370,530.8575,206.0969,23.0748,54.4934,0.00008316 1370,624.2828,204.3233,15.8639,58.3551,0.00000000 1370,545.7264,208.0465,24.8998,54.4653,0.00000000 1370,635.5417,188.1756,4.6050,61.4971,0.00000000 1370,637.9578,216.9577,2.1889,67.6759,0.00000000 1370,198.9145,120.5143,90.3210,210.5549,0.00000000 1370,635.3187,488.0134,4.8280,24.1333,0.00000000 1370,627.8747,461.0203,12.2720,51.1264,0.00000000 1371,222.2745,211.1088,34.2706,76.0475,1.00000000 1371,531.2892,210.6637,23.1852,53.2383,0.00145410 1371,30.1172,206.7281,26.5346,53.2202,0.00018034 1371,549.6254,205.9473,22.6746,47.5300,0.00000007 1371,635.0303,487.8850,5.1164,24.2617,0.00000000 1371,627.2824,459.8906,12.8643,52.2561,0.00000000 1372,216.7827,215.5285,36.0598,70.4315,1.00000000 1372,15.9320,209.0600,23.7877,54.4636,0.99696523 1372,522.2883,210.0824,26.1556,58.6366,0.01072285 1372,33.8752,208.4075,23.3775,51.4880,0.00911902 1372,541.9160,205.0699,23.0014,49.6725,0.00000009 1372,629.2341,481.4745,10.9126,30.6722,0.00000000 1373,11.7741,207.9665,25.9002,55.9891,0.99959284 1373,1.0000,208.5652,19.7985,61.1376,0.00000001 1373,529.4736,207.9471,21.8597,53.8570,0.00000000 1373,26.9079,200.8008,26.1739,55.1527,0.00000000 1373,628.4041,1.0000,11.7426,51.2651,0.00000000 1373,210.1498,174.8429,86.8642,265.4688,0.00000000 1373,1.0000,105.8035,76.2004,207.7627,0.00000000 1373,634.0828,239.5358,6.0639,76.5032,0.00000000 1373,635.9060,494.0757,4.2407,18.0710,0.00000000 1373,629.2567,481.7188,10.8900,30.4279,0.00000000 1374,208.0549,210.9523,35.4245,77.5418,1.00000000 1374,523.6027,211.4396,22.8911,57.7770,0.00000019 1374,183.6359,99.4106,94.0128,235.2882,0.00000000 1374,636.0078,494.1743,4.1389,17.9724,0.00000000 1374,629.4224,482.2284,10.7243,29.9183,0.00000000 1375,208.4001,214.2316,30.2924,61.2050,0.99711907 1375,636.0234,494.3546,4.1233,17.7921,0.00000000 1375,629.3326,482.3733,10.8141,29.7734,0.00000000 1376,211.9785,216.2289,35.7627,78.5950,1.00000000 1376,104.1932,205.9537,21.0384,52.3414,0.00000000 1376,628.0502,1.0000,12.0965,50.9754,0.00000000 1376,636.0812,494.3105,4.0655,17.8362,0.00000000 1376,629.4156,482.4044,10.7311,29.7423,0.00000000 1377,233.4294,216.3635,30.4346,75.5040,1.00000000 1377,201.8612,126.8245,90.5692,214.6685,0.00000000 1377,635.9744,494.4508,4.1723,17.6959,0.00000000 1377,629.4798,482.7352,10.6669,29.4115,0.00000000 1378,71.5903,216.1216,27.1237,59.1732,0.99994361 1378,90.8553,212.9742,28.8562,59.8586,0.97267342 1378,550.0533,202.5194,21.6905,53.1338,0.00000000 1378,604.2139,197.1058,26.7202,52.5984,0.00000000 1378,560.6390,207.5715,23.6608,55.3211,0.00000000 1378,631.6740,181.6720,8.4727,75.2411,0.00000000 1378,638.0886,193.5419,2.0581,62.0341,0.00000000 1378,629.3748,481.3994,10.7719,30.7473,0.00000000 1379,365.9857,227.3406,36.7051,76.8783,1.00000000 1379,195.7631,218.2619,28.5458,62.5008,0.99999988 1379,212.4842,211.4785,24.9109,58.8813,0.00004833 1379,340.5120,212.7483,21.5161,53.1648,0.00000000 1379,629.4935,482.4150,10.6532,29.7317,0.00000000 1380,295.7243,45.8596,87.5272,268.9653,0.00000000 1380,77.6512,67.7756,91.3961,278.5309,0.00000000 1380,635.9724,494.0976,4.1743,18.0491,0.00000000 1380,629.4562,482.6235,10.6905,29.5232,0.00000000 1381,506.5327,215.2641,26.7884,65.8742,1.00000000 1381,526.1193,211.6703,26.7145,66.1512,0.99999946 1381,1.0000,222.5145,29.0627,82.9680,0.00000000 1381,470.5175,38.9024,90.7034,275.4690,0.00000000 1381,417.8676,42.7095,88.9853,279.6821,0.00000000 1381,514.6569,185.9167,52.9227,118.2347,0.00000000 1381,244.3477,50.8741,86.8312,265.9348,0.00000000 1381,629.5156,481.9105,10.6311,30.2362,0.00000000 1382,158.6631,220.4004,44.9447,113.3342,0.99981147 1382,47.4720,258.3508,28.9368,62.4530,0.00106473 1382,181.6563,236.7428,49.9119,114.1009,0.00000000 1382,142.1474,217.6431,90.6104,212.4793,0.00000000 1382,595.1351,1.0000,45.0116,229.5625,0.00000000 1382,439.5930,81.5144,87.1486,273.3862,0.00000000 1382,622.3687,5.4413,17.7780,140.4909,0.00000000 1382,388.0969,84.9928,93.0898,265.6314,0.00000000 1382,629.3911,481.7751,10.7556,30.3716,0.00000000 1383,434.7776,232.5434,45.1943,122.6294,0.99999905 1383,21.1421,210.0439,25.5402,57.2054,0.79877710 1383,36.2740,212.8749,24.4356,51.3348,0.74189311 1383,234.2703,213.2648,33.4668,73.8842,0.63163412 1383,58.4294,219.6926,26.8570,56.2305,0.01626714 1383,212.9767,201.4105,37.6938,80.1748,0.00002516 1383,255.2280,30.3680,85.6862,273.2003,0.00000000 1384,516.2478,201.1063,41.1533,105.3406,0.99999923 1384,279.2104,209.1415,25.3197,58.3244,0.02649648 1384,341.9013,212.4446,28.2861,70.2154,0.00010244 1384,442.4539,38.8391,70.2074,178.3368,0.00000000 1384,274.6321,177.3331,49.2534,108.2039,0.00000000 1384,521.9257,31.3130,84.1185,267.7645,0.00000000 1385,434.1132,215.7250,25.1717,57.7110,0.99999994 1385,392.0874,218.9235,25.9556,58.0940,0.99998480 1385,449.0556,217.6064,26.1178,57.1121,0.00135739 1385,555.8964,222.0654,23.1696,61.1839,0.00000549 1385,411.4675,220.7822,25.0708,57.0187,0.00000000 1385,426.5264,187.8801,46.9244,107.6068,0.00000000 1386,452.3739,211.6259,27.1968,71.3076,1.00000000 1386,480.9159,207.3255,27.6331,69.8543,0.99999541 1386,495.8973,214.1662,27.2878,69.1810,0.99993545 1386,58.5923,209.9931,21.6656,52.5609,0.00002245 1386,510.1248,209.1184,28.2675,58.3157,0.00000002 1386,467.9838,5.9481,62.2034,159.4811,0.00000000 1386,482.4730,197.8402,50.1423,128.3961,0.00000000 1387,532.4045,211.4793,29.7544,75.9832,1.00000000 1387,85.7765,198.3999,22.1560,50.8595,0.99860537 1387,551.5946,208.4993,24.9285,60.7654,0.99836046 1387,591.9754,217.2336,27.4332,66.5140,0.99784285 1387,73.8689,194.0800,19.5260,51.4140,0.00001492 1387,573.0831,213.1759,34.5494,86.0827,0.00001361 1388,575.4758,209.7306,28.9904,70.8566,1.00000000 1388,599.8384,207.9053,30.6376,77.0189,1.00000000 1388,90.7474,200.7536,22.5070,51.2804,0.29435042 1388,74.6196,202.2518,24.2378,53.7466,0.05754199 1388,534.8457,199.5431,24.5171,56.5971,0.00078145 1389,84.0323,198.1540,22.7316,53.5577,0.99995565 1389,103.9771,200.0166,21.9769,50.2031,0.99859333 1389,72.9650,207.0732,23.4527,57.4637,0.00038594 1389,575.5450,198.0310,22.0071,59.2283,0.00003767 1389,494.8949,227.3837,32.2061,68.3628,0.00000000 1389,440.1263,213.3889,23.4644,48.4600,0.00000000 1390,77.8463,199.3037,23.0993,56.4678,0.99999994 1390,104.4918,198.4772,21.9070,53.0053,0.99999666 1390,264.1073,214.0923,20.7478,48.7365,0.99991781 1390,90.5249,203.1455,25.6851,56.4770,0.00302731 1390,117.2625,194.2146,21.7027,49.1045,0.00000080 1390,67.1308,196.7823,21.3380,52.8994,0.00000036 1390,625.1524,347.3699,14.9943,134.1312,0.00000000 1390,624.3773,451.5269,15.7694,60.6198,0.00000000 1391,529.3052,213.7352,31.3739,77.6671,0.99999994 1391,248.5784,215.1269,22.2755,53.0246,0.99999958 1391,35.1382,197.8446,28.1202,66.5784,0.99999738 1391,81.2265,199.1332,25.9031,57.8004,0.99991667 1391,65.2955,196.8508,24.3168,58.8787,0.35135382 1391,395.3918,209.3015,22.6263,51.0119,0.02902137 1391,521.9539,196.1198,58.0451,145.2554,0.00000000 1392,598.0574,231.3938,35.8396,90.0132,1.00000000 1392,218.8473,223.8763,25.3192,63.3470,1.00000000 1392,433.2063,218.8457,25.9749,52.7295,0.99998182 1392,573.9410,228.3632,23.8453,54.2087,0.99984008 1392,17.9883,202.6238,22.6241,57.3796,0.89375353 1392,204.5173,232.2540,24.1912,55.4970,0.38258138 1392,33.9259,202.8058,27.8962,62.7328,0.00000037 1393,59.4156,220.7242,45.4095,109.8618,0.99975258 1393,572.2963,226.5267,28.6610,65.4177,0.99974906 1393,428.0579,219.5751,29.3430,53.5179,0.99221486 1393,340.6124,207.9539,25.4078,52.4555,0.69793707 1393,70.8164,268.8287,24.9905,57.9621,0.00975930 1393,47.4262,251.5457,28.4815,65.4671,0.00000001 1394,534.4962,215.1794,29.9525,74.8369,0.99999958 1394,506.4821,202.2336,26.0057,63.1571,0.99999875 1394,384.0132,204.5736,26.7389,59.9247,0.99998504 1394,262.8927,199.7723,24.0554,53.0429,0.17034937 1394,518.1675,208.3274,30.9289,68.0626,0.00000007 1394,401.0490,201.9601,24.7501,55.6835,0.00000002 1395,499.6553,206.9360,31.6064,76.5432,1.00000000 1395,251.8282,208.6646,24.7681,50.1133,0.99999696 1395,400.3760,205.4126,32.3345,72.5347,0.99995846 1395,566.3790,222.1269,40.4449,99.4465,0.99982029 1395,386.5388,208.7206,26.7908,60.6471,0.71616477 1395,188.0738,204.7599,22.7103,51.1778,0.00000126 1396,560.0137,213.0385,30.5141,66.7502,0.99999607 1396,460.0918,211.6710,31.4767,75.0588,0.99997902 1396,294.7139,209.6690,24.0068,51.0897,0.99986243 1396,439.9743,208.3246,26.9514,63.6482,0.94844663 1396,346.1678,205.6672,24.2407,58.6369,0.43768281 1396,539.9904,212.2406,29.0304,55.7968,0.00028093 1396,205.2386,203.1814,21.2746,48.9597,0.00015102 1397,446.8960,201.8841,25.5106,58.9287,1.00000000 1397,553.6277,203.2960,35.4256,83.6056,0.99998927 1397,285.2130,206.6915,21.9491,49.4412,0.99984205 1397,34.5544,205.5642,24.4994,50.1855,0.00005792 1397,543.6834,207.0138,25.5515,57.2650,0.00000020 1397,631.2700,487.2821,8.8767,24.8646,0.00000000 1398,594.8289,208.5700,26.6718,62.7135,0.99999696 1398,440.3241,215.7640,22.2842,49.0989,0.99813998 1398,409.1035,209.9083,21.6988,48.5457,0.00022026 1398,159.8638,208.5061,22.0678,48.9357,0.00000016 1398,427.8911,211.1287,21.8335,48.9431,0.00000000 1398,612.2407,207.7816,27.9060,62.3408,0.00000000 1398,637.0020,196.9054,3.1447,63.0048,0.00000000 1399,566.0552,220.2808,24.0978,54.9869,0.99999928 1399,497.7804,218.2792,21.9650,50.1731,0.42846265 1399,51.6056,207.3949,22.6200,53.8239,0.01772734 1399,64.9210,203.6777,22.3263,54.7867,0.00000768 1399,540.9932,223.5800,24.0296,57.2057,0.00000250 1399,475.6640,206.2876,20.7830,46.7810,0.00000029 1399,75.8313,196.9717,26.4212,54.4666,0.00000000 1400,552.7671,218.5719,24.0364,54.6342,0.99999982 1400,435.1052,217.3880,22.6092,48.7761,0.99993956 1400,538.4330,217.9466,24.0447,56.4456,0.00000000 1400,420.6566,219.5634,23.7336,50.1081,0.00000000 1400,540.3907,188.3292,50.1579,102.3747,0.00000000 1400,629.2499,1.0000,10.8968,49.6541,0.00000000 1400,509.6695,129.0324,100.1890,211.8214,0.00000000 1400,635.4201,488.2627,4.7266,23.8840,0.00000000 1400,628.3221,460.7242,11.8246,51.4225,0.00000000 1401,416.8287,221.2970,22.3099,50.5549,1.00000000 1401,589.7824,220.7457,24.5928,58.4259,0.99999994 1401,91.4751,216.8244,32.6603,68.2375,0.99992865 1401,53.7274,175.8722,80.1990,232.2411,0.00000000 1401,5.8442,351.8295,87.2353,160.3172,0.00000000 1402,412.3600,226.1282,22.6949,49.7298,1.00000000 1402,22.0917,212.6068,38.5571,91.1752,0.99999762 1402,68.0727,228.6112,25.0279,55.7781,0.00022293 1402,43.4805,222.3370,31.5951,73.7189,0.00000001 1402,623.6297,219.5210,16.5170,60.0725,0.00000000 1403,446.8866,222.2966,25.6859,59.6718,1.00000000 1403,34.7025,225.6603,25.5214,58.0264,0.02282931 1403,435.4052,216.5890,24.4851,53.1845,0.00000000 1403,598.3793,185.6828,31.4927,75.3035,0.00000000 1403,458.4655,210.0038,24.7452,54.7834,0.00000000 1403,636.2789,186.9780,3.8678,64.4394,0.00000000 1403,631.5842,201.9854,8.5625,83.4655,0.00000000 1403,635.2267,487.1943,4.9200,24.9524,0.00000000 1403,627.5286,458.5569,12.6181,53.5898,0.00000000 1404,477.0719,215.1217,34.9278,83.3915,1.00000000 1404,445.7065,204.2730,21.5261,50.1295,0.99981517 1404,457.7424,200.2280,24.4605,53.6802,0.00000001 1404,494.5139,213.6252,30.2780,63.4166,0.00000000 1404,468.4450,215.3876,24.8956,58.4313,0.00000000 1404,427.2542,199.9370,23.1797,52.6967,0.00000000 1404,597.8514,97.9822,42.2953,270.6957,0.00000000 1404,632.8426,166.5628,7.3041,84.8224,0.00000000 1404,636.4189,493.8378,3.7278,18.3089,0.00000000 1404,630.2147,481.0110,9.9320,31.1357,0.00000000 1404,448.9270,129.2484,93.0288,232.2079,0.00000000 1405,558.8302,216.1006,48.4978,117.6299,1.00000000 1405,494.3939,217.5920,22.3311,51.7217,0.99999976 1405,456.7364,210.5426,19.9199,48.0712,0.99913335 1405,408.0611,212.7667,21.3816,46.7896,0.00506352 1405,475.0715,211.6168,20.6795,46.5952,0.00047058 1405,423.9352,207.8130,20.2394,50.4729,0.00001296 1406,582.9096,220.3994,25.5396,65.2066,1.00000000 1406,509.5331,211.9011,20.8764,51.8516,0.99999660 1406,489.2245,212.6138,23.0180,56.5474,0.99996251 1406,460.4736,210.2707,20.7397,52.8789,0.19862349 1406,527.0844,211.8585,21.9498,48.2844,0.00027906 1406,442.4426,216.1187,21.4437,49.6814,0.00025993 1406,475.1133,212.7057,22.7044,52.7319,0.00000000 1407,546.3749,213.8198,25.7245,65.7146,1.00000000 1407,581.7795,213.6828,22.7555,58.6120,0.99999899 1407,602.1475,212.8424,24.3861,61.9087,0.99999863 1407,508.0521,211.3021,22.2132,53.4963,0.98011112 1407,563.3972,214.6360,24.5856,61.6471,0.59245080 1407,520.7832,209.3968,21.0834,55.1380,0.05697295 1407,490.5702,208.0489,27.5999,56.9177,0.00000168 1408,595.4689,216.4245,32.1766,82.6214,0.99999785 1408,51.3744,192.2251,25.0140,56.4801,0.00000000 1408,635.0836,218.0310,5.0631,62.2776,0.00000000 1408,560.8839,160.0237,79.2628,214.4105,0.00000000 1408,628.7182,236.5910,11.4285,85.3286,0.00000000 1408,635.4162,487.8555,4.7305,24.2912,0.00000000 1409,53.2555,206.3648,22.3281,53.1171,0.00000000 1409,631.5950,486.9605,8.5517,25.1862,0.00000000 1410,563.7469,200.9299,24.4511,63.0746,0.72158116 1410,547.0306,197.9991,26.6017,65.0123,0.21186970 1410,528.0346,204.3792,25.0360,61.1697,0.05060355 1410,572.4824,203.7478,31.6433,89.3173,0.00231170 1410,597.3592,199.0432,27.9488,67.0524,0.00000683 1410,515.7642,214.5137,24.0868,64.9145,0.00000149 1410,517.6639,184.4363,46.1587,121.2638,0.00000000 1411,580.6389,197.9727,41.2952,105.3959,0.99996650 1411,605.1525,196.1959,33.7172,80.7467,0.99736995 1411,558.9527,206.7939,37.0194,92.8102,0.98874545 1411,528.4681,203.2892,25.8901,66.5406,0.98724335 1411,512.6426,205.8320,26.7216,69.2840,0.01024300 1411,496.4319,214.7286,24.9962,59.0860,0.00000123 1412,530.4377,219.8269,32.5033,83.6650,0.99891913 1412,589.1390,206.0508,33.9357,82.7071,0.96203327 1412,548.0302,220.4089,25.6079,64.3947,0.00158811 1412,577.1256,219.9446,27.4186,66.9199,0.00008927 1412,513.5510,230.8063,32.6132,75.4546,0.00000002 1413,588.9574,218.8618,38.7677,112.3152,0.99990255 1413,574.9370,221.5392,30.0240,77.8836,0.01493496 1413,434.7478,220.3162,24.3576,56.7403,0.00001701 1413,600.5530,279.9577,28.4967,71.1185,0.00000000 1413,630.0807,215.9261,10.0660,82.9955,0.00000000 1413,569.7612,149.1270,70.3855,217.2269,0.00000000 1414,496.1460,224.2405,30.4488,73.1876,0.01089783 1414,364.7486,224.0797,23.3258,52.1010,0.00000041 1414,511.8963,224.2760,24.6138,53.2995,0.00000000 1414,482.4739,224.5929,26.5251,55.7770,0.00000000 1414,480.3989,199.7017,58.4394,138.3310,0.00000000 1414,628.1578,1.0000,11.9889,50.3846,0.00000000 1414,600.7355,392.4995,39.4112,119.6472,0.00000000 1414,636.0049,492.7799,4.1418,19.3668,0.00000000 1414,626.7114,454.1709,13.4353,57.9758,0.00000000 1415,551.3408,204.9183,31.7915,80.8328,1.00000000 1415,361.2786,202.0615,30.3188,60.5358,0.07082108 1415,530.9724,196.1290,87.1194,217.5104,0.00000000 1415,629.7075,477.1524,10.4392,34.9943,0.00000000 1415,603.4753,396.9315,36.6714,115.2152,0.00000000 1415,628.1923,1.0000,11.9544,50.4280,0.00000000 1416,367.3122,226.5606,32.9245,62.3823,0.98436487 1416,496.7219,231.8372,26.5453,61.2974,0.00023372 1416,579.2360,211.5300,26.1356,54.3710,0.00000027 1416,635.8269,182.1112,4.3198,65.6153,0.00000000 1416,628.0244,1.0000,12.1223,50.2889,0.00000000 1416,629.6021,480.6935,10.5446,31.4532,0.00000000 1417,388.6476,224.9380,23.2162,60.3539,0.99999034 1417,402.4337,221.0704,27.3393,69.3918,0.99992037 1417,562.5577,228.3720,28.1562,64.8240,0.00026973 1417,349.8209,156.2513,91.1798,215.5088,0.00000000 1417,631.5531,486.8222,8.5936,25.3245,0.00000000 1418,418.2465,233.3670,31.3244,88.8267,0.99999964 1418,434.4197,227.1933,33.8427,84.9732,0.98355371 1418,534.7320,208.3409,25.1592,56.7175,0.00000037 1418,448.3062,236.0477,43.7727,98.9839,0.00000000 1418,414.5910,211.6984,87.0063,207.9720,0.00000000 1418,632.0446,486.9168,8.1021,25.2299,0.00000000 1419,462.5889,232.5903,42.8693,116.2241,1.00000000 1419,487.0760,222.1726,50.6318,130.4765,1.00000000 1419,446.5209,178.6846,80.8808,211.8657,0.00000000 1419,629.7855,481.4318,10.3612,30.7149,0.00000000 1420,158.4764,214.8194,22.1847,49.4785,0.05758501 1420,594.7292,238.3942,45.4175,249.8936,0.05242729 1420,610.7097,278.0057,29.4370,105.1339,0.00000000 1420,621.2719,338.8183,18.8748,128.4580,0.00000000 1420,430.7381,208.4151,25.7471,53.2258,0.00000000 1420,629.9636,232.1011,10.1831,105.7063,0.00000000 1420,632.1553,295.1688,7.9914,70.0627,0.00000000 1421,635.2436,487.3675,4.9031,24.7792,0.00000000 1421,628.4487,459.8379,11.6980,52.3088,0.00000000 1422,92.2939,211.7302,34.8515,75.7599,0.99999887 1422,68.3323,207.4658,35.1576,79.8054,0.99538791 1422,142.9732,211.8592,22.9606,51.5778,0.00004037 1422,57.2798,198.3611,28.3001,66.5308,0.00000009 1422,420.7103,208.9643,25.4585,56.5093,0.00000000 1422,505.3385,173.8715,28.9285,67.5254,0.00000000 1422,629.4088,479.7418,10.7379,32.4049,0.00000000 1423,595.7251,212.4757,31.3518,78.6237,0.99999976 1423,5.6248,202.6562,47.1140,112.9783,0.99999279 1423,410.0442,216.1659,24.9319,57.6054,0.00000006 1423,635.1075,217.0337,5.0392,62.4781,0.00000000 1423,630.1968,479.4642,9.9499,32.6825,0.00000000 1424,88.4072,202.7180,31.1899,72.9659,0.99999934 1424,168.4963,206.7747,24.6066,49.8028,0.90962708 1424,491.2076,216.5787,21.8694,54.6337,0.89168984 1424,507.7546,214.2904,20.8940,55.5483,0.00001396 1424,80.2954,195.5927,22.9704,59.8602,0.00000000 1424,480.0325,204.2454,43.2394,99.6963,0.00000000 1424,472.9747,213.7310,24.3353,58.9315,0.00000000 1425,37.0983,207.3127,33.8394,86.4848,0.99999928 1425,2.9161,212.0950,35.4669,89.9380,0.99932605 1425,54.4561,197.1916,34.6465,82.3675,0.00000484 1425,514.4340,215.8984,23.1189,56.2782,0.00000000 1425,554.3614,221.0983,23.9769,56.9954,0.00000000 1426,515.1082,222.0597,25.3785,64.1381,1.00000000 1426,536.2616,223.4155,22.9691,57.6551,0.08279289 1426,510.1901,203.3643,49.5578,115.9450,0.00000000 1426,547.6702,233.5378,22.1659,56.6203,0.00000000 1426,604.5496,215.2016,23.5156,59.6315,0.00000000 1426,538.5142,266.0580,68.5158,172.5287,0.00000000 1426,634.8026,211.6334,5.3441,62.7250,0.00000000 1426,627.9808,459.2290,12.1659,52.9177,0.00000000 1426,635.2221,487.3617,4.9246,24.7850,0.00000000 1427,587.3871,227.1960,33.5134,87.3361,1.00000000 1427,611.9420,231.4128,28.2047,79.5927,0.99999988 1427,151.1984,206.5652,28.5518,62.4943,0.99999940 1427,141.9449,204.8059,21.8648,53.5721,0.00041894 1427,128.2163,209.2091,25.5935,58.1070,0.00000000 1427,630.5020,224.4112,9.6447,67.6704,0.00000000 1428,93.7672,206.3414,31.6026,68.6352,0.99998939 1428,70.1458,205.0411,34.0417,68.7762,0.00026821 1428,113.0660,204.2436,24.8828,57.7476,0.00000002 1428,64.0976,109.3072,93.7056,208.5993,0.00000000 1428,627.7657,1.0000,12.3810,49.8878,0.00000000 1428,629.5383,480.4887,10.6084,31.6580,0.00000000 1429,54.1923,210.6181,32.2863,72.1461,0.99999905 1429,72.3575,216.5295,25.5994,55.6119,0.00000032 1429,39.2117,205.3197,26.4726,58.9041,0.00000026 1429,628.6035,1.0000,11.5432,49.7000,0.00000000 1429,26.6087,108.7320,97.7199,224.5604,0.00000000 1429,629.4124,481.3181,10.7343,30.8286,0.00000000 1430,30.0393,203.9327,37.4954,78.0619,0.99999964 1430,16.8886,214.2577,29.4638,71.5785,0.00003455 1430,627.7288,1.0000,12.4179,50.7310,0.00000000 1430,1.0000,142.1578,81.3101,214.0154,0.00000000 1430,629.7725,481.4699,10.3742,30.6768,0.00000000 1431,588.3079,209.1779,42.4231,118.5416,1.00000000 1431,7.9101,202.9144,35.5608,79.7966,0.99997020 1431,1.0000,208.9350,20.9993,61.6702,0.00005217 1431,616.5092,208.1300,23.6375,132.1645,0.00000000 1431,65.4669,360.4993,95.7726,151.6474,0.00000000 1432,571.6810,212.0845,43.4695,124.4918,1.00000000 1432,2.8123,212.2442,31.1846,73.5703,0.99998856 1432,595.1157,226.5287,42.4418,108.7212,0.05357159 1432,624.8983,224.5520,15.2484,121.9798,0.00000000 1433,49.4528,218.0348,34.3745,78.6412,0.99999982 1433,29.8661,215.9398,34.3375,74.4033,0.92083848 1433,22.4601,121.5512,90.2013,221.3475,0.00000000 1433,635.3967,487.4745,4.7500,24.6722,0.00000000 1434,58.5494,215.4342,40.4634,87.6030,1.00000000 1434,37.0864,216.2982,33.0481,74.2435,0.94460785 1434,491.2819,254.3080,36.3822,77.9695,0.00000000 1434,512.6923,252.6203,37.9803,86.1867,0.00000000 1434,487.1983,204.0749,91.0562,236.6193,0.00000000 1434,629.7260,480.9437,10.4207,31.2030,0.00000000 1435,26.0040,202.7929,44.9616,105.8159,0.99999976 1435,12.0348,206.3838,32.8275,88.0192,0.00316541 1435,52.7478,203.2888,41.5251,86.6712,0.00000000 1435,1.0000,195.5216,25.0694,112.2464,0.00000000 1435,1.0000,169.3649,59.9957,243.1826,0.00000000 1435,630.0261,481.5813,10.1206,30.5654,0.00000000 1436,601.7681,229.3572,38.3786,262.9068,0.00000000 1436,628.1859,234.1958,11.9608,121.8699,0.00000000 1436,636.3381,287.5085,3.8086,66.8001,0.00000000 1436,635.0514,245.2581,5.0953,64.5399,0.00000000 1436,629.7136,481.5310,10.4331,30.6157,0.00000000 1436,636.2095,493.2905,3.9372,18.8562,0.00000000 1437,512.8355,211.9431,30.8388,73.0299,0.00163600 1437,636.2676,493.5973,3.8791,18.5494,0.00000000 1437,487.4219,116.9766,87.4148,214.1603,0.00000000 1437,633.1816,224.2466,6.9651,78.7609,0.00000000 1437,629.7917,480.0298,10.3550,32.1169,0.00000000 1437,602.1346,396.5898,38.0121,115.5569,0.00000000 1438,584.2015,217.9811,28.0299,73.2411,0.99999970 1438,572.3151,219.8204,23.0406,60.5806,0.00000000 1438,543.2778,155.3333,89.9018,212.7834,0.00000000 1438,635.5712,224.7886,4.5755,62.0407,0.00000000 1438,631.2629,486.0448,8.8838,26.1019,0.00000000 1439,550.6740,206.1531,34.8744,68.5112,0.00000000 1439,635.9937,218.3694,4.1530,63.8353,0.00000000 1439,635.2128,487.5302,4.9339,24.6165,0.00000000 1439,628.2602,459.2568,11.8865,52.8899,0.00000000 1440,538.0638,1.0000,43.9274,113.2450,0.00000000 1440,502.3958,286.4143,41.7546,92.0237,0.00000000 1440,597.0451,54.3924,43.1016,261.0481,0.00000000 1440,480.4159,215.7252,87.0034,219.0581,0.00000000 1440,622.8621,1.0000,17.2846,119.5851,0.00000000 1440,633.4352,37.9519,6.7115,65.7280,0.00000000 1440,625.4502,72.0338,14.6965,133.3536,0.00000000 1440,634.9386,131.1677,5.2081,70.6386,0.00000000 1440,631.2709,195.1376,8.8758,81.7731,0.00000000 1440,637.4604,187.9696,2.6863,65.9357,0.00000000 1440,636.0522,494.0984,4.0945,18.0483,0.00000000 1440,629.3531,479.4768,10.7936,32.6699,0.00000000 1441,625.3807,460.7265,14.7660,51.4202,0.00000000 1441,603.8503,396.2712,36.2964,115.8755,0.00000000 1441,635.0871,488.2463,5.0596,23.9004,0.00000000 1442,470.2246,223.5788,35.0770,74.7984,0.00000606 1442,635.2112,487.5770,4.9355,24.5697,0.00000000 1442,628.7036,460.8070,11.4431,51.3397,0.00000000 1443,433.0439,208.2157,25.6336,55.1710,0.00000000 1443,634.5897,285.5505,5.5570,77.9709,0.00000000 1443,1.0000,380.6038,59.9167,131.5429,0.00000000 1443,631.3703,486.7449,8.7764,25.4018,0.00000000 1444,629.6669,477.4188,10.4798,34.7279,0.00000000 1444,93.8044,211.9611,87.2755,237.1657,0.00000000 1444,603.0026,398.2059,37.1441,113.9408,0.00000000 1444,636.1904,491.8296,3.9563,20.3171,0.00000000 1445,438.1218,214.2952,22.8275,48.2041,0.00000000 1445,629.7596,480.7073,10.3871,31.4394,0.00000000 1446,345.9248,220.0736,23.2198,54.4049,0.00000000 1446,629.7174,481.2728,10.4293,30.8739,0.00000000 1447,507.0628,217.4670,27.4522,60.7770,0.48078787 1447,487.1837,223.7164,21.8578,57.7682,0.00337700 1447,486.0817,200.0934,45.5138,112.1040,0.00000000 1447,458.9812,141.0648,105.2254,213.4800,0.00000000 1447,635.1536,486.9427,4.9931,25.2040,0.00000000 1447,627.3845,456.9085,12.7622,55.2382,0.00000000 1448,506.4458,214.0011,25.4664,61.7164,1.00000000 1448,539.8709,216.5206,26.0653,61.6414,0.99999678 1448,432.5178,206.8897,23.4885,58.6817,0.00000000 1448,519.7807,210.1204,22.1068,50.0400,0.00000000 1448,472.0506,114.5841,97.5087,208.7836,0.00000000 1448,635.1337,487.5120,5.0130,24.6347,0.00000000 1448,628.5324,461.1221,11.6143,51.0246,0.00000000 1449,569.0406,215.4789,34.0820,86.9072,0.99999994 1449,610.2996,218.8727,29.8471,79.2511,0.99999928 1449,468.7549,207.3094,20.7875,53.1298,0.00000017 1449,596.0279,216.4474,28.3439,67.8100,0.00000009 1449,631.1404,213.4454,9.0063,65.0641,0.00000000 1449,544.6172,210.3984,83.1073,241.0339,0.00000000 1449,586.4105,134.3249,53.7362,223.6669,0.00000000 1450,61.5161,226.7540,24.9660,57.7359,0.00000000 1450,190.1921,202.7699,36.1714,77.6481,0.00000000 1450,636.5021,492.6679,3.6446,19.4788,0.00000000 1450,627.7474,455.7498,12.3993,56.3969,0.00000000 1451,599.1309,211.9092,29.1127,69.3034,0.99195212 1451,586.4098,212.5322,23.2143,61.7466,0.00000001 1451,595.0930,161.4494,45.0537,261.0031,0.00000000 1451,635.6008,193.6982,4.5459,61.0452,0.00000000 1451,629.6491,211.3087,10.4976,85.2521,0.00000000 1451,630.6922,108.1450,9.4545,87.9843,0.00000000 1451,635.4715,492.9702,4.6752,19.1765,0.00000000 1451,626.5561,458.9431,13.5906,53.2036,0.00000000 1452,441.8119,241.8058,22.6958,53.9349,0.00001244 1452,421.3062,239.3205,20.9915,53.7439,0.00000104 1452,490.4225,236.6597,22.9839,49.6162,0.00000000 1452,482.9387,19.9037,32.0473,74.1890,0.00000000 1452,461.4332,22.6564,31.4711,75.4961,0.00000000 1452,632.9478,485.5759,7.1989,26.5708,0.00000000 1452,631.0241,88.7980,9.1226,82.9643,0.00000000 1453,466.9016,169.9478,21.8077,52.6661,1.00000000 1453,442.8832,167.2255,21.4768,53.8484,0.99999565 1453,528.0503,160.5514,23.7361,54.0699,0.58271039 1453,509.2202,162.1742,25.4018,58.3990,0.00000000 1453,631.5776,483.9051,8.5691,28.2416,0.00000000 1454,502.1677,206.2410,24.8370,59.2445,1.00000000 1454,470.6670,202.4332,24.0412,59.2274,0.99999994 1454,574.7238,197.3364,24.6967,59.5991,0.99998921 1454,590.8672,189.7581,26.8750,64.3328,0.95482868 1454,487.7618,204.0103,24.2002,55.1796,0.00000007 1455,521.5717,210.7035,33.9790,80.7352,1.00000000 1455,554.5733,214.5549,28.5030,73.2497,0.99996436 1455,571.6890,227.0116,27.3183,63.8321,0.00000000 1455,631.6319,487.0609,8.5148,25.0858,0.00000000 1456,481.4597,212.4515,29.9587,63.8948,0.99948543 1456,497.8810,215.0064,25.6559,53.4571,0.00000000 1456,1.0000,380.7083,60.3616,131.4384,0.00000000 1456,629.6292,481.1049,10.5175,31.0418,0.00000000 1457,560.4194,211.8000,40.3134,86.0596,0.99999940 1457,530.1172,188.5837,90.0769,219.3766,0.00000000 1457,636.4788,493.7370,3.6679,18.4097,0.00000000 1457,629.7847,482.2966,10.3620,29.8501,0.00000000 1458,227.9456,183.0777,24.7555,47.7490,0.02201664 1458,635.7764,487.9628,4.3703,24.1839,0.00000000 1458,628.0986,459.7558,12.0481,52.3909,0.00000000 1459,211.4568,205.6637,25.5408,50.0135,0.96516645 1459,496.3488,221.2394,23.4221,48.9826,0.00000000 1459,201.9957,177.5012,48.2154,97.0487,0.00000000 1459,635.8137,488.4659,4.3330,23.6808,0.00000000 1459,627.6337,460.2187,12.5130,51.9280,0.00000000 1460,176.7722,173.6972,25.5723,50.9590,0.96557039 1460,537.2343,190.9251,22.3748,50.9112,0.00000356 1460,166.3710,154.9567,48.3261,99.1030,0.00000000 1460,635.6435,487.9648,4.5032,24.1819,0.00000000 1460,628.1735,459.7435,11.9732,52.4032,0.00000000 1461,128.7344,183.9731,28.1558,55.2556,0.99999791 1461,110.2692,173.6046,31.9710,66.4188,0.00000000 1461,146.3097,185.5893,29.9132,60.1307,0.00000000 1461,96.2982,48.1306,86.0129,268.1834,0.00000000 1461,629.7451,480.0648,10.4016,32.0819,0.00000000 1462,116.5032,197.9942,34.6987,73.4565,0.99162447 1462,87.3041,178.7697,90.2020,208.6761,0.00000000 1462,1.0000,381.4676,59.6792,130.6791,0.00000000 1462,353.6449,346.2949,87.3773,165.8518,0.00000000 1462,627.8539,457.1158,12.2928,55.0309,0.00000000 1462,635.5651,486.7434,4.5816,25.4033,0.00000000 1463,157.3940,214.5610,40.1739,88.9153,0.99292755 1463,1.0000,382.4818,59.4257,129.6649,0.00000000 1463,143.3164,137.8030,90.6833,202.7786,0.00000000 1463,627.1568,454.9129,12.9899,57.2338,0.00000000 1463,605.2868,390.6466,34.8599,121.5001,0.00000000 1463,634.9246,486.5463,5.2221,25.6004,0.00000000 1464,159.7313,203.8638,47.9164,123.2743,1.00000000 1464,148.1330,118.0862,86.0101,237.1694,0.00000000 1464,130.9016,236.6219,90.6091,242.6712,0.00000000 1464,1.0000,385.8510,59.5391,126.2957,0.00000000 1464,627.6207,455.0385,12.5260,57.1082,0.00000000 1464,634.9828,486.4772,5.1639,25.6695,0.00000000 1465,69.5424,216.2167,59.7153,156.3484,1.00000000 1465,61.5796,263.0329,84.1873,247.8520,0.00000000 1465,63.9566,165.2195,45.4286,115.8728,0.00000000 1465,87.9007,245.5807,29.1762,88.1276,0.00000000 1465,97.2685,252.5447,62.0440,150.5655,0.00000000 1465,629.1883,477.5721,10.9584,34.5746,0.00000000 1466,625.8684,457.0335,14.2783,55.1132,0.00000000 1466,603.2108,392.8330,36.9359,119.3137,0.00000000 1466,634.6944,487.8333,5.4523,24.3134,0.00000000 1467,629.3408,478.1471,10.8059,33.9996,0.00000000 1468,631.9155,486.5584,8.2312,25.5883,0.00000000 1469,147.7782,203.3018,34.3464,54.5835,0.06545659 1469,582.7172,198.2187,26.5863,63.6629,0.00000000 1469,129.7764,195.1472,34.9621,69.1580,0.00000000 1469,629.3926,479.5735,10.7541,32.5732,0.00000000 1470,144.6308,213.8736,33.5382,57.5281,0.02191655 1470,45.4889,226.5897,27.2780,53.0454,0.00000000 1470,635.5435,488.0500,4.6032,24.0967,0.00000000 1470,627.9803,459.8802,12.1664,52.2665,0.00000000 1471,635.8867,488.6414,4.2600,23.5053,0.00000000 1471,628.7289,461.3533,11.4178,50.7934,0.00000000 1472,629.5268,480.3549,10.6199,31.7918,0.00000000 1473,627.7555,455.6519,12.3912,56.4948,0.00000000 1473,635.0888,487.0391,5.0579,25.1076,0.00000000 1474,629.5840,479.2326,10.5627,32.9141,0.00000000 1475,629.0767,477.3628,11.0700,34.7839,0.00000000 1476,629.1692,478.9255,10.9775,33.2212,0.00000000 1476,604.1209,389.2598,36.0258,122.8869,0.00000000 1477,629.8124,479.3000,10.3343,32.8467,0.00000000 1478,635.5349,488.5334,4.6118,23.6133,0.00000000 1478,627.6065,461.2959,12.5402,50.8508,0.00000000 1479,630.0432,304.0365,10.1035,86.8941,0.00000000 1479,592.1334,257.2549,48.0133,254.8918,0.00000000 1479,627.7363,459.2456,12.4104,52.9011,0.00000000 1479,635.4764,487.7514,4.6703,24.3953,0.00000000 1480,604.5168,392.4471,35.6299,119.6996,0.00000000 1480,627.3047,457.6919,12.8420,54.4548,0.00000000 1480,635.3843,487.4694,4.7624,24.6773,0.00000000 1481,603.8038,389.6051,36.3429,122.5416,0.00000000 1481,636.1152,493.9891,4.0315,18.1576,0.00000000 1481,629.7638,480.6148,10.3829,31.5319,0.00000000 1482,602.6394,391.5299,37.5073,120.6168,0.00000000 1482,625.4366,457.7213,14.7101,54.4254,0.00000000 1482,634.4000,487.6834,5.7467,24.4633,0.00000000 1483,628.0477,457.8182,12.0990,54.3285,0.00000000 1483,635.4237,487.1859,4.7230,24.9608,0.00000000 1484,636.0732,494.4470,4.0735,17.6997,0.00000000 1484,629.6558,481.1711,10.4909,30.9756,0.00000000 1485,627.6752,455.6596,12.4715,56.4871,0.00000000 1485,635.2396,487.1178,4.9071,25.0289,0.00000000 1486,416.9812,236.8545,27.3755,59.6397,0.00000000 1486,627.5634,455.1553,12.5833,56.9914,0.00000000 1486,635.1343,486.3675,5.0124,25.7792,0.00000000 1487,629.2266,478.3706,10.9201,33.7761,0.00000000 1487,604.6642,390.5382,35.4825,121.6085,0.00000000 1488,629.4165,478.9130,10.7302,33.2337,0.00000000 1489,629.5192,479.0866,10.6275,33.0601,0.00000000 1490,68.3691,191.5140,47.4807,122.4104,0.00000000 1490,627.9834,455.9138,12.1633,56.2329,0.00000000 1490,70.4904,136.6260,81.1003,241.1788,0.00000000 1490,8.7620,131.5713,84.8405,261.4266,0.00000000 1490,635.1006,486.3586,5.0461,25.7881,0.00000000 1491,627.8674,455.8694,12.2793,56.2773,0.00000000 1491,1.0000,384.9060,59.3491,127.2407,0.00000000 1491,635.0552,486.8074,5.0915,25.3393,0.00000000 1492,219.4616,185.3760,55.4645,132.6070,0.00000042 1492,629.2256,478.1067,10.9211,34.0400,0.00000000 1492,1.0000,386.2664,58.9598,125.8803,0.00000000 1493,142.2914,189.1733,24.5091,51.4217,0.00002357 1493,540.6664,255.9842,46.4579,103.7060,0.00000245 1493,562.9167,286.7838,35.5189,85.6071,0.00000000 1493,527.3965,169.4410,81.8542,242.1153,0.00000000 1493,368.5332,232.3098,27.8134,61.6987,0.00000000 1493,626.6802,453.7929,13.4665,58.3538,0.00000000 1493,606.5080,391.5756,33.6387,120.5711,0.00000000 1493,634.7913,487.2009,5.3554,24.9458,0.00000000 1493,1.0000,462.8674,23.3033,49.2793,0.00000000 1493,1.0000,388.0352,59.3553,124.1115,0.00000000 1494,3.4298,194.2850,26.0605,56.1180,0.00000271 1494,220.8672,187.7518,21.8540,52.3743,0.00000001 1494,234.6409,194.2871,22.5061,52.0204,0.00000000 1494,627.1827,455.6822,12.9640,56.4645,0.00000000 1494,604.1617,391.4627,35.9850,120.6840,0.00000000 1494,634.6992,486.1944,5.4475,25.9523,0.00000000 1494,1.0000,385.8045,59.2474,126.3422,0.00000000 1495,172.6242,202.6192,28.2482,53.1709,0.00006547 1495,596.8154,154.2517,23.1734,53.3658,0.00000003 1495,192.8889,197.4225,25.2702,55.4502,0.00000000 1495,608.1860,163.2035,25.7872,52.5149,0.00000000 1495,626.6523,455.9875,13.4944,56.1592,0.00000000 1495,603.8548,390.8119,36.2919,121.3348,0.00000000 1495,1.0000,381.8919,59.7413,130.2548,0.00000000 1495,634.9290,487.0699,5.2177,25.0768,0.00000000 1496,128.0876,209.6341,26.2520,52.9080,0.99077916 1496,602.4911,160.6834,26.0193,55.6132,0.00000000 1496,145.4680,214.8375,23.1498,52.2890,0.00000000 1496,114.4697,205.8350,20.9350,55.1388,0.00000000 1496,603.2297,393.5298,36.9170,118.6169,0.00000000 1496,626.9459,457.3224,13.2008,54.8243,0.00000000 1496,1.0000,385.9911,59.3312,126.1556,0.00000000 1496,634.7955,154.5341,5.3512,73.4745,0.00000000 1496,635.0414,486.9091,5.1053,25.2376,0.00000000 1497,93.0908,210.3089,28.4344,54.0388,0.98877019 1497,111.0833,212.7028,24.1830,53.0839,0.00001158 1497,79.7911,199.7507,27.6858,57.8147,0.00000000 1497,604.4494,393.2765,35.6973,118.8702,0.00000000 1497,1.0000,383.0579,59.4024,129.0888,0.00000000 1497,627.1123,456.9050,13.0344,55.2417,0.00000000 1497,635.3809,487.1677,4.7658,24.9790,0.00000000 1498,30.2438,203.9988,34.8318,69.9384,0.99999923 1498,17.2693,196.8943,28.4180,64.6261,0.00000007 1498,50.4199,208.3868,31.4859,61.6801,0.00000000 1498,324.2568,205.6318,36.7273,69.8202,0.00000000 1498,371.3074,216.6694,27.8297,61.8406,0.00000000 1498,629.1017,478.7045,11.0450,33.4422,0.00000000 1498,604.6068,389.6322,35.5399,122.5145,0.00000000 1498,1.0000,385.9914,59.8380,126.1553,0.00000000 1498,9.4166,102.6796,92.7178,206.6139,0.00000000 1499,1.0000,205.9766,26.6007,61.3010,0.00001205 1499,379.1024,213.8661,24.4304,57.9491,0.00000000 1499,172.8867,220.2282,31.5190,60.6769,0.00000000 1499,83.8922,216.7415,22.8746,53.8380,0.00000000 1499,490.6057,260.4385,24.6000,64.7626,0.00000000 1499,392.3380,215.1808,31.0043,64.9204,0.00000000 1499,1.0000,137.7009,51.2576,142.3947,0.00000000 1499,629.1382,478.5359,11.0085,33.6108,0.00000000 1499,604.3602,391.1894,35.7865,120.9573,0.00000000 1499,636.1126,492.8842,4.0341,19.2625,0.00000000 1500,1.0000,216.9710,26.0910,59.1511,0.00000247 1500,95.4452,211.4732,25.9505,64.1334,0.00000003 1500,411.3777,224.9505,27.4809,61.0043,0.00000000 1500,43.3132,217.0088,29.3929,64.2250,0.00000000 1500,117.9533,201.6202,41.5643,102.7863,0.00000000 1500,78.3922,214.9145,26.3305,63.1265,0.00000000 1500,629.5007,479.2757,10.6460,32.8710,0.00000000 1500,1.0000,173.6835,52.5740,253.4861,0.00000000 1500,605.1699,390.9101,34.9768,121.2366,0.00000000 1500,491.5311,101.1456,87.4644,282.4077,0.00000000 1500,1.0000,382.7922,59.2399,129.3545,0.00000000 1501,14.8926,210.0538,36.3681,69.4184,0.00000964 1501,153.0192,203.2874,30.4088,59.2040,0.00000938 1501,479.3559,224.2460,28.0335,65.6957,0.00000000 1501,1.3212,212.0744,55.2938,152.8903,0.00000000 1501,170.0785,210.8649,25.6799,54.9203,0.00000000 1501,629.0208,478.7336,11.1259,33.4131,0.00000000 1501,571.5676,109.7364,44.1428,100.7830,0.00000000 1502,108.8730,225.9186,43.2517,92.5133,0.99993187 1502,62.2471,214.6645,40.0155,100.4363,0.99936277 1502,47.5058,241.2359,34.5319,77.0322,0.00000001 1502,85.1119,225.0259,36.6088,79.5207,0.00000000 1502,280.9407,217.6901,27.7547,62.7879,0.00000000 1502,629.1528,478.9507,10.9939,33.1960,0.00000000 1502,140.0550,94.9134,84.8885,267.3093,0.00000000 1503,297.2604,224.4566,43.6664,102.8542,1.00000000 1503,268.0572,224.4084,43.9751,99.1377,0.99999982 1503,326.7565,225.6389,43.8615,95.6373,0.00001137 1503,502.8293,209.0349,29.5603,60.3420,0.00000123 1503,345.8793,218.0393,32.2990,65.0980,0.00000000 1503,629.3084,480.1989,10.8383,31.9478,0.00000000 1503,257.6487,180.0992,79.8139,199.9732,0.00000000 1503,319.4903,189.6696,87.7600,244.1041,0.00000000 1504,563.3145,225.5441,44.4677,125.1399,1.00000000 1504,518.1214,221.7269,53.0721,139.6017,0.99999809 1504,294.2274,228.3353,31.0156,66.6154,0.84421307 1504,312.2124,220.0554,36.3999,78.6467,0.00000000 1505,226.3252,231.1596,39.3690,67.1719,0.99970335 1505,10.4888,210.0861,39.7437,79.8427,0.56506151 1505,16.0218,254.0373,24.9002,63.0284,0.00000001 1505,28.3387,226.8076,36.5112,86.8606,0.00000000 1505,1.0000,170.4675,73.9507,210.4168,0.00000000 1506,387.1719,220.7645,38.2868,87.1750,1.00000000 1506,168.9282,201.5238,39.6259,74.4144,0.99960184 1506,82.2630,174.1423,29.6250,49.9775,0.00000000 1506,629.6031,480.2711,10.5436,31.8756,0.00000000 1507,337.3780,216.6229,41.0597,99.5920,1.00000000 1507,85.5861,195.0963,38.5446,85.6689,0.99917799 1507,67.2827,207.1970,38.7285,87.1137,0.00000054 1507,44.9798,167.4639,35.2270,57.0257,0.00000000 1508,26.2647,188.2794,54.9881,154.3176,0.99987423 1508,41.7564,233.0334,27.8976,77.6711,0.00000011 1508,51.3612,208.9186,31.9129,80.4497,0.00000000 1508,428.6753,90.6608,84.5223,249.5991,0.00000000 1508,601.7704,223.4186,26.6853,61.9492,0.00000000 1508,629.5515,478.5373,10.5952,33.6094,0.00000000 1509,107.1050,8.9249,89.6031,259.5776,0.00000000 1509,627.9944,455.6658,12.1523,56.4809,0.00000000 1509,635.3392,486.6131,4.8075,25.5336,0.00000000 1510,569.4443,232.8718,43.6017,104.0024,1.00000000 1510,615.7640,230.8093,23.3083,51.1713,0.00003037 1510,592.4109,225.1929,42.8872,92.2156,0.00000000 1510,543.8951,221.4740,92.2951,200.4597,0.00000000 1510,629.3130,478.6237,10.8337,33.5230,0.00000000 1510,633.3656,234.4236,6.7811,62.1954,0.00000000 1511,533.7353,247.4825,43.7347,110.6477,1.00000000 1511,382.3868,238.6064,49.9050,129.2362,1.00000000 1511,450.7967,245.3852,25.2206,50.9450,0.99745512 1511,467.3066,246.2491,26.7384,51.8526,0.61586845 1511,521.3892,239.9931,29.0452,68.6038,0.00000000 1511,583.2246,253.4233,22.2440,50.5538,0.00000000 1511,171.8528,257.5842,47.8837,125.1131,0.00000000 1512,422.7935,246.0164,42.7031,106.9802,1.00000000 1512,163.5058,247.2709,64.0818,155.9489,0.99999964 1512,306.5276,230.2554,28.8667,55.5112,0.99995244 1512,329.2781,232.2899,30.8631,51.2878,0.61572033 1512,198.3108,254.3931,57.1027,137.7042,0.00009582 1512,287.8648,230.2256,30.5924,59.0556,0.00000004 1512,385.8416,229.5708,24.8421,53.9341,0.00000003 1513,233.8636,230.7369,32.6750,57.0219,1.00000000 1513,351.3949,236.8482,44.0450,106.0526,1.00000000 1513,208.8917,224.3132,27.9695,57.9648,1.00000000 1513,196.6169,218.5825,23.7079,59.1949,0.00000162 1513,315.9370,226.0810,26.5533,51.3587,0.00000025 1514,195.9500,209.3738,32.4689,72.7568,1.00000000 1514,371.1302,225.0747,46.8758,119.2223,1.00000000 1514,231.6354,218.5568,27.2042,63.2375,0.99999994 1514,336.1594,210.4617,24.7340,52.6159,0.00002301 1515,445.1796,227.7684,49.5465,124.5409,1.00000000 1515,261.1811,210.3587,39.4266,87.2666,1.00000000 1515,235.5840,207.1192,31.6384,79.4983,1.00000000 1515,438.5839,215.2991,33.4408,80.2473,0.00000000 1516,517.1418,249.7606,55.6077,139.8424,1.00000000 1516,230.5283,210.8069,41.2339,101.5250,1.00000000 1516,259.8198,217.3873,44.0879,108.1069,0.99999970 1516,437.8660,215.9206,23.4242,49.7448,0.00000877 1516,511.5031,235.0156,41.3898,86.1037,0.00000001 1516,462.6869,216.8935,22.5218,47.8985,0.00000000 1516,275.1245,183.3469,55.3726,123.6522,0.00000000 1517,161.2124,211.6652,55.9531,134.9829,1.00000000 1517,566.6199,245.2531,72.6012,193.9183,1.00000000 1517,206.0594,225.2765,44.5921,119.0407,0.00029115 1517,439.6260,220.7613,23.5314,50.5147,0.00011500 1517,232.0024,236.6763,36.1710,89.4271,0.00000002 1517,559.6716,276.0143,47.1222,108.6944,0.00000000 1517,576.1634,174.5719,63.9833,153.7672,0.00000000 1518,28.0970,221.3987,71.3301,174.6936,0.99999744 1518,64.3303,208.8860,81.1074,230.4508,0.99990046 1518,450.7594,208.6801,25.6348,53.9078,0.38854989 1518,105.9250,204.4863,67.6439,174.9491,0.00000000 1519,440.1680,206.6969,27.0999,58.5064,0.00009551 1519,462.9921,215.2951,24.3646,51.5305,0.00003126 1519,479.1053,222.3837,23.1276,48.5825,0.00000000 1519,442.8098,169.3352,50.1871,106.1808,0.00000000 1519,629.9822,229.9214,10.1645,84.8406,0.00000000 1519,638.3427,240.0712,1.8040,66.5864,0.00000000 1519,404.5909,114.8483,96.8122,222.6734,0.00000000 1519,629.6320,480.4587,10.5147,31.6880,0.00000000 1520,463.6608,218.3570,25.8379,49.8313,0.00268664 1520,600.9227,242.4209,23.6316,50.4043,0.00000008 1520,447.1288,217.7043,27.0625,55.4451,0.00000005 1520,122.2389,269.6888,38.1141,77.2568,0.00000000 1520,116.1952,183.9658,60.7069,155.2888,0.00000000 1520,135.1770,112.8699,87.8425,272.7833,0.00000000 1520,35.1655,223.4574,86.6055,278.8048,0.00000000 1520,628.1588,456.6683,11.9879,55.4784,0.00000000 1520,635.3989,486.9926,4.7478,25.1541,0.00000000 1521,458.4649,223.9126,27.6905,51.9213,0.00654299 1521,472.3080,207.5367,25.5729,57.3576,0.00000897 1521,438.8298,217.9907,27.5329,55.8609,0.00000000 1521,89.7070,196.8176,28.4392,68.8146,0.00000000 1521,629.4784,479.6751,10.6683,32.4716,0.00000000 1522,495.8115,205.3277,30.3033,59.0114,0.96029282 1522,484.9660,216.3877,22.7794,52.3468,0.03261546 1522,598.9597,230.6535,24.3131,56.1736,0.00000008 1522,474.1116,141.8390,49.8493,117.1094,0.00000000 1522,117.2259,64.3705,90.8280,272.1290,0.00000000 1522,635.4408,233.3458,4.7059,76.6139,0.00000000 1522,627.5004,455.6647,12.6463,56.4820,0.00000000 1522,442.6618,122.3226,105.0642,219.7929,0.00000000 1522,635.0474,486.5016,5.0993,25.6451,0.00000000 1523,530.6839,210.8530,29.9677,58.7393,0.16582425 1523,516.6471,205.9019,25.5771,58.3089,0.00000051 1523,547.7731,220.1671,22.1883,52.4593,0.00000000 1523,629.5043,479.2448,10.6424,32.9019,0.00000000 1523,1.0000,382.8066,59.1846,129.3401,0.00000000 1523,490.4295,112.6612,96.8118,205.9732,0.00000000 1524,556.5400,224.7534,30.5589,64.0101,0.93807983 1524,543.4408,232.0806,24.8909,59.3914,0.00000003 1524,545.1906,169.6229,52.8724,132.6464,0.00000000 1524,631.9451,226.7716,8.2016,78.9111,0.00000000 1524,638.5098,243.7298,1.6369,63.7172,0.00000000 1524,628.0494,455.9010,12.0973,56.2457,0.00000000 1524,635.1690,486.8511,4.9777,25.2956,0.00000000 1525,536.1378,238.5242,27.3137,59.0171,0.00000000 1525,635.2574,487.9144,4.8893,24.2323,0.00000000 1525,627.5720,458.6061,12.5747,53.5406,0.00000000 1526,635.4474,488.5387,4.6993,23.6080,0.00000000 1526,627.4289,459.2585,12.7178,52.8882,0.00000000 1527,635.4434,487.5989,4.7033,24.5478,0.00000000 1527,627.8314,458.3483,12.3153,53.7984,0.00000000 1528,475.7001,220.2717,22.3198,57.1631,0.00000000 1528,469.0994,87.6073,87.8023,277.5060,0.00000000 1528,1.0000,284.6829,55.9887,227.4638,0.00000000 1528,629.7436,481.2777,10.4031,30.8690,0.00000000 1529,629.6170,479.4873,10.5297,32.6594,0.00000000 1530,82.9979,200.7000,30.1142,64.2997,0.00000286 1530,629.5949,480.9164,10.5518,31.2303,0.00000000 1531,532.4536,218.4058,28.2106,69.1390,0.00000000 1531,517.3860,224.5153,25.0392,66.2913,0.00000000 1531,627.7664,456.8043,12.3803,55.3424,0.00000000 1531,635.6740,487.6578,4.4727,24.4889,0.00000000 1532,181.4388,205.1144,36.4155,76.7419,0.01199262 1532,155.4512,189.2548,44.0615,98.1098,0.00000000 1532,142.8163,178.4362,88.1460,238.6319,0.00000000 1532,1.0000,381.9282,59.6637,130.2185,0.00000000 1532,629.7343,480.5428,10.4124,31.6039,0.00000000 1533,603.9537,391.1226,36.1930,121.0241,0.00000000 1533,626.9641,454.6545,13.1826,57.4922,0.00000000 1533,1.0000,388.0051,60.7924,124.1416,0.00000000 1533,634.9302,486.6098,5.2165,25.5369,0.00000000 1534,69.0091,264.2396,53.6121,124.5336,0.00000000 1534,627.0054,455.6599,13.1413,56.4868,0.00000000 1534,1.0000,384.6018,59.3995,127.5449,0.00000000 1534,605.9462,391.9656,34.2005,120.1811,0.00000000 1534,634.8993,486.3651,5.2474,25.7816,0.00000000 1535,530.7502,214.1263,22.4688,58.0895,0.00000000 1535,581.9811,215.6523,25.4053,61.9742,0.00000000 1535,605.6074,390.6066,34.5393,121.5401,0.00000000 1535,626.8788,454.5346,13.2679,57.6121,0.00000000 1535,1.0000,381.0605,59.3467,131.0862,0.00000000 1535,634.7852,486.7027,5.3615,25.4440,0.00000000 1536,607.5713,230.5607,23.8282,55.1243,0.99979812 1536,590.8182,229.1526,28.6888,58.0788,0.00000002 1536,446.3958,223.5580,29.7236,67.4069,0.00000000 1536,623.4519,237.6522,16.6948,53.6360,0.00000000 1536,595.4095,192.9971,44.7372,107.3171,0.00000000 1536,629.2199,480.4256,10.9268,31.7211,0.00000000 1536,634.4391,214.1090,5.7076,72.8420,0.00000000 1537,475.2863,224.8750,21.7294,57.5854,0.00000000 1537,605.6113,392.0638,34.5354,120.0829,0.00000000 1537,629.4459,479.4571,10.7008,32.6896,0.00000000 1537,1.0000,384.4104,59.3275,127.7363,0.00000000 1537,633.9367,242.2306,6.2100,76.0732,0.00000000 1538,604.8249,208.4783,24.5508,53.5364,0.00000040 1538,584.9961,208.8286,21.9235,56.9995,0.00000000 1538,629.1906,479.0668,10.9561,33.0799,0.00000000 1538,604.4625,389.9958,35.6842,122.1509,0.00000000 1538,631.7994,193.4915,8.3473,78.9935,0.00000000 1538,1.0000,381.9688,58.4866,130.1779,0.00000000 1539,436.2493,211.9167,21.9941,57.8784,0.00000000 1539,390.1528,212.9160,28.1609,57.4205,0.00000000 1539,541.7286,209.9234,24.1208,54.9905,0.00000000 1539,605.9277,395.0557,34.2190,117.0910,0.00000000 1539,627.1338,457.1624,13.0129,54.9843,0.00000000 1539,1.0000,382.4424,58.8528,129.7043,0.00000000 1539,635.5580,487.8895,4.5887,24.2572,0.00000000 1540,521.8346,214.1427,23.7412,56.6254,0.00000000 1540,506.0161,219.0948,22.0147,53.7504,0.00000000 1540,384.4500,220.7127,26.0353,57.1804,0.00000000 1540,629.6273,478.3851,10.5194,33.7616,0.00000000 1540,606.2295,394.6833,33.9172,117.4634,0.00000000 1541,588.5087,215.1552,25.2791,59.9004,0.00000288 1541,602.1616,225.3136,27.3879,62.7389,0.00000003 1541,474.0369,215.1519,27.9562,57.1709,0.00000000 1541,397.9163,221.6483,26.8288,58.8300,0.00000000 1541,511.7694,223.2964,36.6892,86.1813,0.00000000 1541,629.3068,478.3368,10.8399,33.8099,0.00000000 1541,628.9548,223.0209,11.1919,83.1058,0.00000000 1541,634.9913,196.1988,5.1554,75.5384,0.00000000 1541,604.5994,390.9191,35.5473,121.2276,0.00000000 1542,429.2109,210.2514,23.6831,53.0300,0.00000001 1542,477.8822,198.1932,40.0490,87.2873,0.00000000 1542,524.8262,182.5195,46.5032,101.6578,0.00000000 1542,416.8121,212.5415,22.9915,53.9961,0.00000000 1542,629.6829,479.0232,10.4638,33.1235,0.00000000 1542,604.9454,393.5580,35.2013,118.5887,0.00000000 1542,1.0000,383.3345,58.5554,128.8122,0.00000000 1542,464.2803,119.1064,86.2412,247.0541,0.00000000 1543,460.0570,203.3554,24.2525,53.8489,0.00000000 1543,629.6502,479.0688,10.4965,33.0779,0.00000000 1543,1.0000,382.2227,59.4289,129.9240,0.00000000 1543,605.1437,392.3780,35.0030,119.7687,0.00000000 1543,636.8739,194.1301,3.2728,62.8379,0.00000000 1544,403.2470,210.6791,24.6455,55.6802,0.22617590 1544,386.1599,208.3713,29.1733,58.6674,0.00000000 1544,489.1431,219.7451,23.8459,58.6323,0.00000000 1544,1.0000,388.3048,60.2484,123.8419,0.00000000 1544,604.3843,392.0701,35.7624,120.0766,0.00000000 1544,627.3851,456.2210,12.7616,55.9257,0.00000000 1544,635.3450,486.9743,4.8017,25.1724,0.00000000 1545,412.2871,212.4244,25.4049,51.7137,0.99998713 1545,262.7684,208.1628,24.0339,51.2653,0.00000782 1545,403.0544,203.3231,21.0941,54.9184,0.00000010 1545,542.4595,202.4376,24.9867,56.3967,0.00000001 1545,528.2485,205.6203,24.0645,57.6781,0.00000001 1545,429.6320,211.0356,26.9889,56.4711,0.00000000 1545,629.6110,479.7271,10.5357,32.4196,0.00000000 1546,423.0664,212.5448,27.6701,60.7361,0.99999171 1546,592.7793,206.6529,29.4888,55.3975,0.00053727 1546,574.0930,204.1901,29.9907,59.1912,0.00000379 1546,629.4917,479.6191,10.6550,32.5276,0.00000000 1546,634.4248,199.1867,5.7219,72.0048,0.00000000 1547,467.7703,220.8617,37.7276,81.8249,1.00000000 1547,438.2656,217.6973,38.6379,82.5216,0.00000000 1547,604.1703,391.1301,35.9764,121.0166,0.00000000 1547,1.0000,381.3712,59.8711,130.7755,0.00000000 1547,626.7248,455.9676,13.4219,56.1791,0.00000000 1547,438.4289,196.8674,91.6238,202.3268,0.00000000 1547,635.0967,486.9692,5.0500,25.1775,0.00000000 1548,597.5658,214.5862,41.3327,116.5854,0.99926662 1548,622.5947,237.0658,17.5520,122.3818,0.00000000 1548,632.3384,246.2110,7.8083,67.8607,0.00000000 1548,482.2093,114.3945,88.6115,270.0198,0.00000000 1548,629.1915,479.2126,10.9552,32.9341,0.00000000 1549,1.0000,386.1883,59.7662,125.9584,0.00000000 1549,604.1450,392.1593,36.0017,119.9874,0.00000000 1549,626.7509,455.2359,13.3958,56.9108,0.00000000 1549,634.7625,486.8838,5.3842,25.2629,0.00000000 1550,602.6618,393.2067,37.4849,118.9400,0.00000000 1550,635.5764,492.9456,4.5703,19.2011,0.00000000 1550,625.9965,458.5948,14.1502,53.5519,0.00000000 1551,602.3173,392.0718,37.8294,120.0749,0.00000000 1551,629.7023,481.9755,10.4444,30.1712,0.00000000 1552,635.9643,493.9536,4.1824,18.1931,0.00000000 1552,629.7168,482.5701,10.4299,29.5766,0.00000000 1552,602.0138,392.5732,38.1329,119.5735,0.00000000 1553,489.4235,219.8234,38.3234,88.1647,1.00000000 1553,525.9120,220.0845,37.5896,88.1129,0.99998635 1553,471.1889,146.5033,83.0600,227.1299,0.00000000 1553,629.6434,481.9480,10.5033,30.1987,0.00000000 1554,498.3325,227.9066,47.4569,116.5072,1.00000000 1554,540.7954,225.0782,40.6956,115.3335,1.00000000 1554,518.8731,181.8843,77.4152,205.6932,0.00000000 1554,629.5378,481.7243,10.6089,30.4224,0.00000000 1555,596.4634,258.5883,43.6833,115.8408,0.00036307 1555,622.5388,291.6921,17.6079,114.3718,0.00000000 1555,623.6812,211.4565,16.4655,129.6340,0.00000000 1555,633.0869,307.6367,7.0598,71.0525,0.00000000 1555,629.4600,479.0481,10.6867,33.0986,0.00000000 1556,629.6418,479.0446,10.5049,33.1021,0.00000000 1557,572.2374,204.7858,61.4140,137.3378,0.00000000 1557,50.0072,201.4670,28.4488,62.8421,0.00000000 1557,598.2054,272.1941,37.2895,80.6258,0.00000000 1557,629.0432,268.2006,11.1035,89.6037,0.00000000 1557,627.5159,456.8762,12.6308,55.2705,0.00000000 1557,633.0332,234.9857,7.1135,78.9833,0.00000000 1557,635.4539,487.3630,4.6928,24.7837,0.00000000 1558,182.0901,207.8207,28.5136,50.8392,0.00000000 1558,410.8986,213.0493,29.0408,56.5169,0.00000000 1558,1.0000,381.2226,59.5785,130.9241,0.00000000 1558,627.6918,459.8624,12.4549,52.2843,0.00000000 1558,635.9554,488.9298,4.1913,23.2169,0.00000000 1559,148.8024,207.4978,34.0736,58.1810,0.00000022 1559,414.0668,213.0771,22.1747,47.6197,0.00000005 1559,635.8443,488.3124,4.3024,23.8343,0.00000000 1559,628.8501,459.7361,11.2966,52.4106,0.00000000 1560,449.4098,214.0059,22.4704,51.1386,0.05559416 1560,461.8966,214.3603,24.6505,54.3103,0.00000016 1560,112.8836,185.5618,37.8700,74.3288,0.00000000 1560,377.0506,206.9721,25.4460,50.1975,0.00000000 1560,629.7832,482.8388,10.3635,29.3079,0.00000000 1561,488.6834,207.7840,38.2617,89.0013,0.00007752 1561,73.7115,210.2461,27.9374,59.2506,0.00003419 1561,403.7827,203.2554,26.9057,54.5629,0.00000004 1561,61.6942,158.8108,52.1281,121.6830,0.00000000 1561,472.3990,142.3596,87.5553,212.7824,0.00000000 1562,554.7594,186.3079,39.2059,109.0253,0.99735695 1562,448.4539,183.3025,23.1015,51.7885,0.09722306 1562,34.8751,187.8796,32.2709,60.6236,0.00282268 1562,592.1007,228.1361,34.8436,79.1942,0.00000131 1563,504.9329,212.2635,26.2498,57.1618,0.81969893 1563,5.9921,222.2703,30.0333,65.8457,0.00000001 1563,518.2264,222.4226,24.0552,52.2783,0.00000000 1563,1.0000,175.9150,51.2403,244.4896,0.00000000 1563,634.5723,200.6608,5.5744,75.3181,0.00000000 1563,469.6356,111.3680,100.4170,208.8844,0.00000000 1563,604.0342,390.1646,36.1125,121.9821,0.00000000 1563,627.2974,456.3862,12.8493,55.7605,0.00000000 1563,636.0800,493.9450,4.0667,18.2017,0.00000000 1564,580.2377,194.1617,27.6993,62.8310,0.00000000 1564,529.5425,98.9055,90.2359,274.8096,0.00000000 1564,629.7219,483.2737,10.4248,28.8730,0.00000000 1565,629.7784,482.5118,10.3683,29.6349,0.00000000 1566,603.1848,391.8335,36.9619,120.3132,0.00000000 1566,626.9418,457.7257,13.2049,54.4210,0.00000000 1566,635.9846,494.3663,4.1621,17.7804,0.00000000 1567,35.2888,69.2935,86.3568,281.0077,0.00000000 1567,602.9301,392.9761,37.2166,119.1706,0.00000000 1567,635.6557,492.4115,4.4910,19.7352,0.00000000 1567,626.0318,458.0934,14.1149,54.0533,0.00000000 1568,627.4532,455.7939,12.6935,56.3528,0.00000000 1568,605.4291,390.9589,34.7176,121.1878,0.00000000 1568,316.9958,467.4041,40.0336,44.7426,0.00000000 1568,634.8945,486.5951,5.2522,25.5516,0.00000000 1568,1.0000,382.6084,59.4473,129.5383,0.00000000 1568,4.6142,44.7095,84.3196,278.1942,0.00000000 1569,159.2926,131.5278,49.9253,149.8785,0.00000000 1569,629.2799,479.2134,10.8668,32.9333,0.00000000 1569,1.0000,146.0208,62.1893,267.2014,0.00000000 1569,121.1044,112.9226,62.3663,174.2481,0.00000000 1569,169.4058,101.6479,81.4031,258.7654,0.00000000 1570,417.2488,139.8053,43.1323,121.5651,0.00000000 1570,389.3309,150.5671,53.4076,157.4317,0.00000000 1570,409.8427,197.4858,63.8782,148.2218,0.00000000 1570,413.6886,52.5763,78.6153,244.7902,0.00000000 1570,629.8064,479.3816,10.3403,32.7651,0.00000000 1571,108.9276,204.5857,26.8765,54.3379,0.00438318 1571,199.4376,202.4729,35.0883,64.2976,0.00000020 1571,219.8613,217.4885,25.0192,53.6740,0.00000002 1571,459.3432,86.6710,25.5694,62.3919,0.00000000 1571,1.0000,442.8908,29.8794,69.2559,0.00000000 1571,1.0000,386.6340,60.6096,125.5127,0.00000000 1571,605.0080,392.3770,35.1387,119.7697,0.00000000 1571,627.6226,456.0091,12.5241,56.1376,0.00000000 1571,635.0950,486.4328,5.0517,25.7139,0.00000000 1572,282.0570,205.8216,25.1907,50.2171,0.96628833 1572,386.9787,206.7300,29.4554,57.4353,0.61826956 1572,402.4159,216.7646,23.5208,55.1822,0.00000000 1572,374.3042,202.3279,23.3964,59.3654,0.00000000 1572,354.7725,99.9419,100.1781,206.4517,0.00000000 1572,603.9440,390.6183,36.2027,121.5284,0.00000000 1572,626.6358,454.9628,13.5109,57.1839,0.00000000 1572,1.0000,383.5084,59.4021,128.6383,0.00000000 1572,634.8978,486.5007,5.2489,25.6460,0.00000000 1573,360.1366,211.4904,25.5908,52.6636,0.66179609 1573,490.0343,214.3555,25.3622,59.5052,0.05930423 1573,345.8232,208.1138,23.3528,51.6197,0.00000000 1573,329.6371,205.1556,23.9212,53.3156,0.00000000 1573,629.1138,479.6492,11.0329,32.4975,0.00000000 1573,604.4374,389.7316,35.7093,122.4151,0.00000000 1573,1.0000,384.4241,59.2859,127.7226,0.00000000 1574,403.7210,212.1133,29.3395,61.7302,0.99999744 1574,566.7599,214.0292,30.6749,64.5398,0.99537742 1574,548.9461,214.8813,29.3749,57.2961,0.00006837 1574,585.5013,214.3274,25.3327,55.3620,0.00000000 1574,359.6491,211.0040,23.6993,52.7095,0.00000000 1575,446.7950,212.1294,34.9327,73.5149,0.99997574 1575,413.8972,204.3274,24.6929,50.5512,0.00011303 1575,385.2956,205.3953,24.8453,49.8831,0.00000621 1575,20.6426,190.4264,33.2071,73.3201,0.00000060 1575,368.8778,197.1423,27.1437,49.9073,0.00000005 1576,529.7343,210.2824,49.3141,105.4806,1.00000000 1576,440.5576,205.6869,25.3629,52.0410,0.00171555 1576,402.7064,202.4858,27.2247,52.7513,0.00133437 1576,28.2121,203.1411,28.5069,53.2332,0.00001149 1576,77.5552,196.9260,27.0777,55.6933,0.00000877 1576,425.3805,208.9416,25.0937,52.5242,0.00000000 1577,434.3026,204.7637,26.8421,53.9447,0.99889892 1577,412.5539,199.5477,29.5195,55.9584,0.99184674 1577,467.8234,203.0201,24.1288,55.0166,0.89902651 1577,74.1163,200.8895,30.6549,52.3639,0.01498797 1577,452.8448,202.3873,24.7280,52.7272,0.00000023 1577,414.9427,169.8992,51.1847,100.8254,0.00000000 1577,458.3429,170.7860,50.4313,110.4949,0.00000000 1577,629.4832,480.1066,10.6635,32.0401,0.00000000 1578,480.3868,202.3801,26.0074,58.3628,0.99993759 1578,512.6055,192.2473,36.7245,69.4073,0.97507089 1578,499.9810,199.6951,23.7731,51.8021,0.00113288 1578,43.1205,169.2404,34.7373,78.7556,0.00000000 1578,469.1540,176.8665,50.7757,102.5072,0.00000000 1578,47.5138,76.9293,83.4943,257.8862,0.00000000 1579,550.3990,207.5666,29.5691,71.1524,0.99933261 1579,529.8280,204.5010,34.9780,71.5962,0.65628266 1579,578.6705,211.1568,25.7069,55.8802,0.28376734 1579,508.3729,201.8251,35.6435,68.1957,0.15075837 1579,92.1797,186.4429,25.7409,53.5743,0.12548211 1579,11.2887,197.0377,28.6900,56.8547,0.03589723 1579,112.5896,190.0679,24.8668,51.6566,0.00000001 1580,573.1530,186.1576,45.7147,117.3433,0.99978423 1580,57.3105,188.5603,26.7329,53.9553,0.61774445 1580,413.4984,199.7522,25.2647,59.6881,0.56738561 1580,566.7058,188.4682,29.3517,65.1872,0.00581587 1580,88.9609,191.2623,24.7970,49.9940,0.00072053 1580,77.6711,184.7066,22.2055,53.2035,0.00000002 1581,432.2460,203.6847,26.4035,63.8605,0.99482268 1581,454.2898,203.0724,29.4674,68.2210,0.79867470 1581,33.8708,196.8863,26.8884,51.4749,0.10890044 1581,50.9672,195.6690,25.2392,51.8407,0.00002637 1581,16.0265,200.5567,29.7947,55.8309,0.00000051 1582,450.3674,181.4173,27.2172,73.4341,0.99980217 1582,476.1522,179.2065,30.4726,77.9104,0.99702048 1582,464.1386,178.3773,26.5267,62.2730,0.00000012 1582,101.1348,171.7705,28.7687,55.6889,0.00000000 1583,508.4827,199.5745,36.7759,89.3887,0.99986625 1583,473.6772,201.9845,33.7101,92.1021,0.99948114 1583,74.8673,199.4392,31.7134,54.9314,0.00000342 1584,529.6702,217.8460,34.2437,94.1872,0.99612892 1584,577.0986,204.5359,42.4499,109.4661,0.99264473 1584,607.5242,205.5130,27.2781,65.6703,0.00000274 1584,43.1235,195.9641,36.0820,63.8115,0.00000003 1584,66.0730,190.4031,30.3942,62.1960,0.00000000 1585,21.0399,211.7481,26.7970,56.4604,0.01996949 1585,140.6811,213.4262,27.3779,48.3540,0.00000435 1585,36.4717,203.9172,32.9168,56.8242,0.00000016 1585,3.0730,197.4072,31.9252,69.5113,0.00000000 1585,409.5335,216.5070,28.0494,59.5107,0.00000000 1585,13.1175,169.4107,49.4576,107.6067,0.00000000 1585,629.2415,479.9724,10.9052,32.1743,0.00000000 1585,595.2332,215.6544,34.5513,79.8705,0.00000000 1586,109.1356,216.7208,35.7933,56.1433,0.00001175 1586,417.4824,209.3064,26.9799,57.1014,0.00000014 1586,128.5836,229.9684,24.7601,49.1050,0.00000000 1586,629.3173,479.7704,10.8294,32.3763,0.00000000 1586,604.2042,391.3956,35.9425,120.7511,0.00000000 1586,74.5544,142.3388,102.6755,218.1990,0.00000000 1587,59.6547,217.3918,27.6508,53.9765,0.47838530 1587,416.4070,224.6971,25.4566,52.4198,0.00001424 1587,15.2193,188.4679,28.9914,59.7914,0.00000001 1587,431.0567,230.2569,22.4650,53.3495,0.00000000 1587,406.6220,188.9539,51.3985,105.1062,0.00000000 1587,3.3668,146.6022,54.1328,124.4062,0.00000000 1587,629.5535,479.1839,10.5932,32.9628,0.00000000 1587,313.9651,1.0000,83.6435,261.3185,0.00000000 1588,428.0370,219.3371,28.0965,52.0301,0.00001366 1588,152.6534,205.2496,23.2808,51.1145,0.00000000 1588,165.9326,196.9382,26.7694,54.1738,0.00000000 1588,416.1587,214.5071,21.4311,53.7355,0.00000000 1588,444.2666,224.0498,22.8551,52.3579,0.00000000 1588,630.0001,483.8795,10.1466,28.2672,0.00000000 1589,446.3894,214.4187,25.4108,56.0307,0.00000004 1589,145.6368,203.4727,23.0046,55.2452,0.00000000 1589,629.3121,478.0966,10.8346,34.0501,0.00000000 1589,604.4995,390.6441,35.6472,121.5026,0.00000000 1590,473.0504,206.0038,27.7907,57.4188,0.97496557 1590,487.8834,207.4255,30.4605,58.5843,0.00000005 1590,627.1531,454.3945,12.9936,57.7522,0.00000000 1590,605.3961,391.3644,34.7506,120.7823,0.00000000 1590,1.0000,384.7518,59.5612,127.3949,0.00000000 1590,634.7933,485.9080,5.3534,26.2387,0.00000000 1591,516.9121,208.7474,29.8842,66.2059,0.99775422 1591,505.1302,205.5732,24.5938,58.4132,0.00000007 1591,532.7308,215.5263,32.5646,63.2648,0.00000000 1591,602.4820,392.5999,37.6647,119.5468,0.00000000 1591,482.3161,111.7282,94.6875,215.9353,0.00000000 1591,626.9393,454.8191,13.2074,57.3276,0.00000000 1591,635.2726,486.4610,4.8741,25.6857,0.00000000 1592,605.9280,195.1726,33.5265,94.5301,0.22292444 1592,90.4994,190.9165,23.2797,49.6491,0.00000532 1592,113.2585,189.9944,21.8855,47.7921,0.00000009 1592,628.4705,217.6039,11.6762,77.0782,0.00000000 1592,595.2908,135.5145,44.8559,239.1450,0.00000000 1593,85.6145,189.4203,24.1468,49.8191,0.00001684 1593,62.6118,194.1193,23.6348,51.7803,0.00000324 1593,629.4084,477.8524,10.7383,34.2943,0.00000000 1593,1.0000,383.1824,59.4967,128.9643,0.00000000 1594,49.6203,190.6881,24.0746,51.2740,0.24403618 1594,35.1586,187.7274,25.1980,50.8596,0.00681813 1594,568.7510,185.0150,27.8662,53.3884,0.00005004 1594,19.3524,185.6572,26.8884,54.5218,0.00000045 1594,62.5129,183.6708,22.1828,53.3937,0.00000000 1594,631.5070,484.0374,8.6397,28.1093,0.00000000 1595,14.3063,236.2959,27.8678,54.8324,0.89924926 1595,595.0530,226.7029,24.8080,65.8687,0.00001573 1595,87.3573,204.3508,34.9949,70.4593,0.00000166 1595,1.0000,241.7324,18.9814,62.5143,0.00000000 1595,629.7689,481.7754,10.3778,30.3713,0.00000000 1596,391.0963,186.9764,22.4445,49.8998,0.00182046 1596,65.9352,186.7079,32.2582,60.1854,0.00001242 1596,608.3953,199.6517,26.0528,57.2855,0.00000000 1596,50.0862,121.7937,55.7800,146.0001,0.00000000 1596,635.8220,196.2227,4.3247,55.8671,0.00000000 1596,629.5756,199.8120,10.5711,84.1847,0.00000000 1596,635.3495,487.2191,4.7972,24.9276,0.00000000 1596,628.4464,458.4596,11.7003,53.6871,0.00000000 1597,32.6915,169.2607,36.5100,79.2044,0.00027548 1597,399.1198,200.2961,22.0939,49.4024,0.00005538 1597,25.2196,195.9497,26.2850,58.2009,0.00000000 1597,17.3206,103.7107,64.0935,171.2849,0.00000000 1597,1.0000,383.3355,58.8947,128.8112,0.00000000 1597,628.4027,455.4346,11.7440,56.7121,0.00000000 1597,635.3648,486.6058,4.7819,25.5409,0.00000000 1598,419.4663,204.3145,22.5826,53.4505,0.99983013 1598,7.6747,204.3978,26.3994,52.6477,0.00000180 1598,430.8197,212.8066,21.6823,50.2189,0.00000021 1598,1.0000,210.0507,17.4503,58.6218,0.00000000 1598,15.3173,129.3251,27.0927,56.8084,0.00000000 1598,408.6250,173.8676,48.7158,100.5594,0.00000000 1598,629.1458,476.8255,11.0009,35.3212,0.00000000 1598,1.0000,87.4718,58.8164,263.5847,0.00000000 1599,460.4497,213.7386,24.6110,57.4129,0.99985141 1599,475.1632,216.6581,25.1760,57.0911,0.00000000 1599,629.2506,478.0217,10.8961,34.1250,0.00000000 1599,424.6959,105.8514,97.6530,209.7238,0.00000000 1600,540.0326,214.7650,31.4703,77.7013,0.99999964 1600,431.3933,209.8006,21.8836,52.4511,0.00084173 1600,42.6894,209.5579,27.5113,54.3343,0.00000000 1600,503.3752,175.1165,91.9455,227.6062,0.00000000 1600,629.4033,478.0631,10.7434,34.0836,0.00000000 1600,1.0000,384.8595,58.1984,127.2872,0.00000000 1601,469.8435,207.4269,22.9737,54.5735,0.99857116 1601,484.6268,214.2860,23.7058,52.5275,0.00000001 1601,457.0582,200.3303,20.8267,54.0556,0.00000000 1601,458.9710,183.3289,47.3127,99.0914,0.00000000 1601,427.7257,112.2727,101.0271,212.6975,0.00000000 1601,629.4612,477.7720,10.6855,34.3747,0.00000000 1602,544.2343,209.2858,31.9569,72.0577,0.00029733 1602,105.9370,203.6686,22.8324,53.7719,0.00000102 1602,78.7263,208.0309,22.8245,50.9563,0.00000069 1602,453.4037,204.0461,22.8748,54.3110,0.00000005 1602,604.4608,189.5626,23.2899,56.9154,0.00000001 1602,91.0286,205.8069,25.2308,54.9227,0.00000000 1602,636.0012,176.0289,4.1455,76.5518,0.00000000 1602,629.7637,480.1801,10.3830,31.9666,0.00000000 1603,508.8932,216.1435,24.3434,56.0499,0.99999899 1603,522.4519,216.6892,26.2285,57.7871,0.00000000 1603,33.2729,255.0689,29.8881,57.6568,0.00000000 1603,37.1061,211.4156,34.9376,73.8307,0.00000000 1603,498.4825,183.1718,49.6589,102.9650,0.00000000 1603,473.2754,113.6097,99.8469,215.0039,0.00000000 1603,19.4609,177.0120,81.8509,242.1314,0.00000000 1603,629.4246,479.4618,10.7221,32.6849,0.00000000 1604,37.4514,194.5465,34.8528,61.9850,0.00000003 1604,20.5632,193.1799,32.0611,59.2915,0.00000000 1604,59.7780,198.8578,27.9999,51.6032,0.00000000 1604,604.8848,390.4879,35.2619,121.6588,0.00000000 1604,1.0000,383.8684,59.6460,128.2783,0.00000000 1604,627.4913,454.6359,12.6554,57.5108,0.00000000 1604,635.0894,486.7261,5.0573,25.4206,0.00000000 1605,414.4221,214.7401,21.8541,48.5211,0.00000061 1605,13.0596,216.8574,23.1627,53.9818,0.00000000 1605,24.7327,208.5734,24.8787,56.3692,0.00000000 1605,379.5185,207.0832,22.8209,53.0717,0.00000000 1605,635.5427,487.8148,4.6040,24.3319,0.00000000 1605,628.0349,460.5981,12.1118,51.5486,0.00000000 1606,434.1590,206.1300,25.8426,46.7012,0.00342114 1606,451.1001,210.5140,25.4773,56.3246,0.00000000 1606,602.8446,393.3096,37.3021,118.8371,0.00000000 1606,627.2083,454.8965,12.9384,57.2502,0.00000000 1606,635.0201,485.9511,5.1266,26.1956,0.00000000 1607,465.8637,203.9803,25.3128,53.3770,0.00005079 1607,483.6273,183.8386,36.5767,81.0066,0.00000008 1607,455.9207,213.4430,22.9528,55.5464,0.00000000 1607,454.5739,170.4709,49.7940,102.3943,0.00000000 1607,628.2234,456.0837,11.9233,56.0630,0.00000000 1607,635.0138,486.4383,5.1329,25.7084,0.00000000 1608,519.7835,206.7592,24.7352,58.7396,0.99954391 1608,503.5451,213.3263,29.4624,64.2158,0.00000132 1608,532.8058,218.0115,23.2789,53.0525,0.00000002 1608,512.2633,172.3779,49.2224,102.5340,0.00000000 1608,602.2092,393.6983,37.9375,118.4484,0.00000000 1608,485.8418,94.9525,98.5258,208.0039,0.00000000 1608,627.0559,455.2489,13.0908,56.8978,0.00000000 1608,634.6895,486.2411,5.4572,25.9056,0.00000000 1609,611.5234,210.8164,28.6233,74.9051,0.00294573 1609,72.7309,207.1848,27.9031,51.3976,0.00007437 1609,113.4676,212.3885,23.9255,48.6018,0.00004063 1609,596.5098,197.6528,32.1026,69.8877,0.00000000 1609,595.3794,119.9925,44.7673,227.9986,0.00000000 1609,627.5422,184.7405,12.6045,82.3436,0.00000000 1609,631.9646,227.9731,8.1821,58.3760,0.00000000 1609,629.1954,477.6106,10.9513,34.5361,0.00000000 1610,344.0828,206.9066,22.0045,50.5272,0.00000001 1610,629.3091,477.7348,10.8376,34.4119,0.00000000 1611,348.0202,205.4724,28.5639,61.0417,0.99998993 1611,483.3457,207.3527,24.9445,54.0305,0.71248585 1611,124.1022,201.5285,24.1162,49.7214,0.00081389 1611,557.0441,186.8463,22.2815,51.3771,0.00000242 1611,54.8988,202.9222,25.5022,53.6098,0.00000230 1611,36.5152,204.2082,26.6668,52.9811,0.00000001 1611,629.9104,482.6599,10.2363,29.4868,0.00000000 1612,361.8362,203.2186,30.5167,71.9949,0.99999946 1612,517.6628,202.4872,26.4908,58.4864,0.99978548 1612,23.8545,198.4302,25.2053,55.4707,0.00087704 1612,91.6120,199.6416,25.7309,55.2912,0.00005053 1612,16.5002,190.5006,48.5537,113.2172,0.00000000 1613,374.5746,207.7156,36.0050,84.2457,1.00000000 1613,550.0856,204.4534,31.5939,70.8839,0.99997264 1613,47.1022,196.9135,32.2706,59.5980,0.99989629 1613,90.4074,230.1398,27.6981,68.6293,0.00000000 1614,417.0368,210.8631,44.8202,103.4105,1.00000000 1614,18.2905,206.0855,36.1197,61.4858,0.97342426 1614,614.6710,207.4472,25.4757,72.2804,0.65242809 1614,631.5958,220.4159,8.5509,58.8981,0.00000000 1615,499.1745,225.7846,59.6989,145.3267,1.00000000 1615,487.4946,232.5313,36.0328,88.5229,0.00000000 1615,512.9096,273.3116,28.4373,84.9934,0.00000000 1615,509.9331,227.0249,29.1320,87.1296,0.00000000 1615,627.1124,453.6073,13.0343,58.5394,0.00000000 1615,605.4874,390.0410,34.6593,122.1057,0.00000000 1615,634.9562,486.2053,5.1905,25.9414,0.00000000 1616,82.5315,195.2860,30.7342,59.7316,0.00057542 1616,419.8932,192.5297,25.2313,55.3976,0.00014971 1616,635.7004,488.1558,4.4463,23.9909,0.00000000 1616,627.9427,461.6718,12.2040,50.4749,0.00000000 1617,40.0571,177.4488,27.6932,66.2004,0.00000000 1617,627.6898,456.1160,12.4569,56.0307,0.00000000 1617,634.9773,486.2689,5.1694,25.8778,0.00000000 1618,425.6437,203.3657,21.7196,49.1499,0.16679743 1618,408.6500,205.3327,23.1501,50.4563,0.02136848 1618,172.3710,206.8344,23.1780,52.2591,0.00000000 1618,629.0677,478.2199,11.0790,33.9268,0.00000000 1618,604.7454,389.8370,35.4013,122.3097,0.00000000 1618,1.0000,384.9716,59.9591,127.1751,0.00000000 1619,475.0609,199.1971,22.5413,52.8752,0.81182355 1619,460.0744,200.0058,21.7008,52.8157,0.52946699 1619,23.8066,199.0397,42.7224,88.9135,0.00000008 1619,442.1367,198.3102,24.2384,58.2364,0.00000000 1619,463.5148,162.5137,50.1236,99.8239,0.00000000 1619,9.4555,167.1850,87.6007,237.4232,0.00000000 1619,422.7008,113.9938,102.4606,243.9274,0.00000000 1619,631.4377,487.4817,8.7090,24.6650,0.00000000 1620,534.6656,204.2489,29.0602,71.1159,0.99993646 1620,561.4778,199.9418,32.0752,76.2697,0.99992371 1620,485.6706,211.9035,23.7536,56.1090,0.97619945 1621,532.7351,215.5353,30.8139,69.5364,0.99993974 1621,123.9374,199.0211,28.6752,49.6749,0.00000005 1621,445.9466,204.4213,21.6764,53.9685,0.00000003 1621,516.1118,218.5714,29.8557,61.8473,0.00000003 1621,552.6649,218.7086,24.8971,53.0220,0.00000000 1621,4.4540,193.8521,33.8136,68.8192,0.00000000 1621,76.4308,197.0109,23.0783,58.2227,0.00000000 1621,433.8551,195.9561,23.3788,57.1048,0.00000000 1621,505.0592,115.7324,95.9251,218.3751,0.00000000 1621,629.4940,479.1877,10.6527,32.9590,0.00000000 1622,607.8148,225.2247,32.1075,78.8977,0.99999189 1622,440.4828,194.3717,23.1314,52.7819,0.02054004 1622,80.5173,199.7677,28.9808,51.3183,0.00162331 1622,63.7086,196.4451,28.4293,57.5718,0.00004192 1622,403.3089,199.8479,23.7095,51.1151,0.00000058 1622,99.0830,200.7326,27.3437,51.3677,0.00000056 1622,465.6807,204.0232,24.5795,67.4325,0.00000008 1622,630.9178,227.0396,9.2289,65.5516,0.00000000 1623,61.5301,204.4404,27.6607,49.5280,0.86399060 1623,36.3116,206.0713,23.7667,51.4814,0.45982608 1623,87.1384,200.3207,28.9440,51.5097,0.02738459 1623,510.5378,202.9863,20.5775,52.0253,0.01116093 1623,446.1160,205.6897,23.2343,53.7872,0.00019580 1623,521.2468,200.8032,21.9882,49.0790,0.00000680 1623,432.5135,214.1422,27.5761,64.0898,0.00000001 1624,604.6140,203.4624,24.3315,61.1836,0.99999160 1624,581.6722,202.8425,23.2780,55.2798,0.99989945 1624,11.4577,173.7386,45.7446,89.7370,0.97301829 1624,80.9334,200.9127,27.7032,56.3839,0.93390250 1624,506.6425,206.1684,22.0512,54.4021,0.91116363 1624,490.3480,205.5694,26.0968,60.0140,0.00000001 1625,559.9536,213.8458,29.5806,76.5677,0.86562330 1625,550.2987,213.3320,23.2618,55.8386,0.00000389 1625,426.7504,210.5293,23.5286,53.1249,0.00000015 1625,48.1301,189.8205,42.5599,91.4228,0.00000000 1625,553.6824,191.9907,55.9439,141.7018,0.00000000 1625,16.1795,80.0434,81.1270,261.8985,0.00000000 1625,629.7665,480.5128,10.3802,31.6339,0.00000000 1626,12.0535,169.5996,30.0195,55.9154,0.29571602 1626,610.6580,181.3956,26.0933,55.7142,0.00000745 1626,43.0172,169.5548,25.1097,55.0474,0.00000001 1626,29.8254,163.1625,22.0434,54.0685,0.00000001 1626,433.1482,168.9536,25.0019,52.7199,0.00000000 1626,595.1618,134.5613,44.9849,259.5913,0.00000000 1626,622.8644,165.9116,17.2823,122.3169,0.00000000 1626,634.4714,180.9919,5.6753,64.5177,0.00000000 1627,6.0757,172.3315,42.5698,107.6577,0.00008704 1627,448.6159,211.8931,23.5314,47.6790,0.00000012 1627,27.5173,206.3125,26.6727,56.7732,0.00000000 1627,438.5308,81.0140,28.9262,61.5488,0.00000000 1627,425.3442,24.5547,56.4385,136.5955,0.00000000 1627,1.0000,151.9404,80.8071,225.7790,0.00000000 1627,1.0000,382.0503,59.0201,130.0964,0.00000000 1627,628.8813,457.0831,11.2654,55.0636,0.00000000 1627,635.5276,487.2326,4.6191,24.9141,0.00000000 1628,459.7459,213.7196,22.1881,49.7773,0.00003934 1628,450.3185,202.1364,20.2856,50.2003,0.00000002 1628,629.4645,479.4307,10.6822,32.7160,0.00000000 1629,480.9031,215.6190,22.6911,52.8941,0.99999535 1629,464.2531,212.3392,23.7563,55.0190,0.00000009 1629,491.0881,224.9412,24.9812,53.0590,0.00000002 1629,465.5083,171.0326,49.6411,102.5550,0.00000000 1629,443.6634,99.6242,98.8688,213.1646,0.00000000 1629,629.4427,478.2835,10.7040,33.8632,0.00000000 1630,577.8830,215.6298,30.1935,68.9510,0.83037865 1630,564.0194,220.3873,25.9488,64.3060,0.07485575 1630,572.1595,3.1748,60.2601,137.0137,0.00000000 1630,544.8431,83.8451,81.0592,223.0210,0.00000000 1630,629.0108,477.4253,11.1359,34.7214,0.00000000 1630,633.7815,49.1978,6.3652,78.7077,0.00000000 1631,385.3463,209.8231,22.6023,57.0143,0.60995209 1631,397.4095,220.4043,23.8854,56.1520,0.00000565 1631,379.2103,187.3549,45.6891,106.9283,0.00000000 1631,1.0000,200.3714,59.5614,246.3636,0.00000000 1631,340.3846,118.4433,102.7862,225.1885,0.00000000 1631,601.2925,392.2638,38.8542,119.8829,0.00000000 1631,627.3214,454.7184,12.8253,57.4283,0.00000000 1631,634.8922,486.7716,5.2545,25.3751,0.00000000 1632,426.7845,215.3158,24.6398,55.3630,0.93904895 1632,410.2806,212.2868,24.0866,56.6162,0.93861425 1632,271.6964,261.1147,28.6087,53.5503,0.00000000 1632,407.0193,189.0832,45.7743,104.6134,0.00000000 1632,369.3866,110.0409,101.8574,212.2407,0.00000000 1632,627.7437,456.0920,12.4030,56.0547,0.00000000 1632,635.2710,487.4323,4.8757,24.7144,0.00000000 1633,417.7444,214.6268,25.8404,59.8185,0.99259818 1633,433.3037,219.1004,27.7329,59.9976,0.06144597 1633,417.3723,181.6919,48.9947,128.2743,0.00000000 1633,373.9052,126.5182,99.1661,219.4704,0.00000000 1633,635.4043,487.4931,4.7424,24.6536,0.00000000 1633,627.9455,455.6605,12.2012,56.4862,0.00000000 1634,444.3168,220.7176,26.6508,66.9579,0.99999493 1634,426.1704,220.3884,29.2865,65.6520,0.99940449 1634,400.4099,125.4431,96.6427,212.6169,0.00000000 1634,628.0060,456.2603,12.1407,55.8864,0.00000000 1634,635.4578,487.1132,4.6889,25.0335,0.00000000 1635,467.5872,213.0557,33.7359,80.5459,0.99960732 1635,489.3179,221.7967,26.0096,57.7070,0.00000001 1635,437.7421,119.7285,94.8085,227.1544,0.00000000 1635,627.9476,456.1175,12.1991,56.0292,0.00000000 1635,635.3557,487.1692,4.7910,24.9775,0.00000000 1636,512.4624,217.7780,39.0309,101.4139,0.99967998 1636,493.3698,221.7023,36.4166,80.5768,0.00000000 1636,1.0000,204.5671,58.6195,256.2245,0.00000000 1636,166.1891,96.5457,86.2775,285.7656,0.00000000 1636,501.9645,169.6530,77.6779,205.7301,0.00000000 1636,629.5264,479.6030,10.6203,32.5437,0.00000000 1637,577.9049,209.4253,50.4603,130.1975,0.99999690 1637,575.2691,214.1211,29.6478,65.0089,0.00000000 1637,1.7889,263.3383,45.1089,117.6536,0.00000000 1637,1.0000,216.3417,80.4236,241.5612,0.00000000 1637,627.2495,236.5727,12.8972,89.4687,0.00000000 1637,633.0504,211.1646,7.0963,76.4649,0.00000000 1637,635.6666,487.4179,4.4801,24.7288,0.00000000 1638,1.0000,215.4874,59.0913,269.8332,0.00000000 1638,631.9583,487.4641,8.1884,24.6826,0.00000000 1639,361.2801,199.0270,26.7324,56.9405,0.00000001 1639,635.7085,488.2685,4.4382,23.8782,0.00000000 1640,356.4127,206.8966,24.5272,57.4118,0.00000062 1640,635.6111,487.7654,4.5356,24.3813,0.00000000 1640,628.5077,458.5113,11.6390,53.6354,0.00000000 1641,354.0100,207.4797,24.8547,56.1352,0.00000000 1641,156.3240,139.1472,42.2112,114.6605,0.00000000 1641,137.0394,90.7860,83.0556,261.4322,0.00000000 1641,1.0000,226.4201,58.1869,255.3236,0.00000000 1641,635.8213,488.0862,4.3254,24.0605,0.00000000 1641,628.4869,457.2698,11.6598,54.8769,0.00000000 1642,360.7945,207.0482,23.9482,55.3953,0.00000097 1642,264.4725,290.2011,35.6181,72.5001,0.00000000 1642,631.4171,484.6057,8.7296,27.5410,0.00000000 1643,365.6412,194.9217,22.0141,53.5630,0.00004725 1643,635.2875,487.6672,4.8592,24.4795,0.00000000 1643,627.9152,456.1009,12.2315,56.0458,0.00000000 1644,374.0100,204.2176,27.2640,59.7726,0.00000012 1644,257.2830,199.9618,85.9046,268.8655,0.00000000 1644,635.6238,487.5048,4.5229,24.6419,0.00000000 1644,628.5067,458.2414,11.6400,53.9053,0.00000000 1645,375.3167,206.6322,27.1674,57.9276,0.00000097 1645,276.6328,198.4296,82.4040,250.2006,0.00000000 1645,296.9663,220.9863,43.6533,130.0207,0.00000000 1645,635.7606,487.5703,4.3861,24.5764,0.00000000 1646,373.6488,205.1400,25.6658,55.4570,0.00001490 1646,266.4481,186.2428,80.4371,269.3715,0.00000000 1646,291.8247,211.1802,41.8979,127.5974,0.00000000 1646,629.8588,480.5475,10.2879,31.5992,0.00000000 1647,373.6982,204.5564,24.5018,55.3640,0.00000000 1647,263.6028,194.7861,80.9164,278.7843,0.00000000 1647,632.0800,486.5229,8.0667,25.6238,0.00000000 1648,268.3261,191.1645,78.8618,265.8608,0.00000000 1648,6.8809,244.9236,83.9449,246.1945,0.00000000 1648,635.6281,487.5784,4.5186,24.5683,0.00000000 1649,370.7545,207.8098,24.8995,55.6118,0.00000000 1649,261.4504,196.1937,85.3585,292.0468,0.00000000 1649,290.5047,201.0542,45.3333,143.8767,0.00000000 1649,635.7334,487.4929,4.4133,24.6538,0.00000000 1650,369.6142,206.2725,26.1197,56.1716,0.00000000 1650,264.1417,191.4221,83.1466,275.6639,0.00000000 1650,298.6026,201.8321,40.7415,110.7695,0.00000000 1650,21.5288,269.9826,45.0908,109.0162,0.00000000 1650,11.3867,245.7253,85.5247,252.4763,0.00000000 1650,635.5254,487.2023,4.6213,24.9444,0.00000000 1650,628.6199,458.2187,11.5268,53.9280,0.00000000 1651,173.7790,357.3628,26.2282,51.9617,0.00000000 1651,26.9064,207.8114,36.4175,67.6390,0.00000000 1651,309.6575,212.0028,24.1381,55.7458,0.00000000 1651,290.6351,195.1953,54.3178,147.1306,0.00000000 1651,632.0153,486.9482,8.1314,25.1985,0.00000000 1652,305.7282,218.1023,27.4685,67.5685,0.00000000 1652,287.2862,200.0291,58.6035,148.9384,0.00000000 1652,178.1199,124.5390,57.5790,146.8242,0.00000000 1652,1.0000,234.3282,57.4917,261.8530,0.00000000 1652,631.9739,486.9369,8.1728,25.2098,0.00000000 1653,314.2342,216.0204,25.1587,57.5180,0.00000000 1653,632.0942,487.0632,8.0525,25.0835,0.00000000 1654,110.4388,213.0665,27.0949,57.9286,0.00000052 1654,117.6944,225.9283,33.2508,86.6639,0.00000000 1654,223.7752,158.7873,31.4756,67.6472,0.00000000 1654,194.2941,126.9378,55.3319,138.3608,0.00000000 1654,635.6254,487.7533,4.5213,24.3934,0.00000000 1655,171.5705,82.0301,85.9089,277.6739,0.00000000 1655,628.7244,460.0125,11.4223,52.1342,0.00000000 1655,635.9060,488.3618,4.2407,23.7849,0.00000000 1656,181.1075,107.1206,54.8844,152.8665,0.00000000 1656,1.0000,210.0885,85.7387,260.5935,0.00000000 1656,635.5690,487.3737,4.5777,24.7730,0.00000000 1656,628.2932,457.3662,11.8535,54.7805,0.00000000 1657,635.7272,488.0552,4.4195,24.0915,0.00000000 1658,200.1918,305.2084,23.5719,55.7650,0.00000000 1658,296.9957,317.8433,23.4488,48.6397,0.00000000 1658,267.2340,185.0505,90.2791,261.9459,0.00000000 1658,628.6162,458.9316,11.5305,53.2151,0.00000000 1658,635.7578,487.7909,4.3889,24.3558,0.00000000 1659,628.2427,458.3081,11.9040,53.8386,0.00000000 1659,635.5740,487.4667,4.5727,24.6800,0.00000000 1660,370.1059,206.7998,24.4399,54.7125,0.00000000 1660,293.1013,320.6460,27.6862,56.6529,0.00000000 1660,266.6237,190.4797,91.3805,246.7390,0.00000000 1660,628.3411,458.2478,11.8056,53.8989,0.00000000 1660,635.6860,487.8115,4.4607,24.3352,0.00000000 1661,368.2569,209.2989,24.9972,55.1553,0.00000000 1661,258.4752,184.3425,92.4312,260.4040,0.00000000 1661,64.7767,130.5824,85.8051,250.9161,0.00000000 1661,1.0000,209.7775,60.5564,259.1335,0.00000000 1661,628.8756,458.6824,11.2711,53.4643,0.00000000 1661,635.9405,487.9584,4.2062,24.1883,0.00000000 1662,369.0269,210.2037,23.0911,54.7275,0.00000001 1662,290.9863,186.4785,54.0230,131.9259,0.00000000 1662,259.7208,194.5167,91.0948,252.7234,0.00000000 1662,636.1785,488.4005,3.9682,23.7462,0.00000000 1663,370.9403,212.6115,24.0533,54.6787,0.00000000 1663,12.6388,220.7663,27.7079,65.6578,0.00000000 1663,266.2539,199.6095,88.9796,256.9919,0.00000000 1663,635.8046,488.3450,4.3421,23.8017,0.00000000 1663,628.6822,459.8705,11.4645,52.2762,0.00000000 1664,375.2611,209.0326,22.9084,56.3002,0.00000001 1664,163.5148,379.7855,29.3037,56.2526,0.00000000 1664,85.6751,290.6758,24.0494,53.5662,0.00000000 1664,291.4095,200.0521,54.6471,141.7578,0.00000000 1664,635.6004,488.2180,4.5463,23.9287,0.00000000 1664,628.7138,459.5102,11.4329,52.6365,0.00000000 1665,149.9619,398.6334,27.9119,54.2071,0.00000000 1665,635.7869,488.3029,4.3598,23.8438,0.00000000 1665,628.6365,458.9827,11.5102,53.1640,0.00000000 1666,376.7452,209.1368,23.5986,57.1139,0.00000000 1666,277.7812,190.7094,84.8324,265.6444,0.00000000 1666,635.6633,488.5263,4.4834,23.6204,0.00000000 1666,628.8319,461.1900,11.3148,50.9567,0.00000000 1667,286.1305,184.8065,83.4038,253.6432,0.00000000 1667,635.9471,488.6094,4.1996,23.5373,0.00000000 1668,298.1081,225.9630,41.1890,108.8609,0.00000000 1668,264.4186,205.0478,84.8817,268.8962,0.00000000 1668,635.9883,488.1372,4.1584,24.0095,0.00000000 1669,288.0325,191.0918,85.7754,253.3021,0.00000000 1669,1.0000,272.1563,82.6384,239.9904,0.00000000 1669,635.7209,488.2148,4.4258,23.9319,0.00000000 1669,628.7583,459.8772,11.3884,52.2695,0.00000000 1670,301.1899,222.4855,37.1715,90.6180,0.00000000 1670,267.1572,207.9498,86.9743,274.1380,0.00000000 1670,635.7917,488.0965,4.3550,24.0502,0.00000000 1670,628.8114,460.1302,11.3353,52.0165,0.00000000 1671,268.2256,201.6534,84.4040,271.7639,0.00000000 1671,304.5776,220.8330,34.0422,86.0487,0.00000000 1671,635.8425,488.1838,4.3042,23.9629,0.00000000 1672,282.0438,190.2280,64.0731,190.2910,0.00000000 1672,635.5544,487.6748,4.5923,24.4719,0.00000000 1672,628.6008,459.1106,11.5459,53.0361,0.00000000 1673,298.1960,219.4267,40.7367,110.4488,0.00000000 1673,265.5585,201.9940,83.4852,268.6533,0.00000000 1673,635.8328,488.2352,4.3139,23.9115,0.00000000 1674,288.7792,200.3106,60.2225,159.9789,0.00000000 1674,635.5746,488.1481,4.5721,23.9986,0.00000000 1674,628.7586,460.3264,11.3881,51.8203,0.00000000 1675,290.2234,212.7802,58.1254,151.2766,0.00000000 1675,635.7060,487.7589,4.4407,24.3878,0.00000000 1675,628.5883,459.3419,11.5584,52.8048,0.00000000 1676,277.3353,194.0456,82.2919,258.2692,0.00000000 1676,635.9301,487.9333,4.2166,24.2134,0.00000000 1677,295.2979,222.4788,43.5857,120.2917,0.00000000 1677,265.8299,203.3782,83.8046,266.8111,0.00000000 1677,635.7201,487.8336,4.4266,24.3131,0.00000000 1678,604.1495,189.2724,35.9972,256.1434,0.00000000 1678,287.7009,202.3643,63.1279,168.0648,0.00000000 1678,612.7371,216.2857,27.4096,74.3058,0.00000000 1678,627.7668,269.3614,12.3799,94.2690,0.00000000 1678,632.7328,202.4350,7.4139,64.5585,0.00000000 1678,633.6986,254.8710,6.4481,65.0142,0.00000000 1678,635.8977,488.0491,4.2490,24.0976,0.00000000 1679,578.1622,213.6354,56.8387,158.6103,0.38850626 1679,567.1862,224.5253,31.3151,79.5481,0.00000002 1679,599.5978,234.7645,28.7183,82.2181,0.00000000 1679,286.4497,200.3378,82.1412,258.4927,0.00000000 1679,626.3365,214.3141,13.8102,122.5433,0.00000000 1679,637.7283,248.6414,2.4184,66.2765,0.00000000 1679,633.8777,198.6506,6.2690,76.8017,0.00000000 1679,632.2204,487.3849,7.9263,24.7618,0.00000000 1680,545.9260,216.2642,53.0889,132.6778,0.21026781 1680,594.7786,208.4083,45.3681,131.3918,0.00469158 1680,625.7835,240.2924,14.3632,94.9575,0.00000000 1680,264.0677,206.5490,86.1146,270.5546,0.00000000 1681,525.7617,220.8784,45.5141,110.0514,0.87246883 1681,568.5195,211.8300,49.6671,120.4760,0.47239372 1681,289.0541,204.6593,61.1780,164.9848,0.00000000 1681,504.8885,211.2332,82.4695,214.7689,0.00000000 1681,635.6930,487.7748,4.4537,24.3719,0.00000000 1682,543.6219,216.0648,47.2944,103.2151,0.95656466 1682,512.2445,219.5597,41.8979,102.8954,0.07133545 1682,264.9545,209.9487,85.8195,276.6433,0.00000000 1682,492.7480,175.0446,82.4293,204.9874,0.00000000 1682,635.6276,488.1843,4.5191,23.9624,0.00000000 1683,524.5512,218.4600,38.0008,89.6730,0.99948949 1683,502.3389,217.2447,37.1156,90.7888,0.98389274 1683,264.9854,200.1370,85.4213,273.5875,0.00000000 1683,491.2858,141.7177,86.1386,211.5732,0.00000000 1683,635.7742,488.3666,4.3725,23.7801,0.00000000 1684,490.4175,216.9795,32.4572,84.2737,0.72687626 1684,509.1674,222.3093,29.8847,73.0528,0.01212118 1684,283.2583,199.6694,82.0033,256.8644,0.00000000 1684,1.0000,270.1481,80.4152,241.9986,0.00000000 1684,459.8239,169.1659,84.2380,212.8057,0.00000000 1684,635.9509,487.9525,4.1958,24.1942,0.00000000 1685,494.5298,220.2189,31.4753,73.3434,0.99987221 1685,475.0688,214.5113,34.9950,81.0956,0.88989139 1685,286.9269,195.8046,64.6000,177.8304,0.00000000 1685,461.0173,126.7686,89.5200,217.0009,0.00000000 1685,636.0557,488.8192,4.0910,23.3275,0.00000000 1686,459.8660,213.5710,31.6598,78.1912,0.98425263 1686,485.6834,218.6771,30.9008,74.4031,0.98412722 1686,263.5049,199.3417,85.3591,277.0469,0.00000000 1686,442.6199,114.6514,96.8871,225.8797,0.00000000 1686,635.9797,488.6000,4.1670,23.5467,0.00000000 1687,451.5101,212.8302,31.7170,77.9832,0.99808419 1687,476.2182,214.1485,31.1842,73.6871,0.99367887 1687,265.4816,206.1470,85.9118,271.1470,0.00000000 1687,432.0917,114.8443,93.7340,217.3735,0.00000000 1687,635.9170,488.2746,4.2297,23.8721,0.00000000 1688,445.0634,213.3475,28.5365,71.4003,0.99994093 1688,465.1282,217.0863,27.8111,65.5898,0.99935341 1688,295.9292,225.7616,44.1435,124.7072,0.00000000 1688,278.3678,203.0812,80.5142,248.2277,0.00000000 1688,419.2542,117.7679,95.7211,213.1154,0.00000000 1688,635.7015,488.3302,4.4452,23.8165,0.00000000 1689,460.1605,214.6684,26.3863,65.5725,0.99989295 1689,439.2547,213.2802,27.3104,70.5743,0.97563970 1689,277.5708,186.9249,61.5286,161.8369,0.00000000 1689,297.7633,196.8335,85.1744,256.7433,0.00000000 1689,1.0000,269.7130,79.3135,242.4337,0.00000000 1689,436.4737,182.2360,53.5330,131.7803,0.00000000 1689,635.9183,488.2885,4.2284,23.8582,0.00000000 1690,455.2634,214.5050,26.4888,65.5835,0.99941134 1690,434.1533,212.2784,27.6295,71.2779,0.91690987 1690,286.0423,197.0119,66.7599,176.0640,0.00000000 1690,410.9726,196.0331,87.3415,213.3410,0.00000000 1690,635.9423,488.5703,4.2044,23.5764,0.00000000 1691,426.6408,211.1307,25.5657,65.9950,0.93313104 1691,448.0486,214.7385,25.3171,61.5574,0.72502571 1691,277.4465,190.6768,84.1627,265.5709,0.00000000 1691,392.2925,144.3517,98.5530,231.4261,0.00000000 1691,635.9590,488.2354,4.1877,23.9113,0.00000000 1692,421.4543,209.4200,23.3023,60.7256,0.99965185 1692,442.4579,212.8342,21.9091,54.3479,0.94665676 1692,433.3322,227.4268,22.6624,60.2307,0.00000000 1692,287.9229,200.3847,64.8700,171.2730,0.00000000 1692,428.2532,185.9919,43.3428,111.0909,0.00000000 1692,381.9872,145.0592,104.7666,240.5012,0.00000000 1692,635.8184,488.1069,4.3283,24.0398,0.00000000 1693,418.6959,211.1745,24.3158,57.6494,0.78291571 1693,435.9685,212.1485,23.6749,53.3644,0.03427443 1693,283.4684,200.0798,84.0461,256.6480,0.00000000 1693,411.8024,190.5096,48.1226,100.3231,0.00000000 1693,380.0104,119.0789,100.0960,231.9329,0.00000000 1693,635.7349,488.2723,4.4118,23.8744,0.00000000 1693,628.8464,460.3082,11.3003,51.8385,0.00000000 1694,411.2679,212.9453,24.5855,57.6219,0.00208966 1694,428.9939,211.6904,24.3869,54.0845,0.00000392 1694,266.3280,230.4526,94.8575,279.6451,0.00000000 1694,411.0203,184.8414,50.5331,103.5718,0.00000000 1694,378.6889,102.2256,101.3485,235.3815,0.00000000 1694,635.7935,488.2677,4.3532,23.8790,0.00000000 1695,408.3115,209.9862,24.2132,56.8436,0.96770078 1695,421.5719,212.1073,24.4141,53.0616,0.00020044 1695,399.1215,182.3938,51.7034,98.4247,0.00000000 1695,264.8463,201.6884,87.0947,275.5262,0.00000000 1695,371.5449,107.3384,102.9090,215.7430,0.00000000 1695,636.1777,488.2750,3.9690,23.8717,0.00000000 1696,401.6750,210.5789,23.5965,59.1922,0.89790744 1696,417.5919,214.3567,23.8760,53.1563,0.00018565 1696,295.1722,224.4540,44.1246,128.3756,0.00000000 1696,275.9608,196.5777,82.2926,257.1963,0.00000000 1696,400.3599,174.9700,50.9401,101.4538,0.00000000 1696,360.1612,122.5754,103.2985,229.2605,0.00000000 1696,635.8528,487.7064,4.2939,24.4403,0.00000000 1696,628.6838,457.9920,11.4629,54.1547,0.00000000 1697,395.8601,212.0125,24.2846,55.4716,0.22502728 1697,413.9418,215.9519,25.6133,52.1611,0.00045204 1697,277.5810,192.7227,83.2809,259.2593,0.00000000 1697,635.6743,488.0459,4.4724,24.1008,0.00000000 1698,391.1638,213.7017,23.9123,56.9410,0.00099057 1698,406.4424,212.8621,25.3902,56.7794,0.00001848 1698,283.8496,198.1112,66.9688,177.9077,0.00000000 1698,1.0000,271.2733,80.4436,240.8734,0.00000000 1698,635.9662,488.2826,4.1805,23.8641,0.00000000 1699,390.7059,214.2158,25.5201,60.0972,0.52684933 1699,408.4507,213.0681,22.8540,54.3809,0.00000400 1699,381.9446,203.8746,21.6596,55.0914,0.00000000 1699,299.2478,224.9696,40.4315,102.8853,0.00000000 1699,275.6311,196.2112,81.5666,252.9841,0.00000000 1699,356.0002,118.9677,101.1958,219.4392,0.00000000 1699,635.7217,488.2588,4.4250,23.8879,0.00000000 1700,391.0204,211.1336,23.7861,58.1284,0.00127032 1700,403.4725,205.9110,23.4182,56.3253,0.00000002 1700,276.2477,193.1845,82.8334,261.4187,0.00000000 1700,628.2949,459.5898,11.8518,52.5569,0.00000000 1700,635.6143,487.9503,4.5324,24.1964,0.00000000 1701,386.8323,211.7413,23.2312,57.4452,0.00045437 1701,398.6181,198.8222,22.6216,53.8575,0.00001316 1701,403.5952,214.3436,28.4016,63.2822,0.00000000 1701,299.7171,233.0414,39.5827,94.1507,0.00000000 1701,295.9429,206.7919,83.7793,251.5915,0.00000000 1701,635.7378,488.0201,4.4089,24.1266,0.00000000 1701,628.4015,459.8248,11.7452,52.3219,0.00000000 1702,380.6788,213.0460,25.0217,57.1231,0.00000002 1702,394.4684,215.2641,25.4206,59.6703,0.00000000 1702,276.4512,194.1566,83.3347,262.5207,0.00000000 1702,295.8227,220.2046,43.0705,126.4027,0.00000000 1702,628.5958,459.5537,11.5509,52.5930,0.00000000 1702,635.7057,487.7065,4.4410,24.4402,0.00000000 1703,376.0920,211.1807,24.7360,57.3162,0.00068103 1703,391.3094,207.1017,25.0898,51.5270,0.00000000 1703,304.4580,220.1570,32.2099,81.0706,0.00000000 1703,285.9218,196.7709,65.2076,182.0604,0.00000000 1703,635.9539,488.5419,4.1928,23.6048,0.00000000 1704,377.0812,211.5021,25.0588,55.4894,0.00000197 1704,389.8513,206.9075,26.0475,51.3553,0.00000000 1704,283.9912,196.3947,57.6724,161.9222,0.00000000 1704,269.5427,226.5957,91.5419,285.5510,0.00000000 1704,635.8242,488.3690,4.3225,23.7777,0.00000000 1705,376.7503,211.4693,24.3070,54.5633,0.00000192 1705,277.3361,179.7656,82.3237,264.3393,0.00000000 1705,635.7324,488.0512,4.4143,24.0955,0.00000000 1706,377.1218,212.0157,23.2229,53.3658,0.00000183 1706,301.6265,227.7519,37.5400,101.7205,0.00000000 1706,277.7578,197.4750,81.2428,252.7002,0.00000000 1706,635.7559,488.3054,4.3908,23.8413,0.00000000 1706,628.5765,460.5917,11.5702,51.5550,0.00000000 1707,375.4205,212.4119,24.5231,56.1580,0.00000000 1707,263.6284,198.4495,85.0211,266.9223,0.00000000 1707,26.7841,153.9224,90.6413,256.5484,0.00000000 1707,636.0303,488.4422,4.1164,23.7045,0.00000000 1708,373.2049,213.7967,25.1374,55.4531,0.00000007 1708,285.6675,194.6329,82.2999,256.7238,0.00000000 1708,1.0000,199.7877,57.9193,257.9716,0.00000000 1708,635.8488,487.9063,4.2979,24.2404,0.00000000 1709,168.4408,373.4152,31.5620,58.9263,0.00000001 1709,378.8896,211.5246,22.2230,56.4141,0.00000000 1709,298.8882,229.3428,30.3368,81.9504,0.00000000 1709,279.0850,187.6353,82.7613,244.9613,0.00000000 1709,628.5462,460.1157,11.6005,52.0310,0.00000000 1709,635.6184,488.0715,4.5283,24.0752,0.00000000 1710,381.0247,214.5042,25.0752,51.3700,0.00000001 1710,299.4320,228.5341,29.8901,76.9979,0.00000000 1710,284.9275,322.2199,29.5099,61.8058,0.00000000 1710,259.4278,202.2037,89.3507,249.3541,0.00000000 1710,636.0839,488.4040,4.0628,23.7427,0.00000000 1711,383.4364,216.8680,23.0758,53.4320,0.00021199 1711,27.1326,301.6078,40.3572,78.4619,0.00000000 1711,289.7334,312.6645,26.0446,47.8234,0.00000000 1711,199.8654,309.2372,24.1863,55.5223,0.00000000 1711,6.9231,203.4715,89.4940,257.4282,0.00000000 1711,635.8443,487.9564,4.3024,24.1903,0.00000000 1711,628.5339,459.1152,11.6128,53.0315,0.00000000 1712,387.6362,215.9775,28.5722,57.7099,0.00000000 1712,62.2155,219.7891,58.5187,158.0834,0.00000000 1712,314.0695,236.7297,27.2473,58.7817,0.00000000 1712,192.0803,234.0014,26.5025,67.4612,0.00000000 1712,635.3300,488.1593,4.8167,23.9874,0.00000000 1712,628.4926,460.1155,11.6541,52.0312,0.00000000 1713,226.8411,282.4020,24.5505,51.8458,0.00069447 1713,394.2866,213.0130,25.7088,55.9325,0.00000025 1713,314.9380,232.1436,22.9401,57.8459,0.00000002 1713,95.2024,220.4907,48.0647,127.5243,0.00000000 1713,293.9620,234.8950,41.7845,94.9567,0.00000000 1713,1.0000,257.4162,58.2772,254.7305,0.00000000 1713,635.6423,488.0148,4.5044,24.1319,0.00000000 1713,628.3847,459.2164,11.7620,52.9303,0.00000000 1714,317.0395,232.3935,22.0539,52.4900,0.00000598 1714,403.3429,219.0099,24.9705,52.5736,0.00000150 1714,119.7799,206.8620,56.9914,144.9430,0.00000000 1714,635.5364,487.4544,4.6103,24.6923,0.00000000 1714,628.5345,459.5021,11.6122,52.6446,0.00000000 1715,421.1239,209.8580,26.7019,54.2600,0.00002369 1715,409.4070,215.6750,24.7673,58.9088,0.00000339 1715,399.7986,210.0813,21.1017,56.5321,0.00000000 1715,315.2834,233.4122,27.0882,67.7790,0.00000000 1715,635.4822,487.8810,4.6645,24.2657,0.00000000 1715,628.7853,460.9738,11.3614,51.1729,0.00000000 1716,436.5923,214.7300,24.9092,52.5193,0.00003541 1716,635.4291,487.5195,4.7176,24.6272,0.00000000 1716,628.4136,458.0923,11.7331,54.0544,0.00000000 1717,433.5490,207.1336,25.7986,62.8212,0.00000000 1717,423.2352,166.3876,51.7102,119.7480,0.00000000 1717,453.3636,196.5155,36.9846,81.2394,0.00000000 1717,635.4244,488.1093,4.7223,24.0374,0.00000000 1717,628.4288,459.1631,11.7179,52.9836,0.00000000 1718,469.1212,215.3290,31.6760,72.7428,0.99997497 1718,486.9139,213.5377,29.4120,66.1064,0.90823072 1718,157.2720,210.8474,42.2241,110.9684,0.00000000 1718,125.8525,123.4875,83.1798,267.3461,0.00000000 1718,548.5425,1.0000,84.0112,267.7280,0.00000000 1718,433.4283,142.2509,91.5101,211.5863,0.00000000 1718,635.4720,488.0553,4.6747,24.0914,0.00000000 1718,628.4986,458.5287,11.6481,53.6180,0.00000000 1719,540.2267,215.4267,37.1827,94.7229,0.99960089 1719,559.0004,212.7988,38.3842,80.7759,0.00050866 1719,518.9265,223.0212,38.4564,84.3129,0.00000001 1719,295.2063,257.6895,22.9114,53.7050,0.00000000 1719,511.0066,188.3851,94.7060,211.2883,0.00000000 1719,635.6060,488.1021,4.5407,24.0446,0.00000000 1720,635.7447,487.4720,4.4020,24.6747,0.00000000 1721,115.4075,247.7029,40.5781,79.7004,0.01445961 1721,92.1813,166.3497,87.2154,233.4285,0.00000000 1721,628.3295,457.4116,11.8172,54.7351,0.00000000 1721,635.5806,486.8795,4.5661,25.2672,0.00000000 1722,103.6464,266.0687,35.6328,71.3103,0.00000000 1722,604.2914,218.1904,25.5948,54.1276,0.00000000 1722,1.0000,253.3765,55.5712,258.7702,0.00000000 1722,61.2829,43.7760,87.6289,276.1476,0.00000000 1722,636.4456,216.5771,3.7011,63.6137,0.00000000 1722,629.0771,476.4669,11.0696,35.6798,0.00000000 1723,210.9658,277.8730,24.8913,48.5735,0.00000539 1723,66.5440,64.7057,84.2688,270.9923,0.00000000 1723,635.5677,487.9183,4.5790,24.2284,0.00000000 1723,628.0715,457.8720,12.0752,54.2747,0.00000000 1724,200.9312,270.5802,23.1205,48.7005,0.00000020 1724,105.8059,270.2693,26.7760,52.9717,0.00000010 1724,82.2195,62.4186,85.6174,275.4399,0.00000000 1724,635.3585,488.1860,4.7882,23.9607,0.00000000 1724,628.3049,458.7272,11.8418,53.4195,0.00000000 1725,79.9509,66.5695,85.7906,266.2647,0.00000000 1725,634.9835,207.4279,5.1632,72.7592,0.00000000 1725,635.4049,488.1737,4.7418,23.9730,0.00000000 1725,628.1345,457.7691,12.0122,54.3776,0.00000000 1726,64.8285,46.7959,85.3754,286.1403,0.00000000 1726,635.3480,488.2243,4.7987,23.9224,0.00000000 1726,628.4860,458.5798,11.6607,53.5669,0.00000000 1727,635.5110,488.0563,4.6357,24.0904,0.00000000 1727,628.7395,458.5892,11.4072,53.5575,0.00000000 1728,635.4604,487.7787,4.6863,24.3680,0.00000000 1728,628.7577,458.4955,11.3890,53.6512,0.00000000 1729,635.4459,487.8617,4.7008,24.2850,0.00000000 1729,628.5502,458.2867,11.5965,53.8600,0.00000000 1730,1.0000,243.4213,60.9513,252.8380,0.00000000 1730,635.5198,487.8907,4.6269,24.2560,0.00000000 1730,628.7559,459.2478,11.3908,52.8989,0.00000000 1731,636.2615,231.8179,3.8852,58.8016,0.00000000 1731,635.6386,487.3544,4.5081,24.7923,0.00000000 1731,628.9269,458.0711,11.2198,54.0756,0.00000000 1732,521.0781,219.6432,22.0012,51.4193,0.00000000 1732,632.3497,487.2508,7.7970,24.8959,0.00000000 1733,635.5941,487.3227,4.5526,24.8240,0.00000000 1734,208.7229,385.9853,22.6662,49.5491,0.00000000 1734,414.1365,217.6774,23.1689,56.1407,0.00000000 1734,553.6717,217.5117,23.5468,52.3689,0.00000000 1734,635.6661,487.6025,4.4806,24.5442,0.00000000 1735,215.4409,376.6919,23.2262,55.0431,0.00000000 1735,1.0000,254.8208,58.2173,257.3259,0.00000000 1735,629.6028,478.8907,10.5439,33.2560,0.00000000 1736,224.9070,389.9666,24.5224,52.2087,0.00000015 1736,48.4889,227.3802,25.3494,58.1905,0.00000001 1736,632.2906,487.3782,7.8561,24.7685,0.00000000 1737,233.3472,400.9497,24.4879,52.5193,0.00000000 1737,434.8655,221.8893,21.2563,53.4988,0.00000000 1737,635.5893,487.3449,4.5574,24.8018,0.00000000 1738,635.5037,487.2947,4.6430,24.8520,0.00000000 1738,628.3951,458.1091,11.7516,54.0376,0.00000000 1739,107.3452,269.2861,36.7684,73.3122,0.00000000 1739,635.4075,488.2368,4.7392,23.9099,0.00000000 1739,628.5020,460.7020,11.6447,51.4447,0.00000000 1740,635.3789,488.1760,4.7678,23.9707,0.00000000 1740,628.5059,459.6373,11.6408,52.5094,0.00000000 1741,227.5908,409.3307,25.2543,53.6937,0.00000000 1741,129.0604,273.1225,28.2463,57.2410,0.00000000 1741,635.4451,488.2172,4.7016,23.9295,0.00000000 1741,628.4327,459.3380,11.7140,52.8087,0.00000000 1742,227.9543,401.9780,26.7002,57.2313,0.00000000 1742,635.3364,488.0175,4.8103,24.1292,0.00000000 1742,628.1932,459.2456,11.9535,52.9011,0.00000000 1743,228.4644,403.8042,25.6991,57.3212,0.00000000 1743,635.4377,488.3785,4.7090,23.7682,0.00000000 1743,628.5235,459.6618,11.6232,52.4849,0.00000000 1744,393.0962,117.6183,23.6088,51.5111,0.00000000 1744,232.9710,410.5074,25.9546,54.5181,0.00000000 1744,635.3088,488.3172,4.8379,23.8295,0.00000000 1744,628.3801,459.3393,11.7666,52.8074,0.00000000 1745,413.2894,116.6634,23.2436,53.1545,0.00000000 1745,234.0028,405.1594,26.4909,57.6135,0.00000000 1745,336.8802,396.1477,24.2111,54.1296,0.00000000 1745,635.5140,221.2731,4.6327,76.8970,0.00000000 1745,635.3513,488.3350,4.7954,23.8117,0.00000000 1745,628.3943,459.4587,11.7524,52.6880,0.00000000 1746,419.0376,117.9486,22.3254,51.0972,0.00000233 1746,635.2780,488.2860,4.8687,23.8607,0.00000000 1746,628.1255,459.4496,12.0212,52.6971,0.00000000 1747,629.8066,1.0000,10.3401,51.9686,0.00000000 1747,635.3769,488.4220,4.7698,23.7247,0.00000000 1747,628.2553,459.7560,11.8914,52.3907,0.00000000 1748,254.4208,342.5463,23.1054,53.8878,0.00000008 1748,233.7799,337.5296,26.5867,57.5692,0.00000000 1748,635.5073,488.4858,4.6394,23.6609,0.00000000 1748,628.2937,459.9618,11.8530,52.1849,0.00000000 1749,248.0134,345.6475,23.2890,53.7067,0.00000001 1749,635.5558,487.6170,4.5909,24.5297,0.00000000 1749,628.5268,458.5366,11.6199,53.6101,0.00000000 1750,249.3524,343.3447,22.6006,54.9945,0.00000000 1750,635.3748,488.1677,4.7719,23.9790,0.00000000 1750,628.3932,459.6946,11.7535,52.4521,0.00000000 1751,635.4346,488.5281,4.7121,23.6186,0.00000000 1751,628.2776,459.6928,11.8691,52.4539,0.00000000 1752,635.5929,487.8438,4.5538,24.3029,0.00000000 1752,628.5328,459.6462,11.6139,52.5005,0.00000000 1753,637.5582,274.4467,2.5885,65.6513,0.00000000 1753,630.3265,266.3480,9.8202,82.4802,0.00000000 1753,635.4920,487.6577,4.6547,24.4890,0.00000000 1753,628.7273,458.8964,11.4194,53.2503,0.00000000 1754,226.3342,428.1830,25.8229,52.1937,0.00000007 1754,341.1545,408.1789,23.5077,52.5218,0.00000000 1754,354.9424,406.4068,23.7296,53.1480,0.00000000 1754,325.6789,409.9126,26.5948,55.6818,0.00000000 1754,1.0000,151.3964,55.9688,259.2569,0.00000000 1754,635.4529,487.8846,4.6938,24.2621,0.00000000 1754,628.7028,459.3907,11.4439,52.7560,0.00000000 1755,233.9617,406.6038,25.6758,56.8675,0.00000000 1755,332.0329,404.2890,22.5987,52.3481,0.00000000 1755,27.4519,190.7811,60.2294,162.8279,0.00000000 1755,1.0000,229.3080,79.0588,275.0682,0.00000000 1755,635.5613,488.1183,4.5854,24.0284,0.00000000 1756,235.9801,387.3032,25.7172,57.9219,0.00000000 1756,336.0533,379.0346,23.8367,53.0209,0.00000000 1756,635.4449,487.9591,4.7018,24.1876,0.00000000 1756,628.4335,459.7089,11.7132,52.4378,0.00000000 1757,240.0284,389.9928,25.0118,56.1949,0.00000001 1757,207.3070,244.5245,26.1569,57.2867,0.00000000 1757,635.5190,488.0341,4.6277,24.1126,0.00000000 1757,628.6749,459.3099,11.4718,52.8368,0.00000000 1758,212.6440,244.9634,21.6095,57.4219,0.00000000 1758,343.7189,402.6987,22.8588,47.8632,0.00000000 1758,357.0593,398.6796,22.1814,46.3597,0.00000000 1758,314.4457,188.5537,88.3227,277.1559,0.00000000 1758,635.3918,488.1517,4.7549,23.9950,0.00000000 1758,628.1575,459.1108,11.9892,53.0359,0.00000000 1759,69.5817,197.9582,25.4718,70.6218,0.00000000 1759,313.1744,181.9291,88.9837,268.3760,0.00000000 1759,342.5973,399.4835,23.2897,53.0060,0.00000000 1759,635.4519,488.0715,4.6948,24.0752,0.00000000 1759,628.2115,458.9007,11.9352,53.2460,0.00000000 1760,64.5267,198.2559,26.1336,60.7854,0.00000000 1760,344.4003,401.9919,22.7233,50.3045,0.00000000 1760,635.4034,487.7584,4.7433,24.3883,0.00000000 1760,628.3799,458.7332,11.7668,53.4135,0.00000000 1761,635.4036,488.0434,4.7431,24.1033,0.00000000 1761,628.5221,459.2305,11.6246,52.9162,0.00000000 1762,254.4566,358.9645,25.7043,54.1601,0.00000001 1762,449.7085,221.5807,28.5738,65.5709,0.00000000 1762,635.7141,487.6277,4.4326,24.5190,0.00000000 1763,256.4178,346.7291,22.6968,55.2591,0.00000004 1763,64.4475,197.5413,26.5459,63.3994,0.00000000 1763,635.5079,487.9843,4.6388,24.1624,0.00000000 1763,628.5424,459.2222,11.6043,52.9245,0.00000000 1764,254.8107,337.2314,23.8308,56.8550,0.00000006 1764,56.7717,201.1023,27.0672,58.2808,0.00000001 1764,151.2016,229.5548,34.0235,79.1692,0.00000000 1764,635.2651,487.1447,4.8816,25.0020,0.00000000 1764,628.1156,458.5730,12.0311,53.5737,0.00000000 1765,60.4160,201.4651,23.5746,55.1003,0.00040734 1765,259.1190,337.7471,24.0504,55.8643,0.00000000 1765,242.6114,332.4499,26.8514,63.1346,0.00000000 1765,426.7226,114.7879,91.9694,276.1225,0.00000000 1765,635.4597,488.3300,4.6870,23.8167,0.00000000 1765,628.5773,460.1223,11.5694,52.0244,0.00000000 1766,58.3310,201.1571,25.9277,58.9924,0.00032527 1766,260.4061,356.0247,25.3649,55.7610,0.00000032 1766,432.6416,113.2251,90.3842,268.3569,0.00000000 1766,635.7410,488.0212,4.4057,24.1255,0.00000000 1767,254.3523,373.3621,24.7620,58.8453,0.00000476 1767,43.7221,193.4624,29.8659,54.2609,0.00000098 1767,317.4332,173.3482,85.8514,267.2398,0.00000000 1767,438.5139,101.2770,89.4857,271.7659,0.00000000 1767,635.3750,487.9601,4.7717,24.1866,0.00000000 1767,628.5762,459.1949,11.5705,52.9518,0.00000000 1768,249.2142,381.4331,33.4178,62.6896,0.00000001 1768,462.4376,250.2952,25.0779,55.8624,0.00000000 1768,25.7424,198.9020,82.5260,269.3910,0.00000000 1768,635.3784,487.7411,4.7683,24.4056,0.00000000 1768,628.5208,458.8507,11.6259,53.2960,0.00000000 1769,260.9305,384.1425,24.3638,56.5540,0.00000255 1769,32.3531,185.9133,29.2970,56.1888,0.00000000 1769,374.7638,212.3058,37.5051,103.6529,0.00000000 1769,466.1993,253.4468,23.4608,54.8655,0.00000000 1769,324.3625,172.0799,90.3960,265.4786,0.00000000 1769,1.0000,315.1747,55.6824,196.9720,0.00000000 1769,635.3647,487.6544,4.7820,24.4923,0.00000000 1769,628.5007,458.8570,11.6460,53.2897,0.00000000 1770,261.0054,385.1929,31.4325,63.4527,0.00000000 1770,30.1937,186.1422,24.7307,51.0575,0.00000000 1770,474.7098,249.5091,29.5019,70.4781,0.00000000 1770,387.4779,210.1393,28.5639,67.1546,0.00000000 1770,326.4781,181.6786,86.9639,271.2564,0.00000000 1770,635.3080,488.0038,4.8387,24.1429,0.00000000 1770,628.1710,459.2011,11.9757,52.9456,0.00000000 1771,261.6183,387.9518,33.0835,62.6300,0.00000001 1771,487.2195,275.2210,23.8289,53.1802,0.00000000 1771,332.2845,202.6604,87.7911,259.3824,0.00000000 1771,635.3435,488.1436,4.8032,24.0031,0.00000000 1771,628.2573,459.4688,11.8894,52.6779,0.00000000 1772,10.7651,184.7494,28.2067,57.1124,0.00000001 1772,262.2601,392.9734,23.4336,51.7126,0.00000000 1772,480.0133,250.6920,24.9611,71.6353,0.00000000 1772,340.7456,167.0805,89.9402,284.8150,0.00000000 1772,635.3344,488.0196,4.8123,24.1271,0.00000000 1772,628.2906,459.3065,11.8561,52.8402,0.00000000 1773,259.4778,372.0737,25.0365,58.4241,0.00000038 1773,473.2607,246.9560,28.3137,72.2128,0.00000000 1773,318.5157,189.1960,89.0683,267.2111,0.00000000 1773,369.1612,176.5914,85.8405,274.3076,0.00000000 1773,636.1833,493.8359,3.9634,18.3108,0.00000000 1773,629.4805,480.8017,10.6662,31.3450,0.00000000 1774,415.7653,200.4006,21.5076,47.7845,0.00000008 1774,440.7329,199.2218,23.6371,59.8352,0.00000000 1774,247.1247,366.2636,26.0453,62.5560,0.00000000 1774,413.8610,257.3669,38.1565,76.6875,0.00000000 1774,321.9211,169.3679,91.5079,284.7196,0.00000000 1774,635.3344,488.1226,4.8123,24.0241,0.00000000 1774,628.2822,459.3773,11.8645,52.7694,0.00000000 1775,248.0208,375.1695,25.1848,58.6690,0.00000000 1775,440.6434,203.0568,22.9822,57.2442,0.00000000 1775,410.3985,197.6925,23.3512,51.2687,0.00000000 1775,422.9331,277.3392,28.9886,63.8875,0.00000000 1775,316.5558,169.8221,89.3102,274.4404,0.00000000 1775,375.2807,170.8029,84.5288,280.6486,0.00000000 1775,635.3314,488.0196,4.8153,24.1271,0.00000000 1775,628.4955,459.1577,11.6512,52.9890,0.00000000 1776,392.3825,197.0871,23.2796,52.4289,0.00000246 1776,253.4701,377.5565,25.2234,57.9135,0.00000002 1776,440.9429,207.0530,22.2001,49.5283,0.00000000 1776,414.1850,195.2556,22.6167,48.3330,0.00000000 1776,505.4985,321.7847,22.8831,54.3495,0.00000000 1776,318.4241,169.7171,87.3191,277.4748,0.00000000 1776,422.1023,276.3136,36.4600,74.8951,0.00000000 1776,382.1076,164.3602,83.5206,278.3104,0.00000000 1776,635.3458,487.9561,4.8009,24.1906,0.00000000 1776,628.4502,459.3754,11.6965,52.7713,0.00000000 1777,391.5463,202.1062,23.3267,53.5528,0.00000016 1777,407.3930,200.4204,23.2746,52.7336,0.00000000 1777,250.7553,373.3516,29.4566,59.6209,0.00000000 1777,441.6082,207.7491,22.1731,50.1030,0.00000000 1777,501.1093,331.0019,22.8142,54.9921,0.00000000 1777,320.2986,165.6215,89.4478,280.6504,0.00000000 1777,422.4508,296.4322,28.0136,59.4582,0.00000000 1777,375.4612,171.8560,85.2525,285.1049,0.00000000 1777,635.3154,488.0798,4.8313,24.0669,0.00000000 1777,628.2853,458.8648,11.8614,53.2819,0.00000000 1778,391.6707,202.2256,22.6012,52.2373,0.00000010 1778,535.3872,361.4940,21.7210,51.5614,0.00000001 1778,435.8797,199.5166,21.7741,47.0252,0.00000000 1778,407.3772,203.2993,21.7782,48.0911,0.00000000 1778,248.4645,368.4622,25.1874,57.0635,0.00000000 1778,316.0677,146.1699,89.0282,293.5709,0.00000000 1778,635.2864,488.2599,4.8603,23.8868,0.00000000 1778,628.3642,459.3199,11.7825,52.8268,0.00000000 1779,461.6038,196.4056,21.9281,56.2747,0.00000000 1779,435.9228,199.3441,21.1947,46.2446,0.00000000 1779,394.0446,200.3981,21.3420,52.2836,0.00000000 1779,405.6054,202.0282,20.6750,45.5546,0.00000000 1779,578.4933,394.7012,21.2572,55.8008,0.00000000 1779,458.6714,336.7347,21.2962,55.2893,0.00000000 1779,1.0000,252.6246,57.9463,259.5221,0.00000000 1779,635.5324,488.0530,4.6143,24.0937,0.00000000 1779,628.6210,458.5703,11.5257,53.5764,0.00000000 1780,394.3721,200.2888,21.8283,53.5624,0.00000001 1780,459.6782,208.5869,22.2465,52.7477,0.00000000 1780,447.4291,197.9347,21.9794,49.0045,0.00000000 1780,593.3017,412.3128,20.8743,53.9653,0.00000000 1780,404.5717,197.5135,24.8999,45.5430,0.00000000 1780,459.1533,344.1134,22.2042,57.1007,0.00000000 1780,435.4819,208.2638,21.9438,49.0635,0.00000000 1780,635.3519,487.0187,4.7948,25.1280,0.00000000 1780,628.2347,457.7306,11.9120,54.4161,0.00000000 1781,594.9857,218.7561,23.1253,53.1560,0.00858674 1781,446.8103,203.8556,21.4283,49.0930,0.00000000 1781,400.0019,200.9915,21.3701,50.5695,0.00000000 1781,461.5318,201.1433,22.4978,61.8044,0.00000000 1781,434.0131,198.5957,21.0577,50.1430,0.00000000 1781,448.0050,340.8303,20.4502,51.0306,0.00000000 1781,569.1541,396.6316,31.0007,62.4383,0.00000000 1781,635.0288,234.9166,5.1179,64.8302,0.00000000 1781,635.4354,488.1464,4.7113,24.0003,0.00000000 1782,584.8981,213.7085,29.6532,62.4616,0.00007129 1782,18.8215,210.9893,30.1666,59.3824,0.00000003 1782,399.6134,198.5722,21.4678,51.1704,0.00000001 1782,447.0672,200.9907,21.8196,47.2125,0.00000000 1782,435.6527,209.7669,21.6783,47.8839,0.00000000 1782,546.4581,384.1929,25.8297,61.7899,0.00000000 1782,45.9993,193.9367,40.2618,108.4767,0.00000000 1782,438.6237,337.7642,22.5446,53.3332,0.00000000 1782,15.1446,177.6678,55.9100,143.5739,0.00000000 1782,21.5762,192.5205,85.3161,252.9711,0.00000000 1782,635.4532,487.6524,4.6935,24.4943,0.00000000 1783,565.6908,205.7430,29.8609,65.2887,0.00000008 1783,435.4477,200.2077,21.0677,47.1893,0.00000007 1783,394.5634,204.0313,22.3869,54.2294,0.00000000 1783,455.3117,201.9476,22.3729,57.3775,0.00000000 1783,367.0354,207.4752,22.8101,57.4478,0.00000000 1783,268.9350,301.8929,23.4748,49.7376,0.00000000 1783,419.3355,324.3067,21.4037,53.8917,0.00000000 1783,53.1793,203.5314,63.3127,159.3657,0.00000000 1783,635.3589,488.5080,4.7878,23.6387,0.00000000 1783,628.0694,459.2255,12.0773,52.9212,0.00000000 1784,558.7004,209.9532,27.3861,59.5650,0.00143142 1784,266.8753,289.4248,29.8563,57.1619,0.00002768 1784,388.3227,206.3876,21.8332,54.4452,0.00000007 1784,460.3763,203.6039,21.9831,63.5982,0.00000000 1784,394.3277,319.2657,21.6811,51.0171,0.00000000 1784,448.5090,208.6795,20.8886,50.0043,0.00000000 1784,72.4019,200.8917,62.2651,159.3753,0.00000000 1784,1.0000,248.4231,59.7904,263.7236,0.00000000 1784,635.4982,488.8376,4.6485,23.3091,0.00000000 1784,628.2814,461.0105,11.8653,51.1362,0.00000000 1785,436.2698,202.9802,21.2654,48.0385,0.00000026 1785,447.5375,198.9387,22.1108,50.6289,0.00000021 1785,369.3716,312.5850,30.4105,58.0230,0.00000000 1785,381.8692,203.2360,23.3383,56.6572,0.00000000 1785,450.5066,359.6253,30.2735,62.2556,0.00000000 1785,1.0000,228.9588,83.4339,255.8732,0.00000000 1785,635.5796,488.4332,4.5671,23.7135,0.00000000 1785,628.4312,459.3431,11.7155,52.8036,0.00000000 1786,445.7589,197.4215,23.4492,54.4639,0.00003371 1786,435.0386,203.3194,20.2447,48.2534,0.00000010 1786,421.3007,198.1226,21.0865,45.8724,0.00000000 1786,374.3183,199.4200,23.6936,54.9640,0.00000000 1786,635.4865,488.4019,4.6602,23.7448,0.00000000 1786,628.4320,459.7615,11.7147,52.3852,0.00000000 1787,407.3311,199.3723,21.1633,47.2735,0.00000024 1787,428.5942,199.3696,19.9870,46.0232,0.00000020 1787,440.3585,201.2065,20.9090,46.6029,0.00000000 1787,405.8306,273.4113,22.7597,56.9115,0.00000000 1787,316.3542,291.9378,27.0123,52.6468,0.00000000 1787,636.1945,494.1394,3.9522,18.0073,0.00000000 1787,629.4603,481.3932,10.6864,30.7535,0.00000000 1788,422.8213,203.2140,19.3251,49.1152,0.06848939 1788,433.3717,203.7591,20.6502,49.1073,0.00003102 1788,401.1757,199.7975,21.0869,45.3834,0.00000023 1788,360.5163,203.3202,22.7217,54.5000,0.00000000 1788,378.6378,268.6681,21.7577,56.2523,0.00000000 1788,635.3483,488.1504,4.7984,23.9963,0.00000000 1788,628.2188,459.3255,11.9279,52.8212,0.00000000 1789,421.3174,201.5675,19.3977,49.9505,0.16783571 1789,400.4367,201.8660,21.2610,48.4310,0.00000580 1789,433.5619,200.1819,21.3349,47.3404,0.00000000 1789,277.1812,284.5254,36.9916,81.2323,0.00000000 1789,633.9992,179.3989,6.1475,84.3693,0.00000000 1789,635.4521,487.3019,4.6946,24.8448,0.00000000 1789,628.0477,458.0744,12.0990,54.0723,0.00000000 1790,394.2357,197.8415,20.1674,48.6643,0.00120946 1790,427.6330,199.9554,20.4592,47.4934,0.00038972 1790,415.2448,199.1498,19.8791,50.3410,0.00000943 1790,629.6762,1.0000,10.4705,50.6317,0.00000000 1790,1.0000,286.0992,57.1677,226.0475,0.00000000 1790,635.3233,488.0592,4.8234,24.0875,0.00000000 1790,628.2533,459.2539,11.8934,52.8928,0.00000000 1791,416.8186,200.5246,19.7840,49.1230,0.05641534 1791,394.5958,199.8243,20.9677,45.7098,0.00001358 1791,433.3974,201.0238,20.8572,48.4553,0.00000000 1791,635.3258,487.8278,4.8209,24.3189,0.00000000 1791,628.3072,458.8661,11.8395,53.2806,0.00000000 1792,416.6523,198.6658,19.7471,48.4363,0.87671250 1792,389.5777,196.8988,22.4059,48.0301,0.00130762 1792,471.3132,199.2725,25.5923,62.0252,0.00005224 1792,485.9698,199.9382,22.0012,51.3319,0.00000013 1792,635.3676,488.2673,4.7791,23.8794,0.00000000 1792,628.5656,460.2350,11.5811,51.9117,0.00000000 1793,489.2907,202.9418,23.1499,54.2917,0.98972899 1793,439.9041,199.9162,20.2690,49.0185,0.45736393 1793,498.1848,206.1821,31.9553,71.7259,0.00000585 1793,411.6042,190.8823,21.8964,50.8135,0.00000000 1793,428.3313,189.1893,22.2817,50.1796,0.00000000 1793,453.2574,201.2197,20.8105,47.8736,0.00000000 1793,635.3750,487.8471,4.7717,24.2996,0.00000000 1793,628.6095,459.4990,11.5372,52.6477,0.00000000 1794,509.3760,201.7269,22.3456,53.5302,0.98948604 1794,456.5594,196.1582,21.1190,51.3355,0.98681152 1794,520.9283,211.1109,20.9310,52.1118,0.00033572 1794,424.9216,196.1259,21.4248,47.4759,0.00021131 1794,442.2773,193.4333,21.4674,49.6406,0.00000000 1794,497.6883,195.7214,19.8229,52.2155,0.00000000 1794,472.8161,198.3029,21.7656,48.9764,0.00000000 1794,631.4698,487.4338,8.6769,24.7129,0.00000000 1795,512.3646,206.9610,21.7768,52.6558,0.99966645 1795,462.8146,201.6477,22.1013,52.8449,0.03805922 1795,523.2951,199.5588,28.5081,55.8671,0.00163742 1795,421.9368,200.0679,21.8785,46.8263,0.00004227 1795,498.3339,200.9543,21.7844,51.5740,0.00000000 1795,380.4008,200.1938,22.0201,48.8517,0.00000000 1795,339.9362,206.1488,21.2213,53.0305,0.00000000 1795,398.2130,201.7306,21.7676,50.5779,0.00000000 1796,521.5784,205.6745,24.9583,59.4876,0.99146813 1796,468.3849,203.6080,21.3410,52.1294,0.59917563 1796,507.8916,208.6213,23.1379,56.1998,0.00209057 1796,335.9969,206.4971,22.1823,63.7055,0.00000260 1796,322.2549,199.3457,44.8915,111.9479,0.00000001 1796,425.2029,201.2823,21.7583,47.1474,0.00000000 1796,379.6664,197.3975,22.4649,54.8898,0.00000000 1797,524.7371,205.1507,22.5965,56.7192,0.99997669 1797,539.7892,200.5387,24.3428,56.8561,0.70155984 1797,481.9280,202.4405,21.7098,52.4941,0.00014745 1797,338.0873,203.4233,22.8236,58.8262,0.00000128 1797,513.0845,201.6134,20.9868,52.7585,0.00000001 1797,384.0374,194.0188,23.6917,54.1035,0.00000000 1797,491.4784,192.6175,27.6377,53.2931,0.00000000 1798,541.2196,206.7588,26.6075,61.6623,0.99999756 1798,500.2605,206.6783,23.2242,56.9301,0.99999404 1798,532.1919,199.7444,21.1965,55.2511,0.00866181 1798,349.1396,203.2540,21.6924,55.4410,0.00004808 1798,488.0212,196.2056,26.6314,49.1777,0.00000012 1798,371.6978,202.1703,21.5976,55.7130,0.00000005 1798,390.1621,199.9330,26.3476,57.9723,0.00000000 1798,439.2450,199.6140,22.1233,56.4657,0.00000000 1799,545.3552,198.9719,28.3106,62.3312,0.99999934 1799,453.1292,192.2417,22.2381,51.8070,0.00406521 1799,520.4064,205.6471,23.0265,51.0642,0.00361249 1799,355.3664,198.7138,22.1184,52.9967,0.00053892 1800,549.7412,205.4984,26.2994,62.3427,0.99711925 1800,506.7043,196.0217,22.6958,53.6466,0.37914509 1800,465.3136,200.6478,22.0665,51.2906,0.08577722 1800,359.7859,206.8942,22.8530,58.9737,0.00077557 1800,564.7993,203.4018,24.3947,55.6105,0.00005590 1800,450.1701,201.8081,22.8351,48.7665,0.00000468 1800,530.2708,199.5611,27.0610,58.6697,0.00000001 1800,329.8430,193.4239,55.2613,139.2800,0.00000000 1801,461.0526,208.0861,22.4552,52.1327,0.99921530 1801,517.5419,206.9896,22.0887,48.4390,0.99850041 1801,480.8822,209.4445,21.2897,50.8036,0.98194581 1801,561.7117,219.8488,24.0541,60.0741,0.87521923 1801,364.1469,212.6226,22.3009,60.7016,0.00407806 1801,536.4656,208.1447,20.5540,51.4369,0.00012220 1801,351.5580,209.2213,45.8475,135.8301,0.00000000 1802,567.4907,214.6602,26.1424,63.0772,0.99985129 1802,469.6652,208.0537,22.2188,50.6304,0.99984592 1802,532.0895,207.3720,20.5474,49.2778,0.99893606 1802,365.8297,213.4897,24.4264,55.6953,0.99661183 1802,496.3472,206.6648,21.9017,52.0028,0.97076845 1802,583.1788,221.6472,27.1781,63.6359,0.75842208 1802,558.1030,205.6242,22.0898,55.1271,0.00000029 1803,364.3841,202.5178,24.5304,57.5974,0.99999964 1803,567.9277,198.4495,30.7815,72.6556,0.99997234 1803,604.6562,210.0853,32.2490,77.9897,0.99929154 1803,541.3102,194.8338,22.1498,55.7602,0.99892372 1803,505.2889,198.8461,23.2311,52.3470,0.99803710 1803,474.9730,197.6664,22.5272,53.1690,0.99709898 1803,584.9816,194.3654,28.4874,68.0358,0.56876165 1803,414.8652,201.2662,23.0314,61.4445,0.00219805 1803,554.2947,191.5191,26.6512,65.9487,0.00000069 1804,547.8301,196.7634,22.3008,55.7773,0.99999976 1804,364.4650,206.3164,24.9687,59.6614,0.99999911 1804,518.4200,200.0453,22.9383,54.1572,0.99999070 1804,573.8623,204.2965,29.2144,72.2593,0.99997258 1804,478.6658,202.5389,23.8186,51.8801,0.99972045 1804,600.2796,205.3641,26.2192,59.6278,0.02340239 1804,561.4485,196.6019,23.0473,54.1174,0.01305300 1805,540.2593,195.9811,25.0919,58.6005,0.99999976 1805,367.1502,204.4756,28.5056,69.5572,0.99999964 1805,566.0154,191.6694,22.1086,55.9433,0.99999875 1805,586.5765,202.3600,28.8577,72.4020,0.99968803 1805,607.5719,205.9366,22.8895,58.2863,0.59962529 1805,443.2443,196.1259,20.6578,56.7898,0.00114446 1805,489.0142,197.1356,22.2346,60.3887,0.00022920 1805,402.7911,212.5750,22.7784,62.6602,0.00003415 1806,409.0605,202.0295,35.2174,86.8527,0.99999994 1806,376.9648,202.1384,29.7873,73.0936,0.99999964 1806,600.8516,193.2341,30.4326,83.0767,0.99999732 1806,515.2918,198.3788,23.0719,52.5231,0.99967432 1806,575.2991,194.0309,23.4605,60.0510,0.99501896 1806,588.4756,191.1614,26.9355,66.4001,0.00000435 1807,420.9033,198.4068,33.7125,86.5722,1.00000000 1807,388.2882,199.3155,31.7040,75.6570,0.99999774 1807,537.9052,196.0649,29.3493,58.2329,0.96387064 1807,607.3338,184.2007,24.7496,58.4383,0.00021545 1807,621.2230,188.7698,18.9237,64.8804,0.00000000 1807,14.0147,173.6569,57.4185,146.2509,0.00000000 1808,434.2098,200.5473,36.1155,87.5345,0.99999994 1808,568.5708,195.1346,30.7294,63.9475,0.99985784 1808,403.1070,199.9777,35.7673,88.8079,0.99404383 1808,386.1318,200.6755,22.1690,56.6158,0.00004073 1808,618.8350,198.8751,21.3117,58.3673,0.00001708 1808,8.5348,194.2903,45.6709,118.3694,0.00000000 1809,465.7710,204.3385,34.3131,94.2879,1.00000000 1809,422.6600,207.8151,31.7255,85.6266,0.99971730 1809,589.1127,197.1904,33.4549,65.2294,0.17741333 1809,405.8893,204.0621,25.8770,55.2400,0.00000000 1809,539.3436,260.1268,23.7766,65.3409,0.00000000 1810,445.6247,199.9211,40.7694,111.1672,0.99998015 1810,503.4218,202.4584,37.4124,99.7504,0.99997431 1810,620.2646,191.1764,19.8821,58.9467,0.00092197 1810,434.1333,203.7446,25.8567,64.9455,0.00000572 1810,507.3287,256.5520,24.6356,58.6016,0.00000018 1811,471.1954,196.2456,50.2416,136.1551,0.99524224 1811,550.1200,214.6466,39.5659,122.1139,0.90849751 1811,452.9584,194.5276,24.0959,63.6016,0.40314844 1811,464.2983,203.0745,30.0594,84.2452,0.00138979 1811,380.1472,193.4689,21.0238,54.7990,0.00000001 1812,591.3990,209.3949,48.7477,148.0595,0.98528016 1812,504.7725,189.1984,59.2935,170.3205,0.91445822 1812,497.7020,197.3431,34.6078,97.9008,0.00000321 1812,602.8670,283.9356,27.5007,67.6027,0.00000000 1812,385.7277,201.2169,21.6501,47.9787,0.00000000 1812,622.9941,249.7646,17.1526,128.7119,0.00000000 1812,628.9652,198.6848,11.1815,110.4938,0.00000000 1813,546.2772,202.2116,59.3467,169.1120,0.99999976 1813,578.1351,275.0542,41.4488,100.9927,0.00000102 1813,514.7557,190.4471,61.2429,132.9782,0.00000001 1813,496.1147,207.0975,40.7400,112.6612,0.00000000 1813,631.6381,487.8098,8.5086,24.3369,0.00000000 1814,515.3486,286.3130,22.3398,56.2980,0.00000014 1814,554.6296,282.2914,27.2960,59.2588,0.00000001 1814,500.8393,241.8314,44.3530,101.6679,0.00000000 1814,63.7638,179.1024,85.6150,248.9505,0.00000000 1814,529.6304,152.7842,80.9989,250.2904,0.00000000 1814,108.0494,250.7799,82.8151,258.9427,0.00000000 1814,635.4363,487.7871,4.7104,24.3596,0.00000000 1814,628.3185,459.8651,11.8282,52.2816,0.00000000 1815,576.7296,301.1984,31.4447,75.4635,0.00026379 1815,391.8896,205.1143,23.0468,49.5960,0.00000011 1815,562.0939,235.9204,60.2141,148.9251,0.00000000 1815,136.9521,202.2632,56.3843,142.6421,0.00000000 1815,603.4187,151.2768,36.7280,265.5809,0.00000000 1815,622.1031,195.9691,18.0436,137.0422,0.00000000 1815,558.6870,1.0000,65.4285,166.7565,0.00000000 1815,632.2740,188.7586,7.8727,85.2766,0.00000000 1815,1.0000,239.7821,83.2126,272.3646,0.00000000 1815,514.5152,1.0000,86.5640,243.5321,0.00000000 1815,635.4203,488.1919,4.7264,23.9548,0.00000000 1816,633.0591,274.2201,7.0876,78.5238,0.00000000 1816,595.6277,211.5679,44.5190,271.2144,0.00000000 1816,635.2523,488.2355,4.8944,23.9112,0.00000000 1816,628.0001,457.9369,12.1466,54.2098,0.00000000 1817,398.9746,205.8528,21.6561,49.5135,0.09124967 1817,434.0121,202.5733,21.7783,54.6996,0.00006486 1817,421.4980,194.6161,20.3450,55.3854,0.00000000 1817,113.5564,182.4748,87.3981,249.8372,0.00000000 1817,134.3069,208.5088,43.3374,126.0355,0.00000000 1817,635.3696,488.3594,4.7771,23.7873,0.00000000 1817,628.2534,458.5668,11.8933,53.5799,0.00000000 1818,401.0068,202.4275,22.8654,52.2398,0.99840009 1818,417.9422,201.0265,23.8210,52.5906,0.00000000 1818,390.2187,171.5634,47.8640,95.7137,0.00000000 1818,635.3443,488.1167,4.8024,24.0300,0.00000000 1818,628.1627,458.1093,11.9840,54.0374,0.00000000 1819,408.0947,204.4239,24.4888,58.2011,0.00913108 1819,454.2554,205.0081,21.7548,50.3756,0.00000023 1819,424.4576,202.0760,22.7770,53.2563,0.00000000 1819,558.2119,1.0000,81.9348,260.2956,0.00000000 1819,92.8810,198.3985,93.1015,269.4729,0.00000000 1819,635.3348,488.5425,4.8119,23.6042,0.00000000 1819,628.1289,458.0683,12.0178,54.0784,0.00000000 1820,462.8939,200.2703,21.8705,48.7285,0.99832988 1820,424.8619,205.6645,21.7415,54.6895,0.00000842 1820,521.2512,194.0473,38.8681,88.2410,0.00000000 1820,448.7494,199.3203,22.1852,50.0513,0.00000000 1820,25.6552,205.1455,61.1293,152.4858,0.00000000 1820,635.4537,488.2224,4.6930,23.9243,0.00000000 1820,628.4771,458.7513,11.6696,53.3954,0.00000000 1821,433.9721,203.8099,23.3543,55.2831,0.99999899 1821,472.1162,200.5927,22.1323,50.7548,0.98601168 1821,453.4271,202.8505,21.2445,53.5146,0.00000220 1821,422.4995,169.9116,48.8647,103.4355,0.00000000 1821,399.0641,141.0522,97.3278,225.7834,0.00000000 1821,545.7807,1.0000,87.0707,250.6376,0.00000000 1821,635.3142,488.2662,4.8325,23.8805,0.00000000 1821,628.1967,458.2796,11.9500,53.8671,0.00000000 1822,442.1249,204.3310,22.8849,53.9200,0.99999964 1822,458.6460,203.3991,21.3023,52.0979,0.00000059 1822,567.8032,14.1992,35.8360,78.0510,0.00000000 1822,432.2945,160.3564,48.6274,110.1369,0.00000000 1822,405.5100,99.6145,100.7257,231.3348,0.00000000 1822,635.5884,488.4138,4.5583,23.7329,0.00000000 1822,628.4973,458.6340,11.6494,53.5127,0.00000000 1823,448.7163,205.5078,23.3713,55.6892,1.00000000 1823,483.1703,201.4104,21.6609,52.5430,0.07197508 1823,468.6887,200.7985,21.4215,53.8581,0.00000001 1823,436.2894,199.2442,21.4605,54.3494,0.00000000 1823,496.8393,205.8083,24.6485,54.0256,0.00000000 1823,132.8926,201.3583,22.7652,54.5035,0.00000000 1823,438.5309,175.0867,48.2056,102.5368,0.00000000 1823,472.2156,162.9616,50.6354,105.8673,0.00000000 1823,415.2654,145.9461,93.0949,224.3301,0.00000000 1823,635.5113,488.5029,4.6354,23.6438,0.00000000 1823,628.2750,459.1123,11.8717,53.0344,0.00000000 1824,452.9438,200.2646,27.4479,67.1492,0.99999911 1824,490.0771,201.3824,21.0417,53.8796,0.99999434 1824,502.6197,199.4662,21.4835,54.6644,0.99997044 1824,82.1428,211.1954,49.6240,142.4198,0.00000348 1824,95.5386,204.4913,28.3184,69.4298,0.00000001 1824,475.5529,200.3841,22.1059,55.6460,0.00000000 1825,545.9955,197.0482,28.4056,70.3292,1.00000000 1825,507.0910,199.3638,25.0090,62.5746,1.00000000 1825,470.1967,203.8575,29.5545,73.8379,0.99999976 1825,58.1057,205.3758,39.5077,109.2603,0.13496485 1826,553.3151,195.5302,28.1230,70.4902,1.00000000 1826,513.2678,199.1995,31.0290,79.0843,0.99999559 1826,69.2628,209.7015,42.6527,104.7131,0.16903156 1826,28.2211,200.1189,30.2094,60.6974,0.00000154 1826,53.8603,212.4504,35.0454,83.7393,0.00000118 1826,57.2952,170.1934,83.4468,215.6939,0.00000000 1827,591.0394,196.4451,30.5039,79.0654,1.00000000 1827,545.6245,202.8237,41.6403,94.7364,1.00000000 1827,24.4271,211.4213,43.5368,112.8936,0.04224893 1827,3.8703,216.7408,36.9798,88.6026,0.00000000 1827,1.0000,193.1273,59.4562,246.2039,0.00000000 1828,586.1586,205.6541,45.6784,102.3717,1.00000000 1828,554.2725,200.1845,28.4882,59.2114,0.00000000 1828,565.1940,201.9809,40.5064,84.1536,0.00000000 1828,1.0000,214.5278,41.2592,97.0137,0.00000000 1828,620.9260,186.9583,19.2207,126.8995,0.00000000 1828,154.5818,225.9075,87.0820,270.1779,0.00000000 1828,1.0000,155.5505,58.8442,247.6060,0.00000000 1828,631.3409,220.6432,8.8058,77.5601,0.00000000 1828,635.3468,487.8245,4.7999,24.3222,0.00000000 1829,1.0000,296.7561,84.0258,215.3906,0.00000000 1829,1.0000,442.3854,29.5252,69.7613,0.00000000 1829,635.1451,487.6242,5.0016,24.5225,0.00000000 1829,627.7715,457.2971,12.3752,54.8496,0.00000000 1830,390.0375,197.2071,24.3669,65.2485,0.00000000 1830,29.9842,277.7093,85.3702,234.4374,0.00000000 1830,273.0164,192.3964,89.8765,252.9731,0.00000000 1830,635.5400,488.7845,4.6067,23.3622,0.00000000 1830,628.4078,458.3839,11.7389,53.7628,0.00000000 1831,128.0402,282.5138,66.6242,169.5272,0.00000000 1831,635.1724,487.5123,4.9743,24.6344,0.00000000 1831,627.7791,456.0193,12.3676,56.1274,0.00000000 1832,239.6210,334.9116,32.0769,68.0853,0.00001128 1832,402.3889,204.3195,25.0222,58.1094,0.00000000 1832,25.0343,374.9899,38.4940,80.6460,0.00000000 1832,13.6489,346.6294,93.5326,165.5173,0.00000000 1832,635.1337,487.6048,5.0130,24.5419,0.00000000 1832,627.6556,457.7087,12.4911,54.4380,0.00000000 1833,422.0603,207.4569,23.5431,60.7282,0.00000000 1833,631.5764,487.3173,8.5703,24.8294,0.00000000 1834,432.7156,209.0856,23.7751,62.6481,0.00000001 1834,1.0000,225.9288,64.5080,275.7319,0.00000000 1834,636.1027,237.0392,4.0440,61.0158,0.00000000 1834,635.3223,487.8395,4.8244,24.3072,0.00000000 1834,628.0509,457.8569,12.0958,54.2898,0.00000000 1835,426.0573,208.5410,24.7589,58.5503,0.00000006 1835,635.4948,487.6317,4.6519,24.5150,0.00000000 1835,628.3870,458.4796,11.7597,53.6671,0.00000000 1836,427.4603,201.9967,31.6139,58.1503,0.00000000 1836,635.8942,491.6834,4.2525,20.4633,0.00000000 1836,600.6481,396.5424,39.4986,115.6043,0.00000000 1836,629.1127,477.8770,11.0340,34.2697,0.00000000 1837,450.6696,215.0092,27.5609,53.0649,0.00000000 1837,442.2345,184.2627,52.0088,103.8986,0.00000000 1837,635.4664,487.7610,4.6803,24.3857,0.00000000 1837,628.6218,458.5878,11.5249,53.5589,0.00000000 1838,464.4527,215.1704,27.1220,57.2662,0.00000007 1838,635.5095,487.2250,4.6372,24.9217,0.00000000 1838,628.7111,457.9273,11.4356,54.2194,0.00000000 1839,478.1608,222.2403,23.7370,54.4078,0.58107513 1839,464.7286,223.6573,23.3626,53.8043,0.00000004 1839,463.6866,203.8577,47.1185,104.5378,0.00000000 1839,437.2091,144.3305,100.8600,223.7298,0.00000000 1839,628.7317,456.7460,11.4150,55.4007,0.00000000 1839,635.5241,487.0135,4.6226,25.1332,0.00000000 1840,503.7566,216.0608,27.2132,57.3122,0.90697271 1840,489.5652,219.0313,26.4161,62.6408,0.00000281 1840,519.4974,226.8042,22.7991,53.9095,0.00000000 1840,633.8572,289.5321,6.2895,75.8031,0.00000000 1840,457.9068,131.4255,99.0921,213.4519,0.00000000 1840,629.5107,478.8370,10.6360,33.3097,0.00000000 1841,531.9346,201.7244,30.7948,63.0915,0.99996501 1841,552.2906,210.3398,23.6808,54.4647,0.00000015 1841,495.2023,111.1099,93.9119,209.5071,0.00000000 1841,631.8777,485.9362,8.2690,26.2105,0.00000000 1842,584.1292,210.8224,32.6981,70.2161,0.99999303 1842,572.1766,217.4914,25.4817,62.3455,0.00000944 1842,604.6143,215.1623,26.6381,57.9747,0.00000002 1842,634.7709,232.2701,5.3758,72.8632,0.00000000 1842,550.3216,115.0085,89.8251,217.6480,0.00000000 1842,63.7124,39.7768,88.5786,281.0090,0.00000000 1842,632.0706,486.5541,8.0761,25.5926,0.00000000 1843,629.5395,479.1259,10.6072,33.0208,0.00000000 1844,629.4707,478.5259,10.6760,33.6208,0.00000000 1845,542.9093,175.8303,40.9435,112.4513,0.00000000 1845,545.7614,237.9857,28.9864,63.9883,0.00000000 1845,631.9194,487.1856,8.2273,24.9611,0.00000000 1846,635.4493,487.6992,4.6974,24.4475,0.00000000 1846,628.7658,457.9970,11.3809,54.1497,0.00000000 1847,632.5399,178.9484,7.6068,85.4882,0.00000000 1847,635.4222,487.8695,4.7245,24.2772,0.00000000 1847,628.5673,458.9797,11.5794,53.1670,0.00000000 1848,631.7297,487.2447,8.4170,24.9020,0.00000000 1849,635.3272,488.0167,4.8195,24.1300,0.00000000 1849,628.3566,458.4794,11.7901,53.6673,0.00000000 1850,635.4300,488.1482,4.7167,23.9985,0.00000000 1850,628.7808,459.2238,11.3659,52.9229,0.00000000 1851,635.4832,488.0646,4.6635,24.0821,0.00000000 1851,628.6498,458.6099,11.4969,53.5368,0.00000000 1852,635.4388,488.1459,4.7079,24.0008,0.00000000 1852,628.5178,458.5264,11.6289,53.6203,0.00000000 1853,631.7933,487.7426,8.3534,24.4041,0.00000000 1854,635.3734,488.0148,4.7733,24.1319,0.00000000 1854,628.5719,459.0330,11.5748,53.1137,0.00000000 1855,7.0465,237.5190,88.2075,265.7874,0.00000000 1855,635.5545,488.3621,4.5922,23.7846,0.00000000 1855,628.8760,459.2759,11.2707,52.8708,0.00000000 1856,12.2887,207.5329,87.0757,263.4180,0.00000000 1856,631.7603,487.7740,8.3864,24.3727,0.00000000 1857,635.4924,488.2107,4.6543,23.9360,0.00000000 1857,628.7728,458.7653,11.3739,53.3814,0.00000000 1858,635.4729,488.1196,4.6738,24.0271,0.00000000 1858,628.7239,459.2623,11.4228,52.8844,0.00000000 1859,635.5264,488.2411,4.6203,23.9056,0.00000000 1859,628.6746,458.9028,11.4721,53.2439,0.00000000 1860,635.3936,488.2209,4.7531,23.9258,0.00000000 1860,628.5684,458.9779,11.5783,53.1688,0.00000000 1861,635.4785,488.3290,4.6682,23.8177,0.00000000 1861,628.5846,459.0153,11.5621,53.1314,0.00000000 1862,635.4623,488.2115,4.6844,23.9352,0.00000000 1862,628.6506,458.9960,11.4961,53.1507,0.00000000 1863,635.4472,488.3838,4.6995,23.7629,0.00000000 1863,628.5637,459.1873,11.5830,52.9594,0.00000000 1864,635.3427,488.2180,4.8040,23.9287,0.00000000 1864,628.4373,458.7295,11.7094,53.4172,0.00000000 1865,635.3965,488.2423,4.7502,23.9044,0.00000000 1865,628.5363,458.9994,11.6104,53.1473,0.00000000 1866,635.4152,488.2560,4.7315,23.8907,0.00000000 1866,628.4006,458.5486,11.7461,53.5981,0.00000000 1867,635.3639,488.2003,4.7828,23.9464,0.00000000 1867,628.3609,458.9803,11.7858,53.1664,0.00000000 1868,635.3660,488.3315,4.7807,23.8152,0.00000000 1868,628.3340,459.1894,11.8127,52.9573,0.00000000 1869,635.3133,488.2610,4.8334,23.8857,0.00000000 1869,628.4587,458.9198,11.6880,53.2269,0.00000000 1870,635.2480,488.2054,4.8987,23.9413,0.00000000 1870,628.2498,458.6517,11.8969,53.4950,0.00000000 1871,453.2065,222.3070,26.6739,65.8115,0.00000000 1871,635.3248,488.2171,4.8219,23.9296,0.00000000 1871,628.2967,458.9064,11.8500,53.2403,0.00000000 1872,635.3146,488.2320,4.8321,23.9147,0.00000000 1872,628.3763,459.0714,11.7704,53.0753,0.00000000 1873,635.3505,488.1493,4.7962,23.9974,0.00000000 1873,628.3804,458.9970,11.7663,53.1497,0.00000000 1874,485.4254,225.8678,41.2590,108.8700,0.00000880 1874,474.0541,233.4333,29.6796,74.4535,0.00000000 1874,505.3135,229.0268,26.4834,61.6317,0.00000000 1874,468.4626,156.6446,86.1025,219.2678,0.00000000 1874,635.3909,488.3928,4.7558,23.7539,0.00000000 1874,628.5677,459.5752,11.5790,52.5715,0.00000000 1875,629.6912,204.1133,10.4555,86.7329,0.00000000 1875,635.3042,488.4203,4.8425,23.7264,0.00000000 1875,628.3860,458.9832,11.7607,53.1635,0.00000000 1876,612.0950,208.0868,28.0517,72.0618,0.05604814 1876,631.3708,222.1134,8.7759,58.0571,0.00000000 1876,594.5366,173.7977,45.6101,224.4211,0.00000000 1876,630.5139,174.2995,9.6328,78.9917,0.00000000 1876,636.2988,493.6190,3.8479,18.5277,0.00000000 1876,629.4692,481.3621,10.6775,30.7846,0.00000000 1877,519.8582,306.5332,29.5122,58.4904,0.00000000 1877,635.5888,488.2262,4.5579,23.9205,0.00000000 1877,628.1380,458.8255,12.0087,53.3212,0.00000000 1878,583.8738,207.0283,28.0699,67.8259,0.89040381 1878,599.8486,218.9163,23.7903,54.6843,0.00000003 1878,552.4778,114.7530,87.6689,212.9786,0.00000000 1878,636.3206,493.4402,3.8261,18.7065,0.00000000 1878,629.5883,481.5839,10.5584,30.5628,0.00000000 1879,570.8354,210.3845,34.0990,71.4791,0.82362843 1879,558.1202,203.1762,26.5326,57.9955,0.00000013 1879,526.0040,306.3858,27.1832,65.8537,0.00000000 1879,506.8260,305.4598,30.2847,68.1786,0.00000000 1879,533.1066,110.9137,96.2650,223.8728,0.00000000 1879,636.2039,493.9078,3.9428,18.2389,0.00000000 1879,629.5289,481.3423,10.6178,30.8044,0.00000000 1880,557.8715,206.1441,24.7115,61.2226,0.99595028 1880,572.8716,201.1308,24.4559,55.8972,0.00000053 1880,563.9463,223.0886,35.3053,70.1167,0.00000002 1880,543.9272,200.2748,26.0259,60.9470,0.00000000 1880,524.5790,108.9093,94.9749,216.4111,0.00000000 1880,635.3365,488.0688,4.8102,24.0779,0.00000000 1880,628.4375,458.5098,11.7092,53.6369,0.00000000 1881,550.3034,202.3714,25.7509,64.8595,0.99960691 1881,565.5568,216.1436,24.1974,57.2969,0.00000102 1881,549.8368,180.4202,53.1539,115.7796,0.00000000 1881,635.3681,488.1116,4.7786,24.0351,0.00000000 1881,628.3848,458.7542,11.7619,53.3925,0.00000000 1882,540.4442,206.4128,27.6021,64.5916,0.99965024 1882,525.9739,204.0078,27.0888,61.0389,0.00000896 1882,558.6294,205.4986,23.9720,53.6245,0.00000001 1882,502.0330,112.6034,97.6433,217.1409,0.00000000 1882,635.4366,488.1932,4.7101,23.9535,0.00000000 1882,628.4915,458.8054,11.6552,53.3413,0.00000000 1883,534.3825,208.9091,26.6100,61.1783,0.84994847 1883,516.8331,214.8217,27.4404,64.9462,0.00000567 1883,550.6227,209.2795,24.1596,53.3541,0.00000009 1883,532.1008,184.1182,51.2981,110.8462,0.00000000 1883,496.9033,105.8834,98.5155,216.2869,0.00000000 1883,635.3314,488.1596,4.8153,23.9871,0.00000000 1883,628.4757,458.8040,11.6710,53.3427,0.00000000 1884,535.1721,216.8520,26.5222,60.0017,0.50701922 1884,515.4468,207.6874,30.2842,72.4686,0.00000000 1884,635.2742,487.8990,4.8725,24.2477,0.00000000 1884,628.3510,458.6902,11.7957,53.4565,0.00000000 1885,539.1171,207.8703,29.1007,66.9963,0.99567688 1885,559.6959,211.3051,23.7450,56.2117,0.00000028 1885,504.4210,114.3976,97.4272,213.2529,0.00000000 1885,635.3140,488.3790,4.8327,23.7677,0.00000000 1885,628.3015,458.9341,11.8452,53.2126,0.00000000 1886,579.7373,206.4014,28.9151,67.1137,0.99993211 1886,594.9156,203.2342,23.2997,54.4391,0.00000006 1886,519.7502,311.9950,31.7535,75.6861,0.00000000 1886,513.6303,285.5476,61.2640,164.0613,0.00000000 1886,546.0227,113.9477,94.1240,215.0818,0.00000000 1886,632.1124,487.0461,8.0343,25.1006,0.00000000 1887,429.3271,274.6801,26.0593,64.8822,0.00000000 1887,414.9111,242.0446,54.6333,123.5360,0.00000000 1887,1.0000,197.4596,61.9518,269.1172,0.00000000 1887,635.6031,488.0638,4.5436,24.0829,0.00000000 1888,483.3198,211.2875,90.1080,289.9731,0.00000000 1888,635.3951,488.2606,4.7516,23.8861,0.00000000 1888,628.6252,458.9804,11.5215,53.1663,0.00000000 1889,635.5224,488.1112,4.6243,24.0355,0.00000000 1889,628.6100,459.3117,11.5367,52.8350,0.00000000 1890,635.3307,488.1293,4.8160,24.0174,0.00000000 1890,628.4977,458.8693,11.6490,53.2774,0.00000000 1891,635.4288,488.0991,4.7179,24.0476,0.00000000 1891,628.6904,459.1111,11.4563,53.0356,0.00000000 1892,635.4766,488.1994,4.6701,23.9473,0.00000000 1892,628.6228,459.2032,11.5239,52.9435,0.00000000 1893,635.5157,487.9725,4.6310,24.1742,0.00000000 1893,628.7360,458.8830,11.4107,53.2637,0.00000000 1894,635.4651,487.9988,4.6816,24.1479,0.00000000 1894,628.7324,458.9676,11.4143,53.1791,0.00000000 1895,1.0000,308.0420,32.1713,159.3118,0.00000000 1895,635.3856,487.6969,4.7611,24.4498,0.00000000 1895,628.6845,458.9417,11.4622,53.2050,0.00000000 1896,387.1223,210.3570,22.6588,51.6575,0.00000000 1896,1.0000,384.9795,60.4062,127.1672,0.00000000 1896,635.4153,487.2925,4.7314,24.8542,0.00000000 1896,628.6038,458.3854,11.5429,53.7613,0.00000000 1897,213.3831,236.8417,23.2303,56.3170,0.00000000 1897,104.6324,209.7162,59.8594,138.5643,0.00000000 1897,635.3723,487.4272,4.7744,24.7195,0.00000000 1897,628.6731,458.1542,11.4736,53.9925,0.00000000 1898,519.7883,211.5361,23.9214,52.9832,0.00000001 1898,635.3359,487.2443,4.8108,24.9024,0.00000000 1898,628.5279,458.7785,11.6188,53.3682,0.00000000 1899,92.6387,188.1260,86.7438,283.5503,0.00000000 1899,635.5332,487.6532,4.6135,24.4935,0.00000000 1899,628.8465,458.9088,11.3002,53.2379,0.00000000 1900,568.0737,214.4499,24.9776,55.5283,0.00000000 1900,633.8918,101.6872,6.2549,78.3711,0.00000000 1900,635.3777,488.2028,4.7690,23.9439,0.00000000 1900,628.3879,459.8918,11.7588,52.2549,0.00000000 1901,603.7886,212.6602,22.9533,52.3149,0.01232685 1901,615.0629,206.4331,23.6461,51.0890,0.00000000 1901,636.5123,213.6492,3.6344,60.7696,0.00000000 1901,628.8211,217.5817,11.3256,80.3595,0.00000000 1901,308.8482,299.9833,85.9969,212.1634,0.00000000 1901,635.2670,487.4821,4.8797,24.6646,0.00000000 1901,628.2222,457.9373,11.9245,54.2094,0.00000000 1902,636.6099,494.1725,3.5368,17.9742,0.00000000 1902,629.7300,481.3189,10.4167,30.8278,0.00000000 1903,635.3366,487.5661,4.8101,24.5806,0.00000000 1903,628.3632,458.5038,11.7835,53.6429,0.00000000 1904,186.0310,225.4674,24.6885,59.2734,0.00000000 1904,634.9911,198.3141,5.1556,76.4540,0.00000000 1904,635.3138,487.7494,4.8329,24.3973,0.00000000 1904,628.4515,459.4562,11.6952,52.6905,0.00000000 1905,185.0389,232.3388,36.4434,77.0358,0.00000000 1905,637.5201,202.5018,2.6266,65.7806,0.00000000 1905,635.2815,487.2904,4.8652,24.8563,0.00000000 1905,628.3513,458.6101,11.7954,53.5366,0.00000000 1906,117.4520,227.3200,30.1776,70.6219,0.00000000 1906,193.6655,232.1036,23.7431,56.7805,0.00000000 1906,116.4086,205.1772,60.9532,147.1983,0.00000000 1906,635.3638,486.9523,4.7829,25.1944,0.00000000 1906,628.5160,457.7807,11.6307,54.3660,0.00000000 1907,192.4517,236.9984,24.5065,55.5336,0.00000002 1907,13.8556,255.5395,82.7801,256.6072,0.00000000 1907,71.2599,198.7498,87.2563,258.8526,0.00000000 1907,629.3842,479.1691,10.7625,32.9776,0.00000000 1908,200.4399,237.2699,25.5795,61.6902,0.00000158 1908,189.0642,222.5039,25.6694,58.1973,0.00000000 1908,535.8072,200.9173,25.4858,53.1786,0.00000000 1908,116.8089,192.1476,56.6520,141.9489,0.00000000 1908,186.4872,182.5666,52.1961,110.6964,0.00000000 1908,72.3531,215.9285,89.3121,265.2806,0.00000000 1908,1.0000,269.2678,76.2144,242.8789,0.00000000 1908,628.3243,459.0156,11.8224,53.1311,0.00000000 1908,635.3119,487.7718,4.8348,24.3749,0.00000000 1909,193.8996,235.2239,26.5905,56.3005,0.00000612 1909,185.0231,197.9731,52.0634,117.4397,0.00000000 1909,1.0000,287.5343,59.8756,224.6124,0.00000000 1909,635.7322,487.3712,4.4145,24.7755,0.00000000 1910,189.5427,234.8876,28.4438,63.7684,0.00297002 1910,386.0363,238.9457,22.4068,57.8067,0.00000005 1910,586.7972,343.1322,32.8057,77.9438,0.00000000 1910,502.3675,290.0602,30.0720,63.0513,0.00000000 1910,395.5233,222.3465,27.7006,67.1141,0.00000000 1910,31.9614,241.9903,86.0616,270.1564,0.00000000 1910,629.1923,477.1533,10.9544,34.9934,0.00000000 1911,563.8290,331.7187,28.8186,78.8118,0.00000076 1911,189.3011,233.3114,27.4167,64.7546,0.00000003 1911,55.3628,221.0715,25.1240,56.7053,0.00000000 1911,174.8305,233.7671,25.2514,60.8661,0.00000000 1911,438.8579,269.6243,28.2348,67.3797,0.00000000 1911,554.4978,323.4782,58.0221,137.1090,0.00000000 1911,5.1586,264.6093,82.9383,247.5374,0.00000000 1911,629.4656,477.7385,10.6811,34.4082,0.00000000 1912,173.2797,241.4232,23.9666,56.9762,0.00000095 1912,444.5386,276.5509,24.9987,55.5535,0.00000014 1912,185.7686,245.6693,24.8325,57.7800,0.00000000 1912,582.7651,327.9819,28.3313,61.2876,0.00000000 1912,166.7573,200.0360,47.3905,101.1767,0.00000000 1912,1.0000,381.7784,61.3148,130.3683,0.00000000 1912,629.4200,478.7638,10.7267,33.3829,0.00000000 1913,482.9216,291.1080,26.4362,66.8871,0.01526195 1913,168.4080,244.6105,32.3395,67.0178,0.01484782 1913,494.2044,310.2451,25.5880,70.7040,0.00000000 1913,88.4285,229.0787,35.2259,84.0241,0.00000000 1913,481.6386,271.6161,86.5324,240.5306,0.00000000 1913,629.3848,478.1412,10.7619,34.0055,0.00000000 1914,164.4315,244.3134,27.0064,59.7983,0.00015131 1914,584.0517,265.4914,56.0950,154.4206,0.00000000 1914,368.8756,201.1066,28.5383,57.8668,0.00000000 1914,621.9404,298.7156,18.2063,135.5978,0.00000000 1914,631.9485,321.2329,8.1982,84.2299,0.00000000 1914,632.3146,378.3792,7.8321,80.2395,0.00000000 1914,637.1881,301.2384,2.9586,67.9886,0.00000000 1914,629.4377,478.2082,10.7090,33.9385,0.00000000 1915,71.8583,237.5369,31.8857,73.7240,0.00818707 1915,150.2681,247.5134,32.4231,64.9478,0.00089739 1915,608.1042,381.6573,28.5037,68.2939,0.00000000 1915,148.3743,181.1832,51.4257,117.6167,0.00000000 1915,504.7716,179.6657,81.8491,270.5318,0.00000000 1915,449.4351,168.5669,89.0968,261.9479,0.00000000 1915,629.3002,477.2478,10.8465,34.8989,0.00000000 1915,629.1035,371.4607,11.0432,86.1077,0.00000000 1916,136.4519,238.4010,29.5567,65.7323,0.00000817 1916,152.2116,260.2761,26.2970,60.6218,0.00000000 1916,404.7798,203.4092,23.2241,56.6353,0.00000000 1916,524.9536,168.0350,80.8590,261.2412,0.00000000 1916,537.9487,280.4534,34.4682,92.7957,0.00000000 1916,628.8351,457.1052,11.3116,55.0415,0.00000000 1916,635.5240,486.7366,4.6227,25.4101,0.00000000 1917,127.1288,243.1883,28.7859,64.4100,0.00016686 1917,110.5977,237.0541,28.8771,68.0867,0.00000074 1917,15.8784,219.8195,39.3670,98.8011,0.00000009 1917,431.3616,196.0354,24.5690,51.8641,0.00000000 1917,418.9462,201.2176,24.9947,57.7230,0.00000000 1917,629.3014,478.8243,10.8453,33.3224,0.00000000 1917,7.1815,161.6185,87.4937,234.8849,0.00000000 1918,472.1001,204.1663,27.2588,76.1672,0.00000000 1918,89.3665,230.3933,29.5958,72.9429,0.00000000 1918,486.0085,209.2462,24.9061,57.3177,0.00000000 1918,628.4858,1.0000,11.6609,52.3519,0.00000000 1918,418.3094,1.0000,63.1765,119.2069,0.00000000 1918,72.1490,179.5900,84.4592,237.2780,0.00000000 1918,1.0000,383.2740,58.4380,128.8727,0.00000000 1918,629.7676,479.1795,10.3791,32.9672,0.00000000 1919,559.0862,190.8026,39.7244,89.1342,0.00000170 1919,77.5304,234.9613,37.0322,83.6151,0.00000017 1919,528.5021,208.3283,26.8709,61.9455,0.00000004 1919,546.0869,208.9762,27.8328,63.1773,0.00000000 1919,528.8461,161.0390,93.0798,237.0680,0.00000000 1919,46.3589,194.2477,91.7792,241.2337,0.00000000 1919,635.1527,487.9138,4.9940,24.2329,0.00000000 1919,627.9630,458.5373,12.1837,53.6094,0.00000000 1920,78.8334,246.2195,23.9072,56.2328,0.00000000 1920,71.1080,267.1711,24.4975,63.1554,0.00000000 1920,37.3149,199.6775,56.1226,157.3168,0.00000000 1920,629.3600,477.8914,10.7867,34.2553,0.00000000 1921,67.9751,241.8629,28.6261,61.1386,0.00000000 1921,628.6503,456.7409,11.4964,55.4058,0.00000000 1921,635.4781,486.5250,4.6686,25.6217,0.00000000 1922,40.9833,195.5198,60.0028,164.4075,0.00000002 1922,59.9817,245.0809,34.1096,79.0691,0.00000001 1922,79.6543,253.0500,31.5604,66.0579,0.00000000 1922,629.4879,479.8312,10.6588,32.3155,0.00000000 1923,76.4556,232.2521,29.9356,64.6521,0.00000000 1923,54.0586,180.7713,57.1550,134.9149,0.00000000 1923,635.6458,487.6142,4.5009,24.5325,0.00000000 1924,476.9517,236.4774,89.6209,267.1084,0.00000000 1924,635.5341,487.2002,4.6126,24.9465,0.00000000 1924,628.3565,457.9113,11.7902,54.2354,0.00000000 1925,635.2433,486.9550,4.9034,25.1917,0.00000000 1925,628.1154,456.7292,12.0313,55.4175,0.00000000 1926,45.6178,222.4402,26.1194,53.2290,0.00000000 1926,64.3023,212.6446,26.4823,60.6260,0.00000000 1926,629.5463,478.9511,10.6004,33.1956,0.00000000 1927,635.6392,488.4651,4.5075,23.6816,0.00000000 1927,628.1988,458.0195,11.9479,54.1272,0.00000000 1928,1.0000,293.5867,53.4768,156.9379,0.00000000 1928,635.4366,487.4011,4.7101,24.7456,0.00000000 1928,627.8995,455.7083,12.2472,56.4384,0.00000000 1929,496.4198,307.1497,95.4407,204.9970,0.00000000 1929,636.2288,492.7224,3.9179,19.4243,0.00000000 1929,629.6404,479.8659,10.5063,32.2808,0.00000000 1930,1.0000,277.9124,59.1264,234.2343,0.00000000 1930,636.2345,492.8954,3.9122,19.2513,0.00000000 1930,629.7470,479.9738,10.3997,32.1729,0.00000000 1931,141.5535,216.3756,38.8659,86.4796,0.00000000 1931,1.0000,257.1558,70.9231,254.9909,0.00000000 1931,495.2390,306.3291,93.1735,205.8176,0.00000000 1931,636.2115,492.7314,3.9352,19.4153,0.00000000 1931,629.6215,480.0356,10.5252,32.1111,0.00000000 1932,389.6617,221.6086,27.5784,79.2542,0.00000000 1932,35.2260,229.8689,86.3397,278.5352,0.00000000 1932,493.9074,307.7615,92.8840,204.3852,0.00000000 1932,1.0000,210.1140,60.8176,265.5494,0.00000000 1932,636.1688,492.7129,3.9779,19.4338,0.00000000 1932,629.7029,480.2135,10.4438,31.9332,0.00000000 1933,380.1218,237.2018,29.9308,82.7052,0.99407279 1933,379.3717,202.7932,25.4050,61.9208,0.00000000 1933,393.6339,228.9725,31.2740,70.5350,0.00000000 1933,354.8015,235.9158,39.4195,86.2923,0.00000000 1933,126.3285,236.1711,54.8668,150.2778,0.00000000 1933,347.0873,157.9191,88.1137,225.0391,0.00000000 1933,631.2085,485.8290,8.9382,26.3177,0.00000000 1934,377.1764,237.9401,36.1073,82.9687,0.70861107 1934,353.8176,223.2803,33.2577,79.2754,0.00000000 1934,392.3955,225.5360,33.1344,67.4941,0.00000000 1934,1.0000,440.8108,30.8195,71.3359,0.00000000 1934,168.5367,218.3453,43.3493,113.0685,0.00000000 1934,1.0000,276.1033,59.1203,236.0434,0.00000000 1934,50.9803,198.8519,59.9340,143.1591,0.00000000 1934,148.4379,187.6778,87.8746,237.2484,0.00000000 1934,331.1517,163.6258,87.8939,241.1642,0.00000000 1934,635.3095,487.7427,4.8372,24.4040,0.00000000 1934,628.1406,457.7280,12.0061,54.4187,0.00000000 1935,382.6398,240.3531,27.5969,73.8045,0.99941093 1935,364.9272,233.6140,32.0509,65.6258,0.00000000 1935,77.4607,224.5023,65.3463,163.7190,0.00000000 1935,396.8519,227.2429,34.3696,76.7553,0.00000000 1935,95.4682,225.4066,29.2963,68.9410,0.00000000 1935,196.2347,224.6781,34.7530,75.0124,0.00000000 1935,348.8783,214.5733,91.3977,214.0327,0.00000000 1935,1.0000,382.7340,59.4719,129.4127,0.00000000 1935,631.8865,485.9790,8.2602,26.1677,0.00000000 1936,398.6810,215.0041,31.2723,87.7929,0.99723148 1936,147.3211,275.2121,31.7295,76.8849,0.00000002 1936,141.0272,225.7427,27.4894,66.3867,0.00000000 1936,364.5269,211.1042,36.3533,87.9481,0.00000000 1936,417.9554,218.4287,32.0778,74.3923,0.00000000 1936,125.5167,203.8988,56.2647,137.0626,0.00000000 1936,91.5694,221.4981,88.8179,259.2598,0.00000000 1936,376.1316,161.2424,83.0572,212.3099,0.00000000 1936,635.1260,487.2361,5.0207,24.9106,0.00000000 1937,429.3279,218.4696,42.1228,118.9911,0.99656123 1937,417.6947,210.5912,34.3453,83.3299,0.00000000 1937,150.5608,240.6822,30.2245,69.4946,0.00000000 1937,161.6130,231.1125,41.9035,101.5507,0.00000000 1937,129.4383,195.7756,85.2012,241.1304,0.00000000 1937,393.1243,186.7764,85.1283,236.6361,0.00000000 1937,635.2625,486.4970,4.8842,25.6497,0.00000000 1937,627.4941,455.0127,12.6526,57.1340,0.00000000 1938,479.2137,202.3039,57.8405,162.4151,0.99999088 1938,509.5361,223.8448,44.2502,101.6217,0.00000000 1938,467.1763,220.0974,40.8841,95.3341,0.00000000 1938,491.9307,241.9713,28.0677,89.1175,0.00000000 1938,184.1698,226.4263,29.8669,71.4314,0.00000000 1938,304.2101,248.5141,22.2575,47.8803,0.00000000 1938,467.8602,247.2410,85.7457,245.4111,0.00000000 1938,629.7343,479.6394,10.4124,32.5073,0.00000000 1939,623.9340,236.5498,16.2127,124.1670,0.00000000 1939,601.8879,213.8302,38.2588,258.1685,0.00000000 1939,634.0771,253.3638,6.0696,76.9699,0.00000000 1939,283.0921,477.9747,36.6343,34.1720,0.00000000 1939,635.6381,487.5967,4.5086,24.5500,0.00000000 1939,628.0967,457.1545,12.0500,54.9922,0.00000000 1940,439.4604,204.1577,27.8310,52.8710,0.00000000 1940,583.8682,214.3546,40.5171,105.2560,0.00000000 1940,634.9767,248.7586,5.1700,76.3583,0.00000000 1940,636.3414,493.2914,3.8053,18.8553,0.00000000 1940,629.7686,480.4309,10.3781,31.7158,0.00000000 1941,589.4379,355.7416,27.5719,63.8800,0.00000000 1941,463.2920,197.7435,28.8899,58.4302,0.00000000 1941,636.3151,493.2339,3.8316,18.9128,0.00000000 1941,629.5087,480.3877,10.6380,31.7590,0.00000000 1942,493.6019,200.6828,28.0375,59.2720,0.00000000 1942,427.7082,193.6111,87.6581,261.3591,0.00000000 1942,1.0000,383.6153,58.0783,128.5314,0.00000000 1942,629.5584,479.0504,10.5883,33.0963,0.00000000 1943,531.6545,204.9289,31.6618,61.7595,0.00000000 1943,629.6360,479.4554,10.5107,32.6913,0.00000000 1944,592.2640,199.2168,24.6268,65.6278,0.00000001 1944,417.3445,203.2467,26.0045,55.4155,0.00000000 1944,531.2207,248.8970,23.8863,55.9013,0.00000000 1944,603.1809,194.6029,35.0586,75.8316,0.00000000 1944,596.8184,147.4827,43.3283,259.7628,0.00000000 1944,635.4042,208.7255,4.7425,70.2169,0.00000000 1944,638.1623,188.1779,1.9844,66.5608,0.00000000 1944,626.8301,175.7504,13.3166,121.9473,0.00000000 1944,636.2946,492.9430,3.8521,19.2037,0.00000000 1944,629.3365,479.8327,10.8102,32.3140,0.00000000 1945,437.7654,194.2137,25.8090,52.2661,0.11013790 1945,450.3788,202.7071,23.6927,54.5249,0.00000000 1945,420.8789,191.4872,27.5082,52.1237,0.00000000 1945,429.4270,162.8035,49.4439,102.2841,0.00000000 1945,629.3398,477.4135,10.8069,34.7332,0.00000000 1946,479.3489,214.5803,22.7614,51.1921,0.15913995 1946,462.5722,212.1097,23.3155,50.7908,0.02846995 1946,491.9270,212.5464,23.9598,51.9433,0.00000000 1946,448.9958,205.7378,24.5047,57.6007,0.00000000 1946,629.1551,477.2107,10.9916,34.9360,0.00000000 1947,521.9251,205.3653,26.8573,62.8632,0.89953333 1947,538.7467,210.8406,26.0373,58.1590,0.00000189 1947,433.3570,188.7981,23.5373,57.0714,0.00000000 1947,523.0917,168.7924,53.7422,119.1270,0.00000000 1947,629.6570,480.1086,10.4897,32.0381,0.00000000 1948,456.6089,202.0372,29.5486,58.3050,0.00000672 1948,474.7066,197.1444,30.5241,63.2949,0.00000002 1948,440.1141,212.0176,27.7242,56.9448,0.00000000 1948,489.3360,200.2730,34.9762,67.6531,0.00000000 1948,628.4224,456.9006,11.7243,55.2461,0.00000000 1948,635.5189,486.5633,4.6278,25.5834,0.00000000 1949,523.0560,204.6918,24.6347,54.0671,0.96704119 1949,500.2916,203.0943,25.4724,60.5562,0.91224176 1949,533.5402,206.7531,32.5314,74.3236,0.00000019 1949,456.5193,202.6614,24.8576,63.2056,0.00000000 1950,575.9498,204.2191,33.9487,74.7605,0.99993664 1950,607.5927,201.8328,31.5234,69.7374,0.99980962 1950,495.6200,208.9662,25.1198,54.4593,0.00005778 1950,631.3431,210.7296,8.8036,60.6979,0.00000000 1950,629.4816,478.6521,10.6651,33.4946,0.00000000 1951,541.4718,205.5797,29.5892,60.8663,0.00022948 1951,595.6464,237.3385,28.5694,66.6266,0.00000000 1951,559.0096,202.9269,29.6772,60.2832,0.00000000 1951,534.4805,180.2499,52.0601,125.1822,0.00000000 1951,358.1297,198.5903,25.2906,55.5882,0.00000000 1951,634.4756,229.3042,5.6711,76.1712,0.00000000 1951,631.5455,484.0450,8.6012,28.1017,0.00000000 1952,338.2242,208.2366,22.3507,55.6964,0.00000000 1952,629.5993,479.2658,10.5474,32.8809,0.00000000 1953,356.9685,207.0791,22.5902,54.9798,0.00000274 1953,629.3434,477.8786,10.8033,34.2681,0.00000000 1954,384.1606,211.5891,23.4374,54.0323,0.00000011 1954,23.4217,208.2375,34.0649,76.0927,0.00000000 1954,397.4608,207.1356,24.6785,53.0553,0.00000000 1954,629.3303,478.1688,10.8164,33.9779,0.00000000 1955,378.3740,223.7588,23.1520,53.0266,0.00002599 1955,358.0360,225.2416,21.9229,48.3005,0.00001337 1955,333.9879,225.9593,21.1358,46.3365,0.00000000 1955,346.3932,212.9401,20.1090,51.8230,0.00000000 1955,629.1075,477.6502,11.0392,34.4965,0.00000000 1956,560.6611,221.6501,26.6863,57.9430,0.07984048 1956,551.7879,210.4732,22.2982,54.7837,0.00000000 1956,629.4681,478.3529,10.6786,33.7938,0.00000000 1956,525.9941,129.8908,97.2827,214.7520,0.00000000 1957,410.4752,204.3835,24.4758,50.4431,0.33815002 1957,529.4108,210.8499,21.4913,52.1016,0.30709189 1957,422.4403,210.1407,25.3681,57.2751,0.00000000 1957,540.1562,220.5880,22.4839,52.7377,0.00000000 1957,637.1740,261.8406,2.9727,62.8095,0.00000000 1957,629.8166,246.7991,10.3301,82.2726,0.00000000 1957,283.1643,280.7370,86.6839,231.4097,0.00000000 1957,629.5234,478.6218,10.6233,33.5249,0.00000000 1958,454.4878,228.5925,23.6764,55.9279,0.99465287 1958,442.4449,223.7589,23.0329,50.0088,0.00000003 1958,469.1210,230.3661,26.2008,54.8111,0.00000000 1958,441.1896,196.3015,50.9738,105.2650,0.00000000 1958,408.7257,138.5836,100.2944,229.3797,0.00000000 1958,629.4683,478.7280,10.6784,33.4187,0.00000000 1959,548.5076,209.6739,34.1020,81.5903,0.99999976 1959,575.6150,206.7113,30.7478,71.5941,0.99952662 1959,591.2875,203.8177,29.9595,61.4652,0.00000000 1959,397.3580,204.9545,25.4204,59.5397,0.00000000 1959,530.4433,127.4740,89.6686,204.9336,0.00000000 1959,635.6152,486.8819,4.5315,25.2648,0.00000000 1960,368.3457,202.7249,26.2399,58.4164,0.00000000 1960,629.6434,480.0994,10.5033,32.0473,0.00000000 1961,635.7147,488.1747,4.4320,23.9720,0.00000000 1961,628.4432,457.9022,11.7035,54.2445,0.00000000 1962,635.3404,487.9829,4.8063,24.1638,0.00000000 1962,628.2956,458.3322,11.8511,53.8145,0.00000000 1963,364.8915,200.8919,26.7985,54.0926,0.00000000 1963,500.3785,209.7186,30.0213,70.5103,0.00000000 1963,431.6876,213.2001,28.1438,64.8803,0.00000000 1963,635.3698,487.6829,4.7769,24.4638,0.00000000 1963,628.7039,459.0273,11.4428,53.1194,0.00000000 1964,397.4280,212.4641,22.6152,52.5340,0.00003291 1964,567.7443,197.9994,26.5870,55.3339,0.00000280 1964,521.0666,219.9160,22.1005,57.3522,0.00000000 1964,353.0787,206.1548,21.4983,53.9575,0.00000000 1964,555.3322,210.8273,27.4462,70.9494,0.00000000 1964,533.4359,212.7161,28.1470,63.8336,0.00000000 1964,635.6284,488.5823,4.5183,23.5644,0.00000000 1965,383.9392,214.3716,21.8704,51.8927,0.94542015 1965,631.8395,487.7430,8.3072,24.4037,0.00000000 1966,458.9314,224.4210,30.5811,71.2310,1.00000000 1966,571.7654,226.8981,35.6808,93.2701,0.95778483 1966,476.5648,229.0591,25.6332,55.2229,0.00000000 1966,545.3530,185.5843,90.2757,206.7912,0.00000000 1966,631.9270,487.4445,8.2197,24.7022,0.00000000 1967,408.4091,199.4676,28.2812,63.8556,0.00003210 1967,480.8165,104.5749,87.0349,270.0936,0.00000000 1967,302.0832,1.0000,84.8546,219.2107,0.00000000 1967,635.5782,487.8469,4.5685,24.2998,0.00000000 1968,628.2189,1.0000,11.9278,48.7471,0.00000000 1968,635.7588,488.3716,4.3879,23.7751,0.00000000 1968,628.8738,459.9059,11.2729,52.2408,0.00000000 1969,479.5713,202.3709,24.9793,59.1281,0.00000000 1969,558.0173,165.9076,41.9352,117.2314,0.00000000 1969,552.7537,100.4473,81.6290,249.2436,0.00000000 1969,631.8306,487.3495,8.3161,24.7972,0.00000000 1970,635.0967,185.6190,5.0500,78.5716,0.00000000 1970,635.4353,487.9905,4.7114,24.1562,0.00000000 1970,628.3250,458.6360,11.8217,53.5107,0.00000000 1971,369.4952,190.1038,28.1122,56.4480,0.00000000 1971,391.7036,195.6088,24.3306,53.6431,0.00000000 1971,419.3454,203.1001,24.2433,53.8643,0.00000000 1971,635.2424,487.8374,4.9043,24.3093,0.00000000 1971,628.3483,457.9994,11.7984,54.1473,0.00000000 1972,635.4542,487.9573,4.6925,24.1894,0.00000000 1972,628.4907,458.7747,11.6560,53.3720,0.00000000 1973,423.8591,209.2292,19.9971,48.9934,0.00488346 1973,446.9410,208.7994,22.1710,52.9823,0.00042997 1973,405.4420,202.4301,23.1120,51.3649,0.00000000 1973,433.1764,217.7619,20.8234,52.4952,0.00000000 1973,512.8799,162.0473,89.5725,264.7838,0.00000000 1973,635.3669,488.0489,4.7798,24.0978,0.00000000 1973,628.3087,457.7358,11.8380,54.4109,0.00000000 1974,451.5653,211.0406,22.0657,53.3909,0.02470816 1974,414.3430,207.2878,23.0635,48.6793,0.00811997 1974,481.7863,207.5674,21.1487,50.2251,0.00248681 1974,466.9667,208.6022,21.9402,50.9324,0.00000000 1974,433.5845,200.9292,22.4763,50.1378,0.00000000 1974,632.0331,486.8607,8.1136,25.2860,0.00000000 1975,440.1296,218.7668,25.6739,58.9084,0.99999946 1975,501.1498,220.7280,27.0027,64.9288,0.99998361 1975,548.1795,215.9953,24.2037,55.8488,0.99977332 1976,503.1003,221.9786,36.4501,86.2161,0.99999100 1976,468.3810,191.0737,93.4186,193.8868,0.00000000 1976,631.7067,487.0548,8.4400,25.0919,0.00000000 1977,635.8989,488.0434,4.2478,24.1033,0.00000000 1977,628.6954,458.8954,11.4513,53.2513,0.00000000 1978,595.6786,132.0874,44.4681,263.2655,0.00000000 1978,626.7741,165.8445,13.3726,130.3695,0.00000000 1978,635.3573,487.8449,4.7894,24.3018,0.00000000 1978,628.4539,458.8877,11.6928,53.2590,0.00000000 1979,388.8154,204.6573,34.7898,77.5771,0.00000000 1979,370.5366,210.5558,24.6202,59.5058,0.00000000 1979,599.4283,191.3061,22.5091,54.9157,0.00000000 1979,636.2045,488.5907,3.9422,23.5560,0.00000000 1980,503.0587,184.4854,46.7620,129.8066,0.00000000 1980,396.6276,194.6048,24.5785,55.4593,0.00000000 1980,506.1241,1.0000,46.8330,120.2900,0.00000000 1980,470.8927,181.0441,55.7295,143.2987,0.00000000 1980,408.1938,2.3538,62.5370,151.1019,0.00000000 1980,437.0261,31.1673,83.7522,278.0561,0.00000000 1980,515.8492,1.0000,87.2433,221.2517,0.00000000 1980,636.1466,488.4811,4.0001,23.6656,0.00000000 1981,431.9144,202.1276,24.7011,57.3932,0.21325909 1981,384.6323,196.2554,24.9467,57.6918,0.00000000 1981,363.9702,202.8436,24.2815,55.6296,0.00000000 1981,611.5255,241.5474,24.4500,55.4543,0.00000000 1981,628.7064,230.6080,11.4403,78.5089,0.00000000 1981,637.0292,237.5965,3.1175,62.8343,0.00000000 1981,391.7175,129.3033,98.6829,221.9063,0.00000000 1981,635.7564,487.8405,4.3903,24.3062,0.00000000 1981,628.2025,455.5448,11.9442,56.6019,0.00000000 1982,509.5342,213.4143,23.5419,53.7412,0.99530554 1982,417.1443,201.7507,29.7619,70.0783,0.00000005 1982,497.8166,206.2635,21.5951,54.0505,0.00000000 1982,501.6253,179.9288,47.3850,105.4847,0.00000000 1982,632.1941,487.4785,7.9526,24.6682,0.00000000 1983,532.7506,217.1231,28.5014,64.5714,0.00000000 1983,504.6059,198.1181,31.3660,76.4132,0.00000000 1983,600.7219,125.9840,39.4248,264.0536,0.00000000 1983,627.3640,208.4161,12.7827,91.8682,0.00000000 1983,638.9086,212.9572,1.2381,66.5526,0.00000000 1983,634.1935,176.1486,5.9532,84.5284,0.00000000 1983,635.4117,487.7277,4.7350,24.4190,0.00000000 1983,628.7492,458.8634,11.3975,53.2833,0.00000000 1984,484.8659,203.4009,23.3759,56.8496,0.00001856 1984,425.7838,203.5247,23.9713,50.6231,0.00000049 1984,413.4088,199.7711,23.4176,51.9913,0.00000000 1984,528.2336,100.9579,46.9643,139.0111,0.00000000 1984,503.2263,68.7545,83.0652,268.0479,0.00000000 1984,635.5139,488.1133,4.6328,24.0334,0.00000000 1984,628.5143,458.7264,11.6324,53.4203,0.00000000 1985,443.8026,205.2490,25.3514,54.7765,0.00000043 1985,589.7637,214.2571,24.1363,72.8003,0.00000000 1985,355.4030,201.7068,27.6885,62.6151,0.00000000 1985,574.9068,164.9088,50.3137,121.4011,0.00000000 1985,430.0614,167.5034,54.8885,111.5129,0.00000000 1985,635.5474,487.9102,4.5993,24.2365,0.00000000 1985,628.8712,458.5363,11.2755,53.6104,0.00000000 1986,490.9339,205.0844,23.6338,54.7729,0.98934633 1986,503.6994,202.7692,28.8553,58.2426,0.00000002 1986,477.0695,202.1592,23.2287,51.2494,0.00000000 1986,490.0357,168.0591,55.4113,111.9459,0.00000000 1986,602.3876,129.0755,37.7591,264.0168,0.00000000 1986,636.2115,219.6696,3.9352,69.0165,0.00000000 1986,625.9529,175.9088,14.1938,121.9071,0.00000000 1986,635.4794,487.7034,4.6673,24.4433,0.00000000 1986,628.8593,458.0800,11.2874,54.0667,0.00000000 1987,566.8496,200.9202,33.8298,69.2434,0.99923056 1987,475.2709,201.6639,23.7115,52.4594,0.00000060 1987,542.3879,110.1982,94.7992,209.3035,0.00000000 1987,633.4398,210.7664,6.7069,84.1456,0.00000000 1987,635.5543,488.2474,4.5924,23.8993,0.00000000 1987,628.7952,459.4441,11.3515,52.7026,0.00000000 1988,635.4126,487.8340,4.7341,24.3127,0.00000000 1988,628.5762,458.4449,11.5705,53.7018,0.00000000 1989,465.4463,207.6337,26.2685,56.7053,0.99903107 1989,481.3427,211.9571,27.5945,54.4671,0.00000000 1989,579.6715,168.1196,28.1468,65.6350,0.00000000 1989,458.1793,160.6158,49.7165,105.0237,0.00000000 1989,634.5678,188.0700,5.5789,80.7821,0.00000000 1989,635.5835,487.4435,4.5632,24.7032,0.00000000 1989,628.8658,457.0295,11.2809,55.1172,0.00000000 1990,460.1512,210.7124,27.3430,60.3235,0.66596943 1990,448.9651,205.7137,23.6765,58.8157,0.00000000 1990,475.7022,209.0252,26.3028,58.5649,0.00000000 1990,423.8579,117.8475,96.7347,216.7165,0.00000000 1990,635.6691,488.8623,4.4776,23.2844,0.00000000 1990,628.4240,458.2541,11.7227,53.8926,0.00000000 1991,489.0704,215.1792,25.5450,61.4756,0.00000082 1991,187.5631,218.9153,20.7149,57.4689,0.00000001 1991,478.8945,175.6493,49.7527,112.3155,0.00000000 1991,635.4327,487.8802,4.7140,24.2665,0.00000000 1991,628.3564,458.0344,11.7903,54.1123,0.00000000 1992,528.5652,206.9623,35.6123,86.1152,0.38334486 1992,125.7239,208.0715,26.3088,59.1814,0.00000000 1992,515.2598,203.0359,30.8082,65.7156,0.00000000 1992,318.1530,1.0000,89.3886,236.6915,0.00000000 1992,496.5133,190.2426,88.3281,227.8317,0.00000000 1992,408.2147,123.5653,44.5150,142.6188,0.00000000 1992,390.2869,53.6143,86.5017,272.5051,0.00000000 1992,635.8983,487.9715,4.2484,24.1752,0.00000000 1993,73.8394,220.5092,32.5221,68.2754,0.00000009 1993,598.9149,228.2638,34.8811,79.3291,0.00000000 1993,580.2502,143.4659,59.8965,181.5358,0.00000000 1993,391.2709,1.0000,76.1078,199.7880,0.00000000 1993,535.4501,55.3387,87.9909,273.0780,0.00000000 1993,621.4474,165.9297,18.6993,144.7082,0.00000000 1993,631.4182,140.5917,8.7285,108.4162,0.00000000 1993,364.6579,104.2405,89.4242,265.9899,0.00000000 1993,633.1567,217.6854,6.9900,73.8448,0.00000000 1993,41.7150,106.3823,82.4277,259.6988,0.00000000 1993,635.2440,487.7859,4.9027,24.3608,0.00000000 1994,46.9223,219.0640,31.8333,69.4085,0.00000002 1994,424.3510,46.9927,67.2557,188.4372,0.00000000 1994,598.1259,94.2991,42.0208,175.3716,0.00000000 1994,494.9848,1.0000,82.7237,210.4345,0.00000000 1994,628.2814,130.0639,11.8653,111.2152,0.00000000 1994,516.5336,71.3949,88.6013,275.5739,0.00000000 1994,569.5192,97.8009,50.2350,158.0161,0.00000000 1994,635.5684,487.7469,4.5783,24.3998,0.00000000 1995,47.3273,225.0659,32.8176,71.2873,0.00000002 1995,596.4403,104.5062,43.7064,162.3571,0.00000000 1995,29.2620,175.4034,42.2278,113.7070,0.00000000 1995,622.0803,154.1119,18.0664,135.4855,0.00000000 1995,623.5836,71.9440,16.5631,139.5728,0.00000000 1995,464.5932,1.0000,85.3475,255.6234,0.00000000 1995,556.6266,138.9995,83.5201,274.4255,0.00000000 1995,630.6394,211.1229,9.5073,106.3379,0.00000000 1995,635.6201,488.8488,4.5266,23.2979,0.00000000 1995,628.2969,456.6399,11.8498,55.5068,0.00000000 1996,212.6932,248.4209,27.8093,52.9752,0.00000000 1996,635.7563,488.4275,4.3904,23.7192,0.00000000 1996,628.5056,457.7657,11.6411,54.3810,0.00000000 1997,635.7214,488.3861,4.4253,23.7606,0.00000000 1997,628.4705,457.9365,11.6762,54.2102,0.00000000 1998,513.2404,122.5809,58.9408,168.3083,0.00000000 1998,478.5783,1.0000,82.2705,204.0943,0.00000000 1998,635.6450,488.3786,4.5017,23.7681,0.00000000 1998,628.3353,457.8116,11.8114,54.3351,0.00000000 1999,380.0165,205.5790,22.9076,58.7789,0.00000000 1999,635.6813,488.0212,4.4654,24.1255,0.00000000 1999,628.4099,458.6033,11.7368,53.5434,0.00000000 2000,511.9077,140.5928,57.1893,162.0475,0.00000000 2000,635.5396,487.8863,4.6071,24.2604,0.00000000 2000,628.5261,459.6033,11.6206,52.5434,0.00000000 2001,377.5234,219.3175,21.3208,51.7828,0.00000006 2001,190.6756,182.8354,30.6383,61.6188,0.00000000 2001,517.5356,188.2649,43.8677,115.3182,0.00000000 2001,162.6849,200.6672,44.2613,122.8203,0.00000000 2001,10.8434,165.9862,90.5257,284.5225,0.00000000 2001,140.2609,156.0410,87.2257,250.2883,0.00000000 2001,505.7166,111.9023,82.7868,266.7922,0.00000000 2001,635.6052,488.3086,4.5415,23.8381,0.00000000 2001,628.6334,459.6009,11.5133,52.5458,0.00000000 2002,121.2764,269.0255,27.3609,60.1261,0.00000020 2002,111.6720,240.1297,51.1795,114.3138,0.00000000 2002,384.7862,210.8006,23.4375,51.9225,0.00000000 2002,595.5156,90.3094,44.6311,276.9276,0.00000000 2002,635.5551,488.0203,4.5916,24.1264,0.00000000 2002,628.6786,459.1691,11.4681,52.9776,0.00000000 2003,311.0821,199.5451,21.6761,47.9530,0.00037632 2003,331.5202,204.1028,22.7189,50.1141,0.00000000 2003,343.0732,203.5729,23.3917,60.7369,0.00000000 2003,140.8879,172.1385,38.4498,88.4614,0.00000000 2003,567.8705,16.8510,72.2762,261.4256,0.00000000 2003,533.6707,98.7700,88.6862,274.9908,0.00000000 2003,1.0000,359.1268,59.1446,153.0199,0.00000000 2003,630.5400,69.0962,9.6067,101.2132,0.00000000 2003,114.7983,61.3698,79.0581,264.3402,0.00000000 2003,635.4718,487.8364,4.6749,24.3103,0.00000000 2003,628.6721,459.2289,11.4746,52.9178,0.00000000 2004,318.9483,208.9334,22.6225,50.4984,0.68243301 2004,338.5945,207.3459,21.9562,45.5450,0.00000018 2004,351.7288,206.2869,21.2256,46.9395,0.00000000 2004,42.6166,170.1933,56.0407,143.3723,0.00000000 2004,202.7359,248.3539,24.7529,55.6088,0.00000000 2004,633.7974,211.2365,6.3493,80.7298,0.00000000 2004,564.1184,120.7795,76.0283,262.3536,0.00000000 2004,635.3971,487.6483,4.7496,24.4984,0.00000000 2004,628.2944,458.1991,11.8523,53.9476,0.00000000 2005,350.9742,208.0833,23.3092,48.7839,0.00007364 2005,324.5375,212.9975,22.6301,47.8390,0.00000178 2005,580.2736,214.1325,35.4636,79.0482,0.00000000 2005,115.1932,206.5763,68.2088,176.0300,0.00000000 2005,336.8713,211.4777,23.4092,47.1938,0.00000000 2005,68.5866,192.5538,81.2844,263.3511,0.00000000 2005,635.2764,487.5275,4.8703,24.6192,0.00000000 2005,627.8310,457.5378,12.3157,54.6089,0.00000000 2006,323.5755,214.5378,24.1241,57.6936,0.99999321 2006,357.4139,211.6719,23.6116,52.1047,0.00099052 2006,344.5042,208.5432,21.4774,52.0423,0.00000000 2006,313.6651,207.5980,21.1768,56.3873,0.00000000 2006,311.1789,185.8432,49.3431,98.3983,0.00000000 2006,9.0094,221.6782,82.2479,279.8853,0.00000000 2006,281.2489,127.8507,99.2816,210.7807,0.00000000 2006,635.3561,487.7361,4.7906,24.4106,0.00000000 2006,628.2103,459.0608,11.9364,53.0859,0.00000000 2007,305.9954,204.7959,28.2154,67.2774,1.00000000 2007,347.0750,210.2438,25.5567,55.7588,0.99997497 2007,547.0591,192.8454,23.4397,55.4762,0.00000000 2007,331.8053,207.2988,24.9585,60.2244,0.00000000 2007,1.0000,185.4238,77.7330,275.1239,0.00000000 2007,635.3293,487.3154,4.8174,24.8313,0.00000000 2008,226.8600,203.8600,36.1373,87.0051,1.00000000 2008,284.9570,208.7002,31.8892,72.0616,0.99999881 2008,247.1076,200.9363,30.5977,73.2268,0.00000002 2008,438.3412,194.8333,30.5950,61.4596,0.00000000 2008,534.7831,210.6262,23.3959,56.5060,0.00000000 2008,255.9946,115.7023,89.9123,207.6491,0.00000000 2008,631.8900,488.1141,8.2567,24.0326,0.00000000 2009,93.9874,193.5524,51.1707,134.8895,0.99999410 2009,184.4878,219.0412,41.5422,92.6656,0.88000715 2009,158.0740,186.4167,91.8684,204.2577,0.00000000 2009,635.1854,487.3709,4.9613,24.7758,0.00000000 2010,67.5032,200.9591,37.6833,90.8357,0.00000013 2010,1.0000,194.9921,52.3632,171.0382,0.00000000 2010,89.5098,206.9505,28.3554,68.1299,0.00000000 2010,1.0000,1.0000,57.7933,247.4639,0.00000000 2010,631.5515,487.3870,8.5952,24.7597,0.00000000 2011,635.2374,487.5980,4.9093,24.5487,0.00000000 2011,628.0698,458.0645,12.0769,54.0822,0.00000000 2012,634.3882,232.0885,5.7585,74.9815,0.00000000 2012,635.4573,488.2053,4.6894,23.9414,0.00000000 2012,628.6089,459.0276,11.5378,53.1191,0.00000000 2013,629.9437,1.0000,10.2030,52.2864,0.00000000 2013,631.8094,487.3923,8.3373,24.7544,0.00000000 2014,635.4971,487.8525,4.6496,24.2942,0.00000000 2014,629.0307,458.6651,11.1160,53.4816,0.00000000 2015,585.9810,223.7411,30.2120,64.8779,0.99989355 2015,602.6832,228.0910,30.9527,64.8951,0.00000000 2015,558.8460,113.7695,81.3007,215.3329,0.00000000 2015,635.3879,212.6171,4.7588,73.1704,0.00000000 2015,629.3687,229.3716,10.7780,85.2897,0.00000000 2015,632.1053,487.7880,8.0414,24.3587,0.00000000 2016,506.5463,214.0939,30.9320,73.8118,0.99999088 2016,523.6254,220.2283,25.7284,56.0132,0.00000000 2016,474.0669,167.4047,91.9542,206.7197,0.00000000 2016,635.6106,487.3279,4.5361,24.8188,0.00000000 2016,628.8936,457.1965,11.2531,54.9502,0.00000000 2017,499.5768,206.0676,34.9717,83.9150,0.99993223 2017,490.0395,207.7545,25.3518,64.4464,0.00000002 2017,519.7424,208.4858,34.6540,76.1702,0.00000000 2017,474.1692,121.8481,85.7374,221.1199,0.00000000 2017,635.8986,487.9547,4.2481,24.1920,0.00000000 2017,628.6196,457.2331,11.5271,54.9136,0.00000000 2018,588.3516,187.2130,39.0842,110.9273,0.00000000 2018,559.8765,161.3565,80.2702,247.1346,0.00000000 2018,634.5030,214.3746,5.6437,78.7201,0.00000000 2018,635.4072,488.1274,4.7395,24.0193,0.00000000 2018,628.5226,459.5144,11.6241,52.6323,0.00000000 2019,535.9291,1.0000,67.8182,157.7040,0.00000000 2019,626.3322,1.0000,13.8145,118.0363,0.00000000 2019,601.8217,1.0000,38.3250,218.6600,0.00000000 2019,635.3475,487.9059,4.7992,24.2408,0.00000000 2019,628.2361,458.0478,11.9106,54.0989,0.00000000 2020,631.9704,487.8513,8.1763,24.2954,0.00000000 2021,96.3294,226.6559,30.4351,53.7081,0.00000000 2021,635.4330,487.6263,4.7137,24.5204,0.00000000 2021,628.6488,457.6374,11.4979,54.5093,0.00000000 2022,550.5110,255.2012,41.2411,82.5968,0.00000000 2022,635.5151,487.8163,4.6316,24.3304,0.00000000 2022,628.6228,458.8907,11.5239,53.2560,0.00000000 2023,635.3669,488.1486,4.7798,23.9981,0.00000000 2023,628.3926,458.5688,11.7541,53.5779,0.00000000 2024,373.9687,196.1278,28.1608,56.9426,0.00000000 2024,635.4384,488.2535,4.7083,23.8932,0.00000000 2024,628.3851,458.6936,11.7616,53.4531,0.00000000 2025,384.6414,203.1540,24.7976,53.0856,0.00000263 2025,634.8007,30.4920,5.3460,79.8117,0.00000000 2025,635.3958,488.2554,4.7509,23.8913,0.00000000 2025,628.4748,458.5742,11.6719,53.5725,0.00000000 2026,404.2089,207.6570,25.9071,53.8827,0.65808934 2026,10.7575,197.2366,23.1601,53.5554,0.00000000 2026,396.1324,180.1269,50.1060,100.5358,0.00000000 2026,363.6630,118.7234,100.9150,225.5788,0.00000000 2026,635.5305,488.3344,4.6162,23.8123,0.00000000 2026,628.5961,459.1780,11.5506,52.9687,0.00000000 2027,424.6877,207.5113,24.6791,53.6869,0.61367297 2027,502.9667,207.7642,28.8769,59.5079,0.00815768 2027,369.8589,203.2931,23.1279,53.8981,0.00000303 2027,436.5165,219.1837,23.4663,52.4284,0.00000000 2027,415.3939,174.4167,49.5155,103.3442,0.00000000 2027,475.3788,100.6751,91.4747,223.1718,0.00000000 2027,386.4239,120.4226,100.5053,223.2861,0.00000000 2027,635.3705,487.8333,4.7762,24.3134,0.00000000 2027,628.5485,458.1514,11.5982,53.9953,0.00000000 2028,443.1295,211.9542,29.4110,58.5570,0.99885219 2028,378.8395,204.4260,24.2022,52.4114,0.99828923 2028,546.6841,210.9325,28.6627,64.0074,0.98550493 2028,529.5923,208.1251,30.9131,71.2520,0.00000025 2028,561.7128,215.4268,31.1104,63.5285,0.00000000 2028,629.6454,480.1018,10.5013,32.0449,0.00000000 2029,489.5347,211.6503,32.1249,70.4302,0.99997801 2029,399.2675,204.3573,25.3479,54.3363,0.96068555 2029,414.2846,205.8515,25.0225,56.0488,0.00000000 2029,390.5979,173.0734,49.1903,102.6163,0.00000000 2029,462.1317,116.4747,93.8038,209.7380,0.00000000 2029,359.5816,125.5039,99.8639,227.4226,0.00000000 2029,635.4181,488.1549,4.7286,23.9918,0.00000000 2030,434.1326,206.2644,24.9720,58.2229,1.00000000 2030,575.4767,212.8120,39.5824,90.6037,0.99995136 2030,422.4887,199.0756,20.5762,52.6919,0.00000006 2031,487.3675,205.2482,33.2313,75.2715,1.00000000 2031,476.3831,205.8282,24.6101,61.9388,0.00000019 2031,7.5623,205.0464,26.4239,52.2460,0.00000000 2031,507.0582,212.9276,31.4409,66.4823,0.00000000 2031,1.0000,196.0392,15.5455,55.8215,0.00000000 2031,455.7919,143.4418,89.5856,209.4485,0.00000000 2031,635.4023,487.9697,4.7444,24.1770,0.00000000 2031,628.6469,458.4152,11.4998,53.7315,0.00000000 2032,276.8275,213.1911,23.5224,53.5702,0.00000000 2032,638.2959,212.4100,1.8508,63.8185,0.00000000 2032,630.3575,204.0027,9.7892,78.2435,0.00000000 2032,1.0000,215.7505,82.2389,261.7787,0.00000000 2032,635.2733,487.5111,4.8734,24.6356,0.00000000 2032,628.2104,457.4284,11.9363,54.7183,0.00000000 2033,394.1204,212.9780,29.2356,67.9652,0.00000328 2033,272.1620,203.4870,28.5253,59.3241,0.00000000 2033,635.5605,488.0156,4.5862,24.1311,0.00000000 2033,628.5128,458.7952,11.6339,53.3515,0.00000000 2034,635.7375,488.1516,4.4092,23.9951,0.00000000 2034,628.5981,458.5068,11.5486,53.6399,0.00000000 2035,502.8224,114.2347,85.4609,263.0364,0.00000000 2035,635.5072,487.7156,4.6395,24.4311,0.00000000 2035,628.4452,457.9923,11.7015,54.1544,0.00000000 2036,14.1702,234.5327,45.6096,112.2974,0.00000000 2036,22.5194,183.3925,89.1584,264.2876,0.00000000 2036,289.4183,309.3201,86.8827,202.8266,0.00000000 2036,628.7275,456.8687,11.4192,55.2780,0.00000000 2036,635.4905,487.5566,4.6562,24.5901,0.00000000 2037,160.1219,208.7203,40.9492,113.9688,0.00000000 2037,50.0238,173.2553,87.5579,253.3640,0.00000000 2037,629.5379,479.0931,10.6088,33.0536,0.00000000 2038,629.4182,479.1394,10.7285,33.0073,0.00000000 2039,635.6732,488.2083,4.4735,23.9384,0.00000000 2040,68.8982,205.0603,31.3789,53.0085,0.00000000 2040,629.4523,478.6173,10.6944,33.5294,0.00000000 2041,629.3067,478.1347,10.8400,34.0120,0.00000000 2042,628.7221,456.7130,11.4246,55.4337,0.00000000 2042,635.3671,486.8920,4.7796,25.2547,0.00000000 2043,635.7075,488.0029,4.4392,24.1438,0.00000000 2043,628.4594,456.7917,11.6873,55.3550,0.00000000 2044,635.2406,487.1146,4.9061,25.0321,0.00000000 2044,628.5030,455.9185,11.6437,56.2282,0.00000000 2045,635.4810,487.4090,4.6657,24.7377,0.00000000 2045,628.6982,457.4480,11.4485,54.6987,0.00000000 2046,635.5488,487.7099,4.5979,24.4368,0.00000000 2046,628.7757,457.8813,11.3710,54.2654,0.00000000 2047,150.0427,196.5151,24.9220,54.5876,0.00000000 2047,635.6052,487.9671,4.5415,24.1796,0.00000000 2048,96.6589,201.9337,23.9749,53.1107,0.00001584 2048,635.2147,487.6098,4.9320,24.5369,0.00000000 2048,628.2156,457.4404,11.9311,54.7063,0.00000000 2049,26.9807,204.9452,24.9899,52.2943,0.02529338 2049,11.3573,202.0347,25.6963,56.6274,0.00000000 2049,348.2261,188.9428,26.5398,58.9201,0.00000000 2049,16.6060,171.3309,49.4636,100.0688,0.00000000 2049,635.3465,487.9693,4.8002,24.1774,0.00000000 2049,628.4431,458.5599,11.7036,53.5868,0.00000000 2050,635.2515,487.7767,4.8952,24.3700,0.00000000 2050,627.9571,456.9315,12.1896,55.2152,0.00000000 2051,631.7001,487.2753,8.4466,24.8714,0.00000000 2052,635.5030,487.6066,4.6437,24.5401,0.00000000 2052,628.3456,456.8007,11.8011,55.3460,0.00000000 2053,635.3114,487.9334,4.8353,24.2133,0.00000000 2053,628.3912,458.8888,11.7555,53.2579,0.00000000 2054,635.4336,487.9429,4.7131,24.2038,0.00000000 2054,628.5630,458.7208,11.5837,53.4259,0.00000000 2055,635.3956,488.2223,4.7511,23.9244,0.00000000 2055,628.5220,459.0747,11.6247,53.0720,0.00000000 2056,192.8660,196.9479,32.2330,87.3356,0.00000000 2056,55.0146,205.5887,29.5024,61.4116,0.00000000 2056,635.3679,487.9626,4.7788,24.1841,0.00000000 2056,628.5822,458.5855,11.5645,53.5612,0.00000000 2057,187.8309,194.6569,23.2284,54.7697,0.00000000 2057,635.8774,493.4261,4.2693,18.7206,0.00000000 2057,629.2452,481.5888,10.9015,30.5579,0.00000000 2058,522.1951,319.4751,22.1627,51.3540,0.00001971 2058,507.5791,282.5798,47.9810,98.7914,0.00000000 2058,635.5529,488.4351,4.5938,23.7116,0.00000000 2058,628.4182,457.1618,11.7285,54.9849,0.00000000 2059,126.7459,214.0099,23.5750,55.2991,0.00000000 2059,1.0000,141.5249,53.2771,260.0635,0.00000000 2059,635.4578,487.2322,4.6889,24.9145,0.00000000 2059,627.6522,458.0534,12.4945,54.0933,0.00000000 2060,65.5221,211.6083,29.3582,71.0432,0.00000000 2060,637.0204,217.9717,3.1263,63.7066,0.00000000 2060,636.5031,493.3320,3.6436,18.8147,0.00000000 2060,629.7402,480.7543,10.4065,31.3924,0.00000000 2061,93.7374,205.0809,23.1660,48.9143,0.01555980 2061,7.7929,204.1097,27.6952,55.0370,0.00728339 2061,1.0000,208.9445,16.3950,58.2083,0.00000000 2061,635.4701,488.0378,4.6766,24.1089,0.00000000 2061,628.5277,459.3214,11.6190,52.8253,0.00000000 2062,41.7178,198.5849,27.1926,55.4617,0.27010095 2062,26.1009,205.3282,25.1682,54.8496,0.00001118 2062,58.1127,201.4182,25.7068,54.5793,0.00000000 2062,635.4249,488.0642,4.7218,24.0825,0.00000000 2062,628.5620,459.0581,11.5847,53.0886,0.00000000 2063,21.4468,195.6813,23.7053,59.8054,0.00000494 2063,438.3374,205.7619,22.5103,48.2317,0.00000073 2063,530.7075,213.6122,35.1347,68.2915,0.00000000 2063,635.3784,488.0510,4.7683,24.0957,0.00000000 2063,628.6259,458.7779,11.5208,53.3688,0.00000000 2064,134.2179,204.5939,22.9443,50.0840,0.00000065 2064,153.3897,206.0084,22.6909,46.0335,0.00000000 2064,631.5459,487.4489,8.6008,24.6978,0.00000000 2065,491.2380,208.7773,24.3705,54.8378,0.73796177 2065,102.4392,209.4584,22.6744,47.5383,0.00000010 2065,74.8745,206.4215,21.2703,49.4696,0.00000000 2065,117.6559,210.2569,22.5151,49.1835,0.00000000 2065,506.2973,201.6889,25.8478,54.2132,0.00000000 2065,480.0647,174.1116,51.0389,104.3144,0.00000000 2065,454.4473,114.9001,99.5806,218.5886,0.00000000 2065,635.4736,488.2410,4.6731,23.9057,0.00000000 2065,628.5743,459.1391,11.5724,53.0076,0.00000000 2066,528.3695,208.8186,26.7614,62.3017,0.99999988 2066,517.8694,204.9995,21.2496,55.1611,0.00000394 2066,63.6424,202.3282,21.2564,49.2621,0.00000027 2066,543.5231,208.6160,26.0299,57.6468,0.00000005 2066,39.5037,206.2817,22.6712,52.0769,0.00000000 2066,77.7645,200.5111,21.9874,49.3464,0.00000000 2066,496.6413,95.2856,99.0685,212.3397,0.00000000 2066,635.4519,488.3394,4.6948,23.8073,0.00000000 2066,628.6481,459.0607,11.4986,53.0860,0.00000000 2067,575.6176,211.2909,28.2496,69.9243,0.99998945 2067,22.5026,201.3107,21.2186,54.5539,0.00797612 2067,236.6044,210.9096,21.7325,47.9718,0.00000226 2067,566.4510,204.9826,22.7354,58.7835,0.00000002 2067,432.6361,211.3985,21.0549,51.2738,0.00000000 2067,34.3003,196.5047,23.1437,55.8759,0.00000000 2067,262.0997,213.7785,25.2773,56.2593,0.00000000 2067,635.2836,488.0862,4.8631,24.0605,0.00000000 2068,620.1562,205.0934,19.9905,89.1959,0.00000000 2068,228.2048,211.5751,22.6062,48.5004,0.00000000 2068,244.1614,210.9935,23.4742,53.0253,0.00000000 2068,633.4094,208.8708,6.7373,69.3892,0.00000000 2068,601.4361,173.3209,38.7106,228.5805,0.00000000 2068,630.7698,245.1701,9.3769,71.2794,0.00000000 2068,638.4371,181.1746,1.7096,68.3083,0.00000000 2068,635.3685,488.2787,4.7782,23.8680,0.00000000 2068,628.5734,459.3432,11.5733,52.8035,0.00000000 2069,457.8556,220.9193,20.8123,52.0726,0.00352191 2069,226.6865,218.8780,23.7889,49.2021,0.00000007 2069,574.1562,216.6527,27.8564,67.7578,0.00000000 2069,211.0038,215.4200,22.7988,49.5439,0.00000000 2069,236.8890,221.8960,29.9548,55.1937,0.00000000 2069,635.3146,488.0209,4.8321,24.1258,0.00000000 2069,628.3994,458.7392,11.7473,53.4075,0.00000000 2070,480.5844,220.4273,22.5814,56.0299,0.02326602 2070,200.9036,212.7690,24.9098,54.3376,0.00000055 2070,462.7488,224.6742,26.0789,55.3006,0.00000034 2070,216.8791,220.9855,30.2805,61.4317,0.00000000 2070,446.9866,222.2528,21.1099,49.9546,0.00000000 2070,465.6814,187.0482,52.2405,104.8476,0.00000000 2070,629.0001,1.0000,11.1466,51.0279,0.00000000 2070,440.3053,104.6243,98.7748,229.6906,0.00000000 2070,635.4332,487.8555,4.7135,24.2912,0.00000000 2071,181.8240,214.0370,22.7392,51.7334,0.87233216 2071,434.3936,220.7941,22.1251,49.9857,0.12825096 2071,486.0764,223.7548,22.6782,56.1512,0.06736451 2071,497.8295,219.1431,24.5059,59.5345,0.00590123 2071,469.0990,222.6669,20.6313,49.8617,0.00000008 2071,193.1962,222.0603,21.8144,51.5786,0.00000002 2071,207.2230,215.0747,23.5608,49.8482,0.00000001 2071,480.4593,199.8904,50.9391,101.8175,0.00000000 2072,500.8950,223.4965,23.8554,62.0225,0.99999988 2072,462.2602,217.5975,22.4459,52.8717,0.99998164 2072,163.8690,216.0478,24.4582,49.8025,0.76895976 2072,523.9285,222.7795,23.0001,60.8497,0.11903866 2072,210.1381,214.2498,26.6775,51.9983,0.00000039 2072,482.2866,220.6533,21.1832,52.9460,0.00000001 2072,488.0893,194.6374,49.1481,106.6544,0.00000000 2073,530.4821,226.7295,22.7623,58.8623,0.99945498 2073,489.4627,220.3647,21.5753,51.5038,0.00585501 2073,502.1930,221.3162,21.1800,51.0976,0.00570679 2073,146.9314,218.3167,27.9191,52.2914,0.00026820 2073,210.4100,212.1482,29.6082,54.0722,0.00000016 2073,515.9717,224.6367,21.6681,52.2995,0.00000004 2073,545.2587,222.5775,26.3743,62.2372,0.00000000 2074,118.5497,212.4402,23.6543,55.2694,0.99951869 2074,573.7912,219.3198,25.4659,63.7329,0.73605967 2074,214.1675,207.0805,23.6087,51.6438,0.00013938 2074,521.3580,223.9365,21.5840,51.7285,0.00005875 2074,559.3886,221.7434,25.5111,60.2973,0.00000006 2074,131.1255,220.1387,22.0454,51.8329,0.00000002 2074,534.8804,220.8865,21.0146,55.4149,0.00000000 2075,234.8695,221.6932,25.9316,65.9099,1.00000000 2075,216.9327,223.9880,25.1417,63.4898,1.00000000 2075,44.5575,222.2155,64.7371,172.3724,0.99999917 2075,423.5787,230.9860,29.4148,71.3005,0.99999815 2075,16.9238,233.0188,53.7854,143.1529,0.99952859 2075,406.6851,225.3038,27.2992,70.0323,0.84682834 2076,234.7693,218.2394,27.6940,69.3196,1.00000000 2076,453.8264,232.5737,34.5600,84.2241,1.00000000 2076,215.7760,219.2709,28.5394,67.7832,0.99999994 2076,433.1250,226.0834,33.7634,86.9535,0.99999785 2076,23.7551,228.4681,72.1196,172.8008,0.99999785 2077,225.1099,215.5274,31.4266,77.2268,1.00000000 2077,200.1768,220.0286,30.2074,72.1945,1.00000000 2077,450.6496,226.9180,41.2878,112.5737,1.00000000 2077,475.2333,230.7487,44.5079,112.9753,1.00000000 2077,538.1009,211.6479,24.8355,60.3137,0.99999970 2077,425.6468,218.4392,22.2385,53.0400,0.99999017 2077,1.0000,231.4223,53.3122,264.1271,0.00000000 2078,183.9857,221.6284,35.0349,84.3373,1.00000000 2078,224.8561,218.7635,33.2212,84.3966,1.00000000 2078,530.3339,242.5918,58.5292,149.7605,0.99999976 2078,494.1456,239.4092,54.1993,132.3892,0.99999940 2078,423.0595,220.8312,24.1430,58.3139,0.99997693 2078,556.6432,217.9026,28.9631,67.5715,0.02716307 2078,265.3037,215.4935,23.1856,49.6206,0.00063184 2079,176.5027,222.4375,36.6166,92.3104,1.00000000 2079,218.4431,222.8363,34.9766,88.4312,1.00000000 2079,426.3815,218.8257,32.0224,72.8635,0.99998611 2079,267.3658,217.2476,21.8099,49.4925,0.37690625 2079,563.9142,208.4869,25.2040,64.6574,0.00495092 2079,606.2378,225.4620,26.7672,61.3973,0.00007860 2079,466.0385,231.8480,22.6432,55.1780,0.00004242 2079,404.5814,217.1336,27.0962,55.9601,0.00000000 2080,126.4914,216.7170,43.1290,115.9909,1.00000000 2080,168.3671,210.6716,44.9125,114.8724,1.00000000 2080,231.9710,215.9725,23.7722,52.1715,0.99998218 2080,418.9733,219.7510,34.3409,80.2773,0.99743891 2080,458.3811,232.9736,26.0133,62.4004,0.04631362 2080,388.5239,219.5227,23.7206,56.2797,0.00251740 2080,245.4428,221.0405,25.9338,54.4344,0.00000061 2080,400.8936,219.1306,27.7056,65.5459,0.00000001 2081,98.9236,200.8139,57.1862,154.5557,1.00000000 2081,456.7687,235.8551,30.2461,73.3030,1.00000000 2081,39.1389,207.0428,58.9333,153.6560,1.00000000 2081,197.4753,211.7245,28.5293,65.5416,0.99999940 2081,597.0713,222.1456,36.4550,100.8826,0.99999791 2081,185.3777,218.3881,25.0113,56.2250,0.99998766 2081,375.1292,221.4983,23.1097,56.0527,0.99998415 2081,411.0585,218.8657,40.5245,97.3991,0.99997920 2081,398.9759,224.6849,25.8688,66.7930,0.43576756 2082,358.2570,224.7283,28.9971,69.9511,1.00000000 2082,164.0833,217.2614,35.0096,75.4575,1.00000000 2082,432.8197,229.2547,39.6216,98.6911,1.00000000 2082,142.2463,217.4830,34.0964,77.5492,0.99999988 2082,22.3979,218.0573,66.9607,178.6651,0.99999970 2082,483.8950,234.3969,35.5845,99.3358,0.99999911 2082,385.7682,223.0935,29.8123,71.3893,0.99999797 2082,533.9221,217.6068,24.8786,67.7589,0.00000002 2083,102.0378,223.2384,39.9908,96.5973,1.00000000 2083,469.1935,216.0286,53.3351,145.7479,1.00000000 2083,131.5086,221.8864,40.1884,90.8468,1.00000000 2083,395.7454,228.1820,34.1760,83.8231,1.00000000 2083,545.0920,234.8887,44.7993,131.0983,0.99999362 2083,424.1445,233.2162,27.5406,73.8671,0.99804032 2083,607.7555,306.4328,25.4683,55.8488,0.00000076 2083,602.2420,216.7730,25.0643,59.5138,0.00000000 2084,74.2074,215.9865,46.1641,131.6923,1.00000000 2084,35.7660,217.5777,46.3917,124.6457,0.99999976 2084,575.9648,250.0789,64.1819,171.1225,0.99998116 2084,477.9102,227.8840,42.8131,117.4355,0.99345446 2084,344.9742,213.0565,22.4454,53.1232,0.18979031 2084,508.3973,236.3174,35.0336,102.6534,0.00034879 2084,137.6999,207.4921,26.3430,55.2144,0.00005309 2085,362.0681,218.4888,23.0686,52.9123,0.99999994 2085,163.9938,215.1502,27.9789,61.2130,0.99999875 2085,129.3604,75.5854,25.2921,56.1247,0.00000000 2085,258.5084,205.8893,27.2405,59.7756,0.00000000 2085,1.0000,269.7260,32.8304,158.1545,0.00000000 2085,205.5798,182.6644,83.4277,287.5621,0.00000000 2085,348.9654,194.0361,49.5760,118.1964,0.00000000 2085,1.0000,264.8125,76.2419,247.3342,0.00000000 2085,634.3181,248.9736,5.8286,63.8221,0.00000000 2085,134.0649,106.3980,98.5119,212.6479,0.00000000 2085,635.1033,487.7654,5.0434,24.3813,0.00000000 2085,628.0229,459.1864,12.1238,52.9603,0.00000000 2086,377.6877,219.3998,24.2139,59.1187,0.99999958 2086,143.4800,218.7816,29.6512,68.3016,0.99998492 2086,125.0790,214.1461,29.1386,66.5054,0.99938923 2086,355.4837,223.6595,24.0354,55.3909,0.53625482 2086,265.1650,215.0345,24.2507,54.5490,0.33908865 2086,250.3018,218.2941,22.9754,56.6287,0.00071368 2086,101.1282,64.1992,27.8888,60.3991,0.00000000 2086,217.8097,192.0689,83.1494,256.3323,0.00000000 2087,128.6157,224.7715,34.7447,75.5912,1.00000000 2087,102.0561,218.9960,38.0079,83.0849,0.99999994 2087,394.0975,226.2641,26.6475,69.1375,0.99999946 2087,256.3276,216.9260,25.9921,65.9201,0.78652662 2087,231.8945,225.0858,23.5231,56.5396,0.01589761 2087,369.0700,229.6166,23.7035,62.9913,0.00486107 2087,62.6405,55.1969,35.1703,75.6621,0.00000000 2088,77.1177,211.6379,39.1772,92.9977,0.99999982 2088,416.8410,225.5990,29.6031,81.9000,0.99999893 2088,103.0539,218.8590,36.7204,82.2590,0.99998659 2088,396.1779,231.4239,28.1645,76.1818,0.99108201 2088,202.2600,215.6536,28.4401,64.7165,0.93276501 2088,236.3379,212.6765,27.5840,66.9396,0.81836158 2088,12.4135,28.8346,32.0818,73.5949,0.00000001 2089,29.5446,202.0331,47.6150,115.0028,1.00000000 2089,69.4274,219.9815,38.0598,96.1428,0.99999988 2089,451.7720,233.7679,36.2283,104.3776,0.99999934 2089,426.8084,233.8586,30.1410,89.4533,0.99999368 2089,155.6321,213.1839,32.3717,78.7876,0.99964368 2089,180.6463,207.8445,32.0186,79.5808,0.73429626 2089,210.3505,212.4592,27.9162,69.8877,0.07510533 2090,479.2112,249.6080,54.7922,154.8636,0.99999994 2090,10.7705,211.0702,53.8359,135.6190,0.99999976 2090,526.8734,262.5935,53.7287,143.9839,0.99999917 2090,126.2047,228.6634,35.1056,84.2049,0.99999917 2090,48.5781,218.0542,46.2537,123.5650,0.99999368 2090,164.7827,215.7267,33.9960,93.0444,0.99998331 2090,194.3936,212.8421,36.1882,94.7784,0.99736506 2091,87.9938,218.9718,46.2490,120.8020,1.00000000 2091,136.2781,217.8007,42.4446,119.1188,1.00000000 2091,172.0532,196.7826,53.7377,148.8546,0.99999988 2091,20.8680,212.2534,61.1943,159.9765,0.99999022 2091,244.6798,216.6305,22.6215,59.7879,0.81269562 2091,220.0380,220.2845,24.3579,68.4988,0.00001940 2091,158.6965,205.7433,36.4778,99.3096,0.00000002 2092,98.4661,207.2786,64.9732,180.7166,0.99999976 2092,53.8681,212.4162,61.3651,174.6987,0.99999541 2092,9.2011,221.5550,60.3906,169.1020,0.99996394 2092,220.7853,223.5404,24.9044,67.9825,0.00026424 2092,196.7960,222.8229,25.3909,67.4065,0.00020005 2093,167.0361,224.2564,27.0633,70.4165,0.97043359 2093,12.4958,210.4134,28.3484,65.7436,0.00000014 2093,155.1911,220.5899,24.3030,54.0776,0.00000000 2093,137.9276,219.3070,27.4980,57.3308,0.00000000 2093,182.5361,228.5022,26.2746,66.9709,0.00000000 2093,140.6253,186.9010,85.2268,229.5065,0.00000000 2093,635.2842,487.9964,4.8625,24.1503,0.00000000 2093,628.4107,459.5983,11.7360,52.5484,0.00000000 2094,127.8465,221.7671,31.3399,86.4931,0.00070346 2094,270.0165,221.1831,21.1218,47.4742,0.00046813 2094,290.6228,220.2405,21.1091,47.1268,0.00014337 2094,257.9479,212.9268,22.0696,48.7876,0.00000042 2094,104.5791,196.8981,80.8054,235.8148,0.00000000 2094,631.3029,487.4673,8.8438,24.6794,0.00000000 2095,318.4109,216.8011,22.6633,52.3514,0.27410272 2095,97.0452,222.4524,34.7753,81.0923,0.06624947 2095,301.0679,217.3496,23.9094,53.9175,0.01750729 2095,283.8407,219.2921,27.2264,58.0162,0.00000139 2095,70.4723,211.4003,84.3686,236.1718,0.00000000 2095,631.8953,486.9406,8.2514,25.2061,0.00000000 2096,344.2428,217.4772,22.6664,54.1969,0.96261597 2096,308.6479,216.5547,25.8669,59.2779,0.79240131 2096,329.5327,218.2955,23.1403,54.4263,0.63917798 2096,361.1819,216.5041,23.5169,57.0009,0.00000000 2096,326.8159,191.5307,48.5367,95.9277,0.00000000 2096,278.3614,123.0220,97.5312,219.4778,0.00000000 2096,1.0000,384.0143,61.7864,128.1324,0.00000000 2096,635.1583,487.7500,4.9884,24.3967,0.00000000 2097,332.6942,221.1627,21.9955,54.0914,0.98683739 2097,307.8889,217.8915,24.0571,55.8948,0.91335064 2097,349.5640,221.3302,22.4014,55.2198,0.61615586 2097,129.0678,252.0699,31.5444,82.3125,0.00000000 2097,91.3373,234.5768,84.0586,256.5800,0.00000000 2098,330.2401,216.4934,25.2844,59.8139,0.99999994 2098,351.4521,217.5956,23.2014,55.9501,0.92546707 2098,312.2499,214.8159,24.4709,57.0864,0.76887566 2098,44.2273,219.3452,58.1900,150.2646,0.00000000 2098,363.0370,229.8773,21.7433,52.5996,0.00000000 2098,331.5610,193.5818,49.6078,97.7091,0.00000000 2098,631.5332,486.9710,8.6135,25.1757,0.00000000 2099,346.1029,213.1334,28.0881,67.4066,1.00000000 2099,376.9612,217.6397,24.0334,59.3807,0.52784699 2099,334.2204,213.8094,22.4885,53.4467,0.00000000 2099,364.8978,196.2710,50.1440,99.0750,0.00000000 2099,3.8868,210.0034,84.7250,222.8826,0.00000000 2099,20.3937,267.6064,44.3046,110.9834,0.00000000 2099,1.0000,269.4347,35.0311,149.1016,0.00000000 2099,635.0770,487.8789,5.0697,24.2678,0.00000000 2100,379.6867,214.3213,28.7250,70.1285,1.00000000 2100,406.0940,219.1605,24.3813,61.9822,0.99999666 2100,421.8678,227.7752,24.9174,58.3514,0.00000000 2100,385.5378,188.4240,48.8842,113.1376,0.00000000 2100,370.2803,150.5487,98.4162,222.7961,0.00000000 2100,635.1096,487.7063,5.0371,24.4404,0.00000000 2101,410.8323,217.9140,28.7593,69.4364,0.99999779 2101,434.9250,220.9106,27.7502,68.9256,0.99998736 2101,449.9135,231.6854,24.0183,55.8629,0.00000000 2101,397.8973,142.6315,95.0787,214.3924,0.00000000 2101,630.0195,478.3317,10.1272,33.8150,0.00000000 2102,440.2784,234.6652,31.7150,81.7412,0.99999529 2102,423.5333,231.0822,25.2064,60.0740,0.14695807 2102,459.1544,238.3067,25.1636,65.1851,0.13851523 2102,475.5834,249.2470,24.8554,63.4811,0.00000004 2102,407.0892,226.5597,23.1457,53.8340,0.00000000 2102,323.0414,235.8530,26.2896,54.6423,0.00000000 2103,454.1451,250.2871,36.0517,94.8972,0.99999940 2103,485.1205,256.0448,30.9805,86.6756,0.67488194 2103,432.8087,244.7444,26.7019,63.3729,0.00477033 2103,328.9324,247.5574,26.3250,60.2218,0.00000000 2103,420.1278,243.5921,24.8466,57.3558,0.00000000 2103,630.0417,478.3131,10.1050,33.8336,0.00000000 2104,457.1560,236.7364,40.2180,109.7127,1.00000000 2104,481.0365,243.0318,31.0300,81.4140,0.99593461 2104,428.1321,227.0504,28.6293,67.7370,0.04282724 2104,424.3120,215.9961,53.4765,124.6027,0.00000000 2104,443.2415,186.4580,81.7971,214.1414,0.00000000 2104,631.0165,486.6921,9.1302,25.4546,0.00000000 2105,462.1319,233.5758,54.2486,147.4642,1.00000000 2105,281.2760,219.3315,32.3672,72.0715,0.00000017 2105,433.1501,212.8820,59.4846,141.3697,0.00000000 2105,631.0381,485.1266,9.1086,27.0201,0.00000000 2106,485.6539,237.8225,57.9605,170.9116,0.99999905 2106,516.3432,245.8213,84.7364,234.1044,0.87536234 2106,359.2161,206.3529,23.2868,53.0294,0.00000021 2106,246.4351,202.8372,25.0402,66.0084,0.00000006 2106,485.4063,227.4642,38.4276,83.9040,0.00000000 2106,502.3462,342.4279,46.1753,111.2156,0.00000000 2106,522.9584,281.7569,42.2666,119.4206,0.00000000 2106,442.7703,208.7981,83.4109,253.6260,0.00000000 2107,509.5636,224.5292,70.6544,197.6310,0.99999803 2107,559.3567,280.2959,80.6825,231.8508,0.00156144 2107,335.6547,195.5873,25.6284,56.3957,0.00001209 2107,201.6218,192.5451,32.7150,84.0832,0.00000056 2107,521.7991,320.0429,39.6997,117.8711,0.00000001 2107,355.8644,195.4304,24.3458,51.8726,0.00000000 2107,555.2932,434.8083,54.7266,77.3384,0.00000000 2107,621.8413,448.2449,18.3054,63.9018,0.00000000 2108,316.2897,214.0495,23.7876,56.0867,0.01476989 2108,297.5361,208.6945,24.6743,54.5371,0.00000107 2108,152.6925,219.8812,36.0543,93.5790,0.00000010 2108,345.3318,214.9087,23.7760,53.9874,0.00000003 2108,327.5498,212.9869,28.9076,65.9912,0.00000000 2108,296.8234,188.6481,51.9878,154.9771,0.00000000 2108,144.3496,179.9194,84.8962,246.0408,0.00000000 2108,1.0000,239.7454,84.4175,272.4013,0.00000000 2108,626.8443,457.1562,13.3024,54.9905,0.00000000 2108,635.7648,492.8326,4.3819,19.3141,0.00000000 2109,56.2284,212.4870,37.6357,100.7324,0.63877970 2109,79.1281,218.1270,31.8272,75.8534,0.00000000 2109,40.5960,181.1879,81.7661,243.8809,0.00000000 2109,636.2579,492.9042,3.8888,19.2425,0.00000000 2109,629.5017,480.1374,10.6450,32.0093,0.00000000 2110,104.6849,217.2427,24.8037,53.0661,0.00000000 2110,65.0901,198.9705,66.1480,180.7552,0.00000000 2110,88.0148,185.1801,82.0346,273.0022,0.00000000 2110,636.2612,492.9203,3.8855,19.2264,0.00000000 2110,629.4905,480.6784,10.6562,31.4683,0.00000000 2111,219.5754,207.7701,29.3634,57.8950,0.00000002 2111,113.0027,233.2444,25.0447,61.4545,0.00000000 2111,205.5621,196.8430,28.9599,57.4820,0.00000000 2111,1.0000,381.3394,61.6251,130.8073,0.00000000 2111,635.4430,488.0980,4.7037,24.0487,0.00000000 2111,628.2910,459.1266,11.8557,53.0201,0.00000000 2112,218.6018,213.4762,31.2825,80.3611,0.58653623 2112,201.4553,211.3879,25.3722,59.9665,0.00027252 2112,138.6452,194.9842,23.1998,51.5968,0.00000005 2112,186.0080,128.6340,91.0979,221.5902,0.00000000 2112,633.8700,73.5441,6.2767,79.3663,0.00000000 2112,628.8103,1.0000,11.3364,49.6403,0.00000000 2112,43.6104,204.0271,87.3052,267.6712,0.00000000 2112,636.2271,492.7103,3.9196,19.4364,0.00000000 2112,629.4460,479.8523,10.7007,32.2944,0.00000000 2113,235.9400,208.0623,31.6124,82.6991,0.92669052 2113,162.0038,204.0927,32.8667,58.8751,0.42332801 2113,254.9337,221.6450,33.7576,79.1819,0.34037551 2113,149.7123,206.7693,22.6845,51.2157,0.00071073 2113,183.4413,201.7978,25.7371,53.5121,0.00000006 2114,192.4108,206.5712,23.8712,55.5703,0.99980253 2114,234.8792,203.1561,22.8860,51.4777,0.98620141 2114,303.7135,218.2431,36.5534,85.6859,0.97702688 2114,288.5104,211.2169,31.6121,79.9902,0.46714050 2114,175.1226,207.3711,22.1959,50.4968,0.00001590 2114,254.2050,206.1877,25.2372,57.9834,0.00000049 2114,223.3388,209.2091,22.1611,52.8847,0.00000023 2115,315.6353,216.9458,31.8595,84.1793,0.99975169 2115,255.1797,208.7065,22.6231,53.6281,0.99708015 2115,207.4433,211.5985,23.8413,52.6186,0.99552286 2115,194.8670,209.6221,22.9302,52.3957,0.01323574 2115,335.2310,231.2433,33.6388,82.5658,0.00520559 2115,273.7265,205.9857,26.9884,63.7930,0.00000000 2116,320.2452,223.6427,33.9974,96.2853,0.99999839 2116,338.6714,231.9276,37.9124,97.8287,0.99696213 2116,202.7085,213.2885,21.4523,51.4395,0.98629135 2116,186.7840,215.2133,20.2888,49.5409,0.96061391 2116,251.7906,214.7301,20.8970,49.8811,0.87201375 2116,274.2021,209.2137,26.8470,72.4126,0.00000000 2117,337.3292,224.9772,38.7395,113.5695,0.99999994 2117,359.8147,229.8136,46.3203,127.2523,0.99999994 2117,286.7529,217.2323,31.2625,80.9914,0.00999345 2117,196.8373,213.3934,19.3894,50.3852,0.00002840 2117,212.8798,210.3069,22.9238,56.8667,0.00000002 2118,382.6826,217.3289,52.9212,151.0881,0.99999976 2118,415.0896,222.2204,58.1582,154.5467,0.99998999 2118,318.5491,214.9451,45.1079,111.0148,0.99990016 2118,306.1168,219.5591,27.2497,67.8589,0.21336883 2118,432.5253,315.0008,36.0278,77.5814,0.00000000 2119,458.9532,241.6984,59.1523,165.9489,1.00000000 2119,319.9185,221.4863,26.5559,67.4596,0.99999994 2119,405.6068,237.5832,60.2953,156.7829,0.99999976 2119,341.3273,218.2350,37.8474,99.7118,0.99844915 2119,226.3509,221.6512,21.6680,46.8280,0.07110386 2119,244.1388,219.4778,20.0935,48.4639,0.01618409 2119,267.4265,223.9906,21.1965,50.8187,0.00018009 2119,357.8207,230.3985,44.9874,104.2895,0.00007660 2119,305.3373,222.7048,23.4459,55.7516,0.00000586 2120,370.3709,226.1242,29.5768,78.1722,0.99999994 2120,387.1000,222.3006,33.6293,89.3300,0.99999368 2120,512.8584,225.4664,78.1774,271.5517,0.99998981 2120,417.8860,222.9717,43.3112,116.0601,0.99998838 2120,561.3885,259.1968,78.7582,252.3815,0.99858505 2120,315.9539,220.2434,29.1460,70.8985,0.99680769 2120,256.1114,219.7048,21.8638,49.0308,0.00008067 2120,550.8414,301.8311,42.2957,107.7846,0.00000000 2121,451.3919,218.9833,39.3092,102.9772,0.99999988 2121,529.0698,213.8652,49.3474,141.4499,0.99999940 2121,485.4439,213.9062,48.9826,129.4565,0.99426401 2121,531.6166,278.4243,28.7339,65.8159,0.00012660 2121,320.3676,218.9407,24.4642,45.5861,0.00000002 2122,458.6957,221.3858,46.6595,134.2369,0.99999470 2122,520.1130,212.4149,56.2417,163.2701,0.99983519 2122,569.2640,206.0294,70.8827,199.6737,0.99884552 2122,490.8059,221.2541,52.8921,132.9531,0.93980348 2122,299.0886,216.9151,25.2038,56.0971,0.10547794 2122,494.5723,278.4099,29.7782,68.6694,0.01353201 2122,143.5786,203.4277,26.0740,50.8542,0.00000654 2123,264.0488,214.0773,34.8361,93.8452,1.00000000 2123,471.3859,223.1353,68.4598,188.8959,0.99999976 2123,507.9214,216.5436,69.6528,203.9280,0.99999726 2123,581.8432,239.8441,58.3035,165.2852,0.55712044 2123,88.8820,200.7300,25.8901,57.8043,0.00245908 2123,503.4081,329.4642,33.2068,87.8307,0.00000018 2124,229.3088,214.3995,44.9944,115.4515,1.00000000 2124,542.7096,255.6594,63.9020,190.1283,0.99999994 2124,405.0933,211.8648,26.5305,54.0963,0.99921083 2124,282.5244,228.0198,33.1692,85.5396,0.07844382 2124,374.5387,210.5955,20.4186,51.0324,0.00470416 2124,11.3363,193.8884,34.5734,77.6440,0.00000967 2124,566.6949,314.5595,73.4518,197.5872,0.00000000 2125,179.9709,213.9776,57.8741,148.7636,0.99999994 2125,255.1912,237.6593,33.8023,84.6822,0.99998236 2125,296.4189,219.8258,34.2628,92.6745,0.99970537 2125,367.2285,210.7121,21.9418,48.7086,0.52538747 2125,391.5148,211.6416,22.9018,51.2507,0.15399998 2125,316.5999,221.2531,34.7517,84.8838,0.02710942 2125,270.2355,214.8523,45.6299,107.3901,0.00000052 2126,248.4219,224.0282,40.0748,101.4610,1.00000000 2126,222.9123,214.4584,39.8679,107.5380,1.00000000 2126,178.0201,231.9236,40.8269,107.9164,0.99999976 2126,41.7587,199.4501,85.3896,226.4987,0.99971420 2126,349.5671,214.0318,22.1111,50.1666,0.98968220 2126,333.6805,213.3273,22.5666,48.7992,0.00018008 2127,160.6978,219.5105,44.6179,120.2423,1.00000000 2127,122.1996,213.7396,45.8347,121.1378,0.99999911 2127,50.4062,229.5435,61.2513,158.6413,0.99986351 2128,101.8052,212.1819,55.2789,151.8668,1.00000000 2128,57.1314,202.8656,62.5753,162.4623,0.99999994 2128,248.1615,212.2511,22.8319,50.7062,0.00000001 2128,75.1983,229.8589,27.8741,79.8593,0.00000000 2129,356.1201,218.5057,35.9223,82.3734,1.00000000 2129,42.9150,221.1844,68.8735,178.8860,1.00000000 2129,1.0000,203.8844,63.6383,190.2517,0.02583876 2129,398.3058,240.1719,20.8101,50.7760,0.00000011 2130,386.3803,217.4059,44.5184,117.0711,0.99999982 2130,308.3939,210.5269,30.1536,75.7052,0.99304450 2130,299.0006,212.4252,22.8576,55.0735,0.00026260 2130,1.0000,231.8047,59.0874,235.9901,0.00000009 2130,270.8838,212.1762,20.9782,45.4136,0.00000000 2130,327.4213,205.0402,24.7823,58.2012,0.00000000 2130,295.6783,194.3462,58.8670,146.8490,0.00000000 2131,425.4649,227.0763,54.0376,146.5739,1.00000000 2131,300.4585,212.8588,36.5336,88.1833,0.96132433 2131,322.5139,210.1465,30.8298,77.3307,0.03343484 2131,446.4703,316.8885,35.6368,74.0671,0.00000000 2131,26.3077,216.0082,28.3209,58.0113,0.00000000 2132,121.2237,210.0337,42.4951,126.3317,0.99999940 2132,339.0009,213.6749,32.9827,93.6671,0.99997848 2132,511.8484,222.6729,88.0672,212.6902,0.97226739 2132,316.9660,219.3234,30.0984,76.0374,0.55556196 2132,156.9827,221.2203,36.1574,87.2684,0.23501092 2132,531.5165,215.3298,31.4304,87.0094,0.00000202 2132,12.6094,222.3879,27.4464,59.1913,0.00000000 2133,343.5426,216.5554,38.5211,92.8794,0.99999952 2133,121.2782,219.2867,42.8384,120.7891,0.99999815 2133,74.4660,203.6662,64.3729,184.0416,0.99998820 2133,370.0323,216.2075,34.4192,88.1827,0.14158745 2133,562.6381,228.3434,22.5266,51.7185,0.00001293 2133,142.1603,209.4428,55.5429,140.7940,0.00000032 2133,284.7126,212.7443,21.2787,48.7636,0.00000002 2134,113.4402,233.0251,52.0525,147.0672,1.00000000 2134,381.3344,219.1791,37.5515,101.6383,0.99999994 2134,68.4003,229.3331,58.8062,157.1432,0.99999976 2134,360.0193,227.1349,35.7089,91.4560,0.99921763 2134,39.4442,200.0392,56.9961,148.9681,0.00000000 2134,1.0000,293.6854,72.1086,218.4613,0.00000000 2135,15.9778,244.1057,81.9190,233.6247,1.00000000 2135,395.8428,208.9053,42.8501,115.1207,1.00000000 2135,363.5953,210.5854,50.1046,122.2577,0.96665633 2135,60.4747,284.3835,46.7225,144.8192,0.00000000 2136,416.3709,210.5529,42.2452,118.8382,1.00000000 2136,394.9790,214.9729,37.0355,99.6341,0.99778968 2136,317.6025,224.3701,22.1884,55.9642,0.00033633 2136,555.7438,230.9550,21.2677,52.7184,0.00001640 2136,576.1639,226.0976,22.2283,51.7985,0.00000029 2136,515.9224,234.4430,23.8015,57.2880,0.00000008 2136,384.2183,159.3033,82.1815,215.8095,0.00000000 2137,447.4680,216.0473,43.6493,120.9451,0.99999982 2137,520.8315,236.1701,42.4106,123.6112,0.99971879 2137,423.4971,225.1776,43.7447,102.6343,0.99365658 2137,332.5702,219.2716,30.2154,84.0919,0.99205971 2137,560.5745,227.3295,23.6400,60.2653,0.78008235 2137,318.9961,218.9132,27.4582,70.0718,0.46673366 2137,612.0215,238.3709,21.9173,55.9359,0.14716549 2137,543.4512,231.1770,34.6971,95.9457,0.00023997 2137,575.1598,232.9335,26.1180,63.5356,0.00000044 2138,362.8933,226.0326,29.5627,73.1798,1.00000000 2138,501.6828,216.6416,45.9297,119.8996,0.99999994 2138,383.8447,224.2374,32.7066,80.3542,0.99999982 2138,574.7112,248.0416,59.7384,166.2441,0.99996507 2138,605.2104,221.2214,34.9363,118.5259,0.00003377 2139,544.4001,223.4667,46.5616,128.1022,1.00000000 2139,400.1255,229.9336,32.9645,87.5644,0.99999976 2139,420.4652,224.4545,33.4600,95.1084,0.99999636 2139,501.7409,226.5855,21.3917,47.2652,0.00002654 2140,518.2766,218.8842,61.0995,162.3228,1.00000000 2140,404.8148,221.9494,42.8775,111.0986,1.00000000 2140,370.1500,214.0762,40.6338,121.1517,0.99999708 2140,483.9057,228.0526,19.7550,49.9910,0.44407034 2140,494.7057,224.6922,20.8840,50.0146,0.00001179 2141,458.2151,238.5432,68.1933,177.0310,1.00000000 2141,306.8243,224.9693,53.7683,143.2648,0.99999976 2141,356.6302,218.9154,48.6539,138.1202,0.99999952 2141,437.8763,231.4371,21.3363,49.1005,0.98581344 2141,452.3270,230.1358,22.3914,53.3971,0.00001326 2141,455.5319,225.8583,44.0417,104.1777,0.00000026 2142,206.2477,214.5827,54.0803,151.4867,1.00000000 2142,294.5093,232.8004,86.2403,241.4509,0.99999851 2142,359.7581,211.8818,21.8274,54.8395,0.99948162 2142,283.9240,208.9034,55.5826,156.4090,0.81895924 2142,378.4308,214.9472,22.2026,53.0429,0.38996482 2142,273.5167,205.2009,28.0456,62.7812,0.00000006 2143,51.2704,194.2516,81.0638,231.8623,0.99986756 2143,196.7122,210.9834,27.4259,62.9399,0.99424386 2143,215.3574,217.2408,26.0949,56.2095,0.43472302 2143,4.9418,211.6925,81.4184,227.4842,0.00101415 2143,90.8989,210.2129,43.8113,115.8717,0.00000000 2144,482.6954,229.9788,58.1466,165.1598,0.99999917 2144,478.5273,252.6859,33.0432,82.3246,0.00000001 2144,497.6544,270.4844,28.5255,89.5701,0.00000000 2144,635.5105,487.6432,4.6362,24.5035,0.00000000 2145,302.9436,251.4846,66.5152,176.4081,0.99999988 2145,308.1628,263.9902,29.5689,89.2447,0.00000000 2145,635.5123,487.7579,4.6344,24.3888,0.00000000 2146,35.9424,264.5693,86.2239,247.5774,0.22321175 2146,1.4342,207.2703,87.3044,218.8221,0.00000171 2146,57.7212,252.9630,47.7278,146.3405,0.00000000 2146,51.9138,440.7774,49.5769,71.3693,0.00000000 2146,631.6588,487.5095,8.4879,24.6372,0.00000000 2147,577.7975,231.9685,47.5425,126.6145,0.99999690 2147,522.0988,216.1593,25.7433,52.8895,0.00000178 2147,606.7740,248.8779,33.3727,106.2999,0.00000000 2147,631.8511,270.1688,8.2956,77.1911,0.00000000 2147,635.3618,487.5483,4.7849,24.5984,0.00000000 2148,503.4015,221.1244,52.9371,138.1356,0.99999917 2148,474.4311,230.7573,48.4043,126.3456,0.99972999 2148,434.2414,223.8499,24.0728,49.5785,0.00003226 2149,327.0538,240.4274,50.5465,123.5334,0.99997920 2149,379.5508,225.7327,44.1916,132.4626,0.99734497 2149,593.1607,280.7786,28.1978,63.1970,0.00001305 2149,318.0781,223.4668,23.0291,49.2806,0.00000001 2149,398.3231,280.0791,35.6029,87.3644,0.00000000 2149,335.5588,170.6652,83.5539,216.4570,0.00000000 2150,238.9240,221.7807,56.2580,154.2181,0.99999857 2150,191.8376,223.6281,67.1759,169.9307,0.99999154 2150,535.3481,300.5979,25.5750,63.2979,0.00000048 2150,206.2417,224.9141,28.5456,59.1441,0.00000000 2150,212.7493,252.1803,27.6175,79.1703,0.00000000 2150,635.0244,487.5882,5.1223,24.5585,0.00000000 2151,173.5016,225.7858,62.6923,181.4268,0.99999994 2151,116.4040,247.3273,64.0278,170.4195,0.99999875 2151,160.8722,221.1545,30.6760,67.4976,0.00000000 2151,145.6461,212.5719,53.7696,131.9241,0.00000000 2151,119.9779,212.1454,47.0197,102.5492,0.00000000 2152,61.8804,221.3413,87.0244,258.3048,1.00000000 2152,1.1466,223.7132,78.4592,245.5545,0.24247760 2152,473.2233,300.0111,22.1871,56.7376,0.03284874 2152,117.7692,229.3414,28.9076,71.2085,0.00034672 2152,17.0258,239.3788,36.8974,76.2369,0.00000010 2152,41.0264,226.2682,59.6488,164.2775,0.00000000 2153,68.8495,214.3393,26.1620,62.0070,0.00005658 2153,519.6119,332.3546,33.1076,73.5480,0.00000001 2153,36.9783,214.4701,37.8862,72.6335,0.00000000 2153,634.9697,487.3577,5.1770,24.7890,0.00000000 2153,627.8041,458.5088,12.3426,53.6379,0.00000000 2154,67.7305,220.9955,25.6250,49.4789,0.00352138 2154,48.6596,214.9947,30.3401,57.6531,0.00000000 2154,141.4994,165.6097,30.3464,60.2273,0.00000000 2154,80.6278,213.4737,28.2180,55.6196,0.00000000 2154,157.6361,174.7711,25.0544,57.5922,0.00000000 2154,27.7079,210.3734,66.5933,144.2493,0.00000000 2154,635.4262,487.6585,4.7205,24.4882,0.00000000 2154,628.9876,460.2708,11.1591,51.8759,0.00000000 2155,63.8221,216.7354,27.9186,55.8807,0.32705498 2155,32.2416,207.6960,34.3556,64.7112,0.00000052 2155,49.8117,224.3253,26.8165,56.5001,0.00000000 2155,328.2061,193.2253,26.6667,51.8054,0.00000000 2155,474.8788,280.2784,27.3581,61.7094,0.00000000 2155,160.4556,164.7602,24.0588,57.3702,0.00000000 2155,632.6017,346.2050,7.5450,80.5742,0.00000000 2155,634.9355,486.3268,5.2112,25.8199,0.00000000 2155,628.1970,457.9323,11.9497,54.2144,0.00000000 2156,635.3731,487.5822,4.7736,24.5645,0.00000000 2156,628.8483,459.6947,11.2984,52.4520,0.00000000 2157,325.6859,219.8683,20.7277,47.6851,0.00000000 2157,635.2567,487.2161,4.8900,24.9306,0.00000000 2157,628.6559,459.9994,11.4908,52.1473,0.00000000 2158,329.5527,217.2485,20.7116,50.0912,0.13436575 2158,315.1861,221.5459,21.4668,48.3279,0.00121089 2158,342.2734,215.8710,22.5234,54.7569,0.00000000 2158,635.6701,487.6561,4.4766,24.4906,0.00000000 2159,317.1425,224.3790,22.7665,55.0037,0.99999624 2159,337.2621,223.8996,22.5934,54.7695,0.99797589 2159,349.7109,237.3553,21.1925,52.3388,0.00000000 2159,325.5228,202.5813,49.0680,93.4795,0.00000000 2159,286.7339,115.4371,99.6633,224.4067,0.00000000 2159,635.5402,487.6808,4.6065,24.4659,0.00000000 2159,629.0151,460.2621,11.1316,51.8846,0.00000000 2160,340.1137,217.3079,28.3066,70.8992,1.00000000 2160,366.3642,221.5438,26.2532,65.7258,1.00000000 2160,388.4436,238.4485,23.2311,54.1819,0.00000000 2160,304.3114,145.2390,91.4582,210.8400,0.00000000 2160,635.3326,487.3939,4.8141,24.7528,0.00000000 2160,628.9053,459.5396,11.2414,52.6071,0.00000000 2161,384.2228,214.3208,36.0091,92.1818,1.00000000 2161,413.3632,221.7709,32.8438,79.7047,1.00000000 2161,433.5531,228.9546,33.6384,75.8718,0.00000000 2161,635.2141,487.1081,4.9326,25.0386,0.00000000 2162,446.9726,237.1129,44.0624,123.5077,1.00000000 2162,475.7874,237.9171,41.6357,120.7676,0.99999475 2162,394.9594,239.3903,25.8244,52.1908,0.69722974 2162,466.9895,293.7567,35.7966,83.9693,0.00000000 2163,330.7075,221.5081,22.7905,53.4896,1.00000000 2163,561.8039,235.6966,78.1929,215.8618,0.99999797 2163,420.6579,230.3647,24.0833,53.2815,0.99982470 2163,619.4340,313.8377,20.7127,139.0707,0.00000000 2163,586.8799,270.3235,41.4504,119.4932,0.00000000 2164,394.4840,235.4630,27.6219,58.7411,0.99999505 2164,292.1021,224.4598,24.1462,56.8702,0.99750966 2164,324.5713,223.1348,25.5489,54.3275,0.00676121 2164,307.7390,225.8664,22.6355,54.0787,0.00000000 2164,281.6431,192.9797,49.3389,96.2747,0.00000000 2164,362.9498,122.5813,100.2070,211.6667,0.00000000 2164,635.1979,487.1720,4.9488,24.9747,0.00000000 2165,334.3999,233.5416,30.1387,66.4433,1.00000000 2165,204.2008,215.2742,34.0377,77.9073,1.00000000 2165,254.4584,228.0524,27.8847,65.7272,0.00883209 2165,629.4637,480.0093,10.6830,32.1374,0.00000000 2166,126.0870,196.6715,42.6089,107.9538,1.00000000 2166,284.7646,223.3517,35.1174,75.0608,0.99999976 2166,187.6557,209.8888,37.2302,91.4884,0.99605334 2166,422.2789,207.9653,29.1641,64.7234,0.93756986 2166,111.7911,143.2845,81.9780,200.1324,0.00000000 2167,246.2512,232.8924,44.3757,98.7865,0.99998862 2167,123.5153,218.3976,56.4453,134.1518,0.99886453 2167,420.6411,227.5313,30.4458,71.0299,0.99004793 2167,53.0501,225.4321,40.4692,89.7837,0.00052180 2168,404.1708,227.9459,33.7735,71.4153,1.00000000 2168,184.3138,231.4582,54.6365,133.0178,0.99417901 2168,15.3958,212.0274,71.0467,198.3537,0.89796704 2168,310.7724,217.2404,22.3000,48.3435,0.54226416 2169,372.0722,215.0092,34.6339,82.3682,1.00000000 2169,63.3785,218.2424,67.1137,170.8789,0.99999785 2169,303.4494,207.7669,21.6519,58.4061,0.00000005 2169,15.1547,235.7990,87.1475,245.6112,0.00000000 2169,72.9137,255.1244,34.5861,88.3439,0.00000000 2169,86.2545,230.4899,83.6138,252.1492,0.00000000 2170,320.1310,227.7936,42.1363,99.5029,1.00000000 2170,297.6320,170.6279,84.5928,214.2735,0.00000000 2170,635.6083,487.6877,4.5384,24.4590,0.00000000 2170,629.1254,461.1428,11.0213,51.0039,0.00000000 2171,395.9101,222.9003,43.0092,124.5568,1.00000000 2171,437.9192,41.9411,25.5436,59.9040,0.00000000 2171,371.9048,178.6380,88.2322,248.2195,0.00000000 2171,635.3928,487.5642,4.7539,24.5825,0.00000000 2171,628.9005,460.7986,11.2462,51.3481,0.00000000 2172,576.7368,234.0642,63.4099,171.5264,0.99999642 2172,465.3457,217.8669,25.7816,57.1678,0.00000002 2172,584.0046,331.7820,47.3323,107.0645,0.00000000 2172,581.7137,234.3888,39.2814,76.9449,0.00000000 2172,622.3258,279.1426,17.8209,128.6992,0.00000000 2172,630.8025,244.3481,9.3442,90.4567,0.00000000 2172,635.5259,487.7669,4.6208,24.3798,0.00000000 2173,501.4227,229.8241,27.7716,54.6637,0.00000065 2173,459.0229,83.3092,28.3746,59.0676,0.00000000 2173,635.1639,487.3727,4.9828,24.7740,0.00000000 2173,628.6079,459.2705,11.5388,52.8762,0.00000000 2174,393.8466,222.7715,21.5625,49.9509,0.00000259 2174,444.3902,80.3572,26.7482,56.3258,0.00000000 2174,79.7052,238.2748,37.8360,85.7771,0.00000000 2174,595.0453,152.4513,45.1014,265.2200,0.00000000 2174,626.2966,237.3442,13.8501,125.8336,0.00000000 2174,636.9653,245.0121,3.1814,68.0001,0.00000000 2174,634.8535,199.2756,5.2932,68.1478,0.00000000 2174,636.1046,493.1178,4.0421,19.0289,0.00000000 2174,629.3658,480.1874,10.7809,31.9593,0.00000000 2175,545.1807,234.9215,45.4268,118.1383,0.99999642 2175,409.6277,223.8756,24.6690,59.1373,0.99974597 2175,517.9925,225.6331,93.1220,196.2777,0.00000000 2175,634.4615,226.7604,5.6852,75.5957,0.00000000 2175,631.2107,486.8678,8.9360,25.2789,0.00000000 2176,587.4750,212.4199,31.1416,64.3129,0.00007252 2176,494.2057,214.3985,23.0297,58.1680,0.00000000 2176,589.5388,272.7563,26.3256,51.4214,0.00000000 2176,358.0145,208.3468,23.5787,57.2820,0.00000000 2176,637.6779,202.9455,2.4688,64.4420,0.00000000 2176,633.9027,215.3008,6.2440,79.0476,0.00000000 2176,635.3052,487.7440,4.8415,24.4027,0.00000000 2176,628.6953,460.1142,11.4514,52.0325,0.00000000 2177,580.6391,233.2566,27.8188,61.6045,0.00000168 2177,637.8081,263.5487,2.3386,64.7383,0.00000000 2177,636.1650,493.5993,3.9817,18.5474,0.00000000 2177,629.4363,480.7757,10.7104,31.3710,0.00000000 2178,434.6143,217.2622,22.1074,51.3704,0.00009808 2178,451.7978,216.9748,24.2692,58.1519,0.00000000 2178,30.9447,202.5595,23.7466,56.9450,0.00000000 2178,635.5485,148.5675,4.5982,78.2244,0.00000000 2178,636.1161,493.8394,4.0306,18.3073,0.00000000 2178,629.4483,481.1044,10.6984,31.0423,0.00000000 2179,473.0890,220.0159,23.6421,54.9719,0.99315166 2179,489.8269,221.4545,21.9363,53.3591,0.00193198 2179,371.9341,216.9249,22.0905,51.0746,0.00009085 2179,420.5087,212.6214,24.0473,55.3909,0.00000000 2179,460.6974,184.0030,49.8245,107.7620,0.00000000 2179,432.6785,127.6054,100.5025,223.4545,0.00000000 2179,635.2941,487.6946,4.8526,24.4521,0.00000000 2180,520.2488,223.5122,25.0348,62.2778,0.99996841 2180,565.8889,218.1944,25.2658,60.9169,0.99980688 2180,537.4759,224.5934,22.0060,57.0388,0.31224945 2180,378.5006,219.6594,22.0158,51.4790,0.01627323 2180,437.4186,209.2237,25.5437,54.4818,0.00000806 2180,549.6700,223.4165,22.3624,55.3602,0.00000001 2180,553.2739,190.3413,49.5854,107.2838,0.00000000 2181,394.2774,215.7644,26.0737,61.2881,0.99944073 2181,463.6258,211.0473,22.1893,54.7403,0.46873456 2181,477.9712,220.5974,23.0852,52.3171,0.00000007 2181,620.2038,230.9443,19.9429,81.6604,0.00000000 2181,453.5245,174.8367,50.8812,108.1893,0.00000000 2181,607.6413,130.5204,32.5054,250.2695,0.00000000 2181,635.5468,233.9592,4.5999,66.4482,0.00000000 2181,631.5123,487.5385,8.6344,24.6082,0.00000000 2182,422.2843,221.5287,28.9379,69.9966,0.99999797 2182,510.4486,216.3613,24.3439,59.1746,0.99242586 2182,524.2129,218.1367,25.5483,61.2099,0.95781344 2182,160.7568,224.6876,21.6568,51.2726,0.83635896 2182,171.7436,231.6935,21.6892,51.9008,0.00000000 2183,126.5350,218.1366,31.5783,74.1991,1.00000000 2183,471.9971,220.2005,37.7541,97.1685,0.99999940 2183,582.7883,220.8972,28.3061,71.5898,0.99995959 2183,599.4720,217.2342,28.8421,70.2143,0.99925512 2184,41.8772,221.3305,40.7251,103.6730,0.99998331 2184,64.9986,230.1816,40.1004,89.0774,0.82243133 2184,590.5055,220.6077,49.6412,142.7389,0.00000000 2184,623.5488,256.7827,16.5979,133.1338,0.00000000 2184,28.5988,180.2935,84.8471,201.7275,0.00000000 2184,627.9910,214.9273,12.1557,87.5157,0.00000000 2184,637.1021,236.0749,3.0446,68.2261,0.00000000 2185,230.8048,219.0946,26.6701,54.3661,0.99956936 2185,575.6819,207.4786,22.1915,55.6818,0.88542831 2185,556.4642,199.7550,23.9392,57.1294,0.00000000 2185,587.5216,202.9284,23.3002,54.4592,0.00000000 2185,562.9849,183.2346,50.2973,95.6483,0.00000000 2185,532.7164,114.5120,101.7179,219.9793,0.00000000 2185,195.9410,134.2808,96.4707,216.6478,0.00000000 2185,635.2438,487.4822,4.9029,24.6645,0.00000000 2185,628.5462,459.3552,11.6005,52.7915,0.00000000 2186,141.3929,220.5737,32.2321,67.7962,1.00000000 2186,606.8845,217.6763,22.3291,52.5635,0.87371278 2186,629.6959,211.4014,10.4508,78.3509,0.00000000 2186,637.2985,213.0563,2.8482,61.3863,0.00000000 2186,105.9192,139.0909,92.5460,212.6449,0.00000000 2186,635.2239,487.4065,4.9228,24.7402,0.00000000 2187,10.7293,230.2223,36.7706,75.3378,0.00001291 2187,635.3035,487.5565,4.8432,24.5902,0.00000000 2187,628.6835,459.7851,11.4632,52.3616,0.00000000 2188,333.6408,215.2918,22.9526,54.7227,0.57279128 2188,321.2373,190.7671,48.7145,91.6112,0.00000000 2188,635.3419,487.4831,4.8048,24.6636,0.00000000 2188,628.7871,459.1871,11.3596,52.9596,0.00000000 2189,359.6729,222.1274,23.0191,55.4981,0.99999458 2189,463.7179,223.9598,21.5901,53.4952,0.00000124 2189,374.6716,222.3175,24.2240,57.3860,0.00000005 2189,348.7254,217.5589,20.3698,53.7225,0.00000000 2189,345.8374,185.0360,50.2861,104.3602,0.00000000 2189,320.0684,158.2853,97.4407,226.7721,0.00000000 2189,635.5253,487.6314,4.6214,24.5153,0.00000000 2189,629.0957,460.1386,11.0510,52.0081,0.00000000 2190,381.6400,204.5071,24.0924,56.3507,0.99989986 2190,512.2371,194.2681,23.3275,58.0008,0.81658417 2190,370.5455,174.3513,48.1389,97.5103,0.00000000 2190,628.2150,1.0000,11.9317,51.6834,0.00000000 2190,635.2690,487.4783,4.8777,24.6684,0.00000000 2190,628.6711,459.1291,11.4756,53.0176,0.00000000 2191,411.3672,229.4649,25.1617,61.0195,0.99999791 2191,486.7904,225.9205,24.2527,54.0449,0.00000003 2191,374.8657,133.4295,96.2801,211.0461,0.00000000 2191,636.2167,493.6151,3.9300,18.5316,0.00000000 2191,629.5247,480.3923,10.6220,31.7544,0.00000000 2192,444.9146,221.7035,32.0875,76.9708,0.99999923 2192,437.6488,217.8023,22.2735,58.9815,0.00000000 2192,408.7421,154.7570,88.8751,212.8608,0.00000000 2192,635.2225,487.2959,4.9242,24.8508,0.00000000 2192,628.4847,459.3814,11.6620,52.7653,0.00000000 2193,515.4645,233.6601,35.1769,82.8736,1.00000000 2193,468.5610,244.2489,27.3413,61.4650,0.29592010 2193,554.3230,226.4707,22.3544,52.6016,0.00075485 2193,535.6179,229.5003,30.9768,71.9281,0.00000000 2193,481.3294,178.2530,89.9764,219.4879,0.00000000 2193,635.1822,487.1473,4.9645,24.9994,0.00000000 2194,596.5472,225.5834,35.6903,93.7699,0.99999988 2194,517.0474,230.6940,35.0893,86.1366,0.91868818 2194,590.1897,214.6859,27.0326,65.7995,0.04098471 2194,627.9502,237.7859,12.1965,86.1478,0.00000000 2195,442.4666,287.3624,28.2357,50.4785,0.00000000 2195,431.4494,87.4877,26.4868,55.0297,0.00000000 2195,617.5709,216.8808,22.5758,144.6148,0.00000000 2195,589.9675,170.6972,50.1792,252.3799,0.00000000 2195,634.0007,322.0482,6.1460,78.0159,0.00000000 2195,633.0365,252.2142,7.1102,80.5317,0.00000000 2195,638.1942,209.8708,1.9525,65.9613,0.00000000 2195,630.4292,205.0812,9.7175,85.5884,0.00000000 2195,635.1348,486.9856,5.0119,25.1611,0.00000000 2195,628.4641,459.3902,11.6826,52.7565,0.00000000 2196,590.4533,214.8619,24.2067,58.7259,0.99999976 2196,513.9323,330.1663,24.2451,56.7798,0.00000000 2196,632.9582,370.5130,7.1885,80.6536,0.00000000 2196,637.7711,202.5085,2.3756,65.7034,0.00000000 2196,552.2979,105.6763,87.8488,217.6833,0.00000000 2196,631.2430,169.2291,8.9037,97.1889,0.00000000 2196,636.2387,493.5493,3.9080,18.5974,0.00000000 2196,629.5157,480.6086,10.6310,31.5381,0.00000000 2197,602.1110,406.4599,23.5328,57.9743,0.00000000 2197,631.9827,410.4861,8.1640,80.6533,0.00000000 2197,335.5771,169.5576,87.4011,280.0614,0.00000000 2197,636.1795,387.5993,3.9672,63.7358,0.00000000 2197,637.7189,419.9587,2.4278,64.1643,0.00000000 2197,598.9874,309.2984,41.1593,202.8483,0.00000000 2197,627.2838,456.8698,12.8629,55.2769,0.00000000 2197,636.0060,492.4648,4.1407,19.6819,0.00000000 2198,591.6855,210.7409,22.5497,58.8714,0.00000000 2198,636.2568,493.4147,3.8899,18.7320,0.00000000 2198,629.4611,480.4956,10.6856,31.6511,0.00000000 2199,443.1080,232.2144,28.7519,59.0958,0.00000000 2199,635.3194,487.5368,4.8273,24.6099,0.00000000 2199,628.7553,459.3914,11.3914,52.7553,0.00000000 2200,636.2155,493.4858,3.9312,18.6609,0.00000000 2200,629.4216,480.3069,10.7251,31.8398,0.00000000 2201,494.4110,385.5206,22.9260,60.9721,0.00000000 2201,450.2249,271.5904,85.6192,240.5563,0.00000000 2201,631.5551,485.7812,8.5916,26.3655,0.00000000 2202,599.2992,217.2432,28.8039,71.8912,0.07884521 2202,586.2358,224.9193,26.3963,57.2853,0.00000000 2202,592.6104,181.3013,47.5363,262.5734,0.00000000 2202,636.4395,191.9838,3.7072,62.6570,0.00000000 2202,634.9728,229.6528,5.1739,62.8593,0.00000000 2202,623.9232,213.9339,16.2235,128.3917,0.00000000 2202,636.1569,493.4033,3.9898,18.7434,0.00000000 2202,629.4280,480.7050,10.7187,31.4417,0.00000000 2203,486.6997,212.5060,34.6460,62.9412,0.00018070 2203,506.5012,226.8416,25.6746,60.9784,0.00000000 2203,635.4454,488.3496,4.7013,23.7971,0.00000000 2203,628.5588,461.0883,11.5879,51.0584,0.00000000 2204,585.9481,214.8032,36.2868,84.2795,0.00669169 2204,518.8914,217.1276,25.8570,59.9295,0.00000001 2204,570.3722,212.1097,31.3899,72.5866,0.00000000 2204,555.8957,156.6617,84.2510,210.0937,0.00000000 2204,635.9135,211.8738,4.2332,62.6617,0.00000000 2204,630.8996,228.3727,9.2471,84.1555,0.00000000 2204,635.3662,487.7099,4.7805,24.4368,0.00000000 2204,628.4831,458.1553,11.6636,53.9914,0.00000000 2205,603.6453,203.6194,36.5014,253.8172,0.00000000 2205,619.9631,246.0678,20.1836,81.9273,0.00000000 2205,629.2260,283.3399,10.9207,104.8398,0.00000000 2205,633.9318,246.1026,6.2149,71.1545,0.00000000 2205,635.4778,487.6270,4.6689,24.5197,0.00000000 2205,628.6633,459.2892,11.4834,52.8575,0.00000000 2206,428.4111,272.5152,24.6599,57.5637,0.00000000 2206,628.5020,1.0000,11.6447,50.8209,0.00000000 2206,635.2809,487.5215,4.8658,24.6252,0.00000000 2206,628.6149,459.4731,11.5318,52.6736,0.00000000 2207,482.2917,214.0843,23.1857,54.3220,0.00000000 2207,636.2145,493.4671,3.9322,18.6796,0.00000000 2207,629.3606,480.5293,10.7861,31.6174,0.00000000 2208,530.8804,219.4629,24.4082,52.3283,0.00000000 2208,636.1707,493.5386,3.9760,18.6081,0.00000000 2208,629.5184,480.6336,10.6283,31.5131,0.00000000 2209,594.5851,305.0349,45.5616,207.1118,0.00000000 2209,636.7566,375.0776,3.3901,66.8000,0.00000000 2209,625.3883,344.2797,14.7584,131.9997,0.00000000 2209,635.7120,491.8494,4.4347,20.2973,0.00000000 2209,626.8094,456.1852,13.3373,55.9615,0.00000000 2210,635.6389,296.1758,4.5078,67.5843,0.00000000 2210,598.0322,209.4197,42.1145,266.3340,0.00000000 2210,636.1763,493.3370,3.9704,18.8097,0.00000000 2210,629.5204,480.4062,10.6263,31.7405,0.00000000 2211,635.7181,487.7263,4.4286,24.4204,0.00000000 2211,628.8694,458.6409,11.2773,53.5058,0.00000000 2212,426.8034,206.4646,22.8997,55.0677,0.00000000 2212,636.2505,493.3072,3.8962,18.8395,0.00000000 2212,629.5409,480.6542,10.6058,31.4925,0.00000000 2213,477.7602,216.7805,24.0413,47.7325,0.00000000 2213,636.3272,493.1306,3.8195,19.0161,0.00000000 2213,629.4956,480.6684,10.6511,31.4783,0.00000000 2214,528.2977,223.1797,24.0728,48.0079,0.00000000 2214,636.3444,493.7799,3.8023,18.3668,0.00000000 2214,629.4190,481.3784,10.7277,30.7683,0.00000000 2215,457.8150,213.1534,22.8238,49.8469,0.69627517 2215,471.1643,214.4933,25.2615,54.8635,0.00000000 2215,537.9644,314.3412,35.6163,76.2887,0.00000000 2215,635.9888,216.1688,4.1579,67.0578,0.00000000 2215,636.1586,493.3681,3.9881,18.7786,0.00000000 2215,629.4714,480.9542,10.6753,31.1925,0.00000000 2216,474.0681,217.9684,25.0314,58.6649,0.99971050 2216,563.7992,221.4981,22.9925,53.0487,0.98845971 2216,463.2082,214.4370,22.0279,55.4308,0.00000275 2216,577.2014,225.2953,26.2106,53.3072,0.00000002 2216,488.4462,217.5753,26.9759,57.4556,0.00000001 2216,461.9600,188.0104,50.7033,109.1125,0.00000000 2216,552.1368,184.6385,50.1624,101.0495,0.00000000 2216,440.2580,155.4915,95.4899,221.1595,0.00000000 2216,635.2838,488.1431,4.8629,24.0036,0.00000000 2216,628.5108,459.6644,11.6359,52.4823,0.00000000 2217,525.2067,219.9142,28.0658,70.1721,0.99999940 2217,503.6837,220.1538,29.9188,68.0540,0.00476407 2217,628.6633,214.1038,11.4834,90.4455,0.00000000 2217,636.9306,222.8958,3.2161,62.9447,0.00000000 2217,489.0285,121.3799,94.2070,220.8537,0.00000000 2217,635.4008,487.7284,4.7459,24.4183,0.00000000 2218,425.4034,212.2791,21.7193,51.3981,0.00000103 2218,635.2423,223.8221,4.9044,76.8012,0.00000000 2218,635.4634,487.5592,4.6833,24.5875,0.00000000 2218,628.8224,460.3688,11.3243,51.7779,0.00000000 2219,468.4654,220.0949,22.3347,54.3675,0.00000001 2219,635.1818,487.2275,4.9649,24.9192,0.00000000 2219,628.3254,459.0691,11.8213,53.0776,0.00000000 2220,539.9643,220.8120,24.1250,57.4158,0.15382704 2220,531.3045,196.9804,49.2905,127.4515,0.00000000 2220,628.1450,1.0000,12.0017,50.3549,0.00000000 2220,636.2249,493.3796,3.9218,18.7671,0.00000000 2220,629.3990,480.6573,10.7477,31.4894,0.00000000 2221,475.7077,217.5259,21.4376,52.1588,0.73234200 2221,496.5910,216.3712,20.8741,52.3128,0.04022844 2221,463.1103,215.2505,22.2096,51.0118,0.00000002 2221,506.4706,211.3785,23.5598,49.9656,0.00000000 2221,636.3571,493.1802,3.7896,18.9665,0.00000000 2221,629.4517,480.2048,10.6950,31.9419,0.00000000 2222,540.9061,211.6577,23.9179,58.5513,0.99998558 2222,506.3174,211.9084,22.2695,58.5818,0.99992985 2222,524.1403,212.6790,21.0751,54.6881,0.92546928 2222,553.9399,222.5184,22.4595,53.2569,0.00000000 2222,526.7494,178.9173,52.0258,107.0967,0.00000000 2222,493.9509,187.3219,45.9901,98.6139,0.00000000 2222,494.6598,112.9087,101.7630,225.7602,0.00000000 2222,635.0016,487.2129,5.1451,24.9338,0.00000000 2222,627.9637,457.1896,12.1830,54.9571,0.00000000 2223,594.1569,224.1526,24.0013,59.7316,0.99999994 2223,613.0643,222.4100,24.4271,61.4313,0.99998039 2223,576.3943,226.1396,22.3984,56.3949,0.00000183 2223,585.5869,184.2814,51.5976,113.2072,0.00000000 2223,630.1707,224.3263,9.9760,67.5655,0.00000000 2223,631.0941,485.8467,9.0526,26.3000,0.00000000 2224,72.8654,224.1898,42.1350,105.8603,0.00000000 2224,636.2483,492.2534,3.8984,19.8933,0.00000000 2224,629.4196,477.8842,10.7271,34.2625,0.00000000 2225,635.0108,487.1047,5.1359,25.0420,0.00000000 2225,627.8861,458.2942,12.2606,53.8525,0.00000000 2226,516.5289,222.9551,23.2765,59.1630,0.99905986 2226,503.7628,224.3723,21.1859,54.5784,0.99521381 2226,491.0430,222.1141,21.6862,55.0846,0.00002143 2226,138.1049,253.5424,42.7048,105.9365,0.00000000 2226,502.5536,193.9342,51.0073,102.1996,0.00000000 2226,116.5803,183.8605,83.9894,261.8061,0.00000000 2226,1.0000,194.4265,58.3815,260.4766,0.00000000 2226,479.1039,122.0881,98.4674,219.4953,0.00000000 2226,635.1363,487.6571,5.0104,24.4896,0.00000000 2226,628.1531,458.9731,11.9936,53.1736,0.00000000 2227,521.8782,227.8352,26.7445,64.0495,0.99999994 2227,554.9178,235.5598,22.5747,58.4776,0.87902731 2227,567.2256,234.9159,23.2489,55.4797,0.00002318 2227,383.1924,240.4744,26.0799,73.1487,0.00000000 2227,518.0519,209.9458,50.7221,117.0627,0.00000000 2227,396.9388,233.9474,24.7255,67.7452,0.00000000 2227,629.4287,480.5824,10.7180,31.5643,0.00000000 2228,565.8204,197.5037,27.0668,62.1527,0.99998838 2228,590.5756,201.8744,24.6084,58.1619,0.80106634 2228,415.6999,177.7798,33.8722,73.6215,0.00000006 2228,569.5497,177.4277,50.5746,108.1332,0.00000000 2228,45.4366,74.8918,45.5336,133.0823,0.00000000 2228,629.6909,479.5908,10.4558,32.5559,0.00000000 2229,464.4178,210.9785,22.4232,56.0854,0.94299382 2229,450.6769,210.7256,22.1312,55.0892,0.00757065 2229,433.5093,207.9227,21.4908,53.5441,0.00000000 2229,445.1243,172.3891,52.2303,108.3015,0.00000000 2229,632.7844,354.9692,7.3623,85.0590,0.00000000 2229,600.1301,295.8669,40.0166,216.2798,0.00000000 2229,419.9281,94.5644,99.1285,226.4416,0.00000000 2229,635.2409,487.6277,4.9058,24.5190,0.00000000 2230,529.4952,213.9254,27.9397,66.5171,0.99296105 2230,506.7560,220.0284,27.5389,62.5097,0.23310368 2230,371.7455,232.6397,22.9967,56.6761,0.00000001 2230,483.7788,211.2714,21.8706,54.8836,0.00000001 2230,495.6879,218.8098,22.0483,51.9908,0.00000000 2230,489.6423,136.9619,95.0216,222.1221,0.00000000 2230,635.0581,487.2706,5.0886,24.8761,0.00000000 2231,542.2126,215.6067,26.2776,56.4762,0.99999934 2231,524.1537,219.0533,23.6218,53.4544,0.00029125 2231,355.2878,227.8887,22.7239,51.1678,0.00000003 2231,599.1454,116.4765,41.0013,261.8195,0.00000000 2231,623.8022,165.9216,16.3445,128.3456,0.00000000 2231,637.2658,194.6204,2.8809,64.2545,0.00000000 2231,635.4081,487.3287,4.7386,24.8180,0.00000000 2232,377.0662,228.0605,26.0074,61.0550,0.00000000 2232,629.8576,480.3367,10.2891,31.8100,0.00000000 2233,121.2660,226.0133,24.9269,53.2899,0.00000000 2233,389.4686,237.7267,22.9372,55.1936,0.00000000 2233,631.6421,487.0665,8.5046,25.0802,0.00000000 2234,629.2066,1.0000,10.9401,48.6642,0.00000000 2234,635.6516,487.6660,4.4951,24.4807,0.00000000 2235,58.8144,195.7394,40.6099,114.6673,0.00000000 2235,559.7571,299.1986,61.0690,167.8810,0.00000000 2235,50.9473,156.6899,87.1295,257.0107,0.00000000 2235,635.3712,487.3376,4.7755,24.8091,0.00000000 2235,628.7170,459.1118,11.4297,53.0349,0.00000000 2236,631.4980,486.2518,8.6487,25.8949,0.00000000 2237,627.5486,1.0000,12.5981,52.0043,0.00000000 2237,631.6829,487.1242,8.4638,25.0225,0.00000000 2238,359.4142,214.0565,23.4146,53.3286,0.01121373 2238,28.2849,222.6690,28.5351,60.6057,0.00000000 2238,345.2428,206.3710,24.6681,56.4601,0.00000000 2238,17.7891,206.8200,54.8930,116.4454,0.00000000 2238,129.0212,221.4202,39.8908,89.9721,0.00000000 2238,1.0000,139.0992,57.4476,263.0582,0.00000000 2238,115.1896,150.2175,89.3960,239.9007,0.00000000 2238,631.6078,486.2031,8.5389,25.9436,0.00000000 2239,357.0822,209.6737,22.7701,50.2425,0.00356280 2239,369.6375,204.6118,23.1418,53.0093,0.00000000 2239,59.9892,255.8484,37.3775,74.5510,0.00000000 2239,1.0000,190.7883,58.6033,258.1912,0.00000000 2239,631.7681,486.7176,8.3786,25.4291,0.00000000 2240,421.8849,215.3002,22.7054,51.9124,0.16881467 2240,408.1341,215.5217,21.8455,51.3329,0.00001618 2240,7.5818,198.2461,68.2964,197.9343,0.00000000 2240,437.8759,216.9796,25.7623,56.3056,0.00000000 2240,38.0404,226.8508,37.3958,82.1200,0.00000000 2240,635.2866,487.1822,4.8601,24.9645,0.00000000 2240,628.7590,458.9609,11.3877,53.1858,0.00000000 2241,479.6715,215.1064,24.6477,58.3877,0.91781294 2241,464.8904,219.1668,22.9360,53.3496,0.00009282 2241,466.5572,189.1014,49.5723,102.0971,0.00000000 2241,440.2749,110.9781,99.4595,216.0278,0.00000000 2241,631.5922,487.1770,8.5545,24.9697,0.00000000 2242,558.7205,206.4769,23.0904,55.0674,0.12120452 2242,544.2046,209.5336,22.8996,50.5031,0.00032877 2242,571.4055,205.4009,25.7798,56.7044,0.00000000 2242,545.1287,188.1289,47.8658,105.4327,0.00000000 2242,515.7693,144.2950,98.2178,226.4720,0.00000000 2242,469.2703,216.3916,85.3433,268.9518,0.00000000 2242,635.2663,487.4424,4.8804,24.7043,0.00000000 2242,628.5786,459.2283,11.5681,52.9184,0.00000000 2243,602.4363,220.4000,22.9469,55.6811,0.01017656 2243,584.7286,220.8487,22.7467,55.0211,0.00000017 2243,589.2419,199.3803,46.4566,98.0020,0.00000000 2243,616.3633,213.7179,21.7070,53.7203,0.00000000 2243,634.3600,218.4583,5.7867,72.7166,0.00000000 2243,633.2919,373.7084,6.8548,84.5447,0.00000000 2243,600.4312,320.9246,39.7155,191.2221,0.00000000 2243,635.7836,492.3650,4.3631,19.7817,0.00000000 2243,628.9950,479.8988,11.1517,32.2479,0.00000000 2244,635.2714,487.2903,4.8753,24.8564,0.00000000 2244,628.4589,458.5008,11.6878,53.6459,0.00000000 2245,522.3752,215.0949,24.4823,55.3582,0.99934822 2245,507.0909,214.4912,23.9474,55.3209,0.99506569 2245,487.5478,212.2820,21.0378,52.9223,0.00000011 2245,506.7048,183.3463,51.5044,102.4055,0.00000000 2245,484.1927,154.2601,96.2521,224.3297,0.00000000 2245,635.2783,487.4561,4.8684,24.6906,0.00000000 2245,628.5240,458.9673,11.6227,53.1794,0.00000000 2246,537.1132,211.8284,24.7735,51.8872,0.00361063 2246,592.0300,218.9025,22.2507,53.0017,0.00015525 2246,570.0986,217.0120,23.2274,55.0897,0.00000001 2246,527.5084,173.2953,49.8187,103.8081,0.00000000 2246,552.2153,210.6747,26.0493,56.0055,0.00000000 2246,524.2192,213.1335,21.7741,54.9288,0.00000000 2246,400.2889,256.8443,21.9340,52.6970,0.00000000 2246,635.3084,203.9299,4.8383,74.5003,0.00000000 2246,635.3251,487.8146,4.8216,24.3321,0.00000000 2246,628.4408,459.1524,11.7059,52.9943,0.00000000 2247,588.3240,216.3585,26.0420,56.8157,0.98834467 2247,608.0653,211.6254,28.4839,60.7352,0.00000000 2247,554.4890,105.5058,85.6577,227.1308,0.00000000 2247,637.9595,203.7815,2.1872,62.9303,0.00000000 2247,629.9036,204.0124,10.2431,83.1285,0.00000000 2247,635.2771,487.5741,4.8696,24.5726,0.00000000 2247,628.4671,459.0965,11.6796,53.0502,0.00000000 2248,9.5354,196.1332,65.2447,169.3261,0.00000000 2248,637.2643,382.3488,2.8824,66.7495,0.00000000 2248,633.5155,400.2084,6.6312,79.8240,0.00000000 2248,632.2471,352.6037,7.8996,84.2825,0.00000000 2248,594.4415,311.2731,45.7052,200.8736,0.00000000 2248,632.9293,1.0000,7.2174,39.8032,0.00000000 2248,635.0496,486.4420,5.0971,25.7047,0.00000000 2248,627.4830,456.1350,12.6637,56.0117,0.00000000 2249,464.7914,298.8157,27.8775,63.0454,0.00000001 2249,628.5337,1.0000,11.6130,49.1671,0.00000000 2249,631.3853,486.5346,8.7614,25.6121,0.00000000 2250,69.2508,197.6626,23.1530,52.5162,0.00000050 2250,631.3450,486.2343,8.8017,25.9124,0.00000000 2251,16.7299,195.2545,23.5616,55.9852,0.00079114 2251,631.7059,487.3580,8.4408,24.7887,0.00000000 2252,631.9257,486.6549,8.2210,25.4918,0.00000000 ================================================ FILE: global_var.py ================================================ # @Time : 2021/6/22 下午4:46 # @Author : Richard FANG # @File : global_var.py.py # @Software: PyCharm def _init(): # 初始化 global _global_dict _global_dict = {} def set_value(key, value): # 定义一个全局变量 _global_dict[key] = value def get_value(key): # 获得一个全局变量,不存在则提示读取对应变量失败 try: return _global_dict[key] except: print('读取'+key+'失败\r\n') ================================================ FILE: gradcam_visual.py ================================================ import os import time import argparse import numpy as np from models.gradcam import YOLOV5GradCAM from models.yolo_v5_object_detector import YOLOV5TorchObjectDetector import cv2 from deep_utils import Box, split_extension target = ['model_30_cv1_act', 'model_30_cv2_act', 'model_30_cv3_act', \ 'model_33_cv1_act', 'model_33_cv2_act', 'model_33_cv3_act', \ 'model_36_cv1_act', 'model_36_cv2_act', 'model_36_cv3_act'] # Arguments parser = argparse.ArgumentParser() parser.add_argument('--model-path', type=str, default="/home/shen/Chenyf/exp_save/multispectral-object-detection/5m_NiNfusion/weights/best.pt", help='Path to the model') parser.add_argument('--source1', type=str, default='/home/shen/Chenyf/kaist/visible/test', help='source') # file/folder, 0 for webcam parser.add_argument('--source2', type=str, default='/home/shen/Chenyf/kaist/infrared/test', help='source') # file/folder, 0 for webcam parser.add_argument('--output-dir', type=str, default='/home/shen/Chenyf/kaist/Grad_CAM_visual/outputs_nin_head', help='output dir') parser.add_argument('--img-size', type=int, default=640, help="input image size") parser.add_argument('--target-layer', type=str, default=target, help='The layer hierarchical address to which gradcam will applied,' ' the names should be separated by underline') parser.add_argument('--method', type=str, default='gradcam', help='gradcam or gradcampp') parser.add_argument('--device', type=str, default='cpu', help='cuda or cpu') parser.add_argument('--names', type=str, default='person', help='The name of the classes. The default is set to None and is set to coco classes. Provide your custom names as follow: object1,object2,object3') #'person, car, bicycle' args = parser.parse_args() def get_res_img2(heat, mask, res_img): mask = mask.squeeze(0).mul(255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).detach().cpu().numpy().astype(np.uint8) heatmap = cv2.applyColorMap(mask, cv2.COLORMAP_JET) n_heatmat = (heatmap / 255).astype(np.float32) heat.append(n_heatmat) return res_img, heat def get_res_img(bbox, mask, res_img): mask = mask.squeeze(0).mul(255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).detach().cpu().numpy().astype(np.uint8) heatmap = cv2.applyColorMap(mask, cv2.COLORMAP_JET) #n_heatmat = (Box.fill_outer_box(heatmap, bbox, value=0) / 255).astype(np.float32) n_heatmat = (heatmap / 255).astype(np.float32) res_img = cv2.addWeighted(res_img, 0.7, n_heatmat, 0.3, 0) res_img = (res_img / res_img.max()) return res_img, n_heatmat def put_text_box(bbox, cls_name, res_img): x1, y1, x2, y2 = bbox # this is a bug in cv2. It does not put box on a converted image from torch unless it's buffered and read again! #cv2.imwrite('temp.jpg', (res_img * 255).astype(np.uint8)) #res_img = cv2.imread('temp.jpg') res_img = Box.put_box(res_img, bbox) #res_img = Box.put_text(res_img, cls_name, (x1 - 3, y1)) # res_img = Box.put_text(res_img, str(round((float(cls_name)+0.40), 2)), (x1-3, y1)) return res_img def concat_images(images): w, h = images[0].shape[:2] width = w height = h * len(images) base_img = np.zeros((width, height, 3), dtype=np.uint8) for i, img in enumerate(images): base_img[:, h * i:h * (i + 1), ...] = img return base_img def main(img_vis_path, img_ir_path): device = args.device input_size = (args.img_size, args.img_size) img_vis, img_ir = cv2.imread(img_vis_path), cv2.imread(img_ir_path) print('[INFO] Loading the model') # load model model = YOLOV5TorchObjectDetector(args.model_path, device, img_size=input_size, names=None if args.names is None else args.names.strip().split(","), confidence=0.3) # preprocess the images torch_img_vis, torch_img_ir = model.preprocessing(img_vis[..., ::-1], img_ir[..., ::-1]) result = torch_img_vis.squeeze(0).mul(255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).detach().cpu().numpy() result = result[..., ::-1] # convert to bgr images = [] if args.method == 'gradcam': for layer in args.target_layer: saliency_method = YOLOV5GradCAM(model=model, layer_name=layer, img_size=input_size) tic = time.time() masks, logits, [boxes, _, class_names, confs] = saliency_method(torch_img_vis, torch_img_ir) print("total time:", round(time.time() - tic, 4)) res_img = result.copy() res_img = res_img / 255 heat = [] for i, mask in enumerate(masks): bbox = boxes[0][i] mask = mask.squeeze(0).mul(255).add_(0.5).clamp_(0, 255).permute(1, 2, 0).detach().cpu().numpy().astype(np.uint8) heatmap = cv2.applyColorMap(mask, cv2.COLORMAP_JET) n_heatmat = (heatmap / 255).astype(np.float32) heat.append(n_heatmat) #res_img, heat_map = get_res_img(bbox, mask, res_img) #res_img = put_text_box(bbox, cls_name, res_img) # plot the bboxes #images.append(res_img) if(len(heat) != 0): heat_all = heat[0] for h in heat[1:]: heat_all += h heat_avg = heat_all / len(heat) res_img = cv2.addWeighted(res_img, 0.3, heat_avg, 0.7, 0) res_img = (res_img / res_img.max()) cv2.imwrite('temp.jpg', (res_img * 255).astype(np.uint8)) heat_map = cv2.imread('temp.jpg') # for i, mask in enumerate(masks): # bbox, cls_name, conf = boxes[0][i], class_names[0][i], str(confs[0][i]) # heat_map = put_text_box(bbox, conf, heat_avg) # plot the bboxes final_image = heat_map images.append(final_image) # save the images suffix = '-res-' + layer img_name = split_extension(os.path.split(img_vis_path)[-1], suffix=suffix) output_path = f'{args.output_dir}/{img_name}' os.makedirs(args.output_dir, exist_ok=True) print(f'[INFO] Saving the final image at {output_path}') cv2.imwrite(output_path, final_image) img_name = split_extension(os.path.split(img_vis_path)[-1], suffix='_avg') output_path = f'{args.output_dir}/{img_name}' img_all = images[0].astype(np.uint16) for img in images[1:]: img_all += img img_avg = img_all / len(images) cv2.imwrite(output_path, img_avg.astype(np.uint8)) if __name__ == '__main__': if os.path.isdir(args.source1): img_vis_list = os.listdir(args.source1) img_vis_list.sort() for item in img_vis_list[1127:]: img_vis_path = os.path.join(args.source1 ,item) if args.source1 == '/home/shen/Chenyf/FLIR-align-3class/visible/test': new_item = item[:-4] + '.jpeg' img_ir_path = os.path.join(args.source2, new_item) else: img_ir_path = os.path.join(args.source2, item) main(img_vis_path, img_ir_path) print(item) else: main(img_vis_path, img_ir_path) ================================================ FILE: hubconf.py ================================================ """YOLOv5 PyTorch Hub models https://pytorch.org/hub/ultralytics_yolov5/ Usage: import torch model = torch.hub.load('ultralytics/yolov5', 'yolov5s') """ from pathlib import Path import torch from models.yolo import Model from utils.general import check_requirements, set_logging from utils.google_utils import attempt_download from utils.torch_utils import select_device dependencies = ['torch', 'yaml'] check_requirements(Path(__file__).parent / 'requirements.txt', exclude=('pycocotools', 'thop')) def create(name, pretrained, channels, classes, autoshape, verbose): """Creates a specified YOLOv5 model Arguments: name (str): name of model, i.e. 'yolov5s' pretrained (bool): load pretrained weights into the model channels (int): number of input channels classes (int): number of model classes Returns: pytorch model """ try: set_logging(verbose=verbose) cfg = list((Path(__file__).parent / 'models').rglob(f'{name}.yaml'))[0] # model.yaml path model = Model(cfg, channels, classes) if pretrained: fname = f'{name}.pt' # checkpoint filename attempt_download(fname) # download if not found locally ckpt = torch.load(fname, map_location=torch.device('cpu')) # load msd = model.state_dict() # model state_dict csd = ckpt['model'].float().state_dict() # checkpoint state_dict as FP32 csd = {k: v for k, v in csd.items() if msd[k].shape == v.shape} # filter model.load_state_dict(csd, strict=False) # load if len(ckpt['model'].names) == classes: model.names = ckpt['model'].names # set class names attribute if autoshape: model = model.autoshape() # for file/URI/PIL/cv2/np inputs and NMS device = select_device('0' if torch.cuda.is_available() else 'cpu') # default to GPU if available return model.to(device) except Exception as e: help_url = 'https://github.com/ultralytics/yolov5/issues/36' s = 'Cache maybe be out of date, try force_reload=True. See %s for help.' % help_url raise Exception(s) from e def custom(path_or_model='path/to/model.pt', autoshape=True, verbose=True): """YOLOv5-custom model https://github.com/ultralytics/yolov5 Arguments (3 options): path_or_model (str): 'path/to/model.pt' path_or_model (dict): torch.load('path/to/model.pt') path_or_model (nn.Module): torch.load('path/to/model.pt')['model'] Returns: pytorch model """ set_logging(verbose=verbose) model = torch.load(path_or_model) if isinstance(path_or_model, str) else path_or_model # load checkpoint if isinstance(model, dict): model = model['ema' if model.get('ema') else 'model'] # load model hub_model = Model(model.yaml).to(next(model.parameters()).device) # create hub_model.load_state_dict(model.float().state_dict()) # load state_dict hub_model.names = model.names # class names if autoshape: hub_model = hub_model.autoshape() # for file/URI/PIL/cv2/np inputs and NMS device = select_device('0' if torch.cuda.is_available() else 'cpu') # default to GPU if available return hub_model.to(device) def yolov5s(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-small model https://github.com/ultralytics/yolov5 return create('yolov5s', pretrained, channels, classes, autoshape, verbose) def yolov5m(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-medium model https://github.com/ultralytics/yolov5 return create('yolov5m', pretrained, channels, classes, autoshape, verbose) def yolov5l(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-large model https://github.com/ultralytics/yolov5 return create('yolov5l', pretrained, channels, classes, autoshape, verbose) def yolov5x(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-xlarge model https://github.com/ultralytics/yolov5 return create('yolov5x', pretrained, channels, classes, autoshape, verbose) def yolov5s6(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-small-P6 model https://github.com/ultralytics/yolov5 return create('yolov5s6', pretrained, channels, classes, autoshape, verbose) def yolov5m6(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-medium-P6 model https://github.com/ultralytics/yolov5 return create('yolov5m6', pretrained, channels, classes, autoshape, verbose) def yolov5l6(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-large-P6 model https://github.com/ultralytics/yolov5 return create('yolov5l6', pretrained, channels, classes, autoshape, verbose) def yolov5x6(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True): # YOLOv5-xlarge-P6 model https://github.com/ultralytics/yolov5 return create('yolov5x6', pretrained, channels, classes, autoshape, verbose) if __name__ == '__main__': model = create(name='yolov5s', pretrained=True, channels=3, classes=80, autoshape=True, verbose=True) # pretrained # model = custom(path_or_model='path/to/model.pt') # custom # Verify inference import cv2 import numpy as np from PIL import Image imgs = ['data/images/zidane.jpg', # filename 'https://github.com/ultralytics/yolov5/releases/download/v1.0/zidane.jpg', # URI cv2.imread('data/images/bus.jpg')[:, :, ::-1], # OpenCV Image.open('data/images/bus.jpg'), # PIL np.zeros((320, 640, 3))] # numpy results = model(imgs) # batched inference results.print() results.save() ================================================ FILE: models/__init__.py ================================================ ================================================ FILE: models/common.py ================================================ # YOLOv5 common modules import math from copy import copy from pathlib import Path import warnings import cv2 import numpy as np import pandas as pd import requests import torch import torch.nn as nn from torch import einsum from PIL import Image from torch.cuda import amp import torch.nn.functional as F from torch.autograd import Function from torch.nn.modules.utils import _triple, _pair, _single from einops import rearrange, repeat from einops.layers.torch import Rearrange from utils.datasets import letterbox from utils.general import non_max_suppression, make_divisible, scale_coords, increment_path, xyxy2xywh, save_one_box from utils.plots import colors, plot_one_box from utils.torch_utils import time_synchronized from timm.models.layers import DropPath from torch.nn import init, Sequential import math import matplotlib.pyplot as plt from torchvision import transforms from torchvision.utils import save_image import numpy as np def autopad(k, p=None): # kernel, padding # Pad to 'same' if p is None: p = k // 2 if isinstance(k, int) else [x // 2 for x in k] # auto-pad return p def DWConv(c1, c2, k=1, s=1, act=True): # Depthwise convolution return Conv(c1, c2, k, s, g=math.gcd(c1, c2), act=act) class Conv(nn.Module): # Standard convolution def __init__(self, c1, c2, k=1, s=1, p=None, g=1, act=True): # ch_in, ch_out, kernel, stride, padding, groups super(Conv, self).__init__() self.conv = nn.Conv2d(c1, c2, k, s, autopad(k, p), groups=g, bias=False) self.bn = nn.BatchNorm2d(c2) self.act = nn.SiLU() if act is True else (act if isinstance(act, nn.Module) else nn.Identity()) def forward(self, x): return self.act(self.bn(self.conv(x))) def fuseforward(self, x): return self.act(self.conv(x)) class TransformerLayer(nn.Module): # Transformer layer https://arxiv.org/abs/2010.11929 (LayerNorm layers removed for better performance) def __init__(self, c, num_heads): super().__init__() self.q = nn.Linear(c, c, bias=False) self.k = nn.Linear(c, c, bias=False) self.v = nn.Linear(c, c, bias=False) self.ma = nn.MultiheadAttention(embed_dim=c, num_heads=num_heads) self.fc1 = nn.Linear(c, c, bias=False) self.fc2 = nn.Linear(c, c, bias=False) def forward(self, x): x = self.ma(self.q(x), self.k(x), self.v(x))[0] + x x = self.fc2(self.fc1(x)) + x return x class TransformerBlock(nn.Module): # Vision Transformer https://arxiv.org/abs/2010.11929 def __init__(self, c1, c2, num_heads, num_layers): super().__init__() self.conv = None if c1 != c2: self.conv = Conv(c1, c2) self.linear = nn.Linear(c2, c2) # learnable position embedding self.tr = nn.Sequential(*[TransformerLayer(c2, num_heads) for _ in range(num_layers)]) self.c2 = c2 def forward(self, x): if self.conv is not None: x = self.conv(x) b, _, w, h = x.shape p = x.flatten(2) p = p.unsqueeze(0) p = p.transpose(0, 3) p = p.squeeze(3) e = self.linear(p) x = p + e x = self.tr(x) x = x.unsqueeze(3) x = x.transpose(0, 3) x = x.reshape(b, self.c2, w, h) return x class VGGblock(nn.Module): def __init__(self, num_convs, c1, c2): super(VGGblock, self).__init__() self.blk = [] for num in range(num_convs): if num == 0: self.blk.append(nn.Sequential(nn.Conv2d(in_channels=c1, out_channels=c2, kernel_size=3, padding=1), nn.ReLU(), )) else: self.blk.append(nn.Sequential(nn.Conv2d(in_channels=c2, out_channels=c2, kernel_size=3, padding=1), nn.ReLU(), )) self.blk.append(nn.MaxPool2d(kernel_size=2, stride=2)) self.vggblock = nn.Sequential(*self.blk) def forward(self, x): out = self.vggblock(x) return out class ResNetblock(nn.Module): expansion = 4 def __init__(self, c1, c2, stride=1): super(ResNetblock, self).__init__() self.conv1 = nn.Conv2d(in_channels=c1, out_channels=c2, kernel_size=1, bias=False) self.bn1 = nn.BatchNorm2d(c2) self.conv2 = nn.Conv2d(in_channels=c2, out_channels=c2, kernel_size=3, stride=stride, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(c2) self.conv3 = nn.Conv2d(in_channels=c2, out_channels=self.expansion*c2, kernel_size=1, bias=False) self.bn3 = nn.BatchNorm2d(self.expansion*c2) self.shortcut = nn.Sequential() if stride != 1 or c1 != self.expansion*c2: self.shortcut = nn.Sequential(nn.Conv2d(in_channels=c1, out_channels=self.expansion*c2, kernel_size=1, stride=stride, bias=False), nn.BatchNorm2d(self.expansion*c2), ) def forward(self, x): out = F.relu(self.bn1(self.conv1(x))) out = F.relu(self.bn2(self.conv2(out))) out = self.bn3(self.conv3(out)) out += self.shortcut(x) out = F.relu(out) return out class ResNetlayer(nn.Module): expansion = 4 def __init__(self, c1, c2, stride=1, is_first=False, num_blocks=1): super(ResNetlayer, self).__init__() self.blk = [] self.is_first = is_first if self.is_first: self.layer = nn.Sequential(nn.Conv2d(in_channels=c1, out_channels=c2, kernel_size=7, stride=2, padding=3, bias=False), nn.BatchNorm2d(c2), nn.ReLU(), nn.MaxPool2d(kernel_size=3, stride=2, padding=1)) else: self.blk.append(ResNetblock(c1, c2, stride)) for i in range(num_blocks - 1): self.blk.append(ResNetblock(self.expansion*c2, c2, 1)) self.layer = nn.Sequential(*self.blk) def forward(self, x): out = self.layer(x) return out class Bottleneck(nn.Module): # Standard bottleneck def __init__(self, c1, c2, shortcut=True, g=1, e=0.5): # ch_in, ch_out, shortcut, groups, expansion super(Bottleneck, self).__init__() c_ = int(c2 * e) # hidden channels self.cv1 = Conv(c1, c_, 1, 1) self.cv2 = Conv(c_, c2, 3, 1, g=g) self.add = shortcut and c1 == c2 def forward(self, x): return x + self.cv2(self.cv1(x)) if self.add else self.cv2(self.cv1(x)) class BottleneckCSP(nn.Module): # CSP Bottleneck https://github.com/WongKinYiu/CrossStagePartialNetworks def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5): # ch_in, ch_out, number, shortcut, groups, expansion super(BottleneckCSP, self).__init__() c_ = int(c2 * e) # hidden channels self.cv1 = Conv(c1, c_, 1, 1) self.cv2 = nn.Conv2d(c1, c_, 1, 1, bias=False) self.cv3 = nn.Conv2d(c_, c_, 1, 1, bias=False) self.cv4 = Conv(2 * c_, c2, 1, 1) self.bn = nn.BatchNorm2d(2 * c_) # applied to cat(cv2, cv3) self.act = nn.LeakyReLU(0.1, inplace=True) self.m = nn.Sequential(*[Bottleneck(c_, c_, shortcut, g, e=1.0) for _ in range(n)]) def forward(self, x): y1 = self.cv3(self.m(self.cv1(x))) y2 = self.cv2(x) return self.cv4(self.act(self.bn(torch.cat((y1, y2), dim=1)))) class C3(nn.Module): # CSP Bottleneck with 3 convolutions def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5): # ch_in, ch_out, number, shortcut, groups, expansion super(C3, self).__init__() c_ = int(c2 * e) # hidden channels self.cv1 = Conv(c1, c_, 1, 1) self.cv2 = Conv(c1, c_, 1, 1) self.cv3 = Conv(2 * c_, c2, 1) # act=FReLU(c2) self.m = nn.Sequential(*[Bottleneck(c_, c_, shortcut, g, e=1.0) for _ in range(n)]) def forward(self, x): return self.cv3(torch.cat((self.m(self.cv1(x)), self.cv2(x)), dim=1)) class C3TR(C3): # C3 module with TransformerBlock() def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5): super().__init__(c1, c2, n, shortcut, g, e) c_ = int(c2 * e) self.m = TransformerBlock(c_, c_, 4, n) class SPP(nn.Module): # Spatial pyramid pooling layer used in YOLOv3-SPP def __init__(self, c1, c2, k=(5, 9, 13)): super(SPP, self).__init__() c_ = c1 // 2 # hidden channels self.cv1 = Conv(c1, c_, 1, 1) self.cv2 = Conv(c_ * (len(k) + 1), c2, 1, 1) self.m = nn.ModuleList([nn.MaxPool2d(kernel_size=x, stride=1, padding=x // 2) for x in k]) def forward(self, x): x = self.cv1(x) return self.cv2(torch.cat([x] + [m(x) for m in self.m], 1)) class SPPF(nn.Module): # Spatial Pyramid Pooling - Fast (SPPF) layer for YOLOv5 by Glenn Jocher def __init__(self, c1, c2, k=5): # equivalent to SPP(k=(5, 9, 13)) super().__init__() c_ = c1 // 2 # hidden channels self.cv1 = Conv(c1, c_, 1, 1) self.cv2 = Conv(c_ * 4, c2, 1, 1) self.m = nn.MaxPool2d(kernel_size=k, stride=1, padding=k // 2) def forward(self, x): x = self.cv1(x) with warnings.catch_warnings(): warnings.simplefilter('ignore') # suppress torch 1.9.0 max_pool2d() warning y1 = self.m(x) y2 = self.m(y1) return self.cv2(torch.cat([x, y1, y2, self.m(y2)], 1)) class Focus(nn.Module): # Focus wh information into c-space def __init__(self, c1, c2, k=1, s=1, p=None, g=1, act=True): # ch_in, ch_out, kernel, stride, padding, groups super(Focus, self).__init__() # print("c1 * 4, c2, k", c1 * 4, c2, k) self.conv = Conv(c1 * 4, c2, k, s, p, g, act) # self.contract = Contract(gain=2) def forward(self, x): # x(b,c,w,h) -> y(b,4c,w/2,h/2) # print("Focus inputs shape", x.shape) # print() return self.conv(torch.cat([x[..., ::2, ::2], x[..., 1::2, ::2], x[..., ::2, 1::2], x[..., 1::2, 1::2]], 1)) # return self.conv(self.contract(x)) class Contract(nn.Module): # Contract width-height into channels, i.e. x(1,64,80,80) to x(1,256,40,40) def __init__(self, gain=2): super().__init__() self.gain = gain def forward(self, x): N, C, H, W = x.size() # assert (H / s == 0) and (W / s == 0), 'Indivisible gain' s = self.gain x = x.view(N, C, H // s, s, W // s, s) # x(1,64,40,2,40,2) x = x.permute(0, 3, 5, 1, 2, 4).contiguous() # x(1,2,2,64,40,40) return x.view(N, C * s * s, H // s, W // s) # x(1,256,40,40) class Expand(nn.Module): # Expand channels into width-height, i.e. x(1,64,80,80) to x(1,16,160,160) def __init__(self, gain=2): super().__init__() self.gain = gain def forward(self, x): N, C, H, W = x.size() # assert C / s ** 2 == 0, 'Indivisible gain' s = self.gain x = x.view(N, s, s, C // s ** 2, H, W) # x(1,2,2,16,80,80) x = x.permute(0, 3, 4, 1, 5, 2).contiguous() # x(1,16,80,2,80,2) return x.view(N, C // s ** 2, H * s, W * s) # x(1,16,160,160) class Concat(nn.Module): # Concatenate a list of tensors along dimension def __init__(self, dimension=1): super(Concat, self).__init__() self.d = dimension def forward(self, x): # print(x.shape) return torch.cat(x, self.d) class Add(nn.Module): # Add a list of tensors and averge def __init__(self, weight=0.5): super().__init__() self.w = weight def forward(self, x): return x[0] * self.w + x[1] * (1 - self.w) class Add2(nn.Module): # x + transformer[0] or x + transformer[1] def __init__(self, c1, index): super().__init__() self.index = index def forward(self, x): if self.index == 0: return torch.add(x[0], x[1][0]) elif self.index == 1: return torch.add(x[0], x[1][1]) # return torch.add(x[0], x[1]) class NiNfusion(nn.Module): def __init__(self, c1, c2, k=1, s=1, p=None, g=1): super(NiNfusion, self).__init__() self.concat = Concat(dimension=1) self.conv = nn.Conv2d(c1, c2, k, s, autopad(k, p), groups=g, bias=False) self.act = nn.SiLU() def forward(self, x): y = self.concat(x) y = self.act(self.conv(y)) return y class DMAF(nn.Module): def __init__(self, c2): super(DMAF, self).__init__() def forward(self, x): x1 = x[0] x2 = x[1] subtract_vis = x1 - x2 avgpool_vis = nn.AvgPool2d(kernel_size=(subtract_vis.size(2), subtract_vis.size(3))) weight_vis = torch.tanh(avgpool_vis(subtract_vis)) subtract_ir = x2 - x1 avgpool_ir = nn.AvgPool2d(kernel_size=(subtract_ir.size(2), subtract_ir.size(3))) weight_ir = torch.tanh(avgpool_ir(subtract_ir)) x1_weight = subtract_vis * weight_ir x2_weight = subtract_ir * weight_vis return x1_weight, x2_weight class NMS(nn.Module): # Non-Maximum Suppression (NMS) module conf = 0.25 # confidence threshold iou = 0.45 # IoU threshold classes = None # (optional list) filter by class def __init__(self): super(NMS, self).__init__() def forward(self, x): return non_max_suppression(x[0], conf_thres=self.conf, iou_thres=self.iou, classes=self.classes) class autoShape(nn.Module): # input-robust model wrapper for passing cv2/np/PIL/torch inputs. Includes preprocessing, inference and NMS conf = 0.25 # NMS confidence threshold iou = 0.45 # NMS IoU threshold classes = None # (optional list) filter by class def __init__(self, model): super(autoShape, self).__init__() self.model = model.eval() def autoshape(self): print('autoShape already enabled, skipping... ') # model already converted to model.autoshape() return self @torch.no_grad() def forward(self, imgs, size=640, augment=False, profile=False): # Inference from various sources. For height=640, width=1280, RGB images example inputs are: # filename: imgs = 'data/images/zidane.jpg' # URI: = 'https://github.com/ultralytics/yolov5/releases/download/v1.0/zidane.jpg' # OpenCV: = cv2.imread('image.jpg')[:,:,::-1] # HWC BGR to RGB x(640,1280,3) # PIL: = Image.open('image.jpg') # HWC x(640,1280,3) # numpy: = np.zeros((640,1280,3)) # HWC # torch: = torch.zeros(16,3,320,640) # BCHW (scaled to size=640, 0-1 values) # multiple: = [Image.open('image1.jpg'), Image.open('image2.jpg'), ...] # list of images t = [time_synchronized()] p = next(self.model.parameters()) # for device and type if isinstance(imgs, torch.Tensor): # torch with amp.autocast(enabled=p.device.type != 'cpu'): return self.model(imgs.to(p.device).type_as(p), augment, profile) # inference # Pre-process n, imgs = (len(imgs), imgs) if isinstance(imgs, list) else (1, [imgs]) # number of images, list of images shape0, shape1, files = [], [], [] # image and inference shapes, filenames for i, im in enumerate(imgs): f = f'image{i}' # filename if isinstance(im, str): # filename or uri im, f = np.asarray(Image.open(requests.get(im, stream=True).raw if im.startswith('http') else im)), im elif isinstance(im, Image.Image): # PIL Image im, f = np.asarray(im), getattr(im, 'filename', f) or f files.append(Path(f).with_suffix('.jpg').name) if im.shape[0] < 5: # image in CHW im = im.transpose((1, 2, 0)) # reverse dataloader .transpose(2, 0, 1) im = im[:, :, :3] if im.ndim == 3 else np.tile(im[:, :, None], 3) # enforce 3ch input s = im.shape[:2] # HWC shape0.append(s) # image shape g = (size / max(s)) # gain shape1.append([y * g for y in s]) imgs[i] = im if im.data.contiguous else np.ascontiguousarray(im) # update shape1 = [make_divisible(x, int(self.stride.max())) for x in np.stack(shape1, 0).max(0)] # inference shape x = [letterbox(im, new_shape=shape1, auto=False)[0] for im in imgs] # pad x = np.stack(x, 0) if n > 1 else x[0][None] # stack x = np.ascontiguousarray(x.transpose((0, 3, 1, 2))) # BHWC to BCHW x = torch.from_numpy(x).to(p.device).type_as(p) / 255. # uint8 to fp16/32 t.append(time_synchronized()) with amp.autocast(enabled=p.device.type != 'cpu'): # Inference y = self.model(x, augment, profile)[0] # forward t.append(time_synchronized()) # Post-process y = non_max_suppression(y, conf_thres=self.conf, iou_thres=self.iou, classes=self.classes) # NMS for i in range(n): scale_coords(shape1, y[i][:, :4], shape0[i]) t.append(time_synchronized()) return Detections(imgs, y, files, t, self.names, x.shape) class Detections: # detections class for YOLOv5 inference results def __init__(self, imgs, pred, files, times=None, names=None, shape=None): super(Detections, self).__init__() d = pred[0].device # device gn = [torch.tensor([*[im.shape[i] for i in [1, 0, 1, 0]], 1., 1.], device=d) for im in imgs] # normalizations self.imgs = imgs # list of images as numpy arrays self.pred = pred # list of tensors pred[0] = (xyxy, conf, cls) self.names = names # class names self.files = files # image filenames self.xyxy = pred # xyxy pixels self.xywh = [xyxy2xywh(x) for x in pred] # xywh pixels self.xyxyn = [x / g for x, g in zip(self.xyxy, gn)] # xyxy normalized self.xywhn = [x / g for x, g in zip(self.xywh, gn)] # xywh normalized self.n = len(self.pred) # number of images (batch size) self.t = tuple((times[i + 1] - times[i]) * 1000 / self.n for i in range(3)) # timestamps (ms) self.s = shape # inference BCHW shape def display(self, pprint=False, show=False, save=False, crop=False, render=False, save_dir=Path('')): for i, (im, pred) in enumerate(zip(self.imgs, self.pred)): str = f'image {i + 1}/{len(self.pred)}: {im.shape[0]}x{im.shape[1]} ' if pred is not None: for c in pred[:, -1].unique(): n = (pred[:, -1] == c).sum() # detections per class str += f"{n} {self.names[int(c)]}{'s' * (n > 1)}, " # add to string if show or save or render or crop: for *box, conf, cls in pred: # xyxy, confidence, class label = f'{self.names[int(cls)]} {conf:.2f}' if crop: save_one_box(box, im, file=save_dir / 'crops' / self.names[int(cls)] / self.files[i]) else: # all others plot_one_box(box, im, label=label, color=colors(cls)) im = Image.fromarray(im.astype(np.uint8)) if isinstance(im, np.ndarray) else im # from np if pprint: print(str.rstrip(', ')) if show: im.show(self.files[i]) # show if save: f = self.files[i] im.save(save_dir / f) # save print(f"{'Saved' * (i == 0)} {f}", end=',' if i < self.n - 1 else f' to {save_dir}\n') if render: self.imgs[i] = np.asarray(im) def print(self): self.display(pprint=True) # print results print(f'Speed: %.1fms pre-process, %.1fms inference, %.1fms NMS per image at shape {tuple(self.s)}' % self.t) def show(self): self.display(show=True) # show results def save(self, save_dir='runs/hub/exp'): save_dir = increment_path(save_dir, exist_ok=save_dir != 'runs/hub/exp', mkdir=True) # increment save_dir self.display(save=True, save_dir=save_dir) # save results def crop(self, save_dir='runs/hub/exp'): save_dir = increment_path(save_dir, exist_ok=save_dir != 'runs/hub/exp', mkdir=True) # increment save_dir self.display(crop=True, save_dir=save_dir) # crop results print(f'Saved results to {save_dir}\n') def render(self): self.display(render=True) # render results return self.imgs def pandas(self): # return detections as pandas DataFrames, i.e. print(results.pandas().xyxy[0]) new = copy(self) # return copy ca = 'xmin', 'ymin', 'xmax', 'ymax', 'confidence', 'class', 'name' # xyxy columns cb = 'xcenter', 'ycenter', 'width', 'height', 'confidence', 'class', 'name' # xywh columns for k, c in zip(['xyxy', 'xyxyn', 'xywh', 'xywhn'], [ca, ca, cb, cb]): a = [[x[:5] + [int(x[5]), self.names[int(x[5])]] for x in x.tolist()] for x in getattr(self, k)] # update setattr(new, k, [pd.DataFrame(x, columns=c) for x in a]) return new def tolist(self): # return a list of Detections objects, i.e. 'for result in results.tolist():' x = [Detections([self.imgs[i]], [self.pred[i]], self.names, self.s) for i in range(self.n)] for d in x: for k in ['imgs', 'pred', 'xyxy', 'xyxyn', 'xywh', 'xywhn']: setattr(d, k, getattr(d, k)[0]) # pop out of list return x def __len__(self): return self.n class Classify(nn.Module): # Classification head, i.e. x(b,c1,20,20) to x(b,c2) def __init__(self, c1, c2, k=1, s=1, p=None, g=1): # ch_in, ch_out, kernel, stride, padding, groups super(Classify, self).__init__() self.aap = nn.AdaptiveAvgPool2d(1) # to x(b,c1,1,1) self.conv = nn.Conv2d(c1, c2, k, s, autopad(k, p), groups=g) # to x(b,c2,1,1) self.flat = nn.Flatten() def forward(self, x): z = torch.cat([self.aap(y) for y in (x if isinstance(x, list) else [x])], 1) # cat if list return self.flat(self.conv(z)) # flatten to x(b,c2) class LearnableCoefficient(nn.Module): def __init__(self): super(LearnableCoefficient, self).__init__() self.bias = nn.Parameter(torch.FloatTensor([1.0]), requires_grad=True) def forward(self, x): out = x * self.bias return out class LearnableWeights(nn.Module): def __init__(self): super(LearnableWeights, self).__init__() self.w1 = nn.Parameter(torch.tensor([0.5]), requires_grad=True) self.w2 = nn.Parameter(torch.tensor([0.5]), requires_grad=True) def forward(self, x1, x2): out = x1 * self.w1 + x2 * self.w2 return out class CrossAttention(nn.Module): def __init__(self, d_model, d_k, d_v, h, attn_pdrop=.1, resid_pdrop=.1): ''' :param d_model: Output dimensionality of the model :param d_k: Dimensionality of queries and keys :param d_v: Dimensionality of values :param h: Number of heads ''' super(CrossAttention, self).__init__() assert d_k % h == 0 self.d_model = d_model self.d_k = d_model // h self.d_v = d_model // h self.h = h # key, query, value projections for all heads self.que_proj_vis = nn.Linear(d_model, h * self.d_k) # query projection self.key_proj_vis = nn.Linear(d_model, h * self.d_k) # key projection self.val_proj_vis = nn.Linear(d_model, h * self.d_v) # value projection self.que_proj_ir = nn.Linear(d_model, h * self.d_k) # query projection self.key_proj_ir = nn.Linear(d_model, h * self.d_k) # key projection self.val_proj_ir = nn.Linear(d_model, h * self.d_v) # value projection self.out_proj_vis = nn.Linear(h * self.d_v, d_model) # output projection self.out_proj_ir = nn.Linear(h * self.d_v, d_model) # output projection # regularization self.attn_drop = nn.Dropout(attn_pdrop) self.resid_drop = nn.Dropout(resid_pdrop) # layer norm self.LN1 = nn.LayerNorm(d_model) self.LN2 = nn.LayerNorm(d_model) self.init_weights() def init_weights(self): for m in self.modules(): if isinstance(m, nn.Conv2d): init.kaiming_normal_(m.weight, mode='fan_out') if m.bias is not None: init.constant_(m.bias, 0) elif isinstance(m, nn.BatchNorm2d): init.constant_(m.weight, 1) init.constant_(m.bias, 0) elif isinstance(m, nn.Linear): init.normal_(m.weight, std=0.001) if m.bias is not None: init.constant_(m.bias, 0) def forward(self, x, attention_mask=None, attention_weights=None): ''' Computes Self-Attention Args: x (tensor): input (token) dim:(b_s, nx, c), b_s means batch size nx means length, for CNN, equals H*W, i.e. the length of feature maps c means channel, i.e. the channel of feature maps attention_mask: Mask over attention values (b_s, h, nq, nk). True indicates masking. attention_weights: Multiplicative weights for attention values (b_s, h, nq, nk). Return: output (tensor): dim:(b_s, nx, c) ''' rgb_fea_flat = x[0] ir_fea_flat = x[1] b_s, nq = rgb_fea_flat.shape[:2] nk = rgb_fea_flat.shape[1] # Self-Attention rgb_fea_flat = self.LN1(rgb_fea_flat) q_vis = self.que_proj_vis(rgb_fea_flat).contiguous().view(b_s, nq, self.h, self.d_k).permute(0, 2, 1, 3) # (b_s, h, nq, d_k) k_vis = self.key_proj_vis(rgb_fea_flat).contiguous().view(b_s, nk, self.h, self.d_k).permute(0, 2, 3, 1) # (b_s, h, d_k, nk) K^T v_vis = self.val_proj_vis(rgb_fea_flat).contiguous().view(b_s, nk, self.h, self.d_v).permute(0, 2, 1, 3) # (b_s, h, nk, d_v) ir_fea_flat = self.LN2(ir_fea_flat) q_ir = self.que_proj_ir(ir_fea_flat).contiguous().view(b_s, nq, self.h, self.d_k).permute(0, 2, 1, 3) # (b_s, h, nq, d_k) k_ir = self.key_proj_ir(ir_fea_flat).contiguous().view(b_s, nk, self.h, self.d_k).permute(0, 2, 3, 1) # (b_s, h, d_k, nk) K^T v_ir = self.val_proj_ir(ir_fea_flat).contiguous().view(b_s, nk, self.h, self.d_v).permute(0, 2, 1, 3) # (b_s, h, nk, d_v) att_vis = torch.matmul(q_ir, k_vis) / np.sqrt(self.d_k) att_ir = torch.matmul(q_vis, k_ir) / np.sqrt(self.d_k) # att_vis = torch.matmul(k_vis, q_ir) / np.sqrt(self.d_k) # att_ir = torch.matmul(k_ir, q_vis) / np.sqrt(self.d_k) # get attention matrix att_vis = torch.softmax(att_vis, -1) att_vis = self.attn_drop(att_vis) att_ir = torch.softmax(att_ir, -1) att_ir = self.attn_drop(att_ir) # output out_vis = torch.matmul(att_vis, v_vis).permute(0, 2, 1, 3).contiguous().view(b_s, nq, self.h * self.d_v) # (b_s, nq, h*d_v) out_vis = self.resid_drop(self.out_proj_vis(out_vis)) # (b_s, nq, d_model) out_ir = torch.matmul(att_ir, v_ir).permute(0, 2, 1, 3).contiguous().view(b_s, nq, self.h * self.d_v) # (b_s, nq, h*d_v) out_ir = self.resid_drop(self.out_proj_ir(out_ir)) # (b_s, nq, d_model) return [out_vis, out_ir] class CrossTransformerBlock(nn.Module): def __init__(self, d_model, d_k, d_v, h, block_exp, attn_pdrop, resid_pdrop, loops_num=1): """ :param d_model: Output dimensionality of the model :param d_k: Dimensionality of queries and keys :param d_v: Dimensionality of values :param h: Number of heads :param block_exp: Expansion factor for MLP (feed foreword network) """ super(CrossTransformerBlock, self).__init__() self.loops = loops_num self.ln_input = nn.LayerNorm(d_model) self.ln_output = nn.LayerNorm(d_model) self.crossatt = CrossAttention(d_model, d_k, d_v, h, attn_pdrop, resid_pdrop) self.mlp_vis = nn.Sequential(nn.Linear(d_model, block_exp * d_model), # nn.SiLU(), # changed from GELU nn.GELU(), # changed from GELU nn.Linear(block_exp * d_model, d_model), nn.Dropout(resid_pdrop), ) self.mlp_ir = nn.Sequential(nn.Linear(d_model, block_exp * d_model), # nn.SiLU(), # changed from GELU nn.GELU(), # changed from GELU nn.Linear(block_exp * d_model, d_model), nn.Dropout(resid_pdrop), ) self.mlp = nn.Sequential(nn.Linear(d_model, block_exp * d_model), # nn.SiLU(), # changed from GELU nn.GELU(), # changed from GELU nn.Linear(block_exp * d_model, d_model), nn.Dropout(resid_pdrop), ) # Layer norm self.LN1 = nn.LayerNorm(d_model) self.LN2 = nn.LayerNorm(d_model) # Learnable Coefficient self.coefficient1 = LearnableCoefficient() self.coefficient2 = LearnableCoefficient() self.coefficient3 = LearnableCoefficient() self.coefficient4 = LearnableCoefficient() self.coefficient5 = LearnableCoefficient() self.coefficient6 = LearnableCoefficient() self.coefficient7 = LearnableCoefficient() self.coefficient8 = LearnableCoefficient() def forward(self, x): rgb_fea_flat = x[0] ir_fea_flat = x[1] assert rgb_fea_flat.shape[0] == ir_fea_flat.shape[0] bs, nx, c = rgb_fea_flat.size() h = w = int(math.sqrt(nx)) for loop in range(self.loops): # with Learnable Coefficient rgb_fea_out, ir_fea_out = self.crossatt([rgb_fea_flat, ir_fea_flat]) rgb_att_out = self.coefficient1(rgb_fea_flat) + self.coefficient2(rgb_fea_out) ir_att_out = self.coefficient3(ir_fea_flat) + self.coefficient4(ir_fea_out) rgb_fea_flat = self.coefficient5(rgb_att_out) + self.coefficient6(self.mlp_vis(self.LN2(rgb_att_out))) ir_fea_flat = self.coefficient7(ir_att_out) + self.coefficient8(self.mlp_ir(self.LN2(ir_att_out))) # without Learnable Coefficient # rgb_fea_out, ir_fea_out = self.crossatt([rgb_fea_flat, ir_fea_flat]) # rgb_att_out = rgb_fea_flat + rgb_fea_out # ir_att_out = ir_fea_flat + ir_fea_out # rgb_fea_flat = rgb_att_out + self.mlp_vis(self.LN2(rgb_att_out)) # ir_fea_flat = ir_att_out + self.mlp_ir(self.LN2(ir_att_out)) return [rgb_fea_flat, ir_fea_flat] class TransformerFusionBlock(nn.Module): def __init__(self, d_model, vert_anchors=16, horz_anchors=16, h=8, block_exp=4, n_layer=1, embd_pdrop=0.1, attn_pdrop=0.1, resid_pdrop=0.1): super(TransformerFusionBlock, self).__init__() self.n_embd = d_model self.vert_anchors = vert_anchors self.horz_anchors = horz_anchors d_k = d_model d_v = d_model # positional embedding parameter (learnable), rgb_fea + ir_fea self.pos_emb_vis = nn.Parameter(torch.zeros(1, vert_anchors * horz_anchors, self.n_embd)) self.pos_emb_ir = nn.Parameter(torch.zeros(1, vert_anchors * horz_anchors, self.n_embd)) # downsampling # self.avgpool = nn.AdaptiveAvgPool2d((self.vert_anchors, self.horz_anchors)) # self.maxpool = nn.AdaptiveMaxPool2d((self.vert_anchors, self.horz_anchors)) self.avgpool = AdaptivePool2d(self.vert_anchors, self.horz_anchors, 'avg') self.maxpool = AdaptivePool2d(self.vert_anchors, self.horz_anchors, 'max') # LearnableCoefficient self.vis_coefficient = LearnableWeights() self.ir_coefficient = LearnableWeights() # init weights self.apply(self._init_weights) # cross transformer self.crosstransformer = nn.Sequential(*[CrossTransformerBlock(d_model, d_k, d_v, h, block_exp, attn_pdrop, resid_pdrop) for layer in range(n_layer)]) # Concat self.concat = Concat(dimension=1) # conv1x1 self.conv1x1_out = Conv(c1=d_model * 2, c2=d_model, k=1, s=1, p=0, g=1, act=True) @staticmethod def _init_weights(module): if isinstance(module, nn.Linear): module.weight.data.normal_(mean=0.0, std=0.02) if module.bias is not None: module.bias.data.zero_() elif isinstance(module, nn.LayerNorm): module.bias.data.zero_() module.weight.data.fill_(1.0) def forward(self, x): rgb_fea = x[0] ir_fea = x[1] assert rgb_fea.shape[0] == ir_fea.shape[0] bs, c, h, w = rgb_fea.shape # ------------------------- cross-modal feature fusion -----------------------# #new_rgb_fea = (self.avgpool(rgb_fea) + self.maxpool(rgb_fea)) / 2 new_rgb_fea = self.vis_coefficient(self.avgpool(rgb_fea), self.maxpool(rgb_fea)) new_c, new_h, new_w = new_rgb_fea.shape[1], new_rgb_fea.shape[2], new_rgb_fea.shape[3] rgb_fea_flat = new_rgb_fea.contiguous().view(bs, new_c, -1).permute(0, 2, 1) + self.pos_emb_vis #new_ir_fea = (self.avgpool(ir_fea) + self.maxpool(ir_fea)) / 2 new_ir_fea = self.ir_coefficient(self.avgpool(ir_fea), self.maxpool(ir_fea)) ir_fea_flat = new_ir_fea.contiguous().view(bs, new_c, -1).permute(0, 2, 1) + self.pos_emb_ir rgb_fea_flat, ir_fea_flat = self.crosstransformer([rgb_fea_flat, ir_fea_flat]) rgb_fea_CFE = rgb_fea_flat.contiguous().view(bs, new_h, new_w, new_c).permute(0, 3, 1, 2) if self.training == True: rgb_fea_CFE = F.interpolate(rgb_fea_CFE, size=([h, w]), mode='nearest') else: rgb_fea_CFE = F.interpolate(rgb_fea_CFE, size=([h, w]), mode='bilinear') new_rgb_fea = rgb_fea_CFE + rgb_fea ir_fea_CFE = ir_fea_flat.contiguous().view(bs, new_h, new_w, new_c).permute(0, 3, 1, 2) if self.training == True: ir_fea_CFE = F.interpolate(ir_fea_CFE, size=([h, w]), mode='nearest') else: ir_fea_CFE = F.interpolate(ir_fea_CFE, size=([h, w]), mode='bilinear') new_ir_fea = ir_fea_CFE + ir_fea new_fea = self.concat([new_rgb_fea, new_ir_fea]) new_fea = self.conv1x1_out(new_fea) # ------------------------- feature visulization -----------------------# # save_dir = '/home/shen/Chenyf/FLIR-align-3class/feature_save/' # fea_rgb = torch.mean(rgb_fea, dim=1) # fea_rgb_CFE = torch.mean(rgb_fea_CFE, dim=1) # fea_rgb_new = torch.mean(new_rgb_fea, dim=1) # fea_ir = torch.mean(ir_fea, dim=1) # fea_ir_CFE = torch.mean(ir_fea_CFE, dim=1) # fea_ir_new = torch.mean(new_ir_fea, dim=1) # fea_new = torch.mean(new_fea, dim=1) # block = [fea_rgb, fea_rgb_CFE, fea_rgb_new, fea_ir, fea_ir_CFE, fea_ir_new, fea_new] # black_name = ['fea_rgb', 'fea_rgb After CFE', 'fea_rgb skip', 'fea_ir', 'fea_ir After CFE', 'fea_ir skip', 'fea_ir NiNfusion'] # plt.figure() # for i in range(len(block)): # feature = transforms.ToPILImage()(block[i].squeeze()) # ax = plt.subplot(3, 3, i + 1) # ax.set_xticks([]) # ax.set_yticks([]) # ax.set_title(black_name[i], fontsize=8) # plt.imshow(feature) # plt.savefig(save_dir + 'fea_{}x{}.png'.format(h, w), dpi=300) # -----------------------------------------------------------------------------# return new_fea class AdaptivePool2d(nn.Module): def __init__(self, output_h, output_w, pool_type='avg'): super(AdaptivePool2d, self).__init__() self.output_h = output_h self.output_w = output_w self.pool_type = pool_type def forward(self, x): bs, c, input_h, input_w = x.shape if (input_h > self.output_h) or (input_w > self.output_w): self.stride_h = input_h // self.output_h self.stride_w = input_w // self.output_w self.kernel_size = (input_h - (self.output_h - 1) * self.stride_h, input_w - (self.output_w - 1) * self.stride_w) if self.pool_type == 'avg': y = nn.AvgPool2d(kernel_size=self.kernel_size, stride=(self.stride_h, self.stride_w), padding=0)(x) else: y = nn.MaxPool2d(kernel_size=self.kernel_size, stride=(self.stride_h, self.stride_w), padding=0)(x) else: y = x return y class SE_Block(nn.Module): def __init__(self, inchannel, ratio=16): super(SE_Block, self).__init__() self.gap = nn.AdaptiveAvgPool2d((1, 1)) self.fc = nn.Sequential( nn.Linear(inchannel, inchannel // ratio, bias=False), # 从 c -> c/r nn.ReLU(), nn.Linear(inchannel // ratio, inchannel, bias=False), # 从 c/r -> c nn.Sigmoid() ) def forward(self, x): b, c, h, w = x.size() y = self.gap(x).view(b, c) y = self.fc(y).view(b, c, 1, 1) return x * y.expand_as(x) # 通道注意力模块 class Channel_Attention(nn.Module): def __init__(self, in_channels, reduction_ratio=16, pool_types=['avg', 'max']): ''' :param in_channels: 输入通道数 :param reduction_ratio: 输出通道数量的缩放系数 :param pool_types: 池化类型 ''' super(Channel_Attention, self).__init__() self.pool_types = pool_types self.in_channels = in_channels self.shared_mlp = nn.Sequential(nn.Flatten(), nn.Linear(in_features=in_channels, out_features=in_channels//reduction_ratio), nn.ReLU(), nn.Linear(in_features=in_channels//reduction_ratio, out_features=in_channels) ) def forward(self, x): channel_attentions = [] for pool_types in self.pool_types: if pool_types == 'avg': pool_init = nn.AvgPool2d(kernel_size=(x.size(2), x.size(3))) avg_pool = pool_init(x) channel_attentions.append(self.shared_mlp(avg_pool)) elif pool_types == 'max': pool_init = nn.MaxPool2d(kernel_size=(x.size(2), x.size(3))) max_pool = pool_init(x) channel_attentions.append(self.shared_mlp(max_pool)) pooling_sums = torch.stack(channel_attentions, dim=0).sum(dim=0) output = nn.Sigmoid()(pooling_sums).unsqueeze(2).unsqueeze(3).expand_as(x) return x * output # 空间注意力模块 class Spatial_Attention(nn.Module): def __init__(self, kernel_size=7): super(Spatial_Attention, self).__init__() self.spatial_attention = nn.Sequential(nn.Conv2d(in_channels=2, out_channels=1, kernel_size=kernel_size, stride=1, dilation=1, padding=(kernel_size-1)//2, bias=False), nn.BatchNorm2d(num_features=1, eps=1e-5, momentum=0.01, affine=True) ) def forward(self, x): x_compress = torch.cat((torch.max(x, 1)[0].unsqueeze(1), torch.mean(x, 1).unsqueeze(1)), dim=1) # 在通道维度上分别计算平均值和最大值,并在通道维度上进行拼接 x_output = self.spatial_attention(x_compress) # 使用7x7卷积核进行卷积 scaled = nn.Sigmoid()(x_output) return x * scaled # 将输入F'和通道注意力模块的输出Ms相乘,得到F'' class CBAM(nn.Module): def __init__(self, in_channels, reduction_ratio=16, pool_types=['avg', 'max'], spatial=True): super(CBAM, self).__init__() self.spatial = spatial self.channel_attention = Channel_Attention(in_channels=in_channels, reduction_ratio=reduction_ratio, pool_types=pool_types) if self.spatial: self.spatial_attention = Spatial_Attention(kernel_size=7) def forward(self, x): x_out = self.channel_attention(x) if self.spatial: x_out = self.spatial_attention(x_out) return x_out ================================================ FILE: models/experimental.py ================================================ # YOLOv5 experimental modules import numpy as np import torch import torch.nn as nn from models.common import Conv, DWConv from utils.google_utils import attempt_download class CrossConv(nn.Module): # Cross Convolution Downsample def __init__(self, c1, c2, k=3, s=1, g=1, e=1.0, shortcut=False): # ch_in, ch_out, kernel, stride, groups, expansion, shortcut super(CrossConv, self).__init__() c_ = int(c2 * e) # hidden channels self.cv1 = Conv(c1, c_, (1, k), (1, s)) self.cv2 = Conv(c_, c2, (k, 1), (s, 1), g=g) self.add = shortcut and c1 == c2 def forward(self, x): return x + self.cv2(self.cv1(x)) if self.add else self.cv2(self.cv1(x)) class Sum(nn.Module): # Weighted sum of 2 or more layers https://arxiv.org/abs/1911.09070 def __init__(self, n, weight=False): # n: number of inputs super(Sum, self).__init__() self.weight = weight # apply weights boolean self.iter = range(n - 1) # iter object if weight: self.w = nn.Parameter(-torch.arange(1., n) / 2, requires_grad=True) # layer weights def forward(self, x): y = x[0] # no weight if self.weight: w = torch.sigmoid(self.w) * 2 for i in self.iter: y = y + x[i + 1] * w[i] else: for i in self.iter: y = y + x[i + 1] return y class GhostConv(nn.Module): # Ghost Convolution https://github.com/huawei-noah/ghostnet def __init__(self, c1, c2, k=1, s=1, g=1, act=True): # ch_in, ch_out, kernel, stride, groups super(GhostConv, self).__init__() c_ = c2 // 2 # hidden channels self.cv1 = Conv(c1, c_, k, s, None, g, act) self.cv2 = Conv(c_, c_, 5, 1, None, c_, act) def forward(self, x): y = self.cv1(x) return torch.cat([y, self.cv2(y)], 1) class GhostBottleneck(nn.Module): # Ghost Bottleneck https://github.com/huawei-noah/ghostnet def __init__(self, c1, c2, k=3, s=1): # ch_in, ch_out, kernel, stride super(GhostBottleneck, self).__init__() c_ = c2 // 2 self.conv = nn.Sequential(GhostConv(c1, c_, 1, 1), # pw DWConv(c_, c_, k, s, act=False) if s == 2 else nn.Identity(), # dw GhostConv(c_, c2, 1, 1, act=False)) # pw-linear self.shortcut = nn.Sequential(DWConv(c1, c1, k, s, act=False), Conv(c1, c2, 1, 1, act=False)) if s == 2 else nn.Identity() def forward(self, x): return self.conv(x) + self.shortcut(x) class MixConv2d(nn.Module): # Mixed Depthwise Conv https://arxiv.org/abs/1907.09595 def __init__(self, c1, c2, k=(1, 3), s=1, equal_ch=True): super(MixConv2d, self).__init__() groups = len(k) if equal_ch: # equal c_ per group i = torch.linspace(0, groups - 1E-6, c2).floor() # c2 indices c_ = [(i == g).sum() for g in range(groups)] # intermediate channels else: # equal weight.numel() per group b = [c2] + [0] * groups a = np.eye(groups + 1, groups, k=-1) a -= np.roll(a, 1, axis=1) a *= np.array(k) ** 2 a[0] = 1 c_ = np.linalg.lstsq(a, b, rcond=None)[0].round() # solve for equal weight indices, ax = b self.m = nn.ModuleList([nn.Conv2d(c1, int(c_[g]), k[g], s, k[g] // 2, bias=False) for g in range(groups)]) self.bn = nn.BatchNorm2d(c2) self.act = nn.LeakyReLU(0.1, inplace=True) def forward(self, x): return x + self.act(self.bn(torch.cat([m(x) for m in self.m], 1))) class Ensemble(nn.ModuleList): # Ensemble of models def __init__(self): super(Ensemble, self).__init__() def forward(self, x, augment=False): y = [] for module in self: y.append(module(x, augment)[0]) # y = torch.stack(y).max(0)[0] # max ensemble # y = torch.stack(y).mean(0) # mean ensemble y = torch.cat(y, 1) # nms ensemble return y, None # inference, train output def attempt_load(weights, map_location=None): # Loads an ensemble of models weights=[a,b,c] or a single model weights=[a] or weights=a model = Ensemble() for w in weights if isinstance(weights, list) else [weights]: attempt_download(w) ckpt = torch.load(w, map_location=map_location) # load model.append(ckpt['ema' if ckpt.get('ema') else 'model'].float().fuse().eval()) # FP32 model # Compatibility updates for m in model.modules(): if type(m) in [nn.Hardswish, nn.LeakyReLU, nn.ReLU, nn.ReLU6, nn.SiLU]: m.inplace = True # pytorch 1.7.0 compatibility elif type(m) is Conv: m._non_persistent_buffers_set = set() # pytorch 1.6.0 compatibility if len(model) == 1: return model[-1] # return model else: print('Ensemble created with %s\n' % weights) for k in ['names', 'stride']: setattr(model, k, getattr(model[-1], k)) return model # return ensemble ================================================ FILE: models/export.py ================================================ """Exports a YOLOv5 *.pt model to ONNX and TorchScript formats Usage: $ export PYTHONPATH="$PWD" && python models/export.py --weights yolov5s.pt --img 640 --batch 1 """ import argparse import sys import time from pathlib import Path sys.path.append(Path(__file__).parent.parent.absolute().__str__()) # to run '$ python *.py' files in subdirectories import torch import torch.nn as nn from torch.utils.mobile_optimizer import optimize_for_mobile import models from models.experimental import attempt_load from utils.activations import Hardswish, SiLU from utils.general import colorstr, check_img_size, check_requirements, file_size, set_logging from utils.torch_utils import select_device if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--weights', type=str, default='./yolov5s.pt', help='weights path') parser.add_argument('--img-size', nargs='+', type=int, default=[640, 640], help='image size') # height, width parser.add_argument('--batch-size', type=int, default=1, help='batch size') parser.add_argument('--grid', action='store_true', help='export Detect() layer grid') parser.add_argument('--device', default='cpu', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') parser.add_argument('--dynamic', action='store_true', help='dynamic ONNX axes') # ONNX-only parser.add_argument('--simplify', action='store_true', help='simplify ONNX model') # ONNX-only opt = parser.parse_args() opt.img_size *= 2 if len(opt.img_size) == 1 else 1 # expand print(opt) set_logging() t = time.time() # Load PyTorch model device = select_device(opt.device) model = attempt_load(opt.weights, map_location=device) # load FP32 model labels = model.names # Checks gs = int(max(model.stride)) # grid size (max stride) opt.img_size = [check_img_size(x, gs) for x in opt.img_size] # verify img_size are gs-multiples # Input img = torch.zeros(opt.batch_size, 3, *opt.img_size).to(device) # image size(1,3,320,192) iDetection # Update model for k, m in model.named_modules(): m._non_persistent_buffers_set = set() # pytorch 1.6.0 compatibility if isinstance(m, models.common.Conv): # assign export-friendly activations if isinstance(m.act, nn.Hardswish): m.act = Hardswish() elif isinstance(m.act, nn.SiLU): m.act = SiLU() # elif isinstance(m, models.yolo.Detect): # m.forward = m.forward_export # assign forward (optional) model.model[-1].export = not opt.grid # set Detect() layer grid export for _ in range(2): y = model(img) # dry runs print(f"\n{colorstr('PyTorch:')} starting from {opt.weights} ({file_size(opt.weights):.1f} MB)") # TorchScript export ----------------------------------------------------------------------------------------------- prefix = colorstr('TorchScript:') try: print(f'\n{prefix} starting export with torch {torch.__version__}...') f = opt.weights.replace('.pt', '.torchscript.pt') # filename ts = torch.jit.trace(model, img, strict=False) ts = optimize_for_mobile(ts) # https://pytorch.org/tutorials/recipes/script_optimized.html ts.save(f) print(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)') except Exception as e: print(f'{prefix} export failure: {e}') # ONNX export ------------------------------------------------------------------------------------------------------ prefix = colorstr('ONNX:') try: import onnx print(f'{prefix} starting export with onnx {onnx.__version__}...') f = opt.weights.replace('.pt', '.onnx') # filename torch.onnx.export(model, img, f, verbose=False, opset_version=12, input_names=['images'], dynamic_axes={'images': {0: 'batch', 2: 'height', 3: 'width'}, # size(1,3,640,640) 'output': {0: 'batch', 2: 'y', 3: 'x'}} if opt.dynamic else None) # Checks model_onnx = onnx.load(f) # load onnx model onnx.checker.check_model(model_onnx) # check onnx model # print(onnx.helper.printable_graph(model_onnx.graph)) # print # Simplify if opt.simplify: try: check_requirements(['onnx-simplifier']) import onnxsim print(f'{prefix} simplifying with onnx-simplifier {onnxsim.__version__}...') model_onnx, check = onnxsim.simplify(model_onnx, dynamic_input_shape=opt.dynamic, input_shapes={'images': list(img.shape)} if opt.dynamic else None) assert check, 'assert check failed' onnx.save(model_onnx, f) except Exception as e: print(f'{prefix} simplifier failure: {e}') print(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)') except Exception as e: print(f'{prefix} export failure: {e}') # CoreML export ---------------------------------------------------------------------------------------------------- prefix = colorstr('CoreML:') try: import coremltools as ct print(f'{prefix} starting export with coremltools {ct.__version__}...') # convert model from torchscript and apply pixel scaling as per detect.py model = ct.convert(ts, inputs=[ct.ImageType(name='image', shape=img.shape, scale=1 / 255.0, bias=[0, 0, 0])]) f = opt.weights.replace('.pt', '.mlmodel') # filename model.save(f) print(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)') except Exception as e: print(f'{prefix} export failure: {e}') # Finish print(f'\nExport complete ({time.time() - t:.2f}s). Visualize with https://github.com/lutzroeder/netron.') ================================================ FILE: models/gradcam.py ================================================ import time import torch import torch.nn.functional as F def find_yolo_layer(model, layer_name): """Find yolov5 layer to calculate GradCAM and GradCAM++ Args: model: yolov5 model. layer_name (str): the name of layer with its hierarchical information. Return: target_layer: found layer """ hierarchy = layer_name.split('_') target_layer = model.model._modules[hierarchy[0]] for h in hierarchy[1:]: target_layer = target_layer._modules[h] return target_layer class YOLOV5GradCAM: def __init__(self, model, layer_name, img_size=(640, 640)): self.model = model self.gradients = dict() self.activations = dict() def backward_hook(module, grad_input, grad_output): self.gradients['value'] = grad_output[0] return None def forward_hook(module, input, output): self.activations['value'] = output return None target_layer = find_yolo_layer(self.model, layer_name) target_layer.register_forward_hook(forward_hook) target_layer.register_backward_hook(backward_hook) device = 'cuda' if next(self.model.model.parameters()).is_cuda else 'cpu' self.model(torch.zeros(1, 3, *img_size, device=device), torch.zeros(1, 3, *img_size, device=device)) print('[INFO] saliency_map size :', self.activations['value'].shape[2:]) def forward(self, img_vis, img_ir, class_idx=True): """ Args: input_img: input image with shape of (1, 3, H, W) Return: mask: saliency map of the same spatial dimension with input logit: model output preds: The object predictions """ saliency_maps = [] b, c, h, w = img_vis.size() tic = time.time() preds, logits = self.model(img_vis, img_ir) print("[INFO] model-forward took: ", round(time.time() - tic, 4), 'seconds') for logit, cls, cls_name, conf in zip(logits[0], preds[1][0], preds[2][0], preds[3][0]): if class_idx: score = logit[cls] else: score = logit.max() self.model.zero_grad() tic = time.time() score.backward(retain_graph=True) print(f"[INFO] {cls_name}, model-backward took: ", round(time.time() - tic, 4), 'seconds') gradients = self.gradients['value'] activations = self.activations['value'] b, k, u, v = gradients.size() alpha = gradients.view(b, k, -1).mean(2) weights = alpha.view(b, k, 1, 1) saliency_map = (weights * activations).sum(1, keepdim=True) saliency_map = F.relu(saliency_map) saliency_map = F.interpolate(input=saliency_map, size=(h, w), mode='bilinear', align_corners=False) saliency_map_min, saliency_map_max = saliency_map.min(), saliency_map.max() saliency_map = (saliency_map - saliency_map_min).div(saliency_map_max - saliency_map_min).data saliency_maps.append(saliency_map) return saliency_maps, logits, preds def __call__(self, img_vis, img_ir): return self.forward(img_vis, img_ir) ================================================ FILE: models/hub/anchors.yaml ================================================ # Default YOLOv5 anchors for COCO data # P5 ------------------------------------------------------------------------------------------------------------------- # P5-640: anchors_p5_640: - [ 10,13, 16,30, 33,23 ] # P3/8 - [ 30,61, 62,45, 59,119 ] # P4/16 - [ 116,90, 156,198, 373,326 ] # P5/32 # P6 ------------------------------------------------------------------------------------------------------------------- # P6-640: thr=0.25: 0.9964 BPR, 5.54 anchors past thr, n=12, img_size=640, metric_all=0.281/0.716-mean/best, past_thr=0.469-mean: 9,11, 21,19, 17,41, 43,32, 39,70, 86,64, 65,131, 134,130, 120,265, 282,180, 247,354, 512,387 anchors_p6_640: - [ 9,11, 21,19, 17,41 ] # P3/8 - [ 43,32, 39,70, 86,64 ] # P4/16 - [ 65,131, 134,130, 120,265 ] # P5/32 - [ 282,180, 247,354, 512,387 ] # P6/64 # P6-1280: thr=0.25: 0.9950 BPR, 5.55 anchors past thr, n=12, img_size=1280, metric_all=0.281/0.714-mean/best, past_thr=0.468-mean: 19,27, 44,40, 38,94, 96,68, 86,152, 180,137, 140,301, 303,264, 238,542, 436,615, 739,380, 925,792 anchors_p6_1280: - [ 19,27, 44,40, 38,94 ] # P3/8 - [ 96,68, 86,152, 180,137 ] # P4/16 - [ 140,301, 303,264, 238,542 ] # P5/32 - [ 436,615, 739,380, 925,792 ] # P6/64 # P6-1920: thr=0.25: 0.9950 BPR, 5.55 anchors past thr, n=12, img_size=1920, metric_all=0.281/0.714-mean/best, past_thr=0.468-mean: 28,41, 67,59, 57,141, 144,103, 129,227, 270,205, 209,452, 455,396, 358,812, 653,922, 1109,570, 1387,1187 anchors_p6_1920: - [ 28,41, 67,59, 57,141 ] # P3/8 - [ 144,103, 129,227, 270,205 ] # P4/16 - [ 209,452, 455,396, 358,812 ] # P5/32 - [ 653,922, 1109,570, 1387,1187 ] # P6/64 # P7 ------------------------------------------------------------------------------------------------------------------- # P7-640: thr=0.25: 0.9962 BPR, 6.76 anchors past thr, n=15, img_size=640, metric_all=0.275/0.733-mean/best, past_thr=0.466-mean: 11,11, 13,30, 29,20, 30,46, 61,38, 39,92, 78,80, 146,66, 79,163, 149,150, 321,143, 157,303, 257,402, 359,290, 524,372 anchors_p7_640: - [ 11,11, 13,30, 29,20 ] # P3/8 - [ 30,46, 61,38, 39,92 ] # P4/16 - [ 78,80, 146,66, 79,163 ] # P5/32 - [ 149,150, 321,143, 157,303 ] # P6/64 - [ 257,402, 359,290, 524,372 ] # P7/128 # P7-1280: thr=0.25: 0.9968 BPR, 6.71 anchors past thr, n=15, img_size=1280, metric_all=0.273/0.732-mean/best, past_thr=0.463-mean: 19,22, 54,36, 32,77, 70,83, 138,71, 75,173, 165,159, 148,334, 375,151, 334,317, 251,626, 499,474, 750,326, 534,814, 1079,818 anchors_p7_1280: - [ 19,22, 54,36, 32,77 ] # P3/8 - [ 70,83, 138,71, 75,173 ] # P4/16 - [ 165,159, 148,334, 375,151 ] # P5/32 - [ 334,317, 251,626, 499,474 ] # P6/64 - [ 750,326, 534,814, 1079,818 ] # P7/128 # P7-1920: thr=0.25: 0.9968 BPR, 6.71 anchors past thr, n=15, img_size=1920, metric_all=0.273/0.732-mean/best, past_thr=0.463-mean: 29,34, 81,55, 47,115, 105,124, 207,107, 113,259, 247,238, 222,500, 563,227, 501,476, 376,939, 749,711, 1126,489, 801,1222, 1618,1227 anchors_p7_1920: - [ 29,34, 81,55, 47,115 ] # P3/8 - [ 105,124, 207,107, 113,259 ] # P4/16 - [ 247,238, 222,500, 563,227 ] # P5/32 - [ 501,476, 376,939, 749,711 ] # P6/64 - [ 1126,489, 801,1222, 1618,1227 ] # P7/128 ================================================ FILE: models/hub/yolov3-spp.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # darknet53 backbone backbone: # [from, number, module, args] [[-1, 1, Conv, [32, 3, 1]], # 0 [-1, 1, Conv, [64, 3, 2]], # 1-P1/2 [-1, 1, Bottleneck, [64]], [-1, 1, Conv, [128, 3, 2]], # 3-P2/4 [-1, 2, Bottleneck, [128]], [-1, 1, Conv, [256, 3, 2]], # 5-P3/8 [-1, 8, Bottleneck, [256]], [-1, 1, Conv, [512, 3, 2]], # 7-P4/16 [-1, 8, Bottleneck, [512]], [-1, 1, Conv, [1024, 3, 2]], # 9-P5/32 [-1, 4, Bottleneck, [1024]], # 10 ] # YOLOv3-SPP head head: [[-1, 1, Bottleneck, [1024, False]], [-1, 1, SPP, [512, [5, 9, 13]]], [-1, 1, Conv, [1024, 3, 1]], [-1, 1, Conv, [512, 1, 1]], [-1, 1, Conv, [1024, 3, 1]], # 15 (P5/32-large) [-2, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 8], 1, Concat, [1]], # cat backbone P4 [-1, 1, Bottleneck, [512, False]], [-1, 1, Bottleneck, [512, False]], [-1, 1, Conv, [256, 1, 1]], [-1, 1, Conv, [512, 3, 1]], # 22 (P4/16-medium) [-2, 1, Conv, [128, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P3 [-1, 1, Bottleneck, [256, False]], [-1, 2, Bottleneck, [256, False]], # 27 (P3/8-small) [[27, 22, 15], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov3-tiny.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,14, 23,27, 37,58] # P4/16 - [81,82, 135,169, 344,319] # P5/32 # YOLOv3-tiny backbone backbone: # [from, number, module, args] [[-1, 1, Conv, [16, 3, 1]], # 0 [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 1-P1/2 [-1, 1, Conv, [32, 3, 1]], [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 3-P2/4 [-1, 1, Conv, [64, 3, 1]], [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 5-P3/8 [-1, 1, Conv, [128, 3, 1]], [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 7-P4/16 [-1, 1, Conv, [256, 3, 1]], [-1, 1, nn.MaxPool2d, [2, 2, 0]], # 9-P5/32 [-1, 1, Conv, [512, 3, 1]], [-1, 1, nn.ZeroPad2d, [[0, 1, 0, 1]]], # 11 [-1, 1, nn.MaxPool2d, [2, 1, 0]], # 12 ] # YOLOv3-tiny head head: [[-1, 1, Conv, [1024, 3, 1]], [-1, 1, Conv, [256, 1, 1]], [-1, 1, Conv, [512, 3, 1]], # 15 (P5/32-large) [-2, 1, Conv, [128, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 8], 1, Concat, [1]], # cat backbone P4 [-1, 1, Conv, [256, 3, 1]], # 19 (P4/16-medium) [[19, 15], 1, Detect, [nc, anchors]], # Detect(P4, P5) ] ================================================ FILE: models/hub/yolov3.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # darknet53 backbone backbone: # [from, number, module, args] [[-1, 1, Conv, [32, 3, 1]], # 0 [-1, 1, Conv, [64, 3, 2]], # 1-P1/2 [-1, 1, Bottleneck, [64]], [-1, 1, Conv, [128, 3, 2]], # 3-P2/4 [-1, 2, Bottleneck, [128]], [-1, 1, Conv, [256, 3, 2]], # 5-P3/8 [-1, 8, Bottleneck, [256]], [-1, 1, Conv, [512, 3, 2]], # 7-P4/16 [-1, 8, Bottleneck, [512]], [-1, 1, Conv, [1024, 3, 2]], # 9-P5/32 [-1, 4, Bottleneck, [1024]], # 10 ] # YOLOv3 head head: [[-1, 1, Bottleneck, [1024, False]], [-1, 1, Conv, [512, [1, 1]]], [-1, 1, Conv, [1024, 3, 1]], [-1, 1, Conv, [512, 1, 1]], [-1, 1, Conv, [1024, 3, 1]], # 15 (P5/32-large) [-2, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 8], 1, Concat, [1]], # cat backbone P4 [-1, 1, Bottleneck, [512, False]], [-1, 1, Bottleneck, [512, False]], [-1, 1, Conv, [256, 1, 1]], [-1, 1, Conv, [512, 3, 1]], # 22 (P4/16-medium) [-2, 1, Conv, [128, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P3 [-1, 1, Bottleneck, [256, False]], [-1, 2, Bottleneck, [256, False]], # 27 (P3/8-small) [[27, 22, 15], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov5-fpn.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, Bottleneck, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, BottleneckCSP, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, BottleneckCSP, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 6, BottleneckCSP, [1024]], # 9 ] # YOLOv5 FPN head head: [[-1, 3, BottleneckCSP, [1024, False]], # 10 (P5/32-large) [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 1, Conv, [512, 1, 1]], [-1, 3, BottleneckCSP, [512, False]], # 14 (P4/16-medium) [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 1, Conv, [256, 1, 1]], [-1, 3, BottleneckCSP, [256, False]], # 18 (P3/8-small) [[18, 14, 10], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov5-p2.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: 3 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 7-P5/32 [ -1, 1, SPP, [ 1024, [ 5, 9, 13 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 9 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 13 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 17 (P3/8-small) [ -1, 1, Conv, [ 128, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 2 ], 1, Concat, [ 1 ] ], # cat backbone P2 [ -1, 1, C3, [ 128, False ] ], # 21 (P2/4-xsmall) [ -1, 1, Conv, [ 128, 3, 2 ] ], [ [ -1, 18 ], 1, Concat, [ 1 ] ], # cat head P3 [ -1, 3, C3, [ 256, False ] ], # 24 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 14 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 27 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 10 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 1024, False ] ], # 30 (P5/32-large) [ [ 24, 27, 30 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov5-p6.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: 3 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 1, SPP, [ 1024, [ 3, 5, 7 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 11 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 15 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 19 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 23 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 20 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 26 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 16 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 29 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 12 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 32 (P5/64-xlarge) [ [ 23, 26, 29, 32 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6) ] ================================================ FILE: models/hub/yolov5-p7.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: 3 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 3, C3, [ 1024 ] ], [ -1, 1, Conv, [ 1280, 3, 2 ] ], # 11-P7/128 [ -1, 1, SPP, [ 1280, [ 3, 5 ] ] ], [ -1, 3, C3, [ 1280, False ] ], # 13 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 1024, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 10 ], 1, Concat, [ 1 ] ], # cat backbone P6 [ -1, 3, C3, [ 1024, False ] ], # 17 [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 21 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 25 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 29 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 26 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 32 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 22 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 35 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 18 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 38 (P6/64-xlarge) [ -1, 1, Conv, [ 1024, 3, 2 ] ], [ [ -1, 14 ], 1, Concat, [ 1 ] ], # cat head P7 [ -1, 3, C3, [ 1280, False ] ], # 41 (P7/128-xxlarge) [ [ 29, 32, 35, 38, 41 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6, P7) ] ================================================ FILE: models/hub/yolov5-panet.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, BottleneckCSP, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, BottleneckCSP, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, BottleneckCSP, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, BottleneckCSP, [1024, False]], # 9 ] # YOLOv5 PANet head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, BottleneckCSP, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, BottleneckCSP, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, BottleneckCSP, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, BottleneckCSP, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov5l6.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [ 19,27, 44,40, 38,94 ] # P3/8 - [ 96,68, 86,152, 180,137 ] # P4/16 - [ 140,301, 303,264, 238,542 ] # P5/32 - [ 436,615, 739,380, 925,792 ] # P6/64 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 1, SPP, [ 1024, [ 3, 5, 7 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 11 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 15 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 19 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 23 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 20 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 26 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 16 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 29 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 12 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 32 (P6/64-xlarge) [ [ 23, 26, 29, 32 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6) ] ================================================ FILE: models/hub/yolov5m6.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [ 19,27, 44,40, 38,94 ] # P3/8 - [ 96,68, 86,152, 180,137 ] # P4/16 - [ 140,301, 303,264, 238,542 ] # P5/32 - [ 436,615, 739,380, 925,792 ] # P6/64 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 1, SPP, [ 1024, [ 3, 5, 7 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 11 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 15 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 19 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 23 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 20 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 26 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 16 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 29 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 12 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 32 (P6/64-xlarge) [ [ 23, 26, 29, 32 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6) ] ================================================ FILE: models/hub/yolov5s-transformer.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, C3TR, [1024, False]], # 9 <-------- C3TR() Transformer module ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, C3, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, C3, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, C3, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, C3, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/hub/yolov5s6.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [ 19,27, 44,40, 38,94 ] # P3/8 - [ 96,68, 86,152, 180,137 ] # P4/16 - [ 140,301, 303,264, 238,542 ] # P5/32 - [ 436,615, 739,380, 925,792 ] # P6/64 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 1, SPP, [ 1024, [ 3, 5, 7 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 11 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 15 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 19 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 23 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 20 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 26 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 16 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 29 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 12 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 32 (P6/64-xlarge) [ [ 23, 26, 29, 32 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6) ] ================================================ FILE: models/hub/yolov5x6.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.33 # model depth multiple width_multiple: 1.25 # layer channel multiple # anchors anchors: - [ 19,27, 44,40, 38,94 ] # P3/8 - [ 96,68, 86,152, 180,137 ] # P4/16 - [ 140,301, 303,264, 238,542 ] # P5/32 - [ 436,615, 739,380, 925,792 ] # P6/64 # YOLOv5 backbone backbone: # [from, number, module, args] [ [ -1, 1, Focus, [ 64, 3 ] ], # 0-P1/2 [ -1, 1, Conv, [ 128, 3, 2 ] ], # 1-P2/4 [ -1, 3, C3, [ 128 ] ], [ -1, 1, Conv, [ 256, 3, 2 ] ], # 3-P3/8 [ -1, 9, C3, [ 256 ] ], [ -1, 1, Conv, [ 512, 3, 2 ] ], # 5-P4/16 [ -1, 9, C3, [ 512 ] ], [ -1, 1, Conv, [ 768, 3, 2 ] ], # 7-P5/32 [ -1, 3, C3, [ 768 ] ], [ -1, 1, Conv, [ 1024, 3, 2 ] ], # 9-P6/64 [ -1, 1, SPP, [ 1024, [ 3, 5, 7 ] ] ], [ -1, 3, C3, [ 1024, False ] ], # 11 ] # YOLOv5 head head: [ [ -1, 1, Conv, [ 768, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 8 ], 1, Concat, [ 1 ] ], # cat backbone P5 [ -1, 3, C3, [ 768, False ] ], # 15 [ -1, 1, Conv, [ 512, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 6 ], 1, Concat, [ 1 ] ], # cat backbone P4 [ -1, 3, C3, [ 512, False ] ], # 19 [ -1, 1, Conv, [ 256, 1, 1 ] ], [ -1, 1, nn.Upsample, [ None, 2, 'nearest' ] ], [ [ -1, 4 ], 1, Concat, [ 1 ] ], # cat backbone P3 [ -1, 3, C3, [ 256, False ] ], # 23 (P3/8-small) [ -1, 1, Conv, [ 256, 3, 2 ] ], [ [ -1, 20 ], 1, Concat, [ 1 ] ], # cat head P4 [ -1, 3, C3, [ 512, False ] ], # 26 (P4/16-medium) [ -1, 1, Conv, [ 512, 3, 2 ] ], [ [ -1, 16 ], 1, Concat, [ 1 ] ], # cat head P5 [ -1, 3, C3, [ 768, False ] ], # 29 (P5/32-large) [ -1, 1, Conv, [ 768, 3, 2 ] ], [ [ -1, 12 ], 1, Concat, [ 1 ] ], # cat head P6 [ -1, 3, C3, [ 1024, False ] ], # 32 (P6/64-xlarge) [ [ 23, 26, 29, 32 ], 1, Detect, [ nc, anchors ] ], # Detect(P3, P4, P5, P6) ] ================================================ FILE: models/transformer/yolov5_ResNet50_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, ResNetlayer, [3, 64, 1, True, 1]], # 0 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 1 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 2 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 3 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 4 [-4, 1, ResNetlayer, [3, 64, 1, True, 1]], # 5 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 6 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 7 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 8 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 9 ######### Fusion Block ############# [[2,7], 1, NiNfusion, [1, 1]], # 10 two stream fuse [[3,8], 1, NiNfusion, [1, 1]], # 11 two stream fuse [[4,9], 1, NiNfusion, [1, 1]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [1024, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [1024, False]], # 16 [-1, 1, Conv, [512, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [512, False]], # 20 (P3/8-small) [-1, 1, Conv, [512, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [1024, False]], # 23 (P4/16-medium) [-1, 1, Conv, [1024, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [2048, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_ResNet50_NiNfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, ResNetlayer, [3, 64, 1, True, 1]], # 0 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 1 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 2 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 3 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 4 [-4, 1, ResNetlayer, [3, 64, 1, True, 1]], # 5 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 6 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 7 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 8 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 9 ######### Fusion Block ############# [[2,7], 1, NiNfusion, [1, 1]], # 10 two stream fuse [[3,8], 1, NiNfusion, [1, 1]], # 11 two stream fuse [[4,9], 1, NiNfusion, [1, 1]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [1024, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [1024, False]], # 16 [-1, 1, Conv, [512, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [512, False]], # 20 (P3/8-small) [-1, 1, Conv, [512, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [1024, False]], # 23 (P4/16-medium) [-1, 1, Conv, [1024, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [2048, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_ResNet50_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, ResNetlayer, [3, 64, 1, True, 1]], # 0 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 1 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 2 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 3 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 4 [-4, 1, ResNetlayer, [3, 64, 1, True, 1]], # 5 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 6 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 7 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 8 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 9 ######### Fusion Block ############# [[2,7], 1, TransformerFusionBlock, [512, 20, 20]], # 10 two stream fuse [[3,8], 1, TransformerFusionBlock, [1024, 16, 16]], # 11 two stream fuse [[4,9], 1, TransformerFusionBlock, [2048, 10, 10]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [1024, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [1024, False]], # 16 [-1, 1, Conv, [512, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [512, False]], # 20 (P3/8-small) [-1, 1, Conv, [512, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [1024, False]], # 23 (P4/16-medium) [-1, 1, Conv, [1024, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [2048, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_ResNet50_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, ResNetlayer, [3, 64, 1, True, 1]], # 0 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 1 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 2 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 3 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 4 [-4, 1, ResNetlayer, [3, 64, 1, True, 1]], # 5 [-1, 1, ResNetlayer, [64, 64, 1, False, 3]], # 6 [-1, 1, ResNetlayer, [256, 128, 2, False, 4]], # 7 [-1, 1, ResNetlayer, [512, 256, 2, False, 6]], # 8 [-1, 1, ResNetlayer, [1024, 512, 2, False, 3]], # 9 ######### Fusion Block ############# [[2,7], 1, TransformerFusionBlock, [512, 20, 20]], # 10 two stream fuse [[3,8], 1, TransformerFusionBlock, [1024, 16, 16]], # 11 two stream fuse [[4,9], 1, TransformerFusionBlock, [2048, 10, 10]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [1024, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [1024, False]], # 16 [-1, 1, Conv, [512, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [512, False]], # 20 (P3/8-small) [-1, 1, Conv, [512, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [1024, False]], # 23 (P4/16-medium) [-1, 1, Conv, [1024, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [2048, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_VGG16_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, VGGblock, [2, 3, 64]], # 0 [-1, 1, VGGblock, [2, 64, 128]], # 1 [-1, 1, VGGblock, [3, 128, 256]], # 2 [-1, 1, VGGblock, [3, 256, 512]], # 3 [-1, 1, VGGblock, [3, 512, 512]], # 4 [-4, 1, VGGblock, [2, 3, 64]], # 5 [-1, 1, VGGblock, [2, 64, 128]], # 6 [-1, 1, VGGblock, [3, 128, 256]], # 7 [-1, 1, VGGblock, [3, 256, 512]], # 8 [-1, 1, VGGblock, [3, 512, 512]], # 9 ######### Fusion Block ############# [[2,7], 1, NiNfusion, [1, 1]], # 10 two stream fuse [[3,8], 1, NiNfusion, [1, 1]], # 11 two stream fuse [[4,9], 1, NiNfusion, [1, 1]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [512, False]], # 16 [-1, 1, Conv, [256, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [256, False]], # 20 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [512, False]], # 23 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [512, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_VGG16_NiNfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, VGGblock, [2, 3, 64]], # 0 [-1, 1, VGGblock, [2, 64, 128]], # 1 [-1, 1, VGGblock, [3, 128, 256]], # 2 [-1, 1, VGGblock, [3, 256, 512]], # 3 [-1, 1, VGGblock, [3, 512, 512]], # 4 [-4, 1, VGGblock, [2, 3, 64]], # 5 [-1, 1, VGGblock, [2, 64, 128]], # 6 [-1, 1, VGGblock, [3, 128, 256]], # 7 [-1, 1, VGGblock, [3, 256, 512]], # 8 [-1, 1, VGGblock, [3, 512, 512]], # 9 ######### Fusion Block ############# [[2,7], 1, NiNfusion, [1, 1]], # 10 two stream fuse [[3,8], 1, NiNfusion, [1, 1]], # 11 two stream fuse [[4,9], 1, NiNfusion, [1, 1]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [512, False]], # 16 [-1, 1, Conv, [256, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [256, False]], # 20 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [512, False]], # 23 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [512, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_VGG16_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, VGGblock, [2, 3, 64]], # 0 [-1, 1, VGGblock, [2, 64, 128]], # 1 [-1, 1, VGGblock, [3, 128, 256]], # 2 [-1, 1, VGGblock, [3, 256, 512]], # 3 [-1, 1, VGGblock, [3, 512, 512]], # 4 [-4, 1, VGGblock, [2, 3, 64]], # 5 [-1, 1, VGGblock, [2, 64, 128]], # 6 [-1, 1, VGGblock, [3, 128, 256]], # 7 [-1, 1, VGGblock, [3, 256, 512]], # 8 [-1, 1, VGGblock, [3, 512, 512]], # 9 ######### Fusion Block ############# [[2,7], 1, TransformerFusionBlock, [256, 20, 20]], # 10 two stream fuse [[3,8], 1, TransformerFusionBlock, [512, 16, 16]], # 11 two stream fuse [[4,9], 1, TransformerFusionBlock, [512, 10, 10]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [512, False]], # 16 [-1, 1, Conv, [256, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [256, False]], # 20 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [512, False]], # 23 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [512, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5_VGG16_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, VGGblock, [2, 3, 64]], # 0 [-1, 1, VGGblock, [2, 64, 128]], # 1 [-1, 1, VGGblock, [3, 128, 256]], # 2 [-1, 1, VGGblock, [3, 256, 512]], # 3 [-1, 1, VGGblock, [3, 512, 512]], # 4 [-4, 1, VGGblock, [2, 3, 64]], # 5 [-1, 1, VGGblock, [2, 64, 128]], # 6 [-1, 1, VGGblock, [3, 128, 256]], # 7 [-1, 1, VGGblock, [3, 256, 512]], # 8 [-1, 1, VGGblock, [3, 512, 512]], # 9 ######### Fusion Block ############# [[2,7], 1, TransformerFusionBlock, [256, 20, 20]], # 10 two stream fuse [[3,8], 1, TransformerFusionBlock, [512, 16, 16]], # 11 two stream fuse [[4,9], 1, TransformerFusionBlock, [512, 10, 10]], # 12 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 13 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 14 [[-1,11], 1, Concat, [1]], # 15 cat backbone P4 [-1, 3, C3, [512, False]], # 16 [-1, 1, Conv, [256, 1, 1]], # 17 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 18 [[-1,10], 1, Concat, [1]], # 19 cat backbone P3 [-1, 3, C3, [256, False]], # 20 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 21 [[-1,17], 1, Concat, [1]], # 22 cat head P4 [-1, 3, C3, [512, False]], # 23 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 24 [[-1,13], 1, Concat, [1]], # 25 cat head P5 [-1, 3, C3, [512, False]], # 26 (P5/32-large) [[20, 23, 26], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5l_Add_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, Add, [1]], # 20 two stream fuse [[6,16], 1, Add, [1]], # 21 two stream fuse [[9,19], 1, Add, [1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_MobileViT_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Focus, [32, 3]], # 0-P1/2 320 x 320 [-1, 1, MV2Block, [32, 1, 2]], # 1-P2/4 [-1, 1, MV2Block, [48, 2, 2]], # 160 x 160 [-1, 2, MV2Block, [48, 1, 2]], [-1, 1, MV2Block, [64, 2, 2]], # 80 x 80 [-1, 1, MobileViTBlock, [96, 2, 3, 2, 192]], # 5 in_channel, dim, depth, kernel_size, patch_size, mlp_dim [-1, 1, MV2Block, [80, 2, 2]], # 40 x 40 [-1, 1, MobileViTBlock, [120, 2, 3, 4, 480]], # 7 [-1, 1, MV2Block, [96, 2, 2]], # 20 x 20 [-1, 1, MobileViTBlock, [144, 2, 3, 3, 576]], # 9 [-4, 1, Focus, [32, 3]], # 0-P1/2 320 x 320 [-1, 1, MV2Block, [32, 1, 2]], # 1-P2/4 [-1, 1, MV2Block, [48, 2, 2]], # 160 x 160 [-1, 2, MV2Block, [48, 1, 2]], [-1, 1, MV2Block, [64, 2, 2]], # 80 x 80 [-1, 1, MobileViTBlock, [96, 2, 3, 2, 192]], # 15 in_channel, dim, depth, kernel_size, patch_size, mlp_dim [-1, 1, MV2Block, [80, 2, 2]], # 40 x 40 [-1, 1, MobileViTBlock, [120, 2, 3, 4, 480]], # 17 [-1, 1, MV2Block, [96, 2, 2]], # 20 x 20 [-1, 1, MobileViTBlock, [144, 2, 3, 3, 576]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_NiNfusion_LLVIP.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_NiNfusion_VEDAI.yaml ================================================ # parameters nc: 9 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_Transfusion_LLVIP.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_Transfusion_VEDAI.yaml ================================================ # parameters nc: 9 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5l_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 1.00 # model depth multiple width_multiple: 1.00 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5m_Add_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, Add, [1]], # 20 two stream fuse [[6,16], 1, Add, [1]], # 21 two stream fuse [[9,19], 1, Add, [1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_NiNfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5m_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_Transfusion_SeaDrone.yaml ================================================ # parameters nc: 7 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_Transfusion_VEDAI.yaml ================================================ # parameters nc: 9 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5m_weightedAdd_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, weightedAdd, [512]], # 20 two stream fuse [[6,16], 1, weightedAdd, [256]], # 21 two stream fuse [[9,19], 1, weightedAdd, [128]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5n_Add_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.25 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, Add, [1]], # 20 two stream fuse [[6,16], 1, Add, [1]], # 21 two stream fuse [[9,19], 1, Add, [1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5n_NiNfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.25 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, NiNfusion, [1, 1]], # 20 two stream fuse [[6,16], 1, NiNfusion, [1, 1]], # 21 two stream fuse [[9,19], 1, NiNfusion, [1, 1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5n_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.25 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5n_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.25 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5s_Add_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, Add, [1]], # 20 two stream fuse [[6,16], 1, Add, [1]], # 21 two stream fuse [[9,19], 1, Add, [1]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/transformer/yolov5s_Transfusion_FLIR.yaml ================================================ # parameters nc: 3 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/transformer/yolov5s_Transfusion_kaist.yaml ================================================ # parameters nc: 1 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] # Two Stream [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 9 [-4, 1, Conv, [64, 6, 2, 2]], # 10-P1/2 [-1, 1, Conv, [128, 3, 2]], # 11-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 13-P3/8 [-1, 6, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 15-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 17-P5/32 [-1, 3, C3, [1024]], [-1, 1, SPPF, [1024, 5]], # 19 ######### Fusion Block ############# [[4,14], 1, TransformerFusionBlock, [256, 20, 20]], # 20 two stream fuse [[6,16], 1, TransformerFusionBlock, [512, 16, 16]], # 21 two stream fuse [[9,19], 1, TransformerFusionBlock, [1024, 10, 10]], # 22 two stream fuse ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], # 23 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 24 [[-1,21], 1, Concat, [1]], # 25 cat backbone P4 [-1, 3, C3, [512, False]], # 26 [-1, 1, Conv, [256, 1, 1]], # 27 [-1, 1, nn.Upsample, [None, 2, 'nearest']], # 28 [[-1,20], 1, Concat, [1]], # 29 cat backbone P3 [-1, 3, C3, [256, False]], # 30 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], # 31 [[-1,27], 1, Concat, [1]], # 32 cat head P4 [-1, 3, C3, [512, False]], # 33 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], # 34 [[-1,23], 1, Concat, [1]], # 35 cat head P5 [-1, 3, C3, [1024, False]], # 36 (P5/32-large) [[30, 33, 36], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] #[10,13, 16,30, 33,23] # P3/8 #[30,61, 62,45, 59,119] # P4/16 #[116,90, 156,198, 373,326] ================================================ FILE: models/yolo.py ================================================ # YOLOv5 YOLO-specific modules import argparse import logging import sys from copy import deepcopy from pathlib import Path sys.path.append(Path(__file__).parent.parent.absolute().__str__()) # to run '$ python *.py' files in subdirectories logger = logging.getLogger(__name__) from models.common import * from models.experimental import * from utils.autoanchor import check_anchor_order from utils.general import make_divisible, check_file, set_logging from utils.torch_utils import time_synchronized, fuse_conv_and_bn, model_info, scale_img, initialize_weights, \ select_device, copy_attr try: import thop # for FLOPS computation except ImportError: thop = None class Detect(nn.Module): stride = None # strides computed during build export = False # onnx export def __init__(self, nc=80, anchors=(), ch=()): # detection layer super(Detect, self).__init__() self.nc = nc # number of classes self.no = nc + 5 # number of outputs per anchor self.nl = len(anchors) # number of detection layers self.na = len(anchors[0]) // 2 # number of anchors self.grid = [torch.zeros(1)] * self.nl # init grid a = torch.tensor(anchors).float().view(self.nl, -1, 2) self.register_buffer('anchors', a) # shape(nl,na,2) self.register_buffer('anchor_grid', a.clone().view(self.nl, 1, -1, 1, 1, 2)) # shape(nl,1,na,1,1,2) self.m = nn.ModuleList(nn.Conv2d(x, self.no * self.na, 1) for x in ch) # output conv def forward(self, x): # x = x.copy() # for profiling z = [] # inference output self.training |= self.export for i in range(self.nl): x[i] = self.m[i](x[i]) # conv bs, _, ny, nx = x[i].shape # x(bs,255,20,20) to x(bs,3,20,20,85) x[i] = x[i].view(bs, self.na, self.no, ny, nx).permute(0, 1, 3, 4, 2).contiguous() if not self.training: # inference if self.grid[i].shape[2:4] != x[i].shape[2:4]: self.grid[i] = self._make_grid(nx, ny).to(x[i].device) y = x[i].sigmoid() y[..., 0:2] = (y[..., 0:2] * 2. - 0.5 + self.grid[i]) * self.stride[i] # xy y[..., 2:4] = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh z.append(y.view(bs, -1, self.no)) return x if self.training else (torch.cat(z, 1), x) @staticmethod def _make_grid(nx=20, ny=20): yv, xv = torch.meshgrid([torch.arange(ny), torch.arange(nx)]) return torch.stack((xv, yv), 2).view((1, 1, ny, nx, 2)).float() class Model(nn.Module): def __init__(self, cfg='yolov5s.yaml', ch=3, nc=None, anchors=None): # model, input channels, number of classes super(Model, self).__init__() if isinstance(cfg, dict): self.yaml = cfg # model dict else: # is *.yaml import yaml # for torch hub self.yaml_file = Path(cfg).name with open(cfg) as f: self.yaml = yaml.safe_load(f) # model dict print("YAML") print(self.yaml) # Define model ch = self.yaml['ch'] = self.yaml.get('ch', ch) # input channels if nc and nc != self.yaml['nc']: logger.info(f"Overriding model.yaml nc={self.yaml['nc']} with nc={nc}") self.yaml['nc'] = nc # override yaml value if anchors: logger.info(f'Overriding model.yaml anchors with anchors={anchors}') self.yaml['anchors'] = round(anchors) # override yaml value self.model, self.save = parse_model(deepcopy(self.yaml), ch=[ch]) # model, savelist self.names = [str(i) for i in range(self.yaml['nc'])] # default names # logger.info([x.shape for x in self.forward(torch.zeros(1, ch, 64, 64))]) # Build strides, anchors m = self.model[-1] # Detect() # print("Detect") # print(m) if isinstance(m, Detect): s = 256 # 2x min stride m.stride = torch.tensor([s / x.shape[-2] for x in self.forward(torch.zeros(1, ch, s, s))]) # forward # print("m.stride", m.stride) m.anchors /= m.stride.view(-1, 1, 1) check_anchor_order(m) self.stride = m.stride self._initialize_biases() # only run once # logger.info('Strides: %s' % m.stride.tolist()) # Init weights, biases initialize_weights(self) self.info() logger.info('') def forward(self, x, augment=False, profile=False): if augment: img_size = x.shape[-2:] # height, width s = [1, 0.83, 0.67] # scales f = [None, 3, None] # flips (2-ud, 3-lr) y = [] # outputs for si, fi in zip(s, f): xi = scale_img(x.flip(fi) if fi else x, si, gs=int(self.stride.max())) yi = self.forward_once(xi)[0] # forward # cv2.imwrite(f'img_{si}.jpg', 255 * xi[0].cpu().numpy().transpose((1, 2, 0))[:, :, ::-1]) # save yi[..., :4] /= si # de-scale if fi == 2: yi[..., 1] = img_size[0] - yi[..., 1] # de-flip ud elif fi == 3: yi[..., 0] = img_size[1] - yi[..., 0] # de-flip lr y.append(yi) return torch.cat(y, 1), None # augmented inference, train else: return self.forward_once(x, profile) # single-scale inference, train def forward_once(self, x, profile=False): y, dt = [], [] # outputs for m in self.model: if m.f != -1: # if not from previous layer x = y[m.f] if isinstance(m.f, int) else [x if j == -1 else y[j] for j in m.f] # from earlier layers if profile: o = thop.profile(m, inputs=(x,), verbose=False)[0] / 1E9 * 2 if thop else 0 # FLOPS t = time_synchronized() for _ in range(10): _ = m(x) dt.append((time_synchronized() - t) * 100) if m == self.model[0]: logger.info(f"{'time (ms)':>10s} {'GFLOPS':>10s} {'params':>10s} {'module'}") logger.info(f'{dt[-1]:10.2f} {o:10.2f} {m.np:10.0f} {m.type}') x = m(x) # run y.append(x if m.i in self.save else None) # save output if profile: logger.info('%.1fms total' % sum(dt)) return x def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is class frequency # https://arxiv.org/abs/1708.02002 section 3.3 # cf = torch.bincount(torch.tensor(np.concatenate(dataset.labels, 0)[:, 0]).long(), minlength=nc) + 1. m = self.model[-1] # Detect() module for mi, s in zip(m.m, m.stride): # from b = mi.bias.view(m.na, -1) # conv.bias(255) to (3,85) b.data[:, 4] += math.log(8 / (640 / s) ** 2) # obj (8 objects per 640 image) b.data[:, 5:] += math.log(0.6 / (m.nc - 0.99)) if cf is None else torch.log(cf / cf.sum()) # cls mi.bias = torch.nn.Parameter(b.view(-1), requires_grad=True) def _print_biases(self): m = self.model[-1] # Detect() module for mi in m.m: # from b = mi.bias.detach().view(m.na, -1).T # conv.bias(255) to (3,85) logger.info( ('%6g Conv2d.bias:' + '%10.3g' * 6) % (mi.weight.shape[1], *b[:5].mean(1).tolist(), b[5:].mean())) # def _print_weights(self): # for m in self.model.modules(): # if type(m) is Bottleneck: # logger.info('%10.3g' % (m.w.detach().sigmoid() * 2)) # shortcut weights def fuse(self): # fuse model Conv2d() + BatchNorm2d() layers logger.info('Fusing layers... ') for m in self.model.modules(): if type(m) is Conv and hasattr(m, 'bn'): m.conv = fuse_conv_and_bn(m.conv, m.bn) # update conv delattr(m, 'bn') # remove batchnorm m.forward = m.fuseforward # update forward self.info() return self def nms(self, mode=True): # add or remove NMS module present = type(self.model[-1]) is NMS # last layer is NMS if mode and not present: logger.info('Adding NMS... ') m = NMS() # module m.f = -1 # from m.i = self.model[-1].i + 1 # index self.model.add_module(name='%s' % m.i, module=m) # add self.eval() elif not mode and present: logger.info('Removing NMS... ') self.model = self.model[:-1] # remove return self def autoshape(self): # add autoShape module logger.info('Adding autoShape... ') m = autoShape(self) # wrap model copy_attr(m, self, include=('yaml', 'nc', 'hyp', 'names', 'stride'), exclude=()) # copy attributes return m def info(self, verbose=False, img_size=640): # print model information model_info(self, verbose, img_size) def parse_model(d, ch): # model_dict, input_channels(3) logger.info('\n%3s%18s%3s%10s %-40s%-30s' % ('', 'from', 'n', 'params', 'module', 'arguments')) anchors, nc, gd, gw = d['anchors'], d['nc'], d['depth_multiple'], d['width_multiple'] na = (len(anchors[0]) // 2) if isinstance(anchors, list) else anchors # number of anchors no = na * (nc + 5) # number of outputs = anchors * (classes + 5) layers, save, c2 = [], [], ch[-1] # layers, savelist, ch out for i, (f, n, m, args) in enumerate(d['backbone'] + d['head']): # from, number, module, args m = eval(m) if isinstance(m, str) else m # eval strings for j, a in enumerate(args): try: args[j] = eval(a) if isinstance(a, str) else a # eval strings except: pass n = max(round(n * gd), 1) if n > 1 else n # depth gain if m in [Conv, GhostConv, Bottleneck, GhostBottleneck, SPP, DWConv, MixConv2d, Focus, CrossConv, BottleneckCSP, C3, C3TR]: c1, c2 = ch[f], args[0] if c2 != no: # if not output c2 = make_divisible(c2 * gw, 8) args = [c1, c2, *args[1:]] if m in [BottleneckCSP, C3, C3TR]: args.insert(2, n) # number of repeats n = 1 elif m is nn.BatchNorm2d: args = [ch[f]] elif m is Add: # print("ch[f]", f, ch[f[0]]) c2 = ch[f[0]] args = [c2] elif m is Add2: c2 = ch[f[0]] args = [c2, args[1]] # elif m is CMAFF: # c2 = ch[f[0]] # args = [c2] elif m is GPT: c2 = ch[f[0]] args = [c2] elif m is Concat: c2 = sum([ch[x] for x in f]) elif m is Detect: args.append([ch[x] for x in f]) if isinstance(args[1], int): # number of anchors args[1] = [list(range(args[1] * 2))] * len(f) elif m is Contract: c2 = ch[f] * args[0] ** 2 elif m is Expand: c2 = ch[f] // args[0] ** 2 else: c2 = ch[f] m_ = nn.Sequential(*[m(*args) for _ in range(n)]) if n > 1 else m(*args) # module t = str(m)[8:-2].replace('__main__.', '') # module type np = sum([x.numel() for x in m_.parameters()]) # number params m_.i, m_.f, m_.type, m_.np = i, f, t, np # attach index, 'from' index, type, number params logger.info('%3s%18s%3s%10.0f %-40s%-30s' % (i, f, n, np, t, args)) # print save.extend(x % i for x in ([f] if isinstance(f, int) else f) if x != -1) # append to savelist layers.append(m_) if i == 0: ch = [] ch.append(c2) return nn.Sequential(*layers), sorted(save) if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--cfg', type=str, default='yolov5s.yaml', help='model.yaml') parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') opt = parser.parse_args() opt.cfg = check_file(opt.cfg) # check file set_logging() device = select_device(opt.device) # Create model model = Model(opt.cfg).to(device) input_rgb = torch.Tensor(8, 3, 640, 640).to(device) output = model(input_rgb) # print(model) # model.train() # torch.save(model, "yolov5s.pth") # Profile # img = torch.rand(8 if torch.cuda.is_available() else 1, 3, 320, 320).to(device) # y = model(img, profile=True) # Tensorboard (not working https://github.com/ultralytics/yolov5/issues/2898) # from torch.utils.tensorboard import SummaryWriter # tb_writer = SummaryWriter('.') # logger.info("Run 'tensorboard --logdir=models' to view tensorboard at http://localhost:6006/") # tb_writer.add_graph(torch.jit.trace(model, img, strict=False), []) # add model graph # tb_writer.add_image('test', img[0], dataformats='CWH') # add model to tensorboard ================================================ FILE: models/yolo_test.py ================================================ # YOLOv5 YOLO-specific modules import argparse import logging import sys from copy import deepcopy from pathlib import Path sys.path.append(Path(__file__).parent.parent.absolute().__str__()) # to run '$ python *.py' files in subdirectories logger = logging.getLogger(__name__) from models.common import * from models.experimental import * from utils.autoanchor import check_anchor_order from utils.general import make_divisible, check_file, set_logging from utils.torch_utils import time_synchronized, fuse_conv_and_bn, model_info, scale_img, initialize_weights, \ select_device, copy_attr #from mmcv.ops import DeformConv2dPack as DCN try: import thop # for FLOPS computation except ImportError: thop = None class Detect(nn.Module): stride = None # strides computed during build export = False # onnx export def __init__(self, nc=80, anchors=(), ch=()): # detection layer super(Detect, self).__init__() self.nc = nc # number of classes self.no = nc + 5 # number of outputs per anchor self.nl = len(anchors) # number of detection layers self.na = len(anchors[0]) // 2 # number of anchors self.grid = [torch.zeros(1)] * self.nl # init grid a = torch.tensor(anchors).float().view(self.nl, -1, 2) self.register_buffer('anchors', a) # shape(nl,na,2) self.register_buffer('anchor_grid', a.clone().view(self.nl, 1, -1, 1, 1, 2)) # shape(nl,1,na,1,1,2) self.m = nn.ModuleList(nn.Conv2d(x, self.no * self.na, 1) for x in ch) # output conv #self.m = nn.ModuleList(DCN(x, self.no * self.na, kernel_size=(3, 3), stride=1, padding=1, dilation=1, deform_groups=1) for x in ch) # output DCN conv3x3 def forward(self, x): # x = x.copy() # for profiling z = [] # inference output logits_ = [] self.training |= self.export for i in range(self.nl): x[i] = self.m[i](x[i]) # conv bs, _, ny, nx = x[i].shape # x(bs,255,20,20) to x(bs,3,20,20,85) x[i] = x[i].view(bs, self.na, self.no, ny, nx).permute(0, 1, 3, 4, 2).contiguous() if not self.training: # inference if self.grid[i].shape[2:4] != x[i].shape[2:4]: self.grid[i] = self._make_grid(nx, ny).to(x[i].device ) logits = x[i][..., 5:] y = x[i].sigmoid() y[..., 0:2] = (y[..., 0:2] * 2. - 0.5 + self.grid[i]) * self.stride[i] # xy y[..., 2:4] = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh z.append(y.view(bs, -1, self.no)) logits_.append(logits.view(bs, -1, self.no - 5)) return x if self.training else (torch.cat(z, 1), torch.cat(logits_, 1), x) @staticmethod def _make_grid(nx=20, ny=20): yv, xv = torch.meshgrid([torch.arange(ny), torch.arange(nx)]) return torch.stack((xv, yv), 2).view((1, 1, ny, nx, 2)).float() class Model(nn.Module): def __init__(self, cfg='yolov5s.yaml', ch=3, nc=None, anchors=None): # model, input channels, number of classes super(Model, self).__init__() if isinstance(cfg, dict): self.yaml = cfg # model dict else: # is *.yaml import yaml # for torch hub self.yaml_file = Path(cfg).name with open(cfg) as f: self.yaml = yaml.safe_load(f) # model dict # Define model ch = self.yaml['ch'] = self.yaml.get('ch', ch) # input channels if nc and nc != self.yaml['nc']: logger.info(f"Overriding model.yaml nc={self.yaml['nc']} with nc={nc}") self.yaml['nc'] = nc # override yaml value if anchors: logger.info(f'Overriding model.yaml anchors with anchors={anchors}') self.yaml['anchors'] = round(anchors) # override yaml value self.model, self.save = parse_model(deepcopy(self.yaml), ch=[ch]) # model, savelist self.names = [str(i) for i in range(self.yaml['nc'])] # default names # Build strides, anchors m = self.model[-1] # Detect() # print(m) if isinstance(m, Detect): s = 256 # 2x min stride # m.stride = torch.tensor([s / x.shape[-2] for x in self.forward(torch.zeros(1, ch, s, s), torch.zeros(1, ch, s, s))]) # forward m.stride = torch.Tensor([8.0, 16.0, 32.0]) m.anchors /= m.stride.view(-1, 1, 1) check_anchor_order(m) self.stride = m.stride #self._initialize_biases() # only run once # Init weights, biases initialize_weights(self) self.info() logger.info('') def forward(self, x, x2, augment=False, profile=False): if augment: img_size = x.shape[-2:] # height, width s = [1, 0.83, 0.67] # scales f = [None, 3, None] # flips (2-ud, 3-lr) y = [] # outputs for si, fi in zip(s, f): xi = scale_img(x.flip(fi) if fi else x, si, gs=int(self.stride.max())) yi = self.forward_once(xi)[0] # forward # cv2.imwrite(f'img_{si}.jpg', 255 * xi[0].cpu().numpy().transpose((1, 2, 0))[:, :, ::-1]) # save yi[..., :4] /= si # de-scale if fi == 2: yi[..., 1] = img_size[0] - yi[..., 1] # de-flip ud elif fi == 3: yi[..., 0] = img_size[1] - yi[..., 0] # de-flip lr y.append(yi) return torch.cat(y, 1), None # augmented inference, train else: return self.forward_once(x, x2, profile) # single-scale inference, train def forward_once(self, x, x2, profile=False): y, dt = [], [] # outputs i = 0 for m in self.model: if m.f != -1: # if not from previous layer if m.f != -4: x = y[m.f] if isinstance(m.f, int) else [x if j == -1 else y[j] for j in m.f] # from earlier layers if profile: o = thop.profile(m, inputs=(x,), verbose=False)[0] / 1E9 * 2 if thop else 0 # FLOPS t = time_synchronized() for _ in range(10): _ = m(x) dt.append((time_synchronized() - t) * 100) if m == self.model[0]: logger.info(f"{'time (ms)':>10s} {'GFLOPS':>10s} {'params':>10s} {'module'}") logger.info(f'{dt[-1]:10.2f} {o:10.2f} {m.np:10.0f} {m.type}') if m.f == -4: x = m(x2) else: x = m(x) # run y.append(x if m.i in self.save else None) # save output i += 1 if profile: logger.info('%.1fms total' % sum(dt)) return x def _initialize_biases(self, cf=None): # initialize biases into Detect(), cf is class frequency # https://arxiv.org/abs/1708.02002 section 3.3 # cf = torch.bincount(torch.tensor(np.concatenate(dataset.labels, 0)[:, 0]).long(), minlength=nc) + 1. m = self.model[-1] # Detect() module for mi, s in zip(m.m, m.stride): # from b = mi.bias.view(m.na, -1) # conv.bias(255) to (3,85) b.data[:, 4] += math.log(8 / (640 / s) ** 2) # obj (8 objects per 640 image) b.data[:, 5:] += math.log(0.6 / (m.nc - 0.99)) if cf is None else torch.log(cf / cf.sum()) # cls mi.bias = torch.nn.Parameter(b.view(-1), requires_grad=True) def _print_biases(self): m = self.model[-1] # Detect() module for mi in m.m: # from b = mi.bias.detach().view(m.na, -1).T # conv.bias(255) to (3,85) logger.info( ('%6g Conv2d.bias:' + '%10.3g' * 6) % (mi.weight.shape[1], *b[:5].mean(1).tolist(), b[5:].mean())) def fuse(self): # fuse model Conv2d() + BatchNorm2d() layers logger.info('Fusing layers... ') for m in self.model.modules(): if type(m) is Conv and hasattr(m, 'bn'): m.conv = fuse_conv_and_bn(m.conv, m.bn) # update conv delattr(m, 'bn') # remove batchnorm m.forward = m.fuseforward # update forward self.info() return self def nms(self, mode=True): # add or remove NMS module present = type(self.model[-1]) is NMS # last layer is NMS if mode and not present: logger.info('Adding NMS... ') m = NMS() # module m.f = -1 # from m.i = self.model[-1].i + 1 # index self.model.add_module(name='%s' % m.i, module=m) # add self.eval() elif not mode and present: logger.info('Removing NMS... ') self.model = self.model[:-1] # remove return self def autoshape(self): # add autoShape module logger.info('Adding autoShape... ') m = autoShape(self) # wrap model copy_attr(m, self, include=('yaml', 'nc', 'hyp', 'names', 'stride'), exclude=()) # copy attributes return m def info(self, verbose=False, img_size=640): # print model information model_info(self, verbose, img_size) def parse_model(d, ch): # model_dict, input_channels(3) logger.info('\n%3s%18s%3s%10s %-40s%-30s' % ('', 'from', 'n', 'params', 'module', 'arguments')) anchors, nc, gd, gw = d['anchors'], d['nc'], d['depth_multiple'], d['width_multiple'] na = (len(anchors[0]) // 2) if isinstance(anchors, list) else anchors # number of anchors no = na * (nc + 5) # number of outputs = anchors * (classes + 5) layers, save, c2 = [], [], ch[-1] # layers, savelist, ch out for i, (f, n, m, args) in enumerate(d['backbone'] + d['head']): # from, number, module, args m = eval(m) if isinstance(m, str) else m # eval strings for j, a in enumerate(args): try: args[j] = eval(a) if isinstance(a, str) else a # eval strings except: pass n = max(round(n * gd), 1) if n > 1 else n # depth gain if m in [Conv, GhostConv, Bottleneck, GhostBottleneck, SPP, SPPF, DWConv, MixConv2d, Focus, CrossConv, BottleneckCSP, C3, C3TR]: if m is Focus: c1, c2 = 3, args[0] if c2 != no: # if not output c2 = make_divisible(c2 * gw, 8) args = [c1, c2, *args[1:]] elif m is Conv and args[0] == 64: # new c1, c2 = 3, args[0] if c2 != no: # if not output c2 = make_divisible(c2 * gw, 8) args = [c1, c2, *args[1:]] else: c1, c2 = ch[f], args[0] if c2 != no: # if not output c2 = make_divisible(c2 * gw, 8) args = [c1, c2, *args[1:]] if m in [BottleneckCSP, C3, C3TR]: args.insert(2, n) # number of repeats n = 1 elif m is ResNetlayer: if args[3] == True: c2 = args[1] else: c2 = args[1]*4 elif m is VGGblock: c2 = args[2] elif m is nn.BatchNorm2d: args = [ch[f]] elif m is Concat: c2 = sum([ch[x] for x in f]) elif m in [Add, DMAF]: c2 = ch[f[0]] args = [c2] elif m is Add2: c2 = ch[f[0]] args = [c2, args[1]] elif m is Detect: args.append([ch[x] for x in f]) if isinstance(args[1], int): # number of anchors args[1] = [list(range(args[1] * 2))] * len(f) elif m is Contract: c2 = ch[f] * args[0] ** 2 elif m is Expand: c2 = ch[f] // args[0] ** 2 elif m is NiNfusion: c1 = sum([ch[x] for x in f]) c2 = c1 // 2 args = [c1, c2, *args] elif m is TransformerFusionBlock: c2 = ch[f[0]] args = [c2, *args[1:]] else: c2 = ch[f] m_ = nn.Sequential(*[m(*args) for _ in range(n)]) if n > 1 else m(*args) # module t = str(m)[8:-2].replace('__main__.', '') # module type np = sum([x.numel() for x in m_.parameters()]) # number params m_.i, m_.f, m_.type, m_.np = i, f, t, np # attach index, 'from' index, type, number params logger.info('%3s%18s%3s%10.0f %-40s%-30s' % (i, f, n, np, t, args)) # print save.extend(x % i for x in ([f] if isinstance(f, int) else f) if x != -1) # append to savelist layers.append(m_) if i == 0: ch = [] ch.append(c2) return nn.Sequential(*layers), sorted(save) if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--cfg', type=str, default='/home/fqy/proj/paper/YOLOFusion/models/transformer/yolov5s_fusion_transformer(x3)_vedai.yaml', help='model.yaml') parser.add_argument('--device', default='0', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') opt = parser.parse_args() opt.cfg = check_file(opt.cfg) # check file set_logging() device = select_device(opt.device) print(device) model = Model(opt.cfg).to(device) input_rgb = torch.Tensor(8, 3, 640, 640).to(device) input_ir = torch.Tensor(8, 3, 640, 640).to(device) output = model(input_rgb, input_ir) ================================================ FILE: models/yolov5l.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, C3, [1024, False]], # 9 ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, C3, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, C3, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, C3, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, C3, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/yolov5m.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 0.67 # model depth multiple width_multiple: 0.75 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, C3, [1024, False]], # 9 ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, C3, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, C3, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, C3, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, C3, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/yolov5s.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 0.33 # model depth multiple width_multiple: 0.50 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, C3, [1024, False]], # 9 ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, C3, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, C3, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, C3, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, C3, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: models/yolov5x.yaml ================================================ # parameters nc: 80 # number of classes depth_multiple: 1.33 # model depth multiple width_multiple: 1.25 # layer channel multiple # anchors anchors: - [10,13, 16,30, 33,23] # P3/8 - [30,61, 62,45, 59,119] # P4/16 - [116,90, 156,198, 373,326] # P5/32 # YOLOv5 backbone backbone: # [from, number, module, args] [[-1, 1, Focus, [64, 3]], # 0-P1/2 [-1, 1, Conv, [128, 3, 2]], # 1-P2/4 [-1, 3, C3, [128]], [-1, 1, Conv, [256, 3, 2]], # 3-P3/8 [-1, 9, C3, [256]], [-1, 1, Conv, [512, 3, 2]], # 5-P4/16 [-1, 9, C3, [512]], [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32 [-1, 1, SPP, [1024, [5, 9, 13]]], [-1, 3, C3, [1024, False]], # 9 ] # YOLOv5 head head: [[-1, 1, Conv, [512, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 6], 1, Concat, [1]], # cat backbone P4 [-1, 3, C3, [512, False]], # 13 [-1, 1, Conv, [256, 1, 1]], [-1, 1, nn.Upsample, [None, 2, 'nearest']], [[-1, 4], 1, Concat, [1]], # cat backbone P3 [-1, 3, C3, [256, False]], # 17 (P3/8-small) [-1, 1, Conv, [256, 3, 2]], [[-1, 14], 1, Concat, [1]], # cat head P4 [-1, 3, C3, [512, False]], # 20 (P4/16-medium) [-1, 1, Conv, [512, 3, 2]], [[-1, 10], 1, Concat, [1]], # cat head P5 [-1, 3, C3, [1024, False]], # 23 (P5/32-large) [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5) ] ================================================ FILE: requirements.txt ================================================ # pip install -r requirements.txt # base ---------------------------------------- matplotlib>=3.2.2 numpy>=1.18.5 opencv-python>=4.1.2 Pillow PyYAML>=5.3.1 scipy>=1.4.1 torch>=1.7.0 torchvision>=0.8.1 tqdm>=4.41.0 # logging ------------------------------------- tensorboard>=2.4.1 # wandb # plotting ------------------------------------ seaborn>=0.11.0 pandas # export -------------------------------------- # coremltools>=4.1 # onnx>=1.8.1 # scikit-learn==0.19.2 # for coreml quantization # extras -------------------------------------- thop # FLOPS computation pycocotools>=2.0 # COCO mAP ================================================ FILE: test.py ================================================ import argparse import json import os from pathlib import Path from threading import Thread import numpy as np import torch import yaml from tqdm import tqdm from models.experimental import attempt_load from utils.datasets import create_dataloader_rgb_ir from utils.general import logger, coco80_to_coco91_class, check_dataset, check_file, check_img_size, check_requirements, \ box_iou, non_max_suppression, scale_coords, xyxy2xywh, xyxy2xywh2, xywh2xyxy, set_logging, increment_path, colorstr from utils.metrics import ap_per_class, ConfusionMatrix from utils.plots import plot_images, output_to_target, plot_study_txt from utils.torch_utils import select_device, time_synchronized from evaluation_script.evaluation_script import evaluate from utils.confluence import confluence_process def test(data, weights=None, batch_size=32, imgsz=640, conf_thres=0.001, iou_thres=0.5, # for NMS save_json=False, single_cls=False, augment=False, verbose=False, model=None, dataloader=None, save_dir=Path(''), # for saving images save_txt=False, # for auto-labelling save_hybrid=False, # for hybrid auto-labelling save_conf=True, # save auto-label confidences plots=False, wandb_logger=None, compute_loss=None, half_precision=True, is_coco=False, opt=None, labels_list=None): # Initialize/load model and set device training = model is not None if training: # called by train.py device = next(model.parameters()).device # get model device (save_dir / 'labels' if save_txt else save_dir).mkdir(parents=True, exist_ok=True) # make dir if save_txt: labels_dir = increment_path(Path(save_dir) / 'labels' / 'pred', exist_ok=False, mkdir=True) else: # called directly set_logging() device = select_device(opt.device, batch_size=batch_size) # Directories save_dir = increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok) # increment run (save_dir / 'labels' if save_txt else save_dir).mkdir(parents=True, exist_ok=True) # make dir labels_dir = save_dir / 'labels' # Load model model = attempt_load(weights, map_location=device) # load FP32 model gs = max(int(model.stride.max()), 32) # grid size (max stride) imgsz = check_img_size(imgsz, s=gs) # check img_size # Multi-GPU disabled, incompatible with .half() https://github.com/ultralytics/yolov5/issues/99 # if device.type != 'cpu' and torch.cuda.device_count() > 1: # model = nn.DataParallel(model) # Half half = device.type != 'cpu' and half_precision # half precision only supported on CUDA if half: model.half() # Configure model.eval() if isinstance(data, str): is_coco = data.endswith('coco.yaml') with open(data) as f: data = yaml.safe_load(f) check_dataset(data) # check nc = 1 if single_cls else int(data['nc']) # number of classes iouv = torch.linspace(0.5, 0.95, 10).to(device) # iou vector for mAP@0.5:0.95 niou = iouv.numel() # Logging log_imgs = 0 if wandb_logger and wandb_logger.wandb: log_imgs = min(wandb_logger.log_imgs, 100) # Dataloader if not training: # if device.type != 'cpu': # model(torch.zeros(1, 3, imgsz, imgsz).to(device).type_as(next(model.parameters()))) # run once print(opt.task) task = opt.task if opt.task in ('train', 'val', 'test') else 'val' # path to train/val/test images val_path_rgb = data['val_rgb'] val_path_ir = data['val_ir'] dataloader = create_dataloader_rgb_ir(val_path_rgb, val_path_ir, imgsz, batch_size, gs, opt, pad=0.5, rect=True, prefix=colorstr(f'{task}: '))[0] seen = 0 confusion_matrix = ConfusionMatrix(nc=nc) names = {k: v for k, v in enumerate(model.names if hasattr(model, 'names') else model.module.names)} coco91class = coco80_to_coco91_class() if nc == 1: s = ('%20s' + '%12s' * 10) % ('Class', 'Images', 'Labels', 'TP', 'FP', 'FN', 'F1', 'P', 'R', 'mAP@.5', 'mAP@.5:.95') # 设置进度条的显示信息 else: s = ('%20s' + '%12s' * 7) % ('Class', 'Images', 'Labels', 'P', 'R', 'mAP@.5', 'mAP@.75', 'mAP@.5:.95') p, r, f1, mp, mr, map50, map75, map, t0, t1 = 0., 0., 0., 0., 0., 0., 0., 0, 0., 0. tp, fp, fn = 0, 0, 0 loss = torch.zeros(4, device=device) jdict, stats, ap, ap_class, wandb_images = [], [], [], [], [] for batch_i, (img, targets, paths, shapes) in enumerate(tqdm(dataloader, desc=s)): img = img.to(device, non_blocking=True) img = img.half() if half else img.float() # uint8 to fp16/32 img /= 255.0 # 0 - 255 to 0.0 - 1.0 targets = targets.to(device) nb, _, height, width = img.shape # batch size, channels, height, width img_rgb = img[:, :3, :, :] img_ir = img[:, 3:, :, :] with torch.no_grad(): # Run model t = time_synchronized() out, _, train_out = model(img_rgb, img_ir, augment=augment) # inference and training outputs t0 += time_synchronized() - t # Compute loss if compute_loss: loss += compute_loss([x.float() for x in train_out], targets)[1][:4] # box, obj, cls # Run NMS targets[:, 2:] *= torch.Tensor([width, height, width, height]).to(device) # to pixels lb = [targets[targets[:, 0] == i, 1:] for i in range(nb)] if save_hybrid else [] # for autolabelling t = time_synchronized() out = non_max_suppression(out, conf_thres, iou_thres, labels=lb, multi_label=True, agnostic=single_cls) # out = confluence_process(out, 0.1, 0.5) t1 += time_synchronized() - t # Statistics per image for si, pred in enumerate(out): labels = targets[targets[:, 0] == si, 1:] nl = len(labels) tcls = labels[:, 0].tolist() if nl else [] # target class path = Path(paths[si]) seen += 1 if len(pred) == 0: if nl: stats.append((torch.zeros(0, niou, dtype=torch.bool), torch.Tensor(), torch.Tensor(), tcls)) continue # Predictions if single_cls: pred[:, 5] = 0 predn = pred.clone() scale_coords(img[si].shape[1:], predn[:, :4], shapes[si][0], shapes[si][1]) # native-space pred # Append to text file if save_txt: i = labels_list.index(str(path.stem) + '.txt') gn = torch.tensor(shapes[si][0])[[1, 0, 1, 0]] # normalization gain whwh for *xyxy, conf, cls in predn.tolist(): xywh = (xyxy2xywh2(torch.tensor(xyxy).view(1, 4))).view(-1).tolist() # normalized xywh line = (i+1, *xywh, conf) if save_conf else (i+1, *xywh) # label format with open(labels_dir / (path.stem + '.txt'), 'a') as f: f.write(('%g,' * len(line)).rstrip(",") % line + '\n') # W&B logging - Media Panel Plots if len(wandb_images) < log_imgs and wandb_logger.current_epoch > 0: # Check for test operation if wandb_logger.current_epoch % wandb_logger.bbox_interval == 0: box_data = [{"position": {"minX": xyxy[0], "minY": xyxy[1], "maxX": xyxy[2], "maxY": xyxy[3]}, "class_id": int(cls), "box_caption": "%s %.3f" % (names[cls], conf), "scores": {"class_score": conf}, "domain": "pixel"} for *xyxy, conf, cls in pred.tolist()] boxes = {"predictions": {"box_data": box_data, "class_labels": names}} # inference-space #wandb_images.append(wandb_logger.wandb.Image(img[si], boxes=boxes, caption=path.name)) #wandb_logger.log_training_progress(predn, path, names) if wandb_logger and wandb_logger.wandb_run else None # Append to pycocotools JSON dictionary if save_json: # [{"image_id": 42, "category_id": 18, "bbox": [258.15, 41.29, 348.26, 243.78], "score": 0.236}, ... image_id = int(path.stem) if path.stem.isnumeric() else path.stem box = xyxy2xywh(predn[:, :4]) # xywh box[:, :2] -= box[:, 2:] / 2 # xy center to top-left corner for p, b in zip(pred.tolist(), box.tolist()): jdict.append({'image_id': image_id, 'category_id': coco91class[int(p[5])] if is_coco else int(p[5]), 'bbox': [round(x, 3) for x in b], 'score': round(p[4], 5)}) # Assign all predictions as incorrect correct = torch.zeros(pred.shape[0], niou, dtype=torch.bool, device=device) if nl: detected = [] # target indices tcls_tensor = labels[:, 0] # target boxes tbox = xywh2xyxy(labels[:, 1:5]) scale_coords(img[si].shape[1:], tbox, shapes[si][0], shapes[si][1]) # native-space labels if plots: confusion_matrix.process_batch(predn, torch.cat((labels[:, 0:1], tbox), 1)) # Per target class for cls in torch.unique(tcls_tensor): ti = (cls == tcls_tensor).nonzero(as_tuple=False).view(-1) # prediction indices pi = (cls == pred[:, 5]).nonzero(as_tuple=False).view(-1) # target indices # Search for detections if pi.shape[0]: # Prediction to target ious ious, i = box_iou(predn[pi, :4], tbox[ti]).max(1) # best ious, indices # Append detections detected_set = set() for j in (ious > iouv[0]).nonzero(as_tuple=False): d = ti[i[j]] # detected target if d.item() not in detected_set: detected_set.add(d.item()) detected.append(d) correct[pi[j]] = ious[j] > iouv # iou_thres is 1xn if len(detected) == nl: # all targets already located in image break # Append statistics (correct, conf, pcls, tcls) stats.append((correct.cpu(), pred[:, 4].cpu(), pred[:, 5].cpu(), tcls)) # mem = '%.4gM' % (torch.cuda.memory_reserved() / 1E6 if torch.cuda.is_available() else 0) # print(mem) # file_name, extension = os.path.splitext(path.name) # os.rename('/home/shen/Chenyf/FLIR-align-3class/feature_save/fea_20x20.png', '/home/shen/Chenyf/FLIR-align-3class/feature_save/'+file_name+'_20x20'+'.png') # os.rename('/home/shen/Chenyf/FLIR-align-3class/feature_save/fea_40x40.png', '/home/shen/Chenyf/FLIR-align-3class/feature_save/'+file_name+'_40x40'+'.png') # os.rename('/home/shen/Chenyf/FLIR-align-3class/feature_save/fea_80x80.png', '/home/shen/Chenyf/FLIR-align-3class/feature_save/'+file_name+'_80x80'+'.png') # Plot images if plots and batch_i < 3: f1 = save_dir / f'test_batch{batch_i}_labels.jpg' # labels Thread(target=plot_images, args=(img_rgb, targets, paths, f1, names), daemon=True).start() f2 = save_dir / f'test_batch{batch_i}_pred.jpg' # predictions Thread(target=plot_images, args=(img_rgb, output_to_target(out), paths, f2, names), daemon=True).start() # 保存所有预测框结果,后续用于MR的计算 if save_txt: temp = [] files = os.listdir(labels_dir) files.sort() for index, file in enumerate(files): with open(labels_dir / file, 'r') as f: # 打开源文件 for line in f: temp.append(line) with open(labels_dir / 'result.txt', 'a') as ff: for ii in temp: ff.write(ii) # 计算MR指标 # annFile = './evaluation_script/KAIST_annotation.json' # rstFiles = './' + str(labels_dir) + '/result.txt' # phase = "Multispectral" # MR = evaluate(annFile, rstFiles, phase) # MR_all = MR['all'].summarize(0) # MR_day = MR['day'].summarize(0) # MR_night = MR['night'].summarize(0) # MR_near = MR['near'].summarize(1) # MR_medium = MR['medium'].summarize(2) # MR_far = MR['far'].summarize(3) # MR_none = MR['none'].summarize(4) # MR_partial = MR['partial'].summarize(5) # MR_heavy = MR['heavy'].summarize(6) # recall_all = 1 - MR['all'].eval['yy'][0][-1] MR_all = 0.0 MR_day = 0.0 MR_night = 0.0 MR_near = 0.0 MR_medium = 0.0 MR_far = 0.0 MR_none = 0.0 MR_partial = 0.0 MR_heavy = 0.0 recall_all = 0.0 MRresult = [MR_all, MR_day, MR_night, MR_near, MR_medium, MR_far, MR_none, MR_partial, MR_heavy, recall_all] # Compute statistics stats = [np.concatenate(x, 0) for x in zip(*stats)] # to numpy a = len(stats) b = stats[0].any() if len(stats) and stats[0].any(): tp, fp, fn, p, r, ap, f1, ap_class = ap_per_class(*stats, plot=plots, save_dir=save_dir, names=names) ap50, ap75, ap = ap[:, 0], ap[:, 5], ap.mean(1) # AP@0.5, AP@0.5:0.95 mp, mr, map50, map75, map = p.mean(), r.mean(), ap50.mean(), ap75.mean(), ap.mean() nt = np.bincount(stats[3].astype(np.int64), minlength=nc) # number of targets per class else: nt = torch.zeros(1) # Print results if nc > 1: pf = '%20s' + '%12i' * 2 + '%12.3g' * 5 # print format logger.info(pf % ('all', seen, nt.sum(), mp, mr, map50, map75, map)) else: pf = '%20s' + '%12i' * 2 + '%12.4g' * 8 # print format logger.info(pf % ('all', seen, nt.sum(), tp, fp, fn, f1, mp, mr, map50, map)) logger.info(('%20s' + '%11s' * 9) % ('MR-all', 'MR-day', 'MR-night', 'MR-near', 'MR-medium', 'MR-far', 'MR-none', 'MR-partial', 'MR-heavy', 'Recall-all')) logger.info(('%20.2f' + '%11.2f' * 9) % (MR_all * 100, MR_day * 100, MR_night * 100, MR_near * 100, MR_medium * 100, MR_far * 100, MR_none * 100, MR_partial * 100, MR_heavy * 100, recall_all * 100)) # Print results per class if (verbose or (nc < 50 and not training)) and nc > 1 and len(stats): for i, c in enumerate(ap_class): logger.info(pf % (names[c], seen, nt[c], p[i], r[i], ap50[i], ap75[i], ap[i])) # Print speeds t = tuple(x / seen * 1E3 for x in (t0, t1, t0 + t1)) + (imgsz, imgsz, batch_size) # tuple if not training: print('Speed: %.1f/%.1f/%.1f ms inference/NMS/total per %gx%g image at batch-size %g' % t) # Plots if plots: confusion_matrix.plot(save_dir=save_dir, names=list(names.values())) if wandb_logger and wandb_logger.wandb: val_batches = [wandb_logger.wandb.Image(str(f), caption=f.name) for f in sorted(save_dir.glob('test*.jpg'))] wandb_logger.log({"Validation": val_batches}) if wandb_images: wandb_logger.log({"Bounding Box Debugger/Images": wandb_images}) # Save JSON if save_json and len(jdict): w = Path(weights[0] if isinstance(weights, list) else weights).stem if weights is not None else '' # weights anno_json = '../coco/annotations/instances_val2017.json' # annotations json pred_json = str(save_dir / f"{w}_predictions.json") # predictions json print('\nEvaluating pycocotools mAP... saving %s...' % pred_json) with open(pred_json, 'w') as f: json.dump(jdict, f) try: # https://github.com/cocodataset/cocoapi/blob/master/PythonAPI/pycocoEvalDemo.ipynb from pycocotools.coco import COCO from pycocotools.cocoeval import COCOeval anno = COCO(anno_json) # init annotations api pred = anno.loadRes(pred_json) # init predictions api eval = COCOeval(anno, pred, 'bbox') if is_coco: eval.params.imgIds = [int(Path(x).stem) for x in dataloader.dataset.img_files] # image IDs to evaluate eval.evaluate() eval.accumulate() eval.summarize() map, map50 = eval.stats[:2] # update results (mAP@0.5:0.95, mAP@0.5) except Exception as e: print(f'pycocotools unable to run: {e}') # Return results model.float() # for training if not training: s = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}" if save_txt else '' print(f"Results saved to {save_dir}{s}") maps = np.zeros(nc) + map for i, c in enumerate(ap_class): maps[c] = ap[i] if not isinstance(tp, int): return (tp[0], fp[0], fn[0], f1[0], mp, mr, map50, map, *(loss.cpu() / len(dataloader)).tolist()), maps, MRresult, t else: return (tp, fp, fn, f1, mp, mr, map50, map, *(loss.cpu() / len(dataloader)).tolist()), maps, MRresult, t if __name__ == '__main__': parser = argparse.ArgumentParser(prog='test.py') parser.add_argument('--weights', nargs='+', type=str, default='/home/shen/Chenyf/exp_save/multispectral-object-detection/5l_FLIR_3class_transformerx2_avgpool+maxpool/weights/best.pt', help='model.pt path(s)') parser.add_argument('--data', type=str, default='./data/multispectral/FLIR-align-3class.yaml', help='*.data path') parser.add_argument('--batch-size', type=int, default=1, help='size of each image batch') parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)') parser.add_argument('--conf-thres', type=float, default=0.001, help='object confidence threshold') parser.add_argument('--iou-thres', type=float, default=0.5, help='IOU threshold for NMS') parser.add_argument('--task', default='val', help='train, val, test, speed or study') parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') parser.add_argument('--single-cls', action='store_true', help='treat as single-class dataset') parser.add_argument('--augment', default=False, action='store_true', help='augmented inference') parser.add_argument('--verbose', action='store_true', help='report mAP by class') parser.add_argument('--save-txt', default=True, action='store_true', help='save results to *.txt') parser.add_argument('--save-hybrid', action='store_true', help='save label+prediction hybrid results to *.txt') parser.add_argument('--save-conf', default=True, action='store_true', help='save confidences in --save-txt labels') parser.add_argument('--save-json', action='store_true', help='save a cocoapi-compatible JSON results file') parser.add_argument('--project', default='runs/test', help='save to project/name') parser.add_argument('--name', default='exp', help='save to project/name') parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment') opt = parser.parse_args() opt.save_json |= opt.data.endswith('coco.yaml') opt.data = check_file(opt.data) # check file print(opt) print(opt.data) check_requirements() p = "/home/shen/Chenyf/FLIR-align-3class/labels/test" labels_list = os.listdir(p) labels_list.sort() if opt.data in ['./data/multispectral/FLIR-align-3class.yaml', './data/multispectral/FLIR-ADAS.yaml', './data/multispectral/VEDAI.yaml']: opt.verbose = True if opt.task in ('train', 'val', 'test'): # run normally test(opt.data, opt.weights, opt.batch_size, opt.img_size, opt.conf_thres, opt.iou_thres, opt.save_json, opt.single_cls, opt.augment, opt.verbose, save_txt=opt.save_txt | opt.save_hybrid, save_hybrid=opt.save_hybrid, save_conf=opt.save_conf, opt=opt, labels_list=labels_list ) elif opt.task == 'speed': # speed benchmarks for w in opt.weights: test(opt.data, w, opt.batch_size, opt.img_size, 0.25, 0.45, save_json=False, plots=False, opt=opt) elif opt.task == 'study': # run over a range of settings and save/plot # python test.py --task study --data coco.yaml --iou 0.7 --weights yolov5s.pt yolov5m.pt yolov5l.pt yolov5x.pt x = list(range(256, 1536 + 128, 128)) # x axis (image sizes) for w in opt.weights: f = f'study_{Path(opt.data).stem}_{Path(w).stem}.txt' # filename to save to y = [] # y axis for i in x: # img-size print(f'\nRunning {f} point {i}...') r, _, t = test(opt.data, w, opt.batch_size, i, opt.conf_thres, opt.iou_thres, opt.save_json, plots=False, opt=opt) y.append(r + t) # results and times np.savetxt(f, y, fmt='%10.4g') # save os.system('zip -r study.zip study_*.txt') plot_study_txt(x=x) # plot ================================================ FILE: train.py ================================================ import argparse import logging import math import os import random import time from copy import deepcopy from pathlib import Path from threading import Thread import numpy as np import torch.distributed as dist import torch.nn as nn import torch.nn.functional as F import torch.optim as optim import torch.optim.lr_scheduler as lr_scheduler import torch.utils.data import yaml from torch.cuda import amp from torch.nn.parallel import DistributedDataParallel as DDP from torch.utils.tensorboard import SummaryWriter from tqdm import tqdm import test # import test.py to get mAP after each epoch from models.experimental import attempt_load from models.yolo_test import Model from utils.autoanchor import check_anchors from utils.datasets import create_dataloader_rgb_ir from utils.general import logger, labels_to_class_weights, increment_path, labels_to_image_weights, init_seeds, \ fitness, strip_optimizer, get_latest_run, check_dataset, check_file, check_git_status, check_img_size, \ check_requirements, print_mutation, set_logging, one_cycle, colorstr from utils.google_utils import attempt_download from utils.loss import ComputeLoss from utils.plots import plot_images, plot_labels, plot_results, plot_evolution from utils.torch_utils import ModelEMA, select_device, intersect_dicts, torch_distributed_zero_first, is_parallel from utils.wandb_logging.wandb_utils import WandbLogger, check_wandb_resume from utils.datasets import RandomSampler import global_var def train_rgb_ir(hyp, opt, device, tb_writer=None): os.environ["WANDB_MODE"] = "offline" logger.info(colorstr('hyperparameters: ') + ', '.join(f'{k}={v}' for k, v in hyp.items())) save_dir, epochs, batch_size, total_batch_size, weights, rank = \ Path(opt.save_dir), opt.epochs, opt.batch_size, opt.total_batch_size, opt.weights, opt.global_rank # Directories wdir = save_dir / 'weights' wdir.mkdir(parents=True, exist_ok=True) # make dir last = wdir / 'last.pt' best = wdir / 'best.pt' results_file = save_dir / 'results.txt' # Save run settings with open(save_dir / 'hyp.yaml', 'w') as f: yaml.safe_dump(hyp, f, sort_keys=False) with open(save_dir / 'opt.yaml', 'w') as f: yaml.safe_dump(vars(opt), f, sort_keys=False) # Configure plots = not opt.evolve # create plots cuda = device.type != 'cpu' init_seeds(seed=1 + rank, deterministic=True) with open(opt.data) as f: data_dict = yaml.safe_load(f) # data dict is_coco = opt.data.endswith('coco.yaml') # Logging- Doing this before checking the dataset. Might update data_dict loggers = {'wandb': None} # loggers dict if rank in [-1, 0]: opt.hyp = hyp # add hyperparameters run_id = torch.load(weights).get('wandb_id') if weights.endswith('.pt') and os.path.isfile(weights) else None wandb_logger = WandbLogger(opt, save_dir.stem, run_id, data_dict) loggers['wandb'] = wandb_logger.wandb data_dict = wandb_logger.data_dict if wandb_logger.wandb: weights, epochs, hyp = opt.weights, opt.epochs, opt.hyp # WandbLogger might update weights, epochs if resuming nc = 1 if opt.single_cls else int(data_dict['nc']) # number of classes names = ['item'] if opt.single_cls and len(data_dict['names']) != 1 else data_dict['names'] # class names assert len(names) == nc, '%g names found for nc=%g dataset in %s' % (len(names), nc, opt.data) # check # Model pretrained = weights.endswith('.pt') #pretrained = False if pretrained: with torch_distributed_zero_first(rank): attempt_download(weights) # download if not found locally ckpt = torch.load(weights, map_location=device) # load checkpoint model = Model(opt.cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create exclude = ['anchor'] if (opt.cfg or hyp.get('anchors')) and not opt.resume else [] # exclude keys state_dict = ckpt['model'].float().state_dict() # to FP32 state_dict = intersect_dicts(state_dict, model.state_dict(), exclude=exclude) # intersect new_state_dict = state_dict for key in list(state_dict.keys()): new_state_dict[key[:6] + str(int(key[6])+10) + key[7:]] = state_dict[key] model.load_state_dict(new_state_dict, strict=False) # load logger.info('Transferred %g/%g items from %s' % (len(state_dict), len(model.state_dict()), weights)) # report else: model = Model(opt.cfg, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create with torch_distributed_zero_first(rank): check_dataset(data_dict) # check train_path_rgb = data_dict['train_rgb'] test_path_rgb = data_dict['val_rgb'] train_path_ir = data_dict['train_ir'] test_path_ir = data_dict['val_ir'] labels_path = data_dict['path'] + '/labels/test' labels_list = os.listdir(labels_path) labels_list.sort() # Freeze freeze = [] # parameter names to freeze (full or partial) for k, v in model.named_parameters(): v.requires_grad = True # train all layers if any(x in k for x in freeze): print('freezing %s' % k) v.requires_grad = False # Optimizer nbs = 64 # nominal batch size accumulate = max(round(nbs / total_batch_size), 1) # accumulate loss before optimizing hyp['weight_decay'] *= total_batch_size * accumulate / nbs # scale weight_decay logger.info(f"Scaled weight_decay = {hyp['weight_decay']}") pg0, pg1, pg2 = [], [], [] # optimizer parameter groups for k, v in model.named_modules(): if hasattr(v, 'bias') and isinstance(v.bias, nn.Parameter): pg2.append(v.bias) # biases if isinstance(v, nn.BatchNorm2d): pg0.append(v.weight) # no decay elif hasattr(v, 'weight') and isinstance(v.weight, nn.Parameter): pg1.append(v.weight) # apply decay if opt.adam: optimizer = optim.Adam(pg0, lr=hyp['lr0'], betas=(hyp['momentum'], 0.999)) # adjust beta1 to momentum else: optimizer = optim.SGD(pg0, lr=hyp['lr0'], momentum=hyp['momentum'], nesterov=True) optimizer.add_param_group({'params': pg1, 'weight_decay': hyp['weight_decay']}) # add pg1 with weight_decay optimizer.add_param_group({'params': pg2}) # add pg2 (biases) logger.info(f"{colorstr('optimizer:')} {type(optimizer).__name__} with parameter groups " f"{len(pg0)} weight, {len(pg1)} weight (no decay), {len(pg2)} bias") del pg0, pg1, pg2 if opt.linear_lr: lf = lambda x: (1 - x / (epochs - 1)) * (1.0 - hyp['lrf']) + hyp['lrf'] # linear else: lf = one_cycle(1, hyp['lrf'], epochs) # cosine 1->hyp['lrf'] scheduler = lr_scheduler.LambdaLR(optimizer, lr_lambda=lf) # EMA ema = ModelEMA(model) if rank in [-1, 0] else None # Resume start_epoch, best_fitness = 0, 0.0 if pretrained: # Optimizer if ckpt['optimizer'] is not None: optimizer.load_state_dict(ckpt['optimizer']) best_fitness = ckpt['best_fitness'] # EMA if ema and ckpt.get('ema'): ema.ema.load_state_dict(ckpt['ema'].float().state_dict()) ema.updates = ckpt['updates'] # Results if ckpt.get('training_results') is not None: results_file.write_text(ckpt['training_results']) # write results.txt # Epochs start_epoch = ckpt['epoch'] + 1 if opt.resume: assert start_epoch > 0, '%s training to %g epochs is finished, nothing to resume.' % (weights, epochs) if epochs < start_epoch: logger.info('%s has been trained for %g epochs. Fine-tuning for %g additional epochs.' % (weights, ckpt['epoch'], epochs)) epochs += ckpt['epoch'] # finetune additional epochs del ckpt, state_dict # Image sizes gs = max(int(model.stride.max()), 32) # grid size (max stride) nl = model.model[-1].nl # number of detection layers (used for scaling hyp['obj']) # print("nl", nl) imgsz, imgsz_test = [check_img_size(x, gs) for x in opt.img_size] # verify imgsz are gs-multiples # DP mode if cuda and rank == -1 and torch.cuda.device_count() > 1: model = torch.nn.DataParallel(model) # SyncBatchNorm if opt.sync_bn and cuda and rank != -1: model = torch.nn.SyncBatchNorm.convert_sync_batchnorm(model).to(device) logger.info('Using SyncBatchNorm()') # Trainloader dataloader, dataset = create_dataloader_rgb_ir(train_path_rgb, train_path_ir, imgsz, batch_size, gs, opt, hyp=hyp, augment=True, cache=opt.cache_images, rect=opt.rect, rank=rank, world_size=opt.world_size, workers=opt.workers, image_weights=opt.image_weights, quad=opt.quad, prefix=colorstr('train: ')) mlc = np.concatenate(dataset.labels, 0)[:, 0].max() # max label class nb = len(dataloader) # number of batches assert mlc < nc, 'Label class %g exceeds nc=%g in %s. Possible class labels are 0-%g' % (mlc, nc, opt.data, nc - 1) # Process 0 if rank in [-1, 0]: testloader, testdata = create_dataloader_rgb_ir(test_path_rgb, test_path_ir,imgsz_test, 1, gs, opt, hyp=hyp, cache=opt.cache_images and not opt.notest, rect=True, rank=-1, world_size=opt.world_size, workers=opt.workers, pad=0.5, prefix=colorstr('val: ')) if not opt.resume: labels = np.concatenate(dataset.labels, 0) c = torch.tensor(labels[:, 0]) # classes # cf = torch.bincount(c.long(), minlength=nc) + 1. # frequency # model._initialize_biases(cf.to(device)) if plots: plot_labels(labels, names, save_dir, loggers) if tb_writer: tb_writer.add_histogram('classes', c, 0) # Anchors if not opt.noautoanchor: check_anchors(dataset, model=model, thr=hyp['anchor_t'], imgsz=imgsz) model.half().float() # pre-reduce anchor precision # DDP mode if cuda and rank != -1: model = DDP(model, device_ids=[opt.local_rank], output_device=opt.local_rank, # nn.MultiheadAttention incompatibility with DDP https://github.com/pytorch/pytorch/issues/26698 find_unused_parameters=any(isinstance(layer, nn.MultiheadAttention) for layer in model.modules())) # Model parameters hyp['box'] *= 3. / nl # scale to layers hyp['cls'] *= nc / 80. * 3. / nl # scale to classes and layers hyp['obj'] *= (imgsz / 640) ** 2 * 3. / nl # scale to image size and layers hyp['label_smoothing'] = opt.label_smoothing model.nc = nc # attach number of classes to model model.hyp = hyp # attach hyperparameters to model model.gr = 1.0 # iou loss ratio (obj_loss = 1.0 or iou) model.class_weights = labels_to_class_weights(dataset.labels, nc).to(device) * nc # attach class weights model.names = names # Start training t0 = time.time() nw = max(round(hyp['warmup_epochs'] * nb), 1000) # number of warmup iterations, max(3 epochs, 1k iterations) # nw = min(nw, (epochs - start_epoch) / 2 * nb) # limit warmup to < 1/2 of training maps = np.zeros(nc) # mAP per class MRresult = 0.0 results = (0, 0, 0, 0, 0, 0, 0) # P, R, mAP@.5, mAP@.5-.95, val_loss(box, obj, cls) scheduler.last_epoch = start_epoch - 1 # do not move scaler = amp.GradScaler(enabled=cuda) compute_loss = ComputeLoss(model) # init loss class logger.info(f'Image sizes {imgsz} train, {imgsz_test} test\n' f'Using {dataloader.num_workers} dataloader workers\n' f'Logging results to {save_dir}\n' f'Starting training for {epochs} epochs...') for epoch in range(start_epoch, epochs): # epoch ------------------------------------------------------------------ model.train() # Update image weights (optional) if opt.image_weights: # Generate indices if rank in [-1, 0]: cw = model.class_weights.cpu().numpy() * (1 - maps) ** 2 / nc # class weights iw = labels_to_image_weights(dataset.labels, nc=nc, class_weights=cw) # image weights dataset.indices = random.choices(range(dataset.n), weights=iw, k=dataset.n) # rand weighted idx # Broadcast if DDP if rank != -1: indices = (torch.tensor(dataset.indices) if rank == 0 else torch.zeros(dataset.n)).int() dist.broadcast(indices, 0) if rank != 0: dataset.indices = indices.cpu().numpy() # Update mosaic border # b = int(random.uniform(0.25 * imgsz, 0.75 * imgsz + gs) // gs * gs) # dataset.mosaic_border = [b - imgsz, -b] # height, width borders mloss = torch.zeros(4, device=device) # mean losses if rank != -1: dataloader.sampler.set_epoch(epoch) pbar = enumerate(dataloader) logger.info(('\n' + '%10s' * 8) % ('Epoch', 'gpu_mem', 'box', 'obj', 'cls', 'rank', 'labels', 'img_size')) if rank in [-1, 0]: pbar = tqdm(pbar, total=nb) # progress bar optimizer.zero_grad() for i, (imgs, targets, paths, _) in pbar: # batch ------------------------------------------------------------- ni = i + nb * epoch # number integrated batches (since train start) imgs = imgs.to(device, non_blocking=True).float() / 255.0 # uint8 to float32, 0-255 to 0.0-1.0 imgs_rgb = imgs[:, :3, :, :] imgs_ir = imgs[:, 3:, :, :] # FQY my code 训练数据可视化 flage_visual = global_var.get_value('flag_visual_training_dataset') if flage_visual: from torchvision import transforms unloader = transforms.ToPILImage() for num in range(batch_size): image = imgs[num, :3, :, :].cpu().clone() # clone the tensor image = image.squeeze(0) # remove the fake batch dimension image = unloader(image) image.save('example_%s_%s_%s_color.jpg'%(str(epoch), str(i), str(num))) image = imgs[num, 3:, :, :].cpu().clone() # clone the tensor image = image.squeeze(0) # remove the fake batch dimension image = unloader(image) image.save('example_%s_%s_%s_ir.jpg'%(str(epoch), str(i), str(num))) # Warmup if ni <= nw: xi = [0, nw] # x interp # model.gr = np.interp(ni, xi, [0.0, 1.0]) # iou loss ratio (obj_loss = 1.0 or iou) accumulate = max(1, np.interp(ni, xi, [1, nbs / total_batch_size]).round()) for j, x in enumerate(optimizer.param_groups): # bias lr falls from 0.1 to lr0, all other lrs rise from 0.0 to lr0 x['lr'] = np.interp(ni, xi, [hyp['warmup_bias_lr'] if j == 2 else 0.0, x['initial_lr'] * lf(epoch)]) if 'momentum' in x: x['momentum'] = np.interp(ni, xi, [hyp['warmup_momentum'], hyp['momentum']]) # Multi-scale if opt.multi_scale: sz = random.randrange(imgsz * 0.5, imgsz * 1.5 + gs) // gs * gs # size sf = sz / max(imgs.shape[2:]) # scale factor if sf != 1: ns = [math.ceil(x * sf / gs) * gs for x in imgs.shape[2:]] # new shape (stretched to gs-multiple) imgs = F.interpolate(imgs, size=ns, mode='bilinear', align_corners=False) # Forward with amp.autocast(enabled=cuda): # pred = model(imgs) # forward pred = model(imgs_rgb, imgs_ir) # forward loss, loss_items = compute_loss(pred, targets.to(device)) # loss scaled by batch_size if rank != -1: loss *= opt.world_size # gradient averaged between devices in DDP mode if opt.quad: loss *= 4. # Backward scaler.scale(loss).backward() # Optimize if ni % accumulate == 0: scaler.step(optimizer) # optimizer.step scaler.update() optimizer.zero_grad() if ema: ema.update(model) # Print if rank in [-1, 0]: mloss = (mloss * i + loss_items) / (i + 1) # update mean losses mem = '%.3gG' % (torch.cuda.memory_reserved() / 1E9 if torch.cuda.is_available() else 0) # (GB) s = ('%10s' * 2 + '%10.4g' * 6) % ('%g/%g' % (epoch, epochs - 1), mem, *mloss, targets.shape[0], imgs.shape[-1]) pbar.set_description(s) if ni < 3: f1 = save_dir / f'train_batch{ni}_vis.jpg' f2 = save_dir / f'train_batch{ni}_inf.jpg' Thread(target=plot_images, args=(imgs_rgb, targets, paths, f1), daemon=True).start() Thread(target=plot_images, args=(imgs_ir, targets, paths, f2), daemon=True).start() # end batch ------------------------------------------------------------------------------------------------ # end epoch ---------------------------------------------------------------------------------------------------- # Scheduler lr = [x['lr'] for x in optimizer.param_groups] # for tensorboard scheduler.step() # DDP process 0 or single-GPU if rank in [-1, 0]: # mAP ema.update_attr(model, include=['yaml', 'nc', 'hyp', 'gr', 'names', 'stride', 'class_weights']) final_epoch = epoch + 1 == epochs if not opt.notest or final_epoch: # Calculate mAP wandb_logger.current_epoch = epoch + 1 results, maps, MRresult, times = test.test(data_dict, batch_size=1, imgsz=imgsz_test, model=ema.ema, single_cls=opt.single_cls, dataloader=testloader, save_dir=save_dir, save_txt=True, save_conf=True, verbose=nc < 50 and final_epoch, plots=plots and final_epoch, wandb_logger=wandb_logger, compute_loss=compute_loss, is_coco=is_coco, labels_list=labels_list, ) # log keys = ['train/box_loss', 'train/obj_loss', 'train/cls_loss', 'train/rank_loss', # train loss 'TP', 'FP', 'FN', 'F1', 'metrics/precision', 'metrics/recall', 'metrics/mAP_0.5', 'metrics/mAP_0.5:0.95', # metrics 'val/box_loss', 'val/obj_loss', 'val/cls_loss', 'val/rank_loss', # val loss 'x/lr0', 'x/lr1', 'x/lr2', # learning rate 'MR_all', 'MR_day', 'MR_night', 'MR_near', 'MR_medium', 'MR_far', 'MR_none', 'MR_partial', 'MR_heavy', 'Recall_all' # MR ] vals = list(mloss) + list(results) + lr + MRresult dicts = {k: v for k, v in zip(keys, vals)} # dict file = save_dir / 'results.csv' n = len(dicts) + 1 # number of cols s = '' if file.exists() else (('%s,' * n % tuple(['epoch'] + keys)).rstrip(',') + '\n') # add header with open(file, 'a') as f: f.write(s + ('%g,' * n % tuple([epoch] + vals)).rstrip(',') + '\n') # Update best mAP fi = fitness(np.array(results).reshape(1, -1)) # weighted combination of [P, R, mAP@.5, mAP@.5-.95] if fi > best_fitness: best_fitness = fi #wandb_logger.end_epoch(best_result=best_fitness == fi) # fi = MRresult[0] # if fi < best_fitness: # best_fitness = fi # Save model if (not opt.nosave) or (final_epoch and not opt.evolve): # if save ckpt = {'epoch': epoch, 'best_fitness': best_fitness, 'model': deepcopy(model.module if is_parallel(model) else model).half(), 'ema': deepcopy(ema.ema).half(), 'updates': ema.updates, 'optimizer': optimizer.state_dict(), 'wandb_id': wandb_logger.wandb_run.id if wandb_logger.wandb else None} # Save last, best and delete torch.save(ckpt, last) if best_fitness == fi: torch.save(ckpt, best) if wandb_logger.wandb: if ((epoch + 1) % opt.save_period == 0 and not final_epoch) and opt.save_period != -1: wandb_logger.log_model( last.parent, opt, epoch, fi, best_model=best_fitness == fi) del ckpt # end epoch ---------------------------------------------------------------------------------------------------- # end training t1 = time.time() t = t1 - t0 if rank in [-1, 0]: # Plots if plots: plot_results(file=save_dir / 'results.csv') # save as results.png if wandb_logger.wandb: files = ['results.png', 'confusion_matrix.png', *[f'{x}_curve.png' for x in ('F1', 'PR', 'P', 'R')]] wandb_logger.log({"Results": [wandb_logger.wandb.Image(str(save_dir / f), caption=f) for f in files if (save_dir / f).exists()]}) # Test best.pt logger.info('%g epochs completed in %.3f hours.\n' % (epoch - start_epoch + 1, (time.time() - t0) / 3600)) for m in (last, best) if best.exists() else (last): # speed, mAP tests results, _, MRresult, _ = test.test(opt.data, batch_size=1, imgsz=imgsz_test, conf_thres=0.001, iou_thres=0.5, model=attempt_load(m, device).half(), single_cls=opt.single_cls, dataloader=testloader, save_dir=save_dir, save_txt=True, save_conf=True, save_json=False, plots=False, is_coco=is_coco, labels_list=labels_list, verbose=nc > 1, ) # Strip optimizers final = best if best.exists() else last # final model for f in last, best: if f.exists(): strip_optimizer(f) # strip optimizers if opt.bucket: os.system(f'gsutil cp {final} gs://{opt.bucket}/weights') # upload if wandb_logger.wandb and not opt.evolve: # Log the stripped model wandb_logger.wandb.log_artifact(str(final), type='model', name='run_' + wandb_logger.wandb_run.id + '_model', aliases=['last', 'best', 'stripped']) wandb_logger.finish_run() else: dist.destroy_process_group() torch.cuda.empty_cache() return results if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--weights', type=str, default='yolov5l.pt', help='initial weights path') parser.add_argument('--cfg', type=str, default='./models/transformer/yolov5l_Transfusion_FLIR.yaml', help='model.yaml path') parser.add_argument('--data', type=str, default='./data/multispectral/FLIR-align-3class.yaml', help='data.yaml path') parser.add_argument('--hyp', type=str, default='data/hyp.scratch.yaml', help='hyperparameters path') parser.add_argument('--epochs', type=int, default=60) parser.add_argument('--batch-size', type=int, default=8, help='total batch size for all GPUs') parser.add_argument('--img-size', nargs='+', type=int, default=[640, 640], help='[train, test] image sizes') parser.add_argument('--rect', action='store_true', help='rectangular training') parser.add_argument('--resume', nargs='?', const=True, default=False, help='resume most recent training') parser.add_argument('--nosave', action='store_true', help='only save final checkpoint') parser.add_argument('--notest', action='store_true', help='only test final epoch') parser.add_argument('--noautoanchor', action='store_true', help='disable autoanchor check') parser.add_argument('--evolve', action='store_true', help='evolve hyperparameters') parser.add_argument('--bucket', type=str, default='', help='gsutil bucket') parser.add_argument('--cache-images', action='store_true', help='cache images for faster training') parser.add_argument('--image-weights', action='store_true', help='use weighted image selection for training') parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') parser.add_argument('--multi-scale', action='store_true', help='vary img-size +/- 50%%') parser.add_argument('--single-cls', action='store_true', help='train multi-class data as single-class') parser.add_argument('--adam', action='store_true', help='use torch.optim.Adam() optimizer') parser.add_argument('--sync-bn', action='store_true', help='use SyncBatchNorm, only available in DDP mode') parser.add_argument('--local_rank', type=int, default=-1, help='DDP parameter, do not modify') parser.add_argument('--workers', type=int, default=0, help='maximum number of dataloader workers') parser.add_argument('--project', default='runs/train', help='save to project/name') parser.add_argument('--entity', default=None, help='W&B entity') parser.add_argument('--name', default='exp', help='save to project/name') parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment') parser.add_argument('--quad', action='store_true', help='quad dataloader') parser.add_argument('--linear-lr', action='store_true', help='linear LR') parser.add_argument('--label-smoothing', type=float, default=0.0, help='Label smoothing epsilon') parser.add_argument('--upload_dataset', action='store_true', help='Upload dataset as W&B artifact table') parser.add_argument('--bbox_interval', type=int, default=-1, help='Set bounding-box image logging interval for W&B') parser.add_argument('--save_period', type=int, default=-1, help='Log model after every "save_period" epoch') parser.add_argument('--artifact_alias', type=str, default="latest", help='version of dataset artifact to be used') opt = parser.parse_args() #opt.rect = False # FQY Flag for visualizing the paired training imgs global_var._init() global_var.set_value('flag_visual_training_dataset', False) # Set DDP variables opt.world_size = int(os.environ['WORLD_SIZE']) if 'WORLD_SIZE' in os.environ else 1 opt.global_rank = int(os.environ['RANK']) if 'RANK' in os.environ else -1 set_logging(opt.global_rank) if opt.global_rank in [-1, 0]: # check_git_status() check_requirements() # Resume wandb_run = check_wandb_resume(opt) if opt.resume and not wandb_run: # resume an interrupted run ckpt = opt.resume if isinstance(opt.resume, str) else get_latest_run() # specified or most recent path assert os.path.isfile(ckpt), 'ERROR: --resume checkpoint does not exist' apriori = opt.global_rank, opt.local_rank with open(Path(ckpt).parent.parent / 'opt.yaml') as f: opt = argparse.Namespace(**yaml.safe_load(f)) # replace opt.cfg, opt.weights, opt.resume, opt.batch_size, opt.global_rank, opt.local_rank = \ '', ckpt, True, opt.total_batch_size, *apriori # reinstate logger.info('Resuming training from %s' % ckpt) else: # opt.hyp = opt.hyp or ('hyp.finetune.yaml' if opt.weights else 'hyp.scratch.yaml') opt.data, opt.cfg, opt.hyp = check_file(opt.data), check_file(opt.cfg), check_file(opt.hyp) # check files assert len(opt.cfg) or len(opt.weights), 'either --cfg or --weights must be specified' opt.img_size.extend([opt.img_size[-1]] * (2 - len(opt.img_size))) # extend to 2 sizes (train, test) opt.name = 'evolve' if opt.evolve else opt.name opt.save_dir = str(increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok | opt.evolve)) # DDP mode opt.total_batch_size = opt.batch_size device = select_device(opt.device, batch_size=opt.batch_size) if opt.local_rank != -1: assert torch.cuda.device_count() > opt.local_rank torch.cuda.set_device(opt.local_rank) device = torch.device('cuda', opt.local_rank) dist.init_process_group(backend='nccl', init_method='env://') # distributed backend assert opt.batch_size % opt.world_size == 0, '--batch-size must be multiple of CUDA device count' opt.batch_size = opt.total_batch_size // opt.world_size # Hyperparameters with open(opt.hyp) as f: hyp = yaml.safe_load(f) # load hyps # Train logger.info(opt) if not opt.evolve: tb_writer = None # init loggers if opt.global_rank in [-1, 0]: prefix = colorstr('tensorboard: ') logger.info(f"{prefix}Start with 'tensorboard --logdir {opt.project}', view at http://localhost:6006/") tb_writer = SummaryWriter(opt.save_dir) # Tensorboard train_rgb_ir(hyp, opt, device, tb_writer) # Evolve hyperparameters (optional) else: # Hyperparameter evolution metadata (mutation scale 0-1, lower_limit, upper_limit) meta = {'lr0': (1, 1e-5, 1e-1), # initial learning rate (SGD=1E-2, Adam=1E-3) 'lrf': (1, 0.01, 1.0), # final OneCycleLR learning rate (lr0 * lrf) 'momentum': (0.3, 0.6, 0.98), # SGD momentum/Adam beta1 'weight_decay': (1, 0.0, 0.001), # optimizer weight decay 'warmup_epochs': (1, 0.0, 5.0), # warmup epochs (fractions ok) 'warmup_momentum': (1, 0.0, 0.95), # warmup initial momentum 'warmup_bias_lr': (1, 0.0, 0.2), # warmup initial bias lr 'box': (1, 0.02, 0.2), # box loss gain 'cls': (1, 0.2, 4.0), # cls loss gain 'cls_pw': (1, 0.5, 2.0), # cls BCELoss positive_weight 'obj': (1, 0.2, 4.0), # obj loss gain (scale with pixels) 'obj_pw': (1, 0.5, 2.0), # obj BCELoss positive_weight 'iou_t': (0, 0.1, 0.7), # IoU training threshold 'anchor_t': (1, 2.0, 8.0), # anchor-multiple threshold 'anchors': (2, 2.0, 10.0), # anchors per output grid (0 to ignore) 'fl_gamma': (0, 0.0, 2.0), # focal loss gamma (efficientDet default gamma=1.5) 'hsv_h': (1, 0.0, 0.1), # image HSV-Hue augmentation (fraction) 'hsv_s': (1, 0.0, 0.9), # image HSV-Saturation augmentation (fraction) 'hsv_v': (1, 0.0, 0.9), # image HSV-Value augmentation (fraction) 'degrees': (1, 0.0, 45.0), # image rotation (+/- deg) 'translate': (1, 0.0, 0.9), # image translation (+/- fraction) 'scale': (1, 0.0, 0.9), # image scale (+/- gain) 'shear': (1, 0.0, 10.0), # image shear (+/- deg) 'perspective': (0, 0.0, 0.001), # image perspective (+/- fraction), range 0-0.001 'flipud': (1, 0.0, 1.0), # image flip up-down (probability) 'fliplr': (0, 0.0, 1.0), # image flip left-right (probability) 'mosaic': (1, 0.0, 1.0), # image mixup (probability) 'mixup': (1, 0.0, 1.0)} # image mixup (probability) assert opt.local_rank == -1, 'DDP mode not implemented for --evolve' opt.notest, opt.nosave = True, True # only test/save final epoch # ei = [isinstance(x, (int, float)) for x in hyp.values()] # evolvable indices yaml_file = Path(opt.save_dir) / 'hyp_evolved.yaml' # save best result here if opt.bucket: os.system('gsutil cp gs://%s/evolve.txt .' % opt.bucket) # download evolve.txt if exists for _ in range(300): # generations to evolve if Path('evolve.txt').exists(): # if evolve.txt exists: select best hyps and mutate # Select parent(s) parent = 'single' # parent selection method: 'single' or 'weighted' x = np.loadtxt('evolve.txt', ndmin=2) n = min(5, len(x)) # number of previous results to consider x = x[np.argsort(-fitness(x))][:n] # top n mutations w = fitness(x) - fitness(x).min() # weights if parent == 'single' or len(x) == 1: # x = x[random.randint(0, n - 1)] # random selection x = x[random.choices(range(n), weights=w)[0]] # weighted selection elif parent == 'weighted': x = (x * w.reshape(n, 1)).sum(0) / w.sum() # weighted combination # Mutate mp, s = 0.8, 0.2 # mutation probability, sigma npr = np.random npr.seed(int(time.time())) g = np.array([x[0] for x in meta.values()]) # gains 0-1 ng = len(meta) v = np.ones(ng) while all(v == 1): # mutate until a change occurs (prevent duplicates) v = (g * (npr.random(ng) < mp) * npr.randn(ng) * npr.random() * s + 1).clip(0.3, 3.0) for i, k in enumerate(hyp.keys()): # plt.hist(v.ravel(), 300) hyp[k] = float(x[i + 7] * v[i]) # mutate # Constrain to limits for k, v in meta.items(): hyp[k] = max(hyp[k], v[1]) # lower limit hyp[k] = min(hyp[k], v[2]) # upper limit hyp[k] = round(hyp[k], 5) # significant digits # Train mutation results = train(hyp.copy(), opt, device) # Write mutation results print_mutation(hyp.copy(), results, yaml_file, opt.bucket) # Plot results plot_evolution(yaml_file) print(f'Hyperparameter evolution complete. Best results saved as: {yaml_file}\n' f'Command to train a new model with these hyperparameters: $ python train.py --hyp {yaml_file}') ================================================ FILE: utils/__init__.py ================================================ ================================================ FILE: utils/activations.py ================================================ # Activation functions import torch import torch.nn as nn import torch.nn.functional as F # SiLU https://arxiv.org/pdf/1606.08415.pdf ---------------------------------------------------------------------------- class SiLU(nn.Module): # export-friendly version of nn.SiLU() @staticmethod def forward(x): return x * torch.sigmoid(x) class Hardswish(nn.Module): # export-friendly version of nn.Hardswish() @staticmethod def forward(x): # return x * F.hardsigmoid(x) # for torchscript and CoreML return x * F.hardtanh(x + 3, 0., 6.) / 6. # for torchscript, CoreML and ONNX # Mish https://github.com/digantamisra98/Mish -------------------------------------------------------------------------- class Mish(nn.Module): @staticmethod def forward(x): return x * F.softplus(x).tanh() class MemoryEfficientMish(nn.Module): class F(torch.autograd.Function): @staticmethod def forward(ctx, x): ctx.save_for_backward(x) return x.mul(torch.tanh(F.softplus(x))) # x * tanh(ln(1 + exp(x))) @staticmethod def backward(ctx, grad_output): x = ctx.saved_tensors[0] sx = torch.sigmoid(x) fx = F.softplus(x).tanh() return grad_output * (fx + x * sx * (1 - fx * fx)) def forward(self, x): return self.F.apply(x) # FReLU https://arxiv.org/abs/2007.11824 ------------------------------------------------------------------------------- class FReLU(nn.Module): def __init__(self, c1, k=3): # ch_in, kernel super().__init__() self.conv = nn.Conv2d(c1, c1, k, 1, 1, groups=c1, bias=False) self.bn = nn.BatchNorm2d(c1) def forward(self, x): return torch.max(x, self.bn(self.conv(x))) # ACON https://arxiv.org/pdf/2009.04759.pdf ---------------------------------------------------------------------------- class AconC(nn.Module): r""" ACON activation (activate or not). AconC: (p1*x-p2*x) * sigmoid(beta*(p1*x-p2*x)) + p2*x, beta is a learnable parameter according to "Activate or Not: Learning Customized Activation" . """ def __init__(self, c1): super().__init__() self.p1 = nn.Parameter(torch.randn(1, c1, 1, 1)) self.p2 = nn.Parameter(torch.randn(1, c1, 1, 1)) self.beta = nn.Parameter(torch.ones(1, c1, 1, 1)) def forward(self, x): dpx = (self.p1 - self.p2) * x return dpx * torch.sigmoid(self.beta * dpx) + self.p2 * x class MetaAconC(nn.Module): r""" ACON activation (activate or not). MetaAconC: (p1*x-p2*x) * sigmoid(beta*(p1*x-p2*x)) + p2*x, beta is generated by a small network according to "Activate or Not: Learning Customized Activation" . """ def __init__(self, c1, k=1, s=1, r=16): # ch_in, kernel, stride, r super().__init__() c2 = max(r, c1 // r) self.p1 = nn.Parameter(torch.randn(1, c1, 1, 1)) self.p2 = nn.Parameter(torch.randn(1, c1, 1, 1)) self.fc1 = nn.Conv2d(c1, c2, k, s, bias=True) self.fc2 = nn.Conv2d(c2, c1, k, s, bias=True) # self.bn1 = nn.BatchNorm2d(c2) # self.bn2 = nn.BatchNorm2d(c1) def forward(self, x): y = x.mean(dim=2, keepdims=True).mean(dim=3, keepdims=True) # batch-size 1 bug/instabilities https://github.com/ultralytics/yolov5/issues/2891 # beta = torch.sigmoid(self.bn2(self.fc2(self.bn1(self.fc1(y))))) # bug/unstable beta = torch.sigmoid(self.fc2(self.fc1(y))) # bug patch BN layers removed dpx = (self.p1 - self.p2) * x return dpx * torch.sigmoid(beta * dpx) + self.p2 * x ================================================ FILE: utils/autoanchor.py ================================================ # Auto-anchor utils import numpy as np import torch import yaml from scipy.cluster.vq import kmeans from tqdm import tqdm from utils.general import colorstr def check_anchor_order(m): # Check anchor order against stride order for YOLOv5 Detect() module m, and correct if necessary a = m.anchor_grid.prod(-1).view(-1) # anchor area da = a[-1] - a[0] # delta a ds = m.stride[-1] - m.stride[0] # delta s if da.sign() != ds.sign(): # same order print('Reversing anchor order') m.anchors[:] = m.anchors.flip(0) m.anchor_grid[:] = m.anchor_grid.flip(0) def check_anchors(dataset, model, thr=4.0, imgsz=640): # Check anchor fit to data, recompute if necessary prefix = colorstr('autoanchor: ') print(f'\n{prefix}Analyzing anchors... ', end='') m = model.module.model[-1] if hasattr(model, 'module') else model.model[-1] # Detect() shapes = imgsz * dataset.shapes / dataset.shapes.max(1, keepdims=True) scale = np.random.uniform(0.9, 1.1, size=(shapes.shape[0], 1)) # augment scale wh = torch.tensor(np.concatenate([l[:, 3:5] * s for s, l in zip(shapes * scale, dataset.labels)])).float() # wh def metric(k): # compute metric r = wh[:, None] / k[None] x = torch.min(r, 1. / r).min(2)[0] # ratio metric best = x.max(1)[0] # best_x aat = (x > 1. / thr).float().sum(1).mean() # anchors above threshold bpr = (best > 1. / thr).float().mean() # best possible recall return bpr, aat anchors = m.anchor_grid.clone().cpu().view(-1, 2) # current anchors bpr, aat = metric(anchors) print(f'anchors/target = {aat:.2f}, Best Possible Recall (BPR) = {bpr:.4f}', end='') if bpr < 0.98: # threshold to recompute print('. Attempting to improve anchors, please wait...') na = m.anchor_grid.numel() // 2 # number of anchors try: anchors = kmean_anchors(dataset, n=na, img_size=imgsz, thr=thr, gen=1000, verbose=False) except Exception as e: print(f'{prefix}ERROR: {e}') new_bpr = metric(anchors)[0] if new_bpr > bpr: # replace anchors anchors = torch.tensor(anchors, device=m.anchors.device).type_as(m.anchors) m.anchor_grid[:] = anchors.clone().view_as(m.anchor_grid) # for inference m.anchors[:] = anchors.clone().view_as(m.anchors) / m.stride.to(m.anchors.device).view(-1, 1, 1) # loss check_anchor_order(m) print(f'{prefix}New anchors saved to model. Update model *.yaml to use these anchors in the future.') else: print(f'{prefix}Original anchors better than new anchors. Proceeding with original anchors.') print('') # newline def check_anchors_rgb_ir(dataset, model, thr=4.0, imgsz=640): # Check anchor fit to data, recompute if necessary prefix = colorstr('autoanchor: ') print(f'\n{prefix}Analyzing anchors... ', end='') # m = model.module.model[-1] if hasattr(model, 'module') else model.model[-1] # Detect() m = list(model.model.children())[-1] print(m) shapes = imgsz * dataset.shapes / dataset.shapes.max(1, keepdims=True) scale = np.random.uniform(0.9, 1.1, size=(shapes.shape[0], 1)) # augment scale wh = torch.tensor(np.concatenate([l[:, 3:5] * s for s, l in zip(shapes * scale, dataset.labels)])).float() # wh def metric(k): # compute metric r = wh[:, None] / k[None] x = torch.min(r, 1. / r).min(2)[0] # ratio metric best = x.max(1)[0] # best_x aat = (x > 1. / thr).float().sum(1).mean() # anchors above threshold bpr = (best > 1. / thr).float().mean() # best possible recall return bpr, aat anchors = m.anchor_grid.clone().cpu().view(-1, 2) # current anchors bpr, aat = metric(anchors) print(f'anchors/target = {aat:.2f}, Best Possible Recall (BPR) = {bpr:.4f}', end='') if bpr < 0.98: # threshold to recompute print('. Attempting to improve anchors, please wait...') na = m.anchor_grid.numel() // 2 # number of anchors try: anchors = kmean_anchors(dataset, n=na, img_size=imgsz, thr=thr, gen=1000, verbose=False) except Exception as e: print(f'{prefix}ERROR: {e}') new_bpr = metric(anchors)[0] if new_bpr > bpr: # replace anchors anchors = torch.tensor(anchors, device=m.anchors.device).type_as(m.anchors) m.anchor_grid[:] = anchors.clone().view_as(m.anchor_grid) # for inference m.anchors[:] = anchors.clone().view_as(m.anchors) / m.stride.to(m.anchors.device).view(-1, 1, 1) # loss check_anchor_order(m) print(f'{prefix}New anchors saved to model. Update model *.yaml to use these anchors in the future.') else: print(f'{prefix}Original anchors better than new anchors. Proceeding with original anchors.') print('') # newline def kmean_anchors(path='./data/coco128.yaml', n=9, img_size=640, thr=4.0, gen=1000, verbose=True): """ Creates kmeans-evolved anchors from training dataset Arguments: path: path to dataset *.yaml, or a loaded dataset n: number of anchors img_size: image size used for training thr: anchor-label wh ratio threshold hyperparameter hyp['anchor_t'] used for training, default=4.0 gen: generations to evolve anchors using genetic algorithm verbose: print all results Return: k: kmeans evolved anchors Usage: from utils.autoanchor import *; _ = kmean_anchors() """ thr = 1. / thr prefix = colorstr('autoanchor: ') def metric(k, wh): # compute metrics r = wh[:, None] / k[None] x = torch.min(r, 1. / r).min(2)[0] # ratio metric # x = wh_iou(wh, torch.tensor(k)) # iou metric return x, x.max(1)[0] # x, best_x def anchor_fitness(k): # mutation fitness _, best = metric(torch.tensor(k, dtype=torch.float32), wh) return (best * (best > thr).float()).mean() # fitness def print_results(k): k = k[np.argsort(k.prod(1))] # sort small to large x, best = metric(k, wh0) bpr, aat = (best > thr).float().mean(), (x > thr).float().mean() * n # best possible recall, anch > thr print(f'{prefix}thr={thr:.2f}: {bpr:.4f} best possible recall, {aat:.2f} anchors past thr') print(f'{prefix}n={n}, img_size={img_size}, metric_all={x.mean():.3f}/{best.mean():.3f}-mean/best, ' f'past_thr={x[x > thr].mean():.3f}-mean: ', end='') for i, x in enumerate(k): print('%i,%i' % (round(x[0]), round(x[1])), end=', ' if i < len(k) - 1 else '\n') # use in *.cfg return k if isinstance(path, str): # *.yaml file with open(path) as f: data_dict = yaml.safe_load(f) # model dict from utils.datasets import LoadImagesAndLabels dataset = LoadImagesAndLabels(data_dict['train'], augment=True, rect=True) else: dataset = path # dataset # Get label wh shapes = img_size * dataset.shapes / dataset.shapes.max(1, keepdims=True) wh0 = np.concatenate([l[:, 3:5] * s for s, l in zip(shapes, dataset.labels)]) # wh # Filter i = (wh0 < 3.0).any(1).sum() if i: print(f'{prefix}WARNING: Extremely small objects found. {i} of {len(wh0)} labels are < 3 pixels in size.') wh = wh0[(wh0 >= 2.0).any(1)] # filter > 2 pixels # wh = wh * (np.random.rand(wh.shape[0], 1) * 0.9 + 0.1) # multiply by random scale 0-1 # Kmeans calculation print(f'{prefix}Running kmeans for {n} anchors on {len(wh)} points...') s = wh.std(0) # sigmas for whitening k, dist = kmeans(wh / s, n, iter=30) # points, mean distance assert len(k) == n, print(f'{prefix}ERROR: scipy.cluster.vq.kmeans requested {n} points but returned only {len(k)}') k *= s wh = torch.tensor(wh, dtype=torch.float32) # filtered wh0 = torch.tensor(wh0, dtype=torch.float32) # unfiltered k = print_results(k) # Plot # k, d = [None] * 20, [None] * 20 # for i in tqdm(range(1, 21)): # k[i-1], d[i-1] = kmeans(wh / s, i) # points, mean distance # fig, ax = plt.subplots(1, 2, figsize=(14, 7), tight_layout=True) # ax = ax.ravel() # ax[0].plot(np.arange(1, 21), np.array(d) ** 2, marker='.') # fig, ax = plt.subplots(1, 2, figsize=(14, 7)) # plot wh # ax[0].hist(wh[wh[:, 0]<100, 0],400) # ax[1].hist(wh[wh[:, 1]<100, 1],400) # fig.savefig('wh.png', dpi=200) # Evolve npr = np.random f, sh, mp, s = anchor_fitness(k), k.shape, 0.9, 0.1 # fitness, generations, mutation prob, sigma pbar = tqdm(range(gen), desc=f'{prefix}Evolving anchors with Genetic Algorithm:') # progress bar for _ in pbar: v = np.ones(sh) while (v == 1).all(): # mutate until a change occurs (prevent duplicates) v = ((npr.random(sh) < mp) * npr.random() * npr.randn(*sh) * s + 1).clip(0.3, 3.0) kg = (k.copy() * v).clip(min=2.0) fg = anchor_fitness(kg) if fg > f: f, k = fg, kg.copy() pbar.desc = f'{prefix}Evolving anchors with Genetic Algorithm: fitness = {f:.4f}' if verbose: print_results(k) return print_results(k) ================================================ FILE: utils/aws/__init__.py ================================================ ================================================ FILE: utils/aws/mime.sh ================================================ # AWS EC2 instance startup 'MIME' script https://aws.amazon.com/premiumsupport/knowledge-center/execute-user-data-ec2/ # This script will run on every instance restart, not only on first start # --- DO NOT COPY ABOVE COMMENTS WHEN PASTING INTO USERDATA --- Content-Type: multipart/mixed; boundary="//" MIME-Version: 1.0 --// Content-Type: text/cloud-config; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cloud-config.txt" #cloud-config cloud_final_modules: - [scripts-user, always] --// Content-Type: text/x-shellscript; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="userdata.txt" #!/bin/bash # --- paste contents of userdata.sh here --- --// ================================================ FILE: utils/aws/resume.py ================================================ # Resume all interrupted trainings in yolov5/ dir including DDP trainings # Usage: $ python utils/aws/resume.py import os import sys from pathlib import Path import torch import yaml sys.path.append('./') # to run '$ python *.py' files in subdirectories port = 0 # --master_port path = Path('').resolve() for last in path.rglob('*/**/last.pt'): ckpt = torch.load(last) if ckpt['optimizer'] is None: continue # Load opt.yaml with open(last.parent.parent / 'opt.yaml') as f: opt = yaml.safe_load(f) # Get device count d = opt['device'].split(',') # devices nd = len(d) # number of devices ddp = nd > 1 or (nd == 0 and torch.cuda.device_count() > 1) # distributed data parallel if ddp: # multi-GPU port += 1 cmd = f'python -m torch.distributed.launch --nproc_per_node {nd} --master_port {port} train.py --resume {last}' else: # single-GPU cmd = f'python train.py --resume {last}' cmd += ' > /dev/null 2>&1 &' # redirect output to dev/null and run in daemon thread print(cmd) os.system(cmd) ================================================ FILE: utils/aws/userdata.sh ================================================ #!/bin/bash # AWS EC2 instance startup script https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html # This script will run only once on first instance start (for a re-start script see mime.sh) # /home/ubuntu (ubuntu) or /home/ec2-user (amazon-linux) is working dir # Use >300 GB SSD cd home/ubuntu if [ ! -d yolov5 ]; then echo "Running first-time script." # install dependencies, download COCO, pull Docker git clone https://github.com/ultralytics/yolov5 && sudo chmod -R 777 yolov5 cd yolov5 bash data/scripts/get_coco.sh && echo "Data done." & sudo docker pull ultralytics/yolov5:latest && echo "Docker done." & python -m pip install --upgrade pip && pip install -r requirements.txt && python detect.py && echo "Requirements done." & wait && echo "All tasks done." # finish background tasks else echo "Running re-start script." # resume interrupted runs i=0 list=$(sudo docker ps -qa) # container list i.e. $'one\ntwo\nthree\nfour' while IFS= read -r id; do ((i++)) echo "restarting container $i: $id" sudo docker start $id # sudo docker exec -it $id python train.py --resume # single-GPU sudo docker exec -d $id python utils/aws/resume.py # multi-scenario done <<<"$list" fi ================================================ FILE: utils/confluence.py ================================================ import cv2 import numpy as np import torch import random def xywh2xyxy(x): # Transform box coordinates from [x, y, w, h] to [x1, y1, x2, y2] (where xy1=top-left, xy2=bottom-right) y = torch.zeros_like(x) if isinstance(x, torch.Tensor) else np.zeros_like(x) y[:, 0] = x[:, 0] - x[:, 2] / 2 # top left x y[:, 1] = x[:, 1] - x[:, 3] / 2 # top left y y[:, 2] = x[:, 0] + x[:, 2] / 2 # bottom right x y[:, 3] = x[:, 1] + x[:, 3] / 2 # bottom right y return y def scale_coords_x(img1_shape, coords, img0_shape): scale_x = img1_shape[1] / img0_shape[1] scale_y = img1_shape[0] / img0_shape[0] coords[:, [0, 2]] /= scale_x coords[:, [1, 3]] /= scale_y clip_coords(coords, img0_shape) return coords def clip_coords(boxes, img_shape): # Clip bounding xyxy bounding boxes to image shape (height, width) boxes[:, 0] = np.clip(boxes[:, 0], 0, img_shape[1]) # x1 boxes[:, 1] = np.clip(boxes[:, 1], 0, img_shape[0]) # y1 boxes[:, 2] = np.clip(boxes[:, 2], 0, img_shape[1]) # x2 boxes[:, 3] = np.clip(boxes[:, 3], 0, img_shape[0]) # y2 def plot_one_box(x, img, color=None, label=None, line_thickness=None): # Plots one bounding box on image img tl = line_thickness or round(0.002 * (img.shape[0] + img.shape[1]) / 2) + 1 # line/font thickness color = color or [random.randint(0, 255) for _ in range(3)] c1, c2 = (int(x[0]), int(x[1])), (int(x[2]), int(x[3])) cv2.rectangle(img, c1, c2, color, thickness=tl) if label: tf = max(tl - 1, 1) # font thickness t_size = cv2.getTextSize(label, 0, fontScale=tl / 3, thickness=tf)[0] c2 = c1[0] + t_size[0], c1[1] - t_size[1] - 3 cv2.rectangle(img, c1, c2, color, -1) # filled cv2.putText(img, label, (c1[0], c1[1] - 2), 0, tl / 3, [225, 255, 255], thickness=tf, lineType=cv2.LINE_AA) # work for YOLOV3 or YOLOV4 def confluence_process(prediction, conf_thres=0.1, p_thres=0.6): """Performs Confluence on inference results the prediction: (bs, anchors*grid*grid, xywh + confidence + classes) , type: torch.tensor Returns: detections with shape: nx6 (x1, y1, x2, y2, conf, cls) """ if prediction.dtype is torch.float16: prediction = prediction.float() # to FP32 nc = prediction[0].shape[1] - 5 # number of classes xc = prediction[..., 4] > conf_thres # candidates # Settings max_det = 300 # maximum number of detections per image time_limit = 10.0 # seconds to quit after redundant = True # require redundant detections multi_label = nc > 1 # multiple labels per box (adds 0.5ms/img) #t = time.time() output = [None] * prediction.shape[0] for xi, x in enumerate(prediction): # image index, image inference # Apply constraints x = x[xc[xi]] # confidence # If none remain process next image if not x.shape[0]: continue # Compute conf x[:, 5:] *= x[:, 4:5] # conf = obj_conf * cls_conf # Box (center x, center y, width, height) to (x1, y1, x2, y2) box = xywh2xyxy(x[:, :4]) # Detections matrix nx6 (xyxy, conf, cls) if multi_label: i, j = (x[:, 5:] > conf_thres).nonzero().t() x = torch.cat((box[i], x[i, j + 5, None], j[:, None].float()), 1) else: # best class only conf, j = x[:, 5:].max(1, keepdim=True) x = torch.cat((box, conf, j.float()), 1)[conf.view(-1) > conf_thres] # If none remain process next image n = x.shape[0] # number of boxes if not n: continue # confluence dets = x.cpu().numpy() i = confluence(dets, nc, p_thres) output[xi] = x[i] #if (time.time() - t) > time_limit: # break # time limit exceeded return output def confluence(prediction, class_num, p_thres=0.6): """Performs Confluence on inference results the prediction: (n, xyxy + confidence + classID), type: numpy.array Returns: the index of the predicetion. """ index = np.arange(0, len(prediction), 1).reshape(-1,1) infos = np.concatenate((prediction, index), 1) keep = [] for c in range(class_num): pcs = infos[infos[:, 5] == c] while (len(pcs)): n = len(pcs) xs = pcs[:, [0, 2]] ys = pcs[:, [1, 3]] ps = [] # 遍历 pcs,计算每一个box 和其余 box 的 p 值,然后聚类成簇,再根据 wp 挑出 best confluence_min = 10000 best = None for i, pc in enumerate(pcs): if (n == 1): best = 0 break index_other = [j for j in range(n) if j!= i] x_t = xs[i] x_t = np.tile(x_t, (n-1, 1)) x_other = xs[index_other] x_all = np.concatenate((x_t, x_other), 1) y_t = ys[i] y_t = np.tile(y_t, (n-1, 1)) y_other = ys[index_other] y_all = np.concatenate((y_t, y_other), 1) # normalization xmin = x_all.min(1).reshape(-1, 1) xmax = x_all.max(1).reshape(-1, 1) ymin = y_all.min(1).reshape(-1, 1) ymax = y_all.max(1).reshape(-1, 1) x_all = (x_all - xmin)/(xmax - xmin) y_all = (y_all - ymin)/(ymax - ymin) # Manhattan Distance p = abs(x_all[:,0] - x_all[:,2]) + abs(x_all[:,1] - x_all[:,3]) + \ abs(y_all[:,0] - y_all[:,2]) + abs(y_all[:,1] - y_all[:,3]) ps.append(p) # wp wp = p / pc[4] wp = wp[p < 2] if (len(wp) == 0): value = 0 else: value = wp.min() # select the bbox which has the smallest wp as the best bbox if (value < confluence_min): confluence_min = value best = i keep.append(int(pcs[best][6])) if (len(ps) > 0): p = ps[best] index_ = np.where(p < p_thres)[0] index_ = [i if i < best else i +1 for i in index_] else: index_ = [] # delect the bboxes whose Manhattan Distance is below the predefined MD index_eff = [j for j in range(n) if (j != best and j not in index_)] pcs = pcs[index_eff] keep = np.unique(keep) return keep # test the confluence def test(): colors = [[0, 0, 255], [0, 255, 0], [255, 0, 0]] img = cv2.imread('./data/test.png') img = cv2.resize(img, (1080, 720)) prediction = np.loadtxt('./data/prediction.txt') nc = 3 wp_thres = 0.6 i = confluence(prediction, nc, wp_thres) print(i) print(np.shape((prediction))) output = prediction[i] if output is not None and len(output): # Rescale boxes from img_size to im0 size output[:, :4] = scale_coords_x([416, 416], output[:, :4], img.shape).round() # Write results for *xyxy, conf, cls in output: label = '%s %.2f' % (str(cls), conf) plot_one_box(xyxy, img, label=label, color=colors[int(cls)]) cv2.imshow("xx", img) cv2.waitKey(-1) if __name__ == '__main__': test() ================================================ FILE: utils/datasets.py ================================================ # Dataset utils and dataloaders import glob import logging import math import os import random import shutil import time from itertools import repeat from multiprocessing.pool import ThreadPool from pathlib import Path from threading import Thread import cv2 import numpy as np import torch import torch.nn.functional as F from PIL import Image, ExifTags from torch.utils.data import Dataset from tqdm import tqdm from utils.general import check_requirements, xyxy2xywh, xywh2xyxy, xywhn2xyxy, xyn2xy, segment2box, segments2boxes, \ resample_segments, clean_str from utils.torch_utils import torch_distributed_zero_first import global_var # Parameters help_url = 'https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data' img_formats = ['bmp', 'jpg', 'jpeg', 'png', 'tif', 'tiff', 'dng', 'webp', 'mpo'] # acceptable image suffixes vid_formats = ['mov', 'avi', 'mp4', 'mpg', 'mpeg', 'm4v', 'wmv', 'mkv'] # acceptable video suffixes logger = logging.getLogger(__name__) # FQY 构建随机采样的sampler,为了之后双模态输入 class RandomSampler(torch.utils.data.sampler.RandomSampler): def __init__(self, data_source, replacement=False, num_samples=None): self.data_source = data_source self.replacement = replacement self._num_samples = num_samples if not isinstance(self.replacement, bool): raise ValueError("replacement should be a boolean value, but got " "replacement={}".format(self.replacement)) if self._num_samples is not None and not replacement: raise ValueError("With replacement=False, num_samples should not be specified, " "since a random permute will be performed.") if not isinstance(self.num_samples, int) or self.num_samples <= 0: raise ValueError("num_samples should be a positive integer " "value, but got num_samples={}".format(self.num_samples)) @property def num_samples(self): # dataset size might change at runtime if self._num_samples is None: return len(self.data_source) return self._num_samples def __iter__(self): n = len(self.data_source) if self.replacement: return iter(torch.randint(high=n, size=(self.num_samples,), dtype=torch.int64).tolist()) # print("-------------------------") s = global_var.get_value('s') return iter(s) def __len__(self): return self.num_samples # Get orientation exif tag for orientation in ExifTags.TAGS.keys(): if ExifTags.TAGS[orientation] == 'Orientation': break def get_hash(files): # Returns a single hash value of a list of files return sum(os.path.getsize(f) for f in files if os.path.isfile(f)) def exif_size(img): # Returns exif-corrected PIL size s = img.size # (width, height) try: rotation = dict(img._getexif().items())[orientation] if rotation == 6: # rotation 270 s = (s[1], s[0]) elif rotation == 8: # rotation 90 s = (s[1], s[0]) except: pass return s def create_dataloader_rgb_ir(path1, path2, imgsz, batch_size, stride, opt, hyp=None, augment=False, cache=False, pad=0.0, rect=False, rank=-1, world_size=1, workers=8, image_weights=False, quad=False, prefix='', sampler=None): # Make sure only the first process in DDP process the dataset first, and the following others can use the cache with torch_distributed_zero_first(rank): dataset = LoadMultiModalImagesAndLabels(path1, path2, imgsz, batch_size, augment=augment, # augment images hyp=hyp, # augmentation hyperparameters rect=rect, # rectangular training cache_images=cache, single_cls=opt.single_cls, stride=int(stride), pad=pad, image_weights=image_weights, prefix=prefix) batch_size = min(batch_size, len(dataset)) nw = min([os.cpu_count() // world_size, batch_size if batch_size > 1 else 0, workers]) # number of workers sampler = torch.utils.data.distributed.DistributedSampler(dataset) if rank != -1 else None loader = torch.utils.data.DataLoader if image_weights else InfiniteDataLoader # global_var.set_value('s', torch.randperm(len(dataset)).tolist()) # sampler = RandomSampler(dataset) # sampler = torch.utils.data.sampler.RandomSampler(dataset) # Use torch.utils.data.DataLoader() if dataset.properties will update during training else InfiniteDataLoader() dataloader = loader(dataset, batch_size=batch_size, num_workers=nw, sampler=sampler, pin_memory=True, collate_fn=LoadImagesAndLabels.collate_fn4 if quad else LoadImagesAndLabels.collate_fn) return dataloader, dataset class InfiniteDataLoader(torch.utils.data.dataloader.DataLoader): """ Dataloader that reuses workers Uses same syntax as vanilla DataLoader """ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) object.__setattr__(self, 'batch_sampler', _RepeatSampler(self.batch_sampler)) self.iterator = super().__iter__() def __len__(self): return len(self.batch_sampler.sampler) def __iter__(self): for i in range(len(self)): yield next(self.iterator) class _RepeatSampler(object): """ Sampler that repeats forever Args: sampler (Sampler) """ def __init__(self, sampler): self.sampler = sampler def __iter__(self): while True: yield from iter(self.sampler) class LoadImages: # for inference def __init__(self, path, img_size=640, stride=32): p = str(Path(path).absolute()) # os-agnostic absolute path if '*' in p: files = sorted(glob.glob(p, recursive=True)) # glob elif os.path.isdir(p): files = sorted(glob.glob(os.path.join(p, '*.*'))) # dir elif os.path.isfile(p): files = [p] # files else: raise Exception(f'ERROR: {p} does not exist') images = [x for x in files if x.split('.')[-1].lower() in img_formats] videos = [x for x in files if x.split('.')[-1].lower() in vid_formats] ni, nv = len(images), len(videos) self.img_size = img_size self.stride = stride self.files = images + videos self.nf = ni + nv # number of files self.video_flag = [False] * ni + [True] * nv self.mode = 'image' if any(videos): self.new_video(videos[0]) # new video else: self.cap = None assert self.nf > 0, f'No images or videos found in {p}. ' \ f'Supported formats are:\nimages: {img_formats}\nvideos: {vid_formats}' def __iter__(self): self.count = 0 return self def __next__(self): if self.count == self.nf: raise StopIteration path = self.files[self.count] if self.video_flag[self.count]: # Read video self.mode = 'video' ret_val, img0 = self.cap.read() if not ret_val: self.count += 1 self.cap.release() if self.count == self.nf: # last video raise StopIteration else: path = self.files[self.count] self.new_video(path) ret_val, img0 = self.cap.read() self.frame += 1 print(f'video {self.count + 1}/{self.nf} ({self.frame}/{self.nframes}) {path}: ', end='') else: # Read image self.count += 1 img0 = cv2.imread(path) # BGR assert img0 is not None, 'Image Not Found ' + path print(f'image {self.count}/{self.nf} {path}: ', end='') # Padded resize img = letterbox(img0, self.img_size, stride=self.stride)[0] # Convert img = img[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 img = np.ascontiguousarray(img) return path, img, img0, self.cap def new_video(self, path): self.frame = 0 self.cap = cv2.VideoCapture(path) self.nframes = int(self.cap.get(cv2.CAP_PROP_FRAME_COUNT)) def __len__(self): return self.nf # number of files class LoadWebcam: # for inference def __init__(self, pipe='0', img_size=640, stride=32): self.img_size = img_size self.stride = stride if pipe.isnumeric(): pipe = eval(pipe) # local camera # pipe = 'rtsp://192.168.1.64/1' # IP camera # pipe = 'rtsp://username:password@192.168.1.64/1' # IP camera with login # pipe = 'http://wmccpinetop.axiscam.net/mjpg/video.mjpg' # IP golf camera self.pipe = pipe self.cap = cv2.VideoCapture(pipe) # video capture object self.cap.set(cv2.CAP_PROP_BUFFERSIZE, 3) # set buffer size def __iter__(self): self.count = -1 return self def __next__(self): self.count += 1 if cv2.waitKey(1) == ord('q'): # q to quit self.cap.release() cv2.destroyAllWindows() raise StopIteration # Read frame if self.pipe == 0: # local camera ret_val, img0 = self.cap.read() img0 = cv2.flip(img0, 1) # flip left-right else: # IP camera n = 0 while True: n += 1 self.cap.grab() if n % 30 == 0: # skip frames ret_val, img0 = self.cap.retrieve() if ret_val: break # Print assert ret_val, f'Camera Error {self.pipe}' img_path = 'webcam.jpg' print(f'webcam {self.count}: ', end='') # Padded resize img = letterbox(img0, self.img_size, stride=self.stride)[0] # Convert img = img[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 img = np.ascontiguousarray(img) return img_path, img, img0, None def __len__(self): return 0 class LoadStreams: # multiple IP or RTSP cameras def __init__(self, sources='streams.txt', img_size=640, stride=32): self.mode = 'stream' self.img_size = img_size self.stride = stride if os.path.isfile(sources): with open(sources, 'r') as f: sources = [x.strip() for x in f.read().strip().splitlines() if len(x.strip())] else: sources = [sources] n = len(sources) self.imgs = [None] * n self.sources = [clean_str(x) for x in sources] # clean source names for later for i, s in enumerate(sources): # index, source # Start thread to read frames from video stream print(f'{i + 1}/{n}: {s}... ', end='') if 'youtube.com/' in s or 'youtu.be/' in s: # if source is YouTube video check_requirements(('pafy', 'youtube_dl')) import pafy s = pafy.new(s).getbest(preftype="mp4").url # YouTube URL s = eval(s) if s.isnumeric() else s # i.e. s = '0' local webcam cap = cv2.VideoCapture(s) assert cap.isOpened(), f'Failed to open {s}' w = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)) h = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) self.fps = cap.get(cv2.CAP_PROP_FPS) % 100 _, self.imgs[i] = cap.read() # guarantee first frame thread = Thread(target=self.update, args=([i, cap]), daemon=True) print(f' success ({w}x{h} at {self.fps:.2f} FPS).') thread.start() print('') # newline # check for common shapes s = np.stack([letterbox(x, self.img_size, stride=self.stride)[0].shape for x in self.imgs], 0) # shapes self.rect = np.unique(s, axis=0).shape[0] == 1 # rect inference if all shapes equal if not self.rect: print('WARNING: Different stream shapes detected. For optimal performance supply similarly-shaped streams.') def update(self, index, cap): # Read next stream frame in a daemon thread n = 0 while cap.isOpened(): n += 1 # _, self.imgs[index] = cap.read() cap.grab() if n == 4: # read every 4th frame success, im = cap.retrieve() self.imgs[index] = im if success else self.imgs[index] * 0 n = 0 time.sleep(1 / self.fps) # wait time def __iter__(self): self.count = -1 return self def __next__(self): self.count += 1 img0 = self.imgs.copy() if cv2.waitKey(1) == ord('q'): # q to quit cv2.destroyAllWindows() raise StopIteration # Letterbox img = [letterbox(x, self.img_size, auto=self.rect, stride=self.stride)[0] for x in img0] # Stack img = np.stack(img, 0) # Convert img = img[:, :, :, ::-1].transpose(0, 3, 1, 2) # BGR to RGB, to bsx3x416x416 img = np.ascontiguousarray(img) return self.sources, img, img0, None def __len__(self): return 0 # 1E12 frames = 32 streams at 30 FPS for 30 years def img2label_paths(img_paths): # Define label paths as a function of image paths sb, t = 'labels', [] # /images/, /labels/ for x in img_paths: if 'visible' in x.split('/'): sa = 'visible' elif 'infrared' in x.split('/'): sa = 'infrared' t.append('txt'.join(x.replace(sa, sb, 1).rsplit(x.split('.')[-1], 1))) return t class LoadImagesAndLabels(Dataset): # for training/testing def __init__(self, path, img_size=640, batch_size=16, augment=False, hyp=None, rect=False, image_weights=False, cache_images=False, single_cls=False, stride=32, pad=0.0, prefix=''): self.img_size = img_size self.augment = augment self.hyp = hyp self.image_weights = image_weights self.rect = False if image_weights else rect self.mosaic = self.augment and not self.rect # load 4 images at a time into a mosaic (only during training) self.mosaic_border = [-img_size // 2, -img_size // 2] self.stride = stride self.path = path try: f = [] # image files for p in path if isinstance(path, list) else [path]: p = Path(p) # os-agnostic if p.is_dir(): # dir f += glob.glob(str(p / '**' / '*.*'), recursive=True) # f = list(p.rglob('**/*.*')) # pathlib elif p.is_file(): # file with open(p, 'r') as t: t = t.read().strip().splitlines() parent = str(p.parent) + os.sep f += [x.replace('./', parent) if x.startswith('./') else x for x in t] # local to global path # f += [p.parent / x.lstrip(os.sep) for x in t] # local to global path (pathlib) else: raise Exception(f'{prefix}{p} does not exist') self.img_files = sorted([x.replace('/', os.sep) for x in f if x.split('.')[-1].lower() in img_formats]) # self.img_files = sorted([x for x in f if x.suffix[1:].lower() in img_formats]) # pathlib assert self.img_files, f'{prefix}No images found' except Exception as e: raise Exception(f'{prefix}Error loading data from {path}: {e}\nSee {help_url}') # Check cache self.label_files = img2label_paths(self.img_files) # labels # print(self.label_files) cache_path = (p if p.is_file() else Path(self.label_files[0]).parent).with_suffix('.cache') # cached labels if cache_path.is_file(): cache, exists = torch.load(cache_path), True # load if cache['hash'] != get_hash(self.label_files + self.img_files) or 'version' not in cache: # changed cache, exists = self.cache_labels(cache_path, prefix), False # re-cache else: cache, exists = self.cache_labels(cache_path, prefix), False # cache # Display cache nf, nm, ne, nc, n = cache.pop('results') # found, missing, empty, corrupted, total if exists: d = f"Scanning '{cache_path}' images and labels... {nf} found, {nm} missing, {ne} empty, {nc} corrupted" tqdm(None, desc=prefix + d, total=n, initial=n) # display cache results assert nf > 0 or not augment, f'{prefix}No labels in {cache_path}. Can not train without labels. See {help_url}' # Read cache cache.pop('hash') # remove hash cache.pop('version') # remove version labels, shapes, self.segments = zip(*cache.values()) self.labels = list(labels) self.shapes = np.array(shapes, dtype=np.float64) self.img_files = list(cache.keys()) # update self.label_files = img2label_paths(cache.keys()) # update if single_cls: for x in self.labels: x[:, 0] = 0 n = len(shapes) # number of images bi = np.floor(np.arange(n) / batch_size).astype(np.int) # batch index nb = bi[-1] + 1 # number of batches self.batch = bi # batch index of image self.n = n self.indices = range(n) # Rectangular Training if self.rect: # Sort by aspect ratio s = self.shapes # wh ar = s[:, 1] / s[:, 0] # aspect ratio irect = ar.argsort() self.img_files = [self.img_files[i] for i in irect] self.label_files = [self.label_files[i] for i in irect] self.labels = [self.labels[i] for i in irect] self.shapes = s[irect] # wh ar = ar[irect] # Set training image shapes shapes = [[1, 1]] * nb for i in range(nb): ari = ar[bi == i] mini, maxi = ari.min(), ari.max() if maxi < 1: shapes[i] = [maxi, 1] elif mini > 1: shapes[i] = [1, 1 / mini] self.batch_shapes = np.ceil(np.array(shapes) * img_size / stride + pad).astype(np.int) * stride # Cache images into memory for faster training (WARNING: large datasets may exceed system RAM) self.imgs = [None] * n if cache_images: gb = 0 # Gigabytes of cached images self.img_hw0, self.img_hw = [None] * n, [None] * n results = ThreadPool(8).imap(lambda x: load_image(*x), zip(repeat(self), range(n))) # 8 threads pbar = tqdm(enumerate(results), total=n) for i, x in pbar: self.imgs[i], self.img_hw0[i], self.img_hw[i] = x # img, hw_original, hw_resized = load_image(self, i) gb += self.imgs[i].nbytes pbar.desc = f'{prefix}Caching images ({gb / 1E9:.1f}GB)' pbar.close() def cache_labels(self, path=Path('./labels.cache'), prefix=''): # Cache dataset labels, check images and read shapes x = {} # dict nm, nf, ne, nc = 0, 0, 0, 0 # number missing, found, empty, duplicate pbar = tqdm(zip(self.img_files, self.label_files), desc='Scanning images', total=len(self.img_files)) for i, (im_file, lb_file) in enumerate(pbar): try: # verify images im = Image.open(im_file) im.verify() # PIL verify shape = exif_size(im) # image size segments = [] # instance segments assert (shape[0] > 9) & (shape[1] > 9), f'image size {shape} <10 pixels' assert im.format.lower() in img_formats, f'invalid image format {im.format}' # verify labels if os.path.isfile(lb_file): nf += 1 # label found with open(lb_file, 'r') as f: l = [x.split() for x in f.read().strip().splitlines()] if any([len(x) > 8 for x in l]): # is segment classes = np.array([x[0] for x in l], dtype=np.float32) segments = [np.array(x[1:], dtype=np.float32).reshape(-1, 2) for x in l] # (cls, xy1...) l = np.concatenate((classes.reshape(-1, 1), segments2boxes(segments)), 1) # (cls, xywh) l = np.array(l, dtype=np.float32) if len(l): assert l.shape[1] == 5, 'labels require 5 columns each' assert (l >= 0).all(), 'negative labels' assert (l[:, 1:] <= 1).all(), 'non-normalized or out of bounds coordinate labels' assert np.unique(l, axis=0).shape[0] == l.shape[0], 'duplicate labels' else: ne += 1 # label empty l = np.zeros((0, 5), dtype=np.float32) else: nm += 1 # label missing l = np.zeros((0, 5), dtype=np.float32) x[im_file] = [l, shape, segments] except Exception as e: nc += 1 print(f'{prefix}WARNING: Ignoring corrupted image and/or label {im_file}: {e}') pbar.desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels... " \ f"{nf} found, {nm} missing, {ne} empty, {nc} corrupted" pbar.close() if nf == 0: print(f'{prefix}WARNING: No labels found in {path}. See {help_url}') x['hash'] = get_hash(self.label_files + self.img_files) x['results'] = nf, nm, ne, nc, i + 1 x['version'] = 0.1 # cache version torch.save(x, path) # save for next time logging.info(f'{prefix}New cache created: {path}') return x def __len__(self): return len(self.img_files) # def __iter__(self): # self.count = -1 # print('ran dataset iter') # #self.shuffled_vector = np.random.permutation(self.nF) if self.augment else np.arange(self.nF) # return self def __getitem__(self, index): index = self.indices[index] # linear, shuffled, or image_weights hyp = self.hyp mosaic = self.mosaic and random.random() < hyp['mosaic'] if mosaic: # Load mosaic img, labels = load_mosaic(self, index) shapes = None if random.random() < hyp['mixup']: img2, labels2 = load_mosaic(self, random.randint(0, self.n - 1)) r = np.random.beta(8.0, 8.0) # mixup ratio, alpha=beta=8.0 img = (img * r + img2 * (1 - r)).astype(np.uint8) labels = np.concatenate((labels, labels2), 0) else: # Load image img, (h0, w0), (h, w) = load_image(self, index) # Letterbox shape = self.batch_shapes[self.batch[index]] if self.rect else self.img_size # final letterboxed shape img, ratio, pad = letterbox(img, shape, auto=False, scaleup=self.augment) shapes = (h0, w0), ((h / h0, w / w0), pad) # for COCO mAP rescaling labels = self.labels[index].copy() if labels.size: # normalized xywh to pixel xyxy format labels[:, 1:] = xywhn2xyxy(labels[:, 1:], ratio[0] * w, ratio[1] * h, padw=pad[0], padh=pad[1]) if self.augment: # Augment imagespace if not mosaic: img, labels = random_perspective(img, labels, degrees=hyp['degrees'], translate=hyp['translate'], scale=hyp['scale'], shear=hyp['shear'], perspective=hyp['perspective']) # Augment colorspace augment_hsv(img, hgain=hyp['hsv_h'], sgain=hyp['hsv_s'], vgain=hyp['hsv_v']) # Apply cutouts # if random.random() < 0.9: # labels = cutout(img, labels) nL = len(labels) # number of labels if nL: labels[:, 1:5] = xyxy2xywh(labels[:, 1:5]) # convert xyxy to xywh labels[:, [2, 4]] /= img.shape[0] # normalized height 0-1 labels[:, [1, 3]] /= img.shape[1] # normalized width 0-1 random.seed(index) if self.augment: # flip up-down if random.random() < hyp['flipud']: img = np.flipud(img) if nL: labels[:, 2] = 1 - labels[:, 2] # flip left-right if random.random() < hyp['fliplr']: img = np.fliplr(img) if nL: labels[:, 1] = 1 - labels[:, 1] labels_out = torch.zeros((nL, 6)) if nL: labels_out[:, 1:] = torch.from_numpy(labels) # Convert img = img[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 img = np.ascontiguousarray(img) return torch.from_numpy(img), labels_out, self.img_files[index], shapes @staticmethod def collate_fn(batch): img, label, path, shapes = zip(*batch) # transposed for i, l in enumerate(label): l[:, 0] = i # add target image index for build_targets() return torch.stack(img, 0), torch.cat(label, 0), path, shapes @staticmethod def collate_fn4(batch): img, label, path, shapes = zip(*batch) # transposed n = len(shapes) // 4 img4, label4, path4, shapes4 = [], [], path[:n], shapes[:n] print("n = len(shapes) // 4", n) print("Image Shape", img.shape) ho = torch.tensor([[0., 0, 0, 1, 0, 0]]) wo = torch.tensor([[0., 0, 1, 0, 0, 0]]) s = torch.tensor([[1, 1, .5, .5, .5, .5]]) # scale for i in range(n): # zidane torch.zeros(16,3,720,1280) # BCHW i *= 4 if random.random() < 0.5: im = F.interpolate(img[i].unsqueeze(0).float(), scale_factor=2., mode='bilinear', align_corners=False)[ 0].type(img[i].type()) l = label[i] else: im = torch.cat((torch.cat((img[i], img[i + 1]), 1), torch.cat((img[i + 2], img[i + 3]), 1)), 2) l = torch.cat((label[i], label[i + 1] + ho, label[i + 2] + wo, label[i + 3] + ho + wo), 0) * s img4.append(im) label4.append(l) for i, l in enumerate(label4): l[:, 0] = i # add target image index for build_targets() return torch.stack(img4, 0), torch.cat(label4, 0), path4, shapes4 class LoadMultiModalImagesAndLabels(Dataset): # for training/testing """ FQY 载入多模态数据 (RGB 和 IR) """ def __init__(self, path_rgb, path_ir, img_size=640, batch_size=16, augment=False, hyp=None, rect=False, image_weights=False, cache_images=False, single_cls=False, stride=32, pad=0.0, prefix=''): self.img_size = img_size self.augment = augment self.hyp = hyp self.image_weights = image_weights self.rect = False if image_weights else rect self.mosaic = self.augment and not self.rect # load 4 images at a time into a mosaic (only during training) self.mosaic_border = [-img_size // 2, -img_size // 2] self.stride = stride self.path_rgb = path_rgb self.path_ir = path_ir try: f_rgb = [] # image files f_ir = [] # ----------------------------- rgb ----------------------------- for p_rgb in path_rgb if isinstance(path_rgb, list) else [path_rgb]: p_rgb = Path(p_rgb) # os-agnostic if p_rgb.is_dir(): # dir f_rgb += glob.glob(str(p_rgb / '**' / '*.*'), recursive=True) # f = list(p.rglob('**/*.*')) # pathlib elif p_rgb.is_file(): # file with open(p_rgb, 'r') as t: t = t.read().strip().splitlines() parent = str(p_rgb.parent) + os.sep f_rgb += [x.replace('./', parent) if x.startswith('./') else x for x in t] # local to global path # f += [p.parent / x.lstrip(os.sep) for x in t] # local to global path (pathlib) else: raise Exception(f'{prefix}{path_rgb} does not exist') # ----------------------------- ir ----------------------------- for p_ir in path_ir if isinstance(path_ir, list) else [path_ir]: p_ir = Path(p_ir) # os-agnostic if p_ir.is_dir(): # dir f_ir += glob.glob(str(p_ir / '**' / '*.*'), recursive=True) # f = list(p.rglob('**/*.*')) # pathlib elif p_ir.is_file(): # file with open(p_ir, 'r') as t: t = t.read().strip().splitlines() parent = str(p_ir.parent) + os.sep f_ir += [x.replace('./', parent) if x.startswith('./') else x for x in t] # local to global path # f += [p.parent / x.lstrip(os.sep) for x in t] # local to global path (pathlib) else: raise Exception(f'{prefix}{p_ir} does not exist') self.img_files_rgb = sorted([x.replace('/', os.sep) for x in f_rgb if x.split('.')[-1].lower() in img_formats]) self.img_files_ir = sorted([x.replace('/', os.sep) for x in f_ir if x.split('.')[-1].lower() in img_formats]) # self.img_files = sorted([x for x in f if x.suffix[1:].lower() in img_formats]) # pathlib assert (self.img_files_rgb, self.img_files_ir), (f'{prefix}No images found', f'{prefix}No images found') except Exception as e: raise Exception(f'{prefix}Error loading data from {path_rgb,path_ir}: {e}\nSee {help_url}') # Check cache # Check rgb cache self.label_files_rgb = img2label_paths(self.img_files_rgb) # labels # print(self.label_files) cache_rgb_path = (p_rgb if p_rgb.is_file() else Path(self.label_files_rgb[0]).parent).with_suffix('.cache') # cached labels if cache_rgb_path.is_file(): cache_rgb, exists_rgb = torch.load(cache_rgb_path), True # load if cache_rgb['hash'] != get_hash(self.label_files_rgb + self.img_files_rgb) or 'version' not in cache_rgb: # changed cache_rgb, exists_rgb = self.cache_labels(self.img_files_rgb,self.label_files_rgb, cache_rgb_path, prefix), False # re-cache else: cache_rgb, exists_rgb = self.cache_labels(self.img_files_rgb,self.label_files_rgb, cache_rgb_path, prefix), False # cache # Check ir cache self.label_files_ir = img2label_paths(self.img_files_ir) # labels # print(self.label_files) cache_ir_path = (p_ir if p_ir.is_file() else Path(self.label_files_ir[0]).parent).with_suffix('.cache') # cached labels if cache_ir_path.is_file(): cache_ir, exists_ir = torch.load(cache_ir_path), True # load if cache_ir['hash'] != get_hash(self.label_files_ir + self.img_files_ir) or 'version' not in cache_ir: # changed cache_ir, exists_ir = self.cache_labels(self.img_files_ir, self.label_files_ir, cache_ir_path, prefix), False # re-cache else: cache_ir, exists_ir = self.cache_labels(self.img_files_ir, self.label_files_ir, cache_ir_path, prefix), False # cache # Display cache nf_rgb, nm_rgb, ne_rgb, nc_rgb, n_rgb = cache_rgb.pop('results') # found, missing, empty, corrupted, total nf_ir, nm_ir, ne_ir, nc_ir, n_ir = cache_ir.pop('results') # found, missing, empty, corrupted, total if exists_rgb: d = f"Scanning RGB '{cache_rgb_path}' images and labels... {nf_rgb} found, {nm_rgb} missing, {ne_rgb} empty, {nc_rgb} corrupted" tqdm(None, desc=prefix + d, total=n_rgb, initial=n_rgb) # display cache results if exists_ir: d = f"Scanning IR '{cache_rgb_path}' images and labels... {nf_ir} found, {nm_ir} missing, {ne_ir} empty, {nc_ir} corrupted" tqdm(None, desc=prefix + d, total=n_ir, initial=n_ir) # display cache results assert nf_rgb > 0 or not augment, f'{prefix}No labels in {cache_rgb_path}. Can not train without labels. See {help_url}' # Read cache # Read RGB cache cache_rgb.pop('hash') # remove hash cache_rgb.pop('version') # remove version labels_rgb, shapes_rgb, self.segments_rgb = zip(*cache_rgb.values()) self.labels_rgb = list(labels_rgb) self.shapes_rgb = np.array(shapes_rgb, dtype=np.float64) self.img_files_rgb = list(cache_rgb.keys()) # update self.label_files_rgb = img2label_paths(cache_rgb.keys()) # update if single_cls: for x in self.labels_rgb: x[:, 0] = 0 n_rgb = len(shapes_rgb) # number of images bi_rgb = np.floor(np.arange(n_rgb) / batch_size).astype(np.int) # batch index nb_rgb = bi_rgb[-1] + 1 # number of batches self.batch_rgb = bi_rgb # batch index of image self.n_rgb = n_rgb self.indices_rgb = range(n_rgb) # Read IR cache cache_ir.pop('hash') # remove hash cache_ir.pop('version') # remove version labels_ir, shapes_ir, self.segments_ir = zip(*cache_ir.values()) self.labels_ir = list(labels_ir) self.shapes_ir = np.array(shapes_ir, dtype=np.float64) self.img_files_ir = list(cache_ir.keys()) # update self.label_files_ir = img2label_paths(cache_ir.keys()) # update if single_cls: for x in self.labels_ir: x[:, 0] = 0 n_ir = len(shapes_ir) # number of images bi_ir = np.floor(np.arange(n_ir) / batch_size).astype(np.int) # batch index nb_ir = bi_ir[-1] + 1 # number of batches self.batch_ir = bi_ir # batch index of image self.n_ir = n_ir self.indices_ir = range(n_ir) # Rectangular Training if self.rect: # RGB # Sort by aspect ratio s_rgb = self.shapes_rgb # wh ar_rgb = s_rgb[:, 1] / s_rgb[:, 0] # aspect ratio irect_rgb = ar_rgb.argsort() self.img_files_rgb = [self.img_files_rgb[i] for i in irect_rgb] self.label_files_rgb = [self.label_files_rgb[i] for i in irect_rgb] self.labels_rgb = [self.labels_rgb[i] for i in irect_rgb] self.shapes_rgb = s_rgb[irect_rgb] # wh ar_rgb = ar_rgb[irect_rgb] # Set training image shapes shapes_rgb = [[1, 1]] * nb_rgb for i in range(nb_rgb): ari_rgb = ar_rgb[bi_rgb == i] mini, maxi = ari_rgb.min(), ari_rgb.max() if maxi < 1: shapes_rgb[i] = [maxi, 1] elif mini > 1: shapes_rgb[i] = [1, 1 / mini] self.batch_shapes_rgb = np.ceil(np.array(shapes_rgb) * img_size / stride + pad).astype(np.int) * stride # IR # Sort by aspect ratio s_ir = self.shapes_ir # wh ar_ir = s_ir[:, 1] / s_ir[:, 0] # aspect ratio irect_ir = ar_ir.argsort() self.img_files_ir = [self.img_files_ir[i] for i in irect_ir] self.label_files_ir = [self.label_files_ir[i] for i in irect_ir] self.labels_ir = [self.labels_ir[i] for i in irect_ir] self.shapes_ir = s_ir[irect_ir] # wh ar_ir = ar_ir[irect_ir] # Set training image shapes shapes_ir = [[1, 1]] * nb_ir for i in range(nb_ir): ari_ir = ar_ir[bi_ir == i] mini, maxi = ari_ir.min(), ari_ir.max() if maxi < 1: shapes_ir[i] = [maxi, 1] elif mini > 1: shapes_ir[i] = [1, 1 / mini] self.batch_shapes_ir = np.ceil(np.array(shapes_ir) * img_size / stride + pad).astype(np.int) * stride # Cache images into memory for faster training (WARNING: large datasets may exceed system RAM) self.imgs_rgb = [None] * n_rgb self.imgs_ir = [None] * n_ir self.labels = self.labels_rgb self.shapes = self.shapes_rgb self.indices = self.indices_rgb def cache_labels(self, imgfiles, labelfiles, path=Path('./labels.cache'), prefix=''): # Cache dataset labels, check images and read shapes img_files = imgfiles label_files = labelfiles x = {} # dict nm, nf, ne, nc = 0, 0, 0, 0 # number missing, found, empty, duplicate pbar = tqdm(zip(img_files, label_files), desc='Scanning images', total=len(img_files)) for i, (im_file, lb_file) in enumerate(pbar): try: # verify images im = Image.open(im_file) im.verify() # PIL verify shape = exif_size(im) # image size segments = [] # instance segments assert (shape[0] > 9) & (shape[1] > 9), f'image size {shape} <10 pixels' assert im.format.lower() in img_formats, f'invalid image format {im.format}' # verify labels if os.path.isfile(lb_file): nf += 1 # label found with open(lb_file, 'r') as f: l = [x.split() for x in f.read().strip().splitlines()] if any([len(x) > 8 for x in l]): # is segment classes = np.array([x[0] for x in l], dtype=np.float32) segments = [np.array(x[1:], dtype=np.float32).reshape(-1, 2) for x in l] # (cls, xy1...) l = np.concatenate((classes.reshape(-1, 1), segments2boxes(segments)), 1) # (cls, xywh) l = np.array(l, dtype=np.float32) if len(l): assert l.shape[1] == 5, 'labels require 5 columns each' assert (l >= 0).all(), 'negative labels' assert (l[:, 1:] <= 1).all(), 'non-normalized or out of bounds coordinate labels' assert np.unique(l, axis=0).shape[0] == l.shape[0], 'duplicate labels' else: ne += 1 # label empty l = np.zeros((0, 5), dtype=np.float32) else: nm += 1 # label missing l = np.zeros((0, 5), dtype=np.float32) x[im_file] = [l, shape, segments] except Exception as e: nc += 1 print(f'{prefix}WARNING: Ignoring corrupted image and/or label {im_file}: {e}') pbar.desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels... " \ f"{nf} found, {nm} missing, {ne} empty, {nc} corrupted" pbar.close() if nf == 0: print(f'{prefix}WARNING: No labels found in {path}. See {help_url}') x['hash'] = get_hash(label_files + img_files) x['results'] = nf, nm, ne, nc, i + 1 x['version'] = 0.1 # cache version torch.save(x, path) # save for next time logging.info(f'{prefix}New cache created: {path}') return x def __len__(self): return len(self.img_files_rgb) # def __iter__(self): # self.count = -1 # print('ran dataset iter') # #self.shuffled_vector = np.random.permutation(self.nF) if self.augment else np.arange(self.nF) # return self def __getitem__(self, index): # index = self.indices[index] # linear, shuffled, or image_weights index_rgb = self.indices_rgb[index] # linear, shuffled, or image_weights index_ir = self.indices_ir[index] # linear, shuffled, or image_weights hyp = self.hyp mosaic = self.mosaic and random.random() < hyp['mosaic'] if mosaic: # Load mosaic # img, labels = load_mosaic(self, index) img_rgb, labels_rgb, img_ir, labels_ir = load_mosaic_RGB_IR(self, index_rgb, index_ir) shapes = None else: # Load image img_rgb, img_ir, (h0, w0), (h, w) = load_image_rgb_ir(self, index) # Letterbox shape = self.batch_shapes_rgb[self.batch_rgb[index]] if self.rect else self.img_size # final letterboxed shape img_rgb, ratio, pad = letterbox(img_rgb, shape, auto=False, scaleup=self.augment) img_ir, ratio, pad = letterbox(img_ir, shape, auto=False, scaleup=self.augment) shapes = (h0, w0), ((h / h0, w / w0), pad) # for COCO mAP rescaling labels = self.labels_rgb[index].copy() if labels.size: # normalized xywh to pixel xyxy format labels[:, 1:] = xywhn2xyxy(labels[:, 1:], ratio[0] * w, ratio[1] * h, padw=pad[0], padh=pad[1]) labels_rgb = labels labels_ir = labels if self.augment: # Augment colorspace augment_hsv(img_rgb, hgain=hyp['hsv_h'], sgain=hyp['hsv_s'], vgain=hyp['hsv_v']) augment_hsv(img_ir, hgain=hyp['hsv_h'], sgain=hyp['hsv_s'], vgain=hyp['hsv_v']) nL = len(labels_rgb) # number of labels if nL: labels_rgb[:, 1:5] = xyxy2xywh(labels_rgb[:, 1:5]) # convert xyxy to xywh labels_rgb[:, [2, 4]] /= img_rgb.shape[0] # normalized height 0-1 labels_rgb[:, [1, 3]] /= img_rgb.shape[1] # normalized width 0-1 if self.augment: # flip up-down if random.random() < hyp['flipud']: img_rgb = np.flipud(img_rgb) img_ir = np.flipud(img_ir) if nL: labels_rgb[:, 2] = 1 - labels_rgb[:, 2] # flip left-right if random.random() < hyp['fliplr']: img_rgb = np.fliplr(img_rgb) img_ir = np.fliplr(img_ir) if nL: labels_rgb[:, 1] = 1 - labels_rgb[:, 1] labels_out = torch.zeros((nL, 6)) if nL: labels_out[:, 1:] = torch.from_numpy(labels_rgb) # Convert # img = img[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 # img = np.ascontiguousarray(img) img_rgb = img_rgb[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 img_rgb = np.ascontiguousarray(img_rgb) img_ir = img_ir[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 img_ir = np.ascontiguousarray(img_ir) #img_ir = shift_augment(self, img_ir) img_all = np.concatenate((img_rgb, img_ir), axis=0) return torch.from_numpy(img_all), labels_out, self.img_files_rgb[index], shapes @staticmethod def collate_fn(batch): img, label, path, shapes = zip(*batch) # transposed for i, l in enumerate(label): l[:, 0] = i # add target image index for build_targets() return torch.stack(img, 0), torch.cat(label, 0), path, shapes @staticmethod def collate_fn4(batch): img, label, path, shapes = zip(*batch) # transposed n = len(shapes) // 4 img4, label4, path4, shapes4 = [], [], path[:n], shapes[:n] ho = torch.tensor([[0., 0, 0, 1, 0, 0]]) wo = torch.tensor([[0., 0, 1, 0, 0, 0]]) s = torch.tensor([[1, 1, .5, .5, .5, .5]]) # scale for i in range(n): # zidane torch.zeros(16,3,720,1280) # BCHW i *= 4 if random.random() < 0.5: im = F.interpolate(img[i].unsqueeze(0).float(), scale_factor=2., mode='bilinear', align_corners=False)[ 0].type(img[i].type()) l = label[i] else: im = torch.cat((torch.cat((img[i], img[i + 1]), 1), torch.cat((img[i + 2], img[i + 3]), 1)), 2) l = torch.cat((label[i], label[i + 1] + ho, label[i + 2] + wo, label[i + 3] + ho + wo), 0) * s img4.append(im) label4.append(l) for i, l in enumerate(label4): l[:, 0] = i # add target image index for build_targets() return torch.stack(img4, 0), torch.cat(label4, 0), path4, shapes4 # Ancillary functions -------------------------------------------------------------------------------------------------- def shift_augment(self, img): direction = [[-1, 1], [1, 1], [1, -1], [-1, -1]] # left-up, right-up, right-down, left-down shift_X, shift_Y = random.randint(0, 10), random.randint(0, 10) shift_direction = direction[random.randint(0, 3)] c, h, w = img.shape shift_img = np.full((c, h, w), 114, dtype=np.uint8) if shift_direction == [-1, 1]: # left-up shift shift_img[:, :h - shift_Y, :w - shift_X] = img[:, shift_Y:, shift_X:] elif shift_direction == [1, 1]: # right-up shift shift_img[:, :h - shift_Y, shift_X:] = img[:, shift_Y:, :w - shift_X] elif shift_direction == [1, -1]: # right-down shift shift_img[:, shift_Y:, shift_X:] = img[:, :h - shift_Y, :w - shift_X] else: shift_img[:, :h - shift_Y, shift_X:] = img[:, shift_Y:, :w - shift_X] return shift_img def load_image(self, index): # loads 1 image from dataset, returns img, original hw, resized hw img = self.imgs[index] if img is None: # not cached path = self.img_files[index] img = cv2.imread(path) # BGR assert img is not None, 'Image Not Found ' + path h0, w0 = img.shape[:2] # orig hw r = self.img_size / max(h0, w0) # ratio if r != 1: # if sizes are not equal img = cv2.resize(img, (int(w0 * r), int(h0 * r)), interpolation=cv2.INTER_AREA if r < 1 and not self.augment else cv2.INTER_LINEAR) return img, (h0, w0), img.shape[:2] # img, hw_original, hw_resized else: return self.imgs[index], self.img_hw0[index], self.img_hw[index] # img, hw_original, hw_resized def load_image_rgb_ir(self, index): # loads 1 image from dataset, returns img, original hw, resized hw img_rgb = self.imgs_rgb[index] img_ir = self.imgs_ir[index] # img_rgb = None # img_ir = None if (img_rgb is None) and (img_ir is None): # not cached path_rgb = self.img_files_rgb[index] path_ir = self.img_files_ir[index] img_rgb = cv2.imread(path_rgb) # BGR img_ir = cv2.imread(path_ir) # BGR assert img_rgb is not None, 'Image RGB Not Found ' + path_rgb assert img_ir is not None, 'Image IR Not Found ' + path_ir h0, w0 = img_rgb.shape[:2] # orig hw r = self.img_size / max(h0, w0) # ratio if r != 1: # if sizes are not equal img_rgb = cv2.resize(img_rgb, (int(w0 * r), int(h0 * r)), interpolation=cv2.INTER_AREA if r < 1 and not self.augment else cv2.INTER_LINEAR) img_ir = cv2.resize(img_ir, (int(w0 * r), int(h0 * r)), interpolation=cv2.INTER_AREA if r < 1 and not self.augment else cv2.INTER_LINEAR) return img_rgb, img_ir, (h0, w0), img_rgb.shape[:2] # img, hw_original, hw_resized else: return self.imgs_rgb[index], self.imgs_ir[index], self.img_hw0_rgb[index], self.img_hw_rgb[index] # img, hw_original, hw_resized def augment_hsv(img, hgain=0.5, sgain=0.5, vgain=0.5): r = np.random.uniform(-1, 1, 3) * [hgain, sgain, vgain] + 1 # random gains hue, sat, val = cv2.split(cv2.cvtColor(img, cv2.COLOR_BGR2HSV)) dtype = img.dtype # uint8 x = np.arange(0, 256, dtype=np.int16) lut_hue = ((x * r[0]) % 180).astype(dtype) lut_sat = np.clip(x * r[1], 0, 255).astype(dtype) lut_val = np.clip(x * r[2], 0, 255).astype(dtype) img_hsv = cv2.merge((cv2.LUT(hue, lut_hue), cv2.LUT(sat, lut_sat), cv2.LUT(val, lut_val))).astype(dtype) cv2.cvtColor(img_hsv, cv2.COLOR_HSV2BGR, dst=img) # no return needed def hist_equalize(img, clahe=True, bgr=False): # Equalize histogram on BGR image 'img' with img.shape(n,m,3) and range 0-255 yuv = cv2.cvtColor(img, cv2.COLOR_BGR2YUV if bgr else cv2.COLOR_RGB2YUV) if clahe: c = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8, 8)) yuv[:, :, 0] = c.apply(yuv[:, :, 0]) else: yuv[:, :, 0] = cv2.equalizeHist(yuv[:, :, 0]) # equalize Y channel histogram return cv2.cvtColor(yuv, cv2.COLOR_YUV2BGR if bgr else cv2.COLOR_YUV2RGB) # convert YUV image to RGB def load_mosaic(self, index): # loads images in a 4-mosaic labels4, segments4 = [], [] s = self.img_size yc, xc = [int(random.uniform(-x, 2 * s + x)) for x in self.mosaic_border] # mosaic center x, y indices = [index] + random.choices(self.indices, k=3) # 3 additional image indices for i, index in enumerate(indices): # Load image img, _, (h, w) = load_image(self, index) # place img in img4 if i == 0: # top left img4 = np.full((s * 2, s * 2, img.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles x1a, y1a, x2a, y2a = max(xc - w, 0), max(yc - h, 0), xc, yc # xmin, ymin, xmax, ymax (large image) x1b, y1b, x2b, y2b = w - (x2a - x1a), h - (y2a - y1a), w, h # xmin, ymin, xmax, ymax (small image) elif i == 1: # top right x1a, y1a, x2a, y2a = xc, max(yc - h, 0), min(xc + w, s * 2), yc x1b, y1b, x2b, y2b = 0, h - (y2a - y1a), min(w, x2a - x1a), h elif i == 2: # bottom left x1a, y1a, x2a, y2a = max(xc - w, 0), yc, xc, min(s * 2, yc + h) x1b, y1b, x2b, y2b = w - (x2a - x1a), 0, w, min(y2a - y1a, h) elif i == 3: # bottom right x1a, y1a, x2a, y2a = xc, yc, min(xc + w, s * 2), min(s * 2, yc + h) x1b, y1b, x2b, y2b = 0, 0, min(w, x2a - x1a), min(y2a - y1a, h) img4[y1a:y2a, x1a:x2a] = img[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax] padw = x1a - x1b padh = y1a - y1b # Labels labels, segments = self.labels[index].copy(), self.segments[index].copy() if labels.size: labels[:, 1:] = xywhn2xyxy(labels[:, 1:], w, h, padw, padh) # normalized xywh to pixel xyxy format segments = [xyn2xy(x, w, h, padw, padh) for x in segments] labels4.append(labels) segments4.extend(segments) # Concat/clip labels labels4 = np.concatenate(labels4, 0) for x in (labels4[:, 1:], *segments4): np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective() # img4, labels4 = replicate(img4, labels4) # replicate # Augment img4, labels4 = random_perspective(img4, labels4, segments4, degrees=self.hyp['degrees'], translate=self.hyp['translate'], scale=self.hyp['scale'], shear=self.hyp['shear'], perspective=self.hyp['perspective'], border=self.mosaic_border) # border to remove # print(labels4) return img4, labels4 def load_mosaic_RGB_IR(self, index1, index2): # loads images in a 4-mosaic index_rgb = index1 index_ir = index2 labels4_rgb, segments4_rgb = [], [] labels4_ir, segments4_ir = [], [] s = self.img_size # print("image size ", s) yc, xc = [int(random.uniform(-x, 2 * s + x)) for x in self.mosaic_border] # mosaic center x, y assert index_rgb == index_ir, 'INDEX RGB 不等于 INDEX IR' indices = [index_rgb] + random.choices(self.indices_rgb, k=3) # 3 additional image indices for i, index in enumerate(indices): # Load image # img, _, (h, w) = load_image(self, index) img_rgb, img_ir, _, (h, w) = load_image_rgb_ir(self, index) # place img in img4 if i == 0: # top left img4_rgb = np.full((s * 2, s * 2, img_rgb.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles img4_ir = np.full((s * 2, s * 2, img_ir.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles x1a, y1a, x2a, y2a = max(xc - w, 0), max(yc - h, 0), xc, yc # xmin, ymin, xmax, ymax (large image) x1b, y1b, x2b, y2b = w - (x2a - x1a), h - (y2a - y1a), w, h # xmin, ymin, xmax, ymax (small image) elif i == 1: # top right x1a, y1a, x2a, y2a = xc, max(yc - h, 0), min(xc + w, s * 2), yc x1b, y1b, x2b, y2b = 0, h - (y2a - y1a), min(w, x2a - x1a), h elif i == 2: # bottom left x1a, y1a, x2a, y2a = max(xc - w, 0), yc, xc, min(s * 2, yc + h) x1b, y1b, x2b, y2b = w - (x2a - x1a), 0, w, min(y2a - y1a, h) elif i == 3: # bottom right x1a, y1a, x2a, y2a = xc, yc, min(xc + w, s * 2), min(s * 2, yc + h) x1b, y1b, x2b, y2b = 0, 0, min(w, x2a - x1a), min(y2a - y1a, h) # img4[y1a:y2a, x1a:x2a] = img[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax] # padw = x1a - x1b # padh = y1a - y1b img4_rgb[y1a:y2a, x1a:x2a] = img_rgb[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax] img4_ir[y1a:y2a, x1a:x2a] = img_ir[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax] padw = x1a - x1b padh = y1a - y1b labels_rgb, segments_rgb = self.labels_rgb[index].copy(), self.segments_rgb[index].copy() labels_ir, segments_ir = self.labels_ir[index].copy(), self.segments_ir[index].copy() if labels_rgb.size: labels_rgb[:, 1:] = xywhn2xyxy(labels_rgb[:, 1:], w, h, padw, padh) # normalized xywh to pixel xyxy format labels_ir[:, 1:] = xywhn2xyxy(labels_ir[:, 1:], w, h, padw, padh) # normalized xywh to pixel xyxy format segments_rgb = [xyn2xy(x, w, h, padw, padh) for x in segments_rgb] segments_ir = [xyn2xy(x, w, h, padw, padh) for x in segments_ir] labels4_rgb.append(labels_rgb) segments4_rgb.extend(segments_rgb) labels4_ir.append(labels_ir) segments4_ir.extend(segments_ir) # # Concat/clip labels # labels4 = np.concatenate(labels4, 0) # for x in (labels4[:, 1:], *segments4): # np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective() # # img4, labels4 = replicate(img4, labels4) # replicate labels4_rgb = np.concatenate(labels4_rgb, 0) labels4_ir = np.concatenate(labels4_ir, 0) for x in (labels4_rgb[:, 1:], *segments4_rgb): np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective() for x in (labels4_ir[:, 1:], *segments4_ir): np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective() # img4, labels4 = replicate(img4, labels4) # replicate img4_rgb, img4_ir, labels4_rgb, labels4_ir = random_perspective_rgb_ir(img4_rgb, img4_ir, labels4_rgb, labels4_ir, segments4_rgb, segments4_ir, degrees=self.hyp['degrees'], translate=self.hyp['translate'], scale=self.hyp['scale'], shear=self.hyp['shear'], perspective=self.hyp['perspective'], border=self.mosaic_border ) # border to remove # print(labels_rgb) # print(labels4_ir) # assert labels4_rgb == labels4_ir, 'LABEL4 RGB 不等于 LABEL4 IR' # print(" labels4_rgb == labels4_ir ", labels4_rgb == labels4_ir) labels4_ir = labels4_rgb # cv2.imwrite("rgb_%s.jpg" % str(index1), img4_rgb) # cv2.imwrite("ir_%s.jpg" % str(index2), img4_ir) return img4_rgb, labels4_rgb, img4_ir, labels4_ir def load_mosaic9(self, index): # loads images in a 9-mosaic labels9, segments9 = [], [] s = self.img_size indices = [index] + random.choices(self.indices, k=8) # 8 additional image indices for i, index in enumerate(indices): # Load image img, _, (h, w) = load_image(self, index) # place img in img9 if i == 0: # center img9 = np.full((s * 3, s * 3, img.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles h0, w0 = h, w c = s, s, s + w, s + h # xmin, ymin, xmax, ymax (base) coordinates elif i == 1: # top c = s, s - h, s + w, s elif i == 2: # top right c = s + wp, s - h, s + wp + w, s elif i == 3: # right c = s + w0, s, s + w0 + w, s + h elif i == 4: # bottom right c = s + w0, s + hp, s + w0 + w, s + hp + h elif i == 5: # bottom c = s + w0 - w, s + h0, s + w0, s + h0 + h elif i == 6: # bottom left c = s + w0 - wp - w, s + h0, s + w0 - wp, s + h0 + h elif i == 7: # left c = s - w, s + h0 - h, s, s + h0 elif i == 8: # top left c = s - w, s + h0 - hp - h, s, s + h0 - hp padx, pady = c[:2] x1, y1, x2, y2 = [max(x, 0) for x in c] # allocate coords # Labels labels, segments = self.labels[index].copy(), self.segments[index].copy() if labels.size: labels[:, 1:] = xywhn2xyxy(labels[:, 1:], w, h, padx, pady) # normalized xywh to pixel xyxy format segments = [xyn2xy(x, w, h, padx, pady) for x in segments] labels9.append(labels) segments9.extend(segments) # Image img9[y1:y2, x1:x2] = img[y1 - pady:, x1 - padx:] # img9[ymin:ymax, xmin:xmax] hp, wp = h, w # height, width previous # Offset yc, xc = [int(random.uniform(0, s)) for _ in self.mosaic_border] # mosaic center x, y img9 = img9[yc:yc + 2 * s, xc:xc + 2 * s] # Concat/clip labels labels9 = np.concatenate(labels9, 0) labels9[:, [1, 3]] -= xc labels9[:, [2, 4]] -= yc c = np.array([xc, yc]) # centers segments9 = [x - c for x in segments9] for x in (labels9[:, 1:], *segments9): np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective() # img9, labels9 = replicate(img9, labels9) # replicate # Augment img9, labels9 = random_perspective(img9, labels9, segments9, degrees=self.hyp['degrees'], translate=self.hyp['translate'], scale=self.hyp['scale'], shear=self.hyp['shear'], perspective=self.hyp['perspective'], border=self.mosaic_border) # border to remove return img9, labels9 def replicate(img, labels): # Replicate labels h, w = img.shape[:2] boxes = labels[:, 1:].astype(int) x1, y1, x2, y2 = boxes.T s = ((x2 - x1) + (y2 - y1)) / 2 # side length (pixels) for i in s.argsort()[:round(s.size * 0.5)]: # smallest indices x1b, y1b, x2b, y2b = boxes[i] bh, bw = y2b - y1b, x2b - x1b yc, xc = int(random.uniform(0, h - bh)), int(random.uniform(0, w - bw)) # offset x, y x1a, y1a, x2a, y2a = [xc, yc, xc + bw, yc + bh] img[y1a:y2a, x1a:x2a] = img[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax] labels = np.append(labels, [[labels[i, 0], x1a, y1a, x2a, y2a]], axis=0) return img, labels def letterbox(img, new_shape=(640, 640), color=(114, 114, 114), auto=True, scaleFill=False, scaleup=True, stride=32): # Resize and pad image while meeting stride-multiple constraints shape = img.shape[:2] # current shape [height, width] if isinstance(new_shape, int): new_shape = (new_shape, new_shape) # Scale ratio (new / old) r = min(new_shape[0] / shape[0], new_shape[1] / shape[1]) if not scaleup: # only scale down, do not scale up (for better test mAP) r = min(r, 1.0) # Compute padding ratio = r, r # width, height ratios new_unpad = int(round(shape[1] * r)), int(round(shape[0] * r)) dw, dh = new_shape[1] - new_unpad[0], new_shape[0] - new_unpad[1] # wh padding dw /= 2 # divide padding into 2 sides dh /= 2 if shape[::-1] != new_unpad: # resize img = cv2.resize(img, new_unpad, interpolation=cv2.INTER_LINEAR) top, bottom = int(round(dh - 0.1)), int(round(dh + 0.1)) left, right = int(round(dw - 0.1)), int(round(dw + 0.1)) img = cv2.copyMakeBorder(img, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color) # add border # if auto: # minimum rectangle # dw, dh = np.mod(dw, stride), np.mod(dh, stride) # wh padding # elif scaleFill: # stretch # dw, dh = 0.0, 0.0 # new_unpad = (new_shape[1], new_shape[0]) # ratio = new_shape[1] / shape[1], new_shape[0] / shape[0] # width, height ratios # # dw /= 2 # divide padding into 2 sides # dh /= 2 # # if shape[::-1] != new_unpad: # resize # img = cv2.resize(img, new_unpad, interpolation=cv2.INTER_LINEAR) # top, bottom = int(round(dh - 0.1)), int(round(dh + 0.1)) # left, right = int(round(dw - 0.1)), int(round(dw + 0.1)) # img = cv2.copyMakeBorder(img, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color) # add border return img, ratio, (dw, dh) def random_perspective(img, targets=(), segments=(), degrees=10, translate=.1, scale=.1, shear=10, perspective=0.0, border=(0, 0)): # torchvision.transforms.RandomAffine(degrees=(-10, 10), translate=(.1, .1), scale=(.9, 1.1), shear=(-10, 10)) # targets = [cls, xyxy] height = img.shape[0] + border[0] * 2 # shape(h,w,c) width = img.shape[1] + border[1] * 2 # Center C = np.eye(3) C[0, 2] = -img.shape[1] / 2 # x translation (pixels) C[1, 2] = -img.shape[0] / 2 # y translation (pixels) # Perspective P = np.eye(3) P[2, 0] = random.uniform(-perspective, perspective) # x perspective (about y) P[2, 1] = random.uniform(-perspective, perspective) # y perspective (about x) # Rotation and Scale R = np.eye(3) a = random.uniform(-degrees, degrees) # a += random.choice([-180, -90, 0, 90]) # add 90deg rotations to small rotations s = random.uniform(1 - scale, 1 + scale) # s = 2 ** random.uniform(-scale, scale) R[:2] = cv2.getRotationMatrix2D(angle=a, center=(0, 0), scale=s) # Shear S = np.eye(3) S[0, 1] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # x shear (deg) S[1, 0] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # y shear (deg) # Translation T = np.eye(3) T[0, 2] = random.uniform(0.5 - translate, 0.5 + translate) * width # x translation (pixels) T[1, 2] = random.uniform(0.5 - translate, 0.5 + translate) * height # y translation (pixels) # Combined rotation matrix M = T @ S @ R @ P @ C # order of operations (right to left) is IMPORTANT if (border[0] != 0) or (border[1] != 0) or (M != np.eye(3)).any(): # image changed if perspective: img = cv2.warpPerspective(img, M, dsize=(width, height), borderValue=(114, 114, 114)) else: # affine img = cv2.warpAffine(img, M[:2], dsize=(width, height), borderValue=(114, 114, 114)) # Visualize # import matplotlib.pyplot as plt # ax = plt.subplots(1, 2, figsize=(12, 6))[1].ravel() # ax[0].imshow(img[:, :, ::-1]) # base # ax[1].imshow(img2[:, :, ::-1]) # warped # Transform label coordinates n = len(targets) if n: use_segments = any(x.any() for x in segments) new = np.zeros((n, 4)) if use_segments: # warp segments segments = resample_segments(segments) # upsample for i, segment in enumerate(segments): xy = np.ones((len(segment), 3)) xy[:, :2] = segment xy = xy @ M.T # transform xy = xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2] # perspective rescale or affine # clip new[i] = segment2box(xy, width, height) else: # warp boxes xy = np.ones((n * 4, 3)) xy[:, :2] = targets[:, [1, 2, 3, 4, 1, 4, 3, 2]].reshape(n * 4, 2) # x1y1, x2y2, x1y2, x2y1 xy = xy @ M.T # transform xy = (xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2]).reshape(n, 8) # perspective rescale or affine # create new boxes x = xy[:, [0, 2, 4, 6]] y = xy[:, [1, 3, 5, 7]] new = np.concatenate((x.min(1), y.min(1), x.max(1), y.max(1))).reshape(4, n).T # clip new[:, [0, 2]] = new[:, [0, 2]].clip(0, width) new[:, [1, 3]] = new[:, [1, 3]].clip(0, height) # filter candidates i = box_candidates(box1=targets[:, 1:5].T * s, box2=new.T, area_thr=0.01 if use_segments else 0.10) targets = targets[i] targets[:, 1:5] = new[i] return img, targets def random_perspective_rgb_ir(img_rgb, img_ir, targets_rgb=(),targets_ir=(), segments_rgb=(), segments_ir=(), degrees=10, translate=.1, scale=.1, shear=10, perspective=0.0, border=(0, 0)): # torchvision.transforms.RandomAffine(degrees=(-10, 10), translate=(.1, .1), scale=(.9, 1.1), shear=(-10, 10)) # targets = [cls, xyxy] img = img_rgb targets = targets_rgb segments = segments_rgb height = img.shape[0] + border[0] * 2 # shape(h,w,c) width = img.shape[1] + border[1] * 2 # Center C = np.eye(3) C[0, 2] = -img.shape[1] / 2 # x translation (pixels) C[1, 2] = -img.shape[0] / 2 # y translation (pixels) # Perspective P = np.eye(3) P[2, 0] = random.uniform(-perspective, perspective) # x perspective (about y) P[2, 1] = random.uniform(-perspective, perspective) # y perspective (about x) # Rotation and Scale R = np.eye(3) a = random.uniform(-degrees, degrees) # a += random.choice([-180, -90, 0, 90]) # add 90deg rotations to small rotations s = random.uniform(1 - scale, 1 + scale) # s = 2 ** random.uniform(-scale, scale) R[:2] = cv2.getRotationMatrix2D(angle=a, center=(0, 0), scale=s) # Shear S = np.eye(3) S[0, 1] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # x shear (deg) S[1, 0] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # y shear (deg) # Translation T = np.eye(3) T[0, 2] = random.uniform(0.5 - translate, 0.5 + translate) * width # x translation (pixels) T[1, 2] = random.uniform(0.5 - translate, 0.5 + translate) * height # y translation (pixels) # Combined rotation matrix M = T @ S @ R @ P @ C # order of operations (right to left) is IMPORTANT if (border[0] != 0) or (border[1] != 0) or (M != np.eye(3)).any(): # image changed if perspective: # img = cv2.warpPerspective(img, M, dsize=(width, height), borderValue=(114, 114, 114)) img_rgb = cv2.warpPerspective(img_rgb, M, dsize=(width, height), borderValue=(114, 114, 114)) img_ir = cv2.warpPerspective(img_ir, M, dsize=(width, height), borderValue=(114, 114, 114)) else: # affine # img = cv2.warpAffine(img, M[:2], dsize=(width, height), borderValue=(114, 114, 114)) img_rgb = cv2.warpAffine(img_rgb, M[:2], dsize=(width, height), borderValue=(114, 114, 114)) img_ir = cv2.warpAffine(img_ir, M[:2], dsize=(width, height), borderValue=(114, 114, 114)) # Visualize # import matplotlib.pyplot as plt # ax = plt.subplots(1, 2, figsize=(12, 6))[1].ravel() # ax[0].imshow(img_rgb[:, :, ::-1]) # base # ax[1].imshow(img_ir[:, :, ::-1]) # warped # Transform label coordinates n = len(targets) if n: use_segments = any(x.any() for x in segments) new = np.zeros((n, 4)) if use_segments: # warp segments segments = resample_segments(segments) # upsample for i, segment in enumerate(segments): xy = np.ones((len(segment), 3)) xy[:, :2] = segment xy = xy @ M.T # transform xy = xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2] # perspective rescale or affine # clip new[i] = segment2box(xy, width, height) else: # warp boxes xy = np.ones((n * 4, 3)) xy[:, :2] = targets[:, [1, 2, 3, 4, 1, 4, 3, 2]].reshape(n * 4, 2) # x1y1, x2y2, x1y2, x2y1 xy = xy @ M.T # transform xy = (xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2]).reshape(n, 8) # perspective rescale or affine # create new boxes x = xy[:, [0, 2, 4, 6]] y = xy[:, [1, 3, 5, 7]] new = np.concatenate((x.min(1), y.min(1), x.max(1), y.max(1))).reshape(4, n).T # clip new[:, [0, 2]] = new[:, [0, 2]].clip(0, width) new[:, [1, 3]] = new[:, [1, 3]].clip(0, height) # filter candidates i = box_candidates(box1=targets[:, 1:5].T * s, box2=new.T, area_thr=0.01 if use_segments else 0.10) targets = targets[i] targets[:, 1:5] = new[i] return img_rgb, img_ir, targets, targets def box_candidates(box1, box2, wh_thr=2, ar_thr=20, area_thr=0.1, eps=1e-16): # box1(4,n), box2(4,n) # Compute candidate boxes: box1 before augment, box2 after augment, wh_thr (pixels), aspect_ratio_thr, area_ratio w1, h1 = box1[2] - box1[0], box1[3] - box1[1] w2, h2 = box2[2] - box2[0], box2[3] - box2[1] ar = np.maximum(w2 / (h2 + eps), h2 / (w2 + eps)) # aspect ratio return (w2 > wh_thr) & (h2 > wh_thr) & (w2 * h2 / (w1 * h1 + eps) > area_thr) & (ar < ar_thr) # candidates def cutout(image, labels): # Applies image cutout augmentation https://arxiv.org/abs/1708.04552 h, w = image.shape[:2] def bbox_ioa(box1, box2): # Returns the intersection over box2 area given box1, box2. box1 is 4, box2 is nx4. boxes are x1y1x2y2 box2 = box2.transpose() # Get the coordinates of bounding boxes b1_x1, b1_y1, b1_x2, b1_y2 = box1[0], box1[1], box1[2], box1[3] b2_x1, b2_y1, b2_x2, b2_y2 = box2[0], box2[1], box2[2], box2[3] # Intersection area inter_area = (np.minimum(b1_x2, b2_x2) - np.maximum(b1_x1, b2_x1)).clip(0) * \ (np.minimum(b1_y2, b2_y2) - np.maximum(b1_y1, b2_y1)).clip(0) # box2 area box2_area = (b2_x2 - b2_x1) * (b2_y2 - b2_y1) + 1e-16 # Intersection over box2 area return inter_area / box2_area # create random masks scales = [0.5] * 1 + [0.25] * 2 + [0.125] * 4 + [0.0625] * 8 + [0.03125] * 16 # image size fraction for s in scales: mask_h = random.randint(1, int(h * s)) mask_w = random.randint(1, int(w * s)) # box xmin = max(0, random.randint(0, w) - mask_w // 2) ymin = max(0, random.randint(0, h) - mask_h // 2) xmax = min(w, xmin + mask_w) ymax = min(h, ymin + mask_h) # apply random color mask image[ymin:ymax, xmin:xmax] = [random.randint(64, 191) for _ in range(3)] # return unobscured labels if len(labels) and s > 0.03: box = np.array([xmin, ymin, xmax, ymax], dtype=np.float32) ioa = bbox_ioa(box, labels[:, 1:5]) # intersection over area labels = labels[ioa < 0.60] # remove >60% obscured labels return labels def create_folder(path='./new'): # Create folder if os.path.exists(path): shutil.rmtree(path) # delete output folder os.makedirs(path) # make new output folder def flatten_recursive(path='../coco128'): # Flatten a recursive directory by bringing all files to top level new_path = Path(path + '_flat') create_folder(new_path) for file in tqdm(glob.glob(str(Path(path)) + '/**/*.*', recursive=True)): shutil.copyfile(file, new_path / Path(file).name) def extract_boxes(path='../coco128/'): # from utils.datasets import *; extract_boxes('../coco128') # Convert detection dataset into classification dataset, with one directory per class path = Path(path) # images dir shutil.rmtree(path / 'classifier') if (path / 'classifier').is_dir() else None # remove existing files = list(path.rglob('*.*')) n = len(files) # number of files for im_file in tqdm(files, total=n): if im_file.suffix[1:] in img_formats: # image im = cv2.imread(str(im_file))[..., ::-1] # BGR to RGB h, w = im.shape[:2] # labels lb_file = Path(img2label_paths([str(im_file)])[0]) if Path(lb_file).exists(): with open(lb_file, 'r') as f: lb = np.array([x.split() for x in f.read().strip().splitlines()], dtype=np.float32) # labels for j, x in enumerate(lb): c = int(x[0]) # class f = (path / 'classifier') / f'{c}' / f'{path.stem}_{im_file.stem}_{j}.jpg' # new filename if not f.parent.is_dir(): f.parent.mkdir(parents=True) b = x[1:] * [w, h, w, h] # box # b[2:] = b[2:].max() # rectangle to square b[2:] = b[2:] * 1.2 + 3 # pad b = xywh2xyxy(b.reshape(-1, 4)).ravel().astype(np.int) b[[0, 2]] = np.clip(b[[0, 2]], 0, w) # clip boxes outside of image b[[1, 3]] = np.clip(b[[1, 3]], 0, h) assert cv2.imwrite(str(f), im[b[1]:b[3], b[0]:b[2]]), f'box failure in {f}' def autosplit(path='../coco128', weights=(0.9, 0.1, 0.0), annotated_only=False): """ Autosplit a dataset into train/val/test splits and save path/autosplit_*.txt files Usage: from utils.datasets import *; autosplit('../coco128') Arguments path: Path to images directory weights: Train, val, test weights (list) annotated_only: Only use images with an annotated txt file """ path = Path(path) # images dir files = sum([list(path.rglob(f"*.{img_ext}")) for img_ext in img_formats], []) # image files only n = len(files) # number of files indices = random.choices([0, 1, 2], weights=weights, k=n) # assign each image to a split txt = ['autosplit_train.txt', 'autosplit_val.txt', 'autosplit_test.txt'] # 3 txt files [(path / x).unlink() for x in txt if (path / x).exists()] # remove existing print(f'Autosplitting images from {path}' + ', using *.txt labeled images only' * annotated_only) for i, img in tqdm(zip(indices, files), total=n): if not annotated_only or Path(img2label_paths([str(img)])[0]).exists(): # check label with open(path / txt[i], 'a') as f: f.write(str(img) + '\n') # add image to txt file ================================================ FILE: utils/flask_rest_api/example_request.py ================================================ """Perform test request""" import pprint import requests DETECTION_URL = "http://localhost:5000/v1/object-detection/yolov5s" TEST_IMAGE = "zidane.jpg" image_data = open(TEST_IMAGE, "rb").read() response = requests.post(DETECTION_URL, files={"image": image_data}).json() pprint.pprint(response) ================================================ FILE: utils/flask_rest_api/restapi.py ================================================ """ Run a rest API exposing the yolov5s object detection model """ import argparse import io import torch from PIL import Image from flask import Flask, request app = Flask(__name__) DETECTION_URL = "/v1/object-detection/yolov5s" @app.route(DETECTION_URL, methods=["POST"]) def predict(): if not request.method == "POST": return if request.files.get("image"): image_file = request.files["image"] image_bytes = image_file.read() img = Image.open(io.BytesIO(image_bytes)) results = model(img, size=640) # reduce size=320 for faster inference return results.pandas().xyxy[0].to_json(orient="records") if __name__ == "__main__": parser = argparse.ArgumentParser(description="Flask API exposing YOLOv5 model") parser.add_argument("--port", default=5000, type=int, help="port number") args = parser.parse_args() model = torch.hub.load("ultralytics/yolov5", "yolov5s", force_reload=True) # force_reload to recache app.run(host="0.0.0.0", port=args.port) # debug=True causes Restarting with stat ================================================ FILE: utils/general.py ================================================ # YOLOv5 general utils import glob import logging import math import os import platform import random import re import subprocess import time from itertools import repeat from multiprocessing.pool import ThreadPool from pathlib import Path import cv2 import numpy as np import pandas as pd import pkg_resources as pkg import torch import torchvision import yaml from utils.google_utils import gsutil_getsize from utils.metrics import fitness from utils.torch_utils import init_torch_seeds import torch.backends.cudnn as cudnn # Settings torch.set_printoptions(linewidth=320, precision=5, profile='long') np.set_printoptions(linewidth=320, formatter={'float_kind': '{:11.5g}'.format}) # format short g, %precision=5 pd.options.display.max_columns = 10 cv2.setNumThreads(0) # prevent OpenCV from multithreading (incompatible with PyTorch DataLoader) os.environ['NUMEXPR_MAX_THREADS'] = str(min(os.cpu_count(), 8)) # NumExpr max threads logger = logging.getLogger(__name__) def set_logging(rank=-1, verbose=True): logging.basicConfig( format="%(message)s", level=logging.INFO if (verbose and rank in [-1, 0]) else logging.WARN) def init_seeds(seed=0, deterministic=False): # Initialize random number generator (RNG) seeds https://pytorch.org/docs/stable/notes/randomness.html random.seed(seed) np.random.seed(seed) torch.manual_seed(seed) torch.cuda.manual_seed(seed) torch.cuda.manual_seed_all(seed) # for Multi-GPU, exception safe # torch.backends.cudnn.benchmark = True # AutoBatch problem https://github.com/ultralytics/yolov5/issues/9287 if deterministic and check_version(torch.__version__, '1.12.0'): # https://github.com/ultralytics/yolov5/pull/8213 torch.use_deterministic_algorithms(True) torch.backends.cudnn.deterministic = True os.environ['CUBLAS_WORKSPACE_CONFIG'] = ':4096:8' os.environ['PYTHONHASHSEED'] = str(seed) def get_latest_run(search_dir='.'): # Return path to most recent 'last.pt' in /runs (i.e. to --resume from) last_list = glob.glob(f'{search_dir}/**/last*.pt', recursive=True) return max(last_list, key=os.path.getctime) if last_list else '' def isdocker(): # Is environment a Docker container return Path('/workspace').exists() # or Path('/.dockerenv').exists() def emojis(str=''): # Return platform-dependent emoji-safe version of string return str.encode().decode('ascii', 'ignore') if platform.system() == 'Windows' else str def file_size(file): # Return file size in MB return Path(file).stat().st_size / 1e6 def check_online(): # Check internet connectivity import socket try: socket.create_connection(("1.1.1.1", 443), 5) # check host accesability return True except OSError: return False def check_git_status(): # Recommend 'git pull' if code is out of date print(colorstr('github: '), end='') try: assert Path('.git').exists(), 'skipping check (not a git repository)' assert not isdocker(), 'skipping check (Docker image)' assert check_online(), 'skipping check (offline)' cmd = 'git fetch && git config --get remote.origin.url' url = subprocess.check_output(cmd, shell=True).decode().strip().rstrip('.git') # github repo url branch = subprocess.check_output('git rev-parse --abbrev-ref HEAD', shell=True).decode().strip() # checked out n = int(subprocess.check_output(f'git rev-list {branch}..origin/master --count', shell=True)) # commits behind if n > 0: s = f"⚠️ WARNING: code is out of date by {n} commit{'s' * (n > 1)}. " \ f"Use 'git pull' to update or 'git clone {url}' to download latest." else: s = f'up to date with {url} ✅' print(emojis(s)) # emoji-safe except Exception as e: print(e) def check_requirements(requirements='requirements.txt', exclude=()): # Check installed dependencies meet requirements (pass *.txt file or list of packages) import pkg_resources as pkg prefix = colorstr('red', 'bold', 'requirements:') if isinstance(requirements, (str, Path)): # requirements.txt file file = Path(requirements) if not file.exists(): print(f"{prefix} {file.resolve()} not found, check failed.") return requirements = [f'{x.name}{x.specifier}' for x in pkg.parse_requirements(file.open()) if x.name not in exclude] else: # list or tuple of packages requirements = [x for x in requirements if x not in exclude] n = 0 # number of packages updates for r in requirements: try: pkg.require(r) except Exception as e: # DistributionNotFound or VersionConflict if requirements not met n += 1 print(f"{prefix} {r} not found and is required by YOLOv5, attempting auto-update...") print(subprocess.check_output(f"pip install '{r}'", shell=True).decode()) if n: # if packages updated source = file.resolve() if 'file' in locals() else requirements s = f"{prefix} {n} package{'s' * (n > 1)} updated per {source}\n" \ f"{prefix} ⚠️ {colorstr('bold', 'Restart runtime or rerun command for updates to take effect')}\n" print(emojis(s)) # emoji-safe def check_img_size(img_size, s=32): # Verify img_size is a multiple of stride s new_size = make_divisible(img_size, int(s)) # ceil gs-multiple if new_size != img_size: print('WARNING: --img-size %g must be multiple of max stride %g, updating to %g' % (img_size, s, new_size)) return new_size def check_imshow(): # Check if environment supports image displays try: assert not isdocker(), 'cv2.imshow() is disabled in Docker environments' cv2.imshow('test', np.zeros((1, 1, 3))) cv2.waitKey(1) cv2.destroyAllWindows() cv2.waitKey(1) return True except Exception as e: print(f'WARNING: Environment does not support cv2.imshow() or PIL Image.show() image displays\n{e}') return False def check_file(file): # Search for file if not found if Path(file).is_file() or file == '': return file else: files = glob.glob('./**/' + file, recursive=True) # find file assert len(files), f'File Not Found: {file}' # assert file was found assert len(files) == 1, f"Multiple files match '{file}', specify exact path: {files}" # assert unique return files[0] # return file def check_dataset(dict): # Download dataset if not found locally val, s = dict.get('val'), dict.get('download') if val and len(val): val = [Path(x).resolve() for x in (val if isinstance(val, list) else [val])] # val path if not all(x.exists() for x in val): print('\nWARNING: Dataset not found, nonexistent paths: %s' % [str(x) for x in val if not x.exists()]) if s and len(s): # download script if s.startswith('http') and s.endswith('.zip'): # URL f = Path(s).name # filename print(f'Downloading {s} ...') torch.hub.download_url_to_file(s, f) r = os.system(f'unzip -q {f} -d ../ && rm {f}') # unzip elif s.startswith('bash '): # bash script print(f'Running {s} ...') r = os.system(s) else: # python script r = exec(s) # return None print('Dataset autodownload %s\n' % ('success' if r in (0, None) else 'failure')) # print result else: raise Exception('Dataset not found.') def check_version(current='0.0.0', minimum='0.0.0', name='version ', pinned=False, hard=False, verbose=False): # Check version vs. required version current, minimum = (pkg.parse_version(x) for x in (current, minimum)) result = (current == minimum) if pinned else (current >= minimum) # bool s = f'WARNING ⚠️ {name}{minimum} is required by YOLOv5, but {name}{current} is currently installed' # string if hard: assert result, emojis(s) # assert min requirements met if verbose and not result: LOGGER.warning(s) return result def download(url, dir='.', multi_thread=False): # Multi-threaded file download and unzip function def download_one(url, dir): # Download 1 file f = dir / Path(url).name # filename if not f.exists(): print(f'Downloading {url} to {f}...') torch.hub.download_url_to_file(url, f, progress=True) # download if f.suffix in ('.zip', '.gz'): print(f'Unzipping {f}...') if f.suffix == '.zip': os.system(f'unzip -qo {f} -d {dir} && rm {f}') # unzip -quiet -overwrite elif f.suffix == '.gz': os.system(f'tar xfz {f} --directory {f.parent} && rm {f}') # unzip dir = Path(dir) dir.mkdir(parents=True, exist_ok=True) # make directory if multi_thread: ThreadPool(8).imap(lambda x: download_one(*x), zip(url, repeat(dir))) # 8 threads else: for u in tuple(url) if isinstance(url, str) else url: download_one(u, dir) def make_divisible(x, divisor): # Returns x evenly divisible by divisor return math.ceil(x / divisor) * divisor def clean_str(s): # Cleans a string by replacing special characters with underscore _ return re.sub(pattern="[|@#!¡·$€%&()=?¿^*;:,¨´><+]", repl="_", string=s) def one_cycle(y1=0.0, y2=1.0, steps=100): # lambda function for sinusoidal ramp from y1 to y2 return lambda x: ((1 - math.cos(x * math.pi / steps)) / 2) * (y2 - y1) + y1 def colorstr(*input): # Colors a string https://en.wikipedia.org/wiki/ANSI_escape_code, i.e. colorstr('blue', 'hello world') *args, string = input if len(input) > 1 else ('blue', 'bold', input[0]) # color arguments, string colors = {'black': '\033[30m', # basic colors 'red': '\033[31m', 'green': '\033[32m', 'yellow': '\033[33m', 'blue': '\033[34m', 'magenta': '\033[35m', 'cyan': '\033[36m', 'white': '\033[37m', 'bright_black': '\033[90m', # bright colors 'bright_red': '\033[91m', 'bright_green': '\033[92m', 'bright_yellow': '\033[93m', 'bright_blue': '\033[94m', 'bright_magenta': '\033[95m', 'bright_cyan': '\033[96m', 'bright_white': '\033[97m', 'end': '\033[0m', # misc 'bold': '\033[1m', 'underline': '\033[4m'} return ''.join(colors[x] for x in args) + f'{string}' + colors['end'] def labels_to_class_weights(labels, nc=80): # Get class weights (inverse frequency) from training labels if labels[0] is None: # no labels loaded return torch.Tensor() labels = np.concatenate(labels, 0) # labels.shape = (866643, 5) for COCO classes = labels[:, 0].astype(np.int) # labels = [class xywh] weights = np.bincount(classes, minlength=nc) # occurrences per class # Prepend gridpoint count (for uCE training) # gpi = ((320 / 32 * np.array([1, 2, 4])) ** 2 * 3).sum() # gridpoints per image # weights = np.hstack([gpi * len(labels) - weights.sum() * 9, weights * 9]) ** 0.5 # prepend gridpoints to start weights[weights == 0] = 1 # replace empty bins with 1 weights = 1 / weights # number of targets per class weights /= weights.sum() # normalize return torch.from_numpy(weights) def labels_to_image_weights(labels, nc=80, class_weights=np.ones(80)): # Produces image weights based on class_weights and image contents class_counts = np.array([np.bincount(x[:, 0].astype(np.int), minlength=nc) for x in labels]) image_weights = (class_weights.reshape(1, nc) * class_counts).sum(1) # index = random.choices(range(n), weights=image_weights, k=1) # weight image sample return image_weights def coco80_to_coco91_class(): # converts 80-index (val2014) to 91-index (paper) # https://tech.amikelive.com/node-718/what-object-categories-labels-are-in-coco-dataset/ # a = np.loadtxt('data/coco.names', dtype='str', delimiter='\n') # b = np.loadtxt('data/coco_paper.names', dtype='str', delimiter='\n') # x1 = [list(a[i] == b).index(True) + 1 for i in range(80)] # darknet to coco # x2 = [list(b[i] == a).index(True) if any(b[i] == a) else None for i in range(91)] # coco to darknet x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90] return x def xyxy2xywh2(x): # Convert nx4 boxes from [x1, y1, x2, y2] to [x1, y1, w, h] where xy1=top-left, xy2=bottom-right y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] = x[:, 0] # x top-left y[:, 1] = x[:, 1] # y top-left y[:, 2] = x[:, 2] - x[:, 0] # width y[:, 3] = x[:, 3] - x[:, 1] # height return y def xyxy2xywh(x): # Convert nx4 boxes from [x1, y1, x2, y2] to [x, y, w, h] where xy1=top-left, xy2=bottom-right y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] = (x[:, 0] + x[:, 2]) / 2 # x center y[:, 1] = (x[:, 1] + x[:, 3]) / 2 # y center y[:, 2] = x[:, 2] - x[:, 0] # width y[:, 3] = x[:, 3] - x[:, 1] # height return y def xywh2xyxy(x): # Convert nx4 boxes from [x, y, w, h] to [x1, y1, x2, y2] where xy1=top-left, xy2=bottom-right y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] = x[:, 0] - x[:, 2] / 2 # top left x y[:, 1] = x[:, 1] - x[:, 3] / 2 # top left y y[:, 2] = x[:, 0] + x[:, 2] / 2 # bottom right x y[:, 3] = x[:, 1] + x[:, 3] / 2 # bottom right y return y def xywhn2xyxy(x, w=640, h=640, padw=0, padh=0): # Convert nx4 boxes from [x, y, w, h] normalized to [x1, y1, x2, y2] where xy1=top-left, xy2=bottom-right y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] = w * (x[:, 0] - x[:, 2] / 2) + padw # top left x y[:, 1] = h * (x[:, 1] - x[:, 3] / 2) + padh # top left y y[:, 2] = w * (x[:, 0] + x[:, 2] / 2) + padw # bottom right x y[:, 3] = h * (x[:, 1] + x[:, 3] / 2) + padh # bottom right y return y def xyn2xy(x, w=640, h=640, padw=0, padh=0): # Convert normalized segments into pixel segments, shape (n,2) y = x.clone() if isinstance(x, torch.Tensor) else np.copy(x) y[:, 0] = w * x[:, 0] + padw # top left x y[:, 1] = h * x[:, 1] + padh # top left y return y def segment2box(segment, width=640, height=640): # Convert 1 segment label to 1 box label, applying inside-image constraint, i.e. (xy1, xy2, ...) to (xyxy) x, y = segment.T # segment xy inside = (x >= 0) & (y >= 0) & (x <= width) & (y <= height) x, y, = x[inside], y[inside] return np.array([x.min(), y.min(), x.max(), y.max()]) if any(x) else np.zeros((1, 4)) # xyxy def segments2boxes(segments): # Convert segment labels to box labels, i.e. (cls, xy1, xy2, ...) to (cls, xywh) boxes = [] for s in segments: x, y = s.T # segment xy boxes.append([x.min(), y.min(), x.max(), y.max()]) # cls, xyxy return xyxy2xywh(np.array(boxes)) # cls, xywh def resample_segments(segments, n=1000): # Up-sample an (n,2) segment for i, s in enumerate(segments): x = np.linspace(0, len(s) - 1, n) xp = np.arange(len(s)) segments[i] = np.concatenate([np.interp(x, xp, s[:, i]) for i in range(2)]).reshape(2, -1).T # segment xy return segments def scale_coords(img1_shape, coords, img0_shape, ratio_pad=None): # Rescale coords (xyxy) from img1_shape to img0_shape if ratio_pad is None: # calculate from img0_shape gain = min(img1_shape[0] / img0_shape[0], img1_shape[1] / img0_shape[1]) # gain = old / new pad = (img1_shape[1] - img0_shape[1] * gain) / 2, (img1_shape[0] - img0_shape[0] * gain) / 2 # wh padding else: gain = ratio_pad[0][0] pad = ratio_pad[1] coords[:, [0, 2]] -= pad[0] # x padding coords[:, [1, 3]] -= pad[1] # y padding coords[:, :4] /= gain clip_coords(coords, img0_shape) return coords def clip_coords(boxes, img_shape): # Clip bounding xyxy bounding boxes to image shape (height, width) boxes[:, 0].clamp_(0, img_shape[1]) # x1 boxes[:, 1].clamp_(0, img_shape[0]) # y1 boxes[:, 2].clamp_(0, img_shape[1]) # x2 boxes[:, 3].clamp_(0, img_shape[0]) # y2 def bbox_iou(box1, box2, x1y1x2y2=True, GIoU=False, DIoU=False, CIoU=False, eps=1e-7): # Returns the IoU of box1 to box2. box1 is 4, box2 is nx4 box2 = box2.T # Get the coordinates of bounding boxes if x1y1x2y2: # x1, y1, x2, y2 = box1 b1_x1, b1_y1, b1_x2, b1_y2 = box1[0], box1[1], box1[2], box1[3] b2_x1, b2_y1, b2_x2, b2_y2 = box2[0], box2[1], box2[2], box2[3] else: # transform from xywh to xyxy b1_x1, b1_x2 = box1[0] - box1[2] / 2, box1[0] + box1[2] / 2 b1_y1, b1_y2 = box1[1] - box1[3] / 2, box1[1] + box1[3] / 2 b2_x1, b2_x2 = box2[0] - box2[2] / 2, box2[0] + box2[2] / 2 b2_y1, b2_y2 = box2[1] - box2[3] / 2, box2[1] + box2[3] / 2 # Intersection area inter = (torch.min(b1_x2, b2_x2) - torch.max(b1_x1, b2_x1)).clamp(0) * \ (torch.min(b1_y2, b2_y2) - torch.max(b1_y1, b2_y1)).clamp(0) # Union Area w1, h1 = b1_x2 - b1_x1, b1_y2 - b1_y1 + eps w2, h2 = b2_x2 - b2_x1, b2_y2 - b2_y1 + eps union = w1 * h1 + w2 * h2 - inter + eps iou = inter / union if GIoU or DIoU or CIoU: cw = torch.max(b1_x2, b2_x2) - torch.min(b1_x1, b2_x1) # convex (smallest enclosing box) width ch = torch.max(b1_y2, b2_y2) - torch.min(b1_y1, b2_y1) # convex height if CIoU or DIoU: # Distance or Complete IoU https://arxiv.org/abs/1911.08287v1 c2 = cw ** 2 + ch ** 2 + eps # convex diagonal squared rho2 = ((b2_x1 + b2_x2 - b1_x1 - b1_x2) ** 2 + (b2_y1 + b2_y2 - b1_y1 - b1_y2) ** 2) / 4 # center distance squared if DIoU: return iou - rho2 / c2 # DIoU elif CIoU: # https://github.com/Zzh-tju/DIoU-SSD-pytorch/blob/master/utils/box/box_utils.py#L47 v = (4 / math.pi ** 2) * torch.pow(torch.atan(w2 / h2) - torch.atan(w1 / h1), 2) with torch.no_grad(): alpha = v / (v - iou + (1 + eps)) return iou - (rho2 / c2 + v * alpha) # CIoU else: # GIoU https://arxiv.org/pdf/1902.09630.pdf c_area = cw * ch + eps # convex area return iou - (c_area - union) / c_area # GIoU else: return iou # IoU def box_iou(box1, box2): # https://github.com/pytorch/vision/blob/master/torchvision/ops/boxes.py """ Return intersection-over-union (Jaccard index) of boxes. Both sets of boxes are expected to be in (x1, y1, x2, y2) format. Arguments: box1 (Tensor[N, 4]) box2 (Tensor[M, 4]) Returns: iou (Tensor[N, M]): the NxM matrix containing the pairwise IoU values for every element in boxes1 and boxes2 """ def box_area(box): # box = 4xn return (box[2] - box[0]) * (box[3] - box[1]) area1 = box_area(box1.T) area2 = box_area(box2.T) # inter(N,M) = (rb(N,M,2) - lt(N,M,2)).clamp(0).prod(2) inter = (torch.min(box1[:, None, 2:], box2[:, 2:]) - torch.max(box1[:, None, :2], box2[:, :2])).clamp(0).prod(2) return inter / (area1[:, None] + area2 - inter) # iou = inter / (area1 + area2 - inter) def wh_iou(wh1, wh2): # Returns the nxm IoU matrix. wh1 is nx2, wh2 is mx2 wh1 = wh1[:, None] # [N,1,2] wh2 = wh2[None] # [1,M,2] inter = torch.min(wh1, wh2).prod(2) # [N,M] return inter / (wh1.prod(2) + wh2.prod(2) - inter) # iou = inter / (area1 + area2 - inter) def python_nms(dets, scores, iou_thresh): x1 = dets[:, 0] y1 = dets[:, 1] x2 = dets[:, 2] y2 = dets[:, 3] areas = (y2 - y1 + 1) * (x2 - x1 + 1) keep = [] index = scores.argsort()[::-1] while index.size > 0: i = index[0] # every time the first is the biggst, and add it directly keep.append(i) x11 = torch.max(x1[i], x1[index[1:]]) # calculate the points of overlap y11 = torch.max(y1[i], y1[index[1:]]) x22 = torch.min(x2[i], x2[index[1:]]) y22 = torch.min(y2[i], y2[index[1:]]) w = np.maximum(0, x22 - x11 + 1) # the weights of overlap h = np.maximum(0, y22 - y11 + 1) # the height of overlap overlaps = w * h ious = overlaps / (areas[i] + areas[index[1:]] - overlaps) idx = torch.where(ious <= iou_thresh)[0] index = index[idx + 1] # because index start from 1 return keep def non_max_suppression(prediction, conf_thres=0.25, iou_thres=0.45, classes=None, agnostic=False, multi_label=False, labels=()): """Runs Non-Maximum Suppression (NMS) on inference results Returns: list of detections, on (n,6) tensor per image [xyxy, conf, cls] """ nc = prediction.shape[2] - 5 # number of classes xc = prediction[..., 4] > conf_thres # candidates # Settings min_wh, max_wh = 2, 4096 # (pixels) minimum and maximum box width and height max_det = 300 # maximum number of detections per image max_nms = 30000 # maximum number of boxes into torchvision.ops.nms() time_limit = 10.0 # seconds to quit after redundant = True # require redundant detections multi_label &= nc > 1 # multiple labels per box (adds 0.5ms/img) merge = False # use merge-NMS t = time.time() output = [torch.zeros((0, 6), device=prediction.device)] * prediction.shape[0] for xi, x in enumerate(prediction): # image index, image inference # Apply constraints # x[((x[..., 2:4] < min_wh) | (x[..., 2:4] > max_wh)).any(1), 4] = 0 # width-height x = x[xc[xi]] # confidence # Cat apriori labels if autolabelling if labels and len(labels[xi]): l = labels[xi] v = torch.zeros((len(l), nc + 5), device=x.device) v[:, :4] = l[:, 1:5] # box v[:, 4] = 1.0 # conf v[range(len(l)), l[:, 0].long() + 5] = 1.0 # cls x = torch.cat((x, v), 0) # If none remain process next image if not x.shape[0]: continue # Compute conf #x[:, 5:] = 1 x[:, 5:] *= x[:, 4:5] # conf = obj_conf * cls_conf # Box (center x, center y, width, height) to (x1, y1, x2, y2) box = xywh2xyxy(x[:, :4]) # Detections matrix nx6 (xyxy, conf, cls) if multi_label: i, j = (x[:, 5:] > conf_thres).nonzero(as_tuple=False).T x = torch.cat((box[i], x[i, j + 5, None], j[:, None].float()), 1) else: # best class only conf, j = x[:, 5:].max(1, keepdim=True) x = torch.cat((box, conf, j.float()), 1)[conf.view(-1) > conf_thres] # Filter by class if classes is not None: x = x[(x[:, 5:6] == torch.tensor(classes, device=x.device)).any(1)] # Apply finite constraint # if not torch.isfinite(x).all(): # x = x[torch.isfinite(x).all(1)] # Check shape n = x.shape[0] # number of boxes if not n: # no boxes continue elif n > max_nms: # excess boxes x = x[x[:, 4].argsort(descending=True)[:max_nms]] # sort by confidence # Batched NMS c = x[:, 5:6] * (0 if agnostic else max_wh) # classes boxes, scores = x[:, :4] + c, x[:, 4] # boxes (offset by class), scores i = torchvision.ops.nms(boxes, scores, iou_thres) # NMS if i.shape[0] > max_det: # limit detections i = i[:max_det] if merge and (1 < n < 3E3): # Merge NMS (boxes merged using weighted mean) # update boxes as boxes(i,4) = weights(i,n) * boxes(n,4) iou = box_iou(boxes[i], boxes) > iou_thres # iou matrix weights = iou * scores[None] # box weights x[i, :4] = torch.mm(weights, x[:, :4]).float() / weights.sum(1, keepdim=True) # merged boxes if redundant: i = i[iou.sum(1) > 1] # require redundancy output[xi] = x[i] if (time.time() - t) > time_limit: print(f'WARNING: NMS time limit {time_limit}s exceeded') break # time limit exceeded return output def strip_optimizer(f='best.pt', s=''): # from utils.general import *; strip_optimizer() # Strip optimizer from 'f' to finalize training, optionally save as 's' x = torch.load(f, map_location=torch.device('cpu')) if x.get('ema'): x['model'] = x['ema'] # replace model with ema for k in 'optimizer', 'training_results', 'wandb_id', 'ema', 'updates': # keys x[k] = None x['epoch'] = -1 x['model'].half() # to FP16 for p in x['model'].parameters(): p.requires_grad = False torch.save(x, s or f) mb = os.path.getsize(s or f) / 1E6 # filesize print(f"Optimizer stripped from {f},{(' saved as %s,' % s) if s else ''} {mb:.1f}MB") def print_mutation(hyp, results, yaml_file='hyp_evolved.yaml', bucket=''): # Print mutation results to evolve.txt (for use with train.py --evolve) a = '%10s' * len(hyp) % tuple(hyp.keys()) # hyperparam keys b = '%10.3g' * len(hyp) % tuple(hyp.values()) # hyperparam values c = '%10.4g' * len(results) % results # results (P, R, mAP@0.5, mAP@0.5:0.95, val_losses x 3) print('\n%s\n%s\nEvolved fitness: %s\n' % (a, b, c)) if bucket: url = 'gs://%s/evolve.txt' % bucket if gsutil_getsize(url) > (os.path.getsize('evolve.txt') if os.path.exists('evolve.txt') else 0): os.system('gsutil cp %s .' % url) # download evolve.txt if larger than local with open('evolve.txt', 'a') as f: # append result f.write(c + b + '\n') x = np.unique(np.loadtxt('evolve.txt', ndmin=2), axis=0) # load unique rows x = x[np.argsort(-fitness(x))] # sort np.savetxt('evolve.txt', x, '%10.3g') # save sort by fitness # Save yaml for i, k in enumerate(hyp.keys()): hyp[k] = float(x[0, i + 7]) with open(yaml_file, 'w') as f: results = tuple(x[0, :7]) c = '%10.4g' * len(results) % results # results (P, R, mAP@0.5, mAP@0.5:0.95, val_losses x 3) f.write('# Hyperparameter Evolution Results\n# Generations: %g\n# Metrics: ' % len(x) + c + '\n\n') yaml.safe_dump(hyp, f, sort_keys=False) if bucket: os.system('gsutil cp evolve.txt %s gs://%s' % (yaml_file, bucket)) # upload def apply_classifier(x, model, img, im0): # Apply a second stage classifier to yolo outputs im0 = [im0] if isinstance(im0, np.ndarray) else im0 for i, d in enumerate(x): # per image if d is not None and len(d): d = d.clone() # Reshape and pad cutouts b = xyxy2xywh(d[:, :4]) # boxes b[:, 2:] = b[:, 2:].max(1)[0].unsqueeze(1) # rectangle to square b[:, 2:] = b[:, 2:] * 1.3 + 30 # pad d[:, :4] = xywh2xyxy(b).long() # Rescale boxes from img_size to im0 size scale_coords(img.shape[2:], d[:, :4], im0[i].shape) # Classes pred_cls1 = d[:, 5].long() ims = [] for j, a in enumerate(d): # per item cutout = im0[i][int(a[1]):int(a[3]), int(a[0]):int(a[2])] im = cv2.resize(cutout, (224, 224)) # BGR # cv2.imwrite('test%i.jpg' % j, cutout) im = im[:, :, ::-1].transpose(2, 0, 1) # BGR to RGB, to 3x416x416 im = np.ascontiguousarray(im, dtype=np.float32) # uint8 to float32 im /= 255.0 # 0 - 255 to 0.0 - 1.0 ims.append(im) pred_cls2 = model(torch.Tensor(ims).to(d.device)).argmax(1) # classifier prediction x[i] = x[i][pred_cls1 == pred_cls2] # retain matching class detections return x def save_one_box(xyxy, im, file='image.jpg', gain=1.02, pad=10, square=False, BGR=False): # Save an image crop as {file} with crop size multiplied by {gain} and padded by {pad} pixels xyxy = torch.tensor(xyxy).view(-1, 4) b = xyxy2xywh(xyxy) # boxes if square: b[:, 2:] = b[:, 2:].max(1)[0].unsqueeze(1) # attempt rectangle to square b[:, 2:] = b[:, 2:] * gain + pad # box wh * gain + pad xyxy = xywh2xyxy(b).long() clip_coords(xyxy, im.shape) crop = im[int(xyxy[0, 1]):int(xyxy[0, 3]), int(xyxy[0, 0]):int(xyxy[0, 2])] cv2.imwrite(str(increment_path(file, mkdir=True).with_suffix('.jpg')), crop if BGR else crop[..., ::-1]) def increment_path(path, exist_ok=False, sep='', mkdir=False): # Increment file or directory path, i.e. runs/exp --> runs/exp{sep}2, runs/exp{sep}3, ... etc. path = Path(path) # os-agnostic if path.exists() and not exist_ok: suffix = path.suffix path = path.with_suffix('') dirs = glob.glob(f"{path}{sep}*") # similar paths matches = [re.search(rf"%s{sep}(\d+)" % path.stem, d) for d in dirs] i = [int(m.groups()[0]) for m in matches if m] # indices n = max(i) + 1 if i else 2 # increment number path = Path(f"{path}{sep}{n}{suffix}") # update path dir = path if path.suffix == '' else path.parent # directory if not dir.exists() and mkdir: dir.mkdir(parents=True, exist_ok=True) # make directory return path ================================================ FILE: utils/google_app_engine/Dockerfile ================================================ FROM gcr.io/google-appengine/python # Create a virtualenv for dependencies. This isolates these packages from # system-level packages. # Use -p python3 or -p python3.7 to select python version. Default is version 2. RUN virtualenv /env -p python3 # Setting these environment variables are the same as running # source /env/bin/activate. ENV VIRTUAL_ENV /env ENV PATH /env/bin:$PATH RUN apt-get update && apt-get install -y python-opencv # Copy the application's requirements.txt and run pip to install all # dependencies into the virtualenv. ADD requirements.txt /app/requirements.txt RUN pip install -r /app/requirements.txt # Add the application source code. ADD . /app # Run a WSGI server to serve the application. gunicorn must be declared as # a dependency in requirements.txt. CMD gunicorn -b :$PORT main:app ================================================ FILE: utils/google_app_engine/additional_requirements.txt ================================================ # add these requirements in your app on top of the existing ones pip==18.1 Flask==1.0.2 gunicorn==19.9.0 ================================================ FILE: utils/google_app_engine/app.yaml ================================================ runtime: custom env: flex service: yolov5app liveness_check: initial_delay_sec: 600 manual_scaling: instances: 1 resources: cpu: 1 memory_gb: 4 disk_size_gb: 20 ================================================ FILE: utils/google_utils.py ================================================ # Google utils: https://cloud.google.com/storage/docs/reference/libraries import os import platform import subprocess import time from pathlib import Path import requests import torch def gsutil_getsize(url=''): # gs://bucket/file size https://cloud.google.com/storage/docs/gsutil/commands/du s = subprocess.check_output(f'gsutil du {url}', shell=True).decode('utf-8') return eval(s.split(' ')[0]) if len(s) else 0 # bytes def attempt_download(file, repo='ultralytics/yolov5'): # Attempt file download if does not exist file = Path(str(file).strip().replace("'", '')) if not file.exists(): try: response = requests.get(f'https://api.github.com/repos/{repo}/releases/latest').json() # github api assets = [x['name'] for x in response['assets']] # release assets, i.e. ['yolov5s.pt', 'yolov5m.pt', ...] tag = response['tag_name'] # i.e. 'v1.0' except: # fallback plan assets = ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt', 'yolov5s6.pt', 'yolov5m6.pt', 'yolov5l6.pt', 'yolov5x6.pt'] try: tag = subprocess.check_output('git tag', shell=True, stderr=subprocess.STDOUT).decode().split()[-1] except: tag = 'v5.0' # current release name = file.name if name in assets: msg = f'{file} missing, try downloading from https://github.com/{repo}/releases/' redundant = False # second download option try: # GitHub url = f'https://github.com/{repo}/releases/download/{tag}/{name}' print(f'Downloading {url} to {file}...') torch.hub.download_url_to_file(url, file) assert file.exists() and file.stat().st_size > 1E6 # check except Exception as e: # GCP print(f'Download error: {e}') assert redundant, 'No secondary mirror' url = f'https://storage.googleapis.com/{repo}/ckpt/{name}' print(f'Downloading {url} to {file}...') os.system(f'curl -L {url} -o {file}') # torch.hub.download_url_to_file(url, weights) finally: if not file.exists() or file.stat().st_size < 1E6: # check file.unlink(missing_ok=True) # remove partial downloads print(f'ERROR: Download failure: {msg}') print('') return def gdrive_download(id='16TiPfZj7htmTyhntwcZyEEAejOUxuT6m', file='tmp.zip'): # Downloads a file from Google Drive. from yolov5.utils.google_utils import *; gdrive_download() t = time.time() file = Path(file) cookie = Path('cookie') # gdrive cookie print(f'Downloading https://drive.google.com/uc?export=download&id={id} as {file}... ', end='') file.unlink(missing_ok=True) # remove existing file cookie.unlink(missing_ok=True) # remove existing cookie # Attempt file download out = "NUL" if platform.system() == "Windows" else "/dev/null" os.system(f'curl -c ./cookie -s -L "drive.google.com/uc?export=download&id={id}" > {out}') if os.path.exists('cookie'): # large file s = f'curl -Lb ./cookie "drive.google.com/uc?export=download&confirm={get_token()}&id={id}" -o {file}' else: # small file s = f'curl -s -L -o {file} "drive.google.com/uc?export=download&id={id}"' r = os.system(s) # execute, capture return cookie.unlink(missing_ok=True) # remove existing cookie # Error check if r != 0: file.unlink(missing_ok=True) # remove partial print('Download error ') # raise Exception('Download error') return r # Unzip if archive if file.suffix == '.zip': print('unzipping... ', end='') os.system(f'unzip -q {file}') # unzip file.unlink() # remove zip to free space print(f'Done ({time.time() - t:.1f}s)') return r def get_token(cookie="./cookie"): with open(cookie) as f: for line in f: if "download" in line: return line.split()[-1] return "" # def upload_blob(bucket_name, source_file_name, destination_blob_name): # # Uploads a file to a bucket # # https://cloud.google.com/storage/docs/uploading-objects#storage-upload-object-python # # storage_client = storage.Client() # bucket = storage_client.get_bucket(bucket_name) # blob = bucket.blob(destination_blob_name) # # blob.upload_from_filename(source_file_name) # # print('File {} uploaded to {}.'.format( # source_file_name, # destination_blob_name)) # # # def download_blob(bucket_name, source_blob_name, destination_file_name): # # Uploads a blob from a bucket # storage_client = storage.Client() # bucket = storage_client.get_bucket(bucket_name) # blob = bucket.blob(source_blob_name) # # blob.download_to_filename(destination_file_name) # # print('Blob {} downloaded to {}.'.format( # source_blob_name, # destination_file_name)) ================================================ FILE: utils/gradcam.py ================================================ #!/usr/bin/env python # -*- coding:utf-8 -*- # Author: Richard Fang import torch from torch.autograd import Variable from torch.autograd import Function from torchvision import models from torchvision import utils import cv2 import sys import numpy as np import argparse import warnings warnings.filterwarnings("ignore") def preprocess_image(img): means=[0.485, 0.456, 0.406] stds=[0.229, 0.224, 0.225] preprocessed_img = img.copy()[:, :, ::-1] for i in range(3): preprocessed_img[:, :, i] = preprocessed_img[:, :, i] - means[i] preprocessed_img[:, :, i] = preprocessed_img[:, :, i] / stds[i] preprocessed_img = np.ascontiguousarray(np.transpose(preprocessed_img, (2, 0, 1))) preprocessed_img = torch.from_numpy(preprocessed_img) preprocessed_img.unsqueeze_(0) input = Variable(preprocessed_img, requires_grad = True) return input def show_cam_on_image(img, mask, epoch, layer): heatmap = cv2.applyColorMap(np.uint8(255*mask), cv2.COLORMAP_JET) heatmap = np.float32(heatmap) / 255 # img = cv2.flip(img, 1) cam = heatmap + np.float32(img) cam = cam / np.max(cam) print(type(cam)) cv2.imwrite("./cam%d_%d.jpg" %(epoch, layer), np.uint8(255 * cam)) def calcGradCam(imgpath, feature, epoch, layer): """ :param feature: 特征图 :param grad_val: 对应的特征图的梯度 :return """ # ------------ Image Preprocess --------------- image_path = imgpath img = cv2.imread(image_path, 1) # print(np.shape(img)) img = np.float32(cv2.resize(img, (640, 640))) / 255 input = preprocess_image(img) # ------------ GradCam ------------------------- feature = feature.cpu().data.numpy() print("feature shape", feature.shape) cam = np.zeros(feature.shape[1:], dtype=np.float32) for i in range(feature.shape[0]): cam += feature[i, :, :] cam = np.maximum(cam, 0) # 比较cam的元素与0的大小,<0的都置0 # min = np.min(cam) # cam -= min cam = cv2.resize(cam, (640, 640)) # 归一化 cam cam = cam - np.min(cam) cam = cam / np.max(cam) print(cam.shape) # ---------- Show ------------- show_cam_on_image(img, cam, epoch, layer) return cam ================================================ FILE: utils/loss.py ================================================ # Loss functions import torch import torch.nn as nn import numpy as np from utils.general import bbox_iou from utils.torch_utils import is_parallel from utils.plots import plot_samples from torch.autograd import Variable from descriptor.LSS import denseLSS from descriptor.CFOG import denseCFOG def smooth_BCE(eps=0.1): # https://github.com/ultralytics/yolov3/issues/238#issuecomment-598028441 # return positive, negative label smoothing BCE targets return 1.0 - 0.5 * eps, 0.5 * eps class BCEBlurWithLogitsLoss(nn.Module): # BCEwithLogitLoss() with reduced missing label effects. def __init__(self, alpha=0.05): super(BCEBlurWithLogitsLoss, self).__init__() self.loss_fcn = nn.BCEWithLogitsLoss(reduction='none') # must be nn.BCEWithLogitsLoss() self.alpha = alpha def forward(self, pred, true): loss = self.loss_fcn(pred, true) pred = torch.sigmoid(pred) # prob from logits dx = pred - true # reduce only missing label effects # dx = (pred - true).abs() # reduce missing label and false label effects alpha_factor = 1 - torch.exp((dx - 1) / (self.alpha + 1e-4)) loss *= alpha_factor return loss.mean() class FocalLoss(nn.Module): # Wraps focal loss around existing loss_fcn(), i.e. criteria = FocalLoss(nn.BCEWithLogitsLoss(), gamma=1.5) def __init__(self, loss_fcn, gamma=1.5, alpha=0.25): super(FocalLoss, self).__init__() self.loss_fcn = loss_fcn # must be nn.BCEWithLogitsLoss() self.gamma = gamma self.alpha = alpha self.reduction = loss_fcn.reduction self.loss_fcn.reduction = 'none' # required to apply FL to each element def forward(self, pred, true): loss = self.loss_fcn(pred, true) # p_t = torch.exp(-loss) # loss *= self.alpha * (1.000001 - p_t) ** self.gamma # non-zero power for gradient stability # TF implementation https://github.com/tensorflow/addons/blob/v0.7.1/tensorflow_addons/losses/focal_loss.py pred_prob = torch.sigmoid(pred) # prob from logits p_t = true * pred_prob + (1 - true) * (1 - pred_prob) alpha_factor = true * self.alpha + (1 - true) * (1 - self.alpha) modulating_factor = (1.0 - p_t) ** self.gamma loss *= alpha_factor * modulating_factor if self.reduction == 'mean': return loss.mean() elif self.reduction == 'sum': return loss.sum() else: # 'none' return loss class QFocalLoss(nn.Module): # Wraps Quality focal loss around existing loss_fcn(), i.e. criteria = FocalLoss(nn.BCEWithLogitsLoss(), gamma=1.5) def __init__(self, loss_fcn, gamma=1.5, alpha=0.25): super(QFocalLoss, self).__init__() self.loss_fcn = loss_fcn # must be nn.BCEWithLogitsLoss() self.gamma = gamma self.alpha = alpha self.reduction = loss_fcn.reduction self.loss_fcn.reduction = 'none' # required to apply FL to each element def forward(self, pred, true): loss = self.loss_fcn(pred, true) pred_prob = torch.sigmoid(pred) # prob from logits alpha_factor = true * self.alpha + (1 - true) * (1 - self.alpha) modulating_factor = torch.abs(true - pred_prob) ** self.gamma loss *= alpha_factor * modulating_factor if self.reduction == 'mean': return loss.mean() elif self.reduction == 'sum': return loss.sum() else: # 'none' return loss # varifocal loss class VFLoss(nn.Module): def __init__(self, loss_fcn, gamma=2.0, alpha=0.25): super(VFLoss, self).__init__() # 传递 nn.BCEWithLogitsLoss() 损失函数 must be nn.BCEWithLogitsLoss() self.loss_fcn = loss_fcn # self.gamma = gamma self.alpha = alpha self.reduction = loss_fcn.reduction self.loss_fcn.reduction = 'none' # required to apply VFL to each element def forward(self, pred, true): loss = self.loss_fcn(pred, true) pred_prob = torch.sigmoid(pred) # prob from logits focal_weight = true * (true > 0.0).float() + self.alpha * (pred_prob - true).abs().pow(self.gamma) * (true <= 0.0).float() loss *= focal_weight if self.reduction == 'mean': return loss.mean() elif self.reduction == 'sum': return loss.sum() else: return loss # Ranking Loss class RankingLoss2(nn.Module): def __init__(self, threshold): super().__init__() self.threshold = threshold self.sigmoid = nn.Sigmoid() def forward(self, pred, true): loss = 0 bs, c, h, w = pred.shape for x, y in zip(pred, true): x = self.sigmoid(x) loss -= y * torch.log(1 - (y - x) + 1e-7) + (1 - y) * torch.log(torch.where(self.threshold - (1 - x) > 0, 1 - self.threshold + (1 - x) + 1e-7, torch.ones([1], dtype=x.dtype, device='cuda'))) return loss.sum() / (bs * c * h * w) # Ranking Loss class RankingLoss(nn.Module): def __init__(self, gamma): super().__init__() self.gamma = gamma self.sigmoid = nn.Sigmoid() def forward(self, pred, true): loss = 0.0 bs, c, h, w = pred.shape for pred_i, true_i in zip(pred, true): for x, y in zip(pred_i, true_i): x = self.sigmoid(x) mask_negative = y < 0.3 mask_positive = y > 0.5 s = x[mask_positive] if len(s) == 0: val = 0 else: pos_pred = x[mask_positive].min() neg_pred = x[mask_negative].max() val = torch.exp(neg_pred - pos_pred) #val = (((1 + neg_pred - pos_pred) / 2) ** self.gamma) * torch.exp(neg_pred - pos_pred) #val = torch.log(1 - (1 + neg_pred - pos_pred) / 2.0 + 1e-7) ''' pos_pred = x[mask_positive].mean() neg_pred = x[~mask_positive].mean() if (pos_pred - neg_pred).item() >= 0.7: val = 0 else: val = torch.exp(neg_pred - pos_pred) ''' loss += val return loss / (bs * c) # Similarity Loss class SimLoss(nn.Module): def __init__(self, gamma): super().__init__() self.gamma = gamma self.sigmoid = nn.Sigmoid() def des_SSD(self, i, j, descriptor): mask_i = torch.ge(i.squeeze(0).squeeze(0), 1) mask_i = torch.tensor(mask_i, dtype=torch.float32) mask_j = torch.ge(j.squeeze(0).squeeze(0), 1) mask_j = torch.tensor(mask_j, dtype=torch.float32) mask = torch.mul(mask_i, mask_j) num = mask[mask.ge(1)].size()[0] if descriptor == 'CFOG': des_i = denseCFOG(i) des_j = denseCFOG(j) elif descriptor == 'LSS': des_i = denseLSS(i) des_j = denseLSS(j) des_i = torch.mul(des_i, mask) des_j = torch.mul(des_j, mask) SSD_loss = nn.MSELoss(reduction='sum') loss = SSD_loss(des_i, des_j) / num return loss def des_NCC(self, i, j, descriptor): mask_i = torch.ge(i.squeeze(0).squeeze(0), 1) mask_i = torch.tensor(mask_i, dtype=torch.float32) mask_j = torch.ge(j.squeeze(0).squeeze(0), 1) mask_j = torch.tensor(mask_j, dtype=torch.float32) mask = torch.mul(mask_i, mask_j) num = mask[mask.ge(1)].size()[0] if descriptor == 'CFOG': des_i = denseCFOG(i) des_j = denseCFOG(j) elif descriptor == 'LSS': des_i = denseLSS(i) des_j = denseLSS(j) des_i = torch.mul(des_i, mask) des_j = torch.mul(des_j, mask) loss = self.gncc_loss(des_i, des_j) * 512 * 512 / num return loss def gradient_loss(self, s, penalty='l2'): dy = torch.abs(s[:, :, 1:, :] - s[:, :, :-1, :]) dx = torch.abs(s[:, :, :, 1:] - s[:, :, :, :-1]) if (penalty == 'l2'): dy = dy * dy dx = dx * dx d = torch.mean(dx) + torch.mean(dy) return d / 2.0 def mse_loss(self, x, y): return torch.mean((x - y) ** 2) def DSC(self, pred, target): smooth = 1e-5 m1 = pred.flatten() m2 = target.flatten() intersection = (m1 * m2).sum() return (2. * intersection + smooth) / (m1.sum() + m2.sum() + smooth) def gncc_loss(self, I, J, eps=1e-5): I2 = I.pow(2) J2 = J.pow(2) IJ = I * J I_ave, J_ave = I.mean(), J.mean() I2_ave, J2_ave = I2.mean(), J2.mean() IJ_ave = IJ.mean() cross = IJ_ave - I_ave * J_ave I_var = I2_ave - I_ave.pow(2) J_var = J2_ave - J_ave.pow(2) cc = cross / (I_var.sqrt() * J_var.sqrt() + eps) # 1e-5 return -1.0 * cc + 1 def compute_local_sums(self, I, J, filt, stride, padding, win): I2, J2, IJ = I * I, J * J, I * J I_sum = nn.functional.conv2d(I, filt, stride=stride, padding=padding) J_sum = nn.functional.conv2d(J, filt, stride=stride, padding=padding) I2_sum = nn.functional.conv2d(I2, filt, stride=stride, padding=padding) J2_sum = nn.functional.conv2d(J2, filt, stride=stride, padding=padding) IJ_sum = nn.functional.conv2d(IJ, filt, stride=stride, padding=padding) win_size = np.prod(win) u_I = I_sum / win_size u_J = J_sum / win_size cross = IJ_sum - u_J * I_sum - u_I * J_sum + u_I * u_J * win_size I_var = I2_sum - 2 * u_I * I_sum + u_I * u_I * win_size J_var = J2_sum - 2 * u_J * J_sum + u_J * u_J * win_size return I_var, J_var, cross def cc_loss(self, x, y): dim = [2, 3, 4] mean_x = torch.mean(x, dim, keepdim=True) mean_y = torch.mean(y, dim, keepdim=True) mean_x2 = torch.mean(x ** 2, dim, keepdim=True) mean_y2 = torch.mean(y ** 2, dim, keepdim=True) stddev_x = torch.sum(torch.sqrt(mean_x2 - mean_x ** 2), dim, keepdim=True) stddev_y = torch.sum(torch.sqrt(mean_y2 - mean_y ** 2), dim, keepdim=True) return -torch.mean((x - mean_x) * (y - mean_y) / (stddev_x * stddev_y)) def Get_Ja(self, flow): D_y = (flow[:, 1:, :-1, :-1, :] - flow[:, :-1, :-1, :-1, :]) D_x = (flow[:, :-1, 1:, :-1, :] - flow[:, :-1, :-1, :-1, :]) D_z = (flow[:, :-1, :-1, 1:, :] - flow[:, :-1, :-1, :-1, :]) D1 = (D_x[..., 0] + 1) * ((D_y[..., 1] + 1) * (D_z[..., 2] + 1) - D_z[..., 1] * D_y[..., 2]) D2 = (D_x[..., 1]) * (D_y[..., 0] * (D_z[..., 2] + 1) - D_y[..., 2] * D_x[..., 0]) D3 = (D_x[..., 2]) * (D_y[..., 0] * D_z[..., 1] - (D_y[..., 1] + 1) * D_z[..., 0]) return D1 - D2 + D3 def NJ_loss(self, ypred): Neg_Jac = 0.5 * (torch.abs(self.Get_Ja(ypred)) - self.Get_Ja(ypred)) return torch.sum(Neg_Jac) def lncc_loss(self, i, j, win=[9, 9], eps=1e-5): I = i J = j I2 = I.pow(2) J2 = J.pow(2) IJ = I * J filters = Variable(torch.ones(1, 1, win[0], win[1])).cuda() padding = (win[0] // 2, win[1] // 2) I_sum = nn.functional.conv2d(I, filters, stride=1, padding=padding) J_sum = nn.functional.conv2d(J, filters, stride=1, padding=padding) I2_sum = nn.functional.conv2d(I2, filters, stride=1, padding=padding) J2_sum = nn.functional.conv2d(J2, filters, stride=1, padding=padding) IJ_sum = nn.functional.conv2d(IJ, filters, stride=1, padding=padding) win_size = win[0] * win[1] u_I = I_sum / win_size u_J = J_sum / win_size cross = IJ_sum - u_J * I_sum - u_I * J_sum + u_I * u_J * win_size I_var = I2_sum - 2 * u_I * I_sum + u_I * u_I * win_size J_var = J2_sum - 2 * u_J * J_sum + u_J * u_J * win_size cc = cross * cross / (I_var * J_var + eps) lcc = -1.0 * torch.mean(cc) + 1 return lcc def forward(self, reference, sensed_tran, sensed, reference_inv_tran, descriptor, similarity): if similarity == 'SSD': # Similarity: SSD or NCC based on descriptors loss1 = Variable(self.des_SSD(reference, sensed_tran, descriptor), requires_grad=True) loss2 = Variable(self.des_SSD(sensed, reference_inv_tran, descriptor), requires_grad=True) elif similarity == 'NCC': loss1 = Variable(self.des_NCC(reference, sensed_tran, descriptor), requires_grad=True) loss2 = Variable(self.des_NCC(sensed, reference_inv_tran, descriptor), requires_grad=True) loss = (loss1 + loss2) * 0.5 return loss class ComputeLoss: # Compute losses def __init__(self, model, autobalance=False): super(ComputeLoss, self).__init__() self.sort_obj_iou = True # 在计算objectness时是否对ciou进行排序 device = next(model.parameters()).device # get model device h = model.hyp # hyperparameters # Define criteria BCEcls = nn.BCEWithLogitsLoss(pos_weight=torch.tensor([h['cls_pw']], device=device)) BCEobj = nn.BCEWithLogitsLoss(pos_weight=torch.tensor([h['obj_pw']], device=device)) #BCEobj = VFLoss(BCEobj) # Class label smoothing https://arxiv.org/pdf/1902.04103.pdf eqn 3 self.cp, self.cn = smooth_BCE(eps=h.get('label_smoothing', 0.0)) # positive, negative BCE targets # Focal loss g = h['fl_gamma'] # focal loss gamma if g > 0: BCEcls, BCEobj = FocalLoss(BCEcls, g), FocalLoss(BCEobj, g) det = model.module.model[-1] if is_parallel(model) else model.model[-1] # Detect() module self.balance = {3: [4.0, 1.0, 0.4]}.get(det.nl, [4.0, 1.0, 0.25, 0.06, .02]) # P3-P7 self.ssi = list(det.stride).index(16) if autobalance else 0 # stride 16 index self.BCEcls, self.BCEobj, self.gr, self.hyp, self.autobalance = BCEcls, BCEobj, model.gr, h, autobalance self.RKobj = RankingLoss(2.0) for k in 'na', 'nc', 'nl', 'anchors': setattr(self, k, getattr(det, k)) def __call__(self, p, targets): # predictions, targets, model device = targets.device lcls, lbox, lobj, lrk = torch.zeros(1, device=device), torch.zeros(1, device=device), torch.zeros(1, device=device), torch.zeros(1, device=device) tcls, tbox, indices, anchors, offsets = self.build_targets(p, targets) # targets #plot_samples(batch_index, imgs, path, tcls, tbox, indices, anchors, offsets, targets) # Losses for i, pi in enumerate(p): # layer index, layer predictions b, a, gj, gi = indices[i] # image, anchor, gridy, gridx tobj = torch.zeros_like(pi[..., 0], device=device) # target obj n = b.shape[0] # number of targets if n: ps = pi[b, a, gj, gi] # prediction subset corresponding to targets # Regression pxy = ps[:, :2].sigmoid() * 2. - 0.5 pwh = (ps[:, 2:4].sigmoid() * 2) ** 2 * anchors[i] pbox = torch.cat((pxy, pwh), 1) # predicted box iou = bbox_iou(pbox.T, tbox[i], x1y1x2y2=False, CIoU=True) # iou(prediction, target) lbox += (1.0 - iou).mean() # iou loss # Objectness score_iou = iou.detach().clamp(0).type(tobj.dtype) if self.sort_obj_iou: sort_id = torch.argsort(score_iou) # 将iou按照从小到大进行排序,返回下标索引 b, a, gj, gi, score_iou = b[sort_id], a[sort_id], gj[sort_id], gi[sort_id], score_iou[sort_id] tobj[b, a, gj, gi] = (1.0 - self.gr) + self.gr * score_iou # 根据model.gr设置真实框的标签值 # Classification if self.nc > 1: # cls loss (only if multiple classes) t = torch.full_like(ps[:, 5:], self.cn, device=device) # targets t[range(n), tcls[i]] = self.cp lcls += self.BCEcls(ps[:, 5:], t) # BCE # Ranking #lrk += self.RKobj(pi[..., 4], tobj) obji = self.BCEobj(pi[..., 4], tobj) lobj += obji * self.balance[i] # obj loss if self.autobalance: self.balance[i] = self.balance[i] * 0.9999 + 0.0001 / obji.detach().item() if self.autobalance: self.balance = [x / self.balance[self.ssi] for x in self.balance] lbox *= self.hyp['box'] lobj *= self.hyp['obj'] lcls *= self.hyp['cls'] lrk *= 0.1 bs = tobj.shape[0] # batch size loss = lbox + lobj + lcls + lrk return loss * bs, torch.cat((lbox, lobj, lcls, lrk)).detach() def build_targets(self, p, targets): # Build targets for compute_loss(), input targets(image,class,x,y,w,h) na, nt = self.na, targets.shape[0] # number of anchors, targets tcls, tbox, indices, anch, offset = [], [], [], [], [] gain = torch.ones(7, device=targets.device) # normalized to gridspace gain ai = torch.arange(na, device=targets.device).float().view(na, 1).repeat(1, nt) # same as .repeat_interleave(nt) targets = torch.cat((targets.repeat(na, 1, 1), ai[:, :, None]), 2) # append anchor indices g = 0.5 # bias off = torch.tensor([[0, 0], [1, 0], [0, 1], [-1, 0], [0, -1], # j,k,l,m # [1, 1], [1, -1], [-1, 1], [-1, -1], # jk,jm,lk,lm ], device=targets.device).float() * g # offsets for i in range(self.nl): anchors, shape = self.anchors[i], p[i].shape gain[2:6] = torch.tensor(p[i].shape)[[3, 2, 3, 2]] # xyxy gain # Match targets to anchors t = targets * gain if nt: # Matches r = t[:, :, 4:6] / anchors[:, None] # wh ratio j = torch.max(r, 1. / r).max(2)[0] < self.hyp['anchor_t'] # compare # j = wh_iou(anchors, t[:, 4:6]) > model.hyp['iou_t'] # iou(3,n)=wh_iou(anchors(3,2), gwh(n,2)) t = t[j] # filter # Offsets gxy = t[:, 2:4] # grid xy gxi = gain[[2, 3]] - gxy # inverse j, k = ((gxy % 1. < g) & (gxy > 1.)).T l, m = ((gxi % 1. < g) & (gxi > 1.)).T j = torch.stack((torch.ones_like(j), j, k, l, m)) t = t.repeat((5, 1, 1))[j] offsets = (torch.zeros_like(gxy)[None] + off[:, None])[j] else: t = targets[0] offsets = 0 # Define b, c = t[:, :2].long().T # image, class gxy = t[:, 2:4] # grid xy gwh = t[:, 4:6] # grid wh gij = (gxy - offsets).long() gi, gj = gij.T # grid xy indices # Append a = t[:, 6].long() # anchor indices indices.append((b, a, gj.clamp_(0, shape[2] - 1), gi.clamp_(0, shape[3] - 1))) # image, anchor, grid indices tbox.append(torch.cat((gxy - gij, gwh), 1)) # box anch.append(anchors[a]) # anchors tcls.append(c) # class offset.append(offsets) return tcls, tbox, indices, anch, offset ================================================ FILE: utils/metrics.py ================================================ # Model validation metrics from pathlib import Path import matplotlib.pyplot as plt import numpy as np import torch from . import general def fitness(x): # Model fitness as a weighted combination of metrics w = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0] # weights for [tp[0], fp[0], fn[0], f1[0], mp, mr, map50, map] return (x[:, :8] * w).sum(1) def ap_per_class(tp, conf, pred_cls, target_cls, plot=False, save_dir='.', names=()): """ Compute the average precision, given the recall and precision curves. Source: https://github.com/rafaelpadilla/Object-Detection-Metrics. # Arguments tp: True positives (nparray, nx1 or nx10). conf: Objectness value from 0-1 (nparray). pred_cls: Predicted object classes (nparray). target_cls: True object classes (nparray). plot: Plot precision-recall curve at mAP@0.5 save_dir: Plot save directory # Returns The average precision as computed in py-faster-rcnn. """ # Sort by objectness i = np.argsort(-conf) tp, conf, pred_cls = tp[i], conf[i], pred_cls[i] # Find unique classes unique_classes = np.unique(target_cls) nc = unique_classes.shape[0] # number of classes, number of detections # Create Precision-Recall curve and compute AP for each class px, py = np.linspace(0, 1, 1000), [] # for plotting ap, p, r = np.zeros((nc, tp.shape[1])), np.zeros((nc, 1000)), np.zeros((nc, 1000)) for ci, c in enumerate(unique_classes): i = pred_cls == c n_l = (target_cls == c).sum() # number of labels n_p = i.sum() # number of predictions if n_p == 0 or n_l == 0: continue else: # Accumulate FPs and TPs fpc = (1 - tp[i]).cumsum(0) tpc = tp[i].cumsum(0) # Recall recall = tpc / (n_l + 1e-16) # recall curve r[ci] = np.interp(-px, -conf[i], recall[:, 0], left=0) # negative x, xp because xp decreases # Precision precision = tpc / (tpc + fpc) # precision curve p[ci] = np.interp(-px, -conf[i], precision[:, 0], left=1) # p at pr_score # AP from recall-precision curve for j in range(tp.shape[1]): ap[ci, j], mpre, mrec = compute_ap(recall[:, j], precision[:, j]) if plot and j == 0: py.append(np.interp(px, mrec, mpre)) # precision at mAP@0.5 # Compute F1 (harmonic mean of precision and recall) f1 = 2 * p * r / (p + r + 1e-16) if plot: plot_pr_curve(px, py, ap, Path(save_dir) / 'PR_curve.png', names) plot_mc_curve(px, f1, Path(save_dir) / 'F1_curve.png', names, ylabel='F1') plot_mc_curve(px, p, Path(save_dir) / 'P_curve.png', names, ylabel='Precision') plot_mc_curve(px, r, Path(save_dir) / 'R_curve.png', names, ylabel='Recall') i = f1.mean(0).argmax() # max F1 index tp = (r * n_l).round() # true positives fn = n_l - tp fp = (tp / (p + 1e-16) - tp).round() # false positives return tp[:, i], fp[:, i], fn[:, i], p[:, i], r[:, i], ap, f1[:, i], unique_classes.astype('int32') def compute_ap(recall, precision): """ Compute the average precision, given the recall and precision curves # Arguments recall: The recall curve (list) precision: The precision curve (list) # Returns Average precision, precision curve, recall curve """ # Append sentinel values to beginning and end mrec = np.concatenate(([0.], recall, [recall[-1] + 0.01])) mpre = np.concatenate(([1.], precision, [0.])) # Compute the precision envelope mpre = np.flip(np.maximum.accumulate(np.flip(mpre))) # Integrate area under curve method = 'interp' # methods: 'continuous', 'interp' if method == 'interp': x = np.linspace(0, 1, 101) # 101-point interp (COCO) ap = np.trapz(np.interp(x, mrec, mpre), x) # integrate else: # 'continuous' i = np.where(mrec[1:] != mrec[:-1])[0] # points where x axis (recall) changes ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1]) # area under curve return ap, mpre, mrec class ConfusionMatrix: # Updated version of https://github.com/kaanakan/object_detection_confusion_matrix def __init__(self, nc, conf=0.25, iou_thres=0.45): self.matrix = np.zeros((nc + 1, nc + 1)) self.nc = nc # number of classes self.conf = conf self.iou_thres = iou_thres def process_batch(self, detections, labels): """ Return intersection-over-union (Jaccard index) of boxes. Both sets of boxes are expected to be in (x1, y1, x2, y2) format. Arguments: detections (Array[N, 6]), x1, y1, x2, y2, conf, class labels (Array[M, 5]), class, x1, y1, x2, y2 Returns: None, updates confusion matrix accordingly """ detections = detections[detections[:, 4] > self.conf] gt_classes = labels[:, 0].int() detection_classes = detections[:, 5].int() iou = general.box_iou(labels[:, 1:], detections[:, :4]) x = torch.where(iou > self.iou_thres) if x[0].shape[0]: matches = torch.cat((torch.stack(x, 1), iou[x[0], x[1]][:, None]), 1).cpu().numpy() if x[0].shape[0] > 1: matches = matches[matches[:, 2].argsort()[::-1]] matches = matches[np.unique(matches[:, 1], return_index=True)[1]] matches = matches[matches[:, 2].argsort()[::-1]] matches = matches[np.unique(matches[:, 0], return_index=True)[1]] else: matches = np.zeros((0, 3)) n = matches.shape[0] > 0 m0, m1, _ = matches.transpose().astype(np.int16) for i, gc in enumerate(gt_classes): j = m0 == i if n and sum(j) == 1: self.matrix[detection_classes[m1[j]], gc] += 1 # correct else: self.matrix[self.nc, gc] += 1 # background FP if n: for i, dc in enumerate(detection_classes): if not any(m1 == i): self.matrix[dc, self.nc] += 1 # background FN def matrix(self): return self.matrix def plot(self, save_dir='', names=()): try: import seaborn as sn array = self.matrix / (self.matrix.sum(0).reshape(1, self.nc + 1) + 1E-6) # normalize array[array < 0.005] = np.nan # don't annotate (would appear as 0.00) fig = plt.figure(figsize=(12, 9), tight_layout=True) sn.set(font_scale=1.0 if self.nc < 50 else 0.8) # for label size labels = (0 < len(names) < 99) and len(names) == self.nc # apply names to ticklabels sn.heatmap(array, annot=self.nc < 30, annot_kws={"size": 8}, cmap='Blues', fmt='.2f', square=True, xticklabels=names + ['background FP'] if labels else "auto", yticklabels=names + ['background FN'] if labels else "auto").set_facecolor((1, 1, 1)) fig.axes[0].set_xlabel('True') fig.axes[0].set_ylabel('Predicted') fig.savefig(Path(save_dir) / 'confusion_matrix.png', dpi=250) except Exception as e: pass def print(self): for i in range(self.nc + 1): print(' '.join(map(str, self.matrix[i]))) # Plots ---------------------------------------------------------------------------------------------------------------- def plot_pr_curve(px, py, ap, save_dir='pr_curve.png', names=()): # Precision-recall curve fig, ax = plt.subplots(1, 1, figsize=(9, 6), tight_layout=True) py = np.stack(py, axis=1) if 0 < len(names) < 21: # display per-class legend if < 21 classes for i, y in enumerate(py.T): ax.plot(px, y, linewidth=1, label=f'{names[i]} {ap[i, 0]:.3f}') # plot(recall, precision) else: ax.plot(px, py, linewidth=1, color='grey') # plot(recall, precision) ax.plot(px, py.mean(1), linewidth=3, color='blue', label='all classes %.3f mAP@0.5' % ap[:, 0].mean()) ax.set_xlabel('Recall') ax.set_ylabel('Precision') ax.set_xlim(0, 1) ax.set_ylim(0, 1) plt.legend(bbox_to_anchor=(1.04, 1), loc="upper left") fig.savefig(Path(save_dir), dpi=250) def plot_mc_curve(px, py, save_dir='mc_curve.png', names=(), xlabel='Confidence', ylabel='Metric'): # Metric-confidence curve fig, ax = plt.subplots(1, 1, figsize=(9, 6), tight_layout=True) if 0 < len(names) < 21: # display per-class legend if < 21 classes for i, y in enumerate(py): ax.plot(px, y, linewidth=1, label=f'{names[i]}') # plot(confidence, metric) else: ax.plot(px, py.T, linewidth=1, color='grey') # plot(confidence, metric) y = py.mean(0) ax.plot(px, y, linewidth=3, color='blue', label=f'all classes {y.max():.2f} at {px[y.argmax()]:.3f}') ax.set_xlabel(xlabel) ax.set_ylabel(ylabel) ax.set_xlim(0, 1) ax.set_ylim(0, 1) plt.legend(bbox_to_anchor=(1.04, 1), loc="upper left") fig.savefig(Path(save_dir), dpi=250) ================================================ FILE: utils/plots.py ================================================ # Plotting utils import glob import math import os import random from copy import copy from pathlib import Path import cv2 import matplotlib import matplotlib.pyplot as plt import numpy as np import pandas as pd import seaborn as sns import torch import yaml from PIL import Image, ImageDraw, ImageFont from scipy.signal import butter, filtfilt from utils.general import xywh2xyxy, xyxy2xywh, xywhn2xyxy from utils.metrics import fitness # Settings matplotlib.rc('font', **{'size': 11}) matplotlib.use('Agg') # for writing to files only class Colors: # Ultralytics color palette https://ultralytics.com/ def __init__(self): self.palette = [self.hex2rgb(c) for c in matplotlib.colors.TABLEAU_COLORS.values()] self.n = len(self.palette) def __call__(self, i, bgr=False): c = self.palette[int(i) % self.n] return (c[2], c[1], c[0]) if bgr else c @staticmethod def hex2rgb(h): # rgb order (PIL) return tuple(int(h[1 + i:1 + i + 2], 16) for i in (0, 2, 4)) colors = Colors() # create instance for 'from utils.plots import colors' def hist2d(x, y, n=100): # 2d histogram used in labels.png and evolve.png xedges, yedges = np.linspace(x.min(), x.max(), n), np.linspace(y.min(), y.max(), n) hist, xedges, yedges = np.histogram2d(x, y, (xedges, yedges)) xidx = np.clip(np.digitize(x, xedges) - 1, 0, hist.shape[0] - 1) yidx = np.clip(np.digitize(y, yedges) - 1, 0, hist.shape[1] - 1) return np.log(hist[xidx, yidx]) def butter_lowpass_filtfilt(data, cutoff=1500, fs=50000, order=5): # https://stackoverflow.com/questions/28536191/how-to-filter-smooth-with-scipy-numpy def butter_lowpass(cutoff, fs, order): nyq = 0.5 * fs normal_cutoff = cutoff / nyq return butter(order, normal_cutoff, btype='low', analog=False) b, a = butter_lowpass(cutoff, fs, order=order) return filtfilt(b, a, data) # forward-backward filter def plot_one_box(x, im, color=None, label=None, line_thickness=3): # Plots one bounding box on image 'im' using OpenCV assert im.data.contiguous, 'Image not contiguous. Apply np.ascontiguousarray(im) to plot_on_box() input image.' tl = line_thickness or round(0.002 * (im.shape[0] + im.shape[1]) / 2) + 1 # line/font thickness # print(tl) color = color or [random.randint(0, 255) for _ in range(3)] c1, c2 = (int(x[0]), int(x[1])), (int(x[2]), int(x[3])) # print(c1, c2) cv2.rectangle(im, c1, c2, color, thickness=tl, lineType=cv2.LINE_AA) if label: tf = max(tl - 1, 1) # font thickness t_size = cv2.getTextSize(label, 0, fontScale=tl / 3, thickness=tf)[0] c2 = c1[0] + t_size[0], c1[1] - t_size[1] - 3 cv2.rectangle(im, c1, c2, color, -1, cv2.LINE_AA) # filled cv2.putText(im, label, (c1[0], c1[1] - 2), 0, tl / 3, [225, 255, 255], thickness=tf, lineType=cv2.LINE_AA) def plot_one_box_PIL(box, im, color=None, label=None, line_thickness=None): # Plots one bounding box on image 'im' using PIL im = Image.fromarray(im) draw = ImageDraw.Draw(im) line_thickness = line_thickness or max(int(min(im.size) / 200), 2) draw.rectangle(box, width=line_thickness, outline=tuple(color)) # plot if label: fontsize = max(round(max(im.size) / 40), 12) font = ImageFont.truetype("Arial.ttf", fontsize) txt_width, txt_height = font.getsize(label) draw.rectangle([box[0], box[1] - txt_height + 4, box[0] + txt_width, box[1]], fill=tuple(color)) draw.text((box[0], box[1] - txt_height + 1), label, fill=(255, 255, 255), font=font) return np.asarray(im) def plot_wh_methods(): # from utils.plots import *; plot_wh_methods() # Compares the two methods for width-height anchor multiplication # https://github.com/ultralytics/yolov3/issues/168 x = np.arange(-4.0, 4.0, .1) ya = np.exp(x) yb = torch.sigmoid(torch.from_numpy(x)).numpy() * 2 fig = plt.figure(figsize=(6, 3), tight_layout=True) plt.plot(x, ya, '.-', label='YOLOv3') plt.plot(x, yb ** 2, '.-', label='YOLOv5 ^2') plt.plot(x, yb ** 1.6, '.-', label='YOLOv5 ^1.6') plt.xlim(left=-4, right=4) plt.ylim(bottom=0, top=6) plt.xlabel('input') plt.ylabel('output') plt.grid() plt.legend() fig.savefig('comparison.png', dpi=200) def output_to_target(output): # Convert model output to target format [batch_id, class_id, x, y, w, h, conf] targets = [] for i, o in enumerate(output): for *box, conf, cls in o.cpu().numpy(): targets.append([i, cls, *list(*xyxy2xywh(np.array(box)[None])), conf]) return np.array(targets) def plot_samples(batch_index, images, path, tcls, tbox, indices, anchors, offsets, targets): if isinstance(images, torch.Tensor): images = images.cpu().float().numpy() if isinstance(tbox, torch.Tensor): tbox = tbox.cpu().numpy() bs, _, h, w = images.shape slide = [8, 16, 32] if np.max(images[0]) <= 1: images *= 255 file_path = str(path) + '/samples_visual' if not os.path.exists(file_path): os.makedirs(file_path) for j in range(bs): # image img = images[j] img = img.transpose(1, 2, 0) img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR) for target in targets: if target[0] == j: t = target[2:6].unsqueeze(0) t = xywhn2xyxy(t, w=640, h=640) cv2.rectangle(img, (int(t[0][0]), int(t[0][1])), (int(t[0][2]), int(t[0][3])), (255, 255, 255), thickness=2) else: continue for i in range(len(indices)): # layer indice = indices[i] image_indice = (indice[0]==j).nonzero() anchor = anchors[i][image_indice].squeeze(1) offset = offsets[i][image_indice].squeeze(1) gridy, gridx = indice[2][image_indice], indice[3][image_indice] grid = torch.cat([gridx, gridy], dim=1) + offset anchor_boxs = torch.cat([grid, anchor], dim=1) * slide[i] for anchor_box in anchor_boxs: bbox = xywh2xyxy(anchor_box.unsqueeze(0)) cv2.rectangle(img, (int(bbox[0][0]), int(bbox[0][1])), (int(bbox[0][2]), int(bbox[0][3])), (255, 0, 0), thickness=1) save_path = file_path+'/'+'image'+str(batch_index)+'_'+str(j)+'.jpg' cv2.imwrite(save_path, img) def plot_images(images, targets, paths=None, fname='images.jpg', names=None, max_size=640, max_subplots=16): # Plot image grid with labels if isinstance(images, torch.Tensor): images = images.cpu().float().numpy() if isinstance(targets, torch.Tensor): targets = targets.cpu().numpy() # un-normalise if np.max(images[0]) <= 1: images *= 255 tl = 3 # line thickness tf = max(tl - 1, 1) # font thickness bs, _, h, w = images.shape # batch size, _, height, width bs = min(bs, max_subplots) # limit plot images ns = np.ceil(bs ** 0.5) # number of subplots (square) # Check if we should resize scale_factor = max_size / max(h, w) if scale_factor < 1: h = math.ceil(scale_factor * h) w = math.ceil(scale_factor * w) mosaic = np.full((int(ns * h), int(ns * w), 3), 255, dtype=np.uint8) # init for i, img in enumerate(images): if i == max_subplots: # if last batch has fewer images than we expect break block_x = int(w * (i // ns)) block_y = int(h * (i % ns)) img = img.transpose(1, 2, 0) if scale_factor < 1: img = cv2.resize(img, (w, h)) mosaic[block_y:block_y + h, block_x:block_x + w, :] = img if len(targets) > 0: image_targets = targets[targets[:, 0] == i] boxes = xywh2xyxy(image_targets[:, 2:6]).T classes = image_targets[:, 1].astype('int') labels = image_targets.shape[1] == 6 # labels if no conf column conf = None if labels else image_targets[:, 6] # check for confidence presence (label vs pred) if boxes.shape[1]: if boxes.max() <= 1.01: # if normalized with tolerance 0.01 boxes[[0, 2]] *= w # scale to pixels boxes[[1, 3]] *= h elif scale_factor < 1: # absolute coords need scale if image scales boxes *= scale_factor boxes[[0, 2]] += block_x boxes[[1, 3]] += block_y for j, box in enumerate(boxes.T): cls = int(classes[j]) color = colors(cls) cls = names[cls] if names else cls if labels or conf[j] > 0.25: # 0.25 conf thresh label = '%s' % cls if labels else '%s %.1f' % (cls, conf[j]) plot_one_box(box, mosaic, label=label, color=color, line_thickness=tl) # Draw image filename labels if paths: label = Path(paths[i]).name[:40] # trim to 40 char t_size = cv2.getTextSize(label, 0, fontScale=tl / 3, thickness=tf)[0] cv2.putText(mosaic, label, (block_x + 5, block_y + t_size[1] + 5), 0, tl / 3, [220, 220, 220], thickness=tf, lineType=cv2.LINE_AA) # Image border cv2.rectangle(mosaic, (block_x, block_y), (block_x + w, block_y + h), (255, 255, 255), thickness=3) if fname: r = min(1280. / max(h, w) / ns, 1.0) # ratio to limit image size mosaic = cv2.resize(mosaic, (int(ns * w * r), int(ns * h * r)), interpolation=cv2.INTER_AREA) # cv2.imwrite(fname, cv2.cvtColor(mosaic, cv2.COLOR_BGR2RGB)) # cv2 save Image.fromarray(mosaic).save(fname) # PIL save return mosaic def plot_lr_scheduler(optimizer, scheduler, epochs=300, save_dir=''): # Plot LR simulating training for full epochs optimizer, scheduler = copy(optimizer), copy(scheduler) # do not modify originals y = [] for _ in range(epochs): scheduler.step() y.append(optimizer.param_groups[0]['lr']) plt.plot(y, '.-', label='LR') plt.xlabel('epoch') plt.ylabel('LR') plt.grid() plt.xlim(0, epochs) plt.ylim(0) plt.savefig(Path(save_dir) / 'LR.png', dpi=200) plt.close() def plot_test_txt(): # from utils.plots import *; plot_test() # Plot test.txt histograms x = np.loadtxt('test.txt', dtype=np.float32) box = xyxy2xywh(x[:, :4]) cx, cy = box[:, 0], box[:, 1] fig, ax = plt.subplots(1, 1, figsize=(6, 6), tight_layout=True) ax.hist2d(cx, cy, bins=600, cmax=10, cmin=0) ax.set_aspect('equal') plt.savefig('hist2d.png', dpi=300) fig, ax = plt.subplots(1, 2, figsize=(12, 6), tight_layout=True) ax[0].hist(cx, bins=600) ax[1].hist(cy, bins=600) plt.savefig('hist1d.png', dpi=200) def plot_targets_txt(): # from utils.plots import *; plot_targets_txt() # Plot targets.txt histograms x = np.loadtxt('targets.txt', dtype=np.float32).T s = ['x targets', 'y targets', 'width targets', 'height targets'] fig, ax = plt.subplots(2, 2, figsize=(8, 8), tight_layout=True) ax = ax.ravel() for i in range(4): ax[i].hist(x[i], bins=100, label='%.3g +/- %.3g' % (x[i].mean(), x[i].std())) ax[i].legend() ax[i].set_title(s[i]) plt.savefig('targets.jpg', dpi=200) def plot_study_txt(path='', x=None): # from utils.plots import *; plot_study_txt() # Plot study.txt generated by test.py fig, ax = plt.subplots(2, 4, figsize=(10, 6), tight_layout=True) # ax = ax.ravel() fig2, ax2 = plt.subplots(1, 1, figsize=(8, 4), tight_layout=True) # for f in [Path(path) / f'study_coco_{x}.txt' for x in ['yolov5s6', 'yolov5m6', 'yolov5l6', 'yolov5x6']]: for f in sorted(Path(path).glob('study*.txt')): y = np.loadtxt(f, dtype=np.float32, usecols=[0, 1, 2, 3, 7, 8, 9], ndmin=2).T x = np.arange(y.shape[1]) if x is None else np.array(x) s = ['P', 'R', 'mAP@.5', 'mAP@.5:.95', 't_inference (ms/img)', 't_NMS (ms/img)', 't_total (ms/img)'] # for i in range(7): # ax[i].plot(x, y[i], '.-', linewidth=2, markersize=8) # ax[i].set_title(s[i]) j = y[3].argmax() + 1 ax2.plot(y[6, 1:j], y[3, 1:j] * 1E2, '.-', linewidth=2, markersize=8, label=f.stem.replace('study_coco_', '').replace('yolo', 'YOLO')) ax2.plot(1E3 / np.array([209, 140, 97, 58, 35, 18]), [34.6, 40.5, 43.0, 47.5, 49.7, 51.5], 'k.-', linewidth=2, markersize=8, alpha=.25, label='EfficientDet') ax2.grid(alpha=0.2) ax2.set_yticks(np.arange(20, 60, 5)) ax2.set_xlim(0, 57) ax2.set_ylim(30, 55) ax2.set_xlabel('GPU Speed (ms/img)') ax2.set_ylabel('COCO AP val') ax2.legend(loc='lower right') plt.savefig(str(Path(path).name) + '.png', dpi=300) def plot_labels(labels, names=(), save_dir=Path(''), loggers=None): # plot dataset labels print('Plotting labels... ') c, b = labels[:, 0], labels[:, 1:].transpose() # classes, boxes nc = int(c.max() + 1) # number of classes x = pd.DataFrame(b.transpose(), columns=['x', 'y', 'width', 'height']) # seaborn correlogram sns.pairplot(x, corner=True, diag_kind='auto', kind='hist', diag_kws=dict(bins=50), plot_kws=dict(pmax=0.9)) plt.savefig(save_dir / 'labels_correlogram.jpg', dpi=200) plt.close() # matplotlib labels matplotlib.use('svg') # faster ax = plt.subplots(2, 2, figsize=(8, 8), tight_layout=True)[1].ravel() ax[0].hist(c, bins=np.linspace(0, nc, nc + 1) - 0.5, rwidth=0.8) ax[0].set_ylabel('instances') if 0 < len(names) < 30: ax[0].set_xticks(range(len(names))) ax[0].set_xticklabels(names, rotation=90, fontsize=10) else: ax[0].set_xlabel('classes') sns.histplot(x, x='x', y='y', ax=ax[2], bins=50, pmax=0.9) sns.histplot(x, x='width', y='height', ax=ax[3], bins=50, pmax=0.9) # rectangles labels[:, 1:3] = 0.5 # center labels[:, 1:] = xywh2xyxy(labels[:, 1:]) * 2000 img = Image.fromarray(np.ones((2000, 2000, 3), dtype=np.uint8) * 255) for cls, *box in labels[:1000]: ImageDraw.Draw(img).rectangle(box, width=1, outline=colors(cls)) # plot ax[1].imshow(img) ax[1].axis('off') for a in [0, 1, 2, 3]: for s in ['top', 'right', 'left', 'bottom']: ax[a].spines[s].set_visible(False) plt.savefig(save_dir / 'labels.jpg', dpi=200) matplotlib.use('Agg') plt.close() # loggers for k, v in loggers.items() or {}: if k == 'wandb' and v: v.log({"Labels": [v.Image(str(x), caption=x.name) for x in save_dir.glob('*labels*.jpg')]}, commit=False) def plot_evolution(yaml_file='data/hyp.finetune.yaml'): # from utils.plots import *; plot_evolution() # Plot hyperparameter evolution results in evolve.txt with open(yaml_file) as f: hyp = yaml.safe_load(f) x = np.loadtxt('evolve.txt', ndmin=2) f = fitness(x) # weights = (f - f.min()) ** 2 # for weighted results plt.figure(figsize=(10, 12), tight_layout=True) matplotlib.rc('font', **{'size': 8}) for i, (k, v) in enumerate(hyp.items()): y = x[:, i + 7] # mu = (y * weights).sum() / weights.sum() # best weighted result mu = y[f.argmax()] # best single result plt.subplot(6, 5, i + 1) plt.scatter(y, f, c=hist2d(y, f, 20), cmap='viridis', alpha=.8, edgecolors='none') plt.plot(mu, f.max(), 'k+', markersize=15) plt.title('%s = %.3g' % (k, mu), fontdict={'size': 9}) # limit to 40 characters if i % 5 != 0: plt.yticks([]) print('%15s: %.3g' % (k, mu)) plt.savefig('evolve.png', dpi=200) print('\nPlot saved as evolve.png') def profile_idetection(start=0, stop=0, labels=(), save_dir=''): # Plot iDetection '*.txt' per-image logs. from utils.plots import *; profile_idetection() ax = plt.subplots(2, 4, figsize=(12, 6), tight_layout=True)[1].ravel() s = ['Images', 'Free Storage (GB)', 'RAM Usage (GB)', 'Battery', 'dt_raw (ms)', 'dt_smooth (ms)', 'real-world FPS'] files = list(Path(save_dir).glob('frames*.txt')) for fi, f in enumerate(files): try: results = np.loadtxt(f, ndmin=2).T[:, 90:-30] # clip first and last rows n = results.shape[1] # number of rows x = np.arange(start, min(stop, n) if stop else n) results = results[:, x] t = (results[0] - results[0].min()) # set t0=0s results[0] = x for i, a in enumerate(ax): if i < len(results): label = labels[fi] if len(labels) else f.stem.replace('frames_', '') a.plot(t, results[i], marker='.', label=label, linewidth=1, markersize=5) a.set_title(s[i]) a.set_xlabel('time (s)') # if fi == len(files) - 1: # a.set_ylim(bottom=0) for side in ['top', 'right']: a.spines[side].set_visible(False) else: a.remove() except Exception as e: print('Warning: Plotting error for %s; %s' % (f, e)) ax[1].legend() plt.savefig(Path(save_dir) / 'idetection_profile.png', dpi=200) def plot_results_overlay(start=0, stop=0): # from utils.plots import *; plot_results_overlay() # Plot training 'results*.txt', overlaying train and val losses s = ['train', 'train', 'train', 'Precision', 'mAP@0.5', 'val', 'val', 'val', 'Recall', 'mAP@0.5:0.95'] # legends t = ['Box', 'Objectness', 'Classification', 'P-R', 'mAP-F1'] # titles for f in sorted(glob.glob('results*.txt') + glob.glob('../../Downloads/results*.txt')): results = np.loadtxt(f, usecols=[2, 3, 4, 8, 9, 12, 13, 14, 10, 11], ndmin=2).T n = results.shape[1] # number of rows x = range(start, min(stop, n) if stop else n) fig, ax = plt.subplots(1, 5, figsize=(14, 3.5), tight_layout=True) ax = ax.ravel() for i in range(5): for j in [i, i + 5]: y = results[j, x] ax[i].plot(x, y, marker='.', label=s[j]) # y_smooth = butter_lowpass_filtfilt(y) # ax[i].plot(x, np.gradient(y_smooth), marker='.', label=s[j]) ax[i].set_title(t[i]) ax[i].legend() ax[i].set_ylabel(f) if i == 0 else None # add filename fig.savefig(f.replace('.txt', '.png'), dpi=200) def plot_results(file='path/to/results.csv', dir=''): # Plot training results.csv. Usage: from utils.plots import *; plot_results('path/to/results.csv') save_dir = Path(file).parent if file else Path(dir) fig, ax = plt.subplots(4, 5, figsize=(12, 6), tight_layout=True) ax = ax.ravel() files = list(save_dir.glob('results*.csv')) assert len(files), f'No results.csv files found in {save_dir.resolve()}, nothing to plot.' for fi, f in enumerate(files): try: data = pd.read_csv(f) s = [x.strip() for x in data.columns] x = data.values[:, 0] for i, j in enumerate([1, 2, 3, 4, 5, 8, 9, 10, 6, 7, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]): y = data.values[:, j] # y[y == 0] = np.nan # don't show zero values ax[i].plot(x, y, marker='.', label=f.stem, linewidth=2, markersize=8) ax[i].set_title(s[j], fontsize=12) # if j in [8, 9, 10]: # share train and val loss y axes # ax[i].get_shared_y_axes().join(ax[i], ax[i - 5]) except Exception as e: print(f'Warning: Plotting error for {f}: {e}') ax[1].legend() fig.savefig(save_dir / 'results.png', dpi=200) plt.close() ================================================ FILE: utils/torch_utils.py ================================================ # YOLOv5 PyTorch utils import datetime import logging import math import os import platform import subprocess import time from contextlib import contextmanager from copy import deepcopy from pathlib import Path import torch import torch.backends.cudnn as cudnn import torch.nn as nn import torch.nn.functional as F import torchvision try: import thop # for FLOPS computation except ImportError: thop = None logger = logging.getLogger(__name__) @contextmanager def torch_distributed_zero_first(local_rank: int): """ Decorator to make all processes in distributed training wait for each local_master to do something. """ if local_rank not in [-1, 0]: torch.distributed.barrier() yield if local_rank == 0: torch.distributed.barrier() def init_torch_seeds(seed=0): # Speed-reproducibility tradeoff https://pytorch.org/docs/stable/notes/randomness.html torch.manual_seed(seed) if seed == 0: # slower, more reproducible cudnn.benchmark, cudnn.deterministic = False, True else: # faster, less reproducible cudnn.benchmark, cudnn.deterministic = True, False def date_modified(path=__file__): # return human-readable file modification date, i.e. '2021-3-26' t = datetime.datetime.fromtimestamp(Path(path).stat().st_mtime) return f'{t.year}-{t.month}-{t.day}' def git_describe(path=Path(__file__).parent): # path must be a directory # return human-readable git description, i.e. v5.0-5-g3e25f1e https://git-scm.com/docs/git-describe s = f'git -C {path} describe --tags --long --always' try: return subprocess.check_output(s, shell=True, stderr=subprocess.STDOUT).decode()[:-1] except subprocess.CalledProcessError as e: return '' # not a git repository def select_device(device='', batch_size=None): # device = 'cpu' or '0' or '0,1,2,3' s = f'YOLOv5 🚀 {git_describe() or date_modified()} torch {torch.__version__} ' # string cpu = device.lower() == 'cpu' if cpu: os.environ['CUDA_VISIBLE_DEVICES'] = '-1' # force torch.cuda.is_available() = False elif device: # non-cpu device requested os.environ['CUDA_VISIBLE_DEVICES'] = device # set environment variable assert torch.cuda.is_available(), f'CUDA unavailable, invalid device {device} requested' # check availability cuda = not cpu and torch.cuda.is_available() if cuda: n = torch.cuda.device_count() if n > 1 and batch_size: # check that batch_size is compatible with device_count assert batch_size % n == 0, f'batch-size {batch_size} not multiple of GPU count {n}' space = ' ' * len(s) for i, d in enumerate(device.split(',') if device else range(n)): p = torch.cuda.get_device_properties(i) s += f"{'' if i == 0 else space}CUDA:{d} ({p.name}, {p.total_memory / 1024 ** 2}MB)\n" # bytes to MB else: s += 'CPU\n' logger.info(s.encode().decode('ascii', 'ignore') if platform.system() == 'Windows' else s) # emoji-safe return torch.device('cuda:0' if cuda else 'cpu') def time_synchronized(): # pytorch-accurate time if torch.cuda.is_available(): torch.cuda.synchronize() return time.time() def profile(x, ops, n=100, device=None): # profile a pytorch module or list of modules. Example usage: # x = torch.randn(16, 3, 640, 640) # input # m1 = lambda x: x * torch.sigmoid(x) # m2 = nn.SiLU() # profile(x, [m1, m2], n=100) # profile speed over 100 iterations device = device or torch.device('cuda:0' if torch.cuda.is_available() else 'cpu') x = x.to(device) x.requires_grad = True print(torch.__version__, device.type, torch.cuda.get_device_properties(0) if device.type == 'cuda' else '') print(f"\n{'Params':>12s}{'GFLOPS':>12s}{'forward (ms)':>16s}{'backward (ms)':>16s}{'input':>24s}{'output':>24s}") for m in ops if isinstance(ops, list) else [ops]: m = m.to(device) if hasattr(m, 'to') else m # device m = m.half() if hasattr(m, 'half') and isinstance(x, torch.Tensor) and x.dtype is torch.float16 else m # type dtf, dtb, t = 0., 0., [0., 0., 0.] # dt forward, backward try: flops = thop.profile(m, inputs=(x,), verbose=False)[0] / 1E9 * 2 # GFLOPS except: flops = 0 for _ in range(n): t[0] = time_synchronized() y = m(x) t[1] = time_synchronized() try: _ = y.sum().backward() t[2] = time_synchronized() except: # no backward method t[2] = float('nan') dtf += (t[1] - t[0]) * 1000 / n # ms per op forward dtb += (t[2] - t[1]) * 1000 / n # ms per op backward s_in = tuple(x.shape) if isinstance(x, torch.Tensor) else 'list' s_out = tuple(y.shape) if isinstance(y, torch.Tensor) else 'list' p = sum(list(x.numel() for x in m.parameters())) if isinstance(m, nn.Module) else 0 # parameters print(f'{p:12}{flops:12.4g}{dtf:16.4g}{dtb:16.4g}{str(s_in):>24s}{str(s_out):>24s}') def is_parallel(model): return type(model) in (nn.parallel.DataParallel, nn.parallel.DistributedDataParallel) def intersect_dicts(da, db, exclude=()): # Dictionary intersection of matching keys and shapes, omitting 'exclude' keys, using da values return {k: v for k, v in da.items() if k in db and not any(x in k for x in exclude) and v.shape == db[k].shape} def initialize_weights(model): for m in model.modules(): t = type(m) if t is nn.Conv2d: pass #nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu') elif t is nn.BatchNorm2d: m.eps = 1e-3 m.momentum = 0.03 elif t in [nn.Hardswish, nn.LeakyReLU, nn.ReLU, nn.ReLU6]: m.inplace = True def find_modules(model, mclass=nn.Conv2d): # Finds layer indices matching module class 'mclass' return [i for i, m in enumerate(model.module_list) if isinstance(m, mclass)] def sparsity(model): # Return global model sparsity a, b = 0., 0. for p in model.parameters(): a += p.numel() b += (p == 0).sum() return b / a def prune(model, amount=0.3): # Prune model to requested global sparsity import torch.nn.utils.prune as prune print('Pruning model... ', end='') for name, m in model.named_modules(): if isinstance(m, nn.Conv2d): prune.l1_unstructured(m, name='weight', amount=amount) # prune prune.remove(m, 'weight') # make permanent print(' %.3g global sparsity' % sparsity(model)) def fuse_conv_and_bn(conv, bn): # Fuse convolution and batchnorm layers https://tehnokv.com/posts/fusing-batchnorm-and-conv/ fusedconv = nn.Conv2d(conv.in_channels, conv.out_channels, kernel_size=conv.kernel_size, stride=conv.stride, padding=conv.padding, groups=conv.groups, bias=True).requires_grad_(False).to(conv.weight.device) # prepare filters w_conv = conv.weight.clone().view(conv.out_channels, -1) w_bn = torch.diag(bn.weight.div(torch.sqrt(bn.eps + bn.running_var))) fusedconv.weight.copy_(torch.mm(w_bn, w_conv).view(fusedconv.weight.shape)) # prepare spatial bias b_conv = torch.zeros(conv.weight.size(0), device=conv.weight.device) if conv.bias is None else conv.bias b_bn = bn.bias - bn.weight.mul(bn.running_mean).div(torch.sqrt(bn.running_var + bn.eps)) fusedconv.bias.copy_(torch.mm(w_bn, b_conv.reshape(-1, 1)).reshape(-1) + b_bn) return fusedconv def model_info(model, verbose=False, img_size=640): # Model information. img_size may be int or list, i.e. img_size=640 or img_size=[640, 320] n_p = sum(x.numel() for x in model.parameters()) # number parameters n_g = sum(x.numel() for x in model.parameters() if x.requires_grad) # number gradients if verbose: print('%5s %40s %9s %12s %20s %10s %10s' % ('layer', 'name', 'gradient', 'parameters', 'shape', 'mu', 'sigma')) for i, (name, p) in enumerate(model.named_parameters()): name = name.replace('module_list.', '') print('%5g %40s %9s %12g %20s %10.3g %10.3g' % (i, name, p.requires_grad, p.numel(), list(p.shape), p.mean(), p.std())) # try: # FLOPS # from thop import profile # stride = max(int(model.stride.max()), 32) if hasattr(model, 'stride') else 32 # img = torch.zeros((1, 3, stride, stride), device=next(model.parameters()).device) # input # flops = profile(deepcopy(model), inputs=img, verbose=False)[0] / 1E9 # stride GFLOPS # img_size = img_size if isinstance(img_size, list) else [img_size, img_size] # expand if int/float # fs = ', %.1f GFLOPS' % (flops * img_size[0] / stride * img_size[1] / stride) # 640x640 GFLOPS # except (ImportError, Exception): # fs = '' try: # FLOPS from thop import profile img_size = img_size if isinstance(img_size, list) else [img_size, img_size] # expand if int/float img = torch.zeros((1, 3, img_size[0], img_size[1]), device=next(model.parameters()).device) # input flops = profile(deepcopy(model), inputs=img, verbose=False)[0] / 1E9 # stride GFLOPS fs = '%.1f GFLOPS' % (flops) # 640x640 GFLOPS except (ImportError, Exception): fs = '' logger.info(f"Model Summary: {len(list(model.modules()))} layers, {n_p} parameters, {n_g} gradients, {fs}") def load_classifier(name='resnet101', n=2): # Loads a pretrained model reshaped to n-class output model = torchvision.models.__dict__[name](pretrained=True) # ResNet model properties # input_size = [3, 224, 224] # input_space = 'RGB' # input_range = [0, 1] # mean = [0.485, 0.456, 0.406] # std = [0.229, 0.224, 0.225] # Reshape output to n classes filters = model.fc.weight.shape[1] model.fc.bias = nn.Parameter(torch.zeros(n), requires_grad=True) model.fc.weight = nn.Parameter(torch.zeros(n, filters), requires_grad=True) model.fc.out_features = n return model def scale_img(img, ratio=1.0, same_shape=False, gs=32): # img(16,3,256,416) # scales img(bs,3,y,x) by ratio constrained to gs-multiple if ratio == 1.0: return img else: h, w = img.shape[2:] s = (int(h * ratio), int(w * ratio)) # new size img = F.interpolate(img, size=s, mode='bilinear', align_corners=False) # resize if not same_shape: # pad/crop img h, w = [math.ceil(x * ratio / gs) * gs for x in (h, w)] return F.pad(img, [0, w - s[1], 0, h - s[0]], value=0.447) # value = imagenet mean def copy_attr(a, b, include=(), exclude=()): # Copy attributes from b to a, options to only include [...] and to exclude [...] for k, v in b.__dict__.items(): if (len(include) and k not in include) or k.startswith('_') or k in exclude: continue else: setattr(a, k, v) class ModelEMA: """ Model Exponential Moving Average from https://github.com/rwightman/pytorch-image-models Keep a moving average of everything in the model state_dict (parameters and buffers). This is intended to allow functionality like https://www.tensorflow.org/api_docs/python/tf/train/ExponentialMovingAverage A smoothed version of the weights is necessary for some training schemes to perform well. This class is sensitive where it is initialized in the sequence of model init, GPU assignment and distributed training wrappers. """ def __init__(self, model, decay=0.9999, updates=0): # Create EMA self.ema = deepcopy(model.module if is_parallel(model) else model).eval() # FP32 EMA # if next(model.parameters()).device.type != 'cpu': # self.ema.half() # FP16 EMA self.updates = updates # number of EMA updates self.decay = lambda x: decay * (1 - math.exp(-x / 2000)) # decay exponential ramp (to help early epochs) for p in self.ema.parameters(): p.requires_grad_(False) def update(self, model): # Update EMA parameters with torch.no_grad(): self.updates += 1 d = self.decay(self.updates) msd = model.module.state_dict() if is_parallel(model) else model.state_dict() # model state_dict for k, v in self.ema.state_dict().items(): if v.dtype.is_floating_point: v *= d v += (1. - d) * msd[k].detach() def update_attr(self, model, include=(), exclude=('process_group', 'reducer')): # Update EMA attributes copy_attr(self.ema, model, include, exclude) ================================================ FILE: utils/wandb_logging/__init__.py ================================================ ================================================ FILE: utils/wandb_logging/log_dataset.py ================================================ import argparse import yaml from wandb_utils import WandbLogger WANDB_ARTIFACT_PREFIX = 'wandb-artifact://' def create_dataset_artifact(opt): with open(opt.data) as f: data = yaml.safe_load(f) # data dict logger = WandbLogger(opt, '', None, data, job_type='Dataset Creation') if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--data', type=str, default='data/coco128.yaml', help='data.yaml path') parser.add_argument('--single-cls', action='store_true', help='train as single-class dataset') parser.add_argument('--project', type=str, default='YOLOv5', help='name of W&B Project') opt = parser.parse_args() opt.resume = False # Explicitly disallow resume check for dataset upload job create_dataset_artifact(opt) ================================================ FILE: utils/wandb_logging/wandb_utils.py ================================================ import json import sys from pathlib import Path import torch import yaml from tqdm import tqdm sys.path.append(str(Path(__file__).parent.parent.parent)) # add utils/ to path from utils.datasets import LoadImagesAndLabels from utils.datasets import img2label_paths from utils.general import colorstr, xywh2xyxy, check_dataset try: import wandb from wandb import init, finish except ImportError: wandb = None WANDB_ARTIFACT_PREFIX = 'wandb-artifact://' def remove_prefix(from_string, prefix=WANDB_ARTIFACT_PREFIX): return from_string[len(prefix):] def check_wandb_config_file(data_config_file): wandb_config = '_wandb.'.join(data_config_file.rsplit('.', 1)) # updated data.yaml path if Path(wandb_config).is_file(): return wandb_config return data_config_file def get_run_info(run_path): run_path = Path(remove_prefix(run_path, WANDB_ARTIFACT_PREFIX)) run_id = run_path.stem project = run_path.parent.stem model_artifact_name = 'run_' + run_id + '_model' return run_id, project, model_artifact_name def check_wandb_resume(opt): process_wandb_config_ddp_mode(opt) if opt.global_rank not in [-1, 0] else None if isinstance(opt.resume, str): if opt.resume.startswith(WANDB_ARTIFACT_PREFIX): if opt.global_rank not in [-1, 0]: # For resuming DDP runs run_id, project, model_artifact_name = get_run_info(opt.resume) api = wandb.Api() artifact = api.artifact(project + '/' + model_artifact_name + ':latest') modeldir = artifact.download() opt.weights = str(Path(modeldir) / "last.pt") return True return None def process_wandb_config_ddp_mode(opt): with open(opt.data) as f: data_dict = yaml.safe_load(f) # data dict train_dir, val_dir = None, None if isinstance(data_dict['train'], str) and data_dict['train'].startswith(WANDB_ARTIFACT_PREFIX): api = wandb.Api() train_artifact = api.artifact(remove_prefix(data_dict['train']) + ':' + opt.artifact_alias) train_dir = train_artifact.download() train_path = Path(train_dir) / 'data/images/' data_dict['train'] = str(train_path) if isinstance(data_dict['val'], str) and data_dict['val'].startswith(WANDB_ARTIFACT_PREFIX): api = wandb.Api() val_artifact = api.artifact(remove_prefix(data_dict['val']) + ':' + opt.artifact_alias) val_dir = val_artifact.download() val_path = Path(val_dir) / 'data/images/' data_dict['val'] = str(val_path) if train_dir or val_dir: ddp_data_path = str(Path(val_dir) / 'wandb_local_data.yaml') with open(ddp_data_path, 'w') as f: yaml.safe_dump(data_dict, f) opt.data = ddp_data_path class WandbLogger(): def __init__(self, opt, name, run_id, data_dict, job_type='Training'): # Pre-training routine -- self.job_type = job_type self.wandb, self.wandb_run, self.data_dict = wandb, None if not wandb else wandb.run, data_dict # It's more elegant to stick to 1 wandb.init call, but useful config data is overwritten in the WandbLogger's wandb.init call if isinstance(opt.resume, str): # checks resume from artifact if opt.resume.startswith(WANDB_ARTIFACT_PREFIX): run_id, project, model_artifact_name = get_run_info(opt.resume) model_artifact_name = WANDB_ARTIFACT_PREFIX + model_artifact_name assert wandb, 'install wandb to resume wandb runs' # Resume wandb-artifact:// runs here| workaround for not overwriting wandb.config self.wandb_run = wandb.init(id=run_id, project=project, resume='allow') opt.resume = model_artifact_name elif self.wandb: self.wandb_run = wandb.init(config=opt, resume="allow", project='YOLOv5' if opt.project == 'runs/train' else Path(opt.project).stem, name=name, job_type=job_type, id=run_id) if not wandb.run else wandb.run if self.wandb_run: if self.job_type == 'Training': if not opt.resume: wandb_data_dict = self.check_and_upload_dataset(opt) if opt.upload_dataset else data_dict # Info useful for resuming from artifacts self.wandb_run.config.opt = vars(opt) self.wandb_run.config.data_dict = wandb_data_dict self.data_dict = self.setup_training(opt, data_dict) if self.job_type == 'Dataset Creation': self.data_dict = self.check_and_upload_dataset(opt) else: prefix = colorstr('wandb: ') print(f"{prefix}Install Weights & Biases for YOLOv5 logging with 'pip install wandb' (recommended)") def check_and_upload_dataset(self, opt): assert wandb, 'Install wandb to upload dataset' check_dataset(self.data_dict) config_path = self.log_dataset_artifact(opt.data, opt.single_cls, 'YOLOv5' if opt.project == 'runs/train' else Path(opt.project).stem) print("Created dataset config file ", config_path) with open(config_path) as f: wandb_data_dict = yaml.safe_load(f) return wandb_data_dict def setup_training(self, opt, data_dict): self.log_dict, self.current_epoch, self.log_imgs = {}, 0, 16 # Logging Constants self.bbox_interval = opt.bbox_interval if isinstance(opt.resume, str): modeldir, _ = self.download_model_artifact(opt) if modeldir: self.weights = Path(modeldir) / "last.pt" config = self.wandb_run.config opt.weights, opt.save_period, opt.batch_size, opt.bbox_interval, opt.epochs, opt.hyp = str( self.weights), config.save_period, config.total_batch_size, config.bbox_interval, config.epochs, \ config.opt['hyp'] data_dict = dict(self.wandb_run.config.data_dict) # eliminates the need for config file to resume if 'val_artifact' not in self.__dict__: # If --upload_dataset is set, use the existing artifact, don't download self.train_artifact_path, self.train_artifact = self.download_dataset_artifact(data_dict.get('train'), opt.artifact_alias) self.val_artifact_path, self.val_artifact = self.download_dataset_artifact(data_dict.get('val'), opt.artifact_alias) self.result_artifact, self.result_table, self.val_table, self.weights = None, None, None, None if self.train_artifact_path is not None: train_path = Path(self.train_artifact_path) / 'data/images/' data_dict['train'] = str(train_path) if self.val_artifact_path is not None: val_path = Path(self.val_artifact_path) / 'data/images/' data_dict['val'] = str(val_path) self.val_table = self.val_artifact.get("val") self.map_val_table_path() if self.val_artifact is not None: self.result_artifact = wandb.Artifact("run_" + wandb.run.id + "_progress", "evaluation") self.result_table = wandb.Table(["epoch", "id", "prediction", "avg_confidence"]) if opt.bbox_interval == -1: self.bbox_interval = opt.bbox_interval = (opt.epochs // 10) if opt.epochs > 10 else 1 return data_dict def download_dataset_artifact(self, path, alias): if isinstance(path, str) and path.startswith(WANDB_ARTIFACT_PREFIX): dataset_artifact = wandb.use_artifact(remove_prefix(path, WANDB_ARTIFACT_PREFIX) + ":" + alias) assert dataset_artifact is not None, "'Error: W&B dataset artifact doesn\'t exist'" datadir = dataset_artifact.download() return datadir, dataset_artifact return None, None def download_model_artifact(self, opt): if opt.resume.startswith(WANDB_ARTIFACT_PREFIX): model_artifact = wandb.use_artifact(remove_prefix(opt.resume, WANDB_ARTIFACT_PREFIX) + ":latest") assert model_artifact is not None, 'Error: W&B model artifact doesn\'t exist' modeldir = model_artifact.download() epochs_trained = model_artifact.metadata.get('epochs_trained') total_epochs = model_artifact.metadata.get('total_epochs') assert epochs_trained < total_epochs, 'training to %g epochs is finished, nothing to resume.' % ( total_epochs) return modeldir, model_artifact return None, None def log_model(self, path, opt, epoch, fitness_score, best_model=False): model_artifact = wandb.Artifact('run_' + wandb.run.id + '_model', type='model', metadata={ 'original_url': str(path), 'epochs_trained': epoch + 1, 'save period': opt.save_period, 'project': opt.project, 'total_epochs': opt.epochs, 'fitness_score': fitness_score }) model_artifact.add_file(str(path / 'last.pt'), name='last.pt') wandb.log_artifact(model_artifact, aliases=['latest', 'epoch ' + str(self.current_epoch), 'best' if best_model else '']) print("Saving model artifact on epoch ", epoch + 1) def log_dataset_artifact(self, data_file, single_cls, project, overwrite_config=False): with open(data_file) as f: data = yaml.safe_load(f) # data dict nc, names = (1, ['item']) if single_cls else (int(data['nc']), data['names']) names = {k: v for k, v in enumerate(names)} # to index dictionary self.train_artifact = self.create_dataset_table(LoadImagesAndLabels( data['train']), names, name='train') if data.get('train') else None self.val_artifact = self.create_dataset_table(LoadImagesAndLabels( data['val']), names, name='val') if data.get('val') else None if data.get('train'): data['train'] = WANDB_ARTIFACT_PREFIX + str(Path(project) / 'train') if data.get('val'): data['val'] = WANDB_ARTIFACT_PREFIX + str(Path(project) / 'val') path = data_file if overwrite_config else '_wandb.'.join(data_file.rsplit('.', 1)) # updated data.yaml path data.pop('download', None) with open(path, 'w') as f: yaml.safe_dump(data, f) if self.job_type == 'Training': # builds correct artifact pipeline graph self.wandb_run.use_artifact(self.val_artifact) self.wandb_run.use_artifact(self.train_artifact) self.val_artifact.wait() self.val_table = self.val_artifact.get('val') self.map_val_table_path() else: self.wandb_run.log_artifact(self.train_artifact) self.wandb_run.log_artifact(self.val_artifact) return path def map_val_table_path(self): self.val_table_map = {} print("Mapping dataset") for i, data in enumerate(tqdm(self.val_table.data)): self.val_table_map[data[3]] = data[0] def create_dataset_table(self, dataset, class_to_id, name='dataset'): # TODO: Explore multiprocessing to slpit this loop parallely| This is essential for speeding up the the logging artifact = wandb.Artifact(name=name, type="dataset") img_files = tqdm([dataset.path]) if isinstance(dataset.path, str) and Path(dataset.path).is_dir() else None img_files = tqdm(dataset.img_files) if not img_files else img_files for img_file in img_files: if Path(img_file).is_dir(): artifact.add_dir(img_file, name='data/images') labels_path = 'labels'.join(dataset.path.rsplit('images', 1)) artifact.add_dir(labels_path, name='data/labels') else: artifact.add_file(img_file, name='data/images/' + Path(img_file).name) label_file = Path(img2label_paths([img_file])[0]) artifact.add_file(str(label_file), name='data/labels/' + label_file.name) if label_file.exists() else None table = wandb.Table(columns=["id", "train_image", "Classes", "name"]) class_set = wandb.Classes([{'id': id, 'name': name} for id, name in class_to_id.items()]) for si, (img, labels, paths, shapes) in enumerate(tqdm(dataset)): height, width = shapes[0] labels[:, 2:] = (xywh2xyxy(labels[:, 2:].view(-1, 4))) * torch.Tensor([width, height, width, height]) box_data, img_classes = [], {} for cls, *xyxy in labels[:, 1:].tolist(): cls = int(cls) box_data.append({"position": {"minX": xyxy[0], "minY": xyxy[1], "maxX": xyxy[2], "maxY": xyxy[3]}, "class_id": cls, "box_caption": "%s" % (class_to_id[cls]), "scores": {"acc": 1}, "domain": "pixel"}) img_classes[cls] = class_to_id[cls] boxes = {"ground_truth": {"box_data": box_data, "class_labels": class_to_id}} # inference-space table.add_data(si, wandb.Image(paths, classes=class_set, boxes=boxes), json.dumps(img_classes), Path(paths).name) artifact.add(table, name) return artifact def log_training_progress(self, predn, path, names): if self.val_table and self.result_table: class_set = wandb.Classes([{'id': id, 'name': name} for id, name in names.items()]) box_data = [] total_conf = 0 for *xyxy, conf, cls in predn.tolist(): if conf >= 0.25: box_data.append( {"position": {"minX": xyxy[0], "minY": xyxy[1], "maxX": xyxy[2], "maxY": xyxy[3]}, "class_id": int(cls), "box_caption": "%s %.3f" % (names[cls], conf), "scores": {"class_score": conf}, "domain": "pixel"}) total_conf = total_conf + conf boxes = {"predictions": {"box_data": box_data, "class_labels": names}} # inference-space id = self.val_table_map[Path(path).name] self.result_table.add_data(self.current_epoch, id, wandb.Image(self.val_table.data[id][1], boxes=boxes, classes=class_set), total_conf / max(1, len(box_data)) ) def log(self, log_dict): if self.wandb_run: for key, value in log_dict.items(): self.log_dict[key] = value def end_epoch(self, best_result=False): if self.wandb_run: wandb.log(self.log_dict) self.log_dict = {} if self.result_artifact: train_results = wandb.JoinedTable(self.val_table, self.result_table, "id") self.result_artifact.add(train_results, 'result') wandb.log_artifact(self.result_artifact, aliases=['latest', 'epoch ' + str(self.current_epoch), ('best' if best_result else '')]) self.result_table = wandb.Table(["epoch", "id", "prediction", "avg_confidence"]) self.result_artifact = wandb.Artifact("run_" + wandb.run.id + "_progress", "evaluation") def finish_run(self): if self.wandb_run: if self.log_dict: wandb.log(self.log_dict) wandb.run.finish()